liblouis-2.5.3/0000775000175000017500000000000012161044235010344 500000000000000liblouis-2.5.3/INSTALL0000644000175000017500000003660012161044154011320 00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. liblouis-2.5.3/HACKING0000664000175000017500000001541612161041534011261 00000000000000This HACKING file describes the development environment. -*- org -*- Copyright (C) 2008, 2009, 2011 ViewPlus Technologies, Inc. and Abilitiessoft, Inc. Copyright (C) 2012, 2013 Swiss Library for the Blind, Visually Impaired and Print Disabled Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file attempts to describe the maintainer-specific notes to follow when hacking liblouis. * Developing ** Where to get it The development sources are available through anonymous svn at Google Code: http://code.google.com/p/liblouis/ ** Build requirements This distribution uses Automake, Autoconf, and Libtool. If you are getting the sources from svn (or change configure.ac), you'll need to have these tools installed to (re)build. Optionally (if you want to generate man pages) you'll also need help2man. All of these programs are available from ftp://ftp.gnu.org/gnu. ** Gnulib This distribution also uses Gnulib (http://www.gnu.org/software/gnulib) to share common files, with the files being checked in to svn. If you want to update from the current gnulib, install gnulib, and then run gnulib-tool --import in the top-level directory. For the record, the first time invocation was gnulib-tool --import --lib=libgnu --source-base=gnulib \ --m4-base=gnulib/m4 --aux-dir=build-aux --libtool \ --macro-prefix=gl getopt-gnu progname version-etc More modules might have been added since. The currently-used gnulib modules and other gnulib information are recorded in gnulib/m4/gnulib-cache.m4. Given a source checkout of gnulib, you can update the files with gnulib-tool --import. ** How to build After getting the sources from svn, with svn checkout http://liblouis.googlecode.com/svn/trunk/ liblouis and installing the tools above, change to the liblouis directory and and bootstrap the project with the following command ./autogen.sh to do a fresh build. Then run configure as usual: ./configure You have the choice to compile liblouis for either 16- or 32-bit Unicode. By default it is compiled for the former. To get 32-bit Unicode run configure with --enable-ucs4 . After running configure run "make" and then "make install". You must have root privileges for the installation step. ** How to debug First you have to build liblouis with debugging info enabled. $ ./configure CFLAGS='-g -O0 -Wall -Wextra' $ make Starting the programs under the tools directory within gdb is a little tricky as they are linked with libtool. See the info page of libtool for more information. To start lou_checktable for table wiskunde.ctb for example you'd have to issue the following commands: $ libtool --mode=execute gdb ./tools/lou_checktable (gdb) run tables/wiskunde.ctb ** How to find memory leaks Valgrind is a tool that can be used to find memory errors. It is recommended that you compile liblouis without any optimizations and with all warnings enabled before running it through Valgrind: $ ./configure CFLAGS='-g -O0 -Wall' $ make Then use Valgrind to analyze liblouis. For example you can run lou_translate trough Valgrind: $ libtool --mode=execute valgrind -v --tool=memcheck \ --leak-check=full --leak-resolution=high --log-file=valgrind.log \ ./tools/lou_translate en-us-g2.ctb Type a few words at the prompt, check translation and terminate lou_translate. Now open the file valgrind.log and see if there are any memory leaks reported. You can also just run lou_checktable for example: $ libtool --mode=execute valgrind -v --tool=memcheck \ --leak-check=full --leak-resolution=high --log-file=valgrind.log \ ./tools/lou_checktable tables/nl-BE-g1.ctb Again open valgrind.log to see if any memory leaks were reported. For the full experience run lou_allround under Valgrind: $ libtool --mode=execute valgrind -v --tool=memcheck \ --leak-check=full --show-reachable=yes \ --leak-resolution=high --track-origins=yes \ --log-file=valgrind.log ./tools/lou_allround ** How to analyze performance Gprof helps you analyze the performance of programs. You have to compile liblouis as follows: $ ./configure --disable-shared $ make clean all CFLAGS='-g -O0 -pg' LDFLAGS='-all-static' Then translate some stuff with a large table: $ ./tools/lou_translate tests/tables/large.ctb Finally look at the call profile: $ libtool --mode=execute gprof ./tools/lou_translate gmon.out ** How to build for win32 See the README.windows file and the windows subdirectory. *** How to cross-compile for win32 Use the mingw win32 cross compiler as shown below. Use the prefix option to install the binaries to a temporary place where you can create a zip file. ./configure --build i686-pc-linux-gnu --host i586-mingw32msvc --prefix=/tmp/mingw32msvc make make dist * Release Procedure These steps describe what a maintainer does to make a release; they are not needed for ordinary patch submission. ** Set the version number Update the version number in NEWS (with version, date, and release type), ChangeLog and configure.ac. Don't forget to update the libtool versioning info in configure.ac, i.e. LIBLOUIS_REVISION and possibly LIBLOUIS_CURRENT and LIBLOUIS_AGE. ** Commit and tag Commit the changes and tag this version svn cp https://liblouis.googlecode.com/svn/trunk \ https://liblouis.googlecode.com/svn/tags/liblouis_1_3_8 If you know the exact version number that needs to be tagged use svn cp https://liblouis.googlecode.com/svn/trunk \ https://liblouis.googlecode.com/svn/tags/liblouis_1_3_8 -r 109 ** Make the release Check out a clean copy in a different directory, like /tmp. Run autogen.sh and configure with no special prefixes. Run make distcheck. This will make sure that all needed files are present, and do a general sanity check. Run make dist. This will produce a tarball. ./autogen.sh && ./configure && make && make distcheck && make dist ** Upload Upload tarball to Google project page, tag as "featured". This will put the link on the main project page. Remove "featured" tag from previous tarball release. ** Online documentation The online documentation is hosted out of subversion of the Google code site. To check it out svn co https://liblouis.googlecode.com/svn/documentation \ liblouis-online-documentation then move the latest built documentation into this directory and check it in cd liblouis-online-documentation cp ../liblouis/doc/liblouis.html . svn ci liblouis.html -m "Update online documentation" ** Other web updates Update the Google project page. Add the current NEWS to the front page. Also update the page on freshmeat (http://freshmeat.net/projects/liblouis/). ** Announce Send an announcement to the liblouis list liblouis-liblouisxml@freelists.org. See ANNOUNCEMENT for an example. liblouis-2.5.3/COPYING.LIB0000664000175000017500000001672512161041546011741 00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. liblouis-2.5.3/doc/0000775000175000017500000000000012161044235011111 500000000000000liblouis-2.5.3/doc/Makefile.am0000664000175000017500000000062212161041534013064 00000000000000# docdir is only needed if you have Autoconf older than 2.60 docdir = $(datadir)/doc/${PACKAGE} doc_DATA = \ liblouis.html \ liblouis.txt EXTRA_DIST = \ liblouis.html \ liblouis.txt CLEANFILES = $(EXTRA_DIST) info_TEXINFOS = liblouis.texi # generate one big html file AM_MAKEINFOHTMLFLAGS = --no-headers --no-split SUFFIXES = .txt .texi.txt: $(MAKEINFO) --plaintext $< -o $@ liblouis-2.5.3/doc/liblouis.txt0000664000175000017500000030453712161041646013433 00000000000000Table of Contents ***************** Liblouis User's and Programmer's Manual 1 Introduction 2 Test Programs 2.1 lou_debug 2.2 lou_trace 2.3 lou_checktable 2.4 lou_allround 2.5 lou_translate 2.6 lou_checkhyphens 3 How to Write Translation Tables 3.1 Hyphenation Tables 3.2 Character-Definition Opcodes 3.3 Braille Indicator Opcodes 3.4 Emphasis Opcodes 3.5 Special Symbol Opcodes 3.6 Special Processing Opcodes 3.7 Translation Opcodes 3.8 Character-Class Opcodes 3.9 Swap Opcodes 3.10 The Context and Multipass Opcodes 3.11 The correct Opcode 3.12 Miscellaneous Opcodes 3.13 Deprecated Opcodes 4 How to test Translation Tables 4.1 Translation Table Test Harness 4.2 Translation Table Doctests 5 Notes on Back-Translation 6 Programming with liblouis 6.1 License 6.2 Overview 6.3 Data structure of liblouis tables 6.4 lou_version 6.5 lou_translateString 6.6 lou_translate 6.7 lou_backTranslateString 6.8 lou_backTranslate 6.9 lou_hyphenate 6.10 lou_compileString 6.11 lou_dotsToChar 6.12 lou_charToDots 6.13 lou_logFile 6.14 lou_logPrint 6.15 lou_logEnd 6.16 lou_setDataPath 6.17 lou_getDataPath 6.18 lou_getTable 6.19 lou_readCharFromFile 6.20 lou_free 6.21 Python bindings Opcode Index Function Index Program Index Liblouis User's and Programmer's Manual *************************************** This manual is for liblouis (version 2.5.2, 21 June 2013), a Braille Translation and Back-Translation Library derived from the Linux screen reader BRLTTY. Copyright (C) 1999-2006 by the BRLTTY Team. Copyright (C) 2004-2007 ViewPlus Technologies, Inc. `www.viewplus.com'. Copyright (C) 2007,2009 Abilitiessoft, Inc. `www.abilitiessoft.com'. This file is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser (or library) General Public License (LGPL) as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser (or Library) General Public License LGPL for more details. You should have received a copy of the GNU Lesser (or Library) General Public License (LGPL) along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 1 Introduction ************** Liblouis is an open-source braille translator and back-translator derived from the translation routines in the BRLTTY screen reader for Linux. It has, however, gone far beyond these routines. It is named in honor of Louis Braille. In Linux and Mac OSX it is a shared library, and in Windows it is a DLL. For installation instructions see the README file. Please report bugs and oddities to the maintainer, This documentation is derived from Chapter 7 of the BRLTTY manual, but it has been extensively rewritten to cover new features. Please read the following copyright and warranty information. Note that this information also applies to all source code, tables and other files in this distribution of liblouis. It applies similarly to the sister library liblouisxml. This file is maintained by John J. Boyer . Persons who wish to program with liblouis but will not be writing translation tables may want to skip ahead to *note Programming with liblouis::. 2 Test Programs *************** A number of test programs are provided as part of the liblouis package. They are intended for testing liblouis and for debugging tables. None of them is suitable for braille transcription. An application that can be used for transcription is `xml2brl', which is part of the liblouisxml package (*note Introduction: (liblouisxml)Top.). The source code of the test programs can be studied to learn how to use the liblouis library and they can be used to perform the following functions. All of these programs recognize the `--help' and `--version' options. `--help' `-h' Print a usage message listing all available options, then exit successfully. `--version' `-v' Print the version number, then exit successfully. 2.1 lou_debug ============= The `lou_debug' tool is intended for debugging liblouis translation tables. The command line for `lou_debug' is: lou_debug [OPTIONS] TABLE[,TABLE,...] The command line options that are accepted by `lou_debug' are described in *note common options::. The table (or comma-separated list of tables) is compiled. If no errors are found a brief command summary is printed, then the prompt `Command:'. You can then input one of the command letters and get output, as described below. Most of the commands print information in the various arrays of `TranslationTableHeader'. Since these arrays are pointers to chains of hashed items, the commands first print the hash number, then the first item, then the next item chained to it, and so on. After each item there is a prompt indicated by `=>'. You can then press enter (`') to see the next item in the chain or the first item in the next chain. Or you can press `h' (for next-(h)ash) to skip to the next hash chain. You can also press `e' to exit the command and go back to the `command:' prompt. `h' Brings up a screen of somewhat more extensive help. `f' Display the first forward-translation rule in the first non-empty hash bucket. The number of the bucket is displayed at the beginning of the chain. Each rule is identified by the word `Rule:'. The fields are displayed by phrases consisting of the name of the field, an equal sign, and its value. The before and after fields are displayed only if they are nonzero. Special opcodes such as the `correct' opcode (*note correct: correct opcode.) and the multipass opcodes are shown with the code that instructs the virtual machine that interprets them. If you want to see only the rules for a particular character string you can type `p' at the `command:' prompt. This will take you to the `particular:' prompt, where you can press `f' and then type in the string. The whole hash chain containing the string will be displayed. `b' Display back-translation rules. This display is very similar to that of forward translation rules except that the dot pattern is displayed before the character string. `c' Display character definitions, again within their hash chains. `d' Displays single-cell dot definitions. If a character-definition opcode gives a multi-cell dot pattern, it is displayed among the back-translation rules. `C' Display the character-to-dots map. This is set up by the character-definition opcodes and can also be influenced by the `display' opcode (*note display: display opcode.). `D' Display the dot to character map, which shows which single-cell dot patterns map to which characters. `z' Show the multi-cell dot patterns which have been assigned to the characters from 0 to 255 to comply with computer braille codes such as a 6-dot code. Note that the character-definition opcodes should use 8-dot computer braille. `p' Bring up a secondary (`particular:') prompt from which you can examine particular character strings, dot patterns, etc. The commands (given in its own command summary) are very similar to those of the main `command:' prompt, but you can type a character string or dot pattern. They include `h', `f', `b', `c', `d', `C', `D', `z' and `x' (to exit this prompt), but not `p', `i' and `m'. `i' Show braille indicators. This shows the dot patterns for various opcodes such as the `capsign' opcode (*note capsign: capsign opcode.) and the `numsign' opcode (*note numsign: numsign opcode.). It also shows emphasis dot patterns, such as those for the `italword', the `firstletterbold' opcode (*note firstletterbold: firstletterbold opcode.), etc. If a given opcode has not been used nothing is printed for it. `m' Display various miscellaneous information about the table, such as the number of passes, whether certain opcodes have been used, and whether there is a hyphenation table. `q' Exit the program. 2.2 lou_trace ============= When working on translation tables it is sometimes useful to determine what rules were applied when translating a string. `lou_trace' helps with exactly that. It list all the the applied rules for a given translation table and an input string. lou_trace [OPTIONS] TABLE[,TABLE,...] `lou_trace' accepts all the standard options (*note common options::). Once started you can type an input string followed by `'. `lou_trace' will print the braille translation followed by list of rules that were applied to produce the translation. A possible invocation is listed in the following example: $ lou_trace tables/en-us-g2.ctb the u.s. postal service ! u4s4 po/al s}vice 1. largesign the 2346 2. repeated 0 3. lowercase u 136 4. punctuation . 46 5. context _$l["."]$l @256 6. lowercase s 234 7. postpunc . 256 8. repeated 0 9. begword post 1234-135-34 10. largesign a 1 11. lowercase l 123 12. repeated 0 13. lowercase s 234 14. always er 12456 15. lowercase v 1236 16. lowercase i 24 17. lowercase c 14 18. lowercase e 15 19. pass2 $s1-10 @0 20. pass2 $s1-10 @0 21. pass2 $s1-10 @0 2.3 lou_checktable ================== To use this program type the following: lou_checktable [OPTIONS] TABLE Aside from the standard options (*note common options::) `lou_checktable' also accepts the following options: `--quiet' `-q' Do not write to standard error if there are no errors. If the table contains errors, appropriate messages will be displayed. If there are no errors the message `no errors found.' will be shown. 2.4 lou_allround ================ This program tests every capability of the liblouis library. It is completely interactive. Invoke it as follows: lou_allround [OPTIONS] The command line options that are accepted by `lou_allround' are described in *note common options::. You will see a few lines telling you how to use the program. Pressing one of the letters in parentheses and then enter will take you to a message asking for more information or for the answer to a yes/no question. Typing the letter `r' and then will take you to a screen where you can enter a line to be processed by the library and then view the results. 2.5 lou_translate ================= This program translates whatever is on the standard input unit and prints it on the standard output unit. It is intended for large-scale testing of the accuracy of translation and back-translation. The command line for `lou_translate' is: lou_translate [OPTION] TABLE[,TABLE,...] Aside from the standard options (*note common options::) this program also accepts the following options: `--forward' `-f' Do a forward translation. `--backward' `-b' Do a backward translation. To use it to translate or back-translate a file use a line like lou_translate --forward en-us-g2.ctb testtrans 2.6 lou_checkhyphens ==================== This program checks the accuracy of hyphenation in Braille translation for both translated and untranslated words. It is completely interactive. Invoke it as follows: lou_checkhyphens [OPTIONS] The command line options that are accepted by `lou_checkhyphens' are described in *note common options::. You will see a few lines telling you how to use the program. 3 How to Write Translation Tables ********************************* Many translation (contraction) tables have already been made up. They are included in this distribution in the tables directory and should be studied as part of the documentation. The most helpful (and normative) are listed in the following table: `chardefs.cti' Character definitions for U.S. tables `compress.ctb' Remove excessive whitespace `en-us-g1.ctb' Uncontracted American English `en-us-g2.ctb' Contracted or Grade 2 American English `en-us-brf.dis' Make liblouis output conform to BRF standard `en-us-comp8.ctb' 8-dot computer braille for use in coding examples `en-us-comp6.ctb' 6-dot computer braille `nemeth.ctb' Nemeth Code translation for use with liblouisxml `nemeth_edit.ctb' Fixes errors at the boundaries of math and text The names used for files containing translation tables are completely arbitrary. They are not interpreted in any way by the translator. Contraction tables may be 8-bit ASCII files, UTF-8, 16-bit big-endian Unicode files or 16-bit little-endian Unicode files. Blank lines are ignored. Any leading and trailing whitespace (any number of blanks and/or tabs) is ignored. Lines which begin with a number sign or hatch mark (`#') are ignored, i.e. they are comments. If the number sign is not the first non-blank character in the line, it is treated as an ordinary character. If the first non-blank character is less-than (`<') the line is also treated as a comment. This makes it possible to mark up tables as xhtml documents. Lines which are not blank or comments define table entries. The general format of a table entry is: opcode operands comments Table entries may not be split between lines. The opcode is a mnemonic that specifies what the entry does. The operands may be character sequences, braille dot patterns or occasionally something else. They are described for each opcode, please *note Opcode Index::. With some exceptions, opcodes expect a certain number of operands. Any text on the line after the last operand is ignored, and may be a comment. A few opcodes accept a variable number of operands. In this case a number sign begins a comment unless it is preceded by a backslash (`\'). Here are some examples of table entries. # This is a comment. always world 456-2456 A word and the dot pattern of its contraction Most opcodes have both a "characters" operand and a "dots" operand, though some have only one and a few have other types. The characters operand consists of any combination of characters and escape sequences proceeded and followed by whitespace. Escape sequences are used to represent difficult characters. They begin with a backslash (`\`). They are: `\' backslash `\f' form feed `\n' new line `\r' carriage return `\s' blank (space) `\t' horizontal tab `\v' vertical tab `\e' "escape" character (hex 1b, dec 27) `\xhhhh' 4-digit hexadecimal value of a character If liblouis has been compiled for 32-bit Unicode the following are also recognized. `\yhhhhh' 5-digit (20 bit) character `\zhhhhhhhh' Full 32-bit value. The dots operand is a braille dot pattern. The real braille dots, 1 through 8, must be specified with their standard numbers. liblouis recognizes "virtual dots," which are used for special purposes, such as distinguishing accent marks. There are seven virtual dots. They are specified by the number 9 and the letters `a' through `f'. For a multi-cell dot pattern, the cell specifications must be separated from one another by a dash (`-'). For example, the contraction for the English word `lord' (the letter `l' preceded by dot 5) would be specified as 5-123. A space may be specified with the special dot number 0. An opcode which is helpful in writing translation tables is `include'. Its format is: include filename It reads the file indicated by `filename' and incorporates or includes its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry `include en-us-g1.ctb' in the table `en-us-g2.ctb'. If the included file is not in the same directory as the main table, use a full path name for filename. Tables can also be specified in a table list, in which the table names are separated by commas and given as a single table name in calls to the translation functions. The order of the various types of opcodes or table entries is important. Character-definition opcodes should come first. However, if the optional `display' opcode (*note display: display opcode.) is used it should precede character-definition opcodes. Braille-indicator opcodes should come next. Translation opcodes should follow. The `context' opcode (*note context: context opcode.) is a translation opcode, even though it is considered along with the multipass opcodes. These latter should follow the translation opcodes. The `correct' opcode (*note correct: correct opcode.) can be used anywhere after the character-definition opcodes, but it is probably a good idea to group all `correct' opcodes together. The `include' opcode (*note include: include opcode.) can be used anywhere, but the order of entries in the combined table must conform to the order given above. Within each type of opcode, the order of entries is generally unimportant. Thus the translation entries can be grouped alphabetically or in any other order that is convenient. Hyphenation tables may be specified either with an `include' opcode or as part of a table list. They should come after everything else. Character-definition opcodes are necessary for hyphenation tables to work. 3.1 Hyphenation Tables ====================== Hyphenation tables are necessary to make opcodes such as the `nocross' opcode (*note nocross: nocross opcode.) function properly. There are no opcodes for hyphenation table entries because these tables have a special format. Therefore, they cannot be specified as part of an ordinary table. Rather, they must be included using the `include' opcode (*note include: include opcode.) or as part of a table list. The liblouis hyphenation algorithm was adopted from the one used by OpenOffice. Note that Hyphenation tables must follow character definitions and should preferably be the last. For an example of a hyphenation table, see `hyph_en_US.dic'. 3.2 Character-Definition Opcodes ================================ These opcodes are needed to define attributes such as digit, punctuation, letter, etc. for all characters and their dot patterns. liblouis has no built-in character definitions, but such definitions are essential to the operation of the `context' opcode (*note context: context opcode.), the `correct' opcode (*note correct: correct opcode.), the multipass opcodes and the back-translator. If the dot pattern is a single cell, it is used to define the mapping between dot patterns and characters, unless a `display' opcode (*note display: display opcode.) for that character-dot-pattern pair has been used previously. If only a single-cell dot pattern has been given for a character, that dot pattern is defined with the character's own attributes. If more than one cell is given and some of them have not previously been defined as single cells, the undefined cells are entered into the dots table with the space attribute. This is done for backward compatibility with old tables, but it may cause problems with the above opcodes or back-translation. For this reason, every single-cell dot pattern should be defined before it is used in a multi-cell character representation. The best way to do this is to use the 8-dot computer braille representation for the particular braille code. If a character or dot pattern used in any rule, except those with the `display' opcode, the `repeated' opcode (*note repeated: repeated opcode.) or the `replace' opcode (*note replace: replace opcode.), is not defined by one of the character-definition opcodes, liblouis will give an error message and refuse to continue until the problem is fixed. If the translator or back-translator encounters an undefined character in its input it produces a succinct error indication in its output, and the character is treated as a space. `space character dots' Defines a character as a space and also defines the dot pattern as such. for example: space \s 0 \s is the escape sequence for blank; 0 means no dots. `punctuation character dots' Associates a punctuation mark in the particular language with a braille representation and defines the character and dot pattern as punctuation. For example: punctuation . 46 dot pattern for period in NAB computer braille `digit character dots' Associates a digit with a dot pattern and defines the character as a digit. For example: digit 0 356 NAB computer braille `uplow characters dots [,dots]' The characters operand must be a pair of letters, of which the first is uppercase and the second lowercase. The first dots suboperand indicates the dot pattern for the upper-case letter. It may have more than one cell. The second dots suboperand must be separated from the first by a comma and is optional, as indicated by the square brackets. If present, it indicates the dot pattern for the lower-case letter. It may also have more than one cell. If the second dots suboperand is not present the first is used for the lower-case letter as well as the upper-case letter. This opcode is needed because not all languages follow a consistent pattern in assigning Unicode codes to upper and lower case letters. It should be used even for languages that do. The distinction is important in the forward translator. for example: uplow Aa 17,1 `grouping name characters dots ,dots' This opcode is used to indicate pairs of grouping symbols used in processing mathematical expressions. These symbols are usually generated by the MathML interpreter in liblouisxml. They are used in multipass opcodes. The name operand must contain only letters, but they may be upper- or lower-case. The characters operand must contain exactly two Unicode characters. The dots operand must contain exactly two braille cells, separated by a comma. Note that grouping dot patterns also need to be declared with the `exactdots' opcode (*note exactdots: exactdots opcode.). The characters may need to be declared with the `math' opcode (*note math: math opcode.). grouping mrow \x0001\x0002 1e,2e grouping mfrac \x0003\x0004 3e,4e `letter character dots' Associates a letter in the language with a braille representation and defines the character as a letter. This is intended for letters which are neither uppercase nor lowercase. `lowercase character dots' Associates a character with a dot pattern and defines the character as a lowercase letter. Both the character and the dot pattern have the attributes lowercase and letter. `uppercase character dots' Associates a character with a dot pattern and defines the character as an uppercase letter. Both the character and the dot pattern have the attributes uppercase and letter. `lowercase' and `uppercase' should be used when a letter has only one case. Otherwise use the `uplow' opcode (*note uplow: uplow opcode.). `litdigit digit dots' Associates a digit with the dot pattern which should be used to represent it in literary texts. For example: litdigit 0 245 litdigit 1 1 `sign character dots' Associates a character with a dot pattern and defines both as a sign. This opcode should be used for things like at sign (`@'), percent (`%'), dollar sign (`$'), etc. Do not use it to define ordinary punctuation such as period and comma. For example: sign % 4-25-1234 literary percent sign `math character dots' Associates a character and a dot pattern and defines them as a mathematical symbol. It should be used for less than (`<'), greater than(`>'), equals(`='), plus(`+'), etc. For example: math + 346 plus 3.3 Braille Indicator Opcodes ============================= Braille indicators are dot patterns which are inserted into the braille text to indicate such things as capitalization, italic type, computer braille, etc. The opcodes which define them are followed only by a dot pattern, which may be one or more cells. `capsign dots' The dot pattern which indicates capitalization of a single letter. In English, this is dot 6. For example: capsign 6 `begcaps dots' The dot pattern which begins a block of capital letters. For example: begcaps 6-6 `endcaps dots' The dot pattern which ends a block of capital letters within a word. For example: endcaps 6-3 `letsign dots' This indicator is needed in Grade 2 to show that a single letter is not a contraction. It is also used when an abbreviation happens to be a sequence of letters that is the same as a contraction. For example: letsign 56 `noletsign letters' The letters in the operand will not be proceeded by a letter sign. More than one `noletsign' opcode can be used. This is equivalent to a single entry containing all the letters. In addition, if a single letter, such as `a' in English, is defined as a `word' (*note word: word opcode.) or `largesign' (*note largesign: largesign opcode.), it will be treated as though it had also been specified in a `noletsign' entry. `noletsignbefore characters' If any of the characters proceeds a single letter without a space a letter sign is not used. By default the characters apostrophe (`'') and period (`.') have this property. Use of a `noletsignbefore' entry cancels the defaults. If more than one `noletsignbefore' entry is used, the characters in all entries are combined. `noletsignafter characters' If any of the characters follows a single letter without a space a letter sign is not used. By default the characters apostrophe (`'') and period (`.') have this property. Use of a `noletsignafter' entry cancels the defaults. If more than one `noletsignafter' entry is used the characters in all entries are combined. `numsign dots' The translator inserts this indicator before numbers made up of digits defined with the `litdigit' opcode (*note litdigit: litdigit opcode.) to show that they are a number and not letters or some other symbols. For example: numsign 3456 3.4 Emphasis Opcodes ==================== These also define braille indicators, but they require more explanation. There are four sets, for italic, bold, underline and computer braille. In each of the first three sets there are seven opcodes, for use before the first word of a phrase, for use before the last word, for use after the last word, for use before the first letter (or character) if emphasis starts in the middle of a word, for use after the last letter (or character) if emphasis ends in the middle of a word, before a single letter (or character), and to specify the length of a phrase to which the first-word and last-word-before indicators apply. This rather elaborate set of emphasis opcodes was devised to try to meet all contingencies. It is unlikely that a translation table will contain all of them. The translator checks for their presence. If they are present, it first looks to see if the single-letter indicator should be used. Then it looks at the word (or phrase) indicators and finally at the multi-letter indicators. The translator will apply up to two emphasis indicators to each phrase or string of characters, depending on what the `typeform' parameter in its calling sequence indicates (*note Programming with liblouis::). For computer braille there are only two braille indicators, for the beginning and end of a sequence of characters to be rendered in computer braille. Such a sequence may also have other emphasis. The computer braille indicators are applied not only when computer braille is indicated in the `typeform' parameter, but also when a sequence of characters is determined to be computer braille because it contains a subsequence defined by the `compbrl' opcode (*note compbrl: compbrl opcode.) or the `literal' opcode (*note literal: literal opcode.). Here are the various emphasis opcodes. `firstwordital dots' This is the braille indicator to be placed before the first word of an italicized phrase that is longer than the value given in the `lenitalphrase' opcode (*note lenitalphrase: lenitalphrase opcode.). For example: firstwordital 46-46 English indicator `lastworditalbefore dots' This is the braille indicator to be placed before the last word of an italicized phrase. In addition, if `firstwordital' is not used, this braille indicator is doubled and placed before the first word. Do not use `lastworditalbefore' and `lastworditalafter' in the same table. For example: lastworditalbefore 4-6 `lastworditalafter dots' This is the braille indicator to be placed after the last word of an italicized phrase. Do not use `lastworditalbefore' and `lastworditalafter' in the same table. See also the `lenitalphrase' opcode (*note lenitalphrase: lenitalphrase opcode.) for more information. `firstletterital dots' This is the braille indicator to be placed before the first letter (or character) if italicization begins in the middle of a word. `lastletterital dots' This is the braille indicator to be placed after the last letter (or character) when italicization ends in the middle of a word. `singleletterital dots' This braille indicator is used if only a single letter (or character) is italicized. `lenitalphrase number' If `lastworditalbefore' is used, an italicized phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the `lenitalphrase' opcode, the `lastworditalbefore' sign is placed in front of each word. If it is greater, the `firstwordital' indicator is placed before the first word and the `lastworditalbefore' indicator is placed after the last word. Note that if the `firstwordital' opcode is not used its indicator is made up by doubling the dot pattern given in the `lastworditalbefore' entry. For example: lenitalphrase 4 `firstwordbold dots' This is the braille indicator to be placed before the first word of a bold phrase. For example: firstwordbold 456-456 `lastwordboldbefore dots' This is the braille indicator to be placed before the last word of a bold phrase. In addition, if `firstwordbold' is not used, this braille indicator is doubled and placed before the first word. Do not use `lastwordboldbefore' and `lastwordboldafter' in the same table. For example: lastwordboldbefore 456 `lastwordboldafter dots' This is the braille indicator to be placed after the last word of a bold phrase. Do not use `lastwordboldbefore' and `lastwordboldafter' in the same table. `firstletterbold dots' This is the braille indicator to be placed before the first letter (or character) if bold emphasis begins in the middle of a word. `lastletterbold dots' This is the braille indicator to be placed after the last letter (or character) when bold emphasis ends in the middle of a word. `singleletterbold dots' This braille indicator is used if only a single letter (or character) is in boldface. `lenboldphrase number' If `lastwordboldbefore' is used, a bold phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the `lenboldphrase' opcode, the `lastwordboldbefore' sign is placed in front of each word. If it is greater, the `firstwordbold' indicator is placed before the first word and the `lastwordboldbefore' indicator is placed after the last word. Note that if the `firstwordbold' opcode is not used its indicator is made up by doubling the dot pattern given in the `lastwordboldbefore' entry. `firstwordunder dots' This is the braille indicator to be placed before the first word of an underlined phrase. `lastwordunderbefore dots' This is the braille indicator to be placed before the last word of an underlined phrase. In addition, if `firstwordunder' is not used, this braille indicator is doubled and placed before the first word. `lastwordunderafter dots' This is the braille indicator to be placed after the last word of an underlined phrase. `firstletterunder dots' This is the braille indicator to be placed before the first letter (or character) if underline emphasis begins in the middle of a word. `lastletterunder dots' This is the braille indicator to be placed after the last letter (or character) when underline emphasis ends in the middle of a word. `singleletterunder dots' This braille indicator is used if only a single letter (or character) is underlined. `lenunderphrase number' If `lastwordunderbefore' is used, an underlined phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the `lenunderphrase' opcode, the `lastwordunderbefore' sign is placed in front of each word. If it is greater, the `firstwordunder' indicator is placed before the first word and the `lastwordunderbefore' indicator is placed after the last word. Note that if the `firstwordunder' opcode is not used its indicator is made up by doubling the dot pattern given in the `lastwordunderbefore' entry. `begcomp dots' This braille indicator is placed before a sequence of characters translated in computer braille, whether this sequence is indicated in the `typeform' parameter (*note Programming with liblouis::) or inferred because it contains a subsequence specified by the `compbrl' opcode (*note compbrl: compbrl opcode.). `endcomp dots' This braille indicator is placed after a sequence of characters translated in computer braille, whether this sequence is indicated in the `typeform' parameter (*note Programming with liblouis::) or inferred because it contains a subsequence specified by the `compbrl' opcode (*note compbrl: compbrl opcode.). 3.5 Special Symbol Opcodes ========================== These opcodes define certain symbols, such as the decimal point, which require special treatment. `decpoint character dots' This opcode defines the decimal point. The character operand must have only one character. For example, in `en-us-g1.ctb' we have: decpoint . 46 `hyphen character dots' This opcode defines the hyphen, that is, the character used in compound words such as have-nots. The back-translator uses it to determine the end of individual words. 3.6 Special Processing Opcodes ============================== These opcodes cause special processing to be carried out. `capsnocont' This opcode has no operands. If it is specified, words or parts of words in all caps are not contracted. This is needed for languages such as Norwegian. 3.7 Translation Opcodes ======================= These opcodes define the braille representations for character sequences. Each of them defines an entry within the contraction table. These entries may be defined in any order except, as noted below, when they define alternate representations for the same character sequence. Each of these opcodes specifies a condition under which the translation is legal, and each also has a characters operand and a dots operand. The text being translated is processed strictly from left to right, character by character, with the most eligible entry for each position being used. If there is more than one eligible entry for a given position in the text, then the one with the longest character string is used. If there is more than one eligible entry for the same character string, then the one defined first is is tested for legality first. (This is the only case in which the order of the entries makes a difference.) The characters operand is a sequence or string of characters preceded and followed by whitespace. Each character can be entered in the normal way, or it can be defined as a four-digit hexadecimal number preceded by `\x'. The dots operand defines the braille representation for the characters operand. It may also be specified as an equals sign (`='). This means that the the default representation for each character (*note Character-Definition Opcodes::) within the sequence is to be used. In what follows the word `characters' means a sequence of one or more consecutive letters between spaces and/or punctuation marks. `noback opcode ...' This is an opcode prefix, that is to say, it modifies the operation of the opcode that follows it on the same line. noback specifies that no back-translation is to be done using this line. noback always ;\s; 0 `nofor opcode ...' This is an opcode prefix which modifies the operation of the opcode following it on the same line. nofor specifies that forward translation is not to use the information on this line. `compbrl characters' If the characters are found within a block of text surrounded by whitespace the entire block is translated according to the default braille representations defined by the *note Character-Definition Opcodes::, if 8-dot computer braille is enabled or according to the dot patterns given in the `comp6' opcode (*note comp6: comp6 opcode.), if 6-dot computer braille is enabled. For example: compbrl www translate URLs in computer braille `comp6 character dots' This opcode specifies the translation of characters in 6-dot computer braille. It is necessary because the translation of a single character may require more than one cell. The first operand must be a character with a decimal representation from 0 to 255 inclusive. The second operand may specify as many cells as necessary. The opcode is somewhat of a misnomer, since any dots, not just dots 1 through 6, can be specified. This even includes virtual dots. `nocont characters' Like `compbrl', except that the string is uncontracted. `prepunc' opcode (*note prepunc: prepunc opcode.) and `postpunc' opcode (*note postpunc: postpunc opcode.) rules are applied, however. This is useful for specifying that foreign words should not be contracted in an entire document. `replace characters {characters}' Replace the first set of characters, no matter where they appear, with the second. Note that the second operand is _NOT_ a dot pattern. It is also optional. If it is omitted the character(s) in the first operand will be discarded. This is useful for ignoring characters. It is possible that the "ignored" characters may still affect the translation indirectly. Therefore, it is preferable to use `correct' opcode (*note correct: correct opcode.). `always characters dots' Replace the characters with the dot pattern no matter where they appear. Do _NOT_ use an entry such as `always a 1'. Use the `uplow', `letter', etc. character definition opcodes instead. For example: always world 456-2456 unconditional translation `repeated characters dots' Replace the characters with the dot pattern no matter where they appear. Ignore any consecutive repetitions of the same character sequence. This is useful for shortening long strings of spaces or hyphens or periods. For example: repeated --- 36-36-36 shorten separator lines made with hyphens `repword characters dots' When characters are encountered check to see if the word before this string matches the word after it. If so, replace characters with dots and eliminate the second word and any word following another occurrence of characters that is the same. This opcode is used in Malaysian braille. In this case the rule is: repword - 123456 `largesign characters dots' Replace the characters with the dot pattern no matter where they appear. In addition, if two words defined as large signs follow each other, remove the space between them. For example, in `en-us-g2.ctb' the words `and' and `the' are both defined as large signs. Thus, in the phrase `the cat and the dog' the space would be deleted between `and' and `the', with the result `the cat andthe dog'. Of course, `and' and `the' would be properly contracted. The term `largesign' is a bit of braille jargon that pleases braille experts. `word characters dots' Replace the characters with the dot pattern if they are a word, that is, are surrounded by whitespace and/or punctuation. `syllable characters dots' As its name indicates, this opcode defines a "syllable" which must be represented by exactly the dot patterns given. Contractions may not cross the boundaries of this "syllable" either from left or right. The character string defined by this opcode need not be a lexical syllable, though it usually will be. The equal sign in the following example means that the the default representation for each character within the sequence is to be used (*note Translation Opcodes::): syllable horse = sawhorse, horseradish `nocross characters dots' Replace the characters with the dot pattern if the characters are all in one syllable (do not cross a syllable boundary). For this opcode to work, a hyphenation table must be included. If this is not done, `nocross' behaves like the `always' opcode (*note always: always opcode.). For example, if the English Grade 2 table is being used and the appropriate hyphenation table has been included `nocross sh 146' will cause the `sh' in `monkshood' not to be contracted. `joinword characters dots' Replace the characters with the dot pattern if they are a word which is followed by whitespace and a letter. In addition remove the whitespace. For example, `en-us-g2.ctb' has `joinword to 235'. This means that if the word `to' is followed by another word the contraction is to be used and the space is to be omitted. If these conditions are not met, the word is translated according to any other opcodes that may apply to it. `lowword characters dots' Replace the characters with the dot pattern if they are a word preceded and followed by whitespace. No punctuation either before or after the word is allowed. The term `lowword' derives from the fact that in English these contractions are written in the lower part of the cell. For example: lowword were 2356 `contraction characters' If you look at `en-us-g2.ctb' you will see that some words are actually contracted into some of their own letters. A famous example among braille transcribers is `also', which is contracted as `al'. But this is also the name of a person. To take another example, `altogether' is contracted as `alt', but this is the abbreviation for the alternate key on a computer keyboard. Similarly `could' is contracted into `cd', but this is the abbreviation for compact disk. To prevent confusion in such cases, the letter sign (see `letsign' opcode (*note letsign: letsign opcode.)) is placed before such letter combinations when they actually are abbreviations, not contractions. The `contraction' opcode tells the translator to do this. `sufword characters dots' Replace the characters with the dot pattern if they are either a word or at the beginning of a word. `prfword characters dots' Replace the characters with the dot pattern if they are either a word or at the end of a word. `begword characters dots' Replace the characters with the dot pattern if they are at the beginning of a word. `begmidword characters dots' Replace the characters with the dot pattern if they are either at the beginning or in the middle of a word. `midword characters dots' Replace the characters with the dot pattern if they are in the middle of a word. `midendword characters dots' Replace the characters with the dot pattern if they are either in the middle or at the end of a word. `endword characters dots' Replace the characters with the dot pattern if they are at the end of a word. `partword characters dots' Replace the characters with the dot pattern if the characters are anywhere in a word, that is, if they are proceeded or followed by a letter. `exactdots @dots' Note that the operand must begin with an at sign (`@'). The dot pattern following it is evaluated for validity. If it is valid, whenever an at sign followed by this dot pattern appears in the source document it is replaced by the characters corresponding to the dot pattern in the output. This opcode is intended for use in liblouisxml semantic-action files to specify exact dot patterns, as in mathematical codes. For example: exactdots @4-46-12356 will produce the characters with these dot patterns in the output. `prepunc characters dots' Replace the characters with the dot pattern if they are part of punctuation at the beginning of a word. `postpunc characters dots' Replace the characters with the dot pattern if they are part of punctuation at the end of a word. `begnum characters dots' Replace the characters with the dot pattern if they are at the beginning of a number, that is, before all its digits. For example, in `en-us-g1.ctb' we have `begnum # 4'. `midnum characters dots' Replace the characters with the dot pattern if they are in the middle of a number. For example, `en-us-g1.ctb' has `midnum . 46'. This is because the decimal point has a different dot pattern than the period. `endnum characters dots' Replace the characters with the dot pattern if they are at the end of a number. For example `en-us-g1.ctb' has `endnum th 1456'. This handles things like `4th'. A letter sign is _NOT_ inserted. `joinnum characters dots' Replace the characters with the dot pattern. In addition, if whitespace and a number follows omit the whitespace. This opcode can be used to join currency symbols to numbers for example: joinnum \x20AC 15 (EURO SIGN) joinnum \x0024 145 (DOLLAR SIGN) joinnum \x00A3 1234 (POUND SIGN) joinnum \x00A5 13456 (YEN SIGN) 3.8 Character-Class Opcodes =========================== These opcodes define and use character classes. A character class associates a set of characters with a name. The name then refers to any character within the class. A character may belong to more than one class. The basic character classes correspond to the character definition opcodes, with the exception of the `uplow' opcode (*note uplow: uplow opcode.), which defines characters belonging to the two classes `uppercase' and `lowercase'. These classes are: `space' Whitespace characters such as blank and tab `digit' Numeric characters `letter' Both uppercase and lowercase alphabetic characters `lowercase' Lowercase alphabetic characters `uppercase' Uppercase alphabetic characters `punctuation' Punctuation marks `sign' Signs such as percent (`%') `math' Mathematical symbols `litdigit' Literary digit `undefined' Not properly defined The opcodes which define and use character classes are shown below. For examples see `fr-abrege.ctb'. `class name characters' Define a new character class. The characters operand must be specified as a string. A character class may not be used until it has been defined. `after class opcode ...' The specified opcode is further constrained in that the matched character sequence must be immediately preceded by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used. `before class opcode ...' The specified opcode is further constrained in that the matched character sequence must be immediately followed by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used. 3.9 Swap Opcodes ================ The swap opcodes are needed to tell the `context' opcode (*note context: context opcode.), the `correct' opcode (*note correct: correct opcode.) and multipass opcodes which dot patterns to swap for which characters. There are three, `swapcd', `swapdd' and `swapcc'. The first swaps dot patterns for characters. The second swaps dot patterns for dot patterns and the third swaps characters for characters. The first is used in the `context' opcode and the second is used in the multipass opcodes. Dot patterns are separated by commas and may contain more than one cell. `swapcd name characters dots, dots, dots, ...' See above paragraph for explanation. For example: swapcd dropped 0123456789 356,2,23,... `swapdd name dots, dots, dots ... dotpattern1, dotpattern2, dotpattern3, ...' The `swapdd' opcode defines substitutions for the multipass opcodes. In the second operand the dot patterns must be single cells, but in the third operand multi-cell dot patterns are allowed. This is because multi-cell patterns in the second operand would lead to ambiguities. `swapcc name characters characters' The `swapcc' opcode swaps characters in its second operand for characters in the corresponding places in its third operand. It is intended for use with `correct' opcodes and can solve problems such as formatting phone numbers. 3.10 The Context and Multipass Opcodes ====================================== The `context' and multipass opcodes (`pass2', `pass3' and `pass4') provide translation capabilities beyond those of the basic translation opcodes (*note Translation Opcodes::) discussed previously. The multipass opcodes cause additional passes to be made over the string to be translated. The number after the word `pass' indicates in which pass the entry is to be applied. If no multipass opcodes are given, only the first translation pass is made. The `context' opcode is basically a multipass opcode for the first pass. It differs slightly from the multipass opcodes per se. The format of all these opcodes is `opcode test action'. The specific opcodes are invoked as follows: `context test action' `pass2 test action' `pass3 test action' `pass4 test action' The `test' and `action' operands have suboperands. Each suboperand begins with a non-alphanumeric character and ends when another non-alphanumeric character is encountered. The suboperands and their initial characters are as follows. `" (double quote)' a string of characters. This string must be terminated by another double quote. It may contain any characters. If a double quote is needed within the string, it must be preceded by a backslash (`\'). If a space is needed, it must be represented by the escape sequence \s. This suboperand is valid only in the test part of the `context' opcode. `@ (at sign)' a sequence of dot patterns. Cells are separated by hyphens as usual. This suboperand is not valid in the test part of the context and correct opcodes. `` (accent mark)' If this is the beginning of the string being translated this suboperand is true. It is valid only in the test part and must be the first thing in this operand. `~ (tilde)' If this is the end of the string being translated this suboperand is true. It is valid only in the test part and must be the last thing in this operand. `$ (dollar sign)' a string of attributes, such as `d' for digit, `l' for letter, etc. More than one attribute can be given. If you wish to check characters with any attribute, use the letter `a'. Input characters are checked to see if they have at least one of the attributes. The attribute string can be followed by numbers specifying how many characters are to be checked. If no numbers are given, 1 is assumed. If two numbers separated by a hyphen are given, the input is checked to make sure that at least the first number of characters with the attributes are present, but no more than the second number. If only one number is present, then exactly that many characters must have the attributes. A period instead of the numbers indicates an indefinite number of characters (for technical reasons the number of characters that are actually matched is limited to 65535). This suboperand is valid in all test parts but not in action parts. For the characters which can be used in attribute strings, see the following table. `! (exclamation point)' reverses the logical meaning of the suboperand which follows. For example, !$d is true only if the character is _NOT_ a digit. This suboperand is valid in test parts only. `% (percent sign)' the name of a class defined by the `class' opcode (*note class: class opcode.) or the name of a swap set defined by the swap opcodes (*note Swap Opcodes::). Names may contain only letters. The letters may be upper or lower-case. The case matters. Class names may be used in test parts only. Swap names are valid everywhere. `{ (left brace)' Name: the name of a grouping pair. The left brace indicates that the first (or left) member of the pair is to be used in matching. If this is between replacement brackets it must be the only item. This is also valid in the action part. `} (right brace)' Name: the name of a grouping pair. The right brace indicates that the second (or right) member is to be used in matching. See the remarks on the left brace immediately above. `/ (slash)' Search the input for the expression following the slash and return true if found. This can be used to set a variable. `_ (underscore)' Move backward. If a number follows, move backward that number of characters. The program never moves backward beyond the beginning of the input string. This suboperand is valid only in test parts. `[ (left bracket)' start replacement here. This suboperand must always be paired with a right bracket and is valid only in test parts. Multiple pairs of square brackets in a single expression are not allowed. `] (right bracket)' end replacement here. This suboperand must always be paired with a left bracket and is valid only in test parts. `# (number sign or crosshatch)' test or set a variable. Variables are referred to by numbers 1 to 50, for example, `#1', `#2', `#25'. Variables may be set by one `context' or multipass opcode and tested by another. Thus, an operation that occurs at one place in a translation can tell an operation that occurs later about itself. This feature will be used in math translation, and it may also help to alleviate the need for new opcodes. This suboperand is valid everywhere. Variables are set in the action part. To set a variable use an expression like `#1=1', `#2=5', etc. Variables are also incremented and decremented in the action part with expressions like `#1+', `#3-', etc. These operators increment or decrement the variable by 1. Variables are tested in the test part with expressions like `#1=2', `#3<4', `#5>6', etc. `* (asterisk)' Copy the characters or dot patterns in the input within the replacement brackets into the output and discard anything else that may match. This feature is used, for example, for handling numeric subscripts in Nemeth. This suboperand is valid only in action parts. `? (question mark)' Valid only in the action part. The characters to be replaced are simply ignored. That is, they are replaced with nothing. If either member of a grouping pair is in the replace brackets the other member at the same level is also removed. The characters which can be used in attribute strings are as follows: `a' any attribute `d' digit `D' literary digit `l' letter `m' math `p' punctuation `S' sign `s' space `U' uppercase `u' lowercase `w' first user-defined class `x' second user-defined class `y' third user-defined class `z' fourth user-defined class The following illustrates the algorithm how text is evaluated with multipass expressions: Loop over context, pass2, pass3 and pass4 and do the following for each pass: a. Match the text following the cursor against all expressions in the current pass b. If there is no match: shift the cursor one position to the right and continue the loop c. If there is a match: choose the longest match d. Do the replacement (everything between square brackets) e. Place the cursor after the replaced text f. continue loop 3.11 The correct Opcode ======================= `correct test action' Because some input (such as that from an OCR program) may contain systematic errors, it is sometimes advantageous to use a pre-translation pass to remove them. The errors and their corrections are specified by the `correct' opcode. If there are no `correct' opcodes in a table, the pre-translation pass is not used. The format of the `correct' opcode is very similar to that of the `context' opcode (*note context: context opcode.). The only difference is that in the action part strings may be used and dot patterns may not be used. Some examples of `correct' opcode entries are: correct "\\" ? Eliminate backslashes correct "cornf" "comf" fix a common "scano" correct "cornm" "comm" correct "cornp" "comp" correct "*" ? Get rid of stray asterisks correct "|" ? ditto for vertical bars correct "\s?" "?" drop space before question mark 3.12 Miscellaneous Opcodes ========================== `include filename' Read the file indicated by `filename' and incorporate or include its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry include `en-us-g1.ctb' in the table `en-us-g2.ctb'. If the included file is not in the same directory as the main table, use a full path name for filename. `locale characters' Not implemented, but recognized and ignored for backward compatibility. `undefined dots' If this opcode is used in a table any characters which have not been defined in the table but are encountered in the text will be replaced by the dot pattern. If this opcode is not used, any undefined characters are replaced by `'\xhhhh'', where the h's are hexadecimal digits. `display character dots' Associates dot patterns with the characters which will be sent to a braille embosser, display or screen font. The character must be in the range 0-255 and the dots must specify a single cell. Here are some examples: # When the character a is sent to the embosser or display, # it will produce a dot 1. display a 1 # When the character L is sent to the display or embosser # it will produce dots 1-2-3. display L 123 The `display' opcode is optional. It is used when the embosser or display has a different mapping of characters to dot patterns than that given in *note Character-Definition Opcodes::. If used, display entries must proceed character-definition entries. A possible use case would be to define display opcodes so that the result is Unicode braille for use on a display and a second set of display opcodes (in a different file) to produce plain ASCII braille for use with an embosser. `multind dots opcode opcode ...' The `multind' opcode tells the back-translator that a sequence of braille cells represents more than one braille indicator. For example, in `en-us-g1.ctb' we have `multind 56-6 letsign capsign'. The back-translator can generally handle single braille indicators, but it cannot apply them when they immediately follow each other. It recognizes the letter sign if it is followed by a letter and takes appropriate action. It also recognizes the capital sign if it is followed by a letter. But when there is a letter sign followed by a capital sign it fails to recognize the letter sign unless the sequence has been defined with `multind'. A `multind' entry may not contain a comment because liblouis would attempt to interpret it as an opcode. 3.13 Deprecated Opcodes ======================= The following opcodes are an early attempt to handle emphasis. They have been deprecated by more specific opcodes, but are kept for backward compatibility. `italsign dots' This opcode is deprecated. Use the `lastworditalbefore' opcode (*note lastworditalbefore: lastworditalbefore opcode.) instead. `begital dots' This opcode is deprecated. Use the `firstletterital' opcode (*note firstletterital: firstletterital opcode.) instead. `endital dots' This opcode is deprecated. Use the `lastletterital' opcode (*note lastletterital: lastletterital opcode.) instead. `boldsign dots' This opcode is deprecated. Use the `lastwordboldbefore' opcode (*note lastwordboldbefore: lastwordboldbefore opcode.) instead. `begbold dots' This opcode is deprecated. Use the `firstletterbold' opcode (*note firstletterbold: firstletterbold opcode.) instead. `endbold dots' This opcode is deprecated. Use the `lastletterbold' opcode (*note lastletterbold: lastletterbold opcode.) instead. `undersign dots' This opcode is deprecated. Use the `lastwordunderbefore' opcode (*note lastwordunderbefore: lastwordunderbefore opcode.) instead. `begunder dots' This opcode is deprecated. Use the `firstletterunder' opcode (*note firstletterunder: firstletterunder opcode.) instead. `endunder dots' This opcode is deprecated. Use the `lastletterunder' opcode (*note lastletterunder: lastletterunder opcode.) instead. `literal characters' This opcode is deprecated. Use the `compbrl' opcode (*note compbrl: compbrl opcode.) instead. 4 How to test Translation Tables ******************************** There are a number of automated tests for liblouis and they are proving to be of tremendous value. When changing the code the developers can run the tests to see if anything broke. For testing the translation tables there are basically two approaches: there are the harness tests and the doctests. They were created at roughly the same time using different technologies, have influenced each other and have gone through improvements and technology changes. For now they are both based on Python so you need to have that installed. The philosophies of the two are slightly different: Harness tests The harness tests are data driven, i.e. you give the test data, i.e. a string to translate and the expected output. The data is in a standard format, i.e. json. They work with both Python2 and Python3, however since the format is json it is perceivable that somebody would write some C code which takes the data in the harness file and runs it through liblouis so they could also run without Python and without ucs4. Doctests The doctests on the other hand are based on a technology used in Python where you define your tests as if you were sitting at a terminal session with a Python interpreter. So the tests look like you typed a command and got some output, e.g. >>> translate(['table.ctb'], "Hello", mode=compbrlLeftCursor) ("HELLO", [0,1,2,3], [0,1,2,3], 0) There is a convenience wrapper which hides away much of the complexity of above example so you can write stuff like >>> t.braille('the cat sat on the mat') u'! cat sat on ! mat' But essentially you are writing code, so the doctests allow you to do more flexible tests that are much closer to the raw iron. For technical reasons the doctests will probably only ever work in either Python2 or Python3 but not both and they will never run from C. To sum it up, the recommendation is that for normal table testing you should use the test harness. It has a lot of momentum and the format is a standard. If you want to be closer to the raw Python API of liblouis, if you want to test some more intricate scenarios (involving inpos, modes, etc) then the doctests are for you. 4.1 Translation Table Test Harness ================================== Each harness file is a simple utf8 encoded json file, which has two entries. `tables' A list containing table names, which the tests should be run against. This is usually just one table, but for some situations more than one table is required. `tests' A list of sections of tests, which should be processed independantly. Each test section is a dictionary of two items. `flags' The flags that apply for all the test cases in this section. For example, they could all be forward translation tests, or they should all be run as computer braille tests. `data' A list of test cases, each one containing the specific test data needed to perform a test. These are the valid fields for the flags section: `comment' A field describing the reason for the tests, the transformation rule or any useful info that might be needed in case the test breaks (optional). `cursorPos' The position of the cursor within the given text (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour. `mode' The liblouis translation mode that should be used for this test (optional). If not defined defaults to 0. `outputUniBrl' For a forward translation test, the output should be in unicode braille. For a backward translation test, the input is in unicode braille. `testmode' The optional testmode field can have three values: "translate" (default if undeclaired), "backtranslate" or "hyphenate". Declares what tests should be performed on the test data. Each test case has the following entries: `input' The unicode text to be tested (required). `output' The expected braille output (required). The dots should be encoded in the liblouis ascii-braille like encoding. `brlCursorPos' The expected position of the braille cursor in the braille output (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour. Variables defined in the flags section can be overwridden by individual test cases, but if several tests need the same options, they should idealy be split into their own section, complete with their own flags and data. For examples please see `*_harness.txt' in the harness directory in the source distribution. 4.2 Translation Table Doctests ============================== For examples on how to create doctests please see `*_test.txt' in the doctest directory in the source distribution. 5 Notes on Back-Translation *************************** Back-translation is carried out by the function `lou_backTranslateString'. Its calling sequence is described in *note Programming with liblouis::. Tables containing no `context' opcode (*note context: context opcode.), `correct' opcode (*note correct: correct opcode.) or multipass opcodes can be used for both forward and backward translation. If these opcodes are needed different tables will be required. `lou_backTranslateString' first performs `pass4', if present, then `pass3', then `pass2', then the backtranslation, then corrections. Note that this is exactly the inverse of forward translation. 6 Programming with liblouis *************************** 6.1 License =========== Liblouis may contain code borrowed from the Linux screen reader BRLTTY, Copyright (C) 1999-2006 by the BRLTTY Team. Copyright (C) 2004-2007 ViewPlus Technologies, Inc. `www.viewplus.com'. Copyright (C) 2007,2009 Abilitiessoft, Inc. `www.abilitiessoft.com'. Liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Liblouis. If not, see `http://www.gnu.org/licenses/'. 6.2 Overview ============ You use the liblouis library by calling the following functions, `lou_translateString', `lou_backTranslateString', `lou_logFile', `lou_logPrint', `lou_endLog', `lou_getTable', `lou_translate', `lou_backTranslate', `lou_hyphenate', `lou_charToDots', `lou_dotsToChar', `lou_compileString', `lou_readCharFromFile', `lou_version' and `lou_free'. These are described below. The header file, `liblouis.h', also contains brief descriptions. Liblouis is written in straight C. It has just three code modules, `compileTranslationTable.c', `lou_translateString.c' and `lou_backTranslateString.c'. In addition, there are two header files, `liblouis.h', which defines the API, and `louis.h', used only internally and by liblouisxml. The latter includes `liblouis.h'. Persons who wish to use liblouis from Python may want to skip ahead to *note Python bindings::. `compileTranslationTable.c' keeps track of all translation tables which an application has used. It is called by the translation, hyphenation and checking functions when they start. If a table has not yet been compiled `compileTranslationTable.c' checks it for correctness and compiles it into an efficient internal representation. The main entry point is `lou_getTable'. Since it is the module that keeps track of memory usage, it also contains the `lou_free' function. In addition, it contains the `lou_logFile', `lou_logPrint' and `lou_endLog' functions, plus some utility functions which are used by the other modules. By default, liblouis handles all characters internally as 16-bit unsigned integers. It can be compiled for 32-bit characters as explained below. The meanings of these integers are not hard-coded. Rather they are defined by the character-definition opcodes. However, the standard printable characters, from decimal 32 to 126 are recognized for the purpose of processing the opcodes. Hence, the following definition is included in `liblouis.h'. It is correct for computers with at least 32-bit processors. #define widechar unsigned short int To make liblouis handle 32-bit Unicode simply remove the word `short' in the above `define'. This will cause the translate and back-translate functions to expect input in 32-bit form and to deliver their output in this form. The input to the compiler (tables) is unaffected except that two new escape sequences for 20-bit and 32-bit characters are recognized. Here are the definitions of the eleven liblouis functions and their parameters. They are given in terms of 16-bit Unicode. If liblouis has been compiled for 32-bit Unicode simply read 32 instead of 16. 6.3 Data structure of liblouis tables ===================================== The data structure `TranslationTableHeader' is defined by a `typedef' statement in `louis.h'. To find the beginning, search for the word `header'. As its name implies, this is actually the table header. Data are placed in the `ruleArea' array, which is the last item defined in this structure. This array is declared with a length of 1 and is expanded as needed. The table header consists mostly of arrays of pointers of size `HASHNUM'. These pointers are actually offsets into `ruleArea' and point to chains of items which have been placed in the same hash bucket by a simple hashing algorithm. `HASHNUM' should be a prime and is currently 1123. The structure of the table was chosen to optimize speed rather than memory usage. The first part of the table contains miscellaneous information, such as the number of passes and whether various opcodes have been used. It also contains the amount of memory allocated to the table and the amount actually used. The next section contains pointers to various braille indicators and begins with `capitalSign'. The rules pointed to contain the dot pattern for the indicator and an opcode which is used by the back-translator but does not appear in the list of opcodes. The braille indicators also include various kinds of emphasis, such as italic and bold and information about the length of emphasized phrases. The latter is contained directly in the table item instead of in a rule. After the braille indicators comes information about when a letter sign should be used. Next is an array of size `HASHNUM' which points to character definitions. These are created by the character-definition opcodes. Following this is a similar array pointing to definitions of single-cell dot patterns. This is also created from the character-definition opcodes. If a character definition contains a multi-cell dot pattern this is compiled into ordinary forward and backward rules. If such a multi-cell dot pattern contains a single cell which has not previously been defined that cell is placed in this array, but is given the attribute `space'. Next come arrays that map characters to single-cell dot patterns and dots to characters. These are created from both character-definition opcodes and display opcodes. Next is an array of size 256 which maps characters in this range to dot patterns which may consist of multiple cells. It is used, for example, to map `{' to dots 456-246. These mappings are created by the `compdots' or the `comp6' opcode (*note comp6: comp6 opcode.). Next are two small arrays that held pointers to chains of rules produced by the `swapcd' opcode (*note swapcd: swapcd opcode.) and the `swapdd' opcode (*note swapdd: swapdd opcode.) and by some multipass, `context' and `correct' opcodes. Now we get to an array of size `HASHNUM' which points to chains of rules for forward translation. Following this is a similar array for back-translation. Finally is the `ruleArea', an array of variable size to which various structures are mapped and to which almost everything else points. 6.4 lou_version =============== char *lou_version () This function returns a pointer to a character string containing the version of liblouis, plus other information, such as the release date and perhaps notable changes. 6.5 lou_translateString ======================= int lou_translateString ( const char * tableList, const widechar * inbuf, int *inlen, widechar *outbuf, int *outlen, char *typeform, char *spacing, int mode); This function takes a string of 16-bit Unicode characters in `inbuf' and translates it into a string of 16-bit characters in `outbuf'. Each 16-bit character produces a particular dot pattern in one braille cell when sent to an embosser or braille display or to a screen type font. Which 16-bit character represents which dot pattern is indicated by the character-definition and display opcodes in the translation table. The `tableList' parameter points to a list of translation tables separated by commas. If only one table is given, no comma should be used after it. It is these tables which control just how the translation is made, whether in Grade 2, Grade 1, or something else. liblouis knows where to find all the tables that have been distributed with it. So you can just give a table name such as `en-us-g2.ctb' and liblouis will load it. You can also give a table name which includes a path. If this is the first table in a list, all the tables in the list must be on the same path. You can specify a path on which liblouis will look for table names by setting the environment variable `LOUIS_TABLEPATH'. This environment variable can contain one or more paths separated by commas. On receiving a table name liblouis first checks to see if it can be found on any of these paths. If not, it then checks to see if it can be found in the current directory, or, if the first (or only) name in a table list, if it contains a path name, can be found on that path. If not, it checks to see if it can be found on the path where the distributed tables have been installed. If a table has already been loaded and compiled this path-checking is skipped. The tables in a list are all compiled into the same internal table. The list is then regarded as the name of this table. As explained in *note How to Write Translation Tables::, each table is a file which may be plain text, big-endian Unicode or little-endian Unicode. A table (or list of tables) is compiled into an internal representation the first time it is used. Liblouis keeps track of which tables have been compiled. For this reason, it is essential to call the `lou_free' function at the end of your application to avoid memory leaks. Do _NOT_ call `lou_free' after each translation. This will force liblouis to compile the translation tables each time they are used, leading to great inefficiency. Note that both the `*inlen' and `*outlen' parameters are pointers to integers. When the function is called, these integers contain the maximum input and output lengths, respectively. When it returns, they are set to the actual lengths used. The `typeform' parameter is used to indicate italic type, boldface type, computer braille, etc. It is a string of characters with the same length as the input buffer pointed to by `*inbuf'. However, it is used to pass back character-by-character results, so enough space must be provided to match the `*outlen' parameter. Each character indicates the typeform of the corresponding character in the input buffer. The values are as follows: 0 plain-text; 1 italic; 2 bold; 4 underline; 8 computer braille. These values can be added for multiple emphasis. If this parameter is `NULL', no checking for type forms is done. In addition, if this parameter is not `NULL', it is set on return to have an 8 at every position corresponding to a character in `outbuf' which was defined to have a dot representation containing dot 7, dot 8 or both, and to 0 otherwise. The `spacing' parameter is used to indicate differences in spacing between the input string and the translated output string. It is also of the same length as the string pointed to by `*inbuf'. If this parameter is `NULL', no spacing information is computed. The `mode' parameter specifies how the translation should be done. The valid values of mode are listed in `liblouis.h'. They are all powers of 2, so that a combined mode can be specified by adding up different values. The function returns 1 if no errors were encountered and 0 if a complete translation could not be done. 6.6 lou_translate ================= int lou_translate ( const char * tableList, const widechar * const inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); This function adds the parameters `outputPos', `inputPos' and `cursorPos', to facilitate use in screen reader programs. The `outputPos' parameter must point to an array of integers with at least `inlen' elements. On return, this array will contain the position in `outbuf' corresponding to each input position. Similarly, `inputPos' must point to an array of integers of at least `outlen' elements. On return, this array will contain the position in `inbuf' corresponding to each position in `outbuf'. `cursorPos' must point to an integer containing the position of the cursor in the input. On return, it will contain the cursor position in the output. Any parameter after `outlen' may be `NULL'. In this case, the actions corresponding to it will not be carried out. The `mode' parameter, however, must be present and must be an integer, not a pointer to an integer. If the `compbrlAtCursor' bit is set in the `mode' parameter the space-bounded characters containing the cursor will be translated in computer braille. If the `compbrlLeftCursor' bit is set only the characters to the left of the cursor will be in computer braille. This bit overrides `compbrlAtCursor'. When the `dotsIO' bit is set, during translation, produce output as dot patterns. During back-translation accept input as dot patterns. Note that the produced dot patterns are affected if you have any `display' opcode (*note display: display opcode.) defined in any of your tables. The `ucBrl' (Unicode Braille) bit is used by `lou_charToDots' and `lou_translate'. It causes the dot patterns to be Unicode Braille rather than the liblouis representation. Note that you will not notice any change when setting `ucBrl' unless `dotsIO' is also set. `lou_dotsToChar' and `lou_backTranslate' recognize Unicode braille automatically. The `otherTrans' mode needs special description. If it is set liblouis will attempt to call a wrapper for another translator. These other translators are usually for Asian languages. The calling sequence is the same as for liblouis itself except that the `trantab' parameter gives the name of the other translator, possibly abbreviated, followed by a colon, followed by whatever other information the other translator needs. This is specific for each translator. If no such information is needed the colon should be omitted. The result of calling either the translate or back-translate functions with this mode bit set will be the same as calling without it set. That is, the wrapper for the other translator simulates a call to liblouis. Note that the wrappers are not implemented at this time. Setting this mode bit will result in failure (return value of 0). 6.7 lou_backTranslateString =========================== int lou_backTranslateString ( const char * tableList, const widechar * inbuf, int *inlen, widechar *outbuf, int *outlen, char *typeform, char *spacing, int mode); This is exactly the opposite of `lou_translateString'. `inbuf' is a string of 16-bit Unicode characters representing braille. `outbuf' will contain a string of 16-bit Unicode characters. `typeform' will indicate any emphasis found in the input string, while `spacing' will indicate any differences in spacing between the input and output strings. The `typeform' and `spacing' parameters may be `NULL' if this information is not needed. `mode' again specifies how the back-translation should be done. 6.8 lou_backTranslate ===================== int lou_backTranslate ( const char * tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); This function is exactly the inverse of `lou_translate'. 6.9 lou_hyphenate ================= int lou_hyphenate ( const char *tableList, const widechar *inbuf, int inlen, char *hyphens, int mode); This function looks at the characters in `inbuf' and if it finds a sequence of letters attempts to hyphenate it as a word. Note that lou_hyphenate operates on single words only, and spaces or punctuation marks between letters are not allowed. Leading and trailing punctuation marks are ignored. The table named by the `tableList' parameter must contain a hyphenation table. If it does not, the function does nothing. `inlen' is the length of the character string in `inbuf'. `hyphens' is an array of characters and must be of size `inlen' + 1 (to account for the NULL terminator). If hyphenation is successful it will have a 1 at the beginning of each syllable and a 0 elsewhere. If the `mode' parameter is 0 `inbuf' is assumed to contain untranslated characters. Any nonzero value means that `inbuf' contains a translation. In this case, it is back-translated, hyphenation is performed, and it is re-translated so that the hyphens can be placed correctly. The `lou_translate' and `lou_backTranslate' functions are used in this process. `lou_hyphenate' returns 1 if hyphenation was successful and 0 otherwise. In the latter case, the contents of the `hyphens' parameter are undefined. This function was provided for use in liblouisxml. 6.10 lou_compileString ====================== int lou_compileString (const char *tableList, const char *inString) This function enables you to compile a table entry on the fly at run-time. The new entry is added to `tableList' and remains in force until `lou_free' is called. If `tableList' has not previously been loaded it is loaded and compiled. `inString' contains the table entry to be added. It may be anything valid. Error messages will be produced if it is invalid. The function returns 1 on success and 0 on failure. 6.11 lou_dotsToChar =================== int lou_dotsToChar (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int) This function takes a widechar string in `inbuf' consisting of dot patterns and converts it to a widechar string in `outbuf' consisting of characters according to the specifications in `tableList'. `length' is the length of both `inbuf' and `outbuf'. The dot patterns in `inbuf' can be in either liblouis format or Unicode braille. The function returns 1 on success and 0 on failure. 6.12 lou_charToDots =================== int lou_charToDots (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int mode) This function is the inverse of `lou_dotsToChar'. It takes a widechar string in `inbuf' consisting of characters and converts it to a widechar string in `outbuf' consisting of dot patterns according to the specifications in `tableList'. `length' is the length of both `inbuf' and `outbuf'. The dot patterns in `outbufbuf' are in liblouis format if the mode bit `ucBrl' is not set and in Unicode format if it is set. The function returns 1 on success and 0 on failure. 6.13 lou_logFile ================ void lou_logFile (char *fileName); This function is used when it is not convenient either to let messages be printed on stderr or to use redirection, as when liblouis is used in a GUI application or in liblouisxml. Any error messages generated will be printed to the file given in this call. The entire path name of the file must be given. 6.14 lou_logPrint ================= void lou_logPrint (char *format, ...); This function is called like `fprint'. It can be used by other libraries to print messages to the file specified by the call to `lou_logFile'. In particular, it is used by the companion library liblouisxml. 6.15 lou_logEnd =============== lou_logEnd (); This function is used at the end of processing a document to close the log file, so that it can be read by the rest of the program. 6.16 lou_setDataPath ==================== char * lou_setDataPath (char *path); This function is used to tell liblouis and liblouisutdml where tables and files are located. It thus makes them completely relocatable, even on Linux. The `path' is the directory where the subdirectories `liblouis/tables' and `liblouisutdml/lbu_files' are rooted or located. The function returns a pointer to the `path'. 6.17 lou_getDataPath ==================== char * lou_getDataPath (); This function returns a pointer to the path set by `lou_setDataPath'. If no path has been set it returns `NULL'. 6.18 lou_getTable ================= void *lou_getTable (char *tablelist); `tablelist' is a list of names of table files separated by commas, as explained previously (*note `tableList' parameter in `lou_translateString': translation-tables.). If no errors are found this function returns a pointer to the compiled table. If errors are found messages are printed to the log file, which is stderr unless a different filename has been given using the `lou_logFile' function. Errors result in a `NULL' pointer being returned. 6.19 lou_readCharFromFile ========================= int lou_readCharFromFile (const char *fileName, int *mode); This function is provided for situations where it is necessary to read a file which may contain little-endian or big-endian 16-bit Unicode characters or ASCII8 characters. The return value is a little-endian character, encoded as an integer. The `fileName' parameter is the name of the file to be read. The `mode' parameter is a pointer to an integer which must be set to 1 on the first call. After that, the function takes care of it. On end-of-file the function returns `EOF'. 6.20 lou_free ============= void lou_free (); This function should be called at the end of the application to free all memory allocated by liblouis. Failure to do so will result in memory leaks. Do _NOT_ call `lou_free' after each translation. This will force liblouis to compile the translation tables every time they are used, resulting in great inefficiency. 6.21 Python bindings ==================== There are Python bindings for `lou_translateString', `lou_translate' and `lou_version'. For installation instructions see the the `README' file in the `python' directory. Usage information is included in the Python module itself. Opcode Index ************ after: See 3.8. (line 1231) always: See 3.7. (line 1005) before: See 3.8. (line 1238) begbold: See 3.13. (line 1591) begcaps: See 3.3. (line 660) begcomp: See 3.4. (line 879) begital: See 3.13. (line 1579) begmidword: See 3.7. (line 1111) begnum: See 3.7. (line 1152) begunder: See 3.13. (line 1603) begword: See 3.7. (line 1107) boldsign: See 3.13. (line 1587) capsign: See 3.3. (line 654) capsnocont: See 3.6. (line 917) class: See 3.8. (line 1226) comp6: See 3.7. (line 978) compbrl: See 3.7. (line 968) context: See 3.10. (line 1292) contraction: See 3.7. (line 1085) correct: See 3.11. (line 1486) decpoint: See 3.5. (line 900) digit: See 3.2. (line 567) display: See 3.12. (line 1529) endbold: See 3.13. (line 1595) endcaps: See 3.3. (line 666) endcomp: See 3.4. (line 886) endital: See 3.13. (line 1583) endnum: See 3.7. (line 1163) endunder: See 3.13. (line 1607) endword: See 3.7. (line 1123) exactdots: See 3.7. (line 1132) firstletterbold: See 3.4. (line 818) firstletterital: See 3.4. (line 773) firstletterunder: See 3.4. (line 854) firstwordbold: See 3.4. (line 798) firstwordital: See 3.4. (line 749) firstwordunder: See 3.4. (line 841) grouping: See 3.2. (line 590) hyphen: See 3.5. (line 906) include: See 3.12. (line 1510) italsign: See 3.13. (line 1575) joinnum: See 3.7. (line 1168) joinword: See 3.7. (line 1067) largesign: See 3.7. (line 1030) lastletterbold: See 3.4. (line 822) lastletterital: See 3.4. (line 777) lastletterunder: See 3.4. (line 859) lastwordboldafter: See 3.4. (line 813) lastwordboldbefore: See 3.4. (line 804) lastworditalafter: See 3.4. (line 766) lastworditalbefore: See 3.4. (line 757) lastwordunderafter: See 3.4. (line 850) lastwordunderbefore: See 3.4. (line 845) lenboldphrase: See 3.4. (line 830) lenitalphrase: See 3.4. (line 785) lenunderphrase: See 3.4. (line 868) letsign: See 3.3. (line 672) letter: See 3.2. (line 606) litdigit: See 3.2. (line 623) literal: See 3.13. (line 1611) locale: See 3.12. (line 1518) lowercase: See 3.2. (line 611) lowword: See 3.7. (line 1076) math: See 3.2. (line 638) midendword: See 3.7. (line 1119) midnum: See 3.7. (line 1157) midword: See 3.7. (line 1115) multind: See 3.12. (line 1553) noback: See 3.7. (line 956) nocont: See 3.7. (line 988) nocross: See 3.7. (line 1057) nofor: See 3.7. (line 963) noletsign: See 3.3. (line 680) noletsignafter: See 3.3. (line 697) noletsignbefore: See 3.3. (line 689) numsign: See 3.3. (line 705) partword: See 3.7. (line 1127) pass2: See 3.10. (line 1292) pass3: See 3.10. (line 1292) pass4: See 3.10. (line 1292) postpunc: See 3.7. (line 1148) prepunc: See 3.7. (line 1144) prfword: See 3.7. (line 1103) punctuation: See 3.2. (line 560) repeated: See 3.7. (line 1013) replace: See 3.7. (line 995) repword: See 3.7. (line 1021) sign: See 3.2. (line 630) singleletterbold: See 3.4. (line 826) singleletterital: See 3.4. (line 781) singleletterunder: See 3.4. (line 864) space: See 3.2. (line 554) sufword: See 3.7. (line 1099) swapcc: See 3.9. (line 1271) swapcd: See 3.9. (line 1259) swapdd: See 3.9. (line 1264) syllable: See 3.7. (line 1045) undefined: See 3.12. (line 1522) undersign: See 3.13. (line 1599) uplow: See 3.2. (line 573) uppercase: See 3.2. (line 616) word: See 3.7. (line 1041) Function Index ************** lou_backTranslate: See 6.8. (line 2075) lou_backTranslateString: See 6.7. (line 2053) lou_charToDots: See 6.12. (line 2147) lou_compileString: See 6.10. (line 2122) lou_dotsToChar: See 6.11. (line 2134) lou_free: See 6.20. (line 2235) lou_getDataPath: See 6.17. (line 2201) lou_getTable: See 6.18. (line 2209) lou_hyphenate: See 6.9. (line 2093) lou_logEnd: See 6.15. (line 2182) lou_logFile: See 6.13. (line 2161) lou_logPrint: See 6.14. (line 2172) lou_readCharFromFile: See 6.19. (line 2222) lou_setDataPath: See 6.16. (line 2190) lou_translate: See 6.6. (line 1995) lou_translateString: See 6.5. (line 1910) lou_version: See 6.4. (line 1901) Program Index ************* lou_allround: See 2.4. (line 296) lou_checkhyphens: See 2.6. (line 340) lou_checktable: See 2.3. (line 278) lou_debug: See 2.1. (line 139) lou_trace: See 2.2. (line 237) lou_translate: See 2.5. (line 314) liblouis-2.5.3/doc/liblouis.texi0000664000175000017500000030202212161041534013544 00000000000000\input texinfo @c %**start of header @setfilename liblouis.info @include version.texi @settitle Liblouis User's and Programmer's Manual @dircategory Misc @direntry * Liblouis: (liblouis). A braille translator and back-translator @end direntry @finalout @c Macro definitions @defindex opcode @c Opcode. @macro opcode{name, args} @opcodeindex \name\ @anchor{\name\ opcode} @item \name\ \args\ @end macro @macro opcoderef{name} @code{\name\} opcode (@pxref{\name\ opcode,\name\,@code{\name\}}) @end macro @c Opcode. @macro deprecatedopcode{name, args, replacement} @opcodeindex \name\ @anchor{\name\ opcode} @item \name\ \args\ This opcode is deprecated. Use the @opcoderef{\replacement\} instead. @end macro @copying This manual is for liblouis (version @value{VERSION}, @value{UPDATED}), a Braille Translation and Back-Translation Library derived from the Linux screen reader @acronym{BRLTTY}. @noindent Copyright @copyright{} 1999-2006 by the BRLTTY Team. @noindent Copyright @copyright{} 2004-2007 ViewPlus Technologies, Inc. @uref{www.viewplus.com}. @noindent Copyright @copyright{} 2007,2009 Abilitiessoft, Inc. @uref{www.abilitiessoft.com}. @quotation This file is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser (or library) General Public License (LGPL) as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser (or Library) General Public License LGPL for more details. You should have received a copy of the GNU Lesser (or Library) General Public License (LGPL) along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @end quotation @end copying @titlepage @title Liblouis User's and Programmer's Manual @subtitle for version @value{VERSION}, @value{UPDATED} @author by John J. Boyer @c The following two commands start the copyright page. @page @vskip 0pt plus 1filll @insertcopying @end titlepage @c Output the table of contents at the beginning. @contents @ifnottex @node Top, Introduction, (dir), (dir) @top Liblouis User's and Programmer's Manual @insertcopying @end ifnottex @menu * Introduction:: * Test Programs:: * How to Write Translation Tables:: * How to test Translation Tables:: * Notes on Back-Translation:: * Programming with liblouis:: * Opcode Index:: * Function Index:: * Program Index:: @detailmenu --- The Detailed Node Listing --- Test Programs * lou_debug:: * lou_trace:: * lou_checktable:: * lou_allround:: * lou_translate (program):: * lou_checkhyphens:: How to Write Translation Tables * Hyphenation Tables:: * Character-Definition Opcodes:: * Braille Indicator Opcodes:: * Emphasis Opcodes:: * Special Symbol Opcodes:: * Special Processing Opcodes:: * Translation Opcodes:: * Character-Class Opcodes:: * Swap Opcodes:: * The Context and Multipass Opcodes:: * The correct Opcode:: * Miscellaneous Opcodes:: * Deprecated Opcodes:: How to test Translation Tables * Translation Table Test Harness:: * Translation Table Doctests:: Programming with liblouis * License:: * Overview:: * Data structure of liblouis tables:: * lou_version:: * lou_translateString:: * lou_translate:: * lou_backTranslateString:: * lou_backTranslate:: * lou_hyphenate:: * lou_compileString:: * lou_dotsToChar:: * lou_charToDots:: * lou_logFile:: * lou_logPrint:: * lou_logEnd:: * lou_setDataPath:: * lou_getDataPath:: * lou_getTable:: * lou_readCharFromFile:: * lou_free:: * Python bindings:: @end detailmenu @end menu @node Introduction, Test Programs, Top, Top @chapter Introduction Liblouis is an open-source braille translator and back-translator derived from the translation routines in the BRLTTY screen reader for Linux. It has, however, gone far beyond these routines. It is named in honor of Louis Braille. In Linux and Mac OSX it is a shared library, and in Windows it is a DLL. For installation instructions see the README file. Please report bugs and oddities to the maintainer, @email{john.boyer@@abilitiessoft.com} This documentation is derived from Chapter 7 of the BRLTTY manual, but it has been extensively rewritten to cover new features. Please read the following copyright and warranty information. Note that this information also applies to all source code, tables and other files in this distribution of liblouis. It applies similarly to the sister library liblouisxml. This file is maintained by John J. Boyer @email{john.boyer@@abilitiessoft.com}. Persons who wish to program with liblouis but will not be writing translation tables may want to skip ahead to @ref{Programming with liblouis}. @node Test Programs, How to Write Translation Tables, Introduction, Top @chapter Test Programs A number of test programs are provided as part of the liblouis package. They are intended for testing liblouis and for debugging tables. None of them is suitable for braille transcription. An application that can be used for transcription is @command{xml2brl}, which is part of the liblouisxml package (@pxref{Top, , Introduction, liblouisxml, Liblouisxml User's and Programmer's Manual}). The source code of the test programs can be studied to learn how to use the liblouis library and they can be used to perform the following functions. @anchor{common options} All of these programs recognize the @option{--help} and @option{--version} options. @table @option @item --help @itemx -h Print a usage message listing all available options, then exit successfully. @item --version @itemx -v Print the version number, then exit successfully. @end table @menu * lou_debug:: * lou_trace:: * lou_checktable:: * lou_allround:: * lou_translate (program):: * lou_checkhyphens:: @end menu @node lou_debug, lou_trace, Test Programs, Test Programs @section lou_debug @pindex lou_debug The @command{lou_debug} tool is intended for debugging liblouis translation tables. The command line for @command{lou_debug} is: @example lou_debug [OPTIONS] TABLE[,TABLE,...] @end example The command line options that are accepted by @command{lou_debug} are described in @ref{common options}. The table (or comma-separated list of tables) is compiled. If no errors are found a brief command summary is printed, then the prompt @samp{Command:}. You can then input one of the command letters and get output, as described below. Most of the commands print information in the various arrays of @code{TranslationTableHeader}. Since these arrays are pointers to chains of hashed items, the commands first print the hash number, then the first item, then the next item chained to it, and so on. After each item there is a prompt indicated by @samp{=>}. You can then press enter (@kbd{@key{RET}}) to see the next item in the chain or the first item in the next chain. Or you can press @kbd{h} (for next-(h)ash) to skip to the next hash chain. You can also press @kbd{e} to exit the command and go back to the @samp{command:} prompt. @table @kbd @item h Brings up a screen of somewhat more extensive help. @item f Display the first forward-translation rule in the first non-empty hash bucket. The number of the bucket is displayed at the beginning of the chain. Each rule is identified by the word @samp{Rule:}. The fields are displayed by phrases consisting of the name of the field, an equal sign, and its value. The before and after fields are displayed only if they are nonzero. Special opcodes such as the @opcoderef{correct} and the multipass opcodes are shown with the code that instructs the virtual machine that interprets them. If you want to see only the rules for a particular character string you can type @kbd{p} at the @samp{command:} prompt. This will take you to the @samp{particular:} prompt, where you can press @kbd{f} and then type in the string. The whole hash chain containing the string will be displayed. @item b Display back-translation rules. This display is very similar to that of forward translation rules except that the dot pattern is displayed before the character string. @item c Display character definitions, again within their hash chains. @item d Displays single-cell dot definitions. If a character-definition opcode gives a multi-cell dot pattern, it is displayed among the back-translation rules. @item C Display the character-to-dots map. This is set up by the character-definition opcodes and can also be influenced by the @opcoderef{display}. @item D Display the dot to character map, which shows which single-cell dot patterns map to which characters. @item z Show the multi-cell dot patterns which have been assigned to the characters from 0 to 255 to comply with computer braille codes such as a 6-dot code. Note that the character-definition opcodes should use 8-dot computer braille. @item p Bring up a secondary (@samp{particular:}) prompt from which you can examine particular character strings, dot patterns, etc. The commands (given in its own command summary) are very similar to those of the main @samp{command:} prompt, but you can type a character string or dot pattern. They include @kbd{h}, @kbd{f}, @kbd{b}, @kbd{c}, @kbd{d}, @kbd{C}, @kbd{D}, @kbd{z} and @kbd{x} (to exit this prompt), but not @kbd{p}, @kbd{i} and @kbd{m}. @item i Show braille indicators. This shows the dot patterns for various opcodes such as the @opcoderef{capsign} and the @opcoderef{numsign}. It also shows emphasis dot patterns, such as those for the @c FIXME: the italword opcode should be documented @c @opcoderef{italword}, @code{italword}, the @opcoderef{firstletterbold}, etc. If a given opcode has not been used nothing is printed for it. @item m Display various miscellaneous information about the table, such as the number of passes, whether certain opcodes have been used, and whether there is a hyphenation table. @item q Exit the program. @end table @node lou_trace, lou_checktable, lou_debug, Test Programs @section lou_trace @pindex lou_trace When working on translation tables it is sometimes useful to determine what rules were applied when translating a string. @command{lou_trace} helps with exactly that. It list all the the applied rules for a given translation table and an input string. @example lou_trace [OPTIONS] TABLE[,TABLE,...] @end example @command{lou_trace} accepts all the standard options (@pxref{common options}). Once started you can type an input string followed by @kbd{@key{RET}}. @command{lou_trace} will print the braille translation followed by list of rules that were applied to produce the translation. A possible invocation is listed in the following example: @example $ lou_trace tables/en-us-g2.ctb the u.s. postal service ! u4s4 po/al s@}vice 1. largesign the 2346 2. repeated 0 3. lowercase u 136 4. punctuation . 46 5. context _$l["."]$l @@256 6. lowercase s 234 7. postpunc . 256 8. repeated 0 9. begword post 1234-135-34 10. largesign a 1 11. lowercase l 123 12. repeated 0 13. lowercase s 234 14. always er 12456 15. lowercase v 1236 16. lowercase i 24 17. lowercase c 14 18. lowercase e 15 19. pass2 $s1-10 @@0 20. pass2 $s1-10 @@0 21. pass2 $s1-10 @@0 @end example @node lou_checktable, lou_allround, lou_trace, Test Programs @section lou_checktable @pindex lou_checktable To use this program type the following: @example lou_checktable [OPTIONS] TABLE @end example Aside from the standard options (@pxref{common options}) @command{lou_checktable} also accepts the following options: @table @option @item --quiet @itemx -q Do not write to standard error if there are no errors. @end table If the table contains errors, appropriate messages will be displayed. If there are no errors the message @samp{no errors found.} will be shown. @node lou_allround, lou_translate (program), lou_checktable, Test Programs @section lou_allround @pindex lou_allround This program tests every capability of the liblouis library. It is completely interactive. Invoke it as follows: @example lou_allround [OPTIONS] @end example The command line options that are accepted by @command{lou_allround} are described in @ref{common options}. You will see a few lines telling you how to use the program. Pressing one of the letters in parentheses and then enter will take you to a message asking for more information or for the answer to a yes/no question. Typing the letter @samp{r} and then @key{RET} will take you to a screen where you can enter a line to be processed by the library and then view the results. @node lou_translate (program), lou_checkhyphens, lou_allround, Test Programs @section lou_translate @pindex lou_translate This program translates whatever is on the standard input unit and prints it on the standard output unit. It is intended for large-scale testing of the accuracy of translation and back-translation. The command line for @command{lou_translate} is: @example lou_translate [OPTION] TABLE[,TABLE,...] @end example Aside from the standard options (@pxref{common options}) this program also accepts the following options: @table @option @item --forward @itemx -f Do a forward translation. @item --backward @itemx -b Do a backward translation. @end table To use it to translate or back-translate a file use a line like @example lou_translate --forward en-us-g2.ctb testtrans @end example @node lou_checkhyphens, , lou_translate (program), Test Programs @section lou_checkhyphens @pindex lou_checkhyphens This program checks the accuracy of hyphenation in Braille translation for both translated and untranslated words. It is completely interactive. Invoke it as follows: @example lou_checkhyphens [OPTIONS] @end example The command line options that are accepted by @command{lou_checkhyphens} are described in @ref{common options}. You will see a few lines telling you how to use the program. @node How to Write Translation Tables, How to test Translation Tables, Test Programs, Top @chapter How to Write Translation Tables Many translation (contraction) tables have already been made up. They are included in this distribution in the tables directory and should be studied as part of the documentation. The most helpful (and normative) are listed in the following table: @table @file @item chardefs.cti Character definitions for U.S. tables @item compress.ctb Remove excessive whitespace @item en-us-g1.ctb Uncontracted American English @item en-us-g2.ctb Contracted or Grade 2 American English @item en-us-brf.dis Make liblouis output conform to BRF standard @item en-us-comp8.ctb 8-dot computer braille for use in coding examples @item en-us-comp6.ctb 6-dot computer braille @item nemeth.ctb Nemeth Code translation for use with liblouisxml @item nemeth_edit.ctb Fixes errors at the boundaries of math and text @end table The names used for files containing translation tables are completely arbitrary. They are not interpreted in any way by the translator. Contraction tables may be 8-bit ASCII files, UTF-8, 16-bit big-endian Unicode files or 16-bit little-endian Unicode files. Blank lines are ignored. Any leading and trailing whitespace (any number of blanks and/or tabs) is ignored. Lines which begin with a number sign or hatch mark (@samp{#}) are ignored, i.e. they are comments. If the number sign is not the first non-blank character in the line, it is treated as an ordinary character. If the first non-blank character is less-than (@samp{<}) the line is also treated as a comment. This makes it possible to mark up tables as xhtml documents. Lines which are not blank or comments define table entries. The general format of a table entry is: @example opcode operands comments @end example Table entries may not be split between lines. The opcode is a mnemonic that specifies what the entry does. The operands may be character sequences, braille dot patterns or occasionally something else. They are described for each opcode, please @pxref{Opcode Index}. With some exceptions, opcodes expect a certain number of operands. Any text on the line after the last operand is ignored, and may be a comment. A few opcodes accept a variable number of operands. In this case a number sign begins a comment unless it is preceded by a backslash (@samp{\}). Here are some examples of table entries. @example # This is a comment. always world 456-2456 A word and the dot pattern of its contraction @end example Most opcodes have both a "characters" operand and a "dots" operand, though some have only one and a few have other types. The characters operand consists of any combination of characters and escape sequences proceeded and followed by whitespace. Escape sequences are used to represent difficult characters. They begin with a backslash (`\`). They are: @table @kbd @item \ backslash @item \f form feed @item \n new line @item \r carriage return @item \s blank (space) @item \t horizontal tab @item \v vertical tab @item \e "escape" character (hex 1b, dec 27) @item \xhhhh 4-digit hexadecimal value of a character @end table If liblouis has been compiled for 32-bit Unicode the following are also recognized. @table @kbd @item \yhhhhh 5-digit (20 bit) character @item \zhhhhhhhh Full 32-bit value. @end table The dots operand is a braille dot pattern. The real braille dots, 1 through 8, must be specified with their standard numbers. liblouis recognizes "virtual dots," which are used for special purposes, such as distinguishing accent marks. There are seven virtual dots. They are specified by the number 9 and the letters @samp{a} through @samp{f}. For a multi-cell dot pattern, the cell specifications must be separated from one another by a dash (@samp{-}). For example, the contraction for the English word @samp{lord} (the letter @samp{l} preceded by dot 5) would be specified as 5-123. A space may be specified with the special dot number 0. An opcode which is helpful in writing translation tables is @code{include}. Its format is: @example include filename @end example It reads the file indicated by @code{filename} and incorporates or includes its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry @code{include en-us-g1.ctb} in the table @file{en-us-g2.ctb}. If the included file is not in the same directory as the main table, use a full path name for filename. Tables can also be specified in a table list, in which the table names are separated by commas and given as a single table name in calls to the translation functions. The order of the various types of opcodes or table entries is important. Character-definition opcodes should come first. However, if the optional @opcoderef{display} is used it should precede character-definition opcodes. Braille-indicator opcodes should come next. Translation opcodes should follow. The @opcoderef{context} is a translation opcode, even though it is considered along with the multipass opcodes. These latter should follow the translation opcodes. The @opcoderef{correct} can be used anywhere after the character-definition opcodes, but it is probably a good idea to group all @code{correct} opcodes together. The @opcoderef{include} can be used anywhere, but the order of entries in the combined table must conform to the order given above. Within each type of opcode, the order of entries is generally unimportant. Thus the translation entries can be grouped alphabetically or in any other order that is convenient. Hyphenation tables may be specified either with an @code{include} opcode or as part of a table list. They should come after everything else. Character-definition opcodes are necessary for hyphenation tables to work. @menu * Hyphenation Tables:: * Character-Definition Opcodes:: * Braille Indicator Opcodes:: * Emphasis Opcodes:: * Special Symbol Opcodes:: * Special Processing Opcodes:: * Translation Opcodes:: * Character-Class Opcodes:: * Swap Opcodes:: * The Context and Multipass Opcodes:: * The correct Opcode:: * Miscellaneous Opcodes:: * Deprecated Opcodes:: @end menu @node Hyphenation Tables, Character-Definition Opcodes, How to Write Translation Tables, How to Write Translation Tables @section Hyphenation Tables Hyphenation tables are necessary to make opcodes such as the @opcoderef{nocross} function properly. There are no opcodes for hyphenation table entries because these tables have a special format. Therefore, they cannot be specified as part of an ordinary table. Rather, they must be included using the @opcoderef{include} or as part of a table list. The liblouis hyphenation algorithm was adopted from the one used by OpenOffice. Note that Hyphenation tables must follow character definitions and should preferably be the last. For an example of a hyphenation table, see @file{hyph_en_US.dic}. @node Character-Definition Opcodes, Braille Indicator Opcodes, Hyphenation Tables, How to Write Translation Tables @section Character-Definition Opcodes These opcodes are needed to define attributes such as digit, punctuation, letter, etc. for all characters and their dot patterns. liblouis has no built-in character definitions, but such definitions are essential to the operation of the @opcoderef{context}, the @opcoderef{correct}, the multipass opcodes and the back-translator. If the dot pattern is a single cell, it is used to define the mapping between dot patterns and characters, unless a @opcoderef{display} for that character-dot-pattern pair has been used previously. If only a single-cell dot pattern has been given for a character, that dot pattern is defined with the character's own attributes. If more than one cell is given and some of them have not previously been defined as single cells, the undefined cells are entered into the dots table with the space attribute. This is done for backward compatibility with old tables, but it may cause problems with the above opcodes or back-translation. For this reason, every single-cell dot pattern should be defined before it is used in a multi-cell character representation. The best way to do this is to use the 8-dot computer braille representation for the particular braille code. If a character or dot pattern used in any rule, except those with the @code{display} opcode, the @opcoderef{repeated} or the @opcoderef{replace}, is not defined by one of the character-definition opcodes, liblouis will give an error message and refuse to continue until the problem is fixed. If the translator or back-translator encounters an undefined character in its input it produces a succinct error indication in its output, and the character is treated as a space. @table @code @opcode{space, character dots} Defines a character as a space and also defines the dot pattern as such. for example: @example space \s 0 \s is the escape sequence for blank; 0 means no dots. @end example @opcode{punctuation, character dots} Associates a punctuation mark in the particular language with a braille representation and defines the character and dot pattern as punctuation. For example: @example punctuation . 46 dot pattern for period in NAB computer braille @end example @opcode{digit, character dots} Associates a digit with a dot pattern and defines the character as a digit. For example: @example digit 0 356 NAB computer braille @end example @opcode{uplow, characters dots [@comma{}dots]} The characters operand must be a pair of letters, of which the first is uppercase and the second lowercase. The first dots suboperand indicates the dot pattern for the upper-case letter. It may have more than one cell. The second dots suboperand must be separated from the first by a comma and is optional, as indicated by the square brackets. If present, it indicates the dot pattern for the lower-case letter. It may also have more than one cell. If the second dots suboperand is not present the first is used for the lower-case letter as well as the upper-case letter. This opcode is needed because not all languages follow a consistent pattern in assigning Unicode codes to upper and lower case letters. It should be used even for languages that do. The distinction is important in the forward translator. for example: @example uplow Aa 17,1 @end example @opcode{grouping, name characters dots @comma{}dots} This opcode is used to indicate pairs of grouping symbols used in processing mathematical expressions. These symbols are usually generated by the MathML interpreter in liblouisxml. They are used in multipass opcodes. The name operand must contain only letters, but they may be upper- or lower-case. The characters operand must contain exactly two Unicode characters. The dots operand must contain exactly two braille cells, separated by a comma. Note that grouping dot patterns also need to be declared with the @opcoderef{exactdots}. The characters may need to be declared with the @opcoderef{math}. @example grouping mrow \x0001\x0002 1e,2e grouping mfrac \x0003\x0004 3e,4e @end example @opcode{letter, character dots} Associates a letter in the language with a braille representation and defines the character as a letter. This is intended for letters which are neither uppercase nor lowercase. @opcode{lowercase, character dots} Associates a character with a dot pattern and defines the character as a lowercase letter. Both the character and the dot pattern have the attributes lowercase and letter. @opcode{uppercase, character dots} Associates a character with a dot pattern and defines the character as an uppercase letter. Both the character and the dot pattern have the attributes uppercase and letter. @code{lowercase} and @code{uppercase} should be used when a letter has only one case. Otherwise use the @opcoderef{uplow}. @opcode{litdigit, digit dots} Associates a digit with the dot pattern which should be used to represent it in literary texts. For example: @example litdigit 0 245 litdigit 1 1 @end example @opcode{sign, character dots} Associates a character with a dot pattern and defines both as a sign. This opcode should be used for things like at sign (@samp{@@}), percent (@samp{%}), dollar sign (@samp{$}), etc. Do not use it to define ordinary punctuation such as period and comma. For example: @example sign % 4-25-1234 literary percent sign @end example @opcode{math, character dots} Associates a character and a dot pattern and defines them as a mathematical symbol. It should be used for less than (@samp{<}), greater than(@samp{>}), equals(@samp{=}), plus(@samp{+}), etc. For example: @example math + 346 plus @end example @end table @node Braille Indicator Opcodes, Emphasis Opcodes, Character-Definition Opcodes, How to Write Translation Tables @section Braille Indicator Opcodes Braille indicators are dot patterns which are inserted into the braille text to indicate such things as capitalization, italic type, computer braille, etc. The opcodes which define them are followed only by a dot pattern, which may be one or more cells. @table @code @opcode{capsign, dots} The dot pattern which indicates capitalization of a single letter. In English, this is dot 6. For example: @example capsign 6 @end example @opcode{begcaps, dots} The dot pattern which begins a block of capital letters. For example: @example begcaps 6-6 @end example @opcode{endcaps, dots} The dot pattern which ends a block of capital letters within a word. For example: @example endcaps 6-3 @end example @opcode{letsign, dots} This indicator is needed in Grade 2 to show that a single letter is not a contraction. It is also used when an abbreviation happens to be a sequence of letters that is the same as a contraction. For example: @example letsign 56 @end example @opcode{noletsign, letters} The letters in the operand will not be proceeded by a letter sign. More than one @code{noletsign} opcode can be used. This is equivalent to a single entry containing all the letters. In addition, if a single letter, such as @samp{a} in English, is defined as a @code{word} (@pxref{word opcode,word,@code{word}}) or @code{largesign} (@pxref{largesign opcode,largesign,@code{largesign}}), it will be treated as though it had also been specified in a @code{noletsign} entry. @opcode{noletsignbefore, characters} If any of the characters proceeds a single letter without a space a letter sign is not used. By default the characters apostrophe (@samp{'}) and period (@samp{.}) have this property. Use of a @code{noletsignbefore} entry cancels the defaults. If more than one @code{noletsignbefore} entry is used, the characters in all entries are combined. @opcode{noletsignafter, characters} If any of the characters follows a single letter without a space a letter sign is not used. By default the characters apostrophe (@samp{'}) and period (@samp{.}) have this property. Use of a @code{noletsignafter} entry cancels the defaults. If more than one @code{noletsignafter} entry is used the characters in all entries are combined. @opcode{numsign, dots} The translator inserts this indicator before numbers made up of digits defined with the @opcoderef{litdigit} to show that they are a number and not letters or some other symbols. For example: @example numsign 3456 @end example @end table @node Emphasis Opcodes, Special Symbol Opcodes, Braille Indicator Opcodes, How to Write Translation Tables @section Emphasis Opcodes These also define braille indicators, but they require more explanation. There are four sets, for italic, bold, underline and computer braille. In each of the first three sets there are seven opcodes, for use before the first word of a phrase, for use before the last word, for use after the last word, for use before the first letter (or character) if emphasis starts in the middle of a word, for use after the last letter (or character) if emphasis ends in the middle of a word, before a single letter (or character), and to specify the length of a phrase to which the first-word and last-word-before indicators apply. This rather elaborate set of emphasis opcodes was devised to try to meet all contingencies. It is unlikely that a translation table will contain all of them. The translator checks for their presence. If they are present, it first looks to see if the single-letter indicator should be used. Then it looks at the word (or phrase) indicators and finally at the multi-letter indicators. The translator will apply up to two emphasis indicators to each phrase or string of characters, depending on what the @code{typeform} parameter in its calling sequence indicates (@pxref{Programming with liblouis}). For computer braille there are only two braille indicators, for the beginning and end of a sequence of characters to be rendered in computer braille. Such a sequence may also have other emphasis. The computer braille indicators are applied not only when computer braille is indicated in the @code{typeform} parameter, but also when a sequence of characters is determined to be computer braille because it contains a subsequence defined by the @opcoderef{compbrl} or the @opcoderef{literal}. Here are the various emphasis opcodes. @table @code @opcode{firstwordital, dots} This is the braille indicator to be placed before the first word of an italicized phrase that is longer than the value given in the @opcoderef{lenitalphrase}. For example: @example firstwordital 46-46 English indicator @end example @opcode{lastworditalbefore, dots} This is the braille indicator to be placed before the last word of an italicized phrase. In addition, if @code{firstwordital} is not used, this braille indicator is doubled and placed before the first word. Do not use @code{lastworditalbefore} and @code{lastworditalafter} in the same table. For example: @example lastworditalbefore 4-6 @end example @opcode{lastworditalafter, dots} This is the braille indicator to be placed after the last word of an italicized phrase. Do not use @code{lastworditalbefore} and @code{lastworditalafter} in the same table. See also the @opcoderef{lenitalphrase} for more information. @opcode{firstletterital, dots} This is the braille indicator to be placed before the first letter (or character) if italicization begins in the middle of a word. @opcode{lastletterital, dots} This is the braille indicator to be placed after the last letter (or character) when italicization ends in the middle of a word. @opcode{singleletterital, dots} This braille indicator is used if only a single letter (or character) is italicized. @opcode{lenitalphrase, number} If @code{lastworditalbefore} is used, an italicized phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the @code{lenitalphrase} opcode, the @code{lastworditalbefore} sign is placed in front of each word. If it is greater, the @code{firstwordital} indicator is placed before the first word and the @code{lastworditalbefore} indicator is placed after the last word. Note that if the @code{firstwordital} opcode is not used its indicator is made up by doubling the dot pattern given in the @code{lastworditalbefore} entry. For example: @example lenitalphrase 4 @end example @opcode{firstwordbold, dots} This is the braille indicator to be placed before the first word of a bold phrase. For example: @example firstwordbold 456-456 @end example @opcode{lastwordboldbefore, dots} This is the braille indicator to be placed before the last word of a bold phrase. In addition, if @code{firstwordbold} is not used, this braille indicator is doubled and placed before the first word. Do not use @code{lastwordboldbefore} and @code{lastwordboldafter} in the same table. For example: @example lastwordboldbefore 456 @end example @opcode{lastwordboldafter, dots} This is the braille indicator to be placed after the last word of a bold phrase. Do not use @code{lastwordboldbefore} and @code{lastwordboldafter} in the same table. @opcode{firstletterbold, dots} This is the braille indicator to be placed before the first letter (or character) if bold emphasis begins in the middle of a word. @opcode{lastletterbold, dots} This is the braille indicator to be placed after the last letter (or character) when bold emphasis ends in the middle of a word. @opcode{singleletterbold, dots} This braille indicator is used if only a single letter (or character) is in boldface. @opcode{lenboldphrase, number} If @code{lastwordboldbefore} is used, a bold phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the @code{lenboldphrase} opcode, the @code{lastwordboldbefore} sign is placed in front of each word. If it is greater, the @code{firstwordbold} indicator is placed before the first word and the @code{lastwordboldbefore} indicator is placed after the last word. Note that if the @code{firstwordbold} opcode is not used its indicator is made up by doubling the dot pattern given in the @code{lastwordboldbefore} entry. @opcode{firstwordunder, dots} This is the braille indicator to be placed before the first word of an underlined phrase. @opcode{lastwordunderbefore, dots} This is the braille indicator to be placed before the last word of an underlined phrase. In addition, if @code{firstwordunder} is not used, this braille indicator is doubled and placed before the first word. @opcode{lastwordunderafter, dots} This is the braille indicator to be placed after the last word of an underlined phrase. @opcode{firstletterunder, dots} This is the braille indicator to be placed before the first letter (or character) if underline emphasis begins in the middle of a word. @opcode{lastletterunder, dots} This is the braille indicator to be placed after the last letter (or character) when underline emphasis ends in the middle of a word. @opcode{singleletterunder, dots} This braille indicator is used if only a single letter (or character) is underlined. @opcode{lenunderphrase, number} If @code{lastwordunderbefore} is used, an underlined phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the @code{lenunderphrase} opcode, the @code{lastwordunderbefore} sign is placed in front of each word. If it is greater, the @code{firstwordunder} indicator is placed before the first word and the @code{lastwordunderbefore} indicator is placed after the last word. Note that if the @code{firstwordunder} opcode is not used its indicator is made up by doubling the dot pattern given in the @code{lastwordunderbefore} entry. @opcode{begcomp, dots} This braille indicator is placed before a sequence of characters translated in computer braille, whether this sequence is indicated in the @code{typeform} parameter (@pxref{Programming with liblouis}) or inferred because it contains a subsequence specified by the @opcoderef{compbrl}. @opcode{endcomp, dots} This braille indicator is placed after a sequence of characters translated in computer braille, whether this sequence is indicated in the @code{typeform} parameter (@pxref{Programming with liblouis}) or inferred because it contains a subsequence specified by the @opcoderef{compbrl}. @end table @node Special Symbol Opcodes, Special Processing Opcodes, Emphasis Opcodes, How to Write Translation Tables @section Special Symbol Opcodes These opcodes define certain symbols, such as the decimal point, which require special treatment. @table @code @opcode{decpoint, character dots} This opcode defines the decimal point. The character operand must have only one character. For example, in @file{en-us-g1.ctb} we have: @example decpoint . 46 @end example @opcode{hyphen, character dots} This opcode defines the hyphen, that is, the character used in compound words such as have-nots. The back-translator uses it to determine the end of individual words. @end table @node Special Processing Opcodes, Translation Opcodes, Special Symbol Opcodes, How to Write Translation Tables @section Special Processing Opcodes These opcodes cause special processing to be carried out. @table @code @opcode{capsnocont,} This opcode has no operands. If it is specified, words or parts of words in all caps are not contracted. This is needed for languages such as Norwegian. @end table @node Translation Opcodes, Character-Class Opcodes, Special Processing Opcodes, How to Write Translation Tables @section Translation Opcodes These opcodes define the braille representations for character sequences. Each of them defines an entry within the contraction table. These entries may be defined in any order except, as noted below, when they define alternate representations for the same character sequence. Each of these opcodes specifies a condition under which the translation is legal, and each also has a characters operand and a dots operand. The text being translated is processed strictly from left to right, character by character, with the most eligible entry for each position being used. If there is more than one eligible entry for a given position in the text, then the one with the longest character string is used. If there is more than one eligible entry for the same character string, then the one defined first is is tested for legality first. (This is the only case in which the order of the entries makes a difference.) The characters operand is a sequence or string of characters preceded and followed by whitespace. Each character can be entered in the normal way, or it can be defined as a four-digit hexadecimal number preceded by @samp{\x}. The dots operand defines the braille representation for the characters operand. It may also be specified as an equals sign (@samp{=}). This means that the the default representation for each character (@pxref{Character-Definition Opcodes}) within the sequence is to be used. In what follows the word @samp{characters} means a sequence of one or more consecutive letters between spaces and/or punctuation marks. @table @code @opcode{noback, opcode ...} This is an opcode prefix, that is to say, it modifies the operation of the opcode that follows it on the same line. noback specifies that no back-translation is to be done using this line. @example noback always ;\s; 0 @end example @opcode{nofor, opcode ...} This is an opcode prefix which modifies the operation of the opcode following it on the same line. nofor specifies that forward translation is not to use the information on this line. @opcode{compbrl, characters} If the characters are found within a block of text surrounded by whitespace the entire block is translated according to the default braille representations defined by the @ref{Character-Definition Opcodes}, if 8-dot computer braille is enabled or according to the dot patterns given in the @opcoderef{comp6}, if 6-dot computer braille is enabled. For example: @example compbrl www translate URLs in computer braille @end example @opcode{comp6, character dots} This opcode specifies the translation of characters in 6-dot computer braille. It is necessary because the translation of a single character may require more than one cell. The first operand must be a character with a decimal representation from 0 to 255 inclusive. The second operand may specify as many cells as necessary. The opcode is somewhat of a misnomer, since any dots, not just dots 1 through 6, can be specified. This even includes virtual dots. @opcode{nocont, characters} Like @code{compbrl}, except that the string is uncontracted. @opcoderef{prepunc} and @opcoderef{postpunc} rules are applied, however. This is useful for specifying that foreign words should not be contracted in an entire document. @opcode{replace, characters @{characters@}} Replace the first set of characters, no matter where they appear, with the second. Note that the second operand is @emph{NOT} a dot pattern. It is also optional. If it is omitted the character(s) in the first operand will be discarded. This is useful for ignoring characters. It is possible that the "ignored" characters may still affect the translation indirectly. Therefore, it is preferable to use @opcoderef{correct}. @opcode{always, characters dots} Replace the characters with the dot pattern no matter where they appear. Do @emph{NOT} use an entry such as @code{always a 1}. Use the @code{uplow}, @code{letter}, etc. character definition opcodes instead. For example: @example always world 456-2456 unconditional translation @end example @opcode{repeated, characters dots} Replace the characters with the dot pattern no matter where they appear. Ignore any consecutive repetitions of the same character sequence. This is useful for shortening long strings of spaces or hyphens or periods. For example: @example repeated --- 36-36-36 shorten separator lines made with hyphens @end example @opcode{repword, characters dots} When characters are encountered check to see if the word before this string matches the word after it. If so, replace characters with dots and eliminate the second word and any word following another occurrence of characters that is the same. This opcode is used in Malaysian braille. In this case the rule is: @example repword - 123456 @end example @opcode{largesign, characters dots} Replace the characters with the dot pattern no matter where they appear. In addition, if two words defined as large signs follow each other, remove the space between them. For example, in @file{en-us-g2.ctb} the words @samp{and} and @samp{the} are both defined as large signs. Thus, in the phrase @samp{the cat and the dog} the space would be deleted between @samp{and} and @samp{the}, with the result @samp{the cat andthe dog}. Of course, @samp{and} and @samp{the} would be properly contracted. The term @code{largesign} is a bit of braille jargon that pleases braille experts. @opcode{word, characters dots} Replace the characters with the dot pattern if they are a word, that is, are surrounded by whitespace and/or punctuation. @opcode{syllable, characters dots} As its name indicates, this opcode defines a "syllable" which must be represented by exactly the dot patterns given. Contractions may not cross the boundaries of this "syllable" either from left or right. The character string defined by this opcode need not be a lexical syllable, though it usually will be. The equal sign in the following example means that the the default representation for each character within the sequence is to be used (@pxref{Translation Opcodes}): @example syllable horse = sawhorse, horseradish @end example @opcode{nocross, characters dots} Replace the characters with the dot pattern if the characters are all in one syllable (do not cross a syllable boundary). For this opcode to work, a hyphenation table must be included. If this is not done, @code{nocross} behaves like the @opcoderef{always}. For example, if the English Grade 2 table is being used and the appropriate hyphenation table has been included @code{nocross sh 146} will cause the @samp{sh} in @samp{monkshood} not to be contracted. @opcode{joinword, characters dots} Replace the characters with the dot pattern if they are a word which is followed by whitespace and a letter. In addition remove the whitespace. For example, @file{en-us-g2.ctb} has @code{joinword to 235}. This means that if the word @samp{to} is followed by another word the contraction is to be used and the space is to be omitted. If these conditions are not met, the word is translated according to any other opcodes that may apply to it. @opcode{lowword, characters dots} Replace the characters with the dot pattern if they are a word preceded and followed by whitespace. No punctuation either before or after the word is allowed. The term @code{lowword} derives from the fact that in English these contractions are written in the lower part of the cell. For example: @example lowword were 2356 @end example @opcode{contraction, characters} If you look at @file{en-us-g2.ctb} you will see that some words are actually contracted into some of their own letters. A famous example among braille transcribers is @samp{also}, which is contracted as @samp{al}. But this is also the name of a person. To take another example, @samp{altogether} is contracted as @samp{alt}, but this is the abbreviation for the alternate key on a computer keyboard. Similarly @samp{could} is contracted into @samp{cd}, but this is the abbreviation for compact disk. To prevent confusion in such cases, the letter sign (see @opcoderef{letsign}) is placed before such letter combinations when they actually are abbreviations, not contractions. The @code{contraction} opcode tells the translator to do this. @opcode{sufword, characters dots} Replace the characters with the dot pattern if they are either a word or at the beginning of a word. @opcode{prfword, characters dots} Replace the characters with the dot pattern if they are either a word or at the end of a word. @opcode{begword, characters dots} Replace the characters with the dot pattern if they are at the beginning of a word. @opcode{begmidword, characters dots} Replace the characters with the dot pattern if they are either at the beginning or in the middle of a word. @opcode{midword, characters dots} Replace the characters with the dot pattern if they are in the middle of a word. @opcode{midendword, characters dots} Replace the characters with the dot pattern if they are either in the middle or at the end of a word. @opcode{endword, characters dots} Replace the characters with the dot pattern if they are at the end of a word. @opcode{partword, characters dots} Replace the characters with the dot pattern if the characters are anywhere in a word, that is, if they are proceeded or followed by a letter. @opcode{exactdots, @@dots} Note that the operand must begin with an at sign (@samp{@@}). The dot pattern following it is evaluated for validity. If it is valid, whenever an at sign followed by this dot pattern appears in the source document it is replaced by the characters corresponding to the dot pattern in the output. This opcode is intended for use in liblouisxml semantic-action files to specify exact dot patterns, as in mathematical codes. For example: @example exactdots @@4-46-12356 @end example will produce the characters with these dot patterns in the output. @opcode{prepunc, characters dots} Replace the characters with the dot pattern if they are part of punctuation at the beginning of a word. @opcode{postpunc, characters dots} Replace the characters with the dot pattern if they are part of punctuation at the end of a word. @opcode{begnum, characters dots} Replace the characters with the dot pattern if they are at the beginning of a number, that is, before all its digits. For example, in @file{en-us-g1.ctb} we have @code{begnum # 4}. @opcode{midnum, characters dots} Replace the characters with the dot pattern if they are in the middle of a number. For example, @file{en-us-g1.ctb} has @code{midnum . 46}. This is because the decimal point has a different dot pattern than the period. @opcode{endnum, characters dots} Replace the characters with the dot pattern if they are at the end of a number. For example @file{en-us-g1.ctb} has @code{endnum th 1456}. This handles things like @samp{4th}. A letter sign is @emph{NOT} inserted. @opcode{joinnum, characters dots} Replace the characters with the dot pattern. In addition, if whitespace and a number follows omit the whitespace. This opcode can be used to join currency symbols to numbers for example: @example joinnum \x20AC 15 (EURO SIGN) joinnum \x0024 145 (DOLLAR SIGN) joinnum \x00A3 1234 (POUND SIGN) joinnum \x00A5 13456 (YEN SIGN) @end example @end table @node Character-Class Opcodes, Swap Opcodes, Translation Opcodes, How to Write Translation Tables @section Character-Class Opcodes These opcodes define and use character classes. A character class associates a set of characters with a name. The name then refers to any character within the class. A character may belong to more than one class. The basic character classes correspond to the character definition opcodes, with the exception of the @opcoderef{uplow}, which defines characters belonging to the two classes @code{uppercase} and @code{lowercase}. These classes are: @table @code @item space Whitespace characters such as blank and tab @item digit Numeric characters @item letter Both uppercase and lowercase alphabetic characters @item lowercase Lowercase alphabetic characters @item uppercase Uppercase alphabetic characters @item punctuation Punctuation marks @item sign Signs such as percent (@samp{%}) @item math Mathematical symbols @item litdigit Literary digit @item undefined Not properly defined @end table The opcodes which define and use character classes are shown below. For examples see @file{fr-abrege.ctb}. @table @code @opcode{class, name characters} Define a new character class. The characters operand must be specified as a string. A character class may not be used until it has been defined. @opcode{after, class opcode ...} The specified opcode is further constrained in that the matched character sequence must be immediately preceded by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used. @opcode{before, class opcode ...} The specified opcode is further constrained in that the matched character sequence must be immediately followed by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used. @end table @node Swap Opcodes, The Context and Multipass Opcodes, Character-Class Opcodes, How to Write Translation Tables @section Swap Opcodes The swap opcodes are needed to tell the @opcoderef{context}, the @opcoderef{correct} and multipass opcodes which dot patterns to swap for which characters. There are three, @code{swapcd}, @code{swapdd} and @code{swapcc}. The first swaps dot patterns for characters. The second swaps dot patterns for dot patterns and the third swaps characters for characters. The first is used in the @code{context} opcode and the second is used in the multipass opcodes. Dot patterns are separated by commas and may contain more than one cell. @table @code @opcode{swapcd, name characters dots@comma{} dots@comma{} dots@comma{} ...} See above paragraph for explanation. For example: @example swapcd dropped 0123456789 356,2,23,... @end example @opcode{swapdd, name dots@comma{} dots@comma{} dots ... dotpattern1@comma{} dotpattern2@comma{} dotpattern3@comma{} ...} The @code{swapdd} opcode defines substitutions for the multipass opcodes. In the second operand the dot patterns must be single cells, but in the third operand multi-cell dot patterns are allowed. This is because multi-cell patterns in the second operand would lead to ambiguities. @opcode{swapcc, name characters characters} The @code{swapcc} opcode swaps characters in its second operand for characters in the corresponding places in its third operand. It is intended for use with @code{correct} opcodes and can solve problems such as formatting phone numbers. @end table @node The Context and Multipass Opcodes, The correct Opcode, Swap Opcodes, How to Write Translation Tables @section The Context and Multipass Opcodes The @code{context} and multipass opcodes (@code{pass2}, @code{pass3} and @code{pass4}) provide translation capabilities beyond those of the basic translation opcodes (@pxref{Translation Opcodes}) discussed previously. The multipass opcodes cause additional passes to be made over the string to be translated. The number after the word @code{pass} indicates in which pass the entry is to be applied. If no multipass opcodes are given, only the first translation pass is made. The @code{context} opcode is basically a multipass opcode for the first pass. It differs slightly from the multipass opcodes per se. The format of all these opcodes is @code{opcode test action}. The specific opcodes are invoked as follows: @table @code @anchor{context opcode} @opcodeindex context @opcodeindex pass2 @opcodeindex pass3 @opcodeindex pass4 @item context test action @itemx pass2 test action @itemx pass3 test action @itemx pass4 test action @end table The @code{test} and @code{action} operands have suboperands. Each suboperand begins with a non-alphanumeric character and ends when another non-alphanumeric character is encountered. The suboperands and their initial characters are as follows. @table @kbd @item " (double quote) a string of characters. This string must be terminated by another double quote. It may contain any characters. If a double quote is needed within the string, it must be preceded by a backslash (@samp{\}). If a space is needed, it must be represented by the escape sequence \s. This suboperand is valid only in the test part of the @code{context} opcode. @item @@ (at sign) a sequence of dot patterns. Cells are separated by hyphens as usual. This suboperand is not valid in the test part of the context and correct opcodes. @item ` (accent mark) If this is the beginning of the string being translated this suboperand is true. It is valid only in the test part and must be the first thing in this operand. @item ~ (tilde) If this is the end of the string being translated this suboperand is true. It is valid only in the test part and must be the last thing in this operand. @item $ (dollar sign) a string of attributes, such as @samp{d} for digit, @samp{l} for letter, etc. More than one attribute can be given. If you wish to check characters with any attribute, use the letter @samp{a}. Input characters are checked to see if they have at least one of the attributes. The attribute string can be followed by numbers specifying how many characters are to be checked. If no numbers are given, 1 is assumed. If two numbers separated by a hyphen are given, the input is checked to make sure that at least the first number of characters with the attributes are present, but no more than the second number. If only one number is present, then exactly that many characters must have the attributes. A period instead of the numbers indicates an indefinite number of characters (for technical reasons the number of characters that are actually matched is limited to 65535). This suboperand is valid in all test parts but not in action parts. For the characters which can be used in attribute strings, see the following table. @item ! (exclamation point) reverses the logical meaning of the suboperand which follows. For example, !$d is true only if the character is @emph{NOT} a digit. This suboperand is valid in test parts only. @item % (percent sign) the name of a class defined by the @opcoderef{class} or the name of a swap set defined by the swap opcodes (@pxref{Swap Opcodes}). Names may contain only letters. The letters may be upper or lower-case. The case matters. Class names may be used in test parts only. Swap names are valid everywhere. @item @{ (left brace) Name: the name of a grouping pair. The left brace indicates that the first (or left) member of the pair is to be used in matching. If this is between replacement brackets it must be the only item. This is also valid in the action part. @item @} (right brace) Name: the name of a grouping pair. The right brace indicates that the second (or right) member is to be used in matching. See the remarks on the left brace immediately above. @item / (slash) Search the input for the expression following the slash and return true if found. This can be used to set a variable. @item _ (underscore) Move backward. If a number follows, move backward that number of characters. The program never moves backward beyond the beginning of the input string. This suboperand is valid only in test parts. @item [ (left bracket) start replacement here. This suboperand must always be paired with a right bracket and is valid only in test parts. Multiple pairs of square brackets in a single expression are not allowed. @item ] (right bracket) end replacement here. This suboperand must always be paired with a left bracket and is valid only in test parts. @item # (number sign or crosshatch) test or set a variable. Variables are referred to by numbers 1 to 50, for example, @code{#1}, @code{#2}, @code{#25}. Variables may be set by one @code{context} or multipass opcode and tested by another. Thus, an operation that occurs at one place in a translation can tell an operation that occurs later about itself. This feature will be used in math translation, and it may also help to alleviate the need for new opcodes. This suboperand is valid everywhere. Variables are set in the action part. To set a variable use an expression like @code{#1=1}, @code{#2=5}, etc. Variables are also incremented and decremented in the action part with expressions like @code{#1+}, @code{#3-}, etc. These operators increment or decrement the variable by 1. Variables are tested in the test part with expressions like @code{#1=2}, @code{#3<4}, @code{#5>6}, etc. @item * (asterisk) Copy the characters or dot patterns in the input within the replacement brackets into the output and discard anything else that may match. This feature is used, for example, for handling numeric subscripts in Nemeth. This suboperand is valid only in action parts. @item ? (question mark) Valid only in the action part. The characters to be replaced are simply ignored. That is, they are replaced with nothing. If either member of a grouping pair is in the replace brackets the other member at the same level is also removed. @end table The characters which can be used in attribute strings are as follows: @table @kbd @item a any attribute @item d digit @item D literary digit @item l letter @item m math @item p punctuation @item S sign @item s space @item U uppercase @item u lowercase @item w first user-defined class @item x second user-defined class @item y third user-defined class @item z fourth user-defined class @end table The following illustrates the algorithm how text is evaluated with multipass expressions: @noindent Loop over context, pass2, pass3 and pass4 and do the following for each pass: @enumerate a @item Match the text following the cursor against all expressions in the current pass @item If there is no match: shift the cursor one position to the right and continue the loop @item If there is a match: choose the longest match @item Do the replacement (everything between square brackets) @item Place the cursor after the replaced text @item continue loop @end enumerate @node The correct Opcode, Miscellaneous Opcodes, The Context and Multipass Opcodes, How to Write Translation Tables @section The correct Opcode @table @code @opcode{correct, test action} Because some input (such as that from an OCR program) may contain systematic errors, it is sometimes advantageous to use a pre-translation pass to remove them. The errors and their corrections are specified by the @code{correct} opcode. If there are no @code{correct} opcodes in a table, the pre-translation pass is not used. The format of the @code{correct} opcode is very similar to that of the @opcoderef{context}. The only difference is that in the action part strings may be used and dot patterns may not be used. Some examples of @code{correct} opcode entries are: @example correct "\\" ? Eliminate backslashes correct "cornf" "comf" fix a common "scano" correct "cornm" "comm" correct "cornp" "comp" correct "*" ? Get rid of stray asterisks correct "|" ? ditto for vertical bars correct "\s?" "?" drop space before question mark @end example @end table @node Miscellaneous Opcodes, Deprecated Opcodes, The correct Opcode, How to Write Translation Tables @section Miscellaneous Opcodes @table @code @opcode{include, filename} Read the file indicated by @code{filename} and incorporate or include its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry include @file{en-us-g1.ctb} in the table @file{en-us-g2.ctb}. If the included file is not in the same directory as the main table, use a full path name for filename. @opcode{locale, characters} Not implemented, but recognized and ignored for backward compatibility. @opcode{undefined, dots} If this opcode is used in a table any characters which have not been defined in the table but are encountered in the text will be replaced by the dot pattern. If this opcode is not used, any undefined characters are replaced by @code{'\xhhhh'}, where the h's are hexadecimal digits. @opcode{display, character dots} Associates dot patterns with the characters which will be sent to a braille embosser, display or screen font. The character must be in the range 0-255 and the dots must specify a single cell. Here are some examples: @example # When the character a is sent to the embosser or display, # it will produce a dot 1. display a 1 @end example @example # When the character L is sent to the display or embosser # it will produce dots 1-2-3. display L 123 @end example The @code{display} opcode is optional. It is used when the embosser or display has a different mapping of characters to dot patterns than that given in @ref{Character-Definition Opcodes}. If used, display entries must proceed character-definition entries. A possible use case would be to define display opcodes so that the result is Unicode braille for use on a display and a second set of display opcodes (in a different file) to produce plain ASCII braille for use with an embosser. @opcode{multind, dots opcode opcode ...} The @code{multind} opcode tells the back-translator that a sequence of braille cells represents more than one braille indicator. For example, in @file{en-us-g1.ctb} we have @code{multind 56-6 letsign capsign}. The back-translator can generally handle single braille indicators, but it cannot apply them when they immediately follow each other. It recognizes the letter sign if it is followed by a letter and takes appropriate action. It also recognizes the capital sign if it is followed by a letter. But when there is a letter sign followed by a capital sign it fails to recognize the letter sign unless the sequence has been defined with @code{multind}. A @code{multind} entry may not contain a comment because liblouis would attempt to interpret it as an opcode. @end table @node Deprecated Opcodes, , Miscellaneous Opcodes, How to Write Translation Tables @section Deprecated Opcodes The following opcodes are an early attempt to handle emphasis. They have been deprecated by more specific opcodes, but are kept for backward compatibility. @table @code @deprecatedopcode{italsign, dots, lastworditalbefore} @deprecatedopcode{begital, dots, firstletterital} @deprecatedopcode{endital, dots, lastletterital} @deprecatedopcode{boldsign, dots, lastwordboldbefore} @deprecatedopcode{begbold, dots, firstletterbold} @deprecatedopcode{endbold, dots, lastletterbold} @deprecatedopcode{undersign, dots, lastwordunderbefore} @deprecatedopcode{begunder, dots, firstletterunder} @deprecatedopcode{endunder, dots, lastletterunder} @deprecatedopcode{literal, characters, compbrl} @end table @node How to test Translation Tables, Notes on Back-Translation, How to Write Translation Tables, Top @chapter How to test Translation Tables There are a number of automated tests for liblouis and they are proving to be of tremendous value. When changing the code the developers can run the tests to see if anything broke. For testing the translation tables there are basically two approaches: there are the harness tests and the doctests. They were created at roughly the same time using different technologies, have influenced each other and have gone through improvements and technology changes. For now they are both based on Python so you need to have that installed. The philosophies of the two are slightly different: @table @asis @item Harness tests The harness tests are data driven, i.e. you give the test data, i.e. a string to translate and the expected output. The data is in a standard format, i.e. json. They work with both Python2 and Python3, however since the format is json it is perceivable that somebody would write some C code which takes the data in the harness file and runs it through liblouis so they could also run without Python and without ucs4. @item Doctests The doctests on the other hand are based on a technology used in Python where you define your tests as if you were sitting at a terminal session with a Python interpreter. So the tests look like you typed a command and got some output, e.g. @example >>> translate(['table.ctb'], "Hello", mode=compbrlLeftCursor) ("HELLO", [0,1,2,3], [0,1,2,3], 0) @end example There is a convenience wrapper which hides away much of the complexity of above example so you can write stuff like @example >>> t.braille('the cat sat on the mat') u'! cat sat on ! mat' @end example But essentially you are writing code, so the doctests allow you to do more flexible tests that are much closer to the raw iron. For technical reasons the doctests will probably only ever work in either Python2 or Python3 but not both and they will never run from C. @end table To sum it up, the recommendation is that for normal table testing you should use the test harness. It has a lot of momentum and the format is a standard. If you want to be closer to the raw Python API of liblouis, if you want to test some more intricate scenarios (involving inpos, modes, etc) then the doctests are for you. @menu * Translation Table Test Harness:: * Translation Table Doctests:: @end menu @node Translation Table Test Harness, Translation Table Doctests, How to test Translation Tables, How to test Translation Tables @section Translation Table Test Harness Each harness file is a simple utf8 encoded json file, which has two entries. @table @code @item tables A list containing table names, which the tests should be run against. This is usually just one table, but for some situations more than one table is required. @item tests A list of sections of tests, which should be processed independantly. Each test section is a dictionary of two items. @item flags The flags that apply for all the test cases in this section. For example, they could all be forward translation tests, or they should all be run as computer braille tests. @item data A list of test cases, each one containing the specific test data needed to perform a test. @end table These are the valid fields for the flags section: @table @code @item comment A field describing the reason for the tests, the transformation rule or any useful info that might be needed in case the test breaks (optional). @item cursorPos The position of the cursor within the given text (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour. @item mode The liblouis translation mode that should be used for this test (optional). If not defined defaults to 0. @item outputUniBrl For a forward translation test, the output should be in unicode braille. For a backward translation test, the input is in unicode braille. @item testmode The optional testmode field can have three values: "translate" (default if undeclaired), "backtranslate" or "hyphenate". Declares what tests should be performed on the test data. @end table Each test case has the following entries: @table @code @item input The unicode text to be tested (required). @item output The expected braille output (required). The dots should be encoded in the liblouis ascii-braille like encoding. @item brlCursorPos The expected position of the braille cursor in the braille output (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour. @end table Variables defined in the flags section can be overwridden by individual test cases, but if several tests need the same options, they should idealy be split into their own section, complete with their own flags and data. For examples please see @file{*_harness.txt} in the harness directory in the source distribution. @node Translation Table Doctests, , Translation Table Test Harness, How to test Translation Tables @section Translation Table Doctests For examples on how to create doctests please see @file{*_test.txt} in the doctest directory in the source distribution. @node Notes on Back-Translation, Programming with liblouis, How to test Translation Tables, Top @chapter Notes on Back-Translation Back-translation is carried out by the function @code{lou_backTranslateString}. Its calling sequence is described in @ref{Programming with liblouis}. Tables containing no @opcoderef{context}, @opcoderef{correct} or multipass opcodes can be used for both forward and backward translation. If these opcodes are needed different tables will be required. @code{lou_backTranslateString} first performs @code{pass4}, if present, then @code{pass3}, then @code{pass2}, then the backtranslation, then corrections. Note that this is exactly the inverse of forward translation. @node Programming with liblouis, Opcode Index, Notes on Back-Translation, Top @chapter Programming with liblouis @menu * License:: * Overview:: * Data structure of liblouis tables:: * lou_version:: * lou_translateString:: * lou_translate:: * lou_backTranslateString:: * lou_backTranslate:: * lou_hyphenate:: * lou_compileString:: * lou_dotsToChar:: * lou_charToDots:: * lou_logFile:: * lou_logPrint:: * lou_logEnd:: * lou_setDataPath:: * lou_getDataPath:: * lou_getTable:: * lou_readCharFromFile:: * lou_free:: * Python bindings:: @end menu @node License, Overview, Programming with liblouis, Programming with liblouis @section License Liblouis may contain code borrowed from the Linux screen reader BRLTTY, Copyright @copyright{} 1999-2006 by the BRLTTY Team. @noindent Copyright @copyright{} 2004-2007 ViewPlus Technologies, Inc. @uref{www.viewplus.com}. @noindent Copyright @copyright{} 2007,2009 Abilitiessoft, Inc. @uref{www.abilitiessoft.com}. Liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Liblouis. If not, see @uref{http://www.gnu.org/licenses/}. @node Overview, Data structure of liblouis tables, License, Programming with liblouis @section Overview You use the liblouis library by calling the following functions, @code{lou_translateString}, @code{lou_backTranslateString}, @code{lou_logFile}, @code{lou_logPrint}, @code{lou_endLog}, @code{lou_getTable}, @code{lou_translate}, @code{lou_backTranslate}, @code{lou_hyphenate}, @code{lou_charToDots}, @code{lou_dotsToChar}, @code{lou_compileString}, @code{lou_readCharFromFile}, @code{lou_version} and @code{lou_free}. These are described below. The header file, @file{liblouis.h}, also contains brief descriptions. Liblouis is written in straight C. It has just three code modules, @file{compileTranslationTable.c}, @file{lou_translateString.c} and @file{lou_backTranslateString.c}. In addition, there are two header files, @file{liblouis.h}, which defines the API, and @file{louis.h}, used only internally and by liblouisxml. The latter includes @file{liblouis.h}. Persons who wish to use liblouis from Python may want to skip ahead to @ref{Python bindings}. @file{compileTranslationTable.c} keeps track of all translation tables which an application has used. It is called by the translation, hyphenation and checking functions when they start. If a table has not yet been compiled @file{compileTranslationTable.c} checks it for correctness and compiles it into an efficient internal representation. The main entry point is @code{lou_getTable}. Since it is the module that keeps track of memory usage, it also contains the @code{lou_free} function. In addition, it contains the @code{lou_logFile}, @code{lou_logPrint} and @code{lou_endLog} functions, plus some utility functions which are used by the other modules. By default, liblouis handles all characters internally as 16-bit unsigned integers. It can be compiled for 32-bit characters as explained below. The meanings of these integers are not hard-coded. Rather they are defined by the character-definition opcodes. However, the standard printable characters, from decimal 32 to 126 are recognized for the purpose of processing the opcodes. Hence, the following definition is included in @file{liblouis.h}. It is correct for computers with at least 32-bit processors. @example #define widechar unsigned short int @end example To make liblouis handle 32-bit Unicode simply remove the word @code{short} in the above @code{define}. This will cause the translate and back-translate functions to expect input in 32-bit form and to deliver their output in this form. The input to the compiler (tables) is unaffected except that two new escape sequences for 20-bit and 32-bit characters are recognized. Here are the definitions of the eleven liblouis functions and their parameters. They are given in terms of 16-bit Unicode. If liblouis has been compiled for 32-bit Unicode simply read 32 instead of 16. @node Data structure of liblouis tables, lou_version, Overview, Programming with liblouis @section Data structure of liblouis tables The data structure @code{TranslationTableHeader} is defined by a @code{typedef} statement in @file{louis.h}. To find the beginning, search for the word @samp{header}. As its name implies, this is actually the table header. Data are placed in the @code{ruleArea} array, which is the last item defined in this structure. This array is declared with a length of 1 and is expanded as needed. The table header consists mostly of arrays of pointers of size @code{HASHNUM}. These pointers are actually offsets into @code{ruleArea} and point to chains of items which have been placed in the same hash bucket by a simple hashing algorithm. @code{HASHNUM} should be a prime and is currently 1123. The structure of the table was chosen to optimize speed rather than memory usage. The first part of the table contains miscellaneous information, such as the number of passes and whether various opcodes have been used. It also contains the amount of memory allocated to the table and the amount actually used. The next section contains pointers to various braille indicators and begins with @code{capitalSign}. The rules pointed to contain the dot pattern for the indicator and an opcode which is used by the back-translator but does not appear in the list of opcodes. The braille indicators also include various kinds of emphasis, such as italic and bold and information about the length of emphasized phrases. The latter is contained directly in the table item instead of in a rule. After the braille indicators comes information about when a letter sign should be used. Next is an array of size @code{HASHNUM} which points to character definitions. These are created by the character-definition opcodes. Following this is a similar array pointing to definitions of single-cell dot patterns. This is also created from the character-definition opcodes. If a character definition contains a multi-cell dot pattern this is compiled into ordinary forward and backward rules. If such a multi-cell dot pattern contains a single cell which has not previously been defined that cell is placed in this array, but is given the attribute @code{space}. Next come arrays that map characters to single-cell dot patterns and dots to characters. These are created from both character-definition opcodes and display opcodes. Next is an array of size 256 which maps characters in this range to dot patterns which may consist of multiple cells. It is used, for example, to map @samp{@{} to dots 456-246. These mappings are created @c FIXME: the compdots opcode should be documented @c by the @opcoderef{compdots} by the @code{compdots} or the @opcoderef{comp6}. Next are two small arrays that held pointers to chains of rules produced by the @opcoderef{swapcd} and the @opcoderef{swapdd} and by some multipass, @code{context} and @code{correct} opcodes. Now we get to an array of size @code{HASHNUM} which points to chains of rules for forward translation. Following this is a similar array for back-translation. Finally is the @code{ruleArea}, an array of variable size to which various structures are mapped and to which almost everything else points. @node lou_version, lou_translateString, Data structure of liblouis tables, Programming with liblouis @section lou_version @findex lou_version @example char *lou_version () @end example This function returns a pointer to a character string containing the version of liblouis, plus other information, such as the release date and perhaps notable changes. @node lou_translateString, lou_translate, lou_version, Programming with liblouis @section lou_translateString @findex lou_translateString @example int lou_translateString ( const char * tableList, const widechar * inbuf, int *inlen, widechar *outbuf, int *outlen, char *typeform, char *spacing, int mode); @end example This function takes a string of 16-bit Unicode characters in @code{inbuf} and translates it into a string of 16-bit characters in @code{outbuf}. Each 16-bit character produces a particular dot pattern in one braille cell when sent to an embosser or braille display or to a screen type font. Which 16-bit character represents which dot pattern is indicated by the character-definition and display opcodes in the translation table. @anchor{translation-tables} The @code{tableList} parameter points to a list of translation tables separated by commas. If only one table is given, no comma should be used after it. It is these tables which control just how the translation is made, whether in Grade 2, Grade 1, or something else. liblouis knows where to find all the tables that have been distributed with it. So you can just give a table name such as @code{en-us-g2.ctb} and liblouis will load it. You can also give a table name which includes a path. If this is the first table in a list, all the tables in the list must be on the same path. You can specify a path on which liblouis will look for table names by setting the environment variable @code{LOUIS_TABLEPATH}. This environment variable can contain one or more paths separated by commas. On receiving a table name liblouis first checks to see if it can be found on any of these paths. If not, it then checks to see if it can be found in the current directory, or, if the first (or only) name in a table list, if it contains a path name, can be found on that path. If not, it checks to see if it can be found on the path where the distributed tables have been installed. If a table has already been loaded and compiled this path-checking is skipped. The tables in a list are all compiled into the same internal table. The list is then regarded as the name of this table. As explained in @ref{How to Write Translation Tables}, each table is a file which may be plain text, big-endian Unicode or little-endian Unicode. A table (or list of tables) is compiled into an internal representation the first time it is used. Liblouis keeps track of which tables have been compiled. For this reason, it is essential to call the @code{lou_free} function at the end of your application to avoid memory leaks. Do @emph{NOT} call @code{lou_free} after each translation. This will force liblouis to compile the translation tables each time they are used, leading to great inefficiency. Note that both the @code{*inlen} and @code{*outlen} parameters are pointers to integers. When the function is called, these integers contain the maximum input and output lengths, respectively. When it returns, they are set to the actual lengths used. The @code{typeform} parameter is used to indicate italic type, boldface type, computer braille, etc. It is a string of characters with the same length as the input buffer pointed to by @code{*inbuf}. However, it is used to pass back character-by-character results, so enough space must be provided to match the @code{*outlen} parameter. Each character indicates the typeform of the corresponding character in the input buffer. The values are as follows: 0 plain-text; 1 italic; 2 bold; 4 underline; 8 computer braille. These values can be added for multiple emphasis. If this parameter is @code{NULL}, no checking for type forms is done. In addition, if this parameter is not @code{NULL}, it is set on return to have an 8 at every position corresponding to a character in @code{outbuf} which was defined to have a dot representation containing dot 7, dot 8 or both, and to 0 otherwise. The @code{spacing} parameter is used to indicate differences in spacing between the input string and the translated output string. It is also of the same length as the string pointed to by @code{*inbuf}. If this parameter is @code{NULL}, no spacing information is computed. The @code{mode} parameter specifies how the translation should be done. The valid values of mode are listed in @file{liblouis.h}. They are all powers of 2, so that a combined mode can be specified by adding up different values. The function returns 1 if no errors were encountered and 0 if a complete translation could not be done. @node lou_translate, lou_backTranslateString, lou_translateString, Programming with liblouis @section lou_translate @findex lou_translate @example int lou_translate ( const char * tableList, const widechar * const inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); @end example This function adds the parameters @code{outputPos}, @code{inputPos} and @code{cursorPos}, to facilitate use in screen reader programs. The @code{outputPos} parameter must point to an array of integers with at least @code{inlen} elements. On return, this array will contain the position in @code{outbuf} corresponding to each input position. Similarly, @code{inputPos} must point to an array of integers of at least @code{outlen} elements. On return, this array will contain the position in @code{inbuf} corresponding to each position in @code{outbuf}. @code{cursorPos} must point to an integer containing the position of the cursor in the input. On return, it will contain the cursor position in the output. Any parameter after @code{outlen} may be @code{NULL}. In this case, the actions corresponding to it will not be carried out. The @code{mode} parameter, however, must be present and must be an integer, not a pointer to an integer. If the @code{compbrlAtCursor} bit is set in the @code{mode} parameter the space-bounded characters containing the cursor will be translated in computer braille. If the @code{compbrlLeftCursor} bit is set only the characters to the left of the cursor will be in computer braille. This bit overrides @code{compbrlAtCursor}. When the @code{dotsIO} bit is set, during translation, produce output as dot patterns. During back-translation accept input as dot patterns. Note that the produced dot patterns are affected if you have any @opcoderef{display} defined in any of your tables. The @code{ucBrl} (Unicode Braille) bit is used by @code{lou_charToDots} and @code{lou_translate}. It causes the dot patterns to be Unicode Braille rather than the liblouis representation. Note that you will not notice any change when setting @code{ucBrl} unless @code{dotsIO} is also set. @code{lou_dotsToChar} and @code{lou_backTranslate} recognize Unicode braille automatically. The @code{otherTrans} mode needs special description. If it is set liblouis will attempt to call a wrapper for another translator. These other translators are usually for Asian languages. The calling sequence is the same as for liblouis itself except that the @code{trantab} parameter gives the name of the other translator, possibly abbreviated, followed by a colon, followed by whatever other information the other translator needs. This is specific for each translator. If no such information is needed the colon should be omitted. The result of calling either the translate or back-translate functions with this mode bit set will be the same as calling without it set. That is, the wrapper for the other translator simulates a call to liblouis. Note that the wrappers are not implemented at this time. Setting this mode bit will result in failure (return value of 0). @node lou_backTranslateString, lou_backTranslate, lou_translate, Programming with liblouis @section lou_backTranslateString @findex lou_backTranslateString @example int lou_backTranslateString ( const char * tableList, const widechar * inbuf, int *inlen, widechar *outbuf, int *outlen, char *typeform, char *spacing, int mode); @end example This is exactly the opposite of @code{lou_translateString}. @code{inbuf} is a string of 16-bit Unicode characters representing braille. @code{outbuf} will contain a string of 16--bit Unicode characters. @code{typeform} will indicate any emphasis found in the input string, while @code{spacing} will indicate any differences in spacing between the input and output strings. The @code{typeform} and @code{spacing} parameters may be @code{NULL} if this information is not needed. @code{mode} again specifies how the back-translation should be done. @node lou_backTranslate, lou_hyphenate, lou_backTranslateString, Programming with liblouis @section lou_backTranslate @findex lou_backTranslate @example int lou_backTranslate ( const char * tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); @end example This function is exactly the inverse of @code{lou_translate}. @node lou_hyphenate, lou_compileString, lou_backTranslate, Programming with liblouis @section lou_hyphenate @findex lou_hyphenate @example int lou_hyphenate ( const char *tableList, const widechar *inbuf, int inlen, char *hyphens, int mode); @end example This function looks at the characters in @code{inbuf} and if it finds a sequence of letters attempts to hyphenate it as a word. Note that lou_hyphenate operates on single words only, and spaces or punctuation marks between letters are not allowed. Leading and trailing punctuation marks are ignored. The table named by the @code{tableList} parameter must contain a hyphenation table. If it does not, the function does nothing. @code{inlen} is the length of the character string in @code{inbuf}. @code{hyphens} is an array of characters and must be of size @code{inlen} + 1 (to account for the NULL terminator). If hyphenation is successful it will have a 1 at the beginning of each syllable and a 0 elsewhere. If the @code{mode} parameter is 0 @code{inbuf} is assumed to contain untranslated characters. Any nonzero value means that @code{inbuf} contains a translation. In this case, it is back-translated, hyphenation is performed, and it is re-translated so that the hyphens can be placed correctly. The @code{lou_translate} and @code{lou_backTranslate} functions are used in this process. @code{lou_hyphenate} returns 1 if hyphenation was successful and 0 otherwise. In the latter case, the contents of the @code{hyphens} parameter are undefined. This function was provided for use in liblouisxml. @node lou_compileString, lou_dotsToChar, lou_hyphenate, Programming with liblouis @section lou_compileString @findex lou_compileString @example int lou_compileString (const char *tableList, const char *inString) @end example This function enables you to compile a table entry on the fly at run-time. The new entry is added to @code{tableList} and remains in force until @code{lou_free} is called. If @code{tableList} has not previously been loaded it is loaded and compiled. @code{inString} contains the table entry to be added. It may be anything valid. Error messages will be produced if it is invalid. The function returns 1 on success and 0 on failure. @node lou_dotsToChar, lou_charToDots, lou_compileString, Programming with liblouis @section lou_dotsToChar @findex lou_dotsToChar @example int lou_dotsToChar (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int) @end example This function takes a widechar string in @code{inbuf} consisting of dot patterns and converts it to a widechar string in @code{outbuf} consisting of characters according to the specifications in @code{tableList}. @code{length} is the length of both @code{inbuf} and @code{outbuf}. The dot patterns in @code{inbuf} can be in either liblouis format or Unicode braille. The function returns 1 on success and 0 on failure. @node lou_charToDots, lou_logFile, lou_dotsToChar, Programming with liblouis @section lou_charToDots @findex lou_charToDots @example int lou_charToDots (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int mode) @end example This function is the inverse of @code{lou_dotsToChar}. It takes a widechar string in @code{inbuf} consisting of characters and converts it to a widechar string in @code{outbuf} consisting of dot patterns according to the specifications in @code{tableList}. @code{length} is the length of both @code{inbuf} and @code{outbuf}. The dot patterns in @code{outbufbuf} are in liblouis format if the mode bit @code{ucBrl} is not set and in Unicode format if it is set. The function returns 1 on success and 0 on failure. @node lou_logFile, lou_logPrint, lou_charToDots, Programming with liblouis @section lou_logFile @findex lou_logFile @example void lou_logFile (char *fileName); @end example This function is used when it is not convenient either to let messages be printed on stderr or to use redirection, as when liblouis is used in a GUI application or in liblouisxml. Any error messages generated will be printed to the file given in this call. The entire path name of the file must be given. @node lou_logPrint, lou_logEnd, lou_logFile, Programming with liblouis @section lou_logPrint @findex lou_logPrint @example void lou_logPrint (char *format, ...); @end example This function is called like @code{fprint}. It can be used by other libraries to print messages to the file specified by the call to @code{lou_logFile}. In particular, it is used by the companion library liblouisxml. @node lou_logEnd, lou_setDataPath, lou_logPrint, Programming with liblouis @section lou_logEnd @findex lou_logEnd @example lou_logEnd (); @end example This function is used at the end of processing a document to close the log file, so that it can be read by the rest of the program. @node lou_setDataPath, lou_getDataPath, lou_logEnd, Programming with liblouis @section lou_setDataPath @findex lou_setDataPath @example char * lou_setDataPath (char *path); @end example This function is used to tell liblouis and liblouisutdml where tables and files are located. It thus makes them completely relocatable, even on Linux. The @code{path} is the directory where the subdirectories @code{liblouis/tables} and @code{liblouisutdml/lbu_files} are rooted or located. The function returns a pointer to the @code{path}. @node lou_getDataPath, lou_getTable, lou_setDataPath, Programming with liblouis @section lou_getDataPath @findex lou_getDataPath @example char * lou_getDataPath (); @end example This function returns a pointer to the path set by @code{lou_setDataPath}. If no path has been set it returns @code{NULL}. @node lou_getTable, lou_readCharFromFile, lou_getDataPath, Programming with liblouis @section lou_getTable @findex lou_getTable @example void *lou_getTable (char *tablelist); @end example @code{tablelist} is a list of names of table files separated by commas, as explained previously (@pxref{translation-tables,,@code{tableList} parameter in @code{lou_translateString}}). If no errors are found this function returns a pointer to the compiled table. If errors are found messages are printed to the log file, which is stderr unless a different filename has been given using the @code{lou_logFile} function. Errors result in a @code{NULL} pointer being returned. @node lou_readCharFromFile, lou_free, lou_getTable, Programming with liblouis @section lou_readCharFromFile @findex lou_readCharFromFile @example int lou_readCharFromFile (const char *fileName, int *mode); @end example This function is provided for situations where it is necessary to read a file which may contain little-endian or big-endian 16-bit Unicode characters or ASCII8 characters. The return value is a little-endian character, encoded as an integer. The @code{fileName} parameter is the name of the file to be read. The @code{mode} parameter is a pointer to an integer which must be set to 1 on the first call. After that, the function takes care of it. On end-of-file the function returns @code{EOF}. @node lou_free, Python bindings, lou_readCharFromFile, Programming with liblouis @section lou_free @findex lou_free @example void lou_free (); @end example This function should be called at the end of the application to free all memory allocated by liblouis. Failure to do so will result in memory leaks. Do @emph{NOT} call @code{lou_free} after each translation. This will force liblouis to compile the translation tables every time they are used, resulting in great inefficiency. @node Python bindings, , lou_free, Programming with liblouis @section Python bindings There are Python bindings for @code{lou_translateString}, @code{lou_translate} and @code{lou_version}. For installation instructions see the the @file{README} file in the @file{python} directory. Usage information is included in the Python module itself. @node Opcode Index, Function Index, Programming with liblouis, Top @unnumbered Opcode Index @printindex opcode @node Function Index, Program Index, Opcode Index, Top @unnumbered Function Index @printindex fn @node Program Index, , Function Index, Top @unnumbered Program Index @printindex pg @bye @c The following list is a list of exceptions for the ispell spell @c checker @c LocalWords: liblouis opcode args BRLTTY ViewPlus Abilitiessoft LGPL lou @c LocalWords: checktable allround checkhyphens Opcodes Multipass dotsToChar @c LocalWords: translateString backTranslateString backTranslate charToDots @c LocalWords: compileString logFile logPrint getTable readCharFromFile itemx @c LocalWords: README liblouisxml pindex samp kbd opcodes opcoderef numsign @c LocalWords: FIXME ctb nemeth filename multipass suboperand uplow litdigit @c LocalWords: capsign begcaps endcaps letsign noletsign largesign typeform @c LocalWords: noletsignbefore noletsignafter compbrl firstwordital italsign @c LocalWords: lenitalphrase doubleOpcode lastworditalbefore firstletterital @c LocalWords: lastworditalafter begital lastletterital endital firstwordbold @c LocalWords: singleletterital lastwordboldbefore boldsign lastwordboldafter @c LocalWords: firstletterbold begbold lastletterbold endbold lenboldphrase @c LocalWords: singleletterbold firstwordunder lastwordunderbefore begunder @c LocalWords: lastwordunderafter firstletterunder lastletterunder endunder @c LocalWords: singleletterunder lenunderphrase begcomp endcomp decpoint texi @c LocalWords: capsnocont noback nofor texinfo setfilename settitle direntry @c LocalWords: dircategory finalout defindex opcodeindex noindent uref vskip @c LocalWords: titlepage insertcopying ifnottex dir detailmenu italword RET @c LocalWords: TranslationTableHeader txt cti nocross exactdots nocont emph @c LocalWords: prepunc postpunc repword joinword lowword sufword prfword API @c LocalWords: begword begmidword midword midendword endword partword begnum @c LocalWords: midnum endnum joinnum swapcd swapdd swapcc multind endLog @c LocalWords: backtranslation compileTranslationTable typedef louis ruleArea @c LocalWords: HASHNUM capitalSign compdots findex const inbuf outbuf outlen @c LocalWords: tableList TABLEPATH widechar inputPos cursorPos outputPos @c LocalWords: inlen compbrlAtCursor compbrlLeftCursor trantab stderr endian @c LocalWords: tablelist fileName printindex deprecatedopcode setDataPath @c LocalWords: getDataPath MathML suboperands logEnd liblouisutdml whitespace @c LocalWords: xhhhh yhhhhh zhhhhhhhh OpenOffice liblouis-2.5.3/doc/liblouis.info0000664000175000017500000034375512161043230013543 00000000000000This is liblouis.info, produced by makeinfo version 4.13 from liblouis.texi. INFO-DIR-SECTION Misc START-INFO-DIR-ENTRY * Liblouis: (liblouis). A braille translator and back-translator END-INFO-DIR-ENTRY This manual is for liblouis (version 2.5.3, 21 June 2013), a Braille Translation and Back-Translation Library derived from the Linux screen reader BRLTTY. Copyright (C) 1999-2006 by the BRLTTY Team. Copyright (C) 2004-2007 ViewPlus Technologies, Inc. `www.viewplus.com'. Copyright (C) 2007,2009 Abilitiessoft, Inc. `www.abilitiessoft.com'. This file is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser (or library) General Public License (LGPL) as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser (or Library) General Public License LGPL for more details. You should have received a copy of the GNU Lesser (or Library) General Public License (LGPL) along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  File: liblouis.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir) Liblouis User's and Programmer's Manual *************************************** This manual is for liblouis (version 2.5.3, 21 June 2013), a Braille Translation and Back-Translation Library derived from the Linux screen reader BRLTTY. Copyright (C) 1999-2006 by the BRLTTY Team. Copyright (C) 2004-2007 ViewPlus Technologies, Inc. `www.viewplus.com'. Copyright (C) 2007,2009 Abilitiessoft, Inc. `www.abilitiessoft.com'. This file is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser (or library) General Public License (LGPL) as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser (or Library) General Public License LGPL for more details. You should have received a copy of the GNU Lesser (or Library) General Public License (LGPL) along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Menu: * Introduction:: * Test Programs:: * How to Write Translation Tables:: * How to test Translation Tables:: * Notes on Back-Translation:: * Programming with liblouis:: * Opcode Index:: * Function Index:: * Program Index:: --- The Detailed Node Listing --- Test Programs * lou_debug:: * lou_trace:: * lou_checktable:: * lou_allround:: * lou_translate (program):: * lou_checkhyphens:: How to Write Translation Tables * Hyphenation Tables:: * Character-Definition Opcodes:: * Braille Indicator Opcodes:: * Emphasis Opcodes:: * Special Symbol Opcodes:: * Special Processing Opcodes:: * Translation Opcodes:: * Character-Class Opcodes:: * Swap Opcodes:: * The Context and Multipass Opcodes:: * The correct Opcode:: * Miscellaneous Opcodes:: * Deprecated Opcodes:: How to test Translation Tables * Translation Table Test Harness:: * Translation Table Doctests:: Programming with liblouis * License:: * Overview:: * Data structure of liblouis tables:: * lou_version:: * lou_translateString:: * lou_translate:: * lou_backTranslateString:: * lou_backTranslate:: * lou_hyphenate:: * lou_compileString:: * lou_dotsToChar:: * lou_charToDots:: * lou_logFile:: * lou_logPrint:: * lou_logEnd:: * lou_setDataPath:: * lou_getDataPath:: * lou_getTable:: * lou_readCharFromFile:: * lou_free:: * Python bindings::  File: liblouis.info, Node: Introduction, Next: Test Programs, Prev: Top, Up: Top 1 Introduction ************** Liblouis is an open-source braille translator and back-translator derived from the translation routines in the BRLTTY screen reader for Linux. It has, however, gone far beyond these routines. It is named in honor of Louis Braille. In Linux and Mac OSX it is a shared library, and in Windows it is a DLL. For installation instructions see the README file. Please report bugs and oddities to the maintainer, This documentation is derived from Chapter 7 of the BRLTTY manual, but it has been extensively rewritten to cover new features. Please read the following copyright and warranty information. Note that this information also applies to all source code, tables and other files in this distribution of liblouis. It applies similarly to the sister library liblouisxml. This file is maintained by John J. Boyer . Persons who wish to program with liblouis but will not be writing translation tables may want to skip ahead to *note Programming with liblouis::.  File: liblouis.info, Node: Test Programs, Next: How to Write Translation Tables, Prev: Introduction, Up: Top 2 Test Programs *************** A number of test programs are provided as part of the liblouis package. They are intended for testing liblouis and for debugging tables. None of them is suitable for braille transcription. An application that can be used for transcription is `xml2brl', which is part of the liblouisxml package (*note Introduction: (liblouisxml)Top.). The source code of the test programs can be studied to learn how to use the liblouis library and they can be used to perform the following functions. All of these programs recognize the `--help' and `--version' options. `--help' `-h' Print a usage message listing all available options, then exit successfully. `--version' `-v' Print the version number, then exit successfully. * Menu: * lou_debug:: * lou_trace:: * lou_checktable:: * lou_allround:: * lou_translate (program):: * lou_checkhyphens::  File: liblouis.info, Node: lou_debug, Next: lou_trace, Prev: Test Programs, Up: Test Programs 2.1 lou_debug ============= The `lou_debug' tool is intended for debugging liblouis translation tables. The command line for `lou_debug' is: lou_debug [OPTIONS] TABLE[,TABLE,...] The command line options that are accepted by `lou_debug' are described in *note common options::. The table (or comma-separated list of tables) is compiled. If no errors are found a brief command summary is printed, then the prompt `Command:'. You can then input one of the command letters and get output, as described below. Most of the commands print information in the various arrays of `TranslationTableHeader'. Since these arrays are pointers to chains of hashed items, the commands first print the hash number, then the first item, then the next item chained to it, and so on. After each item there is a prompt indicated by `=>'. You can then press enter (`') to see the next item in the chain or the first item in the next chain. Or you can press `h' (for next-(h)ash) to skip to the next hash chain. You can also press `e' to exit the command and go back to the `command:' prompt. `h' Brings up a screen of somewhat more extensive help. `f' Display the first forward-translation rule in the first non-empty hash bucket. The number of the bucket is displayed at the beginning of the chain. Each rule is identified by the word `Rule:'. The fields are displayed by phrases consisting of the name of the field, an equal sign, and its value. The before and after fields are displayed only if they are nonzero. Special opcodes such as the `correct' opcode (*note correct: correct opcode.) and the multipass opcodes are shown with the code that instructs the virtual machine that interprets them. If you want to see only the rules for a particular character string you can type `p' at the `command:' prompt. This will take you to the `particular:' prompt, where you can press `f' and then type in the string. The whole hash chain containing the string will be displayed. `b' Display back-translation rules. This display is very similar to that of forward translation rules except that the dot pattern is displayed before the character string. `c' Display character definitions, again within their hash chains. `d' Displays single-cell dot definitions. If a character-definition opcode gives a multi-cell dot pattern, it is displayed among the back-translation rules. `C' Display the character-to-dots map. This is set up by the character-definition opcodes and can also be influenced by the `display' opcode (*note display: display opcode.). `D' Display the dot to character map, which shows which single-cell dot patterns map to which characters. `z' Show the multi-cell dot patterns which have been assigned to the characters from 0 to 255 to comply with computer braille codes such as a 6-dot code. Note that the character-definition opcodes should use 8-dot computer braille. `p' Bring up a secondary (`particular:') prompt from which you can examine particular character strings, dot patterns, etc. The commands (given in its own command summary) are very similar to those of the main `command:' prompt, but you can type a character string or dot pattern. They include `h', `f', `b', `c', `d', `C', `D', `z' and `x' (to exit this prompt), but not `p', `i' and `m'. `i' Show braille indicators. This shows the dot patterns for various opcodes such as the `capsign' opcode (*note capsign: capsign opcode.) and the `numsign' opcode (*note numsign: numsign opcode.). It also shows emphasis dot patterns, such as those for the `italword', the `firstletterbold' opcode (*note firstletterbold: firstletterbold opcode.), etc. If a given opcode has not been used nothing is printed for it. `m' Display various miscellaneous information about the table, such as the number of passes, whether certain opcodes have been used, and whether there is a hyphenation table. `q' Exit the program.  File: liblouis.info, Node: lou_trace, Next: lou_checktable, Prev: lou_debug, Up: Test Programs 2.2 lou_trace ============= When working on translation tables it is sometimes useful to determine what rules were applied when translating a string. `lou_trace' helps with exactly that. It list all the the applied rules for a given translation table and an input string. lou_trace [OPTIONS] TABLE[,TABLE,...] `lou_trace' accepts all the standard options (*note common options::). Once started you can type an input string followed by `'. `lou_trace' will print the braille translation followed by list of rules that were applied to produce the translation. A possible invocation is listed in the following example: $ lou_trace tables/en-us-g2.ctb the u.s. postal service ! u4s4 po/al s}vice 1. largesign the 2346 2. repeated 0 3. lowercase u 136 4. punctuation . 46 5. context _$l["."]$l @256 6. lowercase s 234 7. postpunc . 256 8. repeated 0 9. begword post 1234-135-34 10. largesign a 1 11. lowercase l 123 12. repeated 0 13. lowercase s 234 14. always er 12456 15. lowercase v 1236 16. lowercase i 24 17. lowercase c 14 18. lowercase e 15 19. pass2 $s1-10 @0 20. pass2 $s1-10 @0 21. pass2 $s1-10 @0  File: liblouis.info, Node: lou_checktable, Next: lou_allround, Prev: lou_trace, Up: Test Programs 2.3 lou_checktable ================== To use this program type the following: lou_checktable [OPTIONS] TABLE Aside from the standard options (*note common options::) `lou_checktable' also accepts the following options: `--quiet' `-q' Do not write to standard error if there are no errors. If the table contains errors, appropriate messages will be displayed. If there are no errors the message `no errors found.' will be shown.  File: liblouis.info, Node: lou_allround, Next: lou_translate (program), Prev: lou_checktable, Up: Test Programs 2.4 lou_allround ================ This program tests every capability of the liblouis library. It is completely interactive. Invoke it as follows: lou_allround [OPTIONS] The command line options that are accepted by `lou_allround' are described in *note common options::. You will see a few lines telling you how to use the program. Pressing one of the letters in parentheses and then enter will take you to a message asking for more information or for the answer to a yes/no question. Typing the letter `r' and then will take you to a screen where you can enter a line to be processed by the library and then view the results.  File: liblouis.info, Node: lou_translate (program), Next: lou_checkhyphens, Prev: lou_allround, Up: Test Programs 2.5 lou_translate ================= This program translates whatever is on the standard input unit and prints it on the standard output unit. It is intended for large-scale testing of the accuracy of translation and back-translation. The command line for `lou_translate' is: lou_translate [OPTION] TABLE[,TABLE,...] Aside from the standard options (*note common options::) this program also accepts the following options: `--forward' `-f' Do a forward translation. `--backward' `-b' Do a backward translation. To use it to translate or back-translate a file use a line like lou_translate --forward en-us-g2.ctb testtrans  File: liblouis.info, Node: lou_checkhyphens, Prev: lou_translate (program), Up: Test Programs 2.6 lou_checkhyphens ==================== This program checks the accuracy of hyphenation in Braille translation for both translated and untranslated words. It is completely interactive. Invoke it as follows: lou_checkhyphens [OPTIONS] The command line options that are accepted by `lou_checkhyphens' are described in *note common options::. You will see a few lines telling you how to use the program.  File: liblouis.info, Node: How to Write Translation Tables, Next: How to test Translation Tables, Prev: Test Programs, Up: Top 3 How to Write Translation Tables ********************************* Many translation (contraction) tables have already been made up. They are included in this distribution in the tables directory and should be studied as part of the documentation. The most helpful (and normative) are listed in the following table: `chardefs.cti' Character definitions for U.S. tables `compress.ctb' Remove excessive whitespace `en-us-g1.ctb' Uncontracted American English `en-us-g2.ctb' Contracted or Grade 2 American English `en-us-brf.dis' Make liblouis output conform to BRF standard `en-us-comp8.ctb' 8-dot computer braille for use in coding examples `en-us-comp6.ctb' 6-dot computer braille `nemeth.ctb' Nemeth Code translation for use with liblouisxml `nemeth_edit.ctb' Fixes errors at the boundaries of math and text The names used for files containing translation tables are completely arbitrary. They are not interpreted in any way by the translator. Contraction tables may be 8-bit ASCII files, UTF-8, 16-bit big-endian Unicode files or 16-bit little-endian Unicode files. Blank lines are ignored. Any leading and trailing whitespace (any number of blanks and/or tabs) is ignored. Lines which begin with a number sign or hatch mark (`#') are ignored, i.e. they are comments. If the number sign is not the first non-blank character in the line, it is treated as an ordinary character. If the first non-blank character is less-than (`<') the line is also treated as a comment. This makes it possible to mark up tables as xhtml documents. Lines which are not blank or comments define table entries. The general format of a table entry is: opcode operands comments Table entries may not be split between lines. The opcode is a mnemonic that specifies what the entry does. The operands may be character sequences, braille dot patterns or occasionally something else. They are described for each opcode, please *note Opcode Index::. With some exceptions, opcodes expect a certain number of operands. Any text on the line after the last operand is ignored, and may be a comment. A few opcodes accept a variable number of operands. In this case a number sign begins a comment unless it is preceded by a backslash (`\'). Here are some examples of table entries. # This is a comment. always world 456-2456 A word and the dot pattern of its contraction Most opcodes have both a "characters" operand and a "dots" operand, though some have only one and a few have other types. The characters operand consists of any combination of characters and escape sequences proceeded and followed by whitespace. Escape sequences are used to represent difficult characters. They begin with a backslash (`\`). They are: `\' backslash `\f' form feed `\n' new line `\r' carriage return `\s' blank (space) `\t' horizontal tab `\v' vertical tab `\e' "escape" character (hex 1b, dec 27) `\xhhhh' 4-digit hexadecimal value of a character If liblouis has been compiled for 32-bit Unicode the following are also recognized. `\yhhhhh' 5-digit (20 bit) character `\zhhhhhhhh' Full 32-bit value. The dots operand is a braille dot pattern. The real braille dots, 1 through 8, must be specified with their standard numbers. liblouis recognizes "virtual dots," which are used for special purposes, such as distinguishing accent marks. There are seven virtual dots. They are specified by the number 9 and the letters `a' through `f'. For a multi-cell dot pattern, the cell specifications must be separated from one another by a dash (`-'). For example, the contraction for the English word `lord' (the letter `l' preceded by dot 5) would be specified as 5-123. A space may be specified with the special dot number 0. An opcode which is helpful in writing translation tables is `include'. Its format is: include filename It reads the file indicated by `filename' and incorporates or includes its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry `include en-us-g1.ctb' in the table `en-us-g2.ctb'. If the included file is not in the same directory as the main table, use a full path name for filename. Tables can also be specified in a table list, in which the table names are separated by commas and given as a single table name in calls to the translation functions. The order of the various types of opcodes or table entries is important. Character-definition opcodes should come first. However, if the optional `display' opcode (*note display: display opcode.) is used it should precede character-definition opcodes. Braille-indicator opcodes should come next. Translation opcodes should follow. The `context' opcode (*note context: context opcode.) is a translation opcode, even though it is considered along with the multipass opcodes. These latter should follow the translation opcodes. The `correct' opcode (*note correct: correct opcode.) can be used anywhere after the character-definition opcodes, but it is probably a good idea to group all `correct' opcodes together. The `include' opcode (*note include: include opcode.) can be used anywhere, but the order of entries in the combined table must conform to the order given above. Within each type of opcode, the order of entries is generally unimportant. Thus the translation entries can be grouped alphabetically or in any other order that is convenient. Hyphenation tables may be specified either with an `include' opcode or as part of a table list. They should come after everything else. Character-definition opcodes are necessary for hyphenation tables to work. * Menu: * Hyphenation Tables:: * Character-Definition Opcodes:: * Braille Indicator Opcodes:: * Emphasis Opcodes:: * Special Symbol Opcodes:: * Special Processing Opcodes:: * Translation Opcodes:: * Character-Class Opcodes:: * Swap Opcodes:: * The Context and Multipass Opcodes:: * The correct Opcode:: * Miscellaneous Opcodes:: * Deprecated Opcodes::  File: liblouis.info, Node: Hyphenation Tables, Next: Character-Definition Opcodes, Prev: How to Write Translation Tables, Up: How to Write Translation Tables 3.1 Hyphenation Tables ====================== Hyphenation tables are necessary to make opcodes such as the `nocross' opcode (*note nocross: nocross opcode.) function properly. There are no opcodes for hyphenation table entries because these tables have a special format. Therefore, they cannot be specified as part of an ordinary table. Rather, they must be included using the `include' opcode (*note include: include opcode.) or as part of a table list. The liblouis hyphenation algorithm was adopted from the one used by OpenOffice. Note that Hyphenation tables must follow character definitions and should preferably be the last. For an example of a hyphenation table, see `hyph_en_US.dic'.  File: liblouis.info, Node: Character-Definition Opcodes, Next: Braille Indicator Opcodes, Prev: Hyphenation Tables, Up: How to Write Translation Tables 3.2 Character-Definition Opcodes ================================ These opcodes are needed to define attributes such as digit, punctuation, letter, etc. for all characters and their dot patterns. liblouis has no built-in character definitions, but such definitions are essential to the operation of the `context' opcode (*note context: context opcode.), the `correct' opcode (*note correct: correct opcode.), the multipass opcodes and the back-translator. If the dot pattern is a single cell, it is used to define the mapping between dot patterns and characters, unless a `display' opcode (*note display: display opcode.) for that character-dot-pattern pair has been used previously. If only a single-cell dot pattern has been given for a character, that dot pattern is defined with the character's own attributes. If more than one cell is given and some of them have not previously been defined as single cells, the undefined cells are entered into the dots table with the space attribute. This is done for backward compatibility with old tables, but it may cause problems with the above opcodes or back-translation. For this reason, every single-cell dot pattern should be defined before it is used in a multi-cell character representation. The best way to do this is to use the 8-dot computer braille representation for the particular braille code. If a character or dot pattern used in any rule, except those with the `display' opcode, the `repeated' opcode (*note repeated: repeated opcode.) or the `replace' opcode (*note replace: replace opcode.), is not defined by one of the character-definition opcodes, liblouis will give an error message and refuse to continue until the problem is fixed. If the translator or back-translator encounters an undefined character in its input it produces a succinct error indication in its output, and the character is treated as a space. `space character dots' Defines a character as a space and also defines the dot pattern as such. for example: space \s 0 \s is the escape sequence for blank; 0 means no dots. `punctuation character dots' Associates a punctuation mark in the particular language with a braille representation and defines the character and dot pattern as punctuation. For example: punctuation . 46 dot pattern for period in NAB computer braille `digit character dots' Associates a digit with a dot pattern and defines the character as a digit. For example: digit 0 356 NAB computer braille `uplow characters dots [,dots]' The characters operand must be a pair of letters, of which the first is uppercase and the second lowercase. The first dots suboperand indicates the dot pattern for the upper-case letter. It may have more than one cell. The second dots suboperand must be separated from the first by a comma and is optional, as indicated by the square brackets. If present, it indicates the dot pattern for the lower-case letter. It may also have more than one cell. If the second dots suboperand is not present the first is used for the lower-case letter as well as the upper-case letter. This opcode is needed because not all languages follow a consistent pattern in assigning Unicode codes to upper and lower case letters. It should be used even for languages that do. The distinction is important in the forward translator. for example: uplow Aa 17,1 `grouping name characters dots ,dots' This opcode is used to indicate pairs of grouping symbols used in processing mathematical expressions. These symbols are usually generated by the MathML interpreter in liblouisxml. They are used in multipass opcodes. The name operand must contain only letters, but they may be upper- or lower-case. The characters operand must contain exactly two Unicode characters. The dots operand must contain exactly two braille cells, separated by a comma. Note that grouping dot patterns also need to be declared with the `exactdots' opcode (*note exactdots: exactdots opcode.). The characters may need to be declared with the `math' opcode (*note math: math opcode.). grouping mrow \x0001\x0002 1e,2e grouping mfrac \x0003\x0004 3e,4e `letter character dots' Associates a letter in the language with a braille representation and defines the character as a letter. This is intended for letters which are neither uppercase nor lowercase. `lowercase character dots' Associates a character with a dot pattern and defines the character as a lowercase letter. Both the character and the dot pattern have the attributes lowercase and letter. `uppercase character dots' Associates a character with a dot pattern and defines the character as an uppercase letter. Both the character and the dot pattern have the attributes uppercase and letter. `lowercase' and `uppercase' should be used when a letter has only one case. Otherwise use the `uplow' opcode (*note uplow: uplow opcode.). `litdigit digit dots' Associates a digit with the dot pattern which should be used to represent it in literary texts. For example: litdigit 0 245 litdigit 1 1 `sign character dots' Associates a character with a dot pattern and defines both as a sign. This opcode should be used for things like at sign (`@'), percent (`%'), dollar sign (`$'), etc. Do not use it to define ordinary punctuation such as period and comma. For example: sign % 4-25-1234 literary percent sign `math character dots' Associates a character and a dot pattern and defines them as a mathematical symbol. It should be used for less than (`<'), greater than(`>'), equals(`='), plus(`+'), etc. For example: math + 346 plus  File: liblouis.info, Node: Braille Indicator Opcodes, Next: Emphasis Opcodes, Prev: Character-Definition Opcodes, Up: How to Write Translation Tables 3.3 Braille Indicator Opcodes ============================= Braille indicators are dot patterns which are inserted into the braille text to indicate such things as capitalization, italic type, computer braille, etc. The opcodes which define them are followed only by a dot pattern, which may be one or more cells. `capsign dots' The dot pattern which indicates capitalization of a single letter. In English, this is dot 6. For example: capsign 6 `begcaps dots' The dot pattern which begins a block of capital letters. For example: begcaps 6-6 `endcaps dots' The dot pattern which ends a block of capital letters within a word. For example: endcaps 6-3 `letsign dots' This indicator is needed in Grade 2 to show that a single letter is not a contraction. It is also used when an abbreviation happens to be a sequence of letters that is the same as a contraction. For example: letsign 56 `noletsign letters' The letters in the operand will not be proceeded by a letter sign. More than one `noletsign' opcode can be used. This is equivalent to a single entry containing all the letters. In addition, if a single letter, such as `a' in English, is defined as a `word' (*note word: word opcode.) or `largesign' (*note largesign: largesign opcode.), it will be treated as though it had also been specified in a `noletsign' entry. `noletsignbefore characters' If any of the characters proceeds a single letter without a space a letter sign is not used. By default the characters apostrophe (`'') and period (`.') have this property. Use of a `noletsignbefore' entry cancels the defaults. If more than one `noletsignbefore' entry is used, the characters in all entries are combined. `noletsignafter characters' If any of the characters follows a single letter without a space a letter sign is not used. By default the characters apostrophe (`'') and period (`.') have this property. Use of a `noletsignafter' entry cancels the defaults. If more than one `noletsignafter' entry is used the characters in all entries are combined. `numsign dots' The translator inserts this indicator before numbers made up of digits defined with the `litdigit' opcode (*note litdigit: litdigit opcode.) to show that they are a number and not letters or some other symbols. For example: numsign 3456  File: liblouis.info, Node: Emphasis Opcodes, Next: Special Symbol Opcodes, Prev: Braille Indicator Opcodes, Up: How to Write Translation Tables 3.4 Emphasis Opcodes ==================== These also define braille indicators, but they require more explanation. There are four sets, for italic, bold, underline and computer braille. In each of the first three sets there are seven opcodes, for use before the first word of a phrase, for use before the last word, for use after the last word, for use before the first letter (or character) if emphasis starts in the middle of a word, for use after the last letter (or character) if emphasis ends in the middle of a word, before a single letter (or character), and to specify the length of a phrase to which the first-word and last-word-before indicators apply. This rather elaborate set of emphasis opcodes was devised to try to meet all contingencies. It is unlikely that a translation table will contain all of them. The translator checks for their presence. If they are present, it first looks to see if the single-letter indicator should be used. Then it looks at the word (or phrase) indicators and finally at the multi-letter indicators. The translator will apply up to two emphasis indicators to each phrase or string of characters, depending on what the `typeform' parameter in its calling sequence indicates (*note Programming with liblouis::). For computer braille there are only two braille indicators, for the beginning and end of a sequence of characters to be rendered in computer braille. Such a sequence may also have other emphasis. The computer braille indicators are applied not only when computer braille is indicated in the `typeform' parameter, but also when a sequence of characters is determined to be computer braille because it contains a subsequence defined by the `compbrl' opcode (*note compbrl: compbrl opcode.) or the `literal' opcode (*note literal: literal opcode.). Here are the various emphasis opcodes. `firstwordital dots' This is the braille indicator to be placed before the first word of an italicized phrase that is longer than the value given in the `lenitalphrase' opcode (*note lenitalphrase: lenitalphrase opcode.). For example: firstwordital 46-46 English indicator `lastworditalbefore dots' This is the braille indicator to be placed before the last word of an italicized phrase. In addition, if `firstwordital' is not used, this braille indicator is doubled and placed before the first word. Do not use `lastworditalbefore' and `lastworditalafter' in the same table. For example: lastworditalbefore 4-6 `lastworditalafter dots' This is the braille indicator to be placed after the last word of an italicized phrase. Do not use `lastworditalbefore' and `lastworditalafter' in the same table. See also the `lenitalphrase' opcode (*note lenitalphrase: lenitalphrase opcode.) for more information. `firstletterital dots' This is the braille indicator to be placed before the first letter (or character) if italicization begins in the middle of a word. `lastletterital dots' This is the braille indicator to be placed after the last letter (or character) when italicization ends in the middle of a word. `singleletterital dots' This braille indicator is used if only a single letter (or character) is italicized. `lenitalphrase number' If `lastworditalbefore' is used, an italicized phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the `lenitalphrase' opcode, the `lastworditalbefore' sign is placed in front of each word. If it is greater, the `firstwordital' indicator is placed before the first word and the `lastworditalbefore' indicator is placed after the last word. Note that if the `firstwordital' opcode is not used its indicator is made up by doubling the dot pattern given in the `lastworditalbefore' entry. For example: lenitalphrase 4 `firstwordbold dots' This is the braille indicator to be placed before the first word of a bold phrase. For example: firstwordbold 456-456 `lastwordboldbefore dots' This is the braille indicator to be placed before the last word of a bold phrase. In addition, if `firstwordbold' is not used, this braille indicator is doubled and placed before the first word. Do not use `lastwordboldbefore' and `lastwordboldafter' in the same table. For example: lastwordboldbefore 456 `lastwordboldafter dots' This is the braille indicator to be placed after the last word of a bold phrase. Do not use `lastwordboldbefore' and `lastwordboldafter' in the same table. `firstletterbold dots' This is the braille indicator to be placed before the first letter (or character) if bold emphasis begins in the middle of a word. `lastletterbold dots' This is the braille indicator to be placed after the last letter (or character) when bold emphasis ends in the middle of a word. `singleletterbold dots' This braille indicator is used if only a single letter (or character) is in boldface. `lenboldphrase number' If `lastwordboldbefore' is used, a bold phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the `lenboldphrase' opcode, the `lastwordboldbefore' sign is placed in front of each word. If it is greater, the `firstwordbold' indicator is placed before the first word and the `lastwordboldbefore' indicator is placed after the last word. Note that if the `firstwordbold' opcode is not used its indicator is made up by doubling the dot pattern given in the `lastwordboldbefore' entry. `firstwordunder dots' This is the braille indicator to be placed before the first word of an underlined phrase. `lastwordunderbefore dots' This is the braille indicator to be placed before the last word of an underlined phrase. In addition, if `firstwordunder' is not used, this braille indicator is doubled and placed before the first word. `lastwordunderafter dots' This is the braille indicator to be placed after the last word of an underlined phrase. `firstletterunder dots' This is the braille indicator to be placed before the first letter (or character) if underline emphasis begins in the middle of a word. `lastletterunder dots' This is the braille indicator to be placed after the last letter (or character) when underline emphasis ends in the middle of a word. `singleletterunder dots' This braille indicator is used if only a single letter (or character) is underlined. `lenunderphrase number' If `lastwordunderbefore' is used, an underlined phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the `lenunderphrase' opcode, the `lastwordunderbefore' sign is placed in front of each word. If it is greater, the `firstwordunder' indicator is placed before the first word and the `lastwordunderbefore' indicator is placed after the last word. Note that if the `firstwordunder' opcode is not used its indicator is made up by doubling the dot pattern given in the `lastwordunderbefore' entry. `begcomp dots' This braille indicator is placed before a sequence of characters translated in computer braille, whether this sequence is indicated in the `typeform' parameter (*note Programming with liblouis::) or inferred because it contains a subsequence specified by the `compbrl' opcode (*note compbrl: compbrl opcode.). `endcomp dots' This braille indicator is placed after a sequence of characters translated in computer braille, whether this sequence is indicated in the `typeform' parameter (*note Programming with liblouis::) or inferred because it contains a subsequence specified by the `compbrl' opcode (*note compbrl: compbrl opcode.).  File: liblouis.info, Node: Special Symbol Opcodes, Next: Special Processing Opcodes, Prev: Emphasis Opcodes, Up: How to Write Translation Tables 3.5 Special Symbol Opcodes ========================== These opcodes define certain symbols, such as the decimal point, which require special treatment. `decpoint character dots' This opcode defines the decimal point. The character operand must have only one character. For example, in `en-us-g1.ctb' we have: decpoint . 46 `hyphen character dots' This opcode defines the hyphen, that is, the character used in compound words such as have-nots. The back-translator uses it to determine the end of individual words.  File: liblouis.info, Node: Special Processing Opcodes, Next: Translation Opcodes, Prev: Special Symbol Opcodes, Up: How to Write Translation Tables 3.6 Special Processing Opcodes ============================== These opcodes cause special processing to be carried out. `capsnocont' This opcode has no operands. If it is specified, words or parts of words in all caps are not contracted. This is needed for languages such as Norwegian.  File: liblouis.info, Node: Translation Opcodes, Next: Character-Class Opcodes, Prev: Special Processing Opcodes, Up: How to Write Translation Tables 3.7 Translation Opcodes ======================= These opcodes define the braille representations for character sequences. Each of them defines an entry within the contraction table. These entries may be defined in any order except, as noted below, when they define alternate representations for the same character sequence. Each of these opcodes specifies a condition under which the translation is legal, and each also has a characters operand and a dots operand. The text being translated is processed strictly from left to right, character by character, with the most eligible entry for each position being used. If there is more than one eligible entry for a given position in the text, then the one with the longest character string is used. If there is more than one eligible entry for the same character string, then the one defined first is is tested for legality first. (This is the only case in which the order of the entries makes a difference.) The characters operand is a sequence or string of characters preceded and followed by whitespace. Each character can be entered in the normal way, or it can be defined as a four-digit hexadecimal number preceded by `\x'. The dots operand defines the braille representation for the characters operand. It may also be specified as an equals sign (`='). This means that the the default representation for each character (*note Character-Definition Opcodes::) within the sequence is to be used. In what follows the word `characters' means a sequence of one or more consecutive letters between spaces and/or punctuation marks. `noback opcode ...' This is an opcode prefix, that is to say, it modifies the operation of the opcode that follows it on the same line. noback specifies that no back-translation is to be done using this line. noback always ;\s; 0 `nofor opcode ...' This is an opcode prefix which modifies the operation of the opcode following it on the same line. nofor specifies that forward translation is not to use the information on this line. `compbrl characters' If the characters are found within a block of text surrounded by whitespace the entire block is translated according to the default braille representations defined by the *note Character-Definition Opcodes::, if 8-dot computer braille is enabled or according to the dot patterns given in the `comp6' opcode (*note comp6: comp6 opcode.), if 6-dot computer braille is enabled. For example: compbrl www translate URLs in computer braille `comp6 character dots' This opcode specifies the translation of characters in 6-dot computer braille. It is necessary because the translation of a single character may require more than one cell. The first operand must be a character with a decimal representation from 0 to 255 inclusive. The second operand may specify as many cells as necessary. The opcode is somewhat of a misnomer, since any dots, not just dots 1 through 6, can be specified. This even includes virtual dots. `nocont characters' Like `compbrl', except that the string is uncontracted. `prepunc' opcode (*note prepunc: prepunc opcode.) and `postpunc' opcode (*note postpunc: postpunc opcode.) rules are applied, however. This is useful for specifying that foreign words should not be contracted in an entire document. `replace characters {characters}' Replace the first set of characters, no matter where they appear, with the second. Note that the second operand is _NOT_ a dot pattern. It is also optional. If it is omitted the character(s) in the first operand will be discarded. This is useful for ignoring characters. It is possible that the "ignored" characters may still affect the translation indirectly. Therefore, it is preferable to use `correct' opcode (*note correct: correct opcode.). `always characters dots' Replace the characters with the dot pattern no matter where they appear. Do _NOT_ use an entry such as `always a 1'. Use the `uplow', `letter', etc. character definition opcodes instead. For example: always world 456-2456 unconditional translation `repeated characters dots' Replace the characters with the dot pattern no matter where they appear. Ignore any consecutive repetitions of the same character sequence. This is useful for shortening long strings of spaces or hyphens or periods. For example: repeated --- 36-36-36 shorten separator lines made with hyphens `repword characters dots' When characters are encountered check to see if the word before this string matches the word after it. If so, replace characters with dots and eliminate the second word and any word following another occurrence of characters that is the same. This opcode is used in Malaysian braille. In this case the rule is: repword - 123456 `largesign characters dots' Replace the characters with the dot pattern no matter where they appear. In addition, if two words defined as large signs follow each other, remove the space between them. For example, in `en-us-g2.ctb' the words `and' and `the' are both defined as large signs. Thus, in the phrase `the cat and the dog' the space would be deleted between `and' and `the', with the result `the cat andthe dog'. Of course, `and' and `the' would be properly contracted. The term `largesign' is a bit of braille jargon that pleases braille experts. `word characters dots' Replace the characters with the dot pattern if they are a word, that is, are surrounded by whitespace and/or punctuation. `syllable characters dots' As its name indicates, this opcode defines a "syllable" which must be represented by exactly the dot patterns given. Contractions may not cross the boundaries of this "syllable" either from left or right. The character string defined by this opcode need not be a lexical syllable, though it usually will be. The equal sign in the following example means that the the default representation for each character within the sequence is to be used (*note Translation Opcodes::): syllable horse = sawhorse, horseradish `nocross characters dots' Replace the characters with the dot pattern if the characters are all in one syllable (do not cross a syllable boundary). For this opcode to work, a hyphenation table must be included. If this is not done, `nocross' behaves like the `always' opcode (*note always: always opcode.). For example, if the English Grade 2 table is being used and the appropriate hyphenation table has been included `nocross sh 146' will cause the `sh' in `monkshood' not to be contracted. `joinword characters dots' Replace the characters with the dot pattern if they are a word which is followed by whitespace and a letter. In addition remove the whitespace. For example, `en-us-g2.ctb' has `joinword to 235'. This means that if the word `to' is followed by another word the contraction is to be used and the space is to be omitted. If these conditions are not met, the word is translated according to any other opcodes that may apply to it. `lowword characters dots' Replace the characters with the dot pattern if they are a word preceded and followed by whitespace. No punctuation either before or after the word is allowed. The term `lowword' derives from the fact that in English these contractions are written in the lower part of the cell. For example: lowword were 2356 `contraction characters' If you look at `en-us-g2.ctb' you will see that some words are actually contracted into some of their own letters. A famous example among braille transcribers is `also', which is contracted as `al'. But this is also the name of a person. To take another example, `altogether' is contracted as `alt', but this is the abbreviation for the alternate key on a computer keyboard. Similarly `could' is contracted into `cd', but this is the abbreviation for compact disk. To prevent confusion in such cases, the letter sign (see `letsign' opcode (*note letsign: letsign opcode.)) is placed before such letter combinations when they actually are abbreviations, not contractions. The `contraction' opcode tells the translator to do this. `sufword characters dots' Replace the characters with the dot pattern if they are either a word or at the beginning of a word. `prfword characters dots' Replace the characters with the dot pattern if they are either a word or at the end of a word. `begword characters dots' Replace the characters with the dot pattern if they are at the beginning of a word. `begmidword characters dots' Replace the characters with the dot pattern if they are either at the beginning or in the middle of a word. `midword characters dots' Replace the characters with the dot pattern if they are in the middle of a word. `midendword characters dots' Replace the characters with the dot pattern if they are either in the middle or at the end of a word. `endword characters dots' Replace the characters with the dot pattern if they are at the end of a word. `partword characters dots' Replace the characters with the dot pattern if the characters are anywhere in a word, that is, if they are proceeded or followed by a letter. `exactdots @dots' Note that the operand must begin with an at sign (`@'). The dot pattern following it is evaluated for validity. If it is valid, whenever an at sign followed by this dot pattern appears in the source document it is replaced by the characters corresponding to the dot pattern in the output. This opcode is intended for use in liblouisxml semantic-action files to specify exact dot patterns, as in mathematical codes. For example: exactdots @4-46-12356 will produce the characters with these dot patterns in the output. `prepunc characters dots' Replace the characters with the dot pattern if they are part of punctuation at the beginning of a word. `postpunc characters dots' Replace the characters with the dot pattern if they are part of punctuation at the end of a word. `begnum characters dots' Replace the characters with the dot pattern if they are at the beginning of a number, that is, before all its digits. For example, in `en-us-g1.ctb' we have `begnum # 4'. `midnum characters dots' Replace the characters with the dot pattern if they are in the middle of a number. For example, `en-us-g1.ctb' has `midnum . 46'. This is because the decimal point has a different dot pattern than the period. `endnum characters dots' Replace the characters with the dot pattern if they are at the end of a number. For example `en-us-g1.ctb' has `endnum th 1456'. This handles things like `4th'. A letter sign is _NOT_ inserted. `joinnum characters dots' Replace the characters with the dot pattern. In addition, if whitespace and a number follows omit the whitespace. This opcode can be used to join currency symbols to numbers for example: joinnum \x20AC 15 (EURO SIGN) joinnum \x0024 145 (DOLLAR SIGN) joinnum \x00A3 1234 (POUND SIGN) joinnum \x00A5 13456 (YEN SIGN)  File: liblouis.info, Node: Character-Class Opcodes, Next: Swap Opcodes, Prev: Translation Opcodes, Up: How to Write Translation Tables 3.8 Character-Class Opcodes =========================== These opcodes define and use character classes. A character class associates a set of characters with a name. The name then refers to any character within the class. A character may belong to more than one class. The basic character classes correspond to the character definition opcodes, with the exception of the `uplow' opcode (*note uplow: uplow opcode.), which defines characters belonging to the two classes `uppercase' and `lowercase'. These classes are: `space' Whitespace characters such as blank and tab `digit' Numeric characters `letter' Both uppercase and lowercase alphabetic characters `lowercase' Lowercase alphabetic characters `uppercase' Uppercase alphabetic characters `punctuation' Punctuation marks `sign' Signs such as percent (`%') `math' Mathematical symbols `litdigit' Literary digit `undefined' Not properly defined The opcodes which define and use character classes are shown below. For examples see `fr-abrege.ctb'. `class name characters' Define a new character class. The characters operand must be specified as a string. A character class may not be used until it has been defined. `after class opcode ...' The specified opcode is further constrained in that the matched character sequence must be immediately preceded by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used. `before class opcode ...' The specified opcode is further constrained in that the matched character sequence must be immediately followed by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used.  File: liblouis.info, Node: Swap Opcodes, Next: The Context and Multipass Opcodes, Prev: Character-Class Opcodes, Up: How to Write Translation Tables 3.9 Swap Opcodes ================ The swap opcodes are needed to tell the `context' opcode (*note context: context opcode.), the `correct' opcode (*note correct: correct opcode.) and multipass opcodes which dot patterns to swap for which characters. There are three, `swapcd', `swapdd' and `swapcc'. The first swaps dot patterns for characters. The second swaps dot patterns for dot patterns and the third swaps characters for characters. The first is used in the `context' opcode and the second is used in the multipass opcodes. Dot patterns are separated by commas and may contain more than one cell. `swapcd name characters dots, dots, dots, ...' See above paragraph for explanation. For example: swapcd dropped 0123456789 356,2,23,... `swapdd name dots, dots, dots ... dotpattern1, dotpattern2, dotpattern3, ...' The `swapdd' opcode defines substitutions for the multipass opcodes. In the second operand the dot patterns must be single cells, but in the third operand multi-cell dot patterns are allowed. This is because multi-cell patterns in the second operand would lead to ambiguities. `swapcc name characters characters' The `swapcc' opcode swaps characters in its second operand for characters in the corresponding places in its third operand. It is intended for use with `correct' opcodes and can solve problems such as formatting phone numbers.  File: liblouis.info, Node: The Context and Multipass Opcodes, Next: The correct Opcode, Prev: Swap Opcodes, Up: How to Write Translation Tables 3.10 The Context and Multipass Opcodes ====================================== The `context' and multipass opcodes (`pass2', `pass3' and `pass4') provide translation capabilities beyond those of the basic translation opcodes (*note Translation Opcodes::) discussed previously. The multipass opcodes cause additional passes to be made over the string to be translated. The number after the word `pass' indicates in which pass the entry is to be applied. If no multipass opcodes are given, only the first translation pass is made. The `context' opcode is basically a multipass opcode for the first pass. It differs slightly from the multipass opcodes per se. The format of all these opcodes is `opcode test action'. The specific opcodes are invoked as follows: `context test action' `pass2 test action' `pass3 test action' `pass4 test action' The `test' and `action' operands have suboperands. Each suboperand begins with a non-alphanumeric character and ends when another non-alphanumeric character is encountered. The suboperands and their initial characters are as follows. `" (double quote)' a string of characters. This string must be terminated by another double quote. It may contain any characters. If a double quote is needed within the string, it must be preceded by a backslash (`\'). If a space is needed, it must be represented by the escape sequence \s. This suboperand is valid only in the test part of the `context' opcode. `@ (at sign)' a sequence of dot patterns. Cells are separated by hyphens as usual. This suboperand is not valid in the test part of the context and correct opcodes. `` (accent mark)' If this is the beginning of the string being translated this suboperand is true. It is valid only in the test part and must be the first thing in this operand. `~ (tilde)' If this is the end of the string being translated this suboperand is true. It is valid only in the test part and must be the last thing in this operand. `$ (dollar sign)' a string of attributes, such as `d' for digit, `l' for letter, etc. More than one attribute can be given. If you wish to check characters with any attribute, use the letter `a'. Input characters are checked to see if they have at least one of the attributes. The attribute string can be followed by numbers specifying how many characters are to be checked. If no numbers are given, 1 is assumed. If two numbers separated by a hyphen are given, the input is checked to make sure that at least the first number of characters with the attributes are present, but no more than the second number. If only one number is present, then exactly that many characters must have the attributes. A period instead of the numbers indicates an indefinite number of characters (for technical reasons the number of characters that are actually matched is limited to 65535). This suboperand is valid in all test parts but not in action parts. For the characters which can be used in attribute strings, see the following table. `! (exclamation point)' reverses the logical meaning of the suboperand which follows. For example, !$d is true only if the character is _NOT_ a digit. This suboperand is valid in test parts only. `% (percent sign)' the name of a class defined by the `class' opcode (*note class: class opcode.) or the name of a swap set defined by the swap opcodes (*note Swap Opcodes::). Names may contain only letters. The letters may be upper or lower-case. The case matters. Class names may be used in test parts only. Swap names are valid everywhere. `{ (left brace)' Name: the name of a grouping pair. The left brace indicates that the first (or left) member of the pair is to be used in matching. If this is between replacement brackets it must be the only item. This is also valid in the action part. `} (right brace)' Name: the name of a grouping pair. The right brace indicates that the second (or right) member is to be used in matching. See the remarks on the left brace immediately above. `/ (slash)' Search the input for the expression following the slash and return true if found. This can be used to set a variable. `_ (underscore)' Move backward. If a number follows, move backward that number of characters. The program never moves backward beyond the beginning of the input string. This suboperand is valid only in test parts. `[ (left bracket)' start replacement here. This suboperand must always be paired with a right bracket and is valid only in test parts. Multiple pairs of square brackets in a single expression are not allowed. `] (right bracket)' end replacement here. This suboperand must always be paired with a left bracket and is valid only in test parts. `# (number sign or crosshatch)' test or set a variable. Variables are referred to by numbers 1 to 50, for example, `#1', `#2', `#25'. Variables may be set by one `context' or multipass opcode and tested by another. Thus, an operation that occurs at one place in a translation can tell an operation that occurs later about itself. This feature will be used in math translation, and it may also help to alleviate the need for new opcodes. This suboperand is valid everywhere. Variables are set in the action part. To set a variable use an expression like `#1=1', `#2=5', etc. Variables are also incremented and decremented in the action part with expressions like `#1+', `#3-', etc. These operators increment or decrement the variable by 1. Variables are tested in the test part with expressions like `#1=2', `#3<4', `#5>6', etc. `* (asterisk)' Copy the characters or dot patterns in the input within the replacement brackets into the output and discard anything else that may match. This feature is used, for example, for handling numeric subscripts in Nemeth. This suboperand is valid only in action parts. `? (question mark)' Valid only in the action part. The characters to be replaced are simply ignored. That is, they are replaced with nothing. If either member of a grouping pair is in the replace brackets the other member at the same level is also removed. The characters which can be used in attribute strings are as follows: `a' any attribute `d' digit `D' literary digit `l' letter `m' math `p' punctuation `S' sign `s' space `U' uppercase `u' lowercase `w' first user-defined class `x' second user-defined class `y' third user-defined class `z' fourth user-defined class The following illustrates the algorithm how text is evaluated with multipass expressions: Loop over context, pass2, pass3 and pass4 and do the following for each pass: a. Match the text following the cursor against all expressions in the current pass b. If there is no match: shift the cursor one position to the right and continue the loop c. If there is a match: choose the longest match d. Do the replacement (everything between square brackets) e. Place the cursor after the replaced text f. continue loop  File: liblouis.info, Node: The correct Opcode, Next: Miscellaneous Opcodes, Prev: The Context and Multipass Opcodes, Up: How to Write Translation Tables 3.11 The correct Opcode ======================= `correct test action' Because some input (such as that from an OCR program) may contain systematic errors, it is sometimes advantageous to use a pre-translation pass to remove them. The errors and their corrections are specified by the `correct' opcode. If there are no `correct' opcodes in a table, the pre-translation pass is not used. The format of the `correct' opcode is very similar to that of the `context' opcode (*note context: context opcode.). The only difference is that in the action part strings may be used and dot patterns may not be used. Some examples of `correct' opcode entries are: correct "\\" ? Eliminate backslashes correct "cornf" "comf" fix a common "scano" correct "cornm" "comm" correct "cornp" "comp" correct "*" ? Get rid of stray asterisks correct "|" ? ditto for vertical bars correct "\s?" "?" drop space before question mark  File: liblouis.info, Node: Miscellaneous Opcodes, Next: Deprecated Opcodes, Prev: The correct Opcode, Up: How to Write Translation Tables 3.12 Miscellaneous Opcodes ========================== `include filename' Read the file indicated by `filename' and incorporate or include its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry include `en-us-g1.ctb' in the table `en-us-g2.ctb'. If the included file is not in the same directory as the main table, use a full path name for filename. `locale characters' Not implemented, but recognized and ignored for backward compatibility. `undefined dots' If this opcode is used in a table any characters which have not been defined in the table but are encountered in the text will be replaced by the dot pattern. If this opcode is not used, any undefined characters are replaced by `'\xhhhh'', where the h's are hexadecimal digits. `display character dots' Associates dot patterns with the characters which will be sent to a braille embosser, display or screen font. The character must be in the range 0-255 and the dots must specify a single cell. Here are some examples: # When the character a is sent to the embosser or display, # it will produce a dot 1. display a 1 # When the character L is sent to the display or embosser # it will produce dots 1-2-3. display L 123 The `display' opcode is optional. It is used when the embosser or display has a different mapping of characters to dot patterns than that given in *note Character-Definition Opcodes::. If used, display entries must proceed character-definition entries. A possible use case would be to define display opcodes so that the result is Unicode braille for use on a display and a second set of display opcodes (in a different file) to produce plain ASCII braille for use with an embosser. `multind dots opcode opcode ...' The `multind' opcode tells the back-translator that a sequence of braille cells represents more than one braille indicator. For example, in `en-us-g1.ctb' we have `multind 56-6 letsign capsign'. The back-translator can generally handle single braille indicators, but it cannot apply them when they immediately follow each other. It recognizes the letter sign if it is followed by a letter and takes appropriate action. It also recognizes the capital sign if it is followed by a letter. But when there is a letter sign followed by a capital sign it fails to recognize the letter sign unless the sequence has been defined with `multind'. A `multind' entry may not contain a comment because liblouis would attempt to interpret it as an opcode.  File: liblouis.info, Node: Deprecated Opcodes, Prev: Miscellaneous Opcodes, Up: How to Write Translation Tables 3.13 Deprecated Opcodes ======================= The following opcodes are an early attempt to handle emphasis. They have been deprecated by more specific opcodes, but are kept for backward compatibility. `italsign dots' This opcode is deprecated. Use the `lastworditalbefore' opcode (*note lastworditalbefore: lastworditalbefore opcode.) instead. `begital dots' This opcode is deprecated. Use the `firstletterital' opcode (*note firstletterital: firstletterital opcode.) instead. `endital dots' This opcode is deprecated. Use the `lastletterital' opcode (*note lastletterital: lastletterital opcode.) instead. `boldsign dots' This opcode is deprecated. Use the `lastwordboldbefore' opcode (*note lastwordboldbefore: lastwordboldbefore opcode.) instead. `begbold dots' This opcode is deprecated. Use the `firstletterbold' opcode (*note firstletterbold: firstletterbold opcode.) instead. `endbold dots' This opcode is deprecated. Use the `lastletterbold' opcode (*note lastletterbold: lastletterbold opcode.) instead. `undersign dots' This opcode is deprecated. Use the `lastwordunderbefore' opcode (*note lastwordunderbefore: lastwordunderbefore opcode.) instead. `begunder dots' This opcode is deprecated. Use the `firstletterunder' opcode (*note firstletterunder: firstletterunder opcode.) instead. `endunder dots' This opcode is deprecated. Use the `lastletterunder' opcode (*note lastletterunder: lastletterunder opcode.) instead. `literal characters' This opcode is deprecated. Use the `compbrl' opcode (*note compbrl: compbrl opcode.) instead.  File: liblouis.info, Node: How to test Translation Tables, Next: Notes on Back-Translation, Prev: How to Write Translation Tables, Up: Top 4 How to test Translation Tables ******************************** There are a number of automated tests for liblouis and they are proving to be of tremendous value. When changing the code the developers can run the tests to see if anything broke. For testing the translation tables there are basically two approaches: there are the harness tests and the doctests. They were created at roughly the same time using different technologies, have influenced each other and have gone through improvements and technology changes. For now they are both based on Python so you need to have that installed. The philosophies of the two are slightly different: Harness tests The harness tests are data driven, i.e. you give the test data, i.e. a string to translate and the expected output. The data is in a standard format, i.e. json. They work with both Python2 and Python3, however since the format is json it is perceivable that somebody would write some C code which takes the data in the harness file and runs it through liblouis so they could also run without Python and without ucs4. Doctests The doctests on the other hand are based on a technology used in Python where you define your tests as if you were sitting at a terminal session with a Python interpreter. So the tests look like you typed a command and got some output, e.g. >>> translate(['table.ctb'], "Hello", mode=compbrlLeftCursor) ("HELLO", [0,1,2,3], [0,1,2,3], 0) There is a convenience wrapper which hides away much of the complexity of above example so you can write stuff like >>> t.braille('the cat sat on the mat') u'! cat sat on ! mat' But essentially you are writing code, so the doctests allow you to do more flexible tests that are much closer to the raw iron. For technical reasons the doctests will probably only ever work in either Python2 or Python3 but not both and they will never run from C. To sum it up, the recommendation is that for normal table testing you should use the test harness. It has a lot of momentum and the format is a standard. If you want to be closer to the raw Python API of liblouis, if you want to test some more intricate scenarios (involving inpos, modes, etc) then the doctests are for you. * Menu: * Translation Table Test Harness:: * Translation Table Doctests::  File: liblouis.info, Node: Translation Table Test Harness, Next: Translation Table Doctests, Prev: How to test Translation Tables, Up: How to test Translation Tables 4.1 Translation Table Test Harness ================================== Each harness file is a simple utf8 encoded json file, which has two entries. `tables' A list containing table names, which the tests should be run against. This is usually just one table, but for some situations more than one table is required. `tests' A list of sections of tests, which should be processed independantly. Each test section is a dictionary of two items. `flags' The flags that apply for all the test cases in this section. For example, they could all be forward translation tests, or they should all be run as computer braille tests. `data' A list of test cases, each one containing the specific test data needed to perform a test. These are the valid fields for the flags section: `comment' A field describing the reason for the tests, the transformation rule or any useful info that might be needed in case the test breaks (optional). `cursorPos' The position of the cursor within the given text (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour. `mode' The liblouis translation mode that should be used for this test (optional). If not defined defaults to 0. `outputUniBrl' For a forward translation test, the output should be in unicode braille. For a backward translation test, the input is in unicode braille. `testmode' The optional testmode field can have three values: "translate" (default if undeclaired), "backtranslate" or "hyphenate". Declares what tests should be performed on the test data. Each test case has the following entries: `input' The unicode text to be tested (required). `output' The expected braille output (required). The dots should be encoded in the liblouis ascii-braille like encoding. `brlCursorPos' The expected position of the braille cursor in the braille output (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour. Variables defined in the flags section can be overwridden by individual test cases, but if several tests need the same options, they should idealy be split into their own section, complete with their own flags and data. For examples please see `*_harness.txt' in the harness directory in the source distribution.  File: liblouis.info, Node: Translation Table Doctests, Prev: Translation Table Test Harness, Up: How to test Translation Tables 4.2 Translation Table Doctests ============================== For examples on how to create doctests please see `*_test.txt' in the doctest directory in the source distribution.  File: liblouis.info, Node: Notes on Back-Translation, Next: Programming with liblouis, Prev: How to test Translation Tables, Up: Top 5 Notes on Back-Translation *************************** Back-translation is carried out by the function `lou_backTranslateString'. Its calling sequence is described in *note Programming with liblouis::. Tables containing no `context' opcode (*note context: context opcode.), `correct' opcode (*note correct: correct opcode.) or multipass opcodes can be used for both forward and backward translation. If these opcodes are needed different tables will be required. `lou_backTranslateString' first performs `pass4', if present, then `pass3', then `pass2', then the backtranslation, then corrections. Note that this is exactly the inverse of forward translation.  File: liblouis.info, Node: Programming with liblouis, Next: Opcode Index, Prev: Notes on Back-Translation, Up: Top 6 Programming with liblouis *************************** * Menu: * License:: * Overview:: * Data structure of liblouis tables:: * lou_version:: * lou_translateString:: * lou_translate:: * lou_backTranslateString:: * lou_backTranslate:: * lou_hyphenate:: * lou_compileString:: * lou_dotsToChar:: * lou_charToDots:: * lou_logFile:: * lou_logPrint:: * lou_logEnd:: * lou_setDataPath:: * lou_getDataPath:: * lou_getTable:: * lou_readCharFromFile:: * lou_free:: * Python bindings::  File: liblouis.info, Node: License, Next: Overview, Prev: Programming with liblouis, Up: Programming with liblouis 6.1 License =========== Liblouis may contain code borrowed from the Linux screen reader BRLTTY, Copyright (C) 1999-2006 by the BRLTTY Team. Copyright (C) 2004-2007 ViewPlus Technologies, Inc. `www.viewplus.com'. Copyright (C) 2007,2009 Abilitiessoft, Inc. `www.abilitiessoft.com'. Liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Liblouis. If not, see `http://www.gnu.org/licenses/'.  File: liblouis.info, Node: Overview, Next: Data structure of liblouis tables, Prev: License, Up: Programming with liblouis 6.2 Overview ============ You use the liblouis library by calling the following functions, `lou_translateString', `lou_backTranslateString', `lou_logFile', `lou_logPrint', `lou_endLog', `lou_getTable', `lou_translate', `lou_backTranslate', `lou_hyphenate', `lou_charToDots', `lou_dotsToChar', `lou_compileString', `lou_readCharFromFile', `lou_version' and `lou_free'. These are described below. The header file, `liblouis.h', also contains brief descriptions. Liblouis is written in straight C. It has just three code modules, `compileTranslationTable.c', `lou_translateString.c' and `lou_backTranslateString.c'. In addition, there are two header files, `liblouis.h', which defines the API, and `louis.h', used only internally and by liblouisxml. The latter includes `liblouis.h'. Persons who wish to use liblouis from Python may want to skip ahead to *note Python bindings::. `compileTranslationTable.c' keeps track of all translation tables which an application has used. It is called by the translation, hyphenation and checking functions when they start. If a table has not yet been compiled `compileTranslationTable.c' checks it for correctness and compiles it into an efficient internal representation. The main entry point is `lou_getTable'. Since it is the module that keeps track of memory usage, it also contains the `lou_free' function. In addition, it contains the `lou_logFile', `lou_logPrint' and `lou_endLog' functions, plus some utility functions which are used by the other modules. By default, liblouis handles all characters internally as 16-bit unsigned integers. It can be compiled for 32-bit characters as explained below. The meanings of these integers are not hard-coded. Rather they are defined by the character-definition opcodes. However, the standard printable characters, from decimal 32 to 126 are recognized for the purpose of processing the opcodes. Hence, the following definition is included in `liblouis.h'. It is correct for computers with at least 32-bit processors. #define widechar unsigned short int To make liblouis handle 32-bit Unicode simply remove the word `short' in the above `define'. This will cause the translate and back-translate functions to expect input in 32-bit form and to deliver their output in this form. The input to the compiler (tables) is unaffected except that two new escape sequences for 20-bit and 32-bit characters are recognized. Here are the definitions of the eleven liblouis functions and their parameters. They are given in terms of 16-bit Unicode. If liblouis has been compiled for 32-bit Unicode simply read 32 instead of 16.  File: liblouis.info, Node: Data structure of liblouis tables, Next: lou_version, Prev: Overview, Up: Programming with liblouis 6.3 Data structure of liblouis tables ===================================== The data structure `TranslationTableHeader' is defined by a `typedef' statement in `louis.h'. To find the beginning, search for the word `header'. As its name implies, this is actually the table header. Data are placed in the `ruleArea' array, which is the last item defined in this structure. This array is declared with a length of 1 and is expanded as needed. The table header consists mostly of arrays of pointers of size `HASHNUM'. These pointers are actually offsets into `ruleArea' and point to chains of items which have been placed in the same hash bucket by a simple hashing algorithm. `HASHNUM' should be a prime and is currently 1123. The structure of the table was chosen to optimize speed rather than memory usage. The first part of the table contains miscellaneous information, such as the number of passes and whether various opcodes have been used. It also contains the amount of memory allocated to the table and the amount actually used. The next section contains pointers to various braille indicators and begins with `capitalSign'. The rules pointed to contain the dot pattern for the indicator and an opcode which is used by the back-translator but does not appear in the list of opcodes. The braille indicators also include various kinds of emphasis, such as italic and bold and information about the length of emphasized phrases. The latter is contained directly in the table item instead of in a rule. After the braille indicators comes information about when a letter sign should be used. Next is an array of size `HASHNUM' which points to character definitions. These are created by the character-definition opcodes. Following this is a similar array pointing to definitions of single-cell dot patterns. This is also created from the character-definition opcodes. If a character definition contains a multi-cell dot pattern this is compiled into ordinary forward and backward rules. If such a multi-cell dot pattern contains a single cell which has not previously been defined that cell is placed in this array, but is given the attribute `space'. Next come arrays that map characters to single-cell dot patterns and dots to characters. These are created from both character-definition opcodes and display opcodes. Next is an array of size 256 which maps characters in this range to dot patterns which may consist of multiple cells. It is used, for example, to map `{' to dots 456-246. These mappings are created by the `compdots' or the `comp6' opcode (*note comp6: comp6 opcode.). Next are two small arrays that held pointers to chains of rules produced by the `swapcd' opcode (*note swapcd: swapcd opcode.) and the `swapdd' opcode (*note swapdd: swapdd opcode.) and by some multipass, `context' and `correct' opcodes. Now we get to an array of size `HASHNUM' which points to chains of rules for forward translation. Following this is a similar array for back-translation. Finally is the `ruleArea', an array of variable size to which various structures are mapped and to which almost everything else points.  File: liblouis.info, Node: lou_version, Next: lou_translateString, Prev: Data structure of liblouis tables, Up: Programming with liblouis 6.4 lou_version =============== char *lou_version () This function returns a pointer to a character string containing the version of liblouis, plus other information, such as the release date and perhaps notable changes.  File: liblouis.info, Node: lou_translateString, Next: lou_translate, Prev: lou_version, Up: Programming with liblouis 6.5 lou_translateString ======================= int lou_translateString ( const char * tableList, const widechar * inbuf, int *inlen, widechar *outbuf, int *outlen, char *typeform, char *spacing, int mode); This function takes a string of 16-bit Unicode characters in `inbuf' and translates it into a string of 16-bit characters in `outbuf'. Each 16-bit character produces a particular dot pattern in one braille cell when sent to an embosser or braille display or to a screen type font. Which 16-bit character represents which dot pattern is indicated by the character-definition and display opcodes in the translation table. The `tableList' parameter points to a list of translation tables separated by commas. If only one table is given, no comma should be used after it. It is these tables which control just how the translation is made, whether in Grade 2, Grade 1, or something else. liblouis knows where to find all the tables that have been distributed with it. So you can just give a table name such as `en-us-g2.ctb' and liblouis will load it. You can also give a table name which includes a path. If this is the first table in a list, all the tables in the list must be on the same path. You can specify a path on which liblouis will look for table names by setting the environment variable `LOUIS_TABLEPATH'. This environment variable can contain one or more paths separated by commas. On receiving a table name liblouis first checks to see if it can be found on any of these paths. If not, it then checks to see if it can be found in the current directory, or, if the first (or only) name in a table list, if it contains a path name, can be found on that path. If not, it checks to see if it can be found on the path where the distributed tables have been installed. If a table has already been loaded and compiled this path-checking is skipped. The tables in a list are all compiled into the same internal table. The list is then regarded as the name of this table. As explained in *note How to Write Translation Tables::, each table is a file which may be plain text, big-endian Unicode or little-endian Unicode. A table (or list of tables) is compiled into an internal representation the first time it is used. Liblouis keeps track of which tables have been compiled. For this reason, it is essential to call the `lou_free' function at the end of your application to avoid memory leaks. Do _NOT_ call `lou_free' after each translation. This will force liblouis to compile the translation tables each time they are used, leading to great inefficiency. Note that both the `*inlen' and `*outlen' parameters are pointers to integers. When the function is called, these integers contain the maximum input and output lengths, respectively. When it returns, they are set to the actual lengths used. The `typeform' parameter is used to indicate italic type, boldface type, computer braille, etc. It is a string of characters with the same length as the input buffer pointed to by `*inbuf'. However, it is used to pass back character-by-character results, so enough space must be provided to match the `*outlen' parameter. Each character indicates the typeform of the corresponding character in the input buffer. The values are as follows: 0 plain-text; 1 italic; 2 bold; 4 underline; 8 computer braille. These values can be added for multiple emphasis. If this parameter is `NULL', no checking for type forms is done. In addition, if this parameter is not `NULL', it is set on return to have an 8 at every position corresponding to a character in `outbuf' which was defined to have a dot representation containing dot 7, dot 8 or both, and to 0 otherwise. The `spacing' parameter is used to indicate differences in spacing between the input string and the translated output string. It is also of the same length as the string pointed to by `*inbuf'. If this parameter is `NULL', no spacing information is computed. The `mode' parameter specifies how the translation should be done. The valid values of mode are listed in `liblouis.h'. They are all powers of 2, so that a combined mode can be specified by adding up different values. The function returns 1 if no errors were encountered and 0 if a complete translation could not be done.  File: liblouis.info, Node: lou_translate, Next: lou_backTranslateString, Prev: lou_translateString, Up: Programming with liblouis 6.6 lou_translate ================= int lou_translate ( const char * tableList, const widechar * const inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); This function adds the parameters `outputPos', `inputPos' and `cursorPos', to facilitate use in screen reader programs. The `outputPos' parameter must point to an array of integers with at least `inlen' elements. On return, this array will contain the position in `outbuf' corresponding to each input position. Similarly, `inputPos' must point to an array of integers of at least `outlen' elements. On return, this array will contain the position in `inbuf' corresponding to each position in `outbuf'. `cursorPos' must point to an integer containing the position of the cursor in the input. On return, it will contain the cursor position in the output. Any parameter after `outlen' may be `NULL'. In this case, the actions corresponding to it will not be carried out. The `mode' parameter, however, must be present and must be an integer, not a pointer to an integer. If the `compbrlAtCursor' bit is set in the `mode' parameter the space-bounded characters containing the cursor will be translated in computer braille. If the `compbrlLeftCursor' bit is set only the characters to the left of the cursor will be in computer braille. This bit overrides `compbrlAtCursor'. When the `dotsIO' bit is set, during translation, produce output as dot patterns. During back-translation accept input as dot patterns. Note that the produced dot patterns are affected if you have any `display' opcode (*note display: display opcode.) defined in any of your tables. The `ucBrl' (Unicode Braille) bit is used by `lou_charToDots' and `lou_translate'. It causes the dot patterns to be Unicode Braille rather than the liblouis representation. Note that you will not notice any change when setting `ucBrl' unless `dotsIO' is also set. `lou_dotsToChar' and `lou_backTranslate' recognize Unicode braille automatically. The `otherTrans' mode needs special description. If it is set liblouis will attempt to call a wrapper for another translator. These other translators are usually for Asian languages. The calling sequence is the same as for liblouis itself except that the `trantab' parameter gives the name of the other translator, possibly abbreviated, followed by a colon, followed by whatever other information the other translator needs. This is specific for each translator. If no such information is needed the colon should be omitted. The result of calling either the translate or back-translate functions with this mode bit set will be the same as calling without it set. That is, the wrapper for the other translator simulates a call to liblouis. Note that the wrappers are not implemented at this time. Setting this mode bit will result in failure (return value of 0).  File: liblouis.info, Node: lou_backTranslateString, Next: lou_backTranslate, Prev: lou_translate, Up: Programming with liblouis 6.7 lou_backTranslateString =========================== int lou_backTranslateString ( const char * tableList, const widechar * inbuf, int *inlen, widechar *outbuf, int *outlen, char *typeform, char *spacing, int mode); This is exactly the opposite of `lou_translateString'. `inbuf' is a string of 16-bit Unicode characters representing braille. `outbuf' will contain a string of 16-bit Unicode characters. `typeform' will indicate any emphasis found in the input string, while `spacing' will indicate any differences in spacing between the input and output strings. The `typeform' and `spacing' parameters may be `NULL' if this information is not needed. `mode' again specifies how the back-translation should be done.  File: liblouis.info, Node: lou_backTranslate, Next: lou_hyphenate, Prev: lou_backTranslateString, Up: Programming with liblouis 6.8 lou_backTranslate ===================== int lou_backTranslate ( const char * tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); This function is exactly the inverse of `lou_translate'.  File: liblouis.info, Node: lou_hyphenate, Next: lou_compileString, Prev: lou_backTranslate, Up: Programming with liblouis 6.9 lou_hyphenate ================= int lou_hyphenate ( const char *tableList, const widechar *inbuf, int inlen, char *hyphens, int mode); This function looks at the characters in `inbuf' and if it finds a sequence of letters attempts to hyphenate it as a word. Note that lou_hyphenate operates on single words only, and spaces or punctuation marks between letters are not allowed. Leading and trailing punctuation marks are ignored. The table named by the `tableList' parameter must contain a hyphenation table. If it does not, the function does nothing. `inlen' is the length of the character string in `inbuf'. `hyphens' is an array of characters and must be of size `inlen' + 1 (to account for the NULL terminator). If hyphenation is successful it will have a 1 at the beginning of each syllable and a 0 elsewhere. If the `mode' parameter is 0 `inbuf' is assumed to contain untranslated characters. Any nonzero value means that `inbuf' contains a translation. In this case, it is back-translated, hyphenation is performed, and it is re-translated so that the hyphens can be placed correctly. The `lou_translate' and `lou_backTranslate' functions are used in this process. `lou_hyphenate' returns 1 if hyphenation was successful and 0 otherwise. In the latter case, the contents of the `hyphens' parameter are undefined. This function was provided for use in liblouisxml.  File: liblouis.info, Node: lou_compileString, Next: lou_dotsToChar, Prev: lou_hyphenate, Up: Programming with liblouis 6.10 lou_compileString ====================== int lou_compileString (const char *tableList, const char *inString) This function enables you to compile a table entry on the fly at run-time. The new entry is added to `tableList' and remains in force until `lou_free' is called. If `tableList' has not previously been loaded it is loaded and compiled. `inString' contains the table entry to be added. It may be anything valid. Error messages will be produced if it is invalid. The function returns 1 on success and 0 on failure.  File: liblouis.info, Node: lou_dotsToChar, Next: lou_charToDots, Prev: lou_compileString, Up: Programming with liblouis 6.11 lou_dotsToChar =================== int lou_dotsToChar (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int) This function takes a widechar string in `inbuf' consisting of dot patterns and converts it to a widechar string in `outbuf' consisting of characters according to the specifications in `tableList'. `length' is the length of both `inbuf' and `outbuf'. The dot patterns in `inbuf' can be in either liblouis format or Unicode braille. The function returns 1 on success and 0 on failure.  File: liblouis.info, Node: lou_charToDots, Next: lou_logFile, Prev: lou_dotsToChar, Up: Programming with liblouis 6.12 lou_charToDots =================== int lou_charToDots (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int mode) This function is the inverse of `lou_dotsToChar'. It takes a widechar string in `inbuf' consisting of characters and converts it to a widechar string in `outbuf' consisting of dot patterns according to the specifications in `tableList'. `length' is the length of both `inbuf' and `outbuf'. The dot patterns in `outbufbuf' are in liblouis format if the mode bit `ucBrl' is not set and in Unicode format if it is set. The function returns 1 on success and 0 on failure.  File: liblouis.info, Node: lou_logFile, Next: lou_logPrint, Prev: lou_charToDots, Up: Programming with liblouis 6.13 lou_logFile ================ void lou_logFile (char *fileName); This function is used when it is not convenient either to let messages be printed on stderr or to use redirection, as when liblouis is used in a GUI application or in liblouisxml. Any error messages generated will be printed to the file given in this call. The entire path name of the file must be given.  File: liblouis.info, Node: lou_logPrint, Next: lou_logEnd, Prev: lou_logFile, Up: Programming with liblouis 6.14 lou_logPrint ================= void lou_logPrint (char *format, ...); This function is called like `fprint'. It can be used by other libraries to print messages to the file specified by the call to `lou_logFile'. In particular, it is used by the companion library liblouisxml.  File: liblouis.info, Node: lou_logEnd, Next: lou_setDataPath, Prev: lou_logPrint, Up: Programming with liblouis 6.15 lou_logEnd =============== lou_logEnd (); This function is used at the end of processing a document to close the log file, so that it can be read by the rest of the program.  File: liblouis.info, Node: lou_setDataPath, Next: lou_getDataPath, Prev: lou_logEnd, Up: Programming with liblouis 6.16 lou_setDataPath ==================== char * lou_setDataPath (char *path); This function is used to tell liblouis and liblouisutdml where tables and files are located. It thus makes them completely relocatable, even on Linux. The `path' is the directory where the subdirectories `liblouis/tables' and `liblouisutdml/lbu_files' are rooted or located. The function returns a pointer to the `path'.  File: liblouis.info, Node: lou_getDataPath, Next: lou_getTable, Prev: lou_setDataPath, Up: Programming with liblouis 6.17 lou_getDataPath ==================== char * lou_getDataPath (); This function returns a pointer to the path set by `lou_setDataPath'. If no path has been set it returns `NULL'.  File: liblouis.info, Node: lou_getTable, Next: lou_readCharFromFile, Prev: lou_getDataPath, Up: Programming with liblouis 6.18 lou_getTable ================= void *lou_getTable (char *tablelist); `tablelist' is a list of names of table files separated by commas, as explained previously (*note `tableList' parameter in `lou_translateString': translation-tables.). If no errors are found this function returns a pointer to the compiled table. If errors are found messages are printed to the log file, which is stderr unless a different filename has been given using the `lou_logFile' function. Errors result in a `NULL' pointer being returned.  File: liblouis.info, Node: lou_readCharFromFile, Next: lou_free, Prev: lou_getTable, Up: Programming with liblouis 6.19 lou_readCharFromFile ========================= int lou_readCharFromFile (const char *fileName, int *mode); This function is provided for situations where it is necessary to read a file which may contain little-endian or big-endian 16-bit Unicode characters or ASCII8 characters. The return value is a little-endian character, encoded as an integer. The `fileName' parameter is the name of the file to be read. The `mode' parameter is a pointer to an integer which must be set to 1 on the first call. After that, the function takes care of it. On end-of-file the function returns `EOF'.  File: liblouis.info, Node: lou_free, Next: Python bindings, Prev: lou_readCharFromFile, Up: Programming with liblouis 6.20 lou_free ============= void lou_free (); This function should be called at the end of the application to free all memory allocated by liblouis. Failure to do so will result in memory leaks. Do _NOT_ call `lou_free' after each translation. This will force liblouis to compile the translation tables every time they are used, resulting in great inefficiency.  File: liblouis.info, Node: Python bindings, Prev: lou_free, Up: Programming with liblouis 6.21 Python bindings ==================== There are Python bindings for `lou_translateString', `lou_translate' and `lou_version'. For installation instructions see the the `README' file in the `python' directory. Usage information is included in the Python module itself.  File: liblouis.info, Node: Opcode Index, Next: Function Index, Prev: Programming with liblouis, Up: Top Opcode Index ************ [index] * Menu: * after: Character-Class Opcodes. (line 55) * always: Translation Opcodes. (line 85) * before: Character-Class Opcodes. (line 62) * begbold: Deprecated Opcodes. (line 26) * begcaps: Braille Indicator Opcodes. (line 17) * begcomp: Emphasis Opcodes. (line 168) * begital: Deprecated Opcodes. (line 14) * begmidword: Translation Opcodes. (line 191) * begnum: Translation Opcodes. (line 232) * begunder: Deprecated Opcodes. (line 38) * begword: Translation Opcodes. (line 187) * boldsign: Deprecated Opcodes. (line 22) * capsign: Braille Indicator Opcodes. (line 11) * capsnocont: Special Processing Opcodes. (line 8) * class: Character-Class Opcodes. (line 50) * comp6: Translation Opcodes. (line 58) * compbrl: Translation Opcodes. (line 48) * context: The Context and Multipass Opcodes. (line 17) * contraction: Translation Opcodes. (line 165) * correct: The correct Opcode. (line 6) * decpoint: Special Symbol Opcodes. (line 9) * digit: Character-Definition Opcodes. (line 47) * display: Miscellaneous Opcodes. (line 25) * endbold: Deprecated Opcodes. (line 30) * endcaps: Braille Indicator Opcodes. (line 23) * endcomp: Emphasis Opcodes. (line 175) * endital: Deprecated Opcodes. (line 18) * endnum: Translation Opcodes. (line 243) * endunder: Deprecated Opcodes. (line 42) * endword: Translation Opcodes. (line 203) * exactdots: Translation Opcodes. (line 212) * firstletterbold: Emphasis Opcodes. (line 107) * firstletterital: Emphasis Opcodes. (line 62) * firstletterunder: Emphasis Opcodes. (line 143) * firstwordbold: Emphasis Opcodes. (line 87) * firstwordital: Emphasis Opcodes. (line 38) * firstwordunder: Emphasis Opcodes. (line 130) * grouping: Character-Definition Opcodes. (line 70) * hyphen: Special Symbol Opcodes. (line 15) * include: Miscellaneous Opcodes. (line 6) * italsign: Deprecated Opcodes. (line 10) * joinnum: Translation Opcodes. (line 248) * joinword: Translation Opcodes. (line 147) * largesign: Translation Opcodes. (line 110) * lastletterbold: Emphasis Opcodes. (line 111) * lastletterital: Emphasis Opcodes. (line 66) * lastletterunder: Emphasis Opcodes. (line 148) * lastwordboldafter: Emphasis Opcodes. (line 102) * lastwordboldbefore: Emphasis Opcodes. (line 93) * lastworditalafter: Emphasis Opcodes. (line 55) * lastworditalbefore: Emphasis Opcodes. (line 46) * lastwordunderafter: Emphasis Opcodes. (line 139) * lastwordunderbefore: Emphasis Opcodes. (line 134) * lenboldphrase: Emphasis Opcodes. (line 119) * lenitalphrase: Emphasis Opcodes. (line 74) * lenunderphrase: Emphasis Opcodes. (line 157) * letsign: Braille Indicator Opcodes. (line 29) * letter: Character-Definition Opcodes. (line 86) * litdigit: Character-Definition Opcodes. (line 103) * literal: Deprecated Opcodes. (line 46) * locale: Miscellaneous Opcodes. (line 14) * lowercase: Character-Definition Opcodes. (line 91) * lowword: Translation Opcodes. (line 156) * math: Character-Definition Opcodes. (line 118) * midendword: Translation Opcodes. (line 199) * midnum: Translation Opcodes. (line 237) * midword: Translation Opcodes. (line 195) * multind: Miscellaneous Opcodes. (line 49) * noback: Translation Opcodes. (line 36) * nocont: Translation Opcodes. (line 68) * nocross: Translation Opcodes. (line 137) * nofor: Translation Opcodes. (line 43) * noletsign: Braille Indicator Opcodes. (line 37) * noletsignafter: Braille Indicator Opcodes. (line 54) * noletsignbefore: Braille Indicator Opcodes. (line 46) * numsign: Braille Indicator Opcodes. (line 62) * partword: Translation Opcodes. (line 207) * pass2: The Context and Multipass Opcodes. (line 17) * pass3: The Context and Multipass Opcodes. (line 17) * pass4: The Context and Multipass Opcodes. (line 17) * postpunc: Translation Opcodes. (line 228) * prepunc: Translation Opcodes. (line 224) * prfword: Translation Opcodes. (line 183) * punctuation: Character-Definition Opcodes. (line 40) * repeated: Translation Opcodes. (line 93) * replace: Translation Opcodes. (line 75) * repword: Translation Opcodes. (line 101) * sign: Character-Definition Opcodes. (line 110) * singleletterbold: Emphasis Opcodes. (line 115) * singleletterital: Emphasis Opcodes. (line 70) * singleletterunder: Emphasis Opcodes. (line 153) * space: Character-Definition Opcodes. (line 34) * sufword: Translation Opcodes. (line 179) * swapcc: Swap Opcodes. (line 28) * swapcd: Swap Opcodes. (line 16) * swapdd: Swap Opcodes. (line 21) * syllable: Translation Opcodes. (line 125) * undefined: Miscellaneous Opcodes. (line 18) * undersign: Deprecated Opcodes. (line 34) * uplow: Character-Definition Opcodes. (line 53) * uppercase: Character-Definition Opcodes. (line 96) * word: Translation Opcodes. (line 121)  File: liblouis.info, Node: Function Index, Next: Program Index, Prev: Opcode Index, Up: Top Function Index ************** [index] * Menu: * lou_backTranslate: lou_backTranslate. (line 6) * lou_backTranslateString: lou_backTranslateString. (line 6) * lou_charToDots: lou_charToDots. (line 6) * lou_compileString: lou_compileString. (line 6) * lou_dotsToChar: lou_dotsToChar. (line 6) * lou_free: lou_free. (line 6) * lou_getDataPath: lou_getDataPath. (line 6) * lou_getTable: lou_getTable. (line 6) * lou_hyphenate: lou_hyphenate. (line 6) * lou_logEnd: lou_logEnd. (line 6) * lou_logFile: lou_logFile. (line 6) * lou_logPrint: lou_logPrint. (line 6) * lou_readCharFromFile: lou_readCharFromFile. (line 6) * lou_setDataPath: lou_setDataPath. (line 6) * lou_translate: lou_translate. (line 6) * lou_translateString: lou_translateString. (line 6) * lou_version: lou_version. (line 6)  File: liblouis.info, Node: Program Index, Prev: Function Index, Up: Top Program Index ************* [index] * Menu: * lou_allround: lou_allround. (line 6) * lou_checkhyphens: lou_checkhyphens. (line 6) * lou_checktable: lou_checktable. (line 6) * lou_debug: lou_debug. (line 6) * lou_trace: lou_trace. (line 6) * lou_translate: lou_translate (program). (line 6)  Tag Table: Node: Top1371 Node: Introduction4008 Node: Test Programs5163 Ref: common options5798 Node: lou_debug6171 Node: lou_trace10413 Node: lou_checktable12059 Node: lou_allround12615 Node: lou_translate (program)13384 Node: lou_checkhyphens14176 Node: How to Write Translation Tables14695 Node: Hyphenation Tables20963 Node: Character-Definition Opcodes21826 Ref: space opcode23868 Ref: punctuation opcode24064 Ref: digit opcode24342 Ref: uplow opcode24509 Ref: grouping opcode25456 Ref: letter opcode26297 Ref: lowercase opcode26514 Ref: uppercase opcode26729 Ref: litdigit opcode27094 Ref: sign opcode27285 Ref: math opcode27630 Node: Braille Indicator Opcodes27880 Ref: capsign opcode28353 Ref: begcaps opcode28507 Ref: endcaps opcode28626 Ref: letsign opcode28758 Ref: noletsign opcode29024 Ref: noletsignbefore opcode29498 Ref: noletsignafter opcode29880 Ref: numsign opcode30257 Node: Emphasis Opcodes30542 Ref: firstwordital opcode32548 Ref: lastworditalbefore opcode32853 Ref: lastworditalafter opcode33229 Ref: firstletterital opcode33546 Ref: lastletterital opcode33711 Ref: singleletterital opcode33873 Ref: lenitalphrase opcode33993 Ref: firstwordbold opcode34649 Ref: lastwordboldbefore opcode34810 Ref: lastwordboldafter opcode35179 Ref: firstletterbold opcode35376 Ref: lastletterbold opcode35541 Ref: singleletterbold opcode35703 Ref: lenboldphrase opcode35824 Ref: firstwordunder opcode36433 Ref: lastwordunderbefore opcode36556 Ref: lastwordunderafter opcode36802 Ref: firstletterunder opcode36927 Ref: lastletterunder opcode37103 Ref: singleletterunder opcode37276 Ref: lenunderphrase opcode37397 Ref: begcomp opcode38021 Ref: endcomp opcode38372 Node: Special Symbol Opcodes38723 Ref: decpoint opcode39029 Ref: hyphen opcode39222 Node: Special Processing Opcodes39430 Ref: capsnocont opcode39707 Node: Translation Opcodes39890 Ref: noback opcode41643 Ref: nofor opcode41900 Ref: compbrl opcode42119 Ref: comp6 opcode42617 Ref: nocont opcode43138 Ref: replace opcode43473 Ref: always opcode43996 Ref: repeated opcode44301 Ref: repword opcode44653 Ref: largesign opcode45044 Ref: word opcode45647 Ref: syllable opcode45803 Ref: nocross opcode46395 Ref: joinword opcode46929 Ref: lowword opcode47419 Ref: contraction opcode47791 Ref: sufword opcode48607 Ref: prfword opcode48745 Ref: begword opcode48877 Ref: begmidword opcode48998 Ref: midword opcode49146 Ref: midendword opcode49264 Ref: endword opcode49406 Ref: partword opcode49521 Ref: exactdots opcode49706 Ref: prepunc opcode50293 Ref: postpunc opcode50434 Ref: begnum opcode50570 Ref: midnum opcode50782 Ref: endnum opcode51037 Ref: joinnum opcode51272 Node: Character-Class Opcodes51671 Ref: class opcode52885 Ref: after opcode53070 Ref: before opcode53398 Node: Swap Opcodes53728 Ref: swapcd opcode54489 Ref: swapdd opcode54642 Ref: swapcc opcode55023 Node: The Context and Multipass Opcodes55308 Ref: context opcode56220 Node: The correct Opcode62848 Ref: correct opcode63057 Node: Miscellaneous Opcodes64039 Ref: include opcode64239 Ref: locale opcode64671 Ref: undefined opcode64774 Ref: display opcode65096 Ref: multind opcode66144 Node: Deprecated Opcodes66980 Ref: italsign opcode67304 Ref: begital opcode67458 Ref: endital opcode67602 Ref: boldsign opcode67743 Ref: begbold opcode67897 Ref: endbold opcode68041 Ref: undersign opcode68182 Ref: begunder opcode68340 Ref: endunder opcode68488 Ref: literal opcode68633 Node: How to test Translation Tables68759 Node: Translation Table Test Harness71324 Node: Translation Table Doctests73936 Node: Notes on Back-Translation74250 Node: Programming with liblouis75053 Node: License75654 Node: Overview76692 Node: Data structure of liblouis tables79455 Node: lou_version82750 Node: lou_translateString83127 Ref: translation-tables83962 Node: lou_translate87615 Node: lou_backTranslateString90777 Node: lou_backTranslate91715 Node: lou_hyphenate92267 Node: lou_compileString93828 Node: lou_dotsToChar94491 Node: lou_charToDots95160 Node: lou_logFile95912 Node: lou_logPrint96416 Node: lou_logEnd96824 Node: lou_setDataPath97133 Node: lou_getDataPath97666 Node: lou_getTable97983 Node: lou_readCharFromFile98644 Node: lou_free99368 Node: Python bindings99866 Node: Opcode Index100236 Node: Function Index110188 Node: Program Index111647  End Tag Table liblouis-2.5.3/doc/liblouis.html0000664000175000017500000041252712161043230013546 00000000000000 Liblouis User's and Programmer's Manual

Liblouis User's and Programmer's Manual

Liblouis User's and Programmer's Manual

This manual is for liblouis (version 2.5.3, 21 June 2013), a Braille Translation and Back-Translation Library derived from the Linux screen reader BRLTTY.

Copyright © 1999-2006 by the BRLTTY Team.

Copyright © 2004-2007 ViewPlus Technologies, Inc. www.viewplus.com.

Copyright © 2007,2009 Abilitiessoft, Inc. www.abilitiessoft.com.

This file is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser (or library) General Public License (LGPL) as published by the Free Software Foundation; either version 3, or (at your option) any later version.

This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser (or Library) General Public License LGPL for more details.

You should have received a copy of the GNU Lesser (or Library) General Public License (LGPL) along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

1 Introduction

Liblouis is an open-source braille translator and back-translator derived from the translation routines in the BRLTTY screen reader for Linux. It has, however, gone far beyond these routines. It is named in honor of Louis Braille. In Linux and Mac OSX it is a shared library, and in Windows it is a DLL. For installation instructions see the README file. Please report bugs and oddities to the maintainer, john.boyer@abilitiessoft.com

This documentation is derived from Chapter 7 of the BRLTTY manual, but it has been extensively rewritten to cover new features.

Please read the following copyright and warranty information. Note that this information also applies to all source code, tables and other files in this distribution of liblouis. It applies similarly to the sister library liblouisxml.

This file is maintained by John J. Boyer john.boyer@abilitiessoft.com.

Persons who wish to program with liblouis but will not be writing translation tables may want to skip ahead to Programming with liblouis.

2 Test Programs

A number of test programs are provided as part of the liblouis package. They are intended for testing liblouis and for debugging tables. None of them is suitable for braille transcription. An application that can be used for transcription is xml2brl, which is part of the liblouisxml package (see Introduction). The source code of the test programs can be studied to learn how to use the liblouis library and they can be used to perform the following functions.

All of these programs recognize the --help and --version options.

--help
-h
Print a usage message listing all available options, then exit successfully.
--version
-v
Print the version number, then exit successfully.

2.1 lou_debug

The lou_debug tool is intended for debugging liblouis translation tables. The command line for lou_debug is:

     lou_debug [OPTIONS] TABLE[,TABLE,...]

The command line options that are accepted by lou_debug are described in common options.

The table (or comma-separated list of tables) is compiled. If no errors are found a brief command summary is printed, then the prompt ‘Command:’. You can then input one of the command letters and get output, as described below.

Most of the commands print information in the various arrays of TranslationTableHeader. Since these arrays are pointers to chains of hashed items, the commands first print the hash number, then the first item, then the next item chained to it, and so on. After each item there is a prompt indicated by ‘=>’. You can then press enter (<RET>) to see the next item in the chain or the first item in the next chain. Or you can press h (for next-(h)ash) to skip to the next hash chain. You can also press e to exit the command and go back to the ‘command:’ prompt.

h
Brings up a screen of somewhat more extensive help.
f
Display the first forward-translation rule in the first non-empty hash bucket. The number of the bucket is displayed at the beginning of the chain. Each rule is identified by the word ‘Rule:’. The fields are displayed by phrases consisting of the name of the field, an equal sign, and its value. The before and after fields are displayed only if they are nonzero. Special opcodes such as the correct opcode (see correct) and the multipass opcodes are shown with the code that instructs the virtual machine that interprets them. If you want to see only the rules for a particular character string you can type p at the ‘command:’ prompt. This will take you to the ‘particular:’ prompt, where you can press f and then type in the string. The whole hash chain containing the string will be displayed.
b
Display back-translation rules. This display is very similar to that of forward translation rules except that the dot pattern is displayed before the character string.
c
Display character definitions, again within their hash chains.
d
Displays single-cell dot definitions. If a character-definition opcode gives a multi-cell dot pattern, it is displayed among the back-translation rules.
C
Display the character-to-dots map. This is set up by the character-definition opcodes and can also be influenced by the display opcode (see display).
D
Display the dot to character map, which shows which single-cell dot patterns map to which characters.
z
Show the multi-cell dot patterns which have been assigned to the characters from 0 to 255 to comply with computer braille codes such as a 6-dot code. Note that the character-definition opcodes should use 8-dot computer braille.
p
Bring up a secondary (‘particular:’) prompt from which you can examine particular character strings, dot patterns, etc. The commands (given in its own command summary) are very similar to those of the main ‘command:’ prompt, but you can type a character string or dot pattern. They include h, f, b, c, d, C, D, z and x (to exit this prompt), but not p, i and m.
i
Show braille indicators. This shows the dot patterns for various opcodes such as the capsign opcode (see capsign) and the numsign opcode (see numsign). It also shows emphasis dot patterns, such as those for the italword, the firstletterbold opcode (see firstletterbold), etc. If a given opcode has not been used nothing is printed for it.
m
Display various miscellaneous information about the table, such as the number of passes, whether certain opcodes have been used, and whether there is a hyphenation table.
q
Exit the program.

2.2 lou_trace

When working on translation tables it is sometimes useful to determine what rules were applied when translating a string. lou_trace helps with exactly that. It list all the the applied rules for a given translation table and an input string.

     lou_trace [OPTIONS] TABLE[,TABLE,...]

lou_trace accepts all the standard options (see common options). Once started you can type an input string followed by <RET>. lou_trace will print the braille translation followed by list of rules that were applied to produce the translation. A possible invocation is listed in the following example:

     $ lou_trace tables/en-us-g2.ctb
     the u.s. postal service
     ! u4s4 po/al s}vice
     1.      largesign       the     2346
     2.      repeated                0
     3.      lowercase       u       136
     4.      punctuation     .       46
     5.      context _$l["."]$l      @256
     6.      lowercase       s       234
     7.      postpunc        .       256
     8.      repeated                0
     9.      begword post    1234-135-34
     10.     largesign       a       1
     11.     lowercase       l       123
     12.     repeated                0
     13.     lowercase       s       234
     14.     always  er      12456
     15.     lowercase       v       1236
     16.     lowercase       i       24
     17.     lowercase       c       14
     18.     lowercase       e       15
     19.     pass2   $s1-10  @0
     20.     pass2   $s1-10  @0
     21.     pass2   $s1-10  @0

2.3 lou_checktable

To use this program type the following:

     lou_checktable [OPTIONS] TABLE

Aside from the standard options (see common options) lou_checktable also accepts the following options:

--quiet
-q
Do not write to standard error if there are no errors.

If the table contains errors, appropriate messages will be displayed. If there are no errors the message ‘no errors found.’ will be shown.

2.4 lou_allround

This program tests every capability of the liblouis library. It is completely interactive. Invoke it as follows:

     lou_allround [OPTIONS]

The command line options that are accepted by lou_allround are described in common options.

You will see a few lines telling you how to use the program. Pressing one of the letters in parentheses and then enter will take you to a message asking for more information or for the answer to a yes/no question. Typing the letter ‘r’ and then <RET> will take you to a screen where you can enter a line to be processed by the library and then view the results.

2.5 lou_translate

This program translates whatever is on the standard input unit and prints it on the standard output unit. It is intended for large-scale testing of the accuracy of translation and back-translation. The command line for lou_translate is:

     lou_translate [OPTION] TABLE[,TABLE,...]

Aside from the standard options (see common options) this program also accepts the following options:

--forward
-f
Do a forward translation.
--backward
-b
Do a backward translation.

To use it to translate or back-translate a file use a line like

     lou_translate --forward en-us-g2.ctb <liblouis.txt >testtrans

2.6 lou_checkhyphens

This program checks the accuracy of hyphenation in Braille translation for both translated and untranslated words. It is completely interactive. Invoke it as follows:

     lou_checkhyphens [OPTIONS]

The command line options that are accepted by lou_checkhyphens are described in common options.

You will see a few lines telling you how to use the program.

3 How to Write Translation Tables

Many translation (contraction) tables have already been made up. They are included in this distribution in the tables directory and should be studied as part of the documentation. The most helpful (and normative) are listed in the following table:

chardefs.cti
Character definitions for U.S. tables
compress.ctb
Remove excessive whitespace
en-us-g1.ctb
Uncontracted American English
en-us-g2.ctb
Contracted or Grade 2 American English
en-us-brf.dis
Make liblouis output conform to BRF standard
en-us-comp8.ctb
8-dot computer braille for use in coding examples
en-us-comp6.ctb
6-dot computer braille
nemeth.ctb
Nemeth Code translation for use with liblouisxml
nemeth_edit.ctb
Fixes errors at the boundaries of math and text

The names used for files containing translation tables are completely arbitrary. They are not interpreted in any way by the translator. Contraction tables may be 8-bit ASCII files, UTF-8, 16-bit big-endian Unicode files or 16-bit little-endian Unicode files. Blank lines are ignored. Any leading and trailing whitespace (any number of blanks and/or tabs) is ignored. Lines which begin with a number sign or hatch mark (‘#’) are ignored, i.e. they are comments. If the number sign is not the first non-blank character in the line, it is treated as an ordinary character. If the first non-blank character is less-than (‘<’) the line is also treated as a comment. This makes it possible to mark up tables as xhtml documents. Lines which are not blank or comments define table entries. The general format of a table entry is:

     opcode operands comments

Table entries may not be split between lines. The opcode is a mnemonic that specifies what the entry does. The operands may be character sequences, braille dot patterns or occasionally something else. They are described for each opcode, please see Opcode Index. With some exceptions, opcodes expect a certain number of operands. Any text on the line after the last operand is ignored, and may be a comment. A few opcodes accept a variable number of operands. In this case a number sign begins a comment unless it is preceded by a backslash (‘\’).

Here are some examples of table entries.

     # This is a comment.
     always world 456-2456 A word and the dot pattern of its contraction

Most opcodes have both a "characters" operand and a "dots" operand, though some have only one and a few have other types.

The characters operand consists of any combination of characters and escape sequences proceeded and followed by whitespace. Escape sequences are used to represent difficult characters. They begin with a backslash (`\`). They are:

\
backslash
\f
form feed
\n
new line
\r
carriage return
\s
blank (space)
\t
horizontal tab
\v
vertical tab
\e
"escape" character (hex 1b, dec 27)
\xhhhh
4-digit hexadecimal value of a character

If liblouis has been compiled for 32-bit Unicode the following are also recognized.

\yhhhhh
5-digit (20 bit) character
\zhhhhhhhh
Full 32-bit value.

The dots operand is a braille dot pattern. The real braille dots, 1 through 8, must be specified with their standard numbers. liblouis recognizes "virtual dots," which are used for special purposes, such as distinguishing accent marks. There are seven virtual dots. They are specified by the number 9 and the letters ‘a’ through ‘f’. For a multi-cell dot pattern, the cell specifications must be separated from one another by a dash (‘-’). For example, the contraction for the English word ‘lord’ (the letter ‘l’ preceded by dot 5) would be specified as 5-123. A space may be specified with the special dot number 0.

An opcode which is helpful in writing translation tables is include. Its format is:

     include filename

It reads the file indicated by filename and incorporates or includes its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry include en-us-g1.ctb in the table en-us-g2.ctb. If the included file is not in the same directory as the main table, use a full path name for filename. Tables can also be specified in a table list, in which the table names are separated by commas and given as a single table name in calls to the translation functions.

The order of the various types of opcodes or table entries is important. Character-definition opcodes should come first. However, if the optional display opcode (see display) is used it should precede character-definition opcodes. Braille-indicator opcodes should come next. Translation opcodes should follow. The context opcode (see context) is a translation opcode, even though it is considered along with the multipass opcodes. These latter should follow the translation opcodes. The correct opcode (see correct) can be used anywhere after the character-definition opcodes, but it is probably a good idea to group all correct opcodes together. The include opcode (see include) can be used anywhere, but the order of entries in the combined table must conform to the order given above. Within each type of opcode, the order of entries is generally unimportant. Thus the translation entries can be grouped alphabetically or in any other order that is convenient. Hyphenation tables may be specified either with an include opcode or as part of a table list. They should come after everything else. Character-definition opcodes are necessary for hyphenation tables to work.

3.1 Hyphenation Tables

Hyphenation tables are necessary to make opcodes such as the nocross opcode (see nocross) function properly. There are no opcodes for hyphenation table entries because these tables have a special format. Therefore, they cannot be specified as part of an ordinary table. Rather, they must be included using the include opcode (see include) or as part of a table list. The liblouis hyphenation algorithm was adopted from the one used by OpenOffice. Note that Hyphenation tables must follow character definitions and should preferably be the last. For an example of a hyphenation table, see hyph_en_US.dic.

3.2 Character-Definition Opcodes

These opcodes are needed to define attributes such as digit, punctuation, letter, etc. for all characters and their dot patterns. liblouis has no built-in character definitions, but such definitions are essential to the operation of the context opcode (see context), the correct opcode (see correct), the multipass opcodes and the back-translator. If the dot pattern is a single cell, it is used to define the mapping between dot patterns and characters, unless a display opcode (see display) for that character-dot-pattern pair has been used previously. If only a single-cell dot pattern has been given for a character, that dot pattern is defined with the character's own attributes. If more than one cell is given and some of them have not previously been defined as single cells, the undefined cells are entered into the dots table with the space attribute. This is done for backward compatibility with old tables, but it may cause problems with the above opcodes or back-translation. For this reason, every single-cell dot pattern should be defined before it is used in a multi-cell character representation. The best way to do this is to use the 8-dot computer braille representation for the particular braille code. If a character or dot pattern used in any rule, except those with the display opcode, the repeated opcode (see repeated) or the replace opcode (see replace), is not defined by one of the character-definition opcodes, liblouis will give an error message and refuse to continue until the problem is fixed. If the translator or back-translator encounters an undefined character in its input it produces a succinct error indication in its output, and the character is treated as a space.

space character dots
Defines a character as a space and also defines the dot pattern as such. for example:
          space \s 0 \s is the escape sequence for blank; 0 means no dots.


punctuation character dots
Associates a punctuation mark in the particular language with a braille representation and defines the character and dot pattern as punctuation. For example:
          punctuation . 46 dot pattern for period in NAB computer braille


digit character dots
Associates a digit with a dot pattern and defines the character as a digit. For example:
          digit 0 356 NAB computer braille


uplow characters dots [,dots]
The characters operand must be a pair of letters, of which the first is uppercase and the second lowercase. The first dots suboperand indicates the dot pattern for the upper-case letter. It may have more than one cell. The second dots suboperand must be separated from the first by a comma and is optional, as indicated by the square brackets. If present, it indicates the dot pattern for the lower-case letter. It may also have more than one cell. If the second dots suboperand is not present the first is used for the lower-case letter as well as the upper-case letter. This opcode is needed because not all languages follow a consistent pattern in assigning Unicode codes to upper and lower case letters. It should be used even for languages that do. The distinction is important in the forward translator. for example:
          uplow Aa 17,1


grouping name characters dots ,dots
This opcode is used to indicate pairs of grouping symbols used in processing mathematical expressions. These symbols are usually generated by the MathML interpreter in liblouisxml. They are used in multipass opcodes. The name operand must contain only letters, but they may be upper- or lower-case. The characters operand must contain exactly two Unicode characters. The dots operand must contain exactly two braille cells, separated by a comma. Note that grouping dot patterns also need to be declared with the exactdots opcode (see exactdots). The characters may need to be declared with the math opcode (see math).
          grouping mrow \x0001\x0002 1e,2e
          grouping mfrac \x0003\x0004 3e,4e


letter character dots
Associates a letter in the language with a braille representation and defines the character as a letter. This is intended for letters which are neither uppercase nor lowercase.


lowercase character dots
Associates a character with a dot pattern and defines the character as a lowercase letter. Both the character and the dot pattern have the attributes lowercase and letter.


uppercase character dots
Associates a character with a dot pattern and defines the character as an uppercase letter. Both the character and the dot pattern have the attributes uppercase and letter. lowercase and uppercase should be used when a letter has only one case. Otherwise use the uplow opcode (see uplow).


litdigit digit dots
Associates a digit with the dot pattern which should be used to represent it in literary texts. For example:
          litdigit 0 245
          litdigit 1 1


sign character dots
Associates a character with a dot pattern and defines both as a sign. This opcode should be used for things like at sign (‘@’), percent (‘%’), dollar sign (‘$’), etc. Do not use it to define ordinary punctuation such as period and comma. For example:
          sign % 4-25-1234 literary percent sign


math character dots
Associates a character and a dot pattern and defines them as a mathematical symbol. It should be used for less than (‘<’), greater than(‘>’), equals(‘=’), plus(‘+’), etc. For example:
          math + 346 plus

3.3 Braille Indicator Opcodes

Braille indicators are dot patterns which are inserted into the braille text to indicate such things as capitalization, italic type, computer braille, etc. The opcodes which define them are followed only by a dot pattern, which may be one or more cells.

capsign dots
The dot pattern which indicates capitalization of a single letter. In English, this is dot 6. For example:
          capsign 6


begcaps dots
The dot pattern which begins a block of capital letters. For example:
          begcaps 6-6


endcaps dots
The dot pattern which ends a block of capital letters within a word. For example:
          endcaps 6-3


letsign dots
This indicator is needed in Grade 2 to show that a single letter is not a contraction. It is also used when an abbreviation happens to be a sequence of letters that is the same as a contraction. For example:
          letsign 56


noletsign letters

The letters in the operand will not be proceeded by a letter sign. More than one noletsign opcode can be used. This is equivalent to a single entry containing all the letters. In addition, if a single letter, such as ‘a’ in English, is defined as a word (see word) or largesign (see largesign), it will be treated as though it had also been specified in a noletsign entry.


noletsignbefore characters
If any of the characters proceeds a single letter without a space a letter sign is not used. By default the characters apostrophe (‘'’) and period (‘.’) have this property. Use of a noletsignbefore entry cancels the defaults. If more than one noletsignbefore entry is used, the characters in all entries are combined.


noletsignafter characters
If any of the characters follows a single letter without a space a letter sign is not used. By default the characters apostrophe (‘'’) and period (‘.’) have this property. Use of a noletsignafter entry cancels the defaults. If more than one noletsignafter entry is used the characters in all entries are combined.


numsign dots
The translator inserts this indicator before numbers made up of digits defined with the litdigit opcode (see litdigit) to show that they are a number and not letters or some other symbols. For example:
          numsign 3456

3.4 Emphasis Opcodes

These also define braille indicators, but they require more explanation. There are four sets, for italic, bold, underline and computer braille. In each of the first three sets there are seven opcodes, for use before the first word of a phrase, for use before the last word, for use after the last word, for use before the first letter (or character) if emphasis starts in the middle of a word, for use after the last letter (or character) if emphasis ends in the middle of a word, before a single letter (or character), and to specify the length of a phrase to which the first-word and last-word-before indicators apply. This rather elaborate set of emphasis opcodes was devised to try to meet all contingencies. It is unlikely that a translation table will contain all of them. The translator checks for their presence. If they are present, it first looks to see if the single-letter indicator should be used. Then it looks at the word (or phrase) indicators and finally at the multi-letter indicators.

The translator will apply up to two emphasis indicators to each phrase or string of characters, depending on what the typeform parameter in its calling sequence indicates (see Programming with liblouis).

For computer braille there are only two braille indicators, for the beginning and end of a sequence of characters to be rendered in computer braille. Such a sequence may also have other emphasis. The computer braille indicators are applied not only when computer braille is indicated in the typeform parameter, but also when a sequence of characters is determined to be computer braille because it contains a subsequence defined by the compbrl opcode (see compbrl) or the literal opcode (see literal).

Here are the various emphasis opcodes.

firstwordital dots
This is the braille indicator to be placed before the first word of an italicized phrase that is longer than the value given in the lenitalphrase opcode (see lenitalphrase). For example:
          firstwordital 46-46 English indicator


lastworditalbefore dots
This is the braille indicator to be placed before the last word of an italicized phrase. In addition, if firstwordital is not used, this braille indicator is doubled and placed before the first word. Do not use lastworditalbefore and lastworditalafter in the same table. For example:
          lastworditalbefore 4-6


lastworditalafter dots
This is the braille indicator to be placed after the last word of an italicized phrase. Do not use lastworditalbefore and lastworditalafter in the same table. See also the lenitalphrase opcode (see lenitalphrase) for more information.


firstletterital dots
This is the braille indicator to be placed before the first letter (or character) if italicization begins in the middle of a word.


lastletterital dots
This is the braille indicator to be placed after the last letter (or character) when italicization ends in the middle of a word.


singleletterital dots
This braille indicator is used if only a single letter (or character) is italicized.


lenitalphrase number
If lastworditalbefore is used, an italicized phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the lenitalphrase opcode, the lastworditalbefore sign is placed in front of each word. If it is greater, the firstwordital indicator is placed before the first word and the lastworditalbefore indicator is placed after the last word. Note that if the firstwordital opcode is not used its indicator is made up by doubling the dot pattern given in the lastworditalbefore entry. For example:
          lenitalphrase 4


firstwordbold dots
This is the braille indicator to be placed before the first word of a bold phrase. For example:
          firstwordbold 456-456


lastwordboldbefore dots
This is the braille indicator to be placed before the last word of a bold phrase. In addition, if firstwordbold is not used, this braille indicator is doubled and placed before the first word. Do not use lastwordboldbefore and lastwordboldafter in the same table. For example:
          lastwordboldbefore 456


lastwordboldafter dots
This is the braille indicator to be placed after the last word of a bold phrase. Do not use lastwordboldbefore and lastwordboldafter in the same table.


firstletterbold dots
This is the braille indicator to be placed before the first letter (or character) if bold emphasis begins in the middle of a word.


lastletterbold dots
This is the braille indicator to be placed after the last letter (or character) when bold emphasis ends in the middle of a word.


singleletterbold dots
This braille indicator is used if only a single letter (or character) is in boldface.


lenboldphrase number
If lastwordboldbefore is used, a bold phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the lenboldphrase opcode, the lastwordboldbefore sign is placed in front of each word. If it is greater, the firstwordbold indicator is placed before the first word and the lastwordboldbefore indicator is placed after the last word. Note that if the firstwordbold opcode is not used its indicator is made up by doubling the dot pattern given in the lastwordboldbefore entry.


firstwordunder dots
This is the braille indicator to be placed before the first word of an underlined phrase.


lastwordunderbefore dots
This is the braille indicator to be placed before the last word of an underlined phrase. In addition, if firstwordunder is not used, this braille indicator is doubled and placed before the first word.


lastwordunderafter dots
This is the braille indicator to be placed after the last word of an underlined phrase.


firstletterunder dots
This is the braille indicator to be placed before the first letter (or character) if underline emphasis begins in the middle of a word.


lastletterunder dots
This is the braille indicator to be placed after the last letter (or character) when underline emphasis ends in the middle of a word.


singleletterunder dots
This braille indicator is used if only a single letter (or character) is underlined.


lenunderphrase number
If lastwordunderbefore is used, an underlined phrase is checked to see how many words it contains. If this number is less than or equal to the number given in the lenunderphrase opcode, the lastwordunderbefore sign is placed in front of each word. If it is greater, the firstwordunder indicator is placed before the first word and the lastwordunderbefore indicator is placed after the last word. Note that if the firstwordunder opcode is not used its indicator is made up by doubling the dot pattern given in the lastwordunderbefore entry.


begcomp dots
This braille indicator is placed before a sequence of characters translated in computer braille, whether this sequence is indicated in the typeform parameter (see Programming with liblouis) or inferred because it contains a subsequence specified by the compbrl opcode (see compbrl).


endcomp dots
This braille indicator is placed after a sequence of characters translated in computer braille, whether this sequence is indicated in the typeform parameter (see Programming with liblouis) or inferred because it contains a subsequence specified by the compbrl opcode (see compbrl).

3.5 Special Symbol Opcodes

These opcodes define certain symbols, such as the decimal point, which require special treatment.

decpoint character dots
This opcode defines the decimal point. The character operand must have only one character. For example, in en-us-g1.ctb we have:
          decpoint . 46


hyphen character dots
This opcode defines the hyphen, that is, the character used in compound words such as have-nots. The back-translator uses it to determine the end of individual words.

3.6 Special Processing Opcodes

These opcodes cause special processing to be carried out.

capsnocont
This opcode has no operands. If it is specified, words or parts of words in all caps are not contracted. This is needed for languages such as Norwegian.

3.7 Translation Opcodes

These opcodes define the braille representations for character sequences. Each of them defines an entry within the contraction table. These entries may be defined in any order except, as noted below, when they define alternate representations for the same character sequence.

Each of these opcodes specifies a condition under which the translation is legal, and each also has a characters operand and a dots operand. The text being translated is processed strictly from left to right, character by character, with the most eligible entry for each position being used. If there is more than one eligible entry for a given position in the text, then the one with the longest character string is used. If there is more than one eligible entry for the same character string, then the one defined first is is tested for legality first. (This is the only case in which the order of the entries makes a difference.)

The characters operand is a sequence or string of characters preceded and followed by whitespace. Each character can be entered in the normal way, or it can be defined as a four-digit hexadecimal number preceded by ‘\x’.

The dots operand defines the braille representation for the characters operand. It may also be specified as an equals sign (‘=’). This means that the the default representation for each character (see Character-Definition Opcodes) within the sequence is to be used.

In what follows the word ‘characters’ means a sequence of one or more consecutive letters between spaces and/or punctuation marks.

noback opcode ...
This is an opcode prefix, that is to say, it modifies the operation of the opcode that follows it on the same line. noback specifies that no back-translation is to be done using this line.
          noback always ;\s; 0


nofor opcode ...
This is an opcode prefix which modifies the operation of the opcode following it on the same line. nofor specifies that forward translation is not to use the information on this line.


compbrl characters
If the characters are found within a block of text surrounded by whitespace the entire block is translated according to the default braille representations defined by the Character-Definition Opcodes, if 8-dot computer braille is enabled or according to the dot patterns given in the comp6 opcode (see comp6), if 6-dot computer braille is enabled. For example:
          compbrl www translate URLs in computer braille


comp6 character dots
This opcode specifies the translation of characters in 6-dot computer braille. It is necessary because the translation of a single character may require more than one cell. The first operand must be a character with a decimal representation from 0 to 255 inclusive. The second operand may specify as many cells as necessary. The opcode is somewhat of a misnomer, since any dots, not just dots 1 through 6, can be specified. This even includes virtual dots.


nocont characters
Like compbrl, except that the string is uncontracted. prepunc opcode (see prepunc) and postpunc opcode (see postpunc) rules are applied, however. This is useful for specifying that foreign words should not be contracted in an entire document.


replace characters {characters}
Replace the first set of characters, no matter where they appear, with the second. Note that the second operand is NOT a dot pattern. It is also optional. If it is omitted the character(s) in the first operand will be discarded. This is useful for ignoring characters. It is possible that the "ignored" characters may still affect the translation indirectly. Therefore, it is preferable to use correct opcode (see correct).


always characters dots
Replace the characters with the dot pattern no matter where they appear. Do NOT use an entry such as always a 1. Use the uplow, letter, etc. character definition opcodes instead. For example:
          always world 456-2456 unconditional translation


repeated characters dots
Replace the characters with the dot pattern no matter where they appear. Ignore any consecutive repetitions of the same character sequence. This is useful for shortening long strings of spaces or hyphens or periods. For example:
          repeated --- 36-36-36 shorten separator lines made with hyphens


repword characters dots
When characters are encountered check to see if the word before this string matches the word after it. If so, replace characters with dots and eliminate the second word and any word following another occurrence of characters that is the same. This opcode is used in Malaysian braille. In this case the rule is:
          repword - 123456


largesign characters dots
Replace the characters with the dot pattern no matter where they appear. In addition, if two words defined as large signs follow each other, remove the space between them. For example, in en-us-g2.ctb the words ‘and’ and ‘the’ are both defined as large signs. Thus, in the phrase ‘the cat and the dog’ the space would be deleted between ‘and’ and ‘the’, with the result ‘the cat andthe dog’. Of course, ‘and’ and ‘the’ would be properly contracted. The term largesign is a bit of braille jargon that pleases braille experts.


word characters dots
Replace the characters with the dot pattern if they are a word, that is, are surrounded by whitespace and/or punctuation.


syllable characters dots
As its name indicates, this opcode defines a "syllable" which must be represented by exactly the dot patterns given. Contractions may not cross the boundaries of this "syllable" either from left or right. The character string defined by this opcode need not be a lexical syllable, though it usually will be. The equal sign in the following example means that the the default representation for each character within the sequence is to be used (see Translation Opcodes):
          syllable horse = sawhorse, horseradish


nocross characters dots
Replace the characters with the dot pattern if the characters are all in one syllable (do not cross a syllable boundary). For this opcode to work, a hyphenation table must be included. If this is not done, nocross behaves like the always opcode (see always). For example, if the English Grade 2 table is being used and the appropriate hyphenation table has been included nocross sh 146 will cause the ‘sh’ in ‘monkshood’ not to be contracted.


joinword characters dots
Replace the characters with the dot pattern if they are a word which is followed by whitespace and a letter. In addition remove the whitespace. For example, en-us-g2.ctb has joinword to 235. This means that if the word ‘to’ is followed by another word the contraction is to be used and the space is to be omitted. If these conditions are not met, the word is translated according to any other opcodes that may apply to it.


lowword characters dots
Replace the characters with the dot pattern if they are a word preceded and followed by whitespace. No punctuation either before or after the word is allowed. The term lowword derives from the fact that in English these contractions are written in the lower part of the cell. For example:
          lowword were 2356


contraction characters
If you look at en-us-g2.ctb you will see that some words are actually contracted into some of their own letters. A famous example among braille transcribers is ‘also’, which is contracted as ‘al’. But this is also the name of a person. To take another example, ‘altogether’ is contracted as ‘alt’, but this is the abbreviation for the alternate key on a computer keyboard. Similarly ‘could’ is contracted into ‘cd’, but this is the abbreviation for compact disk. To prevent confusion in such cases, the letter sign (see letsign opcode (see letsign)) is placed before such letter combinations when they actually are abbreviations, not contractions. The contraction opcode tells the translator to do this.


sufword characters dots
Replace the characters with the dot pattern if they are either a word or at the beginning of a word.


prfword characters dots
Replace the characters with the dot pattern if they are either a word or at the end of a word.


begword characters dots
Replace the characters with the dot pattern if they are at the beginning of a word.


begmidword characters dots
Replace the characters with the dot pattern if they are either at the beginning or in the middle of a word.


midword characters dots
Replace the characters with the dot pattern if they are in the middle of a word.


midendword characters dots
Replace the characters with the dot pattern if they are either in the middle or at the end of a word.


endword characters dots
Replace the characters with the dot pattern if they are at the end of a word.


partword characters dots
Replace the characters with the dot pattern if the characters are anywhere in a word, that is, if they are proceeded or followed by a letter.


exactdots @dots
Note that the operand must begin with an at sign (‘@’). The dot pattern following it is evaluated for validity. If it is valid, whenever an at sign followed by this dot pattern appears in the source document it is replaced by the characters corresponding to the dot pattern in the output. This opcode is intended for use in liblouisxml semantic-action files to specify exact dot patterns, as in mathematical codes. For example:
          exactdots @4-46-12356

will produce the characters with these dot patterns in the output.


prepunc characters dots
Replace the characters with the dot pattern if they are part of punctuation at the beginning of a word.


postpunc characters dots
Replace the characters with the dot pattern if they are part of punctuation at the end of a word.


begnum characters dots
Replace the characters with the dot pattern if they are at the beginning of a number, that is, before all its digits. For example, in en-us-g1.ctb we have begnum # 4.


midnum characters dots
Replace the characters with the dot pattern if they are in the middle of a number. For example, en-us-g1.ctb has midnum . 46. This is because the decimal point has a different dot pattern than the period.


endnum characters dots
Replace the characters with the dot pattern if they are at the end of a number. For example en-us-g1.ctb has endnum th 1456. This handles things like ‘4th’. A letter sign is NOT inserted.


joinnum characters dots
Replace the characters with the dot pattern. In addition, if whitespace and a number follows omit the whitespace. This opcode can be used to join currency symbols to numbers for example:
          joinnum \x20AC 15 (EURO SIGN)
          joinnum \x0024 145 (DOLLAR SIGN)
          joinnum \x00A3 1234 (POUND SIGN)
          joinnum \x00A5 13456 (YEN SIGN)

3.8 Character-Class Opcodes

These opcodes define and use character classes. A character class associates a set of characters with a name. The name then refers to any character within the class. A character may belong to more than one class.

The basic character classes correspond to the character definition opcodes, with the exception of the uplow opcode (see uplow), which defines characters belonging to the two classes uppercase and lowercase. These classes are:

space
Whitespace characters such as blank and tab
digit
Numeric characters
letter
Both uppercase and lowercase alphabetic characters
lowercase
Lowercase alphabetic characters
uppercase
Uppercase alphabetic characters
punctuation
Punctuation marks
sign
Signs such as percent (‘%’)
math
Mathematical symbols
litdigit
Literary digit
undefined
Not properly defined

The opcodes which define and use character classes are shown below. For examples see fr-abrege.ctb.

class name characters
Define a new character class. The characters operand must be specified as a string. A character class may not be used until it has been defined.


after class opcode ...
The specified opcode is further constrained in that the matched character sequence must be immediately preceded by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used.


before class opcode ...
The specified opcode is further constrained in that the matched character sequence must be immediately followed by a character belonging to the specified class. If this opcode is used more than once on the same line then the union of the characters in all the classes is used.

3.9 Swap Opcodes

The swap opcodes are needed to tell the context opcode (see context), the correct opcode (see correct) and multipass opcodes which dot patterns to swap for which characters. There are three, swapcd, swapdd and swapcc. The first swaps dot patterns for characters. The second swaps dot patterns for dot patterns and the third swaps characters for characters. The first is used in the context opcode and the second is used in the multipass opcodes. Dot patterns are separated by commas and may contain more than one cell.

swapcd name characters dots, dots, dots, ...
See above paragraph for explanation. For example:
          swapcd dropped 0123456789 356,2,23,...


swapdd name dots, dots, dots ... dotpattern1, dotpattern2, dotpattern3, ...
The swapdd opcode defines substitutions for the multipass opcodes. In the second operand the dot patterns must be single cells, but in the third operand multi-cell dot patterns are allowed. This is because multi-cell patterns in the second operand would lead to ambiguities.


swapcc name characters characters
The swapcc opcode swaps characters in its second operand for characters in the corresponding places in its third operand. It is intended for use with correct opcodes and can solve problems such as formatting phone numbers.

3.10 The Context and Multipass Opcodes

The context and multipass opcodes (pass2, pass3 and pass4) provide translation capabilities beyond those of the basic translation opcodes (see Translation Opcodes) discussed previously. The multipass opcodes cause additional passes to be made over the string to be translated. The number after the word pass indicates in which pass the entry is to be applied. If no multipass opcodes are given, only the first translation pass is made. The context opcode is basically a multipass opcode for the first pass. It differs slightly from the multipass opcodes per se. The format of all these opcodes is opcode test action. The specific opcodes are invoked as follows:

context test action
pass2 test action
pass3 test action
pass4 test action

The test and action operands have suboperands. Each suboperand begins with a non-alphanumeric character and ends when another non-alphanumeric character is encountered. The suboperands and their initial characters are as follows.

" (double quote)
a string of characters. This string must be terminated by another double quote. It may contain any characters. If a double quote is needed within the string, it must be preceded by a backslash (‘\’). If a space is needed, it must be represented by the escape sequence \s. This suboperand is valid only in the test part of the context opcode.
@ (at sign)
a sequence of dot patterns. Cells are separated by hyphens as usual. This suboperand is not valid in the test part of the context and correct opcodes.
` (accent mark)
If this is the beginning of the string being translated this suboperand is true. It is valid only in the test part and must be the first thing in this operand.
~ (tilde)
If this is the end of the string being translated this suboperand is true. It is valid only in the test part and must be the last thing in this operand.
$ (dollar sign)
a string of attributes, such as ‘d’ for digit, ‘l’ for letter, etc. More than one attribute can be given. If you wish to check characters with any attribute, use the letter ‘a’. Input characters are checked to see if they have at least one of the attributes. The attribute string can be followed by numbers specifying how many characters are to be checked. If no numbers are given, 1 is assumed. If two numbers separated by a hyphen are given, the input is checked to make sure that at least the first number of characters with the attributes are present, but no more than the second number. If only one number is present, then exactly that many characters must have the attributes. A period instead of the numbers indicates an indefinite number of characters (for technical reasons the number of characters that are actually matched is limited to 65535).

This suboperand is valid in all test parts but not in action parts. For the characters which can be used in attribute strings, see the following table.

! (exclamation point)
reverses the logical meaning of the suboperand which follows. For example, !$d is true only if the character is NOT a digit. This suboperand is valid in test parts only.
% (percent sign)
the name of a class defined by the class opcode (see class) or the name of a swap set defined by the swap opcodes (see Swap Opcodes). Names may contain only letters. The letters may be upper or lower-case. The case matters. Class names may be used in test parts only. Swap names are valid everywhere.
{ (left brace)
Name: the name of a grouping pair. The left brace indicates that the first (or left) member of the pair is to be used in matching. If this is between replacement brackets it must be the only item. This is also valid in the action part.
} (right brace)
Name: the name of a grouping pair. The right brace indicates that the second (or right) member is to be used in matching. See the remarks on the left brace immediately above.
/ (slash)
Search the input for the expression following the slash and return true if found. This can be used to set a variable.
_ (underscore)
Move backward. If a number follows, move backward that number of characters. The program never moves backward beyond the beginning of the input string. This suboperand is valid only in test parts.
[ (left bracket)
start replacement here. This suboperand must always be paired with a right bracket and is valid only in test parts. Multiple pairs of square brackets in a single expression are not allowed.
] (right bracket)
end replacement here. This suboperand must always be paired with a left bracket and is valid only in test parts.
# (number sign or crosshatch)
test or set a variable. Variables are referred to by numbers 1 to 50, for example, #1, #2, #25. Variables may be set by one context or multipass opcode and tested by another. Thus, an operation that occurs at one place in a translation can tell an operation that occurs later about itself. This feature will be used in math translation, and it may also help to alleviate the need for new opcodes. This suboperand is valid everywhere.

Variables are set in the action part. To set a variable use an expression like #1=1, #2=5, etc. Variables are also incremented and decremented in the action part with expressions like #1+, #3-, etc. These operators increment or decrement the variable by 1.

Variables are tested in the test part with expressions like #1=2, #3<4, #5>6, etc.

* (asterisk)
Copy the characters or dot patterns in the input within the replacement brackets into the output and discard anything else that may match. This feature is used, for example, for handling numeric subscripts in Nemeth. This suboperand is valid only in action parts.
? (question mark)
Valid only in the action part. The characters to be replaced are simply ignored. That is, they are replaced with nothing. If either member of a grouping pair is in the replace brackets the other member at the same level is also removed.

The characters which can be used in attribute strings are as follows:

a
any attribute
d
digit
D
literary digit
l
letter
m
math
p
punctuation
S
sign
s
space
U
uppercase
u
lowercase
w
first user-defined class
x
second user-defined class
y
third user-defined class
z
fourth user-defined class

The following illustrates the algorithm how text is evaluated with multipass expressions:

Loop over context, pass2, pass3 and pass4 and do the following for each pass:

  1. Match the text following the cursor against all expressions in the current pass
  2. If there is no match: shift the cursor one position to the right and continue the loop
  3. If there is a match: choose the longest match
  4. Do the replacement (everything between square brackets)
  5. Place the cursor after the replaced text
  6. continue loop

3.11 The correct Opcode

correct test action
Because some input (such as that from an OCR program) may contain systematic errors, it is sometimes advantageous to use a pre-translation pass to remove them. The errors and their corrections are specified by the correct opcode. If there are no correct opcodes in a table, the pre-translation pass is not used. The format of the correct opcode is very similar to that of the context opcode (see context). The only difference is that in the action part strings may be used and dot patterns may not be used. Some examples of correct opcode entries are:
          correct "\\" ? Eliminate backslashes
          correct "cornf" "comf" fix a common "scano"
          correct "cornm" "comm"
          correct "cornp" "comp"
          correct "*" ? Get rid of stray asterisks
          correct "|" ? ditto for vertical bars
          correct "\s?" "?" drop space before question mark

3.12 Miscellaneous Opcodes

include filename
Read the file indicated by filename and incorporate or include its entries into the table. Included files can include other files, which can include other files, etc. For an example, see what files are included by the entry include en-us-g1.ctb in the table en-us-g2.ctb. If the included file is not in the same directory as the main table, use a full path name for filename.


locale characters
Not implemented, but recognized and ignored for backward compatibility.


undefined dots
If this opcode is used in a table any characters which have not been defined in the table but are encountered in the text will be replaced by the dot pattern. If this opcode is not used, any undefined characters are replaced by '\xhhhh', where the h's are hexadecimal digits.


display character dots
Associates dot patterns with the characters which will be sent to a braille embosser, display or screen font. The character must be in the range 0-255 and the dots must specify a single cell. Here are some examples:
          # When the character a is sent to the embosser or display,
          # it will produce a dot 1.
          display a 1
          # When the character L is sent to the display or embosser
          # it will produce dots 1-2-3.
          display L 123

The display opcode is optional. It is used when the embosser or display has a different mapping of characters to dot patterns than that given in Character-Definition Opcodes. If used, display entries must proceed character-definition entries.

A possible use case would be to define display opcodes so that the result is Unicode braille for use on a display and a second set of display opcodes (in a different file) to produce plain ASCII braille for use with an embosser.


multind dots opcode opcode ...
The multind opcode tells the back-translator that a sequence of braille cells represents more than one braille indicator. For example, in en-us-g1.ctb we have multind 56-6 letsign capsign. The back-translator can generally handle single braille indicators, but it cannot apply them when they immediately follow each other. It recognizes the letter sign if it is followed by a letter and takes appropriate action. It also recognizes the capital sign if it is followed by a letter. But when there is a letter sign followed by a capital sign it fails to recognize the letter sign unless the sequence has been defined with multind. A multind entry may not contain a comment because liblouis would attempt to interpret it as an opcode.

3.13 Deprecated Opcodes

The following opcodes are an early attempt to handle emphasis. They have been deprecated by more specific opcodes, but are kept for backward compatibility.

italsign dots
This opcode is deprecated. Use the lastworditalbefore opcode (see lastworditalbefore) instead.


begital dots
This opcode is deprecated. Use the firstletterital opcode (see firstletterital) instead.


endital dots
This opcode is deprecated. Use the lastletterital opcode (see lastletterital) instead.


boldsign dots
This opcode is deprecated. Use the lastwordboldbefore opcode (see lastwordboldbefore) instead.


begbold dots
This opcode is deprecated. Use the firstletterbold opcode (see firstletterbold) instead.


endbold dots
This opcode is deprecated. Use the lastletterbold opcode (see lastletterbold) instead.


undersign dots
This opcode is deprecated. Use the lastwordunderbefore opcode (see lastwordunderbefore) instead.


begunder dots
This opcode is deprecated. Use the firstletterunder opcode (see firstletterunder) instead.


endunder dots
This opcode is deprecated. Use the lastletterunder opcode (see lastletterunder) instead.


literal characters
This opcode is deprecated. Use the compbrl opcode (see compbrl) instead.

4 How to test Translation Tables

There are a number of automated tests for liblouis and they are proving to be of tremendous value. When changing the code the developers can run the tests to see if anything broke.

For testing the translation tables there are basically two approaches: there are the harness tests and the doctests. They were created at roughly the same time using different technologies, have influenced each other and have gone through improvements and technology changes. For now they are both based on Python so you need to have that installed. The philosophies of the two are slightly different:

Harness tests
The harness tests are data driven, i.e. you give the test data, i.e. a string to translate and the expected output. The data is in a standard format, i.e. json. They work with both Python2 and Python3, however since the format is json it is perceivable that somebody would write some C code which takes the data in the harness file and runs it through liblouis so they could also run without Python and without ucs4.
Doctests
The doctests on the other hand are based on a technology used in Python where you define your tests as if you were sitting at a terminal session with a Python interpreter. So the tests look like you typed a command and got some output, e.g.
          >>> translate(['table.ctb'], "Hello", mode=compbrlLeftCursor)
          ("HELLO", [0,1,2,3], [0,1,2,3], 0)

There is a convenience wrapper which hides away much of the complexity of above example so you can write stuff like

          >>> t.braille('the cat sat on the mat')
          u'! cat sat on ! mat'

But essentially you are writing code, so the doctests allow you to do more flexible tests that are much closer to the raw iron. For technical reasons the doctests will probably only ever work in either Python2 or Python3 but not both and they will never run from C.

To sum it up, the recommendation is that for normal table testing you should use the test harness. It has a lot of momentum and the format is a standard. If you want to be closer to the raw Python API of liblouis, if you want to test some more intricate scenarios (involving inpos, modes, etc) then the doctests are for you.

4.1 Translation Table Test Harness

Each harness file is a simple utf8 encoded json file, which has two entries.

tables
A list containing table names, which the tests should be run against. This is usually just one table, but for some situations more than one table is required.
tests
A list of sections of tests, which should be processed independantly. Each test section is a dictionary of two items.
flags
The flags that apply for all the test cases in this section. For example, they could all be forward translation tests, or they should all be run as computer braille tests.
data
A list of test cases, each one containing the specific test data needed to perform a test.

These are the valid fields for the flags section:

comment
A field describing the reason for the tests, the transformation rule or any useful info that might be needed in case the test breaks (optional).
cursorPos
The position of the cursor within the given text (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour.
mode
The liblouis translation mode that should be used for this test (optional). If not defined defaults to 0.
outputUniBrl
For a forward translation test, the output should be in unicode braille. For a backward translation test, the input is in unicode braille.
testmode
The optional testmode field can have three values: "translate" (default if undeclaired), "backtranslate" or "hyphenate". Declares what tests should be performed on the test data.

Each test case has the following entries:

input
The unicode text to be tested (required).
output
The expected braille output (required). The dots should be encoded in the liblouis ascii-braille like encoding.
brlCursorPos
The expected position of the braille cursor in the braille output (optional). Useful when simulating screenreader interaction, to debug contraction and cursor behaviour.

Variables defined in the flags section can be overwridden by individual test cases, but if several tests need the same options, they should idealy be split into their own section, complete with their own flags and data.

For examples please see *_harness.txt in the harness directory in the source distribution.

4.2 Translation Table Doctests

For examples on how to create doctests please see *_test.txt in the doctest directory in the source distribution.

5 Notes on Back-Translation

Back-translation is carried out by the function lou_backTranslateString. Its calling sequence is described in Programming with liblouis. Tables containing no context opcode (see context), correct opcode (see correct) or multipass opcodes can be used for both forward and backward translation. If these opcodes are needed different tables will be required. lou_backTranslateString first performs pass4, if present, then pass3, then pass2, then the backtranslation, then corrections. Note that this is exactly the inverse of forward translation.

6 Programming with liblouis

6.1 License

Liblouis may contain code borrowed from the Linux screen reader BRLTTY, Copyright © 1999-2006 by the BRLTTY Team.

Copyright © 2004-2007 ViewPlus Technologies, Inc. www.viewplus.com.

Copyright © 2007,2009 Abilitiessoft, Inc. www.abilitiessoft.com.

Liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with Liblouis. If not, see http://www.gnu.org/licenses/.

6.2 Overview

You use the liblouis library by calling the following functions, lou_translateString, lou_backTranslateString, lou_logFile, lou_logPrint, lou_endLog, lou_getTable, lou_translate, lou_backTranslate, lou_hyphenate, lou_charToDots, lou_dotsToChar, lou_compileString, lou_readCharFromFile, lou_version and lou_free. These are described below. The header file, liblouis.h, also contains brief descriptions. Liblouis is written in straight C. It has just three code modules, compileTranslationTable.c, lou_translateString.c and lou_backTranslateString.c. In addition, there are two header files, liblouis.h, which defines the API, and louis.h, used only internally and by liblouisxml. The latter includes liblouis.h.

Persons who wish to use liblouis from Python may want to skip ahead to Python bindings.

compileTranslationTable.c keeps track of all translation tables which an application has used. It is called by the translation, hyphenation and checking functions when they start. If a table has not yet been compiled compileTranslationTable.c checks it for correctness and compiles it into an efficient internal representation. The main entry point is lou_getTable. Since it is the module that keeps track of memory usage, it also contains the lou_free function. In addition, it contains the lou_logFile, lou_logPrint and lou_endLog functions, plus some utility functions which are used by the other modules.

By default, liblouis handles all characters internally as 16-bit unsigned integers. It can be compiled for 32-bit characters as explained below. The meanings of these integers are not hard-coded. Rather they are defined by the character-definition opcodes. However, the standard printable characters, from decimal 32 to 126 are recognized for the purpose of processing the opcodes. Hence, the following definition is included in liblouis.h. It is correct for computers with at least 32-bit processors.

     #define widechar unsigned short int

To make liblouis handle 32-bit Unicode simply remove the word short in the above define. This will cause the translate and back-translate functions to expect input in 32-bit form and to deliver their output in this form. The input to the compiler (tables) is unaffected except that two new escape sequences for 20-bit and 32-bit characters are recognized.

Here are the definitions of the eleven liblouis functions and their parameters. They are given in terms of 16-bit Unicode. If liblouis has been compiled for 32-bit Unicode simply read 32 instead of 16.

6.3 Data structure of liblouis tables

The data structure TranslationTableHeader is defined by a typedef statement in louis.h. To find the beginning, search for the word ‘header’. As its name implies, this is actually the table header. Data are placed in the ruleArea array, which is the last item defined in this structure. This array is declared with a length of 1 and is expanded as needed. The table header consists mostly of arrays of pointers of size HASHNUM. These pointers are actually offsets into ruleArea and point to chains of items which have been placed in the same hash bucket by a simple hashing algorithm. HASHNUM should be a prime and is currently 1123. The structure of the table was chosen to optimize speed rather than memory usage.

The first part of the table contains miscellaneous information, such as the number of passes and whether various opcodes have been used. It also contains the amount of memory allocated to the table and the amount actually used.

The next section contains pointers to various braille indicators and begins with capitalSign. The rules pointed to contain the dot pattern for the indicator and an opcode which is used by the back-translator but does not appear in the list of opcodes. The braille indicators also include various kinds of emphasis, such as italic and bold and information about the length of emphasized phrases. The latter is contained directly in the table item instead of in a rule.

After the braille indicators comes information about when a letter sign should be used.

Next is an array of size HASHNUM which points to character definitions. These are created by the character-definition opcodes.

Following this is a similar array pointing to definitions of single-cell dot patterns. This is also created from the character-definition opcodes. If a character definition contains a multi-cell dot pattern this is compiled into ordinary forward and backward rules. If such a multi-cell dot pattern contains a single cell which has not previously been defined that cell is placed in this array, but is given the attribute space.

Next come arrays that map characters to single-cell dot patterns and dots to characters. These are created from both character-definition opcodes and display opcodes.

Next is an array of size 256 which maps characters in this range to dot patterns which may consist of multiple cells. It is used, for example, to map ‘{’ to dots 456-246. These mappings are created by the compdots or the comp6 opcode (see comp6).

Next are two small arrays that held pointers to chains of rules produced by the swapcd opcode (see swapcd) and the swapdd opcode (see swapdd) and by some multipass, context and correct opcodes.

Now we get to an array of size HASHNUM which points to chains of rules for forward translation.

Following this is a similar array for back-translation.

Finally is the ruleArea, an array of variable size to which various structures are mapped and to which almost everything else points.

6.4 lou_version

     char *lou_version ()

This function returns a pointer to a character string containing the version of liblouis, plus other information, such as the release date and perhaps notable changes.

6.5 lou_translateString

     int lou_translateString (
         const char * tableList,
         const widechar * inbuf,
         int *inlen,
         widechar *outbuf,
         int *outlen,
         char *typeform,
         char *spacing,
         int mode);

This function takes a string of 16-bit Unicode characters in inbuf and translates it into a string of 16-bit characters in outbuf. Each 16-bit character produces a particular dot pattern in one braille cell when sent to an embosser or braille display or to a screen type font. Which 16-bit character represents which dot pattern is indicated by the character-definition and display opcodes in the translation table.

The tableList parameter points to a list of translation tables separated by commas. If only one table is given, no comma should be used after it. It is these tables which control just how the translation is made, whether in Grade 2, Grade 1, or something else.

liblouis knows where to find all the tables that have been distributed with it. So you can just give a table name such as en-us-g2.ctb and liblouis will load it. You can also give a table name which includes a path. If this is the first table in a list, all the tables in the list must be on the same path. You can specify a path on which liblouis will look for table names by setting the environment variable LOUIS_TABLEPATH. This environment variable can contain one or more paths separated by commas. On receiving a table name liblouis first checks to see if it can be found on any of these paths. If not, it then checks to see if it can be found in the current directory, or, if the first (or only) name in a table list, if it contains a path name, can be found on that path. If not, it checks to see if it can be found on the path where the distributed tables have been installed. If a table has already been loaded and compiled this path-checking is skipped.

The tables in a list are all compiled into the same internal table. The list is then regarded as the name of this table. As explained in How to Write Translation Tables, each table is a file which may be plain text, big-endian Unicode or little-endian Unicode. A table (or list of tables) is compiled into an internal representation the first time it is used. Liblouis keeps track of which tables have been compiled. For this reason, it is essential to call the lou_free function at the end of your application to avoid memory leaks. Do NOT call lou_free after each translation. This will force liblouis to compile the translation tables each time they are used, leading to great inefficiency.

Note that both the *inlen and *outlen parameters are pointers to integers. When the function is called, these integers contain the maximum input and output lengths, respectively. When it returns, they are set to the actual lengths used.

The typeform parameter is used to indicate italic type, boldface type, computer braille, etc. It is a string of characters with the same length as the input buffer pointed to by *inbuf. However, it is used to pass back character-by-character results, so enough space must be provided to match the *outlen parameter. Each character indicates the typeform of the corresponding character in the input buffer. The values are as follows: 0 plain-text; 1 italic; 2 bold; 4 underline; 8 computer braille. These values can be added for multiple emphasis. If this parameter is NULL, no checking for type forms is done. In addition, if this parameter is not NULL, it is set on return to have an 8 at every position corresponding to a character in outbuf which was defined to have a dot representation containing dot 7, dot 8 or both, and to 0 otherwise.

The spacing parameter is used to indicate differences in spacing between the input string and the translated output string. It is also of the same length as the string pointed to by *inbuf. If this parameter is NULL, no spacing information is computed.

The mode parameter specifies how the translation should be done. The valid values of mode are listed in liblouis.h. They are all powers of 2, so that a combined mode can be specified by adding up different values.

The function returns 1 if no errors were encountered and 0 if a complete translation could not be done.

6.6 lou_translate

     int lou_translate (
         const char * tableList,
         const widechar * const inbuf,
         int *inlen,
         widechar * outbuf,
         int *outlen,
         char *typeform,
         char *spacing,
         int *outputPos,
         int *inputPos,
         int *cursorPos,
         int mode);

This function adds the parameters outputPos, inputPos and cursorPos, to facilitate use in screen reader programs. The outputPos parameter must point to an array of integers with at least inlen elements. On return, this array will contain the position in outbuf corresponding to each input position. Similarly, inputPos must point to an array of integers of at least outlen elements. On return, this array will contain the position in inbuf corresponding to each position in outbuf. cursorPos must point to an integer containing the position of the cursor in the input. On return, it will contain the cursor position in the output. Any parameter after outlen may be NULL. In this case, the actions corresponding to it will not be carried out. The mode parameter, however, must be present and must be an integer, not a pointer to an integer. If the compbrlAtCursor bit is set in the mode parameter the space-bounded characters containing the cursor will be translated in computer braille. If the compbrlLeftCursor bit is set only the characters to the left of the cursor will be in computer braille. This bit overrides compbrlAtCursor. When the dotsIO bit is set, during translation, produce output as dot patterns. During back-translation accept input as dot patterns. Note that the produced dot patterns are affected if you have any display opcode (see display) defined in any of your tables. The ucBrl (Unicode Braille) bit is used by lou_charToDots and lou_translate. It causes the dot patterns to be Unicode Braille rather than the liblouis representation. Note that you will not notice any change when setting ucBrl unless dotsIO is also set. lou_dotsToChar and lou_backTranslate recognize Unicode braille automatically.

The otherTrans mode needs special description. If it is set liblouis will attempt to call a wrapper for another translator. These other translators are usually for Asian languages. The calling sequence is the same as for liblouis itself except that the trantab parameter gives the name of the other translator, possibly abbreviated, followed by a colon, followed by whatever other information the other translator needs. This is specific for each translator. If no such information is needed the colon should be omitted. The result of calling either the translate or back-translate functions with this mode bit set will be the same as calling without it set. That is, the wrapper for the other translator simulates a call to liblouis. Note that the wrappers are not implemented at this time. Setting this mode bit will result in failure (return value of 0).

6.7 lou_backTranslateString

     int lou_backTranslateString (
         const char * tableList,
         const widechar * inbuf,
         int *inlen,
         widechar *outbuf,
         int *outlen,
         char *typeform,
         char *spacing,
         int mode);

This is exactly the opposite of lou_translateString. inbuf is a string of 16-bit Unicode characters representing braille. outbuf will contain a string of 16–bit Unicode characters. typeform will indicate any emphasis found in the input string, while spacing will indicate any differences in spacing between the input and output strings. The typeform and spacing parameters may be NULL if this information is not needed. mode again specifies how the back-translation should be done.

6.8 lou_backTranslate

     int lou_backTranslate (
         const char * tableList,
         const widechar * inbufx,
         int *inlen,
         widechar * outbuf,
         int *outlen,
         char *typeform,
         char *spacing,
         int *outputPos,
         int *inputPos,
         int *cursorPos,
         int mode);

This function is exactly the inverse of lou_translate.

6.9 lou_hyphenate

     int lou_hyphenate (
         const char *tableList,
         const widechar *inbuf,
         int inlen,
         char *hyphens,
         int mode);

This function looks at the characters in inbuf and if it finds a sequence of letters attempts to hyphenate it as a word. Note that lou_hyphenate operates on single words only, and spaces or punctuation marks between letters are not allowed. Leading and trailing punctuation marks are ignored. The table named by the tableList parameter must contain a hyphenation table. If it does not, the function does nothing. inlen is the length of the character string in inbuf. hyphens is an array of characters and must be of size inlen + 1 (to account for the NULL terminator). If hyphenation is successful it will have a 1 at the beginning of each syllable and a 0 elsewhere. If the mode parameter is 0 inbuf is assumed to contain untranslated characters. Any nonzero value means that inbuf contains a translation. In this case, it is back-translated, hyphenation is performed, and it is re-translated so that the hyphens can be placed correctly. The lou_translate and lou_backTranslate functions are used in this process. lou_hyphenate returns 1 if hyphenation was successful and 0 otherwise. In the latter case, the contents of the hyphens parameter are undefined. This function was provided for use in liblouisxml.

6.10 lou_compileString

     int lou_compileString (const char *tableList, const char *inString)

This function enables you to compile a table entry on the fly at run-time. The new entry is added to tableList and remains in force until lou_free is called. If tableList has not previously been loaded it is loaded and compiled. inString contains the table entry to be added. It may be anything valid. Error messages will be produced if it is invalid. The function returns 1 on success and 0 on failure.

6.11 lou_dotsToChar

     int lou_dotsToChar (const char *tableList, const widechar *inbuf, widechar
     	*outbuf, int length, int)

This function takes a widechar string in inbuf consisting of dot patterns and converts it to a widechar string in outbuf consisting of characters according to the specifications in tableList. length is the length of both inbuf and outbuf. The dot patterns in inbuf can be in either liblouis format or Unicode braille. The function returns 1 on success and 0 on failure.

6.12 lou_charToDots

     int lou_charToDots (const char *tableList, const widechar *inbuf, widechar
     	*outbuf, int length, int mode)

This function is the inverse of lou_dotsToChar. It takes a widechar string in inbuf consisting of characters and converts it to a widechar string in outbuf consisting of dot patterns according to the specifications in tableList. length is the length of both inbuf and outbuf. The dot patterns in outbufbuf are in liblouis format if the mode bit ucBrl is not set and in Unicode format if it is set. The function returns 1 on success and 0 on failure.

6.13 lou_logFile

     void lou_logFile (char *fileName);

This function is used when it is not convenient either to let messages be printed on stderr or to use redirection, as when liblouis is used in a GUI application or in liblouisxml. Any error messages generated will be printed to the file given in this call. The entire path name of the file must be given.

6.14 lou_logPrint

     void lou_logPrint (char *format, ...);

This function is called like fprint. It can be used by other libraries to print messages to the file specified by the call to lou_logFile. In particular, it is used by the companion library liblouisxml.

6.15 lou_logEnd

     lou_logEnd ();

This function is used at the end of processing a document to close the log file, so that it can be read by the rest of the program.

6.16 lou_setDataPath

     char * lou_setDataPath (char *path);

This function is used to tell liblouis and liblouisutdml where tables and files are located. It thus makes them completely relocatable, even on Linux. The path is the directory where the subdirectories liblouis/tables and liblouisutdml/lbu_files are rooted or located. The function returns a pointer to the path.

6.17 lou_getDataPath

     char * lou_getDataPath ();

This function returns a pointer to the path set by lou_setDataPath. If no path has been set it returns NULL.

6.18 lou_getTable

     void *lou_getTable (char *tablelist);

tablelist is a list of names of table files separated by commas, as explained previously (see tableList parameter in lou_translateString). If no errors are found this function returns a pointer to the compiled table. If errors are found messages are printed to the log file, which is stderr unless a different filename has been given using the lou_logFile function. Errors result in a NULL pointer being returned.

6.19 lou_readCharFromFile

     int lou_readCharFromFile (const char *fileName, int *mode);

This function is provided for situations where it is necessary to read a file which may contain little-endian or big-endian 16-bit Unicode characters or ASCII8 characters. The return value is a little-endian character, encoded as an integer. The fileName parameter is the name of the file to be read. The mode parameter is a pointer to an integer which must be set to 1 on the first call. After that, the function takes care of it. On end-of-file the function returns EOF.

6.20 lou_free

     void lou_free ();

This function should be called at the end of the application to free all memory allocated by liblouis. Failure to do so will result in memory leaks. Do NOT call lou_free after each translation. This will force liblouis to compile the translation tables every time they are used, resulting in great inefficiency.

6.21 Python bindings

There are Python bindings for lou_translateString, lou_translate and lou_version. For installation instructions see the the README file in the python directory. Usage information is included in the Python module itself.

Opcode Index

Function Index

Program Index

liblouis-2.5.3/doc/stamp-vti0000664000175000017500000000013512161044173012700 00000000000000@set UPDATED 21 June 2013 @set UPDATED-MONTH June 2013 @set EDITION 2.5.3 @set VERSION 2.5.3 liblouis-2.5.3/doc/version.texi0000664000175000017500000000013512161043214013404 00000000000000@set UPDATED 21 June 2013 @set UPDATED-MONTH June 2013 @set EDITION 2.5.3 @set VERSION 2.5.3 liblouis-2.5.3/doc/Makefile.in0000664000175000017500000010017712161044153013103 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/stamp-vti $(srcdir)/version.texi ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = INFO_DEPS = $(srcdir)/liblouis.info TEXINFO_TEX = $(top_srcdir)/build-aux/texinfo.tex am__TEXINFO_TEX_DIR = $(top_srcdir)/build-aux DVIS = liblouis.dvi PDFS = liblouis.pdf PSS = liblouis.ps HTMLS = liblouis.html TEXINFOS = liblouis.texi TEXI2DVI = texi2dvi TEXI2PDF = $(TEXI2DVI) --pdf --batch MAKEINFOHTML = $(MAKEINFO) --html DVIPS = dvips am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__installdirs = "$(DESTDIR)$(infodir)" "$(DESTDIR)$(docdir)" am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } DATA = $(doc_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ # docdir is only needed if you have Autoconf older than 2.60 docdir = $(datadir)/doc/${PACKAGE} dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ doc_DATA = \ liblouis.html \ liblouis.txt EXTRA_DIST = \ liblouis.html \ liblouis.txt CLEANFILES = $(EXTRA_DIST) info_TEXINFOS = liblouis.texi # generate one big html file AM_MAKEINFOHTMLFLAGS = --no-headers --no-split SUFFIXES = .txt all: all-am .SUFFIXES: .SUFFIXES: .txt .dvi .html .info .pdf .ps .texi $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs .texi.info: restore=: && backupdir="$(am__leading_dot)am$$$$" && \ am__cwd=`pwd` && $(am__cd) $(srcdir) && \ rm -rf $$backupdir && mkdir $$backupdir && \ if ($(MAKEINFO) --version) >/dev/null 2>&1; then \ for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \ if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \ done; \ else :; fi && \ cd "$$am__cwd"; \ if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ -o $@ $<; \ then \ rc=0; \ $(am__cd) $(srcdir); \ else \ rc=$$?; \ $(am__cd) $(srcdir) && \ $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \ fi; \ rm -rf $$backupdir; exit $$rc .texi.dvi: TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \ $(TEXI2DVI) $< .texi.pdf: TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \ $(TEXI2PDF) $< .texi.html: rm -rf $(@:.html=.htp) if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ -o $(@:.html=.htp) $<; \ then \ rm -rf $@; \ if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \ mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \ else \ if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \ rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \ exit 1; \ fi $(srcdir)/liblouis.info: liblouis.texi $(srcdir)/version.texi liblouis.dvi: liblouis.texi $(srcdir)/version.texi liblouis.pdf: liblouis.texi $(srcdir)/version.texi liblouis.html: liblouis.texi $(srcdir)/version.texi $(srcdir)/version.texi: $(srcdir)/stamp-vti $(srcdir)/stamp-vti: liblouis.texi $(top_srcdir)/configure @(dir=.; test -f ./liblouis.texi || dir=$(srcdir); \ set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/liblouis.texi`; \ echo "@set UPDATED $$1 $$2 $$3"; \ echo "@set UPDATED-MONTH $$2 $$3"; \ echo "@set EDITION $(VERSION)"; \ echo "@set VERSION $(VERSION)") > vti.tmp @cmp -s vti.tmp $(srcdir)/version.texi \ || (echo "Updating $(srcdir)/version.texi"; \ cp vti.tmp $(srcdir)/version.texi) -@rm -f vti.tmp @cp $(srcdir)/version.texi $@ mostlyclean-vti: -rm -f vti.tmp maintainer-clean-vti: -rm -f $(srcdir)/stamp-vti $(srcdir)/version.texi .dvi.ps: TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ $(DVIPS) -o $@ $< uninstall-dvi-am: @$(NORMAL_UNINSTALL) @list='$(DVIS)'; test -n "$(dvidir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \ rm -f "$(DESTDIR)$(dvidir)/$$f"; \ done uninstall-html-am: @$(NORMAL_UNINSTALL) @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \ rm -rf "$(DESTDIR)$(htmldir)/$$f"; \ done uninstall-info-am: @$(PRE_UNINSTALL) @if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \ list='$(INFO_DEPS)'; \ for file in $$list; do \ relfile=`echo "$$file" | sed 's|^.*/||'`; \ echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \ if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \ then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \ done; \ else :; fi @$(NORMAL_UNINSTALL) @list='$(INFO_DEPS)'; \ for file in $$list; do \ relfile=`echo "$$file" | sed 's|^.*/||'`; \ relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \ (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \ echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \ rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \ else :; fi); \ done uninstall-pdf-am: @$(NORMAL_UNINSTALL) @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \ rm -f "$(DESTDIR)$(pdfdir)/$$f"; \ done uninstall-ps-am: @$(NORMAL_UNINSTALL) @list='$(PSS)'; test -n "$(psdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \ rm -f "$(DESTDIR)$(psdir)/$$f"; \ done dist-info: $(INFO_DEPS) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ list='$(INFO_DEPS)'; \ for base in $$list; do \ case $$base in \ $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \ esac; \ if test -f $$base; then d=.; else d=$(srcdir); fi; \ base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \ for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \ if test -f $$file; then \ relfile=`expr "$$file" : "$$d/\(.*\)"`; \ test -f "$(distdir)/$$relfile" || \ cp -p $$file "$(distdir)/$$relfile"; \ else :; fi; \ done; \ done mostlyclean-aminfo: -rm -rf liblouis.aux liblouis.cp liblouis.cps liblouis.fn liblouis.fns \ liblouis.ky liblouis.kys liblouis.log liblouis.opcode \ liblouis.opcodes liblouis.pg liblouis.pgs liblouis.tmp \ liblouis.toc liblouis.tp liblouis.tps liblouis.vr \ liblouis.vrs clean-aminfo: -test -z "liblouis.dvi liblouis.pdf liblouis.ps liblouis.html" \ || rm -rf liblouis.dvi liblouis.pdf liblouis.ps liblouis.html maintainer-clean-aminfo: @list='$(INFO_DEPS)'; for i in $$list; do \ i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \ echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \ rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \ done install-docDATA: $(doc_DATA) @$(NORMAL_INSTALL) @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-docDATA: @$(NORMAL_UNINSTALL) @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-info check-am: all-am check: check-am all-am: Makefile $(INFO_DEPS) $(DATA) installdirs: for dir in "$(DESTDIR)$(infodir)" "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-aminfo clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: $(DVIS) html: html-am html-am: $(HTMLS) info: info-am info-am: $(INFO_DEPS) install-data-am: install-docDATA install-info-am install-dvi: install-dvi-am install-dvi-am: $(DVIS) @$(NORMAL_INSTALL) @list='$(DVIS)'; test -n "$(dvidir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \ $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \ done install-exec-am: install-html: install-html-am install-html-am: $(HTMLS) @$(NORMAL_INSTALL) @list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \ $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \ $(am__strip_dir) \ d2=$$d$$p; \ if test -d "$$d2"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \ $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \ echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \ $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \ else \ list2="$$list2 $$d2"; \ fi; \ done; \ test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \ done; } install-info: install-info-am install-info-am: $(INFO_DEPS) @$(NORMAL_INSTALL) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \ $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \ fi; \ for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ esac; \ if test -f $$file; then d=.; else d=$(srcdir); fi; \ file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \ for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \ $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ if test -f $$ifile; then \ echo "$$ifile"; \ else : ; fi; \ done; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done @$(POST_INSTALL) @if $(am__can_run_installinfo); then \ list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \ for file in $$list; do \ relfile=`echo "$$file" | sed 's|^.*/||'`; \ echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\ install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\ done; \ else : ; fi install-man: install-pdf: install-pdf-am install-pdf-am: $(PDFS) @$(NORMAL_INSTALL) @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done install-ps: install-ps-am install-ps-am: $(PSS) @$(NORMAL_INSTALL) @list='$(PSS)'; test -n "$(psdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-aminfo \ maintainer-clean-generic maintainer-clean-vti mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-aminfo mostlyclean-generic \ mostlyclean-libtool mostlyclean-vti pdf: pdf-am pdf-am: $(PDFS) ps: ps-am ps-am: $(PSS) uninstall-am: uninstall-docDATA uninstall-dvi-am uninstall-html-am \ uninstall-info-am uninstall-pdf-am uninstall-ps-am .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-aminfo clean-generic \ clean-libtool dist-info distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-aminfo maintainer-clean-generic \ maintainer-clean-vti mostlyclean mostlyclean-aminfo \ mostlyclean-generic mostlyclean-libtool mostlyclean-vti pdf \ pdf-am ps ps-am uninstall uninstall-am uninstall-docDATA \ uninstall-dvi-am uninstall-html-am uninstall-info-am \ uninstall-pdf-am uninstall-ps-am .texi.txt: $(MAKEINFO) --plaintext $< -o $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/build-aux/0000775000175000017500000000000012161044234012235 500000000000000liblouis-2.5.3/build-aux/missing0000755000175000017500000002415212161044153013556 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2012-01-06.13; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: liblouis-2.5.3/build-aux/config.sub0000755000175000017500000010532712161044153014146 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-04-18' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ | open8 \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i386-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: liblouis-2.5.3/build-aux/mdate-sh0000755000175000017500000001371712161044153013614 00000000000000#!/bin/sh # Get modification time of a file or directory and pretty-print it. scriptversion=2010-08-21.06; # UTC # Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009, 2010 # Free Software Foundation, Inc. # written by Ulrich Drepper , June 1995 # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST fi case $1 in '') echo "$0: No file. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: mdate-sh [--help] [--version] FILE Pretty-print the modification day of FILE, in the format: 1 January 1970 Report bugs to . EOF exit $? ;; -v | --v*) echo "mdate-sh $scriptversion" exit $? ;; esac error () { echo "$0: $1" >&2 exit 1 } # Prevent date giving response in another language. LANG=C export LANG LC_ALL=C export LC_ALL LC_TIME=C export LC_TIME # GNU ls changes its time format in response to the TIME_STYLE # variable. Since we cannot assume `unset' works, revert this # variable to its documented default. if test "${TIME_STYLE+set}" = set; then TIME_STYLE=posix-long-iso export TIME_STYLE fi save_arg1=$1 # Find out how to get the extended ls output of a file or directory. if ls -L /dev/null 1>/dev/null 2>&1; then ls_command='ls -L -l -d' else ls_command='ls -l -d' fi # Avoid user/group names that might have spaces, when possible. if ls -n /dev/null 1>/dev/null 2>&1; then ls_command="$ls_command -n" fi # A `ls -l' line looks as follows on OS/2. # drwxrwx--- 0 Aug 11 2001 foo # This differs from Unix, which adds ownership information. # drwxrwx--- 2 root root 4096 Aug 11 2001 foo # # To find the date, we split the line on spaces and iterate on words # until we find a month. This cannot work with files whose owner is a # user named `Jan', or `Feb', etc. However, it's unlikely that `/' # will be owned by a user whose name is a month. So we first look at # the extended ls output of the root directory to decide how many # words should be skipped to get the date. # On HPUX /bin/sh, "set" interprets "-rw-r--r--" as options, so the "x" below. set x`$ls_command /` # Find which argument is the month. month= command= until test $month do test $# -gt 0 || error "failed parsing \`$ls_command /' output" shift # Add another shift to the command. command="$command shift;" case $1 in Jan) month=January; nummonth=1;; Feb) month=February; nummonth=2;; Mar) month=March; nummonth=3;; Apr) month=April; nummonth=4;; May) month=May; nummonth=5;; Jun) month=June; nummonth=6;; Jul) month=July; nummonth=7;; Aug) month=August; nummonth=8;; Sep) month=September; nummonth=9;; Oct) month=October; nummonth=10;; Nov) month=November; nummonth=11;; Dec) month=December; nummonth=12;; esac done test -n "$month" || error "failed parsing \`$ls_command /' output" # Get the extended ls output of the file or directory. set dummy x`eval "$ls_command \"\\\$save_arg1\""` # Remove all preceding arguments eval $command # Because of the dummy argument above, month is in $2. # # On a POSIX system, we should have # # $# = 5 # $1 = file size # $2 = month # $3 = day # $4 = year or time # $5 = filename # # On Darwin 7.7.0 and 7.6.0, we have # # $# = 4 # $1 = day # $2 = month # $3 = year or time # $4 = filename # Get the month. case $2 in Jan) month=January; nummonth=1;; Feb) month=February; nummonth=2;; Mar) month=March; nummonth=3;; Apr) month=April; nummonth=4;; May) month=May; nummonth=5;; Jun) month=June; nummonth=6;; Jul) month=July; nummonth=7;; Aug) month=August; nummonth=8;; Sep) month=September; nummonth=9;; Oct) month=October; nummonth=10;; Nov) month=November; nummonth=11;; Dec) month=December; nummonth=12;; esac case $3 in ???*) day=$1;; *) day=$3; shift;; esac # Here we have to deal with the problem that the ls output gives either # the time of day or the year. case $3 in *:*) set `date`; eval year=\$$# case $2 in Jan) nummonthtod=1;; Feb) nummonthtod=2;; Mar) nummonthtod=3;; Apr) nummonthtod=4;; May) nummonthtod=5;; Jun) nummonthtod=6;; Jul) nummonthtod=7;; Aug) nummonthtod=8;; Sep) nummonthtod=9;; Oct) nummonthtod=10;; Nov) nummonthtod=11;; Dec) nummonthtod=12;; esac # For the first six month of the year the time notation can also # be used for files modified in the last year. if (expr $nummonth \> $nummonthtod) > /dev/null; then year=`expr $year - 1` fi;; *) year=$3;; esac # The result. echo $day $month $year # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: liblouis-2.5.3/build-aux/texinfo.tex0000644000175000017500000116130512161044153014360 00000000000000% texinfo.tex -- TeX macros to handle Texinfo files. % % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % \def\texinfoversion{2012-03-11.15} % % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, % 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. % % This texinfo.tex file 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 texinfo.tex file 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, see . % % As a special exception, when this file is read by TeX when processing % a Texinfo source document, you may use the result without % restriction. (This has been our intent since Texinfo was invented.) % % Please try the latest version of texinfo.tex before submitting bug % reports; you can get the latest version from: % http://www.gnu.org/software/texinfo/ (the Texinfo home page), or % ftp://tug.org/tex/texinfo.tex % (and all CTAN mirrors, see http://www.ctan.org). % The texinfo.tex in any given distribution could well be out % of date, so if that's what you're using, please check. % % Send bug reports to bug-texinfo@gnu.org. Please include including a % complete document in each bug report with which we can reproduce the % problem. Patches are, of course, greatly appreciated. % % To process a Texinfo manual with TeX, it's most reliable to use the % texi2dvi shell script that comes with the distribution. For a simple % manual foo.texi, however, you can get away with this: % tex foo.texi % texindex foo.?? % tex foo.texi % tex foo.texi % dvips foo.dvi -o # or whatever; this makes foo.ps. % The extra TeX runs get the cross-reference information correct. % Sometimes one run after texindex suffices, and sometimes you need more % than two; texi2dvi does it as many times as necessary. % % It is possible to adapt texinfo.tex for other languages, to some % extent. You can get the existing language-specific files from the % full Texinfo distribution. % % The GNU Texinfo home page is http://www.gnu.org/software/texinfo. \message{Loading texinfo [version \texinfoversion]:} % If in a .fmt file, print the version number % and turn on active characters that we couldn't do earlier because % they might have appeared in the input file name. \everyjob{\message{[Texinfo version \texinfoversion]}% \catcode`+=\active \catcode`\_=\active} \chardef\other=12 % We never want plain's \outer definition of \+ in Texinfo. % For @tex, we can use \tabalign. \let\+ = \relax % Save some plain tex macros whose names we will redefine. \let\ptexb=\b \let\ptexbullet=\bullet \let\ptexc=\c \let\ptexcomma=\, \let\ptexdot=\. \let\ptexdots=\dots \let\ptexend=\end \let\ptexequiv=\equiv \let\ptexexclam=\! \let\ptexfootnote=\footnote \let\ptexgtr=> \let\ptexhat=^ \let\ptexi=\i \let\ptexindent=\indent \let\ptexinsert=\insert \let\ptexlbrace=\{ \let\ptexless=< \let\ptexnewwrite\newwrite \let\ptexnoindent=\noindent \let\ptexplus=+ \let\ptexraggedright=\raggedright \let\ptexrbrace=\} \let\ptexslash=\/ \let\ptexstar=\* \let\ptext=\t \let\ptextop=\top {\catcode`\'=\active \global\let\ptexquoteright'}% active in plain's math mode % If this character appears in an error message or help string, it % starts a new line in the output. \newlinechar = `^^J % Use TeX 3.0's \inputlineno to get the line number, for better error % messages, but if we're using an old version of TeX, don't do anything. % \ifx\inputlineno\thisisundefined \let\linenumber = \empty % Pre-3.0. \else \def\linenumber{l.\the\inputlineno:\space} \fi % Set up fixed words for English if not already set. \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi \ifx\putworderror\undefined \gdef\putworderror{error}\fi \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi \ifx\putwordin\undefined \gdef\putwordin{in}\fi \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi \ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi \ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi \ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\fi \ifx\putwordNoTitle\undefined \gdef\putwordNoTitle{No Title}\fi \ifx\putwordof\undefined \gdef\putwordof{of}\fi \ifx\putwordon\undefined \gdef\putwordon{on}\fi \ifx\putwordpage\undefined \gdef\putwordpage{page}\fi \ifx\putwordsection\undefined \gdef\putwordsection{section}\fi \ifx\putwordSection\undefined \gdef\putwordSection{Section}\fi \ifx\putwordsee\undefined \gdef\putwordsee{see}\fi \ifx\putwordSee\undefined \gdef\putwordSee{See}\fi \ifx\putwordShortTOC\undefined \gdef\putwordShortTOC{Short Contents}\fi \ifx\putwordTOC\undefined \gdef\putwordTOC{Table of Contents}\fi % \ifx\putwordMJan\undefined \gdef\putwordMJan{January}\fi \ifx\putwordMFeb\undefined \gdef\putwordMFeb{February}\fi \ifx\putwordMMar\undefined \gdef\putwordMMar{March}\fi \ifx\putwordMApr\undefined \gdef\putwordMApr{April}\fi \ifx\putwordMMay\undefined \gdef\putwordMMay{May}\fi \ifx\putwordMJun\undefined \gdef\putwordMJun{June}\fi \ifx\putwordMJul\undefined \gdef\putwordMJul{July}\fi \ifx\putwordMAug\undefined \gdef\putwordMAug{August}\fi \ifx\putwordMSep\undefined \gdef\putwordMSep{September}\fi \ifx\putwordMOct\undefined \gdef\putwordMOct{October}\fi \ifx\putwordMNov\undefined \gdef\putwordMNov{November}\fi \ifx\putwordMDec\undefined \gdef\putwordMDec{December}\fi % \ifx\putwordDefmac\undefined \gdef\putwordDefmac{Macro}\fi \ifx\putwordDefspec\undefined \gdef\putwordDefspec{Special Form}\fi \ifx\putwordDefvar\undefined \gdef\putwordDefvar{Variable}\fi \ifx\putwordDefopt\undefined \gdef\putwordDefopt{User Option}\fi \ifx\putwordDeffunc\undefined \gdef\putwordDeffunc{Function}\fi % Since the category of space is not known, we have to be careful. \chardef\spacecat = 10 \def\spaceisspace{\catcode`\ =\spacecat} % sometimes characters are active, so we need control sequences. \chardef\ampChar = `\& \chardef\colonChar = `\: \chardef\commaChar = `\, \chardef\dashChar = `\- \chardef\dotChar = `\. \chardef\exclamChar= `\! \chardef\hashChar = `\# \chardef\lquoteChar= `\` \chardef\questChar = `\? \chardef\rquoteChar= `\' \chardef\semiChar = `\; \chardef\slashChar = `\/ \chardef\underChar = `\_ % Ignore a token. % \def\gobble#1{} % The following is used inside several \edef's. \def\makecsname#1{\expandafter\noexpand\csname#1\endcsname} % Hyphenation fixes. \hyphenation{ Flor-i-da Ghost-script Ghost-view Mac-OS Post-Script ap-pen-dix bit-map bit-maps data-base data-bases eshell fall-ing half-way long-est man-u-script man-u-scripts mini-buf-fer mini-buf-fers over-view par-a-digm par-a-digms rath-er rec-tan-gu-lar ro-bot-ics se-vere-ly set-up spa-ces spell-ing spell-ings stand-alone strong-est time-stamp time-stamps which-ever white-space wide-spread wrap-around } % Margin to add to right of even pages, to left of odd pages. \newdimen\bindingoffset \newdimen\normaloffset \newdimen\pagewidth \newdimen\pageheight % For a final copy, take out the rectangles % that mark overfull boxes (in case you have decided % that the text looks ok even though it passes the margin). % \def\finalout{\overfullrule=0pt } % Sometimes it is convenient to have everything in the transcript file % and nothing on the terminal. We don't just call \tracingall here, % since that produces some useless output on the terminal. We also make % some effort to order the tracing commands to reduce output in the log % file; cf. trace.sty in LaTeX. % \def\gloggingall{\begingroup \globaldefs = 1 \loggingall \endgroup}% \def\loggingall{% \tracingstats2 \tracingpages1 \tracinglostchars2 % 2 gives us more in etex \tracingparagraphs1 \tracingoutput1 \tracingmacros2 \tracingrestores1 \showboxbreadth\maxdimen \showboxdepth\maxdimen \ifx\eTeXversion\thisisundefined\else % etex gives us more logging \tracingscantokens1 \tracingifs1 \tracinggroups1 \tracingnesting2 \tracingassigns1 \fi \tracingcommands3 % 3 gives us more in etex \errorcontextlines16 }% % @errormsg{MSG}. Do the index-like expansions on MSG, but if things % aren't perfect, it's not the end of the world, being an error message, % after all. % \def\errormsg{\begingroup \indexnofonts \doerrormsg} \def\doerrormsg#1{\errmessage{#1}} % add check for \lastpenalty to plain's definitions. If the last thing % we did was a \nobreak, we don't want to insert more space. % \def\smallbreak{\ifnum\lastpenalty<10000\par\ifdim\lastskip<\smallskipamount \removelastskip\penalty-50\smallskip\fi\fi} \def\medbreak{\ifnum\lastpenalty<10000\par\ifdim\lastskip<\medskipamount \removelastskip\penalty-100\medskip\fi\fi} \def\bigbreak{\ifnum\lastpenalty<10000\par\ifdim\lastskip<\bigskipamount \removelastskip\penalty-200\bigskip\fi\fi} % Do @cropmarks to get crop marks. % \newif\ifcropmarks \let\cropmarks = \cropmarkstrue % % Dimensions to add cropmarks at corners. % Added by P. A. MacKay, 12 Nov. 1986 % \newdimen\outerhsize \newdimen\outervsize % set by the paper size routines \newdimen\cornerlong \cornerlong=1pc \newdimen\cornerthick \cornerthick=.3pt \newdimen\topandbottommargin \topandbottommargin=.75in % Output a mark which sets \thischapter, \thissection and \thiscolor. % We dump everything together because we only have one kind of mark. % This works because we only use \botmark / \topmark, not \firstmark. % % A mark contains a subexpression of the \ifcase ... \fi construct. % \get*marks macros below extract the needed part using \ifcase. % % Another complication is to let the user choose whether \thischapter % (\thissection) refers to the chapter (section) in effect at the top % of a page, or that at the bottom of a page. The solution is % described on page 260 of The TeXbook. It involves outputting two % marks for the sectioning macros, one before the section break, and % one after. I won't pretend I can describe this better than DEK... \def\domark{% \toks0=\expandafter{\lastchapterdefs}% \toks2=\expandafter{\lastsectiondefs}% \toks4=\expandafter{\prevchapterdefs}% \toks6=\expandafter{\prevsectiondefs}% \toks8=\expandafter{\lastcolordefs}% \mark{% \the\toks0 \the\toks2 \noexpand\or \the\toks4 \the\toks6 \noexpand\else \the\toks8 }% } % \topmark doesn't work for the very first chapter (after the title % page or the contents), so we use \firstmark there -- this gets us % the mark with the chapter defs, unless the user sneaks in, e.g., % @setcolor (or @url, or @link, etc.) between @contents and the very % first @chapter. \def\gettopheadingmarks{% \ifcase0\topmark\fi \ifx\thischapter\empty \ifcase0\firstmark\fi \fi } \def\getbottomheadingmarks{\ifcase1\botmark\fi} \def\getcolormarks{\ifcase2\topmark\fi} % Avoid "undefined control sequence" errors. \def\lastchapterdefs{} \def\lastsectiondefs{} \def\prevchapterdefs{} \def\prevsectiondefs{} \def\lastcolordefs{} % Main output routine. \chardef\PAGE = 255 \output = {\onepageout{\pagecontents\PAGE}} \newbox\headlinebox \newbox\footlinebox % \onepageout takes a vbox as an argument. Note that \pagecontents % does insertions, but you have to call it yourself. \def\onepageout#1{% \ifcropmarks \hoffset=0pt \else \hoffset=\normaloffset \fi % \ifodd\pageno \advance\hoffset by \bindingoffset \else \advance\hoffset by -\bindingoffset\fi % % Do this outside of the \shipout so @code etc. will be expanded in % the headline as they should be, not taken literally (outputting ''code). \ifodd\pageno \getoddheadingmarks \else \getevenheadingmarks \fi \setbox\headlinebox = \vbox{\let\hsize=\pagewidth \makeheadline}% \ifodd\pageno \getoddfootingmarks \else \getevenfootingmarks \fi \setbox\footlinebox = \vbox{\let\hsize=\pagewidth \makefootline}% % {% % Have to do this stuff outside the \shipout because we want it to % take effect in \write's, yet the group defined by the \vbox ends % before the \shipout runs. % \indexdummies % don't expand commands in the output. \normalturnoffactive % \ in index entries must not stay \, e.g., if % the page break happens to be in the middle of an example. % We don't want .vr (or whatever) entries like this: % \entry{{\tt \indexbackslash }acronym}{32}{\code {\acronym}} % "\acronym" won't work when it's read back in; % it needs to be % {\code {{\tt \backslashcurfont }acronym} \shipout\vbox{% % Do this early so pdf references go to the beginning of the page. \ifpdfmakepagedest \pdfdest name{\the\pageno} xyz\fi % \ifcropmarks \vbox to \outervsize\bgroup \hsize = \outerhsize \vskip-\topandbottommargin \vtop to0pt{% \line{\ewtop\hfil\ewtop}% \nointerlineskip \line{% \vbox{\moveleft\cornerthick\nstop}% \hfill \vbox{\moveright\cornerthick\nstop}% }% \vss}% \vskip\topandbottommargin \line\bgroup \hfil % center the page within the outer (page) hsize. \ifodd\pageno\hskip\bindingoffset\fi \vbox\bgroup \fi % \unvbox\headlinebox \pagebody{#1}% \ifdim\ht\footlinebox > 0pt % Only leave this space if the footline is nonempty. % (We lessened \vsize for it in \oddfootingyyy.) % The \baselineskip=24pt in plain's \makefootline has no effect. \vskip 24pt \unvbox\footlinebox \fi % \ifcropmarks \egroup % end of \vbox\bgroup \hfil\egroup % end of (centering) \line\bgroup \vskip\topandbottommargin plus1fill minus1fill \boxmaxdepth = \cornerthick \vbox to0pt{\vss \line{% \vbox{\moveleft\cornerthick\nsbot}% \hfill \vbox{\moveright\cornerthick\nsbot}% }% \nointerlineskip \line{\ewbot\hfil\ewbot}% }% \egroup % \vbox from first cropmarks clause \fi }% end of \shipout\vbox }% end of group with \indexdummies \advancepageno \ifnum\outputpenalty>-20000 \else\dosupereject\fi } \newinsert\margin \dimen\margin=\maxdimen \def\pagebody#1{\vbox to\pageheight{\boxmaxdepth=\maxdepth #1}} {\catcode`\@ =11 \gdef\pagecontents#1{\ifvoid\topins\else\unvbox\topins\fi % marginal hacks, juha@viisa.uucp (Juha Takala) \ifvoid\margin\else % marginal info is present \rlap{\kern\hsize\vbox to\z@{\kern1pt\box\margin \vss}}\fi \dimen@=\dp#1\relax \unvbox#1\relax \ifvoid\footins\else\vskip\skip\footins\footnoterule \unvbox\footins\fi \ifr@ggedbottom \kern-\dimen@ \vfil \fi} } % Here are the rules for the cropmarks. Note that they are % offset so that the space between them is truly \outerhsize or \outervsize % (P. A. MacKay, 12 November, 1986) % \def\ewtop{\vrule height\cornerthick depth0pt width\cornerlong} \def\nstop{\vbox {\hrule height\cornerthick depth\cornerlong width\cornerthick}} \def\ewbot{\vrule height0pt depth\cornerthick width\cornerlong} \def\nsbot{\vbox {\hrule height\cornerlong depth\cornerthick width\cornerthick}} % Parse an argument, then pass it to #1. The argument is the rest of % the input line (except we remove a trailing comment). #1 should be a % macro which expects an ordinary undelimited TeX argument. % \def\parsearg{\parseargusing{}} \def\parseargusing#1#2{% \def\argtorun{#2}% \begingroup \obeylines \spaceisspace #1% \parseargline\empty% Insert the \empty token, see \finishparsearg below. } {\obeylines % \gdef\parseargline#1^^M{% \endgroup % End of the group started in \parsearg. \argremovecomment #1\comment\ArgTerm% }% } % First remove any @comment, then any @c comment. \def\argremovecomment#1\comment#2\ArgTerm{\argremovec #1\c\ArgTerm} \def\argremovec#1\c#2\ArgTerm{\argcheckspaces#1\^^M\ArgTerm} % Each occurrence of `\^^M' or `\^^M' is replaced by a single space. % % \argremovec might leave us with trailing space, e.g., % @end itemize @c foo % This space token undergoes the same procedure and is eventually removed % by \finishparsearg. % \def\argcheckspaces#1\^^M{\argcheckspacesX#1\^^M \^^M} \def\argcheckspacesX#1 \^^M{\argcheckspacesY#1\^^M} \def\argcheckspacesY#1\^^M#2\^^M#3\ArgTerm{% \def\temp{#3}% \ifx\temp\empty % Do not use \next, perhaps the caller of \parsearg uses it; reuse \temp: \let\temp\finishparsearg \else \let\temp\argcheckspaces \fi % Put the space token in: \temp#1 #3\ArgTerm } % If a _delimited_ argument is enclosed in braces, they get stripped; so % to get _exactly_ the rest of the line, we had to prevent such situation. % We prepended an \empty token at the very beginning and we expand it now, % just before passing the control to \argtorun. % (Similarly, we have to think about #3 of \argcheckspacesY above: it is % either the null string, or it ends with \^^M---thus there is no danger % that a pair of braces would be stripped. % % But first, we have to remove the trailing space token. % \def\finishparsearg#1 \ArgTerm{\expandafter\argtorun\expandafter{#1}} % \parseargdef\foo{...} % is roughly equivalent to % \def\foo{\parsearg\Xfoo} % \def\Xfoo#1{...} % % Actually, I use \csname\string\foo\endcsname, ie. \\foo, as it is my % favourite TeX trick. --kasal, 16nov03 \def\parseargdef#1{% \expandafter \doparseargdef \csname\string#1\endcsname #1% } \def\doparseargdef#1#2{% \def#2{\parsearg#1}% \def#1##1% } % Several utility definitions with active space: { \obeyspaces \gdef\obeyedspace{ } % Make each space character in the input produce a normal interword % space in the output. Don't allow a line break at this space, as this % is used only in environments like @example, where each line of input % should produce a line of output anyway. % \gdef\sepspaces{\obeyspaces\let =\tie} % If an index command is used in an @example environment, any spaces % therein should become regular spaces in the raw index file, not the % expansion of \tie (\leavevmode \penalty \@M \ ). \gdef\unsepspaces{\let =\space} } \def\flushcr{\ifx\par\lisppar \def\next##1{}\else \let\next=\relax \fi \next} % Define the framework for environments in texinfo.tex. It's used like this: % % \envdef\foo{...} % \def\Efoo{...} % % It's the responsibility of \envdef to insert \begingroup before the % actual body; @end closes the group after calling \Efoo. \envdef also % defines \thisenv, so the current environment is known; @end checks % whether the environment name matches. The \checkenv macro can also be % used to check whether the current environment is the one expected. % % Non-false conditionals (@iftex, @ifset) don't fit into this, so they % are not treated as environments; they don't open a group. (The % implementation of @end takes care not to call \endgroup in this % special case.) % At run-time, environments start with this: \def\startenvironment#1{\begingroup\def\thisenv{#1}} % initialize \let\thisenv\empty % ... but they get defined via ``\envdef\foo{...}'': \long\def\envdef#1#2{\def#1{\startenvironment#1#2}} \def\envparseargdef#1#2{\parseargdef#1{\startenvironment#1#2}} % Check whether we're in the right environment: \def\checkenv#1{% \def\temp{#1}% \ifx\thisenv\temp \else \badenverr \fi } % Environment mismatch, #1 expected: \def\badenverr{% \errhelp = \EMsimple \errmessage{This command can appear only \inenvironment\temp, not \inenvironment\thisenv}% } \def\inenvironment#1{% \ifx#1\empty outside of any environment% \else in environment \expandafter\string#1% \fi } % @end foo executes the definition of \Efoo. % But first, it executes a specialized version of \checkenv % \parseargdef\end{% \if 1\csname iscond.#1\endcsname \else % The general wording of \badenverr may not be ideal. \expandafter\checkenv\csname#1\endcsname \csname E#1\endcsname \endgroup \fi } \newhelp\EMsimple{Press RETURN to continue.} % Be sure we're in horizontal mode when doing a tie, since we make space % equivalent to this in @example-like environments. Otherwise, a space % at the beginning of a line will start with \penalty -- and % since \penalty is valid in vertical mode, we'd end up putting the % penalty on the vertical list instead of in the new paragraph. {\catcode`@ = 11 % Avoid using \@M directly, because that causes trouble % if the definition is written into an index file. \global\let\tiepenalty = \@M \gdef\tie{\leavevmode\penalty\tiepenalty\ } } % @: forces normal size whitespace following. \def\:{\spacefactor=1000 } % @* forces a line break. \def\*{\hfil\break\hbox{}\ignorespaces} % @/ allows a line break. \let\/=\allowbreak % @. is an end-of-sentence period. \def\.{.\spacefactor=\endofsentencespacefactor\space} % @! is an end-of-sentence bang. \def\!{!\spacefactor=\endofsentencespacefactor\space} % @? is an end-of-sentence query. \def\?{?\spacefactor=\endofsentencespacefactor\space} % @frenchspacing on|off says whether to put extra space after punctuation. % \def\onword{on} \def\offword{off} % \parseargdef\frenchspacing{% \def\temp{#1}% \ifx\temp\onword \plainfrenchspacing \else\ifx\temp\offword \plainnonfrenchspacing \else \errhelp = \EMsimple \errmessage{Unknown @frenchspacing option `\temp', must be on|off}% \fi\fi } % @w prevents a word break. Without the \leavevmode, @w at the % beginning of a paragraph, when TeX is still in vertical mode, would % produce a whole line of output instead of starting the paragraph. \def\w#1{\leavevmode\hbox{#1}} % @group ... @end group forces ... to be all on one page, by enclosing % it in a TeX vbox. We use \vtop instead of \vbox to construct the box % to keep its height that of a normal line. According to the rules for % \topskip (p.114 of the TeXbook), the glue inserted is % max (\topskip - \ht (first item), 0). If that height is large, % therefore, no glue is inserted, and the space between the headline and % the text is small, which looks bad. % % Another complication is that the group might be very large. This can % cause the glue on the previous page to be unduly stretched, because it % does not have much material. In this case, it's better to add an % explicit \vfill so that the extra space is at the bottom. The % threshold for doing this is if the group is more than \vfilllimit % percent of a page (\vfilllimit can be changed inside of @tex). % \newbox\groupbox \def\vfilllimit{0.7} % \envdef\group{% \ifnum\catcode`\^^M=\active \else \errhelp = \groupinvalidhelp \errmessage{@group invalid in context where filling is enabled}% \fi \startsavinginserts % \setbox\groupbox = \vtop\bgroup % Do @comment since we are called inside an environment such as % @example, where each end-of-line in the input causes an % end-of-line in the output. We don't want the end-of-line after % the `@group' to put extra space in the output. Since @group % should appear on a line by itself (according to the Texinfo % manual), we don't worry about eating any user text. \comment } % % The \vtop produces a box with normal height and large depth; thus, TeX puts % \baselineskip glue before it, and (when the next line of text is done) % \lineskip glue after it. Thus, space below is not quite equal to space % above. But it's pretty close. \def\Egroup{% % To get correct interline space between the last line of the group % and the first line afterwards, we have to propagate \prevdepth. \endgraf % Not \par, as it may have been set to \lisppar. \global\dimen1 = \prevdepth \egroup % End the \vtop. % \dimen0 is the vertical size of the group's box. \dimen0 = \ht\groupbox \advance\dimen0 by \dp\groupbox % \dimen2 is how much space is left on the page (more or less). \dimen2 = \pageheight \advance\dimen2 by -\pagetotal % if the group doesn't fit on the current page, and it's a big big % group, force a page break. \ifdim \dimen0 > \dimen2 \ifdim \pagetotal < \vfilllimit\pageheight \page \fi \fi \box\groupbox \prevdepth = \dimen1 \checkinserts } % % TeX puts in an \escapechar (i.e., `@') at the beginning of the help % message, so this ends up printing `@group can only ...'. % \newhelp\groupinvalidhelp{% group can only be used in environments such as @example,^^J% where each line of input produces a line of output.} % @need space-in-mils % forces a page break if there is not space-in-mils remaining. \newdimen\mil \mil=0.001in \parseargdef\need{% % Ensure vertical mode, so we don't make a big box in the middle of a % paragraph. \par % % If the @need value is less than one line space, it's useless. \dimen0 = #1\mil \dimen2 = \ht\strutbox \advance\dimen2 by \dp\strutbox \ifdim\dimen0 > \dimen2 % % Do a \strut just to make the height of this box be normal, so the % normal leading is inserted relative to the preceding line. % And a page break here is fine. \vtop to #1\mil{\strut\vfil}% % % TeX does not even consider page breaks if a penalty added to the % main vertical list is 10000 or more. But in order to see if the % empty box we just added fits on the page, we must make it consider % page breaks. On the other hand, we don't want to actually break the % page after the empty box. So we use a penalty of 9999. % % There is an extremely small chance that TeX will actually break the % page at this \penalty, if there are no other feasible breakpoints in % sight. (If the user is using lots of big @group commands, which % almost-but-not-quite fill up a page, TeX will have a hard time doing % good page breaking, for example.) However, I could not construct an % example where a page broke at this \penalty; if it happens in a real % document, then we can reconsider our strategy. \penalty9999 % % Back up by the size of the box, whether we did a page break or not. \kern -#1\mil % % Do not allow a page break right after this kern. \nobreak \fi } % @br forces paragraph break (and is undocumented). \let\br = \par % @page forces the start of a new page. % \def\page{\par\vfill\supereject} % @exdent text.... % outputs text on separate line in roman font, starting at standard page margin % This records the amount of indent in the innermost environment. % That's how much \exdent should take out. \newskip\exdentamount % This defn is used inside fill environments such as @defun. \parseargdef\exdent{\hfil\break\hbox{\kern -\exdentamount{\rm#1}}\hfil\break} % This defn is used inside nofill environments such as @example. \parseargdef\nofillexdent{{\advance \leftskip by -\exdentamount \leftline{\hskip\leftskip{\rm#1}}}} % @inmargin{WHICH}{TEXT} puts TEXT in the WHICH margin next to the current % paragraph. For more general purposes, use the \margin insertion % class. WHICH is `l' or `r'. Not documented, written for gawk manual. % \newskip\inmarginspacing \inmarginspacing=1cm \def\strutdepth{\dp\strutbox} % \def\doinmargin#1#2{\strut\vadjust{% \nobreak \kern-\strutdepth \vtop to \strutdepth{% \baselineskip=\strutdepth \vss % if you have multiple lines of stuff to put here, you'll need to % make the vbox yourself of the appropriate size. \ifx#1l% \llap{\ignorespaces #2\hskip\inmarginspacing}% \else \rlap{\hskip\hsize \hskip\inmarginspacing \ignorespaces #2}% \fi \null }% }} \def\inleftmargin{\doinmargin l} \def\inrightmargin{\doinmargin r} % % @inmargin{TEXT [, RIGHT-TEXT]} % (if RIGHT-TEXT is given, use TEXT for left page, RIGHT-TEXT for right; % else use TEXT for both). % \def\inmargin#1{\parseinmargin #1,,\finish} \def\parseinmargin#1,#2,#3\finish{% not perfect, but better than nothing. \setbox0 = \hbox{\ignorespaces #2}% \ifdim\wd0 > 0pt \def\lefttext{#1}% have both texts \def\righttext{#2}% \else \def\lefttext{#1}% have only one text \def\righttext{#1}% \fi % \ifodd\pageno \def\temp{\inrightmargin\righttext}% odd page -> outside is right margin \else \def\temp{\inleftmargin\lefttext}% \fi \temp } % @| inserts a changebar to the left of the current line. It should % surround any changed text. This approach does *not* work if the % change spans more than two lines of output. To handle that, we would % have adopt a much more difficult approach (putting marks into the main % vertical list for the beginning and end of each change). This command % is not documented, not supported, and doesn't work. % \def\|{% % \vadjust can only be used in horizontal mode. \leavevmode % % Append this vertical mode material after the current line in the output. \vadjust{% % We want to insert a rule with the height and depth of the current % leading; that is exactly what \strutbox is supposed to record. \vskip-\baselineskip % % \vadjust-items are inserted at the left edge of the type. So % the \llap here moves out into the left-hand margin. \llap{% % % For a thicker or thinner bar, change the `1pt'. \vrule height\baselineskip width1pt % % This is the space between the bar and the text. \hskip 12pt }% }% } % @include FILE -- \input text of FILE. % \def\include{\parseargusing\filenamecatcodes\includezzz} \def\includezzz#1{% \pushthisfilestack \def\thisfile{#1}% {% \makevalueexpandable % we want to expand any @value in FILE. \turnoffactive % and allow special characters in the expansion \indexnofonts % Allow `@@' and other weird things in file names. \wlog{texinfo.tex: doing @include of #1^^J}% \edef\temp{\noexpand\input #1 }% % % This trickery is to read FILE outside of a group, in case it makes % definitions, etc. \expandafter }\temp \popthisfilestack } \def\filenamecatcodes{% \catcode`\\=\other \catcode`~=\other \catcode`^=\other \catcode`_=\other \catcode`|=\other \catcode`<=\other \catcode`>=\other \catcode`+=\other \catcode`-=\other \catcode`\`=\other \catcode`\'=\other } \def\pushthisfilestack{% \expandafter\pushthisfilestackX\popthisfilestack\StackTerm } \def\pushthisfilestackX{% \expandafter\pushthisfilestackY\thisfile\StackTerm } \def\pushthisfilestackY #1\StackTerm #2\StackTerm {% \gdef\popthisfilestack{\gdef\thisfile{#1}\gdef\popthisfilestack{#2}}% } \def\popthisfilestack{\errthisfilestackempty} \def\errthisfilestackempty{\errmessage{Internal error: the stack of filenames is empty.}} % \def\thisfile{} % @center line % outputs that line, centered. % \parseargdef\center{% \ifhmode \let\centersub\centerH \else \let\centersub\centerV \fi \centersub{\hfil \ignorespaces#1\unskip \hfil}% \let\centersub\relax % don't let the definition persist, just in case } \def\centerH#1{{% \hfil\break \advance\hsize by -\leftskip \advance\hsize by -\rightskip \line{#1}% \break }} % \newcount\centerpenalty \def\centerV#1{% % The idea here is the same as in \startdefun, \cartouche, etc.: if % @center is the first thing after a section heading, we need to wipe % out the negative parskip inserted by \sectionheading, but still % prevent a page break here. \centerpenalty = \lastpenalty \ifnum\centerpenalty>10000 \vskip\parskip \fi \ifnum\centerpenalty>9999 \penalty\centerpenalty \fi \line{\kern\leftskip #1\kern\rightskip}% } % @sp n outputs n lines of vertical space % \parseargdef\sp{\vskip #1\baselineskip} % @comment ...line which is ignored... % @c is the same as @comment % @ignore ... @end ignore is another way to write a comment % \def\comment{\begingroup \catcode`\^^M=\other% \catcode`\@=\other \catcode`\{=\other \catcode`\}=\other% \commentxxx} {\catcode`\^^M=\other \gdef\commentxxx#1^^M{\endgroup}} % \let\c=\comment % @paragraphindent NCHARS % We'll use ems for NCHARS, close enough. % NCHARS can also be the word `asis' or `none'. % We cannot feasibly implement @paragraphindent asis, though. % \def\asisword{asis} % no translation, these are keywords \def\noneword{none} % \parseargdef\paragraphindent{% \def\temp{#1}% \ifx\temp\asisword \else \ifx\temp\noneword \defaultparindent = 0pt \else \defaultparindent = #1em \fi \fi \parindent = \defaultparindent } % @exampleindent NCHARS % We'll use ems for NCHARS like @paragraphindent. % It seems @exampleindent asis isn't necessary, but % I preserve it to make it similar to @paragraphindent. \parseargdef\exampleindent{% \def\temp{#1}% \ifx\temp\asisword \else \ifx\temp\noneword \lispnarrowing = 0pt \else \lispnarrowing = #1em \fi \fi } % @firstparagraphindent WORD % If WORD is `none', then suppress indentation of the first paragraph % after a section heading. If WORD is `insert', then do indent at such % paragraphs. % % The paragraph indentation is suppressed or not by calling % \suppressfirstparagraphindent, which the sectioning commands do. % We switch the definition of this back and forth according to WORD. % By default, we suppress indentation. % \def\suppressfirstparagraphindent{\dosuppressfirstparagraphindent} \def\insertword{insert} % \parseargdef\firstparagraphindent{% \def\temp{#1}% \ifx\temp\noneword \let\suppressfirstparagraphindent = \dosuppressfirstparagraphindent \else\ifx\temp\insertword \let\suppressfirstparagraphindent = \relax \else \errhelp = \EMsimple \errmessage{Unknown @firstparagraphindent option `\temp'}% \fi\fi } % Here is how we actually suppress indentation. Redefine \everypar to % \kern backwards by \parindent, and then reset itself to empty. % % We also make \indent itself not actually do anything until the next % paragraph. % \gdef\dosuppressfirstparagraphindent{% \gdef\indent{% \restorefirstparagraphindent \indent }% \gdef\noindent{% \restorefirstparagraphindent \noindent }% \global\everypar = {% \kern -\parindent \restorefirstparagraphindent }% } \gdef\restorefirstparagraphindent{% \global \let \indent = \ptexindent \global \let \noindent = \ptexnoindent \global \everypar = {}% } % @refill is a no-op. \let\refill=\relax % If working on a large document in chapters, it is convenient to % be able to disable indexing, cross-referencing, and contents, for test runs. % This is done with @novalidate (before @setfilename). % \newif\iflinks \linkstrue % by default we want the aux files. \let\novalidate = \linksfalse % @setfilename is done at the beginning of every texinfo file. % So open here the files we need to have open while reading the input. % This makes it possible to make a .fmt file for texinfo. \def\setfilename{% \fixbackslash % Turn off hack to swallow `\input texinfo'. \iflinks \tryauxfile % Open the new aux file. TeX will close it automatically at exit. \immediate\openout\auxfile=\jobname.aux \fi % \openindices needs to do some work in any case. \openindices \let\setfilename=\comment % Ignore extra @setfilename cmds. % % If texinfo.cnf is present on the system, read it. % Useful for site-wide @afourpaper, etc. \openin 1 texinfo.cnf \ifeof 1 \else \input texinfo.cnf \fi \closein 1 % \comment % Ignore the actual filename. } % Called from \setfilename. % \def\openindices{% \newindex{cp}% \newcodeindex{fn}% \newcodeindex{vr}% \newcodeindex{tp}% \newcodeindex{ky}% \newcodeindex{pg}% } % @bye. \outer\def\bye{\pagealignmacro\tracingstats=1\ptexend} \message{pdf,} % adobe `portable' document format \newcount\tempnum \newcount\lnkcount \newtoks\filename \newcount\filenamelength \newcount\pgn \newtoks\toksA \newtoks\toksB \newtoks\toksC \newtoks\toksD \newbox\boxA \newcount\countA \newif\ifpdf \newif\ifpdfmakepagedest % when pdftex is run in dvi mode, \pdfoutput is defined (so \pdfoutput=1 % can be set). So we test for \relax and 0 as well as being undefined. \ifx\pdfoutput\thisisundefined \else \ifx\pdfoutput\relax \else \ifcase\pdfoutput \else \pdftrue \fi \fi \fi % PDF uses PostScript string constants for the names of xref targets, % for display in the outlines, and in other places. Thus, we have to % double any backslashes. Otherwise, a name like "\node" will be % interpreted as a newline (\n), followed by o, d, e. Not good. % % See http://www.ntg.nl/pipermail/ntg-pdftex/2004-July/000654.html and % related messages. The final outcome is that it is up to the TeX user % to double the backslashes and otherwise make the string valid, so % that's what we do. pdftex 1.30.0 (ca.2005) introduced a primitive to % do this reliably, so we use it. % #1 is a control sequence in which to do the replacements, % which we \xdef. \def\txiescapepdf#1{% \ifx\pdfescapestring\relax % No primitive available; should we give a warning or log? % Many times it won't matter. \else % The expandable \pdfescapestring primitive escapes parentheses, % backslashes, and other special chars. \xdef#1{\pdfescapestring{#1}}% \fi } \newhelp\nopdfimagehelp{Texinfo supports .png, .jpg, .jpeg, and .pdf images with PDF output, and none of those formats could be found. (.eps cannot be supported due to the design of the PDF format; use regular TeX (DVI output) for that.)} \ifpdf % % Color manipulation macros based on pdfcolor.tex, % except using rgb instead of cmyk; the latter is said to render as a % very dark gray on-screen and a very dark halftone in print, instead % of actual black. \def\rgbDarkRed{0.50 0.09 0.12} \def\rgbBlack{0 0 0} % % k sets the color for filling (usual text, etc.); % K sets the color for stroking (thin rules, e.g., normal _'s). \def\pdfsetcolor#1{\pdfliteral{#1 rg #1 RG}} % % Set color, and create a mark which defines \thiscolor accordingly, % so that \makeheadline knows which color to restore. \def\setcolor#1{% \xdef\lastcolordefs{\gdef\noexpand\thiscolor{#1}}% \domark \pdfsetcolor{#1}% } % \def\maincolor{\rgbBlack} \pdfsetcolor{\maincolor} \edef\thiscolor{\maincolor} \def\lastcolordefs{} % \def\makefootline{% \baselineskip24pt \line{\pdfsetcolor{\maincolor}\the\footline}% } % \def\makeheadline{% \vbox to 0pt{% \vskip-22.5pt \line{% \vbox to8.5pt{}% % Extract \thiscolor definition from the marks. \getcolormarks % Typeset the headline with \maincolor, then restore the color. \pdfsetcolor{\maincolor}\the\headline\pdfsetcolor{\thiscolor}% }% \vss }% \nointerlineskip } % % \pdfcatalog{/PageMode /UseOutlines} % % #1 is image name, #2 width (might be empty/whitespace), #3 height (ditto). \def\dopdfimage#1#2#3{% \def\pdfimagewidth{#2}\setbox0 = \hbox{\ignorespaces #2}% \def\pdfimageheight{#3}\setbox2 = \hbox{\ignorespaces #3}% % % pdftex (and the PDF format) support .pdf, .png, .jpg (among % others). Let's try in that order, PDF first since if % someone has a scalable image, presumably better to use that than a % bitmap. \let\pdfimgext=\empty \begingroup \openin 1 #1.pdf \ifeof 1 \openin 1 #1.PDF \ifeof 1 \openin 1 #1.png \ifeof 1 \openin 1 #1.jpg \ifeof 1 \openin 1 #1.jpeg \ifeof 1 \openin 1 #1.JPG \ifeof 1 \errhelp = \nopdfimagehelp \errmessage{Could not find image file #1 for pdf}% \else \gdef\pdfimgext{JPG}% \fi \else \gdef\pdfimgext{jpeg}% \fi \else \gdef\pdfimgext{jpg}% \fi \else \gdef\pdfimgext{png}% \fi \else \gdef\pdfimgext{PDF}% \fi \else \gdef\pdfimgext{pdf}% \fi \closein 1 \endgroup % % without \immediate, ancient pdftex seg faults when the same image is % included twice. (Version 3.14159-pre-1.0-unofficial-20010704.) \ifnum\pdftexversion < 14 \immediate\pdfimage \else \immediate\pdfximage \fi \ifdim \wd0 >0pt width \pdfimagewidth \fi \ifdim \wd2 >0pt height \pdfimageheight \fi \ifnum\pdftexversion<13 #1.\pdfimgext \else {#1.\pdfimgext}% \fi \ifnum\pdftexversion < 14 \else \pdfrefximage \pdflastximage \fi} % \def\pdfmkdest#1{{% % We have to set dummies so commands such as @code, and characters % such as \, aren't expanded when present in a section title. \indexnofonts \turnoffactive \makevalueexpandable \def\pdfdestname{#1}% \txiescapepdf\pdfdestname \safewhatsit{\pdfdest name{\pdfdestname} xyz}% }} % % used to mark target names; must be expandable. \def\pdfmkpgn#1{#1} % % by default, use a color that is dark enough to print on paper as % nearly black, but still distinguishable for online viewing. \def\urlcolor{\rgbDarkRed} \def\linkcolor{\rgbDarkRed} \def\endlink{\setcolor{\maincolor}\pdfendlink} % % Adding outlines to PDF; macros for calculating structure of outlines % come from Petr Olsak \def\expnumber#1{\expandafter\ifx\csname#1\endcsname\relax 0% \else \csname#1\endcsname \fi} \def\advancenumber#1{\tempnum=\expnumber{#1}\relax \advance\tempnum by 1 \expandafter\xdef\csname#1\endcsname{\the\tempnum}} % % #1 is the section text, which is what will be displayed in the % outline by the pdf viewer. #2 is the pdf expression for the number % of subentries (or empty, for subsubsections). #3 is the node text, % which might be empty if this toc entry had no corresponding node. % #4 is the page number % \def\dopdfoutline#1#2#3#4{% % Generate a link to the node text if that exists; else, use the % page number. We could generate a destination for the section % text in the case where a section has no node, but it doesn't % seem worth the trouble, since most documents are normally structured. \edef\pdfoutlinedest{#3}% \ifx\pdfoutlinedest\empty \def\pdfoutlinedest{#4}% \else \txiescapepdf\pdfoutlinedest \fi % % Also escape PDF chars in the display string. \edef\pdfoutlinetext{#1}% \txiescapepdf\pdfoutlinetext % \pdfoutline goto name{\pdfmkpgn{\pdfoutlinedest}}#2{\pdfoutlinetext}% } % \def\pdfmakeoutlines{% \begingroup % Read toc silently, to get counts of subentries for \pdfoutline. \def\partentry##1##2##3##4{}% ignore parts in the outlines \def\numchapentry##1##2##3##4{% \def\thischapnum{##2}% \def\thissecnum{0}% \def\thissubsecnum{0}% }% \def\numsecentry##1##2##3##4{% \advancenumber{chap\thischapnum}% \def\thissecnum{##2}% \def\thissubsecnum{0}% }% \def\numsubsecentry##1##2##3##4{% \advancenumber{sec\thissecnum}% \def\thissubsecnum{##2}% }% \def\numsubsubsecentry##1##2##3##4{% \advancenumber{subsec\thissubsecnum}% }% \def\thischapnum{0}% \def\thissecnum{0}% \def\thissubsecnum{0}% % % use \def rather than \let here because we redefine \chapentry et % al. a second time, below. \def\appentry{\numchapentry}% \def\appsecentry{\numsecentry}% \def\appsubsecentry{\numsubsecentry}% \def\appsubsubsecentry{\numsubsubsecentry}% \def\unnchapentry{\numchapentry}% \def\unnsecentry{\numsecentry}% \def\unnsubsecentry{\numsubsecentry}% \def\unnsubsubsecentry{\numsubsubsecentry}% \readdatafile{toc}% % % Read toc second time, this time actually producing the outlines. % The `-' means take the \expnumber as the absolute number of % subentries, which we calculated on our first read of the .toc above. % % We use the node names as the destinations. \def\numchapentry##1##2##3##4{% \dopdfoutline{##1}{count-\expnumber{chap##2}}{##3}{##4}}% \def\numsecentry##1##2##3##4{% \dopdfoutline{##1}{count-\expnumber{sec##2}}{##3}{##4}}% \def\numsubsecentry##1##2##3##4{% \dopdfoutline{##1}{count-\expnumber{subsec##2}}{##3}{##4}}% \def\numsubsubsecentry##1##2##3##4{% count is always zero \dopdfoutline{##1}{}{##3}{##4}}% % % PDF outlines are displayed using system fonts, instead of % document fonts. Therefore we cannot use special characters, % since the encoding is unknown. For example, the eogonek from % Latin 2 (0xea) gets translated to a | character. Info from % Staszek Wawrykiewicz, 19 Jan 2004 04:09:24 +0100. % % TODO this right, we have to translate 8-bit characters to % their "best" equivalent, based on the @documentencoding. Too % much work for too little return. Just use the ASCII equivalents % we use for the index sort strings. % \indexnofonts \setupdatafile % We can have normal brace characters in the PDF outlines, unlike % Texinfo index files. So set that up. \def\{{\lbracecharliteral}% \def\}{\rbracecharliteral}% \catcode`\\=\active \otherbackslash \input \tocreadfilename \endgroup } {\catcode`[=1 \catcode`]=2 \catcode`{=\other \catcode`}=\other \gdef\lbracecharliteral[{]% \gdef\rbracecharliteral[}]% ] % \def\skipspaces#1{\def\PP{#1}\def\D{|}% \ifx\PP\D\let\nextsp\relax \else\let\nextsp\skipspaces \ifx\p\space\else\addtokens{\filename}{\PP}% \advance\filenamelength by 1 \fi \fi \nextsp} \def\getfilename#1{% \filenamelength=0 % If we don't expand the argument now, \skipspaces will get % snagged on things like "@value{foo}". \edef\temp{#1}% \expandafter\skipspaces\temp|\relax } \ifnum\pdftexversion < 14 \let \startlink \pdfannotlink \else \let \startlink \pdfstartlink \fi % make a live url in pdf output. \def\pdfurl#1{% \begingroup % it seems we really need yet another set of dummies; have not % tried to figure out what each command should do in the context % of @url. for now, just make @/ a no-op, that's the only one % people have actually reported a problem with. % \normalturnoffactive \def\@{@}% \let\/=\empty \makevalueexpandable % do we want to go so far as to use \indexnofonts instead of just % special-casing \var here? \def\var##1{##1}% % \leavevmode\setcolor{\urlcolor}% \startlink attr{/Border [0 0 0]}% user{/Subtype /Link /A << /S /URI /URI (#1) >>}% \endgroup} \def\pdfgettoks#1.{\setbox\boxA=\hbox{\toksA={#1.}\toksB={}\maketoks}} \def\addtokens#1#2{\edef\addtoks{\noexpand#1={\the#1#2}}\addtoks} \def\adn#1{\addtokens{\toksC}{#1}\global\countA=1\let\next=\maketoks} \def\poptoks#1#2|ENDTOKS|{\let\first=#1\toksD={#1}\toksA={#2}} \def\maketoks{% \expandafter\poptoks\the\toksA|ENDTOKS|\relax \ifx\first0\adn0 \else\ifx\first1\adn1 \else\ifx\first2\adn2 \else\ifx\first3\adn3 \else\ifx\first4\adn4 \else\ifx\first5\adn5 \else\ifx\first6\adn6 \else\ifx\first7\adn7 \else\ifx\first8\adn8 \else\ifx\first9\adn9 \else \ifnum0=\countA\else\makelink\fi \ifx\first.\let\next=\done\else \let\next=\maketoks \addtokens{\toksB}{\the\toksD} \ifx\first,\addtokens{\toksB}{\space}\fi \fi \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi \next} \def\makelink{\addtokens{\toksB}% {\noexpand\pdflink{\the\toksC}}\toksC={}\global\countA=0} \def\pdflink#1{% \startlink attr{/Border [0 0 0]} goto name{\pdfmkpgn{#1}} \setcolor{\linkcolor}#1\endlink} \def\done{\edef\st{\global\noexpand\toksA={\the\toksB}}\st} \else % non-pdf mode \let\pdfmkdest = \gobble \let\pdfurl = \gobble \let\endlink = \relax \let\setcolor = \gobble \let\pdfsetcolor = \gobble \let\pdfmakeoutlines = \relax \fi % \ifx\pdfoutput \message{fonts,} % Change the current font style to #1, remembering it in \curfontstyle. % For now, we do not accumulate font styles: @b{@i{foo}} prints foo in % italics, not bold italics. % \def\setfontstyle#1{% \def\curfontstyle{#1}% not as a control sequence, because we are \edef'd. \csname ten#1\endcsname % change the current font } % Select #1 fonts with the current style. % \def\selectfonts#1{\csname #1fonts\endcsname \csname\curfontstyle\endcsname} \def\rm{\fam=0 \setfontstyle{rm}} \def\it{\fam=\itfam \setfontstyle{it}} \def\sl{\fam=\slfam \setfontstyle{sl}} \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} \def\tt{\fam=\ttfam \setfontstyle{tt}} % Unfortunately, we have to override this for titles and the like, since % in those cases "rm" is bold. Sigh. \def\rmisbold{\rm\def\curfontstyle{bf}} % Texinfo sort of supports the sans serif font style, which plain TeX does not. % So we set up a \sf. \newfam\sffam \def\sf{\fam=\sffam \setfontstyle{sf}} \let\li = \sf % Sometimes we call it \li, not \sf. % We don't need math for this font style. \def\ttsl{\setfontstyle{ttsl}} % Default leading. \newdimen\textleading \textleading = 13.2pt % Set the baselineskip to #1, and the lineskip and strut size % correspondingly. There is no deep meaning behind these magic numbers % used as factors; they just match (closely enough) what Knuth defined. % \def\lineskipfactor{.08333} \def\strutheightpercent{.70833} \def\strutdepthpercent {.29167} % % can get a sort of poor man's double spacing by redefining this. \def\baselinefactor{1} % \def\setleading#1{% \dimen0 = #1\relax \normalbaselineskip = \baselinefactor\dimen0 \normallineskip = \lineskipfactor\normalbaselineskip \normalbaselines \setbox\strutbox =\hbox{% \vrule width0pt height\strutheightpercent\baselineskip depth \strutdepthpercent \baselineskip }% } % PDF CMaps. See also LaTeX's t1.cmap. % % do nothing with this by default. \expandafter\let\csname cmapOT1\endcsname\gobble \expandafter\let\csname cmapOT1IT\endcsname\gobble \expandafter\let\csname cmapOT1TT\endcsname\gobble % if we are producing pdf, and we have \pdffontattr, then define cmaps. % (\pdffontattr was introduced many years ago, but people still run % older pdftex's; it's easy to conditionalize, so we do.) \ifpdf \ifx\pdffontattr\thisisundefined \else \begingroup \catcode`\^^M=\active \def^^M{^^J}% Output line endings as the ^^J char. \catcode`\%=12 \immediate\pdfobj stream {%!PS-Adobe-3.0 Resource-CMap %%DocumentNeededResources: ProcSet (CIDInit) %%IncludeResource: ProcSet (CIDInit) %%BeginResource: CMap (TeX-OT1-0) %%Title: (TeX-OT1-0 TeX OT1 0) %%Version: 1.000 %%EndComments /CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo << /Registry (TeX) /Ordering (OT1) /Supplement 0 >> def /CMapName /TeX-OT1-0 def /CMapType 2 def 1 begincodespacerange <00> <7F> endcodespacerange 8 beginbfrange <00> <01> <0393> <09> <0A> <03A8> <23> <26> <0023> <28> <3B> <0028> <3F> <5B> <003F> <5D> <5E> <005D> <61> <7A> <0061> <7B> <7C> <2013> endbfrange 40 beginbfchar <02> <0398> <03> <039B> <04> <039E> <05> <03A0> <06> <03A3> <07> <03D2> <08> <03A6> <0B> <00660066> <0C> <00660069> <0D> <0066006C> <0E> <006600660069> <0F> <00660066006C> <10> <0131> <11> <0237> <12> <0060> <13> <00B4> <14> <02C7> <15> <02D8> <16> <00AF> <17> <02DA> <18> <00B8> <19> <00DF> <1A> <00E6> <1B> <0153> <1C> <00F8> <1D> <00C6> <1E> <0152> <1F> <00D8> <21> <0021> <22> <201D> <27> <2019> <3C> <00A1> <3D> <003D> <3E> <00BF> <5C> <201C> <5F> <02D9> <60> <2018> <7D> <02DD> <7E> <007E> <7F> <00A8> endbfchar endcmap CMapName currentdict /CMap defineresource pop end end %%EndResource %%EOF }\endgroup \expandafter\edef\csname cmapOT1\endcsname#1{% \pdffontattr#1{/ToUnicode \the\pdflastobj\space 0 R}% }% % % \cmapOT1IT \begingroup \catcode`\^^M=\active \def^^M{^^J}% Output line endings as the ^^J char. \catcode`\%=12 \immediate\pdfobj stream {%!PS-Adobe-3.0 Resource-CMap %%DocumentNeededResources: ProcSet (CIDInit) %%IncludeResource: ProcSet (CIDInit) %%BeginResource: CMap (TeX-OT1IT-0) %%Title: (TeX-OT1IT-0 TeX OT1IT 0) %%Version: 1.000 %%EndComments /CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo << /Registry (TeX) /Ordering (OT1IT) /Supplement 0 >> def /CMapName /TeX-OT1IT-0 def /CMapType 2 def 1 begincodespacerange <00> <7F> endcodespacerange 8 beginbfrange <00> <01> <0393> <09> <0A> <03A8> <25> <26> <0025> <28> <3B> <0028> <3F> <5B> <003F> <5D> <5E> <005D> <61> <7A> <0061> <7B> <7C> <2013> endbfrange 42 beginbfchar <02> <0398> <03> <039B> <04> <039E> <05> <03A0> <06> <03A3> <07> <03D2> <08> <03A6> <0B> <00660066> <0C> <00660069> <0D> <0066006C> <0E> <006600660069> <0F> <00660066006C> <10> <0131> <11> <0237> <12> <0060> <13> <00B4> <14> <02C7> <15> <02D8> <16> <00AF> <17> <02DA> <18> <00B8> <19> <00DF> <1A> <00E6> <1B> <0153> <1C> <00F8> <1D> <00C6> <1E> <0152> <1F> <00D8> <21> <0021> <22> <201D> <23> <0023> <24> <00A3> <27> <2019> <3C> <00A1> <3D> <003D> <3E> <00BF> <5C> <201C> <5F> <02D9> <60> <2018> <7D> <02DD> <7E> <007E> <7F> <00A8> endbfchar endcmap CMapName currentdict /CMap defineresource pop end end %%EndResource %%EOF }\endgroup \expandafter\edef\csname cmapOT1IT\endcsname#1{% \pdffontattr#1{/ToUnicode \the\pdflastobj\space 0 R}% }% % % \cmapOT1TT \begingroup \catcode`\^^M=\active \def^^M{^^J}% Output line endings as the ^^J char. \catcode`\%=12 \immediate\pdfobj stream {%!PS-Adobe-3.0 Resource-CMap %%DocumentNeededResources: ProcSet (CIDInit) %%IncludeResource: ProcSet (CIDInit) %%BeginResource: CMap (TeX-OT1TT-0) %%Title: (TeX-OT1TT-0 TeX OT1TT 0) %%Version: 1.000 %%EndComments /CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo << /Registry (TeX) /Ordering (OT1TT) /Supplement 0 >> def /CMapName /TeX-OT1TT-0 def /CMapType 2 def 1 begincodespacerange <00> <7F> endcodespacerange 5 beginbfrange <00> <01> <0393> <09> <0A> <03A8> <21> <26> <0021> <28> <5F> <0028> <61> <7E> <0061> endbfrange 32 beginbfchar <02> <0398> <03> <039B> <04> <039E> <05> <03A0> <06> <03A3> <07> <03D2> <08> <03A6> <0B> <2191> <0C> <2193> <0D> <0027> <0E> <00A1> <0F> <00BF> <10> <0131> <11> <0237> <12> <0060> <13> <00B4> <14> <02C7> <15> <02D8> <16> <00AF> <17> <02DA> <18> <00B8> <19> <00DF> <1A> <00E6> <1B> <0153> <1C> <00F8> <1D> <00C6> <1E> <0152> <1F> <00D8> <20> <2423> <27> <2019> <60> <2018> <7F> <00A8> endbfchar endcmap CMapName currentdict /CMap defineresource pop end end %%EndResource %%EOF }\endgroup \expandafter\edef\csname cmapOT1TT\endcsname#1{% \pdffontattr#1{/ToUnicode \the\pdflastobj\space 0 R}% }% \fi\fi % Set the font macro #1 to the font named #2, adding on the % specified font prefix (normally `cm'). % #3 is the font's design size, #4 is a scale factor, #5 is the CMap % encoding (currently only OT1, OT1IT and OT1TT are allowed, pass % empty to omit). \def\setfont#1#2#3#4#5{% \font#1=\fontprefix#2#3 scaled #4 \csname cmap#5\endcsname#1% } % This is what gets called when #5 of \setfont is empty. \let\cmap\gobble % emacs-page end of cmaps % Use cm as the default font prefix. % To specify the font prefix, you must define \fontprefix % before you read in texinfo.tex. \ifx\fontprefix\thisisundefined \def\fontprefix{cm} \fi % Support font families that don't use the same naming scheme as CM. \def\rmshape{r} \def\rmbshape{bx} %where the normal face is bold \def\bfshape{b} \def\bxshape{bx} \def\ttshape{tt} \def\ttbshape{tt} \def\ttslshape{sltt} \def\itshape{ti} \def\itbshape{bxti} \def\slshape{sl} \def\slbshape{bxsl} \def\sfshape{ss} \def\sfbshape{ss} \def\scshape{csc} \def\scbshape{csc} % Definitions for a main text size of 11pt. This is the default in % Texinfo. % \def\definetextfontsizexi{% % Text fonts (11.2pt, magstep1). \def\textnominalsize{11pt} \edef\mainmagstep{\magstephalf} \setfont\textrm\rmshape{10}{\mainmagstep}{OT1} \setfont\texttt\ttshape{10}{\mainmagstep}{OT1TT} \setfont\textbf\bfshape{10}{\mainmagstep}{OT1} \setfont\textit\itshape{10}{\mainmagstep}{OT1IT} \setfont\textsl\slshape{10}{\mainmagstep}{OT1} \setfont\textsf\sfshape{10}{\mainmagstep}{OT1} \setfont\textsc\scshape{10}{\mainmagstep}{OT1} \setfont\textttsl\ttslshape{10}{\mainmagstep}{OT1TT} \font\texti=cmmi10 scaled \mainmagstep \font\textsy=cmsy10 scaled \mainmagstep \def\textecsize{1095} % A few fonts for @defun names and args. \setfont\defbf\bfshape{10}{\magstep1}{OT1} \setfont\deftt\ttshape{10}{\magstep1}{OT1TT} \setfont\defttsl\ttslshape{10}{\magstep1}{OT1TT} \def\df{\let\tentt=\deftt \let\tenbf = \defbf \let\tenttsl=\defttsl \bf} % Fonts for indices, footnotes, small examples (9pt). \def\smallnominalsize{9pt} \setfont\smallrm\rmshape{9}{1000}{OT1} \setfont\smalltt\ttshape{9}{1000}{OT1TT} \setfont\smallbf\bfshape{10}{900}{OT1} \setfont\smallit\itshape{9}{1000}{OT1IT} \setfont\smallsl\slshape{9}{1000}{OT1} \setfont\smallsf\sfshape{9}{1000}{OT1} \setfont\smallsc\scshape{10}{900}{OT1} \setfont\smallttsl\ttslshape{10}{900}{OT1TT} \font\smalli=cmmi9 \font\smallsy=cmsy9 \def\smallecsize{0900} % Fonts for small examples (8pt). \def\smallernominalsize{8pt} \setfont\smallerrm\rmshape{8}{1000}{OT1} \setfont\smallertt\ttshape{8}{1000}{OT1TT} \setfont\smallerbf\bfshape{10}{800}{OT1} \setfont\smallerit\itshape{8}{1000}{OT1IT} \setfont\smallersl\slshape{8}{1000}{OT1} \setfont\smallersf\sfshape{8}{1000}{OT1} \setfont\smallersc\scshape{10}{800}{OT1} \setfont\smallerttsl\ttslshape{10}{800}{OT1TT} \font\smalleri=cmmi8 \font\smallersy=cmsy8 \def\smallerecsize{0800} % Fonts for title page (20.4pt): \def\titlenominalsize{20pt} \setfont\titlerm\rmbshape{12}{\magstep3}{OT1} \setfont\titleit\itbshape{10}{\magstep4}{OT1IT} \setfont\titlesl\slbshape{10}{\magstep4}{OT1} \setfont\titlett\ttbshape{12}{\magstep3}{OT1TT} \setfont\titlettsl\ttslshape{10}{\magstep4}{OT1TT} \setfont\titlesf\sfbshape{17}{\magstep1}{OT1} \let\titlebf=\titlerm \setfont\titlesc\scbshape{10}{\magstep4}{OT1} \font\titlei=cmmi12 scaled \magstep3 \font\titlesy=cmsy10 scaled \magstep4 \def\titleecsize{2074} % Chapter (and unnumbered) fonts (17.28pt). \def\chapnominalsize{17pt} \setfont\chaprm\rmbshape{12}{\magstep2}{OT1} \setfont\chapit\itbshape{10}{\magstep3}{OT1IT} \setfont\chapsl\slbshape{10}{\magstep3}{OT1} \setfont\chaptt\ttbshape{12}{\magstep2}{OT1TT} \setfont\chapttsl\ttslshape{10}{\magstep3}{OT1TT} \setfont\chapsf\sfbshape{17}{1000}{OT1} \let\chapbf=\chaprm \setfont\chapsc\scbshape{10}{\magstep3}{OT1} \font\chapi=cmmi12 scaled \magstep2 \font\chapsy=cmsy10 scaled \magstep3 \def\chapecsize{1728} % Section fonts (14.4pt). \def\secnominalsize{14pt} \setfont\secrm\rmbshape{12}{\magstep1}{OT1} \setfont\secit\itbshape{10}{\magstep2}{OT1IT} \setfont\secsl\slbshape{10}{\magstep2}{OT1} \setfont\sectt\ttbshape{12}{\magstep1}{OT1TT} \setfont\secttsl\ttslshape{10}{\magstep2}{OT1TT} \setfont\secsf\sfbshape{12}{\magstep1}{OT1} \let\secbf\secrm \setfont\secsc\scbshape{10}{\magstep2}{OT1} \font\seci=cmmi12 scaled \magstep1 \font\secsy=cmsy10 scaled \magstep2 \def\sececsize{1440} % Subsection fonts (13.15pt). \def\ssecnominalsize{13pt} \setfont\ssecrm\rmbshape{12}{\magstephalf}{OT1} \setfont\ssecit\itbshape{10}{1315}{OT1IT} \setfont\ssecsl\slbshape{10}{1315}{OT1} \setfont\ssectt\ttbshape{12}{\magstephalf}{OT1TT} \setfont\ssecttsl\ttslshape{10}{1315}{OT1TT} \setfont\ssecsf\sfbshape{12}{\magstephalf}{OT1} \let\ssecbf\ssecrm \setfont\ssecsc\scbshape{10}{1315}{OT1} \font\sseci=cmmi12 scaled \magstephalf \font\ssecsy=cmsy10 scaled 1315 \def\ssececsize{1200} % Reduced fonts for @acro in text (10pt). \def\reducednominalsize{10pt} \setfont\reducedrm\rmshape{10}{1000}{OT1} \setfont\reducedtt\ttshape{10}{1000}{OT1TT} \setfont\reducedbf\bfshape{10}{1000}{OT1} \setfont\reducedit\itshape{10}{1000}{OT1IT} \setfont\reducedsl\slshape{10}{1000}{OT1} \setfont\reducedsf\sfshape{10}{1000}{OT1} \setfont\reducedsc\scshape{10}{1000}{OT1} \setfont\reducedttsl\ttslshape{10}{1000}{OT1TT} \font\reducedi=cmmi10 \font\reducedsy=cmsy10 \def\reducedecsize{1000} \textleading = 13.2pt % line spacing for 11pt CM \textfonts % reset the current fonts \rm } % end of 11pt text font size definitions % Definitions to make the main text be 10pt Computer Modern, with % section, chapter, etc., sizes following suit. This is for the GNU % Press printing of the Emacs 22 manual. Maybe other manuals in the % future. Used with @smallbook, which sets the leading to 12pt. % \def\definetextfontsizex{% % Text fonts (10pt). \def\textnominalsize{10pt} \edef\mainmagstep{1000} \setfont\textrm\rmshape{10}{\mainmagstep}{OT1} \setfont\texttt\ttshape{10}{\mainmagstep}{OT1TT} \setfont\textbf\bfshape{10}{\mainmagstep}{OT1} \setfont\textit\itshape{10}{\mainmagstep}{OT1IT} \setfont\textsl\slshape{10}{\mainmagstep}{OT1} \setfont\textsf\sfshape{10}{\mainmagstep}{OT1} \setfont\textsc\scshape{10}{\mainmagstep}{OT1} \setfont\textttsl\ttslshape{10}{\mainmagstep}{OT1TT} \font\texti=cmmi10 scaled \mainmagstep \font\textsy=cmsy10 scaled \mainmagstep \def\textecsize{1000} % A few fonts for @defun names and args. \setfont\defbf\bfshape{10}{\magstephalf}{OT1} \setfont\deftt\ttshape{10}{\magstephalf}{OT1TT} \setfont\defttsl\ttslshape{10}{\magstephalf}{OT1TT} \def\df{\let\tentt=\deftt \let\tenbf = \defbf \let\tenttsl=\defttsl \bf} % Fonts for indices, footnotes, small examples (9pt). \def\smallnominalsize{9pt} \setfont\smallrm\rmshape{9}{1000}{OT1} \setfont\smalltt\ttshape{9}{1000}{OT1TT} \setfont\smallbf\bfshape{10}{900}{OT1} \setfont\smallit\itshape{9}{1000}{OT1IT} \setfont\smallsl\slshape{9}{1000}{OT1} \setfont\smallsf\sfshape{9}{1000}{OT1} \setfont\smallsc\scshape{10}{900}{OT1} \setfont\smallttsl\ttslshape{10}{900}{OT1TT} \font\smalli=cmmi9 \font\smallsy=cmsy9 \def\smallecsize{0900} % Fonts for small examples (8pt). \def\smallernominalsize{8pt} \setfont\smallerrm\rmshape{8}{1000}{OT1} \setfont\smallertt\ttshape{8}{1000}{OT1TT} \setfont\smallerbf\bfshape{10}{800}{OT1} \setfont\smallerit\itshape{8}{1000}{OT1IT} \setfont\smallersl\slshape{8}{1000}{OT1} \setfont\smallersf\sfshape{8}{1000}{OT1} \setfont\smallersc\scshape{10}{800}{OT1} \setfont\smallerttsl\ttslshape{10}{800}{OT1TT} \font\smalleri=cmmi8 \font\smallersy=cmsy8 \def\smallerecsize{0800} % Fonts for title page (20.4pt): \def\titlenominalsize{20pt} \setfont\titlerm\rmbshape{12}{\magstep3}{OT1} \setfont\titleit\itbshape{10}{\magstep4}{OT1IT} \setfont\titlesl\slbshape{10}{\magstep4}{OT1} \setfont\titlett\ttbshape{12}{\magstep3}{OT1TT} \setfont\titlettsl\ttslshape{10}{\magstep4}{OT1TT} \setfont\titlesf\sfbshape{17}{\magstep1}{OT1} \let\titlebf=\titlerm \setfont\titlesc\scbshape{10}{\magstep4}{OT1} \font\titlei=cmmi12 scaled \magstep3 \font\titlesy=cmsy10 scaled \magstep4 \def\titleecsize{2074} % Chapter fonts (14.4pt). \def\chapnominalsize{14pt} \setfont\chaprm\rmbshape{12}{\magstep1}{OT1} \setfont\chapit\itbshape{10}{\magstep2}{OT1IT} \setfont\chapsl\slbshape{10}{\magstep2}{OT1} \setfont\chaptt\ttbshape{12}{\magstep1}{OT1TT} \setfont\chapttsl\ttslshape{10}{\magstep2}{OT1TT} \setfont\chapsf\sfbshape{12}{\magstep1}{OT1} \let\chapbf\chaprm \setfont\chapsc\scbshape{10}{\magstep2}{OT1} \font\chapi=cmmi12 scaled \magstep1 \font\chapsy=cmsy10 scaled \magstep2 \def\chapecsize{1440} % Section fonts (12pt). \def\secnominalsize{12pt} \setfont\secrm\rmbshape{12}{1000}{OT1} \setfont\secit\itbshape{10}{\magstep1}{OT1IT} \setfont\secsl\slbshape{10}{\magstep1}{OT1} \setfont\sectt\ttbshape{12}{1000}{OT1TT} \setfont\secttsl\ttslshape{10}{\magstep1}{OT1TT} \setfont\secsf\sfbshape{12}{1000}{OT1} \let\secbf\secrm \setfont\secsc\scbshape{10}{\magstep1}{OT1} \font\seci=cmmi12 \font\secsy=cmsy10 scaled \magstep1 \def\sececsize{1200} % Subsection fonts (10pt). \def\ssecnominalsize{10pt} \setfont\ssecrm\rmbshape{10}{1000}{OT1} \setfont\ssecit\itbshape{10}{1000}{OT1IT} \setfont\ssecsl\slbshape{10}{1000}{OT1} \setfont\ssectt\ttbshape{10}{1000}{OT1TT} \setfont\ssecttsl\ttslshape{10}{1000}{OT1TT} \setfont\ssecsf\sfbshape{10}{1000}{OT1} \let\ssecbf\ssecrm \setfont\ssecsc\scbshape{10}{1000}{OT1} \font\sseci=cmmi10 \font\ssecsy=cmsy10 \def\ssececsize{1000} % Reduced fonts for @acro in text (9pt). \def\reducednominalsize{9pt} \setfont\reducedrm\rmshape{9}{1000}{OT1} \setfont\reducedtt\ttshape{9}{1000}{OT1TT} \setfont\reducedbf\bfshape{10}{900}{OT1} \setfont\reducedit\itshape{9}{1000}{OT1IT} \setfont\reducedsl\slshape{9}{1000}{OT1} \setfont\reducedsf\sfshape{9}{1000}{OT1} \setfont\reducedsc\scshape{10}{900}{OT1} \setfont\reducedttsl\ttslshape{10}{900}{OT1TT} \font\reducedi=cmmi9 \font\reducedsy=cmsy9 \def\reducedecsize{0900} \divide\parskip by 2 % reduce space between paragraphs \textleading = 12pt % line spacing for 10pt CM \textfonts % reset the current fonts \rm } % end of 10pt text font size definitions % We provide the user-level command % @fonttextsize 10 % (or 11) to redefine the text font size. pt is assumed. % \def\xiword{11} \def\xword{10} \def\xwordpt{10pt} % \parseargdef\fonttextsize{% \def\textsizearg{#1}% %\wlog{doing @fonttextsize \textsizearg}% % % Set \globaldefs so that documents can use this inside @tex, since % makeinfo 4.8 does not support it, but we need it nonetheless. % \begingroup \globaldefs=1 \ifx\textsizearg\xword \definetextfontsizex \else \ifx\textsizearg\xiword \definetextfontsizexi \else \errhelp=\EMsimple \errmessage{@fonttextsize only supports `10' or `11', not `\textsizearg'} \fi\fi \endgroup } % In order for the font changes to affect most math symbols and letters, % we have to define the \textfont of the standard families. Since % texinfo doesn't allow for producing subscripts and superscripts except % in the main text, we don't bother to reset \scriptfont and % \scriptscriptfont (which would also require loading a lot more fonts). % \def\resetmathfonts{% \textfont0=\tenrm \textfont1=\teni \textfont2=\tensy \textfont\itfam=\tenit \textfont\slfam=\tensl \textfont\bffam=\tenbf \textfont\ttfam=\tentt \textfont\sffam=\tensf } % The font-changing commands redefine the meanings of \tenSTYLE, instead % of just \STYLE. We do this because \STYLE needs to also set the % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire % \tenSTYLE to set the current font. % % Each font-changing command also sets the names \lsize (one size lower) % and \lllsize (three sizes lower). These relative commands are used in % the LaTeX logo and acronyms. % % This all needs generalizing, badly. % \def\textfonts{% \let\tenrm=\textrm \let\tenit=\textit \let\tensl=\textsl \let\tenbf=\textbf \let\tentt=\texttt \let\smallcaps=\textsc \let\tensf=\textsf \let\teni=\texti \let\tensy=\textsy \let\tenttsl=\textttsl \def\curfontsize{text}% \def\lsize{reduced}\def\lllsize{smaller}% \resetmathfonts \setleading{\textleading}} \def\titlefonts{% \let\tenrm=\titlerm \let\tenit=\titleit \let\tensl=\titlesl \let\tenbf=\titlebf \let\tentt=\titlett \let\smallcaps=\titlesc \let\tensf=\titlesf \let\teni=\titlei \let\tensy=\titlesy \let\tenttsl=\titlettsl \def\curfontsize{title}% \def\lsize{chap}\def\lllsize{subsec}% \resetmathfonts \setleading{27pt}} \def\titlefont#1{{\titlefonts\rmisbold #1}} \def\chapfonts{% \let\tenrm=\chaprm \let\tenit=\chapit \let\tensl=\chapsl \let\tenbf=\chapbf \let\tentt=\chaptt \let\smallcaps=\chapsc \let\tensf=\chapsf \let\teni=\chapi \let\tensy=\chapsy \let\tenttsl=\chapttsl \def\curfontsize{chap}% \def\lsize{sec}\def\lllsize{text}% \resetmathfonts \setleading{19pt}} \def\secfonts{% \let\tenrm=\secrm \let\tenit=\secit \let\tensl=\secsl \let\tenbf=\secbf \let\tentt=\sectt \let\smallcaps=\secsc \let\tensf=\secsf \let\teni=\seci \let\tensy=\secsy \let\tenttsl=\secttsl \def\curfontsize{sec}% \def\lsize{subsec}\def\lllsize{reduced}% \resetmathfonts \setleading{16pt}} \def\subsecfonts{% \let\tenrm=\ssecrm \let\tenit=\ssecit \let\tensl=\ssecsl \let\tenbf=\ssecbf \let\tentt=\ssectt \let\smallcaps=\ssecsc \let\tensf=\ssecsf \let\teni=\sseci \let\tensy=\ssecsy \let\tenttsl=\ssecttsl \def\curfontsize{ssec}% \def\lsize{text}\def\lllsize{small}% \resetmathfonts \setleading{15pt}} \let\subsubsecfonts = \subsecfonts \def\reducedfonts{% \let\tenrm=\reducedrm \let\tenit=\reducedit \let\tensl=\reducedsl \let\tenbf=\reducedbf \let\tentt=\reducedtt \let\reducedcaps=\reducedsc \let\tensf=\reducedsf \let\teni=\reducedi \let\tensy=\reducedsy \let\tenttsl=\reducedttsl \def\curfontsize{reduced}% \def\lsize{small}\def\lllsize{smaller}% \resetmathfonts \setleading{10.5pt}} \def\smallfonts{% \let\tenrm=\smallrm \let\tenit=\smallit \let\tensl=\smallsl \let\tenbf=\smallbf \let\tentt=\smalltt \let\smallcaps=\smallsc \let\tensf=\smallsf \let\teni=\smalli \let\tensy=\smallsy \let\tenttsl=\smallttsl \def\curfontsize{small}% \def\lsize{smaller}\def\lllsize{smaller}% \resetmathfonts \setleading{10.5pt}} \def\smallerfonts{% \let\tenrm=\smallerrm \let\tenit=\smallerit \let\tensl=\smallersl \let\tenbf=\smallerbf \let\tentt=\smallertt \let\smallcaps=\smallersc \let\tensf=\smallersf \let\teni=\smalleri \let\tensy=\smallersy \let\tenttsl=\smallerttsl \def\curfontsize{smaller}% \def\lsize{smaller}\def\lllsize{smaller}% \resetmathfonts \setleading{9.5pt}} % Fonts for short table of contents. \setfont\shortcontrm\rmshape{12}{1000}{OT1} \setfont\shortcontbf\bfshape{10}{\magstep1}{OT1} % no cmb12 \setfont\shortcontsl\slshape{12}{1000}{OT1} \setfont\shortconttt\ttshape{12}{1000}{OT1TT} % Define these just so they can be easily changed for other fonts. \def\angleleft{$\langle$} \def\angleright{$\rangle$} % Set the fonts to use with the @small... environments. \let\smallexamplefonts = \smallfonts % About \smallexamplefonts. If we use \smallfonts (9pt), @smallexample % can fit this many characters: % 8.5x11=86 smallbook=72 a4=90 a5=69 % If we use \scriptfonts (8pt), then we can fit this many characters: % 8.5x11=90+ smallbook=80 a4=90+ a5=77 % For me, subjectively, the few extra characters that fit aren't worth % the additional smallness of 8pt. So I'm making the default 9pt. % % By the way, for comparison, here's what fits with @example (10pt): % 8.5x11=71 smallbook=60 a4=75 a5=58 % --karl, 24jan03. % Set up the default fonts, so we can use them for creating boxes. % \definetextfontsizexi \message{markup,} % Check if we are currently using a typewriter font. Since all the % Computer Modern typewriter fonts have zero interword stretch (and % shrink), and it is reasonable to expect all typewriter fonts to have % this property, we can check that font parameter. % \def\ifmonospace{\ifdim\fontdimen3\font=0pt } % Markup style infrastructure. \defmarkupstylesetup\INITMACRO will % define and register \INITMACRO to be called on markup style changes. % \INITMACRO can check \currentmarkupstyle for the innermost % style and the set of \ifmarkupSTYLE switches for all styles % currently in effect. \newif\ifmarkupvar \newif\ifmarkupsamp \newif\ifmarkupkey %\newif\ifmarkupfile % @file == @samp. %\newif\ifmarkupoption % @option == @samp. \newif\ifmarkupcode \newif\ifmarkupkbd %\newif\ifmarkupenv % @env == @code. %\newif\ifmarkupcommand % @command == @code. \newif\ifmarkuptex % @tex (and part of @math, for now). \newif\ifmarkupexample \newif\ifmarkupverb \newif\ifmarkupverbatim \let\currentmarkupstyle\empty \def\setupmarkupstyle#1{% \csname markup#1true\endcsname \def\currentmarkupstyle{#1}% \markupstylesetup } \let\markupstylesetup\empty \def\defmarkupstylesetup#1{% \expandafter\def\expandafter\markupstylesetup \expandafter{\markupstylesetup #1}% \def#1% } % Markup style setup for left and right quotes. \defmarkupstylesetup\markupsetuplq{% \expandafter\let\expandafter \temp \csname markupsetuplq\currentmarkupstyle\endcsname \ifx\temp\relax \markupsetuplqdefault \else \temp \fi } \defmarkupstylesetup\markupsetuprq{% \expandafter\let\expandafter \temp \csname markupsetuprq\currentmarkupstyle\endcsname \ifx\temp\relax \markupsetuprqdefault \else \temp \fi } { \catcode`\'=\active \catcode`\`=\active \gdef\markupsetuplqdefault{\let`\lq} \gdef\markupsetuprqdefault{\let'\rq} \gdef\markupsetcodequoteleft{\let`\codequoteleft} \gdef\markupsetcodequoteright{\let'\codequoteright} \gdef\markupsetnoligaturesquoteleft{\let`\noligaturesquoteleft} } \let\markupsetuplqcode \markupsetcodequoteleft \let\markupsetuprqcode \markupsetcodequoteright % \let\markupsetuplqexample \markupsetcodequoteleft \let\markupsetuprqexample \markupsetcodequoteright % \let\markupsetuplqsamp \markupsetcodequoteleft \let\markupsetuprqsamp \markupsetcodequoteright % \let\markupsetuplqverb \markupsetcodequoteleft \let\markupsetuprqverb \markupsetcodequoteright % \let\markupsetuplqverbatim \markupsetcodequoteleft \let\markupsetuprqverbatim \markupsetcodequoteright \let\markupsetuplqkbd \markupsetnoligaturesquoteleft % Allow an option to not use regular directed right quote/apostrophe % (char 0x27), but instead the undirected quote from cmtt (char 0x0d). % The undirected quote is ugly, so don't make it the default, but it % works for pasting with more pdf viewers (at least evince), the % lilypond developers report. xpdf does work with the regular 0x27. % \def\codequoteright{% \expandafter\ifx\csname SETtxicodequoteundirected\endcsname\relax \expandafter\ifx\csname SETcodequoteundirected\endcsname\relax '% \else \char'15 \fi \else \char'15 \fi } % % and a similar option for the left quote char vs. a grave accent. % Modern fonts display ASCII 0x60 as a grave accent, so some people like % the code environments to do likewise. % \def\codequoteleft{% \expandafter\ifx\csname SETtxicodequotebacktick\endcsname\relax \expandafter\ifx\csname SETcodequotebacktick\endcsname\relax % [Knuth] pp. 380,381,391 % \relax disables Spanish ligatures ?` and !` of \tt font. \relax`% \else \char'22 \fi \else \char'22 \fi } % Commands to set the quote options. % \parseargdef\codequoteundirected{% \def\temp{#1}% \ifx\temp\onword \expandafter\let\csname SETtxicodequoteundirected\endcsname = t% \else\ifx\temp\offword \expandafter\let\csname SETtxicodequoteundirected\endcsname = \relax \else \errhelp = \EMsimple \errmessage{Unknown @codequoteundirected value `\temp', must be on|off}% \fi\fi } % \parseargdef\codequotebacktick{% \def\temp{#1}% \ifx\temp\onword \expandafter\let\csname SETtxicodequotebacktick\endcsname = t% \else\ifx\temp\offword \expandafter\let\csname SETtxicodequotebacktick\endcsname = \relax \else \errhelp = \EMsimple \errmessage{Unknown @codequotebacktick value `\temp', must be on|off}% \fi\fi } % [Knuth] pp. 380,381,391, disable Spanish ligatures ?` and !` of \tt font. \def\noligaturesquoteleft{\relax\lq} % Count depth in font-changes, for error checks \newcount\fontdepth \fontdepth=0 % Font commands. % #1 is the font command (\sl or \it), #2 is the text to slant. % If we are in a monospaced environment, however, 1) always use \ttsl, % and 2) do not add an italic correction. \def\dosmartslant#1#2{% \ifusingtt {{\ttsl #2}\let\next=\relax}% {\def\next{{#1#2}\futurelet\next\smartitaliccorrection}}% \next } \def\smartslanted{\dosmartslant\sl} \def\smartitalic{\dosmartslant\it} % Output an italic correction unless \next (presumed to be the following % character) is such as not to need one. \def\smartitaliccorrection{% \ifx\next,% \else\ifx\next-% \else\ifx\next.% \else\ptexslash \fi\fi\fi \aftersmartic } % like \smartslanted except unconditionally uses \ttsl, and no ic. % @var is set to this for defun arguments. \def\ttslanted#1{{\ttsl #1}} % @cite is like \smartslanted except unconditionally use \sl. We never want % ttsl for book titles, do we? \def\cite#1{{\sl #1}\futurelet\next\smartitaliccorrection} \def\aftersmartic{} \def\var#1{% \let\saveaftersmartic = \aftersmartic \def\aftersmartic{\null\let\aftersmartic=\saveaftersmartic}% \smartslanted{#1}% } \let\i=\smartitalic \let\slanted=\smartslanted \let\dfn=\smartslanted \let\emph=\smartitalic % Explicit font changes: @r, @sc, undocumented @ii. \def\r#1{{\rm #1}} % roman font \def\sc#1{{\smallcaps#1}} % smallcaps font \def\ii#1{{\it #1}} % italic font % @b, explicit bold. Also @strong. \def\b#1{{\bf #1}} \let\strong=\b % @sansserif, explicit sans. \def\sansserif#1{{\sf #1}} % We can't just use \exhyphenpenalty, because that only has effect at % the end of a paragraph. Restore normal hyphenation at the end of the % group within which \nohyphenation is presumably called. % \def\nohyphenation{\hyphenchar\font = -1 \aftergroup\restorehyphenation} \def\restorehyphenation{\hyphenchar\font = `- } % Set sfcode to normal for the chars that usually have another value. % Can't use plain's \frenchspacing because it uses the `\x notation, and % sometimes \x has an active definition that messes things up. % \catcode`@=11 \def\plainfrenchspacing{% \sfcode\dotChar =\@m \sfcode\questChar=\@m \sfcode\exclamChar=\@m \sfcode\colonChar=\@m \sfcode\semiChar =\@m \sfcode\commaChar =\@m \def\endofsentencespacefactor{1000}% for @. and friends } \def\plainnonfrenchspacing{% \sfcode`\.3000\sfcode`\?3000\sfcode`\!3000 \sfcode`\:2000\sfcode`\;1500\sfcode`\,1250 \def\endofsentencespacefactor{3000}% for @. and friends } \catcode`@=\other \def\endofsentencespacefactor{3000}% default % @t, explicit typewriter. \def\t#1{% {\tt \rawbackslash \plainfrenchspacing #1}% \null } % @samp. \def\samp#1{{\setupmarkupstyle{samp}\lq\tclose{#1}\rq\null}} % definition of @key that produces a lozenge. Doesn't adjust to text size. %\setfont\keyrm\rmshape{8}{1000}{OT1} %\font\keysy=cmsy9 %\def\key#1{{\keyrm\textfont2=\keysy \leavevmode\hbox{% % \raise0.4pt\hbox{\angleleft}\kern-.08em\vtop{% % \vbox{\hrule\kern-0.4pt % \hbox{\raise0.4pt\hbox{\vphantom{\angleleft}}#1}}% % \kern-0.4pt\hrule}% % \kern-.06em\raise0.4pt\hbox{\angleright}}}} % definition of @key with no lozenge. If the current font is already % monospace, don't change it; that way, we respect @kbdinputstyle. But % if it isn't monospace, then use \tt. % \def\key#1{{\setupmarkupstyle{key}% \nohyphenation \ifmonospace\else\tt\fi #1}\null} % ctrl is no longer a Texinfo command. \def\ctrl #1{{\tt \rawbackslash \hat}#1} % @file, @option are the same as @samp. \let\file=\samp \let\option=\samp % @code is a modification of @t, % which makes spaces the same size as normal in the surrounding text. \def\tclose#1{% {% % Change normal interword space to be same as for the current font. \spaceskip = \fontdimen2\font % % Switch to typewriter. \tt % % But `\ ' produces the large typewriter interword space. \def\ {{\spaceskip = 0pt{} }}% % % Turn off hyphenation. \nohyphenation % \rawbackslash \plainfrenchspacing #1% }% \null % reset spacefactor to 1000 } % We *must* turn on hyphenation at `-' and `_' in @code. % Otherwise, it is too hard to avoid overfull hboxes % in the Emacs manual, the Library manual, etc. % Unfortunately, TeX uses one parameter (\hyphenchar) to control % both hyphenation at - and hyphenation within words. % We must therefore turn them both off (\tclose does that) % and arrange explicitly to hyphenate at a dash. % -- rms. { \catcode`\-=\active \catcode`\_=\active \catcode`\'=\active \catcode`\`=\active \global\let'=\rq \global\let`=\lq % default definitions % \global\def\code{\begingroup \setupmarkupstyle{code}% % The following should really be moved into \setupmarkupstyle handlers. \catcode\dashChar=\active \catcode\underChar=\active \ifallowcodebreaks \let-\codedash \let_\codeunder \else \let-\realdash \let_\realunder \fi \codex } } \def\codex #1{\tclose{#1}\endgroup} \def\realdash{-} \def\codedash{-\discretionary{}{}{}} \def\codeunder{% % this is all so @math{@code{var_name}+1} can work. In math mode, _ % is "active" (mathcode"8000) and \normalunderscore (or \char95, etc.) % will therefore expand the active definition of _, which is us % (inside @code that is), therefore an endless loop. \ifusingtt{\ifmmode \mathchar"075F % class 0=ordinary, family 7=ttfam, pos 0x5F=_. \else\normalunderscore \fi \discretionary{}{}{}}% {\_}% } % An additional complication: the above will allow breaks after, e.g., % each of the four underscores in __typeof__. This is undesirable in % some manuals, especially if they don't have long identifiers in % general. @allowcodebreaks provides a way to control this. % \newif\ifallowcodebreaks \allowcodebreakstrue \def\keywordtrue{true} \def\keywordfalse{false} \parseargdef\allowcodebreaks{% \def\txiarg{#1}% \ifx\txiarg\keywordtrue \allowcodebreakstrue \else\ifx\txiarg\keywordfalse \allowcodebreaksfalse \else \errhelp = \EMsimple \errmessage{Unknown @allowcodebreaks option `\txiarg', must be true|false}% \fi\fi } % @uref (abbreviation for `urlref') takes an optional (comma-separated) % second argument specifying the text to display and an optional third % arg as text to display instead of (rather than in addition to) the url % itself. First (mandatory) arg is the url. % (This \urefnobreak definition isn't used now, leaving it for a while % for comparison.) \def\urefnobreak#1{\dourefnobreak #1,,,\finish} \def\dourefnobreak#1,#2,#3,#4\finish{\begingroup \unsepspaces \pdfurl{#1}% \setbox0 = \hbox{\ignorespaces #3}% \ifdim\wd0 > 0pt \unhbox0 % third arg given, show only that \else \setbox0 = \hbox{\ignorespaces #2}% \ifdim\wd0 > 0pt \ifpdf \unhbox0 % PDF: 2nd arg given, show only it \else \unhbox0\ (\code{#1})% DVI: 2nd arg given, show both it and url \fi \else \code{#1}% only url given, so show it \fi \fi \endlink \endgroup} % This \urefbreak definition is the active one. \def\urefbreak{\begingroup \urefcatcodes \dourefbreak} \let\uref=\urefbreak \def\dourefbreak#1{\urefbreakfinish #1,,,\finish} \def\urefbreakfinish#1,#2,#3,#4\finish{% doesn't work in @example \unsepspaces \pdfurl{#1}% \setbox0 = \hbox{\ignorespaces #3}% \ifdim\wd0 > 0pt \unhbox0 % third arg given, show only that \else \setbox0 = \hbox{\ignorespaces #2}% \ifdim\wd0 > 0pt \ifpdf \unhbox0 % PDF: 2nd arg given, show only it \else \unhbox0\ (\urefcode{#1})% DVI: 2nd arg given, show both it and url \fi \else \urefcode{#1}% only url given, so show it \fi \fi \endlink \endgroup} % Allow line breaks around only a few characters (only). \def\urefcatcodes{% \catcode\ampChar=\active \catcode\dotChar=\active \catcode\hashChar=\active \catcode\questChar=\active \catcode\slashChar=\active } { \urefcatcodes % \global\def\urefcode{\begingroup \setupmarkupstyle{code}% \urefcatcodes \let&\urefcodeamp \let.\urefcodedot \let#\urefcodehash \let?\urefcodequest \let/\urefcodeslash \codex } % % By default, they are just regular characters. \global\def&{\normalamp} \global\def.{\normaldot} \global\def#{\normalhash} \global\def?{\normalquest} \global\def/{\normalslash} } % we put a little stretch before and after the breakable chars, to help % line breaking of long url's. The unequal skips make look better in % cmtt at least, especially for dots. \def\urefprestretch{\urefprebreak \hskip0pt plus.13em } \def\urefpoststretch{\urefpostbreak \hskip0pt plus.1em } % \def\urefcodeamp{\urefprestretch \&\urefpoststretch} \def\urefcodedot{\urefprestretch .\urefpoststretch} \def\urefcodehash{\urefprestretch \#\urefpoststretch} \def\urefcodequest{\urefprestretch ?\urefpoststretch} \def\urefcodeslash{\futurelet\next\urefcodeslashfinish} { \catcode`\/=\active \global\def\urefcodeslashfinish{% \urefprestretch \slashChar % Allow line break only after the final / in a sequence of % slashes, to avoid line break between the slashes in http://. \ifx\next/\else \urefpoststretch \fi } } % One more complication: by default we'll break after the special % characters, but some people like to break before the special chars, so % allow that. Also allow no breaking at all, for manual control. % \parseargdef\urefbreakstyle{% \def\txiarg{#1}% \ifx\txiarg\wordnone \def\urefprebreak{\nobreak}\def\urefpostbreak{\nobreak} \else\ifx\txiarg\wordbefore \def\urefprebreak{\allowbreak}\def\urefpostbreak{\nobreak} \else\ifx\txiarg\wordafter \def\urefprebreak{\nobreak}\def\urefpostbreak{\allowbreak} \else \errhelp = \EMsimple \errmessage{Unknown @urefbreakstyle setting `\txiarg'}% \fi\fi\fi } \def\wordafter{after} \def\wordbefore{before} \def\wordnone{none} \urefbreakstyle after % @url synonym for @uref, since that's how everyone uses it. % \let\url=\uref % rms does not like angle brackets --karl, 17may97. % So now @email is just like @uref, unless we are pdf. % %\def\email#1{\angleleft{\tt #1}\angleright} \ifpdf \def\email#1{\doemail#1,,\finish} \def\doemail#1,#2,#3\finish{\begingroup \unsepspaces \pdfurl{mailto:#1}% \setbox0 = \hbox{\ignorespaces #2}% \ifdim\wd0>0pt\unhbox0\else\code{#1}\fi \endlink \endgroup} \else \let\email=\uref \fi % @kbd is like @code, except that if the argument is just one @key command, % then @kbd has no effect. \def\kbd#1{{\setupmarkupstyle{kbd}\def\look{#1}\expandafter\kbdfoo\look??\par}} % @kbdinputstyle -- arg is `distinct' (@kbd uses slanted tty font always), % `example' (@kbd uses ttsl only inside of @example and friends), % or `code' (@kbd uses normal tty font always). \parseargdef\kbdinputstyle{% \def\txiarg{#1}% \ifx\txiarg\worddistinct \gdef\kbdexamplefont{\ttsl}\gdef\kbdfont{\ttsl}% \else\ifx\txiarg\wordexample \gdef\kbdexamplefont{\ttsl}\gdef\kbdfont{\tt}% \else\ifx\txiarg\wordcode \gdef\kbdexamplefont{\tt}\gdef\kbdfont{\tt}% \else \errhelp = \EMsimple \errmessage{Unknown @kbdinputstyle setting `\txiarg'}% \fi\fi\fi } \def\worddistinct{distinct} \def\wordexample{example} \def\wordcode{code} % Default is `distinct'. \kbdinputstyle distinct \def\xkey{\key} \def\kbdfoo#1#2#3\par{\def\one{#1}\def\three{#3}\def\threex{??}% \ifx\one\xkey\ifx\threex\three \key{#2}% \else{\tclose{\kbdfont\setupmarkupstyle{kbd}\look}}\fi \else{\tclose{\kbdfont\setupmarkupstyle{kbd}\look}}\fi} % For @indicateurl, @env, @command quotes seem unnecessary, so use \code. \let\indicateurl=\code \let\env=\code \let\command=\code % @clicksequence{File @click{} Open ...} \def\clicksequence#1{\begingroup #1\endgroup} % @clickstyle @arrow (by default) \parseargdef\clickstyle{\def\click{#1}} \def\click{\arrow} % Typeset a dimension, e.g., `in' or `pt'. The only reason for the % argument is to make the input look right: @dmn{pt} instead of @dmn{}pt. % \def\dmn#1{\thinspace #1} % @l was never documented to mean ``switch to the Lisp font'', % and it is not used as such in any manual I can find. We need it for % Polish suppressed-l. --karl, 22sep96. %\def\l#1{{\li #1}\null} % @acronym for "FBI", "NATO", and the like. % We print this one point size smaller, since it's intended for % all-uppercase. % \def\acronym#1{\doacronym #1,,\finish} \def\doacronym#1,#2,#3\finish{% {\selectfonts\lsize #1}% \def\temp{#2}% \ifx\temp\empty \else \space ({\unsepspaces \ignorespaces \temp \unskip})% \fi \null % reset \spacefactor=1000 } % @abbr for "Comput. J." and the like. % No font change, but don't do end-of-sentence spacing. % \def\abbr#1{\doabbr #1,,\finish} \def\doabbr#1,#2,#3\finish{% {\plainfrenchspacing #1}% \def\temp{#2}% \ifx\temp\empty \else \space ({\unsepspaces \ignorespaces \temp \unskip})% \fi \null % reset \spacefactor=1000 } % @asis just yields its argument. Used with @table, for example. % \def\asis#1{#1} % @math outputs its argument in math mode. % % One complication: _ usually means subscripts, but it could also mean % an actual _ character, as in @math{@var{some_variable} + 1}. So make % _ active, and distinguish by seeing if the current family is \slfam, % which is what @var uses. { \catcode`\_ = \active \gdef\mathunderscore{% \catcode`\_=\active \def_{\ifnum\fam=\slfam \_\else\sb\fi}% } } % Another complication: we want \\ (and @\) to output a math (or tt) \. % FYI, plain.tex uses \\ as a temporary control sequence (for no % particular reason), but this is not advertised and we don't care. % % The \mathchar is class=0=ordinary, family=7=ttfam, position=5C=\. \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} % \def\math{% \tex \mathunderscore \let\\ = \mathbackslash \mathactive % make the texinfo accent commands work in math mode \let\"=\ddot \let\'=\acute \let\==\bar \let\^=\hat \let\`=\grave \let\u=\breve \let\v=\check \let\~=\tilde \let\dotaccent=\dot $\finishmath } \def\finishmath#1{#1$\endgroup} % Close the group opened by \tex. % Some active characters (such as <) are spaced differently in math. % We have to reset their definitions in case the @math was an argument % to a command which sets the catcodes (such as @item or @section). % { \catcode`^ = \active \catcode`< = \active \catcode`> = \active \catcode`+ = \active \catcode`' = \active \gdef\mathactive{% \let^ = \ptexhat \let< = \ptexless \let> = \ptexgtr \let+ = \ptexplus \let' = \ptexquoteright } } % @inlinefmt{FMTNAME,PROCESSED-TEXT} and @inlineraw{FMTNAME,RAW-TEXT}. % Ignore unless FMTNAME == tex; then it is like @iftex and @tex, % except specified as a normal braced arg, so no newlines to worry about. % \def\outfmtnametex{tex} % \long\def\inlinefmt#1{\doinlinefmt #1,\finish} \long\def\doinlinefmt#1,#2,\finish{% \def\inlinefmtname{#1}% \ifx\inlinefmtname\outfmtnametex \ignorespaces #2\fi } % For raw, must switch into @tex before parsing the argument, to avoid % setting catcodes prematurely. Doing it this way means that, for % example, @inlineraw{html, foo{bar} gets a parse error instead of being % ignored. But this isn't important because if people want a literal % *right* brace they would have to use a command anyway, so they may as % well use a command to get a left brace too. We could re-use the % delimiter character idea from \verb, but it seems like overkill. % \long\def\inlineraw{\tex \doinlineraw} \long\def\doinlineraw#1{\doinlinerawtwo #1,\finish} \def\doinlinerawtwo#1,#2,\finish{% \def\inlinerawname{#1}% \ifx\inlinerawname\outfmtnametex \ignorespaces #2\fi \endgroup % close group opened by \tex. } \message{glyphs,} % and logos. % @@ prints an @, as does @atchar{}. \def\@{\char64 } \let\atchar=\@ % @{ @} @lbracechar{} @rbracechar{} all generate brace characters. % Unless we're in typewriter, use \ecfont because the CM text fonts do % not have braces, and we don't want to switch into math. \def\mylbrace{{\ifmonospace\else\ecfont\fi \char123}} \def\myrbrace{{\ifmonospace\else\ecfont\fi \char125}} \let\{=\mylbrace \let\lbracechar=\{ \let\}=\myrbrace \let\rbracechar=\} \begingroup % Definitions to produce \{ and \} commands for indices, % and @{ and @} for the aux/toc files. \catcode`\{ = \other \catcode`\} = \other \catcode`\[ = 1 \catcode`\] = 2 \catcode`\! = 0 \catcode`\\ = \other !gdef!lbracecmd[\{]% !gdef!rbracecmd[\}]% !gdef!lbraceatcmd[@{]% !gdef!rbraceatcmd[@}]% !endgroup % @comma{} to avoid , parsing problems. \let\comma = , % Accents: @, @dotaccent @ringaccent @ubaraccent @udotaccent % Others are defined by plain TeX: @` @' @" @^ @~ @= @u @v @H. \let\, = \ptexc \let\dotaccent = \ptexdot \def\ringaccent#1{{\accent23 #1}} \let\tieaccent = \ptext \let\ubaraccent = \ptexb \let\udotaccent = \d % Other special characters: @questiondown @exclamdown @ordf @ordm % Plain TeX defines: @AA @AE @O @OE @L (plus lowercase versions) @ss. \def\questiondown{?`} \def\exclamdown{!`} \def\ordf{\leavevmode\raise1ex\hbox{\selectfonts\lllsize \underbar{a}}} \def\ordm{\leavevmode\raise1ex\hbox{\selectfonts\lllsize \underbar{o}}} % Dotless i and dotless j, used for accents. \def\imacro{i} \def\jmacro{j} \def\dotless#1{% \def\temp{#1}% \ifx\temp\imacro \ifmmode\imath \else\ptexi \fi \else\ifx\temp\jmacro \ifmmode\jmath \else\j \fi \else \errmessage{@dotless can be used only with i or j}% \fi\fi } % The \TeX{} logo, as in plain, but resetting the spacing so that a % period following counts as ending a sentence. (Idea found in latex.) % \edef\TeX{\TeX \spacefactor=1000 } % @LaTeX{} logo. Not quite the same results as the definition in % latex.ltx, since we use a different font for the raised A; it's most % convenient for us to use an explicitly smaller font, rather than using % the \scriptstyle font (since we don't reset \scriptstyle and % \scriptscriptstyle). % \def\LaTeX{% L\kern-.36em {\setbox0=\hbox{T}% \vbox to \ht0{\hbox{% \ifx\textnominalsize\xwordpt % for 10pt running text, \lllsize (8pt) is too small for the A in LaTeX. % Revert to plain's \scriptsize, which is 7pt. \count255=\the\fam $\fam\count255 \scriptstyle A$% \else % For 11pt, we can use our lllsize. \selectfonts\lllsize A% \fi }% \vss }}% \kern-.15em \TeX } % Some math mode symbols. \def\bullet{$\ptexbullet$} \def\geq{\ifmmode \ge\else $\ge$\fi} \def\leq{\ifmmode \le\else $\le$\fi} \def\minus{\ifmmode -\else $-$\fi} % @dots{} outputs an ellipsis using the current font. % We do .5em per period so that it has the same spacing in the cm % typewriter fonts as three actual period characters; on the other hand, % in other typewriter fonts three periods are wider than 1.5em. So do % whichever is larger. % \def\dots{% \leavevmode \setbox0=\hbox{...}% get width of three periods \ifdim\wd0 > 1.5em \dimen0 = \wd0 \else \dimen0 = 1.5em \fi \hbox to \dimen0{% \hskip 0pt plus.25fil .\hskip 0pt plus1fil .\hskip 0pt plus1fil .\hskip 0pt plus.5fil }% } % @enddots{} is an end-of-sentence ellipsis. % \def\enddots{% \dots \spacefactor=\endofsentencespacefactor } % @point{}, @result{}, @expansion{}, @print{}, @equiv{}. % % Since these characters are used in examples, they should be an even number of % \tt widths. Each \tt character is 1en, so two makes it 1em. % \def\point{$\star$} \def\arrow{\leavevmode\raise.05ex\hbox to 1em{\hfil$\rightarrow$\hfil}} \def\result{\leavevmode\raise.05ex\hbox to 1em{\hfil$\Rightarrow$\hfil}} \def\expansion{\leavevmode\hbox to 1em{\hfil$\mapsto$\hfil}} \def\print{\leavevmode\lower.1ex\hbox to 1em{\hfil$\dashv$\hfil}} \def\equiv{\leavevmode\hbox to 1em{\hfil$\ptexequiv$\hfil}} % The @error{} command. % Adapted from the TeXbook's \boxit. % \newbox\errorbox % {\tentt \global\dimen0 = 3em}% Width of the box. \dimen2 = .55pt % Thickness of rules % The text. (`r' is open on the right, `e' somewhat less so on the left.) \setbox0 = \hbox{\kern-.75pt \reducedsf \putworderror\kern-1.5pt} % \setbox\errorbox=\hbox to \dimen0{\hfil \hsize = \dimen0 \advance\hsize by -5.8pt % Space to left+right. \advance\hsize by -2\dimen2 % Rules. \vbox{% \hrule height\dimen2 \hbox{\vrule width\dimen2 \kern3pt % Space to left of text. \vtop{\kern2.4pt \box0 \kern2.4pt}% Space above/below. \kern3pt\vrule width\dimen2}% Space to right. \hrule height\dimen2} \hfil} % \def\error{\leavevmode\lower.7ex\copy\errorbox} % @pounds{} is a sterling sign, which Knuth put in the CM italic font. % \def\pounds{{\it\$}} % @euro{} comes from a separate font, depending on the current style. % We use the free feym* fonts from the eurosym package by Henrik % Theiling, which support regular, slanted, bold and bold slanted (and % "outlined" (blackboard board, sort of) versions, which we don't need). % It is available from http://www.ctan.org/tex-archive/fonts/eurosym. % % Although only regular is the truly official Euro symbol, we ignore % that. The Euro is designed to be slightly taller than the regular % font height. % % feymr - regular % feymo - slanted % feybr - bold % feybo - bold slanted % % There is no good (free) typewriter version, to my knowledge. % A feymr10 euro is ~7.3pt wide, while a normal cmtt10 char is ~5.25pt wide. % Hmm. % % Also doesn't work in math. Do we need to do math with euro symbols? % Hope not. % % \def\euro{{\eurofont e}} \def\eurofont{% % We set the font at each command, rather than predefining it in % \textfonts and the other font-switching commands, so that % installations which never need the symbol don't have to have the % font installed. % % There is only one designed size (nominal 10pt), so we always scale % that to the current nominal size. % % By the way, simply using "at 1em" works for cmr10 and the like, but % does not work for cmbx10 and other extended/shrunken fonts. % \def\eurosize{\csname\curfontsize nominalsize\endcsname}% % \ifx\curfontstyle\bfstylename % bold: \font\thiseurofont = \ifusingit{feybo10}{feybr10} at \eurosize \else % regular: \font\thiseurofont = \ifusingit{feymo10}{feymr10} at \eurosize \fi \thiseurofont } % Glyphs from the EC fonts. We don't use \let for the aliases, because % sometimes we redefine the original macro, and the alias should reflect % the redefinition. % % Use LaTeX names for the Icelandic letters. \def\DH{{\ecfont \char"D0}} % Eth \def\dh{{\ecfont \char"F0}} % eth \def\TH{{\ecfont \char"DE}} % Thorn \def\th{{\ecfont \char"FE}} % thorn % \def\guillemetleft{{\ecfont \char"13}} \def\guillemotleft{\guillemetleft} \def\guillemetright{{\ecfont \char"14}} \def\guillemotright{\guillemetright} \def\guilsinglleft{{\ecfont \char"0E}} \def\guilsinglright{{\ecfont \char"0F}} \def\quotedblbase{{\ecfont \char"12}} \def\quotesinglbase{{\ecfont \char"0D}} % % This positioning is not perfect (see the ogonek LaTeX package), but % we have the precomposed glyphs for the most common cases. We put the % tests to use those glyphs in the single \ogonek macro so we have fewer % dummy definitions to worry about for index entries, etc. % % ogonek is also used with other letters in Lithuanian (IOU), but using % the precomposed glyphs for those is not so easy since they aren't in % the same EC font. \def\ogonek#1{{% \def\temp{#1}% \ifx\temp\macrocharA\Aogonek \else\ifx\temp\macrochara\aogonek \else\ifx\temp\macrocharE\Eogonek \else\ifx\temp\macrochare\eogonek \else \ecfont \setbox0=\hbox{#1}% \ifdim\ht0=1ex\accent"0C #1% \else\ooalign{\unhbox0\crcr\hidewidth\char"0C \hidewidth}% \fi \fi\fi\fi\fi }% } \def\Aogonek{{\ecfont \char"81}}\def\macrocharA{A} \def\aogonek{{\ecfont \char"A1}}\def\macrochara{a} \def\Eogonek{{\ecfont \char"86}}\def\macrocharE{E} \def\eogonek{{\ecfont \char"A6}}\def\macrochare{e} % % Use the ec* fonts (cm-super in outline format) for non-CM glyphs. \def\ecfont{% % We can't distinguish serif/sans and italic/slanted, but this % is used for crude hacks anyway (like adding French and German % quotes to documents typeset with CM, where we lose kerning), so % hopefully nobody will notice/care. \edef\ecsize{\csname\curfontsize ecsize\endcsname}% \edef\nominalsize{\csname\curfontsize nominalsize\endcsname}% \ifx\curfontstyle\bfstylename % bold: \font\thisecfont = ecb\ifusingit{i}{x}\ecsize \space at \nominalsize \else % regular: \font\thisecfont = ec\ifusingit{ti}{rm}\ecsize \space at \nominalsize \fi \thisecfont } % @registeredsymbol - R in a circle. The font for the R should really % be smaller yet, but lllsize is the best we can do for now. % Adapted from the plain.tex definition of \copyright. % \def\registeredsymbol{% $^{{\ooalign{\hfil\raise.07ex\hbox{\selectfonts\lllsize R}% \hfil\crcr\Orb}}% }$% } % @textdegree - the normal degrees sign. % \def\textdegree{$^\circ$} % Laurent Siebenmann reports \Orb undefined with: % Textures 1.7.7 (preloaded format=plain 93.10.14) (68K) 16 APR 2004 02:38 % so we'll define it if necessary. % \ifx\Orb\thisisundefined \def\Orb{\mathhexbox20D} \fi % Quotes. \chardef\quotedblleft="5C \chardef\quotedblright=`\" \chardef\quoteleft=`\` \chardef\quoteright=`\' \message{page headings,} \newskip\titlepagetopglue \titlepagetopglue = 1.5in \newskip\titlepagebottomglue \titlepagebottomglue = 2pc % First the title page. Must do @settitle before @titlepage. \newif\ifseenauthor \newif\iffinishedtitlepage % Do an implicit @contents or @shortcontents after @end titlepage if the % user says @setcontentsaftertitlepage or @setshortcontentsaftertitlepage. % \newif\ifsetcontentsaftertitlepage \let\setcontentsaftertitlepage = \setcontentsaftertitlepagetrue \newif\ifsetshortcontentsaftertitlepage \let\setshortcontentsaftertitlepage = \setshortcontentsaftertitlepagetrue \parseargdef\shorttitlepage{% \begingroup \hbox{}\vskip 1.5in \chaprm \centerline{#1}% \endgroup\page\hbox{}\page} \envdef\titlepage{% % Open one extra group, as we want to close it in the middle of \Etitlepage. \begingroup \parindent=0pt \textfonts % Leave some space at the very top of the page. \vglue\titlepagetopglue % No rule at page bottom unless we print one at the top with @title. \finishedtitlepagetrue % % Most title ``pages'' are actually two pages long, with space % at the top of the second. We don't want the ragged left on the second. \let\oldpage = \page \def\page{% \iffinishedtitlepage\else \finishtitlepage \fi \let\page = \oldpage \page \null }% } \def\Etitlepage{% \iffinishedtitlepage\else \finishtitlepage \fi % It is important to do the page break before ending the group, % because the headline and footline are only empty inside the group. % If we use the new definition of \page, we always get a blank page % after the title page, which we certainly don't want. \oldpage \endgroup % % Need this before the \...aftertitlepage checks so that if they are % in effect the toc pages will come out with page numbers. \HEADINGSon % % If they want short, they certainly want long too. \ifsetshortcontentsaftertitlepage \shortcontents \contents \global\let\shortcontents = \relax \global\let\contents = \relax \fi % \ifsetcontentsaftertitlepage \contents \global\let\contents = \relax \global\let\shortcontents = \relax \fi } \def\finishtitlepage{% \vskip4pt \hrule height 2pt width \hsize \vskip\titlepagebottomglue \finishedtitlepagetrue } % Macros to be used within @titlepage: \let\subtitlerm=\tenrm \def\subtitlefont{\subtitlerm \normalbaselineskip = 13pt \normalbaselines} \parseargdef\title{% \checkenv\titlepage \leftline{\titlefonts\rmisbold #1} % print a rule at the page bottom also. \finishedtitlepagefalse \vskip4pt \hrule height 4pt width \hsize \vskip4pt } \parseargdef\subtitle{% \checkenv\titlepage {\subtitlefont \rightline{#1}}% } % @author should come last, but may come many times. % It can also be used inside @quotation. % \parseargdef\author{% \def\temp{\quotation}% \ifx\thisenv\temp \def\quotationauthor{#1}% printed in \Equotation. \else \checkenv\titlepage \ifseenauthor\else \vskip 0pt plus 1filll \seenauthortrue \fi {\secfonts\rmisbold \leftline{#1}}% \fi } % Set up page headings and footings. \let\thispage=\folio \newtoks\evenheadline % headline on even pages \newtoks\oddheadline % headline on odd pages \newtoks\evenfootline % footline on even pages \newtoks\oddfootline % footline on odd pages % Now make TeX use those variables \headline={{\textfonts\rm \ifodd\pageno \the\oddheadline \else \the\evenheadline \fi}} \footline={{\textfonts\rm \ifodd\pageno \the\oddfootline \else \the\evenfootline \fi}\HEADINGShook} \let\HEADINGShook=\relax % Commands to set those variables. % For example, this is what @headings on does % @evenheading @thistitle|@thispage|@thischapter % @oddheading @thischapter|@thispage|@thistitle % @evenfooting @thisfile|| % @oddfooting ||@thisfile \def\evenheading{\parsearg\evenheadingxxx} \def\evenheadingxxx #1{\evenheadingyyy #1\|\|\|\|\finish} \def\evenheadingyyy #1\|#2\|#3\|#4\finish{% \global\evenheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}} \def\oddheading{\parsearg\oddheadingxxx} \def\oddheadingxxx #1{\oddheadingyyy #1\|\|\|\|\finish} \def\oddheadingyyy #1\|#2\|#3\|#4\finish{% \global\oddheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}} \parseargdef\everyheading{\oddheadingxxx{#1}\evenheadingxxx{#1}}% \def\evenfooting{\parsearg\evenfootingxxx} \def\evenfootingxxx #1{\evenfootingyyy #1\|\|\|\|\finish} \def\evenfootingyyy #1\|#2\|#3\|#4\finish{% \global\evenfootline={\rlap{\centerline{#2}}\line{#1\hfil#3}}} \def\oddfooting{\parsearg\oddfootingxxx} \def\oddfootingxxx #1{\oddfootingyyy #1\|\|\|\|\finish} \def\oddfootingyyy #1\|#2\|#3\|#4\finish{% \global\oddfootline = {\rlap{\centerline{#2}}\line{#1\hfil#3}}% % % Leave some space for the footline. Hopefully ok to assume % @evenfooting will not be used by itself. \global\advance\pageheight by -12pt \global\advance\vsize by -12pt } \parseargdef\everyfooting{\oddfootingxxx{#1}\evenfootingxxx{#1}} % @evenheadingmarks top \thischapter <- chapter at the top of a page % @evenheadingmarks bottom \thischapter <- chapter at the bottom of a page % % The same set of arguments for: % % @oddheadingmarks % @evenfootingmarks % @oddfootingmarks % @everyheadingmarks % @everyfootingmarks \def\evenheadingmarks{\headingmarks{even}{heading}} \def\oddheadingmarks{\headingmarks{odd}{heading}} \def\evenfootingmarks{\headingmarks{even}{footing}} \def\oddfootingmarks{\headingmarks{odd}{footing}} \def\everyheadingmarks#1 {\headingmarks{even}{heading}{#1} \headingmarks{odd}{heading}{#1} } \def\everyfootingmarks#1 {\headingmarks{even}{footing}{#1} \headingmarks{odd}{footing}{#1} } % #1 = even/odd, #2 = heading/footing, #3 = top/bottom. \def\headingmarks#1#2#3 {% \expandafter\let\expandafter\temp \csname get#3headingmarks\endcsname \global\expandafter\let\csname get#1#2marks\endcsname \temp } \everyheadingmarks bottom \everyfootingmarks bottom % @headings double turns headings on for double-sided printing. % @headings single turns headings on for single-sided printing. % @headings off turns them off. % @headings on same as @headings double, retained for compatibility. % @headings after turns on double-sided headings after this page. % @headings doubleafter turns on double-sided headings after this page. % @headings singleafter turns on single-sided headings after this page. % By default, they are off at the start of a document, % and turned `on' after @end titlepage. \def\headings #1 {\csname HEADINGS#1\endcsname} \def\headingsoff{% non-global headings elimination \evenheadline={\hfil}\evenfootline={\hfil}% \oddheadline={\hfil}\oddfootline={\hfil}% } \def\HEADINGSoff{{\globaldefs=1 \headingsoff}} % global setting \HEADINGSoff % it's the default % When we turn headings on, set the page number to 1. % For double-sided printing, put current file name in lower left corner, % chapter name on inside top of right hand pages, document % title on inside top of left hand pages, and page numbers on outside top % edge of all pages. \def\HEADINGSdouble{% \global\pageno=1 \global\evenfootline={\hfil} \global\oddfootline={\hfil} \global\evenheadline={\line{\folio\hfil\thistitle}} \global\oddheadline={\line{\thischapter\hfil\folio}} \global\let\contentsalignmacro = \chapoddpage } \let\contentsalignmacro = \chappager % For single-sided printing, chapter title goes across top left of page, % page number on top right. \def\HEADINGSsingle{% \global\pageno=1 \global\evenfootline={\hfil} \global\oddfootline={\hfil} \global\evenheadline={\line{\thischapter\hfil\folio}} \global\oddheadline={\line{\thischapter\hfil\folio}} \global\let\contentsalignmacro = \chappager } \def\HEADINGSon{\HEADINGSdouble} \def\HEADINGSafter{\let\HEADINGShook=\HEADINGSdoublex} \let\HEADINGSdoubleafter=\HEADINGSafter \def\HEADINGSdoublex{% \global\evenfootline={\hfil} \global\oddfootline={\hfil} \global\evenheadline={\line{\folio\hfil\thistitle}} \global\oddheadline={\line{\thischapter\hfil\folio}} \global\let\contentsalignmacro = \chapoddpage } \def\HEADINGSsingleafter{\let\HEADINGShook=\HEADINGSsinglex} \def\HEADINGSsinglex{% \global\evenfootline={\hfil} \global\oddfootline={\hfil} \global\evenheadline={\line{\thischapter\hfil\folio}} \global\oddheadline={\line{\thischapter\hfil\folio}} \global\let\contentsalignmacro = \chappager } % Subroutines used in generating headings % This produces Day Month Year style of output. % Only define if not already defined, in case a txi-??.tex file has set % up a different format (e.g., txi-cs.tex does this). \ifx\today\thisisundefined \def\today{% \number\day\space \ifcase\month \or\putwordMJan\or\putwordMFeb\or\putwordMMar\or\putwordMApr \or\putwordMMay\or\putwordMJun\or\putwordMJul\or\putwordMAug \or\putwordMSep\or\putwordMOct\or\putwordMNov\or\putwordMDec \fi \space\number\year} \fi % @settitle line... specifies the title of the document, for headings. % It generates no output of its own. \def\thistitle{\putwordNoTitle} \def\settitle{\parsearg{\gdef\thistitle}} \message{tables,} % Tables -- @table, @ftable, @vtable, @item(x). % default indentation of table text \newdimen\tableindent \tableindent=.8in % default indentation of @itemize and @enumerate text \newdimen\itemindent \itemindent=.3in % margin between end of table item and start of table text. \newdimen\itemmargin \itemmargin=.1in % used internally for \itemindent minus \itemmargin \newdimen\itemmax % Note @table, @ftable, and @vtable define @item, @itemx, etc., with % these defs. % They also define \itemindex % to index the item name in whatever manner is desired (perhaps none). \newif\ifitemxneedsnegativevskip \def\itemxpar{\par\ifitemxneedsnegativevskip\nobreak\vskip-\parskip\nobreak\fi} \def\internalBitem{\smallbreak \parsearg\itemzzz} \def\internalBitemx{\itemxpar \parsearg\itemzzz} \def\itemzzz #1{\begingroup % \advance\hsize by -\rightskip \advance\hsize by -\tableindent \setbox0=\hbox{\itemindicate{#1}}% \itemindex{#1}% \nobreak % This prevents a break before @itemx. % % If the item text does not fit in the space we have, put it on a line % by itself, and do not allow a page break either before or after that % line. We do not start a paragraph here because then if the next % command is, e.g., @kindex, the whatsit would get put into the % horizontal list on a line by itself, resulting in extra blank space. \ifdim \wd0>\itemmax % % Make this a paragraph so we get the \parskip glue and wrapping, % but leave it ragged-right. \begingroup \advance\leftskip by-\tableindent \advance\hsize by\tableindent \advance\rightskip by0pt plus1fil\relax \leavevmode\unhbox0\par \endgroup % % We're going to be starting a paragraph, but we don't want the % \parskip glue -- logically it's part of the @item we just started. \nobreak \vskip-\parskip % % Stop a page break at the \parskip glue coming up. However, if % what follows is an environment such as @example, there will be no % \parskip glue; then the negative vskip we just inserted would % cause the example and the item to crash together. So we use this % bizarre value of 10001 as a signal to \aboveenvbreak to insert % \parskip glue after all. Section titles are handled this way also. % \penalty 10001 \endgroup \itemxneedsnegativevskipfalse \else % The item text fits into the space. Start a paragraph, so that the % following text (if any) will end up on the same line. \noindent % Do this with kerns and \unhbox so that if there is a footnote in % the item text, it can migrate to the main vertical list and % eventually be printed. \nobreak\kern-\tableindent \dimen0 = \itemmax \advance\dimen0 by \itemmargin \advance\dimen0 by -\wd0 \unhbox0 \nobreak\kern\dimen0 \endgroup \itemxneedsnegativevskiptrue \fi } \def\item{\errmessage{@item while not in a list environment}} \def\itemx{\errmessage{@itemx while not in a list environment}} % @table, @ftable, @vtable. \envdef\table{% \let\itemindex\gobble \tablecheck{table}% } \envdef\ftable{% \def\itemindex ##1{\doind {fn}{\code{##1}}}% \tablecheck{ftable}% } \envdef\vtable{% \def\itemindex ##1{\doind {vr}{\code{##1}}}% \tablecheck{vtable}% } \def\tablecheck#1{% \ifnum \the\catcode`\^^M=\active \endgroup \errmessage{This command won't work in this context; perhaps the problem is that we are \inenvironment\thisenv}% \def\next{\doignore{#1}}% \else \let\next\tablex \fi \next } \def\tablex#1{% \def\itemindicate{#1}% \parsearg\tabley } \def\tabley#1{% {% \makevalueexpandable \edef\temp{\noexpand\tablez #1\space\space\space}% \expandafter }\temp \endtablez } \def\tablez #1 #2 #3 #4\endtablez{% \aboveenvbreak \ifnum 0#1>0 \advance \leftskip by #1\mil \fi \ifnum 0#2>0 \tableindent=#2\mil \fi \ifnum 0#3>0 \advance \rightskip by #3\mil \fi \itemmax=\tableindent \advance \itemmax by -\itemmargin \advance \leftskip by \tableindent \exdentamount=\tableindent \parindent = 0pt \parskip = \smallskipamount \ifdim \parskip=0pt \parskip=2pt \fi \let\item = \internalBitem \let\itemx = \internalBitemx } \def\Etable{\endgraf\afterenvbreak} \let\Eftable\Etable \let\Evtable\Etable \let\Eitemize\Etable \let\Eenumerate\Etable % This is the counter used by @enumerate, which is really @itemize \newcount \itemno \envdef\itemize{\parsearg\doitemize} \def\doitemize#1{% \aboveenvbreak \itemmax=\itemindent \advance\itemmax by -\itemmargin \advance\leftskip by \itemindent \exdentamount=\itemindent \parindent=0pt \parskip=\smallskipamount \ifdim\parskip=0pt \parskip=2pt \fi % % Try typesetting the item mark that if the document erroneously says % something like @itemize @samp (intending @table), there's an error % right away at the @itemize. It's not the best error message in the % world, but it's better than leaving it to the @item. This means if % the user wants an empty mark, they have to say @w{} not just @w. \def\itemcontents{#1}% \setbox0 = \hbox{\itemcontents}% % % @itemize with no arg is equivalent to @itemize @bullet. \ifx\itemcontents\empty\def\itemcontents{\bullet}\fi % \let\item=\itemizeitem } % Definition of @item while inside @itemize and @enumerate. % \def\itemizeitem{% \advance\itemno by 1 % for enumerations {\let\par=\endgraf \smallbreak}% reasonable place to break {% % If the document has an @itemize directly after a section title, a % \nobreak will be last on the list, and \sectionheading will have % done a \vskip-\parskip. In that case, we don't want to zero % parskip, or the item text will crash with the heading. On the % other hand, when there is normal text preceding the item (as there % usually is), we do want to zero parskip, or there would be too much % space. In that case, we won't have a \nobreak before. At least % that's the theory. \ifnum\lastpenalty<10000 \parskip=0in \fi \noindent \hbox to 0pt{\hss \itemcontents \kern\itemmargin}% % \vadjust{\penalty 1200}}% not good to break after first line of item. \flushcr } % \splitoff TOKENS\endmark defines \first to be the first token in % TOKENS, and \rest to be the remainder. % \def\splitoff#1#2\endmark{\def\first{#1}\def\rest{#2}}% % Allow an optional argument of an uppercase letter, lowercase letter, % or number, to specify the first label in the enumerated list. No % argument is the same as `1'. % \envparseargdef\enumerate{\enumeratey #1 \endenumeratey} \def\enumeratey #1 #2\endenumeratey{% % If we were given no argument, pretend we were given `1'. \def\thearg{#1}% \ifx\thearg\empty \def\thearg{1}\fi % % Detect if the argument is a single token. If so, it might be a % letter. Otherwise, the only valid thing it can be is a number. % (We will always have one token, because of the test we just made. % This is a good thing, since \splitoff doesn't work given nothing at % all -- the first parameter is undelimited.) \expandafter\splitoff\thearg\endmark \ifx\rest\empty % Only one token in the argument. It could still be anything. % A ``lowercase letter'' is one whose \lccode is nonzero. % An ``uppercase letter'' is one whose \lccode is both nonzero, and % not equal to itself. % Otherwise, we assume it's a number. % % We need the \relax at the end of the \ifnum lines to stop TeX from % continuing to look for a . % \ifnum\lccode\expandafter`\thearg=0\relax \numericenumerate % a number (we hope) \else % It's a letter. \ifnum\lccode\expandafter`\thearg=\expandafter`\thearg\relax \lowercaseenumerate % lowercase letter \else \uppercaseenumerate % uppercase letter \fi \fi \else % Multiple tokens in the argument. We hope it's a number. \numericenumerate \fi } % An @enumerate whose labels are integers. The starting integer is % given in \thearg. % \def\numericenumerate{% \itemno = \thearg \startenumeration{\the\itemno}% } % The starting (lowercase) letter is in \thearg. \def\lowercaseenumerate{% \itemno = \expandafter`\thearg \startenumeration{% % Be sure we're not beyond the end of the alphabet. \ifnum\itemno=0 \errmessage{No more lowercase letters in @enumerate; get a bigger alphabet}% \fi \char\lccode\itemno }% } % The starting (uppercase) letter is in \thearg. \def\uppercaseenumerate{% \itemno = \expandafter`\thearg \startenumeration{% % Be sure we're not beyond the end of the alphabet. \ifnum\itemno=0 \errmessage{No more uppercase letters in @enumerate; get a bigger alphabet} \fi \char\uccode\itemno }% } % Call \doitemize, adding a period to the first argument and supplying the % common last two arguments. Also subtract one from the initial value in % \itemno, since @item increments \itemno. % \def\startenumeration#1{% \advance\itemno by -1 \doitemize{#1.}\flushcr } % @alphaenumerate and @capsenumerate are abbreviations for giving an arg % to @enumerate. % \def\alphaenumerate{\enumerate{a}} \def\capsenumerate{\enumerate{A}} \def\Ealphaenumerate{\Eenumerate} \def\Ecapsenumerate{\Eenumerate} % @multitable macros % Amy Hendrickson, 8/18/94, 3/6/96 % % @multitable ... @end multitable will make as many columns as desired. % Contents of each column will wrap at width given in preamble. Width % can be specified either with sample text given in a template line, % or in percent of \hsize, the current width of text on page. % Table can continue over pages but will only break between lines. % To make preamble: % % Either define widths of columns in terms of percent of \hsize: % @multitable @columnfractions .25 .3 .45 % @item ... % % Numbers following @columnfractions are the percent of the total % current hsize to be used for each column. You may use as many % columns as desired. % Or use a template: % @multitable {Column 1 template} {Column 2 template} {Column 3 template} % @item ... % using the widest term desired in each column. % Each new table line starts with @item, each subsequent new column % starts with @tab. Empty columns may be produced by supplying @tab's % with nothing between them for as many times as empty columns are needed, % ie, @tab@tab@tab will produce two empty columns. % @item, @tab do not need to be on their own lines, but it will not hurt % if they are. % Sample multitable: % @multitable {Column 1 template} {Column 2 template} {Column 3 template} % @item first col stuff @tab second col stuff @tab third col % @item % first col stuff % @tab % second col stuff % @tab % third col % @item first col stuff @tab second col stuff % @tab Many paragraphs of text may be used in any column. % % They will wrap at the width determined by the template. % @item@tab@tab This will be in third column. % @end multitable % Default dimensions may be reset by user. % @multitableparskip is vertical space between paragraphs in table. % @multitableparindent is paragraph indent in table. % @multitablecolmargin is horizontal space to be left between columns. % @multitablelinespace is space to leave between table items, baseline % to baseline. % 0pt means it depends on current normal line spacing. % \newskip\multitableparskip \newskip\multitableparindent \newdimen\multitablecolspace \newskip\multitablelinespace \multitableparskip=0pt \multitableparindent=6pt \multitablecolspace=12pt \multitablelinespace=0pt % Macros used to set up halign preamble: % \let\endsetuptable\relax \def\xendsetuptable{\endsetuptable} \let\columnfractions\relax \def\xcolumnfractions{\columnfractions} \newif\ifsetpercent % #1 is the @columnfraction, usually a decimal number like .5, but might % be just 1. We just use it, whatever it is. % \def\pickupwholefraction#1 {% \global\advance\colcount by 1 \expandafter\xdef\csname col\the\colcount\endcsname{#1\hsize}% \setuptable } \newcount\colcount \def\setuptable#1{% \def\firstarg{#1}% \ifx\firstarg\xendsetuptable \let\go = \relax \else \ifx\firstarg\xcolumnfractions \global\setpercenttrue \else \ifsetpercent \let\go\pickupwholefraction \else \global\advance\colcount by 1 \setbox0=\hbox{#1\unskip\space}% Add a normal word space as a % separator; typically that is always in the input, anyway. \expandafter\xdef\csname col\the\colcount\endcsname{\the\wd0}% \fi \fi \ifx\go\pickupwholefraction % Put the argument back for the \pickupwholefraction call, so % we'll always have a period there to be parsed. \def\go{\pickupwholefraction#1}% \else \let\go = \setuptable \fi% \fi \go } % multitable-only commands. % % @headitem starts a heading row, which we typeset in bold. % Assignments have to be global since we are inside the implicit group % of an alignment entry. \everycr resets \everytab so we don't have to % undo it ourselves. \def\headitemfont{\b}% for people to use in the template row; not changeable \def\headitem{% \checkenv\multitable \crcr \global\everytab={\bf}% can't use \headitemfont since the parsing differs \the\everytab % for the first item }% % % A \tab used to include \hskip1sp. But then the space in a template % line is not enough. That is bad. So let's go back to just `&' until % we again encounter the problem the 1sp was intended to solve. % --karl, nathan@acm.org, 20apr99. \def\tab{\checkenv\multitable &\the\everytab}% % @multitable ... @end multitable definitions: % \newtoks\everytab % insert after every tab. % \envdef\multitable{% \vskip\parskip \startsavinginserts % % @item within a multitable starts a normal row. % We use \def instead of \let so that if one of the multitable entries % contains an @itemize, we don't choke on the \item (seen as \crcr aka % \endtemplate) expanding \doitemize. \def\item{\crcr}% % \tolerance=9500 \hbadness=9500 \setmultitablespacing \parskip=\multitableparskip \parindent=\multitableparindent \overfullrule=0pt \global\colcount=0 % \everycr = {% \noalign{% \global\everytab={}% \global\colcount=0 % Reset the column counter. % Check for saved footnotes, etc. \checkinserts % Keeps underfull box messages off when table breaks over pages. %\filbreak % Maybe so, but it also creates really weird page breaks when the % table breaks over pages. Wouldn't \vfil be better? Wait until the % problem manifests itself, so it can be fixed for real --karl. }% }% % \parsearg\domultitable } \def\domultitable#1{% % To parse everything between @multitable and @item: \setuptable#1 \endsetuptable % % This preamble sets up a generic column definition, which will % be used as many times as user calls for columns. % \vtop will set a single line and will also let text wrap and % continue for many paragraphs if desired. \halign\bgroup &% \global\advance\colcount by 1 \multistrut \vtop{% % Use the current \colcount to find the correct column width: \hsize=\expandafter\csname col\the\colcount\endcsname % % In order to keep entries from bumping into each other % we will add a \leftskip of \multitablecolspace to all columns after % the first one. % % If a template has been used, we will add \multitablecolspace % to the width of each template entry. % % If the user has set preamble in terms of percent of \hsize we will % use that dimension as the width of the column, and the \leftskip % will keep entries from bumping into each other. Table will start at % left margin and final column will justify at right margin. % % Make sure we don't inherit \rightskip from the outer environment. \rightskip=0pt \ifnum\colcount=1 % The first column will be indented with the surrounding text. \advance\hsize by\leftskip \else \ifsetpercent \else % If user has not set preamble in terms of percent of \hsize % we will advance \hsize by \multitablecolspace. \advance\hsize by \multitablecolspace \fi % In either case we will make \leftskip=\multitablecolspace: \leftskip=\multitablecolspace \fi % Ignoring space at the beginning and end avoids an occasional spurious % blank line, when TeX decides to break the line at the space before the % box from the multistrut, so the strut ends up on a line by itself. % For example: % @multitable @columnfractions .11 .89 % @item @code{#} % @tab Legal holiday which is valid in major parts of the whole country. % Is automatically provided with highlighting sequences respectively % marking characters. \noindent\ignorespaces##\unskip\multistrut }\cr } \def\Emultitable{% \crcr \egroup % end the \halign \global\setpercentfalse } \def\setmultitablespacing{% \def\multistrut{\strut}% just use the standard line spacing % % Compute \multitablelinespace (if not defined by user) for use in % \multitableparskip calculation. We used define \multistrut based on % this, but (ironically) that caused the spacing to be off. % See bug-texinfo report from Werner Lemberg, 31 Oct 2004 12:52:20 +0100. \ifdim\multitablelinespace=0pt \setbox0=\vbox{X}\global\multitablelinespace=\the\baselineskip \global\advance\multitablelinespace by-\ht0 \fi % Test to see if parskip is larger than space between lines of % table. If not, do nothing. % If so, set to same dimension as multitablelinespace. \ifdim\multitableparskip>\multitablelinespace \global\multitableparskip=\multitablelinespace \global\advance\multitableparskip-7pt % to keep parskip somewhat smaller % than skip between lines in the table. \fi% \ifdim\multitableparskip=0pt \global\multitableparskip=\multitablelinespace \global\advance\multitableparskip-7pt % to keep parskip somewhat smaller % than skip between lines in the table. \fi} \message{conditionals,} % @iftex, @ifnotdocbook, @ifnothtml, @ifnotinfo, @ifnotplaintext, % @ifnotxml always succeed. They currently do nothing; we don't % attempt to check whether the conditionals are properly nested. But we % have to remember that they are conditionals, so that @end doesn't % attempt to close an environment group. % \def\makecond#1{% \expandafter\let\csname #1\endcsname = \relax \expandafter\let\csname iscond.#1\endcsname = 1 } \makecond{iftex} \makecond{ifnotdocbook} \makecond{ifnothtml} \makecond{ifnotinfo} \makecond{ifnotplaintext} \makecond{ifnotxml} % Ignore @ignore, @ifhtml, @ifinfo, and the like. % \def\direntry{\doignore{direntry}} \def\documentdescription{\doignore{documentdescription}} \def\docbook{\doignore{docbook}} \def\html{\doignore{html}} \def\ifdocbook{\doignore{ifdocbook}} \def\ifhtml{\doignore{ifhtml}} \def\ifinfo{\doignore{ifinfo}} \def\ifnottex{\doignore{ifnottex}} \def\ifplaintext{\doignore{ifplaintext}} \def\ifxml{\doignore{ifxml}} \def\ignore{\doignore{ignore}} \def\menu{\doignore{menu}} \def\xml{\doignore{xml}} % Ignore text until a line `@end #1', keeping track of nested conditionals. % % A count to remember the depth of nesting. \newcount\doignorecount \def\doignore#1{\begingroup % Scan in ``verbatim'' mode: \obeylines \catcode`\@ = \other \catcode`\{ = \other \catcode`\} = \other % % Make sure that spaces turn into tokens that match what \doignoretext wants. \spaceisspace % % Count number of #1's that we've seen. \doignorecount = 0 % % Swallow text until we reach the matching `@end #1'. \dodoignore{#1}% } { \catcode`_=11 % We want to use \_STOP_ which cannot appear in texinfo source. \obeylines % % \gdef\dodoignore#1{% % #1 contains the command name as a string, e.g., `ifinfo'. % % Define a command to find the next `@end #1'. \long\def\doignoretext##1^^M@end #1{% \doignoretextyyy##1^^M@#1\_STOP_}% % % And this command to find another #1 command, at the beginning of a % line. (Otherwise, we would consider a line `@c @ifset', for % example, to count as an @ifset for nesting.) \long\def\doignoretextyyy##1^^M@#1##2\_STOP_{\doignoreyyy{##2}\_STOP_}% % % And now expand that command. \doignoretext ^^M% }% } \def\doignoreyyy#1{% \def\temp{#1}% \ifx\temp\empty % Nothing found. \let\next\doignoretextzzz \else % Found a nested condition, ... \advance\doignorecount by 1 \let\next\doignoretextyyy % ..., look for another. % If we're here, #1 ends with ^^M\ifinfo (for example). \fi \next #1% the token \_STOP_ is present just after this macro. } % We have to swallow the remaining "\_STOP_". % \def\doignoretextzzz#1{% \ifnum\doignorecount = 0 % We have just found the outermost @end. \let\next\enddoignore \else % Still inside a nested condition. \advance\doignorecount by -1 \let\next\doignoretext % Look for the next @end. \fi \next } % Finish off ignored text. { \obeylines% % Ignore anything after the last `@end #1'; this matters in verbatim % environments, where otherwise the newline after an ignored conditional % would result in a blank line in the output. \gdef\enddoignore#1^^M{\endgroup\ignorespaces}% } % @set VAR sets the variable VAR to an empty value. % @set VAR REST-OF-LINE sets VAR to the value REST-OF-LINE. % % Since we want to separate VAR from REST-OF-LINE (which might be % empty), we can't just use \parsearg; we have to insert a space of our % own to delimit the rest of the line, and then take it out again if we % didn't need it. % We rely on the fact that \parsearg sets \catcode`\ =10. % \parseargdef\set{\setyyy#1 \endsetyyy} \def\setyyy#1 #2\endsetyyy{% {% \makevalueexpandable \def\temp{#2}% \edef\next{\gdef\makecsname{SET#1}}% \ifx\temp\empty \next{}% \else \setzzz#2\endsetzzz \fi }% } % Remove the trailing space \setxxx inserted. \def\setzzz#1 \endsetzzz{\next{#1}} % @clear VAR clears (i.e., unsets) the variable VAR. % \parseargdef\clear{% {% \makevalueexpandable \global\expandafter\let\csname SET#1\endcsname=\relax }% } % @value{foo} gets the text saved in variable foo. \def\value{\begingroup\makevalueexpandable\valuexxx} \def\valuexxx#1{\expandablevalue{#1}\endgroup} { \catcode`\- = \active \catcode`\_ = \active % \gdef\makevalueexpandable{% \let\value = \expandablevalue % We don't want these characters active, ... \catcode`\-=\other \catcode`\_=\other % ..., but we might end up with active ones in the argument if % we're called from @code, as @code{@value{foo-bar_}}, though. % So \let them to their normal equivalents. \let-\realdash \let_\normalunderscore } } % We have this subroutine so that we can handle at least some @value's % properly in indexes (we call \makevalueexpandable in \indexdummies). % The command has to be fully expandable (if the variable is set), since % the result winds up in the index file. This means that if the % variable's value contains other Texinfo commands, it's almost certain % it will fail (although perhaps we could fix that with sufficient work % to do a one-level expansion on the result, instead of complete). % \def\expandablevalue#1{% \expandafter\ifx\csname SET#1\endcsname\relax {[No value for ``#1'']}% \message{Variable `#1', used in @value, is not set.}% \else \csname SET#1\endcsname \fi } % @ifset VAR ... @end ifset reads the `...' iff VAR has been defined % with @set. % % To get special treatment of `@end ifset,' call \makeond and the redefine. % \makecond{ifset} \def\ifset{\parsearg{\doifset{\let\next=\ifsetfail}}} \def\doifset#1#2{% {% \makevalueexpandable \let\next=\empty \expandafter\ifx\csname SET#2\endcsname\relax #1% If not set, redefine \next. \fi \expandafter }\next } \def\ifsetfail{\doignore{ifset}} % @ifclear VAR ... @end ifclear reads the `...' iff VAR has never been % defined with @set, or has been undefined with @clear. % % The `\else' inside the `\doifset' parameter is a trick to reuse the % above code: if the variable is not set, do nothing, if it is set, % then redefine \next to \ifclearfail. % \makecond{ifclear} \def\ifclear{\parsearg{\doifset{\else \let\next=\ifclearfail}}} \def\ifclearfail{\doignore{ifclear}} % @dircategory CATEGORY -- specify a category of the dir file % which this file should belong to. Ignore this in TeX. \let\dircategory=\comment % @defininfoenclose. \let\definfoenclose=\comment \message{indexing,} % Index generation facilities % Define \newwrite to be identical to plain tex's \newwrite % except not \outer, so it can be used within macros and \if's. \edef\newwrite{\makecsname{ptexnewwrite}} % \newindex {foo} defines an index named foo. % It automatically defines \fooindex such that % \fooindex ...rest of line... puts an entry in the index foo. % It also defines \fooindfile to be the number of the output channel for % the file that accumulates this index. The file's extension is foo. % The name of an index should be no more than 2 characters long % for the sake of vms. % \def\newindex#1{% \iflinks \expandafter\newwrite \csname#1indfile\endcsname \openout \csname#1indfile\endcsname \jobname.#1 % Open the file \fi \expandafter\xdef\csname#1index\endcsname{% % Define @#1index \noexpand\doindex{#1}} } % @defindex foo == \newindex{foo} % \def\defindex{\parsearg\newindex} % Define @defcodeindex, like @defindex except put all entries in @code. % \def\defcodeindex{\parsearg\newcodeindex} % \def\newcodeindex#1{% \iflinks \expandafter\newwrite \csname#1indfile\endcsname \openout \csname#1indfile\endcsname \jobname.#1 \fi \expandafter\xdef\csname#1index\endcsname{% \noexpand\docodeindex{#1}}% } % @synindex foo bar makes index foo feed into index bar. % Do this instead of @defindex foo if you don't want it as a separate index. % % @syncodeindex foo bar similar, but put all entries made for index foo % inside @code. % \def\synindex#1 #2 {\dosynindex\doindex{#1}{#2}} \def\syncodeindex#1 #2 {\dosynindex\docodeindex{#1}{#2}} % #1 is \doindex or \docodeindex, #2 the index getting redefined (foo), % #3 the target index (bar). \def\dosynindex#1#2#3{% % Only do \closeout if we haven't already done it, else we'll end up % closing the target index. \expandafter \ifx\csname donesynindex#2\endcsname \relax % The \closeout helps reduce unnecessary open files; the limit on the % Acorn RISC OS is a mere 16 files. \expandafter\closeout\csname#2indfile\endcsname \expandafter\let\csname donesynindex#2\endcsname = 1 \fi % redefine \fooindfile: \expandafter\let\expandafter\temp\expandafter=\csname#3indfile\endcsname \expandafter\let\csname#2indfile\endcsname=\temp % redefine \fooindex: \expandafter\xdef\csname#2index\endcsname{\noexpand#1{#3}}% } % Define \doindex, the driver for all \fooindex macros. % Argument #1 is generated by the calling \fooindex macro, % and it is "foo", the name of the index. % \doindex just uses \parsearg; it calls \doind for the actual work. % This is because \doind is more useful to call from other macros. % There is also \dosubind {index}{topic}{subtopic} % which makes an entry in a two-level index such as the operation index. \def\doindex#1{\edef\indexname{#1}\parsearg\singleindexer} \def\singleindexer #1{\doind{\indexname}{#1}} % like the previous two, but they put @code around the argument. \def\docodeindex#1{\edef\indexname{#1}\parsearg\singlecodeindexer} \def\singlecodeindexer #1{\doind{\indexname}{\code{#1}}} % Take care of Texinfo commands that can appear in an index entry. % Since there are some commands we want to expand, and others we don't, % we have to laboriously prevent expansion for those that we don't. % \def\indexdummies{% \escapechar = `\\ % use backslash in output files. \def\@{@}% change to @@ when we switch to @ as escape char in index files. \def\ {\realbackslash\space }% % % Need these unexpandable (because we define \tt as a dummy) % definitions when @{ or @} appear in index entry text. Also, more % complicated, when \tex is in effect and \{ is a \delimiter again. % We can't use \lbracecmd and \rbracecmd because texindex assumes % braces and backslashes are used only as delimiters. Perhaps we % should define @lbrace and @rbrace commands a la @comma. \def\{{{\tt\char123}}% \def\}{{\tt\char125}}% % % I don't entirely understand this, but when an index entry is % generated from a macro call, the \endinput which \scanmacro inserts % causes processing to be prematurely terminated. This is, % apparently, because \indexsorttmp is fully expanded, and \endinput % is an expandable command. The redefinition below makes \endinput % disappear altogether for that purpose -- although logging shows that % processing continues to some further point. On the other hand, it % seems \endinput does not hurt in the printed index arg, since that % is still getting written without apparent harm. % % Sample source (mac-idx3.tex, reported by Graham Percival to % help-texinfo, 22may06): % @macro funindex {WORD} % @findex xyz % @end macro % ... % @funindex commtest % % The above is not enough to reproduce the bug, but it gives the flavor. % % Sample whatsit resulting: % .@write3{\entry{xyz}{@folio }{@code {xyz@endinput }}} % % So: \let\endinput = \empty % % Do the redefinitions. \commondummies } % For the aux and toc files, @ is the escape character. So we want to % redefine everything using @ as the escape character (instead of % \realbackslash, still used for index files). When everything uses @, % this will be simpler. % \def\atdummies{% \def\@{@@}% \def\ {@ }% \let\{ = \lbraceatcmd \let\} = \rbraceatcmd % % Do the redefinitions. \commondummies \otherbackslash } % Called from \indexdummies and \atdummies. % \def\commondummies{% % % \definedummyword defines \#1 as \string\#1\space, thus effectively % preventing its expansion. This is used only for control words, % not control letters, because the \space would be incorrect for % control characters, but is needed to separate the control word % from whatever follows. % % For control letters, we have \definedummyletter, which omits the % space. % % These can be used both for control words that take an argument and % those that do not. If it is followed by {arg} in the input, then % that will dutifully get written to the index (or wherever). % \def\definedummyword ##1{\def##1{\string##1\space}}% \def\definedummyletter##1{\def##1{\string##1}}% \let\definedummyaccent\definedummyletter % \commondummiesnofonts % \definedummyletter\_% \definedummyletter\-% % % Non-English letters. \definedummyword\AA \definedummyword\AE \definedummyword\DH \definedummyword\L \definedummyword\O \definedummyword\OE \definedummyword\TH \definedummyword\aa \definedummyword\ae \definedummyword\dh \definedummyword\exclamdown \definedummyword\l \definedummyword\o \definedummyword\oe \definedummyword\ordf \definedummyword\ordm \definedummyword\questiondown \definedummyword\ss \definedummyword\th % % Although these internal commands shouldn't show up, sometimes they do. \definedummyword\bf \definedummyword\gtr \definedummyword\hat \definedummyword\less \definedummyword\sf \definedummyword\sl \definedummyword\tclose \definedummyword\tt % \definedummyword\LaTeX \definedummyword\TeX % % Assorted special characters. \definedummyword\arrow \definedummyword\bullet \definedummyword\comma \definedummyword\copyright \definedummyword\registeredsymbol \definedummyword\dots \definedummyword\enddots \definedummyword\entrybreak \definedummyword\equiv \definedummyword\error \definedummyword\euro \definedummyword\expansion \definedummyword\geq \definedummyword\guillemetleft \definedummyword\guillemetright \definedummyword\guilsinglleft \definedummyword\guilsinglright \definedummyword\leq \definedummyword\minus \definedummyword\ogonek \definedummyword\pounds \definedummyword\point \definedummyword\print \definedummyword\quotedblbase \definedummyword\quotedblleft \definedummyword\quotedblright \definedummyword\quoteleft \definedummyword\quoteright \definedummyword\quotesinglbase \definedummyword\result \definedummyword\textdegree % % We want to disable all macros so that they are not expanded by \write. \macrolist % \normalturnoffactive % % Handle some cases of @value -- where it does not contain any % (non-fully-expandable) commands. \makevalueexpandable } % \commondummiesnofonts: common to \commondummies and \indexnofonts. % \def\commondummiesnofonts{% % Control letters and accents. \definedummyletter\!% \definedummyaccent\"% \definedummyaccent\'% \definedummyletter\*% \definedummyaccent\,% \definedummyletter\.% \definedummyletter\/% \definedummyletter\:% \definedummyaccent\=% \definedummyletter\?% \definedummyaccent\^% \definedummyaccent\`% \definedummyaccent\~% \definedummyword\u \definedummyword\v \definedummyword\H \definedummyword\dotaccent \definedummyword\ogonek \definedummyword\ringaccent \definedummyword\tieaccent \definedummyword\ubaraccent \definedummyword\udotaccent \definedummyword\dotless % % Texinfo font commands. \definedummyword\b \definedummyword\i \definedummyword\r \definedummyword\sansserif \definedummyword\sc \definedummyword\slanted \definedummyword\t % % Commands that take arguments. \definedummyword\acronym \definedummyword\anchor \definedummyword\cite \definedummyword\code \definedummyword\command \definedummyword\dfn \definedummyword\dmn \definedummyword\email \definedummyword\emph \definedummyword\env \definedummyword\file \definedummyword\indicateurl \definedummyword\kbd \definedummyword\key \definedummyword\math \definedummyword\option \definedummyword\pxref \definedummyword\ref \definedummyword\samp \definedummyword\strong \definedummyword\tie \definedummyword\uref \definedummyword\url \definedummyword\var \definedummyword\verb \definedummyword\w \definedummyword\xref } % \indexnofonts is used when outputting the strings to sort the index % by, and when constructing control sequence names. It eliminates all % control sequences and just writes whatever the best ASCII sort string % would be for a given command (usually its argument). % \def\indexnofonts{% % Accent commands should become @asis. \def\definedummyaccent##1{\let##1\asis}% % We can just ignore other control letters. \def\definedummyletter##1{\let##1\empty}% % All control words become @asis by default; overrides below. \let\definedummyword\definedummyaccent % \commondummiesnofonts % % Don't no-op \tt, since it isn't a user-level command % and is used in the definitions of the active chars like <, >, |, etc. % Likewise with the other plain tex font commands. %\let\tt=\asis % \def\ { }% \def\@{@}% \def\_{\normalunderscore}% \def\-{}% @- shouldn't affect sorting % % Unfortunately, texindex is not prepared to handle braces in the % content at all. So for index sorting, we map @{ and @} to strings % starting with |, since that ASCII character is between ASCII { and }. \def\{{|a}% \def\}{|b}% % % Non-English letters. \def\AA{AA}% \def\AE{AE}% \def\DH{DZZ}% \def\L{L}% \def\OE{OE}% \def\O{O}% \def\TH{ZZZ}% \def\aa{aa}% \def\ae{ae}% \def\dh{dzz}% \def\exclamdown{!}% \def\l{l}% \def\oe{oe}% \def\ordf{a}% \def\ordm{o}% \def\o{o}% \def\questiondown{?}% \def\ss{ss}% \def\th{zzz}% % \def\LaTeX{LaTeX}% \def\TeX{TeX}% % % Assorted special characters. % (The following {} will end up in the sort string, but that's ok.) \def\arrow{->}% \def\bullet{bullet}% \def\comma{,}% \def\copyright{copyright}% \def\dots{...}% \def\enddots{...}% \def\equiv{==}% \def\error{error}% \def\euro{euro}% \def\expansion{==>}% \def\geq{>=}% \def\guillemetleft{<<}% \def\guillemetright{>>}% \def\guilsinglleft{<}% \def\guilsinglright{>}% \def\leq{<=}% \def\minus{-}% \def\point{.}% \def\pounds{pounds}% \def\print{-|}% \def\quotedblbase{"}% \def\quotedblleft{"}% \def\quotedblright{"}% \def\quoteleft{`}% \def\quoteright{'}% \def\quotesinglbase{,}% \def\registeredsymbol{R}% \def\result{=>}% \def\textdegree{o}% % \expandafter\ifx\csname SETtxiindexlquoteignore\endcsname\relax \else \indexlquoteignore \fi % % We need to get rid of all macros, leaving only the arguments (if present). % Of course this is not nearly correct, but it is the best we can do for now. % makeinfo does not expand macros in the argument to @deffn, which ends up % writing an index entry, and texindex isn't prepared for an index sort entry % that starts with \. % % Since macro invocations are followed by braces, we can just redefine them % to take a single TeX argument. The case of a macro invocation that % goes to end-of-line is not handled. % \macrolist } % Undocumented (for FSFS 2nd ed.): @set txiindexlquoteignore makes us % ignore left quotes in the sort term. {\catcode`\`=\active \gdef\indexlquoteignore{\let`=\empty}} \let\indexbackslash=0 %overridden during \printindex. \let\SETmarginindex=\relax % put index entries in margin (undocumented)? % Most index entries go through here, but \dosubind is the general case. % #1 is the index name, #2 is the entry text. \def\doind#1#2{\dosubind{#1}{#2}{}} % Workhorse for all \fooindexes. % #1 is name of index, #2 is stuff to put there, #3 is subentry -- % empty if called from \doind, as we usually are (the main exception % is with most defuns, which call us directly). % \def\dosubind#1#2#3{% \iflinks {% % Store the main index entry text (including the third arg). \toks0 = {#2}% % If third arg is present, precede it with a space. \def\thirdarg{#3}% \ifx\thirdarg\empty \else \toks0 = \expandafter{\the\toks0 \space #3}% \fi % \edef\writeto{\csname#1indfile\endcsname}% % \safewhatsit\dosubindwrite }% \fi } % Write the entry in \toks0 to the index file: % \def\dosubindwrite{% % Put the index entry in the margin if desired. \ifx\SETmarginindex\relax\else \insert\margin{\hbox{\vrule height8pt depth3pt width0pt \the\toks0}}% \fi % % Remember, we are within a group. \indexdummies % Must do this here, since \bf, etc expand at this stage \def\backslashcurfont{\indexbackslash}% \indexbackslash isn't defined now % so it will be output as is; and it will print as backslash. % % Process the index entry with all font commands turned off, to % get the string to sort by. {\indexnofonts \edef\temp{\the\toks0}% need full expansion \xdef\indexsorttmp{\temp}% }% % % Set up the complete index entry, with both the sort key and % the original text, including any font commands. We write % three arguments to \entry to the .?? file (four in the % subentry case), texindex reduces to two when writing the .??s % sorted result. \edef\temp{% \write\writeto{% \string\entry{\indexsorttmp}{\noexpand\folio}{\the\toks0}}% }% \temp } % Take care of unwanted page breaks/skips around a whatsit: % % If a skip is the last thing on the list now, preserve it % by backing up by \lastskip, doing the \write, then inserting % the skip again. Otherwise, the whatsit generated by the % \write or \pdfdest will make \lastskip zero. The result is that % sequences like this: % @end defun % @tindex whatever % @defun ... % will have extra space inserted, because the \medbreak in the % start of the @defun won't see the skip inserted by the @end of % the previous defun. % % But don't do any of this if we're not in vertical mode. We % don't want to do a \vskip and prematurely end a paragraph. % % Avoid page breaks due to these extra skips, too. % % But wait, there is a catch there: % We'll have to check whether \lastskip is zero skip. \ifdim is not % sufficient for this purpose, as it ignores stretch and shrink parts % of the skip. The only way seems to be to check the textual % representation of the skip. % % The following is almost like \def\zeroskipmacro{0.0pt} except that % the ``p'' and ``t'' characters have catcode \other, not 11 (letter). % \edef\zeroskipmacro{\expandafter\the\csname z@skip\endcsname} % \newskip\whatsitskip \newcount\whatsitpenalty % % ..., ready, GO: % \def\safewhatsit#1{\ifhmode #1% \else % \lastskip and \lastpenalty cannot both be nonzero simultaneously. \whatsitskip = \lastskip \edef\lastskipmacro{\the\lastskip}% \whatsitpenalty = \lastpenalty % % If \lastskip is nonzero, that means the last item was a % skip. And since a skip is discardable, that means this % -\whatsitskip glue we're inserting is preceded by a % non-discardable item, therefore it is not a potential % breakpoint, therefore no \nobreak needed. \ifx\lastskipmacro\zeroskipmacro \else \vskip-\whatsitskip \fi % #1% % \ifx\lastskipmacro\zeroskipmacro % If \lastskip was zero, perhaps the last item was a penalty, and % perhaps it was >=10000, e.g., a \nobreak. In that case, we want % to re-insert the same penalty (values >10000 are used for various % signals); since we just inserted a non-discardable item, any % following glue (such as a \parskip) would be a breakpoint. For example: % @deffn deffn-whatever % @vindex index-whatever % Description. % would allow a break between the index-whatever whatsit % and the "Description." paragraph. \ifnum\whatsitpenalty>9999 \penalty\whatsitpenalty \fi \else % On the other hand, if we had a nonzero \lastskip, % this make-up glue would be preceded by a non-discardable item % (the whatsit from the \write), so we must insert a \nobreak. \nobreak\vskip\whatsitskip \fi \fi} % The index entry written in the file actually looks like % \entry {sortstring}{page}{topic} % or % \entry {sortstring}{page}{topic}{subtopic} % The texindex program reads in these files and writes files % containing these kinds of lines: % \initial {c} % before the first topic whose initial is c % \entry {topic}{pagelist} % for a topic that is used without subtopics % \primary {topic} % for the beginning of a topic that is used with subtopics % \secondary {subtopic}{pagelist} % for each subtopic. % Define the user-accessible indexing commands % @findex, @vindex, @kindex, @cindex. \def\findex {\fnindex} \def\kindex {\kyindex} \def\cindex {\cpindex} \def\vindex {\vrindex} \def\tindex {\tpindex} \def\pindex {\pgindex} \def\cindexsub {\begingroup\obeylines\cindexsub} {\obeylines % \gdef\cindexsub "#1" #2^^M{\endgroup % \dosubind{cp}{#2}{#1}}} % Define the macros used in formatting output of the sorted index material. % @printindex causes a particular index (the ??s file) to get printed. % It does not print any chapter heading (usually an @unnumbered). % \parseargdef\printindex{\begingroup \dobreak \chapheadingskip{10000}% % \smallfonts \rm \tolerance = 9500 \plainfrenchspacing \everypar = {}% don't want the \kern\-parindent from indentation suppression. % % See if the index file exists and is nonempty. % Change catcode of @ here so that if the index file contains % \initial {@} % as its first line, TeX doesn't complain about mismatched braces % (because it thinks @} is a control sequence). \catcode`\@ = 11 \openin 1 \jobname.#1s \ifeof 1 % \enddoublecolumns gets confused if there is no text in the index, % and it loses the chapter title and the aux file entries for the % index. The easiest way to prevent this problem is to make sure % there is some text. \putwordIndexNonexistent \else % % If the index file exists but is empty, then \openin leaves \ifeof % false. We have to make TeX try to read something from the file, so % it can discover if there is anything in it. \read 1 to \temp \ifeof 1 \putwordIndexIsEmpty \else % Index files are almost Texinfo source, but we use \ as the escape % character. It would be better to use @, but that's too big a change % to make right now. \def\indexbackslash{\backslashcurfont}% \catcode`\\ = 0 \escapechar = `\\ \begindoublecolumns \input \jobname.#1s \enddoublecolumns \fi \fi \closein 1 \endgroup} % These macros are used by the sorted index file itself. % Change them to control the appearance of the index. \def\initial#1{{% % Some minor font changes for the special characters. \let\tentt=\sectt \let\tt=\sectt \let\sf=\sectt % % Remove any glue we may have, we'll be inserting our own. \removelastskip % % We like breaks before the index initials, so insert a bonus. \nobreak \vskip 0pt plus 3\baselineskip \penalty 0 \vskip 0pt plus -3\baselineskip % % Typeset the initial. Making this add up to a whole number of % baselineskips increases the chance of the dots lining up from column % to column. It still won't often be perfect, because of the stretch % we need before each entry, but it's better. % % No shrink because it confuses \balancecolumns. \vskip 1.67\baselineskip plus .5\baselineskip \leftline{\secbf #1}% % Do our best not to break after the initial. \nobreak \vskip .33\baselineskip plus .1\baselineskip }} % \entry typesets a paragraph consisting of the text (#1), dot leaders, and % then page number (#2) flushed to the right margin. It is used for index % and table of contents entries. The paragraph is indented by \leftskip. % % A straightforward implementation would start like this: % \def\entry#1#2{... % But this freezes the catcodes in the argument, and can cause problems to % @code, which sets - active. This problem was fixed by a kludge--- % ``-'' was active throughout whole index, but this isn't really right. % The right solution is to prevent \entry from swallowing the whole text. % --kasal, 21nov03 \def\entry{% \begingroup % % Start a new paragraph if necessary, so our assignments below can't % affect previous text. \par % % Do not fill out the last line with white space. \parfillskip = 0in % % No extra space above this paragraph. \parskip = 0in % % Do not prefer a separate line ending with a hyphen to fewer lines. \finalhyphendemerits = 0 % % \hangindent is only relevant when the entry text and page number % don't both fit on one line. In that case, bob suggests starting the % dots pretty far over on the line. Unfortunately, a large % indentation looks wrong when the entry text itself is broken across % lines. So we use a small indentation and put up with long leaders. % % \hangafter is reset to 1 (which is the value we want) at the start % of each paragraph, so we need not do anything with that. \hangindent = 2em % % When the entry text needs to be broken, just fill out the first line % with blank space. \rightskip = 0pt plus1fil % % A bit of stretch before each entry for the benefit of balancing % columns. \vskip 0pt plus1pt % % When reading the text of entry, convert explicit line breaks % from @* into spaces. The user might give these in long section % titles, for instance. \def\*{\unskip\space\ignorespaces}% \def\entrybreak{\hfil\break}% % % Swallow the left brace of the text (first parameter): \afterassignment\doentry \let\temp = } \def\entrybreak{\unskip\space\ignorespaces}% \def\doentry{% \bgroup % Instead of the swallowed brace. \noindent \aftergroup\finishentry % And now comes the text of the entry. } \def\finishentry#1{% % #1 is the page number. % % The following is kludged to not output a line of dots in the index if % there are no page numbers. The next person who breaks this will be % cursed by a Unix daemon. \setbox\boxA = \hbox{#1}% \ifdim\wd\boxA = 0pt \ % \else % % If we must, put the page number on a line of its own, and fill out % this line with blank space. (The \hfil is overwhelmed with the % fill leaders glue in \indexdotfill if the page number does fit.) \hfil\penalty50 \null\nobreak\indexdotfill % Have leaders before the page number. % % The `\ ' here is removed by the implicit \unskip that TeX does as % part of (the primitive) \par. Without it, a spurious underfull % \hbox ensues. \ifpdf \pdfgettoks#1.% \ \the\toksA \else \ #1% \fi \fi \par \endgroup } % Like plain.tex's \dotfill, except uses up at least 1 em. \def\indexdotfill{\cleaders \hbox{$\mathsurround=0pt \mkern1.5mu.\mkern1.5mu$}\hskip 1em plus 1fill} \def\primary #1{\line{#1\hfil}} \newskip\secondaryindent \secondaryindent=0.5cm \def\secondary#1#2{{% \parfillskip=0in \parskip=0in \hangindent=1in \hangafter=1 \noindent\hskip\secondaryindent\hbox{#1}\indexdotfill \ifpdf \pdfgettoks#2.\ \the\toksA % The page number ends the paragraph. \else #2 \fi \par }} % Define two-column mode, which we use to typeset indexes. % Adapted from the TeXbook, page 416, which is to say, % the manmac.tex format used to print the TeXbook itself. \catcode`\@=11 \newbox\partialpage \newdimen\doublecolumnhsize \def\begindoublecolumns{\begingroup % ended by \enddoublecolumns % Grab any single-column material above us. \output = {% % % Here is a possibility not foreseen in manmac: if we accumulate a % whole lot of material, we might end up calling this \output % routine twice in a row (see the doublecol-lose test, which is % essentially a couple of indexes with @setchapternewpage off). In % that case we just ship out what is in \partialpage with the normal % output routine. Generally, \partialpage will be empty when this % runs and this will be a no-op. See the indexspread.tex test case. \ifvoid\partialpage \else \onepageout{\pagecontents\partialpage}% \fi % \global\setbox\partialpage = \vbox{% % Unvbox the main output page. \unvbox\PAGE \kern-\topskip \kern\baselineskip }% }% \eject % run that output routine to set \partialpage % % Use the double-column output routine for subsequent pages. \output = {\doublecolumnout}% % % Change the page size parameters. We could do this once outside this % routine, in each of @smallbook, @afourpaper, and the default 8.5x11 % format, but then we repeat the same computation. Repeating a couple % of assignments once per index is clearly meaningless for the % execution time, so we may as well do it in one place. % % First we halve the line length, less a little for the gutter between % the columns. We compute the gutter based on the line length, so it % changes automatically with the paper format. The magic constant % below is chosen so that the gutter has the same value (well, +-<1pt) % as it did when we hard-coded it. % % We put the result in a separate register, \doublecolumhsize, so we % can restore it in \pagesofar, after \hsize itself has (potentially) % been clobbered. % \doublecolumnhsize = \hsize \advance\doublecolumnhsize by -.04154\hsize \divide\doublecolumnhsize by 2 \hsize = \doublecolumnhsize % % Double the \vsize as well. (We don't need a separate register here, % since nobody clobbers \vsize.) \vsize = 2\vsize } % The double-column output routine for all double-column pages except % the last. % \def\doublecolumnout{% \splittopskip=\topskip \splitmaxdepth=\maxdepth % Get the available space for the double columns -- the normal % (undoubled) page height minus any material left over from the % previous page. \dimen@ = \vsize \divide\dimen@ by 2 \advance\dimen@ by -\ht\partialpage % % box0 will be the left-hand column, box2 the right. \setbox0=\vsplit255 to\dimen@ \setbox2=\vsplit255 to\dimen@ \onepageout\pagesofar \unvbox255 \penalty\outputpenalty } % % Re-output the contents of the output page -- any previous material, % followed by the two boxes we just split, in box0 and box2. \def\pagesofar{% \unvbox\partialpage % \hsize = \doublecolumnhsize \wd0=\hsize \wd2=\hsize \hbox to\pagewidth{\box0\hfil\box2}% } % % All done with double columns. \def\enddoublecolumns{% % The following penalty ensures that the page builder is exercised % _before_ we change the output routine. This is necessary in the % following situation: % % The last section of the index consists only of a single entry. % Before this section, \pagetotal is less than \pagegoal, so no % break occurs before the last section starts. However, the last % section, consisting of \initial and the single \entry, does not % fit on the page and has to be broken off. Without the following % penalty the page builder will not be exercised until \eject % below, and by that time we'll already have changed the output % routine to the \balancecolumns version, so the next-to-last % double-column page will be processed with \balancecolumns, which % is wrong: The two columns will go to the main vertical list, with % the broken-off section in the recent contributions. As soon as % the output routine finishes, TeX starts reconsidering the page % break. The two columns and the broken-off section both fit on the % page, because the two columns now take up only half of the page % goal. When TeX sees \eject from below which follows the final % section, it invokes the new output routine that we've set after % \balancecolumns below; \onepageout will try to fit the two columns % and the final section into the vbox of \pageheight (see % \pagebody), causing an overfull box. % % Note that glue won't work here, because glue does not exercise the % page builder, unlike penalties (see The TeXbook, pp. 280-281). \penalty0 % \output = {% % Split the last of the double-column material. Leave it on the % current page, no automatic page break. \balancecolumns % % If we end up splitting too much material for the current page, % though, there will be another page break right after this \output % invocation ends. Having called \balancecolumns once, we do not % want to call it again. Therefore, reset \output to its normal % definition right away. (We hope \balancecolumns will never be % called on to balance too much material, but if it is, this makes % the output somewhat more palatable.) \global\output = {\onepageout{\pagecontents\PAGE}}% }% \eject \endgroup % started in \begindoublecolumns % % \pagegoal was set to the doubled \vsize above, since we restarted % the current page. We're now back to normal single-column % typesetting, so reset \pagegoal to the normal \vsize (after the % \endgroup where \vsize got restored). \pagegoal = \vsize } % % Called at the end of the double column material. \def\balancecolumns{% \setbox0 = \vbox{\unvbox255}% like \box255 but more efficient, see p.120. \dimen@ = \ht0 \advance\dimen@ by \topskip \advance\dimen@ by-\baselineskip \divide\dimen@ by 2 % target to split to %debug\message{final 2-column material height=\the\ht0, target=\the\dimen@.}% \splittopskip = \topskip % Loop until we get a decent breakpoint. {% \vbadness = 10000 \loop \global\setbox3 = \copy0 \global\setbox1 = \vsplit3 to \dimen@ \ifdim\ht3>\dimen@ \global\advance\dimen@ by 1pt \repeat }% %debug\message{split to \the\dimen@, column heights: \the\ht1, \the\ht3.}% \setbox0=\vbox to\dimen@{\unvbox1}% \setbox2=\vbox to\dimen@{\unvbox3}% % \pagesofar } \catcode`\@ = \other \message{sectioning,} % Chapters, sections, etc. % Let's start with @part. \outer\parseargdef\part{\partzzz{#1}} \def\partzzz#1{% \chapoddpage \null \vskip.3\vsize % move it down on the page a bit \begingroup \noindent \titlefonts\rmisbold #1\par % the text \let\lastnode=\empty % no node to associate with \writetocentry{part}{#1}{}% but put it in the toc \headingsoff % no headline or footline on the part page \chapoddpage \endgroup } % \unnumberedno is an oxymoron. But we count the unnumbered % sections so that we can refer to them unambiguously in the pdf % outlines by their "section number". We avoid collisions with chapter % numbers by starting them at 10000. (If a document ever has 10000 % chapters, we're in trouble anyway, I'm sure.) \newcount\unnumberedno \unnumberedno = 10000 \newcount\chapno \newcount\secno \secno=0 \newcount\subsecno \subsecno=0 \newcount\subsubsecno \subsubsecno=0 % This counter is funny since it counts through charcodes of letters A, B, ... \newcount\appendixno \appendixno = `\@ % % \def\appendixletter{\char\the\appendixno} % We do the following ugly conditional instead of the above simple % construct for the sake of pdftex, which needs the actual % letter in the expansion, not just typeset. % \def\appendixletter{% \ifnum\appendixno=`A A% \else\ifnum\appendixno=`B B% \else\ifnum\appendixno=`C C% \else\ifnum\appendixno=`D D% \else\ifnum\appendixno=`E E% \else\ifnum\appendixno=`F F% \else\ifnum\appendixno=`G G% \else\ifnum\appendixno=`H H% \else\ifnum\appendixno=`I I% \else\ifnum\appendixno=`J J% \else\ifnum\appendixno=`K K% \else\ifnum\appendixno=`L L% \else\ifnum\appendixno=`M M% \else\ifnum\appendixno=`N N% \else\ifnum\appendixno=`O O% \else\ifnum\appendixno=`P P% \else\ifnum\appendixno=`Q Q% \else\ifnum\appendixno=`R R% \else\ifnum\appendixno=`S S% \else\ifnum\appendixno=`T T% \else\ifnum\appendixno=`U U% \else\ifnum\appendixno=`V V% \else\ifnum\appendixno=`W W% \else\ifnum\appendixno=`X X% \else\ifnum\appendixno=`Y Y% \else\ifnum\appendixno=`Z Z% % The \the is necessary, despite appearances, because \appendixletter is % expanded while writing the .toc file. \char\appendixno is not % expandable, thus it is written literally, thus all appendixes come out % with the same letter (or @) in the toc without it. \else\char\the\appendixno \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} % Each @chapter defines these (using marks) as the number+name, number % and name of the chapter. Page headings and footings can use % these. @section does likewise. \def\thischapter{} \def\thischapternum{} \def\thischaptername{} \def\thissection{} \def\thissectionnum{} \def\thissectionname{} \newcount\absseclevel % used to calculate proper heading level \newcount\secbase\secbase=0 % @raisesections/@lowersections modify this count % @raisesections: treat @section as chapter, @subsection as section, etc. \def\raisesections{\global\advance\secbase by -1} \let\up=\raisesections % original BFox name % @lowersections: treat @chapter as section, @section as subsection, etc. \def\lowersections{\global\advance\secbase by 1} \let\down=\lowersections % original BFox name % we only have subsub. \chardef\maxseclevel = 3 % % A numbered section within an unnumbered changes to unnumbered too. % To achieve this, remember the "biggest" unnum. sec. we are currently in: \chardef\unnlevel = \maxseclevel % % Trace whether the current chapter is an appendix or not: % \chapheadtype is "N" or "A", unnumbered chapters are ignored. \def\chapheadtype{N} % Choose a heading macro % #1 is heading type % #2 is heading level % #3 is text for heading \def\genhead#1#2#3{% % Compute the abs. sec. level: \absseclevel=#2 \advance\absseclevel by \secbase % Make sure \absseclevel doesn't fall outside the range: \ifnum \absseclevel < 0 \absseclevel = 0 \else \ifnum \absseclevel > 3 \absseclevel = 3 \fi \fi % The heading type: \def\headtype{#1}% \if \headtype U% \ifnum \absseclevel < \unnlevel \chardef\unnlevel = \absseclevel \fi \else % Check for appendix sections: \ifnum \absseclevel = 0 \edef\chapheadtype{\headtype}% \else \if \headtype A\if \chapheadtype N% \errmessage{@appendix... within a non-appendix chapter}% \fi\fi \fi % Check for numbered within unnumbered: \ifnum \absseclevel > \unnlevel \def\headtype{U}% \else \chardef\unnlevel = 3 \fi \fi % Now print the heading: \if \headtype U% \ifcase\absseclevel \unnumberedzzz{#3}% \or \unnumberedseczzz{#3}% \or \unnumberedsubseczzz{#3}% \or \unnumberedsubsubseczzz{#3}% \fi \else \if \headtype A% \ifcase\absseclevel \appendixzzz{#3}% \or \appendixsectionzzz{#3}% \or \appendixsubseczzz{#3}% \or \appendixsubsubseczzz{#3}% \fi \else \ifcase\absseclevel \chapterzzz{#3}% \or \seczzz{#3}% \or \numberedsubseczzz{#3}% \or \numberedsubsubseczzz{#3}% \fi \fi \fi \suppressfirstparagraphindent } % an interface: \def\numhead{\genhead N} \def\apphead{\genhead A} \def\unnmhead{\genhead U} % @chapter, @appendix, @unnumbered. Increment top-level counter, reset % all lower-level sectioning counters to zero. % % Also set \chaplevelprefix, which we prepend to @float sequence numbers % (e.g., figures), q.v. By default (before any chapter), that is empty. \let\chaplevelprefix = \empty % \outer\parseargdef\chapter{\numhead0{#1}} % normally numhead0 calls chapterzzz \def\chapterzzz#1{% % section resetting is \global in case the chapter is in a group, such % as an @include file. \global\secno=0 \global\subsecno=0 \global\subsubsecno=0 \global\advance\chapno by 1 % % Used for \float. \gdef\chaplevelprefix{\the\chapno.}% \resetallfloatnos % % \putwordChapter can contain complex things in translations. \toks0=\expandafter{\putwordChapter}% \message{\the\toks0 \space \the\chapno}% % % Write the actual heading. \chapmacro{#1}{Ynumbered}{\the\chapno}% % % So @section and the like are numbered underneath this chapter. \global\let\section = \numberedsec \global\let\subsection = \numberedsubsec \global\let\subsubsection = \numberedsubsubsec } \outer\parseargdef\appendix{\apphead0{#1}} % normally calls appendixzzz % \def\appendixzzz#1{% \global\secno=0 \global\subsecno=0 \global\subsubsecno=0 \global\advance\appendixno by 1 \gdef\chaplevelprefix{\appendixletter.}% \resetallfloatnos % % \putwordAppendix can contain complex things in translations. \toks0=\expandafter{\putwordAppendix}% \message{\the\toks0 \space \appendixletter}% % \chapmacro{#1}{Yappendix}{\appendixletter}% % \global\let\section = \appendixsec \global\let\subsection = \appendixsubsec \global\let\subsubsection = \appendixsubsubsec } % normally unnmhead0 calls unnumberedzzz: \outer\parseargdef\unnumbered{\unnmhead0{#1}} \def\unnumberedzzz#1{% \global\secno=0 \global\subsecno=0 \global\subsubsecno=0 \global\advance\unnumberedno by 1 % % Since an unnumbered has no number, no prefix for figures. \global\let\chaplevelprefix = \empty \resetallfloatnos % % This used to be simply \message{#1}, but TeX fully expands the % argument to \message. Therefore, if #1 contained @-commands, TeX % expanded them. For example, in `@unnumbered The @cite{Book}', TeX % expanded @cite (which turns out to cause errors because \cite is meant % to be executed, not expanded). % % Anyway, we don't want the fully-expanded definition of @cite to appear % as a result of the \message, we just want `@cite' itself. We use % \the to achieve this: TeX expands \the only once, % simply yielding the contents of . (We also do this for % the toc entries.) \toks0 = {#1}% \message{(\the\toks0)}% % \chapmacro{#1}{Ynothing}{\the\unnumberedno}% % \global\let\section = \unnumberedsec \global\let\subsection = \unnumberedsubsec \global\let\subsubsection = \unnumberedsubsubsec } % @centerchap is like @unnumbered, but the heading is centered. \outer\parseargdef\centerchap{% % Well, we could do the following in a group, but that would break % an assumption that \chapmacro is called at the outermost level. % Thus we are safer this way: --kasal, 24feb04 \let\centerparametersmaybe = \centerparameters \unnmhead0{#1}% \let\centerparametersmaybe = \relax } % @top is like @unnumbered. \let\top\unnumbered % Sections. % \outer\parseargdef\numberedsec{\numhead1{#1}} % normally calls seczzz \def\seczzz#1{% \global\subsecno=0 \global\subsubsecno=0 \global\advance\secno by 1 \sectionheading{#1}{sec}{Ynumbered}{\the\chapno.\the\secno}% } % normally calls appendixsectionzzz: \outer\parseargdef\appendixsection{\apphead1{#1}} \def\appendixsectionzzz#1{% \global\subsecno=0 \global\subsubsecno=0 \global\advance\secno by 1 \sectionheading{#1}{sec}{Yappendix}{\appendixletter.\the\secno}% } \let\appendixsec\appendixsection % normally calls unnumberedseczzz: \outer\parseargdef\unnumberedsec{\unnmhead1{#1}} \def\unnumberedseczzz#1{% \global\subsecno=0 \global\subsubsecno=0 \global\advance\secno by 1 \sectionheading{#1}{sec}{Ynothing}{\the\unnumberedno.\the\secno}% } % Subsections. % % normally calls numberedsubseczzz: \outer\parseargdef\numberedsubsec{\numhead2{#1}} \def\numberedsubseczzz#1{% \global\subsubsecno=0 \global\advance\subsecno by 1 \sectionheading{#1}{subsec}{Ynumbered}{\the\chapno.\the\secno.\the\subsecno}% } % normally calls appendixsubseczzz: \outer\parseargdef\appendixsubsec{\apphead2{#1}} \def\appendixsubseczzz#1{% \global\subsubsecno=0 \global\advance\subsecno by 1 \sectionheading{#1}{subsec}{Yappendix}% {\appendixletter.\the\secno.\the\subsecno}% } % normally calls unnumberedsubseczzz: \outer\parseargdef\unnumberedsubsec{\unnmhead2{#1}} \def\unnumberedsubseczzz#1{% \global\subsubsecno=0 \global\advance\subsecno by 1 \sectionheading{#1}{subsec}{Ynothing}% {\the\unnumberedno.\the\secno.\the\subsecno}% } % Subsubsections. % % normally numberedsubsubseczzz: \outer\parseargdef\numberedsubsubsec{\numhead3{#1}} \def\numberedsubsubseczzz#1{% \global\advance\subsubsecno by 1 \sectionheading{#1}{subsubsec}{Ynumbered}% {\the\chapno.\the\secno.\the\subsecno.\the\subsubsecno}% } % normally appendixsubsubseczzz: \outer\parseargdef\appendixsubsubsec{\apphead3{#1}} \def\appendixsubsubseczzz#1{% \global\advance\subsubsecno by 1 \sectionheading{#1}{subsubsec}{Yappendix}% {\appendixletter.\the\secno.\the\subsecno.\the\subsubsecno}% } % normally unnumberedsubsubseczzz: \outer\parseargdef\unnumberedsubsubsec{\unnmhead3{#1}} \def\unnumberedsubsubseczzz#1{% \global\advance\subsubsecno by 1 \sectionheading{#1}{subsubsec}{Ynothing}% {\the\unnumberedno.\the\secno.\the\subsecno.\the\subsubsecno}% } % These macros control what the section commands do, according % to what kind of chapter we are in (ordinary, appendix, or unnumbered). % Define them by default for a numbered chapter. \let\section = \numberedsec \let\subsection = \numberedsubsec \let\subsubsection = \numberedsubsubsec % Define @majorheading, @heading and @subheading % NOTE on use of \vbox for chapter headings, section headings, and such: % 1) We use \vbox rather than the earlier \line to permit % overlong headings to fold. % 2) \hyphenpenalty is set to 10000 because hyphenation in a % heading is obnoxious; this forbids it. % 3) Likewise, headings look best if no \parindent is used, and % if justification is not attempted. Hence \raggedright. \def\majorheading{% {\advance\chapheadingskip by 10pt \chapbreak }% \parsearg\chapheadingzzz } \def\chapheading{\chapbreak \parsearg\chapheadingzzz} \def\chapheadingzzz#1{% {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 \parindent=0pt\ptexraggedright \rmisbold #1\hfill}}% \bigskip \par\penalty 200\relax \suppressfirstparagraphindent } % @heading, @subheading, @subsubheading. \parseargdef\heading{\sectionheading{#1}{sec}{Yomitfromtoc}{} \suppressfirstparagraphindent} \parseargdef\subheading{\sectionheading{#1}{subsec}{Yomitfromtoc}{} \suppressfirstparagraphindent} \parseargdef\subsubheading{\sectionheading{#1}{subsubsec}{Yomitfromtoc}{} \suppressfirstparagraphindent} % These macros generate a chapter, section, etc. heading only % (including whitespace, linebreaking, etc. around it), % given all the information in convenient, parsed form. % Args are the skip and penalty (usually negative) \def\dobreak#1#2{\par\ifdim\lastskip<#1\removelastskip\penalty#2\vskip#1\fi} % Parameter controlling skip before chapter headings (if needed) \newskip\chapheadingskip % Define plain chapter starts, and page on/off switching for it. \def\chapbreak{\dobreak \chapheadingskip {-4000}} \def\chappager{\par\vfill\supereject} % Because \domark is called before \chapoddpage, the filler page will % get the headings for the next chapter, which is wrong. But we don't % care -- we just disable all headings on the filler page. \def\chapoddpage{% \chappager \ifodd\pageno \else \begingroup \headingsoff \null \chappager \endgroup \fi } \def\setchapternewpage #1 {\csname CHAPPAG#1\endcsname} \def\CHAPPAGoff{% \global\let\contentsalignmacro = \chappager \global\let\pchapsepmacro=\chapbreak \global\let\pagealignmacro=\chappager} \def\CHAPPAGon{% \global\let\contentsalignmacro = \chappager \global\let\pchapsepmacro=\chappager \global\let\pagealignmacro=\chappager \global\def\HEADINGSon{\HEADINGSsingle}} \def\CHAPPAGodd{% \global\let\contentsalignmacro = \chapoddpage \global\let\pchapsepmacro=\chapoddpage \global\let\pagealignmacro=\chapoddpage \global\def\HEADINGSon{\HEADINGSdouble}} \CHAPPAGon % Chapter opening. % % #1 is the text, #2 is the section type (Ynumbered, Ynothing, % Yappendix, Yomitfromtoc), #3 the chapter number. % % To test against our argument. \def\Ynothingkeyword{Ynothing} \def\Yomitfromtockeyword{Yomitfromtoc} \def\Yappendixkeyword{Yappendix} % \def\chapmacro#1#2#3{% % Insert the first mark before the heading break (see notes for \domark). \let\prevchapterdefs=\lastchapterdefs \let\prevsectiondefs=\lastsectiondefs \gdef\lastsectiondefs{\gdef\thissectionname{}\gdef\thissectionnum{}% \gdef\thissection{}}% % \def\temptype{#2}% \ifx\temptype\Ynothingkeyword \gdef\lastchapterdefs{\gdef\thischaptername{#1}\gdef\thischapternum{}% \gdef\thischapter{\thischaptername}}% \else\ifx\temptype\Yomitfromtockeyword \gdef\lastchapterdefs{\gdef\thischaptername{#1}\gdef\thischapternum{}% \gdef\thischapter{}}% \else\ifx\temptype\Yappendixkeyword \toks0={#1}% \xdef\lastchapterdefs{% \gdef\noexpand\thischaptername{\the\toks0}% \gdef\noexpand\thischapternum{\appendixletter}% % \noexpand\putwordAppendix avoids expanding indigestible % commands in some of the translations. \gdef\noexpand\thischapter{\noexpand\putwordAppendix{} \noexpand\thischapternum: \noexpand\thischaptername}% }% \else \toks0={#1}% \xdef\lastchapterdefs{% \gdef\noexpand\thischaptername{\the\toks0}% \gdef\noexpand\thischapternum{\the\chapno}% % \noexpand\putwordChapter avoids expanding indigestible % commands in some of the translations. \gdef\noexpand\thischapter{\noexpand\putwordChapter{} \noexpand\thischapternum: \noexpand\thischaptername}% }% \fi\fi\fi % % Output the mark. Pass it through \safewhatsit, to take care of % the preceding space. \safewhatsit\domark % % Insert the chapter heading break. \pchapsepmacro % % Now the second mark, after the heading break. No break points % between here and the heading. \let\prevchapterdefs=\lastchapterdefs \let\prevsectiondefs=\lastsectiondefs \domark % {% \chapfonts \rmisbold % % Have to define \lastsection before calling \donoderef, because the % xref code eventually uses it. On the other hand, it has to be called % after \pchapsepmacro, or the headline will change too soon. \gdef\lastsection{#1}% % % Only insert the separating space if we have a chapter/appendix % number, and don't print the unnumbered ``number''. \ifx\temptype\Ynothingkeyword \setbox0 = \hbox{}% \def\toctype{unnchap}% \else\ifx\temptype\Yomitfromtockeyword \setbox0 = \hbox{}% contents like unnumbered, but no toc entry \def\toctype{omit}% \else\ifx\temptype\Yappendixkeyword \setbox0 = \hbox{\putwordAppendix{} #3\enspace}% \def\toctype{app}% \else \setbox0 = \hbox{#3\enspace}% \def\toctype{numchap}% \fi\fi\fi % % Write the toc entry for this chapter. Must come before the % \donoderef, because we include the current node name in the toc % entry, and \donoderef resets it to empty. \writetocentry{\toctype}{#1}{#3}% % % For pdftex, we have to write out the node definition (aka, make % the pdfdest) after any page break, but before the actual text has % been typeset. If the destination for the pdf outline is after the % text, then jumping from the outline may wind up with the text not % being visible, for instance under high magnification. \donoderef{#2}% % % Typeset the actual heading. \nobreak % Avoid page breaks at the interline glue. \vbox{\hyphenpenalty=10000 \tolerance=5000 \parindent=0pt \ptexraggedright \hangindent=\wd0 \centerparametersmaybe \unhbox0 #1\par}% }% \nobreak\bigskip % no page break after a chapter title \nobreak } % @centerchap -- centered and unnumbered. \let\centerparametersmaybe = \relax \def\centerparameters{% \advance\rightskip by 3\rightskip \leftskip = \rightskip \parfillskip = 0pt } % I don't think this chapter style is supported any more, so I'm not % updating it with the new noderef stuff. We'll see. --karl, 11aug03. % \def\setchapterstyle #1 {\csname CHAPF#1\endcsname} % \def\unnchfopen #1{% \chapoddpage {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 \parindent=0pt\ptexraggedright \rmisbold #1\hfill}}\bigskip \par\nobreak } \def\chfopen #1#2{\chapoddpage {\chapfonts \vbox to 3in{\vfil \hbox to\hsize{\hfil #2} \hbox to\hsize{\hfil #1} \vfil}}% \par\penalty 5000 % } \def\centerchfopen #1{% \chapoddpage {\chapfonts \vbox{\hyphenpenalty=10000\tolerance=5000 \parindent=0pt \hfill {\rmisbold #1}\hfill}}\bigskip \par\nobreak } \def\CHAPFopen{% \global\let\chapmacro=\chfopen \global\let\centerchapmacro=\centerchfopen} % Section titles. These macros combine the section number parts and % call the generic \sectionheading to do the printing. % \newskip\secheadingskip \def\secheadingbreak{\dobreak \secheadingskip{-1000}} % Subsection titles. \newskip\subsecheadingskip \def\subsecheadingbreak{\dobreak \subsecheadingskip{-500}} % Subsubsection titles. \def\subsubsecheadingskip{\subsecheadingskip} \def\subsubsecheadingbreak{\subsecheadingbreak} % Print any size, any type, section title. % % #1 is the text, #2 is the section level (sec/subsec/subsubsec), #3 is % the section type for xrefs (Ynumbered, Ynothing, Yappendix), #4 is the % section number. % \def\seckeyword{sec} % \def\sectionheading#1#2#3#4{% {% \checkenv{}% should not be in an environment. % % Switch to the right set of fonts. \csname #2fonts\endcsname \rmisbold % \def\sectionlevel{#2}% \def\temptype{#3}% % % Insert first mark before the heading break (see notes for \domark). \let\prevsectiondefs=\lastsectiondefs \ifx\temptype\Ynothingkeyword \ifx\sectionlevel\seckeyword \gdef\lastsectiondefs{\gdef\thissectionname{#1}\gdef\thissectionnum{}% \gdef\thissection{\thissectionname}}% \fi \else\ifx\temptype\Yomitfromtockeyword % Don't redefine \thissection. \else\ifx\temptype\Yappendixkeyword \ifx\sectionlevel\seckeyword \toks0={#1}% \xdef\lastsectiondefs{% \gdef\noexpand\thissectionname{\the\toks0}% \gdef\noexpand\thissectionnum{#4}% % \noexpand\putwordSection avoids expanding indigestible % commands in some of the translations. \gdef\noexpand\thissection{\noexpand\putwordSection{} \noexpand\thissectionnum: \noexpand\thissectionname}% }% \fi \else \ifx\sectionlevel\seckeyword \toks0={#1}% \xdef\lastsectiondefs{% \gdef\noexpand\thissectionname{\the\toks0}% \gdef\noexpand\thissectionnum{#4}% % \noexpand\putwordSection avoids expanding indigestible % commands in some of the translations. \gdef\noexpand\thissection{\noexpand\putwordSection{} \noexpand\thissectionnum: \noexpand\thissectionname}% }% \fi \fi\fi\fi % % Go into vertical mode. Usually we'll already be there, but we % don't want the following whatsit to end up in a preceding paragraph % if the document didn't happen to have a blank line. \par % % Output the mark. Pass it through \safewhatsit, to take care of % the preceding space. \safewhatsit\domark % % Insert space above the heading. \csname #2headingbreak\endcsname % % Now the second mark, after the heading break. No break points % between here and the heading. \let\prevsectiondefs=\lastsectiondefs \domark % % Only insert the space after the number if we have a section number. \ifx\temptype\Ynothingkeyword \setbox0 = \hbox{}% \def\toctype{unn}% \gdef\lastsection{#1}% \else\ifx\temptype\Yomitfromtockeyword % for @headings -- no section number, don't include in toc, % and don't redefine \lastsection. \setbox0 = \hbox{}% \def\toctype{omit}% \let\sectionlevel=\empty \else\ifx\temptype\Yappendixkeyword \setbox0 = \hbox{#4\enspace}% \def\toctype{app}% \gdef\lastsection{#1}% \else \setbox0 = \hbox{#4\enspace}% \def\toctype{num}% \gdef\lastsection{#1}% \fi\fi\fi % % Write the toc entry (before \donoderef). See comments in \chapmacro. \writetocentry{\toctype\sectionlevel}{#1}{#4}% % % Write the node reference (= pdf destination for pdftex). % Again, see comments in \chapmacro. \donoderef{#3}% % % Interline glue will be inserted when the vbox is completed. % That glue will be a valid breakpoint for the page, since it'll be % preceded by a whatsit (usually from the \donoderef, or from the % \writetocentry if there was no node). We don't want to allow that % break, since then the whatsits could end up on page n while the % section is on page n+1, thus toc/etc. are wrong. Debian bug 276000. \nobreak % % Output the actual section heading. \vbox{\hyphenpenalty=10000 \tolerance=5000 \parindent=0pt \ptexraggedright \hangindent=\wd0 % zero if no section number \unhbox0 #1}% }% % Add extra space after the heading -- half of whatever came above it. % Don't allow stretch, though. \kern .5 \csname #2headingskip\endcsname % % Do not let the kern be a potential breakpoint, as it would be if it % was followed by glue. \nobreak % % We'll almost certainly start a paragraph next, so don't let that % glue accumulate. (Not a breakpoint because it's preceded by a % discardable item.) However, when a paragraph is not started next % (\startdefun, \cartouche, \center, etc.), this needs to be wiped out % or the negative glue will cause weirdly wrong output, typically % obscuring the section heading with something else. \vskip-\parskip % % This is so the last item on the main vertical list is a known % \penalty > 10000, so \startdefun, etc., can recognize the situation % and do the needful. \penalty 10001 } \message{toc,} % Table of contents. \newwrite\tocfile % Write an entry to the toc file, opening it if necessary. % Called from @chapter, etc. % % Example usage: \writetocentry{sec}{Section Name}{\the\chapno.\the\secno} % We append the current node name (if any) and page number as additional % arguments for the \{chap,sec,...}entry macros which will eventually % read this. The node name is used in the pdf outlines as the % destination to jump to. % % We open the .toc file for writing here instead of at @setfilename (or % any other fixed time) so that @contents can be anywhere in the document. % But if #1 is `omit', then we don't do anything. This is used for the % table of contents chapter openings themselves. % \newif\iftocfileopened \def\omitkeyword{omit}% % \def\writetocentry#1#2#3{% \edef\writetoctype{#1}% \ifx\writetoctype\omitkeyword \else \iftocfileopened\else \immediate\openout\tocfile = \jobname.toc \global\tocfileopenedtrue \fi % \iflinks {\atdummies \edef\temp{% \write\tocfile{@#1entry{#2}{#3}{\lastnode}{\noexpand\folio}}}% \temp }% \fi \fi % % Tell \shipout to create a pdf destination on each page, if we're % writing pdf. These are used in the table of contents. We can't % just write one on every page because the title pages are numbered % 1 and 2 (the page numbers aren't printed), and so are the first % two pages of the document. Thus, we'd have two destinations named % `1', and two named `2'. \ifpdf \global\pdfmakepagedesttrue \fi } % These characters do not print properly in the Computer Modern roman % fonts, so we must take special care. This is more or less redundant % with the Texinfo input format setup at the end of this file. % \def\activecatcodes{% \catcode`\"=\active \catcode`\$=\active \catcode`\<=\active \catcode`\>=\active \catcode`\\=\active \catcode`\^=\active \catcode`\_=\active \catcode`\|=\active \catcode`\~=\active } % Read the toc file, which is essentially Texinfo input. \def\readtocfile{% \setupdatafile \activecatcodes \input \tocreadfilename } \newskip\contentsrightmargin \contentsrightmargin=1in \newcount\savepageno \newcount\lastnegativepageno \lastnegativepageno = -1 % Prepare to read what we've written to \tocfile. % \def\startcontents#1{% % If @setchapternewpage on, and @headings double, the contents should % start on an odd page, unlike chapters. Thus, we maintain % \contentsalignmacro in parallel with \pagealignmacro. % From: Torbjorn Granlund \contentsalignmacro \immediate\closeout\tocfile % % Don't need to put `Contents' or `Short Contents' in the headline. % It is abundantly clear what they are. \chapmacro{#1}{Yomitfromtoc}{}% % \savepageno = \pageno \begingroup % Set up to handle contents files properly. \raggedbottom % Worry more about breakpoints than the bottom. \advance\hsize by -\contentsrightmargin % Don't use the full line length. % % Roman numerals for page numbers. \ifnum \pageno>0 \global\pageno = \lastnegativepageno \fi } % redefined for the two-volume lispref. We always output on % \jobname.toc even if this is redefined. % \def\tocreadfilename{\jobname.toc} % Normal (long) toc. % \def\contents{% \startcontents{\putwordTOC}% \openin 1 \tocreadfilename\space \ifeof 1 \else \readtocfile \fi \vfill \eject \contentsalignmacro % in case @setchapternewpage odd is in effect \ifeof 1 \else \pdfmakeoutlines \fi \closein 1 \endgroup \lastnegativepageno = \pageno \global\pageno = \savepageno } % And just the chapters. \def\summarycontents{% \startcontents{\putwordShortTOC}% % \let\partentry = \shortpartentry \let\numchapentry = \shortchapentry \let\appentry = \shortchapentry \let\unnchapentry = \shortunnchapentry % We want a true roman here for the page numbers. \secfonts \let\rm=\shortcontrm \let\bf=\shortcontbf \let\sl=\shortcontsl \let\tt=\shortconttt \rm \hyphenpenalty = 10000 \advance\baselineskip by 1pt % Open it up a little. \def\numsecentry##1##2##3##4{} \let\appsecentry = \numsecentry \let\unnsecentry = \numsecentry \let\numsubsecentry = \numsecentry \let\appsubsecentry = \numsecentry \let\unnsubsecentry = \numsecentry \let\numsubsubsecentry = \numsecentry \let\appsubsubsecentry = \numsecentry \let\unnsubsubsecentry = \numsecentry \openin 1 \tocreadfilename\space \ifeof 1 \else \readtocfile \fi \closein 1 \vfill \eject \contentsalignmacro % in case @setchapternewpage odd is in effect \endgroup \lastnegativepageno = \pageno \global\pageno = \savepageno } \let\shortcontents = \summarycontents % Typeset the label for a chapter or appendix for the short contents. % The arg is, e.g., `A' for an appendix, or `3' for a chapter. % \def\shortchaplabel#1{% % This space should be enough, since a single number is .5em, and the % widest letter (M) is 1em, at least in the Computer Modern fonts. % But use \hss just in case. % (This space doesn't include the extra space that gets added after % the label; that gets put in by \shortchapentry above.) % % We'd like to right-justify chapter numbers, but that looks strange % with appendix letters. And right-justifying numbers and % left-justifying letters looks strange when there is less than 10 % chapters. Have to read the whole toc once to know how many chapters % there are before deciding ... \hbox to 1em{#1\hss}% } % These macros generate individual entries in the table of contents. % The first argument is the chapter or section name. % The last argument is the page number. % The arguments in between are the chapter number, section number, ... % Parts, in the main contents. Replace the part number, which doesn't % exist, with an empty box. Let's hope all the numbers have the same width. % Also ignore the page number, which is conventionally not printed. \def\numeralbox{\setbox0=\hbox{8}\hbox to \wd0{\hfil}} \def\partentry#1#2#3#4{\dochapentry{\numeralbox\labelspace#1}{}} % % Parts, in the short toc. \def\shortpartentry#1#2#3#4{% \penalty-300 \vskip.5\baselineskip plus.15\baselineskip minus.1\baselineskip \shortchapentry{{\bf #1}}{\numeralbox}{}{}% } % Chapters, in the main contents. \def\numchapentry#1#2#3#4{\dochapentry{#2\labelspace#1}{#4}} % % Chapters, in the short toc. % See comments in \dochapentry re vbox and related settings. \def\shortchapentry#1#2#3#4{% \tocentry{\shortchaplabel{#2}\labelspace #1}{\doshortpageno\bgroup#4\egroup}% } % Appendices, in the main contents. % Need the word Appendix, and a fixed-size box. % \def\appendixbox#1{% % We use M since it's probably the widest letter. \setbox0 = \hbox{\putwordAppendix{} M}% \hbox to \wd0{\putwordAppendix{} #1\hss}} % \def\appentry#1#2#3#4{\dochapentry{\appendixbox{#2}\labelspace#1}{#4}} % Unnumbered chapters. \def\unnchapentry#1#2#3#4{\dochapentry{#1}{#4}} \def\shortunnchapentry#1#2#3#4{\tocentry{#1}{\doshortpageno\bgroup#4\egroup}} % Sections. \def\numsecentry#1#2#3#4{\dosecentry{#2\labelspace#1}{#4}} \let\appsecentry=\numsecentry \def\unnsecentry#1#2#3#4{\dosecentry{#1}{#4}} % Subsections. \def\numsubsecentry#1#2#3#4{\dosubsecentry{#2\labelspace#1}{#4}} \let\appsubsecentry=\numsubsecentry \def\unnsubsecentry#1#2#3#4{\dosubsecentry{#1}{#4}} % And subsubsections. \def\numsubsubsecentry#1#2#3#4{\dosubsubsecentry{#2\labelspace#1}{#4}} \let\appsubsubsecentry=\numsubsubsecentry \def\unnsubsubsecentry#1#2#3#4{\dosubsubsecentry{#1}{#4}} % This parameter controls the indentation of the various levels. % Same as \defaultparindent. \newdimen\tocindent \tocindent = 15pt % Now for the actual typesetting. In all these, #1 is the text and #2 is the % page number. % % If the toc has to be broken over pages, we want it to be at chapters % if at all possible; hence the \penalty. \def\dochapentry#1#2{% \penalty-300 \vskip1\baselineskip plus.33\baselineskip minus.25\baselineskip \begingroup \chapentryfonts \tocentry{#1}{\dopageno\bgroup#2\egroup}% \endgroup \nobreak\vskip .25\baselineskip plus.1\baselineskip } \def\dosecentry#1#2{\begingroup \secentryfonts \leftskip=\tocindent \tocentry{#1}{\dopageno\bgroup#2\egroup}% \endgroup} \def\dosubsecentry#1#2{\begingroup \subsecentryfonts \leftskip=2\tocindent \tocentry{#1}{\dopageno\bgroup#2\egroup}% \endgroup} \def\dosubsubsecentry#1#2{\begingroup \subsubsecentryfonts \leftskip=3\tocindent \tocentry{#1}{\dopageno\bgroup#2\egroup}% \endgroup} % We use the same \entry macro as for the index entries. \let\tocentry = \entry % Space between chapter (or whatever) number and the title. \def\labelspace{\hskip1em \relax} \def\dopageno#1{{\rm #1}} \def\doshortpageno#1{{\rm #1}} \def\chapentryfonts{\secfonts \rm} \def\secentryfonts{\textfonts} \def\subsecentryfonts{\textfonts} \def\subsubsecentryfonts{\textfonts} \message{environments,} % @foo ... @end foo. % @tex ... @end tex escapes into raw TeX temporarily. % One exception: @ is still an escape character, so that @end tex works. % But \@ or @@ will get a plain @ character. \envdef\tex{% \setupmarkupstyle{tex}% \catcode `\\=0 \catcode `\{=1 \catcode `\}=2 \catcode `\$=3 \catcode `\&=4 \catcode `\#=6 \catcode `\^=7 \catcode `\_=8 \catcode `\~=\active \let~=\tie \catcode `\%=14 \catcode `\+=\other \catcode `\"=\other \catcode `\|=\other \catcode `\<=\other \catcode `\>=\other \catcode`\`=\other \catcode`\'=\other \escapechar=`\\ % % ' is active in math mode (mathcode"8000). So reset it, and all our % other math active characters (just in case), to plain's definitions. \mathactive % \let\b=\ptexb \let\bullet=\ptexbullet \let\c=\ptexc \let\,=\ptexcomma \let\.=\ptexdot \let\dots=\ptexdots \let\equiv=\ptexequiv \let\!=\ptexexclam \let\i=\ptexi \let\indent=\ptexindent \let\noindent=\ptexnoindent \let\{=\ptexlbrace \let\+=\tabalign \let\}=\ptexrbrace \let\/=\ptexslash \let\*=\ptexstar \let\t=\ptext \expandafter \let\csname top\endcsname=\ptextop % outer \let\frenchspacing=\plainfrenchspacing % \def\endldots{\mathinner{\ldots\ldots\ldots\ldots}}% \def\enddots{\relax\ifmmode\endldots\else$\mathsurround=0pt \endldots\,$\fi}% \def\@{@}% } % There is no need to define \Etex. % Define @lisp ... @end lisp. % @lisp environment forms a group so it can rebind things, % including the definition of @end lisp (which normally is erroneous). % Amount to narrow the margins by for @lisp. \newskip\lispnarrowing \lispnarrowing=0.4in % This is the definition that ^^M gets inside @lisp, @example, and other % such environments. \null is better than a space, since it doesn't % have any width. \def\lisppar{\null\endgraf} % This space is always present above and below environments. \newskip\envskipamount \envskipamount = 0pt % Make spacing and below environment symmetrical. We use \parskip here % to help in doing that, since in @example-like environments \parskip % is reset to zero; thus the \afterenvbreak inserts no space -- but the % start of the next paragraph will insert \parskip. % \def\aboveenvbreak{{% % =10000 instead of <10000 because of a special case in \itemzzz and % \sectionheading, q.v. \ifnum \lastpenalty=10000 \else \advance\envskipamount by \parskip \endgraf \ifdim\lastskip<\envskipamount \removelastskip % it's not a good place to break if the last penalty was \nobreak % or better ... \ifnum\lastpenalty<10000 \penalty-50 \fi \vskip\envskipamount \fi \fi }} \let\afterenvbreak = \aboveenvbreak % \nonarrowing is a flag. If "set", @lisp etc don't narrow margins; it will % also clear it, so that its embedded environments do the narrowing again. \let\nonarrowing=\relax % @cartouche ... @end cartouche: draw rectangle w/rounded corners around % environment contents. \font\circle=lcircle10 \newdimen\circthick \newdimen\cartouter\newdimen\cartinner \newskip\normbskip\newskip\normpskip\newskip\normlskip \circthick=\fontdimen8\circle % \def\ctl{{\circle\char'013\hskip -6pt}}% 6pt from pl file: 1/2charwidth \def\ctr{{\hskip 6pt\circle\char'010}} \def\cbl{{\circle\char'012\hskip -6pt}} \def\cbr{{\hskip 6pt\circle\char'011}} \def\carttop{\hbox to \cartouter{\hskip\lskip \ctl\leaders\hrule height\circthick\hfil\ctr \hskip\rskip}} \def\cartbot{\hbox to \cartouter{\hskip\lskip \cbl\leaders\hrule height\circthick\hfil\cbr \hskip\rskip}} % \newskip\lskip\newskip\rskip \envdef\cartouche{% \ifhmode\par\fi % can't be in the midst of a paragraph. \startsavinginserts \lskip=\leftskip \rskip=\rightskip \leftskip=0pt\rightskip=0pt % we want these *outside*. \cartinner=\hsize \advance\cartinner by-\lskip \advance\cartinner by-\rskip \cartouter=\hsize \advance\cartouter by 18.4pt % allow for 3pt kerns on either % side, and for 6pt waste from % each corner char, and rule thickness \normbskip=\baselineskip \normpskip=\parskip \normlskip=\lineskip % Flag to tell @lisp, etc., not to narrow margin. \let\nonarrowing = t% % % If this cartouche directly follows a sectioning command, we need the % \parskip glue (backspaced over by default) or the cartouche can % collide with the section heading. \ifnum\lastpenalty>10000 \vskip\parskip \penalty\lastpenalty \fi % \vbox\bgroup \baselineskip=0pt\parskip=0pt\lineskip=0pt \carttop \hbox\bgroup \hskip\lskip \vrule\kern3pt \vbox\bgroup \kern3pt \hsize=\cartinner \baselineskip=\normbskip \lineskip=\normlskip \parskip=\normpskip \vskip -\parskip \comment % For explanation, see the end of def\group. } \def\Ecartouche{% \ifhmode\par\fi \kern3pt \egroup \kern3pt\vrule \hskip\rskip \egroup \cartbot \egroup \checkinserts } % This macro is called at the beginning of all the @example variants, % inside a group. \newdimen\nonfillparindent \def\nonfillstart{% \aboveenvbreak \hfuzz = 12pt % Don't be fussy \sepspaces % Make spaces be word-separators rather than space tokens. \let\par = \lisppar % don't ignore blank lines \obeylines % each line of input is a line of output \parskip = 0pt % Turn off paragraph indentation but redefine \indent to emulate % the normal \indent. \nonfillparindent=\parindent \parindent = 0pt \let\indent\nonfillindent % \emergencystretch = 0pt % don't try to avoid overfull boxes \ifx\nonarrowing\relax \advance \leftskip by \lispnarrowing \exdentamount=\lispnarrowing \else \let\nonarrowing = \relax \fi \let\exdent=\nofillexdent } \begingroup \obeyspaces % We want to swallow spaces (but not other tokens) after the fake % @indent in our nonfill-environments, where spaces are normally % active and set to @tie, resulting in them not being ignored after % @indent. \gdef\nonfillindent{\futurelet\temp\nonfillindentcheck}% \gdef\nonfillindentcheck{% \ifx\temp % \expandafter\nonfillindentgobble% \else% \leavevmode\nonfillindentbox% \fi% }% \endgroup \def\nonfillindentgobble#1{\nonfillindent} \def\nonfillindentbox{\hbox to \nonfillparindent{\hss}} % If you want all examples etc. small: @set dispenvsize small. % If you want even small examples the full size: @set dispenvsize nosmall. % This affects the following displayed environments: % @example, @display, @format, @lisp % \def\smallword{small} \def\nosmallword{nosmall} \let\SETdispenvsize\relax \def\setnormaldispenv{% \ifx\SETdispenvsize\smallword % end paragraph for sake of leading, in case document has no blank % line. This is redundant with what happens in \aboveenvbreak, but % we need to do it before changing the fonts, and it's inconvenient % to change the fonts afterward. \ifnum \lastpenalty=10000 \else \endgraf \fi \smallexamplefonts \rm \fi } \def\setsmalldispenv{% \ifx\SETdispenvsize\nosmallword \else \ifnum \lastpenalty=10000 \else \endgraf \fi \smallexamplefonts \rm \fi } % We often define two environments, @foo and @smallfoo. % Let's do it in one command. #1 is the env name, #2 the definition. \def\makedispenvdef#1#2{% \expandafter\envdef\csname#1\endcsname {\setnormaldispenv #2}% \expandafter\envdef\csname small#1\endcsname {\setsmalldispenv #2}% \expandafter\let\csname E#1\endcsname \afterenvbreak \expandafter\let\csname Esmall#1\endcsname \afterenvbreak } % Define two environment synonyms (#1 and #2) for an environment. \def\maketwodispenvdef#1#2#3{% \makedispenvdef{#1}{#3}% \makedispenvdef{#2}{#3}% } % % @lisp: indented, narrowed, typewriter font; % @example: same as @lisp. % % @smallexample and @smalllisp: use smaller fonts. % Originally contributed by Pavel@xerox. % \maketwodispenvdef{lisp}{example}{% \nonfillstart \tt\setupmarkupstyle{example}% \let\kbdfont = \kbdexamplefont % Allow @kbd to do something special. \gobble % eat return } % @display/@smalldisplay: same as @lisp except keep current font. % \makedispenvdef{display}{% \nonfillstart \gobble } % @format/@smallformat: same as @display except don't narrow margins. % \makedispenvdef{format}{% \let\nonarrowing = t% \nonfillstart \gobble } % @flushleft: same as @format, but doesn't obey \SETdispenvsize. \envdef\flushleft{% \let\nonarrowing = t% \nonfillstart \gobble } \let\Eflushleft = \afterenvbreak % @flushright. % \envdef\flushright{% \let\nonarrowing = t% \nonfillstart \advance\leftskip by 0pt plus 1fill\relax \gobble } \let\Eflushright = \afterenvbreak % @raggedright does more-or-less normal line breaking but no right % justification. From plain.tex. \envdef\raggedright{% \rightskip0pt plus2em \spaceskip.3333em \xspaceskip.5em\relax } \let\Eraggedright\par \envdef\raggedleft{% \parindent=0pt \leftskip0pt plus2em \spaceskip.3333em \xspaceskip.5em \parfillskip=0pt \hbadness=10000 % Last line will usually be underfull, so turn off % badness reporting. } \let\Eraggedleft\par \envdef\raggedcenter{% \parindent=0pt \rightskip0pt plus1em \leftskip0pt plus1em \spaceskip.3333em \xspaceskip.5em \parfillskip=0pt \hbadness=10000 % Last line will usually be underfull, so turn off % badness reporting. } \let\Eraggedcenter\par % @quotation does normal linebreaking (hence we can't use \nonfillstart) % and narrows the margins. We keep \parskip nonzero in general, since % we're doing normal filling. So, when using \aboveenvbreak and % \afterenvbreak, temporarily make \parskip 0. % \makedispenvdef{quotation}{\quotationstart} % \def\quotationstart{% {\parskip=0pt \aboveenvbreak}% because \aboveenvbreak inserts \parskip \parindent=0pt % % @cartouche defines \nonarrowing to inhibit narrowing at next level down. \ifx\nonarrowing\relax \advance\leftskip by \lispnarrowing \advance\rightskip by \lispnarrowing \exdentamount = \lispnarrowing \else \let\nonarrowing = \relax \fi \parsearg\quotationlabel } % We have retained a nonzero parskip for the environment, since we're % doing normal filling. % \def\Equotation{% \par \ifx\quotationauthor\thisisundefined\else % indent a bit. \leftline{\kern 2\leftskip \sl ---\quotationauthor}% \fi {\parskip=0pt \afterenvbreak}% } \def\Esmallquotation{\Equotation} % If we're given an argument, typeset it in bold with a colon after. \def\quotationlabel#1{% \def\temp{#1}% \ifx\temp\empty \else {\bf #1: }% \fi } % LaTeX-like @verbatim...@end verbatim and @verb{...} % If we want to allow any as delimiter, % we need the curly braces so that makeinfo sees the @verb command, eg: % `@verbx...x' would look like the '@verbx' command. --janneke@gnu.org % % [Knuth]: Donald Ervin Knuth, 1996. The TeXbook. % % [Knuth] p.344; only we need to do the other characters Texinfo sets % active too. Otherwise, they get lost as the first character on a % verbatim line. \def\dospecials{% \do\ \do\\\do\{\do\}\do\$\do\&% \do\#\do\^\do\^^K\do\_\do\^^A\do\%\do\~% \do\<\do\>\do\|\do\@\do+\do\"% % Don't do the quotes -- if we do, @set txicodequoteundirected and % @set txicodequotebacktick will not have effect on @verb and % @verbatim, and ?` and !` ligatures won't get disabled. %\do\`\do\'% } % % [Knuth] p. 380 \def\uncatcodespecials{% \def\do##1{\catcode`##1=\other}\dospecials} % % Setup for the @verb command. % % Eight spaces for a tab \begingroup \catcode`\^^I=\active \gdef\tabeightspaces{\catcode`\^^I=\active\def^^I{\ \ \ \ \ \ \ \ }} \endgroup % \def\setupverb{% \tt % easiest (and conventionally used) font for verbatim \def\par{\leavevmode\endgraf}% \setupmarkupstyle{verb}% \tabeightspaces % Respect line breaks, % print special symbols as themselves, and % make each space count % must do in this order: \obeylines \uncatcodespecials \sepspaces } % Setup for the @verbatim environment % % Real tab expansion. \newdimen\tabw \setbox0=\hbox{\tt\space} \tabw=8\wd0 % tab amount % % We typeset each line of the verbatim in an \hbox, so we can handle % tabs. The \global is in case the verbatim line starts with an accent, % or some other command that starts with a begin-group. Otherwise, the % entire \verbbox would disappear at the corresponding end-group, before % it is typeset. Meanwhile, we can't have nested verbatim commands % (can we?), so the \global won't be overwriting itself. \newbox\verbbox \def\starttabbox{\global\setbox\verbbox=\hbox\bgroup} % \begingroup \catcode`\^^I=\active \gdef\tabexpand{% \catcode`\^^I=\active \def^^I{\leavevmode\egroup \dimen\verbbox=\wd\verbbox % the width so far, or since the previous tab \divide\dimen\verbbox by\tabw \multiply\dimen\verbbox by\tabw % compute previous multiple of \tabw \advance\dimen\verbbox by\tabw % advance to next multiple of \tabw \wd\verbbox=\dimen\verbbox \box\verbbox \starttabbox }% } \endgroup % start the verbatim environment. \def\setupverbatim{% \let\nonarrowing = t% \nonfillstart \tt % easiest (and conventionally used) font for verbatim % The \leavevmode here is for blank lines. Otherwise, we would % never \starttabox and the \egroup would end verbatim mode. \def\par{\leavevmode\egroup\box\verbbox\endgraf}% \tabexpand \setupmarkupstyle{verbatim}% % Respect line breaks, % print special symbols as themselves, and % make each space count. % Must do in this order: \obeylines \uncatcodespecials \sepspaces \everypar{\starttabbox}% } % Do the @verb magic: verbatim text is quoted by unique % delimiter characters. Before first delimiter expect a % right brace, after last delimiter expect closing brace: % % \def\doverb'{'#1'}'{#1} % % [Knuth] p. 382; only eat outer {} \begingroup \catcode`[=1\catcode`]=2\catcode`\{=\other\catcode`\}=\other \gdef\doverb{#1[\def\next##1#1}[##1\endgroup]\next] \endgroup % \def\verb{\begingroup\setupverb\doverb} % % % Do the @verbatim magic: define the macro \doverbatim so that % the (first) argument ends when '@end verbatim' is reached, ie: % % \def\doverbatim#1@end verbatim{#1} % % For Texinfo it's a lot easier than for LaTeX, % because texinfo's \verbatim doesn't stop at '\end{verbatim}': % we need not redefine '\', '{' and '}'. % % Inspired by LaTeX's verbatim command set [latex.ltx] % \begingroup \catcode`\ =\active \obeylines % % ignore everything up to the first ^^M, that's the newline at the end % of the @verbatim input line itself. Otherwise we get an extra blank % line in the output. \xdef\doverbatim#1^^M#2@end verbatim{#2\noexpand\end\gobble verbatim}% % We really want {...\end verbatim} in the body of the macro, but % without the active space; thus we have to use \xdef and \gobble. \endgroup % \envdef\verbatim{% \setupverbatim\doverbatim } \let\Everbatim = \afterenvbreak % @verbatiminclude FILE - insert text of file in verbatim environment. % \def\verbatiminclude{\parseargusing\filenamecatcodes\doverbatiminclude} % \def\doverbatiminclude#1{% {% \makevalueexpandable \setupverbatim \indexnofonts % Allow `@@' and other weird things in file names. \wlog{texinfo.tex: doing @verbatiminclude of #1^^J}% \input #1 \afterenvbreak }% } % @copying ... @end copying. % Save the text away for @insertcopying later. % % We save the uninterpreted tokens, rather than creating a box. % Saving the text in a box would be much easier, but then all the % typesetting commands (@smallbook, font changes, etc.) have to be done % beforehand -- and a) we want @copying to be done first in the source % file; b) letting users define the frontmatter in as flexible order as % possible is very desirable. % \def\copying{\checkenv{}\begingroup\scanargctxt\docopying} \def\docopying#1@end copying{\endgroup\def\copyingtext{#1}} % \def\insertcopying{% \begingroup \parindent = 0pt % paragraph indentation looks wrong on title page \scanexp\copyingtext \endgroup } \message{defuns,} % @defun etc. \newskip\defbodyindent \defbodyindent=.4in \newskip\defargsindent \defargsindent=50pt \newskip\deflastargmargin \deflastargmargin=18pt \newcount\defunpenalty % Start the processing of @deffn: \def\startdefun{% \ifnum\lastpenalty<10000 \medbreak \defunpenalty=10003 % Will keep this @deffn together with the % following @def command, see below. \else % If there are two @def commands in a row, we'll have a \nobreak, % which is there to keep the function description together with its % header. But if there's nothing but headers, we need to allow a % break somewhere. Check specifically for penalty 10002, inserted % by \printdefunline, instead of 10000, since the sectioning % commands also insert a nobreak penalty, and we don't want to allow % a break between a section heading and a defun. % % As a further refinement, we avoid "club" headers by signalling % with penalty of 10003 after the very first @deffn in the % sequence (see above), and penalty of 10002 after any following % @def command. \ifnum\lastpenalty=10002 \penalty2000 \else \defunpenalty=10002 \fi % % Similarly, after a section heading, do not allow a break. % But do insert the glue. \medskip % preceded by discardable penalty, so not a breakpoint \fi % \parindent=0in \advance\leftskip by \defbodyindent \exdentamount=\defbodyindent } \def\dodefunx#1{% % First, check whether we are in the right environment: \checkenv#1% % % As above, allow line break if we have multiple x headers in a row. % It's not a great place, though. \ifnum\lastpenalty=10002 \penalty3000 \else \defunpenalty=10002 \fi % % And now, it's time to reuse the body of the original defun: \expandafter\gobbledefun#1% } \def\gobbledefun#1\startdefun{} % \printdefunline \deffnheader{text} % \def\printdefunline#1#2{% \begingroup % call \deffnheader: #1#2 \endheader % common ending: \interlinepenalty = 10000 \advance\rightskip by 0pt plus 1fil\relax \endgraf \nobreak\vskip -\parskip \penalty\defunpenalty % signal to \startdefun and \dodefunx % Some of the @defun-type tags do not enable magic parentheses, % rendering the following check redundant. But we don't optimize. \checkparencounts \endgroup } \def\Edefun{\endgraf\medbreak} % \makedefun{deffn} creates \deffn, \deffnx and \Edeffn; % the only thing remaining is to define \deffnheader. % \def\makedefun#1{% \expandafter\let\csname E#1\endcsname = \Edefun \edef\temp{\noexpand\domakedefun \makecsname{#1}\makecsname{#1x}\makecsname{#1header}}% \temp } % \domakedefun \deffn \deffnx \deffnheader % % Define \deffn and \deffnx, without parameters. % \deffnheader has to be defined explicitly. % \def\domakedefun#1#2#3{% \envdef#1{% \startdefun \doingtypefnfalse % distinguish typed functions from all else \parseargusing\activeparens{\printdefunline#3}% }% \def#2{\dodefunx#1}% \def#3% } \newif\ifdoingtypefn % doing typed function? \newif\ifrettypeownline % typeset return type on its own line? % @deftypefnnewline on|off says whether the return type of typed functions % are printed on their own line. This affects @deftypefn, @deftypefun, % @deftypeop, and @deftypemethod. % \parseargdef\deftypefnnewline{% \def\temp{#1}% \ifx\temp\onword \expandafter\let\csname SETtxideftypefnnl\endcsname = \empty \else\ifx\temp\offword \expandafter\let\csname SETtxideftypefnnl\endcsname = \relax \else \errhelp = \EMsimple \errmessage{Unknown @txideftypefnnl value `\temp', must be on|off}% \fi\fi } % Untyped functions: % @deffn category name args \makedefun{deffn}{\deffngeneral{}} % @deffn category class name args \makedefun{defop}#1 {\defopon{#1\ \putwordon}} % \defopon {category on}class name args \def\defopon#1#2 {\deffngeneral{\putwordon\ \code{#2}}{#1\ \code{#2}} } % \deffngeneral {subind}category name args % \def\deffngeneral#1#2 #3 #4\endheader{% % Remember that \dosubind{fn}{foo}{} is equivalent to \doind{fn}{foo}. \dosubind{fn}{\code{#3}}{#1}% \defname{#2}{}{#3}\magicamp\defunargs{#4\unskip}% } % Typed functions: % @deftypefn category type name args \makedefun{deftypefn}{\deftypefngeneral{}} % @deftypeop category class type name args \makedefun{deftypeop}#1 {\deftypeopon{#1\ \putwordon}} % \deftypeopon {category on}class type name args \def\deftypeopon#1#2 {\deftypefngeneral{\putwordon\ \code{#2}}{#1\ \code{#2}} } % \deftypefngeneral {subind}category type name args % \def\deftypefngeneral#1#2 #3 #4 #5\endheader{% \dosubind{fn}{\code{#4}}{#1}% \doingtypefntrue \defname{#2}{#3}{#4}\defunargs{#5\unskip}% } % Typed variables: % @deftypevr category type var args \makedefun{deftypevr}{\deftypecvgeneral{}} % @deftypecv category class type var args \makedefun{deftypecv}#1 {\deftypecvof{#1\ \putwordof}} % \deftypecvof {category of}class type var args \def\deftypecvof#1#2 {\deftypecvgeneral{\putwordof\ \code{#2}}{#1\ \code{#2}} } % \deftypecvgeneral {subind}category type var args % \def\deftypecvgeneral#1#2 #3 #4 #5\endheader{% \dosubind{vr}{\code{#4}}{#1}% \defname{#2}{#3}{#4}\defunargs{#5\unskip}% } % Untyped variables: % @defvr category var args \makedefun{defvr}#1 {\deftypevrheader{#1} {} } % @defcv category class var args \makedefun{defcv}#1 {\defcvof{#1\ \putwordof}} % \defcvof {category of}class var args \def\defcvof#1#2 {\deftypecvof{#1}#2 {} } % Types: % @deftp category name args \makedefun{deftp}#1 #2 #3\endheader{% \doind{tp}{\code{#2}}% \defname{#1}{}{#2}\defunargs{#3\unskip}% } % Remaining @defun-like shortcuts: \makedefun{defun}{\deffnheader{\putwordDeffunc} } \makedefun{defmac}{\deffnheader{\putwordDefmac} } \makedefun{defspec}{\deffnheader{\putwordDefspec} } \makedefun{deftypefun}{\deftypefnheader{\putwordDeffunc} } \makedefun{defvar}{\defvrheader{\putwordDefvar} } \makedefun{defopt}{\defvrheader{\putwordDefopt} } \makedefun{deftypevar}{\deftypevrheader{\putwordDefvar} } \makedefun{defmethod}{\defopon\putwordMethodon} \makedefun{deftypemethod}{\deftypeopon\putwordMethodon} \makedefun{defivar}{\defcvof\putwordInstanceVariableof} \makedefun{deftypeivar}{\deftypecvof\putwordInstanceVariableof} % \defname, which formats the name of the @def (not the args). % #1 is the category, such as "Function". % #2 is the return type, if any. % #3 is the function name. % % We are followed by (but not passed) the arguments, if any. % \def\defname#1#2#3{% \par % Get the values of \leftskip and \rightskip as they were outside the @def... \advance\leftskip by -\defbodyindent % % Determine if we are typesetting the return type of a typed function % on a line by itself. \rettypeownlinefalse \ifdoingtypefn % doing a typed function specifically? % then check user option for putting return type on its own line: \expandafter\ifx\csname SETtxideftypefnnl\endcsname\relax \else \rettypeownlinetrue \fi \fi % % How we'll format the category name. Putting it in brackets helps % distinguish it from the body text that may end up on the next line % just below it. \def\temp{#1}% \setbox0=\hbox{\kern\deflastargmargin \ifx\temp\empty\else [\rm\temp]\fi} % % Figure out line sizes for the paragraph shape. We'll always have at % least two. \tempnum = 2 % % The first line needs space for \box0; but if \rightskip is nonzero, % we need only space for the part of \box0 which exceeds it: \dimen0=\hsize \advance\dimen0 by -\wd0 \advance\dimen0 by \rightskip % % If doing a return type on its own line, we'll have another line. \ifrettypeownline \advance\tempnum by 1 \def\maybeshapeline{0in \hsize}% \else \def\maybeshapeline{}% \fi % % The continuations: \dimen2=\hsize \advance\dimen2 by -\defargsindent % % The final paragraph shape: \parshape \tempnum 0in \dimen0 \maybeshapeline \defargsindent \dimen2 % % Put the category name at the right margin. \noindent \hbox to 0pt{% \hfil\box0 \kern-\hsize % \hsize has to be shortened this way: \kern\leftskip % Intentionally do not respect \rightskip, since we need the space. }% % % Allow all lines to be underfull without complaint: \tolerance=10000 \hbadness=10000 \exdentamount=\defbodyindent {% % defun fonts. We use typewriter by default (used to be bold) because: % . we're printing identifiers, they should be in tt in principle. % . in languages with many accents, such as Czech or French, it's % common to leave accents off identifiers. The result looks ok in % tt, but exceedingly strange in rm. % . we don't want -- and --- to be treated as ligatures. % . this still does not fix the ?` and !` ligatures, but so far no % one has made identifiers using them :). \df \tt \def\temp{#2}% text of the return type \ifx\temp\empty\else \tclose{\temp}% typeset the return type \ifrettypeownline % put return type on its own line; prohibit line break following: \hfil\vadjust{\nobreak}\break \else \space % type on same line, so just followed by a space \fi \fi % no return type #3% output function name }% {\rm\enskip}% hskip 0.5 em of \tenrm % \boldbrax % arguments will be output next, if any. } % Print arguments in slanted roman (not ttsl), inconsistently with using % tt for the name. This is because literal text is sometimes needed in % the argument list (groff manual), and ttsl and tt are not very % distinguishable. Prevent hyphenation at `-' chars. % \def\defunargs#1{% % use sl by default (not ttsl), % tt for the names. \df \sl \hyphenchar\font=0 % % On the other hand, if an argument has two dashes (for instance), we % want a way to get ttsl. Let's try @var for that. \def\var##1{{\setupmarkupstyle{var}\ttslanted{##1}}}% #1% \sl\hyphenchar\font=45 } % We want ()&[] to print specially on the defun line. % \def\activeparens{% \catcode`\(=\active \catcode`\)=\active \catcode`\[=\active \catcode`\]=\active \catcode`\&=\active } % Make control sequences which act like normal parenthesis chars. \let\lparen = ( \let\rparen = ) % Be sure that we always have a definition for `(', etc. For example, % if the fn name has parens in it, \boldbrax will not be in effect yet, % so TeX would otherwise complain about undefined control sequence. { \activeparens \global\let(=\lparen \global\let)=\rparen \global\let[=\lbrack \global\let]=\rbrack \global\let& = \& \gdef\boldbrax{\let(=\opnr\let)=\clnr\let[=\lbrb\let]=\rbrb} \gdef\magicamp{\let&=\amprm} } \newcount\parencount % If we encounter &foo, then turn on ()-hacking afterwards \newif\ifampseen \def\amprm#1 {\ampseentrue{\bf\ }} \def\parenfont{% \ifampseen % At the first level, print parens in roman, % otherwise use the default font. \ifnum \parencount=1 \rm \fi \else % The \sf parens (in \boldbrax) actually are a little bolder than % the contained text. This is especially needed for [ and ] . \sf \fi } \def\infirstlevel#1{% \ifampseen \ifnum\parencount=1 #1% \fi \fi } \def\bfafterword#1 {#1 \bf} \def\opnr{% \global\advance\parencount by 1 {\parenfont(}% \infirstlevel \bfafterword } \def\clnr{% {\parenfont)}% \infirstlevel \sl \global\advance\parencount by -1 } \newcount\brackcount \def\lbrb{% \global\advance\brackcount by 1 {\bf[}% } \def\rbrb{% {\bf]}% \global\advance\brackcount by -1 } \def\checkparencounts{% \ifnum\parencount=0 \else \badparencount \fi \ifnum\brackcount=0 \else \badbrackcount \fi } % these should not use \errmessage; the glibc manual, at least, actually % has such constructs (when documenting function pointers). \def\badparencount{% \message{Warning: unbalanced parentheses in @def...}% \global\parencount=0 } \def\badbrackcount{% \message{Warning: unbalanced square brackets in @def...}% \global\brackcount=0 } \message{macros,} % @macro. % To do this right we need a feature of e-TeX, \scantokens, % which we arrange to emulate with a temporary file in ordinary TeX. \ifx\eTeXversion\thisisundefined \newwrite\macscribble \def\scantokens#1{% \toks0={#1}% \immediate\openout\macscribble=\jobname.tmp \immediate\write\macscribble{\the\toks0}% \immediate\closeout\macscribble \input \jobname.tmp } \fi \def\scanmacro#1{\begingroup \newlinechar`\^^M \let\xeatspaces\eatspaces % % Undo catcode changes of \startcontents and \doprintindex % When called from @insertcopying or (short)caption, we need active % backslash to get it printed correctly. Previously, we had % \catcode`\\=\other instead. We'll see whether a problem appears % with macro expansion. --kasal, 19aug04 \catcode`\@=0 \catcode`\\=\active \escapechar=`\@ % % ... and for \example: \spaceisspace % % The \empty here causes a following catcode 5 newline to be eaten as % part of reading whitespace after a control sequence. It does not % eat a catcode 13 newline. There's no good way to handle the two % cases (untried: maybe e-TeX's \everyeof could help, though plain TeX % would then have different behavior). See the Macro Details node in % the manual for the workaround we recommend for macros and % line-oriented commands. % \scantokens{#1\empty}% \endgroup} \def\scanexp#1{% \edef\temp{\noexpand\scanmacro{#1}}% \temp } \newcount\paramno % Count of parameters \newtoks\macname % Macro name \newif\ifrecursive % Is it recursive? % List of all defined macros in the form % \definedummyword\macro1\definedummyword\macro2... % Currently is also contains all @aliases; the list can be split % if there is a need. \def\macrolist{} % Add the macro to \macrolist \def\addtomacrolist#1{\expandafter \addtomacrolistxxx \csname#1\endcsname} \def\addtomacrolistxxx#1{% \toks0 = \expandafter{\macrolist\definedummyword#1}% \xdef\macrolist{\the\toks0}% } % Utility routines. % This does \let #1 = #2, with \csnames; that is, % \let \csname#1\endcsname = \csname#2\endcsname % (except of course we have to play expansion games). % \def\cslet#1#2{% \expandafter\let \csname#1\expandafter\endcsname \csname#2\endcsname } % Trim leading and trailing spaces off a string. % Concepts from aro-bend problem 15 (see CTAN). {\catcode`\@=11 \gdef\eatspaces #1{\expandafter\trim@\expandafter{#1 }} \gdef\trim@ #1{\trim@@ @#1 @ #1 @ @@} \gdef\trim@@ #1@ #2@ #3@@{\trim@@@\empty #2 @} \def\unbrace#1{#1} \unbrace{\gdef\trim@@@ #1 } #2@{#1} } % Trim a single trailing ^^M off a string. {\catcode`\^^M=\other \catcode`\Q=3% \gdef\eatcr #1{\eatcra #1Q^^MQ}% \gdef\eatcra#1^^MQ{\eatcrb#1Q}% \gdef\eatcrb#1Q#2Q{#1}% } % Macro bodies are absorbed as an argument in a context where % all characters are catcode 10, 11 or 12, except \ which is active % (as in normal texinfo). It is necessary to change the definition of \ % to recognize macro arguments; this is the job of \mbodybackslash. % % Non-ASCII encodings make 8-bit characters active, so un-activate % them to avoid their expansion. Must do this non-globally, to % confine the change to the current group. % % It's necessary to have hard CRs when the macro is executed. This is % done by making ^^M (\endlinechar) catcode 12 when reading the macro % body, and then making it the \newlinechar in \scanmacro. % \def\scanctxt{% used as subroutine \catcode`\"=\other \catcode`\+=\other \catcode`\<=\other \catcode`\>=\other \catcode`\@=\other \catcode`\^=\other \catcode`\_=\other \catcode`\|=\other \catcode`\~=\other \ifx\declaredencoding\ascii \else \setnonasciicharscatcodenonglobal\other \fi } \def\scanargctxt{% used for copying and captions, not macros. \scanctxt \catcode`\\=\other \catcode`\^^M=\other } \def\macrobodyctxt{% used for @macro definitions \scanctxt \catcode`\{=\other \catcode`\}=\other \catcode`\^^M=\other \usembodybackslash } \def\macroargctxt{% used when scanning invocations \scanctxt \catcode`\\=0 } % why catcode 0 for \ in the above? To recognize \\ \{ \} as "escapes" % for the single characters \ { }. Thus, we end up with the "commands" % that would be written @\ @{ @} in a Texinfo document. % % We already have @{ and @}. For @\, we define it here, and only for % this purpose, to produce a typewriter backslash (so, the @\ that we % define for @math can't be used with @macro calls): % \def\\{\normalbackslash}% % % We would like to do this for \, too, since that is what makeinfo does. % But it is not possible, because Texinfo already has a command @, for a % cedilla accent. Documents must use @comma{} instead. % % \anythingelse will almost certainly be an error of some kind. % \mbodybackslash is the definition of \ in @macro bodies. % It maps \foo\ => \csname macarg.foo\endcsname => #N % where N is the macro parameter number. % We define \csname macarg.\endcsname to be \realbackslash, so % \\ in macro replacement text gets you a backslash. % {\catcode`@=0 @catcode`@\=@active @gdef@usembodybackslash{@let\=@mbodybackslash} @gdef@mbodybackslash#1\{@csname macarg.#1@endcsname} } \expandafter\def\csname macarg.\endcsname{\realbackslash} \def\margbackslash#1{\char`\#1 } \def\macro{\recursivefalse\parsearg\macroxxx} \def\rmacro{\recursivetrue\parsearg\macroxxx} \def\macroxxx#1{% \getargs{#1}% now \macname is the macname and \argl the arglist \ifx\argl\empty % no arguments \paramno=0\relax \else \expandafter\parsemargdef \argl;% \if\paramno>256\relax \ifx\eTeXversion\thisisundefined \errhelp = \EMsimple \errmessage{You need eTeX to compile a file with macros with more than 256 arguments} \fi \fi \fi \if1\csname ismacro.\the\macname\endcsname \message{Warning: redefining \the\macname}% \else \expandafter\ifx\csname \the\macname\endcsname \relax \else \errmessage{Macro name \the\macname\space already defined}\fi \global\cslet{macsave.\the\macname}{\the\macname}% \global\expandafter\let\csname ismacro.\the\macname\endcsname=1% \addtomacrolist{\the\macname}% \fi \begingroup \macrobodyctxt \ifrecursive \expandafter\parsermacbody \else \expandafter\parsemacbody \fi} \parseargdef\unmacro{% \if1\csname ismacro.#1\endcsname \global\cslet{#1}{macsave.#1}% \global\expandafter\let \csname ismacro.#1\endcsname=0% % Remove the macro name from \macrolist: \begingroup \expandafter\let\csname#1\endcsname \relax \let\definedummyword\unmacrodo \xdef\macrolist{\macrolist}% \endgroup \else \errmessage{Macro #1 not defined}% \fi } % Called by \do from \dounmacro on each macro. The idea is to omit any % macro definitions that have been changed to \relax. % \def\unmacrodo#1{% \ifx #1\relax % remove this \else \noexpand\definedummyword \noexpand#1% \fi } % This makes use of the obscure feature that if the last token of a % is #, then the preceding argument is delimited by % an opening brace, and that opening brace is not consumed. \def\getargs#1{\getargsxxx#1{}} \def\getargsxxx#1#{\getmacname #1 \relax\getmacargs} \def\getmacname#1 #2\relax{\macname={#1}} \def\getmacargs#1{\def\argl{#1}} % For macro processing make @ a letter so that we can make Texinfo private macro names. \edef\texiatcatcode{\the\catcode`\@} \catcode `@=11\relax % Parse the optional {params} list. Set up \paramno and \paramlist % so \defmacro knows what to do. Define \macarg.BLAH for each BLAH % in the params list to some hook where the argument si to be expanded. If % there are less than 10 arguments that hook is to be replaced by ##N where N % is the position in that list, that is to say the macro arguments are to be % defined `a la TeX in the macro body. % % That gets used by \mbodybackslash (above). % % We need to get `macro parameter char #' into several definitions. % The technique used is stolen from LaTeX: let \hash be something % unexpandable, insert that wherever you need a #, and then redefine % it to # just before using the token list produced. % % The same technique is used to protect \eatspaces till just before % the macro is used. % % If there are 10 or more arguments, a different technique is used, where the % hook remains in the body, and when macro is to be expanded the body is % processed again to replace the arguments. % % In that case, the hook is \the\toks N-1, and we simply set \toks N-1 to the % argument N value and then \edef the body (nothing else will expand because of % the catcode regime underwhich the body was input). % % If you compile with TeX (not eTeX), and you have macros with 10 or more % arguments, you need that no macro has more than 256 arguments, otherwise an % error is produced. \def\parsemargdef#1;{% \paramno=0\def\paramlist{}% \let\hash\relax \let\xeatspaces\relax \parsemargdefxxx#1,;,% % In case that there are 10 or more arguments we parse again the arguments % list to set new definitions for the \macarg.BLAH macros corresponding to % each BLAH argument. It was anyhow needed to parse already once this list % in order to count the arguments, and as macros with at most 9 arguments % are by far more frequent than macro with 10 or more arguments, defining % twice the \macarg.BLAH macros does not cost too much processing power. \ifnum\paramno<10\relax\else \paramno0\relax \parsemmanyargdef@@#1,;,% 10 or more arguments \fi } \def\parsemargdefxxx#1,{% \if#1;\let\next=\relax \else \let\next=\parsemargdefxxx \advance\paramno by 1 \expandafter\edef\csname macarg.\eatspaces{#1}\endcsname {\xeatspaces{\hash\the\paramno}}% \edef\paramlist{\paramlist\hash\the\paramno,}% \fi\next} \def\parsemmanyargdef@@#1,{% \if#1;\let\next=\relax \else \let\next=\parsemmanyargdef@@ \edef\tempb{\eatspaces{#1}}% \expandafter\def\expandafter\tempa \expandafter{\csname macarg.\tempb\endcsname}% % Note that we need some extra \noexpand\noexpand, this is because we % don't want \the to be expanded in the \parsermacbody as it uses an % \xdef . \expandafter\edef\tempa {\noexpand\noexpand\noexpand\the\toks\the\paramno}% \advance\paramno by 1\relax \fi\next} % These two commands read recursive and nonrecursive macro bodies. % (They're different since rec and nonrec macros end differently.) % \catcode `\@\texiatcatcode \long\def\parsemacbody#1@end macro% {\xdef\temp{\eatcr{#1}}\endgroup\defmacro}% \long\def\parsermacbody#1@end rmacro% {\xdef\temp{\eatcr{#1}}\endgroup\defmacro}% \catcode `\@=11\relax \let\endargs@\relax \let\nil@\relax \def\nilm@{\nil@}% \long\def\nillm@{\nil@}% % This macro is expanded during the Texinfo macro expansion, not during its % definition. It gets all the arguments values and assigns them to macros % macarg.ARGNAME % % #1 is the macro name % #2 is the list of argument names % #3 is the list of argument values \def\getargvals@#1#2#3{% \def\macargdeflist@{}% \def\saveparamlist@{#2}% Need to keep a copy for parameter expansion. \def\paramlist{#2,\nil@}% \def\macroname{#1}% \begingroup \macroargctxt \def\argvaluelist{#3,\nil@}% \def\@tempa{#3}% \ifx\@tempa\empty \setemptyargvalues@ \else \getargvals@@ \fi } % \def\getargvals@@{% \ifx\paramlist\nilm@ % Some sanity check needed here that \argvaluelist is also empty. \ifx\argvaluelist\nillm@ \else \errhelp = \EMsimple \errmessage{Too many arguments in macro `\macroname'!}% \fi \let\next\macargexpandinbody@ \else \ifx\argvaluelist\nillm@ % No more arguments values passed to macro. Set remaining named-arg % macros to empty. \let\next\setemptyargvalues@ \else % pop current arg name into \@tempb \def\@tempa##1{\pop@{\@tempb}{\paramlist}##1\endargs@}% \expandafter\@tempa\expandafter{\paramlist}% % pop current argument value into \@tempc \def\@tempa##1{\longpop@{\@tempc}{\argvaluelist}##1\endargs@}% \expandafter\@tempa\expandafter{\argvaluelist}% % Here \@tempb is the current arg name and \@tempc is the current arg value. % First place the new argument macro definition into \@tempd \expandafter\macname\expandafter{\@tempc}% \expandafter\let\csname macarg.\@tempb\endcsname\relax \expandafter\def\expandafter\@tempe\expandafter{% \csname macarg.\@tempb\endcsname}% \edef\@tempd{\long\def\@tempe{\the\macname}}% \push@\@tempd\macargdeflist@ \let\next\getargvals@@ \fi \fi \next } \def\push@#1#2{% \expandafter\expandafter\expandafter\def \expandafter\expandafter\expandafter#2% \expandafter\expandafter\expandafter{% \expandafter#1#2}% } % Replace arguments by their values in the macro body, and place the result % in macro \@tempa \def\macvalstoargs@{% % To do this we use the property that token registers that are \the'ed % within an \edef expand only once. So we are going to place all argument % values into respective token registers. % % First we save the token context, and initialize argument numbering. \begingroup \paramno0\relax % Then, for each argument number #N, we place the corresponding argument % value into a new token list register \toks#N \expandafter\putargsintokens@\saveparamlist@,;,% % Then, we expand the body so that argument are replaced by their % values. The trick for values not to be expanded themselves is that they % are within tokens and that tokens expand only once in an \edef . \edef\@tempc{\csname mac.\macroname .body\endcsname}% % Now we restore the token stack pointer to free the token list registers % which we have used, but we make sure that expanded body is saved after % group. \expandafter \endgroup \expandafter\def\expandafter\@tempa\expandafter{\@tempc}% } \def\macargexpandinbody@{% %% Define the named-macro outside of this group and then close this group. \expandafter \endgroup \macargdeflist@ % First the replace in body the macro arguments by their values, the result % is in \@tempa . \macvalstoargs@ % Then we point at the \norecurse or \gobble (for recursive) macro value % with \@tempb . \expandafter\let\expandafter\@tempb\csname mac.\macroname .recurse\endcsname % Depending on whether it is recursive or not, we need some tailing % \egroup . \ifx\@tempb\gobble \let\@tempc\relax \else \let\@tempc\egroup \fi % And now we do the real job: \edef\@tempd{\noexpand\@tempb{\macroname}\noexpand\scanmacro{\@tempa}\@tempc}% \@tempd } \def\putargsintokens@#1,{% \if#1;\let\next\relax \else \let\next\putargsintokens@ % First we allocate the new token list register, and give it a temporary % alias \@tempb . \toksdef\@tempb\the\paramno % Then we place the argument value into that token list register. \expandafter\let\expandafter\@tempa\csname macarg.#1\endcsname \expandafter\@tempb\expandafter{\@tempa}% \advance\paramno by 1\relax \fi \next } % Save the token stack pointer into macro #1 \def\texisavetoksstackpoint#1{\edef#1{\the\@cclvi}} % Restore the token stack pointer from number in macro #1 \def\texirestoretoksstackpoint#1{\expandafter\mathchardef\expandafter\@cclvi#1\relax} % newtoks that can be used non \outer . \def\texinonouternewtoks{\alloc@ 5\toks \toksdef \@cclvi} % Tailing missing arguments are set to empty \def\setemptyargvalues@{% \ifx\paramlist\nilm@ \let\next\macargexpandinbody@ \else \expandafter\setemptyargvaluesparser@\paramlist\endargs@ \let\next\setemptyargvalues@ \fi \next } \def\setemptyargvaluesparser@#1,#2\endargs@{% \expandafter\def\expandafter\@tempa\expandafter{% \expandafter\def\csname macarg.#1\endcsname{}}% \push@\@tempa\macargdeflist@ \def\paramlist{#2}% } % #1 is the element target macro % #2 is the list macro % #3,#4\endargs@ is the list value \def\pop@#1#2#3,#4\endargs@{% \def#1{#3}% \def#2{#4}% } \long\def\longpop@#1#2#3,#4\endargs@{% \long\def#1{#3}% \long\def#2{#4}% } % This defines a Texinfo @macro. There are eight cases: recursive and % nonrecursive macros of zero, one, up to nine, and many arguments. % Much magic with \expandafter here. % \xdef is used so that macro definitions will survive the file % they're defined in; @include reads the file inside a group. % \def\defmacro{% \let\hash=##% convert placeholders to macro parameter chars \ifrecursive \ifcase\paramno % 0 \expandafter\xdef\csname\the\macname\endcsname{% \noexpand\scanmacro{\temp}}% \or % 1 \expandafter\xdef\csname\the\macname\endcsname{% \bgroup\noexpand\macroargctxt \noexpand\braceorline \expandafter\noexpand\csname\the\macname xxx\endcsname}% \expandafter\xdef\csname\the\macname xxx\endcsname##1{% \egroup\noexpand\scanmacro{\temp}}% \else \ifnum\paramno<10\relax % at most 9 \expandafter\xdef\csname\the\macname\endcsname{% \bgroup\noexpand\macroargctxt \noexpand\csname\the\macname xx\endcsname}% \expandafter\xdef\csname\the\macname xx\endcsname##1{% \expandafter\noexpand\csname\the\macname xxx\endcsname ##1,}% \expandafter\expandafter \expandafter\xdef \expandafter\expandafter \csname\the\macname xxx\endcsname \paramlist{\egroup\noexpand\scanmacro{\temp}}% \else % 10 or more \expandafter\xdef\csname\the\macname\endcsname{% \noexpand\getargvals@{\the\macname}{\argl}% }% \global\expandafter\let\csname mac.\the\macname .body\endcsname\temp \global\expandafter\let\csname mac.\the\macname .recurse\endcsname\gobble \fi \fi \else \ifcase\paramno % 0 \expandafter\xdef\csname\the\macname\endcsname{% \noexpand\norecurse{\the\macname}% \noexpand\scanmacro{\temp}\egroup}% \or % 1 \expandafter\xdef\csname\the\macname\endcsname{% \bgroup\noexpand\macroargctxt \noexpand\braceorline \expandafter\noexpand\csname\the\macname xxx\endcsname}% \expandafter\xdef\csname\the\macname xxx\endcsname##1{% \egroup \noexpand\norecurse{\the\macname}% \noexpand\scanmacro{\temp}\egroup}% \else % at most 9 \ifnum\paramno<10\relax \expandafter\xdef\csname\the\macname\endcsname{% \bgroup\noexpand\macroargctxt \expandafter\noexpand\csname\the\macname xx\endcsname}% \expandafter\xdef\csname\the\macname xx\endcsname##1{% \expandafter\noexpand\csname\the\macname xxx\endcsname ##1,}% \expandafter\expandafter \expandafter\xdef \expandafter\expandafter \csname\the\macname xxx\endcsname \paramlist{% \egroup \noexpand\norecurse{\the\macname}% \noexpand\scanmacro{\temp}\egroup}% \else % 10 or more: \expandafter\xdef\csname\the\macname\endcsname{% \noexpand\getargvals@{\the\macname}{\argl}% }% \global\expandafter\let\csname mac.\the\macname .body\endcsname\temp \global\expandafter\let\csname mac.\the\macname .recurse\endcsname\norecurse \fi \fi \fi} \catcode `\@\texiatcatcode\relax \def\norecurse#1{\bgroup\cslet{#1}{macsave.#1}} % \braceorline decides whether the next nonwhitespace character is a % {. If so it reads up to the closing }, if not, it reads the whole % line. Whatever was read is then fed to the next control sequence % as an argument (by \parsebrace or \parsearg). % \def\braceorline#1{\let\macnamexxx=#1\futurelet\nchar\braceorlinexxx} \def\braceorlinexxx{% \ifx\nchar\bgroup\else \expandafter\parsearg \fi \macnamexxx} % @alias. % We need some trickery to remove the optional spaces around the equal % sign. Make them active and then expand them all to nothing. % \def\alias{\parseargusing\obeyspaces\aliasxxx} \def\aliasxxx #1{\aliasyyy#1\relax} \def\aliasyyy #1=#2\relax{% {% \expandafter\let\obeyedspace=\empty \addtomacrolist{#1}% \xdef\next{\global\let\makecsname{#1}=\makecsname{#2}}% }% \next } \message{cross references,} \newwrite\auxfile \newif\ifhavexrefs % True if xref values are known. \newif\ifwarnedxrefs % True if we warned once that they aren't known. % @inforef is relatively simple. \def\inforef #1{\inforefzzz #1,,,,**} \def\inforefzzz #1,#2,#3,#4**{% \putwordSee{} \putwordInfo{} \putwordfile{} \file{\ignorespaces #3{}}, node \samp{\ignorespaces#1{}}} % @node's only job in TeX is to define \lastnode, which is used in % cross-references. The @node line might or might not have commas, and % might or might not have spaces before the first comma, like: % @node foo , bar , ... % We don't want such trailing spaces in the node name. % \parseargdef\node{\checkenv{}\donode #1 ,\finishnodeparse} % % also remove a trailing comma, in case of something like this: % @node Help-Cross, , , Cross-refs \def\donode#1 ,#2\finishnodeparse{\dodonode #1,\finishnodeparse} \def\dodonode#1,#2\finishnodeparse{\gdef\lastnode{#1}} \let\nwnode=\node \let\lastnode=\empty % Write a cross-reference definition for the current node. #1 is the % type (Ynumbered, Yappendix, Ynothing). % \def\donoderef#1{% \ifx\lastnode\empty\else \setref{\lastnode}{#1}% \global\let\lastnode=\empty \fi } % @anchor{NAME} -- define xref target at arbitrary point. % \newcount\savesfregister % \def\savesf{\relax \ifhmode \savesfregister=\spacefactor \fi} \def\restoresf{\relax \ifhmode \spacefactor=\savesfregister \fi} \def\anchor#1{\savesf \setref{#1}{Ynothing}\restoresf \ignorespaces} % \setref{NAME}{SNT} defines a cross-reference point NAME (a node or an % anchor), which consists of three parts: % 1) NAME-title - the current sectioning name taken from \lastsection, % or the anchor name. % 2) NAME-snt - section number and type, passed as the SNT arg, or % empty for anchors. % 3) NAME-pg - the page number. % % This is called from \donoderef, \anchor, and \dofloat. In the case of % floats, there is an additional part, which is not written here: % 4) NAME-lof - the text as it should appear in a @listoffloats. % \def\setref#1#2{% \pdfmkdest{#1}% \iflinks {% \atdummies % preserve commands, but don't expand them \edef\writexrdef##1##2{% \write\auxfile{@xrdef{#1-% #1 of \setref, expanded by the \edef ##1}{##2}}% these are parameters of \writexrdef }% \toks0 = \expandafter{\lastsection}% \immediate \writexrdef{title}{\the\toks0 }% \immediate \writexrdef{snt}{\csname #2\endcsname}% \Ynumbered etc. \safewhatsit{\writexrdef{pg}{\folio}}% will be written later, at \shipout }% \fi } % @xrefautosectiontitle on|off says whether @section(ing) names are used % automatically in xrefs, if the third arg is not explicitly specified. % This was provided as a "secret" @set xref-automatic-section-title % variable, now it's official. % \parseargdef\xrefautomaticsectiontitle{% \def\temp{#1}% \ifx\temp\onword \expandafter\let\csname SETxref-automatic-section-title\endcsname = \empty \else\ifx\temp\offword \expandafter\let\csname SETxref-automatic-section-title\endcsname = \relax \else \errhelp = \EMsimple \errmessage{Unknown @xrefautomaticsectiontitle value `\temp', must be on|off}% \fi\fi } % @xref, @pxref, and @ref generate cross-references. For \xrefX, #1 is % the node name, #2 the name of the Info cross-reference, #3 the printed % node name, #4 the name of the Info file, #5 the name of the printed % manual. All but the node name can be omitted. % \def\pxref#1{\putwordsee{} \xrefX[#1,,,,,,,]} \def\xref#1{\putwordSee{} \xrefX[#1,,,,,,,]} \def\ref#1{\xrefX[#1,,,,,,,]} % \newbox\topbox \newbox\printedrefnamebox \newbox\printedmanualbox % \def\xrefX[#1,#2,#3,#4,#5,#6]{\begingroup \unsepspaces % \def\printedrefname{\ignorespaces #3}% \setbox\printedrefnamebox = \hbox{\printedrefname\unskip}% % \def\printedmanual{\ignorespaces #5}% \setbox\printedmanualbox = \hbox{\printedmanual\unskip}% % % If the printed reference name (arg #3) was not explicitly given in % the @xref, figure out what we want to use. \ifdim \wd\printedrefnamebox = 0pt % No printed node name was explicitly given. \expandafter\ifx\csname SETxref-automatic-section-title\endcsname \relax % Not auto section-title: use node name inside the square brackets. \def\printedrefname{\ignorespaces #1}% \else % Auto section-title: use chapter/section title inside % the square brackets if we have it. \ifdim \wd\printedmanualbox > 0pt % It is in another manual, so we don't have it; use node name. \def\printedrefname{\ignorespaces #1}% \else \ifhavexrefs % We (should) know the real title if we have the xref values. \def\printedrefname{\refx{#1-title}{}}% \else % Otherwise just copy the Info node name. \def\printedrefname{\ignorespaces #1}% \fi% \fi \fi \fi % % Make link in pdf output. \ifpdf {\indexnofonts \turnoffactive \makevalueexpandable % This expands tokens, so do it after making catcode changes, so _ % etc. don't get their TeX definitions. \getfilename{#4}% % \edef\pdfxrefdest{#1}% \txiescapepdf\pdfxrefdest % \leavevmode \startlink attr{/Border [0 0 0]}% \ifnum\filenamelength>0 goto file{\the\filename.pdf} name{\pdfxrefdest}% \else goto name{\pdfmkpgn{\pdfxrefdest}}% \fi }% \setcolor{\linkcolor}% \fi % % Float references are printed completely differently: "Figure 1.2" % instead of "[somenode], p.3". We distinguish them by the % LABEL-title being set to a magic string. {% % Have to otherify everything special to allow the \csname to % include an _ in the xref name, etc. \indexnofonts \turnoffactive \expandafter\global\expandafter\let\expandafter\Xthisreftitle \csname XR#1-title\endcsname }% \iffloat\Xthisreftitle % If the user specified the print name (third arg) to the ref, % print it instead of our usual "Figure 1.2". \ifdim\wd\printedrefnamebox = 0pt \refx{#1-snt}{}% \else \printedrefname \fi % % if the user also gave the printed manual name (fifth arg), append % "in MANUALNAME". \ifdim \wd\printedmanualbox > 0pt \space \putwordin{} \cite{\printedmanual}% \fi \else % node/anchor (non-float) references. % % If we use \unhbox to print the node names, TeX does not insert % empty discretionaries after hyphens, which means that it will not % find a line break at a hyphen in a node names. Since some manuals % are best written with fairly long node names, containing hyphens, % this is a loss. Therefore, we give the text of the node name % again, so it is as if TeX is seeing it for the first time. % % Cross-manual reference. Only include the "Section ``foo'' in" if % the foo is neither missing or Top. Thus, @xref{,,,foo,The Foo Manual} % outputs simply "see The Foo Manual". \ifdim \wd\printedmanualbox > 0pt % What is the 7sp about? The idea is that we also want to omit % the Section part if we would be printing "Top", since they are % clearly trying to refer to the whole manual. But, this being % TeX, we can't easily compare strings while ignoring the possible % spaces before and after in the input. By adding the arbitrary % 7sp, we make it much less likely that a real node name would % happen to have the same width as "Top" (e.g., in a monospaced font). % I hope it will never happen in practice. % % For the same basic reason, we retypeset the "Top" at every % reference, since the current font is indeterminate. % \setbox\topbox = \hbox{Top\kern7sp}% \setbox2 = \hbox{\ignorespaces \printedrefname \unskip \kern7sp}% \ifdim \wd2 > 7sp \ifdim \wd2 = \wd\topbox \else \putwordSection{} ``\printedrefname'' \putwordin{}\space \fi \fi \cite{\printedmanual}% \else % Reference in this manual. % % _ (for example) has to be the character _ for the purposes of the % control sequence corresponding to the node, but it has to expand % into the usual \leavevmode...\vrule stuff for purposes of % printing. So we \turnoffactive for the \refx-snt, back on for the % printing, back off for the \refx-pg. {\turnoffactive % Only output a following space if the -snt ref is nonempty; for % @unnumbered and @anchor, it won't be. \setbox2 = \hbox{\ignorespaces \refx{#1-snt}{}}% \ifdim \wd2 > 0pt \refx{#1-snt}\space\fi }% % output the `[mynode]' via the macro below so it can be overridden. \xrefprintnodename\printedrefname % % But we always want a comma and a space: ,\space % % output the `page 3'. \turnoffactive \putwordpage\tie\refx{#1-pg}{}% \fi \fi \endlink \endgroup} % This macro is called from \xrefX for the `[nodename]' part of xref % output. It's a separate macro only so it can be changed more easily, % since square brackets don't work well in some documents. Particularly % one that Bob is working on :). % \def\xrefprintnodename#1{[#1]} % Things referred to by \setref. % \def\Ynothing{} \def\Yomitfromtoc{} \def\Ynumbered{% \ifnum\secno=0 \putwordChapter@tie \the\chapno \else \ifnum\subsecno=0 \putwordSection@tie \the\chapno.\the\secno \else \ifnum\subsubsecno=0 \putwordSection@tie \the\chapno.\the\secno.\the\subsecno \else \putwordSection@tie \the\chapno.\the\secno.\the\subsecno.\the\subsubsecno \fi\fi\fi } \def\Yappendix{% \ifnum\secno=0 \putwordAppendix@tie @char\the\appendixno{}% \else \ifnum\subsecno=0 \putwordSection@tie @char\the\appendixno.\the\secno \else \ifnum\subsubsecno=0 \putwordSection@tie @char\the\appendixno.\the\secno.\the\subsecno \else \putwordSection@tie @char\the\appendixno.\the\secno.\the\subsecno.\the\subsubsecno \fi\fi\fi } % Define \refx{NAME}{SUFFIX} to reference a cross-reference string named NAME. % If its value is nonempty, SUFFIX is output afterward. % \def\refx#1#2{% {% \indexnofonts \otherbackslash \expandafter\global\expandafter\let\expandafter\thisrefX \csname XR#1\endcsname }% \ifx\thisrefX\relax % If not defined, say something at least. \angleleft un\-de\-fined\angleright \iflinks \ifhavexrefs {\toks0 = {#1}% avoid expansion of possibly-complex value \message{\linenumber Undefined cross reference `\the\toks0'.}}% \else \ifwarnedxrefs\else \global\warnedxrefstrue \message{Cross reference values unknown; you must run TeX again.}% \fi \fi \fi \else % It's defined, so just use it. \thisrefX \fi #2% Output the suffix in any case. } % This is the macro invoked by entries in the aux file. Usually it's % just a \def (we prepend XR to the control sequence name to avoid % collisions). But if this is a float type, we have more work to do. % \def\xrdef#1#2{% {% The node name might contain 8-bit characters, which in our current % implementation are changed to commands like @'e. Don't let these % mess up the control sequence name. \indexnofonts \turnoffactive \xdef\safexrefname{#1}% }% % \expandafter\gdef\csname XR\safexrefname\endcsname{#2}% remember this xref % % Was that xref control sequence that we just defined for a float? \expandafter\iffloat\csname XR\safexrefname\endcsname % it was a float, and we have the (safe) float type in \iffloattype. \expandafter\let\expandafter\floatlist \csname floatlist\iffloattype\endcsname % % Is this the first time we've seen this float type? \expandafter\ifx\floatlist\relax \toks0 = {\do}% yes, so just \do \else % had it before, so preserve previous elements in list. \toks0 = \expandafter{\floatlist\do}% \fi % % Remember this xref in the control sequence \floatlistFLOATTYPE, % for later use in \listoffloats. \expandafter\xdef\csname floatlist\iffloattype\endcsname{\the\toks0 {\safexrefname}}% \fi } % Read the last existing aux file, if any. No error if none exists. % \def\tryauxfile{% \openin 1 \jobname.aux \ifeof 1 \else \readdatafile{aux}% \global\havexrefstrue \fi \closein 1 } \def\setupdatafile{% \catcode`\^^@=\other \catcode`\^^A=\other \catcode`\^^B=\other \catcode`\^^C=\other \catcode`\^^D=\other \catcode`\^^E=\other \catcode`\^^F=\other \catcode`\^^G=\other \catcode`\^^H=\other \catcode`\^^K=\other \catcode`\^^L=\other \catcode`\^^N=\other \catcode`\^^P=\other \catcode`\^^Q=\other \catcode`\^^R=\other \catcode`\^^S=\other \catcode`\^^T=\other \catcode`\^^U=\other \catcode`\^^V=\other \catcode`\^^W=\other \catcode`\^^X=\other \catcode`\^^Z=\other \catcode`\^^[=\other \catcode`\^^\=\other \catcode`\^^]=\other \catcode`\^^^=\other \catcode`\^^_=\other % It was suggested to set the catcode of ^ to 7, which would allow ^^e4 etc. % in xref tags, i.e., node names. But since ^^e4 notation isn't % supported in the main text, it doesn't seem desirable. Furthermore, % that is not enough: for node names that actually contain a ^ % character, we would end up writing a line like this: 'xrdef {'hat % b-title}{'hat b} and \xrdef does a \csname...\endcsname on the first % argument, and \hat is not an expandable control sequence. It could % all be worked out, but why? Either we support ^^ or we don't. % % The other change necessary for this was to define \auxhat: % \def\auxhat{\def^{'hat }}% extra space so ok if followed by letter % and then to call \auxhat in \setq. % \catcode`\^=\other % % Special characters. Should be turned off anyway, but... \catcode`\~=\other \catcode`\[=\other \catcode`\]=\other \catcode`\"=\other \catcode`\_=\other \catcode`\|=\other \catcode`\<=\other \catcode`\>=\other \catcode`\$=\other \catcode`\#=\other \catcode`\&=\other \catcode`\%=\other \catcode`+=\other % avoid \+ for paranoia even though we've turned it off % % This is to support \ in node names and titles, since the \ % characters end up in a \csname. It's easier than % leaving it active and making its active definition an actual \ % character. What I don't understand is why it works in the *value* % of the xrdef. Seems like it should be a catcode12 \, and that % should not typeset properly. But it works, so I'm moving on for % now. --karl, 15jan04. \catcode`\\=\other % % Make the characters 128-255 be printing characters. {% \count1=128 \def\loop{% \catcode\count1=\other \advance\count1 by 1 \ifnum \count1<256 \loop \fi }% }% % % @ is our escape character in .aux files, and we need braces. \catcode`\{=1 \catcode`\}=2 \catcode`\@=0 } \def\readdatafile#1{% \begingroup \setupdatafile \input\jobname.#1 \endgroup} \message{insertions,} % including footnotes. \newcount \footnoteno % The trailing space in the following definition for supereject is % vital for proper filling; pages come out unaligned when you do a % pagealignmacro call if that space before the closing brace is % removed. (Generally, numeric constants should always be followed by a % space to prevent strange expansion errors.) \def\supereject{\par\penalty -20000\footnoteno =0 } % @footnotestyle is meaningful for Info output only. \let\footnotestyle=\comment {\catcode `\@=11 % % Auto-number footnotes. Otherwise like plain. \gdef\footnote{% \let\indent=\ptexindent \let\noindent=\ptexnoindent \global\advance\footnoteno by \@ne \edef\thisfootno{$^{\the\footnoteno}$}% % % In case the footnote comes at the end of a sentence, preserve the % extra spacing after we do the footnote number. \let\@sf\empty \ifhmode\edef\@sf{\spacefactor\the\spacefactor}\ptexslash\fi % % Remove inadvertent blank space before typesetting the footnote number. \unskip \thisfootno\@sf \dofootnote }% % Don't bother with the trickery in plain.tex to not require the % footnote text as a parameter. Our footnotes don't need to be so general. % % Oh yes, they do; otherwise, @ifset (and anything else that uses % \parseargline) fails inside footnotes because the tokens are fixed when % the footnote is read. --karl, 16nov96. % \gdef\dofootnote{% \insert\footins\bgroup % We want to typeset this text as a normal paragraph, even if the % footnote reference occurs in (for example) a display environment. % So reset some parameters. \hsize=\pagewidth \interlinepenalty\interfootnotelinepenalty \splittopskip\ht\strutbox % top baseline for broken footnotes \splitmaxdepth\dp\strutbox \floatingpenalty\@MM \leftskip\z@skip \rightskip\z@skip \spaceskip\z@skip \xspaceskip\z@skip \parindent\defaultparindent % \smallfonts \rm % % Because we use hanging indentation in footnotes, a @noindent appears % to exdent this text, so make it be a no-op. makeinfo does not use % hanging indentation so @noindent can still be needed within footnote % text after an @example or the like (not that this is good style). \let\noindent = \relax % % Hang the footnote text off the number. Use \everypar in case the % footnote extends for more than one paragraph. \everypar = {\hang}% \textindent{\thisfootno}% % % Don't crash into the line above the footnote text. Since this % expands into a box, it must come within the paragraph, lest it % provide a place where TeX can split the footnote. \footstrut % % Invoke rest of plain TeX footnote routine. \futurelet\next\fo@t } }%end \catcode `\@=11 % In case a @footnote appears in a vbox, save the footnote text and create % the real \insert just after the vbox finished. Otherwise, the insertion % would be lost. % Similarly, if a @footnote appears inside an alignment, save the footnote % text to a box and make the \insert when a row of the table is finished. % And the same can be done for other insert classes. --kasal, 16nov03. % Replace the \insert primitive by a cheating macro. % Deeper inside, just make sure that the saved insertions are not spilled % out prematurely. % \def\startsavinginserts{% \ifx \insert\ptexinsert \let\insert\saveinsert \else \let\checkinserts\relax \fi } % This \insert replacement works for both \insert\footins{foo} and % \insert\footins\bgroup foo\egroup, but it doesn't work for \insert27{foo}. % \def\saveinsert#1{% \edef\next{\noexpand\savetobox \makeSAVEname#1}% \afterassignment\next % swallow the left brace \let\temp = } \def\makeSAVEname#1{\makecsname{SAVE\expandafter\gobble\string#1}} \def\savetobox#1{\global\setbox#1 = \vbox\bgroup \unvbox#1} \def\checksaveins#1{\ifvoid#1\else \placesaveins#1\fi} \def\placesaveins#1{% \ptexinsert \csname\expandafter\gobblesave\string#1\endcsname {\box#1}% } % eat @SAVE -- beware, all of them have catcode \other: { \def\dospecials{\do S\do A\do V\do E} \uncatcodespecials % ;-) \gdef\gobblesave @SAVE{} } % initialization: \def\newsaveins #1{% \edef\next{\noexpand\newsaveinsX \makeSAVEname#1}% \next } \def\newsaveinsX #1{% \csname newbox\endcsname #1% \expandafter\def\expandafter\checkinserts\expandafter{\checkinserts \checksaveins #1}% } % initialize: \let\checkinserts\empty \newsaveins\footins \newsaveins\margin % @image. We use the macros from epsf.tex to support this. % If epsf.tex is not installed and @image is used, we complain. % % Check for and read epsf.tex up front. If we read it only at @image % time, we might be inside a group, and then its definitions would get % undone and the next image would fail. \openin 1 = epsf.tex \ifeof 1 \else % Do not bother showing banner with epsf.tex v2.7k (available in % doc/epsf.tex and on ctan). \def\epsfannounce{\toks0 = }% \input epsf.tex \fi \closein 1 % % We will only complain once about lack of epsf.tex. \newif\ifwarnednoepsf \newhelp\noepsfhelp{epsf.tex must be installed for images to work. It is also included in the Texinfo distribution, or you can get it from ftp://tug.org/tex/epsf.tex.} % \def\image#1{% \ifx\epsfbox\thisisundefined \ifwarnednoepsf \else \errhelp = \noepsfhelp \errmessage{epsf.tex not found, images will be ignored}% \global\warnednoepsftrue \fi \else \imagexxx #1,,,,,\finish \fi } % % Arguments to @image: % #1 is (mandatory) image filename; we tack on .eps extension. % #2 is (optional) width, #3 is (optional) height. % #4 is (ignored optional) html alt text. % #5 is (ignored optional) extension. % #6 is just the usual extra ignored arg for parsing stuff. \newif\ifimagevmode \def\imagexxx#1,#2,#3,#4,#5,#6\finish{\begingroup \catcode`\^^M = 5 % in case we're inside an example \normalturnoffactive % allow _ et al. in names % If the image is by itself, center it. \ifvmode \imagevmodetrue \else \ifx\centersub\centerV % for @center @image, we need a vbox so we can have our vertical space \imagevmodetrue \vbox\bgroup % vbox has better behavior than vtop herev \fi\fi % \ifimagevmode \nobreak\medskip % Usually we'll have text after the image which will insert % \parskip glue, so insert it here too to equalize the space % above and below. \nobreak\vskip\parskip \nobreak \fi % % Leave vertical mode so that indentation from an enclosing % environment such as @quotation is respected. % However, if we're at the top level, we don't want the % normal paragraph indentation. % On the other hand, if we are in the case of @center @image, we don't % want to start a paragraph, which will create a hsize-width box and % eradicate the centering. \ifx\centersub\centerV\else \noindent \fi % % Output the image. \ifpdf \dopdfimage{#1}{#2}{#3}% \else % \epsfbox itself resets \epsf?size at each figure. \setbox0 = \hbox{\ignorespaces #2}\ifdim\wd0 > 0pt \epsfxsize=#2\relax \fi \setbox0 = \hbox{\ignorespaces #3}\ifdim\wd0 > 0pt \epsfysize=#3\relax \fi \epsfbox{#1.eps}% \fi % \ifimagevmode \medskip % space after a standalone image \fi \ifx\centersub\centerV \egroup \fi \endgroup} % @float FLOATTYPE,LABEL,LOC ... @end float for displayed figures, tables, % etc. We don't actually implement floating yet, we always include the % float "here". But it seemed the best name for the future. % \envparseargdef\float{\eatcommaspace\eatcommaspace\dofloat#1, , ,\finish} % There may be a space before second and/or third parameter; delete it. \def\eatcommaspace#1, {#1,} % #1 is the optional FLOATTYPE, the text label for this float, typically % "Figure", "Table", "Example", etc. Can't contain commas. If omitted, % this float will not be numbered and cannot be referred to. % % #2 is the optional xref label. Also must be present for the float to % be referable. % % #3 is the optional positioning argument; for now, it is ignored. It % will somehow specify the positions allowed to float to (here, top, bottom). % % We keep a separate counter for each FLOATTYPE, which we reset at each % chapter-level command. \let\resetallfloatnos=\empty % \def\dofloat#1,#2,#3,#4\finish{% \let\thiscaption=\empty \let\thisshortcaption=\empty % % don't lose footnotes inside @float. % % BEWARE: when the floats start float, we have to issue warning whenever an % insert appears inside a float which could possibly float. --kasal, 26may04 % \startsavinginserts % % We can't be used inside a paragraph. \par % \vtop\bgroup \def\floattype{#1}% \def\floatlabel{#2}% \def\floatloc{#3}% we do nothing with this yet. % \ifx\floattype\empty \let\safefloattype=\empty \else {% % the floattype might have accents or other special characters, % but we need to use it in a control sequence name. \indexnofonts \turnoffactive \xdef\safefloattype{\floattype}% }% \fi % % If label is given but no type, we handle that as the empty type. \ifx\floatlabel\empty \else % We want each FLOATTYPE to be numbered separately (Figure 1, % Table 1, Figure 2, ...). (And if no label, no number.) % \expandafter\getfloatno\csname\safefloattype floatno\endcsname \global\advance\floatno by 1 % {% % This magic value for \lastsection is output by \setref as the % XREFLABEL-title value. \xrefX uses it to distinguish float % labels (which have a completely different output format) from % node and anchor labels. And \xrdef uses it to construct the % lists of floats. % \edef\lastsection{\floatmagic=\safefloattype}% \setref{\floatlabel}{Yfloat}% }% \fi % % start with \parskip glue, I guess. \vskip\parskip % % Don't suppress indentation if a float happens to start a section. \restorefirstparagraphindent } % we have these possibilities: % @float Foo,lbl & @caption{Cap}: Foo 1.1: Cap % @float Foo,lbl & no caption: Foo 1.1 % @float Foo & @caption{Cap}: Foo: Cap % @float Foo & no caption: Foo % @float ,lbl & Caption{Cap}: 1.1: Cap % @float ,lbl & no caption: 1.1 % @float & @caption{Cap}: Cap % @float & no caption: % \def\Efloat{% \let\floatident = \empty % % In all cases, if we have a float type, it comes first. \ifx\floattype\empty \else \def\floatident{\floattype}\fi % % If we have an xref label, the number comes next. \ifx\floatlabel\empty \else \ifx\floattype\empty \else % if also had float type, need tie first. \appendtomacro\floatident{\tie}% \fi % the number. \appendtomacro\floatident{\chaplevelprefix\the\floatno}% \fi % % Start the printed caption with what we've constructed in % \floatident, but keep it separate; we need \floatident again. \let\captionline = \floatident % \ifx\thiscaption\empty \else \ifx\floatident\empty \else \appendtomacro\captionline{: }% had ident, so need a colon between \fi % % caption text. \appendtomacro\captionline{\scanexp\thiscaption}% \fi % % If we have anything to print, print it, with space before. % Eventually this needs to become an \insert. \ifx\captionline\empty \else \vskip.5\parskip \captionline % % Space below caption. \vskip\parskip \fi % % If have an xref label, write the list of floats info. Do this % after the caption, to avoid chance of it being a breakpoint. \ifx\floatlabel\empty \else % Write the text that goes in the lof to the aux file as % \floatlabel-lof. Besides \floatident, we include the short % caption if specified, else the full caption if specified, else nothing. {% \atdummies % % since we read the caption text in the macro world, where ^^M % is turned into a normal character, we have to scan it back, so % we don't write the literal three characters "^^M" into the aux file. \scanexp{% \xdef\noexpand\gtemp{% \ifx\thisshortcaption\empty \thiscaption \else \thisshortcaption \fi }% }% \immediate\write\auxfile{@xrdef{\floatlabel-lof}{\floatident \ifx\gtemp\empty \else : \gtemp \fi}}% }% \fi \egroup % end of \vtop % % place the captured inserts % % BEWARE: when the floats start floating, we have to issue warning % whenever an insert appears inside a float which could possibly % float. --kasal, 26may04 % \checkinserts } % Append the tokens #2 to the definition of macro #1, not expanding either. % \def\appendtomacro#1#2{% \expandafter\def\expandafter#1\expandafter{#1#2}% } % @caption, @shortcaption % \def\caption{\docaption\thiscaption} \def\shortcaption{\docaption\thisshortcaption} \def\docaption{\checkenv\float \bgroup\scanargctxt\defcaption} \def\defcaption#1#2{\egroup \def#1{#2}} % The parameter is the control sequence identifying the counter we are % going to use. Create it if it doesn't exist and assign it to \floatno. \def\getfloatno#1{% \ifx#1\relax % Haven't seen this figure type before. \csname newcount\endcsname #1% % % Remember to reset this floatno at the next chap. \expandafter\gdef\expandafter\resetallfloatnos \expandafter{\resetallfloatnos #1=0 }% \fi \let\floatno#1% } % \setref calls this to get the XREFLABEL-snt value. We want an @xref % to the FLOATLABEL to expand to "Figure 3.1". We call \setref when we % first read the @float command. % \def\Yfloat{\floattype@tie \chaplevelprefix\the\floatno}% % Magic string used for the XREFLABEL-title value, so \xrefX can % distinguish floats from other xref types. \def\floatmagic{!!float!!} % #1 is the control sequence we are passed; we expand into a conditional % which is true if #1 represents a float ref. That is, the magic % \lastsection value which we \setref above. % \def\iffloat#1{\expandafter\doiffloat#1==\finish} % % #1 is (maybe) the \floatmagic string. If so, #2 will be the % (safe) float type for this float. We set \iffloattype to #2. % \def\doiffloat#1=#2=#3\finish{% \def\temp{#1}% \def\iffloattype{#2}% \ifx\temp\floatmagic } % @listoffloats FLOATTYPE - print a list of floats like a table of contents. % \parseargdef\listoffloats{% \def\floattype{#1}% floattype {% % the floattype might have accents or other special characters, % but we need to use it in a control sequence name. \indexnofonts \turnoffactive \xdef\safefloattype{\floattype}% }% % % \xrdef saves the floats as a \do-list in \floatlistSAFEFLOATTYPE. \expandafter\ifx\csname floatlist\safefloattype\endcsname \relax \ifhavexrefs % if the user said @listoffloats foo but never @float foo. \message{\linenumber No `\safefloattype' floats to list.}% \fi \else \begingroup \leftskip=\tocindent % indent these entries like a toc \let\do=\listoffloatsdo \csname floatlist\safefloattype\endcsname \endgroup \fi } % This is called on each entry in a list of floats. We're passed the % xref label, in the form LABEL-title, which is how we save it in the % aux file. We strip off the -title and look up \XRLABEL-lof, which % has the text we're supposed to typeset here. % % Figures without xref labels will not be included in the list (since % they won't appear in the aux file). % \def\listoffloatsdo#1{\listoffloatsdoentry#1\finish} \def\listoffloatsdoentry#1-title\finish{{% % Can't fully expand XR#1-lof because it can contain anything. Just % pass the control sequence. On the other hand, XR#1-pg is just the % page number, and we want to fully expand that so we can get a link % in pdf output. \toksA = \expandafter{\csname XR#1-lof\endcsname}% % % use the same \entry macro we use to generate the TOC and index. \edef\writeentry{\noexpand\entry{\the\toksA}{\csname XR#1-pg\endcsname}}% \writeentry }} \message{localization,} % For single-language documents, @documentlanguage is usually given very % early, just after @documentencoding. Single argument is the language % (de) or locale (de_DE) abbreviation. % { \catcode`\_ = \active \globaldefs=1 \parseargdef\documentlanguage{\begingroup \let_=\normalunderscore % normal _ character for filenames \tex % read txi-??.tex file in plain TeX. % Read the file by the name they passed if it exists. \openin 1 txi-#1.tex \ifeof 1 \documentlanguagetrywithoutunderscore{#1_\finish}% \else \globaldefs = 1 % everything in the txi-LL files needs to persist \input txi-#1.tex \fi \closein 1 \endgroup % end raw TeX \endgroup} % % If they passed de_DE, and txi-de_DE.tex doesn't exist, % try txi-de.tex. % \gdef\documentlanguagetrywithoutunderscore#1_#2\finish{% \openin 1 txi-#1.tex \ifeof 1 \errhelp = \nolanghelp \errmessage{Cannot read language file txi-#1.tex}% \else \globaldefs = 1 % everything in the txi-LL files needs to persist \input txi-#1.tex \fi \closein 1 } }% end of special _ catcode % \newhelp\nolanghelp{The given language definition file cannot be found or is empty. Maybe you need to install it? Putting it in the current directory should work if nowhere else does.} % This macro is called from txi-??.tex files; the first argument is the % \language name to set (without the "\lang@" prefix), the second and % third args are \{left,right}hyphenmin. % % The language names to pass are determined when the format is built. % See the etex.log file created at that time, e.g., % /usr/local/texlive/2008/texmf-var/web2c/pdftex/etex.log. % % With TeX Live 2008, etex now includes hyphenation patterns for all % available languages. This means we can support hyphenation in % Texinfo, at least to some extent. (This still doesn't solve the % accented characters problem.) % \catcode`@=11 \def\txisetlanguage#1#2#3{% % do not set the language if the name is undefined in the current TeX. \expandafter\ifx\csname lang@#1\endcsname \relax \message{no patterns for #1}% \else \global\language = \csname lang@#1\endcsname \fi % but there is no harm in adjusting the hyphenmin values regardless. \global\lefthyphenmin = #2\relax \global\righthyphenmin = #3\relax } % Helpers for encodings. % Set the catcode of characters 128 through 255 to the specified number. % \def\setnonasciicharscatcode#1{% \count255=128 \loop\ifnum\count255<256 \global\catcode\count255=#1\relax \advance\count255 by 1 \repeat } \def\setnonasciicharscatcodenonglobal#1{% \count255=128 \loop\ifnum\count255<256 \catcode\count255=#1\relax \advance\count255 by 1 \repeat } % @documentencoding sets the definition of non-ASCII characters % according to the specified encoding. % \parseargdef\documentencoding{% % Encoding being declared for the document. \def\declaredencoding{\csname #1.enc\endcsname}% % % Supported encodings: names converted to tokens in order to be able % to compare them with \ifx. \def\ascii{\csname US-ASCII.enc\endcsname}% \def\latnine{\csname ISO-8859-15.enc\endcsname}% \def\latone{\csname ISO-8859-1.enc\endcsname}% \def\lattwo{\csname ISO-8859-2.enc\endcsname}% \def\utfeight{\csname UTF-8.enc\endcsname}% % \ifx \declaredencoding \ascii \asciichardefs % \else \ifx \declaredencoding \lattwo \setnonasciicharscatcode\active \lattwochardefs % \else \ifx \declaredencoding \latone \setnonasciicharscatcode\active \latonechardefs % \else \ifx \declaredencoding \latnine \setnonasciicharscatcode\active \latninechardefs % \else \ifx \declaredencoding \utfeight \setnonasciicharscatcode\active \utfeightchardefs % \else \message{Unknown document encoding #1, ignoring.}% % \fi % utfeight \fi % latnine \fi % latone \fi % lattwo \fi % ascii } % A message to be logged when using a character that isn't available % the default font encoding (OT1). % \def\missingcharmsg#1{\message{Character missing in OT1 encoding: #1.}} % Take account of \c (plain) vs. \, (Texinfo) difference. \def\cedilla#1{\ifx\c\ptexc\c{#1}\else\,{#1}\fi} % First, make active non-ASCII characters in order for them to be % correctly categorized when TeX reads the replacement text of % macros containing the character definitions. \setnonasciicharscatcode\active % % Latin1 (ISO-8859-1) character definitions. \def\latonechardefs{% \gdef^^a0{\tie} \gdef^^a1{\exclamdown} \gdef^^a2{\missingcharmsg{CENT SIGN}} \gdef^^a3{{\pounds}} \gdef^^a4{\missingcharmsg{CURRENCY SIGN}} \gdef^^a5{\missingcharmsg{YEN SIGN}} \gdef^^a6{\missingcharmsg{BROKEN BAR}} \gdef^^a7{\S} \gdef^^a8{\"{}} \gdef^^a9{\copyright} \gdef^^aa{\ordf} \gdef^^ab{\guillemetleft} \gdef^^ac{$\lnot$} \gdef^^ad{\-} \gdef^^ae{\registeredsymbol} \gdef^^af{\={}} % \gdef^^b0{\textdegree} \gdef^^b1{$\pm$} \gdef^^b2{$^2$} \gdef^^b3{$^3$} \gdef^^b4{\'{}} \gdef^^b5{$\mu$} \gdef^^b6{\P} % \gdef^^b7{$^.$} \gdef^^b8{\cedilla\ } \gdef^^b9{$^1$} \gdef^^ba{\ordm} % \gdef^^bb{\guillemetright} \gdef^^bc{$1\over4$} \gdef^^bd{$1\over2$} \gdef^^be{$3\over4$} \gdef^^bf{\questiondown} % \gdef^^c0{\`A} \gdef^^c1{\'A} \gdef^^c2{\^A} \gdef^^c3{\~A} \gdef^^c4{\"A} \gdef^^c5{\ringaccent A} \gdef^^c6{\AE} \gdef^^c7{\cedilla C} \gdef^^c8{\`E} \gdef^^c9{\'E} \gdef^^ca{\^E} \gdef^^cb{\"E} \gdef^^cc{\`I} \gdef^^cd{\'I} \gdef^^ce{\^I} \gdef^^cf{\"I} % \gdef^^d0{\DH} \gdef^^d1{\~N} \gdef^^d2{\`O} \gdef^^d3{\'O} \gdef^^d4{\^O} \gdef^^d5{\~O} \gdef^^d6{\"O} \gdef^^d7{$\times$} \gdef^^d8{\O} \gdef^^d9{\`U} \gdef^^da{\'U} \gdef^^db{\^U} \gdef^^dc{\"U} \gdef^^dd{\'Y} \gdef^^de{\TH} \gdef^^df{\ss} % \gdef^^e0{\`a} \gdef^^e1{\'a} \gdef^^e2{\^a} \gdef^^e3{\~a} \gdef^^e4{\"a} \gdef^^e5{\ringaccent a} \gdef^^e6{\ae} \gdef^^e7{\cedilla c} \gdef^^e8{\`e} \gdef^^e9{\'e} \gdef^^ea{\^e} \gdef^^eb{\"e} \gdef^^ec{\`{\dotless i}} \gdef^^ed{\'{\dotless i}} \gdef^^ee{\^{\dotless i}} \gdef^^ef{\"{\dotless i}} % \gdef^^f0{\dh} \gdef^^f1{\~n} \gdef^^f2{\`o} \gdef^^f3{\'o} \gdef^^f4{\^o} \gdef^^f5{\~o} \gdef^^f6{\"o} \gdef^^f7{$\div$} \gdef^^f8{\o} \gdef^^f9{\`u} \gdef^^fa{\'u} \gdef^^fb{\^u} \gdef^^fc{\"u} \gdef^^fd{\'y} \gdef^^fe{\th} \gdef^^ff{\"y} } % Latin9 (ISO-8859-15) encoding character definitions. \def\latninechardefs{% % Encoding is almost identical to Latin1. \latonechardefs % \gdef^^a4{\euro} \gdef^^a6{\v S} \gdef^^a8{\v s} \gdef^^b4{\v Z} \gdef^^b8{\v z} \gdef^^bc{\OE} \gdef^^bd{\oe} \gdef^^be{\"Y} } % Latin2 (ISO-8859-2) character definitions. \def\lattwochardefs{% \gdef^^a0{\tie} \gdef^^a1{\ogonek{A}} \gdef^^a2{\u{}} \gdef^^a3{\L} \gdef^^a4{\missingcharmsg{CURRENCY SIGN}} \gdef^^a5{\v L} \gdef^^a6{\'S} \gdef^^a7{\S} \gdef^^a8{\"{}} \gdef^^a9{\v S} \gdef^^aa{\cedilla S} \gdef^^ab{\v T} \gdef^^ac{\'Z} \gdef^^ad{\-} \gdef^^ae{\v Z} \gdef^^af{\dotaccent Z} % \gdef^^b0{\textdegree} \gdef^^b1{\ogonek{a}} \gdef^^b2{\ogonek{ }} \gdef^^b3{\l} \gdef^^b4{\'{}} \gdef^^b5{\v l} \gdef^^b6{\'s} \gdef^^b7{\v{}} \gdef^^b8{\cedilla\ } \gdef^^b9{\v s} \gdef^^ba{\cedilla s} \gdef^^bb{\v t} \gdef^^bc{\'z} \gdef^^bd{\H{}} \gdef^^be{\v z} \gdef^^bf{\dotaccent z} % \gdef^^c0{\'R} \gdef^^c1{\'A} \gdef^^c2{\^A} \gdef^^c3{\u A} \gdef^^c4{\"A} \gdef^^c5{\'L} \gdef^^c6{\'C} \gdef^^c7{\cedilla C} \gdef^^c8{\v C} \gdef^^c9{\'E} \gdef^^ca{\ogonek{E}} \gdef^^cb{\"E} \gdef^^cc{\v E} \gdef^^cd{\'I} \gdef^^ce{\^I} \gdef^^cf{\v D} % \gdef^^d0{\DH} \gdef^^d1{\'N} \gdef^^d2{\v N} \gdef^^d3{\'O} \gdef^^d4{\^O} \gdef^^d5{\H O} \gdef^^d6{\"O} \gdef^^d7{$\times$} \gdef^^d8{\v R} \gdef^^d9{\ringaccent U} \gdef^^da{\'U} \gdef^^db{\H U} \gdef^^dc{\"U} \gdef^^dd{\'Y} \gdef^^de{\cedilla T} \gdef^^df{\ss} % \gdef^^e0{\'r} \gdef^^e1{\'a} \gdef^^e2{\^a} \gdef^^e3{\u a} \gdef^^e4{\"a} \gdef^^e5{\'l} \gdef^^e6{\'c} \gdef^^e7{\cedilla c} \gdef^^e8{\v c} \gdef^^e9{\'e} \gdef^^ea{\ogonek{e}} \gdef^^eb{\"e} \gdef^^ec{\v e} \gdef^^ed{\'{\dotless{i}}} \gdef^^ee{\^{\dotless{i}}} \gdef^^ef{\v d} % \gdef^^f0{\dh} \gdef^^f1{\'n} \gdef^^f2{\v n} \gdef^^f3{\'o} \gdef^^f4{\^o} \gdef^^f5{\H o} \gdef^^f6{\"o} \gdef^^f7{$\div$} \gdef^^f8{\v r} \gdef^^f9{\ringaccent u} \gdef^^fa{\'u} \gdef^^fb{\H u} \gdef^^fc{\"u} \gdef^^fd{\'y} \gdef^^fe{\cedilla t} \gdef^^ff{\dotaccent{}} } % UTF-8 character definitions. % % This code to support UTF-8 is based on LaTeX's utf8.def, with some % changes for Texinfo conventions. It is included here under the GPL by % permission from Frank Mittelbach and the LaTeX team. % \newcount\countUTFx \newcount\countUTFy \newcount\countUTFz \gdef\UTFviiiTwoOctets#1#2{\expandafter \UTFviiiDefined\csname u8:#1\string #2\endcsname} % \gdef\UTFviiiThreeOctets#1#2#3{\expandafter \UTFviiiDefined\csname u8:#1\string #2\string #3\endcsname} % \gdef\UTFviiiFourOctets#1#2#3#4{\expandafter \UTFviiiDefined\csname u8:#1\string #2\string #3\string #4\endcsname} \gdef\UTFviiiDefined#1{% \ifx #1\relax \message{\linenumber Unicode char \string #1 not defined for Texinfo}% \else \expandafter #1% \fi } \begingroup \catcode`\~13 \catcode`\"12 \def\UTFviiiLoop{% \global\catcode\countUTFx\active \uccode`\~\countUTFx \uppercase\expandafter{\UTFviiiTmp}% \advance\countUTFx by 1 \ifnum\countUTFx < \countUTFy \expandafter\UTFviiiLoop \fi} \countUTFx = "C2 \countUTFy = "E0 \def\UTFviiiTmp{% \xdef~{\noexpand\UTFviiiTwoOctets\string~}} \UTFviiiLoop \countUTFx = "E0 \countUTFy = "F0 \def\UTFviiiTmp{% \xdef~{\noexpand\UTFviiiThreeOctets\string~}} \UTFviiiLoop \countUTFx = "F0 \countUTFy = "F4 \def\UTFviiiTmp{% \xdef~{\noexpand\UTFviiiFourOctets\string~}} \UTFviiiLoop \endgroup \begingroup \catcode`\"=12 \catcode`\<=12 \catcode`\.=12 \catcode`\,=12 \catcode`\;=12 \catcode`\!=12 \catcode`\~=13 \gdef\DeclareUnicodeCharacter#1#2{% \countUTFz = "#1\relax %\wlog{\space\space defining Unicode char U+#1 (decimal \the\countUTFz)}% \begingroup \parseXMLCharref \def\UTFviiiTwoOctets##1##2{% \csname u8:##1\string ##2\endcsname}% \def\UTFviiiThreeOctets##1##2##3{% \csname u8:##1\string ##2\string ##3\endcsname}% \def\UTFviiiFourOctets##1##2##3##4{% \csname u8:##1\string ##2\string ##3\string ##4\endcsname}% \expandafter\expandafter\expandafter\expandafter \expandafter\expandafter\expandafter \gdef\UTFviiiTmp{#2}% \endgroup} \gdef\parseXMLCharref{% \ifnum\countUTFz < "A0\relax \errhelp = \EMsimple \errmessage{Cannot define Unicode char value < 00A0}% \else\ifnum\countUTFz < "800\relax \parseUTFviiiA,% \parseUTFviiiB C\UTFviiiTwoOctets.,% \else\ifnum\countUTFz < "10000\relax \parseUTFviiiA;% \parseUTFviiiA,% \parseUTFviiiB E\UTFviiiThreeOctets.{,;}% \else \parseUTFviiiA;% \parseUTFviiiA,% \parseUTFviiiA!% \parseUTFviiiB F\UTFviiiFourOctets.{!,;}% \fi\fi\fi } \gdef\parseUTFviiiA#1{% \countUTFx = \countUTFz \divide\countUTFz by 64 \countUTFy = \countUTFz \multiply\countUTFz by 64 \advance\countUTFx by -\countUTFz \advance\countUTFx by 128 \uccode `#1\countUTFx \countUTFz = \countUTFy} \gdef\parseUTFviiiB#1#2#3#4{% \advance\countUTFz by "#10\relax \uccode `#3\countUTFz \uppercase{\gdef\UTFviiiTmp{#2#3#4}}} \endgroup \def\utfeightchardefs{% \DeclareUnicodeCharacter{00A0}{\tie} \DeclareUnicodeCharacter{00A1}{\exclamdown} \DeclareUnicodeCharacter{00A3}{\pounds} \DeclareUnicodeCharacter{00A8}{\"{ }} \DeclareUnicodeCharacter{00A9}{\copyright} \DeclareUnicodeCharacter{00AA}{\ordf} \DeclareUnicodeCharacter{00AB}{\guillemetleft} \DeclareUnicodeCharacter{00AD}{\-} \DeclareUnicodeCharacter{00AE}{\registeredsymbol} \DeclareUnicodeCharacter{00AF}{\={ }} \DeclareUnicodeCharacter{00B0}{\ringaccent{ }} \DeclareUnicodeCharacter{00B4}{\'{ }} \DeclareUnicodeCharacter{00B8}{\cedilla{ }} \DeclareUnicodeCharacter{00BA}{\ordm} \DeclareUnicodeCharacter{00BB}{\guillemetright} \DeclareUnicodeCharacter{00BF}{\questiondown} \DeclareUnicodeCharacter{00C0}{\`A} \DeclareUnicodeCharacter{00C1}{\'A} \DeclareUnicodeCharacter{00C2}{\^A} \DeclareUnicodeCharacter{00C3}{\~A} \DeclareUnicodeCharacter{00C4}{\"A} \DeclareUnicodeCharacter{00C5}{\AA} \DeclareUnicodeCharacter{00C6}{\AE} \DeclareUnicodeCharacter{00C7}{\cedilla{C}} \DeclareUnicodeCharacter{00C8}{\`E} \DeclareUnicodeCharacter{00C9}{\'E} \DeclareUnicodeCharacter{00CA}{\^E} \DeclareUnicodeCharacter{00CB}{\"E} \DeclareUnicodeCharacter{00CC}{\`I} \DeclareUnicodeCharacter{00CD}{\'I} \DeclareUnicodeCharacter{00CE}{\^I} \DeclareUnicodeCharacter{00CF}{\"I} \DeclareUnicodeCharacter{00D0}{\DH} \DeclareUnicodeCharacter{00D1}{\~N} \DeclareUnicodeCharacter{00D2}{\`O} \DeclareUnicodeCharacter{00D3}{\'O} \DeclareUnicodeCharacter{00D4}{\^O} \DeclareUnicodeCharacter{00D5}{\~O} \DeclareUnicodeCharacter{00D6}{\"O} \DeclareUnicodeCharacter{00D8}{\O} \DeclareUnicodeCharacter{00D9}{\`U} \DeclareUnicodeCharacter{00DA}{\'U} \DeclareUnicodeCharacter{00DB}{\^U} \DeclareUnicodeCharacter{00DC}{\"U} \DeclareUnicodeCharacter{00DD}{\'Y} \DeclareUnicodeCharacter{00DE}{\TH} \DeclareUnicodeCharacter{00DF}{\ss} \DeclareUnicodeCharacter{00E0}{\`a} \DeclareUnicodeCharacter{00E1}{\'a} \DeclareUnicodeCharacter{00E2}{\^a} \DeclareUnicodeCharacter{00E3}{\~a} \DeclareUnicodeCharacter{00E4}{\"a} \DeclareUnicodeCharacter{00E5}{\aa} \DeclareUnicodeCharacter{00E6}{\ae} \DeclareUnicodeCharacter{00E7}{\cedilla{c}} \DeclareUnicodeCharacter{00E8}{\`e} \DeclareUnicodeCharacter{00E9}{\'e} \DeclareUnicodeCharacter{00EA}{\^e} \DeclareUnicodeCharacter{00EB}{\"e} \DeclareUnicodeCharacter{00EC}{\`{\dotless{i}}} \DeclareUnicodeCharacter{00ED}{\'{\dotless{i}}} \DeclareUnicodeCharacter{00EE}{\^{\dotless{i}}} \DeclareUnicodeCharacter{00EF}{\"{\dotless{i}}} \DeclareUnicodeCharacter{00F0}{\dh} \DeclareUnicodeCharacter{00F1}{\~n} \DeclareUnicodeCharacter{00F2}{\`o} \DeclareUnicodeCharacter{00F3}{\'o} \DeclareUnicodeCharacter{00F4}{\^o} \DeclareUnicodeCharacter{00F5}{\~o} \DeclareUnicodeCharacter{00F6}{\"o} \DeclareUnicodeCharacter{00F8}{\o} \DeclareUnicodeCharacter{00F9}{\`u} \DeclareUnicodeCharacter{00FA}{\'u} \DeclareUnicodeCharacter{00FB}{\^u} \DeclareUnicodeCharacter{00FC}{\"u} \DeclareUnicodeCharacter{00FD}{\'y} \DeclareUnicodeCharacter{00FE}{\th} \DeclareUnicodeCharacter{00FF}{\"y} \DeclareUnicodeCharacter{0100}{\=A} \DeclareUnicodeCharacter{0101}{\=a} \DeclareUnicodeCharacter{0102}{\u{A}} \DeclareUnicodeCharacter{0103}{\u{a}} \DeclareUnicodeCharacter{0104}{\ogonek{A}} \DeclareUnicodeCharacter{0105}{\ogonek{a}} \DeclareUnicodeCharacter{0106}{\'C} \DeclareUnicodeCharacter{0107}{\'c} \DeclareUnicodeCharacter{0108}{\^C} \DeclareUnicodeCharacter{0109}{\^c} \DeclareUnicodeCharacter{0118}{\ogonek{E}} \DeclareUnicodeCharacter{0119}{\ogonek{e}} \DeclareUnicodeCharacter{010A}{\dotaccent{C}} \DeclareUnicodeCharacter{010B}{\dotaccent{c}} \DeclareUnicodeCharacter{010C}{\v{C}} \DeclareUnicodeCharacter{010D}{\v{c}} \DeclareUnicodeCharacter{010E}{\v{D}} \DeclareUnicodeCharacter{0112}{\=E} \DeclareUnicodeCharacter{0113}{\=e} \DeclareUnicodeCharacter{0114}{\u{E}} \DeclareUnicodeCharacter{0115}{\u{e}} \DeclareUnicodeCharacter{0116}{\dotaccent{E}} \DeclareUnicodeCharacter{0117}{\dotaccent{e}} \DeclareUnicodeCharacter{011A}{\v{E}} \DeclareUnicodeCharacter{011B}{\v{e}} \DeclareUnicodeCharacter{011C}{\^G} \DeclareUnicodeCharacter{011D}{\^g} \DeclareUnicodeCharacter{011E}{\u{G}} \DeclareUnicodeCharacter{011F}{\u{g}} \DeclareUnicodeCharacter{0120}{\dotaccent{G}} \DeclareUnicodeCharacter{0121}{\dotaccent{g}} \DeclareUnicodeCharacter{0124}{\^H} \DeclareUnicodeCharacter{0125}{\^h} \DeclareUnicodeCharacter{0128}{\~I} \DeclareUnicodeCharacter{0129}{\~{\dotless{i}}} \DeclareUnicodeCharacter{012A}{\=I} \DeclareUnicodeCharacter{012B}{\={\dotless{i}}} \DeclareUnicodeCharacter{012C}{\u{I}} \DeclareUnicodeCharacter{012D}{\u{\dotless{i}}} \DeclareUnicodeCharacter{0130}{\dotaccent{I}} \DeclareUnicodeCharacter{0131}{\dotless{i}} \DeclareUnicodeCharacter{0132}{IJ} \DeclareUnicodeCharacter{0133}{ij} \DeclareUnicodeCharacter{0134}{\^J} \DeclareUnicodeCharacter{0135}{\^{\dotless{j}}} \DeclareUnicodeCharacter{0139}{\'L} \DeclareUnicodeCharacter{013A}{\'l} \DeclareUnicodeCharacter{0141}{\L} \DeclareUnicodeCharacter{0142}{\l} \DeclareUnicodeCharacter{0143}{\'N} \DeclareUnicodeCharacter{0144}{\'n} \DeclareUnicodeCharacter{0147}{\v{N}} \DeclareUnicodeCharacter{0148}{\v{n}} \DeclareUnicodeCharacter{014C}{\=O} \DeclareUnicodeCharacter{014D}{\=o} \DeclareUnicodeCharacter{014E}{\u{O}} \DeclareUnicodeCharacter{014F}{\u{o}} \DeclareUnicodeCharacter{0150}{\H{O}} \DeclareUnicodeCharacter{0151}{\H{o}} \DeclareUnicodeCharacter{0152}{\OE} \DeclareUnicodeCharacter{0153}{\oe} \DeclareUnicodeCharacter{0154}{\'R} \DeclareUnicodeCharacter{0155}{\'r} \DeclareUnicodeCharacter{0158}{\v{R}} \DeclareUnicodeCharacter{0159}{\v{r}} \DeclareUnicodeCharacter{015A}{\'S} \DeclareUnicodeCharacter{015B}{\'s} \DeclareUnicodeCharacter{015C}{\^S} \DeclareUnicodeCharacter{015D}{\^s} \DeclareUnicodeCharacter{015E}{\cedilla{S}} \DeclareUnicodeCharacter{015F}{\cedilla{s}} \DeclareUnicodeCharacter{0160}{\v{S}} \DeclareUnicodeCharacter{0161}{\v{s}} \DeclareUnicodeCharacter{0162}{\cedilla{t}} \DeclareUnicodeCharacter{0163}{\cedilla{T}} \DeclareUnicodeCharacter{0164}{\v{T}} \DeclareUnicodeCharacter{0168}{\~U} \DeclareUnicodeCharacter{0169}{\~u} \DeclareUnicodeCharacter{016A}{\=U} \DeclareUnicodeCharacter{016B}{\=u} \DeclareUnicodeCharacter{016C}{\u{U}} \DeclareUnicodeCharacter{016D}{\u{u}} \DeclareUnicodeCharacter{016E}{\ringaccent{U}} \DeclareUnicodeCharacter{016F}{\ringaccent{u}} \DeclareUnicodeCharacter{0170}{\H{U}} \DeclareUnicodeCharacter{0171}{\H{u}} \DeclareUnicodeCharacter{0174}{\^W} \DeclareUnicodeCharacter{0175}{\^w} \DeclareUnicodeCharacter{0176}{\^Y} \DeclareUnicodeCharacter{0177}{\^y} \DeclareUnicodeCharacter{0178}{\"Y} \DeclareUnicodeCharacter{0179}{\'Z} \DeclareUnicodeCharacter{017A}{\'z} \DeclareUnicodeCharacter{017B}{\dotaccent{Z}} \DeclareUnicodeCharacter{017C}{\dotaccent{z}} \DeclareUnicodeCharacter{017D}{\v{Z}} \DeclareUnicodeCharacter{017E}{\v{z}} \DeclareUnicodeCharacter{01C4}{D\v{Z}} \DeclareUnicodeCharacter{01C5}{D\v{z}} \DeclareUnicodeCharacter{01C6}{d\v{z}} \DeclareUnicodeCharacter{01C7}{LJ} \DeclareUnicodeCharacter{01C8}{Lj} \DeclareUnicodeCharacter{01C9}{lj} \DeclareUnicodeCharacter{01CA}{NJ} \DeclareUnicodeCharacter{01CB}{Nj} \DeclareUnicodeCharacter{01CC}{nj} \DeclareUnicodeCharacter{01CD}{\v{A}} \DeclareUnicodeCharacter{01CE}{\v{a}} \DeclareUnicodeCharacter{01CF}{\v{I}} \DeclareUnicodeCharacter{01D0}{\v{\dotless{i}}} \DeclareUnicodeCharacter{01D1}{\v{O}} \DeclareUnicodeCharacter{01D2}{\v{o}} \DeclareUnicodeCharacter{01D3}{\v{U}} \DeclareUnicodeCharacter{01D4}{\v{u}} \DeclareUnicodeCharacter{01E2}{\={\AE}} \DeclareUnicodeCharacter{01E3}{\={\ae}} \DeclareUnicodeCharacter{01E6}{\v{G}} \DeclareUnicodeCharacter{01E7}{\v{g}} \DeclareUnicodeCharacter{01E8}{\v{K}} \DeclareUnicodeCharacter{01E9}{\v{k}} \DeclareUnicodeCharacter{01F0}{\v{\dotless{j}}} \DeclareUnicodeCharacter{01F1}{DZ} \DeclareUnicodeCharacter{01F2}{Dz} \DeclareUnicodeCharacter{01F3}{dz} \DeclareUnicodeCharacter{01F4}{\'G} \DeclareUnicodeCharacter{01F5}{\'g} \DeclareUnicodeCharacter{01F8}{\`N} \DeclareUnicodeCharacter{01F9}{\`n} \DeclareUnicodeCharacter{01FC}{\'{\AE}} \DeclareUnicodeCharacter{01FD}{\'{\ae}} \DeclareUnicodeCharacter{01FE}{\'{\O}} \DeclareUnicodeCharacter{01FF}{\'{\o}} \DeclareUnicodeCharacter{021E}{\v{H}} \DeclareUnicodeCharacter{021F}{\v{h}} \DeclareUnicodeCharacter{0226}{\dotaccent{A}} \DeclareUnicodeCharacter{0227}{\dotaccent{a}} \DeclareUnicodeCharacter{0228}{\cedilla{E}} \DeclareUnicodeCharacter{0229}{\cedilla{e}} \DeclareUnicodeCharacter{022E}{\dotaccent{O}} \DeclareUnicodeCharacter{022F}{\dotaccent{o}} \DeclareUnicodeCharacter{0232}{\=Y} \DeclareUnicodeCharacter{0233}{\=y} \DeclareUnicodeCharacter{0237}{\dotless{j}} \DeclareUnicodeCharacter{02DB}{\ogonek{ }} \DeclareUnicodeCharacter{1E02}{\dotaccent{B}} \DeclareUnicodeCharacter{1E03}{\dotaccent{b}} \DeclareUnicodeCharacter{1E04}{\udotaccent{B}} \DeclareUnicodeCharacter{1E05}{\udotaccent{b}} \DeclareUnicodeCharacter{1E06}{\ubaraccent{B}} \DeclareUnicodeCharacter{1E07}{\ubaraccent{b}} \DeclareUnicodeCharacter{1E0A}{\dotaccent{D}} \DeclareUnicodeCharacter{1E0B}{\dotaccent{d}} \DeclareUnicodeCharacter{1E0C}{\udotaccent{D}} \DeclareUnicodeCharacter{1E0D}{\udotaccent{d}} \DeclareUnicodeCharacter{1E0E}{\ubaraccent{D}} \DeclareUnicodeCharacter{1E0F}{\ubaraccent{d}} \DeclareUnicodeCharacter{1E1E}{\dotaccent{F}} \DeclareUnicodeCharacter{1E1F}{\dotaccent{f}} \DeclareUnicodeCharacter{1E20}{\=G} \DeclareUnicodeCharacter{1E21}{\=g} \DeclareUnicodeCharacter{1E22}{\dotaccent{H}} \DeclareUnicodeCharacter{1E23}{\dotaccent{h}} \DeclareUnicodeCharacter{1E24}{\udotaccent{H}} \DeclareUnicodeCharacter{1E25}{\udotaccent{h}} \DeclareUnicodeCharacter{1E26}{\"H} \DeclareUnicodeCharacter{1E27}{\"h} \DeclareUnicodeCharacter{1E30}{\'K} \DeclareUnicodeCharacter{1E31}{\'k} \DeclareUnicodeCharacter{1E32}{\udotaccent{K}} \DeclareUnicodeCharacter{1E33}{\udotaccent{k}} \DeclareUnicodeCharacter{1E34}{\ubaraccent{K}} \DeclareUnicodeCharacter{1E35}{\ubaraccent{k}} \DeclareUnicodeCharacter{1E36}{\udotaccent{L}} \DeclareUnicodeCharacter{1E37}{\udotaccent{l}} \DeclareUnicodeCharacter{1E3A}{\ubaraccent{L}} \DeclareUnicodeCharacter{1E3B}{\ubaraccent{l}} \DeclareUnicodeCharacter{1E3E}{\'M} \DeclareUnicodeCharacter{1E3F}{\'m} \DeclareUnicodeCharacter{1E40}{\dotaccent{M}} \DeclareUnicodeCharacter{1E41}{\dotaccent{m}} \DeclareUnicodeCharacter{1E42}{\udotaccent{M}} \DeclareUnicodeCharacter{1E43}{\udotaccent{m}} \DeclareUnicodeCharacter{1E44}{\dotaccent{N}} \DeclareUnicodeCharacter{1E45}{\dotaccent{n}} \DeclareUnicodeCharacter{1E46}{\udotaccent{N}} \DeclareUnicodeCharacter{1E47}{\udotaccent{n}} \DeclareUnicodeCharacter{1E48}{\ubaraccent{N}} \DeclareUnicodeCharacter{1E49}{\ubaraccent{n}} \DeclareUnicodeCharacter{1E54}{\'P} \DeclareUnicodeCharacter{1E55}{\'p} \DeclareUnicodeCharacter{1E56}{\dotaccent{P}} \DeclareUnicodeCharacter{1E57}{\dotaccent{p}} \DeclareUnicodeCharacter{1E58}{\dotaccent{R}} \DeclareUnicodeCharacter{1E59}{\dotaccent{r}} \DeclareUnicodeCharacter{1E5A}{\udotaccent{R}} \DeclareUnicodeCharacter{1E5B}{\udotaccent{r}} \DeclareUnicodeCharacter{1E5E}{\ubaraccent{R}} \DeclareUnicodeCharacter{1E5F}{\ubaraccent{r}} \DeclareUnicodeCharacter{1E60}{\dotaccent{S}} \DeclareUnicodeCharacter{1E61}{\dotaccent{s}} \DeclareUnicodeCharacter{1E62}{\udotaccent{S}} \DeclareUnicodeCharacter{1E63}{\udotaccent{s}} \DeclareUnicodeCharacter{1E6A}{\dotaccent{T}} \DeclareUnicodeCharacter{1E6B}{\dotaccent{t}} \DeclareUnicodeCharacter{1E6C}{\udotaccent{T}} \DeclareUnicodeCharacter{1E6D}{\udotaccent{t}} \DeclareUnicodeCharacter{1E6E}{\ubaraccent{T}} \DeclareUnicodeCharacter{1E6F}{\ubaraccent{t}} \DeclareUnicodeCharacter{1E7C}{\~V} \DeclareUnicodeCharacter{1E7D}{\~v} \DeclareUnicodeCharacter{1E7E}{\udotaccent{V}} \DeclareUnicodeCharacter{1E7F}{\udotaccent{v}} \DeclareUnicodeCharacter{1E80}{\`W} \DeclareUnicodeCharacter{1E81}{\`w} \DeclareUnicodeCharacter{1E82}{\'W} \DeclareUnicodeCharacter{1E83}{\'w} \DeclareUnicodeCharacter{1E84}{\"W} \DeclareUnicodeCharacter{1E85}{\"w} \DeclareUnicodeCharacter{1E86}{\dotaccent{W}} \DeclareUnicodeCharacter{1E87}{\dotaccent{w}} \DeclareUnicodeCharacter{1E88}{\udotaccent{W}} \DeclareUnicodeCharacter{1E89}{\udotaccent{w}} \DeclareUnicodeCharacter{1E8A}{\dotaccent{X}} \DeclareUnicodeCharacter{1E8B}{\dotaccent{x}} \DeclareUnicodeCharacter{1E8C}{\"X} \DeclareUnicodeCharacter{1E8D}{\"x} \DeclareUnicodeCharacter{1E8E}{\dotaccent{Y}} \DeclareUnicodeCharacter{1E8F}{\dotaccent{y}} \DeclareUnicodeCharacter{1E90}{\^Z} \DeclareUnicodeCharacter{1E91}{\^z} \DeclareUnicodeCharacter{1E92}{\udotaccent{Z}} \DeclareUnicodeCharacter{1E93}{\udotaccent{z}} \DeclareUnicodeCharacter{1E94}{\ubaraccent{Z}} \DeclareUnicodeCharacter{1E95}{\ubaraccent{z}} \DeclareUnicodeCharacter{1E96}{\ubaraccent{h}} \DeclareUnicodeCharacter{1E97}{\"t} \DeclareUnicodeCharacter{1E98}{\ringaccent{w}} \DeclareUnicodeCharacter{1E99}{\ringaccent{y}} \DeclareUnicodeCharacter{1EA0}{\udotaccent{A}} \DeclareUnicodeCharacter{1EA1}{\udotaccent{a}} \DeclareUnicodeCharacter{1EB8}{\udotaccent{E}} \DeclareUnicodeCharacter{1EB9}{\udotaccent{e}} \DeclareUnicodeCharacter{1EBC}{\~E} \DeclareUnicodeCharacter{1EBD}{\~e} \DeclareUnicodeCharacter{1ECA}{\udotaccent{I}} \DeclareUnicodeCharacter{1ECB}{\udotaccent{i}} \DeclareUnicodeCharacter{1ECC}{\udotaccent{O}} \DeclareUnicodeCharacter{1ECD}{\udotaccent{o}} \DeclareUnicodeCharacter{1EE4}{\udotaccent{U}} \DeclareUnicodeCharacter{1EE5}{\udotaccent{u}} \DeclareUnicodeCharacter{1EF2}{\`Y} \DeclareUnicodeCharacter{1EF3}{\`y} \DeclareUnicodeCharacter{1EF4}{\udotaccent{Y}} \DeclareUnicodeCharacter{1EF8}{\~Y} \DeclareUnicodeCharacter{1EF9}{\~y} \DeclareUnicodeCharacter{2013}{--} \DeclareUnicodeCharacter{2014}{---} \DeclareUnicodeCharacter{2018}{\quoteleft} \DeclareUnicodeCharacter{2019}{\quoteright} \DeclareUnicodeCharacter{201A}{\quotesinglbase} \DeclareUnicodeCharacter{201C}{\quotedblleft} \DeclareUnicodeCharacter{201D}{\quotedblright} \DeclareUnicodeCharacter{201E}{\quotedblbase} \DeclareUnicodeCharacter{2022}{\bullet} \DeclareUnicodeCharacter{2026}{\dots} \DeclareUnicodeCharacter{2039}{\guilsinglleft} \DeclareUnicodeCharacter{203A}{\guilsinglright} \DeclareUnicodeCharacter{20AC}{\euro} \DeclareUnicodeCharacter{2192}{\expansion} \DeclareUnicodeCharacter{21D2}{\result} \DeclareUnicodeCharacter{2212}{\minus} \DeclareUnicodeCharacter{2217}{\point} \DeclareUnicodeCharacter{2261}{\equiv} }% end of \utfeightchardefs % US-ASCII character definitions. \def\asciichardefs{% nothing need be done \relax } % Make non-ASCII characters printable again for compatibility with % existing Texinfo documents that may use them, even without declaring a % document encoding. % \setnonasciicharscatcode \other \message{formatting,} \newdimen\defaultparindent \defaultparindent = 15pt \chapheadingskip = 15pt plus 4pt minus 2pt \secheadingskip = 12pt plus 3pt minus 2pt \subsecheadingskip = 9pt plus 2pt minus 2pt % Prevent underfull vbox error messages. \vbadness = 10000 % Don't be very finicky about underfull hboxes, either. \hbadness = 6666 % Following George Bush, get rid of widows and orphans. \widowpenalty=10000 \clubpenalty=10000 % Use TeX 3.0's \emergencystretch to help line breaking, but if we're % using an old version of TeX, don't do anything. We want the amount of % stretch added to depend on the line length, hence the dependence on % \hsize. We call this whenever the paper size is set. % \def\setemergencystretch{% \ifx\emergencystretch\thisisundefined % Allow us to assign to \emergencystretch anyway. \def\emergencystretch{\dimen0}% \else \emergencystretch = .15\hsize \fi } % Parameters in order: 1) textheight; 2) textwidth; % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip; % 7) physical page height; 8) physical page width. % % We also call \setleading{\textleading}, so the caller should define % \textleading. The caller should also set \parskip. % \def\internalpagesizes#1#2#3#4#5#6#7#8{% \voffset = #3\relax \topskip = #6\relax \splittopskip = \topskip % \vsize = #1\relax \advance\vsize by \topskip \outervsize = \vsize \advance\outervsize by 2\topandbottommargin \pageheight = \vsize % \hsize = #2\relax \outerhsize = \hsize \advance\outerhsize by 0.5in \pagewidth = \hsize % \normaloffset = #4\relax \bindingoffset = #5\relax % \ifpdf \pdfpageheight #7\relax \pdfpagewidth #8\relax % if we don't reset these, they will remain at "1 true in" of % whatever layout pdftex was dumped with. \pdfhorigin = 1 true in \pdfvorigin = 1 true in \fi % \setleading{\textleading} % \parindent = \defaultparindent \setemergencystretch } % @letterpaper (the default). \def\letterpaper{{\globaldefs = 1 \parskip = 3pt plus 2pt minus 1pt \textleading = 13.2pt % % If page is nothing but text, make it come out even. \internalpagesizes{607.2pt}{6in}% that's 46 lines {\voffset}{.25in}% {\bindingoffset}{36pt}% {11in}{8.5in}% }} % Use @smallbook to reset parameters for 7x9.25 trim size. \def\smallbook{{\globaldefs = 1 \parskip = 2pt plus 1pt \textleading = 12pt % \internalpagesizes{7.5in}{5in}% {-.2in}{0in}% {\bindingoffset}{16pt}% {9.25in}{7in}% % \lispnarrowing = 0.3in \tolerance = 700 \hfuzz = 1pt \contentsrightmargin = 0pt \defbodyindent = .5cm }} % Use @smallerbook to reset parameters for 6x9 trim size. % (Just testing, parameters still in flux.) \def\smallerbook{{\globaldefs = 1 \parskip = 1.5pt plus 1pt \textleading = 12pt % \internalpagesizes{7.4in}{4.8in}% {-.2in}{-.4in}% {0pt}{14pt}% {9in}{6in}% % \lispnarrowing = 0.25in \tolerance = 700 \hfuzz = 1pt \contentsrightmargin = 0pt \defbodyindent = .4cm }} % Use @afourpaper to print on European A4 paper. \def\afourpaper{{\globaldefs = 1 \parskip = 3pt plus 2pt minus 1pt \textleading = 13.2pt % % Double-side printing via postscript on Laserjet 4050 % prints double-sided nicely when \bindingoffset=10mm and \hoffset=-6mm. % To change the settings for a different printer or situation, adjust % \normaloffset until the front-side and back-side texts align. Then % do the same for \bindingoffset. You can set these for testing in % your texinfo source file like this: % @tex % \global\normaloffset = -6mm % \global\bindingoffset = 10mm % @end tex \internalpagesizes{673.2pt}{160mm}% that's 51 lines {\voffset}{\hoffset}% {\bindingoffset}{44pt}% {297mm}{210mm}% % \tolerance = 700 \hfuzz = 1pt \contentsrightmargin = 0pt \defbodyindent = 5mm }} % Use @afivepaper to print on European A5 paper. % From romildo@urano.iceb.ufop.br, 2 July 2000. % He also recommends making @example and @lisp be small. \def\afivepaper{{\globaldefs = 1 \parskip = 2pt plus 1pt minus 0.1pt \textleading = 12.5pt % \internalpagesizes{160mm}{120mm}% {\voffset}{\hoffset}% {\bindingoffset}{8pt}% {210mm}{148mm}% % \lispnarrowing = 0.2in \tolerance = 800 \hfuzz = 1.2pt \contentsrightmargin = 0pt \defbodyindent = 2mm \tableindent = 12mm }} % A specific text layout, 24x15cm overall, intended for A4 paper. \def\afourlatex{{\globaldefs = 1 \afourpaper \internalpagesizes{237mm}{150mm}% {\voffset}{4.6mm}% {\bindingoffset}{7mm}% {297mm}{210mm}% % % Must explicitly reset to 0 because we call \afourpaper. \globaldefs = 0 }} % Use @afourwide to print on A4 paper in landscape format. \def\afourwide{{\globaldefs = 1 \afourpaper \internalpagesizes{241mm}{165mm}% {\voffset}{-2.95mm}% {\bindingoffset}{7mm}% {297mm}{210mm}% \globaldefs = 0 }} % @pagesizes TEXTHEIGHT[,TEXTWIDTH] % Perhaps we should allow setting the margins, \topskip, \parskip, % and/or leading, also. Or perhaps we should compute them somehow. % \parseargdef\pagesizes{\pagesizesyyy #1,,\finish} \def\pagesizesyyy#1,#2,#3\finish{{% \setbox0 = \hbox{\ignorespaces #2}\ifdim\wd0 > 0pt \hsize=#2\relax \fi \globaldefs = 1 % \parskip = 3pt plus 2pt minus 1pt \setleading{\textleading}% % \dimen0 = #1\relax \advance\dimen0 by \voffset % \dimen2 = \hsize \advance\dimen2 by \normaloffset % \internalpagesizes{#1}{\hsize}% {\voffset}{\normaloffset}% {\bindingoffset}{44pt}% {\dimen0}{\dimen2}% }} % Set default to letter. % \letterpaper \message{and turning on texinfo input format.} \def^^L{\par} % remove \outer, so ^L can appear in an @comment % DEL is a comment character, in case @c does not suffice. \catcode`\^^? = 14 % Define macros to output various characters with catcode for normal text. \catcode`\"=\other \def\normaldoublequote{"} \catcode`\$=\other \def\normaldollar{$}%$ font-lock fix \catcode`\+=\other \def\normalplus{+} \catcode`\<=\other \def\normalless{<} \catcode`\>=\other \def\normalgreater{>} \catcode`\^=\other \def\normalcaret{^} \catcode`\_=\other \def\normalunderscore{_} \catcode`\|=\other \def\normalverticalbar{|} \catcode`\~=\other \def\normaltilde{~} % This macro is used to make a character print one way in \tt % (where it can probably be output as-is), and another way in other fonts, % where something hairier probably needs to be done. % % #1 is what to print if we are indeed using \tt; #2 is what to print % otherwise. Since all the Computer Modern typewriter fonts have zero % interword stretch (and shrink), and it is reasonable to expect all % typewriter fonts to have this, we can check that font parameter. % \def\ifusingtt#1#2{\ifdim \fontdimen3\font=0pt #1\else #2\fi} % Same as above, but check for italic font. Actually this also catches % non-italic slanted fonts since it is impossible to distinguish them from % italic fonts. But since this is only used by $ and it uses \sl anyway % this is not a problem. \def\ifusingit#1#2{\ifdim \fontdimen1\font>0pt #1\else #2\fi} % Turn off all special characters except @ % (and those which the user can use as if they were ordinary). % Most of these we simply print from the \tt font, but for some, we can % use math or other variants that look better in normal text. \catcode`\"=\active \def\activedoublequote{{\tt\char34}} \let"=\activedoublequote \catcode`\~=\active \def~{{\tt\char126}} \chardef\hat=`\^ \catcode`\^=\active \def^{{\tt \hat}} \catcode`\_=\active \def_{\ifusingtt\normalunderscore\_} \let\realunder=_ % Subroutine for the previous macro. \def\_{\leavevmode \kern.07em \vbox{\hrule width.3em height.1ex}\kern .07em } \catcode`\|=\active \def|{{\tt\char124}} \chardef \less=`\< \catcode`\<=\active \def<{{\tt \less}} \chardef \gtr=`\> \catcode`\>=\active \def>{{\tt \gtr}} \catcode`\+=\active \def+{{\tt \char 43}} \catcode`\$=\active \def${\ifusingit{{\sl\$}}\normaldollar}%$ font-lock fix % If a .fmt file is being used, characters that might appear in a file % name cannot be active until we have parsed the command line. % So turn them off again, and have \everyjob (or @setfilename) turn them on. % \otherifyactive is called near the end of this file. \def\otherifyactive{\catcode`+=\other \catcode`\_=\other} % Used sometimes to turn off (effectively) the active characters even after % parsing them. \def\turnoffactive{% \normalturnoffactive \otherbackslash } \catcode`\@=0 % \backslashcurfont outputs one backslash character in current font, % as in \char`\\. \global\chardef\backslashcurfont=`\\ \global\let\rawbackslashxx=\backslashcurfont % let existing .??s files work % \realbackslash is an actual character `\' with catcode other, and % \doublebackslash is two of them (for the pdf outlines). {\catcode`\\=\other @gdef@realbackslash{\} @gdef@doublebackslash{\\}} % In texinfo, backslash is an active character; it prints the backslash % in fixed width font. \catcode`\\=\active % @ for escape char from now on. % The story here is that in math mode, the \char of \backslashcurfont % ends up printing the roman \ from the math symbol font (because \char % in math mode uses the \mathcode, and plain.tex sets % \mathcode`\\="026E). It seems better for @backslashchar{} to always % print a typewriter backslash, hence we use an explicit \mathchar, % which is the decimal equivalent of "715c (class 7, e.g., use \fam; % ignored family value; char position "5C). We can't use " for the % usual hex value because it has already been made active. @def@normalbackslash{{@tt @ifmmode @mathchar29020 @else @backslashcurfont @fi}} @let@backslashchar = @normalbackslash % @backslashchar{} is for user documents. % On startup, @fixbackslash assigns: % @let \ = @normalbackslash % \rawbackslash defines an active \ to do \backslashcurfont. % \otherbackslash defines an active \ to be a literal `\' character with % catcode other. We switch back and forth between these. @gdef@rawbackslash{@let\=@backslashcurfont} @gdef@otherbackslash{@let\=@realbackslash} % Same as @turnoffactive except outputs \ as {\tt\char`\\} instead of % the literal character `\'. % @def@normalturnoffactive{% @let"=@normaldoublequote @let$=@normaldollar %$ font-lock fix @let+=@normalplus @let<=@normalless @let>=@normalgreater @let\=@normalbackslash @let^=@normalcaret @let_=@normalunderscore @let|=@normalverticalbar @let~=@normaltilde @markupsetuplqdefault @markupsetuprqdefault @unsepspaces } % Make _ and + \other characters, temporarily. % This is canceled by @fixbackslash. @otherifyactive % If a .fmt file is being used, we don't want the `\input texinfo' to show up. % That is what \eatinput is for; after that, the `\' should revert to printing % a backslash. % @gdef@eatinput input texinfo{@fixbackslash} @global@let\ = @eatinput % On the other hand, perhaps the file did not have a `\input texinfo'. Then % the first `\' in the file would cause an error. This macro tries to fix % that, assuming it is called before the first `\' could plausibly occur. % Also turn back on active characters that might appear in the input % file name, in case not using a pre-dumped format. % @gdef@fixbackslash{% @ifx\@eatinput @let\ = @normalbackslash @fi @catcode`+=@active @catcode`@_=@active } % Say @foo, not \foo, in error messages. @escapechar = `@@ % These (along with & and #) are made active for url-breaking, so need % active definitions as the normal characters. @def@normaldot{.} @def@normalquest{?} @def@normalslash{/} % These look ok in all fonts, so just make them not special. % @hashchar{} gets its own user-level command, because of #line. @catcode`@& = @other @def@normalamp{&} @catcode`@# = @other @def@normalhash{#} @catcode`@% = @other @def@normalpercent{%} @let @hashchar = @normalhash @c Finally, make ` and ' active, so that txicodequoteundirected and @c txicodequotebacktick work right in, e.g., @w{@code{`foo'}}. If we @c don't make ` and ' active, @code will not get them as active chars. @c Do this last of all since we use ` in the previous @catcode assignments. @catcode`@'=@active @catcode`@`=@active @markupsetuplqdefault @markupsetuprqdefault @c Local variables: @c eval: (add-hook 'write-file-hooks 'time-stamp) @c page-delimiter: "^\\\\message" @c time-stamp-start: "def\\\\texinfoversion{" @c time-stamp-format: "%:y-%02m-%02d.%02H" @c time-stamp-end: "}" @c End: @c vim:sw=2: @ignore arch-tag: e1b36e32-c96e-4135-a41a-0b2efa2ea115 @end ignore liblouis-2.5.3/build-aux/config.guess0000755000175000017500000012743212161044153014504 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-02-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-gnueabi else echo ${UNAME_MACHINE}-unknown-linux-gnueabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: liblouis-2.5.3/build-aux/depcomp0000755000175000017500000005064312161044154013541 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2012-03-27.16; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # A tabulation character. tab=' ' # A newline character. nl=' ' if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' "$nl" < "$tmpdepfile" | ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependent.h'. # Do two passes, one to just change these to # '$object: dependent.h' and one to simply 'dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'. # However on # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\': # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... # tcc 0.9.26 (FIXME still under development at the moment of writing) # will emit a similar output, but also prepend the continuation lines # with horizontal tabulation characters. "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form 'foo.o: dependent.h', # or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'. # Do two passes, one to just change these to # '$object: dependent.h' and one to simply 'dependent.h:'. sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ < "$tmpdepfile" > "$depfile" sed ' s/[ '"$tab"'][ '"$tab"']*/ /g s/^ *// s/ *\\*$// s/^[^:]*: *// /^$/d /:$/d s/$/ :/ ' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test "$stat" = 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' "$nl" < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: liblouis-2.5.3/build-aux/ltmain.sh0000644000175000017500000105204412161044147014004 00000000000000 # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.2ubuntu1 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.2 Debian-2.4.2-1.2ubuntu1" TIMESTAMP="" package_revision=1.3337 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$absdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type \`$version_type'" ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" func_resolve_sysroot "$deplib" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 liblouis-2.5.3/build-aux/install-sh0000755000175000017500000003325612161044153014170 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-01-19.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for `test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: liblouis-2.5.3/build-aux/snippet/0000775000175000017500000000000012161044234013717 500000000000000liblouis-2.5.3/build-aux/snippet/arg-nonnull.h0000664000175000017500000000230012161041523016235 00000000000000/* A C macro for declaring that specific arguments must not be NULL. Copyright (C) 2009-2013 Free Software Foundation, Inc. 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, see . */ /* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools that the values passed as arguments n, ..., m must be non-NULL pointers. n = 1 stands for the first argument, n = 2 for the second argument etc. */ #ifndef _GL_ARG_NONNULL # if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3 # define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params)) # else # define _GL_ARG_NONNULL(params) # endif #endif liblouis-2.5.3/build-aux/snippet/warn-on-use.h0000664000175000017500000001200712161041523016161 00000000000000/* A C macro for emitting warnings if a function is used. Copyright (C) 2010-2013 Free Software Foundation, Inc. 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, see . */ /* _GL_WARN_ON_USE (function, "literal string") issues a declaration for FUNCTION which will then trigger a compiler warning containing the text of "literal string" anywhere that function is called, if supported by the compiler. If the compiler does not support this feature, the macro expands to an unused extern declaration. This macro is useful for marking a function as a potential portability trap, with the intent that "literal string" include instructions on the replacement function that should be used instead. However, one of the reasons that a function is a portability trap is if it has the wrong signature. Declaring FUNCTION with a different signature in C is a compilation error, so this macro must use the same type as any existing declaration so that programs that avoid the problematic FUNCTION do not fail to compile merely because they included a header that poisoned the function. But this implies that _GL_WARN_ON_USE is only safe to use if FUNCTION is known to already have a declaration. Use of this macro implies that there must not be any other macro hiding the declaration of FUNCTION; but undefining FUNCTION first is part of the poisoning process anyway (although for symbols that are provided only via a macro, the result is a compilation error rather than a warning containing "literal string"). Also note that in C++, it is only safe to use if FUNCTION has no overloads. For an example, it is possible to poison 'getline' by: - adding a call to gl_WARN_ON_USE_PREPARE([[#include ]], [getline]) in configure.ac, which potentially defines HAVE_RAW_DECL_GETLINE - adding this code to a header that wraps the system : #undef getline #if HAVE_RAW_DECL_GETLINE _GL_WARN_ON_USE (getline, "getline is required by POSIX 2008, but" "not universally present; use the gnulib module getline"); #endif It is not possible to directly poison global variables. But it is possible to write a wrapper accessor function, and poison that (less common usage, like &environ, will cause a compilation error rather than issue the nice warning, but the end result of informing the developer about their portability problem is still achieved): #if HAVE_RAW_DECL_ENVIRON static char ***rpl_environ (void) { return &environ; } _GL_WARN_ON_USE (rpl_environ, "environ is not always properly declared"); # undef environ # define environ (*rpl_environ ()) #endif */ #ifndef _GL_WARN_ON_USE # if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) /* A compiler attribute is available in gcc versions 4.3.0 and later. */ # define _GL_WARN_ON_USE(function, message) \ extern __typeof__ (function) function __attribute__ ((__warning__ (message))) # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING /* Verify the existence of the function. */ # define _GL_WARN_ON_USE(function, message) \ extern __typeof__ (function) function # else /* Unsupported. */ # define _GL_WARN_ON_USE(function, message) \ _GL_WARN_EXTERN_C int _gl_warn_on_use # endif #endif /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string") is like _GL_WARN_ON_USE (function, "string"), except that the function is declared with the given prototype, consisting of return type, parameters, and attributes. This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does not work in this case. */ #ifndef _GL_WARN_ON_USE_CXX # if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ extern rettype function parameters_and_attributes \ __attribute__ ((__warning__ (msg))) # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING /* Verify the existence of the function. */ # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ extern rettype function parameters_and_attributes # else /* Unsupported. */ # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ _GL_WARN_EXTERN_C int _gl_warn_on_use # endif #endif /* _GL_WARN_EXTERN_C declaration; performs the declaration with C linkage. */ #ifndef _GL_WARN_EXTERN_C # if defined __cplusplus # define _GL_WARN_EXTERN_C extern "C" # else # define _GL_WARN_EXTERN_C extern # endif #endif liblouis-2.5.3/build-aux/snippet/_Noreturn.h0000664000175000017500000000046212161041523015763 00000000000000#if !defined _Noreturn && __STDC_VERSION__ < 201112 # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ || 0x5110 <= __SUNPRO_C) # define _Noreturn __attribute__ ((__noreturn__)) # elif 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn # endif #endif liblouis-2.5.3/build-aux/snippet/c++defs.h0000664000175000017500000002675312161041523015235 00000000000000/* C++ compatible function declaration macros. Copyright (C) 2010-2013 Free Software Foundation, Inc. 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, see . */ #ifndef _GL_CXXDEFS_H #define _GL_CXXDEFS_H /* The three most frequent use cases of these macros are: * For providing a substitute for a function that is missing on some platforms, but is declared and works fine on the platforms on which it exists: #if @GNULIB_FOO@ # if !@HAVE_FOO@ _GL_FUNCDECL_SYS (foo, ...); # endif _GL_CXXALIAS_SYS (foo, ...); _GL_CXXALIASWARN (foo); #elif defined GNULIB_POSIXCHECK ... #endif * For providing a replacement for a function that exists on all platforms, but is broken/insufficient and needs to be replaced on some platforms: #if @GNULIB_FOO@ # if @REPLACE_FOO@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef foo # define foo rpl_foo # endif _GL_FUNCDECL_RPL (foo, ...); _GL_CXXALIAS_RPL (foo, ...); # else _GL_CXXALIAS_SYS (foo, ...); # endif _GL_CXXALIASWARN (foo); #elif defined GNULIB_POSIXCHECK ... #endif * For providing a replacement for a function that exists on some platforms but is broken/insufficient and needs to be replaced on some of them and is additionally either missing or undeclared on some other platforms: #if @GNULIB_FOO@ # if @REPLACE_FOO@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef foo # define foo rpl_foo # endif _GL_FUNCDECL_RPL (foo, ...); _GL_CXXALIAS_RPL (foo, ...); # else # if !@HAVE_FOO@ or if !@HAVE_DECL_FOO@ _GL_FUNCDECL_SYS (foo, ...); # endif _GL_CXXALIAS_SYS (foo, ...); # endif _GL_CXXALIASWARN (foo); #elif defined GNULIB_POSIXCHECK ... #endif */ /* _GL_EXTERN_C declaration; performs the declaration with C linkage. */ #if defined __cplusplus # define _GL_EXTERN_C extern "C" #else # define _GL_EXTERN_C extern #endif /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes); declares a replacement function, named rpl_func, with the given prototype, consisting of return type, parameters, and attributes. Example: _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1))); */ #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \ _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes) #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \ _GL_EXTERN_C rettype rpl_func parameters_and_attributes /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes); declares the system function, named func, with the given prototype, consisting of return type, parameters, and attributes. Example: _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1))); */ #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \ _GL_EXTERN_C rettype func parameters_and_attributes /* _GL_CXXALIAS_RPL (func, rettype, parameters); declares a C++ alias called GNULIB_NAMESPACE::func that redirects to rpl_func, if GNULIB_NAMESPACE is defined. Example: _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); */ #define _GL_CXXALIAS_RPL(func,rettype,parameters) \ _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters) #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ rettype (*const func) parameters = ::rpl_func; \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters); is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters); except that the C function rpl_func may have a slightly different declaration. A cast is used to silence the "invalid conversion" error that would otherwise occur. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ rettype (*const func) parameters = \ reinterpret_cast(::rpl_func); \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_SYS (func, rettype, parameters); declares a C++ alias called GNULIB_NAMESPACE::func that redirects to the system provided function func, if GNULIB_NAMESPACE is defined. Example: _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); */ #if defined __cplusplus && defined GNULIB_NAMESPACE /* If we were to write rettype (*const func) parameters = ::func; like above in _GL_CXXALIAS_RPL_1, the compiler could optimize calls better (remove an indirection through a 'static' pointer variable), but then the _GL_CXXALIASWARN macro below would cause a warning not only for uses of ::func but also for uses of GNULIB_NAMESPACE::func. */ # define _GL_CXXALIAS_SYS(func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ static rettype (*func) parameters = ::func; \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_SYS(func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters); is like _GL_CXXALIAS_SYS (func, rettype, parameters); except that the C function func may have a slightly different declaration. A cast is used to silence the "invalid conversion" error that would otherwise occur. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ static rettype (*func) parameters = \ reinterpret_cast(::func); \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2); is like _GL_CXXALIAS_SYS (func, rettype, parameters); except that the C function is picked among a set of overloaded functions, namely the one with rettype2 and parameters2. Two consecutive casts are used to silence the "cannot find a match" and "invalid conversion" errors that would otherwise occur. */ #if defined __cplusplus && defined GNULIB_NAMESPACE /* The outer cast must be a reinterpret_cast. The inner cast: When the function is defined as a set of overloaded functions, it works as a static_cast<>, choosing the designated variant. When the function is defined as a single variant, it works as a reinterpret_cast<>. The parenthesized cast syntax works both ways. */ # define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \ namespace GNULIB_NAMESPACE \ { \ static rettype (*func) parameters = \ reinterpret_cast( \ (rettype2(*)parameters2)(::func)); \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIASWARN (func); causes a warning to be emitted when ::func is used but not when GNULIB_NAMESPACE::func is used. func must be defined without overloaded variants. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIASWARN(func) \ _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) # define _GL_CXXALIASWARN_1(func,namespace) \ _GL_CXXALIASWARN_2 (func, namespace) /* To work around GCC bug , we enable the warning only when not optimizing. */ # if !__OPTIMIZE__ # define _GL_CXXALIASWARN_2(func,namespace) \ _GL_WARN_ON_USE (func, \ "The symbol ::" #func " refers to the system function. " \ "Use " #namespace "::" #func " instead.") # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING # define _GL_CXXALIASWARN_2(func,namespace) \ extern __typeof__ (func) func # else # define _GL_CXXALIASWARN_2(func,namespace) \ _GL_EXTERN_C int _gl_cxxalias_dummy # endif #else # define _GL_CXXALIASWARN(func) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes); causes a warning to be emitted when the given overloaded variant of ::func is used but not when GNULIB_NAMESPACE::func is used. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \ _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \ GNULIB_NAMESPACE) # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) /* To work around GCC bug , we enable the warning only when not optimizing. */ # if !__OPTIMIZE__ # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \ "The symbol ::" #func " refers to the system function. " \ "Use " #namespace "::" #func " instead.") # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ extern __typeof__ (func) func # else # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ _GL_EXTERN_C int _gl_cxxalias_dummy # endif #else # define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif #endif /* _GL_CXXDEFS_H */ liblouis-2.5.3/Makefile.am0000664000175000017500000000034012161041546012317 00000000000000SUBDIRS = gnulib liblouis tools tables doc man tests python m4 windows ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = liblouis.pc EXTRA_DIST = liblouis.pc README.windows HACKING liblouis-2.5.3/TODO0000664000175000017500000000741712161041534010764 00000000000000This file describes the TODO items for the liblouis project. -*- org -*- When a task is done and accepted, consider moving it into the NEWS file, with a bit of extra info. * 2.6 ** Document the changes to LOUIS_TABLEPATH ** Extend and document the scripting language http://www.freelists.org/post/liblouis-liblouisxml/Very-preliminary-documentation-of-scripting-language ** configure.ac does not check for nose now. Instead it is done with a try except in the python script. Need to be added to configure.ac so that debian packages can automatically pick up dependencies. ** Mapping between table filenames, human readable names, and translatable strings, needs to be accessible from bindings. Will remove the need of redefining translatable names for the tables in orca, nvda, blaster etc. * near term ** (google issue 9) bindings should provide variable to pick up table location at runtime. ** Fix the problem that LOUIS_TABLEPATH always looks in the standard PATH even if that was not in the environment var ** Add more test harness data for languages. ** [mh] compBrlLeftCursor is wrong, provide test case for correct behaviour Once corrected, consider merging compBrlLeftCursor and compBrlAtCursor, since neither provide the needed behaviour, but the corrected version should. also see https://bugzilla.gnome.org/show_bug.cgi?id=592421 ** fix bug described by squash_space.c ** Fix cursor position problems when capsigns are used. Originally reported at: https://bugzilla.gnome.org/show_bug.cgi?id=651217 testcase added in en-GB-g2_harness.txt, search for 651217. The bug can be seen with other tables too. ** Esperanto table should not be blacklisted, work out whats wrong and make sure it is usable. ** [mh] According to the harness, Danish table isn't producing correct output. From memory of Swedish, the actual output is correct, but the harness might be wrong, best to check with Danish users. * unallocated ** (google issue 16) infinite loop in lou_backtranslate. ** (google issue 6) italword opcode not documented ** (google issue 4) problem with contraction cursor position and compBrlAtCursor. ** Add java bindings It would be nice to have some canonical java bindings. There are several potential candidates: - Bindings by Michael Whapples - Minimal jna bindings by SBS - port jni bindings from utdml - new jna bindings by Bert Frees ** Enhance the API to handle pre-hyphenated text This basically just means to port the code which is in the java bindings to C so that it can be used from other bindings ** Add readline support to all the tools ** Use portable malloc from gnulib to get rid of the windows #ifdefs ** Enhance translation table compiler to issue warnings [jb]: It should be an error to define the same single-cell dot pattern for two different characters. I am considering issuing an error message and rejecting the table if this happens. [mh]: It would also be very helpful if we could issue a warning when a character has been defined as two or more braille representations. Could we have these as warnings, not errors please. ** followup to above enhancement, either at the terminal or when called by bindings, we should be able to give more useful feedback, i.e. could not translate because table not found, or table found but has errors, or characters undefined, etc. also see: http://www.nvda-project.org/ticket/2448 ** Optimize for use with large tables When used with dictionary based tables liblouis is very slow. The issue is probably that the hash key is not very well suited for this use case and there will be tons of collisions, making the lookup essentially linear. There was a discussion about this on the mailing list (http://www.freelists.org/post/liblouis-liblouisxml/Improved-hash-function-for-tables). ** apply the the patch by Igor B. Poretsky ** apply the jptest_patch liblouis-2.5.3/configure0000775000175000017500000200155412161044152012200 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for liblouis 2.5.3. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: john.boyer@abilitiessoft.com about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='liblouis' PACKAGE_TARNAME='liblouis' PACKAGE_VERSION='2.5.3' PACKAGE_STRING='liblouis 2.5.3' PACKAGE_BUGREPORT='john.boyer@abilitiessoft.com' PACKAGE_URL='' ac_unique_file="liblouis/lou_backTranslateString.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" gl_getopt_required=POSIX gl_header_list= gl_getopt_required=POSIX ac_subst_vars='gltests_LTLIBOBJS gltests_LIBOBJS gl_LTLIBOBJS gl_LIBOBJS am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS HAVE_UCS4_FALSE HAVE_UCS4_TRUE WIDECHAR_TYPE PKG_CONFIG HAVE_PYTHON_FALSE HAVE_PYTHON_TRUE pkgpyexecdir pyexecdir pkgpythondir pythondir PYTHON_PLATFORM PYTHON_EXEC_PREFIX PYTHON_PREFIX PYTHON_VERSION PYTHON HAVE_HELP2MAN_FALSE HAVE_HELP2MAN_TRUE HELP2MAN OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL ac_ct_AR NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED LIBTOOL OBJDUMP DLLTOOL AS LIBLOUIS_AGE LIBLOUIS_REVISION LIBLOUIS_CURRENT LN_S LIBOBJS gltests_WITNESS HAVE_UNISTD_H NEXT_AS_FIRST_DIRECTIVE_UNISTD_H NEXT_UNISTD_H WINDOWS_64_BIT_OFF_T NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H NEXT_SYS_TYPES_H NEXT_AS_FIRST_DIRECTIVE_STDLIB_H NEXT_STDLIB_H NEXT_AS_FIRST_DIRECTIVE_STDDEF_H NEXT_STDDEF_H GL_GENERATE_STDDEF_H_FALSE GL_GENERATE_STDDEF_H_TRUE STDDEF_H HAVE_WCHAR_T REPLACE_NULL GL_GENERATE_STDARG_H_FALSE GL_GENERATE_STDARG_H_TRUE STDARG_H NEXT_AS_FIRST_DIRECTIVE_STDARG_H NEXT_STDARG_H REPLACE_WCTOMB REPLACE_UNSETENV REPLACE_STRTOD REPLACE_SETENV REPLACE_REALPATH REPLACE_REALLOC REPLACE_RANDOM_R REPLACE_PUTENV REPLACE_PTSNAME_R REPLACE_PTSNAME REPLACE_MKSTEMP REPLACE_MBTOWC REPLACE_MALLOC REPLACE_CANONICALIZE_FILE_NAME REPLACE_CALLOC HAVE_DECL_UNSETENV HAVE_UNLOCKPT HAVE_SYS_LOADAVG_H HAVE_STRUCT_RANDOM_DATA HAVE_STRTOULL HAVE_STRTOLL HAVE_STRTOD HAVE_DECL_SETENV HAVE_SETENV HAVE_RPMATCH HAVE_REALPATH HAVE_RANDOM_R HAVE_RANDOM_H HAVE_RANDOM HAVE_PTSNAME_R HAVE_PTSNAME HAVE_POSIX_OPENPT HAVE_MKSTEMPS HAVE_MKSTEMP HAVE_MKOSTEMPS HAVE_MKOSTEMP HAVE_MKDTEMP HAVE_GRANTPT HAVE_GETSUBOPT HAVE_DECL_GETLOADAVG HAVE_CANONICALIZE_FILE_NAME HAVE_ATOLL HAVE__EXIT GNULIB_WCTOMB GNULIB_UNSETENV GNULIB_UNLOCKPT GNULIB_SYSTEM_POSIX GNULIB_STRTOULL GNULIB_STRTOLL GNULIB_STRTOD GNULIB_SETENV GNULIB_RPMATCH GNULIB_REALPATH GNULIB_REALLOC_POSIX GNULIB_RANDOM_R GNULIB_RANDOM GNULIB_PUTENV GNULIB_PTSNAME_R GNULIB_PTSNAME GNULIB_POSIX_OPENPT GNULIB_MKSTEMPS GNULIB_MKSTEMP GNULIB_MKOSTEMPS GNULIB_MKOSTEMP GNULIB_MKDTEMP GNULIB_MBTOWC GNULIB_MALLOC_POSIX GNULIB_GRANTPT GNULIB_GETSUBOPT GNULIB_GETLOADAVG GNULIB_CANONICALIZE_FILE_NAME GNULIB_CALLOC_POSIX GNULIB_ATOLL GNULIB__EXIT LTLIBINTL LIBINTL GNULIB_GL_UNISTD_H_GETOPT GETOPT_H HAVE_GETOPT_H NEXT_AS_FIRST_DIRECTIVE_GETOPT_H NEXT_GETOPT_H PRAGMA_COLUMNS PRAGMA_SYSTEM_HEADER INCLUDE_NEXT_AS_FIRST_DIRECTIVE INCLUDE_NEXT UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS UNISTD_H_HAVE_WINSOCK2_H REPLACE_WRITE REPLACE_USLEEP REPLACE_UNLINKAT REPLACE_UNLINK REPLACE_TTYNAME_R REPLACE_SYMLINK REPLACE_SLEEP REPLACE_RMDIR REPLACE_READLINK REPLACE_READ REPLACE_PWRITE REPLACE_PREAD REPLACE_LSEEK REPLACE_LINKAT REPLACE_LINK REPLACE_LCHOWN REPLACE_ISATTY REPLACE_GETPAGESIZE REPLACE_GETGROUPS REPLACE_GETLOGIN_R REPLACE_GETDOMAINNAME REPLACE_GETCWD REPLACE_FTRUNCATE REPLACE_FCHOWNAT REPLACE_DUP2 REPLACE_DUP REPLACE_CLOSE REPLACE_CHOWN HAVE_SYS_PARAM_H HAVE_OS_H HAVE_DECL_TTYNAME_R HAVE_DECL_SETHOSTNAME HAVE_DECL_GETUSERSHELL HAVE_DECL_GETPAGESIZE HAVE_DECL_GETLOGIN_R HAVE_DECL_GETDOMAINNAME HAVE_DECL_FDATASYNC HAVE_DECL_FCHDIR HAVE_DECL_ENVIRON HAVE_USLEEP HAVE_UNLINKAT HAVE_SYMLINKAT HAVE_SYMLINK HAVE_SLEEP HAVE_SETHOSTNAME HAVE_READLINKAT HAVE_READLINK HAVE_PWRITE HAVE_PREAD HAVE_PIPE2 HAVE_PIPE HAVE_LINKAT HAVE_LINK HAVE_LCHOWN HAVE_GROUP_MEMBER HAVE_GETPAGESIZE HAVE_GETLOGIN HAVE_GETHOSTNAME HAVE_GETGROUPS HAVE_GETDTABLESIZE HAVE_FTRUNCATE HAVE_FSYNC HAVE_FDATASYNC HAVE_FCHOWNAT HAVE_FCHDIR HAVE_FACCESSAT HAVE_EUIDACCESS HAVE_DUP3 HAVE_DUP2 HAVE_CHOWN GNULIB_WRITE GNULIB_USLEEP GNULIB_UNLINKAT GNULIB_UNLINK GNULIB_UNISTD_H_SIGPIPE GNULIB_UNISTD_H_NONBLOCKING GNULIB_TTYNAME_R GNULIB_SYMLINKAT GNULIB_SYMLINK GNULIB_SLEEP GNULIB_SETHOSTNAME GNULIB_RMDIR GNULIB_READLINKAT GNULIB_READLINK GNULIB_READ GNULIB_PWRITE GNULIB_PREAD GNULIB_PIPE2 GNULIB_PIPE GNULIB_LSEEK GNULIB_LINKAT GNULIB_LINK GNULIB_LCHOWN GNULIB_ISATTY GNULIB_GROUP_MEMBER GNULIB_GETUSERSHELL GNULIB_GETPAGESIZE GNULIB_GETLOGIN_R GNULIB_GETLOGIN GNULIB_GETHOSTNAME GNULIB_GETGROUPS GNULIB_GETDTABLESIZE GNULIB_GETDOMAINNAME GNULIB_GETCWD GNULIB_FTRUNCATE GNULIB_FSYNC GNULIB_FDATASYNC GNULIB_FCHOWNAT GNULIB_FCHDIR GNULIB_FACCESSAT GNULIB_EUIDACCESS GNULIB_ENVIRON GNULIB_DUP3 GNULIB_DUP2 GNULIB_DUP GNULIB_CLOSE GNULIB_CHOWN GNULIB_CHDIR GL_COND_LIBTOOL_FALSE GL_COND_LIBTOOL_TRUE host_os host_vendor host_cpu host build_os build_vendor build_cpu build RANLIB ARFLAGS AR EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_dependency_tracking with_packager with_packager_version with_packager_bug_reports enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_ucs4 ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PYTHON' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures liblouis 2.5.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/liblouis] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of liblouis 2.5.3:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-ucs4 Enable 4 byte-wide characters. Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-packager String identifying the packager of this software --with-packager-version Packager-specific version information --with-packager-bug-reports Packager info for bug reports (URL/e-mail/...) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PYTHON the Python interpreter Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF liblouis configure 2.5.3 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------------------- ## ## Report this to john.boyer@abilitiessoft.com ## ## ------------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES # --------------------------------------------- # Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR # accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 $as_echo_n "checking whether $as_decl_name is declared... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { #ifndef $as_decl_name #ifdef __cplusplus (void) $as_decl_use; #else (void) $as_decl_name; #endif #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by liblouis $as_me 2.5.3, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi gl_getopt_required=GNU gl_header_list="$gl_header_list getopt.h" gl_header_list="$gl_header_list unistd.h" # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers liblouis/config.h" $as_echo "#define PACKAGE_URL \"http://code.google.com/p/liblouis/\"" >>confdefs.h PACKAGE_URL=http://code.google.com/p/liblouis/ ac_aux_dir= for ac_dir in build-aux "$srcdir"/build-aux; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. am__api_version='1.11' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=liblouis VERSION=2.5.3 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' #AM_INIT_AUTOMAKE([color-tests]) # Checks for programs. ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi # gnulib ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Minix Amsterdam compiler" >&5 $as_echo_n "checking for Minix Amsterdam compiler... " >&6; } if ${gl_cv_c_amsterdam_compiler+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __ACK__ Amsterdam #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Amsterdam" >/dev/null 2>&1; then : gl_cv_c_amsterdam_compiler=yes else gl_cv_c_amsterdam_compiler=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_c_amsterdam_compiler" >&5 $as_echo "$gl_cv_c_amsterdam_compiler" >&6; } if test -z "$AR"; then if test $gl_cv_c_amsterdam_compiler = yes; then AR='cc -c.a' if test -z "$ARFLAGS"; then ARFLAGS='-o' fi else if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="${ac_tool_prefix}ar" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="ar" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_AR" = x; then AR="ar" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi else AR="$ac_cv_prog_AR" fi if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi else if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi if test -z "$RANLIB"; then if test $gl_cv_c_amsterdam_compiler = yes; then RANLIB=':' else if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi fi fi # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h fi case "$host_os" in hpux*) $as_echo "#define _XOPEN_SOURCE 500" >>confdefs.h ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _DARWIN_C_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h case $ac_cv_prog_cc_stdc in #( no) : ac_cv_prog_cc_c99=no; ac_cv_prog_cc_c89=no ;; #( *) : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; } if ${ac_cv_prog_cc_c99+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #include // Check varargs macros. These examples are taken from C99 6.10.3.5. #define debug(...) fprintf (stderr, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK your preprocessor is broken; #endif #if BIG_OK #else your preprocessor is broken; #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\0'; ++i) continue; return 0; } // Check varargs and va_copy. static void test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str; int number; float fnumber; while (*format) { switch (*format++) { case 's': // string str = va_arg (args_copy, const char *); break; case 'd': // int number = va_arg (args_copy, int); break; case 'f': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); } int main () { // Check bool. _Bool success = false; // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. test_varargs ("s, d' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' || dynamic_array[ni.number - 1] != 543); ; return 0; } _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c99" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c99" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 $as_echo "$ac_cv_prog_cc_c99" >&6; } ;; esac if test "x$ac_cv_prog_cc_c99" != xno; then : ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 else ac_cv_prog_cc_stdc=no fi fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO Standard C" >&5 $as_echo_n "checking for $CC option to accept ISO Standard C... " >&6; } if ${ac_cv_prog_cc_stdc+:} false; then : $as_echo_n "(cached) " >&6 fi case $ac_cv_prog_cc_stdc in #( no) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; #( '') : { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; #( *) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_stdc" >&5 $as_echo "$ac_cv_prog_cc_stdc" >&6; } ;; esac # Code from module extensions: # Code from module extern-inline: # Code from module getopt-gnu: # Code from module getopt-posix: # Code from module gettext-h: # Code from module include_next: # Code from module malloc-gnu: # Code from module malloc-posix: # Code from module nocrash: # Code from module progname: # Code from module realloc-gnu: # Code from module realloc-posix: # Code from module snippet/_Noreturn: # Code from module snippet/arg-nonnull: # Code from module snippet/c++defs: # Code from module snippet/warn-on-use: # Code from module ssize_t: # Code from module stdarg: # Code from module stddef: # Code from module stdlib: # Code from module sys_types: # Code from module unistd: # Code from module version-etc: LIBC_FATAL_STDERR_=1 export LIBC_FATAL_STDERR_ GNULIB_CHDIR=0; GNULIB_CHOWN=0; GNULIB_CLOSE=0; GNULIB_DUP=0; GNULIB_DUP2=0; GNULIB_DUP3=0; GNULIB_ENVIRON=0; GNULIB_EUIDACCESS=0; GNULIB_FACCESSAT=0; GNULIB_FCHDIR=0; GNULIB_FCHOWNAT=0; GNULIB_FDATASYNC=0; GNULIB_FSYNC=0; GNULIB_FTRUNCATE=0; GNULIB_GETCWD=0; GNULIB_GETDOMAINNAME=0; GNULIB_GETDTABLESIZE=0; GNULIB_GETGROUPS=0; GNULIB_GETHOSTNAME=0; GNULIB_GETLOGIN=0; GNULIB_GETLOGIN_R=0; GNULIB_GETPAGESIZE=0; GNULIB_GETUSERSHELL=0; GNULIB_GROUP_MEMBER=0; GNULIB_ISATTY=0; GNULIB_LCHOWN=0; GNULIB_LINK=0; GNULIB_LINKAT=0; GNULIB_LSEEK=0; GNULIB_PIPE=0; GNULIB_PIPE2=0; GNULIB_PREAD=0; GNULIB_PWRITE=0; GNULIB_READ=0; GNULIB_READLINK=0; GNULIB_READLINKAT=0; GNULIB_RMDIR=0; GNULIB_SETHOSTNAME=0; GNULIB_SLEEP=0; GNULIB_SYMLINK=0; GNULIB_SYMLINKAT=0; GNULIB_TTYNAME_R=0; GNULIB_UNISTD_H_NONBLOCKING=0; GNULIB_UNISTD_H_SIGPIPE=0; GNULIB_UNLINK=0; GNULIB_UNLINKAT=0; GNULIB_USLEEP=0; GNULIB_WRITE=0; HAVE_CHOWN=1; HAVE_DUP2=1; HAVE_DUP3=1; HAVE_EUIDACCESS=1; HAVE_FACCESSAT=1; HAVE_FCHDIR=1; HAVE_FCHOWNAT=1; HAVE_FDATASYNC=1; HAVE_FSYNC=1; HAVE_FTRUNCATE=1; HAVE_GETDTABLESIZE=1; HAVE_GETGROUPS=1; HAVE_GETHOSTNAME=1; HAVE_GETLOGIN=1; HAVE_GETPAGESIZE=1; HAVE_GROUP_MEMBER=1; HAVE_LCHOWN=1; HAVE_LINK=1; HAVE_LINKAT=1; HAVE_PIPE=1; HAVE_PIPE2=1; HAVE_PREAD=1; HAVE_PWRITE=1; HAVE_READLINK=1; HAVE_READLINKAT=1; HAVE_SETHOSTNAME=1; HAVE_SLEEP=1; HAVE_SYMLINK=1; HAVE_SYMLINKAT=1; HAVE_UNLINKAT=1; HAVE_USLEEP=1; HAVE_DECL_ENVIRON=1; HAVE_DECL_FCHDIR=1; HAVE_DECL_FDATASYNC=1; HAVE_DECL_GETDOMAINNAME=1; HAVE_DECL_GETLOGIN_R=1; HAVE_DECL_GETPAGESIZE=1; HAVE_DECL_GETUSERSHELL=1; HAVE_DECL_SETHOSTNAME=1; HAVE_DECL_TTYNAME_R=1; HAVE_OS_H=0; HAVE_SYS_PARAM_H=0; REPLACE_CHOWN=0; REPLACE_CLOSE=0; REPLACE_DUP=0; REPLACE_DUP2=0; REPLACE_FCHOWNAT=0; REPLACE_FTRUNCATE=0; REPLACE_GETCWD=0; REPLACE_GETDOMAINNAME=0; REPLACE_GETLOGIN_R=0; REPLACE_GETGROUPS=0; REPLACE_GETPAGESIZE=0; REPLACE_ISATTY=0; REPLACE_LCHOWN=0; REPLACE_LINK=0; REPLACE_LINKAT=0; REPLACE_LSEEK=0; REPLACE_PREAD=0; REPLACE_PWRITE=0; REPLACE_READ=0; REPLACE_READLINK=0; REPLACE_RMDIR=0; REPLACE_SLEEP=0; REPLACE_SYMLINK=0; REPLACE_TTYNAME_R=0; REPLACE_UNLINK=0; REPLACE_UNLINKAT=0; REPLACE_USLEEP=0; REPLACE_WRITE=0; UNISTD_H_HAVE_WINSOCK2_H=0; UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0; { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next" >&5 $as_echo_n "checking whether the preprocessor supports include_next... " >&6; } if ${gl_cv_have_include_next+:} false; then : $as_echo_n "(cached) " >&6 else rm -rf conftestd1a conftestd1b conftestd2 mkdir conftestd1a conftestd1b conftestd2 cat < conftestd1a/conftest.h #define DEFINED_IN_CONFTESTD1 #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd1b/conftest.h #define DEFINED_IN_CONFTESTD1 #include #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd2/conftest.h #ifndef DEFINED_IN_CONFTESTD1 #error "include_next test doesn't work" #endif #define DEFINED_IN_CONFTESTD2 EOF gl_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_have_include_next=yes else CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_have_include_next=buggy else gl_cv_have_include_next=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$gl_save_CPPFLAGS" rm -rf conftestd1a conftestd1b conftestd2 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_have_include_next" >&5 $as_echo "$gl_cv_have_include_next" >&6; } PRAGMA_SYSTEM_HEADER= if test $gl_cv_have_include_next = yes; then INCLUDE_NEXT=include_next INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next if test -n "$GCC"; then PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' fi else if test $gl_cv_have_include_next = buggy; then INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next else INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system header files limit the line length" >&5 $as_echo_n "checking whether system header files limit the line length... " >&6; } if ${gl_cv_pragma_columns+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __TANDEM choke me #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "choke me" >/dev/null 2>&1; then : gl_cv_pragma_columns=yes else gl_cv_pragma_columns=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_pragma_columns" >&5 $as_echo "$gl_cv_pragma_columns" >&6; } if test $gl_cv_pragma_columns = yes; then PRAGMA_COLUMNS="#pragma COLUMNS 10000" else PRAGMA_COLUMNS= fi for ac_header in $gl_header_list do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done : if test $gl_cv_have_include_next = yes; then gl_cv_next_getopt_h='<'getopt.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_getopt_h+:} false; then : $as_echo_n "(cached) " >&6 else if test $ac_cv_header_getopt_h = yes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'getopt.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_getopt_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' else gl_cv_next_getopt_h='<'getopt.h'>' fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_getopt_h" >&5 $as_echo "$gl_cv_next_getopt_h" >&6; } fi NEXT_GETOPT_H=$gl_cv_next_getopt_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'getopt.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_getopt_h fi NEXT_AS_FIRST_DIRECTIVE_GETOPT_H=$gl_next_as_first_directive if test $ac_cv_header_getopt_h = yes; then HAVE_GETOPT_H=1 else HAVE_GETOPT_H=0 fi gl_replace_getopt= if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then for ac_header in getopt.h do : ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" if test "x$ac_cv_header_getopt_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETOPT_H 1 _ACEOF else gl_replace_getopt=yes fi done fi if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then for ac_func in getopt_long_only do : ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only" if test "x$ac_cv_func_getopt_long_only" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETOPT_LONG_ONLY 1 _ACEOF else gl_replace_getopt=yes fi done fi if test -z "$gl_replace_getopt"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getopt is POSIX compatible" >&5 $as_echo_n "checking whether getopt is POSIX compatible... " >&6; } if ${gl_cv_func_getopt_posix+:} false; then : $as_echo_n "(cached) " >&6 else if test $cross_compiling = no; then if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static char program[] = "program"; static char a[] = "-a"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, a, foo, bar, NULL }; int c; c = getopt (4, argv, "ab"); if (!(c == 'a')) return 1; c = getopt (4, argv, "ab"); if (!(c == -1)) return 2; if (!(optind == 2)) return 3; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_posix=maybe else gl_cv_func_getopt_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test $gl_cv_func_getopt_posix = maybe; then if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static char program[] = "program"; static char donald[] = "donald"; static char p[] = "-p"; static char billy[] = "billy"; static char duck[] = "duck"; static char a[] = "-a"; static char bar[] = "bar"; char *argv[] = { program, donald, p, billy, duck, a, bar, NULL }; int c; c = getopt (7, argv, "+abp:q:"); if (!(c == -1)) return 4; if (!(strcmp (argv[0], "program") == 0)) return 5; if (!(strcmp (argv[1], "donald") == 0)) return 6; if (!(strcmp (argv[2], "-p") == 0)) return 7; if (!(strcmp (argv[3], "billy") == 0)) return 8; if (!(strcmp (argv[4], "duck") == 0)) return 9; if (!(strcmp (argv[5], "-a") == 0)) return 10; if (!(strcmp (argv[6], "bar") == 0)) return 11; if (!(optind == 1)) return 12; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_posix=maybe else gl_cv_func_getopt_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi if test $gl_cv_func_getopt_posix = maybe; then if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static char program[] = "program"; static char ab[] = "-ab"; char *argv[3] = { program, ab, NULL }; if (getopt (2, argv, "ab:") != 'a') return 13; if (getopt (2, argv, "ab:") != '?') return 14; if (optopt != 'b') return 15; if (optind != 2) return 16; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_posix=yes else gl_cv_func_getopt_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi else case "$host_os" in darwin* | aix* | mingw*) gl_cv_func_getopt_posix="guessing no";; *) gl_cv_func_getopt_posix="guessing yes";; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_getopt_posix" >&5 $as_echo "$gl_cv_func_getopt_posix" >&6; } case "$gl_cv_func_getopt_posix" in *no) gl_replace_getopt=yes ;; esac fi if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5 $as_echo_n "checking for working GNU getopt function... " >&6; } if ${gl_cv_func_getopt_gnu+:} false; then : $as_echo_n "(cached) " >&6 else # Even with POSIXLY_CORRECT, the GNU extension of leading '-' in the # optstring is necessary for programs like m4 that have POSIX-mandated # semantics for supporting options interspersed with files. # Also, since getopt_long is a GNU extension, we require optind=0. # Bash ties 'set -o posix' to a non-exported POSIXLY_CORRECT; # so take care to revert to the correct (non-)export state. gl_awk_probe='BEGIN { if ("POSIXLY_CORRECT" in ENVIRON) print "x" }' case ${POSIXLY_CORRECT+x}`$AWK "$gl_awk_probe" conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #if defined __MACH__ && defined __APPLE__ /* Avoid a crash on Mac OS X. */ #include #include #include #include #include #include /* The exception port on which our thread listens. */ static mach_port_t our_exception_port; /* The main function of the thread listening for exceptions of type EXC_BAD_ACCESS. */ static void * mach_exception_thread (void *arg) { /* Buffer for a message to be received. */ struct { mach_msg_header_t head; mach_msg_body_t msgh_body; char data[1024]; } msg; mach_msg_return_t retval; /* Wait for a message on the exception port. */ retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg), our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL); if (retval != MACH_MSG_SUCCESS) abort (); exit (1); } static void nocrash_init (void) { mach_port_t self = mach_task_self (); /* Allocate a port on which the thread shall listen for exceptions. */ if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port) == KERN_SUCCESS) { /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html. */ if (mach_port_insert_right (self, our_exception_port, our_exception_port, MACH_MSG_TYPE_MAKE_SEND) == KERN_SUCCESS) { /* The exceptions we want to catch. Only EXC_BAD_ACCESS is interesting for us. */ exception_mask_t mask = EXC_MASK_BAD_ACCESS; /* Create the thread listening on the exception port. */ pthread_attr_t attr; pthread_t thread; if (pthread_attr_init (&attr) == 0 && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0 && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) { pthread_attr_destroy (&attr); /* Replace the exception port info for these exceptions with our own. Note that we replace the exception port for the entire task, not only for a particular thread. This has the effect that when our exception port gets the message, the thread specific exception port has already been asked, and we don't need to bother about it. See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html. */ task_set_exception_ports (self, mask, our_exception_port, EXCEPTION_DEFAULT, MACHINE_THREAD_STATE); } } } } #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* Avoid a crash on native Windows. */ #define WIN32_LEAN_AND_MEAN #include #include static LONG WINAPI exception_filter (EXCEPTION_POINTERS *ExceptionInfo) { switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { case EXCEPTION_ACCESS_VIOLATION: case EXCEPTION_IN_PAGE_ERROR: case EXCEPTION_STACK_OVERFLOW: case EXCEPTION_GUARD_PAGE: case EXCEPTION_PRIV_INSTRUCTION: case EXCEPTION_ILLEGAL_INSTRUCTION: case EXCEPTION_DATATYPE_MISALIGNMENT: case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: case EXCEPTION_NONCONTINUABLE_EXCEPTION: exit (1); } return EXCEPTION_CONTINUE_SEARCH; } static void nocrash_init (void) { SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter); } #else /* Avoid a crash on POSIX systems. */ #include /* A POSIX signal handler. */ static void exception_handler (int sig) { exit (1); } static void nocrash_init (void) { #ifdef SIGSEGV signal (SIGSEGV, exception_handler); #endif #ifdef SIGBUS signal (SIGBUS, exception_handler); #endif } #endif int main () { int result = 0; nocrash_init(); /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw, and fails on Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10. */ { static char conftest[] = "conftest"; static char plus[] = "-+"; char *argv[3] = { conftest, plus, NULL }; opterr = 0; if (getopt (2, argv, "+a") != '?') result |= 1; } /* This code succeeds on glibc 2.8, mingw, and fails on Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x. */ { static char program[] = "program"; static char p[] = "-p"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, p, foo, bar, NULL }; optind = 1; if (getopt (4, argv, "p::") != 'p') result |= 2; else if (optarg != NULL) result |= 4; else if (getopt (4, argv, "p::") != -1) result |= 6; else if (optind != 2) result |= 8; } /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0. */ { static char program[] = "program"; static char foo[] = "foo"; static char p[] = "-p"; char *argv[] = { program, foo, p, NULL }; optind = 0; if (getopt (3, argv, "-p") != 1) result |= 16; else if (getopt (3, argv, "-p") != 'p') result |= 16; } /* This code fails on glibc 2.11. */ { static char program[] = "program"; static char b[] = "-b"; static char a[] = "-a"; char *argv[] = { program, b, a, NULL }; optind = opterr = 0; if (getopt (3, argv, "+:a:b") != 'b') result |= 32; else if (getopt (3, argv, "+:a:b") != ':') result |= 32; } /* This code dumps core on glibc 2.14. */ { static char program[] = "program"; static char w[] = "-W"; static char dummy[] = "dummy"; char *argv[] = { program, w, dummy, NULL }; optind = opterr = 1; if (getopt (3, argv, "W;") != 'W') result |= 64; } return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_gnu=yes else gl_cv_func_getopt_gnu=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi case $gl_had_POSIXLY_CORRECT in exported) ;; yes) { POSIXLY_CORRECT=; unset POSIXLY_CORRECT;}; POSIXLY_CORRECT=1 ;; *) { POSIXLY_CORRECT=; unset POSIXLY_CORRECT;} ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_getopt_gnu" >&5 $as_echo "$gl_cv_func_getopt_gnu" >&6; } if test "$gl_cv_func_getopt_gnu" != yes; then gl_replace_getopt=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt_long function" >&5 $as_echo_n "checking for working GNU getopt_long function... " >&6; } if ${gl_cv_func_getopt_long_gnu+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in openbsd*) gl_cv_func_getopt_long_gnu="guessing no";; *) gl_cv_func_getopt_long_gnu="guessing yes";; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static const struct option long_options[] = { { "xtremely-",no_argument, NULL, 1003 }, { "xtra", no_argument, NULL, 1001 }, { "xtreme", no_argument, NULL, 1002 }, { "xtremely", no_argument, NULL, 1003 }, { NULL, 0, NULL, 0 } }; /* This code fails on OpenBSD 5.0. */ { static char program[] = "program"; static char xtremel[] = "--xtremel"; char *argv[] = { program, xtremel, NULL }; int option_index; optind = 1; opterr = 0; if (getopt_long (2, argv, "", long_options, &option_index) != 1003) return 1; } return 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_long_gnu=yes else gl_cv_func_getopt_long_gnu=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_getopt_long_gnu" >&5 $as_echo "$gl_cv_func_getopt_long_gnu" >&6; } case "$gl_cv_func_getopt_long_gnu" in *yes) ;; *) gl_replace_getopt=yes ;; esac fi fi REPLACE_GETOPT=0 if test -n "$gl_replace_getopt"; then REPLACE_GETOPT=1 fi if test $REPLACE_GETOPT = 1; then GETOPT_H=getopt.h $as_echo "#define __GETOPT_PREFIX rpl_" >>confdefs.h fi ac_fn_c_check_decl "$LINENO" "getenv" "ac_cv_have_decl_getenv" "$ac_includes_default" if test "x$ac_cv_have_decl_getenv" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_GETENV $ac_have_decl _ACEOF GNULIB__EXIT=0; GNULIB_ATOLL=0; GNULIB_CALLOC_POSIX=0; GNULIB_CANONICALIZE_FILE_NAME=0; GNULIB_GETLOADAVG=0; GNULIB_GETSUBOPT=0; GNULIB_GRANTPT=0; GNULIB_MALLOC_POSIX=0; GNULIB_MBTOWC=0; GNULIB_MKDTEMP=0; GNULIB_MKOSTEMP=0; GNULIB_MKOSTEMPS=0; GNULIB_MKSTEMP=0; GNULIB_MKSTEMPS=0; GNULIB_POSIX_OPENPT=0; GNULIB_PTSNAME=0; GNULIB_PTSNAME_R=0; GNULIB_PUTENV=0; GNULIB_RANDOM=0; GNULIB_RANDOM_R=0; GNULIB_REALLOC_POSIX=0; GNULIB_REALPATH=0; GNULIB_RPMATCH=0; GNULIB_SETENV=0; GNULIB_STRTOD=0; GNULIB_STRTOLL=0; GNULIB_STRTOULL=0; GNULIB_SYSTEM_POSIX=0; GNULIB_UNLOCKPT=0; GNULIB_UNSETENV=0; GNULIB_WCTOMB=0; HAVE__EXIT=1; HAVE_ATOLL=1; HAVE_CANONICALIZE_FILE_NAME=1; HAVE_DECL_GETLOADAVG=1; HAVE_GETSUBOPT=1; HAVE_GRANTPT=1; HAVE_MKDTEMP=1; HAVE_MKOSTEMP=1; HAVE_MKOSTEMPS=1; HAVE_MKSTEMP=1; HAVE_MKSTEMPS=1; HAVE_POSIX_OPENPT=1; HAVE_PTSNAME=1; HAVE_PTSNAME_R=1; HAVE_RANDOM=1; HAVE_RANDOM_H=1; HAVE_RANDOM_R=1; HAVE_REALPATH=1; HAVE_RPMATCH=1; HAVE_SETENV=1; HAVE_DECL_SETENV=1; HAVE_STRTOD=1; HAVE_STRTOLL=1; HAVE_STRTOULL=1; HAVE_STRUCT_RANDOM_DATA=1; HAVE_SYS_LOADAVG_H=0; HAVE_UNLOCKPT=1; HAVE_DECL_UNSETENV=1; REPLACE_CALLOC=0; REPLACE_CANONICALIZE_FILE_NAME=0; REPLACE_MALLOC=0; REPLACE_MBTOWC=0; REPLACE_MKSTEMP=0; REPLACE_PTSNAME=0; REPLACE_PTSNAME_R=0; REPLACE_PUTENV=0; REPLACE_RANDOM_R=0; REPLACE_REALLOC=0; REPLACE_REALPATH=0; REPLACE_SETENV=0; REPLACE_STRTOD=0; REPLACE_UNSETENV=0; REPLACE_WCTOMB=0; { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether malloc, realloc, calloc are POSIX compliant" >&5 $as_echo_n "checking whether malloc, realloc, calloc are POSIX compliant... " >&6; } if ${gl_cv_func_malloc_posix+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_func_malloc_posix=yes else gl_cv_func_malloc_posix=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_malloc_posix" >&5 $as_echo "$gl_cv_func_malloc_posix" >&6; } REPLACE_NULL=0; HAVE_WCHAR_T=1; { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5 $as_echo_n "checking for wchar_t... " >&6; } if ${gt_cv_c_wchar_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include wchar_t foo = (wchar_t)'\0'; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_wchar_t=yes else gt_cv_c_wchar_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wchar_t" >&5 $as_echo "$gt_cv_c_wchar_t" >&6; } if test $gt_cv_c_wchar_t = yes; then $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" if test "x$ac_cv_type_pid_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" if test "x$ac_cv_type_mode_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define mode_t int _ACEOF fi WINDOWS_64_BIT_OFF_T=0 if true; then GL_COND_LIBTOOL_TRUE= GL_COND_LIBTOOL_FALSE='#' else GL_COND_LIBTOOL_TRUE='#' GL_COND_LIBTOOL_FALSE= fi gl_cond_libtool=true gl_m4_base='gnulib/m4' gl_source_base='gnulib' if test $REPLACE_GETOPT = 1; then gl_LIBOBJS="$gl_LIBOBJS getopt.$ac_objext" gl_LIBOBJS="$gl_LIBOBJS getopt1.$ac_objext" : GNULIB_GL_UNISTD_H_GETOPT=1 fi $as_echo "#define GNULIB_TEST_GETOPT_GNU 1" >>confdefs.h REPLACE_GETOPT=0 if test -n "$gl_replace_getopt"; then REPLACE_GETOPT=1 fi if test $REPLACE_GETOPT = 1; then GETOPT_H=getopt.h $as_echo "#define __GETOPT_PREFIX rpl_" >>confdefs.h fi if test $REPLACE_GETOPT = 1; then gl_LIBOBJS="$gl_LIBOBJS getopt.$ac_objext" gl_LIBOBJS="$gl_LIBOBJS getopt1.$ac_objext" : GNULIB_GL_UNISTD_H_GETOPT=1 fi for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in # Guess yes on platforms where we know the result. *-gnu* | freebsd* | netbsd* | openbsd* \ | hpux* | solaris* | cygwin* | mingw*) ac_cv_func_malloc_0_nonnull=yes ;; # If we don't know, assume the worst. *) ac_cv_func_malloc_0_nonnull=no ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC_GNU 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC_GNU 0" >>confdefs.h REPLACE_MALLOC=1 fi if test $REPLACE_MALLOC = 1; then gl_LIBOBJS="$gl_LIBOBJS malloc.$ac_objext" fi cat >>confdefs.h <<_ACEOF #define GNULIB_MALLOC_GNU 1 _ACEOF if test $gl_cv_func_malloc_posix = yes; then $as_echo "#define HAVE_MALLOC_POSIX 1" >>confdefs.h else REPLACE_MALLOC=1 fi if test $REPLACE_MALLOC = 1; then gl_LIBOBJS="$gl_LIBOBJS malloc.$ac_objext" fi GNULIB_MALLOC_POSIX=1 $as_echo "#define GNULIB_TEST_MALLOC_POSIX 1" >>confdefs.h ac_fn_c_check_decl "$LINENO" "program_invocation_name" "ac_cv_have_decl_program_invocation_name" "#include " if test "x$ac_cv_have_decl_program_invocation_name" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_PROGRAM_INVOCATION_NAME $ac_have_decl _ACEOF ac_fn_c_check_decl "$LINENO" "program_invocation_short_name" "ac_cv_have_decl_program_invocation_short_name" "#include " if test "x$ac_cv_have_decl_program_invocation_short_name" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME $ac_have_decl _ACEOF for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible realloc" >&5 $as_echo_n "checking for GNU libc compatible realloc... " >&6; } if ${ac_cv_func_realloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in # Guess yes on platforms where we know the result. *-gnu* | freebsd* | netbsd* | openbsd* \ | hpux* | solaris* | cygwin* | mingw*) ac_cv_func_realloc_0_nonnull=yes ;; # If we don't know, assume the worst. *) ac_cv_func_realloc_0_nonnull=no ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *realloc (); #endif int main () { return ! realloc (0, 0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_realloc_0_nonnull=yes else ac_cv_func_realloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_realloc_0_nonnull" >&5 $as_echo "$ac_cv_func_realloc_0_nonnull" >&6; } if test $ac_cv_func_realloc_0_nonnull = yes; then : $as_echo "#define HAVE_REALLOC_GNU 1" >>confdefs.h else $as_echo "#define HAVE_REALLOC_GNU 0" >>confdefs.h REPLACE_REALLOC=1 fi if test $REPLACE_REALLOC = 1; then gl_LIBOBJS="$gl_LIBOBJS realloc.$ac_objext" fi cat >>confdefs.h <<_ACEOF #define GNULIB_REALLOC_GNU 1 _ACEOF if test $gl_cv_func_malloc_posix = yes; then $as_echo "#define HAVE_REALLOC_POSIX 1" >>confdefs.h else REPLACE_REALLOC=1 fi if test $REPLACE_REALLOC = 1; then gl_LIBOBJS="$gl_LIBOBJS realloc.$ac_objext" fi GNULIB_REALLOC_POSIX=1 $as_echo "#define GNULIB_TEST_REALLOC_POSIX 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ssize_t" >&5 $as_echo_n "checking for ssize_t... " >&6; } if ${gt_cv_ssize_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { int x = sizeof (ssize_t *) + sizeof (ssize_t); return !x; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_ssize_t=yes else gt_cv_ssize_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_ssize_t" >&5 $as_echo "$gt_cv_ssize_t" >&6; } if test $gt_cv_ssize_t = no; then $as_echo "#define ssize_t int" >>confdefs.h fi STDARG_H='' NEXT_STDARG_H='' { $as_echo "$as_me:${as_lineno-$LINENO}: checking for va_copy" >&5 $as_echo_n "checking for va_copy... " >&6; } if ${gl_cv_func_va_copy+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef va_copy void (*func) (va_list, va_list) = va_copy; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_func_va_copy=yes else gl_cv_func_va_copy=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_va_copy" >&5 $as_echo "$gl_cv_func_va_copy" >&6; } if test $gl_cv_func_va_copy = no; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined _AIX && !defined __GNUC__ AIX vaccine #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "vaccine" >/dev/null 2>&1; then : gl_aixcc=yes else gl_aixcc=no fi rm -f conftest* if test $gl_aixcc = yes; then STDARG_H=stdarg.h if test $gl_cv_have_include_next = yes; then gl_cv_next_stdarg_h='<'stdarg.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_stdarg_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'stdarg.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_stdarg_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stdarg_h" >&5 $as_echo "$gl_cv_next_stdarg_h" >&6; } fi NEXT_STDARG_H=$gl_cv_next_stdarg_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'stdarg.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_stdarg_h fi NEXT_AS_FIRST_DIRECTIVE_STDARG_H=$gl_next_as_first_directive if test "$gl_cv_next_stdarg_h" = '""'; then gl_cv_next_stdarg_h='"///usr/include/stdarg.h"' NEXT_STDARG_H="$gl_cv_next_stdarg_h" fi else saved_as_echo_n="$as_echo_n" as_echo_n=':' if ${gl_cv_func___va_copy+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef __va_copy error, bail out #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_func___va_copy=yes else gl_cv_func___va_copy=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi as_echo_n="$saved_as_echo_n" if test $gl_cv_func___va_copy = yes; then $as_echo "#define va_copy __va_copy" >>confdefs.h else $as_echo "#define va_copy gl_va_copy" >>confdefs.h fi fi fi if test -n "$STDARG_H"; then GL_GENERATE_STDARG_H_TRUE= GL_GENERATE_STDARG_H_FALSE='#' else GL_GENERATE_STDARG_H_TRUE='#' GL_GENERATE_STDARG_H_FALSE= fi STDDEF_H= if test $gt_cv_c_wchar_t = no; then HAVE_WCHAR_T=0 STDDEF_H=stddef.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions" >&5 $as_echo_n "checking whether NULL can be used in arbitrary expressions... " >&6; } if ${gl_cv_decl_null_works+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int test[2 * (sizeof NULL == sizeof (void *)) -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_decl_null_works=yes else gl_cv_decl_null_works=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_decl_null_works" >&5 $as_echo "$gl_cv_decl_null_works" >&6; } if test $gl_cv_decl_null_works = no; then REPLACE_NULL=1 STDDEF_H=stddef.h fi if test -n "$STDDEF_H"; then GL_GENERATE_STDDEF_H_TRUE= GL_GENERATE_STDDEF_H_FALSE='#' else GL_GENERATE_STDDEF_H_TRUE='#' GL_GENERATE_STDDEF_H_FALSE= fi if test -n "$STDDEF_H"; then if test $gl_cv_have_include_next = yes; then gl_cv_next_stddef_h='<'stddef.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_stddef_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'stddef.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_stddef_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stddef_h" >&5 $as_echo "$gl_cv_next_stddef_h" >&6; } fi NEXT_STDDEF_H=$gl_cv_next_stddef_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'stddef.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_stddef_h fi NEXT_AS_FIRST_DIRECTIVE_STDDEF_H=$gl_next_as_first_directive fi if test $gl_cv_have_include_next = yes; then gl_cv_next_stdlib_h='<'stdlib.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_stdlib_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'stdlib.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_stdlib_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stdlib_h" >&5 $as_echo "$gl_cv_next_stdlib_h" >&6; } fi NEXT_STDLIB_H=$gl_cv_next_stdlib_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'stdlib.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_stdlib_h fi NEXT_AS_FIRST_DIRECTIVE_STDLIB_H=$gl_next_as_first_directive for gl_func in _Exit atoll canonicalize_file_name getloadavg getsubopt grantpt initstate initstate_r mkdtemp mkostemp mkostemps mkstemp mkstemps posix_openpt ptsname ptsname_r random random_r realpath rpmatch setenv setstate setstate_r srandom srandom_r strtod strtoll strtoull unlockpt unsetenv; do as_gl_Symbol=`$as_echo "gl_cv_have_raw_decl_$gl_func" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro" >&5 $as_echo_n "checking whether $gl_func is declared without a macro... " >&6; } if eval \${$as_gl_Symbol+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if HAVE_SYS_LOADAVG_H # include #endif #if HAVE_RANDOM_H # include #endif int main () { #undef $gl_func (void) $gl_func; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$as_gl_Symbol=yes" else eval "$as_gl_Symbol=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$as_gl_Symbol { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_gl_Symbol"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_RAW_DECL_$gl_func" | $as_tr_cpp` 1 _ACEOF eval ac_cv_have_decl_$gl_func=yes fi done if test $gl_cv_have_include_next = yes; then gl_cv_next_sys_types_h='<'sys/types.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_sys_types_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'sys/types.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_sys_types_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_sys_types_h" >&5 $as_echo "$gl_cv_next_sys_types_h" >&6; } fi NEXT_SYS_TYPES_H=$gl_cv_next_sys_types_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'sys/types.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_sys_types_h fi NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H=$gl_next_as_first_directive : if test $gl_cv_have_include_next = yes; then gl_cv_next_unistd_h='<'unistd.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_unistd_h+:} false; then : $as_echo_n "(cached) " >&6 else if test $ac_cv_header_unistd_h = yes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'unistd.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_unistd_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' else gl_cv_next_unistd_h='<'unistd.h'>' fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_unistd_h" >&5 $as_echo "$gl_cv_next_unistd_h" >&6; } fi NEXT_UNISTD_H=$gl_cv_next_unistd_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'unistd.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_unistd_h fi NEXT_AS_FIRST_DIRECTIVE_UNISTD_H=$gl_next_as_first_directive if test $ac_cv_header_unistd_h = yes; then HAVE_UNISTD_H=1 else HAVE_UNISTD_H=0 fi for gl_func in chdir chown dup dup2 dup3 environ euidaccess faccessat fchdir fchownat fdatasync fsync ftruncate getcwd getdomainname getdtablesize getgroups gethostname getlogin getlogin_r getpagesize getusershell setusershell endusershell group_member isatty lchown link linkat lseek pipe pipe2 pread pwrite readlink readlinkat rmdir sethostname sleep symlink symlinkat ttyname_r unlink unlinkat usleep; do as_gl_Symbol=`$as_echo "gl_cv_have_raw_decl_$gl_func" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro" >&5 $as_echo_n "checking whether $gl_func is declared without a macro... " >&6; } if eval \${$as_gl_Symbol+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_UNISTD_H # include #endif /* Some systems declare various items in the wrong headers. */ #if !(defined __GLIBC__ && !defined __UCLIBC__) # include # include # include # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ # include # endif #endif int main () { #undef $gl_func (void) $gl_func; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$as_gl_Symbol=yes" else eval "$as_gl_Symbol=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$as_gl_Symbol { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_gl_Symbol"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_RAW_DECL_$gl_func" | $as_tr_cpp` 1 _ACEOF eval ac_cv_have_decl_$gl_func=yes fi done # Check whether --with-packager was given. if test "${with_packager+set}" = set; then : withval=$with_packager; case $withval in yes|no) ;; *) cat >>confdefs.h <<_ACEOF #define PACKAGE_PACKAGER "$withval" _ACEOF ;; esac fi # Check whether --with-packager-version was given. if test "${with_packager_version+set}" = set; then : withval=$with_packager_version; case $withval in yes|no) ;; *) cat >>confdefs.h <<_ACEOF #define PACKAGE_PACKAGER_VERSION "$withval" _ACEOF ;; esac fi # Check whether --with-packager-bug-reports was given. if test "${with_packager_bug_reports+set}" = set; then : withval=$with_packager_bug_reports; case $withval in yes|no) ;; *) cat >>confdefs.h <<_ACEOF #define PACKAGE_PACKAGER_BUG_REPORTS "$withval" _ACEOF ;; esac fi if test "X$with_packager" = "X" && \ test "X$with_packager_version$with_packager_bug_reports" != "X" then as_fn_error $? "The --with-packager-{bug-reports,version} options require --with-packager" "$LINENO" 5 fi # End of code from modules gltests_libdeps= gltests_ltlibdeps= gl_source_base='tests' gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS gl_module_indicator_condition=$gltests_WITNESS # make sure we have a decent malloc and realloc for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in # Guess yes on platforms where we know the result. *-gnu* | freebsd* | netbsd* | openbsd* \ | hpux* | solaris* | cygwin* | mingw*) ac_cv_func_malloc_0_nonnull=yes ;; # If we don't know, assume the worst. *) ac_cv_func_malloc_0_nonnull=no ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC_GNU 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC_GNU 0" >>confdefs.h REPLACE_MALLOC=1 fi if test $REPLACE_MALLOC = 1; then case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac fi cat >>confdefs.h <<_ACEOF #define GNULIB_MALLOC_GNU 1 _ACEOF for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible realloc" >&5 $as_echo_n "checking for GNU libc compatible realloc... " >&6; } if ${ac_cv_func_realloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in # Guess yes on platforms where we know the result. *-gnu* | freebsd* | netbsd* | openbsd* \ | hpux* | solaris* | cygwin* | mingw*) ac_cv_func_realloc_0_nonnull=yes ;; # If we don't know, assume the worst. *) ac_cv_func_realloc_0_nonnull=no ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *realloc (); #endif int main () { return ! realloc (0, 0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_realloc_0_nonnull=yes else ac_cv_func_realloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_realloc_0_nonnull" >&5 $as_echo "$ac_cv_func_realloc_0_nonnull" >&6; } if test $ac_cv_func_realloc_0_nonnull = yes; then : $as_echo "#define HAVE_REALLOC_GNU 1" >>confdefs.h else $as_echo "#define HAVE_REALLOC_GNU 0" >>confdefs.h REPLACE_REALLOC=1 fi if test $REPLACE_REALLOC = 1; then case " $LIBOBJS " in *" realloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS realloc.$ac_objext" ;; esac fi cat >>confdefs.h <<_ACEOF #define GNULIB_REALLOC_GNU 1 _ACEOF # Checks for more programs. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi # Checks for libraries. # Checks for header files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi for ac_header in stddef.h stdlib.h string.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done # Checks for typedefs, structures, and compiler characteristics. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi # Checks for library functions. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working memcmp" >&5 $as_echo_n "checking for working memcmp... " >&6; } if ${ac_cv_func_memcmp_working+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_memcmp_working=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { /* Some versions of memcmp are not 8-bit clean. */ char c0 = '\100', c1 = '\200', c2 = '\201'; if (memcmp(&c0, &c2, 1) >= 0 || memcmp(&c1, &c2, 1) >= 0) return 1; /* The Next x86 OpenStep bug shows up only when comparing 16 bytes or more and with at least one buffer not starting on a 4-byte boundary. William Lewis provided this test program. */ { char foo[21]; char bar[21]; int i; for (i = 0; i < 4; i++) { char *a = foo + i; char *b = bar + i; strcpy (a, "--------01111111"); strcpy (b, "--------10000000"); if (memcmp (a, b, 16) >= 0) return 1; } return 0; } ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_memcmp_working=yes else ac_cv_func_memcmp_working=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_memcmp_working" >&5 $as_echo "$ac_cv_func_memcmp_working" >&6; } test $ac_cv_func_memcmp_working = no && case " $LIBOBJS " in *" memcmp.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" ;; esac for ac_func in vprintf do : ac_fn_c_check_func "$LINENO" "vprintf" "ac_cv_func_vprintf" if test "x$ac_cv_func_vprintf" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_VPRINTF 1 _ACEOF ac_fn_c_check_func "$LINENO" "_doprnt" "ac_cv_func__doprnt" if test "x$ac_cv_func__doprnt" = xyes; then : $as_echo "#define HAVE_DOPRNT 1" >>confdefs.h fi fi done for ac_func in memset do : ac_fn_c_check_func "$LINENO" "memset" "ac_cv_func_memset" if test "x$ac_cv_func_memset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MEMSET 1 _ACEOF fi done # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. # increment if the interface has additions, changes, removals. LIBLOUIS_CURRENT=5 # increment any time the source changes; set to # 0 if you increment CURRENT LIBLOUIS_REVISION=3 # increment if any interfaces have been added; set to 0 # if any interfaces have been changed or removed. removal has # precedence over adding, so set to 0 if both happened. LIBLOUIS_AGE=3 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 $as_echo_n "checking for library containing strerror... " >&6; } if ${ac_cv_search_strerror+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_strerror=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_strerror+:} false; then : break fi done if ${ac_cv_search_strerror+:} false; then : else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 $as_echo "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. set dummy ${ac_tool_prefix}as; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AS"; then ac_cv_prog_AS="$AS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AS="${ac_tool_prefix}as" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AS=$ac_cv_prog_AS if test -n "$AS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 $as_echo "$AS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_AS"; then ac_ct_AS=$AS # Extract the first word of "as", so it can be a program name with args. set dummy as; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AS"; then ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AS="as" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AS=$ac_cv_prog_ac_ct_AS if test -n "$ac_ct_AS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 $as_echo "$ac_ct_AS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_AS" = x; then AS="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AS=$ac_ct_AS fi else AS="$ac_cv_prog_AS" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi ;; esac test -z "$AS" && AS=as test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$OBJDUMP" && OBJDUMP=objdump case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ac_config_commands="$ac_config_commands libtool" # Only expand once: # GNU help2man creates man pages from --help output; in many cases, # this is sufficient, and obviates the need to maintain man pages # separately. However, some developers do not have it so we do not # make its use mandatory. if test "x$cross_compiling" = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cannot generate manual pages while cross compiling" >&5 $as_echo "$as_me: WARNING: cannot generate manual pages while cross compiling" >&2;} else # Extract the first word of "help2man", so it can be a program name with args. set dummy help2man; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_HELP2MAN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$HELP2MAN"; then ac_cv_prog_HELP2MAN="$HELP2MAN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_HELP2MAN="help2man" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi HELP2MAN=$ac_cv_prog_HELP2MAN if test -n "$HELP2MAN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HELP2MAN" >&5 $as_echo "$HELP2MAN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test x$HELP2MAN = xhelp2man; then HAVE_HELP2MAN_TRUE= HAVE_HELP2MAN_FALSE='#' else HAVE_HELP2MAN_TRUE='#' HAVE_HELP2MAN_FALSE= fi # Check if we have Python installed if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version >= 2.6" >&5 $as_echo_n "checking whether $PYTHON version >= 2.6... " >&6; } prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)" if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 ($PYTHON -c "$prog") >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else as_fn_error $? "too old" "$LINENO" 5 fi am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.6" >&5 $as_echo_n "checking for a Python interpreter with version >= 2.6... " >&6; } if ${am_cv_pathless_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else for am_cv_pathless_PYTHON in python python2 python3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do test "$am_cv_pathless_PYTHON" = none && break prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)" if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5 ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then : break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_pathless_PYTHON" >&5 $as_echo "$am_cv_pathless_PYTHON" >&6; } # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args. set dummy $am_cv_pathless_PYTHON; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else case $PYTHON in [\\/]* | ?:[\\/]*) ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PYTHON=$ac_cv_path_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi am_display_PYTHON=$am_cv_pathless_PYTHON fi if test "$PYTHON" = :; then : else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 $as_echo_n "checking for $am_display_PYTHON version... " >&6; } if ${am_cv_python_version+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 $as_echo "$am_cv_python_version" >&6; } PYTHON_VERSION=$am_cv_python_version PYTHON_PREFIX='${prefix}' PYTHON_EXEC_PREFIX='${exec_prefix}' { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 $as_echo_n "checking for $am_display_PYTHON platform... " >&6; } if ${am_cv_python_platform+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 $as_echo "$am_cv_python_platform" >&6; } PYTHON_PLATFORM=$am_cv_python_platform { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } if ${am_cv_python_pythondir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 $as_echo "$am_cv_python_pythondir" >&6; } pythondir=$am_cv_python_pythondir pkgpythondir=\${pythondir}/$PACKAGE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } if ${am_cv_python_pyexecdir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 $as_echo "$am_cv_python_pyexecdir" >&6; } pyexecdir=$am_cv_python_pyexecdir pkgpyexecdir=\${pyexecdir}/$PACKAGE fi if test "$PYTHON" != :; then HAVE_PYTHON_TRUE= HAVE_PYTHON_FALSE='#' else HAVE_PYTHON_TRUE='#' HAVE_PYTHON_FALSE= fi # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --enable-ucs4 was given. if test "${enable_ucs4+set}" = set; then : enableval=$enable_ucs4; else enable_ucs4=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether 4 byte-wide characters should be supported" >&5 $as_echo_n "checking whether 4 byte-wide characters should be supported... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_ucs4" >&5 $as_echo "$enable_ucs4" >&6; } case "$enable_ucs4" in yes) WIDECHAR_TYPE='unsigned int';; *) WIDECHAR_TYPE='unsigned short int';; esac if test x$enable_ucs4 = xyes; then HAVE_UCS4_TRUE= HAVE_UCS4_FALSE='#' else HAVE_UCS4_TRUE='#' HAVE_UCS4_FALSE= fi case $host in *mingw* | *cygwin*) CFLAGS="$CFLAGS -Wl,--add-stdcall-alias" ;; esac ac_config_files="$ac_config_files Makefile doc/Makefile man/Makefile liblouis/Makefile liblouis/liblouis.h windows/Makefile windows/include/Makefile tables/Makefile liblouis.pc tests/Makefile tests/tables/Makefile tests/tables/moreTables/Makefile tests/doctests/Makefile tests/harness/Makefile tests/harnessSources/Makefile python/Makefile python/louis/Makefile tools/Makefile gnulib/Makefile m4/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_GENERATE_STDARG_H_TRUE}" && test -z "${GL_GENERATE_STDARG_H_FALSE}"; then as_fn_error $? "conditional \"GL_GENERATE_STDARG_H\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_GENERATE_STDDEF_H_TRUE}" && test -z "${GL_GENERATE_STDDEF_H_FALSE}"; then as_fn_error $? "conditional \"GL_GENERATE_STDDEF_H\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi gl_libobjs= gl_ltlibobjs= if test -n "$gl_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gl_libobjs="$gl_libobjs $i.$ac_objext" gl_ltlibobjs="$gl_ltlibobjs $i.lo" done fi gl_LIBOBJS=$gl_libobjs gl_LTLIBOBJS=$gl_ltlibobjs gltests_libobjs= gltests_ltlibobjs= if test -n "$gltests_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gltests_libobjs="$gltests_libobjs $i.$ac_objext" gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" done fi gltests_LIBOBJS=$gltests_libobjs gltests_LTLIBOBJS=$gltests_ltlibobjs if test -z "${HAVE_HELP2MAN_TRUE}" && test -z "${HAVE_HELP2MAN_FALSE}"; then as_fn_error $? "conditional \"HAVE_HELP2MAN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_PYTHON_TRUE}" && test -z "${HAVE_PYTHON_FALSE}"; then as_fn_error $? "conditional \"HAVE_PYTHON\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_UCS4_TRUE}" && test -z "${HAVE_UCS4_FALSE}"; then as_fn_error $? "conditional \"HAVE_UCS4\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by liblouis $as_me 2.5.3, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to . liblouis home page: ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ liblouis config.status 2.5.3 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' AS='`$ECHO "$AS" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in AS \ DLLTOOL \ OBJDUMP \ SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "liblouis/config.h") CONFIG_HEADERS="$CONFIG_HEADERS liblouis/config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; "liblouis/Makefile") CONFIG_FILES="$CONFIG_FILES liblouis/Makefile" ;; "liblouis/liblouis.h") CONFIG_FILES="$CONFIG_FILES liblouis/liblouis.h" ;; "windows/Makefile") CONFIG_FILES="$CONFIG_FILES windows/Makefile" ;; "windows/include/Makefile") CONFIG_FILES="$CONFIG_FILES windows/include/Makefile" ;; "tables/Makefile") CONFIG_FILES="$CONFIG_FILES tables/Makefile" ;; "liblouis.pc") CONFIG_FILES="$CONFIG_FILES liblouis.pc" ;; "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; "tests/tables/Makefile") CONFIG_FILES="$CONFIG_FILES tests/tables/Makefile" ;; "tests/tables/moreTables/Makefile") CONFIG_FILES="$CONFIG_FILES tests/tables/moreTables/Makefile" ;; "tests/doctests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/doctests/Makefile" ;; "tests/harness/Makefile") CONFIG_FILES="$CONFIG_FILES tests/harness/Makefile" ;; "tests/harnessSources/Makefile") CONFIG_FILES="$CONFIG_FILES tests/harnessSources/Makefile" ;; "python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;; "python/louis/Makefile") CONFIG_FILES="$CONFIG_FILES python/louis/Makefile" ;; "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; "gnulib/Makefile") CONFIG_FILES="$CONFIG_FILES gnulib/Makefile" ;; "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="" # ### BEGIN LIBTOOL CONFIG # Assembler program. AS=$lt_AS # DLL creation program. DLLTOOL=$lt_DLLTOOL # Object dumper program. OBJDUMP=$lt_OBJDUMP # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi liblouis-2.5.3/README0000664000175000017500000000570412161041523011147 00000000000000INTRODUCTION Liblouis is an open-source braille translator and back-translator. It features support for computer and literary braille, supports contracted and uncontracted translation for many, many languages (Arabic, Armenian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Finish, French, Gaelic, German, Greek, Icelandic, Italian, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, Slovakian, Spanish, Swedish, Turkish, Vietnamese, Welsh) and has support for hyphenation. New languages can easily be added through tables that support a rule- or dictionary based approach. Included are also tools for testing and debugging tables. Liblouis also supports math braille (Nemeth and Marburg). The formatting of braille is provided by the companion projects liblouisxml and liblouisutdml. Liblouis has features to support screen-reading programs. This has led to its use in two Open Source screenreaders, NVDA and Orca. It is also used in some commercial assistive technology applications. Liblouis is based on the translation routines in the BRLTTY screenreader for Linux. It has, however, gone far beyond these routines. It is named in honor of Louis Braille. In Linux and Mac OSX it is a shared library, and in Windows it is a DLL. The library is licensed under the GNU Lesser General Public License version 3 or later. See the file COPYING.LIB. The command line tools, are licensed under the GNU General Public License version 3.0 or later. See the file COPYING. DOCUMENTATION For documentation, see the liblouis documentation (either as info file, html, txt or pdf[1]) in the doc directory. For examples of translation tables, see en-us-g2.ctb en-us-g1.ctb chardefs.cti, and whatever other files they may include in the tables directory. This directory contains tables for many languages. The Nemeth files will only work with the sister libraries liblouisxml and liblouisutdml. INSTALLATION After unpacking the distribution tarball go to the directory it creates. You now have the choice to compile liblouis for either 16- or 32-bit unicode. By default it is compiled for the former. To get 32-bit Unicode run configure with --enable-ucs4 . After running configure run "make" and then "make install". You must have root privileges for the installation step. This will produce the liblouis library and the programs lou_allround, lou_checkhyphens, lou_ checktable, lou_debug and lou_translate. If you wish to have man pages for the programs you might want to install help2man before running configure. RELEASE NOTES The program lou_allround is for testing the library. It is completely interactive. lou_checktable is for checking translation tables for errors. lou_debug is for debugging translation tables. lou_translate is for extensive testing of the translation and back-translation capabilities. For more details see the liblouis documentation. FOOTNOTES: [1] You can create the pdf version of the liblouis documentation with `make pdf'. liblouis-2.5.3/NEWS0000664000175000017500000005034512161041546010774 00000000000000liblouis NEWS -- history of user-visible changes. -*- org -*- * Noteworthy changes in release 2.5.3 (2013-6-21) ** New features *** New Braille tables - Korean grade 1 and grade 2 thanks to Joseph Lee - U.K. English 8 dot computer braille table thanks to David Reynolds - New Russian literary and computer braille tables thanks to Igor B. Poretsky. These replace the older Russian tables which are left for backwards compatibility. - New hyphenation dictionary for Russian thanks to Igor B. Poretsky. - Updated hyphenation tables for the Norwegian language (nynorsk and bokmÃ¥l) thanks to Lars Bjørndal. - New hyphenation dictionary for Esperanto thanks to Aaron Cannon. - New Esperanto grade 1 table, using the x system for accented letters, thanks to Aaron Cannon. *** runHarness.py: Accept filename globs on the commandline to run specific harness files. In tests/harness, one can do make or make runall Removed from make check because these checks are checking the validity of our tables, rather than validity of the code. ** Braille Table Improvements - da-dk-g2.ctb, mostly rewritten to use nocross and hyphenation table. - Most tables: removed the default collapse whitespace statements, if you need to compress whitespace, consider adding compress.ctb to the list of tables when processing. - Corrections to Unified English Braille Code (Grade 1 and 2), thanks to Joseph Lee - Corrections to apostrophes in the Computer Spanish 8 dots Braille table (Es-Es-G0.utb). Thanks to Juan C. Buno. - Corrections for double angle quotation marks and emphasis marks in the Norwegian Grade 0 Braille Table. Thanks to Knut Arne Bjørndal. - Fixes for a minor problem regarding the noletsign in Norwegian contracted braille. Thanks to Lars Bjørndal. - Corrections to the Italian table thanks to Igor B. Poretsky. - Corrections to the Hungarian grade 1 table thanks to Hammer Attila - Corrections to English, U.S. Grade 2 (ABAE) table. Thanks to Ken Perry for reporting the bug and John J. Boyer for fixing it. - Further reorganization of the tables to remove duplication. Move litdigit opcode common parts and include where needed. - Removed obsolete en-us-g1.utb, which has been replaced by en-us-g1.ctb. - Added dictionary harness tests for: en-ueb-g2.ctb, en-us-g2.ctb. - Corrections to Nemeth character definitions thanks to Neil Soiffer. - Corrections to the Esperanto table thanks to Aaron Cannon. ** Bug Fixes - Cursor position calculation is now based on the same code that calculates inpos and outpos. This probably solves a number of bugs. - Fix nocross opcode processing. - Fix several buffer over/under runs in lou_translateString.c:hyphenate. - Fix the '=' problem, i.e. fix inputPositions calculation for the case where the equals sign is used as the dots operand. Thanks to Bert Frees - Fix a bug when resizing a table. Previously not all references to this table were updated. ** Backwards incompatible changes - The feature that allowed a mapping between language code and Braille table was removed as it contained a out-of-bounds access bug, was never documented and probably never used. Thanks to Peter Nilsson Lundblad and Jeremy Roman for analyzing this problem and providing a patch. * Noteworthy changes in release 2.5.2 (2012-12-18) While initially planned as mainly a bug fix release this release contains some notable new features: There is a new tool to trace which rules have been used to perform a translation. Also along with other new tables the long awaited table for UEB is finally here. ** New features *** New tool to trace rule application There is a new tool (lou_trace) which helps to trace which rules have been used to perform a Braille translation. This is helpful for writing Braille tables. See the documentation for more information. *** New Braille tables - Inuktitut grade 1, thanks to Greg Kearney. - UEB grade 1 and 2, thanks to Joseph Lee. These tables replace the old UEB tables (UEBC-g1.utb and UEBC-g2.ctb). - Korean table thanks to Joseph Lee ** Braille Table Improvements - da-dk-g2.ctb, fixes for transposed â, Ã¥, æ, ä, ø and ö, corrected/improved harness tests. - Corrections for en-GB-g2.ctb thanks to Paul Wood - Corrections to the Hungarian grade 1 table thanks to Hammer Attila ** Bug Fixes - Update gnulib - Fix a bug in the correct opcode which causes sometimes random results when translating. Thanks to Bert Frees. - Fixes for compiler warnings. - Fix some Valgrind warnings about invalid reads * Noteworthy changes in release 2.5.1 (2012-9-24) ** Braille Table Improvements - Fix encoding problem in italian table and added more character definitions. Thanks to Simone Dal Maso . - Rename it-it-g1.utb to it-it-comp6.utb and it-it-g1.utb2 to it-it-comp8.utb. ** Bug fixes - Fix outputPos and inlen where an input character generates multiple output characters. * Noteworthy changes in release 2.5.0 (2012-9-10) This release contains a tremendous amount of work many developers. Many long standing bugs have been fixed. The tables can finally be in UTF-8. A grand table cleanup removed duplication from the tables. There are now two extensive test frameworks for table writers. A number of new tables have been contributed on top of the usual assortment of table improvements. Thanks to all of this liblouis has already seen quite a bit of uptake in a number of places, notably the new DAISY pipeline will ship with this release of liblouis. NOTE: If you have private tables you might want to migrate them to utf-8. To do this just use iconv as follows: $ iconv -f latin-1 -t utf-8 output ** New features *** New Braille tables - Estonian grade 0, thanks to Jürgen Dengo. - Portuguese 8 dot Computer braille, Thanks to Rui Fontes *** UTF-8 support in tables Braille tables can now contain UTF-8 in the opcode arguments. *** Improvements to the python bindings All constants defined in liblouis.h are now exposed in the bindings. *** Add a doctest infrastructure These tests are based on the Python doctest framework and are only run if there is a Python interpreter on the system *** Add a test harness This test infrastructure allows the user to do table tests in a simple and concise syntax. These tests are based on the Python nose testing framework and are only run if either Python 2.x or 3.x with the related nose python module is installed on the system. See the documentation for more information. Thanks to Mesar Hameed. *** Add a test harness generator A harness generator that uses simple text files with a little formatting to help to generate the json harness files. The purpose of this tool is to make it much easier and faster to add checks for a given table. You are expected to read the generated harness file and make necessary changes, the tool only helps you to get the tests into the harness format, not check their validity. *** Support for Python 3 in the Python bindings The Python bindings now work for both Python 2 and Python 3. Thanks to Michael Whapples. ** Improved C-based test framework - Improved the test framework to be able to test translations involving Unicode. - Added numerous tests, e.g. for lowercase and Unicode, for the input position, for repeated, etc. ** Improved the documentation - Document the test harness (json format, fields, flags). - Document the use of Valgrind to find memory leaks - Improve the documentation on the display opcode ** Bug fixes - lou_allround and lou_translate now properly handle Unicode characters - Fix some issues reported by Valgrind - Fix inputPos for situation where context and multipass opcodes are involved - Fixed a number of bugs with the letter, uppercase and lowercase opcodes when dealing with Unicode - Fixed a couple of bugs with hyphenation (documentation, Python bindings and a number of buffer overruns in the C library). Thanks Milan Zamazal for reporting this. - Fix a bug in the $a. matcher in the multipass rules where only 32 chars were matched. It now matches 0xffff chars. - Fix a bug reported by James Teh related to pass1Only ** Braille Table Improvements - all table files have consistent encoding, UTF-8. - The grand table cleanup: Reorganize the tables to remove duplication. Move common parts such as Latin letter, eight and six dot digit definitions to separate files which are then included. This should ease table maintenance. Thanks to Mesar Hameed. - Fixes to de-de-comp8.ctb thanks to Aliminator83@gmail.com - hu1.ctb renamed to hu-hu-g1.ctb - hu.ctb renamed to hu-hu-comp8.ctb - eo.ctb renamed to eo-g1.ctb - Fixes to eo-g1.ctb thanks to Aaron Cannon - hu-hu-g1.ctb: improvements and extensive test harness, with working back-translation, Thanks to Hammer Attila - Fixes to fr-bfu-comp6.utb and fr-bfu-comp8.utb thanks to Michel Such - Reworked and extended Ethiopic braille table ethio-g1.ctb, superseeds gez*, thanks to Dr. Tamru E. Belay - Fixes to no-no-g3.ctb thanks to Lars Bjørndal * Noteworthy changes in release 2.4.1 (2012-2-22) ** New features - Czech hyphenation table thanks to Jan Hegr - Spanish grade 1 table provided by José Enrique Fernández del Campo and Juan Carlos Buño Suárez - New Tamil table thanks to Mesar Hameed ** Braille Table Improvements - Improvements to the Portuguese grade1 braille tables - Updates and additions to Icelandic 8-dot braille table. - Improvements to the uncontracted Spanish computer braille table. - Improvements to the Norwegian braille table thanks to David Hole. * Noteworthy changes in release 2.4.0 (2012-01-31) ** New features - New Generic Farsi Grade 1 table: A new table for Generic Farsi Grade 1 braille has been provided by Mesar Hameed. - Emacs mode for editing Braille tables thanks to Christian Egli ** Braille Table Improvements - Improvements to the French comp6 and comp8 braille tables - Improvements to the Romanian braille table - Improvements to the Generic Arabic Grade 1 table - Improvements to the Czech tables thanks to Jan Halousek and to Jan Hegr * Noteworthy changes in release 2.3.0 (2011-05-09) This release contains support for many more languages than before (Swedish, Kurdish, Ethiopic, Serbian, many Indian languages). The search path for tables is now a list of paths. Finally there is the usual assortment of bug fixes. ** New features *** Multiple table search path The environment variable LOUIS_TABLEPATH can now contain a list of paths (separated by commas) where liblouis should look for tables. This allows the user to keep local tables. *** New --quiet option for lou_checktable lou_checktable writes to stderr even in the case of success. This can now be suppressed with the new option --quiet. *** New Swedish table A new table for Swedish braille has been provided by Samuel Thibault. *** New table for Sorani (Kurdish) A new table for Sorani (Kurdish) Braille has been donated by Peter Engström from Index Braille *** New table for Ethiopic A new table for Ethiopic Braille has been donated by Tamru E. Belay PH.D from Adaptive Technology Center for the Blind (ATCB) *** New table for Serbian A new table for Serbian Braille has been donated by Peter Engström from Index Braille ** Improved the documentation The deprecated opcodes have been moved to a separate section ** Bug fixes - Fixed a long standing bug with an infinite loop in the table compiler ** Braille Table Improvements - Improvements to the Chinese braille table - Improvements to the Flemish Braille Math Code tables - Improvements to the Dutch Braille tables - Improvements to the Spanish Braille tables. - Fixes for the uncontracted French 6 and 8 dot tables - Improved support for Italian 8 dot - Improvements to the Generic Arabic Grade 1 table * Noteworthy changes in release 2.2.0 (????-??-??) ** New features *** New tables - Support for many indian languages - Support for Icelandic 6- and 8-dot - Support for Catalan - Support for Dutch Braille (for Belgium and the Netherlands) - Support for Flemish Braille Math Code (a.k.a. Woluwe code) *** New functions to make libraries relocatable Two new functions, to set the search path for tables and files. They make the library relocatable. See the in the documentation for lou_setDataPath and lou_getDataPath. ** Bug fixes - Improved support for Spanish - Improved Norwegian tables * Noteworthy changes in release 2.1.1 (2010-8-23) ** Bug fixes - Fixed problems with the Danish grade 2 table - Fixed problems with the Marburg maths table for mathematics and the UK maths table for mathematics * Noteworthy changes in release 2.1.0 (2010-8-19) ** New features *** New tables - Added tables for Portuguese grade 1 and 2 - Added unicode.dis for Unicode braille *** Modified tables - Updated Danish tables *** Implemented language to table mapping *** New format of error messages The error messages are now reported in a format similar to the one used in gcc. *** New opcode - added undefined opcode *** Python bindings - Allow the user to configure the maximum output length by specifying a number by which the input length is multiplied using the outlenMultiplier module variable. The default will handle the case where every input character is undefined in the translation table. Previously, this was hard-coded to 2, which was insufficient in some cases. - Add compbrlLeftCursor mode constant. - Add compileString function which wraps lou_compileString. - Corrections/clarifications to docstrings. - Add python binding for the lou_hyphenate function. - Added python wrapper for lou_backTranslateString and lou_backTranslate. *** liblouisxslt as an example Add liblouisxslt as an example to python/examples. This is basically an extension of libxslt that lets you invoke liblouis from an xslt stylesheet to do Braille translation on text nodes for example. *** compbrlLeftCursor Added a patch provided by Volker Bijewitz to implement compbrlLeftCursor. ** Bug fixes *** output cursorPos Fix the output cursorPos when the compbrlAtCursor mode is enabled and the characters around the cursor translate to multiple braille cells, such as in the Chinese braille tables. *** outpos when doing back translation Include a patch by Timothy Lee to fix outpos when doing back translation (issue 11) *** inputPos/outputPos for undefined characters Fix the input/output position arrays for characters in the input which are undefined in the translation table. *** table fixes - Fixed a bug with back translation of '*n'. (issue 13) - Fixes to the en-us-g2.ctb table *** Python bindings - Remove unnecessary imports, allowing the bindings to run in Python 2.7. (issue 12) - lou_translate* writes output information in typeform, so allocate enough bytes for it. Fixes possible buffer overruns and resultant crashes. *** Miscellaneous - Fixes to the man page generation to fix issues that were reported by the Debian packaging builder - Do not invoke help2man when cross-compiling - Documentation updates (issue 10) - Removing noletsign defaults - Many small fixes * Noteworthy changes in release 2.0.0 (2010-7-6) ** New features *** New functions - Adding lou_charSize function * Noteworthy changes in release 1.9.0 (2010-6-29) ** New features *** New functions - lou_dotsToChar and lou_charToDots function - Added lou_compileString for adding entries to tables at run-time. * Noteworthy changes in release 1.8.0 (2009-11-23) This release contains a number of improvements notably the integration of gnulib, the automatic generation of man pages and the addition of tables for German grade 2. ** New features *** New tables - Tables German Grade 2 - Swiss German - Swedish (1989 standard) - Swedish (1996 standard) *** Modified tables - Updated Norwegian tables - Updated Chinese braille table *** man pages All tools accept the --version and --help options and are documented in man pages *** Corpus based test cases for tables You can now have corpus based tests for tables. See the README in tests/table_test_corpuses. ** Bug fixes - config.h is no longer exported - Many small fixes * Noteworthy changes in release 1.7.0 (2009-08-21) The main new feature of this release is the support for UK and Marburg math. Other changes include a new tool to check hyphenation and the usual improvement and addition of tables. Also The test suite has been enhanced and finally passes. ** New features *** New tables - Tables for UK and Marburg math - Hong Kong Cantonese - Hebrew - Hungarian - Slovene - Tibetan - Irish - Maltese *** Modified tables - Updated Norwegian tables - Bug fixes in Russian tables - Updated French tables *** lou_checkhyphens tool New tool to check hyphenation *** rpm spec file *** Test cases for tables The tables can now be tested with `make check' *** New opcodes - noback and nofor opcode prefixes - grouping opcode - multipass subopcodes ** Bug fixes - Fix for library name and Python bindings - Documentation fixes - Many small fixes * Noteworthy changes in release 1.6.2 (2009-05-01) This release contains a new opcode for Malaysian Braille. See the documentation for a description of the new opcode. ** New features *** repword opcode The repword opcode is needed for Malaysian Braille * Noteworthy changes in release 1.6.1 (2009-04-21) This is mostly a bug fix release. It contains many bug fixes that were discovered in the course of developing UK Math tables. ** Bug fixes *** bug fixes for correct, context and multipass opcodes *** bug fixes for largesign opcode *** fixed bug with French back-translation *** fixed the installation path for docs *** documentation improvement * Noteworthy changes in release 1.6 (2009-03-04) This release features support for Danish and Russian and updated tables for French and Norwegian. The search path for tables can now be specified using an environment variable. Finally there is the usual assortment of bug fixes. ** New features *** exactdots opcode The exactdots opcode is intended for use in liblouisxml semantic-action files to specify exact dot patterns, as in mathematical codes. *** LOUIS_TABLEPATH env variable You can now specify where liblouis is to look for tables with the LOUIS_TABLEPATH environment variable. *** New Tables for Danish and Russian There is now support for Danish and Russian. ** Bug fixes *** Updated French and Norwegian tables *** Use stdcall calling convention if building for Windows ** Changes in behavior None * Noteworthy changes in release 1.5 (2009-01-21) This is a big release for liblouis. It's the first time that it is done from the Google code page. A number of people have contributed, namely John Boyer (table debugger, bug fixes), Eitan Isaacson (Python bindings), James Teh (Python bindings, bug fixes), Christian Egli (documentation) and Michel Such (table for French grade 2). ** New features *** Python bindings The liblouis library can now be used from Python. For more info consult the README file in the python directory. *** Table debugger liblouis now comes with a debugger that can help to find problems with translation tables. *** French table for grade 2 There is now a translation table for French grade 2. *** pass1Only mode bit The new pass1Only mode bit will help developers of screen readers as the cursor will stay where it is expected to. ** Bug fixes Fix the inpos array values for the case where a rule has an output length which is larger than its input length. fixed multi-word phrases fixed bug in character display fixed bug in findOpcodeName lou_version now returns the correct liblouis version ** Changes in behavior None liblouis-2.5.3/COPYING0000664000175000017500000010451312161041546011325 00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . liblouis-2.5.3/README.windows0000664000175000017500000000200212161041523012624 00000000000000This file describes how to build liblouis.dll That is the only binary file needed by someone who wishes to use liblouis in an application. The tables are in the tables subdirectory of the liblouis distribution. For an overview of liblouis see README. First, obtain the liblouis source, either by downloading the latest tarball or from the Subversion repository. See HACKING for instructions. If you downloaded the tarball, unpack it. To build liblouis.dll you will need the Microsoft command-line C/C++ tools. you will also have to set environment variables correctly. You can download the express versions of Visual Studio, MSVC and the Microsoft C/C++ SDK free. All have a batch file that sets environment variables and then displays a command prompt. Next, go to the subdirectory windows. Edit the file configure.mk If you want 32-bit unicode change the 2 in the line UCS=2 to a 4. Now type nmake /f Makefile.nmake The directory will contain liblouis-2.dll and liblouis-2.lib, along with object files. liblouis-2.5.3/liblouis.pc0000664000175000017500000000044412161044163012434 00000000000000prefix=/usr/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include tablesdir=${prefix}/share/liblouis/tables Name: liblouis Description: a braille translator and back-translator Version: 2.5.3 Requires: Libs: -L${libdir} -llouis Cflags: -I${includedir}/liblouis liblouis-2.5.3/tables/0000775000175000017500000000000012161044235011616 500000000000000liblouis-2.5.3/tables/mni.ctb0000664000175000017500000000167212161041546013023 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Manipuri include bengali.cti include text_nabcc.dis liblouis-2.5.3/tables/is-chardefs6.cti0000664000175000017500000001625612161041546014531 00000000000000# liblouis: Character definitions for Icelandic 6-dot tables # # Copyright (C) 2010 INIB (Iceland National Institute for the Blind) # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Character definitions for Icelandic 6-dot tables # # Version 2009-09-02 # Birkir Gunnarsson birkir@midstod.is # #------------------------------------------------------------------------------- # Icelandic characters, in Icelandic alphabetical order uplow \x00C1\x00E1 16 # Ãá, a acute uplow \x00D0\x00F0 156 # Ãð, eth uplow \x00C9\x00E9 2346 # Éé, e acute uplow \x00CD\x00ED 126 # Ãí, i acute uplow \x00D3\x00F3 1456 # Óó, o acute uplow \x00DA\x00FA 12456 # Úú, u acute uplow \x00DD\x00FD 12346 # Ãý, y acute uplow \x00DE\x00FE 1246 # Þþ, thorn uplow \x00C6\x00E6 345 # Ææ, ae uplow \x00D6\x00F6 246 # Öö o umlaut # ===== BASIC LATIN - 0000-007F ================================================ space \x0009 0 #9 [CHARACTER TABULATION] space \x000A 0 #10 [LINE FEED (LF)] space \x000C 0 #12 [FORM FEED (FF)] space \x000D 0 #13 [CARRIAGE RETURN (CR)] space \x0020 0 #32 SPACE punctuation \x0021 236 #33 ! EXCLAMATION MARK punctuation \x0022 56 #34 " QUOTATION MARK sign \x0023 3456 #35 # NUMBER SIGN sign \x0024 45-124 #36 $ DOLLAR SIGN sign \x0025 46 #37 % PERCENT SIGN sign \x0026 346 #38 & AMPERSAND punctuation \x0027 5 #39 ' APOSTROPHE APOSTROPHE-QUOTE punctuation \x0028 236 #40 ( LEFT PARENTHESIS punctuation \x0029 356 #41 ) RIGHT PARENTHESIS sign \x002A 35 #42 * ASTERISK math \x002B 235 #43 + PLUS SIGN punctuation \x002C 2 #44 , COMMA punctuation \x002D 36 #45 - HYPHEN-MINUS punctuation \x002E 3 #46 . FULL STOP PERIOD sign \x002F 34 #47 / SOLIDUS SLASH include litdigits6Dots.uti punctuation \x003A 25 #58 : COLON punctuation \x003B 23 #59 ; SEMICOLON math \x003C 5-246 #60 < LESS-THAN SIGN math \x003D 2356 #61 = EQUALS SIGN math \x003E 135-2 #62 > GREATER-THAN SIGN punctuation \x003F 26 #63 ? QUESTION MARK include latinLetterDef6Dots.uti sign \x0060 4 #96 ` GRAVE ACCENT punctuation \x007B 6-12356 #123 { LEFT CURLY BRACKET sign \x007C 456 #124 | VERTICAL LINE punctuation \x007D 6-23456 #125 } RIGHT CURLY BRACKET sign \x007E 45 #126 ~ TILDE sign \x007F 45-456 #127 [DELETE] sign \x2022 36 Bullet sign \x0040 123456 #64 @ COMMERCIAL AT punctuation \x005B 12356 #91 [ LEFT SQUARE BRACKET sign \x005C 45-34 #92 \ REVERSE SOLIDUS punctuation \x005D 23456 #93 ] RIGHT SQUARE BRACKET sign \x005F 45-36 #95 _ LOW LINE # ===== LATIN-1 SUPPLEMENT: 0080-00FF ========================================== sign \x00A2 45-14 #162 ¢ CENT SIGN sign \x00A3 45-1234 #163 £ POUND SIGN sign \x00A4 45-1346 #164 ¤ CURRENCY SIGN sign \x00A5 45-13456 #165 Â¥ YEN SIGN sign \x00A6 0-456-123-0 #166 ¦ BROKEN BAR sign \x00A7 45-346 #167 § SECTION SIGN sign \x00A9 236-14-356 #169 © COPYRIGHT SIGN lowercase \x00AA 4-1 #170 ª FEMININE ORDINAL INDICATOR punctuation \x00AB 45-236 #171 « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK sign \x00AD 36 #173 ­ SOFT HYPHEN sign \x00AE 236-1235-356 #174 ® REGISTERED SIGN sign \x00B0 256 #176 ° DEGREE SIGN math \x00B1 235-36 #177 ± PLUS-MINUS SIGN sign \x00B5 45-134 #181 µ MICRO SIGN lowercase \x00BA 4-2 #186 º MASCULINE ORDINAL INDICATOR punctuation \x00BB 45-356 #187 » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK math \x00D7 45-24 #215 × MULTIPLICATION SIGN math \x00F7 1256 #247 ÷ DIVISION SIGN # ===== GENERAL PUNCTUATION: 2000-206F ========================================= punctuation \x2013 36-36 #8211 EN DASH punctuation \x2014 6-36 #8212 EM DASH punctuation \x201D 23 #8221 RIGHT DOUBLE QUOTATION MARK sign \x2030 46-46 #8240 PER MILLE SIGN sign \x2031 46-46-46 #8241 PER TEN THOUSAND SIGN sign \x2032 4-35 #8242 PRIME sign \x2033 4-35-35 #8243 DOUBLE PRIME # ===== CURRENCY SYMBOLS: 20A0-20CF ============================================ sign \x20A0 45-15 EURO-CURRENCY SIGN # ===== ARROWS: 2190-21FF ====================================================== sign \x2190 0-246-25-0 LEFTWARDS ARROW sign \x2192 0-25-135-0 RIGHTWARDS ARROW sign \x2194 0-246-25-135-0 LEFT RIGHT ARROW # ===== MATHEMATICAL OPERATORS: 2200-22FF ====================================== math \x2212 36 #8722 MINUS SIGN math \x2215 34 #8725 DIVISION SLASH math \x2217 35 #8727 ASTERISK OPERATOR math \x223C 45-25 #8764 TILDE OPERATOR math \x2245 45-25-25 #8773 APPROXIMATELY EQUAL TO math \x2259 26 #8793 ESTIMATES math \x2260 236-2356 #8800 NOT EQUAL TO math \x2261 2356-2356 #8801 IDENTICAL TO math \x2264 5-246-2356 #8804 LESS-THAN OR EQUAL TO math \x2265 135-2-2356 #8805 GREATER-THAN OR EQUAL TO math \x2266 246-2356 #8806 LESS-THAN OVER EQUAL TO math \x2267 135-2356 #8807 GREATER-THAN OVER EQUAL TO math \x22c5 3 #8901 DOT OPERATOR math \x22c6 3 #8902 STAR OPERATOR # ===== Braille Indicators: ================================================== numsign 3456 number sign capsign 6 begcaps 6-6 endcaps 6-6 begital 4-34 endital 34-4 begbold 4-456 endbold 456-4 liblouis-2.5.3/tables/no-no-g0.utb0000664000175000017500000001554012161041546013613 00000000000000# liblouis: Norwegian Grade 0 Braille Table, uncontracted braille # Created June 9, 2005 by Leon Ungier with # help and guidance from Lars Bjørndal # Updated June 2009 by Lars Bjørndal #include no-no-generic.dis # e.g. for printing with embosser set up for Euro braille space \s 0 blank x0020 space \x001b 1b escape character for html back-translation # dec 27 # The following three line should work for liblouis with Handy Tech HTCom: #space \t 9 tab x0009 #space \x000D 1d \r #space \x000A 1a \n # With liblouisxml, use the following three lines instead: space \t 9 tab x0009 space \x000D 0 \r space \x000A 0 \n # space \x000c 0 # dec 12 space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE # dec 160 punctuation ! 235 exclamation mark x0021 punctuation " 256 double quote x0022 sign # 3456 number sign x0023 sign $ 256 dollar sign x0024 sign % 46 percent sign x0025 # sign & 12346 ampersand z0026 uplow \x00C8\x00E8 2346 e with grave è x00C8 / 00E8 uplow \x00C9\x00E9 123456 e with acute é x00C9 / 00E9 uplow \x00CA\x00EA 126 e with circumflex x00CA / 00EA uplow \x00CB\x00EB 1246 e with diaeresis ë x00CB / 00EB uplow \x00CE\x00EE 146 i with circumflex x00CE / 00EE uplow \x00CF\x00EF 12456 i with diaeresis x00CF / 00EF uplow \x00D3\x00F3 346 o with acute ó x00D3 / 00F3 uplow \x00D4\x00F4 1456 o with circumflex ô x00D4 / 00F4 sign & 346 ampersand z0026 punctuation ' 5 apostrophe x0027 punctuation ( 236 left parenthesis x0028 punctuation ) 356 right parenthesis x0029 sign * 35 asterisk x002A math + 235 plus x002B punctuation , 2 coma x002C punctuation - 36 hyphen-minus x002D punctuation . 3 point x002E uplow \x00CD\x00ED 34 i with acute x00CD / 00ED math / 34 solidus x002F #punctuation / 34 solidus x002F include digits8Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B # math < 5-256 less-than sign x003C math < 126 less-than sign x003C math = 2356 equal sign x003D uplow \x00C6\x00E6 345 ae x00C6 / 00E6 math > 345 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 4 commercial at x0040 include latinLetterDef6Dots.uti uplow \x00C1\x00E1 12356 a with acute x00C1 / 00E1 punctuation [ 12356 left square bracket x005B sign \\ 2 reverse solidus x005C #uplow \xFFD8\xFFF8 246 o with stroke uplow \x00D8\x00F8 246 o with stroke #uplow \xFFD8\xFFF8 246 o with stroke uplow \X00DA\x00FA 23456 u with acute x00DA / 00FA uplow \x00DB\x00FB 156 u with circumflex x00FB uplow \x00DC\x00FC 1256 u with diaeresis x00FC uplow \x00DD\x00FD 12346 y with acute x00FD punctuation ] 23456 right square bracket x005D sign ^ 5 circumflex accent x005E sign _ 456 low line x005F sign ` 45 grave accent x0060 # a - z x0061 - x007A uplow Ã…Ã¥ 16 A with ring above x00C5 / 00E5 punctuation { 246 left curly bracket x007B sign | 56 vertical line x007C punctuation } 12456 right curly bracket x007D sign ~ 256 tilde x007E sign \x0080 15-136-1235-135 Euro sign x0080 # sign \X00A1 inverted exclamation mark x00A1 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 346 section sign x00A7 sign © 236-14-356 copyright x00A9 # sign « 45-2356 left-pointing double angle quotation mark x00AB punctuation « 256 left-pointing double angle quotation mark x00AB sign ° 5-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign \x00B4 6 acute sign dec-180 sign ¹ 1-27 superscript 1 sign x00B9 # sign » 2356-12 right-pointing double angle quotation mark x00BB punctuation » 256 right-pointing double angle quotation mark x00BB math ¼ 6-16-34-1456 vulgar fraction one quarter x00BC math ½ 6-16-34-126 vulgar fraction one half x00BD math ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 a with grave x00C0 / 00E0 uplow \x00C2\x00E2 16 a with circumflex x00C2 / 00E2 uplow \x00CA\x00EA 126 e with circumflex x00CA / 00EA uplow \x00C3\x00E3 126 a with tilde x00C3 / 00E3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow \x00C7\x00E7 12346 c with cedilla ç x00C7 / 00E7 uplow \x00D5\x00F5 246 o with tilde x00D5 / 00F5 uplow Öö 246 O with diaeresis x00D6 / 00F6 math × 236 multiplication sign x00D7 math ÷ 256 division sign x00F7 punctuation \x2010 46 # 8208 hyphen punctuation \x2011 46 # 8209 non-breaking hyphen math \x2013 36 # 8211 en dash (smart minus sign) lowword \x2013 36-36 make double when surrounded by white spaces punctuation \x2013 36 punctuation \x2014 36 em dash punctuation \x2018 5 # 8216 smart single left quotation mark punctuation \x2019 5 # 8217 smart single right quotation mark punctuation \x201C 256 # 8220 smart opening double quote punctuation \x201D 256 # 8221 smart closing double quote punctuation \x201E 256 # 8222 smart double low quotation mark punctuation \x201F 256 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x20AC 15-136-1235-135 Euro sign x0080 uplow \x00D2\x00F2 4-135 DEC 242 ò lowercase \x00F3 4-135 DEC 243 ó lowercase \x00F4 4-135 DEC 244 ô # ------------------- End char definitions -------------------- include litdigits6Dots.uti # unicode braille include braille-patterns.cti lowword - 36-36 make double when hyphen surrounded by white spaces numsign 3456 capsign 6 # single capital letter indicator begcaps 6-6 # a block of consecutive capital letters indicator endcaps 56 lenitalphrase 1 lenboldphrase 1 firstwordital 23 firstletterital 23 firstwordbold 23 firstletterbold 23 firstwordunder 23 firstletterunder 23 lastworditalafter 56 lastletterital 56 lastwordboldafter 56 lastletterbold 56 lastwordunderafter 56 lastletterunder 56 midnum , 2 midnum . 3 midnum + 235 midnum - 36-36-3456 midnum / 34-3456 midnum : 25 midnum = 2356 endnum # 56-3456 always # 3456 endnum a 56-1 endnum b 56-12 endnum c 56-14 endnum d 56-145 endnum e 56-15 endnum f 56-124 endnum g 56-1245 endnum h 56-125 endnum i 56-24 endnum j 56-245 repeated ... 3-3-3 points de suite repeated --- 36-36-36 repeated ___ 456-456-456 # always \s--\s 36-36 tiret noback always ;\s; 0 liblouis-2.5.3/tables/ckb-chardefs.cti0000664000175000017500000002100112161041546014547 00000000000000# # Copyright (C) 2011 by Peter Engström # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # # SORANI (KURDISH) # ================ # Author: Peter Engström # Company: Index Braille # # Date: Note: # 2011-02-08 Initial release based on _chardefs_ar.cti # 2011-03-15 Updated # 2011-03-22 Removing U+200C from text. New braille code for Heh. # Arabic letters where coded as signs. # 2011-03-23 New handling of U+200C. Letter Heh changed again. # # # ----------- define all chars ------------------------------------------------ space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 #--BEGIN--------------------------------------------[Peter Engström 2011-03-23] # Remove U+200C three-per-em space = thick space but let it be a virtual space. space \x200C 9 # Assign x200C to virtual dot 9. pass2 @9 ? # Remove virtual dot 9 during second pass. #--END----------------------------------------------[Peter Engström 2011-03-23] punctuation ! 235 # 33 punctuation " 236 # 34 [Peter Engström 2011-03-15] sign # 3456 # 35 sign $ 1246 # 36 [Peter Engström 2011-03-15] sign % 1234 # 37 [Peter Engström 2011-03-15] sign & 12346 # 38 [Peter Engström 2011-03-15] punctuation ' 3 # 39 apostrophe punctuation ) 356 # 40 punctuation ( 236 # 41 sign * 16 # 42 [Peter Engström 2011-03-15] math + 346 # 43 [Peter Engström 2011-03-15] punctuation , 46 # 44 punctuation - 36 # 45 punctuation \x06D4 256 # Arabic Full stop punctuation . 256 # 46 [Peter Engström 2011-03-15] math / 34 # 47 include loweredDigits6Dots.uti punctuation : 5-2 # 58 [Peter Engström 2011-03-15] punctuation ; 5 # 59 [Peter Engström 2011-03-15] math < 0-126-0 # 60 [Peter Engström 2011-03-15] math = 123456 # 61 [Peter Engström 2011-03-15] letter > 0-246-0 math > 0-345-0 # 62 [Peter Engström 2011-03-15] punctuation ? 1456 # 63 sign @ 4 # 64 include latinLetterDef6Dots.uti punctuation [ 13456 # 91 [Peter Engström 2011-03-15] sign \\ 1256 # 92 [Peter Engström 2011-03-15] punctuation ] 12346 # 93 [Peter Engström 2011-03-15] sign ^ 45 # 94 circumflex accent [Peter Engström 2011-03-15] sign _ 456 # 95 underscore sign ` 4 # 96 grave accent # a - z # 97 - 122 punctuation { 135 # 123 [Peter Engström 2011-03-15] sign | 1245 # 124 punctuation } 246 # 125 [Peter Engström 2011-03-15] math ~ 45 # 126 space \X00A0 0 # 160 no-break space sign \x00A2 4-14 # 162 ¢ cents sign sign \x00A3 4-123 # 163 £ pounds sign sign \x00A5 4-13456 # 165 Â¥ yen sign sign § 4-234-3 # 167 section sign \x00A7 sign \x00A9 2356-6-14-2356 # 169 © copyright sign sign \x00AE 16-256 # ® Registered mark punctuation \x00Ad 36 # 173 soft hyphen sign \x00B0 356 # 176 ° degrees sign sign \x00B5 46-134 # 181 µ micro sign sign \x00B6 4-1234-345 # 182 ¶ pilcrow sign sign \x00BF 236 # 191 inverted question mark math \x00D7 56-236 # 215 × multiplication sign math \x00F7 56-256 # 247 ÷ division sign punctuation \x2010 36 # 8208 hyphen punctuation \x2011 23478 # 8209 non-breaking hyphen punctuation \x2013 246 # 8211 en dash [Peter Engström 2011-03-15] punctuation \x2014 246 # 8212 [Peter Engström 2011-03-15] punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 2356 # 8220 smart opening double quote punctuation \x201D 2356 # 8221 smart closing double quote punctuation \x201E 2356 # 8222 smart double low quotation mark punctuation \x201F 2356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x20AC 4-15 # 8364 Euro sign #-------------------------- Arabic characters --------------------------------- sign \x060C 5 # Arabic comma sign \x061B 56 # Arabic semicolon sign \x061F 236 # Arabic question mark letter \x0621 345 # Hamza [Peter Engström 2011-03-15] letter \x0622 345 # Alef with madda above letter \x0623 34 # Alef with hamza above letter \x0624 1256 # Waw with hamza above letter \x0625 34 # Alef with hamza below [Peter Engström 2011-03-15] letter \x0626 345 # Yeh with hamza above letter \x0627 1 # Alef letter \x0628 12 # Beh letter \x0629 16 # Teh marbutha letter \x062A 2345 # Teh letter \x062B 1456 # Theh letter \x062C 245 # Jeem letter \x062D 156 # Hah letter \x062E 1346 # Khah letter \x062F 145 # Dal letter \x0630 2346 # Thal letter \x0631 246 # Reh [Peter Engström 2011-03-15] letter \x0632 1356 # Zain letter \x0633 234 # Seen letter \x0634 146 # Sheen letter \x0635 12346 # Sad letter \x0636 1246 # Dad letter \x0637 23456 # Tah letter \x0638 123456 # Zah letter \x0639 12356 # Ain letter \x063A 126 # Ghain letter \x0640 2 # Tatweel (=kashida inserted to stretch characters). letter \x0641 124 # Feh letter \x0642 12345 # Qaf letter \x0643 13 # Kaf letter \x0644 123 # Lam letter \x0645 134 # Meem letter \x0646 1345 # Noon #--BEGIN--------------------------------------------[Peter Engström 2011-02-08] letter \x0647 15 # Heh begword \x0647 125 midword \x0647 125 endword \x0647 15 #--END----------------------------------------------[Peter Engström 2011-02-08] letter \x0648 2456 # Waw letter \x0649 135 # Alef maksura letter \x064A 24 # Yeh letter \x064B 23 # Fathatan letter \x064C 26 # Dammatan letter \x064D 35 # Kasratan letter \x064E 2 # Fatha letter \x064F 136 # Damma letter \x0650 15 # Kasra letter \x0651 6 # Shadda letter \x0652 25 # Sukun #--BEGIN--------------------------------------------[Peter Engström 2011-02-08] sign \x02C7 456 # Caron (=hacek) sign \x032C 56 # Combinding caron below sign \x065A 456 # Vowel sign small v above sign \x0660 356 # 0 Arabic numbers sign \x0661 2 # 1 sign \x0662 23 # 2 sign \x0663 25 # 3 sign \x0664 256 # 4 sign \x0665 26 # 5 sign \x0666 235 # 6 sign \x0667 2356 # 7 sign \x0668 236 # 8 sign \x0669 35 # 9 sign \x066C 5 # Arabic thousands separator letter \x067E 1234 # Peh letter \x0686 14 # Tcheh letter \x0695 1235 # Reh with small v below letter \x0698 346 # Jeh letter \x06A4 1236 # Veh letter \x06A9 13 # Keheh letter \x06AF 1245 # Gaf letter \x06B5 123456 # Lam with small v letter \x06BE 125 # Heh doachashmee letter \x06C1 15 # Heh goal letter \x06C6 135 # Oe letter \x06CB 1236 # Ve letter \x06CC 24 # Farsi Yeh letter \x06CE 34 # Yeh with small v letter \x06D5 15 # Ae letter \xFB8A 346 # Jeh isolated form letter \xFBA6 15 # Heh goal isolated form letter \xFBAA 125 # Heh doachashmee isolated form letter \xFBAB 15 # Heh doachashmee final form letter \xFBAC 125 # Heh doachashmee initial form letter \xFBAD 125 # Heh doachashmee medial form letter \xFBFC 24 # Farsi yeh isolated form letter \xFEAD 246 # Reh isolated form letter \xFEAE 246 # Reh final form letter \xFEDD 123 # Lam isolated form letter \xFEDE 123 # Lam final form letter \xFEE9 15 # Heh isolated form letter \xFEEA 15 # Heh final form letter \xFEEB 125 # Heh initial form letter \xFEEC 125 # Heh medial form letter \xFEEF 24 # Alef maksura isolated form letter \xFEFB 123-1 # Ligature lam with alef with hamza below isolated form letter \xFEFC 123-1 # Ligature lam with alef with hamza below final form #--END----------------------------------------------[Peter Engström 2011-02-08] liblouis-2.5.3/tables/fr-bfu-comp6.utb0000664000175000017500000001772212161041546014470 00000000000000# liblouis: Unified French 6 dots Braille table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Définitions pour code braille français international unifié # Par Nicolas Pitre # et Michel Such # Référence: http://www.inlb.qc.ca/apropos/c2003unificationdubraille.aspx # mise à jour importante 2012 : # - ajout des signes de la table française encore non pris en compte pour p456 p5 p56 # - effacement de la ligne z avec caron car c'étaient les codes des p456 et p5 # Uncontracted Unified French Table # ---------------------------------- space \s 0 # blank 32 space \t 9 tab # 9 space \x001B 1b # escape space \x000A 0 # lf space \x000c 0 space \x000D 0 # cr space \x00A0 a # no-break space # override zero digit 0 3456 include digits6DotsPlusDot6.uti include latinLetterDef6Dots.uti uplow Çç 12346 c cédille uplow Éé 123456 e accent aigu uplow Àà 12356 a accent grave uplow Èè 2346 e accent grave uplow Ùù 23456 u accent grave uplow Ââ 16 a accent circonflexe uplow Êê 126 e accent circonflexe uplow Îî 146 i accent circonflexe uplow Ôô 1456 o accent circonflexe uplow Ûû 156 u accent circonflexe uplow Ëë 1246 e tréma uplow Ãï 12456 i tréma uplow Üü 1256 u tréma uplow \X008C\X009C 246 oe liés uplow \X0152\X0153 246 oe liés uplow \x00C1\x00E1 12356 a accent aigu uplow \x00CD\x00ED 34 i accent aigu uplow \X00D3\x00F3 346 o accent aigu uplow \x00DA\x00FA 23456 u accent aigu uplow \x00DD\x00FD 13456 y accent aigu uplow \x00CC\x00EC 24 i accent grave uplow \x00D2\x00F2 135 o accent grave uplow \x00C4\x00E4 345 a tréma uplow \x00D6\x00F6 246,35 o tréma uplow \x009F\x00FF 13456,256 y tréma uplow \x00C3\x00E3 1 a tilde uplow \X00D1\x00F1 1345,12456 n tilde uplow \x00D5\x00F5 13,46 o tilde punctuation , 2 virgule punctuation ; 23 point-virgule punctuation : 25 deux-points punctuation . 256 point punctuation ? 26 point d'interrogation punctuation ! 235 point d'exclamation punctuation " 2356 guillemet punctuation ( 236 parenthèse ouvrante punctuation ) 356 parenthèse fermante punctuation ' 3 apostrophe punctuation \X0091 6 # [left signle quotation mark] (private use one) punctuation \X0092 3 # [right single quotation mark] (private use two) punctuation \X0093 3 # [left double quotation mark] (set transmit state) punctuation \X0094 6 # [right double quotation mark] (cancel character) punctuation - 36 # (hyphen) sign \X200e 0 # (left to right mark) sign \X200f 0 # (right to left mark) sign \X2013 4 # (en dash) sign \X2014 45 # (en dash) punctuation \X2018 6 punctuation \X2019 3 sign \X201c 3 sign \X201d 6 sign \X2022 1245 # (bullet) sign \X2026 256 8230 MS Word smart ellipsis sign \X25cf 35 sign \Xf0b7 1245 punctuation \X00AB 2356 punctuation \X00BB 2356 sign \\ 34 barre oblique invers‚e sign @ 345 arobase sign # 3456 dièse sign ^ 4 accent circonflexe sign % 346 pourcent sign * 35 astérisque sign _ 5 souligné sign \X201E 56 guillemet bas fermant sign ¸ 456 # sign ´ 5 # sign \X007C 456 # barre verticale sign \X0082 6 # [single low-9 quotation mark (break permitted here) sign \X0083 124 # [latin small letter f with hook (no break here) sign \X0084 56 # [double low-9 quotation mark () sign \X0085 36 # [horizontal ellipsis (next line) sign \X0086 356 # [dagger (start of selected area) sign \X0087 3567 # [double dagger (end of selected area) sign \X0088 4 # [modifier letter circumflex accent (character tabulation set) sign \X0089 346 # [per mille sign (character tabulation with justification) sign \X008B 5 # [single left-pointing angle quotation mark] (partial line down) sign \X0095 1245 # [bullet] (message waiting) sign \X0096 4 # [en dash] (start of guarded area) sign \X0097 45 # [em dash] (end of guarded area) sign \X0098 46 # [small tilde] (start of string) sign \X0099 2345 # [trade mark sign] () sign \x2122 2345 # TRADE MARK SIGN sign \X009B 5 # [single right-pointing angle quotation mark] (control sequence introducer) sign \X00A1 235 # inverted exclamation mark sign \X00A2 14 # cent sign sign \X00A3 23 # pound sign sign \X00A4 45 # euro sign sign \x20ac 45 EURO SIGN sign \X00A5 256 # yen sign sign \X00A6 45 # broken bar sign \X00A7 1234 # section sign sign \X00A8 46 # diaeresis sign \X00A9 14 # copyright sign sign \X00AA 16 # feminine ordinal indicator sign \X00AC 256 # not sign sign \X00AD 0 # soft hyphen sign \X00AE 1235 # registered sign sign \X00AF 134 # macron sign \X00B0 26 # degree sign sign \X00B1 36 # plus-minus sign sign \X00B2 45 # superscript two sign \X00B3 456 # superscript three sign \X00B5 25 # micro sign sign \X00B6 456 # pilcrow sign sign \X00B7 0 # middle dot sign \X00B9 4 # superscript one sign \X00BA 26 # masculine ordinal indicator sign \X00BC 136 # 1 quart sign \X00BD 46 # 1 demi sign \X00BE 1346 # latin capital letter y with diaeresis sign \X00BF 26 #*inverted question mark sign \X00C5 2 #*latin capital letter a with ring above sign \X00C6 345 #*latin capital letter ae sign \X00D0 12 # latin capital letter eth sign \X00D7 35 # multiplication sign sign \X00D8 3456 # latin capital letter o with stroke sign \X00DE 245 # latin capital letter thorn sign \X00DF 234 # latin small letter sharp s sign \X00E5 2 #*latin small letter a with ring above sign \X00E6 345 #*latin small letter ae sign \X00F0 12 # latin small letter eth sign \X00F8 56 # latin small letter o with stroke sign \X00FE 245 # latin small letter thorn math + 235 plus math = 2356 égal math × 35 multiplié par math / 34 barre oblique math \x0060 6 math \x00F7 34 divisé par math < 23 inférieur à math > 56 supérieur à sign © 14 copyright sign ° 26 degré sign & 123456 perluète (et commercial) sign ¢ 14 cent sign ¤ 45 euro sign £ 23 livre sign § 1234 paragraphe sign $ 35 dollar sign Â¥ 236 yen punctuation « 2356 guillemet français ouvrant punctuation » 2356 guillemet français fermant punctuation [ 236 crochet droit ouvrant punctuation ] 356 crochet droit fermant punctuation { 23 accolade de gauche punctuation } 56 accolade de droite sign ¹ 4 exposant 1 sign ² 45 exposant 2 sign ³ 456 exposant 3 sign ¼ 136 un quart sign ½ 46 cent sign ¾ 1346 trois quarts sign \X007E 45 #126 ~ tilde midnum \s 0 espace entre les chiffres midnum , 2 midnum . 256 midnum - 36 hyphen - 36 midnum + 235 plus midnum = 2356 égal midnum / 34 midnum * 35 astérisque midnum : 25 midnum < 23 inférieur à midnum > 56 supérieur à endnum # 3456 # Braille indicators numsign 6 number sign, just a dots operand capsign 46 begcaps 46-46 firstwordital 456-456 lastworditalbefore 456 firstletterital 456 singleletterital 456 firstwordbold 456-456 lastwordboldbefore 456 litdigit 0 3456 zéro litdigit 1 16 un litdigit 2 126 deux litdigit 3 146 trois litdigit 4 1456 quatre litdigit 5 156 cinq litdigit 6 1246 six litdigit 7 12456 sept litdigit 8 1256 huit litdigit 9 246 neuf repeated ... 256-256-256 points de suspension repeated --- 36-36-36 repeated ___ 456-456-456 always \s--\s 36-36 tiret include braille-patterns.cti liblouis-2.5.3/tables/mr.ctb0000664000175000017500000000167412161041546012660 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Marathi include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/fr-ca-g1.utb0000664000175000017500000000673712161041546013566 00000000000000# liblouis: Canadian French Grade 1 Table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Définitions pour code braille français international unifié # Par Nicolas Pitre # Référence: http://www.inlb.qc.ca/apropos/c2003unificationdubraille.aspx # Uncontracted Unified French Table # ---------------------------------- include text_nabcc.dis space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \x00A0 0 space \s 0 blank # 32 include latinLetterDef6Dots.uti uplow Çç 12346 c cédille uplow Éé 123456 e accent aigu uplow Àà 12356 a accent grave uplow Èè 2346 e accent grave uplow Ùù 23456 u accent grave uplow Ââ 16 a accent circonflexe uplow Êê 126 e accent circonflexe uplow Îî 146 i accent circonflexe uplow Ôô 1456 o accent circonflexe uplow Ûû 156 u accent circonflexe uplow Ëë 1246 e tréma uplow Ãï 12456 i tréma uplow Üü 1256 u tréma # uplow oe 246 oe ligatur uplow \x0152\x0153 246 punctuation , 2 virgule punctuation ; 23 point-virgule punctuation : 25 deux-points punctuation . 256 point punctuation ? 26 point d'interrogation punctuation ! 235 point d'exclamation punctuation " 5 guillemt punctuation ( 236 parenthèse ouvrante sign * 35 astérisque punctuation ) 356 parenthèse fermante punctuation ' 3 apostrophe math / 34 barre oblique sign @ 4 arobas sign % 246 pour cent punctuation - 36 trait d'union sign # 3456 dièse include digits6Dots.uti sign \x00A8 46 diaeresis sign # always n 34 divisé par math \x00F7 34 math + 346 plus math = 2356 égal math × 35 multiplié par math < 126 inférieur à math > 345 supérieur à sign © 5-14 copyright sign ° 145 degré sign & 23456 perluète (et commercial) sign ¢ 14 cent sign ¤ 45-15 euro sign £ 45-123 livre sign § 45-1234 paragraphe sign $ 4-234 dollar sign Â¥ 45-13456 yen punctuation « 45-2356 guillemet français ouvrant punctuation » 2356-12 guillemet français fermant punctuation [ 45-236 crochet droit ouvrant punctuation ] 356-12 crochet droit fermant punctuation { 6-236 accolade de gauche punctuation } 356-3 accolade de droite sign ¹ 6 exposant 1 sign ² 4-6-126 exposant 2 sign ³ 4-6-146 exposant 3 sign ¼ 6-16-34-1456 un quart sign ½ 6-16-34-126 un demi sign ¾ 6-126-34-1456 trois quarts capsign 46 indicateur de majuscule begcaps 46-46 succession de majuscules numsign 3456 préfixe pour les chiffres midnum \s 3 espace entre les chiffres midnum , 2 midnum . 256 midnum - 36 midnum + 346 plus midnum / 34 midnum : 25 sign \x00B7 56 sign \x00B8 45 endnum # 56-3456 sign _ 456 souligné repeated ... 256-256-256 points de suite repeated --- 36-36-36 repeated ___ 456-456-456 always \s--\s 36-36 tiret liblouis-2.5.3/tables/et.ctb0000664000175000017500000001005712161041546012645 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Estonian # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 236 QUESTION MARK uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation \x00a0 0 NO-BREAK SPACE uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00d5 23467 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS lowercase \x00e4 345 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00f5 2346 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS liblouis-2.5.3/tables/ar-fa.utb0000664000175000017500000000110212161041546013234 00000000000000# liblouis: Generic Farsi Grade 1 table # # Copyright (C) 2011 by Mesar Hameed # Copyright (C) 2011 by Abdolamir Banisaeid # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. include ar-ar-g1.utb # Additional letters not defined in the standard arabic table. sign \x067E 1234 sign \x0698 346 sign \x0686 14 sign \x06AF 1245 sign \x06A9 13 sign \x06CC 24 liblouis-2.5.3/tables/hyph_ru.dic0000664000175000017500000020372012161041546013703 00000000000000UTF-8 .а8 .аб1Ñ€ .а1б .аг1ро .а1г .а1ди2 .а1д .а1и2 .ак1Ñ€ .а1к .а3ль3Ñ .аль1 .ар2Ñ‚1о2 .а2Ñ€1Ñ‚ .аÑ1то .аÑÑ‚1Ñ€ .а1у2 .б8 .3би2о .1б2и .в8 .во2б3л .во1б2 .во3ж2д .во1ж .1г8 .го2Ñ„ .д8 .дек2 .1де .де1кв .ди2а1к .1ди .ди1а .ди1о .до3п2 .1до .до3Ñ‚2 .е8 .епи3 .е1п .з8 .зав2Ñ€ .1за1 .за3м2н .за1м .за3п2 .и8 .иг1Ñ€ .и1г .и2з1г2 .из3н .и1и2 .ик1Ñ€ .и1к .ио2 .ио4на .и1он .иÑ3 .л8 .л2е2о .ле2п3Ñ€ .ле1п .ле2Ñ1к .ль2 .люÑÑ‚1 .л2ÑŽ .1м8 .ме2ж1у2 .ме1ж .1ми1о1м .мо2к1 .му2шт1 .му1ш .н8 .на1в .1на .на3Ñ‚ .на3ш2 .2не3в1н .1не .не1др .3нед .не1з2 .н2е1Ñл .не1Ñ2ц .не3Ñ‚ .ноÑ1к .1но .нук1л .1ну .о8 .обо3ж2 .о1бо .ово1 .о1в .ог3н .о1г2 .оз4 .оÑ2ка .оÑ2п2 .оÑ3пи .от1в2 .о1Ñ‚ .от1ро .от1ру .от1у1ж .1п8 .по3в2 .по3ж2 .по1з2н .проÑ2 .Ñ€8 .ра2Ñ3Ñ‚ .ре2бр .Ñ€2еб .ре2з3в .ри2Ñ1к .ри1Ñ2 .ри2ч .ро2з3в .1ро2Ñ3л .ро2Ñ… .Ñ8 .Ñе4п1Ñ‚2 .1Ñ2е .Ñе1п .Ñк2 .ÑÑ‚2 .Ñу2ж .1Ñу .Ñ‚8 .Ñ‚2е2о3 .1Ñ‚2е .ти1а3 .ти2г .тиг1Ñ€ .ти2о .у8 .уб2 .уд2 .у1е2 .уз2на .уз1н .ук2 .у2м2ч .у1м .у1о3 .у1п2 .ур2в .уÑ2 .ут2Ñ€ .у1ÑŽ2 .Ñ…8 .хо2Ñ€3в .1хо .ч8 .че2Ñ1к .1че .1ÑŽ8 .ÑŽÑ1 4а3а аа2п аа2Ñ€ аа2ц а1б абе3Ñ1Ñ‚ а1бе а3бла аб1л аб2л2ÑŽ аб1ри а3б2у ав1в а1ве ав3зо а1в2з2 а1ви ави2а а1во аво1Ñ Ð°2во1Ñ‚ ав1ра а3в2Ñ2е3 а2в1Ñ2 а2в1Ñ‚2 а1ву а2вх а3в2че а2в1ч 2аг2а а1г ага1Ñ2 а2гд а2гити аг2и аги1Ñ‚ а2г1ле аг2ли а2Ð³Ð»Ð¾Ñ Ð°Ð³1ло аг2ло1Ñ‚ 2аго а3гу а1д 2адв2 а2д1ве ад2жи ад1ж ади2од а1ди а2д1л а2д1о2б1л а1до ад1ро а2д1ру аду3ч а1ду ад2ц а2дын а1ды1 а1е ае2го ае1г ае2ди ае2л а2е1п ае2ре ае2Ñ Ð°Ð·Ð°4ш3 а1за1 азв2 аз3вез аз1ве аз1в1л а2з1г2 аз1др аз1об аз2о1б1Ñ€ а2зовь1 а1зо1в а2золь1 а1зол2 а1зо1ри аз2о1Ñ2 аз1Ñ€ а1и аи2г1 а2и3гл а2их а1к ак1в 1а2к1к2 ак2л а2к3ле1м ако1б2 ак2о 2а3ко2н1Ñ2 ако3Ñ‚ 2акри а2к1Ñ Ð°1ла а3ла1г а1ле 2алек а3ли ало1з а1ло а1лу алу2ш алуш1Ñ‚ а1лы1 а2ль1щ аль1 а1л2ÑŽ 2ама а1м а4м1б4 2амет а2ми2н1Ñ‚ ам2нет а2м1н ам1не 2амо амо1з2 амо3и2 а2мч ана2д2ц а1на ана1д а2н1а2ме ана1м а2на1Ñ„ ан2дра а2н1д а2н1о2б2 а1но ан1о2Ñ…Ñ€ ан1Ñ€ ан2Ñ1п2 а2н1Ñ Ð°Ð½1Ñ1у ан2Ñу2Ñ€ а2н1уз а1ну а1нь1 2а1о ао2д ао2к ао2Ñ€ ао2Ñ Ð°Ð¾1ÑÑ‚1 а3пла а1п ап2ло1м ап1ло 2апо апо4в2Ñ2 апо1в апо3ч2Ñ‚ ап2ра ап1ре1л а1ра ара2Ñ1Ñ‚ ар2бо1к а2Ñ€1б ар1бо ар2вал ар1ва 1аргу а2Ñ€1г а1ре аре1дв2 аре1ол ар2ео ар2жа ар1ж а1ри а1ро ар2тор а2Ñ€1Ñ‚ ар2Ñ‚1Ñ€ а1ру а2Ñ€1Ñ… а1ры1 а1Ñ€2ÑŽ а1Ñ€Ñ 2аÑ1к аÑ3ми аÑ2м а2Ñ3но аÑ1н 1аÑÑи1г а2Ñ1Ñ Ð°4Ñ5Ñ2и аÑ2Ñ‚1ву аÑ3те1м аÑ2Ñ‚2е аÑ2тин а1Ñти аÑ2ти1Ñ Ð°Ñ1то1о2 аÑ1тух а1Ñ3ть2е аÑ4ть1 аÑ2шед аÑ1ш2 аÑ2ше1Ñ2 а1ÑÑŒ2и1 аÑÑŒ1 а1та 1ата1к а2Ñ‚3ва а2Ñ‚1ви а2Ñ‚1ву 2атез а1Ñ‚2е а1ти а1то ат1о1бе а2то2м1н ато1м ато2ш ат1рах ат1ри а1ту а2Ñ‚2Ñ… а1ты1 а3ть2е а2ть1 а3ть2ÑŽ1 а3ть2Ñ Ð°1Ñ‚2ÑŽ а1Ñ‚Ñ Ð°1у а2уб ау2д ау3до а2у1ле аут1Ñ€ ау2Ñ… ау2ч ау3чь1 а2у1Ñ1 а2Ñ„1л а1Ñ„ а1Ñ…2а ахми2 ах1м а2Ñ…3Ñ2 а1ч 2а1ча а2чл ач1Ñ‚ а2шл а1ш аÑ2ли а1Ñ Ð°2ÑÑ€ аю1та а1ÑŽ а1Ñ Ð°Ñ2б аÑ2в аÑ2з 1ба ба2б1в ба1б ба2г1Ñ€ ба1г ба2др ба1д ба1з ба3зу ба1л2ÑŽ1 б2а2о баÑ3м ба1ÑÑ‚ ба1тр 2б1б б1в б1вы2 б1г2 2б1д 1бе 3бев бе2гл бе1г бе2гн бе2д1Ñ€ 3бе1е 3бе2з бе1з1а2 без5д4 бе3зи без3н без1о2 без1Ñ€ бе2Ñ1к б2еÑ3п2 бе2Ñ1Ñ‚ беÑ3Ñ‚2е бе1Ñ3ти 3бе1ц 2бе1щ 2б1ж б1з2 1б2и 3би1а б2и2б 2би1ж 3би1к били3Ñ‚2 би1л би1ли 3био би2об би2од би2он би2ор би2тв би1Ñ‚ би1Ñ… 2б3к б1л 1бла1г 1б2лаз б3ла1зи б2лан 1б2ле1е б3лен б2ле2Ñ1к 1б2ле1Ñ Ð±2луд 1б2лу1ж 2блы1 2б2ль1 2б3л8ÑŽ. бл2ÑŽ б2люд б2лю1е б2люл 2б3люÑÑŒ1 2б1Ð»Ñ 2б3н 1бо бо1бра боб1Ñ€ бо3в1ш бо1в бо2гд бо1г2 бо1дра бо1з2 бо1л2ж бо1Ð»ÑŒÑ Ð±Ð¾Ð»ÑŒ1 бо3м2л бо1м бо2м2ч бо3м1ш2 бо1ну1 бо1ру бо2Ñа бо1Ñк бо3Ñк2о бо3Ñти бо1ÑÑ‚ 3бо1Ñ‚ бо2тв2 бот2Ñ€ боÑ2Ñ€ бо1Ñ 2б8Ñ€. б3ра1б б2рав бра1зо 1б2рал 2б1ра1м б2ран 1Ð±Ñ€Ð°Ñ Ð±2ра2ть1 б1рах 1б2ра1ч 2б3ра1Ñ 1б2ред б1ре2й1 б1рек б2ре1м б2рех б2рид б2рито бри1Ñ‚ б2риты1 1б2ро1ди б1рол б1ро8м. бро1м 1б2ро1Ñ2и бро2Ñ1к 2б4Ñ€1Ñ Ð±1ру 3б2ру2ÐºÑ 2брь1 1б2Ñ€2ÑŽ 2б3Ñ€8ÑŽ. б1Ñ€Ñ 2б1Ñ2 б3Ñк бÑ4л б1Ñ‚ 1б2у бу2г1Ñ€ бу1г бук1л бу1Ñ 2б1Ñ„ 2б1Ñ… 2б1ц 2б1ч 2б1ш 2б1щ 1бы1 бы2г1 бы2Ñ Ð±Ñ‹Ñ1к быÑÑ‚1 1бь1 2б8ÑŒ. 2Ð±ÑŒÑ 2бьт бÑ1Ñ€ б1Ñ 3б2ÑŽ бю1та 1Ð±Ñ 1ва ва2бр ва1б 3ва1г ва2д1Ñ€ ва1д вадь2 ва3ж2д ва1ж ва1з ва2н1Ñ2 ва1ÑÑ‚ ва2Ñтр ва1тр вах1 3ва1ц 3ва1Ñ 2в1б в1ви в1вр 2в1г2 в1д в2дох в1до 1вев 3ве1г вед1Ñ€ ве3ду 1ве1е 1вез 3ве3зе 3вез1л ве1з2у 1ве8й. ве2й1 ве2п1 2ве2Ñ€1д 1Ð²ÐµÑ Ð²Ðµ2Ñ1к ве2ÑÑ‚1в ве1ÑÑ‚ вет3Ñ€ 1ве1ц 1ве1ÑŽ 1ве1Ñ 1в2з2 в2з1г2 взд2 взо1б взъ2 взъе3д ви2аз ви1а ви2а1к ви2ар ви2а1Ñ2 виа1Ñ‚ ви3а1Ñ„ ви2гв ви1г в2и2гл 1виз 1ви2н1Ñ‚ 1ви2н1ч ви1о ви1Ñ2ни виÑ1н ви1у3 ви2Ñ„ 2в1к вк2л 3в2ÐºÑƒÑ Ð²Ðº2у в1л в2ла 2в3ла1б в2лев в2лек в2лет в2леч 2в1ли в2ли1Ñ 2вл2ÑŽ в2лю1б 2в1Ð»Ñ 2в1м 1вме 2в1н 4в3на в2Ð½ÐµÑ Ð²1не в1но1 в3н8у. в1ну 3в2нук 3в2нуч в3ны1 во1б2 во2б3ла воб1л во1в2 во3в1к 1вод во1дв2 во1др во2ер во1е во2ж1ж во1ж вои2Ñ1 во3и 1во1к во3м2 во1п2 во1ру 2в2о2Ñ€1ц 2ворь1 воÑ1к во1Ñ2м во1Ñ1н воÑ3пе1 воÑ1п2 во2Ñтр во1ÑÑ‚ вот2Ñ€ во1Ñ‚ 1вох во1хл во3Ñ…2Ñ‚ 1в2о1ÑŽ 2в1п2 2в8Ñ€. 2в1Ñ€8а. в2рав 2в1ра1м в1Ñ€Ð°Ñ 2в1рах 2вра1ц 2в1Ñ€8е. 2в1рен 1врид 1в2риз в1ри1и в1ри1к в1ри1л в1ри1Ñ2 в1ри1Ñ‚ 2в1ро вро3Ñ‚2 2в1ры1 1вр2ÑŽ в1Ñ€Ñ 2в1Ñ2 3в1Ñ2е3 в3Ñка1Ñ 4в3Ñки 4в3Ñк2у 3в2Ñ1п2 3в2Ñ2ÑŽ в1Ñ‚2 вто1б2 вто3ш 1ву1а ву3г 1ву1з 2ву1и 2ву1к ву3п ву1Ñ2 ву2Ñ…1а ву2Ñ…3в ву1чл в1Ñ„2 1в1хо 2в1ц 2в1ч 2в1ш 3в2шив 2в1щ въ2 1вы1 вы3г2 вы3з1н вы1п2 вы3Ñ‚2 вых2 вы3ш2л вы1ш 2в8ÑŒ. вь1 1вь2е 1вьин вь2и1 2Ð²ÑŒÑ 2вьт 1вь2ÑŽ 1вь2Ñ 1в2Ñ1 1в2ÑŽ 1Ð²Ñ 1г г2а га1з га1ÑÑ‚2 га2у 2г3б г1ба2 г1ви 2г1г г3дан г1да 2г3ди 3г8е. г2е2б1 ге1но1 ге2о2б г2ео ге2од ге1ор 2г3ж 2г1з г2и ги2б1л г2и1б ги3б1Ñ€ ги2гр ги1г ги1Ñл ги1ÑÑ‚2 2г1к 2г1л8а. г2лав г1ла2й1 г1лами гла1м 2глаÑÑŒ1 2г1ла1Ñ Ð³1ле г2лет 2гл8и. г1ли г2лин 3г2ли1Ñ„ 2гл8о. г1ло г3ло2б1л 2гло1в 2гло1г2 2гло1е 2гл2о2й1 2гл2о1ÑŽ 2г1лу1ÑŽ 2г1лы1 г2лÑ1ж г1Ð»Ñ 2глÑ1к 2г3м г2нав г1на г2нан г3н8е. г1не г2нев г3нен г3не3п2 г3Ð½ÐµÑ Ð³2ни1Ñ€ г1ни гни2Ñ‚2Ñ€ гни1Ñ‚ г2но1е г1но г2но3и г2Ð½Ð¾Ñ Ð³3Ð½Ñ Ð³Ð¾1б2 го2в1л го1в го3ж2д го1ж го1з го2з1л гоз2н 1гои2г2 го3и 3г2о2й1 г2ол гоми2 го1м го2Ñ1а го2Ñд2 го1Ñк2л го1Ñ1н го1Ñпа гоÑ1п2 2г1о2Ñ‚1д го1Ñ‚ гоу3Ñ‚ го1у2 го1ч2л 3г2о1ÑŽ 2г1п 2г8Ñ€. г1ра1е г1ра2й1 г1рар 1г1ре1г г1рек г1ре1ц гри4в3н г1ри1к г1ри1л г1Ñ€2ин г1ри1Ñ2 г1ри1ч г1ро1в г2роз г1ро1к г1рон г1ро1п г1ро1Ñ‚ г1ро1Ñ„ гру2п г1рыв гры1 2гр2ÑŽ г1Ñ€Ñ1е г1Ñ€Ñ1л г1Ñ€ÑÑ‚ 2г3Ñ2 г4Ñа г4Ñб2 2г3Ñ‚ гу1в гу1Ñ Ð³Ñƒ2Ñ1к 2г1Ñ„ 2г1ч 2г3ш 2г3Ñ 1да да2б1 да2ген да1г да2гр да1з д2а2о даÑÑ‚1Ñ€ дат1Ñ€ 2д1б дв2 д1ве 1дви 2д1вид 2д1виз 2д1ви2н1Ñ‚ 2д1ви2н1ч 2д1Ð²Ð¸Ñ 2д1ви1Ñ‚ д3в1к д1в1л 2д1вод д1воз 1д2ворь1 2д1Ð²Ñ 2д1г2 2д1д2 1де де1б2л д2еб де1б2Ñ€ 3девр 3дез де2з1а2 де2зи дез1о2 де2зу деи2о2 де1и де1кл 3деме де1м де2од д2ео део3п2 де3пл де1п дераÑ2 де1ра де2Ñ3в де1Ñ2к де2ÑÑ€ де1хл 2д8ж. д1ж д2жа1м д2ж3м 2д2ж1Ñ 2д1з2 1ди ди2а1д ди1а диа2з ди2а3ли ди2а1ло ди2ар ди2Ð°Ñ Ð´Ð¸2об дио3де ди1од ди2ор дио1Ñ Ð´Ð¸1о3ти дио1Ñ‚ д2и1п2 ди2пи ди3п1Ñ‚ ди2Ñ1тр ди1ÑÑ‚ ди1у3 ди3фр ди1Ñ„ ди3фто ди2Ñ„1Ñ‚ ди1Ñ… 2д1к д1л д2лев 2д3м2 2д1н д3на дне1а2 д1не 3д2не2в1н 4д3но1 дно3д2 дноÑ2 4д3ны1 3д2нÑ1ш д1Ð½Ñ 1до 2д1о2бед до1бе до2б1л 2д1обла до1б2ра доб1Ñ€ дов2л до1в до3в2м до1д2 до3д1н до3ж2д до1ж до1з доз2н дои2Ñ€ до3и 2д1о2к1Ñ‚ до1к 2доли1м до1ли до2м1Ñ€ до1м до1п2 до3пл 2допле до2пре до2руб до1Ñ Ð´1о2Ñен до1Ñ2е д1о2Ñин до1Ñ2и 2д1о2Ñ1но доÑ1н доÑ2п2 2д1о2Ñ‚1д до1Ñ‚ 2до2Ñ‚1л дот2ри 2д1Ð¾Ñ‚Ñ€Ñ 2до2тъ1 до3ть1 3дохл до2ш3в до1ш до3ш2к2 до2ш1лы1 до2щу до1щ 2д1п 2д8Ñ€. д1ра1б 1дра2в1ш 2дразв2 1д2раз1н д1ра1не д1рар д1ра2Ñ3 д1рах д1ра1ч д2ра1ÑŽ д1ре д2Ñ€2еб 2д3ре1ж 2дрез д2рел д2ре1м 1дрема 1дре2м1л дре2м3н 1дремы1 2д3рен дре2Ñк д2ре2Ñ1Ñ Ð´1ри д2ри2й1 2др2ин д2Ñ€2и1п д2рих дро2г3н дро1г2 д1род д1ро1е 1д2ро1ж 2д3роз д1Ñ€2о2й1 д1рол д1рон д1Ñ€Ð¾Ñ Ð´1ро1Ñ‚ д1Ñ€2о1ÑŽ д1руб 1дру1г 1дру1ж д1ру1м д1ру1ÑŽ д1ры1 2дрыв 1д2ры1г д1Ñ€Ñ Ð´2Ñ€Ñб 1д2Ñ€Ñ1г д2Ñ€ÑÑ… 2д1Ñ2 дÑк2 д2Ñ3к1н 2д1Ñ‚ 1ду дуб3Ñ€ ду3г 2д1уд ду2да ду2о ду2п1л ду1п дуÑ1к д1уÑ2л ду1ÑÑ‚ ду2Ñта 2дут1Ñ€ ду1Ñ… ду2чи дуÑ1Ñ‚ д2у1Ñ 2д1Ñ„ д1Ñ… 2д3це д1ц 2д3цу 2д3цы1 2д1ч 2д3ш2 2д1щ 2дъ1 дъе2м 1ды1 2ды1г ды2г1Ñ€ 2дыд 2дыме ды1м 2ды2Ñ1 2дыт 2ды1щ 2д8ÑŒ. дь1 1дь2е 2дьк 2дьт 1дь2ÑŽ 1дь2Ñ Ð´ÑŒ3ÑÑ€ 1д2ÑŽ 1Ð´Ñ Ðµ1а еа2д еа1ди3 еа3до еа2з еан2д1Ñ€ еа2н1д еат1Ñ€ 2еб еба2Ñ Ðµ1ба е1бра еб1рен еб1ри е1бро еб1ро1в еб1ры1 е2б3Ñ€2ÑŽ е1ве 2евер е1ви е3в2ме е2в1м ев2ни1м е2в1н ев1ни ев2нÑÑ‚ ев1Ð½Ñ Ðµ1во 2евол ев1ра1Ñ 2е1вре ев1ре1е ев1ре2й1 ев1ре1Ñ ÐµÐ²1ри е2в1Ñ‚2 е1ву е1вх е1в2хо е1вь1 ега1Ñ2 е1г ег2а ег2д е2глан е2г1ле е2г1ли е2г1ло ег2на ег2но 2ег2Ñ€ ед1во едв2 ед2ж е1дже е1д2лин ед1л ед1ли едно1у3 е2д1н е4д3но1 ед1опр е1до едо1п2 е2дотв2 едо1Ñ‚ е2дох е2д1о1щ е1дру е2д1Ñ€8у. е2ду2б е1ду ед1у1бо е2дуве е2ду3г е2Ð´ÑƒÑ ÐµÐ´1у1ÑÑ‚ 2е3ду1ш е2дын е1ды1 е1е е2евид ее1ви ее2в1Ñ€ ее2г2и ее1г ее1Ñ2 ее2ÑÑ‚ ееÑÑ‚1Ñ€ ее2Ñ… е2ж1г2 е1ж е4ждев е2ж1д еж1де еж3ди 2еже е2ж1Ñ€ еза2вр е1за1 еза1у3 е1з2ва езд1Ñ€ е3зе ез1зу3 ез3з2 е3зи1Ñ‚ е1зи ез1об ез1о2г2 е1зо3м2 ез1о1п ез1о2Ñ€ ез1о1Ñ‚ ез1о1ш2 ез2Ñ€Ñ ÐµÐ·1у2д е1зу е2з1у2к е2з1у1п ез1ÑƒÑ ÐµÐ·Ñƒ2Ñо езу2ÑÑ‹1 ез1у2Ñ… ез1у1ча е3Ð·Ñ Ðµ1и еи2г1 еи2д еи2м еи2о еиÑ1л еиÑ1тр еи1ÑÑ‚ е1ка ека2б е2к2з е1ки 2е1к2о 2е1кр ек2ро ек1Ñк е2ÐºÑ ÐµÐº1Ñ3Ñ‚2е е1к2у е1ла е1ле еле3Ñк еле1Ñ1ц е1лу е1лы1 е1л2ÑŽ е3Ð»Ñ ÐµÐ¼Ð¸3д2 е1м еми3к емо1Ñ 2ему1ж е2мч 2емы2Ñ ÐµÐ¼Ñ‹1 е3на ен2д1Ñ€ е2н1д 2е1нр е2н1Ñ2 е2н3ш2 е1н2Ñ 2ео е1о2б еоб2ро еоб1Ñ€ е2о3гл ео1г2 ео2гро е1од ео3да ео2де ео3де3з ео2до е1о2ж е2о3и е2о3к2л ео1к е1о8л. е1о3ла ео3ли е1о2л1к е1о1лы1 е1оль1 е2о1м е1о8н. е2о3на е2о1ни ео3но е1о2н1Ñ2 ео1п2 е1опе1 ео2пр ео4пу е2о3ро еоÑ2 е1о2Ñви ео1Ñ2в ео1Ñк е1оÑ2м е1оÑ1н еоÑÑ‚1Ñ€ ео1ÑÑ‚ е2о3Ñ1Ñ…2 е1о2Ñ‚1л ео1Ñ‚ еот2ру е1о2ч е1о2щ епат2 е1п епа1тр 2епе1 епиÑ2к е2пл е3пла еп1ле1ш е3п2лод еп1ло еп1лу е3плы1 еп1лю1щ епл2ÑŽ е4п1н 2епо е4п3Ñ2 е4п1Ñ‚ е1ра ер1а2к1Ñ‚ ера1к е2рв ер1ве е1ре е3Ñ€8е. ере3до ере1др ере1к2 ере3м2н ере1м ере3п ере1Ñ…4 е1ри ери1о3з е1ро еро2б ер1об1л 2ерови еро1в 2е1рокр еро1к 2ерол еро3Ñ„2 ер3Ñ2к е4Ñ€1Ñ Ðµ1ру е2Ñ€1у2п е1ры1 е1Ñ€2ÑŽ е1Ñ€Ñ Ðµ3Ñ2а еÑ2ба е1Ñб2 е1Ñ1г2 е1Ñк е2Ñ1к8а. еÑ1кал е2Ñ1ке е2Ñ1ко1в еÑк2о е4Ñ1к8у. еÑк2у 2еÑл еÑ1Ð»Ð°Ñ ÐµÑ2лин еÑ1ли еÑ2ло1в еÑ1ло еÑ2ло1м е1Ñлу е1Ñлы1 е1Ñ4м е3Ñо 2еÑ1п2 еÑ2пек еÑпе1 е2Ñ3пол е2Ñпу е1ÑÑ‚ еÑ2Ñ‚2ан е2Ñ2Ñ‚1л е3Ñту еÑ2чет еÑч2 еÑ1че е1та ет1ве е2Ñ‚1ви е1тво 2етеч е1Ñ‚2е е1ти е1то ето1Ñ ÐµÑ‚1Ñ€ ет2Ñ€Ñ Ðµ1ту е1ты1 е3ть2е е2ть1 е3ть2ÑŽ1 е3ть2Ñ Ðµ1Ñ‚2ÑŽ е1Ñ‚Ñ Ðµ1у2 2еуб еуб3Ñ€ еуз2 еук2ло еф2и3б2 е1Ñ„ еф4и еф2л еф1ре еха2Ñ‚ е1ха ех1а1то ех3вал е1Ñ…2в ех1ва ех3ло1п ех1ло ех1об е1хо ех1опо ехо1п2 ех1ре ех1ру ех1у2ч 2ецв е1ц е1чл е2шл е1ш е1Ñ2 ею2г е1ÑŽ е1Ñ ÐµÑ2з 1ж жа2б1л жа1б жа2бр жа1з жат1в 2ж1б2 2ж1в ж1г2 2жг2а ж2г2и 3ж2гл ж2гу 2ж1д ж2да1к ж1да ж2да1ч 3ж2дел ж1де 4ж3деме жде1м ж2де1п ж2ди 4ж2д1л ж1до3 ж1ду1 4ждь1 3ж2Ð´Ñ 3жев же3д2 же1к2в же1кл ж2е1о2 же3п2 же1Ñ2 же3Ñк 2жжа 1ж1ж ж2же 2ж3жев 2ж1з2 жи1о 2ж1и2Ñ€1Ñ€ жи1Ñ€ 2ж1к 2ж1л ж2м ж3ма 2ж3мо 2ж1н ж1но1 2ж1об 2ж1о2Ñ‚1 жо1у3 жоу1Ñ 2ж1п2 жпо1 ж2ру 2ж1Ñ 2ж1Ñ„ 2ж1ц 2ж1ч 2жъ1 2ж8ÑŒ. жь1 2Ð¶ÑŒÑ 2жьт 1за1 з4а3а2 за1б2 за2в1ри за2вру з1а1ву за1г4 з1адр за1д зае2д за1е зае2Ñ… за3ж2д за1ж за3з2 з1а2к1Ñ‚ за1к за3м1не за1м за2м1н 3з2ан за3на за2н1Ñ2 за1п2 зар2в за3Ñ€2д зар2ж заÑ2 заÑÑ‚2 зат2 за3Ñ‚1к2 за1у2 зах2 зач2Ñ‚ за1ч за3ш2 за1Ñ2 з1б2 2з3в8а. з1ва з2вав з3валь1 з2ван 2з3ва1Ñ Ð·1ве з2вез з1ви з3в2к з1в2ла зв1л з1во 2звол 1з2вон з1вр 1зву 2з1ву1ÑŽ з1вь1 2з1г з3г2а з2г1ли зг2на з2г1ну з1д2в2 з2де1ш з1де здо1ж3 з1до 1зе з2е2б1 зе2ев зе1е зе2од з2ео 2з1ж2 з3з2 1зи 3з8и. 3зи8й. зи2й1 з1и2н1Ñ‚ зи2оз зи2о1но зи1он зи1о1п 3Ð·Ð¸Ñ Ð·Ð¸3Ñ‚2Ñ€ зи1Ñ‚ зиу3м зи1у2 3зи1ч 2з1к зк2о1 зко3п2 з1л з2ла1щ з2лоб з1ло з2ло1п з2лор з2лю1щ зл2ÑŽ 2з1м2 з3м1н з1н 2зн8а. з1на з2нав з2на1е з2на2й1 з2на1к з2нан з2нат з2на1ÑŽ 2з3на1Ñ 2з1не 2з3ни 2з1но 2з1ну 2з3ны1 з2о1бе зо2б2и 1зо1в зо3в2м зо2гл зо1г2 зо1др 1зо1е зо1з2 1зо3и 1зо8й. з2о2й1 1зо8к. зо1к з1о2ÐºÑ 1зол2 зо1л1г зо1л1ж зо3м2 1зо8м. 2зо2м1н 1зон 2зо1нр 1зо1о2 зо2о3п зо2Ð¾Ñ Ð·Ð¾2па зо1п з2опл з2опр з1о2Ñ€1г 1з2о3ре зоÑ2 з1оÑ1н зо1Ñ1п2 зо2тв2 зо1Ñ‚ з2о1Ñ‚2е з1о2Ñ‚1к2 з2ото зот2ре зот2ри 1зох зо1ш2 зо2ши 1зо1Ñ 1з2о1ÑŽ з1ра з2ра1к зра2Ñ Ð·2ра1ч з2рен з1Ñ€ÐµÑ Ð·2ри1ш з1ро зро2Ñ3 з1ру з2Ñ€2ÑŽ з1Ñ€Ñ 2з1Ñ 2зт з1ти 1зу 3з8у. 2з1у2бе зу2б3Ñ€ зу1в 2зуве 2зу2г 3зу1е 2з1уз3 2зу1к 3зуме зу1м з1у2мо 2зу1п зу2пр з1у2Ñ€1б з1у2Ñ‚2е зу2Ñ‡Ð°Ñ Ð·Ñƒ1ча 2з1ц з1ч 2з1ш зъе2м зъ1 1зы1 2зы2г1 зы2з 2зыме зы1м 2зы2мч 2зы2Ñ1 2зы1щ 1зь2е зь1 1зь2и1 1зь2ÑŽ 3зь2Ñ 1з2ÑŽ 1Ð·Ñ Ð¸1а и2а1б и2ав иа1г2 и2агр и2а1де иа1д и2а1ди иа2зо1в иа2му иа1м и3а1на иа2нал иа2н1д2 и2а1о2 и2а1п и2а1Ñ2к иа1Ñта иа1Ñто иат1ро и3а1ту и2а1Ñ„ и2а1Ñ… иа2це иа1ц 2и1б и2б1Ñ€ 2ива1ж и1ва 2и1ве и2в3з2 и1ви 2и1во и1в2Ñ€ и3в2Ñ2 и1ву и1в2хо 2и1вы1 иг2д и1г и3ге 2игл и2г1ле и2г1ли и2гн иг1ни3 иг1рен иг1ро иг1ру иг1ры1 и2г1Ñ€Ñ Ð¸1дв2 и2де2й1 и1де и1д2ж иди1о1м и1ди иди1о1Ñ‚ ид1Ñ€ и1дь1 и1е и2е1вод ие1во ие2г ие2д ие3де ие2зу и3е1ни и2е1о2 иепи1 ие1п ие2Ñ€ и3ж2д и1ж из1в2 из2г1не и2з1г 1из1д из2нал из1н из1на и1зо и1зо2о2 из1Ñ€ и1и ийÑ2 и2й1 и1к и3к2а и3к2а1Ñ2 ик2ва и2к1ви и2к1Ð»Ñ Ð¸3к2о ик1ро ик1Ñк и2ÐºÑ Ð¸Ðº2Ñ1Ñ‚ и3к2у и1л и2л1а2ц ило1Ñ1к и1ло и2л1п2 и2л1у2п и2ль1 и2льт2 2има и1м и2ме1но и2ме1ну 2имень1 и3ми имо3и2 им3п2л и2м1п и2м1Ñ€ и2мч им2ча и2н1д2 1ин1ж ин2о2к3л и1но ино1к ино3п2л ино1п ино1Ñ Ð¸2н1Ñ2 1инÑ1п2 1ин1Ñти 1ин1Ñу 1и2н1Ñ„2 1инъ1 и1об ио2бо ио2вр ио1в и2о1г2 и1од ио2де и1оз ио3зо и1о2ÐºÑ Ð¸Ð¾1к и1о1ле и1он и3оно1в ио1но и1о2п1Ñ‚ ио1п и1ор и3о1ра ио1ру ио2Ñа ио3Ñк2л ио1Ñ2п2 и1ота ио1Ñ‚ ио2Ñ‚1в2 и1о2Ñ‚1к2 и1о4Ñ‚1Ñ2 иоу1г2 ио1у2 ио2хо и1о1ш 2и1п ипат2 ипа1тр ип2Ð»Ñ Ð¸2п3н ипо3к2 и1Ñ€ ира2Ñ1Ñ‚ и2Ñ€1а1у и2рв и2Ñ€1ж ири2Ñ1к ири1Ñ2 и1ри1у3 иро1з2 1и2Ñ€1Ñ€ иÑа2н2д1 и1Ñа и2Ñб2 и2Ñд2 иÑ1к иÑ3к8а. и2Ñ3ка1м и2Ñ3ках иÑ3ке иÑ3ки иÑ3ко1в иÑк2о иÑ3к8у. иÑк2у и2Ñ1ла1м иÑ1лы1 иÑ3ме иÑ2м иÑ3му и2Ñ3но иÑ1н иÑо2Ñк и1Ñо и2Ñ3пр иÑ1п2 и4Ñ1Ñ Ð¸1ÑÑ‚ и2ÑÑ‚1в и2Ñ2Ñ‚1л иÑ1Ñ‚Ñз и1ÑÑŒ2и1 иÑÑŒ1 и1Ñ‚ ита2в и2Ñ‚3ва и2Ñ‚1ве и2Ñ‚1ви и2Ñ‚1ву и2Ñ‚1м2 и2Ñ‚1Ñ€ и3Ñ‚2ре2Ñ Ð¸Ñ‚3ро1м и2Ñ‚1уч и3ть2ÑŽ1 и2ть1 и3ть2Ñ Ð¸1у2 иу3п иф1л и1Ñ„ иф2л2ÑŽ и2фр иха3д и1ха и2Ñ…1Ð°Ñ Ð¸Ñ…2ло2 и1Ñ…2лор1 и3Ñ…2о и2Ñ…1о3к их1ре их1ри и1ху и1ч иш2ли и1ш и2ш1лы1 и2шт ию4л и1ÑŽ ию2н ию2Ñ‚ ию3та и1Ñ Ð¸Ñ2д 2й1 йд2 й2д3в2 й1но1 й2о1Ñ Ð¹Ð¾2тр йо1Ñ‚ йп2л й1п й2Ñб2 й3Ñка йÑ2ке йÑ4мо йÑ2м й2Ñ3му й2Ñ1н й2Ñ3Ñ„ й2Ñ1ш2 й2Ñ‚1м2 й2Ñ…1м й2Ñ…2Ñ3 йÑ1 ка2б1л ка1б ка2б1ри 1кав к2а1д ка3д1не ка2д1н ка2д1Ñ€ 1ка1е каз3н ка1зо 1ка2й1 1ка8л. 1ка1ло 1ка2л1Ñ2 1ка1м 1кан ка2п1л ка1п ка2пре кар3Ñ‚1Ñ€ ка2Ñ€1Ñ‚ 3к2Ð°Ñ ÐºÐ°1ÑÑ‚ 1кат ка1Ñ‚2Ñ€ 1ках ка2ш1Ñ‚ ка1ш 1ка1ÑŽ 2к1б к2ва1к к1ва к2Ð²Ð°Ñ Ðº2ва1ш к1ви к2воз к1ву 2к1г 2к1д к1да2 1ке 2ке1а ке2гл ке1г кед1Ñ€ ке2Ñ1к ке2ÑÑ‚1 2к1з 1кив ки1о киоÑ1 ки2пл к2и1п ки1Ñ2ни киÑ1н 1ки1Ñ‚ 2к1к2 к2к3Ñ 2к3л8а. 2к3лаÑÑŒ1 2к3л8е. 2кле1м к3ле8м. к3лен к1л2ео 2к3л8и. к1ли 2к3лив к2ли1к к2лин 2к3Ð»Ð¸Ñ Ðº3ли1Ñ 2к3л8о. к1ло к2лоз к3ло1м 2к3Ð»Ð¾Ñ ÐºÐ»Ð¾3Ñ‚ 1клук к3лы1 2кль1 1кл2ÑŽ 2к3л8ÑŽ. 2к3л8Ñ. к1Ð»Ñ 2к3лÑ1м 2к3лÑÑ… 2к1м 2к1н 3к2ни1ж к1ни к2но1п к1но 3к2нÑ1ж к1Ð½Ñ Ðº2о ко1б2ри коб1Ñ€ 1ко1в 3ко1ва 1код ко1др 1коз 1ÐºÐ¾Ð»ÑŒÑ ÐºÐ¾Ð»ÑŒ1 2комин ко1м 3ко2н1Ñ2 коп2Ñ€ ко1п ко2Ñ€3в ко1ру 1ÐºÐ¾Ñ ÐºÐ¾1Ñк коÑ3м ко1Ñ1п2 1ко2Ñ‚1н ко1Ñ‚ ко2фр ко1Ñ„ к2охо2Ñ€3 ко1хо 1ко1ш 2к1п 8к8Ñ€. к1рел кр2е1о кр2е2Ñл к1реч 1кр2и1б2 к1рид к2риз кри2о3 к2ри1Ñ‚ к1рих к1Ñ€2о1а2 к1роб к2ро1е к1ро1к к1ро1о2 к1рор к1Ñ€Ð¾Ñ Ðº1ро1Ñ„ к1рох к1ро1Ñ ÐºÑ€Ñƒ1Ñ Ðº1Ñ€Ñд 2ÐºÑ ÐºÑа2н1д2 к1Ñа к2Ñ3в кÑ3г2 к2Ñ3д2 к2Ñ2и1б к1Ñ2и к1Ñки кÑ1к2л к1Ñк2о кÑ3м к3Ñо к1Ñта1м к1ÑÑ‚2ан кÑ3Ñ‚2е к1Ñто кÑ1тр к1Ñту к3Ñу 2к1Ñ‚ кта2к 3к2Ñ‚8о. кто1Ñ ÐºÑ‚2Ñ€ к2у ку1ве 3ку1е 1ку2й1 1ку1Ð»Ñ 3ку1м ку2п1л ку1п ку2п1Ñ€ 1кур ку3ро куÑ1к ку1ÑÑ‚ 1кут ку3ть1 1ку1че 1куют ку1ÑŽ 3кую1щ 2к1Ñ„ 2к1Ñ…2 2к1ц 2к1ч 2к1ш 1кь1 к2ÑŽ 1л8а. 2ла1бе ла1б ла2б1л 2л2аго ла1г ла2гр ла2д1а1г ла1д ла1да 1ла1е ла3ж2д ла1ж ла1зо л2а1к лак2Ñ€ 1ла8м. ла1м 1лам8и. лан2д1Ñ€ ла2н1д ла1Ñта лаÑÑ‚1в ла1Ñ2Ñ‚2е ла1Ñто ла2ÑÑ‚1Ñ€ ла1Ñту ла1ÑÑ‚Ñ Ð»Ð°1Ñ‚2Ñ€ ла1у1 ла2ÑƒÑ Ð»Ð°2фр ла1Ñ„ 1ла1Ñ… 1ла1Ñ 2лб л1бр л1ве л1ви л1во л1ву 1л2гал л1г лг2а л2гл лго1 2л3д2 1л8е. ле1в1л лев1ра ле2г1л ле1г ле1д2ж ле3до ле1з2о3 ле1зр лек1л 2ле2м1н ле1м 1лен ле1о2н1Ñ‚ л2ео ле1о2Ñ2 ле2Ñб2 ле2Ñк ле4Ñка л2е1Ñ2л ле1Ñпе1 л2еÑ1п2 ле1тв ле1Ñ‚2Ñ€ 1лех ле1Ñ…Ñ€ л1зо 1ли лиа2м ли1а 3л2и1во 3л2и1вы1 л2иг2л ли1г ли2г1ро лие3Ñ€ ли1е ли2кв ли1к 2ли2м1п ли1м лио1Ñ Ð»Ð¸2пл л2и1п лиÑ3м 2л1иÑ1п2 ли2тв ли1Ñ‚ лиу3м ли1у2 ли2Ñ…3в ли1хл ли1Ñ…Ñ€ 2л1к лк2в л2к1л 2л1л л2ль1 лл2ÑŽ1 2л1м 2л1н лни2е л1ни 1ло ло2б1л ло1б2Ñ€ 2лови1Ñ Ð»Ð¾1в ло2в1л 3ло1вод ло2г3д ло1г2 лого1Ñ Ð»Ð¾1др 2лоен ло1е ло1зв ло2к1а2у ло1к л2о2к2л лок3ла 3Ð»Ð¾Ð¿Ð°Ñ Ð»Ð¾1п ло2Ñ€2в 2л1о2Ñ€1г ло1ру лоÑ1к ло1Ñ2п2 2л1о2Ñ‚1д ло1Ñ‚ лот2Ñ€ ло2шл ло1ш 2л1п 2л1Ñ2 л1Ñ3б2 л1Ñ‚ 1л8у. лу1б1Ñ€ лу1в лу3г лу1д4Ñ€ 1лу1е лу1з1н лу1кр 1лун луо2д лу1о лу3п2ло лу2пл лу1п лу1Ñ Ð»Ñƒ3ть1 1лу1ÑŽ 2л3Ñ„2 2л1Ñ…2 л2Ñ…3в 2л1ц л1ч 1л8Ñ‹. лы1 1лые2 1лы1ж 1лы2й1 1лы1м 1лы8Ñ…. 4л8ÑŒ. ль1 2льд 3ль2е 3ль2и1 2льк 2ль1м 2льн 3ль2о 2льÑ2к 1ль2Ñти 1ль2ÑÑ‚Ñ 2льт 2ль1ц 2льч 1ль2ща ль1щ 1ль2ще 1ль2щу 3ль2ÑŽ 3ль2Ñ Ð»2ÑŽ 1л8ÑŽ. 1лю1ж 1люÑÑŒ1 лю1та 1Ð»Ñ 3л8Ñ. лÑ1ви 3лÑ1во 3лÑ1вы1 2лÑд 3лÑ1м лÑ1ре лÑ1ру 3лÑÑ… 1м ма2в2з2 3ма1г ма2гн ма2др ма1д ма2дь1 ма1зо ма2к1Ñ€ ма1к 2м1а2л1л ман2д1Ñ€ ма2н1д маÑ3л ма1Ñ4Ñ‚ ма2тоб ма1то ма2Ñ‚1Ñ€ ма2у ма1Ñ„2 3ма1ч ма2ч1Ñ‚ 4м1б м3б2и мб2л м3б1Ð»Ñ 2м3в2 2м1г2 3м2гл 2м1д меан2 ме1а ме2е1г ме1е ме2ел ме2ж1ат ме1ж ме1зо ме2Ñ1к ме2ÑÑ‚1Ñ€ ме1ÑÑ‚ меч1Ñ‚ 2м1ж 2м1з2 ми2гре ми1г ми1з1в2 2м1из1д ми1з1н ми2кр ми1к мик1ри ми2оз ми1опи мио1п ми2ор ми1Ñ2л 2м1к2 3м2к1н 2м1л м2ле1е м2лел 2м1м 2м1н 4м3на м3не1д м1не 3м2не1ш 4мно1е м1но м2но1ж 4мн2о2й1 4мно1м м2нор 4мн2о1ÑŽ м2нут м1ну 4м3ны1 мо1б2 мо3в1л мо1в 3мод мо1др мо2ж1ж мо1ж мо1зв мо1зр мои1Ñ1Ñ‚ мо3и мо2к3в мо1к 1мо3м2 3мон 3мо1п мо1ру моÑ1ка 1мо1Ñ2м мо1Ñ1н мо1Ñ2п2 3мо3ти мо1Ñ‚ мо2Ñ‚1Ñ€ 3мо1Ñ„ 2м1п мп2л м1ра1б 2мри 2м1ро м1ры1 2м1Ñ Ð¼Ñ2к мÑ2н м2Ñ1ор м1Ñо 3м2Ñти 2м1Ñ‚ му1Ñ2к му1Ñ4л му1ÑÑ‚ мут1Ñ€ му3ть1 2м1Ñ„ мф4и3 2м1Ñ… 2м1ц м2чав м1ча м2чал м2чи1Ñ‚ м1чи м2чи1ш 2м1ш2 2м1щ 3м2ще 1мы1м1 мы1 мы2мр мы2Ñ 2м8ÑŒ. мь1 2Ð¼ÑŒÑ Ð¼ÑŒ2ÑŽ1 2м1Ñ Ð¼Ñ1Ñ€ м2ÑŽ мÑ1Ñ€ мÑ1Ñ2Ñ‚ 1на на3би1о на1б на1б2и наб2Ñ€ на1в2Ñ€ наг2н на1г на3ж1д на1ж на1з2 на2и1л на1и на2ин на2и1Ñ2 4н1а2к1к2 на1к на3м2н на1м нап2л на1п на1Ñ€1ва на1Ñ€2ви на1Ñ2 на1тв на1Ñ‚2Ñ€ н1а2фр на1Ñ„ на1Ñ…2 2на1ч на3ш2л на1ш 2на1щ на2Ñ1Ñ€ на1Ñ 3на1Ñ 2н1б2 2н1в 2н1г н2г1в нги2о нг2и нг4л нго1Ñ Ð½Ð³2Ñ€ 2н1д н2да1к н1да н2д1в2 н3де3з н1де нде2Ñ Ð½Ð´2ж н3д2з2 н2д1л нд1ра1г нд1ра1ж нд2ре нд2ри3а нд1ри н2д1Ñ€Ñ Ð½Ð´2Ñ1п2 н2д1Ñ2 н2д1ц 1не н2е1б2 не1в2д 2не2в1н не3в1Ð½Ñ Ð½Ðµ1г2 3нед не1д2л не1д2о не2дра не1дро не3ду не3е нее2д не3ж2д не1ж не1зв не1з2л не1з1н не1зо не1зр не1и2 не1к2в не1кл не3м2н не1м 3н2е1о2 не2о3да не1од не2ол не3п2 не1Ñ€2ж не2Ñ€1о1Ñ‚ не1ро не1Ñ2к не3Ñ2н н2е1Ñ2п2 не1ÑÑ‚2 не1Ñ2Ñ…2 не1Ñ2ч2 не1Ñ‚2в не3Ñ‚2л не1Ñ‚2Ñ€ 3не1у2 не2фр не1Ñ„ не1Ñ…Ñ€ не3ш1к2 не1ш не1Ñ2 2н1з2 нзо1Ñ2 1ни н2и3б2 ни2ен ни1е 3ни2й1 ни2кл ни1к нила2 ни1л ни2л1ал ни2л1а1м 2н1инÑ1п2 ни2н1Ñ2 2н1инÑÑ‚ ни1Ñл ниÑ3п2 ниÑÑ‚2Ñ€ ни1ÑÑ‚ ни1у3 ни1Ñ… 3ни1ц 3ни1щ 2н1к нк2в нк2л нкоб2 нк2о нко3п2 н2к1ро н2к1Ñ Ð½1л 2н1н нно3п2 н1но 1но ноб2 но1б1Ñ€ но2в1л но1в но1дв2 но1др но2ер но1е но1зв но2зд но3з2о но1зр но3к1н но1к 3н2оме но1м но2м3ш2 но2Ñ€2в но1ру но1Ñк2л но2Ñ1ли но1Ñ2л но1Ñ2п2 но2Ñ2ч2 2н1о2Ñ‚1д но1Ñ‚ но3Ñ„2 но1Ñ2 н3п2 2н1ре 2н1ри н1ро 2н1Ñ Ð½2Ñ3в н2Ñ1г2 нÑ2ке н2Ñ1кон нÑк2о н2Ñл н3Ñла н2Ñ3м н2Ñ1н н2Ñ1о1к н1Ñо н3Ñ2пе1 нÑ1п2 нÑÑ‚2Ñ€ нÑу2Ñ€ н1Ñу н2Ñ3Ñ„ н2ÑÑŠ3 2н1Ñ‚ н2Ñ‚1в нти1о2к н2Ñ‚1м2 нт2ра н2тр1а2г н2Ñ‚1Ñ€1а1ж н2трар нтраÑ2 нт2ре н2Ñ‚1рив н2тро1к нт2ру нт2Ñ€1уд нт2ры1 н2Ñ‚1Ñ€Ñ 1ну нут1Ñ€ ну1Ñ… 3ну1ÑŽ 2н1Ñ„2 н1Ñ… н1хо1 2н1ц 2н1ч н2чл 2н1ш нш2Ñ‚ 2н1щ 1ны1 3н8Ñ‹. 8н8ÑŒ. нь1 1нь2е 1нь2и1 2ньк 1нь2о 2Ð½ÑŒÑ 2ньт 2ньч 1нь2ÑŽ 1нь2Ñ Ð½2Ñ 1н2ÑŽ 2н3ÑŽ2Ñ€ 1Ð½Ñ Ð½Ñ1ви 2о1а2 о3ав оа1п1 2о1ба 2о3био о1б2и об2лев об1л об2ле1м о1бл2ÑŽ 1об1м обо1л2г о1бо обо3м2 обо2Ñ 2о3бо1Ñ‚ об1Ñ€ о2б1Ñ€8а. о1б2рав о1б2ран 1объ1 2о1бь1 о1в о3в2ла ов1л о3в2ло ов3но1 о2в1н о3в2ну1ш ов1ну о2в1ри о3в2Ñ2е3 о2в1Ñ2 ов3Ñк2о ов2Ñ‚2 о2вх о1г2 2о3ге о2г3л8а. о2г3л8и. ог1ли о2г3л8о. ог1ло о3Ð³Ñ€Ñ 2одан о1да од1во1е одв2 о3д8е. о1де 1о2деÑ1л оде1Ñ 2оди3а о1ди 2о3ди1м од2ли1Ñ‚ од1л од1ли о2д1о2пе1 о1до одо1п2 одо3пр о2д1о2пы1 о2до1Ñ2и одо1Ñ Ð¾2д1о2Ñ‚1ч одо1Ñ‚ о1дра1г од1ра1ж од1раз од1ра1к о1драл од3Ñ€2еб од1ре о1дроб од1ро1в о2д1у2ч о1ду о2дыма о1ды1 оды1м о2дыму о2дын о1дь1 о2дьб2 о1е о2е1б о2е1в1л ое2д о3ежек о2еже ое1ж ое2жи о2е1о ое1Ñ2 ое2ÑÑ‚ о2е1то ое2ц о3ж2ди о1ж о2ж1д о3ж2ду1 оза2б3в о1за1 оза1б2 2озав о1з2ва оз2вен оз1ве оз2ви о1з2Ð²Ñ Ð¾Ð·2г1ло о2з1г оз2дор оз1до о1здр оз2е1о о1зе о2з3но оз1н о1зо о2з1об 2о1зон о2зо1п озо1ру о2з1у2г о1зу о2зы1м о1зы1 о3зы2Ñ1 о3и ои2г1 ои2г2н ои1е3 ои2з ои2м ои3мо ои2о 2о2й1 ойÑ2 о1к 2о3кан ок2в 2ок2л о3кл2ÑŽ око1б ок2о 2о3кол око3п2л око1п ок1Ñк о2ÐºÑ 1о2к1Ñ‚ 2окти 2о3ку1м ок2у о3ла ол2ган ол1г олг2а о1ле 1о2ли2м1п о1ли оли1м о3ло о1лу олу3д2 о1лы1 о1л2ÑŽ о3Ð»Ñ Ð¾3ма о1м ом2б2л о4м1б 2оме о3м2не1м о2м1н ом1не о3м2нет о3м2но1ж ом1но о2м1ри ом2ч ом2ше о2м1ш2 о2мь1 о3мь2Ñ Ð¾3на о2н1д2 оне3Ñ„2 о1не оно1б2 о1но о1нр о2н1Ñ2 он2Ñ‚2ру о2н1Ñ‚ о1о2 о2ол оо3п1Ñ2 оо1п ооÑ3м ооÑÑ‚1Ñ€ оо1ÑÑ‚ о2о3ти оо1Ñ‚ о2о1Ñ„ о3па1к о1п о3пар о2п1л8е. о2п1ле2й1 о2п1ли оп2ли1Ñ‚ оп2ло о2п3л8ÑŽ. опл2ÑŽ о2п1Ð»Ñ Ð¾3п2лÑÑ Ð¾Ð¿Ð¾4в2Ñ2 опо1в опо1з2н опо2ш3л опо1ш оп2ри1 о3п2Ñ‚2е о2п1Ñ‚ оп2то о1ра ора2Ñ3 ор2б3л о2Ñ€1б о1Ñ€2в о1ре 2о3ре1г оре2Ñк о1ри о2Ñ€1иÑ1п2 ори1Ñ2 о1ро о1ро2Ñ3л ор2тр о2Ñ€1Ñ‚ о1ру1е о1рук о2Ñ€1у2ÐºÑ Ð¾1Ñ€ÑƒÑ 2о2Ñ€1ц о1ры1 о1Ñ€2ÑŽ о1Ñ€Ñ Ð¾3Ñа1д о1Ñа оÑа3ж2 о1Ñ2б2 о2Ñ3ба о2Ñ1к8а. оÑ3кар оÑк1во о2Ñ1ке оÑ1ки о2Ñк8и. о2Ñ1ко1в оÑк2о оÑ1к2о2й1 оÑ1ко1м о1Ñ2ко1п оÑ1к2о1ÑŽ о2Ñ1к8у. оÑк2у оÑ1ку1ÑŽ о1Ñ2л оÑ3ле2й1 оÑ3ло1г2 оÑ1ло оÑ3лых оÑлы1 оÑ3ми оÑ2м оÑ3Ð¼Ð¾Ñ Ð¾1Ñ2ни1м оÑ1н оÑ1ни оÑ2нÑ1л оÑ1Ð½Ñ Ð¾Ñ2Ð¿Ð°Ñ Ð¾Ñ1п2 о1Ñ2пу оÑ2Ð¿Ñ Ð¾Ñ2Ñ2в о2Ñ1Ñ Ð¾Ñ2Ñ3м о1ÑÑ‚ оÑ2та о3Ñтра о2Ñуч о1Ñу 2оÑ1Ñ…2 оÑ2цен оÑ1ц о1Ñ2ч2 о1Ñ2шив оÑ1ш2 о1Ñ‚ отв2 о2Ñ‚3ва от1ве о2Ñ‚1ви от1в1л 1о2Ñ‚1г 1о2Ñ‚1д 2о3тек о1Ñ‚2е о3тер 2о3тех о3ти о3ткал о2Ñ‚1к2 о2Ñ‚1м2 от1ра1б от1ра1д от1раз отра2Ñ Ð¾Ñ‚1ре1ж от1рек от1реч от1ре1ш от1ри от1род от1ро1е от1ро1к от1Ñ€Ð¾Ñ Ð¾Ñ‚1роч от1ру1г от3Ñ3м о4Ñ‚1Ñ2 оту2а от1у2ч 1о2Ñ‚1Ñ… о3ть2ÑŽ1 о2ть1 о3ть2Ñ Ð¾1у2 оу1п2 оуÑ2к оу3та оу3то 2о3фа1ш о1Ñ„ о3фе 2о3фи1Ñ‚ оф4и 2о3фон о2фо1ри 2о3фо1Ñ‚ о2Ñ„1ри 2о1хи ох1лы1 о2Ñ…1Ð»Ñ Ð¾Ñ…2ме ох1м 2охор о1хо о1Ñ…Ñ€ о1ху о2цо о1ц оча1Ñ Ð¾1ча оч2л оч2ле о3ч1ли о1чт о2ч1то ош3ва о1ш ош2в ош2ла ошпа2к3 ош2п2 ош2Ñ‚ оÑ1ти о1Ñ 2о1ÑŽ о1Ñ Ð¾Ñ2в оÑ2д оÑ2з оÑ2ри 1п па1ви3 пав3л па2вь1 па2др па1д па2ен па1е па1зо паÑ1л паÑ1та па1Ñ2Ñ‚2е паÑ1то паÑ1ту па2Ñ1ты1 па1тро па2ун па1у па3Ñ„ па1ху па2шт па1ш 2п1в2 2п1д пе1 пе2дв2 пе2д1ин пе1ди пе2з пе3за1 пе3зо пе2к1ла пе2ль1 пе4пл пе1п пери1о пе1ри пе2Ñ1к пе2Ñ1н пе2ÑÑ‚1Ñ€ пе1ÑÑ‚ пе2Ñ1ц пе2Ñч2 пе2Ñ‚1Ñ€ пе2шт пе1ш пиаÑÑ‚1 пи1а пи2ж3м пи1ж пи2к1Ñ€ пи1к 3пи2н1к 3пи1ÑÑ 4п3к 2п8л. 4п1л8а. пла1Ñ Ð¿1ле8м. пле1м п1ле2м1Ñ 2п1лен п2ле2н1к п1л2е2о пле2Ñ1к п1ле1ÑŽ 2плив п1ли 3п2ли1к 2пл8о. п1ло 2пло1в 2пло1г2 2п1лы2й1 плы1 2п1лы1м п1лын п1лых 2п1л8ÑŽ. пл2ÑŽ п1лют п2лÑÑ Ð¿1Ð»Ñ Ð¿2лÑ1ш 2п1н п3на п3но1 п3ны1 по1б2 по3в1л по1в по3в2Ñ2 под1во подв2 по2д1о2к по1до подо3м2 пое2л по1е пое2Ñ… по1з1ве по1з1до по1з2л по1з1н пои2щ по3и 3п2о2й1 3по2л1к по3м1но по1м по2м1н по3м1ну 3по3п2 п1о2Ñ€1г пор2ж по1ру по1Ñ4 3по1Ñ2л по3Ñ1Ñ Ð¿Ð¾Ñ‚2в2 по1Ñ‚ пот2Ñ€ по1Ñ…2 по2ш1ло по1ш по2ш1лы1 по2ш1Ð»Ñ Ð¿Ð¾Ñ3м по1Ñ 2п1п2 ппо1д 8п8Ñ€. 3прев пре1з пре2й2 пре1л пре1о1г2 пр2ео 3прет при1 при3в при1г2 при3д2 при3к при3л при2ль2 1пр2и1п2 п2ри1ц про1б1л про1д2л про3ж2 про1з2 п1ро1зо 3про3и 1про3п профо2 про1Ñ„ 2п4Ñ€1Ñ Ð¿2ру 2п1Ñ2 3п2Ñал п1Ñа п3Ñин п1Ñ2и 3п2Ñи1Ñ… п3Ñо 2п1Ñ‚ п2Ñ‚3в 3п2тих п3ту 3пуб пу2г3н пу1г пуÑ1к2у пу1ÑÑ‚ пу3ть1 2п1Ñ„2 пх2 2п1ц 4п3ч 2п1ш 2п1щ 2п8ÑŒ. пь1 2пьт пÑ1ра п1Ñ Ð¿2ÑŽ1 1Ñ€8а. Ñ€4а3а2 ра2б1л ра1б 1ра1бо ра2б1Ñ€ 1рав1Ð½Ñ Ñ€Ð°2в1н ра2гв ра1г ра2гл рад2ж ра1д радо1б2 ра1до ра2д2ц ра2жур ра1ж ра2зи2й1 ра1зи ра2зуб ра1зу рак2в ра1к 1ракиз ра2к3л 1рал1г 1ра2м1к2 ра1м 1ра2м1н ра2нох ра1но ран2Ñ1ц ра2н1Ñ Ñ€Ð°2п1л ра1п Ñ€2аÑ3к2 1раÑл раÑ3п2 раÑ1Ñ‚ 1раÑта раÑ3Ñ‚2л Ñ€1а2та1к ра1та рат1в ра1Ñ‚2Ñ€ 2ра1хи 1ращи ра1щ 1ра1ÑŽ 1ра1Ñ 2раÑÑ‚ 2Ñ€1б рб2ла рб1л Ñ€2бле рб2ло рб2л2ÑŽ рбо3Ñ Ñ€1бо 1Ñ€2вав Ñ€1ва Ñ€3ва1к Ñ€3вар Ñ€3ва1та Ñ€3ве1ж Ñ€2в2ео 1рвет Ñ€1ви Ñ€3вин Ñ€2ви1Ñ‚ Ñ€1во рво1з2д Ñ€1вь1 2Ñ€1г Ñ€2гв Ñ€2г1л Ñ€2гн рг2Ñ€ 2Ñ€1д рда1Ñ Ñ€1да Ñ€2д1в2 рд2ж рди2а Ñ€1ди Ñ€2д1л рдо1Ñ2 Ñ€1до Ñ€2д1ц 1Ñ€8е. ре1вр рег2Ð»Ñ Ñ€Ðµ1г рег2н ре2д1о2п2 ре1до ре2до1Ñ Ñ€ÐµÐµ2в ре1е рее2д рее2л ре3ж2д ре1ж 1ре2з1к ре1з2л ре1з1на рез1н 1ре1зо ре1зр ре1з2у 1рей1ш ре2й1 ре1к2л 1ре2к1ш ре3м1но ре1м ре2м1н 3ремо ремо2г3 1ре2н1к 1рень1 ре1он Ñ€2ео ре1о1п2 ре1о2Ñ€ ре1о2Ñ„ ре1ох ре1о2ц 1репь1 ре1п ре3Ñ€2 реÑ1ки ре1Ñк Ñ€2е1Ñл Ñ€2е1Ñ2п2 реÑ2Ñ3м ре2Ñ1Ñ Ñ€Ðµ3Ñта ре1ÑÑ‚ ре3Ñто ре1Ñч2 ре1тв ре1Ñ‚2Ñ€ реуч3Ñ‚ ре1у2 ре1чт ре3шл ре1ш Ñ€3ж8а. Ñ€1ж Ñ€3жа1м Ñ€3жан Ñ€3ж2д 2рз Ñ€1з2в Ñ€1зо ри3а Ñ€2и1б2 ри3б1Ñ€ ри3в2н 2риг2и ри1г ри2г1ло Ñ€2игл ри3г2н 2ри1д2ж ри1д2Ñ€ рие2л ри1е рие3Ñ€ риз2в2 рик2Ñ€ ри1к ри3м2н ри1м ри3м2ч Ñ€2ин 1ри2н1Ñ2 ри1о2з рио2Ñ Ñ€Ð¸1о1Ñ‚ ри3Ñ€2 ри1Ñ2 ри3Ñб2 2риÑ1п2 ри3ÑÑ‚1в ри1ÑÑ‚ ри3Ñ‚2Ñ€ ри1Ñ‚ 1ри1у2 ри2Ñ„1л ри1Ñ„ ри3фр ри1хл 1ри1ц 1ри1ш риÑти2 ри1Ñ 2Ñ€1к Ñ€2кв Ñ€2к1л Ñ€2к1Ñ 2Ñ€1л2 Ñ€2ль1 рл2ÑŽ1 Ñ€3Ð»Ñ 2Ñ€1м Ñ€2мч 2Ñ€1н рна1Ñ4 Ñ€1на Ñ€3н2е3о2 Ñ€1не рне1Ñ2 рно3Ñ2л Ñ€1но 1Ñ€8о. ро2бл2ÑŽ роб1л ро1б2Ñ€ ро2в1л ро1в 1рог2ол ро1г2 1рогру ро1дв2 ро3д2з2 ро1д1л род2ле ро2д1о1Ñ‚ ро1до ро1др 1ро1дь1 рое2л ро1е рое2м рое2Ñ… 1розар ро1за1 ро1з2в ро1зр 3ро3зы2Ñ1 ро1зы1 рои2Ñ3 ро3и 1рокон ро1к рок2о 1рокр 1Ñ€Ð¾Ð»Ð¸Ñ Ñ€Ð¾1ли 1роли1ц 1ромор ро1м 1рона1ж ро3на 1рона1п 1Ñ€Ð¾Ð½Ð¾Ñ Ñ€Ð¾1но рооп1Ñ€ ро1о2 роо1п ро2пл2ÑŽ ро1п ро3п1Ñ2 2Ñ€1о2Ñ€1г ро1Ñ€2ж ро1ру ро1Ñк ро2Ñ1ки ро2Ñк2у 1ро1Ñ2л ро1Ñ2м ро1Ñ2п2 роÑ2Ñ„ 1роÑ1ш2 1ро1Ñ2ÑŽ 1рот2в2 ро1Ñ‚ 1ро2Ñ‚1к2 рот2ри 1ро1у2 роу1г2 ро2Ñ„1а1к ро1Ñ„ ро2фр ро1хл рош2л ро1ш ро3ш1н 1роÑ2з ро1Ñ 2Ñ€1п рп2ло Ñ€2пл2ÑŽ 2Ñ€1Ñ€ 4Ñ€1Ñ Ñ€Ñ2к Ñ€2Ñ1н Ñ€Ñ2п2 Ñ€Ñтв2 Ñ€3Ñтв1л 2Ñ€1Ñ‚ Ñ€2Ñ‚1а2к1к2 рта1к Ñ€2Ñ‚1а2к1Ñ‚ Ñ€2Ñ‚1в Ñ€2Ñ‚3ва рт2в1л Ñ€2Ñ‚1м2 Ñ€2Ñ‚1об Ñ€1Ñ‚1о2Ñ€1г рт1ра рт2ран рт1ре рт1ри ртуÑ1 Ñ€2Ñ‚1у2чи Ñ€3ть2ÑŽ1 Ñ€2ть1 Ñ€2Ñ‚1Ñ2ч 1Ñ€8у. 1ру1ба ру2г3н ру1г ру2дар ру1да 1руже2й1 ру1ж 2ру2ÐºÑ 1рул руÑ1к руÑ3л ру1Ñта руÑÑ‚1Ñ€ ру3ть1 1ру1ха 1ру1хо 1ру2ч1н 2Ñ€1Ñ„ рф2л 2рх Ñ€2Ñ…2в Ñ€2Ñ…1ин Ñ€1хи рх1л Ñ€1Ñ…2ло Ñ€2Ñ…1о1п2 Ñ€1хо рх1Ñ€ 2Ñ€1ц Ñ€2цв 2Ñ€1ч Ñ€2чл Ñ€2ч1м 2Ñ€1ш Ñ€3ш2м рш2Ñ‚ 2Ñ€1щ 2ръ1 1Ñ€8Ñ‹. ры1 1рыб ры2дв2 2рыз ры2к2л 1ры1м ры2Ñ1к ры2Ñ…1 2Ñ€8ÑŒ. рь1 1рь2е 1рь2и1 2рьк 2Ñ€ÑŒÑ 2рьт 1рь2ÑŽ 1рь2Ñ Ñ€Ñ1л Ñ€1Ñ Ñ€2ÑŽ 1Ñ€8ÑŽ. 1Ñ€ÑŽÑ Ñ€Ñ1ви 1Ñ€Ñ1ÑŽ 1Ñа Ñа2б1л Ñа1б Ñа2дь1 Ñа1д Ñа2к1в Ñа1к Ñа2к2л 2Ñ1аль1п Ñаль1 Ñ1а2п1п2 Ñа1п 2Ñ1а2Ñ€1к 2Ñ1а2Ñ‚1л Ñа1тр Ñа2ун Ñа1у Ñа2Ñ„1Ñ€ Ñа1Ñ„ Ñа1Ñ…2 1Ñб2 2Ñ3бе3з2 Ñ1бе Ñбез1о3 Ñбе3Ñ2 2Ñ3б2у Ñ2бы1 2Ñ3б2ÑŽ 1Ñ2в 2Ñ3вен Ñ1г2 Ñ2г2и Ñ2гн Ñ2го 1Ñд2 Ñ2да Ñ2де Ñ3ди Ñ2до 1Ñ2е Ñег2н Ñе1г Ñе1з2 Ñе1кв Ñек1л Ñ2е2к1Ñ€ Ñе2кÑ4 Ñеми1 Ñе1м Ñер2е2б Ñе1ре Ñе2Ñк Ñе2ÑÑ‚ Ñе3Ñта Ñе3Ñ2Ñ‚2е ÑеÑÑ‚1Ñ€ 1Ñ2ж Ñ1з 1Ñ2и 3Ñиз Ñи1о1м Ñи1о1п Ñи2пл Ñ2и1п Ñи1Ñ… 4Ñ8к. 2Ñ1ка1м Ñ2ка2н1д Ñ1кан 1Ñ2ка1Ñ„ 2Ñ1ках Ñк2ва Ñ2к1ви 3Ñки1но Ñк2л Ñ2к1Ð»Ñ Ñк3лÑв 2Ñ2к1н Ñ1кон Ñк2о 2Ñко3на Ñ2ко2п1Ñ2 Ñко1п 2Ñ1ко1ш Ñк2Ñ€ Ñ1кра 2Ñ1кр2и1б2 Ñ2к1Ñ 2Ñ3ку1е Ñк2у 2Ñ3л8а. 1Ñлав 1Ñла1д Ñ1ла1м 2Ñ3ла1Ñ Ñ3лев Ñ3ле1е Ñ1ле2й1 Ñл2ео2 Ñ1лет Ñ3ле1ÑŽ 2Ñ3л8и. Ñ1ли 2Ñли1ц 2Ñ3л8о. Ñ1ло Ñ2ло1ж Ñ3лому Ñло1м 2Ñ3Ð»Ð¾Ñ 2Ñ3лу1ÑŽ 2Ñ3лые2 Ñлы1 2Ñ3лы2й1 2Ñ3лы1м 2Ñль1 Ñ1Ð»ÑŽÑ Ñл2ÑŽ 2Ñ3Ð»Ñ Ñ2м 1ÑÐ¼ÐµÑ Ñ4ме1Ñ Ñ3мур Ñ1н 1Ñ2на1б Ñ1на Ñ2на1Ñ2 2Ñ3на1Ñ 1Ñ2не1ж Ñ1не 2Ñ3ни1к Ñ1ни 2Ñ1но Ñно1з2 2Ñ3ну1ÑŽ Ñ1ну 2Ñ3ны1 1Ñо Ñо1б2Ñ€ Ñ2о1в Ñов2Ñ€ Ñо1д Ñо1з2 Ñо1л2г Ñо3м2 Ñо2ри1е Ñо1ри Ñо1ру Ñо1Ñк Ñо1Ñ2п2 Ñо2ÑÑŒ1 Ñот2Ñ€ Ñо1Ñ‚ Ñо1ч2л Ñош2л Ñо1ш Ñ1п2 Ñ2пав Ñ2пе1е Ñпе1 Ñ2пел Ñ2пен Ñ2пех 1Ñ2пе1ц Ñ2пе1ш Ñ2пе1ÑŽ Ñ2пи1м 2Ñ3пи1ÑÑ Ñ3п1н Ñпо1з2 2Ñпол Ñ2по1Ñ4 2Ñпь1 1ÑÑ€ 8Ñ8Ñ€. Ñ2ра1б Ñра2Ñ Ñ1рат ÑÑ€2е2б1 Ñре3до 2Ñ1Ñ ÑÑа2н1д2 Ñ1Ñа Ñ2Ñб2 ÑÑ3во Ñ1Ñ2в 4Ñ5Ñ2и Ñ3Ñ2к ÑÑ2л Ñ2Ñ1н Ñ3Ñ2не Ñ2Ñо1ри Ñ1Ñо ÑÑ2п2 ÑÑÑ‚2 ÑÑ2ч2 8Ñ8Ñ‚. 1ÑÑ‚8а. 2Ñ2Ñ‚1б2 4Ñ2Ñ‚8в. ÑÑ‚1вер 2Ñтв1л ÑÑ‚2вол Ñ2Ñ‚2Ð²Ñ Ñ2Ñ‚2е 1Ñ4Ñ‚8е. 1Ñте2й1 1Ñтел 1Ñте8н. Ñ3те8Ñ‚. Ñ3Ñ‚2е1Ñ‚2е Ñте3Ñ… Ñ3те1ш 1Ñти Ñ2ти1е Ñ2ти1и2 2ÑÑ‚1и2м1п Ñти1м 2ÑÑ‚1и2н1д2 2Ñ2Ñ‚1и2н1Ñ„2 2ÑÑ‚1инъ1 Ñ2ти1ч Ñ2ти2ш1к2 Ñти1ш Ñ2ти1ÑŽ 2Ñ2Ñ‚1к2 ÑÑ‚2ла Ñ2Ñ‚1л Ñ3Ñ‚2ле 2ÑÑ‚1ли ÑÑ‚2ли1л ÑÑ‚2ли1Ñ‚ 2ÑÑ‚1Ð»Ñ 2ÑÑ‚1м2 2Ñ2Ñ‚1н 1ÑÑ‚8о. Ñ2то1б 1Ñто1в 1Ñто1г2 Ñто2г3н 1Ñто1д 1Ñто1е 3Ñ2то3и 1Ñто1к 1Ñто1м 1Ñтон 2Ñ1то2Ñ€1г 2Ñ1тор1ж 2Ñ1то4Ñ€1Ñ 1ÑÑ‚Ð¾Ñ 1Ñто1Ñ‚ Ñ2то1ц 1ÑÑ‚2о1ÑŽ 2Ñ2Ñ‚1п2 2Ñ6Ñ‚8Ñ€. ÑтраÑ2 4ÑÑ‚1ра1Ñ 2ÑÑ‚1ред ÑÑ‚1ре2й1 2ÑÑ‚1рив ÑÑ‚1риз 2ÑÑ‚1ри1л 2ÑÑ‚1ри1щ ÑÑ‚1Ñ€2о1а2 Ñ4Ñ‚1ро1в ÑÑ‚1род ÑÑ‚1рох Ñ1Ñ‚2руб ÑÑ‚1ру1ш 2Ñ4Ñ‚1Ñ2 Ñ1тут 1Ñту1ÑŽ 2Ñ2Ñ‚1Ñ„ 2Ñ4Ñ‚1ц 1Ñты1 Ñ2тыв Ñ4ть1 8Ñ4Ñ‚8ÑŒ. 2ÑÑ‚ÑŒÑ 3Ñть2ÑŽ1 1Ñть2Ñ 1ÑÑ‚Ñ1м 1ÑÑ‚ÑÑ… 1Ñу Ñу2б Ñу1б1а2 Ñу1б1о Ñу1в Ñу3гл Ñу1г Ñу2ев Ñу1е Ñу2з Ñу1кр Ñума1 Ñу1м Ñупе2 Ñу1п ÑуÑ3л ÑуÑ3п2 Ñу1ÑÑ‚ Ñут1Ñ€ Ñу2Ñ„3 Ñу1Ñ… 1Ñ2фе Ñ1Ñ„ Ñ1Ñ…2 1Ñ2хе 2Ñца1 Ñ1ц Ñ2це3на 2Ñ3ци1 2Ñцо Ñч2 1Ñ1ча Ñ2Ñ‡Ð°Ñ Ñче2Ñ1к Ñ1че Ñ3чив Ñ1чи 2Ñ3чи1к Ñ2чи1Ñ‚ Ñ1чл 2Ñ3чо Ñ1ш2 Ñ3ш1н 1ÑÑŠ2 Ñъе3д Ñъе3л 1ÑÑ‹1 ÑÑ‹2г1 ÑÑ‹2з ÑÑ‹2п1л ÑÑ‹1п ÑÑ‹2Ñ ÑÑ‹Ñ1ка 2Ñ8ÑŒ. ÑÑŒ1 1ÑÑŒ2е 2Ñьк 2Ñьт 1ÑÑŒ2ÑŽ 1ÑÑŒ2Ñ ÑÑ1Ñ€ Ñ1Ñ Ñ2ÑÑ1 1Ñ2ÑŽ ÑÑŽ1Ñ 1ÑÑ 2ÑÑз ÑÑ3ть1 та2б1л та1б таб2Ñ€ та1ври 1та1г та2гн та1з2 так3ле та1к так2л Ñ‚2ан та2пл та1п 1Ñ‚Ð°Ñ Ñ‚Ð°1ÑÑ‚ та1тр 1та1щ 2Ñ‚1б2 2Ñ‚8в. 2Ñ‚2ва Ñ‚1ве2й1 Ñ‚1вел Ñ‚1вет 2тви Ñ‚1во1е Ñ‚1во1з 2Ñ‚1в2о2й1 Ñ‚1Ð²Ð¾Ñ 2Ñ‚1в2о1ÑŽ 2Ñ‚1вр 2тву 2Ñ‚1вы1 2Ñ‚1Ð²Ñ 2Ñ‚1г 2Ñ‚1д 1Ñ‚2е те2гн те1г те1д те1зо 3те1ка тек1л 3те2к1ш тел2е1о те1ле те4м2б1 те1м те2о3д Ñ‚2ео те1ох те4п1л те1п те2ра1к те1ра тер2е2о те1ре 3те2рз те2Ñ€3к 3те1Ñ€Ñ Ñ‚Ðµ2Ñка те1Ñк те2Ñ1ки те2Ñ1к2о те2Ñк2у те1ÑÑ‚2 те2хо 2Ñ‚1ж 2Ñ‚1з тиа2м ти1а ти2б1л Ñ‚2и1б ти3д2 ти1з1на тиз1н ти1и2 тииÑ1 ти1к2 тила2м ти1л Ñ‚1и2м1п ти1м 2Ñ‚1и2н1в Ñ‚1и2н1д2 2Ñ‚1ин1ж 2Ñ‚1и2н1Ñ„2 ти1Ñ2л ти3ÑÑ‚1в ти1ÑÑ‚ ти3Ñ„2Ñ€ ти1Ñ„ ти1Ñ…Ñ€ 2Ñ‚1к2 3Ñ‚2кав 3Ñ‚2кан 3Ñ‚2кет Ñ‚1ке 3Ñ‚2к1н 2Ñ‚1л тло2б Ñ‚1ло Ñ‚2ль1 Ñ‚1м2 тми2Ñ Ñ‚Ð¼Ð¸1ÑÑ‚1 Ñ‚3м1щ 2Ñ‚1н то2Ð±ÐµÑ Ñ‚Ð¾1бе то1б2л 2Ñ‚1объ1 то2в1л то1в то1д то3д2Ñ€ то1з2 ток2Ñ€ то1к 2Ñ‚1о2м1м то1м 2то2м1Ñ 2то2н1г 1то2Ñ€1г 1тор1ж 1то4Ñ€1Ñ Ñ‚Ð¾1ру 1то2Ñ€1ш то1Ñ2н то1Ñ2п2 то1Ñ2ц 2Ñ‚1о2Ñ‚1д то1Ñ‚ то3Ñ‚1к2 1то1щ 2Ñ‚1п2 тпа1Ñ‚ Ñ‚1Ñ€2аг2а тра1г 2Ñ‚1ра1ж 2Ñ‚2Ñ€1б 2трв 2Ñ‚2Ñ€1г 2Ñ‚2Ñ€1д тр1до2 Ñ‚1ре1а 1тре1бо тр2еб 1тре1б2у Ñ‚1ре1бь1 Ñ‚1ре1ве Ñ‚1ре2в1ш Ñ‚1ре1г Ñ‚1ред Ñ‚1ре1е Ñ‚1ре1за1 Ñ‚1рез1н тре2п1л тре1п 3тре2Ñ Ñ‚Ñ€Ðµ1Ñ1к Ñ‚1ре1ÑÑ‚ Ñ‚1ре1ту 3Ñ‚2ре2Ñ… Ñ‚1ре1ц Ñ‚2ре2шь1 тре1ш Ñ‚1ре1ÑŽ 1тр2и1б2 Ñ‚1рив тр2и2г1л три1г Ñ‚1ри1л Ñ‚1ри1м 4Ñ‚1ри2н1Ñ2 тр2ин три1о Ñ‚1ри1Ñ‚ три3Ñ„ Ñ‚1ри1щ 2Ñ‚2Ñ€1м 2Ñ‚2Ñ€1н Ñ‚1рогл тро1г2 Ñ‚1роид тро3и 2тр2о2й1 тро3пл тро1п Ñ‚1рор Ñ‚1ро1Ñо тро3Ñ‚ 4Ñ‚3ро1ц 2тр2о1ÑŽ 2Ñ‚2Ñ€1п 2Ñ‚2Ñ€1Ñ€ 1труб Ñ‚2руд 2трук Ñ‚2ру1м Ñ‚2рут 2Ñ‚2Ñ€1Ñ„ 2Ñ‚2Ñ€1щ 2Ñ‚2ръ1 Ñ‚1ры1 Ñ‚1Ñ€8Ñ. Ñ‚1Ñ€Ñв 2Ñ‚1Ñ€Ñд Ñ‚1Ñ€Ñ1е Ñ‚1Ñ€Ñ1ж Ñ‚1Ñ€Ñ2й1 Ñ‚3Ñ€Ñ1к Ñ‚1Ñ€ÑÑ‚ Ñ‚1Ñ€Ñ1щ Ñ‚1Ñ€2Ñ1Ñ 4Ñ‚1Ñ2 Ñ‚2Ñб2 Ñ‚2Ñ3д2 Ñ‚Ñе1п2 Ñ‚1Ñ2е Ñ‚2Ñ3м Ñ‚2Ñ3п2 2Ñ‚1Ñ‚ Ñ‚2Ñ‚1м2 ту2гр ту1г ту2жин ту1ж 2Ñ‚1у2пр ту1п ту1Ñ2л ту1ÑÑ‚ ту2Ñ„1л ту1Ñ„ 1туша ту1ш 1тушо 1ту2шь1 1ту1щ 2Ñ‚1Ñ„ 2Ñ‚1Ñ… 4Ñ‚1ц 2Ñ‚1ч 2Ñ‚1ш2 2Ñ‚1щ 2тъ1 ты2г1 ты1 ты2Ñ1к 2ть1 4Ñ‚8ÑŒ. 3ть2е 3ть2и1 ть2м 4тьт ть2ÑŽ1 2Ñ‚1Ñ Ñ‚2ÑŽ тю1Ñ‚ 1Ñ‚Ñ1г 1Ñ‚Ñ1ж 1Ñ‚Ñ1п 2Ñ‚Ñ2ч у1а у2а1ле у2Ð°Ñ Ñƒ3бел у1бе убо1д у1бо убоÑ2 уб1Ñ€ 1убра у1б3Ñ€2ÑŽ 1у2быт у1бы1 у1в8е. у1ви ув2л у1во у1ву у2гв у1г у2гл у2гн уг2на уг2не уг1ре уг1Ñ€Ñ ÑƒÐ´Ð°1Ñ Ñƒ1да уд2в2 уд1ра1м уд1ро у3ду у1е уе2д уе2л уе1Ñ ÑƒÐµ2Ñ1к у2еÑ2л уе2Ñ… у2ж1ж у1ж у1з2в у1зо узо3п у1и у1ка ук1в у1ки у1к2о уко1б у1к2у1 у1ла у1ле у1лу у1лых улы1 у1л2ÑŽ у2мч у1м у3на ун2д1Ñ€ у2н1д у1нь1 у1о уо2б уо2в у2о1за1 уо2к уо2п уо2Ñ ÑƒÐ¾1ÑÑ‚1 уо2Ñ‚1 уо2Ñ„ у2пл у1п уп1л2ÑŽ у3про у1ра у1ре уре2Ñ‚3Ñ€ у1ри ур1ке3 у2Ñ€1к у1ро у2род уро2д1л урт2Ñ€ у2Ñ€1Ñ‚ у3ру у1ры1 у1Ñ€2ÑŽ у1Ñ€Ñ Ñƒ2Ñа1д у1Ñа у1Ñ1г2 уÑ1ка уÑ1ки уÑк3л уÑ1ко1м уÑк2о у1Ñк2Ñ€ уÑ1к8у. уÑк2у уÑ2л уÑла4ж3 уÑ3ли у1Ñ2м у2Ñ1н уÑ2п2 у2Ñ3Ñ Ñƒ1Ñ2Ñ‚2е у1ÑÑ‚Ñ Ñƒ1Ñ1Ñ„ 2уÑ1ц у2Ñч2 у2ÑÑŒ1 у3ÑÑŒ2Ñ Ñƒ1та у3тер у1Ñ‚2е у1ти ут2Ð»Ñ Ñƒ2Ñ‚1л у1то уто3п2Ñ2 уто1п ут1ри у1ту у1ты1 у3ть2е у2ть1 у3ть2ÑŽ1 1ут2ÑŽ у1Ñ‚Ñ Ñƒ1у уу1г2 уу2Ñ Ñƒ3Ñ„4и у1Ñ„ уф1л уф2Ð»Ñ Ñƒ2фр ух1а2д у1ха уха2Ñ‚ у2Ñ…2в у3Ñ…4во ух1л ух3Ð»Ñ ÑƒÑ…1Ñ€ у2ч2еб у1че 1учр у1чь1 у3ше у1ш у3ши у2шл уш1ла у2ш2п2 2у1Ñ Ñƒ1Ñ ÑƒÑ2з 1Ñ„ фа2б1 фа2гн фа1г фа1зо фа2н2д фанд1Ñ€ фа1тр фа2Ñ… 3фа1ш фа1Ñ1 2Ñ„1б 2Ñ„1в 2Ñ„1г 2Ñ„1д фев1Ñ€ фед1Ñ€ Ñ„2е1о3 фе2Ñ1к Ñ„4и фиа2к1 фи1а Ñ„2и2гл фи1г фи2ж фи2зо фи2нин фи1ни фи1о 3фи1Ñ‚ 2Ñ„1к Ñ„2ла Ñ„2ли Ñ„2ло 2Ñ„1м 2Ñ„1н 2Ñ„1объ1 3фон фо2Ñ€2в 2Ñ„1о2Ñ€1г фор3тр фо2Ñ€1Ñ‚ фо1ру фоÑ1к 3фо1Ñ‚ фото3п Ñ„1ра1б фра1з фра1Ñ Ñ„1рат Ñ„2рен фре2Ñ Ñ„1ри Ñ„2ри1ж Ñ„2риз Ñ„1ро Ñ„2рон Ñ„1ру 2Ñ„3Ñ 2Ñ„1Ñ‚ Ñ„2Ñ‚1м2 Ñ„2тор 2Ñ„1у2п фу3Ñ‚1л 2фу1Ñ„ 2Ñ„1Ñ„ 2Ñ„1ч 2Ñ„1ш2 2Ñ„8ÑŒ. фь1 Ñ„2ÑŽ1 1ха ха2б1л ха1б ха2д 2Ñ…1а1к ха2н2д Ñ…2а1о3 Ñ…1а2Ñ€1ш 2Ñ…1б 1Ñ…2в 2Ñ…3ве 2Ñ…3ви Ñ…3вы1 2Ñ…1г Ñ…3д2 1хе Ñ…2ео3 Ñ…1з2 1хи хиат1 хи1а хи1е2 2Ñ…1и1зы1 хи1Ñ2 Ñ…1к2 Ñ…1лав Ñ…1Ð»Ð°Ñ Ñ…1лат Ñ…1ла1ц 1хл2еб Ñ…2Ð»ÐµÑ Ñ…1лет Ñ…3л8о. Ñ…1ло Ñ…2ло1п 1Ñ…2лор Ñ…1лу 1Ñ…2му Ñ…1м 2Ñ…1н 3Ñ…2ны1 1хо 2Ñ…1о2к хо1п2 хо2пе1 хо2пор хо1ру Ñ…1оÑ2м 2Ñ…1оÑ1н хо1Ñ„2 хох1л хо1Ñ2 Ñ…1п2 Ñ…1раз 1хран Ñ…1ра1Ñ2 Ñ…1ре2й1 хри2пл Ñ…Ñ€2и1п Ñ…2ри1Ñ2 Ñ…1ро1в 1хро1м хро2м2ч Ñ…1ры1 Ñ…1Ñ€Ñ 2Ñ…1Ñ2 2Ñ…1Ñ‚ 1Ñ…8у. Ñ…1у2г 2ху1е 2ху2й1 1хун Ñ…1у2Ñ€ ху3ра 1Ñ…ÑƒÑ 1ху1ш 2ху1ÑŽ Ñ…1Ñ…2 2Ñ…1ч2 2Ñ…1ш Ñ…ÑŒ2ÑŽ1 Ñ…ÑŒ1 1ц ца1 3ц8а. 3ца1м ца2пл ца1п 3цах 2ц1б ц2ве 2ц1вы1 2ц1г 2ц1д це1з це1к це1о1Ñ‚ ц2ео це2п1л це1п ц2еÑ2л це1Ñ‚ 2цетат це1та 2ц1з ци1 ци2к1 цик3л ци2ол ц2и1п2 ци2Ñ1к ци1у3 ци2Ñ„1Ñ€ ци1Ñ„ 2ц1к2 2ц1л 2ц1м 2ц1н ц1о2б 2ц1о2д 2ц1о1Ñ‚ 2ц1п2 2ц1Ñ€ 2ц1Ñ 2ц1Ñ‚ 3цу 2ц1ц 2ц3ш2 3цы1 цы2п цып3л ц1ÑŽ1 1ча ча2др ча1д ча2д2ц ча2е1во ча1е ча2е1вы1 ча2ер чаÑÑ‚1в ча1Ñ2Ñ‚2е ча1Ñту ча1ÑÑ‚Ñ 3ча1то 3ча1ты1 2ч1б ч1в 2ч1д 1че че1в1л че2гл че1г ч2е1о че4Ñ€2Ñ Ñ‡ÐµÑ€ÑÑ‚1 ч2е1Ñл ч2ж чжо2 1чи 3чи1к 3чи1ц 2ч1к 1ч2ла ч2ле ч3ле1г ч3ле1ж 2ч1ли ч2л8и. 1ч2ло 1ч1м 2чма 2чме ч2мо 2ч1н 3чо 2ч1Ñ 2ч1та ч2Ñ‚2е 2чт1м2 1чу 3чук ч2Ñ… 2ч1ч 2ч8ÑŒ. чь1 1чь2е 1чь2и1 2Ñ‡ÑŒÑ 2чьт 1чь2ÑŽ 1чь2Ñ 1ш ша2б1л ша1б ша2гн ша1г ша2г1Ñ€ ша2др ша1д шан2кр ша2н1к ша2Ñ€3Ñ‚2 ша1ÑÑ‚ ша1тро 2ш1б ш2в ш3вен ше2гл ше1г ше1к ш2е1о2 ше3пл ше1п ше1Ñ2 ши2б1л ш2и1б ши2пл ш2и1п ши2Ñ„1Ñ€ ши1Ñ„ 2ш1к2 3ш2кол шк2о 2ш1ле2й1 2ш1лен ш2л8и. ш1ли 2шлив 2шли1л ш2лин ш2Ð»Ð¸Ñ Ñˆ2ли1Ñ‚2е шли1Ñ‚ ш2ли1Ñ„ ш2л8о. ш1ло 2шло1в ш2ло1г2 ш1лы1 ш2л2ÑŽ 2шлÑ1е ш1Ð»Ñ 2шлÑ1к ш2лÑ1п 2шлÑÑ‚ 2шлÑч 2шлÑ1ÑŽ 2ш1м 3ш2мы1 4ш3м8Ñ‹. 2ш1н 4ш1ни ш2нур ш1ну ш2п2 ш3пр 2ш1Ñ€ 2ш1Ñ Ñˆ1ти 2ш4Ñ‚1Ñ2 шу2ев шу1е шуÑÑ‚1 2ш1Ñ„ ш1Ñ… 2ш1ц 2ш1ч 2шь1 4ш8ÑŒ. 3шь2е 3шь2и1 3шь2ÑŽ 3шь2Ñ Ñˆ2ÑŽ1 1щ 2щ3в2 ще1б2л щ2еб ще2гл ще1г щед1Ñ€ ще1и2 щеиÑ1 ще1Ñ Ñ‰Ðµ1Ñ… ще1ш2 ще3ш1к2 щи2п1л щ2и1п 2щ1м 2щ1н 2щ1Ñ€ 2щ8ÑŒ. щь1 ÑŠ1 ъе2г ъе2д ъе3до ъе2л ÑŠ2е2Ñ€ ъе2Ñ ÑŠÐµ2хи ÑŠ1ÑŽ2 ÑŠÑ2 ÑŠÑ3н Ñ‹1 Ñ‹2б1л Ñ‹3г2а Ñ‹1г Ñ‹3г2и ыг2л Ñ‹2гн Ñ‹2д1л ыд2ре Ñ‹2д1ро Ñ‹2д1Ñ€Ñ Ñ‹Ðµ2 Ñ‹3ж2д Ñ‹1ж ыз2ва ыз2д Ñ‹2з1л Ñ‹2з1н ыз2на ыи2 ыи1г1 Ñ‹2к1в ык2л Ñ‹2к3ло Ñ‹1ко1з ык2о Ñ‹2к1Ñ Ñ‹2ль1 Ñ‹2мч Ñ‹1м ыно1Ñ3л Ñ‹1но Ñ‹3по Ñ‹1п ыра2Ñ3 ыр2в ыре2Ñ… Ñ‹3Ñа Ñ‹3Ñ2е Ñ‹Ñ1ки Ñ‹Ñ1к2у Ñ‹2Ñ1н Ñ‹3Ñо Ñ‹Ñ2п2 Ñ‹2Ñ1Ñ…2 Ñ‹Ñ2ч2 Ñ‹2Ñ1ш2 Ñ‹2Ñ‚1ви ыт2Ñ€ Ñ‹3ть2ÑŽ1 Ñ‹2ть1 Ñ‹3ть2Ñ Ñ‹Ñƒ2 Ñ‹2ш1л Ñ‹1ш Ñ‹3шь1 ÑŒ1 ьб2 ÑŒ2Ð²Ñ ÑŒ2д1ц ÑŒ2е ье1зо ье1к ье2Ñ1к ÑŒ2з1н ÑŒ2и1 ÑŒ2кл ьми3д ÑŒ1м ьми3к ьмо1 ÑŒ3н2е2о2 ÑŒ1не ÑŒ2о ÑŒ2п1л ÑŒ1п ÑŒ3п2то ÑŒ2п1Ñ‚ ÑŒÑ2к ÑŒ2Ñ1н ÑŒ2Ñти ÑŒ2ÑÑ‚Ñ ÑŒ2Ñ‚1а2м1п ьта1м ьти3м ÑŒ2Ñ‚1м2 ÑŒ2то1Ñ‚ ÑŒ2тра1б ьт2ре ьт2ру ьт2ры1 ÑŒ1хо2 ьхоз1 ÑŒ2ща ÑŒ1щ ÑŒ2ще ÑŒ2щу ÑŒ2ÑŽ ÑŒ2Ñ ÑŒÑ1в ÑŒ3Ñ2г3Ñ2 ÑŒÑ1г 1Ñ Ñ1в Ñв1Ñ€ 2Ñ1г Ñд1Ñ€ Ñк1л Ñ2кÑ1 Ñк2ÑÑ‚ Ñл2е1о Ñ2м Ñ3ма Ñ2н Ñ3нь1 Ñо2з Ñ2п Ñпи3к Ñ1ре Ñ1ри Ñри4Ñ‚2Ñ€ Ñри1Ñ‚ Ñро1Ñ2 Ñ1ру Ñ1ры1 ÑÑ1 ÑÑк2 ÑÑ3м Ñ2Ñо ÑÑ3Ñ‚2е ÑÑ2Ñ‚1Ñ€ Ñ2Ñ‚2е Ñтил1а Ñти1л ÑÑ‚1ра Ñ2Ñ„ ÑÑ…2 Ñ1хо3 Ñ2ц ÑÑ2 1ÑŽ ÑŽ1а ÑŽ1б ÑŽ2б1в ÑŽ2б1л ÑŽ2б1ре ÑŽ1в ÑŽ1дь1 ÑŽ1е ÑŽ2з2г юзи2к ÑŽ1зи ÑŽ1зо ÑŽ1и ÑŽ2идал юи1да ÑŽ1к ÑŽ2к1в ÑŽ1ла ÑŽ1ле ÑŽ2ли 1ÑŽ1л2ÑŽ 2ÑŽ1м ÑŽ2мч ÑŽ2нь1 ÑŽ1о1 ÑŽ1ра ÑŽ1ре юре4м ÑŽ1ри юри2Ñ1к юри1Ñ2 ÑŽ1ро ÑŽ1ру ÑŽ1ры1 ÑŽ2Ñ1к ÑŽ1Ñта ÑŽ1Ñ2Ñ‚2е ÑŽ1Ñто ÑŽ1ÑÑ‚Ñ ÑŽ1ти ÑŽ1то ÑŽ1ту ÑŽ1ты1 ÑŽ1Ñ… юха1Ñ ÑŽ1ха ÑŽ1ч ÑŽ2щь1 ÑŽ1щ ÑŽ1Ñ Ñ2бр Ñб1ра Ñб3ре Ñб1ри Ñ1б3Ñ€2ÑŽ 3Ñви2ÐºÑ Ñви1к Ñ1во Ñ1ву Ñ1в2Ñ… Ñ2г1л Ñ1г Ñ2гн Ñд1в2 Ñд1Ñ€ Ñ1е Ñз2гн Ñ2з1г Ñ1зо Ñ1и Ñ1к Ñ2к1в Ñ2к1л Ñ2к1Ñ Ñ1л Ñ2ль1 Ñм2б3л Ñ1м Ñ4м1б Ñ2мь1 Ñ3на Ñ2н1Ñ2 Ñ1ра Ñ1ри Ñ1ро Ñ1рь1 ÑÑ1к ÑÑ1л ÑÑ2Ñ‚ ÑÑÑ‚3в Ñ1Ñто ÑÑÑ‚1Ñ€ Ñ1та ÑÑ‚3в Ñ3ти Ñти1з Ñ1то Ñ1ту Ñ1ты1 Ñ3ть2ÑŽ1 Ñ2ть1 Ñ3ть2Ñ Ñ1Ñ‚Ñ Ñ1у ÑÑ…1л Ñ1ху Ñце1 Ñ1ц Ñ2шл Ñ1ш 2Ñ8ÑŽ. Ñ1ÑŽ 2Ñ1Ñ .бо2дра .1бо .вÑÑ‚2Ñ€ .2в1Ñ2 .доб2рел .доб1Ñ€ .до1б2ри .об2л1ÑŽ1ÑŽ .о1бл2ÑŽ .об1л .об2ре1е .об1Ñ€ .об2ре2й1 .об2ре1ÑŽ .об2рив .об2ри1л .об2ри1Ñ‚ .па2н1Ð¸Ñ .па1ни .по3м2ну .по1м .по2м1н .реа2н .ре1а .ро2Ñ3пи .ро1Ñ2п2 .Ñо2пла .1Ñо .Ñо1п а2нь1ш атро2Ñк без1у2Ñ Ð±Ðµ1зу бино2Ñк бино1Ñ Ð±Ð¸1но виз2гн ви2з1г выб2ре гÑÑ‚4Ñ€ ди1Ñ2ло1в диÑ1ло доÑ2Ð½Ñ Ð´Ñ€Ð¾2ж3ж 2д1руже2й1 е2мьд емь1 е2о3пла1то е2о3по1зи ере3Ñ2Ñо ере2Ñ1Ñ 4ж3ди1к 4ж3ди1ч заи2л за1и зао2з з2а1о 2з1а2хав за1Ñ…2а заю2л за1ÑŽ з2Ñ€ÑÑ‚ зу2мь1 6з8ÑŒ. и2л1а2мин ила1м илло3к2 и2л1л ил1ло й2кь1 ла2б1Ñ€ лу3Ñ4н ме2ди2н1Ñ2 ме1ди 1ме2д1о2Ñ2м ме1до медо1Ñ 1мети2л1а2м ме1ти мети1л миÑ4Ñ3н ми4Ñ1Ñ Ð½Ð°Ñ€2ват не2о3ре ни1Ñ2кол ниÑ1к ниÑк2о ни4Ñ8ÑŒ. ниÑÑŒ1 но4л1а2мин но3ла нола1м н2тра2Ñ1Ñ Ð¾2д1о2бол одо1бо о4ж3дев ож1де о1и2Ñ1тр ои1ÑÑ‚ ойÑ4ко1в ойÑк2о о2м3ч8е. ом1че они3л2а1м о1ни онила2 они1л он2трат онт2ра о2Ð¿Ð»ÑŽÑ Ð¾Ñо4м3н о1Ñо оÑо3м2 оти4д1н оти3д2 пере1Ñ2н пе1ре по2до1де подо1д2 по2д1у2ро по1ду пое2ж по2Ñтин по1ÑÑ‚ по1Ñти пре3м2но пре1м пре2м1н приче2Ñ1к при1ч при1че пти4д1н пти3д2 редо4пл реж4ди рни3л2а3м Ñ€1ни рнила2 рни1л роб2ле1ÑŽ 2Ñбрук1 Ñб1ру Ñо2ÑÑ‚1ри1Ñ‚ Ñо1ÑÑ‚ Ñо3Ñ‚2кал Ñо2Ñ‚1к2 2Ñтч8е. Ñ2Ñ‚1ч ÑÑ‚1че 2Ñ4тьт ÑÑ‹2ми1Ñ‚ ÑÑ‹1м 2ÑÑŒÑ8Ñ. ÑÑŒ1ÑÑ 6Ñ‚8Ñ€. тро2ÐµÑ‚ÐµÑ Ñ‚Ñ€Ð¾1е трое1Ñ‚2е 6ху8Ñ. ху1Ñ Ñ‹2рь1м ырь1 Ñ‹Ñ2Ð²Ñ ÑŒÐ±Ð°Ñ‚2 ÑŒ1ба а1вё а2д1вё а1Ñ‘ аз3вёз аз1вё а1лё 2алёк 2амёт ам2нёт ам1нё а1рё аÑ3тё1м аÑ2Ñ‚2Ñ‘ а3ть2Ñ‘ 1бё бё2д1Ñ€ б3лён б2лё2Ñ1к б2лю1Ñ‘ б1рёк б2рё1м б2рёх 1ве1Ñ‘ 3ве3зё вёд1Ñ€ 1вёз 2вё2Ñ€1д 1Ð²Ñ‘Ñ Ð²2лёк в2лёт 1вмё в2Ð½Ñ‘Ñ Ð²1нё 2в1рён 3в1Ñ2Ñ‘3 1вь2Ñ‘ г1лё г2лёт г2нёв г1нё г3нён г2но1Ñ‘ д1вё 1дё .доб2рёл 2доплё до2прё д1рё д2Ñ€2ёб 2д3рё1ж д2рё1м 1дрёма 1дрёмы1 2д3рён дъё2м 1дь2Ñ‘ еб1рён е1вё 2евёр 2е1врё е2г1лё е1Ñ‘ 2ежё е3зё е1лё 2епё1 ер1вё е1рё ерё3до ерё1к2 еÑ2чёт еÑ1чё ет1вё е3ть2Ñ‘ 2ёб Ñ‘1бра ёб1ры1 Ñ‘1ве Ñ‘1во 2Ñ‘1вре Ñ‘1ву Ñ‘1дру 2Ñ‘3ду1ш Ñ‘1ду 2ёже Ñ‘1ж Ñ‘3зе ёз1о2г2 Ñ‘1зо3м2 Ñ‘1ка Ñ‘1ки 2Ñ‘1к2о 2Ñ‘1кр ёк2ро Ñ‘1к2у Ñ‘1ла Ñ‘1ле Ñ‘1лу Ñ‘1лы1 2ёму1ж Ñ‘1м Ñ‘2мч Ñ‘3на ён2д1Ñ€ Ñ‘2н1д Ñ‘2н1Ñ2 ёпат2 Ñ‘1п 2ёпе1 Ñ‘2пл Ñ‘3пла ёп1лу Ñ‘3плы1 Ñ‘4п1н 2ёпо Ñ‘4п1Ñ‚ Ñ‘1ра Ñ‘1ре Ñ‘3Ñ€8е. Ñ‘1ри Ñ‘1ро ёр3Ñ2к Ñ‘4Ñ€1Ñ Ñ‘1ру Ñ‘1ры1 Ñ‘3Ñ2а Ñ‘1Ñк Ñ‘2Ñ1к8а. Ñ‘2Ñ1ке Ñ‘4Ñ1к8у. Ñ‘Ñк2у 2Ñ‘Ñл Ñ‘3Ñо Ñ‘1ÑÑ‚ Ñ‘Ñ2Ñ‚2ан Ñ‘3Ñту Ñ‘1та 2ётеч Ñ‘1Ñ‚2е Ñ‘1ти Ñ‘1то ёто1Ñ Ñ‘Ñ‚1Ñ€ Ñ‘1ту Ñ‘1ты1 Ñ‘1Ñ‚2ÑŽ Ñ‘1Ñ‚Ñ Ñ‘Ñ…Ð°2Ñ‚ Ñ‘1ха ёх1а1то ёх3вал Ñ‘1Ñ…2в ёх1ва ёх3ло1п ёх1ло ёх1опо Ñ‘1хо ёхо1п2 ёх1ру 3жёв жё1Ñ2 ж2жё за3м1нё з1вё з2вёз 1зё з2на1Ñ‘ 2з1нё 1з2о3рё з2о1Ñ‚2Ñ‘ зот2рё 3зу1Ñ‘ зъё2м 2зымё 2и1вё иг1рён и1Ñ‘ их1рё 1ка1Ñ‘ 1кё к3лён к2ро1Ñ‘ 3ку1Ñ‘ ла1Ñ2Ñ‚2Ñ‘ лё3до лё1з2о3 лёк1л 1лён лё2Ñк лё4Ñка 1лёх 2лоён ло1Ñ‘ 1лу1Ñ‘ 3ль2Ñ‘ 1ль2щё 3м2нё1ш м1нё 3м2щё нд2рё не3Ñ‘ 1нё н2Ñ‘1б2 3н2омё 1нь2Ñ‘ од3Ñ€2ёб од1рё о1Ñ‘ оё2жи оё1ж о1лё 2омё о3м2нё1м ом1нё о3м2нёт о2п1лё2й1 о1рё о2Ñ1кё от1вё 2о3тёк о1Ñ‚2Ñ‘ о3тёр от1рёк от1рё1ш о3фё пё1 пё2ÑÑ‚1Ñ€ пё1ÑÑ‚ 2п1лён п2лё2н1к плё2Ñ1к п1лё1ÑŽ поё2ж по1Ñ‘ 3прёт причё2Ñ1к при1чё Ñ€2блё 1рвёт .рё2бр .Ñ€2ёб 1рё2з1к рё1з1на рёз1н 1рё1зо рё1з2у 1рё2к1ш 3рёмо рё1м 1рё2н1к рё3Ñта рё1ÑÑ‚ рё3Ñто род2лё роё2м ро1Ñ‘ 1рь2Ñ‘ Ñ2дё Ñе3Ñ2Ñ‚2Ñ‘ 1Ñ2Ñ‘ ÑÑ‘2кÑ4 ÑÑ‘2ÑÑ‚ ÑÑ‘ÑÑ‚1Ñ€ 2Ñ3ку1Ñ‘ Ñ1лёт Ñ2Ñ‚2Ñ‘ 1Ñтёл 1Ñтё8н. Ñ3тё8Ñ‚. Ñ3тё1Ñ‚2е Ñтё3Ñ… Ñ3тё1ш Ñ3Ñ‚2лё Ñчё2Ñ1к Ñ1чё 1ÑÑŒ2Ñ‘ Ñ‚1вёл Ñ‚1во1Ñ‘ 1Ñ‚2Ñ‘ тё2гн тё1г тё1зо 3тё1ка тёк1л 3тё2к1ш тё4п1л тё1п тё2Ñ€3к тё2Ñка тё1Ñк тё2Ñ1ки тё2Ñ1к2о тё2Ñк2у тё2хо 3Ñ‚2кёт Ñ‚1кё Ñ‚1ре1вё 3Ñ‚2рё2Ñ… Ñ‚2рё2шь1 трё1ш тро2ÐµÑ‚Ñ‘Ñ Ñ‚Ñ€Ð¾Ðµ1Ñ‚2Ñ‘ 3ть2Ñ‘ уг2нё уг1рё .у1Ñ‘2 у1Ñ‘ у1лё у1рё у1Ñ2Ñ‚2Ñ‘ у3тёр у1Ñ‚2Ñ‘ у3ть2Ñ‘ у2ч2ёб у1чё у3шё 2Ñ…3вё 1хл2ёб Ñ…2Ð»Ñ‘Ñ Ñ†2вё 1чё чё4Ñ€2Ñ Ñ‡Ñ‘Ñ€ÑÑ‚1 .чё2Ñ1к .1чё ч2Ñ‚2Ñ‘ 1чь2Ñ‘ 2ш1лён 3шь2Ñ‘ ÑŠ2Ñ‘2Ñ€ ыд2рё ырё2Ñ… Ñ‹3Ñ2Ñ‘ ÑŒ2Ñ‘ ьё1зо ÑŒ2щё ÑŽ1Ñ‘ Ñб3рё .1ж8 .2й8 .к8 .1Ñ„8 .1ц8 .1ш8 .1щ8 .1Ñ8 .Ñ8 8а. 8б. 8в. 8г. 8д. 8е. 8ж. 8з. 8и. 8й. 8к. 8л. 8м. 8н. 8о. 8п. 8Ñ€. 8Ñ. 8Ñ‚. 8у. 8Ñ„. 8Ñ…. 8ц. 8ч. 8ш. 8щ. 8ÑŠ. 8Ñ‹. 8ÑŒ. 8Ñ. 8ÑŽ. 8Ñ. 8д8н. .бизне8Ñ9мен .биз1н .би2з1не .бизне1Ñ4м .буйнакÑ8к8е. .1б2у .бу2й1 .буй1на .буйна1к .буйна2к1Ñ .буйнакÑ1ке .2в1б8 у8тьÑ8Ñ. уть1ÑÑ .вздре8мне4ш8ÑŒ. .1в2з2 .взд2 .взд1ре .взд2ре1м .вздре2м3н .вздре3м2не1ш .вздрем1не .вздремне2шь1 .вздре8мнё4ш8ÑŒ. .вздре3м2нё1ш .вздрем1нё .вздремнё2шь1 .водоÑ8ливо8м. .1вод .во1до .водо1Ñ .водо1Ñ2л .водоÑ1ли .водоÑ3л2и1во .водоÑливо3м2 .волжÑ8к8е. .вол1ж .вол2ж1Ñ .волжÑ1ке 8п4л8ÑŒ. пль1 .во8ÑÑ‚1Ñ€8а. .во2Ñтр .во1ÑÑ‚ .во3Ñтра .во9Ñ‚8ка2ть1 .во1Ñ‚ .во2Ñ‚1к2 .вот1кат .во9Ñ‚8ке1м .вот1ке .во9Ñ‚8кё1м .вот1кё .во9Ñ‚8ке2шь1 .вотке1ш .во9Ñ‚8кё2шь1 .воткё1ш .во9Ñ‚8к2у .впо8л9о8борот8а. .2в1п2 .впо3ло .вполо1бо .вполобо1ро .вполоборо1Ñ‚ .впо8л9у8Ñ…8а. .впо1лу .вполу1ха .вÑеволожÑ8к8е. .3в1Ñ2е3 .вÑе1во .вÑ2евол .вÑево3ло .вÑеволо1ж .вÑеволо2ж1Ñ .вÑеволожÑ1ке .2в1ц8 8Ñп8Ñ. Ñ2п1Ñ2 .гаре8мног8о. .г2а .га1ре .гаре3м1но .гаре1м .гаре2м1н .1гаремно1г2 .голод8ране8ц. .г2ол .го3ло .голо1др .голод1ра1не .голодране1ц .гр8 .дву9з8убе8ц. .дв2 .д1ву1з .дву1зу .дву2з1у2бе .двузу3бе1ц .до9б8рее1м .добре1е .до9б8реет .до9б8рее2шь1 .добрее1ш .до9б8ре1ÑŽ .до9б8ре1Ñти .добре1ÑÑ‚ .до9б8родÑÑ‚ .добро1Ð´Ñ .до9б8роÑÑŒ1 .до9б8роÑÑÑ‚ .добро1ÑÑ .до9б8рошу .добро1ш .до9м8ну .до1м .до2м1н .до8п9пе4л8ÑŒ. .до2п1п2 .доппе1 .доппе2ль1 .дра8Ñ…9м8у. .д1рах .дра1Ñ…2му .драх1м .дрей8Ñ„1л8ÑŽ. .д1ре .дре2й1 .дрей1Ñ„ .дрейфл2ÑŽ .дрей8фьт8е. .дрейфь1 .дрейфь1Ñ‚2е .едино9ж8д8Ñ‹. .е1ди .еди1но .едино1ж .едино2ж1д .единож1ды1 .за8в9Ñе8кторо8м. .за3в2Ñ2е3 .за2в1Ñ2 .завÑе2к1Ñ‚ .завÑекто1ро .завÑекторо1м .зам8Ñ€8у. .за9ч8ли .за1ч .за2чл .изд8рев1л8е. .1из1д .изд1ре .издрев1л .изот8Ñ€8у. .и1зо .изо1Ñ‚ .инко8г9нит8о. .и2н1к .инк2о .инко1г2 .инког1ни .инкогни1Ñ‚ .каза9ш8е8к. .каза4ш3 .ка1за1 .казаше1к .кольдк8ремо8м. .к2о .ко2льд .коль1 .коль2д1к .кольдк3ремо .кольдкре1м .кольдкре1мо3м2 .кор8нпапи8Ñ€. .ко2Ñ€1н .корн3п2 .корнпа1п .корнпапи1Ñ€ 8д8з. .ликбе9з8о8м. .1ли .ли1к .ли2к1б .лик1бе .лик3бе2з .ликбез1о2 .ликбе1зо3м2 .лоша8дьм8и. .1ло .ло1ш .лоша1д .лошадь1 .лошадь1м .лю8дьм8и. .лю1дь1 .людь1м .люÑ9Ñ8о8м. .лю1Ñ .люÑÑ1 .люÑ2Ñо .люÑÑо3м2 .маз8у9Ñ‚8е. .ма1зу .маз1у2Ñ‚2е .мети9л8а8м. .1мети2л1а2м .ме1ти .мети1л .мети9л8ам8и. .многа9ж8д8Ñ‹. .2м1н .м1но .мно1г2 .мног2а .многа1ж .многа2ж1д .многаж1ды1 .мор8щь1Ñ‚2е .мо2Ñ€1щ .морщь1 .набек8ре8н8ÑŒ. .на1б .на1бе .наб2е1кр .набек1рень1 .на9в8Ñкидк8у. .на2в1Ñ2 .на4в3Ñки .навÑки2д1к .навÑкидк2у .на9в8Ñтреч8у. .навÑтре1чу 8г8л. .наи8зу8Ñ4Ñ‚8ÑŒ. .на1и .наи1зу .наизуÑ4ть1 .на9и8Ñ9коÑо8к. .на2и1Ñ2 .наиÑ1к .наиÑк2о .наиÑ1ÐºÐ¾Ñ .наиÑко1Ñо .наиÑкоÑо1к .на8имене8е. .наи1м .наиме1не .наимене3е .на9и8Ñ9ко2Ñ8ÑŒ. .наиÑкоÑÑŒ1 .нао8боро8Ñ‚. .н2а1о .нао1бо .наобо1ро .наоборо1Ñ‚ .нао8Ñ‚9ре8з. .нао1Ñ‚ .наÑу8пьÑ8Ñ. .на1Ñ2 .на1Ñу .наÑу1п .наÑупь1 .наÑупь1ÑÑ .нау8га8д. .на1у .нау1г .науг2а .науга1д .нау8гольни8к. .науг2ол .науго2льн .науголь1 .науголь1ни .наугольни1к .нео8ÑÑ‚1Ñ€8а. .3н2е1о2 .неоÑ2 .неоÑÑ‚1Ñ€ .нео1ÑÑ‚ .нео3Ñтра .не8Ñла2Ñ8ÑŒ. .неÑ1Ð»Ð°Ñ .неÑлаÑÑŒ1 .не8Ñли2Ñ8ÑŒ. .неÑ1ли .неÑлиÑÑŒ1 .не8тт8о. .не2Ñ‚1Ñ‚ .неу8д8у. .3не1у2 .неу3ду .оби8дьÑ8Ñ. .о1б2и .оби1дь1 .обидь1ÑÑ .обош8ло2Ñ8ÑŒ. .обо1ш .обош1ло .обошлоÑÑŒ1 .обраÑ8Ñ‚8и. .о1Ð±Ñ€Ð°Ñ .обраÑ1Ñ‚ .обра1Ñти .однаж8д8Ñ‹. .о2д1н .од3на .одна3ж1д .одна1ж .однаж1ды1 .оÑла8б1л8а. .о1Ñ2л .оÑла2б1л .оÑла1б .оÑла3бла .ото9м8ÑÑ‚Ñ8Ñ‚. .о2то2м1Ñ .ото1м .ото9м8щ8у. .ото2м1щ .отот8Ñ€8у. .ото1Ñ‚ .от8Ñ€8у. .от8ру2Ñ8ÑŒ. .отру2ÑÑŒ1 .па8блиÑит8и. .па1б .паб1л .паб1ли .пабли1Ñ2и .паблиÑи1Ñ‚ .па9н8а9ме .па1на .пана1м .пар8а9такÑÐ¸Ñ .па1ра .пар1а2та1к .пара1та .парата2к1Ñ .паратак1Ñ2и .перев8Ñ€8у. .пе1 .пе1ре .пере1вр .переме9ж8а2ть1 .пере1м .переме2ж1ат .переме1ж .переш8л8а. .пере3шл .пере1ш .пи8Ñча8Ñ. .пиÑч2 .пи1Ñ1ча .пиÑча1Ñ .повÑед8неве8н. .по3в2Ñ2 .по3в2Ñ2е3 .повÑе2д1н .повÑед1не .повÑедне1ве .пог8ремо8к. .по1г2 .пог3ремо .погре1м .погремо1к .подот8Ñ€8у. .по1до .подо1Ñ‚ .пои8Ñ9тин8е. .по3и .пои1ÑÑ‚ .пои1Ñти .поиÑти1не .полутора9Ñ8Ñ‚8а. .по1лу .полу1то .полуто1ра .полутора2Ñ3 .полутораÑ1Ñ‚ .полуто1раÑта .полуÑ8вь8ÑŽ. .полу1Ñ .полуÑ1вь2ÑŽ .полуÑвь1 .по9м8ладш8е. .по2м1л .помла1д .помла2д3ш2 .пом8ни .пом8ног8у. .по3м1но .помно1г2 .пом8Ñ€8у. .пол9в8торог8о. .полв1Ñ‚2 .полвто1ро .полвторо1г2 .пол9ш8каф8а. .пол1ш .пол2ш1к2 .полшка1Ñ„ .пона9д8облю2Ñ8ÑŒ. .по3на .пона1д .пона2д1о2б1л .пона1до .понадо1бл2ÑŽ .понадо2б3люÑÑŒ1 .потра8фьт8е. .пот2Ñ€ .по1Ñ‚ .потра1Ñ„ .потрафь1 .потрафь1Ñ‚2е .пре8ж9д8е. .пре3ж2д .пре1ж .преж1де .при8д9Ñ‚8и. .при1 .при3д2 .при2д1Ñ‚ .приш8л8а. .п1ри1ш .приш8ло2Ñ8ÑŒ. .приш1ло .пришлоÑÑŒ1 .прот8Ñ€8у. .про1Ñ‚ .прохла8д3ц8а. .про1хл .прохла1д .прохлад2ц .прохладца1 .2п1Ñ8 .пы8лч8е. .пы1 .пыл1ч .пыл1че .ра8з9о8ремÑ8Ñ. .ра1з2о3ре .разоре1м .разоре2м1Ñ .разорем1ÑÑ .ра8з9о8рёмÑ8Ñ. .ра1з2о3рё .разорё1м .разорё2м1Ñ .разорём1ÑÑ .ра8з9о8рете2Ñ8ÑŒ. .разоре1Ñ‚2е .разоретеÑÑŒ1 .ра8з9о8рёте2Ñ8ÑŒ. .разорё1Ñ‚2е .разорётеÑÑŒ1 .ра8з9о8ретÑ8Ñ. .разоре4Ñ‚1Ñ2 .разорет1ÑÑ .ра8з9о8рётÑ8Ñ. .разорё4Ñ‚1Ñ2 .разорёт1ÑÑ .ра8з9о8решьÑ8Ñ. .разоре1ш .разоре2шь1 .разорешь1ÑÑ .ра8з9о8рёшьÑ8Ñ. .разорё1ш .разорё2шь1 .разорёшь1ÑÑ .разот8Ñ€8у. .разо1Ñ‚ .раз8у9мо8м. .ра1зу .раз1у2мо .разу1м .разу1мо3м2 .рез8влю2Ñ8ÑŒ. .резв1л .рез2вл2ÑŽ .резв1люÑÑŒ1 .Ñ€Ñ1Ñ„8 .4Ñ€1Ñ .Ñану8зе8л. .1Ñа .Ñа2н1уз .Ñа1ну .Ñану1зе .Ñдрей8Ñ„1л8ÑŽ. .1Ñд2 .Ñд1ре .Ñдре2й1 .Ñдрей1Ñ„ .Ñдрейфл2ÑŽ .Ñего9д8н8Ñ. .Ñе1г .Ñего2д1н .Ñегод1Ð½Ñ .Ñме9ж8а8Ñ‚. .Ñ2м .Ñме2ж1ат .Ñме1ж .Ñоб8люÑÑ‚8и. .Ñо1бл2ÑŽ .Ñоб1л .Ñоблю1Ñти .Ñо9л8же4ш8ÑŒ. .Ñол1ж .Ñолже1ш .Ñолже2шь1 .Ñо9л8жё4ш8ÑŒ. .Ñолжё1ш .Ñолжё2шь1 .Ñо8Ñтри8м. .Ñо1ÑÑ‚ .ÑоÑÑ‚1ри1м .Ñо8Ñтри4ш8ÑŒ. .ÑоÑÑ‚1ри1ш .ÑоÑтри2шь1 .Ñо8ÑÑ‚1Ñ€8ÑŽ. .ÑоÑтр2ÑŽ .Ñо8ÑтрÑ8Ñ‚. .ÑоÑÑ‚1Ñ€ÑÑ‚ .Ñо9Ñ‚8ка2ть1 .Ñо1Ñ‚ .Ñо2Ñ‚1к2 .Ñот1кат .Ñо9Ñ‚8ке1м .Ñот1ке .Ñо9Ñ‚8кё1м .Ñот1кё .Ñо9Ñ‚8ке2шь1 .Ñотке1ш .Ñо9Ñ‚8кё2шь1 .Ñоткё1ш .Ñот8к8у. .Ñотк2у .Ñо9Ñ‚8кут .Ñро8Ñ9ла2Ñ8ÑŒ. .1ÑÑ€ .Ñ1ро1Ñ2л .ÑроÑлаÑÑŒ1 .Ñро8Ñ9ли2Ñ8ÑŒ. .ÑроÑ1ли .ÑроÑлиÑÑŒ1 .Ñтре8м9гла8в. .Ñтре1м .Ñтре2м1г2 .Ñтре3м2гл .Ñтремг2лав .та8кж8е. .та1к .так1ж .тверез8о9г8о. .тве1ре .тве1ре1зо .тверез1о2г2 .тверёз8о9г8о. .тве1рё .тве1рё1зо .тверёз1о2г2 .телеа8тель8е. .те1ле .теле1а .телеа1Ñ‚2е .телеате3ль2е .телеатель1 .терноÑ8ливо8м. .те2Ñ€1н .терно3Ñ2л .тер1но .терно2Ñ1ли .терноÑ3л2и1во .терноÑливо3м2 .тро8п3л8ÑŽ. .тро3пл .тро2пл2ÑŽ .тро1п .2ть8 .узу9Ñ„8ру2к1Ñ‚ .у1зу .узу2фр .узу1Ñ„ .узуф1ру .у1м8не1м .у2м1н .ум1не .у1м8нё1м .ум1нё .ум8нет .ум8нёт .ум8ну .ум8ру .уÑлы8шь1Ñ‚2е .уÑ2л .уÑлы1 .уÑлы3шь1 .уÑлы1ш .уш8л8а. .у2шл .уш1ла .у1ш .фотоп8лено8к. .3фо1Ñ‚ .фото3п .фото2п1лен .фотопле1но .фотоплено1к .фотоп8лёно8к. .фото2п1лён .фотоплё1но .фотоплёно1к .царед8воре8ц. .ца1 .ца1ре .царе1дв2 .царед1во .царедво1ре .царедворе1ц .чере8Ñчу8Ñ€. .че1ре .чере1Ñч2 .череÑ1чу .черноÑ8ливо8м. .че2Ñ€1н .черно3Ñ2л .чер1но .черно2Ñ1ли .черноÑ3л2и1во .черноÑливо3м2 8Ñ8л. .ше8ÑтьдеÑÑ8Ñ‚. .ше1Ñ2 .ше1ÑÑ‚ .шеÑ4ть1 .шеÑть1де .шеÑтьде1ÑÑ .ÑŽÑ8о8м. .ÑŽ1Ñо .ÑŽÑо3м2 .Ñдо9з8у9б8е. .Ñ1до .Ñдо1з .Ñдо1зу .Ñдо2з1у2бе .Ñре8мног8о. .Ñре3м1но .Ñре1м .Ñре2м1н .Ñремно1г2 liblouis-2.5.3/tables/pi.ctb0000664000175000017500000000167112161041546012647 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Pali include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/ar-ar-g1.utb0000664000175000017500000001420212161041546013562 00000000000000# liblouis: Generic Arabic Grade 1 table # # Based on the braille contraction modules in BRLTTY # # Copyright (C) 1995-2004 by The BRLTTY Team. # Copyright (C) 2004 by ViewPlus Technologies, Inc., www.viewplustech.com # Copyright (C) 2004 by Computers to Help People, Inc., www.chpi.org # Copyright (C) 2011-2012 by Mesar Hameed # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan include text_nabcc.dis All display opcodes include braille-patterns.cti # unicode braille. # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 # 33 punctuation " 2356 # 34 sign # 3456 # 35 sign $ 4-234 # 36 sign % 25-1234 # 37 sign & 1234 # 38 punctuation ' 3 # 39 apostrophe punctuation ) 356 # 40 punctuation ( 236 # 41 sign * 56-35 # 42 math + 56-235 # 43 punctuation , 46 # 44 punctuation - 36 # 45 punctuation \x06D4 256 # Arabic Full stop punctuation . 256 # 46 math / 34 # 47 include loweredDigits6Dots.uti punctuation : 25 # 58 punctuation ; 56 # 59 math < 0-246-0 # 60 math = 56-2356 # 61 math > 0-135-0 # 62 punctuation ? 1456 # 63 sign @ 4 # 64 include latinLetterDef6Dots.uti punctuation [ 6-236 # 91 sign \\ 6-34 # 92 punctuation ] 356-6 # 93 sign ^ 346 # 94 circumflex accent sign _ 456 # 95 underscore sign ` 4 # 96 grave accent punctuation { 5-236 # 123 sign | 1245 # 124 punctuation } 356-2 # 125 math ~ 45 # 126 space \X00A0 0 # 160 no-break space sign \x00A2 4-14 # 162 ¢ cents sign sign \x00A3 4-123 # 163 £ pounds sign sign \x00A5 4-13456 # 165 Â¥ yen sign sign \x00A7 4-234-3 # 167 section sign § sign \x00A9 2356-6-14-2356 # 169 © copyright sign sign \x00AB 2356 # LEFT-POINTING DOUBLE ANGLE QUOTATION sign \x00AE 16-256 # ® Registered mark punctuation \x00Ad 36 # 173 soft hyphen sign \x00B0 356 # 176 ° degrees sign sign \x00B5 46-134 # 181 µ micro sign sign \x00B6 4-1234-345 # 182 ¶ pilcrow sign sign \x00BB 2356 # RIGHT-POINTING DOUBLE ANGLE QUOTATION sign \x00BF 236 # 191 inverted question mark math \x00D7 56-236 # 215 × multiplication sign math \x00F7 56-256 # 247 ÷ division sign sign \x200C 9 # ZERO WIDTH NON-JOINER punctuation \x2010 36 # 8208 hyphen punctuation \x2011 23478 # 8209 non-breaking hyphen punctuation \x2013 6-36 # 8211 en dash punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 2356 # 8220 smart opening double quote punctuation \x201D 2356 # 8221 smart closing double quote punctuation \x201E 2356 # 8222 smart double low quotation mark punctuation \x201F 2356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x20AC 4-15 # 8364 Euro sign sign \x25CF 35 # BLACK CIRCLE #-------------------------- Arabic characters --------------------------------- sign \x060C 5 sign \x061B 56 sign \x061F 236 # Arabic question mark (ØŸ) sign \x0621 3 sign \x0622 345 sign \x0623 34 sign \x0624 1256 sign \x0625 46 sign \x0626 13456 sign \x0627 1 # Alef (ا) sign \x0628 12 sign \x0629 16 sign \x062B 1456 sign \x062A 2345 # Teh (ت) sign \x062C 245 sign \x062D 156 sign \x062E 1346 sign \x062F 145 sign \x0630 2346 sign \x0631 1235 sign \x0632 1356 sign \x0633 234 sign \x0634 146 sign \x0635 12346 sign \x0636 1246 sign \x0637 23456 sign \x0638 123456 sign \x0639 12356 sign \x063A 126 sign \x0640 2 sign \x0641 124 sign \x0642 12345 sign \x0643 13 sign \x0644 123 sign \x0645 134 sign \x0646 1345 sign \x0647 125 sign \x0648 2456 sign \x0649 135 sign \x064A 24 sign \x064E 2 sign \x0650 15 sign \x064B 23 sign \x064C 26 sign \x064D 35 sign \x064F 136 sign \x0651 6 sign \x0652 25 always \x0644\x0627 1236 always \x0640\x0640\x0640\x064F 136 always \x0640\x0640\x0640\x064B 23 always \x0640\x0640\x0640\x064C 26 # --------------------------- end definitions --------------------------------- include countries.cti # include text.nabcc.dis All display opcodes # include text_nabcc.dis All display opcodes # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign # letsign 56 capsign 6 begcaps 6-6 endcaps 6-3 begital 46 endital 46-46 begbold 456 endbold 456-456 begcomp 456-346 endcomp 456-156 # the decimal digits include litdigits6Dots.uti # Arabic numerals digit \x0660 345 # 0 (Ù ) digit \x0661 1 # 1 (Ù¡) digit \x0662 12 # 2 (Ù¢) digit \x0663 14 # 3 (Ù£) digit \x0664 145 # 4 (Ù¤) digit \x0665 15 # 5 (Ù¥) digit \x0666 124 # 6 (Ù¦) digit \x0667 1245 # 7 (Ù§) digit \x0668 125 # 8 (Ù¨) digit \x0669 24 # 9 (Ù©) # Letters are defined in en-chardefs # punctuation # prepunc ( 356 # postpunc ) 236 prepunc ) 356 postpunc ( 236 prepunc " 2356 postpunc " 2356 prepunc ' 6-236 postpunc ' 356-3 word 'em = word 'tis = word 'twas = begnum # 3456-4 print number sign before number midnum , 46 postpunc , 46 decpoint . 46 midnum - 36 hyphen - 36 #capsnocont postpunc . 256 postpunc ; 23 midnum : 25 postpunc : 25 postpunc ! 235 midnum / 34 always / 34 always < 0-246-0 always > 0-135-0 postpunc ? 236 endnum % 25-1234 midnum ^ 346 always ^ 346 always ~ 45 always & 1234 midnum * 56-35 always * 56-35 always [ 6-236 always ] 356-3 always { 5-236 always } 356-2 prepunc ` 6-236 always @ 4 always \\ 6-34 always | 1245 always ... 3-3-3 always $ 4-234 # special character sequences compbrl :// URLs compbrl www. compbrl .com compbrl .edu compbrl .gov compbrl .mil compbrl .net compbrl .org # include countries.cti compbrl .doc compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip liblouis-2.5.3/tables/gujarati.cti0000664000175000017500000000761112161041546014054 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0a81 3 GUJARATI SIGN CANDRABINDU letter \x0a82 56 GUJARATI SIGN ANUSVARA letter \x0a83 6 GUJARATI SIGN VISARGA letter \x0a85 1 GUJARATI LETTER A letter \x0a86 345 GUJARATI LETTER AA letter \x0a87 24 GUJARATI LETTER I letter \x0a88 35 GUJARATI LETTER II letter \x0a89 136 GUJARATI LETTER U letter \x0a8a 1256 GUJARATI LETTER UU letter \x0a8d 157 GUJARATI VOWEL CANDRA E letter \x0a8f 15 GUJARATI LETTER E letter \x0a90 34 GUJARATI LETTER AI letter \x0a91 1357 GUJARATI VOWEL CANDRA O letter \x0a93 135 GUJARATI LETTER O letter \x0a94 246 GUJARATI LETTER AU letter \x0a95 13 GUJARATI LETTER KA letter \x0a96 46 GUJARATI LETTER KHA letter \x0a97 1234 GUJARATI LETTER GA letter \x0a98 126 GUJARATI LETTER GHA letter \x0a99 346 GUJARATI LETTER NGA letter \x0a9a 14 GUJARATI LETTER CA letter \x0a9b 16 GUJARATI LETTER CHA letter \x0a9c 245 GUJARATI LETTER JA letter \x0a9d 356 GUJARATI LETTER JHA letter \x0a9e 25 GUJARATI LETTER NYA letter \x0a9f 23456 GUJARATI LETTER TTA letter \x0aa0 2456 GUJARATI LETTER TTHA letter \x0aa1 1246 GUJARATI LETTER DDA letter \x0aa2 123456 GUJARATI LETTER DDHA letter \x0aa3 3456 GUJARATI LETTER NNA letter \x0aa4 2345 GUJARATI LETTER TA letter \x0aa5 1456 GUJARATI LETTER THA letter \x0aa6 145 GUJARATI LETTER DA letter \x0aa7 2346 GUJARATI LETTER DHA letter \x0aa8 1345 GUJARATI LETTER NA letter \x0aaa 1234 GUJARATI LETTER PA letter \x0aab 235 GUJARATI LETTER PHA letter \x0aac 12 GUJARATI LETTER BA letter \x0aad 45 GUJARATI LETTER BHA letter \x0aae 134 GUJARATI LETTER MA letter \x0aaf 13456 GUJARATI LETTER YA letter \x0ab0 1235 GUJARATI LETTER RA letter \x0ab2 123 GUJARATI LETTER LA letter \x0ab3 1237 GUJARATI LETTER LLA letter \x0ab5 1236 GUJARATI LETTER VA letter \x0ab6 146 GUJARATI LETTER SHA letter \x0ab7 12346 GUJARATI LETTER SSA letter \x0ab8 234 GUJARATI LETTER SA letter \x0ab9 125 GUJARATI LETTER HA letter \x0abd 2 GUJARATI SIGN AVAGRAHA letter \x0abe 345 GUJARATI VOWEL SIGN AA letter \x0abf 24 GUJARATI VOWEL SIGN I letter \x0ac0 35 GUJARATI VOWEL SIGN II letter \x0ac1 136 GUJARATI VOWEL SIGN U letter \x0ac2 1256 GUJARATI VOWEL SIGN UU letter \x0ac5 157 GUJARATI VOWEL SIGN CANDRA E letter \x0ac7 15 GUJARATI VOWEL SIGN E letter \x0ac8 34 GUJARATI VOWEL SIGN AI letter \x0ac9 1357 GUJARATI VOWEL SIGN CANDRA O letter \x0acb 135 GUJARATI VOWEL SIGN O letter \x0acc 246 GUJARATI VOWEL SIGN AU letter \x0acd 4 GUJARATI SIGN VIRAMA letter \x0ae6 245 GUJARATI DIGIT ZERO letter \x0ae7 1 GUJARATI DIGIT ONE letter \x0ae8 12 GUJARATI DIGIT TWO letter \x0ae9 14 GUJARATI DIGIT THREE letter \x0aea 145 GUJARATI DIGIT FOUR letter \x0aeb 15 GUJARATI DIGIT FIVE letter \x0aec 124 GUJARATI DIGIT SIX letter \x0aed 1245 GUJARATI DIGIT SEVEN letter \x0aee 125 GUJARATI DIGIT EIGHT letter \x0aef 24 GUJARATI DIGIT NINE liblouis-2.5.3/tables/cy-cy-g2.ctb0000664000175000017500000000661612161041546013575 00000000000000# liblouis: Welsh Grade 2 Braille Contraction Table # Created by Tom Johnston . include cy-cy-g1.utb # the letter a word a 1 word anghofio 1-1345-1245-125 always ar 345 word arbennig 345-12-15-1345-1345-24-1245 always arh 1-1235-125 #the letter b word beth 12 always blwyddyn 12-123 always braille 12-1235-123 word byddai 12-145-145 #the letter c word cael 14 always cyrraedd 456-14 #the letter ch word chwarae 16 always chwerthin 5-16 #the letter d always dechrau 145-16-1235 word diolch 145-16 always diwedd 145-2456 word diwethaf 145-2456-1456 always dydd 5-145 word dyma 145 #the letter dd word ddoe 145-145 #the letter e always ed 1246 always edd 15-145-145 word ef 15 word efallai 15-124-123-123 always eisiau 15-24-234 always eistedd 5-15 always en 26 always er 12456 always erh 15-1235-125 #the letter f word fel 124 always fyny 5-124 #the letter ff word ffordd 124-124 always ffrind 124-124-1235 #the letter g always gorffen 1245-1235-124-124 always gweithio 456-1245 word gwelwch 1245-2456 word gwneud 1245-1345-145 word gwybod 1245-2456-12 word gyda 1245 #the letter h always heddiw 5-125 always hefyd 456-125 word hoffi 125 word hynny 125-1345 #the letter i word i 24 endword iaeth 56-1456 endword iaid 46-145 endword ion 46-1345 always in 35 #the letter l word lawr 123 #the letter ll word llawer 123-123 always llythr 123-123-1235 #the letter m word mae 134 word meddai 134-145-145 always meddwl 456-134 always mynd 5-134 #the letter n word neithiwr 1345-1456 always newydd 5-1345 word nid 1345 #the letter o word o 135 always o'r\sgloch 135-3-1235-0-1245-123 word oedd 5-135 always of 12356 always off 135-124-124 word oherwydd 135-125-2456 always ow 135-2456 #the letter p word penderfynu 1234-26-145 #the letter p always pethau 1234-1456-136 word plant 1234-123 always plentyn 5-1234 word pobl 1234 always prynhawn 1234-1235-125 #the letter r word roedd 1235 endword rwydd 56-145-145 #the letter rh word rhai 1235-125 always rhaid 5-1235-125 word rhyw 1235-125-2456 word rhywbeth 1235-125-2456-12 word rhywbryd 1235-125-2456-12-1235 word rhywfaint 1235-125-2456-124-2345 word rhywfodd 1235-125-2456-124 word rhywle 1235-125-2456-123 word rhywun 1235-125-2456-136 #the letter s always siarad 5-234 always st 34 always sth 234-1456 always stori 34 word sydd 234 always sylweddoli 456-234 #the letter t word trwy 2345 always tywydd 5-2345 #the letter u always uchel 5-136 word unig 136 word uwchben 136-2456-12 #the letter w endword waith 46-1456 word wedi 2456 always wedyn 456-2456 always wrth 5-2456 word weithiau 2456-1456-136 #the letter y word y 13456 endword yddes 56-234 always ysgol 5-13456 word ysgrifennu 13456-234-1245 # Système International Prefixes begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 liblouis-2.5.3/tables/mwr.ctb0000664000175000017500000000167412161041546013047 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Marwari include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/new.ctb0000664000175000017500000000172312161041546013026 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Old Newari include devanagari.cti include bengali.cti include text_nabcc.dis liblouis-2.5.3/tables/hu-backtranslate-correction.dis0000664000175000017500000000027412161041546017641 00000000000000display " 4 display 1 16 display { 12356 display } 23456 display q 12345 display 7 12456 display 0 346 display 2 126 display 9 246 display | 34 display z 1356 display & 12346 display > 45 liblouis-2.5.3/tables/te.ctb0000664000175000017500000000166712161041546012654 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Telugu include telugu.cti include text_nabcc.dis liblouis-2.5.3/tables/nl-be-g1.utb0000664000175000017500000002122712161041546013562 00000000000000# liblouis: Dutch (Belgium) Grade 1 Braille Table # Created by Leon Ungier . # Edited by Eric locale Belgium include text_nabcc.dis # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 # 33 exclamation mark x0021 punctuation " 2356 double quote x0022 sign # 3456 number sign x0023 # sign # 5 number sign x0023 letter # 5 #sign $ 46-15-3456 dollar sign x0024 sign $ 145 sign % 3456-245-356 percent sign x0025 sign & 12346 ampersand z0026 punctuation ' 36 apostrophe x0027 punctuation ( 236 left parenthesis x0028 punctuation ) 356 right parenthesis x0029 sign * 35 asterisk x002A math + 235 plus 002B punctuation , 2 coma 002C punctuation - 36 hyphen-minus 002D punctuation . 256 point 002E math / 34 solidus 002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B math < 5-246 less-than sign x003C math = 2356 equal sign x003D math > 5-135 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 345 commercial at x0040 include latinLetterDef6Dots.uti punctuation [ 12356 left square bracket x005B sign \\ 5-16 reverse solidus x005C #sign \\ 16 reverse solidus x005C Suzanne's correction punctuation ] 23456 right square bracket x005D sign ^ 346 circumflex accent x005E sign _ 456 low line x005F sign ` 6 grave accent x0060 # a - z # 97 - 122 x0061-x007A punctuation { 12356 left curly bracket x007B sign | 123456 vertical line x007C punctuation } 23456 right curly bracket x007D sign ~ 5-26 #math ~ 34 tilde x007E # sign \x0080 46-15-3456 euro sign x0080 sign \x0080 15 euro sign x0080 Suzanne's correction punctuation \x0092 3 single right quotation mark x0092 space \X00A0 0 no-break space x00A0 sign \X00A1 4 inverted exclamation mark (*LU* added so it compiles) sign ¢ 14 cent sign x00A2 sign £ 1234 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 13456 yen sign x00A5 sign § 346 paragraph sign x00A7 sign © 6-14-135-1234-13456-1235-24-1245-125-2345 copyright x00A9 sign ª 46 feminine ordinal indicator x00AA sign « 2356 left-pointing double angle quotation mark x00AB sign ® 5-1235 registerd sign x00AE sign ° 4-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign µ 123456 x00B5 sign ¹ 4-6-16 superscript 1 sign x00B9 sign » 2356 right-pointing double angle quotation mark x00BB sign ¼ 6-16-34-1456 vulgar fraction one quarter x00BC sign ½ 6-16-34-126 vulgar fraction one half x00BD sign ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE letter ¿ 35 inverted question mark x00BF uplow \x00C0\x00E0 12356 letter a with grave (à) x00C0 / 00E0 uplow Ãá 1 letter a with acute x00C1 / 00E1 uplow Ââ 16 letter a with circumflex x00C2 / 00E2 uplow \x00C3\x00E3 345 letter a with tilde x00C3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 246 A with ring above x00C5 / 00E5 uplow Ææ 345 x00C6 / 00E6 uplow Çç 12346 letter c with cedilla x00C7 uplow Èè 2346 x00C8 uplow Éé 123456 small e with acute x00C9 uplow \x00CA\x00EA 126 e with circumflex (ê) x00CA uplow Ëë 1246 x00CB uplow Ññ 12456 N with tilde x00D1 uplow Öö 246 O with diaeresis x00D6 math × 236 multiplication sign x00D7 letter ì 24 x00EC letter í 24 small i with acute x00ED letter î 146 x00EE letter ï 12456 x00EF letter ñ 12456 small n with tilde x00F1 letter ò 135 x00F2 letter ó 346 small o with acute x00F3 letter ô 1456 small o with circumflex x00F4 letter \x00F5 246 small o with tilde x00F5 letter ö 246 small o with diaeresis x00F6 math ÷ 256 division sign x00F7 letter ù 12356 x00F9 letter ú 136 small u with acute x00FA letter û 156 x00FB letter ü 1256 small u with diaeresis x00FC letter \x0192 124 small F with hook x0192 letter \x0391 56-1 Greek capital letter Alpha letter \x03B1 456-1 Greek lower case letter Alpha letter \x0392 56-2 Greek capital letter Beta letter \x03B2 456-2 Greek lower case letter Beta letter \x0393 56-1245 Greek capital letter Gamma letter \x03B3 456-1245 Greek lower case letter Gamma letter \x0394 56-145 Greek capital letter Delta letter \x03B4 456-145 Greek lower case letter Delta letter \x0395 56-15 greek capital letter epsilon letter \x03b5 456-15 greek lower case letter epsilon letter \x0396 56-1356 greek capital letter zeta letter \x03b6 456-1356 greek lower case letter zeta letter \x0397 56-156 greek capital letter eta letter \x03b7 456-156 greek lower case letter eta letter \x0398 56-1456 greek capital letter theta letter \x03b8 456-1456 greek lower case letter theta letter \x0399 56-24 greek capital letter iota letter \x03b9 456-24 greek lower case letter iota letter \x039a 56-13 greek capital letter kappa letter \x03ba 456-13 greek lower case letter kappa letter \x039b 56-123 greek capital letter lambda letter \x03bb 456-123 greek lower case letter lambda letter \x039c 56-134 greek capital letter mu #letter \x03bc 456-134 greek lower case letter mu but defined above letter \x039d 56-1345 greek capital letter nu letter \x03bd 456-1345 greek lower case letter nu letter \x039e 56-1346 greek capital letter xi letter \x03be 456-1346 greek lower case letter xi letter \x039f 56-135 greek capital letter omicron letter \x03bf 456-135 greek lower case letter omicron letter \x03a0 56-1234 greek capital letter pi letter \x03c0 456-1234 greek lower case letter pi letter \x03a1 56-1235 greek capital letter rho letter \x03c1 456-1235 greek loewr case letter rho letter \x03a3 56-234 greek capital letter sigma letter \x03c3 456-234 greek lower case letter sigma letter \x03a4 56-2345 greek capital letter tau letter \x03c4 456-2345 greek lower case letter tau letter \x03a5 56-136 greek capital letter upsilon letter \x03c5 456-136 greek lower case letter upsilon letter \x03a6 56-124 greek capital letter phi letter \x03c6 456-124 greek lower case letter phi letter \x03a7 56-12346 greek capital letter chi letter \x03c7 456-12346 greek lower case letter chi letter \x03a8 56-13456 greek capital letter psi letter \x03c8 456-13456 greek lower case letter psi letter \x03a9 56-2456 greek capital letter omega letter \x03c9 456-2456 greek lower case letter omega sign \x2122 5-2345-134 Trademark sign punctuation \x2010 46 # 8208 hyphen punctuation \x2011 46 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 single right quotation mark punctuation \x201C 236 # 8220 left opening double quote punctuation \x201D 356 # 8221 right closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 256-256-256 # 8230 smart ellipsis sign \x2030 123456-123456 per mile sign ‰ sign \x20AC 15 euro sign x0080 Suzanne's correction sign \x00B7 56 # so the lines below compile sign \x00B8 45 # ibid capsign 46 begcaps 45 # uppercase - 36 # uppercase . 256 # uppercase & 12346 # uppercase / 34 numsign 3456 midnum , 2 midnum . 3 midnum + 235 midnum - 36 midnum / 256 midnum : 25 midnum = 2356 endnum # 56-3456 endnum \x2030 0-123456-123456 prepunc " 2356 postpunc " 2356 prepunc ' 3 postpunc ' 3 prepunc ° 4-356 born sign x00B0 repeated ... 256-256-256 points de suite repeated --- 36-36-36 repeated ___ 456-456-456 always \s--\s 36-36 tiret # ---------------- always # 5-3456 number sign x0023 always $ 145 dollar sign x0024 always % 3456-245-356 percent sign x0025 always ' 3 apostrophe x0027 always \\ 5-16 reverse solidus x005C always ~ 5-26 tilde x007E always © 5-14 copyright x00A9 liblouis-2.5.3/tables/cy-cy-g1.utb0000664000175000017500000002617712161041546013622 00000000000000# liblouis: Welsh Grade 1 table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by Tom Johnston, Tom.Johnston@accessibilityconsulting.co.uk # include text_nabcc.dis All display opcodes space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation ( 12356 punctuation } 12456 punctuation ] 124567 punctuation ? 1456 punctuation : 156 punctuation ) 23456 punctuation ! 2346 punctuation { 246 punctuation [ 2467 punctuation ' 3 punctuation - 36 punctuation . 46 punctuation " 5 punctuation ; 56 punctuation , 6 sign & 12346 sign $ 1246 sign | 1256 sign \\ 12567 sign % 146 sign * 16 sign # 3456 punctuation ` 4 sign _ 456 sign ^ 457 sign @ 47 math = 123456 math < 126 math / 34 math > 345 math + 346 math ~ 45 # Miscellaneous math \x00B1 346-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN math \x00B7 16 MIDDLE DOT math \x00BC 1456-2-34-256-3456 VULGAR FRACTION ONE QUARTER No 0031 2044 math \x00BD 1456-2-34-23-3456 VULGAR FRACTION ONE HALF No 0031 2044 0032 math \x00BE 1456-25-34-23-3456 VULGAR FRACTION THREE QUARTERS No 0033 math \x00D7 4-16 MULTIPLICATION SIGN math \x00F7 46-34 DIVISION SIGN punctuation \x0092 3 punctuation \x0097 36-36 punctuation \x00A1 235 INVERTED EXCLAMATION MARK punctuation \x00ad 36 punctuation \x00BF 236 INVERTED QUESTION MARK punctuation \x2011 36 punctuation \x2013 36-36 punctuation \x2014 36-36 punctuation \x2018 6-236 punctuation \x2019 3 punctuation \x2019 356-3 punctuation \x201c 236 punctuation \x201d 356 punctuation \x2026 3 sign \x2122 45-2345 trademark sign sign \x00A2 4-14 CENT SIGN sign \x00A3 3456 POUND SIGN sign \x00A4 1246 CURRENCY SIGN sign \x00A7 4-234 SECTION SIGN sign \x00A9 45-14 COPYRIGHT SIGN sign \x00AE 45-1235 REGISTERED SIGN REGISTERED TRADE MARK SIGN sign \x00B0 56-145-1245 DEGREE SIGN sign \x00B4 b4 ACUTE ACCENT 0020 0301 SPACING ACUTE sign \x00B5 46-134 MICRO SIGN 03BC 039C 039C sign \x00A5 4-13456 YEN SIGN punctuation \x00A6 456-1256 BROKEN BAR BROKEN VERTICAL BAR # sign \x00A8 DIAERESIS 0020 0308 SPACING DIAERESIS # sign \x00AA FEMININE ORDINAL INDICATOR 0061 # punctuation \x00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK LEFT # sign \x00AC NOT SIGN # sign \x00AF MACRON 0020 0304 SPACING MACRON # math \x00B2 SUPERSCRIPT TWO 0032 2 2 SUPERSCRIPT DIGIT TWO # math \x00B3 SUPERSCRIPT THREE 0033 3 3 SUPERSCRIPT DIGIT THREE sign \x00B6 1234-345 PILCROW SIGN PARAGRAPH SIGN # sign \x00B8 CEDILLA 0020 0327 SPACING CEDILLA # math \x00B9 SUPERSCRIPT ONE 0031 1 1 SUPERSCRIPT DIGIT ONE sign \x00BA 145-1245 MASCULINE ORDINAL INDICATOR 006F # punctuation \x00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK Pf Y punctuation \x2010 36 # 8208 hyphen punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x201E 236 # 8222 smart double low quotation mark # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign letsign 56 capsign 6 begcaps 6-6 endcaps 6-3 begital 46 endital 46-3 begbold 46-46 endbold 46-3 begcomp 6-346 endcomp 6-346 # the decimal digits include litdigits6Dots.uti # Letters not defined in en-chardefs always ch 16 always th 1456 #single letter words word a 1 word A 1 word i 24 word I 24 word o 135 word O 135 word y 13456 word Y 13456 # punctuation prepunc " 236 postpunc " 356 always " 5 prepunc ' 6-236 postpunc ' 356-3 postpunc '' 356 postpunc ''' 356-3-356 always ' 3 midnum , 3 always , 2 midnum . 2 decpoint . 2 always . 256 always ; 23 midnum : 6-25 always : 25 endnum ! 6-235 always ! 235 always # 4-3456 midnum / 456-34-3456 always / 456-34 always ? 236 endnum % 0-25-1234 always % 25-1234 midnum ^ 346-3456 always ^ 456-126 always ~ 4-156 always & 4-12346 midnum * 0-56-236-3456 always * 35-35 repeated *** 35-35-0-35-35-0-35-35 prepunc ( 2356 postpunc ) 2356 always [ 6-2356 always ] 2356-3 always { 46-2356 always } 46-2356 always -com = endword -to = pointed-to resource endword -by = used-by # always _ 78 prepunc `` 236 prepunc ` 6-236 always ` 4 always @ 2346 always \\ 5-16 always | 5-123 repeated --- 36-36-36 # repeated ___ 78-78-78 repeated ___ 46-46-46 repeated ::: 25-25-25 repeated === 56-2356-56-2356-56-2356 repeated ~~~ 4-156-4-156-4-156 always \s-\s 36-36 always \s-\scom 36-36-14-135-134 always ... 3-3-3 always .\s.\s. 3-3-3 . . . # always \x2026 3-3-3 # 8230 MS Word smart ellipsis # the hyphen # always ­ 36 repeated ­­­ 36-36-36 always \s­\s 36-36 # accented letters uplow \x00C0\x00E0 1 # a with grave uplow \x00C1\x00E1 1 # a with acute uplow \x00C2\x00E2 1 # a with circumflex #uplow \x00C3\x00E3 1 # a with tilde uplow \x00C4\x00E4 1 # a with dieresis #uplow \x00C5\x00E5 1 # a with ring above uplow \x00C6\x00E6 1 # letter ae #uplow \x00C7\x00E7 14 # c with cedilla uplow \x00C8\x00E8 15 # e with grave uplow \x00C9\x00E9 15 # e with acute uplow \x00CA\x00EA 15 # e with circumflex uplow \x00CB\x00EB 15 # e with dieresis uplow \x00CC\x00EC 24 # i with grave above uplow \x00CD\x00ED 24 # i with acute above uplow \x00CE\x00EE 24 # i with circumflex uplow \x00CF\x00EF 24 # i with dieresis #uplow \x00D0\x00F0 15 # letter eth #uplow \x00D1\x00F1 1345 # n with tilde uplow \x00D2\x00F2 135 # o with grave above uplow \x00D3\x00F3 135 # o with acute above uplow \x00D4\x00F4 135 # o with circumflex #uplow \x00D5\x00F5 135 # o with tilde uplow \x00D6\x00F6 135 # o with dieresis # \x00D7 × multiplication sign ---------------------- #uplow \x00D8\x00F8 135 # o with stroke uplow \x00D9\x00F9 136 # u with grave above uplow \x00DA\x00FA 136 # u with acute above uplow \x00DB\x00FB 136 # u with circumflex above uplow \x00DC\x00FC 136 # u with dieeresis uplow \x00DD\x00FD 13456 # y with acute above #uplow \x00DE\x00FE 2345 # letter thorn letter \x00DF 2346 # small sharp s uplow \x0174\x0175 2456 w with circumflex uplow \x0176\x0177 13456 # y with circumflex uplow \x0178\x00ff 13456 # y with diaeresis uplow \x1ef2\x1ef3 13456 # y with grave largesign \x00C0 23-1 [C0] upper a grave largesign \x00E0 23-1 [E0] lower a grave largesign \x00C1 25-1 [C1] upper a acute largesign \x00E1 25-1 [E1] lower a acute largesign \x00C2 4-1 [C2] upper a circumflex largesign \x00E2 4-1 [E2] lower a circumflex #largesign \x00C3 4-1 [C3] upper a tilde #largesign \x00E3 4-1 [E3] lower a tilde largesign \x00C4 45-1 [C4] upper a dieresis largesign \x00E4 45-1 [E4] lower a dieresis #largesign \x00C5 4-1 [C5] upper a ring #largesign \x00E5 4-1 [E5] lower a ring largesign \x00C6 1-15 [C6] upper ae largesign \x00E6 1-15 [E6] lower ae #largesign \x00C7 4-14 [C7] upper c cedilla #largesign \x00E7 4-14 [E7] lower c cedilla largesign \x00C8 23-15 [C8] upper e grave largesign \x00E8 23-15 [E8] lower e grave largesign \x00C9 25-15 [C9] upper e acute largesign \x00E9 25-15 [E9] lower e acute largesign \x00CA 4-15 [CA] upper e circumflex largesign \x00EA 4-15 [EA] lower e circumflex largesign \x00CB 45-15 [CB] upper e dieresis largesign \x00EB 45-15 [EB] lower e dieresis largesign \x00CC 23-24 [CC] upper i grave largesign \x00EC 23-24 [EC] lower i grave largesign \x00CD 25-24 [CD] upper i acute largesign \x00ED 25-24 [ED] lower i acute largesign \x00CE 4-24 [CE] upper i circumflex largesign \x00EE 4-24 [EE] lower i circumflex largesign \x00CF 45-24 [CF] upper i dieresis largesign \x00EF 45-24 [EF] lower i dieresis #largesign \x00D0 4-15 [D0] upper eth #largesign \x00F0 4-15 [F0] lower eth #largesign \x00D1 4-1345 [D1] upper n tilde #largesign \x00F1 4-1345 [F1] lower n tilde largesign \x00D2 23-135 [D2] upper o grave largesign \x00F2 23-135 [F2] lower o grave largesign \x00D3 25-135 [D3] upper o acute largesign \x00F3 25-135 [F3] lower o acute largesign \x00D4 4-135 [D4] upper o circumflex largesign \x00F4 4-135 [F4] lower o circumflex #largesign \x00D5 4-135 [D5] upper o tilde #largesign \x00F5 4-135 [F5] lower o tilde largesign \x00D6 45-135 [D6] upper o dieresis largesign \x00F6 45-135 [F6] lower o dieresis #largesign \x00D8 4-135 [D8] upper o slash #largesign \x00f8 4-135 [F8] lower o slash largesign \x00D9 23-136 [D9] upper u grave largesign \x00F9 23-136 [F9] lower u grave largesign \x00DA 25-136 [DA] upper u acute largesign \x00FA 25-136 [FA] lower u acute largesign \x00DB 4-136 [DB] upper u circumflex largesign \x00FB 4-136 [FB] lower u circumflex largesign \x00DC 45-136 [DC] upper u dieresis largesign \x00FC 54-136 [FC] lower u dieresis largesign \x00DD 25-13456 [DD] upper y acute largesign \x00FD 25-13456 [FD] lower y acute #largesign \x00DE 4-2345 [DE] upper t horn #largesign \x00FE 4-2345 [FE] lower t horn largesign \x00DF 234-234 (DF) lower ss largesign \x0174 4-2456 lower w circumflex largesign \x0175 4-2456 upper w circumflex largesign \x0176 4-13456 upper y circumflex largesign \x0177 4-13456 lower y circumflex largesign \x0178 45-13456 upper y with dieresis largesign \x00FF 45-13456 lower y with dieresis largesign \x1EF2 23-13456 upper y with grave largesign \x1EF3 23-13456 lower y with grave hyphen \x2010 36 # 8208 hyphen # punctuation \x2011 36 # 8209 non-breaking hyphen punctuation \x2011 23478 # 8209 non-breaking hyphen always \x2013 56-36 # 8211 smart minus sign always \x201C 236 # 8220 smart opening double quote always \x201D 356 # 8221 smart closing double quote always \x201E 236 # 8222 smart double low quotation mark always \x201F 356 # 8223 smart double high reverse quotation mark # mathematical symbols decpoint . 2 always < 246 joinword = 56-2356 joinnum = 56-2356 always > 135 midnum + 0-56-235-3456 joinnum + 56-235 joinword + 56-235 midnum - 36-3456 always - 36 joinnum × 56-236 joinword × 56-236 midnum ÷ 0-56-256-3456 division sign joinnum ÷ 56-256 joinword ÷ 56-256 begnum £ 123 always £ 4-123 pounds # other special characters always © 45-14 copyright sign ™ 45-2345 trademark sign ® 45-1235 registered always ¶ 1234-345 paragraph always § 234-3 section always ° 356 degrees begnum $ 256 always $ 4-256 always ¢ 4-14 cents sign € 4-15 euro always € 4-15 euro always Â¥ 4-13456 yen always µ 2-134 mu # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org include countries.cti literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip liblouis-2.5.3/tables/se-se.ctb0000664000175000017500000002232712161041546013254 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2010 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Swedish (1996 standard) # This file contains the ISO-8859-1 compatible version of the Swedish 8-dot # braille standard as it was defined by the Swedish Braille Authority # (www.punktskriftsnamnden.se) on October 8, 1996. As of December 2005, this # is the most current braille standard in Sweden. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 56 QUOTATION MARK punctuation \x0023 3456 NUMBER SIGN punctuation $ 2358 DOLLAR SIGN punctuation % 4678 PERCENT SIGN punctuation & 3468 AMPERSAND punctuation ' 5 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 256 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 34 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 358 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 267 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 48 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 123568 LEFT SQUARE BRACKET punctuation \\ 168 REVERSE SOLIDUS punctuation ] 234568 RIGHT SQUARE BRACKET punctuation ^ 578 CIRCUMFLEX ACCENT punctuation _ 6 LOW LINE punctuation ` 46 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 23678 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 35678 RIGHT CURLY BRACKET punctuation ~ 268 TILDE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 367 INVERTED EXCLAMATION MARK punctuation \x00a2 23468 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 2478 CURRENCY SIGN punctuation \x00a5 24678 YEN SIGN punctuation \x00a6 12678 BROKEN BAR punctuation \x00a7 346 SECTION SIGN punctuation \x00a8 3678 DIAERESIS punctuation \x00a9 14568 COPYRIGHT SIGN letter \x00aa 2345678 FEMININE ORDINAL INDICATOR punctuation \x00ab 2378 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 13458 NOT SIGN punctuation \x00ad 23568 SOFT HYPHEN punctuation \x00ae 12468 REGISTERED SIGN punctuation \x00af 1578 MACRON punctuation \x00b0 15678 DEGREE SIGN punctuation \x00b1 123468 PLUS-MINUS SIGN punctuation \x00b2 37 SUPERSCRIPT TWO punctuation \x00b3 2567 SUPERSCRIPT THREE punctuation \x00b4 258 ACUTE ACCENT lowercase \x00b5 13478 MICRO SIGN punctuation \x00b6 1267 PILCROW SIGN punctuation \x00b7 8 MIDDLE DOT punctuation \x00b8 12568 CEDILLA punctuation \x00b9 1468 SUPERSCRIPT ONE letter \x00ba 1358 MASCULINE ORDINAL INDICATOR punctuation \x00bb 5678 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 12358 VULGAR FRACTION ONE QUARTER punctuation \x00bd 1368 VULGAR FRACTION ONE HALF punctuation \x00be 3578 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 38 INVERTED QUESTION MARK uppercase \x00c0 1467 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 135678 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 24578 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 13578 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 34578 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 12378 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 68 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 27 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 457 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 1348 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 458 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 67 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 23467 LATIN CAPITAL LETTER ETH uppercase \x00d1 124567 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 123478 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 178 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 124578 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 23478 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 13468 MULTIPLICATION SIGN uppercase \x00d8 1567 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 14578 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 12578 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 245678 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 12478 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 1234678 LATIN CAPITAL LETTER THORN lowercase \x00df 1278 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 1235678 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 1678 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 13678 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 345 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 3458 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 3478 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 348 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 34678 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 3467 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 2348 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2568 DIVISION SIGN lowercase \x00f8 4578 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 25678 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 34568 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 234578 LATIN SMALL LETTER THORN lowercase \x00ff 1268 LATIN SMALL LETTER Y WITH DIAERESIS space \x2002 0 EN SPACE space \x2003 0 EM SPACE space \x2004 0 THREE-PER-EM SPACE space \x2005 0 FOUR-PER-EM SPACE space \x2006 0 SIX-PER-EM SPACE punctuation \x2007 0 FIGURE SPACE space \x2008 0 PUNCTUATION SPACE space \x2009 0 THIN SPACE space \x200a 0 HAIR SPACE punctuation \x202f 0 NARROW NO-BREAK SPACE space \x205f 0 MEDIUM MATHEMATICAL SPACE liblouis-2.5.3/tables/compress.cti0000664000175000017500000000301612161041546014074 00000000000000# Multiple Blank, Tab, etc. Suppression Table # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2013 # ViewPlus Technologies, Inc. www.viewplus.com # and # Abilitiessoft, Inc. www.abilitiessoft.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@abilitiessoft.com space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE # Sequences which should be represented by blank spaces repeated \s 0 repeated \t 0 # cut down lines of hyphens, underscores, etc. repeated --- 36 repeated ___ 456 repeated === 123456 pass2 $s1-10 @0 liblouis-2.5.3/tables/sl-si-g1.utb0000664000175000017500000002320412161041546013611 00000000000000# Slovene braille translation table # by Mike Sivill # include text_nabcc.dis Alldisplay opcodes # ----------- define all chars -------------------------------------- space \t 0 space \x000A 0 space \x000D 0 space \s 0 blank # 32 replace \x0007 punctuation ! 2346 # 33 punctuation " 5 # 34 sign # 3456 # 35 sign $ 1246 # 36 sign % 146 # 37 sign & 12346 # 38 punctuation ' 3 # 39 apostrophe punctuation ( 12356 # 40 punctuation ) 23456 # 41 sign * 16 # 42 math + 346 # 43 punctuation , 6 # 44 punctuation - 36 # 45 punctuation . 46 # 46 math / 34 # 47 include loweredDigits6Dots.uti punctuation : 156 # 58 punctuation ; 56 # 59 math < 126 # 60 math = 2356 math > 345 # 62 punctuation ? 1456 # 63 sign @ 47 # 64 include latinLetterDef6Dots.uti punctuation [ 2467 # 91 sign \\ 12567 # 92 punctuation ] 124567 # 93 sign ^ 457 # 94 circumflex accent sign _ 456 # 95 underscore sign ` 4 # 96 grave accent # a - z # 97 - 122 punctuation { 246 # 123 sign | 1256 # 124 punctuation } 12456 # 125 math ~ 45 # 126 space \X00A0 0 # 160 no-break space sign \x00A2 4-14 # 162 ¢ cents sign sign \x00A3 4-123 # 163 £ pounds sign sign \x20A4 4-123 # lira sign sign \x00A5 4-13456 # 165 Â¥ yen sign sign § 4-234-3 # 167 begnum § 234-3 # 167 always § 4-234-3 # 167 sign \x2022 36-36-0 # bullet sign \x00A9 45-14 # 169 © copyright sign sign \x00AE 45-1235 # Registered sign \x2665 2356-125-15-345-2345-2356 # heart symbol sign \x21FD 246-25-25 # LEFTWARDS OPEN-HEADED ARROW sign \x21FE 25-25-135 # RIGHTWARDS OPEN-HEADED ARROW sign \x21FF 246-25-25-135 # LEFT RIGHT OPEN-HEADED ARROW always \x21FD 246-25-25 # LEFTWARDS OPEN-HEADED ARROW always \x21FE 25-25-135 # RIGHTWARDS OPEN-HEADED ARROW always \x21FF 246-25-25-135 # LEFT RIGHT OPEN-HEADED ARROW sign \x00BA 145-1245 MASCULINE ORDINAL INDICATOR 006F punctuation \x00Ad 36 # 173 soft hyphen sign \x00B0 56-145-1245 degrees sign \x00B4 4 always \x00B4 4 # acute accent sign sign \x00B5 2-134 # micro sign, (mu) sign \x00B6 4-1234-345 # 182 ¶ pilcrow sign math \x00D7 4-16 # 215 × multiplication sign midnum \x00D7 4-16 math \x00F7 46-34 # 247 ÷ division sign midnum \x00F7 46-34 punctuation \x2010 36 # 8208 hyphen punctuation \x2011 23478 # 8209 non-breaking hyphen punctuation \x2013 36-36 # 8211 en dash punctuation \x2014 36-36 # em dash punctuation \x2018 6-236 # 8216 smart single left quotation mark punctuation \x2019 356-3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x20AC 4-15 # 8364 Euro sign anywhere else # --------------------------- end definitions --------------------------------- include countries.cti # Braille indicators numsign 3456 number sign, just a dots operand capsign 46 # the decimal digits include litdigits6Dots.uti # special accented chars uplow \x0160\x0161 156 uplow \x010C\x010D 16 uplow \x0106\x0107 146 uplow \x017D\x017E 2346 uplow \x00D0\x00F0 1456 # accented letters uplow \x00C0\x00E0 1 # a with grave uplow \x00C1\x00E1 1 # a with acute uplow \x00C2\x00E2 1 # a with circumflex uplow \x00C3\x00E3 1 # a with tilde uplow \x00C4\x00E4 1 # a with dieresis uplow \x00C5\x00E5 1 # a with ring above uplow \x00C6\x00E6 1 # letter ae uplow \x00C7\x00E7 14 # c with cedilla uplow \x00C8\x00E8 15 # e with grave uplow \x00C9\x00E9 15 # e with acute uplow \x00CA\x00EA 15 # e with circumflex uplow \x00CB\x00EB 15 # e with dieresis uplow \x00CC\x00EC 24 # i with grave above uplow \x00CD\x00ED 24 # i with acute above uplow \x00CE\x00EE 24 # i with circumflex uplow \x00CF\x00EF 24 # i with dieresis uplow \x00D0\x00F0 15 # letter eth uplow \x00D1\x00F1 1345 # n with tilde uplow \x00D2\x00F2 135 # o with grave above uplow \x00D3\x00F3 135 # o with acute above uplow \x00D4\x00F4 135 # o with circumflex uplow \x00D5\x00F5 135 # o with tilde uplow \x00D6\x00F6 135 # o with dieresis # \x00D7 × multiplication sign ---------------------- uplow \x00D8\x00F8 135 # o with stroke uplow \x00D9\x00F9 136 # u with grave above uplow \x00DA\x00FA 136 # u with acute above uplow \x00DB\x00FB 136 # u with circumflex above uplow \x00DC\x00FC 136 # u with dieeresis uplow \x00DD\x00FD 13456 # y with acute above uplow \x00DE\x00FE 4-1456 # letter thorn letter \x00DF 2346 # small sharp s uplow \x0174\x0175 4-2456 w with circumflex uplow \x0176\x0177 4-13456 # y with circumflex uplow \x0178\x00ff 4-13456 # y with diaeresis uplow \x1ef2\x1ef3 4-13456 # y with grave largesign \x00C0 4-1 [C0] upper a grave largesign \x00E0 4-1 [E0] lower a grave largesign \x00C1 4-1 [C1] upper a acute largesign \x00E1 4-1 [E1] lower a acute largesign \x00C2 4-1 [C2] upper a circumflex largesign \x00E2 4-1 [E2] lower a circumflex largesign \x00C3 4-1 [C3] upper a tilde largesign \x00E3 4-1 [E3] lower a tilde largesign \x00C4 4-1 [C4] upper a dieresis largesign \x00E4 4-1 [E4] lower a dieresis largesign \x00C5 4-1 [C5] upper a ring largesign \x00E5 4-1 [E5] lower a ring largesign \x00C6 1-15 [C6] upper ae largesign \x00E6 1-15 [E6] lower ae largesign \x00C7 4-14 [C7] upper c cedilla largesign \x00E7 4-14 [E7] lower c cedilla largesign \x00C8 4-15 [C8] upper e grave largesign \x00E8 4-15 [E8] lower e grave largesign \x00C9 4-15 [C9] upper e acute largesign \x00E9 4-15 [E9] lower e acute largesign \x00CA 4-15 [CA] upper e circumflex largesign \x00EA 4-15 [EA] lower e circumflex largesign \x00CB 4-15 [CB] upper e dieresis largesign \x00EB 4-15 [EB] lower e dieresis largesign \x00CC 4-24 [CC] upper i grave largesign \x00EC 4-24 [EC] lower i grave largesign \x00CD 4-24 [CD] upper i acute largesign \x00ED 4-24 [ED] lower i acute largesign \x00CE 4-24 [CE] upper i circumflex largesign \x00EE 4-24 [EE] lower i circumflex largesign \x00CF 4-24 [CF] upper i dieresis largesign \x00EF 4-24 [EF] lower i dieresis largesign \x00D0 4-15 [D0] upper eth largesign \x00F0 4-15 [F0] lower eth largesign \x00D1 4-1345 [D1] upper n tilde largesign \x00F1 4-1345 [F1] lower n tilde largesign \x00D2 4-135 [D2] upper o grave largesign \x00F2 4-135 [F2] lower o grave largesign \x00D3 4-135 [D3] upper o acute largesign \x00F3 4-135 [F3] lower o acute largesign \x00D4 4-135 [D4] upper o circumflex largesign \x00F4 4-135 [F4] lower o circumflex largesign \x00D5 4-135 [D5] upper o tilde largesign \x00F5 4-135 [F5] lower o tilde largesign \x00D6 4-135 [D6] upper o dieresis largesign \x00F6 4-135 [F6] lower o dieresis largesign \x00D8 4-135 [D8] upper o slash largesign \x00f8 4-135 [F8] lower o slash largesign \x00D9 4-136 [D9] upper u grave largesign \x00F9 4-136 [F9] lower u grave largesign \x00DA 4-136 [DA] upper u acute largesign \x00FA 4-136 [FA] lower u acute largesign \x00DB 4-136 [DB] upper u circumflex largesign \x00FB 4-136 [FB] lower u circumflex largesign \x00DC 4-136 [DC] upper u dieresis largesign \x00FC 4-136 [FC] lower u dieresis largesign \x00DD 4-13456 [DD] upper y acute largesign \x00FD 4-13456 [FD] lower y acute largesign \x00DE 4-2345 [DE] upper t horn largesign \x00FE 4-2345 [FE] lower t horn largesign \x00DF 234-234 (DF) lower ss largesign \x0174 4-2456 lower w circumflex largesign \x0175 4-2456 upper w circumflex letter \x0176 4-13456 upper y circumflex letter \x0177 4-13456 lower y circumflex largesign \x0178 4-13456 upper y with dieresis largesign \x00FF 4-13456 lower y with dieresis largesign \x1EF2 4-13456 upper y with grave largesign \x1EF3 4-13456 lower y with grave # punctuation prepunc ( 236 postpunc ) 356 begword ` 6-236 prepunc " 2356 postpunc " 2356 prepunc ' 6-236 postpunc ' 356-3 sign # 456-1456 # Pound, number sign, hash always # 456-1456 sign \x20AC 4-15 # euro sign atend of number midnum , 2 postpunc , 2 decpoint . 256 midnum - 36 hyphen - 36 #capsnocont postpunc . 256 postpunc ; 23 midnum : 25 postpunc : 25 postpunc ! 235 midnum / 34 always / 34 always < 5-13 always > 46-2 punctuation ? 26 sign % 123456 endnum % 123456 midnum ^ 45 always ^ 45 always ~ 456-45 always & 12346 midnum * 35 midnum + 235 always * 35-35 midword \x2019 3 # stupid smart apostrophe always [ 156 always ] 146 always { 56-236 always } 56-356 prepunc ` 6-236 always @ 4-1-2345 always \\ 456-16 always | 456-1256 always \s-\s 36-36 always ... 3-3-3 always .\s.\s. 3-3-3 . . . begnum $ 46 always $ 4-256 endword (s) 2356-234-2356 # Vulgar Fractions sign \x00BD 3456-1-34-12 # one half sign \x00BC 3456-1-34-145 # one fourth sign \x00BE 3456-14-34-145 # three fourths sign \x2153 3456-1-34-14 # one third sign \x2154 3456-12-34-14 # two thirds sign \x215B 3456-1-34-125 # one eighth sign \x215C 3456-14-34-125 # three eighths sign \x215D 3456-15-34-125 # five eighths sign \x215E 3456-1245-34-125 # seven eighths sign \x00B1 346-36 # plus or minus sign \x00B2 45-23 sign \x00B3 45-25 postpunc \x00B2 45-23-456 sign \x00B3 45-25-456 always \x00B2 45-23 always \x00B2 45-25 always \x00BA 56-145-1245 sign \x2122 45-2345 # trade mark symbol liblouis-2.5.3/tables/gr-bb.ctb0000664000175000017500000005257212161041546013236 00000000000000# liblouis: Table for Septuagint and Greek New Testament in Unicode space \t 7 tab space \s 0 blank space \x000a 0 newline space \x000d 0 carriage return include loweredDigits6Dots.uti include latinLetterDef6Dots.uti punctuation , 6 punctuation ; 56 punctuation : 156 punctuation . 46 punctuation ! 2346 punctuation " 5 punctuation ' 3 punctuation ( 12356 punctuation ) 23456 punctuation - 36 sign _ 456 math < 126 math = 123456 math > 345 sign % 146 math + 346 math ~ 45 sign ` 4 sign & 12346 sign $ 1246 punctuation ? 1456 punctuation { 246 punctuation [ 2467 punctuation } 12456 punctuation ] 124567 sign ^ 457 sign @ 47 sign # 3456 sign \\ 12567 sign | 1256 math / 34 sign * 16 space \x00a0 9 unbreakable space punctuation \x2011 36 punctuation \x2014 36-36 punctuation \x2019 3 punctuation \x201c 236 punctuation \x201d 356 # accented letters letter \x00e9 4-15 letter \x00da 4-136 letter \x00f6 4-135 letter \x00e6 4-15 letter \x00e0 4-1 replace \x0088 # CHARACTER TABULATION SET replace \x0089 # CHARACTER TABULATION WITH JUSTIFICATION midnum \x0009 46 always ? 56 always / 0-456-34-0 always // 0-456-34-34-0 # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign capsign 6 begcaps 6-6 endcaps 6-3 firstwordital 46-46 lastworditalbefore 46 lenitalphrase 4 firstwordbold 456-456 lastwordboldbefore 456 lenboldphrase 4 begcomp 456-346 endcomp 456-156 # the decimal digits include litdigits6Dots.uti # Letters are defined in en-chardefs # punctuation prepunc ( 2356 postpunc ) 2356 prepunc " 236 postpunc " 356 prepunc ' 6-236 postpunc ' 356-3 word 'em = word 'tis = word 'twas = begnum # 4 print number sign before number midnum , 2 postpunc , 2 decpoint . 46 midnum - 36 hyphen - 36 #capsnocont postpunc . 256 postpunc ; 23 midnum : 25 postpunc : 25 postpunc ! 235 midnum / 34 always / 456-34 always < 5-13 always = 46-13 always > 46-2 postpunc ? 236 endnum % 4-356 midnum ^ 45 always ^ 456-126 always ~ 4-156 always & 456-12346 midnum * 4-16 always * 35-35 always [ 456-12356 always ] 456-23456 always { 6-2356 always } 2356-3 prepunc ` 6-236 always @ 4-1 always \\ 456-16 always | 456-1256 always \s-\s 36-36 always ... 3-3-3 always .\s.\s. 3-3-3 . . . begnum $ 256 always $ 256-3456 # special character sequences compbrl :// URLs compbrl () compbrl www. compbrl .com compbrl .edu compbrl .gov compbrl .mil compbrl .net compbrl .org # include countries.cti compbrl .doc compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip sign \x00A7 4-234 SECTION SIGN sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN letter \x0391 6-1 GREEK CAPITAL LETTER ALPHA 03B1 letter \x0392 6-12 GREEK CAPITAL LETTER BETA 03B2 letter \x0393 6-1245 GREEK CAPITAL LETTER GAMMA 03B3 letter \x0394 6-145 GREEK CAPITAL LETTER DELTA 03B4 letter \x0395 6-15 GREEK CAPITAL LETTER EPSILON 03B5 letter \x0396 6-1356 GREEK CAPITAL LETTER ZETA 03B6 letter \x0397 6-126 GREEK CAPITAL LETTER ETA 03B7 letter \x0398 6-1456 GREEK CAPITAL LETTER THETA 03B8 letter \x0399 6-24 GREEK CAPITAL LETTER IOTA 03B9 letter \x039A 6-13 GREEK CAPITAL LETTER KAPPA 03BA letter \x039B 6-123 GREEK CAPITAL LETTER LAMDA GREEK CAPITAL LETTER LAMBDA 03BB letter \x039C 6-134 GREEK CAPITAL LETTER MU 03BC letter \x039D 6-1345 GREEK CAPITAL LETTER NU 03BD letter \x039E 6-1346 GREEK CAPITAL LETTER XI 03BE letter \x039F 6-135 GREEK CAPITAL LETTER OMICRON 03BF letter \x03A0 6-1234 GREEK CAPITAL LETTER PI 03C0 letter \x03A1 6-1235 GREEK CAPITAL LETTER RHO 03C1 letter \x03A3 6-234 GREEK CAPITAL LETTER SIGMA 03C3 letter \x03A4 6-136 GREEK CAPITAL LETTER TAU 03C4 letter \x03A5 6-136 GREEK CAPITAL LETTER UPSILON 03C5 letter \x03A6 6-124 GREEK CAPITAL LETTER PHI 03C6 letter \x03A7 6-12346 GREEK CAPITAL LETTER CHI 03C7 letter \x03A8 6-1246 GREEK CAPITAL LETTER PSI 03C8 letter \x03A9 6-2456 GREEK CAPITAL LETTER OMEGA 03C9 letter \x03B1 1 GREEK SMALL LETTER ALPHA 0391 0391 letter \x03B2 12 GREEK SMALL LETTER BETA 0392 0392 letter \x03B3 1245 GREEK SMALL LETTER GAMMA 0393 0393 letter \x03B4 145 GREEK SMALL LETTER DELTA 0394 0394 letter \x03B5 15 GREEK SMALL LETTER EPSILON 0395 0395 letter \x03B6 1356 GREEK SMALL LETTER ZETA 0396 0396 letter \x03B7 156 GREEK SMALL LETTER ETA 0397 0397 letter \x03B8 1456 GREEK SMALL LETTER THETA 0398 0398 letter \x03B9 24 GREEK SMALL LETTER IOTA 0399 0399 letter \x03BA 13 GREEK SMALL LETTER KAPPA 039A 039A letter \x03BB 123 GREEK SMALL LETTER LAMDA GREEK SMALL LETTER LAMBDA 039B 039 letter \x03BC 134 GREEK SMALL LETTER MU 039C 039C letter \x03BD 1345 GREEK SMALL LETTER NU 039D 039D letter \x03BE 1346 GREEK SMALL LETTER XI 039E 039E letter \x03BF 135 GREEK SMALL LETTER OMICRON 039F 039F letter \x03C0 1234 GREEK SMALL LETTER PI 03A0 03A0 letter \x03C1 1235 GREEK SMALL LETTER RHO 03A1 03A1 letter \x03C2 234 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3 letter \x03C3 234 GREEK SMALL LETTER SIGMA 03A3 03A3 letter \x03C4 2345 GREEK SMALL LETTER TAU 03A4 03A4 letter \x03C5 136 GREEK SMALL LETTER UPSILON 03A5 03A5 letter \x03C6 124 GREEK SMALL LETTER PHI 03A6 03A6 letter \x03C7 12346 GREEK SMALL LETTER CHI 03A7 03A7 letter \x03C8 125 GREEK SMALL LETTER PSI 03A8 03A8 letter \x03C9 2456 GREEK SMALL LETTER OMEGA 03A9 03A9 letter \x03ca 4-236 unknown letter \x03cb 4-236 unknown letter \x03D5 124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI letter \x1F00 4-1 GREEK SMALL LETTER ALPHA WITH PSILI 03B1 0313 1F08 letter \x1F01 4-1 GREEK SMALL LETTER ALPHA WITH DASIA 03B1 0314 1F09 letter \x1F02 d-1 GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA 1F00 letter \x1F03 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA 1F01 letter \x1F04 4-1 GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA 1F00 letter \x1F05 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA 1F01 letter \x1F06 4-1 GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI letter \x1F07 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI letter \x1F08 4-1 GREEK CAPITAL LETTER ALPHA WITH PSILI 0391 0313 1F00 # \x1F09 GREEK CAPITAL LETTER ALPHA WITH DASIA 0391 0314 1F01 # \x1F0A GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA 1F08 0300 1 # \x1F0B GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA 1F09 0300 1 # \x1F0C GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA 1F08 0301 1F # \x1F0D GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA 1F09 0301 1F # \x1F0E GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI 1F08 0342 # \x1F0F GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI 1F09 0342 letter \x1F10 4-15 GREEK SMALL LETTER EPSILON WITH PSILI 03B5 0313 1F18 letter \x1F11 4-15 GREEK SMALL LETTER EPSILON WITH DASIA 03B5 0314 1F19 letter \x1F12 4-15 GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA 1F10 letter \x1F13 4-15 GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA 1F11 letter \x1F14 4-15 GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA 1F10 letter \x1F15 4-15 GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA 1F11 # \x1F18 GREEK CAPITAL LETTER EPSILON WITH PSILI 0395 0313 1F10 # \x1F19 GREEK CAPITAL LETTER EPSILON WITH DASIA 0395 0314 1F11 # \x1F1A GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA 1F18 0300 # \x1F1B GREEK CAPITAL LETTER EPSILON WITH DASIA AND VARIA 1F19 0300 # \x1F1C GREEK CAPITAL LETTER EPSILON WITH PSILI AND OXIA 1F18 0301 # \x1F1D GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA 1F19 0301 letter \x1F20 4-15 GREEK SMALL LETTER ETA WITH PSILI 03B7 0313 1F28 letter \x1F21 4-156 GREEK SMALL LETTER ETA WITH DASIA 03B7 0314 1F29 letter \x1F22 4-15 GREEK SMALL LETTER ETA WITH PSILI AND VARIA 1F20 letter \x1F23 4-156 GREEK SMALL LETTER ETA WITH DASIA AND VARIA 1F21 letter \x1F24 4-156 GREEK SMALL LETTER ETA WITH PSILI AND OXIA 1F20 0301 letter \x1F25 4-156 GREEK SMALL LETTER ETA WITH DASIA AND OXIA 1F21 0301 letter \x1F26 4-156 GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI letter \x1F27 4-15 GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI # \x1F28 GREEK CAPITAL LETTER ETA WITH PSILI 0397 0313 1F20 # \x1F29 GREEK CAPITAL LETTER ETA WITH DASIA 0397 0314 1F21 # \x1F2A GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA 1F28 0300 1F2 # \x1F2B GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA 1F29 0300 1F2 # \x1F2C GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA 1F28 0301 1F24 # \x1F2D GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA 1F29 0301 1F25 # \x1F2E GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI 1F28 0342 # \x1F2F GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI 1F29 0342 letter \x1F30 4-24 GREEK SMALL LETTER IOTA WITH PSILI 03B9 0313 1F38 letter \x1F31 4-24 GREEK SMALL LETTER IOTA WITH DASIA 03B9 0314 1F39 letter \x1F32 4-24 GREEK SMALL LETTER IOTA WITH PSILI AND VARIA 1F30 letter \x1F33 4-24 GREEK SMALL LETTER IOTA WITH DASIA AND VARIA 1F31 letter \x1F34 4-24 GREEK SMALL LETTER IOTA WITH PSILI AND OXIA 1F30 letter \x1F35 4-24 GREEK SMALL LETTER IOTA WITH DASIA AND OXIA 1F31 letter \x1F36 4-24 GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI letter \x1F37 4-24 GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI # \x1F38 GREEK CAPITAL LETTER IOTA WITH PSILI 0399 0313 1F30 # \x1F39 GREEK CAPITAL LETTER IOTA WITH DASIA 0399 0314 1F31 # \x1F3A GREEK CAPITAL LETTER IOTA WITH PSILI AND VARIA 1F38 0300 1F # \x1F3B GREEK CAPITAL LETTER IOTA WITH DASIA AND VARIA 1F39 0300 1F # \x1F3C GREEK CAPITAL LETTER IOTA WITH PSILI AND OXIA 1F38 0301 1F3 # \x1F3D GREEK CAPITAL LETTER IOTA WITH DASIA AND OXIA 1F39 0301 1F3 # \x1F3E GREEK CAPITAL LETTER IOTA WITH PSILI AND PERISPOMENI 1F38 0342 N # \x1F3F GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI 1F39 0342 N letter \x1F40 4-135 GREEK SMALL LETTER OMICRON WITH PSILI 03BF 0313 letter \x1F41 4-135 GREEK SMALL LETTER OMICRON WITH DASIA 03BF 0314 letter \x1F42 4-135 GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA letter \x1F43 4-135 GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA letter \x1F44 4-135 GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA 1F40 letter \x1F45 4-135 GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA 1F41 # \x1F48 GREEK CAPITAL LETTER OMICRON WITH PSILI 039F 0313 1F40 # \x1F49 GREEK CAPITAL LETTER OMICRON WITH DASIA 039F 0314 1F41 # \x1F4A GREEK CAPITAL LETTER OMICRON WITH PSILI AND VARIA 1F48 0300 # \x1F4B GREEK CAPITAL LETTER OMICRON WITH DASIA AND VARIA 1F49 0300 # \x1F4C GREEK CAPITAL LETTER OMICRON WITH PSILI AND OXIA 1F48 0301 # \x1F4D GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA 1F49 0301 letter \x1F50 4-136 GREEK SMALL LETTER UPSILON WITH PSILI 03C5 0313 letter \x1F51 4-136 GREEK SMALL LETTER UPSILON WITH DASIA 03C5 0314 letter \x1F52 4-136 GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA letter \x1F53 4-136 GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA 1F51 letter \x1F54 4-136 GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA 1F50 letter \x1F55 4-136 GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA 1F51 letter \x1F56 4-136 GREEK SMALL LETTER UPSILON WITH PSILI AND letter \x1F57 4-136 GREEK SMALL LETTER UPSILON WITH DASIA AND # PERISPOMENI 1F51 0342 # \x1F59 GREEK CAPITAL LETTER UPSILON WITH DASIA 03A5 0314 1F51 # \x1F5B GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA 1F59 0300 # \x1F5D GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA 1F59 0301 # \x1F5F GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI 1F59 0342 letter \x1F60 4-135 GREEK SMALL LETTER OMEGA WITH PSILI 03C9 0313 1F68 letter \x1F61 4-2456 GREEK SMALL LETTER OMEGA WITH DASIA 03C9 0314 1F69 letter \x1F62 4-2456 GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA 1F60 letter \x1F63 4-2456 GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA 1F61 letter \x1F64 4-2456 GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA 1F60 letter \x1F65 4-2456 GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA 1F61 letter \x1F66 4-2456 GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI letter \x1F67 4-2456 GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI # \x1F68 GREEK CAPITAL LETTER OMEGA WITH PSILI 03A9 0313 1F60 # \x1F69 GREEK CAPITAL LETTER OMEGA WITH DASIA 03A9 0314 1F61 # \x1F6A GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA 1F68 0300 1 # \x1F6B GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA 1F69 0300 1 # \x1F6C GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA 1F68 0301 1F # \x1F6D GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA 1F69 0301 1F # \x1F6E GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI 1F68 0342 # \x1F6F GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI 1F69 0342 letter \x1F70 4-1 GREEK SMALL LETTER ALPHA WITH VARIA 03B1 0300 1FBA letter \x1F71 4-1 GREEK SMALL LETTER ALPHA WITH OXIA 03AC 1FBB 1FBB letter \x1F72 4-15 GREEK SMALL LETTER EPSILON WITH VARIA 03B5 0300 1FC8 letter \x1F73 4-15 GREEK SMALL LETTER EPSILON WITH OXIA 03AD 1FC9 1FC9 letter \x1F74 4-156 GREEK SMALL LETTER ETA WITH VARIA 03B7 0300 1FCA letter \x1F75 4-156 GREEK SMALL LETTER ETA WITH OXIA 03AE 1FCB 1FCB letter \x1F76 4-24 GREEK SMALL LETTER IOTA WITH VARIA 03B9 0300 1FDA letter \x1F77 4-24 GREEK SMALL LETTER IOTA WITH OXIA 03AF 1FDB 1FDB letter \x1F78 4-135 GREEK SMALL LETTER OMICRON WITH VARIA 03BF 0300 letter \x1F79 4-135 GREEK SMALL LETTER OMICRON WITH OXIA 03CC 1FF9 1FF9 letter \x1F7A 4-136 GREEK SMALL LETTER UPSILON WITH VARIA 03C5 0300 letter \x1F7B 4-136 GREEK SMALL LETTER UPSILON WITH OXIA 03CD 1FEB 1FEB letter \x1F7C 4-135 GREEK SMALL LETTER OMEGA WITH VARIA 03C9 0300 1FFA letter \x1F7D 4-2456 GREEK SMALL LETTER OMEGA WITH OXIA 03CE 1FFB 1FFB letter \x1F80 4-1 GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI letter \x1F81 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI letter \x1F82 4-1 GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND # YPOGEGRAMMENI 1F0 letter \x1F83 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND # YPOGEGRAMMENI 1F0 letter \x1F84 4-1 GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND # YPOGEGRAMMENI 1F04 letter \x1F85 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND # YPOGEGRAMMENI 1F05 letter \x1F86 4-1 GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI # AND YPOGEGRAMMENI Ll 0 letter \x1F87 4-1 GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI # AND YPOGEGRAMMENI Ll 0 # \x1F88 GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI Lt 1F08 0345 # \x1F89 GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI Lt 1F09 0345 # \x1F8A GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI Lt # \x1F8B GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI Lt # \x1F8C GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI Lt 1 # \x1F8D GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI Lt 1 # \x1F8E GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI L # \x1F8F GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI L letter \x1F90 4-156 GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI letter \x1F91 4-156 GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI letter \x1F92 4-156 GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND # YPOGEGRAMMENI 1F22 letter \x1F93 4-156 GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND # YPOGEGRAMMENI 1F23 letter \x1F94 4-156 GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND # YPOGEGRAMMENI 1F24 0 letter \x1F95 4-156 GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND # YPOGEGRAMMENI 1F25 0 letter \x1F96 4-156 GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI # AND YPOGEGRAMMENI letter \x1F97 4-156 GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI # AND YPOGEGRAMMENI # \x1F98 GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI Lt 1F28 0345 # \x1F99 GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI Lt 1F29 0345 # \x1F9A GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI Lt 1F # \x1F9B GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI Lt 1F # \x1F9C GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI Lt 1F2 # \x1F9D GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI Lt 1F2 # \x1F9E GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI Lt # \x1F9F GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI Lt letter \x1FA0 4-135 GREEK SMALL LETTER OMEGA WITH PSILI AND # YPOGEGRAMMENI 1F60 0345 letter \x1FA1 4-135 GREEK SMALL LETTER OMEGA WITH DASIA AND # YPOGEGRAMMENI 1F61 0345 letter \x1FA2 4-135 GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND # YPOGEGRAMMENI 1F6 letter \x1FA3 4-135 GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND # YPOGEGRAMMENI 1F6 letter \x1FA4 4-135 GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND # YPOGEGRAMMENI 1F64 letter \x1FA5 4-135 GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND # YPOGEGRAMMENI 1F65 letter \x1FA6 4-135 GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI # AND YPOGEGRAMMENI Ll 0 letter \x1FA7 4-135 GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI # AND YPOGEGRAMMENI Ll 0 # \x1FA8 GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI Lt 1F68 0345 # \x1FA9 GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI Lt 1F69 0345 # \x1FAA GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI Lt # \x1FAB GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI Lt # \x1FAC GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI Lt 1 # \x1FAD GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI Lt 1 # \x1FAE GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI L # \x1FAF GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI L # \x1FB0 GREEK SMALL LETTER ALPHA WITH VRACHY 03B1 0306 1FB8 1FB8 # \x1FB1 GREEK SMALL LETTER ALPHA WITH MACRON 03B1 0304 1FB9 1FB9 # \x1FB2 GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI 1F70 0345 letter \x1FB3 4-1 GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI 03B1 0345 letter \x1FB4 4-1 GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI letter \x1FB6 4-1 GREEK SMALL LETTER ALPHA WITH PERISPOMENI 03B1 0342 letter \x1FB7 4-1 GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND # YPOGEGRAMMENI 1FB6 03 # \x1FB8 GREEK CAPITAL LETTER ALPHA WITH VRACHY 0391 0306 1FB0 # \x1FB9 GREEK CAPITAL LETTER ALPHA WITH MACRON 0391 0304 1FB1 # \x1FBA GREEK CAPITAL LETTER ALPHA WITH VARIA 0391 0300 1F70 # \x1FBB GREEK CAPITAL LETTER ALPHA WITH OXIA 0386 1F71 # \x1FBC GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI Lt 0391 0345 1F # \x1FBD GREEK KORONIS 0020 0313 # \x1FBE GREEK PROSGEGRAMMENI 03B9 0399 0399 # \x1FBF GREEK PSILI 0020 0313 # \x1FC0 GREEK PERISPOMENI 0020 0342 # \x1FC1 GREEK DIALYTIKA AND PERISPOMENI 00A8 0342 letter \x1FC2 4-156 GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI letter \x1FC3 4-156 GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI 03B7 0345 letter \x1FC4 4-156 GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI letter \x1FC6 4-156 GREEK SMALL LETTER ETA WITH PERISPOMENI 03B7 0342 letter \x1FC7 4-156 GREEK SMALL LETTER ETA WITH PERISPOMENI AND # YPOGEGRAMMENI 1FC6 0345 # \x1FC8 GREEK CAPITAL LETTER EPSILON WITH VARIA 0395 0300 1F72 # \x1FC9 GREEK CAPITAL LETTER EPSILON WITH OXIA 0388 1F73 # \x1FCA GREEK CAPITAL LETTER ETA WITH VARIA 0397 0300 1F74 # \x1FCB GREEK CAPITAL LETTER ETA WITH OXIA 0389 1F75 # \x1FCC GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI Lt 0397 0345 1FC3 # \x1FCD GREEK PSILI AND VARIA 1FBF 0300 # \x1FCE GREEK PSILI AND OXIA 1FBF 0301 # \x1FCF GREEK PSILI AND PERISPOMENI 1FBF 0342 letter \x1FD0 4-24 GREEK SMALL LETTER IOTA WITH VRACHY 03B9 0306 1FD8 letter \x1FD1 4-24 GREEK SMALL LETTER IOTA WITH MACRON 03B9 0304 1FD9 letter \x1FD2 4-24 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA letter \x1FD3 4-24 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA 0390 letter \x1FD6 4-24 GREEK SMALL LETTER IOTA WITH PERISPOMENI 03B9 0342 # \x1FD7 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI 03CA 0342 # \x1FD8 GREEK CAPITAL LETTER IOTA WITH VRACHY 0399 0306 1FD0 # \x1FD9 GREEK CAPITAL LETTER IOTA WITH MACRON 0399 0304 1FD1 # \x1FDA GREEK CAPITAL LETTER IOTA WITH VARIA 0399 0300 1F76 # \x1FDB GREEK CAPITAL LETTER IOTA WITH OXIA 038A 1F77 # \x1FDD GREEK DASIA AND VARIA 1FFE 0300 # \x1FDE GREEK DASIA AND OXIA 1FFE 0301 # \x1FDF GREEK DASIA AND PERISPOMENI 1FFE 0342 letter \x1FE0 4-136 GREEK SMALL LETTER UPSILON WITH VRACHY 03C5 0306 letter \x1FE1 4-136 GREEK SMALL LETTER UPSILON WITH MACRON 03C5 0304 letter \x1FE2 4-136 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA letter \x1FE3 4-136 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA letter \x1FE4 4-1235 GREEK SMALL LETTER RHO WITH PSILI 03C1 0313 letter \x1FE5 4-1235 GREEK SMALL LETTER RHO WITH DASIA 03C1 0314 1FEC letter \x1FE6 4-136 GREEK SMALL LETTER UPSILON WITH PERISPOMENI 03C5 # \x1FE7 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI 03CB 0342 # \x1FE8 GREEK CAPITAL LETTER UPSILON WITH VRACHY 03A5 0306 1FE0 # \x1FE9 GREEK CAPITAL LETTER UPSILON WITH MACRON 03A5 0304 1FE1 # \x1FEA GREEK CAPITAL LETTER UPSILON WITH VARIA 03A5 0300 1F7A # \x1FEB GREEK CAPITAL LETTER UPSILON WITH OXIA 038E 1F7B # \x1FEC GREEK CAPITAL LETTER RHO WITH DASIA 03A1 0314 1FE5 # \x1FED GREEK DIALYTIKA AND VARIA 00A8 0300 # \x1FEE GREEK DIALYTIKA AND OXIA 0385 # \x1FEF GREEK VARIA 0060 letter \x1FF2 4-135 GREEK SMALL LETTER OMEGA WITH VARIA AND # YPOGEGRAMMENI 1F7C 0345 letter \x1FF3 4-135 GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI 03C9 letter \x1FF4 4-2456 GREEK SMALL LETTER OMEGA WITH OXIA AND # YPOGEGRAMMENI 03CE 0345 N letter \x1FF6 4-135 GREEK SMALL LETTER OMEGA WITH PERISPOMENI 03C9 0342 letter \x1FF7 4-2456 GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND # YPOGEGRAMMENI 1FF6 03 # \x1FF8 GREEK CAPITAL LETTER OMICRON WITH VARIA 039F 0300 1F78 # \x1FF9 GREEK CAPITAL LETTER OMICRON WITH OXIA 038C 1F79 # \x1FFA GREEK CAPITAL LETTER OMEGA WITH VARIA 03A9 0300 1F7C # \x1FFB GREEK CAPITAL LETTER OMEGA WITH OXIA 038F 1F7D # \x1FFC GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI Lt 03A9 0345 1F # \x1FFD GREEK OXIA 00B4 # \x1FFE GREEK DASIA 0020 0314 liblouis-2.5.3/tables/Se-Se-g1.utb0000664000175000017500000000740512161041546013503 00000000000000# liblouis: Swedish Grade 1 Braille Table # Created by Leon Ungier . locale Sweden include se-se.dis # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 exclamation mark x0021 punctuation " 56 double quote x0022 sign # 45-3456 number sign x0023 sign $ 4-234 dollar x0024 sign % 46-356 percent x0025 sign & 5-346 ampersand x0026 punctuation ' 5 apostrophe x0027 punctuation ( 236 left parenthesis x0028 punctuation ) 356 right parenthesis x0029 sign * 35 asterisk x002A math + 256 plus x002B punctuation , 2 coma x002C punctuation - 36 hyphen-minus x002D punctuation . 3 point x002E math / 34 solidus x002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B math < 246-3 less-than sign x003C math = 2356 equal sign x003D math > 135-2 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 45-12356 commercial at x0040 include latinLetterDef6Dots.uti punctuation [ 12356 left square bracket x005B sign \\ 45-34 reverse solidus x005C punctuation ] 23456 right square bracket x005D sign ^ 4 circumflex accent x005E sign _ 6 low line x005F sign ` 46 grave accent x0060 # a - z # 97 - 122 x0061-x007A punctuation { 6-236 left curly bracket x007B sign | 456 vertical line x007C punctuation } 6-356 right curly bracket x007D math ~ 45-2 tilde x007E space \X00A0 0 no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen x00A5 sign § 346 paragraph x00A7 sign © 6-14-135-1234-13456-1235-24-1245-125-2345 copyright x00A9 punctuation « 45-2356 left pointing double angle x00AB sign ° 4-356 degree sign x00B0 sign ² 4-6-126 superscript 2 x00B2 sign ³ 4-6-146 superscript 3 x00B3 sign ¹ 4-6-16 superscript 1 x00B9 punctuation » 2356-12 right pointing double angle x00BB math ¼ 6-16-34-1456 vulgar fraction 1 quarter x00BC math ½ 6-16-34-126 vulgar fraction one half x00BD math ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 A with grave x00C0 uplow Ää 345 a with diaeresis x00C4 uplow Ã…Ã¥ 16 A with ring above x00C5 uplow \x00C8\x00E8 2346 E with grave above x00C8 uplow Éé 123456 E with acute above x00C9 uplow Öö 246 x00D6 math × 1346 multiplication sign x00D7 uplow Üü 1256-1256 U with diaeresis x00DC math ÷ 34 division sign x00F7 punctuation \x2010 46 # 8208 hyphen punctuation \x2011 46 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 5 # 8216 smart single left quotation mark punctuation \x2019 5 # 8217 smart single right quotation mark punctuation \x201C 56 # 8220 smart opening double quote punctuation \x201D 56 # 8221 smart closing double quote punctuation \x201E 56 # 8222 smart double low quotation mark punctuation \x201F 56 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x20AC 15-136-1235-135 Euro sign # ----------------------- capsign 6 begcaps 6-6 # uncomment if you don't want capitalization sign \x00B7 3456 # so the line below compile numsign 3456 midnum , 2 midnum . 3 midnum + 256 midnum - 36 midnum / 34 midnum : 25 endnum # 56-3456 repeated ... 3-3-3 ellipsis repeated --- 36-36-36 repeated ___ 6-6-6 always \s--\s 36-36 tiret liblouis-2.5.3/tables/lt.ctb0000664000175000017500000000747012161041546012661 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Lituanian # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 236 QUESTION MARK uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation \x00a0 0 NO-BREAK SPACE uppercase \x010c 1467 LATIN CAPITAL LETTER C WITH CARON lowercase \x010d 146 LATIN SMALL LETTER C WITH CARON uppercase \x0160 23467 LATIN CAPITAL LETTER S WITH CARON lowercase \x0161 2346 LATIN SMALL LETTER S WITH CARON liblouis-2.5.3/tables/en-chess.ctb0000664000175000017500000000300012161041546013730 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # This text subtable defines braille representations for the chess figures in # terms of the letters that are used for them in the English language. # See: http://en.wikipedia.org/wiki/Chess_symbols_in_Unicode # generated by ttbtest punctuation \x2654 137 WHITE CHESS KING punctuation \x2655 123457 WHITE CHESS QUEEN punctuation \x2656 12357 WHITE CHESS ROOK punctuation \x2657 127 WHITE CHESS BISHOP punctuation \x2658 13457 WHITE CHESS KNIGHT punctuation \x2659 12347 WHITE CHESS PAWN punctuation \x265a 13 BLACK CHESS KING punctuation \x265b 12345 BLACK CHESS QUEEN punctuation \x265c 1235 BLACK CHESS ROOK punctuation \x265d 12 BLACK CHESS BISHOP punctuation \x265e 1345 BLACK CHESS KNIGHT punctuation \x265f 1234 BLACK CHESS PAWN liblouis-2.5.3/tables/ethio-g1.ctb0000664000175000017500000001572512161041546013661 00000000000000# Ethiopic-G1 # The Ethiopic Letters and punctuation Braille Table. # Developed by: # Dr. Tamru E. Belay # Adaptive Technology Specialist # Ethiopic Braille Programmer # E-mail: # Copyright: 2012 # This file is part of liblouis. # this table superseeds gez*.* # remove comment when this table has been completely debugged and verified. # ------------------------- include en-us-g1.ctb include braille-patterns.cti letter \x1200 125-26 letter \x1201 125-136 letter \x1202 125-24 letter \x1203 125-1 letter \x1204 125-15 letter \x1205 125 letter \x1206 125-135 letter \x1207 125-1346 letter \x1208 123-26 letter \x1209 123-136 letter \x120A 123-24 letter \x120B 123-1 letter \x120C 123-15 letter \x120D 123 letter \x120E 123-135 letter \x120F 123-1346 letter \x1210 126-26 letter \x1211 126-136 letter \x1212 126-24 letter \x1213 126-1 letter \x1214 126-15 letter \x1215 126 letter \x1216 126-135 letter \x1218 134-26 letter \x1219 134-136 letter \x121A 134-24 letter \x121B 134-1 letter \x121C 134-15 letter \x121D 134 letter \x121E 134-135 letter \x121F 134-1346 letter \x121F 134-1346 letter \x1220 1456-26 letter \x1221 1456-136 letter \x1222 1456-24 letter \x1223 1456-1 letter \x1224 1456-15 letter \x1225 1456 letter \x1226 1456-135 letter \x1227 1456-1346 letter \x1228 1235-26 letter \x1229 1235-136 letter \x122A 1235-24 letter \x122B 1235-1 letter \x122C 1235-15 letter \x122D 1235 letter \x122E 1235-135 letter \x122F 1235-1346 letter \x1230 234-26 letter \x1231 234-136 letter \x1232 234-24 letter \x1233 234-1 letter \x1234 234-15 letter \x1235 234 letter \x1236 234-135 letter \x1237 234-1346 letter \x1238 146-26 letter \x1239 146-136 letter \x123A 146-24 letter \x123B 146-1 letter \x123C 146-15 letter \x123D 146 letter \x123E 146-135 letter \x123F 146-1346 letter \x1240 12345-26 letter \x1241 12345-136 letter \x1242 12345-24 letter \x1243 12345-1 letter \x1244 12345-15 letter \x1245 12345 letter \x1246 12345-135 letter \x1247 12345-1346 letter \x1248 12456-26 letter \x124A 12456-136 letter \x124B 12456-24 letter \x124C 12456-1 letter \x124D 12456-15 letter \x124E 12456 letter \x124F 12456-135 letter \x1260 12-26 letter \x1261 12-136 letter \x1262 12-24 letter \x1263 12-1 letter \x1264 12-15 letter \x1265 12 letter \x1266 12-135 letter \x1267 12-1346 letter \x1268 1236-26 letter \x1269 1236-136 letter \x126A 1236-24 letter \x126B 1236-1 letter \x126C 1236-15 letter \x126D 1236 letter \x126E 1236-135 letter \x126F 1236-1346 letter \x1270 2345-26 letter \x1271 2345-136 letter \x1272 2345-24 letter \x1273 2345-1 letter \x1274 2345-15 letter \x1275 2345 letter \x1276 2345-135 letter \x1277 2345-1346 letter \x1278 16-26 letter \x1279 16-136 letter \x127A 16-24 letter \x127B 16-1 letter \x127C 16-15 letter \x127D 16 letter \x127E 16-135 letter \x127F 16-1346 letter \x1280 156-26 letter \x1281 156-136 letter \x1282 156-24 letter \x1283 156-1 letter \x1284 156-15 letter \x1285 156 letter \x1286 156-135 letter \x1290 1345-26 letter \x1291 1345-136 letter \x1292 1345-24 letter \x1293 1345-1 letter \x1294 1345-15 letter \x1295 1345 letter \x1296 1345-135 letter \x1297 1345-1346 letter \x1298 346-26 letter \x1299 346-136 letter \x129A 346-24 letter \x129B 346-1 letter \x129C 346-15 letter \x129D 346 letter \x129E 346-135 letter \x129F 346-1346 letter \x12A0 12356-26 letter \x12A1 12356-136 letter \x12A2 12356-24 letter \x12A3 12356-1 letter \x12A4 12356-15 letter \x12A5 12356 letter \x12A6 12356-135 letter \x12A7 5-12356 letter \x12A8 13-26 letter \x12A9 13-136 letter \x12AA 13-24 letter \x12AB 13-1 letter \x12Ac 13-15 letter \x12AD 13 letter \x12AE 13-135 letter \x12B3 13-1346 letter \x12B8 236-26 letter \x12B9 236-136 letter \x12BA 236-24 letter \x12BB 236-1 letter \x12BC 236-15 letter \x12BD 236 letter \x12BE 236-135 letter \x12AF 12456-1346 letter \x12C8 2456-26 letter \x12C9 2456-136 letter \x12CA 2456-24 letter \x12CB 2456-1 letter \x12CC 2456-15 letter \x12CD 2456 letter \x12CE 2456-135 letter \x12CF 2456-1346 letter \x12D0 1256-26 letter \x12D1 1256-136 letter \x12D2 1256-24 letter \x12D3 1256-1 letter \x12D4 1256-15 letter \x12D5 1256 letter \x12D6 1256-135 letter \x12d7 6-135 letter \x12D8 1356-26 letter \x12D9 1356-136 letter \x12DA 1356-24 letter \x12DB 1356-1 letter \x12DC 1356-15 letter \x12DD 1356 letter \x12DE 1356-135 letter \x12DF 1356-1346 letter \x12E0 356-26 letter \x12E1 356-136 letter \x12E2 356-24 letter \x12E3 356-1 letter \x12E4 356-15 letter \x12E5 356 letter \x12E6 356-135 letter \x12E7 356-1346 letter \x12E8 13456-26 letter \x12E9 13456-136 letter \x12EA 13456-24 letter \x12EB 13456-1 letter \x12EC 13456-15 letter \x12ED 13456 letter \x12EE 13456-135 letter \x12F0 145-26 letter \x12F1 145-136 letter \x12F2 145-24 letter \x12F3 145-1 letter \x12F4 145-15 letter \x12F5 145 letter \x12F6 145-135 letter \x12F7 145-1346 letter \x12F8 4-145-26 letter \x12F9 4-145-136 letter \x12FA 4-145-24 letter \x12FB 4-145-1 letter \x12FC 4-145-15 letter \x12FD 4-145 letter \x12FE 4-145-135 letter \x12FF 4-145-1346 letter \x1300 245-26 letter \x1301 245-136 letter \x1302 245-24 letter \x1303 245-1 letter \x1304 245-15 letter \x1305 245 letter \x1306 245-135 letter \x1307 245-1346 letter \x1308 1245-26 letter \x1309 1245-136 letter \x130A 1245-24 letter \x130B 1245-1 letter \x130C 1245-15 letter \x130D 1245 letter \x130E 1245-135 letter \x130F 1245-1346 letter \x1312 1245-2456-24 letter \x1320 23456-26 letter \x1321 23456-136 letter \x1322 23456-24 letter \x1323 23456-1 letter \x1324 23456-15 letter \x1325 23456 letter \x1326 23456-135 letter \x1327 23456-1346 letter \x1328 14-26 letter \x1329 14-136 letter \x132A 14-24 letter \x132B 14-1 letter \x132C 14-15 letter \x132D 14 letter \x132E 14-135 letter \x132F 14-1346 letter \x1338 2346-26 letter \x1339 2346-136 letter \x133A 2346-24 letter \x133B 2346-1 letter \x133C 2346-15 letter \x133D 2346 letter \x133E 2346-135 letter \x133F 2346-1346 letter \x1340 12346-26 letter \x1341 12346-136 letter \x1342 12346-24 letter \x1343 12346-1 letter \x1344 12346-15 letter \x1345 12346 letter \x1346 12346-135 letter \x1330 235-26 letter \x1331 235-136 letter \x1332 235-24 letter \x1333 235-1 letter \x1334 235-15 letter \x1335 235 letter \x1336 235-135 letter \x1337 235-1346 letter \x1348 124-26 letter \x1349 124-136 letter \x134A 124-24 letter \x134B 124-1 letter \x134C 124-15 letter \x134D 124 letter \x134E 124-135 letter \x134F 124-1346 letter \x1350 1234-26 letter \x1351 1234-136 letter \x1352 12345-24 letter \x1353 1234-1 letter \x1354 1234-15 letter \x1355 1234 letter \x1356 1234-135 letter \x1357 1234-1346 # The Ethiopic punctuation Braille Table punctuation \x1361 2 punctuation \x1362 256 punctuation \x1363 25 punctuation \x1364 56 punctuation \x1367 236 liblouis-2.5.3/tables/sr-translation.cti0000664000175000017500000000552412161041546015227 00000000000000# # Copyright (C) 2011 by Peter Engström # Copyright (C) 2011 by Monk Jeremiah, Manastir Decani # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # # SERBIAN # ======= # Authors: Peter Engström, Index Braille # Monk Jeremiah, Manastir Decani # # Date: Note: # 2011-03-28 Initial release # # --------------------------------------------------------------------------------------- numsign 3456 # number sign capsign 46 begcaps 4-6 prepunc `` 236 repeated ... 256-256-256 always \s­\s 36-36 always \s­\scom 36-36-14-135-134 always ... 256-256-256 always .\s.\s. 256-256-256 . . . #always \s­\s 36-36 #----------- SPECIAL SYLLABLES ------------------------------------------------ always \x0044\x017D 12456 # LATIN CAPITAL LETTER D + LATIN CAPITAL LETTER Z WITH CARON always \x0044\x017E 12456 # LATIN CAPITAL LETTER D + LATIN SMALL LETTER Z WITH CARON always \x0064\x017E 12456 # LATIN SMALL LETTER D + LATIN SMALL LETTER Z WITH CARON always LJ 126 # LJ always Lj 126 # Lj always lj 126 # lj always NJ 1246 # NJ always Nj 1246 # Nj always nj 1246 # nj #----------------------------------------------------------------------------- #----------- SPECIAL WORDS --------------------------------------------------- word injekc 24-1345-245-15-13-14 word injekt 24-1345-245-15-13-2345 word konjunk 13-135-1345-245-136-1345-13 word konjug 13-135-1345-245-136-1245 word nad¾iv 1345-1-145-2346-24-1236 word od¾iv 135-145-2346-24-1236 word pred¾ivot 1234-1235-15-145-2346-24-1236-135-2345 word tanjug 2345-1-1345-245-136-1245 #----------------------------------------------------------------------------- # mathematical symbols midnum ­ 36 endnum % 3456-245-356 #46 # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip # Local Variables: # coding: latin-2 # End: liblouis-2.5.3/tables/zh-hk.ctb0000664000175000017500000100370412161041546013260 00000000000000# liblouis: Chinese Hong Kong Cantonese braille Translation Table # Created by KM Yuen, Keny Yuen, Alex Ho and Eric Yip (16 July 2009) # # include: include en-us-comp8.ctb # The following table has 4 columns, # the first column is Opcode, # the second one is "\x" follow by Hexadecimal Value of the Chinese word, # the third one is braille dot pattern of the Chinese word # the fourth one (optional) is the Chinese word actually. sign \x003E 345 sign \x00A7 35-35 sign \x00AF 456-36 sign \x00B0 356 sign \x00B1 56-235-36 sign \x00F7 56-256 sign \x02C7 56-2345-24-14-13 sign \x03A9 456-135 sign \x03B1 456-1 sign \x03B2 46-12 sign \x03B8 46-1 sign \x03C0 56-1234-24-15 sign \x2013 36-36 sign \x2014 36-36 sign \x2018 6-236 sign \x2019 356-3 sign \x201D 356 sign \x2022 456-256 sign \x2023 2345-1235-24 sign \x2025 3-3 sign \x2026 3-3-3 sign \x2027 56-23 sign \x2032 356-3 sign \x2035 6-236 sign \x203B 35-35 sign \x2043 36 sign \x204C 123-1-1235-1235 sign \x204D 1235-1-1235-1235 sign \x2103 356-6-14 sign \x2105 14-135 sign \x2109 356-6-124 sign \x2160 56-6-24 sign \x2161 56-6-24-24 sign \x2162 56-6-24-24-24 sign \x2163 56-6-24-1236 sign \x2164 56-6-1236 sign \x2165 56-6-1236-24 sign \x2166 56-6-1236-24-24 sign \x2167 56-6-1236-24-24-24 sign \x2168 56-6-24-1346 sign \x2169 56-6-1346 sign \x2190 2456-25 sign \x2191 345-1235-246-1234-135-35-2345-234-235-6-1345 sign \x2192 25-1235 sign \x2193 345-1235-246-1234-135-35-2345-234-235-6-234 sign \x2196 345-1235-246-1234-135-35-2345-234-235-6-1345-2456 sign \x2197 345-1235-246-1234-135-35-2345-234-235-6-1345-15 sign \x2198 345-1235-246-1234-135-35-2345-234-235-6-234-15 sign \x2199 345-1235-246-1234-135-35-2345-234-235-6-234-2456 sign \x2215 34 sign \x221A 56-346 sign \x2223 456-123 sign \x2225 456-123 sign \x222A 124-136 sign \x2260 5-2356 sign \x2266 56-126-123456 sign \x2267 56-345-123456 sign \x2295 56-14-1235-135-234-234-35-14-123 sign \x2500 25-25 sign \x2502 456-123 sign \x250C 236 sign \x2514 456-125 sign \x251C 456-1235 sign \x2524 2456-123 sign \x253C 56-14-1235-135-234-234 sign \x2573 56-14-1235-135-234-234 sign \x2581 456-36 sign \x2582 456-36 sign \x2583 456-36 sign \x2584 456-36 sign \x2585 456-36 sign \x2586 456-36 sign \x2587 456-36 sign \x2588 456-36 sign \x2589 456-123 sign \x258A 456-123 sign \x258B 456-123 sign \x258C 456-123 sign \x258D 456-123 sign \x258E 456-123 sign \x258F 456-123 sign \x2594 456-36 sign \x25A0 456-234 sign \x25A1 456-234 sign \x25B2 456-145 sign \x25B3 456-145 sign \x25BC 456-2345 sign \x25BD 456-2345 sign \x25C6 456-2345 sign \x25C7 456-2345 sign \x25C9 245-2345 sign \x25CB 123-356-3 sign \x25CE 456-135 sign \x25CF 25 sign \x25E3 456-2345 sign \x25E4 456-2345 sign \x25E5 456-2345 sign \x25E6 2456-1235-1345-145 sign \x2605 35-35 sign \x2606 35-35 sign \x2619 1235-125 sign \x2640 345-1235-246-123456-124-15-134-1-123-15 sign \x2642 345-1235-246-123456-134-1-123-15 sign \x3001 45 sign \x3002 123456-0 sign \x3008 126 sign \x3009 345 sign \x300A 126-126 sign \x300B 345-345 sign \x300C 0-236 sign \x300D 356-0 sign \x300E 6-236 sign \x300F 356-3 sign \x3010 6-2356 sign \x3011 2356-3 sign \x3014 6-2356 sign \x3015 2356-3 sign \x301D 236 sign \x301E 356 sign \x3029 134-1246-3 sign \x32A3 14-356-4 sign \x338E 56-134-1245 sign \x338F 56-13-1245 sign \x339C 56-134-134 sign \x339D 56-14-134 sign \x339E 56-13-134 sign \x33A1 56-134-23 sign \x33C4 56-14-14 sign \x33CE 56-6-13-134 sign \x33D5 56-134-24-123 sign \x347A 14-234-4 sign \x34E4 13-35 㓤 sign \x35A1 15-2 ã–¡ sign \x35AD 23456-235 ã–­ sign \x35BF 245-15-6 ã–¿ sign \x35CE 13-12-4 ã—Ž sign \x35F3 2345-26 ã—³ sign \x35FE 125-156 ã—¾ sign \x3609 14-23456-5 㘉 sign \x3836 124-45-3 sign \x39F8 12346-14 㧸 sign \x39FE 124-35 ã§¾ sign \x3A18 234-1245-4 㨘 sign \x3A52 13-456-2 ã©’ sign \x3A67 1234-12456 ã©§ sign \x3B39 14-14 㬹 sign \x3BBE 123-56-6 sign \x3C0D 123-236-3 sign \x3DE7 23-3 ã·§ sign \x3DEB 125-356-4 ã·« sign \x3E74 13-1245 ã¹´ sign \x3F06 245-356-3 sign \x4065 1345-1235 ä¥ sign \x406A 14-345-1 äª sign \x40BB 14-14-2 ä‚» sign \x40D8 125-1245 sign \x44EA 245-1235-3 䓪 sign \x4606 125-23-1 䘆 sign \x47F4 1245-1245-4 䟴 sign \x4C7D 1346-56 ä±½ sign \x4E00 245-35 一 sign \x4E01 2345-356 ä¸ sign \x4E03 1346-35 七 sign \x4E07 134-45-2 万 sign \x4E08 14-25-2 丈 sign \x4E09 234-345 三 sign \x4E0A 234-25-2 上 sign \x4E0B 125-12-2 下 sign \x4E0C 13-125 丌 sign \x4E0D 1234-35 ä¸ sign \x4E0E 1456-6 与 sign \x4E0F 134-256-6 ä¸ sign \x4E10 1235-126-4 ä¸ sign \x4E11 1346-16-1 丑 sign \x4E14 1346-15-1 且 sign \x4E15 12346-125 丕 sign \x4E16 234-146-4 世 sign \x4E18 245-16 丘 sign \x4E19 1234-356-1 丙 sign \x4E1E 234-356-3 丞 sign \x4E1F 2345-13456 丟 sign \x4E21 123-25-1 両 sign \x4E26 1234-356-2 並 sign \x4E2B 12-0 丫 sign \x4E2D 14-236 中 sign \x4E2E 125-16 丮 sign \x4E30 124-236 丰 sign \x4E31 12345-45-4 丱 sign \x4E32 1346-23-4 串 sign \x4E33 1346-45-1 丳 sign \x4E38 23-1 丸 sign \x4E39 2345-45 丹 sign \x4E3B 14-1456-1 主 sign \x4E42 1245-346-2 乂 sign \x4E43 1345-346-6 乃 sign \x4E45 13-16-1 ä¹… sign \x4E47 23456-12456-5 sign \x4E48 13456-0 么 sign \x4E49 24-2 sign \x4E4B 14-24 之 sign \x4E4D 14-12-4 ä¹ sign \x4E4E 124-136-3 乎 sign \x4E4F 124-35-3 ä¹ sign \x4E52 1234-356 ä¹’ sign \x4E53 1234-456 乓 sign \x4E56 12345-346 ä¹– sign \x4E58 234-356-3 乘 sign \x4E59 12356-3 ä¹™ sign \x4E5C 134-35 乜 sign \x4E5D 13-16-1 ä¹ sign \x4E5E 125-35 乞 sign \x4E5F 245-12-6 也 sign \x4E69 13-125 乩 sign \x4E6A 1235-2456-3 乪 sign \x4E73 1456-6 ä¹³ sign \x4E78 1345-12-1 乸 sign \x4E7E 13-1345 ä¹¾ sign \x4E82 123-23-2 亂 sign \x4E86 123-13456-6 了 sign \x4E88 1456-6 予 sign \x4E8B 234-24-2 事 sign \x4E8C 24-2 二 sign \x4E8D 1346-12345 äº sign \x4E8E 1456-0 于 sign \x4E91 2456-1246-3 云 sign \x4E92 136-2 互 sign \x4E93 1235-125-3 亓 sign \x4E94 1245-6 五 sign \x4E95 14-2356-1 井 sign \x4E99 13-1245-1 亙 sign \x4E9B 234-15 些 sign \x4E9E 12-4 亞 sign \x4E9F 13-1235 亟 sign \x4EA1 134-56-3 亡 sign \x4EA2 1235-56-4 亢 sign \x4EA4 13-34 交 sign \x4EA5 125-126-2 亥 sign \x4EA6 245-1235-3 亦 sign \x4EA8 125-1245 亨 sign \x4EAB 125-25-1 享 sign \x4EAC 13-356 京 sign \x4EAD 23456-356-3 亭 sign \x4EAE 123-25-2 亮 sign \x4EB3 1234-12456-5 亳 sign \x4EB6 23456-45-1 亶 sign \x4EB9 134-2346-3 亹 sign \x4EBA 245-1246-3 人 sign \x4EC0 234-456-2 什 sign \x4EC1 245-1246-3 ä» sign \x4EC2 123-46-3 仂 sign \x4EC3 2345-356 仃 sign \x4EC4 14-46 仄 sign \x4EC6 12346-12345 仆 sign \x4EC7 234-16-3 仇 sign \x4EC8 123-46-3 仈 sign \x4EC9 14-25-1 仉 sign \x4ECA 13-456 今 sign \x4ECB 13-346-4 介 sign \x4ECD 245-356-3 ä» sign \x4ED4 14-146-1 ä»” sign \x4ED5 234-24-2 仕 sign \x4ED6 23456-12 ä»– sign \x4ED7 14-25-4 ä»— sign \x4ED8 124-136-2 付 sign \x4ED9 234-256 ä»™ sign \x4EDD 23456-236-3 ä» sign \x4EDE 245-1246-2 仞 sign \x4EDF 1346-256 仟 sign \x4EE1 1245-35-3 仡 sign \x4EE3 2345-126-2 代 sign \x4EE4 123-356-2 令 sign \x4EE5 24-6 以 sign \x4EE8 234-12 仨 sign \x4EE9 123-146-6 仩 sign \x4EF0 245-25-6 ä»° sign \x4EF2 14-236-2 仲 sign \x4EF3 12346-125-1 仳 sign \x4EF5 1245-6 仵 sign \x4EF6 13-256-2 ä»¶ sign \x4EF7 13-12-4 ä»· sign \x4EFB 245-456-2 ä»» sign \x4EFD 124-1246-2 份 sign \x4EFF 124-56-1 仿 sign \x4F00 14-236 ä¼€ sign \x4F01 1235-125-6 ä¼ sign \x4F02 1235-236-3 伂 sign \x4F03 1456-3 sign \x4F08 234-456-1 伈 sign \x4F09 1235-56-4 伉 sign \x4F0A 24-0 伊 sign \x4F0B 1235-26 伋 sign \x4F0D 1245-6 ä¼ sign \x4F0E 13-125-2 伎 sign \x4F0F 124-12345-3 ä¼ sign \x4F10 124-35-3 ä¼ sign \x4F11 245-16 休 sign \x4F12 13-1246-4 ä¼’ sign \x4F13 134-1236-3 sign \x4F14 1345-346-6 ä¼” sign \x4F15 124-136 伕 sign \x4F18 245-16 优 sign \x4F19 124-135-1 ä¼™ sign \x4F22 1245-12-3 ä¼¢ sign \x4F2D 23-3 ä¼­ sign \x4F2F 1234-13-5 伯 sign \x4F30 13-136-1 ä¼° sign \x4F33 234-23456-5 ä¼³ sign \x4F34 1234-2346-2 ä¼´ sign \x4F36 123-356-3 ä¼¶ sign \x4F38 234-1246 伸 sign \x4F3A 234-24-2 伺 sign \x4F3B 12346-356 ä¼» sign \x4F3C 1346-24-6 ä¼¼ sign \x4F3D 13-12 ä¼½ sign \x4F3E 12346-125 ä¼¾ sign \x4F42 14-356 sign \x4F43 2345-256-2 佃 sign \x4F46 2345-45-2 但 sign \x4F47 1346-1456-6 佇 sign \x4F48 1234-1236-4 佈 sign \x4F49 1235-245 佉 sign \x4F4C 1346-24-1 佌 sign \x4F4D 2456-146-2 ä½ sign \x4F4E 2345-146 低 sign \x4F4F 14-1456-2 ä½ sign \x4F50 14-135-4 ä½ sign \x4F51 245-16-2 佑 sign \x4F53 23456-146-1 体 sign \x4F54 14-235-4 ä½” sign \x4F55 125-135-3 何 sign \x4F57 23456-135-3 ä½— sign \x4F58 234-15-3 佘 sign \x4F59 1456-3 ä½™ sign \x4F5A 245-35-3 佚 sign \x4F5B 124-35-3 ä½› sign \x4F5C 14-12456-5 作 sign \x4F5D 1235-245 ä½ sign \x4F5E 1345-356-2 佞 sign \x4F5F 23456-236-3 佟 sign \x4F60 1345-125-6 ä½  sign \x4F62 1235-245-6 ä½¢ sign \x4F63 245-236-1 ä½£ sign \x4F64 1245-12-6 佤 sign \x4F67 1235-12 ä½§ sign \x4F69 12346-1256-4 佩 sign \x4F6A 1256-3 佪 sign \x4F6C 123-1236-1 佬 sign \x4F6F 245-25-3 佯 sign \x4F70 1234-13-5 ä½° sign \x4F73 13-346 ä½³ sign \x4F74 24-6 ä½´ sign \x4F75 1234-356-4 ä½µ sign \x4F76 13-35 ä½¶ sign \x4F77 125-1246-1 ä½· sign \x4F78 1356-3 佸 sign \x4F79 12345-146-1 ä½¹ sign \x4F7A 1346-23-3 佺 sign \x4F7B 23456-13456 ä½» sign \x4F7C 13-34-1 ä½¼ sign \x4F7D 1346-24-4 ä½½ sign \x4F7E 245-35-3 ä½¾ sign \x4F7F 234-24-1 使 sign \x4F80 245-356-3 ä¾€ sign \x4F81 234-1246 ä¾ sign \x4F82 23456-12456-5 sign \x4F83 125-1345-1 侃 sign \x4F84 14-35-3 侄 sign \x4F85 13-126 ä¾… sign \x4F86 123-126-3 來 sign \x4F87 24-3 侇 sign \x4F88 1346-24-1 侈 sign \x4F89 12456-12-1 侉 sign \x4F8B 123-146-2 例 sign \x4F8D 234-24-2 ä¾ sign \x4F8F 14-1456 ä¾ sign \x4F90 12345-1235 ä¾ sign \x4F91 245-16-2 侑 sign \x4F94 134-16-3 ä¾” sign \x4F96 123-234-3 ä¾– sign \x4F97 2345-236-2 ä¾— sign \x4F98 1346-12-4 侘 sign \x4F9A 234-234 侚 sign \x4F9B 13-236 ä¾› sign \x4F9C 14-16 侜 sign \x4F9D 24-0 ä¾ sign \x4FAE 134-1236-6 ä¾® sign \x4FAF 125-16-3 侯 sign \x4FB2 14-1246-4 ä¾² sign \x4FB5 1346-456 ä¾µ sign \x4FB6 123-245-6 ä¾¶ sign \x4FB7 13-12345-3 ä¾· sign \x4FB9 23456-356-6 ä¾¹ sign \x4FBA 234-456-3 侺 sign \x4FBF 1234-256-2 便 sign \x4FC2 125-146-2 ä¿‚ sign \x4FC3 1346-12345 促 sign \x4FC4 1245-135-3 ä¿„ sign \x4FC5 1235-16-3 ä¿… sign \x4FCA 14-234-4 俊 sign \x4FCD 123-25-3 ä¿ sign \x4FCE 14-135-1 俎 sign \x4FCF 1346-13456-4 ä¿ sign \x4FD0 123-125-2 ä¿ sign \x4FD1 245-236-1 ä¿‘ sign \x4FD4 256-6 ä¿” sign \x4FD7 14-12345-3 ä¿— sign \x4FD8 124-136 俘 sign \x4FDA 123-125-6 俚 sign \x4FDB 124-136-1 ä¿› sign \x4FDC 12346-356 俜 sign \x4FDD 1234-1236-1 ä¿ sign \x4FDE 1456-3 俞 sign \x4FDF 14-24-2 俟 sign \x4FE0 125-1234-3 ä¿  sign \x4FE1 234-234-4 ä¿¡ sign \x4FEC 234-24 sign \x4FEE 234-16 ä¿® sign \x4FEF 124-136-1 俯 sign \x4FF1 1235-245 俱 sign \x4FF3 12346-346-3 俳 sign \x4FF4 1346-256-6 ä¿´ sign \x4FF5 1234-13456-1 俵 sign \x4FF6 23456-1235 ä¿¶ sign \x4FF8 124-236-1 俸 sign \x4FFA 235-4 俺 sign \x4FFE 1234-125-1 俾 sign \x5000 1346-25 倀 sign \x5005 1346-245-4 倅 sign \x5006 123-25-6 倆 sign \x5007 23-1 倇 sign \x5008 123-126-3 sign \x5009 1346-56 倉 sign \x500B 13-135-4 個 sign \x500C 13-2346 倌 sign \x500D 12346-1256-6 å€ sign \x500F 234-12345 å€ sign \x5011 134-2346-3 們 sign \x5012 2345-1236-1 倒 sign \x5013 23456-345-3 倓 sign \x5014 12345-35-3 倔 sign \x5015 234-245-3 倕 sign \x5016 125-1245-2 倖 sign \x5017 12346-1245-3 倗 sign \x5018 23456-56-1 倘 sign \x5019 125-16-2 候 sign \x501A 24-1 倚 sign \x501C 23456-1235 倜 sign \x501E 13-356-2 倞 sign \x501F 14-15-4 借 sign \x5021 1346-25 倡 sign \x5023 124-56-1 倣 sign \x5025 125-236 倥 sign \x5026 13-23-2 倦 sign \x5028 13-245-4 倨 sign \x5029 234-256-2 倩 sign \x502A 1245-146-3 倪 sign \x502B 123-234-3 倫 sign \x502C 1346-246-5 倬 sign \x502D 2456-135 倭 sign \x502E 123-135-1 sign \x5033 14-24-2 倳 sign \x503C 14-1235-3 值 sign \x5041 1346-356 å sign \x5043 256-1 åƒ sign \x5046 1346-234-1 å† sign \x5047 13-12-1 å‡ sign \x5048 13-146-1 åˆ sign \x5049 2456-146-6 å‰ sign \x504C 245-15-2 åŒ sign \x504E 1256-0 åŽ sign \x504F 12346-256 å sign \x5053 46-0 å“ sign \x5055 13-346 å• sign \x5058 125-1345-3 sign \x505A 14-1236-2 åš sign \x505C 23456-356-3 åœ sign \x505D 1234-1256-4 å sign \x505E 12346-3 åž sign \x505F 2456-56-3 åŸ sign \x5060 13456-1 å  sign \x5061 14-345-4 å¡ sign \x5062 1346-16-1 å¢ sign \x5065 13-256-2 å¥ sign \x506A 1234-1235 åª sign \x506B 1346-24-6 å« sign \x506C 14-236-4 sign \x506D 134-256-6 å­ sign \x506F 24-1 å¯ sign \x5070 1235-146-4 å° sign \x5072 234-24 å² sign \x5074 14-46 å´ sign \x5075 14-356 åµ sign \x5076 1245-16-6 å¶ sign \x5077 23456-16 å· sign \x507A 14-12 åº sign \x507D 1245-146-2 å½ sign \x5080 124-346-4 å‚€ sign \x5085 124-136-2 å‚… sign \x508C 134-12-2 傌 sign \x508D 12346-56-3 å‚ sign \x508E 2345-256 傎 sign \x5091 13-23456-3 å‚‘ sign \x5092 125-146-3 å‚’ sign \x5094 125-235-4 å‚” sign \x5095 13-12456-5 å‚• sign \x5096 1346-56 å‚– sign \x5098 234-45-4 傘 sign \x5099 1234-125-2 å‚™ sign \x509A 125-34-2 傚 sign \x509C 13456-3 傜 sign \x509D 23456-1234-5 å‚ sign \x509E 1346-135 傞 sign \x50A2 13-12 å‚¢ sign \x50A3 23456-346-4 å‚£ sign \x50AC 1346-245 催 sign \x50AD 245-236-3 å‚­ sign \x50AE 14-1236 å‚® sign \x50AF 14-236-1 傯 sign \x50B2 1245-1236-2 傲 sign \x50B3 1346-23-3 傳 sign \x50B4 1456-1 å‚´ sign \x50B5 14-346-4 債 sign \x50B7 234-25 å‚· sign \x50BA 1346-146-4 傺 sign \x50BB 234-135-3 å‚» sign \x50BD 14-25 傽 sign \x50BE 1235-356 傾 sign \x50BF 256-0 å‚¿ sign \x50C2 123-16-3 僂 sign \x50C4 12346-13456-6 sign \x50C5 13-1246-1 僅 sign \x50C7 123-12345-3 僇 sign \x50C9 1346-235 僉 sign \x50CA 234-256 僊 sign \x50CE 14-45-2 僎 sign \x50CF 14-25-2 åƒ sign \x50D1 1235-13456-3 僑 sign \x50D3 23456-245-3 僓 sign \x50D4 14-23-1 僔 sign \x50D5 1234-12345-3 僕 sign \x50D6 125-125 僖 sign \x50D7 123-1236-3 僗 sign \x50DA 123-13456-3 僚 sign \x50DB 125-125 僛 sign \x50DD 234-45-3 åƒ sign \x50E3 1346-235-6 僣 sign \x50E4 2345-45-2 僤 sign \x50E5 125-13456 僥 sign \x50E6 14-16-2 僦 sign \x50E7 14-1245 僧 sign \x50E8 124-1246-6 僨 sign \x50E9 234-45-1 僩 sign \x50EC 14-13456 僬 sign \x50ED 1346-235-4 僭 sign \x50EE 23456-236-3 僮 sign \x50F0 1234-13-5 僰 sign \x50F1 13-136-4 僱 sign \x50F3 234-12345 僳 sign \x50F5 13-25 僵 sign \x50F6 134-1246-6 僶 sign \x50F8 13-456-4 僸 sign \x50F9 13-12-4 價 sign \x50FB 12346-1235 僻 sign \x50FD 14-16-4 僽 sign \x50FE 126-4 僾 sign \x50FF 234-146-4 僿 sign \x5100 24-3 å„€ sign \x5101 14-234-4 sign \x5102 1345-236-3 å„‚ sign \x5103 23456-45-1 儃 sign \x5104 245-1235 å„„ sign \x5106 13-356-1 儆 sign \x5107 125-23 儇 sign \x5108 1235-1256-1 儈 sign \x5109 13-235-2 儉 sign \x510A 1346-135-1 儊 sign \x510B 2345-345 å„‹ sign \x510C 13-13456 儌 sign \x510E 14-126-4 sign \x5110 1234-1246-4 å„ sign \x5112 1456-3 å„’ sign \x5113 23456-126-3 å„“ sign \x5114 1346-16-3 å„” sign \x5115 1346-346-3 å„• sign \x5117 24-6 å„— sign \x5118 14-234-1 儘 sign \x511C 1345-1245-3 儜 sign \x511F 234-25-3 償 sign \x5120 123-12346-3 å„  sign \x5121 123-245-6 å„¡ sign \x5126 1234-13456 儦 sign \x5129 1346-24-4 å„© sign \x512A 245-16 優 sign \x512D 1346-1246-4 å„­ sign \x5131 123-236-6 儱 sign \x5132 1346-1456-6 儲 sign \x5133 1346-345-3 儳 sign \x5135 234-1245 儵 sign \x5137 123-146-2 å„· sign \x5138 123-135-3 儸 sign \x5139 14-45-1 儹 sign \x513A 1345-135-3 儺 sign \x513B 23456-56-1 å„» sign \x513C 235-6 儼 sign \x513D 123-245-3 儽 sign \x513F 24-3 å„¿ sign \x5140 1245-35-3 å…€ sign \x5141 2456-1246-6 å… sign \x5143 23-3 å…ƒ sign \x5144 125-356 å…„ sign \x5145 1346-236 å…… sign \x5146 234-13456-2 å…† sign \x5147 125-236 å…‡ sign \x5148 234-256 å…ˆ sign \x5149 12345-56 å…‰ sign \x514B 125-46 å…‹ sign \x514C 2345-245-4 å…Œ sign \x514D 134-256-6 å… sign \x5152 24-3 å…’ sign \x5154 23456-1236-4 å…” sign \x5155 14-24-4 å…• sign \x5157 256-6 å…— sign \x5159 56-234-26-3-125-46 sign \x515A 2345-56-1 å…š sign \x515B 56-1346-256-125-46 sign \x515C 2345-16 å…œ sign \x515F 234-1246 å…Ÿ sign \x5162 13-356 å…¢ sign \x5165 245-26-3 å…¥ sign \x5167 1345-126-2 å…§ sign \x5168 1346-23-3 å…¨ sign \x5169 123-25-6 å…© sign \x516A 1456-3 sign \x516B 1234-2345-5 å…« sign \x516C 13-236 å…¬ sign \x516D 123-12345-3 å…­ sign \x516E 125-146-3 å…® sign \x5171 13-236-2 å…± sign \x5175 1234-356 å…µ sign \x5176 1235-125-3 å…¶ sign \x5177 13-245-2 å…· sign \x5178 2345-256-1 å…¸ sign \x517C 13-235 å…¼ sign \x5180 1235-125-4 冀 sign \x5187 134-1236-6 冇 sign \x5189 235-6 冉 sign \x518A 1346-13-5 冊 sign \x518D 14-126-4 å† sign \x518F 12345-356-1 å† sign \x5191 14-16-2 冑 sign \x5192 134-1236-2 冒 sign \x5193 13-16-4 冓 sign \x5194 125-245-1 冔 sign \x5195 134-256-6 冕 sign \x5197 245-236-1 冗 sign \x5198 245-16-3 冘 sign \x519A 1235-456-1 冚 sign \x519E 134-125-3 冞 sign \x519F 245-356 sign \x51A0 13-2346-4 冠 sign \x51A2 1346-236-1 冢 sign \x51A4 23-0 冤 sign \x51A5 134-356-6 冥 sign \x51A7 123-456-4 冧 sign \x51A8 124-136-4 sign \x51AA 134-1235-3 冪 sign \x51AC 2345-236 冬 sign \x51B0 1234-356 冰 sign \x51B1 136-2 冱 sign \x51B6 245-15-6 冶 sign \x51B7 123-14-6 冷 sign \x51BC 234-256-1 冼 sign \x51BD 123-23456-3 冽 sign \x51BE 12346-125-4 冾 sign \x51C4 1346-146 凄 sign \x51C6 14-234-1 准 sign \x51C8 14-356-2 凈 sign \x51C9 123-25-3 sign \x51CA 14-356-2 凊 sign \x51CB 2345-13456 凋 sign \x51CC 123-356-3 凌 sign \x51CD 2345-236-4 å‡ sign \x51D3 123-1346-3 sign \x51D4 1346-56 凔 sign \x51D8 234-24 凘 sign \x51DC 123-456-6 凜 sign \x51DD 245-356-3 å‡ sign \x51E0 13-125 几 sign \x51E1 124-45-3 凡 sign \x51E2 124-45-3 sign \x51ED 12346-1245-3 sign \x51F0 2456-56-3 凰 sign \x51F1 125-126-1 凱 sign \x51F3 2345-1245-4 凳 sign \x51F5 125-456-4 凵 sign \x51F6 125-236 凶 sign \x51F8 2345-35-3 凸 sign \x51F9 1345-26 凹 sign \x51FA 1346-1346 出 sign \x51FD 125-345-3 函 sign \x5200 2345-1236 刀 sign \x5201 2345-13456 åˆ sign \x5203 245-1246-2 刃 sign \x5206 124-1246 分 sign \x5207 1346-23456-5 切 sign \x5208 1245-346-2 刈 sign \x5209 13-125 刉 sign \x520A 125-1345-1 刊 sign \x520B 125-1345-1 sign \x520E 134-1246-6 刎 sign \x5211 245-356-3 刑 sign \x5212 2456-12 划 sign \x5213 23-3 刓 sign \x5216 12356-3 刖 sign \x5217 123-23456-3 列 sign \x521C 124-35 刜 sign \x521D 1346-135 åˆ sign \x5224 12346-2346-4 判 sign \x5225 1234-23456-3 別 sign \x5228 12346-34-3 刨 sign \x5229 123-125-2 利 sign \x522A 234-45 刪 sign \x522E 12345-2345-5 刮 sign \x5230 2345-1236-4 到 sign \x5232 12345-146 刲 sign \x5233 124-136 刳 sign \x5235 24-2 刵 sign \x5236 14-146-4 制 sign \x5237 1346-2345-5 刷 sign \x5238 13-23-4 券 sign \x523A 1346-24-4 刺 sign \x523B 125-46 刻 sign \x5241 2345-135-1 å‰ sign \x5243 23456-146-4 剃 sign \x5244 13-356-1 剄 sign \x5247 14-46 則 sign \x5249 1346-135-4 剉 sign \x524A 234-246-5 削 sign \x524B 125-46 剋 sign \x524C 1346-24-4 剌 sign \x524D 1346-256-3 å‰ sign \x524E 234-2345-5 剎 sign \x5252 1346-135-4 剒 sign \x5254 23456-1235 剔 sign \x5255 124-146-4 剕 sign \x5256 124-16-1 剖 sign \x525A 14-24-2 剚 sign \x525B 13-56 剛 sign \x525C 2346-1 剜 sign \x525D 134-12456 å‰ sign \x525E 13-125 剞 sign \x525F 14-12356-5 剟 sign \x5261 235-6 剡 sign \x5269 234-356-2 剩 sign \x526A 14-256-1 剪 sign \x526D 12345-0 剭 sign \x526E 12345-12-4 剮 sign \x526F 124-136-4 副 sign \x5272 13-124-5 割 sign \x5274 125-126-1 剴 sign \x5275 1346-56-4 創 sign \x5277 1346-45-1 剷 sign \x5278 23456-23-3 剸 sign \x527A 123-146-6 剺 sign \x527D 12346-13456-6 sign \x527F 14-13456-1 剿 sign \x5280 12345-2345-5 劀 sign \x5281 1346-13456-3 åŠ sign \x5282 1235-12356-5 劂 sign \x5283 2456-13-3 劃 sign \x5284 14-2345-5 劄 sign \x5287 1235-2456-3 劇 sign \x5288 12346-2456-5 劈 sign \x5289 123-16-3 劉 sign \x528A 1235-1256-1 劊 sign \x528C 12345-146-4 劌 sign \x528D 13-235-4 åŠ sign \x528F 23456-56 åŠ sign \x5291 14-146 劑 sign \x5293 24-2 劓 sign \x5296 1346-345-3 劖 sign \x5298 134-135-3 劘 sign \x5299 123-146-6 劙 sign \x529B 123-1235-3 力 sign \x529F 13-236 功 sign \x52A0 13-12 加 sign \x52A3 123-12356-5 劣 sign \x52A6 125-12346-3 劦 sign \x52A9 14-135-2 助 sign \x52AA 1345-1236-6 努 sign \x52AB 13-12346-5 劫 sign \x52AC 1235-245-3 劬 sign \x52AD 234-13456-2 劭 sign \x52AE 245-35-3 劮 sign \x52BB 125-56 劻 sign \x52BC 1235-23456-5 劼 sign \x52BE 125-35-3 劾 sign \x52C1 13-356-2 å‹ sign \x52C3 1234-1356-3 勃 sign \x52C7 245-236-6 勇 sign \x52C9 134-256-6 勉 sign \x52CD 1235-356-3 å‹ sign \x52D2 123-46-3 å‹’ sign \x52D5 2345-236-2 å‹• sign \x52D6 245-12345 å‹– sign \x52D7 245-12345 å‹— sign \x52D8 125-456-4 勘 sign \x52D9 134-1236-2 å‹™ sign \x52DB 124-1246 å‹› sign \x52DD 234-356-4 å‹ sign \x52DE 123-1236-3 勞 sign \x52DF 134-1236-2 募 sign \x52E1 24-2 sign \x52E2 234-146-4 å‹¢ sign \x52E3 14-1235 å‹£ sign \x52E4 1235-1246-3 勤 sign \x52E5 1235-1246-3 sign \x52E6 14-13456-1 勦 sign \x52E7 14-13456-1 sign \x52E9 24-2 å‹© sign \x52F0 125-12346-3 å‹° sign \x52F1 134-346-2 勱 sign \x52F3 124-1246 勳 sign \x52F4 123-245-2 å‹´ sign \x52F5 123-146-2 勵 sign \x52F7 245-25-3 å‹· sign \x52F8 125-23-4 勸 sign \x52FA 1346-246-5 勺 sign \x52FB 2456-1246-3 å‹» sign \x52FC 13-16 勼 sign \x52FE 1245-16 勾 sign \x52FF 134-35-3 å‹¿ sign \x5305 1234-34 包 sign \x5306 1346-236 匆 sign \x5308 125-236 匈 sign \x5309 12346-356 匉 sign \x530A 13-12345 匊 sign \x530B 23456-1236-3 匋 sign \x530D 12346-1236-3 åŒ sign \x530F 12346-34-3 åŒ sign \x5310 124-12345-3 åŒ sign \x5312 2345-1234-5 匒 sign \x5315 1234-125-4 匕 sign \x5316 124-12-4 化 sign \x5317 1234-46 北 sign \x5319 234-24-3 匙 sign \x531A 124-56 匚 sign \x531C 24-3 匜 sign \x531D 14-1234-5 åŒ sign \x531F 1235-56-4 匟 sign \x5320 14-25-2 匠 sign \x5321 125-56 匡 sign \x5323 125-1234-3 匣 sign \x532A 124-125-1 匪 sign \x532D 12345-146-1 匭 sign \x532F 1256-2 匯 sign \x5330 2345-45 匰 sign \x5331 12345-146-2 匱 sign \x5333 123-235-3 sign \x5334 234-23-4 匴 sign \x5339 12346-35 匹 sign \x533C 1235-135 匼 sign \x533D 256-1 匽 sign \x533E 1234-256-1 匾 sign \x533F 1345-1235 匿 sign \x5340 1235-245 å€ sign \x5341 234-26-3 å sign \x5343 1346-256 åƒ sign \x5345 234-12 å… sign \x5347 234-356 å‡ sign \x5348 1245-6 åˆ sign \x5349 2456-146-6 å‰ sign \x534A 1234-2346-4 åŠ sign \x534C 234-15-4 åŒ sign \x5351 1234-125 å‘ sign \x5352 14-1346 å’ sign \x5353 1346-246-5 å“ sign \x5354 125-12346-5 å” sign \x5357 1345-345-3 å— sign \x535A 1234-12456-5 åš sign \x535C 1234-12345 åœ sign \x535E 1234-256-2 åž sign \x5360 14-235 å  sign \x5361 1235-12 å¡ sign \x5363 245-16-6 å£ sign \x5366 12345-12-4 å¦ sign \x536C 1245-56-3 å¬ sign \x536E 14-24 å® sign \x536F 134-34-6 å¯ sign \x5370 245-1246-4 å° sign \x5371 1245-146-3 å± sign \x5372 234-13456-2 å² sign \x5373 14-1235 å³ sign \x5375 123-234-1 åµ sign \x5377 13-23-1 å· sign \x5378 234-15-4 å¸ sign \x5379 234-1346 å¹ sign \x537B 1235-246-5 å» sign \x537C 1245-35-3 å¼ sign \x537F 125-356 å¿ sign \x5382 1346-56-1 厂 sign \x5384 46-0 厄 sign \x538A 23456-236-3 厊 sign \x538E 2345-146-1 厎 sign \x538F 14-12-4 åŽ sign \x5394 14-35-3 厔 sign \x5396 12346-56-3 厖 sign \x5398 123-125-3 厘 sign \x5399 234-15-4 厙 sign \x539A 125-16-6 厚 sign \x539D 1346-1236-4 åŽ sign \x539F 23-3 原 sign \x53A4 123-1235-3 厤 sign \x53A5 1235-12356-5 厥 sign \x53AC 12345-146-1 厬 sign \x53AD 235-4 厭 sign \x53B2 123-146-2 厲 sign \x53B4 235-1 厴 sign \x53B9 245-16-3 厹 sign \x53BB 125-245-4 去 sign \x53C1 234-345 å sign \x53C3 1346-345 åƒ sign \x53C8 245-16-2 åˆ sign \x53C9 1346-12 å‰ sign \x53CA 1235-26-3 åŠ sign \x53CB 245-16-6 å‹ sign \x53CD 124-45-1 å sign \x53D4 234-12345 å” sign \x53D6 1346-245-1 å– sign \x53D7 234-16-2 å— sign \x53D9 14-245-2 sign \x53DB 1234-2346-2 å› sign \x53DF 234-16-1 åŸ sign \x53E1 245-245-2 å¡ sign \x53E2 1346-236-3 å¢ sign \x53E3 125-16-1 å£ sign \x53E4 13-136-1 å¤ sign \x53E5 13-245-4 å¥ sign \x53E6 123-356-2 å¦ sign \x53E7 123-356-2 sign \x53E8 23456-1236 å¨ sign \x53E9 1235-16-4 å© sign \x53EA 14-24-1 åª sign \x53EB 13-13456-4 å« sign \x53EC 14-13456-2 å¬ sign \x53ED 1234-12 å­ sign \x53EE 2345-356 å® sign \x53EF 125-135-1 å¯ sign \x53F0 23456-126-3 å° sign \x53F1 1346-1235 å± sign \x53F2 234-24-1 å² sign \x53F3 245-16-2 å³ sign \x53F5 12346-135-1 åµ sign \x53F8 234-24 å¸ sign \x53FB 123-2456 å» sign \x53FC 2345-13456 å¼ sign \x53FE 2345-12345 å¾ sign \x5401 125-245 å sign \x5403 125-2456-5 åƒ sign \x5404 13-12456-5 å„ sign \x5406 13456-0 å† sign \x5408 125-26-3 åˆ sign \x5409 13-35 å‰ sign \x540A 2345-13456-4 åŠ sign \x540B 1346-23-4 å‹ sign \x540C 23456-236-3 åŒ sign \x540D 134-356-3 å sign \x540E 125-16-2 åŽ sign \x540F 123-125-2 å sign \x5410 23456-1236-4 å sign \x5411 125-25-4 å‘ sign \x5412 14-12 å’ sign \x5413 125-12-1 å“ sign \x5414 245-12 å” sign \x5416 12-0 å– sign \x5419 124-135-1 å™ sign \x541B 12345-1246 å› sign \x541D 123-234-2 å sign \x541E 23456-1246 åž sign \x541F 245-456-3 åŸ sign \x5420 124-146-2 å  sign \x5421 12346-125-1 sign \x5425 1234-35 å¥ sign \x5426 124-16-1 å¦ sign \x5427 1234-12-2 å§ sign \x5428 2345-234 å¨ sign \x5429 124-1246 å© sign \x542A 1245-135-3 åª sign \x542B 125-456-3 å« sign \x542C 23456-356-4 å¬ sign \x542D 125-1245 å­ sign \x542E 234-23-6 å® sign \x5430 2456-1245-3 å° sign \x5431 14-24 å± sign \x5433 1245-3 å³ sign \x5435 1346-34-1 åµ sign \x5436 1345-1234-3 å¶ sign \x5437 1235-12356-5 å· sign \x5438 1235-26 å¸ sign \x5439 1346-245 å¹ sign \x543B 134-1246-6 å» sign \x543C 125-34 å¼ sign \x543D 125-236 å½ sign \x543E 1245-3 å¾ sign \x5440 12-4 å‘€ sign \x5441 1245-2345-3 å‘ sign \x5442 123-245-6 å‘‚ sign \x5443 46-0 呃 sign \x5446 1245-126-3 呆 sign \x5448 1346-356-3 呈 sign \x544A 13-1236-4 告 sign \x544E 1346-2456-5 呎 sign \x5454 23456-346 å‘” sign \x5460 12346-1246-4 å‘  sign \x5462 1345-15 å‘¢ sign \x5463 134-6 å‘£ sign \x5464 123-356-6 呤 sign \x5465 235-3 å‘¥ sign \x5466 245-16 呦 sign \x5468 14-16 周 sign \x546B 1346-12346-5 å‘« sign \x5471 12345-12 呱 sign \x5472 14-24 呲 sign \x5473 134-125-2 味 sign \x5474 1456-4 å‘´ sign \x5475 125-135 呵 sign \x5476 1345-34-3 å‘¶ sign \x5477 125-1234-5 å‘· sign \x5478 12346-125 呸 sign \x547B 234-1246 å‘» sign \x547C 124-136 呼 sign \x547D 134-356-2 命 sign \x547E 23456-45-1 呾 sign \x5480 14-245-1 å’€ sign \x5481 13-456-4 å’ sign \x5482 14-1234-5 å’‚ sign \x5484 14-12356-5 å’„ sign \x5486 12346-34-3 å’† sign \x5488 124-35-3 å’ˆ sign \x548B 14-12-4 å’‹ sign \x548C 2456-135-3 å’Œ sign \x548D 125-346 å’ sign \x548E 13-16-4 å’Ž sign \x5490 124-136-4 å’ sign \x5491 2345-12 å’‘ sign \x5492 14-16-4 å’’ sign \x5493 12-6 å’“ sign \x5494 1235-12-3 å’” sign \x5495 13-136 å’• sign \x5496 13-12-4 å’– sign \x5497 14-135-1 å’— sign \x549A 2345-236 å’š sign \x54A0 1346-26 å’  sign \x54A1 24-2 å’¡ sign \x54A2 1245-12456-3 å’¢ sign \x54A4 1346-13 å’¤ sign \x54A5 125-125-4 å’¥ sign \x54A6 24-1 å’¦ sign \x54A7 123-23456-3 å’§ sign \x54A8 14-24 å’¨ sign \x54A9 134-15 å’© sign \x54AA 134-125 å’ª sign \x54AB 14-24-1 å’« sign \x54AC 1245-34-6 å’¬ sign \x54AD 1235-2345 å’­ sign \x54AE 14-16-4 å’® sign \x54AF 123-12456-5 å’¯ sign \x54B1 14-12-4 å’± sign \x54B3 1235-35 å’³ sign \x54B6 234-346-6 å’¶ sign \x54B7 23456-1236-3 å’· sign \x54B8 125-345-3 å’¸ sign \x54B9 125-1345 å’¹ sign \x54BA 125-23 å’º sign \x54BB 245-16 å’» sign \x54BC 2456-12 å’¼ sign \x54BD 256-0 å’½ sign \x54BF 24-0 å’¿ sign \x54C0 126-0 å“€ sign \x54C1 1234-1246-1 å“ sign \x54C2 1346-1246-1 å“‚ sign \x54C4 125-236-4 å“„ sign \x54C6 2345-135 哆 sign \x54C7 2456-12 哇 sign \x54C8 125-12 哈 sign \x54C9 14-126 哉 sign \x54CB 2345-125-2 å“‹ sign \x54CF 13-1246 å“ sign \x54DA 2345-135-1 哚 sign \x54DE 134-1236-3 哞 sign \x54E1 23-3 å“¡ sign \x54E2 1345-236-2 å“¢ sign \x54E3 1345-236-2 sign \x54E4 134-56-3 哤 sign \x54E5 13-135 å“¥ sign \x54E6 135-3 哦 sign \x54E7 1346-24 å“§ sign \x54E8 234-34-4 哨 sign \x54E9 123-125-6 å“© sign \x54EA 1345-12-6 哪 sign \x54ED 125-12345 å“­ sign \x54EE 125-34 å“® sign \x54F1 12346-135-4 哱 sign \x54F2 14-23456-5 哲 sign \x54F3 14-2345-5 哳 sign \x54F7 123-12356-5 å“· sign \x54FA 1234-1236-2 哺 sign \x54FC 125-1245 哼 sign \x54FD 13-1245-1 哽 sign \x54FF 13-135 å“¿ sign \x5501 256-2 å” sign \x5504 1234-346-2 唄 sign \x5505 125-456-3 å”… sign \x5506 234-135 唆 sign \x5507 234-234-3 唇 sign \x5508 245-26 唈 sign \x5509 346-0 唉 sign \x550E 123-125-2 唎 sign \x550F 125-125 å” sign \x5510 23456-56-3 å” sign \x5511 14-135-2 唑 sign \x5513 1346-15 唓 sign \x5514 1245-3 å”” sign \x5517 2345-16 å”— sign \x551A 1346-456-4 唚 sign \x551E 23456-16-1 唞 sign \x5525 123-14-2 唥 sign \x5526 234-12 唦 sign \x5527 14-1235 å”§ sign \x552A 124-236-1 唪 sign \x552B 13-456 sign \x552C 124-136-1 唬 sign \x552D 13-125 å”­ sign \x552E 234-16-2 å”® sign \x552F 2456-146-3 唯 sign \x5530 1346-2345-5 å”° sign \x5531 1346-25-4 å”± sign \x5532 24-3 唲 sign \x5533 123-245-2 唳 sign \x5535 456-1 唵 sign \x5536 14-15-4 å”¶ sign \x5537 245-135 å”· sign \x5538 1345-235-2 唸 sign \x553C 14-23456-3 唼 sign \x553E 23456-135-4 唾 sign \x5540 1245-346-3 å•€ sign \x5541 14-16 å• sign \x5543 125-1245-1 啃 sign \x5544 2345-246-5 å•„ sign \x5546 234-25 商 sign \x5548 125-1245 啈 sign \x5549 123-456 啉 sign \x554A 135-3 啊 sign \x554B 1346-126 å•‹ sign \x554D 23456-1246 å• sign \x554E 1245-6 啎 sign \x554F 134-1246-2 å• sign \x5550 1346-245-4 å• sign \x5551 14-23456-3 å•‘ sign \x5555 23456-1236-3 å•• sign \x5556 2345-345-2 å•– sign \x5557 2345-345-2 å•— sign \x555C 14-12356-5 啜 sign \x555D 2456-135-3 å• sign \x555E 12-1 啞 sign \x555F 1235-146-1 啟 sign \x5561 124-15 å•¡ sign \x5562 123-25-1 å•¢ sign \x5563 125-345-3 å•£ sign \x5564 1234-15 啤 sign \x5565 234-12-1 å•¥ sign \x5566 123-12 啦 sign \x5569 12345-12-4 å•© sign \x556A 12346-13 啪 sign \x556B 14-15 å•« sign \x5571 1245-345 啱 sign \x5572 2345-24 啲 sign \x5575 1234-135-4 啵 sign \x5577 123-56 å•· sign \x5579 13-156 啹 sign \x557B 1346-24-4 å•» sign \x557C 23456-146-3 啼 sign \x557D 456-1 啽 sign \x557E 14-16 啾 sign \x5580 125-13-5 å–€ sign \x5581 245-236-3 å– sign \x5582 2456-146-4 å–‚ sign \x5583 1345-345-3 å–ƒ sign \x5584 234-256-2 å–„ sign \x5586 14-23456-5 sign \x5587 123-12 å–‡ sign \x5588 13-346 å–ˆ sign \x5589 125-16-3 å–‰ sign \x558A 125-345-4 å–Š sign \x558B 2345-12346-3 å–‹ sign \x558D 1346-346-3 å– sign \x558E 2456-135-4 å–Ž sign \x558F 245-15-6 å– sign \x5591 245-456 å–‘ sign \x5592 14-12 å–’ sign \x5593 13456-0 å–“ sign \x5594 135-0 å–” sign \x5598 1346-23-1 å–˜ sign \x5599 124-1256-4 å–™ sign \x559A 2346-2 å–š sign \x559C 125-125-1 å–œ sign \x559D 125-124-5 å– sign \x559F 2456-146-1 å–Ÿ sign \x55A2 234-1234-5 å–¢ sign \x55A3 1456-4 å–£ sign \x55A4 2456-56-3 å–¤ sign \x55A6 1245-345-3 å–¦ sign \x55A7 125-23 å–§ sign \x55A8 123-25-2 å–¨ sign \x55A9 1456-2 sign \x55AA 234-56-4 å–ª sign \x55AB 125-2456-5 å–« sign \x55AC 1235-13456-3 å–¬ sign \x55AD 1245-1345-2 å–­ sign \x55AE 2345-45 å–® sign \x55B1 123-125 å–± sign \x55B2 245-135 å–² sign \x55B3 14-12 å–³ sign \x55B5 134-13456 å–µ sign \x55BA 125-146-2 å–º sign \x55BB 1456-2 å–» sign \x55BC 1245-12346 å–¼ sign \x55BF 1346-1236-4 å–¿ sign \x55C0 124-135-4 å—€ sign \x55C3 125-12456-3 å—ƒ sign \x55C4 234-12-4 å—„ sign \x55C5 1346-16-4 å—… sign \x55C6 1346-25 å—† sign \x55C7 234-1235 å—‡ sign \x55C9 234-1236-4 å—‰ sign \x55CA 13-236-4 å—Š sign \x55CC 346-4 å—Œ sign \x55CD 234-12456-5 å— sign \x55CE 134-12 å—Ž sign \x55CF 1346-12 å— sign \x55D0 125-126-2 å— sign \x55D1 125-26-3 å—‘ sign \x55D2 23456-1234-5 å—’ sign \x55D3 234-56 å—“ sign \x55D4 14-1246 å—” sign \x55D6 234-16 å—– sign \x55D7 12345-1356 å—— sign \x55D9 12346-56-4 å—™ sign \x55DA 136-0 å—š sign \x55DB 125-12346-5 å—› sign \x55DC 234-24-4 å—œ sign \x55DD 13-13-5 å— sign \x55DF 14-15 å—Ÿ sign \x55E1 245-236 å—¡ sign \x55E2 2456-35 å—¢ sign \x55E3 14-24-2 å—£ sign \x55E4 1346-24 å—¤ sign \x55E5 125-1236-3 å—¥ sign \x55E6 234-135 å—¦ sign \x55E7 234-135 sign \x55E8 125-346 å—¨ sign \x55E9 234-135-1 å—© sign \x55EC 125-135-1 å—¬ sign \x55EF 1245-1 å—¯ sign \x55F0 12345-135-1 å—° sign \x55F1 1346-12-3 å—± sign \x55F2 2345-15-1 å—² sign \x55F6 1234-35 å—¶ sign \x55F7 1245-1236-3 å—· sign \x55F9 123-256-3 å—¹ sign \x55FD 234-16-4 å—½ sign \x55FE 234-16-1 å—¾ sign \x5600 2345-1235-3 嘀 sign \x5601 1346-24 å˜ sign \x5605 13-15-4 嘅 sign \x5606 23456-45-4 嘆 sign \x5608 1346-1236-3 嘈 sign \x5609 13-12 嘉 sign \x560C 12346-13456 嘌 sign \x560D 123-16-3 å˜ sign \x560E 13-12 嘎 sign \x560F 13-136-1 å˜ sign \x5610 125-34 å˜ sign \x5612 2456-146-2 嘒 sign \x5613 12345-12456-5 嘓 sign \x5614 16-1 嘔 sign \x5615 125-256 嘕 sign \x5616 14-13-5 嘖 sign \x5617 234-25-3 嘗 sign \x561B 134-12-3 嘛 sign \x561C 134-46 嘜 sign \x561E 123-13-5 嘞 sign \x561F 2345-1236 嘟 sign \x5622 245-15-6 嘢 sign \x5623 1234-1245 嘣 sign \x5625 234-346 嘥 sign \x5629 2456-12 嘩 sign \x562C 14-12356-5 嘬 sign \x562D 12346-14 嘭 sign \x562E 123-1236-3 嘮 sign \x562F 234-13456-4 嘯 sign \x5630 13-125 嘰 sign \x5632 14-34 嘲 sign \x5634 14-245-1 嘴 sign \x5635 125-13456 嘵 sign \x5636 234-146 嘶 sign \x5637 125-1236 sign \x5638 134-1236-6 嘸 sign \x5639 123-13456-3 嘹 sign \x563A 1235-13456-3 嘺 sign \x563B 125-125 嘻 sign \x563D 23456-45 嘽 sign \x563F 125-125 嘿 sign \x5640 234-234-4 噀 sign \x5641 12456-5 å™ sign \x5642 14-23-1 噂 sign \x5643 124-45-3 噃 sign \x5646 1346-456-1 噆 sign \x5649 2345-345-2 噉 sign \x564A 2456-35-3 噊 sign \x564C 14-1245 噌 sign \x564D 14-13456-2 sign \x564E 23456-5 噎 sign \x564F 26-0 å™ sign \x5652 123-234 å™’ sign \x5653 125-245 噓 sign \x5654 2345-1245-2 å™” sign \x5657 12346-12456-5 å™— sign \x5658 1235-12356-5 噘 sign \x5659 1235-456-3 å™™ sign \x565A 1346-456-3 噚 sign \x565D 234-24 å™ sign \x565E 235-1 噞 sign \x5660 2345-2345-3 å™  sign \x5662 135-0 噢 sign \x5663 14-16-4 噣 sign \x5664 13-456-4 噤 sign \x5665 1345-236-3 噥 sign \x5666 12356-3 噦 sign \x5668 125-125-4 器 sign \x5669 1245-12456-3 噩 sign \x566A 1346-1236-4 噪 sign \x566B 24-0 噫 sign \x566C 234-146-2 噬 sign \x566D 13-13456-4 å™­ sign \x566F 126-1 噯 sign \x5670 245-236 å™° sign \x5671 1235-246-3 å™± sign \x5672 124-346-4 噲 sign \x5674 12346-1246-4 å™´ sign \x5676 13-12 å™¶ sign \x5677 1245-3 å™· sign \x5678 2345-234 噸 sign \x5679 2345-56 噹 sign \x567C 12346-1235 噼 sign \x5680 1345-356-3 嚀 sign \x5683 2345-1234-3 嚃 sign \x5684 2456-12456-3 åš„ sign \x5685 1456-3 åš… sign \x5686 125-1236 嚆 sign \x5687 125-13-5 嚇 sign \x5689 2345-245-4 嚉 sign \x568C 14-146-2 嚌 sign \x568E 125-1236-3 嚎 sign \x568F 23456-146-4 åš sign \x5690 234-25-3 åš sign \x5693 1346-2345-5 åš“ sign \x5695 123-1236 åš• sign \x5699 1245-23456-3 åš™ sign \x569A 1245-1246-3 åšš sign \x569C 134-46 åšœ sign \x569E 14-23456-5 sign \x569F 123-146-3 嚟 sign \x56A1 125-346-3 åš¡ sign \x56A4 134-135 嚤 sign \x56A5 256-4 嚥 sign \x56A6 123-1235 嚦 sign \x56A8 123-236-3 嚨 sign \x56AA 2345-345-2 嚪 sign \x56AB 1346-1246-4 åš« sign \x56AC 12346-1246-3 嚬 sign \x56AD 12346-125-1 åš­ sign \x56AE 125-25-1 åš® sign \x56B1 125-125-4 åš± sign \x56B2 2345-135-1 åš² sign \x56B3 13-12345 åš³ sign \x56B4 235-3 åš´ sign \x56B5 1346-345-3 åšµ sign \x56B6 245-356 åš¶ sign \x56B7 245-25-2 åš· sign \x56B9 123-12-4 åš¹ sign \x56BC 14-246-5 åš¼ sign \x56BF 13-16-2 åš¿ sign \x56C0 14-23-1 囀 sign \x56C1 14-12346-5 å› sign \x56C2 125-13456 囂 sign \x56C5 1346-256-1 å›… sign \x56C6 1346-346-4 囆 sign \x56C8 1245-146-2 囈 sign \x56C9 123-135 囉 sign \x56CA 1345-56-3 囊 sign \x56CB 14-45-4 囋 sign \x56CC 234-1236 囌 sign \x56CD 125-125-1 å› sign \x56D1 14-12345 囑 sign \x56D3 1245-23456-3 囓 sign \x56D4 1345-56-3 å›” sign \x56D6 123-135 å›– sign \x56D7 12345-12456-5 sign \x56DA 1346-16-3 囚 sign \x56DB 234-125-4 å›› sign \x56DD 14-146-1 å› sign \x56DE 1256-3 回 sign \x56DF 234-234-4 囟 sign \x56E0 245-1246 å›  sign \x56E1 1345-345-3 囡 sign \x56E2 1345-345-3 sign \x56E4 23456-23-3 囤 sign \x56E5 2345-234-2 sign \x56EA 1346-25 囪 sign \x56EB 124-35 囫 sign \x56EE 1245-135-3 å›® sign \x56F0 12456-1246-4 å›° sign \x56F7 12456-1246 å›· sign \x56F9 123-356-3 囹 sign \x56FA 13-136-4 固 sign \x56FF 245-16-2 囿 sign \x5703 12346-1236-1 圃 sign \x5704 1456-6 圄 sign \x5707 123-234-3 圇 sign \x5708 125-23 圈 sign \x5709 1456-6 圉 sign \x570A 1346-356 圊 sign \x570B 12345-12456-5 sign \x570C 1346-23-3 圌 sign \x570D 2456-146-3 åœ sign \x5712 23-3 園 sign \x5713 23-3 圓 sign \x5716 23456-1236-3 圖 sign \x5718 23456-23-3 團 sign \x571B 245-1235-3 圛 sign \x571C 2456-45-3 圜 sign \x571D 123-23-3 sign \x571E 123-23-3 圞 sign \x571F 23456-1236-1 土 sign \x5722 12346-135 圢 sign \x5723 234-356-4 圣 sign \x5728 14-126-2 在 sign \x5729 2456-146-3 圩 sign \x572A 1245-35-3 圪 sign \x572C 136-0 圬 sign \x572D 12345-146 圭 sign \x572E 12346-125-1 圮 sign \x572F 24-3 圯 sign \x5730 2345-125-2 地 sign \x5733 14-1246-4 圳 sign \x573B 1235-125-3 圻 sign \x573E 234-1234-5 圾 sign \x5740 14-24-1 å€ sign \x5741 14-24-1 å sign \x5745 1346-23 å… sign \x5747 12345-1246 å‡ sign \x5749 23456-23-3 å‰ sign \x574A 124-56 åŠ sign \x574B 1234-1246-2 å‹ sign \x574C 1234-1246-4 åŒ sign \x574D 23456-45 å sign \x574E 125-456-1 åŽ sign \x574F 2456-346-2 å sign \x5750 14-135-2 å sign \x5751 125-14 å‘ sign \x5761 1234-135 å¡ sign \x5764 12456-1246 å¤ sign \x5766 23456-45-1 å¦ sign \x5768 23456-135-3 å¨ sign \x5769 125-456 å© sign \x576A 12346-356-3 åª sign \x576B 2345-235-4 å« sign \x576D 1345-146-3 å­ sign \x576F 12346-1256 å¯ sign \x5770 12345-356 å° sign \x5773 34-4 å³ sign \x5774 123-12345-3 å´ sign \x5775 245-16 åµ sign \x5776 134-1236-6 å¶ sign \x5777 125-135 å· sign \x577B 2345-146-1 å» sign \x577C 1346-13-5 å¼ sign \x5782 234-245-3 åž‚ sign \x5783 123-1234-3 垃 sign \x578B 245-356-3 åž‹ sign \x578C 23456-236-3 垌 sign \x5793 13-126 åž“ sign \x5794 256-0 åž” sign \x5795 125-16-2 åž• sign \x579A 13456-3 åžš sign \x579B 2345-135-1 åž› sign \x579D 12345-146-1 åž sign \x579E 1346-12-3 åžž sign \x579F 245-25-3 垟 sign \x57A0 1245-1246-3 åž  sign \x57A2 13-16-4 垢 sign \x57A3 2346-3 垣 sign \x57A4 2345-23456-3 垤 sign \x57AE 12456-12 åž® sign \x57B5 456-1 åžµ sign \x57B8 23-1 垸 sign \x57C2 13-1245-1 埂 sign \x57C3 346-0 埃 sign \x57C6 1235-12456-5 埆 sign \x57C7 245-236-1 埇 sign \x57CB 134-346-3 埋 sign \x57CC 123-56-2 埌 sign \x57CE 234-356-3 城 sign \x57CF 256-3 åŸ sign \x57D2 123-12356-5 埒 sign \x57D4 1234-1236-4 埔 sign \x57D5 1346-356-3 埕 sign \x57D7 1234-1236-1 埗 sign \x57DC 245-15-6 埜 sign \x57DE 2345-2356-2 埞 sign \x57DF 2456-1235-3 域 sign \x57E0 124-16-2 埠 sign \x57E1 12-4 埡 sign \x57E2 13-23-2 埢 sign \x57E3 13-23-2 sign \x57E4 12346-125-3 埤 sign \x57E5 12346-125-3 sign \x57E7 13-245-2 埧 sign \x57E8 13-245-2 sign \x57ED 2345-146-2 埭 sign \x57F0 1346-126-4 埰 sign \x57F2 12346-236 埲 sign \x57F3 125-456-1 埳 sign \x57F4 14-1235-3 埴 sign \x57F5 2345-135-1 埵 sign \x57F6 234-146-4 埶 sign \x57F7 14-26 執 sign \x57F8 245-1235-3 埸 sign \x57F9 12346-1256-3 培 sign \x57FA 13-125 基 sign \x57FB 14-234-1 埻 sign \x57FC 1235-125-3 埼 sign \x57FD 234-1236-4 埽 sign \x5800 12345-35-3 å € sign \x5801 124-135-4 å  sign \x5802 23456-56-3 å ‚ sign \x5803 12456-1246 å ƒ sign \x5804 1245-146-3 å „ sign \x5805 13-256 å … sign \x5806 2345-245 å † sign \x5807 13-1246-1 å ‡ sign \x5808 13-56 å ˆ sign \x5809 245-12345-3 å ‰ sign \x580A 12456-5 å Š sign \x580B 12346-1245-3 å ‹ sign \x580C 13-136-4 å Œ sign \x580D 23456-126-4 å  sign \x580E 123-356-3 å Ž sign \x5810 1245-346-3 å  sign \x5819 245-1246 å ™ sign \x581B 12346-125-4 å › sign \x581D 2456-135 å  sign \x581E 2345-12346-3 å ž sign \x5820 125-16-2 å   sign \x5821 1234-1236-1 å ¡ sign \x5824 23456-146-3 å ¤ sign \x5826 13-346 sign \x5827 23-3 å § sign \x5828 126-1 å ¨ sign \x582A 125-456 å ª sign \x582D 2456-56-3 å ­ sign \x582E 1245-12456-3 å ® sign \x582F 13456-3 å ¯ sign \x5830 256-1 å ° sign \x5831 1234-1236-4 å ± sign \x5832 14-1235 å ² sign \x5834 1346-25-3 å ´ sign \x5835 2345-1236-1 å µ sign \x583D 13-56 å ½ sign \x583F 13-45-1 å ¿ sign \x5848 1235-125-4 塈 sign \x584A 124-346-4 塊 sign \x584B 245-356-3 å¡‹ sign \x584C 23456-1234-5 塌 sign \x584D 234-356-3 å¡ sign \x584F 125-126-1 å¡ sign \x5851 234-1236-4 å¡‘ sign \x5852 234-24-3 å¡’ sign \x5853 134-1235-3 å¡“ sign \x5854 23456-1234-5 å¡” sign \x5857 23456-1236-3 å¡— sign \x5858 23456-56-3 塘 sign \x5859 1235-12456-5 å¡™ sign \x585A 1346-236-1 塚 sign \x585E 234-46 塞 sign \x5862 1236-4 å¡¢ sign \x5864 125-23 塤 sign \x5868 13-236 塨 sign \x586B 23456-256-3 å¡« sign \x586D 2456-1246 sign \x5871 123-56-6 塱 sign \x5873 1234-236-2 塳 sign \x5874 1234-14-2 å¡´ sign \x5875 1346-1246-3 塵 sign \x5879 1346-235-4 塹 sign \x587C 14-23 塼 sign \x587D 234-56-1 塽 sign \x587E 234-12345-3 塾 sign \x587F 123-16-3 å¡¿ sign \x5880 1346-24-3 墀 sign \x5881 134-45-2 å¢ sign \x5883 13-356-1 境 sign \x5885 234-245-2 墅 sign \x5887 14-25 墇 sign \x5888 125-456-4 墈 sign \x5889 245-236-3 墉 sign \x588A 14-256-4 墊 sign \x588B 1346-456-1 墋 sign \x5890 13-1246-1 å¢ sign \x5893 134-1236-2 墓 sign \x5894 1346-245 墔 sign \x589C 14-245-2 墜 sign \x589D 125-34 å¢ sign \x589E 14-1245 增 sign \x589F 125-245 墟 sign \x58A0 234-256-2 墠 sign \x58A1 234-256-2 墡 sign \x58A3 1234-12345-3 墣 sign \x58A6 124-45-3 墦 sign \x58A8 134-46-3 墨 sign \x58A9 2345-234 墩 sign \x58AB 14-234 墫 sign \x58AC 14-245-2 墬 sign \x58AE 2345-135-2 墮 sign \x58B1 2345-1245-4 墱 sign \x58B3 124-1246-3 墳 sign \x58BA 1236-4 墺 sign \x58BB 1346-25-3 sign \x58BC 13-1235 墼 sign \x58BE 125-1246-1 墾 sign \x58C1 1234-1235 å£ sign \x58C5 245-236-1 壅 sign \x58C6 1234-12456-5 壆 sign \x58C7 23456-45-3 壇 sign \x58C8 123-456-6 壈 sign \x58CE 125-23 壎 sign \x58D1 1235-12456-5 壑 sign \x58D2 126-1 壒 sign \x58D3 2345-5 壓 sign \x58D4 2345-1236-1 壔 sign \x58D5 125-1236-3 壕 sign \x58D6 23-3 壖 sign \x58D8 123-245-6 壘 sign \x58D9 1235-56-4 壙 sign \x58DA 123-1236-3 壚 sign \x58DC 23456-345-3 sign \x58DD 2456-146-6 å£ sign \x58DE 2456-346-2 壞 sign \x58DF 123-236-6 壟 sign \x58E0 123-236-6 sign \x58E3 123-1235 sign \x58E4 245-25-2 壤 sign \x58E5 245-25-2 sign \x58E9 1234-12-4 壩 sign \x58EB 234-24-2 士 sign \x58EC 245-456-3 壬 sign \x58EF 14-56-4 壯 sign \x58F9 245-35 壹 sign \x58FA 136-3 壺 sign \x58FC 136-3 壼 sign \x58FD 234-16-2 壽 sign \x58FF 14-234 壿 sign \x5906 124-236-3 夆 sign \x590C 123-356-3 夌 sign \x590D 124-12345 å¤ sign \x590F 125-12-2 å¤ sign \x5912 1345-34-3 夒 sign \x5914 12456-146-3 夔 sign \x5915 14-1235-3 夕 sign \x5916 1245-126-2 外 sign \x5917 23-4 夗 sign \x5919 234-12345 夙 sign \x591A 2345-135 多 sign \x591C 245-15-2 夜 sign \x591F 13-16-4 sign \x5920 13-16-4 夠 sign \x5922 134-236-2 夢 sign \x5924 245-1246-3 夤 sign \x5925 124-135-1 夥 sign \x5927 2345-346-2 大 sign \x5929 23456-256 天 sign \x592A 23456-346-4 太 sign \x592B 124-136 夫 sign \x592C 12345-346-4 夬 sign \x592D 13456-0 夭 sign \x592E 245-25 央 sign \x592F 125-14 夯 sign \x5931 234-35 失 sign \x5937 24-3 夷 sign \x5938 12456-12 夸 sign \x593C 12456-56-4 夼 sign \x593E 13-1234-5 夾 sign \x5940 1245-1246 奀 sign \x5944 235-0 奄 sign \x5947 1235-125-3 奇 sign \x5948 1345-126-2 奈 sign \x5949 124-236-2 奉 sign \x594E 124-1256 奎 sign \x594F 14-16-4 å¥ sign \x5950 2346-2 å¥ sign \x5951 1235-146-4 契 sign \x5953 14-12 奓 sign \x5954 1234-1246 奔 sign \x5955 245-1235-3 奕 sign \x5957 23456-1236-4 套 sign \x5958 14-56 奘 sign \x595A 125-146-3 奚 sign \x5960 2345-256-2 奠 sign \x5961 1245-1236-2 奡 sign \x5962 1346-15 奢 sign \x5967 1236-4 奧 sign \x5969 123-235-3 奩 sign \x596A 2345-12356-3 奪 sign \x596B 2456-1246 奫 sign \x596D 234-1235 奭 sign \x596E 124-1246-6 奮 sign \x5970 1234-125-2 奰 sign \x5972 2345-135-1 奲 sign \x5973 1345-245-6 女 sign \x5974 1345-1236-3 奴 sign \x5976 1345-346-6 奶 sign \x5978 13-45 奸 sign \x5979 23456-12 她 sign \x597C 1346-12-4 奼 sign \x597D 125-1236-1 好 sign \x597E 234-13456-2 奾 sign \x5981 14-246-5 å¦ sign \x5982 1456-3 如 sign \x5983 124-125 妃 sign \x5984 134-56-6 妄 sign \x598A 245-456-3 妊 sign \x598D 256-3 å¦ sign \x598E 13-346-4 妎 sign \x5990 14-236 å¦ sign \x5992 2345-1236-4 妒 sign \x5993 13-125-2 妓 sign \x5996 13456-1 妖 sign \x5997 1235-456-6 妗 sign \x5998 2456-1246-3 妘 sign \x5999 134-13456-2 妙 sign \x599D 14-56 å¦ sign \x599E 1345-16-1 妞 sign \x59A3 1234-125-1 妣 sign \x59A4 1456-3 妤 sign \x59A5 23456-135-6 妥 sign \x59A6 124-236 妦 sign \x59A8 124-56-3 妨 sign \x59AE 1345-125-3 妮 sign \x59AF 14-12345-3 妯 sign \x59B2 23456-45-1 妲 sign \x59B3 1345-125-6 妳 sign \x59B5 23456-16-1 妵 sign \x59B9 134-1256-2 妹 sign \x59BA 134-1356-3 妺 sign \x59BB 1346-146 妻 sign \x59BE 1346-12346-5 妾 sign \x59C1 125-245-1 å§ sign \x59C5 1234-2346-4 å§… sign \x59C6 134-1236-6 姆 sign \x59C9 14-24 sign \x59CA 14-24-1 å§Š sign \x59CB 1346-24-1 å§‹ sign \x59CC 235-6 å§Œ sign \x59CD 234-45 å§ sign \x59CF 134-45-3 å§ sign \x59D0 14-15-1 å§ sign \x59D1 13-136 å§‘ sign \x59D2 1346-24-6 å§’ sign \x59D3 234-356-4 å§“ sign \x59D4 2456-146-1 å§” sign \x59D8 12346-356-4 姘 sign \x59D9 245-456-3 sign \x59DA 13456-3 å§š sign \x59DC 13-25 å§œ sign \x59DD 234-1456 å§ sign \x59DE 13-35 å§ž sign \x59E3 13-34-1 å§£ sign \x59E4 13-16-4 姤 sign \x59E5 123-1236-6 å§¥ sign \x59E6 13-45 姦 sign \x59E7 13-45 sign \x59E8 24-3 姨 sign \x59E9 24-3 sign \x59EA 14-35-3 姪 sign \x59EC 13-125 姬 sign \x59EE 125-1245-3 å§® sign \x59F1 12456-12 å§± sign \x59FA 234-256-1 姺 sign \x59FB 245-1246 å§» sign \x59FD 12345-146-1 å§½ sign \x59FF 14-24 å§¿ sign \x5A00 234-236 娀 sign \x5A01 2456-146 å¨ sign \x5A03 2456-12 娃 sign \x5A09 12346-356 娉 sign \x5A0C 123-125-6 娌 sign \x5A11 234-135 娑 sign \x5A13 134-125-6 娓 sign \x5A16 1346-12345 娖 sign \x5A18 1345-25-3 娘 sign \x5A1B 1456-3 娛 sign \x5A1C 1345-12-3 娜 sign \x5A1F 13-23 娟 sign \x5A20 234-1246 娠 sign \x5A23 23456-146-6 娣 sign \x5A25 1245-135-3 娥 sign \x5A29 134-256-6 娩 sign \x5A2D 346-0 娭 sign \x5A36 1346-245-1 娶 sign \x5A3C 1346-25 娼 sign \x5A40 135-0 å©€ sign \x5A41 123-16-3 å© sign \x5A46 12346-135-3 婆 sign \x5A49 23-1 婉 sign \x5A4A 1234-13456-1 婊 sign \x5A50 135-0 å© sign \x5A51 2456-135 å©‘ sign \x5A53 124-125-3 å©“ sign \x5A55 14-23456-5 å©• sign \x5A57 1245-146-3 å©— sign \x5A5A 124-1246 婚 sign \x5A5E 125-1245-2 婞 sign \x5A60 2346-0 å©  sign \x5A62 12346-125-6 å©¢ sign \x5A63 245-1246 sign \x5A65 1346-246-5 å©¥ sign \x5A66 124-136-6 婦 sign \x5A6A 123-345-3 婪 sign \x5A6C 245-456-3 婬 sign \x5A6D 12-4 å©­ sign \x5A77 23456-356-3 å©· sign \x5A78 2345-56-2 婸 sign \x5A7A 134-1236-2 婺 sign \x5A7C 245-246-3 婼 sign \x5A7E 23456-16 sign \x5A7F 234-146-4 å©¿ sign \x5A8C 134-34-3 媌 sign \x5A90 125-125 åª sign \x5A92 134-1256-3 媒 sign \x5A95 456-0 媕 sign \x5A9A 134-125-3 媚 sign \x5A9B 2346-3 媛 sign \x5A9E 23456-146-3 媞 sign \x5A9F 234-23456-5 媟 sign \x5AA0 23456-135-6 sign \x5AA2 134-1236-2 媢 sign \x5AA6 2456-146-2 媦 sign \x5AA7 2456-135 媧 sign \x5AAE 23456-16 媮 sign \x5AAF 12345-146 媯 sign \x5AB1 13456-3 媱 sign \x5AB2 1234-125-1 媲 sign \x5AB3 234-1235 媳 sign \x5AB5 245-356-2 媵 sign \x5AB8 1346-24 媸 sign \x5ABA 134-125-6 媺 sign \x5ABB 12346-2346-3 媻 sign \x5ABC 1236-1 媼 sign \x5ABD 134-12 媽 sign \x5ABE 13-16-4 媾 sign \x5ABF 12456-146-4 媿 sign \x5AC1 13-12-4 å« sign \x5AC2 234-1236-1 å«‚ sign \x5AC4 23-3 å«„ sign \x5AC7 134-356-6 嫇 sign \x5AC8 245-356 嫈 sign \x5AC9 14-35-3 嫉 sign \x5ACB 1345-13456-6 å«‹ sign \x5ACC 235-3 嫌 sign \x5ACF 123-56-3 sign \x5AD6 12346-13456-3 sign \x5AD7 1456-1 å«— sign \x5AD8 123-245-3 嫘 sign \x5ADB 24-0 å«› sign \x5ADC 14-25 嫜 sign \x5ADF 1345-1235 嫟 sign \x5AE0 123-125-3 å«  sign \x5AE1 2345-1235 å«¡ sign \x5AE3 256-0 å«£ sign \x5AE5 14-23 å«¥ sign \x5AE6 234-25-3 嫦 sign \x5AE9 1345-23-2 å«© sign \x5AEB 134-1236-3 å«« sign \x5AEE 136-2 å«® sign \x5AF2 134-12-3 嫲 sign \x5AF5 134-1236-6 嫵 sign \x5AF7 23456-135-6 å«· sign \x5AFB 125-45-3 å«» sign \x5AFD 123-13456-3 嫽 sign \x5AFF 2456-13-3 å«¿ sign \x5B03 234-245 嬃 sign \x5B05 2456-12-3 sign \x5B08 13456-3 嬈 sign \x5B09 125-125 嬉 sign \x5B0B 234-235-3 嬋 sign \x5B0C 13-13456 嬌 sign \x5B16 12346-125-4 嬖 sign \x5B17 234-256-2 嬗 sign \x5B19 1346-25-3 嬙 sign \x5B1B 2456-45-3 嬛 sign \x5B1D 1345-13456-6 å¬ sign \x5B21 126-4 嬡 sign \x5B24 134-12 嬤 sign \x5B25 23456-13456-3 sign \x5B2A 1234-1246-4 嬪 sign \x5B2C 1456-3 嬬 sign \x5B2D 1345-346-6 嬭 sign \x5B30 245-356 嬰 sign \x5B32 1345-16 嬲 sign \x5B34 245-356-3 嬴 sign \x5B38 234-456-1 嬸 sign \x5B3E 123-45-6 嬾 sign \x5B3F 256-4 嬿 sign \x5B40 234-25 å­€ sign \x5B43 1345-25-3 å­ƒ sign \x5B45 1346-235 å­… sign \x5B4C 123-23-1 å­Œ sign \x5B50 14-24-1 å­ sign \x5B51 1235-23456-5 å­‘ sign \x5B53 1235-12356-5 å­“ sign \x5B54 125-236-1 å­” sign \x5B55 245-1246-2 å­• sign \x5B56 134-12 å­– sign \x5B57 14-24-2 å­— sign \x5B58 1346-23-3 å­˜ sign \x5B5A 124-136 å­š sign \x5B5B 1234-1356-3 å­› sign \x5B5C 14-24 å­œ sign \x5B5D 125-34-4 å­ sign \x5B5F 134-14-2 å­Ÿ sign \x5B62 1234-34 å­¢ sign \x5B63 12345-146-4 å­£ sign \x5B64 13-136 å­¤ sign \x5B65 1345-1236-3 å­¥ sign \x5B69 125-346-3 å­© sign \x5B6B 234-23 å­« sign \x5B6C 1345-16 å­¬ sign \x5B6D 134-15 å­­ sign \x5B70 234-12345-3 å­° sign \x5B71 234-45-3 å­± sign \x5B72 12-0 sign \x5B73 14-24 å­³ sign \x5B75 124-136 å­µ sign \x5B76 14-24 sign \x5B78 125-12456-3 å­¸ sign \x5B7A 1456-3 å­º sign \x5B7B 123-346 å­» sign \x5B7D 12346-3 å­½ sign \x5B7F 123-23-3 å­¿ sign \x5B81 1345-356-3 å® sign \x5B82 245-236-1 sign \x5B83 23456-12 它 sign \x5B84 12345-146-1 宄 sign \x5B85 14-13-3 å®… sign \x5B87 1456-6 宇 sign \x5B88 234-16-1 守 sign \x5B89 1345-0 安 sign \x5B8B 234-236-4 宋 sign \x5B8C 23-3 完 sign \x5B8E 1245-34-3 宎 sign \x5B8F 2456-1245-3 å® sign \x5B93 134-35-3 宓 sign \x5B95 2345-56-2 宕 sign \x5B97 14-236 å®— sign \x5B98 13-2346 官 sign \x5B99 14-16-2 å®™ sign \x5B9A 2345-356-2 定 sign \x5B9B 23-1 å®› sign \x5B9C 24-3 宜 sign \x5BA2 125-13-5 客 sign \x5BA3 234-23 宣 sign \x5BA4 234-35 室 sign \x5BA5 245-16-2 宥 sign \x5BA6 2456-45-2 宦 sign \x5BA7 24-3 å®§ sign \x5BAC 234-356-3 宬 sign \x5BAD 12456-1246-3 å®­ sign \x5BAE 13-236 å®® sign \x5BB0 14-126-1 å®° sign \x5BB3 125-126-2 害 sign \x5BB4 256-4 å®´ sign \x5BB5 234-13456 宵 sign \x5BB6 13-12 å®¶ sign \x5BB8 234-1246-3 宸 sign \x5BB9 245-236-3 容 sign \x5BBF 234-12345 宿 sign \x5BC0 1346-126-4 寀 sign \x5BC1 14-345-1 å¯ sign \x5BC2 14-1235-3 寂 sign \x5BC4 13-125-4 寄 sign \x5BC5 245-1246-3 寅 sign \x5BC6 134-35-3 密 sign \x5BC7 1235-16-4 寇 sign \x5BCC 124-136-4 富 sign \x5BD0 134-125-2 å¯ sign \x5BD1 1346-456-1 寑 sign \x5BD2 125-1345-3 寒 sign \x5BD3 1456-2 寓 sign \x5BD4 234-35-3 寔 sign \x5BD6 14-456-4 寖 sign \x5BD8 14-24-4 寘 sign \x5BDE 134-12456-3 寞 sign \x5BDF 1346-2345-5 察 sign \x5BE0 123-16-3 寠 sign \x5BE1 12345-12-1 寡 sign \x5BE2 1346-456-1 寢 sign \x5BE4 1245-2 寤 sign \x5BE5 123-13456-3 寥 sign \x5BE6 234-35-3 實 sign \x5BE7 1345-356-3 寧 sign \x5BE8 14-346-2 寨 sign \x5BE9 234-456-1 審 sign \x5BEA 2456-146-1 寪 sign \x5BEB 234-15-1 寫 sign \x5BEC 124-2346 寬 sign \x5BEE 123-13456-3 寮 sign \x5BEF 14-234-4 寯 sign \x5BF0 2456-45-3 寰 sign \x5BF5 1346-236-1 寵 sign \x5BF6 1234-1236-1 寶 sign \x5BF8 1346-23-4 寸 sign \x5BFA 14-24-2 寺 sign \x5C01 124-236 å° sign \x5C03 124-136 å°ƒ sign \x5C04 234-15-2 å°„ sign \x5C07 14-25 å°‡ sign \x5C08 14-23 å°ˆ sign \x5C09 2456-146-4 å°‰ sign \x5C0A 14-23 å°Š sign \x5C0B 1346-456-3 å°‹ sign \x5C0C 234-1456-2 å°Œ sign \x5C0D 2345-245-4 å° sign \x5C0E 2345-1236-2 å°Ž sign \x5C0F 234-13456-1 å° sign \x5C11 234-13456-1 å°‘ sign \x5C12 24-6 å°’ sign \x5C14 24-6 sign \x5C15 13-12-6 å°• sign \x5C16 14-235 å°– sign \x5C1A 234-25-2 å°š sign \x5C1F 234-256-1 å°Ÿ sign \x5C22 245-16-3 å°¢ sign \x5C24 245-16-3 å°¤ sign \x5C25 123-13456-2 å°¥ sign \x5C28 12346-56-3 å°¨ sign \x5C2A 2456-56 å°ª sign \x5C2C 13-346-4 å°¬ sign \x5C30 1346-236-4 å°° sign \x5C31 14-16-2 å°± sign \x5C37 13-345-4 å°· sign \x5C38 234-24 å°¸ sign \x5C39 2456-1246-6 å°¹ sign \x5C3A 1346-2456-5 å°º sign \x5C3B 125-34 å°» sign \x5C3C 1345-125-3 å°¼ sign \x5C3E 134-125-6 å°¾ sign \x5C3F 1345-13456-2 å°¿ sign \x5C40 13-12345-3 å±€ sign \x5C41 12346-125-4 å± sign \x5C44 1234-125 屄 sign \x5C45 13-245 å±… sign \x5C46 13-346-4 屆 sign \x5C48 2456-35 屈 sign \x5C4B 12345-0 屋 sign \x5C4C 2345-13456-1 屌 sign \x5C4D 234-24 å± sign \x5C4E 234-24-1 屎 sign \x5C4F 12346-356-3 å± sign \x5C50 1235-2456-3 å± sign \x5C51 234-23456-5 屑 sign \x5C55 14-256-1 展 sign \x5C59 135-0 å±™ sign \x5C5C 23456-146-4 屜 sign \x5C5D 124-146-2 å± sign \x5C60 23456-1236-3 å±  sign \x5C62 123-245-6 å±¢ sign \x5C63 234-346-1 å±£ sign \x5C64 1346-1245-3 層 sign \x5C65 123-125-6 å±¥ sign \x5C67 234-23456-5 å±§ sign \x5C68 13-245-4 屨 sign \x5C69 125-13456 屩 sign \x5C6A 123-13456-3 屪 sign \x5C6C 234-12345-3 屬 sign \x5C6D 125-125-4 å±­ sign \x5C6E 1346-23456-5 å±® sign \x5C6F 23456-23-3 屯 sign \x5C71 234-45 å±± sign \x5C73 2345-1236 å±³ sign \x5C74 123-1235-3 å±´ sign \x5C79 1245-35-3 å±¹ sign \x5C7A 125-125-1 屺 sign \x5C7C 1245-35-3 å±¼ sign \x5C7E 234-1246 å±¾ sign \x5C88 1245-12-3 岈 sign \x5C8A 13-23456-5 岊 sign \x5C8C 1235-26 岌 sign \x5C8D 125-256 å² sign \x5C8F 23-3 å² sign \x5C90 1235-125-3 å² sign \x5C91 234-456-3 岑 sign \x5C94 1346-12-4 å²” sign \x5C9D 14-13-5 å² sign \x5C9E 14-12456-5 sign \x5CA1 13-56 岡 sign \x5CA2 125-135-1 å²¢ sign \x5CA3 13-16-1 å²£ sign \x5CA7 23456-13456-3 sign \x5CA8 14-245 岨 sign \x5CA9 1245-345-3 岩 sign \x5CAB 14-16-2 岫 sign \x5CAC 13-1234-5 岬 sign \x5CAD 123-356-6 å²­ sign \x5CB1 2345-126-2 å²± sign \x5CB3 1245-12456-3 å²³ sign \x5CB5 136-2 å²µ sign \x5CB7 134-1246-3 å²· sign \x5CB8 1245-1345-2 岸 sign \x5CC6 13-26-5 峆 sign \x5CC7 1234-12 峇 sign \x5CCB 234-234 峋 sign \x5CCE 123-56-6 峎 sign \x5CD2 2345-236-2 å³’ sign \x5CD9 234-24-2 å³™ sign \x5CE8 1245-135-3 峨 sign \x5CEA 1456-2 峪 sign \x5CED 1346-13456-4 å³­ sign \x5CEE 12456-1246 å³® sign \x5CEF 124-236 sign \x5CF0 124-236 å³° sign \x5CF1 123-16-3 å³± sign \x5CF4 256-2 å³´ sign \x5CF6 2345-1236-1 å³¶ sign \x5CFB 14-234-4 å³» sign \x5CFD 125-1234-3 å³½ sign \x5CFF 1245-3 峿 sign \x5D00 123-56-6 å´€ sign \x5D01 125-456-4 å´ sign \x5D06 125-236 å´† sign \x5D07 234-236-3 å´‡ sign \x5D0B 2456-12-2 å´‹ sign \x5D0D 123-126-3 å´ sign \x5D0E 1235-125 å´Ž sign \x5D11 12456-1246 å´‘ sign \x5D12 14-1346 å´’ sign \x5D14 1346-245 å´” sign \x5D16 1245-346-3 å´– sign \x5D17 13-56 å´— sign \x5D18 123-234-3 sign \x5D19 123-234-3 å´™ sign \x5D1A 123-356-3 å´š sign \x5D1B 12345-35-3 å´› sign \x5D1E 12345-12456-5 sign \x5D1F 245-456-3 å´Ÿ sign \x5D22 14-1245 å´¢ sign \x5D23 2456-146-1 å´£ sign \x5D24 1245-34-3 å´¤ sign \x5D26 235-0 å´¦ sign \x5D27 234-236 å´§ sign \x5D29 1234-1245 å´© sign \x5D2E 13-136-4 å´® sign \x5D31 14-46 å´± sign \x5D34 2456-146 å´´ sign \x5D36 124-236 å´¶ sign \x5D37 1346-16-3 å´· sign \x5D3A 24-3 å´º sign \x5D3D 14-126-1 å´½ sign \x5D3F 1245-12456-3 å´¿ sign \x5D42 123-1346-3 嵂 sign \x5D47 125-146-3 嵇 sign \x5D4A 234-356-2 嵊 sign \x5D4B 134-125-3 嵋 sign \x5D4C 125-456-2 嵌 sign \x5D4E 1456-3 嵎 sign \x5D50 123-345-3 åµ sign \x5D51 125-124-5 嵑 sign \x5D52 1245-345-3 åµ’ sign \x5D69 234-236 嵩 sign \x5D6B 14-24 嵫 sign \x5D6C 1245-146-3 嵬 sign \x5D6F 1346-135 嵯 sign \x5D72 23456-3 åµ² sign \x5D7A 123-13456-3 嵺 sign \x5D7D 2345-146-4 åµ½ sign \x5D7E 1346-345 åµ¾ sign \x5D81 123-16-6 å¶ sign \x5D82 14-25-4 å¶‚ sign \x5D84 14-345-1 å¶„ sign \x5D87 1235-245 嶇 sign \x5D8D 14-1234-3 å¶ sign \x5D92 1346-1245-3 å¶’ sign \x5D93 1234-135 å¶“ sign \x5D94 245-456 å¶” sign \x5D97 123-1236-3 å¶— sign \x5D99 123-234-3 å¶™ sign \x5D9D 2345-1245-1 å¶ sign \x5DA0 13-13456-2 å¶  sign \x5DA1 1235-12356-5 å¶¡ sign \x5DA2 13456-3 å¶¢ sign \x5DA7 245-1235-3 å¶§ sign \x5DA8 125-12456-3 嶨 sign \x5DA9 1345-34-3 å¶© sign \x5DAD 23456-3 å¶­ sign \x5DAE 125-235-1 å¶® sign \x5DB0 125-346-6 å¶° sign \x5DB1 125-135 å¶± sign \x5DB2 234-245-6 å¶² sign \x5DB4 34-4 å¶´ sign \x5DB7 24-3 å¶· sign \x5DB8 2456-356-3 嶸 sign \x5DBA 123-356-6 嶺 sign \x5DBC 14-245-2 å¶¼ sign \x5DBD 1245-12456-3 å¶½ sign \x5DC0 14-23456-3 å·€ sign \x5DC2 12456-146 sign \x5DC3 123-236-3 å·ƒ sign \x5DC7 125-125-4 å·‡ sign \x5DC9 1346-345-3 å·‰ sign \x5DCB 12456-146 å·‹ sign \x5DCD 1245-146-3 å· sign \x5DD1 1346-23-3 å·‘ sign \x5DD2 123-23-3 å·’ sign \x5DD4 2345-256 å·” sign \x5DD6 1245-345-3 å·– sign \x5DD8 256-6 å·˜ sign \x5DDD 1346-23 å· sign \x5DDE 14-16 å·ž sign \x5DDF 124-56 å·Ÿ sign \x5DE0 13-356 å·  sign \x5DE1 1346-234-3 å·¡ sign \x5DE2 1346-34-3 å·¢ sign \x5DE5 13-236 å·¥ sign \x5DE6 14-135-1 å·¦ sign \x5DE7 125-34-1 å·§ sign \x5DE8 13-245-2 å·¨ sign \x5DEB 134-1236-3 å·« sign \x5DEE 1346-12 å·® sign \x5DF0 1235-16-3 å·° sign \x5DF1 13-125-1 å·± sign \x5DF2 24-6 å·² sign \x5DF3 14-24-2 å·³ sign \x5DF4 1234-12 å·´ sign \x5DF7 125-56-2 å·· sign \x5DFD 234-234-4 å·½ sign \x5DFE 13-1246 å·¾ sign \x5DFF 124-35 å·¿ sign \x5E02 234-24-6 市 sign \x5E03 1234-1236-4 布 sign \x5E04 23456-16 帄 sign \x5E05 2345-45-2 sign \x5E06 124-45-3 帆 sign \x5E07 14-16-2 sign \x5E08 14-1245 sign \x5E09 124-1246-6 sign \x5E0B 14-24-1 sign \x5E0C 125-125 希 sign \x5E10 125-45-6 sign \x5E11 23456-56-1 帑 sign \x5E14 12346-125-4 帔 sign \x5E15 12346-13-5 帕 sign \x5E16 23456-12346-5 sign \x5E18 123-235-3 帘 sign \x5E19 2345-23456-3 帙 sign \x5E1A 14-34-1 帚 sign \x5E1B 1234-13-3 帛 sign \x5E1D 2345-146-4 å¸ sign \x5E1F 245-1235-3 帟 sign \x5E21 12346-356-3 帡 sign \x5E22 125-26 帢 sign \x5E23 13-23-4 帣 sign \x5E24 1456-3 帤 sign \x5E25 234-245-4 帥 sign \x5E28 234-245-4 帨 sign \x5E2B 234-24 師 sign \x5E2D 14-1235-3 席 sign \x5E33 14-25-4 帳 sign \x5E34 14-256-1 帴 sign \x5E36 2345-346-4 帶 sign \x5E37 2456-146-3 帷 sign \x5E38 234-25-3 常 sign \x5E3D 134-1236-2 帽 sign \x5E40 14-356-4 å¹€ sign \x5E43 2456-146-3 幃 sign \x5E44 46-0 幄 sign \x5E45 124-12345 å¹… sign \x5E4B 12346-2346-3 幋 sign \x5E4C 124-56-1 幌 sign \x5E4E 134-1235-3 幎 sign \x5E54 134-45-2 å¹” sign \x5E55 134-12456-3 幕 sign \x5E57 12345-12456-5 sign \x5E58 14-1235 幘 sign \x5E59 134-12456-3 å¹™ sign \x5E5B 14-25-4 å¹› sign \x5E5D 14-256-1 å¹ sign \x5E5E 124-12345-3 sign \x5E5F 1346-24-4 幟 sign \x5E60 124-136 å¹  sign \x5E61 124-45 幡 sign \x5E62 2345-236-2 å¹¢ sign \x5E63 1234-146-2 å¹£ sign \x5E66 134-35-3 幦 sign \x5E67 1346-13456 å¹§ sign \x5E68 14-235 幨 sign \x5E69 124-1246-3 幩 sign \x5E6A 134-236-3 幪 sign \x5E6B 1234-56 幫 sign \x5E6C 1346-16-3 幬 sign \x5E6E 1346-1456-3 å¹® sign \x5E70 125-256-1 å¹° sign \x5E72 13-1345 å¹² sign \x5E73 12346-356-3 å¹³ sign \x5E74 1345-256-3 å¹´ sign \x5E75 125-126 å¹µ sign \x5E76 1234-356-4 å¹¶ sign \x5E78 125-1245-2 幸 sign \x5E79 13-1345-4 å¹¹ sign \x5E7A 13456-0 幺 sign \x5E7B 2456-45-2 å¹» sign \x5E7C 245-16-4 å¹¼ sign \x5E7D 245-16 å¹½ sign \x5E7E 13-125-1 å¹¾ sign \x5E80 12346-125-1 庀 sign \x5E82 1346-24-6 庂 sign \x5E84 14-56 庄 sign \x5E87 1234-125-4 庇 sign \x5E88 2345-356 庈 sign \x5E89 23456-356-6 庉 sign \x5E8A 1346-56-3 床 sign \x5E8B 12345-146-1 庋 sign \x5E8F 14-245-2 åº sign \x5E95 2345-146-1 底 sign \x5E96 12346-34-3 庖 sign \x5E97 2345-235-4 店 sign \x5E9A 13-1245 庚 sign \x5E9C 124-136-1 府 sign \x5EA0 1346-25-3 庠 sign \x5EA2 14-35-3 庢 sign \x5EA4 14-24-2 庤 sign \x5EA5 245-16 庥 sign \x5EA6 2345-1236-2 度 sign \x5EA7 14-135-2 座 sign \x5EAB 124-136-4 庫 sign \x5EAC 12346-56-3 庬 sign \x5EAD 23456-356-3 庭 sign \x5EB3 12346-125-6 庳 sign \x5EB5 456-0 庵 sign \x5EB6 234-1456-4 庶 sign \x5EB7 125-56 康 sign \x5EB8 245-236-3 庸 sign \x5EB9 23456-12456-5 sign \x5EBE 1456-3 庾 sign \x5EC1 1346-24-4 å» sign \x5EC2 234-25 廂 sign \x5EC4 13-16-4 廄 sign \x5EC8 125-12-2 廈 sign \x5EC9 123-235-3 廉 sign \x5ECA 123-56-3 廊 sign \x5ECB 234-16 廋 sign \x5ECC 14-24-2 廌 sign \x5ECE 1235-356-1 廎 sign \x5ED1 13-1246-1 廑 sign \x5ED2 1245-1236-3 å»’ sign \x5ED3 12456-12456-5 sign \x5ED4 123-16-3 å»” sign \x5ED5 245-456-4 廕 sign \x5ED6 123-13456-2 å»– sign \x5ED9 24-2 å»™ sign \x5EDA 1346-1456-3 廚 sign \x5EDB 1346-256-3 å»› sign \x5EDC 23456-1236-3 廜 sign \x5EDD 234-24 å» sign \x5EDF 134-13456-2 廟 sign \x5EE0 1346-56-1 å»  sign \x5EE1 134-1236-3 廡 sign \x5EE2 124-146-4 廢 sign \x5EE3 12345-56-1 廣 sign \x5EE7 1346-25-3 å»§ sign \x5EE8 13-346-1 廨 sign \x5EE9 123-456-6 廩 sign \x5EEC 123-1236-3 廬 sign \x5EEE 245-356-1 å»® sign \x5EEF 234-256-1 廯 sign \x5EF1 245-236 å»± sign \x5EF3 23456-2356 廳 sign \x5EF6 256-3 å»¶ sign \x5EF7 23456-356-3 å»· sign \x5EFA 13-256-4 建 sign \x5EFB 1256-3 sign \x5EFE 13-236-1 廾 sign \x5EFF 245-12-2 廿 sign \x5F01 1234-256-2 å¼ sign \x5F02 24-2 异 sign \x5F04 123-236-2 弄 sign \x5F07 235-1 弇 sign \x5F08 245-1235-3 弈 sign \x5F0A 1234-146-2 弊 sign \x5F0B 245-1235-3 弋 sign \x5F0C 245-35 sign \x5F0F 234-1235 å¼ sign \x5F12 234-24-4 å¼’ sign \x5F13 13-236 弓 sign \x5F14 2345-13456-4 å¼” sign \x5F15 245-1246-6 引 sign \x5F17 124-35 å¼— sign \x5F18 2456-1245-3 弘 sign \x5F1B 1346-24-3 å¼› sign \x5F1F 2345-146-2 弟 sign \x5F22 23456-1236 å¼¢ sign \x5F24 2345-146-1 弤 sign \x5F26 256-3 弦 sign \x5F27 136-3 å¼§ sign \x5F28 1346-13456 弨 sign \x5F29 1345-1236-6 弩 sign \x5F2D 134-146-6 å¼­ sign \x5F2E 125-23 å¼® sign \x5F30 234-34 å¼° sign \x5F31 245-246-3 å¼± sign \x5F35 14-25 å¼µ sign \x5F36 14-25-4 å¼¶ sign \x5F37 1235-25-3 å¼· sign \x5F38 1234-12345 弸 sign \x5F3C 1234-35-3 å¼¼ sign \x5F40 13-16-4 å½€ sign \x5F44 1235-16 彄 sign \x5F46 1234-23456-3 彆 sign \x5F48 2345-45-2 彈 sign \x5F49 12456-12456-5 sign \x5F4A 1235-25-6 彊 sign \x5F4B 12345-1245 彋 sign \x5F4C 1345-125-3 彌 sign \x5F4E 2456-45 彎 sign \x5F4F 124-12456-5 å½ sign \x5F54 123-12345-3 å½” sign \x5F56 23456-234-4 å½– sign \x5F57 234-245-2 å½— sign \x5F58 14-24-2 彘 sign \x5F59 1256-2 å½™ sign \x5F5C 24-0 sign \x5F5D 24-3 å½ sign \x5F62 245-356-3 å½¢ sign \x5F64 23456-236-3 彤 sign \x5F65 256-2 å½¥ sign \x5F67 245-12345 å½§ sign \x5F69 1346-126-1 彩 sign \x5F6A 1234-13456 彪 sign \x5F6B 2345-13456 彫 sign \x5F6C 1234-1246 彬 sign \x5F6D 12346-14-3 å½­ sign \x5F6F 12346-13456 彯 sign \x5F70 14-25 å½° sign \x5F71 245-356-1 å½± sign \x5F73 1346-1235 å½³ sign \x5F77 124-56-1 å½· sign \x5F78 14-236 彸 sign \x5F79 245-1235-3 å½¹ sign \x5F7C 1234-125-1 å½¼ sign \x5F7F 124-35 彿 sign \x5F80 2456-56-6 å¾€ sign \x5F81 14-356 å¾ sign \x5F82 1346-1236-3 徂 sign \x5F85 2345-126-2 å¾… sign \x5F87 234-234 徇 sign \x5F88 125-1246-1 很 sign \x5F89 245-25-3 徉 sign \x5F8A 1256-3 徊 sign \x5F8B 123-1346-3 律 sign \x5F8C 125-16-2 後 sign \x5F90 1346-245-3 å¾ sign \x5F91 13-356-4 徑 sign \x5F92 23456-1236-3 å¾’ sign \x5F97 2345-46 å¾— sign \x5F98 12346-1256-3 徘 sign \x5F99 234-346-1 å¾™ sign \x5F9B 13-125-4 å¾› sign \x5F9C 234-25-3 徜 sign \x5F9E 1346-236-3 從 sign \x5FA0 123-126-3 å¾  sign \x5FA1 1456-2 御 sign \x5FA7 12346-256-4 sign \x5FA8 2456-56-3 徨 sign \x5FA9 124-12345-3 復 sign \x5FAA 1346-234-3 循 sign \x5FAC 12346-56-3 徬 sign \x5FAD 13456-3 å¾­ sign \x5FAE 134-125-3 å¾® sign \x5FAF 125-146-3 徯 sign \x5FB5 14-356 å¾µ sign \x5FB7 2345-46 å¾· sign \x5FB9 1346-23456-5 å¾¹ sign \x5FBC 13-13456-1 å¾¼ sign \x5FBD 124-146 å¾½ sign \x5FBF 123-236-6 徿 sign \x5FC0 1345-56-6 å¿€ sign \x5FC3 234-456 心 sign \x5FC5 1234-23456 å¿… sign \x5FC9 23456-1236 忉 sign \x5FCC 13-125-2 忌 sign \x5FCD 245-1246-1 å¿ sign \x5FCF 1346-345-4 å¿ sign \x5FD0 23456-45-1 å¿ sign \x5FD1 23456-1235 å¿‘ sign \x5FD2 23456-1235 å¿’ sign \x5FD5 23456-346-4 å¿• sign \x5FD6 1346-23-1 å¿– sign \x5FD7 14-24-4 å¿— sign \x5FD8 134-56-3 忘 sign \x5FD9 134-56-3 å¿™ sign \x5FDD 23456-235-1 å¿ sign \x5FDE 134-1246-3 忞 sign \x5FDF 134-14-1 忟 sign \x5FE0 14-236 å¿  sign \x5FE1 1346-236 å¿¡ sign \x5FE4 1245-6 忤 sign \x5FE8 2346-2 忨 sign \x5FEA 234-236 忪 sign \x5FEB 124-346-4 å¿« sign \x5FED 1234-256-2 å¿­ sign \x5FEE 14-24-4 å¿® sign \x5FF1 234-456-3 忱 sign \x5FF3 23456-23-3 忳 sign \x5FF5 1345-235-2 念 sign \x5FF7 125-236 å¿· sign \x5FF8 1345-16-1 忸 sign \x5FFB 245-1246 å¿» sign \x5FFD 124-35 忽 sign \x5FFF 124-1246-6 å¿¿ sign \x6000 2456-346-3 怀 sign \x600A 2345-13456 怊 sign \x600B 134-1246-6 怋 sign \x600D 14-12456-3 æ€ sign \x600E 14-456-1 怎 sign \x600F 245-25-1 æ€ sign \x6010 125-16-2 æ€ sign \x6012 1345-1236-2 怒 sign \x6013 1345-34-3 怓 sign \x6014 14-356 怔 sign \x6015 12346-12-4 怕 sign \x6016 1234-1236-4 怖 sign \x6017 23456-12346-5 sign \x6019 136-2 怙 sign \x601A 1346-1236 怚 sign \x601B 23456-45-1 怛 sign \x601C 123-256-3 怜 sign \x601D 234-24 æ€ sign \x601E 245-16-3 怞 sign \x6020 23456-126-6 怠 sign \x6021 24-3 怡 sign \x6025 13-26 急 sign \x6026 12346-356 怦 sign \x6027 234-356-4 性 sign \x6028 23-4 怨 sign \x6029 1345-125-3 怩 sign \x602A 12345-346-4 怪 sign \x602B 124-35-3 怫 sign \x602E 245-16 怮 sign \x602F 125-12346-5 怯 sign \x6033 124-56-1 怳 sign \x6035 14-1346 怵 sign \x6039 23456-12 怹 sign \x6040 1346-24-1 æ€ sign \x6041 245-456-2 æ sign \x6042 234-234 æ‚ sign \x6043 1346-24-6 æƒ sign \x6045 123-1236-6 æ… sign \x6046 125-1245-3 æ† sign \x6047 125-56 æ‡ sign \x6049 14-24-1 æ‰ sign \x604C 23456-13456 æŒ sign \x604D 124-56-1 æ sign \x6050 125-236-1 æ sign \x6052 125-1245-3 æ’ sign \x6053 234-146 æ“ sign \x6054 125-34-2 æ” sign \x6055 234-1456-4 æ• sign \x6059 245-25-2 æ™ sign \x605A 2456-146-2 æš sign \x605B 1256-3 æ› sign \x605D 13-2345-5 æ sign \x605F 125-236 æŸ sign \x6062 124-1256 æ¢ sign \x6063 234-24-4 æ£ sign \x6064 234-1346 æ¤ sign \x6065 1346-24-1 æ¥ sign \x6067 125-1245-3 æ§ sign \x6068 125-1246-2 æ¨ sign \x6069 245-1246 æ© sign \x606A 1235-12456-5 æª sign \x606B 2345-236-2 æ« sign \x606C 23456-235-6 æ¬ sign \x606D 13-236 æ­ sign \x606F 234-1235 æ¯ sign \x6070 125-26 æ° sign \x607F 245-236-1 æ¿ sign \x6081 13-23-4 æ‚ sign \x6083 12456-1246-1 悃 sign \x6084 1346-13456-4 æ‚„ sign \x6085 12356-3 æ‚… sign \x6087 23456-1236-3 悇 sign \x6089 234-1235 悉 sign \x608A 14-23456-5 悊 sign \x608C 2345-146-2 悌 sign \x608D 125-1345-6 æ‚ sign \x6090 23456-1235 æ‚ sign \x6092 245-26 æ‚’ sign \x6094 124-1256-4 æ‚” sign \x6095 125-125 æ‚• sign \x6096 1234-1256-2 æ‚– sign \x609A 234-236-1 悚 sign \x609B 234-23 æ‚› sign \x609D 124-1256 æ‚ sign \x609F 1245-2 悟 sign \x60A0 245-16-3 æ‚  sign \x60A2 123-25-2 æ‚¢ sign \x60A3 2456-45-2 æ‚£ sign \x60A8 1345-125-6 您 sign \x60B0 1346-236-2 æ‚° sign \x60B1 124-125-1 悱 sign \x60B2 1234-125 悲 sign \x60B4 234-245-2 æ‚´ sign \x60B5 14-25-4 悵 sign \x60B6 134-2346-2 æ‚¶ sign \x60B7 123-245-2 æ‚· sign \x60B8 12345-146-4 悸 sign \x60B9 13-2346-1 悹 sign \x60BA 13-2346-1 悺 sign \x60BB 125-1245-2 æ‚» sign \x60BC 2345-1236-2 悼 sign \x60BD 1346-146 悽 sign \x60BE 125-236 悾 sign \x60C0 123-234-2 惀 sign \x60C4 1345-1235-3 惄 sign \x60C5 1346-356-3 情 sign \x60C6 1346-16-3 惆 sign \x60C7 2345-234 惇 sign \x60C8 12345-135-1 惈 sign \x60C9 14-235 惉 sign \x60CA 13-356 惊 sign \x60CB 2346-1 惋 sign \x60CC 23-4 惌 sign \x60CE 13-125-2 惎 sign \x60CF 123-345-3 æƒ sign \x60D1 2456-13-3 惑 sign \x60D3 1235-23-3 惓 sign \x60D5 23456-1235 惕 sign \x60D8 134-56-6 惘 sign \x60D9 14-12356-5 惙 sign \x60DA 124-35 惚 sign \x60DB 124-1246 惛 sign \x60DC 234-1235 惜 sign \x60DF 2456-146-3 惟 sign \x60E0 2456-146-2 惠 sign \x60E1 12456-5 惡 sign \x60E6 2345-235-4 惦 sign \x60F0 2345-135-2 惰 sign \x60F1 1345-1236-6 惱 sign \x60F2 2456-1246-2 惲 sign \x60F3 234-25-1 想 sign \x60F4 1346-23-1 惴 sign \x60F6 2456-56-3 惶 sign \x60F7 1346-234-1 惷 sign \x60F8 1235-356-3 惸 sign \x60F9 245-15-6 惹 sign \x60FA 234-356 惺 sign \x60FB 1346-46 惻 sign \x60FE 234-16-4 惾 sign \x6100 1346-13456-1 æ„€ sign \x6101 234-16-3 æ„ sign \x6103 234-23-1 愃 sign \x6106 125-256 愆 sign \x6108 1456-2 愈 sign \x6109 1456-3 愉 sign \x610A 1234-1235 愊 sign \x610D 134-1246-6 æ„ sign \x610E 1234-1235 愎 sign \x610F 24-4 æ„ sign \x6110 134-256-6 æ„ sign \x6112 1235-126-4 æ„’ sign \x6113 2345-56-2 æ„“ sign \x6114 245-456 æ„” sign \x6115 1245-12456-3 æ„• sign \x6116 234-456-3 æ„– sign \x611A 1456-3 愚 sign \x611B 126-4 æ„› sign \x611C 125-12346-5 愜 sign \x611F 13-456-1 感 sign \x6123 123-356-2 æ„£ sign \x6127 12456-146-6 æ„§ sign \x6128 1235-12456-5 愨 sign \x612B 234-1236-4 æ„« sign \x612C 234-1236-4 愬 sign \x612E 13456-3 æ„® sign \x6132 12345-35 愲 sign \x6134 1346-56-4 æ„´ sign \x6137 125-126-1 æ„· sign \x613B 234-234-4 æ„» sign \x613E 1235-126-4 愾 sign \x613F 23-2 æ„¿ sign \x6141 2456-1246-2 æ… sign \x6142 245-236-1 sign \x6144 123-1346-3 æ…„ sign \x6145 234-1236 æ…… sign \x6146 23456-1236 æ…† sign \x6147 245-1246 æ…‡ sign \x6148 1346-24-3 æ…ˆ sign \x6149 1346-12345 æ…‰ sign \x614A 125-12346-5 æ…Š sign \x614B 23456-346-4 æ…‹ sign \x614C 124-56 æ…Œ sign \x614D 2456-1246-4 æ… sign \x614E 234-1246-2 æ…Ž sign \x6152 14-1236 æ…’ sign \x6153 12346-13456-6 sign \x6155 134-1236-2 æ…• sign \x6158 1346-345-1 æ…˜ sign \x615A 1346-345-3 æ…š sign \x615D 23456-1235 æ… sign \x615E 14-25 æ…ž sign \x615F 2345-236-2 æ…Ÿ sign \x6162 134-45-2 æ…¢ sign \x6163 12345-45-4 æ…£ sign \x6164 1235-12456-5 æ…¤ sign \x6165 14-1236-2 æ…¥ sign \x6167 2456-146-2 æ…§ sign \x6168 1235-126-4 æ…¨ sign \x616A 16-4 æ…ª sign \x616B 234-236-1 æ…« sign \x616C 1235-1246-3 æ…¬ sign \x616E 123-245-2 æ…® sign \x6170 2456-146-4 æ…° sign \x6171 23456-23-3 æ…± sign \x6173 125-45 æ…³ sign \x6174 234-12346-5 æ…´ sign \x6175 245-236-3 æ…µ sign \x6176 125-356-4 æ…¶ sign \x6177 125-56-1 æ…· sign \x6179 14-26 æ…¹ sign \x617A 123-16-3 æ…º sign \x617C 1346-1235 æ…¼ sign \x617E 245-12345-3 æ…¾ sign \x6180 123-13456-3 憀 sign \x6182 245-16 憂 sign \x6183 14-236 憃 sign \x6187 125-125-4 sign \x6189 12346-14-3 憉 sign \x618A 1234-125-2 憊 sign \x618B 1234-23456-5 憋 sign \x618D 13-13456 æ† sign \x618E 14-1245 憎 sign \x6190 123-256-3 æ† sign \x6191 12346-1245-3 憑 sign \x6192 1235-1256-1 憒 sign \x6193 2456-146-2 憓 sign \x6194 1346-13456-3 憔 sign \x6196 245-1246-2 憖 sign \x6199 125-125-1 sign \x619A 2345-45-2 憚 sign \x619B 123-345-3 憛 sign \x619D 2345-245-2 æ† sign \x61A4 124-1246-6 憤 sign \x61A7 1346-236 憧 sign \x61A8 125-456 憨 sign \x61A9 125-125-4 憩 sign \x61AA 125-45-3 憪 sign \x61AB 134-1246-6 憫 sign \x61AC 13-356-1 憬 sign \x61AD 123-13456-3 憭 sign \x61AE 134-1236-6 憮 sign \x61AF 1346-345-1 憯 sign \x61B0 1235-12356-5 憰 sign \x61B1 1346-12345 憱 sign \x61B2 125-256-4 憲 sign \x61B6 245-1235 憶 sign \x61B8 1346-235 憸 sign \x61BA 2345-345-2 憺 sign \x61BC 13-356-1 憼 sign \x61BE 125-456-2 憾 sign \x61C2 2345-236-1 懂 sign \x61C3 1235-1246-3 懃 sign \x61C5 13-245-2 懅 sign \x61C6 1346-1236-1 懆 sign \x61C7 125-1246-1 懇 sign \x61C8 125-346-2 懈 sign \x61C9 245-356 應 sign \x61CA 1236-4 懊 sign \x61CB 134-16-2 懋 sign \x61CC 245-1235-3 懌 sign \x61CD 123-456-6 æ‡ sign \x61D8 2345-146-4 懘 sign \x61DE 134-236-1 懞 sign \x61DF 2345-245-2 懟 sign \x61E0 1346-146-3 懠 sign \x61E1 1346-146-3 sign \x61E3 134-2346-2 懣 sign \x61E4 1346-16-3 懤 sign \x61E5 14-24-4 懥 sign \x61E6 1345-135-2 懦 sign \x61E7 1345-135-2 懧 sign \x61E8 235-0 懨 sign \x61EA 1234-12456-5 懪 sign \x61EB 14-24-4 懫 sign \x61ED 12456-56-4 懭 sign \x61EE 245-16 懮 sign \x61F0 123-16-3 懰 sign \x61F2 1346-356-3 懲 sign \x61F5 134-236-1 懵 sign \x61F6 123-45-6 懶 sign \x61F7 2456-346-3 懷 sign \x61F8 23-3 懸 sign \x61FA 1346-345-4 懺 sign \x61FC 13-245-2 懼 sign \x61FD 124-2346 懽 sign \x61FE 234-12346-5 懾 sign \x61FF 24-4 懿 sign \x6200 123-23-1 戀 sign \x6201 1345-45-6 æˆ sign \x6204 124-12456-5 戄 sign \x6207 1245-56-2 戇 sign \x6208 12345-135 戈 sign \x6209 12356-3 戉 sign \x620A 134-1236-2 戊 sign \x620C 234-1346 戌 sign \x620D 234-1456-4 æˆ sign \x620E 245-236-3 戎 sign \x6210 234-356-3 æˆ sign \x6211 1245-135-6 我 sign \x6212 13-346-4 戒 sign \x6214 14-256 戔 sign \x6215 1346-25-3 戕 sign \x6216 2456-13-3 或 sign \x6219 2345-236-2 戙 sign \x621A 1346-1235 戚 sign \x621B 2345-5 戛 sign \x621F 13-1235 戟 sign \x6221 125-456 戡 sign \x6222 1346-26 戢 sign \x6223 12456-146-3 戣 sign \x6224 1235-126-4 戤 sign \x6225 2345-1245-2 戥 sign \x6227 1346-25 戧 sign \x6229 14-256-1 戩 sign \x622A 14-23456-3 截 sign \x622D 256-1 戭 sign \x622E 123-12345-3 戮 sign \x6230 14-256-4 戰 sign \x6232 125-125-4 戲 sign \x6233 1346-246-5 戳 sign \x6234 2345-346-4 戴 sign \x6236 136-2 戶 sign \x623D 124-136-4 戽 sign \x623E 123-245-2 戾 sign \x623F 124-56-3 房 sign \x6240 234-135-1 所 sign \x6241 1234-256-1 æ‰ sign \x6242 2345-235-4 扂 sign \x6243 12345-356 扃 sign \x6246 24-1 扆 sign \x6247 234-256-4 扇 sign \x6248 136-2 扈 sign \x6249 124-125 扉 sign \x624A 235-6 扊 sign \x624B 234-16-1 手 sign \x624D 1346-126-3 æ‰ sign \x624E 14-2345-5 扎 sign \x6250 123-46-3 æ‰ sign \x6251 1234-12456 扑 sign \x6252 12346-12-3 扒 sign \x6253 2345-12-1 打 sign \x6254 2456-356 扔 sign \x6258 23456-12456-5 sign \x625A 1234-45-2 扚 sign \x625B 13-56 扛 sign \x625E 125-1345-2 扞 sign \x6260 1346-12 扠 sign \x6261 23456-135 扡 sign \x6262 125-125-4 扢 sign \x6263 1235-16-4 扣 sign \x6264 1245-35-3 扤 sign \x6266 1346-256 扦 sign \x626D 1345-16-1 扭 sign \x626E 1234-45-2 扮 sign \x626F 1346-15-1 扯 sign \x6270 13456-6 扰 sign \x6271 1235-26 扱 sign \x6272 13-456-2 扲 sign \x6273 12346-45 扳 sign \x6276 124-136-3 扶 sign \x6279 12346-146 批 sign \x627A 14-24-1 扺 sign \x627B 14-23456-5 扻 sign \x627C 46-0 扼 sign \x627D 2345-234-2 扽 sign \x627E 14-34-1 找 sign \x627F 234-356-3 承 sign \x6280 13-125-2 技 sign \x6283 1234-256-2 抃 sign \x6284 1346-34 抄 sign \x6286 134-1246-6 抆 sign \x6288 13-16-1 抈 sign \x6289 1235-12356-5 抉 sign \x628A 1234-12-1 把 sign \x628E 234-256-2 抎 sign \x628F 2456-45-3 æŠ sign \x6291 245-1235 抑 sign \x6292 234-1456 抒 sign \x6293 14-34-1 抓 sign \x6294 12346-16-3 抔 sign \x6295 23456-16-3 投 sign \x6296 2345-16-1 抖 sign \x6297 1235-56-4 抗 sign \x6298 14-23456-5 折 sign \x62A6 1234-356-1 抦 sign \x62A8 12346-356-3 抨 sign \x62AA 1234-1236-4 抪 sign \x62AB 12346-125 披 sign \x62AC 23456-126-3 抬 sign \x62AE 1346-1246-1 抮 sign \x62B1 12346-1236-6 抱 sign \x62B3 1345-125-2 抳 sign \x62B4 245-146-2 抴 sign \x62B5 2345-146-1 抵 sign \x62B6 1346-1235 抶 sign \x62B9 134-1356-5 抹 sign \x62BB 1346-1246-1 抻 sign \x62BC 2345-5 押 sign \x62BD 1346-16 抽 sign \x62BE 1235-245 抾 sign \x62BF 134-1246-6 抿 sign \x62C2 124-35 æ‹‚ sign \x62C3 14-12-2 拃 sign \x62C4 14-1456-1 æ‹„ sign \x62C6 1346-13-5 拆 sign \x62C7 134-1236-6 拇 sign \x62C8 1345-235 拈 sign \x62C9 123-346 拉 sign \x62CA 124-136-1 拊 sign \x62CB 12346-34 æ‹‹ sign \x62CC 1234-2346-2 拌 sign \x62CD 12346-13-5 æ‹ sign \x62CE 123-356 拎 sign \x62CF 1345-12-3 æ‹ sign \x62D0 12345-346-1 æ‹ sign \x62D1 1235-235-3 æ‹‘ sign \x62D2 1235-245-6 æ‹’ sign \x62D3 23456-12456-5 sign \x62D4 1234-35-3 æ‹” sign \x62D6 23456-135 æ‹– sign \x62D7 34-4 æ‹— sign \x62D8 1235-245 拘 sign \x62D9 14-12356-5 æ‹™ sign \x62DA 12346-2346-4 拚 sign \x62DB 14-13456 æ‹› sign \x62DC 1234-346-4 拜 sign \x62EB 125-1246-2 æ‹« sign \x62EC 1235-1356-5 括 sign \x62ED 234-1235 æ‹­ sign \x62EE 13-23456-5 æ‹® sign \x62EF 1346-356-1 拯 sign \x62F1 13-236-1 拱 sign \x62F3 1235-23-3 拳 sign \x62F4 234-45 æ‹´ sign \x62F6 14-2345-5 æ‹¶ sign \x62F7 125-34 æ‹· sign \x62F8 1346-24-1 拸 sign \x62F9 125-12346-3 拹 sign \x62FC 12346-356-4 拼 sign \x62FD 245-146-2 拽 sign \x62FE 234-26-3 拾 sign \x62FF 1345-12-3 æ‹¿ sign \x6301 1346-24-3 æŒ sign \x6302 12345-12-4 挂 sign \x6303 14-35-3 挃 sign \x6307 14-24-1 指 sign \x6308 1235-23456-5 挈 sign \x6309 1345-4 按 sign \x630E 12456-12-4 挎 sign \x6310 1345-12-3 æŒ sign \x6311 23456-13456 挑 sign \x6313 14-12 挓 sign \x6316 2456-2345-5 挖 sign \x6328 1245-346-3 挨 sign \x632A 1345-135-3 挪 sign \x632B 1346-135-4 挫 sign \x632F 14-1246-4 振 sign \x6332 234-12 挲 sign \x6336 13-12345-3 挶 sign \x6339 245-26 挹 sign \x633A 23456-356-6 挺 sign \x633C 1345-135-3 挼 sign \x633D 2456-45-6 挽 sign \x633E 125-12346-5 挾 sign \x6342 136-1 æ‚ sign \x6343 12456-1246-1 æƒ sign \x6344 13-16-4 æ„ sign \x6345 23456-236-1 æ… sign \x6346 12456-1246-1 æ† sign \x6349 14-12345 æ‰ sign \x634B 123-12356-5 æ‹ sign \x634C 1234-2345-5 æŒ sign \x634D 125-1345-6 æ sign \x634E 234-34 æŽ sign \x634F 1345-12346-3 æ sign \x6350 13-23 æ sign \x6354 13-12456-5 æ” sign \x6355 1234-1236-2 æ• sign \x6358 14-234-4 æ˜ sign \x6365 2346-1 æ¥ sign \x6367 12346-236-1 æ§ sign \x6368 234-15-1 æ¨ sign \x6369 123-23456-3 æ© sign \x636B 134-2346-3 æ« sign \x636D 1234-346-1 æ­ sign \x636E 13-245 æ® sign \x636F 2345-1236-4 æ¯ sign \x6371 1245-346-3 æ± sign \x6372 13-23-1 æ² sign \x6375 1346-1246-1 æµ sign \x6376 1346-245-3 æ¶ sign \x6377 14-23456-3 æ· sign \x637A 1345-2345-3 æº sign \x637B 1345-256-1 æ» sign \x637C 1345-135-3 æ¼ sign \x637D 14-1346 æ½ sign \x6380 125-256 掀 sign \x6381 1346-14-3 æŽ sign \x6382 2345-235-2 掂 sign \x6383 234-1236-4 掃 sign \x6384 123-234-3 掄 sign \x6387 14-12356-5 掇 sign \x6388 234-16-2 授 sign \x6389 2345-13456-2 掉 sign \x638C 14-25-1 掌 sign \x638E 13-125-1 掎 sign \x638F 23456-1236-3 æŽ sign \x6390 125-1234-5 æŽ sign \x6392 12346-346-3 排 sign \x6394 125-256 掔 sign \x6396 245-1235-3 掖 sign \x6397 12-4 掗 sign \x6398 12345-35-3 掘 sign \x6399 14-1245 掙 sign \x639B 12345-12-4 掛 sign \x639E 234-235-4 掞 sign \x639F 2345-2356-4 掟 sign \x63A0 123-246-3 掠 sign \x63A1 1346-126-1 採 sign \x63A2 23456-345-4 探 sign \x63A3 14-146-4 掣 sign \x63A4 1234-356 掤 sign \x63A5 14-12346-5 接 sign \x63A7 125-236-4 控 sign \x63A8 23456-245 推 sign \x63A9 235-1 掩 sign \x63AA 1346-1236-4 措 sign \x63AB 14-16 掫 sign \x63AC 13-12345 掬 sign \x63AD 23456-235-6 掭 sign \x63AE 1235-256-3 掮 sign \x63AF 1235-1245-4 掯 sign \x63B0 134-13-5 掰 sign \x63B1 12346-12-3 掱 sign \x63B9 134-1245 掹 sign \x63BD 12346-236-4 掽 sign \x63BE 23-2 掾 sign \x63C0 13-45-1 æ€ sign \x63C3 14-256-1 æƒ sign \x63C4 1456-3 æ„ sign \x63C5 256-3 æ… sign \x63C6 12456-146-3 æ† sign \x63C7 1345-345-3 æ‡ sign \x63C8 12345-1245 æˆ sign \x63C9 245-16-3 æ‰ sign \x63CC 234-46 æŒ sign \x63CD 14-16-4 æ sign \x63CE 234-23 æŽ sign \x63CF 134-13456-3 æ sign \x63D0 23456-146-3 æ sign \x63D2 1346-1234-5 æ’ sign \x63D3 23456-135 æ“ sign \x63D5 14-456-4 æ• sign \x63D6 245-26 æ– sign \x63D7 234-234-6 æ— sign \x63DA 245-25-3 æš sign \x63DB 2346-2 æ› sign \x63DC 235-1 æœ sign \x63DD 14-45-2 æ sign \x63DE 456-1 æž sign \x63E0 2345-5 æ  sign \x63E1 46-0 æ¡ sign \x63E3 1346-23-1 æ£ sign \x63E4 1346-23-1 sign \x63E5 23456-146-4 æ¥ sign \x63E6 123-12-1 æ¦ sign \x63E9 125-346 æ© sign \x63EA 1346-16 æª sign \x63EB 14-16 æ« sign \x63ED 1235-23456-5 æ­ sign \x63EE 124-146 æ® sign \x63F2 234-12346-5 æ² sign \x63F3 234-23456-5 æ³ sign \x63F4 2346-3 æ´ sign \x63F5 1235-256-3 æµ sign \x63F6 245-15-3 æ¶ sign \x63F8 14-12 æ¸ sign \x63F9 1234-1256-4 æ¹ sign \x63FC 2345-456-1 æ¼ sign \x63FE 2456-1246-1 æ¾ sign \x6406 1235-16-4 æ† sign \x6407 13-456-2 æ‡ sign \x6409 1235-12456-5 æ‰ sign \x640A 1346-16 æŠ sign \x640B 1346-346 æ‹ sign \x640C 14-256-1 æŒ sign \x640D 234-23-1 æ sign \x640E 234-23 æŽ sign \x640F 1234-12456-5 æ sign \x6410 1346-12345 æ sign \x6412 1234-56-1 æ’ sign \x6413 1346-135 æ“ sign \x6414 234-1236 æ” sign \x6415 125-26-3 æ• sign \x6416 13456-3 æ– sign \x6417 2345-1236-1 æ— sign \x6418 14-24 æ˜ sign \x641A 125-12346-3 æš sign \x641B 13-235 æ› sign \x641C 234-16-1 æœ sign \x641E 13-34-1 æž sign \x6420 234-12456-5 æ  sign \x6421 234-56-1 æ¡ sign \x6422 14-234-4 æ¢ sign \x6424 46-0 æ¤ sign \x6425 1346-245-3 æ¥ sign \x6426 1345-1235 æ¦ sign \x6427 234-256-4 æ§ sign \x6428 23456-1234-5 æ¨ sign \x642A 23456-56-3 æª sign \x642C 1234-2346 æ¬ sign \x642D 2345-1234-5 æ­ sign \x642E 123-1346-3 æ® sign \x642F 23456-1236-3 æ¯ sign \x6430 2456-35-3 æ° sign \x6433 2456-13-3 æ³ sign \x6434 125-256 æ´ sign \x6435 2456-1246-1 æµ sign \x6436 1346-25-1 æ¶ sign \x6437 23456-256-3 æ· sign \x643A 12456-146-3 sign \x643D 1346-12-3 æ½ sign \x643E 14-12-4 æ¾ sign \x643F 13-1234-5 æ¿ sign \x6440 136-1 æ‘€ sign \x6441 1345-4 æ‘ sign \x644B 234-2345-5 æ‘‹ sign \x644E 13-16 摎 sign \x6450 1346-25 æ‘ sign \x6451 12345-13-5 æ‘‘ sign \x6452 1234-356-1 æ‘’ sign \x6454 234-1346 æ‘” sign \x6458 14-13-3 摘 sign \x6459 123-256-3 æ‘™ sign \x645B 1346-24 æ‘› sign \x645C 12345-45-4 摜 sign \x645D 123-12345-3 æ‘ sign \x645E 123-135-3 摞 sign \x645F 123-16 摟 sign \x6460 14-236-1 æ‘  sign \x6466 2456-12-2 摦 sign \x6467 1346-245 æ‘§ sign \x6469 134-135 æ‘© sign \x646D 14-2456-5 æ‘­ sign \x646E 1245-1236-3 æ‘® sign \x646F 14-24-4 摯 sign \x6470 23456-3 æ‘° sign \x6472 234-45-4 摲 sign \x6473 13-16 摳 sign \x6474 234-1456 æ‘´ sign \x6475 234-1235 摵 sign \x6476 23456-23-3 æ‘¶ sign \x6478 134-135-1 摸 sign \x6479 134-1236-3 摹 sign \x647A 14-12346-5 摺 sign \x647B 1346-345 æ‘» sign \x647D 12346-13456 摽 sign \x6482 123-13456 æ’‚ sign \x6485 1235-12356-5 æ’… sign \x6487 12346-23456-5 sign \x6488 123-34-3 æ’ˆ sign \x6489 2345-234-4 æ’‰ sign \x648A 125-45-6 æ’Š sign \x648B 23-3 æ’‹ sign \x648D 1346-235-3 æ’ sign \x648F 1346-235-3 æ’ sign \x6490 1346-14 æ’ sign \x6492 234-2345-5 æ’’ sign \x6493 1345-34-3 æ’“ sign \x6495 234-24 æ’• sign \x6496 125-1345-2 æ’– sign \x6498 2345-1234-5 æ’˜ sign \x6499 14-23-1 æ’™ sign \x649A 1345-256-1 æ’š sign \x649D 124-146 æ’ sign \x649E 14-56-2 æ’ž sign \x649F 13-13456-2 æ’Ÿ sign \x64A2 2345-45-2 æ’¢ sign \x64A3 234-256-2 æ’£ sign \x64A4 1346-23456-5 æ’¤ sign \x64A5 1234-1356-3 æ’¥ sign \x64A6 1346-15-1 æ’¦ sign \x64A9 123-13456 æ’© sign \x64AB 124-136-1 æ’« sign \x64AC 13-13456-2 æ’¬ sign \x64AD 1234-135-4 æ’­ sign \x64AE 1346-12356-5 æ’® sign \x64B0 14-45-2 æ’° sign \x64B2 12346-12456-5 sign \x64B3 13-456-2 æ’³ sign \x64B4 2345-1246-4 æ’´ sign \x64BB 23456-2345-5 æ’» sign \x64BC 125-456-2 æ’¼ sign \x64BE 2456-135 æ’¾ sign \x64BF 13-235-1 æ’¿ sign \x64C1 245-236-1 æ“ sign \x64C2 123-245-3 æ“‚ sign \x64C4 123-1236-6 æ“„ sign \x64C5 234-256-2 æ“… sign \x64C7 14-13-3 擇 sign \x64C9 14-12345 擉 sign \x64CA 13-1235 擊 sign \x64CB 2345-56-1 æ“‹ sign \x64CD 1346-1236 æ“ sign \x64CE 1235-356-3 擎 sign \x64CF 1235-356-3 æ“ sign \x64D0 12345-45-4 æ“ sign \x64D2 1235-456-3 æ“’ sign \x64D4 2345-345 æ“” sign \x64D6 1235-12 æ“– sign \x64D7 12346-1235 æ“— sign \x64D8 134-13-5 擘 sign \x64DA 13-245-4 據 sign \x64DD 134-1245 æ“ sign \x64E0 14-146 æ“  sign \x64E1 14-146 sign \x64E2 14-12456-3 æ“¢ sign \x64E3 2345-1236-1 æ“£ sign \x64E4 234-1245-4 擤 sign \x64E5 234-1245-4 sign \x64E6 1346-2345-5 擦 sign \x64E8 245-15-3 擨 sign \x64E9 1456-3 æ“© sign \x64EB 12346-5 æ“« sign \x64EC 24-6 擬 sign \x64ED 2456-12456-3 æ“­ sign \x64EF 1234-1246-4 擯 sign \x64F0 1345-356-2 æ“° sign \x64F1 13-12456-5 擱 sign \x64F2 14-13-3 擲 sign \x64F4 1235-56-4 æ“´ sign \x64F7 1235-23456-5 æ“· sign \x64F8 123-1234-3 擸 sign \x64FA 1234-346-1 擺 sign \x64FB 234-16-1 æ“» sign \x64FD 123-1235 擽 sign \x64FE 13456-1 擾 sign \x64FF 23456-1235 æ“¿ sign \x6500 12346-45 攀 sign \x6504 234-1456 攄 sign \x6506 123-256-6 攆 sign \x6509 124-12456-5 攉 sign \x650F 123-236-6 æ” sign \x6514 123-45-3 æ”” sign \x6516 245-356 æ”– sign \x6518 245-25-2 攘 sign \x6519 1346-345 æ”™ sign \x651B 1346-23-4 æ”› sign \x651C 12456-146-3 攜 sign \x651D 234-12346-5 æ” sign \x651E 123-135-1 攞 sign \x6522 14-45-1 攢 sign \x6523 123-23-3 攣 sign \x6524 23456-45 攤 sign \x6525 14-45-2 攥 sign \x6526 123-146-2 攦 sign \x6529 2345-56-1 攩 sign \x652A 13-34-1 攪 sign \x652B 124-12456-5 攫 sign \x652C 123-345-6 攬 sign \x652E 1345-56-6 æ”® sign \x652F 14-24 支 sign \x6530 13-1256-2 æ”° sign \x6532 1235-125 攲 sign \x6536 234-16 æ”¶ sign \x6537 125-34-1 æ”· sign \x6538 245-16-3 攸 sign \x6539 13-126-1 改 sign \x653B 13-236 æ”» sign \x653D 1234-45 攽 sign \x653E 124-56-4 放 sign \x653F 14-356-4 政 sign \x6541 2345-235 æ• sign \x6543 134-1246-6 敃 sign \x6545 13-136-4 æ•… sign \x6548 125-34-2 效 sign \x6549 134-146-6 敉 sign \x654A 1346-12345 敊 sign \x654D 14-245-2 sign \x654F 134-1246-6 æ• sign \x6551 13-16-4 æ•‘ sign \x6553 2345-12356-3 æ•“ sign \x6554 1456-6 æ•” sign \x6555 1346-1235 æ•• sign \x6556 1245-1236-2 æ•– sign \x6557 1234-346-2 æ•— sign \x6558 14-245-2 敘 sign \x6559 13-34-4 æ•™ sign \x655C 1345-12346-3 敜 sign \x655D 1234-146-2 æ• sign \x655E 1346-56-1 敞 sign \x6562 13-456-1 æ•¢ sign \x6563 234-45-4 æ•£ sign \x6566 2345-234 敦 sign \x656A 14-12356-5 敪 sign \x656C 13-356-4 敬 sign \x6572 125-34 敲 sign \x6574 14-356-1 æ•´ sign \x6575 2345-1235-3 敵 sign \x6577 124-136 æ•· sign \x6578 234-1236-4 數 sign \x657A 1235-245 敺 sign \x657B 125-356-4 æ•» sign \x6581 245-1235-3 æ– sign \x6582 123-235-6 æ–‚ sign \x6583 1234-146-2 æ–ƒ sign \x6587 134-1246-3 æ–‡ sign \x658C 1234-1246 æ–Œ sign \x6590 124-125-1 æ– sign \x6591 1234-45 æ–‘ sign \x6592 1234-45 æ–’ sign \x6595 123-45-2 æ–• sign \x6597 2345-16-1 æ–— sign \x6599 123-13456-2 æ–™ sign \x659B 125-12345-3 æ–› sign \x659C 1346-15-3 æ–œ sign \x659D 13-12-1 æ– sign \x659F 14-456 æ–Ÿ sign \x65A0 13-34-4 æ–  sign \x65A1 2456-2345-5 æ–¡ sign \x65A4 13-1246 æ–¤ sign \x65A5 1346-1235 æ–¥ sign \x65A7 124-136-1 æ–§ sign \x65A8 1346-25 æ–¨ sign \x65AA 1235-245-3 æ–ª sign \x65AB 1346-246-5 æ–« sign \x65AC 14-345-1 æ–¬ sign \x65AE 14-246-5 æ–® sign \x65AF 234-24 æ–¯ sign \x65B0 234-1246 æ–° sign \x65B2 2345-246-5 æ–² sign \x65B7 2345-23-4 æ–· sign \x65B8 14-12345 æ–¸ sign \x65B9 124-56 æ–¹ sign \x65BC 1456-0 æ–¼ sign \x65BD 234-24 æ–½ sign \x65C1 12346-56-3 æ— sign \x65C2 1235-125-3 æ—‚ sign \x65C3 14-256 æ—ƒ sign \x65C4 134-1236-3 æ—„ sign \x65C5 123-245-6 æ—… sign \x65C6 12346-1256-4 æ—† sign \x65CB 234-23-3 æ—‹ sign \x65CC 234-356 æ—Œ sign \x65CD 234-356 æ— sign \x65CE 1345-125-6 æ—Ž sign \x65CF 14-12345-3 æ— sign \x65D0 234-13456-2 æ— sign \x65D2 123-16-3 æ—’ sign \x65D6 24-1 æ—– sign \x65D7 1235-125-3 æ—— sign \x65DB 124-45 æ—› sign \x65DD 1235-1256-1 æ— sign \x65DF 1456-3 æ—Ÿ sign \x65E1 13-125-4 æ—¡ sign \x65E2 13-125-4 æ—¢ sign \x65E3 13-125-4 sign \x65E5 245-35-3 æ—¥ sign \x65E6 2345-45-4 æ—¦ sign \x65E7 2345-45-4 sign \x65E8 14-24-1 æ—¨ sign \x65E9 14-1236-1 æ—© sign \x65EC 1346-234-3 æ—¬ sign \x65ED 245-12345 æ—­ sign \x65EE 13-135 æ—® sign \x65EF 123-135 æ—¯ sign \x65F0 13-1345-4 æ—° sign \x65F1 125-1345-6 æ—± sign \x65F4 125-245 æ—´ sign \x65FA 2456-56-2 æ—º sign \x65FB 134-1246-3 æ—» sign \x6600 2456-1246-3 昀 sign \x6602 1245-56-3 昂 sign \x6603 14-46 昃 sign \x6604 1234-1246-1 昄 sign \x6606 12456-1246 昆 sign \x6607 234-356 昇 sign \x6609 124-56-1 昉 sign \x660A 125-1236-2 昊 sign \x660B 1234-356 昋 sign \x660C 1346-25 昌 sign \x660E 134-356-3 明 sign \x660F 124-1246 æ˜ sign \x6612 124-35 昒 sign \x6613 24-2 易 sign \x6614 234-1235 昔 sign \x6615 245-1246 昕 sign \x661C 245-25-3 昜 sign \x661D 14-45-1 æ˜ sign \x661F 234-356 星 sign \x6620 245-356-1 映 sign \x6624 123-356-3 sign \x6625 1346-234 春 sign \x6627 134-1256-2 昧 sign \x6628 14-12456-5 昨 sign \x662B 125-245-1 昫 sign \x662D 1346-13456 昭 sign \x662F 234-24-2 是 sign \x6631 245-12345 昱 sign \x6633 245-35-3 昳 sign \x6634 134-34-6 昴 sign \x6635 1345-1235 昵 sign \x6636 1346-56-1 昶 sign \x663A 1234-356-1 昺 sign \x6641 1346-13456-3 æ™ sign \x6642 234-24-3 時 sign \x6643 124-56-1 晃 sign \x6645 125-23 æ™… sign \x6649 14-234-4 晉 sign \x664A 12345-0 sign \x664C 125-25-1 晌 sign \x664F 45-4 æ™ sign \x6652 234-346-4 æ™’ sign \x665A 134-45-6 晚 sign \x665B 256-6 æ™› sign \x665C 12345-1246 晜 sign \x665D 14-16-4 æ™ sign \x665E 125-125 晞 sign \x665F 234-356-3 晟 sign \x6661 1234-1236 晡 sign \x6662 14-146-4 晢 sign \x6663 14-146 sign \x6664 1245-2 晤 sign \x6665 2346-6 晥 sign \x6666 124-1256-4 晦 sign \x6667 125-1236-1 sign \x6668 234-1246-3 晨 sign \x666C 14-245-4 晬 sign \x666E 12346-1236-1 æ™® sign \x666F 13-356-1 景 sign \x6670 234-1235 æ™° sign \x6671 234-235-1 æ™± sign \x6674 1346-356-3 æ™´ sign \x6676 14-356 æ™¶ sign \x6677 12345-146-1 æ™· sign \x667A 14-24-4 智 sign \x667B 456-1 æ™» sign \x667C 2346-1 晼 sign \x667E 123-56-2 晾 sign \x6684 125-23 æš„ sign \x6687 125-12-3 暇 sign \x6688 2456-1246-3 暈 sign \x6689 124-146 暉 sign \x668C 12456-146-3 暌 sign \x668D 125-124-5 æš sign \x6690 2456-146-6 æš sign \x6691 234-1456-1 æš‘ sign \x6696 1345-23-6 æš– sign \x6697 456-4 æš— sign \x6698 245-25-3 暘 sign \x669D 134-356-6 æš sign \x66A0 13-1236-1 æš  sign \x66A2 1346-25-4 暢 sign \x66A8 1235-125-4 暨 sign \x66AB 14-345-2 æš« sign \x66AE 134-1236-2 æš® sign \x66B1 1345-1235 æš± sign \x66B4 1234-1236-2 æš´ sign \x66B5 125-1345-4 sign \x66B8 123-13456-6 暸 sign \x66B9 1346-235-4 æš¹ sign \x66BE 23456-1246 æš¾ sign \x66C0 146-4 曀 sign \x66C4 12346-3 曄 sign \x66C6 123-1235-3 曆 sign \x66C7 23456-45-3 曇 sign \x66C8 23456-236-3 曈 sign \x66C9 125-13456-1 曉 sign \x66CC 14-13456-4 曌 sign \x66CF 125-25-4 æ› sign \x66D6 126-1 æ›– sign \x66D9 1346-1456-6 æ›™ sign \x66DA 134-236-3 曚 sign \x66DB 124-1246 æ›› sign \x66DC 13456-2 曜 sign \x66DD 1234-1236-2 æ› sign \x66E0 1235-56-4 æ›  sign \x66E1 1235-56-4 sign \x66E6 125-125 曦 sign \x66E7 125-125 sign \x66E8 123-236-3 曨 sign \x66E9 1345-56-3 曩 sign \x66EC 234-346-4 曬 sign \x66F0 245-246-3 æ›° sign \x66F1 13-2345-3 æ›± sign \x66F2 1235-12345 曲 sign \x66F3 245-146-2 曳 sign \x66F4 13-1245-4 æ›´ sign \x66F7 125-124-5 æ›· sign \x66F8 234-1456 書 sign \x66F9 1346-1236-3 曹 sign \x66FC 134-45-2 曼 sign \x66FE 1346-1245-3 曾 sign \x66FF 23456-146-4 替 sign \x6700 14-245-4 最 sign \x6701 1346-345-1 æœ sign \x6703 1256-2 會 sign \x6705 1235-23456-5 朅 sign \x6708 12356-3 月 sign \x6709 245-16-6 有 sign \x670B 12346-1245-3 朋 sign \x670D 124-12345-3 æœ sign \x670F 124-125-1 æœ sign \x6710 1235-245-3 æœ sign \x6712 1345-12345-3 朒 sign \x6713 23456-13456-4 sign \x6714 234-12456-5 朔 sign \x6715 14-456-2 朕 sign \x6717 123-56-6 朗 sign \x6718 14-234 朘 sign \x671B 134-56-2 望 sign \x671D 1346-13456-3 æœ sign \x671E 13-125 sign \x671F 1235-125-3 期 sign \x6722 134-56-2 朢 sign \x6723 23456-16-3 朣 sign \x6726 134-236-3 朦 sign \x6727 123-236-3 朧 sign \x6728 134-12345-3 木 sign \x672A 134-125-2 未 sign \x672B 134-1356-3 末 sign \x672C 1234-2346-1 本 sign \x672D 14-2345-5 札 sign \x672E 234-1346-3 朮 sign \x6731 14-1456 朱 sign \x6733 12346-12-3 朳 sign \x6734 12346-12456-5 sign \x6735 2345-135-1 朵 sign \x6738 123-1235-3 朸 sign \x6739 1235-16-3 朹 sign \x673A 13-125 机 sign \x673D 1345-16-1 朽 sign \x673F 1346-24-4 朿 sign \x6745 23456-236-3 æ… sign \x6746 13-1345 æ† sign \x6747 136-0 æ‡ sign \x6748 1346-12 æˆ sign \x6749 1346-345-4 æ‰ sign \x674C 1245-35-3 æŒ sign \x674E 123-125-6 æŽ sign \x674F 125-1245-2 æ sign \x6750 1346-126-3 æ sign \x6751 1346-23 æ‘ sign \x6753 234-12456-5 æ“ sign \x6755 2345-146-2 æ• sign \x6756 14-25-2 æ– sign \x6757 134-56-3 æ— sign \x6759 123-1235-3 æ™ sign \x675A 134-16-3 æš sign \x675C 2345-1236-2 æœ sign \x675D 123-125-3 æ sign \x675E 13-125-1 æž sign \x675F 1346-12345 æŸ sign \x6760 13-236-4 æ  sign \x6761 23456-13456-3 sign \x676A 134-13456-6 æª sign \x676C 2346-2 æ¬ sign \x676D 125-56-3 æ­ sign \x676F 1234-1256 æ¯ sign \x6770 13-23456-3 æ° sign \x6771 2345-236 æ± sign \x6772 13-1236-1 æ² sign \x6773 134-13456-6 æ³ sign \x6774 125-256 æ´ sign \x6775 1346-1456-6 æµ sign \x6776 1346-234 æ¶ sign \x6777 12346-12-3 æ· sign \x6778 234-1456-3 æ¸ sign \x677B 1346-16-1 æ» sign \x677C 1346-1456-6 æ¼ sign \x677E 1346-236-3 æ¾ sign \x677F 1234-45-1 æ¿ sign \x6781 13-1235-3 æž sign \x6784 1235-16-4 æž„ sign \x6785 13-146 æž… sign \x6787 12346-125-3 枇 sign \x6789 2456-56-1 枉 sign \x678B 124-56 æž‹ sign \x678C 124-1246-3 枌 sign \x6790 234-1235 æž sign \x6791 136-2 æž‘ sign \x6792 12-0 æž’ sign \x6793 2345-16-1 æž“ sign \x6795 14-456-1 æž• sign \x6797 123-456-3 æž— sign \x6798 245-245-2 枘 sign \x679A 134-1256-3 æžš sign \x679C 12345-135-1 æžœ sign \x679D 14-24 æž sign \x679F 23456-45-6 枟 sign \x67AF 124-136 枯 sign \x67B0 12346-356-3 æž° sign \x67B1 23456-126-3 æž± sign \x67B2 234-146-1 æž² sign \x67B3 14-24-1 æž³ sign \x67B4 12345-346-1 æž´ sign \x67B5 125-13456 æžµ sign \x67B6 13-12-4 æž¶ sign \x67B7 13-12 æž· sign \x67B8 13-16-1 枸 sign \x67B9 124-136 æž¹ sign \x67BB 24-2 æž» sign \x67C1 23456-135-3 æŸ sign \x67C2 24-3 柂 sign \x67C4 1234-2356-4 柄 sign \x67C8 1234-2346-2 柈 sign \x67CA 2345-236 sign \x67CE 124-136 柎 sign \x67CF 12346-13-5 æŸ sign \x67D0 134-16-6 æŸ sign \x67D1 13-456 柑 sign \x67D2 1346-35 柒 sign \x67D3 235-6 染 sign \x67D4 245-16-3 柔 sign \x67D8 14-15-4 柘 sign \x67D9 125-1234-3 柙 sign \x67DA 245-16-1 柚 sign \x67DC 12345-146-2 柜 sign \x67DD 23456-12456-5 sign \x67DE 14-12-4 柞 sign \x67DF 1345-345-3 柟 sign \x67E1 13-16-2 sign \x67E2 2345-146-1 柢 sign \x67E3 2345-23456-3 柣 sign \x67E4 14-12 柤 sign \x67E5 1346-12-3 查 sign \x67E6 14-12 sign \x67E9 13-16-2 柩 sign \x67EC 13-45-1 柬 sign \x67EE 2345-1346 柮 sign \x67EF 135-0 柯 sign \x67F0 1345-126-2 柰 sign \x67F1 1346-1456-6 柱 sign \x67F2 1234-125-4 柲 sign \x67F3 123-16-6 柳 sign \x67F4 1346-346-3 柴 sign \x67F5 234-45 柵 sign \x67F6 234-24-4 柶 sign \x67F7 14-12345 柷 sign \x67F9 124-146-4 sign \x67FF 1346-24-1 柿 sign \x6801 123-16-6 sign \x6812 1346-234-3 æ ’ sign \x6813 234-45 æ “ sign \x6814 1235-146-4 æ ” sign \x6816 1346-146 æ – sign \x6817 123-1346-3 æ — sign \x6818 24-3 æ ˜ sign \x681D 1235-12356-5 æ  sign \x681F 1234-1246 æ Ÿ sign \x6821 125-34-2 æ ¡ sign \x6822 12346-13-5 sign \x6829 125-245-1 æ © sign \x682A 14-1456 æ ª sign \x682B 14-256-4 æ « sign \x6831 13-236-1 æ ± sign \x6832 125-34-1 æ ² sign \x6833 123-1236-6 æ ³ sign \x6834 14-256 æ ´ sign \x6835 123-146-2 æ µ sign \x6837 245-25-2 sign \x6838 125-35-3 æ ¸ sign \x6839 13-1246 æ ¹ sign \x683C 13-13-5 æ ¼ sign \x683D 14-126 æ ½ sign \x6840 13-23456-3 æ¡€ sign \x6841 125-1245-3 æ¡ sign \x6842 12345-146-4 æ¡‚ sign \x6843 23456-1236-3 桃 sign \x6844 12345-56 æ¡„ sign \x6845 2456-146-3 æ¡… sign \x6846 12456-14 框 sign \x6848 1345-4 案 sign \x6849 1345-0 桉 sign \x684C 1346-246-5 桌 sign \x684E 14-35-3 桎 sign \x6850 23456-236-3 æ¡ sign \x6851 234-56 æ¡‘ sign \x6853 2346-3 æ¡“ sign \x6854 13-35 æ¡” sign \x686B 234-135 æ¡« sign \x686E 1234-1256 æ¡® sign \x686F 23456-356 桯 sign \x6871 13-356-4 桱 sign \x6872 1234-1356-3 桲 sign \x6874 124-136 æ¡´ sign \x6875 234-245-3 桵 sign \x6876 23456-236-1 æ¡¶ sign \x6877 13-12456-5 æ¡· sign \x6879 123-56-3 桹 sign \x687C 1346-35 桼 sign \x687F 13-1345 æ¡¿ sign \x6881 123-25-3 æ¢ sign \x6882 1235-16-3 梂 sign \x6883 23456-356-6 梃 sign \x6885 134-1256-3 梅 sign \x6886 1234-56 梆 sign \x688F 13-12345 æ¢ sign \x6893 14-24-1 梓 sign \x6894 14-24 梔 sign \x6897 13-1245-1 梗 sign \x6898 13-45-1 梘 sign \x689C 14-23456-3 梜 sign \x689D 23456-13456-3 sign \x689F 125-13456 梟 sign \x68A0 123-245-6 梠 sign \x68A2 234-34 梢 sign \x68A3 14-456 梣 sign \x68A7 1245-3 梧 sign \x68A8 123-125-3 梨 sign \x68A9 123-125-3 梩 sign \x68AB 1346-456 梫 sign \x68AD 234-135 梭 sign \x68AF 23456-146 梯 sign \x68B0 125-346-2 械 sign \x68B1 12456-1246-1 梱 sign \x68B2 14-12356-5 梲 sign \x68B3 234-135 梳 sign \x68B4 23456-356-6 梴 sign \x68B5 124-45-3 梵 sign \x68BD 14-24 sign \x68C4 125-125-4 棄 sign \x68C9 134-256-3 棉 sign \x68CB 1235-125-3 棋 sign \x68CD 12345-1246-4 æ£ sign \x68D0 124-125-1 æ£ sign \x68D1 12346-346-3 棑 sign \x68D2 12346-14-6 棒 sign \x68D3 12346-14-6 棓 sign \x68D5 14-236 棕 sign \x68D6 1346-14-3 棖 sign \x68D7 14-1236-1 棗 sign \x68D8 13-1235 棘 sign \x68DA 12346-14-3 棚 sign \x68DF 2345-236-2 棟 sign \x68E0 23456-56-3 棠 sign \x68E1 13-56-4 棡 sign \x68E2 13-56-4 sign \x68E3 2345-146-2 棣 sign \x68E4 2345-146-2 sign \x68E6 14-12345 棦 sign \x68E7 14-45-2 棧 sign \x68E8 1235-146-1 棨 sign \x68E9 1235-146-1 sign \x68EB 2456-1235-3 棫 sign \x68EC 125-23 棬 sign \x68EE 234-456 森 sign \x68EF 1345-256-1 棯 sign \x68F0 1346-245-3 棰 sign \x68F1 123-356-3 棱 sign \x68F2 1346-146 棲 sign \x68F3 14-12356-5 棳 sign \x68F5 124-135-1 棵 sign \x68F7 14-16 棷 sign \x68F9 14-34-2 棹 sign \x68FA 13-2346 棺 sign \x68FB 124-1246 棻 sign \x68FC 124-1246-3 棼 sign \x6904 14-12346-5 椄 sign \x6905 24-1 椅 sign \x6907 13-245-1 椇 sign \x6908 13-12345 椈 sign \x690A 1346-12356-5 椊 sign \x690B 123-25-3 sign \x690C 125-56 椌 sign \x690D 14-1235-3 æ¤ sign \x690E 14-245 椎 sign \x690F 12-0 æ¤ sign \x6910 13-245 æ¤ sign \x6911 1234-125 椑 sign \x6912 14-13456 椒 sign \x6913 2345-246-5 椓 sign \x6917 2345-356-4 椗 sign \x6925 14-24 椥 sign \x6930 245-15-3 椰 sign \x6933 1256-0 椳 sign \x6934 2345-23-2 椴 sign \x6936 14-236 sign \x6937 13-345 椷 sign \x6938 24-3 椸 sign \x6939 14-456 椹 sign \x693B 256-1 椻 sign \x693D 1346-23-3 椽 sign \x693F 1346-234 椿 sign \x6940 1456-6 楀 sign \x6941 125-13-5 sign \x6942 14-12 楂 sign \x6945 1234-1235 楅 sign \x6948 234-245 楈 sign \x694A 245-25-3 楊 sign \x694E 124-146 楎 sign \x6953 124-236 楓 sign \x6954 234-23456-5 楔 sign \x6956 14-1235 楖 sign \x6957 13-256-2 楗 sign \x6958 134-12345-3 楘 sign \x6959 134-16-2 楙 sign \x695A 1346-135-1 楚 sign \x695B 124-136-1 楛 sign \x695C 136-3 楜 sign \x695D 123-256-2 æ¥ sign \x695E 123-356-3 楞 sign \x695F 23456-356-3 楟 sign \x6960 1345-345-3 楠 sign \x6961 1456-3 sign \x6963 134-125-3 楣 sign \x6965 125-23-4 楥 sign \x6966 125-23-4 楦 sign \x6968 14-356 楨 sign \x6969 12346-256-3 楩 sign \x696B 14-12346-5 楫 sign \x696C 1235-23456-5 楬 sign \x696D 12346-3 業 sign \x696E 1346-1456-6 楮 sign \x696F 23456-234-6 楯 sign \x6975 13-1235-3 極 sign \x6977 1235-346-1 楷 sign \x6978 1346-16 楸 sign \x6979 245-356-3 楹 sign \x697A 245-16-3 楺 sign \x6982 1235-126-4 概 sign \x6983 2345-456-3 榃 sign \x6986 1456-3 榆 sign \x698E 13-12-1 榎 sign \x6994 123-56-3 榔 sign \x6995 245-236-3 榕 sign \x6996 13-12345 榖 sign \x6998 13-245-1 sign \x6999 125-26-3 榙 sign \x699B 14-234 榛 sign \x699C 1234-56-1 榜 sign \x69A3 13456-3 榣 sign \x69A4 13-23456-3 榤 sign \x69A6 13-1345-4 榦 sign \x69A7 124-125-1 榧 sign \x69A8 14-12-4 榨 sign \x69AA 134-12-2 榪 sign \x69AB 234-234-1 榫 sign \x69AD 14-15-2 榭 sign \x69AE 2456-356-3 榮 sign \x69AF 234-24-3 榯 sign \x69B1 1346-245 榱 sign \x69B4 123-16-3 榴 sign \x69B7 1235-12456-5 榷 sign \x69BB 23456-1234-5 榻 sign \x69BE 12345-35 榾 sign \x69BF 125-125-1 榿 sign \x69C1 13-1236-1 æ§ sign \x69C3 12346-2346-3 槃 sign \x69C4 23456-1236 æ§„ sign \x69CA 234-12456-5 æ§Š sign \x69CB 1235-16-4 æ§‹ sign \x69CC 1346-245-3 æ§Œ sign \x69CD 1346-25 æ§ sign \x69CE 1346-12-3 æ§Ž sign \x69D0 2456-346-3 æ§ sign \x69D3 13-56-4 æ§“ sign \x69E4 123-256-3 sign \x69E5 234-245-2 æ§¥ sign \x69E6 234-245-2 sign \x69E7 1346-12-4 æ§§ sign \x69E8 13-12456-5 槨 sign \x69E9 13-12456-5 sign \x69EC 2456-12-2 槬 sign \x69ED 1346-1235 æ§­ sign \x69F1 245-16-6 æ§± sign \x69F2 125-1245-3 æ§² sign \x69F3 14-25-1 æ§³ sign \x69F7 23456-3 æ§· sign \x69F8 1245-146-2 槸 sign \x69FB 12456-146 æ§» sign \x69FC 12456-146 æ§¼ sign \x69FD 1346-1236-3 æ§½ sign \x69FE 134-1235-3 æ§¾ sign \x69FF 13-1246-1 æ§¿ sign \x6A01 14-56 æ¨ sign \x6A02 123-12456-3 樂 sign \x6A05 1346-236 樅 sign \x6A0A 124-45-3 樊 sign \x6A0B 23456-236 sign \x6A0F 123-245-3 æ¨ sign \x6A11 123-25-3 樑 sign \x6A13 123-16-3 樓 sign \x6A15 1346-12345 樕 sign \x6A16 12346-135 樖 sign \x6A17 234-1456 樗 sign \x6A18 23456-56-3 樘 sign \x6A19 1234-13456 標 sign \x6A1B 13-16 樛 sign \x6A1D 14-12 æ¨ sign \x6A1E 234-1456 樞 sign \x6A1F 14-25 樟 sign \x6A20 134-2346-3 樠 sign \x6A21 134-1236-3 模 sign \x6A23 245-25-2 樣 sign \x6A27 234-2345-5 樧 sign \x6A28 234-146 樨 sign \x6A32 24-2 樲 sign \x6A34 14-1235 樴 sign \x6A35 1346-13456-3 樵 sign \x6A38 12346-12456-5 sign \x6A39 234-1456-2 樹 sign \x6A3A 2456-12-3 樺 sign \x6A3B 12345-146-2 樻 sign \x6A3D 14-234 樽 sign \x6A3E 12356-3 樾 sign \x6A3F 234-256-2 樿 sign \x6A44 13-345-4 æ©„ sign \x6A46 134-1236-3 橆 sign \x6A47 1346-245-4 橇 sign \x6A48 1345-34-3 橈 sign \x6A4B 1235-13456-3 æ©‹ sign \x6A50 23456-12456-5 sign \x6A51 123-1236-6 æ©‘ sign \x6A54 2345-234 æ©” sign \x6A55 1346-14 æ©• sign \x6A58 12345-35 橘 sign \x6A59 1346-14-1 æ©™ sign \x6A5A 234-12345 橚 sign \x6A5B 1235-12356-5 æ©› sign \x6A5E 2456-146-2 橞 sign \x6A5F 13-125 機 sign \x6A61 14-25-2 æ©¡ sign \x6A62 23456-135-6 æ©¢ sign \x6A66 23456-236-3 橦 sign \x6A67 14-1245 æ©§ sign \x6A6A 256-3 橪 sign \x6A6B 2456-14-3 æ©« sign \x6A7E 1346-1236-4 橾 sign \x6A7F 13-25 æ©¿ sign \x6A80 23456-45-3 檀 sign \x6A81 123-456-6 æª sign \x6A84 125-35-3 檄 sign \x6A87 14-245-4 檇 sign \x6A89 1346-356 檉 sign \x6A8D 245-1235 æª sign \x6A8E 1235-456-3 檎 sign \x6A90 234-235-3 æª sign \x6A91 123-245-3 檑 sign \x6A94 2345-56-1 檔 sign \x6A95 125-146-2 檕 sign \x6A97 1234-13-5 檗 sign \x6A9A 1346-135-1 檚 sign \x6A9B 14-12 檛 sign \x6A9C 1235-1256-1 檜 sign \x6A9D 14-12346-5 sign \x6A9F 13-12-1 檟 sign \x6AA0 1235-356-3 檠 sign \x6AA1 14-13-3 檡 sign \x6AA2 13-235-1 檢 sign \x6AA3 1346-25-3 檣 sign \x6AA5 1245-146-6 檥 sign \x6AAC 134-236 檬 sign \x6AAE 23456-1236-3 檮 sign \x6AAF 23456-126-3 檯 sign \x6AB3 1234-1246 檳 sign \x6AB4 2456-12456-3 檴 sign \x6AB8 1345-356-3 檸 sign \x6ABB 123-345-2 檻 sign \x6AC2 1346-246-5 æ«‚ sign \x6AC3 12345-146-2 櫃 sign \x6AC5 14-146 æ«… sign \x6ACD 14-35 æ« sign \x6AD0 123-245-3 æ« sign \x6AD1 123-245-3 æ«‘ sign \x6AD3 123-1236-6 æ«“ sign \x6ADA 123-245-6 櫚 sign \x6ADB 14-23456-5 æ«› sign \x6ADC 13-1236 櫜 sign \x6ADD 2345-12345-3 æ« sign \x6ADE 23-3 櫞 sign \x6ADF 123-1235 櫟 sign \x6AE5 1346-1456-3 æ«¥ sign \x6AE7 14-1456 æ«§ sign \x6AE8 123-1236-3 櫨 sign \x6AEA 123-1235 櫪 sign \x6AEB 14-1456 æ«« sign \x6AEC 1346-1246-4 櫬 sign \x6AF0 2456-346-3 æ«° sign \x6AF1 23456-3 櫱 sign \x6AF3 123-236-3 櫳 sign \x6AF8 13-245-1 櫸 sign \x6AFA 123-356-3 櫺 sign \x6AFB 245-356 æ«» sign \x6AFC 1346-235 櫼 sign \x6B02 1234-12456-3 欂 sign \x6B03 1346-345-3 欃 sign \x6B04 123-45-3 欄 sign \x6B0A 1235-23-3 權 sign \x6B0F 123-135-3 æ¬ sign \x6B10 123-146-2 æ¬ sign \x6B11 1346-23-3 欑 sign \x6B12 123-23-3 欒 sign \x6B13 2345-56-1 欓 sign \x6B16 123-345-1 欖 sign \x6B17 123-45-3 欗 sign \x6B19 123-245-3 欙 sign \x6B1E 123-356-3 欞 sign \x6B20 125-235-4 欠 sign \x6B21 1346-24-4 次 sign \x6B23 245-1246 欣 sign \x6B2C 1235-35 欬 sign \x6B31 125-124-5 欱 sign \x6B32 245-12345-3 欲 sign \x6B35 124-2346-1 sign \x6B36 1346-12345 欶 sign \x6B37 125-125 欷 sign \x6B38 126-0 欸 sign \x6B39 24-0 欹 sign \x6B3A 125-125 欺 sign \x6B3B 124-35 欻 sign \x6B3C 14-12356-5 欼 sign \x6B3D 245-456 欽 sign \x6B3E 124-2346-1 款 sign \x6B3F 125-456-1 欿 sign \x6B41 125-456-4 æ­ sign \x6B42 1346-23-3 æ­‚ sign \x6B43 234-1234-5 æ­ƒ sign \x6B46 245-456 æ­† sign \x6B47 125-23456-5 æ­‡ sign \x6B48 1456-3 æ­ˆ sign \x6B49 125-12346-5 æ­‰ sign \x6B4A 125-13456 æ­Š sign \x6B4C 13-135 æ­Œ sign \x6B4D 136-0 æ­ sign \x6B4E 23456-45-4 æ­Ž sign \x6B50 16-0 æ­ sign \x6B51 124-136 æ­‘ sign \x6B54 125-245 æ­” sign \x6B55 12346-1246-4 æ­• sign \x6B59 234-12346-5 æ­™ sign \x6B5B 123-235-6 æ­› sign \x6B5C 1346-12345 æ­œ sign \x6B5F 1456-3 æ­Ÿ sign \x6B60 14-12356-5 æ­  sign \x6B61 124-2346 æ­¡ sign \x6B62 14-24-1 æ­¢ sign \x6B63 14-356-4 æ­£ sign \x6B64 1346-24-1 æ­¤ sign \x6B65 1234-1236-2 æ­¥ sign \x6B66 134-1236-6 æ­¦ sign \x6B67 1235-125-3 æ­§ sign \x6B6A 2456-346 æ­ª sign \x6B72 234-245-4 æ­² sign \x6B77 123-1235-3 æ­· sign \x6B78 12345-146 æ­¸ sign \x6B79 2345-346-1 æ­¹ sign \x6B7B 234-125-1 æ­» sign \x6B7E 134-1356-3 æ­¾ sign \x6B7F 134-1356-3 æ­¿ sign \x6B80 13456-0 殀 sign \x6B82 1346-1236-3 殂 sign \x6B83 245-25 殃 sign \x6B84 23456-256-6 殄 sign \x6B86 23456-126-6 殆 sign \x6B88 12456-1235 殈 sign \x6B89 234-234 殉 sign \x6B8A 234-1456-3 殊 sign \x6B8D 12346-13456-6 sign \x6B91 1346-356-3 殑 sign \x6B96 14-1235-3 æ®– sign \x6B98 1346-45-3 殘 sign \x6B99 124-1246 æ®™ sign \x6B9B 13-1235 æ®› sign \x6B9E 2456-1246-6 殞 sign \x6BA2 23456-146-4 殢 sign \x6BA3 13-1246-1 殣 sign \x6BA4 234-25 殤 sign \x6BAA 24-4 殪 sign \x6BAB 2345-45 殫 sign \x6BAD 13-25 æ®­ sign \x6BAE 123-235-6 æ®® sign \x6BAF 1234-1246-4 殯 sign \x6BB0 2345-12345-3 æ®° sign \x6BB2 1346-235 殲 sign \x6BB3 234-1456-3 殳 sign \x6BB5 2345-23-2 段 sign \x6BB7 245-1246 æ®· sign \x6BBA 234-2345-5 殺 sign \x6BBC 125-12456-5 殼 sign \x6BBD 1245-34-3 殽 sign \x6BBF 2345-256-2 殿 sign \x6BC0 2456-146-1 毀 sign \x6BC5 1245-146-2 毅 sign \x6BC6 16-1 毆 sign \x6BC8 2345-23-2 毈 sign \x6BC9 24-0 毉 sign \x6BCB 134-1236-3 毋 sign \x6BCC 134-1236-3 毌 sign \x6BCD 134-1236-6 æ¯ sign \x6BCF 134-1256-6 æ¯ sign \x6BD0 346-1 æ¯ sign \x6BD2 2345-12345-3 毒 sign \x6BD3 245-12345 毓 sign \x6BD4 1234-125-1 比 sign \x6BD6 1234-125-4 毖 sign \x6BD7 1234-125-1 毗 sign \x6BD8 12346-125-3 毘 sign \x6BDA 1346-345-3 毚 sign \x6BDB 134-1236-3 毛 sign \x6BE1 14-256 sign \x6BE2 234-126 毢 sign \x6BE7 245-236-3 毧 sign \x6BE8 234-256-1 毨 sign \x6BEB 125-1236-3 毫 sign \x6BEC 1235-16-3 毬 sign \x6BEF 23456-45-1 毯 sign \x6BF2 14-12356-5 毲 sign \x6BF3 1346-245-4 毳 sign \x6BF8 234-126 毸 sign \x6BF9 234-1456 毹 sign \x6BFB 23456-135-4 毻 sign \x6BFD 256-1 毽 sign \x6BFF 234-345 毿 sign \x6C02 134-1236-3 æ°‚ sign \x6C03 123-236-3 æ°ƒ sign \x6C04 245-236-6 æ°„ sign \x6C05 1346-56-1 æ°… sign \x6C06 12346-1236-1 æ°† sign \x6C08 14-256 æ°ˆ sign \x6C09 1346-1236-4 æ°‰ sign \x6C0B 134-236-3 æ°‹ sign \x6C0C 123-1236-6 æ°Œ sign \x6C0D 1235-245-3 æ° sign \x6C0F 234-24-2 æ° sign \x6C10 2345-146 æ° sign \x6C11 134-1246-3 æ°‘ sign \x6C13 134-1246-3 æ°“ sign \x6C14 125-125-4 æ°” sign \x6C15 12346-23456-5 sign \x6C16 1345-346-6 æ°– sign \x6C18 2345-1236 æ°˜ sign \x6C19 234-256 æ°™ sign \x6C1A 1346-23 æ°š sign \x6C1B 124-1246 æ°› sign \x6C1D 1345-126-2 æ° sign \x6C1F 124-35 æ°Ÿ sign \x6C21 2345-236 æ°¡ sign \x6C23 125-125-4 æ°£ sign \x6C24 245-1246 æ°¤ sign \x6C25 234-146 æ°¥ sign \x6C26 125-126-2 æ°¦ sign \x6C27 245-25-6 æ°§ sign \x6C28 1345-0 æ°¨ sign \x6C2A 125-46 æ°ª sign \x6C2B 125-356 æ°« sign \x6C2C 12-4 æ°¬ sign \x6C2E 2345-345-2 æ°® sign \x6C2F 123-12345-3 æ°¯ sign \x6C30 1346-356 æ°° sign \x6C33 2456-1246 æ°³ sign \x6C34 234-245-1 æ°´ sign \x6C38 2456-356-6 æ°¸ sign \x6C39 23456-456-6 æ°¹ sign \x6C3B 1245-1345-2 æ°» sign \x6C3E 124-45-4 æ°¾ sign \x6C3F 12345-146-1 æ°¿ sign \x6C40 2345-356 æ±€ sign \x6C41 14-26 æ± sign \x6C42 1235-16-3 求 sign \x6C46 23456-1246-1 汆 sign \x6C49 125-1345-4 sign \x6C4A 1346-12-4 汊 sign \x6C4B 14-12456-5 汋 sign \x6C4C 125-256 汌 sign \x6C4D 23-3 æ± sign \x6C4E 124-45-4 汎 sign \x6C4F 2345-346-2 æ± sign \x6C50 14-1235-3 æ± sign \x6C54 1245-35-3 æ±” sign \x6C55 234-45-4 汕 sign \x6C57 125-1345-2 æ±— sign \x6C59 136-0 æ±™ sign \x6C5B 234-234-4 æ±› sign \x6C5C 1346-24-6 汜 sign \x6C5D 1456-6 æ± sign \x6C5E 125-236-4 汞 sign \x6C5F 13-56 江 sign \x6C60 1346-24-3 æ±  sign \x6C61 136-0 污 sign \x6C67 125-256 æ±§ sign \x6C68 134-1235-3 汨 sign \x6C69 134-1235-3 汩 sign \x6C6A 2456-56 汪 sign \x6C6D 245-245-2 æ±­ sign \x6C6F 2456-1245-3 汯 sign \x6C70 23456-346-4 æ±° sign \x6C72 1235-26 æ±² sign \x6C74 1234-256-2 æ±´ sign \x6C76 134-1246-2 æ±¶ sign \x6C78 1234-1245-2 汸 sign \x6C7A 1235-12356-5 決 sign \x6C7D 125-125-4 æ±½ sign \x6C7E 124-1246-3 æ±¾ sign \x6C81 234-456-4 æ² sign \x6C82 24-3 沂 sign \x6C83 245-12345 沃 sign \x6C84 234-256-1 沄 sign \x6C85 23-3 æ²… sign \x6C86 125-56-3 沆 sign \x6C87 256-6 沇 sign \x6C88 234-456-1 沈 sign \x6C89 1346-456-3 沉 sign \x6C8C 2345-234-2 沌 sign \x6C8D 136-2 æ² sign \x6C8F 1346-146-4 æ² sign \x6C90 134-12345-3 æ² sign \x6C92 134-1356-3 æ²’ sign \x6C93 2345-1234-3 沓 sign \x6C94 134-256-6 æ²” sign \x6C95 134-35-3 沕 sign \x6C96 1346-236 æ²– sign \x6C98 1234-125-1 沘 sign \x6C99 234-12 æ²™ sign \x6C9A 14-24-1 沚 sign \x6C9B 12346-1256-4 æ²› sign \x6CA2 14-13-3 sign \x6CAB 134-1356-3 沫 sign \x6CAC 134-1256-2 沬 sign \x6CAD 234-2345-3 æ²­ sign \x6CAE 14-245-1 æ²® sign \x6CB0 23456-12456-5 sign \x6CB1 23456-135-3 æ²± sign \x6CB3 125-135-3 æ²³ sign \x6CB4 123-245-2 æ²´ sign \x6CB7 124-2345-5 æ²· sign \x6CB8 124-146-4 沸 sign \x6CB9 245-16-3 æ²¹ sign \x6CBB 14-24-2 æ²» sign \x6CBC 14-13456-1 æ²¼ sign \x6CBD 13-136 æ²½ sign \x6CBE 14-235 æ²¾ sign \x6CBF 23-3 沿 sign \x6CC1 124-56-4 æ³ sign \x6CC2 12345-356-1 泂 sign \x6CC3 1235-245-6 泃 sign \x6CC4 234-23456-5 泄 sign \x6CC5 1346-16-3 æ³… sign \x6CC6 245-35-3 泆 sign \x6CC9 1346-23-3 泉 sign \x6CCA 1234-12456-3 泊 sign \x6CCC 1234-125-4 泌 sign \x6CD0 123-46-3 æ³ sign \x6CD1 245-16-4 泑 sign \x6CD2 134-2345-3 æ³’ sign \x6CD3 2456-1245-3 泓 sign \x6CD4 13-456 æ³” sign \x6CD5 124-2345-5 法 sign \x6CD6 134-34-6 æ³– sign \x6CD7 234-24-4 æ³— sign \x6CDA 1346-24-1 泚 sign \x6CDB 124-45-4 æ³› sign \x6CDC 2345-146-1 sign \x6CDD 234-1236-4 æ³ sign \x6CDE 1345-356-2 泞 sign \x6CE0 123-356-3 æ³  sign \x6CE1 12346-34 泡 sign \x6CE2 1234-135 æ³¢ sign \x6CE3 245-26 æ³£ sign \x6CE5 1345-146-3 æ³¥ sign \x6CE7 1356-3 æ³§ sign \x6CE8 14-1456-4 注 sign \x6CE9 245-1236 泩 sign \x6CEB 2346-6 泫 sign \x6CEC 12356-3 泬 sign \x6CEE 1234-2346-2 æ³® sign \x6CEF 134-1246-6 泯 sign \x6CF0 23456-346-4 æ³° sign \x6CF1 245-25 æ³± sign \x6CF2 14-146-4 æ³² sign \x6CF3 2456-356-2 æ³³ sign \x6CF5 1234-456 æ³µ sign \x6D01 13-23456-5 æ´ sign \x6D04 1256-3 æ´„ sign \x6D07 256-0 æ´‡ sign \x6D0A 14-256-4 æ´Š sign \x6D0B 245-25-3 æ´‹ sign \x6D0C 123-23456-3 æ´Œ sign \x6D0E 13-125-4 æ´Ž sign \x6D0F 24-3 æ´ sign \x6D11 124-12345-3 æ´‘ sign \x6D12 234-12-1 æ´’ sign \x6D17 234-146-1 æ´— sign \x6D19 14-1456 æ´™ sign \x6D1A 13-56-4 æ´š sign \x6D1B 123-12456-3 æ´› sign \x6D1E 2345-236-2 æ´ž sign \x6D1F 24-3 æ´Ÿ sign \x6D25 14-234 æ´¥ sign \x6D27 124-1256-1 æ´§ sign \x6D28 1245-34-3 æ´¨ sign \x6D29 234-23456-5 æ´© sign \x6D2A 125-236-3 æ´ª sign \x6D2B 12345-1235 æ´« sign \x6D2D 125-56 æ´­ sign \x6D2E 23456-1236-3 æ´® sign \x6D31 24-6 æ´± sign \x6D32 14-16 æ´² sign \x6D33 1456-3 æ´³ sign \x6D34 12346-356-3 æ´´ sign \x6D35 234-234 æ´µ sign \x6D36 125-236 æ´¶ sign \x6D38 12345-56 æ´¸ sign \x6D39 2346-3 æ´¹ sign \x6D3A 134-356-3 æ´º sign \x6D3B 1356-3 æ´» sign \x6D3C 2456-12 æ´¼ sign \x6D3D 125-26 æ´½ sign \x6D3E 12346-346-4 æ´¾ sign \x6D3F 136-0 æ´¿ sign \x6D41 123-16-3 æµ sign \x6D59 14-23456-5 æµ™ sign \x6D5A 14-234-4 浚 sign \x6D5E 14-12345 浞 sign \x6D60 125-125 æµ  sign \x6D61 1234-1356-3 浡 sign \x6D63 2346-6 æµ£ sign \x6D65 245-26 æµ¥ sign \x6D66 12346-1236-1 浦 sign \x6D69 125-1236-2 浩 sign \x6D6A 123-56-2 浪 sign \x6D6C 123-125-6 浬 sign \x6D6D 13-1245 æµ­ sign \x6D6E 124-16-3 æµ® sign \x6D6F 1245-3 浯 sign \x6D70 123-125-2 æµ° sign \x6D74 245-12345-3 æµ´ sign \x6D77 125-126-1 æµ· sign \x6D78 14-456-4 浸 sign \x6D79 13-1234-5 æµ¹ sign \x6D7C 134-1256-6 æµ¼ sign \x6D82 23456-1236-3 æ¶‚ sign \x6D85 1345-12346-3 æ¶… sign \x6D87 13-356 涇 sign \x6D88 234-13456 消 sign \x6D89 234-12346-5 涉 sign \x6D8A 1345-256-6 æ¶Š sign \x6D8C 1346-236 æ¶Œ sign \x6D8E 256-3 æ¶Ž sign \x6D91 1346-12345 æ¶‘ sign \x6D92 23456-1246 æ¶’ sign \x6D93 13-23 æ¶“ sign \x6D94 234-456-3 æ¶” sign \x6D95 23456-146-4 æ¶• sign \x6D96 123-125-2 sign \x6D98 14-24-2 涘 sign \x6DAA 124-16-3 涪 sign \x6DAC 125-1245-6 涬 sign \x6DAE 234-45-4 æ¶® sign \x6DAF 1245-346-3 涯 sign \x6DB2 245-1235-3 æ¶² sign \x6DB3 125-236 æ¶³ sign \x6DB4 2456-135-4 æ¶´ sign \x6DB5 125-345-3 æ¶µ sign \x6DB7 2345-236 æ¶· sign \x6DB8 1235-12456-5 涸 sign \x6DBC 123-25-3 æ¶¼ sign \x6DBD 124-1246 æ¶½ sign \x6DBF 2345-246-5 æ¶¿ sign \x6DC0 2345-256-2 æ·€ sign \x6DC4 14-24 æ·„ sign \x6DC5 234-1235 æ·… sign \x6DC6 1245-34-3 æ·† sign \x6DC7 1235-125-3 æ·‡ sign \x6DC8 12345-35 æ·ˆ sign \x6DCA 235-0 æ·Š sign \x6DCB 123-456-3 æ·‹ sign \x6DCC 23456-56-1 æ·Œ sign \x6DD1 234-12345-3 æ·‘ sign \x6DD2 1346-146 æ·’ sign \x6DD6 1345-34-2 æ·– sign \x6DD8 23456-1236-3 æ·˜ sign \x6DD9 1346-236-3 æ·™ sign \x6DDA 123-245-2 æ·š sign \x6DDB 14-23456-5 æ·› sign \x6DDC 12346-14 æ·œ sign \x6DDD 124-125-3 æ· sign \x6DDE 234-236 æ·ž sign \x6DDF 23456-256-1 æ·Ÿ sign \x6DE0 12346-125-4 æ·  sign \x6DE1 2345-345-2 æ·¡ sign \x6DE2 12345-1235 æ·¢ sign \x6DE4 1456-1 æ·¤ sign \x6DE5 123-12345-3 æ·¥ sign \x6DE6 13-456-4 æ·¦ sign \x6DE8 14-356-2 æ·¨ sign \x6DE9 123-356-3 æ·© sign \x6DEA 123-234-3 æ·ª sign \x6DEB 245-456-3 æ·« sign \x6DEC 234-245-2 æ·¬ sign \x6DEE 2456-346-3 æ·® sign \x6DEF 245-12345-3 æ·¯ sign \x6DF0 1345-235-1 æ·° sign \x6DF1 234-456 æ·± sign \x6DF3 234-234-3 æ·³ sign \x6DF4 124-35 æ·´ sign \x6DF5 23-0 æ·µ sign \x6DF6 123-126-3 æ·¶ sign \x6DF7 2456-1246-2 æ·· sign \x6DF9 235-0 æ·¹ sign \x6DFA 1346-256-1 æ·º sign \x6DFB 23456-235 æ·» sign \x6DFC 134-13456-6 æ·¼ sign \x6E01 2456-146-2 sign \x6E02 124-136 sign \x6E04 134-2346-2 sign \x6E05 1346-356 清 sign \x6E07 2345-235-4 sign \x6E19 2346-2 渙 sign \x6E1A 14-1456-1 渚 sign \x6E1B 13-345-1 減 sign \x6E1C 1345-23-6 渜 sign \x6E1D 1456-3 æ¸ sign \x6E1F 23456-356-3 渟 sign \x6E20 1235-245-3 渠 sign \x6E21 2345-1236-2 渡 sign \x6E22 124-236-3 渢 sign \x6E23 14-12 渣 sign \x6E24 1234-1356-3 渤 sign \x6E25 46-0 渥 sign \x6E26 2456-135 渦 sign \x6E27 2345-1235-3 渧 sign \x6E28 1256-0 渨 sign \x6E2B 234-23456-5 渫 sign \x6E2C 1346-46 測 sign \x6E2D 2456-146-2 渭 sign \x6E2F 13-56-1 港 sign \x6E30 235-0 渰 sign \x6E32 125-23 渲 sign \x6E34 125-124-5 渴 sign \x6E38 245-16-3 游 sign \x6E39 12345-1245 渹 sign \x6E3A 134-13456-6 渺 sign \x6E3C 134-125-6 渼 sign \x6E3E 2456-1246-2 渾 sign \x6E43 1234-346-4 湃 sign \x6E44 134-125-3 湄 sign \x6E45 123-256-2 æ¹… sign \x6E49 23456-235-3 湉 sign \x6E4A 1346-16-4 湊 sign \x6E4B 2456-146-3 湋 sign \x6E4D 1346-23-1 æ¹ sign \x6E4E 134-256-6 湎 sign \x6E51 234-245-1 湑 sign \x6E53 12346-2346-3 湓 sign \x6E54 14-256 æ¹” sign \x6E56 136-3 æ¹– sign \x6E58 234-25 湘 sign \x6E59 245-1235-3 sign \x6E5B 14-345-4 æ¹› sign \x6E5C 14-1235-3 湜 sign \x6E5D 13-346 æ¹ sign \x6E5E 14-356 湞 sign \x6E5F 2456-56-3 湟 sign \x6E62 1234-1235 æ¹¢ sign \x6E63 134-1246-6 æ¹£ sign \x6E67 245-236-1 æ¹§ sign \x6E68 12345-1235 湨 sign \x6E69 1346-236-6 sign \x6E6B 14-16 湫 sign \x6E6E 245-1246 æ¹® sign \x6E6F 23456-56 湯 sign \x6E71 2456-13-3 æ¹± sign \x6E72 2346-3 æ¹² sign \x6E88 12345-146 溈 sign \x6E89 1235-126-4 溉 sign \x6E8E 12345-146-4 溎 sign \x6E8F 23456-56-3 æº sign \x6E90 23-3 æº sign \x6E94 1245-34-3 溔 sign \x6E96 14-234-1 準 sign \x6E98 125-26-3 溘 sign \x6E9C 123-13456 溜 sign \x6E9D 1235-16 æº sign \x6E9F 134-356-3 溟 sign \x6EA0 14-12-4 溠 sign \x6EA2 245-35-3 溢 sign \x6EA5 12346-1236-1 溥 sign \x6EA6 134-125-3 溦 sign \x6EA7 123-1346-3 溧 sign \x6EAA 1235-146 溪 sign \x6EAB 2456-1246 溫 sign \x6EAE 234-24 溮 sign \x6EAF 234-1236-4 溯 sign \x6EB1 14-234 溱 sign \x6EB2 234-16 溲 sign \x6EB3 2456-1246-3 溳 sign \x6EB4 1346-16-4 溴 sign \x6EB5 245-1246 sign \x6EB6 245-236-3 溶 sign \x6EB7 2456-1246-2 溷 sign \x6EBA 1345-1235-3 溺 sign \x6EBC 234-26 溼 sign \x6EBD 245-12345-3 溽 sign \x6EC0 1346-12345 滀 sign \x6EC1 1346-245-3 æ» sign \x6EC2 12346-56-3 滂 sign \x6EC3 245-16-1 滃 sign \x6EC4 1346-56 滄 sign \x6EC5 134-23456-3 æ»… sign \x6EC6 13-13-5 滆 sign \x6EC7 23456-256-3 滇 sign \x6EC8 125-1236-2 滈 sign \x6ECB 14-24 滋 sign \x6ECC 2345-1235-3 滌 sign \x6ECD 14-24-2 æ» sign \x6ECF 124-136-1 æ» sign \x6ED1 2456-2345-3 滑 sign \x6ED3 14-24-1 滓 sign \x6ED4 23456-1236 æ»” sign \x6ED5 23456-1245-3 滕 sign \x6ED8 13-34-4 滘 sign \x6ED9 1256-2 æ»™ sign \x6EEB 234-16-4 滫 sign \x6EEC 136-2 滬 sign \x6EEF 14-146-2 滯 sign \x6EF1 1235-16-4 æ»± sign \x6EF2 234-456-4 滲 sign \x6EF4 2345-1235-3 æ»´ sign \x6EF7 123-1236-6 æ»· sign \x6EF8 136-1 滸 sign \x6EF9 124-136 滹 sign \x6EFA 245-16-3 sign \x6EFB 1346-45-1 æ»» sign \x6EFE 12345-1246-1 滾 sign \x6EFF 134-2346-6 滿 sign \x6F01 1456-3 æ¼ sign \x6F02 12346-13456-4 sign \x6F06 1346-35 漆 sign \x6F08 14-146-4 漈 sign \x6F09 123-12345-3 漉 sign \x6F0A 123-16-3 漊 sign \x6F0F 123-16-2 æ¼ sign \x6F13 123-125-3 漓 sign \x6F14 256-1 æ¼” sign \x6F15 1346-1236-3 漕 sign \x6F18 234-234-3 漘 sign \x6F19 23456-23-3 æ¼™ sign \x6F1A 16-4 漚 sign \x6F20 134-12456-3 æ¼  sign \x6F22 125-1345-4 æ¼¢ sign \x6F23 123-256-3 æ¼£ sign \x6F25 2456-12 æ¼¥ sign \x6F26 123-125-3 漦 sign \x6F29 234-23-3 漩 sign \x6F2A 24-1 漪 sign \x6F2B 134-45-2 漫 sign \x6F2C 14-1235 漬 sign \x6F2D 134-56-6 æ¼­ sign \x6F2E 125-56 æ¼® sign \x6F2F 23456-1234-5 漯 sign \x6F30 12346-1245-3 æ¼° sign \x6F31 234-16-4 æ¼± sign \x6F32 14-25-4 æ¼² sign \x6F33 14-25 æ¼³ sign \x6F36 2456-45-2 æ¼¶ sign \x6F37 12345-12456-5 sign \x6F38 14-235-2 漸 sign \x6F3B 123-13456-3 æ¼» sign \x6F3C 1346-245 æ¼¼ sign \x6F3E 245-25-2 æ¼¾ sign \x6F3F 14-25 漿 sign \x6F40 1346-236-3 æ½€ sign \x6F41 2456-356-2 æ½ sign \x6F4E 12346-23456-5 sign \x6F4F 2456-35-3 æ½ sign \x6F51 12346-1356-5 潑 sign \x6F52 2345-56-2 æ½’ sign \x6F54 13-23456-5 æ½” sign \x6F55 134-1236-6 潕 sign \x6F58 12346-2346 潘 sign \x6F5A 234-13456 潚 sign \x6F5B 1346-235-3 æ½› sign \x6F5D 245-26 æ½ sign \x6F5E 123-1236-2 潞 sign \x6F5F 234-1235 潟 sign \x6F60 234-234-4 æ½  sign \x6F62 2456-56-3 æ½¢ sign \x6F64 245-234-2 潤 sign \x6F66 123-1236-6 潦 sign \x6F6C 23456-45 潬 sign \x6F6D 23456-345-3 æ½­ sign \x6F6E 1346-13456-3 æ½® sign \x6F6F 1346-456-3 潯 sign \x6F70 1235-1256-1 æ½° sign \x6F72 234-34-4 æ½² sign \x6F74 14-1456 sign \x6F77 1234-35 æ½· sign \x6F78 234-45 潸 sign \x6F7A 234-45-3 潺 sign \x6F7C 23456-236-3 æ½¼ sign \x6F7E 123-234-3 æ½¾ sign \x6F7F 2456-146-3 潿 sign \x6F80 13-12346-5 æ¾€ sign \x6F82 1346-356-3 澂 sign \x6F84 1346-356-3 澄 sign \x6F86 13-13456 澆 sign \x6F87 123-1236-2 澇 sign \x6F88 1346-23456-5 澈 sign \x6F89 13-456-1 澉 sign \x6F8C 234-24 澌 sign \x6F8D 234-1456-2 æ¾ sign \x6F8E 12346-14-3 澎 sign \x6F90 2456-1246-3 æ¾ sign \x6F92 125-236-2 æ¾’ sign \x6F94 125-1236-2 æ¾” sign \x6F97 13-45-4 æ¾— sign \x6FA0 134-1246-6 æ¾  sign \x6FA1 1346-1236-4 澡 sign \x6FA3 2346-6 æ¾£ sign \x6FA4 14-13-3 澤 sign \x6FA5 125-346-2 æ¾¥ sign \x6FA6 1456-2 澦 sign \x6FA7 123-146-6 æ¾§ sign \x6FA8 234-146-2 澨 sign \x6FA9 125-12456-3 澩 sign \x6FAD 245-236 æ¾­ sign \x6FAE 1235-1256-4 æ¾® sign \x6FAF 1346-45-4 澯 sign \x6FB0 13-235-1 sign \x6FB1 2345-256-2 æ¾± sign \x6FB3 1236-4 æ¾³ sign \x6FB4 2456-45-3 æ¾´ sign \x6FB6 234-256-3 æ¾¶ sign \x6FB9 2345-345-2 æ¾¹ sign \x6FBC 12346-1235 æ¾¼ sign \x6FBD 13-245-2 æ¾½ sign \x6FC0 13-1235 æ¿€ sign \x6FC1 14-12345-3 æ¿ sign \x6FC2 123-235-3 æ¿‚ sign \x6FC3 1345-236-3 濃 sign \x6FC6 124-1246-3 濆 sign \x6FC7 234-1234-5 濇 sign \x6FC8 1346-26 濈 sign \x6FC9 234-245 濉 sign \x6FCA 1235-1356-5 濊 sign \x6FCB 1346-135-1 æ¿‹ sign \x6FD4 134-125-3 æ¿” sign \x6FD5 234-26 æ¿• sign \x6FD8 1345-356-3 濘 sign \x6FDA 245-356-3 sign \x6FDB 134-236-3 æ¿› sign \x6FDC 14-234-2 濜 sign \x6FDE 12346-125-4 濞 sign \x6FDF 14-146-4 濟 sign \x6FE0 125-1236-3 æ¿  sign \x6FE1 1456-3 æ¿¡ sign \x6FE4 23456-1236-3 濤 sign \x6FE9 2456-12456-3 æ¿© sign \x6FEB 123-345-2 æ¿« sign \x6FEC 14-234-4 濬 sign \x6FEE 1234-12345-3 æ¿® sign \x6FEF 14-12456-3 濯 sign \x6FF0 2456-146-3 æ¿° sign \x6FF1 1234-1246 濱 sign \x6FF2 13-12345 濲 sign \x6FF6 124-1356-5 sign \x6FFA 14-256-2 濺 sign \x6FFC 123-12456-3 濼 sign \x6FFE 123-245-2 濾 sign \x7005 245-356-3 瀅 sign \x7006 2345-12345-3 瀆 sign \x7009 234-15-4 瀉 sign \x700B 234-456-1 瀋 sign \x700C 1234-13456 瀌 sign \x700D 1346-256-3 ç€ sign \x700F 123-16-3 ç€ sign \x7011 1234-12345-3 瀑 sign \x7014 13-12345 瀔 sign \x7015 12346-1246-3 瀕 sign \x7018 123-1236-3 瀘 sign \x701A 125-1345-2 瀚 sign \x701B 245-356-3 瀛 sign \x701D 123-1235-3 ç€ sign \x701F 234-13456 瀟 sign \x7020 245-356-3 瀠 sign \x7021 234-245-6 瀡 sign \x7023 125-346-2 瀣 sign \x7026 14-1456 瀦 sign \x7027 123-236-3 瀧 sign \x7028 123-346-2 瀨 sign \x702F 245-356-3 瀯 sign \x7030 1345-125-3 瀰 sign \x7031 13-146-4 瀱 sign \x7032 123-235-6 瀲 sign \x7038 1346-235 瀸 sign \x7039 245-246-3 瀹 sign \x703A 1346-345-3 瀺 sign \x703C 245-25-3 瀼 sign \x703E 123-45-3 瀾 sign \x7042 1346-246-5 ç‚ sign \x7043 124-236 çƒ sign \x7044 234-12346-5 ç„ sign \x7049 245-236 ç‰ sign \x704A 1346-456-3 çŠ sign \x704C 13-2346-4 çŒ sign \x7051 234-12-1 ç‘ sign \x7052 14-45-4 ç’ sign \x7055 123-125-3 ç• sign \x7058 23456-45 ç˜ sign \x705B 14-256-1 ç› sign \x705D 125-1236-2 ç sign \x705E 1234-12-4 çž sign \x7060 123-345-2 ç  sign \x7062 1345-56-6 ç¢ sign \x7063 2456-45 ç£ sign \x7064 123-23-3 ç¤ sign \x7067 235-2 sign \x7068 13-456-4 ç¨ sign \x7069 235-2 ç© sign \x706B 124-135-1 ç« sign \x7070 124-1256 ç° sign \x7074 125-236-4 ç´ sign \x7075 123-356-3 sign \x7076 14-1236-4 ç¶ sign \x7078 13-16-4 ç¸ sign \x707A 1346-15-1 çº sign \x707C 1346-246-5 ç¼ sign \x707D 14-126 ç½ sign \x707E 14-126 sign \x7083 14-1236-2 炃 sign \x7084 125-1345-3 ç‚„ sign \x7085 12345-356-1 ç‚… sign \x7086 134-1246 炆 sign \x708A 1346-245 炊 sign \x708E 235-3 炎 sign \x7091 12346-125-3 ç‚‘ sign \x7092 1346-34-1 ç‚’ sign \x7093 23456-16-4 ç‚“ sign \x7094 1235-12356-5 ç‚” sign \x7095 1235-56-4 ç‚• sign \x7096 2345-1246-2 ç‚– sign \x7098 245-1246 炘 sign \x7099 14-2456-5 ç‚™ sign \x70A4 14-13456-4 炤 sign \x70AB 23-3 ç‚« sign \x70AC 13-245-2 炬 sign \x70AD 23456-45-4 ç‚­ sign \x70AE 12346-34-4 ç‚® sign \x70AF 12345-356-1 炯 sign \x70B0 12346-34-4 ç‚° sign \x70B1 23456-126-3 炱 sign \x70B3 1234-356-1 炳 sign \x70B5 2345-236 炵 sign \x70B7 14-1456-4 ç‚· sign \x70B8 14-12-4 炸 sign \x70BA 2456-146-2 為 sign \x70C8 123-23456-3 烈 sign \x70CA 245-25-3 烊 sign \x70CF 136-0 çƒ sign \x70D4 23456-236-3 烔 sign \x70D6 14-126 sign \x70D8 125-236-4 烘 sign \x70D9 123-12456-5 烙 sign \x70DC 125-23-1 烜 sign \x70DD 14-356 çƒ sign \x70DF 256-0 sign \x70E2 14-13-3 烢 sign \x70E4 125-34 烤 sign \x70EF 125-125 烯 sign \x70F0 124-16-3 烰 sign \x70F1 12345-356-1 烱 sign \x70F4 23456-356 烴 sign \x70F7 23-1 烷 sign \x70F9 12346-14 烹 sign \x70FA 123-56-6 烺 sign \x70FD 124-236 烽 sign \x7102 234-12345 ç„‚ sign \x7104 124-1246 ç„„ sign \x7109 256-0 焉 sign \x710A 125-1345-2 焊 sign \x710C 1346-1346 焌 sign \x7110 1245-2 ç„ sign \x7113 125-456-3 ç„“ sign \x7117 13-12345-3 ç„— sign \x7119 1234-1256-2 ç„™ sign \x711A 124-1246-3 焚 sign \x711C 12456-1246 焜 sign \x7120 1346-245-4 ç„  sign \x7121 134-1236-3 ç„¡ sign \x7126 14-13456 焦 sign \x712C 245-25-3 sign \x712E 245-1246-4 ç„® sign \x712F 1346-246-5 焯 sign \x7130 235-2 ç„° sign \x7131 235-2 焱 sign \x7136 256-3 ç„¶ sign \x7140 2456-35 ç…€ sign \x7141 1345-456-3 ç… sign \x7146 125-12 sign \x7147 124-146 ç…‡ sign \x7149 123-256-2 ç…‰ sign \x714A 125-23 ç…Š sign \x714B 234-356 ç…‹ sign \x714C 2456-56-3 ç…Œ sign \x714D 1346-13456-1 ç… sign \x714E 14-256 ç…Ž sign \x7152 2456-146-6 ç…’ sign \x7156 1345-23-6 ç…– sign \x7159 256-0 ç…™ sign \x715A 12345-356-1 ç…š sign \x715C 245-12345 ç…œ sign \x715E 234-2345-5 ç…ž sign \x7160 14-12-4 ç…  sign \x7162 1235-356-3 ç…¢ sign \x7163 245-16-1 ç…£ sign \x7164 134-1256-3 ç…¤ sign \x7165 2346-2 ç…¥ sign \x7166 125-245-1 ç…¦ sign \x7167 14-13456-4 ç…§ sign \x7168 1256-0 ç…¨ sign \x7169 124-45-3 ç…© sign \x716C 245-25-3 ç…¬ sign \x716E 14-1456-1 ç…® sign \x7172 1234-1236 ç…² sign \x7178 12346-256 ç…¸ sign \x717B 23456-56-3 ç…» sign \x717D 234-256-4 ç…½ sign \x7180 124-56-1 熀 sign \x7184 234-1235 熄 sign \x7185 2456-1246-1 熅 sign \x718A 125-236-3 熊 sign \x718F 124-1246 ç† sign \x7192 245-356-3 熒 sign \x7194 245-236-3 熔 sign \x7197 1346-25-4 熗 sign \x7199 125-125 熙 sign \x719B 1234-13456 熛 sign \x719F 234-12345-3 熟 sign \x71A0 245-26 熠 sign \x71A5 23456-236 熥 sign \x71A8 23456-56-4 熨 sign \x71AC 1245-1236-3 熬 sign \x71AF 125-1345-4 熯 sign \x71B0 16-0 熰 sign \x71B1 23456-3 熱 sign \x71B2 12345-356-1 熲 sign \x71B3 134-45-2 熳 sign \x71B5 234-25 熵 sign \x71B8 14-235 熸 sign \x71B9 125-125 熹 sign \x71BE 1346-24-4 熾 sign \x71C0 14-256-1 燀 sign \x71C1 12346-3 ç‡ sign \x71C2 23456-345-3 燂 sign \x71C3 256-3 燃 sign \x71C4 235-2 燄 sign \x71C8 2345-1245 燈 sign \x71C9 2345-1246-2 燉 sign \x71CA 234-1246 燊 sign \x71CB 14-13456 燋 sign \x71CE 123-13456-3 燎 sign \x71CF 2456-35-3 ç‡ sign \x71D0 123-234-3 ç‡ sign \x71D2 234-13456 燒 sign \x71D4 124-45-3 燔 sign \x71D5 256-4 燕 sign \x71D6 1346-456-3 燖 sign \x71D9 23456-56-4 燙 sign \x71DA 245-1235-3 燚 sign \x71DC 134-2346-2 燜 sign \x71DF 245-356-3 營 sign \x71E0 245-12345 燠 sign \x71E1 245-1235-3 燡 sign \x71E2 245-1235-3 sign \x71E5 1346-1236-4 燥 sign \x71E6 1346-45-4 燦 sign \x71E7 234-245-2 燧 sign \x71E8 234-245-2 sign \x71EC 2456-146-1 燬 sign \x71ED 14-12345 燭 sign \x71EE 234-23456-5 燮 sign \x71F4 1256-2 燴 sign \x71F6 1345-236 燶 sign \x71F8 234-24 燸 sign \x71F9 234-256-1 燹 sign \x71FB 124-1246 燻 sign \x71FC 14-234-1 燼 sign \x71FE 23456-1236-3 燾 sign \x71FF 13456-2 燿 sign \x7206 1234-34-4 爆 sign \x7207 12356-3 爇 sign \x720A 1245-1236-3 爊 sign \x720D 234-246-5 çˆ sign \x7210 123-1236-3 çˆ sign \x7213 235-2 爓 sign \x7214 125-125 爔 sign \x721A 245-246-3 爚 sign \x721B 123-45-2 爛 sign \x721D 14-246-5 çˆ sign \x721F 13-2346-4 爟 sign \x7226 123-345-6 爦 sign \x7228 1346-23-4 爨 sign \x722A 14-34-1 爪 sign \x722C 12346-12-3 爬 sign \x722D 14-1245 爭 sign \x7230 23-3 爰 sign \x7235 14-246-5 爵 sign \x7236 124-136-2 父 sign \x7238 1234-12 爸 sign \x7239 2345-15 爹 sign \x723A 245-15-3 爺 sign \x723B 1245-34-3 爻 sign \x723D 234-56-1 爽 sign \x723E 24-6 爾 sign \x723F 1234-45-2 爿 sign \x7240 1346-56-3 牀 sign \x7241 135-0 ç‰ sign \x7242 14-56 牂 sign \x7244 1346-25 牄 sign \x7246 1346-25-3 牆 sign \x7247 12346-256-4 片 sign \x7248 1234-45-1 版 sign \x7249 12346-2346-4 牉 sign \x724B 14-256 牋 sign \x724C 12346-346-3 牌 sign \x724F 1456-3 ç‰ sign \x7252 2345-12346-3 牒 sign \x7256 245-16-6 牖 sign \x7258 2345-12345-3 牘 sign \x7259 1245-12-3 牙 sign \x725A 1346-14 牚 sign \x725B 1245-16-3 牛 sign \x725D 12346-1246-6 ç‰ sign \x725E 1245-12-3 牞 sign \x725F 134-16-3 牟 sign \x7260 23456-12 牠 sign \x7261 134-34-6 牡 sign \x7262 123-1236-3 牢 sign \x7263 245-1246-2 牣 sign \x7267 134-12345-3 牧 sign \x7269 134-35-3 物 sign \x726E 14-256-4 牮 sign \x726F 13-136-1 牯 sign \x7272 234-1245 牲 sign \x7274 2345-146-1 牴 sign \x7277 1346-23-3 牷 sign \x7278 14-24-2 牸 sign \x7279 2345-46-3 特 sign \x727B 134-56-3 牻 sign \x727C 125-1245 牼 sign \x727D 125-256 牽 sign \x727E 1245-6 牾 sign \x727F 13-12345 牿 sign \x7280 234-146 犀 sign \x7281 123-146-3 çŠ sign \x7284 13-125 犄 sign \x7285 13-56 犅 sign \x7289 234-234-3 犉 sign \x728B 13-245-2 犋 sign \x728C 13-12 犌 sign \x728D 13-256 çŠ sign \x728E 124-236 犎 sign \x7292 125-1236-4 犒 sign \x7296 123-12456-3 犖 sign \x7297 13-346-4 犗 sign \x729A 2456-146-4 犚 sign \x729B 123-125-3 犛 sign \x729D 23456-236-3 çŠ sign \x72A2 2345-12345-3 犢 sign \x72A3 123-12346-3 犣 sign \x72A7 125-125 犧 sign \x72AC 125-23-1 犬 sign \x72AE 1234-12345-3 犮 sign \x72AF 124-45-2 犯 sign \x72B0 234-16-3 犰 sign \x72B4 1245-1345-2 犴 sign \x72B5 13-135 犵 sign \x72BA 1235-56-4 犺 sign \x72C0 14-56-2 ç‹€ sign \x72C1 2456-1246-6 ç‹ sign \x72C2 1235-56-3 ç‹‚ sign \x72C3 1345-16-1 狃 sign \x72C4 2345-1235-3 ç‹„ sign \x72C5 245-16 ç‹… sign \x72C9 12346-125 狉 sign \x72CA 12345-1235 狊 sign \x72CC 234-356 狌 sign \x72CE 125-1234-3 狎 sign \x72D0 136-3 ç‹ sign \x72D1 123-356-3 ç‹‘ sign \x72D2 124-35 ç‹’ sign \x72D6 245-16-2 ç‹– sign \x72D7 13-16-1 ç‹— sign \x72D8 12356-3 狘 sign \x72D9 14-245 ç‹™ sign \x72E0 125-1246-1 ç‹  sign \x72E1 13-34-1 ç‹¡ sign \x72E2 13-34-1 sign \x72E8 245-236-3 狨 sign \x72E9 234-16-4 ç‹© sign \x72EB 123-1236-6 ç‹« sign \x72F3 1456-3 狳 sign \x72F4 1234-146-2 ç‹´ sign \x72F7 13-23-4 ç‹· sign \x72F8 123-125-3 狸 sign \x72F9 125-1234-3 狹 sign \x72FA 1245-1246-3 狺 sign \x72FB 234-23 ç‹» sign \x72FC 123-56-3 狼 sign \x72FD 1234-1256-4 狽 sign \x72FE 14-146-4 狾 sign \x7301 123-125-2 çŒ sign \x7307 125-34 猇 sign \x730A 1245-146-3 猊 sign \x730B 1234-13456 猋 sign \x7311 12456-1246 猑 sign \x7312 235-4 猒 sign \x7313 12345-135-1 猓 sign \x7316 1346-25 猖 sign \x7317 24-0 猗 sign \x7318 14-146-4 猘 sign \x7319 14-1245 猙 sign \x731B 134-14-6 猛 sign \x731C 1346-346 猜 sign \x731D 1346-12356-5 çŒ sign \x731E 234-15-4 猞 sign \x7322 136-3 猢 sign \x7325 1256-0 猥 sign \x7327 2456-135 猧 sign \x7329 234-356 猩 sign \x732A 14-1456 sign \x7330 245-13-5 猰 sign \x7331 1345-34-3 猱 sign \x7332 125-23456-5 猲 sign \x7334 125-16-3 猴 sign \x7336 245-16-3 猶 sign \x7337 245-16-3 猷 sign \x733A 13456-3 猺 sign \x733B 234-23 猻 sign \x733E 2456-2345-3 猾 sign \x733F 23-3 猿 sign \x7341 134-12-6 ç sign \x7343 2345-346 çƒ sign \x7344 245-12345-3 ç„ sign \x7345 234-24 ç… sign \x7349 14-234 ç‰ sign \x734D 13-356-4 ç sign \x734E 14-25-1 çŽ sign \x7350 14-25 ç sign \x7351 1346-345-3 ç‘ sign \x7352 1245-1236-3 ç’ sign \x7357 1235-12356-5 ç— sign \x7358 1234-146-2 ç˜ sign \x735D 123-1346-3 ç sign \x735E 23456-236-3 çž sign \x7360 123-13456-3 ç  sign \x7362 125-13456 ç¢ sign \x7367 13-23-4 ç§ sign \x7368 2345-12345-3 ç¨ sign \x7369 2456-146-4 ç© sign \x736A 1235-1256-1 çª sign \x736B 125-235-1 ç« sign \x736C 125-346-6 ç¬ sign \x736E 1345-125-3 ç® sign \x736F 124-1246 ç¯ sign \x7370 1345-356-3 ç° sign \x7372 2456-12456-3 ç² sign \x7375 123-12346-3 çµ sign \x7377 1235-56-4 ç· sign \x7378 234-16-4 ç¸ sign \x737A 1346-2345-5 çº sign \x737B 125-256-4 ç» sign \x737C 134-125-3 ç¼ sign \x737E 124-2346 ç¾ sign \x7380 123-135 玀 sign \x7381 125-235-1 çŽ sign \x7383 124-12456-5 玃 sign \x7384 23-3 玄 sign \x7385 134-13456-2 玅 sign \x7386 14-24 玆 sign \x7387 123-1346-3 率 sign \x7388 123-1236-3 玈 sign \x7389 245-12345-3 玉 sign \x738B 2456-56-3 王 sign \x738E 2345-356 玎 sign \x7393 2345-1235 玓 sign \x7395 13-1345 玕 sign \x7396 13-16-1 玖 sign \x7397 1456-0 玗 sign \x7398 125-125-1 sign \x739E 124-136 sign \x739F 134-1246-3 玟 sign \x73A0 13-346-4 玠 sign \x73A1 245-15-3 玡 sign \x73A2 1234-356 玢 sign \x73A5 12356-3 玥 sign \x73A6 1235-12356-5 玦 sign \x73A8 13-12456-5 玨 sign \x73A9 2346-2 玩 sign \x73AB 134-1256-3 玫 sign \x73B2 123-356-3 玲 sign \x73B3 2345-126-2 玳 sign \x73B7 2345-235-4 玷 sign \x73BB 1234-135 玻 sign \x73BC 1346-24-1 玼 sign \x73C0 12346-13-5 ç€ sign \x73C2 135-0 ç‚ sign \x73C5 234-1246 ç… sign \x73C8 13-12 çˆ sign \x73CA 234-45 çŠ sign \x73CB 123-16-6 ç‹ sign \x73CC 1234-125-4 çŒ sign \x73CD 14-1246 ç sign \x73CE 14-1246 sign \x73CF 13-12456-5 sign \x73D0 124-2345-5 sign \x73D3 13-34-4 ç“ sign \x73D9 13-236-1 ç™ sign \x73DE 123-12456-5 çž sign \x73E0 14-1456 ç  sign \x73E1 14-1456 sign \x73E3 234-234 ç£ sign \x73E4 234-234 sign \x73E5 24-6 ç¥ sign \x73E6 24-6 sign \x73E7 13456-3 ç§ sign \x73E8 13456-3 sign \x73E9 125-1245-3 ç© sign \x73EA 12345-146 çª sign \x73ED 1234-45 ç­ sign \x73EE 12346-1256-4 ç® sign \x73F8 1245-3 ç¸ sign \x73FA 12345-1246-2 çº sign \x73FD 23456-356-6 ç½ sign \x73FE 256-2 ç¾ sign \x7400 125-456-4 ç€ sign \x7403 1235-16-3 çƒ sign \x7404 23-2 ç„ sign \x7405 123-56-3 ç… sign \x7406 123-125-6 ç† sign \x7407 234-16-4 ç‡ sign \x7408 124-16-3 çˆ sign \x7409 123-16-3 ç‰ sign \x740A 245-15-3 çŠ sign \x740D 123-125-2 sign \x7416 14-45-1 ç– sign \x741A 13-245 çš sign \x741B 234-456 ç› sign \x7421 14-12356-5 ç¡ sign \x7422 2345-246-5 ç¢ sign \x7424 14-14 ç¤ sign \x7425 124-136-1 ç¥ sign \x7426 1235-125-3 ç¦ sign \x7428 12456-1246 ç¨ sign \x742A 1235-125-3 çª sign \x742B 1234-1245-1 ç« sign \x742C 23-1 ç¬ sign \x742E 1346-236-3 ç® sign \x742F 13-2346-1 ç¯ sign \x7430 235-6 ç° sign \x7431 2345-13456 ç± sign \x7432 1234-125-4 ç² sign \x7433 123-456-3 ç³ sign \x7434 1235-456-3 ç´ sign \x7435 12346-125-3 çµ sign \x7436 12346-12-3 ç¶ sign \x743A 124-2345-5 çº sign \x743C 1235-356-3 ç¼ sign \x743F 2456-1246-3 ç¿ sign \x7440 1456-6 ç‘€ sign \x7441 134-1236-2 ç‘ sign \x7444 234-23 ç‘„ sign \x744A 14-456 瑊 sign \x744B 2456-146-6 ç‘‹ sign \x7451 234-23-2 ç‘‘ sign \x7452 245-25-3 ç‘’ sign \x7455 125-12-3 ç‘• sign \x7457 23-2 ç‘— sign \x7459 1345-1236-6 ç‘™ sign \x745A 136-3 瑚 sign \x745B 245-356 ç‘› sign \x745C 1456-3 瑜 sign \x745E 234-245-2 瑞 sign \x745F 234-35 瑟 sign \x7460 123-16-3 sign \x7462 245-236-3 ç‘¢ sign \x7463 234-135-1 ç‘£ sign \x7464 13456-3 瑤 sign \x7469 245-356-3 ç‘© sign \x746A 134-12-6 瑪 sign \x746C 123-16-3 sign \x746D 23456-56-3 ç‘­ sign \x746E 123-1346-3 ç‘® sign \x746F 123-56-3 瑯 sign \x7470 12345-146-4 ç‘° sign \x7471 14-1246-4 瑱 sign \x7472 1346-25 瑲 sign \x7473 1346-135 瑳 sign \x747D 1346-236 瑽 sign \x747E 13-1246-1 瑾 sign \x7480 1346-245 ç’€ sign \x7481 1346-236 ç’ sign \x7483 123-125-3 ç’ƒ sign \x7485 234-135-1 ç’… sign \x7486 1235-16-3 ç’† sign \x7487 234-23-3 ç’‡ sign \x7488 1245-1236-3 ç’ˆ sign \x7489 123-256-6 ç’‰ sign \x748B 14-25 ç’‹ sign \x7490 14-1236-2 ç’ sign \x7498 123-234-3 ç’˜ sign \x749A 1235-356-3 ç’š sign \x749C 2456-56-3 ç’œ sign \x749E 12346-12456-5 sign \x749F 13-356-1 ç’Ÿ sign \x74A0 124-45-3 ç’  sign \x74A3 13-125 ç’£ sign \x74A6 126-4 ç’¦ sign \x74A7 1234-1235 ç’§ sign \x74A8 1346-45-4 ç’¨ sign \x74A9 1235-245-3 ç’© sign \x74AA 14-1236-1 ç’ª sign \x74AB 2345-56 ç’« sign \x74B0 2456-45-3 ç’° sign \x74B1 234-35 ç’± sign \x74B5 1456-3 ç’µ sign \x74BA 134-1246-2 ç’º sign \x74BD 234-346-1 ç’½ sign \x74BF 234-23-3 ç’¿ sign \x74C0 23-6 ç“€ sign \x74C5 123-1235 ç“… sign \x74CA 1235-356-3 瓊 sign \x74CF 123-236-3 ç“ sign \x74D4 245-356 ç“” sign \x74D6 12345-146 ç“– sign \x74D8 13-2346-4 瓘 sign \x74DA 14-45-4 瓚 sign \x74DB 2346-3 ç“› sign \x74DC 12345-12 瓜 sign \x74DD 12346-34-3 ç“ sign \x74DE 2345-23456-3 瓞 sign \x74DF 12346-34-3 瓟 sign \x74E0 136-2 ç“  sign \x74E1 136-3 sign \x74E2 12346-13456-3 sign \x74E3 124-45-2 ç“£ sign \x74E4 1345-56-3 瓤 sign \x74E5 1345-56-3 sign \x74E6 1245-12-6 瓦 sign \x74E7 1245-12-6 sign \x74EE 236-4 ç“® sign \x74F4 123-356-3 ç“´ sign \x74F6 12346-356-3 ç“¶ sign \x74F7 1346-24-3 ç“· sign \x74FB 1346-24 ç“» sign \x74FD 2345-56-1 瓽 sign \x74FF 12346-16-1 ç“¿ sign \x7503 14-16-4 甃 sign \x7504 245-1246 甄 sign \x750C 16-0 甌 sign \x750D 134-1245-3 ç” sign \x750E 14-23 sign \x750F 1234-56-4 ç” sign \x7511 14-1245-2 甑 sign \x7513 12346-1235 甓 sign \x7515 1245-236-4 甕 sign \x7516 14-0 ç”– sign \x7517 256-6 ç”— sign \x7518 13-456 甘 sign \x751A 234-456-2 甚 sign \x751C 23456-235-3 甜 sign \x751F 234-1245 生 sign \x7521 234-1246 甡 sign \x7522 1346-45-1 產 sign \x7525 234-1245 甥 sign \x7526 234-1236 甦 sign \x7528 245-236-2 用 sign \x7529 123-35 甩 sign \x752A 123-12345-3 甪 sign \x752B 124-136-1 甫 sign \x752C 245-236-1 甬 sign \x752D 1234-1245-1 ç”­ sign \x752E 124-236-2 ç”® sign \x752F 1345-356-3 甯 sign \x7530 23456-256-3 ç”° sign \x7531 245-16-3 ç”± sign \x7532 13-1234-5 甲 sign \x7533 234-1246 申 sign \x7534 14-13-3 ç”´ sign \x7537 1345-345-3 ç”· sign \x7538 2345-256 甸 sign \x7539 1234-356 甹 sign \x753A 2345-356 町 sign \x753D 14-1246-4 甽 sign \x753E 14-126 甾 sign \x753F 134-1246-3 甿 sign \x7540 1234-125-1 ç•€ sign \x7547 2456-1246-3 畇 sign \x7548 124-45-4 畈 sign \x754A 13-14 sign \x754B 23456-256-3 ç•‹ sign \x754C 13-346-4 界 sign \x754E 125-23-1 畎 sign \x754F 2456-146-4 ç• sign \x7554 1234-2346-2 ç•” sign \x7559 123-16-3 ç•™ sign \x755A 1234-2346-1 畚 sign \x755B 1346-1246-1 ç•› sign \x755C 1346-12345 畜 sign \x755D 134-16-6 ç• sign \x755F 14-1235 畟 sign \x7562 1234-35 ç•¢ sign \x7563 2345-1234-5 ç•£ sign \x7564 14-24-2 畤 sign \x7565 123-246-3 ç•¥ sign \x7566 12456-146-3 畦 sign \x756A 124-45 番 sign \x756B 2456-12-2 ç•« sign \x756C 1456-3 畬 sign \x756F 14-234-4 畯 sign \x7570 24-2 ç•° sign \x7576 2345-56 ç•¶ sign \x7577 14-12356-5 ç•· sign \x7578 1235-125 畸 sign \x7579 23-1 畹 sign \x757D 123-234-1 畽 sign \x757E 123-245-3 畾 sign \x757F 13-125 ç•¿ sign \x7584 123-234-3 ç–„ sign \x7586 13-25 ç–† sign \x7587 1346-16-3 ç–‡ sign \x758A 2345-12346-3 ç–Š sign \x758B 12346-35 ç–‹ sign \x758C 14-23456-5 ç–Œ sign \x758F 234-135 ç– sign \x7590 14-24-4 ç– sign \x7591 24-3 ç–‘ sign \x7594 2345-356 ç–” sign \x7598 13-56 ç–˜ sign \x7599 1245-35-3 ç–™ sign \x759A 13-16-4 ç–š sign \x759D 234-45-4 ç– sign \x75A2 1346-1246-4 ç–¢ sign \x75A3 245-16-3 ç–£ sign \x75A4 1234-12 ç–¤ sign \x75A5 13-346-4 ç–¥ sign \x75A7 14-24 ç–§ sign \x75AB 245-1235-3 ç–« sign \x75B0 14-1456-4 ç–° sign \x75B1 12346-34 ç–± sign \x75B2 12346-125-3 ç–² sign \x75B3 13-456 ç–³ sign \x75B5 1346-24 ç–µ sign \x75B6 234-23456-5 ç–¶ sign \x75B8 23456-45-1 ç–¸ sign \x75B9 1346-1246-1 ç–¹ sign \x75BA 124-35-3 ç–º sign \x75BC 23456-1245-3 ç–¼ sign \x75BD 14-245 ç–½ sign \x75BE 14-35-3 ç–¾ sign \x75BF 124-146-1 ç–¿ sign \x75C0 1235-245-3 ç—€ sign \x75C1 2345-235-4 ç— sign \x75C2 13-12 ç—‚ sign \x75C4 14-12-4 ç—„ sign \x75C5 1234-2356-2 ç—… sign \x75C7 14-356-4 ç—‡ sign \x75CA 1346-23-3 ç—Š sign \x75CC 23456-236 ç—Œ sign \x75CD 24-3 ç— sign \x75CE 13-346 ç—Ž sign \x75CF 124-1256-1 ç— sign \x75D0 1256-3 ç— sign \x75D2 245-25-6 ç—’ sign \x75D4 14-24-2 ç—” sign \x75D5 125-1246-3 ç—• sign \x75D7 134-1256-2 ç—— sign \x75D8 2345-16-2 ç—˜ sign \x75D9 13-356-2 ç—™ sign \x75DA 125-34 ç—š sign \x75DB 23456-236-4 ç—› sign \x75DE 134-16 ç—ž sign \x75E0 234-23 ç—  sign \x75E1 12346-1236 ç—¡ sign \x75E2 123-125-2 ç—¢ sign \x75E3 14-24-4 ç—£ sign \x75E4 1346-135-3 ç—¤ sign \x75E5 1346-135-3 sign \x75E6 1245-2 ç—¦ sign \x75E7 234-12 ç—§ sign \x75E8 234-12 sign \x75ED 1234-1245 ç—­ sign \x75EF 13-2346-1 ç—¯ sign \x75F0 23456-345-3 ç—° sign \x75F1 124-146-1 ç—± sign \x75F2 134-12-3 ç—² sign \x75F3 123-456-3 ç—³ sign \x75F4 1346-24 ç—´ sign \x75F6 2345-256-1 ç—¶ sign \x75F9 1234-125-4 ç—¹ sign \x75FA 1234-125-4 ç—º sign \x75FB 134-1246-3 ç—» sign \x75FC 13-136-4 ç—¼ sign \x75FE 135-0 ç—¾ sign \x75FF 2456-146-1 ç—¿ sign \x7600 1456-1 瘀 sign \x7601 234-245-2 ç˜ sign \x7603 14-12345-3 瘃 sign \x7608 14-146-4 瘈 sign \x7609 1456-2 瘉 sign \x760A 125-16-3 瘊 sign \x760B 124-236 瘋 sign \x760C 123-2345-5 瘌 sign \x760D 245-25-3 ç˜ sign \x760F 23456-1236-3 ç˜ sign \x7610 1456-6 ç˜ sign \x7613 2346-2 瘓 sign \x7615 1245-12 瘕 sign \x7616 245-456 瘖 sign \x7619 234-135 瘙 sign \x761A 1235-12356-5 瘚 sign \x761B 14-146-4 瘛 sign \x761E 24-4 瘞 sign \x761F 2456-1246 瘟 sign \x7620 14-2456-5 瘠 sign \x7621 1346-56 瘡 sign \x7622 1234-45 瘢 sign \x7623 2456-346-2 瘣 sign \x7624 123-16-3 瘤 sign \x7625 1346-346-4 瘥 sign \x7626 234-16-4 瘦 sign \x7627 245-246-3 瘧 sign \x7628 2345-256 瘨 sign \x7629 2345-1234-5 瘩 sign \x762D 1234-13456 瘭 sign \x7630 123-135-1 瘰 sign \x7631 24-4 瘱 sign \x7633 1346-16 瘳 sign \x7634 14-25-4 瘴 sign \x7635 14-346-4 瘵 sign \x7638 1235-15-3 瘸 sign \x763A 123-16-2 瘺 sign \x763C 134-12456-3 瘼 sign \x763D 13-1246-1 瘽 sign \x7642 123-13456-3 療 sign \x7643 123-236-3 癃 sign \x7646 123-1236-3 癆 sign \x7647 13-45-1 癇 sign \x7648 124-146-4 癈 sign \x7649 2345-45 癉 sign \x764C 1245-345-3 癌 sign \x764E 13-45-1 癎 sign \x7652 1456-2 ç™’ sign \x7656 12346-1235 ç™– sign \x7657 123-245-6 ç™— sign \x7658 123-146-2 癘 sign \x765C 2345-256-2 癜 sign \x765F 1234-23456-3 癟 sign \x7660 14-146-2 ç™  sign \x7661 1346-24 癡 sign \x7662 245-25-6 癢 sign \x7664 14-23456-5 癤 sign \x7665 14-356 癥 sign \x7666 134-46-3 癦 sign \x7669 123-346-4 癩 sign \x766C 234-256-1 癬 sign \x766D 245-356-1 ç™­ sign \x766E 245-1246-6 ç™® sign \x7670 245-236 ç™° sign \x7671 23456-45-1 ç™± sign \x7672 2345-256 癲 sign \x7675 123-23 癵 sign \x7678 12345-146-4 癸 sign \x767B 2345-1245 ç™» sign \x767C 124-2345-5 發 sign \x767D 1234-13-3 白 sign \x767E 1234-13-5 百 sign \x767F 13-12 癿 sign \x7681 14-1236-2 çš sign \x7682 14-1236-2 çš‚ sign \x7684 2345-1235 çš„ sign \x7686 13-346 皆 sign \x7687 2456-56-3 皇 sign \x7688 12345-146 皈 sign \x768B 13-1236 çš‹ sign \x768E 13-34-1 皎 sign \x7693 125-1236-2 çš“ sign \x7695 1234-12345-3 çš• sign \x7696 2346-6 çš– sign \x7699 234-1235 çš™ sign \x769A 1245-126-1 çšš sign \x769C 125-1236-2 çšœ sign \x76A4 12346-135-3 皤 sign \x76A6 13-34-1 皦 sign \x76AA 123-1235 皪 sign \x76AB 12346-13456-4 sign \x76AD 14-13456-4 çš­ sign \x76AE 12346-125-3 çš® sign \x76B0 12346-1256-4 çš° sign \x76B4 234-234 çš´ sign \x76B5 14-246-5 çšµ sign \x76B8 1245-1246 皸 sign \x76BA 14-16-4 皺 sign \x76BB 14-12 çš» sign \x76BD 14-256-1 çš½ sign \x76BE 2345-12345-3 çš¾ sign \x76BF 134-356-6 çš¿ sign \x76C2 1456-3 盂 sign \x76C3 1234-1256 盃 sign \x76C5 14-236 ç›… sign \x76C6 12346-2346-3 盆 sign \x76C8 245-356-3 盈 sign \x76C9 2456-135-3 盉 sign \x76CA 245-1235 益 sign \x76CD 125-1234-3 ç› sign \x76CE 56-4 盎 sign \x76D2 125-26-3 ç›’ sign \x76D4 12456-146 ç›” sign \x76DB 234-356-2 ç›› sign \x76DC 2345-1236-2 盜 sign \x76DD 123-12345-3 ç› sign \x76DE 14-45-1 盞 sign \x76DF 134-1245-3 盟 sign \x76E0 12346-2346-3 sign \x76E1 14-234-2 盡 sign \x76E2 14-234-2 sign \x76E3 13-345 監 sign \x76E4 12346-2346-3 盤 sign \x76E5 13-2346-4 盥 sign \x76E6 456-0 盦 sign \x76E7 123-1236-3 ç›§ sign \x76E8 123-1236-3 sign \x76E9 14-16-1 盩 sign \x76EA 2345-56-2 盪 sign \x76EC 13-136-1 盬 sign \x76ED 123-245-2 ç›­ sign \x76EE 134-12345-3 ç›® sign \x76EF 2345-356 盯 sign \x76F1 125-245 ç›± sign \x76F2 134-14-3 盲 sign \x76F4 14-1235-3 ç›´ sign \x76F5 123-125-3 盵 sign \x76F8 234-25 相 sign \x76F9 2345-234-2 盹 sign \x76FB 125-146-2 ç›» sign \x76FC 12346-45-4 盼 sign \x76FE 23456-234-6 盾 sign \x7701 234-14-1 çœ sign \x7704 134-256-6 眄 sign \x7705 12346-45 眅 sign \x7707 134-13456-6 眇 sign \x7708 2345-345 眈 sign \x7709 134-125-3 眉 sign \x770A 134-1236-2 眊 sign \x770B 125-1345-4 看 sign \x770C 23-2 sign \x7711 13456-1 眑 sign \x7715 1346-1246-1 眕 sign \x7719 24-3 眙 sign \x771A 234-14-1 眚 sign \x771B 134-1256-2 眛 sign \x771F 14-1246 真 sign \x7720 134-256-3 眠 sign \x7722 23-0 眢 sign \x7723 2345-23456-3 眣 sign \x7725 14-346-2 眥 sign \x7728 14-345-1 眨 sign \x7729 23-3 眩 sign \x772D 12456-146-3 眭 sign \x772F 134-146 眯 sign \x7731 24-3 眱 sign \x7734 23-2 眴 sign \x7735 1346-24 眵 sign \x7736 125-56 眶 sign \x7737 13-23-4 眷 sign \x7738 134-16-3 眸 sign \x773A 23456-13456-4 sign \x773C 1245-45-6 眼 sign \x773D 134-13-3 眽 sign \x773E 14-236-4 眾 sign \x7740 14-246-3 ç€ sign \x7745 125-1345-6 ç… sign \x7746 2346-6 ç† sign \x7747 23456-146-1 ç‡ sign \x774A 13-23-4 çŠ sign \x774D 256-6 ç sign \x774E 125-125 çŽ sign \x774F 12456-1246-4 ç sign \x7752 234-235-1 ç’ sign \x7756 123-356-2 ç– sign \x775A 1245-346-3 çš sign \x775B 14-356 ç› sign \x775C 14-1245 çœ sign \x775E 123-126-3 çž sign \x775F 234-245-2 çŸ sign \x7760 13-23-4 ç  sign \x7761 234-245-2 ç¡ sign \x7762 14-245 ç¢ sign \x7763 2345-12345 ç£ sign \x7765 12346-125-6 ç¥ sign \x7766 134-12345-3 ç¦ sign \x7767 124-1246 ç§ sign \x7768 1245-146-2 ç¨ sign \x7769 123-12345-3 ç© sign \x776A 13-1236 çª sign \x776B 14-23456-5 ç« sign \x776C 1346-126-1 ç¬ sign \x7779 2345-1236-1 ç¹ sign \x777C 2345-146-2 ç¼ sign \x777D 12456-146-3 ç½ sign \x777E 13-1236 ç¾ sign \x777F 245-245-2 ç¿ sign \x7780 134-16-2 瞀 sign \x7784 134-13456-3 çž„ sign \x7785 1346-16-1 çž… sign \x7787 134-125 瞇 sign \x778B 1346-1246 çž‹ sign \x778C 125-26-3 瞌 sign \x778D 234-16-1 çž sign \x778E 125-35-3 瞎 sign \x7791 134-356-3 çž‘ sign \x7793 124-1246-4 çž“ sign \x779C 123-16 çžœ sign \x779E 134-2346-3 çžž sign \x779F 12346-13456-6 sign \x77A0 1346-14 çž  sign \x77A2 134-236-1 瞢 sign \x77A5 12346-23456-5 sign \x77A7 1346-13456-3 çž§ sign \x77AA 2345-1245 瞪 sign \x77AB 234-456-1 çž« sign \x77AC 234-234-4 瞬 sign \x77AD 123-13456-6 çž­ sign \x77B0 125-456-4 çž° sign \x77B2 12356-3 çž² sign \x77B3 23456-236-3 çž³ sign \x77B5 123-234-3 çžµ sign \x77B6 1235-1256-1 çž¶ sign \x77B7 13-45-4 çž· sign \x77BB 14-235 çž» sign \x77BC 13-235-1 çž¼ sign \x77BD 13-136-1 çž½ sign \x77BF 13-245-4 çž¿ sign \x77C7 134-236-3 矇 sign \x77C9 12346-1246-3 矉 sign \x77CB 123-146-2 矋 sign \x77CD 124-12456-5 çŸ sign \x77CE 125-356-4 矎 sign \x77D0 124-12456-5 çŸ sign \x77D3 123-236-3 矓 sign \x77D4 13-2346-4 矔 sign \x77D7 1346-12345 矗 sign \x77DA 14-12345 矚 sign \x77DB 134-34-3 矛 sign \x77DC 13-356 矜 sign \x77DE 123-1346-3 矞 sign \x77E1 13-245-1 sign \x77E2 1346-24-1 矢 sign \x77E3 24-6 矣 sign \x77E4 24-6 sign \x77E5 14-24 知 sign \x77E6 14-24 sign \x77E7 1346-1246-1 矧 sign \x77E8 1346-1246-1 sign \x77E9 13-245-1 矩 sign \x77EC 1346-135-3 矬 sign \x77ED 2345-23-1 短 sign \x77EE 146-1 矮 sign \x77EF 13-13456-1 矯 sign \x77F0 14-1245 矰 sign \x77F1 2456-12456-5 矱 sign \x77F3 234-2456-3 石 sign \x77F8 13-125 矸 sign \x77F9 13-2345 矹 sign \x77FB 1245-35-3 矻 sign \x77FC 13-56 矼 sign \x77FD 14-1235-3 矽 sign \x7802 234-12 ç ‚ sign \x7806 124-136 ç † sign \x7809 125-245 ç ‰ sign \x780C 1346-146-4 ç Œ sign \x780D 125-456-1 ç  sign \x780F 12346-45 ç  sign \x7811 1245-12-2 ç ‘ sign \x7812 12346-125 ç ’ sign \x7814 256-3 ç ” sign \x781D 124-2345-5 ç  sign \x781F 14-12-4 ç Ÿ sign \x7820 14-245 ç   sign \x7822 123-135-1 ç ¢ sign \x7823 23456-135-3 ç £ sign \x7825 2345-146-1 ç ¥ sign \x7826 14-346-2 ç ¦ sign \x7827 14-456 ç § sign \x782B 14-1456-1 ç « sign \x782C 123-12 ç ¬ sign \x782D 1234-256 ç ­ sign \x782E 1345-1236-6 ç ® sign \x7830 12346-356 ç ° sign \x7832 12346-34-4 ç ² sign \x7834 12346-135-4 ç ´ sign \x7835 1234-1356-5 ç µ sign \x7837 234-1246 ç · sign \x7838 14-1234-5 ç ¸ sign \x7843 14-1456 硃 sign \x7845 12345-146 ç¡… sign \x7849 123-1236-2 硉 sign \x784C 13-12456-5 硌 sign \x784E 245-356-3 硎 sign \x7850 2345-236-2 ç¡ sign \x7852 234-146 ç¡’ sign \x785C 125-1245 硜 sign \x785D 234-13456 ç¡ sign \x7860 123-56-3 ç¡  sign \x7864 125-1234-3 硤 sign \x7868 1346-15 硨 sign \x786A 1245-135-3 硪 sign \x786B 123-16-3 ç¡« sign \x786C 1245-14-2 硬 sign \x786D 134-56-3 ç¡­ sign \x786E 1235-12456-5 ç¡® sign \x786F 256-2 硯 sign \x787C 12346-14-3 硼 sign \x787E 14-245-2 硾 sign \x787F 125-236 sign \x7881 13-125 sign \x7887 2345-2356-2 碇 sign \x7889 2345-13456 碉 sign \x788C 123-12345 碌 sign \x788E 234-245-4 碎 sign \x788F 14-246-5 ç¢ sign \x7891 1234-125 碑 sign \x7893 2345-245-4 碓 sign \x7895 1235-125-3 碕 sign \x7897 2346-1 碗 sign \x7898 2345-256-1 碘 sign \x789A 1234-1256-2 碚 sign \x789E 1245-345-3 碞 sign \x789F 2345-12346-3 碟 sign \x78A1 2345-12345-3 碡 sign \x78A3 1235-23456-5 碣 sign \x78A5 1234-256-1 碥 sign \x78A7 1234-1235 碧 sign \x78A8 2456-146-4 碨 sign \x78A9 234-2456-3 碩 sign \x78AA 14-456 碪 sign \x78AB 2345-23-4 碫 sign \x78AD 2345-56-2 碭 sign \x78B0 12346-236-4 碰 sign \x78B2 2345-146-4 碲 sign \x78B3 23456-45-4 碳 sign \x78B4 14-12 碴 sign \x78BA 1235-12456-5 確 sign \x78BB 1235-12456-5 碻 sign \x78BC 134-12-6 碼 sign \x78BE 14-256-1 碾 sign \x78C1 1346-24-3 ç£ sign \x78C5 1234-56-2 磅 sign \x78C9 234-56-1 磉 sign \x78CA 123-245-6 磊 sign \x78CB 1346-135 磋 sign \x78CC 23456-256-3 磌 sign \x78D0 12346-2346-3 ç£ sign \x78D1 2456-146-4 磑 sign \x78D4 14-13-3 磔 sign \x78D5 125-26-3 磕 sign \x78DA 14-23 磚 sign \x78DE 12346-14 磞 sign \x78DF 123-12345 磟 sign \x78E0 123-1236-6 磠 sign \x78E1 125-456-4 磡 sign \x78E2 125-456-4 sign \x78E3 1346-456-1 磣 sign \x78E4 1346-456-1 sign \x78E5 123-245-6 磥 sign \x78E6 123-245-6 sign \x78E7 14-1235 磧 sign \x78E8 134-135-3 磨 sign \x78E9 134-135-3 sign \x78EA 1346-245 磪 sign \x78EC 125-356-4 磬 sign \x78EF 13-125 磯 sign \x78F2 1235-245-3 磲 sign \x78F4 2345-1245-4 磴 sign \x78F7 123-234-3 磷 sign \x78F9 2345-235-4 磹 sign \x78FA 2456-56-3 磺 sign \x78FB 12346-2346-3 磻 sign \x78FD 125-34 磽 sign \x78FE 2345-146 磾 sign \x78FF 123-1235-3 磿 sign \x7901 14-13456 ç¤ sign \x7904 1235-13456-3 礄 sign \x7905 2345-234 礅 sign \x7909 125-34 礉 sign \x790C 123-245-2 礌 sign \x790E 1346-135-1 礎 sign \x7910 1235-12456-5 ç¤ sign \x7912 24-6 sign \x7913 13-25 礓 sign \x7919 1245-126-2 礙 sign \x791E 134-236-3 礞 sign \x7921 1234-12456-3 礡 sign \x7924 1346-2345-5 礤 sign \x7926 1235-56-4 礦 sign \x7927 123-245-2 礧 sign \x7929 14-35 礩 sign \x792A 123-146-2 礪 sign \x792B 123-1235 礫 sign \x792C 124-45-3 礬 sign \x7931 123-236-3 礱 sign \x793A 234-24-2 示 sign \x793D 245-356-3 礽 sign \x793E 234-15-6 社 sign \x793F 245-246-3 礿 sign \x7940 14-24-2 祀 sign \x7941 1235-125-3 ç¥ sign \x7942 23456-12 祂 sign \x7945 125-256 祅 sign \x7946 13456-1 祆 sign \x7947 14-24-1 祇 sign \x7948 1235-125-3 祈 sign \x7949 14-24-1 祉 sign \x794A 1234-1245 祊 sign \x794F 234-2456-3 ç¥ sign \x7950 245-16-2 ç¥ sign \x7953 124-35 祓 sign \x7954 124-136-2 祔 sign \x7955 1234-125-4 祕 sign \x7956 14-1236-1 祖 sign \x7957 14-24 祗 sign \x795A 14-1236-2 祚 sign \x795B 1235-245 祛 sign \x795C 136-1 祜 sign \x795D 14-12345 ç¥ sign \x795E 234-1246-3 神 sign \x795F 234-245-2 祟 sign \x7960 1346-24-3 祠 sign \x7965 1346-25-3 祥 sign \x7967 23456-13456 祧 sign \x7968 12346-13456-4 sign \x796B 125-1234-3 祫 sign \x796D 14-146-4 祭 sign \x7972 14-456 祲 sign \x797A 1235-125-3 祺 sign \x797C 13-2346-4 祼 sign \x797F 123-12345-3 祿 sign \x7981 13-456-4 ç¦ sign \x798A 125-146-2 禊 sign \x798B 245-1246 禋 sign \x798D 2456-135-2 ç¦ sign \x798E 14-356 禎 sign \x798F 124-12345 ç¦ sign \x7993 245-25-3 禓 sign \x7994 23456-146-3 禔 sign \x7995 24-0 禕 sign \x7996 134-1256-3 禖 sign \x7998 2345-146-4 禘 sign \x799A 14-246-5 禚 sign \x799B 14-1246 禛 sign \x79A1 1245-12-3 禡 sign \x79A4 125-23 禤 sign \x79A6 1456-2 禦 sign \x79A7 125-125 禧 sign \x79A8 13-125 禨 sign \x79AA 234-235-3 禪 sign \x79AB 23456-345-6 禫 sign \x79AD 234-245-2 禭 sign \x79AE 123-146-6 禮 sign \x79B0 1345-125-3 禰 sign \x79B1 23456-1236-1 禱 sign \x79B3 245-25-3 禳 sign \x79B4 245-246-3 禴 sign \x79B9 1456-6 禹 sign \x79BA 1456-3 禺 sign \x79BB 123-125-3 离 sign \x79BD 1235-456-3 禽 sign \x79BE 2456-135-3 禾 sign \x79BF 23456-12345 禿 sign \x79C0 234-16-4 ç§€ sign \x79C1 234-24 ç§ sign \x79C5 1346-12-3 ç§… sign \x79C8 234-256 秈 sign \x79C9 1234-356-1 秉 sign \x79CB 1346-16 ç§‹ sign \x79CD 14-236-4 ç§ sign \x79CF 125-1236-4 ç§ sign \x79D1 124-135 ç§‘ sign \x79D2 134-13456-6 ç§’ sign \x79D5 1234-125-1 ç§• sign \x79D6 14-24-1 ç§– sign \x79D8 1234-125-4 秘 sign \x79DF 14-1236 ç§Ÿ sign \x79E0 12346-125 ç§  sign \x79E1 12346-125 sign \x79E3 134-1356-5 ç§£ sign \x79E4 1346-356-4 秤 sign \x79E5 12346-356-3 sign \x79E6 1346-234-3 秦 sign \x79E7 245-25 ç§§ sign \x79E8 245-25 sign \x79E9 2345-23456-3 ç§© sign \x79EB 234-1346-3 ç§« sign \x79EC 13-245-2 秬 sign \x79ED 14-24-1 ç§­ sign \x79F7 14-35-3 ç§· sign \x79F8 13-346 秸 sign \x79FA 2345-1236-4 秺 sign \x79FB 24-3 ç§» sign \x7A00 125-125 稀 sign \x7A02 123-56-3 稂 sign \x7A03 124-136 稃 sign \x7A05 234-245-4 稅 sign \x7A08 13-1345-1 稈 sign \x7A0A 23456-146-3 稊 sign \x7A0B 1346-356-3 程 sign \x7A0C 23456-1236-3 稌 sign \x7A0D 234-34-1 ç¨ sign \x7A11 123-12345-3 稑 sign \x7A14 1345-456-6 稔 sign \x7A17 1234-146-2 稗 sign \x7A18 13-125 稘 sign \x7A19 14-1235-3 稙 sign \x7A1A 14-24-2 稚 sign \x7A1B 12456-1246-1 稛 sign \x7A1C 123-356-3 稜 sign \x7A1E 124-135 稞 sign \x7A1F 1234-1246-1 稟 sign \x7A20 1346-16-3 稠 sign \x7A28 1234-256-1 稨 sign \x7A2D 13-346 sign \x7A2E 14-236-1 種 sign \x7A30 234-245 稰 sign \x7A31 1346-356 稱 sign \x7A37 14-1235 稷 sign \x7A39 14-1246-1 稹 sign \x7A3B 2345-1236-2 稻 sign \x7A3C 13-12-4 稼 sign \x7A3D 1235-146 稽 sign \x7A3F 13-1236-1 稿 sign \x7A40 13-12345 ç©€ sign \x7A44 14-146-4 ç©„ sign \x7A46 134-12345-3 穆 sign \x7A47 234-345 穇 sign \x7A48 134-2346-3 穈 sign \x7A49 14-24-2 sign \x7A4A 1235-125-4 穊 sign \x7A4B 123-12345-3 ç©‹ sign \x7A4C 234-1236 穌 sign \x7A4D 14-1235 ç© sign \x7A4E 2456-356-2 穎 sign \x7A57 234-245-2 ç©— sign \x7A5B 1346-246-5 ç©› sign \x7A5F 234-245-2 穟 sign \x7A60 1345-236-3 ç©  sign \x7A61 234-1235 ç©¡ sign \x7A62 2456-146-4 ç©¢ sign \x7A67 14-146-2 ç©§ sign \x7A68 23456-245-3 穨 sign \x7A69 2456-1246-1 ç©© sign \x7A6B 2456-12456-3 ç©« sign \x7A6D 123-245-6 ç©­ sign \x7A6E 1234-13456 ç©® sign \x7A70 245-25-3 ç©° sign \x7A74 12356-3 ç©´ sign \x7A75 2456-2345-5 穵 sign \x7A76 13-16-4 ç©¶ sign \x7A78 14-1235-3 穸 sign \x7A79 1235-236-3 穹 sign \x7A7A 125-236 空 sign \x7A7E 1245-34-6 穾 sign \x7A7F 1346-23 ç©¿ sign \x7A80 14-234 窀 sign \x7A81 2345-35-3 çª sign \x7A84 14-13-5 窄 sign \x7A85 13456-1 窅 sign \x7A86 1234-256-1 窆 sign \x7A88 134-13456-3 窈 sign \x7A8A 2456-12 窊 sign \x7A8B 12345-35-3 窋 sign \x7A8C 13-34-4 窌 sign \x7A92 14-35-3 窒 sign \x7A94 1245-34-6 窔 sign \x7A95 23456-13456-6 sign \x7A96 13-34-4 窖 sign \x7A97 1346-25 窗 sign \x7A98 12456-1246-4 窘 sign \x7A9E 23456-456-6 窞 sign \x7A9F 124-35 窟 sign \x7AA0 2456-135 窠 sign \x7AA3 234-1346 窣 sign \x7AA8 245-456-4 窨 sign \x7AA9 2456-135 窩 sign \x7AAA 2456-12 窪 sign \x7AAB 14-2345-5 窫 sign \x7AAC 1456-3 窬 sign \x7AAE 1235-236-3 窮 sign \x7AAF 13456-3 窯 sign \x7AB0 13456-3 窰 sign \x7AB1 23456-13456-6 sign \x7AB5 2345-13456-4 窵 sign \x7AB6 13-245-2 窶 sign \x7AB8 234-1235 窸 sign \x7ABA 12456-146 窺 sign \x7ABE 124-2346-1 窾 sign \x7ABF 123-236 窿 sign \x7AC3 14-1236-4 sign \x7AC4 1346-23-1 ç«„ sign \x7AC5 125-13456-4 ç«… sign \x7AC7 2345-16-2 竇 sign \x7ACA 234-23456-5 竊 sign \x7ACB 123-26-3 ç«‹ sign \x7AD1 2456-1245-3 ç«‘ sign \x7AD9 14-345-2 ç«™ sign \x7ADF 13-356-1 竟 sign \x7AE0 14-25 ç«  sign \x7AE3 14-234-4 ç«£ sign \x7AE5 23456-236-3 ç«¥ sign \x7AE6 234-236-1 竦 sign \x7AEB 14-356-2 ç«« sign \x7AED 1235-23456-5 ç«­ sign \x7AEF 2345-23 端 sign \x7AF6 13-356-4 ç«¶ sign \x7AF9 14-12345 竹 sign \x7AFA 14-12345 竺 sign \x7AFB 123-46-3 ç«» sign \x7AFD 1456-3 竽 sign \x7AFF 13-1345 ç«¿ sign \x7B04 13-146 笄 sign \x7B06 1234-12 笆 sign \x7B08 1235-26 笈 sign \x7B0A 14-34-4 笊 sign \x7B0F 124-35 ç¬ sign \x7B11 234-13456-4 笑 sign \x7B13 12346-125-3 笓 sign \x7B18 234-235-4 笘 sign \x7B19 234-1245 笙 sign \x7B1B 2345-2456-3 笛 sign \x7B1E 1346-24 笞 sign \x7B20 123-26 笠 sign \x7B22 134-1246-6 笢 sign \x7B24 23456-13456-3 sign \x7B25 14-24-2 笥 sign \x7B26 124-136-3 符 sign \x7B28 1234-1246-2 笨 sign \x7B2A 2345-2345-5 笪 sign \x7B2C 2345-146-2 第 sign \x7B2D 123-356-3 笭 sign \x7B2E 14-12456-5 笮 sign \x7B2F 1345-1236-3 笯 sign \x7B30 124-35 笰 sign \x7B31 13-16-1 笱 sign \x7B32 1234-256-2 笲 sign \x7B33 13-12 笳 sign \x7B35 124-45-2 笵 sign \x7B38 12346-135-1 笸 sign \x7B3B 1235-236-3 笻 sign \x7B45 234-256-1 ç­… sign \x7B46 1234-35 ç­† sign \x7B47 1235-236-3 ç­‡ sign \x7B48 1235-1356-5 ç­ˆ sign \x7B49 2345-1245-1 ç­‰ sign \x7B4A 13-34-1 ç­Š sign \x7B4B 13-1246 ç­‹ sign \x7B4C 1346-23-3 ç­Œ sign \x7B4D 234-234-1 ç­ sign \x7B4F 124-35-3 ç­ sign \x7B50 125-56 ç­ sign \x7B51 14-12345 ç­‘ sign \x7B52 23456-236-3 ç­’ sign \x7B54 2345-1234-5 ç­” sign \x7B56 1346-13-5 ç­– sign \x7B58 1235-16-4 ç­˜ sign \x7B60 12345-1246 ç­  sign \x7B63 123-125-3 ç­£ sign \x7B64 123-56-3 ç­¤ sign \x7B65 13-245-1 ç­¥ sign \x7B66 13-2346-1 ç­¦ sign \x7B67 13-45-1 ç­§ sign \x7B69 23456-236-3 ç­© sign \x7B6D 234-23-4 ç­­ sign \x7B6E 234-146-2 ç­® sign \x7B70 14-12456-3 ç­° sign \x7B71 234-13456-1 ç­± sign \x7B72 234-34 ç­² sign \x7B73 23456-356-3 ç­³ sign \x7B74 1346-13-5 ç­´ sign \x7B75 256-3 ç­µ sign \x7B77 124-346-4 ç­· sign \x7B78 13-1345-1 ç­¸ sign \x7B84 1234-125 箄 sign \x7B85 1234-125-4 ç®… sign \x7B87 13-135-4 箇 sign \x7B8B 14-256 箋 sign \x7B8C 2345-1236-1 sign \x7B8D 1235-136 ç® sign \x7B8E 1346-24-3 箎 sign \x7B8F 14-1245 ç® sign \x7B90 14-356 ç® sign \x7B91 234-1234-5 箑 sign \x7B92 14-16-1 sign \x7B94 1234-12456-3 ç®” sign \x7B95 13-125 箕 sign \x7B97 234-23-4 ç®— sign \x7B98 12345-1246-1 箘 sign \x7B9B 1235-136 ç®› sign \x7B9C 125-236 箜 sign \x7B9D 1235-235-3 ç® sign \x7BA0 234-245-3 ç®  sign \x7BA1 13-2346-1 管 sign \x7BAC 245-246-3 箬 sign \x7BAD 14-256-4 ç®­ sign \x7BB1 234-25 ç®± sign \x7BB4 14-456 ç®´ sign \x7BB7 24-3 ç®· sign \x7BB8 14-1456-2 箸 sign \x7BC0 14-23456-5 節 sign \x7BC1 2456-56-3 ç¯ sign \x7BC4 124-45-2 範 sign \x7BC6 234-23-2 篆 sign \x7BC7 12346-256 篇 sign \x7BC9 14-12345 築 sign \x7BCB 125-1234-3 篋 sign \x7BCC 125-16-3 篌 sign \x7BD4 2456-1246-3 篔 sign \x7BD8 1346-16 篘 sign \x7BD9 13-1236 篙 sign \x7BDA 124-125-1 篚 sign \x7BDB 245-246-3 篛 sign \x7BDD 13-16 ç¯ sign \x7BE0 234-13456-1 篠 sign \x7BE1 234-45-4 篡 sign \x7BE4 2345-12345 篤 sign \x7BE5 123-1346-3 篥 sign \x7BE6 1234-125-2 篦 sign \x7BE8 1346-245-3 篨 sign \x7BE9 234-146 篩 sign \x7BEA 1346-24-3 篪 sign \x7BF1 123-125-3 篱 sign \x7BF2 2456-146-2 篲 sign \x7BF3 1234-35 篳 sign \x7BF4 2345-2456-3 篴 sign \x7BF7 12346-236-3 篷 sign \x7BF8 1346-345-1 篸 sign \x7BF9 14-23-1 篹 sign \x7BFE 134-23456-3 篾 sign \x7C00 14-13-5 ç°€ sign \x7C03 24-3 ç°ƒ sign \x7C07 1346-12345 ç°‡ sign \x7C09 14-1236-2 ç°‰ sign \x7C0B 12345-146-1 ç°‹ sign \x7C0C 1346-12345 ç°Œ sign \x7C0D 123-16-6 ç° sign \x7C0F 123-12345 ç° sign \x7C11 234-135 ç°‘ sign \x7C15 123-46-3 sign \x7C1D 123-13456-3 ç° sign \x7C1E 2345-45 ç°ž sign \x7C1F 23456-235-6 ç°Ÿ sign \x7C20 124-136-1 ç°  sign \x7C21 13-45-1 ç°¡ sign \x7C23 12345-146-2 ç°£ sign \x7C26 2345-1245 ç°¦ sign \x7C27 2456-56-3 ç°§ sign \x7C28 234-234-1 ç°¨ sign \x7C2A 14-345 ç°ª sign \x7C2B 234-13456 ç°« sign \x7C2D 234-146-2 ç°­ sign \x7C30 12346-346-3 ç°° sign \x7C33 13-1345-1 ç°³ sign \x7C37 234-235-3 ç°· sign \x7C38 1234-135-4 ç°¸ sign \x7C39 2345-56 ç°¹ sign \x7C3B 12345-135 ç°» sign \x7C3D 1346-235 ç°½ sign \x7C3E 123-235-3 ç°¾ sign \x7C3F 1234-1236-2 ç°¿ sign \x7C40 14-16-2 ç±€ sign \x7C43 123-345-3 籃 sign \x7C4A 23456-1235 籊 sign \x7C4C 1346-16-3 籌 sign \x7C4D 14-1235-3 ç± sign \x7C50 23456-1245-3 ç± sign \x7C53 124-45 籓 sign \x7C54 234-16-1 ç±” sign \x7C5B 14-256 sign \x7C5C 23456-12456-5 sign \x7C5D 256-356-3 sign \x7C5F 123-346-2 籟 sign \x7C60 123-236-3 ç±  sign \x7C63 13-45-1 ç±£ sign \x7C64 1346-235 籤 sign \x7C65 245-246-3 ç±¥ sign \x7C67 1235-245-3 ç±§ sign \x7C69 1234-256 籩 sign \x7C6A 2345-23-2 籪 sign \x7C6C 123-125-3 籬 sign \x7C6E 123-135-3 ç±® sign \x7C6F 245-356-3 籯 sign \x7C72 1456-2 ç±² sign \x7C73 134-146-6 ç±³ sign \x7C75 2345-135 ç±µ sign \x7C78 234-456-4 籸 sign \x7C79 1345-245-6 ç±¹ sign \x7C7A 125-35-3 籺 sign \x7C7D 14-24-1 ç±½ sign \x7C89 124-1246-1 粉 sign \x7C91 1234-12 粑 sign \x7C92 1345-26 ç²’ sign \x7C94 13-245-4 ç²” sign \x7C95 12346-13-5 sign \x7C97 1346-1236 ç²— sign \x7C98 1345-235 粘 sign \x7C9E 234-146 粞 sign \x7C9F 234-12345 粟 sign \x7CA2 14-24 ç²¢ sign \x7CA5 14-12345 ç²¥ sign \x7CA7 14-56 sign \x7CAE 123-25-3 sign \x7CB1 123-25-3 ç²± sign \x7CB2 1346-45-4 ç²² sign \x7CB3 13-1245 ç²³ sign \x7CB5 12356-3 ç²µ sign \x7CB9 234-245-2 ç²¹ sign \x7CBA 1234-146-2 粺 sign \x7CBB 14-25 ç²» sign \x7CBC 123-234-3 ç²¼ sign \x7CBD 14-236-1 ç²½ sign \x7CBE 14-356 ç²¾ sign \x7CBF 12345-135-1 粿 sign \x7CC5 1345-16-1 ç³… sign \x7CC8 234-245-1 糈 sign \x7CC9 14-236-4 sign \x7CCA 136-3 糊 sign \x7CCC 14-345 糌 sign \x7CCD 1346-24-3 ç³ sign \x7CCE 56-123-125-3-134-146-6 sign \x7CD2 1234-125-2 ç³’ sign \x7CD5 13-1236 糕 sign \x7CD6 23456-56-3 ç³– sign \x7CD7 1346-16-4 ç³— sign \x7CD9 1346-1236-4 ç³™ sign \x7CDC 134-125-3 糜 sign \x7CDD 234-345-1 ç³ sign \x7CDE 124-1246-4 糞 sign \x7CDF 14-1236 糟 sign \x7CE0 125-56 ç³  sign \x7CE2 134-1236-3 ç³¢ sign \x7CE7 123-25-3 ç³§ sign \x7CE8 13-25-2 糨 sign \x7CEA 1234-12456 糪 sign \x7CEF 1345-135-2 糯 sign \x7CF0 23456-23-3 ç³° sign \x7CF1 23456-3 ç³± sign \x7CF2 123-146-2 ç³² sign \x7CF4 2345-2456-3 ç³´ sign \x7CF6 23456-13456-4 sign \x7CF7 123-45-2 ç³· sign \x7CF8 134-1235-3 糸 sign \x7CFB 125-146-2 ç³» sign \x7CFE 13-16-1 ç³¾ sign \x7D00 13-125-1 ç´€ sign \x7D02 14-16-2 ç´‚ sign \x7D03 1346-234-3 ç´ƒ sign \x7D04 245-246-5 ç´„ sign \x7D05 125-236-3 ç´… sign \x7D06 1456-0 ç´† sign \x7D07 125-35-3 ç´‡ sign \x7D08 23-3 ç´ˆ sign \x7D09 245-1246-2 ç´‰ sign \x7D0A 134-1246-2 ç´Š sign \x7D0B 134-1246-3 ç´‹ sign \x7D0D 1345-1234-3 ç´ sign \x7D10 1345-16-1 ç´ sign \x7D11 124-16-1 ç´‘ sign \x7D13 234-1456 ç´“ sign \x7D14 234-234-3 ç´” sign \x7D15 12346-125 ç´• sign \x7D16 14-1246-4 ç´– sign \x7D17 234-12 ç´— sign \x7D18 2456-1245-3 ç´˜ sign \x7D19 14-24-1 ç´™ sign \x7D1A 1235-26 ç´š sign \x7D1B 124-1246 ç´› sign \x7D1C 2456-1246-3 ç´œ sign \x7D1D 245-456-2 ç´ sign \x7D1E 2345-456-4 ç´ž sign \x7D1F 1235-456 ç´Ÿ sign \x7D20 234-1236-4 ç´  sign \x7D21 124-56-1 ç´¡ sign \x7D22 234-12456-5 ç´¢ sign \x7D29 2345-23456-3 ç´© sign \x7D2B 14-24-1 ç´« sign \x7D2C 1346-16 ç´¬ sign \x7D2E 14-2345-5 ç´® sign \x7D2F 123-245-2 ç´¯ sign \x7D30 234-146-4 ç´° sign \x7D31 124-35 ç´± sign \x7D32 234-23456-5 ç´² sign \x7D33 234-1246 ç´³ sign \x7D35 1346-1456-6 ç´µ sign \x7D39 234-13456-2 ç´¹ sign \x7D3A 13-456-4 ç´º sign \x7D3C 124-35 ç´¼ sign \x7D3D 23456-135-3 ç´½ sign \x7D3E 1346-1246-1 ç´¾ sign \x7D3F 2345-126-2 ç´¿ sign \x7D40 14-12356-5 çµ€ sign \x7D41 234-24 çµ sign \x7D42 14-236 終 sign \x7D43 256-3 絃 sign \x7D44 14-1236-1 組 sign \x7D45 12345-356-1 çµ… sign \x7D46 1234-2346-2 絆 sign \x7D47 1235-245-3 絇 sign \x7D4E 125-56-3 絎 sign \x7D4F 234-23456-5 çµ sign \x7D50 13-23456-5 çµ sign \x7D53 12345-12-4 絓 sign \x7D55 14-12356-3 絕 sign \x7D56 12456-56-4 çµ– sign \x7D5B 23456-1236 çµ› sign \x7D5C 13-23456-5 絜 sign \x7D5D 124-136-4 sign \x7D5E 13-34-1 絞 sign \x7D61 123-12456-5 絡 sign \x7D62 125-23-4 çµ¢ sign \x7D63 134-14 çµ£ sign \x7D66 1235-26 給 sign \x7D68 245-236-3 絨 sign \x7D6A 245-1246 絪 sign \x7D6E 234-245-6 çµ® sign \x7D70 2345-23456-3 çµ° sign \x7D71 23456-236-1 çµ± sign \x7D72 234-24 çµ² sign \x7D73 13-56-4 çµ³ sign \x7D79 13-23-4 çµ¹ sign \x7D7A 1346-24 絺 sign \x7D7B 134-1246-2 çµ» sign \x7D7F 1235-16-3 絿 sign \x7D80 234-356 ç¶€ sign \x7D81 1234-56-1 ç¶ sign \x7D83 234-13456 綃 sign \x7D85 1346-235 ç¶… sign \x7D86 13-1245-1 綆 sign \x7D88 23456-146-3 綈 sign \x7D89 234-16-4 綉 sign \x7D8C 12345-1235 ç¶Œ sign \x7D8D 124-35 ç¶ sign \x7D8F 234-245 ç¶ sign \x7D91 12456-1246-1 ç¶‘ sign \x7D93 13-356 ç¶“ sign \x7D96 256-3 ç¶– sign \x7D9C 14-236 ç¶œ sign \x7D9D 234-456 ç¶ sign \x7D9E 2345-135-1 ç¶ž sign \x7DA0 123-12345-3 ç¶  sign \x7DA2 1346-16-3 ç¶¢ sign \x7DA3 125-23-4 ç¶£ sign \x7DA6 1235-125-3 綦 sign \x7DA9 1234-13456-1 ç¶© sign \x7DAA 234-256-4 綪 sign \x7DAB 234-256-4 ç¶« sign \x7DAC 234-16-2 綬 sign \x7DAD 2456-146-3 ç¶­ sign \x7DAE 125-356-4 ç¶® sign \x7DAF 23456-1236-3 綯 sign \x7DB0 2456-45-1 ç¶° sign \x7DB1 13-56 ç¶± sign \x7DB2 134-56-6 ç¶² sign \x7DB4 14-245-2 ç¶´ sign \x7DB5 1346-126-1 ç¶µ sign \x7DB7 1346-245-4 ç¶· sign \x7DB8 123-234-3 綸 sign \x7DB9 123-16-6 ç¶¹ sign \x7DBA 24-1 綺 sign \x7DBB 14-45-2 ç¶» sign \x7DBD 1346-246-5 ç¶½ sign \x7DBE 123-356-3 ç¶¾ sign \x7DBF 134-256-3 ç¶¿ sign \x7DC1 14-23456-3 ç· sign \x7DC4 12345-1246-1 ç·„ sign \x7DC5 14-16 ç·… sign \x7DC7 14-24 ç·‡ sign \x7DC9 123-25-6 ç·‰ sign \x7DCA 13-1246-1 ç·Š sign \x7DCB 124-125 ç·‹ sign \x7DCC 245-245-6 ç·Œ sign \x7DCE 2456-1235-3 ç·Ž sign \x7DD2 234-245-6 ç·’ sign \x7DD7 234-25 ç·— sign \x7DD8 13-345 ç·˜ sign \x7DD9 1235-13 ç·™ sign \x7DDA 234-256-4 ç·š sign \x7DDD 1346-26 ç· sign \x7DDE 2345-23-2 ç·ž sign \x7DE0 23456-146-4 ç·  sign \x7DE1 134-1246-3 ç·¡ sign \x7DE3 23-3 ç·£ sign \x7DE6 234-24 ç·¦ sign \x7DE7 1346-16 ç·§ sign \x7DE8 12346-256 ç·¨ sign \x7DE9 2346-2 ç·© sign \x7DEC 134-256-6 ç·¬ sign \x7DEF 2456-146-6 ç·¯ sign \x7DF0 234-245 ç·° sign \x7DF1 13-16 ç·± sign \x7DF2 134-13456-6 ç·² sign \x7DF4 123-256-2 ç·´ sign \x7DF6 1234-256 ç·¶ sign \x7DF9 23456-146-3 ç·¹ sign \x7DFA 2456-12 ç·º sign \x7DFB 14-24-4 ç·» sign \x7E03 14-13-3 sign \x7E05 125-34 sign \x7E08 245-356-3 縈 sign \x7E09 14-234-4 縉 sign \x7E0A 146-4 縊 sign \x7E0B 14-245-2 縋 sign \x7E0D 1234-56 ç¸ sign \x7E0E 12345-35 縎 sign \x7E10 14-16-4 ç¸ sign \x7E11 13-235 縑 sign \x7E15 2456-1246-4 縕 sign \x7E17 1346-245 縗 sign \x7E1A 23456-1236 縚 sign \x7E1B 1234-12456-5 縛 sign \x7E1D 1346-1246-1 ç¸ sign \x7E1E 13-1236-1 縞 sign \x7E1F 245-12345-3 縟 sign \x7E20 125-12345-3 縠 sign \x7E23 23-2 縣 sign \x7E27 23456-1236 sign \x7E29 1346-126-4 縩 sign \x7E2A 1234-35 縪 sign \x7E2B 124-236-3 縫 sign \x7E2D 123-125-3 縭 sign \x7E2E 234-12345 縮 sign \x7E2F 245-1246-1 縯 sign \x7E30 234-24-1 縰 sign \x7E31 14-236-4 縱 sign \x7E32 123-245-3 縲 sign \x7E33 14-23-4 縳 sign \x7E34 125-256 縴 sign \x7E35 134-45-2 縵 sign \x7E36 14-26 縶 sign \x7E37 123-16-6 縷 sign \x7E39 12346-13456 縹 sign \x7E3B 134-125-3 縻 sign \x7E3D 14-236-1 總 sign \x7E3E 14-1235 績 sign \x7E3F 234-345 縿 sign \x7E41 124-45-3 ç¹ sign \x7E42 123-1346-3 繂 sign \x7E43 1234-1245 繃 sign \x7E44 24-0 繄 sign \x7E45 234-1236 ç¹… sign \x7E46 134-16-3 繆 sign \x7E47 245-16-3 繇 sign \x7E48 1235-25-6 繈 sign \x7E50 234-245-2 ç¹ sign \x7E51 125-13456 繑 sign \x7E52 14-1245 ç¹’ sign \x7E53 1346-12356-5 繓 sign \x7E54 14-1235 ç¹” sign \x7E55 234-256-2 繕 sign \x7E56 234-45-4 ç¹– sign \x7E58 2456-35-3 繘 sign \x7E59 124-45 ç¹™ sign \x7E5A 123-13456-3 繚 sign \x7E5E 13456-1 繞 sign \x7E61 234-16-4 繡 sign \x7E62 1235-1256-1 ç¹¢ sign \x7E68 2345-2345-3 繨 sign \x7E69 234-356-3 繩 sign \x7E6A 1235-1256-1 繪 sign \x7E6B 125-146-2 繫 sign \x7E6D 13-45-1 ç¹­ sign \x7E6E 13-14 sign \x7E6F 2456-45-2 繯 sign \x7E70 14-1236-1 ç¹° sign \x7E72 125-346-6 ç¹² sign \x7E73 13-13456-1 ç¹³ sign \x7E75 14-256-2 ç¹µ sign \x7E76 245-1235 ç¹¶ sign \x7E78 234-245-2 繸 sign \x7E79 245-1235-3 ç¹¹ sign \x7E7B 234-245 ç¹» sign \x7E7C 13-146-4 ç¹¼ sign \x7E7D 1234-1246 ç¹½ sign \x7E7E 125-256-1 ç¹¾ sign \x7E81 124-1246 çº sign \x7E82 14-23-1 纂 sign \x7E86 134-46-3 纆 sign \x7E87 123-245-2 纇 sign \x7E88 1235-23456-5 纈 sign \x7E8A 1235-56-4 纊 sign \x7E8C 14-12345-3 續 sign \x7E8D 123-245-3 çº sign \x7E8F 1346-256-3 çº sign \x7E91 123-1236-3 纑 sign \x7E93 245-356 纓 sign \x7E94 1346-126-3 纔 sign \x7E96 1346-235 纖 sign \x7E98 14-23-1 纘 sign \x7E9A 234-24-1 纚 sign \x7E9B 2345-12345-3 纛 sign \x7E9C 123-345-2 纜 sign \x7F36 124-16-1 ç¼¶ sign \x7F38 13-56 缸 sign \x7F39 124-16-1 ç¼¹ sign \x7F3A 1235-12356-5 缺 sign \x7F3D 1234-1356-5 ç¼½ sign \x7F3E 12346-356-3 ç¼¾ sign \x7F3F 125-25-4 缿 sign \x7F43 1245-0 罃 sign \x7F44 125-356-4 罄 sign \x7F45 123-12-4 ç½… sign \x7F47 14-234 sign \x7F48 23456-345-3 罈 sign \x7F4B 236-4 罋 sign \x7F4C 1245-0 罌 sign \x7F4D 123-245-3 ç½ sign \x7F4E 23456-345-3 罎 sign \x7F4F 123-1236-3 ç½ sign \x7F50 13-2346-4 ç½ sign \x7F51 134-56-6 网 sign \x7F54 134-56-6 ç½” sign \x7F55 125-1345-1 罕 sign \x7F58 124-16-3 罘 sign \x7F5D 14-15 ç½ sign \x7F5F 13-136-1 罟 sign \x7F61 13-56 罡 sign \x7F63 12345-12-4 ç½£ sign \x7F65 13-23-4 ç½¥ sign \x7F66 124-236-3 罦 sign \x7F68 235-1 罨 sign \x7F69 14-34-4 罩 sign \x7F6A 14-245-2 罪 sign \x7F6B 12345-346-1 罫 sign \x7F6C 14-12356-5 罬 sign \x7F6D 2456-1235-3 ç½­ sign \x7F6E 14-24-4 ç½® sign \x7F70 124-35-3 ç½° sign \x7F72 1346-1456-6 ç½² sign \x7F73 234-24 ç½³ sign \x7F75 134-12-2 ç½µ sign \x7F77 1234-12-2 ç½· sign \x7F79 123-125-3 ç½¹ sign \x7F7A 1346-34 罺 sign \x7F7B 2456-146-4 ç½» sign \x7F7D 13-146-4 ç½½ sign \x7F7E 14-1245 ç½¾ sign \x7F7F 1346-236 罿 sign \x7F85 123-135-3 ç¾… sign \x7F86 1234-125 羆 sign \x7F87 13-125 羇 sign \x7F88 13-125 羈 sign \x7F89 123-23-3 羉 sign \x7F8A 245-25-3 羊 sign \x7F8B 134-15 羋 sign \x7F8C 13-25 羌 sign \x7F8E 134-125-6 美 sign \x7F91 245-16-6 羑 sign \x7F94 13-1236 ç¾” sign \x7F95 245-25-2 羕 sign \x7F96 13-136-1 ç¾– sign \x7F97 13-25 sign \x7F9A 123-356-3 羚 sign \x7F9C 1346-1456-6 羜 sign \x7F9D 2345-146 ç¾ sign \x7F9E 234-16 羞 sign \x7FA1 234-256-2 羡 sign \x7FA2 245-236-1 ç¾¢ sign \x7FA4 12456-1246-3 群 sign \x7FA5 1235-25-6 ç¾¥ sign \x7FA7 234-135 ç¾§ sign \x7FA8 234-256-2 羨 sign \x7FA9 24-2 義 sign \x7FAD 1456-3 ç¾­ sign \x7FAF 1235-23456-5 羯 sign \x7FB0 23456-56 ç¾° sign \x7FB1 23-3 ç¾± sign \x7FB2 125-125 ç¾² sign \x7FB3 124-45-3 ç¾³ sign \x7FB5 124-1246-3 ç¾µ sign \x7FB6 14-256 ç¾¶ sign \x7FB7 123-235-6 ç¾· sign \x7FB8 123-245-3 羸 sign \x7FB9 13-1245 ç¾¹ sign \x7FBC 1346-45-4 ç¾¼ sign \x7FBD 1456-6 ç¾½ sign \x7FBF 1245-146-2 羿 sign \x7FC0 1346-236 ç¿€ sign \x7FC1 245-236 ç¿ sign \x7FC3 2456-1245-3 翃 sign \x7FC5 1346-24-4 ç¿… sign \x7FCA 245-1235-3 翊 sign \x7FCC 245-1235-3 翌 sign \x7FCE 123-356-3 翎 sign \x7FD2 14-1234-3 ç¿’ sign \x7FD4 1346-25-3 ç¿” sign \x7FD5 245-26 ç¿• sign \x7FDB 234-13456 ç¿› sign \x7FDF 14-13-3 翟 sign \x7FE0 1346-245-4 ç¿  sign \x7FE1 124-125-1 ç¿¡ sign \x7FE2 124-45 sign \x7FE3 234-1234-5 ç¿£ sign \x7FE5 14-1456-4 ç¿¥ sign \x7FE6 14-256-1 翦 sign \x7FE9 12346-256 ç¿© sign \x7FEB 2346-2 ç¿« sign \x7FEC 124-146 翬 sign \x7FED 125-16-3 ç¿­ sign \x7FEE 125-35-3 ç¿® sign \x7FEF 125-12456-3 翯 sign \x7FF0 125-1345-2 ç¿° sign \x7FF1 1245-1236-3 翱 sign \x7FF3 146-4 翳 sign \x7FF9 1235-13456-4 翹 sign \x7FFB 124-45 ç¿» sign \x7FFC 245-1235-3 翼 sign \x7FFD 2456-146-4 翽 sign \x7FFE 125-23 翾 sign \x7FFF 2345-1236-2 ç¿¿ sign \x8000 13456-2 耀 sign \x8001 123-1236-6 è€ sign \x8003 125-34-1 考 sign \x8004 134-1236-2 耄 sign \x8005 14-15-1 者 sign \x8006 1235-125-3 耆 sign \x8007 13-16-1 耇 sign \x800B 2345-23456-3 耋 sign \x800C 24-3 而 sign \x800D 234-12-1 è€ sign \x800E 23-6 耎 sign \x800F 24-3 è€ sign \x8010 1345-126-2 è€ sign \x8011 14-23 耑 sign \x8012 123-126-2 耒 sign \x8014 14-24-1 耔 sign \x8015 13-14 耕 sign \x8016 1346-34-4 耖 sign \x8017 125-1236-4 耗 sign \x8018 2456-1246-3 耘 sign \x8019 12346-12-3 耙 sign \x801C 14-24-2 耜 sign \x801E 13-12 耞 sign \x8021 1346-135-3 耡 sign \x8024 14-1235-3 耤 sign \x8026 1245-16-6 耦 sign \x8028 1345-16-2 耨 sign \x8029 13-56-1 耩 sign \x802A 12346-56-6 耪 sign \x802C 123-16-3 耬 sign \x8030 245-16 耰 sign \x8033 24-6 耳 sign \x8035 2345-356 耵 sign \x8036 245-15-3 耶 sign \x8037 2345-1234-5 耷 sign \x803D 2345-345 耽 sign \x803E 2456-1245-3 耾 sign \x803F 13-1245-1 耿 sign \x8043 2345-345 èƒ sign \x8046 123-356-3 è† sign \x804A 123-13456-3 èŠ sign \x8052 1235-1356-5 è’ sign \x8056 234-356-4 è– sign \x8058 12346-356-4 è˜ sign \x805A 14-245-2 èš sign \x805D 12345-1235 è sign \x805E 134-1246-3 èž sign \x8067 12456-146-3 è§ sign \x806F 123-23-3 è¯ sign \x8070 1346-236 è° sign \x8071 1245-1236-3 è± sign \x8072 234-356 è² sign \x8073 234-236-1 è³ sign \x8075 1235-1256-1 èµ sign \x8076 1345-12346-3 è¶ sign \x8077 14-1235 è· sign \x8079 1345-356-3 è¹ sign \x807D 23456-356-4 è½ sign \x807E 123-236-3 è¾ sign \x807F 2456-35-3 è¿ sign \x8084 24-2 è‚„ sign \x8085 234-12345 è‚… sign \x8086 234-24-4 肆 sign \x8087 234-13456-2 肇 sign \x8089 245-12345-3 肉 sign \x808A 245-1235 肊 sign \x808B 123-46-3 è‚‹ sign \x808C 13-125 肌 sign \x808F 1346-1236-4 è‚ sign \x8090 13-13-5 è‚ sign \x8093 124-56 è‚“ sign \x8095 1345-346-3 è‚• sign \x8096 1346-13456-4 è‚– sign \x8098 14-34-1 肘 sign \x8099 23-0 è‚™ sign \x809A 23456-1236-6 肚 sign \x809B 13-56 è‚› sign \x809C 56-0 肜 sign \x809D 13-1345 è‚ sign \x80A1 13-136-1 è‚¡ sign \x80A2 14-24 è‚¢ sign \x80A5 124-125-3 è‚¥ sign \x80A9 13-256 è‚© sign \x80AA 124-56 肪 sign \x80AB 14-234 è‚« sign \x80AD 1345-1346-3 è‚­ sign \x80AE 56-0 è‚® sign \x80AF 125-1245-1 肯 sign \x80B1 12345-1245 肱 sign \x80B2 245-12345-3 育 sign \x80B4 1245-34-3 è‚´ sign \x80B5 134-16-3 肵 sign \x80B8 245-35-3 肸 sign \x80BA 124-146-4 肺 sign \x80C2 234-1246-2 胂 sign \x80C3 2456-146-2 胃 sign \x80C4 14-16-2 胄 sign \x80C8 1234-35-3 胈 sign \x80CA 1235-245-3 胊 sign \x80CC 1234-1256-4 背 sign \x80CD 12345-12 èƒ sign \x80CE 23456-126 胎 sign \x80CF 14-24-1 èƒ sign \x80D0 124-125-1 èƒ sign \x80D1 14-24 胑 sign \x80D4 14-24-4 胔 sign \x80D5 124-136 胕 sign \x80D6 1234-2346-2 胖 sign \x80D7 14-1246 胗 sign \x80D9 14-1236-2 胙 sign \x80DA 12346-1256 胚 sign \x80DB 13-1234-5 胛 sign \x80DC 234-356-4 胜 sign \x80DD 14-24 èƒ sign \x80DE 1234-34 胞 sign \x80E0 1235-245 胠 sign \x80E1 136-3 胡 sign \x80E3 1346-24-1 胣 sign \x80E4 245-1246-2 胤 sign \x80E5 234-245 胥 sign \x80E9 123-12346-3 sign \x80ED 256-0 胭 sign \x80EF 12456-12 胯 sign \x80F0 24-3 胰 sign \x80F1 12345-56 胱 sign \x80F2 125-126-1 胲 sign \x80F3 13-13-5 胳 sign \x80F4 23456-236-3 胴 sign \x80F8 125-236 胸 sign \x80F9 24-3 胹 sign \x80FA 1345-0 胺 sign \x80FC 12346-256-3 胼 sign \x80FD 1345-1245-3 能 sign \x80FE 14-24-4 胾 sign \x8101 23456-13456-4 sign \x8102 14-24 è„‚ sign \x8105 125-12346-5 è„… sign \x8106 1346-245-4 脆 sign \x8108 134-46-3 脈 sign \x810A 14-2456-5 脊 sign \x8116 1234-1356-3 è„– sign \x8117 134-1246-6 è„— sign \x8118 13-2346-1 脘 sign \x811B 13-356-4 è„› sign \x811D 125-1245 è„ sign \x811E 1346-135-1 脞 sign \x8121 23456-356-6 è„¡ sign \x8122 134-1256-3 è„¢ sign \x8123 234-234-3 è„£ sign \x8124 234-1246-2 脤 sign \x8127 14-234 è„§ sign \x8129 234-16 è„© sign \x812B 23456-12356-5 sign \x812C 12346-34 脬 sign \x812F 12346-1236-1 脯 sign \x8130 2345-16-2 è„° sign \x8137 123-125-2 è„· sign \x8139 14-25-4 脹 sign \x813A 234-245-2 脺 sign \x813E 12346-125-3 脾 sign \x8146 23456-256-1 è…† sign \x814A 123-1234-3 è…Š sign \x814B 245-1235-3 è…‹ sign \x814C 235-0 è…Œ sign \x814D 1345-456-6 è… sign \x814E 234-1246-2 è…Ž sign \x814F 14-12356-5 è… sign \x8150 124-136-2 è… sign \x8151 124-136-1 è…‘ sign \x8152 13-245 è…’ sign \x8153 124-125-3 è…“ sign \x8154 125-56 è…” sign \x8155 2346-1 è…• sign \x8160 1346-16-4 è…  sign \x8161 123-135-3 è…¡ sign \x8164 456-0 è…¤ sign \x8165 234-356 è…¥ sign \x8166 1345-1236-6 è…¦ sign \x8167 234-1456-2 è…§ sign \x8169 1345-345-6 è…© sign \x816B 14-236-1 è…« sign \x816E 234-126 è…® sign \x816F 2345-35 è…¯ sign \x8170 13456-0 è…° sign \x8171 13-256-2 è…± sign \x8173 13-246-5 è…³ sign \x8174 1456-3 è…´ sign \x8176 2345-23-4 è…¶ sign \x8177 1234-1235 è…· sign \x8178 1346-25-3 è…¸ sign \x8179 124-12345 è…¹ sign \x817A 234-256-4 è…º sign \x817F 23456-245-1 è…¿ sign \x8180 1234-56-1 膀 sign \x8182 123-245-6 膂 sign \x8183 2456-35 膃 sign \x8186 234-1236-4 膆 sign \x8187 14-245-2 膇 sign \x8188 13-13-5 膈 sign \x818A 1234-12456-5 膊 sign \x818B 123-13456-3 膋 sign \x818D 12346-125-3 è† sign \x818F 13-1236 è† sign \x8195 1245-12456-5 膕 sign \x8197 1346-245-3 膗 sign \x8198 1234-13456 膘 sign \x8199 14-25-1 膙 sign \x819A 124-136 膚 sign \x819B 23456-56-3 膛 sign \x819C 134-12456-3 膜 sign \x819D 234-35 è† sign \x819E 14-23 膞 sign \x81A0 13-34 膠 sign \x81A3 14-35-3 膣 sign \x81A5 1346-234 膥 sign \x81A7 23456-236-3 膧 sign \x81A8 12346-14-3 膨 sign \x81A9 1345-125-2 膩 sign \x81AB 123-13456-3 膫 sign \x81AC 1346-245-4 膬 sign \x81AE 125-13456 膮 sign \x81B0 124-45-3 膰 sign \x81B1 14-1235 膱 sign \x81B2 14-13456 膲 sign \x81B3 234-256-2 膳 sign \x81B4 124-136 膴 sign \x81B5 234-245-2 膵 sign \x81B6 245-234-1 膶 sign \x81B7 125-25 膷 sign \x81BA 245-356 膺 sign \x81BB 14-256 膻 sign \x81BD 2345-345-1 膽 sign \x81BE 1235-1256-1 膾 sign \x81BF 1345-236-3 膿 sign \x81C0 23456-23-3 臀 sign \x81C2 1234-125-4 臂 sign \x81C3 245-236-1 臃 sign \x81C4 1235-2456-3 臄 sign \x81C6 245-1235 臆 sign \x81C9 123-235-6 臉 sign \x81CA 234-1236-4 臊 sign \x81CC 13-136-1 臌 sign \x81CD 1346-24-3 è‡ sign \x81CF 1234-1246-4 è‡ sign \x81D0 124-1246 è‡ sign \x81D2 136-2 臒 sign \x81D5 1234-13456 臕 sign \x81D8 123-1234-3 臘 sign \x81D9 256-0 臙 sign \x81DA 123-1236-3 臚 sign \x81DB 124-12456-5 臛 sign \x81DD 123-135-1 è‡ sign \x81DE 1235-245-3 臞 sign \x81DF 14-56-2 臟 sign \x81E0 123-23-3 臠 sign \x81E1 1345-146-3 臡 sign \x81E2 14-235 臢 sign \x81E3 234-1246-3 臣 sign \x81E4 234-1246-3 sign \x81E5 1245-135-2 臥 sign \x81E6 1245-135-2 sign \x81E7 14-56 臧 sign \x81E8 123-456-3 臨 sign \x81E9 123-456-3 sign \x81EA 14-24-2 自 sign \x81EC 23456-3 臬 sign \x81ED 1346-16-4 臭 sign \x81F2 23456-3 臲 sign \x81F3 14-24-4 至 sign \x81F4 14-24-4 致 sign \x81FA 23456-126-3 臺 sign \x81FB 14-234 臻 sign \x81FC 1235-16-6 臼 sign \x81FE 1456-3 臾 sign \x81FF 1346-1234-5 臿 sign \x8200 13456-6 舀 sign \x8201 1456-3 èˆ sign \x8202 14-236 舂 sign \x8204 234-1235 舄 sign \x8205 1235-16-6 舅 sign \x8207 1456-6 與 sign \x8208 125-356 興 sign \x8209 13-245-1 舉 sign \x820A 13-16-2 舊 sign \x820B 245-1246-2 舋 sign \x820C 234-23456-3 舌 sign \x820D 234-15-4 èˆ sign \x8210 234-346-6 èˆ sign \x8212 234-1456 舒 sign \x8214 23456-235-1 舔 sign \x8216 12346-1236-4 舖 sign \x8218 13-2346-4 sign \x821B 1346-23-1 舛 sign \x821C 234-234-4 舜 sign \x821D 125-35-3 èˆ sign \x821E 134-1236-6 舞 sign \x821F 14-16 舟 sign \x8221 234-23-3 舡 sign \x8222 234-45 舢 sign \x8226 23456-346-6 舦 sign \x8228 1234-45-1 舨 sign \x822A 125-56-3 航 sign \x822B 124-56-1 舫 sign \x822C 1234-2346 般 sign \x8232 123-356-3 舲 sign \x8233 14-12345-3 舳 sign \x8234 14-13-5 舴 sign \x8235 23456-135-3 舵 sign \x8236 1234-12456-3 舶 sign \x8237 256-3 舷 sign \x8238 13-135-1 舸 sign \x8239 234-23-3 船 sign \x8244 234-34 艄 sign \x8245 1456-3 艅 sign \x8247 23456-2356-6 艇 sign \x824B 134-14-6 艋 sign \x824E 2456-56-3 艎 sign \x8251 1234-256 艑 sign \x8255 1234-56-2 艕 sign \x8257 245-1235-3 艗 sign \x8258 234-16-1 艘 sign \x8259 1346-56 艙 sign \x825A 1346-1236-3 艚 sign \x825B 123-16-3 艛 sign \x825E 23456-13456-4 sign \x825F 23456-236-3 艟 sign \x8261 2345-56 艡 sign \x8263 123-1236-3 艣 sign \x8264 1245-146-6 艤 sign \x8266 123-345-2 艦 sign \x8268 134-236-3 艨 sign \x826B 123-1236-3 艫 sign \x826D 234-25 艭 sign \x826E 13-1246-4 艮 sign \x826F 123-25-3 良 sign \x8271 13-45 艱 sign \x8272 234-1235 色 sign \x8274 124-35 艴 sign \x8277 235-2 艷 sign \x8278 1346-1236-1 艸 sign \x827B 123-46-3 sign \x827D 1235-16-3 艽 sign \x827E 1245-346-2 艾 sign \x827F 1345-346-6 艿 sign \x8283 12346-236-3 芃 sign \x8284 23-3 芄 sign \x8285 1346-24-3 芅 sign \x828A 1346-256 芊 sign \x828B 136-2 芋 sign \x828D 1346-246-5 èŠ sign \x828E 13-236 芎 sign \x828F 2345-1236-2 èŠ sign \x8291 125-125-1 芑 sign \x8292 134-56 芒 sign \x8299 124-136-3 芙 sign \x829D 14-24 èŠ sign \x829F 234-345 芟 sign \x82A1 125-235-4 芡 sign \x82A3 124-16-3 芣 sign \x82A5 13-346-4 芥 sign \x82A7 14-245-2 芧 sign \x82A8 1235-26 芨 sign \x82A9 1235-456-3 芩 sign \x82AA 1235-125-3 芪 sign \x82AB 256-3 芫 sign \x82AC 124-1246 芬 sign \x82AD 1234-12 芭 sign \x82AE 245-245-2 芮 sign \x82AF 234-456 芯 sign \x82B0 13-125-2 芰 sign \x82B1 124-12 花 sign \x82B3 124-56 芳 sign \x82B5 1235-12356-5 芵 sign \x82B6 13-16-1 芶 sign \x82B7 14-24-1 芷 sign \x82B8 2456-1246-3 芸 sign \x82B9 1235-1246-3 芹 sign \x82BB 1346-135 芻 sign \x82BD 1245-12-3 芽 sign \x82BE 124-146-4 芾 sign \x82D1 23-1 è‹‘ sign \x82D2 235-6 è‹’ sign \x82D3 123-356-3 è‹“ sign \x82D4 23456-126-3 è‹” sign \x82D5 23456-13456-3 sign \x82D7 134-13456-3 è‹— sign \x82D9 123-26 è‹™ sign \x82DB 125-135 è‹› sign \x82DC 134-12345-3 苜 sign \x82DE 1234-34 苞 sign \x82DF 13-16-1 苟 sign \x82E0 134-1246-3 è‹  sign \x82E1 24-6 è‹¡ sign \x82E2 24-6 sign \x82E3 13-245-2 è‹£ sign \x82E4 12346-125-1 苤 sign \x82E5 245-246-3 è‹¥ sign \x82E6 124-136-1 苦 sign \x82E7 1346-1456-6 è‹§ sign \x82E8 1346-1456-6 sign \x82EB 234-235-4 è‹« sign \x82EF 1234-2346-1 苯 sign \x82F1 245-356 英 sign \x82F2 14-12-4 苲 sign \x82F4 14-245 è‹´ sign \x82F6 125-12346-3 è‹¶ sign \x82F9 12346-356-3 苹 sign \x82FB 124-136-3 è‹» sign \x82FE 1234-35-3 苾 sign \x8300 124-35 茀 sign \x8301 14-12356-5 èŒ sign \x8302 134-16-2 茂 sign \x8303 124-45-2 范 sign \x8304 1235-15-1 茄 sign \x8305 134-34-3 茅 sign \x8306 134-34-3 茆 sign \x8307 1234-35-3 茇 sign \x8308 1346-346-3 茈 sign \x8309 134-1356-3 茉 sign \x830C 1346-24-3 茌 sign \x830D 13-16-1 èŒ sign \x8316 13-13-5 茖 sign \x8317 134-356-6 茗 sign \x8318 123-146-2 sign \x831A 245-1246 sign \x831B 13-1246-4 茛 sign \x831C 234-146 茜 sign \x8320 125-1236 茠 sign \x8322 123-23456-3 茢 sign \x8326 1346-13-5 茦 sign \x8327 13-45-1 茧 sign \x8328 1346-24-3 茨 sign \x832B 134-56-3 茫 sign \x832C 1346-12-3 茬 sign \x832D 13-34 茭 sign \x832F 124-12345-3 茯 sign \x8331 14-1456 茱 sign \x8332 14-24 茲 sign \x8333 13-56 茳 sign \x8334 1256-3 茴 sign \x8335 245-1246 茵 sign \x8336 1346-12-3 茶 sign \x8337 124-35-3 茷 sign \x8338 245-236-3 茸 sign \x8339 1456-3 茹 sign \x833A 1346-236 茺 sign \x833C 23456-236-3 茼 sign \x8340 234-234 è€ sign \x8343 1346-23-3 èƒ sign \x8344 13-126 è„ sign \x8345 2345-1234-5 è… sign \x8347 125-1245-2 è‡ sign \x8348 1346-23-1 èˆ sign \x8349 1346-1236-1 è‰ sign \x834A 13-356 èŠ sign \x834D 1235-125-3 è sign \x834E 1346-24-3 sign \x834F 245-456-6 è sign \x8350 14-256-4 è sign \x8351 23456-146-3 è‘ sign \x8352 124-56 è’ sign \x8354 123-146-2 è” sign \x8373 2345-16-2 è³ sign \x8375 245-1246-1 èµ sign \x8377 125-135-3 è· sign \x8378 1234-1356-3 è¸ sign \x837B 2345-1235-3 è» sign \x837C 23456-1236-3 è¼ sign \x837D 234-146 è½ sign \x8385 123-125-2 sign \x8386 12346-1236-3 莆 sign \x8389 123-125-2 莉 sign \x838A 14-56 莊 sign \x838E 234-12 莎 sign \x8392 13-245-1 莒 sign \x8393 134-1256-3 莓 sign \x8395 125-1245-2 莕 sign \x8396 13-356-4 莖 sign \x8398 234-1246 莘 sign \x8399 12456-1246-1 莙 sign \x839B 23456-356-3 莛 sign \x839C 245-16-3 sign \x839D 1346-135-4 èŽ sign \x839E 2346-6 莞 sign \x83A0 245-16-6 莠 sign \x83A2 13-1234-5 莢 sign \x83A6 234-34 莦 sign \x83A7 256-2 莧 sign \x83A8 123-56-3 莨 sign \x83A9 124-136 莩 sign \x83AA 1245-135-3 莪 sign \x83AB 134-12456-3 莫 sign \x83B0 125-456-4 莰 sign \x83B9 245-356-3 sign \x83BD 134-56-6 莽 sign \x83BF 1346-24-4 莿 sign \x83C0 23-1 è€ sign \x83C1 1346-356 è sign \x83C2 2345-1235 è‚ sign \x83C5 13-45 è… sign \x83C6 14-16 è† sign \x83C7 13-136 è‡ sign \x83C9 123-12345-3 è‰ sign \x83CA 13-12345 èŠ sign \x83CC 12456-1246-1 èŒ sign \x83CF 125-135-3 è sign \x83D1 14-24 è‘ sign \x83D3 12345-135-1 è“ sign \x83D4 124-12345-3 è” sign \x83D5 123-234-3 è• sign \x83D6 1346-25 è– sign \x83D8 234-236 è˜ sign \x83DC 1346-126-4 èœ sign \x83DD 1234-35-3 sign \x83DF 23456-1236-4 èŸ sign \x83E0 1234-135 è  sign \x83E1 125-345-6 è¡ sign \x83E2 12346-1236-6 è¢ sign \x83E3 12346-1236-6 sign \x83E4 13-23-1 è¤ sign \x83E5 234-1235 è¥ sign \x83E6 234-1235 sign \x83E8 1346-12346-5 è¨ sign \x83E9 12346-1236-3 è© sign \x83EA 2345-56-2 èª sign \x83EF 2456-12-3 è¯ sign \x83F0 13-136 è° sign \x83F1 123-356-3 è± sign \x83F2 124-125 è² sign \x83F4 456-0 è´ sign \x83F8 256-0 è¸ sign \x83F9 14-245 è¹ sign \x83FC 23456-345-1 è¼ sign \x83FD 234-12345-3 è½ sign \x83FE 23456-235-3 è¾ sign \x8401 13-125 è sign \x8403 234-245-2 èƒ sign \x8404 23456-1236-3 è„ sign \x8406 1234-125 è† sign \x8407 1346-25-3 è‡ sign \x840A 123-126-3 èŠ sign \x840B 1346-146 è‹ sign \x840C 134-1245-3 èŒ sign \x840D 12346-356-3 è sign \x840E 2456-146-1 èŽ sign \x840F 2345-345-2 è sign \x8410 1346-146 è sign \x8411 2346-3 è‘ sign \x8429 1346-16 è© sign \x842C 134-45-2 è¬ sign \x842D 1456-6 è­ sign \x8431 125-23 è± sign \x8432 125-23 è² sign \x8434 14-46 è´ sign \x8435 2456-135 èµ sign \x8438 1456-3 è¸ sign \x843C 1245-12456-3 è¼ sign \x843D 123-12456-3 è½ sign \x8445 14-245 è‘… sign \x8446 1234-1236-1 葆 sign \x8447 245-16-3 葇 sign \x8449 12346-3 葉 sign \x844D 124-12345 è‘ sign \x844E 123-1346-3 葎 sign \x8450 12346-2346-2 è‘ sign \x8451 124-236 è‘‘ sign \x8452 125-236-3 è‘’ sign \x8456 2345-35-3 è‘– sign \x8457 14-246-3 è‘— sign \x8459 234-25 è‘™ sign \x845A 234-456-2 葚 sign \x845B 13-124-5 è‘› sign \x8460 234-456 è‘  sign \x8461 12346-1236-3 è‘¡ sign \x8463 2345-236-1 è‘£ sign \x8465 14-256-4 è‘¥ sign \x8466 2456-146-6 葦 sign \x8467 1234-1356-3 è‘§ sign \x8469 1234-12 è‘© sign \x846B 136-3 è‘« sign \x846C 14-56-4 葬 sign \x846D 13-12 è‘­ sign \x846F 245-246-3 葯 sign \x8471 1346-236 葱 sign \x8473 2456-146 葳 sign \x8474 14-456 è‘´ sign \x8475 12456-146-3 葵 sign \x8476 23456-356-3 è‘¶ sign \x8477 124-1246 è‘· sign \x8478 234-346-1 葸 sign \x8479 234-24 葹 sign \x847A 1346-26 葺 sign \x847D 13456-0 葽 sign \x8482 23456-146-4 è’‚ sign \x848D 2456-146-1 è’ sign \x8490 234-16-1 è’ sign \x8494 234-24-2 è’” sign \x8497 123-56-2 è’— sign \x8499 134-236-3 è’™ sign \x849B 1235-12356-5 è’› sign \x849C 234-23-4 è’œ sign \x849E 123-125-2 è’ž sign \x849F 13-245-1 è’Ÿ sign \x84A1 1234-56-1 è’¡ sign \x84A8 234-256-2 è’¨ sign \x84AF 12345-346-1 è’¯ sign \x84B1 12346-1236-3 è’± sign \x84B2 12346-1236-3 è’² sign \x84B4 234-12456-5 è’´ sign \x84B8 14-356 è’¸ sign \x84B9 13-235 è’¹ sign \x84BA 14-35-3 è’º sign \x84BB 245-246-3 è’» sign \x84BC 1346-56 è’¼ sign \x84BD 245-1246 sign \x84BF 125-1236 è’¿ sign \x84C0 234-23 è“€ sign \x84C1 14-234 è“ sign \x84C2 134-356-6 è“‚ sign \x84C4 1346-12345 è“„ sign \x84C6 14-2456-3 蓆 sign \x84C7 12345-35 蓇 sign \x84C9 245-236-3 蓉 sign \x84CA 245-236-1 蓊 sign \x84CB 1235-126-4 è“‹ sign \x84CD 234-24 è“ sign \x84CF 123-135-1 è“ sign \x84D0 245-12345-3 è“ sign \x84D1 234-135 è“‘ sign \x84D3 12346-1256-3 è““ sign \x84D6 1234-125 è“– sign \x84E7 2345-13456-2 è“§ sign \x84E8 234-16 蓨 sign \x84E9 234-16 sign \x84EB 14-12345-3 è“« sign \x84EC 12346-236-3 蓬 sign \x84EE 123-256-3 è“® sign \x84EF 1346-236 蓯 sign \x84F0 234-346-1 è“° sign \x84F4 234-234-3 è“´ sign \x84F7 23456-245 è“· sign \x84FA 1245-146-2 蓺 sign \x84FC 123-12345-3 蓼 sign \x84FD 1234-35 蓽 sign \x84FE 123-1236-6 蓾 sign \x84FF 234-12345 è“¿ sign \x8500 1234-1236-2 蔀 sign \x8506 123-356-3 蔆 sign \x8507 13-125-4 蔇 sign \x8509 12345-1246-1 蔉 sign \x850C 1346-12345 蔌 sign \x8511 134-23456-3 蔑 sign \x8513 134-45-2 蔓 sign \x8514 1234-13-3 è”” sign \x8515 2345-146-4 蔕 sign \x8517 14-15-4 è”— sign \x8518 234-456 sign \x851A 2456-146-4 蔚 sign \x851E 123-16 蔞 sign \x851F 1346-12345 蔟 sign \x8521 1346-126-4 蔡 sign \x8523 14-25-1 蔣 sign \x8524 134-35-3 蔤 sign \x8525 1346-236 蔥 sign \x8526 1345-13456-6 蔦 sign \x8527 2456-146-2 è”§ sign \x852B 256-0 蔫 sign \x852C 234-135 蔬 sign \x852D 245-456-4 è”­ sign \x852F 1346-1246-3 蔯 sign \x8534 134-12-3 è”´ sign \x853B 1235-16-4 è”» sign \x853D 1234-146-4 蔽 sign \x853E 123-125-3 蔾 sign \x8541 1346-456-3 è• sign \x8543 124-45-3 蕃 sign \x8546 1346-256-1 蕆 sign \x8548 1346-456-6 蕈 sign \x8549 14-13456 蕉 sign \x854A 245-245-6 蕊 sign \x854B 245-245-6 sign \x854D 1456-3 è• sign \x854E 1235-13456-3 蕎 sign \x8551 13-45 è•‘ sign \x8553 2456-1246-3 è•“ sign \x8555 245-16-3 è•• sign \x8556 1235-245-3 è•– sign \x8558 13456-3 蕘 sign \x8559 2456-146-2 è•™ sign \x855D 1346-12356-5 è• sign \x855E 14-245-4 蕞 sign \x8561 124-1246-3 è•¡ sign \x8562 12345-146-2 è•¢ sign \x8563 234-234-4 è•£ sign \x8564 245-245-3 蕤 sign \x8568 1235-12356-5 蕨 sign \x8569 2345-56-2 è•© sign \x856A 134-1236-3 蕪 sign \x856D 234-13456 è•­ sign \x856E 234-1235 è•® sign \x8577 1456-2 è•· sign \x8578 125-12-3 蕸 sign \x8579 236-4 蕹 sign \x857A 1346-26 蕺 sign \x857B 125-236-3 è•» sign \x857E 123-245-3 蕾 sign \x8580 2456-1246 è–€ sign \x8581 245-12345 è– sign \x8584 1234-12456-3 è–„ sign \x8585 125-1236 è–… sign \x8586 126-4 è–† sign \x8587 134-125-3 è–‡ sign \x8588 1256-2 è–ˆ sign \x8589 2456-146-4 è–‰ sign \x858A 13-146-4 è–Š sign \x858B 1346-24-3 è–‹ sign \x858C 125-25 è–Œ sign \x858F 24-4 è– sign \x8590 123-356-3 è– sign \x8591 13-25 è–‘ sign \x8594 1346-25-3 è–” sign \x8596 12345-135 è–– sign \x8599 23456-146-4 è–™ sign \x859B 234-23456-5 è–› sign \x859C 12346-2456 è–œ sign \x859F 123-235-6 è–Ÿ sign \x85A2 125-346-6 è–¢ sign \x85A4 125-346-2 è–¤ sign \x85A6 14-256-4 è–¦ sign \x85A7 125-34-1 è–§ sign \x85A8 12345-1246 è–¨ sign \x85A9 234-2345-5 è–© sign \x85AA 234-1246 è–ª sign \x85AF 234-1456-3 è–¯ sign \x85B0 124-1246 è–° sign \x85B3 23-6 è–³ sign \x85B6 134-346-3 è–¶ sign \x85B7 1456-3 è–· sign \x85B8 12346-13456 è–¸ sign \x85B9 23456-126-3 è–¹ sign \x85BA 1346-146-3 è–º sign \x85BD 14-1246 è–½ sign \x85BF 24-6 è–¿ sign \x85C1 13-1236-1 sign \x85C2 1346-236-3 è—‚ sign \x85C7 1456-2 è—‡ sign \x85C9 14-1235-3 è—‰ sign \x85CD 123-345-3 è— sign \x85CE 14-234-1 è—Ž sign \x85CF 1346-56-3 è— sign \x85D0 134-13456-6 è— sign \x85D1 1235-356-3 è—‘ sign \x85D5 1245-16-6 è—• sign \x85D8 123-245-3 è—˜ sign \x85DA 14-12345-3 è—š sign \x85DC 123-146-3 è—œ sign \x85DD 1245-146-2 è— sign \x85DF 123-245-6 è—Ÿ sign \x85E1 124-45-3 sign \x85E4 23456-1245-3 è—¤ sign \x85E5 245-246-3 è—¥ sign \x85E6 134-135-3 è—¦ sign \x85E7 134-135-3 sign \x85E8 1234-13456 è—¨ sign \x85E9 124-45-3 è—© sign \x85EA 234-16-1 è—ª sign \x85EB 23456-345-3 è—« sign \x85EC 23456-245-3 è—¬ sign \x85ED 1235-236-3 è—­ sign \x85F6 123-1235-3 è—¶ sign \x85F7 234-1456-3 è—· sign \x85F8 1346-1456-3 è—¸ sign \x85F9 126-1 è—¹ sign \x85FA 123-234-2 è—º sign \x85FB 14-1236-1 è—» sign \x85FE 123-346-4 è—¾ sign \x85FF 124-12456-5 è—¿ sign \x8600 23456-12456-5 sign \x8604 1235-125-3 蘄 sign \x8605 125-1245-3 蘅 sign \x8606 123-1236-3 蘆 sign \x8607 234-1236 蘇 sign \x860A 2456-1246-6 蘊 sign \x860B 12346-356-3 蘋 sign \x8611 134-135-3 蘑 sign \x8616 23456-3 sign \x8617 1234-13-5 蘗 sign \x8618 245-25-3 蘘 sign \x861A 234-256-1 蘚 sign \x861E 123-235-6 蘞 sign \x8620 1346-25-3 蘠 sign \x8621 245-356 蘡 sign \x8622 123-236-3 蘢 sign \x8624 124-12 蘤 sign \x8625 245-246-3 蘥 sign \x8626 123-356-3 蘦 sign \x8627 1235-245-3 蘧 sign \x862D 123-45-3 蘭 sign \x862E 13-146-4 蘮 sign \x8632 123-245-3 蘲 sign \x8635 14-1235 蘵 sign \x8638 14-345-4 蘸 sign \x8639 2456-346-3 蘹 sign \x863A 123-125-3 蘺 sign \x863C 134-125-3 蘼 sign \x863E 2456-346-2 蘾 sign \x863F 123-135-3 蘿 sign \x8640 14-146 虀 sign \x8646 123-245-3 虆 sign \x8647 125-23-1 虇 sign \x864B 134-2346-3 虋 sign \x864C 1234-23456-5 虌 sign \x864D 124-136 è™ sign \x864E 124-136-1 虎 sign \x8650 245-246-3 è™ sign \x8652 234-24 è™’ sign \x8653 125-34 虓 sign \x8654 1235-256-3 è™” sign \x8655 1346-1456-4 處 sign \x8656 124-136 è™– sign \x8659 124-12345-3 è™™ sign \x865B 125-245 è™› sign \x865C 123-1236-6 虜 sign \x865E 1456-3 虞 sign \x865F 125-1236-2 號 sign \x8662 12345-1235 虢 sign \x8663 1234-1236-2 虣 sign \x8667 12456-146 è™§ sign \x8669 12345-1235 虩 sign \x866B 1346-236-3 虫 sign \x866E 13-125-1 è™® sign \x866F 1235-16-3 虯 sign \x8671 234-35 è™± sign \x8679 125-236-3 虹 sign \x867A 2456-146-1 虺 sign \x867B 134-56-3 è™» sign \x867C 13-35 虼 sign \x868A 134-1246 蚊 sign \x868B 245-245-2 èš‹ sign \x868C 12346-56-6 蚌 sign \x868D 12346-125-3 èš sign \x8693 245-1246-6 èš“ sign \x8695 1346-345-3 èš• sign \x869C 1245-12-3 èšœ sign \x869D 125-1236-3 èš sign \x86A1 124-1246-3 èš¡ sign \x86A3 13-236 蚣 sign \x86A4 14-1236-1 蚤 sign \x86A7 13-346-4 èš§ sign \x86A8 124-136-3 蚨 sign \x86A9 1346-24 èš© sign \x86AA 2345-16-1 蚪 sign \x86AF 245-16 蚯 sign \x86B0 245-16-3 èš° sign \x86B1 14-12-4 èš± sign \x86B3 1346-24-3 èš³ sign \x86B4 245-16-4 èš´ sign \x86B5 125-135-1 èšµ sign \x86B6 125-456 èš¶ sign \x86B7 13-245-2 èš· sign \x86BA 235-3 蚺 sign \x86BB 14-2345-5 èš» sign \x86BF 256-3 èš¿ sign \x86C0 14-1456-4 蛀 sign \x86C4 13-136 蛄 sign \x86C6 14-245 蛆 sign \x86C7 234-15-3 蛇 sign \x86C9 123-356-3 蛉 sign \x86CB 2345-45-2 蛋 sign \x86CC 13-136-1 蛌 sign \x86D0 1235-12345 è› sign \x86D1 134-16-3 蛑 sign \x86D4 1256-3 è›” sign \x86D8 245-25-3 蛘 sign \x86D9 2456-12 è›™ sign \x86DA 123-23456-3 蛚 sign \x86DB 14-1456 è›› sign \x86DC 24-0 蛜 sign \x86DE 1235-1356-5 蛞 sign \x86DF 13-34 蛟 sign \x86E1 1235-236-3 sign \x86E4 13-26-5 蛤 sign \x86E5 125-12 sign \x86E9 1235-236-3 蛩 sign \x86ED 14-35-3 è›­ sign \x86F8 234-34 蛸 sign \x86F9 245-236-1 蛹 sign \x86FA 13-1234-5 蛺 sign \x86FB 23456-245-4 è›» sign \x86FE 1245-135-3 蛾 sign \x8700 234-12345-3 蜀 sign \x8702 124-236 蜂 sign \x8703 234-1246-6 蜃 sign \x8706 125-256-1 蜆 sign \x8707 14-23456-5 蜇 sign \x8708 1245-3 蜈 sign \x8709 124-16-3 蜉 sign \x870A 123-125-3 蜊 sign \x870B 123-56-3 蜋 sign \x870D 1346-1456-3 èœ sign \x870E 23-0 蜎 sign \x8711 2345-45-2 蜑 sign \x8712 256-3 蜒 sign \x8713 23456-356-3 蜓 sign \x8718 14-24 蜘 sign \x871A 124-125 蜚 sign \x871C 134-35-3 蜜 sign \x871E 1235-125-3 蜞 sign \x8721 14-12-4 蜡 sign \x8722 134-14-6 蜢 sign \x8723 13-25 蜣 sign \x8725 234-1235 蜥 sign \x8728 2345-12346-3 蜨 sign \x8729 23456-13456-3 sign \x872E 2456-1235-3 蜮 sign \x8730 124-125-3 蜰 sign \x8731 12346-125-3 蜱 sign \x8734 245-1235-3 蜴 sign \x8737 13-23-1 蜷 sign \x873A 1245-146-3 蜺 sign \x873B 1346-356 蜻 sign \x873E 12345-135-1 蜾 sign \x873F 23-1 蜿 sign \x8740 2345-236-4 è€ sign \x8742 1234-45-1 è‚ sign \x8743 2345-146-4 èƒ sign \x874C 124-135 èŒ sign \x874D 14-1235 è sign \x874E 1235-23456-5 èŽ sign \x8751 234-245 è‘ sign \x8753 1456-3 è“ sign \x8754 13-346 è” sign \x8755 234-1235-3 è• sign \x8757 2456-56-3 è— sign \x8758 256-1 è˜ sign \x8759 12346-256 è™ sign \x875B 2456-146 è› sign \x875D 23-3 è sign \x875F 2456-146-2 èŸ sign \x8760 124-12345 è  sign \x8761 1456-3 è¡ sign \x8763 245-16-3 è£ sign \x8764 245-16-3 è¤ sign \x8765 134-34-3 è¥ sign \x8766 125-12 è¦ sign \x8768 234-35 è¨ sign \x876E 124-12345 è® sign \x876F 23-3 è¯ sign \x8774 136-3 è´ sign \x8776 2345-12346-3 è¶ sign \x8778 2456-135 è¸ sign \x877B 1345-345-3 è» sign \x8782 123-56-3 èž‚ sign \x8783 12346-56-3 螃 sign \x8784 234-24 èž„ sign \x8785 234-1235 èž… sign \x8786 14-24 螆 sign \x8787 125-146-3 螇 sign \x8788 23-3 螈 sign \x8789 245-236 螉 sign \x878D 245-236-3 èž sign \x8793 1346-234-3 èž“ sign \x8796 123-1234-3 sign \x8797 23456-56-3 èž— sign \x8798 1245-146-6 螘 sign \x879E 134-12-6 èžž sign \x879F 134-12-3 螟 sign \x87A2 245-356-3 螢 sign \x87AB 234-1235 èž« sign \x87AC 1346-1236-3 螬 sign \x87AD 1346-24 èž­ sign \x87AE 2345-146-4 èž® sign \x87AF 1245-1236-3 螯 sign \x87B3 23456-56-3 èž³ sign \x87B5 12346-13456 èžµ sign \x87BA 123-135-1 螺 sign \x87BB 123-16-3 èž» sign \x87BD 14-236 èž½ sign \x87BE 245-1246-6 èž¾ sign \x87BF 14-25 èž¿ sign \x87C0 234-1346 蟀 sign \x87C4 14-1235-3 蟄 sign \x87C6 134-1236 蟆 sign \x87C8 12345-12456-5 sign \x87CA 134-1236-3 蟊 sign \x87CB 234-1235 蟋 sign \x87CE 134-2346-6 蟎 sign \x87D1 14-25 蟑 sign \x87D2 134-56-6 蟒 sign \x87DB 12346-56-3 蟛 sign \x87DC 13-13456-1 蟜 sign \x87E0 12346-2346-3 蟠 sign \x87E1 12346-2346-3 sign \x87E2 125-125-1 蟢 sign \x87E3 13-125 蟣 sign \x87E4 13-125 sign \x87E5 2456-56-3 蟥 sign \x87E6 2456-56-3 sign \x87E7 123-1236-3 蟧 sign \x87E8 123-1236-3 sign \x87EA 2456-146-2 蟪 sign \x87EB 23456-345-3 蟫 sign \x87EC 234-235-3 蟬 sign \x87EF 13456-3 蟯 sign \x87F2 1346-236-3 蟲 sign \x87F4 234-24 蟴 sign \x87F6 1346-356 蟶 sign \x87F7 2345-56 蟷 sign \x87F9 125-346-6 蟹 sign \x87FA 234-256-2 蟺 sign \x87FB 1245-146-6 蟻 sign \x87FC 13-356-1 蟼 sign \x87FE 234-235-3 蟾 sign \x8801 125-25-4 è  sign \x8803 123-135-1 è ƒ sign \x8804 1235-456-3 è „ sign \x8805 245-356-3 è … sign \x8806 1346-346-4 è † sign \x8809 125-23 è ‰ sign \x880A 123-235-3 è Š sign \x880B 14-12345 è ‹ sign \x880C 14-13-3 è Œ sign \x880D 1235-23456-5 è  sign \x8810 1346-146-3 è  sign \x8811 2456-356-3 è ‘ sign \x8813 134-236-6 è “ sign \x8814 125-1236-3 è ” sign \x8815 1456-3 è • sign \x8816 2456-12456-3 è – sign \x8819 1234-1246 è ™ sign \x881B 134-23456-3 è › sign \x881C 124-45-2 è œ sign \x881F 123-1234-3 è Ÿ sign \x8821 123-146-6 è ¡ sign \x8822 1346-234-1 è ¢ sign \x8823 123-146-2 è £ sign \x8826 123-1236-3 è ¦ sign \x8828 234-13456 è ¨ sign \x882A 123-236-3 è ª sign \x882D 124-236 sign \x8831 13-136-1 è ± sign \x8832 13-23 è ² sign \x8835 12456-146-3 è µ sign \x8836 1346-345-3 è ¶ sign \x8837 124-12456-5 è · sign \x8838 1235-23-3 è ¸ sign \x8839 2345-1236-4 è ¹ sign \x883B 134-45-3 è » sign \x883C 124-12456-5 è ¼ sign \x883D 14-23456-3 è ½ sign \x8840 125-12356-5 è¡€ sign \x8841 124-56 è¡ sign \x8843 124-16-3 衃 sign \x8844 1345-12345-3 è¡„ sign \x8845 245-1246-2 sign \x8846 14-236-4 sign \x8848 24-2 衈 sign \x884A 134-23456-3 衊 sign \x884B 234-1235 è¡‹ sign \x884C 125-1245-3 行 sign \x884D 125-256-1 è¡ sign \x884F 23-1 sign \x8852 23-3 è¡’ sign \x8853 234-1346-3 è¡“ sign \x8855 23456-236-3 è¡• sign \x8856 125-56-2 è¡– sign \x8857 13-346 è¡— sign \x8859 1245-12-3 è¡™ sign \x885A 136-3 衚 sign \x885B 2456-146-2 è¡› sign \x885D 1346-236 è¡ sign \x885E 2456-146-2 衞 sign \x8861 125-1245-3 è¡¡ sign \x8862 1235-245-3 è¡¢ sign \x8863 24-0 è¡£ sign \x8868 1234-13456-1 表 sign \x8869 1346-12-4 è¡© sign \x886B 234-345 è¡« sign \x886D 124-136-4 è¡­ sign \x8870 234-245 è¡° sign \x8872 1345-1234-3 衲 sign \x8875 1345-1235 衵 sign \x8877 1346-236 è¡· sign \x8879 14-24-1 衹 sign \x887D 245-456-2 衽 sign \x887E 1235-456 衾 sign \x887F 1235-456 è¡¿ sign \x8881 23-3 è¢ sign \x8882 134-146-2 袂 sign \x8888 13-12 袈 sign \x888B 2345-126-2 袋 sign \x888D 12346-1236-3 è¢ sign \x8892 23456-45-1 袒 sign \x8896 14-16-2 袖 sign \x8897 1346-1246-1 袗 sign \x8899 12346-13-5 袙 sign \x889A 124-35 袚 sign \x889B 14-24-1 袛 sign \x889E 12345-1246-1 袞 sign \x88A2 12346-45-4 袢 sign \x88A4 134-16-2 袤 sign \x88AA 1235-245 袪 sign \x88AB 1234-125-2 被 sign \x88B1 124-12345-3 袱 sign \x88B2 24-3 袲 sign \x88B4 124-136-4 sign \x88B5 245-456-2 sign \x88B7 13-1234-5 袷 sign \x88BA 13-23456-5 袺 sign \x88BC 13-12456-5 袼 sign \x88BD 1456-3 袽 sign \x88BE 14-1456 袾 sign \x88C0 245-1246 裀 sign \x88C1 1346-126-3 è£ sign \x88C2 123-23456-3 裂 sign \x88C5 14-56 sign \x88C7 234-1346 裇 sign \x88C9 1235-1245-4 裉 sign \x88CA 1345-13456-6 裊 sign \x88CC 13-1234-5 裌 sign \x88CE 1346-356-3 裎 sign \x88CF 123-245-6 è£ sign \x88D2 12346-1236-3 裒 sign \x88D4 245-245-2 裔 sign \x88D5 1456-2 裕 sign \x88D8 1235-16-3 裘 sign \x88D9 12456-1246-3 裙 sign \x88DB 245-26 裛 sign \x88DC 1234-1236-1 補 sign \x88DD 14-56 è£ sign \x88DF 234-12 裟 sign \x88E1 123-245-6 裡 sign \x88E8 1234-125 裨 sign \x88E9 12346-125-3 sign \x88EF 1346-16-3 裯 sign \x88F0 14-12356-5 裰 sign \x88F1 1234-13456-1 裱 sign \x88F2 123-25-6 裲 sign \x88F3 234-25-3 裳 sign \x88F4 12346-1256-3 裴 sign \x88F8 123-135-1 裸 sign \x88F9 12345-135-1 裹 sign \x88FC 234-1235-5 裼 sign \x88FD 14-146-4 製 sign \x88FE 13-245 裾 sign \x8902 12456-12-1 褂 sign \x8907 124-12345 複 sign \x890A 12346-256-1 褊 sign \x890C 12345-1246 褌 sign \x890E 14-16-2 褎 sign \x8910 125-124-5 è¤ sign \x8912 1234-1236 褒 sign \x8913 1234-1236-1 褓 sign \x8914 124-12345 sign \x8915 1456-3 褕 sign \x8918 124-146 褘 sign \x8919 1234-1256-4 褙 sign \x891A 1346-1456-1 褚 sign \x891E 2456-1246 褞 sign \x891F 23456-1234-5 褟 sign \x8921 2345-1234-5 褡 sign \x8922 2456-346-3 褢 sign \x8925 245-12345-3 褥 sign \x8926 123-15-6 褦 sign \x8927 12345-356-1 褧 sign \x892A 23456-245-4 褪 sign \x892B 1346-24-1 褫 sign \x892D 1345-13456-6 褭 sign \x892F 14-1235-3 褯 sign \x8930 125-256 褰 sign \x8931 2456-346-3 褱 sign \x8932 124-136-4 褲 sign \x8933 123-256-3 褳 sign \x8935 123-125-3 褵 sign \x8936 14-12346-5 褶 sign \x8938 123-16 褸 sign \x893B 234-23456-5 褻 sign \x893C 234-256 褼 sign \x893D 2456-146-4 褽 sign \x893E 1234-13456-1 褾 sign \x8941 1235-25-6 è¥ sign \x8943 1234-1236 襃 sign \x8944 234-25 襄 sign \x8946 124-12345-3 襆 sign \x8949 13-45-1 襉 sign \x894C 2345-45 襌 sign \x894F 1234-1356-3 è¥ sign \x8956 1236-4 襖 sign \x895A 234-245-2 襚 sign \x895B 1345-236-3 襛 sign \x895C 14-235 襜 sign \x895D 123-235-6 è¥ sign \x895E 1234-1235 襞 sign \x895F 1235-456 襟 sign \x8960 123-56-2 襠 sign \x8962 23456-45-1 襢 sign \x8964 123-345-3 襤 sign \x8966 1456-3 襦 sign \x896A 134-35-3 襪 sign \x896C 1234-346-1 襬 sign \x896D 1235-23456-5 襭 sign \x896E 1234-12456-5 襮 sign \x896F 1346-1246-4 襯 sign \x8971 123-236-3 襱 sign \x8972 14-1234-3 襲 sign \x8973 1346-235 襳 sign \x8974 123-45-3 襴 sign \x8976 2345-15-1 襶 sign \x8979 234-24-1 襹 sign \x897B 12346-45-4 襻 sign \x897C 134-146-4 襼 sign \x897E 123-25-1 sign \x897F 234-146 西 sign \x8981 13456-4 è¦ sign \x8982 124-236-4 覂 sign \x8983 23456-345-3 覃 sign \x8986 124-12345 覆 sign \x8988 125-35-3 覈 sign \x898A 13-125 sign \x898B 13-256-4 見 sign \x898F 12456-146 è¦ sign \x8993 134-1235-3 覓 sign \x8996 234-24-2 視 sign \x8997 14-24-2 覗 sign \x8998 14-235 覘 sign \x899C 23456-13456-4 sign \x89A1 125-35-3 覡 sign \x89A6 1456-3 覦 sign \x89AA 1346-1246 親 sign \x89AC 13-125-4 覬 sign \x89AF 13-16-4 覯 sign \x89B2 13-1246-2 覲 sign \x89B6 123-135-3 覶 sign \x89B7 1346-245-4 覷 sign \x89BA 13-12456-5 覺 sign \x89BD 123-345-6 覽 sign \x89BF 2345-1235-3 覿 sign \x89C0 13-2346 è§€ sign \x89D2 13-12456-5 è§’ sign \x89D3 1235-16-3 è§“ sign \x89D4 13-1246 è§” sign \x89D5 1346-1236 è§• sign \x89D6 1235-12356-5 è§– sign \x89DA 13-136 è§š sign \x89DC 14-24 è§œ sign \x89DD 2345-146-1 è§ sign \x89E1 1235-16-3 sign \x89E3 13-346-1 è§£ sign \x89E4 125-346-2 sign \x89E5 12345-1245 è§¥ sign \x89E6 14-12345 触 sign \x89E7 14-12345 sign \x89E9 1235-16-3 è§© sign \x89EB 1346-12345 è§« sign \x89ED 13-125 è§­ sign \x89F0 14-12 è§° sign \x89F1 1234-23456 è§± sign \x89F3 125-12345-3 è§³ sign \x89F4 234-25 è§´ sign \x89F6 24-4 è§¶ sign \x89F7 125-12456-3 è§· sign \x89F8 14-12345 觸 sign \x89FA 24-3 觺 sign \x89FC 1346-45-4 è§¼ sign \x89FF 12456-146-3 è§¿ sign \x8A00 256-3 言 sign \x8A02 2345-356-4 訂 sign \x8A03 124-136-2 訃 sign \x8A04 1235-16-3 訄 sign \x8A07 12345-1245 訇 sign \x8A08 13-146-4 計 sign \x8A0A 234-234-4 訊 sign \x8A0C 125-236-4 訌 sign \x8A0E 23456-1236-1 討 sign \x8A0F 125-245 è¨ sign \x8A10 1235-23456-3 è¨ sign \x8A11 24-3 訑 sign \x8A12 245-1246-2 訒 sign \x8A13 124-1246-4 訓 sign \x8A15 234-45-4 訕 sign \x8A16 1245-35-3 訖 sign \x8A17 23456-12456-5 sign \x8A18 13-125-4 記 sign \x8A1B 1245-135-3 訛 sign \x8A1D 1245-12-2 è¨ sign \x8A1F 14-236-2 訟 sign \x8A22 245-1246 訢 sign \x8A23 1235-12356-5 訣 sign \x8A25 1345-1234-3 訥 sign \x8A27 245-16-3 訧 sign \x8A2A 124-56-1 訪 sign \x8A2C 1346-34-1 訬 sign \x8A2D 1346-23456-5 設 sign \x8A31 125-245-1 許 sign \x8A34 234-1236-4 訴 sign \x8A36 125-135 訶 sign \x8A39 14-1346 訹 sign \x8A3A 1346-1246-1 診 sign \x8A3B 14-1456-4 註 sign \x8A3C 14-356-4 証 sign \x8A3E 14-24-1 訾 sign \x8A40 14-235 è©€ sign \x8A41 13-136-1 è© sign \x8A45 123-356-3 è©… sign \x8A46 2345-146-1 詆 sign \x8A48 123-125-2 詈 sign \x8A4E 13-245-2 詎 sign \x8A4F 34-1 è© sign \x8A50 14-12-4 è© sign \x8A52 24-3 è©’ sign \x8A54 14-13456-2 è©” sign \x8A55 12346-356-3 è©• sign \x8A56 1234-125-4 è©– sign \x8A57 12345-356-1 è©— sign \x8A58 2456-35 詘 sign \x8A5B 14-135-4 è©› sign \x8A5E 1346-24-3 詞 sign \x8A60 2456-356-2 è©  sign \x8A61 125-245-1 è©¡ sign \x8A62 234-234 è©¢ sign \x8A63 1245-146-2 è©£ sign \x8A66 234-24-4 試 sign \x8A68 13-34 詨 sign \x8A69 234-24 è©© sign \x8A6B 1346-12-4 è©« sign \x8A6C 13-16-4 詬 sign \x8A6D 12345-146-1 è©­ sign \x8A6E 1346-23-3 è©® sign \x8A70 1235-23456-5 è©° sign \x8A71 2456-12-2 話 sign \x8A72 13-126 該 sign \x8A73 1346-25-3 詳 sign \x8A75 234-1246 詵 sign \x8A76 1346-16-3 è©¶ sign \x8A79 14-235 詹 sign \x8A7B 1245-13-3 è©» sign \x8A7C 124-1256 詼 sign \x8A7F 12345-12-4 è©¿ sign \x8A82 23456-13456-6 sign \x8A84 123-126-2 誄 sign \x8A85 14-1456 誅 sign \x8A86 125-56 誆 sign \x8A87 12456-12 誇 sign \x8A8C 14-24-4 誌 sign \x8A8D 245-356-2 èª sign \x8A91 1235-56-3 誑 sign \x8A92 15-0 誒 sign \x8A93 234-146-2 誓 sign \x8A95 2345-45-4 誕 sign \x8A96 1234-1256-2 誖 sign \x8A98 245-16-6 誘 sign \x8A9A 1346-13456-4 誚 sign \x8A9E 1456-6 語 sign \x8AA0 234-356-3 誠 sign \x8AA1 13-346-4 誡 sign \x8AA3 134-1236-3 誣 sign \x8AA4 1245-2 誤 sign \x8AA5 13-1236-4 誥 sign \x8AA6 14-236-2 誦 sign \x8AA8 124-1256-4 誨 sign \x8AAA 234-12356-5 說 sign \x8AB0 234-245-3 誰 sign \x8AB2 124-135-4 課 sign \x8AB6 234-245-2 誶 sign \x8AB9 124-125-1 誹 sign \x8ABB 2345-1234-3 誻 sign \x8ABC 24-3 誼 sign \x8ABF 2345-13456-2 sign \x8AC2 1346-235-1 è«‚ sign \x8AC4 14-234 è«„ sign \x8AC6 125-125 諆 sign \x8AC7 23456-345-3 談 sign \x8AC8 14-245-2 諈 sign \x8AC9 2456-146-1 諉 sign \x8ACB 1346-356-1 è«‹ sign \x8ACD 14-14-4 è« sign \x8ACF 14-16 è« sign \x8AD1 2345-246-5 è«‘ sign \x8AD2 123-25-2 è«’ sign \x8AD3 14-256-4 è«“ sign \x8AD4 1346-12345 è«” sign \x8AD5 125-13-5 è«• sign \x8AD6 123-234-2 è«– sign \x8AD7 1345-456-1 è«— sign \x8ADB 1456-3 è«› sign \x8ADC 2345-12346-3 諜 sign \x8ADD 234-245 è« sign \x8ADE 12346-256-3 諞 sign \x8ADF 234-24-2 諟 sign \x8AE0 125-23 è«  sign \x8AE1 234-24-4 è«¡ sign \x8AE2 2456-1246-2 è«¢ sign \x8AE4 1245-12456-3 諤 sign \x8AE6 2345-146-4 諦 sign \x8AE7 125-346-3 è«§ sign \x8AEB 13-45-4 è«« sign \x8AED 1456-2 è«­ sign \x8AEE 14-24 è«® sign \x8AF0 234-346-1 è«° sign \x8AF1 2456-146-6 諱 sign \x8AF2 245-1246 諲 sign \x8AF3 456-0 諳 sign \x8AF4 125-345-3 è«´ sign \x8AF5 1345-345-3 諵 sign \x8AF6 234-456-3 è«¶ sign \x8AF7 124-236-4 è«· sign \x8AF8 14-1456 諸 sign \x8AFA 256-2 諺 sign \x8AFC 125-23 諼 sign \x8AFE 1345-12456-3 諾 sign \x8B00 134-16-3 謀 sign \x8B01 23456-5 è¬ sign \x8B02 2456-146-2 謂 sign \x8B04 23456-1245-3 謄 sign \x8B05 14-16 謅 sign \x8B06 234-256-4 謆 sign \x8B07 13-256-1 謇 sign \x8B0A 124-56 謊 sign \x8B0B 2456-13-3 謋 sign \x8B0E 134-146-3 謎 sign \x8B0F 234-16-1 è¬ sign \x8B10 134-35-3 è¬ sign \x8B12 1346-25 謒 sign \x8B14 245-246-3 謔 sign \x8B16 234-12345 謖 sign \x8B17 12346-56-4 謗 sign \x8B19 125-235 謙 sign \x8B1A 234-24-4 謚 sign \x8B1B 13-56-1 講 sign \x8B1D 14-15-2 è¬ sign \x8B1F 23456-1236 sign \x8B20 13456-3 謠 sign \x8B22 136-2 sign \x8B26 125-356-4 謦 sign \x8B28 134-1236-3 謨 sign \x8B2A 234-25 謪 sign \x8B2B 14-13-3 謫 sign \x8B2C 134-16-2 謬 sign \x8B33 16-0 謳 sign \x8B37 1245-1236-3 謷 sign \x8B39 13-1246-1 謹 sign \x8B3C 124-136 謼 sign \x8B3E 134-45-2 謾 sign \x8B3F 14-16 sign \x8B41 2456-12 è­ sign \x8B45 234-26 è­… sign \x8B46 125-125 è­† sign \x8B48 2345-245-2 è­ˆ sign \x8B49 14-356-4 è­‰ sign \x8B4A 1345-34-3 è­Š sign \x8B4E 1235-12356-5 è­Ž sign \x8B4F 13-125 è­ sign \x8B52 1234-135-4 è­’ sign \x8B53 2456-146-2 è­“ sign \x8B54 14-45-2 è­” sign \x8B56 14-456-4 è­– sign \x8B58 234-1235 è­˜ sign \x8B59 1346-13456-3 è­™ sign \x8B5A 23456-345-3 è­š sign \x8B5C 12346-1236-1 è­œ sign \x8B5F 1346-1236-4 è­Ÿ sign \x8B66 13-356-1 è­¦ sign \x8B68 1345-16-1 è­¨ sign \x8B69 24-0 sign \x8B6A 126-1 è­ª sign \x8B6B 14-235 è­« sign \x8B6C 12346-125-4 è­¬ sign \x8B6D 2456-146-1 è­­ sign \x8B6F 245-1235-3 è­¯ sign \x8B70 24-6 è­° sign \x8B74 125-256-1 è­´ sign \x8B77 136-2 è­· sign \x8B78 14-16 è­¸ sign \x8B7A 245-1235-3 è­º sign \x8B7D 1456-2 è­½ sign \x8B7E 14-256-1 è­¾ sign \x8B80 2345-12345-3 讀 sign \x8B85 234-456-1 è®… sign \x8B86 1245-146-2 讆 sign \x8B8A 1234-256-4 變 sign \x8B8B 14-23456-5 讋 sign \x8B8C 256-4 讌 sign \x8B8E 1346-16-3 讎 sign \x8B92 1346-345-3 è®’ sign \x8B93 245-25-2 讓 sign \x8B94 245-1246-1 è®” sign \x8B95 123-45-3 讕 sign \x8B96 1346-345-4 è®– sign \x8B98 14-12346-5 讘 sign \x8B99 124-2346 è®™ sign \x8B9A 14-45-4 讚 sign \x8B9C 2345-56-1 讜 sign \x8B9E 256-2 讞 sign \x8B9F 2345-12345-3 讟 sign \x8C37 13-12345 è°· sign \x8C39 2456-1245-3 è°¹ sign \x8C3D 125-456-3 è°½ sign \x8C3F 1235-146 è°¿ sign \x8C41 1235-1356-5 è± sign \x8C42 123-12345-3 豂 sign \x8C46 2345-16-2 豆 sign \x8C47 13-56 豇 sign \x8C48 125-125-1 豈 sign \x8C49 234-24-2 豉 sign \x8C4C 2346-1 豌 sign \x8C4E 234-1456-2 豎 sign \x8C4F 125-256-4 è± sign \x8C50 124-236 è± sign \x8C54 235-2 è±” sign \x8C55 1346-24-1 豕 sign \x8C57 124-1256 è±— sign \x8C5A 23456-23-3 豚 sign \x8C5C 13-256 豜 sign \x8C5D 1234-12 è± sign \x8C61 14-25-2 象 sign \x8C62 2456-45-2 è±¢ sign \x8C66 1235-245-3 豦 sign \x8C68 125-125 豨 sign \x8C6A 125-1236-3 豪 sign \x8C6B 1456-2 豫 sign \x8C6C 14-1456 豬 sign \x8C6D 13-12 è±­ sign \x8C73 1234-1246 è±³ sign \x8C75 14-236 è±µ sign \x8C76 124-1246-3 è±¶ sign \x8C77 24-4 è±· sign \x8C78 14-24-2 豸 sign \x8C79 12346-34-4 è±¹ sign \x8C7A 1346-346-3 豺 sign \x8C7B 1245-1345-2 è±» sign \x8C82 2345-13456 貂 sign \x8C85 245-16 è²… sign \x8C86 2346-3 貆 sign \x8C89 123-12456-3 貉 sign \x8C8A 134-46-3 貊 sign \x8C8C 134-34-2 貌 sign \x8C8D 123-125-3 è² sign \x8C90 1456-6 è² sign \x8C92 23456-234 è²’ sign \x8C93 134-34 貓 sign \x8C94 12346-125-3 è²” sign \x8C95 125-146-3 貕 sign \x8C98 134-12456-3 貘 sign \x8C99 1235-245 è²™ sign \x8C9C 124-12456-5 貜 sign \x8C9D 1234-1256-4 è² sign \x8C9E 14-356 貞 sign \x8CA0 124-136-2 è²  sign \x8CA1 1346-126-3 財 sign \x8CA2 13-236-4 è²¢ sign \x8CA4 24-3 貤 sign \x8CA7 12346-1246-3 è²§ sign \x8CA8 124-135-4 貨 sign \x8CA9 124-45-4 販 sign \x8CAA 23456-345 貪 sign \x8CAB 13-2346-4 貫 sign \x8CAC 14-13-5 責 sign \x8CAF 1346-1456-6 貯 sign \x8CB0 234-146-4 è²° sign \x8CB2 14-24 è²² sign \x8CB3 24-2 è²³ sign \x8CB4 12345-146-4 è²´ sign \x8CB6 1234-256-1 è²¶ sign \x8CB7 134-346-6 è²· sign \x8CB8 23456-346-4 貸 sign \x8CBA 124-56-4 貺 sign \x8CBB 124-146-4 è²» sign \x8CBC 23456-12346 sign \x8CBD 24-3 è²½ sign \x8CBF 134-16-2 貿 sign \x8CC0 125-135-2 è³€ sign \x8CC1 1234-125-4 è³ sign \x8CC2 123-1236-2 賂 sign \x8CC3 245-456-2 賃 sign \x8CC4 1235-1256-1 賄 sign \x8CC5 13-126 è³… sign \x8CC7 14-24 資 sign \x8CC8 13-136-1 賈 sign \x8CCA 1346-13-3 賊 sign \x8CD1 14-1246-4 賑 sign \x8CD2 234-15 è³’ sign \x8CD3 1234-1246 賓 sign \x8CD5 1235-16-3 賕 sign \x8CD9 14-16 è³™ sign \x8CDA 123-126-2 賚 sign \x8CDC 1346-24-4 賜 sign \x8CDE 234-25-1 賞 sign \x8CE0 12346-1256-3 è³  sign \x8CE1 13-1245 賡 sign \x8CE2 256-3 è³¢ sign \x8CE3 134-346-2 è³£ sign \x8CE4 14-256-2 賤 sign \x8CE6 124-136-4 賦 sign \x8CE7 23456-345-2 è³§ sign \x8CE8 1346-236-2 賨 sign \x8CEA 14-35 質 sign \x8CEC 14-25-4 賬 sign \x8CED 2345-1236-1 è³­ sign \x8CEE 14-234-1 è³® sign \x8CF0 1346-234-1 è³° sign \x8CF4 123-346-2 è³´ sign \x8CF5 124-236-4 è³µ sign \x8CF8 23456-1245-3 賸 sign \x8CFA 14-45-2 賺 sign \x8CFB 124-136-2 è³» sign \x8CFC 1235-16-4 è³¼ sign \x8CFD 1346-126-4 è³½ sign \x8CFE 14-13-5 è³¾ sign \x8D03 14-45-4 sign \x8D04 14-24-4 è´„ sign \x8D05 14-245-2 è´… sign \x8D07 2456-1246 è´‡ sign \x8D08 14-1245-2 è´ˆ sign \x8D09 23456-345-6 è´‰ sign \x8D0A 14-45-4 è´Š sign \x8D0B 1245-45-2 è´‹ sign \x8D0D 234-256-2 è´ sign \x8D0F 245-2356-3 è´ sign \x8D10 14-234-2 è´ sign \x8D11 13-345-4 sign \x8D13 14-56 è´“ sign \x8D14 1234-125-2 è´” sign \x8D16 234-12345-3 è´– sign \x8D17 1245-45-2 è´— sign \x8D1B 13-345-4 è´› sign \x8D64 1346-2456-5 赤 sign \x8D66 234-15-4 赦 sign \x8D67 1345-45-6 èµ§ sign \x8D69 234-1235 赩 sign \x8D6B 125-13 赫 sign \x8D6C 1346-356 赬 sign \x8D6D 14-15-1 èµ­ sign \x8D6F 23456-56-3 赯 sign \x8D70 14-16-1 èµ° sign \x8D73 2345-16-1 èµ³ sign \x8D74 124-136-2 èµ´ sign \x8D76 13-1345-1 èµ¶ sign \x8D77 125-125-1 èµ· sign \x8D78 234-45-4 赸 sign \x8D81 1346-1246-4 è¶ sign \x8D84 14-245 è¶„ sign \x8D85 1346-13456 è¶… sign \x8D8A 12356-3 è¶Š sign \x8D8D 1346-245 è¶ sign \x8D8E 14-1456 è¶Ž sign \x8D91 14-24 è¶‘ sign \x8D94 123-23456-3 è¶” sign \x8D95 13-1345-1 è¶• sign \x8D96 234-135 è¶– sign \x8D99 14-13456-2 è¶™ sign \x8D9F 23456-56-4 è¶Ÿ sign \x8DA0 1346-246-5 è¶  sign \x8DA3 1346-245-4 è¶£ sign \x8DA8 1346-245 趨 sign \x8DAB 1235-13456-3 è¶« sign \x8DAC 125-13456 趬 sign \x8DAE 1346-1236-4 è¶® sign \x8DAF 23456-1235 趯 sign \x8DB2 14-45-1 è¶² sign \x8DB3 14-12345 è¶³ sign \x8DB4 12346-12 è¶´ sign \x8DB5 12346-34-4 è¶µ sign \x8DB7 13-35-3 è¶· sign \x8DB9 1235-12356-5 è¶¹ sign \x8DBA 124-136 趺 sign \x8DBC 13-256-1 è¶¼ sign \x8DBE 14-24-1 è¶¾ sign \x8DBF 23456-2345-5 è¶¿ sign \x8DC1 12346-12 è· sign \x8DC2 1235-125-3 è·‚ sign \x8DC5 23456-12456-5 sign \x8DC6 23456-126-3 è·† sign \x8DCB 1234-35-3 è·‹ sign \x8DCC 2345-23456-5 è·Œ sign \x8DCE 23456-135-3 è·Ž sign \x8DCF 13-12 è· sign \x8DD0 1346-24-1 è· sign \x8DD1 12346-34-1 è·‘ sign \x8DD5 2345-235-4 è·• sign \x8DD6 14-2456-5 è·– sign \x8DD7 124-136 è·— sign \x8DD9 14-245 è·™ sign \x8DDA 234-45 è·š sign \x8DDB 12346-135-1 è·› sign \x8DDD 1235-245-6 è· sign \x8DDF 13-1246 è·Ÿ sign \x8DE1 14-1235 è·¡ sign \x8DE3 234-256-1 è·£ sign \x8DE4 13-34 è·¤ sign \x8DE6 14-1456 è·¦ sign \x8DE8 12456-12 è·¨ sign \x8DE9 245-146-2 è·© sign \x8DEA 12345-146-2 è·ª sign \x8DEB 1235-236-3 è·« sign \x8DEC 12456-146-1 è·¬ sign \x8DEE 14-24-4 è·® sign \x8DEF 123-1236-2 è·¯ sign \x8DF2 13-1234-5 è·² sign \x8DF3 23456-13456-4 sign \x8DF4 1346-346-1 è·´ sign \x8DFA 2345-135-1 è·º sign \x8DFC 13-12345-3 è·¼ sign \x8DFD 13-125-2 è·½ sign \x8E01 1235-245 sign \x8E02 136-3 sign \x8E04 1346-24-1 sign \x8E05 1346-12356-5 踅 sign \x8E06 234-234 踆 sign \x8E09 123-56-3 踉 sign \x8E0A 245-236-1 踊 sign \x8E0E 134-16 踎 sign \x8E0F 2345-1234-3 è¸ sign \x8E10 1346-256-6 è¸ sign \x8E12 2456-135 踒 sign \x8E14 1346-246-5 踔 sign \x8E15 14-23456-3 踕 sign \x8E16 14-1235 踖 sign \x8E18 13-12345 踘 sign \x8E1D 2456-12-6 è¸ sign \x8E1E 13-245-4 踞 sign \x8E1F 1346-24-3 踟 sign \x8E21 1235-23-3 踡 sign \x8E22 23456-2456-5 踢 sign \x8E23 1234-13-3 踣 sign \x8E25 1346-12346-5 踥 sign \x8E26 13-125-1 踦 sign \x8E27 1346-12345 踧 sign \x8E29 1346-346-1 踩 sign \x8E2A 14-236 sign \x8E2B 12346-236-4 sign \x8E2D 14-14 踭 sign \x8E2E 2345-235-1 踮 sign \x8E30 1456-3 踰 sign \x8E31 2345-12456-3 踱 sign \x8E33 1346-23-1 踳 sign \x8E34 245-236-1 踴 sign \x8E35 14-236-1 踵 sign \x8E36 2345-146-2 踶 sign \x8E38 1346-456-1 踸 sign \x8E39 1346-346-1 踹 sign \x8E3D 13-245-1 踽 sign \x8E40 2345-12346-3 è¹€ sign \x8E41 12346-256 è¹ sign \x8E42 245-16-3 蹂 sign \x8E44 23456-146-3 蹄 sign \x8E45 1346-12 è¹… sign \x8E47 13-256-1 蹇 sign \x8E48 2345-1236-2 蹈 sign \x8E49 1346-135 蹉 sign \x8E4A 1235-146 蹊 sign \x8E4B 23456-2345-5 蹋 sign \x8E4C 1346-56 蹌 sign \x8E4D 14-256-1 è¹ sign \x8E4E 2345-256 蹎 sign \x8E50 14-2456-5 è¹ sign \x8E54 14-345-2 è¹” sign \x8E55 1234-35 蹕 sign \x8E59 1346-12345 è¹™ sign \x8E5A 23456-56-1 蹚 sign \x8E5D 234-346-1 è¹ sign \x8E5F 14-1235 蹟 sign \x8E60 14-1235-5 è¹  sign \x8E61 1346-25 蹡 sign \x8E62 14-13-3 è¹¢ sign \x8E63 134-2346-3 è¹£ sign \x8E64 14-236 蹤 sign \x8E66 1234-1245 蹦 sign \x8E67 14-1236 è¹§ sign \x8E69 1234-23456-3 蹩 sign \x8E6C 2345-1245-2 蹬 sign \x8E6D 234-1245-4 è¹­ sign \x8E6F 124-45-3 蹯 sign \x8E72 2345-234 è¹² sign \x8E74 1346-12345 è¹´ sign \x8E76 1235-12356-5 è¹¶ sign \x8E7A 1235-13456-1 蹺 sign \x8E7B 1235-13456-4 è¹» sign \x8E7C 12346-12456-5 sign \x8E7E 2345-1246-4 è¹¾ sign \x8E80 12345-45-4 躀 sign \x8E81 1346-1236-4 èº sign \x8E82 2345-2345-3 躂 sign \x8E84 1234-1235 躄 sign \x8E85 14-12345-3 躅 sign \x8E87 1346-1456-3 躇 sign \x8E89 2345-1246-1 躉 sign \x8E8A 1346-16-3 躊 sign \x8E8B 14-146 躋 sign \x8E8D 245-246-5 èº sign \x8E90 123-12346-3 èº sign \x8E91 14-13-3 躑 sign \x8E92 123-12456-3 躒 sign \x8E93 14-24-4 躓 sign \x8E95 1346-1456-3 躕 sign \x8E98 123-236-3 躘 sign \x8E9A 1346-256 躚 sign \x8E9D 123-45-3 èº sign \x8E9E 1346-12346-5 躞 sign \x8E9F 1345-56-6 躟 sign \x8EA0 234-23456-5 躠 sign \x8EA1 1345-12346-3 躡 sign \x8EA5 1346-23 躥 sign \x8EA6 14-23 躦 sign \x8EA9 124-12456-5 躩 sign \x8EAA 123-234-2 躪 sign \x8EAB 234-1246 身 sign \x8EAC 13-236 躬 sign \x8EB2 2345-135-1 躲 sign \x8EB6 123-135-1 sign \x8EBA 23456-56-1 躺 sign \x8EC0 1235-245 軀 sign \x8ECA 1346-15 車 sign \x8ECB 14-2345-5 軋 sign \x8ECC 12345-146-1 軌 sign \x8ECD 12345-1246 è» sign \x8ECF 12356-3 è» sign \x8ED1 2345-146-2 軑 sign \x8ED2 125-256 è»’ sign \x8ED3 124-45-3 軓 sign \x8ED4 245-1246-2 è»” sign \x8ED7 13-12345 è»— sign \x8ED8 23456-23-3 軘 sign \x8EDA 23456-346-6 軚 sign \x8EDB 13-0 è»› sign \x8EDC 1345-1234-3 軜 sign \x8EDF 23-6 軟 sign \x8EE5 1235-245-3 軥 sign \x8EE8 123-356-3 軨 sign \x8EEB 14-1246-1 軫 sign \x8EEC 124-45-2 軬 sign \x8EF2 13-136 軲 sign \x8EF6 13-0 è»¶ sign \x8EF8 14-12345-3 軸 sign \x8EF9 14-24-1 軹 sign \x8EFA 13456-3 軺 sign \x8EFB 135-0 è»» sign \x8EFC 245-35-3 軼 sign \x8EFE 234-1235 軾 sign \x8EFF 12346-356-3 軿 sign \x8F00 24-3 è¼€ sign \x8F02 13-12345 輂 sign \x8F03 13-34-4 較 sign \x8F05 123-1236-2 è¼… sign \x8F07 1346-23-3 輇 sign \x8F08 14-16 輈 sign \x8F09 14-126-4 載 sign \x8F0A 14-24-4 輊 sign \x8F0B 1346-15-3 sign \x8F12 14-12346-5 è¼’ sign \x8F13 2456-45-6 輓 sign \x8F14 124-136-2 è¼” sign \x8F15 125-356 輕 sign \x8F16 14-16 è¼– sign \x8F17 1245-146-3 è¼— sign \x8F18 123-356-3 輘 sign \x8F19 14-12346-5 sign \x8F1A 14-45-2 輚 sign \x8F1B 123-25-2 è¼› sign \x8F1C 14-24 輜 sign \x8F1D 124-146 è¼ sign \x8F1E 134-56-6 輞 sign \x8F1F 14-12356-5 輟 sign \x8F20 12345-135-1 è¼  sign \x8F25 12345-1246-1 è¼¥ sign \x8F26 123-256-6 輦 sign \x8F29 1234-1256-4 輩 sign \x8F2A 123-234-3 輪 sign \x8F2C 123-25-3 輬 sign \x8F2E 245-16-3 è¼® sign \x8F2F 1346-26 輯 sign \x8F33 1346-16-4 è¼³ sign \x8F35 13-124-5 è¼µ sign \x8F36 245-16-3 è¼¶ sign \x8F37 12345-1245 è¼· sign \x8F38 234-1456 輸 sign \x8F39 124-12345 è¼¹ sign \x8F3B 124-12345 è¼» sign \x8F3E 14-256-1 è¼¾ sign \x8F3F 1456-3 輿 sign \x8F40 2456-1246 è½€ sign \x8F42 13-12345 轂 sign \x8F44 125-35-3 轄 sign \x8F45 23-3 è½… sign \x8F46 123-12345 轆 sign \x8F47 13-34 轇 sign \x8F49 14-23-4 轉 sign \x8F4D 1346-23456-5 è½ sign \x8F4E 13-13456-1 轎 sign \x8F50 12346-12456-5 sign \x8F51 123-1236-6 轑 sign \x8F54 123-234-3 è½” sign \x8F55 13-124-5 轕 sign \x8F56 234-1235 è½– sign \x8F57 125-456-1 è½— sign \x8F58 2456-45-2 轘 sign \x8F59 1245-146-6 è½™ sign \x8F5B 2345-245-4 è½› sign \x8F5D 1456-3 è½ sign \x8F5F 12345-1245 轟 sign \x8F61 1234-125-4 轡 sign \x8F62 123-1235 è½¢ sign \x8F63 123-1235-3 è½£ sign \x8F64 123-1236-3 轤 sign \x8F9B 234-1246 è¾› sign \x8F9C 13-136 辜 sign \x8F9F 12346-1235 辟 sign \x8FA3 123-2345-3 è¾£ sign \x8FA6 1234-45-2 辦 sign \x8FA8 1234-256-2 辨 sign \x8FAD 1346-24-3 è¾­ sign \x8FAE 1234-256 è¾® sign \x8FAF 1234-256-2 辯 sign \x8FB0 234-1246-3 è¾° sign \x8FB1 245-12345-3 è¾± sign \x8FB2 1345-236-3 è¾² sign \x8FB4 1346-1246-1 è¾´ sign \x8FBF 1346-345 辿 sign \x8FC2 1456-0 è¿‚ sign \x8FC4 1245-35-3 è¿„ sign \x8FC5 234-234-4 è¿… sign \x8FC6 24-3 迆 sign \x8FCD 14-234 è¿ sign \x8FCE 245-356-3 迎 sign \x8FD1 13-1246-2 è¿‘ sign \x8FD2 125-56-3 è¿’ sign \x8FD3 1245-12-2 è¿“ sign \x8FD4 124-45-1 è¿” sign \x8FD5 1245-2 è¿• sign \x8FE2 23456-13456-3 sign \x8FE4 24-3 迤 sign \x8FE5 12345-356-1 è¿¥ sign \x8FE6 13-12 迦 sign \x8FE8 2345-126-2 迨 sign \x8FEA 2345-1235-3 迪 sign \x8FEB 1234-1235 è¿« sign \x8FED 2345-23456-3 è¿­ sign \x8FEE 14-12456-5 è¿® sign \x8FF0 234-1346-3 è¿° sign \x8FF4 1256-3 è¿´ sign \x8FF7 134-146-3 è¿· sign \x8FF8 1234-356-4 迸 sign \x8FF9 14-1235 sign \x8FFA 1345-346-6 迺 sign \x8FFB 24-3 è¿» sign \x8FFD 14-245 追 sign \x9000 23456-245-4 退 sign \x9001 234-236-4 é€ sign \x9002 234-1235 适 sign \x9003 23456-1236-3 逃 sign \x9004 12346-56-3 逄 sign \x9005 125-16-2 逅 sign \x9006 245-1235-3 逆 sign \x900B 1234-1236 逋 sign \x900D 234-13456 é€ sign \x900F 23456-16-4 é€ sign \x9010 14-12345-3 é€ sign \x9011 1235-16-3 逑 sign \x9014 23456-1236-3 途 sign \x9015 13-356-4 逕 sign \x9016 2345-1235-3 逖 sign \x9017 2345-16-2 逗 sign \x9019 14-15-6 這 sign \x901A 23456-236 通 sign \x901B 12456-14-4 逛 sign \x901D 234-146-2 é€ sign \x901E 1346-356-1 逞 sign \x901F 1346-12345 速 sign \x9020 14-1236-2 造 sign \x9021 1346-234 逡 sign \x9022 124-236-3 逢 sign \x9023 123-256-3 連 sign \x9024 234-12 逤 sign \x902D 2346-2 逭 sign \x902E 2345-146-2 逮 sign \x902F 123-12345-3 逯 sign \x9031 14-16 週 sign \x9032 14-234-4 進 sign \x9034 1346-246-5 逴 sign \x9035 12456-146-3 逵 sign \x9036 2456-146 逶 sign \x9037 23456-1235 sign \x9038 245-35-3 逸 sign \x903C 1234-1235 逼 sign \x903E 1456-2 逾 sign \x903F 2345-56-2 逿 sign \x9041 2345-234-2 é sign \x9042 234-245-2 é‚ sign \x9044 1346-23-3 é„ sign \x9047 1456-2 é‡ sign \x9049 14-356 é‰ sign \x904A 245-16-3 éŠ sign \x904B 2456-1246-2 é‹ sign \x904D 12346-256-4 é sign \x904E 12345-135-4 éŽ sign \x904F 2345-5 é sign \x9050 125-12-3 é sign \x9051 2456-56-3 é‘ sign \x9052 245-16-3 é’ sign \x9053 2345-1236-2 é“ sign \x9054 2345-2345-3 é” sign \x9055 2456-146-3 é• sign \x9058 13-16-4 é˜ sign \x9059 13456-3 é™ sign \x905B 123-16-3 é› sign \x905C 234-234-4 éœ sign \x905D 2345-1234-3 é sign \x905E 2345-146-2 éž sign \x9060 23-6 é  sign \x9062 23456-1234-5 é¢ sign \x9063 125-256-1 é£ sign \x9068 1245-1236-3 é¨ sign \x9069 234-1235 é© sign \x906D 14-1236 é­ sign \x906E 14-15 é® sign \x906F 2345-234-2 é¯ sign \x9070 2345-146-4 é° sign \x9072 1346-24-3 é² sign \x9074 123-234-3 é´ sign \x9075 14-234 éµ sign \x9076 13456-6 é¶ sign \x9077 1346-256 é· sign \x9078 234-23-1 é¸ sign \x9079 2456-35-3 é¹ sign \x907A 2456-146-3 éº sign \x907B 1245-2 é» sign \x907C 123-13456-3 é¼ sign \x907D 13-245-2 é½ sign \x907E 234-146-2 é¾ sign \x907F 1234-125-2 é¿ sign \x9080 13456-0 é‚€ sign \x9081 134-346-2 é‚ sign \x9082 125-346-2 é‚‚ sign \x9083 234-245-2 邃 sign \x9084 2456-45-3 é‚„ sign \x9085 14-256 é‚… sign \x9087 24-6 邇 sign \x9088 134-13456-6 邈 sign \x908A 1234-256 邊 sign \x908B 123-1234-3 é‚‹ sign \x908F 123-135-3 é‚ sign \x9090 123-146-6 é‚ sign \x9091 245-26 é‚‘ sign \x9095 245-236 é‚• sign \x9097 125-1345-3 é‚— sign \x9099 134-56-3 é‚™ sign \x909B 1235-236-3 é‚› sign \x90A0 1234-1246 é‚  sign \x90A1 124-56 é‚¡ sign \x90A2 245-356-3 é‚¢ sign \x90A3 1345-12-6 é‚£ sign \x90A5 23456-45-1 é‚¥ sign \x90A6 1234-56 邦 sign \x90A8 1346-23 邨 sign \x90AA 1346-15-3 邪 sign \x90AE 245-16-3 sign \x90AF 125-1345-3 邯 sign \x90B0 23456-126-3 é‚° sign \x90B1 245-16 邱 sign \x90B2 1234-23456 邲 sign \x90B3 12346-125-3 邳 sign \x90B4 1234-356-1 é‚´ sign \x90B5 234-13456-2 邵 sign \x90B6 1234-1256-4 é‚¶ sign \x90B8 2345-146-1 邸 sign \x90BB 123-234-3 sign \x90BD 12345-146 邽 sign \x90BE 14-1456 邾 sign \x90BF 234-24 é‚¿ sign \x90C1 245-12345 éƒ sign \x90C3 125-26-3 郃 sign \x90C5 14-24-2 郅 sign \x90C7 234-234 郇 sign \x90C8 125-16-2 郈 sign \x90CA 13-34 郊 sign \x90CE 123-56-3 郎 sign \x90D5 234-356-3 郕 sign \x90D7 1346-24 郗 sign \x90D8 123-245-6 郘 sign \x90DA 1245-3 郚 sign \x90DB 124-136 郛 sign \x90DC 13-1236-4 郜 sign \x90DD 1235-12456-5 éƒ sign \x90DF 13-1234-5 郟 sign \x90E1 12345-1246-2 郡 sign \x90E2 245-356-6 郢 sign \x90E4 12345-1235 郤 sign \x90E8 1234-1236-2 部 sign \x90EA 1346-146 郪 sign \x90EB 12346-125-3 郫 sign \x90ED 12345-12456-5 sign \x90EF 23456-345-3 郯 sign \x90F0 14-16 郰 sign \x90F2 123-126-3 郲 sign \x90F3 1245-146-3 郳 sign \x90F4 234-456 郴 sign \x90F5 245-16-3 郵 sign \x90F9 12345-1235 郹 sign \x90FC 24-0 郼 sign \x90FD 2345-1236 都 sign \x90FE 256-1 郾 sign \x90FF 134-125-3 郿 sign \x9100 245-246-3 é„€ sign \x9102 1245-12456-3 é„‚ sign \x9104 13-23-4 é„„ sign \x9105 13-245-1 é„… sign \x9106 2456-1246-2 鄆 sign \x9109 125-25 鄉 sign \x910B 234-16 é„‹ sign \x910F 245-12345-3 é„ sign \x9112 14-16 é„’ sign \x9114 136-0 é„” sign \x9116 2456-1246-3 é„– sign \x9117 125-1236-2 é„— sign \x9118 245-236-3 鄘 sign \x9119 12346-125-1 é„™ sign \x911A 134-12456-3 鄚 sign \x911C 124-136 鄜 sign \x911E 1245-1246-3 鄞 sign \x911F 14-23 鄟 sign \x9120 136-2 é„  sign \x9122 256-0 é„¢ sign \x9123 14-25 é„£ sign \x9126 125-245-1 鄦 sign \x9127 2345-1245-2 é„§ sign \x9129 1346-456-3 é„© sign \x912B 1346-1245-3 é„« sign \x912D 14-2356-2 é„­ sign \x912F 234-256-2 鄯 sign \x9130 123-234-3 é„° sign \x9131 12346-135-3 鄱 sign \x9132 2345-45 鄲 sign \x9133 134-14-6 鄳 sign \x9134 12346-3 é„´ sign \x9136 1235-1256-4 é„¶ sign \x9139 14-16 鄹 sign \x913A 1235-56-4 鄺 sign \x9140 256-4 é…€ sign \x9143 123-356-3 é…ƒ sign \x9145 12456-146-3 é…… sign \x9146 124-236 é…† sign \x9147 14-23-1 é…‡ sign \x9148 123-1235-3 é…ˆ sign \x9149 245-16-6 é…‰ sign \x914A 2345-356-1 é…Š sign \x914B 245-16-3 é…‹ sign \x914C 14-246-5 é…Œ sign \x914D 12346-1256-4 é… sign \x914E 14-16-2 é…Ž sign \x9150 13-1345 é… sign \x9152 14-16-1 é…’ sign \x9155 134-1236-3 é…• sign \x9156 14-456-2 é…– sign \x9157 1456-4 é…— sign \x915A 124-1246 é…š sign \x9161 23456-135-3 é…¡ sign \x9162 14-12456-3 é…¢ sign \x9163 125-456-3 é…£ sign \x9164 13-136 é…¤ sign \x9165 234-1236 é…¥ sign \x9169 134-356-6 é…© sign \x916A 123-12456-5 é…ª sign \x916C 1346-16-3 é…¬ sign \x916E 23456-236-3 é…® sign \x916F 14-24 é…¯ sign \x9172 1346-356-3 é…² sign \x9173 245-1246-1 é…³ sign \x9174 23456-1236-3 é…´ sign \x9175 125-34 é…µ sign \x9176 134-1256-3 é…¶ sign \x9177 125-12345-3 é…· sign \x9178 234-23 é…¸ sign \x9179 123-12356-3 é…¹ sign \x917A 12346-1236-3 é…º sign \x9181 123-12345-3 é† sign \x9183 235-0 醃 sign \x9184 23456-1236-3 醄 sign \x9185 12346-1256 醅 sign \x9186 14-45-1 醆 sign \x9187 234-234-3 醇 sign \x9189 14-245-4 醉 sign \x918A 14-12356-5 醊 sign \x918B 1346-1236-4 醋 sign \x918D 23456-146-3 é† sign \x9190 136-3 é† sign \x9191 234-245-1 醑 sign \x9192 234-356-1 醒 sign \x9193 23456-345-3 醓 sign \x919A 134-146-3 醚 sign \x919B 1346-23-3 醛 sign \x919C 1346-16-1 醜 sign \x919E 2456-1246-6 醞 sign \x91A1 14-12-4 醡 sign \x91A2 125-126-1 醢 sign \x91A3 23456-56-3 醣 sign \x91A5 12346-13456-6 sign \x91A8 123-125-3 醨 sign \x91A9 14-1236 sign \x91AA 123-1236-3 醪 sign \x91AB 24-0 醫 sign \x91AC 14-25-4 醬 sign \x91AD 12346-12456-5 sign \x91AE 14-13456-4 醮 sign \x91AF 125-125 醯 sign \x91B0 23456-345-3 醰 sign \x91B1 12346-1356-5 醱 sign \x91B2 1345-236-3 醲 sign \x91B3 245-1235-3 醳 sign \x91B4 123-146-6 醴 sign \x91B5 13-245-2 醵 sign \x91B7 245-1235 醷 sign \x91BA 124-1246 醺 sign \x91BC 256-4 醼 sign \x91BD 123-356-3 醽 sign \x91BE 134-125-3 醾 sign \x91C0 245-25-2 釀 sign \x91C1 245-1246-2 é‡ sign \x91C2 14-13456-4 釂 sign \x91C3 234-24 釃 sign \x91C5 235-2 釅 sign \x91C6 1346-126-1 釆 sign \x91C7 1346-126-1 采 sign \x91C9 245-16-1 釉 sign \x91CB 234-1235 釋 sign \x91CC 123-125-6 里 sign \x91CD 1346-236-3 é‡ sign \x91CE 245-15-6 野 sign \x91CF 123-25-2 é‡ sign \x91D0 123-125-3 é‡ sign \x91D1 13-456 金 sign \x91D3 13-12 釓 sign \x91D4 12356-5 釔 sign \x91D5 123-13456 釕 sign \x91D7 1346-13456 釗 sign \x91D8 2345-2356 釘 sign \x91D9 12346-12456-5 sign \x91DA 1235-16-3 釚 sign \x91DC 124-136-1 釜 sign \x91DD 14-456 é‡ sign \x91E1 124-45-3 sign \x91E2 1345-346-6 釢 sign \x91E3 2345-13456-4 釣 sign \x91E4 234-256-4 釤 sign \x91E5 234-256-4 sign \x91E6 1235-16-4 釦 sign \x91E7 1346-23-4 釧 sign \x91E8 1346-23-4 sign \x91E9 124-45-3 釩 sign \x91EC 125-1345-2 釬 sign \x91ED 13-56 釭 sign \x91F5 1346-346 釵 sign \x91F7 23456-1236-1 釷 sign \x91F9 1345-245-6 釹 sign \x91FF 1245-1246-3 釿 sign \x9200 12346-12-3 鈀 sign \x9201 124-56 éˆ sign \x9203 245-356-3 鈃 sign \x9204 2345-16-1 鈄 sign \x9205 245-246-3 鈅 sign \x9207 124-136 鈇 sign \x9208 1234-35 鈈 sign \x9209 1345-1234-3 鈉 sign \x920D 2345-234-2 éˆ sign \x920E 1245-16 鈎 sign \x9210 1235-235-3 éˆ sign \x9211 1234-45-1 鈑 sign \x9212 1235-26 鈒 sign \x9214 1346-34 鈔 sign \x9215 1345-16-1 鈕 sign \x921C 2456-1245-3 鈜 sign \x921E 12345-1246 鈞 sign \x9223 1235-126-4 鈣 sign \x9225 124-135-1 鈥 sign \x9226 23456-346-4 鈦 sign \x9227 1235-56-4 鈧 sign \x922A 1245-13-5 鈪 sign \x922E 1345-125-3 鈮 sign \x9230 234-24-1 鈰 sign \x9233 1235-135 鈳 sign \x9234 123-356-3 鈴 sign \x9237 13-136-1 鈷 sign \x9238 1234-35-3 鈸 sign \x9239 12346-125-3 鈹 sign \x923A 245-12345-3 鈺 sign \x923D 1234-1236-4 鈽 sign \x923E 245-16-1 鈾 sign \x923F 23456-256-3 鈿 sign \x9240 13-1234-5 鉀 sign \x9244 23456-23456-5 sign \x9245 13-245-2 鉅 sign \x9246 14-23-4 鉆 sign \x9248 23456-12 鉈 sign \x9249 23-6 鉉 sign \x924B 12346-34-3 鉋 sign \x924D 1234-23456 é‰ sign \x924F 1346-135-3 é‰ sign \x9251 1234-12456-3 鉑 sign \x9257 1235-235-3 鉗 sign \x925A 134-34-6 鉚 sign \x925B 23-3 鉛 sign \x925E 12356-3 鉞 sign \x9264 1245-16 鉤 sign \x9265 234-1346-3 鉥 sign \x9266 14-356 鉦 sign \x9267 134-1236-6 鉧 sign \x926C 134-12345-3 鉬 sign \x926D 2345-45-4 鉭 sign \x9276 245-356-3 鉶 sign \x9278 13-34-4 鉸 sign \x927A 24-6 鉺 sign \x927B 123-12456-5 鉻 sign \x927F 125-12 鉿 sign \x9280 1245-1246-3 銀 sign \x9283 1346-236-4 銃 sign \x9285 23456-236-3 銅 sign \x928D 14-35-3 éŠ sign \x928E 1235-236-3 銎 sign \x9291 234-256-1 銑 sign \x9293 1346-23-3 銓 sign \x9295 23456-23456-5 sign \x9296 14-1456 銖 sign \x9298 134-356-6 銘 sign \x929A 2345-13456-2 銚 sign \x929B 1346-235 銛 sign \x929C 125-345-3 銜 sign \x92A0 123-1236-6 銠 sign \x92A3 1456-3 銣 sign \x92A5 24-0 銥 sign \x92A6 245-1246 銦 sign \x92A7 12345-56 銧 sign \x92A8 1345-0 銨 sign \x92A9 2345-13456 銩 sign \x92AA 245-16-6 銪 sign \x92AB 234-1235 銫 sign \x92AC 1235-34-4 銬 sign \x92B2 125-1345-2 銲 sign \x92B3 245-245-2 銳 sign \x92B6 1235-16-3 銶 sign \x92B7 234-13456 銷 sign \x92B9 234-16-4 銹 sign \x92BB 23456-146 銻 sign \x92BC 1346-135-4 銼 sign \x92C0 2345-16-2 é‹€ sign \x92C1 123-245-6 é‹ sign \x92C3 123-56-3 鋃 sign \x92C5 234-1246 é‹… sign \x92C6 2456-1246-3 鋆 sign \x92C7 1234-1256-4 鋇 sign \x92C8 245-12345 鋈 sign \x92CA 13-12345 鋊 sign \x92CC 23456-356-6 鋌 sign \x92CD 1234-1356-3 é‹ sign \x92CF 13-1234-5 é‹ sign \x92D0 2456-1245-3 é‹ sign \x92D1 14-234-4 é‹‘ sign \x92D2 124-236 é‹’ sign \x92D5 14-24-4 é‹• sign \x92D8 1245-3 鋘 sign \x92D9 1456-6 é‹™ sign \x92DB 14-46 sign \x92DD 123-12356-5 é‹ sign \x92DF 1346-235 鋟 sign \x92E1 134-56-3 sign \x92E4 1346-135-3 鋤 sign \x92E5 1346-135-3 sign \x92E6 13-12345-3 鋦 sign \x92E7 125-256-1 é‹§ sign \x92E8 1245-135-3 鋨 sign \x92E9 134-56-3 é‹© sign \x92EA 12346-1236 鋪 sign \x92EC 12346-45-4 sign \x92EE 234-356-3 é‹® sign \x92EF 13-1236-4 鋯 sign \x92F0 123-125-6 é‹° sign \x92F1 23456-1235 鋱 sign \x92F8 13-156-4 鋸 sign \x92FC 13-56-4 鋼 sign \x9301 12345-135-1 éŒ sign \x9304 123-12345-3 錄 sign \x9307 12346-1256-3 sign \x9310 14-245 éŒ sign \x9312 12-4 錒 sign \x9314 2345-1234-3 錔 sign \x9315 12456-1246 錕 sign \x9318 1346-245-3 錘 sign \x9319 14-24 錙 sign \x931A 14-1245 錚 sign \x931B 1234-1246 錛 sign \x931F 23456-45-1 錟 sign \x9320 2345-356-2 錠 sign \x9321 1235-125-3 錡 sign \x9322 1346-256-3 錢 sign \x9326 13-456-1 錦 sign \x9327 13-2346-1 錧 sign \x9328 1345-34-3 錨 sign \x9329 1346-25 錩 sign \x932B 234-2456-5 錫 sign \x932E 13-136-4 錮 sign \x932F 1346-135-4 錯 sign \x9333 134-14-6 錳 sign \x9336 1234-13456 錶 sign \x9338 123-126-3 錸 sign \x9346 134-2346-3 é† sign \x9347 13-346 é‡ sign \x9348 245-356 éˆ sign \x9349 234-24-3 é‰ sign \x934A 123-256-2 éŠ sign \x934B 2456-135 é‹ sign \x934D 2345-1236-2 é sign \x9352 245-16-3 é’ sign \x9354 1245-12456-3 é” sign \x9358 14-1234-3 é˜ sign \x935A 234-2456-5 éš sign \x935B 2345-23-4 é› sign \x9360 2456-56-3 é  sign \x9364 1346-1234-5 é¤ sign \x9365 1235-23456-5 é¥ sign \x9367 12345-1245 é§ sign \x936A 134-16-3 éª sign \x936C 1346-13456 é¬ sign \x936D 125-16-3 é­ sign \x9370 2456-45-3 é° sign \x9371 12346-3 é± sign \x9375 13-256-2 éµ sign \x9376 234-24 é¶ sign \x937A 14-15-1 éº sign \x937C 14-456 é¼ sign \x937E 14-236 é¾ sign \x9381 245-15-3 sign \x9382 134-125-6 鎂 sign \x9389 23456-1234-5 鎉 sign \x938A 1234-56-2 鎊 sign \x938C 123-235-3 鎌 sign \x938D 234-12456-5 éŽ sign \x938F 123-16-3 éŽ sign \x9392 1345-16-2 鎒 sign \x9394 245-236-3 鎔 sign \x9396 234-135-1 鎖 sign \x9397 1346-25 鎗 sign \x9398 13-13-5 鎘 sign \x9399 234-12456-5 鎙 sign \x939A 1346-245-3 鎚 sign \x939B 1234-12456-5 鎛 sign \x93A1 14-24 鎡 sign \x93A2 136-0 鎢 sign \x93A3 245-356-3 鎣 sign \x93A6 123-16-3 鎦 sign \x93A7 125-126-1 鎧 sign \x93A9 234-2345-5 鎩 sign \x93AA 234-16-1 鎪 sign \x93AC 13-1236-1 鎬 sign \x93AE 14-1246-4 鎮 sign \x93B0 245-35-3 鎰 sign \x93B2 2345-56-1 鎲 sign \x93B3 1345-12346 鎳 sign \x93B5 13-12 鎵 sign \x93B7 134-12-6 鎷 sign \x93C3 14-12345-3 éƒ sign \x93C7 234-23-3 é‡ sign \x93C8 123-256-1 éˆ sign \x93CA 1245-1236-3 éŠ sign \x93CC 134-12456-3 éŒ sign \x93CD 123-135-3 é sign \x93D0 123-16-3 é sign \x93D1 2345-1235 é‘ sign \x93D2 234-456-4 é’ sign \x93D6 1236-0 é– sign \x93D7 125-1245 é— sign \x93D8 1346-25 é˜ sign \x93DA 1346-1235 éš sign \x93DC 23456-56-3 éœ sign \x93DD 134-45-2 é sign \x93DE 245-236-3 éž sign \x93DF 1346-45-1 éŸ sign \x93E1 13-2356-4 é¡ sign \x93E2 1234-13456 é¢ sign \x93E3 1234-13456 sign \x93E4 123-16-6 é¤ sign \x93E5 123-16-6 sign \x93E6 1346-236 é¦ sign \x93E7 1346-236 sign \x93E8 14-345-2 é¨ sign \x93E9 14-345-2 sign \x93EE 1235-56-4 é® sign \x93F5 2456-12-3 éµ sign \x93F7 12346-12456-5 sign \x93F9 1235-25-6 é¹ sign \x93FA 12346-1356-5 éº sign \x93FD 234-16-4 é½ sign \x93FE 234-256-4 é¾ sign \x9403 13456-3 éƒ sign \x940B 23456-56 é‹ sign \x940D 1235-12356-5 é sign \x940E 14-13456 éŽ sign \x940F 14-234 é sign \x9410 123-13456-3 é sign \x9412 123-1236-3 é’ sign \x9414 23456-345-3 é” sign \x9415 14-345 é• sign \x9418 14-236 é˜ sign \x9419 2345-1245-4 é™ sign \x9420 12346-1236-1 é  sign \x9427 13-45-1 é§ sign \x9428 124-146-4 é¨ sign \x942B 14-23 é« sign \x942E 123-235-3 é® sign \x9432 14-12345-3 é² sign \x9433 123-245-3 é³ sign \x9435 23456-23456-5 sign \x9436 2456-45-3 é¶ sign \x9438 2345-12456-3 é¸ sign \x943A 2345-56 éº sign \x943B 13-245-2 é» sign \x943D 2345-2345-3 é½ sign \x943F 24-4 é¿ sign \x9440 126-4 é‘€ sign \x9444 14-1456-4 é‘„ sign \x944A 2456-12456-3 鑊 sign \x944C 1234-1246 鑌 sign \x9450 245-16-3 é‘ sign \x9451 13-345-4 é‘‘ sign \x9452 13-345-4 é‘’ sign \x9455 14-35 é‘• sign \x945E 123-1234-3 鑞 sign \x9460 234-246-5 é‘  sign \x9462 123-245-2 é‘¢ sign \x9463 1234-13456 é‘£ sign \x9464 12346-34-3 鑤 sign \x946A 123-1236-3 鑪 sign \x946B 245-456 é‘« sign \x946D 123-45-3 é‘­ sign \x946E 1234-12456-3 é‘® sign \x9470 245-246-3 é‘° sign \x9471 1346-345-3 鑱 sign \x9472 234-25 鑲 sign \x9474 12456-146-3 é‘´ sign \x9475 13-2346-4 鑵 sign \x9477 1345-12346-3 é‘· sign \x947C 123-135-3 鑼 sign \x947D 14-23-4 鑽 sign \x947E 123-23-3 鑾 sign \x947F 14-12456-3 é‘¿ sign \x9481 1235-12356-5 é’ sign \x9482 23456-56-1 é’‚ sign \x9577 1346-25-3 é•· sign \x957C 2456-35 镼 sign \x9580 134-2346-3 é–€ sign \x9582 234-45 é–‚ sign \x9583 234-235-1 é–ƒ sign \x9586 235-3 é–† sign \x9588 125-1345-2 é–ˆ sign \x9589 1234-146-4 é–‰ sign \x958B 125-126 é–‹ sign \x958E 2456-1245-3 é–Ž sign \x958F 245-234-2 é– sign \x9591 125-45-3 é–‘ sign \x9592 125-45-3 é–’ sign \x9593 13-45 é–“ sign \x9594 134-1246-6 é–” sign \x9598 14-1234-3 é–˜ sign \x959F 1234-125-4 é–Ÿ sign \x95A1 125-35-3 é–¡ sign \x95A3 13-12456-5 é–£ sign \x95A4 125-26-3 é–¤ sign \x95A5 124-35-3 é–¥ sign \x95A8 12345-146 é–¨ sign \x95A9 134-1246-6 é–© sign \x95AA 124-146 é–ª sign \x95AB 12456-1246-1 é–« sign \x95AC 123-56-6 é–¬ sign \x95AD 123-245-3 é–­ sign \x95B1 12356-3 é–± sign \x95B5 123-234-2 é–µ sign \x95B6 1346-25 é–¶ sign \x95B9 235-0 é–¹ sign \x95BB 235-3 é–» sign \x95BC 256-0 é–¼ sign \x95BD 124-1246 é–½ sign \x95BE 2456-1235-3 é–¾ sign \x95BF 134-1246-3 é–¿ sign \x95C3 12456-1235 é—ƒ sign \x95C6 1234-45-1 é—† sign \x95C7 456-4 é—‡ sign \x95C8 2456-146-3 é—ˆ sign \x95C9 245-1246 é—‰ sign \x95CA 124-1356-5 é—Š sign \x95CB 1235-12356-5 é—‹ sign \x95CC 123-45-3 é—Œ sign \x95CD 234-15-3 é— sign \x95D0 23456-256-3 é— sign \x95D1 23456-3 é—‘ sign \x95D2 23456-1234-5 é—’ sign \x95D3 125-126-1 é—“ sign \x95D4 125-26-3 é—” sign \x95D5 1235-12356-5 é—• sign \x95D6 1346-56-1 é—– sign \x95DA 12456-146 é—š sign \x95DC 12345-45 é—œ sign \x95DE 125-456-4 é—ž sign \x95E0 1235-1256-1 é—  sign \x95E1 14-256-1 é—¡ sign \x95E2 12346-1235 é—¢ sign \x95E3 12346-1235 sign \x95E4 2456-45-3 é—¤ sign \x95E5 23456-2345-5 é—¥ sign \x95E6 23456-2345-5 sign \x961C 124-16-2 阜 sign \x961E 123-46-3 阞 sign \x9620 23456-45-1 阠 sign \x9621 1346-256 阡 sign \x9622 1245-35-3 阢 sign \x9623 1245-35-3 阣 sign \x9624 23456-1235 阤 sign \x9628 46-0 阨 sign \x962A 1234-45-1 阪 sign \x962C 125-14 阬 sign \x962E 23-1 阮 sign \x962F 14-24-1 阯 sign \x9631 14-356-2 阱 sign \x9632 124-56-3 防 sign \x963B 14-135-1 阻 sign \x963C 14-1236-2 阼 sign \x963D 2345-235-4 阽 sign \x963F 12-4 阿 sign \x9640 23456-135-3 陀 sign \x9642 12346-135 陂 sign \x9644 124-136-2 附 sign \x964B 123-16-2 陋 sign \x964C 134-46-3 陌 sign \x964D 13-56-4 é™ sign \x9650 125-45-2 é™ sign \x9654 13-126 é™” sign \x9658 245-356-3 陘 sign \x965B 1234-146-2 é™› sign \x965C 234-235-1 陜 sign \x965D 234-235-1 é™ sign \x965E 234-356 陞 sign \x965F 14-1235 陟 sign \x9661 2345-16-1 陡 sign \x9662 23-1 院 sign \x9663 14-1246-2 陣 sign \x9664 1346-245-3 除 sign \x966A 12346-1256-3 陪 sign \x966C 14-16 陬 sign \x9670 245-456 é™° sign \x9672 234-245-3 陲 sign \x9673 1346-1246-3 陳 sign \x9674 12346-125-3 é™´ sign \x9675 123-356-3 陵 sign \x9676 23456-1236-3 é™¶ sign \x9677 125-456-2 é™· sign \x9678 123-12345-3 陸 sign \x967D 245-25-3 陽 sign \x9683 1456-3 隃 sign \x9684 23456-146-3 éš„ sign \x9685 1456-3 éš… sign \x9686 123-236-3 隆 sign \x9688 1256-0 隈 sign \x9689 1345-12346-3 隉 sign \x968A 2345-245-2 隊 sign \x968B 1346-245-3 éš‹ sign \x968D 2456-56-3 éš sign \x968E 13-346 階 sign \x9694 13-13-5 éš” sign \x9695 2456-1246-6 éš• sign \x9697 12456-146-4 éš— sign \x9698 346-4 隘 sign \x9699 12456-1235 éš™ sign \x969B 14-146-4 éš› sign \x969C 14-25-4 éšœ sign \x96A3 123-234-3 sign \x96A4 23456-245-3 隤 sign \x96A7 234-245-2 éš§ sign \x96A8 1346-245-3 隨 sign \x96A9 245-12345 éš© sign \x96AA 125-235-1 險 sign \x96AE 14-146 éš® sign \x96B0 14-1234-3 éš° sign \x96B1 245-1246-1 éš± sign \x96B3 124-146 éš³ sign \x96B4 123-236-6 éš´ sign \x96B8 2345-146-2 隸 sign \x96B9 14-245 éš¹ sign \x96BB 14-2456-5 éš» sign \x96BC 14-234-1 éš¼ sign \x96BD 14-234-4 sign \x96C0 14-246-5 雀 sign \x96C1 1245-45-2 é› sign \x96C4 125-236-3 雄 sign \x96C5 1245-12-6 é›… sign \x96C6 14-1234-3 集 sign \x96C7 13-136-4 雇 sign \x96C8 2346-3 雈 sign \x96C9 1346-24-3 雉 sign \x96CA 13-16-4 雊 sign \x96CB 14-234-4 雋 sign \x96CC 1346-24 雌 sign \x96CD 245-236 é› sign \x96CE 14-245 雎 sign \x96D2 123-12456-5 é›’ sign \x96D4 1346-16-3 é›” sign \x96D5 2345-13456 雕 sign \x96D6 234-245 é›– sign \x96D8 2456-12456-5 雘 sign \x96D9 234-25 é›™ sign \x96DA 124-2346-1 雚 sign \x96DB 1346-135 é›› sign \x96DC 14-1234-3 雜 sign \x96DD 245-236 é› sign \x96DE 13-146 雞 sign \x96DF 12456-146 雟 sign \x96E2 123-125-3 離 sign \x96E3 1345-45-3 難 sign \x96E4 1345-45-3 sign \x96E5 14-1234-3 雥 sign \x96E6 14-1234-3 sign \x96E8 1456-6 雨 sign \x96E9 1456-3 雩 sign \x96EA 234-12356-5 雪 sign \x96EF 134-1246-3 雯 sign \x96F1 12346-56-3 é›± sign \x96F2 2456-1246-3 雲 sign \x96F6 123-356-3 é›¶ sign \x96F7 123-245-3 é›· sign \x96F9 1234-12456-3 雹 sign \x96FB 2345-256-2 é›» sign \x9700 234-245 需 sign \x9702 134-12345-3 霂 sign \x9704 234-13456 霄 sign \x9705 14-12346-5 霅 sign \x9706 23456-356-3 霆 sign \x9707 14-1246-4 震 sign \x9708 12346-1256-4 霈 sign \x9709 134-1256-3 霉 sign \x970D 124-12456-5 éœ sign \x970E 234-1234-5 霎 sign \x970F 124-125 éœ sign \x9711 14-235 霑 sign \x9713 1245-146-3 霓 sign \x9716 123-456-3 霖 sign \x971B 123-356-3 sign \x971C 234-25 霜 sign \x971D 123-356-3 éœ sign \x971E 125-12-3 霞 sign \x9722 134-13-3 霢 sign \x9723 2456-1246-6 霣 sign \x9724 123-16-2 霤 sign \x9727 134-1236-2 霧 sign \x9728 2456-146-4 霨 sign \x9729 12456-12456-5 sign \x972A 245-456-3 霪 sign \x9730 234-256-4 霰 sign \x9732 123-1236-2 露 sign \x9736 12346-56 sign \x9738 1234-12-4 霸 sign \x9739 12346-1235 霹 sign \x973D 14-146-4 霽 sign \x973E 134-346-3 霾 sign \x9742 123-1235 é‚ sign \x9744 126-1 é„ sign \x9746 2345-126-2 é† sign \x9748 123-356-3 éˆ sign \x9749 126-1 é‰ sign \x9752 1346-356 é’ sign \x9756 14-356-2 é– sign \x975A 123-2356-4 éš sign \x975B 2345-256-2 é› sign \x975C 14-356-2 éœ sign \x975E 124-125 éž sign \x9760 1235-34-4 é  sign \x9761 134-125-3 é¡ sign \x9762 134-256-2 é¢ sign \x9766 134-256-6 é¦ sign \x9768 12346-5 é¨ sign \x9769 13-13-5 é© sign \x976A 2345-356 éª sign \x9770 136-0 é° sign \x9773 13-1246-4 é³ sign \x9774 125-156 é´ sign \x9776 1234-12-1 é¶ sign \x9777 245-1246-6 é· sign \x9778 234-1234-5 é¸ sign \x977A 134-1356-3 éº sign \x977C 2345-45-2 é¼ sign \x977D 1234-2346-2 é½ sign \x977E 245-1246-2 é¾ sign \x977F 34-4 é¿ sign \x9780 23456-1236-3 鞀 sign \x9781 1234-125-2 éž sign \x9783 2456-1245-3 鞃 sign \x9784 12346-34-3 éž„ sign \x9785 245-25 éž… sign \x978B 125-346-3 éž‹ sign \x978D 1345-0 éž sign \x978F 13-236-1 éž sign \x9797 23456-13456-3 sign \x9798 1346-13456-4 鞘 sign \x9799 13-23 éž™ sign \x979A 125-236-4 éžš sign \x979D 234-25-6 éž sign \x979E 1234-356-1 éžž sign \x97A0 13-12345 éž  sign \x97A1 123-346 éž¡ sign \x97A3 245-16-3 鞣 sign \x97A5 1245-0 鞥 sign \x97A6 1346-16 鞦 sign \x97A8 125-124-5 鞨 sign \x97AB 13-12345 éž« sign \x97AC 13-256 鞬 sign \x97AD 1234-256 éž­ sign \x97AE 23456-146-3 éž® sign \x97B3 2345-1234-3 éž³ sign \x97B6 12346-2346-3 éž¶ sign \x97B9 12456-12456-5 sign \x97BF 13-125 éž¿ sign \x97C1 13-25 éŸ sign \x97C3 23456-2345-5 韃 sign \x97C5 125-256-1 韅 sign \x97C6 1346-256 韆 sign \x97C7 2345-12345-3 韇 sign \x97C9 14-256 韉 sign \x97CB 2456-146-6 韋 sign \x97CC 245-1246-2 韌 sign \x97CD 124-35 éŸ sign \x97CE 134-1256-2 韎 sign \x97CF 13-23-4 éŸ sign \x97D0 13-1234-5 éŸ sign \x97D3 125-1345-3 韓 sign \x97D8 234-12346-5 韘 sign \x97D9 2456-146-6 韙 sign \x97DC 23456-1236 韜 sign \x97DD 13-16 éŸ sign \x97DE 2456-1246-4 韞 sign \x97E1 156-0 韡 sign \x97ED 13-16-1 韭 sign \x97EE 13-16-1 韮 sign \x97F1 1346-235 韱 sign \x97F3 245-456 音 sign \x97F6 234-13456-3 韶 sign \x97F9 1234-256 韹 sign \x97FB 2456-1246-6 韻 sign \x97FF 125-25-1 響 sign \x9801 12346-3 é  sign \x9802 2345-356-1 é ‚ sign \x9803 1235-356-1 é ƒ sign \x9804 1235-16-3 é „ sign \x9805 125-56-2 é … sign \x9806 234-234-2 é † sign \x9807 125-1345 é ‡ sign \x9808 234-245 é ˆ sign \x980A 245-12345 é Š sign \x980C 14-236-2 é Œ sign \x980E 1235-125-3 é Ž sign \x980F 125-56-3 é  sign \x9810 1456-2 é  sign \x9811 2456-45-3 é ‘ sign \x9812 1234-45 é ’ sign \x9813 2345-234-2 é “ sign \x9816 12346-2346-4 é – sign \x9817 12346-135-1 é — sign \x9818 123-356-6 é ˜ sign \x981C 125-26-3 é œ sign \x981E 2345-5 é ž sign \x9821 1235-23456-5 é ¡ sign \x9824 24-3 é ¤ sign \x9826 125-126-3 é ¦ sign \x982B 124-136-1 é « sign \x982D 23456-16-3 é ­ sign \x9830 13-1234-5 é ° sign \x9832 23456-356-6 é ² sign \x9835 12345-1246 é µ sign \x9837 125-456-6 é · sign \x9838 13-2356-1 é ¸ sign \x9839 23456-245-3 é ¹ sign \x983B 12346-1246-3 é » sign \x9846 124-135-1 顆 sign \x9848 2456-356-2 sign \x984C 23456-146-3 題 sign \x984D 1245-13-3 é¡ sign \x984E 1245-12456-3 顎 sign \x984F 1245-45-3 é¡ sign \x9851 125-456-1 é¡‘ sign \x9852 245-236-3 é¡’ sign \x9853 14-23 é¡“ sign \x9857 1245-146-6 é¡— sign \x9858 23-2 願 sign \x9859 234-56-1 é¡™ sign \x985B 2345-256 é¡› sign \x985C 13-56-1 顜 sign \x985E 123-245-2 類 sign \x9862 134-2346-3 é¡¢ sign \x9863 1346-12345 é¡£ sign \x9865 125-1236-2 é¡¥ sign \x9867 13-136-4 é¡§ sign \x986B 14-256-4 é¡« sign \x986C 1456-3 sign \x986F 125-256-1 顯 sign \x9870 12346-1246-3 é¡° sign \x9871 123-1236-3 顱 sign \x9873 1345-12346-3 顳 sign \x9874 1235-23-3 é¡´ sign \x98A8 124-236 風 sign \x98AD 14-235-1 颭 sign \x98AF 234-1234-5 颯 sign \x98B1 23456-126-3 颱 sign \x98B3 12345-2345-5 颳 sign \x98B6 13-245-2 颶 sign \x98B8 234-24 颸 sign \x98BA 245-25-3 颺 sign \x98BB 13456-3 颻 sign \x98BC 234-16 颼 sign \x98C0 123-16-3 飀 sign \x98C1 14-1234-3 é£ sign \x98C2 123-12345-3 飂 sign \x98C4 12346-13456 飄 sign \x98C6 1234-13456 飆 sign \x98C8 1234-13456 飈 sign \x98DB 124-125 飛 sign \x98DC 124-45 sign \x98DF 234-1235-3 食 sign \x98E2 13-125 飢 sign \x98E3 2345-356-4 飣 sign \x98E4 2345-356-4 sign \x98E5 23456-12456-5 sign \x98E6 14-256 sign \x98E7 234-23 飧 sign \x98E8 234-23 sign \x98E9 23456-1246 飩 sign \x98EA 245-456-2 飪 sign \x98EB 1456-4 飫 sign \x98ED 1346-1235 飭 sign \x98EF 124-45-2 飯 sign \x98F2 245-456-1 飲 sign \x98F4 24-3 飴 sign \x98F6 1234-125-4 飶 sign \x98FC 14-24-2 飼 sign \x98FD 1234-34-1 飽 sign \x98FE 234-1235 飾 sign \x9902 23456-235-6 餂 sign \x9903 13-34-1 餃 sign \x9905 1234-2356-1 餅 sign \x9908 1346-24-3 餈 sign \x9909 125-25-1 餉 sign \x990A 245-25-6 養 sign \x990C 1345-125-2 餌 sign \x9910 1346-45 é¤ sign \x9911 1234-1356-3 餑 sign \x9912 1345-245-6 餒 sign \x9913 1245-135-2 餓 sign \x9914 1234-1236 餔 sign \x9915 14-234-4 餕 sign \x9916 2345-16-2 餖 sign \x9917 1346-12345 餗 sign \x9918 1456-3 餘 sign \x991A 1245-34-3 餚 sign \x991B 2456-1246-3 餛 sign \x991E 14-256-4 餞 sign \x991F 14-12356-5 餟 sign \x9921 125-345-1 餡 sign \x9924 2345-345-2 餤 sign \x9927 2456-146-4 餧 sign \x9928 13-2346-1 館 sign \x992A 1345-23-6 餪 sign \x992B 2456-1246-3 餫 sign \x992C 136-3 餬 sign \x992D 2456-56-3 餭 sign \x992E 23456-23456-5 sign \x9931 125-16-3 餱 sign \x9932 346-4 餲 sign \x9933 1346-356-3 餳 sign \x9935 2456-146-4 餵 sign \x9938 234-236-4 餸 sign \x9939 23456-56-3 sign \x993A 1234-12456-5 餺 sign \x993B 13-1236 sign \x993C 125-125-4 餼 sign \x993D 12345-146-2 餽 sign \x993E 123-16-2 餾 sign \x993F 234-34-4 餿 sign \x9941 12346-3 é¥ sign \x9943 134-135-3 饃 sign \x9945 134-45-2 饅 sign \x9947 1456-4 饇 sign \x9948 234-16 饈 sign \x9949 13-1246-1 饉 sign \x994B 12345-146-2 饋 sign \x994C 14-45-4 sign \x994E 1346-24-4 饎 sign \x9950 245-35 é¥ sign \x9951 13-125 饑 sign \x9952 13456-3 饒 sign \x9954 245-236 饔 sign \x9955 23456-1236 饕 sign \x9957 125-25-1 饗 sign \x9958 14-256 饘 sign \x9959 12346-1246-4 饙 sign \x995B 134-236-3 饛 sign \x995C 235-4 饜 sign \x995E 1346-345-3 饞 sign \x995F 125-25-1 饟 sign \x9961 14-45-4 饡 sign \x9996 234-16-1 首 sign \x9997 12456-146-3 馗 sign \x9998 12345-1235 馘 sign \x9999 125-25 香 sign \x999D 1234-23456 é¦ sign \x99A1 124-125 馡 sign \x99A5 124-12345 馥 sign \x99A8 125-356 馨 sign \x99AC 134-12-6 馬 sign \x99AD 1456-2 馭 sign \x99AE 124-236-3 馮 sign \x99B1 23456-135-3 馱 sign \x99B3 1346-24-3 馳 sign \x99B4 234-234-3 馴 sign \x99B9 245-1235-3 馹 sign \x99C1 1234-12456-5 é§ sign \x99C3 1235-12356-5 駃 sign \x99C9 12345-356 駉 sign \x99D0 14-1456-4 é§ sign \x99D1 1345-1236-3 é§‘ sign \x99D2 1235-245 é§’ sign \x99D4 14-56-1 é§” sign \x99D5 13-12-4 é§• sign \x99D8 23456-126-3 駘 sign \x99D9 124-136-2 é§™ sign \x99DB 234-146-1 é§› sign \x99DD 23456-135-3 é§ sign \x99DF 234-24-4 é§Ÿ sign \x99E2 12346-256-3 é§¢ sign \x99E3 12346-256-3 sign \x99EA 234-1246 駪 sign \x99EC 24-6 駬 sign \x99ED 125-346-6 é§­ sign \x99EE 1234-12456-5 é§® sign \x99F0 245-1246 é§° sign \x99F1 123-12456-5 é§± sign \x99F5 123-16-3 sign \x99F8 1346-456 駸 sign \x99F9 134-56-3 é§¹ sign \x99FB 125-1345-1 é§» sign \x99FC 23456-1236-3 é§¼ sign \x99FD 13-23 é§½ sign \x99FF 14-234-4 é§¿ sign \x9A01 1346-356-1 é¨ sign \x9A03 1245-126-3 騃 sign \x9A04 123-12345-3 騄 sign \x9A05 14-245 騅 sign \x9A09 12456-1246 騉 sign \x9A0A 23456-1236-3 騊 sign \x9A0B 123-126-3 騋 sign \x9A0C 14-236 sign \x9A0D 124-135-4 é¨ sign \x9A0E 1235-15-3 騎 sign \x9A0F 1235-125-3 é¨ sign \x9A10 235-2 sign \x9A11 124-125 騑 sign \x9A15 13456-1 騕 sign \x9A16 134-1236-2 騖 sign \x9A19 12346-256-4 騙 sign \x9A1E 2456-13-3 騞 sign \x9A20 23456-146-3 騠 sign \x9A22 125-12-3 騢 sign \x9A23 14-236 騣 sign \x9A24 12456-146-3 騤 sign \x9A27 2456-12 騧 sign \x9A2B 125-256 騫 sign \x9A2D 14-35 騭 sign \x9A2E 123-16 騮 sign \x9A30 23456-1245-3 騰 sign \x9A32 1346-1236-1 騲 sign \x9A35 23-3 騵 sign \x9A36 14-16 騶 sign \x9A37 234-1236 騷 sign \x9A38 234-256-4 騸 sign \x9A3E 123-245-3 騾 sign \x9A40 134-46-3 é©€ sign \x9A41 1245-1236-3 é© sign \x9A42 1346-345 é©‚ sign \x9A43 1234-13456 驃 sign \x9A44 1346-236 é©„ sign \x9A45 1235-245 é©… sign \x9A48 2456-35-3 驈 sign \x9A4A 2456-12-3 驊 sign \x9A4C 234-12345 驌 sign \x9A4D 125-13456 é© sign \x9A4E 123-234-3 驎 sign \x9A4F 1346-45-4 é© sign \x9A54 23456-235-6 é©” sign \x9A55 13-13456 é©• sign \x9A56 23456-23456-5 sign \x9A57 235-2 é©— sign \x9A58 123-135-3 sign \x9A5A 13-356 驚 sign \x9A5B 245-1235-3 é©› sign \x9A5F 14-34-2 驟 sign \x9A60 256-0 é©  sign \x9A62 123-1236-3 é©¢ sign \x9A64 234-25 驤 sign \x9A65 1235-125-4 é©¥ sign \x9A66 234-25 驦 sign \x9A68 12456-146-3 驨 sign \x9A69 124-2346 é©© sign \x9A6A 123-125-3 驪 sign \x9AA8 12345-35 骨 sign \x9AAB 2456-146-1 骫 sign \x9AAD 13-1345-4 骭 sign \x9AAF 56-0 骯 sign \x9AB0 234-1235 骰 sign \x9AB1 125-346-2 骱 sign \x9AB3 1234-125-2 骳 sign \x9AB4 1346-24 骴 sign \x9AB7 124-136 骷 sign \x9AB8 125-346-3 骸 sign \x9ABB 12456-12-4 骻 sign \x9ABC 13-13-5 骼 sign \x9ABE 13-1245-1 骾 sign \x9AC0 1234-125-1 é«€ sign \x9AC1 124-135 é« sign \x9AC2 1235-12-4 é«‚ sign \x9AC6 1234-12456-5 髆 sign \x9ACF 123-16-3 é« sign \x9AD0 125-34 é« sign \x9AD1 2345-12345-3 é«‘ sign \x9AD2 14-56 é«’ sign \x9AD3 234-245-6 é«“ sign \x9AD4 23456-146-1 é«” sign \x9AD5 1234-1246-4 é«• sign \x9AD6 124-2346 é«– sign \x9AD8 13-1236 高 sign \x9ADF 1234-13456 髟 sign \x9AE0 12456-1246 sign \x9AE1 12456-1246 é«¡ sign \x9AE2 23456-146-4 sign \x9AE3 124-56-1 é«£ sign \x9AE6 134-1236-3 髦 sign \x9AEB 23456-13456-3 sign \x9AEC 12346-125 髬 sign \x9AED 14-24 é«­ sign \x9AEE 124-2345-5 é«® sign \x9AEF 235-2 髯 sign \x9AF2 1234-125-2 髲 sign \x9AF9 245-16 髹 sign \x9AFB 13-146-4 é«» sign \x9AFC 12346-236-3 髼 sign \x9AFD 14-12 髽 sign \x9AFE 234-34 髾 sign \x9B01 123-125 é¬ sign \x9B03 14-236 鬃 sign \x9B04 12346-236-3 鬄 sign \x9B05 12346-1245-3 鬅 sign \x9B06 234-236 鬆 sign \x9B08 1235-23-3 鬈 sign \x9B0B 14-256 鬋 sign \x9B0D 136-3 é¬ sign \x9B0E 123-2345-5 鬎 sign \x9B10 1235-125-3 é¬ sign \x9B11 123-235-3 鬑 sign \x9B12 14-1246-1 鬒 sign \x9B16 234-345 鬖 sign \x9B18 134-45-3 鬘 sign \x9B19 14-1245 鬙 sign \x9B1A 234-1236 鬚 sign \x9B1F 2456-45-3 鬟 sign \x9B22 1234-1246-4 鬢 sign \x9B23 123-12346-3 鬣 sign \x9B24 245-25-6 鬤 sign \x9B25 2345-16-4 鬥 sign \x9B27 1345-34-2 鬧 sign \x9B28 125-236-4 鬨 sign \x9B29 245-1235 鬩 sign \x9B2B 125-345-1 鬫 sign \x9B2E 13-16 鬮 sign \x9B2F 1346-25-4 鬯 sign \x9B31 2456-35 鬱 sign \x9B32 123-1235-3 鬲 sign \x9B35 1346-456-3 鬵 sign \x9B37 14-236 鬷 sign \x9B3B 245-12345-3 鬻 sign \x9B3C 12345-146-1 鬼 sign \x9B41 124-1256 é­ sign \x9B42 2456-1246-3 é­‚ sign \x9B43 1234-2345-3 é­ƒ sign \x9B44 12346-13-5 é­„ sign \x9B45 134-125-2 é­… sign \x9B48 234-13456 é­ˆ sign \x9B4A 2456-1235-3 é­Š sign \x9B4B 23456-245-3 é­‹ sign \x9B4D 134-56-6 é­ sign \x9B4E 123-25-6 é­Ž sign \x9B4F 1245-146-2 é­ sign \x9B51 1346-24 é­‘ sign \x9B54 134-135 é­” sign \x9B58 235-1 é­˜ sign \x9B5A 1456-3 é­š sign \x9B5B 2345-1236 é­› sign \x9B66 234-12 é­¦ sign \x9B68 23456-23-3 é­¨ sign \x9B6F 123-1236-6 é­¯ sign \x9B74 124-56 é­´ sign \x9B77 245-16-3 é­· sign \x9B80 23456-135-3 鮀 sign \x9B82 1346-16-3 鮂 sign \x9B8B 245-16-1 鮋 sign \x9B90 23456-126-3 é® sign \x9B91 1234-34 鮑 sign \x9B92 124-136-2 é®’ sign \x9B93 14-12-4 鮓 sign \x9B9A 13-23456-5 鮚 sign \x9B9E 24-3 鮞 sign \x9BA0 2456-146-3 é®  sign \x9BA6 23456-236-3 鮦 sign \x9BA8 14-24-1 鮨 sign \x9BAA 124-1256-1 鮪 sign \x9BAB 13-34 鮫 sign \x9BAD 12345-146 é®­ sign \x9BAE 234-256 é®® sign \x9BB8 134-256-6 鮸 sign \x9BB9 234-34 鮹 sign \x9BC0 12345-1246-1 鯀 sign \x9BC1 13-1245-1 é¯ sign \x9BC7 2456-45-6 鯇 sign \x9BC8 245-16-3 鯈 sign \x9BC9 123-125-6 鯉 sign \x9BCA 234-12 鯊 sign \x9BD4 24-0 鯔 sign \x9BD6 1346-356 鯖 sign \x9BD7 14-12-4 鯗 sign \x9BDB 2345-13456 鯛 sign \x9BDC 1346-12346-5 鯜 sign \x9BE0 123-126-3 鯠 sign \x9BE1 234-456 sign \x9BE2 1245-146-3 鯢 sign \x9BE4 12456-1246 鯤 sign \x9BE7 1346-25 鯧 sign \x9BE8 1235-356-3 鯨 sign \x9BEA 123-356-3 鯪 sign \x9BEB 14-16 鯫 sign \x9BED 134-14 鯭 sign \x9BF0 1345-235-3 鯰 sign \x9BF7 23456-146-3 sign \x9BFD 14-1235 鯽 sign \x9C02 14-46 é°‚ sign \x9C06 1346-234 é°† sign \x9C08 2345-12346-3 é°ˆ sign \x9C09 2456-56-3 é°‰ sign \x9C0B 256-1 é°‹ sign \x9C0D 1346-16 é° sign \x9C10 12-12456-3 sign \x9C12 124-12345 é°’ sign \x9C13 234-126 é°“ sign \x9C14 14-456 é°” sign \x9C1C 13-235 é°œ sign \x9C23 234-24-3 é°£ sign \x9C24 234-24 sign \x9C25 12345-45 é°¥ sign \x9C28 23456-1234-5 é°¨ sign \x9C29 13456-3 é°© sign \x9C2D 1235-125-3 é°­ sign \x9C31 123-256-3 é°± sign \x9C32 1245-1236-3 é°² sign \x9C33 123-46-3 é°³ sign \x9C37 23456-13456-3 sign \x9C39 13-256 é°¹ sign \x9C3B 134-45-2 é°» sign \x9C3C 14-1234-3 é°¼ sign \x9C3D 1346-1236-3 sign \x9C3E 1234-13456 é°¾ sign \x9C44 14-23 鱄 sign \x9C45 245-236-3 sign \x9C48 234-12356-5 鱈 sign \x9C49 1234-23456-5 鱉 sign \x9C4A 2456-35-3 鱊 sign \x9C4D 1234-1356-3 é± sign \x9C52 14-23 é±’ sign \x9C54 234-256-6 é±” sign \x9C56 12345-146-4 é±– sign \x9C57 123-234-3 é±— sign \x9C58 1346-456-3 鱘 sign \x9C5F 125-16-2 鱟 sign \x9C60 1235-1256-4 é±  sign \x9C63 14-256 é±£ sign \x9C67 123-146-6 é±§ sign \x9C68 234-25-3 鱨 sign \x9C6D 1346-146-3 é±­ sign \x9C6E 14-245-2 é±® sign \x9C72 123-1234-3 é±² sign \x9C77 1245-12456-3 é±· sign \x9C78 123-1236-3 鱸 sign \x9C7A 123-125-3 鱺 sign \x9CE5 1345-13456-6 é³¥ sign \x9CE6 12356-3 鳦 sign \x9CE7 124-136-3 é³§ sign \x9CE9 1235-16 鳩 sign \x9CF2 234-24 é³² sign \x9CF3 124-236-2 é³³ sign \x9CF4 134-356-3 é³´ sign \x9CF6 23-0 é³¶ sign \x9CF7 14-24 é³· sign \x9D00 124-16-1 é´€ sign \x9D03 12345-1235 é´ƒ sign \x9D06 14-456-2 é´† sign \x9D07 1234-1236-1 é´‡ sign \x9D08 1245-45-2 é´ˆ sign \x9D09 12-0 é´‰ sign \x9D10 13-12 é´ sign \x9D12 123-356-3 é´’ sign \x9D15 23456-135-3 é´• sign \x9D1B 23-0 é´› sign \x9D1D 1235-245-3 é´ sign \x9D1E 125-13456 é´ž sign \x9D1F 1346-24 é´Ÿ sign \x9D20 2345-45-4 sign \x9D23 13-136 é´£ sign \x9D25 2456-35-3 é´¥ sign \x9D26 245-25 é´¦ sign \x9D28 1234-5 é´¨ sign \x9D2F 24-3 é´¯ sign \x9D30 1235-1356-5 é´° sign \x9D34 125-1245 sign \x9D37 123-23456-3 é´· sign \x9D3B 125-236-3 é´» sign \x9D3F 13-26-5 é´¿ sign \x9D40 245-456-2 éµ€ sign \x9D41 13-34 éµ sign \x9D42 245-16 鵂 sign \x9D43 14-16 鵃 sign \x9D4B 13-125-2 鵋 sign \x9D51 13-23 鵑 sign \x9D52 245-12345-3 éµ’ sign \x9D53 1234-1356-3 鵓 sign \x9D59 1235-12356-5 éµ™ sign \x9D5A 23456-12345 鵚 sign \x9D5C 23456-146-3 鵜 sign \x9D5D 1245-135-3 éµ sign \x9D60 13-12345 éµ  sign \x9D61 134-1236-6 鵡 sign \x9D69 124-12345-3 鵩 sign \x9D6A 456-0 鵪 sign \x9D6B 14-34-2 鵫 sign \x9D6C 12346-14-3 鵬 sign \x9D70 2345-13456 éµ° sign \x9D72 14-246-5 éµ² sign \x9D77 23-0 éµ· sign \x9D79 123-125-3 éµ¹ sign \x9D7B 14-245 éµ» sign \x9D7E 12456-1246 sign \x9D80 1235-125-3 é¶€ sign \x9D81 13-356 é¶ sign \x9D82 245-1235 é¶‚ sign \x9D83 245-1235-3 sign \x9D84 14-356 é¶„ sign \x9D86 123-126-3 鶆 sign \x9D87 2345-236 鶇 sign \x9D89 1346-234 鶉 sign \x9D8A 13-1245 é¶Š sign \x9D92 1346-1235 é¶’ sign \x9D96 1346-16 é¶– sign \x9D97 23456-146-3 é¶— sign \x9D98 136-3 鶘 sign \x9D9A 1245-12456-3 é¶š sign \x9DA0 256-1 é¶  sign \x9DA1 125-124-5 é¶¡ sign \x9DA4 12456-146-3 鶤 sign \x9DA6 136-3 鶦 sign \x9DA9 134-1236-2 é¶© sign \x9DAA 12456-1235 鶪 sign \x9DAC 1346-56 鶬 sign \x9DAF 1245-0 鶯 sign \x9DB1 125-256 é¶± sign \x9DB2 245-236 é¶² sign \x9DB4 125-12456-3 é¶´ sign \x9DB5 1346-135 é¶µ sign \x9DB8 245-246-3 鶸 sign \x9DB9 123-16-3 é¶¹ sign \x9DBA 14-1235-5 鶺 sign \x9DBB 2456-35-3 é¶» sign \x9DBC 13-235 é¶¼ sign \x9DBF 1346-24 é¶¿ sign \x9DC1 245-1235-3 é· sign \x9DC2 13456-2 é·‚ sign \x9DC3 45-4 é·ƒ sign \x9DC4 13-146 sign \x9DC7 1235-16-4 é·‡ sign \x9DC8 23456-146-3 é·ˆ sign \x9DD2 1346-23-3 é·’ sign \x9DD3 14-15-4 é·“ sign \x9DD6 24-0 é·– sign \x9DD7 16-0 é·— sign \x9DD8 1346-1235 é·˜ sign \x9DD9 14-24-4 é·™ sign \x9DDA 123-16-2 é·š sign \x9DDF 14-12456-3 é·Ÿ sign \x9DE5 234-24 é·¥ sign \x9DE6 14-13456 é·¦ sign \x9DE9 1234-146-2 é·© sign \x9DEB 234-12345 é·« sign \x9DEE 13-13456 é·® sign \x9DEF 123-13456-3 é·¯ sign \x9DF0 256-0 é·° sign \x9DF2 14-16-2 é·² sign \x9DF3 125-45-3 é·³ sign \x9DF4 125-45-3 é·´ sign \x9DF8 2456-35-3 é·¸ sign \x9DF9 245-356 é·¹ sign \x9DFA 123-1236-2 é·º sign \x9DFD 125-12456-3 é·½ sign \x9DFE 24-4 é·¾ sign \x9DFF 12346-1235 é·¿ sign \x9E01 123-135-3 é¸ sign \x9E02 1235-146 鸂 sign \x9E03 24-3 鸃 sign \x9E05 12345-1235 sign \x9E07 14-256 鸇 sign \x9E09 1234-1236-2 sign \x9E0E 1245-0 sign \x9E10 2345-1235-3 é¸ sign \x9E11 1245-12456-3 鸑 sign \x9E12 1456-2 鸒 sign \x9E15 123-1236-3 鸕 sign \x9E1A 245-356 鸚 sign \x9E1B 13-2346-4 鸛 sign \x9E1D 123-125-3 é¸ sign \x9E1E 123-23-3 鸞 sign \x9E75 123-1236-6 é¹µ sign \x9E79 125-345-3 é¹¹ sign \x9E7A 1346-135 鹺 sign \x9E7C 13-45-1 é¹¼ sign \x9E7D 235-3 é¹½ sign \x9E7F 123-12345-3 鹿 sign \x9E80 245-16 麀 sign \x9E82 13-125-1 麂 sign \x9E83 1234-13456 麃 sign \x9E87 12456-1246-3 麇 sign \x9E88 14-1456-1 麈 sign \x9E8B 134-125-3 麋 sign \x9E8C 1456-6 麌 sign \x9E90 123-234-3 sign \x9E91 1245-146-3 麑 sign \x9E92 1235-125-3 麒 sign \x9E93 123-12345 麓 sign \x9E96 13-2356 麖 sign \x9E97 123-146-2 麗 sign \x9E9D 234-15-2 éº sign \x9E9E 14-25 sign \x9E9F 123-234-3 麟 sign \x9EA4 1346-1236 麤 sign \x9EA5 134-46-3 麥 sign \x9EA7 125-35-3 麧 sign \x9EA9 124-136 麩 sign \x9EB0 134-16-3 麰 sign \x9EB4 1235-12345 麴 sign \x9EB5 134-256-2 麵 sign \x9EB7 124-236 麷 sign \x9EBB 134-12-3 麻 sign \x9EBC 134-135 麼 sign \x9EBE 124-146 麾 sign \x9EC2 124-1246-3 黂 sign \x9EC3 2456-56-3 黃 sign \x9EC8 23456-16-1 黈 sign \x9ECC 125-236-3 黌 sign \x9ECD 234-1456-1 é» sign \x9ECE 123-146-3 黎 sign \x9ECF 1345-235 é» sign \x9ED0 1346-24 é» sign \x9ED1 125-46 黑 sign \x9ED3 245-1235-3 黓 sign \x9ED4 1235-235-3 é»” sign \x9ED8 134-46-3 默 sign \x9EDA 1235-235-3 黚 sign \x9EDB 2345-126-2 é»› sign \x9EDC 14-12356-5 黜 sign \x9EDD 245-16-1 é» sign \x9EDE 2345-235-1 點 sign \x9EDF 24-0 黟 sign \x9EE0 1235-23456-5 é»  sign \x9EE5 1235-356-3 黥 sign \x9EE6 2456-35 黦 sign \x9EE7 123-146-3 é»§ sign \x9EE8 2345-56-1 黨 sign \x9EEE 23456-45-1 é»® sign \x9EEF 456-1 黯 sign \x9EF0 14-1246-1 é»° sign \x9EF2 1346-345-1 黲 sign \x9EF3 24-0 黳 sign \x9EF4 134-1256-3 é»´ sign \x9EF5 14-345-1 黵 sign \x9EF6 235-1 é»¶ sign \x9EF7 2345-12345-3 é»· sign \x9EF9 14-24-1 黹 sign \x9EFB 124-35 é»» sign \x9EFC 124-136-1 黼 sign \x9EFD 134-1246-6 黽 sign \x9EFF 23-3 黿 sign \x9F01 125-245-4 é¼ sign \x9F07 1245-1236-3 鼇 sign \x9F08 1234-23456-5 鼈 sign \x9F09 23456-135-3 鼉 sign \x9F0E 2345-356-1 鼎 sign \x9F10 1345-346-6 é¼ sign \x9F12 14-24 é¼’ sign \x9F13 13-136-1 鼓 sign \x9F15 2345-236 鼕 sign \x9F16 124-1246-3 é¼– sign \x9F17 23456-1236 sign \x9F18 23-0 鼘 sign \x9F19 12346-125-3 é¼™ sign \x9F1A 1346-25 鼚 sign \x9F1B 13-1236 é¼› sign \x9F20 234-1456-1 é¼  sign \x9F22 124-1246-3 é¼¢ sign \x9F25 1234-35-3 é¼¥ sign \x9F29 1235-245-3 鼩 sign \x9F2A 234-1245 鼪 sign \x9F2B 234-2456-3 鼫 sign \x9F2C 245-16-3 鼬 sign \x9F2E 23456-356-3 é¼® sign \x9F2F 1245-3 鼯 sign \x9F31 14-356 sign \x9F32 2456-1246-3 é¼² sign \x9F34 256-1 é¼´ sign \x9F37 125-146-3 é¼· sign \x9F3B 1234-125-2 é¼» sign \x9F3D 1235-16-3 é¼½ sign \x9F3E 125-1345-3 é¼¾ sign \x9F41 125-16 é½ sign \x9F46 2456-236-4 齆 sign \x9F47 14-12 齇 sign \x9F49 1345-56-2 齉 sign \x9F4A 1346-146-3 齊 sign \x9F4B 14-346 齋 sign \x9F4C 14-146 齌 sign \x9F4D 14-24 é½ sign \x9F4E 14-146 齎 sign \x9F4F 14-146 é½ sign \x9F52 1346-24-1 é½’ sign \x9F54 1346-1246-4 é½” sign \x9F55 125-35-3 齕 sign \x9F57 1245-1246-3 é½— sign \x9F59 1234-34-2 é½™ sign \x9F5C 14-24 齜 sign \x9F5F 14-245-1 齟 sign \x9F60 23456-13456-3 sign \x9F61 123-356-3 齡 sign \x9F62 123-356-3 sign \x9F63 1346-1346 é½£ sign \x9F66 1245-1246-3 齦 sign \x9F67 1245-23456-3 é½§ sign \x9F6A 1346-12345 齪 sign \x9F6C 1456-6 齬 sign \x9F6E 24-1 é½® sign \x9F6F 1245-146-3 齯 sign \x9F72 13-245-1 é½² sign \x9F75 1456-3 é½µ sign \x9F76 1245-12456-3 é½¶ sign \x9F77 46-0 é½· sign \x9F78 125-2456-5 sign \x9F7B 2345-256 é½» sign \x9F7E 1245-12 é½¾ sign \x9F8D 123-236-3 é¾ sign \x9F90 12346-56-3 é¾ sign \x9F91 235-1 龑 sign \x9F94 13-236 é¾” sign \x9F95 456-0 龕 sign \x9F99 123-236-3 ï† sign \x9F9C 12345-146 龜 sign \x9FA0 245-246-3 é¾  sign \x9FA2 2456-135-3 é¾¢ sign \x9FA4 125-346-3 龤 sign \xE012 13-45-1 sign \xE01A 1246-3 sign \xE022 13-23456-3 sign \xE02E 24-0 sign \xE049 12346-1245-3 sign \xE074 125-356 î´ sign \xE087 245-245-2 sign \xE088 2345-12346-3 sign \xE096 2456-356-2 sign \xE09C 123-125-6 sign \xE11C 256-2  sign \xE121 124-236 î„¡ sign \xE134 13-16-4 sign \xE151 12346-256-4 sign \xE17F 14-236 î…¿ sign \xE185 234-356-2  sign \xE1BE 125-13456-1 sign \xE1CC 13-23456-3  sign \xE1D0 12346-13-5 sign \xE1FA 1346-24-4  sign \xE204 12346-125-1 sign \xE22D 1456-3 sign \xE248 123-235-3  sign \xE24D 14-234-4 sign \xE266 14-1456-1 sign \xE286 14-1456 sign \xE2A3 1456-3 sign \xE2BF 123-356-3  sign \xE2C9 12346-35  sign \xE33A 14-1456-4 sign \xE348 14-56 îˆ sign \xE357 234-256-4 sign \xE362 1234-12345-5 î¢ sign \xE372 13-24 î² sign \xE3C5 14-356 sign \xE403 2456-146-2 sign \xE440 123-126-3 sign \xE441 1346-24-4 î‘ sign \xE44A 125-125-1 sign \xE4C5 14-356-2 sign \xE50D 125-2 î” sign \xE50F 124-1256 î” sign \xE52C 123-125-3 sign \xE545 124-1246-6 sign \xE562 245-12345 î•¢ sign \xE563 12346-12-4 sign \xE5D9 124-236-3 î—™ sign \xE5EB 23456-16 sign \xE64E 1346-24-4  sign \xE77C 2456-1246-5 î¼ sign \xE7FF 1346-24-4  sign \xE91E 235-2  sign \xEAEA 123-236-3  sign \xEB55 125-125 î­• sign \xEB78 13-346-4 î­¸ sign \xEBB9 14-234-4 sign \xEBC7 1346-24-4  sign \xEBC9 245-356-3 sign \xEBF6 14-24-1  sign \xEC98 134-35-3  sign \xECA7 1245-135-3 î²§ sign \xECA8 134-125-3  sign \xECAA 12346-14-3 sign \xECAF 123-26-3  sign \xECC7 234-346 sign \xECD4 123-12346 sign \xECDB 23456-456-3 sign \xECFD 12346-34 sign \xED72 14-246-5 îµ² sign \xED91 1346-24-4 î¶‘ sign \xEEA7 1234-23456-3  sign \xF071 125-234-12345 sign \xF076 16 sign \xF0A7 124-234-12345 sign \xF0B7 124-1235-1345-145 sign \xF0D8 1-1235-1235 sign \xF0E0 124-145-134-1345-145 sign \xF0FC 14-125-13 sign \xF6CF 46 sign \xF6E8 3-3 sign \xF6F2 456-135 sign \xF6F3 456-36 sign \xF6F4 6-2356 sign \xF6F5 2356-3 sign \xF6F6 35-35 sign \xF712 1234-1236-1 sign \xF907 12345-146 ï•° sign \xFA0C 1245-35-3 兀 sign \xFA0D 124-135-4 ï¨ sign \xFE30 25 sign \xFE31 456-123 sign \xFE33 36-36 sign \xFE34 456-123 sign \xFE35 6-2356 sign \xFE36 2356-3 sign \xFE37 6-2356 sign \xFE38 2356-3 sign \xFE39 6-2356 sign \xFE3A 2356-3 sign \xFE3B 246 sign \xFE3C 12456 sign \xFE3D 126-126 sign \xFE3E 345-345 sign \xFE3F 126 sign \xFE40 345 sign \xFE41 3-2356 sign \xFE42 2356-3 sign \xFE43 6-236 sign \xFE44 356-3 sign \xFE49 456-36 sign \xFE4A 456-36 sign \xFE4B 456-36 sign \xFE4C 456-36 sign \xFE4F 456-36 sign \xFE50 36 sign \xFE51 45 sign \xFE52 256-0 sign \xFE54 26-0 sign \xFE55 25 sign \xFE56 236 sign \xFE57 2346 sign \xFE59 236 sign \xFE5A 356 sign \xFE5B 236 sign \xFE5C 356 sign \xFE5D 236 sign \xFE5E 356 sign \xFE60 56-12346 sign \xFE61 1346-123 sign \xFE62 56-235 sign \xFE63 36 sign \xFE64 56-126 sign \xFE66 56-2356 sign \xFE68 56-1456 sign \xFE69 56-1246 sign \xFE6A 4-25-1234 sign \xFE6B 56-1-2345 sign \xFF03 56-3456 sign \xFF04 56-1246 sign \xFF05 25-1234 sign \xFF06 56-12346 sign \xFF08 2356 sign \xFF09 2356 sign \xFF0A 56-236 sign \xFF0B 56-235 sign \xFF0C 36 sign \xFF0D 36-3 sign \xFF10 3456-245 sign \xFF11 3456-1 sign \xFF12 3456-12 sign \xFF13 3456-14 sign \xFF14 3456-145 sign \xFF15 3456-15 sign \xFF16 3456-124 sign \xFF17 3456-1245 sign \xFF18 3456-125 sign \xFF19 3456-24 sign \xFF1A 25 sign \xFF1B 26-0 sign \xFF1C 56-126 sign \xFF1D 56-2356 sign \xFF1E 56-345 sign \xFF1F 236-0 sign \xFF20 56-1-2345 sign \xFF21 56-6-1 sign \xFF22 56-6-12 sign \xFF23 56-6-14 sign \xFF24 56-6-145 sign \xFF25 56-6-15 sign \xFF26 56-6-124 sign \xFF27 56-6-1245 sign \xFF28 56-6-125 sign \xFF29 56-6-24 sign \xFF2A 56-6-245 sign \xFF2B 56-6-13 sign \xFF2C 56-6-123 sign \xFF2D 56-6-134 sign \xFF2E 56-6-1345 sign \xFF2F 56-6-135 sign \xFF30 56-6-1234 sign \xFF31 56-6-12345 sign \xFF32 56-6-1235 sign \xFF33 56-6-234 sign \xFF34 56-6-2345 sign \xFF35 56-6-136 sign \xFF36 56-6-1236 sign \xFF37 56-6-2456 sign \xFF38 56-6-1346 sign \xFF39 56-6-13456 sign \xFF3A 56-6-1356 sign \xFF5C 456-123 sign \xFF5E 36 sign \xFFE0 56-14-15-1345-2345 sign \xFFE1 56-1234-135-136-1345-145 sign \xFFE5 56-13456-15-1345 liblouis-2.5.3/tables/pa.ctb0000664000175000017500000000167212161041546012640 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Panjabi include gurmukhi.cti include text_nabcc.dis liblouis-2.5.3/tables/en-gb-comp8.ctb0000664000175000017500000000272212161041546014251 00000000000000# liblouis: U.K. English 8 dot Computer braille table # # Copyright (C) 2013 David Reynolds # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . space \t 9 tab space \s 0 blank space \x00a0 a unbreakable space sign \x000a 24578 newline space \x000d 13478 carriage return include latinLetterDef8Dots.uti punctuation , 2 punctuation ; 23 punctuation : 25 punctuation . 256 punctuation ! 3456 punctuation " 4 punctuation ' 3 punctuation ( 45 punctuation ) 345 punctuation - 36 sign _ 456 math < 236 math = 2356 math > 356 sign % 46 math + 236 math ~ 14567 sign ` 3457 sign £ 467 sign & 12346 sign $ 34567 punctuation ? 26 punctuation { 123567 punctuation [ 12356 punctuation } 234567 punctuation ] 23456 sign ^ 6 sign @ 2346 sign # 56 sign \\ 167 sign | 468 math / 34 sign * 35 digit 0 123456 include digits6DotsPlusDot6.uti liblouis-2.5.3/tables/or.ctb0000664000175000017500000000166512161041546012662 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Oriya include oriya.cti include text_nabcc.dis liblouis-2.5.3/tables/sk-sk-g1.utb0000664000175000017500000001032312161041546013610 00000000000000# Slovak Braille Table # Created by Mike Sivill # #**** Display Codes include text_nabcc.dis #**** Character Definitions space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation ( 12356 punctuation } 12456 punctuation ] 124567 punctuation ? 1456 punctuation : 156 punctuation ) 23456 punctuation ! 2346 punctuation { 246 punctuation [ 2467 punctuation ' 3 punctuation - 36 punctuation . 46 punctuation " 5 punctuation ; 56 punctuation , 6 sign & 12346 sign $ 1246 sign | 1256 sign \\ 12567 sign % 146 sign * 16 sign # 3456 punctuation ` 4 sign _ 456 sign ^ 457 sign @ 47 math = 123456 math < 126 math / 34 math > 345 math + 346 math ~ 45 # Miscellaneous math \x00B1 346-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN math \x00B7 16 MIDDLE DOT math \x00BC 1456-2-34-256-3456 VULGAR FRACTION ONE QUARTER No 0031 2044 math \x00BD 1456-2-34-23-3456 VULGAR FRACTION ONE HALF No 0031 2044 0032 math \x00BE 1456-25-34-23-3456 VULGAR FRACTION THREE QUARTERS No 0033 math \x00D7 4-16 MULTIPLICATION SIGN math \x00F7 46-34 DIVISION SIGN punctuation \x0092 3 punctuation \x0097 36-36 punctuation \x00A1 235 INVERTED EXCLAMATION MARK punctuation \x00ad 36 punctuation \x00BF 236 INVERTED QUESTION MARK punctuation \x2011 36 punctuation \x2013 36-36 punctuation \x2014 36-36 punctuation \x2018 6-236 punctuation \x2019 3 punctuation \x2019 356-3 punctuation \x201c 236 punctuation \x201d 356 punctuation \x2026 3 sign \x2122 45-2345 trademark sign sign \x00A2 4-14 CENT SIGN sign \x00A3 3456 POUND SIGN sign \x00A4 1246 CURRENCY SIGN sign \x00A7 4-234 SECTION SIGN sign \x00A9 45-14 COPYRIGHT SIGN sign \x00AE 45-1235 REGISTERED SIGN REGISTERED TRADE MARK SIGN sign \x00B0 56-145-1245 DEGREE SIGN sign \x00B4 b4 ACUTE ACCENT 0020 0301 SPACING ACUTE sign \x00B5 46-134 MICRO SIGN 03BC 039C 039C sign \x00A5 4-13456 YEN SIGN punctuation \x00A6 456-1256 BROKEN BAR BROKEN VERTICAL BAR # sign \x00A8 DIAERESIS 0020 0308 SPACING DIAERESIS # sign \x00AA FEMININE ORDINAL INDICATOR 0061 # punctuation \x00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK LEFT # sign \x00AC NOT SIGN # sign \x00AF MACRON 0020 0304 SPACING MACRON # math \x00B2 SUPERSCRIPT TWO 0032 2 2 SUPERSCRIPT DIGIT TWO # math \x00B3 SUPERSCRIPT THREE 0033 3 3 SUPERSCRIPT DIGIT THREE sign \x00B6 1234-345 PILCROW SIGN PARAGRAPH SIGN # sign \x00B8 CEDILLA 0020 0327 SPACING CEDILLA # math \x00B9 SUPERSCRIPT ONE 0031 1 1 SUPERSCRIPT DIGIT ONE sign \x00BA 145-1245 MASCULINE ORDINAL INDICATOR 006F # punctuation \x00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK Pf Y punctuation \x2010 36 # 8208 hyphen punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x201E 236 # 8222 smart double low quotation mark # Numbers include litdigits6Dots.uti # Alphabet uplow \x00C1\x00E1 16 uplow \x010C\x010D 146 c with caron uplow \x010E\x010F 1456 D with caron uplow \x00C9\x00E9 345 uplow \x00C4\x00E4 4 a with daeresis uplow \x00CD\x00ED 34 I with acute uplow \x013B\x013C 46 l with cedilla uplow \x013D\x013E 456 l with caron uplow \X0139\X013A 46 l with acute uplow \x0147\x0148 1246 n with caron uplow \x00D3\x00f3 246 O with acute uplow \X00D4\x00F4 23456 o with circumflex uplow \x0154\x0155 12356 r with acute uplow \x0160\x0161 156 s with caron uplow \x0164\x0165 1256 t with caron uplow \X00DA\X00FA 346 U WITH ACUTE uplow \x00DD\x00FD 12346 Y WITH ACUTE include latinLetterDef6Dots.uti uplow \x017d\x017E 2346 z with caron #**** Braille Indicators numsign 3456 capsign 6 begcaps 6-6 # Punctuation punctuation ! 235 punctuation " 2356 punctuation ' 3 punctuation ( 236 punctuation ) 356 midnum * 35 math + 235 punctuation , 2 punctuation - 36 punctuation . 256 punctuation / 25 punctuation : 25 punctuation * 0-3 punctuation ; 23 math < 126 math > 345 math = 2356 punctuation ? 26 punctuation [ 6-236 punctuation ] 6-356 always \\ 3456-1256 punctuation { 5-236 punctuation } 5-356 always _ 456 always | 3456-123 always ~ 56-26 always # 56-3456 always $ 3456-1246 always & 3456-12346 always @ 3456-12456 always % 3456-1234 liblouis-2.5.3/tables/iu-ca-g1.ctb0000664000175000017500000001577512161041546013554 00000000000000# liblouis: Inuktitut Braille Table # # Copyright (C) 2012, maintained by Greg Kearney, gkearney@gmail.com # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # include chardefs.cti #include text_nabcc.dis All display opcodes include ukchardefs.cti All character definition opcodes include UEBC-g1.utb letsign 456 ink letter sign # The Vowels letter \x1401 56-1 CANADIAN SYLLABICS E letter \x1403 45-1 CANADIAN SYLLABICS I letter \x1404 45-16 CANADIAN SYLLABICS II letter \x1405 135-1 CANADIAN SYLLABICS O letter \x1406 135-16 CANADIAN SYLLABICS OO letter \x140A 246-1 CANADIAN SYLLABICS A letter \x140B 246-16 CANADIAN SYLLABICS AA # The Consonants # P letter \x142F 56-1234 CANADIAN SYLLABICS PE letter \x1431 45-1234 CANADIAN SYLLABICS PI letter \x1432 45-12346 CANADIAN SYLLABICS PII letter \x1433 135-1234 CANADIAN SYLLABICS PO letter \x1434 135-12346 CANADIAN SYLLABICS POO letter \x1438 246-1234 CANADIAN SYLLABICS PA letter \x1439 246-12346 CANADIAN SYLLABICS PAA letter \x1449 1234 CANADIAN SYLLABICS P # T letter \x144C 56-2345 CANADIAN SYLLABICS TE letter \x144E 45-2345 CANADIAN SYLLABICS TI letter \x144F 45-23456 CANADIAN SYLLABICS TII letter \x1450 135-2345 CANADIAN SYLLABICS TO letter \x1451 135-23456 CANADIAN SYLLABICS TOO letter \x1455 246-2345 CANADIAN SYLLABICS TA letter \x1456 246-23456 CANADIAN SYLLABICS TAA letter \x1466 2345 CANADIAN SYLLABICS T # K letter \x146B 56-13 CANADIAN SYLLABICS KE letter \x146D 45-13 CANADIAN SYLLABICS KI letter \x146E 45-136 CANADIAN SYLLABICS KII letter \x146F 135-13 CANADIAN SYLLABICS KO letter \x1470 135-136 CANADIAN SYLLABICS KOO letter \x1472 246-13 CANADIAN SYLLABICS KA letter \x1473 246-136 CANADIAN SYLLABICS KAA letter \x1483 13 CANADIAN SYLLABICS K # G (C) letter \x1489 56-1245 CANADIAN SYLLABICS CE letter \x148B 45-1245 CANADIAN SYLLABICS CI letter \x148C 45-12456 CANADIAN SYLLABICS CII letter \x148D 135-1245 CANADIAN SYLLABICS CO letter \x148E 135-12456 CANADIAN SYLLABICS COO letter \x1490 246-1245 CANADIAN SYLLABICS CA letter \x1491 246-12456 CANADIAN SYLLABICS CAA letter \x14A1 1245 CANADIAN SYLLABICS C # M letter \x14A3 56-134 CANADIAN SYLLABICS ME letter \x14A5 45-134 CANADIAN SYLLABICS MI letter \x14A6 45-1346 CANADIAN SYLLABICS MII letter \x14A7 135-134 CANADIAN SYLLABICS MO letter \x14A8 135-1346 CANADIAN SYLLABICS MOO letter \x14AA 246-134 CANADIAN SYLLABICS MA letter \x14AB 246-1346 CANADIAN SYLLABICS MAA letter \x14BB 134 CANADIAN SYLLABICS M # N letter \x14C0 56-1345 CANADIAN SYLLABICS NE letter \x14C2 45-1345 CANADIAN SYLLABICS NI letter \x14C3 45-13456 CANADIAN SYLLABICS NII letter \x14C4 135-1345 CANADIAN SYLLABICS NO letter \x14C5 135-13456 CANADIAN SYLLABICS NOO letter \x14C7 246-1345 CANADIAN SYLLABICS NA letter \x14C8 246-13456 CANADIAN SYLLABICS NAA letter \x14D0 1345 CANADIAN SYLLABICS N # L letter \x14D3 56-123 CANADIAN SYLLABICS LE letter \x14D5 45-123 CANADIAN SYLLABICS LI letter \x14D6 45-1236 CANADIAN SYLLABICS LII letter \x14D7 135-123 CANADIAN SYLLABICS LO letter \x14D8 135-1236 CANADIAN SYLLABICS LOO letter \x14DA 246-123 CANADIAN SYLLABICS LA letter \x14DB 246-1236 CANADIAN SYLLABICS LAA letter \x14EA 123 CANADIAN SYLLABICS L # S letter \x14ED 56-234 CANADIAN SYLLABICS SE letter \x14EF 45-234 CANADIAN SYLLABICS SI letter \x14F0 45-2346 CANADIAN SYLLABICS SII letter \x14F1 135-234 CANADIAN SYLLABICS SO letter \x14F2 135-2346 CANADIAN SYLLABICS SOO letter \x14F4 246-234 CANADIAN SYLLABICS SA letter \x14F5 246-2346 CANADIAN SYLLABICS SAA letter \x1505 234 CANADIAN SYLLABICS S # J (Y) letter \x1526 56-245 CANADIAN SYLLABICS YE letter \x1528 45-245 CANADIAN SYLLABICS YI letter \x1529 45-2456 CANADIAN SYLLABICS YII letter \x152A 135-245 CANADIAN SYLLABICS YO letter \x152B 135-2456 CANADIAN SYLLABICS YOO letter \x152D 246-245 CANADIAN SYLLABICS YA letter \x152E 246-2456 CANADIAN SYLLABICS YAA letter \x153E 245 CANADIAN SYLLABICS Y # R letter \x1542 56-1235 CANADIAN SYLLABICS RE letter \x1546 45-1235 CANADIAN SYLLABICS RI letter \x1547 45-12356 CANADIAN SYLLABICS RII letter \x1548 135-1235 CANADIAN SYLLABICS RO letter \x1549 135-12356 CANADIAN SYLLABICS ROO letter \x154B 246-1235 CANADIAN SYLLABICS RA letter \x154C 246-12356 CANADIAN SYLLABICS RAA letter \x1550 1235 CANADIAN SYLLABICS r # V (F) letter \x1553 56-124 CANADIAN SYLLABICS FE letter \x1555 45-124 CANADIAN SYLLABICS FI letter \x1556 45-1246 CANADIAN SYLLABICS FII letter \x1557 135-124 CANADIAN SYLLABICS FO letter \x1558 135-1246 CANADIAN SYLLABICS FOO letter \x1559 246-124 CANADIAN SYLLABICS FA letter \x155A 246-1246 CANADIAN SYLLABICS FAA letter \x155D 124 CANADIAN SYLLABICS F # Q letter \x166F 56-12345 CANADIAN SYLLABICS QE letter \x157F 45-12345 CANADIAN SYLLABICS QI letter \x1580 45-123456 CANADIAN SYLLABICS QII letter \x1581 135-12345 CANADIAN SYLLABICS QO letter \x1582 135-123456 CANADIAN SYLLABICS QOO letter \x1583 246-12345 CANADIAN SYLLABICS QA letter \x1584 246-123456 CANADIAN SYLLABICS QAA letter \x1585 12345 CANADIAN SYLLABICS Q # NG letter \x1553 56-15 CANADIAN SYLLABICS NGE letter \x158F 45-15 CANADIAN SYLLABICS NGI letter \x1590 45-156 CANADIAN SYLLABICS NGII letter \x1591 135-15 CANADIAN SYLLABICS NGO letter \x1592 135-156 CANADIAN SYLLABICS NGOO letter \x1593 246-15 CANADIAN SYLLABICS NGA letter \x1594 246-156 CANADIAN SYLLABICS NGAA letter \x1595 15 CANADIAN SYLLABICS NG # NNG #letter \x1553 56-145 CANADIAN SYLLABICS NNGE letter \x1671 45-145 CANADIAN SYLLABICS NNGI letter \x1672 45-1456 CANADIAN SYLLABICS NNGII letter \x1673 135-145 CANADIAN SYLLABICS NNGO letter \x1674 135-1456 CANADIAN SYLLABICS NNGOO letter \x1675 246-145 CANADIAN SYLLABICS NNGA letter \x1676 246-1456 CANADIAN SYLLABICS NNGAA letter \x1596 145 CANADIAN SYLLABICS NNNG # Belted L #letter \x1553 56-24 CANADIAN SYLLABICS LHE letter \x15A0 45-24 CANADIAN SYLLABICS LHI letter \x15A1 45-246 CANADIAN SYLLABICS LHII letter \x15A2 135-24 CANADIAN SYLLABICS LHO letter \x15A3 135-246 CANADIAN SYLLABICS LHOO letter \x15A4 246-24 CANADIAN SYLLABICS LHA letter \x15A5 246-246 CANADIAN SYLLABICS LHAA letter \x15A6 24 CANADIAN SYLLABICS LH # H letter \x157C 125 CANADIAN SYLLABICS H always \x157C\x1403 45-125-1 CANADIAN SYLLABICS HI always \x157C\x1404 45-125-16 CANADIAN SYLLABICS HII always \x157C\x1405 135-125-1 CANADIAN SYLLABICS HO always \x157C\x1406 135-125-16 CANADIAN SYLLABICS HOO always \x157C\x140A 246-125-1 CANADIAN SYLLABICS HA always \x157C\x140B 246-125-16 CANADIAN SYLLABICS HAA letter ' 125 CANADIAN SYLLABICS H liblouis-2.5.3/tables/ukmaths.ctb0000664000175000017500000001012212161041546013702 00000000000000# liblouis: UK Maths Table for mathematics # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Updated 6-18-08 by Mike Sivill include ukmaths_single_cell_defs.cti include ukmaths_unicode_defs.cti # grouping definitions are character-definition rules grouping mrow \x0001\x0002 1e,2e grouping mfrac \x0003\x0004 3e,4e grouping brackets \x0005\x0006 126,345 # Braille indicators numsign 3456 capsign 6 begcaps 6-6 endcaps 6-3 singleletterital 4 singleletterbold 4 # litdigit opcodes must be in this table, not the single-cell table. include litdigits6Dots.uti # No letsign but endnum for letters a-j. endnum a 56-1 endnum b 56-12 endnum c 56-14 endnum d 56-145 endnum e 56-15 endnum f 56-124 endnum g 56-1245 endnum h 56-125 endnum i 56-24 endnum j 56-245 # Ordinary translation entries always / 456-34 always = a-56-2356 always + a-56-235 always > a-135-a always < a-246-a always % 25-1234 always $ 256 always & 4-12346 always ~ 45-156 always ! 6-236 prepunc " 236 postpunc " 356 postpunc ' 3 always '' 36 always ''' 36-3 midnum , 3 postpunc , 6-2 always , 3 always # 35-2345 print number sign before number always ( 126 always ) 345 pass2 [{mrow]@126/@345}mrow ? pass2 @126[{mrow]/}mrow@345 ? decpoint . 2 always ... 3-3-3 hyphen - 36 postpunc . 6-256 postpunc ; 6-23 postpunc : 6-25 postpunc ? 6-236 endnum % 4-356 midnum * 4-16 repeated \s 0 repeated \x00a0 a # swap opcodes for replacement and testing. swapcd dropped 0123456789 356,2,23,25,256,26,235,2356,236,35 swapdd upnum 245,1,12,14,145,15,124,1245,125,24 0,0,0,0,0,0,0,0,0,0 swapdd lownum 356,2,23,25,256,26,235,2356,236,35 0,0,0,0,0,0,0,0,0,0 # now we start doing the real work # Correction rules correct {mrow$ld1-20[}mrow] ? correct "\eb"[{mrow]/}mrow"\ee" ? context "\eb"[]$l"\ee" @56 context "\eb"[]","$l"\ee" @56 context []"@456-34"$d1-10}mfrac #1=1 # context []"@456-34"$d1-10}mfrac #1=1 context []"@346"$d1-10"@12456" #1=1 context []"@16"$d1-10"@12456" #1=1 # context []"@146"$d1-10 #1=1 context #1=1$d1-10 #1=0%dropped # exactdots opcodes for dot patterns in ukmaths.sem exactdots @126 exactdots @345 exactdots @123456 exactdots @346 exactdots @16 exactdots @23456 exactdots @34 exactdots @456-34 exactdots @12456 exactdots @146 # Function names and abbreviations word cos 1246-14 word grad 1246-1245 word cosh 1246-125-14 word sinh 1246-125-234 word tanh 1246-125-2345 word cosech 1246-125-126 word coth 1246-125-1256 word sech 1246-125-36 word log 1246-123 word sin 1246-234 word tan 1246-2345 word cosec 1246-126 word curl 1246-146 word div 1246-1456 word cot 1246-1256 word arccosh 1246-236-14 word arcsinh 1246-236-234 word arctanh 1246-236-2345 word arccosech 1246-236-126 word arccoth 1246-236-1256 word arcsech 1246-236-36 word sec 1246-36 word arccos 1246-4-14 word antilog 1246-4-123 word arcsin 1246-4-234 word arctan 1246-4-2345 word arccosec 1246-4-126 word arccot 1246-4-1256 word arcsec 1246-4-25 word colog 1246-45-123 # pass2 processing pass2 [@3456]%lownum1-10 ? pass2 [@456-34-3456]%lownum1-10 ? # pass3 processing pass3 @346%lownum1-10[@12456] ? pass3 @16[%lownum1-10]@12456 * pass3 {mfrac[@3456%upnum1-10%lownum1-10]}mfrac * liblouis-2.5.3/tables/uni-text.dis0000664000175000017500000003357112161041546014027 00000000000000# This file is obsolete. Do not use! # liblouis: uni-text.dis # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # This is a description of the default text translation table used by BRLTTY. #Hex Dots Dec Char Description display \X0020 0 #32 space display \X0021 2346 #33 ! exclamation mark display \X0022 5 #34 " quotation mark display \X0023 3456 #35 # number sign display \X0024 1246 #36 $ dollar sign display \X0025 146 #37 % percent sign display \X0026 12346 #38 & ampersand display \X0027 3 #39 ' apostrophe display \X0028 12356 #40 ( left parenthesis display \X0029 23456 #41 ) right parenthesis display \X002A 16 #42 * asterisk display \X002B 346 #43 + plus sign display \X002C 6 #44 , comma display \X002D 36 #45 - hyphen-minus display \X002E 46 #46 . full stop display \X002F 34 #47 / solidus display \X0030 356 #480 digit zero display \X0031 2 #491 digit one display \X0032 23 #502 digit two display \X0033 25 #513 digit three display \X0034 256 #524 digit four display \X0035 26 #535 digit five display \X0036 235 #546 digit six display \X0037 2356 #557 digit seven display \X0038 236 #568 digit eight display \X0039 35 #579 digit nine display \X003A 156 #58 : colon display \X003B 56 #59 ; semicolon display \X003C 126 #60 < less-than sign display \X003D 123456 #61 = equals sign display \X003E 345 #62 > greater-than sign display \X003F 1456 #63 ? question mark display \X0040 47 #64 @ commercial at #Hex Dots Dec Char Description display \X0041 1 #65 A Latin capital letter a display \X0042 12 #66 B Latin capital letter b display \X0043 14 #67 C Latin capital letter c display \X0044 145 #68 D Latin capital letter d display \X0045 15 #69 E Latin capital letter e display \X0046 124 #70 F Latin capital letter f display \X0047 1245 #71 G Latin capital letter g display \X0048 125 #72 H Latin capital letter h display \X0049 24 #73 I Latin capital letter i display \X004A 245 #74 J Latin capital letter j display \X004B 13 #75 K Latin capital letter k display \X004C 123 #76 L Latin capital letter l display \X004D 134 #77 M Latin capital letter m display \X004E 1345 #78 N Latin capital letter n display \X004F 1357 #79 O Latin capital letter o display \X0050 1234 #80 P Latin capital letter p display \X0051 12345 #81 Q Latin capital letter q display \X0052 1235 #82 R Latin capital letter r display \X0053 234 #83 S Latin capital letter s display \X0054 2345 #84 T Latin capital letter t display \X0055 136 #85 U Latin capital letter u display \X0056 1236 #86 V Latin capital letter v display \X0057 2456 #87 W Latin capital letter w display \X0058 1346 #88 X Latin capital letter x display \X0059 13456 #89 Y Latin capital letter y display \X005A 1356 #90 Z Latin capital letter z display \X005B 246 # 91 [ left square bracket display \X005C 12567 # 92 \ reverse solidus display \X005D 12456 # 93 ] right square bracket display \X005E 2346 # 94 ^ circumflex accent display \X005F 456 # 95 _ low line display \X0060 345 # 96 ` grave accent display \X0061 1 #97 a Latin small letter a display \X0062 12 #98 b Latin small letter b display \X0063 14 #99 c Latin small letter c display \X0064 145 #100 d Latin small letter d display \X0065 15 #101 e Latin small letter e display \X0066 124 #102 f Latin small letter f display \X0067 1245 #103 g Latin small letter g display \X0068 125 #104 h Latin small letter h display \X0069 24 #105 i Latin small letter i display \X006A 245 #106 j Latin small letter j display \X006B 13 #107 k Latin small letter k display \X006C 123 #108 l Latin small letter l display \X006D 134 #109 m Latin small letter m display \X006E 1345 #110 n Latin small letter n display \X006F 135 #111 o Latin small letter o display \X0070 1234 #112 p Latin small letter p display \X0071 12345 #113 q Latin small letter q display \X0072 1235 #114 r Latin small letter r display \X0073 234 #115 s Latin small letter s display \X0074 2345 #116 t Latin small letter t display \X0075 136 #117 u Latin small letter u display \X0076 1236 #118 v Latin small letter v display \X0077 2456 #119 w Latin small letter w display \X0078 1346 #120 x Latin small letter x display \X0079 13456 #121 y Latin small letter y display \X007A 1356 #122 z Latin small letter z display \X007B 12356 # 123 { left curly bracket display \X007C 34 # 124 | vertical line display \X007D 23456 # 125 } right curly bracket display \X007E 45 # 126 ~ tilde display \X007F 4568 # 127 ^ ?delete #Hex Dots Dec Char Description display \X0080 48 # 128 ~@ display \X0081 18 # 129 ~A display \X0082 128 # 130 ~Bbreak permitted here display \X0083 148 # 131 ~Cno break here display \X0084 1458 # 132 ~D display \X0085 158 # 133 ~Enext line display \X0086 1248 # 134 ~Fstart of selected area display \X0087 12458 # 135 ~Gend of selected area display \X0088 1258 # 136 ~Hcharacter tabulation set display \X0089 248 # 137 ~Icharacter tabulation with justification display \X008A 2458 # 138 ~Jline tabulation set display \X008B 138 # 139~Kpartial line down display \X008C 1238 # 140~Lpartial line up display \X008D 1348 # 141~Mreverse line feed display \X008E 13458 # 142~Nsingle shift two display \X008F 1358 # 143~Osingle shift three display \X0090 12348 # 144~Pdevice control string display \X0091 123458 # 145~Qprivate use one display \X0092 12358 # 146~Rprivate use two display \X0093 2348 # 147~Sset transmit state display \X0094 23458 # 148~Tcancel character display \X0095 1368 # 149~Umessage waiting display \X0096 12368 # 150~Vstart of guarded area display \X0097 24568 # 151~Wend of guarded area display \X0098 13468 # 152~Xstart of string display \X0099 134568 # 153~Y display \X009A 13568 # 154~Zsingle character introducer display \X009B 2468 # 155~[control sequence introducer display \X009C 12568 # 156~\string terminator display \X009D 124568 # 157~]operating system command display \X009E 458 # 158~^privacy message display \X009F 4568 # 159 ~_application program command display \X00A0 0 #160 no-break space #Hex Dots Dec Char Description display \X0000 478 #0^@null display \X0001 178 #1^Astart of heading display \X0002 1278 #2^Bstart of text display \X0003 1478 #3^Cend of text display \X0004 14578 #4^Dend of transmission display \X0005 1578 #5^Eenquiry display \X0006 12478 #6^Facknowledge display \X0007 124578 #7^Gbell display \X0008 12578 #8^Hbackspace display \X0009 2478 #9^Ihorizontal tabulation display \X000A 24578 #10^Jline feed display \X000B 1378 #11^Kvertical tabulation display \X000C 12378 #12^Lform feed display \X000D 13478 #13^Mcarriage return display \X000E 134578 #14^Nshift out display \X000F 13578 #15^Oshift in display \X0010 123478 #16^Pdata link escape display \X0011 1234578 #17^Qdevice control one display \X0012 123578 #18^Rdevice control two display \X0013 23478 #19^Sdevice control three display \X0014 234578 #20^Tdevice control four display \X0015 13678 #21^Unegative acknowledge display \X0016 123678 #22^Vsynchronous idle display \X0017 245678 #23^Wend of transmission block display \X0018 134678 #24^Xcancel display \X0019 1345678 #25^Yend of medium display \X001A 135678 #26^Zsubstitute display \X001B 24678 #27^[escape display \X001C 125678 #28^\file separator display \X001D 1245678 #29^]group separator display \X001E 4578 #30^^record separator display \X001F 45678 #31^_unit separator #Hex Dots Dec Char Description display \X00A1 23467 # 161 ¡ inverted exclamation mark display \X00A2 58 #162 ¢ cent sign display \X00A3 34567 # 163 £ pound sign display \X00A4 1467 # 164 ¤ currency sign display \X00A5 123467 # 165 Â¥ yen sign display \X00A6 1567 # 166 ¦ broken bar display \X00A7 357 # 167 § section sign display \X00A8 57 # 168 ¨ diaeresis display \X00A9 23567 # 169 © copyright sign display \X00AA 8 # 170 ª feminine ordinal indicator display \X00AB 1267 # 171 « left-pointing double angle quotation mark display \X00AC 2567 # 172 ¬ not sign display \X00AD 367 # 173 ­ soft hyphen display \X00AE 2367 # 174 ® registered sign display \X00AF 267 # 175 ¯ macron display \X00B0 3567 # 176 ° degree sign display \X00C0 23578 # 192 À Latin capital letter a with grave display \X00C1 1678 # 193 à Latin capital letter a with acute display \X00C2 16 # 194  Latin capital letter a with circumflex display \X00C3 578 # 195à Latin capital letter a with tilde display \X00C4 1234678 # 196Ä Latin capital letter a with diaeresis display \X00C5 34578 # 197Ã… Latin capital letter a with ring above display \X00C6 378 # 198Æ Latin capital letter ae display \X00C7 34678 # 199Ç Latin capital letter c with cedilla display \X00C8 23567 # 200 È Latin capital letter e with grave display \X00C9 12678 # 201É Latin capital letter e with acute display \X00CA 2378 # 202 Ê Latin capital letter e with circumflex display \X00CB 12345678 # 203Ë Latin capital letter e with diaeresis display \X00CC 23678 # 204ÃŒ Latin capital letter i with grave display \X00CD 14678 # 205à Latin capital letter i with acute display \X00CE 2578 # 206 ÃŽ Latin capital letter i with circumflex display \X00CF 1235678 # 207à Latin capital letter i with diaeresis display \X00D0 678 # 208à Latin capital letter eth display \X00D1 4678 # 209Ñ Latin capital letter n with tilde display \X00D2 3578 # 210Ã’ Latin capital letter o with grave display \X00D3 145678 # 211Ó Latin capital letter o with acute display \X00D4 25678 # 212 Ô Latin capital letter o with circumflex display \X00D5 5678 # 213Õ Latin capital letter o with tilde display \X00D6 234678 # 214Ö Latin capital letter o with diaeresis display \X00D7 167 # 215×multiplication sign display \X00D8 3478 # 216Ø Latin capital letter o with stroke display \X00D9 35678 # 217Ù Latin capital letter u with grave display \X00DA 15678 # 218Ú Latin capital letter u with acute display \X00DB 2678 # 219 Û Latin capital letter u with circumflex display \X00DC 2345678 # 220Ü Latin capital letter u with diaeresis display \X00DD 124678 # 221à Latin capital letter y with acute display \X00DE 3678 # 222Þ Latin capital letter thorn display \X00DF 345678 # 223ß Latin small letter sharp s display \X00E0 2358 # 224à Latin small letter a with grave display \X00E1 168 # 225á Latin small letter a with acute display \X00E2 16 # 226 â Latin small letter a with circumflex display \X00E3 58 # 227ã Latin small letter a with tilde display \X00E4 123468 # 228ä Latin small letter a with diaeresis display \X00E5 3458 # 229Ã¥ Latin small letter a with ring above display \X00E6 38 # 230æ Latin small letter ae display \X00E7 3468 # 231ç Latin small letter c with cedilla display \X00E8 23568 # 232è Latin small letter e with grave display \X00E9 1268 # 233é Latin small letter e with acute display \X00EA 238 # 234 ê Latin small letter e with circumflex display \X00EB 1234568 # 235ë Latin small letter e with diaeresis display \X00EC 2368 # 236ì Latin small letter i with grave display \X00ED 1468 # 237í Latin small letter i with acute display \X00EE 258 # 238 î Latin small letter i with circumflex display \X00EF 123568 # 239ï Latin small letter i with diaeresis display \X00F0 68 # 240ð Latin small letter eth display \X00F1 468 # 241ñ Latin small letter n with tilde display \X00F2 358 # 242ò Latin small letter o with grave display \X00F3 14568 # 243ó Latin small letter o with acute display \X00F4 2568 # 244 ô Latin small letter o with circumflex display \X00F5 568 # 245õ Latin small letter o with tilde display \X00F6 23468 # 246ö Latin small letter o with diaeresis display \X00F7 347 # 247÷division sign display \X00F8 348 # 248ø Latin small letter o with stroke display \X00F9 3568 # 249ù Latin small letter u with grave display \X00FA 1568 # 250ú Latin small letter u with acute display \X00FB 268 # 251 û Latin small letter u with circumflex display \X00FC 234568 # 252ü Latin small letter u with diaeresis display \X00FD 12468 # 253ý Latin small letter y with acute display \X00FE 368 # 254þ Latin small letter thorn display \X00FF 34568 # 255ÿ Latin small letter y with diaeresis display \X00BB 3457 # 187»right-pointing double angle quotation mark display \X00B9 27 # 185¹superscript one display \X00B2 237 # 178²superscript two display \X00B3 257 # 179³superscript three display \X00B1 3467 # 177±plus-minus sign display \X00D7 167 # 215×multiplication sign display \X00B7 467 # 183·middle dot display \X00BF 14567 # 191¿inverted question mark display \X00B6 2357 # 182 ¶ pilcrow sign #Hex Dots Dec Char Description display \X00BC 123567 # 188¼vulgar fraction one quarter display \X00BD 1234567 # 189½vulgar fraction one half display \X00BE 234567 # 190¾vulgar fraction three quarters # Each of the three extended accent characters is the same as its conventional # compose character but with dot7 added: #Hex Dots Dec Char Description display \X00B4 37 # 180´acute accent display \X00B8 67 # 184¸cedilla # The two gender symbols are: #Hex Dots Dec Char Description display \X00BA 7 # 186ºmasculine ordinal indicator # The three remaining characters are: #Hex Dots Dec Char Description display \X00B5 567 # 181µmicro sign # The nonbreaking space is dots 7 and 8 because this presents a sequence of # nonbreaking spaces as a smooth low line segment. #Hex Dots Dec Char Description liblouis-2.5.3/tables/chardefs-ueb.cti0000664000175000017500000002004412161041546014571 00000000000000# liblouis: English, U.S. (EBAE) character definitions table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Computer braille single-cell characters space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation ( 12356 punctuation } 12456 punctuation ] 124567 punctuation ? 1456 punctuation : 156 punctuation ) 23456 punctuation ! 2346 punctuation { 246 punctuation [ 2467 punctuation ' 3 punctuation - 36 punctuation . 46 punctuation " 5 punctuation ; 56 punctuation , 6 sign & 12346 sign $ 1246 sign | 1256 sign \\ 12567 sign % 146 sign * 16 sign # 3456 punctuation ` 4 sign _ 456 sign ^ 457 sign @ 47 math = 123456 math < 126 math / 34 math > 345 math + 346 math ~ 45 # Accented letters lowercase \x00DF 4-234 LATIN SMALL LETTER SHARP S German lowercase \x00E0 4-1 LATIN SMALL LETTER A WITH GRAVE 0061 0300 LATIN lowercase \x00E1 4-1 LATIN SMALL LETTER A WITH ACUTE 0061 0301 LATIN lowercase \x00E2 4-1 LATIN SMALL LETTER A WITH CIRCUMFLEX 0061 0302 lowercase \x00E3 4-1 LATIN SMALL LETTER A WITH TILDE 0061 0303 LATIN lowercase \x00E4 4-1 LATIN SMALL LETTER A WITH DIAERESIS 0061 0308 LATIN lowercase \x00E5 4-1 LATIN SMALL LETTER A WITH RING ABOVE 0061 030A lowercase \x00E6 4-1 LATIN SMALL LETTER AE LATIN SMALL LETTER A E ash * lowercase \x00E7 4-14 LATIN SMALL LETTER C WITH CEDILLA 0063 0327 LATIN lowercase \x00E8 4-15 LATIN SMALL LETTER E WITH GRAVE 0065 0300 LATIN lowercase \x00E9 4-15 LATIN SMALL LETTER E WITH ACUTE 0065 0301 LATIN lowercase \x00EA 4-15 LATIN SMALL LETTER E WITH CIRCUMFLEX 0065 0302 lowercase \x00EB 4-15 LATIN SMALL LETTER E WITH DIAERESIS 0065 0308 lowercase \x00EC 4-24 LATIN SMALL LETTER I WITH GRAVE 0069 0300 LATIN lowercase \x00ED 4-24 LATIN SMALL LETTER I WITH ACUTE 0069 0301 LATIN lowercase \x00EE 4-24 LATIN SMALL LETTER I WITH CIRCUMFLEX 0069 0302 lowercase \x00EF 4-24 LATIN SMALL LETTER I WITH DIAERESIS 0069 0308 lowercase \x00F0 4-15 LATIN SMALL LETTER ETH Icelandic 00D0 00D0 lowercase \x00F1 4-1345 LATIN SMALL LETTER N WITH TILDE 006E 0303 LATIN lowercase \x00F2 4-135 LATIN SMALL LETTER O WITH GRAVE 006F 0300 LATIN lowercase \x00F3 4-135 LATIN SMALL LETTER O WITH ACUTE 006F 0301 LATIN lowercase \x00F4 4-135 LATIN SMALL LETTER O WITH CIRCUMFLEX 006F 0302 lowercase \x00F5 4-135 LATIN SMALL LETTER O WITH TILDE 006F 0303 LATIN lowercase \x00F6 4-135 LATIN SMALL LETTER O WITH DIAERESIS 006F 0308 lowercase \x00F8 4-135 LATIN SMALL LETTER O WITH STROKE LATIN SMALL lowercase \x00F9 4-136 LATIN SMALL LETTER U WITH GRAVE 0075 0300 LATIN lowercase \x00FA 4-136 LATIN SMALL LETTER U WITH ACUTE 0075 0301 LATIN lowercase \x00FB 4-136 LATIN SMALL LETTER U WITH CIRCUMFLEX 0075 0302 lowercase \x00FC 4-136 LATIN SMALL LETTER U WITH DIAERESIS 0075 0308 lowercase \x00FD 4-13456 LATIN SMALL LETTER Y WITH ACUTE 0079 0301 LATIN lowercase \x00FE 4-2345 LATIN SMALL LETTER THORN Icelandic 00DE 00DE lowercase \x00FF 4-13456 LATIN SMALL LETTER Y WITH DIAERESIS 0079 0308 uppercase \x00C0 4-1 LATIN CAPITAL LETTER A WITH GRAVE 0041 0300 LATIN uppercase \x00C1 4-1 LATIN CAPITAL LETTER A WITH ACUTE 0041 0301 LATIN uppercase \x00C2 4-1 LATIN CAPITAL LETTER A WITH CIRCUMFLEX 0041 0302 uppercase \x00C3 4-1 LATIN CAPITAL LETTER A WITH TILDE 0041 0303 LATIN uppercase \x00C4 4-1 LATIN CAPITAL LETTER A WITH DIAERESIS 0041 0308 uppercase \x00C5 4-1 LATIN CAPITAL LETTER A WITH RING ABOVE 0041 030A uppercase \x00C6 4-1 LATIN CAPITAL LETTER AE LATIN CAPITAL LETTER A E uppercase \x00C7 4-14 LATIN CAPITAL LETTER C WITH CEDILLA 0043 0327 uppercase \x00C8 4-15 LATIN CAPITAL LETTER E WITH GRAVE 0045 0300 LATIN uppercase \x00C9 4-15 LATIN CAPITAL LETTER E WITH ACUTE 0045 0301 LATIN uppercase \x00CA 4-15 LATIN CAPITAL LETTER E WITH CIRCUMFLEX 0045 0302 uppercase \x00CB 4-15 LATIN CAPITAL LETTER E WITH DIAERESIS 0045 0308 uppercase \x00CC 4-24 LATIN CAPITAL LETTER I WITH GRAVE 0049 0300 LATIN uppercase \x00CD 4-24 LATIN CAPITAL LETTER I WITH ACUTE 0049 0301 LATIN uppercase \x00CE 4-24 LATIN CAPITAL LETTER I WITH CIRCUMFLEX 0049 0302 uppercase \x00CF 4-24 LATIN CAPITAL LETTER I WITH DIAERESIS 0049 0308 uppercase \x00D0 4-15 LATIN CAPITAL LETTER ETH Icelandic 00F0 uppercase \x00D1 4-1345 LATIN CAPITAL LETTER N WITH TILDE 004E 0303 uppercase \x00D2 4-135 LATIN CAPITAL LETTER O WITH GRAVE 004F 0300 LATIN uppercase \x00D3 4-135 LATIN CAPITAL LETTER O WITH ACUTE 004F 0301 LATIN uppercase \x00D4 4-135 LATIN CAPITAL LETTER O WITH CIRCUMFLEX 004F 0302 uppercase \x00D6 4-135 LATIN CAPITAL LETTER O WITH DIAERESIS 004F 0308 uppercase \x00D8 4-135 LATIN CAPITAL LETTER O WITH STROKE LATIN CAPITAL uppercase \x00D9 4-136 LATIN CAPITAL LETTER U WITH GRAVE 0055 0300 LATIN uppercase \x00DA 4-136 LATIN CAPITAL LETTER U WITH ACUTE 0055 0301 LATIN uppercase \x00DB 4-136 LATIN CAPITAL LETTER U WITH CIRCUMFLEX 0055 0302 uppercase \x00DC 4-136 LATIN CAPITAL LETTER U WITH DIAERESIS 0055 0308 uppercase \x00DD 4-13456 LATIN CAPITAL LETTER Y WITH ACUTE 0059 0301 uppercase \x00DE 4-2345 LATIN CAPITAL LETTER THORN Icelandic 00FE # Miscellaneous math \x00B1 346-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN math \x00B7 4-16 MIDDLE DOT math \x00BC 1456-2-34-256-3456 VULGAR FRACTION ONE QUARTER No 0031 2044 math \x00BD 1456-2-34-23-3456 VULGAR FRACTION ONE HALF No 0031 2044 0032 math \x00BE 1456-25-34-23-3456 VULGAR FRACTION THREE QUARTERS No 0033 math \x00D7 16 MULTIPLICATION SIGN math \x00F7 4-34 DIVISION SIGN punctuation \x0092 3 punctuation \x0097 36-36 punctuation \x00A1 235 INVERTED EXCLAMATION MARK punctuation \x00ad 36 punctuation \x00BF 236 INVERTED QUESTION MARK punctuation \x2011 36 punctuation \x2013 36-36 punctuation \x2014 36-36 punctuation \x2018 6-236 punctuation \x2019 3 punctuation \x2019 356-3 punctuation \x201c 236 punctuation \x201d 356 punctuation \x2026 3 sign \x2122 45-2345 trademark sign sign \x00A2 4-14 CENT SIGN sign \x00A3 3456 POUND SIGN sign \x00A4 1246 CURRENCY SIGN sign \x00A7 4-234 SECTION SIGN sign \x00A9 45-14 COPYRIGHT SIGN sign \x00AE 45-1235 REGISTERED SIGN REGISTERED TRADE MARK SIGN sign \x00B0 56-145-1245 DEGREE SIGN sign \x00B4 b4 ACUTE ACCENT 0020 0301 SPACING ACUTE sign \x00B5 46-134 MICRO SIGN 03BC 039C 039C # sign \x00A5 YEN SIGN punctuation \x00A6 456-1256 BROKEN BAR BROKEN VERTICAL BAR punctuation \x0093 236 punctuation \x0094 356 punctuation \x0096 36 # sign \x00A8 DIAERESIS 0020 0308 SPACING DIAERESIS # sign \x00AA FEMININE ORDINAL INDICATOR 0061 # punctuation \x00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK LEFT # sign \x00AC NOT SIGN # sign \x00AF MACRON 0020 0304 SPACING MACRON # math \x00B2 SUPERSCRIPT TWO 0032 2 2 SUPERSCRIPT DIGIT TWO # math \x00B3 SUPERSCRIPT THREE 0033 3 3 SUPERSCRIPT DIGIT THREE # sign \x00B6 PILCROW SIGN PARAGRAPH SIGN # sign \x00B8 CEDILLA 0020 0327 SPACING CEDILLA # math \x00B9 SUPERSCRIPT ONE 0031 1 1 SUPERSCRIPT DIGIT ONE # sign \x00BA MASCULINE ORDINAL INDICATOR 006F # punctuation \x00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK Pf Y liblouis-2.5.3/tables/sr-g1.ctb0000664000175000017500000000257512161041546013174 00000000000000# # Copyright (C) 2011 by Peter Engström # Copyright (C) 2011 by Monk Jeremiah, Manastir Decani # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # # SERBIAN # ======= # Authors: Peter Engström, Index Braille # Monk Jeremiah, Manastir Decani # # Date: Note: # 2011-03-28 Initial release # # --------------------------------------------------------------------------------------- include sr-chardefs.cti include braille-patterns.cti include sr-translation.cti # --------------------------------------------------------------------------------------- liblouis-2.5.3/tables/dra.ctb0000664000175000017500000000167112161041546013005 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Dravidian include tamil.cti include text_nabcc.dis liblouis-2.5.3/tables/hi-in-g1.utb0000664000175000017500000001520412161041546013567 00000000000000# liblouis: Hindi Grade 1 table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # Created by Code Factory S.L. include en-us-g1.ctb #----------- sign \X0901 3 # davanagari chandra bindu sign \X0902 56 # davanagari anuswar sign \X0903 6 # davanagari visarg sign \X0905 1 #chhoTa aa" sign \X0906 345 #baraa aa" sign \X0907 24 #"chhoTi ii" sign \X0908 35 #"baRii ii" sign \X0909 136 #"chhoTaa u" sign \X090A 1256 #"baRaa uu" sign \X090B 5-1235 #"RRi" sign \X090C 5-12357 #"lri" sign \X090D 157 #"e" sign \X090E 347 #"ai" sign \X090F 15 #"e" sign \X0910 34 #"ai" sign \X0911 1357 #"o" sign \X0912 2467 #"au" sign \X0913 135 #"o" sign \X0914 246 #"au" sign \X0915 13 # davanagari ka sign \X0916 46 # davanagari kha sign \X0917 1245 # davanagari ga sign \X0918 126 # davanagari gha sign \X0919 346 #davanagari aNgaa sign \X091A 14 # davanagari ca sign \X091B 16 # davanagari cha sign \X091C 245 # davanagari ja sign \X091D 356 # davanagari jha sign \X091E 25 #davanagari yangaa sign \X091F 23456 # davanagari ta sign \X0920 2456 # davanagari tha sign \X0921 1246 # davanagari da sign \X0922 123456 # davanagari dha sign \X0923 3456 #davanagari nna sign \X0924 2345 # davanagari ta sign \X0925 1456 # davanagari tha sign \X0926 145 # davanagari da sign \X0927 2346 # davanagari dha sign \X0928 1345 #davanagari na sign \X092A 1234 # davanagari pa sign \X092B 235 # davanagari tha sign \X092C 12 # davanagari ba sign \X092D 45 # davanagari bha sign \X092E 134 #davanagari ma sign \X092F 13456 # davanagari yaa sign \X0930 1235 # davanagari ra sign \X0931 12357 # davanagari rra sign \X0932 123 # davanagari la sign \X0933 1237 #davanagari la sign \X0934 12378 #davanagari la sign \X0935 1236 #davanagari va sign \X0936 146 #davanagari sha sign \X0937 12346 #davanagari ssha sign \X0938 234 #davanagari sa sign \X0939 125 #davanagari ha #-------- # matras sign \X093E 345 #baraa aa ki matra sign \X093F 24 #"chhoTi ii matra sign \X0940 35 #"baRii ii matra sign \X0941 136 #chhoTaa u matra sign \X0942 1256 #"baRaa uu matra" sign \X0943 5-1235 #"RRi matra" sign \X0944 5-12357 #"lri matra" sign \X0945 157 #"e matra" sign \X0946 347 #"ai matra" sign \X0947 15 #"e matra" sign \X0948 34 #"ai matra" sign \X0949 1357 #"o" sign \X094A 2467 #"au" sign \X094B 135 #"o matra" sign \X094C 246 #"au matra" sign \X094D 4 #-------- # digits digit \X0966 245 # davanagari 0 digit \X0967 1 # davanagari 1 digit \X0968 12 # davanagari 2 digit \X0969 14 # davanagari 3 digit \X096A 145 # davanagari 4 digit \X096B 15 # davanagari 5 digit \X096C 124 # davanagari 6 digit \X096D 1245 # davanagari 7 digit \X096E 125 # davanagari 8 digit \X096F 24 # davanagari 9 #-------- # half characters always \X0915\x094D 4-13 # davanagari ka always \X0916\x094D 4-46 # davanagari kha always \X0917\x094D 4-1234 # davanagari ga always \X0918\x094D 4-126 # davanagari gha always \X0919\x094D 4-346 #davanagari aNgaa always \X091A\x094D 4-14 # davanagari ca always \X091B\x094D 4-16 # davanagari cha always \X091C\x094D 4-245 # davanagari ja always \X091D\x094D 4-356 # davanagari jha always \X091E\x094D 4-25 #davanagari yangaa always \X091F\x094d 4-23456 # davanagari ta always \X0920\x094D 4-2456 # davanagari tha always \X0921\x094D 4-1246 # davanagari da always \X0922\x094D 4-123456 # davanagari dha always \X0923\x094D 4-3456 #davanagari nna always \X0924\x094D 4-2345 # davanagari ta always \X0925\x094D 4-1456 # davanagari tha always \X0926\x094D 4-145 # davanagari da always \X0927\x094D 4-2346 # davanagari dha always \X0928\x094D 4-1345 #davanagari na always \X092A\x094D 4-1234 # davanagari pa always \X092B\x094D 4-235 # davanagari tha always \X092C\x094D 4-12 # davanagari ba always \X092D\x094D 4-2346 # davanagari bha always \X092E\x094D 4-1345 #davanagari ma always \X092F\x094D 4-13456 # davanagari yaa always \X0930\x094D 4-1235 # davanagari ra always \X0931\x094D 4-1235 # davanagari rra always \X0932\x094D 4-123 # davanagari la always \X0933\x094D 4-123 #davanagari la always \X0934\x094D 4-123 #davanagari la always \X0935\x094D 4-1236 #davanagari va always \X0936\x094D 4-146 #davanagari sha always \X0937\x094D 4-12346 #davanagari ssha always \X0938\x094D 4-234 #davanagari sa always \X0939\x094D 4-125 #davanagari ha #------------ # consonent followed by vowel but not matra class HindiVowel \x0907\x0908\x0909\x090A\x090D\x090E\x090F\x0910\x0911\x0912\x0913\x0914 before HindiVowel always \x0915 13-1 # davanagari ka before HindiVowel always \x0916 46-1 # davanagari kha before HindiVowel always \x0917 1245-1 # davanagari ga before HindiVowel always \x0918 126-1 # davanagari gha before HindiVowel always \x091A 14-1 # davanagari ca before HindiVowel always \x091B 16-1 # davanagari cha before HindiVowel always \x091C 245-1 # davanagari ja before HindiVowel always \x091D 356-1 # davanagari jha before HindiVowel always \x091F 23456-1 # davanagari ta before HindiVowel always \x0920 2456-1 # davanagari tha before HindiVowel always \x0921 1246-1 # davanagari da before HindiVowel always \x0922 123456-1 # davanagari dha before HindiVowel always \x0923 3456-1 #davanagari nna before HindiVowel always \x0924 2345-1 # davanagari ta before HindiVowel always \x0925 1456-1 # davanagari tha before HindiVowel always \x0926 145-1 # davanagari da before HindiVowel always \x0927 2346-1 # davanagari dha before HindiVowel always \x0928 1345-1 #davanagari na before HindiVowel always \x092A 1234-1 # davanagari pa before HindiVowel always \x092B 235-1 # davanagari tha before HindiVowel always \x092C 12-1 # davanagari ba before HindiVowel always \x092D 45-1 # davanagari bha before HindiVowel always \x092E 134-1 #davanagari ma before HindiVowel always \x092F 13456-1 # davanagari yaa before HindiVowel always \x0930 1235-1 # davanagari ra before HindiVowel always \x0931 12357-1 # davanagari rra before HindiVowel always \x0932 123-1 # davanagari la before HindiVowel always \x0933 1237-1 #davanagari la before HindiVowel always \x0934 12378-1 #davanagari la before HindiVowel always \x0935 1236-1 #davanagari va before HindiVowel always \x0936 146-1 #davanagari sha before HindiVowel always \x0937 12346-1 #davanagari ssha before HindiVowel always \x0938 234-1 #davanagari sa before HindiVowel always \x0939 125-1 #davanagari ha liblouis-2.5.3/tables/hu-hu-g1.ctb0000664000175000017500000001037712161041546013575 00000000000000# liblouis: Hungarian Grade 1 table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2011 by the BRLTTY Team # # Copyright (C) 2011-2012, IT Foundation for the Visually Impaired - Hungary. Homepage: www.infoalap.hu # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by Attila Hammer hammer.attila@infoalap.hu" # # If you found bugs with hungarian grade1 table, report it with following address: # Attila Hammer 46-2 #Other exceptions With need marking different dot combination always Q 12346 always Z 126 always # 123456 always $ 5-145 always % 3456-245-356 always ~ 5-2345 always < 5-13 always > 46-2 always / 5-2 always | 45 always { 12345 always } 12456 always [ 12356 always ] 23456 always \\ 16 always ^ 2346 always ` 4 always Æ 1 always lyú 456-346 always lysz 456-156 undefined 26 liblouis-2.5.3/tables/gr-gr-g1.utb0000664000175000017500000004072212161041546013604 00000000000000# liblouis: Greek (Greece) Grade 1 Braille Table # Created by Leon Ungier . # include text_nabcc.dis include uni-text.dis # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 # 33 exclamation mark x0021 punctuation " 2356 double quote x0022 sign # 3456 number sign x0023 sign $ 256-3456 dollar sign x0024 sign % 25-1234 sign & 12346 ampersand z0026 punctuation ' 36 apostrophe x0027 punctuation ( 2356 left parenthesis x0028 punctuation ) 2356 right parenthesis x0029 sign * 35 asterisk x002A punctuation ? 236 (must be here) question mark x003F sign | 56 x007C *LU* must be here so below is accepted # math + 56-235 plus 002B math + 26 on specific request # midnum + 0-56-235 on specific request midnum + 36-3456 # midnum * 0-56-236 multiplication midnum * 36-3456 punctuation , 2 coma 002C punctuation - 36 hyphen-minus 002D punctuation . 256 point 002E math / 34 solidus 002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 26 semicolon x003B math < 5-246 less-than sign x003C # math = 2356 equal sign x003D math = 36 on specific request math > 5-135 greater-than sign x003E sign @ 345 commercial at x0040 include latinLetterDef6Dots.uti uplow \x0386\x03AC 1 Greek letter alpha with tonos uplow \x0388\x03AD 15 Greek letter epsilon with tonos uplow \x0389\x03AE 345 Greek letter eta with tonos uplow \x038A\x03AF 24 Greel letter iota with sonos uplow \x038C\x03CC 135 Greek letter omicron with tonos uplow \x038E\x03CD 13456 Greek letter upsilon with tonos uplow \x038F\x03CE 245 Greek letter omega with tonos uplow \x0391\X03B1 1 Greek letter alpha uplow \x0392\X03B2 12 Greek letter beta uplow \x0393\X03B3 1245 Greek letter gamma uplow \x0394\X03B4 145 Greek letter delta uplow \x0395\X03B5 15 Greek letter epsilon uplow \x0396\X03B6 1356 Greek letter zeta uplow \x0397\X03B7 345 Greek letter eta uplow \x0398\X03B8 1456 Greek letter theta uplow \x0399\X03B9 24 Greek letter iota uplow \x039A\X03BA 13 Greek letter kappa uplow \x039B\X03BB 123 Greek letter lamda uplow \x039C\X03BC 134 Greek letter Mu uplow \x039D\X03BD 1345 Greek letter Nu uplow \x039E\X03BE 1346 Greek letter Xi uplow \x039F\X03BF 135 Greek letter Omicron uplow \x03A0\X03C0 1234 Greek letter Pi uplow \x03A1\X03C1 1235 Greek letter Rho uplow \x03A3\X03C3 234 Greek letter sigma uplow \x03A4\X03C4 2345 Greek letter Tau uplow \x03A5\X03C5 13456 Greek letter Upsilon uplow \x03A6\X03C6 124 Greek letter Phi uplow \x03A7\X03C7 125 Greek letter Chi uplow \x03A8\X03C8 12346 Greek letter Psi uplow \x03A9\X03C9 245 Greek letter Omega punctuation [ 6-2356 left square bracket x005B sign \\ 16 reverse solidus x005C punctuation ] 2356-6 right square bracket x005D sign ^ 346 circumflex accent x005E sign _ 456 low line x005F sign ` 6 grave accent x0060 # a - z # 97 - 122 x0061-x007A # punctuation { 12356 left curly bracket x007B punctuation { 6-2356 left curly bracket x007B # punctuation } 23456 right curly bracket x007D punctuation } 2356-6 right curly bracket x007D sign ~ 5 math ~ 34 tilde x007E sign \x0080 15 euro sign x0080 punctuation \x0092 3 single right quotation mark x0092 space \X00A0 0 no-break space x00A0 sign ¢ 14 cent sign x00A2 sign £ 123-3456 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 13456 yen sign x00A5 sign § 346 paragraph sign x00A7 sign © 6-14-135-1234-13456-1235-24-1245-125-2345 copyright x00A9 sign ª 46 feminine ordinal indicator x00AA sign « 236 left-pointing double angle quotation mark x00AB sign ® 5-1235 registerd sign x00AE sign ° 356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign µ 123456 x00B5 sign ¹ 4-6-16 superscript 1 sign x00B9 sign » 356 right-pointing double angle quotation mark x00BB sign ¼ 6-16-34-1456 vulgar fraction one quarter x00BC sign ½ 6-16-34-126 vulgar fraction one half x00BD sign ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE letter ¿ 35 inverted question mark x00BF uplow \x00C0\x00E0 12356 letter a with grave (à) x00C0 / 00E0 uplow Ãá 1 letter a with acute x00C1 / 00E1 uplow Ââ 16 letter a with circumflex x00C2 / 00E2 uplow \x00C3\x00E3 345 letter a with tilde x00C3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 246 A with ring above x00C5 / 00E5 uplow Ææ 345 x00C6 / 00E6 uplow Çç 12346 letter c with cedilla x00C7 uplow Èè 2346 x00C8 uplow Éé 123456 small e with acute x00C9 uplow \x00CA\x00EA 126 e with circumflex (ê) x00CA uplow Ëë 1246 x00CB uplow Ññ 12456 N with tilde x00D1 uplow Öö 246 O with diaeresis x00D6 math × 56-236 multiplication sign x00D7 letter ì 24 x00EC letter í 24 small i with acute x00ED letter î 146 x00EE letter ï 12456 x00EF letter ñ 12456 small n with tilde x00F1 letter ò 135 x00F2 letter ó 346 small o with acute x00F3 letter ô 1456 small o with circumflex x00F4 letter \x00F5 246 small o with tilde x00F5 letter ö 246 small o with diaeresis x00F6 math ÷ 0-56-256 division sign x00F7 letter ù 12356 x00F9 letter ú 136 small u with acute x00FA letter û 156 x00FB letter ü 1256 small u with diaeresis x00FC letter \x0192 124 small F with hook x0192 sign \x2122 5-2345-134 Trademark sign punctuation \x2010 46 # 8208 hyphen punctuation \x2011 46 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 single right quotation mark punctuation \x201C 6-236 # 8220 left opening double quote punctuation \x201D 356-6 # 8221 right closing double quote punctuation \x201E 6-236 # 8222 smart double low quotation mark punctuation \x201F 356-6 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x2030 3456-245-356-356 per mile sign ‰ sign \x20AC 15 euro sign x0080 Suzanne's correction sign \x00B7 23 # middle dot sign \x00B8 45 # ibid capsign 46 begcaps 46-46 numsign 3456 midnum , 6 midnum . 2 # midnum - 0-56-36 midnum - 36-3456 # midnum / 256 midnum / 34-3456 midnum : 25 midnum = 56-2356 endnum # 56-3456 begnum ( 126 endnum ) 345 endnum a 6-1 endnum b 6-12 endnum c 6-14 endnum d 6-145 endnum e 6-15 endnum f 6-124 endnum g 6-1245 endnum h 6-125 endnum i 6-24 endnum j 6-245 endnum k 6-13 endnum l 6-123 endnum m 6-134 endnum n 6-1345 endnum o 6-135 endnum p 6-1234 endnum q 6-12345 endnum r 6-1235 endnum s 6-234 endnum t 6-2345 endnum u 6-136 endnum v 6-1236 endnum w 6-2456 endnum x 6-1346 endnum y 6-13456 endnum z 6-1356 endnum \x0391 1 Greek letter alpha endnum \x0392 12 Greek letter beta endnum \x0393 1245 Greek letter gamma endnum \x0394 145 Greek letter delta endnum \x0395 15 Greek letter epsilon endnum \x0396 1356 Greek letter zeta endnum \x0397 345 Greek letter eta endnum \x0398 1456 Greek letter theta endnum \x0399 24 Greek letter iota endnum \x039A 13 Greek letter kappa endnum \x039B 123 Greek letter lamda endnum \x039C 134 Greek letter Mu endnum \x039D 1345 Greek letter Nu endnum \x039E 1346 Greek letter Xi endnum \x039F 135 Greek letter Omicron endnum \x03A0 1234 Greek letter Pi endnum \x03A1 1235 Greek letter Rho endnum \x03A3 234 Greek letter sigma endnum \x03A4 2345 Greek letter Tau endnum \x03A5 13456 Greek letter Upsilon endnum \x03A6 124 Greek letter Phi endnum \x03A7 125 Greek letter Chi endnum \x03A8 12346 Greek letter Psi endnum \x03A9 245 Greek letter Omega endnum \X03B1 6-1 Greek letter alpha endnum \X03B2 6-12 Greek letter beta endnum \X03B3 6-1245 Greek letter gamma endnum \X03B4 6-145 Greek letter delta endnum \X03B5 6-15 Greek letter epsilon endnum \X03B6 6-1356 Greek letter zeta endnum \X03B7 6-345 Greek letter eta endnum \X03B8 6-1456 Greek letter theta endnum \X03B9 6-24 Greek letter iota endnum \X03BA 6-13 Greek letter kappa endnum \X03BB 6-123 Greek letter lamda endnum \X03BC 6-134 Greek letter Mu endnum \X03BD 6-1345 Greek letter Nu endnum \X03BE 6-1346 Greek letter Xi endnum \X03BF 6-135 Greek letter Omicron endnum \X03C0 6-1234 Greek letter Pi endnum \X03C1 6-1235 Greek letter Rho endnum \X03C3 6-234 Greek letter sigma endnum \X03C4 6-2345 Greek letter Tau endnum \X03C5 6-13456 Greek letter Upsilon endnum \X03C6 6-124 Greek letter Phi endnum \X03C7 6-125 Greek letter Chi endnum \X03C8 6-12346 Greek letter Psi endnum \X03C9 6-245 Greek letter Omega prepunc " 236 postpunc " 356 repeated ... 3-3-3 points de suite repeated --- 36-36-36 repeated ___ 456-456-456 always \s--\s 36-36 tiret # letter \x03C2 2456 Greek small letter final sigma letter \x03C2 234 Greek small letter final sigma letter \x03CA 24 letter \x0390 24 letter \x03CB 13456 letter \x03B0 13456 # ----------------- Ancient Greek ---------------------- letter \x1F08 46-1 letter \x1F09 46-1236-1 letter \x1F0A 356-46-1 letter \x1F0B 26-46-1 letter \x1F0C 356-46-1 letter \x1F0D 26-46-1 letter \x1F0E 256-46-1 letter \x1F0F 235-46-1 letter \x1FBC 46-1-35 letter \x1F88 46-1-35 letter \x1F89 1236-46-1-35 letter \x1F8A 356-46-1-35 letter \x1F8B 26-46-1-35 letter \x1F8C 356-46-1-35 letter \x1F8D 26-46-1-35 letter \x1F8E 256-46-1-35 letter \x1F8F 235-46-1-35 letter \x1F70 5-1 # marked in bold black? letter \x1F71 5-1 # marked in bold black? letter \x1F00 1 letter \x1F01 1236-1 letter \x1F02 356-1 letter \x1F03 26-1 letter \x1F04 356-1 letter \x1F05 26-1 letter \x1FB6 6-1 letter \x1F06 256-1 letter \x1F07 4-235-1 letter \x1FB3 1-35 letter \x1FB2 1-35 letter \x1FB4 1-35 letter \x1F80 1-35 letter \x1F81 1236-1-35 letter \x1F82 356-1-35 letter \x1F83 26-1-35 letter \x1F84 356-1-35 letter \x1F85 26-1-35 letter \x1FB7 6-1-35 letter \x1F86 256-1-35 letter \x1F87 235-1-35 letter \x1F18 46-15 letter \x1F19 1236-46-15 letter \x1F1A 356-46-15 letter \x1F1B 26-46-15 letter \x1F1C 356-46-15 letter \x1F1D 26-46-15 letter \x1F72 5-15 # marked in blue? letter \x1F73 5-15 letter \x1F10 15 letter \x1F11 1236-15 letter \x1F12 356-15 letter \x1F13 26-15 letter \x1F14 356-15 letter \x1F15 26-15 letter \x1F74 5-345 letter \x1F75 5-345 letter \x1F20 345 letter \x1F21 1236-345 letter \x1F22 356-345 letter \x1F23 26-345 letter \x1F24 356-345 letter \x1F25 26-345 letter \x1FC6 6-345 letter \x1F26 256-345 letter \x1F27 235-345 letter \x1FC3 3456 letter \x1FC2 5-3456 letter \x1FC4 5-3456 letter \x1F90 3456 letter \x1F91 1236-3456 letter \x1F92 356-3456 letter \x1F93 26-3456 letter \x1F94 356-3456 letter \x1F95 26-3456 letter \x1FC7 6-3456 letter \x1F96 256-3456 letter \x1F97 235-3456 letter \x1F28 46-345 letter \x1F29 1236-46-345 letter \x1F2A 356-46-345 letter \x1F2B 26-46-345 letter \x1F2C 356-46-345 letter \x1F2D 26-46-345 letter \x1F2E 256-46-345 letter \x1F2F 235-46-345 letter \x1F98 46-3456 letter \x1F99 1236-46-3456 letter \x1F9C 356-46-3456 letter \x1F9D 26-46-3456 letter \x1F9E 256-46-3456 letter \x1F9f 235-46-3456 letter \x1F76 5-24 letter \x1F77 5-24 letter \x1F30 24 letter \x1F31 1236-24 letter \x1F32 356-24 letter \x1F33 26-24 letter \x1F34 356-24 letter \x1F35 26-24 letter \x1fD6 6-24 letter \x1F36 256-24 letter \x1F37 235-24 letter \x1F38 46-24 letter \x1F39 1236-46-24 letter \x1F3A 356-46-24 letter \x1F3B 26-46-24 letter \x1F3C 356-46-24 letter \x1F3D 26-46-24 letter \x1F3E 256-46-24 letter \x1F3F 235-46-24 letter \x1F78 5-135 letter \x1F79 5-135 letter \x1F40 135 letter \x1F41 1236-135 letter \x1F42 356-135 letter \x1F43 26-135 letter \x1F44 356-135 letter \x1F45 26-135 letter \x1F48 46-135 letter \x1F49 1236-46-135 letter \x1F4A 356-46-135 letter \x1f4B 26-46-135 letter \x1F4C 356-46-135 letter \x1f4D 26-46-135 letter \x1F7A 5-13456 letter \x1F7B 5-13456 letter \x1F50 13456 letter \x1F51 1236-13456 letter \x1F52 356-13456 letter \x1F53 26-13456 letter \x1F54 356-13456 letter \x1F55 26-13456 letter \x1FE6 6-13456 letter \x1F56 256-13456 letter \x1F57 235-13456 letter \x1F58 46-13456 letter \x1F59 1236-46-13456 letter \x1F5B 26-46-13456 letter \x1F5D 26-46-13456 letter \x1F5F 235-46-13456 letter \x1F7C 5-245 letter \x1F7D 5-245 letter \x1F60 245 letter \x1F61 1236-245 letter \x1F62 356-245 letter \x1F63 26-245 letter \x1F64 346-245 letter \x1F65 26-245 letter \x1FF6 6-245 letter \x1F66 256-245 letter \x1F67 235-245 letter \x1FF3 2456 letter \x1FF2 5-2456 letter \x1FF4 5-2456 letter \x1FA0 2456 letter \x1FA1 1236-2456 letter \x1FA2 356-2456 letter \x1FA3 26-2456 letter \x1FA4 356-2456 letter \x1FA5 26-2456 letter \x1FF7 6-2456 letter \x1FA6 256-2456 letter \x1FA7 235-2456 letter \x1F68 46-245 letter \x1F69 1236-46-245 letter \x1F6A 456-46-245 letter \x1F6B 26-46-245 letter \x1F6C 356-46-245 letter \x1F6D 26-46-245 letter \x1F6E 256-46-245 letter \x1F6F 235-46-245 letter \x1FA8 46-2456 letter \x1FA9 1236-46-2456 letter \x1FAA 356-46-2456 letter \x1FAB 26-46-2456 letter \x1FAC 356-46-2456 letter \x1FAD 26-46-2456 letter \x1FAE 256-46-2456 letter \x1FAF 235-46-2456 # - this is defined only to make the table compile letter \x1FD7 16-24-1256 letter \x1FD2 1-5-24 letter \x1FD3 15-24 # - end always \x03B1\x1F76 5-126 always \x03B1\x1F77 5-126 always \x03B1\x03B9 126 always \x1F00\x1FD6 1-6-24 always \x1F00\x1FD7 16-24-1256 always \x1F00\x1FD2 1-5-24 always \x1F00\x1FD3 15-24 always \x03B1\x1F32 356-126 always \x03B1\x1F33 26-126 always \x03B1\x1F34 356-126 always \x03B1\x1F35 26-126 always \x03B1\x1F36 256-126 always \x03B1\x1F37 235-126 always \x0391\x1F32 356-46-126 always \x0391\x1F33 26-46-126 always \x0391\x1F34 356-46-126 always \x0391\x1F35 26-46-126 always \x0391\x1F36 256-46-126 always \x0391\x1F37 235-46-126 always \x03BF\x1FD2 135-5-24 always \x03BF\x1FD3 135-5-24 always \x03BF\x1F76 5-246 always \x03BF\x1F77 5-246 always \x03BF\x1F32 356-246 always \x03BF\x1F34 356-246 always \x03BF\x1F33 26-246 always \x03BF\x1F35 26-246 always \x039F\x1F32 356-46-246 always \x039F\x1F34 356-46-246 always \x039F\x1F33 26-46-246 always \x039F\x1F35 26-46-246 always \x03B5\x1FD2 15-5-24 always \x03B5\x1FD3 15-5-24 always \x03B5\x1FD6 6-146 always \x03B5\x1F76 5-146 always \x03B5\x1F77 5-146 always \x03B5\x1F32 356-146 always \x03B5\x1F34 356-146 always \x03B5\x1F33 26-146 always \x03B5\x1F35 26-146 always \x03B5\x1F36 256-146 always \x03B5\x1F37 235-146 always \x0395\x1F32 356-46-146 always \x0395\x1F34 356-46-146 always \x0395\x1F33 26-46-146 always \x0395\x1F35 26-46-146 always \x0395\x1F36 256-46-146 always \x0395\x1F37 235-46-146 # ------------------ End Ancient Greek ----------------- #------ Double vowels ------- # lowword \x0391\x0399 126 like lower case pair \x03B1\x03B9 # replace \x0391\x0399 \x03B1\x03B9 always \x03B1\x0390 1-24 always \x03B1\x03AF 126 always \x03B1\x03B0 1-13456 always \x03B1\x03B9 126 like upper case pair \x0391\x0399 always \x03B1\x03C5 16 always \x03B1\x03CA 1-24 always \x03B1\x03CB 1-13456 always \x03B1\x03CD 16 always \x03BF\x0390 135-24 always \x03BF\x03AF 246 always \x03BF\x03B0 135-13456 always \x03BF\x03B9 246 always \x03BF\x03C5 136 always \x03BF\x03CA 135-24 always \x03BF\x03CB 135-13456 always \x03BF\x03CD 136 always \x03AC\x03B9 1-24 always \x03AC\x03C5 1-13456 always \x03AD\x03B9 15-24 always \x03AD\x03C5 15-13456 always \x03CC\x03B9 135-24 always \x03CC\x03C5 135-13456 always \x03B5\x0390 15-24 always \x03B5\x03AF 146 always \x03B5\x03B0 15-13456 always \x03B5\x03B9 146 always \x03B5\x03C5 156 always \x03B5\x03CA 15-24 always \x03B5\x03CB 15-13456 always \x03B5\x03CD 156 # ---------------- always # 5-3456 number sign x0023 always % 25-1234 percent sign x0025 always ' 3 apostrophe x0027 always = 56-2356 equal sign x003D always \\ 5-16 reverse solidus x005C always ~ 5-26 tilde x007E always © 5-14 copyright x00A9 liblouis-2.5.3/tables/de-eurobrl6.dis0000664000175000017500000000404312161041546014370 00000000000000# liblouis: German Eurobraille Display Table # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # EUROBRAILLE DISPLAY TABLE # # This character mapping of 6-dot braille is widely being # used in german speaking parts of europe. # # Version 2009-11-19 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- display \s 0 display a 1 display b 12 display c 14 display d 145 display e 15 display f 124 display g 1245 display h 125 display i 24 display j 245 display k 13 display l 123 display m 134 display n 1345 display o 135 display p 1234 display q 12345 display r 1235 display s 234 display t 2345 display u 136 display v 1236 display x 1346 display y 13456 display z 1356 display & 12346 display % 123456 display { 12356 display ~ 2346 display } 23456 display 1 16 display 2 126 display 3 146 display 4 1456 display 5 156 display 6 1246 display 7 12456 display 8 1256 display 9 246 display W 2456 display , 2 display ; 23 display : 25 display / 256 display ? 26 display + 235 display = 2356 display ( 236 display * 35 display ) 356 display . 3 display - 36 display | 34 display 0 346 display ` 345 display # 3456 display " 4 display ! 5 display > 45 display $ 46 display \x007F 456 display < 56 display ' 6 liblouis-2.5.3/tables/Makefile.am0000664000175000017500000001011212161041546013567 00000000000000# generate the list of tables as follows: # $ ls | grep -v Makefile | grep -v README | grep -v maketablelist.sh | grep -v '.*~$' | sort | sed -e 's/$/ \\/' -e 's/^/\t/' | head --bytes=-2 table_files = \ ar-ar-g1.utb \ ar-fa.utb \ as.ctb \ awa.ctb \ bengali.cti \ bg.ctb \ bh.ctb \ bn.ctb \ bo.ctb \ boxes.ctb \ bra.ctb \ braille-patterns.cti \ ca-chardefs.cti \ ca-g1.ctb \ chardefs.cti \ chardefs-ueb.cti \ ckb-chardefs.cti \ ckb-g1.ctb \ ckb-translation.cti \ compress.cti \ controlchars.cti \ corrections.cti \ countries.cti \ cs-chardefs.cti \ cs-g1.ctb \ cs-translation.cti \ cy-cy-g1.utb \ cy-cy-g2.ctb \ Cz-Cz-g1.utb \ da-1252.ctb \ da.ctb \ da-dk.dis \ da-dk-g1.utb \ da-dk-g2.ctb \ da-lt.ctb \ de-ch-accents.cti \ de-chardefs6.cti \ de-chardefs8.cti \ de-chess.ctb \ de-ch-g0.utb \ de-ch-g1.ctb \ de-ch-g2.ctb \ de-de-accents.cti \ de-de-comp8.ctb \ de-de.dis \ de-de-g0.utb \ de-de-g1.ctb \ de-de-g2.ctb \ de-eurobrl6.dis \ de-eurobrl6u.dis \ de-g0-core.uti \ de-g1-core.cti \ de-g2-core.cti \ devanagari.cti \ digits6DotsPlusDot6.uti \ digits6Dots.uti \ digits8Dots.uti \ dra.ctb \ en_CA.ctb \ en-chess.ctb \ en-gb-comp8.ctb \ en-gb-g1.utb \ en-GB-g2.ctb \ en-ueb-g1.ctb \ en-ueb-g2.ctb \ en-us-brf.dis \ en-us-comp6.ctb \ en-us-comp8.ctb \ en-us-compbrl.ctb \ en-us-g1.ctb \ en-us-g2.ctb \ en-us-interline.ctb \ en-us-mathtext.ctb \ eo-g1.ctb \ eo-g1-x-system.ctb \ es-chardefs.cti \ Es-Es-G0.utb \ Es-Es-g1.utb \ es-g1.ctb \ es-new.dis \ es-old.dis \ es-translation.cti \ et.ctb \ et-g0.utb \ ethio-g1.ctb \ eurodefs.cti \ fi1.ctb \ fi2.ctb \ fi-fi-8dot.ctb \ fi-fi.ctb \ fr-2007.ctb \ fr-bfu-comp6.utb \ fr-bfu-comp8.utb \ fr-bfu-g2.ctb \ fr-ca-g1.utb \ Fr-Ca-g2.ctb \ fr-fr-g1.utb \ Fr-Fr-g2.ctb \ ga.ctb \ gd.ctb \ gon.ctb \ gr-bb.ctb \ gr-gr-g1.utb \ gu.ctb \ gujarati.cti \ gurmukhi.cti \ he.ctb \ hi.ctb \ hi-in-g1.utb \ hr.ctb \ hu-backtranslate-correction.dis \ hu-chardefs.cti \ hu-exceptionwords.cti \ hu-hu-comp8.ctb \ hu-hu-g1.ctb \ hy.ctb \ hyph_cs_CZ.dic \ hyph_da_DK.dic \ hyph_de_DE.dic \ hyph_en_US.dic \ hyph_eo.dic \ hyph_es_ES.dic \ hyph_fr_FR.dic \ hyph_hu_HU.dic \ hyph_it_IT.dic \ hyph_nb_NO.dic \ hyph_nl_NL.dic \ hyph_nn_NO.dic \ hyph_pl_PL.dic \ hyph_pt_PT.dic \ hyph_ru.dic \ hyph_sv_SE.dic \ is-chardefs6.cti \ is-chardefs8.cti \ is.ctb \ it-it-comp6.utb \ it-it-comp8.utb \ iu-ca-g1.ctb \ kannada.cti \ kha.ctb \ kn.ctb \ ko.cti \ ko-g1.ctb \ ko-g2.ctb \ kok.ctb \ kru.ctb \ latinLetterDef6Dots.uti \ latinLetterDef8Dots.uti \ litdigits6Dots.uti \ loweredDigits6Dots.uti \ loweredDigits8Dots.uti \ lt.ctb \ Lv-Lv-g1.utb \ malayalam.cti \ marburg.ctb \ marburg_edit.ctb \ marburg_single_cell_defs.cti \ marburg_unicode_defs.cti \ ml.ctb \ mni.ctb \ mr.ctb \ mt.ctb \ mun.ctb \ mwr.ctb \ ne.ctb \ nemeth.ctb \ nemethdefs.cti \ nemeth_edit.ctb \ new.ctb \ nl-BE-chardefs.cti \ nl-BE.dis \ nl-BE-g1.ctb \ nl-be-g1.utb \ nl-BE-translation.cti \ Nl-Nl-g1.utb \ no-no.ctb \ no-no.dis \ no-no-g0.utb \ no-no-g1.ctb \ no-no-g2.ctb \ no-no-g3.ctb \ no-no-generic.ctb \ no-no-generic.dis \ or.ctb \ oriya.cti \ pa.ctb \ pi.ctb \ Pl-Pl-g1.utb \ printables.cti \ pt-pt-comp8.ctb \ pt-pt-g1.utb \ pt-pt-g2.ctb \ ro.ctb \ ru-chardefs.cti \ ru-compbrl.ctb \ ru.ctb \ ru-letters.dis \ ru-litbrl.ctb \ ru-ru.dis \ ru-ru-g1.utb \ sa.ctb \ sat.ctb \ sd.ctb \ se-se.ctb \ se-se.dis \ Se-Se-g1.utb \ sk-sk-g1.utb \ sk-sk.utb \ sl-si-g1.utb \ spaces.ctb \ sr-chardefs.cti \ sr-g1.ctb \ sr-translation.cti \ sv-1989.ctb \ sv-1996.ctb \ ta.ctb \ tamil.cti \ ta-ta-g1.ctb \ te.ctb \ telugu.cti \ text_nabcc.dis \ tr.ctb \ UEBC-g1.utb \ UEBC-g2.ctb \ ukchardefs.cti \ ukmaths.ctb \ ukmaths_edit.ctb \ ukmaths_single_cell_defs.cti \ ukmaths_unicode_defs.cti \ unicodedefs.cti \ unicode.dis \ uni-text.dis \ us-table.dis \ vi.ctb \ wiskunde-chardefs.cti \ wiskunde.ctb \ wiskunde-translation.cti \ zh-hk.ctb \ zh-tw.ctb tablesdir = $(datadir)/liblouis/tables tables_DATA = $(table_files) EXTRA_DIST = $(table_files) liblouis-2.5.3/tables/hr.ctb0000664000175000017500000002417212161041546012651 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 2008-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Croatian # # Copyright (C) 2005 by Sebastien Sable, All rights reserved. # Table generated by Sébastien Sablé for # libbraille http://libbraille.org and gnome-braille # http://cvs.gnome.org/viewcvs/gnome-braille/ # # Table adapted for BRLTTY by Samuel Thibault # # *Many thanks to Danko Butorac for his help* # Table based on "Croatian code page for computer 8-dot Braille # alphabet ANSI-1250" from the "Croatian Association of the Blind" at # http://www.savez-slijepih.hr/en/download.htm # generated by ttbtest space \s 0 SPACE punctuation " 2356 QUOTATION MARK punctuation $ 2346 DOLLAR SIGN punctuation % 46 PERCENT SIGN punctuation & 12346 AMPERSAND punctuation ' 6 APOSTROPHE punctuation ( 126 LEFT PARENTHESIS punctuation ) 345 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 235 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 256 SOLIDUS digit 0 346 DIGIT ZERO digit 1 16 DIGIT ONE digit 2 34 DIGIT TWO digit 3 146 DIGIT THREE digit 4 1456 DIGIT FOUR digit 5 156 DIGIT FIVE digit 6 1246 DIGIT SIX digit 7 12456 DIGIT SEVEN digit 8 1256 DIGIT EIGHT digit 9 246 DIGIT NINE punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 236 LESS-THAN SIGN punctuation = 123456 EQUALS SIGN punctuation > 356 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 47 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 123567 LEFT SQUARE BRACKET punctuation \\ 457 REVERSE SOLIDUS punctuation ] 234567 RIGHT SQUARE BRACKET punctuation ^ 567 CIRCUMFLEX ACCENT punctuation _ 4567 LOW LINE punctuation ` 4 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 12356 LEFT CURLY BRACKET punctuation | 45 VERTICAL LINE punctuation } 23456 RIGHT CURLY BRACKET punctuation ~ 56 TILDE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a4 4678 CURRENCY SIGN punctuation \x00a6 468 BROKEN BAR punctuation \x00a7 3578 SECTION SIGN punctuation \x00a8 8 DIAERESIS punctuation \x00a9 12458 COPYRIGHT SIGN punctuation \x00ab 378 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 2357 NOT SIGN punctuation \x00ad 78 SOFT HYPHEN punctuation \x00ae 1245678 REGISTERED SIGN punctuation \x00b0 578 DEGREE SIGN punctuation \x00b1 1234678 PLUS-MINUS SIGN punctuation \x00b4 48 ACUTE ACCENT lowercase \x00b5 34567 MICRO SIGN punctuation \x00b6 12348 PILCROW SIGN punctuation \x00b7 38 MIDDLE DOT punctuation \x00b8 568 CEDILLA punctuation \x00bb 678 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK uppercase \x00c1 138 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 123568 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cd 347 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 124567 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00d3 1358 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 145678 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 13468 MULTIPLICATION SIGN uppercase \x00da 1368 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 134568 LATIN CAPITAL LETTER Y WITH ACUTE lowercase \x00df 234678 LATIN SMALL LETTER SHARP S lowercase \x00e1 27 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 23678 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e4 3458 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e7 123468 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e9 1234568 LATIN SMALL LETTER E WITH ACUTE lowercase \x00eb 12468 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ed 348 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 124568 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00f3 267 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 2568 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f6 2468 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2578 DIVISION SIGN lowercase \x00fa 278 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fc 12568 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 25678 LATIN SMALL LETTER Y WITH ACUTE uppercase \x0102 18 LATIN CAPITAL LETTER A WITH BREVE lowercase \x0103 28 LATIN SMALL LETTER A WITH BREVE uppercase \x0104 34578 LATIN CAPITAL LETTER A WITH OGONEK lowercase \x0105 567 LATIN SMALL LETTER A WITH OGONEK uppercase \x0106 1467 LATIN CAPITAL LETTER C WITH ACUTE lowercase \x0107 1468 LATIN SMALL LETTER C WITH ACUTE uppercase \x010c 167 LATIN CAPITAL LETTER C WITH CARON lowercase \x010d 168 LATIN SMALL LETTER C WITH CARON uppercase \x010e 1458 LATIN CAPITAL LETTER D WITH CARON lowercase \x010f 368 LATIN SMALL LETTER D WITH CARON uppercase \x0110 14567 LATIN CAPITAL LETTER D WITH STROKE lowercase \x0111 14568 LATIN SMALL LETTER D WITH STROKE uppercase \x0118 15678 LATIN CAPITAL LETTER E WITH OGONEK lowercase \x0119 268 LATIN SMALL LETTER E WITH OGONEK uppercase \x011a 1267 LATIN CAPITAL LETTER E WITH CARON lowercase \x011b 238 LATIN SMALL LETTER E WITH CARON uppercase \x0139 1238 LATIN CAPITAL LETTER L WITH ACUTE lowercase \x013a 237 LATIN SMALL LETTER L WITH ACUTE uppercase \x013d 4568 LATIN CAPITAL LETTER L WITH CARON lowercase \x013e 128 LATIN SMALL LETTER L WITH CARON uppercase \x0141 12368 LATIN CAPITAL LETTER L WITH STROKE lowercase \x0142 2378 LATIN SMALL LETTER L WITH STROKE uppercase \x0143 13458 LATIN CAPITAL LETTER N WITH ACUTE lowercase \x0144 2567 LATIN SMALL LETTER N WITH ACUTE uppercase \x0147 124678 LATIN CAPITAL LETTER N WITH CARON lowercase \x0148 2358 LATIN SMALL LETTER N WITH CARON uppercase \x0150 24678 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE lowercase \x0151 358 LATIN SMALL LETTER O WITH DOUBLE ACUTE uppercase \x0154 12358 LATIN CAPITAL LETTER R WITH ACUTE lowercase \x0155 2367 LATIN SMALL LETTER R WITH ACUTE uppercase \x0158 24568 LATIN CAPITAL LETTER R WITH CARON lowercase \x0159 3568 LATIN SMALL LETTER R WITH CARON uppercase \x015a 2348 LATIN CAPITAL LETTER S WITH ACUTE lowercase \x015b 357 LATIN SMALL LETTER S WITH ACUTE uppercase \x015e 234568 LATIN CAPITAL LETTER S WITH CEDILLA lowercase \x015f 35678 LATIN SMALL LETTER S WITH CEDILLA uppercase \x0160 1567 LATIN CAPITAL LETTER S WITH CARON lowercase \x0161 1568 LATIN SMALL LETTER S WITH CARON uppercase \x0162 23458 LATIN CAPITAL LETTER T WITH CEDILLA lowercase \x0163 3567 LATIN SMALL LETTER T WITH CEDILLA uppercase \x0164 123458 LATIN CAPITAL LETTER T WITH CARON lowercase \x0165 23567 LATIN SMALL LETTER T WITH CARON uppercase \x016e 3467 LATIN CAPITAL LETTER U WITH RING ABOVE lowercase \x016f 3468 LATIN SMALL LETTER U WITH RING ABOVE uppercase \x0170 34678 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE lowercase \x0171 14678 LATIN SMALL LETTER U WITH DOUBLE ACUTE uppercase \x0179 13568 LATIN CAPITAL LETTER Z WITH ACUTE lowercase \x017a 2678 LATIN SMALL LETTER Z WITH ACUTE uppercase \x017b 12678 LATIN CAPITAL LETTER Z WITH DOT ABOVE lowercase \x017c 1678 LATIN SMALL LETTER Z WITH DOT ABOVE uppercase \x017d 23467 LATIN CAPITAL LETTER Z WITH CARON lowercase \x017e 23468 LATIN SMALL LETTER Z WITH CARON letter \x02c7 458 CARON punctuation \x02d8 467 BREVE punctuation \x02d9 67 DOT ABOVE punctuation \x02db 58 OGONEK punctuation \x02dd 68 DOUBLE ACUTE ACCENT liblouis-2.5.3/tables/ca-chardefs.cti0000664000175000017500000003450212161041546014405 00000000000000# ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # Copyright (c) 2010 by DocArch . # ---------------------------------------------------------------------------------------------- # # Catalan Braille # Created and maintained by Bert Frees # with the assistance of Carles Sadurní Anguita # # ---------------------------------------------------------------------------------------------- # ============================================================================================== # SINGLE-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- include latinLetterDef6Dots.uti uplow \x00C0\x00E0 12356,12356 Àà LATIN CAPITAL LETTER A WITH GRAVE - LATIN SMALL LETTER A WITH GRAVE uplow \x00C7\x00E7 12346,12346 Çç LATIN CAPITAL LETTER C WITH CEDILLA - LATIN SMALL LETTER C WITH CEDILLA uplow \x00C8\x00E8 2346,2346 Èè LATIN CAPITAL LETTER E WITH GRAVE - LATIN SMALL LETTER E WITH GRAVE uplow \x00C9\x00E9 123456,123456 Éé LATIN CAPITAL LETTER E WITH ACUTE - LATIN SMALL LETTER E WITH ACUTE uplow \x00CD\x00ED 34,34 Ãí LATIN CAPITAL LETTER I WITH ACUTE - LATIN SMALL LETTER I WITH ACUTE uplow \x00CF\x00EF 12456,12456 Ãï LATIN CAPITAL LETTER I WITH DIAERESIS - LATIN SMALL LETTER I WITH DIAERESIS uplow \x00D2\x00F2 346,346 Òò LATIN CAPITAL LETTER O WITH GRAVE - LATIN SMALL LETTER O WITH GRAVE uplow \x00D3\x00F3 246,246 Óó LATIN CAPITAL LETTER O WITH ACUTE - LATIN SMALL LETTER O WITH ACUTE uplow \x00DA\x00FA 23456,23456 Úú LATIN CAPITAL LETTER U WITH ACUTE - LATIN SMALL LETTER U WITH ACUTE uplow \x00DC\x00FC 1256,1256 Üü LATIN CAPITAL LETTER U WITH DIAERESIS - LATIN SMALL LETTER U WITH DIAERESIS space \x0009 9 HORIZONTAL TABULATION space \x000A 0 LINE FEED space \x000C 0 FORM FEED space \x000D 0 CARRIAGE RETURN space \x001B 1b ESCAPE space \x0020 0 SPACE punctuation \x0021 256 ! EXCLAMATION MARK punctuation \x0022 236 " QUOTATION MARK punctuation \x0027 3 ' APOSTROPHE punctuation \x0028 126 ( LEFT PARENTHESIS punctuation \x0029 345 ) RIGHT PARENTHESIS sign \x002A 35 * ASTERISK math \x002B 235 + PLUS SIGN punctuation \x002C 2 , COMMA punctuation \x002D 36 - HYPHEN-MINUS punctuation \x002E 3 . FULL STOP include loweredDigits6Dots.uti punctuation \x003A 25 : COLON punctuation \x003B 23 ; SEMICOLON math \x003C 246 < LESS-THAN SIGN math \x003D 2356 = EQUALS SIGN math \x003E 135 > GREATER-THAN SIGN punctuation \x003F 26 ? QUESTION MARK punctuation \x005B 12356 [ LEFT SQUARE BRACKET punctuation \x005D 23456 ] RIGHT SQUARE BRACKET sign \x007C 456 | VERTICAL LINE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- punctuation \x0082 2 ‚ BREAK PERMITTED HERE - ANSI: SINGLE LOW-9 QUOTATION MARK - MACROMAN: C CEDILLA punctuation \x0084 236 „ - ANSI: DOUBLE LOW-9 QUOTATION MARK - MACROMAN: N TILDE punctuation \x0093 236 “ SET TRANSMIT STATE - ANSI: LEFT DOUBLE QUOTATION MARK - MACROMAN: I GRAVE punctuation \x0094 236 †CANCEL CHARACTER - ANSI: RIGHT DOUBLE QUOTATION MARK - MACROMAN: I CIRCUMFLEX punctuation \x0096 36 – START OF GUARDED AREA - ANSI: EN DASH - MACROMAN: N TILDE space \x00A0 a   NO-BREAK SPACE punctuation \x00A1 235 ¡ INVERTED EXCLAMATION MARK punctuation \x00AB 236 « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00AD 36 ­ SOFT HYPHEN sign \x00B8 2 ¸ CEDILLA punctuation \x00BB 236 » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00B7 5 · MIDDLE DOT punctuation \x00BF 26 ¿ INVERTED QUESTION MARK math \x00D7 236 × MULTIPLICATION SIGN math \x00F7 256 ÷ DIVISION SIGN # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2010 36 †HYPHEN punctuation \x2011 36 ‑ NON-BREAKING HYPHEN punctuation \x2012 36 ‒ FIGURE DASH punctuation \x2013 36 – EN DASH punctuation \x2018 236 ‘ LEFT SINGLE QUOTATION MARK punctuation \x2019 236 ’ RIGHT SINGLE QUOTATION MARK punctuation \x201A 236 ‚ SINGLE LOW-9 QUOTATION MARK punctuation \x201B 236 ‛ SINGLE HIGH-REVERSED-9 QUOTATION MARK punctuation \x201C 236 “ LEFT DOUBLE QUOTATION MARK punctuation \x201D 236 †RIGHT DOUBLE QUOTATION MARK punctuation \x201E 236 „ DOUBLE LOW-9 QUOTATION MARK punctuation \x201F 236 ‟ DOUBLE HIGH-REVERSED-9 QUOTATION MARK punctuation \x2043 36 ⃠HYPHEN BULLET include braille-patterns.cti # ============================================================================================== # MULTI-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- sign \x0024 345-234 $ DOLLAR SIGN math \x0025 456-356 % PERCENT SIGN sign \x0026 6-12346 & AMPERSAND math \x002F 6-2 / SOLIDUS sign \x0040 56-16 @ COMMERCIAL AT sign \x005C 5-3 \ REVERSE SOLIDUS math \x007B 5-123 { LEFT CURLY BRACKET math \x007D 456-2 } RIGHT CURLY BRACKET # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- sign \x0080 456-15 € - ANSI: EURO-CURRENCY SIGN - MACROMAN: A DIAERESIS punctuation \x0085 3-3-3 … NEXT LINE (NEL) - ANSI: HORIZONTAL ELLIPSIS - MACROMAN: O DIAERESIS sign \x0089 456-356-356 ‰ CHARACTER TABULATION WITH JUSTIFICATION - ANSI: PER MILLE SIGN - MACROMAN: A CIRCUMFLEX punctuation \x0097 36-36 — END OF GUARDED AREA - ANSI: EM DASH - MACROMAN: O ACUTE sign \x00A2 45-14 ¢ CENT SIGN sign \x00A3 5-2346 £ POUND SIGN sign \x00A5 456-13456 Â¥ YEN SIGN sign \x00A9 126-46-14-345 © COPYRIGHT SIGN sign \x00AA 56-16 ª FEMININE ORDINAL INDICATOR sign \x00AE 126-46-1235-345 ® REGISTERED SIGN math \x00B1 235-25-36 ± PLUS-MINUS SIGN sign \x00B2 16-3456-12 ² SUPERSCRIPT TWO sign \x00B3 16-3456-14 ³ SUPERSCRIPT THREE sign \x00B5 4-134 µ MICRO SIGN math \x00BC 1456-2-145 ¼ VULGAR FRACTION ONE QUARTER math \x00BD 1456-2-12 ½ VULGAR FRACTION ONE HALF math \x00BE 1456-25-145 ¾ VULGAR FRACTION THREE QUARTERS # ---------------------------------------------------------------------------------------------- # Unicode 0100..017F Latin Extended-A # ---------------------------------------------------------------------------------------------- uplow \x013F\x0140 123-5,123-5 Ŀŀ LATIN CAPITAL LETTER L WITH MIDDLE DOT - LATIN SMALL LETTER L WITH MIDDLE DOT # ---------------------------------------------------------------------------------------------- # Unicode 0370..03FF Greek and Coptic # ---------------------------------------------------------------------------------------------- lowercase \x03B1 4-1 α GREEK SMALL LETTER ALPHA lowercase \x03B2 4-12 β GREEK SMALL LETTER BETA lowercase \x03B3 4-1245 γ GREEK SMALL LETTER GAMMA lowercase \x03B4 4-145 δ GREEK SMALL LETTER DELTA lowercase \x03B5 4-15 ε GREEK SMALL LETTER EPSILON lowercase \x03B6 4-1356 ζ GREEK SMALL LETTER ZETA lowercase \x03B7 4-156 η GREEK SMALL LETTER ETA lowercase \x03B8 4-1456 θ GREEK SMALL LETTER THETA lowercase \x03B9 4-24 ι GREEK SMALL LETTER IOTA lowercase \x03BA 4-13 κ GREEK SMALL LETTER KAPPA lowercase \x03BB 4-123 λ GREEK SMALL LETTER LAMDA lowercase \x03BC 4-134 μ GREEK SMALL LETTER MU lowercase \x03BD 4-1345 ν GREEK SMALL LETTER NU lowercase \x03BE 4-1346 ξ GREEK SMALL LETTER XI lowercase \x03BF 4-135 ο GREEK SMALL LETTER OMICRON lowercase \x03C0 4-1234 Ï€ GREEK SMALL LETTER PI lowercase \x03C1 4-1235 Ï GREEK SMALL LETTER RHO lowercase \x03C2 4-234 Ï‚ GREEK SMALL LETTER FINAL SIGMA lowercase \x03C3 4-234 σ GREEK SMALL LETTER SIGMA lowercase \x03C4 4-2345 Ï„ GREEK SMALL LETTER TAU lowercase \x03C5 4-136 Ï… GREEK SMALL LETTER UPSILON lowercase \x03C6 4-124 φ GREEK SMALL LETTER PHI lowercase \x03C7 4-12346 χ GREEK SMALL LETTER CHI lowercase \x03C8 4-13456 ψ GREEK SMALL LETTER PSI lowercase \x03C9 4-2456 ω GREEK SMALL LETTER OMEGA # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2014 36-36 — EM DASH punctuation \x2015 36-36 ― HORIZONTAL BAR punctuation \x2026 3-3-3 … HORIZONTAL ELLIPSIS # ---------------------------------------------------------------------------------------------- # Unicode 20A0..20CF Currency Symbols # ---------------------------------------------------------------------------------------------- sign \x20AC 456-15 € EURO SIGN # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/hyph_pl_PL.dic0000664000175000017500000007352712161041546014275 00000000000000ISO8859-2 ./c/c8 ./c/l8 ./c/n8 ./c/s8 ./c/x8 ./c/z8 ./c8 ./cb8 ./cc8 ./cd8 ./cf8 ./cg8 ./ch8 ./cj8 ./ck8 ./cl8 ./cm8 ./cn8 ./cp8 ./cr8 ./cs8 ./ct8 ./cv8 ./cw8 ./cwier2/c3 ./cx8 ./cz8 ./l/c8 ./l/l8 ./l/n8 ./l/s8 ./l/x8 ./l/z8 ./l8 ./lb8 ./lc8 ./ld8 ./lf8 ./lg8 ./lh8 ./lj8 ./lk8 ./ll8 ./lm8 ./ln8 ./lp8 ./lr8 ./ls8 ./lt8 ./lv8 ./lw8 ./lx8 ./lz8 ./n/c8 ./n/l8 ./n/n8 ./n/s8 ./n/x8 ./n/z8 ./n8 ./nb8 ./nc8 ./nd8 ./nf8 ./ng8 ./nh8 ./nj8 ./nk8 ./nl8 ./nm8 ./nn8 ./np8 ./nr8 ./ns8 ./nt8 ./nv8 ./nw8 ./nx8 ./nz8 ./s/c8 ./s/l8 ./s/n8 ./s/s8 ./s/x8 ./s/z8 ./s8 ./sb8 ./sc8 ./sd8 ./sf8 ./sg8 ./sh8 ./sj8 ./sk8 ./sl8 ./sm8 ./sn8 ./sp8 ./sr/o2d5 ./sr/odr2 ./sr8 ./ss8 ./st8 ./sv8 ./sw8 ./swiat/lo3w2 ./sx8 ./sz8 ./x/c8 ./x/l8 ./x/n8 ./x/s8 ./x/x8 ./x/z8 ./x8 ./xb8 ./xc8 ./xd/x8 ./xd8 ./xf8 ./xg8 ./xh8 ./xj8 ./xk8 ./xl8 ./xm8 ./xn8 ./xp8 ./xr8 ./xs8 ./xt8 ./xv8 ./xw8 ./xx8 ./xz8 ./z/c8 ./z/l8 ./z/n8 ./z/s8 ./z/x8 ./z/z8 ./z8 ./zb8 ./zc8 ./zd8 ./zf8 ./zg8 ./zh8 ./zj8 ./zk8 ./zl8 ./zm8 ./zn8 ./zp8 ./zr8 ./zs8 ./zt8 ./zv8 ./zw8 ./zx8 ./zz8 .a2b2s3t .a2d3 .ad4a .ad4e .ad4i .ad4o .ad4u .ad4y .ad5apt .ad5iu .ad5op .ad5or .ae3ro .aeroa2 .aeroe2 .aeroi2 .aeroo2 .aerou2 .antya2 .antye2 .antyi2 .antyo2 .antyu2 .arcy3/l2 .arcy3b2 .arcy3bz2 .arcy3k2 .arcy3m2 .arcya2 .arcye2 .arcyi2 .arcyo2 .arcyu2 .au3g2 .au3k2 .au3t2 .auto3ch2 .autoa2 .autoe2 .autoi2 .autoo2 .autotran2s3 .autou2 .b/c8 .b/l8 .b/n8 .b/s8 .b/x8 .b/z8 .b8 .bb8 .bc8 .bd8 .be2z3 .be3z4an .be3z4ec .be3z4ik .bezch2 .bezm2 .bezo2 .bezo2b1j .bezw2 .bezzw2 .bf8 .bg8 .bh8 .bj8 .bk8 .bl8 .bm8 .bn8 .bp8 .br8 .brz8 .bs8 .bt8 .bv8 .bw8 .bx8 .bz8 .c/c8 .c/l8 .c/n8 .c/s8 .c/x8 .c/z8 .c8 .ca/lo3/s2 .ca/lo3k2 .cb8 .cc8 .cd8 .cf8 .cg8 .ch8 .chrz8 .cienko3w2 .ciep/lo3kr2 .cj8 .ck8 .cl8 .cm8 .cn8 .cp8 .cr8 .cs8 .ct8 .cv8 .cw8 .cx8 .cz8 .czarno3k2 .czk8 .cztere2ch3 .czterechse2t3 .cztero3/s2 .czw/o2r3 .czw/o3r4/a .czw/o3r4/e .czw/o3r4a .czw/o3r4e .czw/o3r4o .d/c8 .d/l8 .d/lugo3tr2 .d/lugo3w2 .d/n8 .d/s8 .d/x8 .d/z8 .d8 .daleko3w2 .db8 .dc8 .dd8 .de2z3 .de3z4a3bil .de3z4a3wu .de3z4el .de3z4er .de3z4y .deza2 .dezo2 .df8 .dg8 .dh8 .dj8 .dk8 .dl8 .dm8 .dn8 .do3/c2 .do3/l2 .do3/s2 .do3/x2 .do3/z2 .do3b2 .do3c2 .do3d2 .do3f2 .do3g2 .do3h2 .do3k2 .do3l2 .do3m2 .do3p2 .do3r2 .do3s2 .do3t2 .do3w2 .do3z2 .do4/l3k .do4k3t .do4l3n .do4m3k .do4r3s .do4w3c .do5m4k2n .dobr2 .dobrz2 .doch2 .docz2 .dod/x2 .dod/z2 .dodz2 .dogrz2 .dopch2 .doprz2 .dor/z2 .dorz2 .dosch2 .dosm2 .dosz2 .dotk2 .dotr2 .dp8 .dr8 .drogo3w2 .drz8 .ds8 .dt8 .dv8 .dw/o2j3 .dw/o3j4/a .dw/o3j4/e .dw/o3j4a .dw/o3j4e .dw/o3j4o .dw8 .dx8 .dy2s3 .dy2z3 .dy3s4e .dy3s4o .dy3s4ta .dy3s4y .dy3sz .dy3z4e .dyzu2 .dz8 .dziesi/ecio3/s2 .dziewi/e/cse2t3 .dziewi/e2/c3 .dziewi/ecio3/s2 .e2k2s3 .e2m3e2s5ze2t .e2s1e2s1ma .e2s1ha .e2s1t .egoa2 .egoe2 .egoi2 .egoo2 .egou2 .eks4y .elektroa2 .elektroe2 .elektroi2 .elektroo2 .elektrou2 .f/c8 .f/l8 .f/n8 .f/s8 .f/x8 .f/z8 .f8 .fb8 .fc8 .fd8 .ff8 .fg8 .fh8 .fj8 .fk8 .fl8 .fm8 .fn8 .fp8 .fr8 .fs8 .ft8 .fv8 .fw8 .fx8 .fz8 .g/c8 .g/l8 .g/n8 .g/s8 .g/x8 .g/z8 .g8 .gb8 .gc8 .gd8 .ge2o3 .gf8 .gg8 .gh8 .gj8 .gk8 .gl8 .gm8 .gn8 .go2u3 .gp8 .gr8 .grubo3w2 .grz8 .gs8 .gt8 .gv8 .gw8 .gx8 .gz8 .h/c8 .h/l8 .h/n8 .h/s8 .h/x8 .h/z8 .h8 .hb8 .hc8 .hd8 .hf8 .hg8 .hh8 .hipe2r3 .hipe3r4o .hipera2 .hipere2 .hj8 .hk8 .hl8 .hm8 .hn8 .hp8 .hr8 .hs8 .ht8 .hv8 .hw8 .hx8 .hz8 .i2n3 .i2s3l .i3n4ic .i3n4o .i3n4u .i4n5o2k .in4f3lan .ino3w2 .izoa2 .izoe2 .izoi2 .izoo2 .izou2 .j/c8 .j/l8 .j/n8 .j/s8 .j/x8 .j/z8 .j8 .jad/lo3w2 .jb8 .jc8 .jd8 .jf8 .jg8 .jh8 .jj8 .jk8 .jl8 .jm8 .jn8 .jp8 .jr8 .js8 .jt8 .jv8 .jw8 .jx8 .jz8 .k/c8 .k/l8 .k/n8 .k/s8 .k/x8 .k/z8 .k8 .kb8 .kc8 .kd8 .kf8 .kg8 .kh8 .kilkuse2t3 .kilkuseto2 .kj8 .kk8 .kl8 .km8 .kn8 .ko/lo3w2 .kon2t2r3 .kon3tr4a .kon3tr4e .kon3tr4o3l .kon3tr4o3w .kon3tr4y .kon4tr5a2gi .kon4tr5a2se .kon4tr5a2sy .kon4tr5a2ta .kon4tr5adm .kon4tr5akc .kon4tr5alt .kon4tr5arg .kontro2 .kontru2 .kp8 .kr/otko3tr2 .kr/otko3w2 .kr8 .kro2/c3 .krz8 .ks8 .kt8 .kv8 .kw8 .kx8 .kz8 .l/c8 .l/l8 .l/n8 .l/s8 .l/x8 .l/z8 .l8 .lb8 .lc8 .ld8 .lf8 .lg8 .lh8 .lj8 .lk8 .ll8 .lm8 .ln8 .lp8 .lr8 .ls8 .lt8 .ludo3w2 .lv8 .lw8 .lx8 .lz8 .m/c8 .m/l8 .m/n8 .m/s8 .m/x8 .m/z8 .m8 .mb8 .mc8 .md8 .mf8 .mg8 .mh8 .mili3amp .mj8 .mk8 .ml8 .mm8 .mn8 .mo/zno3w2 .mp8 .mr8 .ms8 .mt8 .mv8 .mw8 .mx8 .mz8 .n/c8 .n/l8 .n/n8 .n/s8 .n/x8 .n/z8 .n8 .na2d2 .na2j .na3/c2 .na3/l2 .na3/s2 .na3/x2 .na3/z2 .na3b2 .na3c2 .na3d/a .na3d/e .na3d/x2 .na3d4/lub .na3d4ir .na3d4much .na3d4r/ecz .na3d4r2w .na3d4repcz .na3d4rept .na3d4ruk .na3d4rz .na3d4worn .na3daj .na3de .na3do .na3dy .na3dzi .na3f2 .na3g2 .na3h2 .na3j/a .na3j/e .na3jazd .na3je .na3k2 .na3l2 .na3m2 .na3p2 .na3r2 .na3s2 .na3t2 .na3u2 .na3w2 .na3z2 .na4d3o2b2/l .na4d3o2bojcz .na4d3o2bowi .na4d3o2brot .na4d3o2drz .na4d3o2kien .na4d3olbrz .na4d5rz/a .na4d5rz/e .na4d5rzecz .na4d5rzy .na4d5ziem .na4f3c .na4f3t .na4j3e2f .na4j3e2g .na4j3e2k2s .na4j3e2ko .na4j3e2n .na4j3e2r .na4j3e2s .na4j3e2w .na4j3emf .na4j3eu .na4r3c .na4r3d .na4r3k .na4r3r .na4r3t .nabrz2 .nach2 .nacz2 .nad/srod5ziem .nad3/c2 .nad3/l2 .nad3/s2 .nad3b2 .nad3c2 .nad3d2 .nad3e2tat .nad3f2 .nad3g2 .nad3h2 .nad3i2 .nad3j2 .nad3k2 .nad3l2 .nad3m2 .nad3n2 .nad3p2 .nad3r2 .nad3s2 .nad3t2 .nad3u2 .nad3w2 .nad5/z2 .nad5z/o .nad5z2mys .nad5zo .nad5zwycz .nadch2 .nadcz2 .nadd/x2 .nade3/c2 .nade3/l2 .nade3/s2 .nade3/x2 .nade3/z2 .nade3b2 .nade3c2 .nade3d2 .nade3f2 .nade3g2 .nade3h2 .nade3k2 .nade3l2 .nade3m2 .nade3p2 .nade3r2 .nade3s2 .nade3t2 .nade3w2 .nade3z2 .nade4p3c .nade4p3n .nade4p3t .nadech2 .nadecz2 .naded/x2 .naded/z2 .nadedz2 .nader/z2 .naderz2 .nadesz2 .nadsz2 .nadtr2 .nadz2 .nagrz2 .naj3/c2 .naj3/l2 .naj3/s2 .naj3/x2 .naj3/z2 .naj3akt .naj3au .naj3b2 .naj3c2 .naj3d2 .naj3f2 .naj3g2 .naj3h2 .naj3i2 .naj3k2 .naj3l2 .naj3m2 .naj3o2 .naj3o2/c2 .naj3o2/l2 .naj3o2/s2 .naj3o2/x2 .naj3o2/z2 .naj3o2b2 .naj3o2c2 .naj3o2d2 .naj3o2f2 .naj3o2g2 .naj3o2h2 .naj3o2k2 .naj3o2l2 .naj3o2m2 .naj3o2p2 .naj3o2r2 .naj3o2s2 .naj3o2t2 .naj3o2w2 .naj3o2z2 .naj3p2 .naj3r2 .naj3ro2z3 .naj3s2 .naj3t2 .naj3u2 .naj3w2 .naj3z2 .najbe2z3 .najbezw2 .najch2 .najcz2 .najd/x2 .najd/z2 .najdo3/c2 .najdo3/l2 .najdo3/s2 .najdo3/x2 .najdo3/z2 .najdo3b2 .najdo3c2 .najdo3d2 .najdo3f2 .najdo3g2 .najdo3h2 .najdo3k2 .najdo3l2 .najdo3m2 .najdo3p2 .najdo3r2 .najdo3s2 .najdo3t2 .najdo3w2 .najdo3z2 .najdoch2 .najdocz2 .najdod/x2 .najdod/z2 .najdodz2 .najdorz2 .najdosz2 .najdotk2 .najdz2 .najkr2 .najob3/c2 .najob3/l2 .najob3/s2 .najob3/x2 .najob3/z2 .najob3c2 .najob3d2 .najob3f2 .najob3g2 .najob3h2 .najob3j2 .najob3k2 .najob3l2 .najob3m2 .najob3n2 .najob3p2 .najob3s2 .najob3t2 .najob3w2 .najobch2 .najobcz2 .najobd/x2 .najobd/z2 .najobdz2 .najobrz2 .najobsz2 .najoch2 .najocz2 .najod/x2 .najod3/c2 .najod3/s2 .najod3c2 .najod3d2 .najod3f2 .najod3g2 .najod3h2 .najod3j2 .najod3k2 .najod3l2 .najod3m2 .najod3n2 .najod3p2 .najod3s2 .najod3t2 .najod3w2 .najod5/z2 .najodch2 .najodcz2 .najodd/x2 .najodd/z2 .najoddz2 .najodsz2 .najodz2 .najorz2 .najosz2 .najro3z4u .najrz2 .najsm2 .najsz2 .najtk2 .najtr2 .najucz2 .najzw2 .nakr2 .napo2d2 .napo3/c2 .napo3/l2 .napo3/s2 .napo3/x2 .napo3/z2 .napo3b2 .napo3c2 .napo3f2 .napo3g2 .napo3h2 .napo3k2 .napo3l2 .napo3m2 .napo3p2 .napo3r2 .napo3s2 .napo3t2 .napo3w2 .napo3z2 .napo4m3p .napoch2 .napocz2 .napod/x2 .napod/z2 .napod3d .napomk2 .naporz2 .naposz2 .naprz2 .nar/z2 .naro2z3 .narz2 .nasm2 .nasz2 .natch2 .natk2 .naz3m2 .nazw2 .nb8 .nc8 .nd8 .ne2o3 .nf8 .ng8 .nh8 .nie3/c2 .nie3/l2 .nie3/s2 .nie3/x2 .nie3/z2 .nie3b2 .nie3c2 .nie3d2 .nie3f2 .nie3g2 .nie3h2 .nie3k2 .nie3l2 .nie3m2 .nie3p2 .nie3r2 .nie3s2 .nie3t2 .nie3u2 .nie3w2 .nie3z2 .nie4c3c .nie4c3k .nie4d/x3 .nie4m3c .nie4m3k .niech2 .niecz2 .nied/z2 .niedo3/c2 .niedo3/l2 .niedo3/s2 .niedo3/x2 .niedo3/z2 .niedo3b2 .niedo3c2 .niedo3d2 .niedo3f2 .niedo3g2 .niedo3h2 .niedo3k2 .niedo3l2 .niedo3m2 .niedo3p2 .niedo3r2 .niedo3s2 .niedo3t2 .niedo3w2 .niedo3z2 .niedobrz2 .niedoch2 .niedocz2 .niedod/x2 .niedod/z2 .niedodz2 .niedokr2 .niedomk2 .niedopch2 .niedorz2 .niedosz2 .niedotk2 .niedz2 .nieo/c2 .nieo/l2 .nieo/s2 .nieo/x2 .nieo/z2 .nieo2 .nieob2 .nieob3/c2 .nieob3/s2 .nieob3/x2 .nieob3/z2 .nieob3c2 .nieob3d2 .nieob3f2 .nieob3g2 .nieob3h2 .nieob3j2 .nieob3k2 .nieob3m2 .nieob3p2 .nieob3s2 .nieob3w2 .nieobch2 .nieobcz2 .nieobd/x2 .nieobd/z2 .nieobdz2 .nieobsz2 .nieoc2 .nieoch2 .nieocz2 .nieod/x2 .nieod2 .nieod3/c2 .nieod3/l2 .nieod3/s2 .nieod3c2 .nieod3d2 .nieod3f2 .nieod3g2 .nieod3h2 .nieod3j2 .nieod3k2 .nieod3l2 .nieod3n2 .nieod3p2 .nieod3s2 .nieod3t2 .nieod3wr .nieod5/z2 .nieodch2 .nieodcz2 .nieodd/x2 .nieodd/z2 .nieoddz2 .nieodsz2 .nieodw2 .nieodz2 .nieof2 .nieog2 .nieoh2 .nieok2 .nieol2 .nieom2 .nieop2 .nieor2 .nieorz2 .nieos2 .nieosz2 .nieot2 .nieow2 .nieoz2 .niepo2d2 .niepo3/c2 .niepo3/l2 .niepo3/s2 .niepo3/x2 .niepo3/z2 .niepo3b2 .niepo3c2 .niepo3d/x2 .niepo3d4/lu .niepo3d4much .niepo3d4r/ecz .niepo3d4ra/z .niepo3d4rap .niepo3d4repcz .niepo3d4rept .niepo3d4waj .niepo3d4woj .niepo3do .niepo3du .niepo3dz2 .niepo3f2 .niepo3g2 .niepo3h2 .niepo3k2 .niepo3l2 .niepo3m2 .niepo3p2 .niepo3r2 .niepo3s2 .niepo3t2 .niepo3w2 .niepo3z2 .niepo4d3o2choc .niepo4d3o2strz .niepoch2 .niepocz2 .niepod3/c2 .niepod3/l2 .niepod3/s2 .niepod3b2 .niepod3c2 .niepod3d2 .niepod3f2 .niepod3g2 .niepod3h2 .niepod3j2 .niepod3k2 .niepod3l2 .niepod3m2 .niepod3n2 .niepod3p2 .niepod3r2 .niepod3s2 .niepod3t2 .niepod3w2 .niepod5/z .niepodch2 .niepodcz2 .niepodd/x2 .niepodd/z2 .niepodsm2 .niepodsz2 .nieporz2 .nieposm2 .nieposz2 .nieprze/lk2 .nieprze2d2 .nieprze3/c2 .nieprze3/l2 .nieprze3/s2 .nieprze3/x2 .nieprze3/z2 .nieprze3b2 .nieprze3brz2 .nieprze3c2 .nieprze3d/x2 .nieprze3d4/lu/z .nieprze3d4much .nieprze3d4ramat .nieprze3d4ruk .nieprze3d4ryl .nieprze3d4rz2 .nieprze3d4um .nieprze3dy .nieprze3dz2 .nieprze3e2k2s3 .nieprze3f2 .nieprze3g2 .nieprze3h2 .nieprze3k2 .nieprze3l2 .nieprze3m2 .nieprze3n2 .nieprze3p2 .nieprze3r2 .nieprze3s2 .nieprze3t2 .nieprze3w2 .nieprze3z2 .nieprze4d5/lu/zyc .nieprze4d5/z2 .nieprze4d5z2a .nieprze4d5zg2 .nieprze4d5zim .nieprze4d5zj .nieprze4d5zl .nieprze4d5zw2r .nieprze4d5zwoj .nieprzech2 .nieprzecz2 .nieprzed3/c2 .nieprzed3/l2 .nieprzed3/s2 .nieprzed3c2 .nieprzed3d2 .nieprzed3f2 .nieprzed3g2 .nieprzed3h2 .nieprzed3i2 .nieprzed3j2 .nieprzed3k2 .nieprzed3l2 .nieprzed3m2 .nieprzed3n2 .nieprzed3p2 .nieprzed3r2 .nieprzed3s2 .nieprzed3sz2 .nieprzed3t2 .nieprzed3u2 .nieprzed3w2 .nieprzedch2 .nieprzedcz2 .nieprzedd/x2 .nieprzedd/z2 .nieprzeddz2 .nieprzegrz2 .nieprzekl2 .nieprzekr2 .nieprzepch2 .nieprzer/z2 .nieprzerz2 .nieprzesch2 .nieprzesm2 .nieprzesz2 .nieprzetk2 .nieprzetr2 .niero2z3 .niero3z4e .niero3z4u .nieroz/s2 .nierozbrz2 .nieroze3r2 .nierozm2 .nieroztr2 .nierz2 .niesu2b3 .niesu3b4ie .niesz2 .nietk2 .nietr2 .nieucz2 .nieuw2 .niewy3/c2 .niewy3/l2 .niewy3/s2 .niewy3/x2 .niewy3/z2 .niewy3b2 .niewy3c2 .niewy3d2 .niewy3f2 .niewy3g2 .niewy3h2 .niewy3k2 .niewy3l2 .niewy3m2 .niewy3p2 .niewy3r2 .niewy3s2 .niewy3t2 .niewy3w2 .niewy3z2 .niewybrz2 .niewych2 .niewycz2 .niewyd/x2 .niewyd/z2 .niewydz2 .niewyrz2 .niewysz2 .niewytk2 .niewytr2 .niezw2 .nj8 .nk8 .nl8 .nm8 .nn8 .np8 .nr8 .ns8 .nt8 .nv8 .nw8 .nx8 .nz8 .o/c2 .o/s2 .o/smio3/s2 .o/x2 .o/z2 .o2b2 .o2d2 .o2t3ch/l .o3b4/l/a .o3b4/l/e .o3b4/loc .o3b4luzg .o3b4ra/c .o3b4raso .o3b4ro/n .o3b4ron .o3b4ry/x .o3b4ryz .o3b4rz2 .o3be .o3bi .o3d4iu .o3d4r/et .o3d4rap .o3d4robin .o3d4rut .o3d4rwi .o3d4rze/c .o3d4rzw .o3d6zia .o3d6zie .o3de .o3l2/sn .o4b5/locz .o4b5rz/a .o4b5rz/ed .o4b5rzez .o4b5rzuc .o4b5rzut .o4b5rzyn .o4d7ziar .o4d7ziem .oa3z .ob3/c2 .ob3/l2 .ob3/s2 .ob3/x2 .ob3/z2 .ob3c2 .ob3d2 .ob3f2 .ob3g2 .ob3h2 .ob3j2 .ob3k2 .ob3l2 .ob3m2 .ob3n2 .ob3o2strz .ob3p2 .ob3r .ob3s2 .ob3t2 .ob3u2m2 .ob3w2 .obch2 .obcz2 .obd/x2 .obd/z2 .obdz2 .obe3/c2 .obe3/l2 .obe3/s2 .obe3/x2 .obe3/z2 .obe3b2 .obe3c2 .obe3d2 .obe3f2 .obe3g2 .obe3h2 .obe3k2 .obe3l2 .obe3m2 .obe3p2 .obe3r2 .obe3r3t .obe3s2 .obe3t2 .obe3w2 .obe3z2 .obe4c3n .obe4z3w .obech2 .obecz2 .obed/x2 .obed/z2 .obedz2 .ober/z2 .ober3m .oberz2 .obesch2 .obesz2 .obetk2 .obi3b2 .obsz2 .oc2 .och2 .ochrz2 .ocz2 .od/x2 .od3/c2 .od3/s2 .od3au .od3b2 .od3c2 .od3d2 .od3f2 .od3g2 .od3h2 .od3i2 .od3i2zo .od3j2 .od3k2 .od3l2 .od3m2 .od3n2 .od3o2s .od3p2 .od3r2 .od3s2 .od3t2 .od3u2cz .od3u2m2 .od3w2 .od5/z2 .od5z2 .odbe2z3 .odch2 .odcz2 .odd/x2 .odd/z2 .oddz2 .ode3/c2 .ode3/l2 .ode3/s2 .ode3/x2 .ode3/z2 .ode3b2 .ode3c2 .ode3d2 .ode3f2 .ode3g2 .ode3h2 .ode3k2 .ode3l2 .ode3m2 .ode3mk2 .ode3p2 .ode3r2 .ode3s2 .ode3t2 .ode3w2 .ode3z2 .odech2 .odecz2 .oded/x2 .oded/z2 .odedz2 .odepch2 .oder/z2 .oderz2 .odesz2 .odetch2 .odetk2 .odkrz2 .odrz2 .odsz2 .of2 .og/olno3k2 .og2 .ognio3tr2 .oh2 .ok2 .oka3m2 .okr2 .ole2o3 .om2 .op2 .opch2 .or2/z2 .or2t/e .or2z2 .os2 .osie2m3 .osiemse2t3 .osz2 .ot2 .ow2 .oz2 .p/c8 .p/l8 .p/lasko3w2 .p/n8 .p/o/lk2 .p/o/lkr2 .p/o/lm2 .p/o/lo2 .p/o/lob3r .p/o/lom2d .p/o/lprzy3m2k .p/o2/l3 .p/o3/l4/a .p/o3/l4/e .p/o3/l4ecz .p/o3/l4y .p/s8 .p/x8 .p/z8 .p8 .pb8 .pc8 .pch8 .pd8 .pe/lno3kr2 .pe2r3 .pe3c2k .pe3r4e .pe3r4i .pe3r4o .pe3r4u .pe3r4y .pe4r5i2n .pee2se2l .pepee2r .pepee2s .peze2t1pee2r .pf8 .pg8 .ph8 .pi/e/cse2t3 .pi/e2/c3 .pi/ecio3/s2 .pierwo3w2 .piono3w2 .pj8 .pk8 .pl8 .pm8 .pn8 .po/lk2 .po2d2 .po3/c2 .po3/l2 .po3/s2 .po3/x2 .po3/z2 .po3b2 .po3c2 .po3d/a .po3d/e .po3d/x2 .po3d4/lu .po3d4much .po3d4naw .po3d4r/ecz .po3d4r/etw .po3d4r/o/z .po3d4r2wi .po3d4ra/z .po3d4rap .po3d4repcz .po3d4rept .po3d4ro/z .po3d4rob/o .po3d4roba .po3d4robo .po3d4roby .po3d4rocz .po3d4ruzg .po3d4ryg .po3d4rze .po3d4w/ojn .po3d4w/or .po3d4waj .po3d4woi .po3d4woj .po3d4worz .po3da .po3de .po3dej .po3diu .po3do .po3du .po3dy .po3dz2 .po3e2k2s3 .po3f2 .po3g2 .po3h2 .po3k2 .po3l2 .po3m2 .po3p2 .po3r/z .po3r2 .po3s2 .po3t2 .po3w2 .po3z2 .po4/n3c .po4cz3d .po4cz3t .po4d3/ow .po4d3e4k2s3 .po4d3o2b/oz .po4d3o2biad .po4d3o2bojcz .po4d3o2braz .po4d3o2choc .po4d3o2dm .po4d3o2f .po4d3o2g .po4d3o2kien .po4d3o2kn .po4d3o2kr/eg .po4d3o2kres .po4d3o2piecz .po4d3o2ryw .po4d3o2siniak .po4d3o2strz .po4d3obsz .po4d3odd .po4d3olbrz .po4d3u2cz .po4d3u2dz .po4d3u2pa .po4d3u2ral .po4d3u2sta .po4d3u2szcz .po4d5r/eczn .po4d5zakr .po4d5zam .po4d5zast .po4d5zbi .po4d5ze .po4d5zieleni/a .po4d5zieleni/c .po4d5zieleni/e .po4d5zieleni/l .po4d5zielenic .po4d5zielenien .po4d5zielenil .po4d5zielenim .po4d5zielenio .po4d5zielenis .po4d5ziem .po4d5ziom .po4d5zw2r .po4l3s .po4m3p .po4r3c .po4r3f .po4r3n .po4r3t .po4st3d .po4st3f .po4st3g .po4st3h .po4st3i2 .po4st3k .po4st3l .po4st3m .po4st3p .po4st3rom .po4st3s .po5d4uszczyn .po5r4t/e .pobr2 .pobrz2 .poch2 .pochrz2 .pocz2 .pod3/c2 .pod3/l2 .pod3/s2 .pod3/sr/o2d5 .pod3alp .pod3b2 .pod3c2 .pod3d2 .pod3f2 .pod3g2 .pod3h2 .pod3i2n .pod3j2 .pod3k2 .pod3l2 .pod3m2 .pod3n2 .pod3p2 .pod3r2 .pod3s2 .pod3t2 .pod3w2 .pod5/z2 .podch2 .podcz2 .podd/x2 .podd/z2 .pode3/c2 .pode3/l2 .pode3/s2 .pode3/x2 .pode3/z2 .pode3b2 .pode3c2 .pode3d2 .pode3f2 .pode3g2 .pode3h2 .pode3k2 .pode3l2 .pode3m2 .pode3p2 .pode3r2 .pode3s2 .pode3t2 .pode3tk2 .pode3w2 .pode3z2 .podech2 .podecz2 .poded/x2 .poded/z2 .podedz2 .podepch2 .poder/z2 .poderz2 .podesch2 .podesz2 .podro2z3 .podsm2 .podsz2 .pogrz2 .pokl2 .pokr2 .pom4pk .pomk2 .pona2d2 .pona3/c2 .pona3/l2 .pona3/s2 .pona3/x2 .pona3/z2 .pona3b2 .pona3c2 .pona3cz2 .pona3d/x2 .pona3do .pona3f2 .pona3g2 .pona3h2 .pona3k2 .pona3l2 .pona3m2 .pona3p2 .pona3r2 .pona3s2 .pona3t2 .pona3w2 .pona3z2 .pona4f3t .ponabrz2 .ponach2 .ponad3/c2 .ponad3/s2 .ponad3c2 .ponad3ch2 .ponad3cz2 .ponad3d/x2 .ponad3f2 .ponad3g2 .ponad3h2 .ponad3j2 .ponad3k2 .ponad3l2 .ponad3p2 .ponad3s2 .ponad3t2 .ponadz2 .ponarz2 .ponasm2 .ponasz2 .ponaz3m2 .ponazw2 .ponie3k2 .ponie3w2 .popch2 .popo3w2 .poprz2 .por4t1w .por4tf .por4tm .poro2z3 .poro3z4u .porz2 .posch2 .posm2 .posz2 .potk2 .potr2 .poz4m2 .poza3u2 .pozw2 .pp8 .pr8 .pra3s2 .pra3w2nu .pra3w2z .prapra3w2nu .predy2s3po .prz8 .prze/lk2 .prze2d2 .prze3/c2 .prze3/l2 .prze3/s2 .prze3/x2 .prze3/z2 .prze3b2 .prze3c2 .prze3d/a .prze3d/e .prze3d/x2 .prze3d4/lu/z .prze3d4much .prze3d4o3br .prze3d4o3st .prze3d4o3zo .prze3d4ramat .prze3d4ruk .prze3d4ryl .prze3d4rz2 .prze3d4um .prze3dy .prze3dz2 .prze3e2k2s3 .prze3f2 .prze3g2 .prze3h2 .prze3k2 .prze3l2 .prze3m2 .prze3n2 .prze3p2 .prze3r2 .prze3s2 .prze3t2 .prze3u2 .prze3w2 .prze3z2 .prze4d5/lu/zyc .prze4d5/z2 .prze4d5o4stat .prze4d5za .prze4d5zg2 .prze4d5zim .prze4d5zj .prze4d5zl .prze4d5zw2r .prze4d5zwoj .przebr2 .przebrz2 .przech2 .przechrz2 .przeci2w3 .przeci3w4ie .przeciwa2 .przeciww2 .przecz2 .przed3/c2 .przed3/l2 .przed3/s2 .przed3a2gon .przed3a2kc .przed3alp .przed3b2 .przed3c2 .przed3d2 .przed3e2gz .przed3e2mer .przed3f2 .przed3g2 .przed3h2 .przed3i2 .przed3j2 .przed3k2 .przed3l2 .przed3m2 .przed3n2 .przed3o2 .przed3p2 .przed3r2 .przed3s2 .przed3si/e3w2 .przed3sz2 .przed3t2 .przed3u2 .przed3w2 .przedch2 .przedcz2 .przedd/x2 .przedd/z2 .przeddz2 .przedgrz2 .przedy2s3ku .przegrz2 .przekl2 .przekr2 .przemk2 .przepch2 .przer/z2 .przerz2 .przesch2 .przesm2 .przesz2 .przetk2 .przetr2 .przetran2s3 .przy3/c2 .przy3/l2 .przy3/s2 .przy3/x2 .przy3/z2 .przy3b2 .przy3c2 .przy3d2 .przy3f2 .przy3g2 .przy3h2 .przy3k2 .przy3l2 .przy3m2 .przy3p2 .przy3r2 .przy3s2 .przy3t2 .przy3w2 .przy3z2 .przybr2 .przych2 .przycz2 .przyd/x2 .przyd/z2 .przydz2 .przygrz2 .przymk2 .przyoz2 .przypch2 .przyr/z2 .przyrz2 .przysch2 .przysz2 .przytk2 .ps8 .pt8 .pv8 .pw8 .px8 .pz8 .r/c8 .r/l8 .r/n8 .r/s8 .r/x8 .r/z8 .r8 .rb8 .rc8 .rd8 .retran2s3 .rf8 .rg8 .rh8 .rj8 .rk8 .rl8 .rm8 .rn8 .ro2z3 .ro3z4a .ro3z4e .ro3z4e3/c2 .ro3z4e3/l2 .ro3z4e3/s2 .ro3z4e3/x2 .ro3z4e3/z2 .ro3z4e3b2 .ro3z4e3c2 .ro3z4e3d2 .ro3z4e3f2 .ro3z4e3g2 .ro3z4e3h2 .ro3z4e3k2 .ro3z4e3l2 .ro3z4e3m2 .ro3z4e3p2 .ro3z4e3r2 .ro3z4e3s2 .ro3z4e3t2 .ro3z4e3w2 .ro3z4e3z2 .ro3z4ej .ro3z4u .ro4z5a2gi .ro4z5a2nie .ro4z5e2mo .ro4z5e4g3z .ro4z5e4n3t .roz/s2 .rozbrz2 .rozd2 .rozech2 .rozecz2 .rozed/x2 .rozed/z2 .rozedz2 .rozepch2 .rozer/z2 .rozerz2 .rozesch2 .rozesz2 .rozi2 .rozm2 .rozo2 .rozpo3w2 .rozt2 .roztr2 .rozw2 .rp8 .rr8 .rs8 .rt8 .rv8 .rw8 .rx8 .rz8 .s/c8 .s/l8 .s/n8 .s/s8 .s/x8 .s/z8 .s8 .samo3ch2 .samo3k2 .samo3p2 .samo3w2 .samoro2z3 .sb8 .sc8 .sch8 .sd8 .sf8 .sg8 .sh8 .siede2m3 .siedemse2t3 .siedmio3/s2 .sj8 .sk/a2d5/ze .sk8 .skl8 .skr8 .sl8 .sm8 .sn8 .sobo3w2 .sp/o2/l3 .sp8 .spo2d2 .spo3/c2 .spo3/l2 .spo3/s2 .spo3/x2 .spo3/z2 .spo3b2 .spo3c2 .spo3dz2 .spo3f2 .spo3g2 .spo3h2 .spo3k2 .spo3l2 .spo3m2 .spo3p2 .spo3r2 .spo3s2 .spo3t2 .spo3w2 .spo3z2 .spo4r3n .spo4r3t .spoch2 .spocz2 .spod/x2 .spod/z2 .spod3d .sporz2 .sposz2 .sr8 .ss8 .st8 .stere2o3 .stereoa2 .stereoe2 .stereoi2 .stereoo2 .stereou2 .su2b3 .su3b4ie .su3b4otn .supe2r3 .supe3r4at .supe3r4io .supe4r5a2tr .super5z2b .supere2 .supero2d1rzut .sv8 .sw8 .sx8 .sz8 .sze/s/cse2t3 .sze/scio3/s2 .sze2/s2/c3 .sze2s3 .t/c8 .t/l8 .t/n8 .t/s8 .t/x8 .t/z8 .t8 .ta2o3 .ta2r7zan .tb8 .tc8 .tch8 .td8 .te2o3 .tf8 .tg8 .th8 .tj8 .tk8 .tl8 .tm8 .tn8 .toa3 .tp8 .tr/o2j3 .tr/o3j4/a .tr/o3j4/e .tr/o3j4ecz .tr8 .tran2s3 .tran3s4e .tran3s4ie .tran3s4y .tran3sz .tran4s5eu .transa2 .transo2 .trz8 .trze2ch3 .trzechse2t3 .ts8 .tt8 .tv8 .tw8 .tx8 .tysi/a2c3 .tysi/a3c4a .tysi/a3c4e .tysi/a3cz .tysi/a4c5z/l .tz8 .u/c2 .u/s2 .u3/l2 .u3/x2 .u3/z2 .u3b2 .u3c2 .u3d2 .u3f2 .u3g2 .u3h2 .u3k2 .u3l2 .u3m2 .u3n2 .u3p2 .u3r2 .u3s2 .u3t2 .u3w2 .u3z2 .u4d3k .u4f3n .u4k3lej .u4l3s .u4l3t .u4m3br .u4n3c .u4n3d .u4p3p2s .u4r3s .u4st3n .u4stc .u4stk .u4z3be .ube2z3 .ubezw2 .ubr2 .uch2 .ucz2 .ud/x2 .ud/z2 .udz2 .ukr2 .umk2 .upch2 .upo2d2 .upo3/c2 .upo3/l2 .upo3/s2 .upo3/x2 .upo3/z2 .upo3b2 .upo3c2 .upo3da .upo3f2 .upo3g2 .upo3h2 .upo3k2 .upo3l2 .upo3m2 .upo3p2 .upo3r2 .upo3s2 .upo3t2 .upo3w2 .upo3z2 .upoch2 .upocz2 .upod/x2 .upod/z2 .upod3d .uporz2 .uposz2 .ur/z2 .uro2z3 .urz2 .usch2 .usz2 .utk2 .utr2 .uze3w2 .v/c8 .v/l8 .v/n8 .v/s8 .v/x8 .v/z8 .v8 .vb8 .vc8 .vd8 .vf8 .vg8 .vh8 .vj8 .vk8 .vl8 .vm8 .vn8 .vp8 .vr8 .vs8 .vt8 .vv8 .vw8 .vx8 .vz8 .w/c8 .w/l8 .w/n8 .w/s8 .w/x8 .w/z8 .w8 .wb8 .wc8 .wd8 .we3/c2 .we3/l2 .we3/s2 .we3/z2 .we3b2 .we3c2 .we3d2 .we3f2 .we3g2 .we3h2 .we3k2 .we3l2 .we3m2 .we3n2 .we3p2 .we3r2 .we3s2 .we3t2 .we3w2 .we3z2 .we4/l3n .we4k3t .we4l3w .we4n3d .we4n3t .we4r3b .we4r3d .we4r3n .we4r3s .we4r3t .we4s3prz .we4s3tch2 .we4z3br .we4z3g/l .wech2 .wecz2 .wed/x2 .wed/z2 .wedz2 .wemk2 .wepch2 .werz2 .wesz2 .wetk2 .wewn/a2trz3 .wf8 .wg8 .wh8 .wielo3/s2 .wielo3d2 .wielo3k2 .wieluse2t3 .wilczo3m2 .wj8 .wk8 .wl8 .wm8 .wn8 .wniebo3w2 .wodo3w2 .wp8 .wr8 .ws8 .wsp/o/li2 .wsp/o/lo2b3w .wsp/o/lu2 .wsp/o/lw2 .wsp/o2/l3 .wsze2ch3 .wszecho2 .wszechw2 .wt8 .wv8 .ww8 .wx8 .wy3/c2 .wy3/l2 .wy3/s2 .wy3/x2 .wy3/z2 .wy3b2 .wy3c2 .wy3d2 .wy3f2 .wy3g2 .wy3h2 .wy3k2 .wy3l2 .wy3m2 .wy3o2d3r .wy3p2 .wy3r2 .wy3s2 .wy3t2 .wy3w2 .wy3z2 .wy4/z3sz .wy4cz3ha .wybr2 .wybrz2 .wych2 .wycz2 .wyd/x2 .wyd/z2 .wydr2 .wydz2 .wye2k2s3 .wygrz2 .wyi2zo .wykl2 .wykr2 .wykrz2 .wymk2 .wypch2 .wyprz2 .wyr/z2 .wyrz2 .wysch2 .wysm2 .wysz2 .wytch2 .wytk2 .wytr2 .wz8 .x/c8 .x/l8 .x/n8 .x/s8 .x/x8 .x/z8 .x8 .xb8 .xc8 .xd8 .xf8 .xg8 .xh8 .xj8 .xk8 .xl8 .xm8 .xn8 .xp8 .xr8 .xs8 .xt8 .xv8 .xw8 .xx8 .xz8 .z/c8 .z/l8 .z/lo3w2 .z/n8 .z/s8 .z/x8 .z/z8 .z8 .za3/c2 .za3/l2 .za3/s2 .za3/x2 .za3/z2 .za3b2 .za3c2 .za3d2 .za3f2 .za3g2 .za3h2 .za3k2 .za3l2 .za3m2 .za3o2b3r .za3o2b3s .za3p2 .za3r2 .za3s2 .za3t2 .za3u2 .za3w2 .za3z2 .za4k3t .za4l3g .za4l3k .za4l3t .za4m3k .za4r3ch .za4uto .za5m4k2n .zabr2 .zabrz2 .zach2 .zacz2 .zad/x2 .zad/z2 .zado/s/cu4 .zado2/s/c3 .zadr2 .zady2s3po .zadz2 .zagrz2 .zai2n3 .zai2zo .zain4ic .zakl2 .zakr2 .zakrz2 .zanie3d2 .zar/z2 .zarz2 .zasch2 .zasm2 .zasz2 .zatk2 .zatr2 .zb8 .zc8 .zd8 .zde2z3 .zde3z4awu .zde3z4el .zde3z4er .zde3z4y .zdy2s3kont .zdy2s3kred .zdy2s3kwal .ze3/c2 .ze3/l2 .ze3/s2 .ze3/x2 .ze3/z2 .ze3b2 .ze3c2 .ze3d2 .ze3f2 .ze3g2 .ze3h2 .ze3k2 .ze3l2 .ze3m2 .ze3p2 .ze3r2 .ze3s2 .ze3t2 .ze3tk2 .ze3w2 .ze3z2 .ze4r3k .ze4t3e2m1e2s .ze4t3e2s1e2l .ze4t3emp .ze4t3hap .zech2 .zecz2 .zed/x2 .zed/z2 .zedz2 .zekl2 .zepch2 .zer/z2 .zerz2 .zesch2 .zesm4 .zesz2 .zf8 .zg8 .zh8 .zimno3kr2 .zj8 .zk8 .zl8 .zm8 .zmartwy2ch3 .zmartwychw2 .zn8 .znie3/c2 .znie3/l2 .znie3/n2 .znie3/s2 .znie3/x2 .znie3/z2 .znie3b2 .znie3c2 .znie3d2 .znie3f2 .znie3g2 .znie3h2 .znie3k2 .znie3l2 .znie3m2 .znie3n2 .znie3p2 .znie3r2 .znie3s2 .znie3t2 .znie3w2 .znie3z2 .znie4d/x3 .znie4m3c .zniech2 .zniecz2 .znied/z2 .zniedz2 .znierz2 .zniesz2 .zo2o3 .zp8 .zr8 .zro2z3 .zro3z4u .zs8 .zt8 .zv8 .zw8 .zx8 .zz8 /a1 /e1 /o1 /o4w3cz /s1c /x2d/x 1/s2ci 2/c1/n 2/c1/s 2/c1/x 2/c1/z 2/c1b 2/c1c 2/c1d 2/c1f 2/c1g 2/c1k 2/c1m 2/c1n 2/c1p 2/c1s 2/c1t 2/c1z 2/l1/c 2/l1/n 2/l1/s 2/l1/x 2/l1/z 2/l1b 2/l1c 2/l1d 2/l1f 2/l1g 2/l1h 2/l1j 2/l1k 2/l1l 2/l1m 2/l1n 2/l1p 2/l1r 2/l1s 2/l1t 2/l1w 2/l1z 2/n1/c 2/n1/l 2/n1/n 2/n1/s 2/n1/x 2/n1/z 2/n1b 2/n1c 2/n1d 2/n1f 2/n1g 2/n1h 2/n1j 2/n1k 2/n1l 2/n1m 2/n1n 2/n1p 2/n1r 2/n1s 2/n1t 2/n1w 2/n1z 2/s/cc 2/s1/s 2/s1/x 2/s1/z 2/s1b 2/s1d 2/s1f 2/s1g 2/s1k 2/s1p 2/s1s 2/s1t 2/s1z 2/slm 2/sln 2/x1/c 2/x1/s 2/x1/z 2/x1b 2/x1c 2/x1d 2/x1f 2/x1g 2/x1k 2/x1l 2/x1m 2/x1n 2/x1p 2/x1s 2/x1t 2/x1w 2/x1z 2/z1/c 2/z1/l 2/z1/n 2/z1/s 2/z1/x 2/z1b 2/z1c 2/z1d 2/z1f 2/z1g 2/z1j 2/z1k 2/z1l 2/z1m 2/z1n 2/z1p 2/z1r 2/z1s 2/z1t 2/z1w 2/z1z 2b/lk 2b1/c 2b1/n 2b1/s 2b1/x 2b1/z 2b1c 2b1d 2b1f 2b1g 2b1k 2b1m 2b1n 2b1p 2b1s 2b1t 2b1z 2brn 2c1/c 2c1/n 2c1/s 2c1/x 2c1/z 2c1b 2c1d 2c1f 2c1g 2c1k 2c1l 2c1m 2c1n 2c1p 2c1s 2c1t 2ch1/c 2ch1/n 2ch1/s 2ch1/x 2ch1/z 2ch1b 2ch1c 2ch1d 2ch1f 2ch1g 2ch1k 2ch1m 2ch1n 2ch1p 2ch1s 2ch1t 2ch1z 2cz1/c 2cz1/n 2cz1/s 2cz1/x 2cz1/z 2cz1b 2cz1c 2cz1d 2cz1f 2cz1g 2cz1k 2cz1l 2cz1m 2cz1n 2cz1p 2cz1s 2cz1t 2cz1z 2d/lb 2d/lsz 2d/x1/c 2d/x1/n 2d/x1/s 2d/x1/x 2d/x1/z 2d/x1b 2d/x1c 2d/x1d 2d/x1f 2d/x1g 2d/x1k 2d/x1m 2d/x1n 2d/x1p 2d/x1s 2d/x1t 2d/x1z 2d/z1/c 2d/z1/n 2d/z1/s 2d/z1/x 2d/z1/z 2d/z1b 2d/z1c 2d/z1d 2d/z1f 2d/z1g 2d/z1k 2d/z1m 2d/z1n 2d/z1p 2d/z1s 2d/z1t 2d/z1z 2d1/c 2d1/n 2d1/s 2d1b 2d1c 2d1f 2d1g 2d1k 2d1m 2d1n 2d1p 2d1s 2d1t 2drn 2dz1/c 2dz1/n 2dz1/s 2dz1/x 2dz1/z 2dz1b 2dz1c 2dz1d 2dz1f 2dz1g 2dz1k 2dz1l 2dz1m 2dz1n 2dz1p 2dz1s 2dz1t 2dz1z 2f1c 2f1k 2f1m 2f1n 2g/lb 2g1/c 2g1/n 2g1/s 2g1/x 2g1/z 2g1b 2g1c 2g1d 2g1f 2g1k 2g1m 2g1p 2g1s 2g1t 2g1z 2h1/c 2h1/l 2h1/n 2h1/s 2h1/x 2h1/z 2h1b 2h1c 2h1d 2h1f 2h1g 2h1j 2h1k 2h1l 2h1m 2h1n 2h1p 2h1r 2h1s 2h1t 2h1w 2h1z 2j1/c 2j1/l 2j1/n 2j1/s 2j1/x 2j1/z 2j1b 2j1c 2j1d 2j1f 2j1g 2j1h 2j1k 2j1l 2j1m 2j1n 2j1p 2j1r 2j1s 2j1t 2j1w 2j1z 2k/lb 2k1/c 2k1/n 2k1/s 2k1/x 2k1/z 2k1b 2k1c 2k1d 2k1f 2k1g 2k1m 2k1n 2k1p 2k1s 2k1sz 2k1t 2k1z 2l1/c 2l1/l 2l1/n 2l1/s 2l1/x 2l1/z 2l1b 2l1c 2l1d 2l1f 2l1g 2l1h 2l1j 2l1k 2l1m 2l1n 2l1p 2l1r 2l1s 2l1t 2l1w 2l1z 2m1/c 2m1/l 2m1/n 2m1/s 2m1/x 2m1/z 2m1b 2m1c 2m1d 2m1f 2m1g 2m1h 2m1j 2m1k 2m1l 2m1n 2m1p 2m1r 2m1s 2m1t 2m1w 2m1z 2n1/c 2n1/l 2n1/n 2n1/s 2n1/x 2n1/z 2n1b 2n1c 2n1d 2n1f 2n1g 2n1h 2n1j 2n1k 2n1l 2n1m 2n1p 2n1r 2n1s 2n1t 2n1w 2n1z 2ntn 2p1/c 2p1/n 2p1/s 2p1/x 2p1/z 2p1b 2p1c 2p1d 2p1f 2p1g 2p1k 2p1m 2p1n 2p1s 2p1sz 2p1t 2p1z 2pln 2r1/c 2r1/l 2r1/n 2r1/s 2r1/x 2r1/z 2r1b 2r1c 2r1d 2r1f 2r1g 2r1h 2r1j 2r1k 2r1l 2r1m 2r1n 2r1p 2r1s 2r1t 2r1w 2rz1/c 2rz1/l 2rz1/n 2rz1/s 2rz1/x 2rz1/z 2rz1b 2rz1c 2rz1d 2rz1f 2rz1g 2rz1h 2rz1j 2rz1k 2rz1l 2rz1m 2rz1n 2rz1p 2rz1r 2rz1s 2rz1t 2rz1w 2s/lb 2s1/x 2s1/z 2s1b 2s1d 2s1f 2s1g 2s1s 2snk 2stk 2stn 2stsz 2sz1/c 2sz1/s 2sz1c 2sz1f 2sz1k 2sz1l 2sz1m 2sz1n 2sz1p 2sz1s 2sz1t 2sz1w 2sz1z 2szln 2t1/c 2t1/n 2t1/s 2t1/x 2t1/z 2t1b 2t1c 2t1d 2t1f 2t1g 2t1k 2t1m 2t1n 2t1p 2t1s 2t1z 2tln 2trk 2trzn 2w1/c 2w1/l 2w1/n 2w1/s 2w1/x 2w1/z 2w1b 2w1c 2w1d 2w1f 2w1g 2w1j 2w1k 2w1l 2w1m 2w1n 2w1p 2w1r 2w1s 2w1t 2w1z 2z1/c 2z1/s 2z1c 2z1d 2z1f 2z1k 2z1p 2z1s 2z1t 2zdk 2zdn 3d2niow 3k2sz2t 3m2k2n 3m2nest 3m2nezj 3m2sk2n 3p2neu 3w2/lad 3w2/los 3w2czas 4/c3/c 4/l3/l 4/x3/x 4/z3/z 4b3b 4c3c 4d3d 4f3f 4g3g 4h3h 4j3j 4k3k 4l3l 4m3m 4n3n 4p3p 4r3r 4t3t 4w3w 4z3z 8/c. 8/c/c. 8/c/l. 8/c/n. 8/c/s. 8/c/x. 8/c/z. 8/cb. 8/cc. 8/cd. 8/cf. 8/cg. 8/ch. 8/cj. 8/ck. 8/cl. 8/cm. 8/cn. 8/cp. 8/cr. 8/cs. 8/ct. 8/cv. 8/cw. 8/cx. 8/cz. 8/l. 8/l/c. 8/l/l. 8/l/n. 8/l/s. 8/l/x. 8/l/z. 8/lb. 8/lc. 8/ld. 8/lf. 8/lg. 8/lh. 8/lj. 8/lk. 8/ll. 8/lm. 8/ln. 8/lp. 8/lr. 8/ls. 8/lt. 8/lv. 8/lw. 8/lx. 8/lz. 8/n. 8/n/c. 8/n/l. 8/n/n. 8/n/s. 8/n/x. 8/n/z. 8/nb. 8/nc. 8/nd. 8/nf. 8/ng. 8/nh. 8/nj. 8/nk. 8/nl. 8/nm. 8/nn. 8/np. 8/nr. 8/ns. 8/nt. 8/nv. 8/nw. 8/nx. 8/nz. 8/s. 8/s/c. 8/s/l. 8/s/n. 8/s/s. 8/s/x. 8/s/z. 8/sb. 8/sc. 8/sd. 8/sf. 8/sg. 8/sh. 8/sj. 8/sk. 8/sl. 8/sm. 8/sn. 8/sp. 8/sr. 8/ss. 8/st. 8/sv. 8/sw. 8/sx. 8/sz. 8/x. 8/x/c. 8/x/l. 8/x/n. 8/x/s. 8/x/x. 8/x/z. 8/xb. 8/xc. 8/xd. 8/xf. 8/xg. 8/xh. 8/xj. 8/xk. 8/xl. 8/xm. 8/xn. 8/xp. 8/xr. 8/xs. 8/xt. 8/xv. 8/xw. 8/xx. 8/xz. 8/z. 8/z/c. 8/z/l. 8/z/n. 8/z/s. 8/z/x. 8/z/z. 8/zb. 8/zc. 8/zd. 8/zf. 8/zg. 8/zh. 8/zj. 8/zk. 8/zl. 8/zm. 8/zn. 8/zp. 8/zr. 8/zs. 8/zt. 8/zv. 8/zw. 8/zx. 8/zz. 8b. 8b/c. 8b/l. 8b/n. 8b/s. 8b/x. 8b/z. 8bb. 8bc. 8bd. 8bf. 8bg. 8bh. 8bj. 8bk. 8bl. 8bm. 8bn. 8bp. 8br. 8brz. 8bs. 8bt. 8bv. 8bw. 8bx. 8bz. 8c. 8c/c. 8c/l. 8c/n. 8c/s. 8c/x. 8c/z. 8cb. 8cc. 8cd. 8cf. 8cg. 8ch. 8ch/l. 8chrz. 8chw. 8cj. 8ck. 8cl. 8cm. 8cn. 8cp. 8cr. 8cs. 8ct. 8cv. 8cw. 8cx. 8cz. 8czt. 8d. 8d/c. 8d/l. 8d/n. 8d/s. 8d/x. 8d/z. 8db. 8dc. 8dd. 8df. 8dg. 8dh. 8dj. 8dk. 8dl. 8dm. 8dn. 8dp. 8dr. 8drz. 8ds. 8dt. 8dv. 8dw. 8dx. 8dz. 8f. 8f/c. 8f/l. 8f/n. 8f/s. 8f/x. 8f/z. 8fb. 8fc. 8fd. 8ff. 8fg. 8fh. 8fj. 8fk. 8fl. 8fm. 8fn. 8fp. 8fr. 8fs. 8ft. 8fv. 8fw. 8fx. 8fz. 8g. 8g/c. 8g/l. 8g/n. 8g/s. 8g/x. 8g/z. 8gb. 8gc. 8gd. 8gf. 8gg. 8gh. 8gj. 8gk. 8gl. 8gm. 8gn. 8gp. 8gr. 8gs. 8gt. 8gv. 8gw. 8gx. 8gz. 8h. 8h/c. 8h/l. 8h/n. 8h/s. 8h/x. 8h/z. 8hb. 8hc. 8hd. 8hf. 8hg. 8hh. 8hj. 8hk. 8hl. 8hm. 8hn. 8hp. 8hr. 8hs. 8ht. 8hv. 8hw. 8hx. 8hz. 8j. 8j/c. 8j/l. 8j/n. 8j/s. 8j/x. 8j/z. 8jb. 8jc. 8jd. 8jf. 8jg. 8jh. 8jj. 8jk. 8jl. 8jm. 8jn. 8jp. 8jr. 8js. 8jt. 8jv. 8jw. 8jx. 8jz. 8k. 8k/c. 8k/l. 8k/n. 8k/s. 8k/x. 8k/z. 8kb. 8kc. 8kd. 8kf. 8kg. 8kh. 8kj. 8kk. 8kl. 8km. 8kn. 8kp. 8kr. 8ks. 8kst. 8kt. 8kv. 8kw. 8kx. 8kz. 8l. 8l/c. 8l/l. 8l/n. 8l/s. 8l/x. 8l/z. 8lb. 8lc. 8ld. 8lf. 8lg. 8lh. 8lj. 8lk. 8ll. 8lm. 8ln. 8lp. 8lr. 8ls. 8lt. 8lv. 8lw. 8lx. 8lz. 8m. 8m/c. 8m/l. 8m/n. 8m/s. 8m/x. 8m/z. 8mb. 8mc. 8md. 8mf. 8mg. 8mh. 8mj. 8mk. 8ml. 8mm. 8mn. 8mp. 8mr. 8ms. 8mst. 8mt. 8mv. 8mw. 8mx. 8mz. 8n. 8n/c. 8n/l. 8n/n. 8n/s. 8n/x. 8n/z. 8nb. 8nc. 8nd. 8nf. 8ng. 8nh. 8nj. 8nk. 8nl. 8nm. 8nn. 8np. 8nr. 8ns. 8nt. 8nv. 8nw. 8nx. 8nz. 8p. 8p/c. 8p/l. 8p/n. 8p/s. 8p/x. 8p/z. 8pb. 8pc. 8pd. 8pf. 8pg. 8ph. 8pj. 8pk. 8pl. 8pm. 8pn. 8pp. 8pr. 8prz. 8ps. 8pt. 8pv. 8pw. 8px. 8pz. 8r. 8r/c. 8r/l. 8r/n. 8r/s. 8r/x. 8r/z. 8rb. 8rc. 8rd. 8rf. 8rg. 8rh. 8rj. 8rk. 8rl. 8rm. 8rn. 8rp. 8rr. 8rs. 8rsz. 8rt. 8rv. 8rw. 8rx. 8rz. 8rz/l. 8s. 8s/c. 8s/l. 8s/n. 8s/s. 8s/x. 8s/z. 8sb. 8sc. 8sch. 8sd. 8sf. 8sg. 8sh. 8sj. 8sk. 8skrz. 8sl. 8sm. 8sn. 8sp. 8sr. 8ss. 8st. 8str. 8strz. 8stw. 8sv. 8sw. 8sx. 8sz. 8szcz. 8szczb. 8szk. 8szn. 8szt. 8sztr. 8t. 8t/c. 8t/l. 8t/n. 8t/s. 8t/x. 8t/z. 8tb. 8tc. 8td. 8tf. 8tg. 8th. 8tj. 8tk. 8tl. 8tm. 8tn. 8tp. 8tr. 8trz. 8ts. 8tt. 8tv. 8tw. 8tx. 8tz. 8v. 8v/c. 8v/l. 8v/n. 8v/s. 8v/x. 8v/z. 8vb. 8vc. 8vd. 8vf. 8vg. 8vh. 8vj. 8vk. 8vl. 8vm. 8vn. 8vp. 8vr. 8vs. 8vt. 8vv. 8vw. 8vx. 8vz. 8w. 8w/c. 8w/l. 8w/n. 8w/s. 8w/x. 8w/z. 8wb. 8wc. 8wd. 8wf. 8wg. 8wh. 8wj. 8wk. 8wl. 8wm. 8wn. 8wp. 8wr. 8ws. 8wt. 8wv. 8ww. 8wx. 8wz. 8x. 8x/c. 8x/l. 8x/n. 8x/s. 8x/x. 8x/z. 8xb. 8xc. 8xd. 8xf. 8xg. 8xh. 8xj. 8xk. 8xl. 8xm. 8xn. 8xp. 8xr. 8xs. 8xt. 8xv. 8xw. 8xx. 8xz. 8z. 8z/c. 8z/l. 8z/n. 8z/s. 8z/x. 8z/z. 8zb. 8zc. 8zd. 8zdr. 8zdrz. 8zf. 8zg. 8zh. 8zj. 8zk. 8zl. 8zm. 8zn. 8zp. 8zr. 8zs. 8zt. 8zv. 8zw. 8zx. 8zz. a1 a2u a2y aa2 ae2 ai2 ao2 be2eth be2f3sz2 be2k1hend bi2n3o2ku bi2sz3kop bi2z3ne2s3m bi2z3nes birmin2g1ham blo2k1hauz bo2s3ma br2d bro2a2d3way bu2sz3me buk2sz3pan busine2ss3m busines2s c4h c4z cal2d1well ch2/l ch2j ch2l ch2r ch2w chus1t cu2r7zon d/z2/l d/z2j d/z2l d/z2r d/z2w d/ze4z3b d/ze4z3m d4/x d4/z d4z deut4sch3land drz2w du2sz3past e1 e2r5zac e2u e2y e3u2sz ea2 ee2 ei2 eo2 fi2s3harm fi2sz3bin fo2k2s3t fo2r5zac fol2k1lor fos2f1a2zot ga3d2get gado3p2ta gol2f3s golfsz2 gran2d1ilo gro4t3r hi2sz3p hu2cz1w hu2x3ley i1 i2/a i2/e i2/o i2a i2e i2i i2o i2u i2y in4nsbruck in4sbruc j2t1/l j2t1r ja4z4z3b ja4z4z3m karl2s1kron karl2s1ruhe kir2chhoff kongre2s3m led1w lu2ft3waffe lu2ks1fer ly2o ma2r5z/l ma2r5zl ma2r5zn mi2sz1masz mie2r5z/l mie2r5zi mon2t3real moza2i3k mu2r7zasich3l na4/l3kows na4r3v o1 o2y oa2 och3mistrz oe2 of2f3set oi2 oo2 ou2 pa2n3a2mer pa2s3cal pa2s3ch po/lu3d2ni po3d4nieprz po3m2n/a po3m2n/e po3m2ni po4rt2s3mo2uth po4rt3land poli3e2t poli3u2re powsze3d2ni pr2chal pre2sz3pa r4z ro2e3nt2gen ro2k3rocz ro2s3to3c2k s4z se2t3le sko2r5zoner sm2r sowi3z2 sy2n3opt sy2s1tem sza2sz1/ly sze2z1long sze4/s/c szto2k1holm szyn2k1was to3y2o3t turboo2d3rzut tygo3d2ni u1 u2y ua2 ue2 ui2 uo2 uu2 vo2lk2s3 we2e2k1end we4st3f we4st3m y1 ya2 ye2 yi2 yo2 yu2 ze4p3p be-zach be-zami by-naj-mniej gdzie-nie-gdzie ina-czej na-dal ni-gdy ni-gdzie niech-/ze niech-by ow-szem p/o-/lach p/o-/lami p/o-/lek pod-/ow-czas przy-naj-mniej sk/ad-in/ad tr/o-jach tr/o-jami tr/o-jek liblouis-2.5.3/tables/de-ch-g0.utb0000664000175000017500000000231612161041546013542 00000000000000# liblouis: Swiss German Grade 0 Braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE BASISSCHRIFT - German Grade 0 Braille - Switzerland # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include de-eurobrl6u.dis include de-chardefs6.cti include de-ch-accents.cti include de-de-accents.cti include de-g0-core.uti liblouis-2.5.3/tables/hyph_da_DK.dic0000664000175000017500000001403112161041546014212 00000000000000UTF-8 .ae3 .an3k .an1s .be5la .be1t .bi4tr .der3i .diagno5 .her3 .hoved3 .ne4t5 .næv5nt. .om1 .ove4 .po1 .sÃ¥3 .til3 .yd5r .ær5i .øv3r ab5le 3abst a3c ade5la 5adg a1e 5afg 5a4f1l af3r af4ri 5afs a4gef a4gi ag5in ag5si 3agti a4gy a3h ais5t a3j a5ka a3ke a5kr aku5 a3la a1le a1li al3k 4alkv a1lo al5si a3lu a1ly am4pa 3analy an4k5r a3nu 3anv a5o a5pe a3pi a5po a1ra ar5af 1arb a1re 5arg a1ri a3ro a3sa a3sc a1si a3sk a3so 3a3sp a3ste a3sti a1ta1 a1te a1ti a4t5in a1to ato5v a5tr a1tu a3tø a5va a1ve a5væ a5z 1ba ba4ti 4bd 1be be1k be3ro be5ru be1s4 be1tr 1bi bi5sk b1j 4b1n 1bo bo4gr bo3ra bo5re 1br4 brød3 4bs bs5k b3so b1st b5t 3bu bu4s5tr b5w 1by by5s 5bæ 4c1c 1ce ce5ro 3ch 4ch. ci4o ck3 5cy 3da 4d3af d5anta da4s d1b d1d4 1de de5d 4de4lem der5eri de4rig de5sk d1f d1g d3h 1di di1e di5l d3j d1k d1l d1m 4d1n 3do 4dop d5ov d1p 4drett 5d4reve 3drif 3driv d5ros d5ru 5drøv ds5an ds5in d1ski d4sm dstÃ¥4 d4su dsu5l ds5vi d3ta d1te dt5o d5tr dt5u 1du dub5 d1v 3dy 3dæ 3dø e5ad e3af e5ag e3ak e1al ea4la e3an e5ap e3at e3bl ebs3 e1ci ed5ar edde4 eddel5 e4do ed5ra ed3re ed3rin ed4str e3e 3eff e3fr 3eft e3gu e1h e3in ei5s e3je e4j5el e1ka e3ke e3kl 4e1ko e5kr ek5sa 3eksem 3eksp e3ku e1kv e5ky e3lad el3ak el3ar e1las e3le e4lek 3elem e1li 5elim e3lo el5sa e5lu e3ly e3læ e3lø e4mad em4p5le em1s en5ak e4nan 4enn e4no en3so e5nu e5ol e3op e1or e3ov epi3 e1pr e3ra er3af e4rag e4rak e1re e4ref er5ege 5erhv e1ri e4rib er1k ero5d er5ov er3s er5tr e3rum er5un e5ry e3rø er5øn e1ta e1te etek4s e1ti e3tj e1to e3tr e3tu e1ty e5tæ e5tø e3um e3un 3eur e1va e3ve e4v3erf e1vi e1væ e5x e3æ e5Ã¥ 1fa fa4ce fags3 f1b f1d 1fe fej4 fejl1 f1f f1g f1h 1fi f1k 3fl 1fo for1en fo4ri f1p f1s4 4ft f3ta f1te f1ti f5to f5tvi 1fu f1v 3fy 3fæ 3fø fø4r5en 1ga g3art g1b g1d 1ge 4g5enden ger3in ge3s g3f g1g g1h 1gi gi4b gi3st giø4 5gj g3k g1l g1m 3go 4g5om g5ov g3p 1gr gs1a gsde4len g4se gsha4 g5sla gs3or gs1p g5s4tide g4str gs1v g4sø g5sÃ¥ g3ta g1te g1ti g5to g3tr gt4s g3ud gun5 g3v 1gy g5yd 3gæ 3gø1 3gÃ¥ 4ha. heds3 he5s 4het hi4e hi4n5 hi3s ho5ko ho5ve 4h3t hun4 hund3 hvo4 i1a i3b i4ble i1c i3dr ids5k i1el i1en i3er i3et. if3r i3gu i3h i5i i5j i1ka i1ke ik1l i5ko ik3re ik5ri iks5t ik4tu i3ku ik3v i3lag il3eg il5ej il5el i3li i4l5id il3k i1lo il5u i3mu ind3t 5inf ings1 in3s in4sv inter1 i3nu i3od i3og i5ok i3ol ion4 ions1 i5o5r i3ot i5pi i3pli i5pr i3re i3ri ir5t i3sc i3si i4sm is3p i1ster i3sti i5sua i1ta i1te i1ti i3to i3tr it5re. i1tu i3ty i5tæ i1u i1va i1ve i1vi i3ø j3ag jde4rer jds1 jek4to 4j5en. j5k j3le j3li jlmeld5 jlmel4di j3r jre5 ju3s 5kap k5au 5kav k5b kel5s ke3sk ke5st ke4t5a k3h ki3e ki3st k1k k5lak k1le 3klu k4ny 5kod 1kon ko3ra 3kort ko3v 1kra 5kry ks3an k1si ks3k ks1p k3ste k5stu ks5v k1t k4tar k4terh kti4e kt5re kt5s 3kur 1kus 3kut k4vo k4vu 3kø 3kÃ¥ 5lab lad3r 5lagd la4g3r 5lam 1lat l1b ldiagnos5 l3dr ld3st 1le. 5led 4lele le4mo 3len 1ler 1les 4leu l1f lfin4 lfind5 l1go1 l3h li4ga lingeniø4 4l5ins 4l3int li5o l3j l1ke l1ko l3ky l1l l5mu lo4du l3op 4l5or 3lov 4l3p l4ps l3r 4ls lses1 ls5in l5sj l1ta l4taf l1te l4t5erf l3ti lt3o l3tr l3tu lu5l l3ve l3vi l3væ 5løs 1ma m1b m3d 1me 4m5ej m3f m1g m3h 1mi mi3k m5ing mi4o mi5sty m3k m1l m1m mmen5 m1n 3mo mo4da 4mop 4m5ov m1pe m3pi m3pl m1po m3pr m1r mse5s ms5in m5sk ms3p m3ste ms5v m3ta m3te m3ti m3tr m5tÃ¥ m1ud 1mul mu1li 3my 1mæ 3mø 3mÃ¥ 3na 4nak 1nal n1b n1c 4nd n3dr nd5si nd5sk nd5sp 1ne ne5a ne4da nemen4 nement5e neo4 n3erk n5erl ne5sl ne5st n1f n4go 4n1h 1ni 4nim ni5o ni3st n1ke n1ko n3kr n3ku n5kv n3kæ 4n1l n1m n1n 1no n3ord n5p n3r 4ns n3si n1sku ns3po n1sta n5sti n1ta nta4le n1te n1ti ntiali4 n3to n1tr nt4s5t nt4su n3tu n3ty n5tæ 4n1v 3ny n3z 3næ 4n5æb 5nø o3a o4as ob3li o1c o4din od5ri od5s od5un o1e of5r o4gek o4gel o4g5o og5re og5sk o5h o5in oi6s5e o1j o3ka o1ke o3ku o3la o3le o1li o1lo o3lu o5ly o5læ 1omr on3k ook5 o3or o5ov o3pi op3l op3r op3s 3opta 4or. or1an 3ordn ord5s o3re. o3reg o3rek o3rer o3re3s o3ret o3ri 3orient or5im o4r5in or3k or5o or3sl or3st or3ø o3si o3so o3t o1te o5un ov4s o5Ã¥ 3pa pa5gh p5anl p3d 4pec 3pen 1per pe1ra pe5s pe3u p3f 4p5h 1pla p4lan 4ple. 4pler 4ples p3m p3n 5pok 4po3re 3pot 4p5p4 p4ro 1proc 5præ p3sk p5so ps4p p3st p1t 1pu pu5b p5ule p5v 5py3 5pæd pÃ¥3 qu4 4raf ra5is 4rarb r1b r4d5ar r3dr rd4s3 4reks 1rel re5la r5enss 5rese re5spo 4ress re3st re5s4u 5rett r1f r1gu r1h ri1e ri5la 4rimo r4ing ringse4 ringso4r 4rinp 4rint r3ka r1ke r1ki rk3so r3ku r5kæ r1l rmo4 r5mu r1n ro1b ro3p r3or r3p r1r rre5s rro4n5 r1sa r1si r5skr r4sk5v rs4n r3sp r5stu r5su r3sv r5tal r1te r4teli r1ti r3to r4t5or rt5rat rt3re r5tri r5tro rt3s r5ty r5tæ r5tø r3ud run4da 5rut r3va r1ve r3vi r3væ ry4s r5æl 4røn 5rør 3rÃ¥d r5Ã¥r s3af 1sam sa4ma s3ap s1ar 1sat 4s1b s1d sdy4 1se s4ed 5s4er se4se s1f 4s1g4 4s3h si4bl 1sig s5int 5sis 5sit 5siu s5ju 4sk. 1skab 1ske s3kl sk5s4 5sky s4kÃ¥ s1le s1li slo3 5slu s5ly 3slÃ¥ s1m s4my 4snin s4nit s4næ so5k 5sol 5som. 3somm s5oms 5somt 3son 4s1op sp4 3spec 4sper 3s4pi s1pl 3sprog. s5r4 s1s4 4st. 5s4tam 1stan st5as 3stat 1stav 1ste. 1sted 3stel 5stemo 1sten 5step 3ster. 3stes 5stet 5stj 3sto st5om 1str 5stø 1stÃ¥ s1ud 3sul s3un 3sur s3ve 3s4y 1sy1s 1sæ 4s5æn 1sø s5øk sÃ¥4r5 5ta. 1tag tands3 4tanv 4tb tede4l teds5 3teg 5tekn teo1 5term te5ro 4t1f 6t3g t1h tialis5t 3tid ti4en ti3st ti4ø 4t3k 4t1l tli4s5 t1m t1n to5ra to1re to1ri tor4m 4t3p t4ra 4tres tro5v 1try 3træk. 4ts t3si ts4pa ts5pr t3st ts5ul t4sø t5sÃ¥ 4t1t t5uds 5tur t5ve t3væ 1typ u1a 5udl ud5r ud3s 3udv u1e ue4t5 uge4ri ugs3 u5gu u3i u5kl uk4ta uk4tr u1la u1le u5ly u3læ u5pe up5l u5q u3ra u3re u4r3eg u1rer u3ro us5a u3si u5ska u5so us5v u1te u1ti u1to ut5r ut5s4 5u5v va5d 3varm 1ved ve4l5e ve4reg ve3s 5vet v5h vi4l3in 1vis v5j v5k vl4 v3le v5li vls1 1vo 4v5om v5p v5re v3st v5su v5t 3vu 3værd 1værk 5vÃ¥ y3a y5dr y3e y3ke y5ki yk3li y3ko yk4s5 y3kv y5li y5lo y5mu yns5 y5o y1pe y3pi y3re yr3ek y3ri y3si y3ti y5t3r y5ve y5væ zi5o æb3l æ3c æ3e æg5a æ4gek æ4g5r ægs5 æ5i æ5kv ælle4 æn1dr æ5o æ1re ær4g5r æ3ri ær4ma ær4mo ær5s æ5si æ3so æ3ste æ3ve øde5 ø3e ø1je ø3ke ø3le øms5 øn3st øn4t3 ø1re ø3ri ørne3 ør5o ø1ve Ã¥1d Ã¥1e Ã¥5h Ã¥3l Ã¥3re Ã¥rs5t Ã¥5sk Ã¥3t liblouis-2.5.3/tables/hyph_hu_HU.dic0000664000175000017500000325674712161041546014311 00000000000000UTF-8 .a2 .a1bi1 .ada2t1á1t1a2 .a1da .ada1tá .ada2t1e2 .adás1s .a1dá .adá2s3z .ad1es .a1de .ad1yé .ad1yi .aes1 .a1e .ag1os .a1go .ag2ra .a2gyag1g .ag2y .a1gya .agy1á2ram .a1gyá .agyá1ra .agy1árt .a1gy1e2 .a1gyo2 .agyon1 .a1gy1ó2 .2a1gy1ű2 .ai2a .a1i .akác1c .a1ká .aká2c2s .ak2h .a1ko2 .ak2t1é2r. .ak1té .ak2t1orr .ak1to .ak2t1Å‘2 .aku1p2 .a1ku .ala2g1 .a1la .ala2i .ala1k1a2 .ala2k1ö2 .ala2k1Å‘2 .ala2p1á .al1eg .a1le .al1is .a1li .al2járn .al1já .al1je2 .al2j1el .alje1l1ö2 .al2lem .al1le .alo2m1 .a1lo .al1os .al1p2 .al2t1a2k .al1ta .al2t1erj .al1te .al2té2n .al1té .al2térn .al2tért .al2tim .al1ti .al2ti2n .am1ak .a1ma .ango2l1ó2 .an1go .anti1s .an1ti .2apa1p2 .a1pa .apá2ly1á2z .a1pá .ap2ál2y .apá1lyá .ar2a2ny1e2 .a1ra .aran2y .ara2s1ze .aras2z .2ar1á2c .a1rá .ar2cal .ar1ca .arc3c .ar2c1e2 .ar2cél .ar1cé .ar2c3há .arc2h .ar2c3hoz .ar1c1ho .ar2cin .ar1ci .ar2ci1o .ar2col .ar1co .ar2cö .ar2c3s .ar1kh .at2h .a1z1a2 .az1ám .a1zá .a1ze2 .a1z1ó2 .á2 .ács1é2k .ác2s .á1c1sé .ág1árn .á1gá .ág1árt .á1g1ó2 .ágy1a1la .ág2y .á1gya .ágy1as2z .ágy1árt .á1gyá .ágy1á2z .á1l1a2 .á1l1é .á1l1i2 .á2l1i2gaz1 .áli2g .á2l1i1ga .ál2l1alj .ál1la .ál2l1alt .ál2lin .ál1li .ál1o2k .á1lo .á1l1ú .ár1aj .á1ra .ár1ak1tá .ár1a2l .ára2m1e .ár1a2p .ára2s2z .ár1a1s1zó .ár1á2c .á1rá .ár1ál .ár1á2z .ár1d2 .á1re2 .ár1em .á1ré2 .ár1ir .á1ri .ár2nye2l .árn2y .ár1nye .ár1ol .á1ro .ár1om .ár1os .árrés1s .ár1ré .ár1s2 .ár1t2r .ász1ál .ás2z .á1s1zá .ász1árb .ász1á2ré .ász1á2ri .ász1á2ro .át1a2d .á1ta .át1a2k .át1alt .át1a2n .át1ar .át1a2s .át1av .á1t1á2 .á1t1e2 .á1t1é2 .á1t1i2 .át1ol .á1to .át1o2r .át1o2s .á1tó2 .át1óh .át1óv .á1t1ö2 .á1t1u .á1t1ü2 .á1t1ű .b2 .ba2b1a2rá .1ba .b2abar .ba1ba .ba2bál .ba1bá .ba1be2 .b2a2bev .ba2bol .ba1bo .ba2j1á2rat .b2ajár .ba1já .bajá1ra .ba2j1e .ba2k1aszt .2bakas .ba1ka .bakas2z .ba2kál .ba1ká .ba2k1á2ro .ba1ké2 .ba2k1ö2 .ba2ku2r .ba1ku .ba2l1e2g .ba1le .ba1n2j .ba2te .ba1ts .ba2u .bá2ló .1bá .bá1r1a .bá1t2h .be2a2t. .1be .be1a .be1d2 .be1i2 .be1kr .be1str .be1szk .bes2z .beté2t1e2l .be1té .beté1te .be1tr .bér2c3sí .1bé .bérc2s .bé2r1o .bi2ke .1bi .bi2o1 .bi1ta2 .bi2tag .bi2t1á2 .bi2tel .bi1te .b2i2t1er .bi2t1orr .bi1to .bi2tur .bi1tu .bo2g1ó2 .1bo .bol2ta .b2o2ly1ó2 .bol2y .bo2nav .bo1na1 .bo2raj .bo1ra .bo2ra2n .bo2ras .bo2rat .bo2rác .bo1rá .bo2rál .bo2r1odv .bo1ro .bo2r1os2z .bor2sét .bor1sé .bort2 .bo2tá .bra2i .b1ra .bu2s1z1e .1bu .bus2z .c2 .ca1g2 .1ca .ca1t2 .cen2t1á .1ce .cen2t1ó2 .ce2t1e2l .ce1te .ce2t1ű .cé2l1e2 .1cé .ci2n1á2 .1ci .ci1to1 .c2s2 .csa2k1 .1c1sa .csa2p1á2g .csa1pá .csa2t1é2 .cse2l1Å‘2r .1c1se .cse1lÅ‘ .d2 .dac1c .1da .da2c3s .da2i .dal1an .da1la .da2lás .da1lá .da2l1e2 .da2l1ék .da1lé .d2a2lén .da2l1í2 .da3lol .da1lo .da2l1ó2 .da2u .de2a .1de .2den2g .des2t .de1s1ta .dé2la .1dé .dé1re2 .dé2res .dé2sa2 .di2a1fo .1di .di1a .di2a1ka .di2al .di2c1sá .dic2s .di2es .di1e .di1kr .di2ó1má .di1ó .d2ó2mor .1dó .dó1mo .dú2ra .1dú .e2 .eb1eg .e1be .eb1ir .e1bi .e1b1í .e1bu2 .e1g2é .egres1s .eg1re .e1gy1a2 .eg2y .e1gy1á2 .egy1e2lÅ‘r .e1gye .egye1lÅ‘ .egy1ev .egy1in .e1gyi .e1gy1ö2 .egy1ü2l .e1gyü .el1a2k .e1la .el1an .el1ap .ela2s .el1ass .el1aszn .elas2z .el1a1s1zo .el1aszv .e1l1á2 .el1e2c .e1le .el1eger .ele1ge .ele2gyá2 .eleg2y .el1e2h .el1ejt .el1e2l .ele2ma .ele2má .ele2meg .ele1me .ele2mel .e1l1eme1le .el1e2mels .el1e2melt .el1e2més .ele1mé .el1e2n .el1e2p .el1e2r .el1e2se .el1e2sés .ele1sé .el1esh .el1e2si .el1esn .el1e2sÅ‘ .el1ess .el1es1te .el1estél .eles1té .el1es1tü .el1e2sü .el1esv .el1e2s2z .el1e2t .el1e2vet .ele1ve .el1e2vez .el1e1vi .elé2d .e1lé .el1é1de .el1é2gek .elé1ge .el1éh .el1ékez .elé1ke .el1é2le .elé2n .el1é1ne .el1é2p .el1é2r .el1é2te2t. .elé1te .el1é2v .el1id .e1li .el1ig .el1i2h .el1ik .el1i2mit .eli1mi .el1in .el1ir .el1i2s .eli2t1o .el1itt2a. .elit1ta .el1itták .elit1tá .el1izz .e1l1í .elle1ge2 .el1le .e1lo2 .el1okk .el1o1ko .el1or .e1l1ó2 .e1lö2 .el1ök .el1ö1le .el1ö1lé .el1ölh .el1ö1li .el1öl2j. .el1öl1je .el1öl1jé .el1öl1jü .el1öl1ne .el1öln2é. .elöl1né .el1ölném .el1öl1ni .el1ö1lÅ‘ .el1öl2t. .el1öl1te .el1öl1té .el1öltn .el1öl1tü .el1ölün .elö1lü .el1ölv .el1öv .elÅ‘1é2 .e1lÅ‘ .el1s2 .el1t2 .e1l1u .e1lü2 .el1ü2l. .el1ülh .el1ü1li .el1ülj .el1üln .el1ül1te .el1ülv .el2v1el .el1ve .el2v1é2g. .el1vé .endo1s .en1do .endos2z2 .es1er .e1se .ese2tel .ese1te .es2tar .es1ta .es2t1á .es2t1é2k2e. .es1té .esté1ke .es2t1é2kek .et2h .etilén1g2 .e1ti .eti1lé .evés1s .e1vé .ex1el .e1xe .e1z1á .ez1e2l .e1ze .é2 .édes3s .é1de .é1g1a2 .ég1eg .é1ge .ég1e2re1i .ége1re .ége2s .ég1es2z .ég1é2r. .é1gé .ég1é2ré .ég1érn .égés3s .égé2s2z .ég1észb .ég1é1s1ze .ég1é1s1zé .ég1észn .ég1észr .é1g1ö2 .é1g1u2 .éh1év .é1hé .é1j1a2 .é1j1á2 .éj1el .é1je .é1j1u .é1k1a2 .é1k1á .ékes1s .é1ke .ék1ir .é1ki .é1k1o .é1l1a2 .él2c1i .éli2k .é1li .él1i1ke .él2v1á2 .é1mi2 .ép1es .é1pe .ép2pa .ép2p1el .ép1pe .ép2pé .ép2p1o2 .ér1a2n .é1ra .ér2c1e2l .ér1ce .ér2c1é2j .ér1cé .ér2cék .ér2c3sí .érc2s .ér1e2l .é1re .ér1e2s .éré2s2z .é1ré .ér1é1s1zé .ér1é2t .é1rü2 .ér1ül .ér2vad .ér1va .ér2val .ér2v1é2g. .ér1vé .ész1a2l .és2z .é1s1za .2é1s1z1á .é1s1ze2 .ész1el .ész1em .ész1es .ész1é2k .é1s1zé .észigaz1 .é1s1zi .é2sz1i2ga .é1s1z1o .é1s1z1Å‘2 .ész2t1örv .ész1tö .é1s1zü2 .ész1ü1lÅ‘ .év1á2g .é1vá .év1es2s2z .é1ve .év1é2g .é1vé .év1é2k .f2 .ff .fa2i2t. .1fa .fa1i .fa2leg .fa1le .fa2n1év .fa1né .fa2r1ont .fa1ro .fa1st .fat2 .fa1tr .fe2le1me .1fe .fe1le .fe2l1es2s2z .fe2lev .fé2k1e2l .1fé .fé1ke .fé2m1a2 .fé2m1á2 .fi2e .f8i .ï¬2e .ï¬ .fil2mé1ré .fil1mé .ï¬l2mé1ré .ï¬l1mé .fin2ge .ï¬n2ge .fog2ó2s3zá .1fo .fo1gó .fogó1s2z .fol2t1a2 .fö2lÅ‘ .1fö .fö2lü2l. .fö1lü .fölü2l1e2 .g2 .ga2za2n .1ga .ga1za .ga2z1em .3g2a1ze .2gá2t1al .1gá .gá1ta .gá2te .gá2z1ó2 .gáz2s2 .gá2z1su .gáz1z .gene2a .1ge .ge1ne .ge2od .ge1o .ge2os .2ges2te .gesz2t1í .ges2z .gé2d1 .1gé .gé2na2 .gé2ná2 .g2én3n .gé2pe2lem .3g2épel .gé1pe .gépe1le .gé2p1i2p .gé1pi .gi2a .1gi .gi1g2 .giga1s .gi1ga .gillet2 .gil1le .gi2u .gonor1 .1go .g2o1no .gonorr2 .gó2ce .1gó .gó2la .gó2lá .gó2le2l .gó1le .gó2l1e2s .góli2g .gó1li .gó2l1i1ga .gó2li2s .gÅ‘2z1á2 .1gÅ‘ .gÅ‘2zen .gÅ‘1ze .gÅ‘2z1Å‘ .gÅ‘2z2s .g1re1 .gu2i .1gu .h2 .ha2b1e2 .1ha .ha2b1ol .3ha1bo .ha2bor .ha2b1Å‘ .ha2b1u .ha2dal .ha1da .ha2d1e2 .ha2d2z .ha2ik .ha1i .ha2j1e2 .ha2jom .ha1jo .ha2lác .3ha1lá .halá2l1ó2 .ha2lárv .ha2leg .ha1le .ha2l1e2l .h2a2lep .ha2let .h2a2l1e2v .ha2li2s .ha1li .han2ga2d .3hang .han1ga .han2g1e2 .h2a2sor .ha1so .has3s2z .h2a2tag .ha1ta .ha2t1at .ha2t1e2 .ha2told .ha1to .ha2u .há2l1i .1há .há2m1a2 .há2ny1in .hán2y .há1nyi .háro2m1e .há1ro .há2t1alj .há1ta .há2tus .há1tu .há2zol .há1zo .há2zó .he2i .1he .hé2t1ez .1hé .hé1te .hé2t1o .hi2t1a .1hi .hi2tis .hi1ti .hodás1 .1ho .ho1dá .hol1l .hol2t1e2 .hÅ‘2sá .1hÅ‘ .i2 .ike2r1i .i1ke .ike1rü2 .ike2r1ü1lé .ikon1s .i1ko .ima1s .i1ma .imit2 .i1mi .im1p2la .in1ak1tí .i2nakt .i1na .in1es .i1ne .in2gin .in1gi .inte2r1a .in1te .io2n1a2 .i1o .io2n1á .ion3n .ipa2re .i1pa .ir2s1 .it2h .i1t1i .izo2m1ért .1i2zo1mé .i1zo .i2zo1s .izos2z2 .í2 .íjá2t .í1já .íj1á1to .í1n1e .írá2s1ág .í1rá .írá1sá .írá2s3z .í1v1a2 .ív1á2r .í1vá .ív1ell .í1ve .í1z1a .íz1in .í1zi .j2 .ja1ké2 .1ja .ja2kér .ja2ko2v .ja1ko .jármű1ká2 .1já .jár1mű .já2s1zá .jás2z .já2s1zó .je2a .1je .je2gy1a2 .jeg2y .je2gy1á2 .je2l1a .je2leg .je1le .je2lev .jic1 .1ji .job2b1ol .1jo .job1bo .jó2dal .1jó .jó1da .jó2s1e2 .jó2t1á .k2 .k2a1c1si2 .1ka .kac2s .kale2i .ka1le .ka2nar .ka1na .ka2n1e .ka1polc2s .ka1po .ka2ra1la .ka1ra .ka2ra2s .ka2r1á2s .ka1rá .kar2c3se .karc2s .ka1re2 .ka2rem .ka2rék .ka1ré .ka2ring .ka1ri .ka2rí .ka2ró2ra .ka1ró .ka2r1ó2rák .karó1rá .ka2r1ü .ka1th .ka1tz .2ká2r1a2d .1ká .ká1ra .kás2 .kása3l .ká1sa .ke2c1só .1ke .kec2s .ke2l1á2 .ke2l1e2g .ke1le .ke2l1e2ve .ke1l1ö .ker2ta .ké2nét .1ké .ké1né .ké2p1és .ké1pé .ké1ta2 .ké2tab .ké2tad .ké2t1ag .ké2ta1ka .ké2tal .ké2tan .ké2tap .ké2tas .ké2tat2 .ké2ta1u .ké2t1á2 .ké2t1e1le .ké1te .ké2t1o2 .ké1ze2 .ké2z1el .ké2ze2m .ké2z2s2 .kéz1z .ki1á2 .1ki .ki1g2 .ki1k1rá .ki1ó2 .ki2ság .ki1sá .ki1ű2 .kla2uz .k1la .kla1u .kló2re .k1ló .ko2rác .1ko .ko1rá .ko2rí .ko2sis .ko1si .kó2d1a2 .1kó .kó2d2z .kó2r1e .kó2r1é2s .kó1ré .kö2b1öl .1kö .kö1bö .kö2d1Å‘ .kö2zis .kö1zi .kö2z1Å‘ .köz1z .kr2 .ku1n1a .1ku .1k2var1k .k1va .kvar3k. .l2 .la2k1a2d .1la .la1ka .l2a2kal .l2a2k1an .la2kép .la1ké .la2kor .la1ko .la2kÅ‘ .lan2t1e .lan2t1ó2 .l2a2pal .la1pa .la2pan .la2p1ác .la1pá .la2p1á2r .la2p1e2 .la2p1or .la1po .la2p1os2z .la2pó .lá2b1e2 .1lá .lá2bil .lá1bi .lá2bor .lá1bo .lán2c3s .lá2nya2n .lán2y .lá1nya .lá2ny1e2 .lá2p1e .lá2p1il .lá1pi2 .lá2z1ó2 .lá2z3s .le3dé .1le .le2g1 .le3g2a1li .le1ga .le3g2elés .le1ge .lege1lé .le3g2esle2g1 .1leges1le .le3g2esle3g2esle2g1 .legesle1ge .legesleges1le .lege2t .le4gé1ne .le3gén .le1gé .leg3g2 .le3g2y .le2iden .le1i .lei1de .leí2ro .le1í .leí2ród .leí1ró .leí2ru .le1kl .le1k2r .lemez1z .le1me .le1p2ré .le1s2m .le1t2r .le1ü2 .lé2c3s2 .1lé .lé2g1a2 .lé2g1á .lé1ge2 .lé2g1el .lé2gér .lé1gé .lé2go .lé2gy1á2 .lég2y .lé2p1a2 .lé1pü2 .1lé2p1ü1lé .2lépül .lé2t1a2 .lé2t1á2 .lé2t1e2l .lé1te .lé2t1érd .lé1té .lé2tör .lé1tö2 .li1o1 .1li .li2os .lisz2ta .lis2z .lisz2t1á2 .lisz2ter .lisz1te .li1to1 .2lo2b1e .1lo .lo1bi2 .lo2bin .loc2 .lo2m1a2 .lo2m1á .lom2b1e2 .lo2me .lo2m1é2t .lo1mé .lo2min .lo1mi .lon2c1si .lonc2s .lófo2g1a2d .1ló .l2ófog .ló1fo .lófo1ga .lÅ‘2cs1ö2v .1lÅ‘ .lÅ‘c2s .lÅ‘1c1sö .lÅ‘rés3s .lÅ‘1ré .lul1 .1lu .ly2m2e. .l2y .ly1me .ly1on .1lyo .m2 .ma2ec .1ma .ma1e .m2a2ga2l .ma1ga .ma2ga2r .ma2gál .ma1gá .ma2g1e2 .mag1g .ma1gó2 .ma2gór .ma2i2l. .ma1i .ma2i2n. .m2a2r1ác .ma1rá .ma2r1ing .ma1ri .masz2k1or .mas2z .masz1ko .masz2k1ö .ma1th .ma2uz .ma1u .má2r1is .1má .má1ri .me2g1e2 .1me .me2g1é2 .meg1if .me2gi .meg1iff .me2g1o2 .me2g1Å‘2 .me2i .mel2lá .me2ny1u2 .men2y .me2u .me2zá .médi2af .1mé .mé1di .médi1a .médi2aff .mé2ná .mé2no .mé2s1za2 .més2z .mé2szet .mé1s1ze .mé2s1zi .mé2s1zo .mé2zis .mé1zi .mil2n .1mi .mi3rá .mo2lyan .1mo .mol2y .mo1lya .mo2re .mű1i2 .1mű .mű1kr .mű1s .n2 .na2gya .1na .nag2y .na2gyá .na2gye .na2gyú2 .nan2t .na2pan .na1pa .n2a2pap .na2p1ar .na2pál .na1pá .na2p1e .na2pés .na1pé .na2p1o2r .na1po .na2pö .na2t2o. .na1to .na2u .ne2i .1ne .ne2ma .ne2me2g .ne1me .ne2m1el .ne2min .ne1mi .ne2ol .ne1o .ne2s1zá .nes2z .net2t1a2 .ne2um .ne1u .né2gyá .1né .nég2y .né2pa2 .né2v1ál .né1vá .né2ve2l .né1ve .ni2c2h .1ni .ni2e .no2r1 .1no .nya2k1á2ro .n2y .1nya .nya1ká .nya2k1e2 .nya2k1ö2 .o2 .o1da1 .ok1a2d .o1ka .ok1a2l .ok1ka2 .ola2j1e2 .o1la .ola2s1z1ó2 .olas2z .olda2l1ú2t .1olda1lú .ol1da .op2to .or2r1aj .or1ra .or2r1alt .or2ran .or2r1e2 .or1ré2 .or2r1és .or2v1a2 .2or2vá .or2v1é .or1vi2 .or2vis .ot1tr .ó2 .ó3f2r .ólo2m1a2 .ó1lo .óme3g2 .ó1me .ó1n1a2 .ó1n1á2 .ó1n1e2 .ón1év .ó1né .óvá2s1árt2 .ó1vá .óvá1sá .ö2 .ö1ko1 .ön1d2 .ö1n1e2 .ö1ni2 .ö1n1í .ön1k2 .ön3n .ö1n1o .ö1n1Å‘ .ön1s2 .ö1n1ü .ös1s1z1a .ös2s2z .ös1s1z1á .ö1te2 .öt1eg .öt1el .öt1t2 .öv1e2g .ö1ve .öv1e2l .ö1v1Å‘2 .Å‘2 .Å‘a3l .Å‘1a .Å‘i3r .Å‘1i .Å‘r1ab .Å‘1ra .Å‘r1a2n .Å‘r1e2g .Å‘1re .Å‘r1é2g .Å‘1ré .Å‘r1é2s .Å‘r1ist .Å‘1ri .Å‘1r1o .Å‘1r1u2 .Å‘r1üg .Å‘1rü .Å‘1s1a2 .Å‘1s1á2 .Å‘s1eg .Å‘1se .Å‘s1e2l .Å‘s1e2r .Å‘s1e2s .Å‘s1é2g .Å‘1sé .Å‘s1ért .Å‘1s1í2 .Å‘1s1o .Å‘1s1ó2 .Å‘s1p .Å‘s1t2r .Å‘1s1u2 .Å‘1s1ú .Å‘1s1z1a2 .Å‘s2z .Å‘1s1z1á .Å‘sz1e2g .Å‘1s1ze .Å‘sz1el .Å‘sz1em .Å‘s3ze1ne .Å‘s3ze1né .Å‘1z1a2 .Å‘z1eg .Å‘1ze .Å‘z1e2l .Å‘ze2t .Å‘z1e1te .Å‘z1ék .Å‘1zé .Å‘z1é1re .Å‘1z1Å‘ .Å‘z3s .Å‘1z1u .p2 .pa2da .1pa .pa2d1á2 .p2a2din .pa1di .pa2d1ó2 .pa2i .pa2pa2r .pa1pa .pa2pál .pa1pá .pa2pe .para1f2r .pa1ra .par1ke2 .par2ker .par2ta .par2tel .par1te .par2ter .pá2c3s .1pá .pán2ta .pár2t1ö2 .p1c1e .pe2i .1pe .pei2r .pen3n2y .pe2r1a2 .pe2r1á .pe2r1enc .pe1re .pe2rok .pe1ro .pe2rü2l .pe1rü .pe2s .pia2c3s .1pi .pi1a .pi1na1 .pin2t1ó .ple2i .p1le .po2gr .1po .pon1ta2 .pon2te2 .po2rad .po1ra .po2ral .po2ra2n .po2rác .po1rá .po2rál .po2re2 .po2r1us .po1ru .pó2ki2s .1pó .pó1ki .pó2k1ö .pó2rás .pó1rá .pó2t1e .pó2t1é .pre1k2 .p1re .prés3s .p1ré .proto1p2 .1p2ro1to .p1ro .q2 .r2 .ra2b1as .1ra .ra1ba .ra2b1á .ra2be .r2abic1 .ra1bi .ra2b1il .r2a2b1i2z .ra2bí .ra2bor .ra1bo .ra2bö .ra2b1Å‘2 .ra2bú .r2a2gal .ra1ga .ra2i .ra2j1ö2 .raj1tó2 .raj2t1ór .rá2cs1á2z .1rá .rác2s .rá1c1sá .rá1dr .rá1fr .rá1gr .rá1i2 .rán2c1e .rán2y2 .rá1sp2r .rá1s2t2 .rát2 .rá1tk .rá1tr .1re1k2re .1re .ren2d1a2 .ren2d1Å‘2 .re1p2ri .rep2ro .re1prod .rete2k1 .re1te .ré2m1emb .1ré .ré1me .ré2mu .ré1p2a .ré2sa2 .rés3szer .rés2s2z2 .rés1s1ze .ré2s1za .rés2z .r2é2s1zá2 .ré2sz1e2le .ré1s1ze .ré2szell .ré2szer .ré2s1zí .ré2s1zo .ré2s1zÅ‘ .ré2t1a2 .ré2t1á2 .ré2v1á2 .ré2zá2 .ré2ze2l .ré1ze .ré2ze2t .ré2zis .ré1zi .ré2z1o .réz1z .ri2z1so .1ri .riz2s .rizs3z .2rí2má .1rí .ro1c2kos .1ro .roc1ko .roma2i2n. .ro1ma .roma1i .ro1mé2 .ro2m1ét .ro2min .ro1mi .ro2mis .ros2t1e2 .rug1g .1ru .ru2m1a .ru2mil .ru1mi .rut2 .rú2de .1rú .s2 .sa2h1a .1sa .sa2i .saj2te .s2a2s1or .sa1so .sa2u .s2a2vad .sa1va .sa2v1a1ra .sa2v1ál .sa1vá .sa2vá1ri .s2avár .sa2v1e2 .sa2v1é2 .sá2r1ó .1sá .sá2rú2 .sás1s .sá2s3z .sá2v1a .sá2vá .sá2vó .sc2 .se2bal .1se .se1ba .se2b1á2 .se2bel .se1be .se2bes2z .se2b1o .sé2f8i .1sé .sé2ï¬ .s3gr .si2em .1si .si1e .si2ók .si1ó .sín3n .1sí .sí2p1Å‘2 .sí2r1a2 .sí2rát .sí1rá .sk2 .so2kél .1so .so1ké .so2kil .so1ki .so2kis .so2kol .so1ko .so2m1ag .so1ma .so2ma2t .so1n2y2 .so2ral .so1ra .so2rál .so1rá .sö2r1e2g .1sö .sö1re .sp2 .spor2t1á2 .s1po .st2 .s1tar2t1a2 .s1ta .ste2i .s1te .s2z2 .szaba2d1e .1s1za .sza1ba .sza2k1at .sza1ka .sza2k1ás .sza1ká .sza2k1e .sza2kö .sza2k1ü2 .szá2l1ó2 .1s1zá .száz1z .sze2g1é2r. .1s1ze .sze1gé .sze2gí .sze2i .sze2m1á .sze2m1é2r. .sze1mé .sze2m1é2ri .sze2r1ág .sze1rá .szer2v1a2d .3szerv .szer1va .szer2v1e2v .szer1ve .sze2s1zá .s2zes2z .sze2szeg .s1ze1s1ze .sze2s1z1ó2 .szé2fa .1s1zé .szén1n .szé2t1 .szé1te2 .szín3n .1s1zí .szk2 .szo2l1ó .1s1zo .s2zókés2z1 .1s1zó .sz2ókés .szó1ké .szó2sza2k .sz2ó1s1za .s2zós2z .sz2ó1s1zö2 .szó2sz1öv .szt2 .t2 .t2a2gal .1ta .ta1ga .ta2g1a2r .ta2g1á .ta2g1e .ta2gép .ta1gé .tag1g .ta2g1i2n .ta1gi .ta2gö .ta2i .ta2nag .ta1na .ta2n1as .ta2nál .ta1ná .tan1d2 .ta2n1e2 .ta2n1év .ta1né .tané2ve .ta2nik .ta1ni .ta2nis .ta2n1ó2 .tant2 .ta2n1u2s .ta1nu .ta3rá .t2a2t1ál .ta1tá .ta2t1ára1i .t2atár .tatá1ra .ta2t1e2 .ta2t1í .t2a2tor .ta1to .t2a2tur .ta1tu .tá2l1ó2 .1tá .tán2c1se .tánc2s2 .tá2p1ol .tá1po .tár2sor .tár1so .tár2s1ö2 .tár2t1e2s .tár1te .tár2t1ölt .tár1tö .tá2v1a .tá1vi2 .tá2v1ir .tá2ví2 .tbc1 .te2a1ka .1te .te1a .te2ar .te2j1á2 .te2j1e2g .te1je .tele1s .te1le .teles2z2 .ten1n .tera1pe2 .te1ra .ter2v1a2 .ter2v1á2 .2tes2ték .tes1té .tes2t1öl .tes1tö2 .tetra1é2 .tet1ra .teza2u1ru .te1za .teza1u .té3k .1té .té2nyem .tén2y .té1nye .té2nyí .té2ra .té2rá .té2ret .té1re .té2r1int .té1ri .té2ro .ti2m2e. .1ti .ti1me .tí2z1ó2 .1tí .tí2z2s .tí1zü2 .t3mo .to2ká1ro .1to .to1ká .tol2le .to1n2y .topa3u2 .to1pa .to2r1á2l .to1rá .to2r1odv .to1ro .tor2z3se .torz2s .to1s2h .tó1st .1tó .tó2t1é2r. .tó1té .tön2k1a .1tö .tÅ‘1a2 .1tÅ‘ .tÅ‘1e2 .tÅ‘2gya .tÅ‘g2y .tÅ‘2r1éss .tÅ‘1ré .tÅ‘2r1é2s2z .tra2u .t1ra .t3sh .turnus1s2 .1tu .tur1nu .tus3s2 .tu2s2z .tu1s3zá .tú2r1att .1tú .tú1ra .tű2z1ért .1tű .tű1zé .tű2z1Å‘2r .tű1zÅ‘ .tű2z1se .tűz2s .tyú2ka .t2y .1tyú .u2 .ugrás1s .ug1rá .un1in .u1ni .uni2o .utas1s .u1ta .utás4 .u1tá .u1to2 .utó2d1ö .u1tó .ú2 .új1as .ú1ja .ú1j1e .ú1r1a2 .ú1r1á2 .ú1r1e .úszós2 .ús2z .ú1s1zó .úszó1sp .ú1t1a2 .ú1t1á2 .ú1t1e2 .út1ol .ú1to .ú1t1Å‘ .ú1t1ü2 .ü2 .ü2gy1é2r. .üg2y .ü1gyé .ü1k1a2 .üstö2l .üs1tö .üs2t1ö1lÅ‘ .ütÅ‘kés2z1 .ü1tÅ‘ .ütÅ‘1ké .üve2g1e2l .ü1ve .üve1ge .ű2 .ű1r1a2 .ű1r1á2 .ű1r1e2 .űr1é2s .ű1ré .űr1é1te .ű1ri2 .űr1i1ta .űr1öss .ű1rö .űr1s .űrt2 .v2 .va2d1al .1va .va1da .va2dár .va1dá .va2dét .va1dé .va2d1o2r .va1do .va2dóv .va1dó .va2d1ö .va2d3z .va2gy1i .vag2y .va2j1e .va2k1ak .va1ka .v2a2kal .v2a2k1an .v2a2kap .va2k1ár .va1ká .va2k1e2 .va2k1ö .v2a2rak .va1ra .va2r1á2s .va1rá .va2r1e2 .va2r1ing .va1ri .va2sab .va1sa .va2s1a2tom .vasa1to .va2s1á2g .va1sá .va2sár1k2 .va2sás .va2s1e .va2sék .va1sé .va2s1i2r .va1si .va2sol .va1so .v2a2s1or .va2só .vas3s .v2as1tr .vast2 .va2s1ü .va2s3z .vác2s1 .1vá .vá2dá .vá2d1e2 .vá2ma2 .vá2r1a2dá .vá1ra .vá2r1i2s .vá1ri .vá2r1ol .vá1ro .v1b1a2 .verés1s .1ve .ve1ré .ver2s1é2g .ver1sé .ver2s1o .ver2s2z .vé2g1é2k .1vé .vé1gé .vé2g1o .vé2nye2l .vén2y .vé1nye .vé2r1a2 .vé2rá .vé2r1e2b .vé1re .vé2r1eg .vé2rik .vé1ri .vé2r1o .vé2ró .vér2t1ék .vér1té .vé2ru2 .vé2s1za .vés2z .v2é2s1zá .vé2szer .vé1s1ze .vé2s1zí .vé2s1zo .vé2s1z1ó2 .vi1e2 .1vi .vi1g2n .ví2zed .1ví .ví1ze .ví2ze2m .vona2t1út .1vo .vo1na .vona1tú .von2z1e2 .w2 .x2 .y2 .ya2l .ya2r .z2 .z2a2bal .1za .za1ba .za2b1e .za2b1i2n .za1bi .za1i2 .za2j1e2 .za2j1ö .za2jut .za1ju .zá2r1a2dá .1zá .zá1ra .zá2r1e .zá2r1ó2ra .3zárór .zá1ró .zárta2n .zár1ta .zár2t1an2y .zár2t1é .zár2t1ö2v .zár1tö .ze2i .1ze .zé1t1 .1zé .z2s2 .zű2r1Å‘ .1zű 2a. a1a a2a2b. aa2be aa2cé aa2da aadás1s aa1dá aa2dás2s2z2 aa2dó aa2du aa2fo aa2ga aa2gi aa2gó aa2g2y aa2já aa2ka aa2ká aa2ko aa2ku a2a2l. aa2la aala2g1 aa2lá aal1eg aa1le aa2lé aalma1na2 aal1ma aalmanac3 aa2lo aal1os aa2lu aa2ma a2a2n. aa2na aa2ne aa2ni aa2no a2ans aa2n2y aa2pa aa2pá aa2po aa2pu a2a2r. aa2ra aa2rá a2ard aa2ré aa2ri a2arl aa2ro a2a2s. a2ast aa2s2z aa2to aa2t2y aa2ur aa1u aa2ut aa2va a2a1vo aa2zo a1á aá2bé aá2c2s aá2fá aá2ga aá2gá aá2gé aá2gi aá2go aá2gu aá2g2y aá2hí aá2ju a2á2l. aá2la aá2lo aá2po aá2ra aá2rá aá2r1e2 aá2ré aá2ri aá2ro aá2ru aá2rú aá2sa aá2sá aá2so aá2só aá2ta aá2t1á2 aá2t1e2 aá2té aá2t1i2 aá2tí aá2to aá2t1ö aá2tu aá2tú aá2tü aá2zá aá2zó 2abab a1ba ab1a1dó aba2d2z a2b1a1ga 1a2bajg ab1ak1k 2abal a2b1alj 2aban a2ba2nal aba1na aba1pr 2abar aba2rat aba1ra a2b1a2ráb aba1rá a2b1a1u 2abáb a1bá abá2b1u2r abá1bu 2abád 2abán a2b1áp abá2rak abá1ra ab1á2ron abá1ro a2b1á2rú 2abáz ab1b2a 1abbah 2abe1a a1be abe1á2 a2b1e2b 2abec ab1e1dé 2abe1é 2abef 2abeff 2abeh 2abe1i 2abej a2b1ejt ab1e2lá 2abe1le abe2lem 2abels ab1els2z a2b1elt ab1elv 2abem ab1emb a2berd 2abe1tá 2abe1te 2abe1té 2abe1to 2abe1tö 2abev a2b1ex 2abék a1bé 2abél 2abén a2b1é2ne a2b1ép 2abér a2b1érz 2abé1tá a2b1é1ve ab1f8l ab1fl ab1fr 2abic a1bi abid2 ab1i2do 2abi1e ab1i2ke ab1ik1s abil1l a2b1i2na1i abi1na abi2náb abi1ná a2bin1dí a2b1ing 2abir a2b1irká1i abir1ká a2b1ism 2abit a2b1i2ta 2abiz a2b1íj a1bí ab1írn ab1kr 1abla1ká ab1la 1ablakh 1ablakk 1abl2akos abla1ko 1ablakr 2ab1lo a1b2lú 2abog a1bo 2aboh 2abok 2abolt ab1ol1tó 2abom abo2rak abo1ra abo2r1as abo2rin abo1ri 2abot a2b1öb a1bö abö2l ab1ö1lÅ‘ ab1ölt a2b1ös a2b1öt a2b1ö2z a2b1Å‘rl a1bÅ‘ ab1pr ab2rek ab1re 2ab1ri a1b2ri1ke ab2rin a1b2rit 2ab1ró ab2rók ab1st a2b1urd a1bu a2b1ú2r. a1bú a2b1úrt abú2s1á a2b1ús2z ab1ü2l a1bü ab1üs ab1üv a2b1üz a2c1a2d a1ca aca2la aca2lá aca2l1e2 ac2a2lé2t aca1lé a2c1a2n aca2tá a2c1ág a1cá a2c1ál ac2ca2r ac1ca acci2ó ac1ci ac2cö ac3c1se ac2c2s ac3c1sí ac3c1sü acc3s2z a2c2e. a1ce ac1e1bé a2c1eg ace2l a2c1e1le a2c1e1lé a2c1elh ac1el1le a2c1elm a2c1e1lo a2c1elv ac1emb 2acen ace2ta a2c1e2v a2c1ex a2cé1lá a1cé acé1l1e2 a2cé1lé a2c1ép a2c1é2re a2c1ér1te ac1fr a2chan ac2h a1c1ha a2c1há ac3héj a1c1hé a1c3hí a2c3hoz a1c1ho a1c3hó a2c3hö a2c3hú a1chy ac1i1de a1ci a2c1i2gá a2c1i2gé a2c1i1ke 2aci2n. a2c1in1d2 a2c1inf a2c1inff a2c1ist a2c1ír a1cí ac1ív ack1a1ro ac1ka ac2kál ac1ká ac2k1e2v ac1ke acké2r ac1ké ac2k1é1re ack1é1te ac2kil ac1ki ac2k1os2z ac1ko ac2kös ac1kö ac2kű ac2lu a2c1op a1co ac1ös a1cö ac1Å‘r a1cÅ‘ ac1pl ac1pr ac2qu ac1ry 2acsal ac2s a1c1sa acs1al2j. acsa2p1á2g acsa1pá a2cs1atk acs1áll a1c1sá a2csá1ru acse2c a1c1se acs1eg2y a2c3seml 1a2cséb a1c1sé a2cs1ék 2a1c1si a2cs1in2a. acsi1na 2a1c1sí 2acson a1c1so acs1orm a2cs1öc a1c1sö acs1s ac3st2r a2csúl a1c1sú a2cs1úr acsü2l a1c1sü a2csüt ac3s1zá acs2z ac3s1ze ac3s1zö ac1tr a2c1ud a1cu 2acu1la ac1u1ra a2c1ut ac1új a1cú ac1üg a1cü ac1ür ac1üz a1c3za ac2z a1c3zá a1c3ze ac3z2s a1c3zu a2d1a2da a1da a2d1a2dá 1a2da2g. ada2gá 1a2dagb a2dag3g 1a2dagh 1ada1gi 1a2dagj 1a2dagn 1a2da1go 1a2dagr 1a2dagt 1ada1gu 1a2da1gú a2d1ak1tá ada2lap ada1la ad2a2l1es ada1le 1ada1lé ad2a2lén ada2l1os2z ada1lo ada2l1ó2 ada2l1ú2t ada1lú a2d1a1na a2dandó1i adan1dó a2d1ann 1a2dapt 2adar ada2ral ada1ra ada2re ada2r1és ada1ré ada2r1in ada1ri ada2rut ada1ru ad2a2tab ada1ta ada2tal ad2a2t1a2n ada2t1á2r. ad2atár ada1tá ada2t1á2rak adatá1ra ada2t1á2ram ada2t1á2rat ada2t1á2rá ada2t1árb ada2t1árr ada2t1á2ru 1a2datá1u ada2t1e2g ada1te ada2tel ada2t1es ad2até2r ada1té ada2t1érd ada2t1é1rÅ‘ 1a2d2atin ada1ti ada2tint ada2tis ada2tív ada1tí a2datm ada2t1old ada1to ada2t1ö2l ada1tö ada2t1Å‘ a2datv ad1a1zo a2d1ág a1dá adá1ra2 adá2rak adá2ris adá1ri ad2del ad1de a2d1e2d a1de ade2g ad1e1ge ad1e1gé ad1eg2y ade2i a2d1ej adel1ej ade1le ad1elh ad1elm ad1eln a2d1e2lÅ‘ ad1elr ad1elt a2d1emb ad1e2mé a2d1eml a2d1e1mu a2d1e1ne a2d1eng ad1e2pe ad1epr a2derd ad1e2rÅ‘ ade2ti a2de1u a2d1e2v a2d1ex adé2kat a1dé adé1ka adé2k1e2 ad2é2kés adé1ké adé2kis adé1ki adé2kü adé2kű ad1é1le 2adémont2 adé1mo a2d1ép a2d1érz adé2s adé2te a2d1é2ve ad1f8l ad1fl adfo2k1út ad1fo adfo1kú ad1gr 1ad1hé 2adi1a a1di adia2n ad1i2bo 2adid adi2er adi1e ad2i2kut adi1ku 2adin ad1i2n2a. adi1na ad1i2na1i a2d1ind adi2ne a2d1ing 2adip 2adis 2adiv a2d1í2z a1dí ad2ji adka2na ad1ka ad1kr 2adob a1do 2adoc a2d1ok1ke 2adol ad1o1la 1a2do1má 2adomb 2ado1mi 1a2dop a2d1orc a2d1org 2adorh 2adorian ado1ri adori1a 2adorig ad1orv a2d1orz a2d1os2z 1a2dóa2d a1dó adó1a a2dó1gu 1a2dó1ku a2dó1mé a2dó1rá 1a2dósat adó1sa 2a3dós2i. adó1si ad1ó2vás adó1vá adó1vé2 1a2dó1zó a2d1ö2k a1dö a2d1ö2l ad1örd a2d1ös adÅ‘1r1a a1dÅ‘ adÅ‘2rel adÅ‘1re ad1Å‘2s ad1pl ad1pr a1d2rac ad1ra ad2ram ad2raz 2ad1rá ad2rám 2ad1ro ad2rog a1d2rót ad1ró ad2ruk ad1ru ad1sh ad1sp ad2tol ad1to 2adug a1du 2adum 2adup ad1u2rá ad1ús2z a1dú adú2t a2d1ú1to a2d1üg a1dü ad1ü2lé a2d1üt ad1üz a2d1űr a1dű ad1űz ad1yéh ad1yér ad1yét ad3zab ad2z a1d1za ad3zav ad3zár a1d1zá ad3zel a1d1ze ad3zón a1d1zó a2d3zö a1d3z1sí adz2s a1e ae2bé ae2c2s a2e1da ae2dé a2edr ae2d2z ae2ge ae2gé ae2g2y ae2he ae2ke ae2ké ae2l1á2 ae2le ael1ej ae3len ael1érh ae1lé ae2l1í2 ae2lo ae2l1ö2 ae2lÅ‘ ae2lu ae2me ae2mé ae2mu ae2pe ae2pé ae2pi ae2po ae2red ae1re ae2ré aero1s ae1ro ae2ró ae2rÅ‘ ae2se aes1er ae2sé ae2si ae2sÅ‘ aest2h ae2sü ae2s2z ae2tá ae2ti ae2tű ae2va ae2ve ae2vé ae2vi ae2vÅ‘ ae2xe ae2zü a1é aé2derv aé1de aé2ge aé2gé aé2gÅ‘ aé2he aé2je aé2ke aé2kí aé2le aé2lé aé2li aé2lÅ‘ aé2lü aé2lű aé2ne aé2pí aé2pü aérde2m1 aér1de aé2ri aé2te aé2va aé2ve aé2vé aé2vi aé2vü 2af2a. a1fa 2afa2j. 2afa1ja 2afa1já 2afajb 2afa2j1e2 2afajj 2afajn 2afa1jo 2afaj2t. afajt2 2afa1ju 2afajz 2afak 2afal 2afam 2afa1o 2afar 2afas afe2l1e2m a1fe afe1le 2afék a1fé 2afé1li 2afé1lÅ‘ 2afélt 2afén 2afér 2afés 1af1fé af8f 1affé aff afi2a1p af8i afi1a aï¬2a1p aï¬ aï¬1a afi2as2z aï¬2as2z afi2ke aï¬2ke afi2t1a2 aï¬2t1a2 afi2t1e2 aï¬2t1e2 af2le af8l afle afl a1f2lo a1flo a1f2ló a1fló a1f2lö a1flö a1f2lu a1flu 2afoc a1fo 2afog 2afok 2afol 2afon 2aford 2aforg 2aformác afor1má 2aformál 2aformá1tu 2aformáz 2afor1mu 2aforr 2afos 2afot af2rak af1ra af2raz 2a1f2re af2riz af1ri af2rí 2af1ro af2ron 2a1f2rö af3tá afus3s a1fu a2g1abl a1ga a2g1abr ag1a2cé a1g1a1ga a2g1a2ka a2g1akk a2g1akt 2agal a2g1a2lak aga1la a2g1a2lap a2g1a2lá a2g1alj a2g1alm aga2lom aga1lo a2g1alt ag1ang ag1a2no ag1ant a2gan2y a2gap ag1a1pa ag1a1pá a2g1arc a2g1a1ré a2g1a2ro a2g1art aga1th aga2tom aga1to ag1a2tó a2g1a2ur aga1u ag1aut a2g1a1va 2agaz a2g1a2zon aga1zo agá2c a1gá a2g1ác2s. agác2s a2g1á1c1si ag1á2ga 1a2gák a3gá1la a2g1álm agá2lyan a3g2ál2y agá1lya a2g1áp a2gá2r. a2g1á2rad agá1ra a2g1á2ra1i a2g1á2rak a2g1á2ras a2g1á2ra2t a2gá2rá a2gárb a2g1árc a2gá2re2 a2gá1ré agá2rév a2gárf a2gárff a2gárh a2gá2ri a2gárj a2gárk a2gárm a2gárn ag1ár1ná a2gá1ro a2gárr a2gár1s2 a2gárt a2g1á2ru a2g1á2rú ag1ásv a2g1á2t1á2 a2g1á2t1e2 a2g1át1fe a2g1áth a2g1átk a2g1átm agá2tol agá1to a2g1áts a2g1á2tü2 a2g1átv ag1bl ag2del ag1de agdí2j1a2da ag1dí agdí1ja a2g2e. a1ge ag1e2c2s a2g1e2d a2g1e2g age2l a2g1e1la ag1elb ag1eld ag1e1le ag1e1lé ag1elf ag1elff ag1elh ag1e1li ag1elm ag1eln a2g1e1lo a2g1e1lÅ‘ ag1elr ag1els ag1elt ag1e1lű ag1elv ag1elz a2g1e2m ag1eng a2g1en2y a2g1e2p a2g1erd age2red age1re a2g1erk a2g1e2rÅ‘ age2s a2g1e2v a2g1ex a2g1ez a2g1é2j a1gé a2g1é2k. a2g1ékn a2g1é2l agé2né agé2p1i2p agé1pi a2g1é2pül agé1pü a2g1é2r. a2g1é2re a2g1é2ré a2g1érh a2g1é2ri a2g1érk a2g1érl a2g1érm a2g1ér1te a2g1ér1té a2g1érth a2g1ér1tÅ‘ ag1és2z a2g1é1te a2g1é1ve ag1f8l ag1fl ag1fr 1ag2g. ag2g1a2t2y ag1ga ag2g1em ag1ge ag2git ag1gi 1aggl 1aggod ag1go 1aggok ag5gyar ag2g2y ag1gya ag5gye ag5gyi ag5gyo ag5gyü agi3a a1gi ag1i1de a2g1i2ga a2g1i1ge a2g1i2gé ag1i1ke a2g1ill a2g1inf a2g1inff a2g1ing a2g1int a2g1i2o1ni agi1o agi2ó a2g1ip a2g1i1ro a2g1ist agi2s2z a2gi1ta ag1i1zé ag1izm a2g1íj a1gí ag1ín a2g1ír ag1ív a2g1íz agká2rok ag1ká agká1ro ag1kl ag1kr ag2n2e. ag1ne a1g2non ag1no a2g1ob a1go ag1ol1tó ago2ly1a2 agol2y 2agom 2ago1na agon3n ago2n1os2z ag2o1no a2g1op a2g1org ag1orj a2g1orn a2g1orr a2g1ors a2g1orv a2g1otth agó2rá1i a1gó agó1rá a2g1ö2l a1gö ag1önk a2g1ö1rö a2g1örv a2g1ös a2g1öt a2g1ö2v a2g1ö2z a2g1Å‘r a1gÅ‘ a2g1Å‘2s ag1pl ag1pr 2a1g2rammj ag1ra a1g2rav 2ag1rá a1g2ráf a1gráff a1g2róf ag1ró a1g2róff ag1sk ag1sp ag1sr ag1st ags2z2 ag1szt2 ag1tr a2g1und a1gu a2guram agu1ra agu2rat ag1u2rá ag1urn ag1u2tá a2g1új a1gú a2g1ú2t1a2 a2g1ú1ti a2g1útt a2g1ü2gyi a1gü agüg2y a2g1ü2l a2g1ür a2g1üs a2g1üt a2g1üv a2g1üz ag1űr a1gű ag1űz a2gy1a2c ag2y a1gya a2gyad agy1a2dó a2gy1a2gya agyag2y a2gyaj 1a2gya2k. a2gyakb agya2la agy1alap agy1alg a2gyalj agy1al1ko agy1alm 1a2gyam agy1a1na a2gy1an2y a2gy1a1pa agy1ap1ja a2gy1ap1já a2gy1a2pó a2gy1apr agya2s2z a2gy1a1s1zó a2gyál a1gyá agy1árv a2gy1e2c a1gye agy1e2g a2gy1el agy1em agy1est agy1es2z a2gyev a2gy1ez agy1é2k. a1gyé agy1é1ke agy1ékk a2gy1é2r. a2gy1é2re a2gy1érn a2gy1érr agy1érs a2gyi1ma a1gyi agy2nyá agyn2y agyo2r a1gyo a2gy1o1ro a2gyorr a2gy1ö2l a1gyö a2gy1Å‘2r a1gyÅ‘ agyu2r a1gyu a2gy1u1rá 1a2gy2ú. a1gyú 1a2gyú1a a2gyún agy1ú2r. agy1ú2s2z a2gyút 2a1gyű aha2l1e a1ha aha2sábr aha1sá ahelyü2kü a1he ahel2y ahe1lyü ahé2j1út a1hé ahé1jú ahitköz1 a1hi ahit1kö ah1o2vi a1ho ahú2sár a1hú ahú1sá ahús3s a1i a2i2a. ai1a ai2bo 2ai2de ai2dom ai1do 2ai2dÅ‘ a2iék ai1é a2i2g. ai2ga ai2gá ai2gé a2ig2n ai2g2y ai2i1a ai1i ai2ib ai2ih ai2ij ai2in ai2ir ai2it ai2je ai1ka2 ai2kab ai2k1ad ai2k1al ai2k1ar ai2k1as2 ai2k1á ai2ke2 aik1el ai1ki2 ai2kik ai2kis ai2k1ol ai1ko ai2k1os2z ai2kÅ‘ ai2kü 2aill ail2l2e. ail1le ail2lo a2i1l2y ai2m2a. ai1ma 2ai2má 2ai1mi ai2mit a2iml a2i1mó 2aimp ai2n2a. ai1na ai2na2l ain1a1la 2ai2nas ai1ná2 ai2n1á1lo ai2nár 2aind a2i2n2e. ai1ne a2i2neb ai2né2l ai1né 2ainf 2ainff 2aing ai2n1in ai1ni ai2nol ai1no 2ainp 2ains ain1s1to 2aint ai2nü ai2onb ai1o ai2onn ai2o1no ai2onr ai2ont a2ior ai2pa a2i2r. ai2ram ai1ra 2ai2rat 2ai2rá ai2r2e. ai1re ai2ré ai2ri 2ai1ro ai2rod a2i2se ai2si 2aisk 2aism a2iss 2aist 2ais2z ai2s1za ai2s1zo 2ai2ta ai2vad ai1va ai2var ai2vás ai1vá 2ai2vó ai2xe ai2zé ai2zom ai1zo a1í aí2gé aí2ja aí2já aí2ju aí2ra aí2rá aí2ro aí2ró aí2ru aí2té aí2vá aí2ve aí2vé aí2vi aí2vó aí2vü aí2vű aí2ze aí2zé aí2zü aí2zű a2j1a2dó a1ja a2j1a1du aj1a1ga aj1agr aja2kol aja1ko a2j1a1kó aja2kú a2j1a1na a2j1ant a2j1an2y aj1apr ajá2c a1já aj1á2go 1a2jánd 1a2jánl a2j1áp 2ajár a2j1árb a2j1árc a2j1á1re2 a2j1á1ré a2j1árr aj1á1sá aj1ásv a2j1á2t1e2 ajá2z aj1á1zá aj1bl aj1br aj1c2s aj2d1alm aj1da aj2d1a2lo2m. ajda1lo aj2d1a2lomm aj2d1a2lomn aj2d1a2lomr aj2d1a2lomt a2j1e2c a1je a2j1ef a2j1eff a2j1e1gé a2j1e2la aje2le1me aje1le a2j1elf a2j1elff aj1el1lá a2j1e2l1o2 aj1e1lÅ‘ aj1el1vá aj1el1vo a2j1e2m aj1e1ne aj1enz a2j1e2r aj1e2se a2j1ex a2j1ez a2j1é1ge a1jé a2j1é1gé a2j1é2gÅ‘ a2j1é2k a2j1él a2j1ép ajé2r a2j1é1re a2j1é1te aj1f8l aj1fl aj1fr aj1g2r a2j1i2d a1ji a2j1ij a2j1ik a2j1im a2j1int a2j1i1o a2j1ip a2j1iz aj1ír a1jí aj1íz aj1kl 1ajk2ú. aj1kú ajob1b1o a1jo ajo2g1á2s1za ajo1gá ajogás2z a2j1o1la aj1old a2j1o2v a2j1ócskás a1jó ajóc2s ajócs1ká ajó2sár ajó1sá aj1öb a1jö a2j1ök a2j1ör a2j1öz aj1Å‘r a1jÅ‘ aj1Å‘2s aj1pl aj1pr aj1sh aj1sk aj1sp ajszt2 ajs2z aj2tág aj1tá aj2teg aj1te aj2t1é2t aj1té ajt1or1g2 aj1to aju2hi a1ju a2j1új a1jú aj1ús2z a2j1ú1to a2j1útr aj1üg a1jü aj1ül aj1üs aj1üz aj1űz a1jű ajz1a1ka aj1za ajz1atl aj2ze2r aj1ze aj2zí aj2zü 2akab a1ka aka2c1se akac2s a2kadag aka1da a2k1a2da1ta a2k1a2datb a2k1a2datn a2k1a2da1to a2k1a2datr a2k1a2dat1t2 1a2kadál aka1dá 1a2kadém aka1dé a2k1adm a2k1a1ga 2akal ak1a2lag aka1la a2k1a2lak aka2la1pú a2k1aleg aka1le a2k1al1ko 2akam 2akan 2aka1o 2akap a2ka2pád aka1pá a2k1app ak1a2ra1i aka1ra a2k1a2ras2z akara2s a2k1a2ráb aka1rá a2k1a2rák 2akarc a2karc2h 2akard ak1a2rén aka1ré 2aka1ri 2akarr 2aka1sí 2akast2 aka2szaj akas2z aka1s1za a2k1a2szat ak2a2szel aka1s1ze aka2s1zö a2k1asztr 2aka1ta ak2a2tab 2aka1te aka2tel aka2ter aka1ti2 aka2tik aka2tim ak2a2tin 2aka1u a2k1a2u1tó 2akav 2akaz 1aká2c. a1ká a2k1áf a2k1áff a2k1ág aká2l1a aká2lis aká1li a2k1ál1ló a2k1á2rad aká1ra a2k1árb a2k1árj a2kárk aká2rokn aká1ro a2k1ár1tó akárt2 a2k1á2ru aká2sad aká1sa aká2saj aká2sal aká2sar aká2sav a2ká2sást aká1sá akás3s ak1á2szán akás2z aká1s1zá aká2s1zu a2k1ászun aká1t1a a2k1át1la ak1bl akció2s1ű2 ak1ci akci1ó a2k2e. a1ke ake2c2s a2k1e2d2z ak1e2ge ak1e2gé a2k1e1la a2k1e1lá ake2lem ake1le ak1elh a2k1elj a2k1eln a2k1e1lo ake2lÅ‘k ake1lÅ‘ a2k1elr ak1els a2k1elv a2k1emb ak1e2mel ake1me a2kerd ak1e2re1i ake1re a2k1e2ró a2k1e2rÅ‘ a2kesp a2k1est ak1eszk akes2z ak1eszm a2k1e2te ak1e2ti a2ke1u a2k1e2vez ake1ve a2k1é2kem a1ké aké1ke ak1é2kes a2k1é2ké a2k1ékh ak1ék1rÅ‘ 2akém 2akén2y 2aké2p. 2aképb 2aké1pe 2aké1pé 2aképh 2aképk 2aképl 2aképn 2aképpel akép1pe 2akép1pé 2aképr 2aképt 2aké1pü 2aképz a2k1érc 2akérd a2kérdek akér1de 2aké1re 2aké1ré a2k1érm 2aké1rÅ‘ a2k1é2rÅ‘1i a2k1é2rÅ‘j a2k1érr a2kérte1ke akér1te a2k1értel a2k1értet a2k1ér1tÅ‘ 2akérv a2k1érz 2akés a2k1é2s1za2 akés2z a2k1é2te 2akéts a2k1étt 2akéz ak1f8l ak1fl ak1fr akgerinc1 ak1ge akge1ri ak1gr 2aki1a a1ki 2akib 2akic 2akid a2k1i2dé a2k1i1di 2aki1e2 2aki1é 2akif 2akiff a2k1i1ga a2k1i1gé 2akig2y 2akih 2aki1í 2akij 2akil a2k1ill a2k1il2y 2akim a2k1i2má a2k1i1mi 2akin a2k1ind a2k1ing a2k1ins a2k1ion aki1o 2akir a2ki2rom aki1ro 2akis a2k1isc a2k1i1si a2k1isk a2k1ism a2k1ist2 2akit 2akiv 2akiz a2k1izm a2kí1té a1kí a2k1í2z ak2k1a2d ak1ka ak2kaj ak2k1a2la akk1alk ak2k1arc ak2kál ak1ká ak2k1á2p ak2k1ed ak1ke akk1ell ak2kelm akk1elt ak2kem ak2k1e2ró akke2s akk1e1se ak2ket ak2ko1la ak1ko 1akkord akk1ölt akkö2l ak1kö ak2k1ös ak2kÅ‘r ak1kÅ‘ 1akk2u. ak1ku 1akkum ak2la1u ak1la ak2lav ak2lor ak1lo ak2lón ak1ló ak2lór 1akna1i ak1na 1aknáb ak1ná 1aknáh 1akná1i 1akná1ka 1akná1ko 1aknás 1akná2t. 1aknáv 1aknáz 2ako1a a1ko ak1obj 2akoc 2akof 2akoff 2akokt akolás3s ako1lá a2k1ol1da a2k1o2l2y 2akom 2akonc 2akond 2akonf 2akonff 2akong 2akonk 2akons 2akont 2akonv 2akon2y 2akonz2 2ako1o 2akop a2k1o2pe ak1o2rat ako1ra 2akorb 2akord a2k1org 2ako1ri a2k1orj 2akorl 2akorm 2ako1ro 2akorp 2akorr 2akor1s2 2akort 2ako1ru 2ako1rú a2k1orv 2akos 2akó1ni a1kó 2akó1p2 a2k1ó2rá a2k1ó2ród akó1ró 1a2kó1zá ak1ös2s2z a1kö akö2z1é2l akö1zé aközre1a3 aköz1re ak1Å‘2r. a1kÅ‘ ak1Å‘2s. ak1pl ak1pr ak1ps akrá1di2 ak1rá ak2rát 2ak1re ak2re1a 2ak1ré a1k2ré1me ak2ré1ta ak2ré1tá 2akris ak1ri ak2ri1té 2a1k2riti1ka akri1ti 2ak1rí ak2ríz 1akrob ak1ro akrosz2k akros2z 2a1k2rónik ak1ró akró1ni ak1ry ak1sp ak1s1ta ak1sz2t2 aks2z ak2t1a1u ak1ta aktár2s1a2d ak1tá aktár1sa 1akt2i. ak1ti ak2ti2m 1aktívb ak1tí aktí2ve ak2t1ív2e. 1aktívk 1aktí1vo 1aktív1s 1aktívt akto2r1ál ak1to akto1rá akt1os2z ak1t1rá 1aktu1a ak1tu 1akt2ú. ak1tú a2k1udv a1ku a2k1ujj 2akun 1a2ku1pu a2k1úg a1kú a2k1új a2k1úrr a2k1üg a1kü a2k1ü2le a2k1ü2lé a2k1üln a2k1ü2t a2k1ü2v ak1ya a1ky a2l1abl a1la alac1c ala1ce2 ala1ci2 ala2cit ala2cor ala1co a2la1c1sé alac2s ala2c3sö ala2c1sü a2ladag ala1da a2l1a2da1tá ala2gál ala1gá ala2g1e ala2gép ala1gé ala2gol ala1go ala2gya alag2y ala2j1a2d ala1ja ala2jas ala2j1e2 a2la2kad ala1ka al2a2k1an a2l1a2kas ala2kál ala1ká ala2k1áp ala2kes ala1ke 1a2la1kí a2l1akn2a. alak1na a2laknák alak1ná a2laknát ala2kol ala1ko a2l1a2kód ala1kó ala2k1öl ala1kö a2l1ak1tu 1ala1ku a2laku2l. a2lakult al1alg a2l1alj a2l1alk al1all al1alm al1a2lo al1alt ala2n1e 1a2lan2n2y a2lan2y ala2nyal ala1nya al2a2ny1e2 ala2pa alap1a2d a2lapan ala2p1á2r ala1pá a2l1a2pátom alapá1to ala2p1e2 ala2pill ala1pi ala2pin ala2pir 1a2lapítv ala1pí ala2p1ol ala1po ala2por ala2p1os2z ala1p1ó2 alap1p al1a2ra al1a2rá al1ar1g2 ala1s2p a2l1aszp alas2z alaszta2l alasz1ta alat1an2y al2atan ala1ta ala2t1á1t1a2 ala1tá ala2t1e2v ala1te ala2t1inf al2atin ala1ti ala2t1inff ala2tív ala1tí ala2t1ol ala1to ala1tó2 ala2tór a2l1attak alat1ta 1a2lat1ti ala2t1ü2 al1a1va ala2zúr ala1zú 1a2lá1a a1lá 1a2lá1á alába2d alá1ba alá2b1a1da a2l1áb1rá 1a2lábúj alá1bú alá2dal alá1da alá2d1a1p 1a2láf 1a2láff a2l1á2g. a2lá1ga al1á2gá al1ágb a2l1ágg al1ágh al1á2gi al1ágk al1ágn al1á2go a2l1ágr al1ágt al1á2gú al1á1gya alág2y 1a2lá1í 1a2lá1mo a2l1á2rad alá1ra a2lárak a2lá1rá alá2rár a2l1árk alás1te2 alás2tel alás2t1é2r. alás1té a2l1átd a2lá1te a2lá1té al1áté2p a2l1átf a2l1átff alá2ti a2l1átl a2l1átm a2lá1tö a2látr a2lá1tú al1bl 1album al1bu al1d2r 2ale1a a1le 2aleb al1e1bé 2alec al1e1ce ale2g1e2lé ale1ge al1egés ale1gé ale2gés2z1 a2l1egys aleg2y a2le1gyü 2aleh 2ale1í2 2alej ale2k1a a2l1e1la a2l1elág ale1lá a2l1eld al1e2led a1le1le ale2le2m. ale2lemb ale2le1me ale2lemk ale2lemm ale2lemt a2l1elg a2l1elh al1elm a2l1eln ale2lÅ‘k ale1lÅ‘ ale2lÅ‘t a2l1elr a2l1els al1el1té a2l1elv 2alem a2lemb a2l1e2mel ale1me al1e2mé a2l1eml 2alen a2l1e1ne 2alep ale2p2e. ale1pe a2lerd a2l1e2re a2l1erk a2l1ern 2ales a2lesb al1esem ale1se a2le1si ale2sik ale2tet ale1te alet2t1est alet1te ale1ü2 2alev ale2vol ale1vo ale2vÅ‘1i ale1vÅ‘ 2alex a2l1exp 2aléc a1lé 2alég a2l1é2gÅ‘ alé2kal alé1ka alé2k1an alé2ka2t alé2k1em alé1ke alé2ker alé2kes alé2kor alé1ko a2lé2l. al1é2le2n alé1le a2l1é2let a2l1é1lé a2l1éll al1é2lÅ‘ a2l1é1lü 2alén a2léne1ke alé1ne a2l1érd al1érs a2l1ér1te a2l1ér1té a2l1ér1tÅ‘ a2l1érz 2alét alé2tek alé1te a2l1é2tel a2l1étl a2l1é1vi 1alfás al1fá 1algásat al1gá algá1sa 1algor al1go al1gr 2alic a1li al1i1de a2li1dé al1i2do ali2e al1if8j a2l1i1gé 2alik a2l1ill 2alim a2l1i2má a2linas ali1na ali2nin ali1ni alió2ra ali1ó al1i2pa a2l1i1rá a2l1i1ro a2l1i2si a2l1ism ali1s2po alis1p2 al1is1te 2ali1te al1iz1ma al1íj a1lí a2l1í2v alja2i1ké al1ja alja1i 1alja1ka 1aljakb 1alja1ké 1aljak1k2 1alja1ko 1aljas 1aljá1i al1já alj1ár1na al2j1á2ro 1aljb 1aljc 1aljd 1al2j1er al1je 1aljf 1aljff 1aljg 1aljh 1alji1a al1ji 1aljig 1al2j1ip 1aljizm al2j1iz 1aljizzas aljiz1za al2jí 1aljj 1aljk 1aljl 1aljm 1aljn 1aljr 1aljs 1aljt 1al1jú 1al2jü 1aljv 1aljz 2al2k. al2k1a2pó al1ka alke1le2 al1ke 1alkím al1kí 1alkoh al1ko 1alko1tá 1alkotm 1alko1tó al1k1re al1k1ro 1alk2u. al1ku 1alkud 1alkun al2l1aj al1la al2l1akt al2l1akv alla2l al2l1a1la al2lalk al2l1ar al2la1u all1áll al1lá all1áz2s al2l2e. al1le al2led all1eg2y all1emb 1allerg all1e1se all1est all1e2vÅ‘ all1é2jé al1lé al2l1id al1li al2lim all1int al2li2p al2l1isk al2lí all1ó1ri al1ló all1ó2sok alló1so al2lös al1lö al2l1Å‘2 alls2 al2lü 1al1lű 1almád al1má al1my 2alob a1lo a2l1o2be alo2g1ó2 alo2is alo1i a2l1ok1ta al2ol2d. a2l1old alo1ma2 alo2mad alo2mak alo2m1al alo2m1an alo2map alo2mar alo2mas alo2mác alo1má alo2már alo2m1át alo2mer alo1me alo2min alo1mi alo2mi2s alo2mit alom1p2 alo2m1ú alo2n1á alon1d2 alon3n 2alop al1opc a2l1o2pe al1o2ra al1orc a2l1orn al1o2ro a2l1orr alos3s a2l1os1tá a2l1oszl alos2z 2alov al2ó2c3se a1ló alóc2s 3alógu2s1e2s aló1gu alógu2s1e2 alóigaz1 aló1i al2ói2ga alói2ko al1ó2lo a2l1ónn aló1ó2 a2ló2ráj aló1rá aló2rák aló2za2n aló1za aló2zis aló1zi a2l1öb a1lö a2l1ö2l a2l1ön a2l1ör a2l1ös a2l1ö2z alpe2l al1pe alp1e1le al2piz al1pi al1sh al1sk al1sl al1sm al1sp als2z2 al1szt2 al2ta1da al1ta al2t1alap alta1la alt1a1nya altan2y alt1elv al1te alt1emb al2t1e2p al2t1e2v al2t1é2k al1té alté2n alt1é1ne alt1ér1ne al2t1é2rÅ‘ al2t1érr alt1ér1tÅ‘ alt1i2ma al1ti alt1i1má alti2n alt1i1na alti2p alt1i1pa al2t1ir al2t1old al1to 1alton1k2 al2t1os2z al2tóc al1tó al2tön al1tö al1trak alt1ra al1tran al1trav al2tur al1tu al2t1út al1tú al2tür al1tü 1alt1vé al1t2y al1u2p. a1lu 1a2luss alu1str alust2 a2l1új a1lú al1ú2r. al1úrb al1úrh al1ú2ri al1úrk al1úrn al1úrr a2l1ú1té a2l1úth a2l1útj a2l1útn a2l1útt al1üg a1lü al1ül al1ün al1ür al1üs al1üt al1üv a2l1üz al1űr a1lű al1űz 1alve1o al1ve 1al1vó al1vy a2ly1ap al2y a1lya a2lyar a2lyál a1lyá a2ly1e2 a2lyév a1lyé a2ly1id a1lyi a2lyim a2lyis a2lyö a2lyug a1lyu a2ly1ü2 am1abb a1ma am1abl 2amad a2m1a2dat ama1da ama2dás ama1dá am1adm a2m1a2dó a2m1a2du 2amag ama2gát ama1gá 2amaj am1ajt ama2kar ama1ka a2m1akt am1akv a2m1a2lak ama1la am1a2lap a2m1a2l1e ama2nya aman2y ama1ó2 2amap 2amas am2a2sz1a2k amas2z ama1s1za am2a2szeg ama1s1ze ama2sz1em ama2szél ama1s1zé ama2s1zö ama2tad ama1ta am2ata2n ama2tá1rá am2atár ama1tá ama2tel ama1te am2a1ti ama2told ama1to ama2t1os2z ama2t1ó2 a2m1a2u a2m1álm a1má a2m1á2ra1i amá1ra a2m1á2rak amá2rá amát1a2d2ó. a2m1á2ta amá2ta1dó a2m1átk a2m1átl a2m1átt am2b1ag am1ba am2bal amb1atk am2b1á1s1zá am1bá ambás2z am2b1e2g am1be am2b1e2le am2bep am2b1e2te am2b1é2r. am1bé 1ambu1la am1bu am1dr a2m2e. a1me am1e2ce 2ameg a2m1e1lá am1e2lem ame1le a2m1e2l1i am1elj a2m1elk a2m1eln a2m1e1lo a2m1e2lÅ‘ a2m1els a2m1elt a2m1elv a2m1e2me a2m1eng 2amenn amens1s amen2t1á2ro amen1tá a2m1erd a2m1e2rÅ‘ a2mesk 2amest a2m1e2v a2m1ex am1ezr amé2hes a1mé amé1he amé2k am1é1ké amé2let amé1le a2m1ép a2m1érd a2m1értek amér1te a2mértel a2m1étk a2m1é1vé 1amfo1rá am1fo am1fr am1gr ami1d1i2 a1mi ami2er ami1e ami2g a2m1i1ga a2m1i1gá a2m1i1gé amik1ro1 amikros2z2 a2mi1má a1m1i1mi am1imp ami2n2a. ami1na ami2na2n ami2nin ami1ni a2m1in1té ami1ó2 a2m1i1rá a2m1i1ro ami1se2 ami2sel ami2sen ami2sep ami2s2z 1a2mit1bo 1a2mit1ha 1a2mitm 1a2mi1tö 1a2mit1ro 1a2mit1rú 1a2mits 1a2mit1tá 1a2mit1tö a2míg a1mí am1kl am1kr amme2g am1me am2m1eg2y am2me1ta am2m1é2t am1mé am1my a2m1o2k1e2 a1mo a2m1okm a2m1o2koz amo1ko am1o1la a2m1old a2m1ol1tá a2m1op a2m1or1s2 1a2mort2 a2m1orv 2amos amos3s 2amoz am1ó2ri a1mó am1ö2r a1mö am1ös am1öt am1ö2z am1Å‘2r a1mÅ‘ am1Å‘s am1p2h am1p1la am1p2r 1amput am1pu am1sk am1sp am1sr amst2 am1t2r 2amun a1mu a2mu1ni amu2riz amu1ri amu1sl a2m1u2tas amu1ta a2múg a1mú a2m1új am1üg a1mü am1ü2l am1üt am1üz an1a2cé a1na 2anad a2n1a2dat ana1da a2n1a1du a2n1a1ga a2n1a1gá an1a2gya anag2y a2n1ah 2ana1i 1a2nakr ana2lap ana1la 1ana1lí an1alk an1alm 1a2na1ló an1a2mo a2n1a1na 1a2na1ná an1ann an1a2n2y 2anap ana2pa2 a2n1ap2a. a2n1a1pá a2n1a2pó a2n1ap1po anapp2 an1a2rab ana1ra an1a2rá a2narc a2n1arr ana2s1z1e2 anas2z ana2szén ana1s1zé an2a2szin ana1s1zi an2a2s1z1í2 ana2s1zó an2a2s1zü ana2t1e ana2tö 2anav a2n1a2va a2n1az a2n1ág a1ná a2n1ál1mi a2n1á2lom aná1lo a2n1á2p a2násat aná1sa 2anát a2n1á1ta a2n1átk a2n1átr an1br anca3u an1ca an2c1ál an1cá an1ce2 an2c2e. an2c1é2r. an1cé an2c3hit anc2h an1c1hi anci2al an1ci anci1a an2c1ó2 an2csaj anc2s an1c1sa an2csa2r ancs1ell an1c1se ancs1emb ancs1e2p ancs1et an2csé1ré an1c1sé an2cs1ill an1c1si an2csiz an2cs1í2z an1c1sí an2cs1or an1c1so an2c1sö an1c1sÅ‘2 ancs1t an2csu2t an1c1su an2c1s1ü an2d1alk an1da anda1s and1atl an2d2e. an1de and1e2le and1elk an2d1e1lÅ‘ and1els an2derd an2d1es 1andez an2dél an1dé an2dil an1di an2d1ö an2d1Å‘2 an2dús an1dú an2dün an1dü an2dű an1dy an2d1zá and2z a2n1eb a1ne an1edd an1e2gé 1a2nekd ane2la ane2l1á ane2l1e2l ane1le ane2l1emb ane2lél ane1lé ane2lÅ‘ 2anem an1e1mu an1e2re an1ern an1err 2ane1u 2anev a2n1ex ane2z an1e2z. a2n1e1ze an1e1zé an1ezt an1ezz a2n1é2ké a1né a2n1é1le a2n1é2pí a2n1é1ri a2n1érv a2n1étk a2n1étt a2n1évc a2n1é2vem ané1ve an1é2ves a2n1é2vet a2né2véb ané1vé ané2vén ané2vét ané2vév an1év1ha ané2vi2g ané1vi an1év1ke an1év1kö a2n1é1vü a2névz anfé2l1é2v an1fé anfé1lé an1f8l an1fl anga2d an1ga an2g1a1da an2g1a1do an2g1a1la an2g1a2ra an2g1ass ang1a1zo an2g1á2c an1gá an2g1áll angá2r1a2d angá1ra ang1á1ta an2g1átj an2g1átt an2g1ed an1ge an2g1eg an2g1elf an2g1elff an2g1elh an2g1elj an2g1ell an2g1eln an2g1e1lÅ‘ an2g1elt an2g1elv an2gem ang1emb ang1eng an2g1e2r ang1e1se ang1é1le an1gé ang1élv an2g1é2ne an2g1é2r. ang1é1rÅ‘ an2g1és an2gi2m an1gi an2giz an2gí an2g1os2z an1go an2g1ó1ri an1gó an2g1öl an1gö an2g1ös an2g1Å‘2 ang1s2z an2gü an2gű an1gye2 ang2y angy1el an2gyék an1gyé an1i1de a1ni ani2g a2n1i1ga a2n1i1gé ani2kon ani1ko a2n1ind a2n1inf a2n1inff an1i2on ani1o 2anip a2n1i2pa a2n1i2rá a2n1i1ro a2n1i1si a2n1isk a2n1ism a2ni1ta an1itt a2n1íg a1ní a2n1íj 2anív a2n1íz ank1abl an1ka an2kaj an2k1a2k ank1a1le an2k1a2n ank1arc ank1a1ri an2k1atl an2k1a1u an2kaz an2k1ál an1ká an2k1e2g an1ke an2k1ek an2k1e2l an2k1e2m an2k1e2reit anke1re ankere1i an2k1erj an2k1es ank1ér1de an1ké ank1érem anké1re an2kér1te an2k1ér1té an2k1i2d an1ki an2k1i2p an1k1lu an2k1old an1ko ank1oszt ankos2z an2k1ö2römb an1kö ankö1rö an2kös an2k1ö2v an2kÅ‘r an1kÅ‘ ank1t2 an2k1ü an2n2e. an1ne an3nye an2n2y an3nyo ano1g2 a1no a2n1oj a2n1ok1ta a2n1old 1a2no1má ano1p2l 2anor a2n1o2ro a2n1orr a2n1or1s2 2anos a2n1ott a2nódd a1nó anó2de a2nó1do anó1g2 a2n1ó1ni a2n1ó1no a2n1ó2rá an1ó1ri a2n1öl a1nö a2n1ön a2n1ör a2n1ös a2n1ö2t an1pä an1pl an1pr an2s1e2l an1se an1s1ka an2sö an1s2p ans3s1ze ans2s2z an1s1ta an2szal ans2z an1s1za an2sz1á2bó an1s1zá an2sz1á2h an2szár ansz1es an1s1ze an2szél an1s1zé an2sz1én an2sz1é2p an2szil an1s1zi an2szin an2s1zó ansz1t2 ansz1ü2l an1s1zü an2t1abl an1ta ant1a1ga an2t1eg an1te 1anten an2t1e2se ant1es2z anti1llát an1ti antil1lá an2t1ing an1t2re a2n1ud a1nu a2n1ug a2n1uj 2anuk a2n1u2r anu2s1zi anus2z a2n1u2t a2n1úg a1nú an1ü2g a1nü an1ü2l an1ü2z an1űr a1nű an1űz a2ny1a2dó an2y a1nya anya2g1á2r. a2nyagár anya1gá anya2g1árr 1anyagb 1a2nya1gé anyag1g 1anyagh 1anyagk 1a2nyagm 1anyagr 1anyagt 1a2nya1gú a2nyakad anya1ka a2ny1a2kas a2ny1alk a2ny1all a2ny1ass a2ny1aszt anyas2z a2ny1a2tom anya1to a2nyaz 1a2nyádt a1nyá 1a2nyáék anyá1é any1á1lo a2ny1á1rá a2ny1árb a2ny1árf a2ny1árff a2ny1árk a2ny1árn a2ny1á2ro a2ny1árr any1á2s2z any1d 2a1nye a2ny1e2c a2ny1ed a2nyeg any1e1gé any1eg2y a2ny1e2k a2nye1la anye2le1me anye1le any1elev a2ny1ell a2ny1e1lo a2ny1em a2ny1en any1e2r2e. anye1re any1e2re1i any1e2ret any1e2rén anye1ré any1e2rér any1e2rét any1e2rév a2ny1e2rÅ‘m anye1rÅ‘ any1e2rÅ‘r any1e2rÅ‘t a2ny1ég a1nyé a2nyé1he a2ny1é2j a2ny1ék any1élv a2ny1é2r. a2ny1érb a2ny1érc a2ny1ér1d2 a2ny1é1re a2ny1érg a2ny1érh a2ny1é2ri a2ny1érk a2ny1érm a2ny1érn a2nyé1rÅ‘ a2ny1érp a2ny1érr a2ny1érs a2ny1ér1te a2nyér1té a2ny1ér1tÅ‘ a2ny1érv a2nyé1ve a2nyé1vé anyha2j1ón any1ha anyha1jó anyha2j1ó2r anyhala2d anyha1la 2a1nyi anyigaz1 a2ny1i2ga any1ing a2ny1i1o 2a1nyí 2a1nyo any1old a2ny1o2r any1ó1rá a1nyó any1ök a1nyö any1ö2r any1öz a2ny1Å‘2 any1s anyt2 any1tr a2nyur a1nyu 2a1nyú 2a1nyü any1ül an2zak an1za an1ço an1Å£a a1o ao2áz ao1á ao2be ao2c2s ao2da ao2dú ao2ka ao2ká ao2la aolaja2d aola1ja aola2j1a1da ao2mo ao2ne ao2pá ao2pe ao2ra ao2ro ao2so ao2ul ao1u ao2un ao2ut ao2ve ao2vi ao2xi a1ó aóá2r aó1á a2óbar aó1ba a2ó1bá a2ó1bi a2ó1bo aó2ce aó2dá a2ó1di a2ó1fá a2ó1fe a2ó1fo a2ó1fÅ‘ a2ó1fü a2ó1hé a2ó1hi a2ó1hü a2óil aó1i a2óis a2ói2v a2ó1ká a2ó1ke aó1k1ré a2ó1ku aó2la a2ó1le a2ó1lé a2ó1li aó2lo aó2lu a2ómag aó1ma a2ómar a2ómas2 a2ó1me a2ó1mi a2ó1mo a2ó1né a2ó1nö a2ó1nÅ‘ aó2rá a2ó1ré aó2ri a2ó1sí a2ó1sű a2ó1ta a2ó1te a2ó1té aó2vo aó2vó a1ö aö2bö aö2c2s aö2dé aö2ko aö2kö aö2le aö2lé aö2lÅ‘ aö2ná aö2rö aö2ve aö2vi aö2vö aö2zö a1Å‘ aÅ‘2re aÅ‘2ré aÅ‘2ri aÅ‘2rö aÅ‘2rü aÅ‘2se aÅ‘2sö aÅ‘2s2z apa2cs1a2v a1pa apac2s apa1c1sa ap2a2c1s1i a2p1a2da a2p1a1ga a2p1a1já a2p1akc 2apal a2pa2lag apa1la apa2lak a2p1alb a2p1alj ap1alt ap2a2mas apa1ma a2p1ant 2apap apa2pán apa1pá ap1a2rán apa1rá 1apa1sá ap1asp apa2tad a3pa1ta apa2t1a1la ap2ata2n apa2t1as ap2a2tál apa1tá apa2t1ö ap1aut apa1u 2apav a2pa1va a2p1a1xi ap1a2zo a2pá1jú a1pá a2p1állap apál1la a2p1ál1lá a2p1ál1lo apán1n a2p1á2rad apá1ra ap1á2ra1i a2p1á2rak ap1á2ram a2p1á2ras ap1á2rat a2pá2rá1é apá1rá apá2ráh apá2rán apá2rár apá2ráv apár1ba2 a2p1á2r1e2 a2p1á2ré a2p1árf a2p1árff ap1ár1ka ap1ár1ko a2p1árn2y ap1ár1tó a2p1á1ru a2p1á2rú apás1ká2 apá2túr apá1tú 1a2pá1u ap1bl ap1dr a2p2e. a1pe ap1e2dé a2p1e2g ap1e2l1a ap1elb ap1e2lé a2p1elf a2p1elff ap1elg a2p1elh ap1elj ap1elk a2pell ap1elm ap1eln ap1e1lo ap1e2lÅ‘ ap1elr a2p1elt a2p1elv ape2m ap1emb ap1e1me ap1e1ne ap1e1ni ap1e2n2y ap1e2rÅ‘ ape2s ap1e1se ap1e1sé ap1e1sÅ‘ a2p1e2v a2p1ex a2p1é2he a1pé a2p1é1je2 a2p1é2le a2p1éll a2p1élm a2p1é2ne a2p1é1pü a2p1é2r. ap1észl apés2z a2p1é1te a2p1é1ve ap1f8l ap1fl ap1f2r ap1g2r a2p1i1de a1pi a2pi1dé apigaz1 a2p1i2ga ap1i2ko ap1ikr apik1to1 apiktog2 a2p1i2nár api1ná a2p1ind a2p1inj a2p1ins ap1i2rat api1ra a2p1i2rá a2p1irk a2p1ism a2p1íg a1pí a2p1ín a2pí1té ap1ív a2p1íz ap1kl ap1kr ap1kv ap2laz ap1la ap2léd ap1lé apmeg1 ap1me ap1mű1 apműt2 a2p1ob a1po ap1o2laj apo1la a2p1oltár apol1tá a2p1opc a2p1o1pe a2p1op1t2 apo2rad apo1ra ap1or1cá ap1or1só apor2t1Å‘2 apo2t1ál apo1tá a2p1ov 1a2pó1ká a1pó ap1ó1lo ap1ó1ri a2p1öb a1pö ap1öl ap1ön ap1örv a2p1ös ap1öv a2p1ö2z ap1Å‘2r a1pÅ‘ 1appa1rá ap1pa ap2p1árn ap1pá ap1ph app1ing ap1pi ap1p1la ap1p1ri ap1p1ró ap1p2s ap1py ap2res ap1re ap2réd ap1ré a1p2rém ap2ré2s. a1p2rím ap1rí 2ap1ro ap2roc a1p2rod 1apród ap1ró 1apró1zó ap2s1i2kon ap1si apsi1ko ap2síz ap1sí aps1ork ap1so apsz1ert aps2z ap1s1ze ap1szf ap1szff apsz2t aptára2d ap1tá aptá1ra aptá2r1a1da ap1t2r apu1á2 a1pu a2p1udv apu1p2 apus3s2 a2p1u2tas apu1ta a2p1után apu1tá a2putc a2p1új a1pú a2p1üd a1pü a2p1üg a2p1ü2l a2p1ün a2p1üt a2p1üv a2p1üz ap1űr a1pű ap1wh ara2b1ár a1ra ara1bá ara2b1í2 a2r1ab1la 2arad ar1a2da1ta ara1da ar1a2da1to ar1a2datr 2arag ara2g1e 2araj a2r1ajká1ró araj1ká 2arak a2r1a2kol ara1ko ara2kóh ara1kó ara2kó1i ara2kós ara2kót a2r1ak2t. a2r1ald a2r1alk a2r1alm a2r1a1na 1a2rann arany1a2gá ara2nyag aran2y ara1nya ara2nyal 1a2ranyb 1a2ranyh ar2a2nyí 1a2ranyk 1a2ranyn 1a2ranyr 1a2rany1s a2ra2p2a. ara1pa ar1arc 1aras2z. aras2z arasz2t1e ar1a1s1zú ara2tal ara1ta ara2tel ara1te ar2a2tin ara1ti ara2t1Å‘2 ara1tű2 ara2tűr ar1aul ara1u aravas2z1 ara1va ara1ví2 1a2raw ara2zon ara1zo 2arác a1rá a2r1á2c. a2r1á2c1si arác2s a2rácsom ará1c1so a2r1á2g. a2r1á2g2a. ará1ga a2r1á2ga1i a2r1á2gak a2rága2n a2r1á2gat ará2gáb ará1gá ará2gáh ará2gán ará2gár ará2gát ará2gáv a2r1ágb a2r1á1ge a2r1á2gé a2r1ágf a2r1ágff a2r1ágg a2r1ágh a2r1á2gi a2r1ágk a2r1ágl ará2gon ará1go a2r1ágr a2r1ágs a2r1ágt a2r1á2guk ará1gu a2r1á2gu2n a2r1á2gú a2r1á2g2y ar1álc a2r1ál1lá a2r1ál1lo 2arám ará2m1e2 ará2nyad arán2y ará1nya ará2nye a2r1á2rak ará1ra a2r1á2rá a2r1árk a2r1árr a2r1á2ru a2r1á1rú ar1árv ará2s1ze arás2z a2r1á2szo1ki2 ará1s1zo ará2tal ará1ta ará2t1ö ará2zsál ará1z4sá aráz2s ará1z1si2 arázs3z ar2c1a2d ar1ca arc1ag2y arc1a1la arca2n arc1an2y ar2car ar2cat ar2ceg ar1ce ar2c1es ar2cev ar2c1é2h ar1cé arc1é2l. arc1élb arc1éll arc1élt2 ar2c1é2n ar2cés 1ar1c1hí arc2h arc1ing ar1ci ar2c1int ar2ciz arcolás1s ar1co arco1lá ar2có ar2cÅ‘ arcs1a1la arc2s ar1c1sa ar2csál ar1c1sá arc3se1re ar1c1se ar2csip ar1c1si ar2c3sor ar1c1so ar2cü ar2cű ard1a1cé ar1da ar2d1alj ar2d1áll ar1dá arde2l ar1de ard1e1le ard1e1lÅ‘ ard1elt ar2d1e2m ar2d1é2l ar1dé ar2d1i1na ar1di ar2d1ing ar2dor ar1do ar2dö 2ards ar2d1ur ar1du ar2dü ar1dy a2r1e2d2z a1re ar1egés are1gé a2r1e2g2y are2i areil2 a2r1e2le ar1elh ar1elm ar1eln ar1elr ar1elt ar1e1lü a2r1e1lű ar1elv are1l2y a2r1emb ar1e2mel are1me ar1e2més are1mé a2re1mu a2r1e2r ar1e2se ar1e2sÅ‘ a2r1eszek ares2z are1s1ze a2r1e1s1zé a2r1e1s1zü ar1e1tű ar1e2ve ar1e2vé a2rew aré1é2 a1ré ar1é2g. ar1é2ge aré2k1a2l aré1ka aré2kek aré1ke ar1é2l. ar1élt 2arém aré2nek aré1ne aré1p a2r1é2pü a2r1é2ri a2r1é1rÅ‘ ar1észj arés2z aré1sz2tá aré1t1ra ar1f2r ar1g1ha 2ar2i. a1ri 2ari1a ar1i2de a2ri1dé a2r1i2ga a2r1i2mád ari1má ar1i2mi a2r1i2n2a. ari1na a2r1i2na1ké a2r1i2nas a2r1i2nat a2r1i2náb ari1ná a2r1i2náh a2r1i2nán a2r1i2nár a2r1i2nát a2r1i2náv a2r1in1gé ari2nit ari1ni arink2 a2r1in1té ari2nü a2r1i2o1no ari1o a2r1i2ón ari1ó 2arip a2r1isp a2r1is1te ari1szf aris2z ari1szff 2ariz ari2zom ari1zo ar1í2té a1rí ar2j1áz ar1já ar2j1er ar1je arkas3s ar1ka arká2p ar1ká arká2s ar2k1eg ar1ke ark1e1lá ar2kéj ar1ké ar2ké1pü ar2k1érd ark1i2n. ar1ki ar2k1i2ont arki1o ar2kiz ar2k1orm ar1ko ar2k1o1vi ar2kud ar1ku ar2k1u2s ar2les ar1le ar2m1a2g2y ar1ma arma2te arm1áll ar1má ar2m2e. ar1me ar2me1o arme2s arm1ing ar1mi arm1isk ar2m1os2z ar1mo ar2m1ö ar2mü ar2n2e. ar1ne arnis3s ar1ni aro1gr a1ro aro2k1á2 aro2k1e2 aro2kin aro1ki a2r1ol1da 1a2romát aro1má aro2mis aro1mi a2r1opt ar1org a1r1o2ro ar1or1s a2r1o1vi aró1p a1ró a2r1ó2rak aró1ra a2r1ó2ráj aró1rá a2r1ó2rám aró2s3zár ar2ó1s1zá arós2z aró2vár aró1vá ar1ózd a2r1ö2b a1rö a2r1ök a2r1ö2l ar1öng a2r1ör a2r1ös a2r1ö2z ar1Å‘r a1rÅ‘ ar1Å‘s ar1pl ar1pr ar1ry ar1s2ha ar1s1ka ar1s2p ar1s1rá ar1s1ta ar1s1to ar1st2r art1abl ar1ta ar2t1akk ar2t1a2lap arta1la arta2n1á2s arta1ná art1aszt artas2z ar2t1a2u ar2t1ál1la ar1tá ar2t1e2g ar1te art1e2lÅ‘ art1emb art1e2re1i arte1re ar2tég ar1té ar2t1é2l ar2t1érp ar1t1hu ar2t1i2n2a. ar1ti arti1na ar2t1i2nát arti1ná ar2t1i2náv art1orz ar1to ar2t1ö2v ar1tö ar2t1ut ar1tu artvis1s art1vi ar1t2y2 a2r1uml a1ru a2ru1ni aru2tas aru1ta a2r1új a1rú a2r1ús2z ar1útj ar1útr a2r1üt a1rü ar1üz ar1ű2z a1rű ar2va1la ar1va arvas1s arv1ág2y ar1vá ar2v1árh ar2v1á2ri 1ar1zé 2asabl a1sa a2s1abr a2sadag asa1da asag2 a2s1a1ga a2s1agg as1a2g2y 2asaj a2s1a2kar asa1ka 2asal a2s1alab asa1la a2s1a2lap a2s1alf a2s1alff a2s1alján asal1já a2s1al1ji a2s1alk a2s1alm a2s1a1nó a2s1ant a2s1a2n2y 2asap as1apr 2asar a2s1aran asa1ra a2s1a2rá asa2t1ó2 a2s1a2t2y asa2u 2asav asa2vo a2s1á2c a1sá asá2g1ikr asá1gi as1áll 2asám a2s1árnak asár1na a2s1á2ro a2s1árr a2s1árt2 a2s1á2ru asás1s as1ás1vá a2s1áth 2asá1to 2asáv as1bl a1scr as1d2r as1dy a2s1e2d a1se as1e1ge a2s1e2g2y ase2k as1e1ke as1e1ké as1ell a2s1emb a2s1e2n a2serd as1e2ré a2s1e2rÅ‘ a2s1es ase2t as1e1ti a2s1ez a2s1é1he a1sé a2s1é1ke a2s1é2l 2asém a2s1ép 2asér a2s1é2r. a2s1érb a2s1érc a2s1érd asé1s2 a2s1étv as1é2ve as1fr as1gl as1gr as1i1de a1si as1i1do a2s1i2ga a2s1i2gá a2s1inj a2s1i2o 2asiv a2s1i1zé as1i2zo a2s1íj a1sí 2asík 2asín 2asír asír1ta2 asír2tal a2s1í2v a2s1í1zü 2as1ká as1kl asko2s1a2rá as1ko asko1sa asko2s1á as2koz as1k2r as2luk as1lu as2már as1má 2asodr a1so a2s1of a2s1off a2s1ok1ke a2s1okl a2s1o2kos aso1ko 2asoks a2s1ok1ta aso2né 2asor a2s1ord a2s1orm a2s1os2z a2s1ox asó1p2 a1só as1ó2rá a2s1ö2k a1sö a2s1ö2l a2s1örd a2s1örv a2s1ös a2s1ö2ve as1Å‘r a1sÅ‘ as1p2l as2pot as1po asp2r as1p1re as1p1ré a1s2pu as1s2p as1sy as3sza1bá as2s2z as1s1za asszí2ve as1s1zí assz1ív2e. assz1ívek assz1ív1ne 1asszoc as1s1zo as5szon2y/sz=,2,1 as3s1zü as3s1zű 2as1ta a1s2tand 2as1tá a1s2tád 2as1ti astil2 as2tim 2as1tí 2as1to as2top 2astr as1trag ast1ra as1trav a1st2ru 2as1tú a2s1ud a1su 2asug a2s1uj 2asul2y asu2r a2s1u1ra a2s1urn a2s1u2s2z a2s1u2tak asu1ta a2s1u2tas a2s1u2tá a2s1u2tu a2s1ú2s a1sú a2s1ú2t asú1t1a2 a2s1üd a1sü a2s1ü2lÅ‘ a2s1üst a2s1üz as1űz a1sű 2aszab as2z a1s1za a2sz1a2d 2aszak a2s2z1akc asza2k1e a2sz1akt asza2k1ü2 a2sz1alk 1asza1ló a2sz1asp asz1ass asza2t1a2 asza2t1e a2szath a2sza1ti 2aszav a2sz1á2g. a1s1zá asz1á2ga asz1á2gá asz1ágb asz1ágg asz1á2gi asz1ágk asz1á2go asz1ágr asz1ágt a2szálc a2szálm 2aszám aszá2ra1da aszá1ra a2száram asz1ár1nyé as2zárn2y a2szárp a2szá1ta a2s2záth a2sz1átl a2sz1á2to a2s2z1áts 2aszed a1s1ze 2aszeg as2ze2gé2s2z1 asze1gé a2sz1eh 2aszek 2aszel asz1e2lem asze1le asz1elj 2aszemc 2asze1me 2asze1mé 2a3szem1p2 a2sze1mu 2as2ze1mü 2asze1mű 2aszen a2sz1eng a2sz1e2pi 2asze2r. 2asze1re a2sz1e2rej 2asze1ré 2aszer1k2 2aszern a2sz1e1ro a2s2ze2rÅ‘ 2aszerr 2a3szer1s 2aszert 2a3szerv 2a3szerz asze2s a2sz1e1se asz1est 2aszez 2aszék a1s1zé aszé2k1el aszé1ke asz1é2let aszé1le asz1élés as2zé1lé aszé2n1ég aszé1né aszén1n a2sz1é2re a2sz1é1ré 2aszét asz2fér asz1fé a2sz1ill a1s1zi 2aszin a2sz1inf a2sz1inff a2sz1ing 2aszir a2sz1ism asz1ist2 2asziv a2sz1iz 2a1s1zí a2sz1ír a2sz1í2vi asz2karc asz1ka asz2k1áp asz1ká asz2kell asz1ke asz2kes 2aszob a1s1zo 2aszoc 2a3szof 2a3szoff aszon1n aszo2n1o a2sz1orr a2sz1ors a2s2z1os2z 1aszó1a a1s1zó asz1ó2dá 2aszót 2aszök a1s1zö asz1ölt a2sz1ön 2aször asz1öss a2szöt 2aszöv 2a1s1zÅ‘ aszÅ‘lÅ‘1é2 a3szÅ‘1lÅ‘ as1z3su asz2s asz2tab asz1ta 1asztalul aszta1lu asz2t1a1po asz2tác asz1tá asz2táll asz2t1emb asz1te asz2té1ne asz1té asz2t1és asz2t1ing asz1ti asz2t1olt asz1to asz2t1orr asz2tors2 as2z2t1os2z asz2töv asz1tö asz2tÅ‘s asz1tÅ‘ asz2t1ül asz1tü asztvíz1 aszt1ví 2aszur a1s1zu 1a2szús a1s1zú a2sz1útr 2a1s1zü aszü2g a2sz1ügg a2sz1ü2z 2a1s1zű asz2vit asz1vi asz1z 2atab a1ta at1ab1la a2t1a2cé ata2dat ata1da a2t1a2dó 2atag a2t1a1gya atag2y a2taján ata1já 2atak a2t1aka1ra ata1ka ata2ká2r ata1ká ata2ke2l ata1ke ata2k1é2pes at2aké1pe ata1ké ata2k1ö2v ata1kö a2t1ak1tu a2t1a2la2g1 ata1la ata2la2p. ata2lapb ata2lapj ata2la1po ata2lap1p ata2lapr ata2la1pú ata2lat a2t1aleg ata1le at2a2lik ata1li a2t1al1le a2t1almás atal1má 2atan a2t1a2nal ata1na ata2nó a2t1a2nyag atan2y ata1nya at1a2nyás ata1nyá 2atap a2t1app ata2puk ata1pu a2ta2pun 2atar a2t1a2rab ata1ra ata2ran a2t1a2rén ata1ré ata1st2 atau2r ata1u a2t1a2ut a2t1a1zo 2atáb a1tá a2t1ábr 2atág a2t1á2g. a2t1á2ga a2t1ágr 2atáj 2atál a2t1ál1lá a2t1ál1ló a2t1álm 2atám atá2nal atá1na a2t1á2pol atá1po 2atár atá2ra1da atá1ra atá2ra1do atá2ramh a2táramk atá2ramn atá2r1az atá2rét atá1ré atá2ris atá1ri a2t1árkár atár1k2 atár1ká atársá2g atár1sá atár2s1á1gá a2t1ártás atár1tá 2atás atá2s1á2g atá1sá atá2s2z atá2tal atá1ta a1tá1tá2 atá2tár a2t1átb a2t1átf a2t1átff a2t1áth a2t1á1ti a2t1átj a2t1átk a2t1átl a2t1átr a2t1áts a2t1átt a2t1á1tu a2t1átv 2atáv atá2ví2 at1bl at1br at1cl at1dr a2t1e2gé a1te ate2jel ate1je ateké2r ate1ké ate2ké1re ate2kó a2t1e2l1a a2t1elb at1elc a2t1eld at1e2led ate1le at1eleg at1e2lem at1e2l1en atele1s ateles2z2 a2t1elf a2t1elff a2t1elh at1el1já at1el1kö at1el1kü a2t1elm at1eln a2t1e2lo at1e2lÅ‘n ate1lÅ‘ ate2lÅ‘t a2t1elr a2t1els2 at1el1ta at1el1tá at1el1té at1el1tü a2t1e1lu a2t1e1lű a2t1elv a2t1elz a2t1emb at1e2mel ate1me a2t1e1mé a2t1eml a2t1e1mó a2t1enc a2t1e1ne at1e1pi at1e1po a2t1er1d2 at1e2rec ate1re ate2r1ék ate1ré a2t1e2rÅ‘ a2t1e2se a2t1e1sé a2tesk ates2t1á ates2tÅ‘2 at1eszm ates2z at1e1s1zű ate2tol ate1to a2t1e2z 2atég a1té a2té2get até1ge a2t1é1he até2k1a2l até1ka até2ke2 a2t1ék2e. aték1el 2atél a2t1é2le a2t1é2lé a2t1élm a2t1élv 2atém até2ne a2t1éps 2atér até2rá a2t1érdek atér1de a2t1érin até1ri a2t1érl a2t1érm a2t1értel atér1te a2t1érvek atér1ve a2t1érz at1é1s1za atés2z at1észl 2atét até2tét até1té a2t1étv at1f8j at1f8l at1fl at1f2r at1gl at1gr at2h2a. at1ha at2h2é. at1hé a1t2h2i. at1hi at2hón at1hó a1t2hus at1hu 2at2i. a1ti a2t1iat ati1a a2t1i2de a2t1i1do ati2e a2t1i1ge a2t1i2gé a2t1ig2y a2till at1il1le at1i2má at2i3má1dá at1i2mád at1i2mi a2t1imp 2atin a2t1in2g. a2t1in1ga a2t1ingb a2t1in1ge ati1nó2 ati2n1ór at1in1té at1in1to 2atip a2t1i2pa 2atir a2t1i1rá a2t1i1ro a2t1isk a2t1ism atis2s a2t1i2s1zo atis2z 2atit a2t1i2ta a2t1i1zé a2t1izg a2tiz1mo a2t1i2zo a2t1íg a1tí a2t1íj 2atíp 2atír a2t1í2t at1í2vek atí1ve atí2v1e2l at1í2vet atí2vét atí1vé a2t1íz 2at1ki 2at1kl 2at1ko 2at1kö 2at1ku at1kv ato1g a1to at1ojt ato1ka2 a2t1o2k1al ato2koss ato1ko a2t1o2koz a2t1ok1ta a2t1o2ku at1ol1dá a2t1ol1dó ato2m1á 1a2tom1be atom1b ato2m1e 1a2tomj a2toml 1a2tomok ato1mo 1a2tomos 1a2tom1s 1a2to1mú a2t1opc a2t1o2pe a2t1op1t2 2ator ato2rál ato1rá a2t1ord2 a2t1or1g2 ato2rú a2t1orv a2t1or1zá atos3s ato1sz2f atos2z ato1sz2ff a2t1oszl ató1p2 a1tó a2t1ó2rák ató1rá ató2rán ató2ri1á ató1ri at2ó1s1tá ató1s2z ató2s3zár at2ó1s1zá ató2s3ze1né at2ószen ató1s1ze ató1tr a2t1ö2ko a1tö atö2l a2t1ö1le a2t1ö1lé a2t1ö1lÅ‘ at1ö2ná atön2k1a at1ö2röm atö1rö a2t1ös a2t1öt atö2v2i. atö1vi a2t1ö2z atÅ‘2ra a1tÅ‘ a2t1Å‘rl a2t1Å‘2s atpen1 at1pe at1pl at1pr at1ps atrac1c at1ra a1t2rad 2atraj 2atrak at2ram1b a1trap a1tra1u a1t2rav 2at1ré a1t2réf a1t2réff at2rén atré2szel atrés2z atré1s1ze a1t2ril at1ri at2roj at1ro a1t2róg at1ró 2atrón a1t2rü at2sán at1sá at1sh at1sk at1sl at1sp at1st at1s2v at3szá2m1é ats2z at1s1zá atszáraz1 atszá1ra at2t1a1dó attad2 at1ta 1attakok atta1ko 1atta1sé at2t1e2g at1te at2tez att1ing at1ti at1tó2 at2t1ór at1t2re 2atud a1tu a2t1udv a2t1ug 2atul a2t1und a2tu1ni 2atur at1u1tó a2t1új a1tú 2atúl at1ú2s2z a2t1üg a1tü 2atük at1ü2lé at1ült 2atün a2t1üst a2t1ü2v 2atüz at1üzem atü1ze at1űr2i. a1tű atű1ri at1űrl 2atűz a1u au2b1in au1bi au2bor au1bo a2u1dá a2u1dí a2u1do au2ga a2ug2h au2go 1a2ukc a2u1le a2ul2i. au1li a2ulk aul2l aul2t1a aul2ti a2uma1e au1ma a2umaf a2umaff a2umak a2umam a2umar a2umav a2umáb au1má a2umád a2umá1é a2umáh a2umá1i a2umám a2umán a2umár a2umáv au2me a2u1nu au1ph au1pr au2rad au1ra au2r1ikr au1ri au2rö a2u2s. a2u1se au2s1z1e aus2z a2u2t. au2tad au1ta au2tal au2tam au2tas au2tat 2au1tá au2tál a2u1ti 1a2uton au1to a2u1tó 1autób 1autó1é 1autóh 1autó1i 1autóm 1autón 1autór 1autós 1autót 1autóv a2utr a2uts a2utt au2tun au1tu a2u1ze au2zí au2z2s a2u1zú au2z1ü au1ÅŸe a1ú aú2jí aú2jo aú2ré aú2r1i aú2s2z aú2ti aú2to a1ü aü2dí aü2dü aü2ge aü2g2y aü2le aü2lé aü2li aü2lö aü2lÅ‘ aü2lü aü2nÅ‘ aü2re aü2rí aü2rö aü2rü aü2s2z aü2te aü2té aü2ti aü2ve aü2vö aü2ze2m. aü1ze aü2zemb aü2zemen aüze1me aü2zemet aü2ze1mé aü2zemh aü2zemm aü2zemn aü2zemr aü2zen aü2zé a1ű aű2ri aű2rö aű2ze aű2zé aű2zi aű2zö aű2zÅ‘ 2avad a1va 2avak a2v1ak1ti avak1t2 a2v1anh 1a2vant a2v1a2nya avan2y a2vanz ava2ra2c ava1ra av2a2r1ag ava2r1e2 ava2rék ava1ré ava2s1alj av2asal ava1sa ava2s1ze avas2z av2a2s1zü 1a2va1tá 1a2va1tó 2avád a1vá avá2na2n avá1na 2avár avá2r1a2l avá1ra avá2ri2a. avá1ri avári1a avá2ria1i a2v1á2ri1á a2v1á1ta2 a2v1átt avá2zal avá1za av1bl a2v2e. a1ve av1e2le av1elv 2aves av1est2 2avet 2avez avi2c1se a1vi avic2s av1ing aví1ze2 a1ví avíz1es av1kr a2v1old a1vo av1ol1tó avo1s a2v1ox a2v1öm a1vö a2v1ös av1Å‘s a1vÅ‘ av1Å‘z av1pr av1sp av1st a2v1ut a1vu av1ü2l a1vü av1ür av1ü2z a2wag a1wa aw2hi awhis1ky2 awhiskyk2 a2x1ab a1xa a2x1ad a2x1ak a2x1al a2x1an a2x1av ax1bl ax1eg a1xe ax1el ax1inf a1xi ax1inff ax1ing ax1int axió2r axi1ó axi2se2 ax1ír a1xí ax1ös a1xö ax1öz ax1pr a2x1ut a1xu ax1új a1xú ax1üz a1xü ax1űr a1xű a1y2e. a1yed a1ye1i a1yek ay1e2l a1yen2 a1yes ayet2 ay1f8l ay1fl a1y2i. ay1il ay1ing a1yit ay1ma2 ay1s2t aza2c2h a1za aza2cik aza1ci azai2ko aza1i azal2t1a aza1p2 aza1s2 az1áll a1zá az1ált azá2nö azá2r1ó2ra a3zárór azá1ró azá2s1e azási2k azá1si azá2si1ko azás3s az2du a2z1e2g a1ze az1e2le az1elj az1elm az1e1lÅ‘ a2z1ex a2z1ég a1zé azé2k1e2 azé2kol azé1ko a2z1ér1té a2z1ing a1zi a2z1i2o a2z1i1rá a2z1irt azma1g az1ma a2z1ob a1zo 2azol azo2nal azo1na azo2n1á azont2 a2z1or a2z1os2z azót2 a1zó azó1tr a1z2rí a1z4sé az2s a2z3si1ke a1z1si a2z3sor a1z1so az3sp a2z3sü az3s2z az1ut a1zu a2z1új a1zú azú2r1é az1üz a1zü 2á. á1a áa2da áa2dá áadás1s áa2do áa2dó áa2du áa2já áa2ka áa2la áa2lu áa2ra áa2s2z áa2ut áa1u áa2va á1á áá2c2s áá2ga áá2g2y áá2ju áá2mu áá2ra áá2ru áá2sá áá2sí áá2so áá2só áá2su áá2zo áá2zu á2b1a1du á1ba á2b1akc á2b1a2la á2b1alk á2b1am1bu á2b1a2n2y ába1p áb1art2 ába3se á2b1á2g á1bá áb1áll á2b1álm á2b1áp á2b1á1rá á2b1árn á2b1á2ru á2b1átj á2b1átl á2b1átm á2b1átv á2b1áz áb2b1a2d áb1ba ábba2l áb2b1a1la áb2b1and áb2b1ár áb1bá áb2ben áb1be áb2b1e2r áb2b1é2l áb1bé áb2bid áb1bi áb2bim áb2b1i2s áb2b1i1ta ább1o2so áb1bo ább1oss áb2bö2r áb1bö áb2b1ül áb1bü áb2bű áb1dr á2b1ed á1be á2b1e2g ábe2l1a ábe2l1á ábe2l1eg ábe1le ábe2l1el ábe2l1e2r ábe2lég ábe1lé ábe2l1in ábe1li á2bel1nö á2b1e2m á2b1e2n áb1e2ro áb1e2rÅ‘ 1á2béc á1bé á2b1é2g áb1é2ke á2b1éks á2b1é2les ábé1le á2b1élt2 á2b1ép á2b1é2r. á2b1é2ri á2b1ér1s á2b1ér1te ábért2 á2b1ér1té áb1fr á2b1i2d á1bi ábi2g áb1i1ga áb1i1gé á2b1ikr áb1il1la á2b1im ábi2na1i ábi1na á2binas á2b1ind á2b1ing á2b1int á2b1is áb1izm áb1izz á2b1ív á1bí áb1kl áb1kr ábla1kr áb1la ábla1p á2b1ol1da á1bo á2b1op ábo2raj ábo1ra ábo2ra2n ábo2rál ábo1rá ábo2ris ábo1ri á2b1os2z á2b1o2v áb1öb á1bö áb1ö2d áb1öl áb1ön áb1ö2r áb1ös áb1öv áb1Å‘r á1bÅ‘ áb1pr 1ábrá1i áb1rá áb2rek áb1re áb1ry áb1sp áb1st áb1s2z2 áb1tr á2b1ujjal á1bu ábuj1ja ábu1s2z2 á2b1ú2r. á1bú áb1üg á1bü áb1ü2l áb1üs áb1üt áb1üv á2c1a2g á1ca ác1ajt áca1k2l ác1akn á2c1a2la ác1alm á2c1a2n2y á2c1ág á1cá á2c1ál ác3c1se ác2c2s ác3c1so ác1e2l1 á1ce áce1le2 ác1en ác1er á2c1ép á1cé á2c1é1re á2c3há ác2h á1c3he á2c3hé ác3hon á1c1ho á2c3hu áci2as á1ci áci1a áci2a1t2 á2c1il ác1inc ác1ing ácin2til ácin1ti áci2ó1sű áci1ó á2c1i2s ác1ív á1cí á2c1or á1co á2c1os2z ác1ór á1có ác1ö2l á1cö á2cs1abl ác2s á1c1sa á2cs1a2g á2cs1ajt á2csa1ka á2cs1akn ács1alap ácsa1la ács1alj ács1alom ácsa1lo ác2s1app ács1atk á2csatom ácsa1to á2cs1á2c á1c1sá á2cs1ál ác3sárg á2cs1ár1k2 á2cs1árn á2csá1ru á2c2s1á2ta 1ácsbelir ács1be ácsbe1li ácsboz1 ács1bo á2csef á1c1se á2c2s1eff á2cs1e2g á2cs1e2l á2cse1ne á2csent á2cser ácse2t á2cs1ev á2cs1é2g á1c1sé ácsé2k ács1é1ki ács1ékk ács1ékn á2csél á2csép ács1é2te ácsi2g á1c1si á2c2s1i1ga á2cs1il1le á2csi1mi ács1int ácsi2p á2cs1i1pa ács1isk á1c1sí2 ács1ír á2c2sok1ta á1c1so 1á2csolat ácso1la 1á2csomk ács1orr á2c2sos2z á2cs1ov ác3s2ó. á1c1só ács1ó2r ác3sót ác3sóv ács1ö2k á1c1sö á2cs1ö2l á2cs1ös á2csöt ács1Å‘2s á1c1sÅ‘ ács1s á2csuj á1c1su á2csut á2cs1úr á1c1sú ács1ü2l á1c1sü á2cs1ü2t á1csy ács3zen ács2z ác1s1ze á2c1ut á1cu ác1úr á1cú ác1ül á1cü ác1ür ád1abl á1da á2d1a2do á2d1akc ád1a2lap áda1la á2d1alb á2d1alj á2d1alk ád1a2nya ádan2y ád1a2nyá áda1p á2d1a2pá ád1arc á2d1at2y á2d1ág á1dá á2d1ál ád1á2s2z ád1átl ád1dr ád5dz2s ád2d2z ád1e2c á1de á2d1e2g á2d1ej á2d1e2l áde1le2 ádel1ej ádel1e1me á2d1e2m á2d1ep áde2r1á ád1e2rÅ‘ ád1e2ti ádéd2 á1dé ádé1dr ádé1g2 á2d1é2ge ádé1k1ré ád1é1ne á2d1ér1te á2d1érz ádé1st ádi2c1se á1di ádic2s á2d1i2d á2d1i2ga ád1i2ko ád1ill ád1i1mi á2d1ind á2d1int ádi2ódar ádi1ó ádió1da ádióé2r ádió1é ádi2óé1ra ádi2ói2v ádió1i ádi2ó1ko ádi2ó1k2ra á2d1i2p ád1ist ád1ív á1dí ád1kl ád1kr ádo2ga á1do ádo2gá ádo2ge ádo2rak ádo1ra á2d1os2z ádós2 á1dó ádö2b á1dö á2d1ös ád1öv ád1ö2z ád1Å‘2r á1dÅ‘ ád1pr ád1ps á1d2rót ád1ró ád1st ád1tr ád1udv á1du á2d1ú2s á1dú á2d1üg á1dü ád1ü2lé á2d1üz á1d3za ád2z á2d3zá á2d3ze á1d3zú á1e áe2c2s áe2d2z áe2ge áe2gé áe2g2y áe2le áe2lÅ‘ áe2me áe2re áe2rÅ‘ áe2se áe2sé áe2si áe2sÅ‘ áe2sü áe2te áe2ve áe2vé áe2vÅ‘ á1é áé2de áé2ge áé2gé áé2gÅ‘ áé2he áé2ke áé2le áé2ne áé2pí áé2pü áé2re áé2ré áé2ri áé2rÅ‘ áé2rü áé2te á2f1a2gya á1fa áfag2y á2f1alg á2fáb á1fá áf1ábr á2f1ág 1á2fák á2f1áp 1á2fás á2fát áf1dr áf1elm á1fe á2f1e2m á2f1e2t áf1é2ne á1fé áfi2ad áf8i áfi1a áï¬2ad Ã¡ï¬ Ã¡ï¬1a áfi2am áï¬2am á2f1i2d á2ï¬2d á2f1im á2ï¬m á2f1in2g. á2ï¬n2g. á2f1or1dá á1fo á2f1os2z áf2rec áf1re á1f2rö áfus3s á1fu á2f1ün á1fü á2g1abl á1ga á2g1abr ága2c ág1a1cé 1ágacs1ka ágac2s á2gad ág1a2dá 1ágadd ág1a2dó á2g1a2j á2ga1ka ág1a2kar ág1a2kas 1á2gakb 1á2gakh 1á2ga1ki 1á2gakk 1á2gakn 1á2gakr á2gakt á2g1a2la á2g1alj á2g1all ág1alt 1á2gam ága2n ág1a1na á2g1ang 1á2gank ág1ant á2g1an2y á2g1a2p á2g1a2r ág1asp á2g1as2z ága2tol ága1to á2g1a1u 1á2ga1za á2ga2zon ága1zo á2g1á2g á1gá á2g1áld ág1álm ág1á2mu ágá2nyal ágán2y ágá1nya á2g1áp á2g1á2rad ágá1ra á2g1árb á2g1á2ré á2g1árh á2g1á2ri1a ágá1ri ágá2rokb ágá1ro á2g1árv á2g1á2só ágás3s ágá2s2z á2g1á1t1a2 á2g1á2t1á2 á2g1á1té á2g1átf á2g1átff á2g1áth á2g1á1ti á2g1átl á2g1átm á2g1átn ágá2tokk ágá1to á2g1átr á2g1áts á2g1átt á2g1á2tü2 á2g1átv ág1bl ág1br ág1d2r á2g1e2c á1ge á2g1e2d ág1ef á2g1eff á2g1e2g á2g1e2l á2g1e2m á2ge2n ág1enc ág1e1ne á2g1e2p áge2ra áge2rá áge2r1el áge1re á2g1e2s á2g1e2t á2g1e2v á2g1ex á2g1é2g á1gé á2g1é2he á2g1éj á2g1é2k á2g1é2l á2g1é2ne á2g1é2pí ág1é2pü á2g1é2r. á2g1é2rá á2g1é2ré á2g1é1ri á2g1érm á2g1é2rÅ‘ á2g1ér1te á2g1ér1té á2g1érv á2g1és á2g1é1te á2g1é1ve á2g1é1vé ág1f8l ág1fl ág1fr ág1g2l ág1gr ág5gyar ág2g2y ág1gya ág5gye ág5gyú ághá2nyi ág1há ághán2y ági2al á1gi ági1a ági2a1s2z2 ági2d á2g1i1de á2g1if á2g1iff ági2g á2g1i1ga á2g1igén ági2gé á2g1ill ág1i1ma á2g1i2mi á2g1i2n2a. ági1na á2g1inf á2g1inff á2g1ing á2g1ins á2g1int á2g1i1ri á2g1i1ro á2g1ist á2g1is2z á2g1i2ta á2g1iz á2g1íg á1gí á2g1ín á2g1ír á2gí1té á2g1íz ágká2rok ág1ká ágká1ro ág1kl ág1kr ág1kv á2g1o1á á1go á2g1okl á2g1o2li ág1ol1tó á2g1op á2g1or á2g1os1ko ágos3s2 á2g1oszl ágos2z ágó1dr á1gó á2g1ó2rá á2g1ö2k á1gö á2g1ö2l ágö2r ág1ö1rö á2g1örv á2g1ös á2g1öt á2g1öv á2g1ö2z ág1Å‘2r á1gÅ‘ ág1Å‘2s ág1pl ágport2 ág1po ágpor1tr ág1pr ág1ps ág1sh ág1sk ág1sl ág1sp ág1st ágs2z2 ág1tr á2g1ud á1gu á2g1uj águ2n á2g1u1na á2g1und á2g1u2ra á2g1u2rá á2g1u2t á2g1új á1gú á2g1ús á2g1útt ág1üd á1gü ág1ü2g ág1ü2l ág1ün ág1üv ág1üz ág1ű2r á1gű ág1űz ágya1g ág2y á1gya ágy1alj ágy1alk ágy1alm 1á2gyasn á2gyas1sa á2gy1á2l á1gyá á2gy1á2ram ágyá1ra ágyás1s á2gy1e2 á2gyél á1gyé á2gy1é2r. 1ágy1gyű ágyg2y á2gyid á1gyi á2gyi1é á2gyil á2gyivad ágyi1va á2gyob á1gyo á2gyos2z ágy1otth á2gy1ó2s á1gyó ágy1ö2l á1gyö ágy1ös á2gyur á1gyu á2gyúh á1gyú á2gyút á2gy1ü2 áh1aj1k2 á1ha áh1ass 1á2hít á1hí á2h1ors á1ho á1i ái2dom ái1do ái2dÅ‘ ái2ga ái2gé ái2g2y ái2ha ái2je ái2má ái2ram ái1ra ái2rá ái2s2z ái2ta ái2vá ái2vo ái2zé á1í áí2gé áí2rá áí2ve áí2vo á2j1a1dó á1ja á2j1akc á2j1akv á2j1a2la á2j1am1bu á2j1a1na áj1ant á2j1an2y á2j1ar á2j1atl á2j1ax áj1a1zo á2j1ág á1já á2j1ál á2j1áp ájás3s á2j1á1t1a á2j1á2t1á2 á2j1átt áj1bl áj1br áj2c2h á2j1e2c á1je áj1e1gé áj1elm áj1eln áj1e1lÅ‘ áj1elv á2j1em á2j1e2n á2j1es áj1e2t á2j1e2v áj1ex á2j1é2g á1jé á2j1él á2j1ép ájé2r á2j1é1re á2j1é1te áj1f8l áj1fl áj1fr á2j1i2d á1ji á2j1il á2j1im á2j1iz áj1íj á1jí áj1ír áj1ív áj1íz ájk1ell áj1ke áj2k1Å‘2 áj2kü áj2lad áj1la ájl1akt áj2l1an áj2l1as áj2l1at áj2li2k áj1li áj2lob áj1lo áj2nár áj1ná áj2nin áj1ni áj2nü á2j1ob á1jo á2j1op á2j1or á2j1öb á1jö áj1ök áj1öl á2j1ör áj1Å‘r á1jÅ‘ áj1Å‘s áj1pl áj1pr áj1sn áj1sp áj1st2 áj1t2r á2j1ud á1ju áj1ús2z á1jú áj1üg á1jü áj1ül áj1ür áj1ü2t áj1üv áj1üz áj1űr á1jű áj2zab áj1za áj2za2j áj2z3sa ájz2s ák1abr á1ka á2k1a2d á2k1aj á1k1a1ka á2k1a2la1pí áka1la ák1a1le ák1alj ák1alm ák1ant ák1a1ra á2k1a2rá ák1arm ák1arz á2k1ass á2k1atl á2k1a2u á2k1á2c á1ká á2k1á2l ák1á1ta ák1átk ák1bl ák1e1bé á1ke á2k1e2g ák1e2le á2k1elk á2kelle1ne ákel1le á2k1elm á2k1e2lÅ‘ ák1emb ák1e2rÅ‘ á2k1e2vé á2k1e2vo á2k1é2l á1ké á2k1é2ne á2k1érm á2k1ér1te á2k1ér1tÅ‘ á2k1érv á2k1érz ák1éss á2k1é2te á2k1étk á2k1étt á2k1é2ve ák1f8l ák1fl ák1fr á2k1i2d á1ki á2k1if á2k1iff áki2g á2k1i1ga á2k1i1gé ák1ill á2k1i2m ák1ing á2k1int ák1i1ro á2k1i2s áki2t ák1i1ta á2k1i2v ák1ír á1kí ák1k2l ák1k2r ák2lar ák1la á2k1oks á1ko á2k1o2la á2k1old á2k1o2li á2k1oll á2k1o2pe á2k1orv ákos3s á2k1ott ák1ó1ni á1kó ákö2l á1kö á2k1ö1lÅ‘ ák1ö2r ák1Å‘2r á1kÅ‘ ák1pr ák2rák ák1rá á1k2re1á ák1re á1k2ris ák1ri ák1sp ák1sr ák1s2t ák1s2z2 ák1t2r á2k1uj á1ku á2ku1ni áku2r ák1u1ra ák1u1tó ák1új á1kú ákú2t á2k1ú1to ák1üd á1kü á2k1üg ákü2l ák1ün ák1ür ák1ü2t ák1űr á1kű á1k2vat ák1va 2ál2a. á1la ál1abl ál1a1cé á2l1adag ála1da á2l1a2dó ál1a2já ál1ajt ála2kar ála1ka á2l1akn2a. álak1na 2álal ál1alak ála1la á2l1alát ála1lá ál1alg á2l1alk á2l1alm á2l1a1ne á2l1ang á2l1ant á2l1a2nya álan2y á2l1a2nyá1i ála1nyá á2l1a2nyán á2l1a2nyát á2l1a2nyáv á2l1a2pos ála1po ál1a1pó ál1a2ra ál2a2szek álas2z ála1s1ze ál2a2szel ál2a2sz1ék ála1s1zé ála2s1zö ál2a2s1zű ála2tat ála1ta ála2tet ála1te ála2t1é2r. ál2atér ála1té ála2tikr ála1ti ála2tint ál2atin ál1at1lé ála2told ála1to ála2t1ó2 á2l1at1ti á2l1a2t2y ál1aut ála1u á2l1ábr á1lá ál1á2g. ál1á2gi á2l1á2gú ál1áll á2l1á2rak álá1ra ál1árf ál1árff ál1árk á2l1árn á2l1á2ro álá2s3z á2l1átc á2l1átk á2l1átm á2l1á1tú á2l1át1vá ál1á2z2s ál1bl ál1br álca1i2 ál1ca 1áldás ál1dá 1áldoz ál1do ál1d2r á2l1e2c á1le á2l1e2d á2l1ef á2l1eff ál1elk ál1elm ál1e1lo ál1e2lÅ‘ ál1elr ál1e1mu á2l1e2r ál1esem ále1se á2l1e2sÅ‘ á2l1es2z á2l1e2t ál1ez á2l1ég á1lé á2l1é2he álé2kal álé1ka álé2k1an álé2k1e2l álé1ke álé2kü ál1é2le ál1é2lÅ‘ á2l1é2ne á2l1é2r. á2l1érb á2l1érd á2l1érf á2l1érff á2l1érg á2l1érh á2l1é2ri á2l1érm á2l1érr á2l1érs á2l1ér1tá á2l1ér1te á2l1ér1té á2l1érz á2l1é2v. á2l1é2vé ál1f8l ál1fl ál1fr ál1gr 1álha1ja ál1ha áli2as á1li áli1a ál1i2bo áli2d ál1i1de ál1i1dé áli2g á2l1i1ga á2l1i1ge á2l1i1gé á2l1ill ál1im1p2 á2l1ind ál1inf ál1inff á2l1i2onb áli1o á2l1i2ont á2l1i2p ál1i1rá á2l1i1ro áli2s1e áli2s1ék áli1sé áli2sis áli1si ális3s ál1is1te á2l1iz ál1ín á1lí ál1í2r ál1ít ál1í2v álká2rok ál1ká álká1ro ál1k2l ál1k2r ál2l1a2dó ál1la 1állag ál2laj ál2l1a2lak álla1la 1álla1má álla2m1e 1államot álla1mo ál2l1a2pá ál2l1a2r 1álla1ta álla2tas álla2t1e2 áll2a2t1or álla1to álla2t1ö2 1álla1tu ál2l1á2g ál1lá ál2l1á2l ál2l1árr állás1s ál2l1áth ál2l1átm ál2led ál1le ál2l1e2h ál2l1ej áll1é1ké ál1lé ál2l1iz ál1li 1állo1má ál1lo ál2lü 1álmaim ál1ma álma1i 1álmo2k. ál1mo 1álmom 1álmo2t. 1álmuk ál1mu 1álmunkb ál1obj á1lo á2l1o2k2a. álo1ka á2l1o2ka1i 1álokaih 1álokain 1álokair á2l1o2ká 1álokán 1álokát 1álo2ká1u á2l1o2k2i. álo1ki ál1o2kok álo1ko 1ál1o2konk ál1o2kos á2l1ok1ta 1á2l1o2ku á2l1o2l álo1ma2 álo2mad álo2m1al álo2m1an álo2mar álo2mas álo2m1á álo2m1e álo2m1it álo1mi álo2mot álo1mo á2loms álo2m1ú á2l1ont ál1opc á2l1o2pe á2l1or á2l1os2z á2l1ox áló1a2 á1ló áló1á2 áló1ó2 á2ló2ráj áló1rá áló2s1ű2 álót2 ál1öb á1lö á2l1öd á2l1ö2l á2l1ös ál1öz á2l1Å‘r á1lÅ‘ ál1p2l ál1p2r ál1p2s ál1sk ál1sl ál1s2t ál2t1iv ál1ti ál1trad ált1ra ál1t2rak ál1t2ran ál1t2re ál1t1ré á2l1ug á1lu álu2n á2l1u1na á2l1u2r á2l1u2t á2l1uz á2l1új á1lú á2l1úr álú2t ál1útj ál1útk ál1útn á2l1ú1to á2l1útr á2l1útt ál1üg á1lü ál1ün ál1ür ál1üt ál1üv ál1üz ál1űr á1lű ál1űz ály1a1da ál2y á1lya álya1g2 ály1ant ály1a1nya ályan2y álya1p ály1ass á2lyál á1lyá á2ly1e2 á2lyéj á1lyé á2lyé2l á2ly1é2ne á2lyé1re á2lyé1ve á2lyi1de á1lyi á2lyí ály1k2 ály1odv á1lyo á2lyo2l á2ly1op á2ly1ó2 á2ly1ö á2lyÅ‘ ály1s á2lyug á1lyu á2ly1ü2 á2ly1ű2 á2m1abl á1ma á2m1abr ám1a2cé ám1adm ám1agg á2m1ajt á2m1akt ám1a2lap áma1la ám1all ám1alt áma1ó2 á2m1app á2m1arc áma2sz1ál ámas2z áma1s1zá ám2a2szel áma1s1ze áma2szí2v ám2a1s1zí áma2sz1odv áma1s1zo ám2a2s1z1ü2 ám1atl á2m1att á2m1at2y ám1aud áma1u ám1a2zo ámá2c á1má ám1áf ám1áff á2m1ág ám1ál1la ám1ál1lo ámán1n ámán1tr á2m1á2rak ámá1ra á2m1á2ram á2m1á2ras á2m1á2rá á2m1árb á2m1á2ri á2m1árn á2m1á2ro á2m1árr á2m1á2ru ám1ásv á2m1átb ám1á2t1e2 á2m1á1ti á2m1átm ám1á2zó ám1bl ám1dr á2m1e2b á1me á2m1ej á2m1e1la ám1e1lá ám1e2lem áme1le ám1e1lé á2m1elh á2m1e2l1í2 á2m1elj á2m1elk á2m1elm ám1e1lo á2m1e2lÅ‘ ám1els ám1elt ám1e1lü ám1elv á2m1e2m á2m1erd ám1e2rek áme1re á2m1erk á2m1e2ro áme2rÅ‘k áme1rÅ‘ áme2rÅ‘t áme2rÅ‘v ám1e2se ám1ess ám1es2z áme2t á2m1e1ti á2m1e1tű á2m1ev á2m1ex á2m1ez ám1é1ke á1mé á2m1é2le á2m1ép á2m1érc á2m1érd á2m1értel ámér1te á2m1étk ám1fr ám1gr ámi2ab á1mi ámi1a ámiak2 ámi2akr ámi2al ámi2am á2mi1de á2m1i1dé á2m1i2dÅ‘ á2m1i1ga á2m1i1gá á2m1i1gé á2m1ill á2mi1má á2mimm á2m1imp á2m1ind á2m1inf á2m1inff á2m1ing á2m1in1te á2m1in1té á2m1inv á2m1i2pa á2m1i1rá á2m1i1ro á2m1irt á2m1isk á2m1ism ám1i2s1zá ámis2z á2m1i2z ám1íg á1mí á2m1íj á2m1ír á2m1í2v ám1íz ám1kl ám1kr ám1kv ámla3t2 ám1la á2m1ob á1mo á2m1of á2m1off á2m1o1ká á2m1okl á2m1okm á2m1ok1ta ámok1t ámo2lyas ámol2y ámo1lya á2m1op ámo2r1á2l ámo1rá ámo2ri2s ámo1ri ámo2r1odv ámo1ro ámo2sas ámo1sa ámos3s á2m1os1to á2m1os2z á2m1ov á2m1ox ám1ó2r á1mó ám1ö2k á1mö ám1öl ám1ön ám1ör ám1ös ám1öt ám1öv ám1ö2z ám1Å‘2r á1mÅ‘ ám1Å‘2s ám1Å‘z ámpa1p2 ám1pa ám1p2l ám1p2r ám1p2s ám1sk ám1sm ám1sn ám1sp ám1s2t2 ám1s2z2 ám1t2r á2m1ud á1mu á2m1ug á2m1uj á2m1und á2mu1ni á2m1u2r á2m1u1tá á2m1új á1mú ám1üd á1mü ám1üg ám1ü2l ám1ür ám1üt ám1üv ám1üz á3műt á1mű ám1ű2z ámva2s1u2 ám1va á2n1abl á1na á2n1a2cé án1ac2h án1a1da ána1e2 án1afr án1a1gya ánag2y án1ajt á2n1a1ká á2n1akc á2n1akr á2n1a2la án1alk á2n1all á2n1a1nó án1a1nya ánan2y á2n1a2o ána2p án1a1pa ána1p1i án1a1ra á2n1arc án1as2s2z ána2t1é2r. án2atér ána1té ána2tol ána1to án2a2tor ána2t1ű á2n1a2u án1a1va á2n1ábr á1ná á2n1ág á2n1áll án1á2r. án1á2rad áná1ra án1á2ri án1árm án1árn án1á1ro án1á1ru án1ásv áná2t1a áná2t1á á2n1á2z án1bl án1br án2cac án1ca án2c1ad án2caj án2cal án2c1a2n án2car án2c1as án2cat án2c1a2u án2c1ál án1cá án2c1á2ro án2cás án2c1ed án1ce án2c1e2g ánce2l ánc1e1le án2c1elt án2c1er án2c1e2s án2c1et án2cez ánc1é1he án1cé ánc1é2ne án2c1é2r. án2c3h án2c1ill án1ci án2cim án2c1ir án2c1i2s án2c1ó2 án2c1ö2 án2cÅ‘ án2cs1an ánc2s án1c1sa ánc3sás án1c1sá án2c3seb án1c1se áncs1es ánc3s1po ánc3s1za áncs2z án2cü án2c2z án1dy áne2d á1ne án1e1dé á2n1ef á2n1eff á2n1e2g á2n1e2l án1emb án1e2mi án1eml án1e2mu á2n1en á2n1e2p án1es á2n1e2t á2n1ex án1ez á2n1é2d á1né á2n1é2g á2n1éj á2n1é2k. á2n1ékn án1éks á2n1é2l á2n1é2ne á2n1é2pí án1é1pü á2n1é2r. á2n1érc á2n1é1ré á2n1érl án1é1te á2né2vad áné1va2 á2n1é1ve á2n1é2vé án1f2r án2gab án1ga án2g1a2r án2g1á1ra án1gá ángás1s án2g1át án2ged án1ge án2g1el ánge2s án2g1é2r. án1gé án2g1é2s áng3g án2g1it án1gi án2g1iv án2gí án2g1os2z án1go án2göt án1gö án2gÅ‘r án1gÅ‘ án2g1us án1gu án2gü 1áng2y. áng2y án2gyas án1gya á2n1i2d á1ni á2n1if á2n1iff á2n1i2ga án1i1gé áni2k1a áni2k1á áni2ke án1ill á2n1im á2n1ind á2n1i2p á2n1irr án1irt án1isk án1ism á2n1i2s2z áni2tá áni2t1e2 áni2t1í áni2tol áni1to áni2t1or án1i1zo án1íg á1ní án1ív án1íz án2kaj án1ka ánk1a1ro án2kern án1ke án1k2li án1k2lo án1k1lu án1k2rá án3nye án2n2y án3nyí án3nyo án3nyu á2n1o2b á1no á2n1okir áno1ki á2n1ok1ta á2n1o2ku án1old án1o1li á3nom áno2n1i2m áno1ni á2n1o2r á2n1oszl ános2z án1ott á2n1ox án1ó1ri á1nó án1ök á1nö á2n1öl án1öm á2n1ön á2n1ör á2n1ös á2n1öt án1ö1vö á2n1Å‘r á1nÅ‘ án1Å‘2s á2n1Å‘2z án1pl án1pr án2ses án1se án2s1ér án1sé án2sis án1si án2si2z án1s2pe án1s2pi ánst2 án1str áns1üld án1sü án1szl áns2z ánt1a1cé án1ta ánt1a2n2y án2taz án2t1á2g án1tá ántá2p án2t1árb án2t1á1ri án2t1ed án1te ánt1e1ké ánt1elh án2tez ánt1é1ke án1té án2tér1te án2tid án1ti án2t1i1pa ánt1ist án2t1iz án2t1ív án1tí án2tök án1tö án2t1ös án1t2rak ánt1ra án1tran án2t1ü2l án1tü á2n1ud á1nu á2n1ug á2n1uj á2n1u2r á2n1u2t án1úr á1nú ánú2t á2n1útj á2n1ú1to á2n1útt án1ü2g á1nü án1ü2l án1ü2t án1ü2v án1ü2z án1űz á1nű ány1a2dat án2y á1nya ánya1da á2ny1a2dás ánya1dá á2ny1a2d2ó. ánya1dó á2ny1a2dób á2ny1a2dók á2ny1a2dón á2ny1a2dót á2ny1a2dóv ány1agg á2ny1akc ány1alap ánya1la ány1alk ány1all á1ny1a1nya án2yan2y ány1a1nyá ány1a1pá ány1a1ra ány1a1rá ány1art á2ny1as2s2z á2ny1aszt ányas2z á2ny1á2l á1nyá á2ny1á2ras ányá1ra á2ny1á2rá á2ny1árb á2ny1árc á2ny1árf á2ny1árff á2ny1árh á2ny1árk á2ny1árn á2ny1á2ro á2ny1árr á2ny1árs á2ny1árt á2ny1á2ru á2ny1á2rú2 á2ny1átl á2ny1á2z ány1ed á1nye á2ny1e2g ánye2gyez1 ányeg2y ánye1gye ány1el ánye2le á2ny1e2m ány1en á2ny1e1p ány1e1sÅ‘ ány1et ány1e2v á2ny1éd á1nyé á2ny1ég á2nyé1he á2ny1é2j á2ny1é2k á2ny1él á2ny1é2ne á2ny1ér2c. ány1ér1re á2ny1ér1te á2ny1ér1té ányé2r1ü2 ány1ér1vé á2ny1és á2nyé1te á2nyétk á2ny1étt á2nyé1ve ányfé2l1é2v ány1fé ányfé1lé á2ny1id á1nyi á2nyi1gé á2nyi1ke á2ny1ikr á2nyirat ányi1ra á2nyi1ro á2nyisk á2ny1is2z á2nyi1ta ány1í2ró á1nyí á2ny1oml á1nyo á2ny1ont2 á2ny1o2r á2nyos2z ány1ök á1nyö ány1ö2r á2ny1ös ány1öz á2ny1Å‘2 ány1tr á2nyug á1nyu á2ny1ur á2ny1ut á2nyú1to á1nyú á2ny1ü2 á2ny1ű2 án2zál án1zá á1o áo2c2s áo2ká áo2ko áo2mo áo2pe áo2so áo2sza2n áos2z áo1s1za áo2s1z1e áo2szis áo1s1zi áo2sziv áo2s1zú á1ó áó2ha áó2va á1ö áö2le áö2mö áö2re áö2rö á1Å‘ áő2s2z á2p1a2dot á1pa ápa1do ápa1tr ápa3u2 á2p1ág á1pá áp1áll áp1á2t1a2 áp1dr áp1eg á1pe áp1e2l áp1e2m ápe2n á2p1e2s áp1e2t á2p1ég á1pé áp1é2te ápi2ac á1pi ápi1a ápi2av á2p1im á2p1inj áp1int ápi2t á2p1i1ta á2p1ín á1pí á2poll á1po ápo2r1e2 áp1Å‘r á1pÅ‘ áp2ro áp1t2r á2p1ug á1pu á2p1u2t á2p1úr á1pú áp1üg á1pü áp1üz á2r1abl á1ra á2r1abr á2r1abs ár1a2dag ára1da á2rada1ta á2rada1tá á2radatb 1á2rada1té á2radatn á2rada1to 1á2radatr á2radat1t2 ár1a2gá á2r1ajk á2r1a2kad ára1ka á2r1a2kas á2r1akc á2r1akn2a. árak1na á2raknát árak1ná á2r1ak2t. ár1ak1ti ár1ak1tí ár1a2lá á2r1al2j. á2r1alj2a. áral1ja á2raljak á2r1al1já á2r1alk ár1all á2r1alm ár1alt á2r1alv 1á2ram2a. ára1ma 1á2rama1i 1á2ra1má ára2mál ára2m1el ára1me ára2m1ér1té ára1mé 1á2ramf 1á2ramff 1á2ra1mi ára2m1in 1á2ram1kö 1á2ramok ára1mo 1á2ramol 1á2ramot 1á2ram1s2 1á2ra1mu 1á2ra1mú ár1a1na ár1ang ár1a2no á2r1ant ár1a2pá ár1a2pó ár1aps á2r1a2rá á2r1arc ár1a2ri á2r1asp ára2taj ára1ta ára2tal ára2tav ár2a2tál ára1tá ára2t1inf ár2atin ára1ti ára2t1inff á2r1at1lé ára2t1ü2 á2r1at2y á2r1ábr á1rá árá2c árá2g ár1á1ga ár1ágr ár1ág2y ár1áld ár1á2lo á2r1á2p ár1á2r. á2r1á2rak árá1ra á2r1á2rá á2r1árb á2r1árf á2r1árff á2r1á2ri á2r1árk á2r1á2ro á2r1árr á2r1árt á2r1á2ru á2r1á1rú ár1árv á2r1á2sás árá1sá árá2s1zó árás2z á2r1á2ta árá2t1a2d á2r1á1tá ár1átb á2r1átc á2r1átd ár1á2t1e2 á2r1á1té á2r1átf á2r1átff á2r1áth á2r1á2ti á2r1átj á2r1átk á2r1átm á2r1á2tö á2r1átr á2r1áts á2r1átt á2r1á1tú2 á2r1átv ár1bl 1árboc ár1bo ár1br ár2d1ál ár1dá árd1ell ár1de árd1e1me ár2d1é2n ár1dé ár2d1Å‘r ár1dÅ‘ ár1d1rá ár2dud ár1du áre2á á1re ár1e2d á2r1e2g ár1ej á2r1e2l árelÅ‘i3r áre1lÅ‘ árelÅ‘1i áre2ma áre2mél áre1mé áre2n ár1e1ne ár1eng á2r1e2r ár1e2sé ár1e2sÅ‘ ár1e1vé á2r1ex ár1ébr á1ré ár1é1de á2r1é2g ár1é2j. ár1é2je ár1éjs á2r1é2ke á2r1é2ké á2r1éks á2r1é2l á2r1é2ne á2r1ép á2r1é1ré á2r1é2ri ár1éss ár1és2z á2rétk á2r1étr á2r1étt á2r1étv á2r1é2v. áré2vek áré1ve á2r1évk á2r1évr ár1f8l ár1fl ár1f2r árgás1s ár1gá ár1gl ár1g2r ár2gyárv árg2y ár1gyá ár2gyir ár1gyi ár2gyol ár1gyo ár2gyó á2r1i2de á1ri á2r1i2dé á3r2i3dÅ‘tl á2r1i2dÅ‘ ár1i2dÅ‘t ár1if8j ári2g á2r1i1ga á2r1i1gá á2r1i1ge á2r1ill á2r1i2má ár1imb á2r1i2mi á2rinas ári1na á2r1inc á2r1ind á2r1inf á2r1inff á2r1ing ár1in3n á2r1int á2r1inv á2ri1o á2r1i2pa1ro ári1pa ári2s1e ár1is1ko ár1is1te ár1i2s1za áris2z á2r1i2ta ár1i2zo á2r1ír á1rí ár1ív á2r1í2z árka1k2 ár1ka 1árká1do ár1ká ár1k2l 1árkok ár1ko ár1k1ré ár1k2v árnás3s ár1ná árnya2n árn2y ár1nya ár2n2y1an2y árnye2l ár1nye ár2ny1e1le ár2nye1lÅ‘ ár2nyem ár2nyes ár2nyok ár1nyo ár2ny1ol ár2nyos ár2nyö ár2nyü ár1odv á1ro á2ro2ká áro2k1e2 á2rok1ha á2rokm áro2kol áro1ko á2r1o2koz á2rok1re 1á2rok1s2 á2rok1ta árok1t2 á2r1ol1da áro1ma2 áro2maj áro2mak áro2m1al áro2m1as áro2már áro1má áro2m1ok áro1mo áro2m1os ár1opt á2r1o2r áro2sas áro1sa áro2sál áro1sá áros3s á2r1ostr á2r1ost2y á2r1otth á2r1o2v áróé2r á1ró áró1é á2r1ó2nét áró1né á2r1ó2név áró1p2 á2r1ó2rak áró1ra áró2rák áró1rá á2r1ó1ri áró1s1ká áró1s2p ár1ö2b á1rö ár1öc ár1ök á2r1ö2l á2r1ön ár1ör á2r1ös á2r1öv á2r1ö2z ár1Å‘2r á1rÅ‘ ár1Å‘2s 1árp2a. ár1pa ár1pl ár1p2r ár1p2s ár2s1a1la ár1sa árs1as2z ár2s1ál ár1sá ár2sed ár1se ár2s1e2l ár2sem ár2s1en ár2ses ár2s1é2g ár1sé ár2sip ár1si ár2si1rá árs1okt ár1so ár2s1ol ár2sóv ár1só ár2s1ön ár1sö árs3s ár1s2tab árs1ta ár2su2t ár1su ársza2ké árs2z ár1s1za ár2s3ze1ne ár1s1ze ár2ta1do ár1ta ár2t1aj 1árta1lo árta2n1á2s árta1ná árt1a2ris árta1ri árta3u2 árt1áll ár1tá ár2t1árn ár2t1á2ru ár2t1e2g ár1te árt1elh árt1e1li árt1ell árt1eln ár2t1e1lÅ‘ árt1emb ár2t1er1k2 árte2s árt1e1se árt1esth árt1e1ti árt1é1le ár1té ár2t1érd ár2t1ér1te ár2tid ár1ti ár2tif ár2tiff ár2t1ins ár2t1int árt1izg ár2tít ár1tí ár2t1ok1ta ár1to ár2top ár2t1os2z árt1otth ár2t1ön ár1tö ár2t1ös ár2t1u1ra ár1tu árt1u2s2z ár2t1ut 1á2r2u. á1ru 1á2ru1a áru1á2 1á2ru1b2 1á2ruc á2rud 1áru1da 1áru1dá 1á2ru1e 1á2ru1é 1á2ruf 1á2ruff 1árug2y 1á2ru1i á2ruj 1áru1já 1á2ru1ke 1á2rum 1á2ru2n. 1á2ru1na 1á2ru1ná á2r1und á2ru1ni 1á2ru1o 1á2ru1p2 á2rur 1árur2a. áru1ra ár1u1rá 1á2rus árus3s2 á2rut 1áru2t. áru2tal áru1ta áru2tas 1áru1te áru1tr áru2tun áru1tu 1á2ru1ü 1á2ruv ár1u2z 1á2rú1é á1rú 1á2rúk ár1ú1ré ár1úrf ár1úrff ár1ús2z á2r1ú1ta á2r1útb á2r1ú1té á2r1úth á2r1ú2ti á2r1útj ár1útl á2r1útn á2r1ú2to2 á2r1útr á2r1úts á2r1útt ár1ü2g á1rü ár1ü2l ár1ün ár1ür ár1ü2s ár1üt ár1ü2v ár1üz ár1űr á1rű ár1ű2z 1árvác ár1vá ása2b á1sa á2s1abl á2s1a1bo ás1a2dat ása1da á2s1a2dá ás1a2do á2s1a2dó á2s1a2já ás1aj1tó á2s1a2kar ása1ka á2s1akc á2s1akv ás1a2la ás1alg ás1a2li ás1alj ás1alk ás1all á2s1alm á2s1alt á2s1amb ása2n á2s1a1na á2s1a1nó á2s1ant á2s1an2y ás1a2pá á2s1app á2s1a1pu ás1a2ra ás1a2rán ása1rá á2s1arc á2s1a1ré á2s1a2ri ás1art á2s1arz ás1asp á2sass 1á2sa1tá á2s1atl á2sa1to á2s1at2y á2s1a2u á2s1a1zo á2sá1bé á1sá á2s1ábr ásá2ga1i ásá1ga á2s1ágb á2s1á2gi2g ásá1gi á2s1ágk ás1ágn á2s1á2gú á2s1ál á2s1á2p á2s1á2ras ásá1ra á2sá2rét ásá1ré ásá1ró2 ásá2rón 1á2sásb 1á2sá1si 1ásásk ás1ásv á2s1á2ta á2s1á1tá á2s1á1té á2s1áth á2s1á1ti á2s1átj á2s1átk á2s1átl á2s1átr á2s1áts á2s1átt á2s1átv á2s1á2z ás1bl ás1br áscsa2p1á2 ásc2s ás1c1sa ás1d2r ás1e2b á1se á2s1e2d á2s1ef á2s1eff ás1e2g2y á2s1e2l á2s1e2m á2s1e2n ás1e1pi ás1er1k á2s1e2rÅ‘ á2s1e2s á2s1e2t ás1e2v ás1ex ás1ez á2s1é2g á1sé á2s1é1he á2s1éj á2s1é2k á2s1é2l á2s1é2ne á2s1ép á2s1é2r. á2s1érd á2s1é2re á2s1é2ré á2s1é2ri á2s1érl á2s1érs á2s1ér1te á2s1ér1té á2s1ér1tÅ‘ á2s1érv á2s1é2s á2s1é2te á2s1étk á2s1étt á2s1é2ve ás1f8l ás1fl ás1fr ás1gl ás1gr á2s1i2d á1si á2s1if á2s1iff ási2g á2s1i1ga á2s1i1ge ási2k1e á2s1ill á2s1i1má á2s1imp á2s1ind á2s1inf á2s1inff á2s1ing á2s1i1ni á2s1ins á2s1int á2s1inv á2s1i2p á2s1i2rat ási1ra á2s1i2rá á2s1i1ro á2s1irt á2s1isk á2s1ism ás1ist2 ás1i2s2z ás1i1ta á2s1iz ás1íg á1sí á2s1íj á2s1íns ásí2r ás1í1rá ás1í1ró á2s1í2v á2s1í2z ás1kl ás1k2r ás1kv 1ás1nu á2s1ob á1so áso1da2 áso2d1al áso2d1an áso2d1as2 áso2da1u áso2d1ál áso1dá á2s1okl á2s1okm á2s1ok1ta á2s1ol1dó ás1o1li á2s1ont á2s1op ás1o2rá á2s1org á2so1ri á2s1ork ás1orr á2s1ors á2s1orv á2s1os2z á2s1o2v 1á2sób á1só 1á2só1é 1á2sóg 1á2só1i 1á2sój 1á2sók 1á2són ásó1p2 á2sór ás1ó2rá ás1ó1ri 1ásó1ró á2sós ás1ó2sá 1á2sót á2sóv á2s1ö2k á1sö ás1ö2l ás1ön á2s1ö2r á2s1ös ás1ö2v á2s1ö2z ás1Å‘2r á1sÅ‘ ás1Å‘2s á1spic ás1pi ás1p2l á1s2pór ás1pó ásp2r ás1ps ás1s2k ás1s2p ás1sr ás1s2t ás1sy ás2s2z2 ás3szab ás1s1za ás3szag ás3sza1ka ás3sza1ké ás3száj ás1s1zá ás3szám ás3száz ás3s1ze ás3szél ás1s1zé ás3szf ás3szff ás3s1zi ás3s1zí ás3sz1k2 ás3szoc ás1s1zo ás3szok ás3szol ás3szor ás3s1zó ás3s1zö ás3szt2 ás3s1zú ás3s1zű ás2teg ás1te ást1elem áste1le ás2tir ás1ti ás2t1ös ás1tö ás1t2re ás1t1ri ás1t2róf ást1ró ás1t2róff á2s1ud á1su á2s1uj á2s1und á2s1u2r á2s1u2s ásu2t ás1u1ta á2s1u1tá á2s1u1tó á2s1u2z á2s1ú2r. á1sú á2s1úrn á2s1ú2s2z á2s1ú1ti á2s1ú1to ás1üd á1sü á2s1üg ás1üld ás1ü1le á2s1ün á2s1ür ás1ü2ve á2s1üz ás1űr á1sű ás1ű2z ásvágya2d ás1vá ásvág2y ásvá1gya á2s3zac ás2z á1s1za á2sz1a2d ász1a1ga ász1a1gá á2sz1ag2y á2szaj á2s2z1akc ász1a2kol ásza1ko á2sz1akt ász1a1le á2sz1alk ásza2n á2sza1na á2sz1ant á2sz1an2y á2sz1ap ásza2s ás2z1as2z ásza2t1e á2sz1a1u ás3zavar ásza1va ász1ágg á1s1zá á2sz1ág2y ász1á2lo á2s3záp ászá2r1as ászá1ra ász1á2rih ászá1ri á2sz1á2rú ászás1s á2szá1ta á2sz1áz ász1e2b á1s1ze á2sze1bé2 ászeb1é1de ász1e2béd ász1e2gé ász1e2g2y ász1eln ász1elv ász1emb ás3ze1ne ás3ze1né ász1eng ász1e2p á2sz1er1d2 á2sz1e2ré á2sz1e2s ász1e2t ász1e2v ász1ex á2sz1éj á1s1zé á2sz1ékb á2sz1é2l á2sz1é2ne á2sz1ép á2sz1é1ré á2sz1é1te á2sz1étt á2sz1é1ve á2szid á1s1zi á2szif á2sziff á2sz1ill á2szind á2sz1ing ászi2p á2sz1i1pa á2s2zi1ro á2sz1isk á2sz1ism ász1ist2 ász1i1ta á2sziz á2szír á1s1zí ász1k2 1ászká1i ász1ká á2szokl á1s1zo á2sz1okm á2sz1ors á2s2z1os2z ászó1s2p á1s1zó á2sz1ö2b á1s1zö ászö2l ász1ölt á2sz1ö2r á2sz1ös ász1ö1vé ász1Å‘r á1s1zÅ‘ ász1Å‘2s ás1z3sa ász2s ás3z1su ászt2 ász1tr á2s2zu1ni á1s1zu á2szur á2szut á2sz1ú2s á1s1zú á2sz1ü2g á1s1zü á2sz1ün á2sz1ü2z ász1z át1abr á1ta át1a2já át1ajk át1ajt át2a1k1ré á2t1ak2t. á2t1ak1to át1alh á2t1al1ja á2t1alm át1als át1a2lu át1al1vá á2t1a2ra á2t1a1rá á2t1arc át1arz áta2sá át1aut áta1u át1a1zo átá2c á1tá á2t1á2g. át1ál átá2p át1á1po á2t1á2rad átá1ra á2t1á2ra1i át1áram á2t1á2rá á2t1árb á2t1árn á2t1á2ro á2t1árt á2t1á2ru 1á2t1á2sás átá1sá átá2s3z á2t1átf á2t1átff á2t1á1tu át1bl át1br 1át1bu át1dr át1e2c á1te át1ej át1ell át1eln át1elv á2t1emb át1eml át1eng áte2rá áte1ri2 áte2rik át1e2rÅ‘ át1ex át1é2d á1té áté1e2 áté2g át1é1ge á2t1é1gé áté2kaj áté1ka áté2k1a2l áté2kas áté2ke áték1em áték1es áté2kol áté1ko áté2k1ü át1é2l áté2p á2t1érb á2t1é2ri á2t1érr á2t1érz áté2t1á2 1átfés át1fé át1fr át1gr át2h2i. át1hi át2hi1a 1áthid áti2ag á1ti áti1a áti2al áti2d áti2g á2t1i1gé át1ill á2t1ing át1i2pa á2t1i1rá át1isk át1ist á2t1i2ta á2t1i1zé á2t1izm á2t1i2zo át1íg á1tí á2t1í2r át1í2v 1átkel át1ke át1kl át1k2r átle2g1 át1le átle1ge2 átműt2r át1mű át1oj á1to áto2kol áto1ko át1oko2l. át1o2koz át1ok1ta 2átolj 2átolt át1oml át1ont2 át1op áto2ra2n áto1ra áto2ras áto2rác áto1rá áto2rál áto2re2 áto2ris áto1ri áto2r1ol áto1ro át1or1zá á2t1o2x átói2ko á1tó átó1i átó1p2 át1ó1ri át1öb á1tö átö2l át1ö1lé át1öml át1ön át1öt á2t1ö2v át1ö2z át1Å‘2r á1tÅ‘ át1pl át1pr át1ps át2ril át1ri át1sk át1sl át1sm át1sp át1sr át1st 1át1s1zű áts2z 1átte1ki át1te át3t2é át1t2r á2t1udv á1tu á2t1ug á2t1uh á2t1uj átu2min átu1mi átu2n á2t1u2r átu2s1ze átus2z á2t1u2t át1új á1tú á2t1ú2r. á2t1úrb á2t1úrh át1ú1ri á2t1úrn á2t1ú2ro á2t1úrr á2t1ú2s á2t1üg á1tü át1ül á2t1üt á2t1ü2v át1űr á1tű 1átvár át1vá 1átvev át1ve á1u áu2ga áu2go áu2ná áu2no áu2nó áu2nu áu2s2z áu2ta áu2tá á1ú áú2s2z á1ü áü2ge áü2g2y áü2le áü2lé áü2lö áü2lÅ‘ áü2lü áü2rí áü2té áü2ti áü2tö áü2tÅ‘ áü2tü áü2vö á1ű áv1adm á1va á2v1ajk áv1ak1t2 áv1alk áv1alt áv1asp áva1st2 áva1s2z2 áva1t2 á2v1a1u áv1a1zo áv1áls á1vá áv1á1te áv1átf áv1átff á2v1áth á2v1átj á2v1átk á2v1á1tu áve2gé2s2z1 á1ve áve1gé á2v1e2l áve1l1é áv1é2de á1vé ávé1dr á2v1é2ri á2v1ér1te á2v1ér1té áv1fr á2v1i1ga á1vi á2v1i1gé á2v1ind á2v1inf á2v1inff á2v1ing á2v1int á2v1i2rá á2v1i1ro á2v1i2si áv1isk áv1ism áv1izm áv1i1zo áv1ír á1ví á2v1ob á1vo á2v1olv á2v1op á2v1os2z áv1ó1rá á1vó áv1ör á1vö áv1ös áv1öv áv1Å‘r á1vÅ‘ áv1pr áv1sk áv1sp áv1st áv1tr á2v1ug á1vu á2v1ur á2v1ú2s2z á1vú ávú2t á2v1ú1ti á2v1ú1to áv1üg á1vü áv1ü2z á2z1abl á1za á2z1abs áza2dal áza1da áza2d1e2 áza2dott áza1do áza2dü áz1a1já áz1ajt á2z1akc á2z1a2kó á2z1ak2t. á2z1ak1ta á2z1ak1tá á2z1ak1tu áz1a2lap áza1la á2z1a2le á2z1alk áza2n á2z1a1na á2z1a1no á2z1an2y á2z1a2p áz1a2rá á2z1arc á2z1arm á2z1as2s2z á2z1aszt ázas2z áza2t1a2l áza1ta áz2a2tan áza1te2 áza2t1el áza2t1é2r. áz2atér áza1té áza2t1érv áza2tés áza2tik áza1ti áza2tí á2z1at2y á2z1a2u á2z1á2g á1zá á2z1á2l á2z1á2ra1i ázá1ra á2z1á2rak á2z1á2ram á2z1á2ras á2z1á2rat ázá2rár ázá1rá ázá2rát á2z1árb á2z1árc á2z1árd á2z1á2ré á2z1árf á2z1árff á2z1á2ri á2z1árjáb ázár1já á2z1árjáv á2z1ár1ka ázár1k2 á2z1á2rokk ázá1ro á2z1á2rokr á2z1árp á2z1ár1rá á2z1á2runkn ázá1ru á2z1á2runkr ázá3ru2s. áz1á2rus ázás3s á2z1á2ta á2z1á2t1á á2z1átb á2z1á2t1e2 á2z1á1té á2z1áth á2z1átr á2z1áts á2z1á1tü á2z1áz áz1bl áz1d2r áz1ef á1ze áz1eff áz1e2g áz1e2m áz1ep áz1e2r áz1e2s áz1e2t áz1e1u áz1ex áz1e2z á2z1ég á1zé á2z1é2l á2z1é2p á2z1é2r. á2z1é1rÅ‘ á2z1ér1te á2z1ér1té á2z1ér1tÅ‘ á2z1érz á2z1é2te á2z1é1ve á2z1é1vi áz1f8l áz1fl áz1fr áz1gr á2z1i2d á1zi á2z1i1gé ázik2 á2z1i2kon ázi1ko ázi1kr á2z1ill á2z1i1má á2z1i1mi áz1imp á2z1inf á2z1inff á2z1ing á2z1inj á2z1int á2z1i2par ázi1pa á2z1i1rá á2z1i1ro ázi2s1e ázi2sir ázi1si ázi2s1í2 ázis3s2 ázi2s1ü ázi2s1zó ázis2z ázi2z á2z1izm áz1i1zo áz1íj á1zí áz1í2v áz1k2l áz1k2r á2z1ol1da á1zo á2zoltal ázol1ta á2z1ol1tó á2z1oml á2z1ont á2z1o2r á2z1os2z ázói2ko á1zó ázó1i á2z1ó2l. áz1ó2rá á2z1ó1ri ázó1s2p ázó1s2z áz1öb á1zö áz1öd áz1ö2l áz1öm áz1ön áz1ös áz1ö2t áz1ö2v áz1öz áz1Å‘2r á1zÅ‘ áz1pl áz1p2r á2zsab áz2s á1z1sa á2zs1a2d á2zs1a2g2 á2zs1ajt á2zs1akn ázs1a1la ázs1alk ázs1all á2zs1a1mu ázs1an2y á2zsar ázs1a1rá á2zsat á2zs1a1u á2zs1áll á1z1sá á2z3sá2r. á2z1se áz3seb ázs1e2c ázs1ef áz2s1eff ázs1eg ázs1e2l ázs1e2m ázs1es á2zséj á1z1sé á2zs1é2k ázs1é1ne á2zs1é1re á2zs1é1ri ázsé2t á2zs1é1te 1á2zsia1i á1z1si ázsi1a 1á2zsi1á á2zsi1de ázsi2g á2z2s1i1ga á2z2s1i1gá á2z2si1ge á2zsimm á2zs1ing á2zs1int á2z2sinv á2zsi1ó á2zsip ázs1isk á2zs1i1ta á2zsiz á2z1s1í2 á2z3sor á1z1so áz3sóh á1z1só ázs1ó2r á2z1sö á2z1s1Å‘2 ázs1s á2zs1uj á1z1su á2zs1ut á2z2sú1to á1z1sú á2z1sü ázs1ü2v á2z3sű áz3s1zá ázs2z áz1t2r á2z1ud á1zu á2z1ug á2z1uj á2z1u2r á2z1ut á2z1új á1zú á2z1úr á2z1ü2g á1zü ázü2l áz1ür áz1ü2z ázy1i áz3z1se áz1z2s äi1nä än2de 2b. 1ba baa2d ba1a ba2b1a2dat 1ba1ba baba1da ba2b1ajk baba1k2 ba2b1a1ra b2abar ba2b1arc ba2b1aszt babas2z ba2b1ábr b2abáb ba1bá babá2c ba2b1á1c1si babác2s ba2b1ág bab1áll ba2b1á2ro ba2bátv bab1e1vé b2abev ba1be ba2b1érc b2abér ba1bé babé2t bab1é1te ba2bév ba2bik ba1bi ba2b1i2n2a. babi1na ba2bo1la ba1bo bab1old ba2b1ó2r ba1bó ba2b1ult ba1bu ba2bü ba2c3hu bac2h ba2csor bac2s ba1c1so 2b1a2dag ba1da ba2das 2b1a2da1to ba2d1ár ba1dá ba2de2g ba1de ba2d1e2s ba2dog ba1do 2b1a2do1má ba2dód ba1dó ba2dó1i ba2dój ba2dók ba2dót ba2duj ba1du ba2dús ba1dú bae2gés2z1 ba1e bae2gé bae2r bae2t ba1f8l ba1fl ba1f2r ba2g2a. ba1ga ba2ga1i ba1g2n ba1g2r 2b1ag2y. bag2y bai2z ba1i ba2jag ba1ja ba2j1á2ru b2ajár ba1já ba2j1á2to 2baj1kú ba2j1ó2r ba1jó ba2jü ba2jű ba2k1a2pó b2akap ba1ka 2bakas ba2kaszt bakas2z 2ba2kác ba1ká bak1á2c2s bak1áll 2bakc ba2keg ba1ke ba2k1é2r. ba1ké ba2k1é1ri bak1k ba1k2li ba1k1lu ba2k1o2v ba1ko ba1k2ri bak1t2 2b1ak1tu baku2r ba1ku bak1u1ra bak1u1rá ba2ky 2b1a2lan2y ba1la 2b1a2lál ba1lá b2a2l1e2s ba1le ba2l1í bal2lak bal1la bal2lan bal2lál bal1lá bal2l1ás bal2láz bal1le2 bal2leg bal2l1el bal2lem bal2les bal2l1é2l bal1lé bal2lin bal1li bal2lór bal1ló bal2té bal2tiz bal1ti ba2lud ba1lu 2b1amp 2banal ba1na 2b1a2nat banás3s ba1ná ban2c1e2 banc3s ban1gh 2b1ang2y ban2kab ban1ka ban2k1a2d ban2k1a2l ban2kar ban1ke2 ban2ker ban2kép ban1ké ban2kérd ban2kir ban1ki ban2kol ban1ko ban1ku2 ban2kut ba2nyó ban2y bao2k ba1o bao2l baó2r ba1ó ba1p2l b2a1p1ro 2b1ar2c. 2b1ar1cé 2b1arcn 2b1ar1co 2b1arcr bar2csad barc2s bar1c1sa bar2csal bar2csan bar2c1sö 2b1ar1cú 2b1ar1gu bar1nás3 baro2ma ba1ro bart2 2b1ar1té ba1ry baság1g ba1sá ba2seb ba1se ba1s1lá ba1s2m ba1s1ni 2b1as1pe ba1s2pó bas2se bas3s1ze bas2s2z b2a1s2ta b2a1s2tá 2b1asztag bas2z basz1ta ba2t1es1ti ba1te ba1t2rá ba1t1re b2a1t1ré ba2uc ba1u ba2ud ba2ul bau2r 2b1a2vat ba1va ba1yi 1bá bá2bal bá1ba bá2b1ass bá2bál bá1bá bá2b1es bá1be bá2bik bá1bi bá2bö bá2b1ü bá2csor bác2s bá1c1so bá2c1sü 2b1á2ga b1á2gú bá2gyal bág2y bá1gya bá2gyar bá2gyott bá1gyo bá2gyö bá2gyú bá2j1e2 báj2n1á bá2j1ó2 bá2j1ö2 báj2t1a2k báj1ta bá2jü bákos1 bá1ko bá2laj bá1la bá2l1ap bá2l1e2 bá1lé2 bá2l1éj bá2li2d bá1li bá2l1ing bá2l1i2o bál2is 2b1ál1lí 2b1ál1lo 2b1állv 2bálm bá2lö bá2lü bá2lyad bál2y bá1lya bá2ly1al bá2ly1a2n bá2ly1á2z bá1lyá báni2as bá1ni báni1a bán2ré bánya2i1é bán2y bá1nya bánya1i bá2po 2b1á2rad bá1ra 2b1á2ra1i bá2r1aj 2b1á2ram bá2rap bá2ras 2bá2ra2t 2b1á2ráb bá1rá bá2rá2g bá2rár bá2r1ás 2b1á2rát bár2das bár1da bár2d1á bár2de bá2r1e bá2rén bá1ré 2b1á2ri1á bá1ri bá2r1i2o bá2r1i2p bá2rí 2b1árn2y bá2r1ó2n2é. bá1ró báró1né 2b1á2r2u. bá1ru 2b1á2ruf 2b1á2ruff 2b1á2rug 2b1á2ruh 2b1á2ruj 2b1á2ruk 2b1á2rur b1ár1u2r2a. báru1ra 2b1á2rus 2b1á2rut 2b1á2ruv 2bá1rú bá2rúr bá2rü bá2s1á2ré bá1sá bá2se bá2sis bá1si bá2sz1ak bás2z bá1s1za bá2sza2n bá2sza2s bá2sz1ál bá1s1zá bá2sz1á2ru bá2s1ze bá2szil bá1s1zi bá2szi2p bá2s1zí bá2s1zö bá2s1zü bá2t1a2k bá1ta bá2t1al bá2t1á2 2b1á2t1e2 bá2tö bá2tü bb1a2da b1ba bb1add b2b1a2kas bba1ka b2b1alk b2b1als b2b1a1lu b2b1alv b2b1a2n2y b2b1ap b2b1a2ra bba2t b2b1a1u bb1áb b1bá bbá2gyas bbág2y bbá1gya b2b1áll b2b1álm b2b1áp bb1árn bb1á2ru b2b1á2s b2b1át bb1dr bbe2g b1be b2b1e2kén bbe1ké b2b1elv b2b1emb bb1eng bb1erj bb1ern bb1e2rÅ‘ bb1e2rű b2b1es1té b2b1etn b2b1ex b2b1ég b1bé bb1é2l. bb1é1le bb1élh b2b1élj bb1éln bb1élt2 bb1é2lű bb1élv b2b1ép bb1érl b2b1érm b2b1ér1te bbért2 b2b1ér1té bb1érv b2b1é1vi bb1fr bb1i2de b1bi b2b1i1ga bbi2gaz1 bb1il1la b2b1ind b2b1int b2b1inv b2b1ism bbi2tat bbi1ta b2b1it1t2 b2b1í2r b1bí b2b1ív bb1kl bb1kr b2b1okt b1bo bb1ol1tá b2b1olv b2b1op bb1ott b2b1ób b1bó bb1ó2r b2b1ö2m b1bö bbö2r bb1ö1rö b2b1ös bb1Å‘1ri b1bÅ‘ bb1Å‘rz b2b1Å‘2s bb1pl bb1pr bb1sk bb1sp bb1st2 bb1t2r b2b1ud b1bu b2b1u2g b2b1uj bbu2r bb1u1ra b2b1u2t bbúgás1 b1bú bbú1gá b2b1új b2b1ú2s b2b1üg b1bü b2b1ür b2b1üz bb1ű2z b1bű bb2ví bc3s2z bc2s bda2cs1a2pá b1da bdac2s bda1c1sa bda1d2 bda1p2 bda1s2 bdas2z2 bda1t2 bdé2n b1dé bd2rá bd2ro bd2ró 1be be2ac be1a bea2d bea2j bea2k bea2l bea2n bea2r bea2s be2a2t1e be2a1ti be2a2tin be2atk be2atl bea2v beá2j be1á beá2s beá2z be1bl be1b2r be2csar bec2s be1c1sa be2csá2r be1c1sá be2csért be1c1sé be2cs1é2te be2dén be1dé be2d2z bee2l be1e bee2s beé2r be1é be1f8l be1fl be1fr begés3s be1gé be2gés2z1 be1g2r be2gyel beg2y be1gye b1egyl bei2g be1i bei2s beí2r be1í be2j1elt be1je 2bejt 2b1e2k2e. be1ke beke2c1sa bekec2s 2b1e2ké1tÅ‘ be1ké be1k2ré be1k1ri be1k1ró be1k2v be2lál be1lá bele1í2 be1le bel1els be2lemz bele1p2r belet2 bele1tr be2l1é2k be1lé be2l1é2r. be2l1é2re2n belé1re be2l1érr be2lí be2lof be1lo be2l1off be2löl be1lö 2b1e2lÅ‘1a be1lÅ‘ be2lÅ‘r bel1p2 2bemel be1me 2b1eml b1e2mus be1mu be2n1ál be1ná be2n1ék be1né be2ni1a be1ni ben2n1a2 ben2ná ben2n1e2r ben1ne ben2n1es ben2nég ben1né be1no2 be2ny1e2g ben2y be1nye beo2k be1o beo2l beo2m beó2v be1ó beö2r be1ö be2p2e. be1pe be2ped 2b1e2pé be1p2l be1p2r be2r1ad be1ra ber1a1lá ber1all bera2n ber1an2y be2r1a2p be2r1a2r ber1ass be2r1a2t be2r1av be2raz be3rág be1rá ber1áll b1erde1i ber1de 2b1er1dÅ‘ ber1e1gé be1re ber1eg2y be2r1e2k2e. bere1ke bere2k1eg be2r1e2kék bere1ké be2r1ell be2r1elm be2relÅ‘1dö bere1lÅ‘ be2r1elÅ‘n be2r1e2mé be2r1eml be2r1e2pé be2r1e2r be2r1e2s1zü beres2z be2r1e2tet bere1te be2rég be1ré be2r1ékk ber1éss ber1in1gü be1ri be2r1ist ber1i2s1zo beris2z ber1old be1ro be2ror ber1os2z be2ról be1ró be2r1ó2r be2rÅ‘ 2b1erÅ‘d ber1Å‘2s. ber1Å‘2se ber1Å‘2si ber1Å‘2sü ber3s2 berta2n1á2s ber1ta berta1ná be2r1ub be1ru be2r1un be2rur be2r1ut be2r1ü2g be1rü berü2l be2r1üld be2r1ü1lé be2r1ült be2sem be1se 2b1esél be1sé 2b1e2sés be1s1ka be1s1ká be1s2l be1s2m 2b1e2sÅ‘ besp2 be1s1pé be1spr be1s1pu bes1s1z1a bes2s2z bes1s1z1á be1s2ta 2bes1te 2bes1té be1s2til bes1ti be1s1to 2b1e2szet bes2z be1s1ze 2b1e2szét be1s1zé b1eszm besz2t1a2 besz2t1á bete2g1é2r. be1te bete1gé beté2t1elb be1té beté1te beté2telk be1t2hi be1t2ra be1t1rá be1t2ré be1t2ro be2uf be1u be2uff beu2g beu2t beü2t be1ü be2ve1zÅ‘ be1ve 2b1e2vol be1vo 2b1e2vÅ‘ 2b1ezr 1bé 2b1ébr bé2c1sú béc2s bé2d1as bé1da bé2d1á 2bé1dé 2bédh 2bédj 2bédl bé2d1o bé2dö 2bédr 2bé1dü 2bédv bé2gÅ‘ bék1alk bé1ka 2b1ék1s2z2 bé2l1akt bé1la bé2l1a2n bé2l1a2p bé2l1a2r bé2lá2l bé1lá bé2l1á1to bé2l1á2z bé2l1ed bé1le bé2l1e2g bé2lek bé2l1e2r 2b1é2let bé2l1é2j bé1lé bé2liz bé1li bé2lí 2bélj bé2l1o bé2ló bé2lö 2b1é2lÅ‘ bélt2 bél1tr bé2lul bé1lu bé2lú bé2ly1e2c bél2y bé1lye bé2l3yen bé2lyin bé1lyi bé2lyö bé2pí bé2pü 2b1é2ra1i bé1ra bé2r1aj bé2ral béra2n bé2r1an2y bé2rap bé2rar bé2rá 2b1éráb 2b1éráh 2b1éráv 2b1ér1de bé2re2b bé1re bé2r1ele1me bére1le bé2r1e2le1mé bé2r1e2lemh bé2r1e2lemk bé2r1e2lemn bé2r1e2lemr bé2r1ell bé2relm bé2r1elÅ‘1i bére1lÅ‘ bé2r1eng bére2n bér1es2s2z bé2r1es2z bé2r1id bé1ri bé2rir bé2rí b1ér1ni bé2rö bér1s bért2 2bértel bér1te 2b1értés bér1té bér1tr bé2rut bé1ru bé2rú bé1ry bé2s1z1a2 bés2z b2é2s1zá bé2s1z1o béta1s bé1ta 2bétel bé1te bé1t2h 2b1étk 2b1étt 2b1é2v. bé2vek bé1ve 2b1é2ven 2b1é2ves bé2vet bé2v2i. bé1vi 2b1évn bé2z1sú béz2s bfej1els b1fe bfe1je bfe2len bfe1le bfé2n b1fé bf2la bf8l bfla bfl bf2rá bf2re bf2ri bf2ro bg2ra bg2rá bgyö1kö2 bg2y b1gyö bgyö2k1öl 1bi bia2d bi1a bi2a1e bi2ag bia2la bia2v bi1br bi1by bic3s2z bic2s bi1da2 bi2d1ad bi2d1al bi2deg bi1de bi2del 2b1i2dÅ‘ bi2ed bi1e bie2l bi1fr bi2gaz bi1ga 2b1i2gáj bi1gá 2bigén bi1gé 2b1i2hat bi1ha bik1a1la bi1ka bi2k1ál bi1ká bi2k1em bi1ke bi2kik bi1ki bi1k1lu bi2k1Å‘2 bi1k2ro bik1s bil1i1ma bi1li bil1int bilis3s 2bil1lé 2b1il1lÅ‘ 2b1il1lu bi2lü bi2m2a. bi1ma 2b1i2mi 2b1imp bi2nab bi1na 2b1i2nad bi2naj 2b1i2na2t. bi2n1árb bi1ná 2b1in1dá bi2n1é2te bi1né 2b1in1ká bin3n bi2nü bi1n2y bi2o1a bi1o bi2o1á bi2ob bi2oc bi2od bi2o1e bi2o1é bi2of bi2off bi2o1g bi2ok bi2ol bi2om 2b1i2on bi2or bió2r bi1ó bi2par bi1pa bi1p2l bi1pr 2b1i2ram bi1ra 2b1i2rat 2b1i2rán bi1rá 2birká1i bir1ká 2b1i2ro1dá bi1ro 2b1irr 2b1ir1tá 2b1ir1tó bis2hi 2b1i2si 2bism bi2sö bi1s2p bis3s bi1s2to bi2t1e2g bi1te bit1elh bit1elr bit1elt bite2r1a b2iter bi2t1ing bi1ti bi2t1int bi2t1i2o bi2t1on bi1to bit1t2 bit1u1ra bi1tu bi2t1ut biú2s bi1ú bi2var bi1va 2b1i2vás bi1vá 1bí bí2ja bíróé2r bí1ró bíró1é bí2ve bí2vé bí2vű 2b1í2zü bkés3s b1ké bk2li bk2lu bk2ra bk2rá bk2re bk2ré bk2ri bk2rí bk2ro bk2ró 1b2labl b1la blai2k bla1i bla2k1a2d bla1ka bl2a2kal bl2a2k1an bla2k1átm bla1ká bla2k1átt bla2kem bla1ke bla2kik bla1ki bla2k1ol bla1ko bla2kü bla1p1e bla1p2l bla1s2t blás1s b1lá bl2be ble2r1i b1le bles2 ble2t1ak ble1ta ble2t1a2n ble2t1á2 ble2t1e2l ble1te bl2e2ter ble2tes2z ble2té2l ble1té ble2t1érd ble2t1étk bletigaz1 bleti2g ble1ti ble2t1i2ga ble2t1o ble2t1ö2 ble2tu ble2tüz ble1tü ble1ü2 bleves1s ble1ve bl2he bli2af b1li bli1a bli2aff blia1k2 bli2akr bli2as bli2of bli1o bli2off b1lja1na bl1ja bl2ne 1b2lok b1lo blok2k1ö2 blo2n1á blon3n b2l1Å‘1zé b1lÅ‘ bl2re bl2rÅ‘ bl2tÅ‘ blu2es2z b1lu blu1e bmik1ro1 b1mi bmikros2z2 1bo bo2a1á bo1a bo2ab bo2ad bo2a1e bo2af bo2aff bo2ah bo2aj bo2am bo2ar bo2at bo2av bo2c1ak bo1ca bo2ce bo2cé bo2c3h bo2c1sé boc2s bo1cy bo1dy bo2e1i bo1e bo1f8l bo1fl bo2g1a2k bo1ga bo2g1a2t bo2g1á2c bo1gá bogás1s bo2g1e bo2g1os2z bo1go bog2ó2s1zá bo1gó bogó1s2z bo2gyo bog2y bo1hóc1s2 bo2il bo1i bo2is boka1p bo1ka 2b1o2kí b1o2koz bo1ko bok2szak boks2z bok1s1za bok2szal bok2sz1ál bok1s1zá bok2szel bok1s1ze bok1s1zé2 bok2szél bok2sz1in bok1s1zi bok2s1zó bok2s1z1Å‘ 2b1ok1ta 2b1o2la2j. bo1la bolás1s bo1lá 2b1ol1dó 2b1o2lim bo1li bolo1g2 bo1lo bol2t1e bol2t1ö2 bol2t1ü2 2b1olvas bol1va bo1na1 bon1a1va bon2can bon1ca bon2c1e bon2c2h 2bond bo2n1e2 bo2n1é2r. bo1né bo2n1or bo1no bon2t1i bo2nü bo2og bo1o bo2ok bo2ol bo2om bo2ot bo2pe bo2r1a2d bo1ra bo2r1a1ka bor1akk bo2r1akv bo2r1a2l bora2n bor1an2y bo2rar bor1as2z bor1atr bo2r1a1u bo2r1av bo2raz bor1á2c2s bo1rá bo2r1áll bo2r1áz bor1d2 bo2re bor1e2c bor1e2l bor1e2r bor1e2s bor1f2 bor1ff borfi2ú1ké borf8i borfi1ú borï¬2ú1ké borï¬ borï¬1ú bo2r1i2ko bo1ri bo2r1il bo2r1ing bo2r1int bo2r1isk bo2r1iss bo2r1ist bo2r1itt bo2r1iz bor1k2 2b1ornam bor1na bo2r1ond bo1ro bo2rop bo2r1ó2r bo1ró bo2rö bo2rÅ‘ 2b1or2r. 2b1or1rú bor2s1ep1rű bor1se bor2sors bor1so bor1st2r bor2sül bor1sü bor2süt bor1t1re bor1t1ré bo2rü borvíz1 bor1ví bor2z1á2rak bor1zá borzá1ra bor2z1sa borz2s bor2z3se 2b1oszt bos2z bo2t1a2g bo1ta bo2t1al bo2tar bo2tas bo2t1a2u bo2t1ác bo1tá bo2tár bo2t1e2 bo2t1il bo1ti bot1inf bot1inff bot1int bo2t1i2p bo2tí bo2t1ó2 bo2tö bo2tur bo1tu bo1tú2 bo2túr bo2tü bo2tű bo2u1i bo1u bo2ul bo2ur bo1ya bo1yá bo1yé bo1yi bo1yo bo1yu bo2za2r bo1za bo2zál bo1zá bo2z1e2 bo2zid bo1zi bo2z1i2p bo2z1ir bo2zí bo2z1old bo1zo bo2z3s bo2zü bo2zű 1bó bóa2d bó1a bóá2g bó1á bóá2r bó2bé bó2cal bó1ca bó2c2h bó2cü bó1f8l bó1fl bó1k1ré bóli2a bó1li b1ólm bó1p2l bó1p2r bó2r1ad bó1ra bó2r1an bó2rat 2bó1rá bó2rás bór1ásv bó2reg bó1re bó2rel bó2r1in bó1ri bó2ri2z bó2r1ol bó1ro bó1ró2 bó2rós bó2rö bórt2 bó2rü bó1s2p bó1s2z 1bö bö2c2h bö2lá 2bölb böl2c1sü bölc2s 2b1ö2lér bö1lé 2böl1hö 2böli2g bö1li 2bölk b1öl1kú 2bölr 2b1öl1tö 2böl1tÅ‘ bö2lú bö2lyö1kö böl2y bö1lyö b1öml bö2ná 2b1önt bö2ra bö2r1e bö2ro 2b1ös2s2z 2b1ötl 2b1öts bö2ve 1bÅ‘ bÅ‘2r1a2 bÅ‘2r1á2 bÅ‘2r1e2g bÅ‘1re bÅ‘2r1e2l bÅ‘2r1em bÅ‘2r1en bÅ‘2r1e2r bÅ‘2r1é2g bÅ‘1ré bÅ‘2rék bÅ‘2r1és bÅ‘2ril bÅ‘1ri bÅ‘2r1ing bÅ‘2rip bÅ‘2r1i2s bÅ‘2riz bÅ‘2r1izg 2bÅ‘rl bÅ‘2r1o2 bÅ‘2r1öl bÅ‘1rö bÅ‘2rÅ‘ bÅ‘rren2 bÅ‘r1re bÅ‘r1s2 bÅ‘2r1u bÅ‘2rú bÅ‘2r1ü2g bÅ‘1rü bÅ‘2r1ü2l 2bÅ‘1si bp2la bp2lá bp2le bp2re bp2ré bp2rí bp2ro b1p2roj bp2ró bra2k1á2 b1ra bra2kös bra1kö bra1p2 1b2rat2y brá2nag b1rá brá1na brá2nas brá2n1át brá1ná bránt2 brá2sz1ál brás2z brá1s1zá brá2s1ze bre2e2 b1re b2ric b1ri bri2da bri2dá bri2der bri1de 1b2rig bri2no bri2ód bri1ó bri2óf bri2óff bri2óm bri2tel bri1te b2ro1sú b1ro bró2m1a b1ró bró2me 1b2rum b1ru bsé2g1el b1sé bsé1ge b1s2ká bs2lá bs2pe bs2pi bs2po b1s2ta bs2tá bs2ti bs2tí b1s2tú bszá2r1a2da bs2z b1s1zá bszá1ra bsz2f bsz2ff b1sz2k bsz2tá bter1mo1 b1te btermos2z2 bt2rá b1t2re bt2ré b1t2ri b1t2ro b1t2ró 1bu bu2c3h bu1c1ki 2b1udv bué2r bu1é bu2g1i2 bu2il bu1i 2b1uj2j. 2b1ujj2a. buj1ja 2b1ujjad buj2j1a2da 2b1ujja1i 2b1ujjak 2b1ujjam 2b1ujjas 2b1ujjat 2b1uj1já 2b1ujjb 2b1ujjc 2b1ujjd 2b1uj2j1e2 2b1uj1jé 2b1ujjf 2b1ujjff 2b1ujjg 2b1ujjh 2b1uj1ji 2b1ujjk 2b1ujjl 2b1ujjm 2b1ujjn 2b1uj1jo 2b1ujjp 2b1ujjr 2b1ujjs 2b1ujjt 2b1uj1ju 2b1uj1jú 2b1ujjv buk2j1e bu2maj bu1ma bu2mel bu1me bu2m1i2k bu1mi bu2m1i1na bu2mis bu2mol bu1mo 2b1ural bu1ra b1urb 2burn 2b1u2rú bu1ry bu2se bu2sin bu1si bu2sol bu1so bu1s2p bus3s1ze bus2s2z bu2szab bus2z bu1s1za bu2sz1aj bu2szal bu2szas bu2sz1ál bu1s1zá bu2sz1á2rak buszá1ra bu2sz1árn busz1en bu1s1ze bu2sz1él bu1s1zé bu2sz1é2p bu2szid bu1s1zi bu2sz1il bu2szim bu2szin bu2szip bu2sziz bu1s1zí2 busz1íj busz3s bu2s1zü2 1bú bú2jí 2bú2r. 2b1ú2ri 2búrt 2bús2z bú2s1zá b1ú2ti b1útm 1bü bü2dü bü2ge bü2g2y bü2ku 2b1üld bü2l1é2n bü1lé bü2ne 2bü1rü 2b1ü2te 2b1ü2té b1ü2tÅ‘ 2b1ü2ve bü2ze 1bű bű2na bű2ná bű2nel bű1ne bű2nem bű2nes bű2n1e2t2 bűn1n bű2no bű2nó bű2n1Å‘2 bű2nu bű2nű bű2ri bű2v1e2 bű2z1a2 bű2z1á bű2zo bű2z1Å‘ bű2z3s bvá2nya2d b1vá bván2y bvá1nya bvá2nyí by2te 2c. 1ca 2c1abl ca1b2r ca2cél ca1cé ca2c2h ca2dás ca1dá ca2de 2c1a2dó ca2es ca1e caé2ne2 ca1é c2a1f1ro ca2ge 2c1agg ca2gya cag2y ca2gy1a2d ca2gyu ca2i1u ca1i 2c1ajk 2c1a2kad ca1ka ca2kác ca1ká ca2k1áz 2c1akc cak2kol cak1ko cak2k1ö ca1k2ri cala2g1 ca1la ca2lan ca2l1a2s 2c1al1bu ca2l1es1te c2ales ca1le ca2l1é2l ca1lé c2alé2t cal1é1te c2a2lim ca1li ca2l1ip cal1os2z ca1lo cal1p cal1s ca2lü ca1l2y camil2 ca1mi ca2nal ca1na ca2nar 2c1a2ni can2ne caó2r ca1ó ca2pó ca1p2ró ca1p2s ca2ran ca1ra ca2rán ca1rá 2c1arc ca2ris ca1ri car2l ca1s2p 2c1as2s2z c2a1s1to ca1sy 2c1aszt cas2z ca2ta1u ca1ta ca2tem ca1te 2c1atl c1a2uk ca1u ca2ul cau2n ca2us ca2ux ca2vat ca1va ca1ya ca1ye 2c1a2zo 1cá 2c1ábr cá2ga cá2gú cá2g2y cá2la c1ál1lá 2c1álm cá2ne cá2nét cá1né cá2nir cá1ni cá1p2a3 2c1á2po 2c1á2rad cá1ra 2c1á2rak cá2r1as cá2ri1a cá1ri cá2ri1á cá2r1i2n 2cárk 2c1árp 2c1á2r2u. cá1ru 2c1á2ruh 2c1á2rus cá2sás cá1sá 2c1á2só 2c1ásv 2c1á2sza1i cás2z cá1s1za 2c1á2s1zo 2c1á2t1a2 c1áth 2c1á2t1i2 2c1átm 2c1átr 2c1átt 2c1á2tü 2c1átv cb2lo cb2ra c2c1a2j c1ca c2c1ak cc1alb cc1a2n2y cca2r cc1a1ra c2c1a1u c2c1ág c1cá c2c1ál cc1bl cc1ef c1ce cc1eff c2c1elm c2c1ember ccem1be c2c1ép c1cé c2c1é2r. c2c1ér1te cc3hal cc2h c1c1ha cc3hez c1c1he c1c3hí c2c3ho c2c3hÅ‘ c1c3hú c2c1i2m c1ci cci2n2a. cci1na cc1ing cci2óv cci1ó cc1i2pa cc1i1ro c2c1i2z cc1ír c1cí cc1kl cc1k2r cc1o1á c1co c2c1ov cc1ön c1cö cc1ös cc1öz cc1pl cc1pr c2c2s ccs1an2y c1c1sa c3csap c3csar ccs1as c3csat ccs1ál c1c1sá c3csáp ccs1ás ccs1átl ccs1eg c1c1se ccs1elem ccse1le ccs1ell ccs1elv ccs1em1be c2cs1eml c3csep ccs1él c1c1sé ccs1ér1té ccs1iv c1c1si c3csop c1c1so c2cs1ork cc3so1ro ccs1ö2l c1c1sö ccs1önt ccs1p ccs1s ccs1ut c1c1su c3c1sú c3c1sű cc3s1za ccs2z cc3s1zá ccs3zen cc1s1ze cc3s1zó cc1új c1cú c2c1üg c1cü cc1ür c1c3zá cc2z c1c3ze cc3z2s cda2l1é2 c1da cda2l1i cde2m1e2ké c1de cde1me cde2m1el cd2ra cd2rá 1ce cea2l ce1a ce2at ce2a1u ceá2r ce1á ce2béd ce1bé ce1bl ce2c2h ce1c3he 2c1e2d2z ce2gas ce1ga ce2g1é2k ce1gé cegés3s ce2gi1na ce1gi ce2gor ce1go ce1g2rá ce2gu ce2gú c1eg2y. ceg2y c1egyb ce2gyen ce1gye c1e2gyi c1egym c1egyr 2c1egys 2c1e2k2e. ce1ke ce1kl 2c1e2l1a2d ce1la 2c1e2lág ce1lá cel1ér ce1lé 2c1elf 2c1elff 2c1el1ha 2c1el1já 2c1e2l1os ce1lo c1e2lÅ‘1a ce1lÅ‘ 2c1e2lÅ‘dö2t. celÅ‘1dö 2c1e2lÅ‘f 2c1e2lőff 2c1e2lÅ‘1í c1e2lÅ‘1Å‘ 2c1el1sÅ‘ 2c1el1tá c1el1to 2c1el1vá 2c1e2me1lÅ‘ ce1me 2c1eml cenc1c cen2c1eg cen1ce cen2c3s 2c1eng cen2s1ég cen1sé ceo2l ce1o ceo2r 2c1e2p2e. ce1pe 2c1e2pi ce1p2r cep2s1z1a2 ceps2z cep2sz1é2p cep1s1zé cep2s1zi cep2t1a2 cep2t1é2r. cep1té cep2tim cep1ti cep2t1ol cep1to 2c1e2rej ce1re ce2róz ce1ró 2c1e2rÅ‘ cer2t1a2 cer1tá2 cer2tár cer2teg cer1te cer2t1e2l cer2t1emb cer2t1est cer2tél cer1té cer2t1én cer2t1ol cer1to cer2t1ö cer2tu cer1tü2 cer2t1üz ce2sem ce1se 2c1e2sés ce1sé 2c1e2sÅ‘ c1es2t1é2j ces1té ces2t1ék ce1st1ra ce2t1e2g ce1te ce2t1es2s2z ce2t1es2z ce2t1é2t ce1té 2ceth ce2t1ill ce1ti ce2t1i2n ce2tiz 2cetn 2ceton ce1to ce1t2ra ce2t1us ce1tu ce2tűd ce1tű cetű2z ceü2t ce1ü ce2vés ce1vé ce2vÅ‘ 2c1e2zer ce1ze 2c1ezre1de cez1re 1cé 2c1ébr cé2dé2l cé1dé cé2g1a2 cé2g1á2 cé2g1eg cé1ge cé2g1e2l cé2ge2r cég1e1re cég1e1ré cé2g1esem cége1se cé2ge1té cé2ge1tÅ‘ cé2g1ék cé1gé cé2gép 2c1é2gés cég1g cé2g1i2d cé1gi cég1i1ga cégi2g cé2gi2gé cé2gim cé2gir cé2g1iz cé1go2 cé2g1ok cé2gol cé2gó cé2gö cé2g1u2 cé2gú cé2g1ü2g cé1gü cé1ha2 cé2ha2l cé2han cé2har cé2hed cé1he c2é2h1e2g cé2hi2r cé1hi cé2hu cé2hú 2c1éks cé2la cél1a2n cé3lap cél1a2r cé2láb cé1lá cé2lá2l cé2l1á2r cé2l1á2t cé2l2e. cé1le cé2led cé2leg cé2le1i cé2lek cé2l1e2l cé2lem cé2l1emb cé2le2n cé2l1er cé2l1e2s 2c1é2let 2c1é2lez cé2léb cé1lé cé2l1é2k cé2lénk cé2lép cé2lé1re cé2lés cé2li2m cé1li cé2lin cé2lir cé2l1is cé2liz cé2lí cé2ló cé2l1ö2 cé2l1Å‘2 célt2 cél1tr cé1lu2 cé2l1ut cé2lü 2c1é2lű cé2pí cé2pü cé2rag cé1ra 2c1érd 2c1é2rés cé1ré cé2rin cé1ri 2c1é2rint cé2ris cér1s 2c1ér1té 2c1ért2Å‘. cér1tÅ‘ cé2rú 2c1érz cés3s 2c1észh cés2z 2c1étk 2c1étt 2c1é2v. 2c1é2vad cé1va 2c1é2v2e. cé1ve 2c1é2ve1i 2c1é2vek 2c1é2ven 2c1é2ves 2c1é2vet 2c1é2vét cé1vé cé2v2i. cé1vi 2c1évn 2c1é2vü cf2ló cf8l cfló cfl cf2ra cf2ri cf2ro cg2ra cg2ri c2h 1c1ha cha2á 2c3had 2c3haj 2cham 2c3hang 2c3harc 2charm cha2se 2c3ha1tá 2c3hav 1c1há 2c3hám c3hán2y 2c3ház ch1bl 1c1he 2c3heg 2cheh chel2 2c3heng chet2 2chev 1c1hé ch1gr 1c1hi 2c3hib 2c3hi1ó 2c3hitel chi1te 2c3hitet c3hi1ú 1c1hí ch2le ch2li 1c1ho cho1d2 2c3hoss 1c1hó 1c1hö 1c1hÅ‘ ch1pr ch2ri ch1sc ch1sp 1c1hu chu2r 2c3huz 1c1hú 1c1hü 1c1hű ch2wa ch2we 1ci ci2a1a ci1a ci2a1á cia1b2 ci2a1ba ci2a1bo ci2abr ci2ac ci2a1d2 ci2a1e ci2a1é cia1f cia1ff cia2fag cia1fa ci2afr ci2a1g2 ci2ah ci2aik cia1i ci2a1í ci2aj ci2akar cia1ka ci2akas ci2aké2n. cia1ké ci2a1kó ci2a1k2ri ci2a2l. ci2a1la ci2a1lá ci2a1le ci2a1lé ci2a1lo ci2am ci2an2y ci2a1o ci2a1ó ci2a1ö ci2a1Å‘ ci2a1p2 ci2ar ci2a1s1za cias2z ci2a1s1zá ci2a1s1zé ci2a1s1zo ci2a1s1zó cia1t2 ci2a1ta ci2a1tá ci2a1té ci2a1to ci2a1tű ci2a1u2 ci2a1ú ci2a1ü ci2a1ű ci2av ci2az ciá2lan ci1á ciá1la2 ciá2nár ciá1ná ci2á1ó 2c1i2deg ci1de ci2de1o 2c1i2dé 2c1i2dom ci1do 2c1i2dÅ‘ cie2r ci1e 2c1if8j 2c1i2g2a. ci1ga 2c1i2gaz ci2g2e. ci1ge ci1g2r ci2ker ci1ke cik1ka2 cik2kaj cik2kan cik2k1o ci1k2la 2c1ik1rá ci2l1á2t ci1lá ci2mit ci1mi 2c1im1pu ci2n1al ci1na ci2n1árt2 ci1ná cin1d2 c2i2n2e. ci1ne ci2n1e2re c2iner 2cinf 2cinff 2c1in1ga 2c1in1ge 2c1ingr ci2nim ci1ni cin2kac cin1ka cin2k1a2l cin2kért cin1ké cin2kol cin1ko cin2kor1s2 cin2kö ci2nö cin2tar cin1ta cin2t1es cin1te cinus1s2 ci1nu ci2nü 2c1inv ci2od ci1o ci2of ci2off ci2o1g2 ci2o1i ci2ol ci3o1lo 2c1i2onn ci2op cio2v ci2ó1a ci1ó ci2ó1á ci2óc ci2ódar ció1da ci2ó1e ci2óg ci2ó1í ci2ókal ció1ka ci2ókam ci2ó1ká ci2ó1ke ci2ó1kl ci2ókom ció1ko ci2ókos ci2ó1ku ci2ól ci2ómag ció1ma ci2ó1má ci2ó1né ci2ó1o ci2ó1ó ci2ó1ö ci2ó1Å‘ ci2ó1p2 ci2ó1sá ci2ó1se ció2s1ér ció1sé ci2ó1s2ká ci2ó1s1zo ció1s2z2 ci2ó1tá ci2ó1ú ci2ó1ü ci2ózón ció1zó ciÅ‘2r ci1Å‘ ci2rat ci1ra 2c1i2rán ci1rá 2c1i2rod ci1ro 2c1irt ci2s2i. ci1si 2c1is1ko 2c1ism 2c1isp ci1stad cis1ta ci2s1z1i cis2z ci2t1aj ci1ta citá2r ci1tá cit1á2r. cit1á1ra cit1á1ré cit1á1ro cit1érr ci1té ci2tik ci1ti ci2t1ol ci1to ci1t2y ciu1mi2 ci1u ciu2min ciu2m1i1o ciumköz1 cium1kö ciu2t 2c1i2vad ci1va 2c1i2vás ci1vá 1cí cí2ja cí2jé cí2m1a2 cí2m1á cí2m1e2l cí1me cí2m1é2l cí1mé cí2mí cí2mo cí2mö cí2mÅ‘ cí2mu cí2rá cí2ró cí2vá cí2ve cí2vé cí2z2s cí2zü ckabil1 c1ka cka1bi c1ka1ka2 c2k1alj c2k1arc cka2rom cka1ro c2k1ág c1ká ck1áll c2k1árn c2k1e2g c1ke cke1p 1cke2r. 1cker1k2 1ckern 1c2ket2t. c2key ck2é2p1e2l c1ké cké1pe c2k1é2ré c2k1érl c2k1ér1té ck1fr ck1ill c1ki ckin1g c2k1íz c1kí ck1kl ck1k2r ck2lu c2k1o2la c1ko ck1o2pe c2k1or1ro c2kor1ru c2kor1rú 1c2kosak cko1sa c2k1o1u c2k1öb c1kö ck1öss ck2re1á ck1re c1k2ri c1k2rí ck1sp c2k1üg c1kü ck1ült c2k1üt c2k1ü2v ck1űr c1kű ck2va cla2i c1la cla2u c2l2e. c1le cli2s c1li clu2b1a c1lu cme1lo1 c1me cnya2k cn2y c1nya 1co co2áz co1á co2be co2de co2e1u co1e co2is co1i co2kar co1ka co2ká co2ke co2kél co1ké co2ké2p 2c1o2kí 2c1o2laj co1la co2l1á1ro co1lá 2c1ol1da 2c1ol1dá 2c1ol1dó co2le co2l1ibr c2olib co1li co2li2m col1i1ma co2l1i2n2a. coli1na co2l1ing co2l1i2nu co2l1o2r co1lo 2c1olvad col1va 2c1olvas com1ba2 com2bal com2b1e2 com2biz com1bi com2bol com1bo com2bó2r com1bó com2bö 2c1oml co1mo2 co2ok co1o co2ol co2o1pe 2c1o2pe cop2f1Å‘ co1py 2c1orc 2c1o2ri 2c1orm co2rom co1ro 2c1or1ro 2c1or1rú 2corv 2c1oskol cos1ko co2s1o2ku c2osok co1so cos3s cos3z2s cos2z 2c1oszt co2te co2ub co1u co2uc co2ul co2un co2up co2ur co2us co2uv co2vi 1có c1ó2ni 2c1ó2rá c1ó2ri có2vó 1cö c1öl1tö c1ösv c1ös2z c1ötb c1ö2t1e c1ö2té c1ötf c1ötff c1öth c1ö2ti c1ötk c1ötm c1ötn c1ötr c1öts c1ött c1ö2tü c1ö2v. cö2zö 1cÅ‘ cÅ‘2rü cp2la cp2ra cp2re cp2ré cp2ri cp2ro cp2ró cre1s2 c1re cr2na c2s 1c1sa 2csabl 2cs1a2dat csa1da 2cs1a2dá 2cs1a2dó 2cs1akc csa2lakj csa1la csa2la1pú 2c2s1a2lá1í csa1lá 2csalát 2c2s1alb 2cs1alg 2cs1alk cs1al1le 2c2s1alm csa2lomb csa1lo cs1amb 2csant csa2pál csa1pá 2c3sap1ka 2csap1ká csa2por csa1po 2cs1a2pó1ká csa1pó 2cs1a2pókr 2cs1a2pósab csapó1sa 2cs1arc 2csarg 2csark 2c2s1arz 2cs1ass csa2t1ó2r csa1tó csava1r1a2 csa1va cs1a1zo 1c1sá csá2be 2csáf 2csáff 2cság cs1á2gak csá1ga cs1á2gu 2cs1á2rad csá1ra 2cs1á2rak 2c2s1á2ram 2c2s1á2rat csá2rát csá1rá 2cs1árn2y cs1á2ruk csá1ru 2c1s1á1sá 2c3sá1si 2cs1á2só 2cs1á2t1á2sás csá1tá csátá1sá 2c2s1átf 2c2s1átff 2c2s1átm 2csátr 2c3sá2v. 2c3sá1vo cs1bl cs1br cs1d2r 1c1se 2cse1bé cs1e2ce cse2c1sa csec2s 2cs1e2dé 2cs1ed2z c2s1ef8f c2s1eff cs1e2ges cse1ge 2c3se1gí 2cs1e2k2e. cse1ke 2c2self 2c2selff 2cs1el1lá 2cs1e2lÅ‘1í cse1lÅ‘ 2cs1el1ta 2cs1el1tá 2c2s1el2v. 2c3sel2y 2c2s1ember csem1be 2cs1e2mel cse1me 2cseml 2cse1mu csen2d1Å‘2 cse2nis cse1ni cse2n3yen csen2y cse1nye 2cs1enz cse1p2ré cse2rál cse1rá cse2r1e2ped csere1p cse1re csere1pe 2cse2ró 2c2se2rÅ‘ 2c2s1e2sÅ‘ 2c2s1eszm cses2z cse2tüz cse1tü 2c2s1e2vÅ‘ 2cs1ex 1c1sé 2cség c3sé2g. c3ségb c3ség3g c3ségh c3sé1gi c3ségn c3ségr 2c2s1é2hes csé1he 2c2s1éhs 2cs1é2ka 2c2s1éks 2cs1é1le csé2m1a 2cs1é2nekb csé1ne 2c2s1é2ne1ke 2cs1é2ne1ké 2cs1é2nek1k2 2cs1é2nekr 2cs1é2neks 2cs1é2nek1t2 2cs1é2ne1kü 2c2s1é2pí 2c2s1é2pü 2cs1ér1de csé2résk csé1ré 2c3sér2v. 2c3sérvb 2c3sérvh 2c3sérvr 2c3sérvv 2c2s1érz csé2s1za csés2z csé2tab csé1ta 2c2s1é2v. 2c2s1é2vek csé1ve 2c2s1évn 2c2s1évr 2c2s1évv cs1fr cs1gl cs1gr 1c1si csi1á2 2c2s1i2dÅ‘ 2c2s1i2gé 2c3si1mí 2c3simog csi1mo 2csim1po c2simp 2csin2a. csi1na 2c2s1i2nas 2c2s1ind 2cs1inp 2c2s1inv 2cs1i2o1no csi1o 2c3si1pí 2c3si1ví 2c2s1i2vó 1c1sí 2csí1ki 2c3sírb 2c3sírj cs1í2ró 2cs1í2v 2csí1ze 2c2s1ízl cs1ízn 2csízt c2s1í1zü cska1s cs1ka cskas2z2 cs1kl cs1kv c3s2lág cs1lá 1c1so 2cs1o2á 2cs1obj cso2k1á 2c3sok2k. 2c2s1o2koz cso1ko 2c2s1o2laj cso1la 2c2s1ol1da 2c2s1ol1dá 2cs1old2ó. c2sol1dó 2cs1oldók 2cs1oldóm 2cs1oldón 2cs1oldór 2cs1oldót 2cs1oldóv 2cs1o1li 2c2s1ol1ló 2c2s1olvas csol1va cson2t1a2 2cs1opc 2cs1orc 2cso1ri 2csork 2c3sorv 2cs1oszl c2sos2z 2cs1oszt 1c1só cs1ó1dá csó2kes csó1ke csó2k1ö2 2cs1ó1né 1c1sö 2cs1ök1rü cs1öml csön3n 2c3sö2r. c3sö1re 2cs1ös2s2z 2c2s1ö2v. 2cs1ö2zön csö1zö 1c1sÅ‘ 3cs2Å‘. 3csÅ‘b csőé2h csÅ‘1é 2cs1Å‘rz csÅ‘2sz1á2ra csÅ‘s2z csÅ‘1s1zá csÅ‘2szé2k csÅ‘1s1zé csÅ‘2s1zÅ‘ 3csÅ‘v c3s2pek cs1pe cs1p2l csp2r cs1p1ré cs1ps cs1sl cs1s2p cs1s2t cs3s2z2 cssza2kü2 cs1s1za c3s2tab cs1ta cs2top cs1to cst2r c3st1ru 1c1su 2c2s1udv 2csug 2c3su1ho c2s1ujj 2cs1u1na 2c2s1u2ni 2c2s1u1ra 2cs1u2rá cs1u2tas csu1ta 2cs1u1tá c2s1u1tó 1c1sú csú1p2 2cs1útn 1c1sü 2csüd 2c3sü3gé 2c2s1ü2g2y 2cs1ünn cs1ü2te 2c3süv 2cs1üz 1c1sű csvágya2d cs1vá csvág2y csvá1gya c4s3zac cs2z c1s1za cs3zaj csza2ké cs3zam c3szál c1s1zá c3szám c2s3záp cs3zát c3száz c3sz2c c3szer c1s1ze c3s1zé c3sz2f c3sz2ff c3s1zi c3s1zí c3sz2l c3szob c1s1zo cs3zokn c3szol cs3zon c3szor cs3zón c1s1zó c3s1zÅ‘ cs3z2s csz2t cs3zug c1s1zu c1s3zú c3s1zü c3s1zű c3sz2v ct2ra ct2re ct2ré ct2ri ct2ro ct2rü 1cu cuc1ci2 cuc2cin cu2él cu1é cu2in cu1i cu2i1u cuko2r1a2 cu1ko cula2te cu1la cu2lü 2c1und 2c1u2no cu2ral cu1ra 2c1u2tá 1cú cú2jí c1ú2r. c1úrr c1ú2ti cú2to 1cü cü2ge cü2g2y 2c1ü2lé cü2lÅ‘ c1ünn cü2re cü2rí cü2rü cü2te cü2té cü2tÅ‘ cü2ve cü2ze 1cű cű2zÅ‘ cv2a2ne2m c1va cva1ne cva2né2v cva1né cve1né2 c1ve cve2név cven3n c2z 1c1za cza2ib cza1i cza2i1é cza2ih cza2ik cza2in cza2ir cza2it cza2iv 1c1zá 1c1ze 2c3zen 1c1zé c3zéh 1c1zi 1c1zí 1c1zo 1c1zó 1c1zö 1c1zÅ‘ 1c1zu 1c1zú 1c1zü 1c1zű 1czy 2czye 2d. 1da daa2d da1a daát1 da1á 2d1ab1la da2c1ir da1ci da2c2z da2dag 1da1da dad1a1la 2dada1to 2d1a2dó d2a1d1rá d2a1d1ro dae2r da1e da2ew daé2d da1é daé2r da1f8l da1fl da1f2r da2g1e2l da1ge dag3g 2d1ahh da2i1re da1i 2d1a2ján da1já 2d1ajt 2d1a2kad da1ka daká2r da1ká 2d1akko1ra dak1ko d1ak1ku da1kl d2a1k2ré da1k2ri 2d1ak1tu dal1a2ga da1la dal1ajt da2lakj da2l1ak1ta da2l1ak1tá d1a2la1ku da2la1kú 2d1alakz da2l1a2l da2lapc da2lapk da2lapn da2lapr da2l1ap1s2 da2lapt 2d1a2la1pú da2lar da2l1as2z da2latt da2l1á2g da1lá da2l1ál da2l1á2rak dalá1ra da2l1á1rá da2l1árb da2l1árn da2l1árr dal1á2s2z da2l1á2ti da2l2e. da1le dale2l dal1e1lá da1l1e1le dal1ell dal1e2sé d2ales dalé2ke2 da1lé da2l1é2l. da2l1é2ne d2alén da2l1é2r. dal1f2 dal1ff da2lid da1li da2l1i2ko d2alik da2l1ikr d2a2l1i2m da2l1i2nát dali1ná da2lind da2l1inf da2l1inff da2l1ing da2l1inj da2l1int da2l1i2nu da2l1itt dali2z dal1i1zo 2d1al1ji dal3l 2d1al1lo dalo2m1e da1lo dalo1mo2 da2l1or da2lÅ‘r da1lÅ‘ dal1p2 dals2 dal1st dal1ud da1lu da2l1ur dalu2s dal1us2z da2l1u2t dalú2t da1lú da2l1ú1to dal1útr da2lü d1a2m2a. da1ma d1a2maz 2d1amc 2d1amf 2d1amff 2d1a2nal da1na 2d1ang d1a2nyag dan2y da1nya 2d1a2nyó dao2k da1o daó2r da1ó daó2v 2d1a2p2a. da1pa 2d1a2pa1i da2pa1ké da2páb da1pá da2pád da2pá1é da2páh da2pá1i da2pák da2pám da2pát da2páv 2d1apj da1p2l da2p2ó. da1pó 2d1app d2a1p1ro da1p2s 2dapt dara2be da1ra da2r1a2dó d2arad dar1a1la da2rant da2r1a1zo da2r1á1ta da1rá da2r1átf da2r1átff dar2c1e2 dar2c3h dar2c1so darc2s 2d1ar1cú dar2d1a2l dar1da dar2d1á dar2de2l dar1de dar2d1es dar2d1ó2 da2r1el da1re da2r1il da1ri darus3s2 da1ru dar1u1ta da2r1ü da2sál da1sá da1s2l da1s1pe 2d1as2s2z d2a1s2ta da1szl das2z daszt2 dasz2tá 2da1s1zú da2t1akt d2atak da1ta da2t1akv da2t1a2la da2t1alk dat1a1pu d2atap dat1ass da2t1att da2taz da2t1áll d2atál da1tá da2t1árad d2atár datá1ra datá2ramm datá2ramr da2t1á1ta da2t1á1tá2 da2t1e2lem da1te date1le dat1e2l1é dat1e1lí da2t1elk dat1ell da2t1e1lÅ‘ dat1elt d2a2t1é2g da1té da2tér1te d2atér da2t1ér1té da2t1érth da2t1érv da2tid da1ti dati2k da2t1i1ko da2tim da2t1inf d2atin da2t1inff dat1in1te dat1ist da2tiz d2a2t1ír da1tí dat1í1ve dat1k2 2d1atlas dat1la da2t1os2z da1to da2tóc da1tó 2datóm da2t1ó2r dató2s dat1ó1sá dat1t2 da2t1u2t da1tu da2tút da1tú da2tűr da1tű da2tya dat2y da2tyá 2d1a2uk da1u da2up 2d1a2ur dau2s dau2ta da3u2tó1p2 da2u1tó daü2t da1ü daü2z 2d1a2vat da1va 2d1avv da1vy da1ye da1yé 2d1a2z. da2zál da1zá 2d1a2zé da2zok da1zo da2zon 1dá 2d1á2bé 2d1ábr dá2c3ha dác2h dá2c3ho dá2fá dá2ga dá2gá dá2gú 2d1á2g2y dá2lál dá1lá dá2lár dá2l1e 2d1ál1lí dá2lü dá2ly1a2n dál2y dá1lya dá1lyú2 dá2ly1ús dá1mu2 dá2m1ut dá2m1ú dá2ny1a2d dán2y dá1nya dá2ny1al dá2ny1a2n dá2nyaz dá2nyó dá2po 2d1á2rad dá1ra dá2r1ag 2d1á2ra1i dá2r1a2j dá2ral 2d1á2ram dá2r1a2n dá2r1a2p dá2rar dá2ras dár1ass dá2rat dár1atk dá2rá dár1ál dá2r1e2 dá2réb dá1ré 2d1á2ri2a. dá1ri dári1a dá2rij dá2ril dá2r1i2p dár1isk dár1ism dá2rí dá2rod dá1ro dá2r1ond dá2r1ot dá2rö dá2rÅ‘ dár1s2 dárt2 dár1tr 2d1á2r2u. dá1ru dá2ruk dáru2s1á2g. d1á2rus dáru1sá dáru2s1á2ga dá2rú2 2d1ár2ú. dá2rü dá2rű dá2s1a2d dá1sa dá2sal dá2sar dá2s1á2g dá1sá dá2s1á2rad dásá1ra dá2s1árh dá2s1á2ru d1á2sás dá2s1á2t1a2 dá2s1e2 dásfé2l1é2v dás1fé dásfé1lé dá2sim dá1si dá2sis dá2sol dá1so dá2sor dá2só2 dá2s1ór dá2sö dá2sÅ‘ dást2 dás1tr dá2su2t dá1su dá2s1ü2 dá2szag dás2z dá1s1za dá2sza1ka dá2szal dá2szar dá2szav dá2sz1ál dá1s1zá dá2szár1k2 dá2sz1á2ro dá2s1ze dász1el dász1em dász1er dá2széb dá1s1zé dá2szi2p dá1s1zi dá2szir dá2szis dá2s1z1í2 2d1ászká1i dász1k2 dász1ká dá2s1z1ö dá2s1zÅ‘ dász3s dá2sz1us dá1s1zu dá2s1z1ú dá2s1z1ü2 dá2s1z1ű 2d1á2ta dát1al 2d1á2tá 2d1átd dá2t1e2 2d1á2té 2d1átf 2d1átff 2d1á2tí 2d1átj 2d1átk 2d1átm 2d1átr 3dá1tu 2d1á2tú 2d1átv dáza2té dá1za dba2l1 d1ba db2lo db2lú db2ro db2ró dc2lu dcsa2p1á2g dc2s d1c1sa dcsa1pá dd1elh d1de d2d1i2d d1di ddí2s d1dí d2d1o2d d1do dd2rá dd2ró d2d2z d3d1ze/dz=,1,1 d3d1zé/dz=,1,1 d3d1zü/dz=,1,1 d5dz2s d7dzs2é./dzs=dzs,1,4 d1d1z1sé d7dzse2l./dzs=dzs,1,4 d1d1z1se 1de de2a1a de1a de2a1á de2ac dea2d de2a1e de2a1é de2ag2y de2ah de2a1í de2a1la de2a1lá de2a1lo dea2n de2a1o de2ap dea1s2z de2aszf de2aszff de2at 2d1e2bé ded1ell de1de 2d1e2dén de1dé de2d1ó2v de1dó de1d1ra de2d1ú2 2ded2z de2d1zÅ‘ de2ep de1e dee2s deé2r de1é 2d1ef8f 2d1eff de1f2r de2g1a2l de1ga de2g1a2n de2g1ál de1gá de2g1e2l de1ge de2ger de2g1ék de1gé de2g1é1ri de2gés deg1éss de2gés2z1 deg3g de2giz de1gi 2de1go de2gor de2g1os de1gö2 de2g1öl de2gör de2g1ös 2de2gÅ‘ 2d1e2gye deg2y degyez1 2degz 2d1ehh deho2g de1ho de2if de1i de2iff dei2g deí2r de1í de2k1a2k de1ka de2kaz de2k1e2g de1ke de2kellen dekel1le de2kep dek1e2rÅ‘ de2k1es2z dek1ékb de1ké dek1é2ke de2k1él de2k1é1ri de2kér1te de2k1ér1té de2k1érv de2k1érz de1k1lu dek1old de1ko dek1s deks2z2 2d1e2l1a2d de1la de2lef de1le de2l1eff 2d1e2leg2y dele2m1a dele2má dele2meg dele1me d1e2lemek dele2mel de1lem1e1le dele2mu 2d1e2le1mű 2d1e2lemz dele2t1a2 2d1e2l1e2te1té dele1te 2d1e2l1é2k de1lé 2d1e2lél delés3s 2d1el1ha 2d1el1ho 2d1elkez1dé del1ke 2d1elkez1dÅ‘ del2lal del1la del2l1an del2l1e2g del1le delle2l del2l1e1le del2lelk 2d1elle1ná 2d1elle1ne del2l1ent del2ler del2l1é2j del1lé del2l1é2k del2l1in del1li del2l1is del2los del1lo del2lór del1ló del2lÅ‘r del1lÅ‘ 2d1el1ma 2d1el1nö de2l1os de1lo 2de1lö de2löl de2lÅ‘ad de1lÅ‘ delÅ‘1a 2d1e2lÅ‘1ka 2d1e2lÅ‘rej delÅ‘1re 2d1el1sa 2d1eltet2t. del1te 2d1eltér del1té 2d1el2v. 2d1el1vá 2d1elves del1ve 2d1el1vo 2d1elv2ű. del1vű 2d1elvű1e 2d1elvűk 2d1elvűn 2d1elvűr 2d1elvűs 2d1elvűt 2d1elvűv de2mad de1ma de2m1a2l de2maz de2m1á2l de1má de2mez de1me de2m1é2rem de1mé demé1re de2m1érm de2mi2m de1mi dem1ing 2demo1i de1mo dem1p de2mus de1mu demü2l de1mü de2nal de1na 2d1e2ner de1ne 2deng denkié2ne den1ki denki1é de2nol de1no de2n1ó2 dens1s de2od de1o de2of de2off de2oj de2o1lo de2om de2ot de2p2e. de1pe 2d1e2pé de1p2re de1p1ro de1p2s de2rad de1ra der1a1ka de2r1a2la de2r1a2n de2r1ar de2r1á2g de1rá de2r1á2r de2rás der1ázt 2d1er1dÅ‘ dere2c de1re 2d1e2redm 2d1e2re1je 2d1e2rején dere1jé 2d1e2rejér 2d1e2rejét 2d1e2rejűn dere1jű 2d1e2rejű2t. de2r1e2ke1i dere1ke der1e2le der1ell der1e2lÅ‘ der1elt de2r1e2sÅ‘ de2r1él de1ré de2rid de1ri de2r1il de2r1i2m de2r1in de2r1i2p de2r1i2s der2nék der1né de2r1os2z de1ro de2r1ó2r de1ró de2rÅ‘ 2d1er2Å‘. der1Å‘2s. 2d1erÅ‘t 2d1erÅ‘v der1sp dert2 der1th de1ru2 de2rut de2r1ü2g de1rü de2r1üld der1ü1le der1ültet derül1te dervis1s der1vi 2de2s1a2 2desg de2sip de1si 2d1es1kü 2destes des1te de1s1to de2su2r de1su de1sú2 de2s1úr 2d1eszm des2z de1sz2ta de2sz2ű. de1s1zű de2t1ék de1té de2ti1ka de1ti de2ti1ká 2d1e2vÅ‘ 2d1evv de2we de2xa de1xi2 de2xin de2xiz de2xí de2x1o de2xö 2de1za de2zak de2zér de1zé de2zil de1zi de2zin de2z1or de1zo dezÅ‘1e2 de1zÅ‘ dezÅ‘kés2z1 dezÅ‘1ké 2d1ezr 1dé 2d1ébr dé2dap dé1da dé2d1Å‘ dé2du dé1f8l dé1fl dé2g1a2 dé2g1á2 dé2g1e2b dé1ge dé2g1eg dé2gép dé1gé dé2g1érk dé2gés dég1és2z dég3g dég1i1ga dégi2g dé1gi dé2gi2gé dé2gin dé2gí dé2g1ok dé1go dé2got dé2gó dég1s dé2g1u2 dé2gú dé2gű 2d1é2hes dé1he 2d1éhs 2d1é2j. 2d1éjb dé2k1ab dé1ka dé2kac dé2k1a2d dé2k1a2l dé2k1a2n dé2k1ap dé2k1as dé2k1a1u dé2kaz dé2k1ág dé1ká dé2k1árt2 dé2kás dé2k1á1t1a2 dé2k1e2g dé1ke déke2l dé2k1e1le dék1ell dék1e1lÅ‘ dé2k1elt dé2k1er dé2k1es2z dé2k1e1ti dé2kez dé2k1é2j dé1ké dé2k1é2k dé2k1é2l dé2k1é2r. dé2k1é1te dék1is2z dé1ki dé2ki1vá dé2kí dékkulc2s1 dék1ku dé2k1old dé1ko dé2kop dé2k1or dé2k1os2z dé1kó2 dé2kór dé2k1ö2v dé1kö dé2köz dé2kÅ‘ dék2rém dék1ré dé2k1ut dé1ku dé2lad dé1la dé2lam dé2l1á2 dé2leg dé1le dé2le2l dél1e1lÅ‘ dé2les dél1est 2d1é2let dé2li2m dé1li dé2li1o délkö2z1ön dél1kö délkö1zö dé2lo dé2l1ö2 2d1é2lÅ‘ dé2l1u2 dé2lük dé1lü dé2lyö dél2y dé2m1e2l dé1me dé2m1e2m dé1na2 dén1ac déná1r1a2 dé1ná 2d1é2ne1ke dé1ne dé2ny1el dén2y dé1nye dé2nyid dé1nyi dé2nyo dé2nyö2 dé1p2i 2d1é2pí 2d1é2pü dé2rag dé1ra dé2ral dé2r1an dé2rar dé2ras dé2rá dér1d2 dé2reg dé1re dé2r1eml dér1e1sé dé2r1est dé2rez dé2rés dé1ré dé2rif dé1ri dé2riff dé2r1ik dé2rí dé2rot dé1ro dé1ró2 dé2rór dé2rö 2d1ér1té 2d1érth dé2r1ú2t dé1rú dé1ry 2d1ér1zé dé1sa2 dé2s1aj dé2sal dé2sap dé2sar dé2s1az dé1sá2 dé2s1ár dé2seg dé1se dé2s1e2l dé2s1e1ti dé2s1ég dé1sé dé2sí dé2sú dé2s1ü2t dé1sü dész1ak dés2z dé1s1za d2é2s3zá dé2sz1ék dé1s1zé dé2szév dé2s1z1o dé2s1zú dé2t1as dé1ta dé2t1e2g dé1te dé2t1is dé1ti 2d1ét1ke dé2tÅ‘r dé1tÅ‘ dé2tu 2d1é2v. 2d1évb 2d1é2v2e. dé1ve 2d1é2ve1i 2d1é2vek 2d1é2vem 2d1é2ven 2d1é2ve2s. 2d1é2vesb 2d1é2vesek déve1se 2d1é2vesen 2d1é2vesh 2d1é2ve1si 2d1é2vesk 2d1é2vesn 2d1é2vesr 2d1é2vess 2d1é2vet 2d1évez 2d1é2véb dé1vé 2d1é2vé1i 2dévén 2dévér 2d1é2vét 2d1é2vév 2d1évf 2d1évff 2d1évh 2d1é2vi 2d1évk 2d1évn 2d1évr 2d1évs 2d1évt 2d1é2vu 2d1é2vü 2d1évv 2d1évz dfé2nyem d1fé dfén2y dfé1nye df2lo df8l dflo dfl df2ló dfló df2rá df2ri df2ro df2rö dgá2zár d1gá dgá1zá dgázát1 dgá2zi dgá2zó d2g2e. d1ge dg2le dg2li dg2ló dg2ra dg2rá dg2ró d2gyu dg2y dha2de d1ha d2ha1li dhan2g1e2 d3hang dhe2i d1he dhé2t1 d1hé d2h2i. d1hi d2hi1é d2hih d2hi1i d2hij d2hik d2hir dhú2s1á2 d1hú 1di di2a1a di1a di2a1á dia1b di2a1bá di2a1bi di2abr di2ac dia1d2 dia3da 1di2a1di di2a1do di2a1e di2a1é di2a1fa di2ag2y di2ah di2ai2k dia1i di2a1í di2aj di2akép dia1ké di2akol dia1ko di2a1la di2a1lá di2a1li di3a1lu di2am di2a1na di2a1ná di2a1ni di2a1nó di2a1o di2a1ó di2a1ö di2a1Å‘ di2a1p2 di2a1ra di2a1s1za dias2z di2asz1ke di2a1s1zó di2a1t2 di2a1u2 di2a1ú di2a1ü di2a1ű di2av di2az diá2k1e di1á diá2kol diá1ko dián3n di1c2k di2cs1aj dic2s di1c1sa di2cs1e2r di1c1se 2d1i2deg di1de 2d1i2dej di2de1o 2d1i2dén di1dé di2d1i2o di1di 2d1i2dÅ‘ di2e1u di1e di1f8l di1fl di2g2a. di1ga 2d1i2gá1ná di1gá di2g2e. di1ge di2g1e2l 2d1i2gén di1gé di2gét di1g1li 2d1i2jes di1je di2kép di1ké di1k2l 2d1i2konh di1ko di1k2ro dik1u2ta d2ikut di1ku di1k2v di2la2n di1la dile2m di1le dilig2 di1li di2lö di2l1Å‘ di2lü di1l2y di2m2a. di1ma 2d1i2má di2mit di1mi 2d1imp 2d1i2na1ka di1na 2dind 2d1inf 2d1inff din1ga2 din2gal 2d1in1gá 2d1inger din1ge 2d1i2nic di1ni d2i2n1ing 2d1inj di2nód di1nó di2n1óm di2n1ó2n di2n1ó2r di2nö 2d1inp 2d1in1té 2d1inv di2o1a di1o di2o1i di2ok di2ol di2o1me di2ov di2ó1a di1ó di2ó1á di2ó1e di2óg di2ó1í di2ókam dió1ka di2ó1ká di2ó1kl di2ókok dió1ko di2ó1ku di2ó1mé di2ó1o di2ó1ó di2ó1ö di2ó1Å‘ di2ó1p2 di2ó1rá di2ó1ri dió2si2 diós1ik di3óso2r. di2ósor dió1so di2ós1pe di2ó1s1zű dió1s2z2 di2ó1u di2ó1ú di2ó1ü 2d1i2pa2r. di1pa 2d1i2pa1rá 2d1i2parb 2d1i2pa1ri 2d1i2pa1ro 2d1i2rat di1ra 2d1i2rá 2d1i2rod di1ro 2d1irt di2saj di1sa 2d1i2s2i. di1si 2d1is1ko 2d1ism 2d1is1te di2tal di1ta dit1a2la di2t1e2g di1te dit1t2 di2tü diu1mé2 di1u diu2m1én diu2mil diu1mi diú2t di1ú di2vad di1va 2d1i2var diva2t1a 2d1i2zé 1dí dí2gé dí2j1á1to dí1já dí2je dí2jí dí2jö dí2jü 2d1í2rá dí1ri2 dí2rik 2d1í2ró dí2s1z1a dís2z dí2szer dí1s1ze dí2s1zö dítés3s dí1té 2d1í2v. 2d1í2ve 2dívn 2d1í2vü 2d1í2vű dí2zi dí2z2s dí2zü dí2zű 1d2jeb d1je dj2eg dje2gya djeg2y dj1is d1ji djo2n1 d1jo dka2n1á2 d1ka dki1a2 d1ki dki1e2 dk2la dk2li dk2lo dk2lu dk2rá dk2ré dk2ri dk2ro dk2ró dk2va dk2vi dlás3s d1lá dlá2s3z dle1í2 d1le dló1g2 d1ló dló2s1o dlót2 dlÅ‘1kr d1lÅ‘ dme2g1ér d1me dme1gé dna2pe d1na dné2v1á d1né dnö2k1ö2l d1nö dnö1kö 1do do2áz do1á do2b1ag do1ba do2b1a2l doba2n do2b1an2y do2b1ár do1bá do2bát do1be2 do2b1el do2b1ill do1bi do2bí 2dob1je do2bo1á do1bo do2b1old do2b1or do2bö do2bü do2bű 2d1o2dú do2gar do1ga do2gár do1gá dogás1s do2gic do1gi do2g1ol do1go do2gor do1g1rá do2gü do2kal do1ka do2kas do2káj do1ká do2k1ál do2k1e do2k1é2l do1ké do2ké2p dok1kö2 dok2k1öb dok2kÅ‘ do2k1ott do1ko 2d1o2koz do2kö dokú2t do1kú dok1ú1to do2kü 2d1o2laj do1la dol2a2tar dola1ta dola2t1e dola2t1ör dola1tö 2d1ol1da 2d1ol1dá 2d1ol1do 2d1ol1dó 2d1oltár dol1tá 2d1oltás 2d1olvas dol1va dom1a2cé do1ma do2m1árb do1má do2m1á1ré do2m1árh do2m1árj do2m1árk do2m1árl do2m1árn do2m1á2ron domá1ro do2m1árr do2m1ár1tó dom2ba2l dom1ba dom2bel dom1be dom2bol dom1bo dom2bón dom1bó do2me2l do1me 2do1mí 2doml do2m1ond do1mo do2mÅ‘ 2do1mú do2mü do2n1ad do1na dona2l don1a1la do2n1a2r do2n1as do2n1ál do1ná do2n1á1ta do2n1átj do2n1áts do2n1átv don1d2 do2n1e donos1s do1no do2n1os2z do2nö don1s dont2 don1tr do2nü do2nyal don2y do1nya do2nyar do2nye do2nyó 2d1o2pe do1p2l dor1akn do1ra do2r1a2l1 do2r1a2p do2r1as do2rat dor1áll do1rá do2r1á2lo dord2 dor1dr do2re2 do2rid do1ri do2r1il do2r1is do2r1i1ta dor1k2 do2r1okl do1ro dor1oszt doros2z do2rö do2rÅ‘ 2d1or1rú dors2 dor1sp dor1t1ró dorú2t do1rú do2rü 2d1orvos dor1vo dot2t1ér dot1té do2u1a do1u do2ug do2ur do2us do2ut do2ux 2d1o2vi do1ye 1dó 2dóa2d dó1a dóá2g dó1á dóá2r dó1bl 2dóez dó1e dó1f8l dó1fl dó1f2r 2dó1gá dó1g2r dói2g dó1i dóí2v dó1í dó1k2l dó1k1ré dó1k2v dó2mab dó1ma dó2mak dóm1org d2ómor dó1mo dó2mÅ‘ dóó2r dó1ó dó1p2l dó1p2r dó2rád dó1rá d1ó2rák dó2ri1á dó1ri dó2sam dó1sa dó2sas dó2sel dó1se 3dós2i. dó1si dó2si2p dó2sis dó2sír dó1sí dó1s2ká dó1s1pe dó1s1pi dó1s2rá dós3s dó1stáb d2ós1tá d2ó1st2r dó2s1ű2 dós2z2 dó1szf dó1szff d2ó1szp dó1t2r 2d1ó2vó 1dö d1öbl dö2ga dö2gá dö2g1el dö1ge dö2gev dög3g dög1na2 dö2go dö2gó dög1ö2lÅ‘ dö1gö dö2g1Å‘ dö2gu dö2ka dö2ká dö2k1e2l dö1ke dö2k1e2r dö2kék dö1ké dö2k1é2r. dö2kí 2d1öntöz dön1tö dö2ra dö2rá dö2ro 2d1ö2röks dö1rö dör2z1se dörz4s 2d1ös2z d1ötl döt2tért döt1té dö2ve dö2vi 1dÅ‘ dÅ‘a2n dÅ‘1a dőá2g dÅ‘1á dÅ‘1bl dÅ‘1cl dÅ‘1d1ra dÅ‘e2l dÅ‘1e dÅ‘e2r dőé2l dÅ‘1é dőé2te dÅ‘1f8l dÅ‘1fl dÅ‘1f2r dÅ‘gé2p1e2ké dÅ‘1gé dÅ‘gé1pe dÅ‘1gr dÅ‘i2rá2 dÅ‘1i dÅ‘i2ta dÅ‘1kl dÅ‘1kv dÅ‘2ny1a dÅ‘n2y dÅ‘2nye1le dÅ‘1nye dÅ‘1pl dÅ‘1pr 2d1Å‘2r1áb dÅ‘1rá 2d1Å‘2r1á2l 2d1Å‘2reb dÅ‘1re dÅ‘r1eg2y dÅ‘r1e1le dÅ‘r1e1lÅ‘ 2d1Å‘2rem 2d1Å‘2r2é. dÅ‘1ré 2d1Å‘2réh 2dÅ‘rék 2d1Å‘2r1é2l 2dÅ‘rén 2d1Å‘rh 2d1Å‘2r1if dÅ‘1ri 2d1Å‘2r1iff 2d1Å‘2ril 2d1Å‘2r1in 2d1Å‘2rip dÅ‘2r1is 2dÅ‘rok dÅ‘1ro 2d1Å‘2r1or 2dÅ‘ros dÅ‘2röd dÅ‘1rö dÅ‘2r1öz 2d1Å‘2r1Å‘r dÅ‘1rÅ‘ 2d1Å‘2r1un dÅ‘1ru 2d1Å‘2r1u2r 2d1Å‘2rut 2d1Å‘2rü2 dÅ‘r1üg dÅ‘r1ül 2d1Å‘rz dÅ‘2s1érv dÅ‘1sé dÅ‘1s1ká dÅ‘1s2m dÅ‘1s1ni dÅ‘so2d dÅ‘1so dÅ‘s1o1do dÅ‘1s1pe dÅ‘1s2pi dÅ‘1s1pó dÅ‘1s2ta dÅ‘1s1té dÅ‘1st2r dÅ‘1sv dÅ‘1s2z2 dÅ‘t1áll dÅ‘1tá dÅ‘1t2r dp2la dp2le dp2lé dp2ra dp2re dp2ré dp2ri dp2rí dp2ro dp2ró dp2s2z dra1ps d1ra dravas2z1 dra1va drág1g d1rá drá2sz1ál drás2z drá1s1zá drá2s1ze drá1ta2 drá2tal drá2t1e2 drá2t1ér drá1té dren2d1Å‘2 d1re 1d2ress2z. dres2s2z 1d2resszb dres5s1ze/sz=,4,1 1d2resszh 1d2ressz1k2 1d2resszr 1d2res1s1zü dr2é2s1zá d1ré drés2z dro2g1a d1ro dro2gá dro2gen dro1ge drogé2n1i2 dro1gé drog3g dro2g1ó2 dro2n1a2 dro2nyi dron2y dros2z2 dro1t2r dr2ó2baj d1ró dró1ba dró2t1a2 dró2t1á2 dró2tis dró1ti dró2t1ü2 d2ru1i d1ru dru2se dru2si dság1g d1sá ds2c2h dsé2g1el d1sé dsé1ge dsé2gül d3sé1gü ds2ho ds2ká ds2li ds2pe ds2pi ds2po ds2rá d1s2tan ds1ta d1s2tat d1s2tá ds1te2 d1s2tí ds1to2 d1st2r dsza2ké ds2z d1s1za dszá2las d1s1zá dszá1la dszáraz1 dszá1ra d1s1z2e dsze2ra dsze2r1á dsze2r1elv d3szerel dsze1re dsze2r1o dszert2 d1sz2l d1szn d1sz2p d1sz2t2 d1sz2v dta2g1a2 d1ta dtalpa2d dtal1pa dtal2p1a1da dtal2p1al dta2n1á2s dta1ná d2t1ékn d1té dt1o1la d1to d1t2rá d1t2ré d1t2ri d1t2ro d1t2róf dt1ró d1t2róff d2t1ül d1tü 1du du2cem du1ce du2c3h du2cö du2cü due2l du1e du2gal du1ga du2g1ár du1gá 2d1ugr du2is du1i 2duit 2d1ujj dula1k2 du1la dula2t1í du2l1e du2lép du1lé du1li2 du2l1im du2l1in du2lis du2lí du2lö du2lű 2d1u2ni 2d1u2no 2d1unt du2ó1a du1ó du2ó1á du2ód du2óf du2óff du2ól du2óp du2ra1i du1ra du2rak du2ral 2d1u2rat du2ráb du1rá du2ráh du2rát du2ruk du1ru du2sal du1sa du2san du2sar du2s1as du2sál du1sá du2seg du1se du2s1ér1té du1sé du2sin du1si du2s1iv du2sol du1so du2sÅ‘ du2s1ű 2du1s1zo dus2z dus3z2s du2t1i 2d1u2to du2t2ó. du1tó du2tór du2tu 1dú dú2ce dú2c2h d2ú2c1se dúc2s d2ú2c3so dúc3s2z dú1dr dú2j1é2 dú2jí dú2r1a2c dú1ra dú2ral dú2r1e2 dú2rén dú1ré 2d1ú2ron dú1ro dú2rö dú2s1zá dús2z dú2s1zó dú2t1a2 dú2té 2d1útj d1útl 2d1útn dú2to2n1 dú1to 2d1útr 1dü 1dü2dü dü2g2y dü2gy1érn dü1gyé dü2ha dü2há dü2hel dü1he dü2ho dü2hÅ‘ dü2két dü1ké dü2lá 2d1üld dü2lep dü1le dülÅ‘s2 dü1lÅ‘ 2d1ün1ne dü2rí dü2te dü2té dü2tÅ‘ dü2ve dü2ze dü2zé 1dű dű1pr d1űrl dű1s2z dű1tr dű2zé dű2zÅ‘ dv2a2raj d1va dva1ra dva2r1e dva2r1ó2 dvá2nya2n d1vá dván2y dvá1nya dvá2nyí dv1á1ta2 dv1á1te d2v1e1ce d1ve dv1e2leg dve1le dv1elk dven2t1í dve2ra2l dve1ra dve2rár dve1rá dve2rip dve1ri dver1s dve2sal dve1sa d2v1e2sés dve1sé d2v1e2te1té dve1te dv1élm d1vé d2v1ép d2v1ér1d2 d2v1é2ri d2v1ér1té d2v1érz dv1fr dvi2c1sa d1vi dvic2s dvi2c1sá d2v1i1ga d2v1i2gaz1 dvitéz1 dvi1té dv1or d1vo dvö2l d1vö dv1ö1lÅ‘ dv1Å‘s d1vÅ‘ dv1Å‘z dv1pr dv1un d1vu dv1ú2t d1vú d2v1üg d1vü d2v1ü2z d2v1űz d1vű dwa1yi d1wa dy1as d1yéb d1yén dy1é1tÅ‘ d1yév dy2jé dy2ke dyk2k dyk2n dyk2t dy2vé d2z 1d1za dza1é2 2d3zaj dzak2 dza1kr 1d1zá dzá2r1ó2ra d3zárór dzá1ró dzás1s d3zás2z 1d1ze 1d1zé dzé2sa 1d1zi 2d3zil 1d1zí 1d1zo 1d1zó 1d1zö 1d1zÅ‘ dzÅ‘1a2 2dzÅ‘1bÅ‘ 2dzÅ‘d 2dzÅ‘j 2dzÅ‘1né 2dzÅ‘r 1d1z1sa dz2s 1d1z1sá 1d1z1se 2dzs1e2g 2dzs1es2z 1d1z1sé 1d1z1si 2dzs1is d3zsiv 1d1z1sí 1d1z1so2 dzs1ok 1d1z1só 1d1z1sö 1d1z1sÅ‘ dzs1s 1d1z1su 1d1z1sú 2d2zs1új 1d1z1sü 1d1z1sű 1d1zu 1d1zú 1d1zü 1d1zű 2e. e1a ea2bál ea1bá e2a1bo e2a1bÅ‘ ea2dak ea1da ea2dand2ó. eadan1dó ea2dandó1a ea2dandób ea2dandók ea2dandón ea2dandót ea2das ea2dat ea2dá eadás1s ea2dod ea1do ea2dog ea2dok ea2dom ea2dot ea2dó ea1d2r ea2du eae2v ea1e eaé2d ea1é e2a1fá e2a1fe e2af8i e2aï¬ e2a1fo e2a1fö e2a1fÅ‘ e2a1fü e2a1fű ea2gi e2a1gó e2a2gu e2aid ea1i e2ail e2aim e2aip e2ais ea2ja e2a2k. ea2kas ea1ka e2akat e2a1ká e2akb e2a1ke e2akép ea1ké e2akh e2a1ki e2a1kí e2a1kl e2a1ko e2a1kó e2a1kö e2a1k2r e2a1kú e2a1kü e2alán ea1lá eal1eg ea1le ea2lu e2a2m. e2a1ma e2a1má e2amel ea1me e2amer e2a1mé e2amin ea1mi ea2mo e2a1mu e2a1mú e2a1mű e2a2n. e2a1ne e2a1né ean2n e2a1nö e2ans ea2nya ean2y e2a1pi e2a1po e2a1pó e2a1p2ro e2a2r. ea2ran ea1ra ea2ras ea2rat ea2rá e2arb e2a1re e2arh e2arj e2arl e2arn e2a1ró e2arr e2a1ru e2a1rü e2a1ry e2a1so e2a1st2 e2a1sü e2a1sű e2aszem eas2z ea1s1ze e2a1s1zé e2a1ta e2a1tá e2atc e2a1te ea2t1eg e2a1té2 e2a2tél ea2t1é2ne e2atf e2atff e2atg e2ath ea2tid ea1ti eat1ing e2atin e2a2tip e2a2tir e2atm eatmo1s eat1mo eatmos2z2 e2atn e2a1to e2a2t1or e2a1tó e2a1tö e2a1t2rak eat1ra e2at2rón eat1ró e2ats e2a1tu e2a2tü e2a1tű e2atz e2a2u. ea1u ea2ub e2a2ud e2a2uf e2a2uff e2a2um ea2ut e2a2ux ea2uÅŸ e2a1vi ea1vy ea2zo e1á eá2bé eá2c2s eá2ga eá2gá eá2gi eá2go eá2gu eá2g2y eá2hí eá2k1e eá2k1osk eá1ko eá1la2 eá2lad eá2l1ak eá2lál eá1lá eá2l1á2r eá2l1e2 eá1lé2 eá2lél eál1fe2 eá2li2d eá1li eá2l1in eá2lir eá2l1ism eá2lop eá1lo eá2l1ór eá1ló eá2lö eá2mu eá2nac eá1na eá2nal eá2n1at eá1ná2 eá2nár eá2n1át eá2n1e2 eá2ny1a2l eán2y eá1nya eá2ny1a2n eá2nyap eá2nyar eá2ny1as eá2nyav eá2ny1e2 eá2nyén eá1nyé eá2ny1é2r. eá2nyif eá1nyi eá2nyiff eá2ny1ing eá2nyis eá2ny1o2ku eá1nyo eá2nyö eá2po eá2rad eá1ra eá2ram eá2ras eá2raz eá2ru eá2rú eá2sa eá2sá eá2sí eá2só eá2su eá2s2z eá1ta2 eá2t1e2 eá2té eá2tí eá2tu eá2tü e2ba2d e1ba eb1a1dó eb1ad1ta eb1a1ga e2b1ajk e2b1a2la e2b1alk eb1ant eb1a2n2y eb1atl e2b1a1u eb1a2zo eb1ágg e1bá e2b1áp eb1á1ra ebe1á2 e1be e2b1e2he e2b1ejt ebe2l1á e2b1e2lef ebe1le e2b1e2l1eff ebe2l1e1me e2b1elhel ebel1he e2b1enc e2b1es1te e2b1es1té ebe2szek ebes2z ebe1s1ze e2b1ex e2b1ég e1bé eb1ép e2b1érd e2b1ér1té ebért2 e2b1érz eb1gr e2b1i2d e1bi e2b1i2na e2b1inf e2b1inff e2b1ing e2b1i1rá e2b1i2s e2b1izz eb1kl eb1kr eb2lat eb1la e1b2lú eb1okt e1bo eb1o2la eb1orv eb1öb e1bö eb1ös eb2rus eb1ru ebst2 eb1tr eb1u1ga e1bu e3bus e2b1üg e1bü ebü2l eb1ü1lé e2b1ür eb1üz ec1ajt e1ca ec1alk e2c1a2n e2c1az ec1ág e1cá e2c1ál ec1ár ec1bl ec2c1a2 ec2c1ér ec1cé ec2c3h ec2c1i ec1c1sa2 ec2c2s eccs1át ec1c1sá ec3c1so ec2cú e2c1eg e1ce e2c1e1lo e2c1elv 2ecen1to e2cetb ece2t1o 1e2cets 1e2cett e2ce1tü ece2tüz e2c1e1vé ec3har ec2h e1c1ha ec3hen e1c1he ec3hez ec3h2i. e1c1hi 1e2c1hó e1c1h1u ec2ka ec2le ec2lu e2csad ec2s e1c1sa e2cs1a2la e2cs1a2n ecsa2p1á2g ecsa1pá e2cs1a2pák ecs1a1rá ecsá2r e1c1sá ecs1á1rá ecs1árb ecs1á1ro e2cs1á2t e2cs1é2l e1c1sé e2cs1é2r. ecs1ér1té e2cs1ol e1c1so e2cs1öl e1c1sö ecs1s ecsúszós1 e1c1sú ec2sús2z ecsú1s1zó e2c3sükb e1c1sü e2c3süt ec3s1ze ecs2z e2c1ud e1cu e1c3zá ec2z e1c3ze e2d1ab e1da e2d1a2dá ed1a2n2y e2d1a2z e2d1á2c e1dá e2d1ág e2d1áp ed1eg2y e1de edele1me2 ede1le e2d1e1lo e2d1eml ede2rak ede1ra ede2r1ál ede1rá ede2rel ede1re ede2r1ék ede1ré ede2r1o ede2r1ü2l ede1rü ede2s1o ede2tá ede2tel ede1te ede2t1é2r. ede1té e2d1é2j e1dé edé2ká edé2kis edé1ki edé2k1o edé2lyá edél2y edé2lyo 1e2dénn 1e2dén2y e2d1ép e2d1ér1d2 edé2sa2 edé2so edés3s edé2s3z e2d1é2vén edé1vé e2d1é2vér ed1gr 2edic e1di e2di1de e2d1i2ga edigaz1 ed1ill e2d1int e2d1i1ra ed1i1ro 2edi1u e2d1ír e1dí e2d1ívn e2d1íz ed1old e1do ed1orv e2d1os e2d1o2x e2d1ös e1dö e2d1Å‘rs e1dÅ‘ edÅ‘2s1ü ed1pl ed1pr ed2ram ed1ra e1d2rog ed1ro e1d2ró e2d1üg e1dü e2d1üt e2d1űz e1dű ed2v1a2 ed1vá2 ed2v1ár ed2vát edv1é2r. ed1vé ed2v1öz ed1vö edy1i e2d3zá ed2z 1e2dzÅ‘1i e1d1zÅ‘ 1e2dzÅ‘j 1e2dzÅ‘r 1e2dzÅ‘v 1edzv e1e ee2bé ee2c2s ee2d2z ee2ge ee2gé ee2gés2z1 ee2g2y ee2he ee2ke e2e2l. ee2la ee2le e2eléb ee1lé ee2léd e2elg ee2lo ee2lÅ‘ ee2me ee3men ee2mé ee2mu e2e2n. e2enb ee2n2e. ee1ne e2enj e2enp e2ent e2enw ee2n2y ee2pe ee2pé ee2po e2e2r. ee2re ee2ro ee2ró ee2rÅ‘ ee2sé ee2sü ee2s2z ee2te e2e1t2h ee2uw ee1u ee2ve ee2vé ee2vi ee2vo ee2vÅ‘ ee2zü e1é eé2de eé2ge eé2gé eé2gÅ‘ eé2gü eé2he eé2je eé2jé eé2ke eé2kí eé2le eé2lé eé2li eé2lÅ‘ eélÅ‘kés2z1 eélÅ‘1ké eé2lü eé2lű eé2me eé2ne eé2pí eépítés1s eépí1té eé2pü eé2ré eé2ri eé2rÅ‘ eé2rü eé2s2z eé2te eé2ve eé2vé eé2vi eé2vü efa2x1i2 e1fa efek2tá e1fe efek2t1í2 efenyÅ‘1é2 efen2y efe1nyÅ‘ ef2f1in ef8f eff8i effin ef2f1o eff1o eff e1f2la ef8l e1fla efl efle2x1i2k ef1le efle1xi efle2x1i2k efle efle1xi ef2lu eflu efo2n1alk e1fo efo1na efo2nik efo1ni efor1ma2 efor2m1al ef1pl e1f2rá ef2rö e2g1a2bá e1ga ega2be eg1abl e2g1abr e2g1a2cé ega2c2s e2g1a2d e2g1a2g ega2i2 e2g1a2j e2g1a2k e3g2a3ké ega2lac ega1la ega2lak ega2lan eg1a2lap e2g1a2lá e2g1alh e2g1alj e2g1alm e2g1als e2g1alt e2g1a2m eg1ang eg1ann eg1ant eg1a2n2y e2g1a2pa eg1a1pá ega2po eg1a2pó e2g1apr eg1arc ega2ri eg1a2ro eg1art e2g1ass e2g1a2s1za egas2z e2g1a2s1zo e2ga1s1zú eg1atk ega1t2r e3g2at2y e2g1a2u eg1a2va e3g2azol ega1zo e2ga2zon e3g2á1ba e1gá e3g2á1bó eg1á2c2s e2g1áf e2g1áff e2g1á2g eg1áh e3g2á1i e3g2á1ja e3g2á1já egá2ju egá2m e3g2án e2g1áp e2g1á2rá e2g1árb e3g2árg e2g1árn egá2ro eg1árt egá2ru egá2rú egá2sa e3g2á2t. e3g2á1tu e3g2á1va egá2zá egá2zi egá2zu eg1bl eg1br eg1d2r e2g1e2bé e1ge ege2c1s1ö2 egec2s eg1ed2z e2g1e2ge eg1e1he e2g1e2kés ege1ké e2ge1la e3geled ege1le ege2lej e2gelekt eg1e2lemb e2g1e2le1me e2g1e2lemn e2g1e2lemr e2g1e2lemt ege2l1e2s eg1e2lég ege1lé eg1e2lér e2g1elf e2g1elff e3g2elg e2g1el1ha e3g2elit ege1li e2g1el1já e2g1elm e3g2el1ne e2g1e1lo e3g2elÅ‘1á ege1lÅ‘ ege2lÅ‘b1be e3g2elÅ‘d e3g2elÅ‘f e3g2előff e3g2elÅ‘1i e3g2elÅ‘m e3gelÅ‘1nye egelÅ‘n2y e2g1el1tá e3g2eltet egel1te e3g2el1tü e2g1el1vá e2g1elz e2g1e2mel ege1me e3g2end e3g2e1nye egen2y eg1e1pe eg1epr e3ge1rá e2gerd 1eger2e. ege1re e2gered 1e2gerek e2ge1ré ege2rén2y eg1erk e3gerl e2g1e2ró e2g1e2rÅ‘ eg2esek ege1se e2g1ese1te e2g1eszk eges2z e2ge2tal ege1ta eg1e2ve e2g1ex e2g1é2g e1gé e3g2émb e2g1é2ne1ke egé1ne e2g1é2nek1k2 egé2ny1e2l eg2én2y egé1nye e2g1é2pí eg1éps e2gé2r. e2gérb egé2r1es egé1re e2gé2re2t egér1e1te egé2rez e2gé1ré egé2rés e2gérg e2gé1ri egé2r2i. e2gérk e2gérn e2g1é2r2Å‘. egé1rÅ‘ e2gérr e2gérs e2g1ér1té e2g1érth e2gér1tÅ‘ e2gérv e2gés2z eg1észl 1egész2s e2g1é1te eg1f8l eg1fl eg2gim eg1gi eg5gyal eg2g2y eg1gya eg5gyan eg5gyás eg1gyá eg5gyú 2e1g2he2l. eg1he e3g2i. e1gi e2g1ibr eg1idd eg1i2de e3gi1e egi2g e3gi2g. e2g1i1ga e2g1i2gé eg1ij e2g1i2ko eg1ikr e2g1ill eg1imb e2gimm e2g1inf e2g1inff e2g1ing eg1i1no e2g1ins e3g2i1o eg1i1ra e2g1i2ro eg1iss eg1ist egi2s2z e2g1i2ta e3g2i1tá e2g1i1va e2g1i1vá e3gi1ve eg1i1zé eg1izg eg1izm eg1izz e2g1íg e1gí e2g1ín e2g1í2r e2g1ív e2g1íz eg1kl eg1kr eg1kv e2g1ob e1go e2goc e2g1o2d eg1oh e2go1i e2g1o2k eg1o2la e2g1old eg1olv e3gol2y 2egom ego2mi e2gont e2g1op eg1org e3g2orom ego1ro ego2ros e2g1orr e2g1orv eg1os e2gos2z e2g1ot e3g2ó. e1gó e3g2ób egó2do eg1ó2ra eg1ó1rá eg1óv e2g1öb e1gö eg1ök eg1ö1rö e3g2örög egö2röm eg1öt eg1öv e2g1ö2z egÅ‘kés2z1 e1gÅ‘ egÅ‘1ké e3gÅ‘1re eg1Å‘1ri eg1Å‘1rö egÅ‘2s1zi egÅ‘s2z e3g2Å‘z eg1pl eg1pr eg1ps e1g2rat eg1ra e1g2róf eg1ró e1g2róff eg1ry eg1sk eg1sl eg1sm eg1sp eg1s2t egs2z2 eg1szt2 eg1tr e3g2ub e1gu eg1ud e2g1uj e3g2um eg1u2n e2g1u2r2a. egu1ra e2g1u2ra1i e2g1u2rak e2g1u2ras e2g1u2rat e2g1u2rá e3gu1ru e2g1u2s egu2t eg1u1ta eg1u1tá eg1u2z eg1új e1gú e3g2ún eg1úr eg1ús eg1út e2g1üd e1gü egü2gye egüg2y e2g1ü2gyi e2g1ü2le eg1ü2li e2g1üs e2g1üt e2g1üv e2g1üz e2g1űz e1gű egváro1si2 eg1vá egvá1ro e2gy1a2d eg2y e1gya egy1a2g e2gy1aj egy1akt egy1a2la e2gy1a1rá e2gy1as egy1a2t e2gy1a1u egy1az e2gy1ál e1gyá egy1á2rá e2gy1árf e2gy1árff e2gyát e2gy1eleg e1gye egye1le e2gyelemz egy1elf egy1elff egy1ell egy1e1lo egy1e2lÅ‘j egye1lÅ‘ egy1e2lÅ‘v egy1elz e2gye1ni 1e2gyenl 1e2gyens egy1eszt egyes2z 1e2gyezm egy1éks e1gyé e2gy1é2r. e2gyip e1gyi e2gyis e2gy1iz egy1ok e1gyo e2gy1ol egyo2r e2gy1os egy1ot e2gy1ó2r e1gyó egy1ö2l e1gyö e2gy1ös e2gy1öz egy1Å‘2r e1gyÅ‘ e1gyu2 egy1ur egy1ut 1e2gyüt e1gyü egyvá1ro2 egy1vá 1egzis eg1zi eha2de e1ha ehá2zal e1há ehá1za e2h1el1lá e1he ehe2lyes ehel2y ehe1lye ehe2rál ehe1rá ehe2rát ehe1re2 ehe2r1el ehe2r1em ehe2ren ehe2res ehe2rin ehe1ri ehe2rol ehe1ro e2h1é2je2 e1hé ehé2ná ehé2név ehé1né ehé2zá ehé2zo2 e2h1ors e1ho eh1s2z e1i ei2áb ei1á ei2áh ei2áj ei2án ei2ár ei2át ei2áv e2ibn ei2de1á ei1de e1i2de1i ei2de1o ei2dén ei1dé e2idl ei2dom ei1do e2i1dó ei2dÅ‘ e2idp e2i1du e2ier ei1e ei2gá ei2gé e2i1g2n ei2g2y ei2ha e2i2l. e2i1la eil2l2e. eil1le ei2m2a. ei1ma ei2man ei2má e2imf e2imff ei2mit ei1mi e2imk e2iml e2ims e2imz ei1na2 ei2n1ad ei2n1á2 ei2neg ei1ne e2inér ei1né e2inét e2infr ei2n1i1ta ei1ni e2iniz ei2nol ei1no ei2nÅ‘ ein1t2r ei2nü e2inw e2inz ei2on ei1o ei2pa e2ipp ei2ram ei1ra ei2rat ei2ri ei2rod ei1ro e2i1ró ei2ta e2itb e2itj e2itn e2itr ei1tz ei2va ei2vá ei2vo ei2vó ei2zé e2iz1mi ei2zo e1í eí2gé eí2já eí2jú eí2ra eí2rá eí3rás1be eí3rásil eírá1si eí3rásoc eírá1so eí3rásonk eí2r2ó. eí1ró eí2ró1a eí2ró1á2 eí2rób eí2ródn eí2róf eí2róff eí2róg eí2róh eí2ró2i. eíró1i eí2róik eí2róin eí2róit eí2ró1í2 eí2ró1ja eí2ró1já eí2ró1je eí2ró1ju eí2rók eí2róm eí2ró2n. eí2ró1na eí2ró1ná eí2rón2y eí2rór eí2rót2 eí2róv eí2té eí2vá eí2ve eí2vé eí2vi eí2vo eí2vó eí2ze eí2zü eí2zű ej1ab e1ja e2j1a2d ej1a2g e2jak ej1ak1k2 ej1a2l ej1a2n ej1ar ej1a1u ej1a2z ej1áb e1já e2j1á2g ej1ál e2j1ár1tó ej1á2t1e2 ej1átv ej1bl ej1br ejcsa2p1 ejc2s ej1c1sa ej1dr eje2c e1je e2j1e1c1se ejec2s e2j1ef e2j1eff e2j1e2ged eje1ge e2j1e2gé e2j1ekc e2j1e2la e2j1elc e2jele1de eje1le e2j1e2lemb e2j1e2le1me e2j1e2le1mé e2j1e2lemn e2j1elf e2j1elff e2j1el1ha e2j1elhel ejel1he e2j1e2l1o2 e2j1el1s1zá ejels2z e2j1eltér ejel1té e2j1e2lu e2j1eng e2j1enz e2j1es2s2z eje2s2z e2j1ex e2j1é2j e1jé e2j1é2k e2j1él e2j1ép e2j1é1te ej1fr ej1g2r e2j1i2d e1ji e2j1im ej1i1na e2j1int e2j1ip e2j1iz ej1íg e1jí ej1ív ej1kl ej1kv ej2mok ej1mo ej1ol e1jo ej1op ej1óc e1jó ej1ón ejó2sá ej1ót ej1óv e2j1öb e1jö e2j1öl e2j1ö2v2e. ejö1ve e2j1Å‘z e1jÅ‘ ej1pl ej1pr ej1sp ej1st2 ej2tad ej1ta ej2ta1u ej2tál ej1tá ej2tát ej2t1elk ej1te ej2t1es1te ej2tev ejté2r ej1té ejt1é1ré ej2tin ej1ti ej2tiz ej2tos ej1to ej2t1ó2r ej1tó ej2töd ej1tö ej2t1ö2l ej2tön ej2tös ej1t1ra ej1t1ró ej2tür ej1tü ej1új e1jú ej1úr ej1ú2t e2j1üg e1jü e2j1ür e2j1ü2t e2j1üv e2j1üz e2k1abl e1ka ek1a2cé ek1a2dá e2k1a2dó eka2g2y ek1a2ja e2k1ajt2ó. ekaj1tó e2k1ajtó1i e2k1ajtók e2k1ajtón e2k1ajtór e2k1ajtót ek1a2kar eka1ka e2k1alj e2k1a2lo ek1alt e2k1ang e2k1a1ni ek1a2nyá ekan2y ek1ar2c. ek1ar1ca ek1arcr ek1ar1cú eka2si2p eka1si e2k1a1u ek1a1zo e2k1ág e1ká ek1ál1lo ek1álm e2k1á2rad eká1ra eká2ra1i ek1á2rak ek1á2ras e2k1á2rá e2k1ár1d2 e2k1árf e2k1árff e2k1árh e2k1árk e2k1árm e2k1árn e2k1á2ron eká1ro e2k1árr e2k1á2ru e2k1á2rú e2k1árv ek1á2só ek1á1ta ek1átd e2k1áth ek1átj e2k1átm ek1á2to e2k1átt ek1bl ek1br 1ekcém ek1cé ekci2óf ek1ci ekci1ó ekci2óff ek1cl ek1dr e2k1e1bé e1ke e2k1e2d2z e2k1egg e2k1e2gye ekeg2y e2k1e2ké1bÅ‘ eke1ké e2k1e2kés e2ke1la e2k1e2leg eke1le e2ke2le1me ek1el1ha e2k1elk e2k1el1lá e2k1elm e2k1e1lo e2k1elÅ‘n eke1lÅ‘ e2k1elr ek1el1ta ekel2t1é2r ekel1té e2k1e2ma e2k1e2mel eke1me ek1e2més eke1mé ek1e2pi e2k1estr eke2sze1le ekes2z eke1s1ze eke2s1zo e2k1e2vé e2k1e1vi 1e2kééh e1ké eké1é e2k1ég 1e2kéik eké1i ek1ékek eké1ke e2k1ékt ek1é2le ek1éln ek1é1lÅ‘ e2k1é2pí e2k1érin eké1ri e2k1értékb ekér1té eké2rül eké1rü2 e2k1és2z. ekés2z e2k1észh e2k1észn eké2tel eké1te e2k1étk e2k1étl e2k1étt e2k1é2v2e. eké1ve e2k1é2vek e2k1é2vet e2k1é1vi ek1fr ek1gn ek1gr eki1á2 e1ki e2k1i2ga ekigaz1 e2k1i2ge e2k1i1gé eki1i2 ek1ill e2k1i1ma e2ki2már eki1má e2k1i1ná e2k1ind e2k1isk e2k1ism e2k1isp2 ek1i2zo e2k1íj e1kí ek1í2rá ek1íz ekka2ró2 ek1ka ek2k1e1le ek1ke ek2k1elf ek2k1elff ekk1os2z ek1ko ek1k1ri ek2kű eklés3s ek1lé ek2lim ek1li ek3nÅ‘ e2k1o1á e1ko ek1obj e2k1odv e2k1o2la ek1ol1ló e2k1olv e2k1o2pe ekor2da ekor2d1á2 ek1o2rom eko1ro ek1or1ra e2k1orv ek1otth e2k1ó2h e1kó ek1ó2ra ek1ó2rá ekö2k e1kö e2k1ö1kö e2k1ö2lé ek1ö2lÅ‘ e2k1öm e2k1önk e2k1önt ekö2ri e2k1örv ek1pl ek1pr ek1ps e1k2ram ek1ra e1kré1tá ek1ré ek2ris ek1ri ek2ri1ti e1k2rí ek2róm ek1ró ek1sl ek1sm ek1sp ek1s2t eksz1al eks2z ek1s1za ek2szi2p ek1s1zi ek2ta1u ek1ta ek2taz ekt1elk ek1te ek2t1es2z ek2t1érd ek1té ek2til ek1ti ek2ti2m ek2t1i2o ek2t1ok ek1to ektus1s2 ek1tu e2k1ud e1ku e2k1u2ra ek1u1ro e2k1u1tá e2k1u1tó e2k1uz e2k1új e1kú e2k1ú2r. ekú2t ek1ú1to ek1útv e2k1ünn e1kü ekü2t ek1ü1tÅ‘ ek1üzl e1k2vó el1a2ba e1la el1abl el1a2bort ela1bo el1a2cé e2l1a2d el1agg el1a2g2y el1a2j e2l1a2kad ela1ka e2l1a2kas el1akc e2l1a2l el1a2m el1a1na elan2di el1a2ne el1a2ni el1ann ela2n2y el1a2pa 2ela2r el1a1ra el1a1rá el1a1ré el1a1s1za elas2z el1a1s1zi el1a1s1zó el1a1s1zu e2l1a2u el1a2va el1a2ve el1a1zo elá2bé e1lá el1á2g. e2l1á2ga el1ágg el1á2gi el1ágn el1á2go el1á2j el1áld el1áll el1á2lo elá2m el1á2mí el2án elá2ná2 elá2ne elá2nó el1á2p el1á2r. el1á2rá el1árb el1árc el1á2re el1á2ré el1árf el1árff el1árh el1árk el1árn el1á2ro el1á1rö el1árr el1árt2 el1á2ru el1á2rú elá2s elá1ta2 el1á1t1e2 el1átf el1átff el1átk el1átl el1átm el1átr el1á1zi el1á1zo2 el1ázt el1bl 2el2d. el1d2r ele1b1re e1le 2ele2d. 1e2ledel ele1de el1ef8f el1eff ele2g1e2lé ele1ge el1e2gye1ne eleg2y ele1gye e2le1gyü el1egz eleí3ran ele1í eleí2ra ele1k2l e3lek3tron ele2k1os ele1ko ele1k1rá 1elektr e2l1elb e2l1e2lemb ele1le e2l1elm e2lelÅ‘z ele1lÅ‘ el1elr ele2mad ele1ma e2l1ember elem1be 1elem2e. ele1me 1e2leme1i 1elemek ele2mell 1e2leme2m. 1e2lememm 1e2leme2s. 1e2lemesn ele2mes2z ele2mélt ele1mé ele2mérd 1e2lemük ele1mü 1e2lemünk 1e2lem1zé 1e2lem1zÅ‘ 2el2end e2le2ner ele1ne ele2né2l ele1né ele1ó2 ele2pal ele1pa ele2pa2p e1le2pe2le ele1pe ele2pell ele2p1Å‘2r ele1pÅ‘ e2lerd el1e2red ele1re el1e2re1i el1erj e2l1ern e2le2róz ele1ró e2le2se1ge ele1se ele2sésb ele1sé ele2sé1se ele2sé1sé ele2sésh ele2sé1si ele2sésk ele2sésn ele2sésr ele2sés3s ele2sést ele2sé1sü ele2si2k. ele1si e2l1esnén eles1né ele2sÅ‘b ele1sÅ‘ ele2sÅ‘s e2l1essél eles1sé ele1s1ta ele2szek eles2z ele1s1ze ele2t1e2két ele1te elete1ké ele2te1ti ele2tetn ele2te1tÅ‘ ele2t1ék ele1té ele2té2l ele2t1í e2l1ették elet1té ele1ü2 1e2l1e2vÅ‘k ele1vÅ‘ el1e2xi e2lébb e1lé elé2du el1é2ges elé1ge el1é2get el1égj el1égtek elég1te el1égv e2l1é2het elé1he elé1ka2 elé2kak elé2k1an elé2k1á elé2k1e2le elé1ke elé2kev elé2ke1ze elé2ke1zi elé2kezt el1é1kí elé2kö elé2ku el1é2l. el1éld elé2led elé1le el1é2let e1l1é2lé el1élh el1é2li el1élj el1éln el1éls e2l1élt el1é2lü e2l1élv e2l1é2ne1ke elé1ne e2l1é2nekh e2l1é2red elé1re e2l1é2rem elé2rend elére2n e2l1é2rez elé2ré2t. elé1ré elé2r2i. elé1ri e2l1érp e2l1ér1rÅ‘ e2lértel elér1te e2l1ér1té el1érth e2l1ér1tÅ‘ e2l1é2rü e2l1érz 2elésé1tÅ‘2 elé1sé elé2so 2elés2z. elés2z 2elészel elé1s1ze 2elészem 2elész1ne 2elész1né 2elé1s1zÅ‘ 2elé1s1zü 2elészv elé2tel elé1te e2l1é2tes elé2te1te e2l1étk e2l1étt e2l1é2v. el1f8l el1fl el1f2r el1gl 1elhap el1ha elhó2n el1hó el2ib e1li eli2c2h e2l1i2deg eli1de el1i1dé el1i2do el1i1ga e2l1i1gé e2l1ill e2l1i2ma e2li1má e2l1im1p2 e2l1i2na e2l1in1to el1i2on eli1o eli2o1s eli1Å‘2 e2l1i2p e2l1i1ra e2l1i2ro e2l1i2si e2l1ism el1iss el1is1te eli2tin eli1ti eli2tol eli1to eli1tu2 el1i2vá e2l2ix el1izm el1i2zo e2l1íg e1lí el1í2rá e2l1í2v elka2r1á el1ka 1elkez1dé el1ke 1elkez1dÅ‘ el3ki el1k2l el1k2r el1kv el2l1a2dá el1la el2l1a2dó ell1alk el2l1amb el2lamp ella1t el2la1u el2l1ábr el1lá el2l1áll 1ellátá1so ellá1tá 1ellátá2s1ü2 1ellátm el2lef el1le el2l1eff elle2g1ó2 ell1el1ké el2lelm 1elle1ná 1ell2enes elle1ne 1ellenf 1ellenff 1elle1nÅ‘ 1ellens 1ellenz el2lid el1li ell1inf ell1inff ell1in2g. ell1int el2l1or el1lo ell1os2z ell1ó1rá el1ló el2lön el1lö el2lös el2l1űr el1lű 1elmééh el1mé elmé1é 1elmél 1elmé1te 1elnép el1né 1elnök el1nö el1obj e1lo el1of8f el1off el1oj e2l1o2ká el1okm e2l1o2l el1oml el1o1mo el1ont el1opc e2l1o2pe el1o1ro el1orr el1os e2los2z e2l1ox eló2ig e1ló eló1i eló2in e2l1ó2ri el1öb e1lö el1ö2m e2l1ön e2l1ör e2l1ös e2l1ö2z 2előáp e1lÅ‘ elÅ‘1á 2előár 2elÅ‘1bé 2elÅ‘1bi 2elÅ‘1bo 1e2lÅ‘de1i elÅ‘1de elÅ‘2d1í2 1e2lÅ‘dj2e. elÅ‘d1je 2elÅ‘1do 1e2lÅ‘dö2t. elÅ‘1dö elÅ‘e2r elÅ‘1e 1e2lÅ‘1fú 2elÅ‘1fü 2elÅ‘1fű 1e2lÅ‘hív elÅ‘1hí 1e2lÅ‘1hű 2elÅ‘ib elÅ‘1i 2elÅ‘ik 2elÅ‘im 2elÅ‘iv 2elÅ‘1ja 2elÅ‘kel2Å‘. elÅ‘1ke elÅ‘ke1lÅ‘ 2elÅ‘k2é. elÅ‘1ké 2elÅ‘kért 1e2lÅ‘ké1se 1e2lÅ‘kést 2elÅ‘1kl 2elÅ‘1kÅ‘ 2elÅ‘kt 2elÅ‘1ku 2elÅ‘1kü 2elÅ‘1mö 2elÅ‘1mű 2elÅ‘1na 1e2lÅ‘nn 2elÅ‘1nö 1e2lÅ‘n2y. elÅ‘n2y 1e2lÅ‘nyb 2elÅ‘nyer elÅ‘1nye 1e2lÅ‘nyh 2elÅ‘1nyi 1e2lÅ‘nyk 1e2lÅ‘nyn 1e2lÅ‘1nyö 1e2lÅ‘nyr 1e2lÅ‘nyt 1e2lÅ‘1nyü 2elÅ‘1ö el1Å‘2r. 1e2lÅ‘reg elÅ‘1re 1e2lÅ‘reh 1e2lÅ‘rej el1Å‘riz elÅ‘1ri el1Å‘rl 2elÅ‘1ro e2l1Å‘1rü 2elÅ‘1sá 2elÅ‘1so 2elÅ‘1sö elÅ‘1s2p 2elÅ‘1s1ze elÅ‘s2z2 2elÅ‘1s1zé 2elÅ‘1s1zi 2elÅ‘1s1zó 2elÅ‘szÅ‘1ri elÅ‘1s1zÅ‘ 2elÅ‘1tü 2elÅ‘1ü 2elÅ‘vis elÅ‘1vi 2elÅ‘viz 1e2lÅ‘2z. e2lÅ‘1ze 2e3lÅ‘ze1ne 1e2lÅ‘zm el1p2l el1p1ró el1sk el1sl el1sm el1s1ta el1sz2t2 els2z el2t1aj el1ta 2elt2e. el1te el2t1e2re1i elte1re 2eltes 2elte2t. 2el1te1te 2elte1té 2elteth 2elte1ti 2eltetj 2eltetn 2eltets 1eltettk 2elte1tü 2eltetv 2eltéb el1té 2elté2l 2eltét el1t2ra el1t1rá el1t1ré 2eltük el1tü e2l1ud e1lu el1u2g elu2n e2l1und el1u2r e2l1u2t e2l1uz el1új e1lú el1ús el1ú2t el1üc e1lü e2l1üd e2l1üg elü2gy1é2r. elü2g2y elü1gyé elü2gy1érn elü2kén elü1ké e2l1ültet elül1te e2l1ür e2l1üs e2l1üt e2l1üv e2l1üz el1űrt e1lű e2l1űz elv1a1da el1va elv1a2dó el2v1at el2v1ára1i el1vá elvá1ra el2v1á2ras el2v1á2rár elvá1rá elv1ás2z el2vát el2v1enc el1ve el2v1é1gü el1vé elv1é1le el2v1é2r. el2v1é1ri el2vik el1vi elv1olt el1vo el2v1ó2 el2vöd el1vö el2vÅ‘ el2vú e2ly1a2 el2y e2ly1á2 e2ly1e2ké2n. e1lye elye1ké e2ly1el e2lyer ely1eszt elyes2z ely1é2jé e1lyé ely1é2ké e2ly1é2l e2lyés e2ly1i2ko e1lyi e2ly1i1ra ely2kéj ely1ké e2ly1o e2ly1ó e2lyöm e1lyö e2lyön e2lyös e2lyÅ‘ ely1ul e1lyu elyü2l e1lyü e2ly1ü1lé e2m1ab e1ma em1a2dat ema1da em1a2dás ema1dá e2m1a2do e2m1a2dó e2m1adt e2m1a2gi em1a2ja e2m1a1já em1ajk e2m1ajt em1a2ka em1a1ká ema1kh e2m1a1ku em1a2lap ema1la e2m1all em1al1má e2m1alv e2m1a1na 1e2ma1ná e2m1a2n2y ema2p em1a1pá em1apr em1a2rán ema1rá em1ar1co em1as1s1zo emas2s2z e2m1atl e2m1a2u e2m1a2v e2m1a2zo e2m1áb e1má emá2l em1á1la em1áld em1á1li e2m1áp emá2r e2m1á1ra e2m1árn e2m1á1ro e2m1á1ru em1árv e2m1á1sá e2m1á2t1a2 e2m1á1te2 e2m1átl em1átm e2m1átt e2m1á1tu 1embarg em1ba 1embered em1be embe1re 1embere2z. 1emberf 1emberff embe2r1Å‘2 1ember3s2 emb2len emb1le 1emb1lé em1b1re 1emb1ri em1b1ro em1dr e2m1ef e1me e2m1eff eme3ger eme1ge eme3gi em1egyet emeg2y eme1gye em1e1gyé e2m1egz e2m1e2kés eme1ké e2m1e1la e2m1elb 1e2melet eme1le 1emel1ke e2melk e2m1el1lá e2m1elm 2e2m1e1lo 1emelÅ‘b eme1lÅ‘ 1emelÅ‘1e em1elÅ‘n2y 1emelÅ‘s 1emelÅ‘v 1e2melt2y e2m1ember emem1be e2m1e2mel eme1me e2m1e1mu e2me2ner eme1ne e2m1e2p e2m1e2rén2y eme1ré e2m1e2rÅ‘ eme2sa e2m1e2se1té eme1se e2m1e2sés eme1sé e2m1e2szem emes2z eme1s1ze e2m1e2szet e2m1eszk e2m1eszm e2m1e1u e2m1e2v eme2z1a eme2z1á2 eme2z1o eme2z3s e2m1ég e1mé e2m1é2h2e. emé1he e2m1é2hen e2m1é2hes e2méhs e2m1é2j emé2k e2m1é1ke em1ékr em1é2let emé1le e2méne1ke emé1ne e2m1ép e2mértel emér1te e2m1érté1ke emér1té e2m1érté1ké e2m1értékn e2m1észl emés2z emé2t1a2 emé2tár emé1tá e2m1é2tek emé1te emé2tel e2m1éte2l. emét1elh emét1els2 em1f8l em1fl emfoga2d em1fo emfo1ga emfo2ga1da em1f2r em1gr 2emi1a e1mi e2mi1dé e2m1i2dÅ‘ e2m1i1ga e2m1i1ge e2m1i1gé emik1ro1 emikros2z2 e2m1iks emi1l2y emi2m em1i1ma e2mi1má e2m1inf e2m1inff e2m1ins e2m1in1te e2m1i2p e2m1i1ra e2mi1rá e2m1i1ro e2m1irt e2m1isk e2m1ism e2m1is1te emi2s1za emis2z emi2s1zá emi2s1zo em1i1zé em1izg e2m1i2zo e2míg e1mí e2m1íj e2mír e2m1í2v em1kl em1kr 1emlékm em1lé 1emlékv emo1gr e1mo emo2k e2m1okl em1o1ko e2m1ok1t em1o1la e2m1old em1oll e2m1olt e2m1o1pe e2m1ork e2m1or1s2 e2m1orv emo1t2 emó2ra e1mó em1ó2rá e2m1öb e1mö emö2k e2m1ö1kö emö2l e2m1öld em1ö1lé e2m1ön e2m1ö2r e2m1ös em1öv e2m1ö2z em1Å‘2r. e1mÅ‘ em1Å‘rk em1Å‘rn em1Å‘2rö em1Å‘rr em1Å‘rt 1empát em1pá em1pc em1p2re em1p1ré em1p1ro em1p1ró em1p2s em1sk em1sm em1sp em1s2t2 em1t2r 1e2m2u. e1mu e2mud e2mug e2muj 1e2muk 1e2mulz 1e2mum em1u1no e2mur e2mus2z em1u2tal emu1ta e2m1u2tá e2mutc e2m1u1tó e2m1új e1mú em1úr e2m1út e2m1üd e1mü e2m1üg e2m1ü2lÅ‘ e2m1ünn e2m1ür e2m1üt e2m1üv e2m1üz e2m1űz e1mű em1zr e2n1ab e1na en1a2do en1a1gi e2n1a2j e2n1a2k en1a2la en1alk en1all en1alm e2n1a2m ena2n e1n1a1na en1an2y en1a2pá ena2p1e en1a2rá en1arc en1as2z en1atk en1aut ena1u e2n1ábr e1ná en1ág en1áld en1álm e2n1á1ra en1árn en1á2ro e2n1á1ru en1átk en1átm en1átv e2n1áz en1bl en2c1a2 en2c1ár en1cá en2c3h en2cip en1ci en2cí en2c1ol en1co en2c1os en2c1ö2 en2c3ség enc2s en1c1sé en2c3sor en1c1so enc3s2p enc3s2z en2cu en1cy en2d1a1dá en1da en2d1alk en2da1no en2d1áll en1dá en2d1árn en2d1átl end1é2jé en1dé en2d1é2r. en2d1érr en2d1ér1tÅ‘ en2d1érz en2d1or en1do en2d1ón en1dó en2d1ó2r en2dös en1dö en1d2rá en2dú en2d1za end2z ene1á2 e1ne e2n1egér ene1gé ene1k1ri en1e2lek ene1le en1el1já en1elk e2n1ell en1elm en1eln2y en1e1lü en1el1vá 2enem e2n1eml ene1ó2 ene1p2 2ene1rá 1e2nerg e2n1ern e2nerv 2enes ene1sz1tá enes2z ene2tal ene1ta ene2tos ene1to 2enex ené2k1a e1né ené2ke2l ené1ke ené1ki2 ené2kis e2n1é2pí en1é1pü e2n1é2r. e2n1é1ré e2n1é1ri e2n1ér1te e2n1érv ené2s1za enés2z ené2szer ené1s1ze ené2sz1in ené1s1zi e2n1étk e2n1é2ves ené1ve ené2vi2g ené1vi en1f8l en1fl enflu1o2 enf1lu enflu1o2 enflu en1ga2 en2gan 1enge1dé en1ge enge2r1Å‘2 engés3s en1gé eng1g en1iam e1ni eni1a e2ni1dé enidi2o eni1di e2n1i2ga e2n1i1ge e2n1i1gé en1ill e2ni1má e2n1i1na e2n1ind e2n1inf e2n1inff e2n1in1te e2n1inv e2n1i1ra e2n1i2rá en1isk e2n1ism eni2s1za enis2z eni2szer eni1s1ze eni2s1zo eni2s1z1ó2 e2n1ív e1ní en1k2j en2n1e1me en1ne enn1é1ge en1né enné2k en2n1é1ke en2nér en2nir en1ni en2n1ol en1no en2nú en2n1ü2l en1nü enny1a2d en2n2y en1nya enny1as en1ny1á enny1el2v. en1nye en3nyer en1ny1í2 en3nyu e2n1obs e1no e2n1of e2n1off en1oid eno1i eno2k en1o1ko en1old e2n1olv eno2ni en1opt eno2r1á2 e2n1ost en1oszt enos2z e2n1ox enó1ta2 e1nó enó2tal enó2t1e2 e2n1öb e1nö e2n1öl en1ön e2n1ös e2n1ö2t e3növ e2n1Å‘2rü e1nÅ‘ en1pr en1ry en2s1ab en1sa en2s1a2l en2s1a2n en2sas en2s1el en1se en2s1ér1té en1sé ens3s1zá ens2s2z ens2tat ens1ta en2s3zon ens2z en1s1zo ent1a1cé en1ta en2ta1da entad2 ent1ag2y enta1k2 en2t1a2la ent1alj en2t1alk ent1a2lo ent1and en2t1a2n2y ent1ass en2t1á2rak en1tá entá1ra en2t1á2rat en2t1á1rá en2t1á2rú en2t1el1mé en1te ente2r1a en2t1es1te en2t1es1té en2t1es1ti ente1t2r en2t1é2g en1té en2tép en2térm en2t1é2v2e. enté1ve en2ti1gé en1ti enti2m2e. enti1me ent1in2g. en2t1i2o enti2p ent1i1pa enti2s2z en2t1okt en1to en2tön en1tö en1trad ent1ra ent2ran en2tu2n en1tu entu2r en2t1u1ra en2t1ü2z en1tü en1t2y en1u1ta e1nu en1úr e1nú en1út e2n1űz e1nű e2nyab en2y e1nya e2ny1a2d e2ny1a1e enya2g eny1a1ga eny1a1gá e2ny1aj eny1alk e2ny1a2n eny1a1ré e2ny1as e2ny1at e2ny1a1u eny1d2 e2ny1e2d1zé e1nye enyed2z e2nyelm eny1elÅ‘n enye1lÅ‘ eny1el1vo eny1el1vű e2ny1e2rÅ‘ e2ny1e1ve e2nyé1va e1nyé 1enyh2i. eny1hi eny2h1Å‘s eny1hÅ‘ e2ny1id e1nyi e2nying e2ny1i1ra e2nyiz eny1í2ró e1nyí e2nyok e1nyo e2ny1o2l e2ny1or e2ny1os e2ny1ó2 enyö2k e1nyö e2ny1ö1kö e2nyöt eny1s enyt2 eny1tr eny1út e1nyú eny1va2 eny2van 1enyv2e. eny1ve eny2v1e2l en2zal en1za 1enzim en1zi e1o eo2áz eo1á e2o1bo e2o1de eo2dú eo1gr e2og2raf eog1ra e2o1g2raff eo2gram e2og1rá e2o1ka eo2kád eo1ká e2okár e2o1ké e2o1k2l e2okon eo1ko eo2kos eo2kö eo2laj eo1la e2o1ló eo2l2y e2o1me e2o1mé e2o1mi eo2n1al eo1na eo2nan eo2n1a2t eo2n1a1u eo2n1ál eo1ná eo2nár eon1d2 eo2ner eo1ne eon1f2 eon1ff eo2niz eo1ni eo2nö eon1t2r eo2n1ú eo2nü e2o1pa eo2pe e2o1p2l e2o1p1ro eo2r1a2 eo2r1á2 eo2re2s eo1re eo2r1és eo1ré eorgi2a eor1gi e2orgi2áb eorgi1á eori2tá eo1ri eor1k2 eo2rö eor1s2 eo2so e2o1sp e2ost e2o1s1za eos2z eo1sz2f eo1sz2ff e2o1sz2k e2o1tí e2o1to eo1t2r eo2vi e1ó eóa2d eó1a e2ó1bö eó2ce eó2dá e2ó1fa e2ó1he e2ó1je e2ókap eó1ka e2ókép eó1ké e2ókor eó1ko e2ó1mi e2ó1mű e2ó1né eó2no eó1pr eó2rá e2ó1re e2ó1su e2ó1s1zo eós2z e2ó1ta e2ó1tá e2ó1te e2ó1té e2ó1ti e2ó1tí eó1t1ré eó2vak eó1va e2ó1ve e2ó1vé e2ó1ví eó2vo eó2vó e1ö eö2bö eö2dé eö2kö eö2le eö2lé eö2li eö2lö eö2lÅ‘ eö2lü eö2mö eö2nö eö2rö eö2rü e2öth eö2ve eö2vi eö2vü eö2zö e1Å‘ eÅ‘2re eÅ‘2rö eÅ‘2rü eÅ‘2s2z e2p1ab e1pa e2p1a2da e2p1a2dá e2p1a2dó ep1a2g2y e2p1a1ka e2p1akk e2p1akn ep1a2lak epa1la ep1a2lap e2p1alj e2p1alk epa2lom epa1lo e2p1a2n2y epa2rán epa1rá ep1at1ró ep1aut epa1u ep1a2zo e2p1áb e1pá e2p1á2g ep1ál1lá e2p1á2ra epá2s e2p1á1sa ep1á2t1a2 ep1átc e2p1á2t1é ep1átf ep1átff e2p1átm ep1á2t1o ep1átt ep1á2tü e2p1átv ep1bl ep1br ep1dr e2p1e2d2z e1pe e2p1e2lemr epe1le e2p1e2le2t e2p1el1lá e2p1e1lo e2p1e1ne epe2ral epe1ra epe2r1e2c epe1re epe2rev epe2rin epe1ri epe2rü2l epe1rü e2p1es1ti epe2s1zá epes2z e2pesz1mé e2p1ex 1e2péd e1pé 1e2pééb epé1é 1e2péé1i 1e2péén e2p1ég 1e2péit epé1i e2péj ep1ékh ep1é1le e2p1élm 1e2pénk e2p1é2r. ep1f8l ep1fl ep1i1do e1pi e2p1i2ko e2p1ind e2p1in1ga e2p1i2rá e2p1irt e2p1ism epit2 epi1th e2piz e2p1íg e1pí e2p1íj e2p1ín e2p1ív ep1kl ep1kr ep2lag ep1la e1p2la1ká e1p2lan e1p2lán ep1lá e2p1ob e1po e2poc2h ep1okt e2p1olv e2p1orn ep1or1só 1epos2z. epos2z 1epo1s1za 1epo1s1zá 1eposz2t. ep1osz1tá e2p1ö2l e1pö e2p1önt e2p1ös e2p1öv e2p1Å‘1ri e1pÅ‘ ep2pan ep1pa ep2pát ep1pá ep2p1e2le ep1pe ep2p1elh epp1e2ró ep1pó2 ep2pór ep2pö ep1p1ro ep1p1ró e2p3ret ep1re e1p2réd ep1ré e1p2rin ep1ri eprin2t1i e1p2roj ep1ro e1p2rot ep1sh ep1s2k ep1sp ep1st ep2ta2d ep1ta ep2t1aj ep2t1í2v ep1tí ep2t1op ep1to e2p1ug e1pu e2p1u2ta e2p1u1tó ep1új e1pú ep1út e2p1üg e1pü e2p1üt e2p1üz e2p1űz e1pű e2r1ab1la e1ra er1a2bor era1bo e2r1abr er1abs era2dat era1da e2r1a2dá e2r1adm er1a2do e2r1a2dó era1dr er1a2ge er1agr e2r1a2ja e2r1ajk er1aj1tó e2r1a2kad era1ka e2r1a2kas e2r1akc er1akk e2r1ak1ti er1a2la e2r1alg e2r1alj e2r1alk e2r1a2lo er1als e2r1alt er1alv er1am1b er1amp er1ang2y er1ann er1a2nya eran2y e2r1a2p2a. era1pa e2r1app er1aps e2r1a2ro e2r1asp era2sz1a2l eras2z era1s1za er2a2szav era2szárn era1s1zá er2a2szel era1s1ze era2sz1é2p era1s1zé e2r1atk e2r1atl era1t2r er1att er1aut era1u e2r1a2zo e2r1ábr e1rá erá2fé er1á1ge er1á2gú e2r1á2g2y er1ál1lá er1ál1lé er1ál1lo er1ál1ló er1állv e2r1á1po e2r1á2r. er1á2rak erá1ra e1r1á2rá e2r1árb er1á1re er1á1ré er1árf er1árff er1árk e2r1á2ro e2r1árr er1ár1s e2r1á2ru e2r1á1rú er1árv er1á1sá e2r1á2s2z er1á2t1e2 e2r1áth er1á2ti e2r1á2tí e2r1átj e2r1átk er1átl e2r1átm e2r1átn e2r1átr e2r1átt e2r1átv erb1i2na er1bi er2c1a2l er1ca er2car er2c1ár er1cá er2c1át erc1ell er1ce er2c3ho erc2h 2er1ci er2ci2d er2c1i1na er2c1i1ná er2c1i2pá er2cis erc1k2 er1co2 er2cö er2csad erc2s er1c1sa er2cs1an ercs1ál er1c1sá er2cú er1cy 1erdej er1de 1er1dÅ‘ ere1á2 e1re 1e2rede1tű ere1de e2redén ere1dé 1e2redm ere1e2 er1ef8f er1eff ere2gál ere1gá ere2gel ere1ge e2r1e2ger erei2g ere1i 1e2rején ere1jé 1e2rejér 1e2rejűe2k. ere1jű erejű1e 1e2rejűn 1e2rejű2t. ere2k1el ere1ke erek1e2s1zű erekes2z ere2k1é2j ere1ké ere2kot ere1ko erek1t ere2k1ú2s ere1kú e2r1e2leg ere1le e2r1elér ere1lé e2r1ellen erel1le er1el1li e2r1e1lö e2r1elr e2r1elvek erel1ve erem1eg2y ere1me ere2m1emb erem1ér1té ere1mé ere2m1ut ere1mu e2r1enz ere2pan ere1pa ere2pas ere1pá2 ere2p1ál ere2p1e2sé ere1pe ere2pin ere1pi ere2pos ere1po e2r1erk er1ern e2r1e1ró e2r1es1ti e2r1estj e2r1estr e2resz2e. eres2z ere1s1ze ere2s1zí e2re1s1zü ere2tál ere1tá ere2t1eg ere1te ere2t1erj er2eter ere2t1é2r2Å‘. ere1té ereté1rÅ‘ ere2t1é2v2e. ereté1ve ere1tö2 er1e2vés ere1vé e2r1ex 1e2reze2t. ere1ze 1e2reze1te 1e2rezÅ‘kh ere1zÅ‘ eré1be2 e1ré eré2bes er1é2g. er1é2ge er1é1gé e2r1é2j. e2r1éjb er1éjf er1éjff e2r1éjn e2r1éjs eré2k1a2 eré2ká eré2kol eré1ko eré2k1ö e2réne1ke eré1ne e2r1é2ne1ké eré2p1a eré2pá e2r1é2re2n eré1re e2r1é2ré e2r1é2ri eré2sa2 eré2s1elv eré1se eré2s1za erés2z er2é2s1zá eré2s1zo er2é2s1zö e2r1é2ter eré1te e2r1étk e2r1é2v. e2r1é2v2e. eré1ve e2r1é2vek e2réven e2r1é2ves e2r1é2vet e2r1é2vén eré1vé e2r1é2vé2t e2r1évf e2r1évff e2r1évh e2r1é2vi e2r1évn e2r1évr e2r1évt e2r1évv erfé2l1é2v er1fé erfé1lé er1f8l er1fl er1f2r er1gl e2r1i2deg e1ri eri1de e2ri1dé e2r1i1do er1i2du eri2ga e2r1i2gá eri2kon eri1ko e2r1i2mi eri2no erint2 e2rinteg erin1te erin1tr e2r1i2on eri1o eri2os e2r1i2par eri1pa e2r1i1ra er1i1ró e2r1isk e2r1ism eri2s1zo eris2z e2r1i1ta e2r1i2zé e2r1izg er1íg e1rí e2r1í2j. e2r1í1já e2r1ír e2r1í2z er1k2r er1k2v er1l2y erme2k1a2 er1me erme2ká2 erme2ke2s2z erme1ke erme2ko erme2köl erme1kö erme2s1z1á ermes2z er2mind er1mi erm1i2si ern1a1la er1na ern1ékn er1né ern3n er2n1ó2d2 er1nó er1n2y 1er1nyÅ‘ ero1gr e1ro er1okl e2r1okm er1ol1da e2r1o2li ero2nal ero1na ero1n2y e2r1o1pe e2r1opt er1orc er1ord er1orm er1orn e1r1o2ro er1or1s e2r1orv erosz2f eros2z erosz2ff e2r1o2ve e2r1o1vi e2r1óc e1ró er1ó2dá er1ó1lo er1ó2rá er1ó1ri e2r1ö2c e1rö erö2k er1ökl er1ö2ko e2r1ö1kö e2r1ö2l e2r1ör e2r1ös e2r1öt e2r1ö2z e2rÅ‘dd e1rÅ‘ erőé2n erÅ‘1é 1e2rÅ‘lt 1e2rÅ‘1mé erÅ‘mik1ro1 erÅ‘1mi 1e2rÅ‘1nö 1e2rÅ‘1ö e2r1Å‘1ri er1Å‘2rö er1p2l er1p2s er2qu er2rév er1ré er1ry er2s1a2d er1sa ers1alk er2s1an er2sat er2s1á2gi er1sá ers1á1ra ers1eml er1se er2sér1te er1sé er2s1ér1té er2s1ér1tÅ‘ er2si2d er1si er2s1im er2s1i2n er1s1ká er2s1od er1so er2s1ol er2s1ón er1só er1spor ers1po er1s1rá er1st1ra erst2r er2su2t er1su ersz2to ers2z er2t1a1i er1ta ertá2p er1tá ert1á1po ertára2d ertá1ra ertá2r1a1da er2t1el1ké er1te ert1estj ert1e1s1ze ertes2z er2t1é2j er1té er2t1ékn er2t1évén erté1vé er2t1é2vév er2tid er1ti er2t1i2m er2t1í2z er1tí er2t1os er1to ert1ó1rá er1tó er2t1ös er1tö er2t1öz er1t2ran ert1ra er1trén ert1ré ert1s er2t1út er1tú eru1bi2 e1ru 1e2rup e2r1u2ra er1u1rá e1r1u1ru er1u2s2z er1u2tá e2r1új e1rú e2r1úr e2r1ú2s er1útj er1útl er1ú2to2 er1útr e2r1üd e1rü e2r1ügg er1ügyb erüg2y e2r1ügyn er1ügyr e2r1ü2led erü1le e2r1ür e2r1üs e2r1üt e2r1ü2v e2r1üz e2r1ű2z e1rű er2v1a1la er1va er2v1alt erva2n erv1an2y er2v1á2ru er1vá er2vá1sa er2v1átk erv1e2lÅ‘1ké er1ve erve1lÅ‘ er2vere1ze erve1re er2v1e2s1ze erves2z er2vék er1vé er2vér1te er2v1érz er2vos er1vo er2vös er1vö er2vú er1ya 2es2a. e1sa e2s1a2b e2s1a2d 2esait esa1i e2s1al1ja e2s1alm esa2n es1an2y esa2p es1a1pá es1arc es1ass es1as2z e2s1a2t2y e2s1a1u 2esá1bó e1sá e2s1á2g 2esán es1á1ra es1á2ru 2esát es1bl es1br es1by es2c2h 1es1dÅ‘ es1d1ró 1e2sedez e1se ese1de ese1fr ese2gye eseg2y e2s1e2ké2n. ese1ké e2s1elm e2s1ember esem1be e2seng e2s1ep1ri e2s1erd eseren2 ese1re 1e2set1tü 2es2é. e1sé esé2g1el esé1ge 1e2séll 1e2sél2y e2s1ép e2s1érc esés3s es2ham es1ha e2s1i2d e1si esike2t1 esi1ke e2s1i1na es1i2pa e2s1isk 1esítÅ‘st e1sí esí1tÅ‘ es1í2zű e1s2kat2 es1ka e1s2kál es1ká es2kic es1ki e1skl 1es1kü es2lat es1la eslege2l es1le esle1ge esle2t1o es2lin es1li e1s2lu e1s2mac es1ma es1ná2 2eso2k. e1so 2eso1ka 2esok1bó 2esokk 2esokr 2eson e2s1op 2eso2s. 2eso1sa es1ost e2s1os2z es1ott e2s1ó2r e1só esÅ‘1ká2 e1sÅ‘ e2sÅ‘z es2pan es1pa es2pec es1pe es2pél es1pé es1p2l e1s2pó es2pur es1pu e1s2rá es1s1tá es1sy es3szab es2s2z es1s1za essz1a1ga essz1a2r essz1eg es1s1ze es5szenc/sz=,2,1 es3s2ze1rű essz1élet es1s1zé esszé1le ess2z1élt essz1int es1s1zi essz1ok es1s1zo es3s1zö es2taf es1ta es2taff est1a2la est1alp es2ta1na es2t1a2n2y estapolc1 esta1po es2t1a2ra e1s2tat es2taz es2t1á2p es1tá est1áram está1ra es2t1á1ri es2t1árn es2t1át 1este1ko es1te es2tenz este2r1a es2t1es1te es2t1es1ti 1estéih es1té esté1i 1estéj 1estém 1esténk es2t1é2r. es2t1é1ri es2t1érr es2tér1te es2t1é2rü es2t1ill es1ti es2t1i1na es2t1ing es2t1int es2tip es2t1i2s2z es2tiz es2t1ol es1to e1s2top esto2r es2t1ó2r es1tó es1tö2 es2t1ös es2t1Å‘2r. es1tÅ‘ es2t1Å‘rk es2t1Å‘1rö es2t1Å‘rr es2t1Å‘rt 2est1ro 2est1ró es2tun es1tu es2tú es2tür es1tü es2t1ü2z es1t2y e2s1ud e1su esu2r e2s1u1ra es1u1rá e2s1u1tá e2s1ú2r. e1sú e2s1úrb e2s1ú1ré e2s1úrh e2s1ú1ri e2s1úrk e2s1úrn e2s1úrp e2s1úrr e2s1úrt e2s1ú2t e2s1üz e1sü e2sza2c es2z e1s1za esz1a1cé e2szad e2sz1a2e esz1ajt esza2k1é esz1akn e2sz1alj esz1an2y e2sz1a1ra e2sz1a1u e2szárp e1s1zá e2szá1ru e2sz1ás eszá2t e2s2z1áts e2s2ze1ce e1s1ze eszeg1ér esze1gé e2sz1eg2y e2sz1ekés esze1ké e2sz1e1la e2sz1e2mel esze1me 1e2szenc e2sz1er1d2 e2szev e2sz1ex eszé2do e1s1zé esz1é2pí e2sz1é2ri esz1i2pa e1s1zi esz1isk esz1ist2 e2sz1i1ta e2sz1iz eszke2l esz1ke esz2kó2pá esz1kó esz2kópb esz2kópc esz2kóph esz2kó1pi esz2kópn esz2kóps esz2kópt esz2kó1pu 1eszm2e. esz1me 1eszméb esz1mé 1eszmé1i 1eszméj 1eszmék 1eszmén 1eszmét 1eszmév e2sz1old e1s1zo eszö2l e1s1zö esz1ö1lÅ‘ e2sz1ön es3z1sá esz2s es1z3se esz2tab esz1ta esz2tad esz2t1a2gá esz2taj esz2t1a1la esz2t1alj esz2t1ap esz2t1árf esz1tá esz2t1árff esz2t1árn 1eszter1ga esz1te eszter1g2 esz2t1e2v esz2t1é2r. esz1té esztés3s 1eszté1ti esz2tid esz1ti esz2t1ol esz1to esz2t1ó2r esz1tó esz1tö2 esz2t1ö2l esz2t1Å‘2r. esz1tÅ‘ esz2tut esz1tu esz2t1út esz1tú esz2tüz esz1tü esz1t2y e2sz1ü2g e1s1zü e2sz1ü2z 1e2szűs e1s1zű 1e2szűt esz1z et1abr e1ta eta2c et1a1cé e2t1a2d e2t1a2gá e2t1a2g2y e2t1a2j et1a2kas eta1ka e2t1akc et1a1kó e2t1a1ku e2ta2la2g1 eta1la eta2lak et1a2lás eta1lá e2t1alb et1ald et1alf et1alff e2t1alg et1alj e2t1alk 1e2ta1lo eta2n1é e2ta2nyag etan2y eta1nya e2tapr et1a2ra e2t1a1rá e2t1arc e2t1arz et1asp e2t1ass et1a2s1zá etas2z e2t1atk e2t1a2to e2t1at2y e2t1a2u e2t1a2z e2t1ábr e1tá e2t1á2c2s e2t1áf e2t1áff e2t1á2g. e2t1á2ga e2t1ágb e2t1ágg e2t1ágn e2t1ágr e2t1áh et1á1ju et1áll e2t1álm e2t1á2rad etá1ra et1á2r1e2 et1árn2y etá2ron etá1ro et1á2rú e2t1á2ta e2t1át1a2d e2t1áth et1átl et1áts et1á1tu e2t1átv et1bl et1br et2c2h et1dr ete1a2 e1te ete2g1á ete2g1e2l ete1ge ete2gó e2t1e2k2e. ete1ke e2t1e2ke1i e2t1e2kek ete2k1ék ete1ké e2t1e2kénk e2t1e2kés e2t1elc et1el1do etele1g2 ete1le ete2le1ge e2t1e2lej e2telemz e2t1e2le1sé e2t1elé1ré ete1lé etelés1s e2t1el1ha e2t1el1há et1elhel etel1he e2t1el1i1ga ete1li e2t1el1já e2t1el1lá e2tellen etel1le e2t1el1me e2t1elmé2n. etel1mé e2t1elmé1ne e2t1elmét e2t1elnev etel1ne e2tel1nö e2t1eln2y e2t1e2lo ete2lÅ‘ad ete1lÅ‘ etelÅ‘1a et1el1s1zá etels2 etels2z e2t1el1tá e2t1elter etel1te et1elté1rí etel1té e2t1el1vá e2t1elvez etel1ve e2t1el1vo e2t1elz ete2mal ete1ma e2t1ember etem1be ete2mel ete1me e2t1enz ete1p2 2eter e2t1er1d2 ete2rén ete1ré ete1ro1 e2t1e2rÅ‘ ete2s1a e2t1est2e. etes1te e2t1esz1té etes2z ete2te1té ete1te ete2t1é2r. ete1té 1e2tetése2n eteté1se 1e2tetésn ete2tos ete1to ete2t1ö ete1t1ra e2t1ezr eté1é2 e1té e2t1é2g. e2t1égb e2t1é2gé e2t1égg e2t1é2gi e2t1égn eté2k1a2 eté2k1á2 eté2k1e2l eté1ke et1é2kí2 eté2kos eté1ko e2t1élm e2t1érc e2t1é2r2é. eté1ré e2t1é2rén e2t1é2rér e2t1é2rét eté2ri1e eté1ri e2t1ér1ke e2t1érm e2t1é2rÅ‘s eté1rÅ‘ e2t1értel etér1te e2t1érz eté2sa2 eté2s1ég eté1sé eté2so etés3s eté2s1za etés2z et1észl et1észr eté2t1a2 eté2te2r. eté1te eté2te1re eté1t1ra e2t1é2ven eté1ve e2té2ve2s. e2t1é2vet e2t1é2véh eté1vé eté2véig etévé1i e2t1é2vé1ne eté2vé1tÅ‘ e2t1évh e2t1évt et1fr et1gl et1gr et2he1i et1he eti2d e1ti et1i1de et1i1do eti2g e2t1i1ge e2t1i1gé e2t1ig2y e2till et1i2ma e2t1i1má e2t1i2mi 1e2ti1mo e2t1imp eti1na1 e2t1ind e2t1inf e2t1inff e2t1ins e2t1in1te e2t1inv e2tinz e2t1i2pa e2t1i2ra e2t1i1ri e2t1i1ro e2t1i1ró e2t1ism e2t1is1te e2t1i2s1za etis2z e2t1i2szon eti1s1zo e2t1i2ta et1i1zé e2t1izg e2t1i1zo e2t1izz e2t1íg e1tí e2t1íj e2t1ín e2t1í2r etí2v et1ívb e2t1í1ve et1í1vé e2t1íz et1kl et1k2r et1kv 1etnol et1no et1o1da e1to e2t1okm e2t1okt e2t1oml eto2n1a2 eto2nál eto1ná eto2n1is eto1ni eton1n e2t1opc e2t1o2pe e2t1op1t2 2etor et1ord2 e2t1or1g2 e2t1orm et1orom eto1ro e2t1ors2 e2t1orv et1ost etosz2f etos2z etosz2ff et1oszl et1oszt e2t1o1u e2t1ó2c e1tó et1ó2ra et1ó2rá e2t1ó2v e2t1ö2ko e1tö etö2l e2t1ö2l. et1ö1lé e2t1ö1lÅ‘ e2t1ön e2t1ös e2t1öt et1ö2vü e2t1ö2z etÅ‘1a2 e1tÅ‘ etÅ‘e2l etÅ‘1e etőé2b etÅ‘1é etÅ‘fé2l1é2v etÅ‘1fé etÅ‘fé1lé e2t1Å‘2r. e2t1Å‘rb et1Å‘rc et1Å‘2réh etÅ‘1ré etÅ‘2r2i. etÅ‘1ri et1Å‘rk e2t1Å‘rl e2t1Å‘rn etÅ‘2rök etÅ‘1rö e2t1Å‘rp e2t1Å‘rr e2t1Å‘rs et1Å‘2rü etÅ‘1s2p et1pl et1pr et1ps e1trap et1ra e1tra1u e1t2rág et1rá e1tréf et1ré e1tréff e1t2ril et1ri et1sk et1sn et1sp et1st et3tad2 et1ta etta1i2 etta2n1ó2 ett1áll et1tá et2telem et1te ette1le et2t1ing et1ti et2tír et1tí et1t2rá et1t1ri et5ty1á2 et2t2y e2t1ug e1tu et1u1na et1und et1u2ra etu2s2z et1u1tó e1t1u1tu e2t1új e1tú e2t1ú2ri e2t1út e2t1üd e1tü e2t1üg e2t1üld e2t1üt e2t1ü2v et1ü2zem etü1ze e1t3ya et2y e1u eu2bo euda2i eu1da eu2ga eu2mal eu1ma eu2m1e eu2mim eu1mi eu2m1i2p eu2mis eu2m1iz eu2mí eu2mór eu1mó eu2mÅ‘ eum1p2 eu2mü eu2na eu2ná eu2ni eu2no eu2nó e2u2r. eu2r2i. eu1ri eu2rig e2urt eu2s1zí eus2z e2uta1i eu1ta eu2tal e2utan eu2taz e2utá1i eu1tá e2utá1já e2utá1ka e2utákk e2uták1ná e2utákr e2utánk e2utár e2uth eu2tó e2uts e2utz eu2z2s e1ú eú2jí eú2s2z eú2ti eú2to e1ü eü2dü eü2ge eü2g2y eü2le eü2lé eü2li eü2lö eü2lÅ‘ eü2lü eü2re eü2rí eü2rü eü2s2z eü2te eü2tÅ‘ eü2tü eü2ve eü2vö eü2ze e1ű eű2ri eű2ze eű2zé eű2zi eű2zö eű2zÅ‘ evá2r1a2l e1vá evá1ra eve2s1zö e1ve eves2z evé2lá e1vé evé2l1e2l evé1le evé2nye2l evén2y evé1nye evé2r1emb evé1re evé2rö evé2so evé2s1za evés2z ev2é2s1zö eví2z1e2 e1ví evízi2óét eví1zi evízi1ó evízió1é ev2res ev1re ew1ey e1we ex1ab e1xa ex1al ex1ap ex1áb e1xá ex1á2r e2x1át ex1bl ex1br ex1dr e2xeg e1xe e2x1elm e2x1el1vá e2x1er e2x1ék e1xé e2x1él e2x1ép e2x1i2dÅ‘ e1xi e2x1i1gé ex1inf ex1inff e2x1ing e2x1int ex1izz e2x1íj e1xí e2x1ír e2x1ob e1xo ex1op ex1ön e1xö ex1ör ex1ös 1expan ex1pa ex1sk ex1sp ex1st ex1új e1xú e2x1üg e1xü e2x1üv e2x1üz e1yer eza2c e1za ez1a1cé e2z1a2d e2z1af e2z1aff ez1ajt e2z1a2l e2z1a2n e2z1arz e2z1as eza2uruss2 eza1u ezau1ru ez1aut ez1áll e1zá ezá2ma ez1árb ez1árr ez1á2rú e2z1át ez1bl ez2dál ez1dá ez1e2g2y e1ze e2z1e2kék eze1ké e2z1e1la e2z1e2le1me eze1le e2z1elér eze1lé e2z1elm e2z1e1l1ö e2z1e2mel eze1me ezen2t1e2 eze2r1a eze2rá eze2red eze1re eze2r1el eze2r1em eze2r1es eze2r1o e2z1e2rÅ‘ e2z1es1te e2z1e2s2z eze2t1a2 eze2t1á eze2t1eg eze1te eze2t1e2l eze2t1es2z eze2t1é2r. eze1té eze2t1é2r2Å‘. ezeté1rÅ‘ eze2t1é2v2e. ezeté1ve eze2t1o eze2tu e2z1ég e1zé e2z1é2j ezé2ká ezé2k1o e2z1él ezé2r1emb ezé1re e2zé2rett ezé2ru ezé2sa ezéskés2z1 ezés1ké e2z1é2te ez1fr ez1gr ez1i2do e1zi ezi2g e2z1i1gé e2z1i2ko e2z1ill ez1imp ez1i1ná ez1ind ez1inf ez1inff ez1int ezi2o ez1ion e2z1i2p ez1i2r ezisé2g ezi1sé ezi2s1é1gé e2z1ism ezi2ta e2z1í2v e1zí ez1kl ez1k2r ezkupac1 ez1ku ezku1pa ez1kv e2z1ob e1zo ez1old ezo2nár ezo1ná ezon3n ez1opt e2z1ox e2z1ó2l e1zó e2z1ó2r ez1ó2t ez1ö2b e1zö ez1ös ez1ö2v ezÅ‘e2l e1zÅ‘ ezÅ‘1e e2z1Å‘2ri e2z1Å‘rl e2z1Å‘rs e2z1Å‘2rü e2z1Å‘rz ezÅ‘s1or1ra ezÅ‘1so ez1pl ez1p2r 1ezre1de ez1re 1ezreds 1ezrel 1ezrem 1ez1rű ez3saj ez2s e1z1sa ez3sap ez3sát e1z1sá ez3sáv e2z3sé ezsi1ó2 e1z1si ez3sl e2z3sor e1z1so ez3s2p ez3s2ta ez3st2r e2z3sü ez3s2z ez1t2r ez1u2r e1zu ez1ut ez1új e1zú ez1ú2t e2z1üg e1zü 1e2züs e2z1üt e2z1ü2z eÅŸ2ti 2é. é1a éa2da éa2dá éa2do éa2dó éa2ga éa2gi éa2já éa2ka éa2la éa2l1e éa2na éa2n2y éa2ré éa2ri éa2ro éa2uk éa1u éa2um éa2ux é1á éá2fá éá2g2y éá2ju éá2ra éá2ro éá2ru éá2rú é2b1ag é1ba é2b1a2j é2b1a2k é2b1a2l éba2n é2b1an2y é2b1a2v éb1ál é1bá ébá2r éb2b1á éb1e1s1zű é1be ébes2z é2b1é2k é1bé é2b1él é2b1ép ébi1é2 é1bi éb1isk éb1i2va éb1íz é1bí éb1kr éb1pl éb1pr 1ébres éb1re é2b1ug é1bu éb1üg é1bü éc1a2d é1ca éc1aj éc1a2k éc1a2l éc1a2n éc1ál é1cá éc1ár é2c1e2lem é1ce éce1le é2c1elv é2c1ember écem1be é2c1e2mel éce1me éc1gr é1c3ha éc2h é1c3há é1c3hí é1c3ho é2c1i2d é1ci é2c1il éc1i1ma éc1ob é1co éc1os éc1Å‘r é1cÅ‘ éc1pr éc3sab éc2s é1c1sa écs1ol é1c1so éc3s2z é2c1u2t é1cu é2c1ül é1cü éc3z2s éc2z é2d1ab é1da é2d1a2c é2d1a2d é2d1a2g é2d1a2j éd1akc éd1akt éd1a2ku éd1alk é2d1a2n éd1a1pa éd1a2pá é2d1arc éd1asp éd1ass éd1a2ti éd1at1t2 é2d1ág é1dá éd1áp éd1dr é2d1ed2z é1de é2d1e2g é2d1ej é2d1e2k2e. éde1ke éde2ké1tÅ‘ éde1ké é2d1e2l1a é2d1elk é2d1ell é2d1e1lo éd1ember édem1be é2d1eml é2d1enz é2d1ep éd1erd é2dere1i éde1re é2derem é2derg é2derl é2der1né é2d1e2rÅ‘ é2der1rá é2der1rÅ‘ é2ders é2der1tÅ‘ édert2 1é2de2s1a2 é2desem éde1se 1é2desg 1é2de1sí é2d1ég é1dé é2d1é2j é2d1ékb é2d1é2ké é2d1ékk édé2l é2d1é1le é2d1élm é2d1ép é2d1é2r. é2d1é2ri é2d1érs é2d1ér1te é2d1ér1tÅ‘ é2d1érv é2d1érz éd1f2r édi2a1d2 é1di édi1a édia1k2 édi2a1ka édi2akr édi2al édi2ar édi2a1s édias2z2 é2d1i2d édi2er édi1e édi2g é2d1i1ga é2d1i1ge é2d1i1gé éd1i2ko éd1ill é2d1i2m éd1i2na é2d1ind é2d1i1ni éd1ins é2d1int é2d1i2p é2d1i1ro é2d1i2z é2d1ín é1dí é2d1ír éd1ív éd1kl éd1ok1ta é1do é2d1op é2d1or é2d1os2z éd1ott éd1ó2r é1dó éd1öl é1dö éd1ön é2d1ö2r éd1öt éd1öv éd1öz é2d1Å‘rm é1dÅ‘ é2d1Å‘rn édÅ‘s2 édÅ‘1sp éd1pl éd1pr é1d2ram éd1ra éd2raz é1d2rám éd1rá éd1sk éd1sp éd1sr éd1st éd1t2r é2d1ud é1du éd1uj éd1u1ra é2d1u2t é2d1új é1dú éd1úr éd1ú2t é2d1üd é1dü é2d1üg é2d1üt é2d1üz é1d3za éd2z é1d3zá é1d3ze é1d3zó é1d3zü é1e ée2bé ée2la ée2le ée2lÅ‘ ée2me ée2pi ée2rÅ‘ ée2se ée2sé ée2si ée2sÅ‘ ée2s1z1a2 ées2z ée2s1z1á ée2szel ée1s1ze ée2szép ée1s1zé ée2szir ée1s1zi ée2szis éeszt2 éesz1tr ée2uf ée1u ée2uff ée2vé ée2vÅ‘ é1é éé2ge éé2le éé2pí éé2ra éé2te éf1a1i é1fa éf1aj1tó éfajt2 éf1ing éf8i éï¬ng Ã©ï¬ Ã©2f1is é2ï¬s éf1kl é2f1os é1fo ég1abl é1ga é2g1abr ég1a2d ég1a1ka ég1akk ég1akn ég1alj ég1am ég1a2n2y ég1a2p é2g1a2r ég1aut éga1u ég1a2v éga2z é2g1á2g é1gá é2g1ál ég1áp ég1árt é2gát1a2d égá1ta é2g1á2t1á2 ég1á2t1e2 ég1átf ég1átff ég1átj ég1átm ég1áts ég1átt ég1átv ég1bl ég1br ég1d2r ég1e1ce é1ge é2gedén ége1dé é2g1ed2z é2g1e2ge é2g1ej é2g1e2kés ége1ké é2g1e1la é2g1elb ég2elek ége1le ége2lemb é2ge2le1me ége2lemn ége2lemt é2g1elér ége1lé é2g1elf é2g1elff é2g1el1ha ég1el1há ége2lin ége1li é2g1elis é2g1el1já é2g1elk é2g1el1lá é2g1ellen égel1le é2g1elm é2gel1nö ég1eln2y é2g1e2lö é2g1e2lÅ‘1a ége1lÅ‘ é2g1e2lÅ‘m é2g1e2lÅ‘n ég1e2lÅ‘t é2g1elp é2g1elr é2g1el1sa é2g1el1s1zí égels2z ég1el1ta é2g1el1tá é2g1el1vá é2g1elz é2g1enc é2g1e2ne é2g1eng ége1p é2g1e1pi ége2rál ége1rá é2g1ere1de ége1re ége2r1el ége1ri2 ége2rim ége2rin é2g1e2ró ég1e2rÅ‘ ége2rül ége1rü 1é2gesd2 é2g1es2s2z égess2 é2g1es1te ége2s1ze éges2z é2g1eszk é2g1eszt 1é2getj 1é2getÅ‘h ége1tÅ‘ 1é2getÅ‘n 1é2getÅ‘t ég1e1va ég1e2ve ég1e2vé é2g1e1vo é2g1ex é2g1é2g é1gé é2g1é2l é2g1é2ne1ke égé1ne é2g1é2ne1ké é2gének1k2 é2g1é2nekn ég1é2pí é2g1é1pü é2g1é2ret égé1re é2g1é2rez é2gé2r2é. égé1ré é2g1érh é2g1é2ri é2g1érl é2g1érm é2g1é2r2Å‘. égé1rÅ‘ é2g1é2rÅ‘k égért2 é2g1ér1te é2g1ér1té 1é2gé1sé 1é2gésn é2gést é2g1é1va ég1f8l ég1fl ég1fr ég1g2l ég1g2r ég5gyo ég2g2y 1éghes ég1he 1ég1hü égi2as é1gi égi1a ég1i2den égi1de égi2g é2g1ig2a. égi1ga égig1ap égig1as é2g1igaz égi1g1á é2g1ill é2g1i1má ég1i1na é2g1inf é2g1inff é2g1ing é2g1inj é2g1ins é2g1int é2g1i1ra é2g1i1ro é2g1i2ta é2g1i1va é2g1i2zésn égi1zé é2g1izg ég1íg é1gí ég1íj ég1ín ég1ír ég1ív ég1íz 1ég2j. égki1a2 ég1ki ég1kl ég1kr ég1kv 1égn2e. ég1ne 1égnék ég1né 1égnén 1égnét 1ég1ni é2g1ob é1go ég1o1ki2 ég1o1la ég1old ég1o1li ég1oll ég1olt é2g1op é2g1o2r é2g1os ég1ott é2g1o2v é2g1ox é2g1óc é1gó ég1ó2r ég1öb é1gö é2g1ö2d é2g1ö2l ég1ön égö2r ég1ö1rö é2g1ös é2g1öt é2göv é2g1ö2z 1ég2Å‘. é1gÅ‘ 1égÅ‘k é2gÅ‘r ég1Å‘1ri ég1Å‘1rö ég1Å‘1si 1égÅ‘t 1égÅ‘v ég1pl ég1pr ég1ps é1g2ráf ég1rá é1gráff ég1sk ég1sp ég1s2t égs2z2 1égs2z. égszáraz1 ég1s1zá égszá1ra ég1tr é2g1ud é1gu ég1un é2g1u2t ég1úg é1gú ég1új ég1úr ég1ús ég1ú2t é2g1üd é1gü é2g1üg égü2gye égüg2y égü2gyé égü2gyö égü2gyü é2g1ür é2g1üs é2g1üt é2g1üv é2g1üz é2g1űz é1gű égve1zé2 ég1ve é2gy1a2 ég2y é2gyál é1gyá é2gye1dé é1gye é2gy1eg é2gyelek égye1le é2gyele1me égye2m é2gy1emb é2gy1e1me égye2se1ké égye1se é2gy1es2z é2gy1e2v é2gye1ze é2gy1ék é1gyé é2gyél égy1é2ne é1gyi2 é2gyin é2gyir é2gy1is é2gy1iv é2gyí é1gyo2 égy1ok égy1os égy1ot é2gy1ó2 égy1ö2l é1gyö é2gy1u2 é2gy1ú é2gy1ü2l é1gyü é2gyür éha2l é1ha éh1a1la éh1an2y é2h1arc éh1art é2h1a1u é2h1a2v éh1e1dé é1he 2éheg éh1e2gé éh1e2le éh1e1lé é2h1elf é2h1elff éh1elh éh1ell éh1e2lÅ‘ éh1elt éh1elv é2h1enz é2h1e2r é2h1esem éhe1se é2h1e2to é2h1e1vé é2h1ex é3hes3 é2he1ze 1é2he1zé 1é2he1zÅ‘ 1é2hezt é2he1zü é2hezv éh1ég é1hé éh1é2k é2h1é2l é2h1ép éh1érb éh1f8l éh1fl é2h1ic é1hi é2h1if é2h1iff é2h1i2n é2h1ip éhi2r éh1i1ra éh1irt é2hit éh1i2ta é2h1iz éh1ín é1hí éh1kr é2h1od é1ho éh1old éh1öb é1hö éh1ö2d éh1ös éh1pl éh1pr 1éh1sé éh1sk éh1sp éh1ud é1hu éh1új é1hú é2h1üg é1hü é2h1ür é2h1üt é2h1űr é1hű é1i éi2dÅ‘ éi2ga éi2gé éi2má éi2pa éi2rá éi2ro éi2ta éi2vás éi1vá éi2vó é1í éí2rá éí2ro éí2ró éí2vá éí2ze é2j1ab é1ja é2j1a2da é2j1a2l é2j1an2y é2j1a2r é2j1á2l é1já é2j1áp é2j1árn éj1eb é1je é2j1e2lem éje1le é2j1elh éj1elm é2j1elv éj1emb é2j1es2z é2j1e2v é2j1é2g é1jé éjé2j é2j1é2k é2j1él é2j1ép é2j1é2te 1é2j2i. é1ji é2j1il é2j1im éj1i2n é2j1ip é2j1iz é2j1o2l é1jo éj1ó2r é1jó éj1öd é1jö éj1ön éj1ör éj1pl éj1pr éj1sp éj1s2z éj1ud é1ju éj1u2r éju2t éj1u1ta é2j1úr é1jú é2jül é1jü é2j1űz é1jű ék1abl é1ka ék1a2cé éka2dat éka1da ék1a2dá ék1a2dó ék1ajt éka2kad éka1ka é2k1a1ká é2k1akk é2k1akn éka2lag éka1la ék1a2lak é2k1alg é2k1alj é2k1al1ko é2k1all é2k1alt ék1a1lu ék1amb é2k1ang é2k1app é2k1a2rá ék1arc ék1a2ré ék1arz é2k1as1p é2k1ass ék1aszt ékas2z ék1a2tom éka1to ék1a2ve ék1a1zo é2k2á. é1ká é2k1ál é2k1á2p é2k1á2rad éká1ra é2k1á2rak é2k1á2rá ék1árb é2k1á2ré ék1árh é2k1árk é2k1árn é2k1á2ro ék1árr é2k1á2ru ék1á2rú ék1á2só ék1ásv é2k1á1ta é2k1á2t1á2 é2k1átc é2k1átd é2k1á2t1e2 ék1á1té é2k1átf é2k1átff é2k1áth é2k1á1ti é2k1á2tí é2k1átk é2k1átl é2k1átm é2k1á2t1ö é2k1átr é2k1áts ék1átt é2k1á1tu é2k1átv é2k1áz ék1bl ék1br ék1dr ék1e1gé é1ke é2k1e2kés éke1ké é2k1elb é2k1e2leg éke1le é2k1e2le1me é2k1e2le1mé é2ke2lemm ék1e2lér éke1lé é2k1elf é2k1elff é2k1elk é2k1el1lá é2k1ellen ékel1le é2k1elm é2k1e1lo ék1elp é2k1el1ta ék1el1tá é2k1eltér ékel1té é2k1elül éke1lü é2k1el1vi é2k1e2mel éke1me ék1eng éke1p2 é2k1erd é2k1e2rec éke1re é2kered é2k1e2re1i é2k1e2rez é2k1erg é2k1e2ró é2k1e2rÅ‘ é2k1e2se1te éke1se ék1eszk ékes2z éke1szl é2k1e2tet éke1te éke2tik éke1ti éke2vés éke1vé é2k1e2vo é2k1ex é2k1ég é1ké ék1éjs é2k1é2pí é2k1é1pü é2k1érc é2k1é2rem éké1re é2k1é2re2n é2k1é2ré é2k1é2ri é2k1érk é2k1érl é2k1érm é2k1é2r2Å‘. éké1rÅ‘ é2k1é2rÅ‘1i é2k1é2rÅ‘k é2k1érp é2k1érr é2k1ér1te é2k1ér1té é2k1ér1tÅ‘ é2k1é2rü2 é2k1érv é2k1érz 2ékés ékés3s ék1észl ékés2z é2k1étk é2k1étv é2k1é2v2e. éké1ve é2k1é2vek é2k1é2vet é2k1é2véb éké1vé é2k1é2vén é2k1é2vét é2k1é2vév é2k1é1vi ék1f8j ék1f8l ék1fl ék1fr ék1gr éki1a2 é1ki éki2d é2k1i1de ék1i1dé ék1i1do é2k1i1dÅ‘ éki2g é2k1i1ga é2k1i1ge é2k1i1gé ék1i2ko ék1ikr é2k1ill é2k1i1ma é2k1i1má ék1i1mi é2k1ind é2k1ing é2k1inh é2k1inn é2k1int é2k1inv é2k1i2o é2k1i2p é2kirán éki1rá é2k1i1ro é2k1isk é2k1ism é2k1ist2 éki2s1za ékis2z é2k1i2ta é2k1i2z ék1íj é1kí é2k1ír é2k1í2v é2k1í2z ék2kál ék1ká ék1k2l ék1k2r ék1kv é1k2lu é2k1ob é1ko ék1of ék1off é2k1o1ká é2k1o2laj éko1la é2k1ol1da ék1oltás ékol1tá é2k1oml é2k1opc ék1o2pe é2k1org é2k1orm é2k1orr é2k1orz é2k1os1to é2k1ott é2k1o1u é2k1ox é2k1óc é1kó ék1ó2l é2k1ón ék1ó2ra ék1ó2rá é2k1ó2v é2k1ó2z é2k1ö2b é1kö ékö2l é2k1öm ék1önt ék1ö2rö é2k1ös é2k1ötl ék1ö2vö ék1ö2zö ék1Å‘2r é1kÅ‘ ék1Å‘s ék1pl ék1pr ék1ps é1k2re1á ék1re ék2rim ék1ri ék1sh ék1sk ék1sl ék1sp ék1s2r ék1s2t ék1s2z2 ék1t2r é2k1ud é1ku é2k1ug é2k1uj é2k1und é2ku1ni é2k1u2tac éku1ta é2k1u2tak ék1u2tal é2k1u2tas é2k1u1tá é2k1új é1kú ék1ú2r. ék1úrn ékú2t é2k1úth é2k1ú1ti é2k1útj é2k1útn é2k1ú1to é2k1útr é2k1útt é2kútv é2k1üd é1kü é2k1üg ék1ü2le é2k1ünn é2k1ür é2k1ü2s é2k1ü2t é2k1ü2v é2k1üz ék1ű2r. é1kű ék1űrb ék1ű2rö é2k1űz él1abl é1la él1abr él1a2cé él1a2da él1a2do él1a2dó él1a2g é2l1a2j él1a2ka él1akc él1akn él1a1ko é2l1a2l él1amc él1a2me él1and él1a1pó él1arm él1asp él1ass él1as2z él1a2to él1a2u é2l1a2va él1a1zo él1ábr é1lá é2l1á2g élá2l é2l1áll é2l1ál1má é2lálmot élál1mo é2l1á1lo é2l1á2p él1á2r. él1á2rá él1árb él1árf él1árff él1á2ri él1árk é2l1árn él1á2ro él1árr él1á2ru él1á2rú él1árv él1á1t1a2 él1átc élá1t1e2 é2l1átf é2l1átff él1áth él1á2ti él1átj é2l1átm élá2tok élá1to él1átr él1áts él1átt él1á1tü él1átv él1bl él1b2r élc3s2z élc2s él1d2r éle2b é1le é2l1e1bé é2l1e2d2z él1ef8f él1eff él1e2gé éle2gés2z1 él1e2g2y éle2k1a2 éle2k1á éle2k1e2l éle1ke éle2kem éle2ker éle2k1es é2l1e2kés éle1ké éle2kis éle1ki éle2kol éle1ko éle2k1on éle2kot éle2kó éle2k1ö2 éle2ku éle2k1ú él1e2l1a é2l1e2leg éle1le él1elf él1elff é2l1e1lo é2l1elÅ‘1e éle1lÅ‘ éle2lÅ‘j é2l1e2lÅ‘k éle2lÅ‘t é2lemb é2l1e2mi é2l1em1p2 éle2n é2l1e1ne é2l1eng é2lenj é2l1enn é2l1en2y é2l1enz él1e2ró é2l1e2sés éle1sé éle2so éle2s1zü éles2z éle2s1zű éle2t1a2 éle2t1á2 éle2t1eg éle1te éle2t1e2l él2e2t1e2r éle2tes2z éle2t1ék éle1té éle2té2l éle2t1é2r. éle2t1érd éle2t1é2r2Å‘. életé1rÅ‘ éle2té1rü éle2tés éle2té1te éle2té1té éle2t1étn éle2t1é2v2e. életé1ve éle2t1é2ved éle2t1é2vén életé1vé éle2tik éle1ti éle2ti2s2z éle2t1í éle2t1o éle1tö2 éle2t1ö2l éle2t1ör éle2t1u2 éle2tüz éle1tü éle2t1ű2z éle1tű é2l1e2vÅ‘ é2l1ex élé2d é1lé é2l1é1de é2l1é2g é2l1é2hes élé1he él1ékek élé1ke él1é1kí é2l1é2l él1é1pü é2l1é2r. é2l1érb é2l1érd él1é2rem élé1re é2l1é2ret é2l1é2ré é2l1érm é2l1érn é2l1ér1te é2l1ér1té é2l1é2rü é2l1érz élé2sa2 élés3s é2l1é2te é2l1étk é2l1é2v. é2l1é2v1á é2l1é2ves élé1ve é2l1é2vet é2l1évez é2l1é2vén élé1vé é2l1é2vér é2l1é2vi é2l1é1vü él1f8l él1fl él1f2r él1g2r é2l1i2d é1li é2l1i1ga éli2gá é2l1i2ge é2l1i1gé é2l1i2ko é2l1ill éli2m él1i1ma él1i1mi él1im1p2 é2l1ind é2l1inf é2l1inff é2l1ing él1int él1inv él1inz él1i2on éli1o é2l1i2p é2l1i1rá él1i1ro é2l1ism éli1s2p2 é2l1i2s1zá élis2z él1i2va é2l1i2vá él1izg é2l1izm é2l1i2zo él1íj é1lí él1í2r él1í2v él1íz él1k2l él1k2r él3lyu él2l2y él2mat él1ma 1élmén él1mé é2l1ob é1lo é2l1okm é2l1oks é2l1ol é2l1o2r élos3s é2l1os2z é2l1óc é1ló él1ó2n é2l1ó2r él1öb é1lö él1öc1 élö2k él1ö2l él1ön él1ör él1ös é2l1ö2z élÅ‘1e2 é1lÅ‘ él1Å‘1rü 1é2lÅ‘sk él1p2l él1p2r élrá1di2 él1rá élre1pr él1re él1sk él1sp él1s2t él2sz1árnn éls2z él1s1zá él1szt2 éltal2p1al él1ta éltal1pa él1t1rá él1t1ré él1t1ri él1t1ró é2l1ud é1lu é2l1ug é2l1uj él1ult él1u2r é2l1u2tas élu1ta él1u1tó é2l1új é1lú él1úr é2l1üg é1lü él1üll él1ült é2l1ür é2l1ü2s é2l1üt é2l1üv é2l1üz él1űz é1lű 1élve1zÅ‘ él1ve é2ly1ab él2y é1lya é2ly1a2d é2lyaj é2ly1a2l ély1a2n é2ly1ap ély1a2r é2ly1as ély1a1u é2ly1av ély1az é2ly1á2l é1lyá élye2c é1lye é2lyef é2ly1eff ély1eg2y é2lyekés élye1ké é2ly1el é2lyeml é2lye1ne é2ly1ent é2lyer é2lye1ti é2ly1é2j é1lyé é2ly1ék é2lyé2l é2lyés ély1f2 ély1ff é2ly1i1ra é1lyi ély1k2 é2lyo2l é1lyo é2ly1ó é2lyös é1lyö é2ly1öz é2lyÅ‘ ély1s é1lyú2 é2lyültet é1lyü élyül1te é2lyüt ém1abr é1ma éma1d2 ém1a2da ém1a2dó éma1e2 émai2k éma1i ém1ajt ém1akk ém1all ém1alm ém1app ém1arc é2m1arm émas2 éma1sp éma1st émat2 éma1tr ém1aut éma1u ém1a2zo émá2c é1má émá2l ém1álm ém1á1lo é2m1áp ém1árn é2m1á1ru é2m1á2t1a é2m1átt ém1b2l ém1b2r ém1dr éme2c é1me éme2g é2m1e2k2e. éme1ke é2m1e2kés éme1ké ém1e1la éme2led éme1le é2m1elh é2m1ell ém1e2lÅ‘ ém1els é2m1elv ém1e2re ém1ern ém1e2rÅ‘ éme2s1á é2m1ese1mé éme1se é2m1es2z éme2ta éme2tel éme1te éme2t1ék éme1té éme2to é2m1e2v é2m1ex ém1éks é1mé é2m1é2l é2m1ép é2m1érc ém1érd é2m1é1ri é2m1érm é2m1ér1té é2m1és é2m1é2te ém1f8l ém1fl ém1fr ém1gr émi2al é1mi émi1a é2m1i2d émi2g é2m1i1gé é2m1iks ém1ill ém1ind ém1inf ém1inff é2m1inv é2m1i2o é2m1i2p ém1i1rá é2m1irh é2m1i1ro ém1isk ém1ism émi2s2z ém1i2ta ém1i1zo é2m1ír é1mí ém1í2v ém1íz ém1kl ém1kr émo2nac é1mo émo1na émo2ne émo2nis émo1ni émon1n émont2 ém1o2p ém1ost ém1ox ém1ó2l é1mó ém1ó2r ém1öb é1mö ém1ö2l ém1ön ém1ös ém1öt ém1öv ém1Å‘2r é1mÅ‘ ém1p2l ém1p2r ém1sk ém1sl ém1sp ém1s2r ém1s2t ém1s2z2 ém1t2r ém1uj é1mu ému2n ém1u1na é2m1u2r é2m1úr é1mú é2m1üg é1mü é2m1ür é2m1üt é2m1üv é2m1üz ém1wh én1abb é1na é2n1abl é2na2dal éna1da én1a1dá én1a2do én1a1gá én1agr én1akc é2n1akn én1akt én1alk é1n1a1na én1a1no én1ant éna1p1ré én1arc énas2 éna1sp é2n1ass én1atm é2n1a2tom éna1to éna1t2r é2n1a1u é2n1ág é1ná éná2l én1á1la én1álc én1áld é2n1áll é2n1á2p é2n1á2rak éná1ra énás1s én1ásv én1á1ta én1átb én1á2t1e2 én1átk én1á2t1ö é2n1átr én1átt én1á2tü é2n1átv én1ba2 én1bl én1b2r én1d2r é2n1ef é1ne é2n1eff én1e2g2y 1é2ne2k1a2 1é2nekd é2nek2e. éne1ke 1é2neke1i 1é2nekek 1é2nekem éne2ker 1é2nekes éne2k1é2j éne1ké 1é2nekf 1é2nekff 1é2nekg éne2kiz éne1ki 1é2ne1kí 1é2nekj 1é2nek1ka ének1k2 1é2nekl éne2kó éne2k1ö 1é2neks én1e1la én1el1g2 én1elh én1elj én1ell én1eln én1e2lÅ‘ én1elp én1els én1elt én1elv én1eml éne2n é2n1e1ne éne2r1a éne2r1á2 éne2re1me éne1re én1e2ró é2n1e2s2z éne2t1a2 éne2t1á2 éne2t1e2l éne1te éne2test éne2to é2n1e2v é2n1ex én1éjb é1né én1ékb én1é2ké én1é2ki én1é2kű éné2l é2n1é1le é2n1é1lÅ‘ éné2m1a é2n1éne1ke éné1ne é2n1é2r. é2n1érc é2n1é1ré éné2ter éné1te 2énéz én1f2r énfüs1tö2 én1fü énfüs2t1öl én1g2r én1i1do é1ni éni2g é2n1i1gé én1i1ko én1ill én1i1mi én1i1na é2n1ind én1inf én1inff én1inh én1int é2n1i2p én1ism é2n1i1ta é2n1i1va é2n1i2z én1íj é1ní én1ín é2n1ív én1k2l én1k2rá én1k2ré én1k1ri én1mű1 én3nyo én2n2y é2n1ol é1no én1oml én1ond é2n1or é2n1os2z én1ot é2n1ox én1óc é1nó é2n1ó2r én1ök é1nö én1öl én1ön én1ör én1öt 2énöv é2n1ö2z én1Å‘2s é1nÅ‘ én1pe2 én1pl én1pr én2sas én1sa én1s2p én1s2t2 én2sú én1t1ra én1t1rá én1t2ri én1t1ró é2n1u2t é1nu én1út é1nú é2n1ü2g é1nü é2n1ü1le é2n1ür é2n1üs é2n1ü2v é2n1ü2z é2ny1a2 én2y é2ny1á2 énye2c é1nye é2ny1e1ce é2nye1c1se ényec2s é2ny1e2d2z é2nyef é2ny1eff é2ny1eg2y é2nyekés énye1ké é2nye1la é2nye1lá é2ny1ell é2ny1e1lo é2ny1el1vá ény1el1vű ény1elvv é2nye1ma é2ny1enc é2ny1e1p é2nyerd ény1ered énye1re é2ny1e2rÅ‘ é2ny1e2sett énye1se é2ny1e2sés énye1sé é2ny1e2sÅ‘ é2ny1es2s2z é2ny1es1té é2ny1e2s2z é2nye1ta é2nye1ti é2nye1tű é2ny1ev é2ny1ég é1nyé é2ny1é2j ényé2k ény1é1ke ény1ékh ény1ékn ény1ékt é2ny1é2l é2ny1é2r. é2ny1ér1d2 é2nyé1ré é2ny1é2ri é2ny1érn é2nyér1te é2ny1ér1té é2ny1é2rü2 é2ny1érv é2ny1érz é2ny1és é2ny1é2te é2ny1étt é2nyé1va é2ny1if é1nyi é2ny1iff ényi2g é2ny1i1gé é2ny1i2ko é2ny1ing é2ny1i1ra é2nyi1ro é2nyisk é2nyi1ta é2nyiz ényí2r é1nyí ény1í1rá ény1í1ró é2ny1ok é1nyo é2ny1o2l é2ny1o2r é2ny1os é2ny1ó2 é1nyö2 é2nyön ény1ör é2ny1ös ény1öz é2ny1Å‘2 ény1s ényt2 ény1tr é2nyu ény1u2r ény1us é2nyúj é1nyú ény1út é2ny1ü2lÅ‘ é1nyü é2ny1üs é2ny1üv é2nyüz én1za2 én2z1ad én2zag én2zak én2z1al én2zar én2za1u én2z1ál én1zá én2z1ás én2z1át én2z1e2r én1ze én2z1im én1zi én2z1in én2zis én2zí én1zo2 én2z1ol én2zor én2zos én2zö2r én1zö én2z1Å‘ én2z1sa énz2s én2z1se én2zur én1zu én2zú énz1z é1o éo2la éo2pe éo1p2h éo2s2z é1ó éó2ra éó2ri é1ö é1Å‘ ép1a1do é1pa é2p1a2j ép1alk épa2n2y ép1a1po épa1pr ép1arc ép1a1ré ép1ass ép1atl épau2s épa1u ép1aut ép1a2va é2p1á2g é1pá é2p1ál1la é2p1ál1lo ép1áp ép1á2r. ép1árb ép1árf ép1árff ép1á1ri ép1á2ro ép1á2ru ép1á2rú ép1átb ép1átj ép1átl ép1átm ép1áts ép1á2tü ép1átv ép1bl ép1br ép1dr é2peb é1pe ép1e2gé ép1e2g2y é2p1e2kés épe1ké 2épel é2p1e1la é2p1e1lá é2p1elb é2p1elc é2p1e2lemb épe1le é2p1e2le1me é2p1e2lemr é2p1elér épe1lé é2p1elf é2p1elff é2p1e2lin épe1li é2p1el1já é2p1elk ép1el1lá é2p1ellen épel1le é2p1elm é2p1e1lo é2p1e2lÅ‘1ke épe1lÅ‘ é2p1elr é2p1eltér épel1té é2p1e1lu épe2n é2p1e1ne é2p1e2p é2p1er épe2rÅ‘ é2p1esem épe1se é2p1e2ser é2p1e2sett é2p1e2sés épe1sé é2p1e2sÅ‘ é2p1es1te é2p1es1té é2p1es1ti é2p1estj épe2s2z é2p1e1s1ze é2p1eszk é2p1e1ta é2p1e2te1te épetet2 épe1te é2pe2te1té é2p1e1tű ép1e1va é2p1ex é2p1ég é1pé é2p1é2k é2p1é2l é2p1é2ne1ke épé1ne é2p1é2r. é2p1é1ri épé2sa é2p1é1te ép1f8l ép1fl ép1g2r é2p1i2d é1pi é2p1i2ko é2p1imp é2p1ind ép1ing é2p1ins é2p1int é2p1i2pa1i épi1pa é2p1i2ra é2p1i2rá é2p1i2ro é2p1irt ép1isk é2p1ism é2p1ist é2p1i2ta é2p1iz ép1ín é1pí é2p1í2r 1é2pítm é2p1ív épká2r ép1ká ép1kl ép1kr ép1kv éple2t1ö ép1le ép1ob é1po é2p1ok ép1old ép1olv ép1on ép1o2p ép1orm ép1ors ép1os2z é2p1óc é1pó é2p1ó2h ép1ó2r ép1öl é1pö ép1öm ép1ön épö2r ép1ös ép1ö2z ép2p1ek ép1pe ép2pí ép1p2l ép2p1od ép1po ép1p2r é1p2rog ép1ro ép2ró1zá ép1ró ép1sh ép1sk ép1s2n ép1sp ép1s2t éps2z2 ép1t2r ép1udv é1pu ép1ug é2p1uj épu2n é2p1u1no é2p1u2r épu2s é2p1u2t ép1új é1pú ép1ús ép1út é2p1üd é1pü é2p1üg é2p1üld 1é2pü1le é2p1ür ép1üs é2p1üv é2p1üz ér1abl é1ra ér1abs é2r1a2d ér1a2gá ér1agg ér1ag2y ér1a2ja ér1ajt é2r1a2ka é2r1akc é2r1a2la ér1a1lá ér1alg é2r1alk ér1alm ér1alv ér1am1b ér1amp ér1a1ne ér1a1ni ér1a2no ér1ant ér1a2pá ér1a2pó é2r1app ér1apr é1r1a2ra ér1a2rá ér1arc ér1asp ér1ass ér1a2ti ér1atk ér1atl ér1a2to éra1t2r ér1att é2r1at2y é2r1a2u ér1a2va é2r1a2x ér1a2zo é2r1ábr é1rá ér1á2g. é2r1á2ga ér1ágb ér1ágg ér1ág2y é2r1á2l ér1á2p é1r1á1rá ér1árk ér1á2ro ér1árp ér1árr é2r1á2ru ér1á2t1a2 ér1á2t1á2 ér1átc ér1á2t1e2 ér1á1té ér1átf ér1átff ér1áth ér1átj ér1átl ér1átm ér1á2tö ér1átr ér1á1tú2 ér1á1tü ér1átv é2r1áz 1érbán ér1bá ér1bl ér1br ér2caj ér1ca ér2c1a2l ér2c1a2n ér2c1as érc3c 1ércd ér2ce1dé ér1ce ér2c1emb ér2c1es2z ér2c3h ér2cil ér1ci ér2c1im ér2ciz ér2c1o ér2có ér2c1ö ér2cÅ‘ 2érc3s2a ér2c3seb érc2s ér1c1se ér2c3sis ér1c1si ér2cú 2érc3s2o ér2c2z ér2d1am ér1da ér2d1á2 1érdek1bÅ‘ ér1de 1érdek2e. érde1ke 1érdeke1i 1érdekel 1érdekl 1érdekt 1érde1kü 1érde1kű 1érde1mé ér2d1e2rÅ‘ érd1es1te érdés3s ér1dé ér2d1i2ná ér1di ér2d1iz ér1d1ra érdü2l ér1dü ér2d1ü1lé ér2d1ü1lÅ‘ ér1dy ér2d3z ére2b é1re ér1e1ba é2r1e1be é2r1e1bé é2r1ebr ér1ef8f ér1eff ére2g1a2 ére2g1á ére2ged ére1ge ére2gel ére2g1em ére2gen ére2g1e2r ére2gev ére2g1él ére1gé éreg1g ére2gin ére1gi ére2go ére2g1ö2 é2r1e2g2y é2r1e2gyez1 ére1gye é2r1ej é2r1e2ké2n. ére1ké é2r1e1lá é2r1e2leg ére1le é2relemz ér1e2lég ére1lé é2r1elis ére1li é2r1elk é2r1e1lo é2r1e2lÅ‘1a ére1lÅ‘ ére2lÅ‘ir érelÅ‘1i é2r1e2lÅ‘l é2r1e2lÅ‘1me é2r1e2lÅ‘n ér1elr ér1el1tá ére2m1a ére2má é2rember érem1be ére2m1eg ére1me é2r1e2mel ére2mes é2r1e2més ére1mé ér1e2mis ére1mi é2reml ére2m1o ére2m1ó é2re2mu ére2n é2r1e1ne é2r1e2r ére2sÅ‘ é2r1es2Å‘. é2r1esÅ‘b é2r1esÅ‘j é2r1esÅ‘n éres1Å‘2r é2r1esÅ‘t é2r1es1té ére2t1a ére2tá ére2t1eg ére1te ére2t1el ére2t1é2r. ére1té ére2t1é2v2e. éreté1ve ér1e2ve é2r1e2vé é2r1é2d é1ré é2r1é2g é2r1é2j. é2r1é2jét éré1jé é2r1é2k é2r1é2l é2r1é2ne1ke éré1ne é2r1ép é2r1é2ri éré2s1el éré1se éré2s1za érés2z ér2é2s1zá é2ré2ter éré1te é2r1étk é2r1é2v2e. éré1ve é2r1évn é2r1évv érfi1á2 érf8i érï¬1á2 érï¬ Ã©r1f8l ér1fl érfo2g1ó2n. ér1fo érfo1gó érfo2g1ós ér1f2r ér1g2r éri2al é1ri éri1a éri2c1si éric2s é2r1i1do érié2n éri1é ér1if8j éri2g é2r1i1ga é2r1i1ge é2r1i2ko é2r1ill é2r1i2ma é2r1i2má é2r1i2mi é2r1i2na é2r1ind é2r1inf é2r1inff é2r1ing é2r1inj é2r1ins é2rint ér1inv é2rinz ér1i2on éri1o é2r1i2pa ér1i1ra é2r1isk ér1ism é2r1ist é2r1i2s2z é2r1i2ta é2r1i1va é2r1i1vá éri2z ér1i1zé ér1i1zo ér1izz ér1íg é1rí ér1íj é2r1ín é2r1ír é2r1í2v é2r1í2z ér2jan ér1ja ér1k2l érkö2z1e2pé ér1kö érkö1ze ér1k2r ér1k2v érle2t1ö2l ér1le érle1tö 1érmé1é ér1mé 1érméj 1érmék 1érm2i. ér1mi é2r1o2l é1ro ér1ont éro2p ér1o1pe é2r1o2r ér1ott ér1o1vi é2r1o2x éró2l é1ró ér1ó1lo ér1ó1ri é2r1ö2b é1rö é2r1ö2c ér1ö2ko é2r1ö2l é2r1öm é2r1ön é2r1ör é2r1ös ér1öt ér1öv é2r1ö2z érÅ‘1f2 é1rÅ‘ érÅ‘1ff ér1pl ér1p2r 1érsek ér1se ér1s2k ér1sl ér1s2p ér1s2r ér1s2t érs2z2 ér1szk ér2tat ér1ta 1értekez ér1te érte1ke ér2t1e1la 1értelm 1érte1sí 1értékil ér1té érté1ki 1értékm értés1fé2 értésfél1 értés3s ért1ö2ve ér1tö 1értÅ‘c ér1tÅ‘ 1értÅ‘g 1értÅ‘1ü ér1t2ran ért1ra ér1t1rá ér1t2ren ért1re ér1t2ré 1ér1t2ro ér1t1ró ér1u1ga é1ru é2r1uj éru2m1e éru2n ér1u1na é2r1u2r éru2s1ér éru1sé ér1u2s2z ér1u1ta ér1u1tá ér1u2to é2r1u2z é2r1új é1rú ér1ú2r ér1ú2s érú2t é2r1ü2g é1rü érü2k2é. érü1ké é2r1ür é2r1üs é2r1üt é2r1ü2v é2r1üz é2r1ű2z é1rű érv1a2dó ér1va érv1a1la ér2v1a2n ér2v1á2g2y ér1vá 1érvel ér1ve ér2v1elem érve1le ér2v1égb ér1vé ér2v1égh ér2vék ér2vél ér2vu 2ér1zá 1érzé2k. ér1zé 1érzékb 1érzé1ké 1érzékh 1érzékk 1érzékn 1érzékr 1érzékt 1érzé1kü 1érzé1kű 1érzésil érzé1si és1abl é1sa é2s1a2d és1ag2y és1ajt és1a2ka és1akl és1akn és1a1ko és1akt és1a2la és1alg és1alk és1alt és1alv é2s1am és1a1na és1ant és1a2n2y és1a1pa és1apr és1a1ra és1a2rá és1arc és1a1ré é2s1arm é2s1arz és1asp és1ass é2s1a2u ésá2c é1sá é2s1ál és1árt2 ésá2s é2s1á1ta é2s1áth és1átl és1bl és1d2r ése2b é1se é2s1e1bé é2s1ef é2s1eff és1e2ge és1e2g2y é2s1e2k2e. ése1ke é2s1e2ke1i é2s1e2kés ése1ké é2s1eks é2s1ekv és1e1la és1e1lá é2s1elb és1elk é2s1elm és1e1lo é2s1elr é2s1el1vé é2s1elz é2s1ember ésem1be é2s1e2mel ése1me é2s1eml ése2n é2s1e1ne é2s1eng é2s1en2y é2s1e2p é2s1e2rÅ‘ é2s1es2z é2s1e1to é2s1ev é2s1ex és1égb é1sé é2s1é2géb ésé1gé é2s1é2gé1é és1é2géh és1é2gén é2s1é2gév é2s1égh é2s1é2gi é2s1égn é2s1égv é2s1é2hen ésé1he é2s1é2j é2s1é2k é2s1é2l é2s1ép é2s1é2r. é2s1érb é2s1érc é2s1érd é2s1é2rem ésé1re é2s1é2re2n é2s1é2ré é2s1érh é2s1érl é2s1érn é2s1é2r2Å‘. ésé1rÅ‘ é2s1é2rÅ‘k é2s1é2rÅ‘v é2s1érr é2s1ér1te é2s1ér1té é2s1ér1tÅ‘ é2s1é2rü é2s1érv és1és2z é2s1é2te é2s1é2v2e. ésé1ve é2s1é2vet é2s1é2véb ésé1vé é2s1é2vét é2s1é2vév és1f8l és1fl és1fr és1gr é2s1ic é1si é2s1id é3s2idet ési1de ési1é2 ési2g é2s1i1ga é2s1i1ge é2s1ikt é2s1ill é2s1i1mi é2s1imp é2s1ind é2s1inf é2s1inff é2s1ing é2s1int é2s1inv é2s1i2p é2s1i1ra é2s1i2rá é2s1i1ro é2s1i2s é2s1i2ta é2s1i2vá é2s1í2r é1sí é2s1ív és2ka1tu éskat2 és1ka és1kl és1k2r és1kv é1s2laf és1la é1s2laff é1s2lág és1lá é2s1ob é1so és1o1ko és1okt é2s1o2l é2s1om é2s1op 2ésor és1org és1orj és1orn és1orv é2s1os é2s1ot és1o2v és1óc é1só és1ó2l és1ón és1ó2r é2s1ö2l é1sö é2s1ön é2s1ös é2s1öt é2s1ö2v é2s1ö2z és1p2l és1p2r és2p1ri és1ps és1s2k és1s2p és1s2t és2s2z2 és3szab és1s1za és3szag és3szak és3szap és3s1zá és5sze2l./sz=,2,1 és1s1ze és3sze1re és3szé1le és1s1zé és3szf és3szff és3s1zi és3s1zí és3s1zo és3s1zó és3s1zö és3s1zÅ‘ és3szt2 és3s1zú és3szül és1s1zü és3s1zű ést2r és1t1ra és1t1rá és1t1ré é1st1ru és1ud é1su és1u2r é2s1u2t é2s1ú2t é1sú é2s1üg é1sü é2s1ünn é2s1ür és1ü2té é2s1üz ész1abl és2z é1s1za é2sz1a2d ész1ag2y é2szaj észa1ká2 észa2k1áz é2s2zakc észa2k1ü2 ész1a1le é2sz1alg é2sz1all észa2n ész1ant ész1an2y észa2p ész1a1po é2sz1a2r é2sz1as ész1a2to é2sz1a1u é2szaz 2é1s1zá é2száb é2sz1á2g észá2l ész1ál1lá é2s3záp ész1áram észá1ra é2szá1rá ész1árán és2z1árf és2z1árff ész1ár1k2 é2sz1árn ész1á2ru é2szás é2sz1á2t ész1á2z é2sz1e2g2e. é1s1ze észe1ge é2sz1e2ge1i é2sz1e2g2y é2sz1ej észe2k1a2 észe2ká é2sz1ekés észe1ké észe1kö2 észe2köv é2sz1e1la é2sz1e2leg észe1le é2sz1e2lemb ész1e2le1me é2sz1e2le1mé é2sz1e2lemm ész1e2lemn é2sz1elk ész1elÅ‘d észe1lÅ‘ é2sz1elÅ‘r é2szelÅ‘z é2sz1ember észem1be é2sz1e1mi é2s3ze1né é2sz1eng é2sz1ep ész1e2rez észe1re ész1e2rén észe1ré ész1er1kö észer1k2 é2s2ze2rÅ‘ ész1eszt2 észes2z észe1ta2 észe2t1ak észe2t1e2l észe1te észe2t1é2r. észe1té észe2t1o észe2t1ör észe1tö é2sz1e2ve é2sz1ex é2szég é1s1zé é2sz1ékt é2sz1é2l é2sz1é2p é2sz1é1ré é2szé1ró é2s2zés2z é2sz1é2te é2s2z1étk é2sz1i2d é1s1zi é2szif é2sziff ész1i2ko é2sz1ikt é2sz1ill é2sz1im é2szi1na é2sz1ind é2sz1inf é2sz1inff é2sz1ing é2sz1in1té é2sz1i1o é2sz1i2p é2szi1ra é2s2zi1ro é2s2zirt é2sz1i2s é2sz1i1ta é2sz1iz ész1í2j é1s1zí é2szír ész1í2vá ész1í2vé ész1í2vó ész1k2 ész1okt é1s1zo észo2l ész1old ész1olt é2szop é2sz1ors é2sz1os é2sz1ot é2s3zón é1s1zó 2é1s1zö és3zöld ész1ölt é2sz1ön é2sz1ös é2szöt ész1Å‘rs é1s1zÅ‘ ész1p2 és1z3su ész2s és1z3sű észtés1s ész1té ész2tors2 ész1to észtorz1 ész1t1ri és3zul é1s1zu ész1ut ész1úrn é1s1zú é2sz1út é2sz1ü2g é1s1zü é2s2zünn é2szüt é2sz1ü2z é2szűz é1s1zű ész1z ét1ab1la é1ta ét1a2do é2t1a2dó ét1adt ét1agg éta1gr étai2k éta1i é2t1ajk é2t1ajt ét1akc éta1kr ét1akt é2t1alj é2t1alk ét1als é2t1alt é2t1a1ni é2t1ann é2t1ant ét1a1nya étan2y ét1a1nyá é2t1aps é2t1arc é2t1arg ét1aszt étas2z état2 ét1atom éta1to éta1ü2 ét1a1zo é2t1ábr é1tá é2t1á2g é2t1áll ét1á2rad étá1ra ét1á2ram ét1á2rá é2t1á2ri é2t1á2rú ét1árv ét1á1ti é2t1átr é2t1átv étá2vi ét1bl ét1dr éte1a2 é1te é2tedén éte1dé éte2g1a2 éte2ge1le éte1ge éte2g1elv éte2ger éte2go é2t1e2k2e. éte1ke é2t1e2ke1i éte2la éte2l1á éte2l1e2l éte1le éte2l1er éte2l1ék éte1lé éte2l1é2r. éte2l1é2re2n ételé1re éte2lé1ré é2telfog étel1fo é2tellen étel1le éte2lo é2t1e2lÅ‘l éte1lÅ‘ éte2l1Å‘2r é2t1e2mel éte1me éten2t éte1ra2 éte2rad éte2r1ag éte2r1á2 éte2reg éte1re éte2rel éter1mo1 é2t1e2rÅ‘ éte2sik éte1si é2t1estün étes1tü é2t1esv é2t1eszm étes2z ét1e2vi été2g é1té é2t1é2g. ét1é1ge é2t1é1gé é2t1égn é2t1égt é2t1é2j é2t1é2l é2t1é2re2n été1re é2t1é2ré é2t1é2ri é2t1é2rÅ‘t été1rÅ‘ é2t1ér1te é2t1ér1té é2t1é2rü é2t1érv é2t1érz ét1észl étés2z é2t1étb é2t1é2té é2t1étn é2t1étr é2t1é2ves été1ve ét1f8l ét1fl ét1fr ét1gr é2t1i2d é1ti éti2g é2t1i1ge é2t1i1gé é2t1i2ko é2t1i2m é2t1ind é2t1inf é2t1inff é2t1int éti2p é2t1i1pa é2t1i1rá ét1i1ro étis3s éti2s2z é2t1i2vá ét1i1zé é2t1í2r é1tí é2t1í2v ét1kl ét1kr 1ét1kű ét1kv étmeg1g2 ét1me éto1i2 é1to ét1o2ká ét1o2ki ét1okm ét1o2l é2to1la é2tolv ét1oml é2t1op ét1ord2 ét1or1g2 éto2ris éto1ri ét1orm ét1ors2 é2t1óc é1tó ét1ó2ha ét1ó2n. ét1ó1rá étö2k é1tö étö2l é2t1ö1mö é2t1ön étö2rül étö1rü é2t1ös ét1ö2t ét1ö2v é2t1ö2z ét1Å‘2r. é1tÅ‘ ét1Å‘rb ét1Å‘1ri ét1Å‘rm ét1Å‘1rö ét1Å‘1rü é2t1Å‘2s é2t1Å‘2z étpen1 ét1pe ét1pf ét1pff ét1pl ét1pr é1t2ra1fá ét1ra ét2réf ét1ré ét2réff étro2m1é2 ét1ro ét1sl ét1sm ét1sp ét1st ét1t2r ét1udv é1tu é2t1ug é2t1uj étu2n ét1u1na ét1und é2t1u2r é2t1u2t ét1ú2s é1tú é2t1üg é1tü é2t1ür ét1üs é2t1üt é2t1ü2v é2t1ü2z étű2z é1tű é2t3ye ét2y é1u éu2ni éu2ta éu2tá éu2z2s é1ú é1ü éü2g2y éü2le éü2lé éü2lö éü2lÅ‘ éü2rü éü2té éü2tö éü2tü éü2ze é1ű é2vad é1va 1éva2d. év1a1dó 1évadr év1ag2y év1a1já é2v1a2la é2va1lá é2v1alk é2v1am é2v1a2n év1arc év1a1u é1v1a1va é2v1a2z é2v1ál1lo é1vá é2v1á1ta2 év1áth év1átk é2v1átr évá2z év1á1zá 1évbe1o év1be é2v1e2g é1ve 1é2ve1i 1é2vekt é2v1e1la 1é2v1elf 1é2v1elff 1é2v1e1li é2v1ell év1eln é2v1e1lo é2ve1lÅ‘ é2v1els é2v1elt é2v1elv é2v1en1g2 1é2ven3k2 1é2vent év1e2ri é2v1e2rÅ‘ 1é2vesb 1éve1sé év1e2sés 1évesf 1évesff 1é2ve1si 1é2vesk 1é2vesr év1es1té évest2 é1v1e1ve év1é2ge é1vé év1é2gé év1égr év1égt év1é2r. év1é2ré évé2r2i. évé1ri év1érr é2v1ér1te é2v1ér1té évé1s1ka évé1s2p évé1s1tá év1gr évi2g é1vi év1i1ga é2v1i1gé 1é2vih 1é2vik 1é2vim é2vin é2v1ind 1évi1ne 1évi1né év1ing év1int év1ism 1é2vi1tÅ‘ 1é2viv é2v1í2r é1ví 1évkös év1kö év1kr 1évn2y év1ok é1vo év1os év1ó2r é1vó év1ö2r é1vö év1ös év1öt 1é2vÅ‘d é1vÅ‘ év1pr év1sk év1st év1s2z évsza2k1as év1s1za évsza1ka évtá2r1a2d év1tá évtá1ra 1évt2Å‘. év1tÅ‘ év1ur é1vu év1új é1vú év1ú2t é2v1üg é1vü é2vü2k. é2vükb é2vü1ke é2vükh é2vü1ki é2vükn é2vükt é2vülj é2v1üt é2v1üz 1év1zá éz1a2d é1za éz2a2gal éza1ga éza2ge éz1a2j éz1akr é2z1a2l éza2n éz1an2y éz1a2r éz1as é2z1a2t éz1az é2z1á2g é1zá é2z1á2l éz1ásv éz1áz éz1bl éz1d2r éze2c é1ze é2z1e1ce é2z1e2dé éz1e2gé éz1e2g2y é2z1e1la é2z1eld é2z1e2le ézel1en é2z1elf é2z1elff é2z1elh é2z1ell éz1elÅ‘b éze1lÅ‘ éz1elÅ‘1é éz1elÅ‘g éz1elÅ‘1i éz1elÅ‘j é2z1e2lÅ‘1ké éz1elÅ‘n éz1elÅ‘p éz1elÅ‘s éz1elÅ‘t éz1elÅ‘v é2z1els é2z1elv é2z1emb éz2e2n. éze2n1á é2z1enz é2z1e2p éze2r1a éze2r1á éze2r1in éze1ri éze2rip éze2ro é2z1e2rÅ‘ é2z1e2rű éz1es2z éze2ta éze2t1á éze2t1eg éze1te éze2t1e2kéh ézete1ké éze2t1el é2z1e2v é2z1ex é2z1é2d é1zé é2z1ég é2z1ék é2z1é2l é2z1é2r. é2z1érc é2z1é2ri é2z1érm é2z1érp é2z1ér1té é2z1érz éz1fr éz1gé2 éz1gr ézi2d é1zi éz1i1do é2z1i1gé é2z1ill éz1imp éz1ind éz1ing é2z1int ézi2o éz1ion é2z1i2pa é2z1i1pá é2z1i2r é3z2i3re é3z2i3rÅ‘ ézis3s2 ézi2s1ú ézi2s1za ézis2z ézi2s3zá éz1i2ta é2z1i2vá é2z1izm éz1i1zo é2z1izz éz1í2j é1zí éz1ír éz1í2v éz1íz ézkar2c3h éz1ka éz1k2l éz1k2r éz1o1la é1zo éz1old éz1op é2z1or éz1os2z é2z1ox éz1öb é1zö éz1ö2k éz1ön éz1ör éz1ös éz1öt éz1ö2v ézÅ‘1a2 é1zÅ‘ éz1Å‘2r. éz1pl éz1p2r éz3saj éz2s é1z1sa éz3sar éz3seb é1z1se éz3ser éz3sik é1z1si éz3sín é1z1sí éz3sod é1z1so é1z1só2 é2z3sók ézs1ór é1z3sö éz3s1pi ézs1s éz3sug é1z1su ézs1ú2r é1z1sú é2z3sü éz3s2z éz1t2r éz1ug é1zu éz1uj é2z1u2r éz1ut é2z1ü2g é1zü é2z1ür é2z1üs é2z1üt é2z1ü2z éz1űr é1zű éz3z1sa éz1z2s 2f. ff ff. 1fa ffa faát1 fa1á ffaát1 ffa1á fa1b2ro ffa1b2ro fa2c1hi fac2h ffa2c1hi ffac2h fac3h2i. ffac3h2i. fa2c3ho ffa2c3ho fa1d2r ffa1d2r fae2c fa1e ffae2c ffa1e faegyez1 fae2g2y fae1gye ffaegyez1 ffae2g2y ffae1gye fae3lek fae2le ffae3lek ffae2le fae2n ffae2n fae2r ffae2r faé2d fa1é ffaé2d ffa1é fa1f2r ffa1f2r fa1g2r ffa1g2r fa1gyé2 fag2y ffa1gyé2 ffag2y fa2gyék ffa2gyék fa2gyol fa1gyo ffa2gyol ffa1gyo fa2gyÅ‘ ffa2gyÅ‘ fa2gyúr fa1gyú ffa2gyúr ffa1gyú fai2d fa1i ffai2d ffa1i fai2r ffai2r fa2i1re ffa2i1re fai2s ffai2s fa2j1a2l fa1ja ffa2j1a2l ffa1ja fa2j1az ffa2j1az fa2j1ág fa1já ffa2j1ág ffa1já fa2j1á2ru f2ajár ffa2j1á2ru ff2ajár fa2j1egys fa1je fajeg2y ffa2j1egys ffa1je ffajeg2y fa2jelem faje1le ffa2jelem ffaje1le fa2j1elk ffa2j1elk fa2jelm ffa2jelm fa2j1eln ffa2j1eln fa2j1elv ffa2j1elv fa2j1es ffa2j1es fa2j1ö ffa2j1ö fa2jÅ‘ ffa2jÅ‘ fajt2 ffajt2 faj1tr ffaj1tr faju2r fa1ju ffaju2r ffa1ju faj1u1ra ffaj1u1ra fa2jü ffa2jü fa1k2l ffa1k2l fa1k2r ffa1k2r fa1k2v ffa1k2v fa2l1a2dá fa1la ffa2l1a2dá ffa1la fa2l1a2dó ffa2l1a2dó fa2la1já ffa2la1já fa2l1a2kó ffa2l1a2kó fa2l1a2l ffa2l1a2l fala2n ffala2n fa2l1an2y ffa2l1an2y fa2l1ap1ja ffa2l1ap1ja fa2l1apjár falap1já ffa2l1apjár ffalap1já fa2lav ffa2lav fa2l1a1zú ffa2l1a1zú fa2l1ábr fa1lá ffa2l1ábr ffa1lá fa2l1ál ffa2l1ál fa2l1á2ro ffa2l1á2ro fa2l1áth ffa2l1áth fa2l1átv ffa2l1átv fal1e2g2y fa1le ffal1e2g2y ffa1le fa2l1elem fale1le ffa2l1elem ffale1le fa2l1e1lÅ‘ ffa2l1e1lÅ‘ fal1e1se f2ales ffal1e1se ff2ales fa2l1é1ri fa1lé ffa2l1é1ri ffa1lé fal1f2 ffal1f2 fal1ff ffal1ff fal1ï¬ ï¬€al1ï¬ fal1fl ffal1fl fa2lid fa1li ffa2lid ffa1li fa2l1inj ffa2l1inj fa2l1iz ffa2l1iz fa2l1í2 ffa2l1í2 fa2l1ol fa1lo ffa2l1ol ffa1lo fa2l1oml ffa2l1oml fa2lor ffa2lor fa2l1os ffa2l1os fal1ó1rá fa1ló ffal1ó1rá ffa1ló fa1lö2 ffa1lö2 fa2lök ffa2lök fa2l1öv ffa2l1öv fa2l1Å‘r fa1lÅ‘ ffa2l1Å‘r ffa1lÅ‘ fal1p2 ffal1p2 fal2s1í2n. fal1sí ffal2s1í2n. ffal1sí falta2n fal1ta ffalta2n ffal1ta fal2tem fal1te ffal2tem ffal1te fal2ti2p fal1ti ffal2ti2p ffal1ti fal2tüz fal1tü ffal2tüz ffal1tü fa2lü ffa2lü fa2n1e2vet f2anev fa1ne fane1ve ffa2n1e2vet ff2anev ffa1ne ffane1ve fan1évb fa1né ffan1évb ffa1né fan1évr ffan1évr fa1n2y ffa1n2y 2f1a2ny2a. fa1nya ff1a2ny2a. ffa1nya faó2r fa1ó ffaó2r ffa1ó fa1p2l ffa1p2l fa1p2r ffa1p2r fa2r1a2dá f2arad fa1ra ffa2r1a2dá ff2arad ffa1ra fa2rag2y f2arag ffa2rag2y ff2arag fa2r1a2kó f2arak ffa2r1a2kó ff2arak fa2r1a2l ffa2r1a2l fa2r1at ffa2r1at fa2r1a2v ffa2r1a2v fa2r1ácc f2arác fa1rá ffa2r1ácc ff2arác ffa1rá fa2r1ál ffa2r1ál fa2r1á2z ffa2r1á2z fa2r1em fa1re ffa2r1em ffa1re fa2r1e2pe ffa2r1e2pe fa2r1id fa1ri ffa2r1id ffa1ri fa2r1i1ná ffa2r1i1ná fa2r1ing ffa2r1ing fa2r1izm f2ariz ffa2r1izm ff2ariz fa2r1i1zo ffa2r1i1zo far2k1al far1ka ffar2k1al ffar1ka far2kol far1ko ffar2kol ffar1ko far2mál far1má ffar2mál ffar1má far2min far1mi ffar2min ffar1mi far2mis ffar2mis far2m1un1ká far1mu ffar2m1un1ká ffar1mu fa2r1ok1ke fa1ro ffa2r1ok1ke ffa1ro fa2r1os2z ffa2r1os2z fa2r1ut fa1ru ffa2r1ut ffa1ru fa1s2k ffa1s2k fa1s2p ffa1s2p f2a1s1ta ff2a1s1ta fa1s2té ffa1s2té fa2sz1í2v. f2a1s1zí fas2z ffa2sz1í2v. ff2a1s1zí ffas2z fa1t1ri ffa1t1ri fau2r fa1u ffau2r ffa1u fau2s ffau2s f2au2tá ff2au2tá faü2t fa1ü ffaü2t ffa1ü faü2z ffaü2z fa2xe ffa2xe fa1xi2 ffa1xi2 fa2x1ik ffa2x1ik fa2xin ffa2xin fa2xí ffa2xí fa2xö ffa2xö fa2xú ffa2xú fa2xü ffa2xü fa2xű ffa2xű fa1ya ffa1ya fa1ye ffa1ye 1fá ffá fá2c3h ffá2c3h fá2gép fá1gé ffá2gép ffá1gé fáj2lak fáj1la ffáj2lak ffáj1la fáj2lá ffáj2lá fáj2l1e2 ffáj2l1e2 fáj2l1í2 ffáj2l1í2 fá2ní ffá2ní fán1ka2 ffán1ka2 fán2kar ffán2kar fán2ká ffán2ká fán2tad2 fán1ta ffán2tad2 ffán1ta fán2t1a2g ffán2t1a2g fán2tan ffán2tan fán2t1á2 ffán2t1á2 fán2t1e2 ffán2t1e2 fán2tis fán1ti ffán2tis ffán1ti fán2tor fán1to ffán2tor ffán1to fán2tö ffán2tö fá2po ffá2po fá2ram fá1ra ffá2ram ffá1ra f1á2rá ff1á2rá fás3s ffás3s fá2t1a2 ffá2t1a2 fá2t1á ffá2t1á fá2te ffá2te fá2t1érd fá1té ffá2t1érd ffá1té fá2t1i2s fá1ti ffá2t1i2s ffá1ti fát1mű1 ffát1mű1 fá2t1ol fá1to ffá2t1ol ffá1to fá2t1ü2 ffá2t1ü2 fázi2s1ág fá1zi fázi1sá ffázi2s1ág ffá1zi ffázi1sá fázi2s3z ffázi2s3z fba2l1 f1ba ffba2l1 ff1ba fc2lu ffc2lu fd2ró ffd2ró 1fe ffe fe2a1a fe1a ffe2a1a ffe1a fe2a1á ffe2a1á fe2ab ffe2ab fe2ac ffe2ac fe2ad ffe2ad fe2a1e ffe2a1e fe2a1é ffe2a1é fe2af ffe2af fe2aff ffe2aff fe2aï¬ ï¬€e2aï¬ fe2afl ffe2afl fe2ag ffe2ag fe2ah ffe2ah fe2a1i ffe2a1i fe2aj ffe2aj fe2am ffe2am fe2an ffe2an fe2a1p2 ffe2a1p2 fe2ar ffe2ar fe2as ffe2as fe2at ffe2at fe2a1ú ffe2a1ú fe2av ffe2av 2f1e2d2z ff1e2d2z fe2ed fe1e ffe2ed ffe1e fe2el ffe2el fe1f2r ffe1f2r fe2gy1i feg2y ffe2gy1i ffeg2y fe2gyÅ‘ ffe2gyÅ‘ fe2if fe1i ffe2if ffe1i fe2iff ffe2iff fe2iï¬ ï¬€e2iï¬ fe2ifl ffe2ifl fei2n1i ffei2n1i fe2is ffe2is fe2ja ffe2ja fe2j1á2 ffe2j1á2 fe2j1eg2y fe1je ffe2j1eg2y ffe1je fe2j1elm ffe2j1elm fe2j1e2r ffe2j1e2r fe2j1e2s2z ffe2j1e2s2z fe2j1e2v ffe2j1e2v fe2j1o ffe2j1o fe2j1ös fe1jö ffe2j1ös ffe1jö fej1tr ffej1tr fe2j1u ffe2j1u fe2jú ffe2jú fek2t1emb fek1te ffek2t1emb ffek1te fe2l1a2 ffe2l1a2 fe2l1á2 ffe2l1á2 fele2c fe1le ffele2c ffe1le fe2l1e2d2z ffe2l1e2d2z fe2l1e2g ffe2l1e2g fe2l1e2h ffe2l1e2h fe2l1elev fele1le ffe2l1elev ffele1le fe2l1e2mel fele1me ffe2l1e2mel ffele1me fe3lemen ffe3lemen fe3lemet ffe3lemet fe2l1e2més fele1mé ffe2l1e2més ffele1mé fe2l1eml ffe2l1eml fe2l1eng ffe2l1eng fe2l1enn ffe2l1enn fe2l1e2re ffe2l1e2re fe2l1esd ffe2l1esd fe2lesed fele1se ffe2lesed ffele1se fel1eseg ffel1eseg fe2l1e2sett ffe2l1e2sett fe2l1esés fele1sé ffe2l1esés ffele1sé fe2l1esik fele1si ffe2l1esik ffele1si fe2l1esk ffe2l1esk fe2l1es1ni ffe2l1es1ni fe2l1e2sÅ‘ ffe2l1e2sÅ‘ fe2l1essen feles1se ffe2l1essen ffeles1se fe2l1es1te ffe2l1es1te fe2l1es1tü ffe2l1es1tü fe2l1e2s2z ffe2l1e2s2z fe2l1e2tes fele1te ffe2l1e2tes ffele1te fe2l1e2tet ffe2l1e2tet fe2l1ettek felet1te ffe2l1ettek ffelet1te fe2l1ettél felet1té ffe2l1ettél ffelet1té fel1e2ve ffel1e2ve fel1e2vé ffel1e2vé fel1e1vi ffel1e1vi felé2d fe1lé ffelé2d ffe1lé fe2l1é1de ffe2l1é1de fe2l1é2g ffe2l1é2g fe2l1é2k ffe2l1é2k fe2l1é2l ffe2l1é2l fe2l1é2p ffe2l1é2p fe2l1é2r. ffe2l1é2r. fe2l1é2rek felé1re ffe2l1é2rek ffelé1re fe2l1ére2n ffe2l1ére2n fe2l1érh ffe2l1érh fe2l1é1ri ffe2l1é1ri fe2l1érj ffe2l1érj fe2l1érk ffe2l1érk fe2l1érn ffe2l1érn fe2l1érs ffe2l1érs fe2l1ért ffe2l1ért fe2l1érv ffe2l1érv fe2l1étet felé1te ffe2l1étet ffelé1te fe2l1i2 ffe3li fe3l2ib ffe3l2ib fe2l1í2 ffe2l1í2 fel3l ffel3l fe2l1o2 ffe2l1o2 fe2l1ó2 ffe2l1ó2 fe2l1ö2 ffe2l1ö2 fe2l1Å‘g fe1lÅ‘ ffe2l1Å‘g ffe1lÅ‘ fe2l1Å‘r ffe2l1Å‘r fel1p2 ffel1p2 felt2 ffelt2 fe2l1u2 ffe2l1u2 fe2lú ffe2lú 2f1e2ner fe1ne ff1e2ner ffe1ne fen2n1a2 ffen2n1a2 fen2ná ffen2ná fen1ne2 ffen1ne2 fen2nev ffen2nev fen1sc ffen1sc fer1abl fe1ra ffer1abl ffe1ra fe2rak ffe2rak fe2r1áll fe1rá ffe2r1áll ffe1rá fe2r1á2r ffe2r1á2r fere2g fe1re ffere2g ffe1re fer1eg2y ffer1eg2y fe2r1old fe1ro ffe2r1old ffe1ro fe2r1olj ffe2r1olj fe2r1oln ffe2r1oln fe2r1olt ffe2r1olt fe2sem fe1se ffe2sem ffe1se fe2s1er ffe2s1er 2f1e2sé ff1e2sé fe2u1e fe1u ffe2u1e ffe1u feu2m1é2 ffeu2m1é2 fe2vÅ‘ ffe2vÅ‘ fe2z1é2r. fe1zé ffe2z1é2r. ffe1zé fe2zó ffe2zó fe2z2s ffe2z2s 1fé ffé fé1ka2 ffé1ka2 fé2k1ad ffé2k1ad fé2k1ag ffé2k1ag fé2k1al ffé2k1al fé2kas ffé2kas fé2k1a1u ffé2k1a1u fé2k1á2 ffé2k1á2 fé2k1e2g fé1ke ffé2k1e2g ffé1ke fék1ell ffék1ell fé2k1er ffé2k1er fé2k1ék fé1ké ffé2k1ék ffé1ké fé2k1é2l ffé2k1é2l fé2k1é2r. ffé2k1é2r. fé2k1o2l fé1ko ffé2k1o2l ffé1ko fé2k1or ffé2k1or fé2kön fé1kö ffé2kön ffé1kö fé2k1u2 ffé2k1u2 fé2k1ú ffé2k1ú fé2l1a2 ffé2l1a2 fé2l1á2j fé1lá ffé2l1á2j ffé1lá fé2l1á2r ffé2l1á2r fé2leg fé1le ffé2leg ffé1le fé2l1ekk ffé2l1ekk fél1e1lé ffél1e1lé fé2l1ell ffé2l1ell fé2l1e1lÅ‘ ffé2l1e1lÅ‘ féle2m fféle2m fé2l1emb ffé2l1emb fé2l1e1me ffé2l1e1me fé2l1e2r ffé2l1e2r fé2l1e1se ffé2l1e1se fé2l1es2z ffé2l1es2z 2f1é2let ff1é2let fé2l1ez ffé2l1ez fé2l1é1va fé1lé ffé2l1é1va ffé1lé fé2l1i2gaz1 fé2l1i1ga fé1li ffé2l1i2gaz1 ffé2l1i1ga ffé1li fé2lin ffé2lin fé2lir ffé2lir fé2l1is ffé2l1is fé2liv ffé2liv fé2lí ffé2lí fé2l1ok fé1lo ffé2l1ok ffé1lo fé2los ffé2los fé2ló ffé2ló fé2l1ö ffé2l1ö fé2lÅ‘r fé1lÅ‘ ffé2lÅ‘r ffé1lÅ‘ félpen1 fél1pe ffélpen1 ffél1pe fél1t2r ffél1t2r fé2l1ú2 ffé2l1ú2 fé2mab fé1ma ffé2mab ffé1ma fé2ma1d2 ffé2ma1d2 fé2m1a2g ffé2m1a2g fé2m1a2j ffé2m1a2j fé2m1a2n ffé2m1a2n fé2m1ap ffé2m1ap fé2ma1u ffé2ma1u fé2maz ffé2maz fé2m1á2c fé1má ffé2m1á2c ffé1má fé2m1á2l ffé2m1á2l fé2m1e2c fé1me ffé2m1e2c ffé1me fé2me1dé ffé2me1dé fé2me2ké2t. féme1ké ffé2me2ké2t. fféme1ké fé2m1e2l ffé2m1e2l fé2m1emb ffé2m1emb fé2mer ffé2mer fé2mez ffé2mez fé2m1é2k fé1mé ffé2m1é2k ffé1mé fémé2r ffémé2r fé2m1é1ré ffé2m1é1ré fé2m1i2n fé1mi ffé2m1i2n ffé1mi fé2m1ir ffé2m1ir fé2m1is ffé2m1is fé2mit ffé2mit fé2m1iz ffé2m1iz fé2mí ffé2mí fé2m1o ffé2m1o fé2mó ffé2mó fé2mö ffé2mö fé2m1u ffé2m1u fé1mü2 ffé1mü2 fé2m1ül ffé2m1ül fé2ny1e2g fén2y fé1nye ffé2ny1e2g ffén2y ffé1nye fé2ny1e2l ffé2ny1e2l fé2ny1e2r ffé2ny1e2r fé2ny1is fé1nyi ffé2ny1is ffé1nyi fé2ny1í ffé2ny1í fé2nyo ffé2nyo fé2nyö2 ffé2nyö2 fé2nyú ffé2nyú fé2pí ffé2pí fé2pü ffé2pü 2féra1á fé1ra fféra1á ffé1ra 2férab fférab 2féraf fféraf 2féraff fféraff 2féraï¬ ï¬€Ã©raï¬ 2féra1fl fféra1fl 2féra1i fféra1i 2férak fférak 2féral fféral 2féram fféram 2féran fféran 2férar fférar 2férat fférat 2fé1rá ffé1rá fér2cem fér1ce ffér2cem ffér1ce fére2g1e2 fé1re ffére2g1e2 ffé1re fé2s1orr f2ésor fé1so ffé2s1orr ff2ésor ffé1so fész1al fés2z fé1s1za ffész1al ffés2z ffé1s1za f2é1s1zá2 ff2é1s1zá2 fész1ár ffész1ár fé2szeg fé1s1ze ffé2szeg ffé1s1ze fé2sz1el ffé2sz1el féta3u2 fé1ta fféta3u2 ffé1ta 2f1évk ff1évk fé2z2s ffé2z2s fé1z1s1e2 ffé1z1s1e2 fé1z1s1o ffé1z1s1o f8f f2f2e. f1fe ff2e. ffe3l1i2 ffi2ac ff8i ffi1a ffi2ac ffi2ag ffi2ag ffi2a1ka ffi2a1ka ffi2am ffi2am ffi2at ffi2at ff1li2 ff8l ffli2 ff1sh ff1sh 1f2fy 7ffy fg2ló ffg2ló f8i ï¬ fi2a1a fi1a ï¬1a ï¬2a1a fi2a1á ï¬2a1á fi2a1e ï¬2a1e fi2a1é ï¬2a1é fi2af ï¬2af ï¬2aff fi2ah ï¬2ah fi2a1í ï¬2a1í fia2la ï¬a2la fi2a1me ï¬2a1me fi2a1o ï¬2a1o fi2a1ó ï¬2a1ó fi2a1ö ï¬2a1ö fia1p ï¬a1p fi2a1pa ï¬2a1pa fia2ra ï¬a2ra fia2rá ï¬a2rá fi2a1ré ï¬2a1ré fi2a1s1zá fias2z ï¬2a1s1zá ï¬as2z fi2a1s1zo ï¬2a1s1zo fi2a1u ï¬2a1u fi2a1ü ï¬2a1ü fi2a1vá ï¬2a1vá fi2a1ve ï¬2a1ve fiá2l fi1á ï¬1á ï¬Ã¡2l fi2c3h ï¬2c3h fici2t1á fi1ci ï¬ci2t1á ï¬1ci fi2dan fi1da ï¬2dan ï¬1da fi2d1á ï¬2d1á fi1d1rá ï¬1d1rá fie2l fi1e ï¬1e ï¬e2l fie2m ï¬e2m fie2n2 ï¬e2n2 fie2r ï¬e2r fie2s ï¬e2s fie1s1e ï¬e1s1e fie2t ï¬e2t fi1f8l ï¬1fl fi1fr ï¬1fr 2f1i2gaz fi1ga 2ï¬2gaz ï¬1ga fi1k2l ï¬1k2l fi1k1rá ï¬1k1rá fi1k1ré ï¬1k1ré fi1k1ri ï¬1k1ri fi1k2v ï¬1k2v fi2lac fi1la ï¬2lac ï¬1la fil1a1da ï¬l1a1da fil1akn ï¬l1akn fil1akt ï¬l1akt fi2lal ï¬2lal fi2lam ï¬2lam fi2l1ál fi1lá ï¬2l1ál ï¬1lá fi2lár ï¬2lár fil1elt fi1le ï¬l1elt ï¬1le fi2l1en ï¬2l1en fi2les ï¬2les fil1es2z ï¬l1es2z fil1ért fi1lé ï¬l1ért ï¬1lé fi2l1i2d fi1li ï¬2l1i2d ï¬1li fi2l1i2m ï¬2l1i2m fi2l1in ï¬2l1in fil2mad fil1ma ï¬l2mad ï¬l1ma fil2mak ï¬l2mak fil2man ï¬l2man fil2m1as ï¬l2m1as fil2mat ï¬l2mat fil2m1á2 ï¬l2m1á2 fil2mos fil1mo ï¬l2mos ï¬l1mo fil2mu2 ï¬l1mu2 fi2lö ï¬2lö fi2lü ï¬2lü 2f1i2má 2ï¬2má fimeg1 fi1me ï¬meg1 ï¬1me 2f1i2nas fi1na 2ï¬2nas ï¬1na 2find 2ï¬nd fin1os2z fi1no ï¬n1os2z ï¬1no fi2n1ó ï¬2n1ó fint2 ï¬nt2 fin1tr ï¬n1tr fi2n1u2 ï¬2n1u2 fi2nú ï¬2nú 2finx 2ï¬nx fio2v fi1o ï¬1o ï¬o2v fi3ók fi1ó ï¬1ó ï¬3ók fió2k1a2l fió1ka ï¬Ã³2k1a2l ï¬Ã³1ka fió2kar ï¬Ã³2kar fió2k1e2 ï¬Ã³2k1e2 fió2kép fió1ké ï¬Ã³2kép ï¬Ã³1ké fió2kol fió1ko ï¬Ã³2kol ï¬Ã³1ko fi2ó2kö ï¬2ó1kö fió2r ï¬Ã³2r fiÅ‘2r fi1Å‘ ï¬1Å‘ ï¬Å‘2r fi1p2l ï¬1p2l fi1p2r ï¬1p2r fi2rod fi1ro ï¬2rod ï¬1ro fir2s ï¬r2s fis1arc fi1sa ï¬s1arc ï¬1sa fi1sc ï¬1sc fi1s2p ï¬1s2p fist2 ï¬st2 fi1str ï¬1str fi2t1a1d2 fi1ta ï¬ta1d2 ï¬1ta fit1a2la ï¬t1a2la fi2t1alj ï¬2talj fi2tág fi1tá ï¬2tág ï¬1tá fit1á2rak fitá1ra ï¬tá2rak ï¬tá1ra fitá2t ï¬tá2t fi2t1á1ta ï¬2t1á1ta fi2t1éh fi1té ï¬2t1éh ï¬1té fi2t1érd ï¬2t1érd fi2tik fi1ti ï¬2tik ï¬1ti fi2t1in ï¬2t1in fi2tir ï¬2tir fi2t1i2z ï¬2t1i2z fito1p2 fi1to ï¬to1p2 ï¬1to f2i2t1os2z ï¬tos2z fi2tön fi1tö ï¬2tön ï¬1tö fi2t1Å‘r fi1tÅ‘ ï¬2t1Å‘r ï¬1tÅ‘ fi2t1ur fi1tu ï¬2t1ur ï¬1tu fiu2min fi1u fiu1mi ï¬1u ï¬u2min ï¬u1mi fiu2t ï¬u2t fi2ú1a fi1ú ï¬1ú ï¬2ú1a fi2ú1á ï¬2ú1á fi2ú1e ï¬2ú1e fi2úf ï¬2úf ï¬2úff fi2úg ï¬2úg fi2ú1í ï¬2ú1í fi2úl ï¬2úl fi2ú1o ï¬2ú1o fi2ú1ö ï¬2ú1ö fi2ú1Å‘ ï¬2ú1Å‘ fi2úp ï¬2úp fi2ús2z ï¬2ús2z fi2ú1ti ï¬2ú1ti fi2ú1u ï¬2ú1u fi2ú1ú ï¬2ú1ú fi2ú1ü ï¬2ú1ü fi2x1ár fi1xá ï¬2x1ár ï¬1xá fi2x1el fi1xe ï¬2x1el ï¬1xe fi2xö ï¬2xö 2f1izmusá1é fiz1mu fizmu1sá 2ï¬zmusá1é ï¬z1mu ï¬zmu1sá 2f1izmu1sé 2ï¬zmu1sé 2f1izmu1sú 2ï¬zmu1sú 1fí ffí fí2rá ffí2rá fír1c1sa2 fírc2s ffír1c1sa2 ffírc2s fí2r1in fí1ri ffí2r1in ffí1ri f1í2ró ff1í2ró fír1tr ffír1tr fí2rü ffí2rü f8j fjú1s2z f1jú ff8j ffjú1s2z ff1jú fki2s1 f1ki ffki2s1 ff1ki fk2li ffk2li fk2lu ffk2lu fk2ró ffk2ró f8l f2lak f1la fl fla flak f2lan flan f2lep f1le fle flep f2lip f1li fli flip fli2s1é fli2s1é flo2n1á f1lo flo flo2n1á flo2né flo2né f2lot flot f2luk f1lu flu fluk 1fo ffo fo2am fo1a ffo2am ffo1a fo2g1a2r fo1ga ffo2g1a2r ffo1ga fo2g1á2c fo1gá ffo2g1á2c ffo1gá fo2gál ffo2gál fo2g1árk ffo2g1árk fo2g1á1ro ffo2g1á1ro fo2g1e ffo2g1e fog3g ffog3g fo2gí ffo2gí fo2g1or fo1go ffo2g1or ffo1go fo2g1os ffo2g1os fo2gö ffo2gö fo2gur fo1gu ffo2gur ffo1gu fo2gü ffo2gü fohá2szat fo1há fohás2z fohá1s1za ffohá2szat ffo1há ffohás2z ffohá1s1za fo2kal fo1ka ffo2kal ffo1ka fok1áll fo1ká ffok1áll ffo1ká fo2k1árr ffo2k1árr fo2k1e2 ffo2k1e2 fok1ing fo1ki ffok1ing ffo1ki fo2kí ffo2kí fok1k2 ffok1k2 fo2ko1la2 fo1ko ffo2ko1la2 ffo1ko fo2k1or ffo2k1or folta2n fol1ta ffolta2n ffol1ta fol2t1e ffol2t1e fol2t1ö ffol2t1ö fo2n1a1da fo1na ffo2n1a1da ffo1na fo2na1do ffo2na1do f2o2nak ff2o2nak fon1alap fona1la ffon1alap ffona1la fona2l1e2 ffona2l1e2 fon1al1ja ffon1al1ja fon1al1jo ffon1al1jo fona2n ffona2n fon1an2y ffon1an2y fo2n1as2z ffo2n1as2z fo2n1a1u ffo2n1a1u fo2n1á2r fo1ná ffo2n1á2r ffo1ná fonás1s ffonás1s fo2n1át ffo2n1át fond2 ffond2 fon1dr ffon1dr fo2n2e. fo1ne ffo2n2e. ffo1ne fo2neg ffo2neg fo2n1e2l1 ffo2n1e2l1 fo2ner ffo2ner fo2n1e2s ffo2n1e2s fo2nev ffo2nev fo2nék fo1né ffo2nék ffo1né fon1f2 ffon1f2 fon1ff ffon1ff fon1ï¬ ï¬€on1ï¬ fon1fl ffon1fl fon1i2ko fo1ni ffon1i2ko ffo1ni fo2n1i2m ffo2n1i2m fo2nin ffo2nin fo2n1is ffo2n1is fo2niz ffo2niz fo2ní ffo2ní fon1k ffon1k fo2n1or fo1no ffo2n1or ffo1no fo2n1os2z ffo2n1os2z fo2nö ffo2nö fo2nÅ‘2 ffo2nÅ‘2 fons2 ffons2 fon1st ffon1st fon2t1i2n fon1ti ffon2t1i2n ffon1ti fon1tó2 ffon1tó2 fon2tón ffon2tón fo2nü ffo2nü fo1nya1 fon2y ffo1nya1 ffon2y fo2r1ad fo1ra ffo2r1ad ffo1ra forakés2z1 for2akés fora1ké fforakés2z1 ffor2akés ffora1ké fo2r1a1la ffo2r1a1la fo2r1a2n ffo2r1a2n for1a1to ffor1a1to fo2reg fo1re ffo2reg ffo1re fo2r1e2l ffo2r1e2l fo2r1er ffo2r1er forgás1s for1gá fforgás1s ffor1gá fo2r1il fo1ri ffo2r1il ffo1ri fo2r1i2o ffo2r1i2o for2m1e2l for1me ffor2m1e2l ffor1me for2m1em ffor2m1em for2me1rÅ‘ ffor2me1rÅ‘ for2mes ffor2mes for2m1ér1té for1mé ffor2m1ér1té ffor1mé for2mil for1mi ffor2mil ffor1mi for2m1in ffor2m1in fo2r1ol fo1ro ffo2r1ol ffo1ro fo2rö ffo2rö 2f1or1rú ff1or1rú fors2 ffors2 for1sp ffor1sp for2t1ál for1tá ffor2t1ál ffor1tá for2t1e2l for1te ffor2t1e2l ffor1te for2t1érd for1té ffor2t1érd ffor1té for2tü ffor2tü fo2rü ffo2rü foto1s fo1to ffoto1s ffo1to fo2uc fo1u ffo2uc ffo1u fo2ur ffo2ur fo2vi ffo2vi 1fó ffó fó2rá ffó2rá f2ó1s1za2 fós2z ff2ó1s1za2 ffós2z 1fö ffö fö2la ffö2la fö2lá ffö2lá föl2dök föl1dö fföl2dök fföl1dö fö2l1e2 ffö2l1e2 fö3l2e. ffö3l2e. 2f1ö2lésbel fö1lé fölés1be ff1ö2lésbel ffö1lé ffölés1be fö2liv fö1li ffö2liv ffö1li fö2lí ffö2lí föl1k2 fföl1k2 fö2lo ffö2lo fö2ló ffö2ló fö2lön fö1lö ffö2lön ffö1lö fölt2 ffölt2 föl1tr fföl1tr fö2lu ffö2lu fö2lú ffö2lú fön2n1 ffön2n1 fön1ne2 ffön1ne2 fö2sá ffö2sá 1fÅ‘ ffő fÅ‘a2n fÅ‘1a ffőa2n ffő1a főá2g fÅ‘1á ffőá2g ffő1á fÅ‘1bl ffő1bl fÅ‘1br ffő1br fÅ‘1d1ra ffő1d1ra fÅ‘e2l fÅ‘1e ffőe2l ffő1e fÅ‘e2r ffőe2r fÅ‘e2s ffőe2s főé2h fÅ‘1é ffőé2h ffő1é főé2te ffőé2te fÅ‘1f8l fÅ‘1fl ffő1fl fÅ‘1f2r ffő1f2r fÅ‘1gl ffő1gl fÅ‘1gn ffő1gn fÅ‘1gr ffő1gr fÅ‘i2d fÅ‘1i ffői2d ffő1i fÅ‘igaz1 fÅ‘i2ga ffőigaz1 ffői2ga fÅ‘i2ta ffői2ta főí2t fÅ‘1í ffőí2t ffő1í fÅ‘1kl ffő1kl fÅ‘1kv ffő1kv fÅ‘2n1ag fÅ‘1na ffő2n1ag ffő1na fÅ‘2n1apj ffő2n1apj fÅ‘1pl ffő1pl fÅ‘1pr ffő1pr fÅ‘2r1aj fÅ‘1ra ffő2r1aj ffő1ra fÅ‘2rem fÅ‘1re ffő2rem ffő1re fÅ‘re2s ffőre2s fÅ‘2r1ék fÅ‘1ré ffő2r1ék ffő1ré fÅ‘1ri2 ffő1ri2 fÅ‘2r1is ffő2r1is fÅ‘2rül fÅ‘1rü ffő2rül ffő1rü fÅ‘r1ü1lé ffőr1ü1lé fÅ‘1sl ffő1sl 2fÅ‘1sö ffő1sö fÅ‘1s1ta ffő1s1ta fÅ‘1st2r ffő1st2r fÅ‘s2z2 ffős2z2 fÅ‘1szl ffő1szl fÅ‘1szp ffő1szp fÅ‘1szt2 ffő1szt2 fÅ‘1t2r ffő1t2r főü2l fÅ‘1ü ffőü2l ffő1ü fÅ‘zÅ‘1é2 fÅ‘1zÅ‘ ffőzÅ‘1é2 ffő1zÅ‘ fp2la ffp2la fp2ro ffp2ro 1franc f1ra ffranc ff1ra fra1s ffra1s frá2ma f1rá ffrá2ma ff1rá frá2má ffrá2má frá2m1e2 ffrá2m1e2 frá2nye frán2y ffrá2nye ffrán2y f2rás ff2rás f2resk f1re ff2resk ff1re fré2ná f1ré ffré2ná ff1ré fré2nén fré1né ffré2nén ffré1né 1f2ric f1ri ff2ric ff1ri f3ric2h ff3ric2h f2rig ff2rig f3rip ff3rip 1f2ris ff2ris fron2t1a2 f1ro ffron2t1a2 ff1ro fron2t1e2 ffron2t1e2 f2röc f1rö ff2röc ff1rö f2rus f1ru ff2rus ff1ru fs2ho ffs2ho fs2po ffs2po fs1te2 ffs1te2 fs2tí ffs2tí fst2r ffst2r ft1aj f1ta fft1aj ff1ta fta1kr ffta1kr ft1alj fft1alj ft1bl fft1bl f2t1ef f1te ff2t1ef ff1te f2t1eff ff2t1eff f2t1eï¬ ï¬€2t1eï¬ f2t1efl ff2t1efl fte2m ffte2m f2t1e1me ff2t1e1me f2t1é2r. f1té ff2t1é2r. ff1té fti2g f1ti ffti2g ff1ti f2t1i1ge ff2t1i1ge f2t1ing ff2t1ing ft1ös f1tö fft1ös ff1tö ft1út f1tú fft1út ff1tú f2t1üg f1tü ff2t1üg ff1tü ft1üt fft1üt f2t1ü2z ff2t1ü2z 1fu ffu fu1ga1 ffu1ga1 fura2t1e fu1ra ffura2t1e ffu1ra fu2s1as fu1sa ffu2s1as ffu1sa fu2seg fu1se ffu2seg ffu1se fu2sis fu1si ffu2sis ffu1si fu2s1z1á2 fus2z ffu2s1z1á2 ffus2z fu2sz1ol fu1s1zo ffu2sz1ol ffu1s1zo fu2s1zü2 ffu2s1zü2 futókés2z1 fu1tó fut2ókés futó1ké ffutókés2z1 ffu1tó ffut2ókés ffutó1ké 1fú ffú fúj2tal fúj1ta ffúj2tal ffúj1ta 2f1ú2ré ff1ú2ré 2f1úrr ff1úrr fú2z2s ffú2z2s 1fü ffü 2f1ü2g2y ff1ü2g2y fü2la ffü2la fü2lá ffü2lá füle2c fü1le ffüle2c ffü1le fü2l1eml ffü2l1eml fü2l1e2p ffü2l1e2p fü2l1e2v ffü2l1e2v fü2l1é2j fü1lé ffü2l1é2j ffü1lé fü2l1é2k ffü2l1é2k fü2lí ffü2lí fül3l ffül3l fü2lo ffü2lo 2fü1lÅ‘ ffü1lÅ‘ fü2lÅ‘t2 ffü2lÅ‘t2 fül3t2 ffül3t2 fü2ma ffü2ma fü2má ffü2má fü2m1e ffü2m1e fü2mo ffü2mo fü2mÅ‘ ffü2mÅ‘ fü2mú ffü2mú 2f1ünn ff1ünn für2t1Å‘ ffür2t1Å‘ füs1tü2 ffüs1tü2 füs2t1ü1lé ffüs2t1ü1lé 2f1ü2té ff1ü2té 2f1ü2tÅ‘ ff1ü2tÅ‘ 2f1üzl ff1üzl 1fű ffű fű1dr ffű1dr fű1fr ffű1fr fű1pr ffű1pr fű1sr ffű1sr fű3sze2r1el fűs2z fű1s1ze fűsze1re ffű3sze2r1el ffűs2z ffű1s1ze ffűsze1re fű1t2r ffű1t2r fű2zá ffű2zá fű2zis fű1zi ffű2zis ffű1zi fű2zo ffű2zo fű2z1ölt fű1zö ffű2z1ölt ffű1zö fváro1sé2 f1vá fvá1ro ffváro1sé2 ff1vá ffvá1ro 1fy 2g. 1ga 2g1abc 2gabr 2g1abs ga1by 2g1a2dag ga1da g1adap 2g1a2da1ta 2g1a2datb gadás1s ga1dá 2g1adm ga2dog ga1do 2g1a2do1má gadói2ko ga1dó gadó1i 2g1a2dósat gadó1sa 2g1a2d2u. ga1du 2g1a2duk gae2n ga1e gae2r 2g1af8f 2g1aff ga1f8l ga1fl ga2g2a. ga1ga 2g1agg ga1g2l g2a1g2rá g1ag2y. gag2y ga2gyu g1a2gyú 2g1aján ga1já 2g1ajk 2g1ajt 2g1a2kad ga1ka ga2kác ga1ká 2g1akc g2a3ké 2gakév ga1kl 2g1akna1i gak1na g1ak1tu g1akv gala2g1ú ga1la ga2lat 2g1a2láf ga1lá 2g1a2láff 2g1a2lá1í ga2láv 2g1alb 2g1alc gale2g1e2 ga1le 2g1alk galo2m1e ga1lo 3g2alop g1a2los 2g1a2lud ga1lu ga2lul ga2lus2z 2g1al1vó ga2m1a2gá g2amag ga1ma 2g1amc 2g1amp ga2nab ga1na 2g1a2nal 2ganc2s gan2csal gan1c1sa gan2cs1ág gan1c1sá gan2c1se gan1d2 3g2a1né 1gan2ga g1a2nim ga1ni ga2nyag gan2y ga1nya ga2ny1at ganye2l g2a1nye ga2nyér ga1nyé g1a2nyó ga2nyö gaó2r ga1ó ga2p2a. ga1pa ga2pa1á ga2pac ga2pas ga2pán ga1pá ga2pát ga1p2l ga2pok ga1po ga2p2ó. ga1pó ga2pób ga2pók ga2pón ga2póv 2g1app ga1p2ré g2a1p1ro gara2t1í ga1ra 2g1a2rák ga1rá 2g1a2rán2y ga2rén ga1ré gar1k2 ga2rÅ‘ ga1ry ga2seg ga1se ga2s1is ga1si g2a2s1ín ga1sí ga1s2pi ga1sp2r gas3s1ze gas2s2z gas3s1zí gast2 g2a1s2ta g2a1s1to g2a1str gasz1agg gas2z ga1s1za ga2sz1an ga2szág ga1s1zá ga2szás ga2sz1e2s ga1s1ze gasz2tár gasz1tá ga2t1a2d ga1ta ga2tav g2a2t1ál ga1tá ga2t1á2ram g2atár gatá1ra ga2t2e. ga1te ga2t1eg ga2tep gaté2s ga1té ga1t1hi ga2tim ga1ti gat1old ga1to ga2to1mi ga2uc ga1u g1a2uk ga2ul ga2us ga2van ga1va ga2var ga2vat 2g1a2vu gaza2n ga1za gaz1an2y gaza2te ga2zál ga1zá 3g2azd 3g2a1ze ga2zer 2gazg 2gazí1tá ga1zí gazmus1s2 gaz1mu 2gazod ga1zo 2gazon ga2zü 1gá g2á1ba 2g1á2bé g2á1bó 2g1ábr 3g2á1ci gács1a2va gác2s gá1c1sa gá2c1se gá2cs1il gá1c1si gá2c1sü gá1da2 gá2d1al gá2dá gá2d1él gá1dé gá2d1i1a gá1di gá2dis gá2dÅ‘ gá2d1ü gá2fo 2g1á2g. gá2gak gá1ga gá2gat gá2gaz 2g1ágg 2g1á2gi 2g1á2gú 2g1á2g2y gágy1as2z gá1gya 2g1á2hí g2á1ja g2á1já gá2j1e2 gá2jü gála1p gá1la 2g1álc 2g1ál1do gá2l1es gá1le g2á1li 3gális 2g1ál2l. 2g1ál1lí 2g1ál1lu 2g1ál1mo 3g2ál2y g2á2m. gá2mal gá1ma gá2m1e2 2g1á2mí gá2mü gá1na2 gá2nac gá2nal gá2na2p gá2n1at gá2nás gá1ná gán2c1se gánc2s gán2c1si gán2c1s1ö2 gán1d2 gá2n1e gá2nép gá1né 2g1áng2y. gáng2y gá2nig gá1ni gá2n1i1o gá2nis 2g1á2niz gá2nol gá1no gá2n1ó2 gá2nö gán1s2z2 gánt2 gán1tr gá2n1ú gá2nü gá2ny1a2n gán2y gá1nya gá2nyar gá2ny1as gá2ny1e2 gá2nyér1d2 gá1nyé gá2nyérz gá2nyij gá1nyi gány1ká2 gá2nyö gá2po gá2rad gá1ra gá2r1ag gá2r1aj 2g1á2ram gá2r1a2n gá2rar gá2ras gá2ra2t gár1a1to gár1att gá2r1av 2g1á2raz gá2rá2g gá1rá gá2r1ál gá2r1á2z gár2del gár1de gá2re2 gár1em gár1es gár1et gár1é1te gá1ré gá2rif gá1ri gá2riff gá2r1i2p gá2r1isk gá2r1ism gá2r1iz gá2rí 2g1ár1nyé gárn2y gá2r1ol gá1ro gá2rop gár1ost gá2r1os2z gá1ró2 gá2r1ór gá2rö gá2rÅ‘ gár1s2 gár1tr 2g1á2r2u. gá1ru 2g1á2rud gá2rug 2g1á2ruh 2g1á2ru1lá 2g1á2ru1ló 2g1á2rur 2g1á2rus gár1u1ta gá2rut gár1u1tu gá2rúr gá1rú gá2rút gá2rü gá2rű g2á2s. gá2s1a2d gá1sa gá2sal 2g1á2sa1tá gá2s1á2g gá1sá gá2s1á2rad gásá1ra gá2s1árn 2g1á2sás gá2s1á2to gá2s1e2 gá2s1im gá1si gá2sis gá2sí gá2sor gá1so gá2só gá2s1ó2r gá2sö gá2sÅ‘ gás3s1zé gás2s2z2 gás3s1zü gást2 gás1tr gá2su2t gá1su gá2s1ü2 gá2sű gá2szal gás2z gá1s1za gá2sza2s gá2szatl gá2s3zav gá2sz1ál gá1s1zá gá2s1z1e2 gá2szis gá1s1zi gá2szit gá2s1zí 2g1ász1ká gász1k2 gás2zkés2z1 gász1ké gá2s2z1ok1ta gá1s1zo gá2sz1ól gá1s1zó gá2s3zón gá2szöv gá1s1zö gá2s1zü g2á2t. 2gátad gá1ta gá2taj 2gá2tal gát1a2la gát1alj 2gá2t1á2 2g1át1bo gá2t1eg gá1te gá2t1e2l gá2t1e2m gá2ten gá2t1é2l gá1té gáté2r gá2t1é2r. gá2t1é1re 2gát1fe 2g1átg 2g1át1ha gá2til gá1ti gá2tis gá2tiz 2g1á2tí g1át1mé gá2t1ol1da gá1to gá1tó2 gá2tór 2g1á2t1ö gá2tÅ‘ 2g1át1tű 2gá2tü2 g1át1vi g2á1va g1á2vó gá2z1a2d gá1za gáz1akn gáz1akt gá2z1a2l gá2zar gá2z1a2t gá2z1av gá2z1á2r. gá1zá gá2z1á1rá gáz1á1re gá2z1árh gá2z1ár1k2 gá2z1árn gá2z1á2ro gá2z1árr gá2z1árt gá2zá1ru 2g1á2zásos gázá1so gá2z1e2 gázi2g gá1zi gá2z1i1ga gá2zim gá2z1i2p gá2z1i2s gá2z1i2z gá2zí gá2zö gá2zÅ‘ gáz3sp gáz2s gáz3s1ta gáz3s1te gáz3sug gá1z1su gá2z1sú gá2z3sü gáz3s2z gá2zü gbe1á2 g1be gbé2lá g1bé gbé2rem gbé1re gb2la gb2le gb2lo gb2lú gb2ra gb2ri gb2ro gb2ru gcsa1pá2 gc2s g1c1sa gcsa2p1ág gda2u g1da gd1ell g1de gde1p2 g2d1é2k g1dé g2d1é2r. gd1in2a. g1di gdi1na gd1ináb gdi1ná gd1ináh gd1inár gd1inát gd1ináv g1d2rá gd2re gd2ro gd1t2r g2d3zö gd2z 1ge gea2c ge1a gea2g gea2l geá2r ge1á g2e1be g1e2cet ge1ce 3g2e1ci g1ed2d2z 2g1e2dénn ge1dé 2g1e2dén2y ge2d1ze ged2z ge2d1zé ge2d1zi ge2d1zÅ‘ gee2t ge1e 2g1ef8f 2g1eff 2ge1ge 2g1e2gé 3g2egom ge1go ge2gye geg2y ge2gyé gegy1ér ge2gyo 2g1e2gyü ge2hes ge1he ge2het 2g1e2hü ge2ig ge1i 2g1ejt 2g1e2k2e. ge1ke 2g1e2ke1i 2g1e2kek 2g1e2ké1é ge1ké ge2kéj ge2kék 2g1e2ké2s. ge1k2li 2g1eks 3g2e2l. g1e2l1a2d ge1la ge2lag 3g2elap ge2las ge2lál ge1lá ge2l1ár 2g1elc2s 3g2el2d. 2g1el1do 2g1el1dö 2g1e2lef ge1le 2g1e2l1eff 2g1e2leg 3g2ele2k. 2ge2le1mé ge2le1mi 2ge2lemk 2g1e2lemm 2g1e2lemz gele2n 3g2el2end ge2l1eng ge2l1en2y gel1es1te ge2lev ge2lég ge1lé 3g2elésb 3g2elések gelé1se 3g2elése2n 3g2elésén gelé1sé 3g2elésér 3g2elésh 3g2elés2i. gelé1si 3g2elésk 3g2elés1rÅ‘ 3g2eléss 3g2elés1tÅ‘ 3g2elé1sü 2g1elés2z 3g2elés2z. 3g2elé1s1zÅ‘ 3g2elé1s1zü 3g2elészv 2g1elhel gel1he 3g2elhes 3g2elhet 3g2el2i. ge1li 3g2elik gel1int 3g2el2j. 3g2el1je 3g2el1jé 3g2el1jü 2g1el1kü 2g1elle1nÅ‘ gel1le 2g1el1mé 2g1elnev gel1ne 3g2elnén gel1né 3g2el1ni 2g1e2l1os ge1lo ge2lö 3g2el2Å‘. ge1lÅ‘ ge2lÅ‘bbr 3g2elÅ‘1be 3g2elÅ‘1bé 3g2elÅ‘1bi 3g2elÅ‘1bo 3g2elÅ‘1bÅ‘ 3g2elÅ‘c 3g2elÅ‘1e 3g2elÅ‘1é 3g2elÅ‘g 3g2elÅ‘h 3g2elÅ‘1ja 3g2elÅ‘1jé 3g2elÅ‘1jo 3g2elÅ‘1jü 3g2elÅ‘1jű 3g2elÅ‘2k. 3g2elÅ‘1ka 3g2elÅ‘kb 3g2elÅ‘ker gelÅ‘1ke 3g2elÅ‘ket 3g2elÅ‘kez 3g2elÅ‘k2é. gelÅ‘1ké 3g2elÅ‘kén 2g1elÅ‘kés 3g2elÅ‘kh 3g2elÅ‘1ki 3g2elÅ‘kk 3g2elÅ‘1kl 3g2elÅ‘kn 3g2elÅ‘1kö 3g2elÅ‘1kÅ‘ 3g2elÅ‘kr 3g2elÅ‘kt 3g2elÅ‘1ku 3g2elÅ‘1kü 2g1e2lÅ‘l 2g1elÅ‘m 3g2elÅ‘2n. 3g2elÅ‘1na 3g2elÅ‘1ne 3g2elÅ‘1né 3g2elÅ‘nk 3g2elÅ‘1nö 3g2elÅ‘1nyi gelÅ‘n2y 3g2elÅ‘1o 3g2elÅ‘1ö 3g2elÅ‘1Å‘ 3g2elÅ‘p g2elÅ‘r2e. gelÅ‘1re 3g2elÅ‘rés gelÅ‘1ré 3g2elÅ‘1ro 3g2elÅ‘1rÅ‘ 3g2elÅ‘2s. 3g2elÅ‘1sá 3g2elÅ‘1so 3g2elÅ‘1sö 3g2elÅ‘1s1za gelÅ‘s2z2 3g2elÅ‘1s1ze 3g2elÅ‘1s1zé 3g2elÅ‘1s1zi 3g2elÅ‘1s1zó ge2lÅ‘1s1zö 3g2elÅ‘2t. 3g2elÅ‘1tá 2g1elÅ‘1té 3g2elÅ‘1tÅ‘ 3g2elÅ‘1tü 3g2elÅ‘1ü 3g2elÅ‘1vá 3g2elÅ‘1ve 3g2elÅ‘1vé 3g2elÅ‘vis gelÅ‘1vi 3g2elÅ‘viz 2g1e2lÅ‘z g1el1sÅ‘ 3g2els2z. gels2z 2g1el1s1zá 2g1el1s1zo 3g2el2t. 3g2elt2e. gel1te 3g2eltek 3g2eltem 3g2eltes 2g1eltet2t. 2g1eltettn 3g2eltéb gel1té 3g2elték 3g2elté2l 2g1eltér 3g2eltét 2g1el1to 2g1el1tű ge2lül ge1lü 3g2elün 2g1el2v. 2g1elvb 2g1elven gel1ve 2g1elvét gel1vé 2g1elvh 2g1elvn 2g1el1vo 2g1elvr 2g1el1vű 2g1elvv g2elw ge2ly1e2g gel2y ge1lye ge2lyid ge1lyi ge2man ge1ma 2g1ember gem1be 2g1embl g1e2mel ge1me 2geme1lé 2ge2melk ge3mell 2geme1lÅ‘ 2g1e2més ge1mé 2g1eml ge2moc ge1mo 2g1emp ge1na2 ge2n1ad ge2na2n ge2nar ge2n1as ge2na1u ge2n1ál ge1ná ge2nár ge2nát g2end ge2n1eg ge1ne 3g2ene1rá ge2ne1re 2g1e2nerg ge2n1es2z g2enes ge2n1e2vet gene1ve ge2n1e2vez gené2k ge1né ge2n1é1ké ge2n1ékn ge2n1ékt geni2d1 ge1ni ge2n1in ge2n1is gen1k2 g1en1ni g1en1nü gen3nya gen2n2y ge2nop ge1no ge2n1or ge2n1os gen2sért gen1sé gen1s1pe gens3s gent2 gen1tr ge2n1ur ge1nu g2e1nye gen2y 2g1enyh g1enyv 2g1enz ge2ob ge1o ge2oc ge2of ge2off ge2og2 ge2ok ge2om ge2orgi2a geor1gi ge2ot geó2r ge1ó ge2ped ge1pe ge2per ge2pés ge1pé 2ge1pi ge2pos ge1po g2e2r. ge2rab ge1ra ge2r1ad ge2r1aj ge2ral ge2r1a2n ge2r1a2p ge2r1as ge2ra1u ge2ráb ge1rá ge2r1á2g ger1áll gerá2r ge2r1á1ra ge2rát g1er1de 3g2ereb ge1re 2g1e2redm ge2reg 1g1ere1ge ger1eg2y 2g1e2rej ge2r1e2lÅ‘k gere1lÅ‘ ge2r1eml ge2r1en2y ge2r1er ge2res2z ge2r1e2v ge2réj ge1ré ge2r1ék ge2rél ger1é1le ger1é2lé ge2r1ép ge2r1étt ge2r1i2na ge1ri ge2r1ing ge2r1i2p ge3r2is ge2r1iz ge2rog ge1ro ge2rop ge2ror ger1os2z ge2rot ge2ró ge2rö2k ge1rö ge2r1ön ge2rÅ‘ g1er2Å‘. g1erÅ‘k g1erÅ‘v ger1Å‘z ge1ru2 ge2rur ge2r1ü2g ge1rü ger1üld ge2r1ü2lé g2e2s. ge2s1á ge1sc gesd2 g2eseb ge1se 3g2ese1i ge2s1e2l ge2s1emb g2ese2n. ge2send 2g1e2s1er 2g1e2setb 2g1e2setet gese1te 2g1e2se1té ge2setl 2g1e2setr 2g1e2sett 2g1esél ge1sé 2g1e2sés g1e2sik ge1si 2g1es1kü gesleg1 ges1le g1es1ni 2g1e2sÅ‘ g2esr gess2 3g2ess2é. ges1sé 3g2esség g2es2t. 2ges1te 2g1es1té 2g1es1ti 2g1estj g1es1vé 2g1e2szek ges2z ge1s1ze ge2szes ge2szet g1eszl 2g1eszm ge2t1ak ge1ta ge2tal ge2t1a2n2y get1ap ge2t1as get1e2g2y ge1te 2g1e2tetÅ‘n gete1tÅ‘ ge2t1é2k ge1té geté2l get1é1le ge2t1é2r. ge2t1é2rü ge2t1é2v2e. geté1ve ge2t1í2v ge1tí get1old ge1to get1olt ge1tó2 ge2t1ór getÅ‘kés2z1 ge1tÅ‘ getÅ‘1ké get1Å‘rt ge1t2ró get2t1eb1bé get1te ge2tut ge1tu ge2t1ü2z ge1tü ge2ur ge1u geu2s ge2vic ge1vi 2ge1vo ge2vol 2g1e2vÅ‘ ge1yé ge2zo gezÅ‘1a2 ge1zÅ‘ 2g1ezr 1gé gé2ber gé1be 2g1ébr géc3c gé2d1a2 gé2d1á2 gé2d1e2l gé1de gé2d1e2r gé2d1es2z gé2dik gé1di gé2din gé2dir gé2dí gé2d1o gé2dö gé2d1Å‘2 gé2d1u2 gé2d1ú2 gé1dü2 gé2d1ü1lé gé2dű gé2d3z gé2gi gé2gÅ‘ gé2gü 2g1é2h2e. gé1he 2g1é2hek 2g1é2hen 2g1é2hes 2g1é2het 2g1éhh 2g1éhs 2g1é2j. gé2jért gé1jé 2g1éjh 2g1éjj 2g1éjs gé2ke1i gé1ke g1é2kel g1é2kes gékes1s g1é2kez 2g1éks gé2lá2l gé1lá gé2lel gé1le 2géles 2g1é2let 2g1é2lez gé2lén gé1lé 2g1élm gélv1vá2 gé2lya gél2y gé2lyá gé2lyeg gé1lye gé2lyo gé2lyú2 gé2m1a2 gé2m1á g2émb gé2m1e2g gé1me gé2mel gé2mer gé2mér gé1mé gé2m1o gé1na2 gé2nab gé2n1ad gé2nag gé2n1al gé2n1an gé2n1ar gé2nas2 gé2n1at gé1ná2 gé2n1ár gé2nát 3g2énd gé2neg gé1ne 2g1é2nekes géne1ke 2g1é2nekl gé2n1e2l gé2n1e2r gé2n1e2t gé2n1é2g gé1né gé2n1in gé1ni gé2ní g2énn gé2nó gé2n1ö gént2 gé2nú gé1nü2 g2én2y gé2ny1e2g gé1nye gé2nyid gé1nyi gé2nyis gé2nyí2r gé1nyí gé2nyo gé2nyö2 gé2nyú 3gé2p. gé2p1a2 gé2p1á2 gé2p1e2g gé1pe 3g2épel gé2p1ell gé2p1e1sé gé2p1e2s2z gé2p1é2szen gé1pé gépés2z gépé1s1ze gé2pik gé1pi gé2pí 2g1épít gé2p1o2 gé2pó gé2pö gé2pÅ‘ 3g2épp géptá2v gép1tá gé2p1u gé2pú gé2pü1lé gé1pü gé1ra2 gé2rag gé2rak gé2ral gé2r1an gé2rap gé2rar gé2ras gé2rá 2g1ér2c. 2g1érd gé2r1el gé1re gé2r1eml 2géret 2gér2é. gé1ré gé2ri1e gé1ri 2g1é2rin gé2ris gér1ká2 2gérl 2gérm gé2ro gé2rö 2gér2Å‘. gé1rÅ‘ 2gérÅ‘k 2gér1te 2gér1té 2gérth g1ér1ti g1értj g1értl g1ért2Å‘. gér1tÅ‘ g1értÅ‘1e g1értÅ‘k g1értÅ‘v g1érts g1értv gé2r1u2 gé2r1ú 2g1ér2v. 2gér1vé 2g1érz 3g2ér1zá gé2sar gé1sa gé2seg gé1se gé2s1e2l gé2s1é2g gé1sé gé2sim gé1si gé2s1o gé2só gés3s1za gés2s2z2 gé2s1za gés2z gés3zav g2é2s1zá 3gészítÅ‘1ü gé1s1zí gészí1tÅ‘ gé2s1z1o gé2s1zó 2g1é2tel gé1te gé2ter gé2tet 2g1étk 2g1é2to 2g1étr 2g1étt 2g1é2v. 2g1évb 2g1é2v2e. gé1ve 2g1é2ved 2g1é2ve1i 2g1é2vek 2g1é2ven 2g1é2vet gé2véb gé1vé 2g1é2vén 2g1é2vét 2g1é2vév 2g1évf 2g1évff 2g1é2vi 2g1évj 2g1évk 2g1évn 2g1évr 2g1évs 2g1évt 2g1évv gé2za2n gé1za gé2zÅ‘r gé1zÅ‘ géz3s2 gfala2d g1fa gfa1la gfa2l1a1da gfa2le gfi2ú1ké gf8i gfi1ú gï¬2ú1ké gï¬ gï¬1ú gf2la gf8l gfla gfl gf2lo gflo gf2ló gfló gf2lu gflu gfö2l1ü2le g1fö gfö1lü g1f2ra gf2rá g1f2re gf2rí g1f2ro g1f2rö gf2ru g2g1a2p g1ga gg1arc gga2s g2g1a1s1zá ggas2z g2g1a1s1zó g3g2a2z1e gge2lest g1ge gge1le ggés3s g1gé gg1i2ta g1gi g2g1iz gg1orv g1go ggó2n g1gó g2g1ó1ni ggÅ‘s2 g1gÅ‘ g1g2raf gg1ra g1g2raff g1g2ran gg1rä g2g1re gg2ro gg1sp g2g1ü2g g1gü g2g2y g5gyak g1gya g5gya1lá g5gyap g5gya1ra ggy1a1ro g5gyat g5gyár g1gyá g5gyáv ggy1á2z ggy1e2lÅ‘ g1gye g5gyeng g5gyep g5gyer g5gyé1rü g1gyé g5gyil g1gyi ggy1ol g1gyo g5gyom g5gyor g5gyó g5gyö g5gyÅ‘ g5gyu g2gyút g1gyú ggy1ült g1gyü g5gyür g5gyű gha2d1e2 g1ha ghajói2ko gha1jó ghajó1i g2ha2m. g2hamb2 g2ha1me g2hamh g2hamm g2hamn g2hamr g2hamt gha2sábr gha1sá 1g2he2l. g1he g2hi1a g1hi 1ghy 1gi gi2a1a gi1a gi2a1á gia1b2 gi2a1ba gi2a1bá gi2a1bi gi2a1bo gi2ac gi2a1d2 gi2a1e gi2a1é gia1f gia1ff gi2afr gi2a1g2 gi2ah gi2aim gia1i gi2a1í gi2aj gi2akar gia1ka gi2akas gi2a1la gi2a1lá gi2a1lé gi2am gi2a1nó gi2an2y gi2a1o gi2a1ó gi2a1ö gi2a1Å‘ gi2a1p2 gi2ar gia1s2z2 gi2a1s1za gi2a1s1zá gi2aszem gia1s1ze gi2a1s1zé gi2aszf gi2aszff gi2a1s1zi gi2a1s1zo gi2a1s1zó gi2at gia1t2r gi2a1u2 gi2a1ú gi2a1ü gi2a1ű gi2av gi2az 2gibr gi2d2e. gi1de 2g1i2de1a 2g1i2de1á 2g1i2deg gi2de1i 2g1i2dej 2g1i2de1o 2g1i2dé gi2di1ó gi1di 2g1i2do 2g1i2dÅ‘ gi2et gi1e gi1f8l gi1fl gig1ad gi1ga gig1a1ra gig1ass gig1a1u 2gigaz gig1ál gi1gá 2g1i2g2e. gi1ge gig1e2c gi2g1eg gig1eh gig1eng gig1enn gige2r gig1e1re gig1e2s gig1et gig1e2v gi2gé gig1éh gig1é2l gi2g1ém gig1é2ne gig1é2r 2g1igéz gig3g2 1gi2g1i2 gi2gí gi2g1o2 gi2g1ó2 gi2gö gi2g1u gi2gú gi2g1ü gi2gű g1i2g2y 2g1i2ha 2g1ihl 2g1i2jes gi1je gi2ker gi1ke gi2kes 3gi1le gi2m2a. gi1ma gi2man gi2máb gi1má 2g1i2mád gi2már 2g1i2máz gi2m2e. gi1me 2g1imp gina1p2 gi1na gi2nas gi2n1á2z gi1ná 2g1ind 3gi1né 2ginf 2ginff 2g1inkv g1in1ná g1in1ni g1in1no g1in1nu gi2nog gi1no 2g1inp 2gins 2g1in1ta 2g1in1te 2g1in1té g1inth g1in1ti g1intj g1int2Å‘. gin1tÅ‘ g1ints g1in1tu g1intv 2g1inv 2g1inz gi2o1a gi1o gi2o1g gi2o1ne 2g1io1né gi2o1no gi2op gi2or gi2os gi2ot gi2ov gi2ó1a gi1ó gi2ó1á gi2óc gi2ó1e gi2óf gi2óff gi2óg gi2ó1ká gi2ókom gió1ko gi2ól gi2ó1p gi2ó1rá gi2ó1sp gi2ó1ta gi2ó1tá gi2ó1ú gi2ó1ü gi2óz 2g1i2pa 3g2ips gip2s1za gips2z gip2s1zá gip2s1zo gi2ram gi1ra 2g1i2rat 2g1i2rá gi2rig gi1ri 2gi1ro gi2rod 2g1i2rón gi1ró 2g1irt g1isc 2g1i2si 2g1isk 2g1isl 2g1ism 2g1isp 2g1istál gis1tá 2g1is1te 2g1i2s1zá gis2z 2g1i2s1zo gi2s1zu gi2tas gi1ta g2i1tá 2gitác 3g2i1ti 3g2it1te g1it1tu 2g1i2vad gi1va 2g1i2vás gi1vá g1i2vo 2g1i2vó 2g1i2z2é. gi1zé gi2zév 2g1i2zo 1gí gí2gé gí2ja gí2já gí2m1a2 gí2má gí2né gí2n2y gí2ra gí2rá gí2re gí2ri gí2ro gí2ró g1í2tés2z gí1té gí2vá gí2ve gí2vé gí2vo gí2vó gí2vü gí2ze gí2zü gí2zű gka2ró2r g1ka gka1ró gk2é2p1e2l g1ké gké1pe gkia3dó1ná g1ki gkia2d gki1a gkia1dó gki1á2 gkis1s gk2la gk2li gk2lí gk2lo gk2ló gk2lu gkö2zén g1kö gkö1zé gkö2z1ér gkÅ‘1vá2 g1kÅ‘ gk2ra gk2rá gk2re gk2ré gk2ri gk2rí gk2ro gk2ró gk2va gk2vó gla1p2l g1la gla1s2t gla3t glá2s1za g1lá glás2z gle2g1a2 g1le glege2l gle1ge gle2g1e1lé gle1í2 gle2t1a2 gle2tá gle2t1el gle1te gle2t1é2rÅ‘t gle1té gleté1rÅ‘ gle2t1étn gle2tos gle1to gle1ü2 glé2nyel g1lé glén2y glé1nye gli2an g1li gli1a g2lor g1lo 1g2los gló1ó2 g1ló glós2 glÅ‘1re2 g1lÅ‘ glÅ‘2reg glÅ‘2rel glÅ‘2ro gme2g1a2 g1me gme2g1e gme2g1é gmens1s gmen2s2z gmik1ro1 g1mi gmikros2z2 gmus3s2 g1mu gna2d g1na gn1a1da g2n1a2j gn1alk 3g2nan gna2pe g2n1a2r gna1t 1g2náb g1ná 1g2náh 1g2ná1i g2ná2n. g2ná1ná g2ná1ra gná2s3z g2ná2t. g2ná1tó 1g2náv gn1br gne2i g1ne g2n1e2l gne2m1e2l gne1me gne2sir gne1si gnes3s gne2s1zá gnes2z gne1to1 gné2l g1né g2n1é1le gné1v1a2 gné2v1á gni2g g1ni g2n1i1ga g2n1ing g2n1i2p g2n1i2r g2n1is gni1t1a2 gni2tel gni1te 3g2n2o. g1no g2n1okt g2nol gn1olt 1g2no1re gn1ök g1nö gn1ös gn1pr gn1s2k gn1st gn1t2r g2núj g1nú gn1üg g1nü gn1üz 1go go2áz go1á go2be 2g1obj 2g1o2dú go2eb go1e go2et go1g2r g1o2k2a. go1ka gok1a2d g1o2ka1i 2g1o2k1a2l 2g1o2ká go1ki2 gok1ir gok1lá2 2g1okm g1o2kok go1ko 2g1o2kos g1o2kot 2g1o2koz 2g1ok1ta 2g1o2laj go1la go2l1a2l 2g1ol1da 2g1ol1dá 2g1ol1dó go2le gol2f1a gol2f1e gol2fin golf8i gol2ï¬n golï¬ go2lim go1li go2l1ó2rá go1ló 2g1olta1lo gol1ta 2g1oltár gol1tá 2g1oltás 2g1olt2ó. gol1tó 2g1oltv 2g1olvad gol1va 2g1olvas go2m1as go1ma 3g2omb gom2b1árn gom1bá gom2b1árt gom2b1e2 3g2o1me 2g1oml go2n1a2to go1na go2n1áll go1ná gonc3c gon2d1á2 gon2d1é2r. gon1dé gon1di2 gon2dik gon2doks gon1do gon2d1or gon2dó go2n1e2 gon2g1a gon2gál gon1gá g2o1no go2nol 2g1on1to go2nü go2nye gon2y go2od go1o go2pá 2g1o2pe go1py gor1ass go1ra goras2z2 gora1t2 gor1áll go1rá 2g1orc go2r1e2l go1re 2g1o2ri1e go1ri 2g1orm go2roz go1ro go2rö 2gorz g2o1sa go2se go2sö goss2 2gos1to 2g1ostr g1ost2y go2sü go2s3za gos2z go2s3zá go1sz2k go2s1zo go2s1zó go1t2h go2u1a go1u go2ub go2ud go2ul go2un go2ur go2ut go2vác go1vá 2g1o2ve go2xi go1ya go1yá 1gó góa2d gó1a góá2g gó1á góá2r gó1bl gó1br gó2c3h gó2c1ol gó1co gócsa1pá2 g2ó1c1sa góc2s gócsa2p1ág gó2cü 2g1ó2dán gó1dá gó2div gó1di gó1d1ru gó1f2r góí2v gó1í gó1kl gó1k1ré gó2lar gó1la góle2l gó1le gól1e1lÅ‘ gó2l1é2h gó1lé gó2lí gó2lü 2g1ó2nu góó2r gó1ó gó1p2l gó1p2r g1ó2rad gó1ra g1ó2ras gó2rá1ka gó1rá gó2rár 3g2ó1ro 3g2ó1sa gó2s1aj gó1s2ká gó1s2p gó1s2rá gós3s gó1s2ta g2ó1s1tá g2ó1st2r gó1s2z gó2s3zám g2ó1s1zá gó2s3záras gószá1ra gó2s3zá1rá gós3zá1rú gó2ta1u gó1ta gó2t1is gó1ti gó1t1ré gó1t1ri 3g2óval gó1va 2g1ó2vod gó1vo 2g1ó2vó gó2vu 3g2ó1zá 3g2ó1zi 3g2ó1zo 3g2ó1zu 1gö 2g1öbl 2g1ö2ko gö2ku 2g1ö2lá 2g1ölb g1ö2le 2g1ölr 3g2ömb göm2b1a göm1be2 göm2bel göm2b1er 2g1öml 2g1ö2na g1ö2ná gö2ne gö2nö 2g1önt gö2ra 3g2örb 3g2örc gör2c1sa görc2s gör2c1sá gör2csel gör1c1se gör2c1sÅ‘ 3g2ör1dí 3g2ör1dü 2g1ö2re 3g2örg 3g2örn gö2rök gö1rö g1ö2rü 2görv gö1sé2 gö2s1én 2g1ös2s2z 2g1ös2z 2g1ötl g1ö2v. g1övb g1ö2ve g1ö2vé g1övh g1övn g1ö2vö g1övr g1övt g1ö2vü g1ö2vű g1övv 1gÅ‘ gÅ‘a2n gÅ‘1a gőá2g gÅ‘1á gÅ‘1br gÅ‘e2l gÅ‘1e gÅ‘e2r gőé2b gÅ‘1é gÅ‘1fr gÅ‘1gl 1gÅ‘2g1Å‘2 gÅ‘i2ta gÅ‘1i gÅ‘1kl gÅ‘1kv gÅ‘1nyá2 gÅ‘n2y gÅ‘1pl gÅ‘1pr 2g1Å‘2r. g1Å‘rb g1Å‘rh g2Å‘rit gÅ‘1ri gÅ‘2riz 2g1Å‘rj g1Å‘rk 2g1Å‘rl g1Å‘rn gÅ‘2rök gÅ‘1rö 2g1Å‘rr g1Å‘rs g1Å‘rt 2g1Å‘2rü 2g1Å‘rz 3g2Å‘rzÅ‘1sö gÅ‘r1zÅ‘ gÅ‘2s1e2p gÅ‘1se gÅ‘2sib gÅ‘1si gÅ‘1s1pi gÅ‘1s1ta gÅ‘2s1ü2v gÅ‘1sü gÅ‘2s1ű2rű1sé gÅ‘1sű gÅ‘sű1rű gÅ‘1tr gÅ‘u2t gÅ‘1u gőü2l gÅ‘1ü gÅ‘2zát gÅ‘1zá gÅ‘2zeg gÅ‘1ze gÅ‘2z1e2k gÅ‘2z1e2l gÅ‘2z1o gÅ‘zÅ‘2s gÅ‘1zÅ‘ gÅ‘2z1sö gÅ‘z2s gÅ‘2z3su gÅ‘2z3sű gÅ‘2zú gpe2c3h g1pe g2p1e2lu gpia2c1i2o g1pi gpi1a gpia1ci gp2la gp2lá gp2le gp2lu gpon2ga g1po gpo2re2 gp2ra gp2rá gp2re gp2ré gp2ri gp2rí gp2ro gp2ró gp2rű gp2s2z 1g2rafá1lá g1ra gra1fá 1g2rafáln 1g2rafált 1graf8f 1graff 3g2rafin graf8i 3g2raï¬n graï¬ gra1fo1 1g2ra1fű gra2m1a grama2r grama2z gra2m1á2 gra2m1e2 gra2m1ér1té gra1mé gra2mik gra1mi gra2m1in gra2m1is 1g2rammj gra1mu2 gra2mut 1g2ra1ví grá2c1s1i g1rá grác2s g2ráf 1gráff grá1fa2 grá2f1an 1gráfd 1grá2f1e2 1gráf8f 1gráfg 1gráfh 3gráf8i 3grÃ¡ï¬ 1gráf8j 1gráfk 1gráfm 1gráfn 1grá1fo 1gráfr 1grá1fü grá2lát grá1lá grá2l1e2 g2rá1ná grán1d g2rá1ni g1rá2rá grá2r1i2p grá1ri grá2s3za grás2z gre2e g1re gren2d1Å‘2 g2ril g1ri gril2l1a gri2s1á gris3s gri1sü2 gri2süt g2ríz g1rí gró1a2 g1ró gró1á2 gró2f1a gró2fú gró1p 1g2rup g1ru gság1g g1sá gsé2gel g1sé gsé1ge gs2ho gs2ka gs2ká gs2ko gsk2r gs2la gs2lá gs2li gs2má gs2mi gs2mu gs2ná gso2k1o g1so gsors3s gs2pa gs2pá gs2pe gs2pé gs2pi gs2po gs2pó gsp2r gs2rá g1s2ta gs2tá gs2te gs2té g1s2ti g1s2tí gst2r g1st1ra g1st1ru gs2tu g1s2tú gsu1gá2 g1su gs2vé gsza2ké gs2z g1s1za gsza2k1ü2 gszála2d g1s1zá gszá1la gszá2l1a1da gszá2li gszá2r1a2da gszá1ra g1sz2c gszé2t g1s1zé g1sz2f g1sz2ff g1sz2l gsz2m g1sz2p gszt2 g1sz2tá gta2g1ar g1ta gta1ga gtag1g gta2n1ó2 gtára2d g1tá gtá1ra gtá2r1a1da gtele1g2 g1te gte1le gter1mo1 gtermos2z2 gté2rá g1té gti2m g1ti gt2ra gt2rá gt2re gt2ré gt2ri gt2ro gt2ró gt2rö gt2ru gt2rü gtű2z1Å‘2r g1tű gtű1zÅ‘ 1gu gu2ad gu1a gu2a1e gu2ar gu2at gu2ay 2g1u2bo 2gu2e. gu1e gu2el gu2er guer2r gu2ev gu2ez gu2ér gu1é g1u2ga 3g2ugg gu1g2l g1u2go 2g1ugr gu2id gu1i gu2in gu2ir 2g1ujj gula2te gu1la gula2t1í gu1l2y gu2ná 2g1u2ni gu2nó gu2nu 3g2u1rí gus1abl gu1sa gu2sad gu2s1a2n gu2sas gu2sat gu2s1av gu2sál gu1sá gu2s1e2 gu2s1ér1té gu1sé gu2sil gu1si gu2sis gu2s1í gu2sol gu1so gu2sor gu2s1ó2 gu2sö gu2sÅ‘ gus3s2 gus2s2z2 gust2 gu2sü gu2s1zá gus2z gus3z2s gu2tac gu1ta gu2tak gu2tal gu2tam gu2tan gu2tas gu2tat gu2taz 2g1utc 2g1u2tó gutó2d1o2ku gut2ódok gutó1do 2g1u2tu gu1ya gu1yo 1gú gú2ja gú2jí gú2ju gú2ny1e gún2y gú2ny1í2 2g1ú2r. gú2ré gú2ri 2g1úrn gú2ro 2g1ú2s2z 2gú2t1a2 2g1ú2t1á2 2g1útb 2g1útc 2g1útd 2g1ú2t1e2 2g1ú2té 2g1útf 2g1útff 2g1útg 2g1úth 2g1ú2t2i. gú1ti 2g1ú2ti1a 2g1ú2ti2g 2g1ú2tih 2g1ú2tij 2g1ú2t1i2ko 2g1ú2ti1na 2g1ú2ti1ná 2g1ú2tir gú2tis 2g1ú2tit 2g1ú2tiv 2g1ú2t1i2z 2g1útj 2g1útk 2g1útl 2g1útm 2g1útn 2g1ú2to 2g1útp 2g1útr 2g1úts 2gútt 2g1útv 2g1útz gú2zi 1gü gü2c2s gü2dé gü2dí gü2dü gü2ge gü2gy1é2r. güg2y gü1gyé 2g1ü1gyi gü2gy2i. gü2gyib gü2gyie2k. gügyi1e 3g2ügyiekk gü2gyig gü2gyit gü2gyiv 2g1ügyl 2g1ügyv 2g1üld gü2len gü1le gü2lep gü2lik gü1li gü2löm gü1lö 2g1ünn 3g2ürc 2g1ü2re 3g2ü1ri 2g1ü2rí 2g1ü2rü gü2te gü2té gü2ti gü2tö gü2tÅ‘ gü2tü gü2ve gü2vö gü2ze gü2zé 1gű 2g1ű2r. 2g1űrb gű1re2 g1űrh gű2ri 2g1űrj 2g1űrl 2g1űrm 2g1űrn 2g1ű2rö 2g1űrt gű2ru gű2rü gű2ze gű2zé gű2zi gű2zö gű2zÅ‘ gva2s1u2 g1va gvá2gy1a2da g1vá gvág2y gvá1gya gvá2nya2n gván2y gvá1nya gvás1s gverés3s g1ve gve1ré gvezé2rel gve1zé gvezé1re gvé2nye2l g1vé gvén2y gvé1nye gvi2na g1vi gvó1s2 g1vó g2y 1gya gy1abl 2gy1a2cé 2gyadag gya1da gya2dal 2gy1a2datb gy1a2dót gya1dó 2gya2g. 2gyagb gya2ge gya2gép gya1gé 2gyagg 2gyagh gya2gis gya1gi 2gyagk 2gyagn gya2g1ol gya1go 2gyagt 2gya1gya g2yag2y gy1a2gyu 2gy1a1ja 2gy1akc 2gy1aknák gyak1ná 2gy1ak2t. 2gy1ak1tu gya2laj gya1la gya2l1akt gya2la1po gya2lap1p gy1alat 2gy1a2lá1í gya1lá gya2lel gya1le gy2a2lik gya1li gyan1ab gya1na gya2n1e 2gy1a2nya gyan2y gy1a2nyá gya2pak gya1pa gy1a2páh gya1pá 2gy1a2pá1i 2gy1a2pák 2gy1a2pám 2gy1a2pán gy1a2pás 2gy1a2pá1tó 2gyap1já gya2pón gya1pó gya2pór 2gy1app gy1aps gy1aran gya1ra 2gy1a2raw gyard2 2g3yardom gyar1do gya2rel gya1re gy1ar1gó 3gya1ri gya2r1ón gya1ró gya2r1ó2r gya2róv 2gya1rú 2gyasak gya1sa 2gyasat 2gyas1ra 2gy1a2t2y 2gya1zá 1gyá 2gy1ábr 2gy1ág gy1álc gy1áll gy1álm 3gyám 2gy1áp 2gyá2r1e2 2gyárf 2gyárff 2gy1á2rok gyá1ro 2gyárp 2gy1á2rul gyá1ru 2gy1á2rus 2gy1á2rú2 gyá2s1zó gyás2z 2gy1á2ta 2gy1átk gy1átl 2gy1átv gy1bl gy1br gy1dr 1gye gye2d1Å‘s gye1dÅ‘ 2gy1e2d2z gy1e2ge gy1e2gé 1gy1e2gye gyeg2y 2gy1e2k2e. gye1ke 2gy1e2kés gye1ké 2gyeleg gye1le g2ye2leg2y 2gy1e2le1mű 2gy1el1nö 2gy1eltér gyel1té 2gy1el1vá gy1el1vű 2gyembl 2gy1e2mel gye1me gy1eml 2gyenget gyen1ge 2gy1e2n2y 2gy1enz gye2pal gye1pa 2gy1erd gy1e2red gye1re 2gy1e2rej gy1e2res gye2rén gye1ré 2gy1ern 2gy1e2ro 2gy1e2rÅ‘ 2gy1ers gye2seg gye1se 2gy1esél gye1sé 2gyesg gye2so gy1e2sÅ‘ 2gy1es1te 2gy1estés gyes1té 2gy1es1ti 2gy1es1tű gye2s1zü gyes2z 2gyetem gye1te 2gy1e2tet 2gyezk 2gyezm 2gy1ezre1de gyez1re 2gy1ezrel 2gyez2s 1gyé 2gyébr 2gy1ég 2gy1é2hes gyé1he 2gy1éhs 2gy1é2ji gy1é2k2e. gyé1ke gy1é2kes 2gy1é2le 2gy1élt gy1élv 3gyém 2gyéne1ke gyé1ne 2gyé1ni 2gy1ép 2gyé2r. 2gy1ér1d2 2gy1é2rem gyé1re 2gy1é2rez gyé2rét gyé1ré gy1érg 2gy1érh 2gy1é2ri 3gyé1rí gy1ér1ke 2gy1érm 2gyérn 2gyérr 2gyér1te 2gy1ér1té gy1ér1tÅ‘ 2gy1érv 2gy1érz 2gy1é1té 2gyétk 2gy1é2v. 2gy1é2vad gyé1va 2gy1évb 2gy1é2v2e. gyé1ve 2gy1é2ve1i 2gy1é2vek 2gy1é2ven 2gy1é2ves 2gy1é2vet 2gy1évh 2gy1é2vi 2gy1évn 2gy1évr 2gy1évt 2gy1é2vü 2gy1évv gy1f8l gy1fl gy1f2r gy1gl gy1gr 1gyi 2gy1i1de 2gy1i2dé 2gy1i2dÅ‘ 2gyieken gyi1e gyie1ke 2gyie1ké 2gyiekh 2gyie1ki 2gy1i2ga 2gy1i2gá 2gy1i1ge 2gy1i2gé 2gy1igm gy1i1ha 2gy1i2ker gyi1ke 2gy1ill 2gy1i2má 2gy1ind 2gy1inf 2gy1inff 2gy1ing 2gy1i1pa 2gy1i2rat gyi1ra 2gy1i2rá 2gy1i1ro 2gy1irt 2gy1ish gy1isk 2gy1ism 2gy1isn 2gy1i1ta 2gy1i2vó 2gy1izg 2gy1i2zo 1gyí 2gy1íg 2gy1í2r 2gy1ív gy1íz gy1kl gy1k2r gy1kv gymás1s gy1má 1gyo 2gy1o2kos gyo1ko 2gy1old 2gy1olvas gyol1va gyo2m1a2s gyo1ma gyo2mi 2gy1o2pe 2gy1orc gy1orm 2gy1or1só 2gy1orv gy1o1u 1gyó 2gy1ó2dár gyó1dá 2gy1ó2dásak gyódá1sa gy1ó2rá 2gy1ó2ri 1gyö 2gy1öb gy1ö1dé 2gy1ökl 2gy1ö2tö2d. gyö1tö 2gy1ö2tödd 2gy1ö2tö1de 2gy1ö2tö1dé 2gy1ö2töd1ne 2gy1ö2tödöt gyötö1dö 2gy1ö2tödr 2gy1ö2tö1dü 2gy1ött 2gy1ötv 2gyöv 2gy1ö2zön gyö1zö 1gyÅ‘ gy1Å‘1re gy1Å‘1rü 2gy1Å‘2s 3gyÅ‘z gypár1ba2 gy1pá gypen1 gy1pe gy1pl gy1pr gy1ps gyrövid1 gy1rö gyrö1vi gy1sc gy1sk gy1sl gy1sm gy1sn gy1sp gy1sr gy1s2t gy2sur gy1su gys2z2 gy1t2r 1gyu 2gy1ud 2gy1ug 2gy1uj 2gy1und 2gy1u2ni 2gy1u2ra 2gyu1rá 2gy1u2ru 1gyú 2gyúd 2gyú1é 2gyú1i 2gy1ú2jí 2gy1újr 2gy1újs 2gyúm 2gy1úrb 2gyú1ré 2gy1ú2ri 2gy1úrk 2gy1úrr gy1ú1ti2 2gyú1ü 1gyü 2gy1üd 2gyüg 3gyü1le 3gyüm 2gy1ünn 2gyü1re 2gy1ü2rü 2gyüs gy1üst 2gyüt 2gyüv gy1ü1ve 2gy1üz 1gyű 3gyűl 2gy1ű2r2é. gyű1ré 2gy1ű2z gy1zr gza2tá2p g1za gza1tá gza2t1e gza2tö gza2t1ű2 g3zá2r1ó2r g1zá gzá1ró gzá2se gzás3s gze2t1a2 g1ze gze2t1á2 gze2t1el gze1te gze2tin gze1ti gze2t1o gze2t1Å‘2 gzÅ‘1a2 g1zÅ‘ 2h. 1ha haa2d ha1a 3ha2b. ha2bak ha1ba h2a2b1a2l h2a2b1a2n ha2b1ág ha1bá ha2b1árb ha2bed ha1be ha2b1é2r. h2abér ha1bé ha2bid2 ha1bi hab1il1l ha2b1im ha2b1i2n2a. habi1na ha2b1int 3ha1bo hab1old hab1o2ra hab1orr ha2b1ost hab1s2z habu2r ha1bu ha2bü ha1c2k ha2d1ag ha1da had1alk ha2d1ap hada2s ha2d1as2z ha2d1á2c ha1dá ha2d1ál hadás1s ha2d1ásv ha2d1á2s1zo hadás2z ha2de2g ha1de ha2d1el ha2dem ha2dél ha1dé h2adi1a2 ha1di hadi1é2 h2adi2n ha2d1i1na ha2dor ha1do ha2dos ha2d1u2r ha1du ha2d1ú2r. ha1dú ha2d1ú2ré ha2d1úrh ha2d1ú2ri ha2d1úrk ha2d1úrn ha2d1úrr ha2d1úrt ha2dús ha2dü ha2d1za had2z ha2d3zá hae2c ha1e ha2em hae2r ha2et ha1f8l ha1fl ha1f2r 2hago1re ha1go ha2if ha1i ha2iff ha2i2s. ha2j1á2s ha1já ha2j1á2to ha2já2z ha2j1in ha1ji haj1k2 haj1oml ha1jo ha2jö ha2jÅ‘ haj1s haj1t2r ha2jü ha2k1ál ha1ká ha1k2li ha1k2r h1akt ha1k2v ha2l1ac2h ha1la ha2l1a2g ha2l1aj ha2l1a2l hala2n ha2l1an2y ha2l1a2r hala2s2z ha2l1a1s1za ha2l1a1s1zá ha2l1a1s1zó ha2l1at1k2 ha2l1a2tom hala1to ha2l1att 3ha1lá hal1á2c2s ha2l1á2g halá2l1e2 ha2l1á2rak halá1ra ha2l1á2rá ha2l1árb ha2l1á2ro ha2l1árr hal1ár1ve ha2l1á1te ha2l2e. ha1le h2a2leb h2a2lec hal1e2g2y hale2l ha1l1e1le hal1e1lÅ‘ h2a2l1em hal1e1pe h2alep ha2l1e1se h2ales ha2l1e2sÅ‘ hal1e1te hal1e2to hal1e1vo h2alev hal1e2vÅ‘ ha2lez ha2l1é2l ha1lé ha2l1é2r. ha2l1é1te h2alét ha2l1étk ha2l1étt ha2lid ha1li h2a2l1ik h2a2l1i2m ha2l1ing ha2l1inv ha2l1i2o1no hali1o ha2l1i2ont ha2lip hali2s hal1is2z ha2l1iv ha2l1i2z ha2lí hal2k1a2pu hal1ka halke2l1 hal1ke hal2k1e1le2 hal2l1aszt hal1la hallas2z hallás1s hal1lá hal2l1á2t hal2léj hal1lé hal2ló1so hal1ló hal3l2y 3halm halma2z1ó2 hal1ma ha2l1ol ha1lo ha2l1ó2ri ha1ló ha2l1ö ha2l1Å‘2 hal1p2 ha2l1ug ha1lu ha2l1u2s ha2l1u2t ha2lü ha2lű ha1l2y ha2l3ya ha2m1ál ha1má ha2m1árb hamb2 hame2l ha1me ham1e1le ham1es2z ha2mez ham1ism ha1mi hamkés2z1 ham1ké ha2m1os2z h2amos ha1mo 3ha1mu ha2mü hanás1s ha1ná han2c2h ha2n2e. ha1ne 2hanés2z ha1né 3hang han2gal han1ga han1ge2 han2gen han2g1es han2gél han1gé hang3g han2g1ó2 han2gö han2gut han1gu han2t1ó2 ha2nyél han2y ha1nyé haó2r ha1ó ha1p2r hara2g1ó2 h2arag ha1ra harang1g ha2r1ál ha1rá har2c1al har1ca har2ca2n harc3c har2c1e2 har2c3h ha2rel ha1re ha2ret 3har1mó ha2r1ol ha1ro ha2r1os2z ha2r1ór ha1ró ha2rű haság1g ha1sá ha2s1iz ha1si ha2s1ol ha1so has1ors h2asor has1p ha1s2pe ha1s2po ha3s2ú2t ha1sú ha2sür ha1sü ha2s1ű2 ha1szp has2z h2a2t1ab ha1ta hat1ag2y h2atag ha2t1aj 3ha1tá határa2d h2atár hatá1ra hatá2r1a1da 3hatb ha2t1e2v ha1te ha2t1én ha1té ha2t1é2v 3hatf 3hatff ha2t1í2v ha1tí 3hatm hat1ol1da ha1to ha2t1os2z ha2t1ó1rá ha1tó ha2t1ö2v ha1tö 3hatr ha1t2rá hatt2 hat1tr ha2tül ha1tü ha2uc ha1u ha2u1e ha2ul ha2um hau2n ha2up ha2ut haü2z ha1ü hav2r 1há há1b2h 3há1bo há2g2y há2jús há1jú há1ma2 há2m1al há2m1á há2m1e2 há1mi2 há2m1is há2m1ol há1mo há2mö hán2c1s1e hánc2s hán2c1si há2ny1a2l hán2y há1nya hánya2n há2ny1ar hányás1s há1nyá há2ny1e2 há2nyö há2r1ad há1ra há2r1al há2r1a1u há1ri2 há2r1iv 3há1rí hár1k2 hármas1s hár1ma háro2m1a2 há1ro háro2mo hár2s1al hár1sa hár2se 3hárt há2rü há1ry há2sí hász1a2tom hás2z há1s1za hásza1to há2s1z1e há2sziv há1s1zi 2h1ászk2a. hász1k2 hász1ka há2s1zÅ‘ há2t1a2dó há1ta há2t1a2la há2t1a2n há2tar há2tá2p há1tá há2t1e2 há1té2 há2t1é2l há2t1é2r. há2t1é1re há2t1érn há2t1i2s há1ti há2tí há2t1ol há1to há2t1o2r há1tó2 há2t1ós há2tö há2tÅ‘ hát1u2s2z há1tu há2t1ü há2tű hátvé2d1el hát1vé hátvé1de há2z1a2dó há1za há2zaj há2z1a1la há2z1as2z há2z1av há2z1á2p há1zá há2z1árn há2z1á2ru há2z1e2 há2z1isk há1zi há2z1ism há2z1ist2 há2z1í ház1okt há1zo ház1old há2zos ház1otth há2zö há2zÅ‘ ház2s2 há2z3sa há2z3se há2z3sé há2z3si ház3sp ház3st há2z3sü ház3s2z há2z1ü há1zy hb2le 1he he2ad he1a he2at he2av hec2c1emb hec1ce hec2c3s he1c2k 2he1cu he2dén he1dé he2f8i he2ï¬ he2f1u2 he2g1a2 he2gés2z1 he1gé he2gy1a heg2y he2gyá he2gyeg he1gye hegyes1s he2gy1o he2gyó he2gyÅ‘ he2gyú he2i1a he1i 2he2idp he2ins he2is 2h1e2kék he1ké 3hekt he2lég he1lé helés1s 2helf 2helff hel2f2r 2hel1lá 2hellen hel1le he2lyeg hel2y he1lye he2lyeml he2lyes2z he2ly1é2j he1lyé 2he1ma 2h1embl 2h1eml henés1s he1né 3heng 2he1no he2ny1e2g2e. hen2y he1nye henye1ge he2nyo he2ol he1o he2rab he1ra he2r1a2d he2r1aj he2r1a2r he2ra1u her1áll he1rá her1á1t1a2 her1á1té her2ber her1be her1eng he1re here1p her1e1se herevíz1 here1ví her1int2 he1ri he2rö hers2 he2rut he1ru he2rű he2s1a he2s1á h1e2sés he1sé hes2t1o 3het2y 2heus2z he1u 2he1vé he2vés 3he1ví he1vy he1ye he2z1á 2hezh 2he1zi 2hezn 2he1zÅ‘ 2hezz 1hé 1hé2hé 3hé2i. hé1i 3héit hé1je2 hé2j1eg hé2j1el hé2jö 3hékn hé2nal hé1na hé2nan hé2nar hé2nát hé1ná hé1ne2 hé2n1el hé2nem hé2n1et hén1é2v. hé1né hé2nid hé1ni hé2nil hé2n1is hén3n hé2nö hént2 hé2nu hé2nü hé1ph hé2pü hé1ra2 hé2rar hé2r1as hé2rat hé2rin hé1ri 2h1érz h2é2s1zá hés2z hé2szeg hé1s1ze hé2s2zes2z h2é2s1z1ö hé1ta2 hé2t1ab hé2t1aj hé2tal hé2tar hé2tál hé1tá hé2t1e2l hé1te hé2t1e2m hé2t1es hé2t1ezres hétez1re hé2t1é2v hé1té hé2tí hé2t1o2l hé1to hé2tor hé2t1os hé1tó2 hé2t1ór hé2t1ö hé2tu hé2t1ü2 hé2v1á hé2v2e. hé1ve hé2vég hé1vé hé2v1érz hé1ze2 hé2z1ek hé2zi2o hé1zi hé2zip hé1zo2 hé2z3s hf2ló hf8l hfló hfl 1hi 2hi2a. hi1a hi2a1a hi2a1á hi2abeli1e hia1be hiabe1li hi2ac hi2ad hi2a1e hi2a1é hi2ag hi2ah hi2aj hi2al hi2am hi2ant hi2ap hi2ar hi2at 3hi1da hid1ro1 2hiév hi1é hig2a2nye2 hi1ga higan2y 3hi1gi 2hi1la hi1lo1 2hi2m. 2hi1me 2hi1mé 2h1i2nán hi1ná 3hinás 2hing h1in2g. 2hink h1insp hi2om hi1o hi2os hi2pa 2h1ips hi1sa2 2hi1se hi2s2e. 2hisn 2hi1so hi2ta hit1ak hita2l hit1a2n hi2t1á2 hi2t1e2g2y hi1te 3hitel hite2l1e2l hite1le hi2t1e2le1sé hi2t1e1lÅ‘ hi2t1elv2e. hitel1ve hi2t1eng h2i2t1er hi2t1es2z 3hitet hi2tél hi1té hi2t1é2r. hi2t1ér1te hi2t1érv hi2t1é2te hi2t1é2v2e. hité1ve hi2t1im hi1ti hi2t1int hitkés2z1 hit1ké hi2t1o hi1tó2 hi2t1ón hi2t1ór hi1tö2 hi2t1ör hi2t1Å‘r hi1tÅ‘ hi2t1u2 hi2tú hi2tül hi1tü hi2zo 1hí hí2da hí2dá hí2de hí2dí hí2dö hí2dÅ‘ hí2dú hí2dü hí2d2z hí2g1e hí2jé hí2m1a2 hí2má hí2m1el hí1me hí2m1emb hí2mer hí2mo hí2mö hí2mu hí2r1a2 hí2r1á2 hí2r1ing hí1ri hí2rí hí2r1o hí2r1ó2 hí2rÅ‘ hír1s hí2r1u hí2rú hkas3s h1ka hká2r h1ká hk2ri hle2g1e2lé h1le hle1ge hle2t1el hle1te hle2tö h2mer h1me hno1s h1no 1ho ho1cy ho2dú 2ho2e1á ho1e ho2ef ho2eff ho2ek hog3r ho2i1i ho1i ho2it 2hokl 3hokt ho1la2 ho2l1a1d2 ho2l1al ho2lam ho2l1at ho2l1a1u ho2l1ál ho1lá ho2l1á2r hol2dá hol2dem hol1de hol2d1ó2r hol1dó ho2l1e2 ho2lig ho1li ho2l1in ho2lip ho2l1i2v hol1k2 hol2mes hol1me hol2nik hol1ni ho2lor ho1lo ho2l1os2z ho2lot ho2l1ó2r ho1ló ho2lö holta2n hol1ta holt1an2y hol1te2 hol2t1el ho2lü ho2ly1al hol2y ho1lya 3homb 3ho1mo homo1s ho2n1a2g ho1na ho2n1a2l ho2n1a2n ho2n1a2p ho2n1a1u ho2n1a2v ho2n1ál ho1ná ho2n1á1t1a2 ho2n1á2to ho2n2e. ho1ne ho2neg ho2n1e2l ho2n1ik ho1ni ho2n1i2m ho2ní ho2n1orj ho1no ho2n1o2ro ho2n1orr ho2n1ó2 ho2nö ho2nÅ‘ ho2nü ho2od ho1o ho2ok ho2ov ho2re ho1ri3 2ho1ry hos1s1z1e2 hos2s2z hos1s1zé2 hossz1ék hos1s1z1ü2 2hos2z ho1th2 ho2ud ho1u ho2us ho1xh ho2zál ho1zá ho2z1e ho1zi2 ho2zü 1hó hóa2k hó1a hóá2g hó1á hó1bl hó2cal hó1ca hó2cat hóc3c hó2ce2l hó1ce hó2c1é2g hó1cé hó2c3h hó2ci2m hó1ci hó2có hó2c1ö hó2c1sü hóc2s hó2c2z hó2d1a2r2a. hó1da hóda1ra h2ó2d1a2rá hó2d1á2 hó2dem hó1de hó2d1é hó2d1ó2 hó2dö hó2dü hó2d3z hó2l1ej hó1le hó2l1e2ped hóle1pe hó2l1e2vet hóle1ve hón1a1pa h2ónap hó1na 2hó1rá hó2rár hó1sh hó1ví2 hóza2t1e hó1za 1hö hö1kö1 höl2gya hölg2y höl2gy1á2 höl2gyel höl1gye 1hÅ‘ hÅ‘a2n hÅ‘1a hÅ‘1br hÅ‘e2l hÅ‘1e hÅ‘e2m hÅ‘e2r hőé2n hÅ‘1é hÅ‘1f8l hÅ‘1fl hÅ‘1gl hÅ‘1gr hÅ‘1kv hÅ‘1pr hÅ‘1sa2 hÅ‘2s1al hÅ‘2sas hÅ‘2s1av hÅ‘2s1el hÅ‘1se hÅ‘2se2p hÅ‘2ses hÅ‘2sim hÅ‘1si hÅ‘2sis hÅ‘1s2pi hÅ‘s3s hÅ‘1s2tab hÅ‘s1ta hÅ‘s1t2r hÅ‘2su2t hÅ‘1su hÅ‘2s1ú hÅ‘2s1ült hÅ‘1sü hÅ‘2s1ü2v hÅ‘1sű2 hÅ‘2s1űr hÅ‘1tr hőü2l hÅ‘1ü hp2la hp2ra hp2ré hp2ri hp2ro hp2ró hru1s2 h1ru hs2c2h hsé2gel h1sé hsé1ge hs2ka hs2pi hs2po hs1s2t hs1tä hsza2ké hs2z h1s1za hszá2j1a2da h1s1zá hszá1ja hsz2l ht1cl ht1kl h2t1ol h1to ht2rá h1t2ref ht1re h1t2reff h2t1u2t h1tu 1hu hu2ah hu1a hu1hy hu2iz hu1i 3hull hu2me 2hu2r. 2hu1rá hur2t1e hur2ti2t hur1ti hu1ry 2hu2s. 2hu1si huszon1 hus2z hu1s1zo hu1t2y 1hú hú2gy1a2 húg2y hú2gye hú2gyi2 hú2gyú hú2r1a2 hú2r1á hú2re húrt2 húr1tr hú2s1ak hú1sa hú2sal hú2sa2n hú2sap hú2sa2r hú2s1á2g hú1sá hú2s1ál hú2s1e2 hú2sim hú1si hú2sí hú2sor hú1so hú2sö hú2sÅ‘ hús3sza2k1 hús5s1za/sz=,3,1 hús2s2z hús5s1zá hús3s1zé hú2sü hú2s3zab hús2z hú1s1za hú2sz1ál hú1s1zá h2ú2s1z1e2 h2ú2s1z1í2 hú2szol hú1s1zo hú2szos hú2s1z1ó2 h2ú2s1z1ü2 1hü hü2g2y 2h1ünn hü2re hü2rü hü2tÅ‘ h1ü2vö 1hű hű2ré hű2ri hű2rö hvil2 h1vi hy1ad hy2de hy1ér hy1év hy1ig 2i. ï¬. i1a iaa2d ia1a ï¬aa2d i2aaj ï¬2aaj i2aak ï¬2aak i2aal ï¬2aal iaát1 ia1á ï¬aát1 iaá2ta2 ï¬aá2ta2 i2abaj ia1ba ï¬2abaj ï¬a1ba i2aber ia1be ï¬2aber ï¬a1be i2abes ï¬2abes i2a1bí ï¬2a1bí i2abon ia1bo ï¬2abon ï¬a1bo i2abor ï¬2abor i2a1bö ï¬2a1bö i2a1bÅ‘ ï¬2a1bÅ‘ i2a1bu ï¬2a1bu i2a1bú ï¬2a1bú i2a1bü ï¬2a1bü i2a1bű ï¬2a1bű ia2c1al ia1ca ï¬a2c1al ï¬a1ca iac3c ï¬ac3c i2acet ia1ce ï¬2acet ï¬a1ce ia2c1é1lé ia1cé ï¬a2c1é1lé ï¬a1cé ia2c1é2r. ï¬a2c1é2r. ia2c3h ï¬a2c3h ia2cid ia1ci ï¬a2cid ï¬a1ci iac1i2ko ï¬ac1i2ko ia2c1im ï¬a2c1im ia2c1int ï¬a2c1int i2a1cí ï¬2a1cí ia2c1or ia1co ï¬a2c1or ï¬a1co ia2có ï¬a2có ia2cö ï¬a2cö ia2cÅ‘ ï¬a2cÅ‘ ia2c3sé iac2s ï¬a2c3sé ï¬ac2s iac3sp ï¬ac3sp iac3st ï¬ac3st iac3s2z ï¬ac3s2z ia2cur ia1cu ï¬a2cur ï¬a1cu ia2cü ï¬a2cü ia2c2z ï¬a2c2z iadás1s ia1dá ï¬adás1s ï¬a1dá i2a1de ï¬2a1de i2a1dí ï¬2a1dí ia2dot ia1do ï¬a2dot ï¬a1do ia2dó1e ia1dó ï¬a2dó1e ï¬a1dó iadó1st ï¬adó1st i2a1dö ï¬2a1dö i2a1dÅ‘ ï¬2a1dÅ‘ i2a1dú ï¬2a1dú i2aeg ia1e ï¬2aeg i2ae2l ï¬2ae2l iae2r ï¬ae2r iae2t ï¬ae2t iaé2r ia1é ï¬aé2r i2a1fá ï¬2a1fá i2a1fe ï¬2a1fe i2af8i i2aï¬ ï¬2aï¬ i2a1f8l i2a1fl ï¬2a1fl i2a1fó ï¬2a1fó i2a1fö ï¬2a1fö i2a1fÅ‘ ï¬2a1fÅ‘ i2af1ri ï¬2af1ri i2a1f1ro ï¬2a1f1ro i2a1fu ï¬2a1fu i2a1fú ï¬2a1fú i2a1fü ï¬2a1fü i2a1fű ï¬2a1fű i2a1gá ï¬2a1gá i2a1ge ï¬2a1ge i2a1gé ï¬2a1gé i2a1gi ï¬2a1gi i2a1gö ï¬2a1gö i2a1gÅ‘ ï¬2a1gÅ‘ i2a1gu ï¬2a1gu ia2gyu iag2y ï¬a2gyu ï¬ag2y i2ai2g ia1i ï¬2ai2g ï¬a1i i2aip ï¬2aip i2ai2z ï¬2ai2z ia2ján ia1já ï¬a2ján ï¬a1já i2a1je ï¬2a1je i2a1jo ï¬2a1jo ia2kad ia1ka ï¬a2kad ï¬a1ka i2a1ká ï¬2a1ká i2a1ke ï¬2a1ke i2a1kí ï¬2a1kí i2a1k2l ï¬2a1k2l i2akód ia1kó ï¬2akód ï¬a1kó i2akór ï¬2akór i2a1kö ï¬2a1kö i2a1kÅ‘ ï¬2a1kÅ‘ i2a1k2re ï¬2a1k2re i2a1k2ré ï¬2a1k2ré i2a1k1rí ï¬2a1k1rí i2a1ku ï¬2a1ku i2a1kú ï¬2a1kú i2a1kü ï¬2a1kü i2a1kv ï¬2a1kv ia3lan ia1la ï¬a3lan ia2lat ï¬a2lat i2aleg ia1le ï¬2aleg ï¬a1le i2alib ia1li ï¬2alib ï¬a1li i2a1lí ï¬2a1lí ia2lom ia1lo ï¬a2lom ï¬a1lo i2a1lö ï¬2a1lö ia2lud ia1lu ï¬a2lud ï¬a1lu ia2lup ï¬a2lup ia2lus ï¬a2lus i2al2y ï¬2al2y i2a1má ï¬2a1má i2a1mó ï¬2a1mó ia2m1ur ia1mu ï¬a2m1ur ï¬a1mu i2a1mú ï¬2a1mú i2a1mű ï¬2a1mű ia2nek ia1ne ï¬a2nek ï¬a1ne i2a1né ï¬2a1né i2a1nö ï¬2a1nö i2a1nÅ‘ ï¬2a1nÅ‘ 2ia1nu ï¬a1nu iao2k ia1o ï¬ao2k iaó2r ia1ó ï¬aó2r ia2pát ia1pá ï¬a2pát ï¬a1pá i2a1pe ï¬2a1pe i2a1pé ï¬2a1pé ia1p2l ï¬a1p2l i2a1po ï¬2a1po ia1p2s ï¬a1p2s iará1di2 ia1rá ï¬ará1di2 i2ard ï¬2ard i2a1re ï¬2a1re ia2rén ia1ré ï¬a2rén i2a1ro ï¬2a1ro i2a1ró ï¬2a1ró i2a1rö ï¬2a1rö i2a1ru ï¬2a1ru i2a1rú ï¬2a1rú i2a1se ï¬2a1se i2a1sh ï¬2a1sh i2a1si ï¬2a1si i2a1s2ká ï¬2a1s2ká i2a1s2l ï¬2a1s2l i2a1s2m ï¬2a1s2m i2a1só ï¬2a1só i2a1sö ï¬2a1sö i2a1s2p ï¬2a1s2p iast2 ï¬ast2 i2a1s2ta ï¬2a1s2ta i2a1s2tá ï¬2a1s2tá i2a1s1ti ï¬2a1s1ti i2a1s1to ï¬2a1s1to i2a1str ï¬2a1str i2a1sú ï¬2a1sú i2a1sü ï¬2a1sü i2a1sű ï¬2a1sű ia2sz1an ias2z ia1s1za ï¬a2sz1an ï¬a1s1za i3as2ze1rű ia1s1ze ï¬3as2ze1rű ï¬a1s1ze ia2sze2s ï¬a2sze2s ia2szép ia1s1zé ï¬a2szép ï¬a1s1zé iasz2k1e2r iasz1ke ï¬asz2k1e2r ï¬asz1ke ia2szop ia1s1zo ï¬a2szop i2a1s1zú ï¬2a1s1zú i2a1te ï¬2a1te i2a1tó ï¬2a1tó i2a1tö ï¬2a1tö i2a1tÅ‘ ï¬2a1tÅ‘ i2a1t1ré ï¬2a1t1ré ia2t2y ï¬a2t2y i2aud ia1u ï¬2aud i2au2r ï¬2au2r iau2s ï¬au2s iaü2z ia1ü ï¬aü2z ia2vat ia1va ï¬a2vat ï¬a1va i2a1vé ï¬2a1vé i2a1vi ï¬2a1vi i2a1ví ï¬2a1ví i2a1vo ï¬2a1vo i2a1zá ï¬2a1zá i2a1ze ï¬2a1ze ia2zo ï¬a2zo i2az2s ï¬2az2s i2a1zú ï¬2a1zú i1á iá2c2s ï¬Ã¡2c2s iá2ga ï¬Ã¡2ga iá2gá ï¬Ã¡2gá iá2ge ï¬Ã¡2ge iá2gi ï¬Ã¡2gi iá2go ï¬Ã¡2go iá2g2y ï¬Ã¡2g2y iá2hí ï¬Ã¡2hí iá1ka2 ï¬Ã¡1ka2 iá2kab ï¬Ã¡2kab iá2kak ï¬Ã¡2kak iá2k1al ï¬Ã¡2k1al iá2k1an ï¬Ã¡2k1an iá2k1ap ï¬Ã¡2k1ap iá2k1ar ï¬Ã¡2k1ar iá2k1as ï¬Ã¡2k1as iá2k1á2 ï¬Ã¡2k1á2 iá2keb iá1ke ï¬Ã¡2keb ï¬Ã¡1ke iá2k1el ï¬Ã¡2k1el iá2kem ï¬Ã¡2kem iá2k1en ï¬Ã¡2k1en iá2k1e2s ï¬Ã¡2k1e2s iá2k1é2r. iá1ké ï¬Ã¡2k1é2r. ï¬Ã¡1ké iá2k1érd ï¬Ã¡2k1érd iá2kés ï¬Ã¡2kés iá1ki2 ï¬Ã¡1ki2 iá2kin ï¬Ã¡2kin iá2kir ï¬Ã¡2kir iá2ki2t ï¬Ã¡2ki2t iá2kí ï¬Ã¡2kí iá2kop iá1ko ï¬Ã¡2kop ï¬Ã¡1ko iá2k1or ï¬Ã¡2k1or iá2k1os2z ï¬Ã¡2k1os2z iá2k1ó2 ï¬Ã¡2k1ó2 iá2k1ö ï¬Ã¡2k1ö iá2kÅ‘ ï¬Ã¡2kÅ‘ iá2ku2r iá1ku ï¬Ã¡2ku2r ï¬Ã¡1ku iá2k1ut ï¬Ã¡2k1ut iá2k1ú2 ï¬Ã¡2k1ú2 iá2k1ü ï¬Ã¡2k1ü iá2kű ï¬Ã¡2kű iá1la2 ï¬Ã¡1la2 iál1a1na ï¬Ã¡l1a1na iá2lál iá1lá ï¬Ã¡2lál ï¬Ã¡1lá iá2l1ár ï¬Ã¡2l1ár iá2l1e2 ï¬Ã¡2l1e2 iá2lim iá1li ï¬Ã¡2lim ï¬Ã¡1li iá2l1in ï¬Ã¡2l1in iá2lop iá1lo ï¬Ã¡2lop ï¬Ã¡1lo iá2nar iá1na ï¬Ã¡2nar ï¬Ã¡1na iá2n1as ï¬Ã¡2n1as iá2nem iá1ne ï¬Ã¡2nem ï¬Ã¡1ne iá2nir iá1ni ï¬Ã¡2nir ï¬Ã¡1ni iá2nis ï¬Ã¡2nis iá2nö ï¬Ã¡2nö iánt2 ï¬Ã¡nt2 ián1tr ï¬Ã¡n1tr iá2nü ï¬Ã¡2nü iá2ny1ad ián2y iá1nya ï¬Ã¡2ny1ad ï¬Ã¡n2y ï¬Ã¡1nya iá2ny1a2l ï¬Ã¡2ny1a2l iá2nyan ï¬Ã¡2nyan iá2nyar ï¬Ã¡2nyar iá2ny1e2 ï¬Ã¡2ny1e2 iá2nyérz iá1nyé ï¬Ã¡2nyérz ï¬Ã¡1nyé iá2nyö ï¬Ã¡2nyö iá2ó1i iá1ó ï¬Ã¡2ó1i ï¬Ã¡1ó iá2po ï¬Ã¡2po iá2rad iá1ra ï¬Ã¡2rad ï¬Ã¡1ra iá2rak ï¬Ã¡2rak iá2ram ï¬Ã¡2ram iár2das iár1da ï¬Ã¡r2das ï¬Ã¡r1da iár2d1e ï¬Ã¡r2d1e iár2d3z ï¬Ã¡r2d3z iá2re ï¬Ã¡2re iá2rim iá1ri ï¬Ã¡2rim ï¬Ã¡1ri iár1s2 ï¬Ã¡r1s2 iá2ru ï¬Ã¡2ru iá3run ï¬Ã¡3run iá2rú ï¬Ã¡2rú iá2sal iá1sa ï¬Ã¡2sal ï¬Ã¡1sa iá2sar ï¬Ã¡2sar iá2s1as ï¬Ã¡2s1as iá2s1á2g iá1sá ï¬Ã¡2s1á2g ï¬Ã¡1sá iá2s1ám ï¬Ã¡2s1ám iá2sás ï¬Ã¡2sás iá2s1e2 ï¬Ã¡2s1e2 iá2sikr iá1si ï¬Ã¡2sikr ï¬Ã¡1si iá2sí ï¬Ã¡2sí iá2sor iá1so ï¬Ã¡2sor ï¬Ã¡1so iá2só ï¬Ã¡2só iá2sö ï¬Ã¡2sö iá2sÅ‘ ï¬Ã¡2sÅ‘ iás1p ï¬Ã¡s1p iás3s1zo iás2s2z2 ï¬Ã¡s3s1zo ï¬Ã¡s2s2z2 iást2 ï¬Ã¡st2 iás1tr ï¬Ã¡s1tr iá2s1ü2 ï¬Ã¡2s1ü2 iá2sű ï¬Ã¡2sű iás1ví2 ï¬Ã¡s1ví2 iá2szás iás2z iá1s1zá ï¬Ã¡2szás ï¬Ã¡s2z ï¬Ã¡1s1zá iá2s3ze ï¬Ã¡2s3ze iás3z2s ï¬Ã¡s3z2s iá2ta ï¬Ã¡2ta iá2t1e2l iá1te ï¬Ã¡2t1e2l ï¬Ã¡1te iá1ti2 ï¬Ã¡1ti2 iá2t1i1o ï¬Ã¡2t1i1o iá2t1ir ï¬Ã¡2t1ir iba1d2 i1ba ï¬ba1d2 ï¬1ba ibas2 ï¬bas2 ibat2 ï¬bat2 iba1u2 ï¬ba1u2 iba1ü2 ï¬ba1ü2 ibá2l1a i1bá ï¬bá2l1a ï¬1bá 2ibe2l. i1be ï¬be2l. ï¬1be ibe2lér ibe1lé ï¬be2lér ï¬be1lé ibe2r1in ibe1ri ï¬be2r1in ï¬be1ri ibe1s ï¬be1s ibi2o i1bi ï¬bi2o ï¬1bi ib2lo ï¬b2lo ib2ró ï¬b2ró ib2ru ï¬b2ru ica1f2 i1ca ï¬ca1f2 ï¬1ca ica1ff ï¬ca1ff ica1ï¬ ï¬ca1ï¬ ica1fl ï¬ca1fl ica1g2 ï¬ca1g2 ica1kl ï¬ca1kl ica1k2r ï¬ca1k2r ica2los ica1lo ï¬ca2los ï¬ca1lo ica1pr ï¬ca1pr ica1t2 ï¬ca1t2 icca2l ic1ca ï¬cca2l ï¬c1ca ic2can ï¬c2can ic2c1á2 ï¬c2c1á2 ic2c1ha icc2h ï¬c2c1ha ï¬cc2h ic2c1he ï¬c2c1he ic2cin ic1ci ï¬c2cin ï¬c1ci ic2cir ï¬c2cir ic2cí ï¬c2cí ic2c1o ï¬c2c1o ic2c1ö ï¬c2c1ö iccse2l ic2c2s ic1c1se ï¬ccse2l ï¬c2c2s ï¬c1c1se iccs1ol ic1c1so ï¬ccs1ol ï¬c1c1so ic1c1s1Å‘2 ï¬c1c1s1Å‘2 ic2cú ï¬c2cú ic2c2z ï¬c2c2z ic3h2a. ic2h i1c1ha ï¬c3h2a. ï¬1c1ha i2ch2e. i1c1he ï¬2ch2e. ï¬1c1he i2c3hek ï¬2c3hek ic3hez ï¬c3hez i2chi1ná i1c1hi ï¬2chi1ná ï¬1c1hi ic3hoz i1c1ho ï¬c3hoz ï¬1c1ho i2c3hű ï¬2c3hű i1chy ï¬1chy ici2t1a2 i1ci ï¬ci2t1a2 ici2tá2r ici1tá ï¬ci2tá2r ici2tel ici1te ï¬ci2tel ï¬ci1te ic2i2ter ï¬c2i2ter i1c2lu ï¬1c2lu ic1old i1co ï¬c1old ï¬1co i2cs1a2d ic2s i1c1sa ï¬2cs1a2d ï¬c2s ï¬1c1sa ics1a2la ï¬cs1a2la icsa2p1á2g icsa1pá ï¬csa2p1á2g ï¬csa1pá i2cs1a1u ï¬2cs1a1u i2cs1ág i1c1sá ï¬2cs1ág ï¬1c1sá ics1áll ï¬cs1áll i2cs1eb i1c1se ï¬2cs1eb ï¬1c1se i2cs1e2g ï¬2cs1e2g icse2t ï¬cse2t i2cs1e1te ï¬2cs1e1te i2cs1ev ï¬2cs1ev i2csé2g i1c1sé ï¬2csé2g ï¬1c1sé ics1é1gé ï¬cs1é1gé i2cs1é2r2é. icsé1ré ï¬2cs1é2r2é. ï¬csé1ré ics1i1pa i1c1si ï¬cs1i1pa ï¬1c1si ics1s ï¬cs1s ics1út i1c1sú ï¬cs1út ï¬1c1sú i2cs1ül i1c1sü ï¬2cs1ül ï¬1c1sü i2cs1ü2t ï¬2cs1ü2t ic3s1ze ics2z ï¬c3s1ze ï¬cs2z ic1üz i1cü ï¬c1üz ï¬1cü i2d1a2j i1da ï¬2d1a2j id1a1na ï¬d1a1na id1a2n2y ï¬d1a2n2y i2d1a1u ï¬2d1a1u id1áll i1dá ï¬d1áll id1á1ru ï¬d1á1ru i2d1ásv ï¬2d1ásv id1br ï¬d1br 1id1do ï¬d1do id2d2z ï¬d2d2z ide2av i1de ide1a ï¬de2av ï¬1de ï¬de1a ide2g1á ï¬de2g1á ide2g1él ide1gé ï¬de2g1él ï¬de1gé ide2g1é2r. ï¬de2g1é2r. 1i2dej ï¬2dej ide1k2v ï¬de1k2v id1elj ï¬d1elj id1elm ï¬d1elm id1e1lo ï¬d1e1lo id1elt ï¬d1elt i2d1emb ï¬2d1emb ide1p2 ï¬de1p2 ide2red ide1re ï¬de2red ï¬de1re i2de1ro ï¬2de1ro i2de3s1a2 ï¬2de3s1a2 ide1u2 ï¬de1u2 i2d1é2g i1dé ï¬2d1é2g ï¬1dé idé2ke2l idé1ke ï¬dé2ke2l ï¬dé1ke i2dén2y ï¬2dén2y idér2c3s ï¬dér2c3s 2idés2z ï¬dés2z 1i2déz ï¬2déz id2ge ï¬d2ge idias2z2 i1di idi1a ï¬dias2z2 ï¬1di ï¬di1a 1i2dil ï¬2dil id1ionj idi1o ï¬d1ionj ï¬di1o id1ionn ï¬d1ionn i2d1i2o1no ï¬2d1i2o1no i2d1i2ont ï¬2d1i2ont idi2os ï¬di2os idi2ód idi1ó ï¬di2ód ï¬di1ó i2d1i1ta ï¬2d1i1ta idíja2d i1dí idí1ja ï¬díja2d ï¬1dí ï¬dí1ja idí2j1a1da ï¬dí2j1a1da id1kr ï¬d1kr id1old i1do ï¬d1old ï¬1do i2d1olv ï¬2d1olv ido2mac ido1ma ï¬do2mac ï¬do1ma ido2m1an ï¬do2m1an 1i2do1má ï¬2do1má 1i2do1mo ï¬2do1mo 1i2do1mú ï¬2do1mú id1ös i1dö ï¬d1ös ï¬1dö 1i2d2Å‘. i1dÅ‘ ï¬2d2Å‘. ï¬1dÅ‘ 1i2dÅ‘b ï¬2dÅ‘b 1i2dÅ‘d ï¬2dÅ‘d 1i2dÅ‘1é ï¬2dÅ‘1é 1i2dÅ‘h ï¬2dÅ‘h 1i2dÅ‘1i ï¬2dÅ‘1i 1i2dÅ‘k ï¬2dÅ‘k 1i2dÅ‘m ï¬2dÅ‘m i2dÅ‘1ne ï¬2dÅ‘1ne i2dÅ‘1né ï¬2dÅ‘1né i2dÅ‘nk ï¬2dÅ‘nk 1i2dÅ‘p ï¬2dÅ‘p 1i2dÅ‘r ï¬2dÅ‘r 1i2dÅ‘s ï¬2dÅ‘s idÅ‘2so2d idÅ‘1so ï¬dÅ‘2so2d ï¬dÅ‘1so idÅ‘1s2p ï¬dÅ‘1s2p 1i2dÅ‘t ï¬2dÅ‘t idÅ‘2tál idÅ‘1tá ï¬dÅ‘2tál ï¬dÅ‘1tá 1i2dÅ‘v ï¬2dÅ‘v i2dÅ‘z ï¬2dÅ‘z id1pr ï¬d1pr idro1g id1ro ï¬dro1g ï¬d1ro id2rót id1ró ï¬d2rót ï¬d1ró i1d2ru ï¬1d2ru id1s2t ï¬d1s2t id1t2r ï¬d1t2r id1u2t i1du ï¬d1u2t ï¬1du id1üg i1dü ï¬d1üg ï¬1dü i2d1üz ï¬2d1üz i2d3zá id2z ï¬2d3zá ï¬d2z i2d3ze ï¬2d3ze i2d3zó ï¬2d3zó i2d1z1s1a idz2s ï¬2d1z1s1a ï¬dz2s i2d1z1s1á ï¬2d1z1s1á i2dzsen i1d1z1se ï¬2dzsen ï¬1d1z1se i2d2zsél i1d1z1sé ï¬2d2zsél ï¬1d1z1sé i2dzsir i1d1z1si ï¬2dzsir ï¬1d1z1si i2d1z1s1í2 ï¬2d1z1s1í2 i2d1z1so2 ï¬2d1z1so2 i1e ie2be ï¬e2be i2ebk ï¬2ebk ie2c2s ï¬e2c2s ie2d2z ï¬e2d2z ie2f1a2 ï¬e2f1a2 ie2f1á ï¬e2f1á ie2f8i ie2ï¬ ï¬e2ï¬ ie2f1ü2 ï¬e2f1ü2 ie2gé ï¬e2gé ie2g2y ï¬e2g2y ie2he ï¬e2he i2eld ï¬2eld ie2lo ï¬e2lo ie2lÅ‘1a ie1lÅ‘ ï¬e2lÅ‘1a ï¬e1lÅ‘ ien2sá ï¬en2sá ien2s1o ï¬en2s1o iens3s ï¬ens3s ie2n2y ï¬e2n2y ie2pe ï¬e2pe ie2r1a2d ie1ra ï¬e2r1a2d ï¬e1ra ie2rag ï¬e2rag ie2r1aj ï¬e2r1aj ie2r1a2k ï¬e2r1a2k ie2ral ï¬e2ral ie2ram ï¬e2ram ie2r1an ï¬e2r1an ie2ras ï¬e2ras ie2r1á ï¬e2r1á ier1d2 ï¬er1d2 ie2reg ie1re ï¬e2reg ï¬e1re ier1eg2y ï¬er1eg2y ie2r1el ï¬e2r1el ie2r1ember ierem1be ï¬e2r1ember ï¬erem1be ie2r1est ï¬e2r1est ie2r1i2ga ie1ri ï¬e2r1i2ga ï¬e1ri ie2r1in ï¬e2r1in ie2r1is1te ï¬e2r1is1te ie2rí ï¬e2rí ie2r1ol ie1ro ï¬e2r1ol ï¬e1ro ie2ror ï¬e2ror ie2rö ï¬e2rö ie2rÅ‘ ï¬e2rÅ‘ iers2z2 ï¬ers2z2 iert2 ï¬ert2 ier1tr ï¬er1tr ie2r1u2 ï¬e2r1u2 ie2r1ú ï¬e2r1ú ie2r1ü2g ie1rü ï¬e2r1ü2g ï¬e1rü ie2sem ie1se ï¬e2sem ie2sett ï¬e2sett ie2sés ie1sé ï¬e2sés ï¬e1sé ie2sik ie1si ï¬e2sik ï¬e1si ie2sÅ‘ ï¬e2sÅ‘ ie2s2z ï¬e2s2z ieté1s2z2 ie1té ï¬eté1s2z2 ï¬e1té i2e1tó ï¬2e1tó i2etr ï¬2etr ietz1 ï¬etz1 ie2ur ie1u ï¬e2ur ï¬e1u ie2ve ï¬e2ve ie2vé ï¬e2vé ie2vi ï¬e2vi ie2vÅ‘ ï¬e2vÅ‘ i2e1wa ï¬2e1wa i1é ï¬1é i2é1do ï¬2é1do i2é1fe ï¬2é1fe ié2ge ï¬Ã©2ge ié2gé ï¬Ã©2gé ié2gÅ‘ ï¬Ã©2gÅ‘ ié2gü ï¬Ã©2gü i2é1ha ï¬2é1ha ié2hes ié1he ï¬Ã©2hes ï¬Ã©1he i2é1hi ï¬2é1hi i2éil ié1i ï¬2éil ï¬Ã©1i ié2le ï¬Ã©2le ié2lé ï¬Ã©2lé ié2li ï¬Ã©2li ié2lÅ‘ ï¬Ã©2lÅ‘ i2é1me ï¬2é1me i2é1mé ï¬2é1mé i2é1mo ï¬2é1mo ié2ne1ke ié1ne ï¬Ã©2ne1ke ï¬Ã©1ne ié2nekh ï¬Ã©2nekh ié2nek1k2 ï¬Ã©2nek1k2 ié2ne1kü ï¬Ã©2ne1kü ié2pí ï¬Ã©2pí ié2pü ï¬Ã©2pü ié2rek ié1re ï¬Ã©2rek ï¬Ã©1re i2ére2n ï¬2ére2n ié2rez ï¬Ã©2rez ié2ré ï¬Ã©2ré ié2ri ï¬Ã©2ri ié2r2Å‘. ié1rÅ‘ ï¬Ã©2r2Å‘. ï¬Ã©1rÅ‘ ié2rÅ‘k ï¬Ã©2rÅ‘k ié2rÅ‘t ï¬Ã©2rÅ‘t ié2rü ï¬Ã©2rü i2é1s1zi iés2z ï¬2é1s1zi ï¬Ã©s2z iéta1s ié1ta ï¬Ã©ta1s ï¬Ã©1ta ié2tel ié1te ï¬Ã©2tel ï¬Ã©1te i2é1tö ï¬2é1tö ié2v2e. ié1ve ï¬Ã©2v2e. ï¬Ã©1ve ié2vek ï¬Ã©2vek ifa1st i1fa ï¬fa1st ï¬1fa ifa1t2 ï¬fa1t2 i2f2e. i1fe ï¬2f2e. ï¬1fe ifenyőé2h ifen2y ife1nyÅ‘ ifenyÅ‘1é ï¬fenyőé2h ï¬fen2y ï¬fe1nyÅ‘ ï¬fenyÅ‘1é ifi1o2 if8i iï¬1o2 iï¬ ï¬ï¬1o2 ï¬ï¬ if1ír i1fí ï¬f1ír ï¬1fí 1if1jí if8j ï¬f1jí ï¬f8j 1if1ju ï¬f1ju 1ifj2ú. if1jú ï¬fj2ú. ï¬f1jú 1ifjúb ï¬fjúb 1ifjú1é ï¬fjú1é 1ifjú1i ï¬fjú1i 1ifjú1ké ï¬fjú1ké 1ifjún ï¬fjún 1ifjúr ï¬fjúr 1ifjús ï¬fjús 1ifjút ï¬fjút 1ifjúv ï¬fjúv i1f2la if8l i1fla ifl ï¬1fla if2le ifle ï¬ï¬‚e if2lo iflo ï¬ï¬‚o if2lö iflö ï¬ï¬‚ö if2lu iflu ï¬ï¬‚u ifo1go2 i1fo ï¬fo1go2 ï¬1fo ifon1n ï¬fon1n i1f2ri ï¬1f2ri i1f2ro ï¬1f2ro i1f2rö ï¬1f2rö if2ru ï¬f2ru if2t1a ï¬f2t1a if2t1á2 ï¬f2t1á2 if2t1e2l if1te ï¬f2t1e2l ï¬f1te if2tin if1ti ï¬f2tin ï¬f1ti if2tö ï¬f2tö if2tú ï¬f2tú ig1a2git i1ga iga1gi ï¬g1a2git ï¬ga1gi igahert2 iga1he ï¬gahert2 ï¬ga1he ig1a2ka ï¬g1a2ka ig1als ï¬g1als ig1alv ï¬g1alv ig1an1d2 ï¬g1an1d2 iga2nyal igan2y iga1nya ï¬ga2nyal ï¬gan2y ï¬ga1nya ig2a1nye2 ï¬g2a1nye2 iga2ny1es ï¬ga2ny1es iga2ras iga1ra ï¬ga2ras ï¬ga1ra 1i2garz ï¬2garz iga1sl ï¬ga1sl iga2szag igas2z iga1s1za ï¬ga2szag ï¬gas2z ï¬ga1s1za igasz1al ï¬gasz1al igau2r iga1u ï¬gau2r ï¬ga1u 1i2ga2z. ï¬2ga2z. 1iga1zí ï¬ga1zí ig1á2c2s i1gá ï¬g1á2c2s ï¬1gá ig1álm ï¬g1álm ig1ásh ï¬g1ásh i3gás2z ï¬3gás2z ig1á2t1e2 ï¬g1á2t1e2 ig1br ï¬g1br ig1d2r ï¬g1d2r ig1ed2z i1ge ï¬g1ed2z ï¬1ge i2geg ï¬2geg igek2 ï¬gek2 ige1kl ï¬ge1kl ig1e2le ï¬g1e2le ig1ell ï¬g1ell ig1elm ï¬g1elm 1i2genl ï¬2genl ige2rá ï¬ge2rá ig1e2rÅ‘ ï¬g1e2rÅ‘ ig1e2se ï¬g1e2se ig1e1si ï¬g1e1si ige2tál ige1tá ï¬ge2tál ï¬ge1tá ige2teg ige1te ï¬ge2teg ï¬ge1te ige2té2l ige1té ï¬ge2té2l ï¬ge1té ige2tol ige1to ï¬ge2tol ï¬ge1to ige2tÅ‘r ige1tÅ‘ ï¬ge2tÅ‘r ï¬ge1tÅ‘ ig1e1vi ï¬g1e1vi i2g1ex ï¬2g1ex 1i2géd i1gé ï¬2géd ï¬1gé ig1é2g ï¬g1é2g ig1é2li ï¬g1é2li ig1é2lÅ‘ ï¬g1é2lÅ‘ ig1é2lü ï¬g1é2lü ig1élv ï¬g1élv i2gém ï¬2gém igé2na2 ï¬gé2na2 igé2ná2 ï¬gé2ná2 1i2g2én2y ï¬2g2én2y i3gé1pe ï¬3gé1pe igé2p1é2s1zi igé1pé igépés2z ï¬gé2p1é2s1zi ï¬gé1pé ï¬gépés2z igé2p1é2s1zü ï¬gé2p1é2s1zü ig1é2pí ï¬g1é2pí ig1é2r. ï¬g1é2r. ig1érj ï¬g1érj i2g1érl ï¬2g1érl ig1érn ï¬g1érn ig1é2rü ï¬g1é2rü ig1érv ï¬g1érv ig1és2z ï¬g1és2z 1i2gé1ü ï¬2gé1ü ig1f8l ig1fl ï¬g1fl i1g2hi ï¬1g2hi ig1ív i1gí ï¬g1ív ï¬1gí ig1íz ï¬g1íz ig1kl ï¬g1kl ig1kr ï¬g1kr ig2lac ig1la ï¬g2lac ï¬g1la ig2li1a ig1li ï¬g2li1a ï¬g1li ig2na2d ig1na ï¬g2na2d ï¬g1na ig2n1e2g ig1ne ï¬g2n1e2g ï¬g1ne igne2r ï¬gne2r ig2n1os2z ig1no ï¬g2n1os2z ï¬g1no ig2nö ï¬g2nö ig2nü ï¬g2nü igo2rál i1go igo1rá ï¬go2rál ï¬1go ï¬go1rá ig1o2s ï¬g1o2s igó1é2 i1gó ï¬gó1é2 ï¬1gó ig1öb i1gö ï¬g1öb ï¬1gö ig1ö2k ï¬g1ö2k ig1öl ï¬g1öl ig1ö2z ï¬g1ö2z ig1pr ï¬g1pr i1g2raf ig1ra ï¬1g2raf ï¬g1ra i1g2raff ï¬1g2raff i1g2raï¬ ï¬1g2raï¬ i1g2ra1fl ï¬1g2ra1fl ig3rá2f. ig2ráf ig1rá ï¬g3rá2f. ï¬g2ráf ï¬g1rá ig3rá2fu ï¬g3rá2fu ig1sk ï¬g1sk ig1sl ï¬g1sl ig1sm ï¬g1sm ig1sp ï¬g1sp ig1st ï¬g1st ig1s2z ï¬g1s2z ig1tr ï¬g1tr ig1ug i1gu ï¬g1ug ï¬1gu igu2n ï¬gu2n igu2t ï¬gu2t ig1ús i1gú ï¬g1ús ï¬1gú ig1üc i1gü ï¬g1üc ï¬1gü ig1üd ï¬g1üd ig1ü2g ï¬g1ü2g igü2l ï¬gü2l ig1üt ï¬g1üt ig1üv ï¬g1üv ig1űz i1gű ï¬g1űz ï¬1gű i2gy2a. ig2y i1gya ï¬2gy2a. ï¬g2y ï¬1gya i2gyam ï¬2gyam i2gyák i1gyá ï¬2gyák ï¬1gyá i2gyál ï¬2gyál i2gy1eg i1gye ï¬2gy1eg ï¬1gye i2gy1e2kéh igye1ké ï¬2gy1e2kéh ï¬gye1ké i2gy1ékt i1gyé ï¬2gy1ékt ï¬1gyé i2gy1é2r. ï¬2gy1é2r. i2gy1ért ï¬2gy1ért iha2re i1ha ï¬ha2re ï¬1ha 2ih2e. i1he ï¬h2e. ï¬1he i1i ï¬1i ii2de ï¬i2de ii2dé ï¬i2dé ii2dÅ‘ ï¬i2dÅ‘ ii2ga ï¬i2ga ii2gá ï¬i2gá ii2gé ï¬i2gé ii2g2y ï¬i2g2y ii2ha ï¬i2ha ii2je ï¬i2je ii2má ï¬i2má ii2mi ï¬i2mi ii2pa ï¬i2pa ii2ram ii1ra ï¬i2ram ï¬i1ra ii2rat ï¬i2rat ii2rá ï¬i2rá ii2ro ï¬i2ro ii2s2z ï¬i2s2z ii2ta ï¬i2ta ii2vá ï¬i2vá ii2vo ï¬i2vo ii2vó ï¬i2vó ii2zé ï¬i2zé ii2zo ï¬i2zo i1í ï¬1í ií2gé ï¬Ã­2gé ií2ra ï¬Ã­2ra ií2rá ï¬Ã­2rá ií2ro ï¬Ã­2ro ií2ró ï¬Ã­2ró ií2ru ï¬Ã­2ru ií2té ï¬Ã­2té ií2ve ï¬Ã­2ve ií2ze ï¬Ã­2ze 1i2jed i1je ï¬2jed ï¬1je ije2gy1á2 ijeg2y ï¬je2gy1á2 ï¬jeg2y 1i2jes ï¬2jes ik2abe2j1 i1ka ika1be ï¬k2abe2j1 ï¬1ka ï¬ka1be ikabe1já2 ï¬kabe1já2 i2k1abl ï¬2k1abl ik1ajt ï¬k1ajt ika2lak ika1la ï¬ka2lak ï¬ka1la i2k1ang ï¬2k1ang ika1ó2 ï¬ka1ó2 ika1p2l ï¬ka1p2l ika1p2r ï¬ka1p2r ika2ró2r ika1ró ï¬ka2ró2r ï¬ka1ró ikas2 ï¬kas2 ika1s1p ï¬ka1s1p ika1t2r ï¬ka1t2r i2k1árk i1ká ï¬2k1árk ï¬1ká i2k1á1ru ï¬2k1á1ru ikás1s ï¬kás1s iká2tol iká1to ï¬ká2tol ï¬ká1to ik1dr ï¬k1dr ik1e1bé i1ke ï¬k1e1bé ï¬1ke i2k1eg ï¬2k1eg ik1e1lo ï¬k1e1lo ik1eng ï¬k1eng ike2r1a2 ï¬ke2r1a2 ike2r1á2 ï¬ke2r1á2 ike2r1e2d2z ike1re ï¬ke2r1e2d2z ï¬ke1re ike2r1e2l ï¬ke2r1e2l ike2r1ev ï¬ke2r1ev ike2ris ike1ri ï¬ke2ris ï¬ke1ri ike2r1o ï¬ke2r1o ik1e2rÅ‘ ï¬k1e2rÅ‘ iker1s2 ï¬ker1s2 ike2ru ï¬ke2ru ike2t1ült ike1tü ï¬ke2t1ült ï¬ke1tü ik1e1vo ï¬k1e1vo i2ké2kekk i1ké iké1ke ï¬2ké2kekk ï¬1ké ï¬ké1ke i2k1é2pí ï¬2k1é2pí i2k1é1pü ï¬2k1é1pü i2k1érz ï¬2k1érz ik1f8l ik1fl ï¬k1fl ik1fr ï¬k1fr i2k1id i1ki ï¬2k1id ï¬1ki ik1i2ko ï¬k1i2ko ik1ikr ï¬k1ikr i2k1ind ï¬2k1ind i2k1ins ï¬2k1ins i2k1int ï¬2k1int i2k1i2o ï¬2k1i2o ik1isk ï¬k1isk ikka2l ik1ka ï¬kka2l ï¬k1ka ik2k1a1la ï¬k2k1a1la ikk1an2y ï¬kk1an2y ik2k1a2r ï¬k2k1a2r ikk1á1ra ik1ká ï¬kk1á1ra ï¬k1ká ik2káz ï¬k2káz ik2kev ik1ke ï¬k2kev ï¬k1ke ikk1ér1de ik1ké ï¬kk1ér1de ï¬k1ké ik2kin ik1ki ï¬k2kin ï¬k1ki ik2k1i2p ï¬k2k1i2p ik2k1ol ik1ko ï¬k2k1ol ï¬k1ko ik2k1ó ï¬k2k1ó ik2k1ös ik1kö ï¬k2k1ös ï¬k1kö ik2köt ï¬k2köt ik2k1ö2z ï¬k2k1ö2z ik2k1u2 ï¬k2k1u2 ik2küz ik1kü ï¬k2küz ï¬k1kü ikla1tr ik1la ï¬kla1tr ï¬k1la ik2ler ik1le ï¬k2ler ï¬k1le ik2lor ik1lo ï¬k2lor ï¬k1lo i1k2lub ik1lu ï¬1k2lub ï¬k1lu ik2lum ï¬k2lum i1knéd ik1né ï¬1knéd ï¬k1né iko2m1ar i1ko iko1ma ï¬ko2m1ar ï¬1ko ï¬ko1ma 1i2kon1bá ï¬2kon1bá 1i2konén iko1né ï¬2konén ï¬ko1né 1i2konl ï¬2konl 1i2kon1ta ï¬2kon1ta 1i2kon1tö ï¬2kon1tö 1i2kon1tü ï¬2kon1tü 1i2konz2s ikonz2 ï¬2konz2s ï¬konz2 ikó1p i1kó ï¬kó1p ï¬1kó ik1ó2rá ï¬k1ó2rá ik2ó2s3zá ikós2z ï¬k2ó2s3zá ï¬kós2z ikÅ‘2re2s i1kÅ‘ ikÅ‘1re ï¬kÅ‘2re2s ï¬1kÅ‘ ï¬kÅ‘1re ik1pl ï¬k1pl ik1pr ï¬k1pr 1ikre1i ik1re ï¬kre1i ï¬k1re 1ikrek ï¬krek ik2rém ik1ré ï¬k2rém i1k2ri1ti ik1ri ï¬1k2ri1ti i1k2róm ik1ró ï¬1k2róm ï¬k1ró i1k2ru ï¬1k2ru ik1st ï¬k1st ikszind2 iks2z ik1s1zi ï¬kszind2 ï¬ks2z ï¬k1s1zi iksz2t2 ï¬ksz2t2 iktus1s2 ik1tu ï¬ktus1s2 ï¬k1tu iktu2s2z ï¬ktu2s2z 2ik2u. i1ku ï¬k2u. ï¬1ku 2ikub ï¬kub ik1udv ï¬k1udv 2ikuf ï¬kuf 2ikuff ï¬kuff 2ikuï¬ ï¬kuï¬ 2ikufl ï¬kufl 2ikuh ï¬kuh 2iku1i ï¬ku1i 2iku1í ï¬ku1í 2ikuj ï¬kuj 2ikuk ï¬kuk 2ikur ï¬kur iku2sav iku1sa ï¬ku2sav ï¬ku1sa 2ikut ï¬kut 2ikuv ï¬kuv ik1ü2v i1kü ï¬k1ü2v ï¬1kü 2il2a. i1la ï¬l2a. il1abr ï¬l1abr il1a2ce ï¬l1a2ce il1a2cé ï¬l1a2cé il1a2dó ï¬l1a2dó i2l1ajk ï¬2l1ajk i1l1a2la ï¬1l1a2la il1ald ï¬l1ald il1alj ï¬l1alj i2l1alk ï¬2l1alk il1amb ï¬l1amb ila2n ï¬la2n i2l1a1na ï¬2l1a1na i2l1an2y ï¬2l1an2y ila2pin ila1pi ï¬la2pin ï¬la1pi ila2pol ila1po ï¬la2pol ï¬la1po i2l1a2r ï¬2l1a2r ila2se ï¬la2se ilá2g1e2 i1lá ï¬lá2g1e2 ilág3g ï¬lág3g ilá2gö ï¬lá2gö ilány1fé2 ilán2y ï¬lány1fé2 ï¬lán2y i2l1á2p ï¬2l1á2p i2l1árn ï¬2l1árn il1á2ro ï¬l1á2ro il1á1ru ï¬l1á1ru il1á2rú ï¬l1á2rú ilá2s2z ï¬lá2s2z i2l1á1s1zo ï¬2l1á1s1zo il1átf ï¬l1átf il1átff ï¬l1átff il1átï¬ ï¬l1átï¬ il1átfl ï¬l1átfl il1átm ï¬l1átm il1átr ï¬l1átr il1bl ï¬l1bl ilb2r ï¬lb2r il2c1a2 ï¬l2c1a2 ilc3c ï¬lc3c il2c3h ï¬l2c3h il2c3sap ilc2s il1c1sa ï¬l2c3sap ï¬lc2s ï¬l1c1sa il2c3sik il1c1si ï¬l2c3sik ï¬l1c1si ilc3s2z ï¬lc3s2z il2c2z ï¬l2c2z il1e2lem i1le ile1le ï¬l1e2lem ï¬le1le i2l1emb ï¬2l1emb i2l1eml ï¬2l1eml il1exp ï¬l1exp ilé2n1á2 i1lé ï¬lé2n1á2 i2l1é2nekh ilé1ne ï¬2l1é2nekh ï¬lé1ne i2l1é2nekn ï¬2l1é2nekn ilé1sp ï¬lé1sp il1f8l il1fl ï¬l1fl il1fr ï¬l1fr il1g2r ï¬l1g2r i2l1icc i1li ï¬2l1icc il1i1de ï¬l1i1de i2l1igáh ili1gá ï¬2l1igáh ï¬li1gá i2l1igáj ï¬2l1igáj i2l1igás ï¬2l1igás i2l1igát ï¬2l1igát ili1g1ra ï¬li1g1ra i2l1i2ko2n. ili1ko ï¬2l1i2ko2n. ï¬li1ko i2l1i2konb ï¬2l1i2konb i2liko1né ï¬2liko1né i2l1i2konh ï¬2l1i2konh i2l1i2konj ï¬2l1i2konj i2l1i2konn ï¬2l1i2konn i2l1i2ko1no ï¬2l1i2ko1no i2l1i2konr ï¬2l1i2konr i2l1i2kont ï¬2l1i2kont i2likonz2 ï¬2likonz2 i2l1ill ï¬2l1ill i2li2m2a. ili1ma ï¬2li2m2a. ï¬li1ma il1i2mi ï¬l1i2mi il1im1p2 ï¬l1im1p2 ilin1n ï¬lin1n ili2p1á ï¬li2p1á il1i1ró ï¬l1i1ró il1k2l ï¬l1k2l il1k2r ï¬l1k2r 2il2l. ï¬l2l. illa2g1ó2 il1la ï¬lla2g1ó2 ï¬l1la 1illatb ï¬llatb 1illatr ï¬llatr 1illatt ï¬llatt il2l1es1te il1le ï¬l2l1es1te ï¬l1le il2l1es1té ï¬l2l1es1té 1illé1sé il1lé ï¬llé1sé ï¬l1lé illé2t ï¬llé2t ill1é1te ï¬ll1é1te ill1étt ï¬ll1étt il2l1id il1li ï¬l2l1id ï¬l1li illig2 ï¬llig2 illi1gr ï¬lli1gr il2l1ö ï¬l2l1ö 1il1lú ï¬l1lú il3l2y. il2l2y ï¬l3l2y. ï¬l2l2y ilm1a1da il1ma ï¬lm1a1da il2m1ag2y ï¬l2m1ag2y il2m1aj ï¬l2m1aj ilm1a1ka ï¬lm1a1ka il2m1a2l ï¬l2m1a2l ilm1ank ï¬lm1ank ilm1an2y ï¬lm1an2y il2m1ap ï¬l2m1ap il2m1arc ï¬l2m1arc ilm1atl ï¬lm1atl il2m1a2z ï¬l2m1a2z il2m1á2l il1má ï¬l2m1á2l ilme2g il1me ï¬lme2g ï¬l1me il2m1e1gé ï¬l2m1e1gé il2m1eg2y ï¬l2m1eg2y il2m1e2l ï¬l2m1e2l il2m1ep ï¬l2m1ep il2m1e2r ï¬l2m1e2r il2m1es2z ï¬l2m1es2z il2m1é2j il1mé ï¬l2m1é2j ï¬l1mé il2m1ék ï¬l2m1ék ilmé2l ï¬lmé2l il2m1é1le ï¬l2m1é1le il2m1é2r. ï¬l2m1é2r. il2m1érd ï¬l2m1érd ilm1é2rést ilmé1ré ï¬lm1é2rést ï¬lmé1ré il2mér1te ï¬l2mér1te il2m1ér1té ï¬l2m1ér1té il2m1és ï¬l2m1és il2mid il1mi ï¬l2mid ï¬l1mi il2m1i2k ï¬l2m1i2k il2mim ï¬l2mim il2mir ï¬l2mir il2m1is ï¬l2m1is il2miz ï¬l2miz il2m1í2 ï¬l2m1í2 il2m1ok il1mo ï¬l2m1ok il2mol ï¬l2mol il2m1or ï¬l2m1or ilm1os2z ï¬lm1os2z il2m1ó2r il1mó ï¬l2m1ó2r ï¬l1mó il2mö ï¬l2mö il2mÅ‘ ï¬l2mÅ‘ il1mu2 il2m1ut ï¬l2m1ut ilo1g2 i1lo ï¬lo1g2 ï¬1lo i2l1or ï¬2l1or ilót2 i1ló ï¬lót2 ï¬1ló iló1tr ï¬ló1tr il1öb i1lö ï¬l1öb il1ös ï¬l1ös il1p2l ï¬l1p2l il1p2r ï¬l1p2r il1sh ï¬l1sh il1sp ï¬l1sp il1s2t ï¬l1s2t 2il1te ï¬l1te ilu1mi2 i1lu ï¬lu1mi2 ï¬1lu ilumin1 ï¬lumin1 ilus3s ï¬lus3s i2l1üg i1lü ï¬2l1üg il1ür ï¬l1ür il1üv ï¬l1üv i2l1üz ï¬2l1üz ilva1k2 il1va ï¬lva1k2 ï¬l1va ima1gl i1ma ï¬ma1gl ï¬1ma im1akk ï¬m1akk ima1ó2 ï¬ma1ó2 ima1p ï¬ma1p 2ima2r. ï¬ma2r. i2ma1ri ï¬2ma1ri 1i2mád i1má ï¬2mád i2mákt ï¬2mákt im1dr ï¬m1dr imeg1g2 i1me ï¬meg1g2 im1elem ime1le ï¬m1elem ï¬me1le ime2m ï¬me2m i2m1e1me ï¬2m1e1me ime2ra ï¬me2ra ime2rin ime1ri ï¬me2rin ï¬me1ri i2m1érd i1mé ï¬2m1érd ï¬1mé im1f8j ï¬m1f8j im1inh i1mi ï¬m1inh ï¬1mi im1in1té ï¬m1in1té imi2t1a2 ï¬mi2t1a2 imi2t1á2r imi1tá ï¬mi2t1á2r ï¬mi1tá imi2tin imi1ti ï¬mi2tin ï¬mi1ti 1im1mu ï¬m1mu imo1d2 i1mo ï¬mo1d2 ï¬1mo imog3r ï¬mog3r i2m1old ï¬2m1old i2m1om ï¬2m1om im1ó2rá i1mó ï¬m1ó2rá ï¬1mó imót2 ï¬mót2 im1ös i1mö ï¬m1ös ï¬1mö 1im1pé ï¬m1pé impres2z1 imp1re ï¬mpres2z1 ï¬mp1re 1im1pu ï¬m1pu 1imre1i im1re ï¬mre1i ï¬m1re i2m1ür i1mü ï¬2m1ür ï¬1mü iműt2r i1mű ï¬műt2r ï¬1mű i2n1abl i1na ï¬2n1abl i2n1a2cé ï¬2n1a2cé i2n1a1dá ï¬2n1a1dá in1a1de ï¬n1a1de i2na1do ï¬2na1do in1a2já ï¬n1a2já in1ajt ï¬n1ajt inaka2r ina1ka ï¬naka2r ï¬na1ka 1i2naka2t. ï¬2naka2t. i2n1akc ï¬2n1akc i2nakk ï¬2nakk i2nakn ï¬2nakn i2nakt ï¬2nakt i2n1akv ï¬2n1akv in1ald ï¬n1ald i2n1alk ï¬2n1alk in1all ï¬n1all 1i2na2m. ï¬2na2m. i2n1a2mi2t. ina1mi ï¬2n1a2mi2t. ï¬na1mi i1n1a1na ï¬1n1a1na ina1p1la ï¬na1p1la ina2rán ina1rá ï¬na2rán ï¬na1rá 1i2na2s. i3nas3 ï¬2na2s. ina2sis ina1si ï¬na2sis ï¬na1si 1i2nasn ï¬2nasn ina2tell ina1te ï¬na2tell ï¬na1te i2n1ág i1ná ï¬2n1ág ï¬1ná iná2lad iná1la ï¬ná2lad ï¬ná1la in1á2rak iná1ra ï¬n1á2rak ï¬ná1ra in1árh ï¬n1árh i2ná1ru ï¬2ná1ru i2n1ásv ï¬2n1ásv in1bl ï¬n1bl in1br ï¬n1br in2c1a2g in1ca ï¬n2c1a2g ï¬n1ca in2cal ï¬n2cal inca2n ï¬nca2n inc1elt in1ce ï¬nc1elt ï¬n1ce in2c1él in1cé ï¬n2c1él ï¬n1cé in2c1ha inc2h ï¬n2c1ha ï¬nc2h in2c1hi ï¬n2c1hi in2c3ho ï¬n2c3ho in2c1is in1ci ï¬n2c1is ï¬n1ci in2c1or in1co ï¬n2c1or ï¬n1co in2c1os ï¬n2c1os in2có ï¬n2có in2c1ö ï¬n2c1ö in2cÅ‘ ï¬n2cÅ‘ in2cs1an inc2s in1c1sa ï¬n2cs1an ï¬nc2s ï¬n1c1sa in2cs1e2r in1c1se ï¬n2cs1e2r ï¬n1c1se in2cs1é2j in1c1sé ï¬n2cs1é2j ï¬n1c1sé in2cs1é2r. ï¬n2cs1é2r. inc3sérv ï¬nc3sérv in2csor in1c1so ï¬n2csor ï¬n1c1so inc3so2r. ï¬nc3so2r. in2c1sú ï¬n2c1sú in2c3süt in1c1sü ï¬n2c3süt ï¬n1c1sü inc3s1za incs2z ï¬nc3s1za ï¬ncs2z in2cú ï¬n2cú in2d1ab in1da ï¬n2d1ab ï¬n1da 1inda1i ï¬nda1i in2d1az ï¬n2d1az in2deb in1de ï¬n2deb ï¬n1de in2d1ed ï¬n2d1ed in2d1e2g ï¬n2d1e2g ind1e1kö ï¬nd1e1kö in2d1e2m ï¬n2d1e2m in2d1ett ï¬n2d1ett 1index ï¬ndex in2d1e2z ï¬n2d1e2z in2d1ég in1dé ï¬n2d1ég ï¬n1dé in2d1én ï¬n2d1én in2dés ï¬n2dés ind1ink in1di ï¬nd1ink ï¬n1di 1indiv ï¬ndiv 1indít in1dí ï¬ndít ï¬n1dí 2indl ï¬ndl in1dö2 ï¬n1dö2 in2d1ör ï¬n2d1ör in2dös ï¬n2dös in1d2so2r. ind1so ï¬n1d2so2r. ï¬nd1so 1indul in1du ï¬ndul ï¬n1du 2in2e. i1ne ï¬n2e. ï¬1ne 2ineb ï¬neb i2n1e2dé ï¬2n1e2dé i2n1ef ï¬2n1ef i2n1eff ï¬2n1eff i2n1eï¬ ï¬2n1eï¬ i2n1efl ï¬2n1efl ineg1g ï¬neg1g in1e2g2y ï¬n1e2g2y ine1ke2 ï¬ne1ke2 ine2k1el ï¬ne2k1el ine2ku ï¬ne2ku i2n1e2l ï¬2n1e2l in1e1mu ï¬n1e1mu i2n1en2y ï¬2n1en2y 2iner ï¬ner i2n1erd ï¬2n1erd i2n1erj ï¬2n1erj ine2t1a ï¬ne2t1a ine2t1ér ine1té ï¬ne2t1ér ï¬ne1té ine2tü2l ine1tü ï¬ne2tü2l ï¬ne1tü i2n1ex ï¬2n1ex 2inéb i1né ï¬néb ï¬1né in1é2ge ï¬n1é2ge iné1k1ré ï¬né1k1ré iné2l ï¬né2l i2n1é1le ï¬2n1é1le i2n1élt ï¬2n1élt i2n1élv ï¬2n1élv i2n1é2pí ï¬2n1é2pí i2n1é2r. ï¬2n1é2r. i2n1é1ré ï¬2n1é1ré in1ér1te ï¬n1ér1te iné2tá ï¬né2tá iné2te ï¬né2te 2inév ï¬név 1infek in1fe ï¬nfek ï¬n1fe 1inf8l 1infl ï¬nfl in2g1a2dó in1ga ï¬n2g1a2dó ï¬n1ga in2g1a1la ï¬n2g1a1la ing1áll in1gá ï¬ng1áll ï¬n1gá ing1á1rá ï¬ng1á1rá ing1á2ré ï¬ng1á2ré ing1á2ro ï¬ng1á2ro ing1árt ï¬ng1árt ing1á1ru ï¬ng1á1ru ingás3s ï¬ngás3s 1ingec in1ge ï¬ngec ï¬n1ge in2g1eg ï¬n2g1eg 1inge1i ï¬nge1i ing1el1já ï¬ng1el1já ing1elk ï¬ng1elk in2g1ell ï¬n2g1ell ing1els ï¬ng1els in2g1enc ï¬n2g1enc in3gyen3 1ingerb ï¬ngerb 1ingerc ï¬ngerc 1inge1ré ï¬nge1ré inge2r1és ï¬nge2r1és 1ingerg ï¬ngerg 1ingerh ï¬ngerh 1inge1ri ï¬nge1ri 1ingerk ï¬ngerk 1ingerm ï¬ngerm 1ingern ï¬ngern 1ingerp ï¬ngerp 1ingerr ï¬ngerr 1ingers ï¬ngers 1ingert ï¬ngert 1inge1rü ï¬nge1rü in2g1e2v ï¬n2g1e2v in2g1é2j in1gé ï¬n2g1é2j ï¬n1gé in2g1ék ï¬n2g1ék in2g1él ï¬n2g1él ingés3s ï¬ngés3s ing3g ï¬ng3g in1gham ing1ha ï¬n1gham ï¬ng1ha ing1i2na in1gi ï¬ng1i2na ï¬n1gi in2gí ï¬n2gí in1g1lo ï¬n1g1lo in2gor in1go ï¬n2gor ï¬n1go in2g1öl in1gö ï¬n2g1öl ï¬n1gö in2g1ös ï¬n2g1ös in1g2rá2d. ing1rá ï¬n1g2rá2d. ï¬ng1rá ing2rádb ï¬ng2rádb ing2rádd ï¬ng2rádd ing2rádn ï¬ng2rádn ing2rá1do ï¬ng2rá1do ing2rádt ï¬ng2rádt 1in2g1uj in1gu ï¬n2g1uj ï¬n1gu in2g1u2t ï¬n2g1u2t in2gú ï¬n2gú ing1ült in1gü ï¬ng1ült ï¬n1gü 2ini1e i1ni ï¬ni1e ï¬1ni 2ini1é ï¬ni1é i2nigar ini1ga ï¬2nigar ï¬ni1ga i2n1i1ge ï¬2n1i1ge in1ik1ra ï¬n1ik1ra ini1k1ro ï¬ni1k1ro i2n1ill ï¬2n1ill i2n1i2m2a. ini1ma ï¬2n1i2m2a. ï¬ni1ma in1i2mi ï¬n1i2mi i2n1ind ï¬2n1ind 2ining ï¬ning i2n1inh ï¬2n1inh i2n1i2o ï¬2n1i2o ini2q ï¬ni2q 2inir ï¬nir ini2s1ég ini1sé ï¬ni2s1ég ï¬ni1sé i2n1isk ï¬2n1isk i2n1ism ï¬2n1ism i2n1i2tal ini1ta ï¬2n1i2tal ï¬ni1ta 2ini1u ï¬ni1u i2n1íz i1ní ï¬2n1íz ï¬1ní 1injekc in1je ï¬njekc ï¬n1je ink1a1cé in1ka ï¬nk1a1cé ï¬n1ka in2k1a2d ï¬n2k1a2d in2k1a1to ï¬n2k1a1to in2k1árn in1ká ï¬n2k1árn ï¬n1ká in2k1es2z in1ke ï¬n2k1es2z ï¬n1ke ink1ér1té in1ké ï¬nk1ér1té ï¬n1ké in2ki1o in1ki ï¬n2ki1o ï¬n1ki ink1old in1ko ï¬nk1old ï¬n1ko ink1or1só inkor1s2 ï¬nk1or1só ï¬nkor1s2 in2kös in1kö ï¬n2kös ï¬n1kö 1inkub in1ku ï¬nkub ï¬n1ku 1inn2a. in1na ï¬nn2a. ï¬n1na in2nor in1no ï¬n2nor ï¬n1no i2n1ob i1no ï¬2n1ob ino2g3r ï¬no2g3r i2n1okl ï¬2n1okl i2n1old ï¬2n1old i2n1olt ï¬2n1olt i2n1olv ï¬2n1olv in1org ï¬n1org i2n1ox ï¬2n1ox in1ó1da i1nó ï¬n1ó1da in1ó2dá ï¬n1ó2dá inó2rá ï¬nó2rá i2n1öl i1nö ï¬2n1öl ï¬1nö in1ön ï¬n1ön in1Å‘z i1nÅ‘ ï¬n1Å‘z ï¬1nÅ‘ in1pl ï¬n1pl in1pr ï¬n1pr in1s1ká ï¬n1s1ká in1s2m ï¬n1s2m 1ins1pi ï¬ns1pi in1spr ï¬n1spr 1ins1ta ï¬ns1ta ins2tor ins1to ï¬ns2tor ï¬ns1to inta1g2r in1ta ï¬nta1g2r ï¬n1ta in2t1akk ï¬n2t1akk in2t1ak1tu ï¬n2t1ak1tu int1ann ï¬nt1ann int1ára1i in1tá intá1ra ï¬nt1ára1i ï¬n1tá ï¬ntá1ra int1árak ï¬nt1árak int1árat ï¬nt1árat in2t1á2rá ï¬n2t1á2rá in2t1árf ï¬n2t1árf in2t1árff ï¬n2t1árff in2t1árï¬ ï¬n2t1árï¬ in2t1ár1fl ï¬n2t1ár1fl in2t1á1ri ï¬n2t1á1ri int1áron intá1ro ï¬nt1áron ï¬ntá1ro in2t1árr ï¬n2t1árr int1árs2z ï¬nt1árs2z in2t1á1ru ï¬n2t1á1ru int1á2ta ï¬nt1á2ta 1inte1ge in1te ï¬nte1ge ï¬n1te 1integr ï¬ntegr in2t1e2g2y ï¬n2t1e2g2y int1elÅ‘t inte1lÅ‘ ï¬nt1elÅ‘t ï¬nte1lÅ‘ int1el1té ï¬nt1el1té in2t1enn ï¬n2t1enn in2t1e2n2y ï¬n2t1e2n2y 1intenz ï¬ntenz in2t1e2rez inte1re ï¬n2t1e2rez ï¬nte1re 1inter1fé ï¬nter1fé int1es2s2z ï¬nt1es2s2z inte2t1Å‘s inte1tÅ‘ ï¬nte2t1Å‘s ï¬nte1tÅ‘ in2t1é2j in1té ï¬n2t1é2j ï¬n1té in2t1és2z ï¬n2t1és2z 1inté1zé ï¬nté1zé 1intézk ï¬ntézk 1intézm ï¬ntézm 1inté1zÅ‘ ï¬nté1zÅ‘ 2intézÅ‘c ï¬ntézÅ‘c in1t2hos int1ho ï¬n1t2hos ï¬nt1ho in2tid in1ti ï¬n2tid ï¬n1ti in2ti1gé ï¬n2ti1gé int1il1la ï¬nt1il1la in2t1ip ï¬n2t1ip in2t1i1vá ï¬n2t1i1vá in2t1i2z ï¬n2t1i2z int1oml in1to ï¬nt1oml ï¬n1to in2t1os2z ï¬n2t1os2z in2t1ös in1tö ï¬n2t1ös ï¬n1tö intÅ‘kés2z1 in1tÅ‘ intÅ‘1ké ï¬ntÅ‘kés2z1 ï¬n1tÅ‘ ï¬ntÅ‘1ké int1Å‘2r. ï¬nt1Å‘2r. int1u1ra in1tu ï¬nt1u1ra ï¬n1tu intus1s2 ï¬ntus1s2 in2t1ut ï¬n2t1ut in2tús in1tú ï¬n2tús ï¬n1tú in2t1út ï¬n2t1út i2n1ug i1nu ï¬2n1ug i2n1uj ï¬2n1uj in1új i1nú ï¬n1új in1ú2s ï¬n1ú2s i2n1ú2t ï¬2n1ú2t i2n1ü2g i1nü ï¬2n1ü2g ï¬1nü in1ült ï¬n1ült in1ünn ï¬n1ünn in1ür ï¬n1ür in1üs ï¬n1üs i2n1ü2t ï¬2n1ü2t i2n1ü2v ï¬2n1ü2v i2n1ü2z ï¬2n1ü2z in1űr i1nű ï¬n1űr ï¬1nű 1inven in1ve ï¬nven ï¬n1ve in2xa ï¬n2xa 2in2z. ï¬n2z. 1in1zu ï¬n1zu i1o ioá2r io1á ï¬oá2r ï¬o1á io1b2r ï¬o1b2r io2c2s ï¬o2c2s io1d2r ï¬o1d2r io2dú ï¬o2dú i3o1gé ï¬3o1gé io2ik io1i ï¬o2ik ï¬o1i io2ká ï¬o2ká io2kí ï¬o2kí io2ko ï¬o2ko io2ku ï¬o2ku i3old ï¬3old io2l1i2v io1li ï¬o2l1i2v ï¬o1li i3ol1k2 ï¬3ol1k2 iol1okk io1lo ï¬ol1okk ï¬o1lo i2o1ló ï¬2o1ló i3olv ï¬3olv io2mar io1ma ï¬o2mar ï¬o1ma io2m1árt io1má ï¬o2m1árt ï¬o1má io2mil io1mi ï¬o2mil ï¬o1mi io2mö ï¬o2mö io2nad io1na ï¬o2nad ï¬o1na io2n1a2g ï¬o2n1a2g i2o2nak ï¬2o2nak io2n1a2n ï¬o2n1a2n io2n1a2r ï¬o2n1a2r io2n1a2s ï¬o2n1a2s io2n1a2t ï¬o2n1a2t io2n1av ï¬o2n1av io2n1át io1ná ï¬o2n1át ï¬o1ná io2neg io1ne ï¬o2neg ï¬o1ne io2n1e2l ï¬o2n1e2l io2ne2n ï¬o2ne2n ionim1 io1ni ï¬onim1 ï¬o1ni io2nin ï¬o2nin ion1k2 ï¬on1k2 io2nop io1no ï¬o2nop ï¬o1no io2n1oszt ionos2z ï¬o2n1oszt ï¬onos2z io2nö ï¬o2nö ions2 ï¬ons2 ion1st ï¬on1st ion1t2r ï¬on1t2r io2pe ï¬o2pe io1p2l ï¬o1p2l io1p2r ï¬o1p2r io2r1a ï¬o2r1a io2r1i2ko io1ri ï¬o2r1i2ko ï¬o1ri io2so ï¬o2so 2ios2z. ios2z ï¬os2z. ï¬os2z iosz2f ï¬osz2f iosz2ff ï¬osz2ff iosz2ï¬ ï¬osz2ï¬ io1sz2fl ï¬o1sz2fl iosz2kó ï¬osz2kó i2o1te ï¬2o1te i1ó ióa2d ió1a ï¬Ã³a2d ï¬Ã³1a ió2ap ï¬Ã³2ap ióá2g ió1á ï¬Ã³Ã¡2g ï¬Ã³1á ióá2r ï¬Ã³Ã¡2r ióá2t1a2 ï¬Ã³Ã¡2t1a2 i2ó1bá ï¬2ó1bá i2óbes ió1be ï¬2óbes ï¬Ã³1be i2ó1bé ï¬2ó1bé i2ó1bí ï¬2ó1bí i2ó1bl ï¬2ó1bl i2ó1bo ï¬2ó1bo i2ó1bö ï¬2ó1bö i2ó1bÅ‘ ï¬2ó1bÅ‘ i2ó1b2r ï¬2ó1b2r i2ó1bu ï¬2ó1bu i2ó1bú ï¬2ó1bú i2ó1bü ï¬2ó1bü i2ó1bű ï¬2ó1bű i2ó1ce ï¬2ó1ce i2ó1cé ï¬2ó1cé i2ó1ci ï¬2ó1ci i3ócsk ióc2s ï¬3ócsk ï¬Ã³c2s i2ó1cu ï¬2ó1cu i2ó1de ï¬2ó1de i2ó1dé ï¬2ó1dé i2ó1di ï¬2ó1di i2ó1dí ï¬2ó1dí i2ó1dó ï¬2ó1dó i2ó1dö ï¬2ó1dö i2ó1d1rá ï¬2ó1d1rá i2ó1dú ï¬2ó1dú i2ó1dü ï¬2ó1dü i2ód2z ï¬2ód2z i2óég ió1é ï¬2óég ï¬Ã³1é i2óék ï¬2óék i2óél ï¬2óél i2óép ï¬2óép i2óés ï¬2óés i2óé2v. ï¬2óé2v. i2ó1fá ï¬2ó1fá i2ó1fe ï¬2ó1fe i2óf8i i2Ã³ï¬ ï¬2Ã³ï¬ i2ó1f8l i2ó1fl ï¬2ó1fl i2ó1fó ï¬2ó1fó i2ó1fö ï¬2ó1fö i2ó1fÅ‘ ï¬2ó1fÅ‘ i2ó1f2r ï¬2ó1f2r i2ó1fu ï¬2ó1fu i2ó1fü ï¬2ó1fü i2ó1fű ï¬2ó1fű ió1g2r ï¬Ã³1g2r i2ó1ha ï¬2ó1ha i2ó1há ï¬2ó1há i2ó1he ï¬2ó1he i2ó1hé ï¬2ó1hé i2ó1hi ï¬2ó1hi i2ó1hí ï¬2ó1hí i2ó1hó ï¬2ó1hó i2ó1hö ï¬2ó1hö i2ó1hÅ‘ ï¬2ó1hÅ‘ i2ó1hu ï¬2ó1hu i2ó1hü ï¬2ó1hü i2ó1hű ï¬2ó1hű iói2g ió1i ï¬Ã³i2g ï¬Ã³1i i2óip ï¬2óip i2óis ï¬2óis i2óiz ï¬2óiz ióí2v ió1í ï¬Ã³Ã­2v ï¬Ã³1í i2ó1je ï¬2ó1je i2ó1jo ï¬2ó1jo i2ó1jó ï¬2ó1jó ió2kad ió1ka ï¬Ã³2kad ió2kaj ï¬Ã³2kaj iók1arc ï¬Ã³k1arc ió2k1aszt iókas2z ï¬Ã³2k1aszt ï¬Ã³kas2z ió2kál ió1ká ï¬Ã³2kál ï¬Ã³1ká ió2k1e2g ió1ke ï¬Ã³2k1e2g ió2k1i2d ió1ki ï¬Ã³2k1i2d ï¬Ã³1ki i2ó1kí ï¬2ó1kí iókköz1 iók1kö ï¬Ã³kköz1 ï¬Ã³k1kö iók1old ió1ko ï¬Ã³k1old i2ókort ï¬2ókort i2ó1kö i2ó1kÅ‘ ï¬2ó1kÅ‘ ió2küz ió1kü ï¬Ã³2küz ï¬Ã³1kü i2ó1la ï¬2ó1la i2ó1lá ï¬2ó1lá i2ó1le ï¬2ó1le i2ó1lé ï¬2ó1lé i2ó1li ï¬2ó1li i2ó1lo ï¬2ó1lo i2ó1me ï¬2ó1me i2ó1mó ï¬2ó1mó i2ó1mu ï¬2ó1mu i2ó1mú ï¬2ó1mú i2ó1mű ï¬2ó1mű i2ó1ne ï¬2ó1ne i2ó1nó ï¬2ó1nó i2ó1nö ï¬2ó1nö ióo2k ió1o ï¬Ã³o2k ï¬Ã³1o ióó2r ió1ó ï¬Ã³Ã³2r ï¬Ã³1ó ió1p2s ï¬Ã³1p2s ió2rab ió1ra ï¬Ã³2rab ï¬Ã³1ra i2órag ï¬2órag i2óraj ï¬2óraj i2órak ï¬2órak i2óran ï¬2óran i2órap ï¬2órap ió2ras ï¬Ã³2ras i2órád ió1rá ï¬2órád ï¬Ã³1rá i2ó1re ï¬2ó1re i2ó1ré ï¬2ó1ré i2óri1a ió1ri ï¬2óri1a ï¬Ã³1ri i2ó1ro ï¬2ó1ro i2ó1rö ï¬2ó1rö i2ó1ru ï¬2ó1ru ió2s1aj ió1sa ï¬Ã³2s1aj ï¬Ã³1sa ió2sel ió1se ï¬Ã³2sel ï¬Ã³1se ió2s2i. ió1si ï¬Ã³2s2i. ï¬Ã³1si i2ó1s1lá ï¬2ó1s1lá ió2só ï¬Ã³2só iós3s ï¬Ã³s3s i2ó1s2tá ï¬2ó1s2tá i2ó1st2r ï¬2ó1st2r i2ó1sú ï¬2ó1sú ió1s2z2 ï¬Ã³1s2z2 i2ó1te ï¬2ó1te i2ó1té ï¬2ó1té i2ó1ti ï¬2ó1ti i2ó1tí ï¬2ó1tí i2ó1tö ï¬2ó1tö i2ó1tÅ‘ ï¬2ó1tÅ‘ i2ó1t2r ï¬2ó1t2r i2ó1tu ï¬2ó1tu i2ó1tú ï¬2ó1tú i2ó1tü ï¬2ó1tü i2ó1tű ï¬2ó1tű i2óug ió1u ï¬2óug ï¬Ã³1u i2óun ï¬2óun i2óur ï¬2óur i2óut ï¬2óut i2óvár ió1vá ï¬2óvár ï¬Ã³1vá i2óvás ï¬2óvás i2ó1ve ï¬2ó1ve i2ó1vé ï¬2ó1vé i2ó1vi ï¬2ó1vi i2ó1ví ï¬2ó1ví i2ó1vö ï¬2ó1vö i2ózár ió1zá ï¬2ózár ï¬Ã³1zá i2ó1ze ï¬2ó1ze i2óz2s ï¬2óz2s i1ö ï¬1ö iö2bö ï¬Ã¶2bö iö2kö ï¬Ã¶2kö iö2le ï¬Ã¶2le iö2lé ï¬Ã¶2lé iö2li ï¬Ã¶2li iö2lö ï¬Ã¶2lö iö2lÅ‘ ï¬Ã¶2lÅ‘ iö2mö ï¬Ã¶2mö iö2re ï¬Ã¶2re iö2rö ï¬Ã¶2rö iö2rü ï¬Ã¶2rü iö2tö ï¬Ã¶2tö iö2ve ï¬Ã¶2ve iö2zö ï¬Ã¶2zö i1Å‘ iÅ‘1dr ï¬Å‘1dr i2Å‘1ha ï¬2Å‘1ha i2Å‘1ké ï¬2Å‘1ké i2Å‘1ku ï¬2Å‘1ku i2Å‘1ra ï¬2Å‘1ra iÅ‘2ri2 ï¬Å‘2ri2 i2Å‘1s2p ï¬2Å‘1s2p i2Å‘1st ï¬2Å‘1st i2Å‘1te ï¬2Å‘1te i2Å‘1té ï¬2Å‘1té i2Å‘1va ï¬2Å‘1va i2Å‘1vá ï¬2Å‘1vá ipa2c1se i1pa ipac2s ï¬pa2c1se ï¬1pa ï¬pac2s 1i2pa2r. ï¬2pa2r. 1i2par2a. ipa1ra ï¬2par2a. ï¬pa1ra ipa2ral ï¬pa2ral ipa2rál ipa1rá ï¬pa2rál ï¬pa1rá 1i2parán ï¬2parán 1i2parát ï¬2parát 1i2parb ï¬2parb ipa2r1en ipa1re ï¬pa2r1en ï¬pa1re ipa2r1es ï¬pa2r1es 1i2pa1ré ï¬2pa1ré 1i2parh ï¬2parh 1i2paril ipa1ri ï¬2paril ï¬pa1ri 1i2parin ï¬2parin ipa2ris ï¬pa2ris 1i2parm ï¬2parm 1i2parn ï¬2parn i2parok ipa1ro ï¬2parok ï¬pa1ro i2paron ï¬2paron 1i2parr ï¬2parr 1i2pars2 ï¬2pars2 i2par1ta ï¬2par1ta 1i2par1tá ï¬2par1tá 1i2par1te ï¬2par1te 1i2par1tó ï¬2par1tó 1i2pa1ru ï¬2pa1ru ipa1u2 ï¬pa1u2 ipánk2 i1pá ï¬pánk2 ï¬1pá ipán1n ï¬pán1n ip1átm ï¬p1átm i2p1ef i1pe ï¬2p1ef ï¬1pe i2p1eff ï¬2p1eff i2p1eï¬ ï¬2p1eï¬ i2p1e1fl ï¬2p1e1fl ip1e2g2y ï¬p1e2g2y i2p1e2lu ï¬2p1e2lu i2p1e1sé ï¬2p1e1sé i2p1ev ï¬2p1ev ip1f8l ip1fl ï¬p1fl ip2fu ï¬p2fu ip2hi ï¬p2hi ip1kl ï¬p1kl ip1kr ï¬p1kr ipo1kl i1po ï¬po1kl ï¬1po ipor2tel ipor1te ï¬por2tel ï¬por1te ipor2t1Å‘ ï¬por2t1Å‘ ip1ö2l i1pö ï¬p1ö2l ï¬1pö ip1ös ï¬p1ös ip2p1a2d ip1pa ï¬p2p1a2d ï¬p1pa ip2pa2j ï¬p2pa2j ip2par ï¬p2par ip2pár ip1pá ï¬p2pár ï¬p1pá ipp1ing ip1pi ï¬pp1ing ï¬p1pi ippo1l ip1po ï¬ppo1l ï¬p1po ip2p1os ï¬p2p1os ip2pö ï¬p2pö i1p2rof ip1ro ï¬1p2rof ï¬p1ro i1p2roff ï¬1p2roff i1proï¬ ï¬1proï¬ i1pro1fl ï¬1pro1fl i1p2rog ï¬1p2rog i1p2roj ï¬1p2roj i1p2rot ï¬1p2rot ipsz1a2l ips2z ip1s1za ï¬psz1a2l ï¬ps2z ï¬p1s1za ipsz1ál ip1s1zá ï¬psz1ál ï¬p1s1zá ip2sz1emb ip1s1ze ï¬p2sz1emb ï¬p1s1ze ip2szip ip1s1zi ï¬p2szip ï¬p1s1zi ip2s1z1í2 ï¬p2s1z1í2 ipsz1or ip1s1zo ï¬psz1or ï¬p1s1zo i2p1ug i1pu ï¬2p1ug ï¬1pu ira2e i1ra ï¬ra2e ï¬1ra ira1lo2 ï¬ra1lo2 1i2ra1ma ï¬2ra1ma 1i2ra1má ï¬2ra1má iramis1s ira1mi ï¬ramis1s ï¬ra1mi ira2tal ira1ta ï¬ra2tal ï¬ra1ta ir2ata2n ï¬r2ata2n ira2t1an2y ï¬ra2t1an2y ira2t1as ï¬ra2t1as ira2t1at ï¬ra2t1at ir2a2tál ira1tá ï¬r2a2tál ï¬ra1tá 1i2ratb ï¬2ratb 1i2ratc ï¬2ratc 1i2ratd ï¬2ratd ira2tel ira1te ï¬ra2tel ï¬ra1te 1i2ra1té ï¬2ra1té 1i2ratf ï¬2ratf 1i2ratff ï¬2ratff 1i2ratï¬ ï¬2ratï¬ 1i2rat1fl ï¬2rat1fl 1i2ra1ti ï¬2ra1ti 2i3ra2till ï¬3ra2till 1i2ratm ï¬2ratm ira2t1ol ira1to ï¬ra2t1ol ï¬ra1to 1i2rato2z. ï¬2rato2z. ira2t1ö2 ï¬ra2t1ö2 1i2ratp ï¬2ratp 1i2ratr ï¬2ratr 1i2ra1tü ï¬2ra1tü irádi2ók i1rá irá1di irádi1ó ï¬rádi2ók ï¬1rá ï¬rá1di ï¬rádi1ó irádi2ót ï¬rádi2ót irá2f1a2 ï¬rá2f1a2 irá2g1al irá1ga ï¬rá2g1al ï¬rá1ga irá2g1ál irá1gá ï¬rá2g1ál ï¬rá1gá irá2g1á2rak irágá1ra ï¬rá2g1á2rak ï¬rágá1ra irá2g1á2ro ï¬rá2g1á2ro irá2g1á1to ï¬rá2g1á1to irá2gáz ï¬rá2gáz irá2g1e ï¬rá2g1e irág1g ï¬rág1g irá2g1ol irá1go ï¬rá2g1ol ï¬rá1go irá2g1ó2r irá1gó ï¬rá2g1ó2r ï¬rá1gó irá2gö ï¬rá2gö irá2l1a ï¬rá2l1a irá2l1e2 ï¬rá2l1e2 1i2ránn ï¬2ránn 1i2rán2y ï¬2rán2y irá2nyal irá1nya ï¬rá2nyal ï¬rá1nya irá2nye2 ï¬rá2nye2 i2re1i i1re ï¬2re1i ï¬1re 1ir1ga ï¬r1ga irin2c i1ri ï¬rin2c ï¬1ri iri2zo ï¬ri2zo irka1s ir1ka ï¬rka1s ï¬r1ka irkas2z2 ï¬rkas2z2 ir1ke1 ï¬r1ke1 2ir2o. i1ro ï¬r2o. 2irob ï¬rob 1i2rod2a. iro1da ï¬2rod2a. ï¬ro1da 1i2ro1dá ï¬2ro1dá iro1gr ï¬ro1gr iro2ká ï¬ro2ká iro2k1e2 ï¬ro2k1e2 iro2kér ir2o1ké ï¬ro2kér ï¬r2o1ké iro2l1a ï¬ro2l1a iro2m1a ï¬ro2m1a iros3s ï¬ros3s iró2ke i1ró ï¬ró2ke ï¬1ró i2ró1no ï¬2ró1no ir1sa2 ï¬r1sa2 1irs2a. ï¬rs2a. ir2s1a1i ï¬r2s1a1i irs1aj ï¬rs1aj ir2s1al ï¬r2s1al ir2s1á2 ï¬r2s1á2 ir2sil ir1si ï¬r2sil ï¬r1si irs3s ï¬rs3s ir2s1ü ï¬r2s1ü ir2s2z ï¬r2s2z ir1té2 ï¬r1té2 ir2t1él ï¬r2t1él ir2tiz ir1ti ï¬r2tiz ï¬r1ti ir2t1o2r ir1to ï¬r2t1o2r ï¬r1to ir2t1ö2 ï¬r2t1ö2 ir2tür ir1tü ï¬r2tür ï¬r1tü iru2s1ze i1ru irus2z ï¬ru2s1ze ï¬1ru ï¬rus2z i2s1abl i1sa ï¬2s1abl is1a2da ï¬s1a2da is1a2dá ï¬s1a2dá is1a2do ï¬s1a2do i2s1a2g ï¬2s1a2g i2s1a1ja ï¬2s1a1ja is1ajk ï¬s1ajk isa2k1e ï¬sa2k1e isa2kol isa1ko ï¬sa2kol ï¬sa1ko is1a2la ï¬s1a2la i2s1alf ï¬2s1alf i2s1alff ï¬2s1alff is1alï¬ ï¬s1alï¬ is1alfl ï¬s1alfl i2s1alj ï¬2s1alj is1alk ï¬s1alk i2s1alm ï¬2s1alm is1amb ï¬s1amb isa2n ï¬sa2n i2s1a1na ï¬2s1a1na i2s1a1no ï¬2s1a1no i2s1ant ï¬2s1ant i2s1an2y ï¬2s1an2y isa2p ï¬sa2p is1a1pá ï¬s1a1pá is1a1po ï¬s1a1po is1a2rá ï¬s1a2rá is1ass ï¬s1ass i2s1aut isa1u ï¬2s1aut ï¬sa1u i2s1a2z ï¬2s1a2z i2s1ábr i1sá ï¬2s1ábr ï¬1sá is1ág2g2y ï¬s1ág2g2y isá2gy1út i4s1á2g2y isá1gyú ï¬sá2gy1út ï¬4s1á2g2y ï¬sá1gyú is1áll ï¬s1áll is1á2po ï¬s1á2po i2s1á2rak isá1ra ï¬2s1á2rak ï¬sá1ra i2s1á2rá ï¬2s1á2rá i2s1árb ï¬2s1árb i2s1árf ï¬2s1árf i2s1árff ï¬2s1árff i2s1árï¬ ï¬2s1árï¬ i2s1ár1fl ï¬2s1ár1fl i2s1árh ï¬2s1árh i2s1ár1ké isár1k2 ï¬2s1ár1ké ï¬sár1k2 i2s1árn ï¬2s1árn isá2ron isá1ro ï¬sá2ron ï¬sá1ro i2s1árr ï¬2s1árr i2s1árt2 ï¬2s1árt2 i2s1á2ru ï¬2s1á2ru i2s1á2rus1 ï¬2s1á2rus1 i2s1á2t1a2 ï¬2s1á2t1a2 i2s1átk ï¬2s1átk i2s1átl ï¬2s1átl i2s1átv ï¬2s1átv is1bl ï¬s1bl is1br ï¬s1br is2c2h ï¬s2c2h is1dr ï¬s1dr is1ed2z i1se ï¬s1ed2z ï¬1se i2s1ef8f i2s1eff ï¬2s1eff i2s1e1ge ï¬2s1e1ge i2s1e2gér ise1gé ï¬2s1e2gér ï¬se1gé i2s1e2k2e. ise1ke ï¬2s1e2k2e. ï¬se1ke i2s1elf ï¬2s1elf i2s1elff ï¬2s1elff is1elï¬ ï¬s1elï¬ is1el1fl ï¬s1el1fl is1elm ï¬s1elm i2s1e1lo ï¬2s1e1lo i2s1eml ï¬2s1eml i2s1enc ï¬2s1enc is1eng ï¬s1eng i2s1e2pi ï¬2s1e2pi i2s1ep1ri ï¬2s1ep1ri i2s1e2rÅ‘ ï¬2s1e2rÅ‘ is1e2set ise1se ï¬s1e2set ï¬se1se is1e1sé ï¬s1e1sé isé2ge2l i1sé isé1ge ï¬sé2ge2l ï¬1sé ï¬sé1ge isé2gés isé1gé ï¬sé2gés ï¬sé1gé isé2gid isé1gi ï¬sé2gid ï¬sé1gi iségkés2z1 i3ségk iség1ké ï¬ségkés2z1 ï¬3ségk ï¬ség1ké is1élv ï¬s1élv i2s1é2r. ï¬2s1é2r. i2s1é2ri ï¬2s1é2ri i2s1ér1te ï¬2s1ér1te i2s1ér1té ï¬2s1ér1té i2s1é2v2e. isé1ve ï¬2s1é2v2e. ï¬sé1ve i2s1é2vet ï¬2s1é2vet i2s1é2vén isé1vé ï¬2s1é2vén ï¬sé1vé i2s1é2vét ï¬2s1é2vét i2s1évh ï¬2s1évh i2sé2v2i. isé1vi ï¬2sé2v2i. ï¬sé1vi isföl2 is1fö ï¬sföl2 ï¬s1fö is1fr ï¬s1fr is2hin is1hi ï¬s2hin ï¬s1hi is2his ï¬s2his is1i1do i1si ï¬s1i1do ï¬1si isi2g ï¬si2g i2s1i1ga ï¬2s1i1ga i2s1ind ï¬2s1ind i2s1inf ï¬2s1inf i2s1inff ï¬2s1inff is1inï¬ ï¬s1inï¬ is1infl ï¬s1infl is1int ï¬s1int i2s1inv ï¬2s1inv isi1ó2 ï¬si1ó2 i2si1pa ï¬2si1pa isi2par ï¬si2par i2s1i1ro ï¬2s1i1ro i2s1isten isist2 isis1te ï¬2s1isten ï¬sist2 ï¬sis1te is1i1ta ï¬s1i1ta is1i2zo ï¬s1i2zo i1s2ka1tu iskat2 is1ka ï¬1s2ka1tu ï¬skat2 ï¬s1ka is1kl ï¬s1kl is1k2r ï¬s1k2r is1kv ï¬s1kv is2lag is1la ï¬s2lag ï¬s1la i1s2lat ï¬1s2lat is2mán is1má ï¬s2mán ï¬s1má 1ism2e. is1me ï¬sm2e. ï¬s1me 1ismek ï¬smek 1isme1re ï¬sme1re 1ismérv is1mé ï¬smérv ï¬s1mé 2is1mo ï¬s1mo 2is1mű ï¬s1mű i2s1ob i1so ï¬2s1ob ï¬1so i2s1o2l ï¬2s1o2l i2s1orc ï¬2s1orc i2s1ord ï¬2s1ord iso2ros2z iso1ro ï¬so2ros2z ï¬so1ro i2s1or1ra ï¬2s1or1ra i2s1or1ró ï¬2s1or1ró is1orv ï¬s1orv i2s1os1ko ï¬2s1os1ko i2s1os2z ï¬2s1os2z i2s1ott ï¬2s1ott is1ó2rá i1só ï¬s1ó2rá ï¬1só i2s1öb i1sö ï¬2s1öb ï¬1sö i2s1ö2c ï¬2s1ö2c is1öl ï¬s1öl is1ön ï¬s1ön isö2r ï¬sö2r i2s1örd ï¬2s1örd is1ö1re ï¬s1ö1re is1ös ï¬s1ös is1ö2v ï¬s1ö2v is1Å‘2r i1sÅ‘ ï¬s1Å‘2r ï¬1sÅ‘ i1s2pek is1pe ï¬1s2pek ï¬s1pe isp2r ï¬sp2r i1s2pur is1pu ï¬1s2pur ï¬s1pu 2isso2n. is1so ï¬sso2n. ï¬s1so is1s2p ï¬s1s2p is1s1ta ï¬s1s1ta is1s1tá ï¬s1s1tá issz1e2res is2s2z is1s1ze issze1re ï¬ssz1e2res ï¬s2s2z ï¬s1s1ze ï¬ssze1re is3szig is1s1zi ï¬s3szig ï¬s1s1zi is3szil ï¬s3szil is3s1zí ï¬s3s1zí is3s1zó ï¬s3s1zó is3s1zö ï¬s3s1zö is3s1zÅ‘ ï¬s3s1zÅ‘ is3s1zú ï¬s3s1zú is3s1zű ï¬s3s1zű ista1s is1ta ï¬sta1s ï¬s1ta istas2z2 ï¬stas2z2 1istáp is1tá ï¬stáp ï¬s1tá is2t2e. is1te ï¬s2t2e. ï¬s1te 1istenh ï¬stenh iste2n1o ï¬ste2n1o i1s2til is1ti ï¬1s2til ï¬s1ti is1trez ist1re ï¬s1trez ï¬st1re is1t1ré ï¬s1t1ré is1t1ro ï¬s1t1ro 1istv ï¬stv i2s1ud i1su ï¬2s1ud ï¬1su i2s1ujj ï¬2s1ujj isu2t ï¬su2t is1u1ta ï¬s1u1ta is1u1tá ï¬s1u1tá i2s1új i1sú ï¬2s1új ï¬1sú i2s1üg i1sü ï¬2s1üg ï¬1sü i2s1üst ï¬2s1üst i2s1ü2tÅ‘t isü1tÅ‘ ï¬2s1ü2tÅ‘t ï¬sü1tÅ‘ i2s1üz ï¬2s1üz isva2d1áss is1va isva1dá ï¬sva2d1áss ï¬s1va ï¬sva1dá i1svin is1vi ï¬1svin ï¬s1vi isvíz1 is1ví ï¬svíz1 ï¬s1ví isza2k1o is2z i1s1za ï¬sza2k1o ï¬s2z ï¬1s1za i2sza2p1á2 ï¬2sza2p1á2 isza2p1e ï¬sza2p1e is3zá1rá i1s1zá ï¬s3zá1rá ï¬1s1zá isz1ár1k2 ï¬sz1ár1k2 is3zárl ï¬s3zárl is3zá1rú ï¬s3zá1rú isz1e2g2y i1s1ze ï¬sz1e2g2y ï¬1s1ze i2sz1elv ï¬2sz1elv is3ze1ne ï¬s3ze1ne isz1esem isze1se ï¬sz1esem ï¬sze1se i2széj i1s1zé ï¬2széj ï¬1s1zé i2szi1mi i1s1zi ï¬2szi1mi ï¬1s1zi i2sz1ing ï¬2sz1ing isz1isk ï¬sz1isk isz1ist2 ï¬sz1ist2 isz1kl ï¬sz1kl isz2k1ö2v isz1kö ï¬sz2k1ö2v ï¬sz1kö isz2k1ú ï¬sz2k1ú isz1öl i1s1zö ï¬sz1öl ï¬1s1zö isz1ös ï¬sz1ös isz3s ï¬sz3s iszt1an2y isz1ta ï¬szt1an2y ï¬sz1ta isz2ta1ti ï¬sz2ta1ti isz2t1á2ras isz1tá isztá1ra ï¬sz2t1á2ras ï¬sz1tá ï¬sztá1ra isz2t1árb ï¬sz2t1árb isz2tárt2 ï¬sz2tárt2 isz2t1ékn isz1té ï¬sz2t1ékn ï¬sz1té isz2t1é2r. ï¬sz2t1é2r. isz2t1ill isz1ti ï¬sz2t1ill ï¬sz1ti iszt1i2na1i iszti1na ï¬szt1i2na1i ï¬szti1na isz2t1ö2l isz1tö ï¬sz2t1ö2l ï¬sz1tö isz2t1Å‘2r. isz1tÅ‘ ï¬sz2t1Å‘2r. ï¬sz1tÅ‘ isz2tüz isz1tü ï¬sz2tüz ï¬sz1tü i2sz1ü2g i1s1zü ï¬2sz1ü2g ï¬1s1zü i2szüt ï¬2szüt i2s3zűrödn i1s1zű iszű1rö ï¬2s3zűrödn ï¬1s1zű ï¬szű1rö it1a2cé i1ta ï¬t1a2cé ita1d2 i2t1a2dó ï¬2t1a2dó ita1g2r ï¬ta1g2r it1a1gya itag2y ï¬t1a1gya ï¬tag2y i2t1akk ï¬2t1akk i2t1akn ï¬2t1akn 1i2ta2l. ï¬2ta2l. ita2lad ita1la ï¬ta2lad ita2la1u ï¬ta2la1u ita2l1á2rú ita1lá ï¬ta2l1á2rú ï¬ta1lá i2talb ï¬2talb ita2l1el ita1le ï¬ta2l1el ï¬ta1le ita1lé2 ï¬ta1lé2 i2talh ï¬2talh itali2n ita1li ï¬tali2n ï¬ta1li ita2li1na ï¬ta2li1na i2talj i2talk ï¬2talk it1al1lo ï¬t1al1lo 1i2talm ï¬2talm 1i2taln ï¬2taln i2ta1lo ï¬2ta1lo ita2l1ó2 ï¬ta2l1ó2 1i2talr ï¬2talr i2talt2 ï¬2talt2 i2ta1lu ï¬2ta1lu it1a1nó ï¬t1a1nó it1ant ï¬t1ant i2t1a1ra ï¬2t1a1ra i2t1a1u ï¬2t1a1u it1ác2s. i1tá itác2s ï¬t1ác2s. ï¬tác2s i2t1á2g. ï¬2t1á2g. it1á2ga ï¬t1á2ga itá1na2 ï¬tá1na2 itá2n1at ï¬tá2n1at itá2rak itá1ra i2t1á2ram ï¬2t1á2ram it1á2ras ï¬t1á2ras it1á2rat ï¬t1á2rat itá2rár itá1rá ï¬tá2rár ï¬tá1rá itá2rát ï¬tá2rát i2t1á2ri1a itá1ri ï¬2t1á2ri1a ï¬tá1ri itá2ri2g ï¬tá2ri2g itá2ris ï¬tá2ris itá1ró2 ï¬tá1ró2 itá2r1ór ï¬tá2r1ór itá2ruk itá1ru ï¬tá2ruk ï¬tá1ru itá2rú ï¬tá2rú itáskés2z1 itás1ké ï¬táskés2z1 ï¬tás1ké itá2s3z ï¬tá2s3z itá2tal itá1ta ï¬tá2tal it1átf ï¬t1átf it1átff ï¬t1átff it1átï¬ ï¬t1átï¬ it1átfl ï¬t1átfl it1bl ï¬t1bl it1br ï¬t1br it1dr ï¬t1dr ite2l1a i1te ï¬te2l1a ï¬1te ite2l1á ï¬te2l1á ite2leg ite1le ï¬te2leg ï¬te1le i2telemz ï¬2telemz ite2leng ï¬te2leng ite2le1sé ï¬te2le1sé ite2lex ï¬te2lex ite2lél ite1lé ï¬te2lél ï¬te1lé ite2l1é2r. ï¬te2l1é2r. ite2linj ite1li ï¬te2linj ï¬te1li it1el1já ï¬t1el1já i2t1ellen itel1le ï¬2t1ellen ï¬tel1le it2elmél2y it1elmél itel1mé ï¬t2elmél2y ï¬t1elmél ï¬tel1mé ite2lo ï¬te2lo ite2lÅ‘z ite1lÅ‘ ï¬te2lÅ‘z ï¬te1lÅ‘ i2t1e2mel ite1me ï¬2t1e2mel ï¬te1me i2t1eml ï¬2t1eml i2t1e2p ï¬2t1e2p 2iter ï¬ter i2t1e2rez ite1re ï¬2t1e2rez ï¬te1re i2t1e2rÅ‘ ï¬2t1e2rÅ‘ i2t1e2se1te ite1se ï¬2t1e2se1te ï¬te1se it1ezr ï¬t1ezr ité2g i1té ï¬té2g i2t1é1ge ï¬2t1é1ge it1é2le ï¬t1é2le it1élm ï¬t1élm i2t1é2ret ité1re ï¬2t1é2ret ï¬té1re i2t1érz ï¬2t1érz ité2tek ité1te ï¬té2tek ï¬té1te i2t1étt ï¬2t1étt it1f8l it1fl ï¬t1fl it1fr ï¬t1fr it1gl ï¬t1gl it1gn ï¬t1gn it1gr ï¬t1gr i2t1id i1ti ï¬2t1id iti2g ï¬ti2g itigaz1 i2t1i2ga ï¬tigaz1 ï¬2t1i2ga i2t1i1gé ï¬2t1i1gé it1i2ko ï¬t1i2ko it1ikr ï¬t1ikr itikus1s iti1ku ï¬tikus1s ï¬ti1ku it1ill ï¬t1ill it1imp ï¬t1imp i2t1ind ï¬2t1ind i2t1inf ï¬2t1inf i2t1inff ï¬2t1inff i2t1inï¬ ï¬2t1inï¬ i2t1infl ï¬2t1infl it1i2pa ï¬t1i2pa i2t1i1rá ï¬2t1i1rá i2t1i1ro ï¬2t1i1ro it1i1ró ï¬t1i1ró it1isk ï¬t1isk i2t1ism ï¬2t1ism it1i1s1za itis2z ï¬t1i1s1za ï¬tis2z it1i2s1zo ï¬t1i2s1zo i2t1íg i1tí ï¬2t1íg ï¬1tí i2t1íz ï¬2t1íz it1kl ï¬t1kl itkos1s it1ko ï¬tkos1s ï¬t1ko it1kr ï¬t1kr ito1g2r i1to ï¬to1g2r ito2k1aj ito1ka ï¬to2k1aj ï¬to1ka ito2kak ï¬to2kak ito2k1ol ito1ko ï¬to2k1ol ï¬to1ko ito2n1á2 ï¬to2n1á2 itop2la ï¬top2la ito2r1as ito1ra ï¬to2r1as ï¬to1ra ito2rál ito1rá ï¬to2rál ï¬to1rá ito2ril ito1ri ï¬to2ril ï¬to1ri 2itos2z itosz2f ï¬tosz2f itosz2ff ï¬tosz2ff itosz2ï¬ ï¬tosz2ï¬ ito1sz2fl ï¬to1sz2fl i2t1ov ï¬2t1ov itó1a2 i1tó ï¬tó1a2 ï¬1tó itó1f2 ï¬tó1f2 itó1ff ï¬tó1ff itó1ï¬ ï¬tó1ï¬ itó1fl ï¬tó1fl 1i2tókán itó1ká ï¬2tókán ï¬tó1ká i2t1ó2né ï¬2t1ó2né i2t1ónn ï¬2t1ónn i2t1ónt ï¬2t1ónt itó1p2 ï¬tó1p2 it1ó1rá ï¬t1ó1rá itós2 ï¬tós2 itó1sp ï¬tó1sp itó1st ï¬tó1st it1önt i1tö ï¬t1önt i2t1ös ï¬2t1ös i2t1Å‘rl i1tÅ‘ ï¬2t1Å‘rl it1pl ï¬t1pl it1pr ï¬t1pr it1sp ï¬t1sp 1ittad2 it1ta ï¬ttad2 ï¬t1ta itta2m ï¬tta2m itt1a1mo ï¬tt1a1mo itta2n1á2s itta1ná ï¬tta2n1á2s ï¬tta1ná itta2n1é ï¬tta2n1é itta2n1ó2 ï¬tta2n1ó2 2it1te ï¬t1te it2t1eg ï¬t2t1eg it2t1i2na it1ti ï¬t2t1i2na ï¬t1ti it2t1ing ï¬t2t1ing it1t1ra ï¬t1t1ra it1t1ró ï¬t1t1ró 1ittuk it1tu ï¬ttuk ï¬t1tu 1ittun ï¬ttun it5ty1i it2t2y ï¬t5ty1i ï¬t2t2y i2t1ug i1tu ï¬2t1ug i2t1und ï¬2t1und itu2n1i ï¬tu2n1i itu2ral itu1ra ï¬tu2ral ï¬tu1ra i2t1u2rán itu1rá ï¬2t1u2rán ï¬tu1rá it1új i1tú ï¬t1új ï¬1tú i2t1üg i1tü ï¬2t1üg ï¬1tü it1üld ï¬t1üld i2t1üst ï¬2t1üst i2t1üt ï¬2t1üt i1t2zé ï¬1t2zé i1t2zi ï¬1t2zi i1u iu2ga ï¬u2ga iu2go ï¬u2go i2u1li ï¬2u1li iu2mab iu1ma ï¬u2mab ï¬u1ma iu2mac ï¬u2mac iu2m1ad ï¬u2m1ad iu2maf ï¬u2maf iu2maff ï¬u2maff iu2maï¬ ï¬u2maï¬ iu2mafl ï¬u2mafl iu2m1ag ï¬u2m1ag iu2mal ï¬u2mal iu2m1am ï¬u2m1am iu2m1a2n ï¬u2m1a2n iu2m1a2r ï¬u2m1a2r iu2m1as ï¬u2m1as iu2m1a2t ï¬u2m1a2t iu2m1av ï¬u2m1av iu2maz ï¬u2maz iu2m1á2l iu1má ï¬u2m1á2l ï¬u1má iu2me2g iu1me ï¬u2me2g ï¬u1me iu2m1el ï¬u2m1el iu2m1en ï¬u2m1en iu2mer ï¬u2mer iu2m1es ï¬u2m1es iu2mez ï¬u2mez iu2mél iu1mé ï¬u2mél ï¬u1mé iu2m1é1ré ï¬u2m1é1ré iu2m1i2d iu1mi ï¬u2m1i2d ium1ill ï¬um1ill iu2m1im ï¬u2m1im ium1inj ï¬um1inj iu2m1i2p ï¬u2m1i2p iu2m1is ï¬u2m1is iu2m1iz ï¬u2m1iz iu2mí ï¬u2mí iu2mol iu1mo ï¬u2mol ï¬u1mo iu2m1or ï¬u2m1or iu2m1ó2 ï¬u2m1ó2 iu2mö ï¬u2mö iu2mÅ‘ ï¬u2mÅ‘ ium1p2 ï¬um1p2 iu2mü ï¬u2mü iu2na ï¬u2na iu2no ï¬u2no iu2ra ï¬u2ra iu2rá ï¬u2rá iu2ru ï¬u2ru i2u1se ï¬2u1se ius3s1ze ius2s2z ï¬us3s1ze ï¬us2s2z iu2ta ï¬u2ta iu2tó ï¬u2tó iu2tu ï¬u2tu iu2z2s ï¬u2z2s i1ú i2ú1bá ï¬2ú1bá i2ú1be ï¬2ú1be i2ú1bé ï¬2ú1bé i2ú1bi ï¬2ú1bi i2ú1bo ï¬2ú1bo i2ú1bö ï¬2ú1bö i2ú1br ï¬2ú1br i2ú1ci ï¬2ú1ci i2ú1cí ï¬2ú1cí i2ú1dá ï¬2ú1dá i2ú1de ï¬2ú1de i2ú1do ï¬2ú1do i2úd2z ï¬2úd2z i2úél iú1é ï¬2úél ï¬Ãº1é iú1fr ï¬Ãº1fr i2ú1ha ï¬2ú1ha i2ú1há ï¬2ú1há i2ú1he ï¬2ú1he i2ú1hi ï¬2ú1hi i2ú1hö ï¬2ú1hö i2ú1hÅ‘ ï¬2ú1hÅ‘ i2ú1hu ï¬2ú1hu i2ú1hú ï¬2ú1hú i2úif iú1i ï¬2úif ï¬Ãº1i i2úiff ï¬2úiff i2úiï¬ ï¬2úiï¬ i2úifl ï¬2úifl i2ú1je ï¬2ú1je iú2jí ï¬Ãº2jí i2ú1jó ï¬2ú1jó i2ú1ke ï¬2ú1ke i2ú1kí ï¬2ú1kí i2ú1kl ï¬2ú1kl i2ú1kó ï¬2ú1kó i2ú1kö ï¬2ú1kö i2ú1ku ï¬2ú1ku i2ú1me ï¬2ú1me i2ú1mó ï¬2ú1mó i2ú1mu ï¬2ú1mu i2ú1mű ï¬2ú1mű i2ú1ne ï¬2ú1ne i2ú1né ï¬2ú1né i2ú1nö ï¬2ú1nö i2ú1re ï¬2ú1re iú2ri ï¬Ãº2ri iú2ro ï¬Ãº2ro i2ú1ru ï¬2ú1ru i2ú1se ï¬2ú1se i2ú1so ï¬2ú1so i2ú1sp ï¬2ú1sp i2ú1ta ï¬2ú1ta i2ú1tá ï¬2ú1tá i2ú1te ï¬2ú1te iú2té ï¬Ãº2té i2ú1tí ï¬2ú1tí i2ú1tö ï¬2ú1tö i2ú1tú ï¬2ú1tú i2ú1ve ï¬2ú1ve i2ú1vé ï¬2ú1vé i2ú1vi ï¬2ú1vi i2ú1vo ï¬2ú1vo i2ú1ze ï¬2ú1ze i1ü ï¬1ü iü2c2s ï¬Ã¼2c2s iü2ge ï¬Ã¼2ge iü2g2y ï¬Ã¼2g2y iü2le ï¬Ã¼2le iü2lé ï¬Ã¼2lé iü2li ï¬Ã¼2li iü2lö ï¬Ã¼2lö iü2lÅ‘ ï¬Ã¼2lÅ‘ iü2lü ï¬Ã¼2lü iü2re ï¬Ã¼2re iü2rí ï¬Ã¼2rí iü2rü ï¬Ã¼2rü iü2te ï¬Ã¼2te iü2té ï¬Ã¼2té iü2ti ï¬Ã¼2ti iü2tö ï¬Ã¼2tö iü2tÅ‘ ï¬Ã¼2tÅ‘ iü2tü ï¬Ã¼2tü iü2ve ï¬Ã¼2ve iü2vö ï¬Ã¼2vö iü2ze ï¬Ã¼2ze i1ű ï¬1ű iű2ze ï¬Å±2ze iű2zé ï¬Å±2zé iű2zÅ‘ ï¬Å±2zÅ‘ iv2a2csal i1va ivac2s iva1c1sa ï¬v2a2csal ï¬1va ï¬vac2s ï¬va1c1sa iva2c1s1e ï¬va2c1s1e 1i2va1dé ï¬2va1dé iva2r1a1i iva1ra ï¬va2r1a1i ï¬va1ra iv2a2raj ï¬v2a2raj iva2re ï¬va2re iva2rin iva1ri ï¬va2rin ï¬va1ri iva2rol iva1ro ï¬va2rol ï¬va1ro iva2ró ï¬va2ró ivar1s2 ï¬var1s2 iv2a2t1a2n iva1ta ï¬v2a2t1a2n ï¬va1ta iva2t1e2 ï¬va2t1e2 iv2a2tin iva1ti ï¬v2a2tin ï¬va1ti iva2tol iva1to ï¬va2tol ï¬va1to iva2t1ó2 ï¬va2t1ó2 iva2t1ö ï¬va2t1ö 1i2vá2s. i1vá ï¬2vá2s. ï¬1vá 1i2vásb ï¬2vásb 1i2vá1sé ï¬2vá1sé 1i2vásn ï¬2vásn 1i2vásr ï¬2vásr 1i2váss ï¬2váss i2v2e. i1ve ï¬2v2e. ï¬1ve iví2z1e2 i1ví ï¬ví2z1e2 ï¬1ví 1ivot i1vo ï¬vot ï¬1vo ivókés2z1 i1vó iv2ókés ivó1ké ï¬vókés2z1 ï¬1vó ï¬v2ókés ï¬vó1ké ivós2 ï¬vós2 ivÅ‘1é2 i1vÅ‘ ï¬vÅ‘1é2 ï¬1vÅ‘ iv2ré ï¬v2ré i2x1ab i1xa ï¬2x1ab ï¬1xa i2x1ad ï¬2x1ad i2x1an ï¬2x1an i2x1ar ï¬2x1ar ix1as ï¬x1as i2x1ág i1xá ï¬2x1ág ix1bl ï¬x1bl i2x1ef i1xe ï¬2x1ef i2x1eff ï¬2x1eff i2x1eï¬ ï¬2x1eï¬ i2x1efl ï¬2x1efl i2x1eg ï¬2x1eg i2x1ex ï¬2x1ex i2x1ép i1xé ï¬2x1ép ï¬1xé ix1fr ï¬x1fr i2x1im i1xi ï¬2x1im ï¬1xi i2x1in ï¬2x1in i2x1i1o ï¬2x1i1o i2x1ir ï¬2x1ir ix1ist ï¬x1ist ixi2t ï¬xi2t i2x1ob i1xo ï¬2x1ob ï¬1xo i2x1op ï¬2x1op i2x1os2z ï¬2x1os2z ix1öd i1xö ï¬x1öd ix1ös ï¬x1ös ix1Å‘r i1xÅ‘ ï¬x1Å‘r ï¬1xÅ‘ ix1Å‘s ï¬x1Å‘s ix1pl ï¬x1pl ix1pr ï¬x1pr i2x1új i1xú ï¬2x1új ï¬1xú i2x1ül i1xü ï¬2x1ül ï¬1xü iz1akn i1za ï¬z1akn ï¬1za izala2g1 iza1la ï¬zala2g1 ï¬za1la iz1alk ï¬z1alk izas2 ï¬zas2 iza1sp ï¬za1sp i2z1árn2y i1zá ï¬2z1árn2y ï¬1zá iz1bl ï¬z1bl ize2d1á2 i1ze ï¬ze2d1á2 ï¬1ze ize2d1ék ize1dé ï¬ze2d1ék ï¬ze1dé iz1eg2y ï¬z1eg2y i2z1e2lem ize1le ï¬2z1e2lem ï¬ze1le izele2tel izele1te ï¬zele2tel ï¬zele1te i2z1e2lér ize1lé ï¬2z1e2lér ï¬ze1lé i2z1e2lÅ‘1í ize1lÅ‘ ï¬2z1e2lÅ‘1í ï¬ze1lÅ‘ i2z1ember izem1be ï¬2z1ember ï¬zem1be izene2g ize1ne ï¬zene2g ï¬ze1ne izen3n ï¬zen3n ize2s1á2 ï¬ze2s1á2 i2z1ese1mé ize1se ï¬2z1ese1mé ï¬ze1se i2z1ev ï¬2z1ev i2zéd i1zé ï¬2zéd ï¬1zé i2z1ég ï¬2z1ég 1i2zéj ï¬2zéj 1i2zék ï¬2zék i2zél ï¬2zél 1i2zém ï¬2zém i2z1é2p ï¬2z1é2p 1i2zé1sí ï¬2zé1sí iz1f8l iz1fl ï¬z1fl 1izgal iz1ga ï¬zgal ï¬z1ga 1izgatot izga1to ï¬zgatot ï¬zga1to i2z1i1ga i1zi ï¬2z1i1ga ï¬1zi i2z1i1gé ï¬2z1i1gé iz1inf ï¬z1inf iz1inff ï¬z1inff iz1inï¬ ï¬z1inï¬ iz1infl ï¬z1infl iz1int ï¬z1int i2z1i1ro ï¬2z1i1ro iz1isk ï¬z1isk iz1ism ï¬z1ism izi2t1a2 ï¬zi2t1a2 izi2t1u2r izi1tu ï¬zi2t1u2r ï¬zi1tu 1izmok iz1mo ï¬zmok ï¬z1mo 1izmuk iz1mu ï¬zmuk izmus1s2 ï¬zmus1s2 1iz1mú ï¬z1mú iz1okt i1zo ï¬z1okt ï¬1zo 1i2zo1lá ï¬2zo1lá izo2m1a ï¬zo2m1a izo2mál izo1má ï¬zo2mál ï¬zo1má 1i2zom1b2 ï¬2zom1b2 1i2zo1mé ï¬2zo1mé 1i2zomf ï¬2zomf 1i2zomff ï¬2zomff 1izomï¬ ï¬zomï¬ 1izom1fl ï¬zom1fl 1i2zomm ï¬2zomm 1i2zomn ï¬2zomn 1i2zomr ï¬2zomr 1i2zom1s ï¬2zom1s 1i2zomt ï¬2zomt 1i2zomz ï¬2zomz izo1p2 ï¬zo1p2 i2zos ï¬2zos 1i2zo1tó ï¬2zo1tó izó2d1a2 i1zó ï¬zó2d1a2 ï¬1zó iz1ó1rá ï¬z1ó1rá iz1pl ï¬z1pl iz1pr ï¬z1pr i2zs1ad iz2s i1z1sa ï¬2zs1ad ï¬z2s ï¬1z1sa izsa2ik izsa1i ï¬zsa2ik ï¬zsa1i i2zsakn ï¬2zsakn i2zs1all ï¬2zs1all izs1a1ra ï¬zs1a1ra izsa3u2tók iz2saut izsa1u izsa2u1tó ï¬zsa3u2tók ï¬z2saut ï¬zsa1u ï¬zsa2u1tó i2z4s1ág i1z1sá ï¬2z4s1ág ï¬1z1sá i2zs1ál ï¬2zs1ál izse2be2le i1z1se izse1be ï¬zse2be2le ï¬1z1se ï¬zse1be i2zsec ï¬2zsec i2zs1em1be ï¬2zs1em1be i2zsev ï¬2zsev izsé2t i1z1sé ï¬zsé2t ï¬1z1sé i2zs1é1te ï¬2zs1é1te i2zsil i1z1si ï¬2zsil ï¬1z1si i2z2s1imp ï¬2z2s1imp i2zs1ist2 ï¬2zs1ist2 i2zsi1ta ï¬2zsi1ta i2zsiz ï¬2zsiz i2z3sor i1z1so ï¬2z3sor ï¬1z1so i2z1s1Å‘ ï¬2z1s1Å‘ izs1s ï¬zs1s iz3st2r ï¬z3st2r i2zs1ül i1z1sü ï¬2zs1ül ï¬1z1sü iz3s1ze izs2z ï¬z3s1ze ï¬zs2z iztos1s iz1to ï¬ztos1s ï¬z1to iz1udv i1zu ï¬z1udv ï¬1zu izu1ra1 ï¬zu1ra1 iz1ú2t i1zú ï¬z1ú2t ï¬1zú i2z1ü2g i1zü ï¬2z1ü2g ï¬1zü i2z1üt ï¬2z1üt i2z1ü2z ï¬2z1ü2z 1iz1zí ï¬z1zí 1izzot iz1zo ï¬zzot ï¬z1zo 2í. í1a í1á íba2l1 í1ba í2bis í1bi íbo2r1as í1bo íbo1ra ícius1s í1ci íci1u íd1a2c í1da íd1a2d íd1a2l ídala2g1 ída1la íd1a2n íd1a2v íd1a2z íd1ág í1dá íd1ál íd1á2r íd1át íd1bl íd1e2g í1de íd1e2l íd1e2m í2d1é2g í1dé í2d1él í2d1ép í2d1é2r. í2d1érz ídi2g í1di í2d1i1ga í2d1i1gé í2d1in í2d1i2r íd1ív í1dí í2d1ol í1do í2d1om í2d1os íd1ös í1dö íd1Å‘2r í1dÅ‘ íd1pr íd1st í2d1ud í1du í2d1ug íd1új í1dú íd1üg í1dü íd1ün íd1üz í1d3zá íd2z íd3z2s í1e í1é íé2le í2g1a2g í1ga íg1e2p í1ge íge2s í2g2ér í1gé í2g1op í1go íg1tr í1gy1a íg2y í1gyá2 í1i íi2ro í1í í2j1a2dá í1ja í2j1a2dó í2j1a2j í2j1akc í2j1a2l íj1an2y í2j1a2r í2j1a2u í2j1á2c í1já í2j1á2g í2j1á1rá í2j1á1re2 í2j1árt í2j1á1ru 1í2jás íjá2s1ze2 íjás2z íj1ász1ka íjász1k2 í2j1á1ta í2j1á2te í2j1áth í2j1átl íjá2tos íjá1to í2j1átt í2j1á1tu í2j1átv í2j1á2z íj1e2g í1je íj1e2l íje1l2i íj1e2m íj1en íj1e2r íj1e2s íj1ép í1jé íjé2r í2j1é1re í2j1érv íj1fr í2j1i2d í1ji í2j1im í2j1int í2j1ir í2j1i2rá2 íj1íg í1jí íj1ín íj1kr í2j1o2d í1jo í2j1ok í2j1ol í2j1os í2j1ot íj1ön í1jö íj1ös íj1ö2v íj1öz íj1pl íj1pr íj1sk íj1sp íj1st2 í2j1ug í1ju í2j1u2t í2j1út í1jú íj1üg í1jü íj1ü2t í2k1abl í1ka í2k1a2c í2k1a2g í2k1a2l í2k1an ík1ar íka2s ík1as2z ík1a2v í2k1áb í1ká í2k1ág ík1ál í2k1á2r í2k1eg í1ke í2k1e2l ík1em í2k1es ík1ev í2k1é2k í1ké í2k1é2r. í2k1érb í2k1é2rÅ‘ ík1fr ík1gr í2k1i2d í1ki í2k1ing í2k1i2r ík1ín í1kí ík1ír ík1k2r í1k2lu ík1oll í1ko í2k1op í2k1orn í2k1orr í2k1or1s2 íkö2l í1kö í2k1ö2v ík1pl ík1pr ík1sp ík1s2z2 í2k1ug í1ku í2ku1ni í2k1u2r í2k1u2t í2k1ú2t í1kú ík1ü2v í1kü íl1aj í1la íl1a2k íl1a2l í2l1á2g í1lá ílá1si2 ílá2s1ik ílás3s ílá2s2z í2l1át íl1bl íl1br íl1e2g í1le í2l1érz í1lé íli2as í1li íli1a í2l1i2m í2l1i2r í2l1is íl1í2r í1lí íl1í2v íl1kr íl1ös í1lö íl1ö2z íl1st íl1tá2 íl2t1ár1k2 íl2t1á1ro íl2t1árt íl2t1e íl2t1é2 í2l1u2r í1lu ílu2sab ílu1sa ílus3s ílu2s3z íma2n í1ma íma1p í2m1á2l í1má ímá2ris ímá1ri ímás1s ím1bl ím1b2r ím1dr í2m1e2g í1me í2m1e2l1í2 í2m1elm íme2r1a2 íme2r1á íme2reg íme1re íme2ril íme1ri ím1e2rÅ‘ í2m1esem íme1se í2m1e2v í2m1é2het í1mé ímé1he í2m1é2k í2m1ép í2m1é2r. í2m1é2ré í2m1é2r2Å‘. ímé1rÅ‘ í2m1é2rÅ‘1i í2m1érr í2m1ér1te í2m1ér1té í2m1i2d í1mi ími2g í2m1i1ga í2m1i1gé í2m1ill í2m1ind í2m1inf í2m1inff í2m1i1ra í2m1is í2m1i2v ím1ír í1mí ím1kr ím1o2k1 í1mo ím1ol ím1on ím1o2p ím1os ím1ök í1mö ím1ö2l ím1ös ím1öt ím1Å‘2r í1mÅ‘ ím1p2r ím1sp ím1s2t2 ím1u2r í1mu ím1u2t í2m1üg í1mü í2m1ünn í2m1üt í2n1ab í1na ín1a2cé ína2d ín1a1da ín1a1dá ín1a1do í2n1a2g í2n1a2j í2n1a1ka í2n1akk ín1a2la ín1alj ín1alk í1n1a1na ín1a2n2y í2n1a2p í2n1a2rá í2n1arc ín1ass ín1atl ín1att í2n1a1u í2n1az í2n1ábr í1ná í2n1á2c í2n1ág í2nálhaj ínál1ha í2n1álm í2n1á2p ín1á2t1a2 ín1átc ín1á2t1e2 ín1átf ín1átff ín1áth ín1átl ín1átm ín1átt ín1átv í2n1á2z ín1bl ín1br ín1d2r í2n1ef í1ne í2n1eff í2n1e2g í2n1e2k2e. íne1ke í2n1elc í2n1e2le í2n1elh í2n1elj í2n1elk í2n1ell í2n1elm í2n1eln2y í2n1e2lo í2n1e2l1ö2 í2n1e2lÅ‘h íne1lÅ‘ í2n1elr í2n1el1tá í2n1el1to í2n1el1vá í2n1e2mel íne1me í2n1eml í2n1e2mu íne2n í2n1e1ne í2nesd í2n1e2s2z í2n1e2vé ín1ég í1né íné2l í2n1é1le ín1é1lé ín1é1lÅ‘ ín1élt í2n1é2p í2n1é2r. í2n1é1ri í2n1érl í2n1érm í2n1é2rü íné2s1za ínés2z íné2szer íné1s1ze íné2szint íné1s1zi íné2s1zo í2n1é1te í2n1é2ven íné1ve ín1f2r ín1g2r íni2g í1ni í2n1i1ga í2n1i1gé í2n1i2ko í2n1ill í2n1ind í2n1inf í2n1inff í2n1ing í2n1int 1í2ni1o í2n1i2rá í2n1i1ro í2n1ism í2n1i2z ín1íz í1ní ín1k2l ín1k2r ín1k2v ín3nyú ín2n2y í2n1ob í1no í2n1ol í2n1op í2n1or í2n1os2z ín1ó2l í1nó ín1ön í1nö ín1ör ín1ös ín1öt ín1ö2v ín1ö2z ín1pl ín1pr ín1ps ín1s2k ínso2k1 ín1so ín1s2p ín1s2t2 ín1s2z2 ín1t2r ín1ug í1nu ín1u2t ín1új í1nú í2n1üd í1nü í2n1ü2g í2n1ült í2n1ü2t í2n1ü2v íny1e2c ín2y í1nye íny1e2g íny1el íny1e2r íny1ing í1nyi í1o í1ó íó2vo í1ö í1Å‘ í2p1a2g í1pa í2p1a2n í2p1álc í1pá í2p1él í1pé ípés3s í2p1i2z í1pi íp3ro í2p1uj í1pu ípu2sa2n ípu1sa ípus3s2 ípus3z ír1a2dó í1ra ír1akc ír1akn ír1akt ír1a2la ír1alj í2r1alk íra1pl íra1pr ír1arc í2r1a2u í2r1ábr í1rá í2r1á2g í2r1á2p ír1á2r. ír1árak írá1ra í2r1á2ro í2r1á2ru í2r1á2sás írá1sá í2rá2se íráskés2z1 írás1ké írás3s ír1á2t1a ír1á2t1e2 í2r1áth ír1áts ír1átv ír1á1za ír1bl ír1br ír1d2r ír1e2dé í1re í2r1e2g í2r1e2kés íre1ké í2r1e2l íre1l1a í2r1ember írem1be ír1eml ír1e1mu íre2n ír1e1ne í2r1e2r í2r1esem íre1se í2r1e2sÅ‘ í2r1eszk íres2z í2r1ev í2r1é2g í1ré í2r1éj í2r1é2k í2r1é2l í2r1ép í2r1é2ri í2r1és í2r1é2te í2r1évh ír1f2r ír1gl ír1g2r íri2g í1ri í2r1i1ga ír1i1ko í2r1ill í2r1im ír1ind í2r1inf í2r1inff í2r1inj ír1ins í2r1int í2r1i2p ír1i1ra í2ris íri2s1z1á íris2z í2r1i2z ír1ín í1rí ír1ír ír1ív ír1í2z ír1k2l ír1k2r ír1kv 1írnok ír1no í2r1o2b í1ro 1írog í2r1okl í2r1okm íro2l í2r1o1la í2r1old í2r1olv í2r1o2r í2r1os2z í2r1o2v í2r1o2x író1á2 í1ró í2ródj í2ró1do í2ró1dó í2ródt í2ró1í író1p2 író1s2p író1s2z írót2 író1tr ír1ön í1rö ír1ör í2r1ös í2r1ö2z í2r1Å‘2r í1rÅ‘ ír1Å‘2s ír1p2l ír1p2r ír1sh ír1s2k ír1s2p ír1s2r ír1s2t írs2z2 írszt2 ír2t1ag ír1ta írt1alap írta1la írt1é2te ír1té írt1ha2 ír1tran írt1ra ír1t1ro ír2t1u2r ír1tu íru2n í1ru í2r1und í2r1u1ni í2r1u2r íru2s1e2 írus3s2 í2r1u2t í2r1új í1rú í2r1úr í2r1ú2s í2r1útj í2r1útn í2r1ú2to2 í2r1útr í2r1útt í2r1ü2g í1rü írü2l ír1ür ír1ü2v í2r1üz ír1ű2z í1rű ís2po ís2tí ísz1aj ís2z í1s1za ísza2k ísza1k1o ísz1a2l ísz1as ísz1at ísz1a1u í2s1z1á2 í2sz1eb í1s1ze í2sze1dé í2sz1e2g í2sz1e2lem ísze1le í2sz1ell í2szeln í2sz1e2lÅ‘ í2sz1elv í2sz1emb í2sz1e2mel ísze1me í2s2z1eml í2sz1er1k2 í2szég í1s1zé í2sz1é2l í2sz1é2p í2sz1érem íszé1re í2sz1ért í2s2z1étk í1s1zi2 í2sz1id í2sz1in í2szír í1s1zí í2sz1ív ísz1k2 í2s1z1o2 í2s1z1ó2 ísz1öl í1s1zö ísz1ön í2s1z1Å‘2 ísz1p2 ísz3s ísz1tr í2s1z1u í2s1z1ú íszü2l í1s1zü í2sz1ü1lé í2s2zünn í2szüt ísz1z íta3u2 í1ta ítá2s1á2g í1tá ítá1sá íté2k1a2l í1té íté1ka íté2k1e2l íté1ke 1í2tél íté2sa2 íté2s1é2g. íté1sé íté2s1é2gé íté2s1égr íté2s1za ítés2z ít2é2s1zá íté2s1zo ítész3s ító1a2 í1tó ító1f ító1ff ítógé2p1é2s ító1gé ítógé1pé ító1p2 ító1sp ító1s1ta ítót2 ító1tr ít2ré ítus3s2 í1tu í1u í1ú í1ü íü2dü í1ű í2v1a2d í1va ív1a2já ív1ajk ív1ajt í2v1a2la í2v1alj í2v1a2na í2v1ang í2v1a2nó í2v1a2n2y ív1arc ív1a2ri í2v1aszt ívas2z í2v1ábr í1vá í2v1á2g í2v1ál ív1á2rad ívá1ra í2v1á2ram í2v1árk í2v1árn í2v1árt í2vá1ru ívás3s ívá2s3z ív1á1ta2 ív1bl ív1dr íve2c í1ve í2v1e2d2z í2v1e2g í2v1ej í2velek íve1le ív1e2lemb ív1e2le1me ív1e2le1mé ív1e2lemr í2velg ív1e2lÅ‘l íve1lÅ‘ í2v1ember ívem1be íve2n í2v1end í2v1e1ne íve2r ív1e1re ív1e1ré ív1e1rÅ‘ í2v1ese1mé íve1se í2v1es2z í2v1e2tet íve1te í2v1é2g í1vé í2v1é2k í2v1é2le í2v1élm í2v1é2lÅ‘ ív1élt í2v1ép í2v1é2r. í2v1ér1d2 í2v1é2ri í2v1érr ív1ér1té í2v1érv í2v1érz í2v1é2te ív1fr í2v1i2d í1vi ívi2g í2v1i1ga ívi2k ív1i1ke í2v1ill í2v1im í2v1in í2v1i2p ív1i1ro ívi2s1el ívi1se ívi2ses ívis1s ív1i1va í2v1i2z ív1kl ív1kr í2v1ol í1vo í2v1op í2v1or í2v1os2z í2v1ox ívó1s2p í1vó í2v1öb í1vö í2v1ö2r í2v1ös ív1öv í2v1ö2z ív1pl ív1pr ívren2de ív1re ív1sk ív1sp ív1st ívs2z2 ív1szk ív1tr í2v1ug í1vu ív1ult í2v1ur í2v1u2t ív1új í1vú ív1út í2v1üg í1vü í2v1ür í2v1üt í2v1ü2v í2v1üz íz1ab í1za íz1a2d íz1a2g íz1aj íz1a2k íz1a2l íza2n íz1ar íz1a2u íz1á2g í1zá íz1ál íz1á2p íz1á2r ízá1r1ó2 ízás1s íz1á2t íz1át1a2d ízá1ta ízá1t1á ízá1t1e2 íz1bl íz1d2r í2z1ef í1ze í2z1eff í2z1e2g í2z1ej í3ze1lá íze2l1el íze1le íze2lö íze2lÅ‘ í2z1emel íze1me í2ze1mé íze2n í2z1e1ne í2z1e2r 1í2ze1sí í2z1e2s2z í2z1e2ti í2z1e1u í2z1e2v í2z1ex í2z1e2z í2z1ég í1zé íz1ékk í2z1é2l í2z1é2p í2z1é2r. í2z1érb í2z1ér1d2 í2z1érel ízé1re í2z1é2re2n í2z1érh í2z1é2r1i í2z1érk í2z1érm í2z1érn í2z1érr í2z1ér1s í2z1ér1te í2z1ér1té í2z1ér1tÅ‘ í2z1érv í2z1érz ízé2sa íz1és2z í2z1é1vi íz1fr íz1gl í2z1icc í1zi ízi2g í2z1i1gé íz1i1ko í2z1ill í2zi1má í2z1i1mi í2z1imp í2z1ind í2z1inf í2z1inff í2z1int ízióé2r ízi1ó ízió1é ízi2óé1ra ízi2ó1to í2z1i2pa í2z1i1ra í2z1i1rá ízi2so ízi2s1za ízis2z ízi2s1zo ízi2s1zó í2z1i2ta í2z1i2vá íz1í2v í1zí íz1íz íz1kl íz1k2r ízo2k í1zo íz1on íz1or íz1os íz1ó2rá í1zó íz1öb í1zö íz1öd íz1ök íz1ö2l íz1öm íz1ön íz1ör íz1ös íz1ö2v íz1öz ízpen1 íz1pe íz1pf íz1pff íz1pl íz1p2r í2z1sa2 íz2s ízs1al ízs1as ízs1a1u í2z4s1ág í1z1sá ízsá2r ízs1á1ro íz3sáv íz3seb í1z1se í2zs1e2l ízse2s í2z1s1e1se í2zs1in í1z1si í2zs1it í1z3sí í2z1so ízs1ok í2z3sor í2z1s1ó2 í2z1sö ízs1s íz3st2r í2z3su í2z1sú íz3s2z íz1t2r í2z1ug í1zu í2z1uj ízu2me2 ízu2m1i í2z1und í2z1u2r í2z1ut íz1úr í1zú íz1ú2t í2z1ü2g í1zü í2zü1le í2z1ür í2z1üs í2z1üt í2z1üv í2z1ü2z í2zű1e í1zű í2zűn 1í2zűr í2zűv 2j. 1ja j1a2cé 2j1a2dag ja1da 2j1a2dal ja2da1tá 2j1a2da1to 2j1adm 2j1a2dom ja1do 2j1a2dot ja2dóh ja1dó ja2dós ja2dót ja2dóv ja2dóz ja2dus ja1du ja1f2r ja2g2a. ja1ga 2j1agg 2j1a2gi 2jakad ja1ka ja2ka1dé ja2k1ál ja1ká ja2k1á2p ja2k1árn 2j1ak1ci ja2k1ec ja1ke ja2k1el ja2k1e2m ja2kes j2ak1é1re ja1ké ja2k1é1ri 2jakf 2jakff ja2k1i2m. j2akim ja1ki j2a2k1iz ja2k1í2r ja1kí jak1k2 2j1ak1ku jako2v ja1ko jak1o1vi ja2kók ja1kó ja2k1ölts ja1kö ja2k1ös 2j1ak1ro jakt2 2j1ak2t. 2j1ak1ti 2j1ak1tu 2j1alg 2j1alk 2j1all 2j1alm jam2be 2jam1bu ja2mes ja1me 2jan2a. ja1na 2j2ana2i ja2nal ja2nat ja2n2e. ja1ne 2j1a2no jan2s1ze jans2z jan2s1zü ja2nya jan2y ja2qu 2j1a2ran ja1ra 2j1a2rá 2j1arc ja2rom ja1ro 2j1a2szás jas2z ja1s1zá 2j1atk 2j1at1ró ja2ur ja1u ja2u1to 2javat ja1va ja2xi ja2zon ja1zo 1já 2j1á2bé 2j1ábr 2j1á2g. 2j1á2g2a. já1ga 2j1á2g1a2d 2j1á2ga1i 2j1á2gak 2j1á2gas 2j1á2gat 2j1á2gaz 2j1á2gá 2j1ágb 2j1ágf 2j1ágff 2j1ágg 2j1á2gi 2j1ágk 2j1ágr 2j1á2g2y jáí2r já1í 2j1áll já2n1e já2nék já1né 2jánl já2po 2j1á2ra1da já1ra 2j1á2ra1i 2j1á2rak 2j1á2ram já2rar já2r1av 2j1á2rán já1rá járás3s járá2s3z 2j1á2rát 2j1á2ráv já1re2 já2r1em já2res já2rér já1ré 2j1á2ri2g já1ri já2r1is 2j1ár1ki 2j1ár1ko 2j1árn2y 2j1á2ron já1ro já2r1ot já3ró já2rÅ‘ 2j1ártal jár1ta 2j1ártás jár1tá 2j1á2ruk já1ru já2r1ur 2j1á2rus j1á2rut 2j1árvál jár1vá 2j1árz já2s1ad já1sa já2sal já2sa2n já2s1ág já1sá já2s1á2ra1i jásá1ra já2s1árak já2sás já2s1e2 já2sit já1si já2s1í já2s1ol já1so 2j1á2só já2sö jást2 já2s1ü2 já2sz1al jás2z já1s1za já1s1ze2 já2szis já1s1zi já2s2z1ok1ta já1s1zo jász1ó1i já1s1zó jász1ón jász1ó2r ját1a2d2ó. já1ta já2ta1dó ját1a2dó2k. ját1a2dó2n. ját1a2dót 2j1á2tal já2t1á2 2j1átáz játé2k1e2 já1té 2j1át1fe 2j1át1há 2j1á2ti 2j1á2t1í2r já1tí 2j1át1lé 2j1átm ját1os2z já1to 2j1á2t1ö 2j1át1s1zű játs2z 2j1á2tü 2j1át1vé 2j1át1vi já3z2s jba2l1 j1ba jb2lo jb2ri jb2ró jbű2n1ü2 j1bű j1c3ho jc2h jcsa1pá2 jc2s j1c1sa jcs1s jdo2na2l j1do jdo1na j1d2rá j1d2ro j1d2ru jdúköz1 j1dú jdú1kö 1je jea2d je1a jea2l jea2n je2bé 2j1e2dén je1dé 2j1e2d2z jee2n je1e je1f2r 2jeged je1ge je2gés je1gé je2gés2z1 je2gyeg jeg2y je1gye je2gyel jegy1els jegy1elv 2j1e2gye1sí je2gy1é2k je1gyé je2gy1in je1gyi je2gy1o je2gyÅ‘ je2gyu2 je2gy1ú je2gy1ű2rű je1gyű je1k1ri jek2t1a2 jek2t1á2r jek1tá jek2t1e2l jek1te jek2ter je2la jel1an jel1ap je1lá2 je2l1áb je2lág je2lál je2l1ár je2l1át1 je2láz jel1e2g2y je1le je2l1e2l1e2v jele1le je2l1elk je2l1ell je2l1e2lÅ‘1á jele1lÅ‘ je2l1e2lÅ‘b je2l1els je2l1emel jele1me 2jele1mé je2l1eml 2j1e2lemz je2l1eng je2l1e2r jel1esés jele1sé jel1esik jele1si je2l1es1ni je2l1e2sÅ‘ jel1es1te je2l1es2z je2l1etet jele1te jel1e1vo je2lég je1lé je2l1éj je2lél je2l1ép je2lér1te je2l1i1ge je1li je2lim je2l1inf je2l1inff je2l1ing je2l1int je2l1í2 2j1ellen jel1le je2l1o2 je2l1öv je1lö je2lÅ‘1a je1lÅ‘ 2j1e2lÅ‘1fe je2lÅ‘1í 2j1e2lÅ‘1tu jel1p2 2jel1s1zá jels2z 2jel1s1zo 2j1eltet2t. jel1te 2jeltér jel1té je2lu je2lú 2j1em1ba 2j1ember jem1be 2j1e2mel je1me je2mu je2n1á jen1d2 je2n1e2k2e. je1ne jene1ke je2n1el je2ner j2ene2s je2n1es2z je2n1in je1ni je2n1o je2n1Å‘2re je1nÅ‘ je2n1Å‘s je2n1ü je1p2r 2j1erd je2red je1re je2ror je1ro je2ró 2j1e2rÅ‘ je2s1a je2s1emb je1se 2j1e2setb 2j1e2sett je2s1ér je1sé je2sÅ‘ jest2 je1s2ta je1str je2su je2s1ü2v je1sü je2s3za2c jes2z je1s1za je2t1am je1ta je2tál je1tá jet1ell je1te je2t1em je2t1ék je1té je2t1o je1t1ra je2tun je1tu je2tut jeu2r je1u 2j1e2vÅ‘ jezÅ‘kés2z1 je1zÅ‘ jezÅ‘1ké 1jé 2j1ébr jé2g1a2 jé2g1á2 jégá2r1a2d jégá1ra jé2gec jé1ge jé2ged jé2g1e2k jé2g1el jé2g1em jé2g1erk jé2g1es jé2get jé2gép jé1gé jé2g1é2r. jé2gés jég3g jé1gi2 jé2g1id jé2gi2gé jégi2g jé2gim jé2g1is jé2g1o jé2gó jé2gö 2jé2gÅ‘ jé2g1u2 jé2gú jé1gü2 2j1é2hen jé1he 2j1é2hes 2j1éhs jéke1l jé1ke jé2k1os jé1ko jé2kü 2j1é2le jé2lÅ‘ 2j1élt jé2nad jé1na jé2n1ess jé1ne jé2n1é2g jé1né jé2nil jé1ni jé2no jé2nú jé2pí jé2pü 2j1é2r. 2j1érb 2j1érd jé2reg jé1re 2j1é2re2n 2j1é2ré 2j1érh 2j1é2ri 2j1érk 2j1érl 2j1érm 2j1érn 2j1érr 2j1ér1te 2j1ér1té 2j1ér1tÅ‘ 2j1é2rü 2j1ér2v. 2j1érvá2r. jér1vá 2j1érvá1ri 2j1érvárm 2j1érvá1ro 2j1érvárr 2j1ér1ví 2j1érz jé2tel jé1te 2j1étk 2j1étt 2j1é2v. 2j1évb jé2v2e. jé1ve 2j1é2vek 2j1é2vet jé2vén jé1vé jé2vér jé2vét j1évh j1é2vi j1évk 2j1évn 2j1évr j1évt 2j1é2vü j1évv jfeles1s j1fe jfe1le jf2le jf8l jfle jfl jf2lo jflo jf2ló jfló jfölös1s j1fö jfö1lö jf2ra jf2re jf2ri jf2rí jf2ro jf2rö jfu2na j1fu j1g2le j1g2ló jg2ru jhá2r1e j1há 1ji ji2c3h ji2do j1i2dÅ‘ 2j1i2ga 2j1i2gé ji2je 2j1ikr 2j1ill ji2ma ji2má ji2mi 2j1i2n2a. ji1na ji2náb ji1ná 2j1ind 2j1inf 2j1inff 2j1ing 2j1inj 2j1ins 2j1in1te 2j1in1té ji2on ji1o ji2pa 2j1i2rat ji1ra 2j1i2rá 2j1i2ro 2j1irr 2j1irt 2j1isk 2j1ism 2j1ist 2j1i2ta 2j1i2vá 2j1i2vó ji2zé ji2zo ji1ří 1jí jí2gé jí2rá jí2ró jítókés2z1 jí1tó jít2ókés jító1ké jí2ve jí2vé jí2vó jí2ze jí2zé jí2zü jí2zű j2j1alj j1ja j2j1a2z jjá1s j1já jje2le1sé j1je jje1le jje2le1si jje2lest jje2l1ül jje1lü jj1e2r j2j1im j1ji j2j1iz jj1ív j1jí jj1íz j2j1ol j1jo j2j1os jj1pr jj1üg j1jü jka1pr j1ka jk1ard jka1u2 j2k1e2g j1ke j2k1e2lÅ‘ j2k1e2s j1ké2p1e2ké j1ké jké1pe jki1a2 j1ki jki1á2 j2k1id jki1e2 jk2la jk2lá j1k2li j1k2lo jk1me2 j2k1old j1ko jko2r1á2s jko1rá jko2r1in jko1ri jk1ó1rá j1kó jk1pl jk1pr j1k2ré j1k2ri j1k2rí jk1s2t j2k1u2s j1ku jk1üg j1kü jk2va j1k2vó j2l1abl j1la jl1a2da j2l1a2lap jla1la j2l1all j2l1ar jla2t1e2 j2l1a1zo jlás3s j1lá jl1á2t1a jl1átn jl1bl jl1e2g2y j1le jle1í2 jl1e1lé jl1ell jl1eln jle2t1é2te jle1té jlé2cel j1lé jlé1ce jlé2c3s2 j2l1é2v. jli2k j1li jl1i1ko j2l1ind j2l1inf j2l1inff j2l1int jl1obj j1lo j2l1ol jlo2n1á jlo2ni j2l1ös j1lö jl1pr jl1sp jl1st jl1t2r jme2g j1me jm1o1ká j1mo j2m1old jna2l1e j1na jn2a2lég jna1lé jna2lis jna1li jn1á2rá j1ná jn1á2ru jné1v1a2 j1né jn1ing j1ni jn1st jn1ü2g j1nü 1jo jo1ck jo2g1a2d jo1ga jo2g1a1ka jo2gal jo2g1an jo2g1a2z jo2g1á2c jo1gá jo2g1á2l jo2g1e2 jog3g jo2g1í jo2g1ol jo1go jo2g1or jo2g1os2z jo1gó2 jo2g1óv jo2gö jo2gÅ‘ jo2gur jo1gu jo2gü 2j1o2koz jo1ko 2j1oks 2j1ok1ta jo2laj jo1la jo2lim jo1li jol3l jo1ma2 jo2m1ag jo2m1an jo2mar jo2m1as jo2m1á jo2m1e2 jo2m1é2t jo1mé jo2mév jom1f2 jom1ff jo2mij jo1mi jo2m1ik jo2m1is jo2m1iv jo2m1ol jo1mo jo2m1or jo2mö jo2mÅ‘ jom1p2 jo2mü jo2mű jo1na1 jonc1c jon2c2h jon2cil jon1ci jon2c3s 2j1ond jo2ób jo1ó jo2pá jo2pe jo2r1ing jo1ri 2j1or2r. jo2rü 2j1os1to jo2sü 2j1os2z jo2u1i jo1u jo2uk jo2ul jo2ur jo2ut jo2va 1jó jóa2k jó1a jóá2g jó1á jóá2r jó1bl jó1b2r jó2ce jó2dad jó1da jó2dak jód1al3l jó2d1a2n jóda2t jó2d1a1to jó1de2 jó2del jó2dig jó1di jó2diz j2ó2d1ol jó1do jó1dó2 jó2dór jó2dü jó2d3z jó1f8l jó1fl jó1kl jó1k1ro jó2l1e2s jó1le 2j1ónn jó1p2r jó2rák jó1rá 2j1ó2ri jó2sal jó1sa jó2sas jó2sál jó1sá jós1ár1k2 jó2seg jó1se jó2se2m jó2sén jó1sé jó2si2p jó1si jó2sis jó2s1o2do jó1so jó2sö jós3s jós1üld j2ósül jó1sü jó2s1ün jó2s3zár j2ó1s1zá jós2z jó1t2r 1jö jö2dé jö2ko jö2lé 2j1önt jö2re jö2rö j1ösv j1ötv 2j1ö2v. 2jöv2e. jö1ve j1ö2vez 2j1ö2vén jö1vé jö2zö 1jÅ‘ j1Å‘rl jÅ‘2rö 2j1Å‘rt jÅ‘2rü jÅ‘2ze jpár1ba2 j1pá jp2la jp2le jp2re jp2ré jp2ri jp2ro jp2ró jra3d2 j1ra jra1f jra1ff jra1i2 jra1p2 jra1s2 jra1u2 jré2sz1e2l j1ré jrés2z jré1s1ze jré2s1zí jsa2v1e j1sa jsa2v1é jsa2vo jsa2v1ó2n. jsa1vó jsa2v1ó2r jság1g j1sá js2ho js2ká js2ki js2ni js2pe js2pi js2po js2pó jsp2r j1s2ta js2ti j1s2tí j1s2to j1st2ra j1st2ru j1s2tú jszabás1s js2z j1s1za jsza1bá jszá2l1a2da j1s1zá jszá1la jszáraz1 jszá1ra jszín3n j1s1zí jsz2k j2t1a2da j1ta jt1a2do j2t1a2dó jt1akn jt1a2lap jta1la jt1alk j2t1all j2t1alv j2t1a2nyag jtan2y jta1nya jta1p2 j2t1a2pá jt1a2rom jta1ro j2t1arz jta1sp j2t1atk j2t1a2ut jta1u j2t1ác j1tá jt1á1ga j2t1áll jtá2ra1i jtá1ra j2t1á2rak j2t1ár1ka jtár1k2 jtá2s3z jt1á2t1a j2t1e2g2y j1te j2t1e2k2e. jte1ke j2t1e2leg jte1le j2t1e2le1me j2telemz j2t1elf j2t1elff j2t1elh jt1el1já j2t1ell j2t1elmél jtel1mé j2t1e2lo j2t1e2lÅ‘ j2t1el1p2 j2t1elr j2t1els2 j2t1elv j2t1eml j2te2ner jte1ne j2t1enz jt1e2red jte1re jt1e2rez j2t1e2rÅ‘ j2t1e2tetÅ‘1e jte1te jtete1tÅ‘ jt1e2vés jte1vé jt1e1vo j2t1e2vÅ‘ j2t1é2le j1té jt1élm j2t1érl j2t1érm jtés3s jt1f8l jt1fl jt1fr j1t2h2a. jt1ha j2t1i2d j1ti jti2m j2ti1má j2t1i1mi j2t1imp jt1inf jt1inff j2t1ing jt1int j2t1i2pa j2t1ir jti2s jt1i1si j2t1izg jt1i2zo j2t1í2v j1tí j2t1í2z jt1kl jt1kr j2t1ol1da j1to j2t1orjáb jtor3já j2t1ors2 jt1os2z j2t1o2x jtó1a2 j1tó jtóé2ra jtó1é jtó1p2 jtó1s2po jtó1s1ta jt2ó1st2r jtó1s2z jtó1tr jt1ö1dé j1tö jt1öng jt1öss jtÅ‘1a2 j1tÅ‘ jtÅ‘1e2 jtÅ‘1é2 jtÅ‘1s2p jt1pl jt1pr j1t2ran jt1ra jtrá1di2 jt1rá j1t2rág jt2ri j1t2roj jt1ro jt2róf jt1ró jt2róff jt1sp jt1st jt1t2r j2t1udv j1tu j2t1und j2t1új j1tú j2t1üg j1tü j2t1ü2l j2t1üt 1ju ju2ga ju1go1 ju2had ju1ha ju2h1a2k ju2hal ju2h1a2n juha2ra ju2hat ju2hál ju1há ju2h1e2 ju2h1éj ju1hé ju2h1is ju1hi ju2hor ju1ho ju2hÅ‘ ju2hü 2ju1la ju2le 2juls 2jural ju1ra ju2ru ju2sz1a2v jus2z ju1s1za ju2szim ju1s1zi ju2s1z1í2 ju2tak ju1ta 2j1u2tál ju1tá 1jú jú1fr jú2jí jújjá1é3 júj1já jú1pl jú1p2r jú1s2p jú1s2t jú2s1zó jús2z jú1szv 2j1útb jú2to2n1 jú1to 2j1útv 1jü jü2ge jü2g2y jü2le jü2lé j1ü2lÅ‘ j1ült jü2re jü2rí jü2rü jü2ta j1ü2tÅ‘ jü2ve jü2ze 1jű jű2ri jű2zÅ‘ j2z1abl j1za j2z1a2d jza2j j2z1a1já jz1ajt j2za2kad jza1ka j2z1akc j2z1a2l j2z1a2n2y j2z1ar j2z1as jz2a2tan jza1ta j2z1ál j1zá j2z1á2rad jzá1ra j2z1á2rán jzá1rá j2z1e2l j1ze j2z1em jze2r jz1e1ré j2z1es j2z1él j1zé j2z1ér1té jz1fr jzi2g j1zi j2z1i1gé j2z1ill j2z1int j2z1i2r j2z1isk j2z1ism jz1k2l jz1k2r j2z1ob j1zo j2z1ok1ta j2z1ol1da j2z1olvas jzol1va j2z1os2z j2z1ó2d j1zó j2z1ó2r jzó1s2 j2z1ös j1zö j2z1öt jz1pl jz1p2r jz3sab jz2s j1z1sa j2zs1a2l j2zs1ál j1z1sá jzscsa2p1 jzsc2s jzs1c1sa j2zs1eg j1z1se j2zsen j2zs1er j2zs1in j1z1si jz3sín j1z1sí j2z3sor j1z1so j2z1s1ö2 j2z1s1Å‘ jzs1s j2zs1u2t j1z1su jz3s1za jzs2z jz3s1zá jz3s1ze j2z1ut j1zu jz1ü2g j1zü 2k. 1ka kaa2d ka1a kaát1 ka1á kaá2ta2 ka1b2a 2k1abbah kab1b2a 2k1ab1há kabi2ná ka1bi 2k1abla2k. kab1la 2k1abla1ka 2k1abla1ká 2k1ablakb 2k1ablakh 2k1ablakk 2k1ablakok kabla1ko 2k1ablakon 2k1abl2akos 2k1ablakot 2k1ablakr ka1b2le ka1b1re 2k1abs ka2cé2l. ka1cé ka2c3h ka2cs1á2g kac2s ka1c1sá ka2cs1ús ka1c1sú ka2cü ka2c2z k1adap ka1da 2kadál ka1dá kadás1s 2k1a2dot ka1do ka2dó1i ka1dó ka2dój 2k1a2dó1so ka2dó1u ka2dóz k2a1d2rá kae2gés2z1 ka1e kae2gé kae2l kae2n kae2r kae2t kaé2r ka1é ka1f2r ka2gan ka1ga 2k1agg ka1g2r 2k1ag2y. kag2y ka2gyu ka2ios ka1i kai1o kai2z 2k1a2jánl ka1já 2k1ajk 2k1ajtóh kaj1tó ka2ka1dé 1ka1ka ka2ka1dó kakas3s ka2kác ka1ká 2k1akc ka1k2l ka2k2ó. ka1kó k2a1k2ré ka1k2ri 2k1ak2t. 2k1ak1ti ka1k2va ka2la2pa ka1la 2k1a2lapítv kala1pí 2k1alb kal1eg2y ka1le 2k1alf 2k1alff 2k1al2j. 2k1al1ji 2k1al1ka 2kal1ko 2k1al1le kalma1na2 kal1ma 2k1al1ti kama2te ka1ma 2k1am1bu ka3mi3on3 kana2g ka1na k1a2na1lí 2k1a2nam k1a2nat ka2n1e2g ka1ne ka2n1el 2kang ka2nim ka1ni ka2ni1o ka2n1iv ka2nol ka1no ka2nód ka1nó 2kan1te ka2nü ka2nű 2k1a2ny2a. kan2y ka1nya 2k1a2nyag 2k1a2nya1i ka2nyáb ka1nyá ka2nyó ka2ó1a ka1ó ka2ó1á ka2óc ka2ó1e ka2óg ka2ó1ha ka2ó1í ka2ó1ko ka2ókr ka2óp ka2ó1ü ka2óz 2kapád ka1pá ka2pá1to ka3polcs ka3pos3 2kapp ka1p2re ka1p2ré 2k1ap1rí ka1p2rof k2ap1ro ka1p2roff k2a2r1a2d ka1ra ka2rakk k2arak ka2r1a2kó kar1a2lap kara1la 2k1arank ka2r1a2r kara2s 2ka2ras2z 2kara2t. 2karatn 2kara1to ka2ra1u ka2r1ácsh k2arác ka1rá karác2s ka2r1ácsn ka2r1ácst ka2r1ál 2k1a2rán2y kar2c1el kar1ce kar2dac kar1da kar2dál kar1dá kar2d2z ka2rel ka1re ka2rev kar1é1ke ka1ré karé2kor karé1ko ka2rél ka2r1é1ne karfe2l1 kar1fe ka2rid ka1ri ka2r1i2ko ka2r1ikr ka2rind ka2r1in2g. kar1ingb kar1in1ge kar1ing3g kar1ingr ka2r1isk ka2r1ism k2ari2z ka2r1i1zo 2k1a2rom2a. ka1ro karo1ma 2karo1má ka2ror kars2 2k1ar1ti ka2sag2 ka1sa kaság1g ka1sá ka2sál ka2sid ka1si kasi2p kas1i1pa ka2siz ka2s1ol ka1so ka2s1ó2r ka1só kas1p ka1s2po kas3s1ze kas2s2z kas3s1zé 2k1as1s1zi 2kas5szon2y/sz=,3,1 kas1s1zo kas3s1zÅ‘ kast2 k2a1str ka2sür ka1sü kasz1ajt kas2z ka1s1za 2kaszat ka2szág ka1s1zá k2a2tél ka1té kat1i1ko ka1ti kat1int k2atin ka2t1i2o 2k1at1ká ka2tol1da ka1to katrá1di2 kat1rá ka1t2ri ka2tyá kat2y ka2ud ka1u 2k1a2ul kau2n kau2r kau2s kau2ta 2k1a2u1to 2k1aut2ó. ka2u1tó 2k1autób ka3utóc 2k1autó1é 2k1autóh 2k1autó1i 2k1autój 2k1autók 2k1autóm 2k1autón 2k1autós 2k1autót 2k1autóv kaü2t ka1ü kaü2z 2k1a2vat ka1va 2k1a2zon ka1zo 1ká 2ká1bé 2k1ábr ká2cak ká1ca ká2ce 2ká2c3h ká2có ká2c3sar kác2s ká1c1sa ká2csat ká2c1se ká2cs1é2k ká1c1sé ká2csi2p ká1c1si ká2csis ká2c3sor ká1c1so ká2c1sö ká2c1sÅ‘ ká2cü ká2dab ká1da ká2dar ká2d1ác ká1dá ká2dát ká2dil ká1di ká2dí ká2d1ö ká2d1ü2 ká2d3z ká2fá 2k1á2g. ká2ga 2k1ág2a. 2k1ágacs1ka kága2c kágac2s 1ká3gacs1ká 2k1ága1i 2k1ágak 2k1ágat 2k1ágaz 2k1á2gá 2k1ágb 2k1á2ge k1á2gé 2k1ágg 2k1ágh 2k1á2gi 2k1ágk 2k1ágn 2k1á2go 2k1ágr 2k1ágs 2k1ágt 2k1á2gu 2k1á2gú 2k1á2g2y 2k1á2hí ká2jö ká2jü ká2lág ká1lá 2kálá1i 2kálák 2kálán 2káláv 2káláz 2k1álc k1ál1do ká2l1e2 ká2lén ká1lé 2k1állap kál1la 2k1állás kál1lá kál2l1e2 kál1lé2 kál2lék 2k1ál1lí 2k1állom kál1lo ká2lö ká2lü ká2lyod kál2y ká1lyo 2k1á2mí 2k1á2mu ká2n1ag ká1na ká2n1a2n ká2n1as ká2nem ká1ne ká2n1is ká1ni ká2n1ó2 ká2ny1ag kán2y ká1nya ká2ny1a2l ká2ny1a2n ká2nyap ká2nyar ká2ny1á2to ká1nyá ká2ny1e2 ká2nyis ká1nyi ká2nyiv ká2nyö 2k1á2po1lá ká1po ká2po1ló 2ká2rad ká1ra ká2r1a2g 2k1á2rakr ká2rakt kár1ak1ta kár1ak1tá ká2r1a2l 2k1á2ram ká2r1a2p ká2rar ká2ras kár1ass 2k1á2rat ká2raz kár1a1zo kár1áll ká1rá ká2r1á2z kár1d2 ká2r1e2 kár1é1te ká1ré 2k1á2ri1á ká1ri 1k1ár1ká kárkié2h kár1ki kárki1é ká2r1old ká1ro ká2r1os2z ká2rö ká2rÅ‘ kárp1s1zi2 kár1p2s kárps2z kár1p2szic3 kár1s2 kárt2 kár1tr ká2ruh ká1ru ká2rü kás1ajt ká1sa ká2s1ass ká2s1á2go ká1sá ká2s1á2ra1i kásá1ra ká2s1árak ká2s1á2rá ká2s1árb ká2s1á2ro ká2s1árr ká2s1árv ká2s1árz 2k1á2sá1sá 2kásást ká2s1e2 ká2s1i2k ká1si ká2sim ká2sis ká2sí2r ká1sí káská2r kás1ká ká2s1ol ká1so ká2s1ott ká2só ká2sö ká2sÅ‘ kás1p kást2 kás1tr ká2su2t ká1su ká2s1ü2 2k1á2száb kás2z ká1s1zá ká2szár kás3zá2r. 2k1á2szát ká2s1ze ká2s1zé ká2szis ká1s1zi ká2sziv 2k1á2szom ká1s1zo ká2s3zü ká2tab ká1ta 2k1átad ká2taj ká2tal kát1a2la ká2t1a2n ká2tar ká2ta1u ká2t1á2 2k1át1be ká2t1e2 ká2té2g ká1té k1át1fo ká2tip ká1ti ká2t1ir ká2tis ká2tí k1át1ló 2k1át1me ká2t1os2z ká1to ká1tó2 ká2tór ká2t1ö ká2tü k1át1vá kba2l1 k1ba kbé2rel k1bé kbé1re kb2la kb2le kb2lo kb2rá kb2ri kb2ro kb2ró kci2ó1fa k1ci kci1ó kci2ó1si kci2ós1pe kc2lu kcsa2p1á2g kc2s k1c1sa kcsa1pá kdi2al k1di kdi1a kd2ra kd2rá kd2re kd2ro kd2ró kd2ru 1ke kea2d ke1a kea2j kea2k kea2l kea2n kea2r kea2s ke2at keá2l ke1á keá2r keá2t1 2k1e2b. ke2be1i ke1be ke2bek ke2béd ke1bé kecs1alj kec2s ke1c1sa kecs1ón ke1c1só kecs1ó2r ke1d2ra keegyez1 ke1e kee2g2y kee1gye kee2n ke2ep kee2s 2k1ef8f 2k1eff ke1f8l ke1fl ke1f2r 2k1e2gér ke1gé ke2gés2z1 2kegyb keg2y ke2gyék ke1gyé ke2gy1in ke1gyi 2k1egyl 2kegyn ke2gyö 2kegyr 2kegys ke2gyu2 ke2gy1ú 2ke1gyü 2k1e2k2e. 1ke1ke 2k1e2ke1i 2k1e2kek 2k1e2ké1é ke1ké 2k1e2kék ke1k2l ke1k2ré kek2s1za keks2z 2k1ekv ke2lac ke1la 2k1e2l1a2d ke2l1an ke2l1a2t 2k1elav ke2l1á2g ke1lá 2k1e2lef ke1le 2k1e2l1eff ke2lekc 2k1e2lekt ke2l1e2l k1e2lemb 2kele1me 2kele1mé k1e2lemh 2kelemm 2k1e2lemn k1e2lemr 2k1e2lemz ke2l1e2p2e. kele1pe ke2l1e2pe1i kele2p1ü2 ke2l1e2sé ke2l1e1s1ze keles2z kele2t1el kele1te kele2t1o 2keley ke2l1é2k ke1lé 2k1e2lél kel1érh kelés3s kelé2s3z 2k1elhel kel1he 2k1el1ho kel1id ke1li kel2ig 2k1e2lim ke2li1o 2k1e2l1ism 2k1e2l1í2 2k1el1já k1el1lá 2kellát 2k1elle1ná kel1le 2k1elle1nÅ‘ 2k1ellent 2k1elnev kel1ne 2k1eln2y 2k1e2l1os ke1lo 2ke2lö2l ke1lö 2k1e2lÅ‘1a ke1lÅ‘ kelÅ‘1é2 2k1e2lÅ‘1fú ke2lÅ‘1hí 2k1e2lÅ‘1í 2k1e2lÅ‘képz kelÅ‘1ké 2k1e2lÅ‘kés 2k1e2lÅ‘l ke2lÅ‘n2y 2k1e2lÅ‘1o ke2lÅ‘1té 2k1e2lÅ‘tt k1e2lÅ‘z k1el1ra 2k1el1sa 2k1el1sÅ‘ 2k1el1s1zá kels2z kel2t1é2r2Å‘. kel1té kelté1rÅ‘ 2k1el1to 2kel1tű 2kelül ke1lü ke2lűr ke1lű 2k1el2v. 2k1el1vá 2k1elve1i kel1ve 2k1elvek 2k1elven 2kel1vi k1elvk 2k1el1vo 2k1elvt 2k1el1vű ke2lyemb kel2y ke1lye ke2ly1ékn ke1lyé kelyköz1 kely1kö 2k1elz 2k1ember kem1be 2k1embl 2k1embr 2k1eml 2k1emul ke1mu ke2nal ke1na 2k1en1ci kende2rül ken1de kende1rü ken2d1ék ken1dé 2k1en1do 2k1e2ner ke1ne 2k1en1ge ke2n1ip ke1ni ke2nis ke2n1o kens3s kens2z2 2k1enyv ken2y keo2l ke1o keo2r keó2d ke1ó keó2h keó2l keó2r ke2pik ke1pi ke2ral ke1ra ke2rap ke2r1a2r ke2r1as ke2ra1u ke2r1ál ke1rá ke2r1ár ke2rás ker2c1sá kerc2s ker2csell ker1c1se ker1c1sí2 ker2csír 2ker1de 2k1er1dÅ‘ 2k1e2re1ge ke1re 2k1e2rej kere2k1eg 1kere1ke ker1ell ker1elv ke2r1ember kerem1be ke2r1er kere2ta kere2t1e2l kere1te kere2t1ö2 ke2rég ke1ré ke2r1é2l ke2r1ép ker1é1te ke2r1id ke1ri ker1i2ga ke2r1ill ke2rim ke2r1ind ke2r1int2 ke2r1inv ke2ri1o ker1ist ke2r1iz ker1k2 2ker2n1e2l. ker1ne ke2r1ol ke1ro ke2ror ke2ród ke1ró ke2r1ó2r ke2rÅ‘1de ke1rÅ‘ ke2rÅ‘1e ke2rÅ‘1ké ke2rÅ‘1o ke2rÅ‘1sí ke2rÅ‘1te kers2 ker1sp ker1st kers2z2 ker2taj ker1ta ker2tá2p ker1tá ker2tás ker2t1eb1bé ker1te ker2teg ker2t1es1te ker2t1es2z ker2télv ker1té ker2t1é2vét kerté1vé ker2tön ker1tö ker2töv ker2t1Å‘r ker1tÅ‘ ker2t1Å‘s ker1t1ró ke2rút ke1rú kerü2g ke1rü 2k1ese1mé ke1se ke2se1té 2k1e2sett 2k1esél ke1sé 2k1e2sés ke2sis ke1si 2k1esítÅ‘st ke1sí kesí1tÅ‘ 2k1es1kü 2k1e2sÅ‘ ke1s2po kes3s1zó kes2s2z ke1s1ta 2k1es1te 2k1es1té 2k1es1ti 2k1estj 2k1estk 2k1estn ke1st1ra 2k1est1re 2k1estt 2k1estün kes1tü ke2szaj kes2z ke1s1za ke2szép ke1s1zé 2k1eszmén kesz1mé ke2tál ke1tá ke1tc ke2t1e2kéh ke1te kete1ké 2k1e2te1té ke2ti2d ke1ti ke1t2ra ke1t2ré ke1t2ri kettes1s ket1te ke2tűd ke1tű keu2r ke1u keu2s kevés3s ke1vé ke2vid ke1vi 2k1e2vÅ‘ keze2tés ke1ze keze1té kezÅ‘1a2 ke1zÅ‘ kezÅ‘1e2 kezÅ‘kés2z1 kezÅ‘1ké 2k1ezr 1ké 2k1é2ber ké1be 2k1ébr ké2ge ké2gé ké2gÅ‘ 2k1é2hem ké1he 2k1é2hen 2k1é2hes 2k1é2he1zé 2k1é2hezt 2k1éhs ké2j1ak ké1ja ké2j1e1lé ké1je ké2jö ké2ju2t ké1ju 2k1é2k2e. ké1ke 2k1é2ke1i 2kékekk 2kékem ké2k1e2r kékes3s kéke2s3z ké2kén ké1ké ké2k1o2 2k1é2kük ké1kü 2k1é2kű ké2lel ké1le 2kéles 2k1é2letek kéle1te 2k1é2letet 2k1élm ké2lÅ‘d ké1lÅ‘ 2k1é2lÅ‘l 2k1élr 2k1é2lű ké2lya kél2y ké2ly1es2z ké1lye ké2lyid ké1lyi ké2ly1ü2l ké1lyü ké1ma2 ké2ma1d2 ké2m1al ké2m1an ké2map ké2m1as2 ké2m1á kémi2as2 ké1mi kémi1a ké2min ké2mir ké2mis ké2mí ké2mo ké2mö ké2mÅ‘ ké2m1u2 ké1na2 ké2n1al ké2nan ké2n1ar ké2n1at kéndi1o2 kén1di 2k1é2ne1ke ké1ne 2k1é2nekh 2k1é2ne1ki 2k1é2nek1k2 2k1é2nekl ké2n1e2l ké2n1em ké2n1er kén1é1te ké1né ké2ni2g ké1ni ké2nil ké2n1ing ké2no ké2ny1e2g kén2y ké1nye ké2ny1elv ké2nyú ké2p1a2 ké2p1á képá2r ké2peg ké1pe ké2p1e2lÅ‘ k2épel ké2p1el1té ké2p1elv ké2p1e2r ké2p1ill ké1pi ké2pim ké2p1i2p ké2pí 2k1épít ké2p1o ké2pó ké2p1ö ké2pÅ‘ kép1s ké2pu ké2pú ké2p1ü2lé ké1pü ké2p1ü2lÅ‘ ké1ra2 ké2rab ké2ral ké2ram ké2r1an ké2rar ké2r1as ké2rat ké2r1á2 2k1érde1ke kér1de kér1dr 2k1é2retts ké1re ké2ro ké2rö 2k1értelm kér1te 2kértékb kér1té 2k1érté1ke 2k1értékh 2k1értékn 2k1értékr 2k1értés 1kértÅ‘2i1ké kér1tÅ‘ kértÅ‘1i ké2r1u2 ké2r1ú ké1rü2 kér1ü1lé 2k1érvek kér1ve 2k1ér1zé ké1sa2 ké2san ké2s1á2 ké2s1é2g ké1sé ké2s1o ké2só kés3s1za kés2s2z2 kés3szer kés1s1ze kés3szél kés1s1zé ké2su ké2süt ké1sü ké1sy ké2s1za2 kés2z kész1al k2é2s1z1á2 ké2szeg ké1s1ze késze2l ké2s2zeml ké2s2zes2z ké2széd ké1s1zé ké2sz1ék1né ké2szin ké1s1zi ké2szir ké2s1zo ké2s1z1ó2 k2é2s1zö ké2szÅ‘r ké1s1zÅ‘ készt2 kész1tr ké2s1zu ké2s1z1ú két1akar ké1ta kéta1ka ké2takn ké2t1a1kó két1a1la két1asp ké2tál ké1tá ké2t1ed ké1te ké2t1eg ké2te2l. ké2teln ké2t1e2m ké2t1ep 2ké2te2r két1e1re két1er1k2 két1e1rű ké2te1sé ké2t1es1té ké2t1es2z ké2t1e2v ké2t1é2 ké2t1i2 ké2tí ké2t1o2l ké1to ké2t1or ké1tó2 ké2t1ór ké2t1ö ké2tud ké1tu ké2t1ü2 2kétv 2k1é2v. 2k1é2vad ké1va 2k1évb 2k1é2ve1i ké1ve 2k1é2vem 2k1é2ven 2kévet 2k1évf 2k1évff 2k1évh 2k1é2v2i. ké1vi ké2vi2g 2k1é2vin 2k1évk 2k1évn 2k1évr 2k1évs 2k1évt 2k1é2vü 2k1évv ké2z1a ké2z1á2 ké2zeg ké1ze kéz1elt kéze2m kéz1e1me ké2z1e2r ké2z1ism ké1zi ké2zí ké2z1o ké2zö kéz2s2 ké2z3sé kéz3st ké2z1su ké2z1u2 kfe2l1em k1fe kfe1le kfil2mér kf8i kfil1mé kï¬l2mér kï¬ kï¬l1mé kfi2sar kfi1sa kï¬2sar kï¬1sa kf2jo kf8j k1f2la kf8l k1fla kfl kf2le kfle kf2li kfli kf2lo kflo kf2ló kfló kfolyói2k k1fo kf2o1lyó kfol2y kfolyó1i kfo2n1ó2 kf2ra kf2rá kf2re kf2ri kf2rí kf2ro kf2rö kf2ru kg2la kg2nó kg2ra kg2rá kg2ri kg2rí kg2ru k2ha1i k1ha khá2t1al k1há khá1ta khelyköz1 k1he khel2y khely1kö 1k2h2é. k1hé 1k2hi1a k1hi khiá2b khi1á k2hil kh2me 1khos2z. k1ho k2hos2z 1ki kia2d ki3a3dás3zá3ro3 ki1a ki2a1é ki2af ki2aff kia2g kia2j kia2kar kia1ka kia2kas kia2lap kia1la kia2lá kia2n kia2p kia2ra kia2s2z ki2a1ú kia2v kiá2z ki1á ki1b2l ki1b2r 2k1i2de1á ki1de 2k1i2deg 2k1i2dej 2k1i2dét ki1dé 2k1i2déz 2ki1di ki2di1o 2k1i2dÅ‘b ki1dÅ‘ 2k1i2dÅ‘k 2k1i2dÅ‘m 2k1i2dÅ‘n 2k1i2dÅ‘t ki1d1ró kie2l ki1e kie2m ki2e2n. kie2r ki2erk kie2sel kie1se ki2ese2t. kie2t kié2d ki1é kié2k 2k1if8j ki1f2r 2ki1ga ki2g2a. 2ki1gá ki2gát 2ki1ge ki2gén ki1gé ki2géz ki1g2r ki1k2l ki2konn ki1ko ki2ko1no ki1k2ré ki1k2ri ki1k2v 2k1il1le 2kil2y ki2lye 2k1i2m2a. ki1ma 2k1i2ma1i ki2mak ki2máb ki1má 2k1i2mád ki2má1i ki2máj ki2mák 2k1i2mám ki2mán 2kimár ki2mát ki2máv ki2mit ki1mi 2k1imp 2k1i2n2a. ki1na 2k1i2na1i 2k1i2náb ki1ná 2k1i2nár kin2c1sa kinc2s kin2c1sá kin2csel kin1c1se kin2c1so 2kind 2k1inf 2k1inff kin2gas kin1ga 2k1inj 2kins 2k1integ kin1te kio2l ki1o kio2m 2k1i2onn 2k1i2o1no 2kion2t. ki3óh ki1ó 2k1i2ó2n. 2kipar ki1pa ki1pf ki1pff ki1p2la ki1p1le ki1p2r 2k1ips 2k1i2rat ki1ra 2k1i2ránn ki1rá 2k1i2rán2y 2kirg 2k1irh 2k1irk 2k1i2rod ki1ro 2kirom 2k1irr 2k1irt ki2sad ki1sa ki2s1aj1tó ki2s1akn ki2sal ki2sa2p ki2sas ki2sál ki1sá 2kisc ki2s1e2c ki1se ki2s1e1lÅ‘ ki2s1emb ki2s1es ki2s1é2k ki1sé ki2s1ér ki2s2i. ki1si ki2s1in ki2s1i1pa ki2s1i2ra ki2s1isk ki1skál kis1ká 2kism ki1s2má ki1s2min kis1mi kis2nyá kisn2y kis1o1ko ki1so ki2s1oros kiso1ro ki2sö2r ki1sö ki2sÅ‘ kisp2 kis1pl ki1s2por kis1po ki1s2pó kis3s2z kist2 ki1s2tar kis1ta ki1ste1ri kis1te ki1s1tí ki1stop kis1to ki1str ki1s1tu ki1t2r kit2t1er k2it1te kit2t1ö kiu2s ki1u kiu2t kiú2s ki1ú kiú2t kivíz1 ki1ví 2k1i2vó 1kí 2k1í2gé k1íg2y. kíg2y kí2ja kí2nal kí1na kí2n1árb kí1ná kí2n1e kí2né2l kí1né kí2n1ó2 kí2rá 2k1í2re 2k1í2ró 2kítm kítÅ‘1a2 kí1tÅ‘ kítÅ‘1e2 2k1í2v. 2k1ívb 2k1í2ve 2k1í2vé 2k1í2vű kí2zé kí2zü kí2zű kk1abl k1ka k2k1a2da kk1ajt k2k1a2kad kka1ka k2k1akk k2kalak kka1la k2ka1lá k2k1alj k2k1alm kkan2c1se kkanc2s kka2ró2ra kka1ró k2k1a2u k2k1a1zo k2k1áll k1ká kk1árf kk1árff kká2rok kká1ro k2k1á2ru kká2s k2k1á1sá k2k1áth k2k1átl kk1á1tu k2k1átv kk1á2zó kk1br kke2c k1ke kk1e1c1se kkec2s kk1e2d2z kk1e2gé kke2l1e2g kke1le k2k1e2lem k2k1el1lÅ‘ kke2lÅ‘1á kke1lÅ‘ kk1e1mu kke2ra kk1erd kke2ró k2k1e2rÅ‘ kk1e2ti kk1e2vé k2k1ég k1ké k2k1é2l k2k1é2pí k2k1ér1té k2k1érz kk1fr kk1gr kki1á2 k1ki kk1i2do kki1e2 k2k1i2ga k2k1i1gé k2k1ill k2k1ind k2k1ing k2k1ink k2k1int k2k1i2par kki1pa k2k1i2ro kk1is1ko k2k1ism k2k1í2r k1kí k2k1íz k1k2lí kk2l2ó. kk1ló k1k2lu kon3nyi kko2laj k1ko kko1la kk1ol1ló k2k1o2pe kkor2dá k2k1org kko2r1os kko1ro kko2r1út kko1rú k2k1orz k2k1oszl kkos2z kkó1p2 k1kó kk1ó2rá kkö2l k1kö kk1ö1lÅ‘ k2k1önt kk1ötl kk1Å‘2ri k1kÅ‘ kk1Å‘2rö kk1Å‘r1s2 kk1Å‘1rü kk1pr kk2ris kk1ri kk2rit kk2rí kk1sm kk1sp kk1s2t kk1t2r kk1udv k1ku kk1urt k2k1u1tá k2k1új k1kú k2k1üg k1kü kk1ü2lÅ‘ k2k1ü2t k2k1ü2v kk1üzl kk1űr k1kű kk2vó kla1g k1la kla3ko kla1k1ri kla2p1á2t1a2 kla1pá k1la1p1la kla1s2k kla2u1zá kla1u klá1ma2 k1lá klá2mal klá2m1an klá2mas klá2m1á2 klá2m1á2r1a2d klámá1ra klá2m1e2g klá1me klá2m1eh klá2mel klá2mer klá2m1é2r. klá1mé klá2m1ér1té klá2m1i2k klá1mi klá2min klá2mis klá2mol klá1mo kle2i2s k1le kle1i kle1í2 kle2t1a2n kle1ta kle2tál kle1tá kle2t1elv kle1te kl2e2t1e2r kle2t1e2v kle2t1é2r. kle1té kle2t1ét1be kle2t1é2té kle2t1é2v2e. kleté1ve kle2tin kle1ti k2lien k1li kli1e k2li1ni kli1ó2 k2li1sé kli2só 1k2lím k1lí k2lo1á k1lo k2lopf k2lopff k2lo1t2y kló2rad k1ló kló1ra kló2raj kló2ra2n kló2rat kló2ris kló1ri kló2rol kló1ro k2lub k1lu klu2b1a klu2bá klu2b1e klu2bir klu1bi klu2bol klu1bo klus3s klu2s3z kma1b k1ma kmai2ko kma1i kmas2 kma1st kmá2nya2n k1má kmán2y kmá1nya knag2 k1na knak2 kna1kr kni2a2 k1ni kni1ka2 kni2k1al kni2k1as2 kni1s2z2 knÅ‘c1c k1nÅ‘ kn2Å‘3r 1ko ko2áz ko1á ko2be 2k1obs ko2c1ho koc2h 2k1o2dav ko1da 2k1o2dú kogás1s ko1gá ko1g2r ko2kád ko1ká 2ko1ke2 ko2k1er 2k1o2k1ir ko1ki 2k1o2kí 2k1okl 2k1okm 2k1o2kol 1ko1ko 2k1o2koz kok2s1ze koks2z 2k1ok1ta ko2l1ajt ko1la kol1á1ro ko1lá 2k1oldal kol1da 2k1ol1dá 2k1ol1dó ko2lid ko1li ko2l1i1gá k1o2lim1p2 ko2l1i2n2a. koli1na ko2li1ta kol2l1ad kol1la kol2lál kol1lá kol2le2l kol1le kol2les kol2l1ét kol1lé ko2lö 2k1oltár kol1tá 2k1olvas kol1va 2k1om1bu ko2mil ko1mi kom2p1é2r. kom1pé kom2p1ol kom1po ko2n1a2d ko1na ko2naj ko2n1a2l ko2n1a2n ko2n1ar ko2n1as ko2n1a1u ko2n1ál ko1ná 2kon1bá 2konbet kon1be konc1c kon1cé2 kon2c2h kon2c1sá konc2s kon2c3so2r. kon1c1so kon2c3so1ro ko2n1e2 2konén ko1né ko2n1é2r. 2kon1gu 2konhab kon1ha ko2nir ko1ni 2konog ko1no ko2n1ol 2ko2n1o2la ko2nor 2konosn 2konosr 2konost 2kon1pa 2kon1pr 2konrét kon1ré 2kon1tö ko2nü ko2nyag kon2y ko1nya ko2nyal ko2nye ko2nyó konz2 2konz2s koo2p ko1o ko2ón ko1ó kopá2sé ko1pá 2kopc k2o1p1ro 2kop1ti ko2r1a2d ko1ra ko2rag ko2r1aj ko2r1a2n kor1ass ko2r1aszt koras2z ko2r1áss ko1rá ko2r1átl 2k1orc2h kor2csal korc2s kor1c1sa kor2dad kor1da kor2d1ag kor2d1a2s kor2dác kor1dá kord1d kor2d1e2l kor1de kor2dem kor2des k1ordít kor1dí kor2d1ö kor2d3z ko2r1e2c ko1re ko2reg ko2r1e2l ko2re2n ko2r1er ko2r1e2s kor1f2 kor1ff korgás1s kor1gá 2k1o2ri1e ko1ri kor1ill ko2r1ing ko2r1in1te kor1isk ko2r1i2zom kori1zo ko2ros2z ko1ro ko2r1o2v ko2r1ó1i ko1ró ko2rón ko2rö ko2rÅ‘ 2k1or2r. 2k1orrk 2k1orrt kor1s2 kor1t2r ko2r1ú1to2 ko1rú ko2rü ko2s1as ko1sa ko2sál ko1sá ko2se kos3s1ze kos2s2z kos3s1zo kos3s1zü 2k1ostr ko2sü ko2szal kos2z ko1s1za ko2szer ko1s1ze ko2szir ko1s1zi ko2s1zí2 k2o1s1zo ko2s1zó 2kosz1tá kotókés2z1 ko1tó kot2ókés kotó1ké kotó1st ko2ut ko1u ko2vi1é ko1vi ko2xi koza2tal ko1za koza1ta kozókés2z1 ko1zó koz2ókés kozó1ké kozóköz1 kozó1kö 2kozó1ö 1kó kóa2d kó1a kó1bl kóc3c kó2cem kó1ce kó2c2h kó2d1ab kó1da kó2dak kó2d1a2l kó2d1a2n kó2daz kód1d kó2d1e2l kó1de kó2dem kó2d1e2r kó2d1es kó2d1és kó1dé kó2din kó1di kó2dö kó2dü kó2d1zá kód2z kóé2r kó1é kó1f2r kói2g kó1i kóí2v kó1í kó1k1ré kó1kv 2k1ó2n2é. kó1né kó2nét 2k1ó2n2i. kó1ni 2k1ó2no 2kó2pan kó1pa kó2p1as 2kóp1c1se kópc2s 2kóp1c1sÅ‘ kó2p1e2l kó1pe 2kópg 2kópiáh kó1pi kópi1á 2kó2p1id kó2pir 2kópiv 2kópjaiv kóp1ja kópja1i 2kópjukk kóp1ju 2kóp1ka 2kóp1ke 2kóp1ko 2kópköz kóp1kö 2kóp1kü 2kóp1lá 2kópo1ké kó1po 2kóposat kópo1sa 2kóposn 2kópo1so 2kópos2t. kó1pó2 kó2p1ór 2kóppár kóp1pá 2kóp1re 2kóp1ru 2kóp1sí 2kóp1s1zá kóps2z 2kópút kó1pú kó2pü 2kóp1vi 2k1ó2ra1a kó1ra kó2r1a2c 2k1ó2ra1i kó2r1a2n kó2ras kó2ráb kó1rá kó2rád kó2rág kó2rá1i k1ó2ráj kó2rám kó2rán kó2rár kó2rát kó2ráv kó2rel kó1re kóre2s kó2réj kó1ré kó2r1é1ve kó2r1ir kó1ri kó2r1ok kó1ro kóro2ka kóro2ko kór1os1to 2kóród kó1ró kó2r1ó1dá kó2rÅ‘ 2k1ó2sá1gú kó1sá k2ó1s1lá kó2s1os kó1so kó1s2pe kó1s1pi kó1s2po k2ó1st2r kó2s1ü2 kó2s3zá1ra k2ó1s1zá kós2z 2k1ó2vó kó2z1a2m kó1za 1kö kö2ba kö2b1öll kö1bö köb1öln kö2b1ölr köb1ölt kö2c2h kö2da kö2dá kö2del kö1de kö2der kö2dev kö2do kö2dó kö2du kö2dú kö2d2z 2k1ö2ko 2k1ök1rö köl2csa2l kölc2s köl1c1sa köl2c1sá köl2csel köl1c1se köl2c1s1Å‘2 2k1ö2lel kö1le köles3s 2k1ö2lés2s2z2 kölés3s kö1lé kö2lí kö2lÅ‘1e kö1lÅ‘ köl1ta2 köl2tal köl2t1e2v köl1te 2k1öng k1ön1té k1ön1tÅ‘ k1öntv köny2v1a kön2y köny2vá kö2ra kö2rá k1ör1dö kö2red kö1re kö2r1e2g kö2rék kö1ré kö2r1étt kör1f2 kör1ff kö2ri2k kö1ri kö2r1iz kö2ro kö2ró kö2r1ö2l kö1rö kö2r1Å‘2 kör1p2 kör1s2 kört2 kör1tr kö2ru kö2rú körü2l1et kö1rü körü1le körü2lé kö2r1ülés körü2lÅ‘ kö2r1ül2Å‘. 2k1ör2v. 2k1örvb 2k1örvh 2k1örvn 2k1ör1vö 2k1örvr 2k1örvt 2k1ör1vü 2k1ör1vű 2k1örvv k1öszt kös2z 2k1öt1lé k1öt1vö 2k1ö2v. 2k1övb 2k1övh 2k1ö2vig kö1vi 2k1övr 2k1övv kö2za kö2zá kö2zen kö1ze kö2z1é2k kö1zé kö2z1í kö2zo kö2zó közÅ‘1e2 kö1zÅ‘ kö2z3s kö2zu kö2zú kö2z1ü2lé kö1zü kö2z1ü2lÅ‘ 1kÅ‘ kÅ‘a2n kÅ‘1a kÅ‘1bl kÅ‘2c2h kÅ‘1d1ra kÅ‘e2k kÅ‘1e kÅ‘e2l kÅ‘e2r kőé2l kÅ‘1é kőé2ne kÅ‘1f2r kÅ‘1gn kÅ‘1gr kÅ‘i2t kÅ‘1i kÅ‘1kr kÅ‘1pl kÅ‘1pr kÅ‘r1a2n kÅ‘1ra k1Å‘2re1i kÅ‘1re kÅ‘re2s kÅ‘r1es2z k1Å‘2r2i. kÅ‘1ri kÅ‘2ril kÅ‘2rip kÅ‘2riv k1Å‘rl kÅ‘r1s2 kÅ‘2rül kÅ‘1rü 2k1Å‘rz kÅ‘1s2k kÅ‘2sö kÅ‘1s2t kÅ‘1tr kÅ‘u2t kÅ‘1u kpá1ra2 k1pá kpá2rad kpá2r1at kpá2r1ál kpá1rá kpá2r1út kpá1rú kp2la kp2le kp2lé kp2lu kpó2t k1pó kp2ra kp2re kp2ré kp2ri kp2rí kp2ro kp2ró kp2s2z k2rac2h k1ra kra2c1hi kra1e2 1k2rajc k2rakk kra1p krá2s1z1e k1rá krás2z kren2d1Å‘2 k1re k2re1o k2re1pá 1k2rémh k1ré 1k2réml 1k2rémr kré3p2 1k2rist k1ri 1k2riti1ka kri1ti kro1g2 k1ro 1k2roket2t. kro1ke2 1k2rokod kro1ko kro2n1a2 kro2ná kron1d2 kro2n1e kro1str kro1sz2f kros2z kro1sz2ff kró2ma2r k1ró kró1ma kró2m1e kr2ó2mis kró1mi k2ró1mo 1k2rónik kró1ni k2rup k1ru k2s1a2rá k1sa ks1e1lo k1se ksé2g1e1le k1sé ksé1ge ksé2gis ksé1gi kségü2l k3sé1gü ksé2g1ü1lé ks2hi2 k1s2ká ks2ko k1s2la ks2lá ks2lu ks2mi k1s2ni ks2pa ks2pe ks2pi ks2po ks2pó ksp2r ks2rá k1s2tá ks2ti k1s2tí ks2to k1st2r k1s2tu k1s2tú k2sz1a2d ks2z k1s1za ksza1e2 k2szag2y k2sz1aj ksza2ke ksza2ké ksza2k1ü2 k2sz1am ksz1an2y k2sz1a1ré k2sz1ág k1s1zá kszáraz1 kszá1ra k2sz1e2g2y k1s1ze k2sz1e1la k2sze1mu k2sz1eng k2szev ksz1élet k1s1zé kszé1le kszé2t1 k2sz1id k1s1zi kszi2p ksz1i1pa ksz1isk k2szír k1s1zí k2sz1old k1s1zo k2szol1tó k2s2z1os2z kszö2g1ell k1s1zö k3szö1ge kszö2g1elv kszt2 k2s2zu1ni k1s1zu k2szut k2sz1üg k1s1zü k2szüt k2sz1ü2z ksz1z kt1a2da k1ta kt1a1já kt1a2lap kta1la k2t1alb k2t1all kta2n1á2s kta1ná kta2n1ó2 kta1p2 k2t1arm kt1a2ud kta1u kt1a1zo k2t1ábr k1tá kt2á2lal ktá1la kt1ál1ló k2t1álm ktára2d ktá1ra ktá2r1a1da ktá2r1a1dó ktá2raj ktá2r1az k2t1átf k2t1átff k2t1átv k2t1e2g k1te ktele1s kte1le kteles2z2 k2t1elg k2t1elh kt1el1já k2t1ell k2t1els2 k2t1elv k2t1enz kte2rad kte1ra kte2ral kte2rár kte1rá kte2rát kte2reg kte1re kte2r1e2l kte2r1in kte1ri kte2ros2z kte1ro k2t1esem kte1se kté2lÅ‘ k1té k2t1érl k2tér1mi k2t1ér1te k2t1éss k2t1é2vet kté1ve kt1fr kt1gr k2t1id k1ti kti2g k2t1i1gé kt1ill kti2m kt1i1ma k2t1ind k2t1inf k2t1inff k2t1i2r k2t1isk k2t1ism k2t1i2vás kti1vá k2t1íg k1tí k2t1í2r ktí2v1e2l ktí1ve kto1g2ramh k1to ktog1ra kto1g2ramj kto1g2ramm kto1g2ra1mo kto1g2ramr kto2n1á kto2ne k2t1o2pe kto2ras kto1ra kto2r1e2 kto2rol kto1ro k2t1ös k1tö k2t1öt kt1pr k1t2ran kt1ra k1tra1u kt2rág kt1rá k1tréf kt1ré k1tréff k1t2rén k1t2ri1ó kt1ri ktro1g2 kt1ro ktro2ná ktr2o1s ktros2z2 k1t2rón kt1ró kt1sp kt1st kt1s2z kt1t2r ktu2m1e k1tu ktu2min ktu1mi ktu2sab ktu1sa ktu2s1an ktu2szár ktus2z ktu1s1zá ktu2s1ze ktu2s1zé ktü2l k1tü k2t1ü1lé k2t1üt k2t1ü2v 1ku kuá2r ku1á 2k1ucc kue2l ku1e kue2r kue2s ku1f2r 2k1u2go 2k1ugr ku2gya kug2y 2k1uj2j. 2k1ujj2a. kuj1ja 2k1ujjad kuj2j1a2da 2k1ujja1i 2k1ujjak 2k1ujjal 2k1ujjam 2k1ujjas 2k1ujjat 2k1uj1já 2k1ujjb 2k1ujjg 2k1ujjh 2k1uj1ji 2k1ujjk 2k1ujjn 2k1uj1jo 2k1ujjp 2k1ujjr 2k1ujjs 2k1ujjt 2k1uj1ju 2k1uj1jú kuk2k1ó2 kula1k ku1la kul2csal kulc2s kul1c1sa kul2c1se kulus1s ku1lu ku2m1a2d ku1ma ku2mal ku2mel ku1me ku2mü ku2nad ku1na ku2nal ku2n1ás ku1ná ku2ne ku2n1in ku1ni kun3n ku2nor ku1no ku2n1ó2 ku2nü 2k1u2p. 2kupr 2ku1pu ku2rad ku1ra 2k1u2ra1i ku2rak 2kural ku2ram ku2rá1u ku1rá 2k1urn ku2rol ku1ro kuru2c3s ku1ru ku2sal ku1sa ku2sas ku2sál ku1sá ku2s1e2 ku2sis ku1si ku2s1i2z ku2s1ó2 ku2sö kus3s1ze kus2s2z ku2s1ú ku2sü ku2szal kus2z ku1s1za ku2sza2r kusz1e2s ku1s1ze ku2sz1é2l ku1s1zé ku2sz1é2p ku2szét ku2sz1il ku1s1zi ku2szis ku2s1zü2 2k1u2ta1ló ku1ta 2k1u2ta1sí 2k1u2taz ku2tál ku1tá 2k1u2tán 2k1utc 2k1u2tol ku1to 2k1u2tód ku1tó ku2tó1p2 ku2z2s 1kú kú2jí 2k1újs kú2p1a2 kú2p1á kú2p1e kú2t1a2 kú2t1á2 kú2t1e kút1fé2 kútfél1 kú2tos kú1to kú2t1Å‘ 2kú2tu kú2t1ü2 1kü kü2ge kü2g2y 2k1ü2lep kü1le kü2lo kül2t1á 2k1ü2reg kü1re 2k1ü2rí kü2rü 2k1üst kü2s1zá küs2z kü2s1zí 2k1ütk küvés3s kü1vé 2k1ü2vö 2k1ü2ze 1kű 2k1űrh 2k1űrm kű2ro kű2r1Å‘s kű1rÅ‘ kű2zé kű2zÅ‘ 1k2van k1va k2varc 1k2vark kvá2nyol k1vá kván2y kvá1nyo kváro1si2 kvá1ro kvé2se2l k1vé kvé1se kvé2so kvés3s 1k2vin k1vi 1k2vitt k2vóc k1vó k2vó1ta k2vó1tá kvÅ‘1c1sa2 k1vÅ‘ kvÅ‘c2s 1ky kyd2n ky2fajtán ky1fa kyfajt2 kyfaj1tá ky2fajtár ky2fajtát ky1i2s ky1i2v kyk2k kyk2ne ky2se ky2s1ü2ve2g. ky1sü kysü1ve ky1üz kza2tal k1za kza1ta kza2t1e2 kza2t1ó2 2l. fl. 1la laa2d la1a flaa2d fla1a laát1 la1á flaát1 fla1á laá2ta2 flaá2ta2 2labár la1bá flabár fla1bá 3labd flabd 2l1abs fl1abs la2c1ag la1ca fla2c1ag fla1ca la2c1aj fla2c1aj la2c1al fla2c1al la2cem la1ce fla2cem fla1ce la2c1e1te fla2c1e1te la2c1hé lac2h fla2c1hé flac2h lac1i1ta la1ci flac1i1ta fla1ci lac2k1orr lac1ko flac2k1orr flac1ko lac1orr la1co flac1orr fla1co la2c1ö2 fla2c1ö2 la2cÅ‘ fla2cÅ‘ la2csalj l2acsal lac2s la1c1sa fla2csalj fl2acsal flac2s fla1c1sa la2c3ság la1c1sá fla2c3ság fla1c1sá la2c3sor la1c1so fla2c3sor fla1c1so lac3sü2l la1c1sü flac3sü2l fla1c1sü la2c3süt fla2c3süt lac3s2z flac3s2z la2cú fla2cú la2cü fla2cü 2l1a2da1ta la1da fl1a2da1ta fla1da 2l1a2datb fl1a2datb 2l1a2dat1k2 fl1a2dat1k2 2l1a2datn fl1a2datn 2l1a2da1to fl1a2da1to 2l1a2datr fl1a2datr 2l1a2dat1t2 fl1a2dat1t2 2l1a2da1tu fl1a2da1tu ladás1s la1dá fladás1s fla1dá 2l1adl fl1adl 2l1a2dog la1do fl1a2dog fla1do 2l1a2do1má fl1a2do1má 3l2a3don fl2a3don ladói2ko la1dó ladó1i fladói2ko fla1dó fladó1i 2l1a2duk la1du fl1a2duk fla1du la1dy2 fla1dy2 lae2c la1e flae2c fla1e lae2d flae2d lae2gés2z1 lae2gé flae2gés2z1 flae2gé lae2l flae2l lae2n flae2n lae2r flae2r laé2d la1é flaé2d fla1é laé2r flaé2r 2laf8f 2laff flaff la1f8l la1fl fla1fl la2gac la1ga fla2gac fla1ga lag1a2dó flag1a2dó la2g1a2n fla2g1a2n lag1ass flag1ass la2g1a2t fla2g1a2t la2ga1u fla2ga1u la2gav fla2gav la2gág la1gá fla2gág fla1gá lag1áll flag1áll la2g1á2r. fla2g1á2r. la2g1á2rá fla2g1á2rá la2g1árb fla2g1árb la2g1á2re2 fla2g1á2re2 la2g1á2ré fla2g1á2ré la2g1árf fla2g1árf la2g1árff fla2g1árff lag1árï¬ ï¬‚ag1árï¬ lag1ár1fl flag1ár1fl la2g1árh fla2g1árh la2g1árk fla2g1árk la2g1árm fla2g1árm la2g1árn fla2g1árn la2g1á2ro fla2g1á2ro la2g1árr fla2g1árr la2g1ár1s2 fla2g1ár1s2 la2g1árt fla2g1árt la2g1e1re la1ge fla2g1e1re fla1ge la2gés la1gé fla2gés fla1gé la2gid la1gi fla2gid fla1gi la2g1i2k fla2g1i2k la2gim fla2gim la2gis fla2gis la2gí fla2gí la2g1ont la1go fla2g1ont fla1go la2g1os2z fla2g1os2z la2góc la1gó fla2góc fla1gó la2g1ó2rá fla2g1ó2rá la2gó1vá fla2gó1vá la2gön la1gö fla2gön fla1gö la2g1ud la1gu fla2g1ud fla1gu la2g1ur fla2g1ur la2g1ut fla2g1ut la2g1ü fla2g1ü la2gű fla2gű 2l1ag2y. lag2y fl1ag2y. flag2y 2l1agyb fl1agyb 2l1a2gyi fl1a2gyi la2gyú fla2gyú la2i1re la1i fla2i1re fla1i la2i2s. fla2i2s. la2jag la1ja fla2jag fla1ja la2j1a2l fla2j1a2l la2jap fla2jap laj1ass flaj1ass laj1a2s2z flaj1a2s2z la2j1az fla2j1az la2j1ál la1já fla2j1ál fla1já 2l1a2jánl fl1a2jánl la2j1á2r. l2ajár fla2j1á2r. fl2ajár la2j1árh fla2j1árh la2j1árn fla2j1árn la2j1árs fla2j1árs la2j1árt fla2j1árt la2jás fla2jás la2j1áth fla2j1áth la2j1áts fla2j1áts la2j1elt la1je fla2j1elt fla1je la2jen fla2jen la2j1es fla2j1es la1ji2 fla1ji2 la2jin fla2jin la2j1is fla2j1is 2la2jí fla2jí la2j1ol la1jo fla2j1ol fla1jo la2j1oml fla2j1oml la2j1or fla2j1or 2lajoz flajoz la2j1ór la1jó fla2j1ór fla1jó la2j1ös la1jö fla2j1ös fla1jö la2jÅ‘ fla2jÅ‘ l2ajs fl2ajs laj1s2z flaj1s2z la2j1u2t la1ju fla2j1u2t fla1ju la2j1ü2 fla2j1ü2 la2kad la1ka fla2kad fla1ka lak1alj l2akal flak1alj fl2akal la2k1alm fla2k1alm la2k1a2lo fla2k1a2lo lak2a2t1a2n l2aka1ta flak2a2t1a2n fl2aka1ta la2k1ác la1ká fla2k1ác fla1ká la2k1álk fla2k1álk lak1áll flak1áll la2k1árn fla2k1árn lak1ásás laká1sá flak1ásás flaká1sá 2lak1ci flak1ci la2k1eg la1ke fla2k1eg fla1ke la2k1e2l fla2k1e2l la2k1é2r. la1ké fla2k1é2r. fla1ké la2kér1te fla2kér1te la2k1i1ko la1ki fla2k1i1ko fla1ki la2k1ír la1kí fla2k1ír fla1kí lak2k1as lak1ka flak2k1as flak1ka lak2ke2c lak1ke flak2ke2c flak1ke lak2kel flak2kel lak2kol lak1ko flak2kol flak1ko 2l1akkor fl1akkor lak2kö2l lak1kö flak2kö2l flak1kö la1k1lu fla1k1lu 2l1aknáb lak1ná fl1aknáb flak1ná 2l1aknáh fl1aknáh 2l1aknás fl1aknás la2kob la1ko fla2kob fla1ko l2a2k1op fl2a2k1op l2a2k1orm fl2a2k1orm la2k1os2z l2akos fla2k1os2z fl2akos la2k1ov fla2k1ov 2lakóz la1kó flakóz fla1kó la2k1ös la1kö fla2k1ös fla1kö la1k2rém l2ak1ré fla1k2rém fl2ak1ré lak2rip lak1ri flak2rip flak1ri la1k2ru fla1k2ru laks2 flaks2 2l1ak2t. fl1ak2t. 2l1aktiv lak1ti fl1aktiv flak1ti la2kuj la1ku fla2kuj fla1ku 2laku1lá flaku1lá 2lakulg flakulg 2lakulh flakulh 2lakulj flakulj 2lakuln flakuln 2laku1lo flaku1lo 2laku1ló flaku1ló 2lakuls flakuls 2laku1lu flaku1lu 2lakulv flakulv 2lakús la1kú flakús fla1kú la2k1ú2to fla2k1ú2to 2lakúv flakúv 2lak1za flak1za la2la2g1 1la1la fla2la2g1 fla1la l1a2la1ku fl1a2la1ku 2l1a2lá1í la1lá fl1a2lá1í fla1lá lalás1s flalás1s 2l1alb fl1alb 2l1alc fl1alc 2l1alf fl1alf 2l1alff fl1alff 2l1alï¬ ï¬‚1alï¬ 2l1alfl fl1alfl 2l1aljn fl1aljn 2l1al1ka fl1al1ka 2l1alkot lal1ko fl1alkot flal1ko 2l1al1ku fl1al1ku 2l1al1le fl1al1le lal2tár lal1tá flal2tár flal1tá lal2te flal2te 2l1alt2i. lal1ti fl1alt2i. flal1ti 2l1alton1k2 lal1to fl1alton1k2 flal1to lal2t1ó2 flal2t1ó2 lal2t1ü2 flal2t1ü2 2l1alt1vé fl1alt1vé 2l1al1vi fl1al1vi lam1a1da l2amad la1ma flam1a1da fl2amad fla1ma la2m1a1ka fla2m1a1ka la2m1an2y fla2m1an2y l2a2m1a2p fl2a2m1a2p la2m1a1rá fla2m1a1rá la2m1a2z fla2m1a2z lam2bat lam1ba flam2bat flam1ba l2ame2g la1me fl2ame2g fla1me la2m1eg2y fla2m1eg2y la2m1e1le fla2m1e1le lam1emb flam1emb la2m1es2z fla2m1es2z la2mé2k la1mé fla2mé2k fla1mé lam1é1le flam1é1le la2mé1ne fla2mé1ne la2m1érv fla2m1érv la2minv la1mi fla2minv fla1mi la2m1ism fla2m1ism la2m1ist fla2m1ist la2m1í2 fla2m1í2 2l1am1mó fl1am1mó la2m1ol la1mo fla2m1ol fla1mo lam1org flam1org la2m1os2z l2amos fla2m1os2z fl2amos la2m1ó2r la1mó fla2m1ó2r fla1mó la2mö fla2mö lam1s flam1s la2m1ur la1mu fla2m1ur fla1mu la2m1ü fla2m1ü la2nac la1na fla2nac fla1na l2a2n1a2d fl2a2n1a2d lana2g flana2g la2n1aj fla2n1aj la2nal fla2nal 1lan1a1la flan1a1la la2nam fla2nam la2nar fla2nar la2n1áll la1ná fla2n1áll fla1ná la2n1á2r. fla2n1á2r. la2n1á2ra1i laná1ra fla2n1á2ra1i flaná1ra la2n1á2rak fla2n1á2rak la2n1á2rá fla2n1á2rá la2n1árr fla2n1árr la2n1árv fla2n1árv lanás1s flanás1s lan2csel lanc2s lan1c1se flan2csel flanc2s flan1c1se lan2csem flan2csem lan2c1si flan2c1si lan2csol lan1c1so flan2csol flan1c1so lan2d1ál lan1dá flan2d1ál flan1dá lan2d1el lan1de flan2d1el flan1de lan2d1é2r. lan1dé flan2d1é2r. flan1dé lan2diz lan1di flan2diz flan1di la2ner la1ne fla2ner fla1ne la2nes fla2nes la2n1ép la1né fla2n1ép fla1né lan1f2 flan1f2 lan1ff flan1ff lan1ï¬ ï¬‚an1ï¬ lan1fl flan1fl lan2g1as lan1ga flan2g1as flan1ga lan2gen lan1ge flan2gen flan1ge lang3g flang3g 2l1angin lan1gi fl1angin flan1gi la2nil la1ni fla2nil fla1ni l2a2nip fl2a2nip la2nis fla2nis 2l1ankét lan1ké fl1ankét flan1ké lan1kr flan1kr la2n1os2z l2anos la1no fla2n1os2z fl2anos fla1no lans2 flans2 lan2tag lan1ta flan2tag flan1ta 2lantác lan1tá flantác flan1tá la2nü fla2nü la2nyag lan2y la1nya fla2nyag flan2y fla1nya 1lany1a2la flany1a2la la2nya1u fla2nya1u 2lanyá1i la1nyá flanyá1i fla1nyá la2ny1ál fla2ny1ál 2lanyán flanyán la2nyás fla2nyás 2lanyáv flanyáv la2ny1e2lem l2a1nye lanye1le fla2ny1e2lem fl2a1nye flanye1le lany1e2rÅ‘ flany1e2rÅ‘ la2ny1í2r l2a1nyí fla2ny1í2r fl2a1nyí la2ny1ol l2a1nyo fla2ny1ol fl2a1nyo la2nyó fla2nyó l2a2nyü fl2a2nyü laó2r la1ó flaó2r fla1ó 2l1a2p2a. la1pa fl1a2p2a. fla1pa la3pa1i fla3pa1i lap1akk flap1akk lap1akt flap1akt 1lap1a2la l2apal flap1a2la fl2apal lap1alk flap1alk la3part fla3part lap1atm flap1atm lap1att flap1att la2p1a2u fla2p1a2u la2paz fla2paz la2páb la1pá fla2páb fla1pá la2p1á2g fla2p1á2g la2pák fla2pák la2pán fla2pán lap1á2rá flap1á2rá lap1árh flap1árh la2p1árr fla2p1árr 2lapátom lapá1to flapátom flapá1to la2pe2l la1pe fla2pe2l fla1pe lap1e1le flap1e1le la2pe2m fla2pe2m la2p1en fla2p1en la2p1e2s fla2p1e2s la2pik la1pi fla2pik fla1pi 1lap1il1la flap1il1la lap1il1le flap1il1le la2p1im fla2p1im la2p1i2n2a. lapi1na fla2p1i2n2a. flapi1na la2p1ing fla2p1ing la2p1int fla2p1int la2p1i2p fla2p1i2p la2p1i2s fla2p1i2s la2p1i1ta fla2p1i1ta la2p1iz fla2p1iz lap2lat lap1la flap2lat flap1la la2p1o2ku la1po fla2p1o2ku fla1po lap1or1g2 flap1or1g2 lap1orn flap1orn lap1orz flap1orz lapos1s flapos1s la2p2ó. la1pó fla2p2ó. fla1pó la2pób fla2pób la2pón fla2pón la2pór fla2pór la2pö fla2pö la2pÅ‘ fla2pÅ‘ 2lappar lap1pa flappar flap1pa 2lap1rí flap1rí lap1s2 flap1s2 2lapún la1pú flapún fla1pú 2lapúv flapúv la2pű fla2pű la2r2a. la1ra fla2r2a. fla1ra la2ran fla2ran 2l1arc fl1arc larc3c flarc3c la2rén la1ré fla2rén fla1ré lar1g2 flar1g2 lar2m1e flar2m1e lar2min lar1mi flar2min flar1mi l1art fl1art 2l1arz fl1arz la1s2pa fla1s2pa la1s2pi fla1s2pi la1st1ra l2astr fla1st1ra fl2astr la2sz1abl l2aszab las2z la1s1za fla2sz1abl fl2aszab flas2z fla1s1za la2sz1al2t. fla2sz1al2t. la2szas fla2szas 2l1a2szat fl1a2szat la2szás la1s1zá fla2szás fla1s1zá la2sz1én la1s1zé fla2sz1én fla1s1zé la2szód la1s1zó fla2szód fla1s1zó lasz3s flasz3s lasz2t1alj lasz1ta flasz2t1alj flasz1ta l1asztam fl1asztam la2sz1út la1s1zú fla2sz1út fla1s1zú la2t1a2d la1ta fla2t1a2d fla1ta la2t1aj fla2t1aj lat1alak lata1la flat1alak flata1la la2t1alk fla2t1alk la2t1alt fla2t1alt la2t1a2ro l2atar fla2t1a2ro fl2atar lat1ar1ti flat1ar1ti lat1aszt latas2z flat1aszt flatas2z lat1att flat1att la2ta1u fla2ta1u la2taz fla2taz l2a2t1áj la1tá fl2a2t1áj fla1tá lat1áll l2atál flat1áll fl2atál la2t1árad l2atár latá1ra fla2t1árad fl2atár flatá1ra la2t1á2ra1i fla2t1á2ra1i la2t1á2rak fla2t1á2rak la2t1á2ram fla2t1á2ram la2t1á2rat fla2t1á2rat la2t1á2ráb latá1rá fla2t1á2ráb flatá1rá la2t1á2ráh fla2t1á2ráh la2t1á2rán fla2t1á2rán la2t1á2ré fla2t1á2ré la2t1árh fla2t1árh la2t1árn fla2t1árn la2t1á2rok latá1ro fla2t1á2rok flatá1ro la2t1árr fla2t1árr la1t1ár1tá fla1t1ár1tá la2t1ár1tó fla2t1ár1tó la2t1á2rú fla2t1á2rú la2t1árv fla2t1árv lat1á2s2z l2atás flat1á2s2z fl2atás la2t1á1ta fla2t1á1ta latdi2al lat1di latdi1a flatdi2al flat1di flatdi1a la2t1e2g la1te fla2t1e2g fla1te la2t1e2lem late1le fla2t1e2lem flate1le la2t1ell fla2t1ell la2tep fla2tep la2t1er1k2 fla2t1er1k2 late2s flate2s la2t1ess fla2t1ess la2te1s1ze lates2z fla2te1s1ze flates2z la2t1e1ti fla2t1e1ti la2t1e1to fla2t1e1to la2t1e2vÅ‘ fla2t1e2vÅ‘ la2t1é2ke2 la1té fla2t1é2ke2 fla1té lat1é2ké flat1é2ké lat1ékk flat1ékk la2t1é2ré l2atér fla2t1é2ré fl2atér la2t1é2rÅ‘ fla2t1é2rÅ‘ la2tér1te fla2tér1te la2t1érv fla2t1érv lat1éss flat1éss la2t1i2ko la1ti fla2t1i2ko fla1ti lat1ik1ra flat1ik1ra lat1in1te l2atin flat1in1te fl2atin la2t1inv fla2t1inv la2t1ist fla2t1ist la2t1iz fla2t1iz l2a2t1ír la1tí fl2a2t1ír fla1tí lat1í1vé flat1í1vé lat1k2 flat1k2 la2toj la1to fla2toj fla1to la2t1okm fla2t1okm lat1ol1da flat1ol1da la2toll fla2toll la2t1oml fla2t1oml la2t1os2z fla2t1os2z la2t1otth fla2t1otth la2t1ó1rá la1tó fla2t1ó1rá fla1tó la2t1ó1ri fla2t1ó1ri la2t1ö1vi la1tö fla2t1ö1vi fla1tö la2t1ö2vö fla2t1ö2vö la2t1Å‘r la1tÅ‘ fla2t1Å‘r fla1tÅ‘ 2l1atta1ko lat1ta fl1atta1ko flat1ta latta2n1ó2 flatta2n1ó2 2lattv flattv la2tut la1tu fla2tut fla1tu la2tül la1tü fla2tül fla1tü lat1ü1ze l2atüz flat1ü1ze fl2atüz l2atű2z la1tű fl2atű2z fla1tű la2t1ű1zÅ‘ fla2t1ű1zÅ‘ la2tyá lat2y fla2tyá flat2y la2ub la1u fla2ub fla1u lau2d2e. lau1de flau2d2e. flau1de la2uk fla2uk la2um fla2um la2us fla2us la2u1to fla2u1to laü2z la1ü flaü2z fla1ü la2vat la1va fla2vat fla1va 2l1a2vu fl1a2vu la1yé fla1yé la1yig fla1yig 2lay1rÅ‘ flay1rÅ‘ lazac1c la1za flazac1c fla1za laza2c3s flaza2c3s laz1ma1 flaz1ma1 2laz1má flaz1má 2l1a2zon la1zo fl1a2zon fla1zo 1lá flá lá2bar lá1ba flá2bar flá1ba lábas1s flábas1s lá2bál lá1bá flá2bál flá1bá lá2b1e2l lá1be flá2b1e2l flá1be lá2b1i1na lá1bi flá2b1i1na flá1bi lá2b1i2z flá2b1i2z láb1org lá1bo fláb1org flá1bo láb1orr fláb1orr lá2bö flá2bö lá2bÅ‘ flá2bÅ‘ 2láb1rá fláb1rá lá2b1u2s lá1bu flá2b1u2s flá1bu lá2bü flá2bü lá1c1sé2 lác2s flá1c1sé2 flác2s lá2csét flá2csét lá2cs1il lá1c1si flá2cs1il flá1c1si lá2csi2p flá2csi2p lá2c1sí2 flá2c1sí2 láda1s lá1da fláda1s flá1da lá2d1az flá2d1az lá2d1e2r lá1de flá2d1e2r flá1de lá2det flá2det lá2dim lá1di flá2dim flá1di lá2d1or lá1do flá2d1or flá1do lá2d1ott flá2d1ott lá2d1ó flá2d1ó lá2dül lá1dü flá2dül flá1dü lá2d2z flá2d2z lá2gab lá1ga flá2gab flá1ga lá2ga2c flá2ga2c lág1a2da lá2gad flág1a2da flá2gad lá2g1a2g flá2g1a2g lá2g1al flá2g1al lá2ga2n flá2ga2n lá2gas flá2gas lág1ass flág1ass lága2t flága2t lá2g1atl flá2g1atl lá2g1a1to flá2g1a1to lá2g1att flá2g1att lá2gál lá1gá flá2gál flá1gá lág1áll flág1áll lá2gám flá2gám lá2g1á2rak lágá1ra flá2g1á2rak flágá1ra lá2g1á2ro flá2g1á2ro lá2g1á2to flá2g1á2to lá2gép lá1gé flá2gép flá1gé lá2gi2d lá1gi flá2gi2d flá1gi lá2gi2gé lági2g flá2gi2gé flági2g lá2gim flá2gim lá2g1ott lá1go flá2g1ott flá1go lá2g1ó2 flá2g1ó2 lá2gÅ‘ flá2gÅ‘ lág1s flág1s lá2gü flá2gü lá2gű flá2gű 2lág2y. lág2y flág2y. flág2y 2lá1gyá flá1gyá lá2has lá1ha flá2has flá1ha 2lá1he flá1he láí2r lá1í fláí2r flá1í lá2lad lá1la flá2lad flá1la lá2l1a1ka flá2l1a1ka l2á2l1al fl2á2l1al lála2n flála2n lá2l1an2y flá2l1an2y lá2l1ar flá2l1ar lá2la1u flá2la1u lá2l1ág 1lá1lá flá2l1ág flá1lá lá2l1á2l flá2l1á2l lálás1s flálás1s lá2l1átj flá2l1átj 2l1áldás lál1dá fl1áldás flál1dá 2l1áldoz lál1do fl1áldoz flál1do lá2lel lá1le flá2lel flá1le lá2l1est flá2l1est lá2l1e2v flá2l1e2v lá2lél lá1lé flá2lél flá1lé lá2lim lá1li flá2lim flá1li lá2l1is flá2l1is lá2lí flá2lí 2l1állam lál1la fl1állam flál1la 2l1állat fl1állat 2l1állás lál1lá fl1állás flál1lá 2l1állk fl1állk 2l1állom lál1lo fl1állom flál1lo 2l1állv fl1állv 2l1álmaim lál1ma lálma1i fl1álmaim flál1ma flálma1i 2l1álmo2k. lál1mo fl1álmo2k. flál1mo 2l1álmom fl1álmom 2l1álmos fl1álmos 2l1álmuk lál1mu fl1álmuk flál1mu 2l1álmunkb fl1álmunkb 2l1álokaih lá2l1o2ka1i lá1lo lálo1ka fl1álokaih flá2l1o2ka1i flá1lo flálo1ka 2l1álokain fl1álokain 2l1álokair fl1álokair 2l1álokán lá2l1o2ká fl1álokán flá2l1o2ká 2l1álokát fl1álokát 2l1álo2ká1u fl1álo2ká1u lá2lo1ko flá2lo1ko 2l1ál1o2konk fl1ál1o2konk 2l1á2l1o2ku fl1á2l1o2ku lál1ó1rá lá1ló flál1ó1rá flá1ló lá1lö2 flá1lö2 lá2l1öv flá2l1öv 2l1á2l1u2t lá1lu fl1á2l1u2t flá1lu lá2l1ú2t lá1lú flá2l1ú2t flá1lú lá2lü flá2lü lá2lű flá2lű lá2m1a2d lá1ma flá2m1a2d flá1ma lá2m1aj flá2m1aj lám1ass flám1ass lá2m1a1u flá2m1a1u lá2m1ál lá1má flá2m1ál flá1má lá2m1á2z flá2m1á2z lám1b2 flám1b2 lám1ell lá1me flám1ell flá1me lám1e1rÅ‘ flám1e1rÅ‘ lá2mes flá2mes lá2mék lá1mé flá2mék flá1mé lá2m1érv flá2m1érv lá2m1int lá1mi flá2m1int flá1mi lám1ist flám1ist lá2mí flá2mí lá2m1or lá1mo flá2m1or flá1mo lá2mó flá2mó lá2mö flá2mö lá2mÅ‘ flá2mÅ‘ lá2m1ú2t. lá1mú flá2m1ú2t. flá1mú lá2mü flá2mü lá2mű flá2mű lá1na2 flá1na2 lá2n1ag flá2n1ag lá2nal flá2nal lá2n1an flá2n1an lá2nar flá2nar lá2n1as flá2n1as lá1ná2 flá1ná2 lá2nár flá2nár lánc3c flánc3c lán2ce2l lán1ce flán2ce2l flán1ce lán2c1ég lán1cé flán2c1ég flán1cé lán2c1sá lánc2s flán2c1sá flánc2s lá2nem lá1ne flá2nem flá1ne lá2n1er flá2n1er lá2nép lá1né flá2nép flá1né lán2g1at lán1ga flán2g1at flán1ga lán2gál lán1gá flán2gál flán1gá lán2g1e flán2g1e lá2nil lá1ni flá2nil flá1ni lá2n1is flá2n1is lán2k1e2l lán1ke flán2k1e2l flán1ke lán2k1ó2ra lán1kó flán2k1ó2ra flán1kó lán2k1ö2v lán1kö flán2k1ö2v flán1kö lá3nok lá1no flá3nok flá1no lá2nol flá2nol lán1sp flán1sp lán1s2z flán1s2z lánt2 flánt2 lán1tr flán1tr lá2nü flá2nü lá2ny1a2d lán2y lá1nya flá2ny1a2d flán2y flá1nya lá2nyaj flá2nyaj lá2nya1la flá2nya1la lá2nyam flá2nyam lánya2n flánya2n lá2nyar flá2nyar lá2ny1as flá2ny1as lá2nyav flá2nyav lá2ny1el lá1nye flá2ny1el flá1nye lá2ny1é2r. lá1nyé flá2ny1é2r. flá1nyé lá2nyó flá2nyó lá2nyö flá2nyö lá2pét lá1pé flá2pét flá1pé lá1pi2 flá1pi2 2l1á2pol lá1po fl1á2pol flá1po lá2rad lá1ra flá2rad flá1ra 2l1á2ra1i fl1á2ra1i lá2ra1ka flá2ra1ka l1á2rakb fl1á2rakb l1á2rakk fl1á2rakk l1á2rakr fl1á2rakr lá2r1a2l flá2r1a2l 2l1á2ram fl1á2ram 2l1á2rat fl1á2rat lá2r1av flá2r1av l1á2raz fl1á2raz 2láre2n lá1re fláre2n flá1re lá2res flá2res l1árkot lár1ko fl1árkot flár1ko 2l1ár1nya lárn2y fl1ár1nya flárn2y lár1s2 flár1s2 lárt2 flárt2 lár1tr flár1tr 2l1á2r2u. lá1ru fl1á2r2u. flá1ru lá2rug flá2rug 2l1á2ruh fl1á2ruh 2l1á2ruk fl1á2ruk 2l1á2rul fl1á2rul 2l1á2rus fl1á2rus 2l1á2rut fl1á2rut 2l1á2ruv fl1á2ruv lá2rú1a lá1rú flá2rú1a flá1rú lá2rü flá2rü lá2s1a2d lá1sa flá2s1a2d flá1sa lá2s1aj flá2s1aj lá2sal flá2sal lá2s1a2r flá2s1a2r lá2saz flá2saz lá2s1á2g lá1sá flá2s1á2g flá1sá lá2s1á2ra1i lásá1ra flá2s1á2ra1i flásá1ra lá2s1árak flá2s1árak lá2s1á2rá flá2s1á2rá lá2s1árb flá2s1árb lá2s1á2ré flá2s1á2ré lá2s1árh flá2s1árh lá2s1árr flá2s1árr lá2s1árt2 flá2s1árt2 2l1á2sás fl1á2sás lá2s1á2to flá2s1á2to lá2se flá2se lásegyez1 lás1e2g2y láse1gye flásegyez1 flás1e2g2y fláse1gye lá2sí2r lá1sí flá2sí2r flá1sí lá2sott lá1so flá2sott flá1so lás1otth flás1otth lá1só2 flá1só2 2l1á2s2ó. fl1á2s2ó. lá2s1ór flá2s1ór lá2sÅ‘ flá2sÅ‘ lás3s1zé lás2s2z2 flás3s1zé flás2s2z2 lá2su2t lá1su flá2su2t flá1su lá2sű flá2sű lá2sza2s lás2z lá1s1za flá2sza2s flás2z flá1s1za lás3zav flás3zav lás3zá1ro lá1s1zá flás3zá1ro flá1s1zá 2lászed lá1s1ze flászed flá1s1ze lá2szeg flá2szeg lá2sz1e2m flá2sz1e2m lá2szen flá2szen lá2szi2p lá1s1zi flá2szi2p flá1s1zi lás2zkés2z1 lász1k2 lász1ké flás2zkés2z1 flász1k2 flász1ké lá1s1zö2 flá1s1zö2 lá2szö2l flá2szö2l lá2szöv flá2szöv lász3s flász3s lá2s1zü flá2s1zü lá2taj lá1ta flá2taj flá1ta lá2t1e2re lá1te flá2t1e2re flá1te láté2tel lá1té láté1te fláté2tel flá1té fláté1te 2l1át1he fl1át1he lá2t1i2o lá1ti flá2t1i2o flá1ti 2l1á2tí fl1á2tí 2lát1kö flát1kö lá2t1os2z lá1to flá2t1os2z flá1to lá1t2rá flá1t2rá lá1t1ri flá1t1ri 2l1át1te fl1át1te 2l1át1tö fl1át1tö 2l1át1tű fl1át1tű l1á2t1ú2s lá1tú fl1á2t1ú2s flá1tú 2l1át1vé fl1át1vé l1át1vi fl1át1vi 2lá1vi flá1vi lá2viz flá2viz 2l1á2vó fl1á2vó 2lá1vu flá1vu lá1vy flá1vy lá2z1adot lá1za láza1do flá2z1adot flá1za fláza1do lá2z1al flá2z1al lá2z1árh lá1zá flá2z1árh flá1zá láz2á2rus lázá1ru fláz2á2rus flázá1ru 3lázb flázb lá2z1el lá1ze flá2z1el flá1ze lá2z1i2s lá1zi flá2z1i2s flá1zi lá1zo2 flá1zo2 lá2z1olt flá2z1olt lá2zsal láz2s lá1z1sa flá2zsal fláz2s flá1z1sa lá2zsan flá2zsan lá2z1só flá2z1só láz3s2z fláz3s2z lbe2at l1be lbe1a flbe2at fl1be flbe1a lbe2i flbe2i l2b1is l1bi fl2b1is fl1bi lb2li flb2li lb2lo flb2lo lb2lú flb2lú lb2ra flb2ra l1b2ri fl1b2ri lb2ró flb2ró l1b2ru fl1b2ru lc1ajt l1ca flc1ajt fl1ca lc1alk flc1alk lc1a2n. flc1a2n. l2c1a2to fl2c1a2to l2c1ág l1cá fl2c1ág fl1cá l2c1ál fl2c1ál lc3c1si lc2c2s flc3c1si flc2c2s lc3c1so flc3c1so lc3c1sö flc3c1sö l2c1e2le l1ce fl2c1e2le fl1ce lc1elr flc1elr l2c1emb fl2c1emb lc1emel lce1me flc1emel flce1me lc1es2z flc1es2z l2c1e2v fl2c1e2v lce2z flce2z l2c1e1ze fl2c1e1ze l2c1ép l1cé fl2c1ép fl1cé lc1é1vi flc1é1vi lc1fr flc1fr l1c3ha lc2h fl1c3ha flc2h l1c3há fl1c3há l1c3hi fl1c3hi l1c3ho fl1c3ho l1c3hu fl1c3hu l1c3hú fl1c3hú l1c3hü fl1c3hü l2c1i2d l1ci fl2c1i2d fl1ci lci2tér lci1té flci2tér flci1té lc1ív l1cí flc1ív fl1cí lc1k2r flc1k2r l1c2lu fl1c2lu l2c1ost l1co fl2c1ost fl1co l2c1os2z fl2c1os2z lc1ó2r l1có flc1ó2r fl1có lc1ök l1cö flc1ök fl1cö lc1ös flc1ös lc1pr flc1pr l2cs1a2d lc2s l1c1sa fl2cs1a2d flc2s fl1c1sa l2csakt fl2csakt lcs1alap lcsa1la flcs1alap flcsa1la l2cs1a2n fl2cs1a2n lcsa2p1á2g lcsa1pá flcsa2p1á2g flcsa1pá lcs1apr flcs1apr lcsa2r flcsa2r lcs1a1ra flcs1a1ra lcs1a1ro flcs1a1ro l2cs1a2s fl2cs1a2s l2csaz fl2csaz l2cs1ág l1c1sá fl2cs1ág fl1c1sá l2cs1ál fl2cs1ál l2c2s1á2t1a2 fl2c2s1á2t1a2 l2csá1tá fl2csá1tá l2c2s1áth fl2c2s1áth l2c2s1átj fl2c2s1átj l2c2sátv fl2c2sátv l2csec l1c1se fl2csec fl1c1se l2cs1e2g fl2cs1e2g l2c3sej fl2c3sej l2c2s1elf fl2c2s1elf l2c2s1elff fl2c2s1elff lcs1elï¬ ï¬‚cs1elï¬ lcs1el1fl flcs1el1fl l2cs1elt fl2cs1elt l2cs1elv fl2cs1elv lcs1emb flcs1emb l2cs1eml fl2cs1eml l2cserd fl2cserd lcse2r1e2l lcse1re flcse2r1e2l flcse1re l2c2s1e2rÅ‘ fl2c2s1e2rÅ‘ lc1s1e1se flc1s1e1se lcse2t flcse2t l2cs1e1te fl2cs1e1te l2csél l1c1sé fl2csél fl1c1sé l2cs1é2rés lcsé1ré fl2cs1é2rés flcsé1ré l2csér1le fl2csér1le l2csér1te fl2csér1te l2cs1ér1té fl2cs1ér1té lcs1ér1ve flcs1ér1ve l2cs1ér1vé fl2cs1ér1vé lcsé2sz1ék lcsés2z lcsé1s1zé flcsé2sz1ék flcsés2z flcsé1s1zé l2cs1é2te fl2cs1é2te l2c2s1étk fl2c2s1étk l2c2s1é2vét lcsé1vé fl2c2s1é2vét flcsé1vé l2c2si1dé l1c1si fl2c2si1dé fl1c1si l2csi1mi fl2csi1mi l2c2s1inf fl2c2s1inf l2c2s1inff fl2c2s1inff l2cs1inï¬ ï¬‚2cs1inï¬ l2cs1infl fl2cs1infl l2cs1ing fl2cs1ing l2cs1int fl2cs1int l2cs1i2pa fl2cs1i2pa l2c2s1irt fl2c2s1irt l2cs1isk fl2cs1isk l2cs1ism fl2cs1ism l2csi1ta fl2csi1ta l2cs1í2z l1c1sí fl2cs1í2z fl1c1sí lcs1k2 flcs1k2 l2c2s1okm l1c1so fl2c2s1okm fl1c1so lcs1ors flcs1ors l2cs1ö2l l1c1sö fl2cs1ö2l fl1c1sö lcs1Å‘2sé l1c1sÅ‘ flcs1Å‘2sé fl1c1sÅ‘ lcs1p flcs1p lcs1s flcs1s lc3st2r flc3st2r l2c3sug l1c1su fl2c3sug fl1c1su lcs1ült l1c1sü flcs1ült fl1c1sü lc3s1zo lcs2z flc3s1zo flcs2z lc3s1zó flc3s1zó lc1tr flc1tr l2c1uj l1cu fl2c1uj fl1cu lc1ül l1cü flc1ül fl1cü lc1üt flc1üt l1c3zá lc2z fl1c3zá flc2z l1c3zo fl1c3zo ld1abl l1da fld1abl fl1da ld1abr fld1abr l2d1a2cé fl2d1a2cé l2d1a2da1to lda1da fl2d1a2da1to flda1da l2d1a2dá fl2d1a2dá lda1i2 flda1i2 lda2lag lda1la flda2lag flda1la lda2laj flda2laj lda2l1e2g lda1le flda2l1e2g flda1le lda2le2l flda2le2l ld2a2les fld2a2les lda2l1é2l lda1lé flda2l1é2l flda1lé lda2li2z lda1li flda2li2z flda1li lda2l1í2 flda2l1í2 lda2los lda1lo flda2los flda1lo ldalt2 fldalt2 lda2lu2s lda1lu flda2lu2s flda1lu l2d1ant fl2d1ant lda2nya ldan2y flda2nya fldan2y lda2nyá flda2nyá ld1a1pó fld1a1pó l2d1aran lda1ra fl2d1aran flda1ra l2d1arc fl2d1arc l2d1ark fl2d1ark lda2t1as lda1ta flda2t1as flda1ta lda2t1eg lda1te flda2t1eg flda1te ld2a2t1in lda1ti fld2a2t1in flda1ti lda2tó2s lda1tó flda2tó2s flda1tó ld1ág l1dá fld1ág fl1dá ld1áll fld1áll ld1álm fld1álm ld1árn fld1árn ldás3s fldás3s ld1br fld1br ld1eg2y l1de fld1eg2y fl1de l2d1e2kék lde1ké fl2d1e2kék flde1ké l2d1e2kén fl2d1e2kén l2d1e2ké1tÅ‘ fl2d1e2ké1tÅ‘ l2d1e2l1a fl2d1e2l1a l2d1e2le1me lde1le fl2d1e2le1me flde1le l2d1e2le1mi fl2d1e2le1mi l2d1e2lemn fl2d1e2lemn l2d1elér lde1lé fl2d1elér flde1lé l2d1elk fl2d1elk l2d1el1lá fl2d1el1lá l2d1e1lo fl2d1e1lo l2d1e2lÅ‘h lde1lÅ‘ fl2d1e2lÅ‘h flde1lÅ‘ l2d1e2lÅ‘vez ldelÅ‘1ve fl2d1e2lÅ‘vez fldelÅ‘1ve l2d1els fl2d1els l2d1el1tá fl2d1el1tá l2d1el1vé fl2d1el1vé l2d1ember ldem1be fl2d1ember fldem1be l2d1e2mel lde1me fl2d1e2mel flde1me l2d1eml fl2d1eml lde1p2 flde1p2 ld1e1pe fld1e1pe l2d1e2rÅ‘ fl2d1e2rÅ‘ ld1e2vé fld1e2vé l2d1ex fl2d1ex l2d1é2g l1dé fl2d1é2g fl1dé l2d1é2jér ldé1jé fl2d1é2jér fldé1jé ld1élm fld1élm l2d1ép fl2d1ép l2d1érc fl2d1érc l2d1é1ré fl2d1é1ré l2d1é2ri fl2d1é2ri l2d1ér1te fl2d1ér1te l2d1érz fl2d1érz l2d1és2z fl2d1és2z ldé2ves ldé1ve fldé2ves fldé1ve ld1f8l ld1fl fld1fl ld1fr fld1fr ld1gl fld1gl ld1gr fld1gr l2d1i2ga l1di fl2d1i2ga fl1di l2d1i1gé fl2d1i1gé l2d1ill fl2d1ill l2d1i1mi fl2d1i1mi l2d1ind fl2d1ind l2d1int fl2d1int ldi2p fldi2p ld1i1pa fld1i1pa l2d1i1s1za ldis2z fl2d1i1s1za fldis2z l2d1ín l1dí fl2d1ín fl1dí l2d1ír fl2d1ír l2d1íz fl2d1íz ld1kr fld1kr ld1kv fld1kv ldo2g1as l1do ldo1ga fldo2g1as fl1do fldo1ga l2d1o1la fl2d1o1la l2d1old fl2d1old l2d1olt fl2d1olt l2d1oml fl2d1oml ld1orc fld1orc ld1org fld1org l2d1os2z fl2d1os2z l2d1ó2rá l1dó fl2d1ó2rá fl1dó l2d1ó1ri fl2d1ó1ri l2d1öb l1dö fl2d1öb fl1dö ld1ök1le fld1ök1le l2d1örök ldö1rö fl2d1örök fldö1rö l2d1öv fl2d1öv ld1Å‘1ri l1dÅ‘ fld1Å‘1ri fl1dÅ‘ ld1Å‘sk fld1Å‘sk ld1pl fld1pl ld1pr fld1pr ld2rót ld1ró fld2rót fld1ró ld1sp fld1sp ld1udv l1du fld1udv fl1du ldu2r fldu2r ld1u1ra fld1u1ra ldus3s fldus3s l2d1u2t fl2d1u2t l2d1új l1dú fl2d1új fl1dú l2d1úr fl2d1úr l2d1ú2t fl2d1ú2t l2d1üg l1dü fl2d1üg fl1dü l2d1ü1le fl2d1ü1le l2d1ür fl2d1ür l2d1üz fl2d1üz l2d1űr l1dű fl2d1űr fl1dű l1d2y. fl1d2y. l1d3zá ld2z fl1d3zá fld2z l1d3zó fl1d3zó l1d3zu fl1d3zu 1le lea2bá le1a flea2bá fle1a lea2d flea2d lea2g flea2g lea2k flea2k lea2l flea2l lea2n flea2n lea2p flea2p le2a1ré fle2a1ré le2art fle2art lea2s2z flea2s2z lea2v flea2v leá2j le1á fleá2j fle1á leá2s fleá2s leá2z fleá2z 2l1e2béd le1bé fl1e2béd fle1bé le2bin le1bi fle2bin fle1bi le1b1la fle1b1la le1b1ra fle1b1ra leb2rek leb1re fleb2rek fleb1re leb2s fleb2s 2lecc flecc 2l1e2cet le1ce fl1e2cet fle1ce 2l1ecset lec2s le1c1se fl1ecset flec2s fle1c1se l1ed1di fl1ed1di le1d2res led1re fle1d2res fled1re le1d1ro fle1d1ro lee2s le1e flee2s fle1e le2e1u fle2e1u leé2r le1é fleé2r fle1é lefo1na2 le1fo flefo1na2 fle1fo lefo2nal flefo2nal le1fr fle1fr 2l1eft fl1eft le2ga1la le1ga fle2ga1la fle1ga lega2r flega2r le2g1a2s fle2g1a2s le2g1áll le1gá fle2g1áll fle1gá le3g2á1to fle3g2á1to le3g2áz fle3g2áz le3geb le1ge fle3geb fle1ge le2g1e2g fle2g1e2g le3g2ele2m. lege1le fle3g2ele2m. flege1le leg1ell fleg1ell le3g2elÅ‘1a lege1lÅ‘ fle3g2elÅ‘1a flege1lÅ‘ le3g2elÅ‘j fle3g2elÅ‘j le3g2elÅ‘1ké fle3g2elÅ‘1ké le3g2elÅ‘t fle3g2elÅ‘t le3ge2lÅ‘1ze le2g1e2lÅ‘z fle3ge2lÅ‘1ze fle2g1e2lÅ‘z le3g2elv2e. legel1ve fle3g2elv2e. flegel1ve le3g2el1vé fle3g2el1vé le2ge1ne fle2ge1ne le3g2erj fle3g2erj le3g2e2s. fle3g2e2s. le3g2eseb lege1se fle3g2eseb flege1se le3g2esek fle3g2esek le3g2ese2n. fle3g2ese2n. le3g2esn fle3g2esn le3g2esr fle3g2esr le3gest fle3gest le2g1e2s2z fle2g1e2s2z legé2d le1gé flegé2d fle1gé legé2l flegé2l le3gén fle3gén legg2 flegg2 le2gid le1gi fle2gid fle1gi le2g1is fle2g1is legmeg1 leg1me flegmeg1 fleg1me le3g2on le1go fle3g2on fle1go le2g1os fle2g1os le2g1óv le1gó fle2g1óv fle1gó le3göng le1gö fle3göng fle1gö le2g1ös fle2g1ös legpec1 leg1pe flegpec1 fleg1pe le2gu2t le1gu fle2gu2t fle1gu legvíz1 leg1ví flegvíz1 fleg1ví le1gyá2 leg2y fle1gyá2 fleg2y 2legyb flegyb 2legyed le1gye flegyed fle1gye l1e2gyel fl1e2gyel legy1e2lÅ‘r legye1lÅ‘ flegy1e2lÅ‘r flegye1lÅ‘ l1e2gyen1ge fl1e2gyen1ge l1e2gyék le1gyé fl1e2gyék fle1gyé le3gyi fle3gyi 2l1egyl fl1egyl le3gyo fle3gyo 2legys flegys l1egy1sé fl1egy1sé le3gyú fle3gyú le3gyű fle3gyű 2l1egyv fl1egyv le2ic le1i fle2ic fle1i lei2deg lei1de flei2deg flei1de lei2g flei2g lei2rá flei2rá lei2s flei2s le2ist fle2ist le2i1u fle2i1u lej2ta flej2ta lej2t1á flej2t1á le2kad le1ka fle2kad fle1ka le2k1a2p2u. leka1pu fle2k1a2p2u. fleka1pu le2k1ál le1ká fle2k1ál fle1ká leká2p fleká2p le2k1á2r. fle2k1á2r. le2k1á1ra fle2k1á1ra le2k1árb fle2k1árb 2l1e2k2e. le1ke fl1e2k2e. fle1ke le2k1eg fle2k1eg lek1els flek1els lek1emb flek1emb lek1e1me flek1e1me lek1erj flek1erj lek1e2rÅ‘ flek1e2rÅ‘ le2k1ér1tÅ‘ le1ké fle2k1ér1tÅ‘ fle1ké 2l1e2ké2s. fl1e2ké2s. le2k1id le1ki fle2k1id fle1ki le2kij fle2kij le2k1ik fle2k1ik lek1ist2 flek1ist2 le2kiz fle2kiz lekkés2z1 lek1ké flekkés2z1 flek1ké le1k1li fle1k1li lek1olt le1ko flek1olt fle1ko le2k1orz fle2k1orz le2k1ó2r le1kó fle2k1ó2r fle1kó le2k1Å‘2 fle2k1Å‘2 2lekt1ro flekt1ro 2lekt1ró flekt1ró le2k1ú2t le1kú fle2k1ú2t fle1kú le2küd le1kü fle2küd fle1kü 2l1e2l1a2d le1la fl1e2l1a2d fle1la l1el1do fl1el1do 2l1e2lekt 1le1le fl1e2lekt fle1le lele2ma flele2ma 2l1e2leme1i lele1me fl1e2leme1i flele1me 2l1e2lemek fl1e2lemek 2l1e2lemes fl1e2lemes 2lelemz flelemz lele2t1a2 flele2t1a2 lele2tel lele1te flele2tel flele1te lele2to flele2to 2lelég le1lé flelég fle1lé 2l1e2l1ér fl1e2l1ér lelés1s flelés1s lelé2s3z flelé2s3z 2l1el1go fl1el1go 2l1el1ha fl1el1ha 2l1el1há fl1el1há 2l1elhel lel1he fl1elhel flel1he l1el1ho fl1el1ho le2lim le1li fle2lim fle1li lel1ing flel1ing le2liz fle2liz 2l1el1já fl1el1já 2l1el1lá fl1el1lá 2l1el1lé fl1el1lé 2l1el1lÅ‘ fl1el1lÅ‘ 2l1elméj lel1mé fl1elméj flel1mé 2l1elmés fl1elmés 2l1elnev lel1ne fl1elnev flel1ne 2l1el1nö fl1el1nö 2l1eln2y fl1eln2y 2l1e2l1os le1lo fl1e2l1os fle1lo 2l1e2l1ö2l le1lö fl1e2l1ö2l fle1lö 2l1e2lőél le1lÅ‘ lelÅ‘1é fl1e2lőél fle1lÅ‘ flelÅ‘1é 2l1e2lÅ‘1fo fl1e2lÅ‘1fo le2lÅ‘1í fle2lÅ‘1í le2lÅ‘1s1zű lelÅ‘s2z2 fle2lÅ‘1s1zű flelÅ‘s2z2 l1el1so fl1el1so l1el1sö fl1el1sö 2l1el1s1zá lels2z fl1el1s1zá flels2z 2l1el1ta fl1el1ta l1eltáv lel1tá fl1eltáv flel1tá 2l1eltér lel1té fl1eltér flel1té 2l1el1to fl1el1to l1el1tö fl1el1tö 2l1el2v. fl1el2v. 2l1el1vá fl1el1vá 2l1elvét lel1vé fl1elvét flel1vé 2l1elvh fl1elvh l1elvn fl1elvn 2l1elvs fl1elvs 2l1elz fl1elz 2l1e2me2l. le1me fl1e2me2l. fle1me 2l1e2meld fl1e2meld l1emeled 1leme1le fl1emeled fleme1le l1emelek fl1emelek 2le2me1lé fle2me1lé l1emelés fl1emelés 2l1e2melg fl1e2melg le2melh fle2melh l1emel1he fl1emel1he 2l1e2me1li fl1e2me1li 2l1e2melj fl1e2melj l1emellek lemel1le fl1emellek flemel1le 2l1e2meln fl1e2meln le2me1lÅ‘ fle2me1lÅ‘ 2l1emel2Å‘. fl1emel2Å‘. 2l1emelÅ‘s fl1emelÅ‘s le2mels fle2mels le2melt fle2melt l1emel2t. fl1emel2t. l1emel1té fl1emel1té l1emel1tü fl1emel1tü 2l1e2me1lü fl1e2me1lü le2melv fle2melv l1emel1ve fl1emel1ve lem1erk flem1erk le2m1es2s2z fle2m1es2s2z lem1eszt lemes2z flem1eszt flemes2z le2m1e2ti fle2m1e2ti le2m1é2k le1mé fle2m1é2k fle1mé 1le2m1é1le fle2m1é1le lem1él1te flem1él1te le2m1élv fle2m1élv lem1ér1de flem1ér1de 2l1e2méss fl1e2méss le2m1ill le1mi fle2m1ill fle1mi le2mind fle2mind le2m1ing fle2m1ing le2m1is2z fle2m1is2z le2mi1ta fle2mi1ta le2m1itt fle2m1itt l1emle1ge lemle1g2 lem1le fl1emle1ge flemle1g2 flem1le le2mo2k le1mo fle2mo2k fle1mo le2mol fle2mol le2m1org fle2m1org le2m1os2z fle2m1os2z le2m1ó2r le1mó fle2m1ó2r fle1mó le2mö2l le1mö fle2mö2l fle1mö le2m1Å‘2 fle2m1Å‘2 lem1p2 flem1p2 le2m1u2r le1mu fle2m1u2r fle1mu le2n1a2d le1na fle2n1a2d fle1na le2nal fle2nal le2na2n fle2na2n le2n1ál le1ná fle2n1ál fle1ná le2nát fle2nát lenc1c flenc1c len2cel len1ce flen2cel flen1ce len2ce1me flen2ce1me l2end fl2end le2n1e2g le1ne fle2n1e2g fle1ne le2n1e2l fle2n1e2l le2ner fle2ner lene2tel lene1te flene2tel flene1te lené2k le1né flené2k fle1né le2n1é1ke fle2n1é1ke le2n1ékk fle2n1ékk le2n1ékt fle2n1ékt lené2l flené2l len1é1lé flen1é1lé lenés3s flenés3s le2n1és2z fle2n1és2z le2n1é2v. fle2n1é2v. len2g1e2l len1ge flen2g1e2l flen1ge le2nid le1ni fle2nid fle1ni le2n1ip fle2n1ip le2no2k le1no fle2no2k fle1no le2nol fle2nol le2n1or fle2n1or le2n1óv le1nó fle2n1óv fle1nó len1Å‘1ré le1nÅ‘ flen1Å‘1ré fle1nÅ‘ len1s2p flen1s2p len1s1ta flen1s1ta len1t1ra flen1t1ra len1t2ren lent1re flen1t2ren flent1re le1nu2 fle1nu2 le2n1ur fle2n1ur le2n1ut fle2n1ut le2n1üg le1nü fle2n1üg fle1nü le2n1üt fle2n1üt 2l1enyv len2y fl1enyv flen2y le2o1a le1o fle2o1a fle1o le2oc fle2oc le2og fle2og leo2k fleo2k le2o1li fle2o1li leo2m fleo2m le2oz fle2oz leó2c le1ó fleó2c fle1ó leö2r le1ö fleö2r fle1ö le2p1aj le1pa fle2p1aj fle1pa lepa2p flepa2p le1p1a1pa fle1p1a1pa lep1ál1la le1pá flep1ál1la fle1pá le2p1eg le1pe fle2p1eg fle1pe 1lepe2le flepe2le le2pék le1pé fle2pék fle1pé le2pél fle2pél lep1il1lé le1pi flep1il1lé fle1pi le2p1iz fle2p1iz le1p2lo fle1p2lo le2p1os2z le1po fle2p1os2z fle1po le2p1ó2d le1pó fle2p1ó2d fle1pó lep2p1elv lep1pe flep2p1elv flep1pe le1p2ré1se lep1ré fle1p2ré1se flep1ré le1p2ri fle1p2ri le1p1ro fle1p1ro le1p1ró fle1p1ró le2p1ü2lÅ‘h le1pü lepü1lÅ‘ fle2p1ü2lÅ‘h fle1pü flepü1lÅ‘ 2l1er1dÅ‘ fl1er1dÅ‘ 2l1e2redm le1re fl1e2redm fle1re le2re1jé fle2re1jé le2r1ék le1ré fle2r1ék fle1ré ler1é1te fler1é1te le2r1il le1ri fle2r1il fle1ri le2rir fle2rir 2leróz le1ró fleróz fle1ró 2l1e2rÅ‘ fl1e2rÅ‘ le2s1al le1sa fle2s1al fle1sa le2s1ál le1sá fle2s1ál fle1sá l1es1dé fl1es1dé 2lese1ge le1se flese1ge fle1se le2s1e2kéh lese1ké fle2s1e2kéh flese1ké 2l1ese1mé fl1ese1mé l1e2setb fl1e2setb 2l1e2sete1i lese1te fl1e2sete1i flese1te lese2tel flese2tel 2l1e2se1té fl1e2se1té l1e2seth fl1e2seth l1e2se1ti fl1e2se1ti l1e2setk fl1e2setk l1e2setn fl1e2setn lese2t1o2 flese2t1o2 l1e2setr fl1e2setr le2sé1sű le1sé fle2sé1sű fle1sé le1s2ka fle1s2ka le1s1ki fle1s1ki 2l1es1kü fl1es1kü le1s1la fle1s1la le1s2li fle1s2li le1s1ma fle1s1ma le1s2mi fle1s2mi le1s2p2 fle1s2p2 les3s1za les2s2z fles3s1za fles2s2z les3s1zá fles3s1zá le1s2tar les1ta fle1s2tar fles1ta le1stemp les1te fle1stemp fles1te 2l1esten fl1esten l1esté1be les1té fl1esté1be fles1té 2lest2i. les1ti flest2i. fles1ti le1s2til fle1s2til 2l1estj fl1estj les2t1o2r les1to fles2t1o2r fles1to l1estt fl1estt 2l1esz1kö les2z fl1esz1kö fles2z le1sz1to fle1sz1to le2t1ab le1ta fle2t1ab fle1ta le2ta2c fle2ta2c let1a2la flet1a2la let1all flet1all le2t1am fle2t1am le2t1a1na fle2t1a1na le2t1apr fle2t1apr le2t1e2kéb le1te lete1ké fle2t1e2kéb fle1te flete1ké le2t1e2la fle2t1e2la le2t1elb fle2t1elb le2t1elf fle2t1elf le2t1elff fle2t1elff le2t1elï¬ ï¬‚e2t1elï¬ le2t1el1fl fle2t1el1fl let1elk flet1elk let1elÅ‘1a lete1lÅ‘ flet1elÅ‘1a flete1lÅ‘ le2t1e2lÅ‘1ké fle2t1e2lÅ‘1ké let1elr flet1elr let1e2mel lete1me flet1e2mel flete1me le2t1eml fle2t1eml le2te1ne fle2te1ne le2t1eng fle2t1eng le2t1ent fle2t1ent let1ered l2eter lete1re flet1ered fl2eter flete1re le2t1e1ré fle2t1e1ré le2t1er1k2 fle2t1er1k2 le2tes1té fle2tes1té let1eszk letes2z flet1eszk fletes2z 2l1e2te1té fl1e2te1té 2l1e2teth fl1e2teth 2l1e2tetj fl1e2tetj 2l1e2tetv fl1e2tetv le2t1éd le1té fle2t1éd fle1té le2t1é2j fle2t1é2j leté2l fleté2l 1let1é1le flet1é1le let1é1lé flet1é1lé let1élv flet1élv le2t1é2nekn leté1ne fle2t1é2nekn fleté1ne le2t1érb fle2t1érb le2t1é2re2n leté1re fle2t1é2re2n fleté1re le2t1é2ri fle2t1é2ri le2t1érr fle2t1érr le2t1ér1tÅ‘ fle2t1ér1tÅ‘ let1é2rül leté1rü flet1é2rül fleté1rü leté2s2z fleté2s2z let1éter leté1te flet1éter fleté1te let1é2t2é. leté1té flet1é2t2é. fleté1té leté2ve1de leté1ve fleté2ve1de fleté1ve let1éves flet1éves le2t1é2véb leté1vé fle2t1é2véb fleté1vé le2t1évé1i fle2t1évé1i le2t1é2vér fle2t1é2vér le2t1é2vét fle2t1é2vét le2t1é2vév fle2t1é2vév le2ti2d le1ti fle2ti2d fle1ti let1ikr flet1ikr le2t1ill fle2t1ill le2tim fle2tim le2t1ing fle2t1ing le2t1ist fle2t1ist leti2s2z fleti2s2z let1i1s1zo flet1i1s1zo le2ti1vá fle2ti1vá le2tod le1to fle2tod fle1to le2t1o2k fle2t1o2k let1o1ra l2etor flet1o1ra fl2etor le2t1ox fle2t1ox le2t1ó2r le1tó fle2t1ó2r fle1tó le2t1ö2v le1tö fle2t1ö2v fle1tö letÅ‘e3d le1tÅ‘ letÅ‘1e fletÅ‘e3d fle1tÅ‘ fletÅ‘1e le2t1Å‘1ri fle2t1Å‘1ri le1traf let1ra fle1traf flet1ra le1traff fle1traff le1traï¬ ï¬‚e1traï¬ le1tra1fl fle1tra1fl let2teg let1te flet2teg flet1te letü2l le1tü fletü2l fle1tü le2t1ü1lé fle2t1ü1lé let1ü1zé flet1ü1zé 2let2y flet2y leu2g le1u fleu2g fle1u le2uk fle2uk leu2r fleu2r leu2t fleu2t 2leve1ne le1ve fleve1ne fle1ve 2leve1ní fleve1ní 2leve1nü fleve1nü l1e2ve2z. fl1e2ve2z. l1e2vezg fl1e2vezg l1e2vezh fl1e2vezh l1e2vezn fl1e2vezn l1e2vezt fl1e2vezt le2ve1zü fle2ve1zü l1e2vezv fl1e2vezv levél1l le1vé flevél1l fle1vé le2vo1lú le1vo fle2vo1lú fle1vo le2xá fle2xá le2x1el le1xe fle2x1el fle1xe le2x1e2p fle2x1e2p lexkés2z1 lex1ké flexkés2z1 flex1ké le2xö fle2xö le1yé fle1yé le2zer le1ze fle2zer fle1ze lezÅ‘1a2 le1zÅ‘ flezÅ‘1a2 fle1zÅ‘ lezÅ‘e2r lezÅ‘1e flezÅ‘e2r flezÅ‘1e lezőé2n lezÅ‘1é flezőé2n flezÅ‘1é lezÅ‘1s2p flezÅ‘1s2p 2l1ezr fl1ezr 1lé flé 2l1ébr fl1ébr lé2ca flé2ca lé2cá flé2cá léc3c fléc3c lé2c1ék lé1cé flé2c1ék flé1cé lé2c3h flé2c3h lé1ci2 flé1ci2 lé2cim flé2cim lé2co flé2co léc2s2 fléc2s2 léc3sk fléc3sk lé2d1as lé1da flé2d1as flé1da lé2d1el lé1de flé2d1el flé1de lé2d1emb flé2d1emb lé2dé2l lé1dé flé2dé2l flé1dé lé2d1és flé2d1és lé2dil lé1di flé2dil flé1di lé2dos lé1do flé2dos flé1do lé2dot flé2dot lé2dö flé2dö lé2d1Å‘2 flé2d1Å‘2 lée2r lé1e flée2r flé1e léé2r lé1é fléé2r flé1é lé1f2r flé1f2r lé2gal lé1ga flé2gal flé1ga lé2g1e2c lé1ge flé2g1e2c flé1ge 2léged fléged lé2g1eg flé2g1eg lég1ell flég1ell lég1els flég1els lé2g1em flé2g1em lé2g1e2r flé2g1e2r lég1é2r. lé1gé flég1é2r. flé1gé 2l1é2gés fl1é2gés l1éghet lég1he fl1éghet flég1he lé2gil lé1gi flé2gil flé1gi 2lé1gí flé1gí lé2g1ö flé2g1ö 2lé2gÅ‘ flé2gÅ‘ l1égtem lég1te fl1égtem flég1te l1égtet fl1égtet l1égtél lég1té fl1égtél flég1té lé2gú flé2gú 2lé1gü flé1gü lé2g1ü2g flé2g1ü2g l1é2gün fl1é2gün lé2gyel lég2y lé1gye flé2gyel flég2y flé1gye lé2gyes flé2gyes lé2gyi2 flé2gyi2 lé2gyo2 flé2gyo2 lé2gyö flé2gyö 3légz flégz léh1as2z lé1ha fléh1as2z flé1ha 2l1é2h2e. lé1he fl1é2h2e. flé1he lé2hed flé2hed lé2h1em flé2h1em 2léhes fléhes 2léhet fléhet 2l1é2he1zÅ‘ fl1é2he1zÅ‘ lé2h1é flé2h1é lé2hol lé1ho flé2hol flé1ho 2léhs fléhs 2l1é2j. fl1é2j. 2l1é2ji fl1é2ji 2l1éjj fl1éjj 2l1éjs fl1éjs 2l1é2jül lé1jü fl1é2jül flé1jü lé2kab lé1ka flé2kab flé1ka lé2k1a2d flé2k1a2d lé2k1a2g flé2k1a2g lé2k1aj flé2k1aj lé1k1a1ka flé1k1a1ka lé2k1a2la flé2k1a2la léka2p fléka2p lé2k1a1po flé2k1a1po lé2k1as flé2k1as léka2t fléka2t lék1a1to flék1a1to lé2k1a1u flé2k1a1u lé2k1av flé2k1av lé2kaz flé2kaz lé2k1e2g lé1ke flé2k1e2g flé1ke lé2k1e1p2 flé2k1e1p2 lé2ke1sí flé2ke1sí lé2k1e2s2z flé2k1e2s2z lék1e1vé flék1e1vé lé2k1é2k lé1ké flé2k1é2k flé1ké léké2l fléké2l lé2k1é1le flé2k1é1le lé2k1élv flé2k1élv lé2k1é2te flé2k1é2te lé2ki2d lé1ki flé2ki2d flé1ki lé2kít lé1kí flé2kít flé1kí lékköz1 lék1kö flékköz1 flék1kö lék1or1s2 lé1ko flék1or1s2 flé1ko lé2k1os2z flé2k1os2z lé2k1ö2l lé1kö flé2k1ö2l flé1kö lé2kör flé2kör lé2köz flé2köz lé2kÅ‘ flé2kÅ‘ lé2k1u2r lé1ku flé2k1u2r flé1ku lékü2l lé1kü flékü2l flé1kü 1lé2k1ü1lé flé2k1ü1lé lé2k1ült flé2k1ült lékve2g lék1ve flékve2g flék1ve l1élc fl1élc 2l1é2l2e. lé1le fl1é2l2e. flé1le 2l1é2le1i fl1é2le1i 2l1é2les fl1é2les lé2léb 1lé1lé flé2léb flé1lé lé2lén flé2lén lé2lér flé2lér 2l1élm fl1élm lélÅ‘kés2z1 lé1lÅ‘ lélÅ‘1ké flélÅ‘kés2z1 flé1lÅ‘ flélÅ‘1ké 2l1élr fl1élr lé2lük lé1lü flé2lük flé1lü 2l1é2lű fl1é2lű 2l1é2mel lé1me fl1é2mel flé1me lé2nag lé1na flé2nag flé1na lén1a2n flén1a2n lé1ná2 flé1ná2 lé2neg lé1ne flé2neg flé1ne lé2nekb flé2nekb 2l1é2nekl fl1é2nekl lé2nel flé2nel 2lén1kí flén1kí lé2no flé2no lé2nyö2 lén2y flé2nyö2 flén2y lé2p1a2l lé1pa flé2p1a2l flé1pa l2é2p1el lé1pe fl2é2p1el flé1pe lépés3s lé1pé flépés3s flé1pé 2l1é2pí fl1é2pí lé2pó flé2pó 2lépül lé1pü flépül flé1pü 1lé2pü1lé flé2pü1lé lé3r1a2d lé1ra flé3r1a2d flé1ra lé2ral flé2ral lé2rap flé2rap lé2ras flé2ras lé2rat flé2rat lé2rav flé2rav lé2r1á flé2r1á 2l1ér2c. fl1ér2c. 2l1ércb fl1ércb 2l1ér1de fl1ér1de lé2reg lé1re flé2reg flé1re lé2r1e2l flé2r1e2l lé2r1e2sÅ‘ flé2r1e2sÅ‘ 2l1é2re2z. fl1é2re2z. 2l1é2rezv fl1é2rezv lé2r1é2j lé1ré flé2r1é2j flé1ré 2l1é2rés fl1é2rés 2l1é2rik lé1ri fl1é2rik flé1ri lé2ris flé2ris lé2rit flé2rit lé2rí flé2rí 2l1ér1ni fl1ér1ni 2l1ér1nü fl1ér1nü lé2r1os2z lé1ro flé2r1os2z flé1ro lé2rö flé2rö 2l1é2r2Å‘. lé1rÅ‘ fl1é2r2Å‘. flé1rÅ‘ lé2rÅ‘d flé2rÅ‘d 2l1é2rÅ‘1e fl1é2rÅ‘1e lé2rÅ‘1i flé2rÅ‘1i 2l1é2rÅ‘j fl1é2rÅ‘j 2l1é2rÅ‘k fl1é2rÅ‘k lé2rÅ‘n flé2rÅ‘n 2l1é2rÅ‘t fl1é2rÅ‘t 2l1é2rÅ‘v fl1é2rÅ‘v 2l1értelm lér1te fl1értelm flér1te 2l1érték lér1té fl1érték flér1té 2l1értj fl1értj 2l1ért2Å‘. lér1tÅ‘ fl1ért2Å‘. flér1tÅ‘ lé2rut lé1ru flé2rut flé1ru 2l1érvel lér1ve fl1érvel flér1ve 2l1érvén lér1vé fl1érvén flér1vé lé1ry flé1ry 2l1ér1ze fl1ér1ze 2l1ér1zé fl1ér1zé lé1sa2 flé1sa2 lé2s1aj flé2s1aj lé2sak flé2sak lé2sal flé2sal lé2sar flé2sar lé2s1az flé2s1az lé2s1á2 flé2s1á2 lé2seg lé1se flé2seg flé1se lé2s1e2l flé2s1e2l lé2s1e1ti flé2s1e1ti lé2s1é2g lé1sé flé2s1é2g flé1sé lé2sés flé2sés lé2s1ikr lé1si flé2s1ikr flé1si lé2só flé2só lé2s1Å‘ flé2s1Å‘ lés3s1za lés2s2z2 flés3s1za flés2s2z2 lés3szer lés1s1ze flés3szer flés1s1ze lésü2l lé1sü flésü2l flé1sü 1lé2s1ü1lé flé2s1ü1lé lé2s1ü1lÅ‘ flé2s1ü1lÅ‘ lé2s1üt flé2s1üt lész1ék lés2z lé1s1zé flész1ék flés2z flé1s1zé 2lészést flészést 2l1észl fl1észl lés3z1se lész2s flés3z1se flész2s lé2tag lé1ta flé2tag flé1ta lé2taz flé2taz lé2t1eg lé1te flé2t1eg flé1te lé2te2l. flé2te2l. lét1e2lo flét1e2lo lét1e1lÅ‘ flét1e1lÅ‘ lét1elv flét1elv lé2te1ne flé2te1ne lé2te1sé flé2te1sé 2l1é2teth fl1é2teth lé2te1ti flé2te1ti 2l1é2tetn fl1é2tetn lé2tev flé2tev lé2t1é2r. lé1té flé2t1é2r. flé1té lé2t1é2te flé2t1é2te lé2t1is lé1ti flé2t1is flé1ti lé2tít lé1tí flé2tít flé1tí 2létl flétl lé2t1o2k lé1to flé2t1o2k flé1to 3l2é1tó fl2é1tó lé2tóh flé2tóh lé3tól flé3tól lé2t1ó2r flé2t1ó2r lé1tö2 flé1tö2 lét1ö1rö flét1ö1rö lét2rág lét1rá flét2rág flét1rá lé2tu2n lé1tu flé2tu2n flé1tu 2l1é2vad lé1va fl1é2vad flé1va 2l1évb fl1évb 2l1é2v2e. lé1ve fl1é2v2e. flé1ve 2l1é2ved fl1é2ved 2l1é2ve1i fl1é2ve1i 2l1é2vek fl1é2vek 2l1é2v1elf fl1é2v1elf 2l1é2v1elff fl1é2v1elff 2lévelï¬ ï¬‚Ã©velï¬ 2lével1fl flével1fl 2l1é2v1e1li fl1é2v1e1li 2l1é2vem fl1é2vem 2l1é2ven fl1é2ven 2l1é2ve2t. fl1é2ve2t. 2l1é2véb lé1vé fl1é2véb flé1vé 2l1é2véh fl1é2véh 2l1é2vé1i fl1é2vé1i 2lévén flévén lév1ért flév1ért 2l1é2vét fl1é2vét 2l1é2vév fl1é2vév 2l1évf fl1évf 2l1évff fl1évff 2l1évï¬ ï¬‚1évï¬ 2l1évfl fl1évfl 2l1évh fl1évh 2l1é2v2i. lé1vi fl1é2v2i. flé1vi 2l1é2vi2g fl1é2vi2g lé2vir flé2vir lé2vis flé2vis 2l1évk fl1évk 2l1évl fl1évl 2l1évm fl1évm 2l1évn fl1évn 2l1é2vó fl1é2vó 2l1évr fl1évr 2l1évs fl1évs 2l1évt fl1évt 2lé1vü flé1vü lé2vük flé2vük lé2vün flé2vün 2l1é2vű fl1é2vű 2l1évv fl1évv 2l1évz fl1évz lfa2l1e2 l1fa flfa2l1e2 fl1fa lfat2 flfat2 lfa1tr flfa1tr lf1aut lfa1u flf1aut flfa1u lfá2t1i2 l1fá flfá2t1i2 fl1fá lf1cl flf1cl lf1e1se l1fe flf1e1se fl1fe lfe2t flfe2t lf1e1ti flf1e1ti lfé2l1é2v l1fé lfé1lé flfé2l1é2v fl1fé flfé1lé l2f1élm fl2f1élm lfé2m1e2ké lfé1me flfé2m1e2ké flfé1me lfi2d1é lf8i lï¬2d1é lï¬ ï¬‚ï¬2d1é ï¬‚ï¬ lfi2e lï¬2e flï¬2e lfin3n lï¬n3n flï¬n3n lfi2nos lfi1no lï¬2nos lï¬1no flï¬2nos flï¬1no lf1i1ro lï¬1ro flï¬1ro lf1isk lï¬sk flï¬sk lf1kl flf1kl lf2lo lf8l lflo lfl flflo flfl lf2ló lfló flfló lf2lö lflö flflö lf2lu lflu flflu l2f1ok1ta l1fo fl2f1ok1ta fl1fo l2f1ó2r l1fó fl2f1ó2r fl1fó lföldié2h l1fö lföl1di lföldi1é flföldié2h fl1fö flföl1di flföldi1é lf1pr flf1pr lf2ri flf2ri l1f2rí fl1f2rí l1f2ro fl1f2ro lf2rö flf2rö lf2rÅ‘ flf2rÅ‘ lf1sp flf1sp lf1s2z2 flf1s2z2 l2f1ü1lÅ‘ l1fü fl2f1ü1lÅ‘ fl1fü lga1p2 l1ga flga1p2 fl1ga lgatói2ko lga1tó lgató1i flgatói2ko flga1tó flgató1i lga1u2 flga1u2 lgá2r1as l1gá lgá1ra flgá2r1as fl1gá flgá1ra lgés3s l1gé flgés3s fl1gé lgi2as l1gi lgi1a flgi2as fl1gi flgi1a lg2la flg2la lg2lo flg2lo lg2ló flg2ló lgör2c1so l1gö l3g2örc lgörc2s flgör2c1so fl1gö fl3g2örc flgörc2s l1g2ra fl1g2ra lg2ru flg2ru l2gy1ad lg2y l1gya fl2gy1ad flg2y fl1gya l2gy1ag fl2gy1ag l2gyaj fl2gyaj lgy1a1la flgy1a1la lgy1alj flgy1alj lgy1an2y flgy1an2y l2gy1a2s fl2gy1a2s l2gy1a1u fl2gy1a1u l2gyáb l1gyá fl2gyáb fl1gyá l2gyál fl2gyál l2gyát fl2gyát l2gy1e2g l1gye fl2gy1e2g fl1gye l2gye1lá fl2gye1lá l2gy1e2le fl2gy1e2le l2gy1elz fl2gy1elz l2gyem1be fl2gyem1be lgy1e1ré flgy1e1ré l2gy1esem lgye1se fl2gy1esem flgye1se l2gy1e2v fl2gy1e2v l2gyél l1gyé fl2gyél fl1gyé l2gy1é2r. fl2gy1é2r. l2gy1és fl2gy1és l2gyid l1gyi fl2gyid fl1gyi l2gyikr fl2gyikr l2gyip fl2gyip l2gyis fl2gyis l2gy1ok l1gyo fl2gy1ok fl1gyo l2gy1ol fl2gy1ol l2gyop fl2gyop l2gy1os fl2gy1os l2gy1ó2r l1gyó fl2gy1ó2r fl1gyó l2gy1ö2r l1gyö fl2gy1ö2r fl1gyö l2gy1ös fl2gy1ös lgy1s flgy1s l2gy1u2t l1gyu fl2gy1u2t fl1gyu l2gy1út l1gyú fl2gy1út fl1gyú lha1i2 l1ha flha1i2 fl1ha 1l2ho1u l1ho fl2ho1u fl1ho lhón1al l1hó lhó1na flhón1al fl1hó flhó1na 1li li2a1a li1a fli2a1a fli1a li2a1á fli2a1á li2a1bi fli2a1bi li2a1bo fli2a1bo lia2cé flia2cé li2a1ci fli2a1ci li2ac2s fli2ac2s li2a1cu fli2a1cu li2a1d2 fli2a1d2 li2a1e fli2a1e li2a1é fli2a1é li2ag fli2ag li2ah fli2ah li2aid lia1i fli2aid flia1i li2a1í fli2a1í li2aj fli2aj li2akép lia1ké fli2akép flia1ké li2a1la fli2a1la li2a1le fli2a1le 1li2a1li fli2a1li li2a1me fli2a1me li2a1mé fli2a1mé li2a1mo fli2a1mo li2a1o fli2a1o li2a1ó fli2a1ó li2a1Å‘ fli2a1Å‘ li2ap fli2ap li2a1ra fli2a1ra li2a1ré fli2a1ré li2a1sá fli2a1sá li2a1so fli2a1so lia1s2z flia1s2z li2a1s1za fli2a1s1za li2a1s1zá fli2a1s1zá li2a1s1zé fli2a1s1zé li2aszf fli2aszf li2aszff fli2aszff li2aszï¬ ï¬‚i2aszï¬ li2aszfl fli2aszfl li2a1s1zi fli2a1s1zi li2at fli2at lia1t2r flia1t2r li2a1ü fli2a1ü li2av fli2av li2az fli2az li3be fli3be li2col li1co fli2col fli1co li1c3sé lic2s fli1c3sé flic2s lic3s2z flic3s2z li2cü fli2cü li1cy fli1cy li2de1á li1de fli2de1á fli1de 2li2deg fli2deg li2dén li1dé fli2dén fli1dé li2dét fli2dét 2l1i2di fl1i2di 2l1i2dÅ‘ fl1i2dÅ‘ li2ec li1e fli2ec fli1e lie2d flie2d li2el fli2el li2em fli2em lie2r flie2r li2e2r. fli2e2r. li2e1u fli2e1u lié2d li1é flié2d fli1é lié2k flié2k lié2n flié2n lié2vé flié2vé lifé2l1é2v li1fé lifé1lé flifé2l1é2v fli1fé flifé1lé li2fí fli2fí li1f8l li1fl fli1fl li1f2r fli1f2r l2i2g. fl2i2g. 2l1i2gaz li1ga fl1i2gaz fli1ga ligán1n li1gá fligán1n fli1gá li2g2e. li1ge fli2g2e. fli1ge 2l1i2geb fl1i2geb 2l1i2gek2 fl1i2gek2 2l1i2gep fl1i2gep li2géb li1gé fli2géb fli1gé li2géh fli2géh li2gé1i fli2gé1i li2géj fli2géj li2gék fli2gék li2gén fli2gén li2gér fli2gér li2gés fli2gés li2gét fli2gét li2gév fli2gév li2géz fli2géz li2hat li1ha fli2hat fli1ha 2l1ihl fl1ihl 2l1i2ke2r. li1ke fl1i2ke2r. fli1ke 2l1i2kerb fl1i2kerb lik2k1ell lik1ke flik2k1ell flik1ke lik2k1elv flik2k1elv lik2k1e2r flik2k1e2r lik2kérd lik1ké flik2kérd flik1ké li1k2l fli1k2l 2l1i2konc li1ko fl1i2konc fli1ko 2l1i2konf fl1i2konf 2l1i2konff fl1i2konff 2l1i2konï¬ ï¬‚1i2konï¬ 2l1i2konfl fl1i2konfl 2l1i2kong fl1i2kong 2l1i2koni2g liko1ni fl1i2koni2g fliko1ni 2l1i2konk fl1i2konk 2l1i2konl fl1i2konl 2l1i2konm fl1i2konm 2l1i2konp fl1i2konp 2l1i2kons fl1i2kons li1k1ré fli1k1ré li1k2ro fli1k2ro 2lill flill lil2l2e. lil1le flil2l2e. flil1le 2lim2a. li1ma flim2a. fli1ma 2l1i2mád li1má fl1i2mád fli1má li2mák fli2mák li2máv fli2máv l1im1bo fl1im1bo li2m2e. li1me fli2m2e. fli1me lime2rá flime2rá lim1p2 flim1p2 2lim1po flim1po li1mű1 fli1mű1 li2nakr li1na fli2nakr fli1na li2nal fli2nal lin1an2y flin1an2y lin1a1rá flin1a1rá 2l1i2na2s. fl1i2na2s. lin2c1s1ö2 linc2s flin2c1s1ö2 flinc2s 2l1in1du fl1in1du l2i2n2e. li1ne fl2i2n2e. fli1ne li2neg fli2neg linék2 li1né flinék2 fli1né 2l1inger lin1ge fl1inger flin1ge lin1g1rá flin1g1rá ling2rá1di fling2rá1di 2l1ing1ré fl1ing1ré l2in1ing li1ni fl2in1ing fli1ni lin1inj flin1inj lin1kl flin1kl lin3n2y flin3n2y li2nor li1no fli2nor fli1no 2l1integ lin1te fl1integ flin1te 2l1intéz lin1té fl1intéz flin1té li2n1u2s li1nu fli2n1u2s fli1nu li2n1ut fli2n1ut 2l1i2nú fl1i2nú li2oc li1o fli2oc fli1o li2o1g fli2o1g lio2l flio2l li2o1ni fli2o1ni li2ó1ke li1ó fli2ó1ke fli1ó li2Å‘1á li1Å‘ fli2Å‘1á fli1Å‘ li2Å‘d fli2Å‘d li2Å‘1e fli2Å‘1e li2Å‘f fli2Å‘f li2őff fli2őff li2Å‘ï¬ ï¬‚i2Å‘ï¬ li2őfl fli2őfl li2Å‘g fli2Å‘g li2Å‘m fli2Å‘m li2Å‘p fli2Å‘p li2p2a. li1pa fli2p2a. fli1pa li2pa1i fli2pa1i li2p1aj fli2p1aj li2p1á2r li1pá fli2p1á2r fli1pá li2pát fli2pát li2peg li1pe fli2peg fli1pe li2p1e2l fli2p1e2l li2p1es2z fli2p1es2z li1p2lo fli1p2lo li2pö fli2pö li2p1Å‘2 fli2p1Å‘2 lip2p2e. lip1pe flip2p2e. flip1pe li1p2ro fli1p2ro 2l1i2ram li1ra fl1i2ram fli1ra 2l1i2rat fl1i2rat 2l1i2rán li1rá fl1i2rán fli1rá 2l1irh fl1irh li2rig li1ri fli2rig fli1ri li2rod li1ro fli2rod fli1ro 2l1irr fl1irr 2l1irt fl1irt li2sál li1sá fli2sál fli1sá li2s1el li1se fli2s1el fli1se lise2s flise2s li2sid li1si fli2sid fli1si lis1isk flis1isk 2l1iskol lis1ko fl1iskol flis1ko l1ism fl1ism lis1p2 flis1p2 2l1is1pá fl1is1pá 2l1isten lis1te fl1isten flis1te 2l1istr fl1istr li2s1ü2t li1sü fli2s1ü2t fli1sü lis1ü2v flis1ü2v 2l1iszl lis2z fl1iszl flis2z lisz2t1á2z lisz1tá flisz2t1á2z flisz1tá li1sztir lisz1ti fli1sztir flisz1ti li2t1a2g li1ta fli2t1a2g fli1ta 2l1i2ta2l. fl1i2ta2l. li2ta1la fli2ta1la li2t1alk fli2t1alk lit1áll li1tá flit1áll fli1tá li2t1á1ta fli2t1á1ta li2t1e2g li1te fli2t1e2g fli1te li2t1e2l fli2t1e2l li2t1emb fli2t1emb li2tez fli2tez li2t1érd li1té fli2t1érd fli1té li2tér1te fli2tér1te li2til li1ti fli2til fli1ti lit1int flit1int li2t1i2o fli2t1i2o li2t1is fli2t1is li2t1okt li1to fli2t1okt fli1to li2t1old fli2t1old li2tön li1tö fli2tön fli1tö li1tÅ‘2 fli1tÅ‘2 li2t1Å‘r fli2t1Å‘r l1ittak lit1ta fl1ittak flit1ta l1itta2m fl1itta2m l1ittas fl1ittas l1ittat fl1ittat li2t1u1ra li1tu fli2t1u1ra fli1tu li1t2y fli1t2y liú2t li1ú fliú2t fli1ú 2l1i2vad li1va fl1i2vad fli1va l1i2vot li1vo fl1i2vot fli1vo l1i2vó fl1i2vó 3li2x. fli2x. li2z2e. li1ze fli2z2e. fli1ze l1i2zél li1zé fl1i2zél fli1zé 2l1i2zén fl1i2zén 2l1i2zé1sí fl1i2zé1sí l1iz1gu fl1iz1gu 2l1iz1mo fl1iz1mo l1iz1zi fl1iz1zi 2l1iz1zí fl1iz1zí 2l1iz1zó fl1iz1zó 1lí flí lí2gé flí2gé lí2ja flí2ja lí2ju flí2ju lí1ma1 flí1ma1 2l1íns fl1íns l1í2n2y fl1í2n2y lí2nyenc1 lí1nye flí2nyenc1 flí1nye l1írd fl1írd l1írh fl1írh l1írj fl1írj l1írl fl1írl lí2rod lí1ro flí2rod flí1ro l1í2rog fl1í2rog lí2rok flí2rok lí2rom flí2rom 2l1í2ró fl1í2ró l1írs fl1írs l1í2ru fl1í2ru lítés3s lí1té flítés3s flí1té lítÅ‘1a2 lí1tÅ‘ flítÅ‘1a2 flí1tÅ‘ lítÅ‘2p3r flítÅ‘2p3r 2lí2v. flí2v. lí1va1 flí1va1 lívak2 flívak2 2l1í2z. fl1í2z. 2l1í2ze fl1í2ze l2í1zi fl2í1zi lízis3s2 flízis3s2 2l1ízl fl1ízl 2l1í2zü fl1í2zü l1í2zű fl1í2zű l2j1a2da l1ja fl2j1a2da fl1ja l2j1e2lÅ‘ l1je fl2j1e2lÅ‘ fl1je l2j1er fl2j1er ljes1s fljes1s ljharc1 lj1ha fljharc1 flj1ha l2j1ip l1ji fl2j1ip fl1ji l2j1ir fl2j1ir l2j1iz fl2j1iz lj1ír l1jí flj1ír fl1jí l2j1or l1jo fl2j1or fl1jo l2j1os fl2j1os lj1pr flj1pr lj1sp flj1sp lj1üz l1jü flj1üz fl1jü lka1sl l1ka flka1sl fl1ka lka2tel lka1te flka2tel flka1te lka2t1é flka2t1é lk2a2tin lka1ti flk2a2tin flka1ti lka2t1ó2 flka2t1ó2 lké2p1ell l1ké lk2épel lké1pe flké2p1ell fl1ké flk2épel flké1pe lké2sze2l lkés2z lké1s1ze flké2sze2l flkés2z flké1s1ze lkia2k l1ki lki1a flkia2k fl1ki flki1a lki1á2 flki1á2 l1k2lin lk1li fl1k2lin flk1li lk2lí flk2lí l1k2lu fl1k2lu lkö2z1ö2n. l1kö lkö1zö flkö2z1ö2n. fl1kö flkö1zö l1k2rá fl1k2rá lk2re1á lk1re flk2re1á flk1re l1k2rémb lk1ré fl1k2rémb flk1ré l1k2ri fl1k2ri l1k2rí fl1k2rí lk2rom lk1ro flk2rom flk1ro l1k2ró fl1k2ró lk1sh flk1sh lkukés2z1 l1ku lku1ké flkukés2z1 fl1ku flku1ké lk2va flk2va lk2vá flk2vá lk2vó flk2vó lla2dój l1la lla1dó flla2dój fl1la flla1dó lla1f2 flla1f2 l2la1ff fl2la1ff lla1ï¬ ï¬‚la1ï¬ lla1fl flla1fl lla2g1ad lla1ga flla2g1ad flla1ga ll2a2gal fll2a2gal lla2g1a2s flla2g1a2s lla2gál lla1gá flla2gál flla1gá lla2gen lla1ge flla2gen flla1ge lla2gép lla1gé flla2gép flla1gé llag3g fllag3g lla2gol lla1go flla2gol flla1go ll1a2ja fll1a2ja ll1a2kad lla1ka fll1a2kad flla1ka l2l1akc fl2l1akc l2l1a2kóz lla1kó fl2l1a2kóz flla1kó l2l1ak1ti fl2l1ak1ti l2l1a2lap lla1la fl2l1a2lap flla1la l2l1alm fl2l1alm ll2a2mad lla1ma fll2a2mad flla1ma lla2mal flla2mal lla2mem lla1me flla2mem flla1me lla2mél lla1mé flla2mél flla1mé lla2mor lla1mo flla2mor flla1mo l2l1a2nal lla1na fl2l1a2nal flla1na lla2nyer ll2a1nye llan2y flla2nyer fll2a1nye fllan2y lla2ny1ó2 flla2ny1ó2 ll2a2pal lla1pa fll2a2pal flla1pa ll1aszf llas2z fll1aszf fllas2z ll1aszff fll1aszff ll1aszï¬ ï¬‚l1aszï¬ ll1aszfl fll1aszfl llata2l lla1ta fllata2l flla1ta l1la2ta1la fl1la2ta1la llat1an2y ll2atan fllat1an2y fll2atan ll2a2t1ál lla1tá fll2a2t1ál flla1tá lla2t1á2r. ll2atár flla2t1á2r. fll2atár lla2t1ár1a2d llatá1ra flla2t1ár1a2d fllatá1ra lla2t1árb flla2t1árb lla2tés lla1té flla2tés flla1té lla2tint ll2atin lla1ti flla2tint fll2atin flla1ti lla2t1olt lla1to flla2t1olt flla1to l2lato1mo fl2lato1mo lla2tors2 ll2ator flla2tors2 fll2ator lla2t1ű flla2t1ű l2l1at2y fl2l1at2y l2l1aut lla1u fl2l1aut flla1u l2l1á2ga l1lá fl2l1á2ga fl1lá l2l1ágb fl2l1ágb l2l1ágg fl2l1ágg l2l1ág2y. llág2y fl2l1ág2y. fllág2y l2l1á1gyá fl2l1á1gyá l2l1ál1lo fl2l1ál1lo l2l1álm fl2l1álm llá2mag llá1ma fllá2mag fllá1ma llá2m1al fllá2m1al llá2m1e2 fllá2m1e2 llá2m1ér1té llá1mé fllá2m1ér1té fllá1mé llá2mik llá1mi fllá2mik fllá1mi llá2mis fllá2mis llá2m1ut llá1mu fllá2m1ut fllá1mu llán2k1e2 fllán2k1e2 l2l1á2p fl2l1á2p llá1ra2 fllá1ra2 llá2r1ad fllá2r1ad llá2rak fllá2rak llá2r1á2 fllá2r1á2 llá2s1ikr llá1si fllá2s1ikr fllá1si llá2sü fllá2sü llá2s1za llás2z fllá2s1za fllás2z l2l1átd fl2l1átd l2l1átf fl2l1átf l2l1átff fl2l1átff l2l1átï¬ ï¬‚2l1átï¬ l2l1átfl fl2l1átfl l2l1á2ti fl2l1á2ti l2l1átk fl2l1átk ll1bl fll1bl ll1b2r fll1b2r ll1cl fll1cl ll1d2r fll1d2r l2l1e2d2z l1le fl2l1e2d2z fl1le ll1ef8f ll1eff fll1eff lle2ger lle1ge flle2ger flle1ge lleg1g2 flleg1g2 lle2gyé lleg2y flle2gyé flleg2y lle1í2 flle1í2 l2l1e2kés lle1ké fl2l1e2kés flle1ké lle2l1a flle2l1a lle2lin lle1li flle2lin flle1li l2l1ell fl2l1ell l2l1e2lÅ‘1a lle1lÅ‘ fl2l1e2lÅ‘1a flle1lÅ‘ l2l1e2lÅ‘d fl2l1e2lÅ‘d lle1ma2 flle1ma2 lle2mal flle2mal lle2m1ar flle2m1ar lle2m1as flle2m1as lle2m1á flle2m1á lle2m1e2g lle1me flle2m1e2g flle1me lle2mel flle2mel l2l1e2me1lé fl2l1e2me1lé llem1ell fllem1ell lle2mer flle2mer lle2m1él lle1mé flle2m1él flle1mé lle2m1é2r. flle2m1é2r. lle2m1ér1té flle2m1ér1té lle2m1o2 flle2m1o2 lle2mu flle2mu lle2na flle2na llen3n fllen3n lle2n1Å‘2r lle1nÅ‘ flle2n1Å‘2r flle1nÅ‘ lle2r1in lle1ri flle2r1in flle1ri l2l1e2ró fl2l1e2ró l2l1e2sÅ‘t lle1sÅ‘ fl2l1e2sÅ‘t flle1sÅ‘ l2l1estr fl2l1estr lle2tos lle1to flle2tos flle1to l2l1e2vet lle1ve fl2l1e2vet flle1ve l2l1ex fl2l1ex l2l1é2g. l1lé fl2l1é2g. fl1lé l2l1é2het llé1he fl2l1é2het fllé1he l2l1é2jek llé1je fl2l1é2jek fllé1je llé2k1aps lléka2p llé1ka fllé2k1aps flléka2p fllé1ka llé1ká2 fllé1ká2 llé2kár fllé2kár llé2k1ol llé1ko fllé2k1ol fllé1ko llé2kos fllé2kos llé2kó fllé2kó llé2k1ú2t llé1kú fllé2k1ú2t fllé1kú l2l1é2le2t. llé1le fl2l1é2le2t. fllé1le l2l1é2letb fl2l1é2letb l2l1é2le1te fl2l1é2le1te l2l1é2letén lléle1té fl2l1é2letén flléle1té l2l1é2letét fl2l1é2letét l2l1é2letk fl2l1é2letk l2l1élt fl2l1élt l2l1élv fl2l1élv llé3ny1a2 llén2y fllé3ny1a2 fllén2y llé1sp fllé1sp l2l1é2ter llé1te fl2l1é2ter fllé1te llé1t2o fllé1t2o l2l1é2v. fl2l1é2v. l2l1é2vén llé1vé fl2l1é2vén fllé1vé ll1f8l ll1fl fll1fl ll1fr fll1fr ll1gr fll1gr ll1i1de l1li fll1i1de fl1li l2l1i2ga fl2l1i2ga l2l1i1gé fl2l1i1gé l2l1ill fl2l1ill l2l1i2ma fl2l1i2ma l2l1im1p2 fl2l1im1p2 ll1in2a. lli1na fll1in2a. flli1na l2l1ind fl2l1ind ll1in1ga fll1in1ga l2l1ingf fl2l1ingf l2l1ingff fl2l1ingff l2l1ingï¬ ï¬‚2l1ingï¬ l2l1ingfl fl2l1ingfl l2l1ingm fl2l1ingm l2l1ings fl2l1ings lli2nin lli1ni flli2nin flli1ni l2l1inv fl2l1inv lli2on lli1o flli2on flli1o lli2p flli2p l2l1i1pa2 fl2l1i1pa2 l2l1i1rá fl2l1i1rá l2l1i1ro fl2l1i1ro l2l1i1si fl2l1i1si ll1is1ko fll1is1ko l2l1ism fl2l1ism l2l1is1te fl2l1is1te lli2ta flli2ta l2l1it2a. fl2l1it2a. l2lital fl2lital lli2tál lli1tá flli2tál flli1tá l2l1i1zé fl2l1i1zé ll1iz1ma fll1iz1ma ll1iz1má fll1iz1má l2l1i2zo fl2l1i2zo l2l1íg l1lí fl2l1íg fl1lí l2l1íj fl2l1íj l2l1í2v fl2l1í2v ll1k2l fll1k2l ll1k2r fll1k2r ll1kv fll1kv l2l1o1á l1lo fl2l1o1á fl1lo ll1obj fll1obj l2l1of8f l2l1off fl2l1off l2l1o2l fl2l1o2l ll1o2pe fll1o2pe llos3s fllos3s lló1á2 l1ló flló1á2 fl1ló lló1gr flló1gr lló1ó2 flló1ó2 lló2rák lló1rá flló2rák flló1rá l2ló2rát fl2ló2rát lló2ri1á lló1ri flló2ri1á flló1ri l2ló1vo fl2ló1vo l2l1öb l1lö fl2l1öb fl1lö l2l1öl fl2l1öl ll1önt fll1önt l2l1ör fl2l1ör ll1öss fll1öss ll1ös2z fll1ös2z l2l1ö2z fl2l1ö2z l2l1Å‘2r. l1lÅ‘ fl2l1Å‘2r. fl1lÅ‘ ll1Å‘2re1i llÅ‘1re fll1Å‘2re1i fllÅ‘1re l2l1Å‘2rö fl2l1Å‘2rö l2l1Å‘rt fl2l1Å‘rt l2l1Å‘2si fl2l1Å‘2si l2l1Å‘2z2e. llÅ‘1ze fl2l1Å‘2z2e. fllÅ‘1ze ll1p2l fll1p2l ll1p2r fll1p2r ll2s2i. ll1si fll2s2i. fll1si ll1sk fll1sk ll1sp fll1sp lls3s flls3s ll1s1ta fll1s1ta lls2z2 flls2z2 ll1szk fll1szk ll1szt2 fll1szt2 ll1t1ré fll1t1ré ll1t1ri fll1t1ri ll1t1ró fll1t1ró ll1u2bo l1lu fll1u2bo fl1lu l2l1ug fl2l1ug ll1ult fll1ult llus1s fllus1s l2l1u2t fl2l1u2t l2l1ús l1lú fl2l1ús fl1lú l2l1ú2to fl2l1ú2to l2l1üd l1lü fl2l1üd fl1lü l2l1üg fl2l1üg l2l1ür fl2l1ür l2l1üt fl2l1üt l2l1üz fl2l1üz l2l1űz l1lű fl2l1űz fl1lű llvé2d1e2l ll1vé llvé1de fllvé2d1e2l fll1vé fllvé1de l2l2y fl2l2y l1ly1ö fl1ly1ö l3lyw fl3lyw lma1e2 l1ma flma1e2 fl1ma lma2kad lma1ka flma2kad flma1ka lm2a1k1ré flm2a1k1ré l2m1ant fl2m1ant lma1t1rá flma1t1rá l2m1att fl2m1att lmá2l l1má flmá2l fl1má lm1álm flm1álm lm1á1lo flm1á1lo lmá2nya2n lmán2y lmá1nya flmá2nya2n flmán2y flmá1nya lmá2ny1út lmá1nyú flmá2ny1út flmá1nyú lmá2ris lmá1ri flmá2ris flmá1ri lm1átk flm1átk lm1átt flm1átt lm1bl flm1bl lm1b2r flm1b2r lm1cl flm1cl lm1dr flm1dr lme3gon l1me lme2g1o flme3gon fl1me flme2g1o lme1kl flme1kl lme1k1ri flme1k1ri l2m1elb fl2m1elb lm1e2li flm1e2li lm1elm flm1elm lm1e2lÅ‘ flm1e2lÅ‘ l2m1ember lmem1be fl2m1ember flmem1be l2m1enc fl2m1enc l2m1eng fl2m1eng lme1ó2 flme1ó2 lm1e1pi flm1e1pi l2m1e2se1té lme1se fl2m1e2se1té flme1se l2m1es2s2z fl2m1es2s2z l2m1etn fl2m1etn lmet2te flmet2te l2m1e1tű fl2m1e1tű l2m1ex fl2m1ex l2m1ég l1mé fl2m1ég fl1mé l2m1élv fl2m1élv l2m1é2ne1ke lmé1ne fl2m1é2ne1ke flmé1ne l2m1ép fl2m1ép l2m1é1va fl2m1é1va lm1gl flm1gl lm1gr flm1gr l2m1i2dÅ‘ l1mi fl2m1i2dÅ‘ fl1mi lmi2g flmi2g l2m1i1ga fl2m1i1ga l2m1i2gaz1 fl2m1i2gaz1 l2m1ind fl2m1ind l2m1inf fl2m1inf l2m1inff fl2m1inff l2m1inï¬ ï¬‚2m1inï¬ l2m1infl fl2m1infl l2m1ing fl2m1ing l2m1ins fl2m1ins l2m1in1te fl2m1in1te l2m1in1té fl2m1in1té l2m1inv fl2m1inv l2m1i2p fl2m1i2p lm1i1rá flm1i1rá lm1i1ro flm1i1ro lm1isk flm1isk lm1izz flm1izz lm1íg l1mí flm1íg fl1mí lm1ír flm1ír lm1íz flm1íz lm1kl flm1kl lm1kr flm1kr lmo1g l1mo flmo1g fl1mo lm1old flm1old lm1olv flm1olv l2m1o1pe fl2m1o1pe lm1or1s2 flm1or1s2 l2m1ov fl2m1ov l2m1ó1dá l1mó fl2m1ó1dá fl1mó lm1ó2rá flm1ó2rá lm1ö2k l1mö flm1ö2k fl1mö lm1ön flm1ön lm1ö2r flm1ö2r lm1ös flm1ös lm1öt flm1öt lm1ö2z flm1ö2z lm1Å‘2r l1mÅ‘ flm1Å‘2r fl1mÅ‘ lm1p2l flm1p2l lm1p2r flm1p2r lm1sk flm1sk lm1sl flm1sl lm1sn flm1sn lm1sp flm1sp lm1s2t2 flm1s2t2 lm1s2z2 flm1s2z2 lm1t2r flm1t2r l2m1u2g l1mu fl2m1u2g fl1mu l2m1u2r fl2m1u2r lm1u1tó flm1u1tó l2m1új l1mú fl2m1új fl1mú l2m1üg l1mü fl2m1üg fl1mü l2m1ünn fl2m1ünn l2m1üz fl2m1üz lnak2 l1na flnak2 fl1na lna2p1e flna2p1e lna1u2 flna1u2 lná2ris l1ná lná1ri flná2ris fl1ná flná1ri lné2v1á l1né flné2v1á fl1né lni2ker l1ni lni1ke flni2ker fl1ni flni1ke lni2s1 flni2s1 1lo lo2áz lo1á flo2áz flo1á lo2b1a2r lo1ba flo2b1a2r flo1ba 2lo1bá flo1bá lo2b1á2c flo2b1á2c 2lo2be flo2be lo2b1iv lo1bi flo2b1iv flo1bi lo2b1ó2 flo2b1ó2 2lo1bu flo1bu lo1by flo1by lo1ca2 flo1ca2 lo2c2h flo2c2h lo1cy flo1cy lo2éc lo1é flo2éc flo1é lo2é1o flo2é1o lo2ép flo2ép lo2éz flo2éz lo2g1a2d lo1ga flo2g1a2d flo1ga lo2gal flo2gal lo2g1ál lo1gá flo2g1ál flo1gá logás1s flogás1s lo2g1e2l lo1ge flo2g1e2l flo1ge lo2ge2r flo2ge2r lo2gí flo2gí lo2g1or lo1go flo2g1or flo1go lo2gö flo2gö l2o1g2raf log1ra fl2o1g2raf flog1ra l2o1g2raff fl2o1g2raff lo1g2raï¬ ï¬‚o1g2raï¬ lo1g2ra1fl flo1g2ra1fl lo1g1rá flo1g1rá lo2g1ú flo2g1ú lo2gü flo2gü lo2i1e lo1i flo2i1e flo1i lo2ir flo2ir lo2kab lo1ka flo2kab flo1ka lo2k1a2d flo2k1a2d lo2k1aj flo2k1aj 2l1o2kak fl1o2kak lo2kárb lo1ká flo2kárb flo1ká lo2k1á2ro flo2k1á2ro lo2k1árr flo2k1árr lo2k1á1ru flo2k1á1ru lo2k1átj flo2k1átj lo2ká1u flo2ká1u lo2k1e2 flo2k1e2 lo2kék lo1ké flo2kék flo1ké lo2kid lo1ki flo2kid flo1ki lok1is flok1is lo2k1i2z flo2k1i2z lo2kí flo2kí lokka2l lok1ka flokka2l flok1ka lok2k1a1la flok2k1a1la lok2k1el lok1ke flok2k1el flok1ke lok2k1ó2 flok2k1ó2 lok2kös lok1kö flok2kös flok1kö lok2k1ut lok1ku flok2k1ut flok1ku lo2k1ol lo1ko flo2k1ol flo1ko l1o2konk fl1o2konk lo2kor flo2kor 2l1o2koz fl1o2koz lo2kü flo2kü lo2laj lo1la flo2laj flo1la 2l1old fl1old 2l1o2li fl1o2li 2l1ol1ló fl1ol1ló 2l1oltár lol1tá fl1oltár flol1tá lom1a1dá lo1ma flom1a1dá flo1ma lo2m1ajt flo2m1ajt lom1a1ka flom1a1ka lom1a2lap loma1la flom1a2lap floma1la lom1a1rá flom1a1rá lom1ass flom1ass lo2m1att flo2m1att lo2maz flo2maz lom1á2c2s lo1má flom1á2c2s flo1má lo2má2g flo2má2g lo2m1ál flo2m1ál lo2m1á1ré flo2m1á1ré lom1á1ri flom1á1ri lom1árk flom1árk lo2m1árn flo2m1árn lo2m1á2ro flo2m1á2ro lomba2l lom1ba flomba2l flom1ba lom2ba1la flom2ba1la lom2bav flom2bav lo2mec lo1me flo2mec flo1me lo2med flo2med lo2men flo2men lom1erk flom1erk lom1e2rÅ‘ flom1e2rÅ‘ lo2m1e2s flo2m1e2s lo2méd lo1mé flo2méd flo1mé lo2mék flo2mék lo2mél flo2mél lom1é2ne flom1é2ne lo2m1é1ri flo2m1é1ri lo2m1i2d lo1mi flo2m1i2d flo1mi lo2m1i2k flo2m1i2k lo2m1im flo2m1im lom1ing flom1ing lo2mink flo2mink lom1int flom1int lomi2s flomi2s lom1is2z flom1is2z lo2miz flo2miz lo2m1í2 flo2m1í2 l1om1ló fl1om1ló lo2m1okoz lo1mo lomo1ko flo2m1okoz flo1mo flomo1ko lo2mol flo2mol lo2m1o2r flo2m1o2r lo2m1os2z flo2m1os2z lom1ott flom1ott lo2m1ó2 flo2m1ó2 lo2mö flo2mö lo2mÅ‘ flo2mÅ‘ lom1p2l flom1p2l lo2mü flo2mü lo2mű flo2mű lo2nab lo1na flo2nab flo1na lo2n1a2d flo2n1a2d lo2n1a2g flo2n1a2g lo2naj flo2naj l2o2nak fl2o2nak lo2n1a2l flo2n1a2l lo2n1ar flo2n1ar lo2n1as flo2n1as lo2n1a1u flo2n1a1u lo2n1av flo2n1av lo2n1á2z lo1ná flo2n1á2z lon2c2h flon2c2h lon2cil lon1ci flon2cil flon1ci lon2d1ó2 flon2d1ó2 lo2n1e flo2n1e lo2n1ir lo1ni flo2n1ir flo1ni lon1k2 flon1k2 lo2nol lo1no flo2nol flo1no lo2n1ó2 flo2n1ó2 lo2nö flo2nö lon1s2 flon1s2 lon1tr flon1tr lo2nü flo2nü lo2o1i lo1o flo2o1i flo1o lo2oj flo2oj lo2om flo2om lo2or flo2or lo2ós lo1ó flo2ós flo1ó lo2pap lo1pa flo2pap flo1pa lo2p1ál lo1pá flo2p1ál flo1pá lo2pe flo2pe lop1e2l flop1e2l lo2pi2z lo1pi flo2pi2z flo1pi lo2pí flo2pí lo2p1o2r lo1po flo2p1o2r flo1po lo2p1os2z flo2p1os2z lo2pö flo2pö lop2p1in lop1pi flop2p1in flop1pi lop1t2 flop1t2 2l1op1ti fl1op1ti lo2pü flo2pü lo1py flo1py lor2din lor1di flor2din flor1di lo2r1e2t lo1re flo2r1e2t flo1re 2l1org fl1org 2l1orm fl1orm 2lorn florn 2l1ors fl1ors 2l1orv fl1orv 2l1orz fl1orz l2o2s. fl2o2s. l2o1sa fl2o1sa l2osb fl2osb lo2se flo2se lo2sü flo2sü lo1sz2kó2p. los2z losz1kó flo1sz2kó2p. flos2z flosz1kó lo1sz2kópb flo1sz2kópb lo1sz2kóph flo1sz2kóph lo1sz2kópk flo1sz2kópk lo1sz2kópn flo1sz2kópn lo1sz2kópp flo1sz2kópp lo1sz2kópr flo1sz2kópr lo1sz2kópt flo1sz2kópt 2l1ottl fl1ottl lo1t2y flo1t2y lo2ud lo1u flo2ud flo1u lo2u1i flo2u1i lo2up flo2up lo2us flo2us lo2uv flo2uv lo1vy flo1vy lo2xá flo2xá lo2xi flo2xi lo1yo flo1yo 1ló fló lóa2d ló1a flóa2d fló1a lóá2r ló1á flóá2r fló1á ló1bl fló1bl ló1br fló1br lóc3c flóc3c ló2cem ló1ce fló2cem fló1ce ló2c2h fló2c2h lócsa2p1á2g l2ó1c1sa lóc2s lócsa1pá flócsa2p1á2g fl2ó1c1sa flóc2s flócsa1pá 2l1ó2dát ló1dá fl1ó2dát fló1dá ló1d1ro fló1d1ro lófé2l1é2v ló1fé lófé1lé flófé2l1é2v fló1fé flófé1lé lófi2ú1ké lóf8i lófi1ú lóï¬2ú1ké lÃ³ï¬ lóï¬1ú flóï¬2ú1ké ï¬‚Ã³ï¬ ï¬‚Ã³ï¬1ú ló1f8l ló1fl fló1fl lóg1g flóg1g ló2gí fló2gí ló1g1rá fló1g1rá lóí2v ló1í flóí2v fló1í ló1k2l fló1k2l ló1k1ré fló1k1ré ló2nar ló1na fló2nar fló1na l1ó2n2é. ló1né fl1ó2n2é. fló1né 2l1ó2n2i. ló1ni fl1ó2n2i. fló1ni 2lónn flónn 2ló1no fló1no 2lónr flónr 2lónt flónt lópár1ba2 ló1pá flópár1ba2 fló1pá ló1p2l fló1p2l ló1p2r fló1p2r ló2rac ló1ra fló2rac fló1ra l2ór1a1da fl2ór1a1da ló2r1a2la fló2r1a2la lóra2n flóra2n lór1an2y flór1an2y ló2rar fló2rar 2lórá1i ló1rá flórá1i fló1rá 2lóráj flóráj l1ó2rámr fl1ó2rámr 2lórár flórár 2lórát flórát ló2rem ló1re fló2rem fló1re ló2r1e2s fló2r1e2s ló2r1ér ló1ré fló2r1ér fló1ré ló2r1ing ló1ri fló2r1ing fló1ri lór1ism flór1ism ló2rí fló2rí lór1old ló1ro flór1old fló1ro ló2rü fló2rü ló2s1aj ló1sa fló2s1aj fló1sa lósa2n flósa2n lós1an2y flós1an2y ló2s1e2p ló1se fló2s1e2p fló1se ló1s1ki fló1s1ki ló1s1la fló1s1la ló1s1pe fló1s1pe ló1s2po fló1s2po ló1s2rá fló1s2rá lós3s flós3s ló1s2ta fló1s2ta l2ó1st2r fl2ó1st2r ló1s2z fló1s2z ló1t2rá fló1t2rá ló1t1re fló1t1re ló1t1ré fló1t1ré ló1t1ri fló1t1ri ló1t1ro fló1t1ro 2l1ó2vod ló1vo fl1ó2vod fló1vo l1ó2vó fl1ó2vó ló2za1d2 ló1za fló2za1d2 fló1za ló2z1a2k fló2z1a2k ló2zal fló2zal lóza2n flóza2n lóz1an2y flóz1an2y lóza2t1e flóza2t1e ló2zál ló1zá fló2zál fló1zá ló2z1es ló1ze fló2z1es fló1ze ló2zim ló1zi fló2zim fló1zi ló2z1ir fló2z1ir lóz1isk flóz1isk lóz1ism flóz1ism ló2zolv ló1zo fló2zolv fló1zo ló2zÅ‘ fló2zÅ‘ ló2zü fló2zü ló2z1ű fló2z1ű 1lö flö lö2bö flö2bö lö2ca flö2ca löc3c flöc3c lö2c2h flö2c2h lö2cÅ‘ flö2cÅ‘ 2l1ö2dé fl1ö2dé lö2ka flö2ka lö2ká flö2ká lö2ko flö2ko l1öl1dö fl1öl1dö löl2t1a flöl2t1a löl2tá flöl2tá 2l1öltés löl1té fl1öltés flöl1té l1ölt1he fl1ölt1he löl2to flöl2to l1öltöt löl1tö fl1öltöt flöl1tö l1öltöz fl1öltöz l1öl1tÅ‘ fl1öl1tÅ‘ 2l1öml fl1öml lö2möl lö1mö flö2möl flö1mö lö2na flö2na lö2ná flö2ná lön2b1ékét lön1bé lönbé1ké flön2b1ékét flön1bé flönbé1ké lö2ne flö2ne lö2né flö2né lö2n1o flö2n1o lö2nó flö2nó lö2nu flö2nu lö2nú flö2nú lö2pa flö2pa lö2pá flö2pá lö2pe flö2pe lö2pöl lö1pö flö2pöl flö1pö lö1pü2 flö1pü2 lö2p1ü1lé flö2p1ü1lé lö2p1ü1lÅ‘ flö2p1ü1lÅ‘ lö2re flö2re lö2rö flö2rö lös3s1zá lös2s2z flös3s1zá flös2s2z 2lös5s1ze/sz=,3,1 flös5s1ze/sz=,3,1 lö2sü flö2sü lö2s1ze lös2z flö2s1ze flös2z lö2szi2s lö1s1zi flö2szi2s flö1s1zi 2l1ötl fl1ötl löt2ter löt1te flöt2ter flöt1te 2l1ötv fl1ötv 2l1ö2v. fl1ö2v. 2l1övb fl1övb l1ö2v2e. lö1ve fl1ö2v2e. flö1ve l1ö2vez fl1ö2vez 2l1övh fl1övh 2l1övn fl1övn l1ö2vön lö1vö fl1ö2vön flö1vö 2l1övr fl1övr l1ö2vük lö1vü fl1ö2vük flö1vü 2l1övv fl1övv 1lÅ‘ flő lÅ‘a2c lÅ‘1a flőa2c flő1a lÅ‘a2n flőa2n lőá2g lÅ‘1á flőá2g flő1á lÅ‘1bl flő1bl lÅ‘1br flő1br lÅ‘2dad lÅ‘1da flő2dad flő1da lÅ‘2dá flő2dá 2lÅ‘d2e. lÅ‘1de flőd2e. flő1de 2lÅ‘de1i flőde1i lÅ‘2del flő2del lÅ‘2d1ék lÅ‘1dé flő2d1ék flő1dé lÅ‘2din lÅ‘1di flő2din flő1di lÅ‘2d1iv flő2d1iv 2lÅ‘dj2e. lÅ‘d1je flődj2e. flőd1je 2lÅ‘djét lÅ‘d1jé flődjét flőd1jé lÅ‘dköz1 lÅ‘d1kö flődköz1 flőd1kö 2lÅ‘dö1ke lÅ‘1dö flődö1ke flő1dö 2lÅ‘dökn flődökn 2lÅ‘dökr flődökr 2lÅ‘dö2t. flődö2t. lÅ‘2d3ze lÅ‘d2z flő2d3ze flőd2z lÅ‘e2l lÅ‘1e flőe2l flő1e lÅ‘e2s flőe2s 2lÅ‘e2sé flőe2sé lÅ‘1f8l lÅ‘1fl flő1fl lÅ‘1f2r flő1f2r lÅ‘gé1pi2 lÅ‘1gé flőgé1pi2 flő1gé lÅ‘gé2p1ip flőgé2p1ip l1Å‘2gyel lÅ‘g2y lÅ‘1gye fl1Å‘2gyel flőg2y flő1gye 2lÅ‘1hű flő1hű lÅ‘i2ta lÅ‘1i flői2ta flő1i 2lőít lÅ‘1í flőít flő1í 2lÅ‘kelÅ‘b lÅ‘1ke lÅ‘ke1lÅ‘ flőkelÅ‘b flő1ke flőke1lÅ‘ 2lÅ‘ké1se lÅ‘1ké flőké1se flő1ké lÅ‘1kl flő1kl lÅ‘ko2r1út lÅ‘1ko lÅ‘ko1rú flőko2r1út flő1ko flőko1rú lÅ‘1kv flő1kv 2lÅ‘le1ge lÅ‘1le flőle1ge flő1le lÅ‘mik1ro1 lÅ‘1mi flőmik1ro1 flő1mi 2lÅ‘nn flőnn 2lÅ‘n2y. lÅ‘n2y flőn2y. flőn2y lÅ‘2nyal lÅ‘1nya flő2nyal flő1nya lÅ‘2nyár lÅ‘1nyá flő2nyár flő1nyá 2lÅ‘nyb flőnyb 2lÅ‘ny2e. lÅ‘1nye flőny2e. flő1nye 2lÅ‘nye1i flőnye1i lÅ‘2ny1el1vi flő2ny1el1vi 2lÅ‘nyéb lÅ‘1nyé flőnyéb flő1nyé 2lÅ‘nyén flőnyén 2lÅ‘nyér flőnyér 2lÅ‘nyét flőnyét 2lÅ‘nyév flőnyév 2lÅ‘nyh flőnyh 2lÅ‘nyk flőnyk 2lÅ‘nyn flőnyn 2lÅ‘1nyö flő1nyö 2lÅ‘nyr flőnyr 2lÅ‘nyt flőnyt 2lÅ‘1nyü flő1nyü lőőr2s1é2g lÅ‘1Å‘ lőőr1sé flőőr2s1é2g flő1Å‘ flőőr1sé 2lÅ‘pán lÅ‘1pá flőpán flő1pá lÅ‘1pl flő1pl lÅ‘1pr flő1pr lÅ‘1ps flő1ps 2lÅ‘reh lÅ‘1re flőreh flő1re 2lÅ‘rej flőrej lÅ‘re3m flőre3m 2lÅ‘ret flőret 2lÅ‘réb lÅ‘1ré flőréb flő1ré lÅ‘2r1is lÅ‘1ri flő2r1is flő1ri lÅ‘2rül lÅ‘1rü flő2rül flő1rü 2l1Å‘rz fl1Å‘rz lÅ‘2sá2l lÅ‘1sá flő2sá2l flő1sá lÅ‘2sin lÅ‘1si flő2sin flő1si lÅ‘1s2ka flő1s2ka lÅ‘1s1ká flő1s1ká lÅ‘1s1la flő1s1la lÅ‘1só2 flő1só2 lÅ‘2sór flő2sór lÅ‘2s1ót flő2s1ót lÅ‘2sÅ‘ flő2sÅ‘ lÅ‘1s2pi flő1s2pi lÅ‘1sp2r flő1sp2r lÅ‘1s1rá flő1s1rá lÅ‘s3s flős3s lÅ‘s2tar lÅ‘s1ta flős2tar flős1ta lÅ‘1st2r flő1st2r lÅ‘1sy flő1sy lÅ‘s2z2 flős2z2 lÅ‘s3zá1ra lÅ‘1s1zá flős3zá1ra flő1s1zá lÅ‘s3zárr flős3zárr lÅ‘1szf flő1szf lÅ‘1szff flő1szff lÅ‘1szï¬ ï¬‚Å‘1szï¬ lÅ‘1szfl flő1szfl l1Å‘2szít lÅ‘1s1zí fl1Å‘2szít flő1s1zí 2lÅ‘szÅ‘2r. lÅ‘1s1zÅ‘ flőszÅ‘2r. flő1s1zÅ‘ lÅ‘1szt2 flő1szt2 2lÅ‘té2t. lÅ‘1té flőté2t. flő1té 2lÅ‘to1lá lÅ‘1to flőto1lá flő1to lÅ‘1t1re flő1t1re lÅ‘u2t lÅ‘1u flőu2t flő1u lőü2l lÅ‘1ü flőü2l flő1ü 2lÅ‘vig lÅ‘1vi flővig flő1vi 2l1Å‘2zét lÅ‘1zé fl1Å‘2zét flő1zé 2l1Å‘2zi1é lÅ‘1zi fl1Å‘2zi1é flő1zi 2lÅ‘zl flőzl 2lÅ‘zm flőzm 2l1Å‘2zük lÅ‘1zü fl1Å‘2zük flő1zü l2p1a2lag l1pa lpa1la fl2p1a2lag fl1pa flpa1la l2p1a2lap fl2p1a2lap l2p1alát lpa1lá fl2p1alát flpa1lá l2p1a2láv fl2p1a2láv l2p1alk fl2p1alk l2p1an2y fl2p1an2y l2p1áll l1pá fl2p1áll fl1pá l2p1átm fl2p1átm l2p1áts fl2p1áts lpcsa2p1 lpc2s lp1c1sa flpcsa2p1 flpc2s flp1c1sa l2p1eg l1pe fl2p1eg fl1pe l2p1e2lu fl2p1e2lu l2p1e2m fl2p1e2m lpen1n flpen1n l2p1e2rÅ‘ fl2p1e2rÅ‘ l2p1ég l1pé fl2p1ég fl1pé lpé2l flpé2l l2p1é1le fl2p1é1le lpé2r flpé2r l2p1é1ri fl2p1é1ri lp2he flp2he l2p1i2d l1pi fl2p1i2d fl1pi l2p1i2na fl2p1i2na lp1izm flp1izm lp1i2zo flp1i2zo l2p1ív l1pí fl2p1ív fl1pí l1p2lá fl1p2lá l2p1old l1po fl2p1old fl1po lpo2n flpo2n lpo1n1á flpo1n1á lp1p2r flp1p2r l1prd fl1prd l1p2ri fl1p2ri l1p2ro fl1p2ro l1p2rób lp1ró fl1p2rób flp1ró lpu2s l1pu flpu2s fl1pu lp1u1s1zo lpus2z flp1u1s1zo flpus2z lrá2k1e l1rá flrá2k1e fl1rá lre1i2 l1re flre1i2 fl1re lre1p2ré flre1p2ré lre1s2z flre1s2z lre1ü2 flre1ü2 lsa2v1a2m l1sa lsa1va flsa2v1a2m fl1sa flsa1va lság3g l1sá flság3g fl1sá ls1eprik l1se l2sep1ri fls1eprik fl1se fl2sep1ri ls2ho fls2ho ls2ka fls2ka ls2ká fls2ká ls2ki fls2ki ls2la fls2la ls2lá fls2lá ls2li fls2li ls2ma fls2ma ls2mi fls2mi lsors1s l1so flsors1s fl1so lsóé2r l1só lsó1é flsóé2r fl1só flsó1é lsÅ‘1s2z l1sÅ‘ flsÅ‘1s2z fl1sÅ‘ l1s2pa fl1s2pa l1s2pe fl1s2pe l1s2pé fl1s2pé l1s2pi fl1s2pi l1s2po fl1s2po l1s2pó fl1s2pó l1sp2r fl1sp2r l1s2rá fl1s2rá l1s2ró fl1s2ró l1s2tar ls1ta fl1s2tar fls1ta ls2tá fls2tá lste2i ls1te flste2i fls1te l1s2ti fl1s2ti l1s2tí fl1s2tí l1s2to fl1s2to l1st2r fl1st2r l1s2tu fl1s2tu l1s2tú fl1s2tú lsza2ké ls2z l1s1za flsza2ké fls2z fl1s1za lsza2k1ü2 flsza2k1ü2 lszá2rú l1s1zá flszá2rú fl1s1zá l2sz1e2gű l1s1ze fl2sz1e2gű fl1s1ze l1sz2f fl1sz2f l1sz2ff fl1sz2ff l1sz2ï¬ ï¬‚1sz2ï¬ l1sz2fl fl1sz2fl l1sz2l fl1sz2l l1sz2p fl1sz2p lszt2 flszt2 lsz2tá flsz2tá l1sztr fl1sztr l1sz2v fl1sz2v lta2gyá l1ta ltag2y flta2gyá fl1ta fltag2y lt1a1já flt1a1já lta2lapb lta1la flta2lapb flta1la lta2l1á2s lta1lá flta2l1á2s flta1lá lta2l1á2z flta2l1á2z lt2a2len lta1le flt2a2len flta1le lt2a2l1ev flt2a2l1ev lta2l1é2 flta2l1é2 lta2liz lta1li flta2liz flta1li ltal1l fltal1l lta2lö flta2lö l2t1amp fl2t1amp l2t1apr fl2t1apr lt1a1rá flt1a1rá l2t1arc fl2t1arc lta2ri1á lta1ri flta2ri1á flta1ri l2t1as2s2z fl2t1as2s2z lt1aszt ltas2z flt1aszt fltas2z l2t1a2u fl2t1a2u lt1a1zo flt1a1zo l2t1á2g. l1tá fl2t1á2g. fl1tá lt1á2ga flt1á2ga l2t1ágb fl2t1ágb l2t1ágg fl2t1ágg l2t1ágn fl2t1ágn l2t1ágr fl2t1ágr l2t1áll fl2t1áll ltá1na2 fltá1na2 ltá2nan fltá2nan ltár2s1ág ltár1sá fltár2s1ág fltár1sá lt1á2rur ltá1ru flt1á2rur fltá1ru ltá2s1á2g ltá1sá fltá2s1á2g fltá1sá ltá2tal ltá1ta fltá2tal fltá1ta l2t1átr fl2t1átr ltbe2a lt1be fltbe2a flt1be lt1bl flt1bl lt1br flt1br l2t1ell l1te fl2t1ell fl1te l2t1e1lö fl2t1e1lö l2t1e1mu fl2t1e1mu lte2rad lte1ra flte2rad flte1ra l2t1e2reik lte1re ltere1i fl2t1e2reik flte1re fltere1i l2t1e2rÅ‘ fl2t1e2rÅ‘ l2te1ru fl2te1ru lte2t1a2 flte2t1a2 lte2ték lte1té flte2ték flte1té l2t1ék1né l1té fl2t1ék1né fl1té lté2l flté2l lt1é1le flt1é1le lt1élm flt1élm lt1érc flt1érc l2t1érz fl2t1érz lté2sa2 flté2sa2 lté2s1é2g lté1sé flté2s1é2g flté1sé ltés3s fltés3s l1té2t1é2 fl1té2t1é2 l2té2ve2s. lté1ve fl2té2ve2s. flté1ve lt1f8l lt1fl flt1fl lt1gl flt1gl lt1gr flt1gr lt1i1de l1ti flt1i1de fl1ti ltig2 fltig2 l2t1i2gé fl2t1i2gé lti1kl flti1kl l2t1ill fl2t1ill lt1imp flt1imp l2t1ind fl2t1ind l2t1ing fl2t1ing l2t1i2o fl2t1i2o l2t1i1si fl2t1i1si lt1ism flt1ism l2t1ist fl2t1ist l2t1i2ta fl2t1i2ta l2t1ín l1tí fl2t1ín fl1tí l2t1í2r fl2t1í2r lt1ít flt1ít l2t1í2v fl2t1í2v ltí2v1e2l ltí1ve fltí2v1e2l fltí1ve l2t1í2z fl2t1í2z lt1kr flt1kr l2t1oml l1to fl2t1oml fl1to l2t1ord2 fl2t1ord2 l2t1or1g2 fl2t1or1g2 l2t1orj fl2t1orj l2t1orr fl2t1orr lt1ors2 flt1ors2 ltos3s fltos3s l2t1o2x fl2t1o2x ltó1p l1tó fltó1p fl1tó ltó1s2p fltó1s2p ltó1s2z fltó1s2z ltót2 fltót2 ltö2l l1tö fltö2l fl1tö l2t1ö1lé fl2t1ö1lé lt1önt flt1önt lt1öss flt1öss ltÅ‘1a2 l1tÅ‘ fltÅ‘1a2 fl1tÅ‘ ltÅ‘e2l ltÅ‘1e fltÅ‘e2l fltÅ‘1e lt1Å‘2rö flt1Å‘2rö lt1pl flt1pl lt1pr flt1pr ltra1s lt1ra fltra1s flt1ra lt2rág lt1rá flt2rág flt1rá lt2rén lt1ré flt2rén flt1ré lt2rik lt1ri flt2rik flt1ri lt2ril flt2ril lt2róf lt1ró flt2róf flt1ró lt2róff flt2róff lt2rÃ³ï¬ ï¬‚t2rÃ³ï¬ lt2rófl flt2rófl l1t2rón fl1t2rón lt2róp flt2róp ltsé2g1el lt1sé ltsé1ge fltsé2g1el flt1sé fltsé1ge lt1sl flt1sl lt1sp flt1sp lt1st flt1st lt1t2r flt1t2r l2t1udv l1tu fl2t1udv fl1tu l2t1u1na fl2t1u1na ltu2n1i fltu2n1i lt1u1ra flt1u1ra ltu2s1ze ltus2z fltu2s1ze fltus2z l2t1u2t fl2t1u2t ltú2ri l1tú fltú2ri fl1tú l2t1üg l1tü fl2t1üg fl1tü lt1ü2lé flt1ü2lé l2t1üst fl2t1üst l2t1ü2v fl2t1ü2v lt1ü2zem ltü1ze flt1ü2zem fltü1ze 1lu lua2g lu1a flua2g flu1a luá2r lu1á fluá2r flu1á lu2b1a2d lu1ba flu2b1a2d flu1ba lu2bal flu2bal luba2n fluba2n lu2b1as flu2b1as lu2bár lu1bá flu2bár flu1bá lu2b1e2g lu1be flu2b1e2g flu1be lube2r flube2r lu2bes flu2bes lu2bél lu1bé flu2bél flu1bé lu2b1in lu1bi flu2b1in flu1bi lu1bó2 flu1bó2 lu2bór flu2bór lu2bö flu2bö lub1t2 flub1t2 lu2bü flu2bü 2ludj fludj 2ludv fludv lu1dy flu1dy lue2l lu1e flue2l flu1e lu2e1sé flu2e1sé lugas1s lu1ga flugas1s flu1ga lu2gat flu2gat lu1g2l flu1g2l 2l1u2gor lu1go fl1u2gor flu1go 2l1ugr fl1ugr lui2r lu1i flui2r flu1i 2l1ujj fl1ujj lu1kl flu1kl lu2k1os lu1ko flu2k1os flu1ko lu2k1o2v flu2k1o2v lu2l1ér lu1lé flu2l1ér flu1lé lu2l1inf lu1li flu2l1inf flu1li lu2l1inff flu2l1inff lu2l1inï¬ ï¬‚u2l1inï¬ lu2l1infl flu2l1infl lu2lí flu2lí lul3l flul3l 2lulr flulr lu2mad lu1ma flu2mad flu1ma lu2maz flu2maz lu2mál lu1má flu2mál flu1má lumen1n lu1me flumen1n flu1me lu2mer flu2mer lu2mes flu2mes lu2m1i2k lu1mi flu2m1i2k flu1mi lu2m1ip flu2m1ip 2lu1mí flu1mí lum2pe2l lum1pe flum2pe2l flum1pe 2lund flund l1unh fl1unh 2l1u2ni fl1u2ni l1unj fl1unj l1unl fl1unl l1unn fl1unn l1u2no fl1u2no l1u2nó fl1u2nó l1unv fl1unv lu1n2y flu1n2y lu1p1ro flu1p1ro lu2rak lu1ra flu2rak flu1ra lu2ram flu2ram lu2rat flu2rat 2l1u2ru fl1u2ru 2l1u2rú fl1u2rú lu2sad lu1sa flu2sad flu1sa lu2s1a1ka flu2s1a1ka lu2sakr flu2sakr lu2sal flu2sal lu2s1a2n flu2s1a2n lu2s1ág lu1sá flu2s1ág flu1sá lu2sál flu2sál lu2se flu2se lus1e2r flus1e2r lu2s1ér1té lu1sé flu2s1ér1té flu1sé lu2sim lu1si flu2sim flu1si lu2sis flu2sis lu2sí2r lu1sí flu2sí2r flu1sí luskés2z1 lus1ké fluskés2z1 flus1ké lu2s1ó2 flu2s1ó2 lu1sö2 flu1sö2 lu2sör flu2sör lu2sÅ‘ flu2sÅ‘ lus3s1ze lus2s2z flus3s1ze flus2s2z lus3s1zi flus3s1zi lust2 flust2 2l1u2tánz lu1tá fl1u2tánz flu1tá 2l1utc fl1utc lu1t2h flu1t2h lu2tód lu1tó flu2tód flu1tó lu1t1ra flu1t1ra lu2z2s flu2z2s 1lú flú lú2d1a2 flú2d1a2 lú2dá flú2dá lú2de flú2de lú2dé2t lú1dé flú2dé2t flú1dé lú2d3z flú2d3z lú2ga flú2ga lú2g1á flú2g1á lú2ge flú2ge lúg3g flúg3g lú2gi flú2gi lú2gol lú1go flú2gol flú1go 2l1újd fl1újd 2l1ú2jí fl1ú2jí lú2ju flú2ju lú2ri flú2ri lú2ru flú2ru lú2rü flú2rü 2l1ú2s2z fl1ú2s2z lú2t2é. lú1té flú2t2é. flú1té 2l1útv fl1útv lú2z1a2n lú1za flú2z1a2n flú1za 1lü flü lü2c2s flü2c2s lü2dí flü2dí lü2dü flü2dü lü2ge flü2ge lü2g2y flü2g2y lü2lá flü2lá l1ül1dö fl1ül1dö lü2lel lü1le flü2lel flü1le lü2l1e2m flü2l1e2m l1ülep fl1ülep lü2lé flü2lé lül1ér flül1ér 2l1ülés fl1ülés 2l1ülhe2t. lül1he fl1ülhe2t. flül1he 2l1ülhet1ne fl1ülhet1ne 2l1ülhets fl1ülhets lü2lí flü2lí 2l1üljek lül1je fl1üljek flül1je 2l1ülnek lül1ne fl1ülnek flül1ne 2l1ülnék lül1né fl1ülnék flül1né 2l1ül1ni fl1ül1ni 2l1ü2lö fl1ü2lö 2l1ü2lÅ‘ fl1ü2lÅ‘ 2l1üls2z. lüls2z fl1üls2z. flüls2z 2l1ül2t. fl1ül2t. l1ült2e. lül1te fl1ült2e. flül1te 2l1ültek fl1ültek 2l1ültem fl1ültem 2l1ültes fl1ültes 2l1ülte2t. fl1ülte2t. 2l1ül1te1te fl1ül1te1te 2l1ültet2i. lülte1ti fl1ültet2i. flülte1ti 2l1ültet1té fl1ültet1té 2lül1té flül1té l1ülté1i fl1ülté1i l1ülték fl1ülték l1ülté2l fl1ülté2l l1ültén fl1ültén l1ültér fl1ültér l1ültét fl1ültét l1ültn fl1ültn 2l1ül1tü fl1ül1tü lü2lú flü2lú 1lü2lü flü2lü 2l1ülün fl1ülün 2l1ülv2e. lül1ve fl1ülv2e. flül1ve 2l1ünn fl1ünn lü1ph flü1ph lü2re flü2re lü2rí flü2rí lü2rü flü2rü lü2te flü2te lü2té flü2té lü2ti flü2ti lü2tö flü2tö lü2tÅ‘ flü2tÅ‘ lü2tü flü2tü lü2ve flü2ve lü2vö flü2vö lü2ze flü2ze lü2zé flü2zé 1lű flű lű2rá flű2rá 2l1űrb fl1űrb 2l1ű2ri fl1ű2ri l1űrl fl1űrl lű2ze flű2ze lű2zé flű2zé lű2zi flű2zi lű2zö flű2zö lű2zÅ‘ flű2zÅ‘ lű2zü flű2zü lva2dat l1va lva1da flva2dat fl1va flva1da l2v1adm fl2v1adm lvaj1ak lva1ja flvaj1ak flva1ja lva2j1e flva2j1e l2v1a2kad lva1ka fl2v1a2kad flva1ka l2v1akc fl2v1akc l2v1a2la fl2v1a2la l2v1alg fl2v1alg l2v1alk fl2v1alk l2v1ant fl2v1ant l2v1a2n2y fl2v1a2n2y l2v1a2rás lva1rá fl2v1a2rás flva1rá l2v1a2z fl2v1a2z lvá2gy1ón l1vá lvág2y lvá1gyó flvá2gy1ón fl1vá flvág2y flvá1gyó l2v1állat lvál1la fl2v1állat flvál1la l2v1állt fl2v1állt l2v1áp fl2v1áp lvá2rain lvá1ra lvára1i flvá2rain flvá1ra flvára1i l2v1á2ra2k. fl2v1á2ra2k. lvá2ras flvá2ras lvá2rár lvá1rá flvá2rár flvá1rá l2v1árn2y fl2v1árn2y lvá2rol lvá1ro flvá2rol flvá1ro l2v1á2rul lvá1ru fl2v1á2rul flvá1ru lvás3s flvás3s lvá2s1zi lvás2z flvá2s1zi flvás2z lv1á1ta2 flv1á1ta2 lv1áth flv1áth lv1átk flv1átk lv1br flv1br l2v1e2d2z l1ve fl2v1e2d2z fl1ve lv1egys lveg2y flv1egys flveg2y l2v1egyv fl2v1egyv l2v1e2kéb lve1ké fl2v1e2kéb flve1ké l2ve2le1me lve1le fl2ve2le1me flve1le l2v1elk fl2v1elk l2v1ell fl2v1ell l2v1e2ró fl2v1e2ró l2v1ex fl2v1ex l2v1é2gés l1vé lvé1gé fl2v1é2gés fl1vé flvé1gé lvé2gül lvé1gü flvé2gül flvé1gü l2v1élm fl2v1élm l2v1é2ne1ke lvé1ne fl2v1é2ne1ke flvé1ne l2v1ép fl2v1ép lvé2r2i. lvé1ri flvé2r2i. flvé1ri l2vértel lvér1te fl2vértel flvér1te l2v1ér1té fl2v1ér1té l2v1é2rü fl2v1é2rü l2vérzé1si lvér1zé fl2vérzé1si flvér1zé lvé2s1za lvés2z flvé2s1za flvés2z lv1fr flv1fr l2v1i2de l1vi fl2v1i2de fl1vi l2v1i2do fl2v1i2do l2v1i1ga fl2v1i1ga lv1i1ko flv1i1ko l2v1i2m fl2v1i2m l2v1in1té fl2v1in1té l2v1i2pa fl2v1i2pa l2v1i1ro fl2v1i1ro l2v1irt fl2v1irt l2v1is1ko fl2v1is1ko l2v1ism fl2v1ism l2v1izm fl2v1izm l2v1i1zo fl2v1i1zo l2v1í2rá l1ví fl2v1í2rá fl1ví l2v1í2ve fl2v1í2ve lví1ze2 flví1ze2 lvíz1es flvíz1es lv1kl flv1kl lv1kr flv1kr l2v1ok l1vo fl2v1ok fl1vo l2v1old fl2v1old l2v1olv fl2v1olv l2v1on1to fl2v1on1to l2v1op fl2v1op l2v1or fl2v1or l2v1os fl2v1os lv1ö1dé l1vö flv1ö1dé fl1vö lvö2l flvö2l l2v1ö1lé fl2v1ö1lé l2v1ölt fl2v1ölt l2v1ön fl2v1ön l2v1ös fl2v1ös l2v1öv fl2v1öv l2v1ö2z fl2v1ö2z lv1Å‘2r l1vÅ‘ flv1Å‘2r fl1vÅ‘ lv1Å‘s flv1Å‘s lv1pr flv1pr lv1ps flv1ps lv1sp flv1sp lv1st flv1st l2v1ut l1vu fl2v1ut fl1vu lv1új l1vú flv1új fl1vú l2v1üg l1vü fl2v1üg fl1vü l2v1üt fl2v1üt l2y fl2y 1lya flya lya2dat lya1da flya2dat flya1da 2ly1adm fly1adm 2ly1a2dó fly1a2dó 2ly1ag2y. lyag2y fly1ag2y. flyag2y 2ly1agyr fly1agyr 2ly1ajt fly1ajt 2ly1a2kas lya1ka fly1a2kas flya1ka ly1akc fly1akc 2ly1ak1ná fly1ak1ná 2ly1a2kós lya1kó fly1a2kós flya1kó 2lyakt flyakt ly1a2lat lya1la fly1a2lat flya1la 2ly1alb fly1alb 2ly1alk fly1alk 2ly1alm fly1alm ly1a2lom lya1lo fly1a2lom flya1lo ly1alt fly1alt ly2a2maj lya1ma fly2a2maj flya1ma lya2ma1rá flya2ma1rá lya2m1el lya1me flya2m1el flya1me lya2mem flya2mem lya2m1ér1té lya1mé flya2m1ér1té flya1mé 2ly1ang fly1ang 2lya1ni flya1ni lya2nyag lyan2y lya1nya flya2nyag flyan2y flya1nya ly1a2nyá fly1a2nyá ly1a2pán lya1pá fly1a2pán flya1pá lya1p2r flya1p2r 2ly1arc fly1arc ly2a2sal lya1sa fly2a2sal flya1sa ly1as1pe fly1as1pe ly1as2s2z fly1as2s2z 2ly1atl fly1atl lya1t2r flya1t2r 2ly1a2t2y fly1a2t2y 2lya1zo flya1zo 1lyá flyá 2ly1á2bé fly1á2bé 2ly1ábr fly1ábr 2ly1ág fly1ág ly1áld fly1áld ly1áll fly1áll 2ly1áp fly1áp 2ly1á2rad lyá1ra fly1á2rad flyá1ra 2ly1á2rak fly1á2rak 2ly1á2ram fly1á2ram 2ly1á2rat fly1á2rat ly1árk fly1árk 2ly1árn fly1árn 2ly1árr fly1árr 2ly1á2ru fly1á2ru lyás3s flyás3s lyá2s2z flyá2s2z 2ly1á2ta fly1á2ta 2ly1átf fly1átf 2ly1átff fly1átff 2lyátï¬ ï¬‚yátï¬ 2lyátfl flyátfl 2ly1áth fly1áth 2ly1át1lá fly1át1lá 2ly1át1lé fly1át1lé 2ly1átm fly1átm 2ly1áts fly1áts 2ly1átt fly1átt 2ly1átv fly1átv ly1bl fly1bl ly1br fly1br ly1dr fly1dr 1lye flye lye2ga2 flye2ga2 ly1e2gye lyeg2y fly1e2gye flyeg2y lye2gyez1 flye2gyez1 ly1ej fly1ej 2ly1e2k2e. lye1ke fly1e2k2e. flye1ke 2ly1e2kek fly1e2kek 2ly1e2kéb lye1ké fly1e2kéb flye1ké 2ly1e2ké1rÅ‘ fly1e2ké1rÅ‘ ly1e2le fly1e2le ly1elf fly1elf ly1elff fly1elff ly1elï¬ ï¬‚y1elï¬ ly1el1fl fly1el1fl ly1elh fly1elh ly1ell fly1ell ly1elm fly1elm ly1e2lÅ‘ fly1e2lÅ‘ ly1elr fly1elr ly1els fly1els ly1elt fly1elt ly1e1lü fly1e1lü ly1elv fly1elv ly1elz fly1elz lye2m1a flye2m1a 2ly1ember lyem1be fly1ember flyem1be 2ly1e2mel lye1me fly1e2mel flye1me lye2min lye1mi2 flye2min flye1mi2 2ly1em1lí fly1em1lí 2ly1eng fly1eng ly1erk fly1erk ly1e2rÅ‘ fly1e2rÅ‘ 2ly1esd fly1esd 2ly1ese1mé lye1se fly1ese1mé flye1se 2ly1e2se1te fly1e2se1te 2ly1e2se1té fly1e2se1té 2ly1e2sett fly1e2sett 2ly1esél lye1sé fly1esél flye1sé 2ly1e2sés fly1e2sés 2ly1es1te fly1es1te 2ly1eszk lyes2z fly1eszk flyes2z 2ly1eszm fly1eszm 2ly1e2s1zű fly1e2s1zű 2ly1e2tet lye1te fly1e2tet flye1te 2ly1e2vÅ‘ fly1e2vÅ‘ 2ly1ex fly1ex 1lyé flyé 2ly1ég fly1ég 2ly1é2h2e. lyé1he fly1é2h2e. flyé1he 2ly1é2hen fly1é2hen 2ly1é2het fly1é2het lyé2l flyé2l ly1é1le fly1é1le ly1élm fly1élm 2lyéne1ke lyé1ne flyéne1ke flyé1ne 2ly1ép fly1ép 2ly1é2r. fly1é2r. 2ly1érc fly1érc 2ly1ér1d2 fly1ér1d2 2ly1é2ré fly1é2ré 2ly1érm fly1érm 2ly1é2r2Å‘. lyé1rÅ‘ fly1é2r2Å‘. flyé1rÅ‘ 2ly1é2rÅ‘1i fly1é2rÅ‘1i 2ly1é2rÅ‘k fly1é2rÅ‘k 2ly1érr fly1érr 2ly1ér1te fly1ér1te 2ly1ér1té fly1ér1té 2ly1é2rü fly1é2rü 2ly1érv fly1érv 2ly1érz fly1érz ly1és2z fly1és2z 2ly1étt fly1étt 2ly1é2v. fly1é2v. 2ly1é2v2e. lyé1ve fly1é2v2e. flyé1ve 2ly1é2ve1i fly1é2ve1i 2ly1é2vek fly1é2vek 2ly1é2ven fly1é2ven 2ly1é2vet fly1é2vet 2ly1é2vév lyé1vé fly1é2vév flyé1vé 2ly1é2vi fly1é2vi 2ly1évr fly1évr 2ly1évv fly1évv ly1f8l ly1fl fly1fl lyf1ölt2 ly1fö flyf1ölt2 fly1fö ly1gl fly1gl ly1gr fly1gr 1lyi flyi 2ly1i2bo fly1i2bo 2ly1i2de1á lyi1de fly1i2de1á flyi1de 2ly1i2deg fly1i2deg 2ly1i2den fly1i2den 2lyi1di flyi1di 2ly1i1do fly1i1do 2ly1i2dÅ‘ fly1i2dÅ‘ lyié2h lyi1é flyié2h flyi1é lyi2g flyi2g 2ly1i2ga fly1i2ga 2ly1i2gá fly1i2gá 2ly1i1ge fly1i1ge 2ly1i1gé fly1i1gé 2ly1i1ha fly1i1ha 2ly1ill fly1ill ly1i1ma fly1i1ma 2ly1i2má fly1i2má 2ly1imp fly1imp 2ly1ind fly1ind 2ly1inf fly1inf 2ly1inff fly1inff 2lyinï¬ ï¬‚yinï¬ 2ly1infl fly1infl 2ly1ing fly1ing 2ly1i1ni fly1i1ni 2ly1int fly1int 2ly1inv fly1inv 2ly1i2p fly1i2p ly1i2rat lyi1ra fly1i2rat flyi1ra 2ly1i2rá fly1i2rá 2ly1i2ri fly1i2ri 2ly1i1ro fly1i1ro 2ly1irr fly1irr 2ly1irt fly1irt 2ly1isk fly1isk 2ly1ism fly1ism 2ly1isp fly1isp 2ly1ist fly1ist 2ly1i1ta fly1i1ta 2lyivad lyi1va flyivad flyi1va 2ly1i2z fly1i2z 1lyí flyí 2ly1íg fly1íg 2ly1ín fly1ín 2ly1í2r fly1í2r ly1ív fly1ív ly2kiz ly1ki fly2kiz fly1ki ly1kl fly1kl ly1k2ró fly1k2ró 1ly2n. fly2n. 1lyo flyo 2ly1ob fly1ob 2ly1o2dú fly1o2dú 2ly1of fly1of 2ly1off fly1off 2ly1oï¬ ï¬‚y1oï¬ 2ly1ofl fly1ofl 2ly1o2k1al lyo1ka2 fly1o2k1al flyo1ka2 2ly1okl fly1okl 2ly1okm fly1okm 2ly1o2koz lyo1ko fly1o2koz flyo1ko 2ly1ok1ta fly1ok1ta lyo2l flyo2l ly1o1la fly1o1la ly1old fly1old ly1oll fly1oll ly1olt fly1olt ly1olv fly1olv lyo2m1a2s lyo1ma flyo2m1a2s flyo1ma ly1onb fly1onb ly1onh fly1onh ly1o1ni fly1o1ni ly1on3n fly1on3n ly1o1no fly1o1no ly1onr fly1onr ly1ont2 fly1ont2 ly1op fly1op 2ly1o2r fly1o2r 2ly1os2z fly1os2z 2ly1ott fly1ott 1lyó flyó ly1ó1dá fly1ó1dá lyó2s1á flyó2s1á 1lyö flyö 2ly1öb fly1öb 2ly1ö2l fly1ö2l 2ly1ö2r fly1ö2r ly1öss fly1öss 2ly1öv fly1öv 1lyÅ‘ flyÅ‘ ly1Å‘2r fly1Å‘2r ly1pl fly1pl ly1pr fly1pr lyrá1di2 ly1rá flyrá1di2 fly1rá lyre1p ly1re flyre1p fly1re 1ly2s. fly2s. ly1sk fly1sk ly1sp fly1sp lys2t flys2t ly3szá2m1é lys2z ly1s1zá fly3szá2m1é flys2z fly1s1zá ly2ta2c ly1ta fly2ta2c fly1ta 1ly1th fly1th ly1t2r fly1t2r 1lyu flyu 2ly1ud fly1ud 2ly1ugr fly1ugr 2ly1uh fly1uh 2ly1uj fly1uj lyu2ká2s lyu1ká flyu2ká2s flyu1ká 2ly1u2ni fly1u2ni 2ly1u2r fly1u2r 2ly1u2t fly1u2t 1lyú flyú 2ly1újs fly1újs 2ly1ú2r. fly1ú2r. 2ly1úth fly1úth 2ly1útr fly1útr 2ly1útt fly1útt 2ly1útv fly1útv 1lyü flyü 2ly1üd fly1üd 2ly1üg fly1üg 2ly1ünn fly1ünn 2ly1ür fly1ür 2ly1ü2v fly1ü2v 2ly1üz fly1üz 1lyű flyű 2ly1ű2r. fly1ű2r. 2ly1űrh fly1űrh 2ly1űrl fly1űrl 1ly1wo fly1wo lyze2t1el ly1ze lyze1te flyze2t1el fly1ze flyze1te lzás1s l1zá flzás1s fl1zá lze2ta l1ze flze2ta fl1ze lze2t1e2l lze1te flze2t1e2l flze1te lze2t1é2r. lze1té flze2t1é2r. flze1té lzé2sa l1zé flzé2sa fl1zé lzÅ‘1a2 l1zÅ‘ flzÅ‘1a2 fl1zÅ‘ lzÅ‘1e2 flzÅ‘1e2 lzÅ‘2s1orr lzÅ‘1so flzÅ‘2s1orr flzÅ‘1so lzus3s2 l1zu flzus3s2 fl1zu lzu2s3z flzu2s3z 2m. 1ma maa2d ma1a ma1b1ra 2m1abs ma2cé2l. ma1cé ma2célb ma2célt2 2madag ma1da 2m1adap ma2datb ma2da1to ma2dat1t2 madás1s ma1dá ma2d2e. ma1de ma2d1é2v ma1dé madókés2z1 ma1dó mad2ókés madó1ké ma2dóz 3m2a3d2z mae2m ma1e mae2n mae2r maé2r ma1é ma1f2ra ma1f1ri ma2gac ma1ga ma2g1a2da1to maga1da ma2g1a2dá ma2g1a2dó ma2g1a2du m2aga2l mag1a1la ma2ga2n ma2g1an2y maga2r mag1a1ra ma2g1a1s1za magas2z mag1a1zo m2agaz ma2gág ma1gá mag1áll ma2g1á2ré ma2g1árn ma2g1árr ma2g1árt mag1á1ta ma2g1á1to ma2geb ma1ge ma2g1e2l 2m1aggr ma2gid ma1gi ma2g1i2k ma2g1í magkia3dó mag1ki magkia2d magki1a ma2g1or ma1go ma2g1os2z mag1ó1ra ma1gó ma2g1óv mag1s ma2g1u2r ma1gu ma2g1ü2 2m1ag2y. mag2y 2m1agyb 2m1a2gyu m1ahh mai2z ma1i 2m1aj1ta maj2ti ma2ka1rá ma1ka ma2kác ma1ká 2m1akc ma2kep ma1ke mak2k1e2 2m1ak1ku ma1k1lu 2m1a2ko2l. ma1ko ma1k2rém m2ak1ré ma1k2ri 2mak1ro makro1s m1ak1ti ma2kus ma1ku mala2c3há ma1la malac2h mala2c3s 2malag mala2g1ú m1a2la1ku 2m1alakz 2m1a2lan 2m1a2la1pí malasz2t1a malas2z 2m1alb 2m1alc 2m1ald 2malg m1al1go 2m1alj 2m1alk 3m2al2k. malo2m1e ma1lo mal1os m1alr m1al2t. mal1th 2m1a2lu 2malv 2m1amp 2m1a2nal ma1na ma2nat 2ma1ná ma2n1eg ma1ne 2m1an1to 2m1antr 2m1a2ny2a. man2y ma1nya ma2nyag 2m1a2nyá 2m1a2nyó mao2k ma1o ma2p2a. ma1pa ma2pas 2m1a2pát ma1pá ma1p2l ma1p2re ma1p2ré ma1p2ri m2a1p2ro 2m1aps 2m1a2rán2y ma1rá 2m1arb 2m1ar2c. 2m1arcc mar1c1ko 2m1ar1cu 2m1ar1cú 2m1a2rén ma1ré ma2r1i2si ma1ri mar2k1al mar1ka mar2k1in mar1ki mar2k1ón mar1kó mar2k1ó2r 2marm maro2k1 ma1ro ma2ro1má maros1s marók2 ma1ró maró1kh maró1kk maró1kn maró1kr ma1ry 2marz m2a1s2ká ma1s2pe ma1sp2r ma1s2rá m2a1s2ta ma1s1te masz1eg2y m2aszeg mas2z ma1s1ze m2asz1e2me m2a2sz1ét ma1s1zé ma2szév ma2szis ma1s1zi maszí2v m2a1s1zí masz1í1ve masz1ös ma1s1zö mat1a1da ma1ta mat1alap mata1la mat1a1nya m2atan matan2y ma2taz m2a2tág ma1tá matá2ra1ka m2atár matá1ra ma2t1á2ras mat1á2rár matá1rá ma2t1árn ma2t1á2rú ma2t1áz ma2t1e2g ma1te mat1e1li ma2t1ell mat1e1lÅ‘ mat1elt ma2t1e1me mate2s m2a2tél ma1té ma2t1ér1te m2atér mat1fé2 matfél1 matfé1lé2 ma2tid ma1ti ma2t1ind m2atin ma2t1inf ma2t1inff ma2t1ing ma2t1int ma2t1ö1rö ma1tö ma1t2ran mat1ra mat3rac3sor3 mat2rág mat1rá mat2tin mat1ti ma2t1ut ma1tu 2m1a2tya mat2y ma2tyá 2m1a2uk ma1u ma2up mau2ra ma2u1ri ma2us mau2ta 2m1a2u1to 2m1a2vat ma1va ma1ye ma2z1a2l ma1za ma2zál ma1zá ma2z1átl ma2zel ma1ze mazókés2z1 ma1zó maz2ókés mazó1ké ma2z3sű maz2s 1má 2m1á2bé 2m1ábr má2cs1as mác2s má1c1sa má2c1s1e2 má2csin má1c1si má2csir má2csis má2c1só má2c1sü má2fá 2m1á2g. 2m1á2ga 2m1á2gá 2m1ágb 2m1á2gé 2m1ágg má2g2i. má1gi 2m1á2gi2g 2m1ágk m1ág1na 2má1go 2má1gó 2m1ágr má2guk má1gu má2gu2n 2m1á2gú 2m1á2g2y mágya2d má1gya mágy1a1da má2hí má2jan má1ja má2j1árt má1já má2j1e2 má1jo2 má2j1ol májren2 máj1re má2j1ul má1ju má2jü má1ka2 má2k1al má2kar má2k1e2 má2k1é2r. má1ké má2kil má1ki má2k1ó má2kÅ‘ má2k1ü m2á2l1a2l má1la 2m1álar má2lál má1lá 2m1álc má2l1e2 mál1ért má1lé 2m1állam mál1la m1állap m1állat 2m1ál1lí m1állom mál1lo 2m1ál1ma 2m1ál1mo má2los má1lo má2m1as má1ma 2m1á2mí má1na2 má2n1as má2nav má2nár má1ná mánc1c mán2ce mán2c1ég mán1cé mán2c1sé mánc2s má2n1e má2n1in má1ni má2nis má2n1it má2n1ö2 má2nÅ‘ máns3s mán2tac mán1ta mán2tag mán2t1al mán2t1as mán1tá2 mán2t1ék mán1té mán2t1öl mán1tö má2nú má2nü má2ny1a2d mán2y má1nya má2ny1a2g má2nyaj má2ny1a1ka má2ny1a2l mánya2n má2n2yan2y má2nyap má2nyar má2nya1u má2nyav má2nyaz má2ny1e2 má2ny1é2r. má1nyé má2nyér1d2 má2nyérz má2ny1í2 má2ny1ó2 má2nyö má2po 2m1á2rad má1ra má2r1a2g 2máram má2r1a2n má2ras már1ass 2m1á2rat má2r1a1u má2r1ál má1rá má2re2 már1em má2rés má1ré má2r1id má1ri má2r1ik má2r1i2p má2r1i2si már1isk már1is1tá má2rí 2m1árkok már1ko má2rö má2rÅ‘ má2rug má1ru m1á2ruh má2ruk m1á2rur má2rü má2s1a2d má1sa má2sal má2sap má2s1a2r má2s1av má2saz má2s1á2rá má1sá má2s1árn má2sás 2m1á1sá1sá 2m1ásásn 2m1ásásr másbe2j1 más1be másbe1já2 má2s1e2 má2sí2r má1sí má2sor má1so 2m1á2só má2sö má2sÅ‘ mást2 más1tr má2s1ü2 más3zav más2z má1s1za 2m1á2ta mát1a2k 2m1á2tá 2m1átc 2m1átd má1te2 má2ten 2má1té 2m1átf 2m1átff 2m1átg 2m1áth 2m1á2tir má1ti 2m1á2tí m1átj 2m1át1ló 2m1átn má2t1ol má1to 2m1á2t1ö 2m1átp 2m1át1re 2m1áts 2m1át1te 2m1á2tú 2m1á2tü 2m1átv má2zal má1za má2ze mázi2a má1zi mázi2é má2z1i2s má2zÅ‘ má2zsal máz2s má1z1sa má2z1s1e máz3s2z m2b1akc m1ba m2b1ak1k mba1k2r mb1akv m2b1a2lag mba1la mb1a2lá m2b1alj m2b1alk m2b1a2na m2b1a2nya mban2y mba1p mb1a2ul mba1u mb1a2var mba1va mb1a2zo mb1á2g2y m1bá m2b1áll m2b1á2ron mbá1ro m2b1ár1ró mbá2száv mbás2z mbá1s1zá m2b1ász1ná m2b1á2szo1ka mbá1s1zo m2b1á2szokk m2b1á2szo1ko m2b1á2szokr m2b1á1ta m2b1áth mbe1á2 m1be mb1e2ce mbe1k2 mbe2led mbe1le mb1e2leg m2b1ell mb1elr mb1els2z mb1e1pe mbe2r1a2g mbe1ra mbe2ral mbe2ra2n mbe2ras mbe2rá mbe2reg mbe1re mbere2s2z mber1e1s1zű mbe2rev mbe2r1él mbe1ré mbe2r1é2s mbe2ri1má mbe1ri mbe2ring mbe2ris2z mbe2rol mbe1ro mbe2ros mbert2 mbe2r1ú m2b1é2g m1bé mb1é2ke m2b1é1kí m2b1ép mbé2ress mbé1re m2b1ér1té mbért2 m2b1érz mb1gr m2b1i1de m1bi mbi2k1al mbi1ka mbi2ke m2b1il1la m2b1i2n2a. mbi1na m2b1i2na1i m2binam mb1ind m2b1inf m2b1inff m2b1in2g. mb1inv m2b1i1pa m2b1izm mb1i2zom mbi1zo m2b1izz m2b1ív m1bí mb1íz mb1kl m1b2lú mb1l2y m2b1ob m1bo mb1ol1da mbo2lyak mbol2y mbo1lya m2b1ond m2b1op m2b1or1má m2b1or1mú m2b1o2roz mbo1ro m2b1oszl mbos2z mb1ö1le m1bö m2b1öv m2b1Å‘2si m1bÅ‘ m2b1Å‘2s2z mb1pl mb1pr mbrá1di2 mb1rá mb2rev mb1re mb2rok mb1ro mb2ron mb1sp mb1st2 mb1s2z mb1tr mbu2s1ze m1bu mbus2z mbu2s1zí2 m2b1u2t mb1új m1bú m2b1üg m1bü m2b1ül m2b1üs m2b1üt m2b1üz mbve1zé2 mb1ve mc2lu mcsa2p1á2g mc2s m1c1sa mcsa1pá mda1b2 m1da mda1g2 mda1p2 mdi2a1le m1di mdi1a mdi3a1p2 md2ra md2rá md2ro md2ró 1me mea2d me1a mea2l mea2n me2a1u me2av me2béd me1bé mede2r1e2 me1de 2m1e2dén2y me1dé me1d2rá 2m1e2d2z mee2s me1e me2et 2m1ef8f 2m1eff me2ga1ba me1ga me2g1a1la me2g1a1lu me2g1alv me2g1an me2g1a2r mega1s2z2 me2gav me2g1á me3gá2m megá2s megá2t megá2z me2g1eg me1ge me2g1el mege2le mege2lÅ‘ me2ger me2g1esem mege1se meg1eszt meges2z me2ge1ta me2g1e2te me2gez me2g1é2l me1gé megés3s me2gés2z1 meg1f meg1ff megg2 meg1gr me2gi meg1i1gá megi2g meg1inn meg1ir meg1is meg1itt me2g1í me2g1o me2g1ó2 me2g1ö2 me2gÅ‘r me1gÅ‘ me2g1u2 me2gú me2g1ü2g me1gü me2g1ü2l 2megyez meg2y me1gye 2m1egyh 2m1egyl 2m1egys 2m1e2gyüt me1gyü me2he1tÅ‘ me1he mei2rá me1i me2k1ad me1ka me2k1ag me2k1ak mek1alk me2k1am mek1arc me2k1a2s me2k1att me2k1á2l me1ká me2k1á2p me2k1á2r. me2k1á1ra me2kát mek1eg2y me1ke mek1ell me2kep me2k1ers2 meke2s2z me2k1e1s1ze me2keszm mek1esz1te me2kev me2k1ék me1ké me2kél me2k1é2r. mek1ér1de me2k1érk me2k1ér1te me2k1ér1té me2k1éss me2k1é1te me2ki1do me1ki me2kij mek1i1má me2k1ing me2k1int me2k1i2p me2k1ist2 me2k1i1ta me2kír me1kí me2kít mek1k2 mek3lu me2kob me1ko me2k1ok me2k1old me2k1olt me2k1onk me2kop meko2r mek1o1ra mek1o1ro mek1ort me2k1os mek1ott me2k1ó2v me1kó mek1öl1tö me1kö me2kön mek1öröm mekö1rö me2k1öt me2k1Å‘ mek2rit mek1ri mek1s meks2z2 mek1t2 me2kuj me1ku me2kun me2kur me2k1ú2 me2küd me1kü me2k1üg me2k1üld me2k1ü2lé me2k1ü2lÅ‘ me2küz m1e2l1a2d me1la mel1ak me2lág me1lá me2lál 2melb 2m1e2lef me1le 2m1e2l1eff me2lekt mel1e2l 2m1e2le1me 2m1e2lemz 2m1e2les 2melet mele2t1é2r. mele1té 2m1e2lég me1lé 2m1e2l1é2l 2m1e2l1ér melés3s 2m1elf 2m1elff 2m1el1go m1el1ha 2m1el1há 2m1elhel mel1he me2li2t. me1li 2me2l1í2 2m1el1já 2melk m1el1ké m1el1kí m1el1kö mel2lál mel1lá m1elle1ne mel1le mel2ler mel2l1é2r. mel1lé mel2ling mel1li mel2l1iz mel2lo mel2lö mel2l1u2 2m1el1mé 2m1el1nö me2l1os me1lo m1elÅ‘1de me1lÅ‘ 2m1e2lÅ‘1í m1e2lÅ‘1le m1e2lÅ‘tt 2melÅ‘z me2lÅ‘1zÅ‘ 2m1elr 2m1el1s1zá mels2z 2m1el1ta 2m1el1tá m1elter mel1te 2m1eltet2t. 2m1eltettn 2m1eltér mel1té 2m1el1ti 2melt2y 2m1el2v. 2m1el1vá 2m1elves mel1ve 2m1elvn 2m1el1vo me2ly1ék mel2y me1lyé 2m1elz 2m1eml 2m1e2mul me1mu me2n1a2d me1na me2nal me2nar me2na1u me2nát me1ná me2n1e2g me1ne me2n1el me2ner mene2t1á2 mene2tö menés3s me1né 2m1enges men1ge me2nil me1ni me2n1ip me2ní me2nö men2s1é2g men1sé men2tac men1ta men2t1ell men1te men2ting men1ti men2ti2p men2t1is me2n1u me2nú me2nya men2y menye2ma me1nye me2om me1o me2o1pá me2ó1e me1ó me1p2h me2pik me1pi me2pos me1po me1p2r mera1p2 me1ra mer1ass 2m1er1dÅ‘ 2m1e2rec me1re 2m1e2redm mer1eg2y 2m1e2rej me2r1e2l me2r1eml mere2t1a mere2t1e2l mere1te mere2t1é2r. mere1té 2m1e2rezÅ‘kh mere1zÅ‘ me2r1ép me1ré mer1ill me1ri me2rim mer1inf mer1inff me2r1ip 2m1er1nyÅ‘ mer1n2y me2r1ol me1ro me2ror me2r1os me2rov 2merÅ‘l me1rÅ‘ 2merÅ‘1sí mers2 mer1st mer1t1ró me2r1ü2g me1rü me1ry me2sas me1sa me2s1emb me1se 2m1e2semén mese1mé mese1s 2mese1té 2m1e2sett 2m1e2sél2y me1sé 2m1e2sé1sé 2m1e2sésh 2mesésk 2mesésr 2mesés3s 2mesést me2sos me1so 2m1e2sÅ‘ me1s2po 2m1estb 2m1est2e. mes1te 2m1estek 2m1es1té 2m1estf 2m1estff me1s2tó 2m1estr 2m1estün mes1tü me2szan mes2z me1s1za 2meszem me1s1ze me2szeset mesze1se me1sz2tá met1a1nya me1ta metan2y meta1s metas2z2 me2t1e2g2y me1te met1ell 2m1e2te1té met1ing me1ti me2tór me1tó me2tú me2tűd me1tű me1t2y 2m1e2ug me1u me2uk me2ur meus3s meu2t me2vÅ‘ me1ye me2za2c me1za me2z1aj meza2k me2za1u me2zál me1zá me2ze1dé me1ze me2zeg me2z1elj me2z1ell me2zelÅ‘h meze1lÅ‘ me2zer mez1e1re me2z1ék me1zé me2z1é2r. me2z1ér1d2 mez1éret mezé1re me2z1é2ri me2z1id me1zi me2zim me2zin me2zi2o me2zír me1zí me2z1ol me1zo me2z1or me2z1ö mezÅ‘1e2 me1zÅ‘ me2z1Å‘2rö me2z1Å‘ss 2m1ezrem mez1re m1ezre1se m1ezresn m1ezresr m1ezrest me2z3sa mez2s me2z1sá me2z1sö me2zu me2zú 1mé mé2ber mé1be 2m1ébr mé2c1s1a2 méc2s mé2c1so mé2g1a mé2ge mé2gé mé2gi még1is mé2g1o2 mé2gÅ‘ mé2gú mé2h1a2 mé2h1á m2é2heg mé1he mé2hel mé2hi2r mé1hi mé2h1is mé2h1or mé1ho mé2hö méhren2 méh1re 2m1éh1sé 2m1é2j. 2m1éjb mé2jes mé1je 2m1éjs mé1ka2 mé2k1ad mé2k1aj mé2k1ak mé2k1al mé2k1an mé2kar mé2kaz mé2k1á2 mé2k1e2g mé1ke mék1elh mék1ell mék1e2lÅ‘ mé2k1e1se mé2kev mé2kez mé2k1é2k mé1ké mé2k1é2l mé2ki2d mé1ki mé2ki1rá mé2kí mé2k1o mé2k1ö mé2kÅ‘ mé2k1u2 mé2k1ú mé2l2e. mé1le 2m1é2lel mé2les mé2lez 2m1é2lén mé1lé 2m1élm mé2lya mél2y mé2lyá mé2lyeg mé1lye mé2ly1ú2 mé2n1a2r mé1na mé2n1a2t 2ménekb mé1ne 2ménekh 2m1é2nekl mé2n1el mé2n1é2k mé1né mé2n1és mé2nid mé1ni mé2nin mé2n1is mé2niv mént2 mé2ny1e2g mén2y mé1nye mé2ny1e2l mé2nyer mé2nyé2k mé1nyé mé2nyim mé1nyi mé2nyí2r mé1nyí mé2ny1o mé2nyö2 mé2nyú ményü2l mé1nyü mé2ny1ü1lé mé2pí mé2pü 2m1ér2c. 2m1é2retts mé1re 2m1é2rén mé1ré mé2rér mérés1s 2m1é2rév 2m1é2ri1e mé1ri 2m1é2rin 2m1ér1ké 2m1érlel mér1le mé2r1ón mé1ró 2mérte1ke mér1te 2m1értes 2m1értér mér1té 2m1értés 2m1ér1tÅ‘ 2m1é2rül mé1rü mér2v1a2 2m1érz mé1sa2 mé2sar mé2s1á2 mé2s1e2l mé1se mé2s1er mé2sez mé2sin mé1si mé2sö més3s1za més2s2z2 mé1s1za2 més2z mész1al mé2sz1á2l m2é1s1zá mé2sz1á2ra mé2szed mé1s1ze mé2sz1el 2mészl mé2s1z1Å‘ mész3s 2mész1té 2mészth 2mész1ti 2mésztj 2mésztl 2mész1tü 2mésztv mé2s1z1ü2 mé2t1ad mé1ta mé2t1ak mé2t1a2n mét1árt mé1tá mét1el1ho mé1te mét1el1ta mé2t1e2v mé2té2g mé1té 2m1ét1je 2m1étjér mét1jé 2m1étjév 2m1ét1jü 2m1étk2e. mét1ke mé2t1o mé2tö mé1tÅ‘2 mé2tÅ‘r mé2t1u mé2t1ű 2m1é2v. 2m1évb 2m1é2v2e. mé1ve 2m1é2ve1i 2m1é2vek mé2ven mé2ves 2m1é2vet 2m1é2véb mé1vé mé2vén 2m1évf 2m1évff 2m1évh 2m1é2vi 2m1évk 2m1évn 2m1évr 2m1évs 2m1évt 2m1évv mé2z1a mé2z1á2 mé2zeg mé1ze mé2zil mé1zi mé2zim mé2zin méz1ism mé2zit mé2zí mé2z1o mé2z3s mé2zu mé2zű mfa2l1e2 m1fa mfa2lom mfa1lo mfa1s2 mfé2m1a2 m1fé mfit2 mf8i mï¬t2 mï¬ mfi1tr mï¬1tr mf2jo mf8j mf2la mf8l mfla mfl m1f2lo m1flo mf2ló mfló mf2lu mflu mfog1adat m1fo mfo1ga mfoga1da m1f2rak mf1ra m1f2ran mf2rá m1f2re m1f2ri m1f2rí m1f2ro m1f2rö m3g2a2z1e m1ga m3g2é2p1e2l m1gé mgé1pe mgé1pi2 mgé2p1ip mg2li mg2ló mgör2c1so m1gö m3g2örc mgörc2s mg2ra mg2rá mha2sábr m1ha mha1sá mhossz1út m1ho mhos5s1zú/sz=,4,1 mhos2s2z 1mi mi2a1a mi1a mi2a1á mi2a1bo mi2ac mi2a1e mi2a1é mia1f2 mia1ff mi2afr mi2ag mi2ah mi2a1í mia1k1ri mi2a1le mi2a1me mi2a1mé mi2a1mo mi2a1o mi2a1ó mi2a1ö mi2a1Å‘ mi2a1p mi2a1ré mias2 mi2a1s1zá mias2z mi2a1s1zé mi2a1s1zi mi2a1s1zó mi2a1tá mi2a1ti mi2a1to mi2a1ü mi2av 2m1i2áz mi1á mi1bl micsa2p1 mic2s mi1c1sa 2m1i2de1á mi1de 2m1i2deg 2m1i2de1i 2m1i2dej 2miden mi2dent 2m1i2de1o mi2dén mi1dé mi2di1o mi1di mi2di1ó mi2dol mi1do 2mi1dÅ‘ m1i2dÅ‘z mie2l mi1e mi2éf mi1é mi2éff mi1f8l mi1fl mi1fr 2m1i2gaz mi1ga mi2gen mi1ge 2m1i2gén mi1gé mi1g1ri 2m1ihl mii2d mi1i mi1k2li mi1k1lu mi2ko1no mi1ko mi2kont 2miks mi2lal mi1la 2m1il1lu 2m1il1lú mi2m2a. mi1ma mi2máh mi1má mi2mit mi1mi mi2mór mi1mó mi2naj mi1na 2m1i2nam mina2n min1an2y 2m1i2nas mi2n1á1ra mi1ná min2c1e2 min2c2h min2d1a2 2m1in1dá min2dek min1de min2d1er min2din min1di 2m1in1dí 2min1du mi2neg mi1ne mine2s 2m1inf8l 2m1infl 2m1in1fú min2g1á 2m1in1gé min1g2h min1inj mi1ni min2k1a2l min1ka min2k1an min2k1as min2kec min1ke min2kó min2kö 2m1insp 2m1i2nuk mi1nu mi2nü 2m1inz mio2n1a mi1o mio2n1á mio2r mió2r mi1ó mi1p2l mi1p2r mi2ram mi1ra 2m1i2rat 2mi2rán mi1rá 2mirg 2mirh miri2gyel mi1ri mirig2y miri1gye 2m1irk 2m1i2rod mi1ro 2m1i2rom mi2rón mi1ró 2m1irr mi2sal mi1sa mis1elv mi1se mis1e1pe mis1ing mi1si 2misit mi2s1í2r mi1sí mi1s2pi mis3szab mis2s2z mis1s1za mis3szer mis1s1ze mi2s1ü2t mi1sü mi2s1ü2v mi2s1ű mi2szár mis2z mi1s1zá mis3zá2r. mi1sz2f mi1sz2ff mi2tac mi1ta mita2n mit1an2y 2m1i2tat 2mitác mi1tá mit1á2r. mit1á1rá mit1árh mit1á1ri mit1ár1k2 mit1árn mit1árr mit1árt mit1á2rú 2mit1bo mit1ing mi1ti miti2s 2mit1lá mi2tök mi1tö mi1t1ri 2mit1ro 2mit1rú mi2tür mi1tü miu1mé2 mi1u miu2min miu1mi miu2s 2m1i2vad mi1va 2m1i2vó mi2x1i mi2xö mi2xÅ‘ mi2z2é. mi1zé mi2zét 1mí m1í2gé mí2g2y mí2ja mí2já m1íns 2m1í2rá 2m1í2ró m1í2v. mí2vá m1ívb mí2vé m1ívh m1ívr m1ívv mí2zü mí2zű mjé2ná m1jé mjob1b1o m1jo mjo2g1á2s mjo1gá m2j1ol mj1ó1sá m1jó mj1Å‘s m1jÅ‘ mka1ró2 m1ka mka2r1ór mke1p m1ke mki1a2 m1ki mki1á2 mki1e2 mk2la mk2li mk2lí mk2lo mk2lu mkó2rost m1kó mkó1ro mk2ra mk2rá mk2re mk2ré mk2ri mk2rí mk2ro mk2ró mk2va mk2vó mla1f m1la m2la1ff mlapá2r mla1pá mla2p1á1ro mla2p1e2 mla2pin mla1pi mla1s2t mlás3s m1lá mlá2s3z mle1g2 m1le mle1í2 mle1kn mle1p1la mlé2k1a2 m1lé mlé2k1á mlé2k1el mlé1ke mlé2k1es2t. mlé2k1é2r. mlé1ké mlé2k1ol mlé1ko mlé2kos mlé2kó mlé2k1ú2 mlé2s1zé mlés2z mlo2k1ál m1lo mlo1ká mlo2ké mlÅ‘2s1a2 m1lÅ‘ mlÅ‘2s1ű2 mmag1g m1ma mma1gl mma1i2 mmas2 m2m1atk m2m2e. m1me mme2g1é mmifé2l1é2v m1mi mmi1fé mmifé1lé mmik1ro1 mmikros2z2 mmo1gr m1mo 1mo mo2be 2m1obj mo1ci1 2m1of8f 2m1off mo2ge2s mo1ge mo2gy1a2 mog2y mo1hu2 mo2is mo1i mo2kab mo1ka mo2k1ad mo2k1a2k mo2k1a2l mo2k1a2n mo2kar mo2kád mo1ká mo2k1ál mo2k1á2s mo2k1e2 mo2k1il mo1ki mok1k2 mo2k1ol mo1ko mo2k1or mo2k1ó2 mo2kö mok1t 2m1oktat mok1ta mo1ku2 mo2kur mo1kú2 mo2kús mo2k1ú1to mo2kü 2m1o2laj mo1la 2m1ol1da m1ol1dó 2m1o2lim mo1li mol1li2 mol2l1in 2m1ol1ló molói2ko mo1ló moló1i 2m1oltár mol1tá 2m1oltás 2m1olvad mol1va 2m1olvas mo2ly1ag1ga mol2y mo1lya 2m1oml mon1a1cé mo1na mo2n1a2d mo2n1a2l mo2n1an mo2n1a2p mona2r mo2n1as mo2n1áll mo1ná mo2neg mo1ne mo2n1er mo2nev mon1ist mo1ni mon2or mo1no mo2nö mons2 mon1sp mon1t1ré mon1t2y mo2nü mo2nű mo1nyá2 mon2y mo2nyáz mo2or mo1o 2m1opc 2mo1pe mo2per mo1p2l 2m1opt mo1py mo2r1ad mo1ra mora2n mor1an2y morá2la mo1rá 2m1or1dí mo2r2e. mo1re mo2r1e2l mo2re2n mo2r1e2r mo2r1est more2s mo2rid mo1ri 2m1o2ri1e mori2s mo2r1isk mo2r1i1s1zo moris2z mor1izg mo2r1ol mo1ro mo2r1ont mo2rop mo2r1ón mo1ró mo2r1ó2r mo2rós mo2rö 2m1or2r. mor1s2 mort2 mor3tá mor1tr mo2rü mo2rű mo1ry mo2sál mo1sá mo2s1e 2mos1to 2m1ostr 2m1ost2y mo2sü mo2szal mos2z mo1s1za mo2szis mo1s1zi 2m1osz1lo mosz2tat mosz1ta mo1sz2tált mosz1tá mot2h mo1t1he 2m1ott1ha mot2to mo2ul mo1u mo2un mo2us mo2ut mo2vi mo2xi mo3z1so moz2s 1mó móá2g mó1á mó1bl mó2c2h mócsa2p1 m2ó1c1sa móc2s mócsa1pá2 mó2d1a2l mó1da mó2da1u mó2dák mó1dá mó2dár mó2d1e2 mó2di2p mó1di mó2d1o2r mó1do mó1dó2 mó2d1ór mó1du2 módus1 mó1f8l mó1fl mói2ko mó1i mó2i1ö mó1k2l mókus1s mó1ku mó2lar mó1la mó1p2r mó2rak mó1ra mó2rar mó2rág mó1rá mó2rá1i mó2ráj mó2rám móri2as mó1ri móri1a mó1ró2 mó2r1ón mó2rö mó1s2k mó1t1he m1ó2vó 1mö mö2bö mö2in mö1i mö2ko möl2c1s1a mölc2s möl2c1sá möl2csel möl1c1se möl2cs1es möl2cs1é2r. möl1c1sé möl2cs1il möl1c1si möl2c1s1o möl2c1s1Å‘ mö2le mö2nu mö2r1Å‘ m1ötl mö2ve mö2vö mö2vü mö2vű 1mÅ‘ mÅ‘a2n mÅ‘1a mőá2g mÅ‘1á mÅ‘e2l mÅ‘1e mÅ‘e2r mőé2l mÅ‘1é mőé2te mÅ‘1kl mÅ‘1ps mÅ‘2r1á2r mÅ‘1rá 2m1Å‘rh 2m1Å‘2ri mÅ‘2si mÅ‘2sü mÅ‘s3zár mÅ‘s2z mÅ‘1s1zá mőü2l mÅ‘1ü mÅ‘2zi mpa1dr m1pa m2p1akc m2p1ak1tá m2p1áll m1pá m2p1ár1ko m2p1átj m2p1átk mp2ci mp1elt m1pe mp1fr mp2he m2p1ind m1pi mpi2re mp2lak mp1la mplo2mal mp1lo mplo1ma m1p2lu m1p2lü mpon1d2 m1po m2p1ord mpor1ta2 mpor2t1al mpor2t1á2r mpor1tá mpor2t1e2 m2p1osztás mpos2z mposz1tá m2p1ös m1pö m1p2ref mp1re m1p2reff m1p2rep m1p2rés mp1ré m1prib mp1ri m1p2ri2c mp2ri1o m1p2rod mp1ro m1p2rof m1p2roff m1p2rog m1p2roj m1p2rop m1p2rot m1p2rób mp1ró mp1sh m1p2s1zi mps2z m2p1u2ta m1pu m2p1u1tó m2p1üz m1pü mra1p m1ra mren2d1Å‘2 m1re mré2m1 m1ré mripor1te2 m1ri mri1po msa2vo m1sa ms2ka m1s2ká ms2ki ms2ko ms2lá ms2mi ms2ni m2s1ond m1so ms2pa ms2pe ms2pi ms2po ms2pó ms2rá m1s2tá ms2ti m1s2tí ms2to mst2ra m1st2ru m1s2tú msza2ké ms2z m1s1za msza2k1ü2 mszáraz1 m1s1zá mszá1ra msz2c mszé2dem m1s1zé mszé1de m1sz2f m1sz2ff mszín3n m1s1zí msz2l msz2m m1sz2p msz2tá m1sz2v mta2n1ó2 m1ta mtára2d m1tá mtá1ra mtá2r1a1da mtés3s m1té mtÅ‘kés2z1 m1tÅ‘ mtÅ‘1ké mtran2s mt1ra mtrans2z1 mt2rá mt2re mt2ré mt2ri m1t2ró mt2rö mt2rü 1mu 2m1udv 2m1ugr m1ujj 2mulet mu1le 2mulz mu2m1ad mu1ma mu2m1el mu1me mu2mél mu1mé mu2m1és mu2min mu1mi mu2m1ir mu2mis mu2m1iv mumkés2z1 mum1ké mu2m1ó2 mu2mö mu2mÅ‘ mumus1s2 mu1mu mu2na2n mu1na mu2ne mu2nok mu1no mu2ral mu1ra mu2ram mu2rat mu2rál mu1rá mur1izm mu1ri mu2r1u2 mu2sal mu1sa mu2san mu2sar mu2sas mu2sat mu2s1á2g mu1sá mu2sál mu2s1e mu2s1ér1té mu1sé mu2sir mu1si mu2sor mu1so mu2s1ó2 mu2sÅ‘ muss2 mus3s1ze mus2s2z mus2tá1rá mus1tá mus2t1erj mus1te mu2szal mus2z mu1s1za mus3zav mu2szál mu1s1zá mu2szás mu2t1a2g mu1ta mu2tal mut1a2la 2m1uta1lá 2m1u2talv muta2n mu2t1an2y mu2ta1sí m1u2taz mu2t1á2ra mu1tá mu2t1árb mu2t1á2ru 2m1u2tás 2m1ut1ca mu2t1el mu1te mu2til mu1ti mu2t1in 2m1u2tol mu1to 2m1u2tód mu1tó 2m1u2tó1p2 mu2t1ö mu2tü 1mú mú2jí múl2t1e2 múl2tol múl1to 2m1ú2r. mú2ri 2m1úrn 2m1ú2s2z 2m1útb m1úth 2m1ú2ti 2m1útj 2m1útk 2m1útm 2m1útn 2m1ú2to 2m1útr 2m1útt 2m1útv 1mü mü2dí mü2dü mü2g2y mü2ná mü2re mü2rí mü2rü mü2te mü2té mü2tÅ‘ mü1tz mü2ve mü2vö mü2ze 1mű mű1bl mű1br mű1f8l mű1fl mű1fr mű1gr mű1kl mű1pl mű1pn mű1pr 2m1űrl mű1sp mű1sú2 mű1s2z műtÅ‘kés2z1 mű1tÅ‘ műtÅ‘1ké műves3s mű1ve mű2zé mű2zi mű2zö mű2zÅ‘ mű2zü m2v1a2dot m1va mva1do mvágya2d m1vá mvág2y mvá1gya mvá2gy1a1da mverés3s m1ve mve1ré mw2hi mza2t1e m1za mzás3s m1zá mze2r1o m1ze mze2t1a2 mze2t1á2 mze2t1e2g mze1te mze2t1el mz2e2ter mze2tes2z mze2t1é2k mze1té mze2t1érd mze2to mze2t1ö2 mze2t1Å‘2 mzé2s1a m1zé mzé2so mzókés2z1 m1zó mz2ókés mzó1ké mzÅ‘e2r m1zÅ‘ mzÅ‘1e mz2rí 2n. 1na naa2d na1a n1ab1bó 2n1abr 2n1abs na1cl 2n1a2dag na1da 2n1a2dás na1dá 2n1add na2dek na1de 2n1adm 2n1a2dó na1d2re 2n1adt na2d2u. na1du na2dus nae2c na1e na2e1i nae2t na2e1u naé2r na1é 2n1af8f 2n1aff na2g2a. na1ga na2gár na1gá na2git na1gi na2gón na1gó n2a1g1rá na2gy1agg nag2y na1gya na2gy1a2l na2gyapj na2gy1as na2gyav na2gy1é2k na1gyé na1gyú2 nagy1úr na2gy1út na2i1re na1i na2ji 2n1ajk 2n1a2kad na1ka naka1ró2 nak1á2s2z na1ká na2k1át n1ak1ko na1k1li na1k1lu nako2l na1ko nak1o1la 2n1a2k2ó. na1kó n2a1k2ré n1ak1ti 2n1a2kus na1ku na2k1útn na1kú na2l1a2dó na1la 2n1a2la2g1 na2l1aj na2l1a2l 1na2la1na 2n1a2la2pa 2n1a2lapd na2lapr na2lapt na2lar na2lav na2l1ábr na1lá na2lág na2l1á2l na2l1á2ro na2l1á2t1ö na2l1áts na2l1e1lá na1le na2l1ell nal1eng n2alen nal1ent nal1é2g. n2alég na1lé na2l1ék na2l1é1ri na2lid na1li na2l1ing na2l1i2o na2l1í2r na1lí 2nalízisb nal2í1zi 2nalízi1se 2nalízi1sé 2nalízish 2nalízi1si 2nalízisk 2nalízisn 2nalízisr 2nalízist2 2nalízi1sü 2nal2j. 2n1alj2a. nal1ja 2n1aljad 2n1alja1i 2naljak 2n1aljam 2n1aljas 2n1aljat 2n1aljb 2n1aljc 2n1aljd 2n1aljf 2n1aljff 2n1aljg 2n1aljh 2n1alj2i. nal1ji 2n1aljig 2n1al2j1ip 2n1aljizm nal2j1iz 2n1aljj 2n1aljk 2n1aljl 2n1aljm 2n1aljn 2naljon nal1jo 2n1aljr 2n1aljs 2n1aljt 2nal1ju 2n1al1jú 2n1al2jü 2n1aljv 2n1aljz 2n1alkat nal1ka n2a2l1ob na1lo na2l1ol n2a2lop nal1os2z na2l1ó2r na1ló na2l1Å‘ nalt2 nal1tr na2lulj na1lu na2l1ut na2lü na2mer na1me 2n1a2mit1bo na1mi 2n1a2mi1te 2n1a2mitg 2n1a2mit1ha 2n1a2mitk 2n1amitl 2n1a2mitm 2n1a2mi1tö 2n1a2mitp 2n1a2mit1ro 2n1a2mit1rú 2n1a2mits 2n1a2mit1tá 2n1a2mit1tö 2n1a1mö 2n1amp 2n1a2nal na1na 2n1ang 2n1anh na2nód na1nó 2n1a2nyag nan2y na1nya nao2l na1o naó2r na1ó 2nap2a. na1pa nap1a1dó na2p1a2g na2p1a1la n2apal na2p1alk na1p1a2pa n2apap nap1a1pá nap1a1rá na2p1as na2pád na1pá na2p1á2g na2pák nap1áll na2pám na2p1árb na2p1átm nape2l na1pe na2p1ell na2pe2m nap1est nape2s na2p1ill na1pi na2p1ing na2p1int nap1isk na2pí nap2lat nap1la na2p1o1la na1po nap1orm napos1s na2p1os1tá na2p1ott na2p2ó. na1pó na2p1ó2r napp2 2nap1po nap1pr n1ap1rí 2napróz nap1ró na2p1u2t na1pu na2p1úr na1pú 2n1a2ra1i na1ra 2n1a2rann 2n1a2ran2y. naran2y 2n1a2rany2a. nara1nya 2n1a2ra1nyá 2n1a2ranyb 2n1a2ranyh 2n1a2ranyk 2n1a2ranyn 2n1a2ranyr 2n1a2rany1s 2n1a2ranyt2 2n1ar2c. 2n1ar1cá narchi2ab narc2h nar1c1hi narchi1a 2n1ar1co 2n1ar1cu 2n1ar1cú 2narr 2n1arz na2sév na1sé nas1isk na1si 2nask na1s2ka na1s2rá nast2 n2a1s2ta n2a1s2tá n2a1str na2sz1an nas2z na1s1za na2sz1árad na1s1zá naszá1ra nas2zkés2z1 nasz1ké nasz1ü2g n2a1s1zü n2a2t1ab na1ta na2t1aj na2t1alk na2t1alt nat1áll n2atál na1tá na2t1á2ré n2atár na2t1árn na2t1eg na1te nate3le na2t1e1lé nat1el1le n2a2tél na1té nat1ér1ke n2atér na2t1érv na2t1i2m na1ti na2t1ing n2atin na2t1old na1to nat1ors2 n2ator na2t1os2z na2t1u2t na1tu na2tül na1tü n2atű2z na1tű 2n1a2t2y na2uc na1u na2u1e na2ul nau2ra na2u1rá na2u1to naü2z na1ü na2vart na1va na2vat 2n1avv na1wh 2n1azb na2zé 2n1a2zo 1ná 2n1á2bé 2nábr ná2caj ná1ca ná2c3h ná2cí ná2csal nác2s ná1c1sa ná2csap ná2cs1as ná2c1se nác3sik ná1c1si ná2csis 2n1á2csolat ná1c1so nácso1la nác3sor ná2c1sö ná2c1sü nác3s2z ná2d1a1la ná1da ná2da1p ná2d1a2r ná2d1as2z ná2d1a2v ná2dá nád1d ná2d1e2 ná2d1ö ná2dud ná1du ná2d1ü2 ná2d3z ná2ga ná2gá ná2gi ná2gu ná2gú ná2g2y 2n1á2hí ná2k1é2r. ná1ké ná2kol ná1ko ná2kü ná2lab ná1la n2á2l1a2l ná2la1na n1álar nála2te ná2l1az ná2l1át ná1lá ná1le2 ná2l1eg ná2l1el ná2lem ná2les n2á1lé ná2l1ép ná2l1in ná1li ná2lir nál2is ná2lí 2n1ál2l. 2n1áll2a. nál1la 2n1állap 2n1állat 2n1ál1lí 2n1állom nál1lo nállóköz1 nál1ló nálló1kö ná2lü ná2mí ná2mu ná2nad ná1na ná2n1al ná2nar ná2n1á2r ná1ná nán2c1e ná2n1e2 ná1né2 ná2nét ná2ní nán2se ná2nü ná2rad ná1ra 2n1á2ra1ka 2n1á2rakb 2n1á2rakh 2n1á2rakk 2n1á2rakn 2n1á2ra1ko 2n1á2rakr 2n1á2rakt 2n1á2ram ná2r1a2n ná2rap ná2ras nár1ass 2n1á2ra2t. ná2r1att ná2r1av ná2r1á2c ná1rá ná2r1ál ná2r1e2 ná2r1é1ve ná1ré 2n1á2ria1i ná1ri nári1a 2n1á2ri1á ná2r1i2p ná2rí ná1ró2 ná2r1ór ná2rÅ‘ nár1s2 nárt2 nár1tr 2n1á2rud ná1ru ná2rug 2n1á2ru2n. ná2r1ur 2n1á2rus ná2ru2t nár1u1tá ná2rút ná1rú ná2rü ná2s1as ná1sa nás1á1ré ná1sá ná2s1á2ru 2n1á2sás ná2s1e2 ná2s1i2k ná1si nást2 nás1tr ná2sza2n nás2z ná1s1za ná2sza2s ná2szág ná1s1zá ná2szál ná2s1ze ná2szén ná1s1zé ná2szil ná1s1zi ná2szin ná2szis 2n1ászk2a. nász1k2 nász1ka 2n1ászoks ná1s1zo ná2s1z1ö ná2s1z1ú ná2s1z1ü ná2ta1la ná1ta ná2t1a2n ná2t1ál ná1tá nát1ásv ná2t1e2 2n1át1hi ná2t1i2o ná1ti 2n1á2t1ir 2n1á2tí 2n1át1lé ná2t1ö 2n1át1ru 2n1á2t1ug ná1tu 2n1á2t1u2t 2n1á2tú ná2tü 2n1át1vi nba2i n1ba nba2ká nba2k1e2 n2b1é2kéb n1bé nbé1ké n2b1é2kén n2b1é2kér n2b1é2kév nb2la nb2lo nb2lú nbo2n1a2 n1bo nb2ra n1b2ri nb2ró nburg2hi n1bu nc1a1cé n1ca n2c1a1já nc1ajt n2c1akn n2c1akt nc1a2la nc1alj n2c1alk nc1alt nc1alv nc1a1na nc1ant nc1a2nya ncan2y nc1a1ri nc1att nca2u n2c1a1va n2c1ág n1cá nc1árb n2c1árk n2c1árn nc1árt nc1á2sa nc1á1sá nc1bl nc1br nc3c1si nc2c2s nc3c1so nc3c1sö nc3c1su nc1dr nce1a2 n1ce nc1egg n2c1eld nc1e2lek nce1le nc1e2lem nc1elm n2c1elv nc1e2red nce1re nc1e1ró n2c1eszt nces2z n2c1etn n2c1ex ncé2g1ér n1cé ncé1gé ncé2hes ncé1he n2c1ép n2c1é1vi nc1f8l nc1fl nc1fr nc1gr nc3har nc2h n1c1ha nc3has nc3hat n2c3há n2ch2e. n1c1he nc3hel2 nc3het2 nc3hez n2c3hé nc3hi1á n1c1hi n1c3hí nc3hol n1c1ho n2c3hon nc3hor n2c3hoz n2c3hó n1c3hö n2c3hu n2c3hú nci2alis n1ci nci1a ncia1li nci2a1so n2c1i1ge n2c1i2gé n2c1i2ko nc1i2má n2c1i2n2a. nci1na n2c1in1d2 n2c1inf n2c1inff n2c1ing n2c1int n2c1i2pa n2c1i1rá nc1i1ro n2c1ist n2c1i2ta n2c1i2z nc1íj n1cí n2c1ír n2c1ív n2c1íz nc1kl nc1k1re n2c1ob n1co n2c1ok1ta n2c1o2li n2c1orv n2c1ott n2c1öl2t. n1cö nc1öss ncö2t nc1Å‘r n1cÅ‘ nc1pl nc1pr n2cs1ab nc2s n1c1sa n2csac n2csad n2cs1ag n2cs1ajt n2csakt ncs1alap ncsa1la n2cs1alj n2csam n2csan ncsa2p1á2g ncsa1pá ncsa2r ncs1a1ra n2cs1arg ncs1a1ro n2cs1a1u n2csaz ncs1ágr n1c1sá n2cság n2cs1ál n2c3sá2r. n2cs1á2rá ncs1árb n2cs1árn ncs1árr n2csá1ru n2c2sá1ta n2csá1tá n2c2sátv n2c2s1elf n1c1se n2c2s1elff ncs1é2rés n1c1sé ncsé1ré n2csér1te n2cs1ér1té n2c3sé1rü n2c3sé1ta ncs1i2kon n1c1si ncsi1ko ncs1int n2cs1i1o n2csi1pa n2csi1rá nc2s1irt n2cs1ism n2csi1ta ncs1izz n2c3sí1ki n1c1sí n2cs1í2rá ncs1í2z. n2cs1ízt n2csob n1c1so n2cs1oks n2c2sok1ta n2c2sos2z n2cs1ö2lé n1c1sö n2cs1ös n2cs1öz n2cs1Å‘2r. n1c1sÅ‘ ncs1Å‘1rö ncs1s n2csur n1c1su ncsu2t ncs1u1ta n2csút n1c1sú n2csüg n1c1sü n2csüt ncs3zár ncs2z nc1s1zá nc3s1ze nc3s1zó nc3s1zö nc1tr n2c1ud n1cu n2c1ug nc1uj n2c1u2r n2c1új n1cú nc1út n2c1üg n1cü n2c1üt nc1üv n2c1üz n2c1űr n1cű nc1ya n2c3zá nc2z n1c3ze n2c3zó n1c3zö nc3z2s n1c3zü nczy1i n1czy nd1abl n1da nda1br nd1a2dat nda1da nda2dás nda1dá nd1add n2d1a1já n2d1akc n2d1akk nd1akt n2d1alj n2d1alr nd1ann nd1a1pó nd1a2rán nda1rá nd1arr ndat1an2y nd2atan nda1ta nd2a2tap nda2t1eg nda1te nd2a2tin nda1ti nd2a2tir nd1a1zo nd1azt nd1azz nd1á2rak n1dá ndá1ra ndás1s nd1bl nd1cl nd1dr nd1ebb n1de n2d1e2kéb nde1ké n2d1e2kéin ndeké1i nde2köz nde1kö n2d1elf n2d1elff n2d1ellen ndel1le n2d1elm n2d1e1lö nde2mer nde1me nde2mu nde2m1ü nde2ná nde1p2 nde2r1a nde2rál nde1rá nde2ráz nde2rel nde1re nde2ro n2d1e2rÅ‘ n2d1e2sett nde1se n2d1e2sés nde1sé n2d1e2sÅ‘ nde2s1za ndes2z n2d1e2s1zü n2d1e1za ndé2go n1dé ndé2ke2l ndé1ke nd1é2kez ndé2kö n2d1é1le nd1élm n2d1ép ndé2raj ndé1ra n2d1és2s2z2 n2d1észb ndés2z n2d1é2sz2e. ndé1s1ze n2d1é2s1zé n2d1észh n2d1ész1k2 n2d1észl n2d1észr n2d1é2te n2d1étt nd1fr nd1gr n2d1i1ga n1di n2d1i1ge n2d1ill n2d1i2n2a. ndi1na n2d1ing n2d1ins n2d1i2onj ndi1o ndi2ó1é2 ndi1ó ndi2óf ndi2óff ndi2óm n2d1i1ro n2d1i1s1za ndis2z ndí2j1a2da n1dí ndí1ja nd1kl n2d1o1á n1do ndo2k1ú2t ndo1kú ndo2rál ndo1rá n2d1or1ni ndo2r1ú n2d1o1u n2d1ov ndóé2r n1dó ndó1é nd1ó2ni n2d1ó2rá ndö2b n1dö nd1öss n2d1ö2z n2d1Å‘2r. n1dÅ‘ n2d1Å‘2r1a2 n2d1Å‘rb n2d1Å‘rc n2d1Å‘rd nd1Å‘2reg ndÅ‘1re nd1Å‘2re1i nd1Å‘2rek nd1Å‘2rel n2d1Å‘2rék ndÅ‘1ré n2d1Å‘2rén nd1Å‘2rér nd1Å‘2rét nd1Å‘2rév n2d1Å‘rf n2d1Å‘rff n2d1Å‘rg nd1Å‘2rig ndÅ‘1ri nd1Å‘2r1is nd1Å‘2rit n2d1Å‘rj n2d1Å‘rk n2d1Å‘rl n2d1Å‘rm n2d1Å‘rn n2d1Å‘rok ndÅ‘1ro n2d1Å‘ros n2d1Å‘2rö nd1Å‘2r1Å‘2s ndÅ‘1rÅ‘ n2d1Å‘rp n2d1Å‘rr n2d1Å‘rs n2d1Å‘rt n2d1Å‘1rú n2d1Å‘rv nd1pr n1d2raz nd1ra n1d2ruk nd1ru nd1sc n1d2se nd1sl nd1sp ndszá2m1út nds2z nd1s1zá nd3szá1mú nd3sze2r1e2l nd1s1z2e ndsze1re ndtár2s1a2d nd1tá ndtár1sa n2d1u2s1zo n1du ndus2z ndu2t n2d1u1ta nd1új n1dú ndú2rá nd1ús2z n2d1üg n1dü nd1ünn n2d1üz n2d1ű2r. n1dű n2d1űrr n2d1űrt n2d1űz ndy2b ndy2h ndy2n ndy2r ndy2t ndy2v nd3zav nd2z n1d1za nd3zár n1d1zá n2d3ze n2d3zó n2d3zu 1ne nea2d ne1a nea2j nea2k nea2la ne2a1lo nea2n nea2r ne2a1u ne2bé ne1c2k ne1d1ra ne1d2rá ned2v1el ned1ve ne1dy 2n1e2d1zé ned2z 2nef8f 2neff 2n1e2ger ne1ge 2n1e2gé2r. ne1gé ne2g1ö n1eg2y. neg2y n1egyb ne2gyek ne1gye ne2gyen ne2gyes ne2gyet ne2gyez 2n1e2gyé n1egyf n1egyff n1egyh ne2gyig ne1gyi n1egyk n1egym n1egyn n1egyr 2n1egys n1egyt ne2gyün ne1gyü nehen2 ne1he nehéz1 ne1hé 2n1ehh ne2i1a ne1i nei2g neil2 neí2r ne1í ne2k1aj ne1ka ne2k1a2n ne2kát ne1ká ne2k1e2g ne1ke nek1e1rÅ‘ nek1é2jé ne1ké ne2kék nek1ékn neki1e2 ne1ki 2nekj nek1k2 2nek1ka 2nek1ki ne1k1lu ne2k1ok ne1ko nekö2r ne1kö ne1kre1á nek1re nek1t2 ne2k1üg ne1kü nek1ül1dö ne2lag ne1la ne2l1a2j ne2l1an ne2lál ne1lá nelá2r ne2lef ne1le ne2l1eff ne2leg n1eleg2y. neleg2y ne1l1e2le nele2ma nelem1el nele1me nel1e2més nele1mé nel1eng ne2ler ne2l1ép ne1lé nel1fé2 nel1g2 2n1el1ha ne2l1id ne1li ne2lim ne2l1in n1el1ló 2n1elnev nel1ne ne2l1ot ne1lo ne2l1ó2 ne2l1ö2 2n1e2lÅ‘1a ne1lÅ‘ 2n1e2lÅ‘1á ne2lÅ‘d ne2lÅ‘f ne2lőff ne2lÅ‘1hí 2n1e2lÅ‘1í 2n1e2lÅ‘1ké ne2lÅ‘l 2n1elÅ‘n2y 2n1e2lÅ‘rej nelÅ‘1re 2n1e2lÅ‘1té 2n1eltér nel1té ne2l1ül ne1lü 2n1elz ne2mak ne1ma nema1s nemas2z2 2nem1ba 2n1ember nem1be neme2g ne1me nem1eg2y 2neme1le 2n1e2melk ne2m1es2z ne2m1é2r. ne1mé ne2m1id ne1mi nem1is2z 2nems 2nemul ne1mu 2n1eng 2n1enn nen2sa nense2s nen1se nen2s1e1se nens3s nen2s3z 2n1enyv nen2y 2n1enz ne2ob ne1o ne2od ne2of ne2off ne2og2 ne2oh ne2o1ko ne2o1la ne2o1li neo1n1a2 ne2o1ro ne2pad ne1pa ne2pelm ne1pe ne2p1est ne2pid ne1pi ne2p1ó2r ne1pó ne2p1ut ne1pu ne2r1a2d ne1ra ne2r1a2k ne2r1a2n ne2r1a2r ne2r1as ne2raz ne2ráb ne1rá ner2co2 ne2r1e2g ne1re 2n1e2rej ne2r1e2k2e. nere1ke ne2r1e2l ner1e2mel nere1me ne2r1er ne2rez ne2rég ne1ré ne2r1él ne2r1ép ne2r1étt ne2r1id ne1ri ne2r1i2ga ne2r1il ne2r1i2m ne2r1inf ne2r1inff ne2r1ing ne2r1int2 ne2ris ner1k2 ne2r1ol ne1ro ne2ror ne2r1os ne2ró ne2r1ön ne1rö 2n1e2rÅ‘ 3n2e3rÅ‘1kü ner1s ner1t2r ne2r1u2 ne2r1üg ne1rü ne2s1al1já ne1sa ne2sas ne2s1ál ne1sá ne2sár 2n1e2setb ne1se 2n1e2setr 2n1e2sés ne1sé 2n1e2sÅ‘ nes3s1za nes2s2z nes3s1zá nes2tal nes1ta 2n1es1té 2n1es1ti ne2s1ü2v ne1sü nesz1ál nes2z ne1s1zá ne2s3zár ne2sz1él ne1s1zé ne2s1z1ű2 ne2t1ab ne1ta net1a2la ne2t1a2n2y ne2tál ne1tá ne2t1át1 ne2t1e2g ne1te net1e1lá net1elm ne2t1elÅ‘1a nete1lÅ‘ ne2t1eml ne1t1es1te ne2t1es2z ne2t1etet nete1te ne2t1e1ti ne2t1é2k ne1té ne2t1é2l ne2t1é2r. ne2t1érd ne2t1é1ré ne2t1é2r2Å‘. neté1rÅ‘ ne2t1é2rÅ‘k ne2t1érr ne2tér1te ne2t1ér1tÅ‘ ne2t1é2rü ne2t1és2z ne2t1é2v2e. neté1ve ne2ti2d ne1ti ne2t1i2ko ne2t1int ne2tip ne2t1í2v ne1tí netké2s1z1ü net1ké netkés2z ne2t1o2k ne1to ne2tol net1old ne2t1Å‘2 net2tév net1té ne2tun ne1tu ne2t1ut netü2l ne1tü net1ü1lé ne2t1ü2z nevil2 ne1vi 2n1e2vÅ‘ 2n1evv 2n1exp nexpor2t1Å‘2 nex1po ne1yé 2n1e2zer ne1ze 2n1ezred nez1re 2n1e2züs ne1zü 1né 2n1ébr 2nédl né1f2r 2n1é2g. 2n1é2gek né1ge 2n1é2ge1té 2n1é2get2Å‘. nége1tÅ‘ 2n1é2getÅ‘h 2n1é2getÅ‘k 2n1é2getÅ‘n 2n1é2getÅ‘t 2n1é2gé 2n1égj 2n1égn 2n1é2gÅ‘ 2n1égs 2n1égt 2n1é2gü né2gyer nég2y né1gye né2gyén né1gyé né2gy1o2 né2gyök né1gyö 2n1é2hes né1he 2n1éhs né2ji né2kaj né1ka né2kak né2k1a2n né2kar né2k1á néke2l né1ke nék1e1le né2ker né2kév né1ké né2ki2d né1ki nék1is2z 2n1é2kí né2kó né1kü2 né2kül n1é2les né1le 2n1é2let 2n1élm né2lÅ‘1i né1lÅ‘ né2lÅ‘n 2néne1ke né1ne 2n1é2ne1ké né1pa2 né2pad né2p1ak né2p1al né2p1an né2pap né2p1as né2pa1u né1pá2 né2p1ál né2p1ár né2pát né2p1áz né2peg né1pe n2é2p1e2l né2p1e2r nép1etet2 népe1te né2p1etn né2pev né2p1és né1pé nép1f2 nép1ff 2né2pí né2p1o né2p1ö né2pÅ‘ nép1s né2p1u2s né1pu né2pú 2népül né1pü né1ra2 né2raj né2r1an 2n1érd 2n1é2rem né1re né2r2é. né1ré né2rés né2r2i. né1ri né2rin né2rip né2rö 2n1é2r2Å‘. né1rÅ‘ 2n1ér1té né2rü 2n1érz né2s1e2l né1se né2s1ég né1sé nés3szer nés2s2z2 nés1s1ze nész1ak nés2z né1s1za nész1al n2é2s1z1á né2szeg né1s1ze né2sz1e2l né2sz1emb né2s2z1e2s2z né2sz1ék né1s1zé né2szik né1s1zi né2s1z1í nés2zkés2z1 nész1k2 nész1ké né2s1zó n2é2s1z1ö2 nész1tr né2s1zu né2s1z1ú né2szül né1s1zü né2t1eg né1te 2n1é2tel né2t1es 2n1é2tet né1ti2 né2tir né2tö né1t2r né1va2 név1a1da né2vad név1a1dá né2vaj né2var né2vav né2v1ág né1vá 2n1év1bú 2n1é2v2e. né1ve 2n1é2ve1i 2n1é2vek néve2l né2v1e1le né2v1e1lÅ‘ 2né2vem 2n1é2ven3k2 2n1é2vent né2v1e2r né2ves név1es2z 2né2vet 2névéb né1vé né2v1é2l né2v1é1ri né2vé1rÅ‘ né2v1érz né2vis né1vi 2n1évn2y né2v1o né2vö né2vÅ‘ né2v1u2 né2vú né2vün né1vü né2za néziu2m1i2 né1zi nézi1u nfe2le1mé n1fe nfe1le n1f2la nf8l n1fla nfl n1f2lo n1flo nfluo1r1e2 n7f6luor nf1lu nflu1o nfluo1r1e2 nflu n7fluor nflu1o nfol2ta n1fo n1f2rak nf1ra n1f2rá n1f2rek nf1re n1f2ri n1f2rí n1f2rö n1f2ru nfüs2t1ö1lé n1fü nfüs1tö n2g1abl n1ga n2g1a2dat nga1da n2g1a2dá ng1a2dó n2gad2ó. n2gadó1a n2gadób n2gadó1i n2gadój n2gadók n2gadór n2gadós n2gadót n2gadóv ng1akn n2g1akr n2g1akt nga2lag nga1la nga2lak nga2lap ng1alát nga1lá ng1alel nga1le n2g1alg n2g1alj n2g1a2n2y nga1p2 n2g1a2rán nga1rá n2g1arc n2g1art n2g1arz n2g1asp ng1as2s2z n2g1aszt ngas2z nga1tr n2g1a2u n2g1a1va n2ga2zon nga1zo ngá2c n1gá n2g1á2g ng1ál1lá ng1ál1lo ng1ál1ló n2g1áp ng1á2rak ngá1ra ng1á2ras ng1á2ra2t ngá2rát ngá1rá ngá2ráv ngá2ré n2g1ár1nya ngárn2y n2g1ár1ta ngá2ruk ngá1ru n2g1á2rú n2g1á2szaib ngás2z ngá1s1za ngásza1i n2g1á2szair n2g1á2szait n2g1á2száv ngá1s1zá n2g1á2s1zé n2g1á2sz2i. ngá1s1zi n2g1á2szig n2g1á2szo1ké ngá1s1zo n2g1á2szos n2g1á2t1á2 ng1átc n2g1á2t1e2 n2g1á2ti n2g1átk n2g1átl n2g1átm n2g1áts n2g1átv n2g1á2zój ngá1zó n2g1á2zós n2g1ázta1to ngáz1ta ng1bl ng1br ng1d2r ng1ed2z n1ge nge2gés2z1 n2g1e2gé n2g1e1la nge2lis nge1li n3g2e2r. nge2r1a nge2rál nge1rá nge2r1e2s2z nge1re nger2im nge1ri nge2ro n2g1esem nge1se n2g1es1te n2g1eszk nges2z nge2ti1ka nge1ti n2g1ex n2g1é2g n1gé n2gé2les ngé1le n2g1é2pí n2g1érc n2g1érl n2g1é2r2Å‘. ngé1rÅ‘ n2g1ér1té ngé2sa n2g1é1te ng1fr ng1g2r ng5gyi ng2g2y ng5gyo ng2h2a. ng1ha n2g1i2d n1gi ngi2g n2g1i1ga n2g1i1ge n2g1i2gé ng1i2ko n2g1ikr n2g1ill ngi2m ng1i1mi n2g1inf n2g1inff n2g1ing n2g1ins n2g1i1ro n2g1izg ng1íg n1gí ng1ír ng1ív ng1íz ng1kl ng1kr ng1kv n1glec ng1le ngmeg1 ng1me n1g2nó n2g1of n1go n2g1off n2g1op ngo1ra1 n2g1ord n2g1org n2g1ork n2g1os1to ng1oszt ngos2z n2g1otth ngó2ri1á n1gó ngó1ri n2g1öb n1gö ngö2r ng1ö1rö n2g1örv n2g1öv n2g1ö2z ng1Å‘1rö n1gÅ‘ ngÅ‘2z1Å‘2s ngÅ‘1zÅ‘ ng1pr ng1ps n1g2ram ng1ra ng2rádih ng1rá ngrá1di ng2rádj n1g2ráf n1gráff ng2run ng1ru ng1sh ng1sk ng1sp ng1tr n2g1ud n1gu n2g1ug n2g1uj n2g1und ng1u2ra n2g1u1ta n2g1új n1gú n2g1útt n2g1üd n1gü n2g1ü2g ng1ür ng1üt n2g1üz ng1űr n1gű n2gy1a2gya ng2y n1gya ngyag2y ngya2l1ó2 ngy1ass n2gy1á2l n1gyá n2gy1em n1gye n2gy1es n2gyez n2gy1é2d n1gyé ngy1éks ngy1ékt n2gyél n2gy1é2r. n2gyid n1gyi n2gyim n2gy1ut n1gyu n2gy1ü2lÅ‘ n1gyü nha2b1i n1ha nhal1k2 nha2sábr nha1sá nhá2z1alt n1há nhá1za nhá2zip nhá1zi nhá2zol nhá1zo nhá2zó nhá2z3s2 nhe2d3z n1he nhe2i nhú2sá n1hú nhús3s 1ni ni2a1a ni1a ni2a1á ni2a1bo ni2ac ni2ad ni2a1e ni2a1é ni2a1fo nia1g2 ni2ag2y ni2ah ni2a1í ni2aj ni2a1la ni2a1lá ni2amb ni2a1mé ni2a1mi ni2a1mo ni2a1o ni2a1ó ni2a1ö ni2a1Å‘ ni2a1p ni2ar ni2a1s1za nias2z ni2a1s1zá nia1t2 ni2a1to ni2atr nia3u ni2a1ü ni2av ni2az niá2t1a2 ni1á 2n1i2bo ni1br ni2c1e2l ni1ce ni2c1ha nic2h nic3het2 ni1c1he ni2c3hé ni2c3ho ni2d2e. ni1de 2n1i2deg 2n1i2dÅ‘ ni2dü ni2et ni1e 2n1if8j 2n1i2gal ni1ga 2n1i2ga2z. 2n1i2gá ni2g2e. ni1ge ni2géj ni1gé 2n1i2gén ni2géz 2nigm 2n1ihl ni2keb ni1ke ni2k1el ni2k1em ni2k1ér1té ni1ké nikk2 ni1k1lu ni2konr ni1ko 2n1ikri2t. nik1ri ni2kud ni1ku n1il1le 2n1il1lu 2n1i2l2y 2n1i2mád ni1má n1i2má1é 2n1imp 2n1i2n2a. ni1na ni2nas ni2n1áll ni1ná 2nind ni2neh ni1ne 2n1in1fo 2n1in1fú nin2gas nin1ga nin2gá 2n1ing2e. nin1ge 2n1inge1i nin2g1e2l nin2g1ó2 nin1g2rá nin2gu 2n1ingük nin1gü ni2n1i2p ni1ni ni2nol ni1no 2n1in1té 2n1i2onb ni1o ni2onc ni2onh ni2onj ni2on1k2 2n1i2onn 2n1i2o1no 2n1i2onr 2n1i2ont ni2o1s nios2z2 ni2ó1a ni1ó ni2ód ni2ó1e ni2óp ni2ó1ta ni2ó1tá ni2ó1ü nió1vá2 nip2p1i ni1pr ni2rat ni1ra 2ni1rá nirés2z1 ni1ré 2n1irg 2n1irh 2n1irk 2n1i2rod ni1ro ni2rón ni1ró ni2s2i. ni1si ni2s1in nisü2v ni1sü nisz1ak nis2z ni1s1za ni2szeg ni1s1ze ni2s2zeml ni2sze1se ni2sz1é2l ni1s1zé ni2szip ni1s1zi ni2szis nisz1okt ni1s1zo nisz1ol 2n1iszon ni2s1zö ni2s1z1Å‘ ni2s1zu ni2t1a2d2 ni1ta ni2t1ag ni2t1aj ni2tal nit1a2la ni2t1as 2n1i2tat nit1ell ni1te ni2t1ép ni1té ni2t1ér ni2tim ni1ti ni2t1in ni2tir nit1old ni1to nit1olt n2i2t1os2z ni2tür ni1tü ni1t2y niu2m1i2o ni1u niu1mi 2n1i2vad ni1va 2n1i2var 2n1i2vó ni2xa ni2xis ni1xi ni2xÅ‘ ni2zén ni1zé 2n1izg 2n1iz1má n1izom ni1zo ni2zsol niz2s ni1z1so 1ní ní2gé ní2ja ní2ju níli2a ní1li ní2ra2 2n1í2rá ní2r1é2 ní2r1ot ní1ro 2n1í2ró ní2r1ú 2n1í2tél ní1té nítÅ‘1a2 ní1tÅ‘ ní2ve 2n1í2vi ní2ze ní2zű nk1a2dós n1ka nka1dó nkai2k nka1i nk1ajt n2k1akk n2k1alv n2k1a1nó nka2nyá nkan2y nka1ó2 nka1p2l n2k1app nka2ris nka1ri nka1s2k nka1s1p nka2tom nka1to nka1t2r nk1a1zo n2k1ág n1ká n2k1á2rad nká1ra nká2rál nká1rá nká2rol nká1ro nká2ruk nká1ru nká2sad nká1sa nká2sal nká2sav nkás3s nká2s3z nká1ta2 n2k1átj n2k1átm n2k1áts n2k1á1tu nk1br nkci2ó1sű nk1ci nkci1ó nk1dr nk1e2c1se n1ke nkec2s nk1e2d2z nk1e1la n2k1el1lá n2k1el1tá nke2r1a nk1ered nke1re n2k1e2rÅ‘ n2k1e2ti n2k1e2vé n2k1é2l n1ké nk2é2p1el nké1pe nké2p1és nké1pé n2k1é2pí n2k1érc nk1é2s1zé nkés2z nk1gr nki1a2 n1ki nki1á2 nki2ew nki1e n2k1i2ga n2k1i1gé n2k1i1mi n2k1ind n2k1ing n2k1int n2kinz nk1i2on nki1o nki2s1i2 n2k1ism nk1ká2 nk1k2r nk2lar nk1la n1k2ló n2k1ob n1ko n2k1o1ke2 nkos3s n2k1oszl nkos2z n2k1ox n2k1ó1né n1kó n2k1ó1ni nkó1p2 n2k1ó2ri n2k1ö2lé n1kö n2k1ö2lÅ‘ nk1öss nk1ötl nk1Å‘r1s2 n1kÅ‘ nk1pl nk1pr nk2rac nk1ra n1k2ris nk1ri n1k2rí nk2ro1ma nk1ro nkron1n nk1sp nk1s2t nk1s2z2 n2k1ud n1ku n2k1u2ra n2k1u2s nk1utal nku1ta n2k1u1tá n2k1uz n2k1új n1kú n2k1ús n2k1üg n1kü nlac1 n1la nla2pa nla1p1e nla2p1os2z nla1po nla2tal nla1ta nl2a2t1a2n nla2t1e2 nla2t1é2te nl2atét nla1té nlás3s n1lá nle2g1á n1le nle1í2 nle2t1o nle1tü2 nle2tüz nlé2tés n1lé nlé1té nlé2t1é2v2e. nlété1ve nme2g1a2 n1me nme2g1é nmik1ro1 n1mi nmikros2z2 nműé2n n1mű nmű1é nműt2 nna2i1é n1na nna1i nnak2 nna1kr nn1alv nna1p2ré nna1s2 nn1áll n1ná n2n1eml n1ne nne2p1a2 nne2se n2n1es2z n2n1e2tet nne1te n2n1ett nn1evez nne1ve nné2get n1né nné1ge nn1é1ri nn1hä n2n1id n1ni nn1irt nn1or1s2 n1no nnőé2h n1nÅ‘ nnÅ‘1é nnőé2n n2n1ug n1nu nn1ú2s n1nú n2n1ü2c n1nü nnü2l nn1ü1lÅ‘ nn1ült nn1ülv n2n2y n3nyak n1nya n3nya1lá nny1a2n n3nyar nnyá2r n1nyá nny1áz n3nydr nny1ell n1nye n3nye1lÅ‘ nny1elt nny1el1vá nny1elvez nnyel1ve nny1e2sett nnye1se nny1e2sés nnye1sé nny1e2sÅ‘ nny1ég n1nyé nny1é2ké nny1é2ki nnyié2h n1nyi nnyi1é nnyié2ne nnyi2g nny1i1gé n3ny1jé nny1old n1nyo nny1on nny1öz n1nyö n3ny1so n3nys2t 1no 2nobs no1cy no1d2rá 2n1o2dú 2no2g. 2nogh 2nogj 2no1go no1g1rá 2nogs 2nogt 2nogv no2ir no1i 2nokal no1ka nok1a1la no2k1a2r no2ka2u no2k1ál no1ká no2k1é2l no1ké no2ké2p no2k1ing no1ki nok1ist2 nok1k2 2n1ok1ke 2n1o2koz no1ko no2kö no2kÅ‘ no1k2ro nok1s noks2z2 no2kur no1ku no2kúr no1kú no2kü 2n1o2la nol1f2 nol1ff 2n1o2lim no1li 2n1ol1ló 2n1o2l2y no2m1a2c no1ma no2m1ol no1mo no2m1os2z nom1p no1na2 no2n1al nonc3c non2c2h nonc3s2z nonc2s no2ne non1k2 no2nö no2nÅ‘ non1s2 no1n2y no2ok no1o 2n1o2pe no1ph no2r1al no1ra no2r1a2t no2raz no2r1e2l no1re no2r1iv no1ri no2rí 2n1or1mo 2n1or1ré nor1s2 no2rü 2n1or1vo no2sál no1sá no2se no2s1is no1si nos2s2z2 nos3s1ze nos3szf nos3szff nos3s1zi no1s2tab nos1ta nosza2u nos2z no1s1za no1sz2f no1sz2ff no1sz2kó 2noszl no1t2ra not2re 2n1otth no1t2y no2u1a no1u no2u1i no2ul no2uv 2n1o2v2i. no1vi no2xi 1nó nóa2k nó1a nóá2r nó1á nó2ce nó2c2h nó2d2a. nó1da nó2d1a2n nó2dák nó1dá nó2d1e2s nó1de nó2d1is nó1di nó1f8l nó1fl nó1fr nó1k2l nó2mac nó1ma nó2m1em nó1me n2ó2mi2k nó1mi nó2m1u2t nó1mu nó2mü nó2nib nó1ni nó2non nó1no nó1p2r n1ó2rac nó1ra nó2r1ad n1ó2raf n1ó2raff 2n1ó2ra1i nó2r1a2l n1ó2rar n1ó2ras n1ó2rat nórá1di2 nó1rá nó2rás nó2ri1á nó1ri nó2rü nós1akk nó1sa nó2seg nó1se nó1sl nó1s2p nó1s2rá nós3s nó1s2ta nó1s2z2 nós3ze1ne n2ószen nó1s1ze nós3ze1né nót1a1la nó1ta nó2til nó1ti nó1t1rá nó2vó 1nö nö2ka nö2ká nö2k1e2l nö1ke nöke2t nök1e1ti nö2k1é2j nö1ké nö2k1ék nö2k1é2l nö2k1é2r. nö2k1é1ri nö2k1ér1té nö2ko nö2kó nö2ku nö2kú n1ö2le n1ö2lé nö2lÅ‘ n1öml 2n1ö2nö 2n1önz nö2rö 2n1ös2s2z 2n1ö2s2z nö2te nö2té nö2ti n1ötl nöt1t2 nö2tü 2n1ö2v. n1övb n1ö2v2e. nö1ve nö2vön nö1vö 2n1övr 2n1ö2zön nö1zö 1nÅ‘ nÅ‘a2l nÅ‘1a nÅ‘a2n nőá2g nÅ‘1á nÅ‘1br nÅ‘2ca nÅ‘2c2h nÅ‘2csár nÅ‘c2s nÅ‘1c1sá nÅ‘2csÅ‘s nÅ‘1c1sÅ‘ nÅ‘2c1sü nÅ‘e2r nÅ‘1e nőé2l nÅ‘1é nÅ‘fé2l1é2 nÅ‘1fé nÅ‘1kl nÅ‘1pl nÅ‘1pr 2n1Å‘2r. 2n1Å‘2r1a2n nÅ‘1ra 2n1Å‘2r1a2s 2n1Å‘rb 2n1Å‘rc 2n1Å‘2re1i nÅ‘1re 2n1Å‘2réh nÅ‘1ré 2n1Å‘2rén nÅ‘2ré2t. nÅ‘2ré1tÅ‘ 2n1Å‘2rév 2n1Å‘rg 2n1Å‘rh 2n1Å‘2ri 2n1Å‘rk 2n1Å‘rl 2n1Å‘rn 2n1Å‘2rö 2n1Å‘rr n1Å‘rs 2n1Å‘rt 2n1Å‘1rü nÅ‘2rül nÅ‘2rün 2n1Å‘rv 2n1Å‘rz nÅ‘2s1a2l nÅ‘1sa nÅ‘2s1e2l nÅ‘1se nÅ‘2ses nÅ‘2s1í2r nÅ‘1sí nÅ‘2so2k nÅ‘1so nÅ‘1s1pe nÅ‘s3s nÅ‘1sz2t2 nÅ‘s2z nÅ‘1t2r nÅ‘t2tin nÅ‘t1ti nÅ‘u2t nÅ‘1u nőü2l nÅ‘1ü npa2dal n1pa npa1da npe2s n1pe npes2z1 np2la np2lá np2le np2lé np2lo np2lü npon2t1a2 n1po npo2r1a np2ra np2re np2ré np2ri np2ro np2ró np2s2z npu2t1a n1pu npu2t1á2 npu2t1e2 npu2t1i nrefle2x1í2 n1re nref8l nref1le nrefle2x1í2 nrefl nrefle nren2da n2s1a2d n1sa n2s1akc ns1alk ns1a2rá ns1ass n2s1a1u ns2a2vár nsa1vá nsa2v1e2 nsa2vil nsa1vi nsa2vol nsa1vo n2s1a2z nság1g n1sá ns1áll n2s1á2rak nsá1ra n2s1á1ta n2s1átv ns2c2h nsc3h2e. ns2c1he nsc3he1i ns1c3hé ns1dr ns1e2lé n1se ns1elm ns1eln ns1e1lo ns1els ns1elv n2s1e2ne n2s1es2z nsé2gel n1sé nsé1ge nsé2g1éj nsé1gé nségü2két n3sé1gü nségü1ké n2s1ék n2s1é2l n2s1ép n2s1é2v2e. nsé1ve ns1fr n2s1i2d n1si n2s1imp n2s1inf n2s1inff n2s1ing n2s1i1ró ns1isk nsi2z ns1i1zo n2s1í2r n1sí n2s1í2v n1s2kál ns1ká ns1kl n2s1ob n1so n2s1ol n2s1op n2s1os2z n2s1ott n2s1ó2r n1só n2s1ös n1sö ns2pec ns1pe ns1p2l ns2por ns1po n1s2rá ns1st ns1sy ns3szer ns2s2z ns1s1ze ns3s1zi ns3s1zo ns3s1zö n1s2tab ns1ta n1s2tác ns1tá nste2i ns1te ns1t2h n1s2tim ns1ti n1s2top ns1to nsu2r n1su n2s1u1ra n2s1u2t ns1úr n1sú n2sz1a2d ns2z n1s1za nsza2k1ü2 nsz1alk n2sz1a2n ns3za1rá n2sz1á2b2a. n1s1zá nszá1ba ns3zá1rá nsz1á2ru n2sz1it n1s1zi n2sziz n2sz1omm n1s1zo nsz1p2 n2szut n1s1zu n2sz1ü2z n1s1zü nsz1z nt1ab1la n1ta n2t1abr nta2cél nta1cé ntad2 n2t1a2dó nt1a2g2a. nta1ga n2t1agg nta2gyu ntag2y nta2gyú ntai2k nta1i n2t1ajk n2t1ajt n2t1akc n2t1ak1tá nt1alát nta1lá nt1alel nta1le n2t1alf n2t1alff n1t1an1ta nt1a2r2a. nta1ra nta2ran n2t1a2rá n2t1arc n2t1ark nta1s2p n2t1as2s2z n2t1at2y n2t1a2u1ra nta1u nta1ü2 n2t1a1zo n2t1ábr n1tá ntá2c2s nt1á1c1si nt1á1c1so ntá2r1a2d ntá1ra n2táram ntá2ráv ntá1rá nt1árn2y ntá2ruk ntá1ru n2t1á2só n2t1ás1vá n2t1á1ti n2t1átl n2t1átr n2t1áts n2t1átv ntá2z1si ntáz2s nt1bl nt1br nt1dr nt1e1be n1te n2tedén nte1dé nt1e1di nte3gá n2t1e1la n2t1elb ntele2mé nte1le nt1elf nt1elff n2t1el1já n2t1elk n2t1ellen ntel1le n2t1elmél ntel1mé n2tel1nö n2t1e2lo nte2lÅ‘1á nte1lÅ‘ n2t1elr n2t1el1to n2t1el1vá n2t1elz n2t1ember ntem1be n2t1e2mel nte1me n2t1eml n2t1e1mu n2t1endr n2t1ent nte2rál nte1rá nte2re1le nte1re nte2r1in nte1ri nter2v1e2l nter1ve n2t1erz n2t1esth n2t1eszk ntes2z n2t1e1va nt1e2vet nte1ve nt1e2vez n2t1é2g. n1té n2t1é2gé n2t1é2kek nté1ke nté2kes nté2ké n2t1éks n2t1é2le n2t1é2lés nté1lé n2t1élm n2t1élt n2t1é2lű n2t1é2ne1ke nté1ne n2t1é1pü n2t1érin nté1ri n2t1ér1mé n2t1ér1té n2t1érz ntés3s nté2ter nté1te n2t1é2ven nté1ve n2t1é2vet n2t1é2véb nté1vé n2t1é2vén n2t1é2vér n2t1é2vét n2t1évh n2t1évk n2t1évt nt1f8l nt1fl nt1fr nt1gr n1t2hon nt1ho ntia2n n1ti nti1a ntia2t nt1i1do n2t1i1ge nti1k2l ntil2lá2t. ntil1lá n2t1il1le n2t1imp n2t1in1fo n2t1in1ga nti1n2k. n2t1in1té nti1ó1 nti2par nti1pa n2t1i1rá n2t1i1ro n2t1isk n2t1ism n2t1is1te nti2vás nti1vá nt1i1zo n2t1íg n1tí n2t1íj nt1í1rá n2t1ívb n2t1í2z nt1kl nt1kr n2t1of n1to n2t1off nto1ka2 n2t1o2k1al n2t1okl n2t1ol1da n2t1ol1dó n2t1o2l2y nto2m1e2 n2t1opc nto2ras nto1ra nto2rék nto1ré nto2rin nto1ri nt1or1má nt1or1ro n2t1oszl ntos2z n2t1oszt n2t1otth ntó1p n1tó n2t1ó2rá n2t1ó2ri ntót2 ntó1tr nt1ökl n1tö nt1ö2kö nt1ö2lÅ‘ nt1önt n2t1örd ntÅ‘1a2 n1tÅ‘ ntőé2n ntÅ‘1é nt1Å‘rb n2t1Å‘rl nt1Å‘rn n2t1Å‘z nt1pl nt1pr nt2rans nt1ra ntrans2z1 ntranszk2 n1t2réf nt1ré n1t2réff n1t2róf nt1ró n1t2róff nt1ry nt1sh nt1sk nt1sp nt1st nts2z2 nt3szá2m1é nt1s1zá nt1szv nt1t2r n2t1udv n1tu n2t1ug n2t1uj ntu2mor ntu1mo ntu2n n2t1u1na nt1und ntu1n1i n2t1u2rá ntu2s1za ntus2z n2t1úg n1tú n2t1új ntú2ral ntú1ra ntú2ran nt1ú2s2z n2t1üg n1tü n2t1ü2lÅ‘ nt1ült n2t1üt n2t1ü2v n2ty1a2l nt2y n1tya n2ty1a2n n2tyál n1tyá n2ty1e2l n1tye n2ty1él n1tyé n2ty1ik n1tyi n2ty1int n2ty1iv n2tyí n2ty1Å‘2r n1tyÅ‘ n2tyut n1tyu 1nu n1ucc nu2c1ho nuc2h nu2ga nu2go 2n1ujj nu1k2la nu1k1lu nu2mü 2n1und 2n1u2ni 2n1u2no 2n1unt nu2ram nu1ra nu2rá nu2sal nu1sa nu2sas nu2s1av nu2s1e nu2s1ér1té nu1sé nu2sik nu1si nu2sol nu1so nu1s2po nuss2 nus3s1zi nus2s2z nu2szab nus2z nu1s1za nu2s3zav nu2szir nu1s1zi nu2s1zí nu2sz1ol nu1s1zo nu2tal nu1ta nu2tat nu2taz nu2tál nu1tá nu2te 1nú n1újd nú2jí 2n1újs núkés2z1 n2úkés nú1ké nú1pr 2n1ú2r. 2n1úrb 2n1úrh 2n1úrn 2n1úrr 2n1úrt 2n1ú2s1zá nús2z 2nútb 2núth 2nútj 2n1útk 2n1útn 2nútr 2n1úts 2nútt 2n1útv 1nü nü1bl 2n1ü2dí 2n1üdv nü1fr 2n1ügg nü1gr 2n1üg2y. nüg2y 2n1ügyb 2n1ügyc 2n1ü2gy2e. nü1gye 2n1ü2gye1i 2n1ü2gyek 2n1ü2gyes 2n1ü2gyet 2n1ü2gyé nü2gy1és 2n1ügyh 2n1ü2gyi 2n1ügyk 2n1ügyl 2n1ügyn 2n1ügyr 2n1üld nü1pr nü2rí nüst2 nü1str 2n1ü2tem nü1te nü2tés nü1té nü2ti nü2t2Å‘. nü1tÅ‘ nü2tÅ‘k nü2tÅ‘s nü2tü nü2vö nü2zé 2n1üzl 1nű nű2zé nű2zÅ‘ nva2su n1va nvágya2d n1vá nvág2y nvá1gya nvá2gy1a1da nvá2gy1ón nvá1gyó nvá2r1a2l nvá1ra n2v1át nven2ta n1ve nvé2d1a n1vé nvé2d1Å‘2r nvé1dÅ‘ n2v1ind n1vi nvona2l1út n1vo nvo1na nvona1lú n2v1os nv1sk 1n2wic2h. n1wi nwi2c2h nx1ar n1xa n2y 1nya 2ny1abl 2ny1abr nya2cél nya1cé 2ny1adag nya1da 2nyadás nya1dá 2nyad2ó. nya1dó 2ny1a2dóa2d nyadó1a 2nyadóa2k. 2ny1a2dóan 2nyadób 2ny1a2dó1i 2ny1a2dój 2nyadók 2ny1a2dóm 2nyadón 2ny1a2dór 2nyadót 2ny1a2dó1u 2nyadóv ny1a2dóz 2ny1af8f 2ny1aff nya2gar nya1ga 2nyagáh nya1gá 2nyagár 2nyagáv 2nyagc nya2gen nya1ge 2nya1gi 2nyagj 2nyagm 2nyagos nya1go 2nyag1ta 2nyaguk nya1gu 2nya1gú 2ny1a2ján nya1já 2ny1ajk 2ny1ajt 3nya2k. nya2k1a1la ny2akal nya1ka nya2ka1ra 2nyakc nya2kel nya1ke nya2k1é2k nya1ké ny2a2kiz nya1ki 2ny1ak2t. 2nyak1tá 2ny1aktb 2nyak1ti 2ny1aktj 2nyak1to 2ny1ak1tu 2ny1a2lag nya1la 2ny1a2la2k. 2ny1a2lakj 2ny1a2lakk 2ny1a2lakr 2n2y1a2lan2y nya2lapb nya2laph nya2la1po nya2lap1p nya2lap1s2 2ny1alás2z nya1lá 2ny1alb ny1alép nya1lé 2ny1alm ny1al1te 2ny1al1tú 2nyamal nya1ma 2ny1a2nal nya1na 2ny1ang 2ny1ant 2nyaot nya1o ny1a2pad nya1pa nya2pát nya1pá 2ny1app nya2rén nya1ré 2ny1ar1ma 2ny1arz nya1sp 2nyas2s2z 2nyaszt nyas2z 2ny1at1ká nya1t1rá 2ny1a2t2y 2ny1a2uk nya1u 2ny1a2vat nya1va 1nyá 2ny1ábr 2nyád1ná 2nyádt 2nyáék nyá1é 2ny1ág 2nyáld 2ny1ál1lí nyá2lom nyá1lo 2nyámék nyá1mé 2nyám1ná 2nyáp 2ny1á2rad nyá1ra 2ny1á2ra1i 2ny1á2rak 2ny1á2ram 2nyáras 2ny1á2rat nyá2ráb nyá1rá nyá2rán nyá2rát nyá2ráv 2nyárc 2nyá2r1e2 2nyárh 2ny1árj 2nyárk 2nyárp 3ny2ár2t. 2nyá2ru 2nyá2rú2 2nyárv 2ny1á2só nyá2szak nyás2z nyá1s1za nyá2szár nyá1s1zá 2ny1á2ta 2ny1á2tá 2ny1á2té 2ny1átf 2ny1átff 2ny1áth 2ny1átk 2ny1átm 2ny1átn 2ny1á2t1ö 2ny1átr 2ny1áts 2ny1átt 2ny1á2tü 2ny1átv ny1bl ny1br ny1cv 1nydr2e. nyd1re 1nye 2nyedén nye1dé 2nye1d1zé nyed2z 2ny1ef8f 2ny1eff 2ny1egyl nyeg2y 2ny1egys 2ny1e2k2e. nye1ke 2ny1e2ke1i 2ny1e2ké1é nye1ké 2ny1elb 2ny1elc 2ny1e2lef nye1le 2ny1e2l1eff 2nyelemz 2ny1elf 2ny1elff ny1el1ha 2ny1el1já ny1elk 2ny1el1lá ny1el1ma 2ny1el1nö 2ny1e2lÅ‘1í nye1lÅ‘ 2ny1e2lÅ‘1Å‘ 2ny1e2lÅ‘z 2ny1elr 2ny1el1sÅ‘ 2ny1el1tá 2ny1eltér nyel1té 2ny1el1to 2ny1elül nye1lü nyel2ve2s2z nyel1ve 2nyelvev 2ny1ember nyem1be 2nyembl 2nyembr 2nyemel nye1me 2ny1e2mit nye1mi2 2ny1eml 2nyenc 2nye1ne 2ny1eng nye1p 2ny1er1dÅ‘ 2ny1e2rej nye1re nye2rekl 2ny1erk 2n2y1er1n2y 2nyerÅ‘m nye1rÅ‘ 2ny1ese1mé nye1se ny1e2s1er 2ny1e2se1té 2ny1esél nye1sé 2nyestj 2ny1eszk nyes2z 2ny1e2tik nye1ti 2nye1ve nye2vez 2ny1e2vé 2nye1vo 2ny1e2vÅ‘ 2ny1ex 2nyezr 2ny1e2züs nye1zü 1nyé 2ny1ébr 2ny1é2hen nyé1he 2ny1é2hes 2ny1éhs ny1é2jek nyé1je 2ny1é2let nyé1le 2nyélm 2nyéne1ke nyé1ne 2ny1é2ne1ké 2ny1é2nekn 2ny1ép 2nyér2c. 2ny1ére2m. nyé2rem nyé1re nyé2r1e2s 2ny1é2rin nyé1ri 2ny1é2r2Å‘. nyé1rÅ‘ 2ny1é2rÅ‘1i 2ny1é2rÅ‘t 2ny1érték nyér1té nyé1rü2 2ny1ér2v. 2ny1ér1zé 2ny1é2tel nyé1te 2ny1ét1ke 2ny1étl 2ny1é2v. 2ny1évb 2ny1é2v2e. nyé1ve 2ny1é2ve1i 2ny1é2vek 2ny1é2vem 2ny1é2ven 2ny1é2ves 2ny1é2vet 2ny1évez 2ny1é2véb nyé1vé 2ny1é2vér 2ny1é2vét 2ny1é2vév 2ny1évf 2ny1évff 2ny1é2vi 2ny1évk 2ny1évm 2ny1évn 2ny1évr 2ny1évs 2ny1évt 2ny1é2vü 2ny1é2vű 2ny1évv ny1f8l ny1fl ny1f2r ny1gl ny1gr 1nyi 2ny1i2bo 2ny1i2deg nyi1de 2ny1i2dej 2ny1i2dÅ‘ nyié2b nyi1é 2ny1ifj2ú. nyif8j nyif1jú 2ny1ifjúb 2ny1ifjú1é 2ny1ifjú1i 2ny1ifjú1ké 2ny1ifjún 2ny1ifjúr 2ny1ifjús 2ny1ifjút 2ny1ifjúv 2ny1i2ga 2nyi1ha 2ny1ihl 2ny1ill 2ny1i1ma 2ny1i2má 2ny1imb 2ny1imp 2ny1i2nas nyi1na 2ny1inc 2ny1ind 2ny1inf 2ny1inff ny1in2g. 2ny1inj 2ny1ins 2ny1int 2ny1inv 2nyi2p ny1i1pa 2ny1i2rá 2ny1i2ri 2ny1i2rod nyi1ro 2ny1irt 2ny1is1ko 2ny1ism 2ny1isp 2ny1ist 2nyivad nyi1va 2ny1i2vás nyi1vá 2ny1i2vó 2ny1izn 2ny1izt 1nyí 2ny1íg 2ny1íj 3nyíl 2ny1ín 2ny1ív 2ny1íz 1nyjéb ny1jé 3ny2k. nyka2r1ó2ra ny1ka nyka1ró 1nyke2t. ny1ke 1nykk ny1kl 1nykn ny1k2r ny1k2v 1ny2m. 1nyme2t. ny1me 1nymt 1ny2n. 1nyo 2ny1ob 2ny1o2dú 2ny1of 2ny1off 2ny1ok1ke 2ny1okl 2ny1o2kos nyo1ko 2ny1o2koz 2ny1ok1ta 2ny1o2laj nyo1la nyolc1c 2ny1ol1da 2ny1ol1dá 2ny1ol1dó ny1ol1ló 2ny1oltár nyol1tá 2ny1oltás 2ny1olvas nyol1va 3nyo2m. 3nyoma2t. nyo1ma 3nyomatk 3nyomatom nyoma1to 3nyo1mo 3nyomt 2ny1op ny1orc ny1orm ny1ors ny1orv 2ny1os1ko 2ny1os1to 2ny1oszl nyos2z 2ny1oszt 2ny1ott 2ny1o2ve 2ny1ox 1nyó ny1ó2ni nyó2rác nyó1rá nyó2rán 2ny1ó2ri nyó2s1ü 1nyö 2ny1öb 2ny1öc 2ny1ö2l ny1önt 2ny1öv 1nyÅ‘ 2ny1Å‘rs ny1pl ny1pr ny1ps 3ny2s. ny1sc 3nysek ny1se ny1sh ny1sk ny1s2l 1nyson ny1so ny1sp nys2t 1nys2t. ny1s1ta ny1s1tá 1nyu 2nyud 2nyuj 2nyu1ká 2ny1uk1rá 3nyul ny1und 2ny1u2ni 2ny1u2no ny1u1rá 2nyut ny1u2ta ny1u2tá 1nyú 2ny1újd 2ny1ú2jé 2ny1ú2jí 2ny1újs 3nyúl nyú2lÅ‘ 2ny1ú2r. 2ny1úrb 2ny1úrh 2ny1ú2ri 2ny1úrk 2ny1úrn 2ny1ú2ro 2ny1úrr 2ny1ú2s2z 2ny1útb 2ny1ú1té 2ny1úth 2ny1ú1ti2 2ny1útj 2ny1útk ny1útl 2ny1útm 2ny1útn 2ny1útp 2ny1útr 2ny1útt 2ny1útv 1nyü 2ny1üd 2ny1ü2g 2ny1üld ny1ü1le 2ny1ünn 2ny1ür 2ny1üt 2ny1ü2ze 1nyű 2ny1ű2r. 2ny1űrb 2ny1ű1ré 2ny1űrh 2ny1ű2ri 2ny1űrj 2ny1űrl 2ny1űrn 2ny1ű2rö 2ny1űrr 2ny1űrt 2ny1ű2zé 2ny1ű2z2Å‘. nyű1zÅ‘ 2ny1ű2zÅ‘b 2ny1ű2zÅ‘en nyűzÅ‘1e2 2ny1ű2zÅ‘1é 2ny1ű2zÅ‘h 2ny1ű2zÅ‘k 2ny1ű2zÅ‘n 2ny1ű2zÅ‘r 2ny1ű2zÅ‘t 2ny1ű2zÅ‘v ny2vék ny1vé ny2v1isk ny1vi ny2vó ny2vös ny1vö ny2vÅ‘ ny2vú nyzé2ke ny1zé nza2c n1za n2z1a1cé nz1a1dá nz1a1do nz1a1dó nz1a2ga nz1agg n2z1aj1ta n2z1akc nz1ak1k2 nza1k2o n2z1akt nz1ald n2z1alk n2z1ang n2z1a2n2y n2z1ap1p2 nz1a1ra nz1a1rá n2z1arc nz1a1ri nz1aut nza1u nz1á2g2y n1zá nz1áll n2z1á2rad nzá1ra n2z1árn2y nzá2r1ó2ra n3zárór nzá1ró n2z1á2ru nzá2s1e2 nz1á1só nzás3s nz1á1t1a2 nz1d2r n2z1e2g n1ze n2z1elb n2ze2le1me nze1le n2z1e2lér nze1lé n2z1elf n2z1elff n2z1el1ha n2z1elis nze1li n2z1elk n2z1el1lá n2z1ellen nzel1le n2z1elm n2z1eln2y n2z1e1lo n2z1e2lÅ‘1á nze1lÅ‘ n2z1e2lÅ‘l n2z1e2lÅ‘t n2zelÅ‘z n2z1els n2z1el1ta n2z1el1tü n2z1elver nzel1ve n2z1el1vé n2z1el1vo n2z1ember nzem1be n2z1e2mel nze1me n2z1e2més nze1mé n2z1e1mi n2z1eml n2zener nze1ne n2z1e2rÅ‘ nzer2t1a2 nzer2v1a2d nzer1va nzervé2t nzer1vé nzer2v1é1te nzer2vi nze2su n2z1eszk nzes2z n2z1ez n2z1ég n1zé nzé2k1el nzé1ke n2z1é2l n2z1é2r. n2z1ér1d2 n2z1é2rem nzé1re n2z1érk n2z1érm n2z1ér1té n2z1érv n2z1érz n2z1étv nz1gr nzi2a n1zi n2z1i2ga n2z1i1gé n2z1ill nzi2m1a2 nzi2má nzi2mi nzi2n1á2 nzi2n1o nzi2n1ó2 n2z1i2p n2z1i1rá nz1ism n2z1ist2 nzi2tár nzi1tá nzi1te2 nzi2t1el nzi2ten nzi2t1í2v2e. nzi1tí nzití1ve n2z1íb n1zí nz1íg nz1ín nz1kl nz1kr n2z1okl n1zo nzo2lin nzo1li nzo2ló nzo2n1a nzo2né nzo2rin nzo1ri n2z1os2z nzókés2z1 n1zó nz2ókés nzó1ké n2z1ön n1zö nzö2r nz1ö1rö n2z1ös n2z1ö2v n2z1öz nz1pl nz1pr nz3saj nz2s n1z1sa n2z3sár n1z1sá n2z3sát n2zsáv nz3seg n1z1se n2z3ser nz3sik n1z1si n2z3sis n2z3sod n1z1so n2z3sor n2z3só nz3s2p nz3s2t nz3s2z nztá2r1a2d nz1tá nztá1ra nz1t2r n2z1uj n1zu nzu2l1a nzu2mé nz1u2ra nzu2sa2n nzu1sa nzus3s2 n2z1u2t nz1új n1zú nz1ú2t n2z1üd n1zü n2z1ü2g nz1üs nz1üv n2z1ü2z nz3z2s 2o. o1a oa2cé oa1fr o2a1ki o2a1k2v oa1la3 o2a1mi oa2na1li oa1na o2a1si o2a1s1zó oas2z o1á oá2ga oá2r1a2n oá1ra oá2ril oá1ri oá2rí oá2r1ol oá1ro oá2z2s oba1b2 o1ba oba1d2 o2b1alj obal2t1a2 oba1p ob1a2ra oba1u2 obás3s o1bá ob1átm ob2b2e. ob1be ob2b1e2g ob2bes ob2bö o2b1eg o1be ob1e1le o2b1e2m o2b1e2rÅ‘ o2b1ez o2b1é2g o1bé o2b1érz obi2k1ó2 o1bi obi2lin obi1li obi2lip obi1na2 ob1in2a. obi2n1al o2b1ing o2b1i2s ob1ív o1bí 1objek ob1je ob1kl ob2l2e. ob1le 1o2bo1a o1bo o2b1oll obo2r1a obo2rin obo1ri obo2r1os obo1ro obo2t1á2 obo2tin obo1ti obókés2z1 o1bó ob2ókés obó1ké o2b1ó2né o2b1ó2rá ob1öt o1bö ob1pr 1obst o2b1ut o1bu o2b1ú2s o1bú ob1üg o1bü ob1ür ob1üt ob1űr o1bű oca2ké o1ca o2c1ág o1cá o2c1ál oc1er o1ce oc1é2k o1cé o2c3h2i. oc2h o1c1hi oc3hok o1c1ho oc3hot oci3a o1ci oci1e2 oci1k2r oci1ó2 oci1p oci1s2z2 o1c2kef oc1ke o1c2k1eff oc2k1é2l oc1ké ocké2n ock1é1ne o1c2kér o1c2két o1c2k2i. oc1ki oc2ki1a o1c2kig o1c2kin o1c2kit o1c2kiv oc2kop oc1ko o1c2kosn o1c2ko1so o1c2kosr o1c2koss oc1pr o2c3sap oc2s o1c1sa o2cs1ál o1c1sá ocsá2s o2cs1ás2z o2cs1á2z o2c1s1e2 oc3sér o1c1sé ocsié2ra o1c1si ocsi1é o2cs1ing ocs1izm o2c1sí2 oc3sín o2csop o1c1so ocs1s ocs1t o2csuj o1c1su o2c1s1ü2 oc3s1za ocs2z oc1s3zá oc3s1ze oc3z2s oc2z o2daa2d o1da oda1a oda1b2 o2d1adj oda1dr o2d1akk o2d1alj oda1p2 odas2 o2d1ass od1aszt2 odas2z odat2 oda1tr od1a2u1tó oda1u odáb2 o1dá od1ál1lá o2dá1ru odáskés2z1 odás1ké odás3s odá2s3z 1o2dáz o2d2e. o1de od1e2d ode2l odel2l1a ode2min ode1mi o2de2s3z od1e2v o2d1é2g o1dé od1é2ne o2d1ép o2d1ér1d2 o2d1é2te o2d1é2ve od1é2vé 2odéz od1i1de o1di o2d1i1ga o2d1ik1re odi2l1e odi2lid odi1li odi2lik odi2l1is o2d1int o2d1i1ro od1isp od1í2z o1dí od1kl od1o1bo o1do o2d1okt o2d1op odo2rak odo1ra odo2ros2z odo1ro od1ö2l o1dö od1ö2r od1Å‘2r o1dÅ‘ od1pr o1d2ram od1ra o1d2rá1ma od1rá odu2l1a2l o1du odu1la o2d1u2r 1odún o1dú od1üg o1dü od1ün od1üz 1odváb od1vá o1d2y. od1ye o1d3ze od2z o1d3zo o1e oe2ir oe1i oe2le oe2mu oe2ne oer1s2 oe1t2he oe2ur oe1u oe2uv o1é o2é1fa o2é1fá o2é1fo o2é1ke o2é1ki oé1na2 oé2n1al oé2n1an oé2n1ar oé1ná2 oé2n1ár oé2nis oé1ni o2és2z o2é1vi ofi2lad of8i ofi1la oï¬2lad oï¬ oï¬1la ofi2lak oï¬2lak ofi2l1á oï¬2l1á ofi2lel ofi1le oï¬2lel oï¬1le ofi2lér ofi1lé oï¬2lér oï¬1lé ofi1li2 oï¬1li2 ofi2l1i1ga oï¬2l1i1ga ofi2l1i1gá oï¬2l1i1gá ofi2lis oï¬2lis ofi2l1os2z ofi1lo oï¬2l1os2z oï¬1lo ofi2tal ofi1ta oï¬2tal oï¬1ta ofi2t1e2 oï¬2t1e2 of2la of8l ofla ofl of2ló ofló ofo1na2 o1fo ofo2n1al ofo2na2n ofo2n1á ofo2n1é2r. ofo1né ofon3n ofo2n1ó2 ofor2m1á2 ofÅ‘2r1e o1fÅ‘ ofÅ‘1rü2 of2rí of2tá o2g1abr o1ga o2g1a2g oga2kar oga1ka o2g1a1ká o2g1a2la o2g1a2lá o2g1alj og1all og1alt og1a1lu o2g1a2n2y o2g1ap og1arc o2g1a2s2z og2a2t1a2g oga1ta oga2t1e2 og2a2t1i2n oga1ti og1a2t2y o2g1á2g o1gá og1áll og1álm o2g1áp o2g1á2rak ogá1ra o2g1á2re2 o2g1ár1ja o2g1árját ogár1já o2g1á2rok ogá1ro ogá2ros o2g1á2ru ogáskés2z1 ogás1ké o2gá2só o2g1á1ta o2g1á1te o2g1átj o2g1átk o2g1átl o2g1átn o2g1á2to o2g1átr o2g1áts o2g1átt o2g1á2tü2 o2g1átv og1bl ogdí2j1a2d og1dí ogdí1ja og1dr o2g1e2d o1ge o2g1e2g oge2gés2z1 o2g1e2gé og1e2l o2g1em o2g1e2p oge2r og1e1re og1ern og1e2rÅ‘ oge2s o2g1e1se o2g1e2v o2g1ez o2g1é2g o1gé o2g1é2l og2én1n o2g1é2p o2g1é2r. o2g1ér1te o2g1ér1té o2g1ér1tÅ‘ o2g1érv o2g1és og1f8l og1fl og1fr og1g2l og1icc o1gi o2g1i2d o2g1if o2g1iff ogi2g o2g1i1ga o2g1i2gé o2g1ill o2g1inf o2g1inff o2g1ing o2g1ins o2g1int o2g1ip o2g1i2ro og1i1ta o2g1íj o1gí og1ín og1ír og1ív og1kl og1kr o1g2lic og1li o1g2na1i og1na og2n2e. og1ne o2g1odv o1go og1org og1orr o2g1orz ogos3s2 o2g1oszl ogos2z o2g1oszt o2g1o2v og1ö2b o1gö og1ö2l og1ö2r og1ös og1Å‘2r o1gÅ‘ og1pl og1pr og2rad og1ra 2ograf 2o1graff o1g2raf8i o1g2raï¬ 2o1gráf8f og2ráf og1rá 2o1gráff 2o3gráf8i 2o3grÃ¡ï¬ 2o1grá1fo og2rál og1sk og1sp og1s2t og1tr og1u2ra o1gu og1u2ru o2g1u2s o2g1u2t o2g1új o1gú og1ü2g o1gü og1ül og1ür og1üt og1üz og1űz o1gű ogy1a2c og2y o1gya ogy1a2p ogy1i2s. o1gyi ogy1os o1gyo ogyó1é2 o1gyó oha2mal o1ha oha1ma oha2me2l oha1me oha2mes oha2mis oha1mi ohas2 oha1s1p o2h1ág o1há o2h1ál ohá2nyad ohán2y ohá1nya ohá2nya2n ohá2r1e ohá2s1zi ohás2z ohá2sz1odv ohá1s1zo o2h1á2z oh1e2c o1he o2h1ing o1hi oh2ni o2h1orr o1ho oh2ó2c1si o1hó ohóc2s o2h1ó1rá oh1ö2v o1hö o2h1u1rá o1hu o1i oi2a1e oi1a oi2af oi2aff oi2an oi2av oi2á1ba oi1á o2i1bo oi1da1 oi2d1ad oi2dan oi2dál oi1dá oi2d1e2 oi2dol oi1do oi2d3z oilet2 oi1le oi1na2 oi2n1ad o2i2n2e. oi1ne oinet2 oi2re oisel2 oi1se oi1si2 oi2zo o1í ojá2r1as o1já ojá1ra ojás3s ojás3z ojek2t1á2 o1je ojek2t1í2 ojek2t1o2 o2j1in o1ji oj2t1á1ra oj1tá oj2t1orják oj1to ojtor3já ojtó1á2 oj1tó ok1abl o1ka ok1a2cé o2k1a2dat oka1da o2k1a2dá o2k1a2dó o2k1a2kar oka1ka ok1akv o2k1alj o2k1alk ok1alm ok1alt o2k1ang ok1a1ni ok1ant oka1p2l o2k1app o2k1a2ra ok1arc oka2ris oka1ri o2k1as1p o2k1ass ok1aszf okas2z ok1aszff ok1aszt o2k1att o2k1at2y oka2u ok1aut o2k1a1va o2k1ág o1ká ok1ájt o2k1á2rad oká1ra o2k1á2rak oká2rul oká1ru o2k1árv oká2sal oká1sa ok1á2só okás3s ok1ás2z o2k1á2t1e2 ok1bl ok1br ok1dr o2k2e. o1ke ok1e2b o2k1e2c oke2d ok1e1dé o2k1e2g o2k1e2l o2k1e2m ok1e1ré ok1er1k2 o2k1er2n1e2l. oker1ne ok1e2rÅ‘ o2ke2s ok1e1sé o2k1e2v ok1e2z o2k1ég o1ké ok1é2ke o1k1é2ké o2k1é2l. o2k1é2les oké1le ok1é2let ok1é2lé ok1éln ok1élt o2k1é2ne oké2p oké3p1á ok1é2pí o2k1é1pü o2k1é2r. o2k1érb o2k1érc o2k1érd o2k1érg o2k1érh o2k1é2ri o2k1érm o2k1érr ok1ér1tá o2k1ér1te o2k1ér1té ok1ér1tö o2k1érz oké1s2 okés2z2 o2k1étk o2k1étt o2k1é2ve ok1f8l ok1fl ok1fr ok1gr o2k1i2de o1ki o2k1i2do o2k1i2ga okigaz1 o2k1i1gá o2k1i1gé o2k1ind o2k1int o2k1i2rá o2k1i2ro o2k1isk o2k1ism o2k1isp2 ok1is1te okist2 o2k1i2ta o2k1izm ok1íj o1kí ok1ír ok1ív ok1íz ok2kab ok1ka ok2k1a2d ok2k1aj ok2k1a1le okk1alk ok2k1as ok2kaz okk1elh ok1ke okk1e1lö okk1e1lÅ‘ okk1elr 1okke1ré ok2k1es ok2ké1pü ok1ké ok2kid ok1ki ok1k1ló ok2kob ok1ko okk1öss ok1kö okk1ö2vű ok1k1ri ok2kud ok1ku ok2k1ur o1k2lí ok2lor ok1lo 2ok1ly2n. okl2y o2k1ob o1ko oko1la2 oko2lár oko1lá o2k1oltás okol1tá okon1n oko2n1ok1s oko1no oko2ra oko2r1á oko2ril oko1ri oko2ris o2k1or1mú ok1o2ro o2k1os2z o2k1o2v o2k1öb o1kö o2k1ö2d ok1ö2k o2k1öl o2k1ön okö2r o2k1ös o2k1ö2v ok1ö2z ok1Å‘2r o1kÅ‘ ok1pl ok1pr o1k2ris ok1ri o1k2róm ok1ró ok2sel ok1se ok1sp oksz1alm oks2z ok1s1za ok2szan ok2sz1es ok1s1ze ok2sz1is ok1s1zi 1oktán ok1tá o2kud o1ku ok1udv o2k1ug o2k1uj ok1u2ra o2k1u2t ok1ú2r. o1kú ok1úrb ok1úrh ok1úrr ok1ús2z o2k1útb o2k1úth o2k1ú2ti o2k1útj o2k1útk o2k1útn o2k1útr o2k1útt o2k1ú2tu o2kútv ok1üg o1kü ok1ü2l ok1ün ok1ür ok1ü2t ok1ü2v ok1üz ok1űz o1kű o3l2a. o1la ol1abl ola1d2 ola1f2 o2la1ff 1o2la2j. 1o2lajb 1o2lajf 1o2lajff 1o2lajg 1o2lajh 1o2la1ji2 1o2lajj 1o2lajk 1o2lajm 1o2lajn 1o2lajp 1o2lajr 1o2l2ajs o2lajt o2la1ju 1o2la1jú o2lajv ola1k2r o2l1alg ol1alk ol1amn ol1a1nya olan2y ola1p2 ola1s2p ola1s2t o1la2t1a1la ola1ta olat1an2y ol2atan ol2a2tál ola1tá ola2táp ola2ték ola1té ola2t1inf ol2atin ola1ti ola2t1inff ola2t1í2v ola1tí ola2t1ol ola1to ola2t1orn ol2ator ola2t1ö2l ola1tö ol2a2tüz ola1tü olau2r ola1u o2l1áb1rá o1lá o2l1á2g olá2ha ol1áll o2l1árb o2l1árh o2l1á2ri1a olá1ri olá2ri1á o2l1árk o2l1árn olá2rok olá1ro olá2ron o2l1árr o2l1árt2 o2l1á2ru olá2s1za olás2z o2l1á2ti o2l1átv ol1by ol2caj ol1ca ol2cal ol2c1a2n ol2c1e2k ol1ce ol2cel ol2ces ol2c1év ol1cé ol2c3h olc1i1ko ol1ci ol2cí ol2có ol2cö ol2c3sor olc2s ol1c1so ol2c1sű olc3s2z ol2cü ol2c2z ol2dab ol1da 1olda2l. 1olda1lá 1oldalb olda2le 1oldalh 1oldalk 1oldal3l 1oldaln 1olda1lo 1oldalr 1oldalt2 1olda1lu 1olda1lú ol2d1an2y ol2dap olda2tel olda1te ol2d1a1u ol2dál ol1dá ol2deg ol1de ol2d1e1lé ol2d1ell ol2d1elv old1emb ol2d1e2r ol2d1e2s ol2dev ol2dez ol2dés ol1dé ol2d1é1ve ol2di2p ol1di ol2d1is ol2dor ol1do 1oldós ol1dó ol2d1ö2 ol2dud ol1du ol2d1u2g ol2d1ü ol2dű o2l2e. o1le ol1e2g o2l1e2l ole2n o2l1é2d o1lé o2l1é2g o2l1él ol1é2r. ol1érd ol1é2re ol1é1ré ol1érh ol1é2ri ol1érj ol1érl ol1érn ol1é1rÅ‘ ol1érs o2l1ér1té ol1é2rü ol1érv o2l1érz olfa2k ol1fa ol2fa1u ol2f1ár ol1fá ol2fes ol1fe ol2fe2t olf1ing olf8i olï¬ng olï¬ ol2fir ol2ï¬r ol2fis ol2ï¬s ol1fu2 ol2f1ut ol2fúj ol1fú ol1gl ol1g2r 2olib o1li o2l1i2du 1o2li1ga oli2gáz oli1gá o2l1i1gé olig2r oli1g1ra o2l1ill o2l1i2m2a. oli1ma o2l1i2má 1olim1p2 o2l1ind oli2nu o2l1i2pa oli1pe2 oli2p1et o2l1isk oli2szál olis2z oli1s1zá o2l1í2v. o1lí oll1a2g2y ol1la ol2l1aj olla2l ol2l1a1la ol2l1alj ollan2d1ó2 ol2l1an2y ol2l1at1k2 oll1att ol2l1á2g ol1lá ol2l1e2c ol1le oll1e1ge oll1e1gé ol2l1e2g2y ol2l1e2h olle2l ol1l1e1le ol2l1emb oll1e1se ol2l1é2k ol1lé ol2l1é1ri ol2l1inf ol1li ol2l1inff oll1in1ge oll1in1gé oll1in1gi oll1ingj oll1ingn oll1ingr oll1inj ol2lins ol2l1int oll1isk ol2lob ol1lo ol2lor ol2l1os2z ol2l1ö ol2l1Å‘2 ol2lub ol1lu ol2lul ol2l1u2s ol2lü ol3lyu ol2l2y oln1i1ke ol1ni o2l1o2l o1lo o2l1op ol1ott o2l1ox oló1e3dénn o1ló oló1e olóe2dé oló1f2 oló1ff o2l1ó1né o2l1ónn o2l1ó2no o2l1ónr o2l1ónt o2ló2rá1i oló1rá o2ló2ráj oló2rák oló2rán o2ló2rár o2ló2rát ol1ó2ri olót2 oló1tr ol1ö2l o1lö ol1ör ol1ös ol1p2l ol1p2r ol1sk ol2t1aj ol1ta 1oltalm 1olta1lo ol2t1a1ri ol2t1ág ol1tá ol2t1á1ta ol2t1eg ol1te ol2t1em olte2r ol2t1e1re olte2s ol2t1e2v ol2t1ép ol1té ol2t1é2r. ol2t1érr ol2t1és ol2tid ol1ti ol2tim ol2tis ol2tiz ol2t1old ol1to 1oltó1é ol1tó 1oltóh 1oltó1ké 1oltó1lo 1oltóm 1oltón oltö2r ol1tö ol2t1Å‘r ol1tÅ‘ ol2tür ol1tü o2l1ug o1lu o2l1ur o2l1u2tá ol1ús o1lú ol1üg o1lü ol1ül ol1üv ol1üz 1olvad ol1va 1olvas o2lyabr ol2y o1lya oly1a1da oly1ag2g2y olya1me2 olya2mes oly1aszt olyas2z o2lyál o1lyá o2ly1e2 1o2lyéb o1lyé 1o2lyéh 1o2lyé1i o2lyé2l 1o2lyé2n. 1o2lyiér o1lyi olyi1é o2lyim o1lynag oly1na 2o1lyó o2ly1ö o2lyÅ‘ o1ly1si o2lyug o1lyu o2ly1ü2 o2ly1ű2 o2m1abl o1ma om1a2dat oma1da o2m1adm o2m1a2dó o2m1adt oma1f oma1ff oma1ga2 oma2g1ad om2a2ga2l oma2g1á2 oma2ge oma1gi2 oma2g1in o2m1a2gya omag2y om1a1gyú o2m1a1já o2m1ajk oma1kh om2a1k1ré o2m1akt o2m1a2lag oma1la oma2la1po oma2lapr o2m1alm om1alt o2m1alv o2m1amb om1ang o2m1ann om1apad oma1pa o2m1app oma1pr o2m1a2ra o2m1arc o2m1arg o2m1arz oma1st oma2t1árak om2atár oma1tá omatá1ra o2m1at1ká o2m1at2y o2m1a1u om1a2zo omá2c2s o1má omá2g om1á1gi o2m1á1go omá2nya2n omán2y omá1nya omány1ká2 o2m1áp o2m1á2ra1i omá1ra om1á2rak o2m1á2ram om1á2ras o2m1á2rá o2m1árd o2m1á2re2 omá2r2é. omá1ré omá2rét o2m1árg omá2ri1a omá1ri omá2ri1á o2m1árm o2m1á2ru omá2sí omás3s omá2s2z omá1s3zó o2m1á2t1e2 o2m1á2t1é o2m1átk o2m1átm om1á2t1ol omá1to o2m1átr om2b1a2lo om1ba om2bág om1bá om2b1eg om1be omb1elh om2b1elt omb1é1ne om1bé om2b1é1ri omb1ó2n. om1bó ombó2r omb1ó1ra om1b1ro om2buj om1bu omdi1o2 om1di om1dr o2m1e2b o1me o2m1e2ce o2m1e2dé om1ef o2m1eff o2m1e2g ome2l o2m1e1la om1e1lá o2m1elb o2m1e1le o2m1e1lé o2m1elk om1el1lá o2m1elm o2m1eln o2m1e1lo o2m1e1lÅ‘ o2m1els om1el1te o2m1e1lu o2m1elv o2m1e2m om1e1ne om1eng om1en2y om1enz o2mep om1erd o2m1e2red ome1re o2m1e2re1i o2m1er1n2y om1e2ro ome2rÅ‘ o2m1er2Å‘. o2m1erÅ‘b o2m1erÅ‘h o2m1erÅ‘n o2m1erÅ‘r o2m1erÅ‘1sí omer1Å‘ss o2m1erÅ‘t o2m1erÅ‘v om1e2rű ome2s om1e1se om1e1sé om1ess om1est o2m1e2ti o2m1etn o2m1e1tű o2m1e2v o2m1ex ome2z o2m1e1ze o2m1ezred omez1re o2m1é1be o1mé om1é2de o2m1ég o2m1é2he o2méhs om1é1je o2m1é2ke o2m1é2le om1é1lé om1é2lÅ‘ o2m1ép o2m1é2r. o2m1érb o2m1érc o2m1é2re o2m1é2ré omé2r2i. omé1ri o2m1érm o2m1é2rÅ‘ o2m1érr o2m1ér1te o2m1ér1té o2m1érv o2m1é2s omé2tel omé1te o2m1étt o2m1é1ve om1é1vé om1f8l om1fl om1gl om1gr om1i1de o1mi omi1d1i2 o2m1i2dÅ‘ omi2g o2m1i1ga o2m1i1gé omikro1s omik1ro omikros2z2 o2m1iks o2m1ill om1i1má omi1me2 omi2mel omi2m1é om1i2n2a. omi1na omi2náb omi1ná omi2náv o2m1ind om1inf om1inff om1inv o2m1i2o1no omi1o o2m1i2p o2m1i1rá o2m1i2ri o2m1i1ro o2m1irt o2m1isk o2m1ism o2m1is1te omi2s1z1á omis2z om1i2tal omi1ta omi2ta2n omi2t1ás omi1tá omi2t1e omi2ti2s omi1ti om1i1zé om1i1zo om1izz om1íj o1mí o2m1ír om1í2v om1í2z om1jó2 om2jÅ‘ omká2ro2k. om1ká omká1ro om1kl om1kr omlá2b1út om1lá omlá1bú omo2dor o1mo omo1do omo2kas omo1ka 2omol2y o2m1ont o2m1o1pe omo2ras omo1ra omo2re omo2riz omo1ri o2m1or3já o2m1os1to omosz2f omos2z omosz2ff o2m1oszt o2m1ox om1ök o1mö om1ö2l om1ön om1ö2r om1ös om1ö2t om1öv om1ö2z om1Å‘2r o1mÅ‘ om1Å‘2s om2pel om1pe om1p1la om2p1ors om1po om2pÅ‘ om2p1u2tá om1pu om1sl om1sp om1s2t2 om2t2e. om1te omtes2s om1t2r o2m1ud o1mu o2m1ug o2m1uj omu2n o2m1u1no o2m1ur o2m1u2t o2m1u2z o2m1új o1mú om1üd o1mü om1üg om1ü2l om1ür om1üs om1üt om1üv om1üz om1űr o1mű om1űz om1ya o2n1abl o1na ona2cél ona1cé ona2dat ona1da ona1dr on1ads ona1e2 on1agg on1a1gi on1a1gó on1agyh onag2y on1ajn o2n1ajt 2onak o2n1akc o2n1akk on1akn o2n1akt on2a2len ona1le on2a2l1e2s ona2lint ona1li o2n1al2j. o2n1al1ju ona2lok ona1lo ona2los 1ona1ni o2n1a2no o2n1ant on1app2 ona1pr ona1ps on2a2rác ona1rá onará1di2 ona1s2p on2a2tál ona1tá ona1tü2 on2a2tüz o2n1ábr o1ná 2onác o2n1ág o2n1ál1lo o2n1állv o2n1á2p on1á2rad oná1ra o2n1á2rak on1á2rat on1árb o2n1árk o2n1árn o2n1á2ro o2n1árt2 o2n1á2ru o2n1á2rú on1árv o2n1á2s1za onás2z o2n1á2szokr oná1s1zo o2n1á2t1ál oná1tá oná2tás o2n1átc o2n1á2t1e2 oná2t1ér oná1té o2n1átf o2n1átff o2n1át1he o2n1átm o2n1át1re on1bl on1br on2cal on1ca on2c1ál on1cá on2c1e2g on1ce once2s on2c1ez on2c1ék on1cé on2c1é2r. on2c1é1ré on2c1he onc2h on2cid on1ci on2c1ikr onc1ill on2cös on1cö on2c3ság onc2s on1c1sá on2cseg on1c1se oncs1emb on2cs1ég on1c1sé on2cs1é2r. onc3sikk on1c1si on2cs1im on2cú on2cü on2d2e. on1de ond1i1ko on1di on2d1o2kos on1do ondo1ko ond1ok1sá on2d1os2z 2ondoz on2d1öl on1dö on1dy on1e2b o1ne o2n1e2d on1e2ge on1egg o2n1e2g2y o2neh one2l o2n1e1la o2n1e1le on1e1l1é o2n1elh on1elj o2n1elm o2n1eln o2n1e1lo on1e1lÅ‘ o2n1elr on1els on1elt o2n1elv o2n1e2m one2n o1n1e1ne on1erj on1er1k2 on1er1s one2s o2ne2s. o2n1e1se ones2s o2n1est on1e2vé on1e2vo o2n1ex 2onéb o1né oné2d on1é1de o2n1é2g o2n1é2he on1é2ke on1éks o2n1é2l on1é2ne o2n1é2p o2n1ér1be o2n1érc o2n1é1ri o2n1érl o2n1érm o2n1érp o2n1érs o2n1ér1te o2n1érv o2n1é2v. o2né2vad oné1va2 o2n1évb o2n1é2ve on1é2vi o2n1évk o2n1évn on1évr on2g1áll on1gá ongás1s on2g2e. on1ge on2g1e2c on2ged on2g1eg on2g1e2l on2gik on1gi on1g2ló on2gü on2gyad ong2y on1gya on2gyÅ‘ onhá1ro2 on1há onhárom1 o2n1i2d o1ni oni2g o2n1i1ga o2n1i1ge o2n1i1gé o2n1ij on1i2ke o2n1ill o2n1inb o2n1ind o2n1inf o2n1inff o2n1ing 2o2n1inj o2n1inn o2n1inr o2n1ins o2n1int o2n1i2p o2n1i2rá o2n1i1ro o2n1irt o2n1isk o2n1ism on1is1te oni1ta2 o2n1i2zé on1i1zo o2n1izz on1íg o1ní o2n1ín o2n1ív on1íz onk1áll on1ká onká2ro2k. onká1ro onké2t1 on1ké on2n2e. on1ne on3nyá2r on2n2y on1nyá on3nye on3nyo on3nyú on3nyü o2n1ob o1no ono1ka2 o2n1o2kal on1o2kos ono1ko o2n1ok1ta o2n1old on1oll on1opt o2n1oszl onos2z ono1sztr o2n1o2v o2n1ox o2n1ó1ri o1nó onó2sak onó1sa onó2si on2ó2szen onó1s2z2 onó1s1ze on1öb o1nö on1öl on1ön on1ör on1ös on1ö2t on1ö2v on1ö2z on1Å‘2s o1nÅ‘ on1pl on1pr on1ps 2on2s. onsa2v1a2m on1sa onsa1va on2s2e. on1se on1s2k on1sl on1s2m on1s1pe on1s1po on1spr on1sr on1s1to ons2z2 on1szf on1szff on1szt ont1ag2y on1ta on2t1aj on2t1alk on2t1a1ra on2t1atr on2taz on2t1áll on1tá ont1árv on2t2e. on1te on2teb on2t1ed on2t1e2g ont1e1lá ont1eld ont1elh ont1ell ont1elm on2teln on2t1e1lÅ‘ ont1elt ont1elv ont1emb onte2s on2t1e1se ont1é2ké on1té on2tél on2ti1gé on1ti on2t1i2ko ont1ikr on2t1i2m on2t1inf on2t1inff ont1in2g. on2t1int onti2s2z ont1i1s1zo on2t1iz on2t1í2v on1tí on2t1oml on1to on2t1ors2 ont1ó1ni on1tó 1ontóst on2t1ös on1tö on2t1öz on2tül on1tü on2tür on2t1üz on2tye ont2y o2n1ud o1nu o2n1ug o2n1uj onu2n o2n1u1na o2n1u2r o2n1u2t o2n1új o1nú o2n1ú2s onú2t o2n1útb on1ú1té o2n1úth on1ú1ti o2n1útj on1ú1to o2n1útr o2n1útt on1ü2c o1nü o2n1ü2g on1ü2l o2n1ün o2n1ür o2n1ü2t on1ü2v o2n1ü2z on1űr o1nű on1űz o2ny1a1cé on2y o1nya ony1a2dó o2ny1akc ony1alj o2ny1alk ony1alt o1ny1a1nya onyan2y onya1p2 o2ny1a1pó o2ny1ál o1nyá o2ny1árk o2ny1árn ony1á1zó ony1e2c o1nye ony1e2g o2ny1e2l o2ny1e2m o2nyen o2ny1e2r ony1e2s o2ny1ég o1nyé o2ny1é2j o2ny1é2k o2ny1él o2ny1é2ne o2ny1é2r. o2nyé1ré onygóc1 ony1gó o2nyi1gé o1nyi ony1i1ko ony1ing o2nyi1ta o2nyitók onyi1tó o2ny1í2r o1nyí ony1old o1nyo ony1oml o2ny1o2r o2nyos2z ony1ó2r o1nyó o2ny1ö o2ny1Å‘2 o2nyug o1nyu o2ny1ur o2ny1ü2 onz1abl on1za on2zag onz1aj1tó on2zar on2zág on1zá on2z1á2l on2z1ed on1ze on2z1e2l on2z1e2m on2z1es on2z1ék on1zé on2z1é1re on2z1im on1zi onz1ing onz3sel onz2s on1z1se on2zü o1o oo2ib oo1i oo2in o2o2k. oo2le oo2re oo2xi o1ó o1ö o1Å‘ o2p1a2b o1pa o2p1a2d o2pal op1a2la o2p1an2y op1a2po op1a2r opa2u o2p1a2z o2pál o1pá o2p1ám o2p1á2rat opá1ra opáskés2z1 opás1ké o2p1áth o2p1átl o2p1átm op1bl o2p2e. o1pe op1e2dé o2p1e2g op1ejt op1e1lÅ‘ o2p1em opera1s ope1ra operas2z2 op1erd op1er1k2 op1e1rÅ‘ o2p1es ope2t op1e1te o2p1é2l o1pé o2p1é2n op1g2r op2hó op1i2ko o1pi op1ikr o2p1im o2p1ind o2p1ing o2p1i2p o2piram opi1ra o2p1i2rá op1i1si op1ist o2p1i2ta opi2z op1i1zo op1izz op1ív o1pí op1kl op1kr o1p2lan op1la o2p1ob o1po 2opol o2p1orj o2p1orr opor2t1a2 opor2t1á2 opor2t1e2 opor2t1érd opor1té opor2tö o2p1or1zó oposz2f opos2z oposz2ff o2p1ov op1ös o1pö op2pé op2p1is op1pi op1py 2op1ro op2roc op2rod op2rot op1sl op1sp op1sr o2p1ud o1pu o2p1u2r o2p1u2t op1új o1pú o2p1ús op1üd o1pü op1üg op1üt op1üz o2r1abl o1ra o2r1abr ora2dat ora1da o2r1a2dá o2r1adm o2r1a2dó or1af8f or1aff or1agg or1a2gó ora2kad ora1ka ora2kas o2r1akc ora1kl ora2kol ora1ko o2r1akt or1alg o2r1alj o2r1alk o2r1alm o2r1alt o2r1alv or1amp o2r1a1na o2r1a1ne o2r1ank o2r1a2no o2r1ant or1a2nya oran2y ora1ó2 o2r1app o2r1a2rá o2r1arc or1a2ri or1aszk oras2z o2r1atk o2r1atl or1att o2r1at2y o2r1a2zo o2r1ábr o1rá orá2c2s or1ác2s. or1á1c1sa or1á1c1so o2r1á2g orá2le or1ál1ló o2r1állv orá2lö o2r1á2p o2r1á2r. o2r1á2rak orá1ra o2r1á1rá o2r1árb o2r1árk o2r1á2ro o2r1árp o2r1árr o2r1árt o2r1á2ru o2r1á1rú o2r1árv o2r1ásv orá2s1ze orás2z o2r1á1ta o2r1á2t1e2 o2r1átf o2r1átff o2r1áth o2r1átj o2r1átk o2r1átm o2r1átr o2r1áts o2r1átt o2r1átv or1bl or1br or2c1a2l or1ca or2car 1orcád or1cá or2c1há orc2h or2c3hé or2c3ho or2c3ság orc2s or1c1sá or2c3seb or1c1se or2c3sé or2cú or2d1a1u or1da ord1e1me or1de ord1e2sÅ‘ or2dex or2d1ing or1di 2ore1a o1re o3re1á o2r1e2b or1ec2s o2r1e2d o2r1ef o2r1eff or1e2ge or1e2gé o2r1e2g2y 2ore2k or1e1ke or1e1ké ore2l or1e1la or1e1le or1elh or1elj or1elm or1eln or1e1lo or1e1lÅ‘ or1elr or1els or1elt or1elv o2r1e2m ore2n or1e1ne or1eng or1en2y o2r1ep or1e1ró ore2s or1e1se or1e1sé or1e1sÅ‘ o2r1ess o2r1e1s1ze ores2z o2r1e2v or1ez o2r1é2d o1ré o2r1é2g o2r1é2j oré2kás oré1ká oré2k1e2 or1ék1né o2r1é2l o2r1é2m o2r1é2ne o2r1ép o2r1é1ré o2r1é2te o2r1étk o2r1é2v. o2r1é2ve o2r1é2vé o2r1é2vi o2r1évn o2r1évr orfé2l1é2v or1fé orfé1lé orfi2úér orf8i orfi1ú orfiú1é orï¬2úér orï¬ orï¬1ú orï¬Ãº1é 2or1ge or2g2e. or2ges or2get or1g2h 2orgia1i or1gi orgi1a or1gl o2r1i1bo o1ri o2r1i2de o2r1i2dé ori1di2 ori2d1i1o 1o2ri1e o2r1if8j o2r1i2ga o2r1i2gá o2r1i2g2y or1i1ha o2r1i2m2a. ori1ma o2r1i2má o2r1i2n2a. ori1na o2rinas o2r1i2nán ori1ná o2r1i2nát or1i2náv o2r1ind o2r1inf o2r1inff o2r1in2g. o2r1ingc o2r1in1gé o2r1in1gi o2r1ingn o2r1ingr o2r1ings or1inh o2r1inj o2r1ins orin2t1a2 orin2tel orin1te orin2t1in orin1ti orin2t1Å‘ ori2o1g ori1o o2r1i2p o2r1i2si o2r1ism or1isp o2r1is1te o2r1i2s1zá oris2z ori2tan ori1ta o2r1i2zé o2r1íg o1rí o2r1í2j o2r1í2n o2r1ír o2r1í2v o2r1í2z or3já or1k2l orkö2z1e2p or1kö orkö1ze or1k2v or1l2y or2m1app or1ma orma1t2re or2m1att or2m1a1zo or2m1eb or1me orme2g or2m1eg2y orm1e1li orm1elv orm1erÅ‘k orme1rÅ‘ orm1es2z ormé2t or1mé or2m1é1te or2m1os2z or1mo or2móv or1mó or2m1ö or2m1Å‘ orm1st or2mü or2n2e. or1ne ornis1s or1ni o2r1o2á o1ro orogkés2z1 orog1ké oro2k1á2 oro2kor oro1ko o2r1ol1da o2r1o2li o2roltól orol1tó o2r1ont2ó. oron1tó o2r1ontób o2r1ontó1é o2r1ontói2g orontó1i o2r1ontój o2r1ontón o2r1ontór o2r1ontót2 o2r1ontóv oro2nya oron2y oro2nyo or1o1pe or1opt o2r1o2r o2r1os1ko o2r1os1to 1o2ro1s1zi oros2z 1o2roszr o2r1osz1tá o2r1o2x or1ó2i1a o1ró oró1i or1ó2ni or1ó2rá or1ó1ri or1ó2sá or2óso2r oró1so oró2so1ro or1ö2b o1rö or1ö2c or1ö2l or1ön or1ör or1ös or1öt or1öv or1ö2z or1Å‘2r o1rÅ‘ or1Å‘2s or1ph or1pl or1p2n or1p2r orr1abl or1ra or2r1a2r or2r1á1ta or1rá 1orrb 1orr2i. or1ri or2rin or2riz 1orrk 1orruk or1ru 1orr2ú. or1rú 1orrúc or2s1a2d or1sa or2s1ajtók orsaj1tó ors1alk ors1ass or2s1ál or1sá or2s2e. or1se or2sed or2s1e2s or2s1é2ne or1sé or2sér1te ors1é2tát orsé1tá or2s1í2r or1sí or2sön or1sö or2sÅ‘ or1s1rá or1s2tab ors1ta ors1ült or1sü ors1ü2tÅ‘ 1ország ors2z or1s1zá orszi2l1 or1s1zi ors3zó1ná or1s1zó or1sz2t or2t1agg or1ta or2t1alm or2ta1na orta2n1á2c orta1ná or2t1a1ré or2tág or1tá ort1árad ortá1ra ort1á2ram ort1á2rán ortá1rá ort1á2rár ort1ár1be ort1ár1ná ort1á2ruk ortá1ru or2t1á2rú ort1eg2y or1te ort1ejt or2t1e1la ort1e2lem orte1le or2t1e1lé or2t1ell or2t1elm or2t1eln or2t1e1lo or2t1e1lÅ‘ or2t1els2 or2t1elt ort1elv ort1emb or2te1ne orte2r1a or2t1ess ort1e1ti ort1é1le or1té ort1é1lé ort1élt ort1élv or2t1érm or2tid or1ti ort1i2ku or2t1int or2t1ist or2t1i1ta or2tít or1tí or2t1okm or1to or2t1o2kol orto1ko or2t1ok1ta or2t1old or2t1orm or2t1ott or2t1ó2r or1tó or2t1ön or1tö or2t1ös or2t1ö2v ort1u1ra or1tu ort1ú2r. or1tú or2t1ü2zér or1tü ortü1zé o2r1ud o1ru o2r1u2g o2r1u2r o2r1u2t o2r1útb o1rú o2r1úth o2r1ú2ti o2r1útj o2r1útn o2r1ú2to2n1 orú1to2 o2r1útr o2r1úts o2r1útt or1üd o1rü or1ü2g or1ü2l or1ün or1ür or1ü2s or1üt or1ü2v or1üz or1űr o1rű 1or2v. or2v1a2n or1va 2or1vá orv1i1si or1vi 1orvos or1vo or2vÅ‘ 1orvv ory2h or2z1a2va2r. or1za orza1va or2z1e2c or1ze or2zes or2zsan orz2s or1z1sa or2z3sá2r. or1z1sá orz1z o2s1abl o1sa o2s1a2da o2s1a2dó o2s1akc o2s1a2l osa2n o2s1ang o2s1ant o2s1an2y o2s1a2p os1arc os1as2s2z o2s1a2t2y osa2u o2s1aut o2s1ábr o1sá o2s1á2g os1áld o2s1áll os1á2lom osá1lo osá1ra2 osá2rak osá1ri2 osá2rik osá2rok osá1ro o2s1á1ru osás1s o2s1á2t1a o2s1á1té o2s1átj o2s1átk o2s1átr o1scl os1e2d o1se o2s1e2g o2s1e2l os1emb os1e2n o2s1er o2s1e2s ose2t2 os1ex os1ez o2s1é2g o1sé o2s1é2l o2s1ép o2s1érd o2s1ér1te o2s1ér1té os1gé2 o2s1i1de o1si o2s1if o2s1iff osi2g o2s1i1ga o2s1i1ge os1ikr o2s1inf o2s1inff o2s1int o2s1i2p o2s1i2rá o2s1i1ro o2s1irt o2s1ism o2s1isp os1is1te osist2 o2s1i2s2z o2s1íj o1sí o2s1í2r o2s1í2z os1kl os1k1ró 2osok o1so o2sonh o2sonn o2so1no 1o2sont o2so1nu 1o2sonv o2s1o2r o2s1os2z osó1p o1só os1ök o1sö os1ö2l os1ön os1ö2v os1Å‘2r o1sÅ‘ os1p2l osp2r os1ps os1s1ta os1su2 os2s1ur os1sy ossz1áll os2s2z os1s1zá ossz1á2ro ossz1es os1s1ze ossz1íj os1s1zí os1s1zó2 os3s1zÅ‘ os2t2e. os1te os1t1e2te os2tip os1ti os2tir os2tiz 1ostob os1to ost1old os2t1ös os1tö 2os1tu os2t1ü2 1os1tya ost2y 1ostyán2k. os1tyá o2s1ud o1su o2s1uj o2s1u2r o2s1u2t o2s1ú2r. o1sú o2s1ú2s o2s1üg o1sü o2s1ün o2s1ü2v o2s1üz os3za1bá os2z o1s1za o2szaj osz1a1lá osz1alk osz1alt osza2n osz1an2y o2szar o2sz1a1ré osza2t1e2 o2sz1ál o1s1zá o2sz1ed o1s1ze o2sz1e2g o2sz1e2l o2s3zen o2sz1ep osz1es o2szég o1s1zé o2széj o2sz1é2l o2sz1é2p o2sz1és osz2fed osz1fe o1szf8l o1szfl o2szi1ge o1s1zi o2sz1ing osz1ism osz1ist2 o1s1zí2 osz1ív o1szkl osz2kópén osz1kó oszkó1pé 1osz1no o2sz1o2ro o1s1zo o2sz1ors o2sz1orz os3zón o1s1zó osz1ó2r o2s1zö os3zöl osz2t1alm osz1ta oszt1an2y osz2t1a1po o1sz2tálj osz1tá osz2tá2r. osz2t1árn o1sz2t1átf o1sz2t1átff o1sz2táth o1sz2tátk osz2ted osz1te osz2tell osz2t1em oszté2r osz1té osz2t1é1ré osz2t1ív osz1tí os2z2t1os2z osz1to o2szur o1s1zu osz1úr o1s1zú o2s1zü osz1üg os3zül ot1abl o1ta ot1a2da ota1gr ota1k ot1a1na o2t1ant ot1a2n2y ota1p2 ot1arc ot1arz ot1ass o2t1a2z o2t1ábr o1tá o2t1á2g ot1á2rak otá1ra o2t1á2rá o2t1árb o2t1á2ré ot1árn ot1bl o2teb o1te o2t1e2g ote1l1a ote2l1á ote2lel ote1le ote2lÅ‘ ote2m1á ote2m1o ot1e2v o2t1é2l o1té o2t1ép o2t1é2r. o2t1ér1té o2t1érz ot1fr ot1gr ot2hó o2t1id o1ti o2t1im oti1na2 ot1i2n2a. oti2nar oti2nár oti1ná o2t1ind otin1ká2 2oti1pa 2oti1pi 2otipn 2otipt o2t1i1rá o2t1is o2t1i1zé ot1íj o1tí ot1ín ot1kl ot1k2r o2t1ob o1to oto1g2 ot1o1la oto1na2 oto2n1á oto2n1i2n. oto1ni oto2nis oton3n oto2rak oto1ra oto2rál oto1rá oto2rár oto2re2 oto2rim oto1ri oto2rin oto2rol oto1ro otosz2f otos2z otosz2ff otó1f2 o1tó otó1ff otó2pan otó1pa otó2pas otó2pin otó1pi otó2p1os2z otó1po otó2sé1tá ot2ósét otó1sé otós3s otó1s1ta otó1s2z otó2s3zár ot2ó1s1zá otót2 otó1tr ot1ö2l o1tö ot1ös ot1pl ot1pr ot1ps o1t2rag ot1ra ot1sp ot1sr ot1st otta1g2 ot1ta ot2t2e. ot1te ot2t1é2g ot1té ot1u1ra o1tu ot1u2s2z o2t1új o1tú ot1ú1ri ot1ü2l o1tü ot1üt ot1ü2z ot1űr o1tű otva1k2 ot1va o1tya1 ot2y o1u ou2ag ou1a ou1d2h ou2ge ou2il ou1i ou2is ou2lev ou1le ou2pe ou2se o1ú o1ü o1ű ova2ga o1va ova2g1i2n ova1gi ova2r1an ova1ra ova2rát ova1rá ova2r1el ova1re ova2rék ova1ré ova2rés ova2ris ova1ri ovas3s ova1u2 ováb2b1o o1vá ová2s1á2rá ová1sá ová2si2k ová1si oven2c o1ve ovi1o2 o1vi ox2ha 1oxidb o1xi 1oxid1da 1o2xidg 1o2xi2d1i2 1o2xidj 1oxido1ka oxi1do 1o2xidokk 1oxidot 1oxidr 1o2xidt o2xi1gé 1o2xilc oy2ce oy1er oy2le oza2g o1za oza1g1a o2z1a1gi o2z1a2l oza2mal oza1ma oza2m1e2 oza2m1ér1té oza1mé oza2min oza1mi oza2n o2z1an2y oza2r oz1a1ra oza2tat oza1ta oz2a2tál oza1tá oza2t1e2 oza2tés oza1té oza2t1é2te oz2atét oza2t1ill oza1ti oza2t1í2 oza2t1ol oza1to o2z1a1u o2z1á2g o1zá ozá2ke oz1áll o2z1á2ro o2z1á1ru ozá2s1e ozás3s ozá2s3z o2z1átl oz1e2g o1ze oz1e2m oz1en ozé2k1e2 o1zé o2z1é2l o2z1é2p o2z1é2ré oz1i2do o1zi o2z1i2par ozi1pa o2z1i1ro ozi2s1aj ozi1sa ozi1sl ozi1st2 ozi1s2z2 ozi2t1a2 oz1í2n o1zí ozmo1g oz1mo o2zor o1zo oz1ors o2z1os2z ozóegyez1 o1zó ozó1e ozóe2g2y ozóe1gye 2ozófi2a. ozóf8i ozófi1a 2ozóï¬2a. ozÃ³ï¬ ozóï¬1a 2ozófia2i. ozófia1i 2ozóï¬a2i. ozóï¬a1i 2ozófiail 2ozóï¬ail 2ozófia1k2 2ozóï¬a1k2 2ozófiá1bó ozófi1á 2ozóï¬Ã¡1bó ozóï¬1á 2ozófiáh 2ozóï¬Ã¡h 2ozófiá1ja 2ozóï¬Ã¡1ja 2ozófiá2n. 2ozóï¬Ã¡2n. 2ozófiá1na 2ozóï¬Ã¡1na 2ozófiár 2ozóï¬Ã¡r 2ozófiá2t. 2ozóï¬Ã¡2t. 2ozófiá1tó 2ozóï¬Ã¡1tó 2ozófiá1va 2ozóï¬Ã¡1va oz2ó2tan ozó1ta oz1p2r o2zs1a2l oz2s o1z1sa ozsa2n ozs1an2y o2z1s1Å‘ ozs1s o2z1sü oz1ün o1zü oz1ü2z oz1űr o1zű ozzá1s2 oz1zá 2ó. ó1a óa2cé óa2dag óa1da óa2dá óa2do óa2dó óa2ga óa2gi óa2g2y óa2já óajtó1i2 óaj1tó óa2kad óa1ka óa2kar óa2ká óa2ku óa2la óala2g1 óa2lá óa2l1e óalma1na2 óal1ma óalmanac3 óa2lo óal1os óa2lu óa2ma óa2na óa2nó óa2n2y óa2pá óa2po óa2pó óa2pu óa2ra óa2rá óa2ré óa2ri óa2ro óa2to2 óa2t2y óa2uk óa1u óa2ur óa2ut óa2va óa2xi óa2zo ó1á óá2bé óá2c2s óá2ga óá2gi óá2go óá2gyú óág2y óá2hí óá2la óá2lo óá2po óá2rá óá2ru óá2rú óá2sa óá2só óá2s2z óá2ta óát1a2d2ó. óá2ta1dó óá2tá óá2t1e2 óá2té óá2t1i2 óá2tí óá2to óá2t1ö óá2tu óá2tú óá2tü 2óbab ó1ba 2óbaj 2óbak 2óbal 2óband 2óbank óba1p2 2óba1rá 2óbark 2óbar1na óbas2 óba1t2r óba1u2 2óbec ó1be 2óbef 2óbeff 2óbeg 2óbeh 2óbej 2óbek 2óbe1le 2óbe1lé 2óbels 2óbem 2óbe1o 2óber 2óbet 2óbev 2óbez ó2bég ó1bé 2óbil ó1bi 2óbi1o 2óbir 2óbit 2óbiz ó1b2le ó1b2lo 2óbój ó1bó 2óbó1lé ób2rá ó1b2ro ób2rók ób1ró ó1b2ru óbuda2ik ó1bu óbu1da óbuda1i óbuszt2 óbus2z óbu2s1z1ú ó2c1aj ó1ca ó2c1akr óc1a2la óc1alk ó2c1ar ó2c1ass óc1att ó2c1ál ó1cá 1ó2ce1á 1ó2ce1ánny2 ó1ce ó2c1e2g óce2l óc1e1le óc1elm óc1e1lÅ‘ óc1emb ó2c1e2v ó2c1ép ó1cé ó2c1ét ó1c3há óc2h ó1c3he ó1c3ho óci2m ó1ci óc1i1mi óc1ing ó2c1i2pa ó2c1is óc2lu ó2c1or ó1co ó2c1os2z óc1ó2r ó1có óc1pr 2ó1c1sa óc2s ó2c3ság ó1c1sá ó2cs1á1ru 2ó1c1se 2ó1c1sé 2ó1c1si ó2csit 2ó1c1sí 2ó1c1so 2ó1c1sö 2ó1c1sÅ‘ ócs1p óc3s2pá óc3s2z óc1tr ó2c1ud ó1cu óc1ün ó1cü óc1üz ó1c3za óc2z ó2c3ze ó2c3zu ó1d1a1da ó1da ód1a2dá óda2j ód1a1já ód1akt 2óda2l. 2óda1la ód1alg ó2d1am ód1a1na 2ódarabk óda1ra 2óda1rá ód1aut óda1u ód1a1zo ó2d1áf ó1dá ó2d1áff ó2d1ág ó2d1ál ó2d1áp ó2d1árn ód1á2ru ódás3s ód1bl ód1br ó2d1e2d ó1de ó2d1e2g ód1e2lem óde1le ó2d1elh ód1elj ó2d1ell ó2d1elm ó2d1e1lo ód1e1lÅ‘ ód1elr ó2d1elv ód1emb ód1e1me ód1ep óde2ra ód1e2rÅ‘ óde2sés óde1sé ó2d1e2v ó2d1ez ó2d1é2g ó1dé ó2d1ép ó2d1ér1te ó2d1érz ód1fr ód1gl ó2d1i2d ó1di ó2d1i1gé ó2d1int ódi2p ó2d1i1pa ó2d1i1ro ódi2s2z ód1i1zo ó2d1ír ó1dí ód1kl ód1kr ód1kv 2ódob ó1do 2ódok 2ódol 2ódom ó2d1op ó2d1os2z ó2d1o2x ódókés2z1 ó1dó ód2ókés ódó1ké ód1ó1rá ó2d1ö2l ó1dö ód1ös ó2d1öt ó2d1öv ód1Å‘r ó1dÅ‘ ód1pr 2ó1d2ram ód1ra 2ód1rá ód2rám ó1d2rog ód1ro ó1d2rót ód1ró ód2ruk ód1ru ód1sp ód1st 2ódug ó1du ódu2r ó2d1u1ra ódus3s ódu2s3z ó2d1u2t ó2d1új ó1dú ód1ú2r. ód1üg ó1dü ó2d1ür ód1üv ód1üz ód3zár ód2z ó1d1zá ó2d3ze ó1d3z1so2 ódz2s ó1e óe2bé óe2c2h óe2c2s óe2dé óe2d2z óe2ge óe2gé óe2gés2z1 óe2g2y óe2ke óe2ké óe2l1a2 óe2l1á2 óe2le óel1en óe2lé óel1ér óe2l2i óe2l1í2 óe2lo óe2lÅ‘ óe2lü óembe2r1ék óem1be óembe1ré óe2me óe2mé óe2mu óe2ne óe2pé óe2pi óe2po óe2re óe2ré óe2ró óe2rÅ‘ óe2se óe2sé óe2sÅ‘ óe2s2z óe2te óe2ti óe2tű óe2ve óe2vé óe2vÅ‘ óe2zü ó1é óé2be óé2ge óé2gé óé2gÅ‘ 2óé2he 2óéhs óé2ke óé2ké óé2kí óé2le óé2lé óé2lÅ‘ 2óé2ne óé2pí óé2pü 2óé2r. 2óérd 2óé2re 2óé2ré óé2ri óé2rÅ‘ 2óér1te 2óér1té 2óérz óé2te 2óétk óé2ve óé2vé óé2vi óé2vü 2óf2a. ó1fa 2ófa1a 2ófa1á 2ófab 2ófac 2ófad 2ófa1e 2ófaf 2ófaff 2ófag 2ófah 2ófak 2ófal 2ófa1o 2ófap 2ófar 2ófas ófa1st 2ófa1t2 2ófa1ü 2ófav 2ófaz ófe2l1em ó1fe ófe1le ófe2len ó2f1ev 2ófék ó1fé 2ófé1lÅ‘ 2ófélt 2ófén ó2f1é2r. ófi2ab óf8i ófi1a óï¬2ab Ã³ï¬ Ã³ï¬1a ófi2ad óï¬2ad ófi2ag óï¬2ag ófia1k2 óï¬a1k2 ófi2akr óï¬2akr ó1f2la óf8l ó1fla ófl ó1f2lo ó1flo óf2ló ófló óf2lö óflö óf2lu óflu 2ófoc ó1fo 2ófog 2ófok 2ófol 2óford 2óforg 2óformác ófor1má 2óformáj 2óformál 2óforr 2ófos 2ófot ó2f1ov ó1f2rak óf1ra ó1fran ó1f2ri ó1f2rí ó1f2ro ó1f2rö ó2f1ud ó1fu ófu2r óf1u1ra óf1ú2r. ó1fú óf1úrn óga1p ó1ga óga2z1 óg1dr óge2o ó1ge ógé2p1i2p ó1gé ógé1pi óg5g2y ógia1k2 ó1gi ógi1a ógi2akr ógi2al óg1ír ó1gí óg2la óg2le ógo2ras ó1go ógo1ra ó1g2raf óg1ra ó1g2raff óg2rán óg1rá ógu2sab ó1gu ógu1sa ógu2s3z ó2gy1el óg2y ó1gye ó2gy1es ó3gy2i. ó1gyi ógy1int ógyö2k1érb ó1gyö ógyö1ké ógyta2n1á2 ógy1ta ógyte2a ógy1te ógy1ús ó1gyú óha2de ó1ha 2óhal 2óhan 2óhas 2óhat óháza2d ó1há óhá1za óhá2z1a1da 2óhon ó1ho 2óhor 2óhos óhús1s ó1hú ó1i 2ói2de 2ói1dé ói2dén ói2di 2ói2dom ói1do 2ói2dÅ‘ 2ói2ga 2ói2ge 2ói1gé ói2géb ói2gé1i ói2géj ói2gék ói2gén ói2gér ói2gét ói2gév ói2konb ói1ko 2ói2konj 2ói2konn 2ói2ko1no ói2konr ói2kont 2óill ói2m2a. ói1ma 2ói2má ói2mi 2óimp 2ói2n2a. ói1na ói2na1i ói2na1ka ói2nas ói2nat ói2nán ói1ná ói2nár ói2nát 2óind 2óinf 2óinff 2óing 2ói2ni 2óinj 2óinp 2óint 2óinv ói2pa 2ói2rat ói1ra 2ói2rá 2ói2ro ói2s2z 2ói2ta ói2tók ói1tó ói2vad ói1va ói2zé ói2zo ó1í óí2rá óí2ri óí2ro óí2ró óí2té óí2vé óí2vü óí2vű óí2ze óí2zé óí2zi óí2zü óí2zű ója1g2 ó1ja 2ójaké2n. ója1ké ójak2r 2ójam ója1p2 2ójav 2ójá1rá ó1já 2ójárm 2ójár2ó. ójá3ró 2ójá1ru 2ójárv 2ójá1té 2ójáts óje2gy1á2 ó1je ójeg2y 2ójut ó1ju 2ókab ó1ka ók1a2da ók1ajt ó2k1a1kó ó2k1alj ó2k1al1ko 2óka1ló 2ókamp 2ókamr 2óka1pa 2ókapc 2ókaps 2óka2r. 2óka1ra 2ókarr 2ókart 2óka1ta 2óka1te óka1t2r ók1aut óka1u 2ókav 2ókaz ó2k1áll ó1ká ó2k1á2rad óká1ra ó2k1á2ri ó2k1árn ó2k1á1ru 2óke2d ó1ke ó2k1ed2z ók1e1gé 2ókem ó2k1emb 2óker óker1es1te óke1re óke2r1ék1né óke1ré óke2rig óke1ri ó2k1e2rÅ‘ óke2r1ü2g óke1rü óke2s2z ók1e1s1ze óke2t ók1e1te 2ókev 2ókez ó2k1é2l ó1ké 2ókém 2ókén2y 2óké2p. 2óképb 2óké1pe ók2é2p1e2l 2óké1pé 2óképl 2óképn 2óképpel ókép1pe 2óképr 2óképt 2óképz ó2k1é2r. 2ókérd 2óké1re 2óké1ré 2óké1rÅ‘ 2ókés ó2k1étt ó2k1étv ók1gr ók2hi1á ók1hi 2óki1a ó1ki 2óki1á 2ókic 2óki1e2 2óki1é 2ókif 2ókiff óki2g ó2k1i1ga ó2k1i1gé 2óki1í 2ókij ók1ill 2ókim ók1i1mi 2ókinc 2óki1ne ó2k1int 2ókin2y 2óki1o ó2k1isk ó2k1ist2 2ókis2z 2ókit 2ókiv ók1i2va ók1k2r ók2li1e ók1li ók2lim ó1k2lí 2ó1k2ló 2ó1k2lu 2ókock ó1ko 2óko1co 2óko1e 2ókoh 2ókoll 2óko1mé 2ókomf 2ókomff 2ókomp 2ókonc 2ókonf 2ókonff 2ókonj 2ókons 2ókont 2ókon2y 2ókonz2 2óko1o 2ókop 2óko1rá óko2r1á2s 2ókorb 2óko1re ó2k1org 2óko1ri 2ókorl 2ókorm 2ókorn 2óko1ro 2ókorr 2ókor1s2 2óko1ru ó2k1oszl ókos2z 2ókód ó1kó ók1ó2l 2ókór ó2k1óv 2óköl ó1kö ók1ö2lé ók1ö2lÅ‘ ók1örd ók1ötl ók1pl ók1pr ó1k2rá ók2re1á ók1re 2ó1k2rém ók1ré ók2rét 2ó1k2ri ó1k2rí ók2ron ók1ro ók2ros 2ó1k2rón ók1ró ók1sk ók1st ó2k1ug ó1ku ó2kum 2ókup 2ókur óku2sz1ál ókus2z óku1s1zá óku2s1ze 2ókut 2ókúr ó1kú ó2k1üg ó1kü 2ókül 2óküs ók1üzl 2ó1k2vó ól1ajt ó1la óla2man óla1ma óla2pa ó2l1a2pál óla1pá óla2pol óla1po óla2p1os2z ól1a2rá ól1a1zo ólá2b1út ó1lá ólá1bú 1ó2lál ólás3s ólá2sü ól1átl óle1í2 ó1le ól1e2se ól1e2sé ól1esh ól1esn ól1ess ól1est óle2ta óle1te2 óle2t1ev ó2l1érz ó1lé ólé2tel ólé1te ólé2tés ólé1té óli2a1ko ó1li óli1a óli2am óli2s ól1i1s1zo ólis2z ól1ín ó1lí ólo1ma2 ó1lo ólo2m1al ólo2m1á ólo2m1e ólo2mi2s ólo1mi 1ó2lomr ó2l1os2z óló1á2 ó1ló óló1sl óló1sp ólót2 ó2l1öl ó1lö ó2l1ör ó2l1ös ó2l1ö2z ól1p2r ólu2m1e ó1lu ólus3s ólu2s1zá ólus2z ól1üt ó1lü ól1üv ólya2ga ól2y ó1lya ólyag1g ó1ly2á óm1abl ó1ma ó2m1a2cé 2ómagn óm1akn óm1all 2óman 2óma1ra 2ómarc ómaren2 óma1re 2ómarh 2ómark ómas2 óma1sp 2ómass 2óma1te óm1a2to ó2m1a1u 2ómax 2ómág ó1má óm1áll 2ómárk 2ómárt 2ómáz óm1b2r óm3c. óm1e2g2y ó1me ó2me2n. 2óméd ó1mé 2ómél óm1é1le ó2m1ép 2ómé1re 2ómé1ré 2ómérg 2ómérk 2ómérn 2ómé1rÅ‘ 2ómérs 2ómér1té ómi2ac1 ó1mi ómi1a ómi2as2 ó2m1i2b ómi2g ó2m1i1gé 2ómi2k óm1i1ko ómik1ro1 ómikros2z2 2ómin ó2m1i2o1no ómi1o ó2m1i2ont ó2m1i2p 2ómis ó2m1isk ó2m1ist ómi2s2z ó2m1i2z 2ómod ó1mo 2ómog 2ómoh ó2m1o1la ó2m1old 2ómond 2ómo1ni 2ómo1no 2ómont 2ómor 2ómos ó2m1os2z 2ómot ó2m1ox 2ómoz óm1öt ó1mö óm1Å‘r ó1mÅ‘ óm1pr óm1üt ó1mü óm1üz óműt2 ó1mű 2ónad ó1na 2ónag óna2kás óna1ká óna2k1e2 óna2ko2l óna1ko ó2n1al2j. ó2n1aljak ónal1ja ó2n1al1já ó2nal1je ó2n1al1jo ó2n1al1ju 2ónap ó2na2p2a. óna1pa óna2pá ó2n1apá1ba óna2pe ón1arc ó2n1asp ón1aszt ónas2z óna1t2 2ónav óná2l ó1ná ó2n1áll ó2n1á1lo ónás1s ón1b2r óne2d ó1ne ón1ez 1ó2né1é ó1né 2óném ó2n1é2pí 1ó2né1ra2 ón1érc 1ó2né1ró óné2v1á 2ónéz óni2am ó1ni óni1a óni2g ó2n1i1gé ó2n1ist ón1odv ó1no 1ó2nokul óno1ku 2ónor ón1or1s2 ón1ox ón1ön ó1nö ó2n1ör ón1öt ónőé2h ó1nÅ‘ ónÅ‘1é ón1pr ó2n1u2t ó1nu ón1ür ó1nü 2ó1nya ón2y 2ó1nye 2ónyil ó1nyi 2ónyi1tá 2ónyit2ó. ónyi1tó 2ó1nyí 2ó1nyo 2ó1nyu 2ó1nyú ó1o óo2dú óo2ka óo2ká óo2k1i2 óo2ku óo2la óo2li óo2pe óo2ra óo2ri óo2ro óo2vi óo2xi ó1ó óó2la óó2lá óó2li óó2lo óó2ra óó2ri óó2sá óó2vá óó2vo óó2vó ó1ö óö2bö óö2ko óö2kö óö2lé óö2lÅ‘ óö2rö óö2ve óö2zö ó1Å‘ óő2re óő2ré óő2ri óő2rö óő2rü óő2sé óő2sö ó2p1a2da ó1pa ó2p1alk óp1a2nal ópa1na ó2p1a2no óp1ant ó2p1an2y óp1a2rán ópa1rá óp1áll ó1pá ópcsa2p1 ópc2s óp1c1sa ó2p1ef ó1pe ó2p1eff ó2p1e2g óp1e1lo ópia1k2 ó1pi ópi1a ópi2akr ó2p1id ó2p1ind ó2p1i2o óp1i2rá ó1p2lak óp1la ó1p2las ó1p2lu ó2p1ob ó1po ó2p1o2la ópo2rad ópo1ra óp1ó1ra ó1pó ó1p2ri óp2rod óp1ro óp2rop ó1prób óp1ró óp1t2r ópus3s2 ó1pu ó2p1új ó1pú óp1üv ó1pü ó2ra1bé ó1ra ór1a1ce 2óra1da óra2dat ó2raib óra1i ó2rai1é óra2iér ó2raih ó2rai1i ó2raij ó2raik óra2i1ké óra2i1ko ó2raim ó2rain ó2raip ó2rais ó2rait ó2raiv 1ó2ra1je óra1kv ó2ra1la ó2r1alk ó2ra1mo ó2r1a1ni ór1ant óra1p2l ór1arc 1óra1re óra1s2p ó2r1a2tom óra1to 1ó2ra1ü 1óráén ó1rá órá1é ór1ágg ór1á2g2y 1órákh 1ó2rá1ki ó2r1ál 1ó2rá1mé 1ó2rá1mo 1órámr ó2r1á2p órá2se 2órá1ta ór1átv ór1br ór1e1ge ó1re ó2r1e2g2y ó2r1e2le ór1ell ór1elm ó2r1e1lo ó2r1e2lÅ‘ ór1elv ór1emb ór1eml ó2r1e2r ó2r1e2set óre1se ó2r1e2tá ó2r1e2té ó2re1zü ór1é2je ó1ré ó2r1é2l ór1é2ri óré2vek óré1ve ór1f8l ór1fl órhá2zot ór1há órhá1zo óri2a1ka ó1ri óri1a óri2al óri2at ó2riá1si óri1á óriás3s óri2c2h ó2r1id ó2r1int ó2r1i2onn óri1o ó2r1i2o1no 2órip ó2r1i2pa ó2r1i2si ó2r1is1me 2órit óri2z ór1i1zo ór1í2j ó1rí ó2r1ír ór1í2z ór1kl órmé2s ór1mé ór1o2ká ó1ro ó3r2o1ké ór1o2ki óro2kok óro1ko óro2koz ór1o2ku ór1o1kú2 ó2r1os2z ó2r1o2x ó2r1ó1da ó1ró óró2dáj óró1dá órói2ko óró1i óró1p ór1ó1sá 2óróz ó2r1ö2l ó1rö ó2r1öml ó2r1ös ó2r1öt ór1Å‘r ó1rÅ‘ ór1p2r ór1t1rá óru2mag ó1ru óru1ma óru2me ó2r1u2r óru2sab óru1sa óru2sa2n óru2se órus3s2 óru2sü óru2s3z ó2r1u1ta ó2r1ú2s ó1rú ó2r1út ór1ün ó1rü ór1ü2v ór1üz 2ósabl ó1sa ó2s1a2d ó2s1a2g ó2s1alj ós1alt ós1amn ó2s1apr 2ósar ó2s1arcot ósar1co ó2s1asp ós1ass ó2s1atl ó2s1a1u ósa2vo ó2s1ábr ó1sá ó2s1áf ó2s1áff óság1g ó2s1áll ós1á2lo ó2s1á2ro ó2s1á1ti 2ósá1to ós1bl ós1br óscsa1p1á2 ósc2s ós1c1sa 2óseb ó1se ós1e2g2y 2ósej ós1elj ós1elm ós1e2lÅ‘ ós1els ós1elv óse2m ós1emb ós1e1mi ó2s1en óse2p ós1e1po ó2s1e2rÅ‘ ó2s1es ó2s1e2t ó2s1ez ó2s1é2l ó1sé 2ósém ós1é2ne ó2s1ép ó2s1é2r. ó2s1ér1te 2ósét ósé2tá1ka ósé1tá ó2s1é2te ó2s1étk ó2s1étt ós1fr ó2s1i2d ó1si ósi2g ó2s1i1ge ósi2kerb ósi1ke 2ósikl ó2s1ind ó2s1inf ó2s1inff ósi2p ós1i1pa ó2s1i1ro ó2s1isk ós1ist2 2ósík ó1sí ó2s1ính ós1í2rá ós1í2ró ó1s2kat2 ós1ka ós2kic ós1ki óski2s ós1kl ós1kv ós2lag ós1la 2ós1lá ó1s2ni 2ósokas ó1so óso1ka 2ósok1ko 2ósoks ós1o1li 2ósor ó2s1org ó2s1orj ó2s1orm ó2s1ott ó2s1ov ó2s1ó2r ó1só ó2s1ö2l ó1sö ó2s1ös ó2s1öt ós1Å‘r ó1sÅ‘ ó1s2pec ós1pe 2ó1s2pek 2ó1s2pir ós1pi ós1pl ó1s2pu ós1s2k ós1s2p ós3s1ze ós2s2z ós3s1zö 2ó1s2tab ós1ta ó1s2tad ó1s2taf ó1s2taff 2ó1s2tand 2ó1s2tat 2ós1tá ós2tább ó1s2tád ó1s2tát ó1s2tég ós1té 2ós1tí ós2to1po ós1to 2óst2r ós1t1ré ós1t1ri ó1st1ru 2ós1tú 2ósug ó1su ó2s1u2r ó2s1u2t ó2s1ú2r. ó1sú ó2s1ú2ri ó2s1úrn 2ósül ó1sü 2ósür ó2s1üs ó2s1üz 2ó3sű1rí ó1sű 2ó1s1za ós2z ó2s3zac ósza2k1ü2 ó2sz1a2lap ósza1la 2ó1s1zá ószá2gol ószá1go 2ószed ó1s1ze 2ószeg ó2sz1e2gű 2ószek 2ószel 2ószem 2ószen 2ósze2r. 2ósze1re ósze2r1e2pé 2ószer1k2 2ó3szerv 2ó3szerz 2ószez 2ó1s1zé ószé2n1é2 2ó1s1zi ó2szi1ma 2ó1s1zí 2ószk ósz2l 2ószob ó1s1zo 2ószoc 2ó3szof 2ó3szoff 2ószol 2ószon 2ó1s1zó 2ó1s1zö ó2sz1ös 2ó1s1zÅ‘ 2ószp ós3z2s 2ószt ó1sz2tá ószt2rá 2ó1s1zú 2ó1s1zü ó2sz1üg 2ó3szűk ó1s1zű 2ószű1ré 2ószű1rÅ‘ ó2s3zűrt ósz2v ó2t1a1dó ó1ta 2óta2g. 2óta1ga ót2a2gal 2ótagb 2ótag1g 2óta1gi 2ótagj 2ótagk 2ótagn 2óta1go 2ótags 2óta1gu ót1ajk 2ótalap óta1la 2óta1lá ót1alk ó2t1alm 2ótan ót1an1ti 2ótap 2ótar ótas2 ó2t1ass 2ótat ót1a2ur óta1u 2ótax 2ótág ó1tá ót1á2ga ó2t1ágg 2ótáp ótára2d ótá1ra ótá2r1a1da 2ótá1ro 2ótárs 2ótávc 2ótá1vi2 ótá2v1ir 2ótá2ví2 2ótávk ó2t1e2g ó1te ótele1s óte1le óteles2z2 ó2t1elh ó2t1e2lÅ‘ ó2t1emb ó2ter1d2 ó2t1é1gé ó1té ó2t1é2ké óté2t1ö2 ót1f2r ó2t1i2d ó1ti óti2g ó2t1i1gé ót1ill ó2t1im ó2t1ing ót1i2pa óti2s2z ó2t1í2r ó1tí ó2t1í2v ó2t1íz ót1kr ótlé2ke ót1lé 2ótoj ó1to 2ótol ótol2l1a2d ótol1la ót1oml 2óton 2ótor ó2t1ors2 2ótov 2ót2ó. ó1tó 2ótón ó2t1ö2ko ó1tö ótÅ‘1e2 ó1tÅ‘ ót2rad ót1ra ót2raf ót2raff ót2rak ót2ran ót2rén ót1ré ót2rik ót1ri ót2ril ót2ri1ó ót2rom ót1ro ót1sl ót1sp ótsze2r1ep óts2z ót1s1ze ótsze1re ótu2s1ze ó1tu ótus2z ót1ü1lé ó1tü ót1ü2lÅ‘ ó2t1üst ó2t1ü2v ótű2z3s ó1tű ó1u óu2bo óu2ga óugrás1s óug1rá óuj2j1a2da ó1ujjad óuj1ja óu2ni óu2no óu2ra óu2s2z óu2ta óu2tá óu2to óu2tó óu2tu ó1ú óú2jí óú2ré óú2s2z óú2ti óú2to ó1ü óü2g2y óü2le óü2lé óü2lÅ‘ óü2nÅ‘ óü2re óü2rí óü2rü óü2s2z óü2te óü2té óü2tÅ‘ óü2ve óü2ze ó1ű óű2zÅ‘ 2óvad ó1va 2óvag 2óvaj 2óva2k. 2óvaks 2óva1ku 2óva1ló 2óvar 2óvas ó2vat 2óvág ó1vá 2óvák 2óvál 2óván óvá2r1a2l óvá1ra óvárosi2h óvá1ro óváro1si ó2vá1sa 1ó2vá1si ó2vá1so 1ó2vásr 1ó2váss 1ó2vást2 2óváz óve2r1a ó1ve óve1ri2 óve2rip óv1in ó1vi 1ó2vod ó1vo ó2vom 2óvon óza1d2 ó1za óz1a2dá óz1a2dó 2ózaj ó2z1akc óza1k2r óz1akt óz1a2la ó2z1arc óza1s óza2t1a2l óza1ta óz2a2tan óz2a2tál óza1tá óza2tés óza1té óza2told óza1to óza2t1ü2 2ózav ó2z1á2g ó1zá óz1áll ó2z1á2ru ó2z1á2rú óz1bl 1óz1di ó2z1e2g ó1ze ó2z1el óz1em ó2z1e2rÅ‘ ó2z1ex óz1ez ó2z1é2l ó1zé ó2z1é2te óz1f8l óz1fl óz1fr ózhajó1i2 óz1ha ózha1jó óz1imp ó1zi óz1ing ó2z1i2p ózi2s1e2 ózi2sir ózi1si ózis3s2 ózi2s3z ó2z1old ó1zo ózo2n1a2 ózo2n1á ózo2ni ózós2 ó1zó ózó1sp óz1Å‘r ó1zÅ‘ óz1pr ózsa1k2 óz2s ó1z1sa ó2z3ser ó1z1se ó2z3sor ó1z1so óz3s2z óz1t2r 2ózuh ó1zu ó2z1u2r ó2z1u2t óz1ú2s ó1zú ó2z1út óz1ü2g ó1zü óz1ül óz1ü2z 2ö. ö1a ö1á öb1a2n ö1ba öb1ál ö1bá öb1á2r öb1át öb2b1a2 öb2b1á2 öb2b1e2g öb1be öbbe2l öb2b1e1le öbbe2m öbb1e1me öb2b1e2r öb2b1es2z öbb1e1ve öb2bél öb1bé öb2bid öb1bi öb2b1is öb2bí öb2b1ol öb1bo öb2b1os öb2bot öb2bó öb2bö öb1bü2 öb2b1ül ö2b1ef ö1be ö2b1eff ö2b1eg ö2b1e2l ö2b1e2m ö2b1e2n öb1e2rÅ‘ ö2b1él ö1bé ö2b1é2r. ö2b1ér1té öbért2 ö2b1érz öb1fr ö2b1i2d ö1bi ö2b1ing ö2b1int 1öb1li 1öb1lö öb1or ö1bo öb1ón ö1bó ö2böll ö1bö 1ö2böl1tÅ‘ öc1aj ö1ca öc1c1s1a2 öc2c2s öc1c1s1i ö2c1ép ö1cé ö2c1é1ve ö1c3hö öc2h öci1ó2 ö1ci öc1Å‘r ö1cÅ‘ ö2c1s1a öc2s öcs1éj ö1c1sé öcs1ék ö2cs1é2te ö2csiz ö1c1si öcs1izz ö1c1s1ó ö2cs1ö2l ö1c1sö öcs1ű2r ö1c1sű öc3s2z öd1a2l ö1da öd1a2n öd1ar öd1á2l ö1dá öd1ár ö2d1ef ö1de ö2d1eff öd1ell ö2d1em öd1e2vé ödé2m1o ö1dé ödé2sa2 ödés3s ödé2s3z ö2d1é2ves ödé1ve ö2d1é2vén ödé1vé ö2d1é2vér öd1gr öd1íz ö1dí öd1os ö1do öd1óc ö1dó öd1ó2r öd1sp öd1u2s ö1du öd1új ö1dú öd1ú2s ö2d1üv ö1dü ö2d1űz ö1dű ö1d3zá öd2z ödzá1ró2 ö1d3zu ö1e ö1é öfés3s ö1fé ög1ab ö1ga ög1a2c ög1a2d ög1ag ög1a2k ög1a2l ög1a2n ög1ap ög1ar ög1as ög1a2t ög1áb ö1gá ög1ág ög1á2l ög1á2r ög1át ög1dr ö2g1e2g ö1ge ö2g1e2ké1i öge1ké ög1elb ö2ge2le1me öge1le ö2g1elf ö2g1elff ö2g1el1ha ö2g1elm ö2g1e1lo ö2g1e2mel öge1me ö2g1er ö2g1es2z ög1e2vé ö2g1é2g ö1gé ög1ékt ö2g1é2p ö2g1é2r. ö2g1érs ö2g1ér1té ögés3s ög1fr ö2g1id ö1gi ög1ill ö2g1i2m ö2g1inf ö2g1inff ö2g1ist ö2g1i1va ö2g1i2z ög1ín ö1gí ög1ír ög1ív ög1kr ög1o2l ö1go ög1op ög1o2r ög1os ög1ó2r ö1gó ög1ö1li ö1gö ög1ö1lö ö2g1öv ög1pr ögre1p2 ög1re ög1sk ög1sp ög1tr ög1ud ö1gu ög1u2n ög1u2t ö2g1üg ö1gü ö2g1üs ö2g1üt ö2g1üv ö2g1üz ö2g1űz ö1gű ö1g3ya ög2y ö1i ö1í öj2tél öj1té öj2t1o ök1ab ö1ka ök1a2g ök1a2k ök1a2l ök1a2n ök1a2p ök1ar ök1as ök1a2t ök1a1u ök1a2v ök1ág ö1ká ök1ál ök1á2p ök1á2r ök1át ök1áz ök1dr ö2k1e2d ö1ke ö2k1e2g ö2k1e1ke öke2l ök1e1la ök1e1le ök1elh ök1elm ök1eln ök1e1lÅ‘ ök1elv ö2k1e2m öke2né öken1s ök1erd ö2k1e2res2z öke1re ö2k1e2rÅ‘ ö2k1es öke2vés öke1vé ö2k1ez ö2k1ég ö1ké ö2k1ékn ök1éks ö2k1é2les öké1le ö2k1ép öké2r1e2l öké1re öké2r1em ö2k1é2rez ö2k1é2rés öké1ré ökés3s ö2k1é2te ö2k1é2v2e. öké1ve ö2k1é2vek ö2k1é2vet ök1fr ök1gl öki2d ö1ki ök1i1de ök1i1do öki2g ö2k1i1ga ö2k1i1gé ö2k1ikt ö2k1i2na ö2k1ind ö2k1ing ö2k1int ö2k1i2o ö2k1i2p ö2k1i1ro ö2k1is ö2k1iz ök1íj ö1kí ö2k1ír ök1ív ök1íz ök1kl ök1k2r 1ök1lű ök1ok ö1ko ök1old 1öko1ló 1ökon ök1o2p ök1o2r ökosz2f ökos2z ökosz2ff ök1o2v ök1ó2r ö1kó ök1óv 1ökö2r. ö1kö ökö2rö ökőár1a2d ö1kÅ‘ ökÅ‘1á ökőá2ra ökÅ‘1é2 ök1pr 1ökrös ök1rö 1ök1rü 1ök1rű ök1sp ök1sr ök1t2r ök1u2n ö1ku ök1u2r ök1us ök1u2t ök1új ö1kú ök1úr ök1út ö2k1üg ö1kü ökü2l ö2k1ü1lé ö2k1ült ö2k1ü2t ö2k1ü2v ö2k1üz öl1a2d ö1la öl1ag öl1a2j öl1a2k öl1al öl1ap öl1a2r öl1a1u öl1a2v öl1á2g ö1lá öl1ál öl1á2m öl1á2p öl1á2r öl1á2s öl1át öl1á2z öl1b2r ölcsa2l ölc2s öl1c1sa ölcs1á2p öl1c1sá ölcs1á2r ölcs1ell öl1c1se öl2csev öl2csid öl1c1si öl2csiz öl2cs1ok öl1c1so ölcs1ol öl2csos öl2csüg öl1c1sü öl2csül öl2dab öl1da öl2d1a2d öl2d1a2k öl2d1a2la öl2d1alj öl2d1alk öl2d1a2n öl2dap öl2d1as öl2d1á2 öl2deg öl1de öl2de1p2 öl2dev öl2d1éd öl1dé öl2dél öl2d1ing öl1di öl2di2p öl2d1o2r öl1do öl2dos öl2d1ó2 öl1dÅ‘2 öl2dÅ‘r öl2dÅ‘s öl1d1ró öld1s2 öl2du2r öl1du öl2d3z 1ö2l1e2b ö1le öle2gel öle1ge öleg1g2 ö2lel ö2l1e2r ö3l2e3sü öle2t1á2 öle2t1el öle1te öle2to öle2t1u ö2l1e2v ölé2d ö1lé ö2l1é1de 1ö2lé1é ö2l1é2g ö2l1é2kes ölé1ke ö2l1é1kí ö2l1é2l. ö2l1é2le ö2l1é2lé ö2l1élh ö2l1é2li ö2l1élj ö2l1éln ö2l1éls ö2l1élt ö2l1élv ö2l1é1me ö2l1é2ne1ke ölé1ne ö2l1é2p ö2l1é2r. ö2l1é2red ölé1re ö2l1é2rek ö2l1é2rezn ö2l1é1ré ö2l1érh ö2l1é2ri ö2l1érj ö2l1érk ö2l1érl ö2l1érn ö2l1érs ö2l1ér1te ö2l1ér1té ö2l1ér1tü ö2l1é2rü ö2l1érv ö2l1érz ölés3s ö2l1é2tet ölé1te öl1fr öl1gyá2 ölg2y öl2gyer öl1gye ö2l1i2d ö1li öli2g ö2l1i1ga ö2l1i1gé ö2l1ig2y ö2l1ij ö2l1il ö2l1im ö2l1i2n ö2l1i2p ö2l1i2r ö2l1i2s ö2l1i2ta ö2l1itt ö2l1iz öl1í2r ö1lí öl1í2v öl1o2c ö1lo öl1o2k öl1ol öl1or öl1o2s öl1ó2v ö1ló ölö2ki ö1lö ö2l1ökl ö2l1öl öl1önt ö2l1ör ö2l1ö2v öl1Å‘rl ö1lÅ‘ öl1Å‘1rö ölpár1ba2 öl1pá öl1p2r öl1sk öl1sr öl1st öl2t1ad öl1ta öl2taj ölt1a1la ölt1alj ölta2n öl2tid öl1ti öl2til öl2tí öl1t1ro öl2tur öl1tu öl1u2g ö1lu öl1uj öl1u2s öl1u2t öl1új ö1lú öl1ús ö2l1üd ö1lü ö2l1üg ölü2le ö2l1ül1té ö2l1ül1tö ö2l1ül1ve ö2l1üs ö2l1üt ö2l1üv ö2l1üz ö2l1űz ö1lű ö2ly1a2 öl2y ö2ly1á öly1e2g ö1lye ö2lyel öly2föl öly1fö öm1a2d ö1ma öm1a2g öm1al öm1a2n öm1a2p öm1ar öm1a1u öm1áb ö1má öm1ág öm1áh öm1ál öm1áp öm1á2r öm1á2t öm1áz öm2b1a2c öm1ba öm2b1ak ömba2l öm2b1a2n öm2ba1u öm2baz öm2b1á öm2bec öm1be ömb1e1le öm2b1e2m öm2b1es öm2bék öm1bé öm2b1i2d öm1bi öm2bin öm2bí öm2b1os öm1bo öm2b1ó2 öm2bú öm2bür öm1bü ö2m1e2b ö1me öme2g1a2 öme2g1e2r öme1ge öme2ges2z öme2g1ék öme1gé öme2gép ömeg3g2 öm1eg2y ö2m1e2l ö2m1ember ömem1be ö2m1emel öme1me ö2m1e2r öme2s ö2m1e1se ö2m1es1te ö2m1ég ö1mé ö2méhs ö2m1é2l ö2m1é2nekb ömé1ne ö2m1é2ne1ke ö2m1é2ne1ké ö2m1é2nekh ö2m1é2nek1k2 ö2m1é2nekr ömé2ny1ü ömén2y ö2m1ép ö2m1é2r. ö2m1ér1te ö2m1ér1té ömés3s öm1gr ömi2g ö1mi ö2m1i1gé ö2m1in ö2m1i2p ö2m1i2ta ö2m1itt ö2m1izm ö2m1i2zo öm1í2z ö1mí ömkés2z1 öm1ké öm1kl öm1kr ömlés3s öm1lé 1ömlöt öm1lö öm1o2k ö1mo öm1o2l öm1or öm1os öm1ó2d ö1mó öm1ó2r ö2m1önt ö1mö öm1p2r öm1sp öm1st öm1tr öm1u2g ö1mu öm1uj öm1u2t ö2m1üg ö1mü ö2m1ünn ö2m1üv ö2m1üz ö2m1űz ö1mű ön1ab ö1na ön1a2d ön1a2g ön1a2j ön1a2k ön1a2l ön1am ön1a2n ön1a2p ön1ar ön1as ön1at ön1a1u ön1a2v ön1az ön1áb ö1ná ön1ág ön1ál ön1ám ön1á2p ön1á2r ön1á2t önát1a2d2ó. öná1ta öná2ta1dó öná1t1é ön1áz önbé2ké2t. ön1bé önbé1ké ön1bl ön2c1ál ön1cá ön2c2h ön2cÅ‘ ön2c3ség önc2s ön1c1sé önc3s2z ön2c2z ön2dab ön1da ön2dap önde2m ön1de ön2d1é2r. ön1dé ön2d1érn ön2d1érr ön2d1ér1tÅ‘ ön2d1or ön1do ön2d1Å‘ ön2d2z ö2n1eb ö1ne ö2n1e2d ö2n1ef ö2n1eff ö2n1e2g ö2n1e2l ö2n1e2m öne2n ö1n1e1ne ö2n1e2r ö2n1es ön1e2v ön1ex ön1é2g ö1né ö2n1éj ö2n1é2k ö2n1é2l ö2n1é2p ön1é1ri ön1érl ön1ér1te ön1érv önés3s ön1és2z ö2n1é1te ö2n1étt ö2n1é2v. ö2n1é2ves öné1ve ö2n1é2vet ö2n1é2vér öné1vé ö2n1é2vét ö2n1évv önfe2lem ön1fe önfe1le ön1f2r ön1g2l ön1g2r öngy1as öng2y ön1gya ön2gyék ön1gyé öngy1ó2r ön1gyó 2ön1gyö ön2gyÅ‘ ö2n1i2d ö1ni ön1if ön1iff öni2g ö2n1i1ga ön1i1ge ö2n1i1gé ön1ill ö2n1im ö2n1in ö2n1i2p ö2n1i2r ö2n1is ön1i1ta ö2n1i2z ön1íj ö1ní ö2n1ír ö2n1íz ön2k1ag ön1ka ön2k1an2y önk1á1ru ön1ká ön2kát önk1olt ön1ko ön2k1ú ön1kü2 önmeg1g2 ön1me önna2k2 ön1na ön2n1á önny1a2d ön2n2y ön1nya ön1ny1á önny1e2d2z ön1nye ön3nyú ön1o2d ö1no ön1o2k ön1op ön1or ön1os ön1ox ön1ó2c ö1nó ön1ó2r ön1óv ön1öb ö1nö ö2n1ör ö2n1ö2v ön1Å‘r ö1nÅ‘ önÅ‘2re ön1Å‘z ön1pl ön1pr ön1ps önségü2ké ön1sé ön3sé1gü ön1s2p önst2 öns2z2 ön2t1ell ön1te öntgen1n önt1ge öntös3s ön1tö 1öntöz ön1t2ra ön1t2rá ön1t2ré ön1ud ö1nu ön1un ön1u2r ön1u2s ön1u2t ön1új ö1nú ön1ú2s ön1út ön1üd ö1nü ö2n1ü2g ö2n1ür ö2n1ü2t ö2n1üz ö2ny1a2 ön2y ö2ny1á öny1d ö2ny1el ö1nye ö2ny1id ö1nyi ö2ny1in ö2nyí ö2ny1o ö2nyüz ö1nyü öny2vaj öny1va öny2v1a2l öny2van öny2v1á2r öny1vá öny2v1e2g öny1ve öny2v1er öny2v1es2z öny2vev öny2v1ég öny1vé öny2vél öny2v1é2r. öny2v1ill öny1vi öny2v1í öny2v1o ö1o ö1ó ö1ö ö1Å‘ öp1aj ö1pa öp1a2l öp1ál ö1pá öp1e2l ö1pe öpe2nyá2 öpen2y öp1e2r ö2p1ép ö1pé öp1ö2lÅ‘ ö1pö ör1ab ö1ra ör1a2c ör1a2d ör1a2g ör1aj ör1a2k ör1a2l ör1a2n ör1a2r ör1as ör1a2t ör1a2u ör1a2x ör1a2z ör1áb ö1rá ör1á2c ör1á2g ör1á2l ör1á2r ör1á2s ör1á2t ör1br örcs1ál örc2s ör1c1sá örcs1ell ör1c1se örcskés2z1 örcs1ké ör2csos ör1c1so 2ör1dí ör1d2r 2ör1dü ö2r1e2c ö1re ör1e2d2z ö2r1ef ö2r1eff öre2ga öre2g1ék öre1gé ör1e2g2y öre2j1á öre2k1e2s2z öre1ke öre1ké2 ö2r1e2l ö2r1em ör1enc ö2r1e2p ö2r1e2r ör1e2se ö2r1e2te1tÅ‘ öre1te ö2r1e2v ö2r1ex ö2r1ez ö2r1é2de ö1ré ö2r1é2g ö2r1é2j. ör1éks ö2r1é2l ö2r1éne1ke öré1ne ö2r1ép ö2r1é1ré ö2r1é2ri öré2sel öré1se öré2t1e2g öré1te ö2r1étv ö2r1é2v2e. öré1ve ö2r1évk ör2fá ör2f1év ör1fé ör2f1i2p örf8i ör2ï¬2p örï¬ Ã¶r2fis ör2ï¬s ör2f1os ör1fo ör2fÅ‘r ör1fÅ‘ ör1g2r ö2r1i2d ö1ri öri2g ö2r1i1ga ö2r1i1gá öri2k ör1i1ko ö2r1ill ö2r1im ö2r1ind ö2r1ing ö2r1inj ö2r1ink ö2r1int ö2r1inv ö2r1i2p ö2r1i1ra ö2r1i2s ö2r1i2ta ör1itt ö2r1i1vá ör1i2zo ö2r1ír ö1rí ö2r1í2v ö2r1í2z ör1k2l ör2k1öl1tÅ‘ ör1kö ör1k2r örle2ta ör1le ör2l1in ör1li örny1a2l örn2y ör1nya örny1a2n örny1as örnye2l ör1nye örny1e1le ör2ny1er ör2nyéj ör1nyé ör2nyés örny1í2r ör1nyí ör2nyó ör1ob ö1ro ör1o2k ör1o2l ör1op ör1o2r ör1os ör1ó2r ö1ró 2örög ö1rö örö3g2e 1ö2rö1mü ö2r1önt ö2r1ör ö2rös5s1ze örös2s2z ö2r1ös2z örpe1t2 ör1pe ör1s2p ör1s2v örta2r ör1ta örtá2v1 ör1tá örtele1s ör1te örte1le örteles2z2 ör2t1éks ör1té örté2l ör2t1é1lé ör2t1é1lÅ‘ ört1ér1ne örté2s2z ör2t1ok ör1to ör2top ör1ud ö1ru ör1uj ör1u2n ör1u2r ör1u2s ör1u2t ör1új ö1rú ör1úr ör1ú2t ö2r1üd ö1rü ö2r1ü2g örü2l1ék örü1lé ö2r1ür ö2r1üs ö2r1üt ö2r1ü2v ö2r1üz 1ör2v. örva2s ör1va 1örvb 1örvek ör1ve 1örvem 1örvet 1örvéb ör1vé 1örvéh 1örvév 1örvh 1örvn 1örvr 1örvt 1ör1vü 1ör1vű 1örvv örz4s ör2z1s1á2 ör2zs1e2l ör1z1se ör2zsid ör1z1si ör2zsin ör2zsir ör2z1s1í2 ör2z1s1o ör2z1só ör2z1su ör2z1sú ös1a2g ö1sa ös1al ös1ár ö1sá ö2s1el ö1se öses3s ö2s1ez ösi1é2 ö1si ö2s1i2p ös1k2r ös1o2l ö1so ös1o2r összá2r ös2s2z ös1s1zá ös5s1ze/sz=,2,1 1összeg össz1emb 1összes ös3s1zí ös2t1arc ös1ta ö2s1ü2v ö1sü ö2s1z1a2 ös2z ösz1e2r ö1s1ze öszi2s ö1s1zi ös2z1is2z ö2s1z1o2 ö2s1z1Å‘ ösz2t1ell ösz1te öt1ab ö1ta öt1aj öt1a2k öt1a2l öt1am öt1as öt1a2t öt1áb ö1tá öt1ág öt1ál öt1ár öt1á2s öt1e1ké ö1te öt1e2m öt1ep öt1es öte2t1a2 öte2tel öte1te öte2u öt1e2v öt1e2z öté1lé2 ö1té öté2lék öté2l1o ö1t1ér1té öt1érz ötés3s öt1é2ves öté1ve öt1f8l öt1fl öt1fr öt1gr öt1i2r ö1ti öt1í2v ö1tí öt1kr 1ötlet öt1le ötle2t1á 1öt1lé öt1ok ö1to öt1ol öt1or öt1os öt1ó2r ö1tó ö2tödb ö1tö 1ö2tödd 1ö2töd1ne 1ö2tödöt ötö1dö 1ö2tödr 1ö2tö1dü 1ö2tös ötÅ‘1a2 ö1tÅ‘ ötÅ‘1e2 ötÅ‘1é2 öt1pr öt1sc öt1st öt2t1a2c öt1ta öt2tar öt2t1as öt2t1ál öt1tá öttá2r ött1er1k2 öt1te ött1ér1te öt1té öt2t1ut öt1tu öt1uj ö1tu öt1un öt1u2t öt1ü2l ö1tü ötve2n1ez öt1ve ötve1ne ö1u ö1ú ö1ü ö1ű öv1ab ö1va öv1ak öv1á2r ö1vá öv1e2d2z ö1ve öve2g1a2 öveg1és öve1gé öveg1g2 öve2go öv1e2r öve2t1a2 öve2teg öve1te öve2t1é2l öve1té öve2to öve2t1ú övetü2l öve1tü öve2t1ü1lé ö2v2é. ö1vé öv1ég öv1é2j övé2nye2l övén2y övé1nye övé2nyer övé2nyö2 övé2s1za övés2z öv2é2s1zá övé2szer övé1s1ze övé2s1zo öv2é2s1zö övé2szü2l övé1s1zü övi2dá ö1vi ö2vih övis3s ö2viv öv1or ö1vo öv1ó2d ö1vó öv1ölt ö1vö övÅ‘rés3s ö1vÅ‘ övÅ‘1ré öv1ut ö1vu öz1ab ö1za öz1a2c öz1a2d öz1a2j öz1a2k öz1a2l öz1a2m öz1a2n öz1a2p öz1a2r öz1at öz1a1u öz1az öz1á2g ö1zá öz1ál öz1á2m öz1á2p öz1á2r öz1á2t özá1t1é öz1d2r ö2z1e2b ö1ze ö2z1e2d öze2gel öze1ge ö2z1egés öze1gé öze2gé2s2z1 ö2z1e2g2y ö2z1e1la öze2le1me öze1le ö2z1e2m öz1eng öz1ent ö2z1epr ö2z1er ö2z1es öze2t1é2k öze1té öze1tÅ‘2 öze2t1Å‘r ö2z1e2v ö2z1ég ö1zé ö2z1é2je özé2k1e2l özé1ke ö2z1é2le2l özé1le ö2z1é2le2t. ö2z1é2lé ö2z1élm ö2z1élt özé2m ö2z1é1me özé2p1a öz2é2p1el özé1pe özé2p1em özé2pí ö2z1épít özé2p1o2 ö2z1é2r. ö2z1érb ö2z1ér1d2 ö2z1érh ö2z1é2ri özér2t1e2h özér1te ö2z1érte1le ö2z1ér1té ö2z1ér1tÅ‘ ö2z1érv ö2z1érz ö2z1étk öz1fr özi2g ö1zi ö2z1i1ga özigaz1 ö2z1i1gá ö2z1i1gé ö2z1ig2y ö2z1i2ko ö2z1ikt ö2z1ill ö2z1i2m ö2z1inf ö2z1inff ö2z1ing ö2z1inp ö2z1int ö2z1i2nú ö2z1inv ö2z1i1ra ö2z1i1rá ö2z1i2ri ö2z1i1ro ö2z1i1ró öz1is1ko ö2z1ism ö2z1isp ö2z1i2s2z ö2z1iz öz1ír ö1zí öz1íz özmeg1g2 öz1me öz1ob ö1zo öz1o2k öz1ol öz1op öz1os öz1ov öz1ó2h ö1zó öz1ón 1ö2zönt ö1zö ö2z1ö2r ö2z1ös2s2z ö2z1öv özÅ‘1a2 ö1zÅ‘ özÅ‘e2r özÅ‘1e öz1Å‘2r. ö2z1Å‘rk öz1Å‘2rö özÅ‘1sp öz1pl öz1p2r ö1z3sa öz2s ö1z3sá ö1z3se ö1z3sé öz3s2k ö1z3so öz3s2p ö1z3sú öz3s2z öz1t2r öz1ug ö1zu öz1u2n öz1ur öz1ut öz1ú2r ö1zú öz1út ö2z1üd ö1zü ö2z1ü2g ö2z1ünn ö2z1üt ö2z1üv ö2z1ü2z öz3z2s 2Å‘. Å‘1a Å‘a2da Å‘a2dá Å‘adás1s Å‘adá2s2z Å‘a2do Å‘a2dó Å‘a2du Å‘a2ga Å‘a2gá Å‘a2gi Å‘a2g2y Å‘agyag1 Å‘a1gya Å‘a2ja Å‘a2já Å‘a2ka Å‘a2ká Å‘a2kó Å‘a2la Å‘ala2g1 Å‘a2l1e Å‘a2lo Å‘a2mÅ‘ Å‘a2na Å‘a2no Å‘a2nó Å‘a2nyá Å‘an2y Å‘a2pa Å‘2apar Å‘a2pá Å‘a2po Å‘a2pó Å‘a2pu Å‘a2ra Å‘a2rá Å‘a2ri Å‘a2ro Å‘a2s2z Å‘a2to Å‘a2t2y Å‘a2ul Å‘a1u Å‘a2ur Å‘a2ut Å‘autói2k Å‘a2u1tó Å‘1autó1i Å‘a2va Å‘a2xi Å‘a2zo Å‘1á őá2c2s őá2ga1i őá1ga őá2gak őá2gas őá2gat őá2gá őá2gé őá2gi őá2go őá2gú őá2g2y őá2hí őá2la őá2lo őá2mí őá2po őá2ra őá2rá őá2re2 őár1em őá2ri őá2ro őá2ru őá2rú őá2sa őá2sá őá2so őá2só őá2su őá2s2z őá2ta őá2t1á2 őá2t1e2 őá2té őá2tí őá2tü őá2vó Å‘ba1p Å‘1ba Å‘b2le Å‘b2lo Å‘b2ri Å‘b2ro Å‘b2ró Å‘b2ru Å‘c1ap Å‘1ca Å‘c3c1so Å‘c2c2s Å‘c1gr Å‘1c3há Å‘c2h Å‘1c3hé Å‘1c3hö Å‘c2lu Å‘2cs1a1la Å‘c2s Å‘1c1sa Å‘csa2p1á2g Å‘csa1pá Å‘2cs1é2j Å‘1c1sé Å‘2cs1é2rü Å‘cs1Å‘st Å‘1c1sÅ‘ Å‘cs1s Å‘c3s2z Å‘1d1a2da Å‘1da Å‘d1a2dá Å‘2d1a2lap Å‘da1la Å‘daráz2s1 Å‘da1rá Å‘2d1a1u Å‘d1ál Å‘1dá Å‘d1á2z Å‘de1a2 Å‘1de Å‘2d1e2g Å‘d1eld Å‘d1elj Å‘d1elk Å‘d1e2lÅ‘ Å‘d1els Å‘2d1ép Å‘1dé Å‘2d1ér1te Å‘2d1érz Å‘dé2sa2 Å‘dé2so Å‘dés3s Å‘dé2s3z Å‘2d1id Å‘1di Å‘di2g Å‘2d1i1ga Å‘2d1ind Å‘d1int Å‘2d1isk Å‘2d1op Å‘1do Å‘d1ost Å‘2d1ö2l Å‘1dö Å‘2d1öv Å‘d1Å‘2r. Å‘1dÅ‘ Å‘d1Å‘2ré Å‘d1Å‘rn Å‘d1Å‘rr Å‘d1Å‘rt Å‘2d1Å‘st Å‘d1pr Å‘d2ram Å‘d1ra Å‘d2rap Å‘1d2rá Å‘1d2res Å‘d1re Å‘1d2rog Å‘d1ro Å‘1d2ró Å‘1d2ru Å‘d1s2t Å‘d1t2r Å‘2d1üg Å‘1dü Å‘2d1üz Å‘2d3zá Å‘d2z Å‘1e Å‘e2ce Å‘e2c2s Å‘e2dé Å‘e2d2z Å‘e2ge Å‘e2gé Å‘e2g2y Å‘e2k2e. Å‘e1ke Å‘e2kék Å‘e1ké Å‘e2la Å‘e2l1á2 Å‘e2lek Å‘e1le Å‘e2le1mé Å‘e2lemg Å‘e2lemh Å‘e2lemm Å‘e2lemn Å‘e2lemr Å‘e2le1mü Å‘e2li Å‘e2lo Å‘e2lö Å‘e2lÅ‘d Å‘e1lÅ‘ Å‘e2lü Å‘e2ma Å‘e2me Å‘e2mé Å‘e2mu Å‘e2ne Å‘e2pi Å‘e2po Å‘e2re Å‘e2ré Å‘e2rÅ‘d Å‘e1rÅ‘ Å‘e2rÅ‘1é Å‘e2rÅ‘h Å‘e2rÅ‘2i. Å‘erÅ‘1i Å‘e2rÅ‘k Å‘e2rÅ‘m Å‘e2rÅ‘1rÅ‘ Å‘e2rü Å‘e2sé Å‘e2si Å‘e2sÅ‘ Å‘e2ta Å‘e2te Å‘e2ti Å‘e2un Å‘e1u Å‘e2vé Å‘e2vi Å‘e2vo Å‘e2vÅ‘ Å‘e2ze Å‘1é őé2de őé2et őé1e őé2ge őé2gé őé2gi őé2gÅ‘ őé2hem őé1he őé2hes őé2ji őé2ke őé2ké őé2kí őé2lé őé2lÅ‘ őé2lű őé2nekb őé1ne őé2ne1ke őéne2kest Å‘1é2nekes őé2ne1ké őé2nek1k2 őé2nekr őé2pí őé2pü őé2rem őé1re őé2re2n őé2rez őé2ré őé2ri őé2tek őé1te őé2va őé2v2e. őé1ve őé2vek őé2ves őé2vet őé2véb őé1vé őé2vén őé2vér őé2vét őé2vi Å‘fa2l1a2d Å‘1fa Å‘fa1la Å‘f2la Å‘f8l őfla őfl Å‘f2le őfle Å‘f2lo őflo Å‘f2ló őfló Å‘f2lö őflö Å‘f2lu őflu Å‘fo2kál Å‘1fo Å‘fo1ká Å‘fo2kér Å‘fo1ké Å‘fo2kin Å‘fo1ki Å‘f2ra Å‘f2rá Å‘f2ri Å‘1f2ro Å‘f2rö Å‘ga2z1 Å‘1ga Å‘3g2é2p1e2l Å‘1gé Å‘gé1pe Å‘gépü2l Å‘gé1pü Å‘gé2p1ü1lé Å‘gés3s Å‘g2le Å‘g2ló Å‘g2nó Å‘2g1ö2l Å‘1gö Å‘g2ra Å‘g2rá Å‘g2ri Å‘g2ró Å‘gu1ba2 Å‘1gu Å‘gy1a2la Å‘g2y Å‘1gya Å‘gy1art Å‘2gyeg Å‘1gye Å‘2gyel Å‘gy1e2lÅ‘ Å‘gy1elv Å‘gy1elz Å‘2gyin Å‘1gyi Å‘2gy1ör Å‘1gyö Å‘han1gá2 Å‘1ha Å‘3hang Å‘han2g1á1ra Å‘1i Å‘i2de1a Å‘i1de Å‘i2de1á Å‘i2deg Å‘i2de1o Å‘i2dén Å‘i1dé Å‘i2do Å‘i2dÅ‘ Å‘i2ga Å‘i2ge Å‘i2gé Å‘2i1gu Å‘i2g2y Å‘i2ko Å‘i2ma Å‘i2má Å‘i2mi Å‘im1p2l Å‘i2nas Å‘i1na Å‘i2on Å‘i1o Å‘i2pa Å‘i2ra Å‘i2rá Å‘i2ri Å‘i2ro Å‘2i1ru Å‘i2si Å‘i2s2z Å‘i2ta1la Å‘i1ta Å‘i2ta1lá Å‘i2ta1lé2 Å‘i2ta1li Å‘i2tall Å‘i2va Å‘i2vá Å‘i2vó Å‘i2zé Å‘i2zo Å‘1í őí2gé őí2ja őí2ra őí2rá őí2ro őí2ró őí2ru őí2vá őí2ve őí2vé őí2vi őí2vükb őí1vü őí2vü1ke őí2vün őí2vű őí2ze őí2zü őí2zű Å‘je2gy1á2 Å‘1je Å‘jeg2y Å‘job2b1ol Å‘1jo Å‘job1bo Å‘job2b1ó Å‘jogá2s1zi Å‘jo1gá Å‘jogás2z Å‘ke1k2 Å‘1ke Å‘ke1p2 Å‘kes2 Å‘ke1sp Å‘ke1st Å‘k2é2p1el Å‘1ké Å‘ké1pe Å‘ké2s1el Å‘ké1se Å‘ki1á2 Å‘1ki Å‘ki1e2 Å‘k2la Å‘k2le Å‘k2li Å‘k2lí Å‘k2ló Å‘k2lu Å‘kó1ro2 Å‘1kó Å‘1k2ra Å‘1k2rá Å‘1k2re1á Å‘k1re Å‘k2red Å‘1k2ré Å‘1k2ri Å‘1k2rí Å‘1k2ro Å‘1k2ró Å‘k2va Å‘le1í2 Å‘1le Å‘lés3s Å‘1lé Å‘lőé2r Å‘1lÅ‘ Å‘lÅ‘1é Å‘lÅ‘t2 Å‘lÅ‘1tr Å‘ma2gár Å‘1ma Å‘ma1gá Å‘mag1g Å‘ma2g1ó2 Å‘műé2h Å‘1mű Å‘mű1é Å‘műé2n Å‘műt2 Å‘2n1e2ke Å‘1ne Å‘2n1ems Å‘né1ve2 Å‘1né Å‘né2v1es Å‘2ny1a2d Å‘n2y Å‘1nya Å‘nya2g Å‘2ny1a1ga Å‘ny1a2la Å‘ny1á1ra Å‘1nyá Å‘ny1á2ro Å‘2nyát Å‘2nyef Å‘1nye Å‘2ny1eff Å‘nye2lem Å‘nye1le Å‘2ny1elh Å‘2ny1ell Å‘2ny1e1lo Å‘2ny1em Å‘2ny1élv Å‘1nyé Å‘2ny1Å‘ Å‘2nyüz Å‘1nyü Å‘1o Å‘o2áz Å‘o1á Å‘o2be Å‘o2dú Å‘o2ká Å‘o2k1i2 Å‘o2kí Å‘o2ko Å‘o2la Å‘ol2a2j1á2r Å‘ola1já Å‘ola2je Å‘o2pe Å‘o2rá Å‘o2ri Å‘o2ro Å‘o2so Å‘o2ve Å‘o2xi Å‘1ó őó2ce őó2ha őó2no őó2nu őó2ra őó2rá őó2ri őó2va őó2vó Å‘1ö őö2bö őö2dé őö2ko őö2kö őö2lé őö2lÅ‘ őö2na őö2re őö2rö őö2ve őö2vé őö2vi őö2vö őö2zö Å‘1Å‘ őő2re őő2ré őő2ri őő2rö őőr2s1égb őőr1sé őőr2s1égn őő2se őő2si Å‘párba2jo Å‘1pá Å‘pár1ba Å‘p2la Å‘p2le Å‘p2lé Å‘p2ne Å‘ponc1 Å‘1po Å‘po2ral Å‘po1ra Å‘p2re Å‘p2ré Å‘prés1s Å‘p2ri Å‘p2ro Å‘p2ró Å‘p2s2z Å‘r1a2dó Å‘1ra Å‘r1a2gá Å‘r1agg Å‘r1ajk Å‘raj2t1ól Å‘raj1tó Å‘r1akc Å‘2r1a2l Å‘ra1l1e Å‘ra2n Å‘r1an2y Å‘r1ap Å‘2r1a2r Å‘2r1a2s Å‘2r1at Å‘2r1a1u Å‘2r1a2z 1Å‘2r1áb Å‘1rá Å‘rádi2ók Å‘rá1di Å‘rádi1ó Å‘r1ág2y Å‘rá2k1e Å‘2r1á2l Å‘2r1á2p Å‘2r1á2ru 1Å‘r1bí 1Å‘r1bl 1Å‘r1br 2Å‘re1a Å‘1re Å‘reá2li Å‘re1á Å‘re1e2 Å‘re2get Å‘re1ge Å‘r1e2gye Å‘reg2y Å‘rei2g Å‘re1i Å‘2r1ekc Å‘2r1ekh Å‘re2lem Å‘re1le Å‘r1elh Å‘2r1ell Å‘r1e2lÅ‘1a Å‘re1lÅ‘ Å‘r1els Å‘r1elt Å‘2r1elv Å‘2r1emb Å‘r1eml Å‘ren2d1Å‘2 Å‘r1enz Å‘re1o2 Å‘re1p2rog Å‘rep1ro Å‘2r1e2sÅ‘ Å‘re1u2 Å‘re1ü2 Å‘2r1ex 1Å‘2r1ezr 1Å‘2r1é2g. Å‘1ré 1Å‘2r1égn 1Å‘2r1égt 1Å‘2r1ékh Å‘r1ék1né Å‘r1éks Å‘2r1é2l Å‘r1é2pü Å‘2r1é2ri Å‘ré2sa2 Å‘ré2s1za Å‘rés2z 1Å‘2ré1ü Å‘2r1é2v2e. Å‘ré1ve Å‘r1é2vek Å‘r1f8l Å‘r1fl 1Å‘r1fÅ‘ Å‘r1fr Å‘r1g2r Å‘2r1i2d Å‘1ri Å‘2r1if Å‘2r1iff Å‘2r1i2ga Å‘2r1i2gá Å‘r1i1ha Å‘r1ill Å‘2rim Å‘r1i1mi Å‘r1i2na Å‘r1ind Å‘2r1inf Å‘2r1inff Å‘2r1int Å‘r1i2pa Å‘ri2s1á Å‘r1i1vá Å‘r1i2z2é. Å‘ri1zé Å‘2rizg Å‘r1izm Å‘r1i2zo Å‘r1ír Å‘1rí 1Å‘r1jö Å‘r1k2l Å‘r1k2r 1Å‘r1lö Å‘2r1ok1t2 Å‘1ro Å‘r1old 1Å‘2r1o2li Å‘r1oll Å‘2r1olt Å‘2r1or Å‘2r1os2z Å‘2r1ó2r Å‘1ró Å‘3rög Å‘1rö 1Å‘2rö1kü Å‘2röl 1Å‘2rö1mü Å‘r1öng Å‘2r1ör Å‘2r1ös5s1ze/sz=,4,1 Å‘rös2s2z 1Å‘2r1Å‘r Å‘1rÅ‘ Å‘2r1Å‘2s 1Å‘rÅ‘sr Å‘2r1Å‘2z Å‘r1pl Å‘r1p2r 1Å‘r1p2s 1Å‘r2s. Å‘r2s1ág Å‘r1sá Å‘r2s1ál 1Å‘r1sí 1Å‘r1sö Å‘r1s2pe Å‘r1s1pi Å‘r1s1rá Å‘rs3s Å‘r1s2z2 Å‘r2s3zöm Å‘r1s1zö 1Å‘r1t2r 1Å‘2r1un Å‘1ru 1Å‘2r1u2r Å‘r1u1tá Å‘2r1új Å‘1rú Å‘r1úr Å‘2r1út Å‘2r1üd Å‘1rü Å‘r1üld 1Å‘2rü1le Å‘2r1üs Å‘2r1üt Å‘2r1üz 2Å‘rzÅ‘1sö Å‘r1zÅ‘ Å‘2s1ad Å‘1sa Å‘2s1a2g Å‘s1ajtób Å‘saj1tó Å‘2s1ajtók Å‘sa2n Å‘s1a1na Å‘sa2p Å‘s1arc Å‘s1ass Å‘s1a1u Å‘2s1áb Å‘1sá Å‘2s1á2g Å‘sá2l Å‘s1áll Å‘s1á1ra Å‘s1árv Å‘s1dr Å‘s1e2d Å‘1se Å‘2s1e2ge Å‘2s1e2g2y Å‘s1elm Å‘s1e2lÅ‘ Å‘s1elv Å‘2s1e2m Å‘se2n Å‘s1e1ne Å‘se2p Å‘s1e1pi Å‘s1e1po Å‘2s1e2rej Å‘se1re Å‘2s1e2rÅ‘ Å‘s1ess Å‘s1es2z Å‘s1etn Å‘2s1e2v Å‘2s1ez Å‘sé2g1e2l Å‘1sé Å‘sé1ge Å‘2s1é2ger Å‘sé2gés Å‘sé1gé Å‘2s1ék Å‘2s1é2l Å‘s1ép Å‘s1f8l Å‘s1fl Å‘s1fr Å‘s1gn Å‘s1gr Å‘2s1i2d Å‘1si Å‘2s1if Å‘2s1iff Å‘si2g Å‘2s1i1ga Å‘s1i2ma Å‘s1i2má Å‘s1i1mi Å‘2s1inf Å‘2s1inff Å‘s1ing Å‘s1int Å‘2s1i2pa Å‘s1i2ra Å‘s1ist2 Å‘s1i2s2z Å‘2s1i2z Å‘sí2ka Å‘1sí Å‘s1í2ró Å‘s1í2z Å‘s2kál Å‘s1ká Å‘s1kl Å‘s1k2r Å‘s1kv Å‘s2lat Å‘s1la Å‘s2nit Å‘s1ni Å‘s1ob Å‘1so Å‘so2k Å‘s1o1ko Å‘2s1o2l Å‘2s1op Å‘2s1org Å‘2s1os Å‘s1óc Å‘1só Å‘s1ó1ri Å‘2s1ö2l Å‘1sö Å‘s1önz Å‘sö2r Å‘2s1örd Å‘s1ö1re Å‘s1ö1rö Å‘2s1örv Å‘2s1ö2z Å‘s1Å‘r Å‘1sÅ‘ Å‘s1Å‘2s Å‘s2pec Å‘s1pe Å‘s2pek Å‘s1p2l Å‘s2pór Å‘s1pó Å‘sp2r Å‘s2rác Å‘s1rá Å‘s1sk Å‘s1s2p Å‘s1s2t Å‘s2s2z2 Å‘s3s1za Å‘s3s1zá Å‘s3szeg Å‘s1s1ze Å‘s3szek Å‘s3szell Å‘s3szem Å‘s3szen Å‘s3szer Å‘s3szes Å‘s3szék Å‘s1s1zé Å‘s3szén Å‘s3szf Å‘s3szff Å‘s3s1zi Å‘s3s1zí Å‘s3szl Å‘s3s1zo Å‘s3s1zó Å‘s3s1zö Å‘s3s1zÅ‘ Å‘s3s1zu Å‘s3s1zü Å‘s2tad Å‘s1ta Å‘s2tat Å‘1s2tát Å‘s1tá Å‘1s2te1ri Å‘s1te Å‘s2tég Å‘s1té Å‘s2til Å‘s1ti Å‘st2r Å‘s1t1re Å‘s1un Å‘1su Å‘su2t Å‘s1u1ta Å‘2s1ú2r. Å‘1sú Å‘s1ú2s Å‘sza2k1e Å‘s2z Å‘1s1za Å‘sza2k1ü2 Å‘sz1e2lÅ‘ Å‘1s1ze 2Å‘szer1k2 Å‘2s2ze2rÅ‘ Å‘sz1est Å‘szi2l1i2 Å‘1s1zi Å‘sz1ill Å‘sz1ist2 Å‘szö2l Å‘1s1zö Å‘sz1ö1lé Å‘sz1ö1lÅ‘ Å‘sz1ölt Å‘s3z1se Å‘sz2s Å‘sz3sir Å‘s1z1si Å‘szt2 Å‘2s3zű1rű Å‘1s1zű Å‘ter1mo1 Å‘1te Å‘termos2z2 Å‘tes2t1Å‘2 Å‘tol2l1a2d Å‘1to Å‘tol1la Å‘1t2ra Å‘1t2ré Å‘1t2ri Å‘t2ro Å‘1t2ró Å‘ttes3s Å‘t1te Å‘t2tés Å‘t1té Å‘tt1int Å‘t1ti Å‘t2t1o2 Å‘t2t1u2 Å‘tű1fé2 Å‘1tű Å‘tűfél1 Å‘1u Å‘u2go Å‘u2ni Å‘u2ra Å‘u2rá Å‘u2ru Å‘u2ta Å‘u2tó Å‘u2tu Å‘1ú őú2jo őú2ré őú2ri őú2ro őú2s2z őú2té őú2ti őú2to Å‘1ü őü2dü őü2ge őü2g2y őü2le őü2re őü2rí őü2s2z őü2te őü2té őü2ti őü2tö őü2tÅ‘ őü2ve őü2vö őü2ze őü2zé Å‘1ű őű2ré őű2ri őű2rö őű2zé őű2zÅ‘ Å‘vas1fé2 Å‘1va Å‘vasfél1 Å‘vár1a2l Å‘1vá Å‘vá1ra Å‘ve2r1a Å‘1ve 2Å‘vet Å‘vé2res Å‘1vé Å‘vé1re Å‘vé2ret Å‘2z1abs Å‘1za Å‘2z1a2d Å‘z1a2g Å‘2z1ak Å‘2z1a2l Å‘2z1a2t Å‘2z1a1u Å‘2z1ál Å‘1zá Å‘z1á2t1e2 Å‘z1bl Å‘zeg1g Å‘1ze Å‘ze2g1i Å‘z1e2g2y 1Å‘2zekn Å‘z1e1lo Å‘z1els Å‘z1elv Å‘z1elz Å‘2zem Å‘z1emb Å‘z1e2mel Å‘ze1me Å‘2z1e2r Å‘ze2t1a2 Å‘ze2t1eg Å‘ze1te Å‘ze2t1el Å‘z2e2ter Å‘ze2t1o Å‘2z1é2r. Å‘1zé Å‘zé2rem Å‘zé1re Å‘2z1é2ri Å‘2z1érl Å‘z1ér1té 1Å‘2zi1é Å‘1zi Å‘2zi2g Å‘z1i1gé Å‘2z1in Å‘2z1iz Å‘z1k2r Å‘z1o2k Å‘1zo Å‘z1ol Å‘z1os Å‘2z1ös2s2z Å‘1zö Å‘zÅ‘1a2 Å‘1zÅ‘ Å‘zÅ‘e2l Å‘zÅ‘1e Å‘zÅ‘e2r Å‘z1p2r Å‘z3saj Å‘z2s Å‘1z1sa Å‘z3sap Å‘z3sát Å‘1z1sá Å‘z3sik Å‘1z1si Å‘z3sis Å‘z3s2t Å‘2z3sü Å‘z3s2z Å‘z1t2r Å‘z1út Å‘1zú Å‘z1üg Å‘1zü Å‘2z1üs Å‘2z1ü2z Å‘z1ű2z Å‘1zű 2p. 1pa 2p1abl pa2cem pa1ce pa2c2h pa1cl pa2c1sú pac2s p1a2dag pa1da pad1a1la pa2d1as pa2d1á2l pa1dá pa1de2 pa2d1el pa2d1em p2a2d1id pa1di pa2d1i1ga p1a2dott pa1do pa2d2u. pa1du pa2dut pa2dül pa1dü pa2ed pa1e pae2r pae2t paé2r pa1é pa1f8l pa1fl pa1f2r pa2g2a. pa1ga pag2n pa1g1na pai2dé pa1i pa2i1ó 2p1aj1tó pa2kad pa1ka paka2r1ó pa2k1e2m pa1ke pa2k1é2r. pa1ké 2pak1ku pa1k1lu pa2k1ó2 p2a1k2ré 2p1akt2a. pak1ta pak2tal pak2t1e2l pak1te pak2t1es pak2t1e2v 2p1ak1ti pak2t1o2r. pak1to pak2t1orr pak2tos 2palag pa1la pala2g1ú pa2la1pí paláza2d pa1lá palá1za palá2z1a1dá pa2l1é2l pa1lé 2p1alf 2p1alff 2p1alg 2p1al1le 2p1al1má pal1ud pa1lu pam1ass p2amas pa1ma pa2m1ur pa1mu pamu2ta p2ana2d pa1na pa2n1ag pa2nal pan1a1la pa2n1á2r pa1ná panás1s pan1d2 pang1g pa2n1il pa1ni pan1k1ro p1an2n2y pa2nol pa1no pans2 pans2z2 pan1sz1t2 pa2nü p1a2nya pan2y p1a2nyu pa2p1ad 1pa1pa 1pa2p1a2pa p2apap papa2r pap1a1ra pa2p1aszt papas2z pap1áll pa1pá pa2p1il pa1pi pa2p1i2n2a. papi1na pa2p1i2p pa2p1o2ku pa1po pa2pö pap1p2 pa2p1ur pa1pu pa2p1u2t pa2pú 2par2a. pa1ra para2je p2araj par1a2la 2p1a2rann 2p1a2ran2y 2pa2r1a2r pa2r1á1gá pa1rá pa2r1ágn pa2r1á1go pa2r1ágv 2paráh 2p1a2ráj par1áll 2parár 2paráv 2parb 2p1ar2c. 2p1ar1ca 2p1arcc 2p1arc2h 2par1ci 2p1ar1co 2p1arct 2p1ar1cu 2p1ar1cú pa2r1el pa1re pa2r1é2l pa1ré 2parig pa1ri 2paril pa2r1ill par1isk par2k1a2l par1ka par2k1á par2kel par1ke par2k1in par1ki par2kov par1ko par2kó par2kön par1kö par2k1ö2v par2k1Å‘2 par2k1ü 2paro2s. pa1ro 2paro1si 2paro1so pa2rö pa2rÅ‘ 2parr pars2 par2tem par1te par2t1ol par1to par2t1Å‘2 pa2r1ü2 pa2rű past2 pa2sz1alj pas2z pa1s1za pasz1alt pa2szas 3pa1ta pat1a1da pata1kö2 p2atak pa2t1alk pat1a1nya p2atan patan2y pa2t1a1ra p2atar pat1álc p2atál pa1tá pa2t1ár1k2 p2atár pa2t1e2g pa1te pa2t1ell pate2s p2a2tél pa1té pa2t1é2r. p2atér pa2t1érd pa2t1é1re pa2t1ér1te pa1t2hé pa2tid pa1ti pa2t1int p2atin p2a2tir 2p1atk2a. pat1ka 2p1atkánk pat1ká patmo1s pat1mo pa2t1old pa1to pa2t1olt 2p1a2tom1be patom1b pa2t1os2z pa2t1otth pa2t1ut pa1tu pa2tús pa1tú pa1tü2 p2a2t1üz 2p1a2tya pat2y 2p1a2tyá pa2u2l. pa1u 2paur pau2ra p1a2vat pa1va pa1wh 2pa1xi pa2xi1ó 1pá 2p1á2bé 2p1ábr 2pá1ca 2pá1cá pá2c1e pá1cé2 pá2c3h pá2c3só pác2s pá2c1sö pá2c1sü 2p1á2g. 2p1á2ga 2p1ágg 2p1ág2y. pág2y 2p1á2gy2a. pá1gya 2p1á2gyac 2p1á2gyad pá2gyaib págya1i pá2gyaid pá2gyaih pá2gyaik pá2gyaim 2p1á2gyain pá2gyair p1á2gyakb pá2gya1ké pá2gya1ki p1á2gya1ko 2p1á2gyakr pá2gyakt 2p1á2gyal 2p1á2gyam 2p1á2gyan pá2gyast2 2p1ágyaz 2p1á2gyáb pá1gyá 2p1á2gy1á2l 2p1á2gyán pá2gyá1tó 2p1á2gyáv 2p1ágyb 2p1ágyc 2p1á2gy1e2 2p1á2gyé 2p1ágyf 2p1ágyff 2p1ágy1ga 2p1ágy1go 2p1ágyh 2p1á2gyi 2p1ágyj 2p1ágyk 2p1ágyl 2p1ágym 2p1ágy1ná 2p1á2gyos pá1gyo 2p1á2gyö 2p1ágyp 2p1ágyr 2p1ágys 2p1ágyt 2p1á2gyu pá2gyú 2p1á2gy1ü2 2p1ágyv 2p1ágyz 2p1ájt pá1la2 pá2lab pá2lac 2p1álar 2p1ál1do pá2le p1áll2a. pál1la 2pállap 2p1ál1lí 2p1állom pál1lo 2p1állv 2pál1mo pá2lü p2ál2y pálya1s pá1lya 2pá1mi 2p1á2mí pá2mu pá1na2 pá2naf pá2n1aff pá2n1am pá2n1an pá2nar pá2n1as pá2nár pá1ná pá2n1e2 pá2nék pá1né pá2nil pá1ni pá2nir pá2nis pá2ní pán1k1ré 2pánkt pá2n1ó2 pá2nö pá2nÅ‘ pán1s2z pán1te2 pán2tek pán2t1el pá2nü pá2ny1ad pán2y pá1nya pá2ny1a2l pá2ny1a2n pá2nyar pá2nyat pá2nya1u pá2nyaz pá2ny1e2 pá2nyér1d2 pá1nyé pá2nyim pá1nyi pá2nyö 2p1á2po pár1a1dó pá1ra 2páras 2párá1é pá1rá pár2d1a2 pár2del pár1de pá2r1e2 pá2r1i2p pá1ri pá2rÅ‘ pár1s2 pár2t1ag pár1ta 2pártal párt1an2y pár2ta1ri pár2tál pár1tá pár1te2 pár2t1el pár2tem pár2te2s pár2tet pár2tél pár1té pár2t1é2r. pár2t1é2te pár2tiz pár1ti pár2tott pár1to pár1tö2 pár2tök pár2t1Å‘ pár2tus pár1tu pár1tü2 pár2t1üz pá2ruh pá1ru pá2ruk pá2ru2t pár1u1tu pá2rún pá1rú pá2rü pá1ry 2p1á2sás pá1sá pá2s1e pá2sir pá1si pá2sÅ‘ pás3s pá2s1ü2 2p1ásván pás1vá pá2t1a2 pá2tá pá2tel pá1te pá2t1e2m pá2tis pá1ti 2p1átk2a. pát1ka 2p1átkát pát1ká 2p1átkáv p1átlag pát1la 2p1át1ló pá2t1or pá1to 2p1átrak pát1ra 2p1át3t2é pá2t1uk pá1tu pát1úrt pá1tú pá2tü 2p1átvét pát1vé pba2l1 p1ba pbé2r1e2l p1bé pbé1re pb2lo pb2ra pb2ri pb2ro pci2ó1fo p1ci pci1ó pcsa2p1á2g pc2s p1c1sa pcsa1pá pcsÅ‘2s1orr p1c1sÅ‘ pcsÅ‘1so pda2l1ad p1da pda1la pdal1an pda2leg pda1le pda2le2l pd2a2l1es pd2a2lén pda1lé pda2l1í2 pdi2k p1di pd2ra pd2rá pd2ro pd2ró 1pe pe2ac pe1a pea2p pe1ca1 pec3c pe2c2z pe2ed pe1e pe2ep 2p1ef8f 2p1eff pe1f8l pe1fl 2p1e2ge1se pe1ge pe2gés2z1 pe1gé pe1g2r 2p1egz pe2i1a pe1i pe2is pe2i1u 2p1e2k2e. pe1ke 2p1e2ke1i pe1k2ré 2pektr pe2lál pe1lá pe2lár pe2lekt pe1le 2pelemb 2p1e2lemek pele1me pe2lemet 2p1e2le1mé 2p1e2lemg 2p1e2lemh 2p1e2le1mi 2p1e2lemk 2p1e2lemm 2p1e2lemn 2pelemr 2p1e2lemz pel1e1ró pele2t pel1e1te 2p1el1go 2p1el1ha 2p1elhel pel1he 2pel1já 2p1elleb pel1le 2p1elnev pel1ne 2p1eln2y pe2l1os pe1lo 2p1e2lö 2p1e2lÅ‘1a pe1lÅ‘ 2p1e2lÅ‘1á 2p1e2lÅ‘1e pe2lÅ‘g 2p1e2lÅ‘h pe2lÅ‘1í 2p1e2lÅ‘1já 2p1e2lÅ‘jeg pelÅ‘1je 2p1e2lÅ‘l 2p1e2lÅ‘z 2p1elren pel1re 2p1el1sö 2p1el1tá 2p1eltet2t. pel1te 2p1el1to 2pe1lu 2p1el2v. 2p1el1vá pel2v1el pel1ve 2p1elven 2p1elvh 2p1el1vi 2p1el1vo 2p1el1vű 3pel2y 2p1elz 2p1ember pem1be 2p1e2mel pe1me 2p1e2més pe1mé 2p1eml 2p1ems 2p1e2mu 2p1e2ner pe1ne 2penged pen1ge pen3n2y. pen2n2y pen3nyb penny1ér pen1nyé pen3nyh 2p1enny2i. pen1nyi pen3nyj pen3nyk pen3nym pen3nyn pen3nyr pen3nyt pen3nyv pe2n1u pe2nya pen2y pe1nyá2 pe2ny1e2l pe1nye pe2ny1e2r peo2l pe1o peo2p peó2r pe1ó pe2p2e. pe1pe 2p1e2pé pe1p2r pe2r1akt pe1ra per1all pera1p2 perc1c per2c1el per1ce per2c3he perc2h per2c1in p2er1ci 2p1er1dÅ‘ perec1c pe1re pe2r1e2gyez1 pereg2y pere1gye p1e2rej pe2r1elk pe2r1e2lÅ‘f pere1lÅ‘ pe2r1e2lőff pe2r1e2lÅ‘1ké pere2mért pere1mé per1e1vé 2per1fa pe2rid pe1ri peri2k pe2r1i1ko pe2r1il pe2r1i2na pe2r1i2ná pe2r1ind pe2r1ing per1in1te perint2 pe2rí per1k2 p2erl per1ok1t2 pe1ro pe2r1os pe2r1o2x pe2r1ó2r pe1ró pe2rÅ‘d pe1rÅ‘ pe2rÅ‘f pe2rőff pe2rÅ‘1i pe2rÅ‘m pe2rÅ‘n pe2rÅ‘r 2p1e2rÅ‘s pe2rÅ‘t pe2rÅ‘v per1st pers2z2 pe2rú pe2r1ü2g pe1rü perü2l per1ü1lÅ‘ per1ült p2erz pe2s1ebbel pe1se peseb1be pe2s1eb1bÅ‘ pe2sési2g pe1sé pesé1si 2p1e2sé1sű pe2sÅ‘1i pe1sÅ‘ pe1s2p 2p1esszév pes2s2z pes1s1zé pes2tan pes1ta pes2t1er pes1te pe2szak pes2z pe1s1za pe2sz1ál pe1s1zá pesz1ell pe1s1ze pe2sz1elv pesze2m pe2sze1me pe2s1zu pe2sz1ü2l pe1s1zü pe2tal pe1ta pe2t1a2n pe1t2á petet2 pe1te 2pe1te1te 2pete1té 2p1e2te1tÅ‘ pe1t2hÅ‘ 2p1e2ti1ka pe1ti 2petim 2p1e2to petro1g2 pet1ro pet2t1i pe2tűd pe1tű pe2ug pe1u pe2vÅ‘ 2p1ezr 1pé pé2c1su péc2s pé1dü2 pé2d1ü1lé 2pééb pé1é 2péé1i 2péén 2p1é2ge 2p1é2gé pégés3s 2p1é2hen pé1he 2p1é2hes 2p1é2het 2p1éhs 2p1é2j. pé1je2 pé2j1eg 2p1é2ji 2p1éjj pé2k1as pé1ka pé2k1a1u pé2k1á2 pé2k1er pé1ke pé2k1ék pé1ké pé2k1é2l péké2t pé2k1é1te pé2k1i2n pé1ki pé2kis 2p1é2l. 2p1élb pé2l2e. pé1le pé2le1i pé2lek péle2l pé1l1e1le pél1elme1i pélel1me pé2le2n pé2let 2p1é2lé 2pélm 2p1éln 2p1é2lÅ‘ 2p1élt 2p1é2lű 2p1élv 2p1é2ne2k1a2 pé1ne 2p1é2nekb 2p1é2nekd 2p1é2ne1ké 2p1é2nekf 2p1é2nekff 2p1é2nekg 2p1é2ne1ki 2p1é2ne1kí 2p1é2nekj 2p1é2nek1k2 2p1é2nekn 2p1é2nekr 2p1é2nek1t2 2p1é2ne1kü pé2ny1el pén2y pé1nye pén2z1a2 pén2z1á2 pén2z2s pé2p1i2p pé1pi 2p1é2pí 2pé1pü 2p1érc 2p1érd 2p1é2ré 2p1érh pé2ri2g pé1ri 2p1é2rin 2p1érm 2p1érn 2p1é2r2Å‘. pé1rÅ‘ 2p1érr 2p1ér1te 2p1ér1té 2p1ér1tÅ‘ 2p1érv 2p1érz pé2s1aj pé1sa pé2s1al pé2s1e2l pé1se pé2sés pé1sé péskés2z1 pés1ké pé2so pés3s1za pés2s2z2 pé2s1ü2t pé1sü pé2s1za pés2z pé2s3zaj pész1ak pés3zav p2é2s1z1á2 pé2sz1emb pé1s1ze 2p1é2szé1né pé1s1zé pé2szin pé1s1zi pé2s1z1o p2é2s1z1ö pész3s pé2s1zu pé2s1zú pé2s1z1ű pé1ta1 pé2tel pé1te 2p1étk 2pétl p1ét1la 2p1étr 2p1étv 2p1é2v. 2p1évb 2p1é2v2e. pé1ve 2p1é2ve1i 2p1é2vek pé2ven pé2ves 2p1é2vet 2p1évf 2p1évff 2p1évh p1évk 2p1évn 2p1évr 2p1évs 2p1évt 2p1évv pé2zak pé1za pé2z1ár pé1zá pé2zel pé1ze pé2z1e2m pé1zi2 pé2zi2d pé2zin pé2ziz pé2zol pé1zo pé2z1sa péz2s pé2zu p2f1ép p1fé pfi2ú1é pf8i pfi1ú pï¬2ú1é pï¬ pï¬1ú pfi2úkér pfiú1ké pï¬2úkér pï¬Ãº1ké pf2lo pf8l pflo pfl pf2ló pfló pf2lu pflu pf2rá p1f2re p1f2ri p1f2rí p1f2ro pf2ru pf1st pg2ru pg2rü pha2de p1ha p2ha2i 1p2hanés2z pha1né 1p2hed p1he phe2i phelyü2kü phel2y phe1lyü 1phens 1p2hi1a2 p1hi 1p2hic 1p2hi1la phi2le p2hi1ó 1p2his2z. phis2z p2hoc p1ho 1p2ho1i phó2i p1hó ph1ry 1pi pi2a1a pi1a pi2a1á pi2a1ba pia2ce2l pia1ce pia2cél pia1cé pia2cik pia1ci pia2c3se piac2s pi2a1dó pi2a1e pi2a1é pi2ag pi2ah pi2aj pi2aké2n. pia1ké pi2al pi2am pi2a1o pi2a1ö pi2ap pi2a1ré pi2a1s1za pias2z pi2at pi2a1ú pi2a1ü pi2a1ve pi2az 2picc pi2c2e. pi1ce 2picl pi1da2 pi2dan pi2de1a pi1de pi2de1á pi2de1i pi2den pi2de1o pidi2a1 pi1di 2p1i2dom pi1do 2p1i2dÅ‘ 2p1i2du pi2eg pi1e pi2el pier2r pi2ég pi1é pi1fr 2p1i2ga 2p1i2ge 2p1i2gé pi1gh 2pi1go pi1g1rá 2p1ihl pi2k1ö pi1l2i pilis3s 2pilles pil1le 2p1illet 2pillés pil1lé 2p1il1lu 2p1i2l2y 2p1i2má 2p1i2mi 2p1imm pinak2 pi1na pina1p 2pind 2p1inf 2p1inff pin2gas pin1ga pin2g1á2r pin1gá pin2gelj pin1ge pin2gép pin1gé pin2gos pin1go 2p1in1gó 2pinj 2p1inp pin2tác pin1tá pin2t1or pin1to pin2tÅ‘r pin1tÅ‘ pin1tu2 pin2tur pi2nü 2p1inv 2p1inz pion1n pi1o pi2ó1a pi1ó pi2ó1á pi2ó1e pi2óf pi2óff pi2óg pi2ó1ki pi2ól pi2ó1ma pi2ó1mé pi2ó1o pi2óp 2pipa1i pi1pa 2p1i2pa2r. 2p1i2pa1rá 2p1i2parb 2p1i2parh 2p1i2parn 2p1i2parr 2p1irh 2p1i2rod pi1ro pisa1u2 pi1sa 2pis1ko pi2s1op pi1so 2p1is1te 2p1i1s1za pis2z piszkos1s pisz1ko pi1sz2kó pi2t1aj pi1ta pi2ta1la pi2tall pi2t1a2n pi2t1á2p pi1tá pi1tä pi1t1he pitos1s pi1to pi2t1ü2 pi2vás pi1vá 2p1i2zé 1pí pí2gé pí2já pí2né pí2r1a2 pí2rá pír1ál pír1á2r 2p1írás pí2r1e2 pí2r1in pí1ri pí2r1i2s pí2rí pí2r1o2l pí1ro 2p1í2ró pí2r1ö2 pír1s pírt2 pír1tr pí2rü pí2rű 2p1í2tél pí1té 2pítm pítÅ‘1a2 pí1tÅ‘ pítÅ‘e2l pítÅ‘1e pí2ve pí2ze pí2zé pí2zü pí2zű pke1p2 p1ke pke1s2 pkés1s p1ké pki1a2 p1ki pki1á2 pki1e2 pk2la pk2li pk2lí pk2lu pk2rá pk2re pk2ré pk2ri pk2ro pk2ró pk2va pk2vó p2lacc p1la pla1k2l pl2a2pal pla1pa plap1áll pla1pá pla2p1os2z pla1po p2latf p2latff 1p2laz1má ple1í2 p1le ple2t1a2n ple1ta ple2t1e2l ple1te plé1é2 p1lé plé2has plé1ha pli2s3zá p1li plis2z plo2m1e p1lo plo2mén plo1mé plo2m1ol plo1mo plót2 p1ló pló1tr plÅ‘2sa p1lÅ‘ plÅ‘1s1tá plÅ‘2szár plÅ‘s2z2 plÅ‘1s1zá plu2m1e p1lu p2lur pmás1s p1má pmeg1g2 p1me 1po po2be po1c1si2 poc2s po2cs1iz po2d2a. po1da po2d2z po2el po1e pogás1s po1gá po1g2ra po1g1rá po2in po1i po2it po1ki2 2p1o2k1ir po2kí 2p1ok1le po1k2ló 2p1okm poko2la2 po1ko pokol1l 2p1ok1ta 2p1ok1tá polás1s po1lá polc3c pol2c3s 2p1ol1da poló1á2 po1ló 2poltár pol1tá 2p1oltás 2p1ol1ti 2p1ol1tó 2p1olvas pol1va po2n1a pon2c3so ponc2s po2ne2l po1ne pon2g1e po1ni2 po2niz pon3n po2n1os2z po1no pon2t1a2d2 pon1ta pon2tag pon2t1a2l pont1an2y pon2tál pon1tá pon2tár pon1te2 pon2t1el pon2tem pon2ten pon2te2s pon2ték pon1té pon2t1é2r. pon2t1é1te pon2ting pon1ti pon2ti2s2z pon2tí pon2t1Å‘2 2ponz po2ol po1o po2or po2p1a2 po2p1á2 2popc 2po1pe po2p1el po2per po1pi2 po2pik po2p1in po2p1ir po2pis p2o2p1o2l po1po pop1p2 pop1s2 pops2z2 2pop1t2 po2pú po2pü po2r1a2c po1ra po2r1ag po2rakk por1a1la por1all po2ram pora2n por1an2y po2r1a2r po2rat por1á2c2s po1rá por1áll por2can por1ca por2c3h por2c3sí porc2s po1re2 po2rec po2re2s por1f2 por1ff por1g2 po2rid po1ri 2p1o2ri1e po2rih po2r1il po2r1i2m po2r1in por1k2 po2rö po2rÅ‘ por2tamb por1ta por2t1a1u por2t1á2rá por1tá por2tárb por2tárn por2teg por1te por2tej por2t1em por2tet por2tél por1té por2t1é2r. por2t1érk por2t1i2k por1ti por2tiz por2tur por1tu por2t1us2z por2tut por2túr por1tú por2tű po2rü 2p1or1vo pos3s1zo pos2s2z pos3s1zö 2postol pos1to 2p1ost2y po2sü po2s1zí2 pos2z 2p1oszl posz2tü po2tab po1ta po2tad po2t1a2l po2tan po2t1a2u po2t1e2l po1te po2t1inf po1ti po2t1inff po2t1ip po2t1í2 po2tol po1to po2tö po2tus po1tu po2tü po2vi 1pó pó2ce pó1fr pói2g pó1i pó2k1ass pó1ka pó2ka1u pó2k1e2l pó1ke p2ó2kem pó2ke2t pó2k1id pó1ki p2ó2kim póki2s p2ók1is2z p2ó2kiv pó2k1ös pó1kö pó2k1ú pó2l1an pó1la pó2l1á pó2lom pó1lo 2p1ó2n2é. pó1né pó1p2r p1ó2rad pó1ra pór1á2s2z pó1rá pó1re2 pó2reg pó2rem p1ó2ri1á pó1ri pó2rö p2ó2s1or pó1so pós3s pó2s1ü2v pó1sü pó1ta2 pó2t1ad pó2tal p2ó2t1an póté2r pó1té pó2til pó1ti pó1tü2 pó2tül 2póün pó1ü 2p1ó2vó pó2ze pó2z3sá póz2s 1pö pö2ka pö2ká pö2ke2l pö1ke pö2ker pö2ki2d pö1ki p1ö2ko pö2ku pö2kú pö2lye pöl2y 2pönt pö2ra p1ör1dö pö2res pö1re 3pörg pö2ro pö2r1Å‘ pö2rú 2p1öss p1ötl pötty1in pöt2t2y pöt5tyi/ty=ty,3,3 2p1ötv pö2ve 1pÅ‘ pÅ‘a2n pÅ‘1a pőá2g pÅ‘1á pÅ‘1bl pÅ‘1d1ro pÅ‘e2r pÅ‘1e pőé2h pÅ‘1é pőé2l pÅ‘1kl pÅ‘1pl pÅ‘1pr 2p1Å‘2r. pÅ‘2r2i. pÅ‘1ri p1Å‘rj p1Å‘rl 2p1Å‘rn p1Å‘rs 2p1Å‘rt p1Å‘2rü 2p1Å‘rz pÅ‘1s2z pp1a1da p1pa ppa1i2 ppa2j pp1a1já pp1akk pp2a2na2d ppa1na ppa2n1ell ppa1ne ppan1k2 pp1an2y pp1arc ppark1fe3 pparkfel2 ppa1s pp1áll p1pá p2p1árj p2p1á2rok ppá1ro pp1átm p2p1á2to pp1átv p2p1e2g2y p1pe p2p1e2kéh ppe1ké p2p1e1lo p2p1elr ppe2r1a ppe2ró p2p1ég p1pé p2p1éks pp2hi pp2hó ppin2g1e2 p1pi pp1íg p1pí pp1kl pp2las pp1la pp2lat pp2l2e. pp1le p2p1o2rom p1po ppo1ro ppor2t1á2r ppor1tá ppor2t1e2 ppor2t1Å‘2 p2p1ó2l p1pó pp1ó1rá pp1ön p1pö pp1öv pp1ö2z p1p2ref pp1re p1p2reff p1p2rem p1p2rez p1p2rém pp1ré pp2rin pp1ri pp2ri1o p1p2roc pp1ro p1p2rod p1p2rof p1p2roff p1p2rog p1p2roj p1p2ros p1p2rot pp2rób pp1ró pp1sp p2p1úg p1pú p2p1ú2r. pp1ví2 ppvíz1 1p2rax p1ra p2re1mi p1re 1p2re1pa pressz2b pres2s2z pressz2h pressz2k2 pressz2n pressz2r pressz2t2 2pret pre1t2á 1p2ré1di p1ré p2rép pré2sa2 pr2é2s3zá prés2z pri2c p1ri p2ric2c2s p2ri1u p2rizm prí2m1e2l p1rí prí1me prí2mem 1p2robl p1ro 1p2ro1ce p2rof p2roff 1pro1fe p2rog p2roj 1pro1je pro2mo p2ro1pa 1p2ro1te 1p2ro1té 1p2ro1to 1p2ro1vo 1p2ró1bá p1ró pró2d1e pró2d2z 1p2ró1za pru2s1ág p1ru pru1sá pru2se 1p2rüs p1rü pr2ze p2s1a2d p1sa psé2gel p1sé psé1ge ps2hi2 p2s1i2ha p1si ps1í2ze p1sí p1s2ká p1s2mi p2s1ón p1só p2s1ö2z p1sö p1s2pe ps2pi p1s2po ps1pr ps2rá ps3s1zó ps2s2z p1s2tá ps2ti p1s2tí p1st2r ps2tu p1s2tú psza2k1ü2 ps2z p1s1za psz1an2y p2sz1as psz1atl p2sz1ág p1s1zá p2s3záp p2szég p1s1zé psz2fé 1p2szic p1s1zi p2sz1ill pszis3s2 psz1k2 psz1old p1s1zo p2sz1orn p2sz1ön p1s1zö p2sz1ös psz3s pta2d p1ta pt1a1da pt1alb pta2n1á2s pta1ná pta2ne ptá2raj p1tá ptá1ra ptá1ró2 ptá2rór p2t1eg p1te p2t1e2k2e. pte1ke ptele1g pte1le p2t1e2lÅ‘ p2t1els2 pte2rál pte1rá pté2ká p1té pté2k1el pté1ke p2t1érd pt1i2m2a. p1ti pti1ma p2t1i2n p2t1i2o p2t1i2r p2t1í2r p1tí pt1kl pto1g p1to pt1o2ut pto1u p2t1öt p1tö p1t2rag pt1ra p1t2ran p1t2rá pt2ré ptu2s1ze p1tu ptus2z ptu2s1zi2 p2t1úrr p1tú p2t1üt p1tü 1pu pua2d pu1a pu2csor puc2s pu1c1so pue2l pu1e 2p1ugr 2pu1ká pul2tas pul1ta 2p1u2ni 2pu1no 2p1u2nó puo2r pu1o pu1pr pu2rak pu1ra pu2ral pu2sad pu1sa pu2sal pusa2n pus1an2y pu2sap pu2sál pu1sá pu2s1átl pu2s1e2 pu2s1ér1té pu1sé pu2sik pu1si pu2sis pu2sí pu2sol pu1so pu2sö pu2sÅ‘ puss2 pus2s2z2 pust2 pu2sü pu2szag pus2z pu1s1za pu2szal pu2s3zá2r. pu1s1zá pusz1é2p pu1s1zé pu2s1zö pu2tab pu1ta pu2t1a2d pu2tak puta2n 2p1u2taz put1ing pu1ti pu2tol pu1to pu2tód pu1tó 2p1u2tó1p2 pu1t1rá 1pú 2p1úrf 2p1úrff pú2s2z 2p1útb pú2té 2p1ú2ti 2p1útj 2p1útk 2p1útn 2p1ú2to 2p1útp 2p1útr 2p1útt 2p1útv 1pü pü2ge pü2g2y pü2kü 2pü1le püle2t1o2 2p1ünn pü2re 2p1ü2rí 2p1üst 2p1ü2te pü2té 2p1ütk 2p1ü2tö pü2ve pü2ze 1pű pű2zÅ‘ pvá2r1a2l p1vá pvá1ra pvonala2d p1vo pvo1na pvona1la pw2hi pwhis1ky2 py2ba py2bó py2do py2ho py2ja py2já py2ka py2ké py2ki py2ko py2ma py2na py2ná py2ra py2ró py1t2h py2tó py2va py2vá pze2t1a2 p1ze pze2t1á2 pz2e2t1e2r pze1te pzÅ‘1a2 p1zÅ‘ pzÅ‘1e2 pzÅ‘1é2 2q. 1qa 1qá 1qe 1qé 1qi 1qí 1qo 1qó 1qö 1qÅ‘ 1qu qu2a1e qu1a qu2al qu2ar qu2at qu2en qu1e qu2er qu2es qu2ez que2zi qu2éb qu1é qu2i1e qu1i qu2ij qu2ik qu2il qu2in qu2is qu2it qu2od qu1o 1qú 1qü 1qű 2r. 1ra raa2d ra1a ra2af ra2aff raáta2d ra1á raá2ta ra2bad ra1ba rab1as2z 1rab1á2ra ra1bá rab1árb rab1árr ra2b1át r2a2b1e1le ra1be ra2b1ell ra2b1erd ra2bid2 ra1bi rabi2g ra2b1i1ga ra2b1i1gá ra2b1im ra2b1i2n2a. rabi1na ra2b1i2ná ra2b1int 2rab1la r2a1b1ri ra2buj ra1bu ra2c1aj ra1ca rac3c1sa rac2c2s ra2cet ra1ce ra2c1ha rac2h rac3hig ra1c1hi ra2c3hok ra1c1ho ra2c3hos ra2c3hot 2r1a2cid ra1ci rac2kar rac1ka rac2kit rac1ki rac2k1ö2 rac2kü ra2dag ra1da r1a2da1lé rad2a2rad r2adar rada1ra 2rada1té radás1s ra1dá ra2d2e. ra1de r2a3dí 2radíc 2radm 3r2a3dós2i. ra1dó radó1si 2r1a2dóz r2a1d1rá ra1d1ru 2r1a2d2u. ra1du ra2dus ra2ec ra1e rae2r raé2derb ra1é raé1de raé2de1re raé2derh raé2dern raé2derr raé2dert2 raé2r rafikus1s raf8i rafi1ku raï¬kus1s raï¬ raï¬1ku ra1f8l ra1fl 1ra1f1ra 2r1a2g2a. ra1ga ra2gak rag1a1lo r2agal ra2g1á2c ra1gá ra2gá1é 2r1a2gán rag2de rag1di2 rag2din ra2ge2l ra1ge ra2g1i2n2a. ra1gi ragi1na 2r1ag2y. rag2y ra2gyat ra1gya 2r1agyn ra2gyon ra1gyo 2r1agyr ra2if ra1i ra2iff rai2o 2rai1zá 2rai1zi 2raizn 2rai1zó 2rai1zu ra2j1a2d ra1ja ra2j1a1u ra2j1á2ru r2ajár ra1já ra2j1es ra1je ra2jin ra1ji 2rajká1ró raj1ká 2r1aj1kú rajob2 ra1jo raj2t1e2l raj1te raj2t1en raj2zat raj1za raj2z1e raj2z1ón raj1zó raj2z3s 2r1a2ka1ra ra1ka rak2kép rak1ké rak2kis rak1ki ra1k2li ra1k1lo ra1k1ló ra1k1lu 2r1aknáb rak1ná 2r1akná1i r1a2kóz ra1kó r2ak2re r2a1k2ré ra1k2ri rak2rom rak1ro raktus1s2 rak1tu 2r1a2kus ra1ku r2alab ra1la 2r1a2la2g1 2r1a2la1ku ra2la2pa r1a2la1pú ra2lá1zá ra1lá ra2lá1zó 2r1alb 2r1alja2i. ral1ja ralja1i 2r1al1ji 2ralk ralla2k ral1la ral2l1a1kó ral2l1at ral1lá2 ral2lál ral2lev ral1le ralo2m1e ra1lo ra1l2y ra2mab ra1ma 2rama1i rama2l ra3mat ram1áll ra1má ra2m1á2rá ra2m1árb ra2m1á2re2 ra2m1árh ra2m1árn ra2m1árr ram1b ra2m1é1he ra1mé ram1i1de ra1mi ram1i2ko ra2m1ill ra2m1im ram1i1na ram1inf ram1inff ram1ing ram1inj ra2m1i2p 2rammb 2ram1mi 2rammj 2rammn 2rammr 2rammt ra2m1os2z r2amos ra1mo ra2m1ó2r ra1mó ra2mö ra2mÅ‘ ram1s2 ra2mü 2r1a2nal ra1na 2r1a2nat ranás1s ra1ná ran2csal ranc2s ran1c1sa ran2cs1ág ran1c1sá ran2c1se ran2csik ran1c1si ran2c1sÅ‘2 rancs3z 2ran2d. ran2dat ran1da ran2d1a1u 2randj ran2d2z ra2nek ra1ne ran2g1a2 ran2g1á ran2ge rang1e2l ran2g1ó2 ran2gye2 rang2y ra2nil ra1ni ra2nim 2ran1ka ran2szál rans2z ran1s1zá ran2s1ze ransz1om1b2 ran1s1zo 2ran2y. ran2y ra2nyag ra1nya rany1a2la ra2ny1a2n ra2nyap ra2ny1ar r1a2nyáit ra1nyá ranyá1i r1a2nyá1ka2 r1a2nyákh r1a2nyákk ra2ny1ál ra2nyás r1anyá2s. 2ranyb ra2ny1e2s r2a1nye 2ra1nyé ra2nyél 2ranyh ra2nyid r2a1nyi ra2nyin ra2nyir rany1í2r r2a1nyí 2ranyk 2ranyn ra2ny1ol r2a1nyo 2ra2nyó rany1ó2r ra2nyö 2ranyr 2rany1s 2ranyt2 r2a2ny1ü 2ran1za 2ranzit ran1zi ra2ó1a ra1ó ra2ó1á ra2óf ra2óff ra2ó1lá ra2óm ra2óp ra2ós2z 2rap2a. ra1pa ra2pák ra1pá 2rapp rap2pin rap1pi ra1p2re ra1p1ré ra1p2ri r2a1p2ro ra2qu 2r1a2rann 1ra1ra 2r1a2ran2y. raran2y 2r1a2rany2a. rara1nya 2r1a2ra1nyá 2r1a2ranyb 2r1a2ranyn 2r1a2ranyr 2r1a2ranyt2 ra2rat 2r1ar1co ra2rén ra1ré 2r1art 2r1arz r2a1s2ká ra1s2l ra1s2pe ra1s2po ras1s1z1e ras2s2z 2r1asszoc ras1s1zo rast2 r2a1s2ta r2a1s1tá r2a1str ra2sz1abl r2aszab ras2z ra1s1za ra2sz1aj ra2szas ra2szat ra2szág ra1s1zá ra2sz1árr rasz1emb ra1s1ze ra2sz1étt r2aszét ra1s1zé ra2szób ra1s1zó ra2szó1i ra2szón ra2szös ra1s1zö rasz2t1a2n2y rasz1ta rasz2t1el rasz1te rasz2t1é2te rasz1té rasz2tö rasz2tü ra2t1a2d ra1ta rat1ajt rat1a2la rat1alt 2r1a2tád ra1tá rat1áll r2atál ra2t1árad r2atár 1ratá1ra ra2t1á2ra1i ra2t1á2rak ra2t1árb ra2t1árv ratá1t1a2 ratá2vi r2atáv ra2t1e2g ra1te ra2t1elk ra2t1ell 2r2atég ra1té rat1é1ge ra2t1érd r2atér rat1ér1ke ra2tér1te ra2t1érv ra1t1hó rat1ing r2atin ra1ti r2a2t1ír ra1tí 2r1at1ká 2rat1lé 2rato2z. ra1to ra1t2ran rat1ra 2r1attr ra2tür ra1tü 2rat2y ra2tya ra2tyá ra2tyu ra2ub ra1u ra2u1di 2r1a2uk ra2u1lá 2raum rau2n rau2ta r2au2tá ra2u1to 2r1a2u1tó r1autó1é2 raü2t ra1ü raü2z 2r1a2va1tó ra1va 2ra1vú ra2xü ra1ye ra1yé raz1ajt ra1za raza2n ra2z1an2y ra2zel ra1ze ra2z1olt r2azol ra1zo ra2zo1no 1rá rá1b1re rá2cal rá1ca rá2c1e rá2c3h rá2c1i2n rá1ci ráci2óf ráci1ó ráci2óff rá2cö rá2csa1la rác2s rá1c1sa rá2c3ság rá1c1sá rá2csét rá1c1sé rá2csir rá1c1si rá2cs1is rá2cú rá2cü rá2d1an2y rá1da 2rádáh rá1dá 2rád1dá 2rád1ju rá2g1ad rá1ga 2r1á2gam 2r1á2gaz rág1á2zá rá1gá rá2gi1a rá1gi rá2gil rá2gim rá2gis 2rá1gí rá2g1os2z rá1go rágus4 rá1gu rá2gü 2rá1gya rág2y 2rágyáb rá1gyá 2rágyá1é 2rágyáh 2rágyá1i 2rágyáj 2rágyák 2rágyán 2rágyár 2rágyás 2rágyát 2rágyáv rá2gyu ráí2r rá1í ráj2k1a2 ráj2kel ráj1ke ráj2k1ó2 rá2jü rá2kát rá1ká rá2k1ered rá1ke ráke1re rá2k1e2s rá1k1la 2rákog rá1ko rá2k1os2z rá2k1ón rá1kó rá2k1ó2r 1rá1k1rá rá1krét rák1ré rá2l1ak rá1la r2á2l1a2l rá2la1na 2r1álar rála2t1e rá2lál rá1lá rál1átl rá2láz r1ál1cá 2r1ál1dá rá2li2d rá1li rá2lim rá2lí 2r1állam rál1la 2r1állap 2r1állat 2r1ál1lí 2r1állom rál1lo 2r1ál1ma rá2lü rá2lyal rál2y rá1lya rá2ly1a2n rá2lya1p rá2ly1as rá2lyav rá2lyús rá1lyú rá2lyút rá2mö rá2nal rá1na rá2n1a2n rá2n1a2t rá2n1ár rá1ná rá2nás ránc1c rá2nék rá1né rán2gál rán1gá rá2niz rá1ni rá2ní rán1kl rá2nol rá1no rá2not rá2n1ó2 rán2sav rán1sa ráns3s rán2t1ak rán1ta rá2nü rá2nya1da rán2y rá1nya rá2nyag rá2nya1ko rány1alt rá2ny1a2n rá2ny1ap rá2nyar rá2nyaz rá2ny1á2r. rá1nyá rá2nyérm rá1nyé rá2nyérz rá2ny1í2r rá1nyí rá2nyol rá1nyo rá2nyó rá1p2l 2rá1po rá2pol rá1p2r 2r1á2rad rá1ra rár1a2dá 2r1á2ra1i 2r1á2ram 2r1á2ras 2r1á2rat rá2raz rá2ráb 1rá1rá rá2ráh rá2r1ál rá2rár rá2rát rá2ráv rá2r1em rá1re rá2rér rá1ré 2r1árh rá2ria1i rá1ri rári1a 2r1á2ri1á rá2rin 2r1árj 2r1árl 2r1árn rá2r1ol rá1ro rár1s r1ár1tó 2rá1ru rá2rul rá2run 2rá1rú rá2r2ú. rá2rút rá2rúv rá2s1a2d rá1sa rá2s1akn rá2sal rása2r 1rás1a1rá rá2s1as 2r1á2sa1tá rá2s1a2to rá2saz rás1á2ga rá1sá rá2s1á2rad rásá1ra rá2s1árak 1rá2s1á2rá rá2s1á2ré rá2sás rá2ser rá1se rá2sis rá1si rá2s1ol rá1so 2r1á2s2ó. rá1só 2r1á2sób 2r1á2só1é 2r1á2sóg 2r1á2sóh 2r1á2só1i 2r1á2sój 2r1á2sók 2r1á2són rás1ó2ra rá2sór 2r1ásó1ró 2r1á2sós 2r1á2sót 2r1á2sóv rá2sÅ‘ rást2 rás1tr rá2su2t rá1su rá2sza2n rás2z rá1s1za rá2sza2s rá2sz1á2ru rá1s1zá rá2sziv rá1s1zi rás3zón rá1s1zó rá2tad rá1ta rát1a2da rát1a1la r1á2t1ál rá1tá rá2té2g rá1té rá2t1é2l 2ráté2p rá2t1i2o rá1ti rá2tí 2r1át1lé rá1t1ri rá1t1ro rátus1s2 rá1tu rá1tú2 rá2túr 2r1á2t1ül rá1tü rá2zal rá1za 2rázisb rá1zi 2rázi1sé 2rázish 2rázisk 2rázisn 2rázisr 2rázis3s2 2rázist2 rázi2s2z rá2zsal ráz2s rá1z1sa rá1z4sá rá2z1s1e2 rá1z1sé2 rá2zsén rázsi2a rá1z1si 2r1á2zsia1i 2r1á2zsi1á rá2zsis rá2z1só rá2z1s1ü2 rba2j1e r1ba rba2jokt rba1jo rba2n1á rbátyá2t r1bá rbát2y rbá1tyá rbá2ty1á1to r2b1ell r1be r1b2la r1b2lo rb2lú rboc1c r1bo r2b1ol1da rbo2n1a2 r1b2ra r1b2rá rb2ri rb2ro r1b2ró rb2ru rbu2t1e r1bu rc1a1dá r1ca rc1ajt rca2lak rca1la r2c1alk r2c1a1na rc1a1nya rcan2y rca1p rc1a1ra rc1a1rá rc1ass rca1st rc1a2to r2c1ág r1cá r2c1á2l rc1á2r. r2c1á1ri r2c1árn r2c1á2ro r2c1árr r2c1árt r2c1á2ru rc3c1si rc2c2s rc3c1sí rc3c1so rc3c1só rc3c1sö rce2g1a2 r1ce rceg1g rc1eg2y rc1e2leg rce1le rc1elk rc1e2lÅ‘d rce1lÅ‘ r2c1els r2c1ember rcem1be r2c1e1pe rc1e2ve r2c1ex r2c1ez rc1é2két r1cé rcé1ké r2c1é1le r2c1é2lé r2c1é2li r2c1élm r2c1é2lü r2c1ép r2c1é2r. r2c1érb r2c1é2ri r2c1érr rc1és2z rc1fr rc1gr r2c3has rc2h r1c1ha rc3hel2 r1c1he r2chig r1c1hi r2chom r1c1ho r1c3hu r2c3hú r2c3hű rci2d r1ci r2c1i1de r2c1i2ko r2c1ikr rc1ill r2ci1má r2c1i1mi rc1i2n2a. rci1na rci2náb rci1ná rci2ná1é rc1i2nár r2c1i2nát r2c1in1d2 rc1i2o1ni rci1o r2c1i2pa r2c1i1si r2c1isk r2c1ist rc1izm rc1i2zo r2c1íj r1cí r2c1ív r1c2k2é. rc1ké r1c2kéh r1c2ké1i r1c2két r1c2k2i. rc1ki r1c2ki1a r1c2kig r1c2kiz r1c2kok rc1ko rc1k2ré rc1kv r1c2lu r2c1op r1co r2c1o2r r2c1os2z rc1ón r1có rc1ó2r rc1óv r2c1öb r1cö r2c1ön r2c1ör r2c1ös rc1Å‘r r1cÅ‘ rc1pl rc1pr r2cs1abl rc2s r1c1sa rcs1alak rcsa1la rcsa2p1á2g rcsa1pá r2c3sa1ra r2csarl r2c3sáp r1c1sá r2c3sá2r. rcs1á1ru r2c3sej r1c1se r2csele1me rcse1le r2c2s1elr r2c2s1érb r1c1sé r2csikr r1c1si rcs1írás r1c1sí rcsí1rá rc3s2ká r2c3so1ra r1c1so r2c3so1ro rcsóna2k1á2 r1c1só rcsó1na rcs1Å‘2s. r1c1sÅ‘ rcs1p rc3s2pi rcs1s rc3s1to rc3s2z rc1tr r2c1ud r1cu r2c1u2r r2c1ut r2c1új r1cú rc1üg r1cü r2c1ür r2c1üs r2c1üt rc1üv rc1üz rc1űz r1cű r2c3zá rc2z r2c3zó rc3z2s r1c3zu r1c3zú rda2cél r1da rda1cé rd1a2dat rda1da r2d1akc rda2l1í2 rd1al1ka rd1al1ko r2d1a2nya rdan2y rda1p rd1a2rán rda1rá r2d1arc rd1aszt2 rdas2z r2d1a1zo rd1ác2s. r1dá rdác2s rd1á2rak rdá1ra rd1á2rat rd1á2ron rdá1ro r2d1árv rdás1s rd1bl rd2d2z r2d1e2g r1de rde2k1a2 rde2ker rde1ke rde2kék rde1ké rde2kol rde1ko rde2k1ö2 r2d1e1la r2d1e2rej2ű. rde1re rdere1jű rde2sÅ‘t rde1sÅ‘ rd1exp rdezÅ‘2p3 rde1zÅ‘ r2d1é2g r1dé rd1é2lé rd1élr rd1élt rd1é2lü r2d1ép r2d1é2r. r2d1ér1d2 r2d1é2ri rdé2sa2 rdé2s1za rdés2z r2d1é2vé rd1fr r2d1i2d r1di r2d1i2ga r2d1i1gé r2d1i1ma r2d1i2n2a. rdi1na r2d1i2na1i r2d1i2ná2t. rdi1ná rdio2x rdi1o rd1i1zo r2d1íg r1dí r2d1íz rd1kl r2d1ok1ta r1do r2d1old rd1orr r2d1os2z r2d1o1u rdó1a2 r1dó rd1ó2rá rdö2g1öl r1dö rdö1gö r2d1öl r2d1ös rd1öv rdÅ‘2s1orr r1dÅ‘ rdÅ‘1so rd1pr r1d2ram rd1ra rd2rap r1d2raz rd2rog rd1ro r1d2rót rd1ró rd1sk rd1sp rd1st rdsza2k1 rds2z rd1s1za rd1t2r rd1udv r1du r2d1u1rá rd1üg r1dü r2d1üt r2d3za rd2z r2d3zá r1d3zo r1d3zó r2d3zö r1d3z1sí rdz2s r2d3zú 1re rea2d re1a re2a1ga rea2j rea2ka rea2la rea2r re2a2v 2reá1lá re1á 2reá1ló 2r1e2b. 2r1eb1bÅ‘ reb1eg2y re1be 2r1e2béd re1bé 2r1ebh 2r1ebk 2r1ebm 2r1ebn 2r1ebs 2r1ebv re2caj re1ca re2cal re2cá 2r1e2cets re1ce re2c2h rec3sar rec2s re1c1sa 2r1e2cset re1c1se rec3sor re1c1so re2c2z re2dan re1da red1elv re1de 2redend re2d1e2r 2rede1ti 2rede1tű 2r1e2dén2y re1dé re2d1é2ves redé1ve re2dir re1di re2dor re1do 2r1edzÅ‘b red2z re1d1zÅ‘ 2r1e2dzÅ‘j 2r1e2dzÅ‘k 2r1e2dzÅ‘r 2r1e2dzÅ‘t 2r1e2dzÅ‘v re2et re1e re2ew re1f2t re2gap re1ga re2gas reg1áll re1gá re2gár reg1e2le re1ge reg1elh reg1ell re2g1elr reg1elv reg1eng reg1e2te1tÅ‘ rege1te reg1e2vé re2gés2z1 re1gé re2gid re1gi reg1inj re2giz re2góc re1gó reg2óv re2gu2t re1gu re2gú regü2l re1gü re2g1ü1lé 2r1eg2y. reg2y 2r1egyb re2gy2e. re1gye re2gyed re2gyen 2r1e2gyes re2gyet 2r1e2gyez 2r1e2gyé 2r1egyh 2r1egyk 2r1egyl 2r1egyn 2r1egyr 2r1egys 2r1egyt re2gyün re1gyü r1egyv re2ic re1i re2i1o rei2rá re2is2z re2ja 2rejé1é re1jé 2rejűe2k. re1jű rejű1e 2rejűn 2rejű2t. re2k1ag re1ka re2k1a1rá re2k1as2z re2k1á2l re1ká re2k1á2p re2k1á2r. re2kás rek1elh re1ke rek1elt rek1e1lü rek1erd re2k1e2rÅ‘ reke2s1z1á rekes2z 2r1e2kééh re1ké reké1é 2r1e2kéét re2kéj re2kék 2r1eké2k. rek1ékh re2kél 2r1e2kénk re2k1é2r. re2k1érd re2k1ér1te 2r1e2ké2s. re2k1éss re2k1id re1ki re2kij re2kil re2k1ing re2k1int re2k1ip re2kír re1kí rek1k2 re1k1lu re2k1ok re1ko re2k1old rek1opt re2k1os rek1ott re2kór re1kó re2kö2k re1kö re2kötl re2kÅ‘ rek1s reks2z2 re2k1u2s re1ku re2küd re1kü re2k1üg rekü2l re2k1ü1lé re2k1ü1lÅ‘ re2kü2t 2relac re1la 2r1e2l1a2d 2r1e2lág re1lá 2r1el1bí 2r1el1bo 2r1elc 2r1el1do 2r1e2lef re1le 2r1e2l1eff 2r1elektr rele2ma 2r1e2lem2e. rele1me 2r1e2lemed rele2meg 2r1e2leme1i 2r1e2lemek 2r1e2leme2m. 2r1e2le1me1me 2r1e2lememm 2r1e2lemen rele2m1er 2r1e2leme2s. 2r1e2leme1se 2r1e2lemesn 2r1e2lemet re2leme1zé rele2m1é2r. rele1mé 2r1e2lemtel relem1te 2r1e2lemük rele1mü 2r1e2lemünk 2r1e2lem1zé 2r1e2lem1zÅ‘ 2r1e2l1eng 2relér re1lé 2r1elf 2r1elff 2r1el1ha 2r1el1há 2r1elhel rel1he 2r1el1hú 2r1el1já 2r1el1ké rel1la2 rel2l1an 2r1el1lá 2r1el1lÅ‘ 2r1el1ma 2r1elmé1é1é rel1mé relmé1é 2r1elmééh 2r1elmé2i. relmé1i 2r1elmél 2r1elmé1te 2r1elnev rel1ne 2r1el1nö 2r1eln2y 2r1e2l1os re1lo 2r1e2lÅ‘ad re1lÅ‘ relÅ‘1a 2r1e2lÅ‘de1i relÅ‘1de 2r1e2lÅ‘dök relÅ‘1dö 2r1e2lÅ‘nn 2r1elÅ‘1nye relÅ‘n2y 2r1e2lÅ‘zm 2r1el1so 2r1el1s1zá rels2z 2r1el1ta rel2tár rel1tá 2r1eltáv 2r1eltet2t. rel1te 2r1eltettk 2r1elté1ré rel1té 2r1eltév 2re1lú 2r1e2l1ül re1lü 2re1lű 2r1el2v. 2r1el1vá 2r1elvb 2relved rel1ve 2relve1i r1elve2i. r1elveih r1elvei1ke r1elveim r1elvei1ne r1elveir r1elvei2t. r1elveiv 2relvek r1elve2k. r1elveket relve1ke r1elve1ké r1elvekh r1elvekk r1elvekn 1r1elvek1re 2relvem r1elve2m. r1elve1me r1elvemm 2r1elven 2r1elves 2r1elv2é. rel1vé 2r1elvé1ne 2r1elvér 2r1elvé1ü 2r1elvév 2r1elvh 2r1el1vi 2r1elvk 2r1elvn 2r1el1vo 2r1elvr 2r1elvs 2r1elvt 2r1el1vü 2r1el1vű 2r1elvv 2r1elz re2m1a2d re1ma re2m1as2z re2maz re2m1á2l re1má re2mát 2rembar rem1ba 2r1embe2r. rem1be 2r1emberb 2r1ember2e. 1rembe1re 2r1embered 2r1embere1i 2r1emberek 2r1emberes 2r1embe1ré 2r1emberh 2r1embe1ri 2r1emberk 2r1embern 2r1emberr 2r1ember3s2 2r1embert2 2r1embe1rü rem1b1le r1em1bó 2rembr re2mel re1me rem1e2lem reme1le 2r1eme1lé 2r1emelg r1e2melk rem1elÅ‘d reme1lÅ‘ rem1els re2m1eng re2m1es2z re2m1é2r. re1mé re2m1érm re2m1é2te re2migr re1mi re2m1ór re1mó re2mö re2m1Å‘2r re1mÅ‘ rem1p2 2r1e2muk re1mu 2r1e2mul re2m1ur 2r1e2mus 2r1encik ren1ci ren2d1e2r ren1de ren2d1ég ren1dé ren2déj ren2dék ren2d1o ren2d1ö ren2d1Å‘2s ren1dÅ‘ 2r1e2ner re1ne renés3s re1né 2r1enged ren1ge 2re1ní ren2s1ég ren1sé rens3s re2of re1o re2off re2og2 re2ó1a re1ó re2óc re2ó1e re2ó1é re2óf re2óff re2ó1ka re2ól re2ó1o re2óp re2ó1sá re2ós2z re2p1aj re1pa rep1a1na rep1as2z re2pa1u re2paz rep1áll re1pá rep1álm re2pá2s re2pát re2p1e2g re1pe re2p1elf re2p1elff re2p1elk re2p1ell re2pelm re2p1eng re2p1ep 2r1e2pe2r. re2p1er1k2 2r1e2péd re1pé re2p1é2j 2r1e2pénk 2r1e2pés re2p1i2d re1pi rep1il1le rep1int re2pok re1po rep1op 2r1epos2z. repos2z 2r1eposz2t. rep1osz1tó re1pö2 re2p1ö1rö rep1pl rep1pr re2pú 2r1erd re2re1i 1re1re re2rej re2res re2rez 2r1erg re2róz re1ró 2r1e2rÅ‘ 2r1ers re2sas re1sa re1s2c2s 2r1ese1mé re1se res1epr rese2t1e2l rese1te 2r1esél re1sé 2r1es1kü res2tal res1ta re2szaj res2z re1s1za 2r1e2szet re1s1ze resz1ív re1s1zí 2resz1kö 2reszm resz1ta2 resz2t1an resz2tál resz1tá resz2t1ár resz2t1í2v resz1tí resz2t1o2r resz1to resz2t1os 2resz2ű. re1s1zű 2r1e2szű1e re2t1ab re1ta re2t1akt re2tal ret1a2la re2tant re2t1a2n2y re2tág re1tá re2t1á1ra re2t1á1ro re2t1elb re1te re2t1ell re2telm ret1e2mel rete1me re2t1er1k2 r2eter rete2s1z1á retes2z 2r1e2teté2s. rete1té 2r1e2teté1sé 2r1e2tetésn re2t1é2k re1té re2t1él re2t1érb re2t1érd re2ti2d re1ti 2r1e2ti1ka re2ti1ká re2t1ill r1e2tilt re2t1ing re2t1int re2tis re2t1í2v re1tí r1etnik ret1ni re2t1ok re1to re2t1old re2t1os re2tór re1tó re2t1ö1rö re1tö re2t1ö2v ret2tál ret1tá ret2t1est ret1te ret2té1ne ret1té ret2t1in ret1ti re2t1ut re1tu re2t1ült re1tü re2tűd re1tű re2ud re1u re2u1e re2u1te re2ux re2ve1zÅ‘ re1ve revil2 re1vi 2r1e2vÅ‘ 2r1exp re2xü 2rezetn re1ze 2reze1tü 2rezor re1zo 2rezÅ‘kh re1zÅ‘ 2r1ezr 2r1e2züs re1zü 1ré ré2bá ré2bis ré1bi ré2biv ré2bí 2r1ébres réb1re ré2bü 2r1é2des ré1de ré1d2j. ré1dy 2ré1fá 2r1égb ré2gét ré1gé 2r1égn ré2g1ó2 ré2gÅ‘ 2régt 2r1é2h. 2r1é2hen ré1he 2r1é2hes 2r1é2het 2r1éhs 2r1éht ré2jen ré1je 2r1é2jet 2r1é2jün ré1jü ré2k1ab ré1ka ré2kac ré2k1a2g ré2k1a2n ré2k1a1u rék1á2sá ré1ká ré2k1e2b ré1ke ré2k1eg ré2kel rék1e1le rék1e1lÅ‘ rék1elr rék1els ré2k1es2z ré2k1é1te ré1ké ré2kik ré1ki ré2kin ré2kit rék1o1la ré1ko rék1old ré2kör ré1kö ré2k1ö2v ré2köz ré2kÅ‘ ré1ku2 ré2k1ut ré2k1ú ré2le2t. ré1le ré2letb 2r1é2le1te ré2le1té ré2leth ré2letn ré2letr ré2lett ré2le1tü 2r1élf 2r1élff 2r1élm 2rél2y ré2ma1d2 ré1ma ré2m1a2l ré2m1an ré2mar ré2ma1u ré2m1á2l ré1má ré2már ré2mel ré1me rém1e2le ré2mer 1ré2m1é2ré ré1mé ré2mil ré1mi ré2m1ist ré2mos ré1mo ré2mó ré2mö 2rém1tu réna1p2 ré1na 2r1é2nekh ré1ne 2r1é2ne1ki 2r1é2nekl 2r1é2ne1kü ré2nel 2réner ré2n1é2j ré1né ré2nö ré2ny1e2l rén2y ré1nye ré2p1ed ré1pe ré2peg ré2pes ré1pi2 ré2p1ip 2r1é2pí ré2pol ré1po ré2pö ré2pü 2r1épül 2r1é2r. 2r1érb 2r1érc 2r1érd 2r1é2ret ré1re 2r1é2rez ré2r2é. 1ré1ré ré2réb ré2rén ré2rér ré2ré2s. ré2ré1se ré2ré1sé ré2résh ré2ré1si ré2résk ré2résn ré2résr ré2réss ré2rést ré2ré1sü ré2rét 2r1érf 2r1érff 2r1érh ré2ri1e ré1ri ré2ri2g 2r1érk 2r1érl 2r1érm 2r1érn 2r1é2r2Å‘. ré1rÅ‘ ré2rÅ‘k 2r1érr 2r1ér1tá 2r1ér1te 2r1ér1té 2r1ér1tí 2r1ér1tÅ‘ 2r1é2rü 2r1érv 2r1érz ré1sa2 ré2sal ré2sar ré2s1ár ré1sá ré2sát ré2seg ré1se rés1ell ré2s1er ré2sés ré1sé ré2s1Å‘2 rés3s1za rés2s2z2 ré2sú ré2s1ü2t ré1sü ré2s1ü2v rész1a2l rés2z ré1s1za ré2sza2n rés3zav rész1á2l r2é1s1zá ré2s2z1eml ré1s1ze ré2s2z1e2s2z ré2sz1é2k ré1s1zé ré2szin1te ré1s1zi rész1í2v ré1s1zí ré2szok ré1s1zo ré2szo2l ré2s1zó rész1ó2r ré2szÅ‘r ré1s1zÅ‘ rész3s rész1t2r ré2s1zu ré2s1zú részü2l ré1s1zü ré2sz1ü1lÅ‘ 2rétáz ré1tá ré2t1eg2y ré1te 2ré2tel rét1elm 2réter ré2t1e2s2z 2r1é2te1tÅ‘ ré2t1é2k ré1té ré2tiz ré1ti ré2t1o2l ré1to ré2t1os 1ré1t1ré ré2tud ré1tu ré1vá2 ré2vát 2rév2e. ré1ve 2r1é2ve1i rév1e1ké ré2v1é2l ré1vé ré2v1é1ri 2révé2t ré2v1é1te 2r1é2vév 2révf 2révff 2révh 2révt ré2vú 2révv ré2z1a2 ré1zá2 ré2z1ár ré2z1e2g ré1ze réze2l réz1e1lÅ‘ ré2zer ré2zes réze2t réz1e1te ré2zi2d ré1zi ré2zin ré2zi2o ré2zip réz1is2z ré2zos ré1zo ré1zó2 ré2z1ór ré2zö ré2z1sa réz2s ré2z3sá ré2z3se ré2z3si ré2z1sí ré2z1so ré2z1su rf1ál r1fá r2f1ép r1fé rfé2s1za rfés2z rf2é2s1zá2 rf1f8l rf8f rffl rfia2n rf8i rfi1a rï¬a2n rï¬ rï¬1a rfi1b2 rï¬1b2 rfid2 rï¬d2 rfi1i2 rï¬1i2 rfik2 rï¬k2 rfi1kr rï¬1kr r2f1ind r2ï¬nd rf1isk rï¬sk rfi1s2z2 rï¬1s2z2 rfit2 rï¬t2 rfi1tr rï¬1tr rf1kl rf1kr rf2la rf8l rfla rfl rf2lo rflo rf2ló rfló rf2lu rflu rf1okt r1fo rf1Å‘1rü r1fÅ‘ rf1pr r1f2rá rf2rí r1f2rö rf1sp rf1st r2f1út r1fú rga1k2 r1ga rgá2csal r1gá rgác2s rgá1c1sa rgá2csan rgá2csav rgá2z1é rge2o r1ge rge2r1a r2g1es1te rgés3s r1gé rg2h2a. rg1ha rgi2ai1a r1gi rgi1a rgia1i rgi2a1ko rgi2al rgi2a1so rg2la rg2le rg2lo rg2ló r1g2nó rg2öl r1gö rg1ö3le rgÅ‘1c1sa2 r1gÅ‘ rgÅ‘c2s rgÅ‘2z1ölt rgÅ‘1zö rgÅ‘2z1Å‘2s rgÅ‘1zÅ‘ r1g2rá r1g2ru r2gya1do rg2y r1gya r2gy1aj r2gyalak rgya1la r2gy1alap r2gy1al1gá r2gy1alk r2gy1an2y r2gyap r2gyarc r2gy1as2z r2gya1u r2gy1az r2gyál r1gyá r2gy1á2z r2gy1eg r1gye r2gy1e2l r2gy1enc r2gy1e2s r2gy1és r1gyé r2gyé1vé r2gyim r1gyi r2gy1int r2gyip rgy1i1ra r2gy1ok r1gyo r2gy1öz r1gyö r2gyÅ‘r r1gyÅ‘ rhajóé2r r1ha rha1jó rhajó1é rhatá2s1út r3ha1tá rh2atás rhatá1sú rháza2d r1há rhá1za rhá2z1a1da rhá2zal rhá2zip rhá1zi rhá2z3s2 rhitköz1 r1hi rhit1kö 1r2ho2e1á r1ho rho1e 1ri ri2a1a ri1a ri2a1á ria1b ri2a1ba ri2a1bá ri2a1bo ri2ac ri2a1e ri2a1é ria1f ria1ff ri2afag ria1fa ri2afr ri2a1g2 ri2ah ri2ai2k ria1i ri2a1í ri2aj ri2aké2n. ria1ké ri2a1kó ri2a1la ri2a1lá ri2a1lu ri2am ri2a1na ri2a1o ri2a1ó ri2a1ö ri2a1Å‘ ri2a1p2 ri2a1rá ri2a1ré ri2a1s1za rias2z ri2a1s1zá ri2a1s1zi ri2a1s1zo ri2a1té ri2a1to ri2a1t2r ri2a1u ri2a1ú ri2a1ü ri2av ri2az 2riás2z ri1á r1i2ázós riá1zó 2ri1bé ri2bol ri1bo 2r1ibr 2ri1bü ri2c1e2l ri1ce rics1il ric2s ri3ci3nus3 ri1c1si ri2d1a2l ri1da ri2dál ri1dá rid1d ri2d2e. ri1de 2r1i2de1á ri2de1i 2r1i2dej ri2del ri2de1o rid1e1re ri2d1es2z 2r1i2dil ri1di 2r1i2dom ri1do 2r1i2dÅ‘ ri2du ri2ed ri1e ri2eg 3rie2l 3rier ri1f8l ri1fl ri1f2rá 2r1i2g2e. ri1ge 2r1i2gé 2ri1gi ri1g1la 2r1igr ri2har ri1ha 2r1ihl ri1hó2 rihón1 2r1i2jes ri1je ri1k1lo ri1k2ló 1ri1k2ri ri2lal ri1la ri1lé2 ril2l1e2h ril1le ril2lé2t ril1lé ril2l1in ril1li ril2l1Å‘ 2r1il1lu 2r1il1lú 2ri1ló ri1l2y 2rimá1da r1i2mád ri1má 2rimá1dá 2r1imp ri2n1a2d ri1na 2r1i2na1i ri2naj ri2n1a2l ri2n1a2n ri2n1a2r 2r1i2na2s. 2r1i2na1sá 2r1i2nasn 2r1i2na1so ri2nass 2r1i2nast2 rina1s2z2 ri2na2t. rin2c1a rin2cá rinc3c rin2c1eg rin1ce rin2cel rin2cer rin2c2h rin2csér rinc2s rin1c1sé rin2c1si 2r1in1de 2r1in1du ri2neg ri1ne 2r1inf8l 2r1infl rin2gál rin1gá rin2gel rin1ge 2r1ingét rin1gé rin2gül rin1gü 2r1in1ha 2r1i2nic ri1ni ri2nil ri2n1ip 2r1injek rin1je rin1k1ré rin3n 2r1insp 2r1inst rin2t1ad2 rin1ta rintá2r rin1tá rin2tá1ra rin2tá1ro rin2társ 2rinten rin1te 2rinterf 2rinterff rinté2r rin1té rin2t1é2r. rin2t1é1ré 1rin2t1é1ri 2rint2Å‘. rin1tÅ‘ 2rintÅ‘k ri2nül ri1nü ri2o1k2 ri1o rio2lok rio1lo ri2o1mé ri2o1ni 2rionn 2rio1no 2riox ri2ó1a ri1ó ri2ó1á ri2óc ri2ódar rió1da ri2ó1e ri2óg ri2ó1ke ri2ól ri2ó1má ri2ó1mé ri2ó1o ri2ó1p ri2ó1ü 2r1i2pa1i ri1pa 2r1i2pa2r. 2r1ipa1ra 2r1i2pa1rá 2r1i2parb 2r1i2pa1ré 2r1i2parh 2r1i2paril 1ripa1ri 2r1i2parin 2r1i2parn 2r1i2parr 2r1i2pars2 2r1i2par1te 2r1i2par1tó 2r1i2pa1ru 2ripl ripor2ta ri1po 2r1i2ram ri1ra 2r1i2rat 2r1i2rá 2r1irh 2r1i2ri 2r1i2ro 2r1i2rón ri1ró 2r1irr 2r1irt ri2s1ar ri1sa ri2s1as ri2s1ál ri1sá ri2sáp ri2s1e2l ri1se ri2s1emb ri2s1e2r ri2sid ri1si ri2si1i ri2s1il ri2s1is 2r1ismérv ris1mé ri2s1o2r. ri1so ri2s1ort 2r1is1pá 2ristál ris1tá ri1str ri2su2t ri1su ris1ü1té ri1sü ri2s1ü2t2Å‘. risü1tÅ‘ ri2s1ü2v 2r1i2szák ris2z ri1s1zá ri2t1a2d2 ri1ta ri2tal 2r1i2ta2l. 2r1i2talb ri2t1alk 2r1itall 2r1i2taln 2r1i2ta1lo 2r1i2talr 2r1i2talt2 rit1a2n2y ri2tág ri1tá rit1ell ri1te 2riti1ka ri1ti ri2t1i2o ri2t1í rit2ten r2it1te riu2mé1ne ri1u riu1mé riumhid2 rium1hi riumhidr1 riu2m1i2o riu1mi 2r1i2vad ri1va ri2var 2r1i2vás ri1vá 2ri1vo 2r1i2vó ri1xe2 ri2x1el ri2xí ri2xö 2ri1za r1i2zén ri1zé r1i2zét 2r1iz1mi 2r1iz1mo 2r1izmuk riz1mu 2r1izmusom rizmu1so 2r1iz1mú ri2zsar riz2s ri1z1sa ri2zseb ri1z1se ri2zsel 2r1iz1za 2r1iz1zó 1rí rí2gé 2rí2j. rí2ja1i rí1ja rí2jak rí2jam rí2jas 2rí1já rí2ján rí2ját rí2jáv 2r1íjh 2r1íjj 2r1íjl 2r1íjr 2r1íjv rí2m1a2l rí1ma 2rí1má rím1emb rí1me rí2mo rí2mö rí2né 2r1íns rí2ra r1í2rá r1í2ró 2r1í2tél rí1té rítés3s rítÅ‘1a2 rí1tÅ‘ rítÅ‘1e2 rítÅ‘kés2z1 rítÅ‘1ké 2r1í2v. rí1va2 2r1ívb 2r1í2ve 2r1í2vé 2r1ívh rí2vi r1í2vü rí2vű 2r1ívv rí2za rí2z1el rí1ze rízis3s2 rí1zi rí2zo r2j1a1do r1ja rj1an2y r2j1ág r1já r2j1áp rje3la r1je rjet2 r2j1id r1ji r2j1ös r1jö r2j1u2r r1ju rka1b r1ka r2k1ang rka1pr rkaros3 rka1ro rka2ró2r rka1ró rka2s1ü2v rka1sü rka1t2r r2k1ác2s. r1ká rkác2s rká2c1sá rká2ne r2k1á2ri rkár1om rká1ro r2k1á2ru r2k1e2d2z r1ke rk1e2lem rke1le rk2elm r2k1el1tá rke1p r2k1erd rk1ere1dÅ‘ rke1re r2k1e2re1i r2k1e2rez r2k1e2rÅ‘ rke2s1zö rkes2z r2k1ex rk2é2p1e2l r1ké rké1pe rké2p1éss rké1pé r2k1é2r. r2k1ér1té r2k1étt r1k2hé rk2hón rk1hó rki1a2 r1ki rki1e2 rki2g r2k1i1ga rkigaz1 rkilenc1 rki1le r2k1i1mi rk1in1ga r2ki2on2t. rki1o rki2sem rki1se rki2z1a rk1i1zo rk1kl r1k2li1e rk1li r1k2lí r1k2lo r1k2ló rk1o2laj r1ko rko1la rko2nya rkon2y rko2v2i. rko1vi rko2vit r2k1ó1né r1kó rk1ó2rá rk1ó2ri r2k1ölté1si r1kö rköl1té r2k1ötl rkö2zÅ‘ rk1Å‘2r. r1kÅ‘ rk1Å‘2ré rk1Å‘rk rk1Å‘rn rk1Å‘2rö rk1Å‘rr rk1Å‘r1s2 rk1Å‘rt rk2rém rk1ré r1k2ri r1k2rí r1k2rom rk1ro rk1sh rktus1s2 rk1tu rk1udv r1ku r2k1ug rku2s1ze rkus2z r2k1ú2s2z r1kú r2k1üd r1kü r2k1üg rk2vó rlag1g r1la rla2g1ol rla1go rla1i2 rla2in rla2p1a rla2pál rla1pá rla1p1e rla2pol rla1po rla2p1os2z rl2a1p1ro rla1s2t rl2a2t1a2n rla1ta rla2t1ó2 rlá2pe r1lá rlás3s rlá2s1út rlá1sú rlá2t1e2 rlá2t1é rlá2tor rlá1to rle2g1a2 r1le rle2g1á rle2ger rle1ge rleg1g2 rle2gigaz1 rlegi2g rle2g1i1ga rle1gi rle1í2 rle2t1á2 rle2t1eg rle1te rle2tell rle2t1e1lÅ‘ rle2t1ék rle1té rle2té2l rle2t1é2r. rle2t1érv rle1ü2 rlésát1 r1lé rlé2s1á2 rlé2s1á1ta2 rlés3s rl1gr rló1g2 r1ló rló1ó2 rlót2 rlÅ‘1e2 r1lÅ‘ rlÅ‘1s1ta r2m1akad r1ma rma1ka rmaké2s1z1ü rm2akés rma1ké rmakés2z r2m1a2kó rm2a1k1ré r2m1alt r2m1an1gi r2m1a2nya rman2y rma1ó2 rma2t1á2ru rm2atár rma1tá rm2a2t1ur rma1tu rma2zon rma1zo rmá2lér r1má rmá1lé rmá2nya2n rmán2y rmá1nya r2m1á2ram rmá1ra r2m1á2ro r2má1ru rm1cl rme1ge2 r1me rme2g1er rme2g1es rme2g1é rme3g2ö2 rme2k1an rme1ka rme2kar rme1ká2 rme2k1eg rme1ke rme2k1e2l rme2kérd rme1ké rme2ko2r rme1ko rme2kot rme2k1ó2 rmekö2r rme1kö rme2kö1rö r2m1elk r2m1elm rme2ran rme1ra rme2ras rme2r1in rme1ri r2m1e2rÅ‘1i rme1rÅ‘ rme2rÅ‘2k. rme2rÅ‘1ke rme2rÅ‘kn r2m1e2rÅ‘m rmert2 rmer1tr rm1esem rme1se rme2t1él rme1té rme2tin rme1ti rmé2k1e2l r1mé rmé1ke rmé2ker r2m1é2le r2m1ép r2m1é2r. r2m1ér1te rmé2sa2 r2m1étk r2m1étr r2m1étt rmi2g r1mi r2m1i1ga r2m1i1gé rmik1ro1 rmikros2z2 rm1il1la rminc3s rm1in1te r2m1i1rá rmi2si r2m1is1ko r2m1ism rmi1te2 rmi2t1el r2m1íg r1mí rmjob2 rm1jo rm1kl rmo2n1a r1mo rmo2nár rmo1ná rmo2n1e rmon1n r2m1o1pe r2m1or1s2 rmo1sz2f rmos2z rmo1sz2ff rmo1sz2t. rmo1sz1ta rmo1sztár rmosz1tá rmÅ‘2s1zá r1mÅ‘ rmÅ‘s2z rm1p2l rm1p2r rm1sk rm1s2z2 rm1tr rm1üg r1mü rm1üz rmű1s r1mű rm1ya rna1b r1na rna1f2 r2n1a1ff rna2gyú2 rnag2y rnai2k rna1i rna1k2r rna2pe2s rna1pe rn2a1p1ro rnas2 rna1sp rna1s2z2 rna1t2 rna1u2 rná2c2s r1ná rn1di2 rne2i r1ne r2n1e2l. r2n1elb r2n1elf r2n1elff r2n1elh r2n1elj r2n1ell r2n1eln r2n1elr r2n1elt rne2m1is rne1mi r2n1est rne2t1a2 rne2t1e2l1 rne1te rne1t1o rnés2 r1né rné1st rni2c1he r1ni rnic2h r2n1i2d rni2g r2n1i1ga rno1g2 r1no rno2kis rno1ki rnó1d2 r1nó rnö2ke2t r1nö rnö1ke rn1se2 rnus3s1ze r1nu rnuss2 rnus2s2z r2ny1a2dó rn2y r1nya r2nyakad rnya1ka r2nyala1ko rnya1la r2ny1alk r2nyarc rny1álm r1nyá r2ny1ell r1nye r2nyelm r2ny1eln r2ny1e1lo rny1el1vo rny1emb r2nyerd r2ny1e2rez rnye1re rny1e2sÅ‘ rny1ék1né r1nyé rny1és2z r2ny1id r1nyi r2nyiz rnyolc1 r1nyo rny1old r2ny1or rny1ök r1nyö r2nyöt rny1s r2ny1ur r1nyu 1ro ro2ad ro1a ro2al roa2n 2r1obj 2robl 2r1obs ro1c2ka roc2ke ro1cker roc2ké2n roc1ké ro1c2kok roc1ko ro1c2kon roc2ko2s. 2r1o2dú roff8i2 rof8f roffi2 rofi2tár rof8i rofi1tá roï¬2tár roï¬ roï¬1tá ro1f8l ro1fl ro1fr ro2g1ad ro1ga ro2g1ak ro2gal ro2g1am ro2gar ro2g1á2r ro1gá ro2g1áz ro2g1e2l ro1ge rog1enc ro2ge2r ro1g2ló ro2g1o2l ro1go ro2gor ro2g1os2z ro2gö 3rog1rá ro1gu2 ro2gur ro2gü 3rog2y ro2he ro2hö ro2is ro1i ro2ix 3rojt ro2k2a. ro1ka ro2kab ro2kac ro2k1a2d ro2kait roka1i ro2k1aj ro2kak ro2k1al ro2k1a2n ro2k1a2s ro2káb ro1ká r1o2kád ro2k1ál ro2kán ro2k1á2s ro1ke2 ro2ke2d ro2k1en 2roket2t. r2o1ké ro2kék ro2k1é2l ro2ké2p ro2kid ro1ki ro2k1ing ro2k1í 2rokod ro1ko rok1old ro2kó ro2kÅ‘ rok1s2 2r1okság rok1sá rok1t2 2r1oktat rok1ta 2r1oktán rok1tá ro2k1u2s ro1ku ro1kú2 ro2k2ú. ro2kús ro2kü 2r1o2laj ro1la rola2n rolás1s ro1lá 2r1ol1dá 2r1ol1dó ro2l1i2d ro1li roligar2 r1o2li1ga roligarc3 rol2l1a2d rol1la rol2lag rol2l1akn rol2lat rol2leg rol1le rol2le2l rol2lis rol1li 2r1ol1ló 2r1oltás rol1tá 2r1olt2ó. rol1tó 2r1oltób 2r1oltó1é 2r1oltóh 2r1oltó1i 2r1oltó1ké 2r1oltóm 2r1oltón 2r1oltót2 2r1oltóv 2r1oltv ro2lü 2r1olvad rol1va 2r1olvas 2r1o2lya1i rol2y ro1lya 2r1o2lyáh ro1lyá 2r1o2lyán 2r1o2lyár 2r1o2lyéb ro1lyé 2r1o2lyéh 2r1o2lyé1i 2r1o2lyé2n. 2r1o2lyiér ro1lyi rolyi1é 2r1o2lyuk ro1lyu rom1ajt ro1ma rom1akk rom1a1kó 1ro2m1a2ro ro2m1ál ro1má 2romám ro2m1á2ri ro2m1árk ro2m1árn 1ro2m1á2ro rom1bé2 rom2bén ro2m1e2l ro1me ro2m1e2r ro2m1e2s ro2méj ro1mé ro2m1é2ne rom2f1os rom1fo ro2mim ro1mi rom1i1ná rom1ing rom1ist ro2mi1ta ro2miz ro2mí romköz1 rom1kö 2r1om1ni ro2m1o2r ro1mo ro2m1ó2r ro1mó ro2mö ro2mÅ‘ rom1pr ro2mü ron1alj ro1na ron1alt2 ron1a1lu ron1an2y rona1t2 rona2ut rona1u ro2n1á1ta ro1ná ro2n1átr ron2csel ronc2s ron1c1se ron2csem ro2ne2n ro1ne ron1es2z rone2s ro2n1é2r. ro1né ron2gal ron1ga ro2n1i2ko ro1ni ro2n1i2m ro2ní ro2nop ro1no ro2nóc ro1nó ro2n1ó2r ro2nö ro2nÅ‘ ron1s2 ron2tab ron1ta ron2tem ron1te ron2tev ron2t1én ron1té ron2t1in ron1ti ron2tí 2rontó1é ron1tó 2r1ontóh 2rontói2g rontó1i 2rontós ro2nü ro2nyac ron2y ro1nya rony1a2l ro2nyid ro1nyi ro2nyik ro2nyir ro2nyó ron2zab ron1za ron2z1al ron2zer ron1ze ron2zin ron1zi ron2z1ol ron1zo ron2z1or ron2z1ó2 ronz1z ro2om ro1o ro2os 2r1opc ro2per ro1pe ro1p2l ropo1s ro1po ro1p2r rop2s ro2rak ro1ra ro2r1a2l ro2rat ror1áll ro1rá ro1re2 ro2reg ro2r1e2l ro2r1e2s ro2r1in ro1ri ro2ros2z ro1ro ror1s rort2 ror1tr ro2rü ro2sar ro1sa ros1ass ro2s1atl ro2s1av ro2s1ár1k2 ro1sá 1ro2s1á1ro ro2sem ro1se ro2s1ist2 ro1si ro2s1ol ro1so ro2s1ó2 ro2sö ro2sÅ‘ ros1p ros3s1ze ros2s2z ros3szék ros1s1zé ros2tet ros1te 2r1ostob ros1to ros2tol 2r1os1tya rost2y ro2s1út ro1sú ro1sy ro2szal ros2z ro1s1za ro2sza2n ro2szás ro1s1zá 2r1osz1lo 2r1osz1no ro2s1zó r1osz1tá 2ro1té ro1t2he roto2na2 ro1to ro1t2ró 2rotth ro2ud ro1u ro2ug ro2un ro2us ro2uv rova2re ro1va rovás1s ro1vá 2r1o2v2i. ro1vi 2r1o2vib 2r1o2vik ro2vis 2r1o2xidb ro1xi 2r1o2xid1da 2r1o2xidg 2r1o2xi2d1i2 2r1o2xidj 2r1o2xido1ka roxi1do 2r1o2xidokk 2r1o2xidot 2r1o2xidr 2r1o2xidt 2r1o2xilc ro1xy ro1ya roza2tal ro1za roza1ta ro2zsa2n roz2s ro1z1sa ro1ën 1ró róa2d ró1a rób1ajt r2óbaj ró1ba 2ró1bá róc3c ró2c3h ró2cin ró1ci ró2c1ö ró2c3sá róc2s ró2da1i ró1da ró2d1ep ró1de ródi2a1d2 ró1di ródi1a ró2dÅ‘ ró2dü 2r1óé2v. ró1é 2róé2ve 2r1óé2vé r2ó2f1ag ró1fa 2rófe1a ró1fe 2rófe1á ró2f1iv róf8i ró2ï¬v rÃ³ï¬ 2rófs ró2fu2r ró1fu ró1g2r rói2g ró1i róke2rest r2óker ró1ke róke1re róke2r1in róke1ri ró1k2l ró1k1ré 2r1ólm r1ó2lom ró1lo ró2m1a2l ró1ma róma2r r2óm1a1ra ró2mál ró1má 2róm1c róme2l ró1me r2ó2mél ró1mé róm1i2s2z r2ómis ró1mi ró2mí 2rómk ró2mö 2róms ró2mü róne2m ró1ne 2r1ó2néb ró1né 2r1ó2né1é 2r1ó2néh 2r1ó2nén 2rónér 2rónét 2rónév 2rónj 2rónn 2rónr rónus3s2 ró1nu 2ró1nú ró2nü róo2k ró1o róó2r ró1ó ró1p2l ró1p1ro 2r1ó2ra1a ró1ra 2r1ó2rac 2r1ó2rad 2r1ó2ra1e 2r1ó2raf 2r1ó2raff 2r1ó2rag 2r1ó2ra1je 2r1ó2ram 2r1ó2ran 2r1ó2rap 2r1ó2rar 2r1ó2ras 2r1ó2rat 2r1ó2ra1ü 2r1ó2rav 2r1ó2ráb ró1rá 2r1ó2rád 2r1ó2rá2é. rórá1é 2r1ó2ráén 2r1ó2ráév 2r1ó2ráh 2r1ó2rá1i ró2rá1ja 2r1ó2rá1ka 2r1ó2rákb 2r1ó2rá1ké 2r1ó2rákh 2r1ó2rá1ki 2r1ó2rákk 2r1ó2rákn 2r1ó2rá1ko 2r1ó2rákr 2r1ó2rákt 2r1ó2rá2n. 2r1ó2rá1na 2r1ó2rá1ná 2r1ó2ránk 2r1ó2rán2y 2r1ó2rár 2r1ó2rás 2r1ó2rát 2r1ó2ráv 2r1ó2ri1á ró1ri rós1orom r2ósor ró1so róso1ro ró1s1pi 2rótb 2róth ró2tip ró1ti rót1ist 2rótj 2rótk 2rótm 2rótn ró2t1ö2v ró1tö ró1t1ri ró2tül ró1tü 2r1ó2vó róza1t2 ró1za ró2z1e ró2z1in ró1zi ró2zú ró2zü 1rö 2r1öbl 2r1ö2bö2l. rö1bö 2r1ö2bölb 2r1öbölh 2r1öbö1li 2r1ö2böll 2r1ö2böln 2r1ö2bölr 2r1ö2böl1tÅ‘ rö2ga rö2go rö2gó rö2k1é2l rö1ké rö2k1érv 2rö1kí 2rök1lé rö2ko 2r1ö2kör rö1kö 2rökö1sé 2rökö1sö 2r1ök1rö rö2lÅ‘s rö1lÅ‘ rö2lyü röl2y rö2ma rö2má 2röm2e. rö1me 2römed rö2meg 2röme1i 2römén rö1mé 2römét 2römév rö2mí 2röm1mű rö2mo rö2mó 2römöd rö1mö 2römök 2römöt rö2mu 2rö1mü 2rö1mű rön2d1e rön2k1a2 rön2k1e2 rön2kép rön1ké rön2kol rön1ko rön2kos rön2k1öl rön1kö rön2k1ü2 rö2p1i2 rö2re 1rö2rö rö2sa rö2sá rö2so rös3s1za rös2s2z rösz2ta rös2z 2r1ö2v. 2r1övb 2r1ö2ve r1ö2vé 2r1övh 2r1övn 2r1ö2vö 2r1övr r1ö2vü 2r1övv 1rÅ‘ rÅ‘a2n rÅ‘1a rőát1 rÅ‘1á rőá2ta2 rÅ‘1bl rÅ‘1br rÅ‘2dá rÅ‘2d1e2l rÅ‘1de rÅ‘2dos rÅ‘1do rÅ‘2d1Å‘2r rÅ‘1dÅ‘ rÅ‘e2l rÅ‘1e rÅ‘e2r rÅ‘e2s rőé2h rÅ‘1é rőé2l rőé2r rőé2te rÅ‘2f1as rÅ‘1fa rÅ‘1f8l rÅ‘1fl rÅ‘2f1Å‘ rÅ‘gé2p1és rÅ‘1gé rÅ‘gé1pé rÅ‘i2ta rÅ‘1i rÅ‘1kl rÅ‘1kv 2rÅ‘lt rÅ‘1pl rÅ‘1pr 2r1Å‘2r. rÅ‘r1ak rÅ‘1ra rÅ‘r1eg rÅ‘1re r1Å‘2re1i r1Å‘rh rÅ‘r1in rÅ‘1ri rÅ‘2riz rÅ‘rköz1 rÅ‘r1kö 2r1Å‘rl 2r1Å‘rm 2r1Å‘rn rÅ‘2rö 2r1Å‘rp 2r1Å‘rr 2r1Å‘rs 2r1Å‘rt 2r1Å‘2rü 2r1Å‘rz rÅ‘1sá2 rÅ‘2sár rÅ‘2sír rÅ‘1sí rÅ‘1s1ká rÅ‘2sÅ‘ rÅ‘1s1pe rÅ‘1s2pi rÅ‘1s1ta rÅ‘1st2r rÅ‘sü2l rÅ‘1sü rÅ‘2s1ü1lÅ‘ rÅ‘2s1ült rÅ‘2s1ü2t rÅ‘2s1ű2 rÅ‘sza2kál rÅ‘s2z rÅ‘1s1za rÅ‘sza1ká rÅ‘u2t rÅ‘1u rőü2l rÅ‘1ü rÅ‘va2s1 rÅ‘1va rÅ‘2z2i. rÅ‘1zi rÅ‘2zön rÅ‘1zö rpe1a2 r1pe rpe1i2 rpe2szel rpes2z rpe1s1ze rp2he r2p1ig r1pi rpi1s1á2 rpi2t1a rpi2t1e2 r2p1i1vá r1p2la rp2le rp2lé rp2lu rp2lü rprecíz1 rp1re rpre1cí r1p2ré r1p2ri r1p2rí r1p2ro r1p2ró rpu2s1zé r1pu rpus2z r2p1üz r1pü r2r1a2lap r1ra rra1la rra2s1za rras2z rra2s1zi rr2ata2n rra1ta rrat1an2y rr2a2t1á2r rra1tá rra2t1e r2r1ábr r1rá rrádiók2 rrá1di rrádi1ó rrádió1kb r2r1á2ga r2r1á2g2y r2r1árb rrá2saj rrá1sa rrá2sa2r rrá2ság rrá1sá rrá2se rrás3s rrá2sü rrá2s3z rrá2tal rrá1ta r2r1áts rre2l1i r1re rr1emb rren2d1Å‘2 r2r1ék r1ré rré2r r2r1é1ri rré2sem rré1se rr1f8l rr1fl rr1fr r2r1i2de r1ri rr1i2n. rr1ing r2r1ir rri2ta rr1i2zé rr1izg rr1izm rr1k2r r2r1o1pe r1ro rro2rál rro1rá rro2r1os2z rro1ro rró1dr r1ró rró1p r2r1öb r1rö r2r1ös rr1pl rr1pr rr1sp rr1t2r r2r1u2r r1ru r2r1ür r1rü r2r1üt rry2n r2s1a2dó r1sa r2s1a2g rsa2il2 rsa1i r2s1ak1ku rs1alan rsa1la rsa2lap r2s1a1le r2s1alm r2s1a2lomb rsa1lo r2s1a1na rs1a2n2y r2s1a2pá r2s1a2po rs1a2r2a. rsa1ra r2s1arc r2s1arom rsa1ro r2s1arz rs1att rsa2v1ar rsa1va rsa2v1é2 rsa2v1i r2s1ax r2s1a2z r2s1ábr r1sá rság1g rs1áld r2s1á2ré r2s1árn r2s1árr r2s1á2ru r2s1á1té r2s1á1ti rs1bl rs1br rs2c2h2 r1s2c1he rs1c3hé rs1d2r rs1ed2z r1se r2s1ef r2s1eff r2s1e2gét rse1gé r2s1e2g2y rse2il rse1i rse2k1a2 rse2keg rse1ke r2s1e2le1me rse1le r2s1elf r2s1elff r2s1elk r2s1e2lÅ‘1a rse1lÅ‘ r2s1e2lÅ‘l rs1e2mi r2s1e2mu rse2ny1a2 rsen2y rse2nyeg rse1nye rse2ny1e2l rse2nyer rse2nyí rse2nyÅ‘ r2s1erd r2s1er1k r2s1e2rÅ‘ r2s1ess r2s1es2z rsé2g1el r1sé rsé1ge r2s1él r2s1ép r2s1é2r. r2s1érd r2s1érl r2s1érték rsér1té r2s1és rs1é2te r2s1étk r2s1étt rs1fr rs1gl rs1gr rsi2d r1si rs1i1de rs1i1do rsi2g r2s1i1ga r2s1ikr r2s1ill r2simm r2s1ind r2s1ing r2s1int r2s1i2o rs1i2pa r2s1i1ro r2s1i2si r2s1isk r2s1ism r2s1ist2 rs1írn r1sí r2s1í2ró r2s1írt r1s2kál rs1ká r1skj rs1kl rs1k2r r1s2lu rs2mink rs1mi rs2ni r2s1ond r1so rso1nya2 rson2y rso2nyal rso2nyan rso2nyat rso2nyé r2s1op r2s1ord r2s1org r2s1os2z rs2ó1c1sa2 r1só rsóc2s rsócsap1 r2s1ó1dá r2s1ó1né rsó2s3zárr rsó1s2z rs2ó1s1zá r2s1öb r1sö rs1önt r2s1örv r2s1ös r2s1ö2z rs1Å‘r r1sÅ‘ rs1pl rsp2r r1s2rác rs1rá rs1s2t rs3szag rs2s2z rs1s1za rs3szak rs3s1zá rs3sze2m. rs1s1ze rs3szemet rssze1me rs3sze2r. rs3szer2ű. rss2ze1rű rs3szerűb rs3szerű1e rs3szerűn rs3szerűs rs3szerűt rs3szerűv rs3s1zi rs3s1zí rs3s1zó rs3s1zö r1s2tand rs1ta r1s2tat r1s2tác rs1tá r1s2tát rs2top rs1to rst2r r1strat2 rst1ra rs1t1re rs1t1ré r1st1ró r1st1ru r1s2tú rsu2r r1su r2s1u1ra rsu2t r2s1u1ta rs1u1tá r2s1ú2r. r1sú r2s1ú2ri r2s1ú2s r2s1ú1to r2s1üd r1sü rs1üld r2s1üz rsz2a2k1a2l rs2z r1s1za rsza1ka rsza2k1e rsza2kö rsza2k1ü2 r2sza1ló r2s3zam rszág1g r1s1zá rszáraz1 rszá1ra rs3zárl rszem1e2r r1s1ze rsze1me r2s3ze1né r1sz2f r1sz2ff rsz2lo rsz2m rszom2j1a2d r1s1zo rszom1ja rs3z1se rsz2s rs3z1si rsz2ta rszt1al rsz2t1árv rsz1tá rszt2rá r2s3zű2r. r1s1zű r1sz2v r2t1ab1la r1ta r2t1abr r2t1a2dat rta1da r2t1a2dó r2t1a2g2a. rta1ga rt1agit rta1gi r2t1a1já rt1aj1tó r2t1a2ka1ra rta1ka r2t1akc rt2a1k1re rt2a1k2ré rt1alapj rta1la rt1a2láb rta1lá r2t1alár r2t1alb r2t1alel rta1le r2t1alg r2t1alj r2t1alk r2t1alt r2t1alv rta2m1ér rta1mé r2t1a2nim rta1ni rta2n1ó2r rta1nó r2t1an1to r2t1antr r2t1a2nyag rtan2y rta1nya r2t1app r2t1arc rta2rén rta1ré r2t1at1ti rt1a2t2y r2t1a2u1to rta1u r2t1a1zo r2t1ábr r1tá r2t1áf r2t1áff r2t1á2g. rt1á2ga r2t1ágb r2t1ágg r2t1ágj r2t1ágn r2t1ágr rt1ágs rtá2la2d rtá1la rtá2la1la rt2álal rtá2ra1da rtá1ra rtá2raj rtá2ramr rt1ári1a rtá1ri rt1ári1á r2t1árin rt1ár1s1zi rtárs2z rt1ár1s1zí r2t1ár1ta rtá2ru1ké rtá1ru rtá2rukk rtá2rukn rtá2rukr rtá2rukt r2t1á2rur r2t1á2rut rtá2s1ág rtá1sá r2t1á2sás rtá2s3z r2t1á2t1a r2t1átl r2t1áts r2t1átv rtá2v1é rtá1vi2 rt1bl rt1br rt1cl rt1cr rt1dr rte1a2 r1te r2t1e2gé rt1e2gye rteg2y rte1i2 r2t1eks r2t1e2l1a2d rte1la r2t1elb r2t1elf r2t1elff rt1el1já rt1elker rtel1ke rt1el1kö rt1el1kü rtel2la rtel2l1á2 rt1el1ma rt1e2lÅ‘1a rte1lÅ‘ rte2lÅ‘l r2t1elr r2t1ember rtem1be r2t1eml r2t1enc r2t1ent rte1p rte2rac rte1ra rte2rál rte1rá rte2r1in rte1ri rter1mo1 rtermos2z2 rte2r1os rte1ro r2t1e2ró r2t1e2rÅ‘ rte1sp2 r2t1esték rtes1té rt1est1né r2t1estün rtes1tü rte2sz2e. rtes2z rte1s1ze rte2sze1i rte2szek rte2szem r2te2szet r2t1eszk r2t1eszm r2t1e2s1zü r2t1é2d r1té rt1é2gi rté2kaj rté1ka rté2k1a2l rté2k1á1t1a2 rté1ká rté2k1í2 rté2kos rté1ko rté2ku r2t1é2let rté1le rté2lén rté1lé rt1é2li r2t1élm r2t1é2ne1ke rté1ne r2t1é2nek1k2 r2t1é2nekr r2t1é1pü r2t1érdem rtér1de r2t1é2rem rté1re r2t1é2ré r2t1érin rté1ri r2t1é2rit r2t1értek rtér1te r2t1ér1té r2t1érv r2t1érz rté2s1ég rté1sé rtéskés2z1 rtés1ké rtés3s1za rtés2s2z2 rté2sü2l rté1sü rt2é2s1zá rtés2z rté2s1zo rt2é2s1zö rtés3z1sí rtész2s r2t1étk r2t1étl r2t1étt r2t1étv r2t1é2v2e. rté1ve r2t1é2vet rté2vé1né rté1vé r2t1é2vér r2t1évk rt1f8l rt1fl rt1fr rt1gr r1t2h2a. rt1ha r1t2hág rt1há r1then rt1he r2t1i2de r1ti rt1i1dé rt1i1di rt1if8j r2t1i2gé r2t1ill r2ti1má r2t1i2mi r2t1imp r2t1i2náb rti1ná r2t1i2ná1é r2t1i2náh r2t1i2nán r2t1ind r2t1inf r2t1inff r2t1ing rti2nik rti1ni r2t1i2pa r2t1i1rá r2t1i1ro r2t1i1si r2t1isk r2t1ism r2t1i1s1za rtis2z rt1i2tal rti1ta r2t1i1zé rt1izm r2t1izz r2t1íg r1tí r2t1íj r2t1ín rtí2ra rtí2rá r2t1í2v rtí2z r2t1ízl rt1kl rt1kr rt1kv rt1mű1 rtműt2 rto2kad r1to rto1ka rto2k1a2l rto2k1ar r2t1o2li r2t1oml rtomo1g rto1mo rto2n1a2 rto2n1á2 rt1o1pá r2t1o2pe rt1op1t2 r2t1or1g2 r2t1o2rom rto1ro r2t1orr r2t1ors2 r2t1orv r2t1oszt rtos2z rtóe3re1jü r1tó rtó1e rtóe2re rtó1p rtó2rák rtó1rá rtó2s1í2n. rtó1sí rtó1sp rtó2s3zár rt2ó1s1zá rtós2z r2t1ökl r1tö rt1ököl rtö1kö r2t1ö2lÅ‘1se rtö1lÅ‘ rtön3n rt1ö2rök rtö1rö rt1öröm r2t1ös2s2z rt1ö2vez rtö1ve rtőé2h r1tÅ‘ rtÅ‘1é rtÅ‘kés2z1 rtÅ‘1ké r2t1Å‘rköd rtÅ‘r1kö r2t1Å‘rl r2tÅ‘rül rtÅ‘1rü rt1pl rt1pr rt1ps rt2rad rt1ra r1t2raf r1t2raff r1t2ranz r1t2rág rt1rá r1t2ri1á rt1ri r1t2rik r1t2ril r1t2ri1ó r1t2rón rt1ró r1t2rü rt1sk rt1sl rt1sp rt1st rts2z2 rt1t2r r2t1udv r1tu rtu2k r2t1u1ká r2tunik rtu1ni r2tu2ra1i rtu1ra rtu2ral rt1u2rá rtu2s1ze rtus2z rt1u2tat rtu1ta r2t1új r1tú r2t1ú2s r2t1üg r1tü r2t1üld r2t1ü2lé rt1ü1lÅ‘ r2t1üt r2t1ü2v rt1ű2zÅ‘ r1tű r2tying rt2y r1tyi rty2j rty2s r1t2zi rt2zÅ‘ 1ru ru2ac ru1a rua2d ru2b1i2k ru1bi ru2c3h ru2c2z 2r1udv rue2l ru1e rue2r ru1fr 2rugar ru1ga 2r1u2gat rug5g2y 2r1ugr ruhás1s ru1há 2r1ujj ru1k2l 2ruk1tu 2ruk1tú rum1agr ru1ma ru2maj ru2mal ru2maz ru2m1eng ru1me ru2mer ru2mes ru2mél ru1mé ru2m1i2k ru1mi rum1ill ru2m1i2p ru2mis ru2m1iv ru2miz ru2mí ru2mol ru1mo ru2m1o2r ru2mö ru2mÅ‘ ru2mü 2r1unc run2da ru2nit ru1ni r1u2nok ru1no ru2pad ru1pa ru2pe ru2p1il ru1pi ru2pü ru2rad ru1ra ru2ra1i r1u2ral ru2ras ru2rat r1u2raz ru2rán ru1rá ru2rát 2r1urb ru2ruk ru1ru rus1abl ru1sa ru2sad ru2sal rusa2n rus1an2y rusa2r rus1a1ro ru2sas ru2sál ru1sá ru2se2n ru1se ru2s1iz ru1si ru2sí2r ru1sí ru2s1ol ru1so ru2s1ó2 ru2sÅ‘ russ2 rus2s2z2 rust2 rus1t1ra ru2s1ű2 ru2sz1é2p rus2z ru1s1zé ru2szip ru1s1zi r1u2tac ru1ta r1u2tak r1u2tat r1u2taz 2r1utc ru1t1he r1u2t2ó. ru1tó r1u2tób r1u2tód r1u2tó1i r1u2tój r1u2tók r1u2tón ru2tó1p2 r1u2tór r1u2tós r1u2tót r1u2tóv 1rú rú1da2 rú2da2d rú2d1al rú2d1ar rú2d1á rú2de2l rú1de rú2din rú1di rú2du rú2dü rú1dy rú2d3z rú1gr 2r1újd rú2jí 2r1újk 2r1újs 2r1ú2r. 2r1úrb 2r1úrh 2r1ú2ri 2r1úrk 2r1úrn rú2ro 2r1úrr 2r1úrt rú2s1zó rús2z rú2t1a2l rú1ta 2r1ú2t1e2 2r1ú2t2é. rú1té rú2tér rú2tit rú1ti 2r1útk 2r1út1le 2r1útm rú1to2 2rúts 2r1ú2tü 2r1útv rú2zsad rúz2s rú1z1sa r2ú2z1se 1rü rü2dí rü2dü rü2gyel rüg2y rü1gye 2rügyn rü2ha rü2la rü2lá rü2led rü1le rü2les rü2lép rü1lé rü2lér rü2lí rü2l1o rü2ló rü1lö2 rü2l1ön rü2l1öz rü2l1Å‘g rü1lÅ‘ rü2lu rü2lú rü2l1ü2l rü1lü 2r1ünn 2r1ü2nÅ‘ rü2rí 1rü2rü rü2te rü2té rü2tö rü2tÅ‘ rü2vö rü2ze rü2zé 1rű rű1gr rű1kl rű1pr 2r1ű2r. 2r1űrh 2r1űrm rű2rö 2r1űrt rű2s1orr rű1so rűs1or1s rű1sp rű1st2r r2v1a1gá r1va r2v1akc rva2lap rva1la r2v1alj r2v1alk r2v1a2rán rva1rá rva2sáb rva1sá rva2sék rva1sé rva1su2 r2v1a2s1zó rvas2z rva1t2r rva1vá2 r2v1á1ga r1vá rvá2gyi rvág2y r2vállam rvál1la r2v1ál1lo rv1állv rvá2nya2d rván2y rvá1nya rvá2nya2n rvá2nyú r2v1áp rvá2r1a2l rvá1ra r2v1á2ram rváro2s1os rvá1ro rváro1so rv1á2rú2 r2v1á2sás rvá1sá r2v1á1ta2 rvá2tors2 rvá1to r2v1e2b r1ve r2v1e2d2z r2v1e2gye rveg2y r2v1e1la rv1e2led rve1le rve2lemb r2ve2le1me rv1e2les r2v1elk r2v1ell r2v1e1lo r2v1e2lÅ‘1a rve1lÅ‘ rv1e2lÅ‘1á r2v1e2lÅ‘kép rvelÅ‘1ké r2v1elÅ‘r r2velÅ‘z r2v1en1g2 r2v1ep rve2r1a rve2r1á2 r2v1e2retn rve1re rverés3s rve1ré rve2rip rve1ri rve2r1o r2v1e2rÅ‘1i rve1rÅ‘ r2v1e2se1te rveset2 rve1se r2v1e2sés rve1sé r2v1ex rv1é1ke r1vé rv1ékk rv1ékn rv1é1kü rv1é2lel rvé1le r2v1é2lé rvé2ny1e2l rvén2y rvé1nye r2v1ép r2v1é2rem rvé1re r2v1é2r2é. rvé1ré r2v1é2rés r2v1érp r2v1ér1té r2v1érv r2v1é2vet rvé1ve r2v1é1vi rv1fr r2v1i1do r1vi r2v1i1ga r2v1i2gaz1 r2v1i1gé r2v1ik r2v1inf r2v1inff rv1in1te r2v1in1té r2v1i2p r2virán rvi1rá r2v1is1me rvis3s1ze rvis2s2z r2v1ital rvi1t2a rvi2z1a2 rvi2z1á2 rvi2z1elv rvi1ze rvi1z1o rvi2zó r2v1í2rá r1ví rví1ze2 rvíz1es rv1kl rv1kr r2v1ob r1vo r2v1olv rvonala2d rvo1na rvona1la r2v1op r2v1or rv1os2z r2v1ov r2v1ó2h r1vó r2v1ó1rá rv1öss r1vö rv1Å‘s r1vÅ‘ rv1pr rv1sk rv1sp rv1st rv1tr r2v1ub r1vu r2v1u2t r2v1üg r1vü rvü2l r2v1ü1lé r2v1ü1lÅ‘ r2v1ült r2v1üt r2v1ü2v r2v1ü2z ry2be ry2bó ry2bÅ‘ ry1é2n ry2na ry2ne ry2ra ry2re rys2n ry1th ry2tó ry2tÅ‘ ry2va ry2ve r2z1a2dot r1za rza1do r2z1a2la r2z1alj r2z1alk r2z1almás rzal1má rza2s2z r2z1a1s1zó rza2tal rza1ta rza2t1e2 rza2tol rza1to r2z1áll r1zá rzált2 r3zá2r1ó2r rzá1ró rzá2se rzás1s r2z1e2be r1ze rze1p2 rz1est rze2tal rze1ta rze2t1eg rze1te rze2t1e2l rzetes3s rze2t1o rzetü2két rze1tü rzetü1ké rzé1na2 r1zé rzé2n1al rzé2nat rzé2ná r2z1érm rzé2so rzi2ab r1zi rzi1a rzis3s2 r2z1ín r1zí rzo2r1ál r1zo rzo1rá rzó2s3zár r1zó rz2ó1s1zá rzós2z rzÅ‘1a2 r1zÅ‘ rzÅ‘1e2 rz1p2r rzs1a1la rz2s r1z1sa rzs1an2y rzs1a1pa rz3sa1va r2zsaz r2zsá2r. r1z1sá rz3seben r1z1se rzse1be r2zs1e2g r2zs1e2r r2z3ség r1z1sé r2zs1ék r2zs1é2r. r2zsé1va r2z2s1i1ga r1z1si rz2s1inj rzs1int r2zsip r2zsi1ta r2zs1or r1z1so r2zs1ö2r r1z1sö r2z1s1Å‘2 rzs1s rzs1u2t r1z1su rzs1úr r1z1sú r2zs1ült r1z1sü rzu2sak r1zu rzu1sa rzu2sa2n rzus3s2 rzu2s3z r2z1ut 2s. 1sa sa2ak sa1a 2sa1bo 2sabr 2s1abs 2s1a2cé s1a2da1lé sa1da 2s1adap 2s1a2da1ta 2s1a2da1to 2s1ada1tó sadás1s sa1dá sa2de 2s1adm sa2dog sa1do sa2dóc sa1dó sa2dód sa2dó1é sa2dóh sa2dó1i sa2dój sa2dóm sa2dón sa2dór sa2dó1u sa2dóz sae2c sa1e sae2r sa1f2r 2sa1ga sa2gan sa2g1ál sa1gá 2sagg sa1g1ne 2s1a2gó sa2gÅ‘ s2a1g1rá s1ag2y. sag2y s1agyb s1a2gyo sa2gyú 3sa2h. saha2r sa1ha sa2hov sa1ho sa2ig sa1i 2sa1ja sa2jak sa2jág sa1já 2saján sa2j1ö saj2tal saj1ta saj2t1a2n saj2tar sajté2r saj1té saj2t1é1ré saj2tor saj1to saj2t1ö saj2t1ü2 s2a2k1ab sa1ka 2s1a2kad s2a2k1an sa2kas 2s1ak1ci sa2k1en sa1ke sak2k1a2r sak1ka sak2k1as sak1ke2 sak2k1eg sak2ker sak2ke2s sak2kis sak1ki sak2kol sak1ko sak2k1orr sak2k1ó2 2sak1ku sa1k1lu 2s1akn2a. sak1na 2s1aknáb sak1ná 2s1akná1i 2s1aknák sak1o1la sa1ko s2a2k1orm sa2k1ös sa1kö sa1k2ru 2s1ak2t. 2s1ak1ti 2s1ak1tu sa2k1ug sa1ku 2s1a2kus sa1k2va 2salab sa1la sala2g1 sala2ka s1a2la1ku 2s1a2la2pa sa2la1pí sa2lapl sa2lapoz sala1po s1a2lapr sa2lapt salá2da sa1lá 2s1a2lá1í salán1n salás1s 2s1a2lá1té 2s1alb s1a2lel sa1le s1a2l1é2pí sa1lé s2alé2t sa2l1é1te 2salf 2salff 2s1algáh sal1gá 2s1algá1i 2s1algán 2s1algásat salgá1sa 2s1alja1i sal1ja 2s1aljáh sal1já 2s1aljár 2s1aljá2t. 2s1al1ka 2s1alkot sal1ko s1al1ku 2salm 2s1a2lomn sa1lo 2s1a2lomr sal2tag sal1ta 2s1al1te 2s1alth 2s1altit sal1ti sa2l1ú sa2m1an2y sa1ma sa2mec sa1me sa2m1il sa1mi sa2m1í sa2mol sa1mo sa2m1os2z s2amos 2s1a2mÅ‘ sa2nal sa1na sa2nat s2and 2sa1ne sa2nek 2s1ang2y sa2nód sa1nó sa3nö s1an1te sa2ny2a. san2y sa1nya s1a2nyag sa3nyar 2sa1nyá sa2on sa1o saó2r sa1ó sa2p1a2dó sa1pa sa2p1a2g sapa2te sa2pác sa1pá sap1á2c2s sap1áll sa2p1átm sa2pá1to sa2p1el sa1pe sa2p1ék sa1pé 3sap1ka 3sapkáb sap1ká 3sapkán 3sapkás 3sapkát 3sapkáv sa2p1os2z sa1po s1a2pókr sa1pó s1a2pósab sapó1sa 2sapp s1ap1rí s2a1p1ro 2sa1pu sa2ra1tá sa1ra sa2ra1tó sa2rán2y sa1rá sar2c3ho sarc2h sar2cin sar1ci sa2rén sa1ré sa2rit sa1ri sar2j1e sar2k1e2 3sar1ki sar2kin sar2kir sar2k1ö2 3sar1kú 3sar1ló 2sarm 2sarom sa1ro sart2r sa1ry 2sarz sa1se2 sa2s1eb sa1s2m sa1s2po sas3s1za sas2s2z sas3s1zá sas3s1ze 2s1as1s1zo 3sast sa2s1u2t sa1su sa2sú s1aszf sas2z s1aszff 2saszt sat2a2kés s2atak sa1ta sata1ké sa2t1alj sa2t1alt sa2t1a2nyá s2atan satan2y sat1a1pu s2atap sa2t1á2ra2k. s2atár sa1tá satá1ra sa2t1ár1ka satár1k2 sa2t1érk s2atér sa1té sa2t1érr sa2t1i2k sa1ti sa2t1ing s2atin s1at1lé sat1mo1 satmos2z2 2s1a2tom1bó sa1to satom1b 2s1a2to1mo sa2t1orm s2ator sa2t1ó2d sa1tó sa2t1ó2né sa1t2rá 2sat2y sa2tyá sa2ud sa1u sa2ul sa2u1rá 2saut sa2u1to s1aut2ó. sa2u1tó sautóé2r s1autó1é sautói2ko s1autó1i sa2uv 3sa2v. sa2v1a2da s2avad sa1va sa2v1a2l 3saván sa1vá sav1á1ra s2avár sav1ári1a savá1ri sa2v1árt sa2v1el sa1ve sa2v1ér sa1vé sav1ill sa1vi sa2v1i2n sa2vÅ‘ sa2vü sa2xi sa2zon sa1zo 1sá sá2b1ak sá1ba sá2b1e2l sá1be sá2b1e2r sá2bi2g sá1bi sá2b1il sá2bö sá2buj sá1bu sá2b1ut sá2bü 1sá2c1sá sác2s sá2gab sá1ga sá2ga2d ság1a1da 2s1ágadd sá2gal sá2ga2n sá2gas 2s1ága2s. ság1ass sá2gat 2s1á2gaz sá2g1ál sá1gá sá2g1á2rak ságá1ra sá2g1árn sá2g1á2ru sá2g1e2 sá2gép sá1gé sá2g1i2ko sá1gi sá2gí sá2g1os2z sá1go sá2g1ó2 sá2gö sá2gÅ‘ ság1s sá2gü sá2gű 4s1á2g2y ságy1a2d sá1gya sá1ka2 sá2kal sá2k1an sá2kar sá2kát sá1ká sá2k1e2 sákköz1 sák1kö sá2k1ö sá2kü s1álc sá2l1in sá1li 2s1álm s1á2lomb sá1lo 3sá1má sán2c1é sán2c3so sánc2s sán1k2r sá2nü sá2p1ost sá1po sá2rad sá1ra sár1a1dá sár1a2dó sá2r1ag sá2raj 2s1á2ra2k. sá2ra1ka 2s1á2rakb 2s1á2rakh 2s1á2rakk 2s1á2rakn 2s1á2ra1ko 2s1á2rakr sá2rakt sá2r1a2l 2s1á2ram sá2r1a2n 2sá2ras sár1ass sár1as2z 2s1á2rat sá2rá2g sá1rá sá2r1ál sár1d2 sá2r1e2 2sárét sá1ré sá2r1év sá2ri2a. sá1ri sári1a 2s1á2ri1á sár1i1ko sá2r1i2p sá2r1i2s sá2rí sár1k2 sá2r1os2z sá1ro sár1ott sár1ó1ni sá1ró sá2rö sá2rÅ‘ 2sár1ro sár1s2 sárt2 sár1tr sá2rug sá1ru 2s1á2ruh 2s1á2rul 2s1á2rus sá1rú2 2s1á2r2ú. sá2rü sá2s1ad sá1sa sá2sar sá2sás sá1sá sá2s1e2 sá2sis sá1si sáskés2z1 sás1ké sá2só 2s1ás2ó. sá2s1ó2r 2s1á2sóv sá2sö sá2sÅ‘ sás3s2z2 sá2s3za sás2z sászá2r1a2d sá1s1zá sászá1ra 2s1á2s1zo 2sá1ta s1átad sá2t1alj s1á2t1ál sá1tá s1á2t1á2z 2s1átb 2s1átc 2s1átd 2s1á2t1e2 2sá1té sá2t1é2l 2s1átf 2s1átff 2sáth 2sá1ti sá2t1ir 2s1á2tí 2sátj 2sátk 2s1átm s1á2tokt sá1to 3sátor sátókés2z1 sá1tó sát2ókés sátó1ké 2s1á2t1ö 3sát1ra 3sát1rá s1át1re 2sáts 2sátt s1át1tö 2sá1tu 2s1á2tü 2sátv s1át1ve s1át1vé s1át1vi 3sá2v. sá2v1a2d sá1va sáva2l sá2v1a2r sá2v1ál sá1vá sá2v1á2r 3sávb sá2v1e2 sá2v1érz sá1vé sá2vis sá1vi sá2viz 3sávj sá2v1or sá1vo sá2vö 3sávr 3sá1vú 3sávv sba2l1 s1ba sbe1á2 s1be sbér2c2s s1bé sb2lo sb2lú sb2ra sb2ri sb2ro sb2ró sca2e s1ca sca1g2 scar2 s2c1he sc2h 1schei1e sche1i sc3hek sc3hen sc3het2 sc3h2é. s1c1hé 1schéb2e. sché1be sc3héd 1schéé1re sché1é 1sché1re sc3hés sc3h2i. s1c1hi sc3hig 1schil sc2le scog2 s1co sc2ri sda2dal s1da sda1da sda1i2 sde1á2 s1de sde1b2 sde2del sde1de sde1kr sdes2 sde1sp sde1st sdesz2t sdes2z sdi2a1le s1di sdi1a sd2ra sd2rá sd2ro sd2ru 1se sea2d se1a sea2l sea2n seá2l se1á seá2r se2bag se1ba se2b1ak seb1alt se1bá2 se2b1ág se2bár se2b1e2g se1be seb1ell seb1elz se2b1esh seb1e1s1ze sebes2z s1e2béd se1bé 3sebés se2b1ó2 se2bö se2b1Å‘2 seb1p seb1s se2b1u se2bú se2bü2l se1bü 3seb1zé secs1a2p sec2s se1c1sa se2csev 1se1c1se se2cs1ék se1c1sé 2sedez se1de sedél1 se1dé 2s1e2dén2y se1d1ra se1d2rá se2d1ze sed2z se2d1zé se2d1zÅ‘ see2l se1e see2n 2sef8f 2seff se1f2ra 2s1e2ger se1ge 3segéd se1gé 2segér segés3s s1e2gés2z1 2segét 3segg seg2ga seg2go 3se1gí se2gyed seg2y se1gye segy1e2l s1e2gyé 2s1egyh 2s1e1gyü se1hü2 se2h1üv seí2r se1í sej2t1a2 sej2t1e2n2y sej1te sej2ter sej2té2r sej1té sej2t1o sej2tö seka2r se1ka se2k1ál se1ká 2s1e2ké2s. se1ké sek2k1á sek2kos sek1ko sek2k1ö se1k1lu se1k2ra se1k2ré se2kur se1ku se2kúr se1kú sel1ak se1la se2lál se1lá 2selb s1el1dö 2s1e2lef se1le 2s1e2l1eff s1e2leg2y se2l1e2h se2l1e1ké s1e2lemek sele1me 2s1e2le1mé se2lemk se2lemm 2s1e2lemz se2l1e1re s1e2le1sé sele2s2z se2l1e1s1zü sele2t1a2 sele2t1e2l sele1te se2l1e2vé se2l1e2vÅ‘ selés3s se1lé 2self 2selff 2s1el1ha 2s1elhel sel1he s1el1ho sel1id se1li se2lis 2s1el1já s1el1lá 2s1elmél sel1mé selnö2k1öl s1elnök sel1nö selnö1kö 2s1eln2y s1e2l1os se1lo 2s1e2lö se2lÅ‘ad se1lÅ‘ selÅ‘1a s1e2lÅ‘1í 2s1e2lÅ‘z 2selr s1el1ta s1el1tá s1eltet2t. sel1te 2s1el1tö 2s1el2v. 2s1elvek sel1ve s1el1vű 2s1elvv 2selz 2sember sem1be s1embe2r. s1emberb s1embern 2s1embr 2semén se1mé 2sem1lé se2nat se1na se2n1ál se1ná sen2d1a sen2d1á senés3s se1né 2s1enged sen1ge sen1ist se1ni se2n1or se1no s1en1ta seny1a2g sen2y se1nya seny1ak se2ny1á2 seny1ell se1nye seny1e1re se2ny1él se1nyé se2ny1é2r. se2nyér1d2 se2nyér1te 2s1enyh2i. seny1hi se2nyi1gé se1nyi se2nyös se1nyö se2nyu se2nyú se2ny1ü2l se1nyü 2s1enyv2e. seny1ve s1enz seó2r se1ó se2pid se1pi s1e2piz sep2pa sep2p1á2 sep2per sep1pe 2sep1ri se1p2ro se1p2ró se2r1ag2y se1ra se2ral se2ram se2r1a2n se2r1a2r se2r1as se2ra1u se2r1á2g se1rá ser1áll se2rár s1er1de 2s1er1dÅ‘ sereg1g se1re 3seregs 2serej se2r1e2le2m. sere1le se2r1e2lÅ‘ se2r1elt se2r1elv sere1p sere2pe1dÅ‘ sere1pe se2r1e2sz2e. seres2z sere1s1ze ser1eszk sere1t se2r1észb se1ré serés2z se2r1i2ga se1ri se2r1il seri2n se2r1i1na ser1inf ser1inff ser1ing ser1int2 se2ris se2riz ser1k se2r1ol se1ro se2ró s1eróz 2se2rÅ‘ s1er2Å‘. s1erÅ‘b s1erÅ‘d s1erÅ‘1é s1erÅ‘f s1erőff s1erÅ‘k s1erÅ‘m s1erÅ‘n ser1Å‘2s. s1erÅ‘t s1erÅ‘v ser1s sert2 ser1tr se2r1ü2g se1rü ser1ví2 2s1ese1mé 1se1se 2s1e2se1té 2s1esél se1sé 2s1e2sés 2s1es1kü 2s1e2sÅ‘ se1s2p ses1s1z1a2 ses2s2z sesszé2l ses1s1zé ses1s1z1o 2s1es1te se1s1ti s1eszen ses2z se1s1ze 2seszk s1esz1kö 2s1eszm se2s1zű se2t1a2la se1ta se2ta1na se2t1a2n2y se2tát se1tá se2t1e2g se1te set1ele1g2 sete1le se2t1elk se2t1elm 2setenk seter2r s2eter 2sete2s. 2sete1se 2s1e2te1té 2s1e2te1tÅ‘ seté2k se1té se2t1ékb se2t1é1ké se2t1é2l se2t1énk se2t1é2r. se2t1é2ri se2t1ér1té se2ti1ka se1ti se2ti1ká se2ti1ke se2t1ing se2tol se1to set1old se1tran set1ra se1t1ri se1t2ro 2settk seü2t se1ü 2s1e2vés se1vé 2s1e2vÅ‘ se1ye se1yé se1yi s1ezr 1sé 2s1ébr sé2es sé1e sé2f1a sé2f1á sé2g1a2 sé2g1á2 3ség2e. sé1ge sé2g1eg 3sége1i 3ségek ség1e1le sége2lem sé2g1ell 3ségem sé2g1ent2 sé2ger ség1erk sé2g1es2z sé2ge1té sé2g1e2ti sé2gev ség1é2je sé1gé sé2g1é2k sé2gép sé2g1é2r. sé2g1é2ré sé2g1érn sé2g1érr sé2g1ér1tÅ‘ ségért2 sé2g1é2rü sé2g1érv ség1és2z ség3g ség1i1ga ségi2g sé1gi sé2g1i2gé ség1ist sé2gí 3ségk sé1go2 sé2g1ok sé2gol sé2g1ó2 sé2gö2r sé1gö sé2gÅ‘2 sé2g1Å‘r ség1Å‘s ség1s sé2gu sé2gú 3sé1gü sé2g1ü2lÅ‘ ség1ült 2s1é2h. 2s1é2h2e. sé1he 2s1é2hek 2s1é2hes 2s1é2het 2s1é2hé 2s1éhh 2s1éhr 2s1éhs sé2jem sé1je s1é2ji s1éjs sé2kek sé1ke s1ék1ho 2s1ékm 2s1éks sé2k1ú sé2lel sé1le s1é2let 2séll 2s1élm sélÅ‘kés2z1 sé1lÅ‘ sélÅ‘1ké sé2lű 2sél2y sé2lya sé2lyeg sé1lye 3sé1má sé2mu s1é2nekb sé1ne 2s1é2ne1ke s1é2ne1ké 2s1é2nekh 2s1é2ne1ki s1é2nek1k2 2s1é2nekl 2s1é2nekn s1é2nekr s1é2nek1t2 s1é2ne1kü 2s1é2pí 2s1é2pü sé2ral sé1ra sé2ran sé2rát sé1rá 2sérb 2sérc s1ér1de sé2ré1é sé1ré sé2ri1e sé1ri sé2ri2g s1érlel sér1le 2sérm sé3ró 2sérr s1érté1ke sér1té 3sérvb s1érve1i sér1ve 3sérvem 3sérves 3sérvh 3sérvr 3sérvv 4sé1ry 2s1érz 2sés1di 2sése1ki sé1se sé2s1el 2sés2s2z2 2sés1tú sész1ak sés2z sé1s1za s2é2s1z1á sé2sz1emb sé1s1ze sé2szir sé1s1zi sé2s1z1o sész3s sét1abl sé1ta sé2t1a2d 2sétk sé2t1o sé1tÅ‘2 sé2t1Å‘r 2sétr 2sétt 2sétv 2s1é2v. 2s1é2vad sé1va 2s1évb 2sév2e. sé1ve 2s1é2ved 2s1é2ve1i 2s1é2vek 2s1é2ven 2sévet 2sévéb sé1vé 2s1é2vé1i 2sévén 2sévét 2sévév 2s1évf 2s1évff 2sévh 2sév2i. sé1vi 2s1évk 2s1évn 2s1évr 2s1évt 2s1é2vü 2s1évv sfaá3ga2c s1fa sfa1á sfaá2ga sfa2gy1al sfag2y sfa1gya sfe2j1ér s1fe sfe1jé sfenyÅ‘1é2 sfen2y sfe1nyÅ‘ sfé2má s1fé sfé2m1e2kéh sfé1me sféme1ké sfé2m1é sfé2mi sfiú1é2 sf8i sfi1ú sï¬Ãº1é2 sï¬ sï¬1ú sfi2úé1ra sï¬2úé1ra sfi2úét sï¬2úét sf2le sf8l sfle sfl sf2lo sflo sf2ló sfló sf2lu sflu sfo2k1út s1fo sfo1kú sf2ra sf2rá sf2re sf2ri sf2rí sf2ro sf2rö sga1b s1ga sga1d2 sga1p sga1tr sga2z1 sge2o s1ge sg2le sg2ló sg2nó s1g2ra sg2rá sg2ri sg2ró 1s2has2a. s1ha sha1sa s2h2e. s1he shelyü2kü shel2y she1lyü 1s2h2i. s1hi 1s2hih 1s2hij 1s2hik 1shirt shitköz1 shit1kö s2horr s1ho 3s2ho2w 1s2h2u. s1hu shú2sár s1hú shú1sá shús1s 1si si2ac si1a sia2d si2a1é si3ak sia2l sia2n2y siá2ro si1á si2b1á2 sibilis1 si1bi sibi1li sidás1s si1dá si2de1a si1de si2de1á si2deg si2de1i si2den si2de1o s2idet 2si1dé s1i2dén si2dom si1do 2s1i2dÅ‘ si2du si2eg si1e sie2l si2en si2e1u 2s1if8j 2si1ga s1i2ga1zo 2si1gá 2si1ge s1i2g2e. s1i2gek2 s1i2ges 2s1i2gé sig2na sig2n1e sig2n1ó2 2si1ha 3sihed si1he 2s1ihl si2k1a2n si1ka sike2r1es2z si1ke sike1re sike2s si2k1in si1ki si2k1ir si2k1old si1ko s1i2konh s1i2konj 2s1i2konk s1i2konn 2s1i2ko1no s1i2konr 2s1i2kont s1i2ko1nu sik1orr si1k1ré sikus1s si1ku 2s1i2mád si1má si2m1el si1me s1i2mit si1mi 3si1mí 3simog si1mo 2simp s1impor sim1po si2m1u2t si1mu 2s1i2nas si1na 2sind s1in1du s2i2ner si1ne 2sinf 2sinff 2sin1ga s1in1gá s1inget sin1ge s1in1gé s1ingók sin1gó si2nic si1ni 2sinj 2s1in1ku 2sins s1in1te 2sinv s1in1vá 2s1inz si2onn si1o s1i2o1no si2ó1a si1ó si2ó1á si2óc si2ó1da si2ó1e si2óg si2ói2k sió1i si2ó1o si2óp si2ó1ú 2s1i2pa2r. si1pa 2sipa1ra 2sipa1rá 2s1i2parb 2s1iparc 2s1i2parh 2s1i2parm 2s1i2parn 2s1i2pa1ro 2s1i2parr 2s1i2par1tá 2s1i2par1tó 2s1i2pa1ru 3si1pí 3sip1ka 3sip1ká 3sipol si1po 2s1i2ram si1ra s1irg 2s1irh 2si1ro s1i2rod 2s1i2rón si1ró 2sirt s1ir1tó si2sad si1sa si2sél si1sé si2s1is si1si si2s1í2 sis3s sist2 si2s1ü2 si2s3zab sis2z si1s1za s1i2tal si1ta sita2li si2t2e. si1te si2t1i si2t1ö sit2tin sit1ti 3sit2y siú2t si1ú 2s1i2vad si1va 2s1i2var 2sivás si1vá 3si1ví 2s1i2vó si1wy 2si1zé si2z2é. si2zéb s1iz1mo 1sí sí2gé sí2ja sí2ju sí2ka2s sí1ka sí1ke2 sí2k1er sí2kí sí2kü sí1na2 sí2nac sí2nal sí2nan sí2n1á2 sí2nel sí1ne sí2nil sí1ni sí2nö 2síns sí2n1ú sí2r1ad sí1ra sí2r1ál sí1rá sírá2s3z sír1á2to sí2red sí1re sí2r1e2m sí2re2n sí2res sí2r1e2t sí2r1én sí1ré sí2rir sí1ri sí2rí s1í2ró1a sí1ró sí2róf sí2róff sí2ról sí2ró1p2 sí2rö sír2t1e2v sír1te sí2r1ü sí1sp sí1st síté2kol sí1té síté1ko 2s1í2tél sítés3s sítÅ‘1a2 sí1tÅ‘ sítÅ‘1e2 sí1tr 2s1í2v. sí2vá 2s1ívb s1í2vek sí1ve s1í2ve2n s1í2vet sí2vé sí2vű sí2za sí2z2e. sí1ze 2s1ízl s1ízr 2sí1zü sí2zül sje2gy1á2 s1je sjeg2y ska1o2 s1ka skapoc2s1 ska1po ska2r1i2m ska1ri skaros3 ska1ro ska2ró2r ska1ró ska1sm skat2 ska1tr ska1u2 1s2kálák s1ká ská1lá 1skálár ske1p2 s1ke ske1s2p sk2é2p1el s1ké ské1pe ski1á2 s1ki 1s2kicc ski1e2 sk2jö sk2la sk2li sk2lí sk2lo sk2ló sk2lu skolás1s s1ko sko1lá s2kor1pi sko2s1a2ra1i sko1sa skosa1ra skó1p s1kó s1k2rá s1k2ré s1k2rit sk1ri sk2rí sk2rón sk1ró sk2ru sk2va sk2vi sk2vó sky1ér s1ky sky1i sla1d2 s1la sla2g1e2 sla1s2p sla2t1a2l sla1ta sl2a2t1a2n sla2tel sla1te sla2tev sla2tés sla1té sl2a2t1é2t s2lág s1lá 1slágere1i slá1ge sláge1re slá2nyal slán2y slá1nya slás3s s2l2e. s1le sle1ga2 sleg1g2 sle1í2 sle2tal sle1ta sle2t1el sle1te sle2t1em sle2té2l sle1té sleves1s sle1ve slé1i2 s1lé slé1ke2 slé2kev slé2k1ol slé1ko slé2ny1e2gé slén2y slé1nye slés3s slic2c1elv s1li slic1ce sli2d sli2ká 1s2liss slÅ‘s2 s1lÅ‘ s2lus s1lu sma1ó2 s1ma smarc2 smas2 sma1sp 3s2má2r. s1má 3s2má1ru sme2g1a2 s1me sme2g1é smen2tel smen1te 1s2mirg s1mi sn2a2pal s1na sna1pa sna2p1e sna2p1or sna1po snap2s1z1e2 snaps2z sne1yi s1ne snit2t1elv s1ni sn2it1te snőé2h s1nÅ‘ snÅ‘1é 1so s1obj so1c2k sodaé2ne2 so1da soda1é soda1g2 so2d1e so2dén so1dé so2dév so2did so1di so2dis so2dí so2dob so1do so2d1org so2d1os so2dö so2dÅ‘ sodrás1s sod1rá so2dú sod1út so2dü so2d3z so2kab so1ka so2ka1i so2k1aj so2k1a2la so2k1ap so2kar soka2t so2k1a1to so2k1ál so1ká so2k1árn so2k1e2 sok1ill so1ki so2kí 3sok2k. sokka2l sok1ka sok2k1a1la sok2k1a2p 2sok1ke sok2k1el sok2kir sok1ki sok2k1ö2v sok1kö sok2k1ü 2sokl 2sokm so2kok so1ko sok1old 2so2kos 2s1o2koz so2k1ó2 2sok1ta s1oktat so2k1ú2 so2kü 2s1o2laj so1la sol2a2j1á2r sola1já sola2je sola2tel sola1te solás1s so1lá 2s1ol1da 2s1ol1dá 2sol1dó s1old2ó. s1oldók s1oldóm s1oldón s1oldór s1oldót s1oldóv so2lim so1li 2s1ol1ló soló1ó2 so1ló s1oltás sol1tá 2s1olvas sol1va so2lyan sol2y so1lya s2o2lyó so2m1ad so1ma somag1g so2m1a2l soma2t som1a1to so2m1e2 so2mél so1mé so2m1é1te so2mil so1mi so2m1i1ta so2mí so2m1o1do so1mo so2m1or so2m1os2z som1p so2mú so2mü son2c2h 2sond so2n1e2 son2kál son1ká son2k1e2 2so1nó son2tab son1ta son2t1a2l son2t1a2n son2tar son2t1á2r son1tá son2t1e2 sonté2r son1té son2t1é1ré son2tik son1ti son2tip son2tö son2tÅ‘ 2sonv so2nye son2y so2nyis so1nyi so2ór so1ó so2ós s1opc s1o2pe sor1a1da so1ra sor1a1la sor1áll so1rá so2r1átl 3so2r1e2 sor1f2 sor1ff s1or1gi so2rid so1ri 2s1o2ri1e so2rif so2riff so2rim so2r1ing so2ris 3sor1ké sor1mű1 sorműt2 sor1oszt so1ro soros2z 3soro1za so2r1ó2 so2rö so2rÅ‘ 2s1or2r. s1orrát sor1rá 2s1orrb 2s1orrn 2s1or1ro 2s1or1rú 3sor2s. sor2sal sor1sa sor2sar sor2sas sor2s1e2 sor2sir sor1si 2sor1só sor2sü sor1s2z sor2szón sor1s1zó sor1t1re sorú2t so1rú so2r1ú1to2 so2rü so2rű 2s1os1to 2s1ostr s1ost2y 2sos2z s1oszl s1oszt so1th so2uk so1u so2ul so2ur so2ut so2ve so2vis so1vi so2xi 1só sóá2g só1á sóá2r sócsa1pá2 s2ó1c1sa sóc2s só2dá1i só1dá só2dák só2dáv sógé2p1e2ké só1gé sógé1pe só1g2r sói2g só1i sóí2v só1í só2k1a2d só1ka só2kil só1ki s2ó2kim só2kó só1k1ré só1mű1 só2n2é. só1né só2ni sóó2r só1ó só2ra1i só1ra só2ráb só1rá só2rá1i só2ráj só2rám só2rán só2rár só2rát só2ri1á só1ri só2s1ü2 só1s2z sótá2ny1ér só1tá sótán2y sótá1nyé só1t2r 2s1ótv 2s1ó2vó 1sö sö2bű sö2ga sö2gá sö2g1e2l sö1ge sö2g1em sö2g1ék sö1gé sög3g sö2go sö2g1ö2lé sö1gö sö2g1ölt sö2gű sö2ka sö2k1e2l sö1ke sö2ki2d sö1ki 2s1ö2ko s1ö2kör sö1kö sö2kú sö2lÅ‘j sö1lÅ‘ s1ö2lÅ‘z s1öl2y sö2na sö2ná sön2d1a2 sö2no sö2n1öl sö1nö sö2n1Å‘ s1öntv sö2nú 3sö2r. sö2ra sö2rá 3sörb 2sörd sö2r1ed sö1re sö2reg sö2ren sör1f2 sör1ff sö2r1iz sö1ri 3sörk sö2ro sö2ró sö2r1ö2l sö1rö sö2r1Å‘ sör1s sö2ru 2sörv s1ös2s2z s1ösv s1ös2z 2s1ötl 2s1ötv 2s1ö2v. 2sö1ve s1övv s1ö2zön sö1zö 1sÅ‘ sÅ‘a2c sÅ‘1a sÅ‘a2l sÅ‘a2n 2sőá2g sÅ‘1á sÅ‘1bl 2sÅ‘bok sÅ‘1bo sÅ‘2dad sÅ‘1da sÅ‘2dalk sÅ‘2dá sÅ‘2del sÅ‘1de sÅ‘2din sÅ‘1di sÅ‘2d1Å‘2r sÅ‘1dÅ‘ sÅ‘1d1ro sÅ‘e2l sÅ‘1e sÅ‘e2r sÅ‘e2s sÅ‘1gr sÅ‘1kl sÅ‘1pl sÅ‘1pn sÅ‘1pr sÅ‘2r1aj sÅ‘1ra sÅ‘2r1á2csot sÅ‘1rá sÅ‘rác2s sÅ‘rá1c1so sÅ‘2riz sÅ‘1ri sÅ‘2rol sÅ‘1ro sÅ‘2r1ö2l sÅ‘1rö s1Å‘r1ti s1Å‘rz sÅ‘2s1av sÅ‘1sa sÅ‘2sim sÅ‘1si sÅ‘s1orr2a. sÅ‘1so sÅ‘sor1ra sÅ‘2s1or1rá sÅ‘2s1or1ró sÅ‘1s2p sÅ‘1s1ta sÅ‘1st2r sÅ‘1sü2 sÅ‘2s1ül sÅ‘2s1üt sÅ‘2szap sÅ‘s2z sÅ‘1s1za sÅ‘2sz1áll sÅ‘1s1zá sÅ‘szé2k sÅ‘1s1zé sÅ‘sz1é1ké sÅ‘2s1z1í spa2d1a2 s1pa spa2i 1s2pann s2pa1tu 1s2páj s1pá spá2n1a2 1s2párg spe1a2 s1pe 3s2pe1ci 1s2pektr 1s2pe1ku spe2l1é2 1s2pék s1pé s2p1ér 1spirá1lú s1pi spi1rá spis3s sp2le2 s1p2lé sp2lu sp2ne 1s2pong s1po spor1ta2 spor2t1al 1s2por2tág spor1tá spor2tár 3s2portb spor2t1e2 1s2por1té spor2t1érd 1s2porth spor2t1i2n spor1ti 1s2portj 1s2portn 1s2porto1ka spor1to 1s2portol 3s2portot spor2t1ö spor2tÅ‘ 1s2port1ra 1s2port1ró 1s2por1tu spor2t1ü2 1spórá2k. s1pó spó1rá 1spórol spó1ro sp2ra s1prak 3spray 1spri2c sp1ri sprin2t1i s1p2ro s1p2ró sp2s2z 1s2raf s1ra 1s2raff sra1u2 1s2rá1co s1rá sren2d1Å‘2 s1re 3s2róf s1ró 3s2róff srú2de s1rú ssab2b1i s1sa ssa2vo sság3g s1sá s2se1pa s1se ssé2g1e2l s1sé ssé1ge ssé2g1é2j ssé1gé ssé2gid ssé1gi s2s1ékt s2s1i2z s1si ss2kál ss1ká ss2ko ss1k2r ss2lá ss2pó s1s2rá ss3s2z ss2tad ss1ta ss2tar ss2tat s1s2tí ss2to s1st2r ss2tú s2s1u1ra s1su ssy1ér ssy1ét s2s2z s3sza2l. s1s1za s3sz2á. s1s1zá s3sze2l. s1s1ze s3sz2é. s1s1zé ös6sz3e6uróp ös2sze1u össz1e2ur összeu1ró ös6sz3e6gyet összeg2y össze1gye 1vi vis6sz3e6rek vis2s2z vis1s1ze vissze1re stres6sz3old st1re stres2s2z stres1s1zo .ros5s1za/sz=,3,1 .ros6sz3akar .ros2s2z .rossza1ka kerekes3szék kerekes2s2z kerekes1s1zé 1ve ves3s1ze ves2s2z ssza1e2 s3szakm s2sza1p2r sszat2 ssza1tr ssz1á2g ssz1á2ram sszá1ra ssz1á2ruk sszá1ru ss2z1á2s2z s3sze1dé ssze2g1é2r. ssze1gé sszegü2l ssze1gü ssze2g1ü1lÅ‘ s3szekv ssz1e2lÅ‘1a ssze1lÅ‘ s3s2zeml s3szemm ssze1p2 ssze2re1se ssze1re sszer2t1á2r sszer1tá ssze1t2r s3szé1ki ssz1é2lÅ‘ s2sz1ér1in sszé1ri s3szé1to s3szi1ge s1s1zi s2sz1ing sszis1s2 sszí2vel s1s1zí sszí1ve ssz1k2 ss2zkés2z1 ssz1ké s3szob s1s1zo ss2z1os2z ssz1ó1sá s1s1zó s3szöc s1s1zö s3ször ssz1ös s3szöv ssz1p2 ss3z1si ssz2s sszt2 ssz1t1ro s3szur s1s1zu sszus1s2 ssz1ú2r. s1s1zú 1stabil s1ta sta1bi 1s2tadi1o sta1di sta3di3on3 s2t1a2dó 1s2taff8i staf8f 1s2taffi 1s2ta1fí s2t1alj s2t1alk s2tamp s2tand 1stan1da sta2n1ó2r sta1nó stan2s1é s2t1a2nyag stan2y sta1nya s2tarc 1s2tar2t. star2tas star1ta 1s2tartos star1to 1s2tartot 1s2tartt sta1sl sta1s2t2 stati2o sta1ti sta1t2r sta3u stau2t s2t1a2x st1a1zo 3s2tá2b. s1tá 1s2tábj 1s2tábk 1s2tábn 1s2tábot stá1bo s2t1á2g. st1áld s2t1ál1lá stán2c1ol stán1co stán2s1á2 stá2ri1á stá1ri s2t1ár1ka stár1k2 s2t1ár1ká st1á2t1a2 st1áts 1s2tá1tu st1átv st1br st1dr ste2a s1te 1s2teak s2t1e1bé s2tedén ste1dé s2t1e2g2y s2t1e2k2e. ste1ke stele1s ste1le steles2z2 s2t1elf s2t1elff s2t1elh s2t1ellen stel1le s2t1elm s2t1e2lo s2t1e1lö s2t1e2lÅ‘ s2t1elr s2t1elt s2t1elv s2t1ember stem1be s2t1e2mel ste1me s2t1eml ste2n1a ste2n1á ste2ne2g ste1ne ste2n1és ste1né sten3n ste2nos ste1no ste2n1Å‘2 1s2tepp ste2rad ste1ra ste2raj ste2ral ste2rav ste2rác ste1rá ste2rál ste2r1e2le ste1re 1s2teri1li ste1ri ste2r1int2 ste2ris s2t1er2n. ste2r1o s2t1e2rÅ‘ ste2s2z s2t1eszm ste2u 1stégek s1té sté1ge 1s2téget 1s2tégg 1s2tégr sté2k1a2 sté2ká stékát1 sté2k1á1ta2 sté2k1el sté1ke st1é2ke1sí st1é2kí2 sté2k1o sté2ku s2t1é2le st1é2lé s2t1élm s2t1élt st1élv sté1p2 s2t1érc s2t1é2rem sté1re s2t1é2ré s2t1é2rÅ‘t sté1rÅ‘ s2t1ér1té s2t1érz stés3s s2t1észl stés2z s2t1étk s2t1é2v2e. sté1ve st1f8l st1fl st1fr st1gr s1t2h2i. st1hi s2t1i2d s1ti sti2g s2t1i1ge s2t1i1gé s2t1i2ma s2t1i2má 1s2timm s2t1imp sti2n2a. sti1na s2t1ind s2tinf s2tinff s2t1inv s2t1i2o st1i2pa st1i1rá st1i1ró stis3s sti2s2z s2t1i1s1za s2t1i2vá st1i2zo s2t1íj s1tí stí1lus1sze1rű1 stí1lus1 3s2tíl s2tír st1í1rá st1í2v s2t1í2z stká2ro st1ká st1kr st1kv stola2t s1to sto1la s1to2la1to sto2p1a 1s2topb 1s2toph 1s2topr 1s2top1t2 sto2rál sto1rá sto2rás sto2re2 sto2ris sto1ri st1o2x 3s2tó1la s1tó 3s2tó1lá st1ó2rá 1s2tós stö2k1ölt s1tö stö1kö s2t1önt s2t1ö1rö s2t1ös2s2z stÅ‘1a2 s1tÅ‘ stÅ‘1e2 stÅ‘kés2z1 stÅ‘1ké s2t1Å‘1ra s2t1Å‘rb s2t1Å‘rc s2t1Å‘reg stÅ‘1re s2t1Å‘re1i s2t1Å‘r2é. stÅ‘1ré s2t1Å‘rén s2t1Å‘rér s2t1Å‘rév s2t1Å‘rf s2t1Å‘rff s2t1Å‘rg s2t1Å‘rh s2t1Å‘2ri s2t1Å‘rl s2t1Å‘rm s2t1Å‘rn s2t1Å‘rp s2t1Å‘rs s2t1Å‘2rü s2t1Å‘rv st1pf st1pff st1pl st1pr 1stran1do st1ra 1st2rap 1stra1té strat2 s1trág st1rá 1st2réb st1ré s1t2rén st2ri1á st1ri stri2e s1tri1ó st2róf st1ró st2róff 1stró1fá 1st2ruc st1ru 1st2ruk1tú st1sc st1st st1s2z st1t2r s2t1udv s1tu 1stukk st1u1ni st1u2ral stu1ra 3s2túd s1tú st1ú2r. st1út s2t1üg s1tü s2t1ü2lÅ‘ s2t1üst s2t1üt s2t1ü2v s2t1ű2r. s1tű s2t1ű2ri s2t1űrn s2t1űrt 1su suá2r su1á su1bi1 s1udm 2s1udv su2et su1e 3sugá2r. su1gá 3sugárr 2s1ugr 3su1hi 2sujj suj2j1a2da s1ujjad suj1ja su2k1a1rá su1ka su2ke su2k1ö su2k1ü 3summ su2nal su1na 2sund 2s1u2ni su2no su1pe2 super1 2su1ra s1u2rad su2ra1i su2rak su2ral su2rat su2rát su1rá su2re 2surn 2s1u2ru su2s1zo sus2z 2s1u2tac su1ta 2s1u2tad 2sutak s1u2tal 2s1u2tam 2s1u2tan sutas1s 2s1u2tat 2s1u2ta1zi s1u2ta1zó 2s1utc 2su1tó su2tód 2su1tu 1sú sú2csal s2ú1c1sa súc2s sú2csat sú2csem s2ú1c1se sú2cser sú2csip sú1c1si súcs1ká2 sú2c1s1ö sú2c1s1ü2 súcs3z sú1di2 súi2m sú1i 2s1újfal2u. súj1fa sújfa1lu s1újh 2s1ú2jí 2s1újs 2s1újvá2r. súj1vá 3súl2y 2sú2r. 2súrb 2sú1ré 2súrh 2sú1ri 2súrk 3súrl 2súrn 2súrp 2súrr 2súrt sú2sén sú1sé sú2só 2sús2z sús2zó2s3z sú1s1zó 2s1útb sút1en sú1te 2sú1té s1úth 2sú1ti sú2ti2g 2s1útj 2s1útk s1útn 2sú1to s1ú2to2n1 sú2t1Å‘ 2s1útr 2s1útt sú1tü2 sút1üz 2s1útv 1sü sü2d1e sü2dí sü2dü 3sü3gé s1üg2g2y 2s1ü2g2y 3sü2k1a sü2kü 2sül1dö sü2led sü1le 3sültr sü1lye2 sül2y sü2lyes sü2ná sü1ne2 sü2nev sü2n1é 2s1ü2nÅ‘ sü2rí 2s1ü2rü 2süst 2s1ü2s2z 2sütk 3sütÅ‘b sü1tÅ‘ sü2ze sü2zé 1sű sű1pr sű2r1a 3sű1rí s1ű2ru sű1ry sű2zÅ‘ sva2s1u2 s1va svá2gy1ó2n. s1vá svág2y svá1gyó svá2nya2n sván2y svá1nya svá2r1a2l svá1ra sváro1si2 svá1ro sven1 s1ve svezetÅ‘1é2 sve1ze sveze1tÅ‘ své2nye2l s1vé svén2y své1nye své2tes své1te sví1ze2 s1ví svíz1es s2vun s1vu sw2hi swhis1ky2 sy2bÅ‘ sy1ig 1sylvani1a syl1va sylva1ni s2z 1s1za sza1a2 3sz2abáz sza1bá 3szabd sz1a2dás sza1dá 2sz1a2dó sza1é2 3szaft 3sza2g. 3szagb 3sza1gú 2sz1ag2y. szag2y 2sza1gya 2s3za2j. 2sza1já 2s3zajj 2s3za1jú 2szak1ci s2zakc sza2k1ó2r sza1kó sza2köz sza1kö 2szalás sza1lá 2sz1alb 2sz1alf 2sz1alff 2szalg 2szalj sz1al2j. sz1aljak szal1ja sz1al1jo 2szall 2szaln 2sz1alp 2sz1als 2szal2t. 2sz1al1te 2szal1to 2szal1tu 2sza1ne sz1antr 2sza1nya szan2y 2sz1a2nyó 2sza2p. sza2pan sza1pa 2sza1pá 2szapb sza2pe2l sza1pe 2sza1pé 2szaph 2sza1pi 2szapj 2szapn 2szapr 2szapt sza2rat sza1ra 2szarán sza1rá 3szarb 2s2zarc 2sza1ré 3szart 3szarv 2szasp s2z1as2s2z sz1aszt szas2z sza2ta1la sza1ta sza1t1ro 2szaut sza1u szau2ta 3szax 2sz1a2zo 1s1zá 2s2z1ábr 2szá1gó 2szág2y szá2gyá szá2gyo szá2j1e szá2ke 2szál1do szá2lin szá1li 3szá1lú szá2man szá1ma szá2ma2r 3szá1má szá2mál 3számc szá2m1e2 3szá1mé szá2m1ér1té 3szá1mí 3számk 3száml 3számm 3számn szá2mor szá1mo 3számt 3szá1mú 3szánd 3szánt 2száp 2sz1á2radd szá1ra 2szárás szá1rá szá2r1e 2s2z1á2ri1á szá1ri 3szá1rí 3szárm szá2r1ó2ra s3zárór szá1ró s3zárós szárt2 2sz1á2r2u. szá1ru 2sz1á2ruh 2sz1á2rus 2sz1á2s2ó. szá1só 2sz1átd 2sz1á2t1é 2sz1á2t1i2 2szátl 2s2z1átm 2szá2t1ö 2s2záts 2sz1á1tu 2sz1á2tü 2s2z1átv sz1bl sz1br 1szcé1na sz1cé sz1cl sz1d2r 1s1ze 2s2z1e2b. 2sze1bé 2sz1e2c2h 2sze1c1se szec2s 2s2z1e2d2z 2szeger sze1ge 2szegz 2szeh sze2keg sze1ke 2sz1e2kéit sze1ké szeké1i 2szekés sze2ké2s. 3szekrén szek1ré 3szek1to szek1t2 3szel2e. sze1le 2szelef 2szel1eff 2szelemb 2sz1e2lemek szele1me 2szele1mé 2sz1e2lemk 2szelemm 2sz1e2lemr 2szele1mü 2szelemz 2sz1e2l1e2re 3szelet 3szelén sze1lé 2sz1elf 2sz1elff 2sz1el1go 2sz1el1ha 2sz1el1há 2sz1el1já 2sz1el1kü 2sz1el1lá 3szel1lÅ‘ 2sz1elm 2s2z1elnev szel1ne 2sz1el1nö 2sze1lo 2sze1lö 2sz1e2lÅ‘1á sze1lÅ‘ sze2lÅ‘1dö 2sz1e2lÅ‘f 2sz1e2lőff sze2lÅ‘1ré 2sz1el1sÅ‘ 2sz1el1s1zá szels2z 2sz1el1ta 2sz1el1tá 2s2z1el1tű 2sz1e2lu 2sz1elül sze1lü 2sz1el2v. 2sz1el1vá 2sz1elvek szel1ve 2sz1elves 2sz1elvez sz1el1vi 2sz1elvn 2sz1elvt 2sz1elz 2szember szem1be 3s2zemek sze1me 3személ sze1mé 3szem1p2 3szem2ű. sze1mű 2szenc 2szener sze1ne 3szen2n2y 3s2zenz sze1o2 2sze1pi sze2r1á2l sze1rá 2sz1e2redm sze1re sze2r1e2ge sze2rej 3szerel sze2r1eszt szeres2z 3szer1ke szer1k2 3szer1s 3szer1ta szer2tá1lo szer1tá 3szerv szervíz1 szer1ví 3szerz 2sz1esd 2sz1ese1mé sze1se 2sz1e2setb 2sz1e2set2e. szese1te 2sz1e2setet 2sz1e2se1té 2sz1e2se1ti 2sz1e2setr 2sz1e2sés sze1sé 2sz1es1kü 2s2z1e2sÅ‘ sze1sp2 2s2zes1te 2s2z1es1té 2szes1ti 2s2z1estj 2szestr sze2t1e2lÅ‘ sze1te sze2t1é2k sze1té 2sz1e2ti1ka sze1ti sze2ton sze1to sze2tÅ‘r sze1tÅ‘ 2sze1u 2sze1ve 2sz1e2vÅ‘ 2szexp 3sze1zo 2sz1ezr 1s1zé 2sz1é2ber szé1be 2s2z1ébr 2sz1é2g. 2sz1é2ge 2sz1é2gÅ‘ 2sz1égr 2sz1é2h2e. szé1he 2sz1é2hen 2sz1é2het 2s2z1éhs 2sz1é2ji 3szék2e. szé1ke 3széked 3széke1i 3székek 3székem 3székes 2sz1é2kez 3székéb szé1ké 3székév szé2k1ol szé1ko szé2kos 3széks 3szé1kü 3szélek szé1le 2s2z1é2ne1ke szé1ne 2sz1é2nekn szé1p1ró 3szép1s 2sz1é2r. 2sz1érb 2sz1érc 2sz1ér1d2 sz1é2rel szé1re 2szérem szé2re2m. szé2remm 2sz1é2re2n 2szé1ré szé2r2é. szé2rén szé2rér szé2rét szé2rév sz1érf sz1érff sz1érg sz1érh 2sz1érin szé1ri sz1érj 2sz1érk 2sz1érl 2sz1érm sz1érn 2s2z1é2r2Å‘. szé1rÅ‘ 2sz1é2rÅ‘1i 2sz1é2rÅ‘k 2sz1é2rÅ‘t sz1érp 2sz1érr sz1ér1s sz1ér1tá 2sz1ér1te 2sz1ér1té sz1ér1tí 2sz1ér1tÅ‘ 3szé1ru 2sz1é2rü 2sz1érv 2sz1érz szé2tel szé1te széte2s 2s2z1é2v. 2s2z1é2vad szé1va 2sz1évb 2s2z1é2v2e. szé1ve 2sz1é2ve1i 2s2z1é2vek 2sz1é2vet 2sz1é2vén szé1vé 2sz1é2vét 2sz1é2vév 2sz1évf 2sz1évff 2s2zé1vi 2sz1évk 2s2z1évn 2sz1évr 2sz1évs 2sz1évt 2sz1é2vü sz2fe1lé sz1fe 1sz2férab sz1fé szfé1ra 1sz2féra1i 1sz2férak 1sz2féram 1sz2féran 1sz2férat 1sz2fé1rá sz1fr sz1gl sz1gr 1s1zi szi2ab szi1a 2szi1de 2sz1i1dé 2s2z1i2dÅ‘ 2sz1if8j 2sz1i2ga 2sz1i1gé 3szign szi2k1a2s2 szi1ka szi2kál szi1ká szi2k1e2r szi1ke szi2k1ó2 sz1i2mak szi1ma 2sz1i2má 3szim1b sz1impr 2sz1im1pu 2s2z1i2nas szi1na 2szin1de 2szin1dí 2sz1in1du sz1in1fo 2szing sz1in1ko 2szinteg szin1te 2szi1o 2sz1i2rat szi1ra 2s2zi1rá 2sz1i2ri 2sz1i2rod s2zi1ro szi2sí 2sz1i2s1za s2zis2z szi2s1zá 3szi1tu 2sz1i2vad szi1va 2szivás szi1vá 2s2z1i2vó sz1izg 2sz1izz 1s1zí 2sz1íg 3szí1ne 2sz1ín1na szí2vár szí1vá 2szí1vi 3szí1vű 2sz1íz szka1pr sz1ka 1szkarab szka1ra szk1arc2h 1sz2kenn sz1ke 1sz2kópo1ké sz1kó szkó1po 1szlávh sz1lá 1szlávok sz2lá1vo 1sz2len2g. sz1le 1szlengn 1szlengr szle2t1e2l szle1te szle2t1o 1sz2lo1ge sz1lo 1sz2mok sz1mo 1sz2nob sz1no 1s1zo 2sz1obj 2szod2a. szo1da 2szoda1i 2szodak 2sz1o2dú 3szof 3szoff 3szo1ká 2sz1ok1ke 2s2z1o2koz szo1ko 2szok1sö 2s2z1o2laj szo1la szo2l1ál szo1lá 2szol1da 2s2z1ol1dó 2szo2lim szo1li 2sz1ol1ló 2sz1oltár szol1tá 2sz1oltás 2s2z1olvad szol1va 2sz1olvas 2s3zombo2r. szom1b2 szom1bo 3s2zom1s szo2nas szo1na szo2nár szo1ná 3szond 2szo1ra szo2r1ál szo1rá 2szorm 2szorn 2szors 2szorv 2sz1os1tá 2sz1os1to 2sz1otth 3szov 2sz1ox 1s1zó 2sz1ólm 3szó1ló 2s3zónád szó1ná 2s3zóná1i 2sz1ó2ni 2sz1ó2nod szó1no 2sz1ó2rán szó1rá 2sz1ó2rát 2szó1ri sz2ó2sík szó1sí 3szós2z. s2zós2z szósza2k sz2ó1s1za szó2száll sz2ó1s1zá szó2szón 1s1z2ó1s1zó szó2szü1lÅ‘ sz2ó1s1zü szó1tr 1s1zö 2sz1öb1li 3szö1ge 2s3zöldes szöl1de 2sz1ö1le 2szö1re 2sz1ö2v. 2sz1ö2ve1i szö1ve 2sz1öz 1s1zÅ‘ szÅ‘1a2 szÅ‘e2r szÅ‘1e szÅ‘1é2 3szÅ‘1lÅ‘ szÅ‘2ra sz1Å‘1si 2szÅ‘z sz1Å‘1ze 1sz2pí sz1pl 1sz2ponz sz1po szrá1di2 sz1rá sz3saj sz2s s1z1sa sz3sap sz3sas sz3sav s3zsák s1z1sá sz3sán sz3sár sz3sás sz3sát sz3sáv sz3seg s1z1se s3zsem s3zsen sz3sep sz3ser s1z3sé sz3sh sz3sik s1z1si s3zsin sz3sis sz3siv sz3sín s1z1sí sz3s2k sz3sl sz3sod s1z1so sz3sok s3zsol s2z3sor s1z3só sz3sör s1z1sö sz3söv sz3s2p sz3s2r sz3s2t s3zsúll s1z1sú s2zsúl s1z3sü s2z3s2z 1sz2tatb sz1ta sz2t1ál1la sz1tá sztá2r1a2d sztá1ra szt1á2ram sz2tá2ras sztá2rat sz2tá2r1e2 sz2tárf sz2tárff sz2tárh 1sz2tárj sz2tárn2y sztá1ró2 sz2tá1ru szt1á2ruk sz2tárv 1sz2tát1bó 1sz2tátj 1sz2tátn 1sz2táto1ka sztá1to 1sz2tátokb 1sz2tátokk 1sz2tátokn 1sz2tátokr 1sz2tátom 1sz2tátr 1sz2tát1tó 1sz2tá1tu szte2r1el sz1te szte1re 1sz2tere2o szté2g sz1té szt1é1ge sz2tér1te sz2t1érv sz2t1é1té szt1örök sz1tö sztö1rö sz2t1Å‘rn sz1tÅ‘ 1szt2rá1dá szt1rá 1szt2rájk sz2tür sz1tü 1sz2tye szt2y 1s1zu szu2b szu1b1o szuc1 2szud sz1udv 2s3zu1go 2sz1ugr 2szuh 2sz1uj 3szu1ká sz1u2ra 2sz1u2rá 2s2z1u2ta sz1u1tó 2sz1u2tu 2s3zuz 1s1zú 2szúg 2szúj sz1úron szú1ro 2sz1úrr sz1úr1tó 2szús 2szú1té 2sz1úth 2sz1ú1ti 2sz1útj 2sz1útn 2szú1to 2szútr 2sz1útt 2sz1útv 2szúz 1s1zü 2sz1üd 2szügg 3szüks 2szüld 2sz1ü2led szü1le 2szülÅ‘1se szü1lÅ‘ 3szü1ne 3szür1ke 3szürkés szür1ké 2sz1üs 2sz1üv 1s1zű 3szűk 2szűrödn szű1rö 1sz2vi2t. sz1vi 1szvitet szvi1te 1sz2vitj 1sz2vitn 1szvitt sz3z2s 2t. 1ta taa2d ta1a taa2l taát1 ta1á 1taá2ta2 taboz1 ta1bo ta1b1ra 2t1ab1ro t2a1b1ró 2t1abs ta1cl t1a2da1lé ta1da 2t1adap ta2das 1t1a2da1ta 2t1a2datb 2t1a2da1to ta2da1tu 2t1a2dá 2tadi1o ta1di t1adj t1adl 2t1adm ta2dod ta1do 2t1a2dog 2t1a2dot 2ta1dó t1a2dó1a ta2dó1á ta2dób ta2dód ta2dóf ta2dóff ta2dóg t1a2dóh t1a2dói2g tadó1i t1a2dóik t1a2dóin t1a2dóit ta2dó1í t1a2dój t1a2dó1ka t1a2dó1ké t1a2dó1ko t1a2dók1ra ta2dól t1a2dó1na t1a2dó1ná ta2dóp t1a2dór t1a2dó1tó ta2dó1ü t1a2dóv t2a1d1rá ta1d2re t2a1d1ro t1ads ta2dun ta1du t1adv tae2c ta1e ta2ek tae2l tae2r ta2e1ro taé2r ta1é 2taff8i taf8f 2taffi 2ta1fí ta1f2r 1taf2ta ta2g1aj ta1ga ta2gav t2aga2z tag1a1zo ta2gág ta1gá ta2g1ál ta2gec ta1ge ta2g1e2l ta2g1e2r ta2g1é2g ta1gé 2tag1go 2t1aggr ta2gid ta1gi ta2giz ta2g1os2z ta1go ta2g1ott ta2góc ta1gó 2t1a2gón ta2g1ó2r ta2góv ta1g2raf tag1ra ta1g2raff tagrá1di2 t2ag1rá ta2g1u2s ta1gu ta2gut ta2g1ü2 2t1ag2y. tag2y ta2gy2a. ta1gya ta2gyáb ta1gyá ta2gyáh 2t1agyb 2t1agyn 2t1agyr 2t1agyv ta2ios ta1i tai1o ta2i1re tai2rón tai1ró tai2z ta2jé ta2j1u2s ta1ju ta2jús ta1jú 2t1a2kad ta1ka ta2k1ál ta1ká taká2r tak1á1ro ta2kás ta2kátk 2t1ak1ce 2t1ak1ci take2l ta1ke tak1e1le ta2k1é2r. ta1ké tak1é2s1ze t2akés takés2z 2t1akko1ra tak1ko 2t1akkord 2t1ak1ku ta1k2la ta1k1lo ta1k1lu t1akn2a. tak1na ta2k2ó. ta1kó ta2k1öb ta1kö ta2k1öröm takö1rö ta2k1ös ta1k1rá tak2re1á t2ak1re t2a1k1rí 2t1ak1ro ta1k2rón tak1ró 2t1akt2a. tak1ta 2t1akt2i. tak1ti 2t1aktiv 2t1ak1tí 2t1aktj taktus1s2 tak1tu ta2kus ta1ku ta1k2va ta2ky ta2l1a2da ta1la ta2l1a2dá ta2l1adh ta2l1adj ta2l1adn ta2l1a2do ta2l1a2dó ta2l1adt ta2l1a2du ta2l1adv 2tala2g1 t1a2la1gu ta2la1gú 2t1a2lakb tal1akc 2t1a2la1kí 2t1a2lakj 2t1a2la1ku 2t1alakz ta2l1a2l 2t1a2lan2y 2t1a2la2pa 2t1a2la1pí ta2lapk t1a2lapl 2t1a2laps2z talap1s2 ta2l1a2r ta2l1as tala2te 2t1a2lat1ti tal1aut tala1u 2t1a2lá1á ta1lá ta2l1á2g 2t1a2lá1í ta2l1ál1lo ta2l1á2rak talá1ra talás1s 1ta2l1á1ta ta2l1átr tal1ell ta1le ta2l1e1lÅ‘ ta2l1emb t2alem ta2l1eng t2alen ta2l1e1si t2ales t2alé2g ta1lé talé2k1e2 ta2l1é2r. 2t1al1ge ta2l1i2ko t2alik ta1li tal1ikr tal1im1p2 t2alim tal1in2a. tali1na ta2lip ta2l1isk ta2l1í2r ta1lí 2t1aljas tal1ja 2t1al1ji 2t1aljz 2t1alkal tal1ka 2t1alkím tal1kí 2t1alkoh tal1ko 2talkot 2taller tal1le tal3l2y ta2l1ol ta1lo talo2m1e ta2l1os2z ta2l1Å‘r ta1lÅ‘ tal2p1á2ro tal1pá tal2pe2l tal1pe tal2p1il tal1pi tal2pu2s tal1pu tal1t2re ta2lud ta1lu 2t1a2lulj ta2l1u2r ta2l1u2t ta2lúr ta1lú ta2l1ú2t. ta2lü ta2lű 2t1alve1o tal1ve ta2mal ta1ma tam1alm ta2maz ta2m1i2d ta1mi 2t1a2mÅ‘ t1am1pa 2t1am1pu 2t1a2mur ta1mu ta2mü ta2n1aj ta1na ta2nal ta2nan ta2n1ar 2t1a2nat tan1áll ta1ná tan1á1lo tanás1s tan2del tan1de 2tandr ta2n1el ta1ne ta2ner 2ta2n1es ta2n1e2z ta2n1éj ta1né ta2n1é2r. ta2n1érk tan1évb tan1é2vé tan1é2vi tan1évm ta2nid ta1ni tan1i1ko 2ta2nim tan1ist tanké2r tan1ké tan2ké1re tan2kés tan1kó2 tan2k1ó1ra 2tan2n2y ta2n1os2z t2anos ta1no ta2nód ta1nó tan2t2e. tan1te tan2t1el tan2tors2 tan1to tan1t1rá ta2nü ta2nű 2tanyag tan2y ta1nya 2tanyád ta1nyá 2t1a2nyó tao2l ta1o taó2r ta1ó 2t1a2p2a. ta1pa 2t1a2pa1i ta2pa1ké t1a2pa1sá 2t1a2páb ta1pá 2t1a2pád 2t1a2pá1é 2t1a2páh 2t1a2pá1i 2t1a2páj 2t1a2pák 2t1a2pám ta2pá1ra ta2pá1ró 2t1a2pá1u 2t1a2páv ta1ph ta1p2la ta1p1lé t1a2p2ó. ta1pó 2tapp ta1p2ré 2t1ap1rí t2a1p2ro tap2sor tap1so taps3s tap2s1ü2 2tapun ta1pu ta2ra1be ta1ra ta2ra1i 2t1a2ras 2t1a2rat 2t1a2ráb ta1rá tará1di2 2t1a2ráh 2t1a2rán 2t1a2rát 2t1a2ráv 2t1ar1bi 2t1ar2c. 2t1arc2h 2t1ar1co t1ar1cu 2t1ar1cú ta2r1i2k ta1ri ta2r1of ta1ro ta2r1off ta2ro1má tar1s2 tar2tab tar1ta tar2t1e2l tar1te tar2t1em tar2t1en tar2t1é2r. tar1té tar2tit tar1ti tar2told tar1to 2tartos 2tartr 2tartt ta1ry 2tasc ta2sem ta1se 2tasf 2tasff t2a1s2ká ta1s1lu ta1s2m 2tas1nÅ‘ ta2s1ol ta1so 2t1as1pi ta1sp2r 2tas1ru 2tas2s2z tas3s1zá tas3szt2 tast2 1t2a1s2ta 2tas1te t2a1str 2tasv ta1sy 2t1aszk tas2z ta1szl ta2t1alj 1ta1ta ta2t1alm ta2t1aszt tatas2z tatá2ra2i. t2atár ta1tá tatá1ra tatára1i 2t1a2te1i ta1te tate2s 2tati1ka ta1ti 2tati1ká ta2t1i2n2a. t2atin tati1na ta2t1i2ná ta2t1ing t1atlas tat1la t1a2to1mo ta1to tat1orj t2ator ta2t1Å‘r ta1tÅ‘ ta1t2ri tat1u2ra t2atur ta1tu ta2tya tat2y ta2tyá 2t1a2uk ta1u 2t1a2up 1tau2ta t2au2tá 2tau1to taü2z ta1ü 2tavan ta1va 2t1a2va1tá 2t1a2va1tó ta1wh ta2zon ta1zo 1tá 2tá2b. tá2b1á tábe2sz1é2l tá1be tábes2z tábe1s1zé 2tá1bé tá2bi2g tá1bi tá2bin 2tábj 2tábk 2tábn 2tábok tá1bo 2tábon 2tábot tá2bö 2tábr t1áb1rá tá2bü 2táci1u tá1ci tá2fa tá2fá 2tá2g. tá2g2a. tá1ga tá2ga2d tág1a1da 2t1á2ga1i tá2gaz 2t1á2gá 2tágb 2t1ágc 2t1á2ge 2t1á2gé 2t1ágf 2t1ágff 2tágg 2t1ágh 2t1á2gi 2tágj 2t1ágk 2t1ágm 2tágn 2t1á2go 2tágr 2t1ágt 2t1á2guk tá1gu 2t1á2gu2n 2t1á2gú 2t1ágv 2t1á2g2y tá2hí tá2jal tá1ja tá2jaz tá2j1e2g tá1je tá2j1e2l tá2jí tá2j1ok tá1jo tá2j1ö2 tá2jÅ‘ t1á2jul tá1ju tá2lab tá1la tála2d tál1a1da tá2laj tál1a2lap t2álal tála1la tá2lap 2t1álar tá2l1ál tá1lá tá2l1áth 2t1ál1dá 2t1ál1do tá2l1e2 tá2lél tá1lé 2t1ál2l. 2t1állam tál1la 2t1állan 2t1állat 2t1állás tál1lá 2t1állh 2t1ál1lí 2t1állj 2t1álln 2t1ál1lo 2t1álls 2t1állt 2t1ál1lu t1ál1lú 2t1állv 2t1ál1ma 2t1ál1mi 2t1álmok tál1mo 2t1á2lomr tá1lo tá2lomt tá2lö 2t1ál1ru tá2lü tá2lyab tál2y tá1lya tá2ly1a2c tá2lyad tá2ly1a2g2 tá2ly1a2l tá2ly1a2n tá2lya1p tá2ly1at tá2lya1u tá2lyátl tá1lyá tá2ly1á2z tá2lyid tá1lyi tá2lyir tá2lyis táma2s1ze tá1ma támas2z tá2mí tá2mos tá1mo 2t1á2mu tán1alm tá1na tá2nár tá1ná tánc3c tán2c1e tán2céh tán1cé tán2cél tán2cén tánckés2z1 tánc1ké tánc2s2 tán2c1sá tán2csor tán1c1so tán1d2 tá2n1e2 tá2ní tá2n1ó2 tá2nö 2tán1pó tán2s1e tá2nü tá2nű tá2nyal tán2y tá1nya tá2ny1as tá2nye 2tánz tá2p1a2 tá1pá2 tá2pál tá2p1ár tá2pát tá2p1e2 tá2p1il tá1pi tá2p1in tá2p1oll tá1po tá2p1os2z tá2pÅ‘ tá2pü 2t1á2ra1dá tá1ra tár1a2dot tára1do tá2ra1dó tá2r1a2g tár1ajt tá2r1a2l 2t1á2ram2a. tára1ma 2t1á2ra1má 2t1á2ra1mi 2t1á2raml 2t1á2ramok tára1mo 2t1á2ramol 2t1á2ramot 2t1á2ramt 2t1á2ra1mu 2t1á2ra1mú tára2n tá2r1an2y tá2rap tá2r1as2z tá2r1att tá2r1a1u tá2r1av tá2rá2g tá1rá tá2r1ál tá2r1á2s2z tá2r1átl 2t1árboc tár1bo tá2r1e2 tá2réd tá1ré tá2rés tár2gyö tárg2y tá2r1i2k tá1ri tá2r1i2p tár1isk tá2r1ism tá2rí tár1k2 2t1árkád tár1ká 2t1árká1na 2tárkár 2t1ár1nyé tárn2y tá2r1okm tá1ro tá2r1os2z tá2róc tá1ró tár1ó1rá tá2rö tá2rÅ‘ tár2s1alt tár1sa 2tártás tár1tá tárt1öl1tÅ‘ tár1tö tár1t1ro 2t1á2r2u. tá1ru 2t1á2ru1a 2t1á2ru1b2 2t1á2ruc 2t1á2rug 2t1á2ruh 2t1á2ru1i 2t1á2ruj 2t1á2ru1ke 2t1á2ru1na 2t1á2rus 2t1áru2t. tá2rut tár1u1ta 2t1á2ru1ü 2t1á2ruv 2t1á2rú1é tá1rú tá2rúj 2t1á2rúk tá2rús tá2rü tá2rű tá2s1a2d tá1sa tá2s1aj tá2sal tá2s1a2r tá2saz tás1á2ga tá1sá tá2s1á2ra1i tásá1ra tá2s1á2rá tá2s1á2ré tá2s1árh tá2s1árn tá2s1á2ro tá2s1árr tá2s1árt2 tá2sás 2t1ásá1so tá2s1á2to tá2s1e2 tá2sis tá1si tá2sodv tá1so tá2s1ol tá2sor tá2só 2t1á2sók tá2s1ó2r tá2sö tá2sÅ‘ tás3s tást2 tás1tr tá2su2t tá1su tá2s1ü2 tá2sű t1ásván tás1vá tá2sz1ak tás2z tá1s1za tá2szal tás3zav tá2s3zá tá2s1ze tás3zen 2tá1s1zi 2tá1s1zo tá2szos tá2s3zó 2tászt2 2t1átad tá1ta 2t1á2t1ál tá1tá 2t1átc 2t1átd 2t1á2t1e2 2t1á2t1é 2t1át1fe t1át1fo 2t1átg 2t1át1he t1át1hi tá2t1ir tá1ti 2t1á2tí 2t1át1je 2tátk t1át1kö 2t1átlag tát1la 2t1átm 2t1á2t1ol tá1to 2t1á2t1ö 2t1á2tÅ‘ 2t1átp 2t1át1re 2t1át1ru 2t1áts2z 2t1át1te 2t1át3t2é 2tát1tó 2t1át1tö 2t1át1tű 2t1á2t1u2t tá1tu 2t1á2tü 2t1át1vi 2t1át1vo tá2v1a2d tá1va tá2vak táva2l tá2v1a2n tá2vas tá2vaz tá2v1ál tá1vá tá2v1e2 tá2véd tá1vé tá2v1érz tá2v1és tá2vin tá1vi tá2vis tá2ví tá2v1or tá1vo 2t1á2vó tá2vö tá2vÅ‘ tá2vü tá2zsal táz2s tá1z1sa tá2zsál tá1z1sá tá2z1só tázs1p tbal2le2 t1ba tbe1á2 t1be tb2la tb2le tb2li tb2lo tb2lú tb2ra tb2re t1b2ri tb2ro tb2ró tb2ru tca1k t1ca tca1s tca1t2 tc2lu tc2re tcsap1á2g tc2s t1c1sa tcsa1pá tdíja2d t1dí tdí1ja tdí2j1a1da td2ra td2rá td2re td2ro td2ró td2ru 1te te2a1a te1a te2a1á te2ab te2ac te2ad te2a1e te2a1é te2ag te2ah tea1i2 te2aiv te2a1í te2aj te2a1ku te2alap tea1la te2aláz tea1lá te2a1li te2a1na te2a1o te2a1ö te2a1Å‘ te2a1pa te2a1pá teas2 te2a1sp te2a1s1za teas2z te2a1s1zá te2a1s1zo tea1t1ró te2a1u te2a1ú te2a1ü te2av te2az te2ber te1be te2béd te1bé 2t1e2c1hó tec2h te2c1sá tec2s te2dit te1di te2dí 2t1e2d2z 2t1ef8f 2t1eff te1f2r te2gan te1ga te2g1a2r tega2z teg1a1zo te2gá teg1ál teg1ár te2g1eg te1ge teg1e2lem tege1le te2g1ell te2g1elr te2ge1ne 2t1eger2e. tege1re te2g1ered te2g1él te1gé te2g1é2p te2gés2z1 teg3g te2gid te1gi te2gis te2giz te2g1on te1go te2g1ö te2gu2t te1gu te2gú te2g1ü2g te1gü tegü2l te2g1ü1lé te2g1ü1lÅ‘ 2t1eg2y. teg2y 2t1e2gyes te1gye t1e2gyez t1egyén te1gyé tegy1ér 2t1egyh 2t1egyl 2t1egys 2t1e2gyüt te1gyü tei2g te1i tein1s te2j1a teje2g te1je te2j1ell te2j1elv te2j1er te2jin te1ji te2jí te2jo te2j1ó te2j1ös te1jö te2jÅ‘ te2j1u2 te2jú te2k1ag te1ka te2k1ál te1ká te2k1el te1ke tek1éret te1ké teké1re te2k1i2p te1ki te2kí te1k1lu te2k1ok te1ko te2k1ös te1kö te2k1und te1ku te2k1ú2t te1kú te2lab te1la te2lag te2l1a2j te2l1an te2lap t2e2la2r te2las te2lav te2l1á2g te1lá te2lál telá2r te2l1át 2tel1bü teleí3rá te1le tele1í 2telej tel1ejt 2t1elektr tel1e2len tele1le te2l1elk te2l1ell te2lem1ba t1e2lem2e. tele1me 2t1e2leme1i 2t1e2lemek te2lemes te2lemén tele1mé 2t1e2le1mű tel1esés tele1sé te2l1e2sÅ‘ 1te2l1es1te tel1es1ti tele2t1é2r. tele1té t1e2lég te1lé tel1érét telé1ré 1te2l1é1te t1elfo1ga tel1fo telié2h te1li teli1é te2l1i1mi te2lind te2l1inf te2l1inff te2l1ing 2t1e2l2ix te2lír te1lí tel2l1eg tel1le 2t1ellenf 2t1ellenff 2t1elle1nÅ‘ 2t1ellenz 2t1ellniv tell1ni 2telmé1le t1elmél tel1mé te2l1ó2 te2l1öl te1lö 2telÅ‘a2dá te1lÅ‘ telÅ‘1a 2t1e2lÅ‘1í 2t1e2lÅ‘nn 2t1e2lÅ‘n2y te2lÅ‘tt 2t1e2lÅ‘1tu te2lÅ‘vét telÅ‘1vé tel1Å‘z2i. telÅ‘1zi tel1p2 tels2 2t1el1sa 2t1el1sÅ‘ 2t1elte1lé 1tel1te 2t1eltet2t. 2t1elté1ré tel1té te2lú telü2k2é. te1lü telü1ké 2t1el2v. 2t1elvb 2t1elve1i tel1ve 2t1elvek 2t1elvet 2t1elvév tel1vé 2t1elvh 2t1elv2i. tel1vi 2t1elvil 2t1elvk 2t1elvn 2t1elvr 2t1elvt 2t1el1vü 2t1el1vű 2t1elvv te2ma2p te1ma te2m1as 2t1embl 2t1embr te2m1e2g te1me tem1e2leg teme1le 2t1eme1lé 2t1e2melk 2te2me1lÅ‘ te2melv te2m1él te1mé te2m1é2r. te2m1é2r2Å‘. temé1rÅ‘ tem1ér1té 2t1e2més 1te2m1é1te te2m1étk te2mid te1mi te2migr te2m1ill te2mi2m tem1ing te2m1int te2móc te1mó te2m1ó2r te2m1Å‘2 2tem1pá 2temp1li temp3lo3mos3 2t1e2mul te1mu te2mus te2mut temü2l te1mü te2m1ü1lé te2nad te1na te2n1a2g te2nal te2na2n te2n1a2r te2n1as te2nat te2na1u te2n1á2t te1ná ten1d2h tene2g te1ne ten1eg2y te2n1el te2ner 2t1e2nerg te2n1es2z t2enes te2n1ékt te1né te2n1é2v. te2n1é1vi 2t1enged ten1ge te2n1i2p te1ni te2n1ol te1no te2n1ó2 te2nö ten2t1in ten1ti ten2t1í2v ten1tí ten1t1ri te2n1u2 te2nú te2n1üg te1nü te2nünn 2t1enyh ten2y t1enyv te2of te1o te2off teo2s tep2h 2t1e2piz te1pi 2t1e2pos te1po 2tepp tep2p1é2k tep1pé ter1abl te1ra ter1a2cé te2r1a1da ter1a1ka te2r1a2n te2r1a2r te2ra1u ter1á2c2s te1rá te2ráf te2ráff te2r1áll ter1álm te2r1á2ri ter1á1ta ter2c2h ter1d2 2t1er1dÅ‘ 2t1e2redm te1re te2r1e2d2z ter1e1gé ter1eg2y 2t1e2rej te2r1e2k2e. tere1ke 2t1e2rekl te2r1elm tere1me2 te2r1ent 2tere1o tere2pa tere2p1e2l tere1pe tere2p1ü2lé tere1pü te2r1er te2r1e2sÅ‘ 1te2r1es1te te2r1es1té te2re1ta te2r1e1ti te2retn te2rég te1ré te2r1é2j ter1é2k1a2 te2r1ékh te2r1ékn te2ré2l ter1é1le ter1élv ter1g2 ter1i1ko te1ri 2teri1li ter1il1la teri2na te2r1i2p ter1ist ter1izm ter1k2 t1erkölc ter1kö termés1s ter1mé ter2n2e. ter1ne te2r1old te1ro te2rop te2ror te2r1ox te2r1ó2r te1ró te2rö2k te1rö te2r1ön te2rÅ‘ 2t1er2Å‘. 2t1erÅ‘b 2t1erÅ‘f 2t1erőff 2t1erÅ‘s t1erÅ‘t t1erÅ‘v ters2 ter1sk ter1sp ter1st ter1s2z2 tert2 ter1tr te2rur te1ru te2r1ut te2r1út te1rú te2r1üg te1rü te2r1üld ter2vaj ter1va ter2va2n te2sar te1sa te2sár te1sá te2sel te1se tes1ell 2t1ese1mé 2t1e2setb 2t1e2set2e. 1tese1te 2t1e2sete1i 2t1e2seten 2t1e2setet 2t1e2se1té 2t1e2seth 2t1e2se1ti 2t1e2setn 2t1e2setr 2t1e2sett te2sél te1sé 2t1e2séll 2t1e2sél2y 2t1e2sés te2s1int te1si tesí2r te1sí te2sírn te2s1í1ró te2síz 2t1es1kü t1es1ni te2sot te1so 2t1e2sÅ‘ tesp2 2t1esszen tes2s2z tes1s1ze tes2tak tes1ta tes2tal tes2t1áll tes1tá testá2r tes2tá1ra tes2t1elk 1tes1te tes2t1ell tes2t1er 2t1estéj tes1té 2testék tes2t1ékn tes2t1éks 2t1estém tes2tism tes1ti tes2t1o tes1tÅ‘2 tes2t1Å‘1re tes2t1Å‘1ré tes2tur tes1tu te2s1ú te2s1ü2v te1sü 2teszet tes2z te1s1ze 2t1esz1mé tesz2t1a2 teszte2r 1tesz1te tesz2t1e1re 1tesz2t1é2te tesz1té tesz2tor tesz1to te2t1a2k te1ta te2t1a2l te2ta1na te2t1a2p te2tág te1tá te2t1ál tetá2r te2t1á1ra te2tát te2t1e2g 1te1te te2t1ell tet1e2lÅ‘ tet1elr te2t1elv te2te1ne t2ete2r te2t1e1ré te2t1es2z te2t1éj te1té tet1ékk te2t1é2l te2t1é1ri te2t1érv te2ti2d te1ti 2t1e2ti1ka 2t1e2ti1ká te2tim te2t1int tetkés2z1 tet1ké te2t1olt te1to te2t1ot te2tór te1tó te2tur te1tu te2t1üz te1tü 2t1e2tűd te1tű te2t1ű2z tevés3s te1vé te2vol te1vo te2w1a 2t1exp 2t1e2zer te1ze tezÅ‘1a2 te1zÅ‘ 2t1ezreds tez1re 2t1ezrel 1té 2t1ébr té2cÅ‘ té2des té1de 2té2g. 2tégb 2téget té1ge 2té1gé té2gép té2gés 2tégg 2tégj 2t1égk tég1la1 2tégn 2t1é2gö 2t1é2gÅ‘ 2tégr 2tégt té1gü2 té2g1ül 2t1é2h. 2t1é2hek té1he 2t1é2hen 2t1é2hes 2t1é2het 2t1é2hé 2t1éhs 2t1é2jen té1je té2jes 2t1éjr 2t1éjs 2t1éjt té2kab té1ka té2kad ték1a1da té2k1a1ka ték1alk té2kam té2k1a2n té2k1ar téka2t té2k1att té2kaz té2k1ág té1ká té2k1e2c té1ke té2ke1dé té2k1e2g té2k1e2kéh téke1ké té2k1e2lÅ‘1á téke1lÅ‘ té2k1elr té2k1er té2k1es2z té2k1e1ti té2k1é2k té1ké té2k1é2l té2kép té2k1é2r. t2é2k1és tékfé1lé2 ték1fé tékfé2l1év té2ki2d té1ki té2kik té2kim té2ki1rá té2k1i2s té2kí2 té2k1o2r té1ko té2k1os2z té1kó2 té2kór té2k1ö2 té2kÅ‘ té2k1u2t té1ku tékü2l té1kü té1la2 té2lak té2l1an té2lap té2las t2é1lá té2láb té2lá2l té2lár té2l1á2t té2le1i té1le té2le2l té1l1e1le tél1ell tél1e1lÅ‘ tél1elv té2l1e2r té2les tél1est té2lez tél1ékb té1lé tél1é1ké té2lí té2ló té2l1ö2 télÅ‘kés2z1 té1lÅ‘ télÅ‘1ké té1lu2 té2lut 2té2lű té2lyeg tél2y té1lye télyigaz1 té1lyi télyi2g té2ly1i2ga téma1p té1ma té2mil té1mi té1na2 té2n1an 2t1é2nekb té1ne 2t1é2nek2e. téne1ke 2t1é2nekek 2t1é2ne1ké 2t1é2nekl té2n1in té1ni té2n1ö2 té2ny1e2g tén2y té1nye té2ny1e2l té2nyé2k té1nyé tényigaz1 tényi2g té1nyi té2ny1i2ga té2nyim té2nyo té2nyö2 tépés3s té1pé 2t1é2pí té1p2la 2t1é2pül té1pü té2rab té1ra té2raj tér1akt té2r1a2n té2rar té2ras té2rav té2r1á2r té1rá 2térdekb tér1de 2t1érdekl 2térdekn 2t1érde1kü 2t1érde1kű tér2d1e2mel térde1me tér2d1í2j tér1dí té2ref té1re té2r1eff té2reg té2r1e2l té2rem té2r1eml té2r1eng tére2n té2r1e2sÅ‘ té2r1es2s2z té2r1es2z 2t1é2rett térés1s té1ré té2r1és2z tér1é1te téri2d té1ri té2r1i1de té2ril té2ri1o té2rip té2ris té2ri2z 2térkez tér1ke 2t1ér1mü té2r1os té1ro té2rö 2t1értes tér1te 2t1érték tér1té 2tért2Å‘. tér1tÅ‘ 2t1értÅ‘k tér1t2r 2t1értv té2r1u2 2t1ér2v. 2t1érve1i tér1ve 2térvek 2t1érvén2y tér1vé té1ry té1sa2 té2sab té2sag té2s1aj té2sak té2s1al té2san té2sap té2s1as té2s1az té2s1á2 té2s1á1t1a2 té2s1eg té1se té2s1e2l té2s1e2r té2sés té1sé tés1i1ko té1si t2é2s1or té1so té2só té2s1Å‘2 té2su tésü2l té1sü té2s1ü1lé tés1ü1lÅ‘ té2s1üt tés3zav tés2z té1s1za tész1á2l t2é1s1zá tés3zár té2szeg té1s1ze té2sz1emb tés3ze1ne té2s2zes2z té2sz1ék té1s1zé tés3z1si tész2s té2t1a2l té1ta tét1c1sa2 tétc2s té2t1e2g té1te tét1e2lemt téte1le tét1elkés tétel1ké té2t1el1ve 2t1éte1ri té2t1ers2 té2t1e2v té2ték 1té1té té2t1é2te té2tok té1to té2t1o2l té2t1os té1tó2 té2tón té2t1ór 2t1é2v. 2t1é2vad té1va 2t1évb 2t1évc 2t1é2vedb té1ve 2t1é2ve1i 2t1é2vek 2t1é2vem 2téve2s. tévé1s2z2 té1vé 2t1évf 2t1évff 2tévh 2t1é2vi 2tévk 2t1évn 2t1évr 2t1évs 2tévt té2vú 2t1é1vü té2vü1kö té2vün 2t1é2vű 2t1évv té2z2s tfa2l1aj t1fa tfa1la tfa2la2n tfa2le tfa2lom tfa1lo tf2jo tf8j tf2la tf8l tfla tfl tf2le tfle tf2li tfli tf2lo tflo tf2ló tfló tf2ra tf2rá tf2re tf2rí tf2ro tf2rö tf2ru t3g2a2z1e t1ga tgá2zak t1gá tgá1za tgá2zár tgá1zá tgá2zé tge2n1el t1ge tge1ne tge2né tg2lo tg2ló tg2ne tg2ra tg2rá tg2ri tg2ró tg2ru tg2rü tha2de t1ha 1t2hago1re tha1go t2ha1i t2ha2n. t2ha2r. 1t2ha1u t2hay 1t2h2e. t1he 1t2he1a t2hed thei2d1 the1i the2i2d. 1t2he2idp the2im 1t2he1o 1t2heus2z the1u 1t2hex th1l2y t2h2o. t1ho t2ho1li thon1n th2rom th1ro th1sc 1thy 1ti ti2a1é ti1a ti2af ti2aff ti2ah ti2aj tiakés2z1 ti2akés tia1ké ti2a1la ti2am ti2a1p ti2a1ta ti2atl ti2a1ü ti2av ti2c1hi tic2h ti2de1a ti1de 2t1i2de1á 2t1i2deg ti2de1i 2t1i2dej 2t1i2de1o ti2dén ti1dé 2t1i2déz ti2di1o ti1di 2t1i2dom ti1do 2t1i2dÅ‘ tie2le ti1e tie2n2 ti2er tié2b ti1é ti1f8l ti1fl 2t1i2ga 2t1i2gá 2t1i2g2e. ti1ge 2t1i2gék ti1gé ti1g2lo ti1g2ra ti1g1rá ti2gye tig2y 2t1ihl ti3ki ti1k1le ti1k1lu ti2konb ti1ko ti2ko1no ti2konr tiko1s2z2 ti1k2ri ti2lab ti1la ti2lac ti2lad ti2la2n ti2l1ág ti1lá tile2g ti1le til1eg2y ti2lex ti2lim ti1li til1ing ti2l1i2p ti2lir til1isk 2t1illa1to til1la t1il1lu 2t1il1lú ti2l1ö2 2t1i2l2y ti2mak ti1ma 2t1i2máb ti1má 2timá1dó t1i2mád ti2máj ti2már ti2má2t. ti2máz ti2mes ti1me 2t1im1mu 2t1imre1i tim1re 2t1i2naka2t. ti1na tina1ka 2t1i2nakk ti2n1akt ti2n1a2n tin1a1rá tina1t2 ti2n1a1u ti2n1áll ti1ná tin1árt2 2t1in1dá 2t1in1de 2t1in1dí 2t1in1du t2i2n2e. ti1ne ti2neg ti2n1e1ké ti2nem 2t1infar tin1fa 2t1inf8l 2t1infl 2t1infr tin2gal tin1ga tin2gas tin2g1ár tin1gá tin2g1e2l tin1ge 2t1inge1ni 1tin2g1e1ti tin2gos tin1go tin2g1ó2 2t1i2nic ti1ni tini2g tin1i1ga ti2n1i2m tini1s2z2 2t1in1ku 2t1inkv tin3n tin1ó2rá ti1nó ti2nö 2t1insp 2t1integ tin1te 2t1intéz tin1té ti2n1ut ti1nu ti2nű ti2ol ti1o ti2o1na ti2onb ti2onh ti2o1ni ti2onj ti2on1k2 2t1i2onn 2t1i2o1no 2t1i2onr 2t1i2ont tio2x ti2pad ti1pa ti1p2la tip2pin tip1pi ti2qu 2t1i2rat ti1ra 2t1i2rán ti1rá 2t1irg ti2rig ti1ri 2t1irk 2t1i2rod ti1ro 2tirol ti2rom ti2rón ti1ró 2t1irr 2t1irs2a. tir1sa2 2t1irt tis2as ti1sa ti2s1a2u ti2s1el ti1se 2t1i2s2i. ti1si ti2sim ti2sin ti2s1i2r 2t1i2sis 2t1is1ko ti2sor ti1so 2t1istv tisz2ti1na tis2z tisz1ti ti2t1i2o ti1ti ti1t2ri ti1t2ro tiu2mé ti1u tiu2m1i2 2tivad ti1va 2t1i2var 2t1i2ván ti1vá 2t1i2vó ti2xa tize2n1 ti1ze ti2z2é. ti1zé 2t1i2zéj 2t1i2zék ti2zér ti2zét ti2zév tizo2m ti1zo 1tí tí2gé tí2ja tí2já tí2jú tí2la tí2l1ó2 2t1í2ni1o tí1ni 2t1í2no 2t1ínr 2t1íns 2t1í2n2y tí2ra2n tí1ra tí2rar tí2r1ál tí1rá 2t1í2rás tí2r1e 2t1í2ró tí2rÅ‘ tí2rü títés3s tí1té títÅ‘1a2 tí1tÅ‘ títÅ‘1e2 tí2v1e2c tí1ve 2t1í2ve1i tí2vel tí2ve2r 2t1í2vé1i tí1vé tí1vi2 tí2vi2k tí2vir tí2viv tí2v1ó2 tí2vö tí2vÅ‘ tív1s tí2za tí2zá tí2zel tí1ze tíz1e1le tí2z1emb tí1zi2 tí2zik tí2z1is tí2zí 2tízl tí2z1o tí2zö tí2z1sá tíz2s tí2zu tí2zül tí1zü tíz1ü1lé 2t1í2zű tje2gy1á2 t1je tjeg2y tjó2t1 t1jó tka1pr t1ka tka2ró2r tka1ró tken1de2 t1ke tké2p1e2kéh t1ké tké1pe tképe1ké tkia2l t1ki tki1a tki1á2 tki1e2 tki1é2 tk2la tk2li tk2lí tk2ló tk2lu tkö2z1él t1kö tkö1zé tkőé2h t1kÅ‘ tkÅ‘1é tk2ra tk2rá t1k2reác tk1re tkre1á t1k2ré t1k2ri tk2rí t1k2ro t1k2ró tk2ru tk2va tk2vi tk2vó tla2c3 t1la tla2g1a2d tla1ga tla2g1ar tla2gas tla2gál tla1gá tla2g1e tlag3g tla2g1ó tla2n1e2 tlan1ká2 tla2nó tla2pár tla1pá t2l2e. t1le tle1í2 tlen3n tle2t1a2n tle1ta tle2tas tle2t1e2l tle1te tle2t1é2r. tle1té tle2tos tle1to tle2tÅ‘ tle1ü2 tlé2kal t1lé tlé1ka tlé2kem tlé1ke tlé3pe tlés3s tlé1t1rá tli2e t1li tló1dr t1ló tma2gál t1ma tma1gá tma1k tmart2 tmá2nyir t1má tmán2y tmá1nyi tme2g1e2 t1me tme2g1é tme3gif tme2gi tme3giff tmik1ro1 t1mi tmikros2z2 tmo1bi2 t1mo tmu2sí t1mu tmus3s2 tmu2s2z tna2gya t1na tnag2y tná2d1 t1ná tne2k1el t1ne tne1ke tne2küld tne1kü tne2m1e2r tne1me tne2r1a tne2r1á tne2s1z1a tnes2z tne2s1zi tne2s1z1ó2 tné1v1a2 t1né tno1g t1no tnómen1 t1nó tnó1me tnómenk2 tnö2k1öl t1nö tnö1kö tnőé2n t1nÅ‘ tnÅ‘1é 1to 2t1o2be 2t1obj 2t1obl 2t1obs to1c1ki to2da1a to1da to2das2 to2dí 2t1o2dú 2t1odv 2t1of8f 2t1off to1ft togás1s to1gá to1g2l to1g2ramn tog1ra to1g2ram1s2 to1g1rá to2il to1i to2in to2k1a1ka to1ka to2k1a2n to2k1ap tok1a1ri to2k1ál to1ká tok1á2rok toká1ro to2k1átl to2k1átm to2k1átr to2k1áts to2k1átt to2k1átv to2ker to1ke to2k1é2l to1ké to2ké2p to2kid to1ki to2k1im to2k1in to2k1ip to2k1iv to2kí t1o2ko1zá to1ko to2k1ö to2kÅ‘ to1k2ro to1k2róm1 tok1ró tok1s2 toks2z2 tok2s1zi to2k1ur to1ku to2kúr to1kú to2kü to2kű to2l1a2d2 to1la 2t1o2laj to2l1akt tola2n to2l1an2y to2l1a2r tol1atom tola1to tol1ábr to1lá 2t1olda1lo tol1da 2t1oldalt2 2t1o2lim to1li tol1k2 tol2l1árb tol1lá tol2l1á2ré tol2l1árh tol2l1árr tol2leg tol1le tol2l1in tol1li tol2l1í2 to2l1o2r to1lo 2t1oltás tol1tá to2l1ut to1lu 2t1olvas tol1va to2m1ag to1ma to2m1ak to2m1a2l to2m1a2n to2m1ap to2m1ál to1má to2m1á2r tom1b 2tom1be to2m1e2l to1me to2men to2m1e2s to2mí to2m1os2z to1mo to2m1ó2 to2mö tom1p2 tom1s 2tom1tö 2to1mú to2mü to2mű to2nalm to1na tona1t2 tona1u2 ton1áll to1ná ton1álm to2n1á2z to2n2e. to1ne to2n1e2l to2n1e2n to2ner ton1gr to2nil to1ni ton1k2 to2nol to1no to2n1or to2n1os2z to2nóc to1nó to2nór to2nö to2nÅ‘ ton1s2 tont2 ton1tr to2n1ú2t to1nú to2nü to2nű to2nyad ton2y to1nya to2nyal to2nye to2p1at to1pa 2topc 2to2pe to2pik to1pi to2pi2z 2top2p. 2top1po 2toppr top1t2 to2pü to2r1a2d to1ra to2r1ag to2r1aj to2r1a1ka to2r1akn to2r1a1ko to2r1a2l tora2n to2r1an2y to2r1a2p to2r1ar tor1ass to2rat to2r1a1u to2r1av tor1á2c2s to1rá to2r1áll to2r1álm tor1á1té to2r1átl to2r1á2z 2t1or1cá tord2 tor1dr to1re2 to2rec t2o2re2k to2r1e2l to2re2n to2r1er tor1f2 tor1ff tor1g2 2t1organ tor1ga 2t1o2ri1e to1ri to2r1ill to2r1int to2r1isk tor1k2 2tor1nó to2rop to1ro to2ros2z tor1oszt to2r1ov to1ró2 to2rón to2r1ór to2rö to2rÅ‘ 2t1or2r. 2t1orráv tor1rá 2t1or1ri tors2 tor1sc tor1sk 2t1or1só tor1sp tor1st tort2 tor1tr to2rü 3t2or1vá 2t1orvos tor1vo 2t1orvv to1ry to2s1as to1sa to2s1e to2sik to1si to2s1in tos3s1ze tos2s2z 1t1os1to 2t1ost2y to2sü to2szal tos2z to1s1za to2sza2n to2s1z1e tosz1k2 2t1oszlo2p. tosz1lo tosz1tr 3t2o2t. 2t1otthon tott1ho to2ul to1u to2ur to2ut to1va1 2t1o2ve 2t1o2vi 2t1o2vu 2t1oxid to1xi 2t1o2xig to1ye to1yo toza2t1al to1za toza1ta 1tó tóá2g2y tó1á tóá2r tóát1 tóá2ta2 tó1bl tó1b1ra tó1b1ró tó1cl tócsa2p1á2g t2ó1c1sa tóc2s tócsa1pá tó2da2j tó1da tó2d1a2n tó2d1e1sé tó1de tó1d1ro tó2dúr tó1dú tó1f8l tó1fl tó1gl tó1g2r tói2g tó1i tóí2v tó1í tóká2rok tó1ká tóká1ro tó1k2l tó1k1re tó1k1ré tó1k1ro tónus3s2 tó1nu tóo2k tó1o tóó2r tó1ó tóp1ass tó1pa tó2p1e2l tó1pe tóp1int tó1pi tó1p1ro tó2ras tó1ra tó2ráb tó1rá tó2ráh 2t1ó2rá1i tó2rár 2t1ó2rás tó2rát t1ó2ráv tó2se2p tó1se tós1éták t2ósét tó1sé tósé1tá tós1é2tát tó2sír tó1sí tó1s2kan tós1ka tó1skál tós1ká tó2s1ol tó1so tó1s2rác tós1rá t2ó2s1ü2l tó1sü tó2s3ze1ne t2ószen tós2z tó1s1ze tó1sz2f tó1sz2ff t2ó1szk tó2taj tó1ta t2ó2tág tó1tá tó2tom tó1to tó1t2rá tó1t2re tó1t1ro 2t1ó2vod tó1vo 2t1ó2vó 1tö töb2bev töb1be töb2b1o 2t1öbl 2tödé1é tö1dé tö2dém tö2dí 2töd1né tö2do 2tödöt tö1dö 2tö1dü tö2ka tö2ká tö2k1e2v tö1ke tö2k1é2r. tö1ké tö2k1érd tö2ki2d tö1ki tö2kí 2tö2ko 2t1ö2kör tö1kö tökös3s tö2k1Å‘ 2t1ökrös tök1rö tö2ku 2t1ölb 2t1öl1ci töl2gya tölg2y töl2t1á2 t1öltön 1töl1tö 2t1öltöz töm2b1a töm1be2 töm2bel töm2b1o t1öm1le 2t1öm1lé t1öm1li tö2möl tö1mö tö2na tö2ná tön1d2 tö2ne2n tö1ne tö2n1í tön2kár tön1ká tönkés2z1 tön1ké tö2no tö2n1Å‘ tön1s tö2nu tö2nú 2t1ö2reg tö1re törés3s tö1ré 2töröks tö1rö tör2t1a2 tör2teg tör1te tör2t1e2lem törte1le tör2ter tör2térn tör1té tör2t1és tör2t1o2 tör2t1öl 1tör1tö tör2tös tör2z1sa törz4s tör2zs1ö2l tör1z1sö 2t1ösv 2t1ös2z 2t1ötl töt2t1á 2t1ötv 2t1ö2v. 2t1övb 2t1övh 2t1ö2vi1e tö1vi 2tövig 2t1övj 2t1övk 2t1övn 2t1övr 2t1övv 2t1ö2zön tö1zö tözÅ‘1e2 tö1zÅ‘ 1tÅ‘ tÅ‘a2c tÅ‘1a tÅ‘a2l tőá2g tÅ‘1á tÅ‘1bl tÅ‘1br tÅ‘e2ké tÅ‘1e tÅ‘e2r tőé2l tÅ‘1é tÅ‘1f8l tÅ‘1fl tÅ‘gé2p1éss tÅ‘1gé tÅ‘gé1pé tÅ‘1gr tőí2t tÅ‘1í tőí2v tÅ‘1kl tÅ‘1kv tÅ‘1pl tÅ‘1pr tÅ‘1ps tÅ‘2rag tÅ‘1ra t1Å‘2r1a2l 2t1Å‘2r1a2n tÅ‘r1eg2y tÅ‘1re 2t1Å‘rez 2t1Å‘2rék tÅ‘1ré 2t1Å‘2ré1ü tÅ‘2rin tÅ‘1ri tÅ‘2r1is 2t1Å‘2rí 2t1Å‘r1já 2t1Å‘rjel tÅ‘r1je 2t1Å‘r1jö 2tÅ‘r1ka 2tÅ‘rl 2tÅ‘2r1öl tÅ‘1rö 2tÅ‘rp 2t1Å‘r1ti 2t1Å‘r1t2r 2t1Å‘rz tÅ‘2s1a2l tÅ‘1sa 2t1Å‘sn2y tÅ‘1s1pe tÅ‘1s2pi tÅ‘1sp2r tÅ‘1s1rá tÅ‘1s1ta tÅ‘1s2tá tÅ‘1s1té tÅ‘1st2r 2tÅ‘1sű tÅ‘2s2ű. tÅ‘s2z2 tÅ‘1szt2 tÅ‘1tr tőü2l tÅ‘1ü tÅ‘1zá2 tÅ‘zár1 tpa1c2 t1pa tpen3n t1pe tp2fe tp2la tp2lá tp2lé tp2lu tp2ra tp2re tp2ré tp2ri tp2ro tp2ró tp2ru tp2s2z tpu2tin t1pu tpu1ti t2ra1fó t1ra 1t2ra1gé 1tra1gi tra1k2l tra1k1ro tran2d1a2 tran2dá trans1s tran2sz1a1i trans2z tran1s1za tran2sz1o2m tran1s1zo 1t2ranzit tran1zi tra1s2p trat2 t2ra1ti tra1tr 1t2rá1gya t1rá trág2y 1t2rágyáb trá1gyá 1t2rágyá1é 1t2rágyáh 1t2rágyá1i 1t2rágyáj 1t2rágyák 1t2rágyán 1t2rágyár 1t2rágyás 1t2rágyát 1t2rágyáv t2rájk trán2s2z trá2nyal trán2y trá1nya trá2t1ér trá1té tre2c1sa t1re trec2s tre2c1so t2re1go tren2da tren2d1Å‘2 1t2re1ní t2re2s. tre2u tré1é2 t1ré 1t2ré1ni tré1p2 tr2é2s1z1á2 trés2z tri1g2l t1ri tri1i2 t2ri1kó t2rill 1t2ri2ó. tri1ó t2riój t2riók trol2l1in t1ro trol1li tro2mad tro1ma tro2maj tro1na2 tro2n1ag tro2nal tro2nan tro2ne2s tro1ne tron3n tron1tr tr2os tro1sz2f tros2z tro1sz2ff t2r1o2x tró2de t1ró tró2nas tró1na tró2n1e 1t2rónj 1t2ró1no t2rónt tró1s2z tró2z1si tróz2s t3röm t1rö 1t2rös 1t2rub t1ru tru2mad tru1ma 1t2rup tsa2vo t1sa ts2c2h 1ts2c1he tsé2g1éj t1sé tsé1gé t1s2hi ts2ká ts2ko ts2la ts2lá ts2le ts2li ts2má ts2mi ts2ni 1t2soz t1so tsó1i2 t1só ts2pa ts2pe ts2pi ts2po ts2pó tsp2r ts2rá t1s2ta t1s2tá ts2te ts2té ts2ti ts2tí ts2to tst2r ts2tu ts2tú 1t2s2u. t1su 1t2sub tsza2ké ts2z t1s1za tsza2k1ü2 tsza2t1e2 tsza2tö tszé2t t1s1zé t1sz2f t1sz2ff t1sz2k t1sz2l tszomja2d t1s1zo tszom1ja tszö2g1e2le t1s1zö t3szö1ge t1sz2p t1sz2t2 ttad2 t1ta tta2d2ó. t2ta1dó ttag1g tta2g1o2ku tta1go tta2n1ér tta1né t2t1a1rá t2t1aszt ttas2z tta1t2r tta1ü2 t2t1a2z ttán2s1á2g t1tá ttán1sá ttá2v1i2 tte2le1me t1te tte1le t2t1elm t2t1e2lÅ‘1a tte1lÅ‘ tte2r1in tte1ri t2t1e2rÅ‘ tte2s1a2 t2t1é2g. t1té t2t1é2le tté2rak tté1ra tté2r1em tté1re tté2r1es tté2r1é2ne tté1ré tté2ri2d tté1ri ttér1in tt1éss tt1é2vér tté1vé t1t2hi t2t1i2o t1ti t2t1i1ro t2t1isk t2tizz ttí1r1a t1tí tt1í1rá tt1kr ttornác1 t1to ttor1ná t2t1ors2 ttó1dr t1tó ttó1p2 t2t1ó2rá ttó1s2r ttö2l t1tö tt1ö1lÅ‘ tt1pr t1t2raf tt1ra t1t2raff t1t2rag t1t2ran ttrans2z1 ttranszk2 t1t2rav t1t2róf tt1ró t1t2róff tt2rón ttsé2gel tt1sé ttsé1ge 1tt2si t2t1ug t1tu t2t1üd t1tü t2t1üt t2t1ü2v tt1we2 t2t2y t5tyo/ty=ty,1,3 tty1or t5työ/ty=ty,1,3 tty1ö2l t1tyü2 tty1ül ttyülés1 ttyü1lé 1tu tuá2r tu1á tubus1s tu1bu tu1ck tuda2te tu1da tuda2t1ö 2tu1dí tu2ga tu2go 2t1ugr tu2hu tu2il tu1i tu2in 2t1ujj 2tu1ká tu1lo2 2t1ul1ti 2t1ultr tu2lü tu2mab tu1ma tu2m1a2d tu2maj tu2mal tu2man tu2m1ar tu2maz tu2mál tu1má tu2me2g tu1me tu2m1el tu2mer tu2mes tu2m1i2k tu1mi tu2mim tu2m1inf tu2m1inff tu2m1int tu2m1ir tu2mis tu2miz tu2mí tu2mol tu1mo tu2mö tu2mÅ‘ tum1p2 tu2mü tu2nal tu1na 2t1unc 2t1u2ni1ó tu1ni tu2nit 2t1u2no 2t1u2nó 2t1unt tu1p2r tu2rac tu1ra 2tura1i 2t1u2rak tu2ra1lo tu2ram 2t1u2ras tu2ráh tu1rá 2turán tu2rár tu2re tur2g1a tu2run tu1ru tus1abl tu1sa tu2sar tu2ság tu1sá tu2se tu2s1ér1té tu1sé tu2sis tu1si tu2s1í tu2sor tu1so tu2s1ó2 tu2s1ö tu2sÅ‘ tuss2 tus3s1ze tus2s2z tus3s1zi tus3s1zo tu2sü tu2szab tus2z tu1s1za tu2sz1a2d tu2szag tu2szal tu2szap tu2sza2r tus3zav tu2szál tu1s1zá tusz1em tu1s1ze tu2sz1é2l tu1s1zé tu2sz1é2p tu1s1zi2 tu2sz1il tu2szin tu2sz1ip tu2szir tu2szis tu2sz1it tu2s1zí tusz1k2 tu2szol tu1s1zo tu2s3zó tu2s1zö tu2s1zÅ‘ tus1z3sa tusz2s tus3z1se tuszt2 tusz1tr tu2s1zü2 2t1u2tad tu1ta 2t1u2tak 2t1u2tal 2t1u2tam 2t1u2tas 2t1u2taz 2t1u2tá 2t1utc 2t1u2to tu2tód tu1tó tu2tó1p2 tu2tót tu2tun tu1tu tu2um tu1u 2t1u1z1so tuz2s 1tú tú2ja tú2jí tú2jo tú2ju tú2l1a túla2g tú2l1á2 tú2l1e2 tú2l1é2 tú2list tú1li tú2lí tú2lo2k tú1lo tú2lop tú2l1ó2 tú2lö tú2l1Å‘ túl1s túlt2 tú2lú tú2lü tú2lű túra1s2z tú1ra tú2rál tú1rá tú2r1e2 tú2r1ér tú1ré t2ú2r1és tú2r1ol tú1ro tú2rot tú2rö tú2rü t2ú2s1ze tús2z t2ú2s1zö t2ú2s1zü tú2tá 2t1útb tú2t1e2 2t1ú2té 2t1úth 2t1ú2ti 2t1útj 2t1útl 2t1útn 2t1ú2to 2t1útr 2t1útt 2t1útv 1tü 2t1ü2dí 2t1ü2dü 2t1üdv tü2ge tü2g2y tü2l1a tü2lá 2t1ü2led tü1le tü2l1e2m tü2len tü2lep tü2l1e2s tü2l1e2v tü2l1ér tü1lé tü2lir tü1li tü2lí tü2l1o2 tü2l1ökl tü1lö tü2löm tü2l1ön tü2l1öz tü2lÅ‘k tü1lÅ‘ tü2lÅ‘r tü2lu tü2lú tü2ma tü2mék tü1mé tü2m1Å‘ tüne2tel tü1ne tüne1te 2t1ünn 2t1ü2reg tü1re 2t1ü2res 2t1ü2rí 2t1ü2rü 2tüst 2t1ü2te 2t1ü2té tü2ti 2t1ütk tü2tö 2t1ü2tÅ‘ tü2vö 2t1ü2zen tü1ze 2t1üzl 1tű tűcsa2p1 tűc2s tű1c1sa tű2d1al tű1da tű2dá tűe2két tű1e tűe1ké tűé2h tű1é tűfé1lé2 tű1fé tű1gr tű1kv tűle1ü2 tű1le tű1pl tű1pr tűrés1s tű1ré tű1sp tű2z1a2 tűzá2r tű1zá tű2z1á1ra tű2zát tű2ze1ne tű1ze tű2zis tű1zi tű2zí tű2zo tű2z1ös tű1zö tűz3seb tűz2s tű1z1se tű2zú tva2n1e t1va tva2né2v tva1né tv2a2raj tva1ra tvá2nya2d t1vá tván2y tvá1nya tvá2nyí tvá2z1al tvá1za tvá2zip tvá1zi tve2n1e2v t1ve tve1ne tven3n tven3t tve1nü2 tve2nül tve2n3y tve2raj tve1ra tve2ra2l tve2r1á2 tve2reg tve1re tve2r1é2s2z tve1ré tve2rint2 tve1ri tve2rip tve2r1o tvers2 tver1st tve3se tvé2nye2l t1vé tvén2y tvé1nye tvé2r1int tvé1ri tvé2r1o tviselÅ‘1é2 t1vi tvi1se tvise1lÅ‘ tvis3s1zá tvis2s2z t2ví1ve t1ví tv1tá2 t2y 1tya tyai2ko tya1i tya1kl tya1p2 tya1s2z2 tyat2 tya1tr tya1u2 1tyá 2ty1ág ty1áld ty1áll tyá2ra2n tyá1ra tyár1s tyás3s 1tye ty1e2g2y ty1e1la ty1ell ty1emb ty1e2rÅ‘ 2ty1ex 1tyé 2ty1é1te 1tyi 1tyí ty1í2r ty1ív tynk2 1tyo tyo2la2n tyo1la tyo2r1os tyo1ro 1tyó 1työ 1tyÅ‘ ty1Å‘s ty2pe ty1pr ty2sa ty1sp 1tyu 2ty1ug ty1u2tá 1tyú tyú2kü 1tyü 1tyű 1t2zay t1za 1t2zekn t1ze 1t2zek1rÅ‘ 1t2ze2n. t2zenj 1t2zer 1t2ze2s. 1t2zese1ke tze1se tz1Å‘2r t1zÅ‘ tz3sc tz2s 2u. u1a ua2c2h ua2dá ua2de u2ado2r. ua1do u2adorb u2ado1ré u2adorn u2ado1ro u2adorr u2adort ua2dó ua2es ua1e ua2gá ua2ja ua2já ua2la ua2lá u2ant ua2n2y u2a1si ua2s2z ua2t2y ua2ut ua1u ua1yá ua1yé ua1yi ua1yo ua2zo u1á uá2ga uá2g2y uá2l1ért uá1lé uá2po uá2r1á uá2r1e uá2réj uá1ré uá2r1is uá1ri uá2s2z uá2t1a2 uá2t1e ub1a2la u1ba ub1alk u2b1ang ub1arc ub1a2ri ub1á2r. u1bá ub1á2ro ubb2l ub1dr u2b1e2b u1be u2b1ed ube2lá ube2lel ube1le ub1e1lö ub1e2se ub1est u2b1éj u1bé ub1é1le u2b1é2n u2b1ép u2b1érd u2b1é2re u2b1érm u2b1ér1te ubért2 u2b1é1ve ubi2g u1bi u2b1i1ga u2b1i1ge ubi2ke u2b1in2a. ubi1na u2b1ism ub1kr ub1ol1da u1bo ub1orb u2bor1k2 u2b1orv u2b1os2z ub1ó1ri u1bó ub1öl u1bö ub1ös ub1öv ub1pl ub1pr ub1sl ub1sp u2b1ud u1bu ubu2s2z u2b1új u1bú ub1üd u1bü ub1üg ub1ü2l ub1üz uca2t1á2 u1ca uc2c1e uc2c3h uc2c1i1na uc1ci uc2cip uc2cö ucc3s2z uc2c2s uc2cú uc2cü uc2c2z u2c2e. u1ce uc1emb u1c3há uc2h u2c3hé uc3hok u1c1ho uc3hot uciá2r u1ci uci1á uci1p u1c2kig uc1ki uc2kin u1c2kon uc1ko u1c2kot uc2ky uc1ö2l u1cö uc1pr ucsa2p1á2 uc2s u1c1sa u2c3ság u1c1sá u2cs1ál u2csá1ru u2cs1e2l u1c1se u2cs1id u1c1si ucs1s u2c3sü uc3s2z u2c1ug u1cu uc1üg u1cü u1c3zá uc2z u1c3ze uda2tal u1da uda1ta uda2tat ud2a2tál uda1tá uda2t1á2ram ud2atár udatá1ra uda2t1eg uda1te uda2ter udáskés2z1 u1dá udás1ké udás3s u2del u1de 2uder udi2o u1di u2d1isk udo1kr u1do udó2se u1dó ud2ó2sor udó1so u1d2rá u1d2ro u1d2so2n. ud1so u1e ue2bé ue2d2z ue2gé ue2gés2z1 ue2g2y uel1ér ue1lé ue2lÅ‘ ue1l2y ue2me uen1t2 ue2rÅ‘ uervíz1 uer1ví u2e2s. u2esb ue2s1e u2esh u2e1si u2esk u2esn ue2sÅ‘ u2esr u2est u2e1su ue2s3zen ues2z ue1s1ze ue2te ue2ve u1é ué2ge ué2gé ué2ké ué2le ué2pí ué2pü ué2te ufé2nye u1fé ufén2y u1f2le uf8l u1fle ufl uf2ri uf2ru uf2tü ug1ag2y u1ga ug1alj uga1p ug1a1pa 1u2ga1ro uga2t1el uga1te uga2té2s uga1té uga2tol uga1to uga2t1ó2r uga1tó ug1ág u1gá ugá1ra2 ugá2r1ad ugá2rá ugá2ros ugá1ro ugá2ru ugá1r1ú ugás3s ug1á2s2z ug1el u1ge uge2n2e. uge1ne ug1e2v ug1é2l u1gé ugg2l ugi2e u1gi ug1ing ug1int u2g1i1ro ugi2t ug1i1ta ug1i1vá ug1ír u1gí ug1kl ugo2r1á2 u1go ugó1sv u1gó ug2ó2s3zá ugó1s2z ug1ös u1gö ug1pr ug1sk 2ugu1i u1gu 2ugurác ugu1rá 2ugurá2l. u2g1ut u2g1új u1gú ug1üg u1gü ug1üz ug1űr u1gű ugya2n ug2y u1gya uh1a2dó u1ha uh1alk uha2r1as uha1ra u3ha1t2r uh1att2 uha1u2 u2h1á2g u1há uh1áll u2h1á2r. u2h1árb u2h1árf u2h1árff u2h1árh u2h1árn u2h1árr u2h1árv uhá2szak uhás2z uhá1s1za uh1em u1he uh1ex uh1ind u1hi u2h1ing uh1orz u1ho uh1Å‘r u1hÅ‘ uh1pr uh1tr u2h2u. u1hu u2huj uh1ujj uh1üz u1hü u1i ui2de ui2dÅ‘ ui2e1u ui1e ui2ga ui2gé u2i1gi u2i1gn ui2pa ui2rá ui2zé u1í uí2ja uí2ju uí2ve uí2vű u2j1an u1ja 1ujj2a. uj1ja 1ujjad 1ujja1i 1ujjak 1ujjam 1ujjas 1ujjat uj2j1á2ru uj1já 1ujjb 1ujjc 1ujjd 1uj2j1e2 1uj1jé 1ujjf 1ujjff 1ujjg 1ujjh 1uj1ji uj2jí 1ujjk 1ujjl 1ujjm 1ujjn 1ujjp 1ujjr 1ujjs 1ujjt 1uj1ju 1uj1jú uj2jü 1ujjv u2j1op u1jo uk1abl u1ka uka2c3se ukac2s u2k1a2lap uka1la uka1pl uka2rán uka1rá u2k1arc uka2szás ukas2z uka1s1zá uka1t2r uk1áll u1ká uká2sar uká1sa u2k1á2só ukás3s u2k1átm uk1bl uke2l u1ke uk1e2m uk1ex u2k1ég u1ké u2k1érz u2k1i2p u1ki uk2k1alt uk1ka uk2k1eg uk1ke uk2k1em uk2k1o1la uk1ko uk2kö2l uk1kö uklás1s uk1lá ukl2ó2s3zá uk1ló ukló1s2z u2k1old u1ko uko1ra2 uko2ras uko2r1á2 uko2ril uko1ri uko2rin uko2r1o ukós2 u1kó uk1öb u1kö uk1pr u1k2rón uk1ró uk1ü2t u1kü uk1űr u1kű ula2c1s1ö2 u1la ulac2s ula1g2 ula2jas ula1ja ul1aleg ula1le u2l1alj ula1s2p ulata2l ula1ta u1la2t1a1la ul2a2t1a2n ul2a2tál ula1tá ula2tem ula1te ula2tik ula1ti ula2tol ula1to u2l1ábr u1lá ulá2k1e ulá2k1ü u2l1á2ri1a ulá1ri ulá2s1i2k ulá1si uláskés2z1 ulás1ké ulás3s ulá2s1za ulás2z ulá2s1ze ul1bl ulcs1e2l ulc2s ul1c1se ulcs1es ul2cs1é2r. ul1c1sé ul2csérv ul2cs1é2vé ul2c2si1ga ul1c1si ul2csip ul2c1s1í2 ul2csor ul1c1so ul2c1s1ö2 ul2c1s1Å‘ ul2csut ul1c1su ul2c1sü ulcs3z u2l2e. u1le ule2i ule1í2 ule2l ul1e1lÅ‘ ulet2ta u2l1ex ulé2kal u1lé ulé1ka ulé2k1e2 ulé2k1ol ulé1ko ulé2kut ulé1ku ul1é1pü u2l1ér1té uli2nar u1li uli1na 2uling uli2nin uli1ni ul1í2r u1lí ul1k2r ul2lef ul1le ul2l1eff ul2l1e2l ul2l1em ul2l1en ul2l1ér ul1lé 2ul2o. u1lo ulog2 ulot2 uló1f2 u1ló uló1ff ulói2kon uló1i ulói1ko ulókés2z1 ul2ókés uló1ké uló1ó2 ulót2 uló2za2n uló1za uló2z1á2ra uló1zá uló2z3s ul1öt u1lö ul1pr ul1sp ul1st ul2t1aj ul1ta ulta2r ult1as2z ul2taz ul2tül ul1tü ul1úr u1lú ul1üt u1lü ul1űr u1lű u2lyi ul2y u2m1abl u1ma um1abr um1a2cé um1ac2h um1a2dat uma1da u2m1adm um1a2do um1a2dó 2uma1é um1a1já u2m1a2ka umakés2z1 um2akés uma1ké u2m1akk u2m1akt u2m1a2la u2m1alg um1all um1alt u2m1a1na u2m1ank u2m1a2no u2m1a2n2y 2uma1o 2uma1p2 u2m1a2rá um1arg u2m1a2ri um1a2ro um1asp u2m1atl u2m1a1u um1a2zo u2m1ág u1má u2m1áll um1álm u2m1á2rak umá1ra u2m1á2ram u2m1á2ras u2m1á2rá u2m1árf u2m1árff u2m1árk u2m1árn u2m1á2ro u2m1árr u2m1árt u2m1á2ru u2m1árv u2m1á2t1a u2m1á2t1e2 u2m1átm u2m1á1tu um1bl um1b2r um1dr u2m1e2d u1me u2m1ef u2m1eff ume2g um1eg2y um1e1la u2m1elb u2m1e2le um1e1lé um1elh u2m1e2l1í2 um1elj um1elm u2m1eln um1e1lo um1e2lÅ‘ u2m1elt um1elv u2m1e2m ume2n1á ume2n1ó2 um1e2re um1erk um1e2rÅ‘ um1e2se um1ess um1e2s2z u2m1e2t u2m1e2v u2m1ex um1ezr u2m1ég u1mé u2méhs um1é2le um1élv u2m1ép u2m1é2r. u2m1érc u2m1érm u2m1ér1te u2m1ér1té u2m1érv u2m1é2te um1f8l um1fl um1f2r um1gl um1gr umi1a2 u1mi u2m1i2dÅ‘ umi1e2 umig2 umi1gr um1imp umi2n2a. umi1na u2m1ind u2m1ing u2m1inv um1i2onb umi1o um1i2o1né um1i2onh um1io1ni u2m1i2onj um1i2on1k2 u2m1i2onn u2m1i2o1no um1i2onr um1i2ont u2m1irt um1isk umi1sl um1ism umi1sp umi2s1zü umis2z umit2 umi1tr um1i1zé um1ív u1mí um1íz umké1s1z1e um1ké umkés2z um1kl um1kr um1kv um1na2 u2m1o2koz u1mo umo1ko um1o1la um1old um1oll um1olt um1olv u2m1o2p umo2ra2n umo1ra um1o2rat umo2rál umo1rá umo2rin umo1ri u2m1os1to u2m1os2z u2m1ox um1ó2rá u1mó um1ö2l u1mö um1öm um1ön um1ö2r um1ös um1öt um1öv um1ö2z um1Å‘2r u1mÅ‘ um1Å‘s umpe2l um1pe ump1e1le um2p1ing um1pi um1p2r um1sk um1sp um1s2t2 um1s2z um1t2r u2m1ud u1mu u2m1ug u2mu1ni umu2r um1u1ra u2m1u2t um1üg u1mü um1ü2l um1ür um1üs um1üt um1üv um1üz umva2s um1va una1b u1na un1a1du un1akt una2n un1an2y u2n1arc u2n1á2g u1ná un2c1s1e unc2s un2csiv un1c1si un2d2z un1e2r u1ne un1e2t un1ég u1né un2g1a2g un1ga un2g1eg un1ge un2g1er ung3g un2g1ol un1go u2n1i2d u1ni 1u2nif 1u2niff 1u2ni1ku u2n1il u2n1in1go 1u2ni1ó 1u2niv unka1p2 un1ka unka1s un2k1eg un1ke u2n1orr u1no un1or1s2 u2not un1pr un1s2t2 unta2i un1ta u2nun u1nu u2n1útj u1nú un1ü2l u1nü u1o uo2la uo2li uo2r1a2 uo1re2 uo2r1et uo2r1i2o uo1ri uo2xi u1ó u2ó1bu u2ó1ne uó1p2r u2ó1ré uó2ri u2ó1so u2ós2z u2ó1ve u1ö uö2ko uö2kö uö2rö uö2zö u1Å‘ uÅ‘2re uÅ‘2ré uÅ‘2ri uÅ‘2rö uÅ‘2rü upa1b2 u1pa up1a1da upa1pr upa1sp upa1t2r up1da2 upe2c2h u1pe upe2r1a upe2rel upe1re uper1s up1e2s upé1p2 u1pé up2hi upli2n up1li up2ri uprin2 up1üz u1pü 1u2raim u1ra ura1i 1u2ra2k. 1u2rakh 1u2rakk 1u2rakn 1u2rakr u2ralh 1u2ralk 1u2ralm 1u2ra2m. ura2m1is ura1mi 1u2ra1sa ura1s2p ur1áll u1rá urá1t1a ur2ce ur2dar ur1da ur2d1e u2r1ef u1re u2r1eff 2ure2n. 2uren2ce 2urent ur2fí ur2f1ú 2uri2c u1ri uri2e 1ur1ná ur2ne ur3n2é uro2k1á u1ro uro2ke2 uro2ne uro1p u2ro1pe uros2 uro1s1p uro1t2 ur1öl u1rö ur1pi2 ur2t1ag ur1ta ur2t1e2t ur1te ur2t1e2v urti2t ur1ti urt1i1ta ur2t1ok1ta ur1to uru2c1e u1ru 2urul uru1p2 2urusza1i urus2z uru1s1za 2uruszak 2uru1s1zá uru2szál 2uruszb 2uruszc 2uru1s1zé 2uruszh 2uruszk 2uruszn 2uruszon uru1s1zo 2uruszos 2urusz1p2 2urusz1re 2urusz1ró 2urusz2s 2uru1s1zu u2r2ú. u1rú us1ab1la u1sa us1a2da us1a2dá u2s1a2dó u2s1a2g u2s1a2j usa2kar usa1ka u2s1akc u2s1a2la us1alg us1alj us1alk u2s1alt us1alv u2s1a1na u2s1a1ne us1ant us1a1pá u2s1a2ra u2s1a2rá u2s1arc u2s1arz u2s1ass u2s1att u2s1a2t2y u2s1a1u u2s1a2z u2s1ábr u1sá u2s1á2gá us1ágb u2s1ágg us1ágh u2s1ágr us1áld us1áll u2s1á2p u2s1á2rad usá1ra u2s1á2ra1i u2s1á2rak u2s1á2rá u2s1árb u2s1árh u2s1á2ri u2s1ár1k2 u2s1árn u2s1á2ro u2s1árr u2s1árt2 u2s1á2ru u2s1á1ta u2s1áth u2s1á1ti u2s1átk u2s1átt u2s1á1tu u2s1átv us1bl us1br us1dr u2s2e. u1se us1e2c us1e2d u2s1ef u2s1eff us1e2g2y u2s1e2l u2s1e2m use2n us1enc us1erd u2s1e2s u2s1e2v u2s1ex us1ez u2s1ég u1sé u2s1é1he u2s1é2k u2s1é2l u2s1é2ne u2s1ép u2s1érd u2s1ér1te u2s1érv u2s1és u2s1é2te u2s1étk u2s1étt u2s1é1ve us1fr us1gr u2s1i2d u1si usi2e usi2g u2s1i1ga u2s1i2ko u2s1ill u2s1i2ma u2s1i2má us1i1mi u2simm u2s1imp u2s1inc u2s1ind u2s1inf u2s1inff u2s1ing u2s1ink u2s1ins u2s1int u2s1inv u2s1i2p u2s1i2rat usi1ra u2s1i2rá u2s1i1ro u2s1irt u2s1isk u2s1ism us1i1ta u2s1i1zé us1íg u1sí u2s1íj usí2r us1í1rá us1í1ró u2s1í2v u1s2kál us1ká us1kl uskói2k us1kó uskó1i us1k2r us1kv u2so2dú u1so u2s1of u2s1off u2s1okl u2s1okm u2s1ok1ta us1o1la u2s1old us1o1li u2s1oml u2s1ond u2s1op u2s1org u2so1ri u2s1orr u2s1ors u2s1os2z u2s1ott us1óc u1só us1ó2s u2s1ö2l u1sö u2s1ön u2s1örd us1ö2rö u2s1ös u2s1öt us1ö2v u2s1ö2z us1Å‘2r u1sÅ‘ u1s2pec us1pe us1pl us1pn us1p2r us1ps us2s2e. us1se us1sí2 us1s1ká us1s1pe us1s1pi us1s1ta us1sy us3szab us2s2z us1s1za us3szag us3szak us3szál us1s1zá us3szám us3szen us1s1ze us3s1zé us3szig us1s1zi us3s1zí us3s1zó us3s1zö us3s1zÅ‘ us1s1zü2 ussz1ül us3s1zű ust1á2rár us1tá ustá1rá us2t2e. us1te us2teg us2t1il us1ti us1trad ust1ra us1t1re us1t1ré us1t1ro u1st1ru us2t1ül us1tü u2s1uj u1su usu2s us1us2z u2s1u2t u2s1új u1sú u2s1ú1té us1üd u1sü u2s1üg usü2l us1ü1lé u2s1ün u2s1ür us1üz usz1abl us2z u1s1za u2szaj usz1a2la usz1alk usz1alv u2sz1a2n us2z1ap1p2 usza2r usz1a1rá u2sz1a1ré usz1a1ro us2z1as2z u2sz1a1u u2sz1á2g u1s1zá usz1ál1lá u2sz1á2p u2sz1á2rad uszá1ra u2s3zára1ko u2sz1á2ram usz1ár1je usz1ásv u2s2záth u2sz1á2t1ö u2sz1e2c u1s1ze u2szef u2sz1eff usz1e2ge usz1e2g2y usze2k usz1e1ke u2sz1e2l usz1emb us2z1eml us3ze1ne usz1eng u2sz1er1d2 usz1e2ré usze2s u2sz1e2v u2sz1ex u2szé1ne u1s1zé usz1é1te usz1é1to usz1imp u1s1zi usz1ind usz1inj usz1isk usz1ism u2s2z1is2z uszí2j1a2d u1s1zí uszí1ja u2sz1ír 1u2szo1dá u1s1zo u2szo1la u2sz1old u2szon2y u2szop u2s2zos2z u2sz1ö2b u1s1zö usz1öl usz1ön u2sz1ös usz1p2 uszte2r1a usz1te usz1t2ran uszt1ra u2sz1u2s u1s1zu u2szut u2sz1útr u1s1zú u1s1zü2 usz1üg u2sz1ül u2sz1üz usz1z ut1abl u1ta uta2csel utac2s uta1c1se u2t1a2dó uta2go 2utakép uta1ké 1u2ta1ló 1u2talv uta1me2 uta2mel uta2mer uta1p ut1a1rá 1u2tasc uta2se 1u2tasf 1u2tasff 1u2tasl 1u2tasv uta1ü2 2utav 1uta1zi 2utáb u1tá 2utá1é 2utáib utá1i 2utáin 2utá1ju 2utákb 2utákt 2utám 2utá1ná után1n 1u2tánz 2utá1ró utá2rú ut1bl 1ut1ca 1ut1cá u2t1e2g u1te ute2r1a ute2rá ute2reg ute1re ute2rim ute1ri ute2ru utén3n u1té ut1fr uti2k1á2r u1ti uti1ká uti2ke ut1ill uti2m uti2n1e2 uti2nér uti1né uti1ni2 uti2ni2g uti2n1ik uti2n1ó utin1s u2t1i2pa u2t1isk ut1kl ut1ok1ke u1to u2t1old uto2l1é u2tols 2utoma1ta uto1ma uto1p2 uto2rim uto1ri 2utos 2utot utó2dal u1tó utó1da u2tó1dá utó2del utó1de utó1p2 utó2s1aj utó1sa utó1s2po utós3s utó1s2to utó1s2z utó1tr utótűz1 utó1tű ut1pr ut2rak ut1ra ut2ran ut2rák ut1rá ut1sp ut1st ut1t2r 2utus u1tu ut1üg u1tü ut1ü2z utya1s2 ut2y u1tya u1u uu2m1ag uu1ma uu2mal uu2m1as uu2mál uu1má uu2m1e2 uu2m1é2r uu1mé uu2mim uu1mi uu2min uu2mö uum1p2 uu2mü uu2ta uu2tá uu2z2s u1ú u1ü uü2g2y uü2rí uü2té uü2ve uü2ze u1ű uva2r1a u1va uva2r1á2 uva2r1e uva2rin uva1ri uva2szál uvas2z uva1s1zá uva1ta2 uv2a2t1ag uvi1g2 u1vi uv2re uxi2t1a u1xi uxi2t1á uxi2t1e uza1la2 u1za uza2lac uza2lad uza2la2n uza2lág uza1lá uza2l1át uza2le2l uza1le uza2l1ék uza1lé uza1p2 uza1s2 2uzá2l. u1zá 2uzálb 2uzáll 2uzálr u2z1id u1zi u2z1i2gye uzig2y uz1ír u1zí uz1ki2 uzó1i2 u1zó uz3sap uz2s u1z1sa uz3s2z uz1t2r uz1ü2g u1zü uzü2l 2ú. ú1a úa2da úa2dá úa2dó úa2g2y úa2já úa2kar úa1ka úa2kas úa2la úa2lá úa2n2y úa2s2z úa2ud úa1u úa2va ú1á úá2ga úá2gá úá2gi úá2go úá2g2y úá2hí úá2lo úá2po úá2ra úá2ri úá2ru 2úbab ú1ba 2úband 2úbar úb2lo 2úbód ú1bó úb2ri úb2ro ú2c1aj ú1ca ú2c1a2l ú2c1a2n ú2c1a2v úc1e2t ú1ce ú1c3he úc2h ú1c3ho ú2c1i2d ú1ci úci2ókép úci1ó úció1ké úc1pr 2ú1c1sa úc2s ú2csab ú2csad ú2cs1ag ú2cs1aj ú2csakt úcs1a1la ú2cs1a2n úcsa2p1á2 ú2cs1a2s ú2cs1a1u ú2csaz ú2cs1á2g ú1c1sá ú2cs1ál ú2cs1á1rá ú2cs1árf ú2cs1árff ú2cs1á1ri ú2cs1árv ú2c2sátv 2ú1c1se ú2cs1eb ú2cs1e2g úc3sej ú2cs1e2l úcs1emb ú2cs1en ú2c2s1e2rÅ‘ ú2cs1e2s ú2cs1él ú1c1sé ú2cs1é2r. ú2csérd ú2cs1ér1te ú2cs1ér1té ú2cs1é2v ú2cs1id ú1c1si ú2csigaz úc2si1ga ú2cs1il ú2csim ú2c2s1inf ú2c2s1inff ú2cs1int úcs1i2pa ú2csi1rá ú2cs1is ú2cs1iz 2ú1c1so ú2c2sok1ta ú2c2sos2z 2ú1c1só ú2cs1ó2r úcs1öl ú1c1sö úcs1ös úcs1p úcs1s úcs1t úcsús1s ú1c1sú úcs1ü2t ú1c1sü úc1s3za úcs2z ú2d1a2c ú1da úda2d ú1d1a1da ú2d1a2k ú2d1a2n úd1ág ú1dá úd1ál úd1á2r ú2d1e2g ú1de ú2d1ej úde2l úd1e1le úd1elh úd1e1lÅ‘ ú2d1e2m úde2ra úde2r1e2c úde1re úd1e2rÅ‘ úd1e2v ú2d1ék ú1dé ú2d1é2r. ú2d1érc údé2t úd1é1te ú2d1i2d ú1di údi2g ú2d1i1gé úd1ing údi2ódar údi1ó údió1da údi2óz ú2d1os ú1do úd1pr úd2rá úd2ro úd1üv ú1dü údy1éh údy1ét údy1i údy2s ú1d3zá úd2z ú1e úe2bé úe2gé úe2gés2z1 úe2g2y úe2la úe2le úe2lo úe2lö úe2lÅ‘ úe2me úe2pi úe2re úe2ré úe2rÅ‘ úe2rű úes2t1é2jét ú1estéj úes1té úesté1jé úe2s2z úe2ta úe2te úe2ve úe2vÅ‘ ú1é úé2he úé2le úé2lÅ‘ 2úé2ne úé2pí 2úé2r. úé2r1á úé2re úé2ri 2úérz úé2te úé2ve úfé1lé2 ú1fé úfé2l1év úf2lö úf8l úflö úfl úf2rá úf2ri úf2rí úf2ro úg1a2d ú1ga úgás1s ú1gá úg1el ú1ge úg1i2v ú1gi úg1old ú1go úgós2 ú1gó úg2rá úgy1ag úg2y ú1gya úgy1el ú1gye ú2gy1é2r. ú1gyé ú1gyi2 úgy1is úgy1iv ú2gy1u2 úgy1út ú1gyú ú1i 2úi2de úi2dÅ‘ úi2ga úi2gé 2úi2ke 2úik1re 2úill 2úi2má úi2mi 2úing 2úint úi2pa úi2rat úi1ra úi2rá 2úisk 2úism 2úist úi2ta 2úi2vad úi1va úi2vás úi1vá ú1í úí2rá úí2ve úí2vi úí2vü 2újá1té ú1já új1es ú1je új1ez új1ép ú1jé új1é1ve új1é1vé 1újfal2u. új1fa újfa1lu új1k2r 1ú2jon ú1jo új1or új1pl új1ra1 1új1sá új1ud ú1ju ú2jul 1újvá2r. új1vá 2úkab ú1ka ú2k1a2g ú2k1a2j úk1a2lak úka1la 2úkalan ú2k1alk ú2k1an2y 2úkap ú2k1a2pó 2úkar 2úka1te ú2k1atk ú2k1ál ú1ká ú2ká1ru úke2l ú1ke úk1e1le úk1ell ú2k1em úke2s úke2t úk1e1te úk1e2vé 2úkérd ú1ké 2úké1ré 2úkés ú2k1éss ú2k1észr úkés2z ú2k1é2te 2úkéz úki1a2 ú1ki ú2k1i2d 2úkin ú2k1is ú2k1i2t ú1k2li úk2lu 2úkol ú1ko ú2k1olt 2úkom 2úkonf 2úkonff 2úkong 2úko1rá 2úko1ro 2úkos úk1ó2l ú1kó úkö2l ú1kö úk1ö1lÅ‘ úk1pr ú1k2re úk1t2r ú2k1ud ú1ku ú2k1úr ú1kú úkü2l ú1kü úk1ü1lÅ‘ úk1ült ú2k1ür ú2k1ü2t ú2k1üz úl1ad ú1la úla2da úla2dá úla2do úla2dó úla2dunk úla1du úl1a2ja úl1ajk úla2ka úl1a2l úl1a2m úla2n ú2l1an2y úl1a2ro ú2l1á2g ú1lá ú2l1ál úl1árn ú2l1á2s2z úl1átv úl1br úl1d2r úl1e2d ú1le úle2l ú1l1e1le úl1ell ú2l1emb úl1en ú2l1e2re úl1e2s ú2l1e2vÅ‘ úl1ex ú3l2é. ú1lé úl1é2d úlé2g ú3l2é3va úl1fr úl1gl ú2l1i2d ú1li ú2l1i1gé ú2l1ij ú2l1il ú2li1má ú2l1ind ú2l1inf ú2l1inff ú2l1ing ú2l1inj ú2l1int ú2l1inv ú2l1i2p ú2l1i1rá ú2l1isk ú2l1i2s2z ú2l1i2ta ú2l1itt ú2livás úli1vá ú2li1vo ú2lizga1to úliz1ga ú2l1izz úl1íg ú1lí úl1í2v úl1k2l úl1kv úlo2k ú1lo úl1o1ko ú2l1ol úl1o2pe ú2l1or ú2l1os ú2l1ox úl1öb ú1lö úl1öl úl1ö2m úl1ö2n úl1ör ú2l1ös úlövés1s úlö1vé úl1Å‘1rü ú1lÅ‘ úl1p2l úl1p2r úl1p2s úl1sk úl1sm úl1sp úl1s2t úls2z2 úlsz2tá2 úlszt2 últ1agg úl1ta últ1ag2y úl2t1aj úl2t1al úl2t1árn úl1tá úl2té2l úl1té úl2tér1te úl2t1és últ1éves últé1ve úl1ti2 úl2tid úl2t1im úl2t1in úl2t1ip úl2tis úl2tí últ1old úl1to úl2tös úl1tö úl2t1Å‘2r úl1tÅ‘ úl1t1rá ú2l1ud ú1lu ú2l1u2g ú2l1ur ú2l1u2t ú2l1úr ú1lú úl1ús úl1üg ú1lü úl1ül úl1ün úl1ür úl1üt úl1üv úl1üz úl1űz ú1lű ú2ly1a2d úl2y ú1lya ú2ly1a2l ú2ly1an ú2ly1a2r ú2ly1a1u ú2lyál ú1lyá ú2ly1átl ú2ly1e2 ú2lyé2l ú1lyé ú2lyés ú2lyo2l ú1lyo ú2ly1ö ú2lyÅ‘ úly1s ú2lyug ú1lyu 2úmac ú1ma 2úmad 2úmag 2úmaj 2úmar 2úmatr úmi2al ú1mi úmi1a 2úmoz ú1mo 2únac ú1na 2únap úna1u2 ú2ny1a2n ún2y ú1nya ú2ny1i2r ú1nyi úny1tr ú1o úo2ko úo2ve ú1ó úó2ra úó2rá úó2sá úó2vo ú1ö úö2le úö2lé úö2lÅ‘ úö2rö úö2ve ú1Å‘ úő2rö úp1eg ú1pe úpe2l úp1es ú2p1in ú1pi úp2la úp2lé ú2p1or ú1po úp1p2l úp1pr úp2rí úp2ro úraát1 ú1ra úra1á 2úrab 2úraj úr1akk úr1a1lu ú2r1ant úr1a2nya úran2y úra1p2 úra1szp úras2z ú2rattas úrat1ta úrau2r úra1u ú2r1ábr ú1rá úr1áll ú2r1á2ri úrás1s ú2r1átm úr1br úr1d2r úr1e2c ú1re úr1e2l úr1es úr1ez ú2rék ú1ré úr1ékk ú2r1é2l úr1é2ne 2úrés úrfé2l1é2v úr1fé úrfé1lé úri2al ú1ri úri1a ú2r1i2d ú2ri1e úr1if8j úri2g ú2r1i1ga úri3gé1nyé ú2r1i2gé úr1i2g2én2y úr1i2m ú2r1inf ú2r1inff úr1ing ú2r1int ú2ris úr1ist úr1k2r 1úrnÅ‘r úr1nÅ‘ úr1ott ú1ro úró1p2 ú1ró úró1sp úr1ö2c ú1rö úr1ö2l úr1ön úr1öt úr1Å‘s ú1rÅ‘ úr1pr úr1s2k úr1sn úr1s2r úr1s2t úr1szn úrs2z úr1u2t ú1ru úr1ü2l ú1rü úr1ü2v 2úsabl ú1sa ú2s1abr ú2s1a2d ú2s1a2j ús1a2la úsa2n ús1an2y ús1apr úsa2r ús1a1rá ú2s1arc 2úsarj úsá2gol ú1sá úsá1go ús1áld ú2s1á2p ú2s1á2ra1i úsá1ra ú2s1á2rak ú2s1árb ú2s1á2r1e2 ú2s1á2ro ú2s1á2ru ú2s1á2rú2 ú2s1árv 2úsát ús1átl ú2s1á2z ús1dr ús1e2c ú1se ús1e2l ús1e2v ús1ex ú2s1é2g ú1sé ú2s1é2l ús1é2ne ú2s1é2ré ú2s1érm ú2s1ér1té ú2s1é2tá ú2s1é2te ú2s1étr ús1fr úsi2g ú1si ú2s1i1ga ú2s1il ú2s1imp ú2s1in ú2s1i2p ú2s1i2r ú2s1is ús1í2z ú1sí ús1kl ús1kv ú2s1o1la ú1so ú2s1old ús1org ú2s1orr ú2s1os2z ús1ó2h ú1só ús1ös ú1sö ús1Å‘r ú1sÅ‘ ús2pe ús1pr ús1s2p ús5s1za/sz=,2,1 ús3szag ús2s2z ússza2k1 ús3szav ús3s1ze ús3s1zi ús3s1zí ús3s1zó ús3s1zö ús3s1zú ús3s1zü ús2tat ús1ta ús1t2r ú2s1u2ga ú1su ú2s1und ú2s1u2t ús1üg ú1sü ús1ün ús1ü2t ús1üz úsvé2t1e ús1vé ú2sz1a2d ús2z ú1s1za ú2s2z1akc ú2sz1á2g ú1s1zá ú2s3zá1rá ú2s3zá1ro ú2s3zárr úszás1s 2ú1s1ze úsz1ej úsz1e2s úsz1e2v 2ú1s1zé ú2sz1év ú2szi1gá ú1s1zi 2ú1s1zí úsz1k2 úsz1old ú1s1zo ús2z1os2z ú2szó1e ú1s1zó 2ú1s1zö úsz1ös úsz1p ús3z1se úsz2s ú2s3zú 2ú1s1zü úsz1ü2g úsz2ve út1a2d ú1ta út1a2i ú2t1a2j út1a2v ú2t1ál ú1tá út1á2ro út1á2s ú2t1á2t1 útá2v1i2 út1bl út1ef ú1te ú2t1eff ú2t1e2g út1e1lá út1ell út1elz úte2m ú2téh ú1té út1é2l ú2tén ú2t1ép út1érd ú2t1é2ri ú2t1ér1té út1érz útfé1lé2 út1fé út1gr ú2tiakh ú1ti úti1a ú2tiakn út1id úti1e2 ú2ti1é úti2g út1i1gé 1ú2tij 1ú2t1i2ko út1ill 1ú2ti1ná út1ind út1inf út1inff út1ing út1int út1i2pa 1ú2tir út1i1rá út1ism út1ist 1ú2t1i2z út1íg ú1tí út1íj út1ív út1okm ú1to ú2t1o1la út1old út1oml úto2n1 út1ont2 út1op 2útor úto2ra2n úto1ra úto2r1as úto2rál úto1rá úto2re2 út1ost út1os2z út1ös ú1tö útÅ‘2r ú1tÅ‘ út1pl út1pr ú1t2rag út1ra 2ú1t2ri útsá2gi út1sá út1st útu2m1é ú1tu útu2r út1u1rá ú2t1út ú1tú ú2t1üg ú1tü 1út1vo ú1u úu2no úu2ra ú1ú ú1ü úü2g2y úü2lé úü2re úü2te úü2ve úü2vö úü2ze ú1ű úű2zÅ‘ 2úvál ú1vá úv2ár úvá2rad úvá1ra úvá2r1akn úvá2ra2l úvá2ris úvá1ri úvá2ro2s2z úvá1ro úvá2r1ó2 úvá1ru2 úza1e2 ú1za úza1é2 úzak2 úza1p2 ú2z1arc úza1t2r ú2z1ál ú1zá ú2zá1ru úzás1s úz1i2d ú1zi úzi1do2 úzót2 ú1zó úzó1tr úz1p2r ú2zs1a2l úz2s ú1z1sa ú2zsál ú1z1sá 2ú1z1se úzs1e2c 2ú1z1si úz3s2z úz1t2r 2ü. ü1a üa2já üa2la ü1á üá2ga üá2go üá2gu üá2ra üá2s2z üb2lo ücsö2k1 üc2s ü1c1sö ü2des ü1de 1ü2dít ü1dí üd1íz ü2d1ör ü1dö üdös3s üdÅ‘1é2 ü1dÅ‘ üdÅ‘sza1ka2 üdÅ‘1s2z2 üdÅ‘1s1za 1ü2dül ü1dü üd2v1a2 üd2v1el üd1ve üd2v1e2s üd2vél üd1vé üd2vid üd1vi üd2v1í üd2vo 1üd1vö üd2vö2l üd2vÅ‘ üd2vu üd2vú ü1e üe2bé üe2ge üe2gé üe2le üe2l1é2 üe2me ü1é üé2ke üé2pí üf2f1ö2 üf8f üff1ö2 üff üfö3l1e2 ü1fö üf2ro üge1k2 ü1ge üge3l üg2ra ü2gy1a2 üg2y ü2gy1á ü2gyef ü1gye ü2gy1eff ügy1e2lemb ügye1le ügy1e2lemm ügy1elf ügy1elff ü2gy1ell ügy1elm ügy1e1lo ü2gy2é. ü1gyé ügy1é1jé ügy1ékb ügy1é1ré ü2gy1érr ü2gyés ü2gyiekb ü1gyi ügyi1e 2ügyieket ügyie1ke 2ügyiekk ü2gyiekn ü2gyiekr ü2gyiekt ü2gyi1é ü2gyih ü2gyik ü2gyil 1ü2gyin ügy1int ü2gyir ügy1i1ra ü3gyí 2ügyletec ügy1le ügyle1te 1ügy1nö ügy1os ü1gyo ü2gy1Å‘2 üh1af ü1ha üh1aff üh1at üh1ás ü1há ü2h1e2le ü1he ü2h1elf ü2h1elff ü2h1ellen ühel1le ü2h1e2lÅ‘ üh1elv ü2h1éh ü1hé ü2h1é2r. ü2h1in ü1hi ü2h1it üh1or ü1ho üh1Å‘s ü1hÅ‘ ü1i üi2gé üi2ko ü1í üí2rá ük1a2n ü1ka üka2p ük2kal ük1ka ük2ká ük1ke2 ükkel1 ük2ker ük1ko2 ük2kop ük1u2n ü1ku ül1ab ü1la ül1a2d ül1ag ül1aj ül1a2k ü2l1a2l ül1a2r ül1at ül1a1u ül1á2c ü1lá ül1á2g ül1ál ül1á2p ül1á2r ül1á2s ül1br ül1d2r ü2l1e1c1se ü1le ülec2s ül1e2d2z ü2l1e2g 2ülek ül1ell ü2l1e2lÅ‘1te üle1lÅ‘ ül1eng ül1enn ü2l1e2r ül1e2sÅ‘ üle1ta2 üle2tal üle2t1an üle2t1as üle2tav üle2t1á2 üle2t1eg üle1te üle2t1e2l üle2t1ék üle1té üle2t1é2r. üle2t1érn üle2t1é2r2Å‘. ületé1rÅ‘ üle2té1rü üle2t1é2v2e. ületé1ve üle2t1í üle1to2 ül2e2t1or üle2tos üle2t1ö2 ület1t2 ül1ett2e. ület1te ül1etted üle2t1u üle2tüz üle1tü ü2l1ex ü2l1é2g ü1lé ülé2k1a2 ülé2k1á2 ülé2k1e2l ülé1ke ülé2kev ülé2kir ülé1ki ülé2k1o ülé2ku ü2l1él ül1é2pü ü2l1é2r. ü2l1é2ré ül1é1ri ül1érj ül1érn ül1érs ü2l1é2rü ül1érv ü2l1érz ülé2sa2 ülé2so ülés3s ül2é2s3zá ülés2z ül1fr ü2l1i2d ü1li üli2g ü2l1i1ga ü2l1ill ü2l1im ü2l1int ül1i1ra ü2l1itt ü2l1iz ül1íg ü1lí ül1í2r ül1í2v ül2l1a2n ül1la ül2l1in ül1li ül2l1ö2vü ül1lö ül2l1u2 ül3lyu ül2l2y ülnö2k1öl ül1nö ülnö1kö ül1o2d ü1lo ül1o2l ül1om ül1op ül1or ül1ó2v ü1ló ü2l1öb ü1lö ü2l1ö2l ü2l1ö1mö ü2l1ör ü2l1ö2v ülÅ‘1e2 ü1lÅ‘ ülőé2l ülÅ‘1é ülÅ‘1sl ülÅ‘1s2p ülÅ‘1s1ta ülÅ‘t2 ül1p2l ül1p2r ül1sl ül1sp ül1st ül2t1ad ül1ta ültá2r ül1tá ül2t1e2v ül1te ül1t1ra ül1ud ü1lu ül1u2g ül1u2t ül1ús ü1lú ü2l1üg ü1lü ülü2l ül1ü2lé ül1ülh ül1ü1li ül1ülj ül1üln ül1ült ül1ülv ü2l1ür ü2l1üt ü2l1üv ü2lyel ül2y ü1lye üly1ess üly1es2z üm1a2l ü1ma üm1a2n üm1a2r üm1á2r ü1má üme3gi ü1me üm1éks ü1mé ü2m1ép ü2m1érd üm1f8l üm1fl üm1fr ümi2g ü1mi ü2m1i1ga ü2m1il ü2m1im ü2m1i2p ü2m1is ü2m1iz üm1kl üm1kr üm1o2l ü1mo üm1or üm1os ü2m1öss ü1mö üm1Å‘r ü1mÅ‘ üm1p2r üm1tr üm1új ü1mú ü2m1ü2l ü1mü ü2m1üv ü2m1üz ün1ál ü1ná ün1á2r ün1e2l ü1ne üne2t1elet üne1te ünete1le üne2tés üne1té ün1e1vé ü2n1é2p ü1né ün1id ü1ni ü2n1ing ü2n1irt 1ünnep ün1ne ün1ó2r ü1nó ü1o üo2k1i2 ü1ó üó2rá ü1ö ü1Å‘ üő2re üp2hé üp2ho üp2ri üp2ro ürdés1s ür1dé 1ü2reg ü1re üre2g1a üre2gá üreg1g 1ü2res üre2tö ü2röm ü1rö ür2t1a ür2t1á ür2t1e2 ür2tis ür1ti ür2t1o2 ürtok1 ür1tü2 ür2tül 1ü2rül ü1rü üs2s1a2 üs2s1á üs2s1eg üs1se üs2s1o2 üss1s üs1sü2 üs2s1ül üs2t1a2 üs2tá2 üst1ág üst1ál üst1ár üs2t1e2 üst1ég üs1té üs2t1ék üs2tél üs2t1é2r. üs2t1é1re üs2t1érm üs2t1il üs1ti üs2tim üst1ing üs2tir üs2t1is üs2tí üs2t1o2 üs2t1ó2 üs2t1ör üs1tö üs2t1ö2v üs2t1Å‘r üs1tÅ‘ üs2t1Å‘s üs2t1u2 üs2tú üs1tű2 üs2t1űz üsz1ál üs2z ü1s1zá ü1s1zi2 ü2sz1iv üsz1í2v ü1s1zí ü2s2z1önt ü1s1zö ü2szür ü1s1zü üt1ab ü1ta üt1aj 1ü2teg ü1te 1ü2te2m. üte2m1a2 ü2temb 1ü2te1me üte2m1el ü2teméb üte1mé üte2mért üte2min üte1mi üté1si2 ü1té üté2sik ütés3s üté2s3z ü1t2hi 1üt1kö ütÅ‘1s2p ü1tÅ‘ üt2t1á üt2t1é2 ütty1e2g üt2t2y üt5tye/ty=ty,2,3 üt2zi ü1u üu2ta ü1ú ü1ü ü1ű üve2g1a2 ü1ve üveg3g2 üvezé2r üve1zé 1ü2ze2m1a2 ü1ze üze2m1á üze2meg üze1me üze2m1ér1té üze1mé üze2m1étk 1ü2ze1mi üze2m1o ü2zemt üze2m1u2 ü2ze1mű üze2t1a üze2t1o üzé2ra ü1zé üzé2r1e2l üzé1re 1üzle2t. üz1le 1üzletn 2ű. ű1a űa2da űa2dó űa2g2y űa2ka űa2la űala2g1 űa2lo űa2na űa2n2y űa3nyagoc űa1nya űanya1go űa2or űa1o űa2pa űa2pá űa2ra űa2rá űa2to űa2ut űa1u űa2va űa2xi űa2zo ű1á űá2bé űá2ga űá2gá űá2g2y űá2hí űá2je űá2lo űá2po űá2ra űá2ri űá2ro űá2ru űá2sí űá2té űá2tí űba2l1 ű1ba űbé2rel ű1bé űbé1re űb2lo űb2ró űcsa1pá2 űc2s ű1c1sa űcsa2p1ág űcs1as ű2cs1ék ű1c1sé űcs1i2pa ű1c1si űd1ál ű1dá ű2d1e2l ű1de ű1d2rá űd2ro ű1d2ró űd1sk ű1e űe2c2s űe2ge űe2gé űe2g2y űe2ké1re űe1ké űe2la űe2le űe2lé űe2l1í2 űe2lÅ‘ űe2lü űe2me űe2pi űe2po űe2re űe2rÅ‘ űe2se űe2sé űe2sÅ‘ űe2te űe2ti űe2vé űe2vÅ‘ ű1é űé2le űé2lé űé2nekb űé1ne űé2ne1ke űéne2kest ű1é2nekes űé2ne1ké űé2nekr űé2pí űé2te űfa2j1e2 ű1fa űf2lo űf8l űflo űfl űfo2g1a2l ű1fo űfo1ga űf2ra űf2ri űf2ro ű2g1ö2lé ű1gö ű2g1ö2l2Å‘. űgö1lÅ‘ űg1Å‘s ű1gÅ‘ űgÅ‘2z űg2ra űg2rá űholda2d ű1ho űhol1da űhol2d1a1da ű1i űi2do űi2ga űi2gé űi2má űi2mi űi2pa űi2rá űi2ro űi2s2z űi2ta űi2zé űi2zo ű1í űí2rá űí2ri űí2ró űí2té űí2ve űí2zü űí2zű űki1a2 ű1ki űk2la űk2li űk2lí űk2lo űk2rep űk1re ű1k2ré ű1k2ri ű1k2ro ű1k2ró űk2va űme2g1 ű1me űn1al ű1na űn1ar űn1ál ű1ná űn1á2r űn1e2le ű1ne űn1elh űn1e2li űn1elk űn1e2lÅ‘ űn1elr űn1elt űn1eml űn1e2se űn1est űne1t2 ű2n1é2r. ű1né ű2n1ér1te űni2g ű1ni ű2n1i1ga ű2n1in ű2n1i2p ű2n1i2r ű2n1is űn1me2 űn3n2y űn1o2k ű1no űn1ol űn1os űn1ó2r ű1nó űn1pr űn1s2k űn1s2t űn1u2n ű1nu űn1u2t ű2n1üs ű1nü ű2n1üz űn1űz ű1nű ű1o űo2dú űo2ká űo2ko űo2la űo2rá űo2ro ű1ó űó2ce űó2ra űó2rá űó2ri ű1ö űö2lÅ‘ űö2rö űö2ve űö2zö ű1Å‘ űő2rö űp2la űp2lü űp2ne űp2ré űp2ri űp2rí űp2ro űp2ró űr1ad ű1ra űr1a2l űr1a2m űr1a2n űr1a1u űr1a2v űr1áb ű1rá űr1ál űr1ás űr1áz űr1eg2y ű1re űr1e2l űre2n ű2r1e2r űr1ex ű2r1é2j ű1ré űr1é2l űr1ép űrés3szer űrés2s2z2 űrés1s1ze űré2s1za űrés2z űr2é2s1zá űré2s1zí űré2s1zo űr1f8l űr1fl űr1id ű1ri űri2g űr1i1ga ű2r1i2m űr1int űr1i2p űr1ist ű2r1ír ű1rí űr1o2d ű1ro ű2r1ol űr1o2p űr1or űros2t1a2 űr1ot űr1ón ű1ró ű2r1ö2l ű1rö űr1ör űrÅ‘1f2 ű1rÅ‘ űrÅ‘1ff űr1pl űr1pr űr1p2s űr1s2p űr1s2t űrszt2 űrs2z űr1t1ra űr1uj ű1ru űr1un űr1u2t űr1út ű1rú űr1üg ű1rü űr1üz ű2s1aj1tó ű1sa űs1ál ű1sá űsé2g1el ű1sé űsé1ge ű2s1í2n. ű1sí ű2s1í2r ű1s2ka ű1s2ká űso2rad ű1so űso1ra űso2raj űso2ral űso2ran űso2rál űso1rá űso2ros2z űso1ro űsor1s űsort2 űs2pe űs2pi űs2po űsp2r űs2rá űs3s2z ű1s2ta ű1s2tí ű1s2to űst2r űs1t1ro ű2s1uj ű1su ű2s1ü2t ű1sü űsze2r1á űs2z ű1s1ze űsze2r1e2le ű3szerel űsze1re űszere2p űsze2r1e1pé űsze2r1ült űsze1rü űsz2k űsz2t űtés3s ű1té űtÅ‘1a2 ű1tÅ‘ űtÅ‘1e2 ű1t2ra ű1t2rá1gá űt1rá ű1t2re űt2ri ű1t2ro ű1u űu2ga űu2ra űu2s2z űu2ta űu2tá űu2tu ű1ú űú2ri űú2s2z űú2ti űú2to ű1ü űü2g2y űü2lé űü2rí űü2te űü2té űü2tö űü2ve űü2vö űü2ze ű1ű űű2zÅ‘ űvé2s1z1a ű1vé űvés2z űv2é2s1z1á űvé2sz1e2l űvé1s1ze űvé2szer űvé2szint űvé1s1zi űvé2s1zo űvé2s1z1ó2 űv2é2s1zö űvé2s1zú2 űví2z1 ű1ví űví1ze2 ű2z1a2b ű1za űz1a2d űz1a2g űz1ak űz1a2l űza1l1e űz1a2p űz1a2r űz1a2s űz1a2t űz1a2u űz1á2g ű1zá ű2z1ál ű2z1árb ű2z1árj űz1átl űz1á1tu ű2z1ed ű1ze ű2z1ef ű2z1eff ű2z1e2l ű2z1em ű2z1e2r űze2s ű2z1e1se ű2z1e1sé ű2z1est ű2z1es2z űze2teg űze1te űze2tel ű2z1e2v ű2z1ég ű1zé ű2z1é2l ű2z1érm ű2z1ér1té ű2z1érz ű2z1és2z űz1fr űz1gl űz1gr űzi2g ű1zi ű2z1i1ga űzigaz1 ű2z1i1gé ű2z1i2m ű2z1i2r űz1isk űz1ism űz1ist2 űz1i2s2z ű2z1iz űz1ín ű1zí űz1ír űz1í2v űz1kl űz1kr űz1o2k ű1zo űz1o2l ű3zom űz1on űz1op űz1or űz1os ű2z1óc ű1zó ű2z1ó2r ű2z1ö2kö ű1zö űzöl2d1el űzöl1de ű2z1ö2v ű2z1öz űzÅ‘1a2 ű1zÅ‘ űzÅ‘1e2 ű2z1Å‘2r. űz1Å‘2re1i űzÅ‘1re ű2z1Å‘2ri ű2z1Å‘rk ű2z1Å‘rm ű2z1Å‘rn ű2z1Å‘2rö ű2z1Å‘rr ű2z1Å‘rs ű2z1Å‘rt ű2z1Å‘rz űz1p2r ű1z3sa űz2s ű2zsám ű1z1sá ű2z3sár ű2z3sáv ű2z3ser ű1z1se ű2z3sé ű2z3só ű2z3sö űz3s2p ű2z3su1ga ű1z1su ű1z3sü ű2z3sű űz3s2z űz1t2r ű2z1ug ű1zu űz1úr ű1zú űz1út ű2z1ü2g ű1zü ű2z1ül ű2z1ünn ű2z1üt űz3z2s 2v. 1va vaa2d va1a vaát1 va1á vaá2ta2 2v1abl va1b1ra v1abs vacs1a1la v2acsal vac2s va1c1sa va2cs1an va2csap va2csál va1c1sá va2c1s1ü2 vacs3z 2v1a2dag va1da va2d1aj v1a2da1lé 2v1adap va2d1as2z v1a2da1ta v1a2datb v1a2dat1k2 v1a2da1to v1a2datr va2daz va2d1ál va1dá va2de2g va1de va2d1e2l va2dep va2d1e2r va2d1e2t va2dél va1dé vad1é2te va2dib va1di v2a2d1id va2d1ir va2d1i2t va2d1ír va1dí v2a2d1ol va1do 2vadom va2dóh va1dó va2dó1i v1a2dój va2dór v1a2dó1u va2d1ör va1dö va2d1Å‘2 va2d1ú va2dű va2d1za vad2z va2d1zá va2d1ze vaé2r va1é va2g1as va1ga va2gav va2gás va1gá va2g1e2 va2g1é2n va1gé vag1g va2gid va1gi va1g1le va2g1o2ku va1go va2go1li vag1ost va2g1os2z va2g1u1ra va1gu va2gú 2v1a2gyú vag2y va2j1ar va1ja va2j1á2c va1já va2j1á2ro v2ajár va2j1e2g va1je va2jí va2j1ol va1jo va2j1ó2s va1jó va2jö va2jü 2va2kad va1ka vak1a2dá va2k1aj vak1akn vak1a1pá v2akap vak1árn va1ká va2k1ás va2k1át va2keg va1ke va2kem va2k1ér1té va1ké v2a2kis va1ki va2k1ír va1kí va2k1ó2s va1kó v2a1k1rí vak1t2 2vak1ti 2v1ak1tu 2vakup va1ku va2k1út va1kú va2lac va1la v1a2la1ku va2la2p. va2la1pí va2la1pú vallás1s val1lá 2v1amp 2v1a2nal va1na va2n2e. va1ne va2n1e2g v2ane2m van1e1me va2n1es vané2v va1né van1é1ve van1é1vi 2vang van3n va2nol va1no va2nó van1s2 va1n2y. van2y 2v1a2nyá 2v1a2nyó va1p2l va2pos va1po va1p2r 2v1a2pu va2r1ab va1ra vara2c var1a1cé v2a2r1a2d var1ajt v2araj var1akt v2arak va2r1al va2ran2y var1a2nya va2r1a2p va2r1a2r va2r1as2s2z va2r1at va2r1av va2rág va1rá va2r1ál 2v1a2rán2y va2r1ászn varás2z var1á1ta va2r1átf va2r1átff va2r1átm va2r1á2to va2r1á2zá var1ca2 var2cag var2cal var2ca2n varc1c var2c3ho varc2h va2r1es va1re va2r1e2t va2rev va2rég va1ré var1é2k. var1éks va2r1é2l va2ré1p va2r1é1ré va2rid va1ri va2r1i2ko va2r1ikr va2r1ill va2rim var1inf var1inff var1ink2 va2r1inv v2a2r1i2p var1isk var1ism va2rí var2k1an var1ka var1k2b var1k2j var1k2ká var1kl va2r1okm va1ro var1old va2rop va2ror va2rön va1rö va2rÅ‘ vars2 vars2z2 var2t1i2n var1ti var2tor var1to var1tó2 var2t1ór va2r1ut va1ru va2r1út va1rú va2r1ü2 va2rű va1ry v2as1abl va1sa va2sag2 v2a2s1aj va2s1arc v2asar vas1as2z va2s1ábr va1sá va2s1ál va2s1árl va2se2k va1se va2s1e2l va2sem va2s1e2r va2se2t va2s1é2k. va1sé vas1ékk va2s1ékn vas1ékt v2asé2r va2s1é1re va2s1ér1té va2s1érv vasfélé2v vas1fé vasfé1lé va2sid va1si va2s1i2n2a. vasi1na va2s1ing va2s1i2s va2s1iz vas1ors v2asor va1so va2s1ön va1sö va2sÅ‘ vas3s1ze vas2s2z vas3s1zi vas3s1zÅ‘ vast2 vas1t1ró v2astr va2sus va1su va2s1ü2t va1sü va2sű v2asz1e2l vas2z va1s1ze va2szis va1s1zi va2t1a2d va1ta va2t1aj va2ta1u v2a2t1ál va1tá va2t1á2ru v2atár va2t1e2v va1te va2t1ék va1té v2a2tél va2t1ér1te v2atér va2t1é2te v2atét va2t1id va1ti va2tim vat1inf v2atin vat1inff vat1ing va2t1i2s v2a2t1ír va1tí vat1mo1 vatmos2z2 va2t1okm va1to va2t1old va2t1ö2v va1tö va1tÅ‘2 va2t1Å‘r vatt2 2vatta1ko vat1ta v2a2t1ur va1tu va2u2d va1u 2v1a2uk vau2n vaza2t1e va1za 2v1a2zon va1zo 1vá váb2baj váb1ba váb2b1as váb2b1e2 váb2b1é váb2bil váb1bi váb2bol váb1bo váb2bos váb2bÅ‘ váb2bu 2vábr vá2c3h vá2cs1a2p vác2s vá1c1sa vá2c1se vá2cs1é2k vá1c1sé vá2csi2p vá1c1si vá2cs1is vá2c1sÅ‘ vá2c1sú vá2c1sü vács3z vá2d1al vá1da vá2d1a2n vá1de2 vá2des vá1dé2 vá2dén vá2dik vá1di vá2d1ir vá2d1or vá1do vá2dö vá2dü 2v1á2gaz vá1ga 2v1ágr vá2gú vá2gyal vág2y vá1gya vá2gyan vá2gyö vá2gyÅ‘ vá2k1e vá2k1ü vá2laj vá1la v2á2l1a2l vála2n vá2l1an2y vá2l1ap vá2lar vál2a2szin válas2z vála1s1zi vá2l1á2r vá1lá vá2l1át vá2l1e2 vá2lél vá1lé vá2li2d vá1li vá2lin vá2lir vá2l1ism 2v1állás vál1lá vál2l1e2 2v1állom vál1lo 2v1ál1ló vál2l1ö2 vá2lú vá2lü vá1ma2 vá2m1ad vá2m1aj vá2m1ak vá2m1al vá2m1as vá2ma1u vá2m1á2 vám1b2 vá2m1e2 vá2m1é2r. vá1mé vá2m1ér1té vá2mil vá1mi vá2m1in vá2m1ir vá2mis vá2mí vá2m1or vá1mo vá2mö vá2mÅ‘ vá1mu2 vá2m1ut vá2mü vá2naj vá1na vána2n ván1an2y vá2n1e vá2nis vá1ni váns3s vá2n1ú vá2nü ványa2d ván2y vá1nya vá2nyaj vá2ny1a2l ványa2n vá2n2yan2y vá2ny1ap vá2nyar vá2ny1as vá2nya1u vá2nyaz vá2ny1e2 vá2ny1é2r. vá1nyé vá2nyér1d2 vá2nyérr vá2nyérv vá2nyérz vá2ny1ing vá1nyi vá2nyis vány1í2r vá1nyí vá2ny1ó2 vá2nyö vá2po vá2r1a2da1to vá1ra vára1da vá2ra1dá vá2r1a2dó vá2r1a2du vára2l vá2r1a1la vár1a1le vá2raml vára2n vá2r1an2y vá2r1ar vá2r1as2s2z vá2r1a2s2z vá2rá2g vá1rá vá2r1ál várd2 vá2r1e2 vár1isk vá1ri vár1ism vár1ist vá2rí vár1old vá1ro vá2r1oml vá2r1ont váro2s2z vár1oszt vá2r1ó2né vá1ró vá2rö vá2rÅ‘ várs2 vár1sp vár1sr vár2t1e2s vár1te vár2t1é2r. vár1té 2v1á2r2u. vá1ru vá2ruh vá2r1u2r vár1us2z v1á2rus vá2r1ut vá1rú2 vá2rús vá2rü vá1ry vá2s1a2d vá1sa vá2sam vá2saz vásá2r1a2d vá1sá vásá1ra vá2s1e vási2k vá1si vás1i1ko vá2sis vá2sí2r vá1sí váskés2z1 vás1ké vá1só2 vást2 vás1tr vá2s1ü vá2sű vá2sza2n vás2z vá1s1za vá2s3zav vá2s1z1e vá2szin vá1s1zi vá1ta2 vá2t1al 2v1átd 2v1á2t1e2r vá1te 2v1át1fe vá2t1ir vá1ti 2v1á2tí v1át1lé 2v1átm 2v1á2t1ö 2v1átp 2v1á2tü 2v1átv vá2z1alj vá1za vá2z1alt vá2z1a2tom váza1to vá2z1a2v vá2z1e2 vázi1s2 vá1zi vá2zi2z vá2zí vá2zos vá1zo vá2zö vá2zÅ‘ vá2z3sa váz2s vá2z3sá vá2z3se vá2z3sé vá2z3sö vá2z3su váz3s2z vá2zü vba1ra2 v1ba vb2lo vb2ra vcsőé2ne vc2s v1c1sÅ‘ vcsÅ‘1é vd2rá vea2g ve1a vea2l vea2n vea2r ve2a1u veá2l ve1á 2ve1ce ve2cet ve1cl ve2cseg vec2s ve1c1se 2v1e2dén2y ve1dé ve2gab ve1ga ve2gac ve2gar ve2g1as vega2z ve2g1á2 ve2g1eg ve1ge ve2g1e2kéh vege1ké ve2g1ell vege2lÅ‘1ké vege1lÅ‘ ve2g1elr ve2g1e2r ve2g1esem vege1se ve2g1es2z ve2g1e2tet vege1te ve2g1ék ve1gé ve2g1él ve2g1ép ve2g1é1ré ve2g1ér1te ve2g1érv vegés3s ve2gé2s2z vegg2 veg1gr ve2gid ve1gi ve2gik ve2gim ve2gí ve2gol ve1go ve2gor ve2g1os ve2g1ó2 ve2g1ö2 ve2g1u ve2gú ve2gyemb veg2y ve1gye ve2gyez 2v1egyl 2vegyv ve2k1ak ve1ka 2v1e2k2e. ve1ke 2v1e2ke1i 2vekéb ve1ké ve2ké1bÅ‘ 2v1e2kék 2v1e2kés ve1k1lu 2ve1la 2v1e2lef ve1le 2v1e2l1eff 2v1e2lemz vele2t1e2l vele1te 2v1e2lég ve1lé velés3s 2v1elf 2v1elff v1elg2y 2v1el1ha 2v1elhel vel1he ve2lis ve1li 2v1e2l1í2 v1el1já 2v1elm ve2l1os ve1lo 2v1e2lÅ‘i2rá ve1lÅ‘ velÅ‘1i 2v1e2lÅ‘1í 2velÅ‘kés velÅ‘1ké 2v1elÅ‘leg velÅ‘1le velÅ‘vá1ro2 velÅ‘1vá 2v1elr 2v1el1sa 2v1el1s1zá vels2z 2v1el1s1zo 2v1el1tá 2v1elter vel1te 2v1eltér vel1té 2v1el1to 2v1el2v. 2v1el1vá 2v1elvek vel1ve ve2lyö vel2y ve2lyu 2v1elz 2v1em1bó 2v1e2mel ve1me 2v1eml 2v1e2mu ve2n1ad ve1na ve2na1u ve2n1á ve2n1e2g ve1ne ve2n1e2l ve2n1es2z v2enes ve2n1é2vi ve1né ven1f2 ven1ff ven1g2 ven3k2 ve2n1o ve2n1ó2 ve2nö ven1tü2 ven2t1ül ven1ü1lé ve1nü ve2nyö ven2y 2v1enz veó2r ve1ó ve2pe ve1p2r ve2rab ve1ra ve2r1a2c ve2r1a2d ve2r1a2g ve2ra1já vera2l vera2n ve2r1a2r ve2r1a1u ve2raz ve2r1ág ve1rá ve2r1ál 2v1er1dÅ‘ ver1eg2y ve1re ve2r1e2h ve2r1e2k2e. vere1ke ve2rekl ve2r1e2l ve2r1eng ve2r1er ve2r1e2sÅ‘ ve2r1es2z ve2r1é2l ve1ré ver1g2 ve2r1i2ga ve1ri ve2r1ill ve2rim ve2r1inc ve2rind ve2r1inf ve2r1inff ve2r1ing ver1in1te verint2 ver1i1pa ve2ris ve2r1ol ve1ro ve2rop ve2ror ve2ró ver1ó2r ve2rö ver1p2 ver2s1al ver1sa ver2sár ver1sá versé2g ver1sé ver2s1é1gé ver2s1ég3g ver2s1égn ver2s1égt ver2sir ver1si ver2s1í2 ver2só vers3s ver2s1üt ver1sü vers3zár vers2z ver1s1zá vers3zen ver1s1ze ver1t1ra ve2rur ve1ru ve2r1ut ve2rút ve1rú ve2r1ü2g ve1rü ves1alj ve1sa ve2sa2n ve2sas ve2s1ál ve1sá ve2s1e2ké1tÅ‘ ve1se vese1ké veset2 2v1e2sett ve2sip ve1si ve2sis ve2s1íz ve1sí ve1s1ká 2v1e2sÅ‘ ve1s2pe ves3s1za ves3szer vest2 ve2s1u2 ve1sy 2v1e2sz2e. ves2z ve1s1ze 2v1e2szekn 2v1eszm 2v1e2s1zű veta2l ve1ta ve2tas ve2tál ve1tá ve2t1á2r vet1eg2y ve1te ve2t1e2lÅ‘l vete1lÅ‘ ve2tég ve1té ve2t1é2k ve2ti2d ve1ti 2v1e2ti1ka v1e2tim ve2t1ing ve2t1ol ve1to ve2t1ö2l ve1tö ve2töv vetÅ‘1é2 ve1tÅ‘ ve2tur ve1tu ve2t1ut ve2t1ű2z ve1tű ve2vet ve1ve 2v1e2vo vezÅ‘e2r ve1zÅ‘ vezÅ‘1e vezÅ‘kés2z1 vezÅ‘1ké vezÅ‘2sorr vezÅ‘1so vezÅ‘s1s 2v1ezr 1vé véá2g vé1á 2v1ébr vé2dak vé1da véda2l vé2d1as vé2dá vé2d1emb vé1de vé2dos vé1do vé2dóv vé1dó vé2dö vé2dú vé2d2z vé1f2r vé1ga2 vé2gab vé2gak vé2gal vé2g1á2 vé2g1eg vé1ge vé2g1e2le vé2g1elg vé2g1elh vé2g1e1li vé2g1ell vé2g1els vé2g1elv vég2em vége2n vé2g1en2y vé2g1e1p vé2g1er vé2g1esem vége1se vé2g1e2se1te vé2ge1té vé2ge1tÅ‘ vé2g1é2r. vé1gé vé2g1é2re2n végé1re vé2g1é2ré vé2g1érr vég1érv vég3g 2v1ég1hü vé2g1id vé1gi vé2g1igaz1 végi2g végi1ga vé2gim vé2giz vé2g1í végkötés1 vég1kö végkö1té vé2gol vé1go vé2g1ó2 vé2gö vé2gú 2v1é2h. 2v1é2h2e. vé1he 2v1é2hen 2v1é2hes 2v1éhs vé2ke1i vé1ke vé2kít vé1kí vé1k2l vé1k2ré vé1k2ri 2v1éks vé2kük vé1kü vé2l1a2 vé2láb vé1lá vé2lá2l vé2l1ár vé2leg vé1le vél1ell vél1els vél1elt vé2l1emb vé2l1e1me vé2l1e2r vé2les vél1ess vél1est vé2lev vé2lez vé2l1é2k vé1lé vél1hó2 vé2lin vé1li vé2lir vé2lí vé2los vé1lo vé2lÅ‘1i vé1lÅ‘ vé2lÅ‘s véltá2v vél1tá vé2l1u vé2lú vé2lű véna1p vé1na 2v1é2nekl vé1ne vé2n1emb vé2ny1eg vén2y vé1nye vénye2l vény1e1le vény1els vé2nyid vé1nyi vé2nyis vé2ny1í vé2nyú vényü2l vé1nyü vé2ny1ü1lé vé2ny1ült 2v1é2pí vé1p2l vé1p2r 2v1é2pü vé2ral vé1ra vé2r1a2n vé2rap vé2rar vé2raz vé2r1ár vé1rá vé2rát vér1d2 vé2r1e2l vé1re vé2r1eml véres3s vér1e1ti vé2rés vé1ré vér1és2z vér1é1te vér1ikr vé1ri vé2rir vé2ri2z vé2r1o2k vé1ro vé2rot vé2róv vé1ró vér1s vértes1s vér1te vér2t1ó2n. vér1tó vér2töv vér1tö vé1ru2 vé2rug vé2rut vé2r1ú vérü2kü vé1rü 2v1érze2t. vér1ze vé2sak vé1sa vé2sal vé2seg vé1se vése2l vés1e1le vés1elt vé2s1er vé2só vé1s2pe vés3szer vés2s2z2 vés1s1ze vés2táb vés1tá vé2s1ü2v vé1sü vés3zav vés2z vé1s1za vész1á2r v2é1s1zá vé2szeg vé1s1ze vész1ell vé2sz1ékn vé1s1zé vé2s1z1Å‘2 vész3s vé2s1zu vé1s1zú2 vész1úr vészü2l vé1s1zü vész1ü1lé vét1est vé1te 2v1é2v. vé3va 2v1évb 2v1é2ve1i vé1ve 2v1é2vek 2v1é2ven 2v1é2vé1é 1vé1vé 2v1é2vér vé2v2i. vé1vi 2v1évr 2v1évt 2v1é2vü vfe2l1em v1fe vfe1le vf2ra vf2re vf2ri vf2ro vge2o v1ge vg2ra vg2rá vhan1g2a3 v1ha v3hang vhez1 v1he vi2a1a vi1a vi2ab vi2ac vi2a1é vi2ag via2p via2szal vias2z via1s1za via2sz1ál via1s1zá via2sz1árn via2sz1em via1s1ze via1s1zé2 via2szél via2s1zö viá1ra2 vi1á viá2r1ad vic2c1a vic2c2h 2vic1ké vi2csag vic2s vi1c1sa vi2csal vi2cs1an vi2cs1as vi2csál vi1c1sá vi2cs1e2l vi1c1se vi2cs1é2r. vi1c1sé vi2csér1té vi1c1si2 vi2csim vi2csip vi2c1s1ö2 vi2c1sú vics3z vi2deg vi1de vi2d1es2z 2v1i2déz vi1dé 2v1i2dÅ‘ vi2d2z vi2ew vi1e vi2ez 2v1i2gaz vi1ga 2v1i2gén vi1gé vi1g2no2n. vig1no vi1ka2 vi2k1ag vi2k1el vi1ke vi2kon vi1ko vi2l1ék vi1lé villa1s vil1la villas2z2 vil2l2e. vil1le 2v1il1lu vi2má 2v1imm vina1t2 vi1na 2vind vi2n1emb vi1ne vi2n1ó vin2tess vin1te vin2tes2z 2vin1té vin2tos vin1to 2v1i2on vi1o 2vi1pa vi1p2s 2v1i2ra2t. vi1ra 2v1i2ratot vira1to 2v1i2rato2z. 2v1i2rod vi1ro vi1sa2 vi2sal vi2s1a1u vi2s1á2g vi1sá vi2ser vi1se vi2s1ék vi1sé vi2sim vi1si vi2s1is vi2siz vi2sö vi2szár vis2z vi1s1zá vi2szok vi1s1zo vi1t2a vi3ta1d2 vitakés2z1 vit2akés vita1ké 2vital vite1lÅ‘2 vi1te 2vitn vi2t1ú vi2zeg vi1ze vi2z1ell vi2z1é2l vi1zé vi2zin vi1zi vi2zis vi2zok vi1zo vi2zol vi2zom vi2z1os vi2z1sá viz2s viz3s2z vi2zud vi1zu vi2zú 1ví ví1di2 ví2ge ví2n2y ví2nyenc1 ví1nye 2v1í2ra 2v1í1rá ví2rá2s. 2v1í2ró 2vítéle2t. v1í2tél ví1té víté1le v2í3téletb 2vítéle1te 2v1ívb vívókés2z1 ví1vó vív2ókés vívó1ké ví2z1a2 ví2zá ví2zel ví1ze víz1e2le víz1elf víz1elff víz1elh víz1ell víz1eln víz1e2lÅ‘ víz1elp víz1els víz1elt víz1elv víze2m víz1emb víz1e1me ví2z1e1mé ví2zék ví1zé ví2zés ví2z1ing ví1zi vízi1sk ví2z1ist2 ví2z1is2z ví2zí ví2z1o ví2z1ó2 ví2zö ví2z1Å‘2 ví2z3s2 ví2zú ví1zü2 2v1í2zű víz3z vjára2t1út v1já vjá1ra vjára1tú vje2gya v1je vjeg2y vje2tel vje1te vje2tu vkia2l v1ki vki1a vki1á2 vk2li vk2ló vk2lu vk2ri vk2rí vk2ró vla2te v1la vle1í2 v1le vle1ü2 vme2g1 v1me vna2p1in v1na vna1pi 1vo vo2il vo1i vo2is vo2kí 2v1okm voks3s 2v1ok1ta vola1t vo1la 2v1ol1dá 2v1old2ó. vol1dó vol2t1a2d vol1ta vo1me2 vomec3 vona2l1e2 vo1na vona2t1e vonás1s vo1ná voná2s3z vo2od vo1o vo2pe vo2r1a2 vo2r1in vo1ri 2v1orm vo2s1as vo1sa vo2s1av vo2s1e vos3s2 vo2s1ú vo2sü vo2uc vo1u vo2ur vo2vá vo2xi vo1ya vo1ye vo1řá 1vó vóa2k vó1a vóá2g vó1á vóá2r vócsa2p1á2 v2ó1c1sa vóc2s vó1d2re vó1f2r vó1k2l 2v1ónn v2ó2nor vó1no vóó2r vó1ó vó1p2l vó1p2r vó2ran vó1ra vó2rák vó1rá vó2rán vó2rát vó2s1akk vó1sa vó2s1a2l vó2seg vó1se vó2s1iv vó1si vó2sol vó1so vó2s1orr v2ósor vó2só vó2sö vó2sÅ‘ vó1s1pi vós3s v2ós1t2r vó1s2z2 vósza2k1 v2ó1s1za vó2s3zár v2ó1s1zá v2ó2s3zen vó1s1ze v2óta1t2 vó1ta vó1t2r vóváro1s1u vó1vá vóvá1ro 1vö vö2bö vö2dém vö1dé 2v1ö2ko völ2gya völg2y 2v1ö2rök vö1rö 2v1ötl vöt2tá vö2ve vö2vé 2v1özön vö1zö vözÅ‘1e3 vö1zÅ‘ vö2z2s 1vÅ‘ vÅ‘a2n vÅ‘1a vőá2g vÅ‘1á vÅ‘e2l vÅ‘1e vÅ‘e2r vőé2j vÅ‘1é vőé2n vÅ‘1f8l vÅ‘1fl vÅ‘1f2r vÅ‘i3de1jű vÅ‘1i vÅ‘1i2dej vÅ‘i1de vÅ‘1kl vÅ‘o2l vÅ‘1o vÅ‘1pl vÅ‘1pr v1Å‘rm v1Å‘2rü vÅ‘1s2p vÅ‘1s1ta vÅ‘1st2r vÅ‘1t2r vőü2l vÅ‘1ü vÅ‘2zi vp2la vp2ra vp2re vp2ré vp2ri vp2ro vp2ró vp2s2z vs2ká vs2ki vs2ko vs2lá vs2pe vs2ta vs2ti vs2tí vs2to vst2r vs2tú vsz2p vs2z v1sz2t vta2n1á2s v1ta vta1ná vta2n1á2to vt2anát vta2n1ó2 vtá2raj v1tá vtá1ra vtá2r1ass vtá2ris vtá1ri vtá1ró2 vtá2r1ór vtelés1s v1te vte1lé vt2ra vt2ré vt2ri vt2ro 1vu vu2bo vu2mal vu1ma vu2man vu2m1e2 vu2mis vu1mi vu2mö 2v1u2ni vu2ra vu2ru 2v1u2tak vu1ta 2v1u2tas 2v1u2tat vu2tá v1utc v1u2tó 1vú vú1fr v1újd v1ú2jí v1újs vú2r1ad vú1ra vú2re vú1ré2 vú2rén vú2rö vú2s1zó vús2z v1útn 1vü vü2g2y vü2kü vü2lá 2v1üld 2v1ünn vü1pr vü2rí vü1st vü1s2z2 vü2te vü2té vü2zé 1vű 2v1űrl vű2zÅ‘ vvágy1ób v1vá vvág2y vvá1gyó vverés3s v1ve vve1ré vzá2r1ó2ra v1zá v3zárór vzá1ró 2w. 1wa wa2al wa1a wa2i1i wa1i wa2in wa2le2s. w2ales wa1le wa2le1se wa2le1sé wa2lesn wa2lesr wa2lest wal1t2 war2d1i wa2re wa1s2h wa1th wa1ye wa1yé 1wá 1we we2b1a2 we2b1á2 we2b1e1le we1be we2b1é we2bir we1bi we2b1o web1s we2b1ú we2bü we2ed we1e we2en we2id we1i we2ig we2in we2is we2it we2iz w1e2le wel2le we2ör we1ö 1wé whi2t w1hi 1wi wi2c2h 2wic2h. wi2c2z wi2de wi2en wi1e wi2es wil2d 1wí 1wo wo2od wo1o wo2og wor2c 1wó 1wö wör1t2 1wÅ‘ ws1to2 1wu 1wú 1wü 1wű wyo2m1 2x. 1xa x1a2da xa2dá xa2em xa1e xaé2d xa1é xa1f8l xa1fl xa1k2l 2x1akt 2x1a2la 2x1alg 2x1alj 2x1alk xa2na xand2re x1a2n2y x1a2rá xa2ri xa2vi 1xá 2x1ábr xá2g2y xá2le 2x1áll xá2rak xá1ra 2x1á2ram xá2ras 2x1á2ro 2x1árr 2x1á2ru 2x1átj 2x1átr 2x1átv xba2l1 x1ba xb2la xb2lo xb2ra xb2ri xd2ró 1xe x1e2g2y 2x1e2k2e. xe1ke xe2l1a xe2l1á 2x1e2lekt xe1le xe2lel xe2l1emb 2x1e2lemr xe2l1es2z xe2l1in xe1li xe2l1o 2x1emel xe1me 2x1eml x1enb x1enp 2x1e2rÅ‘ 2x1e2sé 2x1e2zü 1xé 2x1éhs xé2n1a xé2pí 2x1é2r. 2x1ér1te 2x1ér1té 2x1ér1tÅ‘ 2x1érz 2x1é2ve1i xé1ve xf2re xha2u x1ha 1xi xia2n xi1a xi2av xi2d1a2l xi1da 2xi1dá xi2dás 2xi2de 2xi1dé 2xidg 2xi2d1i2 2xidj 2xidl 2xidm 2xidokk xi1do xi2dol xi2dö 2xi2dÅ‘ xi2d1Å‘z xi1d2ro 2xid1ró 2xids 2xidt 2xi1du 2xidv 2xi2d2z xi2el xi1e 2x1i2ga xig2én1n xi1gé 2xilc 2x1ill xi1na2 xi2n1an 2x1ind xi1ne2 xi2n1et xi2n1i2 xi2nö xi2on xi1o xi2óc xi1ó xi2ó1e xi2óg xi2ó1mé xi2ó1o xi2ó1ö xi2óp xió2rá 2x1i2rá 2x1i2ro xi2sad xi1sa xi2sal xi1se2 xi2s1el xi2s1es xi1s2ká xis1p xis3s xi2s1ü xi2t1e2g xi1te x2i2t1e2r xi2t1é xi2t1i2 xi2t1ü2 1xí xí2ja xí2já xí2jo xí2ju x1í2rá xí2ró 2x1ívn 2x1í2vü 2x1ívv 1xo 2x1old xo2n1a1i xo1na xo2n1al xo2n1e xo2pe xo1p2l 1xó xóni1u2 xó1ni 1xö xö2dé xö2rö xö2zö 1xÅ‘ xÅ‘2sé xp2la xpor2t1a2 x1po xpor2t1á2r xpor1tá xpor2t1e2 xpor2t1érd xpor1té xpor2t1ü2 xp2ri x1p2ro x1p2ró xs2ká xs2pe xs2ta xst2r x2t1e2d x1te xti2la x1ti xti2lá xti2le2g xti1le xti2lin xti1li xti2lis xti2l1o xt1ört x1tö 1xu xu2sad xu1sa xu2sal xu2s1a2n xu2s1e xu2s1ér1té xu1sé xu1si2 xu2sil xu2sim xu2sin xu2sit xu2s1ol xu1so xu2s1ó2 xu2s1ö2 xus3s xust2 xus1tr xu2su2s xu1su xu1sú2 xu2s1út xu2sü xu2s1ű xu2s3z xu2ta 1xú 1xü xü2lé xü2ve xü2ze 1xű 2y. yaa2d ya1a y1ab1la y1a2bon ya1bo y1ab1ra y2a1b1ri y1abs ya2cé2l. ya1cé ya2da1ko ya1da y1a2da1lé y1adap y1a2da1ta y1a2datb ya2da1ti y1a2da1to y1a2da1tu yadé2ki ya1dé ya2d1é2s ya2dév y1ad1mi y1a2dóan ya1dó yadó1a y1a2dó1bó ya2dó1é y1a2dó1i y1a2dój y1a2dó1ké y1a2dókt y1a2dóm y1a2dó1ná y1a2dór y1a2dós y1a2dó1u yae2n ya1e yae2r ya2e1ro yae2t yaé2r ya1é y1af8f y1aff ya1f2r ya2g1a2d ya1ga ya2g1ag ya2g1am ya2gan y1aganc ya2g1a2s ya2g1atl ya2g1a1to ya2ga1u y2aga2z yag1a1zo ya2g1áll ya1gá ya2g1á2rá ya2g1árb ya2g1á2ré ya2g1árh ya2g1á2ri ya2g1árj ya2g1árk ya2g1á2ro yag1árr2a. ya2gárr yagár1ra ya2g1ár1s2 ya2g1árt ya2gás yag1á1t1a2 ya2g1átf ya2g1átff ya2g1átl ya2g1átr yag1d2 ya2gec ya1ge ya2g1e2l ya2g1e2s ya2g1é2g ya1gé ya2gék y1aggr yag5gyú yag2g2y ya2gid ya1gi ya2gim ya2g1i1o yag1i2s2z ya2giz ya2gí ya2g1os2z ya1go ya2g1ó2r ya1gó ya2gÅ‘ yag1s ya2gur ya1gu ya2g1ut y1ag2y. yag2y y1a2gyat ya1gya y1agyb y1agyf y1agyff y1agyk y1a2gyon ya1gyo y1agyr ya2i1ö ya1i y1a2jak ya1ja y1a2ján ya1já y1ajk y1ajt y1aka1dá ya1ka ya2k1áll ya1ká ya2k1átk ya2k1átm yak1elm ya1ke yak1elt yak1ékn ya1ké ya2k1é2r. ya2k1é1ri yak1i2zo y2akiz ya1ki ya1k1lu y1akn2a. yak1na y1aknák yak1ná ya1k1né y1a2ko2l. ya1ko ya2k1o1la ya2k1old ya2k1ón ya1kó y1a2kós ya2k1örv ya1kö ya1k2rém y2ak1ré ya1k2ri y2a1k1rí y1ak2t. y1akták yak1tá y1aktb y1aktiv yak1ti y1aktj y1aktot yak1to y1ak1tu yala2g1ú ya1la ya2l1ag2y yal1ajk ya2lakb y1a2lakj y1a2lakk y1a2lakok yala1ko y1a2l2akom y1a2lakot ya2lakt y1a2la1ku y1alakz ya2l1a2l y1a2lan2y ya2la2pa y1a2la1pí ya2lap1já y1a2la1pú yala2te ya2l1á1ga ya1lá ya2l1ál yalás1s y1a2lá1té ya2l1é2ne y2alén ya1lé ya2lif ya1li ya2liff yal1i2ko y2alik ya2l1inv y1alja1i yal1ja y1al1ji ya2lor ya1lo yalókés2z1 ya1ló yal2ókés yaló1ké ya2l1ó1rá ya2l1Å‘2 y2al1ta yal1t2r y1al1tú ya2lü ya2lű y1a2malg ya1ma ya2m1an2y yam1a2rár yama1rá yama2tal yama1ta ya2m1árb ya1má ya2m1árn yamászás1 yamás2z yamá1s1zá ya2m1á2to yam1b2 yam1emb ya1me yam1esés yame1sé yami2k ya1mi ya2m1i1ko ya2mind ya2m1i2o ya2m1is ya2m1os2z y2amos ya1mo ya2m1ó2r ya1mó ya2mö ya2mÅ‘ yam1s2 ya2mü y1a2nal ya1na ya2nan ya2nat yan1att ya2n3e. ya1ne ya2n1e2g ya2nek ya2ner ya2n1et ya2ne2z y1a2ném ya1né y1ang ya2nid ya1ni ya2n1in ya2n1is ya2nit y1a2niz y1an2n2y yano2d ya1no yan1o1da yan1onn ya2n2Å‘. ya1nÅ‘ ya2nyas yan2y ya1nya y1anyj y1a2nyó y1a2nyuk ya1nyu yaó2r ya1ó y1a2p2a. ya1pa y1a2pa1i y1a2pas y1a2páb ya1pá y1a2pád y1a2pá1é y1a2pá1i y1a2pák y1a2pám y1a2pá1ra y1a2pá1ró y1a2pá2t. y1a2pá1to y1a2pá1tó y1a2páv y1a2p2i. ya1pi y1apjáh yap1já y1apjá1i y1ap1ju ya1p2l ya2post ya1po yapo2tá y1a2p2ó. ya1pó y1a2pó1é y1a2póh y1a2pó1i y1a2pój ya2pó1ké ya2pó1na y1a2pós ya2pó2t. ya2pó1tó y1a2póv y1app ya1p1re ya1p2ri y1ap1rí y2a1p1ro ya2r1a2dá y2arad ya1ra ya2r1a2dó ya2r1a2du y1a2ras2z ya2ránn ya1rá y1a2rán2y ya2r1átv y1ar2c. y1ar1ca y1ar1cá y1arcb y1arcc y1arc2h y1arck y1arcn y1ar1co y1arcr y1ar1cu y1ar1cú 1yar2d. 1yardn 3yardom yar1do 1yardos yar1d1rá yar1ell ya1re ya2ro1ma ya1ro ya2ror yar1ó2rá ya1ró yar1ó1vá ya2róz yar1s2 yas1alj y2asal ya1sa y2a2sap ya2s1as yaság1g ya1sá ya1sl ya1s1ne ya1s2pi ya1s2po ya1s2rá yast2 y2a1s2ta y2a1s1to y2a1str ya1s1vi yasz2tár yas2z yasz1tá y1a2tád ya1tá yaté2k1á1t1a2 ya1té yaté1ká y1atk2a. yat1ka y1at1ká ya2tomh ya1to y1a2tomm y1a2to1mo yat2rág yat1rá y2a1t1ré ya1tróf yat1ró ya1tróff y1attr y1a2t2y y1a2uk ya1u y1a2u1lá y2au2tá y1a2u1to y1a2u1tó yautói2ko y1autó1i yaü2t ya1ü yaü2z y1a2vat ya1va y1a2zon ya1zo y1a2zúr ya1zú y1á2bé y1ábr yá2ga yá2gá yá2gé yá2gi yá2go yá2gu yá2gú yá2g2y yá2jal yá1ja yá2j1e yá2j1ö yá2jÅ‘ yá1ka2 yá2k1an yá2k1á yá2k1e yá2kü yálas3s yá1la yá2lál yá1lá y1ál1do yá2l1e y1állam yál1la y1állat y1állás yál1lá y1ál1lí y1ál1lo y1ál1ló y1állv yá2lü yá1ma2 yá2m1al yá2m1an yá2m1ap yá2m1as yá1mi2 yá2m1in yá2mü yá2n1er yá1ne yá2nék yá1né yán3n yá2nö yánt2 yán1tr yá2nü yá1n2y2 y1á2po yá2r1a2l yá1ra y1á2raml y1á2ra1mo yára2n yár1an2y yá2rap yá2rar yá2r1ass yá2r1av yá2raz y1ára1zá yár1a1zo yá2r1ál yá1rá y1árbev yár1be yár1d2 yá2r1e2 y1árem yá2réj yá1ré y1á2ri1á yá1ri yá2rim yá2r1is y1ár1nya yárn2y yá1ró2 yá2rór yá2rö yá2rÅ‘ y1ár1pá yár2sé y2ár2t. y1ártám yár1tá yár1tr y1á2ruh yá1ru y1á2rur yá2rú2 y1ár2ú. yá2rü y1ár1va y1árver yár1ve yá1ry yá2sal yá1sa yá2sas yá2s1á2g yá1sá yá2s1á2rá yá2s1árt2 y1á2sás yá2se yás1ká2 y1á2só yá2sö yá2szab yás2z yá1s1za yá2szag yá2szal yá2sza2s yá2sz1ál yá1s1zá yá2s1ze yász1el yász1em yás3zen yá2szét yá1s1zé yá2szév yá2szim yá1s1zi yá2szin yá2szis yá2szit yász1ó2d yá1s1zó yász1ó2r yá2s1z1ö2 yá2s1zÅ‘ yá2s1z1ü2 y1á2ta yát1a2l y1á2tá y1átb y1á2t1e2 y1á2té y1átf y1átff y1áth y1á2t1i2 y1átk y1átlag yát1la y1át1lá y1át1lé y1átm y1átn y1á2t1ö y1átp y1átr y1áts y1átt y1á2tü y1átv ybe1á2 y1be yb2la yb2le yb2lé yb2li yb2lo yb2lú yb2ra yb2ri yb2ro yb2ró ycsa2p1á2g yc2s y1c1sa ycsa1pá ycsÅ‘1é2 y1c1sÅ‘ yc2vi yd2be yd2ni y1d2ra y1d2rá yd2ro yd2ró y1d2ru yea2d ye1a ye2ar yea2v yeá2r ye1á yeb2bér yeb1bé ye1bl y1ecset yec2s ye1c1se ye2d1á ye2deg ye1de ye2d1es2z ye2dol ye1do ye2d1ó2 ye2d1u2 ye2d1ú ye2d1ü2lÅ‘ ye1dü yed2vér yed1vé yee2s ye1e y1ef8f y1eff ye1ga2 ye2g1a1la ye2gan ye2g1az ye2g1á2 ye2g1el ye1ge ye2g1e2red yege1re ye2g1él ye1gé yeg1ér1be ye2gérb y1e2gérr ye2gés2z1 yeg1észn yeg3g2 ye2gid ye1gi ye2gí ye2gu2t ye1gu ye2gú ye2g1üg ye1gü ye2gyed yeg2y ye1gye y1e2gyen y1e2gyes ye2gyet ye2gyez y1e2gyé y1egyh y1egyl y1egys y1e1gyü y1egyv yei2g ye1i y1ejt y1e2k2e. ye1ke y1e2ke1i y1e2kek y1e2ké1é ye1ké ye2kéj y1e2ké2s. y1e2ké1se ye1k2ré y1e2l1a2d ye1la y1e2lág ye1lá ye2lál y1elc y1e2lef ye1le y1e2l1eff ye2le1ge ye2l1e2h y1e2lemek yele1me y1e2leme2z. y1e2le1mű y1e2l1e2re ye2légt ye1lé ye2l1é2ké ye2l1é2r. yelés3s yelé2s3z y1elhal yel1ha y1elhel yel1he y1el1hú y1e2l1in ye1li ye2liv y1e2l1í2 y1el1já y1el1ka y1elnev yel1ne y1el1nö y1eln2y ye2l1os ye1lo y1e2lö y1e2lÅ‘ad ye1lÅ‘ yelÅ‘1a y1e2lÅ‘1í y1e2lÅ‘1s1zö yelÅ‘s2z2 ye2lÅ‘tt y1e2lÅ‘z y1el1sa y1el1sÅ‘ y1eltér yel1té y1el1to y1el1tö yel2vad yel1va yel2v1áll yel1vá yel2vás yel2v1eg yel1ve yel2v1e2r yel2ves2s2z yelve2s2z yelv1e1s1ze y1elve1vé yel2véd yel1vé yel2v1ég yel2vél yel2v1érz yel2v1í yel2vol yel1vo ye2mak ye1ma ye2m1a2l ye2ma2p yema2r ye2m1at ye2má2l ye1má y1ember yem1be y1e2me1lé ye1me y1e2melk ye2m1er y1e2més ye1mé ye1mi2 yem1ing ye2m1is ye2mit yem1i1ta ye2miz y1emlék yem1lé y1em1lí y1em1lÅ‘ yem1ost ye1mo ye2m1ö yem1p2 yemu2s ye1mu ye2m1us2z ye2n1á2 yen2c1sa yenc2s yen2c3ser yen1c1se ye2n1elj ye1ne ye2n1eln ye2n1elv y1e2ner yenes3s y2enes ye2n1é2l ye1né yenfé2l1é2v yen1fé yenfé1lé ye2nid ye1ni ye2n1i2p yen1k2 ye2n1o ye2n1üg ye1nü ye1nyá2 yen2y y1enz ye2pag ye1pa yep1a1lo ye2p1a1rá ye2p1áll ye1pá ye2pát ye2p1e2l ye1pe ye2p1é2k ye1pé y1e2pik ye1pi y1e2piz ye2pos ye1po yep2p1e2r yep1pe ye1p1ro yep1t2 y1er1de yere2ga ye1re yere2ge1te yere1ge yereg1g y1e2rej yere2k1a yere2ká yere2k1e2s2z yere1ke yere2ko yere2k1ö2 y1e2rén2y ye1ré y1er1ké y1er1kö y1er1n2y y1e2ro ye2rőé2r ye1rÅ‘ yerÅ‘1é ye2rÅ‘ig yerÅ‘1i ye2rÅ‘1né ye2rÅ‘1rÅ‘ ye2rÅ‘1sí ye2rÅ‘ss ye2rÅ‘1vá yer2s1a y1er1s1zé yers2z ye2sá yes1e1gé ye1se yes1eg2y ye2s1ej yes1e2ké1tÅ‘ yese1ké y1e2semén yese1mé ye2s1er y1e2setb y1e2se1té y1e2se1ti y1e2setk y1e2setr y1e2se1tű y1esél ye1sé ye2sip ye1si ye2s1í2r ye1sí y1esÅ‘1á ye1sÅ‘ ye2sÅ‘1be y1e2sÅ‘h ye2sÅ‘1je ye2sÅ‘2k. ye2sÅ‘kh ye2sÅ‘kr y1e2sÅ‘n y1e2sÅ‘r y1e2sÅ‘s ye2sÅ‘1vé ye1s2pe yes2t1a2 y1estés yes1té y1estév y1est1jü yes2tÅ‘r yes1tÅ‘ y1es1tű ye1sy y1eszk yes2z y1eszm y1esztét yesz1té y1e2s1zű y1e2tal ye1ta yete2g1é2r. ye1te yete1gé y1e2tet ye2t1ért ye1té y1e2tik ye1ti y1etn y1e2tűd ye1tű ye2vet ye1ve ye2ve1zÅ‘ y1e2vé y1e2vol ye1vo y1e2vÅ‘ y1e2zer ye1ze yeze2t1ék yeze1té yezÅ‘1a2 ye1zÅ‘ yé2b1á yé2b1é2r. yé1bé yé2b1i2 yé2bü yé2des yé1de y1égb y1é2ge y1é2gé y1é2gi y1é2gÅ‘ y1égt y1é2h2e. yé1he y1é2hen y1é2hes y1é2het y1éhs y1é2j. y1éjb yé2je1i yé1je yé2jen yé2jért yé1jé y1é2ji y1éjj y1éjs y1éjt yé2kab yé1ka yé2kad yé2k1a1ka yé2k1a2l y1é2kat yé2k1el yé1ke yé2ker yé2k1é2k yé1ké yé2k1é2l yé2k1é2r. yé2kik yé1ki yé2k1ó2 yé2k1ö yé2kÅ‘ yé2kúr yé1kú yé2l1á yé2l2e. yé1le yé2les y1é2let y1é2lén yé1lé yé2lét yé2li2m yé1li yél3l yé2lÅ‘s yé1lÅ‘ y1él1sp y1é2lű yé1ná2 yé2n1ár yé2n1e2k2e. yé1ne yéne1ke yé2nel yé2n1ikr yé1ni yé2no yé2pí yé2pü yé1ra2 yé2r1aj yé2r1ak yé2ral yé2r1an yé2rar yé2r1á2 y1ér2c3h y1ércl yér1d2 y1érdek yér1de yé2reg yé1re yé2r1e2l yé2rem y1ére2m. yér1e1me yé2r1enc yére2n yér1e2sÅ‘ y1é2ret yé2rev y1é2rez y1é2rés yé1ré yé2ril yé1ri y1é2rin yé2ri2z y1ér1mü yé2r1os2z yé1ro yé1ró2 yé2r1ór y1é2r2Å‘. yé1rÅ‘ y1é2rÅ‘1i y1é2rÅ‘k y1é2rÅ‘t y1ér1pa y1érték yér1té yé1ru2 yé2rut y1ér2v. y1érvén yér1vé y1érvv y1érzet yér1ze y1ér1zé y1ér1zÅ‘ y2é2s1z1á yés2z yé2sz1emb yé1s1ze yé2s1z1o yé2s1z1ú yé2t1a y1é2tel yé1te y1é2ter yé2tén yé1té y1ét1ke y1étl y1é2v. y1é2vad yé1va y1évb y1é2v2e. yé1ve y1é2vek y1é2vem y1é2ven y1é2ves y1é2vet y1évez y1é2véb yé1vé y1é2vén y1é2vér y1é2vét y1é2vév y1évf y1évff y1évh y1é2vi y1évk y1évm y1évn y1évr y1évs y1évt y1é2vü y1é2vű y1évv yfas2 y1fa yfé2lá y1fé yf1gl yf2la yf8l yfla yfl yf2le yfle yf2li yfli yf2lo yflo yf2ló yfló y2fö2l. y1fö y2f1Å‘2sö y1fÅ‘ y1f2ra yf2ri yf2rí y1f2ro yf2rö yga2z1 y1ga yg2le yg2ló ygó1g2 y1gó ygót2 yg2ra yg2rá yg2ri yg2ró yg2ru yg2rü y2h1a2dó y1ha yha1p2 y3ha1t2r yhá2zal y1há yhá1za y2h1elv y1he y1i2bo y1i2de1á yi1de y1i2deg y1i2den y1i2de1o y1i2dé y1i2dom yi1do y1i2dÅ‘ y1i2ga y1i2gá y1i2géz yi1gé y1igm y1i2har yi1ha yi2hat y1ihl y1i2ker yi1ke yi2k1érn yi1ké yi2kont yi1ko yi1k2ri y1i2m2a. yi1ma y1i2má y1i2mit yi1mi y1imp y1i2nas yi1na y1inc y1ind y1inf y1inff y1in1ga yi2nic yi1ni y1inj y1ins y1inv yi2o1no yi1o yi2par yi1pa y1i2ram yi1ra y1i2ra2t. y1i2ra1ta y1i2ra2t1é y1i2ratn y1i2ra1to yi2ratt y1i2rá y1i2ri y1i2rod yi1ro y1irr y1irt y1ish y1is1ko y1ism y1isp y1ist y1i2s1za yis2z yi2szel yi1s1ze yi2szon yi1s1zo y1i2tal yi1ta y1i2tat y1i2var yi1va y1i2vás yi1vá y1i2vó y1i2zé y1izg y1izm yi2zom yi1zo yí2gé yí2ja yí2já yí2ju yí2ka yí2ká yí2ke yí2kí yí2kol yí1ko yí2k1ö yí2la yí2l1e2 yí2lí yí2lö yí2ral yí1ra yí2ráb yí1rá yí2r1á2s2z y1í2rog yí1ro yí2rÅ‘ yítÅ‘1a2 yí1tÅ‘ yí2vá yí2ve yí2vé yí2vó yí2vü yí2vű yí2zü yí2zű yje2gy1á2 y1je yjeg2y y2jév y1jé yjob2b1o y1jo yka1i2 y1ka yka1k2 yka2ró2ra yka1ró yk2bó y2k1e2lem y1ke yke1le yk1é2jév y1ké yké1jé yk2é2p1el yké1pe yk2ho yki1á2 y1ki yki1e2 yk1izm yk2ka yk2la yk2le yk2li yk2lí yk2ló yk2lu yk2ná ykó1ro2 y1kó yk2ra y1k2rá y1k2ri yk2rí yk2ro yk2ró yk2vó ylal2ta y1la yl2a2t1a2n yla1ta yl2a2t1é2t yla1té ylegé1nyé2 y1le yle3gén yle1gé yleg2én2y yle1i2 yle1í2 yle2tal yle1ta yle2tá yló1á2 y1ló ylót2 yma1d2 y1ma y2ma2t. ymá2s1ik y1má ymá1si yme2g1é y1me ymik1ro1 y1mi ymikros2z2 ym2ma ym1ph y2nes y1ne yné2vér y1né yné1vé yn2ka ynk2r ynőé2n y1nÅ‘ ynÅ‘1é ynÅ‘2i1é ynÅ‘1i yo2be y1obj y1o2dú yo2gal yo1ga yo2gál yo1gá yo2g1ár yo2ge yog3g yo1gi2 yo2git yo2g1iv yo2gí yo2g1os2z yo1go yo2gö yo2gü yo2gű yo1ka2 y1o2k1al y1o2ká yo1ki2 y1o2k1ir y1okm y1o2kol yo1ko y1o2kos y1o2koz y1ok1ta yo2l1a2l yo1la yola2n yol1an2y yo2l1á1ri yo1lá yol2cem yol1ce yol1ci2 yol2cik y1ol1dá y1ol1dó y1o2lim yo1li y1oltás yol1tá yol2te2r yol1te yo2lú yo2lü yol1ví2 yo2m1a2l yo1ma yoma2n yo2m1an2y yoma2s yo2m1a1s1zó yomas2z yo2maz yo2m1ál yo1má yo2m1árk yo2m1á2to yo2m1á2z yo2m1e yo2m1ik yo1mi yo2mil yo2m1ing yo2m1is yo2mí yo2m1ol yo1mo yo2mö yo2mÅ‘ yom1p2 yo2n1a2d yo1na yo2nag yo2naj yon1a2ka y2onak yo2n1a2l yo2n1am yo2n1a2n yo2nap yo2n1a2r yo2n1a2s yo2n1a2t yo2n1a1u yo2n1ál yo1ná yo2n1á1t1a2 yo2n1á1té yo2n1átj yon1átk yo2n1átr yo2n1áts yo2n1átv yo2n1á2z yon1d2 yo2n1e2 yo2né2d yo1né yo2néh yo2nék yo2nén yon1f2 yon1ff yo2nim yo1ni yo2n1is yon1itt yo2niz yo2ní yon1k2 yon3n yo2n1ol yo1no yo2nop yo2n1os2z yo2nö yo2n1Å‘2 yon1s2 yont2 yon1tr yo2n1ü y1o2pe y1opt yo2rad yo1ra yo2r1a2k yo2r1a2p y1ord y1or1gi y1or1rú yor2sol yor1so y1or1só yors3s yo2se yos3s y1os1to y1oszl yos2z yos3z2s y1oszt yo2ut yo1u y1o2ve yo2xi yóá2g yó1á yóá2r yócsa2p1á2 y2ó1c1sa yóc2s yó2dák yó1dá y1ó2dár y1ó2dásak yódá1sa yó1f8l yó1fl yó1g2r yó2gyár yóg2y yó1gyá yó2gyi yó2gyú yóí2v yó1í yóo2k yó1o yóó2r yó1ó yó1p2r y1ó2rac yó1ra y1ó2rad yó2rag yó2ra1i y1ó2ras y1ó2ráb yó1rá y1ó2rád y1ó2rá1é y1ó2ráh y1ó2rá1i y1ó2ráj y1ó2rák y1ó2rám y1ó2rár y1ó2rás y1ó2rát y1ó2ráv y1ó2ri yó2s1aj yó1sa yós1c1sa2 yósc2s yó2sír yó1sí yó2s1ol yó1so yó2s1orr y2ósor yós1ors yós3s y2ósü2l yó1sü yó2s1ű2 yö2bö yö2bű yö2c2s yö2dém yö1dé yö2ka yö2ká yö2ke2l yö1ke yö2k1ék yö1ké yö2ki2d yö1ki yö2kí yö2ko yök1os yö2kó yö2kör yö1kö yö2k1öss yö2ku yö2lÅ‘k yö1lÅ‘ y1öltés yöl1té y1öml y1ö2ná yön2gya yöng2y yön2gyá yön2gyó yön2gy1öl y2ön1gyö y1önk y1ön1té y1önz yö2ra y1örd yö2rit yö1ri yö2ro yö2ru yö2so y1ös2s2z y1ösv y1öszt yös2z y1ötl y1ö2tö2d. yö1tö y1ö2tö1de y1ö2tö1dé y1ötp y1ött y1ötv yö2ve yö2vé yö2vi y1ö2vö y1ö2zön yö1zö yÅ‘a2n yÅ‘1a yÅ‘1bl yÅ‘e2l yÅ‘1e yÅ‘e2r yÅ‘1fr yÅ‘1pr yÅ‘2ra y1Å‘2re1i yÅ‘1re y1Å‘rg y1Å‘rl y1Å‘rp y1Å‘rs yÅ‘r1s1ze2 yÅ‘r1s2z2 y1Å‘2rül yÅ‘1rü y1Å‘rz yÅ‘2seg yÅ‘1se yÅ‘1st2r yÅ‘s2z2 yÅ‘2s3zá2r. yÅ‘1s1zá yÅ‘s3z2s yÅ‘1szt2 yÅ‘zÅ‘kés2z1 yÅ‘1zÅ‘ yÅ‘zÅ‘1ké ypen1n y1pe ype2te yp2la yp2le yp2lé yp2lu ypon1té2 y1po ypo1t2 yp2ra yp2re yp2ré yp2ri yp2rí yp2ro yp2ró y2p1rÅ‘ yp2ru yp2s2z yrádi2ón y1rá yrá1di yrádi1ó yrágás1 yrá1gá yre1a2 y1re yren2d1Å‘2 yre1u2 ysa2van y1sa ysa1va yság1g y1sá ys2c2h ysé2g1e2l y1sé ysé1ge ysé2gés ysé1gé ys2ho ys2ka ys2ká ys2ki ys2lá ys2lu ys2mi ys2na ys2ni y2soml y1so ys2pe ys2pi ys2po ys2pó ysp2r ys2ra ys2rá ys2rÅ‘ ys2sa ys2sá ys2se y1s2tí y1s2to y1s2tó ys2tÅ‘ y1st2r y1s2tu y1s2tú ys2tü y2s1ü2vegb y1sü ysü1ve y2s1ü2veg3g2 ysza2k1ü2 ys2z y1s1za y2sza1ló y2száld y1s1zá yszáraz1 yszá1ra ysze2ra y1s1ze yszer2v1ó2 y3szerv y1sz2f y1sz2ff y1sz2k y1sz2l y1sz2m yszö2g1el y1s1zö y3szö1ge y1sz2p y1sz2v yta2c y1ta yt1a1cé yta2n1é yta2n1ó2 ytá2l1é2 y1tá y2t1ál1lá y2t1ál1ló y2t2e. y1te yt2he yt2raf yt1ra yt2raff yt2ran yt2rap y1t2rá y1t2re y1t2ré y1t2ri y1t2ro yt2rón yt1ró yt2rö y1udv yu2g1á yu2ge y1ugr yu2g2y yu2hu y1ujj yuj2j1a2da y1ujjad yuj1ja yu2kab yu1ka yu2kar yu2k1a1s1zá yukas2z yu2k1ác yu1ká yu2kál yuká2s yuk1á1sá yu2k1e yu2k1ö yu2kÅ‘ yuk1t2 yu2kű y1u2ni y1u2no yu2rad yu1ra yu2ra1i yu2rak yu2ral yu2ram yu2ras yu2rat y1u2rán yu1rá y1u2ráv y1urn y1u2ru yu2sál yu1sá yus3s yu2s1zá yus2z y1u2s1zo yu2tak yu1ta yu2tal yu2tam yu2tat yu2taz yu2tál yu1tá y1utc yu2tód yu1tó y1u2tu y1u2tú yú1bl yú1br yú1gr y1újd y1ú2jé y1ú2jí y1újr y1újs yú2ke2l yú1ke yú2k1e2s yú2ke2t yú2kev yú2kó yú2kö2l yú1kö yú2l1ag yú1la yú2laj yú2lar yú2l1á2r yú1lá yú2lát yú2l1eg yú1le yú2l1e2l yú2l1e2t yú2lin yú1li yú2l1is yúl2tag yúl1ta yú2lü yú2lű yú1pl yú1p2r y1úrb y1ú2r2é. yú1ré y1ú2r1é2l y1ú2rév y1úr1ho y1ú2ri y1úrk y1úr1nÅ‘ y1úrr y1úr1tó yú1s1ta yú2sü yú2s3zá1ra yús2z yú1s1zá y1úszt y1útb yú2t2é. yú1té y1úth yú1ti2 yú2t2i. yú2ti2g y1útj y1útk y1útm y1útn y1ú2to2n1 yú1to y1útp y1útr y1úts y1útt y1útv yü2dü y1ü2g2y yü2két yü1ké yü2lá yü2led yü1le y1ülte1té yül1te y1ünn yü2rí y1ü2rü y1ü2te y1ü2té y1ütk y1ü2tÅ‘ y1ü2veg yü1ve yü2völ yü1vö y1ü2ze y1ü2zé y1üzl yű1bl yűé2n yű1é yű2g1Å‘ yű1kl yű1pl y1űrb y1ű2r2é. yű1ré yű2réb yű2rén yű2rön yű1rö y1űrr yű2sá yű2s1orr2a. yű1so yűsor1ra yűs1s y1ű2zÅ‘b yű1zÅ‘ y1ű2zÅ‘en yűzÅ‘1e2 y1ű2zÅ‘1é y1ű2zÅ‘h y1ű2zÅ‘k y1ű2zÅ‘n y1ű2zÅ‘r y1ű2zÅ‘t y1ű2zÅ‘v y2v1abr y1va y2v1a2dó yva2d3z yva1i2 y2v1akc y2v1alb y2v1alk y2v1ank y2v1ant yv1a2nya yvan2y y2v1a1po y2v1arz yva2s1u2 y2v1atk y2v1a1u y2v1a1zo y2v1ábr y1vá yv1ál1lo yv1állv yv1á2ra1i yvá1ra yv1á2rán yvá1rá y2v1á2r1e2 y2v1árj y2v1árl yvárosi2b yvá1ro yváro1si yváro2sú yv1ár1re y2v1á2ru y2v1árv y2v1á1ta2 y2v1á1ti y2v1átt yv1br yv1dr yv1e2gye y1ve yveg2y yv1egys y2v1e2kéb yve1ké y2v1e1la y2v1e2lá y2v1ell y2v1e1lo y2v1el1ti y2v1ember yvem1be yven3n y2v1e2p yve2r1a yve2r1á2 yve2reg yve1re yve2r1és2z yve1ré yve2rip yve1ri yve2r1o yvert2 y2v1es1s1zé yves2s2z y2v1e1va y2v1e2vé yv1e2v2Å‘. yve1vÅ‘ y2v1ex yvezé2rel yve1zé yvezé1re yvé2du y1vé yv1é1kí yv1é2let yvé1le y2v1élm y2v1élt y2v1ép y2v1ér1d2 y2v1é2ri y2v1ér1rÅ‘ y2v1ér1té y2v1é2rü y2v1ér1ze y2v1é2v2e. yvé1ve yv1fr yv1gr y2v1i2gaz1 y1vi yvi1ga y2v1i1gé y2v1i2k y2v1il1le y2v1im y2v1ind y2vint y2v1i2p y2v1ism y2v1ist y2v1íg y1ví y2v1ín y2v1í2rá yví2zis yví1zi yví2zü2 yv1kl yv1kr y2v1old y1vo y2v1olv y2v1or y2v1os yv1ó2r y1vó yv1öss y1vö y2v1ö2z yv1Å‘r y1vÅ‘ yv1pr yv1sk yv1sl yv1st yv1s2z2 yv1tr y2v1ub y1vu y2v1ud y2v1ur y2v1u2t yv1új y1vú yv1út y2v1üg y1vü y2v1ü2z yza2t1a2l y1za yza1ta yza2t1e yza2t1érd yz2atér yza1té yzá2r1ó2ra y1zá y3zárór yzá1ró yzás3s yze2t1a2 y1ze yze2t1á yze2t1é2r. yze1té yze2t1é2r2Å‘. yzeté1rÅ‘ yze2tés yze2té1te yze2t1o yze2t1ö2l yze1tö yzé2k1e2l y1zé yzé1ke yzÅ‘1a2 y1zÅ‘ yz2rí 2z. 1za 3zab2a. za1ba za2b1aj zab1alt z2abal zab2b1i2ko zab1bi za2b1i2ga za1bi za1b1re z2a1b1ri z1ab1ro 2zabs za2ce za2c1ég za1cé za2c3ho zac2h zac1ikr za1ci za2c1im za2ci1pa za2c1iv za2cí zac1k2 zac3st zac2s za2dad za1da 2zadag zad1alj za2dan za2da1ta 2z1a2da1to z1a2datr zadás1s za1dá z2adi2a za1di za2d1ír za1dí za2dó1me za1dó za2dóz z2a1d2rá za2d1ut za1du za2d1zá zad2z zae2m za1e zae2t za1f8l za1fl za1f2r za2g1a2d za1ga za2gak za2ga2n za2g1an2y za2ga1ra za2g1a2t za2ga1u za2gág za1gá za2g1ál za2g1árn za2g1árt za2g1áz za2ge2l za1ge za2gés za1gé z1ag2g2y 2za1gi za2gin z1a2git za2g1os2z za1go zagren2 zag1re za2g1ü z1ag2y. zag2y z1a2gyak za1gya z1a2gyar z1agyb za2i1já za1i zai2z 3za2j. 3zaj2a. za1ja za2j1a2d za2jan za2j1átv za1já 3zajáv za2jes za1je 3zajf 3zajff za2jin za1ji 3zajj zajká2rok zaj1ká zajká1ro 3zajol za1jo za2j1or 2zaj1ta 2zajt2ó. zaj1tó z1ajtók 2zajtót zaj1tr 3za1jú za2j1ü2 2zakad za1ka za2k1a2da2t. zaka1da zakai2ko zaka1i za2k1a1ka zak1alk z2akal za2k1alv za2ka1na z2akan za2k1ant za2ka1ra z1akarat z1a2ka1ró z1akarv za2k1atl za2k1á2p za1ká za2k1á1t1a za2k1átl 2zakc z1akci1ó zak1ci za2k1e2g za1ke za2k1e1le za2kelm za2k1e1lÅ‘ za2ket za2k1é2l za1ké za2k1int z2akin za1ki za2k1i2p zak1i1ro z2akir za2k1ír za1kí zak1k2 za1k1lu 2z1aknák zak1ná zak1oszt z2akos za1ko zakos2z zako2v za2k1o1vi za2kÅ‘s za1kÅ‘ za1k2rit zak1ri z2a1k1rí zaks2 2zak1tá 2zak1ti z1aktív zak1tí 2zak1tú zaku1p2 za1ku zaku2r zak1u1ra za2k1u1rá za1kü2 za1k1vó zal1a1cé za1la zala2gá zalag1g 2z1a2la1kí za2lakj z1a2la1ku zala2n za2l1an2y z1a2lapb za2lapj zal1átk za1lá zale2l za1le za1l1e1le zal1ell zal1e1lÅ‘ z2a2l1e2m z1al1gá z1al1ge za2lid za1li z1alkal zal1ka z1alkat z1alkot zal1ko 2zalmás zal1má za2lól za1ló zalta2n zal1ta zal2tel zal1te zal2tem z1al1ti z2a2m1a2d za1ma z2a2m1aj zam1a1la z2a2m1a2p zama2t1Å‘2 za2maz 2z1am1bu za2mem za1me zam1ing za1mi za2m1is za2mí za2m1os2z z2amos za1mo za2mü z1a2nal za1na z1a2nek za1ne 2zang z1ang2y 2z1ankét zan1ké zan2tes zan1te z1antil zan1ti za2ny2a. zan2y za1nya z1a2nyag z1a2nyó zao2k za1o zao2s zaó2h za1ó zaó2v z1a2p2a. za1pa za2pad za2p1a2g z1a2pa1i za2p1ág za1pá z1a2pán za2p1á1ra z1a2pát z1a2páv zape2l za1pe zap1e1le za2pe2m za2pe2s za2pí za1p2lán zap1lá z1a2p2ó. za1pó z1a2pó1é z1a2pók 2zap1p2 zappa2ne zap1pa zap3rof z2ap1ro zap3roff zap1s2 za2r1a2dá z2arad za1ra za2ran zar1a2nya zaran2y zar1a1pa za2rar zar1a2to za2rá1bi za1rá z2a2r1á2c z1a2rá1i za2r1ál z1a2rán2y z1a2rár 2zarc z1ar2c. z1ar1ca z1ar1cá z1arc2h z1ar1ci z1arck z1ar1co z1ar1cú zare2t za1re za2r1e1te za2rev za2ré1na za1ré za2ré1ná 2zarm za2r1ön za1rö za2r1ü zar2vág zar1vá 2zarz za2sem za1se z2a1s2ká za1s2ko za1s2li za1s2pó za1sp2r z2a2t1ab za1ta za2t1a2d za2t1aj zat1alap zata1la zat1alj zat1a1na z2atan za2t1a2n2y zat1att za2ta1u za2taz za2t1áll z2atál za1tá zat1á1lo zatá2p zat1á1po za2t1árad z2atár zatá1ra za2t1á1ré za2t1á2ru za2t1e1lé za1te zat1elk za2t1e2ré za2t1er1k2 z2a2t1é2g za1té z2a2tél zat1i2ko za1ti za2tim za2t1ind z2atin za2t1ing za2tins za2t1int za2t1ist za2tiz zat1k2 2z1atk2a. zat1ka z1atlas zat1la zatmo1s zat1mo zatmos2z2 za2t1okos za1to zato1ko zat1ol1da 2z1a2tomj za2t1oml za2t1os2z za2tök za1tö za2t1ön zatt2 zat1tr za2tu1ra z2atur za1tu za2tül za1tü za2tür 2zat2y za2tya za2tyá za2u1la za1u za2u1lá za2urá1lá zau1rá za2urálj za2uráln za2urá1ló za2urált zau2tak zau1ta z1a2u1to z1a2u1tó zaü2t za1ü zaü2z za3va1rá za1va 3zavarb 2zavat z1a2z. z1azh z1a2zo 1zá 2z1ábr zá2de zá2g1a2d zá1ga zá2ga2k. zá2ga1ko zá2g1al z1á2gas z1á2gat zá2gaz zág1a1zo zá2g1ál zá1gá zá2g1á2rak zágá1ra zá2g1á1ru zá2g1e zá2gép zá1gé zá2gol1ta zá1go z1á2gó1i zá1gó zá2g1ú2t. zá1gú zá2gü z1ág2y. zág2y z1á2gya zágy1a2da z1ágyb z1ágyh z1ágyn z1ágyr z1á2gyu záí2r zá1í zá2j1ék zá1jé zá2jí zá2j1ol zá1jo zá2j1ös zá1jö zá2jÅ‘ zá2jü zá2jű zá2kin zá1ki zá2k1ö2v zá1kö zála2n zá1la zá2l1an2y zál1apr z1álar zál1as2s2z z1ál1ca z1ál1cá z1ál1dá zá2l1e2g zá1le zá2l1e2l zá2l1em zá2lib zá1li zá2li2d zál1ing zá2lir z1állam zál1la z1állap z1ál1ma z1ál1má z1ál1mo zá2lob zá1lo zálo2d zá2l1o1da zá2los zá2lü zá2ly1a2l zál2y zá1lya zá2mac zá1ma zá2m1a2d zá2m1aj zá2m1a2l zám1an2y zá2m1a2p záma2r zám1a1rá zá2maz zá2m1átl zá1má zá2m1á2to zá2mél zá1mé zá2m1é2rÅ‘ zá2m1ik zá1mi zá2mip zá2mir zám1orm zá1mo zám1or1s2 zá2mó zá2mö zá2mÅ‘ zá2m1ut zá1mu zá2mü zá2mű zá2naj zá1na zá2n1as zá2n1at zá2n1át zá1ná zá2nem zá1ne zá2nis zá1ni zá2n1it zán3n zá2n1os2z zá1no zán1sp zá2nü zán2y2 zá2p1ad zá1pa zá2p1ag zá2p1or1zó zá1po zá1p2r z1á2radd zá1ra 3zára1dé zá2r1a2dot zára1do zá2r1a2l z1á2ramk z1á2raml zára2n zá2r1an2y zá2r1ap zá2rar zá2r1a1ti zá2r1a2to zá2r1att zá2r1av zá2r1ál zá1rá 3zárá2s. 3zárá1sa 3zárásb 3zárá1si 3zárás1s 3zárást2 zá2r1á2s2z z1árbev zár1be 3zár1dá zár2dem zár1de zár2d3z 2zá2r1em zá1re zá2réb zá1ré 2zárf 2zárff 2z1á2ri1á zá1ri zá2rid zá2r1i2k zá2rim zá2r1is zá2r1iz zár1k2 3zárkák zár1ká 2zár1kö 3zárlat zár1la 2zár1nö 2zárn2y zár2nyál zár1nyá zá2r1os2z zá1ro 3zár2ó. zá1ró 3záró1a 3zárób zá2r1ó1bo 3záróc 3záród 3záró1é zár1óév 3záróh 3záró1i 3zárój 3zárók 3zárón 3zárór zá2r1ó2rá 3zárót 3záróv zá2rÅ‘ 2zár1ré zárs2 zár1sk zárt1a1nyá zár1ta zártan2y zár2t1e2s zár1te zárté2r zár1té zár1t1ro zá2rug zá1ru z1á2ruh z1á2ruj 2zárunkn 2zárunkr zá2rü z1árvah zár1va zá2s1a2d zá1sa zá2saj zá2sal zá2s1a2r zá2s1at zá2saz zá2s1á2g zá1sá zá2s1á2rad zásá1ra zá2s1á2rá zá2s1á2ré zá2s1árh zá2s1árn zá2s1árt2 z1á2sás zá2sep zá1se zás1ikon zá1si zási1ko zá2sis zá2s1í zá2s1ol zá1so z1á2s2ó. zá1só zá2s1ó2r z1á2sóv zá2su2t zá1su zá2sü zá2s3zav zás2z zá1s1za 3zászl zás1z3se zász2s z1átad zá1ta zát1a2d2ó. zá2ta1dó zát1a2dók zátá2r zá1tá 2zátb 2z1átc z1átd zát1e2m zá1te zá2t1é2l zá1té 2z1átf 2z1átff 2záth z1át1ha z1át1he zá1t2hi z1á2t1i2 2z1átj 2z1átm zá1t1ra zá1t1ro 2záts 2z1átv zá2z1a1la zá1za záza2t zá2z1a1to zá2z1e2 zá2zév zá1zé zá2z1ol zá1zo zá2zos zá1zó2 zá2zór zá2zö zá2zsaj záz2s zá1z1sa zá2zsas zá1z4sá zá2zsál zá2zsol zá1z1so zba2ki z1ba zbe1á2 z1be zb2le zb2lo zb2lú zb2ri zb2ró zb2rú zc2lu zcsa2p1á2g zc2s z1c1sa zcsa1pá zda1p2 z1da zdas2 z2d1ass zd1áll z1dá zdés1s z1dé zdÅ‘1s2p z1dÅ‘ zd2ri zd1u2r z1du 1ze zea2g ze1a zea2k zea2l zea2s 1zeán2s1ze ze1á zeáns2z zeá2r zeá2z 2z1e2b. 2ze1be ze2b2e. ze2be1i ze2bek z1e2béd ze1bé z1ebf z1ebff z1ebh z1ebk 2z1ebn ze1b1ru 2ze1ce z1e2cet z1e2c2h z1e2cset zec2s ze1c1se ze2d1á2l. ze1dá ze2d1álj ze2d1áln ze2d1ált ze2d1álv zede2r1e ze1de ze2dil ze1di ze2d1ó2 2z1e2d2z zee2s ze1e z1ef8f z1eff ze1fr ze2g1a2l ze1ga ze2gap ze2gar ze2g1ál ze1gá ze2g1ár ze2g1eg ze1ge zeg1ell ze2gep zeget2t1eb zeget1te ze2g1érr ze1gé ze2gé2s2z zeg1észb zeg1é1s1zé ze2gid ze1gi ze2gil ze2gol ze1go ze2gú ze2gyed zeg2y ze1gye ze2gy1e2l ze2gye1ne ze2gyez z1egyl z1egys ze2het ze1he ze2i1a ze1i zei2g zei2s zeí2r ze1í zekci2ó1s2z2 zek1ci zekci1ó zek1e2g2y ze1ke ze2k1ell z1e2kéit ze1ké zeké1i 2zekék ze2kil ze1ki ze1k2lap zek1la ze2k1ott ze1ko zek1övek ze1kö zekö1ve ze2kÅ‘ ze1k2re1á zek1re zek1t2 ze2k1ü2lÅ‘ ze1kü z1ekviv zek1vi ze2lag ze1la z2e2la2r ze2lál ze1lá z1el1bo 2z1e2ledel ze1le zele1de z1e2le1fá ze2le1ji 2zelekt z1e2lem2e. zele1me z1e2lemek zelem1el zele2m1é2r. zele1mé ze2le1mű zele2pá zele2p1el zele1pe zele2po zele2p1ü2l zele1pü z1e2l1e2re zele2tá zel2e2ter zele1te 2z1e2lég ze1lé 2z1elé1ré zel1érh zelés1s z1el1há 2z1elhel zel1he 2z1elher ze2litet ze1li zeli1te z1el1kü 2z1ellá1to zel1lá 2zellen zel1le z1elle1ne 2z1elnev zel1ne z1el1nö ze2lof ze1lo ze2l1off z1e2l1os z1e2lö2l ze1lö z1e2l1ön 2z1e2lÅ‘1ha ze1lÅ‘ zelÅ‘2saj zelÅ‘1sa z1e2lÅ‘1zÅ‘ z1el1sÅ‘ z1el1tá 2z1eltér zel1té 2z1el1to 2z1el1tű z1e2lu 2z1e2lú z1el2v. z1elvek zel1ve z1elves 2z1elvev z1elvez z1elvn z1elvt 2z1el1vű z1el1zá 2ze1ma ze2mak ze2m1ág ze1má ze2m1á2r ze2mát z1embe2r. zem1be z1emberb z1embe1ré z1emberh z1emberk z1embern z1emberr z1embert2 z1embl 2zem2e. ze1me ze2m1e1gé 2zeme1i 2zemek ze2m1ell ze2m1eng 2zeméb ze1mé 2zeméh ze2m1é2k ze2m1é1le ze2m1é2lé ze2m1é2lÅ‘ ze2m1élt ze2m1élv ze2m1é2rét zemé1ré 2zemés zemé2te ze2m1éten ze2m1étet ze2m1ét1jé 2zemév ze2migr ze1mi ze2m1ing ze2m1int ze2mis ze2m1iz ze2m1í 2zemk 2zeml 2zem1mó ze2mol ze1mo ze2m1os2z ze2m1ó2 ze2m1Å‘ 2zems z1emul ze1mu ze2m1ur ze2mú 2ze1mü 2zemv zemvíz1 zem1ví ze1my 3zeneir ze1ne zene1i 3zene1ka zenes2z2 z2enes 3zené1é ze1né 3zené1i 3zenéj ze2nép ze2n1o zen2tag zen1ta zen2tal zen2t1an zen2t1as zente2g zen1te zen2t1eg2y zen2telm zen2t1e1re zen2tev zen2t1é2j zen1té zen2t1imr zen1ti zen2ti2p zen2tis zen2tí zen2tol zen1to zen2t1ó2 zen2t1ö zentÅ‘2s zen1tÅ‘ zen2t1Å‘1se 2zenz zeo2k ze1o zeo2m zeö2r ze1ö 2z1e2pééb ze1pé zepé1é 2z1e2péé1i 2z1e2péén 2z1e2péit zepé1i 2z1e2péj 2z1e2pém 2z1e2pés ze1p2h z1e2piz ze1pi ze1p1la ze1p1le 2zepr ze1p2ri ze1p1ró ze2r1a2d ze1ra ze2ra1já ze2r1ajt ze2rakr ze2r1al ze2ram ze2r1a2n ze2r1a2r ze2r1as ze2r1a2t ze2r1a1u ze2raz ze2r1á1ga ze1rá ze2r1á2r ze2rás ze2r1á2t zer2bin zer1bi zer1d2 z1er1dé ze2r1eb ze1re ze2r1e2ce ze2re1dé ze2ref ze2r1eff ze2re1ge zer1e2g2e. ze2r1e2gé ze2r1egg ze2r1eg2y z1e2re1je zer1ejt z1e2re1jü z1e2re1jű ze2r1e2k2e. zere1ke z1e2rekl ze2relÅ‘dj zere1lÅ‘ ze2r1ember zerem1be ze2r1e1mi ze2r1eng zere2p1a ze2r1e2r z1e2resed zere1se ze2r1e2sés zere1sé ze2r1es2s2z ze2r1es1te ze2r1e2sz2e. zeres2z 1zere1s1ze zer1eszk ze2reszt ze2r1e1u ze2r1e2v ze2rég ze1ré ze2r1é2j ze2r1ék ze2r1é2l ze2r1ép zer1g2 ze2r1i2d ze1ri ze2r1i2ga ze2r1i1ko ze2r1ill ze2r1i2m ze2r1i1na ze2rind ze2r1inf ze2r1inff ze2r1ing ze2r1inj ze2r1ink ze2r1intel zerint2 zerin1te ze2r1in1té zer1in1tÅ‘ ze2ri1o ze2riz ze2r1í2j ze1rí zer1k2 zer2nal zer1na ze2r1ok1t2 ze1ro ze2r1old ze2rolv ze2ror ze2r1ost ze2r1os2z ze2ro1ti ze2r1ó2r ze1ró ze2rö2k ze1rö 2ze2rÅ‘ z1er2Å‘. z1erÅ‘f z1erőff z1erÅ‘1i z1erÅ‘k z1erÅ‘l z1erÅ‘n z1erÅ‘s z1erÅ‘t z1erÅ‘v zer1Å‘z zer1p2 zer1s zers2k zers2p zers2t zert1á2lom zer1tá zertá1lo zer2tit zer1ti zer2tór zer1tó zer1t1ra zer1tren zert1re ze2r1un ze1ru ze2rur ze2rus ze2r1u2t ze2r1út ze1rú ze2r1ü2g ze1rü 2ze1rű zer2v1a2dó zer1va zer2va2n zer2vel zer1ve zer2vél zer1vé 2z1e2sedék ze1se zese1dé ze2s1e2kéh zese1ké z1e2setb z1e2set2e. zese1te z1e2sete1ké z1esetes z1e2setet z1e2se1té z1e2se1ti z1e2setr 2z1e2sé2s. ze1sé 2z1e2sésb 2z1esésd 2z1e2sés2e. zesé1se 2z1e2sése1i 2z1e2sések 2z1e2sésem 2z1e2sése2n 2z1e2séses 2z1e2sé1sé 2z1e2sésh 2z1e2sé1si 2z1e2sésk 2z1e2sésn 2z1e2sésr 2z1e2sés3s 2z1e2sést ze2s1it ze1si ze1s2mi 2z1e2sÅ‘ zesp2 ze1s2pe ze1spr 2zes1te z1estek z1estem 2z1es1té z1est2i. zes1ti ze1s2til 2z1estj ze1s1to z1est1re z1estt ze2s1ü2v ze1sü ze2szág zes2z ze1s1zá zesz1e2get 1ze1s1ze zesze1ge ze2szel1le ze2szeng ze2széh ze1s1zé ze2sz1é2le ze2sz1im ze1s1zi ze2szip 2zeszk z1esz1kö ze2szol ze1s1zo zeszt2 zesz1tr ze2t1ab ze1ta ze2ta2c ze2t1a1la ze2t1a2n2y ze2táj ze1tá ze2t1á2l ze2t1á2p ze2t1át zet1e1gé ze1te zet1e1lá ze2t1ell ze2telm ze2t1e2lÅ‘1á zete1lÅ‘ ze2t1e2lÅ‘d ze2t1elr zet1e2mel zete1me ze2t1eml ze2te1ne zet1er1k2 z2eter zet1e2ró zete2s1ég zete1sé zetest2 zetes1tr z1e2te1té ze2t1e1ti ze2tetn ze2t1éd ze1té ze2t1é2j ze2t1é2l ze2tér1te ze2t1ér1té zet1ér1tÅ‘ ze2t1é2rü zeté2s2z 1zet1é1s1ze zet1éter zeté1te ze2ti2d ze1ti z1e2ti1ka ze2t1i2ko ze2t1ill ze2t1ing ze2tít ze1tí 1zetké1s1z1e zet1ké zetkés2z ze2tom ze1to zet1ont2 ze2top ze2t1ó2r ze1tó ze2t1ö2v ze1tö zet1Å‘1ri ze1tÅ‘ zet1Å‘1rö zet1Å‘rt ze2tut ze1tu ze2tür ze1tü ze2t1ü2z ze2t2y zeu2g ze1u z1e2ur zeü2t ze1ü z1e2vÅ‘ ze2x1id ze1xi ze2xim ze2x1i2p z1ex1pe zex2t1ö ze2xú z1e2zer ze1ze z1ezr 1zé z1é2ber zé1be 2z1ébr zé2dak zé1da zé2d1a2l zé2d1a2r zé2d1as zé2dat zé2d1á2 zé2d1ekét zé1de zéde1ké zé2d1e2lem zéde1le zé2delm zéde2r1 zé2d1esem zéde1se zé2d1es2z zé2d1e1ti zé2d1és zé1dé zé2dik zé1di zé2dó zé2d1Å‘ zédren2 zéd1re zé1du2 zé2dur zé2dú zé2d3z zé2fá z1é2g. z1égb z1é2ge zé2gé z1é2gi z1égn z1é2gÅ‘ z1égr z1égt z1é2h2e. zé1he z1é2hen 2z1é2hes z1é2het 2z1éhs 2zéid zé1i z1é2j. zé2jen zé1je z1é2ji zéjje2l1e2 zéj1je z1éjs 2z1é2jül zé1jü 2z1é2jün zé2k1a2d zé1ka zé2k1a2l zé2k1a2n zé2k1ap zé2k1as zé2kás zé1ká zé2k1eg zé1ke zé2k1e2két zéke1ké zé2k1elr zé2ker z1é2kez zé2k1ék zé1ké zé2k1é2l z2é2k1és zék1old zé1ko zék1os2z zé2k1ó2 zé2kör zé1kö zé2kúr zé1kú zékü2l zé1kü zé2k1ü1lé zé2k1ü1lÅ‘ zé1la2 zé2lab zé2lad zé2lak zé2l1an zé2las zé2l1á2 2zé2le2l zé1le zé1l1e1le zél1ell zél1e1lÅ‘ zél1elt zé2l1e2r 2zéle2t. 2z1é2letb 2z1é2let2e. zéle1te 2z1é2leten 2z1é2le1té zé2letf zé2letff 2z1é2leth 2z1é2le1ti 2z1é2letn 2z1é2letp 2z1é2letr 2z1é2lets 2z1é2let1tÅ‘ 2z1é2le1tü 2z1é2le1tű 2zé1lé zé2l1ékh zé2li2m zé1li zé2l1ist zé2lí 2zélm zé2l1o zé2l1ö2 2zélÅ‘s zé1lÅ‘ 2zélt zé2l1u2 zé2lú zé2lya zél2y zé2lyá zé2ly1esh zé1lye zé2lyo 2zé1me zé2n1árn zé1ná zéndi1o2 zén1di zé2neg zé1ne 2z1é2nekb 2z1é2ne1ke z1é2ne1ké zé2nek1k2 2z1é2nekl z1é2nekn zé2nekr zé2ne1kü zé2n1e2l zé2n1e2r zé1ni2 zé2nik zé2nil zé2nim zé2n1i1o zé2n1is zé2ní zé2nom zé1no zé2nö zé2nÅ‘ zént2 zé2n1ü2lÅ‘ zé1nü zé2p1a2g zé1pa zé2p1a2l zé2p1a2n2y zé2p1a2p zé2p1a2r zé2pas zé2pat zé2pa1u zé2pav zé2p1á2r zé1pá zé2pát zé2peg zé1pe zép1ell z2épel zé2pez zép1f2 zép1ff zé2pin zé1pi zé2p1i2p zé2pir zé2p1i2s 2zépít zé1pí zé1po2 zé2pol zé2pos zé2pó zé2pö zép1s zé2pud zé1pu zé2p1u2s zé2pú 2zépül zé1pü zé2rab zé1ra zé2rag zé2r1a2l z1é2ram zé2r1a2n zé2rap zé2rar zé2r1as zé2rat zé2rav zé2r1á2 zér1d2 zé2r1e2le1mé zé1re zére1le zé2r1e2lemk zé2r1e2lemn zé2remb zé2r1eml zé2r1es2z 2zérett zé2rev zé2ré2s. zé1ré zé2résb zé2ré1se zé2ré1si zé2résk zé2résn zé2r1id zé1ri zé2rim zé2ris zé2r1o2k zé1ro zé2r1os 3zérós zé1ró zé2rö 2z1é2r2Å‘. zé1rÅ‘ z1é2rÅ‘1i z1é2rÅ‘k zé2rÅ‘s z1é2rÅ‘t zér1s zér2taj zér1ta 2z1értekez zér1te zérte1ke 2z1értelm 2z1értetl 2z1érte1tÅ‘ 2z1érték zér1té 2z1érthet zért1he z1ér1to zé2rú zé2sab zé1sa zé2san zé2sar zé2s1az zé2s1á2 zé2seg zé1se zé2s1e2l zé2s1e2r zé2s1e1ti zé2s1ég zé1sé zé2sés zé2s1i2k zé1si zé2sok zé1so zé2só zés3s zé2s1ü2t zé1sü zé2s3za zés2z z1észb 1z1é2s1zé z1észl zé2s1zó zés3z2s zé2t1a2b zé1ta zé2t1ad zé2tag zé2t1aj zé2t1a2k zé2t1a2l zé2t1ap zé2t1a2s zé2t1a1u zé2t1á2 zéte2n zé1te zéte2se zéte2sü zé2té2g zé1té zé2t1é2n zé2t1i2 2zétk zé2t1o2l zé1to zé2t1o2m zé2tor zé2t1o2s zé2tu2n zé1tu zé2tú zé2t1ü2 zé2t1ű 2zétv 2z1é2v. 2z1é2vad zé1va z1évb 2z1é2v2e. zé1ve 2z1é2vek 2z1é2ven 2z1é2ves z1é2vén zé1vé z1é2vét z1é2vév z1évf z1évff 2zé1vi z1é2v2i. z1évk 2z1évn z1évr z1évs z1évt z1é2vü 2z1évv zfa2l1a2da z1fa zfa1la zfa2l1aj zfa2l1e2l zfa1le zf2a2les zfe2l1em z1fe zfe1le zfe2len zfe2re2g zfe1re zf2la zf8l zfla zfl zf2le zfle z1f2li z1fli z1f2lo z1flo z1f2ló z1fló zfo1ra2 z1fo zfo2rat zfo2riz zfo1ri zföldi1é2 z1fö zföl1di zf2ra zf2rá zf2re zf2ri zf2rí zf2ro zf2rö z3g2a2z1e z1ga zgás3s z1gá zgá2s3z zgá2zó zgé2p1e2két z1gé zgé1pe zgépe1ké zgé2sa zgé2sá zgé2sem zgé1se zgés3s zg2la zg2ló zgó1g2 z1gó zgÅ‘2nyá2 z1gÅ‘ zgÅ‘n2y zgÅ‘2z1á2 zgÅ‘2zér zgÅ‘1zé zgÅ‘2z1Å‘ zg2ra zg2rá zg2ró zg2ru zhán2 z1há zhá2t1a2d zhá1ta zházköz1 zház1kö zhe2i z1he 1zi zi2a1a zi1a zi2a1á zi2a1bo zi2ac zi2ad zi2a1e zi2a1é zi2ag zi2ah zi2a1í zi2aj zi2akép zia1ké zi2a1kó zi2al zi2am zi2a1o zi2a1ö zi2a1p2 zi2ar zi2a1s1za zias2z zi2a1s1zo zi2a1s1zó zi2at zi2a1u2 zi2a1ú zi2a1ü zi2av 2z1ibr 2zicc zi1c2h z1i2de1á zi1de z1i2deg z1i2de1o zi2dén zi1dé 2z1i2dÅ‘ zie2l zi1e zie2m zi2é1a zi1é zi2é1á zi2é1ke zi2ép zi2é1ta zi2é1tá zi2é1ü z1if8j z2i2g. zi2g2a. zi1ga 2z1i2gazg 2z1i2ga1zo z1i2gás zi1gá zi2géj zi1gé 2z1i2gén zi1g2r 2zi1gye zig2y zi2k1a2n zi1ka zik1ékek zi1ké ziké1ke zi2kik zi1ki zi2kim zi2k1ing zi1k1lu z2i2k1u2r zi1ku zikus1s zi2lal zi1la zi2l1ác zi1lá zi2l1á2g zi2ler zi1le zi2l1é2j zi1lé zi2l1ék zi2l1ing zi1li z1il1lu zi2l1ü zi1l2y z1i2m2a. zi1ma zi2mak zi2máb zi1má zi2máj zi2mák zim1áll zi2már zi2mát zi2máz zim1b zi2m1e2g zi1me zi2m1e2l zi2m1é2ré zi1mé zi2m1ér1té zim1ind zi1mi zi2m1ip z1i2mit zi2mö zi2n1a2d zi1na zi2n1a2l zi2n1a2n zi2n1a2r 2z1i2nas zi2n1a1u zi2ná1i zi1ná zi2n1áll z1in1du zin1emb zi1ne zi2nég zi1né zin2gas zin1ga zin2gál zin1gá zi2n1i2m zi1ni zi2n1in zi2ní zin3n zi2nol zi1no zin1s2 zin2t1a2d2 zin1ta zin2t1a2l zin2t1a2s zin2tát zin1tá zin2t1á2z zinte2l zin1te zin2t1e1le zin2te1lÅ‘ zin2telt z1interj z1interp z1interv zin2t1ing zin1ti zin2tom zin1to zin2t1ón zin1tó zi2n1u2t zi1nu zi2nú zi2ol zi1o 2z1i2o1no 2z1i2ons2 zi2ot zi2ó1a zi1ó zi2ó1á zi2óc zi2ó1e zi2óg zi2ó1í zi2ókam zió1ka zi2ókap zi2ó1ká zi2ó1ke zi2ó1kl zi2ól zi2ó1má zi2ó1mé zi2ó1né zi2ón2y zi2ó1o zi2ó1p2 zi2ó1rá zi2ó1sá zi2ó1sé zi2ó1s2ká zi2ó1sp zi2ó1s1zű zió1s2z2 zi2ó1ta zi2ó1tá zi2ó1ú zi2ó1ü zi2ó1ű zi2pa1i zi1pa zi2pa1ri zi2páj zi1pá zi1p2l zi1p2r z1i2rat zi1ra 2zi1rá z1i2rán zir2c3h z2i3re 2zi1ro z1i2rod zi2rón zi1ró z2i3rÅ‘ 2zirt zir2t1a2 z1ir1tá zir2to z1ir1tó zi2sad zi1sa zi2sal zi2sam zi2sar zi2s1a2s zi2sál zi1sá zi2s1á1ro zi2s1e2g zi1se zi2s1e2l zi2s1er zise2s zi2s1e1se zi2s1es2z zi2s1ék zi1sé zis1é1vi zi2s1il zi1si zi2sin zi2s1is zi2sit zi2s1o2v zi1so zi2s1ó2 zi2sö zi2sÅ‘ ziss2 zis3s1za zis2s2z zis3s1zá zis3s1zo zist2 zis1t1ra zis1t1re zi2su2t zi1su zi2s1ü2v zi1sü zi2s3zaj zis2z zi1s1za zis3zav zis3zón zi1s1zó zi2t1áll zi1tá zit1á1ru zi2t1e2g zi1te zi2t1elr zit1eng zi2tét zi1té zi2til zi1ti zi2tin zi2tip zi2tir zi2t1or zi1to zi1tó2 zi2tór zi2t1út zi1tú ziú2r zi1ú z1i2vad zi1va 2z1i2vó 2z1i2zé 2zizm z1iz1mo z1izmusá1é ziz1mu zizmu1sá z1izmusod zizmu1so z1izmusot z1i2zom zi1zo 1zí zí2gé zí2jan zí1ja zí2je zí2jö zí2jü zí2nac zí1na zí2na2d zí2na1ku zí2nal zí2nan zí2nas zí2nat zí2n1áll zí1ná zí2n1ár zí2nát zí2n1e2r zí1ne zí2né2l zí1né zí2ní z1ín1na zín3nye zín2n2y zí1no2 zí2n1od zí2n1ok zí2nos zí2n1ó2 zí2nö zí2nu zí2nú z1í2n2y zí2nyenc1 zí1nye zí2r1a 2z1í2rá z1í2rog zí1ro 2z1í2ró zítÅ‘1a2 zí1tÅ‘ zítÅ‘1e2 zítÅ‘kés2z1 zítÅ‘1ké zí2vaj zí1va zív1ak1t2 zí2val zí2var zí2ve2r zí1ve zí2v1Å‘ zí2vul zí1vu zí2vú zí2ze zí2zü zí2zű zje2gy1á2 z1je zjeg2y z2k1abl z1ka z2k1alak zka1la z2k1alj z2k1alt zka1p2l z2k1a2rád zka1rá z2k1a2ráj z2k1a2rén zka1ré zka1ró2 zka2rór zka1s2k z2k1állv z1ká zk1bl zk1dr z2k1egys z1ke zkeg2y z2kenn zk1eszk zkes2z z2k1e1tű z2k1é2r. z1ké z2k1ér1té z1k2hü zki1a2 z1ki zki1á2 zki1e2 zki2g z2k1i1gé zk2la z1k2lá zk2ler zk1le z1k2lí zk2ló z1k2lu z2k1ol1da z1ko zkon2t1ár zkon1tá z2k1on1tó zko2r1os zko1ro z2k1oszl zkos2z z3koszt z2kókor z1kó zkó1ko zk1ókort z2kópaj zkó1pa zkó2pá zkó2z3s zkö2ze1le z1kö zkö1ze zköz1ell zkö2z1é2l zkö1zé zkőé2h z1kÅ‘ zkÅ‘1é zk1pr z1k2rak zk1ra zk2rá z1k2re1á zk1re z1k2rém zk1ré z1k2ré1ta z1k2ré1tá z1k2ri1ti zk1ri zk2rí z1k2ro z1k2rón zk1ró zkul1tú3 z1ku zkultúr2 z2k1u2rán zku1rá z2k1u2rá2t. z2k1u1tá z1k2val zk1va zk2vó zky2b z1ky zky2h zky2j zky2k zky2n zky2r zky2t zky2v zla2tal z1la zla1ta zl2ata2n zlat1an2y z2lav zlá2m1e z1lá zlá2mis zlá1mi zlás3s z2lá2v. z2lá1ve z2lá1vé z2lávk z2lávn z2lá1vo z2lávv zleg1g2 z1le zle1i2 zle1í2 z2len2g. zle2tak zle1ta zle2tal zle2t1a2n zle2tál zle1tá zle2t1á2r zle2t1eg zle1te zle2t1ell zle2tes2z zle2té2l zle1té zle2t1é2r. zlet1érv zle2tés zle2t1é2té zle2t1é2v2e. zleté1ve zletigaz1 zleti2g zle1ti zle2t1i2ga zle2t1u zle2tüz zle1tü zlé2sí z1lé zlé2so zlés3s zli1na2 z1li zli2nan zli2nin zli1ni z2lo1ge z1lo zlo2p1as zlo1pa zlo2pó zló1ó2 z1ló zló2s1orr zl2ósor zló1so zma1pr z1ma zmas2 zma1sp zme1á2 z1me zme2ge zm2e3gom zme2g1o zmi2n1a2 z1mi zmi2n1e zmuskés2z1 z1mu zmus1ké zmu2sö zmu2s3z zmu2tok zmu1to zna2pe2s z1na zna1pe zni1e2 z1ni zni2ó z2nob z1no zn2ó1st2r z1nó znót2 znó1tr 1zo z1obj z1o2dú zo2es zo1e zo1gl z1o2k2a. zo1ka z1o2k1a2d z1o2ka1i zo2k1ál zo1ká zo1ki2 zo2k1ip z1o2k1ir z1ok1ke z1ok1le 2z1o2koz zo1ko 2zok1ta zo2lab zo1la 2z1o2laj zola1já2 zol2a2j1ár zola2je zo2l1a2l zo2l1as zol1ábr zo1lá zo2l1á1ro z1oldal zol1da 2z1oldh 2z1ol1dó zo2l1e zol1f2 zol1ff zol1inf zo1li zol1inff zo2l1is zo2l1í z1ol1ló zo2lö z1oltás zol1tá z1olt2ó. zol1tó zol1t2re zo2lü 2z1olvad zol1va zo2m1a2g zo1ma zo2mak zo2m1a2l zo2m1a2n zo2map zo2m1a2s zom1áll zo1má zo2m1á2r zom1b2 3zombo2r. zom1bo 2zo1me zo2m1e2l zo2men 2zo1mé zo2mél zomé2t zo2m1é1te 2zomf 2zomff 2zomg zo1mi2 zo2m1in zo2miz zom2jó2 2zoml zo2m1or1s2 zo1mo zo2m1os 2zo2mö 2zom1p2 2zom1s 2zomz zo2n1aj zo1na z2o2n1ak zo2n1a2la zo2n1a1lá zo2n1alk zona2n zo2n1an2y zo2n1a2r zon1as2z zo2n1a1u zo2náld zo1ná zo2n1áll zo2n1átl zo1ne2 zo2neg zo2ne2l zo2n1er zo2ne2s zo2név zo1né zo2nin zo1ni zo2n1i2o zo2n1or zo1no zono2sé zo2n1ó2 zo2nö zon1s2 zon2t1e2s zon1te zon2t1in zon1ti zon1t1re zo2nü zo2ny1ad zon2y zo1nya zo2ny1a2l zo2ny1a2n zo2nyar zo2nyav zo2nye zo2nyid zo1nyi zo2nyij zo2nyó zo2ol zo1o zo2om zo2on z1o2pál zo1pá 2z1o2pe zo1p1ho zo2r1a2d zo1ra zo2raf zo2r1aff zo2r1ag zo2r1aj zo2r1a2l zo2ran zo2r1as z1o2rat zo2r1a1u zo2r1e2 zor1f2 zor1ff zo2rid zo1ri zo2r1il zor1ing z1or1má zo2r1ol zo1ro zo2rop zo2ros2z zo2r1ó2 zo2rö z1or2r. z1or1rú z1or1só zor1t2re zo2rü 2z1os1ko z1os1tá z1os1to zo1sz2f zos2z zo1sz2ff z1oszl 2zo1te 2zo1tó zotó2pa zo2vi zo2xi 1zó zóa2d zó1a zóá2g zó1á zóá2r zó1bl zó1b2r zó1cl zó2d1e2l zó1de zó1f8l zó1fl zó1f2r zó1gl zógyö2k1ér zóg2y zó1gyö zógyö1ké zói2g zó1i zóí2v zó1í zó1ja1 zó1k2l zó1k1ré zókupac1 z2ókup zó1ku zóku1pa 2zó2l. z1ólm zó2lomb zó1lo 3zónád zó1ná 3zóná1i z1ó2ni 2z1ónj 2z1ónn z1ó2nod zó1no 2z1ónt zóó2r zó1ó zó1p2l zó1p2r z1ó2rad zó1ra z1ó2rar zó2ras2z zó2rá1i zó1rá z1ó2ráj z1ó2rák z1ó2rár zórás1s z1ó2rát z1ó2ráv z1ó2ri1á zó1ri zós1í2k. z2ósík zó1sí zó2s1í2n. zó1s2ká zó1sl zó1s2ta zó1s1té zós2z1akad z2ó1s1za zós2z zósza1ka zósz1ál1lí z2ó1s1zá zó2sze1ne z2ószen zó1s1ze zó2sz1é2le z2ó1s1zé zó2sz1íj z2ó1s1zí zósz1ü2l2Å‘. z2ó1s1zü zószü1lÅ‘ z2óta2g1a2 zó1ta zóté2g zó1té zót1é1ge zó1t1ré z1ó2vó 1zö zö2bá zö2ber zö1be zö2bo zö2bó z1öcc zö2dé zö2dú zö2ga zö2gá zög3g zö2gil zö1gi zö2gí zö2go zö1gö2 zö2g1öl zö2gu zö2g2y 2z1ökl 2z1ö2ko 2z1ök1rü 3zöldes zöl1de 3zöld1s2 2z1ö2l1e2b zö1le zö2les 2z1ölniv zöl1ni z1ölyv zöl2y 2z1öml z1ö2na z1ö2ná 2zönb 2zö1ne 2zö1né 2zö1ni 2zönl 2zön1ne 2zö1nö 2zönr 2zönt 3zörej zö1re zör2f1e zör2f1o zör2nya zörn2y zör2nyá zör2nye2l zör1nye zör2nyes2z zör2nyék zör1nyé zör2nyí zö2rök zö1rö zör2p1a2 zör2pá 2z1örv 2zös2s2z z1ösv z1ösz1tö zös2z zö2te 2z1ötl 2z1ötv z1ö2v. z1ö2ve1i zö1ve z1ö2vek zöve2t1e2l zöve1te z1ö2vez 1zö2zö 1zÅ‘ zÅ‘a2c zÅ‘1a zÅ‘a2l zőá2g zÅ‘1á zÅ‘1bl zÅ‘1br zőé2l zÅ‘1é zÅ‘1f8l zÅ‘1fl zÅ‘1f2r zÅ‘gé1pi2 zÅ‘1gé zÅ‘gé2p1ip zÅ‘1gr zÅ‘1kl zÅ‘1mű1 zÅ‘1nyá2 zÅ‘n2y zÅ‘2ny1er zÅ‘1nye zÅ‘2ny1é2k zÅ‘1nyé zÅ‘2nyért zÅ‘1pl zÅ‘1pr zÅ‘2ra2n zÅ‘1ra zÅ‘2r1e2c zÅ‘1re zÅ‘2r1e1ge zÅ‘2rel zÅ‘2r1er 2zÅ‘rk 2zÅ‘rl z1Å‘r1lÅ‘ 2zÅ‘rm zÅ‘2rol zÅ‘1ro 2zÅ‘1rü zÅ‘2r1ü2g 2zÅ‘rz z1Å‘r1zé 1z1Å‘r1zÅ‘ 2z1Å‘2s2i. zÅ‘1si zÅ‘2sis zÅ‘1s1ká zÅ‘1s1pe zÅ‘1s2pi zÅ‘1s1ta zÅ‘1s1ti zÅ‘1st2r zÅ‘s2z2 zÅ‘1szf zÅ‘1szff zÅ‘1szt2 zÅ‘1tr zőü2l zÅ‘1ü zpen1n z1pe zp2fe zp2la zp2lé zp2lo zpor2t1e2 z1po zpor2t1Å‘2 zpor2t1ú z1p2ra z1p2ri z1p2ro z1p2ru zrae3le z1ra zra1e zrádiói2t z1rá zrá1di zrádi1ó zrádió1i zre2d1á2 z1re zre2del zre1de zre2d1é2k zre1dé zre2d3z zren2d1Å‘2 3z2r2í. z1rí z2s 1z1sa zs1ab1la 2zs1a2dat zsa1da 2zs1a2dó zsag2 2z3sa2h. 2zsajt 2zs1akc 2zs1alj 2z2s1alm 2zs1alt z2sa2nyá zsan2y zsa2p2a. zsa1pa 2z3sapk zsa2rán zsa1rá z3sarj 2z3sark 2z3sarl 2z2s1arz 2z2s1aszt zsas2z zs1atl zsa1tr 2z2s1a2t2y 2zs1aut2ó. z2saut zsa1u zsa2u1tó 2zs1autón zs1a1zo 1z1sá 2zs1ábr 2z3sáf 2z3sáff 2z3ság zs1ág2g2y zsá2kó 2zs1á1la 2zs1álc 2z2s1álm 2zs1á2p 2zs1á2rak zsá1ra 2z2s1á2rat 2z3sá1ri 2zsá1ru 2z2s1á2t1e2 2z2s1átk 2zsá1to 2z2s1á2t1ö 2z2s1áts 2zs1á2zós zsá1zó zs1bl zs1br z3s2c2h zscsa1pá2 zsc2s zs1c1sa zsde1s2 zs1de zs1dr 1z1se zse2ba zse2bi1ro zse1bi zse2b1o2 2zsebz zs1e2ce zs1e2dé z3sej 2zsell zs1elm 2z2s1e2lö zs1e2lÅ‘f zse1lÅ‘ zs1e2lőff zs1e2lÅ‘r 2z2sember zsem1be 2zs1e2mel zse1me zs1enc zs1e2ne zse2raj zse1ra zse2r1á2 zse2rel zse1re zsere2s zse2r1es2z zse2r1ék zse1ré zse2ri2n zse1ri zse2r1o 2z1se1se zse2s1zü zses2z zs1e1vé 2zs1ex 2zsez 1z1sé z3ség zsé2ge2l zsé1ge 2z2s1éhs 2zsél zs1é1le 2zsép 2zs1érd 2zs1ér1te 2zs1ér1té 3z4sé1ry 2z2s1érz 2zsé1te 2z2s1étk 2z2s1étr 2z2s1étt 2z2s1é2v2e. zsé1ve zs1f8l zs1fl zs1fr zs1gr 1z1si 2z2s1i2dÅ‘ 2z2si1gá 2z2s1i2gé zsi2kor zsi1ko 2zs1ill 2zs1i2má zsi2min zsi1mi zsi2m1u 2z2s1i2nas zsi1na zs1i2pa z3sipk 2zsirat zsi1ra zs1ira1to 2z2s1i1ro 2z2s1irt 2zs1ism 2zsist2 zsi2tat zsi1ta 2z2s1i2vó z2s1i1zé 2zs1izm 2zs1i2zo zs1izz 1z1sí 2z3síb zs1íj 2z3sík 2z3síp zsí2r1a2 zsí2rá2 3zsír1bó 3zsí1ré 3zsíros zsí1ro 3zsírr 3zsírt2 2zs1í2v 2zs1í2z zs1kl zs1k2r 1z1so 2z3sof 2z3soff 2z2s1okm 2z2s1ok1ta 2z2s1o2laj zso1la zs1o1li 3zsom 2zs1op 2zsor z3so1ro 2zs1ost2y 2z2s1os2z 1z1só zs1ó1né zs1ó1rá 1z1sö 2zs1ö2kör zsö1kö 2zs1ö2lÅ‘z zsö1lÅ‘ 2zs1ös z2s1ö2ve 1z1sÅ‘ zs2pir zs1pi zs1p2l zsp2r zs1s2k zs1s2p zs1st zs3s2z zs3sze2r1e2l zs1s1ze zssze1re z3s2tad zs1ta z3s2tat z3s2top zs1to zst2r zs1t1ro z3s2tú 1z1su 2zs1ud 2z3sugá2r. zsu1gá 2z3sugárr 2z2s1ugr 3zsul 2zsum zsu1s zsus2z2 1z1sú 2zs1új 2zsúl zsú2r1a 1z1sü 2zsüg 2zsült 2zsünn zs1üs 2zsüt 2zs1üz 1z1sű zs1wh zs3zac zs2z z1s1za z3szag zsza2ké zsza2k1ü2 z3szav z2s3záp z1s1zá zs3zás z3szem z1s1ze zs3ze1né z3szer z3s1zé zsz2f zsz2ff z3s1zi zszind2 z3s1zí z3sz2k zsz2l z3s1zo z4s3zon z3s1zó z3s1zö zsz2p z2s3z2s zsz2t2 z3s1zü z3s1zű zt1ab1la z1ta z2t1a2bor zta1bo z2t1a2cé z2ta2dal zta1da zt1a2dat z2t1a2dó z2t1ag1re z2t1a2ká z2t1akc z2t1akk zt1akn ztaköz1 zta1kö z2t1akv zt1a2la1pú zta1la ztale2l zta1le zta2le1le z2t1a2nal zta1na zta1n2e z2t1a2n1es zt1an1ké zta2n1ó2 z2t1a2nyag ztan2y zta1nya zt1anyak zt1anyas z2t1anyád zta1nyá zt1anyám zt1anyá1u z2t1a1nyu zt1a2pán zta1pá zt1a2pás zt1a2pát z2t1a1pó z2t1app z2t1aps zt1a2puk zta1pu z2t1a2r2a. zta1ra z2t1arc zta1sp z2t1as2s2z z2taszt ztas2z z1t1asz1ta z2tatig zta1ti z2t1atk z2taton zta1to z2t1at2y z2t1a2ut zta1u z2t1ábr z1tá ztá2c2s zt1á1c1so z2t1á2g. z2t1á2ga z2tá1li z2t1álm ztá2raj ztá1ra ztá2r1ass zt1árem ztá2r1e2 ztá2ris ztá1ri z2t1ár1nö zt1ár1nya ztárn2y z2tároc ztá1ro z2tárokk ztá2r1olt ztá2r1ó1ra ztá1ró ztár1sm ztár1s2p ztárt2 zt1ár1ví ztá2s2z z2t1á1s1zo z2t1ászt2 z2tát1bó z2t1átf z2t1átff z2táth zt1át1ha z2t1á1ti z2tátj z2tátn z2táto1ka ztá1to z2tátokb z2tátokk z2tátokn z2tátokr z2tátom z2tátr z2t1áts z2tá1tu z2t1átv ztá1vi2 ztá2v1ir zt1bl zt1dr z2t1e2b z1te z2t1ef z2t1eff z2t1e2gé z2t1eg2y zte2id zte1i z2t1e2k2e. zte1ke z2t1e2kés zte1ké z2t1e1la z2t1e1lá z2t1elb z2t1e2leg2y zte1le z2t1e2le1me z2t1e2lemm z2telemz ztele1s2z2 z2t1elf z2t1elff z2t1el1já z2t1ellát ztel1lá z2t1elm z2tel1nö z2t1e2lo z2t1e2lÅ‘a2dá zte1lÅ‘ ztelÅ‘1a z2t1e2lÅ‘c z2t1elr z2t1el1tá z2t1el1to z2t1ember ztem1be z2t1e2mel zte1me z2t1eml z2tent z1t1en1te zte2raj zte1ra zte2rak zte2rál zte1rá zte2rár z2ter1de zter1d2 z2tere2o zte1re zte2re1po zte2rill zte1ri zte2riz zte2ros2z zte1ro z2t1e2rot z2t1e2ró z2t1e2rÅ‘ zte2r1ü2lé zte1rü zte2s2z z2t1e1s1ze z2t1e1s1zé z2t1eszk z2t1ezr z2t1é2g. z1té z2t1égb z2t1é2gé z2t1égr z2t1é2j zté2k1e2l zté1ke z2t1ék1né z2t1é2le z2té1lé zt1é2lés z2t1élm z2t1é2lÅ‘ z2t1élt z2t1é2lű z2t1é1pü zté2rá z2t1érd z2t1érl z2t1ér1té z2t1érz zté2s2z zt1és2z. z2t1észh zt1észj z2t1észn zté2tét zté1té z2t1étk z2t1é2ve2s. zté1ve z2t1évt zt1f8l zt1fl zt1fr zt1gr z1t2hen zt1he z1thos zt1ho ztia2g z1ti zti1a zt1i2den zti1de z2t1i1dé z2ti1di z2t1if8j z2t1i2gé z2t1i2kon zti1ko z2t1il1le z2ti1má z2t1imp z2t1ind z2tin1fe z2t1in1fo z2t1in2g. z2t1in1gá z2t1ingb z2t1in1ge z2t1in1gé z2t1ing3g z2tin1gu z2t1in1te z2t1in1té z2t1in1vá zti2p z2t1i1pa z2t1i1rá z2t1isk z2t1ism z2t1is1tá z2t1is1te z2tital zti1ta z2t1i2tat z2t1íj z1tí z2t1í2r zt1í2ve1ke ztí1ve zt1kl zt1kr zt1kv z2to1i z1to z2t1o2koz zto1ko z2t1ol1tó zto2lyag ztol2y zto1lya z2t1o2pe zto2ras zto1ra zto2r1e2 z2t1or1gi ztor1g2 ztorkés2z1 ztor1k2 ztor1ké zt1ornam ztor1na z2tor1rú z2tor1vo z2t1oszl ztos2z zt1osz1tá ztó1á2 z1tó ztóigaz1 ztói2g ztó1i zt2ói2ga z2t1ó2ni ztó1p2 ztó1sp ztó1tr z2t1ö2ko z1tö ztö2l z2t1ö1le ztön3n z2tö2röks ztö1rö z2t1öss zt1ö2vez ztö1ve z2t1övig ztö1vi z2t1öz ztÅ‘1a2 z1tÅ‘ ztÅ‘e2l ztÅ‘1e ztőé2b ztÅ‘1é z2t1Å‘rh z2t1Å‘rl z2t1Å‘rs zt1Å‘2se1i ztÅ‘1se z2t1Å‘2sö z2t1Å‘1sű zt1pl zt1pr zt1ps z1tranz zt1ra zt2rá1dá zt1rá z1t2rág z1tréf zt1ré z1tréff z1t2rén z1t2ri1kó zt1ri z1tril z1t2ri1ó z1t2rü zt1sl zt1sn zt1sp zt1st zt1s2z zt1t2r z2t1udv z1tu z2t1ug z2t1u1ra z2t1u1ru ztus3s2 zt1u2tat ztu1ta z2t1u1tu z2t1új z1tú z2t1ú2r. z2t1úrb z2t1ú2ré z2t1úrh z2t1ú2ri z2t1úrk z2t1úrn z2t1ú2ro z2t1úrr z2t1úrt z2t1üg z1tü ztü2lé z2t1ülés ztül1l z2t1üt z2t1ü2v zt1ü2zem ztü1ze z2t1ű2r. z1tű z2t1ű2ri z2tye zt2y 1zu zu2b1a 3zubb zu2b1i zu2bu zu2c3s 3zu2g. zu2gag zu1ga zu2ga1p zu2gá2ru zu1gá zu2g1ás 3zugb zu2g1e2 zu2gé zu2gin zu1gi zu2gi2t zu2giv zu2gí 3zu1go zu2g1or zu2gö zu2gü zu2gű 3zu1ha zu1le2 zu2le2l zu2l1enc zu2l1es zuli2ná zu1li zu2lú zu1lya2 zul2y zu2ly1ag zu2mab zu1ma zu2m1a2d zu2maj zu2mal zu2m1ar zu2m1as zu1me2 zu2megyez1 zume2g zum1eg2y zume1gye zu2mel zu2m1en zu2mél zu1mé zu2m1é2n zu2m1id zu1mi zu2m1in zu2m1i2p zu2mí zumkés2z1 zum1ké zu2mol zu1mo zu2mÅ‘ zu2mu2r zu1mu zu2mü 2zund z1un1do zu2ne zu2n1é 2zu1ni zu2n1ö2 zu2ral zu1ra zu2ram zurat2 2z1urn zu2rú zu2sad zu1sa zus1a1ka zu2sal zusa2n zus1an2y zu2sas zu2s1ág zu1sá zu2s1e2 zu2s1ér1té zu1sé zu2sis zu1si zu2s1í zuskés2z1 zus1ké zu2s1ol zu1so zu2s1ó2 zu2sÅ‘ zuss2 zus3s1ze zus2s2z zus3s1zi zust2 zus1tr zu2s1ü2 zu2sz1i2k zus2z zu1s1zi zu2szon zu1s1zo zu2s3zó 2z1u2ta z1u2tá 2z1utc zu2tol zu1to zu2t2ó. zu1tó zu2tób zu2tó1i zu2tój zu2tón z1u2tu 1zú zú1dr zú1f8l zú1fl 3zú1gá z1újd z1ú2jé z1ú2jí z1újs zú2r1e2 zúré2t zú1ré z1ú2szás zús2z zú1s1zá zú2t2é. zú1té z1ú2tér z1úth z1ú1ti zú2t2i. zú2tia2k. zúti1a 3z2útia1ka zú2tiakr zú2tib zú2ti2g zú2tih zú2tin zú2tiv z1ú2tí z1útj z1útn z1ú2to2n1 zú1to z1út1ró z1útt zú2tü z1útv 3zú1zá 3zúzd 3zú1zó 1zü zü2dü zü2gy1és züg2y zü1gyé z1ügyk z1ül1dö z1ü2lep zü1le z1ü2lÅ‘seb zü1lÅ‘ zülÅ‘1se z1ü2lÅ‘set zü2ni 2zünn zü2nó zü1ph zü2rí z1ü2rü züs2tin züs1ti z1ü2te z1ü2té z1ütk z1ü2tÅ‘ zü2ve zü2vö zü2zen zü1ze z1üzl 1zű zű2c1sa zűc2s zű2c1sá zű2csip zű1c1si zű2c1s1o zű2ra zű2rá zűrés3s zű1ré zű2r1i2z zű1ri z1űr1la zű2ró zű2ru zű2z1a2 zű2z1á zű2ze zűzé2r zű1zé zű2z1é1re zű2zo z1ű2zÅ‘ zű2z2s zű2zú zva2su z1va zváro1sé2 z1vá zvá1ro zváro2s1om zváro1so zve2gya z1ve zveg2y zvé2nye2l z1vé zvén2y zvé1nye z2vi2t. z1vi zvi2tác zvi1tá z2vitj zy1ak z1yar zy2be zy1em zy2je zy2ne zy2né zy2re zy2rÅ‘ zy2sa zy2so zy2tÅ‘ zy2ve z2z1áll z1zá z3zá2r1ó2r zzá1ró zzát2 zzá1tr zzi2n1é2 z1zi zz2le zz1l2y z1z2s ingatlan3nyilv ingat1la ingatlan2n2y ingatlan1nyi ï¬ngatlan3nyilv ï¬ngat1la ï¬ngatlan2n2y ï¬ngatlan1nyi idegen3nyelv ide1ge idegen2n2y idegen1nye ï¬degen3nyelv ï¬de1ge ï¬degen2n2y ï¬degen1nye expressz3kén2t. expressz2k2 exp1re expres2s2z expressz1ké .geron7t6ofil .ge1ro .geron2t1of .geron1to .gerontof8i .geron7t8oï¬l .gerontoï¬ pszichog6ráfi1a pszi1c2h pszi1c1ho pszichog3r pszich2o3gráf8i pszichog2ráf pszichog1rá pszichog8ráï¬1a pszich2o3grÃ¡ï¬ pszichog6ráfi1á pszichog8ráï¬1á .tele6g7ráf .teleg1rá .tele6g7ráff 7f6luor flu1o 7fluor flu1o 8in7f6luor inf1lu influ1o 8in7fluor influ influ1o ï¬n7fluor ï¬nflu ï¬nflu1o .jaz4z3 z3zsák z1z1sá z3zsám z3z1si z3z1sí z3z1so ço2i2s ço1i Å™e1my c5cs2é./cs=,1,1 c5cs2á./cs=,1,1 c5cse2l./cs=,1,1 c5csa2l./cs=,1,1 .öc5c1sü/cs=,2,1 .öc2c2s .öc5c1se/cs=,2,1 .öc5c1sé/cs=,2,1 aöc5c1sü/cs=,3,1 aöc2c2s aöc5c1se/cs=,3,1 aöc5c1sé/cs=,3,1 söc5c1sü/cs=,3,1 söc2c2s söc5c1se/cs=,3,1 söc5c1sé/cs=,3,1 trac5c1so/cs=,4,1 trac2c2s toc5csan/cs=,3,1 toc2c2s toc1c1sa tac5c1so/cs=,3,1 tac2c2s tac5c1sa/cs=,3,1 szkec5cse2t./cs=,5,1 szkec2c2s szkec1c1se szkec5c1sé/cs=,5,1 szkec5csér2t./cs=,5,1 szkec5csi2g./cs=,5,1 szkec1c1si szkec5csem/cs=,5,1 szkec5csen/cs=,5,1 szkec5csed/cs=,5,1 szkec5cs2e./cs=,5,1 szkec5c1sü/cs=,5,1 szkec5csetek/cs=,5,1 szkeccse1te sztrec5cse2t./cs=,6,1 szt1re sztrec5c1se/cs=,6,1 sztrec2c2s sztrec5c1sé/cs=,6,1 sztrec5csér2t./cs=,6,1 sztrec5csi2g./cs=,6,1 sztrec1c1si sztrec5csem/cs=,6,1 sztrec5csen/cs=,6,1 sztrec5csed/cs=,6,1 sztrec5cs2e./cs=,6,1 sztrec5c1sü/cs=,6,1 sztrec5csetek/cs=,6,1 sztreccse1te rec5c1se/cs=,3,1 rec2c2s puc5cs2a./cs=,3,1 puc2c2s puc1c1sa puc5c1so/cs=,3,1 puc5c1su/cs=,3,1 puc5c1si/cs=,3,1 puc5c1sé/cs=,3,1 pric5c1se/cs=,4,1 pric5c1sé/cs=,4,1 pric5c1si/cs=,4,1 pric5c1sü/cs=,4,1 fröc5csök/cs=,4,1 fröc2c2s fröc1c1sö ffröc5csök/cs=,4,1 ffröc2c2s ffröc1c1sö fröc5csö2t./cs=,4,1 ffröc5csö2t./cs=,4,1 fröc5csöm/cs=,4,1 ffröc5csöm/cs=,4,1 fröc5csö2d./cs=,4,1 ffröc5csö2d./cs=,4,1 fröc5csötö2k./cs=,4,1 fröccsö1tö ffröc5csötö2k./cs=,4,1 ffröccsö1tö fröc5csö2n./cs=,4,1 ffröc5csö2n./cs=,4,1 fröc5csös/cs=,4,1 ffröc5csös/cs=,4,1 fröc5csöz/cs=,4,1 ffröc5csöz/cs=,4,1 fröc5c1sü/cs=,4,1 ffröc5c1sü/cs=,4,1 fröc5csen/cs=,4,1 fröc1c1se ffröc5csen/cs=,4,1 ffröc1c1se fröc5c1sé/cs=,4,1 ffröc5c1sé/cs=,4,1 fröc5c1s1i/cs=,4,1 ffröc5c1s1i/cs=,4,1 mec5cse2t./cs=,3,1 mec2c2s mec1c1se mec5c1sé/cs=,3,1 mec5csér2t./cs=,3,1 mec5csi2g./cs=,3,1 mec1c1si mec5csem/cs=,3,1 mec5csen/cs=,3,1 mec5csed/cs=,3,1 mec5cs2e./cs=,3,1 mec5csek/cs=,3,1 mec5cse1i/cs=,3,1 mec5csét/cs=,3,1 mec5cséb/cs=,3,1 mec5csérÅ‘2l./cs=,3,1 meccsé1rÅ‘ mec5csér2e./cs=,3,1 meccsé1re mec5cséh/cs=,3,1 mec5csé1i/cs=,3,1 mec5csén/cs=,3,1 mec5csév/cs=,3,1 mec5cses/cs=,3,1 mec5c1sü/cs=,3,1 mec5csetek/cs=,3,1 meccse1te nuc5c1se/cs=,3,1 nuc2c2s glec5cser/cs=,4,1 g2lecc glec2c2s glec1c1se gic5c1se/cs=,3,1 gic5cse2t./cs=,3,1 gic2c2s gic5c1sé/cs=,3,1 gic5csér2t./cs=,3,1 gic5csi2g./cs=,3,1 gic1c1si gic5c1sü/cs=,3,1 fuc5c1so/cs=,3,1 fuc2c2s ffuc5c1so/cs=,3,1 ffuc2c2s brec5c1sa2/cs=,4,1 brec2c2s rac5csol/cs=,3,1 rac1c1so loc5csan/cs=,3,1 loc2c2s loc1c1sa floc5csan/cs=,3,1 floc2c2s floc1c1sa kec5csel/cs=,3,1 kec2c2s kec1c1se frec5csen/cs=,4,1 frec5c1se/cs=,4,1 frec2c2s ffrec5csen/cs=,4,1 ffrec5c1se/cs=,4,1 ffrec2c2s fec5csen/cs=,3,1 fec2c2s fec1c1se ffec5csen/cs=,3,1 ffec2c2s ffec1c1se csic5csen/cs=,4,1 c2sic2c2s csic1c1se g3gy2é./gy=,1,1 g3gy2á./gy=,1,1 g3gye2l./gy=,1,1 g3gya2l./gy=,1,1 üg3gyel/gy=,2,1 üg2g2y üg1gye pog3gyá/gy=,3,1 pog2g2y meg3gye2t./gy=,3,1 meg2g2y meg1gye meg3gyi2g./gy=,3,1 meg1gyi meg3gyér2t./gy=,3,1 meg1gyé meg3gyek/gy=,3,1 meg3gye2n./gy=,3,1 meg3gyes/gy=,3,1 meg3gyem/gy=,3,1 meg3gyed/gy=,3,1 meg3gy2e./gy=,3,1 meg3gyét/gy=,3,1 meg3gyérÅ‘2l./gy=,3,1 meggyé1rÅ‘ meg3gyér2e./gy=,3,1 meggyé1re meg3gyé2n./gy=,3,1 meg3gyéh/gy=,3,1 meg3gyéb/gy=,3,1 meg3gyév/gy=,3,1 meg3gyünk/gy=,3,1 meg1gyü meg3gyetek/gy=,3,1 meggye1te meg3gyük/gy=,3,1 bug3gya/gy=,3,1 bug2g2y bug3gyá/gy=,3,1 bug3gyo/gy=,3,1 fag3gyú/gy=,3,1 fag2g2y ffag3gyú/gy=,3,1 ffag2g2y big3gye/gy=,3,1 big2g2y hig3gye/gy=,3,1 hig2g2y hig3gyé/gy=,3,1 hig3gyü/gy=,3,1 rog3gya2n./gy=,3,1 rog2g2y rog1gya rog3gyant/gy=,3,1 rog3gya1no/gy=,3,1 rog3gya1nu/gy=,3,1 rog3gya1ná/gy=,3,1 sel5lye/ly=ly,3,3 sel2l2y sel5lyé/ly=ly,3,3 zsöl5lye/ly=ly,4,3 zsöl2l2y zsöl5lyé/ly=ly,4,3 sül5lye/ly=ly,3,3 sül2l2y gal5lya/ly=ly,3,3 gal2l2y gal5lyá/ly=ly,3,3 gal5lyé/ly=ly,3,3 gal5lyi2g./ly=ly,3,3 gal1lyi gallyi2g gal5lyu/ly=ly,3,3 pál5lya/ly=ly,3,3 pál2l2y pál5lyá/ly=ly,3,3 tál5lya/ly=ly,3,3 tál2l2y tál5lyá/ly=ly,3,3 il5lye/ly=ly,2,3 ï¬l5lye/ly=ly,2,3 il5lyés/ly=ly,2,3 il1lyé ï¬l5lyés/ly=ly,2,3 ï¬l1lyé l5ly2é./ly=ly,1,3 l1lyé fl5ly2é./ly=ly,1,3 fl1lyé l5ly2á./ly=ly,1,3 l1lyá fl5ly2á./ly=ly,1,3 fl1lyá l5lye2l./ly=ly,1,3 l1lye fl5lye2l./ly=ly,1,3 fl1lye l5lya2l./ly=ly,1,3 l1lya fl5lya2l./ly=ly,1,3 fl1lya .an5nyi/ny=ny,2,3 .an2n2y .bizon5nya2l./ny=ny,5,3 .bi1zo .bizon2n2y .bizon1nya bon5nya/ny=ny,3,3 bon2n2y csakan5nyi/ny=ny,6,3 cs2a2k1an csa1ka csakan2n2y csaken5nyi/ny=ny,6,3 csa2k1en csa1ke csaken2n2y dan5nyi/ny=ny,3,3 dan2n2y din5nye/ny=ny,3,3 din2n2y din5nyé/ny=ny,3,3 dun5nyog/ny=ny,3,3 dun2n2y dun1nyo dün5nyög/ny=ny,3,3 dün2n2y dün1nyö .elan5nyi/ny=ny,4,3 .el1ann .elan2n2y .en5nyi/ny=ny,2,3 .en2n2y éppan5nyi/ny=ny,5,3 ép1pa épp1an2n2y éppen5nyi/ny=ny,5,3 éppen2n2y ezeran5nyi/ny=ny,6,3 eze2r1a2n ezer1ann ezeran2n2y félan5nyi/ny=ny,5,3 félan2n2y ffélan5nyi/ny=ny,5,3 ffélan2n2y felean5nyi/ny=ny,6,3 felea2n fele1a felean2n felean2n2y ffelean5nyi/ny=ny,6,3 ffelea2n ffele1a ffelean2n ffelean2n2y feleen5nyi/ny=ny,6,3 fele1e feleen2n2y ffeleen5nyi/ny=ny,6,3 ffele1e ffeleen2n2y félen5nyi/ny=ny,5,3 féle2n fé2l1enn félen2n2y ffélen5nyi/ny=ny,5,3 fféle2n ffé2l1enn ffélen2n2y fin5nyás/ny=ny,3,3 fin2n2y fin1nyá ï¬n5nyás/ny=ny,2,3 ï¬n2n2y ï¬n1nyá fon5nyad/ny=ny,3,3 fon2n2y fon1nya ffon5nyad/ny=ny,3,3 ffon2n2y ffon1nya fon5nyadoz/ny=ny,3,3 fonnya1do ffon5nyadoz/ny=ny,3,3 ffonnya1do fon5nyas/ny=ny,3,3 ffon5nyas/ny=ny,3,3 fon5nyat/ny=ny,3,3 ffon5nyat/ny=ny,3,3 gen5nyebb/ny=ny,3,3 gen1nye gen5nyed/ny=ny,3,3 gen5nyek/ny=ny,3,3 gen5nye2m./ny=ny,3,3 gen5ny2e./ny=ny,3,3 gen5nyé/ny=ny,3,3 gen5nyes/ny=ny,3,3 gen5nyetek/ny=ny,3,3 gennye1te gen5nye2t./ny=ny,3,3 gen5nyez/ny=ny,3,3 gen5nyi2g./ny=ny,3,3 gennyi2g gen1nyi gen5nyük/ny=ny,3,3 gen1nyü gen5nyünk/ny=ny,3,3 gun5nyas/ny=ny,3,3 gun2n2y gun1nya hároman5nyi/ny=ny,7,3 háro2m1ann hároman2n2y hatan5nyi/ny=ny,5,3 h2atan ha2tan2n2y kön5nyebb/ny=ny,3,3 kön2n2y kön1nye kön5nyed/ny=ny,3,3 kön5nye1i/ny=ny,3,3 kön5nyek/ny=ny,3,3 kön5nyelm/ny=ny,3,3 kön5nye2m./ny=ny,3,3 kön5nye2n./ny=ny,3,3 kön5ny2e./ny=ny,3,3 kön5nyé/ny=ny,3,3 kön5nyes/ny=ny,3,3 kön5nyetek/ny=ny,3,3 könnye1te kön5nyetlen/ny=ny,3,3 könnyet1le kön5nye2t./ny=ny,3,3 kön5nyez/ny=ny,3,3 kön5nyi2g./ny=ny,3,3 könnyi2g kön1nyi kön5nyít/ny=ny,3,3 kön1nyí kön5nyük/ny=ny,3,3 kön1nyü kön5nyül/ny=ny,3,3 kön5nyünk/ny=ny,3,3 kön5nyű/ny=ny,3,3 megan5nyi/ny=ny,5,3 meg1ann megan2n2y mégan5nyi1ra/ny=ny,5,3 mégan2n2y mégan1nyi men5nye/ny=ny,3,3 men2n2y men5nyé/ny=ny,3,3 men5nyi/ny=ny,3,3 men5nyü/ny=ny,3,3 n5nya2l./ny=ny,1,3 n5ny2á./ny=ny,1,3 n5nye2l./ny=ny,1,3 n5ny2é./ny=ny,1,3 olyan5nyi/ny=ny,5,3 oly1an2n2y pin5nye/ny=ny,3,3 pin2n2y sen5nye/ny=ny,3,3 sen2n2y sun5nyog/ny=ny,3,3 sun2n2y sun1nyo százan5nyi/ny=ny,6,3 száza2n szá1za százan2n2y szen5nye2d./ny=ny,4,3 szen1nye szen5nyek/ny=ny,4,3 szen5nye2m./ny=ny,4,3 szen5ny2e./ny=ny,4,3 szen5nye1i/ny=ny,4,3 szen5nyé/ny=ny,4,3 szen5nyetek/ny=ny,4,3 szennye1te szen5nye2t./ny=ny,4,3 szen5nyez/ny=ny,4,3 szen5nyük/ny=ny,4,3 szen1nyü szen5nyünk/ny=ny,4,3 szen5nyes/ny=ny,4,3 szin5nye/ny=ny,4,3 szin3n szin2n2y szintan5nyi/ny=ny,7,3 szint1ann szin1ta szin2tan2n2y szinten5nyi/ny=ny,7,3 szin2t1enn szinten2n2y szun5nyad/ny=ny,4,3 szun2n2y szun1nya tin5nye/ny=ny,3,3 tin2n2y úgyan5nyi/ny=ny,5,3 úgy1an2n2y ugyanan5nyi/ny=ny,7,3 ugya2nan ugyan1ann ugya1na ugyanan2n2y ugyanen5nyi/ny=ny,7,3 ugya2n1e ugya2n1enn ugyanen2n2y vin5nyog/ny=ny,3,3 vin2n2y vin1nyo zsen5nye/ny=ny,4,3 zsen2n2y bajus5sza2l./sz=,5,1 ba1ju bajus2s2z bajus1s1za bajus5sz2á./sz=,5,1 bajus1s1zá autóbus5sza2l./sz=,7,1 autó1bu autóbus2s2z autóbus1s1za autóbus5sz2á./sz=,7,1 autóbus1s1zá burnus5sza2l./sz=,6,1 bur1nu burnuss2 burnus2s2z burnus1s1za burnus5sz2á./sz=,6,1 burnus1s1zá .bus5sza2l./sz=,3,1 .bus2s2z .bus1s1za .bus5sz2á./sz=,3,1 .bus1s1zá cirkus5sza2l./sz=,6,1 cir1ku cirkus2s2z cirkus1s1za cirkus5sz2á./sz=,6,1 cirkus1s1zá himnus5sza2l./sz=,6,1 him1nu himnuss2 himnus2s2z himnus1s1za himnus5sz2á./sz=,6,1 himnus1s1zá szaurus5sza2l./sz=,7,1 szau1ru szauruss2 s2zaurus2s2z2 s1zaurus1s1za szaurus5sz2á./sz=,7,1 szaurus1s1zá kultus5sza2l./sz=,6,1 kul1tu kultuss2 kultus2s2z kultus1s1za kultus5sz2á./sz=,6,1 kultus1s1zá fidibus5sza2l./sz=,7,1 fi1di fidi1bu fidibus2s2z fidibus1s1za ï¬dibus5sza2l./sz=,6,1 ï¬di1bu ï¬dibus2s2z ï¬dibus1s1za fidibus5sz2á./sz=,7,1 fidibus1s1zá ï¬dibus5sz2á./sz=,6,1 ï¬dibus1s1zá fikus5sza2l./sz=,5,1 fi1ku fikus2s2z fikus1s1za ï¬kus5sza2l./sz=,4,1 ï¬kus2s2z ï¬kus1s1za fikus5sz2á./sz=,5,1 fikus1s1zá ï¬kus5sz2á./sz=,4,1 ï¬kus1s1zá fókus5sza2l./sz=,5,1 fó1ku fókus2s2z fókus1s1za ffókus5sza2l./sz=,5,1 ffó1ku ffókus2s2z ffókus1s1za fókus5sz2á./sz=,5,1 fókus1s1zá ffókus5sz2á./sz=,5,1 ffókus1s1zá kaktus5sza2l./sz=,6,1 kak1tu kaktuss2 kaktus2s2z kaktus1s1za kaktus5sz2á./sz=,6,1 kaktus1s1zá génius5sza2l./sz=,6,1 géni1u génius2s2z génius1s1za génius5sz2á./sz=,6,1 génius1s1zá humus5sza2l./sz=,5,1 hu1mu humuss2 humus2s2z humus1s1za humus5sz2á./sz=,5,1 humus1s1zá kókus5sza2l./sz=,5,1 kó1ku kókus2s2z kókus1s1za kókus5sz2á./sz=,5,1 kókus1s1zá kónus5sza2l./sz=,5,1 kó1nu kónuss2 kónus2s2z kónus1s1za kónus5sz2á./sz=,5,1 kónus1s1zá szinus5sza2l./sz=,6,1 szi1nu szinuss2 s2zinus2s2z szinus1s1za szinus5sz2á./sz=,6,1 szinus1s1zá lakmus5sza2l./sz=,6,1 lak1mu lakmuss2 lakmus2s2z lakmus1s1za flakmus5sza2l./sz=,6,1 flak1mu flakmuss2 flakmus2s2z flakmus1s1za lakmus5sz2á./sz=,6,1 lakmus1s1zá flakmus5sz2á./sz=,6,1 flakmus1s1zá lótus5sza2l./sz=,5,1 ló1tu lótuss2 lótus2s2z lótus1s1za flótus5sza2l./sz=,5,1 fló1tu flótuss2 flótus2s2z flótus1s1za lótus5sz2á./sz=,5,1 lótus1s1zá flótus5sz2á./sz=,5,1 flótus1s1zá meniszkus5sza2l./sz=,9,1 menis2z menisz1ku menis2zkus2s2z meniszkus1s1za meniszkus5sz2á./sz=,9,1 meniszkus1s1zá mikrobus5sza2l./sz=,8,1 mik1ro mikro1bu mikrobus2s2z mikrobus1s1za mikrobus5sz2á./sz=,8,1 mikrobus1s1zá mirtus5sza2l./sz=,6,1 mir1tu mirtuss2 mirtus2s2z mirtus1s1za mirtus5sz2á./sz=,6,1 mirtus1s1zá nimbus5sza2l./sz=,6,1 nim1bu nimbus2s2z nimbus1s1za nimbus5sz2á./sz=,6,1 nimbus1s1zá nónius5sza2l./sz=,6,1 nóni1u nónius2s2z nónius1s1za nónius5sz2á./sz=,6,1 nónius1s1zá omnibus5sza2l./sz=,7,1 om1ni omni1bu omnibus2s2z omnibus1s1za omnibus5sz2á./sz=,7,1 omnibus1s1zá papirus5sza2l./sz=,7,1 papi1ru papiruss2 papirus2s2z2 papirus1s1za papirus5sz2á./sz=,7,1 papirus1s1zá tífus5sza2l./sz=,5,1 tí1fu tífus2s2z tífus1s1za tífus5sz2á./sz=,5,1 tífus1s1zá paus5sza2l./sz=,4,1 paus2s2z paus1s1za paus5sz2á./sz=,4,1 paus1s1zá rádius5sza2l./sz=,6,1 rá1di rádi1u rádius2s2z rádius1s1za rádius5sz2á./sz=,6,1 rádius1s1zá rombus5sza2l./sz=,6,1 rom1bu rombus2s2z rombus1s1za rombus5sz2á./sz=,6,1 rombus1s1zá sillabus5sza2l./sz=,8,1 sil1la silla1bu sillabus2s2z sillabus1s1za sillabus5sz2á./sz=,8,1 sillabus1s1zá spiritus5sza2l./sz=,8,1 spi1ri spiri1tu spirituss2 spiritus2s2z spiritus1s1za spiritus5sz2á./sz=,8,1 spiritus1s1zá spondeus5sza2l./sz=,8,1 spon1de sponde1u spondeus2s2z spondeus1s1za spondeus5sz2á./sz=,8,1 spondeus1s1zá státus5sza2l./sz=,6,1 státuss2 státus2s2z státus1s1za státus5sz2á./sz=,6,1 státus1s1zá tantus5sza2l./sz=,6,1 tan1tu tantuss2 tantus2s2z tantus1s1za tantus5sz2á./sz=,6,1 tantus1s1zá tetanus5sza2l./sz=,7,1 teta1nu tetanuss2 tetanus2s2z tetanus1s1za tetanus5sz2á./sz=,7,1 tetanus1s1zá trolibus5sza2l./sz=,8,1 tr2olib tro1li troli1bu trolibus2s2z trolibus1s1za trolibus5sz2á./sz=,8,1 trolibus1s1zá is5szimus3sza2l./sz=,2,1 isszi1mu isszimuss2 is2s2zimus2s2z isszimus1s1za ï¬s5szimus3sza2l./sz=,2,1 ï¬sszi1mu ï¬sszimuss2 ï¬s2s2zimus2s2z ï¬sszimus1s1za is5szimus3sz2á./sz=,2,1 isszimus1s1zá ï¬s5szimus3sz2á./sz=,2,1 ï¬sszimus1s1zá kuszkus5sza2l./sz=,7,1 1kusz1ku kus2zkus2s2z kuszkus1s1za kuszkus5sz2á./sz=,7,1 kuszkus1s1zá portikus5sza2l./sz=,8,1 port1i2ku portikus2s2z portikus1s1za portikus5sz2á./sz=,8,1 portikus1s1zá aszparágus5sza2l./sz=,10,1 asz1pa aszpa1rá aszparágus4 aszpará1gu aszparágus3s2 as2zparágus2s2z2 aszparágus1s1za aszparágus5sz2á./sz=,10,1 aszparágus1s1zá bambus5sza2l./sz=,6,1 bam1bu bambus2s2z bambus1s1za bambus5sz2á./sz=,6,1 bambus1s1zá iszkus5sza2l./sz=,6,1 isz1ku is2zkus2s2z iszkus1s1za ï¬szkus5sza2l./sz=,6,1 ï¬sz1ku ï¬s2zkus2s2z ï¬szkus1s1za iszkus5sz2á./sz=,6,1 iszkus1s1zá ï¬szkus5sz2á./sz=,6,1 ï¬szkus1s1zá csaus5sza2l./sz=,5,1 csa1u csaus2s2z csaus1s1za csaus5sz2á./sz=,5,1 csaus1s1zá hibiszkus5sza2l./sz=,9,1 hi1bi hibis2z hibisz1ku hibis2zkus2s2z hibiszkus1s1za hibiszkus5sz2á./sz=,9,1 hibiszkus1s1zá kallus5sza2l./sz=,6,1 kallus1s kal1lu kallus2s2z kallus1s1za kallus5sz2á./sz=,6,1 kallus1s1zá szkarabeus5sza2l./sz=,10,1 szkara1be szkarabe1u s2zkarabeus2s2z szkarabeus1s1za szkarabeus5sz2á./sz=,10,1 szkarabeus1s1zá tezaurus5sza2l./sz=,8,1 teza2uruss2 te1za teza1u tezau1ru tezaurus2s2z2 te1zaurus1s1za tezaurus5sz2á./sz=,8,1 tezaurus1s1zá bónus5sza2l./sz=,5,1 bó1nu bónuss2 bónus2s2z bónus1s1za bónus5sz2á./sz=,5,1 bónus1s1zá akantus5sza2l./sz=,7,1 akan1tu akantuss2 akantus2s2z akantus1s1za akantus5sz2á./sz=,7,1 akantus1s1zá alkus5sza2l./sz=,5,1 alkus2s2z alkus1s1za alkus5sz2á./sz=,5,1 alkus1s1zá belorus5sza2l./sz=,7,1 belo1ru beloruss2 belorus2s2z2 belorus1s1za belorus5sz2á./sz=,7,1 belorus1s1zá eukaliptus5sza2l./sz=,10,1 eu1ka euka1li eukalip1tu eukaliptuss2 eukaliptus2s2z eukaliptus1s1za eukaliptus5sz2á./sz=,10,1 eukaliptus1s1zá gladiólus5sza2l./sz=,9,1 gla1di gladi1ó gladiólus3s gladió1lu gladiólus2s2z gladiólus1s1za gladiólus5sz2á./sz=,9,1 gladiólus1s1zá glóbus5sza2l./sz=,6,1 gló1bu glóbus2s2z glóbus1s1za glóbus5sz2á./sz=,6,1 glóbus1s1zá grimbus5sza2l./sz=,7,1 grim1bu grimbus2s2z grimbus1s1za grimbus5sz2á./sz=,7,1 grimbus1s1zá hókuszpókus5sza2l./sz=,11,1 hó1ku hókusz1p2 hókus2z hókusz1pó hó1kuszpó1ku hókus2zpókus2s2z hókuszpókus1s1za hókuszpókus5sz2á./sz=,11,1 hókuszpókus1s1zá kisbus5sza2l./sz=,6,1 kis1bu kisbus2s2z kisbus1s1za kisbus5sz2á./sz=,6,1 kisbus1s1zá koitus5sza2l./sz=,6,1 ko1i koi1tu koituss2 koitus2s2z koitus1s1za koitus5sz2á./sz=,6,1 koitus1s1zá korpus5sza2l./sz=,6,1 kor1pu korpuss2 korpus2s2z2 korpus1s1za korpus5sz2á./sz=,6,1 korpus1s1zá krampus5sza2l./sz=,7,1 kram1pu krampuss2 krampus2s2z2 krampus1s1za krampus5sz2á./sz=,7,1 krampus1s1zá mamus5sza2l./sz=,5,1 ma1mu mamuss2 mamus2s2z mamus1s1za mamus5sz2á./sz=,5,1 mamus1s1zá manus5sza2l./sz=,5,1 ma1nu manuss2 manus2s2z manus1s1za manus5sz2á./sz=,5,1 manus1s1zá nukleus5sza2l./sz=,7,1 nuk1le nukle1u nukleus2s2z nukleus1s1za nukleus5sz2á./sz=,7,1 nukleus1s1zá prius5sza2l./sz=,5,1 prius2s2z prius1s1za prius5sz2á./sz=,5,1 prius1s1zá rébus5sza2l./sz=,5,1 ré1bu rébus2s2z rébus1s1za rébus5sz2á./sz=,5,1 rébus1s1zá .szus5sza2l./sz=,4,1 .1s1zu .szuss2 .s2zus2s2z .szus1s1za .szus5sz2á./sz=,4,1 .szus1s1zá vízibus5sza2l./sz=,7,1 vízi1bu vízibus2s2z vízibus1s1za vízibus5sz2á./sz=,7,1 vízibus1s1zá abakus5sza2l./sz=,6,1 aba1ku abakus2s2z abakus1s1za abakus5sz2á./sz=,6,1 abakus1s1zá módus5sza2l./sz=,5,1 módus3s módus2s2z módus1s1za módus5sz2á./sz=,5,1 módus1s1zá árkus5sza2l./sz=,5,1 ár1ku árkus2s2z árkus1s1za árkus5sz2á./sz=,5,1 árkus1s1zá tórus5sza2l./sz=,5,1 tórus3s2 tó1ru tórus2s2z2 tórus1s1za tórus5sz2á./sz=,5,1 tórus1s1zá doktorandus5sza2l./sz=,11,1 dok1to doktora2n dokto1ra doktoran1du doktorandus2s2z doktorandus1s1za doktorandus5sz2á./sz=,11,1 doktorandus1s1zá abros5sza2l./sz=,5,1 ab1ro abros2s2z abros1s1za abros5sz2á./sz=,5,1 abros1s1zá albatros5sza2l./sz=,8,1 al1ba albatr2os albat1ro albatros2s2z albatros1s1za albatros5sz2á./sz=,8,1 albatros1s1zá diszkos5sza2l./sz=,7,1 dis2z disz1ko dis2zkos2s2z diszkos1s1za diszkos5sz2á./sz=,7,1 diszkos1s1zá epos5sza2l./sz=,4,1 epos2s2z epos1s1za epos5sz2á./sz=,4,1 epos1s1zá fallos5sza2l./sz=,6,1 fallos3s fal1lo fallos2s2z fallos1s1za ffallos5sza2l./sz=,6,1 ffallos3s ffal1lo ffallos2s2z ffallos1s1za fallos5sz2á./sz=,6,1 fallos1s1zá ffallos5sz2á./sz=,6,1 ffallos1s1zá gonos5sza2l./sz=,5,1 gonos2s2z2 gonos1s1za gonos5sz2á./sz=,5,1 gonos1s1zá káos5sza2l./sz=,4,1 ká1o káos2s2z káos1s1za káos5sz2á./sz=,4,1 káos1s1zá .kos5sza2l./sz=,3,1 .kos2s2z .kos1s1za .kos5sz2á./sz=,3,1 .kos1s1zá mítos5sza2l./sz=,5,1 mí1to mítos2s2z mítos1s1za mítos5sz2á./sz=,5,1 mítos1s1zá pátos5sza2l./sz=,5,1 pátos2s2z pátos1s1za pátos5sz2á./sz=,5,1 pátos1s1zá rinocéros5sza2l./sz=,9,1 ri1no rino1cé rinocé1ro rinocéros2s2z rinocéros1s1za rinocéros5sz2á./sz=,9,1 rinocéros1s1zá termos5sza2l./sz=,6,1 ter1mo termos2s2z termos1s1za termos5sz2á./sz=,6,1 termos1s1zá démos5sza2l./sz=,5,1 dé1mo démos2s2z démos1s1za démos5sz2á./sz=,5,1 démos1s1zá türannos5sza2l./sz=,8,1 tü1ra türan1no türannos2s2z2 türannos1s1za türannos5sz2á./sz=,8,1 türannos1s1zá vígepos5sza2l./sz=,7,1 víg1e2p víge2pos víge1po vígepos2s2z vígepos1s1za vígepos5sz2á./sz=,7,1 vígepos1s1zá profos5sza2l./sz=,6,1 pro1fo profos2s2z profos1s1za profos5sz2á./sz=,6,1 profos1s1zá topos5sza2l./sz=,5,1 to1po topos2s2z topos1s1za topos5sz2á./sz=,5,1 topos1s1zá fáros5sza2l./sz=,5,1 fáros3s fá1ro fáros2s2z fáros1s1za ffáros5sza2l./sz=,5,1 ffáros3s ffá1ro ffáros2s2z ffáros1s1za fáros5sz2á./sz=,5,1 fáros1s1zá ffáros5sz2á./sz=,5,1 ffáros1s1zá filos5sza2l./sz=,5,1 fi1lo filos2s2z filos1s1za ï¬los5sza2l./sz=,4,1 ï¬los2s2z ï¬los1s1za filos5sz2á./sz=,5,1 filos1s1zá ï¬los5sz2á./sz=,4,1 ï¬los1s1zá héros5sza2l./sz=,5,1 hé1ro héros2s2z héros1s1za héros5sz2á./sz=,5,1 héros1s1zá kozmos5sza2l./sz=,6,1 koz1mo kozmos2s2z kozmos1s1za kozmos5sz2á./sz=,6,1 kozmos1s1zá oros5sza2l./sz=,4,1 oros2s2z oros1s1za oros5sz2á./sz=,4,1 oros1s1zá bricses5sze2l./sz=,7,1 bric2s bri1c1se bricses2s2z bricses1s1ze bricses5sz2é./sz=,7,1 bricses1s1zé csenkes5sze2l./sz=,7,1 csen1ke csenkes2s2z csenkes1s1ze csenkes5sz2é./sz=,7,1 csenkes1s1zé cseples5sze2l./sz=,7,1 csep1le cseples2s2z cseples1s1ze cseples5sz2é./sz=,7,1 cseples1s1zé csipes5sze2l./sz=,6,1 csi1pe csipes2s2z csipes1s1ze csipes5sz2é./sz=,6,1 csipes1s1zé fitnes5sze2l./sz=,6,1 fit1ne fitnes2s2z fitnes1s1ze ï¬tnes5sze2l./sz=,5,1 ï¬t1ne ï¬tnes2s2z ï¬tnes1s1ze fitnes5sz2é./sz=,6,1 fitnes1s1zé ï¬tnes5sz2é./sz=,5,1 ï¬tnes1s1zé herpes5sze2l./sz=,6,1 her1pe herpes2s2z herpes1s1ze herpes5sz2é./sz=,6,1 herpes1s1zé maces5sze2l./sz=,5,1 ma1ce maces2s2z maces1s1ze maces5sz2é./sz=,5,1 maces1s1zé maces5sza2l./sz=,5,1 maces1s1za maces5sz2á./sz=,5,1 maces1s1zá .nes5sze2l./sz=,3,1 .nes2s2z .nes1s1ze .nes5sz2é./sz=,3,1 .nes1s1zé notes5sze2l./sz=,5,1 no1te notes2s2z notes1s1ze notes5sz2é./sz=,5,1 notes1s1zé notes5sza2l./sz=,5,1 notes1s1za notes5sz2á./sz=,5,1 notes1s1zá rekes5s1ze/sz=,5,1 rekes5sze2l./sz=,5,1 rekes2s2z rekes5sz2é./sz=,5,1 rekes1s1zé repes5s1ze/sz=,5,1 repes5sze2l./sz=,5,1 repes2s2z repes5s1zé/sz=,5,1 repes5sz2é./sz=,5,1 retes5sze2l./sz=,5,1 retes2s2z retes1s1ze retes5sz2é./sz=,5,1 retes1s1zé szes5sze2l./sz=,4,1 s2zes2s2z 1s1zes1s1ze szes5sz2é./sz=,4,1 szes1s1zé termes5s1ze/sz=,6,1 termes5sze2l./sz=,6,1 ter1me termes2s2z termes5s1zé/sz=,6,1 termes5sz2é./sz=,6,1 terpes5s1ze/sz=,6,1 terpes5sze2l./sz=,6,1 ter1pe terpes2s2z terpes5s1zé/sz=,6,1 terpes5sz2é./sz=,6,1 hosztes5sze2l./sz=,7,1 hosz1te hos2ztes2s2z hosztes1s1ze hosztes5sz2é./sz=,7,1 hosztes1s1zé hosztes5sza2l./sz=,7,1 hosztes1s1za hosztes5sz2á./sz=,7,1 hosztes1s1zá áteres5sze2l./sz=,6,1 áteres5s1ze/sz=,6,1 áte1re áteres2s2z áteres5sz2é./sz=,6,1 áteres5s1zé/sz=,6,1 áteres5sza2l./sz=,6,1 áteres1s1za áteres5sz2á./sz=,6,1 áteres1s1zá koles5sze2l./sz=,5,1 ko1le koles2s2z koles1s1ze koles5sz2é./sz=,5,1 koles1s1zé koles5sza2l./sz=,5,1 koles3s1za koles5sz2á./sz=,5,1 koles3s1zá barches5sze2l./sz=,7,1 barc2h bar1c1he barches2s2z barches1s1ze barches5sz2é./sz=,7,1 barches1s1zé barches5sza2l./sz=,7,1 barches1s1za barches5sz2á./sz=,7,1 barches1s1zá cserkes5sze2l./sz=,7,1 cser1k cser1ke cserkes2s2z cserkes1s1ze cserkes5sz2é./sz=,7,1 cserkes1s1zé tábes5sze2l./sz=,5,1 tábes2s2z tábes1s1ze tábes5sz2é./sz=,5,1 tábes1s1zé tábes5sza2l./sz=,5,1 tábes1s1z1a tábes5sz2á./sz=,5,1 tábes1s1z1á adres5sze2l./sz=,5,1 adres5s1ze/sz=,5,1 ad1re adres2s2z adres5sz2é./sz=,5,1 adres5s1zé/sz=,5,1 adres5sza2l./sz=,5,1 adres1s1za adres5s1zá/sz=,5,1 adres5sz2á./sz=,5,1 deges5sze2l./sz=,5,1 degess2 deges2s2z deges1s1ze deges5sz2é./sz=,5,1 deges1s1zé delikates5sze2l./sz=,9,1 de1li deli1ka delika1te delikates2s2z delikates1s1ze delikates5sz2é./sz=,9,1 delikates1s1zé delikates5sza2l./sz=,9,1 delikates1s1za delikates5sz2á./sz=,9,1 delikates1s1zá diabétes5sze2l./sz=,8,1 dia1bé diabé1te diabétes2s2z diabétes1s1ze diabétes5sz2é./sz=,8,1 diabétes1s1zé éces5sze2l./sz=,4,1 éces2s2z éces1s1ze éces5sz2é./sz=,4,1 éces1s1zé fines5sze2l./sz=,5,1 fi1ne fines2s2z fines1s1ze ï¬nes5sze2l./sz=,4,1 ï¬nes2s2z ï¬nes1s1ze fines5sz2é./sz=,5,1 fines1s1zé ï¬nes5sz2é./sz=,4,1 ï¬nes1s1zé gatyes5sze2l./sz=,6,1 gat2y ga1tye gatyes2s2z gatyes1s1ze gatyes5sz2é./sz=,6,1 gatyes1s1zé gatyes5sza2l./sz=,6,1 gatyes1s1za gatyes5sz2á./sz=,6,1 gatyes1s1zá lues5sze2l./sz=,4,1 lues2s2z lues1s1ze flues5sze2l./sz=,4,1 flues2s2z flues1s1ze lues5sz2é./sz=,4,1 lues1s1zé flues5sz2é./sz=,4,1 flues1s1zé lues5sza2l./sz=,4,1 lues1s1za flues5sza2l./sz=,4,1 flues1s1za lues5sz2á./sz=,4,1 lues1s1zá flues5sz2á./sz=,4,1 flues1s1zá metres5sze2l./sz=,6,1 met1re metres2s2z metres1s1ze metres5sz2é./sz=,6,1 metres1s1zé pajes5sze2l./sz=,5,1 pa1je pajes2s2z pajes1s1ze pajes5sz2é./sz=,5,1 pajes1s1zé pajes5sza2l./sz=,5,1 pajes1s1za pajes5sz2á./sz=,5,1 pajes1s1zá sábes5sze2l./sz=,5,1 sábes2s2z sábes1s1ze sábes5sz2é./sz=,5,1 sábes1s1zé sábes5sza2l./sz=,5,1 sábes1s1z1a sábes5sz2á./sz=,5,1 sábes1s1z1á sames5sze2l./sz=,5,1 sames2s2z sames1s1ze sames5sz2é./sz=,5,1 sames1s1zé sames5sza2l./sz=,5,1 sames1s1za sames5sz2á./sz=,5,1 sames1s1zá tées5sze2l./sz=,4,1 té1e tées2s2z tées1s1ze tées5sz2é./sz=,4,1 tées1s1zé vátes5sze2l./sz=,5,1 vátes2s2z vátes1s1ze vátes5sz2é./sz=,5,1 vátes1s1zé vátes5sza2l./sz=,5,1 vátes1s1za vátes5sz2á./sz=,5,1 vátes1s1zá .ces5sze2l./sz=,3,1 .ces2s2z .ces1s1ze .ces5sz2é./sz=,3,1 .ces1s1zé .des5sze2l./sz=,3,1 .des2s2z .des1s1ze .des5sz2é./sz=,3,1 .des1s1zé .es5sze2l./sz=,2,1 .es2s2z .es1s1ze .es5s1zé/sz=,2,1 .es5sz2é./sz=,2,1 .fes5sze2l./sz=,3,1 .fes2s2z .fes1s1ze .fes5sz2é./sz=,3,1 .fes1s1zé .ges5sze2l./sz=,3,1 .gess2 .ges2s2z .ges1s1ze .ges5sz2é./sz=,3,1 .ges1s1zé csipis5sze2l./sz=,6,1 csi1pi csipis2s2z csipis1s1ze csipis5sz2é./sz=,6,1 csipis1s1zé égis5sze2l./sz=,4,1 égis2s2z égis1s1ze égis5sz2é./sz=,4,1 égis1s1zé firnis5sze2l./sz=,6,1 fir1ni firnis2s2z firnis1s1ze ï¬rnis5sze2l./sz=,5,1 ï¬r1ni ï¬rnis2s2z ï¬rnis1s1ze firnis5sz2é./sz=,6,1 firnis1s1zé ï¬rnis5sz2é./sz=,5,1 ï¬rnis1s1zé gasztritis5sze2l./sz=,10,1 gaszt1ri gasztri1ti gas2ztritis2s2z gasztritis1s1ze gasztritis5sz2é./sz=,10,1 gasztritis1s1zé gasztritis5sza2l./sz=,10,1 gasztritis1s1za gasztritis5sz2á./sz=,10,1 gasztritis1s1zá íbis5sze2l./sz=,4,1 íbis3s íbis2s2z íbis1s1ze íbis5sz2é./sz=,4,1 íbis1s1zé íris5sze2l./sz=,4,1 íris2s2z íris1s1ze íris5sz2é./sz=,4,1 íris1s1zé nárcis5sza2l./sz=,6,1 nár1ci nárcis2s2z nárcis1s1za nárcis5sz2á./sz=,6,1 nárcis1s1zá szifilis5sze2l./sz=,8,1 szif8i szifi1li s2zifilis2s2z szifilis1s1ze sziï¬lis5sze2l./sz=,7,1 sziï¬ sziï¬1li s2ziï¬lis2s2z sziï¬lis1s1ze szifilis5sz2é./sz=,8,1 szifilis1s1zé sziï¬lis5sz2é./sz=,7,1 sziï¬lis1s1zé tenis5sze2l./sz=,5,1 tenis2s2z tenis1s1ze tenis5sz2é./sz=,5,1 tenis1s1zé fityis5sze2l./sz=,6,1 fit2y fi1tyi fityis2s2z fityis1s1ze ï¬tyis5sze2l./sz=,5,1 ï¬t2y ï¬1tyi ï¬tyis2s2z ï¬tyis1s1ze fityis5sz2é./sz=,6,1 fityis1s1zé ï¬tyis5sz2é./sz=,5,1 ï¬tyis1s1zé hepatitis5sze2l./sz=,9,1 he1pa hep2atit hepa1ti hepa1ti1ti hepatitis2s2z hepatitis1s1ze hepatitis5sz2é./sz=,9,1 hepatitis1s1zé hepatitis5sza2l./sz=,9,1 hepatitis1s1za hepatitis5sz2á./sz=,9,1 hepatitis1s1zá meningitis5sze2l./sz=,10,1 menin1gi menin3g2i1ti meningitis2s2z meningitis1s1ze meningitis5sz2é./sz=,10,1 meningitis1s1zé nekropolis5sza2l./sz=,10,1 nek1ro nekr2opol nekro1po nekropo1li nekropolis2s2z nekropolis1s1za nekropolis5sz2á./sz=,10,1 nekropolis1s1zá gneis5sze2l./sz=,5,1 gneis2s2z gneis1s1ze gneis5sz2é./sz=,5,1 gneis1s1zé grátis5sza2l./sz=,6,1 grá1ti grátis2s2z grátis1s1za grátis5sz2á./sz=,6,1 grátis1s1zá imbis5sze2l./sz=,5,1 im1bi imbis3s imbis2s2z imbis1s1ze ï¬mbis5sze2l./sz=,5,1 ï¬m1bi ï¬mbis3s ï¬mbis2s2z ï¬mbis1s1ze imbis5sz2é./sz=,5,1 imbis1s1zé ï¬mbis5sz2é./sz=,5,1 ï¬mbis1s1zé klemátis5sza2l./sz=,8,1 kle1má klemá1ti klemátis2s2z klemátis1s1za klemátis5sz2á./sz=,8,1 klemátis1s1zá kumis5sza2l./sz=,5,1 ku1mi kumis2s2z kumis1s1za kumis5sz2á./sz=,5,1 kumis1s1zá lápis5sza2l./sz=,5,1 lápis2s2z lápis1s1za flápis5sza2l./sz=,5,1 flápis2s2z flápis1s1za lápis5sz2á./sz=,5,1 lápis1s1zá flápis5sz2á./sz=,5,1 flápis1s1zá polis5sza2l./sz=,5,1 po1li polis2s2z polis1s1za polis5sz2á./sz=,5,1 polis1s1zá akropolis5sza2l./sz=,9,1 akr2opol akro1po akropo1li akropolis2s2z akropolis1s1za akropolis5sz2á./sz=,9,1 akropolis1s1zá amarillis5sze2l./sz=,9,1 ama1ri amaril1li amarillis2s2z amarillis1s1ze amarillis5sz2é./sz=,9,1 amarillis1s1zé amarillis5sza2l./sz=,9,1 amarillis1s1za amarillis5sz2á./sz=,9,1 amarillis1s1zá biznis5sze2l./sz=,6,1 biz1ni biznis2s2z biznis1s1ze biznis5sz2é./sz=,6,1 biznis1s1zé difteritis5sze2l./sz=,10,1 dif1te difte1ri difteri1ti difteritis2s2z difteritis1s1ze difteritis5sz2é./sz=,10,1 difteritis1s1zé digitális5sza2l./sz=,9,1 di1gi dig2i1tá digitális3s digitá1li digitális2s2z digitális1s1za digitális5sz2á./sz=,9,1 digitális1s1zá epidermis5sze2l./sz=,9,1 epi1de epider1mi epidermis2s2z epidermis1s1ze epidermis5sz2é./sz=,9,1 epidermis1s1zé panegiris5sze2l./sz=,9,1 pa1ne pane1gi panegi1ri panegiris2s2z panegiris1s1ze panegiris5sz2é./sz=,9,1 panegiris1s1zé panegiris5sza2l./sz=,9,1 panegiris1s1za panegiris5sz2á./sz=,9,1 panegiris1s1zá pénis5sze2l./sz=,5,1 pé1ni pénis2s2z pénis1s1ze pénis5sz2é./sz=,5,1 pénis1s1zé propolis5sza2l./sz=,8,1 pr2opol pro1po propo1li propolis2s2z propolis1s1za propolis5sz2á./sz=,8,1 propolis1s1zá borgis5sza2l./sz=,6,1 bor1gi borgis2s2z borgis1s1za borgis5sz2á./sz=,6,1 borgis1s1zá .cis5sze2l./sz=,3,1 .cis2s2z .cis1s1ze .cis5sz2é./sz=,3,1 .cis1s1zé .dis5sze2l./sz=,3,1 .dis5s1ze/sz=,3,1 .dis2s2z .dis5sz2é./sz=,3,1 .dis1s1zé .eis5sze2l./sz=,3,1 .e1i .eis2s2z .eis1s1ze .eis5sz2é./sz=,3,1 .eis1s1zé .fis5sze2l./sz=,3,1 .fis2s2z .fis1s1ze .ï¬s5sze2l./sz=,2,1 .ï¬s2s2z .ï¬s1s1ze .fis5sz2é./sz=,3,1 .fis1s1zé .ï¬s5sz2é./sz=,2,1 .ï¬s1s1zé .gis5sze2l./sz=,3,1 .gis2s2z .gis1s1ze .gis5sz2é./sz=,3,1 .gis1s1zé .ais5sze2l./sz=,3,1 .a2iss .ais2s2z .ais1s1ze .ais5sz2é./sz=,3,1 .ais1s1zé .ais5sza2l./sz=,3,1 .ais1s1za .ais5sz2á./sz=,3,1 .ais1s1zá .his5sze2l./sz=,3,1 .his2s2z .his1s1ze .his5sz2é./sz=,3,1 .his1s1zé szis5sze2l./sz=,4,1 sziss2 s2zis2s2z szis1s1ze szis5sz2é./sz=,4,1 szis1s1zé aras5sza2l./sz=,4,1 aras2s2z aras1s1za aras5sz2á./sz=,4,1 aras1s1zá atlas5sza2l./sz=,5,1 at1la atlas2s2z atlas1s1za atlas5sz2á./sz=,5,1 atlas1s1zá dugas5sza2l./sz=,5,1 dugas2s2z dugas1s1za dugas5sz2á./sz=,5,1 dugas1s1zá forras5s1za/sz=,6,1 forras5sza2l./sz=,6,1 for1ra forras2s2z fforras5s1za/sz=,6,1 fforras5sza2l./sz=,6,1 ffor1ra fforras2s2z forras5s1zá/sz=,6,1 forras5sz2á./sz=,6,1 fforras5s1zá/sz=,6,1 fforras5sz2á./sz=,6,1 grimas5sza2l./sz=,6,1 gri1ma grimas2s2z grimas1s1za grimas5sz2á./sz=,6,1 grimas5s1zá/sz=,6,1 kompas5sza2l./sz=,6,1 kom1pa kompas2s2z kompas1s1za kompas5sz2á./sz=,6,1 kompas1s1zá kutas5sza2l./sz=,5,1 ku2tas2s2z kutas1s1za kutas5sz2á./sz=,5,1 kutas3s1zá kuvas5sza2l./sz=,5,1 ku1va kuvas2s2z kuvas1s1za kuvas5sz2á./sz=,5,1 kuvas1s1zá melas5sza2l./sz=,5,1 melas2s2z melas1s1za melas5sz2á./sz=,5,1 melas1s1zá panas5sza2l./sz=,5,1 panas2s2z panas1s1za panas5sz2á./sz=,5,1 panas1s1zá 1s1zakas5s1za/sz=,6,1 szakas5sza2l./sz=,6,1 sza1ka s2zakas2s2z szakas5s1zá/sz=,6,1 szakas5sz2á./sz=,6,1 támas5s1za/sz=,5,1 támas5sza2l./sz=,5,1 támas2s2z támas5s1zá/sz=,5,1 támas5sz2á./sz=,5,1 tapas5s1za/sz=,5,1 tapas5sza2l./sz=,5,1 tapas2s2z tapas5s1zá/sz=,5,1 tapas5sz2á./sz=,5,1 tavas5sza2l./sz=,5,1 tavas2s2z tavas1s1za tavas5sz2á./sz=,5,1 tavas1s1zá teras5sza2l./sz=,5,1 teras2s2z teras1s1za teras5sz2á./sz=,5,1 teras1s1zá torlas5sza2l./sz=,6,1 tor1la torlas2s2z torlas1s1za torlas5sz2á./sz=,6,1 torlas1s1zá válas5s1za/sz=,5,1 válas5sza2l./sz=,5,1 válas2s2z válas5s1zá/sz=,5,1 válas5sz2á./sz=,5,1 vias5sza2l./sz=,4,1 vias2s2z vias1s1za vias5sz2á./sz=,4,1 vias1s1zá vigas5sza2l./sz=,5,1 vigas2s2z vigas1s1za vigas5sz2á./sz=,5,1 vigas1s1zá katyvas5sza2l./sz=,7,1 katy1va katyvas2s2z katyvas1s1za katyvas5sz2á./sz=,7,1 katyvas1s1zá csimas5sza2l./sz=,6,1 csi1ma csimas2s2z csimas1s1za csimas5sz2á./sz=,6,1 csimas5s1zá/sz=,6,1 lampas5sza2l./sz=,6,1 lam1pa lampas2s2z lampas1s1za flampas5sza2l./sz=,6,1 flam1pa flampas2s2z flampas1s1za lampas5sz2á./sz=,6,1 lampas1s1zá flampas5sz2á./sz=,6,1 flampas1s1zá ragas5s1za/sz=,5,1 ragas5sza2l./sz=,5,1 ragas2s2z ragas5s1zá/sz=,5,1 ragas5sz2á./sz=,5,1 rakas5sza2l./sz=,5,1 rakas5s1za/sz=,5,1 rakas2s2z rakas5sz2á./sz=,5,1 rakas5s1zá/sz=,5,1 horpas5s1za/sz=,6,1 horpas5sza2l./sz=,6,1 hor1pa horpas2s2z horpas5s1zá/sz=,6,1 horpas5sz2á./sz=,6,1 kamas5sza2l./sz=,5,1 k2amas kamas2s2z kamas1s1za kamas5sz2á./sz=,5,1 kamas5s1zá/sz=,5,1 .as5sza2l./sz=,2,1 .as2s2z .as1s1za .as5sz2á./sz=,2,1 .as1s1zá fas5sza2l./sz=,3,1 fas2s2z fas1s1za ffas5sza2l./sz=,3,1 ffas2s2z ffas1s1za fas5sz2á./sz=,3,1 fas1s1zá ffas5sz2á./sz=,3,1 ffas1s1zá olas5sza2l./sz=,4,1 olas2s2z olas1s1za olas5sz2á./sz=,4,1 olas1s1zá csupas5sza2l./sz=,6,1 csu1pa csupas2s2z csupas1s1za csupas5sz2á./sz=,6,1 csupas1s1zá kopas5s1za/sz=,5,1 kopas5sza2l./sz=,5,1 ko1pa kopas2s2z kopas5s1zá/sz=,5,1 kopas5sz2á./sz=,5,1 mamlas5sza2l./sz=,6,1 mam1la mamlas2s2z mamlas1s1za mamlas5sz2á./sz=,6,1 mamlas1s1zá pimas5sza2l./sz=,5,1 pi1ma pimas2s2z pimas1s1za pimas5sz2á./sz=,5,1 pimas5s1zá/sz=,5,1 ravas5sza2l./sz=,5,1 ravas2s2z ravas1s1za ravas5sz2á./sz=,5,1 ravas1s1zá csikas5sza2l./sz=,6,1 csikas2 csi1ka csikas2s2z csikas1s1za csikas5sz2á./sz=,6,1 csikas1s1zá komis5sza2l./sz=,5,1 komis2s2z komis1s1za komis5sz2á./sz=,5,1 komis1s1zá cseremis5sze2l./sz=,8,1 csere1mi cseremis2s2z cseremis1s1ze cseremis5sz2é./sz=,8,1 cseremis1s1zé élos5sza2l./sz=,4,1 élos2s2z élos1s1za élos5sz2á./sz=,4,1 élos1s1zá plus5sza2l./sz=,4,1 plus2s2z plus1s1za plus5sz2á./sz=,4,1 plus1s1zá mínus5sza2l./sz=,5,1 mí1nu mínuss2 mínus2s2z mínus1s1za mínus5sz2á./sz=,5,1 mínus1s1zá posztumus5sza2l./sz=,9,1 posz1tu posztu1mu posztumuss2 pos2ztumus2s2z posztumus1s1za posztumus5sz2á./sz=,9,1 posztumus1s1zá különbus5sza2l./sz=,8,1 kü1lö külön1bu különbus2s2z különbus1s1za különbus5sz2á./sz=,8,1 különbus1s1zá .vénus5sza2l./sz=,5,1 .vé1nu .vénuss2 .vénus2s2z .vénus1s1za .vénus5sz2á./sz=,5,1 .vénus1s1zá .pitagoras5sza2l./sz=,9,1 .pi1ta .pita1go .pitagor1ass .pitago1ra .pitagoras2s2z .pitagoras1s1za .pitagoras5sz2á./sz=,9,1 .pitagoras1s1zá .leónidas5sza2l./sz=,8,1 .le1ó .leó1ni .leóni1da .leóni2d1as2s2z .leónidas1s1za .leónidas5sz2á./sz=,8,1 .leónidas1s1zá .midas5sza2l./sz=,5,1 .mi1da .mi2d1as2s2z .midas1s1za .midas5sz2á./sz=,5,1 .midas1s1zá .pheidias5sza2l./sz=,8,1 .phe2i .p1he .phei1di .pheidi1a .pheidias2s2z .pheidias1s1za .pheidias5sz2á./sz=,8,1 .pheidias1s1zá .iris5sze2l./sz=,4,1 .i1ri .iris2s2z .iris1s1ze .iris5sz2é./sz=,4,1 .iris1s1zé .boris5sza2l./sz=,5,1 .bo2r1iss .bo1ri .boris2s2z .boris1s1za .boris5sz2á./sz=,5,1 .boris1s1zá .adonis5sza2l./sz=,6,1 .a1do .ado1ni .adonis2s2z .adonis1s1za .adonis5sze2l./sz=,6,1 .adonis1s1ze .adonis5sz2é./sz=,6,1 .adonis1s1zé .adonis5sz2á./sz=,6,1 .adonis1s1zá .artemis5sze2l./sz=,7,1 .ar1te .arte1mi .artemis2s2z .artemis1s1ze .artemis5sz2é./sz=,7,1 .artemis1s1zé .dzsingis5sze2l./sz=,8,1 .d2z .1d1z1si .dz2s .dzsin1gi .dzsingis2s2z .dzsingis1s1ze .dzsingis5sz2é./sz=,8,1 .dzsingis1s1zé .ízis5sze2l./sz=,4,1 .íziss2 .ízis2s2z .ízis1s1ze .ízis5sz2é./sz=,4,1 .ízis1s1zé .kharübdis5sze2l./sz=,9,1 .k1ha .kha1rü .kharüb1di .kharübdis5s1ze/sz=,9,1 .kharübdis2s2z .kharübdis5sz2é./sz=,9,1 .kharübdis1s1zé .oziris5sze2l./sz=,6,1 .o1zi .ozi1ri .oziris2s2z .oziris1s1ze .oziris5sz2é./sz=,6,1 .oziris1s1zé .ikaros5sza2l./sz=,6,1 .i1ka .ika1ro .ikaros2s2z .ikaros1s1za .ikaros5sz2á./sz=,6,1 .ikaros1s1zá .kerberos5sza2l./sz=,8,1 .ker1be .kerbe1ro .kerberos2s2z .kerberos1s1za .kerberos5sz2á./sz=,8,1 .kerberos1s1zá .ptolemaios5sza2l./sz=,10,1 .p1to .pto1le .ptole1ma .ptolema1i .ptolemai1o .ptolemaios2s2z .ptolemaios1s1za .ptolemaios5sz2á./sz=,10,1 .ptolemaios1s1zá .homéros5sza2l./sz=,7,1 .ho1mé .homé1ro .homéros2s2z .homéros1s1za .homéros5sz2á./sz=,7,1 .homéros1s1zá .aiszkhülos5sza2l./sz=,10,1 .2ais2z .aisz1k2hü .aiszkhü1lo .ais2zkhülos2s2z .aiszkhülos1s1za .aiszkhülos5sz2á./sz=,10,1 .aiszkhülos1s1zá .aiszópos5sza2l./sz=,8,1 .ai1s1zó .aiszó1po .ais2zópos2s2z .aiszópos1s1za .aiszópos5sz2á./sz=,8,1 .aiszópos1s1zá .daidalos5sza2l./sz=,8,1 .1dai1da .daidalos3s .daida1lo .daidalos2s2z .daidalos1s1za .daidalos5sz2á./sz=,8,1 .daidalos1s1zá .démokritos5sza2l./sz=,10,1 .dé1mo .démok1ri .démokri1to .démokritos2s2z .démokritos1s1za .démokritos5sz2á./sz=,10,1 .démokritos1s1zá .dionüszos5sza2l./sz=,9,1 .di1o .dio1nü .dionüs2z .dionü1s1zo .dionüs2zos2s2z .dionüszos1s1za .dionüszos5sz2á./sz=,9,1 .dionüszos1s1zá .epikuros5sza2l./sz=,8,1 .e1pi .ep2ikur .epi1ku .epikuros2 .epiku1ro .epikuros2s2z .epikuros1s1za .epikuros5sz2á./sz=,8,1 .epikuros1s1zá .hélios5sza2l./sz=,6,1 .hé1li .héli1o .hélios2s2z .hélios1s1za .hélios5sz2á./sz=,6,1 .hélios1s1zá .héphaisztos5sza2l./sz=,11,1 .hé1ph .hép2ha2i .hép1ha .héph2ais2z .héphaisz1to .héphais2ztos2s2z .héphaisztos1s1za .héphaisztos5sz2á./sz=,11,1 .héphaisztos1s1zá .hérakleitos5sza2l./sz=,11,1 .hé1ra2 .hérak1le .hérakle1i .héraklei1to .hérakleitos2s2z .hérakleitos1s1za .hérakleitos5sz2á./sz=,11,1 .hérakleitos1s1zá .hérodotos5sza2l./sz=,9,1 .hé1ro .héro1do .hérodo1to .hérodotos2s2z .hérodotos1s1za .hérodotos5sz2á./sz=,9,1 .hérodotos1s1zá .kroiszos5sza2l./sz=,8,1 .k1ro .kro2is .kro1i .krois2z .kroi1s1zo .krois2zos2s2z .kroiszos1s1za .kroiszos5sz2á./sz=,8,1 .kroiszos1s1zá .milétos5sza2l./sz=,7,1 .mi1lé .milé1to .milétos2s2z .milétos1s1za .milétos5sz2á./sz=,7,1 .milétos1s1zá .pindaros5sza2l./sz=,8,1 .2pind .pin1da .pinda1ro .pindaros2s2z .pindaros1s1za .pindaros5sz2á./sz=,8,1 .pindaros1s1zá .taigetos5sza2l./sz=,8,1 .tai1ge .taige1to .taigetos2s2z .taigetos1s1za .taigetos5sz2á./sz=,8,1 .taigetos1s1zá .titus5sza2l./sz=,5,1 .ti1tu .tituss2 .titus2s2z .titus1s1za .titus5sz2á./sz=,5,1 .titus1s1zá .akhilleus5sza2l./sz=,9,1 .ak2hil .ak1hi .akhil1le .akhille1u .akhilleus2s2z .akhilleus1s1za .akhilleus5sz2á./sz=,9,1 .akhilleus1s1zá .zeus5sza2l./sz=,4,1 .ze1u .zeus2s2z .zeus1s1za .zeus5sz2á./sz=,4,1 .zeus1s1zá .oidipus5sza2l./sz=,7,1 .o1i .oi1di .oidi1pu .oidipuss2 .oidipus2s2z2 .oidipus1s1za .oidipus5sz2á./sz=,7,1 .oidipus1s1zá .kolumbus5sza2l./sz=,8,1 .ko1lu .kolum1bu .kolumbus2s2z .kolumbus1s1za .kolumbus5sz2á./sz=,8,1 .kolumbus1s1zá .kopernikus5sza2l./sz=,10,1 .ko1pe .koper1ni .koperni1ku .kopernikus2s2z .kopernikus1s1za .kopernikus5sz2á./sz=,10,1 .kopernikus1s1zá .odüs5s1ze/sz=,4,1 .odüs5szeus3sza2l./sz=,4,1 .o1dü .odüs2s2z .odüs2sze1u .odüs2s2zeus2s2z .odüsszeus1s1za .odüs5szeus3sz2á./sz=,4,1 .odüsszeus1s1zá .orpheus5sza2l./sz=,7,1 .or1ph .orp2he .orphe1u .orpheus2s2z .orpheus1s1za .orpheus5sz2á./sz=,7,1 .orpheus1s1zá .prométheus5sza2l./sz=,10,1 .pro1mé .promét1he .prométhe1u .prométheus2s2z .prométheus1s1za .prométheus5sz2á./sz=,10,1 .prométheus1s1zá .thészeus5sza2l./sz=,8,1 .t1hé .thés2z .thé1s1ze .thé2sze1u .thés2zeus2s2z .thészeus1s1za .thészeus5sz2á./sz=,8,1 .thészeus1s1zá .elbrus5sza2l./sz=,6,1 .el1b2ru .elbruss2 .elbrus2s2z2 .elbrus1s1za .elbrus5sz2á./sz=,6,1 .elbrus1s1zá .fadrus5sza2l./sz=,6,1 .fa1d2r .fad1ru .fadruss2 .fadrus2s2z2 .fadrus1s1za .fadrus5sz2á./sz=,6,1 .fadrus1s1zá .fus5sza2l./sz=,3,1 .1fu .fus2s2z .fus1s1za .fus5sz2á./sz=,3,1 .fus1s1zá .klaus5sza2l./sz=,5,1 .kla2us .klaus2s2z .klaus1s1za .klaus5sz2á./sz=,5,1 .klaus1s1zá .kraus5sza2l./sz=,5,1 .k1ra .kra1u .kraus2s2z .kraus1s1za .kraus5sz2á./sz=,5,1 .kraus1s1zá .nikodemus5sza2l./sz=,9,1 .ni1ko .niko1de .nikode2mus .nikode1mu .nikodemuss2 .nikodemus2s2z .nikodemus1s1za .nikodemus5sz2á./sz=,9,1 .nikodemus1s1zá .nikodémus5sza2l./sz=,9,1 .niko1dé .nikodé1mu .nikodémuss2 .nikodémus2s2z .nikodémus1s1za .nikodémus5sz2á./sz=,9,1 .nikodémus1s1zá .straus5sza2l./sz=,6,1 .st1ra .stra1u .straus2s2z .straus1s1za .straus5sz2á./sz=,6,1 .straus1s1zá .szervátius5sza2l./sz=,10,1 .szer1vá .szervá1ti .szerváti1u .s2zervátius2s2z .szervátius1s1za .szervátius5sz2á./sz=,10,1 .szervátius1s1zá .friderikus5sza2l./sz=,10,1 .f1ri .fri1de .f1ride1ri .frideri1ku .friderikus2s2z .friderikus1s1za .friderikus5sz2á./sz=,10,1 .friderikus1s1zá .fides5sze2l./sz=,5,1 .fi1de .fides2s2z .fides1s1ze .ï¬des5sze2l./sz=,4,1 .ï¬1de .ï¬des2s2z .ï¬des1s1ze .fides5sz2é./sz=,5,1 .fides1s1zé .ï¬des5sz2é./sz=,4,1 .ï¬des1s1zé .uránus5sza2l./sz=,6,1 .u1rá .urá1nu .uránuss2 .uránus2s2z .uránus1s1za .uránus5sz2á./sz=,6,1 .uránus1s1zá .szaturnus5sza2l./sz=,9,1 .sz2atur .sza1tu .szatur1nu .szaturnuss2 .s2zaturnus2s2z .1s1zaturnus1s1za .szaturnus5sz2á./sz=,9,1 .szaturnus1s1zá .neptunus5szal/sz=,8,1 .nep1tu .neptu1nu .neptunuss2 .neptunus2s2z .neptunus1s1za .neptunus5sz2á./sz=,8,1 .neptunus1s1zá .pireus5sza2l./sz=,6,1 .pi1re .pire1u .pireus2s2z .pireus1s1za .pireus5sz2á./sz=,6,1 .pireus1s1zá .damaszkus5sza2l./sz=,9,1 .d2amas .da1ma .damas2z .damasz1ku .damas2zkus2s2z .damaszkus1s1za .damaszkus5sz2á./sz=,9,1 .damaszkus1s1zá .boszporus5sza2l./sz=,9,1 .bos2z .bosz1po .boszpo1ru .boszporuss2 .bos2zporus2s2z2 .boszporus1s1za .boszporus5sz2á./sz=,9,1 .boszporus1s1zá .gambus5sza2l./sz=,6,1 .gam1bu .gambus2s2z .gambus1s1za .gambus5sz2á./sz=,6,1 .gambus1s1zá .hus5sza2l./sz=,3,1 .1hu .hus2s2z .hus1s1za .hus5sz2á./sz=,3,1 .hus1s1zá .pollus5sza2l./sz=,6,1 .pol2l1u2s .pollus1s .pol1lu .pollus2s2z .pollus1s1za .pollus5sz2á./sz=,6,1 .pollus1s1zá .prus5sza2l./sz=,4,1 .p1ru .pruss2 .prus2s2z2 .prus1s1za .prus5sz2á./sz=,4,1 .prus1s1zá .rókus5sza2l./sz=,5,1 .1ró .ró1ku .rókus2s2z .rókus1s1za .rókus5sz2á./sz=,5,1 .rókus1s1zá .spinus5sza2l./sz=,6,1 .s1pi .spi1nu .spinuss2 .spinus2s2z .spinus1s1za .spinus5sz2á./sz=,6,1 .spinus1s1zá .sterus5sza2l./sz=,6,1 .ste1ru .steruss2 .sterus2s2z2 .sterus1s1za .sterus5sz2á./sz=,6,1 .sterus1s1zá .szalakus5sza2l./sz=,8,1 .sz1a2la1ku .sza1la .s2zalakus2s2z .s1zalakus1s1za .szalakus5sz2á./sz=,8,1 .szalakus1s1zá .pankas5sza2l./sz=,6,1 .pan1ka .pankas2s2z .pankas1s1za .pankas5sz2á./sz=,6,1 .pankas1s1zá .antarktis5sza2l./sz=,9,1 .an2t1ark .an1ta .antark1ti .antarktis2s2z .antarktis1s1za .antarktis5sz2á./sz=,9,1 .antarktis1s1zá .atlantis5sza2l./sz=,8,1 .at1la .atlan1ti .atlantis2s2z .atlantis1s1za .atlantis5sz2á./sz=,8,1 .atlantis1s1zá .tunis5sza2l./sz=,5,1 .tu1ni .tunis2s2z .tunis1s1za .tunis5sz2á./sz=,5,1 .tunis1s1zá .memphis5sza2l./sz=,7,1 .memp1hi .memphis2s2z .memphis1s1za .memphis5sz2á./sz=,7,1 .memphis1s1zá .trípolis5sza2l./sz=,8,1 .t1rí .trí1po .trípo1li .trípolis2s2z .trípolis1s1za .trípolis5sz2á./sz=,8,1 .trípolis1s1zá .beloiannis5sza2l./sz=,10,1 .be1lo .belo1i .beloi2an .beloi1a .beloian1ni .beloiannis2s2z .beloiannis1s1za .beloiannis5sz2á./sz=,10,1 .beloiannis1s1zá .fáis5sza2l./sz=,4,1 .1fá .fá1i .fáis2s2z .fáis1s1za .fáis5sz2á./sz=,4,1 .fáis1s1zá .vis5sze2l./sz=,3,1 .vis2s2z .vis1s1ze .vis5sz2é./sz=,3,1 .vis1s1zé .celebes5sze2l./sz=,7,1 .ce1le .cele1be .celebes2s2z .celebes1s1ze .celebes5sz2é./sz=,7,1 .celebes1s1zé .eufrátes5sze2l./sz=,8,1 .e1u .euf1rá .eufrá1te .eufrátes2s2z .eufrátes1s1ze .eufrátes5sz2é./sz=,8,1 .eufrátes1s1zé .ganges5sze2l./sz=,6,1 .gan1ge .gangess2 .ganges2s2z .ganges1s1ze .ganges5sz2é./sz=,6,1 .ganges1s1zé .beles5sze2l./sz=,5,1 .be1le .beles2s2z .beles1s1ze .beles5sz2é./sz=,5,1 .beles1s1zé .belles5sze2l./sz=,6,1 .bel1le .belles2s2z .belles1s1ze .belles5sz2é./sz=,6,1 .belles1s1zé .berkes5sze2l./sz=,6,1 .ber1ke .berkes2s2z .berkes1s1ze .berkes5sz2é./sz=,6,1 .berkes1s1zé .budakes5sze2l./sz=,7,1 .bu1da .buda1ke .budakes2s2z .budakes1s1ze .budakes5sz2é./sz=,7,1 .budakes1s1zé .bulkes5sze2l./sz=,6,1 .bul1ke .bulkes2s2z .bulkes1s1ze .bulkes5sz2é./sz=,6,1 .bulkes1s1zé .dunakes5sze2l./sz=,7,1 .1du .du1na .duna1ke .dunakes2s2z .dunakes1s1ze .dunakes5sz2é./sz=,7,1 .dunakes1s1zé .hales5sze2l./sz=,5,1 .h2ales .hales2s2z .hales1s1ze .hales5sz2é./sz=,5,1 .hales1s1zé .kurtakes5sze2l./sz=,8,1 .kur1ta .kurta1ke .kurtakes2s2z .kurtakes1s1ze .kurtakes5sz2é./sz=,8,1 .kurtakes1s1zé .leles5sze2l./sz=,5,1 .1le1le .leles2s2z .leles1s1ze .leles5sz2é./sz=,5,1 .leles1s1zé .magyarberkes5sze2l./sz=,12,1 .mag2y .ma1gya .magyar1be .magyarber1ke .magyarberkes2s2z .magyarberkes1s1ze .magyarberkes5sz2é./sz=,12,1 .magyarberkes1s1zé .nagycserkes5sze2l./sz=,11,1 .nagyc2s .nagy1c1se .nagycser1k .nagycser1ke .nagycserkes2s2z .nagycserkes1s1ze .nagycserkes5sz2é./sz=,11,1 .nagycserkes1s1zé .priles5sze2l./sz=,6,1 .p1ri .pri1le .priles2s2z .priles1s1ze .priles5sz2é./sz=,6,1 .priles1s1zé .somoskes5sze2l./sz=,8,1 .so1mo .somos1ke .somoskes2s2z .somoskes1s1ze .somoskes5sz2é./sz=,8,1 .somoskes1s1zé .tarnaleles5sze2l./sz=,10,1 .tar1na .tarna1le .tarna1le1le .tarnaleles2s2z .tarnaleles1s1ze .tarnaleles5sz2é./sz=,10,1 .tarnaleles1s1zé .kares5sze2l./sz=,5,1 .kares2s2z .kares1s1ze .kares5sz2é./sz=,5,1 .kares1s1zé .kares5sza2l./sz=,5,1 .kares1s1za .kares5sz2á./sz=,5,1 .kares1s1zá .mercédes5sze2l./sz=,8,1 .mer1cé .mercé1de .mercédes2s2z .mercédes1s1ze .mercédes5sz2é./sz=,8,1 .mercédes1s1zé .ramszes5sze2l./sz=,7,1 .ram1s2 .rams2z .ram1s1ze .rams2zes2s2z .rams1zes1s1ze .ramszes5sz2é./sz=,7,1 .ramszes1s1zé .ramszes5sza2l./sz=,7,1 .ramszes1s1za .ramszes5sz2á./sz=,7,1 .ramszes1s1zá .csikes5sze2l./sz=,6,1 .1c1si .csike2s .csi1ke .csikes2s2z .csikes1s1ze .csikes5sz2é./sz=,6,1 .csikes1s1zé .endres5sze2l./sz=,6,1 .endres5s1ze/sz=,6,1 .end1re .endres2s2z .endres5sz2é./sz=,6,1 .endres5s1zé/sz=,6,1 .hes5sze2l./sz=,3,1 .hes2s2z .hes1s1ze .hes5sz2é./sz=,3,1 .hes1s1zé .jules5sze2l./sz=,5,1 .1ju .ju2le .jules2s2z .jules1s1ze .jules5sz2é./sz=,5,1 .jules1s1zé .kaes5sze2l./sz=,4,1 .ka1e .kaes2s2z .kaes1s1ze .kaes5sz2é./sz=,4,1 .kaes1s1zé .krues5sze2l./sz=,5,1 .k1ru .kru1e .krues2s2z .krues1s1ze .krues5sz2é./sz=,5,1 .krues1s1zé .londes5sze2l./sz=,6,1 .lon1de .londes2s2z .londes1s1ze .londes5sz2é./sz=,6,1 .londes1s1zé .moes5sze2l./sz=,4,1 .mo1e .moes2s2z .moes1s1ze .moes5sz2é./sz=,4,1 .moes1s1zé .purjes5sze2l./sz=,6,1 .1pu .pur1je .purjes2s2z .purjes1s1ze .purjes5sz2é./sz=,6,1 .purjes1s1zé .ries5sze2l./sz=,4,1 .ri1e .ries2s2z .ries1s1ze .ries5sz2é./sz=,4,1 .ries1s1zé .szimonides5sze2l./sz=,10,1 .1s1zi .szi1mo .szimo2n1i2d .szimo1ni .szimoni1de .s2zimonides2s2z .szimonides1s1ze .szimonides5sz2é./sz=,10,1 .szimonides1s1zé .thernes5sze2l./sz=,7,1 .t1he .ther1ne .thernes2s2z .thernes1s1ze .thernes5sz2é./sz=,7,1 .thernes1s1zé .venes5sze2l./sz=,5,1 .v2enes .ve1ne .venes2s2z .venes1s1ze .venes5sz2é./sz=,5,1 .venes1s1zé .lis5szabon/sz=,3,1 .lis2s2z .lis1s1za .lissza1bo .ras5sza2l./sz=,3,1 .ras2s2z .ras1s1za .ras5sz2á./sz=,3,1 .ras1s1zá os5sza2k./sz=,2,1 os1s1za os5sza2m./sz=,2,1 os5szala2k./sz=,2,1 ossza1la os5szá2l./sz=,2,1 os5sza2d./sz=,2,1 os5sz2a./sz=,2,1 os5szo2n./sz=,2,1 os1s1zo os5szana2k./sz=,2,1 ossza1na os5s1zu/sz=,2,1 os5szato2k./sz=,2,1 osszat2 ossza1to os5száto2k./sz=,2,1 osszá1to os5szá2k./sz=,2,1 fos5sza2k./sz=,3,1 fos2s2z fos1s1za ffos5sza2k./sz=,3,1 ffos2s2z ffos1s1za fos5sza2m./sz=,3,1 ffos5sza2m./sz=,3,1 fos5szala2k./sz=,3,1 fossza1la ffos5szala2k./sz=,3,1 ffossza1la fos5szá2l./sz=,3,1 fos1s1zá ffos5szá2l./sz=,3,1 ffos1s1zá fos5sza2d./sz=,3,1 ffos5sza2d./sz=,3,1 fos5sz2a./sz=,3,1 ffos5sz2a./sz=,3,1 fos5szo2n./sz=,3,1 fos1s1zo ffos5szo2n./sz=,3,1 ffos1s1zo fos5szana2k./sz=,3,1 fossza1na ffos5szana2k./sz=,3,1 ffossza1na fos5s1zu/sz=,3,1 ffos5s1zu/sz=,3,1 fos5szato2k./sz=,3,1 fosszat2 fossza1to ffos5szato2k./sz=,3,1 ffosszat2 ffossza1to fos5száto2k./sz=,3,1 fosszá1to ffos5száto2k./sz=,3,1 ffosszá1to fos5szá2k./sz=,3,1 ffos5szá2k./sz=,3,1 ves5sze2k./sz=,3,1 ves5sze2m./sz=,3,1 ves5szele2k./sz=,3,1 vessze1le ves5szé2l./sz=,3,1 ves1s1zé ves5sze2d./sz=,3,1 ves5sz2e./sz=,3,1 ves5sze2n./sz=,3,1 ves5szene2k./sz=,3,1 vessze1ne ves5s1zü/sz=,3,1 ves5szete2k./sz=,3,1 vessze1te ves5széte2k./sz=,3,1 vesszé1te ves5szé2k./sz=,3,1 ggyes5s1ze/sz=,5,1 ggyes2s2z ggyes5s1zé/sz=,5,1 ggyes5s1zü/sz=,5,1 csügges5s1ze/sz=,7,1 csüg1ge csüggess2 csügges2s2z csügges5s1zé/sz=,7,1 csügges5s1zü/sz=,7,1 dermes5s1ze/sz=,6,1 der1me dermes2s2z dermes5s1zé/sz=,6,1 dermes5s1zü/sz=,6,1 dögles5s1ze/sz=,6,1 dög1le dögles2s2z dögles5s1zé/sz=,6,1 dögles5s1zü/sz=,6,1 dülles5s1ze/sz=,6,1 dül1le dülles2s2z dülles5s1zé/sz=,6,1 dülles5s1zü/sz=,6,1 ébres5s1ze/sz=,5,1 ébres2s2z ébres5s1zé/sz=,5,1 ébres5s1zü/sz=,5,1 éles5s1ze/sz=,4,1 éles2s2z éles5s1zé/sz=,4,1 éles5s1zü/sz=,4,1 emés5s1ze/sz=,4,1 emés2s2z2 emés5s1zé/sz=,4,1 emés5s1zü/sz=,4,1 epes5s1ze/sz=,4,1 epes2s2z epes5s1zé/sz=,4,1 epes5s1zü/sz=,4,1 eres5s1ze/sz=,4,1 eres2s2z eres5s1zé/sz=,4,1 eres5s1zü/sz=,4,1 erjes5s1ze/sz=,5,1 er1je erjes2s2z erjes5s1zé/sz=,5,1 erjes5s1zü/sz=,5,1 ernyes5s1ze/sz=,6,1 er1nye ernyes2s2z ernyes5s1zé/sz=,6,1 ernyes5s1zü/sz=,6,1 fejles5s1ze/sz=,6,1 fej1le fejles2s2z ffejles5s1ze/sz=,6,1 ffej1le ffejles2s2z fejles5s1zé/sz=,6,1 ffejles5s1zé/sz=,6,1 fejles5s1zü/sz=,6,1 ffejles5s1zü/sz=,6,1 függes5s1ze/sz=,6,1 füg1ge függess2 függes2s2z ffügges5s1ze/sz=,6,1 ffüg1ge ffüggess2 ffügges2s2z függes5s1zé/sz=,6,1 ffügges5s1zé/sz=,6,1 függes5s1zü/sz=,6,1 ffügges5s1zü/sz=,6,1 fülles5s1ze/sz=,6,1 fül1le fülles2s2z ffülles5s1ze/sz=,6,1 ffül1le ffülles2s2z fülles5s1zé/sz=,6,1 ffülles5s1zé/sz=,6,1 fülles5s1zü/sz=,6,1 ffülles5s1zü/sz=,6,1 fürös5s1ze/sz=,5,1 fü1rö fürös2s2z ffürös5s1ze/sz=,5,1 ffü1rö ffürös2s2z fürös5s1zé/sz=,5,1 ffürös5s1zé/sz=,5,1 fürös5s1zü/sz=,5,1 ffürös5s1zü/sz=,5,1 nyes5s1ze/sz=,4,1 nyes2s2z nyes5s1zé/sz=,4,1 nyes5s1zü/sz=,4,1 gerjes5s1ze/sz=,6,1 ger1je gerjes2s2z gerjes5s1zé/sz=,6,1 gerjes5s1zü/sz=,6,1 görnyes5s1ze/sz=,7,1 görn2y gör1nye görnyes2s2z görnyes5s1zé/sz=,7,1 görnyes5s1zü/sz=,7,1 heges5s1ze/sz=,5,1 he1ge hegess2 heges2s2z heges5s1zé/sz=,5,1 heges5s1zü/sz=,5,1 ijes5s1ze/sz=,4,1 ijes2s2z ï¬jes5s1ze/sz=,4,1 ï¬jes2s2z ijes5s1zé/sz=,4,1 ï¬jes5s1zé/sz=,4,1 ijes5s1zü/sz=,4,1 ï¬jes5s1zü/sz=,4,1 illes5s1ze/sz=,5,1 illes2s2z ï¬lles5s1ze/sz=,5,1 ï¬lles2s2z illes5s1zé/sz=,5,1 ï¬lles5s1zé/sz=,5,1 illes5s1zü/sz=,5,1 ï¬lles5s1zü/sz=,5,1 keles5s1ze/sz=,5,1 keles2s2z keles5s1zé/sz=,5,1 keles5s1zü/sz=,5,1 képes5s1ze/sz=,5,1 képes2s2z képes5s1zé/sz=,5,1 képes5s1zü/sz=,5,1 köpes5s1ze/sz=,5,1 kö1pe köpes2s2z köpes5s1zé/sz=,5,1 köpes5s1zü/sz=,5,1 köves5s1ze/sz=,5,1 kö1ve köves2s2z köves5s1zé/sz=,5,1 köves5s1zü/sz=,5,1 melles5s1ze/sz=,6,1 melles2s2z melles5s1zé/sz=,6,1 melles5s1zü/sz=,6,1 mélyes5s1ze/sz=,6,1 mélyes2s2z mélyes5s1zé/sz=,6,1 mélyes5s1zü/sz=,6,1 menes5s1ze/sz=,5,1 m2enes menes2s2z menes5s1zé/sz=,5,1 menes5s1zü/sz=,5,1 meres5s1ze/sz=,5,1 meres2s2z meres5s1zé/sz=,5,1 meres5s1zü/sz=,5,1 növes5s1ze/sz=,5,1 növes2s2z növes5s1zé/sz=,5,1 növes5s1zü/sz=,5,1 ömles5s1ze/sz=,5,1 öm1le ömles2s2z ömles5s1zé/sz=,5,1 ömles5s1zü/sz=,5,1 püffes5s1ze/sz=,6,1 püf8f püf1fe püffes2s2z püffes5s1ze/sz=,5,1 püff püffe püffes2s2z püffes5s1zé/sz=,6,1 püffes5s1zé/sz=,5,1 püffes5s1zü/sz=,6,1 püffes5s1zü/sz=,5,1 .berekes5szé2k./sz=,7,1 .be1re .bere1ke .berekes2s2z .berekes1s1zé .rekes5szé2k./sz=,5,1 .re1ke .rekes2s2z .rekes1s1zé .kirekes5szé2k./sz=,7,1 .ki1re .kire1ke .kirekes2s2z .kirekes1s1zé .elrekes5szé2k./sz=,7,1 .el1re .elre1ke .elrekes2s2z .elrekes1s1zé rekes5szét/sz=,5,1 rekes5s1zü/sz=,5,1 rémis5s1ze/sz=,5,1 rémis2s2z rémis5s1zé/sz=,5,1 rémis5s1zü/sz=,5,1 repes5s1zü/sz=,5,1 senyves5s1ze/sz=,7,1 senyves2s2z seny2v1es5s1zé/sz=,7,1 senyves5s1zü/sz=,7,1 lyes5s1ze/sz=,4,1 lyes2s2z flyes5s1ze/sz=,4,1 flyes2s2z lyes5s1zé/sz=,4,1 flyes5s1zé/sz=,4,1 lyes5s1zü/sz=,4,1 flyes5s1zü/sz=,4,1 süppes5s1ze/sz=,6,1 süp1pe süppes2s2z süppes5s1zé/sz=,6,1 süppes5s1zü/sz=,6,1 széles5s1ze/sz=,6,1 s2zéles2s2z 1s1zéles5s1zé/sz=,6,1 széles5s1zü/sz=,6,1 1s1zerkes5s1ze/sz=,7,1 s2zerkes2s2z szerkes5s1zé/sz=,7,1 szerkes5s1zü/sz=,7,1 tenyés5s1ze/sz=,6,1 te1nyé tenyés2s2z2 tenyés5s1zé/sz=,6,1 tenyés5s1zü/sz=,6,1 terjes5s1ze/sz=,6,1 ter1je terjes2s2z terjes5s1zé/sz=,6,1 terjes5s1zü/sz=,6,1 termes5s1zü/sz=,6,1 terpes5s1zü/sz=,6,1 téves5s1ze/sz=,5,1 téves2s2z téves5s1zé/sz=,5,1 téves5s1zü/sz=,5,1 töppes5s1ze/sz=,6,1 töp1pe töppes2s2z töppes5s1zé/sz=,6,1 töppes5s1zü/sz=,6,1 törles5s1ze/sz=,6,1 tör1le törles2s2z törles5s1zé/sz=,6,1 törles5s1zü/sz=,6,1 zülles5s1ze/sz=,6,1 zül1le zülles2s2z zülles5s1zé/sz=,6,1 1zülles5s1zü/sz=,6,1 jöves5s1ze/sz=,5,1 jöves2s2z jöves5s1zé/sz=,5,1 jöves5s1zü/sz=,5,1 aggas5s1za/sz=,5,1 agga2s aggas2s2z aggas5szon/sz=,5,1 aggas1s1zo aggas5s1zá/sz=,5,1 aggas5s1zu/sz=,5,1 akas5s1za/sz=,4,1 akas2s2z akas5szon/sz=,4,1 akas1s1zo akas5s1zá/sz=,4,1 akas5s1zu/sz=,4,1 alvas5s1za/sz=,5,1 al1va alvas2s2z alvas5szon/sz=,5,1 alvas1s1zo alvas5s1zá/sz=,5,1 alvas5s1zu/sz=,5,1 apas5s1za/sz=,4,1 apas2s2z apas5szon/sz=,4,1 apas5s1zo/sz=,4,1 apas5s1zá/sz=,4,1 apas5s1zu/sz=,4,1 áras5s1za/sz=,4,1 áras2s2z áras5szon/sz=,4,1 áras1s1zo áras5s1zá/sz=,4,1 áras5s1zu/sz=,4,1 bágyas5s1za/sz=,6,1 bágyas2s2z bágyas5szon/sz=,6,1 bágyas1s1zo bágyas5s1zá/sz=,6,1 bágyas5s1zu/sz=,6,1 bomlas5s1za/sz=,6,1 bom1la bomlas2s2z bomlas5szon/sz=,6,1 bomlas1s1zo bomlas5s1zá/sz=,6,1 bomlas5s1zu/sz=,6,1 bor1zas5s1za/sz=,6,1 bor1za borzas2s2z borzas5szon/sz=,6,1 borzas1s1zo borzas5s1zá/sz=,6,1 borzas5s1zu/sz=,6,1 dagas5s1za/sz=,5,1 da1ga dagas2s2z dagas5szon/sz=,5,1 dagas1s1zo dagas5s1zá/sz=,5,1 dagas5s1zu/sz=,5,1 duvas5s1za/sz=,5,1 du1va duvas2s2z duvas5szon/sz=,5,1 duvas1s1zo duvas5s1zá/sz=,5,1 duvas5s1zu/sz=,5,1 duz1zas5s1za/sz=,6,1 duz1za duzzas2s2z duzzas5szon/sz=,6,1 duzzas1s1zo duzzas5s1zá/sz=,6,1 duzzas5s1zu/sz=,6,1 fagyas5s1za/sz=,6,1 fa1gya fagyas2s2z ffagyas5s1za/sz=,6,1 ffa1gya ffagyas2s2z fagyas5szon/sz=,6,1 fagyas1s1zo ffagyas5szon/sz=,6,1 ffagyas1s1zo fagyas5s1zá/sz=,6,1 ffagyas5s1zá/sz=,6,1 fagyas5s1zu/sz=,6,1 ffagyas5s1zu/sz=,6,1 fakas5s1za/sz=,5,1 fa1ka fakas2s2z ffakas5s1za/sz=,5,1 ffa1ka ffakas2s2z fakas5szon/sz=,5,1 fakas1s1zo ffakas5szon/sz=,5,1 ffakas1s1zo fakas5s1zá/sz=,5,1 ffakas5s1zá/sz=,5,1 fakas5s1zu/sz=,5,1 ffakas5s1zu/sz=,5,1 fáras5s1za/sz=,5,1 fáras2s2z ffáras5s1za/sz=,5,1 ffáras2s2z fáras5szon/sz=,5,1 fáras1s1zo ffáras5szon/sz=,5,1 ffáras1s1zo fáras5s1zá/sz=,5,1 ffáras5s1zá/sz=,5,1 fáras5s1zu/sz=,5,1 ffáras5s1zu/sz=,5,1 fogyas5s1za/sz=,6,1 fog2y fo1gya fogyas2s2z ffogyas5s1za/sz=,6,1 ffog2y ffo1gya ffogyas2s2z fogyas5szon/sz=,6,1 fogyas1s1zo ffogyas5szon/sz=,6,1 ffogyas1s1zo fogyas5s1zá/sz=,6,1 ffogyas5s1zá/sz=,6,1 fogyas5s1zu/sz=,6,1 ffogyas5s1zu/sz=,6,1 fonnyas5s1za/sz=,7,1 fon2nyas2s2z ffonnyas5s1za/sz=,7,1 ffon2nyas2s2z fonnyas5szon/sz=,7,1 fonnyas1s1zo ffonnyas5szon/sz=,7,1 ffonnyas1s1zo fonnyas5s1zá/sz=,7,1 ffonnyas5s1zá/sz=,7,1 fonnyas5s1zu/sz=,7,1 ffonnyas5s1zu/sz=,7,1 forras5szon/sz=,6,1 forras1s1zo fforras5szon/sz=,6,1 fforras1s1zo forras5s1zu/sz=,6,1 fforras5s1zu/sz=,6,1 fullas5s1za/sz=,6,1 ful1la fullas2s2z ffullas5s1za/sz=,6,1 fful1la ffullas2s2z fullas5szon/sz=,6,1 fullas1s1zo ffullas5szon/sz=,6,1 ffullas1s1zo fullas5s1zá/sz=,6,1 ffullas5s1zá/sz=,6,1 fullas5s1zu/sz=,6,1 ffullas5s1zu/sz=,6,1 gyullas5s1za/sz=,7,1 gyul1la gyullas2s2z gyullas5szon/sz=,7,1 gyullas1s1zo gyullas5s1zá/sz=,7,1 gyullas5s1zu/sz=,7,1 halas5s1za/sz=,5,1 halas2s2z halas5szon/sz=,5,1 halas1s1zo halas5s1zá/sz=,5,1 halas5s1zu/sz=,5,1 hámlas5s1za/sz=,6,1 hám1la hámlas2s2z hámlas5szon/sz=,6,1 hámlas1s1zo hámlas5s1zá/sz=,6,1 hámlas5s1zu/sz=,6,1 hamvas5s1za/sz=,6,1 ham1va hamvas2s2z hamvas5szon/sz=,6,1 hamvas1s1zo hamvas5s1zá/sz=,6,1 hamvas5s1zu/sz=,6,1 hervas5s1za/sz=,6,1 her1va hervas2s2z hervas5szon/sz=,6,1 hervas1s1zo hervas5s1zá/sz=,6,1 hervas5s1zu/sz=,6,1 horgas5s1za/sz=,6,1 hor1ga horgas2s2z horgas5szon/sz=,6,1 horgas1s1zo horgas5s1zá/sz=,6,1 horgas5s1zu/sz=,6,1 horpas5szon/sz=,6,1 horpas5s1zo/sz=,6,1 horpas5s1zu/sz=,6,1 iz1zas5s1za/sz=,5,1 iz1za izzas2s2z ï¬z1zas5s1za/sz=,5,1 ï¬z1za ï¬zzas2s2z izzas5szon/sz=,5,1 izzas1s1zo ï¬zzas5szon/sz=,5,1 ï¬zzas1s1zo izzas5s1zá/sz=,5,1 ï¬zzas5s1zá/sz=,5,1 izzas5s1zu/sz=,5,1 ï¬zzas5s1zu/sz=,5,1 kopas5szon/sz=,5,1 kopas5s1zo/sz=,5,1 kopas5s1zu/sz=,5,1 korhas5s1za/sz=,6,1 kor1ha korhas2s2z korhas5szon/sz=,6,1 korhas1s1zo korhas5s1zá/sz=,6,1 korhas5s1zu/sz=,6,1 kotyvas5s1za/sz=,7,1 kot2y koty1va kotyvas2s2z kotyvas5szon/sz=,7,1 kotyvas1s1zo kotyvas5s1zá/sz=,7,1 kotyvas5s1zu/sz=,7,1 lankas5s1za/sz=,6,1 lan1ka lankas2s2z flankas5s1za/sz=,6,1 flan1ka flankas2s2z lankas5szon/sz=,6,1 lankas1s1zo flankas5szon/sz=,6,1 flankas1s1zo lankas5s1zá/sz=,6,1 flankas5s1zá/sz=,6,1 lankas5s1zu/sz=,6,1 flankas5s1zu/sz=,6,1 lohas5s1za/sz=,5,1 lohas2 lo1ha lohas2s2z flohas5s1za/sz=,5,1 flohas2 flo1ha flohas2s2z lohas5szon/sz=,5,1 lohas1s1zo flohas5szon/sz=,5,1 flohas1s1zo lohas5s1zá/sz=,5,1 flohas5s1zá/sz=,5,1 lohas5s1zu/sz=,5,1 flohas5s1zu/sz=,5,1 lyukas5s1za/sz=,6,1 lyu1ka lyukas2s2z flyukas5s1za/sz=,6,1 flyu1ka flyukas2s2z lyukas5szon/sz=,6,1 lyukas1s1zo flyukas5szon/sz=,6,1 flyukas1s1zo lyukas5s1zá/sz=,6,1 flyukas5s1zá/sz=,6,1 lyukas5s1zu/sz=,6,1 flyukas5s1zu/sz=,6,1 mállas5s1za/sz=,6,1 mállas2s2z mállas5szon/sz=,6,1 mállas1s1zo mállas5s1zá/sz=,6,1 mállas5s1zu/sz=,6,1 maras5s1za/sz=,5,1 ma1ra maras2s2z maras5szon/sz=,5,1 maras1s1zo maras5s1zá/sz=,5,1 maras5s1zu/sz=,5,1 mulas5s1za/sz=,5,1 mu1la mulas2s2z mulas5szon/sz=,5,1 mulas1s1zo mulas5s1zá/sz=,5,1 mulas5s1zu/sz=,5,1 nyomas5s1za/sz=,6,1 nyoma2s nyomas2s2z nyomas5szon/sz=,6,1 nyomas1s1zo nyomas5s1zá/sz=,6,1 nyomas5s1zu/sz=,6,1 nyugos5s1za/sz=,6,1 nyu1go nyugoss2 nyugos2s2z nyugos5szon/sz=,6,1 nyugos1s1zo nyugos5s1zá/sz=,6,1 nyugos5s1zu/sz=,6,1 nyuvas5s1za/sz=,6,1 nyu1va nyuvas2s2z nyuvas5szon/sz=,6,1 nyuvas1s1zo nyuvas5s1zá/sz=,6,1 nyuvas5s1zu/sz=,6,1 olvas5s1za/sz=,5,1 olvas2s2z olvas5szon/sz=,5,1 olvas1s1zo olvas5s1zá/sz=,5,1 olvas5s1zu/sz=,5,1 omlas5s1za/sz=,5,1 om1la omlas2s2z omlas5szon/sz=,5,1 omlas1s1zo omlas5s1zá/sz=,5,1 omlas5s1zu/sz=,5,1 porlas5s1za/sz=,6,1 por1la porlas2s2z porlas5szon/sz=,6,1 porlas1s1zo porlas5s1zá/sz=,6,1 porlas5s1zu/sz=,6,1 poshas5s1za/sz=,6,1 pos1ha poshas2s2z poshas5szon/sz=,6,1 poshas1s1zo poshas5s1zá/sz=,6,1 poshas5s1zu/sz=,6,1 puffas5s1za/sz=,6,1 puf8f puf1fa puffas2s2z puffas5s1za/sz=,5,1 puff puffa puffas2s2z puffas5szon/sz=,6,1 puffas1s1zo puffas5szon/sz=,5,1 puffas1s1zo puffas5s1zá/sz=,6,1 puffas5s1zá/sz=,5,1 puffas5s1zu/sz=,6,1 puffas5s1zu/sz=,5,1 pukkas5s1za/sz=,6,1 puk1ka pukkas2s2z pukkas5szon/sz=,6,1 pukkas1s1zo pukkas5s1zá/sz=,6,1 pukkas5s1zu/sz=,6,1 ragas5szon/sz=,5,1 ragas1s1zo ragas5s1zu/sz=,5,1 rias5s1za/sz=,4,1 rias2s2z rias5szon/sz=,4,1 rias1s1zo rias5s1zá/sz=,4,1 rias5s1zu/sz=,4,1 rothas5s1za/sz=,6,1 rot1ha rothas2s2z rothas5szon/sz=,6,1 rothas1s1zo rothas5s1zá/sz=,6,1 rothas5s1zu/sz=,6,1 sápas5s1za/sz=,5,1 sá1pa sápas2s2z sápas5szon/sz=,5,1 sápas5s1zo/sz=,5,1 sápas5s1zá/sz=,5,1 sápas5s1zu/sz=,5,1 sikkas5s1za/sz=,6,1 sik1ka sikkas2s2z sikkas5szon/sz=,6,1 sikkas1s1zo sikkas5s1zá/sz=,6,1 sikkas5s1zu/sz=,6,1 sorvas5s1za/sz=,6,1 sor1va sorvas2s2z sorvas5szon/sz=,6,1 sorvas1s1zo sorvas5s1zá/sz=,6,1 sorvas5s1zu/sz=,6,1 suvas5s1za/sz=,5,1 su1va suvas2s2z suvas5szon/sz=,5,1 suvas1s1zo suvas5s1zá/sz=,5,1 suvas5s1zu/sz=,5,1 szakas5szon/sz=,6,1 szakas1s1zo szakas5s1zu/sz=,6,1 1s1zalas5s1za/sz=,6,1 sza1la s2zalas2s2z szalas5szon/sz=,6,1 szalas1s1zo szalas5s1zá/sz=,6,1 szalas5s1zu/sz=,6,1 szállas5s1za/sz=,7,1 szál1la s2zállas2s2z szállas5szon/sz=,7,1 szállas1s1zo 1s1zállas5s1zá/sz=,7,1 szállas5s1zu/sz=,7,1 száras5s1za/sz=,6,1 s2záras2s2z száras5szon/sz=,6,1 száras1s1zo 1s1záras5s1zá/sz=,6,1 száras5s1zu/sz=,6,1 szikkas5s1za/sz=,7,1 szik1ka s2zikkas2s2z szikkas5szon/sz=,7,1 szikkas1s1zo szikkas5s1zá/sz=,7,1 szikkas5s1zu/sz=,7,1 támas5szon/sz=,5,1 támas1s1zo támas5s1zu/sz=,5,1 tapas5szon/sz=,5,1 tapas5s1zo/sz=,5,1 tapas5s1zu/sz=,5,1 tikkas5s1za/sz=,6,1 tik1ka tikkas2s2z tikkas5szon/sz=,6,1 tikkas1s1zo tikkas5s1zá/sz=,6,1 tikkas5s1zu/sz=,6,1 ugras5s1za/sz=,5,1 ug1ra ugras2s2z ugras5szon/sz=,5,1 ugras1s1zo ugras5s1zá/sz=,5,1 ugras5s1zu/sz=,5,1 válas5szon/sz=,5,1 válas1s1zo válas5s1zu/sz=,5,1 zsibbas5s1za/sz=,7,1 zsib1ba zsibbas2s2z zsibbas5szon/sz=,7,1 zsibbas1s1zo zsibbas5s1zá/sz=,7,1 zsibbas5s1zu/sz=,7,1 lukas5s1za/sz=,5,1 lu1ka lukas2s2z flukas5s1za/sz=,5,1 flu1ka flukas2s2z lukas5szon/sz=,5,1 lukas1s1zo flukas5szon/sz=,5,1 flukas1s1zo lukas5s1zá/sz=,5,1 flukas5s1zá/sz=,5,1 lukas5s1zu/sz=,5,1 flukas5s1zu/sz=,5,1 rohas5s1za/sz=,5,1 rohas2 ro1ha rohas2s2z rohas5szon/sz=,5,1 rohas1s1zo rohas5s1zá/sz=,5,1 rohas5s1zu/sz=,5,1 higgas5s1za/sz=,6,1 higga2s hig1ga higgas2s2z higgas5szon/sz=,6,1 higgas1s1zo higgas5s1zá/sz=,6,1 higgas5s1zu/sz=,6,1 sarjas5s1za/sz=,6,1 sar1ja sarjas2s2z sarjas5szon/sz=,6,1 sarjas1s1zo sarjas5s1zá/sz=,6,1 sarjas5s1zu/sz=,6,1 viras5s1za/sz=,5,1 viras2s2z viras5szon/sz=,5,1 viras1s1zo viras5s1zá/sz=,5,1 viras5s1zu/sz=,5,1 .enyés5s1ze/sz=,5,1 .en2y .e1nyé .enyés2s2z2 .enyés5s1zé/sz=,5,1 .enyés5s1zü/sz=,5,1 .elenyés5s1ze/sz=,7,1 .elen2y .ele1nyé .elenyés2s2z2 .elenyés5s1zé/sz=,7,1 .elenyés5s1zü/sz=,7,1 fütyörés5s1ze/sz=,8,1 füt2y fü1työ fütyö1ré fütyörés2s2z2 ffütyörés5s1ze/sz=,8,1 ffüt2y ffü1työ ffütyö1ré ffütyörés2s2z2 fütyörés5s1zé/sz=,8,1 ffütyörés5s1zé/sz=,8,1 fütyörés5s1zü/sz=,8,1 ffütyörés5s1zü/sz=,8,1 hevenyés5s1ze/sz=,8,1 he1ve heven2y heve1nyé hevenyés2s2z2 hevenyés5s1zé/sz=,8,1 hevenyés5s1zü/sz=,8,1 csempés5s1ze/sz=,7,1 csem1pé csempés2s2z2 csempés5s1zé/sz=,7,1 csempés5s1zü/sz=,7,1 csöcsörés5s1ze/sz=,9,1 c2söc2s 1c1sö1c1sö csöcsö1ré csöcsörés2s2z2 csöcsörés5s1zé/sz=,9,1 csöcsörés5s1zü/sz=,9,1 gügyörés5s1ze/sz=,8,1 gü1gyö gügyö1ré gügyörés2s2z2 gügyörés5s1zé/sz=,8,1 gügyörés5s1zü/sz=,8,1 cserkés5s1ze/sz=,7,1 cser1ké cserkés2s2z2 cserkés5s1zé/sz=,7,1 cserkés5s1zü/sz=,7,1 böngés5s1ze/sz=,6,1 bön1gé böngés2s2z2 böngés5s1zé/sz=,6,1 böngés5s1zü/sz=,6,1 fürkés5s1ze/sz=,6,1 für1ké fürkés2s2z2 ffürkés5s1ze/sz=,6,1 ffür1ké ffürkés2s2z2 fürkés5s1zé/sz=,6,1 ffürkés5s1zé/sz=,6,1 fürkés5s1zü/sz=,6,1 ffürkés5s1zü/sz=,6,1 heherés5s1ze/sz=,7,1 1he1he hehe1ré heherés2s2z2 heherés5s1zé/sz=,7,1 heherés5s1zü/sz=,7,1 heverés5s1ze/sz=,7,1 heve1ré heverés2s2z2 heverés5s1zé/sz=,7,1 heverés5s1zü/sz=,7,1 végigböngés5s1ze/sz=,11,1 végig1bö végigbön1gé végigböngés2s2z2 végigböngés5s1zé/sz=,11,1 végigböngés5s1zü/sz=,11,1 vis5s1za/sz=,3,1 vis5szacsempés5s1ze/sz=,3,1 visszac2s vissza1c1se visszacsem1pé vis2s2zacsempés2s2z2 vis5szacsempés5s1zé/sz=,3,1 vis5szacsempés5s1zü/sz=,3,1 fecserés5s1ze/sz=,8,1 fec2s fe1c1se fecse1ré fecserés2s2z2 ffecserés5s1ze/sz=,8,1 ffec2s ffe1c1se ffecse1ré ffecserés2s2z2 fecserés5s1zé/sz=,8,1 ffecserés5s1zé/sz=,8,1 fecserés5s1zü/sz=,8,1 ffecserés5s1zü/sz=,8,1 tötyörés5s1ze/sz=,8,1 töt2y tö1työ tötyö1ré tötyörés2s2z2 tötyörés5s1zé/sz=,8,1 tötyörés5s1zü/sz=,8,1 legelés5s1ze/sz=,7,1 le3g2eléss lege1lé legelés2s2z2 flegelés5s1ze/sz=,7,1 fle3g2eléss flege1lé flegelés2s2z2 legelés5s1zé/sz=,7,1 flegelés5s1zé/sz=,7,1 legelés5s1zü/sz=,7,1 flegelés5s1zü/sz=,7,1 eprés5s1ze/sz=,5,1 eprés2s2z2 eprés5s1zé/sz=,5,1 eprés5s1zü/sz=,5,1 bányás5s1za/sz=,6,1 bá1nyá bányás2s2z2 bányás5szon/sz=,6,1 bányás1s1zo bányás5szé2k./sz=,6,1 bányás1s1zé bányás5s1zá/sz=,6,1 bányás5s1zu/sz=,6,1 csús5s1za/sz=,4,1 csús2s2z csús5szon/sz=,4,1 csús1s1zo csús5szé2k./sz=,4,1 csús1s1zé csús5s1zá/sz=,4,1 csús5s1zu/sz=,4,1 gajdorás5s1za/sz=,8,1 gaj1do gajdo1rá gajdorás2s2z2 gajdorás5szon/sz=,8,1 gajdorás1s1zo gajdorás5szé2k./sz=,8,1 gajdorás1s1zé gajdorás5s1zá/sz=,8,1 gajdorás5s1zu/sz=,8,1 hajhás5s1za/sz=,6,1 haj1há hajhás2s2z2 hajhás5szon/sz=,6,1 hajhás1s1zo hajhás5szé2k./sz=,6,1 hajhás1s1zé hajhás5s1zá/sz=,6,1 hajhás5s1zu/sz=,6,1 hajkurás5s1za/sz=,8,1 haj1ku hajku1rá hajkurás2s2z2 hajkurás5szon/sz=,8,1 hajkurás1s1zo hajkurás5szé2k./sz=,8,1 hajkurás1s1zé hajkurás5s1zá/sz=,8,1 hajkurás5s1zu/sz=,8,1 halás5s1za/sz=,5,1 halás2s2z2 halás5szon/sz=,5,1 halás1s1zo halás5szé2k./sz=,5,1 halás3s1zé halás5s1zá/sz=,5,1 halás5s1zu/sz=,5,1 horgás5s1za/sz=,6,1 hor1gá horgás2s2z2 horgás5szon/sz=,6,1 horgás1s1zo horgás5szé2k./sz=,6,1 horgás3s1zé horgás5s1zá/sz=,6,1 horgás5s1zu/sz=,6,1 kaparás5s1za/sz=,7,1 ka1pa kapa1rá kaparás2s2z2 kaparás5szon/sz=,7,1 kaparás1s1zo kaparás5szé2k./sz=,7,1 kaparás1s1zé kaparás5s1zá/sz=,7,1 kaparás5s1zu/sz=,7,1 karmolás5s1za/sz=,8,1 kar1mo karmo1lá karmolás2s2z2 karmolás5szon/sz=,8,1 karmolás1s1zo karmolás5szék/sz=,8,1 karmolás3s1zé karmolás5s1zá/sz=,8,1 karmolás5s1zu/sz=,8,1 kús5s1za/sz=,3,1 kús2s2z kús5szon/sz=,3,1 kús1s1zo kús5szé2k./sz=,3,1 kús1s1zé kús5s1zá/sz=,3,1 kús5s1zu/sz=,3,1 markolás5s1za/sz=,8,1 mar1ko marko1lá markolás2s2z2 markolás5szon/sz=,8,1 markolás1s1zo markolás5szé2k./sz=,8,1 markolás3s1zé markolás5s1zá/sz=,8,1 markolás5s1zu/sz=,8,1 orvhalás5s1za/sz=,8,1 orv1ha orv3ha1lá orvhalás2s2z2 orvhalás5szon/sz=,8,1 orvhalás1s1zo orvhalás5szé2k./sz=,8,1 orvhalás3s1zé orvhalás5s1zá/sz=,8,1 orvhalás5s1zu/sz=,8,1 1s1zaglás5s1za/sz=,7,1 szag1lá s2zaglás2s2z2 szaglás5szon/sz=,7,1 szaglás1s1zo szaglás5szé2k./sz=,7,1 szaglás3s1zé szaglás5s1zá/sz=,7,1 szaglás5s1zu/sz=,7,1 tornás5s1za/sz=,6,1 tor1ná tornás2s2z2 tornás5szon/sz=,6,1 tornás1s1zo tornás5szé2k./sz=,6,1 tornás1s1zé tornás5s1zá/sz=,6,1 tornás5s1zu/sz=,6,1 ús5szon/sz=,2,1 ús1s1zo ús5szé2k./sz=,2,1 ús1s1zé ús5s1zá/sz=,2,1 ús5s1zu/sz=,2,1 vadás5s1za/sz=,5,1 vadás2s2z2 vadás5szon/sz=,5,1 vadás1s1zo vadás5szé2k./sz=,5,1 vadás1s1zé vadás5s1zá/sz=,5,1 vadás5s1zu/sz=,5,1 vakarás5s1za/sz=,7,1 vaka1rá vakarás2s2z2 vakarás5szon/sz=,7,1 vakarás1s1zo vakarás5szé2k./sz=,7,1 vakarás1s1zé vakarás5s1zá/sz=,7,1 vakarás5s1zu/sz=,7,1 kurkás5s1za/sz=,6,1 kur1ká kurkás2s2z2 kurkás5szon/sz=,6,1 kurkás1s1zo kurkás5szé2k./sz=,6,1 kurkás1s1zé kurkás5s1zá/sz=,6,1 kurkás5s1zu/sz=,6,1 danás5s1za/sz=,5,1 da1ná danás2s2z2 danás5szon/sz=,5,1 danás1s1zo danás5szé2k./sz=,5,1 danás1s1zé danás5s1zá/sz=,5,1 danás5s1zu/sz=,5,1 futkorás5s1za/sz=,8,1 fut1ko futko2r1áss futko1rá futkorás2s2z2 ffutkorás5s1za/sz=,8,1 ffut1ko ffutko2r1áss ffutko1rá ffutkorás2s2z2 futkorás5szon/sz=,8,1 futkorás1s1zo ffutkorás5szon/sz=,8,1 ffutkorás1s1zo futkorás5szé2k./sz=,8,1 futkorás1s1zé ffutkorás5szé2k./sz=,8,1 ffutkorás1s1zé futkorás5s1zá/sz=,8,1 ffutkorás5s1zá/sz=,8,1 futkorás5s1zu/sz=,8,1 ffutkorás5s1zu/sz=,8,1 pakolás5s1za/sz=,7,1 pakolás3s pa1ko pako1lá pakolás2s2z2 pakolás5szon/sz=,7,1 pakolás1s1zo pakolás5szé2k./sz=,7,1 pakolás3s1zé pakolás5s1zá/sz=,7,1 pakolás5s1zu/sz=,7,1 tos5sza2k./sz=,3,1 tos1s1za tos5sza2m./sz=,3,1 tos5szala2k./sz=,3,1 tossza1la tos5szá2l./sz=,3,1 tos1s1zá tos5sza2d./sz=,3,1 tos5sz2a./sz=,3,1 tos5szo2n./sz=,3,1 tos1s1zo .tos5szé2k./sz=,3,1 .tos2s2z .tos1s1zé tos5s1zu/sz=,3,1 tos5szato2k./sz=,3,1 tosszat2 tossza1to tos5száto2k./sz=,3,1 tosszá1to tos5szá2k./sz=,3,1 bas5sza2k./sz=,3,1 bas1s1za bas5sza2m./sz=,3,1 bas5szala2k./sz=,3,1 bassza1la bas5szá2l./sz=,3,1 bas1s1zá bas5sza2d./sz=,3,1 bas5sz2a./sz=,3,1 bas5szo2n./sz=,3,1 bas1s1zo .bas5szé2k./sz=,3,1 .bas2s2z .bas1s1zé bas5s1zu/sz=,3,1 bas5szato2k./sz=,3,1 basszat2 bassza1to bas5száto2k./sz=,3,1 basszá1to bas5szá2k./sz=,3,1 más5sza2k./sz=,3,1 más2s2z2 más1s1za más5sza2m./sz=,3,1 más5szala2k./sz=,3,1 mássza1la más5szá2l./sz=,3,1 más1s1zá más5sza2d./sz=,3,1 más5sz2a./sz=,3,1 más5szo2n./sz=,3,1 más1s1zo .más5szé2k./sz=,3,1 .más2s2z2 .más1s1zé más5s1zu/sz=,3,1 más5szato2k./sz=,3,1 másszat2 mássza1to más5száto2k./sz=,3,1 másszá1to más5szá2k./sz=,3,1 cses5sze2k./sz=,4,1 cses2s2z cses1s1ze cses5sze2m./sz=,4,1 cses5szele2k./sz=,4,1 csessze1le cses5szé2l./sz=,4,1 csesszé2l cses1s1zé cses5sze2d./sz=,4,1 cses5sz2e./sz=,4,1 cses5sze2n./sz=,4,1 cses5s1zü/sz=,4,1 cses5szete2k./sz=,4,1 csessze1te cses5széte2k./sz=,4,1 csesszé1te cses5szé2k./sz=,4,1 ös5szébb/sz=,2,1 ös1s1zé vis5szább/sz=,3,1 vis1s1zá vis5szás/sz=,3,1 vis5száj/sz=,3,1 vis5szár2a./sz=,3,1 visszá1ra vis5szü2k./sz=,3,1 vis1s1zü tets5s1ze/sz=,4,1 tets2s2z tets5s1zü/sz=,4,1 tets5s1zé/sz=,4,1 mas5szív/sz=,3,1 mas2s2z mas1s1zí tes5szü2k./sz=,3,1 tes1s1zü mes5s2zünn/sz=,3,1 mes2s2z mes1s1zü es5szü2k./sz=,2,1 es1s1zü hos5s1zú/sz=,3,1 hos5szab/sz=,3,1 hos1s1za hos5szac2s/sz=,3,1 hos5szad/sz=,3,1 hos5sza1i/sz=,3,1 hos5szak/sz=,3,1 hos5szam/sz=,3,1 hos5sza2n./sz=,3,1 hos5szant/sz=,3,1 hos5szas/sz=,3,1 hos5sza2t./sz=,3,1 hosszat2 hos5szok/sz=,3,1 hos1s1zo hos5szom/sz=,3,1 hos5szod/sz=,3,1 hos5szuk/sz=,3,1 hos5s1zu/sz=,3,1 hos5szunk/sz=,3,1 hos5sz2i2g./sz=,3,1 hos1s1zi hos5szigl/sz=,3,1 hos5s1zá/sz=,3,1 hos5s1zí/sz=,3,1 ves5s1zÅ‘/sz=,3,1 ves5sze1i/sz=,3,1 ves5szej/sz=,3,1 karos5szér/sz=,5,1 karos2s2z karos1s1zé kas5sz2a./sz=,3,1 kas1s1za .kas5s1zá/sz=,3,1 .kas2s2z .kas5s1za/sz=,3,1 kas5szá2t./sz=,3,1 kas1s1zá kas5szák/sz=,3,1 kas5szír/sz=,3,1 kas1s1zí mkas5s2z/sz=,4,1 tkas5s2z/sz=,4,1 inkas5s2z/sz=,5,1 ï¬nkas5s2z/sz=,5,1 kas5szá2l./sz=,3,1 kas5száln/sz=,3,1 kas5szált/sz=,3,1 kas5szá1lo/sz=,3,1 bos5s1zú/sz=,3,1 bos2s2z bos5szant/sz=,3,1 bos1s1za bos5szul/sz=,3,1 bos5s1zu/sz=,3,1 bos5szank/sz=,3,1 mis5s1zi/sz=,3,1 mis5szár/sz=,3,1 mis1s1zá nemis5s1za/sz=,5,1 nemis2s2z emis5s1zá/sz=,4,1 emis2s2z is5szum/sz=,2,1 is1s1zu ï¬s5szum/sz=,2,1 ï¬s1s1zu mis5sz2a./sz=,3,1 szus5szan/sz=,4,1 szuss2 s2zus2s2z szus1s1za es5szi1ó/sz=,2,1 es5szi1vi/sz=,2,1 smas5szer/sz=,4,1 smas2s2z smas1s1ze rus5szic/sz=,3,1 rus1s1zi ros5szul/sz=,3,1 ros5s1zu/sz=,3,1 legros5s1za/sz=,6,1 leg1ro legros2s2z flegros5s1za/sz=,6,1 fleg1ro flegros2s2z .ros5s1zá/sz=,3,1 .ros5s1zé/sz=,3,1 .ros5sz2i2g./sz=,3,1 .ros1s1zi ros5szabb/sz=,3,1 ros1s1za ras5szis/sz=,3,1 ras1s1zi ras5sziz/sz=,3,1 ces5s1zu/sz=,3,1 ces2s2z fes5szi1o/sz=,3,1 fes2s2z fes1s1zi ffes5szi1o/sz=,3,1 ffes2s2z ffes1s1zi is5sz2a./sz=,2,1 is1s1za ï¬s5sz2a./sz=,2,1 ï¬s1s1za is5szá2k./sz=,2,1 is1s1zá ï¬s5szá2k./sz=,2,1 ï¬s1s1zá is5szu2k./sz=,2,1 ï¬s5szu2k./sz=,2,1 is5száto2k./sz=,2,1 isszá1to ï¬s5száto2k./sz=,2,1 ï¬sszá1to pes5s1zi/sz=,3,1 pes5s1zá/sz=,3,1 pas5s1zi/sz=,3,1 pas2s2z pas5szent/sz=,3,1 pas1s1ze pis5szen/sz=,3,1 pis2s2z pis1s1ze pas5s1zí/sz=,3,1 pas5sz2a./sz=,3,1 pas1s1za pas5s1zé/sz=,3,1 pas5száz2s/sz=,3,1 pas1s1zá pas5szát/sz=,3,1 pas5szus/sz=,3,1 pas1s1zu parnas5s1zu/sz=,6,1 parnas2 par1na parnas2s2z parnas5s1zi/sz=,6,1 opos5s1zu/sz=,4,1 opos2s2z szes5szer/sz=,4,1 mets5s1ze/sz=,4,1 mets2s2z mets5s1zé/sz=,4,1 mets5s1zü/sz=,4,1 .mes5s1ze/sz=,3,1 .mes2s2z legmes5s1ze/sz=,6,1 legmes2s2z flegmes5s1ze/sz=,6,1 flegmes2s2z .mes5s1zi/sz=,3,1 legmes5s1zi/sz=,6,1 flegmes5s1zi/sz=,6,1 mas5s1zÅ‘/sz=,3,1 mas5szír/sz=,3,1 mas5s1zá/sz=,3,1 mas5száz2s/sz=,3,1 mas5sz2a./sz=,3,1 mas1s1za láts5s1zé/sz=,4,1 láts2s2z fláts5s1zé/sz=,4,1 fláts2s2z láts5s1zá/sz=,4,1 fláts5s1zá/sz=,4,1 láts5s1za/sz=,4,1 fláts5s1za/sz=,4,1 láts5s1zo/sz=,4,1 fláts5s1zo/sz=,4,1 láts5s1zu/sz=,4,1 fláts5s1zu/sz=,4,1 res5s1zó/sz=,3,1 res2s2z las5s1zó/sz=,3,1 las2s2z flas5s1zó/sz=,3,1 flas2s2z mites5s1ze/sz=,5,1 mi1te mites2s2z klas5s1zi/sz=,4,1 klas2s2z kvas5s1zi/sz=,4,1 kvas2s2z gres5s1zu/sz=,4,1 gres2s2z pres5s1zi/sz=,4,1 los5szális/sz=,3,1 los2s2z los1s1zá losszá1li flos5szális/sz=,3,1 flos2s2z flos1s1zá flosszá1li los5szus/sz=,3,1 los5s1zu/sz=,3,1 flos5szus/sz=,3,1 flos5s1zu/sz=,3,1 knes5s1ze/sz=,4,1 k1ne knes2s2z karus5s1ze/sz=,5,1 ka1ru karuss2 karus2s2z2 játs5s1za/sz=,4,1 játs2s2z játs5s1zá/sz=,4,1 játs5s1zé/sz=,4,1 játs5s1zo/sz=,4,1 játs5s1zu/sz=,4,1 pres5s1zá/sz=,4,1 pres5s1zu/sz=,4,1 jes5szus/sz=,3,1 jes2s2z jes1s1zu dres5s1zú/sz=,4,1 dres5s1zi/sz=,4,1 dos5szi1é/sz=,3,1 dos2s2z dos1s1zi us5szi1ó/sz=,2,1 .dis5s1zu/sz=,3,1 dis5szid/sz=,3,1 dis2s2z dis1s1zi dis5szip/sz=,3,1 dis5szim/sz=,3,1 dis5s1ze/sz=,3,1 des5szert/sz=,3,1 des2s2z des1s1ze boras5s1zó/sz=,5,1 boras2s2z .as5s1zó/sz=,2,1 alus5s1za/sz=,4,1 alus2s2z alus5s1zá/sz=,4,1 alus5s1zu/sz=,4,1 pres5s1zú/sz=,4,1 .és5s2ze1rű/sz=,2,1 .és2s2z2 .és1s1ze legés5s2ze1rű/sz=,5,1 legés2s2z2 legés1s1ze flegés5s2ze1rű/sz=,5,1 flegés2s2z2 flegés1s1ze tüs5s1ze/sz=,3,1 tüs2s2z tüs5s1zö/sz=,3,1 szis5szen/sz=,4,1 slis5szel/sz=,4,1 slis2s2z slis1s1ze pus5szan/sz=,3,1 pus1s1za prüs5s1zö/sz=,4,1 prüs2s2z prüs5s1ze/sz=,4,1 pis5szeg/sz=,3,1 nyis5s1ze/sz=,4,1 nyis2s2z his5s1zü/sz=,3,1 his2s2z gras5s1zá/sz=,4,1 gras2s2z glos5s1zá/sz=,4,1 glos2s2z glos5s1za/sz=,4,1 fos5szil/sz=,3,1 fos1s1zi ffos5szil/sz=,3,1 ffos1s1zi dzses5s1ze/sz=,5,1 dzses2s2z dzses5s1zé/sz=,5,1 dzses5sz2i2g./sz=,5,1 dzses1s1zi klas5szál/sz=,4,1 klas1s1zá klas5s1za/sz=,4,1 klas5s1zu/sz=,4,1 klas5s1zé/sz=,4,1 klas5s1zo/sz=,4,1 csus5s1za/sz=,4,1 csus2s2z csos5s1za/sz=,4,1 csos2s2z as5sziszt/sz=,2,1 as1s1zi asszis2z dres5s1zé/sz=,4,1 dres5sz2i2g./sz=,4,1 as5szonn/sz=,2,1 proces5szor/sz=,6,1 proces2s2z proces1s1zo szeces5s1zi/sz=,6,1 s2ze1ce s2zeces2s2z stres5szek/sz=,5,1 stres1s1ze stres5sze2l./sz=,5,1 stres5szelt/sz=,5,1 stres5szeln/sz=,5,1 stres5sze1lé/sz=,5,1 stres5szele2m./sz=,5,1 stressze1le stres5sze1li/sz=,5,1 stres5szelite2k./sz=,5,1 stresszeli1te stres5szele2k./sz=,5,1 stres5szelle2k./sz=,5,1 stresszel1le stres5sze1lÅ‘/sz=,5,1 stres5szes/sz=,5,1 stres5szé2t./sz=,5,1 stres1s1zé stres5szér2t./sz=,5,1 stres5szé1rÅ‘/sz=,5,1 stres5sz2i2g./sz=,5,1 stres1s1zi stras5s1zo/sz=,5,1 stras2s2z stras5s1zé/sz=,5,1 stras5sz2i2g./sz=,5,1 stras1s1zi .sas5sz2é./sz=,3,1 .sas2s2z .sas1s1zé .sas5szév/sz=,3,1 .sas5szé2t./sz=,3,1 .sas5szén/sz=,3,1 .sas5szér/sz=,3,1 res5szor/sz=,3,1 res1s1zo fes5szor/sz=,3,1 fes1s1zo ffes5szor/sz=,3,1 ffes1s1zo pas5s1zo/sz=,3,1 patis5s1zo/sz=,5,1 patis2s patis2s2z princes5s1zi/sz=,7,1 prin1ce princes2s2z princes5s1ze/sz=,7,1 princes5s1zé/sz=,7,1 kros5s1zé/sz=,4,1 kros2s2z kros5sz2i2g./sz=,4,1 kros1s1zi hús5szo2r./sz=,3,1 hús1s1zo hús5szoros/sz=,3,1 hússzo1ro hallats5s1za/sz=,7,1 hallats2s2z hallats5s1zá/sz=,7,1 hallats5s1zé/sz=,7,1 hallats5s1zo/sz=,7,1 hallats5s1zu/sz=,7,1 generalis5s1zi/sz=,9,1 gene1ra genera1li generalis2s2z fos5szíl/sz=,3,1 fos1s1zí ffos5szíl/sz=,3,1 ffos1s1zí pres5s1zé/sz=,4,1 dis5s1zo/sz=,3,1 pres5s1zo/sz=,4,1 pres5s1zó/sz=,4,1 bas5s1zi/sz=,3,1 as5szonán/sz=,2,1 asszo1ná as5szona2n/sz=,2,1 asszo1na agres5s1zo/sz=,5,1 ag1re agres2s2z slis5s1zo/sz=,4,1 pas5szol/sz=,3,1 kros5szoz/sz=,4,1 kros1s1zo dres5s1zí/sz=,4,1 as5szo1ci/sz=,2,1 as5szimil/sz=,2,1 asszi1mi as5sze1ku/sz=,2,1 as1s1ze eces5szív/sz=,4,1 eces2s2z eces1s1zí gres5szív/sz=,4,1 gres1s1zí pos5szib/sz=,3,1 pos1s1zi pas5szos/sz=,3,1 pres5s1zí/sz=,4,1 .as5szír/sz=,2,1 .as1s1zí .as5szim/sz=,2,1 .as1s1zi abes5szin/sz=,4,1 abes2s2z abes1s1zi .mas5s1zi/sz=,3,1 .mas2s2z .odes5s1za/sz=,4,1 .o1de .odes2s2z .odes5s1zá/sz=,4,1 .parnas5s1zu/sz=,6,1 .parnas2 .par1na .parnas2s2z .os5s1zi/sz=,2,1 .os2s2z .kas5szand/sz=,3,1 .brüs5s1ze/sz=,4,1 .b1rü .brüs2s2z ás5sz2á./sz=,2,1 ás5sza2l./sz=,2,1 és5sz2é./sz=,2,1 ós5sz2á./sz=,2,1 ós1s1zá ós5sza2l./sz=,2,1 ós1s1za ös5sz2é./sz=,2,1 ös5sze2l./sz=,2,1 Å‘s5sz2é./sz=,2,1 Å‘s5sze2l./sz=,2,1 bs5sz2é./sz=,2,1 bs2s2z bs1s1zé bs5sze2l./sz=,2,1 bs1s1ze ís5sz2é./sz=,2,1 ís2s2z ís1s1zé ís5sze2l./sz=,2,1 ís1s1ze ks5sz2á./sz=,2,1 ks2s2z ks1s1zá ks5sza2l./sz=,2,1 ks1s1za ks5sz2é./sz=,2,1 ks1s1zé ks5sze2l./sz=,2,1 ks1s1ze ns5sz2á./sz=,2,1 ns1s1zá ns5sza2l./sz=,2,1 ns1s1za ns5sz2é./sz=,2,1 ns1s1zé ns5sze2l./sz=,2,1 ps5sz2á./sz=,2,1 ps1s1zá ps5sza2l./sz=,2,1 ps1s1za ps5sz2é./sz=,2,1 ps1s1zé ps5sze2l./sz=,2,1 ps1s1ze rs5sz2á./sz=,2,1 rs5sza2l./sz=,2,1 rs5sz2é./sz=,2,1 rs1s1zé rs5sze2l./sz=,2,1 ús5sz2á./sz=,2,1 ús5sza2l./sz=,2,1 üs5sz2é./sz=,2,1 üs2s2z üs1s1zé üs5sze2l./sz=,2,1 üs1s1ze ívus5sz2á./sz=,4,1 ívus2s2z ívus1s1zá ívus5sza2l./sz=,4,1 ívus1s1za abortus5sz2á./sz=,7,1 abor1tu abortuss2 abortus2s2z abortus1s1zá abortus5sza2l./sz=,7,1 abortus1s1za .hus5szein/sz=,3,1 .hus1s1ze .hussze1i .jas5szer/sz=,3,1 .jas2s2z .jas1s1ze .medgyas5szay/sz=,7,1 .medg2y .med1gya .medgyas2s2z .medgyas1s1za kulis5s1za/sz=,5,1 ku1li kulis2s2z kulis5s1zá/sz=,5,1 .has5szán/sz=,3,1 .has1s1zá rus5szi1a/sz=,3,1 pres5s1ze/sz=,4,1 .ras5szom/sz=,3,1 .ras1s1zo .ras5szod/sz=,3,1 .ras5sz2a./sz=,3,1 .ras5szo1to/sz=,3,1 .ras5szér2t./sz=,3,1 .ras1s1zé .ras5sz2é./sz=,3,1 .ras5szunk/sz=,3,1 .ras1s1zu .ras5szuk/sz=,3,1 .ras5sz2i2g./sz=,3,1 .ras1s1zi .thes5s1za/sz=,4,1 .thes2s2z .nas5szer/sz=,3,1 .nas2s2z .nas1s1ze hos5sza2l./sz=,3,1 hos5sz2á./sz=,3,1 t5tya/ty=ty,1,3 t5tyá/ty=ty,1,3 t5tye/ty=ty,1,3 t5tyé/ty=ty,1,3 t5tyi/ty=ty,1,3 t5tyó/ty=ty,1,3 t5tyu/ty=ty,1,3 t5tyű/ty=ty,1,3 vat5tyú/ty=ty,3,3 vat2t2y hat5tyú/ty=ty,3,3 hat2t2y lat5tyú/ty=ty,3,3 lat2t2y flat5tyú/ty=ty,3,3 flat2t2y kat5tyú/ty=ty,3,3 kat2t2y gat5tyú/ty=ty,3,3 gat2t2y fat5tyú/ty=ty,3,3 fat2t2y ffat5tyú/ty=ty,3,3 ffat2t2y fat5tya1i/ty=ty,3,3 fat5tya/ty=ty,3,3 ffat5tya1i/ty=ty,3,3 ffat5tya/ty=ty,3,3 fat5tyá/ty=ty,3,3 ffat5tyá/ty=ty,3,3 z5zs2é./zs=zs,1,3 z1z1sé z5zs2á./zs=zs,1,3 z5zse2l./zs=zs,1,3 z1z1se z5zsa2l./zs=zs,1,3 z1z1sa pi1e1tà .mo1li1è2re .mo1li .cu3ra1ça1o .1cu .cu1ra .cu3ra1ça1ó .ni1ño .ni1ñó .ne1xø .ca1mõ1es .am1pè2re .ne1xø1i2g. .ne1xø1ér2t. .ne1xø1b .ne1xø1j .ne1xø1h .ne1xø1r .ne1xø1v .ni1ñó1i2g. .niñó1i .ni1ñó1ér2t. .niñó1é .ni1ñó1b .ni1ñó1j .ni1ñó1h .ni1ñó1r .ni1ñó1v .cu3ra1ça1ó1i2g. .curaçaó1i .cu3ra1ça1ó1ér2t. .curaçaó1é .cu3ra1ça1ó1b .cu3ra1ça1ó1j .cu3ra1ça1ó1h .cu3ra1ça1ó1r .cu3ra1ça1ó1v pi1e1tà1i2g. pi1e1tà1ér2t. pi1e1tà1b pi1e1tà1j pi1e1tàh pi1e1tà1r pi1e1tà1v 8r7o8ffi8ce 8n7o8ffi8ce 8k7o8ffi8ce 7o8ffi8ce .ne8oï¬t .neoï¬ .bibli8oï¬l .bib1li .bibli1o .biblioï¬ .te8oï¬l .te1o .teoï¬ g8ráï¬1a g8ráï¬1á ge8oï¬1zi geoï¬ .ï¬l8m1u2ni1ó .ï¬l1mu2 .ï¬lmu1ni .vide8oï¬lm .vi1de .vide1o .videoï¬ .ma8g1infl .ma1gi liblouis-2.5.3/tables/no-no-g3.ctb0000664000175000017500000004167412161041546013603 00000000000000# liblouis: Norwegian contracted braille, level 3. # Created June 9, 2005 by Leon Ungier with # help and guidance from Lars Bjørndal . # Modified October 25, 2005 # Last modified July 2012, by lars@lamasti.net include no-no-g2.ctb # -------------- level 3 contractions ----------------- word absolutt 1-12-234 word akkurat 1-13-1235 endword aktig 25-13 endword aktige 26-13 endword aktigere 26-13-12356 endword aktigeres 26-13-12356-234 # word aldri 1-24 # defined in level 2 # alle # defined in level 2 # word allerede 1-123-1235 # defined in level 2 # word alltid 1-2345-145 # defined in level 2 word alminneleg 1-123-134-25-1245 begword alminneleg 1-123-134-25-1245 word ualminneleg 136-1-123-134-25-1245 begword ualminneleg 136-1-123-134-25-1245 word alminnelege 1-123-134-26-1245 word ualminnelege 136-1-123-134-26-1245 word alminnelig 1-123-134-25-123 word ualminnelig 136-1-123-134-25-123 begword alminnelig 1-123-134-25-123 begword ualminnelig 136-1-123-134-25-123 word alminnelige 1-123-134-26-123 word ualminnelige 136-1-123-134-26-123 # word altfor 1-1246 # defined in level 2 # word altsÃ¥ 1-16 # defined in level 2 # begword andre 1-12356 # defined in level 2 # word andres 1-12356-234 # defined in level 2 # begword annen 1-126 # defined in level 2 # word annens 1-126-234 # defined in level 2 # word annerledes 1-1345-1235 # defined in level 2 # begword annet 1-346 # defined in level 2 # endword ar 3456 # defined in level 1 # endword ars 3456-234 # defined in level 1 # word at 1 # defined in level 1 # begge # defined in level 2 # word blant 12-123 # defined in level 2 # word ble 12 # defined in level 1 # word blir 12-1235 # defined in level 2 # word blitt 12-2345 # defined in level 2 # bruk # defined in level 2 word burde 12-1456 # level 3 contractions word bÃ¥de 12-145 # de # defined in level 2 # word deg 145-1245 # defined in level 2 # word dem 145-134 # defined in level 2 # denne # defined in level 2 # begword der 23456 # defined in level 2 # dere # defined in level 2 # word desse 1456-234 # defined in level 2 # word dessuten 145-234-136 # defined in level 2 # word dessverre 145-234-1236 # defined in level 2 # dette # defined in level 2 # word din 145-1345 # defined in level 2 # word disse 145-234 # defined in level 2 # word ditt 145-2345 # defined in level 2 # word diverre 145-1236 # defined in level 2 endword dom 25-145 endword domde 25-145-1456 endword domen 25-145-126 endword domens 25-145-126-234 endword domer 25-145-156 endword domers 25-145-156-234 endword domet 25-145-346 endword domets 25-145-346-234 endword domane 25-145-1-2346 endword domme 26-145 endword dommene 26-145-2346 endword dommenes 26-145-2346-234 endword dommen 26-145-1345 endword dommer 26-145-1235 # word du 145 # defined in level 2 # begword dykk 145-13 # defined in level 2 endword els 25-15 endword elsar 25-15-3456 endword elsars 25-15-3456-234 endword elsde 25-15-1456 endword elser 25-15-156 endword elsers 25-15-156-234 endword elsen 25-15-126 endword elsens 25-15-126-234 endword elset 25-15-346 endword elsets 25-15-346-234 endword elsne 25-15-2346 endword elsnes 25-15-2346-234 endword elste 25-15-1256 endword elstes 25-15-1256-234 endword else 26-15 endword elsede 26-15-1456 endword elsene 26-15-2346 endword elsenes 26-15-2346-234 endword elsete 26-15-1256 always enb 126-12 always enc 126-14 always end 126-145 always enf 126-124 always eng 126-1245 always enh 126-125 always enj 126-245 always enk 126-13 always enl 126-123 always enm 126-134 always enn 126-1345 always enp 126-1234 always enq 126-12345 always enr 126-1235 always ens 126-234 always ent 126-2345 always env 126-1236 always enw 126-23456 always enx 126-1346 always enz 126-1356 always erb 156-12 always erc 156-14 always erd 156-145 always erf 156-124 always erg 156-1245 always erh 156-125 always erj 156-245 always erk 156-13 always erl 156-123 always erm 156-134 always ern 156-1345 always erp 156-1234 always erq 156-12345 always err 156-1235 always ers 156-234 always ert 156-2345 always erv 156-1236 always erw 156-23456 always erx 156-1346 always erz 156-1356 always enbruk 126-12-13 always ensom 126-25-234 always ensomme 126-26-234 word erte 156-1256 begword erte 156-1256 endword erte 156-1256 word ertes 156-1256-234 endword ertes 156-1256-234 word erne 156-2346 begword erne 156-2346 endword erne 156-2346 endword ernes 156-2346-234 word enhet 126-236 word enheten 126-236-126 word enheter 126-236-156 word enhetene 126-236-15-2346 endword enhet 126-236 endword enheten 126-236-126 endword enheter 126-236-156 endword enhetene 126-236-15-2346 endword erdom 156-25-145 endword erdomar 156-25-145-3456 endword erdomen 156-25-145-126 endword erdomens 156-25-145-126-234 endword erdomane 156-25-145-1-2346 endword erdomanes 156-25-145-1-2346-234 endword erdommen 156-26-145-1356 endword erdommer 156-26-145-1235 endword endom 126-25-145 endword endomane 126-25-145-1-2346 endword endommen 126-26-145-1345 endword endommer 126-26-145-1235 begword et 346 word forresten 1246-1235-234 # level 3 contractions word forrige 1246-1235-1245 # word fra 124 # defined in level 1 always fra\sog\smed 124-14-146 word frametter 124-1356 # level 3 contractions word framfor 124-1246 # word fulgte 124-1245-1256 # defined in level 2 # word følg 124-1245 # defined in level 2 # begword følg 124-1245 # always følge 124-1245-15 # word før 246 # defined in level 1 always først\sog\sfremst 124-14-124 # level 3 contractions begword grupp 1245-1234 # level 3 contractions word gruppa 1245-1234-1 endword gruppa 1245-1234-1 word gruppe 1245-1234-15 begword gruppe 1245-1234-15 endword gruppe 1245-1234-15 word gruppene 1245-1234-15-2346 begword gruppene 1245-1234-15-2346 endword gruppene 1245-1234-15-2346 word gruppenes 1245-1234-15-2346-234 endword gruppenes 1245-1234-15-2346-234 word gruppen 1245-1234-126 begword gruppen 1245-1234-126 endword gruppen 1245-1234-126 word gruppens 1245-1234-126-234 begword gruppens 1245-1234-126-234 endword gruppens 1245-1234-126-234 word grupper 1245-1234-156 begword grupper 1245-1234-156 endword grupper 1245-1234-156 word gruppers 1245-1234-156-234 endword gruppers 1245-1234-156-234 word gÃ¥r 1245-1235 word gÃ¥tt 1245-2345 # level 3 contractions word heldig 125-145 # level 3 contractions word uheldig 136-125-145 begword heldig 125-145 # level 3 contractions begword uheldig 136-125-145 endword het 236 # level 3 contractions endword heten 236-126 endword heter 236-156 endword hetene 236-15-2346 # word hun 136 # already in level 1 # hverandre # defined in level 2 begword hvor 23456 endword ing 25-24 always ings 25-24-234 endword ingar 25-24-3456 endword ingars 25-24-3456-234 endword ingde 25-24-1456 endword ingen 25-24-126 endword ingens 25-24-126-234 endword inger 25-24-156 endword ingers 25-24-156-234 endword inget 25-24-346 endword ingets 25-24-346-234 endword ingte 25-24-1256 endword ingets 25-24-346-234 endword inga 25-24-1 endword ingade 25-24-1-1456 endword ingaen 25-24-1-126 endword ingaens 25-24-1-126-234 endword ingaer 25-24-1-156 endword ingaers 25-24-1-156-234 endword ingaet 25-24-1-346 endword ingaets 25-24-1-346-234 endword ingate 25-24-1-1256 endword ingane 25-24-1-2346 endword inganes 25-24-1-2346-234 endword inge 26-24 endword ingene 26-24-2346 endword ingenes 26-24-2346-234 word istedenfor 24-356-1246 word jamvel 245-1236 endword leg 25-1245 endword legar 25-1245-3456 endword legars 25-1245-3456-234 endword legde 25-1245-1456 endword legdes 25-1245-1456-234 endword legen 25-1245-126 endword legens 25-1245-126-234 endword leger 25-1245-156 endword legers 25-1245-156-234 endword leget 25-1245-346 endword legets 25-1245-346-234 endword legne 25-1245-2346 endword legnes 25-1245-2346-234 endword legte 25-1245-1256 endword legtes 25-1245-1256-234 endword lege 26-1245 endword legene 26-1245-2346 endword legenes 26-1245-2346-234 endword legere 26-1245-12356 endword legeres 26-1245-12356-234 endword legete 26-1245-1256 endword legetes 26-1245-1256-234 endword lig 25-123 endword ligar 25-123-3456 endword ligde 25-123-1456 endword ligdes 25-123-1456-234 endword ligen 25-123-126 endword ligens 25-123-126-234 endword liger 25-123-156 endword ligers 25-123-156-234 endword liget 25-123-346 endword ligets 25-123-346-234 endword ligne 25-123-2346 endword lignes 25-123-2346-234 endword ligte 25-123-1256 endword ligtes 25-123-1256-234 endword lighet 25-123-236 endword ligheten 25-123-236-126 endword lighetens 25-123-236-126-234 endword lighetene 25-123-236-15-2346 endword lige 26-123 endword ligene 26-123-2346 endword ligenes 26-123-2346-234 endword ligete 26-123-1256 endword ligetes 26-123-1256-234 endword ligere 26-123-12356 endword ligeres 26-123-12356-234 # word mange 134 # defined in level 1 contractions # word manges 134-234 # defined in level 2 contractions # word med 146 # defined in level 1 contractions # word meg 134-1245 # defined in level 2 contractions # word meget 134-346 # - # word mellom 134-123 # - endword ment 25-2345 endword mentar 25-2345-3456 endword mentars 25-2345-3456-234 endword mentde 25-2345-1456 endword menten 25-2345-126 endword mentens 25-2345-126-234 endword menter 25-2345-156 endword menters 25-2345-156-234 endword mentet 25-2345-346 endword mentets 25-2345-346-234 endword mentne 25-2345-2346 endword mentnes 25-2345-2346-234 endword mentte 25-2345-1256 endword menta 25-2345-1 endword mente 26-2345 endword mentene 26-2345-2346 endword mentenes 26-2345-2346-234 endword messig 25-134 endword messige 26-134 endword messigere 26-134-12356 # word min 134-1345 # defined in level 2 contractions endword nad 25-1246 endword nadar 25-1246-3456 endword nadars 25-1246-3456-234 endword naden 25-1246-126 endword nadens 25-1246-126-234 endword nader 25-1246-156 endword naders 25-1246-156-234 endword nadet 25-1246-346 endword nadets 25-1246-346-234 endword nadne 25-1246-2346 endword nade 26-1246 endword nadene 26-1246-2346 endword nadenes 26-1246-2346-234 endword nadere 26-1246-12356 endword nadere 26-1246-12356-234 # word natur 1345-2345 # defined in level 2 contractions # begword unatur 136-1345-2345 # level 3 contractions word naturligvis 1345-2345-1236 # word nedenfor 1345-1246 # defined in level 2 contractions # word nedenfra 1345-124 # defined in level 2 contractions begword une 136-2346 begword ne 2346 word nemlig 1345-123 # word neppe 1345-1234 # defined in level 2 contractions word nettopp 1345-2345-1234 # begword noen 1345-1345 # defined in level 2 contractions word noenlunde 1345-1345-123 word noensinne 1345-1345-234 # word noko 1345-13 # defined in level 2 contractions # word nokon 1345-13-1345 # defined in level 2 contractions # word nokre 1345-13-12356 # defined in level 2 contractions word nødvendig 1345-1236 begword nødvendig 1345-1236 word unødvendign 136-1345-1236 begword unødvendig 136-1345-1236 # word nÃ¥r 1345 # defined in level 2 contractions # word og 14 # defined in level 1 # word ogsÃ¥ # defined in level 1 word omkring 135-134-13 # level 3 contractions word omtrent 135-134-2345 # word oss # defined in level 1 # word og 14 # defined in level 1 # word ogsÃ¥ # defined in level 1 # word oss # defined in level 1 # word ovenfor 135-1246 # defined in level 2 contractions # word ovenfra 135-124 # defined in level 2 contractions # word over # defined in level 1 # over # defined in level 2 contractions # begword overgang 1346-1245-1245 # defined in level 2 contractions word oppmerksom 135-1234-134 word uoppmerksom 136-135-1234-134 word pakk 1234-13 begword pakk 1234-13 endword pakk 1234-13 word plutselig 1234-25-123 begword pr 25 # always punkt 1234-13-2345 # defined in level 2 contractions # word pÃ¥ 1234 # defined in level 1 # re # defined in level 2 contractions word riktig 1235-1245 word uriktig 136-1235-1245 begword riktig 1235-1245 begword uriktig 136-1235-1245 endword sam 25-146 endword samar 25-146-3456 endword samars 25-146-3456-234 endword samen 25-146-126 endword samens 25-146-126-234 endword samer 25-146-156 endword samers 25-146-156-234 endword samet 25-146-346 endword samets 25-146-346-234 endword samne 25-146-2346 endword samnes 25-146-2346-234 endword samte 25-146-1256 endword samtes 25-146-1256-234 endword samre 25-146-12356 endword samres 25-146-12356-234 endword samt 25-146-2345 endword same 26-146 endword samene 26-146-2346 endword samenes 26-146-2346-234 endword samere 26-146-12356 # word samme 234-134 # defined level 2 contractions # sammen # defined level 2 contractions begword sannsyn 234-234 # level 3 contractions begword usannsyn 136-234-234 begword sannsynleg 234-234-25-1245 begword usannsynleg 136-234-234-25-1245 begword sannsynlig 234-234-25-123 begword usannsynlig 136-234-234-25-123 word sannsynligvis 234-234-1236 # level 3 contractions # word seg 234-1245 # defined level 2 contractions # word selv 234-1236 # defined level 2 contractions word sidan 234-145 # level 3 contractions word simpelthen 234-1234-125 # word sin 234-1345 # defined level 2 contractions # word sitt 234-2345 # defined level 2 contractions word sjeldan 234-245-145 # level 3 contractions word sjelden 234-245-145-126 word sjeldne 234-245-145-2346 endword sjon 25-1345 endword sjonar 25-1345-3456 endword sjonars 25-1345-3456-234 endword sjonen 25-1345-126 endword sjonens 25-1345-126-234 endword sjoner 25-1345-156 endword sjoners 25-1345-156-234 endword sjonet 25-1345-346 endword sjonane 25-1345-1-2346 endword sjonanes 25-1345-1-2346-234 endword sjone 26-1345 endword sjonene 26-1345-2346 endword sjonenes 26-1345-2346-234 # word sjøl 234-245 # defined level 2 contractions # sjølv # defined level 2 contractions begword sk 2356 endword sk 2356 # word skal 123456 # defined level 2 contractions endword skap 25-1234 endword skaps 25-1234-234 endword skapar 25-1234-3456 endword skapars 25-1234-3456-234 endword skapen 25-1234-126 endword skapens 25-1234-126-234 endword skaper 25-1234-156 endword skapers 25-1234-156-234 endword skapet 25-1234-346 endword skapets 25-1234-346-234 endword skape 26-1234 endword skapene 26-1234-2346 endword skapenes 26-1234-2346-234 endword enskap 126-25-1234 endword enskapar 126-25-1234-3456 endword enskapars 126-25-1234-3456-234 endword enskapen 126-25-1234-126 endword enskapens 126-25-1234-126-234 endword enskaper 126-25-1234-156 endword enskapers 126-25-1234-156-234 endword enskapet 126-25-1234-346 endword enskapets 126-25-1234-346-234 endword enskape 126-26-1234 endword enskapene 126-26-1234-2346 endword enskapenes 126-26-1234-2346-234 endword erskap 156-25-1234 endword erskapar 156-25-1234-3456 endword erskapars 156-25-1234-3456-234 endword erskapen 156-25-1234-126 endword erskapens 156-25-1234-126-234 endword erskaper 156-25-1234-156 endword erskapers 156-25-1234-156-234 endword erskapet 156-25-1234-346 endword erskapets 156-25-1234-346-234 endword erskape 156-26-1234 endword erskapene 156-26-1234-2346 endword erskapenes 156-26-1234-2346-234 begword skr 123456 # word skulla 123456-1 # defined level 2 contractions # word skulle 123456-15 # defined level 2 contractions # word skullet 123456-346 # defined level 2 contractions # word snart 234-1235 # defined level 2 contractions # word som 234 # defined in level 1 endword som 25-234 # level 3 contractions endword somt 25-234-2345 endword somme 26-234 endword sommere 26-234-12356 endword sommene 26-234-2346 begword sp 235 # level 3 contractions # always spørsmÃ¥l 234-1234-134 # defined level 2 contractions begword st 356 # level 3 contractions # word tatt 2345-2345 # defined level 2 contractions word te 1256 begword te 1256 begword ute 136-1256 word uten 136-2345-126 endword uten 136-2345-126 word temmelig 2345-134 # level 3 contractions always til\sog\smed 2345-14-146 begword tr 26 word vanske 1236-14 begword vanske 1236-14 begword vanskeleg 1236-14-25-1245 begword vanskelig 1236-14-25-123 word vedtatt 1236-2345-2345 # level 3 contractions word verken 1236-13 endword vis 25-1236 endword visar 25-1236-3456 endword visars 25-1236-3456-234 endword visen 25-1236-126 endword visens 25-1236-126-234 endword viser 25-1236-156 endword visers 25-1236-156-234 endword viset 25-1236-346 endword visets 25-1236-346-234 endword visne 25-1236-2346 endword visnes 25-1236-2346-234 endword viste 25-1236-1256 endword vistes 25-1236-1256-234 endword vist 25-1236-2345 # word viss 1236-234 # defined level 2 contractions # word uviss 136-1236-234 # defined level 2 contractions # --------------------- End level 3 contracions --------------------------- liblouis-2.5.3/tables/Cz-Cz-g1.utb0000664000175000017500000001540712161041546013516 00000000000000# liblouis: Czech Grade 1 Braille Table # Created & maintained by Leon Ungier . include text_nabcc.dis # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 exclamation sign x0021 punctuation " 2356 double quote x0022 sign # 3456 number sign x0023 sign $ 3456-1246 dollar sign x0024 sign % 3456-1234 percent sign x0025 sign & 3456-12346 ampersand z0026 punctuation ' 4 apostrophe x0027 punctuation ( 236 left parenthesis x0028 punctuation ) 356 right parenthesis x0029 sign * 35 asterisk x002A math + 256 plus 002B punctuation , 2 coma 002C punctuation - 36 hyphen-minus 002D punctuation . 3 point 002E math / 12456 solidus 002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B punctuation < 126 less-than sign x003C math = 123456 equal sign x003D math > 345 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 3456-12456 commercial at x0040 include latinLetterDef6Dots.uti punctuation [ 6-236 left square bracket x005B sign \\ 3456-1256 reverse solidus x005C punctuation ] 6-356 right square bracket x005D sign ^ 45 circumflex accent x005E sign _ 6-36 low line x005F sign ` 45-4 grave accent x0060 # a - z # 97 - 122 x0061-x007A punctuation { 45-236 left curly bracket x007B sign | 456 vertical line x007C punctuation } 45-356 right curly bracket x007D math ~ 5 tilde x007E sign \x0080 15-136-1235-135 x0080 space \X00A0 0 no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 346 section sign x00A7 sign © 2356-6-14-2356 copyright x00A9 # punctuation « 45-2356 left-pointing double angle quotation x00AB punctuation « 236 left-pointing double angle quotation x00AB punctuation \x00AD 36 soft hyphen sign ° 4-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign µ 46-134 micro sign x00B5 sign ¶ 4-1234-345 pilcrow sign (paragraph) x00B6 sign ¹ 1-27 superscript 1 sign x00B9 # punctuation » 2356-12 right-pointing double angle quotation x00BB punctuation » 356 right-pointing double angle quotation x00BB math ¼ 6-16-34-1456 vulgar fraction one quarter x00BC math ½ 6-16-34-126 vulgar fraction one half x00BD math ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 letter a with grave x00C0 / 00E0 uplow \x00C1\x00E1 16 letter a with acute x00E1 uplow \x00C2\x00E2 16 letter a with circumflex x00E2 uplow \x00C3\x00E3 126 letter a with tilde x00E3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 16 A with ring above x00C5 / 00E5 uplow \x00C6\x00E6 6-345 ae x00C6 uplow Çç 12346 letter c with cedilla x00C7 / 00E7 uplow Èè 2346 e with grave x00C8 / 00E8 uplow \x00C9\x00E9 345 e with acute x00E9 uplow \x00CA\x00EA 126 e with circumflex x00EA uplow \x00CB\x00EB 1246 e with diaeresis x00EB uplow \x00CD\x00ED 34 i with acute x00ED uplow \x00CE\x00EE 146 i with circumflex x00EE uplow \x00CF\x00EF 12456 i with diaeresis x00CF / 00EF uplow \x00D3\x00F3 246 O with acute x00D3 / 00F3 uplow \x00D4\x00F4 1456 o with circumflex x00F4 uplow \x00D5\x00F5 246 o with tilde x00F5 uplow Öö 246 O with diaeresis x00D6 / 00F6 math × 236 multiplication sign x00D7 uplow \x00D8\x00F8 246 o with stroke x00D8 / 00F8 math ÷ 256 division sign x00F7 uplow \x00DA\x00FA 346 u with acute x00DA / 00FA uplow \x00DB\x00FB 156 u with circumflex x00FB uplow \x00DC\x00FC 1256 u with diaeresis x00FC uplow \x00DD\x00FD 12346 y with acute x00DD / 00FD # the letter a with ogonek ----------------------------------- uplow \x0104\x0105 16 # the letter c with acute uplow \x0106\x0107 146 uplow \x010C\x010D 146 C with caron uplow \x010E\x010F 1456 D with caron # the letter e with ogonek uplow \x0118\x0119 156 uplow \x011A\x011B 126 E with caron # the letter l with stroke uplow \x0141\x0142 126 # the letter n with acute uplow \x0143\x0144 1456 uplow \x0147\x0148 1246 N with caron uplow \x0158\x0159 2456 R with caron # the letter s with acute uplow \x015A\x015B 246 uplow \x0160\x0161 156 S with caron uplow \x0164\x0165 1256 T with caron uplow \x016C\x016D 23456 U with breve uplow \x016E\x016F 23456 U with ring above # the letter z with acute uplow \x0179\x017A 2346 # the letter z with dot above uplow \x017B\x017C 12346 uplow \x017D\x017E 2346 Z with caron punctuation \x2010 36 # 8208 hyphen punctuation \x2011 36 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis # ------------------------------------------------------ capsign 6 # single capital letter indicator begcaps 6-6 # a block of consecutive capital letters indicator numsign 3456 # number sign, just one operand midnum , 3 midnum . 2 midnum + 235 midnum - 36 midnum / 256 midnum : 25 midnum = 2356 # endnum # 56-3456 prepunc " 236 postpunc " 356 prepunc ' 6-236 postpunc ' 356-3 postpunc '' 356 postpunc ''' 356-3-356 repeated *** 16-16-16 prepunc `` 236 prepunc ` 6-236 repeated --- 36-36-36 repeated ::: 25-25-25 repeated ~~~ 4-156-4-156-4-156 always \s-\s 36-36 always \s-\scom 36-36-14-135-134 always ... 3-3-3 always .\s.\s. 3-3-3 . . . always \s­\s 36-36 # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip liblouis-2.5.3/tables/bg.ctb0000664000175000017500000001173212161041546012626 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Bulgarian # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 26 QUESTION MARK punctuation \x00a0 0 NO-BREAK SPACE uppercase \x0401 167 CYRILLIC CAPITAL LETTER IO uppercase \x0410 17 CYRILLIC CAPITAL LETTER A uppercase \x0411 127 CYRILLIC CAPITAL LETTER BE uppercase \x0412 24567 CYRILLIC CAPITAL LETTER VE uppercase \x0413 12457 CYRILLIC CAPITAL LETTER GHE uppercase \x0414 1457 CYRILLIC CAPITAL LETTER DE uppercase \x0415 157 CYRILLIC CAPITAL LETTER IE uppercase \x0416 2457 CYRILLIC CAPITAL LETTER ZHE uppercase \x0417 13567 CYRILLIC CAPITAL LETTER ZE uppercase \x0418 247 CYRILLIC CAPITAL LETTER I uppercase \x0419 123467 CYRILLIC CAPITAL LETTER SHORT I uppercase \x041a 137 CYRILLIC CAPITAL LETTER KA uppercase \x041b 1237 CYRILLIC CAPITAL LETTER EL uppercase \x041c 1347 CYRILLIC CAPITAL LETTER EM uppercase \x041d 13457 CYRILLIC CAPITAL LETTER EN uppercase \x041e 1357 CYRILLIC CAPITAL LETTER O uppercase \x041f 12347 CYRILLIC CAPITAL LETTER PE uppercase \x0420 12357 CYRILLIC CAPITAL LETTER ER uppercase \x0421 2347 CYRILLIC CAPITAL LETTER ES uppercase \x0422 23457 CYRILLIC CAPITAL LETTER TE uppercase \x0423 1367 CYRILLIC CAPITAL LETTER U uppercase \x0424 1247 CYRILLIC CAPITAL LETTER EF uppercase \x0425 1257 CYRILLIC CAPITAL LETTER HA uppercase \x0426 147 CYRILLIC CAPITAL LETTER TSE uppercase \x0427 123457 CYRILLIC CAPITAL LETTER CHE uppercase \x0428 1567 CYRILLIC CAPITAL LETTER SHA uppercase \x0429 13467 CYRILLIC CAPITAL LETTER SHCHA uppercase \x042a 123567 CYRILLIC CAPITAL LETTER HARD SIGN uppercase \x042b 23467 CYRILLIC CAPITAL LETTER YERU uppercase \x042c 234567 CYRILLIC CAPITAL LETTER SOFT SIGN uppercase \x042d 2467 CYRILLIC CAPITAL LETTER E uppercase \x042e 12567 CYRILLIC CAPITAL LETTER YU uppercase \x042f 12467 CYRILLIC CAPITAL LETTER YA lowercase \x0430 1 CYRILLIC SMALL LETTER A lowercase \x0431 12 CYRILLIC SMALL LETTER BE lowercase \x0432 2456 CYRILLIC SMALL LETTER VE lowercase \x0433 1245 CYRILLIC SMALL LETTER GHE lowercase \x0434 145 CYRILLIC SMALL LETTER DE lowercase \x0435 15 CYRILLIC SMALL LETTER IE lowercase \x0436 245 CYRILLIC SMALL LETTER ZHE lowercase \x0437 1356 CYRILLIC SMALL LETTER ZE lowercase \x0438 24 CYRILLIC SMALL LETTER I lowercase \x0439 12346 CYRILLIC SMALL LETTER SHORT I lowercase \x043a 13 CYRILLIC SMALL LETTER KA lowercase \x043b 123 CYRILLIC SMALL LETTER EL lowercase \x043c 134 CYRILLIC SMALL LETTER EM lowercase \x043d 1345 CYRILLIC SMALL LETTER EN lowercase \x043e 135 CYRILLIC SMALL LETTER O lowercase \x043f 1234 CYRILLIC SMALL LETTER PE lowercase \x0440 1235 CYRILLIC SMALL LETTER ER lowercase \x0441 234 CYRILLIC SMALL LETTER ES lowercase \x0442 2345 CYRILLIC SMALL LETTER TE lowercase \x0443 136 CYRILLIC SMALL LETTER U lowercase \x0444 124 CYRILLIC SMALL LETTER EF lowercase \x0445 125 CYRILLIC SMALL LETTER HA lowercase \x0446 14 CYRILLIC SMALL LETTER TSE lowercase \x0447 12345 CYRILLIC SMALL LETTER CHE lowercase \x0448 156 CYRILLIC SMALL LETTER SHA lowercase \x0449 1346 CYRILLIC SMALL LETTER SHCHA lowercase \x044a 12356 CYRILLIC SMALL LETTER HARD SIGN lowercase \x044b 2346 CYRILLIC SMALL LETTER YERU lowercase \x044c 23456 CYRILLIC SMALL LETTER SOFT SIGN lowercase \x044d 246 CYRILLIC SMALL LETTER E lowercase \x044e 1256 CYRILLIC SMALL LETTER YU lowercase \x044f 1246 CYRILLIC SMALL LETTER YA lowercase \x0451 16 CYRILLIC SMALL LETTER IO uppercase \x0462 3457 CYRILLIC CAPITAL LETTER YAT lowercase \x0463 345 CYRILLIC SMALL LETTER YAT uppercase \x046a 2467 CYRILLIC CAPITAL LETTER BIG YUS lowercase \x046b 246 CYRILLIC SMALL LETTER BIG YUS liblouis-2.5.3/tables/sr-chardefs.cti0000664000175000017500000001502612161041546014446 00000000000000# # Copyright (C) 2011 by Peter Engström # Copyright (C) 2011 by Monk Jeremiah, Manastir Decani # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # # SERBIAN # ======= # Authors: Peter Engström, Index Braille # Monk Jeremiah, Manastir Decani # # Date: Note: # 2011-03-28 Initial release # 2011-04-04 Added more signs. # #--------------------------------------------------------------------------------------- #--------------------- ALL CHARS DEFINITIONS ------------------------------------------- space \t 0 tab # HORIZONTAL TABULATION space \s 0 blank # SPACE space \X00A0 0 # NO-BREAK SPACE punctuation ! 235 # EXCLAMATION MARK sign + 235 # PLUS SIGN midnum + 235 # PLUS SIGN punctuation ? 26 # QUESTION MARK punctuation . 256 # FULL STOP sign \x2026 3-3-3 # HORIZONTAL ELLIPSIS punctuation , 2 # COMMA punctuation ; 23 # SEMICOLON punctuation : 25 # COLON punctuation ­ 36 # HYPHEN-MINUS punctuation ' 3 # APOSTROPHE punctuation * 35 # ASTERISK sign / 34 # SOLIDUS sign \\ 16 # REVERSE SOLIDUS punctuation ( 2356 # LEFT PARENTESIS punctuation ) 2356 # RIGHT PARENTESIS punctuation " 2356 # QUOTATION MARK punctuation \x201E 236 # DOUBLE LOW-9 QUOTATION MARK punctuation \x201C 356 # LEFT DOUBLE QUOTATION MARK sign # 3456 # NUMBER SIGN sign $ 256 # DOLLAR SIGN sign & 4-12346 # AMPERSAND sign < 5-246 # LESS-THAN SIGN sign = 2356 # EQUAL SIGN sign > 135-2 # GREATER-THAN SIGN sign @ 345 # COMMERCIAL AT punctuation [ 2356-3 # LEFT SQUARE BRACKET punctuation ] 6-2356 # RIGHT SQUARE BRACKET sign ^ 56 # CIRCUMFLEX ACCENT sign _ 6-36 # LOW LINE (UNDERSCORE) sign ` 4 # GRAVE ACCENT punctuation { 2356-23 # LEFT CURLY BRACKET sign | 4-123 # VERTICAL LINE punctuation } 56-2356 # RIGHT CURLY BRACKET sign ~ 56 # TILDE sign \x00A2 4 # CENT SIGN sign \x00A3 6-123 # POUND SIGN sign \x00A4 2356-1236-2356 # CURRENCY SIGN sign \x00A7 346 # PARAGRAPH SIGN sign \x00A9 12356-14-23456 # COPYRIGHT punctuation \x00AB 2346-14-3 # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK sign \x00B0 356 # DEGREE SIGN sign % 3456-245-356 # PERCENT SIGN sign \x2030 3456-245-356-356 # PER MILL SIGN sign \x00B2 34-23 # SUPERSCRIPT 2 SIGN sign \x00B3 34-25 # SUPERSCRIPT 3 SIGN sign \x00B9 34-2 # SUPERSCRIPT 1 SIGN punctuation \x00BB 6-2356-2356 # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK sign \x00BC 3456-1-1256-145 # VULGAR FRACTION ONE QUARTER sign \x00BD 3456-1-1256-12 # VULGAR FRACTION ONE HALF sign \x00BE 3456-14-1256-145 # VULGAR FRACTION 3 QUARTERS math \x00D7 56-36 # MULTIPLICATION SIGN math \x00F7 1256 # DIVISION SIGN #------------- NOT ASSIGNED ---------------------------------- #sign \x00A5 45-13456 # YEN SIGN #sign \x00B4 1256 # ACUTE ACCENT #sign \x00B5 46-134 # µ MICRO SIGN #sign \x00B6 4-1234-345 # ¶ PILCROW SIGN #uplow \x00D3\x00F3 346 # LATIN CAPITAL LETTER O WITH ACUTE include digits6Dots.uti include latinLetterDef6Dots.uti uplow \x010C\x010D 16 # LATIN LETTER C WITH CARON uplow \x0106\x0107 146 # LATIN LETTER C WITH ACUTE uplow \x0110\x0111 1456 # LATIN LETTER D WITH STROKE uplow \x0160\x0161 156 # LATIN LETTER S WITH CARON uplow \x017D\x017E 2346 # LATIN LETTER Z WITH CARON uplow \x008E\x009E 2346 # LATIN LETTER Z WITH CARON (ASCII) #uplow \x00C0\x00E0 # LATIN LETTER A WITH GRAVE #uplow \x00C8\x00E8 # LATIN LETTER E WITH GRAVE #uplow \x00C9\x00E9 # LATIN LETTER E WITH ACUTE #uplow \x00CC\x00EC # LATIN LETTER I WITH GRAVE #uplow \x00D2\x00F2 # LATIN LETTER O WITH GRAVE #uplow \x00DA\x00FA # LATIN LETTER U WITH ACUTE #-------- SERBIAN CYRILLIC LETTERS ----------------------------------------------------- uplow \x0410\x0430 1 # CYRILLIC LETTER A uplow \x0411\x0431 12 # CYRILLIC LETTER BE uplow \x0426\x0446 14 # CYRILLIC LETTER TSE uplow \x0427\x0447 16 # CYRILLIC LETTER CHE uplow \x040B\x045B 146 # CYRILLIC LETTER TSHE uplow \x0414\x0434 145 # CYRILLIC LETTER DE uplow \x040F\x045F 12456 # CYRILLIC LETTER DZHE uplow \x0402\x0452 1456 # CYRILLIC LETTER DJE uplow \x0415\x0435 15 # CYRILLIC LETTER IE uplow \x0424\x0444 124 # CYRILLIC LETTER EF uplow \x0413\x0433 1245 # CYRILLIC LETTER GHE uplow \x0425\x0445 124 # CYRILLIC LETTER HA uplow \x0418\x0438 24 # CYRILLIC LETTER I uplow \x0408\x0458 245 # CYRILLIC LETTER JE uplow \x041A\x043A 13 # CYRILLIC LETTER KA uplow \x041B\x043B 123 # CYRILLIC LETTER EL uplow \x0409\x0459 126 # CYRILLIC LETTER LJE uplow \x041C\x043C 134 # CYRILLIC LETTER EM uplow \x041D\x043D 1345 # CYRILLIC LETTER EN uplow \x040A\x045A 1246 # CYRILLIC LETTER NJE uplow \x041E\x043E 135 # CYRILLIC LETTER O uplow \x041F\x043F 1234 # CYRILLIC LETTER PE uplow \x0420\x0440 1235 # CYRILLIC LETTER ER uplow \x0421\x0441 234 # CYRILLIC LETTER ES uplow \x0428\x0448 156 # CYRILLIC LETTER SHA uplow \x0422\x0442 2345 # CYRILLIC LETTER TE uplow \x0423\x0443 136 # CYRILLIC LETTER U uplow \x0412\x0432 1236 # CYRILLIC LETTER VE uplow \x0417\x0437 1356 # CYRILLIC LETTER ZE uplow \x0416\x0436 2346 # CYRILLIC LETTER ZHE #uplow \x0419\x0439 12346 # CYRILLIC LETTER SHORT I #uplow \x0429\x0449 1346 # CYRILLIC LETTER SHCHA #uplow \x042A\x044A 12356 # CYRILLIC LETTER HARD SIGN #uplow \x042B\x044B 2346 # CYRILLIC LETTER YERU #uplow \x042C\x044C 23456 # CYRILLIC LETTER SOFT SIGN #uplow \x042D\x044D 246 # CYRILLIC LETTER E #uplow \x042E\x044E 1256 # CYRILLIC LETTER YU #uplow \x042F\x044F 1246 # CYRILLIC LETTER YA #uplow \x0401\x0451 16 # CYRILLIC LETTER IO #--------------------------------------------------------------------------------------- liblouis-2.5.3/tables/ne.ctb0000664000175000017500000000167312161041546012643 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Nepali include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/da-1252.ctb0000664000175000017500000002551112161041546013211 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Danish Svend Thougaard 2002-11-18 (iso-8859-1) # This is the standard table defined by Svend Thougaard [2002-11-18]. It is # primarily defined for use with the Windows-1252 character table. It is only # in the BRLTTY package for reference as most of the control characters have # been mapped to unusual braille patterns. The left brace ({) and percent sign # (%) don't have logical representations. # generated by ttbtest letter \x0000 8 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 24568 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 678 LINE FEED (LF) space \v 1368 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 257 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 12358 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 13568 DEVICE CONTROL TWO letter \x0013 4578 DEVICE CONTROL THREE letter \x0014 268 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 278 SYNCHRONOUS IDLE letter \x0017 3578 END OF TRANSMISSION BLOCK letter \x0018 78 CANCEL letter \x0019 68 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 2678 ESCAPE letter \x001c 45678 INFORMATION SEPARATOR FOUR letter \x001d 12368 INFORMATION SEPARATOR THREE letter \x001e 1234678 INFORMATION SEPARATOR TWO letter \x001f 235678 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation # 34568 NUMBER SIGN punctuation $ 25678 DOLLAR SIGN punctuation % 24578 PERCENT SIGN punctuation & 123468 AMPERSAND punctuation ' 4 APOSTROPHE punctuation ( 2368 LEFT PARENTHESIS punctuation ) 3568 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 2358 PLUS SIGN punctuation , 2 COMMA punctuation - 368 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 348 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 358 LESS-THAN SIGN punctuation = 23568 EQUALS SIGN punctuation > 267 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 478 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 23678 LEFT SQUARE BRACKET punctuation \\ 347 REVERSE SOLIDUS punctuation ] 35678 RIGHT SQUARE BRACKET punctuation ^ 12348 CIRCUMFLEX ACCENT punctuation _ 3678 LOW LINE punctuation ` 5 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 123678 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 345678 RIGHT CURLY BRACKET punctuation ~ 467 TILDE letter \x007f 12345678 DELETE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 256 INVERTED EXCLAMATION MARK punctuation \x00a2 2578 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 2367 CURRENCY SIGN punctuation \x00a5 67 YEN SIGN punctuation \x00a6 3478 BROKEN BAR punctuation \x00a7 578 SECTION SIGN punctuation \x00a8 56 DIAERESIS punctuation \x00a9 134678 COPYRIGHT SIGN letter \x00aa 234678 FEMININE ORDINAL INDICATOR punctuation \x00ab 57 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 34567 NOT SIGN punctuation \x00ad 378 SOFT HYPHEN punctuation \x00ae 123578 REGISTERED SIGN punctuation \x00af 23567 MACRON punctuation \x00b0 356 DEGREE SIGN punctuation \x00b1 123458 PLUS-MINUS SIGN punctuation \x00b2 238 SUPERSCRIPT TWO punctuation \x00b3 258 SUPERSCRIPT THREE punctuation \x00b4 468 ACUTE ACCENT lowercase \x00b5 236 MICRO SIGN punctuation \x00b6 1234568 PILCROW SIGN punctuation \x00b7 38 MIDDLE DOT punctuation \x00b8 4678 CEDILLA punctuation \x00b9 28 SUPERSCRIPT ONE letter \x00ba 7 MASCULINE ORDINAL INDICATOR punctuation \x00bb 567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 13458 VULGAR FRACTION ONE QUARTER punctuation \x00bd 458 VULGAR FRACTION ONE HALF punctuation \x00be 3456 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 34 INVERTED QUESTION MARK uppercase \x00c0 123567 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 1235678 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 1678 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 14678 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 34578 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 3457 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 23467 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 15678 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 12678 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 124567 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 1345678 LATIN CAPITAL LETTER ETH uppercase \x00d1 1245678 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 124678 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 34678 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 145678 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 24678 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 13468 MULTIPLICATION SIGN uppercase \x00d8 2467 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 234567 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 125678 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 13478 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 1378 LATIN CAPITAL LETTER THORN lowercase \x00df 23468 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 123568 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 168 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 1468 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 3458 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 345 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 1568 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 1268 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 134568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 12468 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 3468 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 14568 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 2468 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2568 DIVISION SIGN lowercase \x00f8 246 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 12568 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 1348 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 138 LATIN SMALL LETTER THORN lowercase \x00ff 234568 LATIN SMALL LETTER Y WITH DIAERESIS uppercase \x0152 13578 LATIN CAPITAL LIGATURE OE lowercase \x0153 1358 LATIN SMALL LIGATURE OE uppercase \x0160 23478 LATIN CAPITAL LETTER S WITH CARON lowercase \x0161 2348 LATIN SMALL LETTER S WITH CARON uppercase \x0178 2345678 LATIN CAPITAL LETTER Y WITH DIAERESIS uppercase \x017d 3467 LATIN CAPITAL LETTER Z WITH CARON lowercase \x017e 346 LATIN SMALL LETTER Z WITH CARON lowercase \x0192 58 LATIN SMALL LETTER F WITH HOOK letter \x02c6 5678 MODIFIER LETTER CIRCUMFLEX ACCENT punctuation \x02dc 46 SMALL TILDE liblouis-2.5.3/tables/kannada.cti0000664000175000017500000000745112161041546013645 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0c82 56 KANNADA SIGN ANUSVARA letter \x0c83 6 KANNADA SIGN VISARGA letter \x0c85 1 KANNADA LETTER A letter \x0c86 345 KANNADA LETTER AA letter \x0c87 24 KANNADA LETTER I letter \x0c88 35 KANNADA LETTER II letter \x0c89 136 KANNADA LETTER U letter \x0c8a 1256 KANNADA LETTER UU letter \x0c8e 347 KANNADA LETTER E letter \x0c8f 15 KANNADA LETTER EE letter \x0c90 34 KANNADA LETTER AI letter \x0c92 2467 KANNADA LETTER O letter \x0c93 135 KANNADA LETTER OO letter \x0c94 246 KANNADA LETTER AU letter \x0c95 13 KANNADA LETTER KA letter \x0c96 46 KANNADA LETTER KHA letter \x0c97 1234 KANNADA LETTER GA letter \x0c98 126 KANNADA LETTER GHA letter \x0c99 346 KANNADA LETTER NGA letter \x0c9a 14 KANNADA LETTER CA letter \x0c9b 16 KANNADA LETTER CHA letter \x0c9c 245 KANNADA LETTER JA letter \x0c9d 356 KANNADA LETTER JHA letter \x0c9e 25 KANNADA LETTER NYA letter \x0c9f 23456 KANNADA LETTER TTA letter \x0ca0 2456 KANNADA LETTER TTHA letter \x0ca1 1246 KANNADA LETTER DDA letter \x0ca2 123456 KANNADA LETTER DDHA letter \x0ca3 3456 KANNADA LETTER NNA letter \x0ca4 2345 KANNADA LETTER TA letter \x0ca5 1456 KANNADA LETTER THA letter \x0ca6 145 KANNADA LETTER DA letter \x0ca7 2346 KANNADA LETTER DHA letter \x0ca8 1345 KANNADA LETTER NA letter \x0caa 1234 KANNADA LETTER PA letter \x0cab 235 KANNADA LETTER PHA letter \x0cac 12 KANNADA LETTER BA letter \x0cad 45 KANNADA LETTER BHA letter \x0cae 134 KANNADA LETTER MA letter \x0caf 13456 KANNADA LETTER YA letter \x0cb0 1235 KANNADA LETTER RA letter \x0cb1 12357 KANNADA LETTER RRA letter \x0cb2 123 KANNADA LETTER LA letter \x0cb3 1237 KANNADA LETTER LLA letter \x0cb5 1236 KANNADA LETTER VA letter \x0cb6 146 KANNADA LETTER SHA letter \x0cb7 12346 KANNADA LETTER SSA letter \x0cb8 234 KANNADA LETTER SA letter \x0cb9 125 KANNADA LETTER HA letter \x0cbd 2 KANNADA SIGN AVAGRAHA letter \x0cbe 345 KANNADA VOWEL SIGN AA letter \x0cbf 24 KANNADA VOWEL SIGN I letter \x0cc0 35 KANNADA VOWEL SIGN II letter \x0cc1 136 KANNADA VOWEL SIGN U letter \x0cc2 1256 KANNADA VOWEL SIGN UU letter \x0cc6 347 KANNADA VOWEL SIGN E letter \x0cc7 15 KANNADA VOWEL SIGN EE letter \x0cc8 34 KANNADA VOWEL SIGN AI letter \x0cca 2467 KANNADA VOWEL SIGN O letter \x0ccb 135 KANNADA VOWEL SIGN OO letter \x0ccc 246 KANNADA VOWEL SIGN AU letter \x0ccd 4 KANNADA SIGN VIRAMA letter \x0ce6 245 KANNADA DIGIT ZERO letter \x0ce7 1 KANNADA DIGIT ONE letter \x0ce8 12 KANNADA DIGIT TWO letter \x0ce9 14 KANNADA DIGIT THREE letter \x0cea 145 KANNADA DIGIT FOUR letter \x0ceb 15 KANNADA DIGIT FIVE letter \x0cec 124 KANNADA DIGIT SIX letter \x0ced 1245 KANNADA DIGIT SEVEN letter \x0cee 125 KANNADA DIGIT EIGHT letter \x0cef 24 KANNADA DIGIT NINE liblouis-2.5.3/tables/ml.ctb0000664000175000017500000000167512161041546012653 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Malayalam include malayalam.cti include text_nabcc.dis liblouis-2.5.3/tables/awa.ctb0000664000175000017500000000167312161041546013011 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Awadhi include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/de-de-comp8.ctb0000664000175000017500000002035012161041546014234 00000000000000# Copyright (C) 2012 by Aliminator83@gmail.com. # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . include braille-patterns.cti sign \x0000 0 sign \x0001 178 sign \x0002 1278 sign \x0003 1478 sign \x0004 14578 sign \x0005 1578 sign \x0006 12478 sign \x0007 124578 sign \x0008 12578 sign \x0009 2478 sign \x000a 24578 sign \x000b 1378 sign \x000c 12378 sign \x000d 13478 sign \x000e 134578 sign \x000f 13578 sign \x0010 123478 sign \x0011 1234578 sign \x0012 123578 sign \x0013 23478 sign \x0014 234578 sign \x0015 13678 sign \x0016 123678 sign \x0017 245678 sign \x0018 134678 sign \x0019 1345678 sign \x001a 135678 sign \x001b 1235678 sign \x001c 3478 sign \x001d 2345678 sign \x001e 234678 sign \x001f 45678 sign \x0020 0 sign \x0021 5 sign \x0022 4 sign \x0023 3456 sign \x0024 46 sign \x0025 123456 sign \x0026 12346 sign \x0027 6 sign \x0028 236 sign \x0029 356 sign \x002a 35 sign \x002b 235 sign \x002c 2 sign \x002d 36 sign \x002e 3 sign \x002f 256 sign \x0030 346 sign \x0031 16 sign \x0032 126 sign \x0033 146 sign \x0034 1456 sign \x0035 156 sign \x0036 1246 sign \x0037 12456 sign \x0038 1256 sign \x0039 246 sign \x003a 25 sign \x003b 23 sign \x003c 56 sign \x003d 2356 sign \x003e 45 sign \x003f 26 sign \x0040 3457 sign \x0041 17 sign \x0042 127 sign \x0043 147 sign \x0044 1457 sign \x0045 157 sign \x0046 1247 sign \x0047 12457 sign \x0048 1257 sign \x0049 247 sign \x004a 2457 sign \x004b 137 sign \x004c 1237 sign \x004d 1347 sign \x004e 13457 sign \x004f 1357 sign \x0050 12347 sign \x0051 123457 sign \x0052 12357 sign \x0053 2347 sign \x0054 23457 sign \x0055 1367 sign \x0056 12367 sign \x0057 24567 sign \x0058 13467 sign \x0059 134567 sign \x005a 13567 sign \x005b 123567 sign \x005c 347 sign \x005d 234567 sign \x005e 23467 sign \x005f 4567 sign \x0060 345 sign \x0061 1 sign \x0062 12 sign \x0063 14 sign \x0064 145 sign \x0065 15 sign \x0066 124 sign \x0067 1245 sign \x0068 125 sign \x0069 24 sign \x006a 245 sign \x006b 13 sign \x006c 123 sign \x006d 134 sign \x006e 1345 sign \x006f 135 sign \x0070 1234 sign \x0071 12345 sign \x0072 1235 sign \x0073 234 sign \x0074 2345 sign \x0075 136 sign \x0076 1236 sign \x0077 2456 sign \x0078 1346 sign \x0079 13456 sign \x007a 1356 sign \x007b 12356 sign \x007c 34 sign \x007d 23456 sign \x007e 2346 sign \x007f 456 sign \x0080 457 sign \x0081 8 sign \x0082 3678 sign \x0083 78 sign \x0084 1268 sign \x0085 238 sign \x0086 1248 sign \x0087 12458 sign \x0088 378 sign \x0089 248 sign \x008a 678 sign \x008b 27 sign \x008c 237 sign \x008d 257 sign \x008e 12567 sign \x008f 12467 sign \x0090 124678 sign \x0091 23567 sign \x0092 2367 sign \x0093 138 sign \x0094 1238 sign \x0095 278 sign \x0096 2378 sign \x0097 13568 sign \x0098 2578 sign \x0099 1245678 sign \x009a 2678 sign \x009b 123458 sign \x009c 67 sign \x009d 124567 sign \x009e 235678 sign \x009f 12345678 sign \x00a0 7 sign \x00a1 367 sign \x00a2 58 sign \x00a3 467 sign \x00a4 4678 sign \x00a5 468 sign \x00a6 158 sign \x00a7 357 sign \x00a8 48 sign \x00a9 123468 sign \x00aa 1258 sign \x00ab 5678 sign \x00ac 25678 sign \x00ad 368 sign \x00ae 12358 sign \x00af 458 sign \x00b0 4568 sign \x00b1 23578 sign \x00b2 128 sign \x00b3 148 sign \x00b4 568 sign \x00b5 1348 sign \x00b6 1458 sign \x00b7 37 sign \x00b8 68 sign \x00b9 18 sign \x00ba 2458 sign \x00bb 4578 sign \x00bc 1368 sign \x00bd 12368 sign \x00be 13468 sign \x00bf 38 sign \x00c0 23678 sign \x00c1 28 sign \x00c2 167 sign \x00c3 3467 sign \x00c4 567 sign \x00c5 34567 sign \x00c6 47 sign \x00c7 123467 sign \x00c8 3578 sign \x00c9 1234567 sign \x00ca 1267 sign \x00cb 2358 sign \x00cc 57 sign \x00cd 258 sign \x00ce 1467 sign \x00cf 23568 sign \x00d0 3567 sign \x00d1 2567 sign \x00d2 578 sign \x00d3 2568 sign \x00d4 14567 sign \x00d5 267 sign \x00d6 358 sign \x00d7 2348 sign \x00d8 2467 sign \x00d9 35678 sign \x00da 268 sign \x00db 1567 sign \x00dc 2368 sign \x00dd 3568 sign \x00de 2357 sign \x00df 34568 sign \x00e0 123568 sign \x00e1 168 sign \x00e2 1678 sign \x00e3 34678 sign \x00e4 3458 sign \x00e5 345678 sign \x00e6 478 sign \x00e7 1234678 sign \x00e8 23468 sign \x00e9 1234568 sign \x00ea 12678 sign \x00eb 12468 sign \x00ec 348 sign \x00ed 1468 sign \x00ee 14678 sign \x00ef 124568 sign \x00f0 23458 sign \x00f1 13458 sign \x00f2 3468 sign \x00f3 14568 sign \x00f4 145678 sign \x00f5 1358 sign \x00f6 2468 sign \x00f7 125678 sign \x00f8 24678 sign \x00f9 234568 sign \x00fa 1568 sign \x00fb 15678 sign \x00fc 12568 sign \x00fd 24568 sign \x00fe 12348 sign \x00ff 134568 sign \x2022 35 # • sign \x2014 36 # — sign \x2013 36 # – sign \x201e 1268 # „ sign \x201c 138 # “ sign \x201a 3678 # ‚ sign \x2018 2367 # ‘ # those symbols should be ignored because there is no one character mapping in the actual braille table sign \x2192 0 # → sign \x2190 0 # ↠sign \x25bc 0 # â–¼ sign \x8722 36 sign \x2003 0 sign \x2011 36 sign \x2013 368 sign \x2014 36 sign \x2015 36 sign \x2017 36 sign \x2018 2367 sign \x2019 47 sign \x2029 1458 sign \x201A 3678 sign \x201C 138 sign \x201D 1238 sign \x201E 1268 sign \x2020 1248 sign \x2021 12458 sign \x2022 35 sign \x2026 238 sign \x2030 248 sign \x2039 27 sign \x203a 123458 sign \x207F 13467 sign \x20AC 457 sign \x20AF 145678 sign \x2116 3456 sign \x2122 1245678 sign \x2219 48 sign \x221A 1467 sign \x221E 234678 sign \x2229 578 sign \x2248 3578 sign \x2261 23568 sign \x2264 568 sign \x2265 458 sign \x2310 14567 sign \x2320 347 sign \x2321 1567 sign \x2500 67 sign \x2502 237 sign \x250C 257 sign \x2510 278 sign \x2514 378 sign \x2518 678 sign \x251C 2367 sign \x2524 13568 sign \x252C 138 sign \x2534 27 sign \x2550 2578 sign \x2551 1234568 sign \x2552 123468 sign \x2553 1358 sign \x2554 23567 sign \x2555 148 sign \x2556 368 sign \x2557 12458 sign \x2558 248 sign \x2559 1238 sign \x255A 2378 sign \x255B 34678 sign \x255C 4678 sign \x255D 2678 sign \x255E 68 sign \x255F 257 sign \x2560 1248 sign \x2561 268 sign \x2562 24568 sign \x2563 123567 sign \x2564 3467 sign \x2565 28 sign \x2566 123458 sign \x2567 167 sign \x2568 57 sign \x2569 8 sign \x256A 3567 sign \x256B 12358 sign \x256C 5678 sign \x2584 1267 sign \x2588 12345678 sign \x2580 234567 sign \x258C 23678 sign \x2590 35678 sign \x2591 78 sign \x2592 3678 sign \x2593 235678 sign \x25A0 1234567 sign \x25cf 35 sign \x0100 1678 sign \x0101 168 sign \x0102 1235678 sign \x0103 123568 sign \x0104 134568 sign \x0105 168 sign \x0106 14678 sign \x0107 1468 sign \x0108 14678 sign \x0109 1468 sign \x010C 14678 sign \x010D 1468 sign \x0110 145678 sign \x0111 14568 sign \x0112 15678 sign \x0113 1568 sign \x0118 12678 sign \x0119 1268 sign \x011B 126 sign \x011c 1245678 sign \x011d 124568 sign \x011e 124567 sign \x011f 12456 sign \x0122 1245678 sign \x0123 124568 sign \x0124 125678 sign \x0125 12568 sign \x012B 2468 sign \x0130 3478 sign \x0131 348 sign \x0134 245678 sign \x0135 24568 sign \x0136 13678 sign \x0137 1368 sign \x013B 123678 sign \x013C 12368 sign \x0141 134568 sign \x0142 1568 sign \x0143 145678 sign \x0144 14568 sign \x0145 1345678 sign \x0146 134568 sign \x0150 1245678 sign \x0151 124568 sign \x0152 237 sign \x0153 467 sign \x0156 1235678 sign \x0157 123568 sign \x0159 2456 sign \x015a 134568 sign \x015b 134568 sign \x015C 234678 sign \x015D 23468 sign \x015e 134568 sign \x015F 123468 sign \x0160 678 sign \x0161 1568 sign \x0162 24678 sign \x0163 23458 sign \x0164 125678 sign \x0165 1256 sign \x016a 34678 sign \x016B 3468 sign \x016C 34678 sign \x016D 3468 sign \x016f 23456 sign \x0170 2345678 sign \x0171 234568 sign \x0178 12345678 sign \x0179 134568 sign \x017a 134568 sign \x017b 134568 sign \x017C 123468 sign \x017D 12567 sign \x017e 2346 sign \x0192 78 sign \x01a0 12367 sign \x01a1 1236 sign \x025C 13567 sign \x02C6 378 sign \x02c7 134568 sign \x02d8 134568 sign \x02d9 5 sign \x02db 134568 sign \x02DC 2578 liblouis-2.5.3/tables/hyph_nl_NL.dic0000664000175000017500000024310512161041546014260 00000000000000ISO8859-1 .a4 .aan5 .aarts5 .aat5 .ab5l .acht5end .ac5re .adi5 .af3 .af5l .af5s .aftu5re .al3ee .al3f .alk4 .al5ko .alko5v .al5ma .al3om .al4st .ana3s .an3d2 .an3en .an3gl .an5th .ar5d .ar5tr .as5h .as5l .as3t .as5tra .as3u .at4a .ave5n .b4 .be3la .be5ra .be5ri .bos1 .c4 .coo5 .co3ro .cus5 .d4 .daar5 .da4gi .dag5r .da2k .dan2 .debe4 .de2k .dek5l .dek5s .den4k5r .de5od .de3ro .de5sta .di4a .die4p .di3o .doet3 .do3v .du4w .e4 .ede2 .edel5a .ed3w .ee4n .eer5ste .eest3 .eesto4 .eet3 .ei3l .ei5sc .ei3sp .ei5t .el4s5 .en5s .en5th .ep4a .ere5s .er2f .erf3l .er3in .ert4 .erts3 .es3 .es5c .es5pe .es5tr .eten4 .et4h .ets5te. .eu3 .eus5 .^^e92 .f4 .fel4s .g4 .gaat5 .gang5s .gea5v .ge3l4a .ge5le .gelo5v .ge3n4a .gena5z .ge5ne .ge5no .ge3ra .ge5r4e .ge5r4o .gerst5a .ge3s .ge5sk .ge5ta .ge5tj .ge5to .gid4 .go4m .goot3 .h2 .handels5 .her5in .hits5t .ho4lo .houd5s .i4 .ide5o .ij4s .ijs5l .ijs3p .ijs3t .ik3 .in1 .in5d4 .in3g4 .in5gr .ink2 .in5kr .in5kw .in3s4 .in5sl .in5st .in5ta .is5c .j4 .jor5 .k4 .ka3d .ka5g .ka4taa .kerk5l .kerk5r .kerk5u .ker5sten .ke4s .koot5 .ko5pe .kop5l .ko3v .kun2 .l4 .laat5ste .le4b5 .leg3o .le4g3r .leid5st .len4s3 .le5r4 .le4s3 .le5th .lin5d .lof5 .loot3 .lo4s1 .lu3e .lui5t4j .lu4s .m4 .ma5d .ma5^^ef .meel5d .me5la .me5ni .merk5l .me2s .me4st .met5ee .mij4n5i .moot3 .mor5sten .mo4s .n4 .naat5 .na3d .na3n .na3s4 .nee5s .ne2p .nep3a .ne4s .ne5te .ne4t3j .neu4t5j .nie4t5j .noot5 .nos5t .no5v .o4 .oe4r5 .oe4s5 .oeve4 .ol3f .om1 .omme3 .on3a .on3d .onde4r .on1e .on5g .on3i .on5k .on1o .ono5v .on2t3 .on4tee .on4ter .ont5s .ooi5tj .oot5jes .op5ee .opi5 .op5l .op3r .op5s .org4 .os5 .ove4 .p4 .pee5tj .peri5 .pers5te. .piet5j .pits5te. .poort5j .po4st .puit4 .pui5tj .pu2t .r4 .raads5le .ran4d .rand5a .re4men .ren4o .reno5v .re5o .rie4t3 .rij5sp .ring5s4 .roe5tj .ro4l .ro4st .ro4t3h .ro5v .s4 .sap3 .sa5v .sci3 .see3 .seks5te .se5re .set3 .se5v .side3 .ski3s4 .sneu3 .sno2 .so2k3 .song5 .spoor5tj .st4 .ste4m .t4 .taart5j .tan4da .te4a .te4f .tek2 .te3le .ten5ac .te3no .ten4t5j .te3ra .ter4p5a .ter5s .te4s .ti2n .tin3a .tin3e .toe5pr .to4lo .to4p .to5v .tri3s4 .ts4 .tsa3 .tuit5j .ty2r .u4 .ui2 .ui5s .uit1 .uit4je .uke5 .ur4a .vaat5j .ven4t5j .ve4r3 .ves5p .vet3j .vie4r .vol5s .w4 .wals5te. .wee4ko .wee4t3 .we4l3 .wen4s5t .west5r .win4s .xe3 .y2 .z4 .zes5 .zit5 .zooi5 4a. a4a4 4aad aad1a aad1o aad1r aad5sap aaf5a 4aag aag1a aag3e aag3o aag5r aags4 aag3sa aag5so aag3sp aai3l aak1a aak3e2 aak1o aak5r aak3sp aal5a2 aal1e aal5f4o aalfo5l aal1i aal5k aal5m aal1o2 aal3sl aal5so aal5spe aal5ste aal1u aam1a aam3o aam4sta aam4ste aan1a 5aandee aand4r aan1e2 aan5g aan5i 3aanj aan5k4 3aann aan3o aan3sp aans4po aant4 3aanta 3aanv aap1a aap3i aap3o2 aap3r aar3a aar4d5as aar3e4 aar1i 4aarn aar1o2 aar5spel aar4t5on aarts5l aar3u aas3e aas3i 4aast aas5tr aat3a aat5e aat3h aat3i aat1o aat5r abak4s5 aba4l abat4s ab5eun ab3ijz a2bon aboot4j abot4j 2abr ab3ru 4ac. a3cal a3car 4ace ace3st 4ach. a3cha 2a1che 4a1chi ach3l a1cho a3chr 4achs ach5tec a1chu achuut5 4ack ac3kl 2acl 2a3co 2acr ac5res 4acta 4acu 4ad. a5da. ad3ac ada2d ada4l ada2r3 adas5 2add a5de. ad3ei ade5re a5des a3det a5deta ad3e4te 2adh 4ad4i adi3al adi4oc adi4od 4adk 2adl 4ado. a3doo 2adp ad3rei a3d4ri ad3rol 2ads ad5se ad3so ad1s4t ad5sta ad3ui ad3w 2ady 4ae aege4 ae5k4 a3e2p ae3r ae2s3 ae4s5t a3eu a2^^eb a4^^ebr 4afa af3aa a2f3ac af4as af4at afd4i afd2r af5d4w 4afe afee4 4afi af3l 4afo a5fo. a2foe afon4d af3op af5org af1r af3s4 afs2c af5se 3afsl 3afsp aft4a af5tr af3ui 2afy 4ag. ag1a2d ag3af ag3a2m ag3ar ag3di a5ge. agee5t 4a5gen. ager4s ag3ex a4gil ag3ind a4g3ins agi5ot 4ag1l ag3of a4g3or ag4o3v a2gr ag4ra ag5rap ag3ru ag3sl ag4sle ag5slu ags2p ag3spe ag3spi ag1st ag3sta ag5str 2agt agu5a a2g3ui ag3u4r a2g3uu 2ah 4a1ha 4a5he ahe5ri a1hi ah3l a3ho ah5r ah5t2 a3hu a3hy ai5a2 ai4dr ai1e a1ij ai5k ail3m ai2lo a2in aio4 ai3ov ai3s4 ai5sc ai4s5l ai5sn ai1so ai1st ai5tj ai3tr aiu4 a^^efn4 a^^efns5 a^^efs3o4 2a1j ajaars5 aka2 ak3af ak3ag a4k3ar a4k3ed ak3emi ake2t ak3id ak3ink ak5is 1akko 4a2k3l a2k3n ak5ne ak4ni a3kof ak3on ak3o2p a2kr ak5ru 2aks ak4so ak5spe ak1st ak5to ak5t4w a2k3u4 ak1w ak3wi a1la a4l3ach al3adr a3l4ag a3lal a5lapr al3art 4ald a1le a5le. al3eff 2aleg a2l3el ale5ro ale5ste ale4tj a3l^^e8 al4fen alf3l al5fon alfu4 al2gl a3lie al3int alk5ei al5kle alk3s al4kui al5le al4mac al5me a1lo a4l3ol alo2n al3ou a4l3o4v 2alp al3s4ag al3san al3scr als5j al2sl als5li als5m al4sn al4s3oo al4stem al5sten als5tou altaar5 al3tha al4t3ro alt4st a1lu a2lui al3uit al3u4r alu2s5 4am. a4m3ac am3adr ama4f 4amag am3art 5ambt ament4j ame4ran ame5tj a2meu am4i 4amm am3oli a2m3o4v 3amp^^e8 am2pl am4ple am4sm am4s3o am4spr ams5te. a2m3ui a3nad an3alg an4a3n an3arc 2anc 4anda anda4d and5ank an4d3e4d an4dex 2andj an4dom an5d4ri and5roo ands5lo an4d3ul a4nem a3nen anen3i 4aner an3est ane3us 4ang. an4gan anga5p ange5st ang5le an2gr ang5sna angs4te aniet3 anij4 3anima an5ion a4n5isl ani5t 4aniv 4ank. an4kaa anka4n an4k3as an2k3j an4klu ank3of an2k3r a1no an3och a4n3oor an3ork ano3s ano3t4 a4n3ou ano5v 4ans an3san ans3cr an4seg an4serv an4sid an2so4 ans5or ans3pi ans5pir an1st an4s5te. an5stru an4tac ante4n an3th 2anti ant5sl ant3w 4a1nu a5nuf an3ui an3ur an3uu anze5s 2a1o ao4g ao2l a4om a2op2 aor5t a3os aos3p aos5t 4ap. a1pa a4pak a4pas ap3as. ap3ass a1pe ap5eten 4a1pi apij4t5j ap3ijz ap1j 2apl ap3le ap3li ap3lo a1plu apon5 ap3oo apo3p apo5sta ap3o4v 1appa 4appen 4apr ap3ra a3pre a4prem a5p4ris ap3ru ap2sa ap4si ap2s3l ap3sn ap4ste. 2apt ap3tj 2apu a2q 4ar. a1ra araat5j a4r3app ara3s4 ar2da ard3ac ard3ak ardo4 ar4d3om ar4d3op ar4d3ov ar2d1r ar4dra ard3re ar4du ard3w a1re 5a2rea a3reg a3rem ar4en are4no are3sp a3rev ar3gh ar2gl a1ri arie4tj arij3s ar3ins ark2 ark3ac ar3k4l ar4map arm3u a1ro a2r3ob ar3oge a3rok aro4ko ar3oog a2r1o2p a3rot arpi4 ar2s ar5sch ar3scr ars2e ar5see ar3si ars3l ar4sla ars5m ar3sni ar4so ar4sp ar5spo ars3ta ars5tal ar4s5tek ar4str ar4su art4aa ar4t3ak ar4tan art5ank ar4tap ar3tar 4arte ar4tei ar2th ar5tij 4ar4tj art5jesv 4arto ar5tof art5o4ge art5oog ar4t3o4v ar2t3r ar4tro art5ru art4sl art5ste a3ru ar3ui 4arw arwe3s a1ry 4asa as3ad as4ag as3ak as1ap a2sc as5ce 2ase a4sec a4s3eg aser5a ase5tj aseve4 as5ha asis1 a4sj as5ja as3ji as3k as5ka as5ki as3l as4lu as3m as5mi as3n as4ne as4ni 4aso as3ob aso2l aso4r as1p as3pl a4s5q as5sa 4assm 3assu a2st 4as3ta a4sta. as5tag as4tas as4tat as3te a3stek a3stem as5ten as3t^^e8 asting5sp as1to as3tob ast3op 4astr ast5rem as5tro. as4tu a1t ataart5j at1ac at3ade at3af. at3ank ata3s 2atek a5tell ate2n ate3no aten4t5r ater5ad ater5sl at4eu 2atg at3hu ati5ni a2t3j at4je atjes5 at5jesb at5jesh at5jesm at5jesp 2atm 2atn a2too at3oog atos5f ato3st at3rac at3rei at3rib at4roe at5ru at4s3a2 at4s3ec atsi4 at4s3id at2s3l at4slo ats5m ats3n at4sne ats3pr at2st at4staa at4s5tak at4ste. at5sten at5stij ats5tol ats5top. ats5trek at4t3u4 a2t3ui at3w aua4 au3ch au3co au5de aud4j 1aug au3na aun3t aup2 aur4 au5re aure3u 4aus au3so au4s5p au3sto au3t4 4aut. 1auto auto3p 2auts3 auw3a 4auz a4^^fc avast4 ave3c avee4 ave4n3i aven5sp aver3a ave3re ave3r4u 4avi a2vo 1a4von a5voo a5vor 4avy 2a1w axis4 ay2a 4azif ^^e43h ^^e4mme3 ^^e43r 1b 4b. 3ba baar5ste baar5tj ba4da bad3ar ba4d3r bad3s ba3g4h ba3gl 5b2ak ba4k3o4 bak4sp ba3lan ba4lar bal3dw bale4 bal3ev ba3li^^eb bal4kl ba3lo bals4 bal3sf ba4me ba5n2a ban4k3a ban4kl ban4k3o ban4kr bank3w ba3sa ba4st ba2tr ba3tro 4bb bbe4l5ag bbe4l5ee bbe2n bben3a 4b1c 4b1d4 b5de bdi5a 3b4e be1a be3as be2au be3ch be5dwe be5dwi be5dwo bee4 beet1 be5g beie4 bei3s bei5tj be5ki be3k4l be1kw be3lar be5l4as bel5dr be3le be4l3ec be4lex bel5f be3li be4l5int bel3k bel4o be3lo5v bel3sc bel3sp belt4 bemen4s be3nep be5n4o be5ot be1ra bere5s4 ber4g5af ber4g5et ber4gl ber4gr ber4i be1r4o bero5v be3ru be3ry be1s4 bes5ac be4sh be4sje be3so be5sp bes5s bes5te. bes5ten. be5stie bet2 be3t4h be5ton bet5ren be3tw be5twi be3und beur4s 4b3f 2b1g 4b3h 3b2i bid3s bi2du bie4li bi4en bie4t3j bij5d bij3f bij3g4 bij5k4 bij1p bij1s2 bik4a 5bil bi3lo bil3s2 bin4dr bin4st bin4t3j bi5ob bi3ok bi5om bi3oso bi5ow bir3 bi4st bis5troo bi1tr bit4se bit4s3p 4b1j 4b1k 3b4l blad5ij 2b5lap b5led bles3 ble5spe ble2t3 b5lid blijs4 blij5ste bli2k 4b5loi blok5l bloot5j blu2s 2b1m 4b1n b4o bo4d3ec body3 boe4g3a boe4kn boe4ko boes4 boe3st boet5st bo3f4l bo2k bok3an bokje5 bok4st bolk4 bo2m3a4 bo2m3o bo5na bond2 bond4s5 3bone bo3no bon4t3j bon4t5o4 boot3j boots5te. bo3p2 bor4sta borst5o bor4st5r bo4s bos3a bo5sco bo5si bo5so bos5p bos5to bot3j bo4to bot3r bot4sp bot4st bo2tu bou5ta bouw5s bo3v bove4 4b1p 3br4 braad5s bran4da bra5str brei5s4 brie4t brie5tje. bri4l bro2n bron3o4 bru2l 4b1s4 b2s5a b5sc b3si bsi3d bs5je b2s5la b2s5m bs5s b4stij 4bt4 b3ta b1tr bts5 3b4u buit4j bul4k bu4lu bune5t b5urb bu5ri bus5c bus3o but4a but3j bu2to but4s buts5te buur4tj 4bv 2b3w by3 4bz 4c. 1ca 3ca. ca3b ca1ch 5cada ca3do ca3dr cae3 ca3g2 cal4l3 ca3lo came5r ca3na cant4 ca2of ca1pr ca4pra ca5pri ca3ra car4u ca5se ca3s2p cas3t cas5tr ca3ta cate4n ca3t4h cau3 cau4st ca3v 2cb 4c1c cca3 cces5 c4d c5do 1ce 3ced cee4 3ceel 3cel cel3d celes5 ce5li cel5k ce4l3o 2ce3n4a 2cene ce3no 5cent cen4t3j ceo4 ce3ra cer2n ce5ro cer4t3r ce2s ce3s2a ce5sc ce3s2h ce3sta ce3s4ti cesu5r ce3ta ce4t3j ceto4 cet3og cet3oo 1c^^e9 c3g 4ch. 3cha^^ef 5chao 3chas 1chau 5chauf 2chc 1chef 5chef. 5chefs 5chemi 5cheq che5ri che3ru 5ches che3us 1ch^^e9 5chir 4chn 2chp 5chromo 4cht 4chw 1chy 3ci ci5ab ci3am cie3k cier4s5 ci1eu 5cij 5cil ci5le cil3m 4cind ci3o ci5om 5cir ci3t2 ci5ta c3j c2k3a c4k3ed ck3ef cke5re c5k4et ck3id c2k3l ck4le c2k3n c2k3o4 c4k3r ck5se ck3so ck5st c3ky 1c4l cla2n cle3u 5clu 2c1n 1co co3ad co3d co4i coin5 co3k4 co3la 5com 5cond con1g 2co1no 5cons 3con5t4 2coo 2co1p2 3copa 4copi cor4dr co4rel co5ri cor2o 5corr cors4 co3ru co5sc co5se co5sp co3th co3tr 5coun 2cout co5v c3p4 1c4r2 3cras cre5d 2crip 3cris cro5f cro5k croo3 cro5v crus5 c3so c3sp c3ste 2c1t ct3act ct3ad ct5c ctee5t cte2n3 c2t1h c2t3j c4t3of c3tol c2t1on ct4or ct3rap c4t3re ct3sl ct3sp 1c2u cu5d4 cu3en cu3^^e9s cui5s cui2t cuit5e cu3k4 cula5p cu3ra 5cur3s cus3o c3w 1cy 1^^e7 ^^e7a4o 4d. 1da 3da. 3daag d4aal d3aap daar5e 5daat 4dabo 2d3acc da4ce da5den 4dadr 3dae 2d1af 3dag da2g3a4 da3ge da4g3ed da4g3e4t da4g3on da4g3r dag4s3t da2gu 3dai da3^^ef da3ke da4ker 2dakk da4k1r 4dala d3alar d3alc da3le 4dalf da3li 2dalm da2l3u d4am dam4a da5mac d3a4mat d2a5me4 dames3 dam4pl 2da2na dan3as dank3l danoot5 dan4si dan4sm dan4s3p dan4st dans5ta 4d3antw 2d1ap 4d3a2pe 5dapu da2r3a d3arb 3dare 3dari dar4mo darm5on 3daro dar3s dar5st 3das3 5dasa da3stu 3d4at da3ta dat5j 4d5atl 4d5atm da2t3r 5daue 4d1aut 3dauw 2db dbei5 dbou4w5i 2d5c 4d3d4 ddags4 ddag5sp ddel5ev dde2n dden5a ddera4 dder5al ddere4 dder5ee dder5ep dder3o ddi3a d5dles d5do ddo3p 1de 3de. de2al de1ch d4e5den 5dedir de4dit dee4g3 dee4l deel3i 4d3een dee4r 4d3eff de3g 4d5eg. 4d5egg 2d5egy 2dei d3eie d3eig d3eil d1eis d3eiw 5dek de3ke dek3lu dek3w del4aa del5da del5dr del5eek 4d3e4lek 4delem de4lev 4d3e4lit del3k del2s del4s3e dels3i del4so 4d3e4mai 2demh 5demi dem5ond d2en. den4ac den5ate den3ei den3e4p den3ev 4d3engt den4k5of de4noc den3o4r den3sh den5str de3nu 5denvl de4o de5ofo de5ol deo4li deo3v de3rab de4r3ad der3a4g de3rak de3ram de3ran de3rap de3ras de4r5as. de4r5ass der2e der5ede der5egd de4r3ei de4r3em de5re4n de4rep de4ret de5rij de4r3im der3k4 der3on dero4r 4d3eros der4s3a der4s5om der5ste der5sto der5stra der5th 4d3erts der5tw de2r3u de3rup de2s de3sav des3m des3n des3p de3spe de5spel de4spl des5sm de3st des5tak de5stal de4s3te de4sti de5stic des5top de3t4 4d3e4tap de5tw deu4r3o4 de3us. deu4tj deve4 2dex 4d1exa 4dexp 3d^^e8 2d1f 2d3g d4gaf dge3la dge2t dgeto4 dget5on dget5ov dge4tr dg4l 2d1h d5he dheer4 3d4hi. 1di di2a di5ae di4ak di4ano dia3s4 di4atr 5dich di4do die2f die4r3o di3esr die3st die2t diet3r di1eu 3dig di2ga dig5aa diges5 dijk3r di3jo 2d3ijz di2k3o4 5dil 2d3imp di5n2a 2d3ind 2dinf 3d4ing. 4d5ingel 4d3inj 4d3inko 2d5inr 2d3ins 4d3int dintel5 2d3inv 2d3inw 2d3inz di2o di5ofon di4ol di4one di4oni dio1s dio5sc 2d3i2ro 2d3irr 3di4s dis5ag di5se di5si dis4kr dis5p dis1t dis5tr di3th dit3j dit3r 5div 2d1j 2d3k2 4d3l d5le. dli4n dlot4s 2d1m 2d3n2 d5ne dni3s 1do 3do. do3a 2dobj 4d3obs 3d4oe 5doe. doe5d 4doef d5oefe 5doek 5doen 5doet 4d5oev 3doi d4ole 2do2li d4olin dolk5s 5dol5s 3d4om. 5domi do4m3o4 d3omr dom4sn 5domu d3omv 4domz 5don. d4ona 5done do5ni 5d4onn 5do3n4o do3nu do5ny 5donz 2dop do3pa d3opb d3opd do3pee 5dopj 4d1opl 3dopo d3ops d3opz 4d5org do4ri^^eb d3ork dors5m do3sp do3sta dot3j 5dou 2dov dover5s 3dovl 3dovo 2d3p dpren4 1dr4 3dra 5dra. d3raam d3raap d4rac d5race 5drach d3rad. d3rada 5draf 5d4rag d4rama d3rame 4d3rand 4drap 4dras 4d3raz 2dre 4d1rec d5reco d1red d2ree 4d3reek 4drend d4ress 4dret 3d2rev 5dreve d3ric dries4 5d2rif dri5ga d3rijd d3rijk d3rijm d3rijs 5d4rin 3dris 4d3rit 4d3roei d3roer 5d2rog 4d3rok d3roma d3rond 3droog 4droos 5drop 2drou 2d3ro5v 2droz drug4s d3ruim d3ruit 5d4ru4k 4d3rus 2ds d2s1a2 d4saa dsa4b d3sal ds4ate ds2ch d5schi dse2 ds3eco d4s3ed d4s5ee d4sef d4sei ds3eis ds3elf dse4li d5sen d4s3es d4set d2sh ds3ho d2s1i2 d4s5id dsig5a ds2im ds4ing ds5is d4s3j ds4jo ds5jon ds4l d1sla ds5las ds5lic d4s5lie ds5lim d3slin d2sm ds4mak d3smij ds5mo ds3n ds4ne ds5neu d3snu ds1o4 ds3ob ds3om d4son ds2oo ds3op d4spa d5span ds5pati d5spec d5s4pel d4s3pet d1spi d4s3pl d5spoe d5spok d5spor ds5s dst4 d1sta d5staat d4stab ds3tak d4s3tal ds4tan d3s4tat d5stav d3ste ds4te. d5stee d4stek ds4ter d4sterr d4stev ds3th d3s4ti d4stit d1sto ds5tram ds5trekk ds5ty d2su4 ds3ure ds3uu d1sy 2dt d1ta dtaart5j d1th d2tj d1to d1tr d1tu 1du 2duca 5due du3en du3et 5duid 5duif 5duik d3uil 2duit 4duit. d3uitd 5duite 4duitg d3uitv 5duiv du4n dun5i du2o du4ol 3durf 3durv 5du1s dut3j du5wen 2dv dvaat5 dvee3 dve5na dvies5 2dw d3wac d3was d3wat d1we 3d2wei d3wek d3wet d3wez d1wi 4d1wo d3wor d3wr 1dy 4d3yo dy4sp dy2s4t 2dz 4e. 4ea e3aa e1ab ea3bo e3ac ea4ca eac5t e1ad ea3da e5adem ea3do ead3s2 ead5sh e1af e1ag e3ai ea4k3o4 e1al ea3la e3ali e4als ea5mi e3an e4an. eang3 ean4s e5ap ea3pr e3aq e1ar ear2c e1as e2asc ea5s4e ease5t ea3so e1at e4at. eat3s eau3s4t e1av e3bo ebots5te. e5br 3ecd e3ce e1che e1chi echt5ec echts5o e3chu 4eck ec5le 4ecor 4ect ec3ta ec4taa 3ecz e1d ed4ag e3dam e3d4an e4d4as ede3a ed3ei. ede5le edem4 ede5nac ede5o ed4er e4d5erns ede5rog edi3al edi3am e5die 4edir edoe5tj e3d4oo ed3opv edors5te ed3ov e3d2r ed3rod ed3rol ed1s ed5se ed2sl ed4so ed5sp ed3su ed3uit e4d2w e5dwan e4e eea4 ee5b ee5ca ee5che ee2d3a eed4ac eed5as ee5de ee5do eed3ru eed3si eed3w ee2f ee3fa eef3ac ee3fi eef3l eef3r ee4gap eeg3l ee3i ee2k ee3ka ee5kaa eek3ak eek5all eek1e ee5ket ee3ki ee3kl ee4k3lo eek3n eek3re ee3kri eek3ro eek5st eek3w ee2l eel3a ee3lad eel4as. eel5d4u ee3le eel4ee ee3li ee5lij eel5k4 ee3lob eel3og eelo4ge ee3lu4 eel3ur eel3uu 4eem eema4 ee2n een3a eena4r een3e2 een5g ee3ni een5ie een5k ee5o2 ee2pa eep3an ee3pl eepo4 ee4p3re eep3ru ee2r eer1a eer3aa ee4rad eera4l ee3ram ee3ran ee3re ee4ree ee5rei ee4r3i ee5ric eer5k eer3og eer5oom ee3rot eer5ston eer5str ee2s3 ee5sch ee4s5em ees5et ee3sj ees5lo ee3sn ee3s4p ees5pl ees5pot ees5ten ee3stu ee2t eet5aa ee3tal ee3tan ee5te eet5h ee3tj eetna4 ee3to eet3og eeto4ge eet3oo eeto4r ee3tr ee4tro eet5rok eet3sp eet5ste ee5v ee5z e^^ebn3 e5^^ebr ef3ad efa4z efde5l ef3do ef3ei e5fer 4efi efie4t efiet5j ef3ins e3fis5 e1fl ef3li ef3loo e3flu ef3om e3foo ef3op e1fr ef3rij e5fron ef3sf 4e1g egas4 eg3as. ega5sk eg3ebb e4ge4c eg3eig egel5ei. ege4l5ov ege4net egen5of ege4ra eger5eng ege4ro eger5on e3g4i eg3ijz egip4 egiste4 e2gl e4go. eg3org e2gos eg3oud e5graf eg3s4 eg5sle eg5so e2g3u4r egut4 e4g3uu e1h4 e5ha eheis5 ehit4 e2i ei5a 4eid ei3do eid4sc ei1e 4eien eien5s eie5re ei3f4 ei3gl 4eign e3ij eik4l ei3kn ei5kr eiks4 4eil. eil5ant 4eild4 eil5dr 4eile ei4lev eil5m ei2l3o ei4n3ab ei3n4ac ein4do eind5oo ein4d3r ein5gr ein5k ei2no ein5sl ei3o ei2sa ei5sha ei3s4la ei3slo eis4p ei3s4ta 4eit2 ei4too eit4s3 eits5c eits5n eits5te. eit5sten eits5tr eive4 4eiz e1j2 e3je ek3aan ekaart5j ekaat4 ek3af. e4k3a4g ek3al. ek3alt e5kam ek3ang ek4ee ek1ei e3kem e5ker. e5kers ekes3 ekes4t ekes5tr e3ket ek5eter e5kic e4kil e5kis ekla4m eklam5a ek3lev e5klim ek5loos ek4ni e3ko e4k3ob e5kof ek3oli ek3opz e5kor ek5os. ek5oss e5kran ek3roz eks4e eks5erv ek5set ek4str eks5tra ek5t4e ek3to eku4 ek3uit ek3ur ek1uu ekwet5ste ek3win e1la el3aan el5aand el1ac el4ade el3adj el3adm el3adr el3adv el1a4f el1al e3lan el5ana e3lap e5lap. e4lapp el3arb el3arc el3arm el3art e4l3as. el3asi e4l3asp e4l3ass el1au e4laut e3laz el5azi el4dec el4dr el4du e1le e3le. el3eeu el5eff e5leid el5eier el3eig el3ei5s e4lel 3e2lem el3emp e5l4en e3ler ele5r4a eler4s el3erv e3les eles4t e4l3eta ele4tr e4l3etu el3exc e3l^^e9 elfi4d el1fl elf3s4 el3gu 2eli e5lie e5lig eli5kw el3imp e4l3ind e3ling e4l5inkt el5inz 3elix el4kee elk3s el4k3u4r el4kw 4e1lo e5loep el3oes e3lok el3ol el3oms el5ond el5ont e3loo e5lood e5loos el3ops el5opt el5opv el3o2r el5org elot4j e5lou el3o4ve e5loz elp4o el4ps el4s5em el4s3k el5smed el5twe 4e1lu el3uit eluks5 2ema e4mana ema3sc ema5to emees5 emens5te emer4s emes3 emie4tj e5mok em3oli em3op em3org emor5sten e4mo4v em3sa em5sc em4sli em4sm em1st em3su em3uit emut4 en3aap e3naar e4n3aas en1ac e5n4acc en5af e2n1ak e2nal en3al. en3als en3amb en4ame e2nan e4n3ang en1a2p e5nari en3ars e2n3a2s enas3p e3nat ena4tel e4n3att en1av e2n3a2z enci4 3ency. en3da en5daa end5ama 5enderti en3d4o en3dr en5drek e2n3e2c enede4 e3nee en3eed enee5t en5eg. en5egg en3ela en3elf en3ema e4n3en5t e2ne2p en3epo e5nere 5energ e4nerv en3eta en3ete ene4ten e3neu 4enf en5ga en3gl en4g5le eng4r en5gri engs4 eng5se eng3sm e3nie e5nijd e2n3im e4ninga e4n3ink e3niv e4n3i4vo en3k2a e4n3och en3off e4n3oli e2n1on e4n3oor enoot5 e2n1o2p e3nor. en3ord eno3s en3ou e2n1ov 3enq en5sce en4sei ens5ein ensek5 3ensem ens4fe en4sin en5slak en4s3on en1s2p ens5pot en5stan en5sten enst5ijv en4stin en4stu4r en3su en4tac en5tee en5tei ente5re en4terv 3ent^^e8 en1t2h en5tom ent4r en3tre ent5rol ent4sl ents3m ent4s3p en3tw e1nu e4n1ui e2nun en3ur en3uu 5envelo eny4 e3o eo3d eodo3 e5oe eoes3 e5off eo3fr e4o3k4 e5on eo5ni e5oo eo3pa eo3pe eo3pl eop4la eo3p2r e5ops eor5d e5org e5ori eo3ro eo3s4 eo5st e4ot eo5te e5o3t4h e1pa e3paa ep3aak ep3ac e4paf epa4k ep5ake e3pal e3pap e4p3app e3par ep3asp e1pe e5pe. ep5een e5per epers5te. e1pi 3epid ep3ijs ep3ijz ep5ingr ep3ins epit4s epits5te ep1j e1pl ep3led e4p3lod e5ploe ep3lus e1po e4p5o4ge epoort5j epoot4j 3e4pos. e3pot epou4 e1pr ep4ra e3pri ep5rode eprot4 ep2s ep4s5ee ep4ser eps3l eps5n eps3p eps3ta eps5taa eps5tal eps5to eps3tr eps5tro ep4tak ep2tj ep4tr ept3ra ep5tro ep3uit 4equa e3ra. e1raa e5raad e4raak. er3aan er5aanp e4raap. e5raat e4r1ac e5rac. e5race e5raco e3rad e5rad. er3ado er3af e3raff era4gen e1rai e4r3all er3ama er3ana e5randa e5rane e5ra3pl er3arc e3rare e3rari e1rat4 er3a4tr er3azi er3d2a er3d4i erd4o er3d2r erd5uit. er3d4w e1re er5eat 4erec er5editi er3een e5reep er5eers er3eet er3ef er5eff er5eg. er3egd er5egg er5egt er3eie er3eig er3eil er5eind ere3kl er3elk e4r3emm er3emp e3rend e5rendel ere4ne eren5eg er5enen. e3renm e3rent er5enth e5rento eren5tw ere2o ere4og er3epi er3e2q er3eri e3res. er3esk e3ress ere4st ere4t3j er3etn e4r3ets e4r5ex erg2l e3ri eri5ab e5rif e5rig erig5a er3ijl er3ijs e4rijs. er3ijv e4r3ijz e5rik er5ind e4r3ini er5inkt er3ins er3int e5rio e5ris erkeers5 er2kn er3m4i er5mo er5nu e1ro. e3rob er3oc e4r3oed er3oef e5roep eroe5tj er3oev er3of ero2g e3rok e1ro2l e5rol. er3oli e5roll er3om er1on e3ron. e3rone er3onv er3oog er3oor e5roos e4r3op erop3a ero5pen e2r3or er1ov er3oxi e3roz e3r^^f6 er4plu errie5tj er3scr er3sj er5slag er5span ers4pot er5stem er5te er3t2h er5t4i er5t4o er3tr ert5se erts5l er3t4u er3t4w e1ru e3rub e3rug5 e2rui er3uit erui5t4j e2run e3runs e4r3ur e3rus er5uu 3ervar 3erwt e4saf e4s3a2g e3sam e5san es3ap es3arr e3sa3s e3scop e3s2cr es4e e5sec es5een e5sel es5ene e4s5eng es5ex es2fe es5he e4shi e3sid e3sie es1in e4sir es5je. es5jes e3s4jo es5jon e4s3ka es5kr e3sl es4la e5sla. e5slag es3lak es5lat es4le es5leg es2m es4mui e5smuil. e1sn e3s4ne e1so e3sol es4oo es5oor. eso4p es3ore e1sp es5pas es4pel espit5ste e3spl e4sprie esp5riem es4sm e3stak e3s4tal e3stap es4tar es5tatie e4s3te. es4tea es4teel est5ei. e4steka es5tekam e3s4tem es5temo es3ten e4sten. es5tenb es3ter estere5o es5tes es4tet e3steu es4tic e4stie e3stot es5tra. es5trac es5trak e5stral est5rap es5trei est4sc es4tur e3sty e3su esu4r e3sy e1ta e3ta. et3aan et3ac et3ad et3afz 3e2tag e3tak e5tak. et4ana e5tand e2tap e4tapp e5tat e4tau e2tav e3te e5tea et3edi e5tek 4etel e5tel. e4t5elf e5tels et5emb et5emm etens5u eten5tj ete5r4a ete3ro eters5la eter5sm e5tes e1th et3ha et3hor et5hu e4t5i4d e5tie e4t3inc e4tiq e5tis e4tja e1to e5toc e3toe e5toev e3tol eto4p et3ope et3opl e4t3ork eto3sf e1tr et3rec e4t5res e3troe e5tron e5troo etros4 e4t3ru et4sl ets5lap et5slu ets3n et4s3oo et3spe ets3pr et3spu et4ste ets5tek et5sten et5sti ets4u et5su5r et5suu e1tu etui5tj etu4r et3we et2wi 1eua4 1euc eudi5o eu5dr eu3e eugd3r eu3g2r eu4ler eu4li e1um e3um. e2umd eu2na eun3t 1eu1o eu2po eu4rad eu4rec eu3ren eu4res eu4rij eur5k euro5v eur4sta eurs5taa eurs5te. eur4s5tr eur4su eu5sch eus4p eu3spa eu4st eu5str eu3tj eu1tr e3uu 2euw eu4wa eu5win euw4str evaar5tj eval4s evari5 eve4lo evel5op eve5n4aa 4ever eve3ra 4e1w e5wa e5we ewen4s ewens5te. ewest5r ew2h e5wi ewo3v 4ex. 2ex3aa ex3af 4exco 3exeg 3exem 4exi ex3in ex5op 1exp e3y4o eys4 ey3st e5za e3zee 4e3zen ezers5 e3zo ezz4 ^^e93a ^^e91d ^^e9dee4 ^^e9di3 ^^e91g ^^e9gee5 ^^e93h ^^e93j ^^e93n ^^e93p ^^e93r ^^e91t ^^e81 4^^e8c ^^e82l ^^e82s ^^e85t ^^e8ta5 ^^ea1 ^^ea2p ^^ea3per ^^ea5t 3^^eb 4^^eb. ^^eb2b ^^eb3c ^^eb3d ^^ebe2 ^^eben3 ^^eb3j ^^eb1l 5^^ebn ^^ebnce3 ^^ebn4e ^^ebns2 ^^ebn5sc ^^ebnt2 ^^ebn5th ^^ebn5tw ^^eb3p ^^eb1ra ^^eb1re ^^eb1ri ^^eb1ro ^^ebro1g2 ^^ebro3s ^^eb2s ^^eb3si ^^ebs3t ^^eb1t ^^ebt4s ^^ebts3te ^^ebve5 ^^ebven4 4^^ebzu 4f. 1fa f3aanb f4aat 3fab fa2bo f3acc face4 f1ach 2fad 2f1af fa3g fal3s fa3m f3ang fant2 fan4t3j fant4s5 2f3a2p f4arm 3fa5se fa2to fa3v 4fb fbe5dw f1c 4fd f3da fda4g f5dan fd1ar fde4k fdek3l fde4s3 fdes5e fdes5l fde5sm fdes5t f2d3in fd3of fdors5te fd4ra f3d4ru fd5se fd3si fd3so fd3sp f4d2w fd3wo 1fe fe2a fec4tr fede3 fe4del f3een 5fees feest5r fel5dr fe4l3ee 3feli fe4lom fe4l3op fel3sp fe3no f4er fe3rab fe3ran fe4r3et fe3rom fe3ron 3fes3 fe4t3j fetu5r 2f3ex 1f^^e9 3f^^e8 3f^^ea 4f1f f5fe f5fi ffs2 ff3sh ff3si f3fu f3g2 fge3 fge5r4 fge5t 4f5h 1fi fi5ac fi4al fi3am fi3apa fi3apo fia4s 3fib fi1ch 5fie 5fig f3ijs 2f1ijz fik4st 3f2il fil4m3a film5on fi3lo 4find 3fini f3inj 4fink 2finr fi3o fi4r fi4s fi5se f5iso f1j fjes5 4f1k4 f3ke f2l2 4f3laa f1laf f4lam f3lei flen4st flens5te. f4les fle2t flet3j 4flev f4lex f3lez 2flie 2flij f4lik f4lip f4lit f3lok 3f4lor flu4t3 4f1m f1n 1fo 3fob 5foc foe5d foe5ta 2f3of 5fok 2foms fo5na fond5en fonds5l fon5eng fo1no 4font fon5te foo4 fooi5 f3oom 5foon 2fo4p fop5s4 f4or 3fo5re fo5ri 5form for4t3j fo1ru fo3t 2f3oud 4f1ov 3f^^f6 4f5p4 fpers5te. fpits5te. fr4 f4raak. fraam5 5frac f3rad f2ras 5frau f1rec f3rek 5freq frie4s frie4t friet5j f4rik f4rod 4f3rol f4rolo f3roma frus3 4f1s f2sa4 fs3ad fs3an fs3ar f3sc f5sch f4scr fse2 f4s3ec f4s5ee f4sei f4s3eth fs4fe f2sh fs5he f2si f3sie fs3im fs1in f5slaa f5slac f5slag fs3lap fs2m fs3ma fs4mi fs3mo fs3mu f2s1o4 fs3ob fs3om fs4oo fs2p fs4pre fs4t fst3as f3ste fs5tec f5stell fste4m3 f4sterr f3sti f5stif f3sto f4st3oc f4ston f3str f3stu f3sy 4ft f1ta ft1ac fta4kl fta4p ft3art fter5sh ft3h f1to f5tond f4tont f1tr ft2s3l ft4sm fts3n ft4so fts3p f1tu ftu4r 1fu 2fuit fu4ma fum3ac 3f2un fur4o 3fus 2fuu 4fv fva2 fval3 4f1w4 3fy1 2fz fzet5 4g. 1ga 3ga. gaar5tj g4aat 2g1ac 4g3adm g4af. g3afd ga3fr 4g3afs 4g3afw 2g3a4h 4gal. ga3la ga4l3ap ga5ler gal3s 4gamb g4a3mi 3gan gan5d 5gane gan4s5t ga3pl 3gar. 4g3arb ga3re g1arm 3gars 2g3art gar5tj ga4s gas5c gas3i ga5sla. ga3sli ga5slo gas3o gas3p gas3tr gas5tra gast5rol 3gat gat5j gat3s 4gaut ga5ve g1avo 2g5b 2g1c 4gd g5dac g5dag gd3art gd3at gd5ate g3de g4d3elf g5der. gd3erv g4d3id gd3im g2din g3dr g5dru gd3sa gd5sp g3du 1ge 3ge. ge3a gea3dr gea5na gea3q ge4ari ge5au 4g3eb. 2gebb ge3c ge3d4 gedi3a ge4dit ge5dr ge5dw 3gee4 geest5r geet3a ge3f4 2g3eff ge5g4 gege4s 4geig 2g3eik gei4l5a 5geit geit3j ge3k4a ge3ke ge5ki ge5k4l ge3kr gek4st gek4u ge3k4w ge3lau gel4d3a4 ge3l4e 4ge4lem gel5f gel5k 5ge3l4o gel5si gel3sl gel3sp gel5ste ge5ma 4gemb 4g3emf ge5mo 2g3emp gems3 ge3m4u g4en. ge3nak gen4az 3ge3ne ge4n3ed ge4nend 4g3engt 3geni gen5k ge1no ge4n4of ge4nog gen5sfe gen5ston gen5stu genstu5r 5genw ge5om geo5pe georke5 ge5os ge5ot ge5p4 ge1ra ger5aal ger5aap. ge4r3a4l gera4p ger5ape ger5as. ge5reg ge3rem ge5ren. ger4i ger5ini ge1r2o ger4of ge5rol ger5slan ger4sli gers5lij ger4sp 4g3erts ge3r4u 3ge1s4 ge3sa ge3sc ge5se ge3si 4ge3sk ge5sl ge3sn ge3so ge5spend ge5sper ge5spo ge5stan ges5te. ges5ten. ge3str ge5sw ge3ta get4aa ge5tam ge2th ge5t4i ge3t4j get4o ge3tr ge5tra ge5tro ge5tru ge5tsj ge5tu ge5t4w ge3ui 5g4ev 4gex 5g4ez 1g^^e9 g^^e9di4 3g^^e8 4g1f gfijn5ste 4g3g4 g5ge gge3la gge4r5on gges5ti g4g5h g5gi ggings5 g5gl 2g1h g2het ght4 gh5te g2hum 1gi gids5te gie5ra gier4s gi1eu gi2f gif5r gi3ga 5gigere 5gigste 2gij g3ijs 4gijz gi2m gi3na 4g3inb 4g3inf g5infe g5infr 5ging 2g3inh gin3o 2ginr gi4oc gi2od gi4onet gi2or gip4st 5gir 3gis 4g1j 4g1k gl4 g5lab 3glai 1gla4s glas3e g5lat 3g4laz 3gle. g5leer glee5t g3len 2g5lep 4g5ler g3les 3gle4t glet3j g5lev g5lice g5lich 3gli^^eb g2lif g5lijs g2lim 3g4lio g2lob 3glof g5log 3glom 4g3lon g3loon g3lop 3g2los g5loz 3g2ly 4g1m gmaat5j 2g1n g3na gn4e gne5g gne5m gne4t3j gnie4tj 4gnu 1go 3go. 3go2a 3gob 2goc g1och go4d3a god4s3 gods5t 4goef goe1r 2gof go3f2r g4og 4goh go2k 5gom. go2ma g3oml 4gomz go4n3az 2g3ong go5no 2g1ont g2oo 2g3oor 3goot 2g1op go3pa g4opr g4ora 4go4re go5re. 5g4ori gor2s gos1 go3tr gou4d5ee 2g3ov 2g5p gpes3 1gr4 3gra 5gra. graat5j g5rak gra2m g4ram. gram3a g3ramp gra4s3 5grav 2g3rec 2g3red 5gredi g5redu g3reek g3reel g4reep g3reis 4g3rek 2g3rem gren4s gre4s g4reu g3rev 5gria grie4t5j g5rijd g5rijk g5rijm g5ring 5g4ris grit5s 2g3riv groet5j grof5 g3rok g3rook g3room groot5j 2grou gro5v 2g3rug g3ruim g3rup 4gs gs1a2 gsa4g gs5alar gs3alt g2sc gse4 gs3eco g4s3ed gs5een gs3ei gs3en gs5ene gs3erv gs3et gs3ev gs5he g2s1i2 g3sie gs5is gs1j g3s4ke. gs3l gs4la gs5laag gs5lam gs5las gs1le g3slep g4sleu gs5lie gs4lin g5sling gs4lo gs5log gs5lok gs5lon gs4lu g4s5ma gs3n g4sna g3snij g4s1o4 g5sol g5som. gs5ons gs3op gs3p gs5pand g3spec g3s4pel g3s4pet gs4pi g3spie g3spil g5spin. g5spinn gs5pir gs5pol g3s4pon gs5ps gs5q gs5sc gst2a gs5taal gst5aang gs5tac g5stad g5s4tan g4st3ap g5stat g1ste g5s4te. g5sted g5stee g3stei gs3tek g5stel g3sten g3ster g5ster. gs5terr g5sters gs3th g5s4tic g3s4tig gs5tijg g5stof g5stop g5stor gst3o4v g4s3tra gs5trad gs5trak gst5ram gs5trap g5strat gst5res gs5troe gs5tron g4stru g5struc g3stu gs5ty g2s1u4 gsver3 gs5w g5sy 4gt g1ta g2t3ap g3te gte3ro gtes4 gte3st g1to g3tr g1tu 1gu 5gu. 3gue gu4eu 2guit gu4ni gu2s3 gut4st guts5te. 4gv g5vo 4g1w g5wa 1gy 4gyp 2gz 4h. haams5ta haar5sl haar5sp haars5te haar5tj haats5te. h3afd haf4t3u ha3g ha5ge hal2f1 5hals hal4sto 5halz 2hamp 4han. han4dr hand5sl han3ga hang5l hang5s han4s3l han3so han4st hap2s hap4se har4ta harte5l hart3j har4t3o4 har5tre hart5sl hat5j ha2t3r hat3s ha3v 4have. 4hb 2hd h4e 2hea he2ar 3hech he3co 4hee. hee3g4 hee4k heek3a heek5l hee4l3o heep4s heeps5c heers5tak hee5sto hee5tjes he2f he4i heids5p heis4 hei5tj he2k3a he2kl hek4st heks5te. hek5sten hek3w he3le he4l3ee he3li hel4m3a helo4 hel4p3a hel3sm he5mo he5ne hen4kr he3n4o 4he5o he4pij he2p3l he2pr he1ra her4aa he4r3ad he3r4au he4r3i herm5eng he3ros hero5v her4p5aa 3herst hert4 herts5te he2ru he5se he2sp he2s5t hets5te. heu5le 2h3f 4h5g h3h hi5d hie4f3 hielsges5 hie4r3 hie5ren hier5u hie4t5o hie4tr hiet5s hij4sl hik4s5 hi3kw hil3m him4pl him4pr hin5d h3ins hin4t3j hi2p5l 2hir2 his5p hi3tr hit4st hits5te. hit5sten h3j 2hl h3la h4lag h3lep h3loc 2h2m h3ma h3me h4mer h1n h2na hno3 2ho. ho3a hoa3n hoboot4 ho3ch hoe4ker hoe4s hoes5l hoe3t ho2f hof5d hof3e ho3g2 ho2ka ho5mo hon3dr hond4s hon3g honi4 ho1no hool3e 4hoom hoort4 hoor5tr 2hoot ho3pa ho1pe ho2p3o hop3r hop4str hor5de 5horl ho3ro hor4st hors5te. hor5sten hor4t3j ho3ru ho3sa hot3j ho3tr ho4t3re hot4st hots5te. ho3v 2ho4w how3o 2h1p hpi4 2hr hra4b h4re h5rea hri4 hro2k hrok3o hroot3 4hs h3sa h3sp h3st 2ht h4t1a2 ht3ac h3tal ht3ala h5tans h3te. h4t3ec ht4eco h2t3ee h2t3ef h2t3ei ht5em h3ten h4ten5t ht5entw hter3a hte4r5o h4t3esk h4tev ht5eve h5tevo ht3ex h2t5h h4t3int h2t1j ht1o4 ht5oef ht5op h4t1r ht5roo ht4sap htse4 ht4ser ht2si ht4sl ht5sla ht5slot ht3sme ht5smij ht4s3o ht3spe hts3pl ht3spr hts5taal ht4s5tak ht4s5tek ht4sti hts5tore hts5trekk ht1u2 ht3w hu4ba 3huiz hul4der hur4t5 hut3j huts5te. huur5s 4h1w hy4la 3hyp hypo1 4i. i1a i3aa i4ab i5abi i4ac i3ady i3ae i5ae. i2a3f4 i2a3g2 i3agr i3ai i5ak. i3ake4 ia4kem ia3kl ia3kr i3al. i4a3la i3ali i2am i5am. i3ami i3an ian4o ia3o i2a1p4 ia5pa i5api ia3sc ia5se ia3so ia4s5po ia3sta i3at ia3t2h i5atri iave4 i5ble iboot4 4ic i3ce 5i4cepa i1cha i1che ichee4t i1chi i1cho i3chr ick5l icos4 ic4t3op ict4s5c i3dam idde4r5a ide3a i4dee. ider4sp ider4st ides4 idi3a idi5ab i2di5o id4mak i3dok i2dr id3ran id3ru id2s1 id4s3a id4ser ids5i ids5j ids5l id4sm ids5ma id5s4mee id4s3o ids3ta ids5tak ids5tek id4stem id4sti ids5tr id3u4r id3uu idu3w id3w 4ie ie1a2 ie4d3ac ie3de ie4dro ied3w i1ee4 ie^^eb2 ie3fi ie2fl ie3fle ie3fon ie4fr ie4gas ie3ge ie4g5ins i2ek iek3e4v ie4kl iek3li ie5klu ie2kn iek5ond iek4s5n iek4sp ie2ku ie3kwa ie5lan ie5lap iel5do iel5d4r iel4e iel5ei. iel5k iel3sc ie3ma iem3ov ien4dr ien3ij i3enn i5enne. ien3s4m ien5sp ien4sta ien4st5o ien4str ienst5ur ieo4 i4ep ie5pen iepiet5 iep5oog iepou5 iep5rel iepro4s iep3s4 iep5st iep5tr ie4pui ie5r4ad ier3a4l ie3ram ie3rap ier3as ie4rat ier5el. ier5els ie5ren. ie5ring ierk4 ie3r2o ie4rof ier4sl ier5slu ie3ru ier4ui ie3sf ie2si ie4sl ie5sle ies3li ies3m ie2s3n ie2so4 ie4s3pl ie3sta ies5te. ie5stel ies5tere ie3sto ie4taa ie5tal iet5ant ie5ten ie3tj ie3to4 ie4t3og ie4too ie4top ie4tor ieto5re ie4t3ov ie5troe iets5te. iet3ur iet3uu ie3twi i3ety ie2u ieu3k i1eur ieu5r4e i1eus ieu3sp i1euz ie3v ie3z iezel5a i3^^e9s i1^^e9t i1^^e8 i4^^ebg i4^^ebva 4if if3aa if3ad if3l if3r if4ra if4taa if4tar if4tre iftu5r if3ui ig4a ig3aa ig5ac i5gal i4g5av i3ge ige2s ig3esk ig3ij i4gind igi3o ig5no i3g4om ig4op igs4 ig3sk ig3sl ig3sp ig3sto ig3un i1h i3i i5ie ii2n i5is i2j 4ij. ij5a ija4d 4ijd 4ije ij3ef ij3ei ij3el ij5e4n3 ij1er ij3i 4ijn ij3o4 i3jou 4ijso 4ijsp 4ijst ij5te ij4tr ij5u 4ijvo 4ijzo 4ik ik3aar i4kam i3ke ik3ef ike4ra iket3 i2kij i3kl ik3la i4k3lo i4k3lu i2k4n i4k5na ik5o2g i3kom i2koo iko2p ik3ope ik3ord i4kr ik3re ik3ri ik3ro ik5se ik5si ik3s4l iks3n ik3sno ik3sp ik4spa ik1st ik5sta iks5te. ik1w ik5war i1la i3la. il4aa il5aan il3ac il4act il3ad il3af i3lak il3al i5land il2da il4d3r ilds4 4i3le il3een ile3l i4l3erv ile4t ilet5r ile3u il3e4ve ilevin4 i4l3e2z i3l^^e9 il5f i3li ilie5g ilie5t il3ink ilk4l ilk3s2 illa3s 1illu il2m ilme2 il4min il4mo i1lo ilo4ge il3ond i3loo i5loon il3oor il1or ilo4re ilo4ve il3s2h ils5j il4sti il2th i1lu 4im. i2mag i4mago im5au imee4 im3een i4m3em im3enc im3ex 4imf i2m3of im3op im3org im5pa im4s3oo im1st i3mu in1ac i2nau ind4aa in4dene ind3sc ind5ste 1indu in3e4de in3edi in3eed inek4 ineo2 inet4s i5neu 1inf in2ga4 ing3aa ing3ag ing3al 3ingan ing5lo in2go in4gr ing4st 4ini. i3nie ini5on ini5sl ini5sta 4inkj in2kn 3inkom in4kri 3inno i1no i3noc i3nod in4o2g in1on ino5pe ino3s4t in3ov 1inri 4ins. in5sch in5se in3sl in3smi in3so in1sp in5spo in5sten in5swi in4t3ap in5te intes5 in3th 1int4r i1nu inuut3 4i1o io5a ioas5 io5b i3o1c i3ode ioes3 io3f io3g2 i3ol i5ol. i5olen i5olus i3on ioneel4 i5ong ion4s3 ions5c i5oo i2op4 io3pa io3pr i3opt io3ra i3ori io3ru io4s i3os. ios3c i3o5se i3o5sf io5sh io5si i5osi. io5so io5sp io5s4t i5o5su i3osy i5othek i3oti iot3j i5otorens io3tr i2o3v i3ox i2oz i1pa i2p1ac ip3af i3pap i1pe i4perw ipe4t3j i1pi ip1j i1pl ip3lu i1po ipo4g i1pr i2pri ip3ru i4ps ipse4 ip4si ip4sle ips5te. ip5sten i3ra ira3k i1r2e ires4 ire3st i3r^^e9 i1ri irk4s i1ro iro3p iro5v ir2s ir4sc ir3sp ir5ste irt3r i1ru 4is i1sa i2saa i4s3ad is3a2g is3ap i2s1ar i2s3as i4sc i5scha i5schr is5col i5scoo i5scope ise2d i4s3ei is3ell is5eng i4s3erv ise3st iset3j is4fee is4fer i4sh is5ho isi2d i2sij i2s3im is3ja i4sk is3ka is3ke is3l is5lag is5las is5le i4s5m i4s3n is5ned is5nij is5no 5isol i4soo is4oor iso3s i2sot is3ott is3p is5pas is2pi is5pl is5q is5sa is5so i2s3t is1ta i3stak ist3ap i4s5tas is4tat is5terd is5tere is4th is1to ist5ong i3str is5tri i5stro. i3sty isu2m i5sy 4it i1ta it3ac ita5d it3een i3ten i3ter ite5rei ites4 ite3st ite4t it3hie it1ho it1hu it2i itie5st i4tj i1to it5oef it3oog i3t2ou i4to4v itper5st it3red it1ru it3sje it3sli it3sop it1sp its4te it4ste. it4too i3tu it3w 4i3u2 iu4m ium3a4 ium3e ium3o iu3r i3ve iven5s ive3re i5w iwi2 iwie2 iwit3 4iz i3ze ize3t ^^ee3 ^^eet4 1^^ef 2^^ef. ^^ef5a ^^ef1c ^^ef1d ^^efe4n3 ^^efe5nen. ^^ef2n3a ^^efns5m ^^efn3sp ^^efn3u ^^ef3n4ur ^^ef3o ^^ef3ri ^^ef3ro 4^^efs. ^^efs3a ^^ef4sc ^^ef5sche ^^efs3l ^^ef3so ^^efs3t ^^ef1t ^^ef5z 4j. 1jaar jaar5tj ja3b 2jaf 1jag jagers5 ja3kn ja3mi jan4s3l jan4st ja3pl ja1po 1jar jare4 1jas3 jas5p 3jaw jaz4 j3b jba4l jbe4l3i j1c jda2 j2d3aa jd3an j4d3ar j2d3ee jde4n3e jden4s jdens5p j4d3erv jdes4 jde3sp jde5st jdi3a j2do4 j3dom jd5on jd3op j3dr j4d3re j4d1ri j4d3ro j4d3ru jd5sei jd3spo jd1st j2d3u jd3w j3d4wan jea4 3jeba je3ch jec4ta 2j1ee jel4 je3la j1en je2na2 je3n4o 5jep jepiet5 je3ro jers4 jer3sp je4s3 3jesa 5jesal je5sch 3jeskn jes5l jes5m jeso2 jes5pa jes4pr 3jesr jes5tr 5jesvo 3jeswa 3jeswi je2t jet3er jeto4v jet5st 5jeu 3jevr 2jew j3ex j2f1a j2f3ei j2f1en5 j4f3ij jf3ink jf3l j3f4lat jf5le j2f3o4 jf3r j3f4ra j3f4ro jf2s jfs3a jf4sc jf4s3er jfs5f jfs3l jfs5m jfs3n jfs3p jfs5pa jf3st jf4sta jfs5tak jf5stan jf4stel jf4sti jf4s5to jft2 jf5ti jf5tw j1g j3ge jger5sl j2g3l jg4s5e jg3sn jg2st jg3s4te j3h jif3 j3ig jin3g ji5t2j j3j 2jk j3ka j4kaa jk5aard j4kar jk3arb j4kau j4kav j2kij j2k4l j3klaa jk5lak jk5lap jk5las j4kle j5kled jk5les jk5li j3klon jk5lop jk5luc j2kna j2k3of j4k3o4l j2k3on j2ko4p jk3opb jk3ope jk3opl j3kops j2kr j4kra jk3raa j5kran jk3re jk3ro j4k5ru jk3slo jks3pl jk4sta jks5taak jks5taal jks5tak jk5stan j2k3ui jk3w j3k4was j1la j3laa jl5ana j1le j2l3ef j2l3el jl5f jl3ink j1lo j2loe j3lu j2m3af j5m4ar j3mi jm3op jm3s j2n1a4 j4naa jn5ac j3na5g jn3ak jn2am jna5me j3n4an jn5d2r j2nef jne4n j4n3erk j4n3erv jn3gl j4n3im j4n3ink jn3k4 j2n1o4 jn4si jn2s3l jns5lac jn3slu jns5or jn2sp jns3pl jn1st jn4ste. jnt4 jn3tr joet3 4joi jol4e jo5lij j3om 1j4on jone2 j3op jo3pe jo3ra jo3ru j4ou 1jour jou5re joy3 j3pa j4p3ac jp3arm j1pe j2p3em jp3ij j1pin j3pio jp1j j1pla jp3li j1po j2p3or j4pre jp3ri jp3rok jps4 j3r jraads5 2js js1a j4sef j4s3ela j5seli j4s5em j4s3e4r j2s1i js5in js4ir js4le js3lee js3li js5lie js4me js5mel js5met js3n j4s1o4 j5soe js3ol js3pac js3par j3spe js3pl j4spo js3poo jspoort5j j5spor j1sta j4star j2s3te j3stee j3s4tek j3s4tel j5s4teng js3th js4tij j5stond j4stoo js3tou jst5ran j5strok j2su j3sy j3taal jt3aar jt1ac j1tag j3tak j3tan j3te. jt1h j3toe jt3opt j3tr jt3ra j5tred j5tree jt3rei j5trek jt3ri j5trok jt3rot jt1s j1tu 1j4u ju3d 4jum jus3 juve5 j3v jve2n jver4s jvers5p jve3t jvie5s j1w jze4r5o 4k. 1ka k3aanb k3aanl 5kaart kaart5jes kaats5te. kabe2 ka3bo 2k1ac kade4t5 4k3adm ka3do k3adv 2kaf k3afd k4aff ka3fl 3k4aft ka4ga k3a4gen k3ah ka3i 2k3alb ka3le 5kalf kalf4s5 ka3l4i kal2k kalk3a 4kalt 5kalv 3kam 4kamb kamen4 kame4re kam4pa kam4pl kam4pr ka5naa kan5d 4kang kan4sl kan4st kan4t3j kao3 5kap. ka3pe kap3l ka1po 4kappa ka3pr kap3s k3arc k4a3ro kart4 4k3arti kar3tr ka4s kas5c 4k3asi kast3o4 ka3str kast5ra ka5stro kas3u4r kat5aal ka4t5a4le ka4tan kati4 ka4t5io kat5j k3atl kato4 ka4t3og ka5tr kat3s 2k1aut 2kavo 2k3b 2k1c k3ca 2k5d kdi3a 1ke k4eb 2k3ec ke4di 2k3een kee4p5l kee4r keer4s keers5to 2kef 4keff k4ei. k4eie k2eil kei3s4 kei5t ke4lap kel5da kel5dr ke5lel 4kelem kel5f ke4l5int ke4lom ke4l3op kel3sp 5k4ema 2kemm 2kemp ke4n3an ke4nau ken4ei. ke5nen ken5k ke2n1o kens5po kepie5t 4k3e4q ke3ram ke4r5enk ker3kl ker4kle ker4kn ker4k3r ker4ku ker4kw ker4n3a ker4no ker3o4 ke3ros ker4sm ker5spe ker4spr ker4sta ker5ste. ker4sti 4k3erts 4kerva 4kerwt ke2s ke3s4p ke3sta kes5ten ke3sto ke5straa k2et 5ketel ke2t3j ke3to ke2t3r kets5te. ketting5s 4k3e2tu ket3w 3k2eu keviet5 ke4vl 4k1ex 2k3e2z 2k1f 2k3g 2k1h4 k3ho khoud5s 1ki 2ki2d 4kied kie4sp kie4s4t kie5ste kie4tj kieze4 2ki^^eb kijk5l k3ijs 4kijv 4k1ijz ki3lo kilo5v ki3na 4kinb 4k5indel kinds5te. 4kindu kin3en 5king kings5l 2k3inh kinie4 k3inko 4k1inr 2k1ins 2k3int 4k3inv ki3o ki2p3l ki5se ki3s4p kit4s kits5te k1j 2k3ja k3jew k3jo 2k3ju 4k5k4 kke5nei kker4s kkers5ten kke3st 1k2l4 5klac k3ladi kla2p1 k4las 5klas. 5klass k3last k3lat. k3latt 3k4lav 3k4led 5kledi 5kleed k5leer. 4k5leg 5klem 4k5len k3ler. 4klera k3lers k3les 5k4le4u k5lic 4klid k3lig 2k3lij 4klijs k4lim kli4me 3k4lin k5lob 4klod 3klok 5klok. k5loka k3loke k3lood 5kloof k3lope 5klos klots5te. 2k5loz 4kluc 4kluih 2k1m k3ma 1k2n4 4knam k4nap 3k4nar 5knec k5nem kni2 5knie. knip1 4k5niv 3knol k3note 2knum 1ko ko4bl k4oc 2k5oct 4k1oef 5koek koe4ket koers5p koes3 koe3tj koets5te. koge4 5ko5gr 3k4ok ko5ko kol2e2 kolen3 2kolm 5kolo ko4ly ko2m3a 4komg kom5p k3omsl kom4str 4komz konge4 k4oni k3ontb kon4t3j kon4t3r koo4 2k1oog kooi5tj koot3 koot4j ko3pa 4kopb 4k3opd ko1pe ko5pen. 4kopg 3ko5pi 5kopj ko2pl 2kops 4kopz 2kord kor5do 2k1org 2k3ork kors5te. kor4ta kor4t3o4 kor4tr ko3ru 3k4o4s3 4k3os. kos4j ko5sjere koso4 4koss kot4st kots5te. 4k1ov 4k3ox 2k3p kpi3s k4plam kpren4 1kr4 3kra k5raad kraads5 kra4b 4k5rad k5rand 2k1rea 2k3rec 4k3rede k4ree4 k5reep kreet3 k3ref k2reg 2k3rel 2k1ric k3rijk k3rijp krij4t krijt5j k4rit k5ritm kroet5j 2krol k4ron kron3t 5kroon krop3a kro4to 2krou k3ro5v 3k4ru k5rub 5kruis kru4l krul5a 2ks k3sal ks3alm ks3an ks3ap ks1ar ks3as ks2e2 k5sec ks3ed ks5ei. ks3ep k4serv ks3et kse3v ksges5t k4si k5sil ks1in k5sis k5sit ks1j k1sla ks3lab k4slan ks3le ks3li k4smo ks3na ks3no ks3nu kso4 ks3om k5song k2s3pa ks5pand k4spar k1spe k3spi ks3poo k5spor ks3pot ks3pru k3spu ks5s ks4t k1sta k5staan k5staat k1ste ks5tec k4st3ed k3sten ks5tent kste4r kster5a k4sterr ks3th k3sti k3sto ks5ton k5stoo k4stop k5stot ks5trek ks3tri k3stue kst5uit k1sy 4kt k1ta kt3aan k3taar ktaat5 kt3ac kt3art k3te kte2c kt3eco k4tex kt1h k5tij kt3im kt3in k5tit kt3j k1to kt3om kto4p kt4or kt5ord kt5org kt5ori kt3o4v k1tr kt3res k5troll ktro3s k3tu 1ku ku5be kui2f 2kuit ku5k ku5me 3k4u2n 4k5uni 5kuns ku2r ku3ra ku3re kur3s 3ku2s kut3 2k^^fb 2kv k3ve kven4t3 5k4waal 2k3wac k2wad k1wag 5k2wal 5k2wam 3k4war k5ware 4kwat k3weer 2kweg k1wei 5kwel kwen4st kwens5te. 4k1wer 5k2wes1 kwes5tr 5kwets k2wie k3wijz k4wik 2kwil 2kwin k3wind 4k1wo ky3 2kz 4l. 2laan 4laand l3aanh laa5re laar5tj laat5sta l3abon 2lac la4ca 5lach. la4cha 5lache lach5te lacht4s l4aci la2d5a la4det 2ladj 4ladm la2d3o 4la2dr lad5s la2du 4ladv 3lae3 2laf la2fa la3fl lafo2 4l3afs la2g3a la4gent la2go lag3r lags4 lag5sa la2k3a la4ki la3kr 2lal 3lald lal4o lam4p3j lam4p5l lam4po4 lam4s3p l4an 4la2na lan3ac 3land lan4da land5aa lan4d5oo lan4d3r lands5te. la4n3ec lanel5 5lange. lang5l lang5sp lang5sta lan4k3a lan4k3l lank3w 4lann la4nor lan2s lans3l lan4st lan4t3j lap3ac la3pi lap3l lap3o4 la5pre la2p3u la3q lar3da 2larm 4larm. lar5st las3a4 lase4 la2si las3to 5lastt la3te la4t3he lat5j la4t3ro 4lats4 lat3sl 2lau 5lauf lau4st l2auw la3v lava3 la4vo 5law l4az 4lazi la4zij 2lb4 lber4t lbert5j lboot4 2l1c lce4l5 4ld ldaat5 l2d3ac ldak4 ld3alf l4da4r ld3arc ld3ari ld3art l2dau ld3eco ldeks5 l4d3e4z ldi3a ld5oef ld3oli l2d3om l2d3on ld3oog l4do4p ld3opi ld3ord ld1ov l3dr l5drade ld3ram ld5rang ld3rat ld1re l5dree ld3rij ld3roe ld3rol ld3rom ld3rui ld3sa ld3sl ld3sma ld5sp ld5ste l3du ld3uit ld3uu ld1w le2a le4ane le3at leba4l lecht5st lee4 leeg3 leege4 leeg5i 4leekh lee5l leem3 3leen 4leep leep3o lees5e lees5l lees5po 2leeu 2leff lega5s leg3ec leg3l le4go le5go. leg5s 3leidi 4leier 4leig lei5tj leit5s le4ko4 4leks lek5str 5leld le2le 5leli l3elp le4n3a4d len3a4k 3lene le4n3e4m len5kw le2no len3op len3sf len3sm 4l3en5th le5o 4lep. 3le1ra le4r3a4k le5rei le4r3e4v ler5g4 le3r4o le4ron ler4sl ler5spo 4l3erts le2s le4sa le3sc les5et le3s4h les3m le4sp le3spe 4l3essa les3t les4ta les5taa le5s4tel le3str le4s3u le4t4h le3tha let4i le5tin le4top le2t3r le3t4re let4st lets5te. le2t3u leu3ko leum3a leur4o leus4 leu5ste 5leuz leven4s levink5j 4lexc 4lexp l2fac l3f4ag lfa3s l2fau lfe4n l4f3end lf3ene l2fe2z lf3li l3f4lo lf3lu l4fo l5foe lf3o4l lf1op lf5ord lf5org l5fou l1fra l3fru lfs5ei lf4sl lfs3le lf2s3m lf4so lft4 lf5ta lf5tw lf3uu 2l1g l5gaar l4gap lge4n5a l3gla l3g4oe l3gog l3goo lg3s4 lgse5 4l1h 1li li3ag li3am licht5st 3lid 5lid. 5lidm lid3s4 lie4g3a lie4gr lie3ka lie4sp lie3s4t lie4to li3eu 3li^^e8 3lift l4ig li3go lijk3a lij4m3a 4lijmv 5lijn 4lijp 3lij2s lijst5a 4lijt 4l3ijz li5kr lik5sp li4kw li3kwi lim4a li3mi 2limp lim4p3j lin4da 4linf 4l3inh li5ni lin4k3a 3linn l3inna 2linr 2l3ins lin4t3j l3inv 4linz li3ob li5om li5o5s4 li3ot li2pa li3pi li2p3l li5see 2liso l5isw li1t2h lit3r lit4sa lit4sl lit4st lits5te. lit5sten 2lix 4l1j2 lk3af l4k3ank lk3arm lk3art l3ke l4k3ei l4k3em lken5e lken4s l4k3ep l3ki lking4 lk3laa lk3lag l5klas l4k3lev l5klim l3ko l5koe lk3ont lkooi5 lk3opb l5kor l5kou l5kra l2kre lk3rep lk3res lk3rij l2k3ro lk2s lk4se lk4so lk3son lks3oo lks5taa lk3ste lks5tel lks5tr l4k3uu l3kw lk3wi l3ky 2l1l l5la lla3d lla3g4 lla5tr ll3eig lle3k ll4el lleo4 ller5on lle3s4m lle5th llevie5 l3l4i l3lo llo5f l5lon ll3sh 2lm l3maa lmaat5 lm3a4ca lm3af lma5^^ef l3mak lm3arc lm3art lma3s2 lm3au l3me l4med lm3edi l4m3ep lme2s lme5te l3mi l3mo l5mog lm3oli lm3or lmro4z lm5sc lm3sh lm3su 2l3n lni4s lo3a 2lobj lo4boo loe4d5a loed3r 4loeg loe4gr loen4st loens5te. 4loes l3oeu 5loev lo4faa lof5d2 lof4s4 log4 log5l lo3go 5logr log2s3 lo4k3ar lo2k3o2 lo4kr lo2ku 2lo2l lo3la l3oml lom4p3j lom4p3l l3omt l3omv 4lomz 3lon. 4lond 5long lon4gaa lon4g3o lon4gr lon3o 2lont lon4t3j 3look loo5pi 3loosh loot3e lo3pa 4lopb l3opd lo1pe 2l3oph 2l3opl lop4la 2lopn lo3p2r 4lopt 4l3opv 4l3opw 2lor 3l4or. lo3re 4l1org lo3ri l4o1r2o3 3l4ors lo3ru lo3spe lost4 los5to lo4s5tr lo5s2u lo2ta lot3a4l lo4tet lo2t3h lot3j lo4tof lot3r lou3s lo3v 2love 3lo5z 4lp l1pa l3paa lp3aan lp3a4g lp3am l3par l3pas l1pe lpe2n l2pex l3pi l5ping lp3ins lp3j l1pl l3p4la l4plam l1po lp3of l3pom lp3on lp3ope l3pos l3pot l1pr lp3ram 4l3r lraads5 lrus5 4ls l4saa ls1a2d ls3a2g l1sam ls3an l3sap ls3as l2sat ls4cor ls4cu ls3eco l4s3e2d l4sef l5sen l4s3e2p lsge4st l3s2hi l3si l4s3im l4sin ls3inj ls3ink ls3int ls4j ls5ja l3s4kel l3s2ki l1sl l3sla l2s4le ls5led ls5lee ls5leg ls5len l2s3li ls4lin l3slo ls4maak ls4med ls4mee l3smid ls3na l3sne l3sno ls3nor l3soc ls3of l3sol ls3op ls3o4r ls1ov l1sp l2spa ls3pac l3span ls3par ls4pe l3spi ls3pli l3spoo l4s5poot l3spor l2spr ls3pra l1st l3sta l4staf l4stak ls5tak. l3ste l4stek l4stev ls4ti l3sto l5straa ls5trak l5strat l3stu ls5ty l2su l3sur ls3us l3sy 4l1t lt4aa lt1ac l4tam l5tame l5t4an lt4han l4t3hi l2t3ho l3thu lto4l lt3oli l2t3o4v l3tr ltra3s lt3rug lt3sl lt3sp lts5te. l3tu lu4b1 lub5e lub5l lu1en 3lui. 5luia 5luid luids3 5luie. 2luit luk2s luks3t lu3na 3lunc 2l3u2ni lu3sta lu3ta lut3j lut4st luts5te. lu3wi lven5s lvera4 l1w 1ly ly5i ly3st 4lz lzooi5 4m. 1ma maas3 maat5st m3act 2m3adv ma5esto m3afl ma3fr 2m3afs 4m3afw m4ag ma3gl ma5go ma3gr ma^^ef4 ma5ka ma5ke 5ma3k4r ma3kw ma3l4a ma5lac ma4l5ent mal5st 5m4an. man3ac m3anal man5da man5do mand4s 5m4ann ma5no 5man2s man4se mans5ee man4so mans3p man4s3t mans5ta man4th mant4r ma5pa ma3pr ma3q m4a5ri mariet5 5m4ark mar3sh mar4s5t mar5ti ma1so ma3s4po 5mass ma4ste ma3str ma5ta 5mater mat5j ma4tom ma3tr mat4st mats5te. ma3v 4mb m5bl mboot4j mbo5st mb4r 2m1c 2m1d m5da mdi3a mdis5 m3do mdo3p m3dr m3dw 1me me1c me5de 5media 5mediu mee5g mee3k4r mee5las mee3lo mee5re mee5ri 5mees meest5al mee5stov mee5str m5eg. me3g2a mega5s m5egd m5egg m5egt me4i mei2n mei5tj m2el me4l4as mel5as. mel5dr mel4ko mel4kr 5melo mel3s4m me4mi 3men m4en. me3na men4as meng5ra men5k me5nor 4menq men4s5uu men4t3j ment3w me5nu me3p2j 2m3e2q me1ra me4r5aak me4r3a4k me4r4am mer5ante me4rap me3rau me4rav mer3ei 5merk mer4kl mer4kn mer4kw mer5oc me5rong me3roo 4m3eros me3rot mer4si mer4sl mers5m mers5ta me2ru4 m4es me3s4h me4s4l mes5li me5slo mes3m me3so me4sp mes3pa me5spe me5spot me5stel mesto4 mest5ov me3stu me5ta5n me3t4h 3meti me5tr mets5te. meve4 m3e4ven 2mex 3m^^e9 3m^^e8 3m^^ea 2m1f mfa3t mf4l mf3li mf5lie m5fo 2m5g mger4 2m1h 1mi 3mid 4mid. 5midd mie5kl mie3st 4m3ijs 4m3ijz mi3kn 5mili mi3lo mimie4 m3imp mi5nar 2minf 5ming 4minh 2m5inr 2m3ins mi5nu 4m3inw m2is mis5f mi2s3i mi3s4la mi4st mi5stra mis5tro mi3t4a mi1tr mit4st mits5te. mit5sten 2m1j 2m3k2 mkaart5j 2m3l 2m1m 2m1n m5na 1mo 5mo. mo3a 5moda 5mode moed4s 2moef 5moei moers5t moe2s moes3p moes4te mog2 5moge mogen4s mo3gl 4mok 5mole 2moli mo4lie mol4m3a 4molt 3mom 4m3omv mond3r mo5no 5mons mon4so mon5ta 3mooi 2mop mo3pa m1ope m4opp mop4s mo3ra mo3r4e mo3ro mor4sp mor4st mors5te. 5mos mo5sc mo4s5l mo3sta mo3t2h mot3j mot3ol mot4st mots5te. 2m3oud 5mouw mou4wi mo3v m3ox 2m1p mp3ach m4p3af m5pan mp3arm mp5arts m4p3ec m5pen m4p3erv mp3ins m3pl mp3lam m5plan mp3leg mp3lei mp3lev mp3lie m4plu mp5olie m5pon mpon4g mp3ope mp2r mp3rec mp3red m5pres m4ps2 mp5sc m5p4se mp3sh mp5su 2m1r 2ms m3sam ms3ana ms3ap ms2c ms3co ms3cu ms2j m3sje m1sl m2sle ms3len ms3lie m3s2m ms3ma m1sn ms3nee mso4 m3sol ms3or m3s2p ms4t m3sta m1ste ms5tec m5stel m5sten m1sti m1sto ms5toc m4s5ton mst5s m3sy 2mt m1ta mte5re mtes4 mte5sta m1th m1to m3tr m1tu 1mu mu5da mue4 5muilde. 2muit 2muk mul3p mu2m3 mu3no munt3j mu3sa mus5ta 5mut mut3j muts2 muts5te 3muu 5muz 2mv mvari5 mve4 mvee3 mver3e 2m1w 1my my3e 2mz mze4 mzet5 4n. 1na 3na. 3naal 5n4aam 4n1aan 2naap n4aar. 4n3aard 5naars naars5tr naar5tj 5naast 5naat n3abd 5nabe 2nac na2ca nacee5t n2aci 3naco 4n3act na5d4a nad4e 3nade. 5n4a5den 3nades 3nadi 4n3adm na5dra 2n1adv 5nae n3a^^eb 4n1af na3f4lu n2a3g4 na1h 3nai 3na^^ef n2ake na3k4l na3kr n3alb 3n4ale 5nalen 4n3alf n3alm 2naly 4nalys 3nam 4namb name5st n4ami n3amp n3a2na n3ank 3nant 5nant. 5nante n5antenn nan4t3j 2nap nap3ac 3na3p4l na3p4r nap3s nap5st 2n1arb 5nares 2n3arg narie5t 2n1arm 3naro 4nars nar4st nars5te. nar5sten 4n1art nas2 3na3sa na1s4l na1sp na3sta na3stu n4at. 3n4ati nat5j 4n3atl na3to nats4 nat3sp 5nau. 5naus 2na3v 5naven 3navi 3nazif na4zij 2nb nbe5st nbe5t nbots5te. 2n1c n3ce nces4t n3che ncht2 nch5tr nch3u n5co 4nd n5da. nd3aan nd5aas nd3abo nd3act nd5adel nd3adr ndags5p nd3alf nd3alm n4d3ana n4dap n2dar nd3art n4das nd3ass nda3st n4dav n4d3a4z n3de n4d3edi n4d1ei nde5laa n4d3emm n5den. ndera4 nder5aal nder5al nde4r5an n4d5e4rec nder5in. nder5og nde4ten ndi3a ndie4tj n4dijs nd5ijs. n4d3ink ndi3o n3d2ji n5do. n5doc n4d5of nd3oli nd3omd n4don n5dona nd5ond n5dons nd3ont nd3oog nd3ope nd3opp nd3ov nd5rap nd3rat nd1re nd4rek n4dres nd3rot nd3rug nd3s4cu nd4sec nd5set nd3s4i nd3sjo nd4sm nd3sp nd4spo nd4spra nds5taal nd3su nd3uit n2d3u4r nd5ure n4d3uu nd1w n3dy 1ne 3ne. ne5ac ne3am nebe4s 3neck ne2cl ne4dit ne3do n3edu ne5dw nee4 4need nee5k neel5d neel3o 3neem 4n1een nee5ri nee5se neet3a neet5o neet3r neet5s 4n1eff ne3g2 ne4gel negen5en nege4re 4n1ei 5neien n5eier n2eig 5neigd 5nei5t ne4k3r ne2la 4nelem 4nelf 3nem 4n3emb 5n4eme 4n3e4mig 4n3emm 4n3emp ne2n 3n4en. 5nenb 5n4end. nen5do ne4n5enk ne4ni ne5nig nen5k4 nen1o4 5nenp nen5t4a ne5oc ne5ok ne5om neo5p ne5os ne5ot nep3ag ne3pe nepi3s ne1ra nera4d 3n2e5re n3erfe 2nerg ne4r3id ne3ros ner4sl ner4sp ner4st ners5te ner3u ne3ry 3nes ness5a ness5t ne3sta nes3te nes4tei ne5s4tek ne4ter net3on net4si ne2u 4neum ne3ums neu5ste 2nex 3n^^e9 2n3f 2ng ngaat5j n2g1a2d ng3af ng3ana n4ga4p n2gar nga5sl n3gav nge4ad n4g3een ngels5te. ng3emb n5gen nge4rap nge4ras n4giger n4gigs ng3ij n4gind ng3ink n4g3ins ng4l ng5lad ng5lam ng5lan ng5led ng5leu ng2li ng5lin ng5lop n3goe ng3of n3go^^ef n2g1on ng5oor ng5op ng3ore ng3org n3got n3gr ng3rac ng3rad ng3rai n4gras ng5rass ng4red n4g4ri ng5rie ng3rij n5gron ng3rui ng2s ng4se ngs5lop ngs5lu ng4s5ne ngs5tak. ngs5take ngs5trek ng5stri ng3uit 4n3h nhek5 1ni n4i2d nie5kle ni3eri nie4s3p nie4tr 3nieu ni4g3ee nig3ra nij3f nij3k 2n3ijz ni5kr nik4s niks3p 3nil 3nim. 5nimf n3imp 2n3in. n3inb 2n1ind 2ninf ning3r 2n3inh n3inj 2ninr 2n1ins 2n1int 2n3inv ni3o ni4on. ni4one ni5or ni5o5s4 nip3l 3nis ni4sau ni4sel ni4s3ev ni3sfe ni2s3i ni4sl nis5n ni3sot ni5stel nis5to ni3t2h ni1tr nits4 n1j4 n3je njes4 nje5sp nje5st nje3t 4n1k nk3aan nk5aard nkaart5j nk3af n5k4am n4k3arb nkar5s n4k3asp n3kef nk3eff nk3emp n3ken nken4e nker5ku nk3id nk2j nk3lad nk3lod nk3luc nk3lus n2k3na n3kne n4ko4g nk3oge nkoot5 nk4ra n4krim nk3rol nk5se nk5si nk3sl nk3s4m nk3sn nk4s5o nk1sp nk1st n4kw nk3waa nk3wez nk3wi 2n3l 2n3m4 n3n n5n2e nnee5t nne3ne nnepo4 nne4p5ol nne5te nnet4j nn4i nning5r nnoot5 nno5v 3no. 1noc 1no3d 2noef noen5s noes3 noet5s n5offi n3o2ge n5ogi 1nogr 3no^^ef no3kl no3k2w no2li 1nolo 1nom 4n3om. n2oma n3oml n1oms n3omv 2n3omw 2nomz 3n2on. 3n4onb 3nonc 4n5ond n4o5ni 4nont 3nood 4n5oof 4n1oog nooi5tj 3noot3 noot4j 3no3pa no4p3as 4n3opb no1pe n1opg n5opleidi no4poo no4por 2nops 2n3opz 2nord no3re 2n1org 1norm 4norr 3nors 3norz 1nos no3sf no3sn no3sp 1not 3nota not5a4p 5noti not3j not3r 3nou. no3v 3nova no4ve 3nox 3noz 2n1p npers5te. npi4s5 npoor4 npoort5j n3ps 2n3r nraads5l n5re n5ri 2ns ns3a4d n3sag n1sal ns3alp n1sam ns3an n3sanc n1sap n3s4cal n5scho ns4ci n4sco nsee5t n4sef nse4g ns5ege ns3eis ns5emp n3si ns3idi n2sin n5sing ns3inj ns3ink ns3int n1sjo n1sl n5sla. n3s4laa ns5laag n5slag ns5lap. ns5lapp n4sle n5slep ns4let n5sleu n5slib ns3lie n5s4liep n5slim n5slip ns5lot. ns3m ns5mac n3s4me n3smij n3smol n4smu n1sn n2sna n5sne ns3nod n4snoo n4snot n1so n2s3ob n2sof n3sol n2son ns3ong ns3onz ns4opp ns4or n2s3ou ns1ov n4s3paa ns3pad n1spe n5spee n5spel ns3per n4spet ns4pi ns1po ns3pol n4spot n1spr ns5q ns5s ns4t n1sta nst5aang nst5aans nst3a4g n3stal n3ste ns5tec n4st3ei n4s5teko ns5teks n5sten. ns5tent n5ster. ns5tes ns3the n1sti n3stig n4stijv n1sto nst5oef n4ston n3stor nst5rade n5stree ns5trekk ns5troe ns5trog nst5roos ns5ty ns3uil n3sy 2nt n3ta n5taal n4t5aard ntaar5tj n5tab nt3ach nt4act nt1ad nt3aga n4t3art nt4as n5t4at n3te n5tec n4t3ei nte4lo n5tem n5te2n nte5nach ntene5ten nte5rad nte4rof n3t^^e8 nt3ha n4tho n5thol n5tig nt3inw nt4jo n3to nt4og nt4ol n4t5oli n5ton nt4oo nt5oog n4top nt3opl nt3opm nt3opt n1tr nt3rec nt3rei nt3rel ntre4s nt5ribb nt5rij n5troos nt4rou nt3rus n5try nts3a nt5slu nt1sn nt4sno nt1sp nt4spr nts5pre nt1st nt5ste n3tu n4t3uit ntu4n n5twijf n5t4wis 3nu. 3nuc 3nue nu3en nu3et 4nuf 2nui 4n3uil nu2lo 3num nu2m3a 5numm nu2n 3nunc n3uni 2nu4r 3n4u5ri nu5ro 1nus nu4s3o nu3tr nut4st 4nuu 5nuut nuw5a nu2w3i 2nv nve5na 2n1w nx3 n3xe nxo4 1ny 4n3yi 4n3yo 2nz nzet5s 3^^f1 4o. 4oa o3aa o2ad o3af o1ag o3ah o3ai o1al oa2m o1a2n oa4tiev o3au o3av o3ax 2o3b 4ob. obal4 obalt3 3obj 1o4bli ob5oor o4b5o4r 4obr 4oca ocaat5 5o2cea o3cha o1che o3chi o3cho o3chr ocke4 4o3co oco3a oco3s4 oc3t4 od5ac oda3g ode4m5ar ode4mo ode5re odes4 odi3a o5dru od5sc od5sei od3s4i od2sl ods5lam od5slan od3sli od5smak od4s3o od3spo od4spr ods4t od5sta od4ste ods5te. od5stek od5sten od3w o4e oe5an oe3as oe2d3a oeda4d oede4n oe2d3o2 oe4dr oed3re oed3ri oed3ro oe2d3u oed3w oe3e oe5er oe4f1a 1oefe oe2fi oe2fl oef3la oef5le oef3lo oe4f5o4 oe2f3r oege3l oeg5ij oeg1l oe4gou oeii4 oei3n oei5s4 oei5tj oei3tr oe4kaa oek5erk oeke4t oe2k3l oe4k3op oe4k3r oe2ku oek1w oe4lap oe4lar oel5dr oe4l3ei oe3lem oel5f oelo4 oe5loe oelo5p oel3sp oe4m3ac oem3o4 oen3al oe5n4e oen5gr oen3o oen4sn 2oep oep5ind oe4pl oe5plo oe4p3r oe3pra oe4ps oeps3e oe2p3u 4oer oe1ra oe4raa oer5aal oe4r3a4l oer4e oer5ei. oer5eie oero2 oe3roe oer3og oer5om oer4sl oer4sp oer4sta oers5tak oers5te. 4oes. oe3sfe oe3si oe4sli oe4s3o4 oes4ta oes4th oe3sto oe4taa oe2t3h oe5t4i oe2tj oe4t3o4 oe5toe oe4t3ra oet4s3p oet3w 2o^^eb of3ar of3at o4fav of4d1a4 ofd3ei of2d3o of2d3r ofd3w of3l o4fli o4flo 4ofo of3om o3foo of3op o3for of3ox of1r o3f2ra of5se of4sl of5sla ofs3le of2sp of3spe ofs3pl of3spo ofs3pr ofs3tr ofs5tra 4oft of4tu oft3ur oft3uu of3ui og5ac oga4l og3al. og5de og3di oge4d oge5laa ogel5ei 2ogem o3ger oge4ro oger5on oge4s3t 2og5h 1ogig og1l og5ne og3op og3sp og3sta og4st5ei og3sto og4ston og4str ogs5tro og3ui o3gy 2o1h 3ohm 4oi oi3do oi1e oi3j oi5k o3ing oi3o4 oi3s4 oi5sc ois2p oist2 ois5tj o3^^ef 2o1j 2ok o3ka. o3kaa o4k3aas ok3ab ok3ag o3kal ok3ank o4k3a4z ok3ef o2k4l ok5let o4kli ok5lu o2k3n ok3o2l ok3op. ok3o4pe okos5 o2k3ou o2k3r ok4ra ok1sa ok3s4l ok3sn ok5spri ok1st4 oks5te. ok5sten ok4s5tr ok5te okter4s oku4 ok3ur ok3uu ok1w ok2wi o1la o3l4ab ol3ac o3lal ol3a2p ol3arm ola3s4m 4old ol3d4o ol3d2w o1le o3le. ole5g ol1ei ol3eks ol3emm o3len o5ler oleu2 ole3um ol3exa ol2fa olf3l ol3fr olf5sl ol2gl ol2g1o olg5rap ol4gre ol4g3ri ol2g3u o3lia o3lic o5lid o3lik o3lin o5ling ol3int o3lit ol3kaf ol5ke ol2kr olk4s olk2v ollie4 o3lo o5loc olo3k ol4om o4lop ol3op. ol3opp olo3s4t olo4ve ol4pra 4ols ol5se ol4s5h ol5si ol1sj ol3s4l ol3s4n ol3so ol3sp ol5ster 4o1lu ol3uit olu4r 4oma om2aa om1ac om1af o3man 4ome o4m3ef om3ela omen4s omen5ste. ome5ren omer5kl ome5sp ome5t om2i o4m3int 4omm 4omo omo5l omo3s om4p5ei 5omro om3sl om4ste. om3ui 3omz on1ac on4ag o4n3am on4an on3ap ona3th 2onc on4d3ac on5d4as on5der ond5ete on4d3id ond5ijs ond5om. on2dr ond3re ond3ro ond5sj ond5slo on3d4u on4dur o5ne. o3neb o2n1e2c on3ei on3erf on3erv one3st 4onet. on1e3v ong5aan ong5aap ong3ap 4ongen ong5le ong2r ongs4 ong5se ong3sp ong3st on5id o5nig on4k3ap onke5lap on3k2i on4k3lo on3kn on5kw onnes4 onne5st o4n3of ono3l on1on o2n1ov on3sc ons4e on5sei ons2f on3s4m on2s3n ons5op on3sor on1s2p ons4pe on3spl on1st on5sten on5str 4ont. on4taa 3ont1h on4tid 3ont1s4 ont5sp 3ontv 1ont3w on1ui on3ur o4o2 4oo. oo3c 4oo4d ood1a ood1e4 oo5de. ood1o ood1r ood3sl ood3sp 4oof oo3fi oo4g oog1a oog3e oo5gi oog1r oogs4 oog3sh oog3sl ook3a oo3ke ook5l ook3s4 ook5st oo4k5w oo4l ool5a2 oole2 ool3ed ool5f ool5g oo5lig ool3ij ool3k ool1o4 ool1u oom5a4 oo3me oom3i oom1o4 ooms5te. 4oon oon5a oon5du oon3in5 oon5k4 oon1o oon5ta oo4p1 oopa2 oop5ee oop3o4 oop3r oop4sp oor3a oord5aa oor5dop oor1e4 oor3g4 oor5i oor5k oor5m oor1o oor3sm oor5ste oor5sto 4oort oor4th oo4s oos3a oo5se oos5n oo4t oot1a oot3es oot3h oot5o oot3r oot4sl o1^^f6 2opa o4p3ac op3ad o4p3af o4p3ak op3am o3pan op3and op3at. op3att 3opbre 3opdr o3pe. op3ee op5eet op3ei o1pel o3pen. 3o4peni o5per. o4pera op3e4te op3e4v 4opf o1pi o5pic op3i2d opie5t op3ijz op3in. o5pina o5pis 4op1j op3l op5los 1opn o1po opoe3 op1of o5pog o5poi o5pol op3ond o5poni op3ont op3ord op3o4re op3o4v op1r op3ric o4pru o4ps op5s2c op5se op5si 3ops4l ops4m op3sma op3sn op3so op3sp op3sta op3su 2opt 4opt. op5tr op3ui o2p3u2n o1ra or3ach or3act or3adm or1af ora4g o4r3alg or3ana o5rate or4daa or4d3as or4denv or4do ord5ond ord3or ord3o4v or3dr or4drad ord3w o1re ore5ad 4orec oree4 ore4no or2gl o1ri o5ria 3ori^^eb o5rig. o5rigere o4r3ink or3ins ork2a or5k4e or3kl or5kn or3kw or4m3ac or4mas or4m3ei or4n3ac or3ni orno3s4 or3oe o3rol or1on or3ont or1oo or1o2p or3or o3ros or5ov 4orp or4p3ac orp4s5c or3sag or5sc or5se or3sli or3smi or3so or4son or3sp or5s4pa or5spu or4t3ak ort5een or4t5ijl or2to or4tof or4t3oo or4tred ort5sp ort5ste or1u o3ry orzet5 2os o4sac o5sas o3sau 4o3s2c osca4 o4sci o5s4cl os3cu o5sed os4el o5ser os3f os4fe o4sha o3shi os2ho o3si o4sj os5jer. o4sk os5ko os3l os5li4 o4s3m os4n os5no o3s2o os3pa os3per os1pi os4pir o4spr os4s5m o2s3t os4ta os5taal os5taar osta3c ost3a4g os5tan os5tar o3stas o3stat os5te. os4tem o5stero^^ef os4th os4to os5toli os5tou ost3o4v os5tra. os5traa ost3re ost3ri o3stro os5trum os1tu o3sty o3su o5sy 4o1ta ot3aar ot1ac ot3af o3tag ot3akt ot3app ot3art otas4 o5tat o3te ot3e2d o5tee. o5tees o5teg ot3ei ote4lan o5ten o5ter oter5sp ote4st ote4t ot3eta o1th o2t1ho ot3hu o4tj otje5sp otli2 o1to ot3off ot3olv o5tom ot3ont ot3opm oto5po ot3opr o5t4or oto3s 2otr o1t4ro ot3ru ot5s4i ot2sl ot3sla ots3li ot3smo ot3sn ot3sp ot4s3pa ot4ste. ots5tek ot5sten ot4stu o1tu ot3ui o3tul ot5w 4ou. ou5a ou1c ou4d1a ou4des ou2do ou1e oue2t3 ou3k4 ou4ren ou5ren. ou5renn ou2r3o2 4ous ou3sa ous5c oust4 ou2ta out3h out1j ou2t3o out1r out5sp out5ste ouw3a ouw5do ouw5ins o2v 2o3va o5ve. 2o5vee 3o4verg over5sp over5ste o5ves 2ovi ovi5so 4ovl 4o3vo 4ovr ovu3 4ow o1wa o1we o5wen ow3h o1wi ow2n o3wo ow3r o4x oys4 ozet5 ^^f63l ^^f61p ^^f6pe1 ^^f64r ^^f6s4 ^^f6s5t ^^f65su 4p. 4paan paar5du paar5tj 5paas 3pab p3acc 2pach pacht5s p4aci 5pacu 3pad. pa4da 4padv pa3e 4p3afd 1pag pag2a pa4gen pa3gh p4a5gi 3pak pa2k3a 4p4ake pa4ki pa4k5l 2p3alb 3pale pal3f pa3li paling5s palle4 palm5ac pal4mo pa4m pa3na pa4n3a4d 5panee 5panel 4pank pan5sp pan4tr 1pap pa4pe4t 5papi pap3l pa3po pa3pr 4par. 3pa3ra p3arb pard4 par3da 3park par4ka par4k5l 3parl 4parm pa5ro 4parr par5ta 3parti part3j 3partn pa5ru paru5r 1pa4s3 pa5sa pas5c pa5se pa5so pas4th pas5to pas5tr pa5te 1path p3atl 3pa3tr pats5te. 2paut 5pauz pa4vl 5paz 2pb4 2p1c 2p3d2 pe4al 4peci p3e2co 3pectu 1ped pe3de pe3do p4ee4 3pee. 3pee^^eb pee5li 4peen 5pees 3peg 1p4eil pei4l3a 4peis pek5ee pe2k3l pe2k3n pek5s p4el pe3l4aa pe4l3ak pel5dr pe3le pe4l3ee pe4l3e4t pe3l4i pe3l4or pel5si pel3so pel3sp 2p3emm pe3na pe4nak pe4nap pe4nau pe4naz p3ency pen5d4r penge5 pen5k 5penn pen3sa pen5sl pen3sm pen5sp pent4 pen5to 2p3epi pep3o pep5s p4er. pe1ra pera3s4 per4at 3perc pe4r5eg pe5req 1peri peri3s per1o pe3ron pe5ros 3pers per4sm per5sti per4str p2ert 3pes pe3sa 3pet. pe5ta 5pe5ter 3peti pe4t3ra pets5te petu5 3peuk 5peut 1p^^e9 3p^^ea 2p1f 2p1g pge5s 2p1h4 4p3ha 3p4hec p4his 4pho pi3am pi5an pi4at 2pid piek5la 5piep pie4r3o pie4s3p pie4tj pi2g5a pi3gl 3pij. pij3k pij5ke pij4li 3pijn 5pijp pij4p3a 2pijz pi4k3l pilo5g pi5nam 2pind 3pinda 3p4ing 5ping. pin4ga pin5gri 4p3inj pink3r pink5s 4pinr 2pins pin4ta pi5o pis5n pis5ta pi3th pit3j pit3r pit4sp 2p1ja pjes5 p3ji p1jo 2p1k pkaart5j p2l2 p3la. plaat5j 2p3lad pla3di 4p3lamp 4p3lang p4lant p3lap 1p4las 3p4lat pla4t3r 5p4lay p4lec plee5tj p3leid 3p4len p3lep pleu5ro p4lex 2p3lig 4plij p4lom p3lone p5lood plooi5tj p3loon p3luie 2p1m pmans5t 2p1n p3na 3pneum 3po. poda5 3poei poe2s3 poes5t poets5te. 3poez 3po^^eb p2ofa 3pogi po5gr po2k3i2 po4kol 1pol po5l4o polo3p pol4s pols5te. 1pom 2p3oml 3ponds pon4sm pon4st pons5te. pon5ta 5pony poo3d poo5de 4poog. 3pool poo5len 4poor. poor4tj poot3 po4p3a 4popd 2pope pop5h 2p3org 2p3ork po3ro p4ort 5portef por4to por4t5ra po3ru 1pos po1sa po3sf po4taa po4t3as po5te potes5t pot1j pot3r 3poul po3v 4p3p p5pa p5pe ppe4l3o ppe5ni pper5ste ppie5k ppij5p p4ps pr4 p2ra 3pra. p5raad praat5j p5rad 3prakt 4pram p5rand 3prao 4p3rap p4rat p4rax 4preeku 1prem p3remm 3prent pren4t5j 3pres p3reso 3pret pre4t3j pret3r 4pric 4p3riek 4priet prie4t5j 1prij 3prik 3princ pring5s4 5prins 3p4rio 3p4riu 5priv 5p4rob 3p2roc 1p2rod p3roed 3proef proet5j 3proev 5p4rof 5p2rog 1proj pro3la 3prom p3rood prooi5 pro5pa p4roq 3pros pro5sc pro4s5t pro3t4a 3proto 3pro5v 4proy pru2t prut3o4 2ps p3sab ps3a2g p3sak ps3ar ps3ass 4pse ps3erk p4s3et p3si p4s3i2d p4sin p5sis p1sl ps3le ps2me ps5mi p4s3na ps3neu p4sof p3sol ps3opt pso4r p1sp ps2pl ps3ple p1s4t p3stat p3ste ps5tent ps5tes ps5th ps3tor ps5tron p3stu ps5ty 3psy 5psyc p3sys 4p1t pt3ad pt3alb p3te p2t1h p5ti pt3j p4t3o4v p3tr pt3ric 1p2u 3pub pu3ch pu3e puil3o pul4st 3pun 4pun. punt3j 3put. puter5in put1j pu2t3o put3r put4st puts5te. 2pv pvan4 pvari5 2p1w 1py1 2p5z 1q 5qe qu4 que4s 5quo 4r. r2aa 2raan 4raand 3raar 5raar. 4r3aard 5raars raar5tj 2rac ra4ca ra3ce 5racl rad4a 3radb ra5den ra3di 5radia 3radio 4radm 4r3adr 3rad3s 4radv 2rafd r4aff raf5ond ra3fra 3ragez ra5gi ra3g2n ra5go rag4s 3rais raket3 ra3k4l rak5r 4r3a2la ra4l3ee 4r3alf r3a4lim r3alt ra4man r5ameu ra3mi r2amp 4rana ran4dr ran4g3o ran4gr r5angst. ra4nim 4ranj ran4kl rank3w ran4sa ran4st ran4t3j r3antw ra3o 4rap. ra3po 4rappa rap5roe ra3q 2r3arb r4a5re 4rarit 2r1arm 4r3arr 2r1art ra5sei ra4sk ra4sl ra1so ra2sp ras3po rast5ri r4ati rat5j ra4tom ra4tra ra5tri rat3sp rat4st rats5te. ra3t4u 2rau 3raus r1aut 5ravr ra4zij rbe4ti r1c r3ce rces3 r3chi r3co 2r1d r4d3act rd3alk rda2m rd5ama r3dan r2d3ar rd3ei r4d5e4las rden5dr rde5o4 r4derva rde5s4t rdi3a rdi5o rd5l r3do r5doc r4d3ol rd5olie rd3ont rd3oos rdo3pe rdo3v rd3ras rd3res rd5roos rd2ru rd3sa rd3s4c rd3so rd1sp rds4t rd5sta rd5ste rd3su r3du rd2wi rd5wo 3re. 1reac re4ade 4reak re3amb 4re5at re3co 3recr rec5ta 3reda 3redd rede4s3 4re4diti 3redu re5dw ree4k 2r1een ree3n4e r5eenh ree2p reeps5 ree5r4ad 4reers reer5ste r3eerw ree4s ree5sh r4ef 4refb 2reff 3refl re3fu 1reg 4reg. 4regd rege5ne rege4s 4regg 3regi re3gl 4regt 4reie 4reil 4reind rei5tj 5reiz re4kap 5rekeni re2k3l re2k5n re4ko re4k3re rek3sp re4ku re1kw rel4di rel4d3o reld3r re4l3ei rel5k re4lu4r 3rem. re4mai remie5tj re5mo5v 2remp 3r4en. re2na re4naa ren5aar re5nade re3nal re4n3an ren3a4r r4end 5rendee r5endert re5ne. re4nel re5nen. ren5enk ren3e4p re5ner. ren5erf ren5erv 5renf 2r1eni 5r4enkl r4enn re4noc ren4og ren4opl re3nov 5r4enp 4renq ren4sl r4ento r3entw r5enveer re4of re4op4 re5pa 3repet re4pie 4req re3qua 4r1erf 2r1erg re3r2o rer4s 2r3ert 4r5erv 2rerw re3sa re5se re4sl res5le res3m re2s1p res3t re4tem re3t4h ret4i re4tik re5tin 2retn re4t3o4g re4t3oo rets5te. re2u reur5es reus4t reu5ste 3revis 3revo 2r3ex r4f3aa rf3act r2f3a4g rf3al r3fas r3fe r4f3eng r1fl r4f3lag rf3lev r2f3li rf3lus r4f3op r1fr r4f3re r5frea rf2s2 rf3sm rf3sp r4f3u4r rf3uu r1g r4g3ab rg3amb r4g3een rg3ei rg4eis rgel5dr r5gen. rge4ra rge5rap r4g3ins r5glas r3glo r4g3lu rg4o3v r5grij rg3rit r3g4ro rg1s4 rg2sm rg5so rg4s5pr r3h ri5abel ri4ag ri2ak ri5an rias4 ri4av ri4bl 4rice ri3co ridde4 ri3di ri4dol ri4doo rie5dr rie4k5ap rie5kl rie3kw rie4la riel5aa rie4lei rie4ro rie4ta riet3o ri1eu ri3fl ri3fr r4ig ri4gaa ri3gl 5rigste r4ijl 4r5ijl. r5ijld r5ijlt rij5o rij3pl rij3pr rij3sp rij5ster rij4str 4rijv ri4k5l rik5n ri3k4o ril5m ri3ma rim4pr 4r3inb 4rind ri5ne 4r5inf r4ing 4r5ingan r5ingeni ring5l 4r3inh ri4nit rin4k3l r3inko 4rinkt r3inl 4r3inna 4r1inr 4rins r3inst 4rint 4r1inv ri5on ri3o5s ri4sam ri3sc ri3sot ris5to rit3j rit3ov rit4st rits5te. rit5sten 3ritt r5j4 rjaars5 r5ka. rkaart5j rk3adr rk3af r2kah rk3ang r4k3art r2k3ei rke4n rken4s rker4sl r4k3erv rke4s rke5stree rke5strer rk5iep rk3ijv rk3inb r4k3ink rkjes5 rk3lag r4k3lat rk5leid r2klo rk3loo rk3lus r3kn r4kne r2kob rk3olm rk3omg rkoot5 rk3opg rk3ord rk5os. rk5oss rk2r r5k4ran rk4ri r5kris r5kron rk1s rk3s4f rk5si rks4p rk4t5e4v rkt3h rk4ti rkt3o rkt1r rk3uit r1kwa rk3waa rk5wat rk3wee r1kwi rk3win r3l rlaat5ste rle4g3r rlink4s rlinks5te rlofs5 rlui5t4 r1m rmaf4r r4m3art r2m3eb r2m5eg rme4r3a4 rmes3 rme4t3j rmet5st rm3inh rmi2s r3mo r5moe r4mop rm3opm rmors5te rmos5f rm3s4a rm1st rm3uit rmun4 2r1n r3na r5n4am r4n3ap rn3ars rnee5t r4n3ene rnes3 rne5te rne4t3j r2n5id r2nin r2n1on rn3oor r5noot rn3ops r5not rn3ove rns4 rn3sm rn3sp rn1st rn3sta rn3th rn5tj rn5to r3nu rnu5r ro1a ro5ac r4oc ro1ch ro3d4o 3roe. 4roef 4roeg roe4g3r 3roem roens4 roen5sm roep3l roe4rei roet4j 4roev 3ro^^eb r5offi r4ofi ro3fl roges5 1ro^^ef ro3kl 3rokm rok3sp r4ol. ro2l3a role5st rol3g2 2roli rol3ov ro5ma ro3mo 4romz r2on. ron3a4d 5r4onal ron4da ron4d3o ron4d3r ron4d5u r2one r2oni r2onk ron4ka r2onn r2o1no r2ons ron4ste rons5te. 4ron2t ront3j ront3r ro3nu 4ronv 3roof 2roog 4roon 2r1oor root5ste ro3pa ro4paa ro4pan 4ropb ro1pe ro5pee ro4pin ro3p4la 4ropn r4opo rop5rak rop3sh r4opte ro4pu ror5d ro3ro ro3sa ro5se ro3sf ro3sh r4o5si ro3sp ros4s5t ro5stel ros5tra ro5te ro3t2h rot3j ro5ton ro3tr rot4ste rots5te. r1oud 3rou5t4 ro3v ro4ve ro5veri 4roxi 3roy r1p r3pa rp3aan rp3adv rp3ank r5pee rp3eis rpi3s r2p3j rp4lo rp5lod rpoort5j r4p3o4v r4p3rec rp3ric rp4ro r3psa rp4si rp2sl rp3sli rp5spe rp4s5to 2r5r rre4l3u rren5s4 rre5o rreu2 rri5er. rrie4t rron5k rrot4j 4rs rs3a2d rs3a2g r3sal rs3alm rs3amb r3san rs3ana rs3ap rs3ar rs3as rs4asse rsa4te r5schi rs2cr r4s3eis rsek5ste rs4et rseve3 r2s3ez rs4fer rs4hal r3s2hi r3s4hoc rs3hot rs3ini rs3int r4sj4 r5sjac r5sjou r5sjt r3s4kat r1sl r4slan r5slec r5slep r5sleu r5slib rs4lie r5sling rs3lob rs5loep r4s3loo r5sluis rs4m r5smaak rs5maal rs5mak r3sme r3smij rs5mis r5smit rs5mu r1sn r2s3na rs3neu r2s3no r1so r5sol rs3ong r2sor rsorkes5 rs1ov r1sp r3spaa rs3pad r4s3par rs4pare r3spe r5spec r5spee r5spek rs4pene r4s3pet r5spit r5spoe r5spog r5spon r5spoo rs3pot r5spraa r4spu r5spul rs3put r1s4t r4s5taak rst5aang rs5tas r5stat r3ste r4s3te. r5ster. r5sterk rs5term r5sters r5stes rste5st r4steva r3sti r4stit r3sto rs5toma r4ston rst5ora r3str rs5trap r4st5red rs5trei r5stren rs5trog rst5roz r3sty r3su rs3usa r3sy 4rt r1ta r5ta. r4t3aan rt5aand rt5aanv r4t1ac rt1ad rt3af. rt3aff rt3am r5tans r2tar rt3art r4tau r2tav rt5c r5teco rt3eig rt3eil rte4lei rt5emb r5ten. rte5nach rte3no rte3ro rtes4 rte5sta r2t5e2v r4tha rt1he r3ther rt3hi r1tho rt3hol rt3hu rt3hy rt4ij rtij3k r4t3ini r4t3ink rt5jesc r3to rt3off r5tofo r5tok rt3om. rt3ond r4t3op r5tori r1tr r3tra rt4rap r4t3ras rt3rec r5treden. r3t4rek r4t3res rt3ri r4t3rol r2t4ru rt5ruk rt5rus rt4s5eco rt5sei rt2s3l rt3sle rts5li rt4slu rts5m rts5no rt4soo rt1sp rt4s3pr rts5ten r1tu rt3ui4t rt3w rt2wi 5rubr rude3r ru1e 4ruf ru2g ru4gr r5uitr ru2k 4ru3ke ruk3i rul3aa rul3ap ru2li ru4l3ij ru3lin rul5s r2um ru2mi 3run. r2und runet3 4r5u2ni ru3niv ru4r ru5ra ru5re. ru5res r2u4s rus3e rus5tr 4rut rut3j rut4st ruts5te. 4ruu ru3wa rvaat5 rval4st rvals5te. rvers5te. rves4 rve3sp rvloot5 r1w rwen4st rwens5te. r4wh rw2t3j r3x r3yu 4rz rzet5st 4s. 5sa. s1aa 1saag 5s2aai saai4s 3s2aal 3s4aat 1sab sa3bo 2s1ac sa2ca 3sacr s1adv 2s1af 3safe 3safo sa3fr s5agg s4a3gi 3sagn sa3go 3sah 3sai 3saj 2sak 3saks s1akt s2al 5sal. 3sa3la 3sald 5salh s3all 4salm sal5ma s3aln 3s4a3lo 3s2ame 5samm sam5p 4sa2na sa3nat s4anc s2a3ne s4ant san4t3j sa2p 3sap. sa3pa 2s3ape sa4pr sa5pro sa3ra s1arb 3sard sa2re s1arm saro4 sar3ol s4ars 4s1art sart5se 4sas. 3sasa sa3sc 3s4ast 1sat 3sa3te 5sati 2s3atl 2s1att s3aud 1saur 3s2aus s1aut 3sauz 1sax 4s3b s5ba s5be s5bo 1sc 2sca 4sce 5scena 5sc^^e8 3s4ch2 4sch. sch4a 5schak 5schap 4schau 5sche. s5chec 4schef 5schen 4scheq 5scher 5schev 5schew s2chi 4schir 5schol 5schoo 5schot sch5ta 2sci 4scl 2sco 3s4cola 3scoo 3scope 5scopi 3s4co5re 3scout 2scr 4scris 2scu 2scy 4s1d s5de s4dh sdi5a sdis5 s3do s5dr s3dw 3se 5se. se2a se3ak se3al sear4 se3au s4eb 4s3ech se3cr 5sect 4secz s4ee 4s5eed 5seei 4s1een s5eenh see4t see5ts 4seev s1eff se3ge 2s5e2go seg2r 4s3ei. 4s3eig s4ein 5sein. 5seine 2seis seis4t sei5tj 5seiz sek4st seks5ten se1kw s2el 5s4el. sel3ad se4l3a4g se4lak se4las se3le 4s3e4lek sel3el 4se4lem 4self se5ling 4s3elit sel5k 5selm selo4 5selp 5s4els sel3sp 5selt se2l3u s4em se4m3ac s5emm sem3oo s4en 5sen. se4n3a4g se5nan se4net 5sengr 5senh sen5k se4n3o 4s5enq sen5tw 5s4er. se1r4a ser5au 5se3r4e se4ree se5ren s4erg 5sergl s5ergo 5sergr ser4i se5rij 4s3ern se3ro se5rop ser2s sers3p ser3st sert5w se3ru s4es se5sc se3sf 2s5esk 5sess se4t se5ta 4s3ete se5ti se3tj set3r se5t4ra set5st 4s5etu set3w se3um se4ven 4s1ex 4sez se2ze 3s^^e9 3s^^e8 2s1f 4sfed s5fei 4sfi 4s5fr 4sfu sfu5m 4s5g sgue4 s1h s4ha. sha4g s5hal. 3shamp 4she sheid4 sheids5 s5hie 5s4hir sh3l 4shm s3hoe s3hoo 3s4hop s2hot s3hote 3show s5hul 1si 5si. 5s4ia si5ac si3am si5an 5sic sici4 si3co 3sie. 3sie^^eb sie5fr sie5kl siep4 sies4 sie5sl sie3so sie3st sie5ta sie5to si5^^e8 si1f4 5s2ig si5go5 s3ijv 4s1ijz 5sile 4s5imper 3simu 5sina s3inb 4s3inc 4s1ind 2sinf sing4 3sing. s3inga s5ingeni sin3gl s3in5gr s3inh 4si2ni 4s3inko sin5kr 4s3inm s4inn 4sinr 2s1ins 2sint 4s5inv 4s3inz 3sir 5siro s3irr si4s sis3e4 sis5ee sis3i sis5tr 3sit si5to sito5v si3tr si4tru si5tu 3siu 3siz sj2 4sj. 3s4ja. 5sjab 4sj3d s1je 2s3je. s5jeb 3sjee 3s2jei 1sjer sje4ri s3jes 3sjew 3s4jez 4sj5k4 5sjof 4s3jon sj3s2 sjt4 s5ju 2s1k2 skaart5j s5kad s4kele s5ken 3s2kes sk4i 3s2ki. 3skied skie3s 3ski^^eb ski5sc s2k3j s3ko s5kre sk5ruim sk3ste 4sku s3k4w s2l4 3s4la. 5s4laan 5slaap 4s5laar 4slab s4lac 4s3lad 3s4lag 5slagm sla4me s5lamp. s5lampe 4s5land 3slang 3slap 5slape sla3pl 4s3las 2s3lat 3s4la5v 4slaw 3s4laz s3led 3s4lee. 5sleep 4s5leer s4leet slee5tj 4s3leg 2s5lei s5leng s3leni slen4st slens5te. 3slent s4lep 4s5ler s5les sle4t3j 3s4leu s5leug s5leus 5sleut 2s5lev s3li. 4s3lic 4slid 2slie s5lied s3lief 3s4lier s3lif s5lig 4s3lijf 5slijp 4s5lijs s4li4k sli2m slim5a s5lini 4slinn s4lip 4s3lit slo4b5 2s3loc 3s4loe 3slof 4s3log s3lol s3lood s5loon s5loos 5s4loot3 s3los 3slot slo4tr 4s3lou 4s5loz 4s5luc 1s4lui 4s5lui. 4sluid 5sluis. sluis4t slui5ste 5sluit 5sluiz 4slun 2s5lus 4s3ly s1m 4s5maat 3smad 3smak. 3smal 2s5man s5map s4mart 4s5mat 4s5mec 5smeden 3smeed 5s4meet 4s5mei 4smelo 4s5men 4s5mes3 5smid. smie2 smies5 s4mij s5min 5smok s3mon 5smuilden s5muile 5smuilt s2n4 s5nam 5s4nap s4nar 3snau 3s4nav 3s4ned 3snee snee5t s5neg 5s4nel 2s5nes 4s5net sneus4 sneu5st s5neuz s3nie 1s4nij s5nim 3s4nip 4s5niv 4snod 3s4noe s3nog 2snoo s4nor. s3norm sno5v 3snuf s4nui 2snum 3so. so4bl so1c s3oce 3s4o3d 1soe 2soef 3soep soes3 2s1off 3soft 2so2g 3so3ga s1oge so3gl 3sogy 5soi 3so^^ef 3sok s2ol 5sol. so3la so3le so3lis 3so5l4o3 solo5v 5sols s2om 3s4om. 5somm 2s3oms s3omv 2somz 5s4on. 3sona so5nar s3onb 2s1ond 2song 3sonn 3so3no s4ons 2s1on4t3 4s3onv s3onw 3soo 4s5oog 4s3ook 4s3oor. s3oord 4s3oorl 5soort 2s1op 3s4op. 4s5ope so3phi s2o5po so3pr 3s4opra sop4re s2orb s3ord 2s1or3g 4s5ork sor4o so3ror sor4st 3s2ort sos4 so3sf s4ot s3oud sou2l sou3t 2sov s1ove 3so5z 4sp. sp4a 5spaak s3paal 5spaan 5spaat 2spad 2spak 5spake s4pan 3spann 4s5pap 5spar. s4pari 5sparr 2spas5 5spatt s3pau 5s4pea 4spectu 3s4pee speet3 4s3pei s4pek 5spell 4s3pen s5pen. spe4na s5pep 4sper s4per. s5peri s4perm 5s4perr 4spes s3pez s3pid 1s4pie spie5tj 4spijn 4spijp s5ping 5s2pio s3pis spi5sto 2s1p4l 4s5pla s4plet s2pli4 5splin 3split s3plo s3plu sp4o s2poe s3poes 4spo^^eb 4spog 4spol 2s3pom s4pon. s4ponn s2poo s3pop 5s4pore s4pori 4s3pos 5spots 4spou 4sprakt 5spray s5pred 5sprei s4prek 4sprem 4spres 5spreu 5spriet 4s5prij 4sprik 4sprob 4sproc 4s5prod 4sprof 4sprog 5s4pron s4proo 4spros 4s3ps 4spt s2p4u 4spub 5s4pui 4spun s4pur 5spuw s4q 4s5r sraads5l sro5v 4s3s4 ssa1s2 s4sco s4s5cu s5se ssei3s sseo4 s5si s5sl s4spa s5spaa ss5pas s5su s5sy s2t 4st. 5staaf 5staan. 4staang 4staanw staart5j s4taat staat5j st3abo 2s4t1ac 3stad 5stads 2staf 5staf. sta4fo s4tag s4tak 5staki 4stakk st3akt 4s3tali 5stam. 5stamm 3stamp 3s4tand stan4s s4tap 4stapo s4t3arc 4stari 2stas stasie4 5statio 4stau st3aut s4tav 4stavo 4s5tax 4staz 2stb 2st5c 2std 4stea 5steak 4stec s5tech 5steco 3s4ted 4stedu 3steek 3steen 4steenh s5teer stee5t 5stein 5stekar 5stekk 5steldh ste4lee st5elem 3stell 5stem. 5stemd 5stemm 4stemo 4stent 4stenu ste5ran 4sterm ster5og st5e4ros 5sterren s5teru 4ste4s 4s4t3ex s4t3e2z 2stf 4stg 4sth s4tha st3hed st5heer st3hek s5them s3ther st1hi s4t1ho s4t1hu s4t3hy 2stia 2stib 4sticu s4t3id 5stiefe s5tiev 4stijd 3s4tijg 5s4tijl st3ijs 3stils s4tim st3imp sti5ni 4stins 4s5tint 4stite 2stiv st3ivo 4s4t1j 2stk 4stl 2stm 2stn 2stob 2stoc 4stoef 3stoel 5stoel. 5stoele 4stoen 4stoer 4stoes 4stoez 3s4tof st3o4ge 5s4tok s4tol sto5li 4stoma 4stomz s4tong 3s4too 4st3oog stoot5j s4top st3o5pe st5opto 4stora sto4rat 4stord sto5ri 4s5tos s4tov 2stp 1s4tr 4stra. straat5j 4st4rad 3stra4f 5straf. s5trag 4strai 4st3rec s5tref 4streg 4s3trei 5strel 3strep st3rif st5rijp s5tris 4s3troe s5troep st4rom 5strook 5stroom 4stroos st5roos. 4s5trou 4stroz 3stru 4strui. 5struik 4st1s4 st3sc st5se st3sf st3sk st3sl st3so st5sp st5st 2st5t2 1stu 4stub 4stuc 5s4tud 4stuin stui5tj st5uitk 5stuk 2s4tun st3uni stu4nie 4stus 2stv 2st3w 2s4ty 1styl s5typ 2stz 1su 5su. 5sua 5su4b1 suba4 sub5e su5bl 5suc 5sud 3sug 2sui 5suik 4s1uit 5suit. s5uitl 5suits. 5suk 3sul 5sum 4s1u2n 5sup 5surv su4s sus3e suur5 4s5v svaat5 svari5 sve4r sve5ri 4s1w s5wo s4y 3sy. 4syc 3syn sy4n3e 1sys5 4s5z 4t. 3taak. t4aal t5aando t3aank taan4st t3aanw t3aap taar5sp 4t3aas taat4st taats5ta 3tabe 3tabl 2tac ta2ca 3t4aci 4tad ta4de t3ader 5tado t3adr tad4s3 t3adve 2taf. 2t3afd 5ta3fe 4taff t3afha t4afr ta3fro 4t1afs 2t3afw 4tafz ta4gaa 5tagee 5ta5g4l tag3r 5taka 5takg 5takken ta3kl 5takn 5takp 5tak3r 5taks t2al ta3laa ta5lact 4talb 5tale. 5talent ta3li 5talig t5allia talm3a 4talt ta4mak 4tamb t3amba 5tamen tament5j 4tamp t3ampu 5tan. 4t3a2na ta3nag ta3nat tan4d3r tan4k5r ta3o t4ape 5tapi ta3pl 5tapo ta3q ta3ra 4t3arb 5tari 4t1arm ta2ro4 tar5sp tar5taa t3arti 3tarw 3tas 5tasa 5tasj 5taso ta3s2p ta3sta ta3str ta3sy 4tata 4tatio tat5j 4t3atl 3tatr 3tau 4taut 2t1avo 3tax t3a2z 4t3b tba2l 4t3c t4ch t5cha t5che t5chi t5chu 4t3d2 tdor5st tdo3v 1te 3tea te3akt 5tea4m 3tec 4t3echt 4teco te4dit t3edu tee2 teeds5te. tee4g 4teek tee4k3l teem1 4tee4n t5eenhe 3teer tee5rin tee4t 4t3eeu t4ef t5eff 3tefl 3teh 4t3eier 4teig tei4lo t4ein t5eind 5teit tei5tj 2t3eiw 5tekene 5tekens 4teker 4tekk 3teko te4k3om 3teks te3kw te4k3wi t4el tel5ant te4lap tel5da 4telec 5teleco t5elect tel5een 5telef 5teleg tel5ei. tel5eie tel5eit te5lel 5telev 5te5lex tel3f tel5k te4loe te4l3o4g tel5oog te4l3op telo4r tels4 4telse tel3so tel5su te4l3uu t4em 2temb 4temm te4mor tem3ov 5temper 5tempo t4en ten4ach ten3a4g te3nak te5nare te4nau tene2 ten3ed ten3el tene4t 3tenh ten5k4 te5nore 4t5enq ten5scr ten3sn ten3sp tensu4 tens5uu 3tent 5tenta 5tenten. ten5to t3entw 5tenu t2er teraads5 te4r5aak ter3a4b tera5ca te4rad tera4de te4r5af ter3ag te3ral te4ran ter3ap ter3as 5terec te4rei ter5eik te4rel te4rem te5ren. te4r5enk te4r5env 4t4erf. 4terfd ter3fr 4t4erft te4r5in. 3terj 4terk. 4terkt ter3k4w 3term 5term. 5termi ter5oc te3rod te3rof te3rog 5teron te5rons tero5pe tero4r te3ros 5terrei 5terreu 5terror ter4spr ter5ste. ter5ston 3tes te3s4ap tes3m te3so tes3ta te5stel tes5ten test5op test5ri test3u te3ta te5tr 4t3euv t4ev t5e4van teve4r 5tevl 3tevr 2tex 3tex. 4t3exe 4texp 1t^^e9 t^^e83 4t3f 4t3g2 tgaat5 t5ge tge3la tger4 4th. 2t1ha t3haa t4haan t4had t3hak t5ham t4hans t3har t3hav 5thea t3heb 5thee. 4t3hei 4t3hel 3t2hen 5theo 1t2her 5the3ra 4t3here 3thes 3thet t4hin 4thm t1hoe t2hog t3hok t1hoo thoof5di 4t1hou t3houd 5thous 4t3hov 3thr 2thu t1hul 4thum t4hur 3ti 5ti. 5tia ti5ab ti5ae ti3ap 5tib 5tica 5tice 5tici 5ticu ti3d4 5tie. tie5d4 5tiefs tie3kn tie4kon ti3enc tien5st 5tiep 5ties tie5s4l tie5ta tie5to tie5tw ti1eu 5tieven ti3fe ti3fr ti2ga tig5aa 4tigm ti4gu4 tig3ur 5tijd tije4 tij5ka tij4kl 5tijn tij5p t3ijs. tij3st tij3t2 tij5tr tij5tw 4t1ijz ti3ko ti5kr t4il 4tils 5timm 5timo tina4d tin3as 4t3incu 4t1ind 4tinf tin4g3i ting4sa t3inh ti4nit 4t3inj t3inko 4t3inl t3inq 4tinr 4t3ins ti3nu 4t3inv 4tinw ti5om ti3o4p5 t2is ti5sa ti3s4j ti3sl ti3so ti4son ti3s4p ti3sta 5tite ti3th ti1t2r 5tivi ti4vo 1tj2 2t1ja t5jaa t5jee t5jek t3jen t5jet 4tjeu 2tjo t1jou 2tju 4t3k2 tkars3 4t3l t5le. 5tleb t5les tli4n 4t3m tmen4st tmens5te tmos5 4t3n tna4m3o tne4r tnes4 5to. toa2 to3ac to3ar to5bl 3toc 1toch 3tod to3da t4oe toe5d4 3toej toe5k 5toe3l4a toe5le 5toelic toemaat5 5toen to5ende toe5pl 3toer 5toeri 5toern 5toe1s4 toe5st toe3tj 3toets 5toets. 5toetse toets5te. 3toev 5toez to2f tof5ar tof5d to4fr tof3th 3togn 5togr 3toi to4kan tok3s t2ol to3la 5tolaa to5le 5tolet t3olf 2toli 5tolic to4lie tolk5s 5tolo tolp3r t3oly 4tom. 5tomaa tomaat5 t3oml to3mo tom4p3j 4t3om5s 5ton. 4tond 3t2one 5tonee 5to5nen to5ner 3t4ong 5tong. 3t4oni 5t4onn to3no 5tons ton3sk too4m toom3e 5toon t4op. top5art top3as to3pen to3pet to3pi 2topm to4po to5pos t4opp to4pu to5pus t3opva 5tor. to3ra to4r3ag t3ord to5rec 5torens 4t1org t5orga t4ori 3toria to4ri^^eb tor3k tor4m3a toro4 to4r5oli to3rom 5torr 3tors tors5te. to3r2u 3tos4 to3sa to1sl to1s2p tos5te 5tota to3tr 2t3oud 3tour tou4r3e to3v tove5na to4vens 4toverg to3w4 4t3p4 tpe4t3 tpi3s tr4 3tra. 4t3raad 5trac^^e9 5trafo. 3trag 4tragez 3t4rai 5train 5traka t3rake 3trakt 3trans 5transa 5trap. 5trau 4t3raz 3t4re. 4trea 2trec 5tred. 4treda t5redes 4tredu 3tref 4t5reg 4t3reis 4treiz 4trel t3rese t3resu tre2t3 t4reu t3rib. 5tribu 5trico trie5ta trig2 2trij 5t4ril tri5ni 5t4rio4 t3risi t3rit. 5t4riti 5trody t3roed t3roes 5trofy 3trog t4ro^^ef 5troj 4trol. 5trola 5trolo 5tromm 5tron. 5trona t5rond 3trone 5tronn 5trono 5trons tront5j t3rood 5troon t4roos tro5pi t4ros 5trotu 3trou 4t5rout tro5v 5truc. 5truf 4trug 5trui. 5truie t3ruim trui5t4 t3ruk t4rum 4ts ts3a2d tsa4g ts1am t3sap ts3as tse4d ts5een t4s3ei ts5eind t4s5ene t4s3eng t4s3erg ts5erge t4s3e2v t2sij t4s3ink ts3int ts2j ts3ja t3sjen 3tsji t1sl ts4laa t3slac t5slag. ts3lam t2s3le t5slib t5sloe t3s4lu ts2me ts4moe ts3neu ts4no ts5nor ts5not ts3nu ts3ob tso2l ts3oli ts3om ts1on ts4opp ts1o4r ts1ov ts3pad t3span t5spec t4s3pet t3spi t4s3pil t3spoe t3spoo t5s4por ts3pot t4spro ts4pru ts5q ts5s t3sta t4staak t4s5tank ts5tant t4star t4stas t3ste t5sted t5stee ts5teko t5stell t5stels t5stem t5ster. t4sterr t5sters t5s4tes. t5steu ts3th t1s4ti t3stij t5stijg t5stil ts5tin ts5t4j t1sto ts5toep ts5tong t4store ts5trad ts5trei t3stri ts5troe ts5ty t4su4 ts3ur ts3us ts3uu t1sy 4t3t t5t4a t5te tte5loe tte5l4op tte2n tten4t5j tte5ri t5tlet tt3oog ttop2 t5t4r t5tum tt3uu 3tua 3tub 3tuch 3tu3e 5tueu tu3^^e9s 3tuig 5tuin 4tuip 2tuit tuit4j 4tuk tu4k3i tul5pi t4um 5tune 5tunn tu1o 5turb tu3ri 3tu4s3 tut3j tuurs5la tu3wa 4tv tvaat5 t3ve 4t1w 3t4wijf t2win 1ty1 3typ tys4 4tz t3za t3zi t5zw u1a u3ac u3an ua5ne ua3p u5ar. uar5t ua3sa uat4 2u2b ub3ac ube4li ub5em u5bi u3bo ub5or 4uc u1che ucht5sl uc4ki ucle3 uc4t3a uc4tin u1d uda2 u5da. ud5am ud3ei ud3ess u4de4z ud3eze udi4o udi5ologe udi3om udoe2 ud3ond ud3oo ud3ov u4d1r uds5lo uds4m uds5ma ud3sme ud3smi ud1st ud4sta uds5tak ud4sti ud1w u3ec ue2co u1ee4 u3ef u3ei u1el u4ene u1er uer3il ue3st u1eu u5eul u3ez u3^^e8 u4f3an u1fl u1f4r uf2s u5ga ug4da2 ug4der ug2do ug4dr uge4l5o ug3ij ug1l u2go ug3or u2g1r ug5sce ug4sec ugs4p ugs5pa ug1s4t ugs5tra u1h u2i ui5ac ui2d3a ui2d1o uid4s uid3sp uid5spre uid5ste. uid3u ui3e uien4t ui2fa uif1l uif5r ui2fu 4uig ui4g5aa uig1l ui2g3o ui4g3r ui4gu 4uik ui2k3a ui4k3l ui2ko ui2ku ui2la uil5aa ui4l3em uil5m ui4l3og ui4loo uil3ov 4uim ui2m3a ui3mag ui4n1a uin5g ui2no uin5og uin3or uin4s5lo uin5to ui2p3l ui4p3o4 ui2p3r 4uis ui2s3a uis5c ui4sl ui5slu uis5p ui4st ui4t3a4 uit5aa uit5al ui5tar 1uitg uit1j 3uitl ui2t1o 1uit5r uit3sl uit3sn uit5sp uits5te. 3uitw 3uitz ui3v 4u3j 2uk u2k3al uk3as ukkers5 u2k3l u3klas u2k3n u2k3o u3koc uko2p uk4o3pl u4k3r uk3s2m uk3spa uk3spl uk4sti uk1w u1la ul3ac ulam4 ula4p ul4d3a uld5erk ul5dop ul4d3u u1le ule5sp ul3fl ul5fo ul3fr ul3in. u5ling ul3inn ul3k2a ul5ke ul2k3l u1lo ul3o2p u3los ul2pa ulp3ac ul4pi ul2p3l ul2po ul4p3r ul3sa ul3so ul2s3p uls5te. uls5tel u3lu um3af um3ar 3umda 2ume umee4 umes4 ume3st um3om um3op um3so um3st u2m3ui un3ac un2c unch3r un4dra und4s unds5ta und5ste une4t un3g 1univ un4k3r un4o uno3g un5o2p unst3a un4ste. unst3o un4st5r unst5ui un4tag unt5een un2tj un4t5o4 unt3s4m un4t3u u3ol u3on u3oo u1or uo3ru u3os uota3 4up u1pa u1pe upe3k upe4ro uper5st u3ph u3pi u1pl u4p3lei u1po u3pol up3om up3op u1pr up4tr u1ra ur3aan ur1ac ur3ada ur3adv u2r3a4r uras3 u4r3a2z urd4o u1r2e ur3ech ur3een uree5s ure5lu urelu5r u4rem ur3emb ure4n u3res ur3ess ure3st ur3eta 4urf ur2fa ur3gi u1ri uri4gl ur3ijz ur3ind ur3int 4urk urken5s ur4kie ur3k4l urk4s5t u1ro ur5opb ur3or uro5s ur5pr ur4serv ur4s3ev ur3s4fe ur2sl urs5laa urs5li ur4s5m ur2sn ur4sp urs5pa ur5spel ur5spor urs5take urs5th ur4sti urs5tik ur3ta ur4tro ur5troe u3ru ur3ui 4urv u1r4y 4usaa us3ad us3a2m us1ap u4sc u5s2cr use5tj u5sie u4sj u4s5l u4sm u2s5n uso2 us3o^^ef us3os u2s3p us5pi us5pu us4ta us5tag ust3al u2s3te us4t3ei u4sti ust3oo us5tra. us5tre. us5tro us5tru ustu4 ust3ur ust3uu u1ta ut3aan utaar5 ut1ac ut3af u3tan uta3s4 ut5c u4t3ees u4tek ut3eks ut3em ut5emm uter5an ut3ex ut2h ut3ho u2tj u1to uto5f ut3oog uto3pe utop4l uto5po utop4r uto5s ut3saa ut3s2c uts5eng uts2m ut1sn ut3sp ut4spa ut4spo ut2st uts5tak ut4ste. ut5sten ut3str ut5su utt4 u1tu ut5w u4u4 uur3a4 uur3e4 uur5i uur3k uur1o2 uur5ste uur5sti 4uut uut3a uut3r uvel4s uve5na uw1a u3wag uw3ar uw5art u1we uw3ec uwe5d uw3een u2w3ei uwe4nen uwes4 u1wi u2w3ij uw5ijz u4wind u3wing u4wins uw3inz uw1o u3woe uwo4ge uw1r uw3u uxa3 u3ya 4uz uze3t4 uzie2 ^^fbt3s4 1^^fc ^^fc4b ^^fc1n ^^fc3ri ^^fcs3l 1v2 2v. vaar4ta vaart5r va3de va3g4 va2ki va4kl va2ko va2l3a val5m va3lo va4loe val5si val4s5p vals5tek valu5 va2n van3ac vand4 vang3a van4gr va3no va4noc va1p va3re va5se va3s4o vast3r va3su va3te va2t3h vat5j va3z v4b 4v3c v4e 3ve. 5veb vee4l veel5e vee3p4 vees4 ve3g4h vei3s4 vei5tj 3vek 5vel ve4l3a4g vel4d3o ve3le vel3k 5vem vem4a ve4na ve5nare 5vend ven5k ve2n3o 2venr ven4s3e ven4sl vens5lan vens5lo ven4sp vens5taak vens5take vens5tek ven4s3u4 ve2r ver1a ver5aas ve4rad vera4g ve4rand ver5do ve3rec ver3ed ve3reg ve3rei ver5eis ve5ren. ve5rend ver3e4t ver5ijd ver5ijl ver5ijs ve5ring ver5k4 ver3o ve3rom vero5v ver5p ver5spe ver5sta ver5sto ver5tw ver1u ve3ry ve2s3 ves5ti ve2tj ve2to4 vet3og vet3oo ve3tor ve2t3r vet4roe vet5ste 5ve5z 3vi 4vicepa vid5st vie4r3a vie4s3 vies5n vie4tj vi3eu vijf5 vik4s vil4t3j ving4 vings3 vi3o vi5om vi4s3an vi1so vis5ot vis5p vi4st vis5tr vi1tr v3j vje4 vjet1 3vl v3lar vlei3s4 vlie4s5 vlot5s v3lov 5vo. 3voe voe4t3a voe4t3r voet5sp 3vog voge4 3voi vo2le vol4g3a vol4gra vo2li vol3ij vol5p von4det vond5u 3voo voo5d vooi5t voorn4 voor5na vo3ra vorm3a vors5te. vor5sten vos3 3vot vot3j 3vou vous5 3v4r2 vrei5 vrie4s vrij5k4 vrijs4 vrij5ste v3t vues4 vu2l vul5p vuur5s vy3 2w. waad3 w2aar waar5e waar5ste wa4b3 wa2ba wa5bl w2ad wa3dr w4ag wa2la wa3lan 4wam wan4d5r wan4gr wang5sl wa2n1o wan3s4 3wap w4ar w5arc 5ward war4st wars5te wart3j war4to wa2si wa4s5l wa4s5p was5tr 1wate wat5j wa3tr 3way 2wb w1c 2w1d w4doo wd3oom we2a 2we2c 3wed wede4 we2d3i we4d3r wee4ki wee4k3r wee3lo wee3s4t wee5ste 3weg we4g1a we4gerv weg3l we2g3o we4g5r wei3s wei5tj we4k3r we4le2 4welem we3li we2lo wel3s we2m wem3a we3me we2n wena4 wen3ad we3ne4 we4nem we5nen. wen5enk we3ni wen4k3a wen3o wen5to wer2f 4werg wer4ka wer4k5l wer4kn wer4k3o wer4k3r werk5ru wer4k3u4 wer4k3w wer4p3a wer4p3l wer4pr wer4s wer5ste we2s3 we3spo wes4t5o 3wet. we2th we2t3j wet4st we2t3u 2wex wezen4s5 2w1f w1g w1h wie4la wie4t w4ij 3wijd wij4ka wij4s wijs3l wijs3p wijs5ta wi4k 3wil wind3a win4d3r w4ing 2winr win2s winst5aa winst5r wi4t3h wit3j wi2t3o4 wit3r w1j 2w1k 2w1l 4w1m 2wn wn3ac w3ne w3ni w3no w3ob w2oe woes3 woest5a wo4l wol3a wolf4s5 woon5sf woor4d5r wor4g3e w1p wren4st wrens5te. 2ws ws3a2 w3sc w1sl w2s3le w3som w3sp ws2pl w4spr w5spra w1s4t w4stij 2wt wtes3 wtje5sp w1to w1tr wu2 wva2 w1w xaf4 xa3g xamen5t xan3 xan5t x1c x4e xen4d xe3ro x1f x1h xie4t xi3g xi5o xi3sta xi3sto xi4t3i x3l x1m xo3no x4op xo3s4 x1p xpre2 xpres5 x3r x3so x3sp x1t x2tak xtie2 x3w xy3 y1a ya3s4 ya4s5p y3at yba2l3 yber4t3 y1c ycho3 y3co y1d4 ydi3a y5dr ydro3 y1e yes3 y3^^e9s y3^^e8 y1f y1g ygu2 y1h y1i y4in y5is yksge4 y3la yl3al y3le y4l3et y3lo ylo3l ym2f5l ym5pa y3na yn3er y3no yn1t y1o y3on y3os yo3t y1p y3p4h ypo3 ypot4 yp3s yp5si y1r y3r4e y5ri ys3 y1s4a y3s4c y5s4e yse5t y3s4f y3s4h ys4i y3s4o y3s4p ys5pl ys4ta ys5tr y3sy y1t yt3hu yto3 y2tof ytop4 yu5a y3ui y3u2r yvari5 y1w4 1z 4z. zaar5t za3f2 zags4t za2k3a zak3r zan2d zand5a4 zan3di zan4dr zang3s za3po za3s4 4zb 4zc 4zd z4e zee3k zeel5d zee3r4o zeero5v zeer5s zee3s4 ze5ge zeg4sl zei3sp ze5k zel5dr ze3lem zel2f1 zel4so zen4d3a ze4nin zen5k zen3o4 zen4og ze3non ze4r3a ze3ro zer2s zer4s5e ze4s3 ze5sch zes5e zes5l ze5ste ze2t3a ze2t3h ze4ti ze2t3j ze2t3r zeve2 zeven3 4zf 4zg 2z3h z2i ziek3l zie4k3o ziek3w ziel4s zie5sl 3zif zi2g5a zij5kl zij3po zij5s4 zik2w zi4n3a4 zings3 zin4k3l zin4s zins3t zins5ta zin5str zi3o5 zipi3 zi4t zit3e zit3j zit3u4 4z3k 4z3l 4zm zodi5 zoet3j zoet5ste zo3f2 zoi4 zo5ie zo3la zome4 zo2na zon3sf zon5ta zooi5tj zo1p zor4g3a zor4gl zor4gr zo2t zot3h zo3tr zo3v 4z3p 4z3r 2zs 4z5t zui4d3i zui4dr zus3 2zv z4w zwets5te. 5zy 2z3z zz3in zz3or z4z5w liblouis-2.5.3/tables/en-us-g1.ctb0000664000175000017500000000652012161041546013571 00000000000000# liblouis: English, U.S. grade 1 (EBAE) table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com include chardefs.cti All character definition opcodes # Braille indicators numsign 3456 number sign, just a dots operand capsign 6 begcaps 6-6 endcaps 6-3 firstwordital 46-46 lastworditalbefore 46 lenitalphrase 4 firstletterital 46-3 lastletterital 46-36 singleletterital 46-25 firstwordbold 456-456 lastwordboldbefore 456 lenboldphrase 4 begcomp 456-346 endcomp 456-156 # literary forms of the decimal digits include litdigits6Dots.uti # Letters are defined in chardefs.cti # punctuation prepunc ( 2356 word ( 4-2356 always ( 2356 postpunc ) 2356 word ) 4-2356 always ) 2356 prepunc " 236 postpunc " 356 word " 4-236 prepunc ` 6-236 prepunc ' 6-236 postpunc ' 356-3 word ' 4-3 word 'em = word 'tis = word 'twas = begnum # 456-1456 print number sign before number midnum , 2 postpunc , 2 word , 4-2 decpoint . 46 midnum - 36 hyphen - 36 always \s--\s 36-36 always \s-\s 36-36 midnum \x00ad 36 postpunc . 256 word . 4-256 postpunc ; 23 word ; 4-23 midnum : 25 postpunc : 25 always : 4-25 postpunc ! 235 always ! 4-235 midnum / 34 always / 456-34 always < 5-13 always = 46-13 always > 46-2 always + 4-346 postpunc ? 236 word ? 4-236 endnum st 34 endnum nd 1345-145 endnum rd 1235-145 endnum 's 3-234 endnum th 1456 endnum 's 3-234 always % 4-25-1234 midnum ^ 45 always ^ 456-126 always ~ 4-156 always & 4-12346 midnum * 4-16 always * 35-35 prepunc [ 6-2356 word [ 4-6-2356 always [ 6-2356 postpunc ] 2356-3 word ] 4-2356-3 always ] 2356-3 prepunc { 56-2356 word { 4-56-2356 always { 56-2356 postpunc } 2356-23 word } 4-2356-23 always } 2356-23 always @ 4-1 always \\ 4-1256 always | 456-1256 always \s-\s 36-36 always ..." 3-3-3-356 always ... 3-3-3 always ...' 3-3-3-356-3 repeated .... 0 repeated ____ 456 repeated ---- 36 always .\s.\s." 3-3-3-356 always .\s.\s. 3-3-3 . . . begnum $ 256 nofor begnum $ 256-3456 always $ 4-256 # special character sequences compbrl :// URLs compbrl () compbrl www. compbrl :: compbrl .com compbrl .edu compbrl .gov compbrl .ini compbrl .mil compbrl .net compbrl .org compbrl .doc compbrl .xml compbrl .xsl compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip context "\e"$a * noback always \\_ 56 letter sign before Roman page numbers pass2 @56-56 @56 pass2 @3-56 @3 liblouis-2.5.3/tables/es-old.dis0000664000175000017500000001524712161041546013435 00000000000000# ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # Copyright (c) 2010 by DocArch . # ---------------------------------------------------------------------------------------------- display \x0020 0 # \x2800 display \x00A0 a display \x000A 1 # a \x2801 display \x002C 2 # , \x2802 display \x000B 12 # b \x2803 display \x002E 3 # . \x2804 display \x006B 13 # k \x2805 display \x003B 23 # ; \x2806 display \x006C 123 # l \x2807 display \x0027 4 # ' \x2808 display \x0063 14 # c \x2809 display \x0069 24 # i \x280A display \x0066 124 # f \x280B display \x002F 34 # / \x280C display \x006D 134 # m \x280D display \x0073 234 # s \x280E display \x0070 1234 # p \x280F display \x0040 5 # @ \x2810 display \x000E 15 # e \x2811 display \x003A 25 # : \x2812 display \x0068 125 # h \x2813 display \x007D 35 # } \x2814 display \x006F 135 # o \x2815 display \x002B 235 # + \x2816 display \x0072 1235 # r \x2817 display \x005E 45 # ^ \x2818 display \x0064 145 # d \x2819 display \x006A 245 # j \x281A display \x0067 1245 # g \x281B display \x007C 345 # | \x281C display \x006E 1345 # n \x281D display \x0074 2345 # t \x281E display \x0071 12345 # q \x281F display \x005F 6 # _ \x2820 display \x0031 16 # 1 \x2821 display \x003F 26 # ? \x2822 display \x0032 126 # 2 \x2823 display \x002D 36 # - \x2824 display \x0075 136 # u \x2825 display \x003C 236 # < \x2826 display \x0076 1236 # v \x2827 display \x007B 46 # { \x2828 display \x0033 146 # 3 \x2829 display \x0039 246 # 9 \x282A display \x0036 1246 # 6 \x282B display \x0030 346 # 0 \x282C display \x0078 1346 # x \x282D display \x0024 2346 # $ \x282E display \x0026 12346 # & \x282F display \x0022 56 # " \x2830 display \x0005 156 # 5 \x2831 display \x002A 256 # * \x2832 display \x0008 1256 # 8 \x2833 display \x003E 356 # > \x2834 display \x007A 1356 # z \x2835 display \x003D 2356 # = \x2836 display \x0028 12356 # ( \x2837 display \x0025 456 # % \x2838 display \x0034 1456 # 4 \x2839 display \x0077 2456 # w \x283A display \x0037 12456 # 7 \x283B display \x0023 3456 # # \x283C display \x0079 13456 # y \x283D display \x0029 23456 # ) \x283E display \x005C 123456 # \ \x283F display \x2840 7 display \x2841 17 display \x2842 27 display \x2843 127 display \x2844 37 display \x2845 137 display \x2846 237 display \x2847 1237 display \x2848 47 display \x2849 147 display \x284A 247 display \x284B 1247 display \x284C 347 display \x284D 1347 display \x284E 2347 display \x284F 12347 display \x2850 57 display \x2851 157 display \x2852 257 display \x2853 1257 display \x2854 357 display \x2855 1357 display \x2856 2357 display \x2857 12357 display \x2858 457 display \x2859 1457 display \x285A 2457 display \x285B 12457 display \x285C 3457 display \x285D 13457 display \x285E 23457 display \x285F 123457 display \x2860 67 display \x2861 167 display \x2862 267 display \x2863 1267 display \x2864 367 display \x2865 1367 display \x2866 2367 display \x2867 12367 display \x2868 467 display \x2869 1467 display \x286A 2467 display \x286B 12467 display \x286C 3467 display \x286D 13467 display \x286E 23467 display \x286F 123467 display \x2870 567 display \x2871 1567 display \x2872 2567 display \x2873 12567 display \x2874 3567 display \x2875 13567 display \x2876 23567 display \x2877 123567 display \x2878 4567 display \x2879 14567 display \x287A 24567 display \x287B 124567 display \x287C 34567 display \x287D 134567 display \x287E 234567 display \x287F 1234567 display \x2880 8 display \x2881 18 display \x2882 28 display \x2883 128 display \x2884 38 display \x2885 138 display \x2886 238 display \x2887 1238 display \x2888 48 display \x2889 148 display \x288A 248 display \x288B 1248 display \x288C 348 display \x288D 1348 display \x288E 2348 display \x288F 12348 display \x2890 58 display \x2891 158 display \x2892 258 display \x2893 1258 display \x2894 358 display \x2895 1358 display \x2896 2358 display \x2897 12358 display \x2898 458 display \x2899 1458 display \x289A 2458 display \x289B 12458 display \x289C 3458 display \x289D 13458 display \x289E 23458 display \x289F 123458 display \x28A0 68 display \x28A1 168 display \x28A2 268 display \x28A3 1268 display \x28A4 368 display \x28A5 1368 display \x28A6 2368 display \x28A7 12368 display \x28A8 468 display \x28A9 1468 display \x28AA 2468 display \x28AB 12468 display \x28AC 3468 display \x28AD 13468 display \x28AE 23468 display \x28AF 123468 display \x28B0 568 display \x28B1 1568 display \x28B2 2568 display \x28B3 12568 display \x28B4 3568 display \x28B5 13568 display \x28B6 23568 display \x28B7 123568 display \x28B8 4568 display \x28B9 14568 display \x28BA 24568 display \x28BB 124568 display \x28BC 34568 display \x28BD 134568 display \x28BE 234568 display \x28BF 1234568 display \x28C0 78 display \x28C1 178 display \x28C2 278 display \x28C3 1278 display \x28C4 378 display \x28C5 1378 display \x28C6 2378 display \x28C7 12378 display \x28C8 478 display \x28C9 1478 display \x28CA 2478 display \x28CB 12478 display \x28CC 3478 display \x28CD 13478 display \x28CE 23478 display \x28CF 123478 display \x28D0 578 display \x28D1 1578 display \x28D2 2578 display \x28D3 12578 display \x28D4 3578 display \x28D5 13578 display \x28D6 23578 display \x28D7 123578 display \x28D8 4578 display \x28D9 14578 display \x28DA 24578 display \x28DB 124578 display \x28DC 34578 display \x28DD 134578 display \x28DE 234578 display \x28DF 1234578 display \x28E0 678 display \x28E1 1678 display \x28E2 2678 display \x28E3 12678 display \x28E4 3678 display \x28E5 13678 display \x28E6 23678 display \x28E7 123678 display \x28E8 4678 display \x28E9 14678 display \x28EA 24678 display \x28EB 124678 display \x28EC 34678 display \x28ED 134678 display \x28EE 234678 display \x28EF 1234678 display \x28F0 5678 display \x28F1 15678 display \x28F2 25678 display \x28F3 125678 display \x28F4 35678 display \x28F5 135678 display \x28F6 235678 display \x28F7 1235678 display \x28F8 45678 display \x28F9 145678 display \x28FA 245678 display \x28FB 1245678 display \x28FC 345678 display \x28FD 1345678 display \x28FE 2345678 display \x28FF 12345678 # ----------------------------------------------------------------------------------------------liblouis-2.5.3/tables/README0000664000175000017500000000024112161041546012415 00000000000000Most of the liblouis tables in this subdirectory were supplied by ViewPlus Technologies, Inc. The hyphenation tables are the ones used in TeX and OpenOffice. liblouis-2.5.3/tables/da.ctb0000664000175000017500000002677712161041546012641 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Danish (iso-8859-1) # This is the table which comes closest to the Danish standard 1252 table. All # control characters are mapped as their corresponding capital letters with # dot-8 added. Most Danish braille users should use this table. # generated by ttbtest letter \x0000 8 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 24568 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 678 LINE FEED (LF) space \v 1368 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 257 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 12358 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 13568 DEVICE CONTROL TWO letter \x0013 4578 DEVICE CONTROL THREE letter \x0014 268 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 278 SYNCHRONOUS IDLE letter \x0017 3578 END OF TRANSMISSION BLOCK letter \x0018 78 CANCEL letter \x0019 68 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 2678 ESCAPE letter \x001c 45678 INFORMATION SEPARATOR FOUR letter \x001d 12368 INFORMATION SEPARATOR THREE letter \x001e 1234678 INFORMATION SEPARATOR TWO letter \x001f 235678 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation # 34568 NUMBER SIGN punctuation $ 25678 DOLLAR SIGN punctuation % 24578 PERCENT SIGN punctuation & 123468 AMPERSAND punctuation ' 4 APOSTROPHE punctuation ( 2368 LEFT PARENTHESIS punctuation ) 3568 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 2358 PLUS SIGN punctuation , 2 COMMA punctuation - 368 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 34 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 358 LESS-THAN SIGN punctuation = 23568 EQUALS SIGN punctuation > 267 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 478 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 23678 LEFT SQUARE BRACKET punctuation \\ 347 REVERSE SOLIDUS punctuation ] 35678 RIGHT SQUARE BRACKET punctuation ^ 12348 CIRCUMFLEX ACCENT punctuation _ 3678 LOW LINE punctuation ` 5 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 123678 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 345678 RIGHT CURLY BRACKET punctuation ~ 467 TILDE letter \x007f 7 DELETE letter \x20AC 1578 EURO SIGN letter \x201A 457 letter \x0192 58 letter \x201E 2378 letter \x2022 37 letter \x2026 6 letter \x0080 24568 letter \x0081 45 letter \x0082 457 BREAK PERMITTED HERE letter \x0083 5 NO BREAK HERE letter \x0084 2378 letter \x0085 6 NEXT LINE (NEL) letter \x0086 2357 START OF SELECTED AREA letter \x0087 23578 END OF SELECTED AREA letter \x0088 5678 CHARACTER TABULATION SET letter \x0089 3578 CHARACTER TABULATION WITH JUSTIFICATION letter \x008a 4578 LINE TABULATION SET letter \x008b 456 PARTIAL LINE FORWARD letter \x008c 12358 PARTIAL LINE BACKWARD letter \x008d 3567 REVERSE LINE FEED letter \x008e 3467 SINGLE SHIFT TWO letter \x008f 27 SINGLE SHIFT THREE letter \x0090 357 DEVICE CONTROL STRING letter \x0091 47 PRIVATE USE ONE letter \x0092 48 PRIVATE USE TWO letter \x0093 237 SET TRANSMIT STATE letter \x0094 568 CANCEL CHARACTER letter \x0095 37 MESSAGE WAITING letter \x0096 36 START OF GUARDED AREA letter \x0097 367 END OF GUARDED AREA letter \x0098 46 START OF STRING letter \x0099 268 letter \x009a 2348 SINGLE CHARACTER INTRODUCER letter \x009b 4567 CONTROL SEQUENCE INTRODUCER letter \x009c 1358 STRING TERMINATOR letter \x009d 23458 OPERATING SYSTEM COMMAND letter \x009e 346 PRIVACY MESSAGE letter \x009f 2345678 APPLICATION PROGRAM COMMAND punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 256 INVERTED EXCLAMATION MARK punctuation \x00a2 2578 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 2367 CURRENCY SIGN punctuation \x00a5 67 YEN SIGN punctuation \x00a6 3478 BROKEN BAR punctuation \x00a7 578 SECTION SIGN punctuation \x00a8 56 DIAERESIS punctuation \x00a9 78 COPYRIGHT SIGN letter \x00aa 234678 FEMININE ORDINAL INDICATOR punctuation \x00ab 57 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 34567 NOT SIGN punctuation \x00ad 378 SOFT HYPHEN punctuation \x00ae 13568 REGISTERED SIGN punctuation \x00af 23567 MACRON punctuation \x00b0 356 DEGREE SIGN punctuation \x00b1 123458 PLUS-MINUS SIGN punctuation \x00b2 238 SUPERSCRIPT TWO punctuation \x00b3 258 SUPERSCRIPT THREE punctuation \x00b4 468 ACUTE ACCENT lowercase \x00b5 236 MICRO SIGN punctuation \x00b6 1234568 PILCROW SIGN punctuation \x00b7 38 MIDDLE DOT punctuation \x00b8 4678 CEDILLA punctuation \x00b9 28 SUPERSCRIPT ONE letter \x00ba 7 MASCULINE ORDINAL INDICATOR punctuation \x00bb 567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 13458 VULGAR FRACTION ONE QUARTER punctuation \x00bd 458 VULGAR FRACTION ONE HALF punctuation \x00be 3456 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 348 INVERTED QUESTION MARK uppercase \x00c0 123567 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 1235678 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 16 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 14678 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 34578 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 345 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 23467 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 15678 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 12678 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 124567 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 68 LATIN CAPITAL LETTER ETH uppercase \x00d1 1245678 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 124678 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 34678 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 145678 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 24678 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 13468 MULTIPLICATION SIGN uppercase \x00d8 246 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 234567 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 125678 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 257 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 1368 LATIN CAPITAL LETTER THORN lowercase \x00df 23468 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 123568 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 168 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 1468 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 3458 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 345 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 1568 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 1268 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 134568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 12468 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 3468 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 14568 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 2468 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2568 DIVISION SIGN lowercase \x00f8 246 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 12568 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 1348 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 138 LATIN SMALL LETTER THORN lowercase \x00ff 234568 LATIN SMALL LETTER Y WITH DIAERESIS punctuation \x0192 58 liblouis-2.5.3/tables/us-table.dis0000664000175000017500000000325512161041546013762 00000000000000# liblouis: U.S. character-to-dot mapping. # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@abilitiessoft.com display 0 356 display 1 2 display 2 23 display 3 25 display 4 256 display 5 26 display 6 235 display 7 2356 display 8 236 display 9 35 display ( 12356 display } 12456 display ] 124567 display ? 1456 display : 156 display ) 23456 display ! 2346 display { 246 display [ 2467 display ' 3 display - 36 display . 46 display " 5 display ; 56 display , 6 display & 12346 display $ 1246 display | 1256 display \\ 12567 display % 146 display * 16 display # 3456 display ` 4 display _ 456 display ^ 457 display @ 47 display = 123456 display < 126 display / 34 display > 345 display + 346 display ~ 45 liblouis-2.5.3/tables/no-no-generic.ctb0000664000175000017500000003073212161041546014677 00000000000000# File: no-no-generic.ctb # Quick hack for using with NVDA # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # This is to be used with Norwegian translation tables. # BRLTTY Text Translation Table - Generic Norwegian (iso-8859-1), with some # unofficial character representations to accommodate multilingual usage. # For example, numbers are represented with dot 6 rather than with dot 8. # display \X0000 4578 # 000 null # display \X0000 0 # 000 null sign \X0001 178 # 001 start of heading sign \X0002 1278 # 002 start of text sign \X0003 1478 # 003 end of text sign \X0004 14578 # 004 end of transmission sign \X0005 1578 # 005 enquiry sign \X0006 12478 # 006 acknowledge sign \X0007 124578 # 007 bell sign \X0008 12578 # 008 backspace sign \X0009 2478 # 009 horizontal tabulation sign \X000A 24578 # 010 line feed sign \X000B 1378 # 011 vertical tabulation sign \X000C 12378 # 012 form feed sign \X000D 13478 # 013 carriage return sign \X000E 134578 # 014 shift out sign \X000F 13578 # 015 shift in sign \X0010 123478 # 016 data link escape sign \X0011 1234578 # 017 device control one sign \X0012 123578 # 018 device control two sign \X0013 23478 # 019 device control three sign \X0014 234578 # 020 device control four sign \X0015 13678 # 021 negative acknowledge sign \X0016 123678 # 022 synchronous idle sign \X0017 245678 # 023 end of transmission block sign \X0018 134678 # 024 cancel sign \X0019 1345678 # 025 end of medium sign \X001A 135678 # 026 substitute sign \X001B 1235678 # 027 escape sign \X001C 3478 # 028 file separator sign \X001D 2345678 # 029 group separator sign \X001E 234678 # 030 record separator sign \X001F 45678 # 031 unit separator # display \X0020 0 # 032 space sign \X0021 5 # exclamation mark sign \X0022 4 # quotation mark sign \X0023 3456 # 033 number sign sign \X0024 46 # 034 dollar sign sign \X0025 123456 # 035 percent sign sign \X0026 12346 # 036 ampersand sign \X0027 6 # 037 apostrophe sign \X0028 236 # 038 left parenthesis sign \X0029 356 # 039 right parenthesis sign \X002A 35 # 040 asterisk sign \X002B 235 # 041 plus sign sign \X002C 2 # 042 comma sign \X002D 36 # 043 hyphen-minus sign \X002E 3 # 044 full stop sign \X002F 256 # 045 solidus sign \X0030 346 # 046 digit zero sign \X0031 16 # 047 digit one sign \X0032 126 # 048 digit two sign \X0033 146 # 049 digit three sign \X0034 1456 # 050 digit four sign \X0035 156 # 051 digit five sign \X0036 1246 # 052 digit six sign \X0037 12456 # 053 digit seven sign \X0038 1256 # 054 digit eight sign \X0039 246 # 055 digit nine sign \X003A 25 # 056 colon sign \X003B 23 # 057 semicolon sign \X003C 56 # 058 less-than sign sign \X003D 2356 # 059 equals sign sign \X003E 45 # 060 greater-than sign sign \X003F 26 # 061 question mark sign \X0040 3457 # 062 commercial at sign \X0041 17 # 063 latin capital letter a sign \X0042 127 # 064 latin capital letter b sign \X0043 147 # 065 latin capital letter c sign \X0044 1457 # 066 latin capital letter d sign \X0045 157 # 067 latin capital letter e sign \X0046 1247 # 068 latin capital letter f sign \X0047 12457 # 069 latin capital letter g sign \X0048 1257 # 070 latin capital letter h sign \X0049 247 # 071 latin capital letter i sign \X004A 2457 # 072 latin capital letter j sign \X004B 137 # 073 latin capital letter k sign \X004C 1237 # 074 latin capital letter l sign \X004D 1347 # 075 latin capital letter m sign \X004E 13457 # 076 latin capital letter n sign \X004F 1357 # 077 latin capital letter o sign \X0050 12347 # 078 latin capital letter p sign \X0051 123457 # 079 latin capital letter q sign \X0052 12357 # 080 latin capital letter r sign \X0053 2347 # 081 latin capital letter s sign \X0054 23457 # 082 latin capital letter t sign \X0055 1367 # 083 latin capital letter u sign \X0056 12367 # 084 latin capital letter v sign \X0057 24567 # 085 latin capital letter w sign \X0058 13467 # 086 latin capital letter x sign \X0059 134567 # 087 latin capital letter y sign \X005A 13567 # 088 latin capital letter z sign \X005B 123567 # 089 left square bracket sign \X005C 347 # 090 reverse solidus sign \X005D 234567 # 091 right square bracket sign \X005E 23467 # 092 circumflex accent sign \X005F 456 # 093 low line sign \X0060 345 # 094 grave accent sign \X0061 1 # 095 latin small letter a sign \X0062 12 # 096 latin small letter b sign \X0063 14 # 097 latin small letter c sign \X0064 145 # 098 latin small letter d sign \X0065 15 # 099 latin small letter e sign \X0066 124 # 100 latin small letter f sign \X0067 1245 # 101 latin small letter g sign \X0068 125 # 102 latin small letter h sign \X0069 24 # 103 latin small letter i sign \X006A 245 # 104 latin small letter j sign \X006B 13 # 105 latin small letter k sign \X006C 123 # 106 latin small letter l sign \X006D 134 # 107 latin small letter m sign \X006E 1345 # 108 latin small letter n sign \X006F 135 # 109 latin small letter o sign \X0070 1234 # 110 latin small letter p sign \X0071 12345 # 111 latin small letter q sign \X0072 1235 # 112 latin small letter r sign \X0073 234 # 113 latin small letter s sign \X0074 2345 # 114 latin small letter t sign \X0075 136 # 115 latin small letter u sign \X0076 1236 # 116 latin small letter v sign \X0077 2456 # 117 latin small letter w sign \X0078 1346 # 118 latin small letter x sign \X0079 13456 # 119 latin small letter y sign \X007A 1356 # 120 latin small letter z sign \X007B 12356 # 121 left curly bracket sign \X007C 34 # 122 vertical line sign \X007D 23456 # 123 right curly bracket sign \X007E 2346 # 124 tilde sign \X007F 4568 # 125 delete sign \X0080 2367 # 126 sign \X0081 568 # 127 sign \X0082 367 # 128 break permitted here sign \X0083 23678 # 129 no break here sign \X0084 235678 # 130 sign \X0085 12458 # 131 next line sign \X0086 1238 # 132 start of selected area sign \X0087 1234567 # 133 end of selected area sign \X0088 12345678 # 134 character tabulation set sign \X0089 678 # 135 character tabulation with justification sign \X008A 1234678 # 136 line tabulation set sign \X008B 3568 # 137 partial line down sign \X008C 15678 # 138 partial line up sign \X008D 34678 # 139 reverse line feed sign \X008E 78 # 140 single shift two sign \X008F 2578 # 141 single shift three sign \X0090 23567 # 142 device control string sign \X0091 1348 # 143 private use one sign \X0092 24568 # 144 private use two sign \X0093 23468 # 145 set transmit state sign \X0094 23578 # 146 cancel character sign \X0095 4567 # 147 message waiting sign \X0096 1234568 # 148 start of guarded area sign \X0097 368 # 149 end of guarded area sign \X0098 13568 # 150 start of string sign \X0099 3678 # 151 sign \X009A 345678 # 152 single character introducer sign \X009B 578 # 153 control sequence introducer sign \X009C 8 # 154 string terminator sign \X009D 4678 # 155 operating system command sign \X009E 13468 # 156 privacy message sign \X009F 1248 # 157 application program command sign \X00A0 478 # 158 no-break space sign \X00A1 58 # 159 inverted exclamation mark sign \X00A2 258 # 160 cent sign sign \X00A3 34568 # 161 pound sign sign \X00A4 34567 # 162 currency sign sign \X00A5 145678 # 163 yen sign sign \X00A6 348 # 164 broken bar sign \X00A7 12368 # 165 section sign sign \X00A8 7 # 166 diaeresis sign \X00A9 148 # 167 copyright sign sign \X00AA 37 # 168 feminine ordinal indicator sign \X00AB 47 # 169 left-pointing double angle quotation mark sign \X00AC 67 # 170 not sign sign \X00AD 38 # 171 soft hyphen sign \X00AE 12358 # 172 registered sign sign \X00AF 23568 # 173 macron sign \X00B0 1245678 # 174 degree sign sign \X00B1 12348 # 175 plus-minus sign sign \X00B2 3578 # 176 superscript two sign \X00B3 14678 # 177 superscript three sign \X00B4 124678 # 178 acute accent sign \X00B5 12678 # 179 micro sign sign \X00B6 123458 # 180 pilcrow sign sign \X00B7 378 # 181 middle dot sign \X00B8 35678 # 182 cedilla sign \X00B9 5678 # 183 superscript one sign \X00BA 68 # 184 masculine ordinal indicator sign \X00BB 48 # 185 right-pointing double angle quotation mark sign \X00BC 257 # 186 vulgar fraction one quarter sign \X00BD 1458 # 187 vulgar fraction one half sign \X00BE 13458 # 188 vulgar fraction three quarters sign \X00BF 268 # 189 inverted question mark sign \X00C0 57 # 190 latin capital letter a with grave sign \X00C1 27 # 191 latin capital letter a with acute sign \X00C2 167 # 192 latin capital letter a with circumflex sign \X00C3 1467 # 193 latin capital letter a with tilde sign \X00C4 567 # 194 latin capital letter a with diaeresis sign \X00C5 1678 # 195 latin capital letter a with ring above sign \X00C6 34578 # 196 latin capital letter ae sign \X00C7 123467 # 197 latin capital letter c with cedilla sign \X00C8 467 # 198 latin capital letter e with grave sign \X00C9 2678 # 199 latin capital letter e with acute sign \X00CA 1567 # 200 latin capital letter e with circumflex sign \X00CB 12467 # 201 latin capital letter e with diaeresis sign \X00CC 237 # 202 latin capital letter i with grave sign \X00CD 2378 # 203 latin capital letter i with acute sign \X00CE 457 # 204 latin capital letter i with circumflex sign \X00CF 357 # 205 latin capital letter i with diaeresis sign \X00D0 2567 # 206 latin capital letter eth sign \X00D1 124567 # 207 latin capital letter n with tilde sign \X00D2 267 # 208 latin capital letter o with grave sign \X00D3 1267 # 209 latin capital letter o with acute sign \X00D4 14567 # 210 latin capital letter o with circumflex sign \X00D5 2357 # 211 latin capital letter o with tilde sign \X00D6 2467 # 212 latin capital letter o with diaeresis sign \X00D7 1258 # 213 multiplication sign sign \X00D8 24678 # 214 latin capital letter o with stroke sign \X00D9 125678 # 215 latin capital letter u with grave sign \X00DA 278 # 216 latin capital letter u with acute sign \X00DB 3467 # 217 latin capital letter u with circumflex sign \X00DC 12567 # 218 latin capital letter u with diaeresis sign \X00DD 25678 # 219 latin capital letter y with acute sign \X00DE 23458 # 220 latin capital letter thorn sign \X00DF 2348 # 221 latin small letter sharp s sign \X00E0 123568 # 222 latin small letter a with grave sign \X00E1 28 # 223 latin small letter a with acute sign \X00E2 138 # 224 latin small letter a with circumflex sign \X00E3 1468 # 225 latin small letter a with tilde sign \X00E4 18 # 226 latin small letter a with diaeresis sign \X00E5 168 # 227 latin small letter a with ring above sign \X00E6 3458 # 228 latin small letter ae sign \X00E7 123468 # 229 latin small letter c with cedilla sign \X00E8 468 # 230 latin small letter e with grave sign \X00E9 158 # 231 latin small letter e with acute sign \X00EA 1568 # 232 latin small letter e with circumflex sign \X00EB 12468 # 233 latin small letter e with diaeresis sign \X00EC 238 # 234 latin small letter i with grave sign \X00ED 128 # 235 latin small letter i with acute sign \X00EE 458 # 236 latin small letter i with circumflex sign \X00EF 248 # 237 latin small letter i with diaeresis sign \X00F0 2568 # 238 latin small letter eth sign \X00F1 124568 # 239 latin small letter n with tilde sign \X00F2 1358 # 240 latin small letter o with grave sign \X00F3 1268 # 241 latin small letter o with acute sign \X00F4 14568 # 242 latin small letter o with circumflex sign \X00F5 2358 # 243 latin small letter o with tilde sign \X00F6 358 # 244 latin small letter o with diaeresis sign \X00F7 2458 # 245 division sign sign \X00F8 2468 # 246 latin small letter o with stroke sign \X00F9 2368 # 247 latin small letter u with grave sign \X00FA 1368 # 248 latin small letter u with acute sign \X00FB 3468 # 249 latin small letter u with circumflex sign \X00FC 12568 # 250 latin small letter u with diaeresis sign \X00FD 134568 # 251 latin small letter y with acute sign \X00FE 3567 # 252 latin small letter thorn sign \X00FF 234568 # 253 latin small letter y with diaeresis liblouis-2.5.3/tables/pt-pt-comp8.ctb0000664000175000017500000000464612161041546014334 00000000000000# liblouis: Portuguese 8 dot Computer braille table # Copyright (C) 2012 Rui Fontes # Copyright (C) 2012 Mesar Hameed # # This file is part of liblouis. # liblouis is free software: you can redistribute it and/or modify it # under the terms of the Lesser GNU General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # liblouis 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 Lesser # GNU General Public License for more details. # You should have received a copy of the Lesser GNU General Public # License along with liblouis. If not, see # . space \t 9 tab space \s 0 blank space \x00a0 a unbreakable space sign \x000a 78 newline space \x000d 0 carriage return include digits8Dots.uti include latinLetterDef8Dots.uti punctuation , 2 punctuation ; 23 punctuation : 25 punctuation . 3 punctuation ! 2358 punctuation " 236 punctuation ' 6 punctuation ( 1268 punctuation ) 3458 punctuation - 36 sign _ 367 math < 2468 math = 2356 math > 1358 sign % 35678 math + 235 math ~ 2346 sign ` 14678 sign & 123468 sign $ 46 punctuation ? 26 punctuation { 1238 punctuation [ 123568 punctuation } 4567 punctuation ] 234568 sign ^ 234678 sign @ 156 sign # 3456 sign \\ 38 sign | 456 math / 256 sign * 35 uplow \x00c0\x00e0 12467,1246 # Àà uplow \x00c1\x00e1 123567,12356 # Ãá uplow \x00c2\x00e2 167,16 # Ââ uplow \x00c3\x00e3 3457,345 # Ãã uplow \x00c4\x00e4 34578,3458 # Ää uplow \x00c7\x00e7 123467,12346 # Çç uplow \x00c8\x00e8 234678,23468 # Èè uplow \x00c9\x00e9 1234567,123456 # Éé uplow \x00ca\x00ea 1267,126 # Êê uplow \x00cc\x00ec 14678,1468 # Ìì uplow \x00cd\x00ed 347,34 # Ãí uplow \x00ce\x00ee 1467,146 # Îî uplow \x00d2\x00f2 245678,24568 # Òò uplow \x00d3\x00f3 3467,346 # Óó uplow \x00d4\x00f4 14567,1456 # Ôô uplow \x00d5\x00f5 2467,246 # Õõ uplow \x00d6\x00f6 2467,246 # Öö uplow \x00d9\x00f9 15678,1568 # Ùù uplow \x00da\x00fa 234567,23456 # Úú uplow \x00dc\x00fc 12567,1256 # Üü sign \x00ba 13578 # sign \x00aa 178 # ª sign \x20ac 1578 sign \x00ae 12358 sign \x2122 1348 sign \x00ab 1235678 # « sign \x00bb 2345678 # » sign \x00a3 12378 # £ sign \x00a7 2348 # § uplow \x00d1\x00f1 134578,13458 # Ññ liblouis-2.5.3/tables/de-ch-accents.cti0000664000175000017500000000644012161041546014643 00000000000000# liblouis: Letters with accents (without ä ö ü) # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Letters with accents (without ä ö ü) - Switzerland # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- uplow Àà 4-12356 \x00C0 À LATIN CAPITAL LETTER A WITH GRAVE # Ãá \x00C1 Á LATIN CAPITAL LETTER A WITH ACUTE uplow Ââ 4-16 \x00C2  LATIN CAPITAL LETTER A WITH CIRCUMFLEX # Ãã \x00C3 à LATIN CAPITAL LETTER A WITH TILDE # Ã…Ã¥ \x00C5 Å LATIN CAPITAL LETTER A WITH RING ABOVE # Ææ \x00C6 Æ LATIN CAPITAL LETTER AE uplow Çç 4-12346 \x00C7 Ç LATIN CAPITAL LETTER C WITH CEDILLA uplow Èè 4-2346 \x00C8 È LATIN CAPITAL LETTER E WITH GRAVE uplow Éé 4-123456 \x00C9 É LATIN CAPITAL LETTER E WITH ACUTE uplow Êê 4-126 \x00CA Ê LATIN CAPITAL LETTER E WITH CIRCUMFLEX uplow Ëë 4-1246 \x00CB Ë LATIN CAPITAL LETTER E WITH DIAERESIS uplow Ìì 4-34 \x00CC Ì LATIN CAPITAL LETTER I WITH GRAVE # Ãí \x00CD Í LATIN CAPITAL LETTER I WITH ACUTE uplow Îî 4-146 \x00CE Î LATIN CAPITAL LETTER I WITH CIRCUMFLEX uplow Ãï 4-12456 \x00CF Ï LATIN CAPITAL LETTER I WITH DIAERESIS # Ãð \x00D0 Ð LATIN CAPITAL LETTER ETH # Ññ \x00D1 Ñ LATIN CAPITAL LETTER N WITH TILDE uplow Òò 4-346 \x00D2 Ò LATIN CAPITAL LETTER O WITH GRAVE # Óó \x00D3 Ó LATIN CAPITAL LETTER O WITH ACUTE uplow Ôô 4-1456 \x00D4 Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX # Õõ \x00D5 Õ LATIN CAPITAL LETTER O WITH TILDE # Øø \x00D8 Ø LATIN CAPITAL LETTER O WITH STROKE uplow Ùù 4-23456 \x00D9 Ù LATIN CAPITAL LETTER U WITH GRAVE # Úú \x00DA Ú LATIN CAPITAL LETTER U WITH ACUTE uplow Ûû 4-156 \x00DB Û LATIN CAPITAL LETTER U WITH CIRCUMFLEX # Ãý \x00DD Ý LATIN CAPITAL LETTER Y WITH ACUTE # Þþ \x00DE Þ LATIN CAPITAL LETTER THORN # ÿ 134568 \x00FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS # \x0152\x0153 OE Œ LATIN CAPITAL LIGATURE OE liblouis-2.5.3/tables/nemethdefs.cti0000664000175000017500000003611312161041546014367 00000000000000replace \x00af replace \x0001 replace \x0002 replace \x0003 replace \x0088 # CHARACTER TABULATION SET replace \x0089 # CHARACTER TABULATION WITH JUSTIFICATION space \s 0 space \t 0 space \x2061 0 FUNCTION APPLICATION space \x2062 0 INVISIBLE TIMES space \x2063 0 INVISIBLE SEPARATOR space \x2064 0 INVISIBLE PLUS space \x2009 0 THIN SPACE 0020 sign \x001B 0 sign \x009A a SINGLE CHARACTER INTRODUCER sign \x00A2 4-14 CENT SIGN sign \x00A7 4-6-234 SECTION SIGN sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN math \x00B1 346-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN sign \x00B7 16 MIDDLE DOT sign \X00F7 46-34 DIVISION SIGN sign \X2215 456-34 DIVISION slash sign \x00D7 4-16 MULTIPLICATION SIGN sign \x2715 4-16 MULTIPLICATION SIGN math \x0391 46-6-1 GREEK CAPITAL LETTER ALPHA 03B1 math \x0392 46-6-12 GREEK CAPITAL LETTER BETA 03B2 math \x0393 46-6-1245 GREEK CAPITAL LETTER GAMMA 03B3 math \x0394 46-6-145 GREEK CAPITAL LETTER DELTA 03B4 math \x0395 46-6-15 GREEK CAPITAL LETTER EPSILON 03B5 math \x0396 46-6-156 GREEK CAPITAL LETTER ZETA 03B6 math \x0397 46-6-126 GREEK CAPITAL LETTER ETA 03B7 math \x0398 46-6-1456 GREEK CAPITAL LETTER THETA 03B8 math \x0399 46-6-24 GREEK CAPITAL LETTER IOTA 03B9 math \x039A 46-6-13 GREEK CAPITAL LETTER KAPPA 03BA math \x039B 46-6-123 GREEK CAPITAL LETTER LAMDA math \x039C 46-6-134 GREEK CAPITAL LETTER MU 03BC math \x039D 46-6-1345 GREEK CAPITAL LETTER NU 03BD math \x039E 46-6-1346 GREEK CAPITAL LETTER XI 03BE math \x039F 46-6-135 GREEK CAPITAL LETTER OMICRON 03BF math \x03A0 46-6-1234 GREEK CAPITAL LETTER PI 03C0 math \x03A1 46-6-1235 GREEK CAPITAL LETTER RHO 03C1 math \x03A3 46-6-234 GREEK CAPITAL LETTER SIGMA 03C3 math \x03A4 46-6-136 GREEK CAPITAL LETTER TAU 03C4 math \x03A5 46-6-136 GREEK CAPITAL LETTER UPSILON 03C5 math \x03A6 46-6-124 GREEK CAPITAL LETTER PHI 03C6 math \x03A7 46-6-12346 GREEK CAPITAL LETTER CHI 03C7 math \x03A8 46-6-1246 GREEK CAPITAL LETTER PSI 03C8 math \x03A9 46-6-2456 GREEK CAPITAL LETTER OMEGA 03C9 math \x03B1 46-1 GREEK SMALL LETTER ALPHA 0391 0391 math \x03B2 46-12 GREEK SMALL LETTER BETA 0392 0392 math \x03B3 46-1245 GREEK SMALL LETTER GAMMA 0393 0393 math \x03B4 46-145 GREEK SMALL LETTER DELTA 0394 0394 math \x03B5 46-15 GREEK SMALL LETTER EPSILON 0395 0395 math \x03B6 46-156 GREEK SMALL LETTER ZETA 0396 0396 math \x03B7 46-236 GREEK SMALL LETTER ETA 0397 0397 math \x03B8 46-1456 GREEK SMALL LETTER THETA 0398 0398 math \x03B9 46-24 GREEK SMALL LETTER IOTA 0399 0399 math \x03BA 46-13 GREEK SMALL LETTER KAPPA 039A 039A math \x03BB 46-123 GREEK SMALL LETTER LAMDA GREEK math \x03BC 46-134 GREEK SMALL LETTER MU 039C 039C math \x03BD 46-1345 GREEK SMALL LETTER NU 039D 039D math \x03BE 46-1346 GREEK SMALL LETTER XI 039E 039E math \x03BF 46-135 GREEK SMALL LETTER OMICRON 039F 039F math \x03C0 46-1234 GREEK SMALL LETTER PI 03A0 03A0 math \x03C1 46-1235 GREEK SMALL LETTER RHO 03A1 03A1 math \x03C2 46-25 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3 math \x03C3 46-234 GREEK SMALL LETTER SIGMA 03A3 03A3 math \x03C4 46-2345 GREEK SMALL LETTER TAU 03A4 03A4 math \x03C5 46-136 GREEK SMALL LETTER UPSILON 03A5 03A5 math \x03C6 46-124 GREEK SMALL LETTER PHI 03A6 03A6 math \x03C7 46-12346 GREEK SMALL LETTER CHI 03A7 03A7 math \x03C8 46-125 GREEK SMALL LETTER PSI 03A8 03A8 math \x03C9 46-135 GREEK SMALL LETTER OMEGA 03A9 03A9 math \x03D5 46-124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI sign \x2022 35-35 BULLET math \x2026 0-3-3-3-0 HORIZONTAL ELLIPSIS 002E 002E 002E math \x2032 3 PRIME math \x2033 3-3 DOUBLE PRIME 2032 2032 space \x00A0 9 Non-break space lowercase \x2113 4-123 SCRIPT SMALL 006C math \x2114 1256 B BAR SYMBOL math \x211D 4-6-1235 DOUBLE-STRUCK CAPITAL 0052 DOUBLE-STRUCK math \x2322 9-1246-1-9 arc math \X2217 4-3456 ASTERISK OPERATOR sign * 4-3456 ASTERISK OPERATOR math \x2218 45-46-16 degrees sign math \X212B 9-4-6-1 ANGSTROM SIGN math \X2295 1246-14-456-1246-346-12456 CIRCLED PLUS math \X2296 1246-14-456-1246-36-12456 CIRCLED MINUS math \X2297 1246-14-456-1246-4-16-12456 CIRCLED TIMES math \X2298 1246-14-456-1246-456-34-12456 CIRCLED DIVISION SLASH math \X2299 1246-14-456-1246-16-12456 CIRCLED DOT OPERATOR math \X229B 1246-14-456-1246-4-3456-12456 CIRCLED ASTERISK OPERATOR math \X229C 1246-14-456-1246-46-13-12456 CIRCLED EQUALS math \X229D 1246-14-456-1246-36-36-12456 CIRCLED DASH math \X229E 1246-256-456-1246-346-12456 SQUARED PLUS math \X229F 1246-256-456-1246-36-12456 SQUARED MINUS math \X22A0 1246-256-456-1246-4-16-12456 SQUARED TIMES math \X22A1 1246-256-456-1246-16-12456 SQUARED DOT OPERATOR math \X22EE 126-3-3-3 VERTICAL ELLIPSIS math \X22EF 3-3-3 MIDLINE HORIZONTAL ELLIPSIS math \X22F0 45-3-3-3 UP RIGHT DIAGONAL ELLIPSIS math \X22F1 56-3-3-3 DOWN RIGHT DIAGONAL ELLIPSIS # Arrows math \X2190 9-1246-246-25-25-9 LEFTWARDS ARROW math \X2191 9-1246-126-25-25-135-9 UPWARDS ARROW math \x2192 9-1246-135-9 RIGHTWARDS ARROW math \X2193 9-1246-146-25-25-135-9 DOWNWARDS ARROW math \X2194 9-1246-246-25-25-135-9 LEFT RIGHT ARROW math \X2195 9-1246-126-146-246-25-25-135-9 UP DOWN ARROW math \X2196 9-1246-45-246-25-25-9 NORTH WEST ARROW math \X2197 9-1246-45-25-25-135-9 NORTH EAST ARROW math \X2198 9-1246-56-25-25-135-9 SOUTH EAST ARROW math \X2199 9-1246-56-246-25-25-9 SOUTH WEST ARROW math \X219A 9-1256-4-1246-246-25-25-12456-9 LEFTWARDS ARROW WITH STROKE math \X219B 9-1256-4-1246-25-25-135-12456-9 RIGHTWARDS ARROW WITH STROKE math \X219C 9-1246-246-35-25-26-9 LEFTWARDS WAVE ARROW math \X219D 9-1246-35-25-26-135-9 RIGHTWARDS WAVE ARROW math \X219E 9-1246-246-246-25-25-9 LEFTWARDS TWO HEADED ARROW math \X219F 9-1246-126-25-25-135-135-9 UPWARDS TWO HEADED ARROW math \X21A0 9-1246-25-25-135-135-9 RIGHTWARDS TWO HEADED ARROW math \X21A1 9-1246-146-25-25-135-135-9 DOWNWARDS TWO HEADED ARROW math \X21A2 9-1246-246-25-25-6-13456-9 LEFTWARDS ARROW WITH TAIL math \X21A3 9-1246-6-12346-25-25-135-9 RIGHTWARDS ARROW WITH TAIL math \X21A4 9-1246-246-25-25-1256-9 LEFTWARDS ARROW FROM BAR math \X21A5 9-1246-126-1256-25-25-135-9 UPWARDS ARROW FROM BAR math \X21A6 9-1246-1256-25-25-135-9 RIGHTWARDS ARROW FROM BAR math \X21A7 9-1246-146-1256-25-25-135-9 DOWNWARDS ARROW FROM BAR math \X21A8 9-1246-246-25-1256-25-135-9 UP DOWN ARROW WITH BASE math \X21A9 9-1246-246-25-25-6-135-9 LEFTWARDS ARROW WITH HOOK math \X21AA 9-1246-6-246-25-25-135-9 RIGHTWARDS ARROW WITH HOOK math \X21AB 9-1246-246-25-25-46-16-9 LEFTWARDS ARROW WITH LOOP math \X21AC 9-1246-46-16-25-25-135-9 RIGHTWARDS ARROW WITH LOOP math \X21AD 9-1246-246-35-25-26-135-9 LEFT RIGHT WAVE ARROW math \X21AE 9-1256-4-1246-246-25-25-135-9 LEFT RIGHT ARROW WITH STROKE math \X21AF 9-1246-146-35-26-35-1359 DOWNWARDS ZIGZAG ARROW math \X21B4 9-1246-6-1256-25-25-135-9 RIGHTWARDS ARROW WITH CORNER DOWNWARDS math \X21B5 9-1246-146-6-1256-25-25-135-9 DOWNWARDS ARROW WITH CORNER LEFTWARDS math \X21B6 9-1246-26-35-0-135-9 ANTICLOCKWISE TOP SEMICIRCLE ARROW math \X21B7 9-1246-246-26-0-35-9 CLOCKWISE TOP SEMICIRCLE ARROW math \X21BA 9-1246-26-35-135-9 ANTICLOCKWISE OPEN CIRCLE ARROW math \X21BB 9-1246-246-26-35-9 CLOCKWISE OPEN CIRCLE ARROW math \X21BC 9-1246-4-246-25-25-9 LEFTWARDS HARPOON WITH BARB UPWARDS math \X21BD 9-1246-6-246-25-25-9 LEFTWARDS HARPOON WITH BARB DOWNWARDS math \X21BE 9-1246-126-25-25-6-135-9 UPWARDS HARPOON WITH BARB RIGHTWARDS math \X21BF 9-1246-126-25-25-4-135-9 UPWARDS HARPOON WITH BARB LEFTWARDS math \X21C0 9-1246-25-25-4-135-9 RIGHTWARDS HARPOON WITH BARB UPWARDS math \X21C1 9-1246-25-25-6-135-9 RIGHTWARDS HARPOON WITH BARB DOWNWARS math \X21C2 9-1246-246-25-25-4-135-9 DOWNWARDS HARPOON WITH BARB RIGHTWARDS math \X21C3 9-1246-146-25-25-6-135-9 DOWNWARDS HARPOON WITH BARB LEFTWARDS math \X21C4 1246-25-25-135-1246-246-25-25 RIGHTWARDS ARROW OVER LEFTWARDS ARROW math \X21C5 1246-126-25-25-135-5-1246-146-25-25-135 UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW math \X21C6 1246-246-25-25-1246-25-25-135 LEFTWARDS ARROW OVER RIGHTWARDS ARROW math \X21C7 1246-245-25-25-1246-245-25-25 LEFTWARDS PAIRED ARROWS math \X21C8 1246-126-25-25-135-5-1246-126-25-25-135 UPWARDS PAIRED ARROWS math \X21C9 1246-25-25-135-1246-25-25-135 RIGHTWARDS PAIRED ARROWS math \X21CA 1246-146-25-25-135-5-1246-146-25-25-135 DOWNWARDS PAIRED ARROWS math \X21CB 1246-4-246-25-25-1246-25-25-4-135 LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON math \X21CC 1246-25-25-4-135-1246-4-246-25-25 RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON math \X21CD 9-1256-4-1246-246-246-25-25-9 LEFTWARDS DOUBLE ARROW WITH STROKE math \X21CE 9-1256-4-1246-246-246-25-25-135-135-9 LEFT RIGHT DOUBLE ARROW WITH STROKE math \X21CF 9-1256-4-1246-25-25-135-135-9 RIGHTWARDS DOUBLE ARROW WITH STROKE math \X21D0 9-1246-246-246-25-25-9 LEFTWARDS DOUBLE ARROW math \X21D1 9-1246-126-25-25-135-135-9 UPWARDS DOUBLE ARROW math \X21D2 9-1246-25-25-135-135-9 RIGHTWARDS DOUBLE ARROW math \X21D3 9-1246-126-25-25-135-135-9 DOWNWARDS DOUBLE ARROW math \X21D4 9-1246-246-246-25-25-135-135-9 LEFT RIGHT DOUBLE ARROW math \X21D5 9-1246-126-246-246-25-25-135-135-9 UP DOWN DOUBLE ARROW math \X21D6 9-1246-45-246-246-25-25-9 NORTH WEST DOUBLE ARROW math \X21D7 9-1246-45-25-25-135-135-9 NORTH EAST DOUBLE ARROW math \X21D8 9-1246-56-25-25-135-135-9 SOUTH EAST DOUBLE ARROW math \X21D9 9-1246-56-246-246-25-25-9 SOUTH WEST DOUBLE ARROW math \X21DA 9-1246-246-246-246-25-25-9 LEFTWARDS TRIPLE ARROW math \X21DB 9-1246-25-25-135-135-135-9 RIGHTWARDS TRIPLE ARROW math \X21DC 9-1246-246-26-36-35-25-26-9 LEFTWARDS SQUIGGLE ARROW math \X21DD 9-1246-26-36-35-25-26-135-9 RIGHTWARDS SQUIGGLE ARROW math \X21DE 9-1256-1256-4-1246-126-25-25-135-12456-9 UPWARDS ARROW WITH DOUBLE STROKE math \X21DF 9-1256-1256-4-1246-146-25-25-135-12456-9 DOWNWARDS ARROW WITH DOUBLE STROKE math \X21E0 9-1246-246-25-0-25-9 LEFTWARDS DASHED ARROW math \X21E1 9-1246-126-25-0-25-135-9 UPWARDS DASHED ARROW math \X21E2 9-1246-25-0-25-135-9 RIGHTWARDS DASHED ARROW math \X21E3 9-1246-146-25-9-25-135-9 DOWNWARDS DASHED ARROW math \X21E4 9-1246-1256-246-25-25-9 LEFTWARDS ARROW TO BAR math \X21E5 9-1246-25-25-135-1256-9 RIGHTWARDS ARROW TO BAR math \X21E6 9-1246-456-246-25-25-9 LEFTWARDS WHITE ARROW math \X21E7 9-1246-126-456-25-25-135-9 UPWARDS WHITE ARROW math \X21E8 9-1246-456-25-25-135-9 RIGHTWARDS WHITE ARROW math \X21E9 9-1246-146-456-25-25-135-9 DOWNWARDS WHITE ARROW math \X21F3 9-1246-126-456-246-25-25-135-9 UP DOWN WHITE ARROW math \X21F4 9-1246-25-25-135-46-16-9 RIGHT ARROW WITH SMALL CIRCLE math \X21F5 9-1246-146-25-25-135-5-1246-126-25-25-135-9 DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW math \X21F6 9-1246-25-25-135-1246-25-25-135-1246-25-25-135-9 THREE RIGHTWARDS ARROWS math \X21F7 9-1256-4-1246-246-25-25-12456-9 LEFTWARDS ARROW WITH VERTICAL STROKE math \X21F8 9-1256-4-1246-25-25-135-12456-9 RIGHTWARDS ARROW WITH VERTICAL STROKE math \X21F9 9-1256-4-1246-246-25-25-135-9 LEFT RIGHT ARROW WITH VERTICAL STROKE math \X21FA 9-1256-1256-4-1246-246-25-25-12456-9 LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE math \X21FB 9-1256-1256-4-1246-25-25-135-12456-9 RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE math \X21FC 9-1256-1256-4-1246-246-25-25-135-9 LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE math \X21FD 9-1246-1256-25-25-9 LEFTWARDS OPEN-HEADED ARROW math \X21FE 9-1246-25-25-1256-9 RIGHTWARDS OPEN-HEADED ARROW math \X21FF 9-1246-1256-25-25-1256-9 LEFT RIGHT OPEN-HEADED ARROW # End of Arrows math \X2207 46-1246 NABLA math \x2200 4-12346 FOR ALL math \X2234 9-6-16-9 THEREFORE math \X2235 9-4-34-9 BECAUSE math \X220E 9-456-1256-9 END OF PROOF math \x2208 4-15 ELEMENT OF math \X2209 34-4-15 NOT AN ELEMENT OF math \X220B 456-46-1 CONTAINS AS MEMBER math \X220C 34-456-46-1 DOES NOT CONTAIN AS MEMBER math \X220D 4-26 SMALL CONTAINS AS MEMBER math \x22C5 16 dot operator math \x2211 46-6-234 N-ARY SUMMATION math \x2212 36 MINUS SIGN math \x221E 6-123456 INFINITY math \x222B 2346 INTEGRAL math \x222C 2346-2346 DOUBLE INTEGRAL math \x222D 2346-2346-2346 TRIPLE INTEGRAL math \X222E 2346-4-1246-14-12456 CONTOUR INTEGRAL math \X2232 2346-4-1246-246-26-35-12456 CLOCKWISE CONTOUR INTEGRAL math \X2233 2346-4-1246-26-35-135-12456 ANTICLOCKWISE CONTOUR INTEGRAL math \x2260 0-34-46-13-0 NOT EQUAL TO math \x2261 456-123 IDENTICAL TO math \X2245 9-4-156-4-156-9 APPROXIMATELY EQUAL TO math \X224D 9-4-126-6-126-9 EQUIVALENT TO math \x2264 9-5-13-156-9 LESS-THAN OR EQUAL TO math \X2266 9-5-13-46-13-9 LESS-THAN OVER EQUAL TO math \x2265 9-46-2-156-9 GREATER-THAN OR EQUAL TO GREATER THAN OR EQUAL TO math \X2267 9-46-2-46-13-9 GREATER-THAN OVER EQUAL TO math \X2268 9-5-13-34-46-13-9 LESS-THAN BUT NOT EQUAL TO math \X2269 9-46-2-34-46-13-9 GREATER-THAN BUT NOT EQUAL TO math \X22DC 9-156-5-13-9 EQUAL TO OR LESS-THAN math \X22DD 9-156-46-2-9 EQUAL TO OR GREATER-THAN math \X226A 9-5-13-5-13-9 MUCH LESS-THAN math \X226B 9-46-2-46-2-9 MUCH GREATER-THAN math \X226D 9-34-4-126-6-126-9 NOT EQUIVALENT TO math \X226E 9-5-13-9 NOT LESS-THAN math \X226F 9-34-46-2-9 NOT GREATER-THAN math \X2270 9-34-5-13-156-9 NEITHER LESS-THAN NOR EQUAL TO math \X2271 9-34-46-2-156-9 NEITHER GREATER-THAN NOR EQUAL TO math \X2272 9-5-13-456-123-9 LESS-THAN OR EQUIVALENT TO math \X2273 9-46-2-456-123-9 GREATER-THAN OR EQUIVALENT TO math \X2274 9-34-5-13-456-123-9 NEITHER LESS-THAN NOR EQUIVALENT TO math \X2275 9-34-46-2-456-123-9 NEITHER GREATER-THAN NOR EQUIVALENT TO math \X2276 9-5-13-46-2-9 LESS-THAN OR GREATER-THAN math \X2277 9-46-2-5-13-9 GREATER-THAN OR LESS-THAN math \X2278 9-34-5-13-46-2-9 NEITHER LESS-THAN NOR GREATER-THAN math \X2279 9-34-46-2-5-13-9 NEITHER GREATER-THAN NOR LESS-THAN math \xf577 1246-135 contracted right arrow #missing chars Mike is adding math \X2229 46-146 INTERSECTION math \X222A 46-346 UNION math \X2282 456-5-13 SUBSET OF math \X2283 456-46-2 SUPERSET OF math \X2284 34-456-5-13 NOT A SUBSET OF math \X2285 34-456-46-2 NOT A SUPERSET OF math \X2286 456-5-13-156 SUBSET OF OR EQUAL TO math \X2287 46-2-156 SUPERSET OF OR EQUAL TO math \X2288 34-5-13-156 NEITHER A SUBSET OF NOR EQUAL TO math \X2289 34-46-2-156 NEITHER A SUPERSET OF NOR EQUAL TO math \X228A 456-5-13-34-46-13 SUBSET OF WITH NOT EQUAL TO math \X228B 456-46-2-34-46-13 SUPERSET OF WITH NOT EQUAL TO math \X2203 4-123456 THERE EXISTS math \X2204 34-4-123456 THERE DOES NOT EXIST math \X2202 4-145 PARTIAL DIFFERENTIAL math \X2205 456-356 EMPTY SET math \X25B3 1246-2345 Triangle math \X25B2 1246-456-2345 Filled Triangle math \X25BC 456-46-1246 BLACK DOWN-POINTING TRIANGLE math \X25BD 46-1246 WHITE DOWN-POINTING TRIANGLE math \X25CA 1246-456-14 filled Circle math \X25CB 1246-14 Circle math \X25A0 1246-456-256 filled Square math \X25A1 1246-256 Square math \X25AB 1246-456-1235 filled Rectangle math \X25AC 1246-1235 Rectangle math \X25B0 1246-456-1245 filled PARALLELOGRAM math \X25B1 1246-1245 PARALLELOGRAM math \X22A5 9-1246-1234-9 Perpendicular TO math \X22A5 9-34-1246-1234-9 not Perpendicular TO math \X2223 1256 DIVIDES math \X2224 34-1256 DOES NOT DIVIDE math \X2225 9-1246-123-9 PARALLEL TO math \X2226 9-34-1246-123-9 NOT PARALLEL TO math \X221F 1246-246-46-1235-12456 RIGHT ANGLE math \X2221 1246-246-456-1246-1246-1-12456 MEASURED ANGLE math \X2222 1246-246-456-1246-1246-1-12456 Spherical ANGLE math \X2220 1246-246 ANGLE math \X221D 9-56-23-9 PROPORTIONAL TO math \X2236 9-5-2-9 RATIO liblouis-2.5.3/tables/gu.ctb0000664000175000017500000000167312161041546012654 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Gujarati include gujarati.cti include text_nabcc.dis liblouis-2.5.3/tables/spaces.ctb0000664000175000017500000000242312161041546013511 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # This BRLTTY text subtable defines all the space characters to be empty # braille cells. # generated by ttbtest space \s 0 SPACE space \x00a0 0 NO-BREAK SPACE space \x2002 0 EN SPACE space \x2003 0 EM SPACE space \x2004 0 THREE-PER-EM SPACE space \x2005 0 FOUR-PER-EM SPACE space \x2006 0 SIX-PER-EM SPACE space \x2007 0 FIGURE SPACE space \x2008 0 PUNCTUATION SPACE space \x2009 0 THIN SPACE space \x200a 0 HAIR SPACE space \x202f 0 NARROW NO-BREAK SPACE space \x205f 0 MEDIUM MATHEMATICAL SPACE liblouis-2.5.3/tables/et-g0.utb0000664000175000017500000001164512161041546013177 00000000000000# liblouis: Estonian braille table # Based on the US.English chardef. # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2012 liblouis authors, Jürgen Dengo # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # Computer braille single-cell characters space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE include digits8Dots.uti include latinLetterDef8Dots.uti punctuation ( 236 punctuation } 267 punctuation ] 23456 punctuation ? 26 punctuation : 25 punctuation ) 356 punctuation ! 235 punctuation { 358 punctuation [ 12356 punctuation ' 5 punctuation - 36 punctuation . 3 punctuation " 56 punctuation ; 23 punctuation , 2 sign & 12346 sign $ 1246 sign \x20ac 123456-15 sign \x00A3 456 sign | 456 sign \\ 16 sign % 1456 sign * 35 sign # 3456 punctuation ` 4 sign _ 258 sign ^ 578 sign @ 47 math = 2356 math < 1358 math / 34 math > 2468 math + 235 math ~ 45 # Estonian specific characters uppercase \x0160 1567 LATIN UPPERCASE S WITH CARAT lowercase \x0161 156 LATIN LOWERCASE S WITH CARAT uppercase \x017d 23467 LATIN UPPERCASE Z WITH CARAT lowercase \x017e 2346 LATIN LOWERCASE Z WITH CARAT uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS lowercase \x00E4 345 LATIN SMALL LETTER A WITH DIAERESIS 0061 0308 LATIN uppercase \x00D6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS 004F 0308 lowercase \x00F6 246 LATIN SMALL LETTER O WITH DIAERESIS 006F 0308 uppercase \x00d5 1267 LATIN CAPITAL LETTER O WITH TILDE lowercase \x00F5 126 LATIN SMALL LETTER O WITH TILDE 006F 0303 LATIN uppercase \x00DC 12567 LATIN CAPITAL LETTER U WITH DIAERESIS 0055 0308 lowercase \x00FC 1256 LATIN SMALL LETTER U WITH DIAERESIS 0075 0308 # Accented letters marked in Estonian braille lowercase \x00DF 2346 LATIN SMALL LETTER SHARP S German uppercase \x00C7 123467 LATIN CAPITAL LETTER C WITH CEDILLA 0043 0327 lowercase \x00E7 12346 LATIN SMALL LETTER C WITH CEDILLA 0063 0327 LATIN uppercase \x00C0 123567 LATIN CAPITAL LETTER A WITH GRAVE 0041 0300 LATIN lowercase \x00E0 12356 LATIN SMALL LETTER A WITH GRAVE 0061 0300 LATIN uppercase \x00C8 23467 LATIN CAPITAL LETTER E WITH GRAVE 0045 0300 LATIN lowercase \x00E8 2346 LATIN SMALL LETTER E WITH GRAVE 0065 0300 LATIN uppercase \x00D9 234567 LATIN CAPITAL LETTER U WITH GRAVE 0055 0300 LATIN lowercase \x00F9 23456 LATIN SMALL LETTER U WITH GRAVE 0075 0300 LATIN uppercase \x00C2 167 LATIN CAPITAL LETTER A WITH CIRCUMFLEX 0041 0302 lowercase \x00E2 16 LATIN SMALL LETTER A WITH CIRCUMFLEX 0061 0302 uppercase \x00CA 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX 0045 0302 lowercase \x00EA 126 LATIN SMALL LETTER E WITH CIRCUMFLEX 0065 0302 uppercase \x00CE 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX 0049 0302 lowercase \x00EE 146 LATIN SMALL LETTER I WITH CIRCUMFLEX 0069 0302 uppercase \x00D4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX 004F 0302 lowercase \x00F4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX 006F 0302 uppercase \x00DB 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX 0055 0302 lowercase \x00FB 156 LATIN SMALL LETTER U WITH CIRCUMFLEX 0075 0302 uppercase \x00C9 1234567 LATIN CAPITAL LETTER E WITH ACUTE 0045 0301 LATIN lowercase \x00E9 123456 LATIN SMALL LETTER E WITH ACUTE 0065 0301 LATIN uppercase \x00CB 12467 LATIN CAPITAL LETTER E WITH DIAERESIS 0045 0308 lowercase \x00EB 1246 LATIN SMALL LETTER E WITH DIAERESIS 0065 0308 uppercase \x00CF 124567 LATIN CAPITAL LETTER I WITH DIAERESIS 0049 0308 lowercase \x00EF 12456 LATIN SMALL LETTER I WITH DIAERESIS 0069 0308 # Other characters uppercase \x00C1 123567 LATIN CAPITAL LETTER A WITH ACUTE 0041 0301 LATIN lowercase \x00E1 12356 LATIN SMALL LETTER A WITH ACUTE 0061 0301 LATIN uppercase \x00CD 347 LATIN CAPITAL LETTER I WITH ACUTE 0049 0301 LATIN lowercase \x00ED 34 LATIN SMALL LETTER I WITH ACUTE 0069 0301 LATIN uppercase \x00D3 3467 LATIN CAPITAL LETTER O WITH ACUTE 004F 0301 LATIN lowercase \x00F3 346 LATIN SMALL LETTER O WITH ACUTE 006F 0301 LATIN uppercase \x00DA 123567 LATIN CAPITAL LETTER U WITH ACUTE 0055 0301 LATIN lowercase \x00FA 23456 LATIN SMALL LETTER U WITH ACUTE 0075 0301 LATIN liblouis-2.5.3/tables/malayalam.cti0000664000175000017500000000767312161041546014214 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0d02 56 MALAYALAM SIGN ANUSVARA letter \x0d03 6 MALAYALAM SIGN VISARGA letter \x0d05 1 MALAYALAM LETTER A letter \x0d06 345 MALAYALAM LETTER AA letter \x0d07 24 MALAYALAM LETTER I letter \x0d08 35 MALAYALAM LETTER II letter \x0d09 136 MALAYALAM LETTER U letter \x0d0a 1256 MALAYALAM LETTER UU letter \x0d0e 347 MALAYALAM LETTER E letter \x0d0f 15 MALAYALAM LETTER EE letter \x0d10 34 MALAYALAM LETTER AI letter \x0d12 2467 MALAYALAM LETTER O letter \x0d13 135 MALAYALAM LETTER OO letter \x0d14 246 MALAYALAM LETTER AU letter \x0d15 13 MALAYALAM LETTER KA letter \x0d16 46 MALAYALAM LETTER KHA letter \x0d17 1234 MALAYALAM LETTER GA letter \x0d18 126 MALAYALAM LETTER GHA letter \x0d19 346 MALAYALAM LETTER NGA letter \x0d1a 14 MALAYALAM LETTER CA letter \x0d1b 16 MALAYALAM LETTER CHA letter \x0d1c 245 MALAYALAM LETTER JA letter \x0d1d 356 MALAYALAM LETTER JHA letter \x0d1e 25 MALAYALAM LETTER NYA letter \x0d1f 23456 MALAYALAM LETTER TTA letter \x0d20 2456 MALAYALAM LETTER TTHA letter \x0d21 1246 MALAYALAM LETTER DDA letter \x0d22 123456 MALAYALAM LETTER DDHA letter \x0d23 3456 MALAYALAM LETTER NNA letter \x0d24 2345 MALAYALAM LETTER TA letter \x0d25 1456 MALAYALAM LETTER THA letter \x0d26 145 MALAYALAM LETTER DA letter \x0d27 2346 MALAYALAM LETTER DHA letter \x0d28 1345 MALAYALAM LETTER NA letter \x0d2a 1234 MALAYALAM LETTER PA letter \x0d2b 235 MALAYALAM LETTER PHA letter \x0d2c 12 MALAYALAM LETTER BA letter \x0d2d 45 MALAYALAM LETTER BHA letter \x0d2e 134 MALAYALAM LETTER MA letter \x0d2f 13456 MALAYALAM LETTER YA letter \x0d30 1235 MALAYALAM LETTER RA letter \x0d31 12357 MALAYALAM LETTER RRA letter \x0d32 123 MALAYALAM LETTER LA letter \x0d33 1237 MALAYALAM LETTER LLA letter \x0d34 12378 MALAYALAM LETTER LLLA letter \x0d35 1236 MALAYALAM LETTER VA letter \x0d36 146 MALAYALAM LETTER SHA letter \x0d37 12346 MALAYALAM LETTER SSA letter \x0d38 234 MALAYALAM LETTER SA letter \x0d39 125 MALAYALAM LETTER HA letter \x0d3e 345 MALAYALAM VOWEL SIGN AA letter \x0d3f 24 MALAYALAM VOWEL SIGN I letter \x0d40 35 MALAYALAM VOWEL SIGN II letter \x0d41 136 MALAYALAM VOWEL SIGN U letter \x0d42 1256 MALAYALAM VOWEL SIGN UU letter \x0d46 347 MALAYALAM VOWEL SIGN E letter \x0d47 15 MALAYALAM VOWEL SIGN EE letter \x0d48 34 MALAYALAM VOWEL SIGN AI letter \x0d4a 2467 MALAYALAM VOWEL SIGN O letter \x0d4b 135 MALAYALAM VOWEL SIGN OO letter \x0d4c 246 MALAYALAM VOWEL SIGN AU letter \x0d4d 4 MALAYALAM SIGN VIRAMA letter \x0d66 245 MALAYALAM DIGIT ZERO letter \x0d67 1 MALAYALAM DIGIT ONE letter \x0d68 12 MALAYALAM DIGIT TWO letter \x0d69 14 MALAYALAM DIGIT THREE letter \x0d6a 145 MALAYALAM DIGIT FOUR letter \x0d6b 15 MALAYALAM DIGIT FIVE letter \x0d6c 124 MALAYALAM DIGIT SIX letter \x0d6d 1245 MALAYALAM DIGIT SEVEN letter \x0d6e 125 MALAYALAM DIGIT EIGHT letter \x0d6f 24 MALAYALAM DIGIT NINE liblouis-2.5.3/tables/Pl-Pl-g1.utb0000664000175000017500000001473612161041546013520 00000000000000# liblouis: Polish Grade 1 Braille Table # Created & maintained by Leon Ungier . include text_nabcc.dis # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 exclamation sign x0021 punctuation " 356 double quote x0022 sign # 3456 number sign x0023 sign $ 256 dollar sign x0024 sign % 4-356 percent sign x0025 sign & 456-12346 ampersand z0026 punctuation ' 3 apostrophe x0027 punctuation ( 2356 left parenthesis x0028 punctuation ) 2356 right parenthesis x0029 sign * 35-35 asterisk x002A math + 235 plus 002B punctuation , 2 coma 002C punctuation - 36 hyphen-minus 002D punctuation . 3 point 002E math / 456-34 solidus 002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B punctuation < 5-13 less-than sign x003C math = 2356 equal sign x003D math > 46-2 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 4-1 commercial at x0040 include latinLetterDef6Dots.uti punctuation [ 12356 left square bracket x005B sign \\ 2 reverse solidus x005C punctuation ] 23456 right square bracket x005D sign ^ 5 circumflex accent x005E sign _ 46 low line x005F sign ` 4 grave accent x0060 # a - z # 97 - 122 x0061-x007A punctuation { 246 left curly bracket x007B sign | 56 vertical line x007C punctuation } 12456 right curly bracket x007D math ~ 256 tilde x007E sign \x0080 15-136-1235-135 x0080 space \X00A0 0 no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 346 section sign x00A7 sign © 2356-6-14-2356 copyright x00A9 punctuation « 236 left-pointing double angle quotation x00AB punctuation \x00AD 36 soft hyphen sign ° 4-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign µ 46-134 micro sign x00B5 sign ¶ 4-1234-345 pilcrow sign (paragraph) x00B6 sign ¹ 1-27 superscript 1 sign x00B9 punctuation » 356 right-pointing double angle quotation x00BB math ¼ 6-16-34-1456 vulgar fraction one quarter x00BC math ½ 6-16-34-126 vulgar fraction one half x00BD math ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 letter a with grave x00C0 / 00E0 uplow \x00C1\x00E1 12356 letter a with acute x00E1 uplow \x00C2\x00E2 16 letter a with circumflex x00E2 uplow \x00C3\x00E3 126 letter a with tilde x00E3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 16 A with ring above x00C5 / 00E5 uplow \x00C6\x00E6 6-345 ae x00C6 uplow Çç 12346 letter c with cedilla x00C7 / 00E7 uplow Èè 2346 e with grave x00C8 / 00E8 uplow \x00C9\x00E9 123456 e with acute x00E9 uplow \x00CA\x00EA 126 e with circumflex x00EA uplow \x00CB\x00EB 1246 e with diaeresis x00EB uplow \x00CD\x00ED 34 i with acute x00ED uplow \x00CE\x00EE 146 i with circumflex x00EE uplow \x00CF\x00EF 12456 i with diaeresis x00CF / 00EF uplow \x00D3\x00F3 346 O with acute x00D3 / 00F3 uplow \x00D4\x00F4 1456 o with circumflex x00F4 uplow \x00D5\x00F5 246 o with tilde x00F5 uplow Öö 246 O with diaeresis x00D6 / 00F6 math × 236 multiplication sign x00D7 uplow \x00D8\x00F8 246 o with stroke x00D8 / 00F8 math ÷ 256 division sign x00F7 uplow \x00DA\x00FA 23456 u with acute x00DA / 00FA uplow \x00DB\x00FB 156 u with circumflex x00FB uplow \x00DC\x00FC 1256 u with diaeresis x00FC uplow \x00DD\x00FD 12346 y with acute x00DD / 00FD # the letter a with ogonek ----------------------------------- uplow \x0104\x0105 16 # the letter c with acute uplow \x0106\x0107 146 # the letter e with ogonek uplow \x0118\x0119 156 # the letter l with stroke uplow \x0141\x0142 126 # the letter n with acute uplow \x0143\x0144 1456 # the letter s with acute # always \x015A 246 x015A # always \x015B 246 uplow \x015A\x015B 246 # the letter z with acute # always \x0179 2346 x0179 # always \x017A 2346 uplow \x0179\x017A 2346 # the letter z with dot above # always \x017B 12346 x017B # always \x017C 12346 x017C uplow \x017B\x017C 12346 punctuation \x2010 36 # 8208 hyphen punctuation \x2011 36 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis # ------------------------------------------------------ capsign 46 # single capital letter indicator begcaps 4-6 # a block of consecutive capital letters indicator numsign 3456 # number sign, just one operand midnum , 3 midnum . 2 midnum + 235 midnum - 36 midnum / 256 midnum : 25 midnum = 2356 endnum # 56-3456 prepunc " 236 postpunc " 356 prepunc ' 6-236 postpunc ' 356-3 postpunc '' 356 postpunc ''' 356-3-356 repeated *** 16-16-16 prepunc `` 236 prepunc ` 6-236 repeated --- 36-36-36 repeated ___ 46-46-46 repeated ::: 25-25-25 repeated === 46-13-46-13-46-13 repeated ~~~ 4-156-4-156-4-156 always \s-\s 36-36 always \s-\scom 36-36-14-135-134 always ... 3-3-3 always .\s.\s. 3-3-3 . . . always \s­\s 36-36 # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip liblouis-2.5.3/tables/ga.ctb0000664000175000017500000001112212161041546012616 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2009 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Irish # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 # SPACE punctuation ! 235 # EXCLAMATION MARK punctuation " 2356 # QUOTATION MARK punctuation ' 3 # APOSTROPHE punctuation ( 236 # LEFT PARENTHESIS punctuation ) 356 # RIGHT PARENTHESIS punctuation , 2 # COMMA punctuation - 36 # HYPHEN-MINUS punctuation . 256 # FULL STOP include digits8Dots.uti punctuation : 25 # COLON punctuation ; 23 # SEMICOLON punctuation ? 236 # QUESTION MARK uppercase A 17 # LATIN CAPITAL LETTER A uppercase B 127 # LATIN CAPITAL LETTER B uppercase C 147 # LATIN CAPITAL LETTER C uppercase D 1457 # LATIN CAPITAL LETTER D uppercase E 157 # LATIN CAPITAL LETTER E uppercase F 1247 # LATIN CAPITAL LETTER F uppercase G 12457 # LATIN CAPITAL LETTER G uppercase H 1257 # LATIN CAPITAL LETTER H uppercase I 247 # LATIN CAPITAL LETTER I uppercase J 2457 # LATIN CAPITAL LETTER J uppercase K 137 # LATIN CAPITAL LETTER K uppercase L 1237 # LATIN CAPITAL LETTER L uppercase M 1347 # LATIN CAPITAL LETTER M uppercase N 13457 # LATIN CAPITAL LETTER N uppercase O 1357 # LATIN CAPITAL LETTER O uppercase P 12347 # LATIN CAPITAL LETTER P uppercase Q 123457 # LATIN CAPITAL LETTER Q uppercase R 12357 # LATIN CAPITAL LETTER R uppercase S 2347 # LATIN CAPITAL LETTER S uppercase T 23457 # LATIN CAPITAL LETTER T uppercase U 1367 # LATIN CAPITAL LETTER U uppercase V 12367 # LATIN CAPITAL LETTER V uppercase W 24567 # LATIN CAPITAL LETTER W uppercase X 13467 # LATIN CAPITAL LETTER X uppercase Y 134567 # LATIN CAPITAL LETTER Y uppercase Z 13567 # LATIN CAPITAL LETTER Z lowercase a 1 # LATIN SMALL LETTER A lowercase b 12 # LATIN SMALL LETTER B lowercase c 14 # LATIN SMALL LETTER C lowercase d 145 # LATIN SMALL LETTER D lowercase e 15 # LATIN SMALL LETTER E lowercase f 124 # LATIN SMALL LETTER F lowercase g 1245 # LATIN SMALL LETTER G lowercase h 125 # LATIN SMALL LETTER H lowercase i 24 # LATIN SMALL LETTER I lowercase j 245 # LATIN SMALL LETTER J lowercase k 13 # LATIN SMALL LETTER K lowercase l 123 # LATIN SMALL LETTER L lowercase m 134 # LATIN SMALL LETTER M lowercase n 1345 # LATIN SMALL LETTER N lowercase o 135 # LATIN SMALL LETTER O lowercase p 1234 # LATIN SMALL LETTER P lowercase q 12345 # LATIN SMALL LETTER Q lowercase r 1235 # LATIN SMALL LETTER R lowercase s 234 # LATIN SMALL LETTER S lowercase t 2345 # LATIN SMALL LETTER T lowercase u 136 # LATIN SMALL LETTER U lowercase v 1236 # LATIN SMALL LETTER V lowercase w 2456 # LATIN SMALL LETTER W lowercase x 1346 # LATIN SMALL LETTER X lowercase y 13456 # LATIN SMALL LETTER Y lowercase z 1356 # LATIN SMALL LETTER Z punctuation \x00a0 0 # NO-BREAK SPACE uppercase \x00c1 123467 # LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c9 1234567 # LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00cd 123567 # LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00d3 23467 # LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00da 234567 # LATIN CAPITAL LETTER U WITH ACUTE lowercase \x00e1 12346 # LATIN SMALL LETTER A WITH ACUTE lowercase \x00e9 123456 # LATIN SMALL LETTER E WITH ACUTE lowercase \x00ed 12356 # LATIN SMALL LETTER I WITH ACUTE lowercase \x00f3 2346 # LATIN SMALL LETTER O WITH ACUTE lowercase \x00fa 23456 # LATIN SMALL LETTER U WITH ACUTE space \x2002 0 # EN SPACE space \x2003 0 # EM SPACE space \x2004 0 # THREE-PER-EM SPACE space \x2005 0 # FOUR-PER-EM SPACE space \x2006 0 # SIX-PER-EM SPACE punctuation \x2007 0 # FIGURE SPACE space \x2008 0 # PUNCTUATION SPACE space \x2009 0 # THIN SPACE space \x200a 0 # HAIR SPACE punctuation \x202f 0 # NARROW NO-BREAK SPACE space \x205f 0 # MEDIUM MATHEMATICAL SPACE liblouis-2.5.3/tables/nemeth_edit.ctb0000664000175000017500000000270512161041546014523 00000000000000# liblouis Table for Post-Translation Editing # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Updated 6-18-08 by Mike Sivill include chardefs.cti repeated \s 0 always \ee\s`4 456-256 always \ee\s`1 6 always \ee\s`3 456-25 always \ee\s`2 456-23 always `7\s\eb 12356 always \ee\s`7 23456 always "\s 0 always \s,\s 6-0 context "\eb"[]$l"\ee" @56 context "\eb"[]","$l"\ee" @56 pass2 @1b-12 ? pass2 @1b-15 ? pass2 @1b-12-4-4 @4 liblouis-2.5.3/tables/sat.ctb0000664000175000017500000000174212161041546013025 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Santali include devanagari.cti include bengali.cti include oriya.cti include text_nabcc.dis liblouis-2.5.3/tables/it-it-comp6.utb0000664000175000017500000000677412161041546014342 00000000000000# liblouis: Italiano include text_nabcc.dis #--------------------- All chars definitions ------------------------------ space \t 0 tab # 9 space \s 0 blank # 32 punctuation ! 235 33 punctuation " 4 34 sign # 3456 35 sign $ 46 36 sign % 123456 37 sign & 12346 38 punctuation ' 3 39 punctuation ( 236 40 punctuation ) 356 41 punctuation * 35 42 sign + 235 43 midnum + 235 43 punctuation , 2 44 punctuation ­ 36 45 the hyphen-minus punctuation . 256 46 sign / 256 47 include digits6Dots.uti punctuation : 25 colon 58 x003A punctuation ; 23 semicolon 59 x003B math < 56 60 x003C math = 2356 equal sign 61 x003D math > 45 62 x003E punctuation ? 26 63 x003F sign @ 345 commercial at 64 x0040 include latinLetterDef6Dots.uti punctuation [ 12356 91 sign \\ 6 92 punctuation ] 23456 93 sign ^ 2346 94 sign _ 456 95 underscore sign ` 345 96 # a - z # 97 - 122 x0061 - x007A punctuation { 12356 123 sign | 34 124 punctuation } 23456 125 sign ~ 2346 126 sign \x0080 15-136-1235-135 x0080 space \X00A0 0 # no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 234-234 paragraph sign x00A7 sign © 2356-6-14-2356 copyright x00A9 punctuation « 236 left-pointing double quotation mark x00AB sign ° 356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign \x00B4 1256 acute accent sign \x00B5 46-134 # 181 µ micro sign x00B5 sign \x00B6 4-1234-345 ¶ pilcrow sign x00B6 sign ¹ 4-6-16 superscript 1 sign x00B9 punctuation » 356 right-pointing double quotation mark x00BB sign ¼ 6-16-34-1456 vulgar fraction one quarter x00BC sign ½ 6-16-34-126 vulgar fraction one half x00BD sign ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00D3\x00F3 346 math × 46-16 multiplication sign hex 0x00d7 math ÷ 46-34 division sign hex 0x00f7 uplow \x0104\x0105 16 uplow \x0106\x0107 146 uplow \x0118\x0119 156 uplow \x0141\x0142 126 uplow \x0143\x0144 1456 uplow \x00C0\x00E0 12356 # a with grave uplow \x00C8\x00E8 2346 # e with grave uplow \x00C9\x00E9 123456 # e with acute uplow \x00CC\x00EC 34 # i with grave above uplow \x00D2\x00F2 346 # o with grave above uplow \x00D9\x00F9 23456 # u with grave above #---------------------------------------------------------------------------- numsign 3456 # number sign, just one operand capsign 46 begcaps 4-6 repeated *** 16-16-16 prepunc `` 236 prepunc " 236 postpunc " 356 repeated ___ 46-46-46 repeated ::: 25-25-25 repeated === 46-13-46-13-46-13 repeated ~~~ 4-156-4-156-4-156 always \s­\s 36-36 always \s­\scom 36-36-14-135-134 always ... 3-3-3 always .\s.\s. 3-3-3 . . . repeated ­­­ 36-36-36 always \s­\s 36-36 # mathematical symbols midnum ­ 36 endnum % 46 # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip liblouis-2.5.3/tables/da-lt.ctb0000664000175000017500000002662712161041546013250 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Danish LogText (iso-8859-1) # Danish LogText users are accustomed to the percent sign (%) and the # exclamation point (!) being mapped to patterns which differ from the new 1252 # standard. LogText users will be more comfortable with this table. # generated by ttbtest letter \x0000 12345678 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 1578 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 24578 LINE FEED (LF) space \v 1378 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 13578 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 1345678 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 34578 ESCAPE letter \x001c 45678 INFORMATION SEPARATOR FOUR letter \x001d 278 INFORMATION SEPARATOR THREE letter \x001e 1234678 INFORMATION SEPARATOR TWO letter \x001f 235678 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 56 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation # 34568 NUMBER SIGN punctuation $ 1568 DOLLAR SIGN punctuation % 3568 PERCENT SIGN punctuation & 123468 AMPERSAND punctuation ' 6 APOSTROPHE punctuation ( 1268 LEFT PARENTHESIS punctuation ) 3458 RIGHT PARENTHESIS punctuation * 13468 ASTERISK punctuation + 2358 PLUS SIGN punctuation , 2 COMMA punctuation - 368 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 258 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 1348 LESS-THAN SIGN punctuation = 23568 EQUALS SIGN punctuation > 2348 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 478 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 12368 LEFT SQUARE BRACKET punctuation \\ 168 REVERSE SOLIDUS punctuation ] 14568 RIGHT SQUARE BRACKET punctuation ^ 67 CIRCUMFLEX ACCENT punctuation _ 78 LOW LINE punctuation ` 23567 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 2468 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 1358 RIGHT CURLY BRACKET punctuation ~ 68 TILDE letter \x007f 8 DELETE letter \x0080 4 letter \x0081 45 letter \x0082 457 BREAK PERMITTED HERE letter \x0083 5 NO BREAK HERE letter \x0084 2378 letter \x0085 235 NEXT LINE (NEL) letter \x0086 2357 START OF SELECTED AREA letter \x0087 23578 END OF SELECTED AREA letter \x0088 5678 CHARACTER TABULATION SET letter \x0089 678 CHARACTER TABULATION WITH JUSTIFICATION letter \x008a 2368 LINE TABULATION SET letter \x008b 456 PARTIAL LINE FORWARD letter \x008c 347 PARTIAL LINE BACKWARD letter \x008d 3567 REVERSE LINE FEED letter \x008e 3467 SINGLE SHIFT TWO letter \x008f 27 SINGLE SHIFT THREE letter \x0090 357 DEVICE CONTROL STRING letter \x0091 47 PRIVATE USE ONE letter \x0092 48 PRIVATE USE TWO letter \x0093 237 SET TRANSMIT STATE letter \x0094 568 CANCEL CHARACTER letter \x0095 37 MESSAGE WAITING letter \x0096 36 START OF GUARDED AREA letter \x0097 367 END OF GUARDED AREA letter \x0098 46 START OF STRING letter \x0099 257 letter \x009a 34 SINGLE CHARACTER INTRODUCER letter \x009b 4567 CONTROL SEQUENCE INTRODUCER letter \x009c 467 STRING TERMINATOR letter \x009d 23458 OPERATING SYSTEM COMMAND letter \x009e 346 PRIVACY MESSAGE letter \x009f 2345678 APPLICATION PROGRAM COMMAND punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 256 INVERTED EXCLAMATION MARK punctuation \x00a2 2578 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 2367 CURRENCY SIGN punctuation \x00a5 25678 YEN SIGN punctuation \x00a6 3478 BROKEN BAR punctuation \x00a7 578 SECTION SIGN punctuation \x00a8 23678 DIAERESIS punctuation \x00a9 345678 COPYRIGHT SIGN letter \x00aa 234678 FEMININE ORDINAL INDICATOR punctuation \x00ab 57 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 34567 NOT SIGN punctuation \x00ad 378 SOFT HYPHEN punctuation \x00ae 4578 REGISTERED SIGN punctuation \x00af 267 MACRON punctuation \x00b0 356 DEGREE SIGN punctuation \x00b1 123458 PLUS-MINUS SIGN punctuation \x00b2 238 SUPERSCRIPT TWO punctuation \x00b3 12348 SUPERSCRIPT THREE punctuation \x00b4 468 ACUTE ACCENT lowercase \x00b5 236 MICRO SIGN punctuation \x00b6 1234568 PILCROW SIGN punctuation \x00b7 38 MIDDLE DOT punctuation \x00b8 4678 CEDILLA punctuation \x00b9 28 SUPERSCRIPT ONE letter \x00ba 7 MASCULINE ORDINAL INDICATOR punctuation \x00bb 567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 13458 VULGAR FRACTION ONE QUARTER punctuation \x00bd 458 VULGAR FRACTION ONE HALF punctuation \x00be 3456 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 348 INVERTED QUESTION MARK uppercase \x00c0 123567 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 1235678 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 1678 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 14678 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 358 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 3457 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 23467 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 15678 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 12678 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 124567 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 35678 LATIN CAPITAL LETTER ETH uppercase \x00d1 1245678 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 124678 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 34678 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 145678 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 24678 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 13568 MULTIPLICATION SIGN uppercase \x00d8 2467 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 234567 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 125678 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 3578 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 2678 LATIN CAPITAL LETTER THORN lowercase \x00df 23468 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 123568 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 268 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 1468 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 58 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 345 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 3678 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 1368 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 134568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 12468 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 3468 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 12358 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 35 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2568 DIVISION SIGN lowercase \x00f8 246 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 12568 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 24568 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 138 LATIN SMALL LETTER THORN lowercase \x00ff 234568 LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/da-dk-g1.utb0000664000175000017500000000051412161041546013541 00000000000000# Danish Grade 1 Braille table # by Mike Sivill - # **** Display Opcodes include da-dk.dis include da.ctb # ** ** Character Definition Opcodes #include eurodefs.cti #include countries.cti always \s 0 #Blank represented by a blank braille cell always \t 0 #Ensures tab is a blank cell liblouis-2.5.3/tables/unicodedefs.cti0000664000175000017500000255006112161041546014542 00000000000000# \x0000 NULL # \x0001 START OF HEADING # \x0002 START OF TEXT # \x0003 END OF TEXT # \x0004 END OF TRANSMISSION # \x0005 ENQUIRY # \x0006 ACKNOWLEDGE # \x0007 BELL # \x0008 BACKSPACE # \x0009 CHARACTER TABULATION # \x000A LINE FEED (LF) # \x000B LINE TABULATION # \x000C Cc FORM FEED (FF) # \x000D CARRIAGE RETURN (CR) # \x000E SHIFT OUT # \x000F SHIFT IN # \x0010 DATA LINK ESCAPE # \x0011 DEVICE CONTROL ONE # \x0012 DEVICE CONTROL TWO # \x0013 DEVICE CONTROL THREE # \x0014 DEVICE CONTROL FOUR # \x0015 NEGATIVE ACKNOWLEDGE # \x0016 SYNCHRONOUS IDLE # \x0017 END OF TRANSMISSION BLOCK # \x0018 CANCEL # \x0019 END OF MEDIUM # \x001A SUBSTITUTE # \x001B ESCAPE # \x001C INFORMATION SEPARATOR FOUR # \x001D INFORMATION SEPARATOR THREE # \x001E INFORMATION SEPARATOR TWO # \x001F INFORMATION SEPARATOR ONE # \x0020 SPACE # \x0021 EXCLAMATION MARK # \x0022 QUOTATION MARK # \x0023 NUMBER SIGN # \x0024 DOLLAR SIGN # \x0025 PERCENT SIGN # \x0026 AMPERSAND # \x0027 APOSTROPHE APOSTROPHE-QUOTE # \x0028 LEFT PARENTHESIS OPENING PARENTHESIS # \x0029 RIGHT PARENTHESIS CLOSING PARENTHESIS # \x002A ASTERISK # \x002B PLUS SIGN # \x002C COMMA # \x002D HYPHEN-MINUS # \x002E FULL STOP PERIOD # \x002F SOLIDUS SLASH # \x0030 DIGIT ZERO Nd EN 0 # \x0031 DIGIT ONE Nd EN 1 1 1 # \x0032 DIGIT TWO Nd EN 2 2 2 # \x0033 DIGIT THREE Nd EN 3 3 3 # \x0034 DIGIT FOUR Nd EN 4 4 4 # \x0035 DIGIT FIVE Nd EN 5 5 5 # \x0036 DIGIT SIX Nd EN 6 6 6 # \x0037 DIGIT SEVEN Nd EN 7 7 7 # \x0038 DIGIT EIGHT Nd EN 8 8 8 # \x0039 DIGIT NINE Nd EN 9 9 9 # \x003A COLON # \x003B SEMICOLON # \x003C LESS-THAN SIGN # \x003D EQUALS SIGN # \x003E GREATER-THAN SIGN # \x003F QUESTION MARK # \x0040 COMMERCIAL AT # \x0041 LATIN CAPITAL LETTER A 0061 # \x0042 LATIN CAPITAL LETTER B 0062 # \x0043 LATIN CAPITAL LETTER C 0063 # \x0044 LATIN CAPITAL LETTER D 0064 # \x0045 LATIN CAPITAL LETTER E 0065 # \x0046 LATIN CAPITAL LETTER F 0066 # \x0047 LATIN CAPITAL LETTER G 0067 # \x0048 LATIN CAPITAL LETTER H 0068 # \x0049 LATIN CAPITAL LETTER I 0069 # \x004A LATIN CAPITAL LETTER J 006A # \x004B LATIN CAPITAL LETTER K 006B # \x004C LATIN CAPITAL LETTER 006C # \x004D LATIN CAPITAL LETTER M 006D # \x004E LATIN CAPITAL LETTER 006E # \x004F LATIN CAPITAL LETTER O 006F # \x0050 LATIN CAPITAL LETTER P 0070 # \x0051 LATIN CAPITAL LETTER Q 0071 # \x0052 LATIN CAPITAL LETTER 0072 # \x0053 LATIN CAPITAL LETTER S 0073 # \x0054 LATIN CAPITAL LETTER T 0074 # \x0055 LATIN CAPITAL LETTER U 0075 # \x0056 LATIN CAPITAL LETTER V 0076 # \x0057 LATIN CAPITAL LETTER W 0077 # \x0058 LATIN CAPITAL LETTER X 0078 # \x0059 LATIN CAPITAL LETTER Y 0079 # \x005A LATIN CAPITAL LETTER Z 007A # \x005B LEFT SQUARE BRACKET OPENING SQUARE BRACKET # \x005C REVERSE SOLIDUS BACKSLASH # \x005D RIGHT SQUARE BRACKET CLOSING SQUARE BRACKET # \x005E CIRCUMFLEX ACCENT SPACING CIRCUMFLEX # \x005F LOW LINE SPACING UNDERSCORE # \x0060 GRAVE ACCENT SPACING GRAVE # \x0061 LATIN SMALL LETTER A 0041 0041 # \x0062 LATIN SMALL LETTER B 0042 0042 # \x0063 LATIN SMALL LETTER C 0043 0043 # \x0064 LATIN SMALL LETTER D 0044 0044 # \x0065 LATIN SMALL LETTER E 0045 0045 # \x0066 LATIN SMALL LETTER F 0046 0046 # \x0067 LATIN SMALL LETTER G 0047 0047 # \x0068 LATIN SMALL LETTER H 0048 0048 # \x0069 LATIN SMALL LETTER I 0049 0049 # \x006A LATIN SMALL LETTER J 004A 004A # \x006B LATIN SMALL LETTER K 004B 004B # \x006C LATIN SMALL LETTER 004C 004C # \x006D LATIN SMALL LETTER M 004D 004D # \x006E LATIN SMALL LETTER 004E 004E # \x006F LATIN SMALL LETTER O 004F 004F # \x0070 LATIN SMALL LETTER P 0050 0050 # \x0071 LATIN SMALL LETTER Q 0051 0051 # \x0072 LATIN SMALL LETTER 0052 0052 # \x0073 LATIN SMALL LETTER S 0053 0053 # \x0074 LATIN SMALL LETTER T 0054 0054 # \x0075 LATIN SMALL LETTER U 0055 0055 # \x0076 LATIN SMALL LETTER V 0056 0056 # \x0077 LATIN SMALL LETTER W 0057 0057 # \x0078 LATIN SMALL LETTER X 0058 0058 # \x0079 LATIN SMALL LETTER Y 0059 0059 # \x007A LATIN SMALL LETTER Z 005A 005A # \x007B LEFT CURLY BRACKET OPENING CURLY BRACKET # \x007C VERTICAL LINE VERTICAL BAR # \x007D RIGHT CURLY BRACKET CLOSING CURLY BRACKET # \x007E TILDE # \x007F DELETE # \x0080 # \x0081 # \x0082 BREAK PERMITTED HERE # \x0083 NO BREAK HERE # \x0084 # \x0085 NEXT LINE (NEL) # \x0086 START OF SELECTED AREA # \x0087 END OF SELECTED AREA replace \x0088 # CHARACTER TABULATION SET replace \x0089 # CHARACTER TABULATION WITH JUSTIFICATION # \x008A LINE TABULATION SET # \x008B PARTIAL LINE FORWARD # \x008C PARTIAL LINE BACKWARD # \x008D REVERSE LINE FEED # \x008E SINGLE SHIFT TWO # \x008F SINGLE SHIFT THREE # \x0090 DEVICE CONTROL STRING # \x0091 PRIVATE USE ONE # \x0092 PRIVATE USE TWO # \x0093 SET TRANSMIT STATE # \x0094 CANCEL CHARACTER # \x0095 MESSAGE WAITING # \x0096 START OF GUARDED AREA # \x0097 END OF GUARDED AREA # \x0098 START OF STRING # \x0099 sign \x009A a SINGLE CHARACTER INTRODUCER # \x009B CONTROL SEQUENCE INTRODUCER # \x009C STRING TERMINATOR # \x009D OPERATING SYSTEM COMMAND # \x009E PRIVACY MESSAGE # \x009F APPLICATION PROGRAM COMMAND # space \x00A0 0 NO-BREAK SPACE 0020 NON-BREAKING SPACE # \x00A1 INVERTED EXCLAMATION MARK sign \x00A2 4-14 CENT SIGN # \x00A3 POUND SIGN # \x00A4 CURRENCY SIGN # \x00A5 YEN SIGN # \x00A6 BROKEN BAR BROKEN VERTICAL BAR sign \x00A7 4-234 SECTION SIGN # \x00A8 DIAERESIS 0020 0308 SPACING DIAERESIS sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN # \x00AA FEMININE ORDINAL INDICATOR 0061 # \x00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK LEFT POINTING GUILLEMET * # \x00AC NOT SIGN # \x00AD SOFT HYPHEN # \x00AE REGISTERED SIGN REGISTERED TRADE MARK SIGN # \x00AF MACRON 0020 0304 SPACING MACRON # \x00B0 DEGREE SIGN math \x00B1 346-456-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN # \x00B2 SUPERSCRIPT TWO 0032 2 2 SUPERSCRIPT DIGIT TWO # \x00B3 SUPERSCRIPT THREE 0033 3 3 SUPERSCRIPT DIGIT THREE # \x00B4 ACUTE ACCENT 0020 0301 SPACING ACUTE # \x00B5 MICRO SIGN 03BC 039C 039C # \x00B6 PILCROW SIGN PARAGRAPH SIGN math \x00B7 4-16 MIDDLE DOT # \x00B8 CEDILLA 0020 0327 SPACING CEDILLA # \x00B9 SUPERSCRIPT ONE 0031 1 1 SUPERSCRIPT DIGIT ONE # \x00BA MASCULINE ORDINAL INDICATOR 006F # \x00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK Pf Y RIGHT POINTING GU ILLEMET * # \x00BC VULGAR FRACTION ONE QUARTER No 0031 2044 0034 1/4 FRACTION ONE QUARTER # \x00BD VULGAR FRACTION ONE HALF No 0031 2044 0032 1/2 FRACTION ONE HALF # \x00BE VULGAR FRACTION THREE QUARTERS No 0033 2044 0034 3/4 FRACTION THREE QUARTERS # \x00BF INVERTED QUESTION MARK # \x00C0 LATIN CAPITAL LETTER A WITH GRAVE 0041 0300 LATIN CAPITAL LETTER A GRAVE 00E0 # \x00C1 LATIN CAPITAL LETTER A WITH ACUTE 0041 0301 LATIN CAPITAL LETTER A ACUTE 00E1 # \x00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX 0041 0302 LATIN CAPITAL LETTER A CIRCUMFLEX 00E2 # \x00C3 LATIN CAPITAL LETTER A WITH TILDE 0041 0303 LATIN CAPITAL LETTER A TILDE 00E3 # \x00C4 LATIN CAPITAL LETTER A WITH DIAERESIS 0041 0308 LATIN CAPITAL LETTER A DIAERESIS 00E4 # \x00C5 LATIN CAPITAL LETTER A WITH RING ABOVE 0041 030A LATIN CAPITAL LETTER A RING 00E5 # \x00C6 LATIN CAPITAL LETTER AE LATIN CAPITAL LETTER A E ash * 00E6 # \x00C7 LATIN CAPITAL LETTER C WITH CEDILLA 0043 0327 LATIN CAPITAL LETTER C CEDILLA 00E7 # \x00C8 LATIN CAPITAL LETTER E WITH GRAVE 0045 0300 LATIN CAPITAL LETTER E GRAVE 00E8 # \x00C9 LATIN CAPITAL LETTER E WITH ACUTE 0045 0301 LATIN CAPITAL LETTER E ACUTE 00E9 # \x00CA LATIN CAPITAL LETTER E WITH CIRCUMFLEX 0045 0302 LATIN CAPITAL LETTER E CIRCUMFLEX 00EA # \x00CB LATIN CAPITAL LETTER E WITH DIAERESIS 0045 0308 LATIN CAPITAL LETTER E DIAERESIS 00EB # \x00CC LATIN CAPITAL LETTER I WITH GRAVE 0049 0300 LATIN CAPITAL LETTER I GRAVE 00EC # \x00CD LATIN CAPITAL LETTER I WITH ACUTE 0049 0301 LATIN CAPITAL LETTER I ACUTE 00ED # \x00CE LATIN CAPITAL LETTER I WITH CIRCUMFLEX 0049 0302 LATIN CAPITAL LETTER I CIRCUMFLEX 00EE # \x00CF LATIN CAPITAL LETTER I WITH DIAERESIS 0049 0308 LATIN CAPITAL LETTER I DIAERESIS 00EF # \x00D0 LATIN CAPITAL LETTER ETH Icelandic 00F0 # \x00D1 LATIN CAPITAL LETTER WITH TILDE 004E 0303 LATIN CAPITAL LETTER TILDE 00F1 # \x00D2 LATIN CAPITAL LETTER O WITH GRAVE 004F 0300 LATIN CAPITAL LETTER O GRAVE 00F2 # \x00D3 LATIN CAPITAL LETTER O WITH ACUTE 004F 0301 LATIN CAPITAL LETTER O ACUTE 00F3 # \x00D4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX 004F 0302 LATIN CAPITAL LETTER O CIRCUMFLEX 00F4 # \x00D5 LATIN CAPITAL LETTER O WITH TILDE 004F 0303 LATIN CAPITAL LETTER O TILDE 00F5 # \x00D6 LATIN CAPITAL LETTER O WITH DIAERESIS 004F 0308 LATIN CAPITAL LETTER O DIAERESIS 00F6 math \x00D7 16 MULTIPLICATION SIGN # \x00D8 LATIN CAPITAL LETTER O WITH STROKE LATIN CAPITAL LETTER O SLASH 00F8 # \x00D9 LATIN CAPITAL LETTER U WITH GRAVE 0055 0300 LATIN CAPITAL LETTER U GRAVE 00F9 # \x00DA LATIN CAPITAL LETTER U WITH ACUTE 0055 0301 LATIN CAPITAL LETTER U ACUTE 00FA # \x00DB LATIN CAPITAL LETTER U WITH CIRCUMFLEX 0055 0302 LATIN CAPITAL LETTER U CIRCUMFLEX 00FB # \x00DC LATIN CAPITAL LETTER U WITH DIAERESIS 0055 0308 LATIN CAPITAL LETTER U DIAERESIS 00FC # \x00DD LATIN CAPITAL LETTER Y WITH ACUTE 0059 0301 LATIN CAPITAL LETTER Y ACUTE 00FD # \x00DE LATIN CAPITAL LETTER THORN Icelandic 00FE # \x00DF LATIN SMALL LETTER SHARP S German # \x00E0 LATIN SMALL LETTER A WITH GRAVE 0061 0300 LATIN SMALL LETTER A GRAVE 00C0 00C0 # \x00E1 LATIN SMALL LETTER A WITH ACUTE 0061 0301 LATIN SMALL LETTER A ACUTE 00C1 00C1 # \x00E2 LATIN SMALL LETTER A WITH CIRCUMFLEX 0061 0302 LATIN SMALL LETTER A CIRCUMFLEX 00C2 00C2 # \x00E3 LATIN SMALL LETTER A WITH TILDE 0061 0303 LATIN SMALL LETTER A TILDE 00C3 00C3 # \x00E4 LATIN SMALL LETTER A WITH DIAERESIS 0061 0308 LATIN SMALL LETTER A DIAERESIS 00C4 00C4 # \x00E5 LATIN SMALL LETTER A WITH RING ABOVE 0061 030A LATIN SMALL LETTER A RING 00C5 00C5 # \x00E6 LATIN SMALL LETTER AE LATIN SMALL LETTER A E ash * 00C6 00C6 # \x00E7 LATIN SMALL LETTER C WITH CEDILLA 0063 0327 LATIN SMALL LETTER C CEDILLA 00C7 00C7 # \x00E8 LATIN SMALL LETTER E WITH GRAVE 0065 0300 LATIN SMALL LETTER E GRAVE 00C8 00C8 # \x00E9 LATIN SMALL LETTER E WITH ACUTE 0065 0301 LATIN SMALL LETTER E ACUTE 00C9 00C9 # \x00EA LATIN SMALL LETTER E WITH CIRCUMFLEX 0065 0302 LATIN SMALL LETTER E CIRCUMFLEX 00CA 00CA # \x00EB LATIN SMALL LETTER E WITH DIAERESIS 0065 0308 LATIN SMALL LETTER E DIAERESIS 00CB 00CB # \x00EC LATIN SMALL LETTER I WITH GRAVE 0069 0300 LATIN SMALL LETTER I GRAVE 00CC 00CC # \x00ED LATIN SMALL LETTER I WITH ACUTE 0069 0301 LATIN SMALL LETTER I ACUTE 00CD 00CD # \x00EE LATIN SMALL LETTER I WITH CIRCUMFLEX 0069 0302 LATIN SMALL LETTER I CIRCUMFLEX 00CE 00CE # \x00EF LATIN SMALL LETTER I WITH DIAERESIS 0069 0308 LATIN SMALL LETTER I DIAERESIS 00CF 00CF # \x00F0 LATIN SMALL LETTER ETH Icelandic 00D0 00D0 # \x00F1 LATIN SMALL LETTER WITH TILDE 006E 0303 LATIN SMALL LETTER N TILDE 00D1 00D1 # \x00F2 LATIN SMALL LETTER O WITH GRAVE 006F 0300 LATIN SMALL LETTER O GRAVE 00D2 00D2 # \x00F3 LATIN SMALL LETTER O WITH ACUTE 006F 0301 LATIN SMALL LETTER O ACUTE 00D3 00D3 # \x00F4 LATIN SMALL LETTER O WITH CIRCUMFLEX 006F 0302 LATIN SMALL LETTER O CIRCUMFLEX 00D4 00D4 # \x00F5 LATIN SMALL LETTER O WITH TILDE 006F 0303 LATIN SMALL LETTER O TILDE 00D5 00D5 # \x00F6 LATIN SMALL LETTER O WITH DIAERESIS 006F 0308 LATIN SMALL LETTER O DIAERESIS 00D6 00D6 # \x00F7 DIVISION SIGN # \x00F8 LATIN SMALL LETTER O WITH STROKE LATIN SMALL LETTER O SLASH 00D8 00D8 # \x00F9 LATIN SMALL LETTER U WITH GRAVE 0075 0300 LATIN SMALL LETTER U GRAVE 00D9 00D9 # \x00FA LATIN SMALL LETTER U WITH ACUTE 0075 0301 LATIN SMALL LETTER U ACUTE 00DA 00DA # \x00FB LATIN SMALL LETTER U WITH CIRCUMFLEX 0075 0302 LATIN SMALL LETTER U CIRCUMFLEX 00DB 00DB # \x00FC LATIN SMALL LETTER U WITH DIAERESIS 0075 0308 LATIN SMALL LETTER U DIAERESIS 00DC 00DC # \x00FD LATIN SMALL LETTER Y WITH ACUTE 0079 0301 LATIN SMALL LETTER Y ACUTE 00DD 00DD # \x00FE LATIN SMALL LETTER THORN Icelandic 00DE 00DE # \x00FF LATIN SMALL LETTER Y WITH DIAERESIS 0079 0308 LATIN SMALL LETTER Y DIAERESIS 0178 0178 # \x0100 LATIN CAPITAL LETTER A WITH MACRON 0041 0304 LATIN CAPITAL LETTER A MACRON 0101 # \x0101 LATIN SMALL LETTER A WITH MACRON 0061 0304 LATIN SMALL LETTER A MACRON 0100 0100 # \x0102 LATIN CAPITAL LETTER A WITH BREVE 0041 0306 LATIN CAPITAL LETTER A BREVE 0103 # \x0103 LATIN SMALL LETTER A WITH BREVE 0061 0306 LATIN SMALL LETTER A BREVE 0102 0102 # \x0104 LATIN CAPITAL LETTER A WITH OGONEK 0041 0328 LATIN CAPITAL LETTER A OGONEK 0105 # \x0105 LATIN SMALL LETTER A WITH OGONEK 0061 0328 LATIN SMALL LETTER A OGONEK 0104 0104 # \x0106 LATIN CAPITAL LETTER C WITH ACUTE 0043 0301 LATIN CAPITAL LETTER C ACUTE 0107 # \x0107 LATIN SMALL LETTER C WITH ACUTE 0063 0301 LATIN SMALL LETTER C ACUTE 0106 0106 # \x0108 LATIN CAPITAL LETTER C WITH CIRCUMFLEX 0043 0302 LATIN CAPITAL LETTER C CIRCUMFLEX 0109 # \x0109 LATIN SMALL LETTER C WITH CIRCUMFLEX 0063 0302 LATIN SMALL LETTER C CIRCUMFLEX 0108 0108 # \x010A LATIN CAPITAL LETTER C WITH DOT ABOVE 0043 0307 LATIN CAPITAL LETTER C DOT 010B # \x010B LATIN SMALL LETTER C WITH DOT ABOVE 0063 0307 LATIN SMALL LETTER C DOT 010A 010A # \x010C LATIN CAPITAL LETTER C WITH CARON 0043 030C LATIN CAPITAL LETTER C HACEK 010D # \x010D LATIN SMALL LETTER C WITH CARON 0063 030C LATIN SMALL LETTER C HACEK 010C 010C # \x010E LATIN CAPITAL LETTER D WITH CARON 0044 030C LATIN CAPITAL LETTER D HACEK 010F # \x010F LATIN SMALL LETTER D WITH CARON 0064 030C LATIN SMALL LETTER D HACEK 010E 010E # \x0110 LATIN CAPITAL LETTER D WITH STROKE LATIN CAPITAL LETTER D BAR 0111 # \x0111 LATIN SMALL LETTER D WITH STROKE LATIN SMALL LETTER D BAR 0110 0110 # \x0112 LATIN CAPITAL LETTER E WITH MACRON 0045 0304 LATIN CAPITAL LETTER E MACRON 0113 # \x0113 LATIN SMALL LETTER E WITH MACRON 0065 0304 LATIN SMALL LETTER # \xE MACRON 0112 0112 # \x0114 LATIN CAPITAL LETTER E WITH BREVE 0045 0306 LATIN CAPITAL LETT # \xER E BREVE 0115 # \x0115 LATIN SMALL LETTER E WITH BREVE 0065 0306 LATIN SMALL LETTER E # \x BREVE 0114 0114 # \x0116 LATIN CAPITAL LETTER E WITH DOT ABOVE 0045 0307 LATIN CAPITAL # \xLETTER E DOT 0117 # \x0117 LATIN SMALL LETTER E WITH DOT ABOVE 0065 0307 LATIN SMALL LETT # \xER E DOT 0116 0116 # \x0118 LATIN CAPITAL LETTER E WITH OGONEK 0045 0328 LATIN CAPITAL LET # \xTER E OGONEK 0119 # \x0119 LATIN SMALL LETTER E WITH OGONEK 0065 0328 LATIN SMALL LETTER # \xE OGONEK 0118 0118 # \x011A LATIN CAPITAL LETTER E WITH CARON 0045 030C LATIN CAPITAL LETT # \xER E HACEK 011B # \x011B LATIN SMALL LETTER E WITH CARON 0065 030C LATIN SMALL LETTER E # \x HACEK 011A 011A # \x011C LATIN CAPITAL LETTER G WITH CIRCUMFLEX 0047 0302 LATIN CAPITAL # \x LETTER G CIRCUMFLEX 011D # \x011D LATIN SMALL LETTER G WITH CIRCUMFLEX 0067 0302 LATIN SMALL LET # \xTER G CIRCUMFLEX 011C 011C # \x011E LATIN CAPITAL LETTER G WITH BREVE 0047 0306 LATIN CAPITAL LETT # \xER G BREVE 011F # \x011F LATIN SMALL LETTER G WITH BREVE 0067 0306 LATIN SMALL LETTER G # \x BREVE 011E 011E # \x0120 LATIN CAPITAL LETTER G WITH DOT ABOVE 0047 0307 LATIN CAPITAL # \xLETTER G DOT 0121 # \x0121 LATIN SMALL LETTER G WITH DOT ABOVE 0067 0307 LATIN SMALL LETT # \xER G DOT 0120 0120 # \x0122 LATIN CAPITAL LETTER G WITH CEDILLA 0047 0327 LATIN CAPITAL LE # \xTTER G CEDILLA 0123 # \x0123 LATIN SMALL LETTER G WITH CEDILLA 0067 0327 LATIN SMALL LETTER # \x G CEDILLA 0122 0122 # \x0124 LATIN CAPITAL LETTER H WITH CIRCUMFLEX 0048 0302 LATIN CAPITAL # \x LETTER H CIRCUMFLEX 0125 # \x0125 LATIN SMALL LETTER H WITH CIRCUMFLEX 0068 0302 LATIN SMALL LET # \xTER H CIRCUMFLEX 0124 0124 # \x0126 LATIN CAPITAL LETTER H WITH STROKE LATIN CAPITAL LETTER H BAR # \x 0127 # \x0127 LATIN SMALL LETTER H WITH STROKE LATIN SMALL LETTER H BAR 01 # \x26 0126 # \x0128 LATIN CAPITAL LETTER I WITH TILDE 0049 0303 LATIN CAPITAL LETT # \xER I TILDE 0129 # \x0129 LATIN SMALL LETTER I WITH TILDE 0069 0303 LATIN SMALL LETTER I # \x TILDE 0128 0128 # \x012A LATIN CAPITAL LETTER I WITH MACRON 0049 0304 LATIN CAPITAL LET # \xTER I MACRON 012B # \x012B LATIN SMALL LETTER I WITH MACRON 0069 0304 LATIN SMALL LETTER # \xI MACRON 012A 012A # \x012C LATIN CAPITAL LETTER I WITH BREVE 0049 0306 LATIN CAPITAL LETT # \xER I BREVE 012D # \x012D LATIN SMALL LETTER I WITH BREVE 0069 0306 LATIN SMALL LETTER I # \x BREVE 012C 012C # \x012E LATIN CAPITAL LETTER I WITH OGONEK 0049 0328 LATIN CAPITAL LET # \xTER I OGONEK 012F # \x012F LATIN SMALL LETTER I WITH OGONEK 0069 0328 LATIN SMALL LETTER # \xI OGONEK 012E 012E # \x0130 LATIN CAPITAL LETTER I WITH DOT ABOVE 0049 0307 LATIN CAPITAL # \xLETTER I DOT 0069 # \x0131 LATIN SMALL LETTER DOTLESS I 0049 0049 # \x0132 LATIN CAPITAL LIGATURE IJ 0049 004A LATIN CAPITAL LET # \xTER I J 0133 # \x0133 LATIN SMALL LIGATURE IJ 0069 006A LATIN SMALL LETTER # \xI J 0132 0132 # \x0134 LATIN CAPITAL LETTER J WITH CIRCUMFLEX 004A 0302 LATIN CAPITAL # \x LETTER J CIRCUMFLEX 0135 # \x0135 LATIN SMALL LETTER J WITH CIRCUMFLEX 006A 0302 LATIN SMALL LET # \xTER J CIRCUMFLEX 0134 0134 # \x0136 LATIN CAPITAL LETTER K WITH CEDILLA 004B 0327 LATIN CAPITAL LE # \xTTER K CEDILLA 0137 # \x0137 LATIN SMALL LETTER K WITH CEDILLA 006B 0327 LATIN SMALL LETTER # \x K CEDILLA 0136 0136 # \x0138 LATIN SMALL LETTER KRA Greenlandic # \x0139 LATIN CAPITAL LETTER WITH ACUTE 004C 0301 LATIN CAPITAL LETT # \xER ACUTE 013A # \x013A LATIN SMALL LETTER WITH ACUTE 006C 0301 LATIN SMALL LETTER L # \x ACUTE 0139 0139 # \x013B LATIN CAPITAL LETTER WITH CEDILLA 004C 0327 LATIN CAPITAL LE # \xTTER CEDILLA 013C # \x013C LATIN SMALL LETTER WITH CEDILLA 006C 0327 LATIN SMALL LETTER # \x CEDILLA 013B 013B # \x013D LATIN CAPITAL LETTER WITH CARON 004C 030C LATIN CAPITAL LETT # \xER HACEK 013E # \x013E LATIN SMALL LETTER WITH CARON 006C 030C LATIN SMALL LETTER L # \x HACEK 013D 013D # \x013F LATIN CAPITAL LETTER WITH MIDDLE DOT 004C 00B7 0 # \x140 # \x0140 LATIN SMALL LETTER WITH MIDDLE DOT 006C 00B7 013F # \x 013F # \x0141 LATIN CAPITAL LETTER WITH STROKE LATIN CAPITAL LETTER SLA # \xSH 0142 # \x0142 LATIN SMALL LETTER WITH STROKE LATIN SMALL LETTER SLASH # \x0141 0141 # \x0143 LATIN CAPITAL LETTER WITH ACUTE 004E 0301 LATIN CAPITAL LETT # \xER ACUTE 0144 # \x0144 LATIN SMALL LETTER WITH ACUTE 006E 0301 LATIN SMALL LETTER N # \x ACUTE 0143 0143 # \x0145 LATIN CAPITAL LETTER WITH CEDILLA 004E 0327 LATIN CAPITAL LE # \xTTER CEDILLA 0146 # \x0146 LATIN SMALL LETTER WITH CEDILLA 006E 0327 LATIN SMALL LETTER # \x CEDILLA 0145 0145 # \x0147 LATIN CAPITAL LETTER WITH CARON 004E 030C LATIN CAPITAL LETT # \xER HACEK 0148 # \x0148 LATIN SMALL LETTER WITH CARON 006E 030C LATIN SMALL LETTER N # \x HACEK 0147 0147 # \x0149 LATIN SMALL LETTER PRECEDED BY APOSTROPHE 02BC 006E N # \x LATIN SMALL LETTER APOSTROPHE # \x014A LATIN CAPITAL LETTER ENG Sami 014B # \x014B LATIN SMALL LETTER ENG Sami 014A 014A # \x014C LATIN CAPITAL LETTER O WITH MACRON 004F 0304 LATIN CAPITAL LET # \xTER O MACRON 014D # \x014D LATIN SMALL LETTER O WITH MACRON 006F 0304 LATIN SMALL LETTER # \xO MACRON 014C 014C # \x014E LATIN CAPITAL LETTER O WITH BREVE 004F 0306 LATIN CAPITAL LETT # \xER O BREVE 014F # \x014F LATIN SMALL LETTER O WITH BREVE 006F 0306 LATIN SMALL LETTER O # \x BREVE 014E 014E # \x0150 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE 004F 030B LATIN CAPIT # \xAL LETTER O DOUBLE ACUTE 0151 # \x0151 LATIN SMALL LETTER O WITH DOUBLE ACUTE 006F 030B LATIN SMALL L # \xETTER O DOUBLE ACUTE 0150 0150 # \x0152 LATIN CAPITAL LIGATURE OE LATIN CAPITAL LETTER O E 0153 # \x0153 LATIN SMALL LIGATURE OE LATIN SMALL LETTER O E 0152 0152 # \x0154 LATIN CAPITAL LETTER WITH ACUTE 0052 0301 LATIN CAPITAL LETT # \xER ACUTE 0155 # \x0155 LATIN SMALL LETTER WITH ACUTE 0072 0301 LATIN SMALL LETTER R # \x ACUTE 0154 0154 # \x0156 LATIN CAPITAL LETTER WITH CEDILLA 0052 0327 LATIN CAPITAL LE # \xTTER CEDILLA 0157 # \x0157 LATIN SMALL LETTER WITH CEDILLA 0072 0327 LATIN SMALL LETTER # \x CEDILLA 0156 0156 # \x0158 LATIN CAPITAL LETTER WITH CARON 0052 030C LATIN CAPITAL LETT # \xER HACEK 0159 # \x0159 LATIN SMALL LETTER WITH CARON 0072 030C LATIN SMALL LETTER R # \x HACEK 0158 0158 # \x015A LATIN CAPITAL LETTER S WITH ACUTE 0053 0301 LATIN CAPITAL LETT # \xER S ACUTE 015B # \x015B LATIN SMALL LETTER S WITH ACUTE 0073 0301 LATIN SMALL LETTER S # \x ACUTE 015A 015A # \x015C LATIN CAPITAL LETTER S WITH CIRCUMFLEX 0053 0302 LATIN CAPITAL # \x LETTER S CIRCUMFLEX 015D # \x015D LATIN SMALL LETTER S WITH CIRCUMFLEX 0073 0302 LATIN SMALL LET # \xTER S CIRCUMFLEX 015C 015C # \x015E LATIN CAPITAL LETTER S WITH CEDILLA 0053 0327 LATIN CAPITAL LE # \xTTER S CEDILLA * 015F # \x015F LATIN SMALL LETTER S WITH CEDILLA 0073 0327 LATIN SMALL LETTER # \x S CEDILLA * 015E 015E # \x0160 LATIN CAPITAL LETTER S WITH CARON 0053 030C LATIN CAPITAL LETT # \xER S HACEK 0161 # \x0161 LATIN SMALL LETTER S WITH CARON 0073 030C LATIN SMALL LETTER S # \x HACEK 0160 0160 # \x0162 LATIN CAPITAL LETTER T WITH CEDILLA 0054 0327 LATIN CAPITAL LE # \xTTER T CEDILLA * 0163 # \x0163 LATIN SMALL LETTER T WITH CEDILLA 0074 0327 LATIN SMALL LETTER # \x T CEDILLA * 0162 0162 # \x0164 LATIN CAPITAL LETTER T WITH CARON 0054 030C LATIN CAPITAL LETT # \xER T HACEK 0165 # \x0165 LATIN SMALL LETTER T WITH CARON 0074 030C LATIN SMALL LETTER T # \x HACEK 0164 0164 # \x0166 LATIN CAPITAL LETTER T WITH STROKE LATIN CAPITAL LETTER T BAR # \x 0167 # \x0167 LATIN SMALL LETTER T WITH STROKE LATIN SMALL LETTER T BAR 01 # \x66 0166 # \x0168 LATIN CAPITAL LETTER U WITH TILDE 0055 0303 LATIN CAPITAL LETT # \xER U TILDE 0169 # \x0169 LATIN SMALL LETTER U WITH TILDE 0075 0303 LATIN SMALL LETTER U # \x TILDE 0168 0168 # \x016A LATIN CAPITAL LETTER U WITH MACRON 0055 0304 LATIN CAPITAL LET # \xTER U MACRON 016B # \x016B LATIN SMALL LETTER U WITH MACRON 0075 0304 LATIN SMALL LETTER # \xU MACRON 016A 016A # \x016C LATIN CAPITAL LETTER U WITH BREVE 0055 0306 LATIN CAPITAL LETT # \xER U BREVE 016D # \x016D LATIN SMALL LETTER U WITH BREVE 0075 0306 LATIN SMALL LETTER U # \x BREVE 016C 016C # \x016E LATIN CAPITAL LETTER U WITH RING ABOVE 0055 030A LATIN CAPITAL # \x LETTER U RING 016F # \x016F LATIN SMALL LETTER U WITH RING ABOVE 0075 030A LATIN SMALL LET # \xTER U RING 016E 016E # \x0170 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE 0055 030B LATIN CAPIT # \xAL LETTER U DOUBLE ACUTE 0171 # \x0171 LATIN SMALL LETTER U WITH DOUBLE ACUTE 0075 030B LATIN SMALL L # \xETTER U DOUBLE ACUTE 0170 0170 # \x0172 LATIN CAPITAL LETTER U WITH OGONEK 0055 0328 LATIN CAPITAL LET # \xTER U OGONEK 0173 # \x0173 LATIN SMALL LETTER U WITH OGONEK 0075 0328 LATIN SMALL LETTER # \xU OGONEK 0172 0172 # \x0174 LATIN CAPITAL LETTER W WITH CIRCUMFLEX 0057 0302 LATIN CAPITAL # \x LETTER W CIRCUMFLEX 0175 # \x0175 LATIN SMALL LETTER W WITH CIRCUMFLEX 0077 0302 LATIN SMALL LET # \xTER W CIRCUMFLEX 0174 0174 # \x0176 LATIN CAPITAL LETTER Y WITH CIRCUMFLEX 0059 0302 LATIN CAPITAL # \x LETTER Y CIRCUMFLEX 0177 # \x0177 LATIN SMALL LETTER Y WITH CIRCUMFLEX 0079 0302 LATIN SMALL LET # \xTER Y CIRCUMFLEX 0176 0176 # \x0178 LATIN CAPITAL LETTER Y WITH DIAERESIS 0059 0308 LATIN CAPITAL # \xLETTER Y DIAERESIS 00FF # \x0179 LATIN CAPITAL LETTER Z WITH ACUTE 005A 0301 LATIN CAPITAL LETT # \xER Z ACUTE 017A # \x017A LATIN SMALL LETTER Z WITH ACUTE 007A 0301 LATIN SMALL LETTER Z # \x ACUTE 0179 0179 # \x017B LATIN CAPITAL LETTER Z WITH DOT ABOVE 005A 0307 LATIN CAPITAL # \xLETTER Z DOT 017C # \x017C LATIN SMALL LETTER Z WITH DOT ABOVE 007A 0307 LATIN SMALL LETT # \xER Z DOT 017B 017B # \x017D LATIN CAPITAL LETTER Z WITH CARON 005A 030C LATIN CAPITAL LETT # \xER Z HACEK 017E # \x017E LATIN SMALL LETTER Z WITH CARON 007A 030C LATIN SMALL LETTER Z # \x HACEK 017D 017D # \x017F LATIN SMALL LETTER LONG S 0073 0053 0053 # \x0180 LATIN SMALL LETTER B WITH STROKE LATIN SMALL LETTER B BAR # \x0181 LATIN CAPITAL LETTER B WITH HOOK LATIN CAPITAL LETTER B HOOK # \x 0253 # \x0182 LATIN CAPITAL LETTER B WITH TOPBAR LATIN CAPITAL LETTER B TOP # \xBAR 0183 # \x0183 LATIN SMALL LETTER B WITH TOPBAR LATIN SMALL LETTER B TOPBAR # \x 0182 0182 # \x0184 LATIN CAPITAL LETTER TONE SIX 0185 # \x0185 LATIN SMALL LETTER TONE SIX 0184 0184 # \x0186 LATIN CAPITAL LETTER OPEN O 0254 # \x0187 LATIN CAPITAL LETTER C WITH HOOK LATIN CAPITAL LETTER C HOOK # \x 0188 # \x0188 LATIN SMALL LETTER C WITH HOOK LATIN SMALL LETTER C HOOK 018 # \x7 0187 # \x0189 LATIN CAPITAL LETTER AFRICAN D * 0256 # \x018A LATIN CAPITAL LETTER D WITH HOOK LATIN CAPITAL LETTER D HOOK # \x 0257 # \x018B LATIN CAPITAL LETTER D WITH TOPBAR LATIN CAPITAL LETTER D TOP # \xBAR 018C # \x018C LATIN SMALL LETTER D WITH TOPBAR LATIN SMALL LETTER D TOPBAR # \x 018B 018B # \x018D LATIN SMALL LETTER TURNED DELTA # \x018E LATIN CAPITAL LETTER REVERSED E LATIN CAPITAL LETTER TURNED E # \x 01DD # \x018F LATIN CAPITAL LETTER SCHWA 0259 # \x0190 LATIN CAPITAL LETTER OPEN E LATIN CAPITAL LETTER EPSILON 02 # \x5B # \x0191 LATIN CAPITAL LETTER F WITH HOOK LATIN CAPITAL LETTER F HOOK # \x 0192 # \x0192 LATIN SMALL LETTER F WITH HOOK LATIN SMALL LETTER SCRIPT F 0 # \x191 0191 # \x0193 LATIN CAPITAL LETTER G WITH HOOK LATIN CAPITAL LETTER G HOOK # \x 0260 # \x0194 LATIN CAPITAL LETTER GAMMA 0263 # \x0195 LATIN SMALL LETTER HV LATIN SMALL LETTER H V hwair 01F6 01F6 # \x0196 LATIN CAPITAL LETTER IOTA 0269 # \x0197 LATIN CAPITAL LETTER I WITH STROKE LATIN CAPITAL LETTER BARRE # \xD I 0268 # \x0198 LATIN CAPITAL LETTER K WITH HOOK LATIN CAPITAL LETTER K HOOK # \x 0199 # \x0199 LATIN SMALL LETTER K WITH HOOK LATIN SMALL LETTER K HOOK 019 # \x8 0198 # \x019A LATIN SMALL LETTER WITH BAR LATIN SMALL LETTER BARRED # \x019B LATIN SMALL LETTER LAMBDA WITH STROKE LATIN SMALL LETTER BARR # \xED LAMBDA # \x019C LATIN CAPITAL LETTER TURNED M 026F # \x019D LATIN CAPITAL LETTER WITH LEFT HOOK LATIN CAPITAL LETTER # \xHOOK 0272 # \x019E LATIN SMALL LETTER WITH LONG RIGHT LEG 0220 0220 # \x019F LATIN CAPITAL LETTER O WITH MIDDLE TILDE LATIN CAPITAL LETTER # \x BARRED O * 0275 # \x01A0 LATIN CAPITAL LETTER O WITH HORN 004F 031B LATIN CAPITAL LETTE # \xR O HORN 01A1 # \x01A1 LATIN SMALL LETTER O WITH HORN 006F 031B LATIN SMALL LETTER O # \xHORN 01A0 01A0 # \x01A2 LATIN CAPITAL LETTER OI LATIN CAPITAL LETTER O I gha 01A3 # \x01A3 LATIN SMALL LETTER OI LATIN SMALL LETTER O I gha 01A2 01A2 # \x01A4 LATIN CAPITAL LETTER P WITH HOOK LATIN CAPITAL LETTER P HOOK # \x 01A5 # \x01A5 LATIN SMALL LETTER P WITH HOOK LATIN SMALL LETTER P HOOK 01A # \x4 01A4 # \x01A6 LATIN LETTER YR LATIN LETTER Y * 0280 # \x01A7 LATIN CAPITAL LETTER TONE TWO 01A8 # \x01A8 LATIN SMALL LETTER TONE TWO 01A7 01A7 # \x01A9 LATIN CAPITAL LETTER ESH 0283 # \x01AA LATIN LETTER REVERSED ESH LOOP # \x01AB LATIN SMALL LETTER T WITH PALATAL HOOK LATIN SMALL LETTER T P # \xALATAL HOOK # \x01AC LATIN CAPITAL LETTER T WITH HOOK LATIN CAPITAL LETTER T HOOK # \x 01AD # \x01AD LATIN SMALL LETTER T WITH HOOK LATIN SMALL LETTER T HOOK 01A # \xC 01AC # \x01AE LATIN CAPITAL LETTER T WITH RETROFLEX HOOK LATIN CAPITAL LETT # \xER T RETROFLEX HOOK 0288 # \x01AF LATIN CAPITAL LETTER U WITH HORN 0055 031B LATIN CAPITAL LETTE # \xR U HORN 01B0 # \x01B0 LATIN SMALL LETTER U WITH HORN 0075 031B LATIN SMALL LETTER U # \xHORN 01AF 01AF # \x01B1 LATIN CAPITAL LETTER UPSILON 028A # \x01B2 LATIN CAPITAL LETTER V WITH HOOK LATIN CAPITAL LETTER SCRIPT # \xV 028B # \x01B3 LATIN CAPITAL LETTER Y WITH HOOK LATIN CAPITAL LETTER Y HOOK # \x 01B4 # \x01B4 LATIN SMALL LETTER Y WITH HOOK LATIN SMALL LETTER Y HOOK 01B # \x3 01B3 # \x01B5 LATIN CAPITAL LETTER Z WITH STROKE LATIN CAPITAL LETTER Z BAR # \x 01B6 # \x01B6 LATIN SMALL LETTER Z WITH STROKE LATIN SMALL LETTER Z BAR 01 # \xB5 01B5 # \x01B7 LATIN CAPITAL LETTER EZH LATIN CAPITAL LETTER YOGH 0292 # \x01B8 LATIN CAPITAL LETTER EZH REVERSED LATIN CAPITAL LETTER REVERS # \xED YOGH 01B9 # \x01B9 LATIN SMALL LETTER EZH REVERSED LATIN SMALL LETTER REVERSED Y # \xOGH 01B8 01B8 # \x01BA LATIN SMALL LETTER EZH WITH TAIL LATIN SMALL LETTER YOGH WITH # \x TAIL # \x01BB LATIN LETTER TWO WITH STROKE LATIN LETTER TWO BAR # \x01BC LATIN CAPITAL LETTER TONE FIVE 01BD # \x01BD LATIN SMALL LETTER TONE FIVE 01BC 01BC # \x01BE LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE LATIN LETTER I # \xNVERTED GLOTTAL STOP BAR # \x01BF LATIN LETTER WYNN 01F7 01F7 # \x01C0 LATIN LETTER DENTAL CLICK LATIN LETTER PIPE # \x01C1 LATIN LETTER LATERAL CLICK LATIN LETTER DOUBLE PIPE # \x01C2 LATIN LETTER ALVEOLAR CLICK LATIN LETTER PIPE DOUBLE BAR # \x01C3 LATIN LETTER RETROFLEX CLICK LATIN LETTER EXCLAMATION MARK # \x # \x01C4 LATIN CAPITAL LETTER DZ WITH CARON 0044 017D LATIN CA # \xPITAL LETTER D Z HACEK 01C6 01C5 # \x01C5 LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON Lt 0044 # \x 017E LATIN LETTER CAPITAL D SMALL Z HACEK 01C4 01C6 01C5 # \x01C6 LATIN SMALL LETTER DZ WITH CARON 0064 017E LATIN SMAL # \xL LETTER D Z HACEK 01C4 01C5 # \x01C7 LATIN CAPITAL LETTER LJ 004C 004A LATIN CAPITAL LETTE # \xR J 01C9 01C8 # \x01C8 LATIN CAPITAL LETTER WITH SMALL LETTER J Lt 004C 006A # \xLATIN LETTER CAPITAL SMALL J 01C7 01C9 01C8 # \x01C9 LATIN SMALL LETTER LJ 006C 006A LATIN SMALL LETTER # \xJ 01C7 01C8 # \x01CA LATIN CAPITAL LETTER NJ 004E 004A LATIN CAPITAL LETTE # \xR J 01CC 01CB # \x01CB LATIN CAPITAL LETTER WITH SMALL LETTER J Lt 004E 006A # \xLATIN LETTER CAPITAL SMALL J 01CA 01CC 01CB # \x01CC LATIN SMALL LETTER NJ 006E 006A LATIN SMALL LETTER # \xJ 01CA 01CB # \x01CD LATIN CAPITAL LETTER A WITH CARON 0041 030C LATIN CAPITAL LETT # \xER A HACEK 01CE # \x01CE LATIN SMALL LETTER A WITH CARON 0061 030C LATIN SMALL LETTER A # \x HACEK 01CD 01CD # \x01CF LATIN CAPITAL LETTER I WITH CARON 0049 030C LATIN CAPITAL LETT # \xER I HACEK 01D0 # \x01D0 LATIN SMALL LETTER I WITH CARON 0069 030C LATIN SMALL LETTER I # \x HACEK 01CF 01CF # \x01D1 LATIN CAPITAL LETTER O WITH CARON 004F 030C LATIN CAPITAL LETT # \xER O HACEK 01D2 # \x01D2 LATIN SMALL LETTER O WITH CARON 006F 030C LATIN SMALL LETTER O # \x HACEK 01D1 01D1 # \x01D3 LATIN CAPITAL LETTER U WITH CARON 0055 030C LATIN CAPITAL LETT # \xER U HACEK 01D4 # \x01D4 LATIN SMALL LETTER U WITH CARON 0075 030C LATIN SMALL LETTER U # \x HACEK 01D3 01D3 # \x01D5 LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON 00DC 0304 LAT # \xIN CAPITAL LETTER U DIAERESIS MACRON 01D6 # \x01D6 LATIN SMALL LETTER U WITH DIAERESIS AND MACRON 00FC 0304 LATIN # \x SMALL LETTER U DIAERESIS MACRON 01D5 01D5 # \x01D7 LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE 00DC 0301 LATI # \xN CAPITAL LETTER U DIAERESIS ACUTE 01D8 # \x01D8 LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE 00FC 0301 LATIN # \xSMALL LETTER U DIAERESIS ACUTE 01D7 01D7 # \x01D9 LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON 00DC 030C LATI # \xN CAPITAL LETTER U DIAERESIS HACEK 01DA # \x01DA LATIN SMALL LETTER U WITH DIAERESIS AND CARON 00FC 030C LATIN # \xSMALL LETTER U DIAERESIS HACEK 01D9 01D9 # \x01DB LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE 00DC 0300 LATI # \xN CAPITAL LETTER U DIAERESIS GRAVE 01DC # \x01DC LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE 00FC 0300 LATIN # \xSMALL LETTER U DIAERESIS GRAVE 01DB 01DB # \x01DD LATIN SMALL LETTER TURNED E 018E 018E # \x01DE LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON 00C4 0304 LAT # \xIN CAPITAL LETTER A DIAERESIS MACRON 01DF # \x01DF LATIN SMALL LETTER A WITH DIAERESIS AND MACRON 00E4 0304 LATIN # \x SMALL LETTER A DIAERESIS MACRON 01DE 01DE # \x01E0 LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON 0226 0304 LAT # \xIN CAPITAL LETTER A DOT MACRON 01E1 # \x01E1 LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON 0227 0304 LATIN # \x SMALL LETTER A DOT MACRON 01E0 01E0 # \x01E2 LATIN CAPITAL LETTER AE WITH MACRON 00C6 0304 LATIN CAPITAL LE # \xTTER A E MACRON ash * 01E3 # \x01E3 LATIN SMALL LETTER AE WITH MACRON 00E6 0304 LATIN SMALL LETTER # \x A E MACRON ash * 01E2 01E2 # \x01E4 LATIN CAPITAL LETTER G WITH STROKE LATIN CAPITAL LETTER G BAR # \x 01E5 # \x01E5 LATIN SMALL LETTER G WITH STROKE LATIN SMALL LETTER G BAR 01 # \xE4 01E4 # \x01E6 LATIN CAPITAL LETTER G WITH CARON 0047 030C LATIN CAPITAL LETT # \xER G HACEK 01E7 # \x01E7 LATIN SMALL LETTER G WITH CARON 0067 030C LATIN SMALL LETTER G # \x HACEK 01E6 01E6 # \x01E8 LATIN CAPITAL LETTER K WITH CARON 004B 030C LATIN CAPITAL LETT # \xER K HACEK 01E9 # \x01E9 LATIN SMALL LETTER K WITH CARON 006B 030C LATIN SMALL LETTER K # \x HACEK 01E8 01E8 # \x01EA LATIN CAPITAL LETTER O WITH OGONEK 004F 0328 LATIN CAPITAL LET # \xTER O OGONEK 01EB # \x01EB LATIN SMALL LETTER O WITH OGONEK 006F 0328 LATIN SMALL LETTER # \xO OGONEK 01EA 01EA # \x01EC LATIN CAPITAL LETTER O WITH OGONEK AND MACRON 01EA 0304 LATIN # \xCAPITAL LETTER O OGONEK MACRON 01ED # \x01ED LATIN SMALL LETTER O WITH OGONEK AND MACRON 01EB 0304 LATIN SM # \xALL LETTER O OGONEK MACRON 01EC 01EC # \x01EE LATIN CAPITAL LETTER EZH WITH CARON 01B7 030C LATIN CAPITAL LE # \xTTER YOGH HACEK 01EF # \x01EF LATIN SMALL LETTER EZH WITH CARON 0292 030C LATIN SMALL LETTER # \x YOGH HACEK 01EE 01EE # \x01F0 LATIN SMALL LETTER J WITH CARON 006A 030C LATIN SMALL LETTER J # \x HACEK # \x01F1 LATIN CAPITAL LETTER DZ 0044 005A 01F3 01F2 # \x01F2 LATIN CAPITAL LETTER D WITH SMALL LETTER Z Lt 0044 007A # \x 01F1 01F3 01F2 # \x01F3 LATIN SMALL LETTER DZ 0064 007A 01F1 01F2 # \x01F4 LATIN CAPITAL LETTER G WITH ACUTE 0047 0301 01F5 # \x01F5 LATIN SMALL LETTER G WITH ACUTE 0067 0301 01F4 01F4 # \x01F6 LATIN CAPITAL LETTER HWAIR 0195 # \x01F7 LATIN CAPITAL LETTER WYNN 01BF # \x01F8 LATIN CAPITAL LETTER WITH GRAVE 004E 0300 01F9 # \x01F9 LATIN SMALL LETTER WITH GRAVE 006E 0300 01F8 01F8 # \x01FA LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE 00C5 0301 # \x01FB # \x01FB LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE 00E5 0301 01F # \xA 01FA # \x01FC LATIN CAPITAL LETTER AE WITH ACUTE 00C6 0301 ash * 01FD # \x01FD LATIN SMALL LETTER AE WITH ACUTE 00E6 0301 ash * 01FC 01FC # \x01FE LATIN CAPITAL LETTER O WITH STROKE AND ACUTE 00D8 0301 01FF # \x # \x01FF LATIN SMALL LETTER O WITH STROKE AND ACUTE 00F8 0301 01FE 0 # \x1FE # \x0200 LATIN CAPITAL LETTER A WITH DOUBLE GRAVE 0041 030F 0201 # \x0201 LATIN SMALL LETTER A WITH DOUBLE GRAVE 0061 030F 0200 0200 # \x0202 LATIN CAPITAL LETTER A WITH INVERTED BREVE 0041 0311 0203 # \x0203 LATIN SMALL LETTER A WITH INVERTED BREVE 0061 0311 0202 020 # \x2 # \x0204 LATIN CAPITAL LETTER E WITH DOUBLE GRAVE 0045 030F 0205 # \x0205 LATIN SMALL LETTER E WITH DOUBLE GRAVE 0065 030F 0204 0204 # \x0206 LATIN CAPITAL LETTER E WITH INVERTED BREVE 0045 0311 0207 # \x0207 LATIN SMALL LETTER E WITH INVERTED BREVE 0065 0311 0206 020 # \x6 # \x0208 LATIN CAPITAL LETTER I WITH DOUBLE GRAVE 0049 030F 0209 # \x0209 LATIN SMALL LETTER I WITH DOUBLE GRAVE 0069 030F 0208 0208 # \x020A LATIN CAPITAL LETTER I WITH INVERTED BREVE 0049 0311 020B # \x020B LATIN SMALL LETTER I WITH INVERTED BREVE 0069 0311 020A 020 # \xA # \x020C LATIN CAPITAL LETTER O WITH DOUBLE GRAVE 004F 030F 020D # \x020D LATIN SMALL LETTER O WITH DOUBLE GRAVE 006F 030F 020C 020C # \x020E LATIN CAPITAL LETTER O WITH INVERTED BREVE 004F 0311 020F # \x020F LATIN SMALL LETTER O WITH INVERTED BREVE 006F 0311 020E 020 # \xE # \x0210 LATIN CAPITAL LETTER WITH DOUBLE GRAVE 0052 030F 0211 # \x0211 LATIN SMALL LETTER WITH DOUBLE GRAVE 0072 030F 0210 0210 # \x0212 LATIN CAPITAL LETTER WITH INVERTED BREVE 0052 0311 0213 # \x0213 LATIN SMALL LETTER WITH INVERTED BREVE 0072 0311 0212 021 # \x2 # \x0214 LATIN CAPITAL LETTER U WITH DOUBLE GRAVE 0055 030F 0215 # \x0215 LATIN SMALL LETTER U WITH DOUBLE GRAVE 0075 030F 0214 0214 # \x0216 LATIN CAPITAL LETTER U WITH INVERTED BREVE 0055 0311 0217 # \x0217 LATIN SMALL LETTER U WITH INVERTED BREVE 0075 0311 0216 021 # \x6 # \x0218 LATIN CAPITAL LETTER S WITH COMMA BELOW 0053 0326 * 0219 # \x0219 LATIN SMALL LETTER S WITH COMMA BELOW 0073 0326 * 0218 0218 # \x021A LATIN CAPITAL LETTER T WITH COMMA BELOW 0054 0326 * 021B # \x021B LATIN SMALL LETTER T WITH COMMA BELOW 0074 0326 * 021A 021A # \x021C LATIN CAPITAL LETTER YOGH 021D # \x021D LATIN SMALL LETTER YOGH 021C 021C # \x021E LATIN CAPITAL LETTER H WITH CARON 0048 030C 021F # \x021F LATIN SMALL LETTER H WITH CARON 0068 030C 021E 021E # \x0220 LATIN CAPITAL LETTER WITH LONG RIGHT LEG 019E # \x0221 LATIN SMALL LETTER D WITH CURL # \x0222 LATIN CAPITAL LETTER OU 0223 # \x0223 LATIN SMALL LETTER OU 0222 0222 # \x0224 LATIN CAPITAL LETTER Z WITH HOOK 0225 # \x0225 LATIN SMALL LETTER Z WITH HOOK 0224 0224 # \x0226 LATIN CAPITAL LETTER A WITH DOT ABOVE 0041 0307 0227 # \x0227 LATIN SMALL LETTER A WITH DOT ABOVE 0061 0307 0226 0226 # \x0228 LATIN CAPITAL LETTER E WITH CEDILLA 0045 0327 0229 # \x0229 LATIN SMALL LETTER E WITH CEDILLA 0065 0327 0228 0228 # \x022A LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON 00D6 0304 # \x022B # \x022B LATIN SMALL LETTER O WITH DIAERESIS AND MACRON 00F6 0304 022 # \xA 022A # \x022C LATIN CAPITAL LETTER O WITH TILDE AND MACRON 00D5 0304 022D # \x # \x022D LATIN SMALL LETTER O WITH TILDE AND MACRON 00F5 0304 022C 0 # \x22C # \x022E LATIN CAPITAL LETTER O WITH DOT ABOVE 004F 0307 022F # \x022F LATIN SMALL LETTER O WITH DOT ABOVE 006F 0307 022E 022E # \x0230 LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON 022E 0304 # \x0231 # \x0231 LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON 022F 0304 023 # \x0 0230 # \x0232 LATIN CAPITAL LETTER Y WITH MACRON 0059 0304 0233 # \x0233 LATIN SMALL LETTER Y WITH MACRON 0079 0304 0232 0232 # \x0234 LATIN SMALL LETTER WITH CURL # \x0235 LATIN SMALL LETTER WITH CURL # \x0236 LATIN SMALL LETTER T WITH CURL # \x0250 LATIN SMALL LETTER TURNED A # \x0251 LATIN SMALL LETTER ALPHA LATIN SMALL LETTER SCRIPT A # \x0252 LATIN SMALL LETTER TURNED ALPHA LATIN SMALL LETTER TURNED SCR # \xIPT A # \x0253 LATIN SMALL LETTER B WITH HOOK LATIN SMALL LETTER B HOOK 018 # \x1 0181 # \x0254 LATIN SMALL LETTER OPEN O 0186 0186 # \x0255 LATIN SMALL LETTER C WITH CURL LATIN SMALL LETTER C CURL # \x0256 LATIN SMALL LETTER D WITH TAIL LATIN SMALL LETTER D RETROFLEX # \x HOOK 0189 0189 # \x0257 LATIN SMALL LETTER D WITH HOOK LATIN SMALL LETTER D HOOK 018 # \xA 018A # \x0258 LATIN SMALL LETTER REVERSED E # \x0259 LATIN SMALL LETTER SCHWA 018F 018F # \x025A LATIN SMALL LETTER SCHWA WITH HOOK LATIN SMALL LETTER SCHWA H # \xOOK # \x025B LATIN SMALL LETTER OPEN E LATIN SMALL LETTER EPSILON 0190 0 # \x190 # \x025C LATIN SMALL LETTER REVERSED OPEN E LATIN SMALL LETTER REVERSE # \xD EPSILON # \x025D LATIN SMALL LETTER REVERSED OPEN E WITH HOOK LATIN SMALL LETT # \xER REVERSED EPSILON HOOK # \x025E LATIN SMALL LETTER CLOSED REVERSED OPEN E LATIN SMALL LETTER # \xCLOSED REVERSED EPSILON # \x025F LATIN SMALL LETTER DOTLESS J WITH STROKE LATIN SMALL LETTER D # \xOTLESS J BAR # \x0260 LATIN SMALL LETTER G WITH HOOK LATIN SMALL LETTER G HOOK 019 # \x3 0193 # \x0261 LATIN SMALL LETTER SCRIPT G # \x0262 LATIN LETTER SMALL CAPITAL G # \x0263 LATIN SMALL LETTER GAMMA 0194 0194 # \x0264 LATIN SMALL LETTER RAMS HORN LATIN SMALL LETTER BABY GAMMA # \x # \x0265 LATIN SMALL LETTER TURNED H # \x0266 LATIN SMALL LETTER H WITH HOOK LATIN SMALL LETTER H HOOK # \x0267 LATIN SMALL LETTER HENG WITH HOOK LATIN SMALL LETTER HENG HOO # \xK # \x0268 LATIN SMALL LETTER I WITH STROKE LATIN SMALL LETTER BARRED I # \x 0197 0197 # \x0269 LATIN SMALL LETTER IOTA 0196 0196 # \x026A LATIN LETTER SMALL CAPITAL I # \x026B LATIN SMALL LETTER WITH MIDDLE TILDE # \x026C LATIN SMALL LETTER WITH BELT LATIN SMALL LETTER BELT # \x026D LATIN SMALL LETTER WITH RETROFLEX HOOK LATIN SMALL LETTER L # \x RETROFLEX HOOK # \x026E LATIN SMALL LETTER LEZH LATIN SMALL LETTER YOGH # \x026F LATIN SMALL LETTER TURNED M 019C 019C # \x0270 LATIN SMALL LETTER TURNED M WITH LONG LEG # \x0271 LATIN SMALL LETTER M WITH HOOK LATIN SMALL LETTER M HOOK # \x0272 LATIN SMALL LETTER WITH LEFT HOOK LATIN SMALL LETTER HOOK # \x 019D 019D # \x0273 LATIN SMALL LETTER WITH RETROFLEX HOOK LATIN SMALL LETTER N # \x RETROFLEX HOOK # \x0274 LATIN LETTER SMALL CAPITAL # \x0275 LATIN SMALL LETTER BARRED O 019F 019F # \x0276 LATIN LETTER SMALL CAPITAL OE LATIN LETTER SMALL CAPITAL O E # \x # \x0277 LATIN SMALL LETTER CLOSED OMEGA # \x0278 LATIN SMALL LETTER PHI # \x0279 LATIN SMALL LETTER TURNED # \x027A LATIN SMALL LETTER TURNED WITH LONG LEG # \x027B LATIN SMALL LETTER TURNED WITH HOOK LATIN SMALL LETTER TURN # \xED HOOK # \x027C LATIN SMALL LETTER WITH LONG LEG # \x027D LATIN SMALL LETTER WITH TAIL LATIN SMALL LETTER HOOK # \x027E LATIN SMALL LETTER WITH FISHHOOK LATIN SMALL LETTER FISHHOO # \xK # \x027F LATIN SMALL LETTER REVERSED WITH FISHHOOK LATIN SMALL LETTE # \xR REVERSED FISHHOOK # \x0280 LATIN LETTER SMALL CAPITAL * 01A6 01A6 # \x0281 LATIN LETTER SMALL CAPITAL INVERTED # \x0282 LATIN SMALL LETTER S WITH HOOK LATIN SMALL LETTER S HOOK # \x0283 LATIN SMALL LETTER ESH 01A9 01A9 # \x0284 LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK LATIN SMALL # \x LETTER DOTLESS J BAR HOOK # \x0285 LATIN SMALL LETTER SQUAT REVERSED ESH # \x0286 LATIN SMALL LETTER ESH WITH CURL LATIN SMALL LETTER ESH CURL # \x # \x0287 LATIN SMALL LETTER TURNED T # \x0288 LATIN SMALL LETTER T WITH RETROFLEX HOOK LATIN SMALL LETTER T # \x RETROFLEX HOOK 01AE 01AE # \x0289 LATIN SMALL LETTER U BAR # \x028A LATIN SMALL LETTER UPSILON 01B1 01B1 # \x028B LATIN SMALL LETTER V WITH HOOK LATIN SMALL LETTER SCRIPT V 0 # \x1B2 01B2 # \x028C LATIN SMALL LETTER TURNED V # \x028D LATIN SMALL LETTER TURNED W # \x028E LATIN SMALL LETTER TURNED Y # \x028F LATIN LETTER SMALL CAPITAL Y # \x0290 LATIN SMALL LETTER Z WITH RETROFLEX HOOK LATIN SMALL LETTER Z # \x RETROFLEX HOOK # \x0291 LATIN SMALL LETTER Z WITH CURL LATIN SMALL LETTER Z CURL # \x0292 LATIN SMALL LETTER EZH LATIN SMALL LETTER YOGH 01B7 01B7 # \x0293 LATIN SMALL LETTER EZH WITH CURL LATIN SMALL LETTER YOGH CURL # \x # \x0294 LATIN LETTER GLOTTAL STOP # \x0295 LATIN LETTER PHARYNGEAL VOICED FRICATIVE LATIN LETTER REVERSE # \xD GLOTTAL STOP # \x0296 LATIN LETTER INVERTED GLOTTAL STOP # \x0297 LATIN LETTER STRETCHED C # \x0298 LATIN LETTER BILABIAL CLICK LATIN LETTER BULLSEYE # \x0299 LATIN LETTER SMALL CAPITAL B # \x029A LATIN SMALL LETTER CLOSED OPEN E LATIN SMALL LETTER CLOSED EP # \xSILON # \x029B LATIN LETTER SMALL CAPITAL G WITH HOOK LATIN LETTER SMALL CAP # \xITAL G HOOK # \x029C LATIN LETTER SMALL CAPITAL H # \x029D LATIN SMALL LETTER J WITH CROSSED-TAIL LATIN SMALL LETTER CRO # \xSSED-TAIL J # \x029E LATIN SMALL LETTER TURNED K # \x029F LATIN LETTER SMALL CAPITAL # \x02A0 LATIN SMALL LETTER Q WITH HOOK LATIN SMALL LETTER Q HOOK # \x02A1 LATIN LETTER GLOTTAL STOP WITH STROKE LATIN LETTER GLOTTAL ST # \xOP BAR # \x02A2 LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE LATIN LETTER R # \xEVERSED GLOTTAL STOP BAR # \x02A3 LATIN SMALL LETTER DZ DIGRAPH LATIN SMALL LETTER D Z # \x02A4 LATIN SMALL LETTER DEZH DIGRAPH LATIN SMALL LETTER D YOGH # \x02A5 LATIN SMALL LETTER DZ DIGRAPH WITH CURL LATIN SMALL LETTER D # \xZ CURL # \x02A6 LATIN SMALL LETTER TS DIGRAPH LATIN SMALL LETTER T S # \x02A7 LATIN SMALL LETTER TESH DIGRAPH LATIN SMALL LETTER T ESH # \x02A8 LATIN SMALL LETTER TC DIGRAPH WITH CURL LATIN SMALL LETTER T # \xC CURL # \x02A9 LATIN SMALL LETTER FENG DIGRAPH # \x02AA LATIN SMALL LETTER LS DIGRAPH # \x02AB LATIN SMALL LETTER LZ DIGRAPH # \x02AC LATIN LETTER BILABIAL PERCUSSIVE # \x02AD LATIN LETTER BIDENTAL PERCUSSIVE # \x02AE LATIN SMALL LETTER TURNED H WITH FISHHOOK # \x02AF LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL # \x02B0 MODIFIER LETTER SMALL H Lm 0068 # \x02B1 MODIFIER LETTER SMALL H WITH HOOK Lm 0266 MODIFIER LETTER # \x SMALL H HOOK # \x02B2 MODIFIER LETTER SMALL J Lm 006A # \x02B3 MODIFIER LETTER SMALL Lm 0072 # \x02B4 MODIFIER LETTER SMALL TURNED Lm 0279 # \x02B5 MODIFIER LETTER SMALL TURNED WITH HOOK Lm 027B MODIFIER # \x LETTER SMALL TURNED HOOK # \x02B6 MODIFIER LETTER SMALL CAPITAL INVERTED Lm 0281 # \x02B7 MODIFIER LETTER SMALL W Lm 0077 # \x02B8 MODIFIER LETTER SMALL Y Lm 0079 # \x02B9 MODIFIER LETTER PRIME Lm # \x02BA MODIFIER LETTER DOUBLE PRIME Lm # \x02BB MODIFIER LETTER TURNED COMMA Lm # \x02BC MODIFIER LETTER APOSTROPHE Lm # \x02BD MODIFIER LETTER REVERSED COMMA Lm # \x02BE MODIFIER LETTER RIGHT HALF RING Lm # \x02BF MODIFIER LETTER LEFT HALF RING Lm # \x02C0 MODIFIER LETTER GLOTTAL STOP Lm # \x02C1 MODIFIER LETTER REVERSED GLOTTAL STOP Lm # \x02C2 MODIFIER LETTER LEFT ARROWHEAD # \x02C3 MODIFIER LETTER RIGHT ARROWHEAD # \x02C4 MODIFIER LETTER UP ARROWHEAD # \x02C5 MODIFIER LETTER DOWN ARROWHEAD # \x02C6 MODIFIER LETTER CIRCUMFLEX ACCENT Lm MODIFIER LETTER CIRCUMFLEX # \x # \x02C7 CARON Lm MODIFIER LETTER HACEK Mandarin Chinese third tone # \x02C8 MODIFIER LETTER VERTICAL LINE Lm # \x02C9 MODIFIER LETTER MACRON Lm Mandarin Chinese first tone # \x02CA MODIFIER LETTER ACUTE ACCENT Lm MODIFIER LETTER ACUTE Mandarin # \xChinese second tone # \x02CB MODIFIER LETTER GRAVE ACCENT Lm MODIFIER LETTER GRAVE Mandarin # \xChinese fourth tone # \x02CC MODIFIER LETTER LOW VERTICAL LINE Lm # \x02CD MODIFIER LETTER LOW MACRON Lm # \x02CE MODIFIER LETTER LOW GRAVE ACCENT Lm MODIFIER LETTER LOW GRAVE # \x # \x02CF MODIFIER LETTER LOW ACUTE ACCENT Lm MODIFIER LETTER LOW ACUTE # \x # \x02D0 MODIFIER LETTER TRIANGULAR COLON Lm # \x02D1 MODIFIER LETTER HALF TRIANGULAR COLON Lm # \x02D2 MODIFIER LETTER CENTRED RIGHT HALF RING MODIFIER LETTER CENT # \xERED RIGHT HALF RING # \x02D3 MODIFIER LETTER CENTRED LEFT HALF RING MODIFIER LETTER CENTE # \xRED LEFT HALF RING # \x02D4 MODIFIER LETTER UP TACK # \x02D5 MODIFIER LETTER DOWN TACK # \x02D6 MODIFIER LETTER PLUS SIGN # \x02D7 MODIFIER LETTER MINUS SIGN # \x02D8 BREVE 0020 0306 SPACING BREVE # \x02D9 DOT ABOVE 0020 0307 SPACING DOT ABOVE Mandarin Chine # \xse light tone # \x02DA RING ABOVE 0020 030A SPACING RING ABOVE # \x02DB OGONEK 0020 0328 SPACING OGONEK # \x02DC SMALL TILDE 0020 0303 SPACING TILDE # \x02DD DOUBLE ACUTE ACCENT 0020 030B SPACING DOUBLE ACUTE # \x # \x02DE MODIFIER LETTER RHOTIC HOOK # \x02DF MODIFIER LETTER CROSS ACCENT # \x02E0 MODIFIER LETTER SMALL GAMMA Lm 0263 # \x02E1 MODIFIER LETTER SMALL Lm 006C # \x02E2 MODIFIER LETTER SMALL S Lm 0073 # \x02E3 MODIFIER LETTER SMALL X Lm 0078 # \x02E4 MODIFIER LETTER SMALL REVERSED GLOTTAL STOP Lm 0295 # \x02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR # \x02E6 MODIFIER LETTER HIGH TONE BAR # \x02E7 MODIFIER LETTER MID TONE BAR # \x02E8 MODIFIER LETTER LOW TONE BAR # \x02E9 MODIFIER LETTER EXTRA-LOW TONE BAR # \x02EA MODIFIER LETTER YIN DEPARTING TONE MARK # \x02EB MODIFIER LETTER YANG DEPARTING TONE MARK # \x02EC MODIFIER LETTER VOICING # \x02ED MODIFIER LETTER UNASPIRATED # \x02EE MODIFIER LETTER DOUBLE APOSTROPHE Lm # \x02EF MODIFIER LETTER LOW DOWN ARROWHEAD # \x02F0 MODIFIER LETTER LOW UP ARROWHEAD # \x02F1 MODIFIER LETTER LOW LEFT ARROWHEAD # \x02F2 MODIFIER LETTER LOW RIGHT ARROWHEAD # \x02F3 MODIFIER LETTER LOW RING # \x02F4 MODIFIER LETTER MIDDLE GRAVE ACCENT # \x02F5 MODIFIER LETTER MIDDLE DOUBLE GRAVE ACCENT # \x02F6 MODIFIER LETTER MIDDLE DOUBLE ACUTE ACCENT # \x02F7 MODIFIER LETTER LOW TILDE # \x02F8 MODIFIER LETTER RAISED COLON # \x02F9 MODIFIER LETTER BEGIN HIGH TONE # \x02FA MODIFIER LETTER END HIGH TONE # \x02FB MODIFIER LETTER BEGIN LOW TONE # \x02FC MODIFIER LETTER END LOW TONE # \x02FD MODIFIER LETTER SHELF # \x02FE MODIFIER LETTER OPEN SHELF # \x02FF MODIFIER LETTER LOW LEFT ARROW # \x0300 COMBINING GRAVE ACCENT 230 NON-SPACING GRAVE Varia # \x0301 COMBINING ACUTE ACCENT 230 NON-SPACING ACUTE Oxia, Tonos # \x0302 COMBINING CIRCUMFLEX ACCENT 230 NON-SPACING CIRCUMFLEX # \x0303 COMBINING TILDE 230 NON-SPACING TILDE # \x0304 COMBINING MACRON 230 NON-SPACING MACRON # \x0305 COMBINING OVERLINE 230 NON-SPACING OVERSCORE # \x0306 COMBINING BREVE 230 NON-SPACING BREVE Vrachy # \x0307 COMBINING DOT ABOVE 230 NON-SPACING DOT ABOVE # \x0308 COMBINING DIAERESIS 230 NON-SPACING DIAERESIS Dialytika # \x0309 COMBINING HOOK ABOVE 230 NON-SPACING HOOK ABOVE # \x030A COMBINING RING ABOVE 230 NON-SPACING RING ABOVE # \x030B COMBINING DOUBLE ACUTE ACCENT 230 NON-SPACING DOUBLE ACUTE # \x # \x030C COMBINING CARON 230 NON-SPACING HACEK # \x030D COMBINING VERTICAL LINE ABOVE 230 NON-SPACING VERTICAL LINE A # \xBOVE # \x030E COMBINING DOUBLE VERTICAL LINE ABOVE 230 NON-SPACING DOUBLE V # \xERTICAL LINE ABOVE # \x030F COMBINING DOUBLE GRAVE ACCENT 230 NON-SPACING DOUBLE GRAVE # \x0310 COMBINING CANDRABINDU 230 NON-SPACING CANDRABINDU # \x0311 COMBINING INVERTED BREVE 230 NON-SPACING INVERTED BREVE # \x0312 COMBINING TURNED COMMA ABOVE 230 NON-SPACING TURNED COMMA ABO # \xVE # \x0313 COMBINING COMMA ABOVE 230 NON-SPACING COMMA ABOVE Psili # \x0314 COMBINING REVERSED COMMA ABOVE 230 NON-SPACING REVERSED COMMA # \x ABOVE Dasia # \x0315 COMBINING COMMA ABOVE RIGHT 232 NON-SPACING COMMA ABOVE RIGHT # \x # \x0316 COMBINING GRAVE ACCENT BELOW 220 NON-SPACING GRAVE BELOW # \x0317 COMBINING ACUTE ACCENT BELOW 220 NON-SPACING ACUTE BELOW # \x0318 COMBINING LEFT TACK BELOW 220 NON-SPACING LEFT TACK BELOW # \x0319 COMBINING RIGHT TACK BELOW 220 NON-SPACING RIGHT TACK BELOW # \x # \x031A COMBINING LEFT ANGLE ABOVE 232 NON-SPACING LEFT ANGLE ABOVE # \x # \x031B COMBINING HORN 216 NON-SPACING HORN # \x031C COMBINING LEFT HALF RING BELOW 220 NON-SPACING LEFT HALF RING # \x BELOW # \x031D COMBINING UP TACK BELOW 220 NON-SPACING UP TACK BELOW # \x031E COMBINING DOWN TACK BELOW 220 NON-SPACING DOWN TACK BELOW # \x031F COMBINING PLUS SIGN BELOW 220 NON-SPACING PLUS SIGN BELOW # \x0320 COMBINING MINUS SIGN BELOW 220 NON-SPACING MINUS SIGN BELOW # \x # \x0321 COMBINING PALATALIZED HOOK BELOW 202 NON-SPACING PALATALIZED # \xHOOK BELOW # \x0322 COMBINING RETROFLEX HOOK BELOW 202 NON-SPACING RETROFLEX HOOK # \x BELOW # \x0323 COMBINING DOT BELOW 220 NON-SPACING DOT BELOW # \x0324 COMBINING DIAERESIS BELOW 220 NON-SPACING DOUBLE DOT BELOW # \x # \x0325 COMBINING RING BELOW 220 NON-SPACING RING BELOW # \x0326 COMBINING COMMA BELOW 220 NON-SPACING COMMA BELOW # \x0327 COMBINING CEDILLA 202 NON-SPACING CEDILLA # \x0328 COMBINING OGONEK 202 NON-SPACING OGONEK # \x0329 COMBINING VERTICAL LINE BELOW 220 NON-SPACING VERTICAL LINE B # \xELOW # \x032A COMBINING BRIDGE BELOW 220 NON-SPACING BRIDGE BELOW # \x032B COMBINING INVERTED DOUBLE ARCH BELOW 220 NON-SPACING INVERTED # \x DOUBLE ARCH BELOW # \x032C COMBINING CARON BELOW 220 NON-SPACING HACEK BELOW # \x032D COMBINING CIRCUMFLEX ACCENT BELOW 220 NON-SPACING CIRCUMFLEX # \xBELOW # \x032E COMBINING BREVE BELOW 220 NON-SPACING BREVE BELOW # \x032F COMBINING INVERTED BREVE BELOW 220 NON-SPACING INVERTED BREVE # \x BELOW # \x0330 COMBINING TILDE BELOW 220 NON-SPACING TILDE BELOW # \x0331 COMBINING MACRON BELOW 220 NON-SPACING MACRON BELOW # \x0332 COMBINING LOW LINE 220 NON-SPACING UNDERSCORE # \x0333 COMBINING DOUBLE LOW LINE 220 NON-SPACING DOUBLE UNDERSCORE # \x # \x0334 COMBINING TILDE OVERLAY 1 NON-SPACING TILDE OVERLAY # \x0335 COMBINING SHORT STROKE OVERLAY 1 NON-SPACING SHORT BAR OVERLA # \xY # \x0336 COMBINING LONG STROKE OVERLAY 1 NON-SPACING LONG BAR OVERLAY # \x # \x0337 COMBINING SHORT SOLIDUS OVERLAY 1 NON-SPACING SHORT SLASH OVE # \xRLAY # \x0338 COMBINING LONG SOLIDUS OVERLAY 1 NON-SPACING LONG SLASH OVERL # \xAY # \x0339 COMBINING RIGHT HALF RING BELOW 220 NON-SPACING RIGHT HALF RI # \xNG BELOW # \x033A COMBINING INVERTED BRIDGE BELOW 220 NON-SPACING INVERTED BRID # \xGE BELOW # \x033B COMBINING SQUARE BELOW 220 NON-SPACING SQUARE BELOW # \x033C COMBINING SEAGULL BELOW 220 NON-SPACING SEAGULL BELOW # \x033D COMBINING X ABOVE 230 NON-SPACING X ABOVE # \x033E COMBINING VERTICAL TILDE 230 NON-SPACING VERTICAL TILDE # \x033F COMBINING DOUBLE OVERLINE 230 NON-SPACING DOUBLE OVERSCORE # \x # \x0340 COMBINING GRAVE TONE MARK 230 0300 NON-SPACING GRAVE TONE MARK # \x Vietnamese # \x0341 COMBINING ACUTE TONE MARK 230 0301 NON-SPACING ACUTE TONE MARK # \x Vietnamese # \x0342 COMBINING GREEK PERISPOMENI 230 # \x0343 COMBINING GREEK KORONIS 230 0313 # \x0344 COMBINING GREEK DIALYTIKA TONOS 230 0308 0301 GREEK NON-SPACIN # \xG DIAERESIS TONOS # \x0345 COMBINING GREEK YPOGEGRAMMENI 240 GREEK NON-SPACING IOTA BELO # \xW 0399 0399 # \x0346 COMBINING BRIDGE ABOVE 230 # \x0347 COMBINING EQUALS SIGN BELOW 220 # \x0348 COMBINING DOUBLE VERTICAL LINE BELOW 220 # \x0349 COMBINING LEFT ANGLE BELOW 220 # \x034A COMBINING NOT TILDE ABOVE 230 # \x034B COMBINING HOMOTHETIC ABOVE 230 # \x034C COMBINING ALMOST EQUAL TO ABOVE 230 # \x034D COMBINING LEFT RIGHT ARROW BELOW 220 # \x034E COMBINING UPWARDS ARROW BELOW 220 # \x034F COMBINING GRAPHEME JOINER # \x0350 COMBINING RIGHT ARROWHEAD ABOVE 230 # \x0351 COMBINING LEFT HALF RING ABOVE 230 # \x0352 COMBINING FERMATA 230 # \x0353 COMBINING X BELOW 220 # \x0354 COMBINING LEFT ARROWHEAD BELOW 220 # \x0355 COMBINING RIGHT ARROWHEAD BELOW 220 # \x0356 COMBINING RIGHT ARROWHEAD AND UP ARROWHEAD BELOW 220 # \x0357 COMBINING RIGHT HALF RING ABOVE 230 # \x035D COMBINING DOUBLE BREVE 234 # \x035E COMBINING DOUBLE MACRON 234 # \x035F COMBINING DOUBLE MACRON BELOW 233 # \x0360 COMBINING DOUBLE TILDE 234 # \x0361 COMBINING DOUBLE INVERTED BREVE 234 # \x0362 COMBINING DOUBLE RIGHTWARDS ARROW BELOW 233 # \x0363 COMBINING LATIN SMALL LETTER A 230 # \x0364 COMBINING LATIN SMALL LETTER E 230 # \x0365 COMBINING LATIN SMALL LETTER I 230 # \x0366 COMBINING LATIN SMALL LETTER O 230 # \x0367 COMBINING LATIN SMALL LETTER U 230 # \x0368 COMBINING LATIN SMALL LETTER C 230 # \x0369 COMBINING LATIN SMALL LETTER D 230 # \x036A COMBINING LATIN SMALL LETTER H 230 # \x036B COMBINING LATIN SMALL LETTER M 230 # \x036C COMBINING LATIN SMALL LETTER 230 # \x036D COMBINING LATIN SMALL LETTER T 230 # \x036E COMBINING LATIN SMALL LETTER V 230 # \x036F COMBINING LATIN SMALL LETTER X 230 # \x0374 GREEK NUMERAL SIGN 02B9 GREEK UPPER NUMERAL SIGN Dexia keraia # \x0375 GREEK LOWER NUMERAL SIGN Aristeri keraia # \x037A GREEK YPOGEGRAMMENI Lm 0020 0345 GREEK SPACING IOTA BELOW # \x037E GREEK QUESTION MARK 003B Erotimatiko # \x0384 GREEK TONOS 0020 0301 GREEK SPACING TONOS # \x0385 GREEK DIALYTIKA TONOS 00A8 0301 GREEK SPACING DIAERESIS TONOS # \x0386 GREEK CAPITAL LETTER ALPHA WITH TONOS 0391 0301 GREEK CAPITAL LETTER ALPHA TONOS 03AC # \x0387 GREEK ANO TELEIA 00B7 # \x0388 GREEK CAPITAL LETTER EPSILON WITH TONOS 0395 0301 GREEK CAPITAL LETTER EPSILON TONOS 03AD # \x0389 GREEK CAPITAL LETTER ETA WITH TONOS 0397 0301 GREEK CAPITAL LETTER ETA TONOS 03AE # \x038A GREEK CAPITAL LETTER IOTA WITH TONOS 0399 0301 GREEK CAPITAL L # \xETTER IOTA TONOS 03AF # \x038C GREEK CAPITAL LETTER OMICRON WITH TONOS 039F 0301 GREEK CAPITA # \xL LETTER OMICRON TONOS 03CC # \x038E GREEK CAPITAL LETTER UPSILON WITH TONOS 03A5 0301 GREEK CAPITA # \xL LETTER UPSILON TONOS 03CD # \x038F GREEK CAPITAL LETTER OMEGA WITH TONOS 03A9 0301 GREEK CAPITAL # \xLETTER OMEGA TONOS 03CE # \x0390 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS 03CA 0301 GRE # \xEK SMALL LETTER IOTA DIAERESIS TONOS letter \x0391 46-6-1 GREEK CAPITAL LETTER ALPHA 03B1 letter \x0392 46-6-12 GREEK CAPITAL LETTER BETA 03B2 letter \x0393 46-6-1245 GREEK CAPITAL LETTER GAMMA 03B3 letter \x0394 46-6-145 GREEK CAPITAL LETTER DELTA 03B4 letter \x0395 46-6-15 GREEK CAPITAL LETTER EPSILON 03B5 letter \x0396 46-6-156 GREEK CAPITAL LETTER ZETA 03B6 letter \x0397 46-6-126 GREEK CAPITAL LETTER ETA 03B7 letter \x0398 46-6-1456 GREEK CAPITAL LETTER THETA 03B8 letter \x0399 46-6-24 GREEK CAPITAL LETTER IOTA 03B9 letter \x039A 46-6-13 GREEK CAPITAL LETTER KAPPA 03BA letter \x039B 46-6-123 GREEK CAPITAL LETTER LAMDA GREEK CAPITAL LETTER LAMBDA 03BB letter \x039C 46-6-134 GREEK CAPITAL LETTER MU 03BC letter \x039D 46-6-1345 GREEK CAPITAL LETTER NU 03BD letter \x039E 46-6-1346 GREEK CAPITAL LETTER XI 03BE letter \x039F 46-6-135 GREEK CAPITAL LETTER OMICRON 03BF letter \x03A0 46-6-1234 GREEK CAPITAL LETTER PI 03C0 letter \x03A1 46-6-1235 GREEK CAPITAL LETTER RHO 03C1 letter \x03A3 46-6-234 GREEK CAPITAL LETTER SIGMA 03C3 letter \x03A4 46-6-136 GREEK CAPITAL LETTER TAU 03C4 letter \x03A5 46-6-136 GREEK CAPITAL LETTER UPSILON 03C5 letter \x03A6 46-6-124 GREEK CAPITAL LETTER PHI 03C6 letter \x03A7 46-6-12346 GREEK CAPITAL LETTER CHI 03C7 letter \x03A8 46-6-1246 GREEK CAPITAL LETTER PSI 03C8 letter \x03A9 46-6-2456 GREEK CAPITAL LETTER OMEGA 03C9 # \x03AA GREEK CAPITAL LETTER IOTA WITH DIALYTIKA 0399 0308 GREEK CAPIT # \xAL LETTER IOTA DIAERESIS 03CA # \x03AB GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA 03A5 0308 GREEK CAPITAL LETTER UPSILON DIAERESIS 03CB # \x03AC GREEK SMALL LETTER ALPHA WITH TONOS 03B1 0301 GREEK SMALL LETT # \xER ALPHA TONOS 0386 0386 # \x03AD GREEK SMALL LETTER EPSILON WITH TONOS 03B5 0301 GREEK SMALL LE # \xTTER EPSILON TONOS 0388 0388 # \x03AE GREEK SMALL LETTER ETA WITH TONOS 03B7 0301 GREEK SMALL LETTER # \x ETA TONOS 0389 0389 # \x03AF GREEK SMALL LETTER IOTA WITH TONOS 03B9 0301 GREEK SMALL LETTE # \xR IOTA TONOS 038A 038A # \x03B0 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS 03CB 0301 # \xGREEK SMALL LETTER UPSILON DIAERESIS TONOS letter \x03B1 46-1 GREEK SMALL LETTER ALPHA 0391 0391 letter \x03B2 46-12 GREEK SMALL LETTER BETA 0392 0392 letter \x03B3 46-1245 GREEK SMALL LETTER GAMMA 0393 0393 letter \x03B4 46-145 GREEK SMALL LETTER DELTA 0394 0394 letter \x03B5 46-15 GREEK SMALL LETTER EPSILON 0395 0395 letter \x03B6 46-156 GREEK SMALL LETTER ZETA 0396 0396 letter \x03B7 46-236 GREEK SMALL LETTER ETA 0397 0397 letter \x03B8 46-1456 GREEK SMALL LETTER THETA 0398 0398 letter \x03B9 46-24 GREEK SMALL LETTER IOTA 0399 0399 letter \x03BA 46-13 GREEK SMALL LETTER KAPPA 039A 039A letter \x03BB 46-123 GREEK SMALL LETTER LAMDA GREEK SMALL LETTER LAMBDA 039B 039 letter \x03BC 46-134 GREEK SMALL LETTER MU 039C 039C letter \x03BD 46-1345 GREEK SMALL LETTER NU 039D 039D letter \x03BE 46-1346 GREEK SMALL LETTER XI 039E 039E letter \x03BF 46-135 GREEK SMALL LETTER OMICRON 039F 039F letter \x03C0 46-1234 GREEK SMALL LETTER PI 03A0 03A0 letter \x03C1 46-1235 GREEK SMALL LETTER RHO 03A1 03A1 letter \x03C2 46-25 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3 letter \x03C3 46-234 GREEK SMALL LETTER SIGMA 03A3 03A3 letter \x03C4 46-2345 GREEK SMALL LETTER TAU 03A4 03A4 letter \x03C5 46-136 GREEK SMALL LETTER UPSILON 03A5 03A5 letter \x03C6 46-124 GREEK SMALL LETTER PHI 03A6 03A6 letter \x03C7 46-12346 GREEK SMALL LETTER CHI 03A7 03A7 letter \x03C8 46-125 GREEK SMALL LETTER PSI 03A8 03A8 letter \x03C9 46-135 GREEK SMALL LETTER OMEGA 03A9 03A9 # \x03CA GREEK SMALL LETTER IOTA WITH DIALYTIKA 03B9 0308 GREEK SMALL L # \xETTER IOTA DIAERESIS 03AA 03AA # \x03CB GREEK SMALL LETTER UPSILON WITH DIALYTIKA 03C5 0308 GREEK SMAL # \xL LETTER UPSILON DIAERESIS 03AB 03AB # \x03CC GREEK SMALL LETTER OMICRON WITH TONOS 03BF 0301 GREEK SMALL LE # \xTTER OMICRON TONOS 038C 038C # \x03CD GREEK SMALL LETTER UPSILON WITH TONOS 03C5 0301 GREEK SMALL LE # \xTTER UPSILON TONOS 038E 038E # \x03CE GREEK SMALL LETTER OMEGA WITH TONOS 03C9 0301 GREEK SMALL LETT # \xER OMEGA TONOS 038F 038F # \x03D0 GREEK BETA SYMBOL 03B2 GREEK SMALL LETTER CURLED BETA # \x 0392 0392 # \x03D1 GREEK THETA SYMBOL 03B8 GREEK SMALL LETTER SCRIPT THE # \xTA 0398 0398 # \x03D2 GREEK UPSILON WITH HOOK SYMBOL 03A5 GREEK CAPITAL LET # \xTER UPSILON HOOK # \x03D3 GREEK UPSILON WITH ACUTE AND HOOK SYMBOL 03D2 0301 GREEK CAPIT # \xAL LETTER UPSILON HOOK TONOS # \x03D4 GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL 03D2 0308 GREEK C # \xAPITAL LETTER UPSILON HOOK DIAERESIS letter \x03D5 46-124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI # \x03A6 03A6 # \x03D6 GREEK PI SYMBOL 03C0 GREEK SMALL LETTER OMEGA PI 03A # \x0 03A0 # \x03D7 GREEK KAI SYMBOL # \x03D8 GREEK LETTER ARCHAIC KOPPA * 03D9 # \x03D9 GREEK SMALL LETTER ARCHAIC KOPPA * 03D8 03D8 # \x03DA GREEK LETTER STIGMA GREEK CAPITAL LETTER STIGMA 03DB # \x03DB GREEK SMALL LETTER STIGMA 03DA 03DA # \x03DC GREEK LETTER DIGAMMA GREEK CAPITAL LETTER DIGAMMA 03DD # \x03DD GREEK SMALL LETTER DIGAMMA 03DC 03DC # \x03DE GREEK LETTER KOPPA GREEK CAPITAL LETTER KOPPA 03DF # \x03DF GREEK SMALL LETTER KOPPA 03DE 03DE # \x03E0 GREEK LETTER SAMPI GREEK CAPITAL LETTER SAMPI 03E1 # \x03E1 GREEK SMALL LETTER SAMPI 03E0 03E0 # \x03E2 COPTIC CAPITAL LETTER SHEI GREEK CAPITAL LETTER SHEI 03E3 # \x03E3 COPTIC SMALL LETTER SHEI GREEK SMALL LETTER SHEI 03E2 03E2 # \x03E4 COPTIC CAPITAL LETTER FEI GREEK CAPITAL LETTER FEI 03E5 # \x03E5 COPTIC SMALL LETTER FEI GREEK SMALL LETTER FEI 03E4 03E4 # \x03E6 COPTIC CAPITAL LETTER KHEI GREEK CAPITAL LETTER KHEI 03E7 # \x03E7 COPTIC SMALL LETTER KHEI GREEK SMALL LETTER KHEI 03E6 03E6 # \x03E8 COPTIC CAPITAL LETTER HORI GREEK CAPITAL LETTER HORI 03E9 # \x03E9 COPTIC SMALL LETTER HORI GREEK SMALL LETTER HORI 03E8 03E8 # \x03EA COPTIC CAPITAL LETTER GANGIA GREEK CAPITAL LETTER GANGIA 03 # \xEB # \x03EB COPTIC SMALL LETTER GANGIA GREEK SMALL LETTER GANGIA 03EA 0 # \x3EA # \x03EC COPTIC CAPITAL LETTER SHIMA GREEK CAPITAL LETTER SHIMA 03ED # \x # \x03ED COPTIC SMALL LETTER SHIMA GREEK SMALL LETTER SHIMA 03EC 03E # \xC # \x03EE COPTIC CAPITAL LETTER DEI GREEK CAPITAL LETTER DEI 03EF # \x03EF COPTIC SMALL LETTER DEI GREEK SMALL LETTER DEI 03EE 03EE # \x03F0 GREEK KAPPA SYMBOL 03BA GREEK SMALL LETTER SCRIPT KAP # \xPA 039A 039A # \x03F1 GREEK RHO SYMBOL 03C1 GREEK SMALL LETTER TAILED RHO # \x03A1 03A1 # \x03F2 GREEK LUNATE SIGMA SYMBOL 03C2 GREEK SMALL LETTER LUN # \xATE SIGMA 03F9 03F9 # \x03F3 GREEK LETTER YOT # \x03F4 GREEK CAPITAL THETA SYMBOL 0398 03B8 # \x03F5 GREEK LUNATE EPSILON SYMBOL 03B5 0395 0395 # \x03F6 GREEK REVERSED LUNATE EPSILON SYMBOL # \x03F7 GREEK CAPITAL LETTER SHO 03F8 # \x03F8 GREEK SMALL LETTER SHO 03F7 03F7 # \x03F9 GREEK CAPITAL LUNATE SIGMA SYMBOL 03A3 03F2 # \x03FA GREEK CAPITAL LETTER SAN 03FB # \x03FB GREEK SMALL LETTER SAN 03FA 03FA # \x0400 CYRILLIC CAPITAL LETTER IE WITH GRAVE 0415 0300 0450 # \x0401 CYRILLIC CAPITAL LETTER IO 0415 0308 0451 # \x0402 CYRILLIC CAPITAL LETTER DJE Serbocroatian 0452 # \x0403 CYRILLIC CAPITAL LETTER GJE 0413 0301 0453 # \x0404 CYRILLIC CAPITAL LETTER UKRAINIAN IE CYRILLIC CAPITAL LETTER # \xE 0454 # \x0405 CYRILLIC CAPITAL LETTER DZE 0455 # \x0406 CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I CYRILLIC CAP # \xITAL LETTER I 0456 # \x0407 CYRILLIC CAPITAL LETTER YI 0406 0308 Ukrainian 0457 # \x0408 CYRILLIC CAPITAL LETTER JE 0458 # \x0409 CYRILLIC CAPITAL LETTER LJE 0459 # \x040A CYRILLIC CAPITAL LETTER NJE 045A # \x040B CYRILLIC CAPITAL LETTER TSHE Serbocroatian 045B # \x040C CYRILLIC CAPITAL LETTER KJE 041A 0301 045C # \x040D CYRILLIC CAPITAL LETTER I WITH GRAVE 0418 0300 045D # \x040E CYRILLIC CAPITAL LETTER SHORT U 0423 0306 Byelorussian 045E # \x040F CYRILLIC CAPITAL LETTER DZHE 045F # \x0410 CYRILLIC CAPITAL LETTER A 0430 # \x0411 CYRILLIC CAPITAL LETTER BE 0431 # \x0412 CYRILLIC CAPITAL LETTER VE 0432 # \x0413 CYRILLIC CAPITAL LETTER GHE CYRILLIC CAPITAL LETTER GE 0433 # \x # \x0414 CYRILLIC CAPITAL LETTER DE 0434 # \x0415 CYRILLIC CAPITAL LETTER IE 0435 # \x0416 CYRILLIC CAPITAL LETTER ZHE 0436 # \x0417 CYRILLIC CAPITAL LETTER ZE 0437 # \x0418 CYRILLIC CAPITAL LETTER I CYRILLIC CAPITAL LETTER II 0438 # \x0419 CYRILLIC CAPITAL LETTER SHORT I 0418 0306 CYRILLIC CAPITAL LET # \xTER SHORT II 0439 # \x041A CYRILLIC CAPITAL LETTER KA 043A # \x041B CYRILLIC CAPITAL LETTER EL 043B # \x041C CYRILLIC CAPITAL LETTER EM 043C # \x041D CYRILLIC CAPITAL LETTER EN 043D # \x041E CYRILLIC CAPITAL LETTER O 043E # \x041F CYRILLIC CAPITAL LETTER PE 043F # \x0420 CYRILLIC CAPITAL LETTER ER 0440 # \x0421 CYRILLIC CAPITAL LETTER ES 0441 # \x0422 CYRILLIC CAPITAL LETTER TE 0442 # \x0423 CYRILLIC CAPITAL LETTER U 0443 # \x0424 CYRILLIC CAPITAL LETTER EF 0444 # \x0425 CYRILLIC CAPITAL LETTER HA CYRILLIC CAPITAL LETTER KHA 0445 # \x # \x0426 CYRILLIC CAPITAL LETTER TSE 0446 # \x0427 CYRILLIC CAPITAL LETTER CHE 0447 # \x0428 CYRILLIC CAPITAL LETTER SHA 0448 # \x0429 CYRILLIC CAPITAL LETTER SHCHA 0449 # \x042A CYRILLIC CAPITAL LETTER HARD SIGN 044A # \x042B CYRILLIC CAPITAL LETTER YERU CYRILLIC CAPITAL LETTER YERI 0 # \x44B # \x042C CYRILLIC CAPITAL LETTER SOFT SIGN 044C # \x042D CYRILLIC CAPITAL LETTER E CYRILLIC CAPITAL LETTER REVERSED E # \x 044D # \x042E CYRILLIC CAPITAL LETTER YU CYRILLIC CAPITAL LETTER IU 044E # \x042F CYRILLIC CAPITAL LETTER YA CYRILLIC CAPITAL LETTER IA 044F # \x0430 CYRILLIC SMALL LETTER A 0410 0410 # \x0431 CYRILLIC SMALL LETTER BE 0411 0411 # \x0432 CYRILLIC SMALL LETTER VE 0412 0412 # \x0433 CYRILLIC SMALL LETTER GHE CYRILLIC SMALL LETTER GE 0413 041 # \x3 # \x0434 CYRILLIC SMALL LETTER DE 0414 0414 # \x0435 CYRILLIC SMALL LETTER IE 0415 0415 # \x0436 CYRILLIC SMALL LETTER ZHE 0416 0416 # \x0437 CYRILLIC SMALL LETTER ZE 0417 0417 # \x0438 CYRILLIC SMALL LETTER I CYRILLIC SMALL LETTER II 0418 0418 # \x0439 CYRILLIC SMALL LETTER SHORT I 0438 0306 CYRILLIC SMALL LETTER # \xSHORT II 0419 0419 # \x043A CYRILLIC SMALL LETTER KA 041A 041A # \x043B CYRILLIC SMALL LETTER EL 041B 041B # \x043C CYRILLIC SMALL LETTER EM 041C 041C # \x043D CYRILLIC SMALL LETTER EN 041D 041D # \x043E CYRILLIC SMALL LETTER O 041E 041E # \x043F CYRILLIC SMALL LETTER PE 041F 041F # \x0440 CYRILLIC SMALL LETTER ER 0420 0420 # \x0441 CYRILLIC SMALL LETTER ES 0421 0421 # \x0442 CYRILLIC SMALL LETTER TE 0422 0422 # \x0443 CYRILLIC SMALL LETTER U 0423 0423 # \x0444 CYRILLIC SMALL LETTER EF 0424 0424 # \x0445 CYRILLIC SMALL LETTER HA CYRILLIC SMALL LETTER KHA 0425 042 # \x5 # \x0446 CYRILLIC SMALL LETTER TSE 0426 0426 # \x0447 CYRILLIC SMALL LETTER CHE 0427 0427 # \x0448 CYRILLIC SMALL LETTER SHA 0428 0428 # \x0449 CYRILLIC SMALL LETTER SHCHA 0429 0429 # \x044A CYRILLIC SMALL LETTER HARD SIGN 042A 042A # \x044B CYRILLIC SMALL LETTER YERU CYRILLIC SMALL LETTER YERI 042B # \x042B # \x044C CYRILLIC SMALL LETTER SOFT SIGN 042C 042C # \x044D CYRILLIC SMALL LETTER E CYRILLIC SMALL LETTER REVERSED E 042 # \xD 042D # \x044E CYRILLIC SMALL LETTER YU CYRILLIC SMALL LETTER IU 042E 042E # \x044F CYRILLIC SMALL LETTER YA CYRILLIC SMALL LETTER IA 042F 042F # \x0450 CYRILLIC SMALL LETTER IE WITH GRAVE 0435 0300 0400 0400 # \x0451 CYRILLIC SMALL LETTER IO 0435 0308 0401 0401 # \x0452 CYRILLIC SMALL LETTER DJE Serbocroatian 0402 0402 # \x0453 CYRILLIC SMALL LETTER GJE 0433 0301 0403 0403 # \x0454 CYRILLIC SMALL LETTER UKRAINIAN IE CYRILLIC SMALL LETTER E 0 # \x404 0404 # \x0455 CYRILLIC SMALL LETTER DZE 0405 0405 # \x0456 CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I CYRILLIC SMALL # \x LETTER I 0406 0406 # \x0457 CYRILLIC SMALL LETTER YI 0456 0308 Ukrainian 0407 0407 # \x0458 CYRILLIC SMALL LETTER JE 0408 0408 # \x0459 CYRILLIC SMALL LETTER LJE 0409 0409 # \x045A CYRILLIC SMALL LETTER NJE 040A 040A # \x045B CYRILLIC SMALL LETTER TSHE Serbocroatian 040B 040B # \x045C CYRILLIC SMALL LETTER KJE 043A 0301 040C 040C # \x045D CYRILLIC SMALL LETTER I WITH GRAVE 0438 0300 040D 040D # \x045E CYRILLIC SMALL LETTER SHORT U 0443 0306 Byelorussian 040E 04 # \x0E # \x045F CYRILLIC SMALL LETTER DZHE 040F 040F # \x0460 CYRILLIC CAPITAL LETTER OMEGA 0461 # \x0461 CYRILLIC SMALL LETTER OMEGA 0460 0460 # \x0462 CYRILLIC CAPITAL LETTER YAT 0463 # \x0463 CYRILLIC SMALL LETTER YAT 0462 0462 # \x0464 CYRILLIC CAPITAL LETTER IOTIFIED E 0465 # \x0465 CYRILLIC SMALL LETTER IOTIFIED E 0464 0464 # \x0466 CYRILLIC CAPITAL LETTER LITTLE YUS 0467 # \x0467 CYRILLIC SMALL LETTER LITTLE YUS 0466 0466 # \x0468 CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS 0469 # \x0469 CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS 0468 0468 # \x046A CYRILLIC CAPITAL LETTER BIG YUS 046B # \x046B CYRILLIC SMALL LETTER BIG YUS 046A 046A # \x046C CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS 046D # \x046D CYRILLIC SMALL LETTER IOTIFIED BIG YUS 046C 046C # \x046E CYRILLIC CAPITAL LETTER KSI 046F # \x046F CYRILLIC SMALL LETTER KSI 046E 046E # \x0470 CYRILLIC CAPITAL LETTER PSI 0471 # \x0471 CYRILLIC SMALL LETTER PSI 0470 0470 # \x0472 CYRILLIC CAPITAL LETTER FITA 0473 # \x0473 CYRILLIC SMALL LETTER FITA 0472 0472 # \x0474 CYRILLIC CAPITAL LETTER IZHITSA 0475 # \x0475 CYRILLIC SMALL LETTER IZHITSA 0474 0474 # \x0476 CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT 0474 030F # \x CYRILLIC CAPITAL LETTER IZHITSA DOUBLE GRAVE 0477 # \x0477 CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT 0475 030F # \x CYRILLIC SMALL LETTER IZHITSA DOUBLE GRAVE 0476 0476 # \x0478 CYRILLIC CAPITAL LETTER UK CYRILLIC CAPITAL LETTER UK DIGRAPH # \x 0479 # \x0479 CYRILLIC SMALL LETTER UK CYRILLIC SMALL LETTER UK DIGRAPH 04 # \x78 0478 # \x047A CYRILLIC CAPITAL LETTER ROUND OMEGA 047B # \x047B CYRILLIC SMALL LETTER ROUND OMEGA 047A 047A # \x047C CYRILLIC CAPITAL LETTER OMEGA WITH TITLO CYRILLIC CAPITAL LET # \xTER OMEGA TITLO 047D # \x047D CYRILLIC SMALL LETTER OMEGA WITH TITLO CYRILLIC SMALL LETTER # \xOMEGA TITLO 047C 047C # \x047E CYRILLIC CAPITAL LETTER OT 047F # \x047F CYRILLIC SMALL LETTER OT 047E 047E # \x0480 CYRILLIC CAPITAL LETTER KOPPA 0481 # \x0481 CYRILLIC SMALL LETTER KOPPA 0480 0480 # \x0482 CYRILLIC THOUSANDS SIGN # \x0483 COMBINING CYRILLIC TITLO 230 CYRILLIC NON-SPACING TITLO # \x0484 COMBINING CYRILLIC PALATALIZATION 230 CYRILLIC NON-SPACING PA # \xLATALIZATION # \x0485 COMBINING CYRILLIC DASIA PNEUMATA 230 CYRILLIC NON-SPACING DA # \xSIA PNEUMATA # \x0486 COMBINING CYRILLIC PSILI PNEUMATA 230 CYRILLIC NON-SPACING PS # \xILI PNEUMATA # \x0488 COMBINING CYRILLIC HUNDRED THOUSANDS SIGN Me # \x0489 COMBINING CYRILLIC MILLIONS SIGN Me # \x048A CYRILLIC CAPITAL LETTER SHORT I WITH TAIL 048B # \x048B CYRILLIC SMALL LETTER SHORT I WITH TAIL 048A 048A # \x048C CYRILLIC CAPITAL LETTER SEMISOFT SIGN 048D # \x048D CYRILLIC SMALL LETTER SEMISOFT SIGN 048C 048C # \x048E CYRILLIC CAPITAL LETTER ER WITH TICK 048F # \x048F CYRILLIC SMALL LETTER ER WITH TICK 048E 048E # \x0490 CYRILLIC CAPITAL LETTER GHE WITH UPTURN CYRILLIC CAPITAL LETT # \xER GE WITH UPTURN 0491 # \x0491 CYRILLIC SMALL LETTER GHE WITH UPTURN CYRILLIC SMALL LETTER G # \xE WITH UPTURN 0490 0490 # \x0492 CYRILLIC CAPITAL LETTER GHE WITH STROKE CYRILLIC CAPITAL LETT # \xER GE BAR 0493 # \x0493 CYRILLIC SMALL LETTER GHE WITH STROKE CYRILLIC SMALL LETTER G # \xE BAR 0492 0492 # \x0494 CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK CYRILLIC CAPITAL # \x LETTER GE HOOK 0495 # \x0495 CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK CYRILLIC SMALL LET # \xTER GE HOOK 0494 0494 # \x0496 CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER CYRILLIC CAPITAL L # \xETTER ZHE WITH RIGHT DESCENDER 0497 # \x0497 CYRILLIC SMALL LETTER ZHE WITH DESCENDER CYRILLIC SMALL LETTE # \xR ZHE WITH RIGHT DESCENDER 0496 0496 # \x0498 CYRILLIC CAPITAL LETTER ZE WITH DESCENDER CYRILLIC CAPITAL LE # \xTTER ZE CEDILLA 0499 # \x0499 CYRILLIC SMALL LETTER ZE WITH DESCENDER CYRILLIC SMALL LETTER # \x ZE CEDILLA 0498 0498 # \x049A CYRILLIC CAPITAL LETTER KA WITH DESCENDER CYRILLIC CAPITAL LE # \xTTER KA WITH RIGHT DESCENDER 049B # \x049B CYRILLIC SMALL LETTER KA WITH DESCENDER CYRILLIC SMALL LETTER # \x KA WITH RIGHT DESCENDER 049A 049A # \x049C CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE CYRILLIC CAPI # \xTAL LETTER KA VERTICAL BAR 049D # \x049D CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE CYRILLIC SMALL # \xLETTER KA VERTICAL BAR 049C 049C # \x049E CYRILLIC CAPITAL LETTER KA WITH STROKE CYRILLIC CAPITAL LETTE # \xR KA BAR 049F # \x049F CYRILLIC SMALL LETTER KA WITH STROKE CYRILLIC SMALL LETTER KA # \x BAR 049E 049E # \x04A0 CYRILLIC CAPITAL LETTER BASHKIR KA CYRILLIC CAPITAL LETTER RE # \xVERSED GE KA 04A1 # \x04A1 CYRILLIC SMALL LETTER BASHKIR KA CYRILLIC SMALL LETTER REVERS # \xED GE KA 04A0 04A0 # \x04A2 CYRILLIC CAPITAL LETTER EN WITH DESCENDER CYRILLIC CAPITAL LE # \xTTER EN WITH RIGHT DESCENDER 04A3 # \x04A3 CYRILLIC SMALL LETTER EN WITH DESCENDER CYRILLIC SMALL LETTER # \x EN WITH RIGHT DESCENDER 04A2 04A2 # \x04A4 CYRILLIC CAPITAL LIGATURE EN GHE CYRILLIC CAPITAL LETTER EN G # \xE 04A5 # \x04A5 CYRILLIC SMALL LIGATURE EN GHE CYRILLIC SMALL LETTER EN GE 0 # \x4A4 04A4 # \x04A6 CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK CYRILLIC CAPITAL # \xLETTER PE HOOK Abkhasian 04A7 # \x04A7 CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK CYRILLIC SMALL LETT # \xER PE HOOK Abkhasian 04A6 04A6 # \x04A8 CYRILLIC CAPITAL LETTER ABKHASIAN HA CYRILLIC CAPITAL LETTER # \xO HOOK 04A9 # \x04A9 CYRILLIC SMALL LETTER ABKHASIAN HA CYRILLIC SMALL LETTER O HO # \xOK 04A8 04A8 # \x04AA CYRILLIC CAPITAL LETTER ES WITH DESCENDER CYRILLIC CAPITAL LE # \xTTER ES CEDILLA 04AB # \x04AB CYRILLIC SMALL LETTER ES WITH DESCENDER CYRILLIC SMALL LETTER # \x ES CEDILLA 04AA 04AA # \x04AC CYRILLIC CAPITAL LETTER TE WITH DESCENDER CYRILLIC CAPITAL LE # \xTTER TE WITH RIGHT DESCENDER 04AD # \x04AD CYRILLIC SMALL LETTER TE WITH DESCENDER CYRILLIC SMALL LETTER # \x TE WITH RIGHT DESCENDER 04AC 04AC # \x04AE CYRILLIC CAPITAL LETTER STRAIGHT U 04AF # \x04AF CYRILLIC SMALL LETTER STRAIGHT U 04AE 04AE # \x04B0 CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE CYRILLIC CAPIT # \xAL LETTER STRAIGHT U BAR 04B1 # \x04B1 CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE CYRILLIC SMALL L # \xETTER STRAIGHT U BAR 04B0 04B0 # \x04B2 CYRILLIC CAPITAL LETTER HA WITH DESCENDER CYRILLIC CAPITAL LE # \xTTER KHA WITH RIGHT DESCENDER 04B3 # \x04B3 CYRILLIC SMALL LETTER HA WITH DESCENDER CYRILLIC SMALL LETTER # \x KHA WITH RIGHT DESCENDER 04B2 04B2 # \x04B4 CYRILLIC CAPITAL LIGATURE TE TSE CYRILLIC CAPITAL LETTER TE T # \xSE Abkhasian 04B5 # \x04B5 CYRILLIC SMALL LIGATURE TE TSE CYRILLIC SMALL LETTER TE TSE A # \xbkhasian 04B4 04B4 # \x04B6 CYRILLIC CAPITAL LETTER CHE WITH DESCENDER CYRILLIC CAPITAL L # \xETTER CHE WITH RIGHT DESCENDER 04B7 # \x04B7 CYRILLIC SMALL LETTER CHE WITH DESCENDER CYRILLIC SMALL LETTE # \xR CHE WITH RIGHT DESCENDER 04B6 04B6 # \x04B8 CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE CYRILLIC CAP # \xITAL LETTER CHE VERTICAL BAR 04B9 # \x04B9 CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE CYRILLIC SMALL # \x LETTER CHE VERTICAL BAR 04B8 04B8 # \x04BA CYRILLIC CAPITAL LETTER SHHA CYRILLIC CAPITAL LETTER H 04BB # \x # \x04BB CYRILLIC SMALL LETTER SHHA CYRILLIC SMALL LETTER H 04BA 04B # \xA # \x04BC CYRILLIC CAPITAL LETTER ABKHASIAN CHE CYRILLIC CAPITAL LETTER # \x IE HOOK 04BD # \x04BD CYRILLIC SMALL LETTER ABKHASIAN CHE CYRILLIC SMALL LETTER IE # \xHOOK 04BC 04BC # \x04BE CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER CYRILLIC # \x CAPITAL LETTER IE HOOK OGONEK 04BF # \x04BF CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER CYRILLIC S # \xMALL LETTER IE HOOK OGONEK 04BE 04BE # \x04C0 CYRILLIC LETTER PALOCHKA CYRILLIC LETTER I # \x04C1 CYRILLIC CAPITAL LETTER ZHE WITH BREVE 0416 0306 CYRILLIC CAPI # \xTAL LETTER SHORT ZHE 04C2 # \x04C2 CYRILLIC SMALL LETTER ZHE WITH BREVE 0436 0306 CYRILLIC SMALL # \xLETTER SHORT ZHE 04C1 04C1 # \x04C3 CYRILLIC CAPITAL LETTER KA WITH HOOK CYRILLIC CAPITAL LETTER # \xKA HOOK 04C4 # \x04C4 CYRILLIC SMALL LETTER KA WITH HOOK CYRILLIC SMALL LETTER KA H # \xOOK 04C3 04C3 # \x04C5 CYRILLIC CAPITAL LETTER EL WITH TAIL 04C6 # \x04C6 CYRILLIC SMALL LETTER EL WITH TAIL 04C5 04C5 # \x04C7 CYRILLIC CAPITAL LETTER EN WITH HOOK CYRILLIC CAPITAL LETTER # \xEN HOOK 04C8 # \x04C8 CYRILLIC SMALL LETTER EN WITH HOOK CYRILLIC SMALL LETTER EN H # \xOOK 04C7 04C7 # \x04C9 CYRILLIC CAPITAL LETTER EN WITH TAIL 04CA # \x04CA CYRILLIC SMALL LETTER EN WITH TAIL 04C9 04C9 # \x04CB CYRILLIC CAPITAL LETTER KHAKASSIAN CHE CYRILLIC CAPITAL LETTE # \xR CHE WITH LEFT DESCENDER 04CC # \x04CC CYRILLIC SMALL LETTER KHAKASSIAN CHE CYRILLIC SMALL LETTER CH # \xE WITH LEFT DESCENDER 04CB 04CB # \x04CD CYRILLIC CAPITAL LETTER EM WITH TAIL 04CE # \x04CE CYRILLIC SMALL LETTER EM WITH TAIL 04CD 04CD # \x04D0 CYRILLIC CAPITAL LETTER A WITH BREVE 0410 0306 04D1 # \x04D1 CYRILLIC SMALL LETTER A WITH BREVE 0430 0306 04D0 04D0 # \x04D2 CYRILLIC CAPITAL LETTER A WITH DIAERESIS 0410 0308 04D3 # \x04D3 CYRILLIC SMALL LETTER A WITH DIAERESIS 0430 0308 04D2 04D2 # \x04D4 CYRILLIC CAPITAL LIGATURE A IE 04D5 # \x04D5 CYRILLIC SMALL LIGATURE A IE 04D4 04D4 # \x04D6 CYRILLIC CAPITAL LETTER IE WITH BREVE 0415 0306 04D7 # \x04D7 CYRILLIC SMALL LETTER IE WITH BREVE 0435 0306 04D6 04D6 # \x04D8 CYRILLIC CAPITAL LETTER SCHWA 04D9 # \x04D9 CYRILLIC SMALL LETTER SCHWA 04D8 04D8 # \x04DA CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS 04D8 0308 04DB # \x # \x04DB CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS 04D9 0308 04DA 0 # \x4DA # \x04DC CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS 0416 0308 04DD # \x04DD CYRILLIC SMALL LETTER ZHE WITH DIAERESIS 0436 0308 04DC 04D # \xC # \x04DE CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS 0417 0308 04DF # \x04DF CYRILLIC SMALL LETTER ZE WITH DIAERESIS 0437 0308 04DE 04DE # \x04E0 CYRILLIC CAPITAL LETTER ABKHASIAN DZE 04E1 # \x04E1 CYRILLIC SMALL LETTER ABKHASIAN DZE 04E0 04E0 # \x04E2 CYRILLIC CAPITAL LETTER I WITH MACRON 0418 0304 04E3 # \x04E3 CYRILLIC SMALL LETTER I WITH MACRON 0438 0304 04E2 04E2 # \x04E4 CYRILLIC CAPITAL LETTER I WITH DIAERESIS 0418 0308 04E5 # \x04E5 CYRILLIC SMALL LETTER I WITH DIAERESIS 0438 0308 04E4 04E4 # \x04E6 CYRILLIC CAPITAL LETTER O WITH DIAERESIS 041E 0308 04E7 # \x04E7 CYRILLIC SMALL LETTER O WITH DIAERESIS 043E 0308 04E6 04E6 # \x04E8 CYRILLIC CAPITAL LETTER BARRED O 04E9 # \x04E9 CYRILLIC SMALL LETTER BARRED O 04E8 04E8 # \x04EA CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS 04E8 0308 0 # \x4EB # \x04EB CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS 04E9 0308 04EA # \x 04EA # \x04EC CYRILLIC CAPITAL LETTER E WITH DIAERESIS 042D 0308 04ED # \x04ED CYRILLIC SMALL LETTER E WITH DIAERESIS 044D 0308 04EC 04EC # \x04EE CYRILLIC CAPITAL LETTER U WITH MACRON 0423 0304 04EF # \x04EF CYRILLIC SMALL LETTER U WITH MACRON 0443 0304 04EE 04EE # \x04F0 CYRILLIC CAPITAL LETTER U WITH DIAERESIS 0423 0308 04F1 # \x04F1 CYRILLIC SMALL LETTER U WITH DIAERESIS 0443 0308 04F0 04F0 # \x04F2 CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE 0423 030B 04F3 # \x04F3 CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE 0443 030B 04F2 04 # \xF2 # \x04F4 CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS 0427 0308 04F5 # \x04F5 CYRILLIC SMALL LETTER CHE WITH DIAERESIS 0447 0308 04F4 04F # \x4 # \x04F8 CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS 042B 0308 04F9 # \x04F9 CYRILLIC SMALL LETTER YERU WITH DIAERESIS 044B 0308 04F8 04 # \xF8 # \x0500 CYRILLIC CAPITAL LETTER KOMI DE 0501 # \x0501 CYRILLIC SMALL LETTER KOMI DE 0500 0500 # \x0502 CYRILLIC CAPITAL LETTER KOMI DJE 0503 # \x0503 CYRILLIC SMALL LETTER KOMI DJE 0502 0502 # \x0504 CYRILLIC CAPITAL LETTER KOMI ZJE 0505 # \x0505 CYRILLIC SMALL LETTER KOMI ZJE 0504 0504 # \x0506 CYRILLIC CAPITAL LETTER KOMI DZJE 0507 # \x0507 CYRILLIC SMALL LETTER KOMI DZJE 0506 0506 # \x0508 CYRILLIC CAPITAL LETTER KOMI LJE 0509 # \x0509 CYRILLIC SMALL LETTER KOMI LJE 0508 0508 # \x050A CYRILLIC CAPITAL LETTER KOMI NJE 050B # \x050B CYRILLIC SMALL LETTER KOMI NJE 050A 050A # \x050C CYRILLIC CAPITAL LETTER KOMI SJE 050D # \x050D CYRILLIC SMALL LETTER KOMI SJE 050C 050C # \x050E CYRILLIC CAPITAL LETTER KOMI TJE 050F # \x050F CYRILLIC SMALL LETTER KOMI TJE 050E 050E # \x0531 ARMENIAN CAPITAL LETTER AYB 0561 # \x0532 ARMENIAN CAPITAL LETTER BEN 0562 # \x0533 ARMENIAN CAPITAL LETTER GIM 0563 # \x0534 ARMENIAN CAPITAL LETTER DA 0564 # \x0535 ARMENIAN CAPITAL LETTER ECH 0565 # \x0536 ARMENIAN CAPITAL LETTER ZA 0566 # \x0537 ARMENIAN CAPITAL LETTER EH 0567 # \x0538 ARMENIAN CAPITAL LETTER 0568 # \x0539 ARMENIAN CAPITAL LETTER TO 0569 # \x053A ARMENIAN CAPITAL LETTER ZHE 056A # \x053B ARMENIAN CAPITAL LETTER INI 056B # \x053C ARMENIAN CAPITAL LETTER LIWN 056C # \x053D ARMENIAN CAPITAL LETTER XEH 056D # \x053E ARMENIAN CAPITAL LETTER CA 056E # \x053F ARMENIAN CAPITAL LETTER KEN 056F # \x0540 ARMENIAN CAPITAL LETTER HO 0570 # \x0541 ARMENIAN CAPITAL LETTER JA 0571 # \x0542 ARMENIAN CAPITAL LETTER GHAD ARMENIAN CAPITAL LETTER LAD 05 # \x72 # \x0543 ARMENIAN CAPITAL LETTER CHEH 0573 # \x0544 ARMENIAN CAPITAL LETTER MEN 0574 # \x0545 ARMENIAN CAPITAL LETTER YI 0575 # \x0546 ARMENIAN CAPITAL LETTER NOW 0576 # \x0547 ARMENIAN CAPITAL LETTER SHA 0577 # \x0548 ARMENIAN CAPITAL LETTER VO 0578 # \x0549 ARMENIAN CAPITAL LETTER CHA 0579 # \x054A ARMENIAN CAPITAL LETTER PEH 057A # \x054B ARMENIAN CAPITAL LETTER JHEH 057B # \x054C ARMENIAN CAPITAL LETTER RA 057C # \x054D ARMENIAN CAPITAL LETTER SEH 057D # \x054E ARMENIAN CAPITAL LETTER VEW 057E # \x054F ARMENIAN CAPITAL LETTER TIWN 057F # \x0550 ARMENIAN CAPITAL LETTER REH 0580 # \x0551 ARMENIAN CAPITAL LETTER CO 0581 # \x0552 ARMENIAN CAPITAL LETTER YIWN 0582 # \x0553 ARMENIAN CAPITAL LETTER PIWR 0583 # \x0554 ARMENIAN CAPITAL LETTER KEH 0584 # \x0555 ARMENIAN CAPITAL LETTER OH 0585 # \x0556 ARMENIAN CAPITAL LETTER FEH 0586 # \x0559 ARMENIAN MODIFIER LETTER LEFT HALF RING Lm # \x055A ARMENIAN APOSTROPHE ARMENIAN MODIFIER LETTER RIGHT HALF RING # \x # \x055B ARMENIAN EMPHASIS MARK # \x055C ARMENIAN EXCLAMATION MARK # \x055D ARMENIAN COMMA # \x055E ARMENIAN QUESTION MARK # \x055F ARMENIAN ABBREVIATION MARK # \x0561 ARMENIAN SMALL LETTER AYB 0531 0531 # \x0562 ARMENIAN SMALL LETTER BEN 0532 0532 # \x0563 ARMENIAN SMALL LETTER GIM 0533 0533 # \x0564 ARMENIAN SMALL LETTER DA 0534 0534 # \x0565 ARMENIAN SMALL LETTER ECH 0535 0535 # \x0566 ARMENIAN SMALL LETTER ZA 0536 0536 # \x0567 ARMENIAN SMALL LETTER EH 0537 0537 # \x0568 ARMENIAN SMALL LETTER 0538 0538 # \x0569 ARMENIAN SMALL LETTER TO 0539 0539 # \x056A ARMENIAN SMALL LETTER ZHE 053A 053A # \x056B ARMENIAN SMALL LETTER INI 053B 053B # \x056C ARMENIAN SMALL LETTER LIWN 053C 053C # \x056D ARMENIAN SMALL LETTER XEH 053D 053D # \x056E ARMENIAN SMALL LETTER CA 053E 053E # \x056F ARMENIAN SMALL LETTER KEN 053F 053F # \x0570 ARMENIAN SMALL LETTER HO 0540 0540 # \x0571 ARMENIAN SMALL LETTER JA 0541 0541 # \x0572 ARMENIAN SMALL LETTER GHAD ARMENIAN SMALL LETTER LAD 0542 0 # \x542 # \x0573 ARMENIAN SMALL LETTER CHEH 0543 0543 # \x0574 ARMENIAN SMALL LETTER MEN 0544 0544 # \x0575 ARMENIAN SMALL LETTER YI 0545 0545 # \x0576 ARMENIAN SMALL LETTER NOW 0546 0546 # \x0577 ARMENIAN SMALL LETTER SHA 0547 0547 # \x0578 ARMENIAN SMALL LETTER VO 0548 0548 # \x0579 ARMENIAN SMALL LETTER CHA 0549 0549 # \x057A ARMENIAN SMALL LETTER PEH 054A 054A # \x057B ARMENIAN SMALL LETTER JHEH 054B 054B # \x057C ARMENIAN SMALL LETTER RA 054C 054C # \x057D ARMENIAN SMALL LETTER SEH 054D 054D # \x057E ARMENIAN SMALL LETTER VEW 054E 054E # \x057F ARMENIAN SMALL LETTER TIWN 054F 054F # \x0580 ARMENIAN SMALL LETTER REH 0550 0550 # \x0581 ARMENIAN SMALL LETTER CO 0551 0551 # \x0582 ARMENIAN SMALL LETTER YIWN 0552 0552 # \x0583 ARMENIAN SMALL LETTER PIWR 0553 0553 # \x0584 ARMENIAN SMALL LETTER KEH 0554 0554 # \x0585 ARMENIAN SMALL LETTER OH 0555 0555 # \x0586 ARMENIAN SMALL LETTER FEH 0556 0556 # \x0587 ARMENIAN SMALL LIGATURE ECH YIWN 0565 0582 # \x0589 ARMENIAN FULL STOP ARMENIAN PERIOD # \x058A ARMENIAN HYPHEN # \x0591 HEBREW ACCENT ETNAHTA 220 # \x0592 HEBREW ACCENT SEGOL 230 # \x0593 HEBREW ACCENT SHALSHELET 230 # \x0594 HEBREW ACCENT ZAQEF QATAN 230 # \x0595 HEBREW ACCENT ZAQEF GADOL 230 # \x0596 HEBREW ACCENT TIPEHA 220 * # \x0597 HEBREW ACCENT REVIA 230 # \x0598 HEBREW ACCENT ZARQA 230 * # \x0599 HEBREW ACCENT PASHTA 230 # \x059A HEBREW ACCENT YETIV 222 # \x059B HEBREW ACCENT TEVIR 220 # \x059C HEBREW ACCENT GERESH 230 # \x059D HEBREW ACCENT GERESH MUQDAM 230 # \x059E HEBREW ACCENT GERSHAYIM 230 # \x059F HEBREW ACCENT QARNEY PARA 230 # \x05A0 HEBREW ACCENT TELISHA GEDOLA 230 # \x05A1 HEBREW ACCENT PAZER 230 # \x05A3 HEBREW ACCENT MUNAH 220 # \x05A4 HEBREW ACCENT MAHAPAKH 220 # \x05A5 HEBREW ACCENT MERKHA 220 * # \x05A6 HEBREW ACCENT MERKHA KEFULA 220 # \x05A7 HEBREW ACCENT DARGA 220 # \x05A8 HEBREW ACCENT QADMA 230 * # \x05A9 HEBREW ACCENT TELISHA QETANA 230 # \x05AA HEBREW ACCENT YERAH BEN YOMO 220 * # \x05AB HEBREW ACCENT OLE 230 # \x05AC HEBREW ACCENT ILUY 230 # \x05AD HEBREW ACCENT DEHI 222 # \x05AE HEBREW ACCENT ZINOR 228 # \x05AF HEBREW MARK MASORA CIRCLE 230 # \x05B0 HEBREW POINT SHEVA 10 # \x05B1 HEBREW POINT HATAF SEGOL 11 # \x05B2 HEBREW POINT HATAF PATAH 12 # \x05B3 HEBREW POINT HATAF QAMATS 13 # \x05B4 HEBREW POINT HIRIQ 14 # \x05B5 HEBREW POINT TSERE 15 # \x05B6 HEBREW POINT SEGOL 16 # \x05B7 HEBREW POINT PATAH 17 # \x05B8 HEBREW POINT QAMATS 18 # \x05B9 HEBREW POINT HOLAM 19 # \x05BB HEBREW POINT QUBUTS 20 # \x05BC HEBREW POINT DAGESH OR MAPIQ 21 HEBREW POINT DAGESH or shuruq # \x # \x05BD HEBREW POINT METEG 22 * # \x05BE HEBREW PUNCTUATION MAQAF # \x05BF HEBREW POINT RAFE 23 # \x05C0 HEBREW PUNCTUATION PASEQ HEBREW POINT PASEQ * # \x05C1 HEBREW POINT SHIN DOT 24 # \x05C2 HEBREW POINT SIN DOT 25 # \x05C3 HEBREW PUNCTUATION SOF PASUQ * # \x05C4 HEBREW MARK UPPER DOT 230 # \x05D0 HEBREW LETTER ALEF # \x05D1 HEBREW LETTER BET # \x05D2 HEBREW LETTER GIMEL # \x05D3 HEBREW LETTER DALET # \x05D4 HEBREW LETTER HE # \x05D5 HEBREW LETTER VAV # \x05D6 HEBREW LETTER ZAYIN # \x05D7 HEBREW LETTER HET # \x05D8 HEBREW LETTER TET # \x05D9 HEBREW LETTER YOD # \x05DA HEBREW LETTER FINAL KAF # \x05DB HEBREW LETTER KAF # \x05DC HEBREW LETTER LAMED # \x05DD HEBREW LETTER FINAL MEM # \x05DE HEBREW LETTER MEM # \x05DF HEBREW LETTER FINAL NUN # \x05E0 HEBREW LETTER NUN # \x05E1 HEBREW LETTER SAMEKH # \x05E2 HEBREW LETTER AYIN # \x05E3 HEBREW LETTER FINAL PE # \x05E4 HEBREW LETTER PE # \x05E5 HEBREW LETTER FINAL TSADI # \x05E6 HEBREW LETTER TSADI # \x05E7 HEBREW LETTER QOF # \x05E8 HEBREW LETTER RESH # \x05E9 HEBREW LETTER SHIN # \x05EA HEBREW LETTER TAV # \x05F0 HEBREW LIGATURE YIDDISH DOUBLE VAV HEBREW LETTER DOUBLE VAV # \x # \x05F1 HEBREW LIGATURE YIDDISH VAV YOD HEBREW LETTER VAV YOD # \x05F2 HEBREW LIGATURE YIDDISH DOUBLE YOD HEBREW LETTER DOUBLE YOD # \x # \x05F3 HEBREW PUNCTUATION GERESH # \x05F4 HEBREW PUNCTUATION GERSHAYIM # \x0600 ARABIC NUMBER SIGN AL # \x0601 ARABIC SIGN SANAH AL # \x0602 ARABIC FOOTNOTE MARKER AL # \x0603 ARABIC SIGN SAFHA AL # \x060C ARABIC COMMA # \x060D ARABIC DATE SEPARATOR AL # \x060E ARABIC POETIC VERSE SIGN # \x060F ARABIC SIGN MISRA # \x0610 ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM 230 # \x0611 ARABIC SIGN ALAYHE ASSALLAM 230 # \x0612 ARABIC SIGN RAHMATULLAH ALAYHE 230 # \x0613 ARABIC SIGN RADI ALLAHOU ANHU 230 # \x0614 ARABIC SIGN TAKHALLUS 230 # \x0615 ARABIC SMALL HIGH TAH 230 # \x061B ARABIC SEMICOLON AL # \x061F ARABIC QUESTION MARK AL # \x0621 ARABIC LETTER HAMZA AL ARABIC LETTER HAMZAH # \x0622 ARABIC LETTER ALEF WITH MADDA ABOVE AL 0627 0653 ARABIC LETTER M # \xADDAH ALEF # \x0623 ARABIC LETTER ALEF WITH HAMZA ABOVE AL 0627 0654 ARABIC LETTER H # \xAMZAH ALEF # \x0624 ARABIC LETTER WAW WITH HAMZA ABOVE AL 0648 0654 ARABIC LETTER HA # \xMZAH WAW # \x0625 ARABIC LETTER ALEF WITH HAMZA BELOW AL 0627 0655 ARABIC LETTER H # \xAMZAH UNDER ALEF # \x0626 ARABIC LETTER YEH WITH HAMZA ABOVE AL 064A 0654 ARABIC LETTER HA # \xMZAH YA # \x0627 ARABIC LETTER ALEF AL # \x0628 ARABIC LETTER BEH AL ARABIC LETTER BAA # \x0629 ARABIC LETTER TEH MARBUTA AL ARABIC LETTER TAA MARBUTAH # \x062A ARABIC LETTER TEH AL ARABIC LETTER TAA # \x062B ARABIC LETTER THEH AL ARABIC LETTER THAA # \x062C ARABIC LETTER JEEM AL # \x062D ARABIC LETTER HAH AL ARABIC LETTER HAA # \x062E ARABIC LETTER KHAH AL ARABIC LETTER KHAA # \x062F ARABIC LETTER DAL AL # \x0630 ARABIC LETTER THAL AL # \x0631 ARABIC LETTER REH AL ARABIC LETTER RA # \x0632 ARABIC LETTER ZAIN AL # \x0633 ARABIC LETTER SEEN AL # \x0634 ARABIC LETTER SHEEN AL # \x0635 ARABIC LETTER SAD AL # \x0636 ARABIC LETTER DAD AL # \x0637 ARABIC LETTER TAH AL # \x0638 ARABIC LETTER ZAH AL ARABIC LETTER DHAH # \x0639 ARABIC LETTER AIN AL # \x063A ARABIC LETTER GHAIN AL # \x0640 ARABIC TATWEEL Lm AL # \x0641 ARABIC LETTER FEH AL ARABIC LETTER FA # \x0642 ARABIC LETTER QAF AL # \x0643 ARABIC LETTER KAF AL ARABIC LETTER CAF # \x0644 ARABIC LETTER LAM AL # \x0645 ARABIC LETTER MEEM AL # \x0646 ARABIC LETTER NOON AL # \x0647 ARABIC LETTER HEH AL ARABIC LETTER HA # \x0648 ARABIC LETTER WAW AL # \x0649 ARABIC LETTER ALEF MAKSURA AL ARABIC LETTER ALEF MAQSURAH # \x064A ARABIC LETTER YEH AL ARABIC LETTER YA # \x064B ARABIC FATHATAN 27 # \x064C ARABIC DAMMATAN 28 # \x064D ARABIC KASRATAN 29 # \x064E ARABIC FATHA 30 ARABIC FATHAH # \x064F ARABIC DAMMA 31 ARABIC DAMMAH # \x0650 ARABIC KASRA 32 ARABIC KASRAH # \x0651 ARABIC SHADDA 33 ARABIC SHADDAH # \x0652 ARABIC SUKUN 34 # \x0653 ARABIC MADDAH ABOVE 230 # \x0654 ARABIC HAMZA ABOVE 230 # \x0655 ARABIC HAMZA BELOW 220 # \x0656 ARABIC SUBSCRIPT ALEF 220 # \x0657 ARABIC INVERTED DAMMA 230 # \x0658 ARABIC MARK NOON GHUNNA 230 # \x0660 ARABIC-INDIC DIGIT ZERO Nd AN 0 # \x0661 ARABIC-INDIC DIGIT ONE Nd AN 1 1 1 # \x0662 ARABIC-INDIC DIGIT TWO Nd AN 2 2 2 # \x0663 ARABIC-INDIC DIGIT THREE Nd AN 3 3 3 # \x0664 ARABIC-INDIC DIGIT FOUR Nd AN 4 4 4 # \x0665 ARABIC-INDIC DIGIT FIVE Nd AN 5 5 5 # \x0666 ARABIC-INDIC DIGIT SIX Nd AN 6 6 6 # \x0667 ARABIC-INDIC DIGIT SEVEN Nd AN 7 7 7 # \x0668 ARABIC-INDIC DIGIT EIGHT Nd AN 8 8 8 # \x0669 ARABIC-INDIC DIGIT NINE Nd AN 9 9 9 # \x066A ARABIC PERCENT SIGN # \x066B ARABIC DECIMAL SEPARATOR AN # \x066C ARABIC THOUSANDS SEPARATOR AN # \x066D ARABIC FIVE POINTED STAR AL # \x066E ARABIC LETTER DOTLESS BEH AL # \x066F ARABIC LETTER DOTLESS QAF AL # \x0670 ARABIC LETTER SUPERSCRIPT ALEF 35 ARABIC ALEF ABOVE # \x0671 ARABIC LETTER ALEF WASLA AL ARABIC LETTER HAMZAT WASL ALEF # \x # \x0672 ARABIC LETTER ALEF WITH WAVY HAMZA ABOVE AL ARABIC LETTER WAVY # \xHAMZAH ALEF # \x0673 ARABIC LETTER ALEF WITH WAVY HAMZA BELOW AL ARABIC LETTER WAVY # \xHAMZAH UNDER ALEF # \x0674 ARABIC LETTER HIGH HAMZA AL ARABIC LETTER HIGH HAMZAH # \x0675 ARABIC LETTER HIGH HAMZA ALEF AL 0627 0674 ARABIC LETTE # \xR HIGH HAMZAH ALEF # \x0676 ARABIC LETTER HIGH HAMZA WAW AL 0648 0674 ARABIC LETTER # \x HIGH HAMZAH WAW # \x0677 ARABIC LETTER U WITH HAMZA ABOVE AL 06C7 0674 ARABIC LE # \xTTER HIGH HAMZAH WAW WITH DAMMAH # \x0678 ARABIC LETTER HIGH HAMZA YEH AL 064A 0674 ARABIC LETTER # \x HIGH HAMZAH YA # \x0679 ARABIC LETTER TTEH AL ARABIC LETTER TAA WITH SMALL TAH # \x067A ARABIC LETTER TTEHEH AL ARABIC LETTER TAA WITH TWO DOTS VERTICA # \xL ABOVE # \x067B ARABIC LETTER BEEH AL ARABIC LETTER BAA WITH TWO DOTS VERTICAL # \xBELOW # \x067C ARABIC LETTER TEH WITH RING AL ARABIC LETTER TAA WITH RING # \x067D ARABIC LETTER TEH WITH THREE DOTS ABOVE DOWNWARDS AL ARABIC LET # \xTER TAA WITH THREE DOTS ABOVE DOWNWARD # \x067E ARABIC LETTER PEH AL ARABIC LETTER TAA WITH THREE DOTS BELOW # \x # \x067F ARABIC LETTER TEHEH AL ARABIC LETTER TAA WITH FOUR DOTS ABOVE # \x # \x0680 ARABIC LETTER BEHEH AL ARABIC LETTER BAA WITH FOUR DOTS BELOW # \x # \x0681 ARABIC LETTER HAH WITH HAMZA ABOVE AL ARABIC LETTER HAMZAH H # \xAA # \x0682 ARABIC LETTER HAH WITH TWO DOTS VERTICAL ABOVE AL ARABIC LETTER # \x HAA WITH TWO DOTS VERTICAL ABOVE # \x0683 ARABIC LETTER NYEH AL ARABIC LETTER HAA WITH MIDDLE TWO DOTS # \x # \x0684 ARABIC LETTER DYEH AL ARABIC LETTER HAA WITH MIDDLE TWO DOTS VE # \xRTICAL # \x0685 ARABIC LETTER HAH WITH THREE DOTS ABOVE AL ARABIC LETTER HAA WI # \xTH THREE DOTS ABOVE # \x0686 ARABIC LETTER TCHEH AL ARABIC LETTER HAA WITH MIDDLE THREE DOTS # \x DOWNWARD # \x0687 ARABIC LETTER TCHEHEH AL ARABIC LETTER HAA WITH MIDDLE FOUR DOT # \xS # \x0688 ARABIC LETTER DDAL AL ARABIC LETTER DAL WITH SMALL TAH # \x0689 ARABIC LETTER DAL WITH RING AL # \x068A ARABIC LETTER DAL WITH DOT BELOW AL # \x068B ARABIC LETTER DAL WITH DOT BELOW AND SMALL TAH AL # \x068C ARABIC LETTER DAHAL AL ARABIC LETTER DAL WITH TWO DOTS ABOVE # \x # \x068D ARABIC LETTER DDAHAL AL ARABIC LETTER DAL WITH TWO DOTS BELOW # \x # \x068E ARABIC LETTER DUL AL ARABIC LETTER DAL WITH THREE DOTS ABOVE # \x # \x068F ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARDS AL ARABIC LET # \xTER DAL WITH THREE DOTS ABOVE DOWNWARD # \x0690 ARABIC LETTER DAL WITH FOUR DOTS ABOVE AL # \x0691 ARABIC LETTER RREH AL ARABIC LETTER RA WITH SMALL TAH # \x0692 ARABIC LETTER REH WITH SMALL V AL ARABIC LETTER RA WITH SMALL V # \x # \x0693 ARABIC LETTER REH WITH RING AL ARABIC LETTER RA WITH RING # \x0694 ARABIC LETTER REH WITH DOT BELOW AL ARABIC LETTER RA WITH DOT B # \xELOW # \x0695 ARABIC LETTER REH WITH SMALL V BELOW AL ARABIC LETTER RA WITH S # \xMALL V BELOW # \x0696 ARABIC LETTER REH WITH DOT BELOW AND DOT ABOVE AL ARABIC LETTER # \x RA WITH DOT BELOW AND DOT ABOVE # \x0697 ARABIC LETTER REH WITH TWO DOTS ABOVE AL ARABIC LETTER RA WITH # \xTWO DOTS ABOVE # \x0698 ARABIC LETTER JEH AL ARABIC LETTER RA WITH THREE DOTS ABOVE # \x0699 ARABIC LETTER REH WITH FOUR DOTS ABOVE AL ARABIC LETTER RA WITH # \x FOUR DOTS ABOVE # \x069A ARABIC LETTER SEEN WITH DOT BELOW AND DOT ABOVE AL # \x069B ARABIC LETTER SEEN WITH THREE DOTS BELOW AL # \x069C ARABIC LETTER SEEN WITH THREE DOTS BELOW AND THREE DOTS ABOVE AL # \xN # \x069D ARABIC LETTER SAD WITH TWO DOTS BELOW AL # \x069E ARABIC LETTER SAD WITH THREE DOTS ABOVE AL # \x069F ARABIC LETTER TAH WITH THREE DOTS ABOVE AL # \x06A0 ARABIC LETTER AIN WITH THREE DOTS ABOVE AL # \x06A1 ARABIC LETTER DOTLESS FEH AL ARABIC LETTER DOTLESS FA # \x06A2 ARABIC LETTER FEH WITH DOT MOVED BELOW AL ARABIC LETTER FA WITH # \x DOT MOVED BELOW # \x06A3 ARABIC LETTER FEH WITH DOT BELOW AL ARABIC LETTER FA WITH DOT B # \xELOW # \x06A4 ARABIC LETTER VEH AL ARABIC LETTER FA WITH THREE DOTS ABOVE # \x06A5 ARABIC LETTER FEH WITH THREE DOTS BELOW AL ARABIC LETTER FA WIT # \xH THREE DOTS BELOW # \x06A6 ARABIC LETTER PEHEH AL ARABIC LETTER FA WITH FOUR DOTS ABOVE # \x # \x06A7 ARABIC LETTER QAF WITH DOT ABOVE AL # \x06A8 ARABIC LETTER QAF WITH THREE DOTS ABOVE AL # \x06A9 ARABIC LETTER KEHEH AL ARABIC LETTER OPEN CAF # \x06AA ARABIC LETTER SWASH KAF AL ARABIC LETTER SWASH CAF # \x06AB ARABIC LETTER KAF WITH RING AL ARABIC LETTER CAF WITH RING # \x06AC ARABIC LETTER KAF WITH DOT ABOVE AL ARABIC LETTER CAF WITH DOT # \xABOVE # \x06AD ARABIC LETTER NG AL ARABIC LETTER CAF WITH THREE DOTS ABOVE # \x06AE ARABIC LETTER KAF WITH THREE DOTS BELOW AL ARABIC LETTER CAF WI # \xTH THREE DOTS BELOW # \x06AF ARABIC LETTER GAF AL * # \x06B0 ARABIC LETTER GAF WITH RING AL # \x06B1 ARABIC LETTER NGOEH AL ARABIC LETTER GAF WITH TWO DOTS ABOVE # \x # \x06B2 ARABIC LETTER GAF WITH TWO DOTS BELOW AL # \x06B3 ARABIC LETTER GUEH AL ARABIC LETTER GAF WITH TWO DOTS VERTICAL # \xBELOW # \x06B4 ARABIC LETTER GAF WITH THREE DOTS ABOVE AL # \x06B5 ARABIC LETTER LAM WITH SMALL V AL # \x06B6 ARABIC LETTER LAM WITH DOT ABOVE AL # \x06B7 ARABIC LETTER LAM WITH THREE DOTS ABOVE AL # \x06B8 ARABIC LETTER LAM WITH THREE DOTS BELOW AL # \x06B9 ARABIC LETTER NOON WITH DOT BELOW AL # \x06BA ARABIC LETTER NOON GHUNNA AL ARABIC LETTER DOTLESS NOON # \x06BB ARABIC LETTER RNOON AL ARABIC LETTER DOTLESS NOON WITH SMALL TA # \xH # \x06BC ARABIC LETTER NOON WITH RING AL # \x06BD ARABIC LETTER NOON WITH THREE DOTS ABOVE AL # \x06BE ARABIC LETTER HEH DOACHASHMEE AL ARABIC LETTER KNOTTED HA # \x06BF ARABIC LETTER TCHEH WITH DOT ABOVE AL # \x06C0 ARABIC LETTER HEH WITH YEH ABOVE AL 06D5 0654 ARABIC LETTER HAMZ # \xAH HA # \x06C1 ARABIC LETTER HEH GOAL AL ARABIC LETTER HA GOAL # \x06C2 ARABIC LETTER HEH GOAL WITH HAMZA ABOVE AL 06C1 0654 ARABIC LETT # \xER HAMZAH HA GOAL # \x06C3 ARABIC LETTER TEH MARBUTA GOAL AL ARABIC LETTER TAA MARBUTAH GO # \xAL # \x06C4 ARABIC LETTER WAW WITH RING AL # \x06C5 ARABIC LETTER KIRGHIZ OE AL ARABIC LETTER WAW WITH BAR # \x06C6 ARABIC LETTER OE AL ARABIC LETTER WAW WITH SMALL V # \x06C7 ARABIC LETTER U AL ARABIC LETTER WAW WITH DAMMAH # \x06C8 ARABIC LETTER YU AL ARABIC LETTER WAW WITH ALEF ABOVE # \x06C9 ARABIC LETTER KIRGHIZ YU AL ARABIC LETTER WAW WITH INVERTED SMA # \xLL V # \x06CA ARABIC LETTER WAW WITH TWO DOTS ABOVE AL # \x06CB ARABIC LETTER VE AL ARABIC LETTER WAW WITH THREE DOTS ABOVE # \x06CC ARABIC LETTER FARSI YEH AL ARABIC LETTER DOTLESS YA # \x06CD ARABIC LETTER YEH WITH TAIL AL ARABIC LETTER YA WITH TAIL # \x06CE ARABIC LETTER YEH WITH SMALL V AL ARABIC LETTER YA WITH SMALL V # \x # \x06CF ARABIC LETTER WAW WITH DOT ABOVE AL # \x06D0 ARABIC LETTER E AL ARABIC LETTER YA WITH TWO DOTS VERTICAL BELO # \xW * # \x06D1 ARABIC LETTER YEH WITH THREE DOTS BELOW AL ARABIC LETTER YA WIT # \xH THREE DOTS BELOW # \x06D2 ARABIC LETTER YEH BARREE AL ARABIC LETTER YA BARREE # \x06D3 ARABIC LETTER YEH BARREE WITH HAMZA ABOVE AL 06D2 0654 ARABIC LE # \xTTER HAMZAH YA BARREE # \x06D4 ARABIC FULL STOP AL ARABIC PERIOD # \x06D5 ARABIC LETTER AE AL # \x06D6 ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA 230 N # \x # \x06D7 ARABIC SMALL HIGH LIGATURE QAF WITH LAM WITH ALEF MAKSURA 230 N # \x # \x06D8 ARABIC SMALL HIGH MEEM INITIAL FORM 230 # \x06D9 ARABIC SMALL HIGH LAM ALEF 230 # \x06DA ARABIC SMALL HIGH JEEM 230 # \x06DB ARABIC SMALL HIGH THREE DOTS 230 # \x06DC ARABIC SMALL HIGH SEEN 230 # \x06DD ARABIC END OF AYAH AL # \x06DE ARABIC START OF RUB EL HIZB Me # \x06DF ARABIC SMALL HIGH ROUNDED ZERO 230 # \x06E0 ARABIC SMALL HIGH UPRIGHT RECTANGULAR ZERO 230 # \x06E1 ARABIC SMALL HIGH DOTLESS HEAD OF KHAH 230 # \x06E2 ARABIC SMALL HIGH MEEM ISOLATED FORM 230 # \x06E3 ARABIC SMALL LOW SEEN 220 # \x06E4 ARABIC SMALL HIGH MADDA 230 # \x06E5 ARABIC SMALL WAW Lm AL # \x06E6 ARABIC SMALL YEH Lm AL # \x06E7 ARABIC SMALL HIGH YEH 230 # \x06E8 ARABIC SMALL HIGH NOON 230 # \x06E9 ARABIC PLACE OF SAJDAH # \x06EA ARABIC EMPTY CENTRE LOW STOP 220 # \x06EB ARABIC EMPTY CENTRE HIGH STOP 230 # \x06EC ARABIC ROUNDED HIGH STOP WITH FILLED CENTRE 230 # \x06ED ARABIC SMALL LOW MEEM 220 # \x06EE ARABIC LETTER DAL WITH INVERTED V AL # \x06EF ARABIC LETTER REH WITH INVERTED V AL # \x06F0 EXTENDED ARABIC-INDIC DIGIT ZERO Nd EN 0 EASTERN ARABIC-INDIC DIG # \xIT ZERO # \x06F1 EXTENDED ARABIC-INDIC DIGIT ONE Nd EN 1 1 1 EASTERN ARABIC-INDIC DIGI # \xT ONE # \x06F2 EXTENDED ARABIC-INDIC DIGIT TWO Nd EN 2 2 2 EASTERN ARABIC-INDIC DIGI # \xT TWO # \x06F3 EXTENDED ARABIC-INDIC DIGIT THREE Nd EN 3 3 3 EASTERN ARABIC-INDIC DI # \xGIT THREE # \x06F4 EXTENDED ARABIC-INDIC DIGIT FOUR Nd EN 4 4 4 EASTERN ARABIC-INDIC DIG # \xIT FOUR # \x06F5 EXTENDED ARABIC-INDIC DIGIT FIVE Nd EN 5 5 5 EASTERN ARABIC-INDIC DIG # \xIT FIVE # \x06F6 EXTENDED ARABIC-INDIC DIGIT SIX Nd EN 6 6 6 EASTERN ARABIC-INDIC DIGI # \xT SIX # \x06F7 EXTENDED ARABIC-INDIC DIGIT SEVEN Nd EN 7 7 7 EASTERN ARABIC-INDIC DI # \xGIT SEVEN # \x06F8 EXTENDED ARABIC-INDIC DIGIT EIGHT Nd EN 8 8 8 EASTERN ARABIC-INDIC DI # \xGIT EIGHT # \x06F9 EXTENDED ARABIC-INDIC DIGIT NINE Nd EN 9 9 9 EASTERN ARABIC-INDIC DIG # \xIT NINE # \x06FA ARABIC LETTER SHEEN WITH DOT BELOW AL # \x06FB ARABIC LETTER DAD WITH DOT BELOW AL # \x06FC ARABIC LETTER GHAIN WITH DOT BELOW AL # \x06FD ARABIC SIGN SINDHI AMPERSAND AL # \x06FE ARABIC SIGN SINDHI POSTPOSITION MEN AL # \x06FF ARABIC LETTER HEH WITH INVERTED V AL # \x0700 SYRIAC END OF PARAGRAPH AL # \x0701 SYRIAC SUPRALINEAR FULL STOP AL # \x0702 SYRIAC SUBLINEAR FULL STOP AL # \x0703 SYRIAC SUPRALINEAR COLON AL # \x0704 SYRIAC SUBLINEAR COLON AL # \x0705 SYRIAC HORIZONTAL COLON AL # \x0706 SYRIAC COLON SKEWED LEFT AL # \x0707 SYRIAC COLON SKEWED RIGHT AL # \x0708 SYRIAC SUPRALINEAR COLON SKEWED LEFT AL # \x0709 SYRIAC SUBLINEAR COLON SKEWED RIGHT AL # \x070A SYRIAC CONTRACTION AL # \x070B SYRIAC HARKLEAN OBELUS AL # \x070C SYRIAC HARKLEAN METOBELUS AL # \x070D SYRIAC HARKLEAN ASTERISCUS AL # \x070F SYRIAC ABBREVIATION MARK # \x0710 SYRIAC LETTER ALAPH AL # \x0711 SYRIAC LETTER SUPERSCRIPT ALAPH 36 # \x0712 SYRIAC LETTER BETH AL # \x0713 SYRIAC LETTER GAMAL AL # \x0714 SYRIAC LETTER GAMAL GARSHUNI AL # \x0715 SYRIAC LETTER DALATH AL # \x0716 SYRIAC LETTER DOTLESS DALATH RISH AL # \x0717 SYRIAC LETTER HE AL # \x0718 SYRIAC LETTER WAW AL # \x0719 SYRIAC LETTER ZAIN AL # \x071A SYRIAC LETTER HETH AL # \x071B SYRIAC LETTER TETH AL # \x071C SYRIAC LETTER TETH GARSHUNI AL # \x071D SYRIAC LETTER YUDH AL # \x071E SYRIAC LETTER YUDH HE AL # \x071F SYRIAC LETTER KAPH AL # \x0720 SYRIAC LETTER LAMADH AL # \x0721 SYRIAC LETTER MIM AL # \x0722 SYRIAC LETTER NUN AL # \x0723 SYRIAC LETTER SEMKATH AL # \x0724 SYRIAC LETTER FINAL SEMKATH AL # \x0725 SYRIAC LETTER E AL # \x0726 SYRIAC LETTER PE AL # \x0727 SYRIAC LETTER REVERSED PE AL # \x0728 SYRIAC LETTER SADHE AL # \x0729 SYRIAC LETTER QAPH AL # \x072A SYRIAC LETTER RISH AL # \x072B SYRIAC LETTER SHIN AL # \x072C SYRIAC LETTER TAW AL # \x072D SYRIAC LETTER PERSIAN BHETH AL # \x072E SYRIAC LETTER PERSIAN GHAMAL AL # \x072F SYRIAC LETTER PERSIAN DHALATH AL # \x0730 SYRIAC PTHAHA ABOVE 230 # \x0731 SYRIAC PTHAHA BELOW 220 # \x0732 SYRIAC PTHAHA DOTTED 230 # \x0733 SYRIAC ZQAPHA ABOVE 230 # \x0734 SYRIAC ZQAPHA BELOW 220 # \x0735 SYRIAC ZQAPHA DOTTED 230 # \x0736 SYRIAC RBASA ABOVE 230 # \x0737 SYRIAC RBASA BELOW 220 # \x0738 SYRIAC DOTTED ZLAMA HORIZONTAL 220 # \x0739 SYRIAC DOTTED ZLAMA ANGULAR 220 # \x073A SYRIAC HBASA ABOVE 230 # \x073B SYRIAC HBASA BELOW 220 # \x073C SYRIAC HBASA-ESASA DOTTED 220 # \x073D SYRIAC ESASA ABOVE 230 # \x073E SYRIAC ESASA BELOW 220 # \x073F SYRIAC RWAHA 230 # \x0740 SYRIAC FEMININE DOT 230 # \x0741 SYRIAC QUSHSHAYA 230 # \x0742 SYRIAC RUKKAKHA 220 # \x0743 SYRIAC TWO VERTICAL DOTS ABOVE 230 # \x0744 SYRIAC TWO VERTICAL DOTS BELOW 220 # \x0745 SYRIAC THREE DOTS ABOVE 230 # \x0746 SYRIAC THREE DOTS BELOW 220 # \x0747 SYRIAC OBLIQUE LINE ABOVE 230 # \x0748 SYRIAC OBLIQUE LINE BELOW 220 # \x0749 SYRIAC MUSIC 230 # \x074A SYRIAC BARREKH 230 # \x074D SYRIAC LETTER SOGDIAN ZHAIN AL # \x074E SYRIAC LETTER SOGDIAN KHAPH AL # \x074F SYRIAC LETTER SOGDIAN FE AL # \x0780 THAANA LETTER HAA AL # \x0781 THAANA LETTER SHAVIYANI AL # \x0782 THAANA LETTER NOONU AL # \x0783 THAANA LETTER RAA AL # \x0784 THAANA LETTER BAA AL # \x0785 THAANA LETTER LHAVIYANI AL # \x0786 THAANA LETTER KAAFU AL # \x0787 THAANA LETTER ALIFU AL # \x0788 THAANA LETTER VAAVU AL # \x0789 THAANA LETTER MEEMU AL # \x078A THAANA LETTER FAAFU AL # \x078B THAANA LETTER DHAAo AL # \x078C THAANA LETTER THAA AL # \x078D THAANA LETTER LAAMU AL # \x078E THAANA LETTER GAAFU AL # \x078F THAANA LETTER GNAVIYANI AL # \x0790 THAANA LETTER SEENU AL # \x0791 THAANA LETTER DAVIYANI AL # \x0792 THAANA LETTER ZAVIYANI AL # \x0793 THAANA LETTER TAVIYANI AL # \x0794 THAANA LETTER YAA AL # \x0795 THAANA LETTER PAVIYANI AL # \x0796 THAANA LETTER JAVIYANI AL # \x0797 THAANA LETTER CHAVIYANI AL # \x0798 THAANA LETTER TTAA AL # \x0799 THAANA LETTER HHAA AL # \x079A THAANA LETTER KHAA AL # \x079B THAANA LETTER THAAo AL # \x079C THAANA LETTER ZAA AL # \x079D THAANA LETTER SHEENU AL # \x079E THAANA LETTER SAADHU AL # \x079F THAANA LETTER DAADHU AL # \x07A0 THAANA LETTER TO AL # \x07A1 THAANA LETTER ZO AL # \x07A2 THAANA LETTER AINU AL # \x07A3 THAANA LETTER GHAINU AL # \x07A4 THAANA LETTER QAAFU AL # \x07A5 THAANA LETTER WAAVU AL # \x07A6 THAANA ABAFILI # \x07A7 THAANA AABAAFILI # \x07A8 THAANA IBIFILI # \x07A9 THAANA EEBEEFILI # \x07AA THAANA UBUFILI # \x07AB THAANA OOBOOFILI # \x07AC THAANA EBEFILI # \x07AD THAANA EYBEYFILI # \x07AE THAANA OBOFILI # \x07AF THAANA OABOAFILI # \x07B0 THAANA SUKUN # \x07B1 THAANA LETTER NAA AL # \x0901 DEVANAGARI SIGN CANDRABINDU # \x0902 DEVANAGARI SIGN ANUSVARA # \x0903 DEVANAGARI SIGN VISARGA Mc # \x0904 DEVANAGARI LETTER SHORT A # \x0905 DEVANAGARI LETTER A # \x0906 DEVANAGARI LETTER AA # \x0907 DEVANAGARI LETTER I # \x0908 DEVANAGARI LETTER II # \x0909 DEVANAGARI LETTER U # \x090A DEVANAGARI LETTER UU # \x090B DEVANAGARI LETTER VOCALIC # \x090C DEVANAGARI LETTER VOCALIC # \x090D DEVANAGARI LETTER CANDRA E # \x090E DEVANAGARI LETTER SHORT E # \x090F DEVANAGARI LETTER E # \x0910 DEVANAGARI LETTER AI # \x0911 DEVANAGARI LETTER CANDRA O # \x0912 DEVANAGARI LETTER SHORT O # \x0913 DEVANAGARI LETTER O # \x0914 DEVANAGARI LETTER AU # \x0915 DEVANAGARI LETTER KA # \x0916 DEVANAGARI LETTER KHA # \x0917 DEVANAGARI LETTER GA # \x0918 DEVANAGARI LETTER GHA # \x0919 DEVANAGARI LETTER NGA # \x091A DEVANAGARI LETTER CA # \x091B DEVANAGARI LETTER CHA # \x091C DEVANAGARI LETTER JA # \x091D DEVANAGARI LETTER JHA # \x091E DEVANAGARI LETTER NYA # \x091F DEVANAGARI LETTER TTA # \x0920 DEVANAGARI LETTER TTHA # \x0921 DEVANAGARI LETTER DDA # \x0922 DEVANAGARI LETTER DDHA # \x0923 DEVANAGARI LETTER NNA # \x0924 DEVANAGARI LETTER TA # \x0925 DEVANAGARI LETTER THA # \x0926 DEVANAGARI LETTER DA # \x0927 DEVANAGARI LETTER DHA # \x0928 DEVANAGARI LETTER NA # \x0929 DEVANAGARI LETTER NNNA 0928 093C # \x092A DEVANAGARI LETTER PA # \x092B DEVANAGARI LETTER PHA # \x092C DEVANAGARI LETTER BA # \x092D DEVANAGARI LETTER BHA # \x092E DEVANAGARI LETTER MA # \x092F DEVANAGARI LETTER YA # \x0930 DEVANAGARI LETTER RA # \x0931 DEVANAGARI LETTER RRA 0930 093C # \x0932 DEVANAGARI LETTER LA # \x0933 DEVANAGARI LETTER LLA # \x0934 DEVANAGARI LETTER LLLA 0933 093C # \x0935 DEVANAGARI LETTER VA # \x0936 DEVANAGARI LETTER SHA # \x0937 DEVANAGARI LETTER SSA # \x0938 DEVANAGARI LETTER SA # \x0939 DEVANAGARI LETTER HA # \x093C DEVANAGARI SIGN NUKTA 7 # \x093D DEVANAGARI SIGN AVAGRAHA # \x093E DEVANAGARI VOWEL SIGN AA Mc # \x093F DEVANAGARI VOWEL SIGN I Mc # \x0940 DEVANAGARI VOWEL SIGN II Mc # \x0941 DEVANAGARI VOWEL SIGN U # \x0942 DEVANAGARI VOWEL SIGN UU # \x0943 DEVANAGARI VOWEL SIGN VOCALIC # \x0944 DEVANAGARI VOWEL SIGN VOCALIC RR # \x0945 DEVANAGARI VOWEL SIGN CANDRA E # \x0946 DEVANAGARI VOWEL SIGN SHORT E # \x0947 DEVANAGARI VOWEL SIGN E # \x0948 DEVANAGARI VOWEL SIGN AI # \x0949 DEVANAGARI VOWEL SIGN CANDRA O Mc # \x094A DEVANAGARI VOWEL SIGN SHORT O Mc # \x094B DEVANAGARI VOWEL SIGN O Mc # \x094C DEVANAGARI VOWEL SIGN AU Mc # \x094D DEVANAGARI SIGN VIRAMA 9 # \x0950 DEVANAGARI OM # \x0951 DEVANAGARI STRESS SIGN UDATTA 230 # \x0952 DEVANAGARI STRESS SIGN ANUDATTA 220 # \x0953 DEVANAGARI GRAVE ACCENT 230 # \x0954 DEVANAGARI ACUTE ACCENT 230 # \x0958 DEVANAGARI LETTER QA 0915 093C # \x0959 DEVANAGARI LETTER KHHA 0916 093C # \x095A DEVANAGARI LETTER GHHA 0917 093C # \x095B DEVANAGARI LETTER ZA 091C 093C # \x095C DEVANAGARI LETTER DDDHA 0921 093C # \x095D DEVANAGARI LETTER RHA 0922 093C # \x095E DEVANAGARI LETTER FA 092B 093C # \x095F DEVANAGARI LETTER YYA 092F 093C # \x0960 DEVANAGARI LETTER VOCALIC RR # \x0961 DEVANAGARI LETTER VOCALIC o # \x0962 DEVANAGARI VOWEL SIGN VOCALIC # \x0963 DEVANAGARI VOWEL SIGN VOCALIC LL # \x0964 DEVANAGARI DANDA # \x0965 DEVANAGARI DOUBLE DANDA # \x0966 DEVANAGARI DIGIT ZERO Nd 0 # \x0967 DEVANAGARI DIGIT ONE Nd 1 1 1 # \x0968 DEVANAGARI DIGIT TWO Nd 2 2 2 # \x0969 DEVANAGARI DIGIT THREE Nd 3 3 3 # \x096A DEVANAGARI DIGIT FOUR Nd 4 4 4 # \x096B DEVANAGARI DIGIT FIVE Nd 5 5 5 # \x096C DEVANAGARI DIGIT SIX Nd 6 6 6 # \x096D DEVANAGARI DIGIT SEVEN Nd 7 7 7 # \x096E DEVANAGARI DIGIT EIGHT Nd 8 8 8 # \x096F DEVANAGARI DIGIT NINE Nd 9 9 9 # \x0970 DEVANAGARI ABBREVIATION SIGN # \x0981 BENGALI SIGN CANDRABINDU # \x0982 BENGALI SIGN ANUSVARA Mc # \x0983 BENGALI SIGN VISARGA Mc # \x0985 BENGALI LETTER A # \x0986 BENGALI LETTER AA # \x0987 BENGALI LETTER I # \x0988 BENGALI LETTER II # \x0989 BENGALI LETTER U # \x098A BENGALI LETTER UU # \x098B BENGALI LETTER VOCALIC # \x098C BENGALI LETTER VOCALIC # \x098F BENGALI LETTER E # \x0990 BENGALI LETTER AI # \x0993 BENGALI LETTER O # \x0994 BENGALI LETTER AU # \x0995 BENGALI LETTER KA # \x0996 BENGALI LETTER KHA # \x0997 BENGALI LETTER GA # \x0998 BENGALI LETTER GHA # \x0999 BENGALI LETTER NGA # \x099A BENGALI LETTER CA # \x099B BENGALI LETTER CHA # \x099C BENGALI LETTER JA # \x099D BENGALI LETTER JHA # \x099E BENGALI LETTER NYA # \x099F BENGALI LETTER TTA # \x09A0 BENGALI LETTER TTHA # \x09A1 BENGALI LETTER DDA # \x09A2 BENGALI LETTER DDHA # \x09A3 BENGALI LETTER NNA # \x09A4 BENGALI LETTER TA # \x09A5 BENGALI LETTER THA # \x09A6 BENGALI LETTER DA # \x09A7 BENGALI LETTER DHA # \x09A8 BENGALI LETTER NA # \x09AA BENGALI LETTER PA # \x09AB BENGALI LETTER PHA # \x09AC BENGALI LETTER BA # \x09AD BENGALI LETTER BHA # \x09AE BENGALI LETTER MA # \x09AF BENGALI LETTER YA # \x09B0 BENGALI LETTER RA # \x09B2 BENGALI LETTER LA # \x09B6 BENGALI LETTER SHA # \x09B7 BENGALI LETTER SSA # \x09B8 BENGALI LETTER SA # \x09B9 BENGALI LETTER HA # \x09BC BENGALI SIGN NUKTA 7 # \x09BD BENGALI SIGN AVAGRAHA # \x09BE BENGALI VOWEL SIGN AA Mc # \x09BF BENGALI VOWEL SIGN I Mc # \x09C0 BENGALI VOWEL SIGN II Mc # \x09C1 BENGALI VOWEL SIGN U # \x09C2 BENGALI VOWEL SIGN UU # \x09C3 BENGALI VOWEL SIGN VOCALIC # \x09C4 BENGALI VOWEL SIGN VOCALIC RR # \x09C7 BENGALI VOWEL SIGN E Mc # \x09C8 BENGALI VOWEL SIGN AI Mc # \x09CB BENGALI VOWEL SIGN O Mc 09C7 09BE # \x09CC BENGALI VOWEL SIGN AU Mc 09C7 09D7 # \x09CD BENGALI SIGN VIRAMA 9 # \x09D7 BENGALI AU LENGTH MARK Mc # \x09DC BENGALI LETTER RRA 09A1 09BC # \x09DD BENGALI LETTER RHA 09A2 09BC # \x09DF BENGALI LETTER YYA 09AF 09BC # \x09E0 BENGALI LETTER VOCALIC RR # \x09E1 BENGALI LETTER VOCALIC o # \x09E2 BENGALI VOWEL SIGN VOCALIC # \x09E3 BENGALI VOWEL SIGN VOCALIC LL # \x09E6 BENGALI DIGIT ZERO Nd 0 # \x09E7 BENGALI DIGIT ONE Nd 1 1 1 # \x09E8 BENGALI DIGIT TWO Nd 2 2 2 # \x09E9 BENGALI DIGIT THREE Nd 3 3 3 # \x09EA BENGALI DIGIT FOUR Nd 4 4 4 # \x09EB BENGALI DIGIT FIVE Nd 5 5 5 # \x09EC BENGALI DIGIT SIX Nd 6 6 6 # \x09ED BENGALI DIGIT SEVEN Nd 7 7 7 # \x09EE BENGALI DIGIT EIGHT Nd 8 8 8 # \x09EF BENGALI DIGIT NINE Nd 9 9 9 # \x09F0 BENGALI LETTER RA WITH MIDDLE DIAGONAL Assamese # \x09F1 BENGALI LETTER RA WITH LOWER DIAGONAL BENGALI LETTER VA WITH # \xLOWER DIAGONAL Assamese # \x09F2 BENGALI RUPEE MARK # \x09F3 BENGALI RUPEE SIGN # \x09F4 BENGALI CURRENCY NUMERATOR ONE No 1 # \x09F5 BENGALI CURRENCY NUMERATOR TWO No 2 # \x09F6 BENGALI CURRENCY NUMERATOR THREE No 3 # \x09F7 BENGALI CURRENCY NUMERATOR FOUR No 4 # \x09F8 BENGALI CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR No # \x09F9 BENGALI CURRENCY DENOMINATOR SIXTEEN No 16 # \x09FA BENGALI ISSHAR # \x0A01 GURMUKHI SIGN ADAK BINDI # \x0A02 GURMUKHI SIGN BINDI # \x0A03 GURMUKHI SIGN VISARGA Mc # \x0A05 GURMUKHI LETTER A # \x0A06 GURMUKHI LETTER AA # \x0A07 GURMUKHI LETTER I # \x0A08 GURMUKHI LETTER II # \x0A09 GURMUKHI LETTER U # \x0A0A GURMUKHI LETTER UU # \x0A0F GURMUKHI LETTER EE # \x0A10 GURMUKHI LETTER AI # \x0A13 GURMUKHI LETTER OO # \x0A14 GURMUKHI LETTER AU # \x0A15 GURMUKHI LETTER KA # \x0A16 GURMUKHI LETTER KHA # \x0A17 GURMUKHI LETTER GA # \x0A18 GURMUKHI LETTER GHA # \x0A19 GURMUKHI LETTER NGA # \x0A1A GURMUKHI LETTER CA # \x0A1B GURMUKHI LETTER CHA # \x0A1C GURMUKHI LETTER JA # \x0A1D GURMUKHI LETTER JHA # \x0A1E GURMUKHI LETTER NYA # \x0A1F GURMUKHI LETTER TTA # \x0A20 GURMUKHI LETTER TTHA # \x0A21 GURMUKHI LETTER DDA # \x0A22 GURMUKHI LETTER DDHA # \x0A23 GURMUKHI LETTER NNA # \x0A24 GURMUKHI LETTER TA # \x0A25 GURMUKHI LETTER THA # \x0A26 GURMUKHI LETTER DA # \x0A27 GURMUKHI LETTER DHA # \x0A28 GURMUKHI LETTER NA # \x0A2A GURMUKHI LETTER PA # \x0A2B GURMUKHI LETTER PHA # \x0A2C GURMUKHI LETTER BA # \x0A2D GURMUKHI LETTER BHA # \x0A2E GURMUKHI LETTER MA # \x0A2F GURMUKHI LETTER YA # \x0A30 GURMUKHI LETTER RA # \x0A32 GURMUKHI LETTER LA # \x0A33 GURMUKHI LETTER LLA 0A32 0A3C # \x0A35 GURMUKHI LETTER VA # \x0A36 GURMUKHI LETTER SHA 0A38 0A3C # \x0A38 GURMUKHI LETTER SA # \x0A39 GURMUKHI LETTER HA # \x0A3C GURMUKHI SIGN NUKTA 7 # \x0A3E GURMUKHI VOWEL SIGN AA Mc # \x0A3F GURMUKHI VOWEL SIGN I Mc # \x0A40 GURMUKHI VOWEL SIGN II Mc # \x0A41 GURMUKHI VOWEL SIGN U # \x0A42 GURMUKHI VOWEL SIGN UU # \x0A47 GURMUKHI VOWEL SIGN EE # \x0A48 GURMUKHI VOWEL SIGN AI # \x0A4B GURMUKHI VOWEL SIGN OO # \x0A4C GURMUKHI VOWEL SIGN AU # \x0A4D GURMUKHI SIGN VIRAMA 9 # \x0A59 GURMUKHI LETTER KHHA 0A16 0A3C # \x0A5A GURMUKHI LETTER GHHA 0A17 0A3C # \x0A5B GURMUKHI LETTER ZA 0A1C 0A3C # \x0A5C GURMUKHI LETTER RRA # \x0A5E GURMUKHI LETTER FA 0A2B 0A3C # \x0A66 GURMUKHI DIGIT ZERO Nd 0 # \x0A67 GURMUKHI DIGIT ONE Nd 1 1 1 # \x0A68 GURMUKHI DIGIT TWO Nd 2 2 2 # \x0A69 GURMUKHI DIGIT THREE Nd 3 3 3 # \x0A6A GURMUKHI DIGIT FOUR Nd 4 4 4 # \x0A6B GURMUKHI DIGIT FIVE Nd 5 5 5 # \x0A6C GURMUKHI DIGIT SIX Nd 6 6 6 # \x0A6D GURMUKHI DIGIT SEVEN Nd 7 7 7 # \x0A6E GURMUKHI DIGIT EIGHT Nd 8 8 8 # \x0A6F GURMUKHI DIGIT NINE Nd 9 9 9 # \x0A70 GURMUKHI TIPPI # \x0A71 GURMUKHI ADDAK # \x0A72 GURMUKHI IRI # \x0A73 GURMUKHI URA # \x0A74 GURMUKHI EK ONKAR # \x0A81 GUJARATI SIGN CANDRABINDU # \x0A82 GUJARATI SIGN ANUSVARA # \x0A83 GUJARATI SIGN VISARGA Mc # \x0A85 GUJARATI LETTER A # \x0A86 GUJARATI LETTER AA # \x0A87 GUJARATI LETTER I # \x0A88 GUJARATI LETTER II # \x0A89 GUJARATI LETTER U # \x0A8A GUJARATI LETTER UU # \x0A8B GUJARATI LETTER VOCALIC # \x0A8C GUJARATI LETTER VOCALIC # \x0A8D GUJARATI VOWEL CANDRA E # \x0A8F GUJARATI LETTER E # \x0A90 GUJARATI LETTER AI # \x0A91 GUJARATI VOWEL CANDRA O # \x0A93 GUJARATI LETTER O # \x0A94 GUJARATI LETTER AU # \x0A95 GUJARATI LETTER KA # \x0A96 GUJARATI LETTER KHA # \x0A97 GUJARATI LETTER GA # \x0A98 GUJARATI LETTER GHA # \x0A99 GUJARATI LETTER NGA # \x0A9A GUJARATI LETTER CA # \x0A9B GUJARATI LETTER CHA # \x0A9C GUJARATI LETTER JA # \x0A9D GUJARATI LETTER JHA # \x0A9E GUJARATI LETTER NYA # \x0A9F GUJARATI LETTER TTA # \x0AA0 GUJARATI LETTER TTHA # \x0AA1 GUJARATI LETTER DDA # \x0AA2 GUJARATI LETTER DDHA # \x0AA3 GUJARATI LETTER NNA # \x0AA4 GUJARATI LETTER TA # \x0AA5 GUJARATI LETTER THA # \x0AA6 GUJARATI LETTER DA # \x0AA7 GUJARATI LETTER DHA # \x0AA8 GUJARATI LETTER NA # \x0AAA GUJARATI LETTER PA # \x0AAB GUJARATI LETTER PHA # \x0AAC GUJARATI LETTER BA # \x0AAD GUJARATI LETTER BHA # \x0AAE GUJARATI LETTER MA # \x0AAF GUJARATI LETTER YA # \x0AB0 GUJARATI LETTER RA # \x0AB2 GUJARATI LETTER LA # \x0AB3 GUJARATI LETTER LLA # \x0AB5 GUJARATI LETTER VA # \x0AB6 GUJARATI LETTER SHA # \x0AB7 GUJARATI LETTER SSA # \x0AB8 GUJARATI LETTER SA # \x0AB9 GUJARATI LETTER HA # \x0ABC GUJARATI SIGN NUKTA 7 # \x0ABD GUJARATI SIGN AVAGRAHA # \x0ABE GUJARATI VOWEL SIGN AA Mc # \x0ABF GUJARATI VOWEL SIGN I Mc # \x0AC0 GUJARATI VOWEL SIGN II Mc # \x0AC1 GUJARATI VOWEL SIGN U # \x0AC2 GUJARATI VOWEL SIGN UU # \x0AC3 GUJARATI VOWEL SIGN VOCALIC # \x0AC4 GUJARATI VOWEL SIGN VOCALIC RR # \x0AC5 GUJARATI VOWEL SIGN CANDRA E # \x0AC7 GUJARATI VOWEL SIGN E # \x0AC8 GUJARATI VOWEL SIGN AI # \x0AC9 GUJARATI VOWEL SIGN CANDRA O Mc # \x0ACB GUJARATI VOWEL SIGN O Mc # \x0ACC GUJARATI VOWEL SIGN AU Mc # \x0ACD GUJARATI SIGN VIRAMA 9 # \x0AD0 GUJARATI OM # \x0AE0 GUJARATI LETTER VOCALIC RR # \x0AE1 GUJARATI LETTER VOCALIC o # \x0AE2 GUJARATI VOWEL SIGN VOCALIC # \x0AE3 GUJARATI VOWEL SIGN VOCALIC LL # \x0AE6 GUJARATI DIGIT ZERO Nd 0 # \x0AE7 GUJARATI DIGIT ONE Nd 1 1 1 # \x0AE8 GUJARATI DIGIT TWO Nd 2 2 2 # \x0AE9 GUJARATI DIGIT THREE Nd 3 3 3 # \x0AEA GUJARATI DIGIT FOUR Nd 4 4 4 # \x0AEB GUJARATI DIGIT FIVE Nd 5 5 5 # \x0AEC GUJARATI DIGIT SIX Nd 6 6 6 # \x0AED GUJARATI DIGIT SEVEN Nd 7 7 7 # \x0AEE GUJARATI DIGIT EIGHT Nd 8 8 8 # \x0AEF GUJARATI DIGIT NINE Nd 9 9 9 # \x0AF1 GUJARATI RUPEE SIGN # \x0B01 ORIYA SIGN CANDRABINDU # \x0B02 ORIYA SIGN ANUSVARA Mc # \x0B03 ORIYA SIGN VISARGA Mc # \x0B05 ORIYA LETTER A # \x0B06 ORIYA LETTER AA # \x0B07 ORIYA LETTER I # \x0B08 ORIYA LETTER II # \x0B09 ORIYA LETTER U # \x0B0A ORIYA LETTER UU # \x0B0B ORIYA LETTER VOCALIC # \x0B0C ORIYA LETTER VOCALIC # \x0B0F ORIYA LETTER E # \x0B10 ORIYA LETTER AI # \x0B13 ORIYA LETTER O # \x0B14 ORIYA LETTER AU # \x0B15 ORIYA LETTER KA # \x0B16 ORIYA LETTER KHA # \x0B17 ORIYA LETTER GA # \x0B18 ORIYA LETTER GHA # \x0B19 ORIYA LETTER NGA # \x0B1A ORIYA LETTER CA # \x0B1B ORIYA LETTER CHA # \x0B1C ORIYA LETTER JA # \x0B1D ORIYA LETTER JHA # \x0B1E ORIYA LETTER NYA # \x0B1F ORIYA LETTER TTA # \x0B20 ORIYA LETTER TTHA # \x0B21 ORIYA LETTER DDA # \x0B22 ORIYA LETTER DDHA # \x0B23 ORIYA LETTER NNA # \x0B24 ORIYA LETTER TA # \x0B25 ORIYA LETTER THA # \x0B26 ORIYA LETTER DA # \x0B27 ORIYA LETTER DHA # \x0B28 ORIYA LETTER NA # \x0B2A ORIYA LETTER PA # \x0B2B ORIYA LETTER PHA # \x0B2C ORIYA LETTER BA # \x0B2D ORIYA LETTER BHA # \x0B2E ORIYA LETTER MA # \x0B2F ORIYA LETTER YA # \x0B30 ORIYA LETTER RA # \x0B32 ORIYA LETTER LA # \x0B33 ORIYA LETTER LLA # \x0B35 ORIYA LETTER VA # \x0B36 ORIYA LETTER SHA # \x0B37 ORIYA LETTER SSA # \x0B38 ORIYA LETTER SA # \x0B39 ORIYA LETTER HA # \x0B3C ORIYA SIGN NUKTA 7 # \x0B3D ORIYA SIGN AVAGRAHA # \x0B3E ORIYA VOWEL SIGN AA Mc # \x0B3F ORIYA VOWEL SIGN I # \x0B40 ORIYA VOWEL SIGN II Mc # \x0B41 ORIYA VOWEL SIGN U # \x0B42 ORIYA VOWEL SIGN UU # \x0B43 ORIYA VOWEL SIGN VOCALIC # \x0B47 ORIYA VOWEL SIGN E Mc # \x0B48 ORIYA VOWEL SIGN AI Mc 0B47 0B56 # \x0B4B ORIYA VOWEL SIGN O Mc 0B47 0B3E # \x0B4C ORIYA VOWEL SIGN AU Mc 0B47 0B57 # \x0B4D ORIYA SIGN VIRAMA 9 # \x0B56 ORIYA AI LENGTH MARK # \x0B57 ORIYA AU LENGTH MARK Mc # \x0B5C ORIYA LETTER RRA 0B21 0B3C # \x0B5D ORIYA LETTER RHA 0B22 0B3C # \x0B5F ORIYA LETTER YYA # \x0B60 ORIYA LETTER VOCALIC RR # \x0B61 ORIYA LETTER VOCALIC o # \x0B66 ORIYA DIGIT ZERO Nd 0 # \x0B67 ORIYA DIGIT ONE Nd 1 1 1 # \x0B68 ORIYA DIGIT TWO Nd 2 2 2 # \x0B69 ORIYA DIGIT THREE Nd 3 3 3 # \x0B6A ORIYA DIGIT FOUR Nd 4 4 4 # \x0B6B ORIYA DIGIT FIVE Nd 5 5 5 # \x0B6C ORIYA DIGIT SIX Nd 6 6 6 # \x0B6D ORIYA DIGIT SEVEN Nd 7 7 7 # \x0B6E ORIYA DIGIT EIGHT Nd 8 8 8 # \x0B6F ORIYA DIGIT NINE Nd 9 9 9 # \x0B70 ORIYA ISSHAR # \x0B71 ORIYA LETTER WA # \x0B82 TAMIL SIGN ANUSVARA # \x0B83 TAMIL SIGN VISARGA # \x0B85 TAMIL LETTER A # \x0B86 TAMIL LETTER AA # \x0B87 TAMIL LETTER I # \x0B88 TAMIL LETTER II # \x0B89 TAMIL LETTER U # \x0B8A TAMIL LETTER UU # \x0B8E TAMIL LETTER E # \x0B8F TAMIL LETTER EE # \x0B90 TAMIL LETTER AI # \x0B92 TAMIL LETTER O # \x0B93 TAMIL LETTER OO # \x0B94 TAMIL LETTER AU 0B92 0BD7 # \x0B95 TAMIL LETTER KA # \x0B99 TAMIL LETTER NGA # \x0B9A TAMIL LETTER CA # \x0B9C TAMIL LETTER JA # \x0B9E TAMIL LETTER NYA # \x0B9F TAMIL LETTER TTA # \x0BA3 TAMIL LETTER NNA # \x0BA4 TAMIL LETTER TA # \x0BA8 TAMIL LETTER NA # \x0BA9 TAMIL LETTER NNNA # \x0BAA TAMIL LETTER PA # \x0BAE TAMIL LETTER MA # \x0BAF TAMIL LETTER YA # \x0BB0 TAMIL LETTER RA # \x0BB1 TAMIL LETTER RRA # \x0BB2 TAMIL LETTER LA # \x0BB3 TAMIL LETTER LLA # \x0BB4 TAMIL LETTER LLLA # \x0BB5 TAMIL LETTER VA # \x0BB7 TAMIL LETTER SSA # \x0BB8 TAMIL LETTER SA # \x0BB9 TAMIL LETTER HA # \x0BBE TAMIL VOWEL SIGN AA Mc # \x0BBF TAMIL VOWEL SIGN I Mc # \x0BC0 TAMIL VOWEL SIGN II # \x0BC1 TAMIL VOWEL SIGN U Mc # \x0BC2 TAMIL VOWEL SIGN UU Mc # \x0BC6 TAMIL VOWEL SIGN E Mc # \x0BC7 TAMIL VOWEL SIGN EE Mc # \x0BC8 TAMIL VOWEL SIGN AI Mc # \x0BCA TAMIL VOWEL SIGN O Mc 0BC6 0BBE # \x0BCB TAMIL VOWEL SIGN OO Mc 0BC7 0BBE # \x0BCC TAMIL VOWEL SIGN AU Mc 0BC6 0BD7 # \x0BCD TAMIL SIGN VIRAMA 9 # \x0BD7 TAMIL AU LENGTH MARK Mc # \x0BE7 TAMIL DIGIT ONE Nd 1 1 1 # \x0BE8 TAMIL DIGIT TWO Nd 2 2 2 # \x0BE9 TAMIL DIGIT THREE Nd 3 3 3 # \x0BEA TAMIL DIGIT FOUR Nd 4 4 4 # \x0BEB TAMIL DIGIT FIVE Nd 5 5 5 # \x0BEC TAMIL DIGIT SIX Nd 6 6 6 # \x0BED TAMIL DIGIT SEVEN Nd 7 7 7 # \x0BEE TAMIL DIGIT EIGHT Nd 8 8 8 # \x0BEF TAMIL DIGIT NINE Nd 9 9 9 # \x0BF0 TAMIL NUMBER TEN No 10 # \x0BF1 TAMIL NUMBER ONE HUNDRED No 100 # \x0BF2 TAMIL NUMBER ONE THOUSAND No 1000 # \x0BF3 TAMIL DAY SIGN Naal # \x0BF4 TAMIL MONTH SIGN Maatham # \x0BF5 TAMIL YEAR SIGN Varudam # \x0BF6 TAMIL DEBIT SIGN Patru # \x0BF7 TAMIL CREDIT SIGN Varavu # \x0BF8 TAMIL AS ABOVE SIGN Merpadi # \x0BF9 TAMIL RUPEE SIGN Rupai # \x0BFA TAMIL NUMBER SIGN Enn # \x0C01 TELUGU SIGN CANDRABINDU Mc # \x0C02 TELUGU SIGN ANUSVARA Mc # \x0C03 TELUGU SIGN VISARGA Mc # \x0C05 TELUGU LETTER A # \x0C06 TELUGU LETTER AA # \x0C07 TELUGU LETTER I # \x0C08 TELUGU LETTER II # \x0C09 TELUGU LETTER U # \x0C0A TELUGU LETTER UU # \x0C0B TELUGU LETTER VOCALIC # \x0C0C TELUGU LETTER VOCALIC # \x0C0E TELUGU LETTER E # \x0C0F TELUGU LETTER EE # \x0C10 TELUGU LETTER AI # \x0C12 TELUGU LETTER O # \x0C13 TELUGU LETTER OO # \x0C14 TELUGU LETTER AU # \x0C15 TELUGU LETTER KA # \x0C16 TELUGU LETTER KHA # \x0C17 TELUGU LETTER GA # \x0C18 TELUGU LETTER GHA # \x0C19 TELUGU LETTER NGA # \x0C1A TELUGU LETTER CA # \x0C1B TELUGU LETTER CHA # \x0C1C TELUGU LETTER JA # \x0C1D TELUGU LETTER JHA # \x0C1E TELUGU LETTER NYA # \x0C1F TELUGU LETTER TTA # \x0C20 TELUGU LETTER TTHA # \x0C21 TELUGU LETTER DDA # \x0C22 TELUGU LETTER DDHA # \x0C23 TELUGU LETTER NNA # \x0C24 TELUGU LETTER TA # \x0C25 TELUGU LETTER THA # \x0C26 TELUGU LETTER DA # \x0C27 TELUGU LETTER DHA # \x0C28 TELUGU LETTER NA # \x0C2A TELUGU LETTER PA # \x0C2B TELUGU LETTER PHA # \x0C2C TELUGU LETTER BA # \x0C2D TELUGU LETTER BHA # \x0C2E TELUGU LETTER MA # \x0C2F TELUGU LETTER YA # \x0C30 TELUGU LETTER RA # \x0C31 TELUGU LETTER RRA # \x0C32 TELUGU LETTER LA # \x0C33 TELUGU LETTER LLA # \x0C35 TELUGU LETTER VA # \x0C36 TELUGU LETTER SHA # \x0C37 TELUGU LETTER SSA # \x0C38 TELUGU LETTER SA # \x0C39 TELUGU LETTER HA # \x0C3E TELUGU VOWEL SIGN AA # \x0C3F TELUGU VOWEL SIGN I # \x0C40 TELUGU VOWEL SIGN II # \x0C41 TELUGU VOWEL SIGN U Mc # \x0C42 TELUGU VOWEL SIGN UU Mc # \x0C43 TELUGU VOWEL SIGN VOCALIC Mc # \x0C44 TELUGU VOWEL SIGN VOCALIC RR Mc # \x0C46 TELUGU VOWEL SIGN E # \x0C47 TELUGU VOWEL SIGN EE # \x0C48 TELUGU VOWEL SIGN AI 0C46 0C56 # \x0C4A TELUGU VOWEL SIGN O # \x0C4B TELUGU VOWEL SIGN OO # \x0C4C TELUGU VOWEL SIGN AU # \x0C4D TELUGU SIGN VIRAMA 9 # \x0C55 TELUGU LENGTH MARK 84 # \x0C56 TELUGU AI LENGTH MARK 91 # \x0C60 TELUGU LETTER VOCALIC RR # \x0C61 TELUGU LETTER VOCALIC o # \x0C66 TELUGU DIGIT ZERO Nd 0 # \x0C67 TELUGU DIGIT ONE Nd 1 1 1 # \x0C68 TELUGU DIGIT TWO Nd 2 2 2 # \x0C69 TELUGU DIGIT THREE Nd 3 3 3 # \x0C6A TELUGU DIGIT FOUR Nd 4 4 4 # \x0C6B TELUGU DIGIT FIVE Nd 5 5 5 # \x0C6C TELUGU DIGIT SIX Nd 6 6 6 # \x0C6D TELUGU DIGIT SEVEN Nd 7 7 7 # \x0C6E TELUGU DIGIT EIGHT Nd 8 8 8 # \x0C6F TELUGU DIGIT NINE Nd 9 9 9 # \x0C82 KANNADA SIGN ANUSVARA Mc # \x0C83 KANNADA SIGN VISARGA Mc # \x0C85 KANNADA LETTER A # \x0C86 KANNADA LETTER AA # \x0C87 KANNADA LETTER I # \x0C88 KANNADA LETTER II # \x0C89 KANNADA LETTER U # \x0C8A KANNADA LETTER UU # \x0C8B KANNADA LETTER VOCALIC # \x0C8C KANNADA LETTER VOCALIC # \x0C8E KANNADA LETTER E # \x0C8F KANNADA LETTER EE # \x0C90 KANNADA LETTER AI # \x0C92 KANNADA LETTER O # \x0C93 KANNADA LETTER OO # \x0C94 KANNADA LETTER AU # \x0C95 KANNADA LETTER KA # \x0C96 KANNADA LETTER KHA # \x0C97 KANNADA LETTER GA # \x0C98 KANNADA LETTER GHA # \x0C99 KANNADA LETTER NGA # \x0C9A KANNADA LETTER CA # \x0C9B KANNADA LETTER CHA # \x0C9C KANNADA LETTER JA # \x0C9D KANNADA LETTER JHA # \x0C9E KANNADA LETTER NYA # \x0C9F KANNADA LETTER TTA # \x0CA0 KANNADA LETTER TTHA # \x0CA1 KANNADA LETTER DDA # \x0CA2 KANNADA LETTER DDHA # \x0CA3 KANNADA LETTER NNA # \x0CA4 KANNADA LETTER TA # \x0CA5 KANNADA LETTER THA # \x0CA6 KANNADA LETTER DA # \x0CA7 KANNADA LETTER DHA # \x0CA8 KANNADA LETTER NA # \x0CAA KANNADA LETTER PA # \x0CAB KANNADA LETTER PHA # \x0CAC KANNADA LETTER BA # \x0CAD KANNADA LETTER BHA # \x0CAE KANNADA LETTER MA # \x0CAF KANNADA LETTER YA # \x0CB0 KANNADA LETTER RA # \x0CB1 KANNADA LETTER RRA # \x0CB2 KANNADA LETTER LA # \x0CB3 KANNADA LETTER LLA # \x0CB5 KANNADA LETTER VA # \x0CB6 KANNADA LETTER SHA # \x0CB7 KANNADA LETTER SSA # \x0CB8 KANNADA LETTER SA # \x0CB9 KANNADA LETTER HA # \x0CBC KANNADA SIGN NUKTA 7 # \x0CBD KANNADA SIGN AVAGRAHA # \x0CBE KANNADA VOWEL SIGN AA Mc # \x0CBF KANNADA VOWEL SIGN I # \x0CC0 KANNADA VOWEL SIGN II Mc 0CBF 0CD5 # \x0CC1 KANNADA VOWEL SIGN U Mc # \x0CC2 KANNADA VOWEL SIGN UU Mc # \x0CC3 KANNADA VOWEL SIGN VOCALIC Mc # \x0CC4 KANNADA VOWEL SIGN VOCALIC RR Mc # \x0CC6 KANNADA VOWEL SIGN E # \x0CC7 KANNADA VOWEL SIGN EE Mc 0CC6 0CD5 # \x0CC8 KANNADA VOWEL SIGN AI Mc 0CC6 0CD6 # \x0CCA KANNADA VOWEL SIGN O Mc 0CC6 0CC2 # \x0CCB KANNADA VOWEL SIGN OO Mc 0CCA 0CD5 # \x0CCC KANNADA VOWEL SIGN AU # \x0CCD KANNADA SIGN VIRAMA 9 # \x0CD5 KANNADA LENGTH MARK Mc # \x0CD6 KANNADA AI LENGTH MARK Mc # \x0CDE KANNADA LETTER FA # \x0CE0 KANNADA LETTER VOCALIC RR # \x0CE1 KANNADA LETTER VOCALIC o # \x0CE6 KANNADA DIGIT ZERO Nd 0 # \x0CE7 KANNADA DIGIT ONE Nd 1 1 1 # \x0CE8 KANNADA DIGIT TWO Nd 2 2 2 # \x0CE9 KANNADA DIGIT THREE Nd 3 3 3 # \x0CEA KANNADA DIGIT FOUR Nd 4 4 4 # \x0CEB KANNADA DIGIT FIVE Nd 5 5 5 # \x0CEC KANNADA DIGIT SIX Nd 6 6 6 # \x0CED KANNADA DIGIT SEVEN Nd 7 7 7 # \x0CEE KANNADA DIGIT EIGHT Nd 8 8 8 # \x0CEF KANNADA DIGIT NINE Nd 9 9 9 # \x0D02 MALAYALAM SIGN ANUSVARA Mc # \x0D03 MALAYALAM SIGN VISARGA Mc # \x0D05 MALAYALAM LETTER A # \x0D06 MALAYALAM LETTER AA # \x0D07 MALAYALAM LETTER I # \x0D08 MALAYALAM LETTER II # \x0D09 MALAYALAM LETTER U # \x0D0A MALAYALAM LETTER UU # \x0D0B MALAYALAM LETTER VOCALIC # \x0D0C MALAYALAM LETTER VOCALIC # \x0D0E MALAYALAM LETTER E # \x0D0F MALAYALAM LETTER EE # \x0D10 MALAYALAM LETTER AI # \x0D12 MALAYALAM LETTER O # \x0D13 MALAYALAM LETTER OO # \x0D14 MALAYALAM LETTER AU # \x0D15 MALAYALAM LETTER KA # \x0D16 MALAYALAM LETTER KHA # \x0D17 MALAYALAM LETTER GA # \x0D18 MALAYALAM LETTER GHA # \x0D19 MALAYALAM LETTER NGA # \x0D1A MALAYALAM LETTER CA # \x0D1B MALAYALAM LETTER CHA # \x0D1C MALAYALAM LETTER JA # \x0D1D MALAYALAM LETTER JHA # \x0D1E MALAYALAM LETTER NYA # \x0D1F MALAYALAM LETTER TTA # \x0D20 MALAYALAM LETTER TTHA # \x0D21 MALAYALAM LETTER DDA # \x0D22 MALAYALAM LETTER DDHA # \x0D23 MALAYALAM LETTER NNA # \x0D24 MALAYALAM LETTER TA # \x0D25 MALAYALAM LETTER THA # \x0D26 MALAYALAM LETTER DA # \x0D27 MALAYALAM LETTER DHA # \x0D28 MALAYALAM LETTER NA # \x0D2A MALAYALAM LETTER PA # \x0D2B MALAYALAM LETTER PHA # \x0D2C MALAYALAM LETTER BA # \x0D2D MALAYALAM LETTER BHA # \x0D2E MALAYALAM LETTER MA # \x0D2F MALAYALAM LETTER YA # \x0D30 MALAYALAM LETTER RA # \x0D31 MALAYALAM LETTER RRA # \x0D32 MALAYALAM LETTER LA # \x0D33 MALAYALAM LETTER LLA # \x0D34 MALAYALAM LETTER LLLA # \x0D35 MALAYALAM LETTER VA # \x0D36 MALAYALAM LETTER SHA # \x0D37 MALAYALAM LETTER SSA # \x0D38 MALAYALAM LETTER SA # \x0D39 MALAYALAM LETTER HA # \x0D3E MALAYALAM VOWEL SIGN AA Mc # \x0D3F MALAYALAM VOWEL SIGN I Mc # \x0D40 MALAYALAM VOWEL SIGN II Mc # \x0D41 MALAYALAM VOWEL SIGN U # \x0D42 MALAYALAM VOWEL SIGN UU # \x0D43 MALAYALAM VOWEL SIGN VOCALIC # \x0D46 MALAYALAM VOWEL SIGN E Mc # \x0D47 MALAYALAM VOWEL SIGN EE Mc # \x0D48 MALAYALAM VOWEL SIGN AI Mc # \x0D4A MALAYALAM VOWEL SIGN O Mc 0D46 0D3E # \x0D4B MALAYALAM VOWEL SIGN OO Mc 0D47 0D3E # \x0D4C MALAYALAM VOWEL SIGN AU Mc 0D46 0D57 # \x0D4D MALAYALAM SIGN VIRAMA 9 # \x0D57 MALAYALAM AU LENGTH MARK Mc # \x0D60 MALAYALAM LETTER VOCALIC RR # \x0D61 MALAYALAM LETTER VOCALIC o # \x0D66 MALAYALAM DIGIT ZERO Nd 0 # \x0D67 MALAYALAM DIGIT ONE Nd 1 1 1 # \x0D68 MALAYALAM DIGIT TWO Nd 2 2 2 # \x0D69 MALAYALAM DIGIT THREE Nd 3 3 3 # \x0D6A MALAYALAM DIGIT FOUR Nd 4 4 4 # \x0D6B MALAYALAM DIGIT FIVE Nd 5 5 5 # \x0D6C MALAYALAM DIGIT SIX Nd 6 6 6 # \x0D6D MALAYALAM DIGIT SEVEN Nd 7 7 7 # \x0D6E MALAYALAM DIGIT EIGHT Nd 8 8 8 # \x0D6F MALAYALAM DIGIT NINE Nd 9 9 9 # \x0D82 SINHALA SIGN ANUSVARAYA Mc # \x0D83 SINHALA SIGN VISARGAYA Mc # \x0D85 SINHALA LETTER AYANNA # \x0D86 SINHALA LETTER AAYANNA # \x0D87 SINHALA LETTER AEYANNA # \x0D88 SINHALA LETTER AEEYANNA # \x0D89 SINHALA LETTER IYANNA # \x0D8A SINHALA LETTER IIYANNA # \x0D8B SINHALA LETTER UYANNA # \x0D8C SINHALA LETTER UUYANNA # \x0D8D SINHALA LETTER IRUYANNA # \x0D8E SINHALA LETTER IRUUYANNA # \x0D8F SINHALA LETTER ILUYANNA # \x0D90 SINHALA LETTER ILUUYANNA # \x0D91 SINHALA LETTER EYANNA # \x0D92 SINHALA LETTER EEYANNA # \x0D93 SINHALA LETTER AIYANNA # \x0D94 SINHALA LETTER OYANNA # \x0D95 SINHALA LETTER OOYANNA # \x0D96 SINHALA LETTER AUYANNA # \x0D9A SINHALA LETTER ALPAPRAANA KAYANNA # \x0D9B SINHALA LETTER MAHAAPRAANA KAYANNA # \x0D9C SINHALA LETTER ALPAPRAANA GAYANNA # \x0D9D SINHALA LETTER MAHAAPRAANA GAYANNA # \x0D9E SINHALA LETTER KANTAJA NAASIKYAYA # \x0D9F SINHALA LETTER SANYAKA GAYANNA # \x0DA0 SINHALA LETTER ALPAPRAANA CAYANNA # \x0DA1 SINHALA LETTER MAHAAPRAANA CAYANNA # \x0DA2 SINHALA LETTER ALPAPRAANA JAYANNA # \x0DA3 SINHALA LETTER MAHAAPRAANA JAYANNA # \x0DA4 SINHALA LETTER TAALUJA NAASIKYAYA # \x0DA5 SINHALA LETTER TAALUJA SANYOOGA NAAKSIKYAYA # \x0DA6 SINHALA LETTER SANYAKA JAYANNA # \x0DA7 SINHALA LETTER ALPAPRAANA TTAYANNA # \x0DA8 SINHALA LETTER MAHAAPRAANA TTAYANNA # \x0DA9 SINHALA LETTER ALPAPRAANA DDAYANNA # \x0DAA SINHALA LETTER MAHAAPRAANA DDAYANNA # \x0DAB SINHALA LETTER MUURDHAJA NAYANNA # \x0DAC SINHALA LETTER SANYAKA DDAYANNA # \x0DAD SINHALA LETTER ALPAPRAANA TAYANNA # \x0DAE SINHALA LETTER MAHAAPRAANA TAYANNA # \x0DAF SINHALA LETTER ALPAPRAANA DAYANNA # \x0DB0 SINHALA LETTER MAHAAPRAANA DAYANNA # \x0DB1 SINHALA LETTER DANTAJA NAYANNA # \x0DB3 SINHALA LETTER SANYAKA DAYANNA # \x0DB4 SINHALA LETTER ALPAPRAANA PAYANNA # \x0DB5 SINHALA LETTER MAHAAPRAANA PAYANNA # \x0DB6 SINHALA LETTER ALPAPRAANA BAYANNA # \x0DB7 SINHALA LETTER MAHAAPRAANA BAYANNA # \x0DB8 SINHALA LETTER MAYANNA # \x0DB9 SINHALA LETTER AMBA BAYANNA # \x0DBA SINHALA LETTER YAYANNA # \x0DBB SINHALA LETTER RAYANNA # \x0DBD SINHALA LETTER DANTAJA LAYANNA # \x0DC0 SINHALA LETTER VAYANNA # \x0DC1 SINHALA LETTER TAALUJA SAYANNA # \x0DC2 SINHALA LETTER MUURDHAJA SAYANNA # \x0DC3 SINHALA LETTER DANTAJA SAYANNA # \x0DC4 SINHALA LETTER HAYANNA # \x0DC5 SINHALA LETTER MUURDHAJA LAYANNA # \x0DC6 SINHALA LETTER FAYANNA # \x0DCA SINHALA SIGN AL-LAKUNA 9 # \x0DCF SINHALA VOWEL SIGN AELA-PILLA Mc # \x0DD0 SINHALA VOWEL SIGN KETTI AEDA-PILLA Mc # \x0DD1 SINHALA VOWEL SIGN DIGA AEDA-PILLA Mc # \x0DD2 SINHALA VOWEL SIGN KETTI IS-PILLA # \x0DD3 SINHALA VOWEL SIGN DIGA IS-PILLA # \x0DD4 SINHALA VOWEL SIGN KETTI PAA-PILLA # \x0DD6 SINHALA VOWEL SIGN DIGA PAA-PILLA # \x0DD8 SINHALA VOWEL SIGN GAETTA-PILLA Mc # \x0DD9 SINHALA VOWEL SIGN KOMBUVA Mc # \x0DDA SINHALA VOWEL SIGN DIGA KOMBUVA Mc 0DD9 0DCA # \x0DDB SINHALA VOWEL SIGN KOMBU DEKA Mc # \x0DDC SINHALA VOWEL SIGN KOMBUVA HAA AELA-PILLA Mc 0DD9 0DCF # \x0DDD SINHALA VOWEL SIGN KOMBUVA HAA DIGA AELA-PILLA Mc 0DDC 0DCA # \x0DDE SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA Mc 0DD9 0DDF # \x0DDF SINHALA VOWEL SIGN GAYANUKITTA Mc # \x0DF2 SINHALA VOWEL SIGN DIGA GAETTA-PILLA Mc # \x0DF3 SINHALA VOWEL SIGN DIGA GAYANUKITTA Mc # \x0DF4 SINHALA PUNCTUATION KUNDDALIYA # \x0E01 THAI CHARACTER KO KAI THAI LETTER KO KAI # \x0E02 THAI CHARACTER KHO KHAI THAI LETTER KHO KHAI # \x0E03 THAI CHARACTER KHO KHUAT THAI LETTER KHO KHUAT # \x0E04 THAI CHARACTER KHO KHWAI THAI LETTER KHO KHWAI # \x0E05 THAI CHARACTER KHO KHON THAI LETTER KHO KHON # \x0E06 THAI CHARACTER KHO RAKHANG THAI LETTER KHO RAKHANG # \x0E07 THAI CHARACTER NGO NGU THAI LETTER NGO NGU # \x0E08 THAI CHARACTER CHO CHAN THAI LETTER CHO CHAN # \x0E09 THAI CHARACTER CHO CHING THAI LETTER CHO CHING # \x0E0A THAI CHARACTER CHO CHANG THAI LETTER CHO CHANG # \x0E0B THAI CHARACTER SO THAI LETTER SO # \x0E0C THAI CHARACTER CHO CHOE THAI LETTER CHO CHOE # \x0E0D THAI CHARACTER YO YING THAI LETTER YO YING # \x0E0E THAI CHARACTER DO CHADA THAI LETTER DO CHADA # \x0E0F THAI CHARACTER TO PATAK THAI LETTER TO PATAK # \x0E10 THAI CHARACTER THO THAN THAI LETTER THO THAN # \x0E11 THAI CHARACTER THO NANGMONTHO THAI LETTER THO NANGMONTHO # \x0E12 THAI CHARACTER THO PHUTHAO THAI LETTER THO PHUTHAO # \x0E13 THAI CHARACTER NO NEN THAI LETTER NO NEN # \x0E14 THAI CHARACTER DO DEK THAI LETTER DO DEK # \x0E15 THAI CHARACTER TO TAO THAI LETTER TO TAO # \x0E16 THAI CHARACTER THO THUNG THAI LETTER THO THUNG # \x0E17 THAI CHARACTER THO THAHAN THAI LETTER THO THAHAN # \x0E18 THAI CHARACTER THO THONG THAI LETTER THO THONG # \x0E19 THAI CHARACTER NO NU THAI LETTER NO NU # \x0E1A THAI CHARACTER BO BAIMAI THAI LETTER BO BAIMAI # \x0E1B THAI CHARACTER PLA THAI LETTER PLA # \x0E1C THAI CHARACTER PHO PHUNG THAI LETTER PHO PHUNG # \x0E1D THAI CHARACTER FO FA THAI LETTER FO FA # \x0E1E THAI CHARACTER PHO PHAN THAI LETTER PHO PHAN # \x0E1F THAI CHARACTER FO FAN THAI LETTER FO FAN # \x0E20 THAI CHARACTER PHO SAMPHAO THAI LETTER PHO SAMPHAO # \x0E21 THAI CHARACTER MO MA THAI LETTER MO MA # \x0E22 THAI CHARACTER YO YAK THAI LETTER YO YAK # \x0E23 THAI CHARACTER RO RUA THAI LETTER RO RUA # \x0E24 THAI CHARACTER RU THAI LETTER RU # \x0E25 THAI CHARACTER LING THAI LETTER LING # \x0E26 THAI CHARACTER o THAI LETTER LU # \x0E27 THAI CHARACTER WO WAEN THAI LETTER WO WAEN # \x0E28 THAI CHARACTER SALA THAI LETTER SALA # \x0E29 THAI CHARACTER RUSI THAI LETTER RUSI # \x0E2A THAI CHARACTER SUA THAI LETTER SUA # \x0E2B THAI CHARACTER HO HIP THAI LETTER HO HIP # \x0E2C THAI CHARACTER CHULA THAI LETTER CHULA # \x0E2D THAI CHARACTER O ANG THAI LETTER O ANG # \x0E2E THAI CHARACTER HO NOKHUK THAI LETTER HO NOK HUK # \x0E2F THAI CHARACTER PAIYANNOI THAI PAI YAN NOI paiyan noi # \x0E30 THAI CHARACTER SARA A THAI VOWEL SIGN SARA A # \x0E31 THAI CHARACTER MAI HAN-AKAT THAI VOWEL SIGN MAI HAN-AKAT # \x # \x0E32 THAI CHARACTER SARA AA THAI VOWEL SIGN SARA AA # \x0E33 THAI CHARACTER SARA AM 0E4D 0E32 THAI VOWEL SIGN SARA # \x AM # \x0E34 THAI CHARACTER SARA I THAI VOWEL SIGN SARA I # \x0E35 THAI CHARACTER SARA II THAI VOWEL SIGN SARA II # \x0E36 THAI CHARACTER SARA UE THAI VOWEL SIGN SARA UE # \x0E37 THAI CHARACTER SARA UEE THAI VOWEL SIGN SARA UEE sara uue # \x # \x0E38 THAI CHARACTER SARA U 103 THAI VOWEL SIGN SARA U # \x0E39 THAI CHARACTER SARA UU 103 THAI VOWEL SIGN SARA UU # \x0E3A THAI CHARACTER PHINTHU 9 THAI VOWEL SIGN PHINTHU # \x0E3F THAI CURRENCY SYMBOL BAHT THAI BAHT SIGN # \x0E40 THAI CHARACTER SARA E THAI VOWEL SIGN SARA E # \x0E41 THAI CHARACTER SARA AE THAI VOWEL SIGN SARA AE # \x0E42 THAI CHARACTER SARA O THAI VOWEL SIGN SARA O # \x0E43 THAI CHARACTER SARA AI MAIMUAN THAI VOWEL SIGN SARA MAI MUAN # \xsara ai mai muan # \x0E44 THAI CHARACTER SARA AI MAIMALAI THAI VOWEL SIGN SARA MAI MALA # \xI sara ai mai malai # \x0E45 THAI CHARACTER LAKKHANGYAO THAI LAK KHANG YAO lakkhang yao # \x0E46 THAI CHARACTER MAIYAMOK Lm THAI MAI YAMOK mai yamok # \x0E47 THAI CHARACTER MAITAIKHU THAI VOWEL SIGN MAI TAI KHU mai ta # \xikhu # \x0E48 THAI CHARACTER MAI EK 107 THAI TONE MAI EK # \x0E49 THAI CHARACTER MAI THO 107 THAI TONE MAI THO # \x0E4A THAI CHARACTER MAI TRI 107 THAI TONE MAI TRI # \x0E4B THAI CHARACTER MAI CHATTAWA 107 THAI TONE MAI CHATTAWA # \x0E4C THAI CHARACTER THANTHAKHAT THAI THANTHAKHAT # \x0E4D THAI CHARACTER NIKHAHIT THAI NIKKHAHIT nikkhahit # \x0E4E THAI CHARACTER YAMAKKAN THAI YAMAKKAN # \x0E4F THAI CHARACTER FONGMAN THAI FONGMAN # \x0E50 THAI DIGIT ZERO Nd 0 # \x0E51 THAI DIGIT ONE Nd 1 1 1 # \x0E52 THAI DIGIT TWO Nd 2 2 2 # \x0E53 THAI DIGIT THREE Nd 3 3 3 # \x0E54 THAI DIGIT FOUR Nd 4 4 4 # \x0E55 THAI DIGIT FIVE Nd 5 5 5 # \x0E56 THAI DIGIT SIX Nd 6 6 6 # \x0E57 THAI DIGIT SEVEN Nd 7 7 7 # \x0E58 THAI DIGIT EIGHT Nd 8 8 8 # \x0E59 THAI DIGIT NINE Nd 9 9 9 # \x0E5A THAI CHARACTER ANGKHANKHU THAI ANGKHANKHU # \x0E5B THAI CHARACTER KHOMUT THAI KHOMUT # \x0E81 LAO LETTER KO # \x0E82 LAO LETTER KHO SUNG # \x0E84 LAO LETTER KHO TAM # \x0E87 LAO LETTER NGO # \x0E88 LAO LETTER CO # \x0E8A LAO LETTER TAM # \x0E8D LAO LETTER NYO # \x0E94 LAO LETTER DO # \x0E95 LAO LETTER TO # \x0E96 LAO LETTER THO SUNG # \x0E97 LAO LETTER THO TAM # \x0E99 LAO LETTER NO # \x0E9A LAO LETTER BO # \x0E9B LAO LETTER # \x0E9C LAO LETTER PHO SUNG # \x0E9D LAO LETTER FO TAM # \x0E9E LAO LETTER PHO TAM # \x0E9F LAO LETTER FO SUNG # \x0EA1 LAO LETTER MO # \x0EA2 LAO LETTER YO # \x0EA3 LAO LETTER LING # \x0EA5 LAO LETTER LOOT # \x0EA7 LAO LETTER WO # \x0EAA LAO LETTER SUNG # \x0EAB LAO LETTER HO SUNG # \x0EAD LAO LETTER O # \x0EAE LAO LETTER HO TAM # \x0EAF LAO ELLIPSIS # \x0EB0 LAO VOWEL SIGN A # \x0EB1 LAO VOWEL SIGN MAI KAN # \x0EB2 LAO VOWEL SIGN AA # \x0EB3 LAO VOWEL SIGN AM 0ECD 0EB2 # \x0EB4 LAO VOWEL SIGN I # \x0EB5 LAO VOWEL SIGN II # \x0EB6 LAO VOWEL SIGN Y # \x0EB7 LAO VOWEL SIGN YY # \x0EB8 LAO VOWEL SIGN U 118 # \x0EB9 LAO VOWEL SIGN UU 118 # \x0EBB LAO VOWEL SIGN MAI KON # \x0EBC LAO SEMIVOWEL SIGN # \x0EBD LAO SEMIVOWEL SIGN NYO # \x0EC0 LAO VOWEL SIGN E # \x0EC1 LAO VOWEL SIGN EI # \x0EC2 LAO VOWEL SIGN O # \x0EC3 LAO VOWEL SIGN AY # \x0EC4 LAO VOWEL SIGN AI # \x0EC6 LAO KO LA Lm # \x0EC8 LAO TONE MAI EK 122 # \x0EC9 LAO TONE MAI THO 122 # \x0ECA LAO TONE MAI TI 122 # \x0ECB LAO TONE MAI CATAWA 122 # \x0ECC LAO CANCELLATION MARK # \x0ECD LAO NIGGAHITA # \x0ED0 LAO DIGIT ZERO Nd 0 # \x0ED1 LAO DIGIT ONE Nd 1 1 1 # \x0ED2 LAO DIGIT TWO Nd 2 2 2 # \x0ED3 LAO DIGIT THREE Nd 3 3 3 # \x0ED4 LAO DIGIT FOUR Nd 4 4 4 # \x0ED5 LAO DIGIT FIVE Nd 5 5 5 # \x0ED6 LAO DIGIT SIX Nd 6 6 6 # \x0ED7 LAO DIGIT SEVEN Nd 7 7 7 # \x0ED8 LAO DIGIT EIGHT Nd 8 8 8 # \x0ED9 LAO DIGIT NINE Nd 9 9 9 # \x0EDC LAO HO NO 0EAB 0E99 # \x0EDD LAO HO MO 0EAB 0EA1 # \x0F00 TIBETAN SYLLABLE OM # \x0F01 TIBETAN MARK GTER YIG MGO TRUNCATED A ter yik go a thung # \x0F02 TIBETAN MARK GTER YIG MGO -UM RNAM BCAD MA ter yik go wum na # \xm chey ma # \x0F03 TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA ter yik go wum t # \xer tsek ma # \x0F04 TIBETAN MARK INITIAL YIG MGO MDUN MA TIBETAN SINGLE ORNAMENT # \xyik go dun ma # \x0F05 TIBETAN MARK CLOSING YIG MGO SGAB MA yik go kab ma # \x0F06 TIBETAN MARK CARET YIG MGO PHUR SHAD MA yik go pur shey ma # \x # \x0F07 TIBETAN MARK YIG MGO TSHEG SHAD MA yik go tsek shey ma # \x0F08 TIBETAN MARK SBRUL SHAD TIBETAN RGYANSHAD drul shey # \x0F09 TIBETAN MARK BSKUR YIG MGO kur yik go # \x0F0A TIBETAN MARK BKA- SHOG YIG MGO ka sho yik go # \x0F0B TIBETAN MARK INTERSYLLABIC TSHEG TIBETAN TSEG tsek # \x0F0C TIBETAN MARK DELIMITER TSHEG BSTAR 0F0B tsek tar # \x0F0D TIBETAN MARK SHAD TIBETAN SHAD shey # \x0F0E TIBETAN MARK NYIS SHAD TIBETAN DOUBLE SHAD nyi shey # \x0F0F TIBETAN MARK TSHEG SHAD tsek shey # \x0F10 TIBETAN MARK NYIS TSHEG SHAD nyi tsek shey # \x0F11 TIBETAN MARK RIN CHEN SPUNGS SHAD TIBETAN RINCHANPHUNGSHAD ri # \xnchen pung shey # \x0F12 TIBETAN MARK RGYA GRAM SHAD gya tram shey # \x0F13 TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN dzu ta me long ch # \xen # \x0F14 TIBETAN MARK GTER TSHEG TIBETAN COMMA ter tsek # \x0F15 TIBETAN LOGOTYPE SIGN CHAD RTAGS che ta # \x0F16 TIBETAN LOGOTYPE SIGN LHAG RTAGS hlak ta # \x0F17 TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS trachen char # \x ta # \x0F18 TIBETAN ASTROLOGICAL SIGN -KHYUD PA 220 kyu pa # \x0F19 TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS 220 dong tsu # \x0F1A TIBETAN SIGN RDEL DKAR GCIG deka chig # \x0F1B TIBETAN SIGN RDEL DKAR GNYIS deka nyi # \x0F1C TIBETAN SIGN RDEL DKAR GSUM deka sum # \x0F1D TIBETAN SIGN RDEL NAG GCIG dena chig # \x0F1E TIBETAN SIGN RDEL NAG GNYIS dena nyi # \x0F1F TIBETAN SIGN RDEL DKAR RDEL NAG deka dena # \x0F20 TIBETAN DIGIT ZERO Nd 0 # \x0F21 TIBETAN DIGIT ONE Nd 1 1 1 # \x0F22 TIBETAN DIGIT TWO Nd 2 2 2 # \x0F23 TIBETAN DIGIT THREE Nd 3 3 3 # \x0F24 TIBETAN DIGIT FOUR Nd 4 4 4 # \x0F25 TIBETAN DIGIT FIVE Nd 5 5 5 # \x0F26 TIBETAN DIGIT SIX Nd 6 6 6 # \x0F27 TIBETAN DIGIT SEVEN Nd 7 7 7 # \x0F28 TIBETAN DIGIT EIGHT Nd 8 8 8 # \x0F29 TIBETAN DIGIT NINE Nd 9 9 9 # \x0F2A TIBETAN DIGIT HALF ONE No 1/2 # \x0F2B TIBETAN DIGIT HALF TWO No 3/2 # \x0F2C TIBETAN DIGIT HALF THREE No 5/2 # \x0F2D TIBETAN DIGIT HALF FOUR No 7/2 # \x0F2E TIBETAN DIGIT HALF FIVE No 9/2 # \x0F2F TIBETAN DIGIT HALF SIX No 11/2 # \x0F30 TIBETAN DIGIT HALF SEVEN No 13/2 # \x0F31 TIBETAN DIGIT HALF EIGHT No 15/2 # \x0F32 TIBETAN DIGIT HALF NINE No 17/2 # \x0F33 TIBETAN DIGIT HALF ZERO No -1/2 # \x0F34 TIBETAN MARK BSDUS RTAGS du ta # \x0F35 TIBETAN MARK NGAS BZUNG NYI ZLA 220 TIBETAN HONORIFIC UNDER R # \xING nge zung nyi da # \x0F36 TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN dzu ta shi mig c # \xhen # \x0F37 TIBETAN MARK NGAS BZUNG SGOR RTAGS 220 TIBETAN UNDER RING nge # \x zung gor ta # \x0F38 TIBETAN MARK CHE MGO che go # \x0F39 TIBETAN MARK TSA -PHRU 216 TIBETAN LENITION MARK tsa tru # \x0F3A TIBETAN MARK GUG RTAGS GYON gug ta yun # \x0F3B TIBETAN MARK GUG RTAGS GYAS Pe gug ta ye # \x0F3C TIBETAN MARK ANG KHANG GYON TIBETAN LEFT BRACE ang kang yun # \x # \x0F3D TIBETAN MARK ANG KHANG GYAS Pe TIBETAN RIGHT BRACE ang kang ye # \x # \x0F3E TIBETAN SIGN YAR TSHES Mc yar tse # \x0F3F TIBETAN SIGN MAR TSHES Mc mar tse # \x0F40 TIBETAN LETTER KA # \x0F41 TIBETAN LETTER KHA # \x0F42 TIBETAN LETTER GA # \x0F43 TIBETAN LETTER GHA 0F42 0FB7 # \x0F44 TIBETAN LETTER NGA # \x0F45 TIBETAN LETTER CA # \x0F46 TIBETAN LETTER CHA # \x0F47 TIBETAN LETTER JA # \x0F49 TIBETAN LETTER NYA # \x0F4A TIBETAN LETTER TTA TIBETAN LETTER REVERSED TA # \x0F4B TIBETAN LETTER TTHA TIBETAN LETTER REVERSED THA # \x0F4C TIBETAN LETTER DDA TIBETAN LETTER REVERSED DA # \x0F4D TIBETAN LETTER DDHA 0F4C 0FB7 # \x0F4E TIBETAN LETTER NNA TIBETAN LETTER REVERSED NA # \x0F4F TIBETAN LETTER TA # \x0F50 TIBETAN LETTER THA # \x0F51 TIBETAN LETTER DA # \x0F52 TIBETAN LETTER DHA 0F51 0FB7 # \x0F53 TIBETAN LETTER NA # \x0F54 TIBETAN LETTER PA # \x0F55 TIBETAN LETTER PHA # \x0F56 TIBETAN LETTER BA # \x0F57 TIBETAN LETTER BHA 0F56 0FB7 # \x0F58 TIBETAN LETTER MA # \x0F59 TIBETAN LETTER TSA # \x0F5A TIBETAN LETTER TSHA # \x0F5B TIBETAN LETTER DZA # \x0F5C TIBETAN LETTER DZHA 0F5B 0FB7 # \x0F5D TIBETAN LETTER WA # \x0F5E TIBETAN LETTER ZHA # \x0F5F TIBETAN LETTER ZA # \x0F60 TIBETAN LETTER -A TIBETAN LETTER AA # \x0F61 TIBETAN LETTER YA # \x0F62 TIBETAN LETTER RA * # \x0F63 TIBETAN LETTER LA # \x0F64 TIBETAN LETTER SHA # \x0F65 TIBETAN LETTER SSA TIBETAN LETTER REVERSED SHA # \x0F66 TIBETAN LETTER SA # \x0F67 TIBETAN LETTER HA # \x0F68 TIBETAN LETTER A # \x0F69 TIBETAN LETTER KSSA 0F40 0FB5 # \x0F6A TIBETAN LETTER FIXED-FORM RA * # \x0F71 TIBETAN VOWEL SIGN AA 129 # \x0F72 TIBETAN VOWEL SIGN I 130 # \x0F73 TIBETAN VOWEL SIGN II 0F71 0F72 # \x0F74 TIBETAN VOWEL SIGN U 132 # \x0F75 TIBETAN VOWEL SIGN UU 0F71 0F74 # \x0F76 TIBETAN VOWEL SIGN VOCALIC 0FB2 0F80 # \x0F77 TIBETAN VOWEL SIGN VOCALIC RR 0FB2 0F81 # \x0F78 TIBETAN VOWEL SIGN VOCALIC 0FB3 0F80 # \x0F79 TIBETAN VOWEL SIGN VOCALIC LL 0FB3 0F81 # \x0F7A TIBETAN VOWEL SIGN E 130 # \x0F7B TIBETAN VOWEL SIGN EE 130 TIBETAN VOWEL SIGN AI # \x0F7C TIBETAN VOWEL SIGN O 130 # \x0F7D TIBETAN VOWEL SIGN OO 130 TIBETAN VOWEL SIGN AU # \x0F7E TIBETAN SIGN RJES SU NGA RO TIBETAN ANUSVARA je su nga ro # \x # \x0F7F TIBETAN SIGN RNAM BCAD Mc TIBETAN VISARGA nam chey # \x0F80 TIBETAN VOWEL SIGN REVERSED I 130 TIBETAN VOWEL SIGN SHORT I # \x # \x0F81 TIBETAN VOWEL SIGN REVERSED II 0F71 0F80 # \x0F82 TIBETAN SIGN NYI ZLA NAA DA 230 TIBETAN CANDRABINDU WITH ORNA # \xMENT nyi da na da # \x0F83 TIBETAN SIGN SNA LDAN 230 TIBETAN CANDRABINDU nan de # \x0F84 TIBETAN MARK HALANTA 9 TIBETAN VIRAMA # \x0F85 TIBETAN MARK PALUTA TIBETAN CHUCHENYIGE # \x0F86 TIBETAN SIGN LCI RTAGS 230 ji ta # \x0F87 TIBETAN SIGN YANG RTAGS 230 yang ta # \x0F88 TIBETAN SIGN LCE TSA CAN che tsa chen # \x0F89 TIBETAN SIGN MCHU CAN chu chen # \x0F8A TIBETAN SIGN GRU CAN RGYINGS tru chen ging # \x0F8B TIBETAN SIGN GRU MED RGYINGS tru me ging # \x0F90 TIBETAN SUBJOINED LETTER KA # \x0F91 TIBETAN SUBJOINED LETTER KHA # \x0F92 TIBETAN SUBJOINED LETTER GA # \x0F93 TIBETAN SUBJOINED LETTER GHA 0F92 0FB7 # \x0F94 TIBETAN SUBJOINED LETTER NGA # \x0F95 TIBETAN SUBJOINED LETTER CA # \x0F96 TIBETAN SUBJOINED LETTER CHA # \x0F97 TIBETAN SUBJOINED LETTER JA # \x0F99 TIBETAN SUBJOINED LETTER NYA # \x0F9A TIBETAN SUBJOINED LETTER TTA # \x0F9B TIBETAN SUBJOINED LETTER TTHA # \x0F9C TIBETAN SUBJOINED LETTER DDA # \x0F9D TIBETAN SUBJOINED LETTER DDHA 0F9C 0FB7 # \x0F9E TIBETAN SUBJOINED LETTER NNA # \x0F9F TIBETAN SUBJOINED LETTER TA # \x0FA0 TIBETAN SUBJOINED LETTER THA # \x0FA1 TIBETAN SUBJOINED LETTER DA # \x0FA2 TIBETAN SUBJOINED LETTER DHA 0FA1 0FB7 # \x0FA3 TIBETAN SUBJOINED LETTER NA # \x0FA4 TIBETAN SUBJOINED LETTER PA # \x0FA5 TIBETAN SUBJOINED LETTER PHA # \x0FA6 TIBETAN SUBJOINED LETTER BA # \x0FA7 TIBETAN SUBJOINED LETTER BHA 0FA6 0FB7 # \x0FA8 TIBETAN SUBJOINED LETTER MA # \x0FA9 TIBETAN SUBJOINED LETTER TSA # \x0FAA TIBETAN SUBJOINED LETTER TSHA # \x0FAB TIBETAN SUBJOINED LETTER DZA # \x0FAC TIBETAN SUBJOINED LETTER DZHA 0FAB 0FB7 # \x0FAD TIBETAN SUBJOINED LETTER WA * # \x0FAE TIBETAN SUBJOINED LETTER ZHA # \x0FAF TIBETAN SUBJOINED LETTER ZA # \x0FB0 TIBETAN SUBJOINED LETTER -A # \x0FB1 TIBETAN SUBJOINED LETTER YA * # \x0FB2 TIBETAN SUBJOINED LETTER RA * # \x0FB3 TIBETAN SUBJOINED LETTER LA # \x0FB4 TIBETAN SUBJOINED LETTER SHA # \x0FB5 TIBETAN SUBJOINED LETTER SSA # \x0FB6 TIBETAN SUBJOINED LETTER SA # \x0FB7 TIBETAN SUBJOINED LETTER HA # \x0FB8 TIBETAN SUBJOINED LETTER A # \x0FB9 TIBETAN SUBJOINED LETTER KSSA 0F90 0FB5 # \x0FBA TIBETAN SUBJOINED LETTER FIXED-FORM WA * # \x0FBB TIBETAN SUBJOINED LETTER FIXED-FORM YA * # \x0FBC TIBETAN SUBJOINED LETTER FIXED-FORM RA * # \x0FBE TIBETAN KU RU KHA kuruka # \x0FBF TIBETAN KU RU KHA BZHI MIG CAN kuruka shi mik chen # \x0FC0 TIBETAN CANTILLATION SIGN HEAVY BEAT # \x0FC1 TIBETAN CANTILLATION SIGN LIGHT BEAT # \x0FC2 TIBETAN CANTILLATION SIGN CANG TE-U chang tyu # \x0FC3 TIBETAN CANTILLATION SIGN SBUB -CHAL bub chey # \x0FC4 TIBETAN SYMBOL DRIL BU drilbu # \x0FC5 TIBETAN SYMBOL RDO RJE dorje # \x0FC6 TIBETAN SYMBOL PADMA GDAN 220 pema den # \x0FC7 TIBETAN SYMBOL RDO RJE RGYA GRAM dorje gya dram # \x0FC8 TIBETAN SYMBOL PHUR PA phurba # \x0FC9 TIBETAN SYMBOL NOR BU norbu # \x0FCA TIBETAN SYMBOL NOR BU NYIS -KHYIL norbu nyi khyi # \x0FCB TIBETAN SYMBOL NOR BU GSUM -KHYIL norbu sum khyi # \x0FCC TIBETAN SYMBOL NOR BU BZHI -KHYIL norbu shi khyi # \x0FCF TIBETAN SIGN RDEL NAG GSUM dena sum # \x1000 MYANMAR LETTER KA # \x1001 MYANMAR LETTER KHA # \x1002 MYANMAR LETTER GA # \x1003 MYANMAR LETTER GHA # \x1004 MYANMAR LETTER NGA # \x1005 MYANMAR LETTER CA # \x1006 MYANMAR LETTER CHA # \x1007 MYANMAR LETTER JA # \x1008 MYANMAR LETTER JHA # \x1009 MYANMAR LETTER NYA # \x100A MYANMAR LETTER NNYA # \x100B MYANMAR LETTER TTA # \x100C MYANMAR LETTER TTHA # \x100D MYANMAR LETTER DDA # \x100E MYANMAR LETTER DDHA # \x100F MYANMAR LETTER NNA # \x1010 MYANMAR LETTER TA # \x1011 MYANMAR LETTER THA # \x1012 MYANMAR LETTER DA # \x1013 MYANMAR LETTER DHA # \x1014 MYANMAR LETTER NA # \x1015 MYANMAR LETTER PA # \x1016 MYANMAR LETTER PHA # \x1017 MYANMAR LETTER BA # \x1018 MYANMAR LETTER BHA # \x1019 MYANMAR LETTER MA # \x101A MYANMAR LETTER YA # \x101B MYANMAR LETTER RA # \x101C MYANMAR LETTER LA # \x101D MYANMAR LETTER WA # \x101E MYANMAR LETTER SA # \x101F MYANMAR LETTER HA # \x1020 MYANMAR LETTER LLA # \x1021 MYANMAR LETTER A # \x1023 MYANMAR LETTER I # \x1024 MYANMAR LETTER II # \x1025 MYANMAR LETTER U # \x1026 MYANMAR LETTER UU 1025 102E # \x1027 MYANMAR LETTER E # \x1029 MYANMAR LETTER O # \x102A MYANMAR LETTER AU # \x102C MYANMAR VOWEL SIGN AA Mc # \x102D MYANMAR VOWEL SIGN I # \x102E MYANMAR VOWEL SIGN II # \x102F MYANMAR VOWEL SIGN U # \x1030 MYANMAR VOWEL SIGN UU # \x1031 MYANMAR VOWEL SIGN E Mc # \x1032 MYANMAR VOWEL SIGN AI # \x1036 MYANMAR SIGN ANUSVARA # \x1037 MYANMAR SIGN DOT BELOW 7 # \x1038 MYANMAR SIGN VISARGA Mc # \x1039 MYANMAR SIGN VIRAMA 9 # \x1040 MYANMAR DIGIT ZERO Nd 0 # \x1041 MYANMAR DIGIT ONE Nd 1 1 1 # \x1042 MYANMAR DIGIT TWO Nd 2 2 2 # \x1043 MYANMAR DIGIT THREE Nd 3 3 3 # \x1044 MYANMAR DIGIT FOUR Nd 4 4 4 # \x1045 MYANMAR DIGIT FIVE Nd 5 5 5 # \x1046 MYANMAR DIGIT SIX Nd 6 6 6 # \x1047 MYANMAR DIGIT SEVEN Nd 7 7 7 # \x1048 MYANMAR DIGIT EIGHT Nd 8 8 8 # \x1049 MYANMAR DIGIT NINE Nd 9 9 9 # \x104A MYANMAR SIGN LITTLE SECTION # \x104B MYANMAR SIGN SECTION # \x104C MYANMAR SYMBOL LOCATIVE # \x104D MYANMAR SYMBOL COMPLETED # \x104E MYANMAR SYMBOL AFOREMENTIONED # \x104F MYANMAR SYMBOL GENITIVE # \x1050 MYANMAR LETTER SHA # \x1051 MYANMAR LETTER SSA # \x1052 MYANMAR LETTER VOCALIC # \x1053 MYANMAR LETTER VOCALIC RR # \x1054 MYANMAR LETTER VOCALIC # \x1055 MYANMAR LETTER VOCALIC o # \x1056 MYANMAR VOWEL SIGN VOCALIC Mc # \x1057 MYANMAR VOWEL SIGN VOCALIC RR Mc # \x1058 MYANMAR VOWEL SIGN VOCALIC # \x1059 MYANMAR VOWEL SIGN VOCALIC LL # \x10A0 GEORGIAN CAPITAL LETTER AN Khutsuri # \x10A1 GEORGIAN CAPITAL LETTER BAN Khutsuri # \x10A2 GEORGIAN CAPITAL LETTER GAN Khutsuri # \x10A3 GEORGIAN CAPITAL LETTER DON Khutsuri # \x10A4 GEORGIAN CAPITAL LETTER EN Khutsuri # \x10A5 GEORGIAN CAPITAL LETTER VIN Khutsuri # \x10A6 GEORGIAN CAPITAL LETTER ZEN Khutsuri # \x10A7 GEORGIAN CAPITAL LETTER TAN Khutsuri # \x10A8 GEORGIAN CAPITAL LETTER IN Khutsuri # \x10A9 GEORGIAN CAPITAL LETTER KAN Khutsuri # \x10AA GEORGIAN CAPITAL LETTER LAS Khutsuri # \x10AB GEORGIAN CAPITAL LETTER MAN Khutsuri # \x10AC GEORGIAN CAPITAL LETTER NAR Khutsuri # \x10AD GEORGIAN CAPITAL LETTER Khutsuri # \x10AE GEORGIAN CAPITAL LETTER PAR Khutsuri # \x10AF GEORGIAN CAPITAL LETTER ZHAR Khutsuri # \x10B0 GEORGIAN CAPITAL LETTER RAE Khutsuri # \x10B1 GEORGIAN CAPITAL LETTER SAN Khutsuri # \x10B2 GEORGIAN CAPITAL LETTER TAR Khutsuri # \x10B3 GEORGIAN CAPITAL LETTER UN Khutsuri # \x10B4 GEORGIAN CAPITAL LETTER PHAR Khutsuri # \x10B5 GEORGIAN CAPITAL LETTER KHAR Khutsuri # \x10B6 GEORGIAN CAPITAL LETTER GHAN Khutsuri # \x10B7 GEORGIAN CAPITAL LETTER QAR Khutsuri # \x10B8 GEORGIAN CAPITAL LETTER SHIN Khutsuri # \x10B9 GEORGIAN CAPITAL LETTER CHIN Khutsuri # \x10BA GEORGIAN CAPITAL LETTER CAN Khutsuri # \x10BB GEORGIAN CAPITAL LETTER JIL Khutsuri # \x10BC GEORGIAN CAPITAL LETTER CIL Khutsuri # \x10BD GEORGIAN CAPITAL LETTER CHAR Khutsuri # \x10BE GEORGIAN CAPITAL LETTER XAN Khutsuri # \x10BF GEORGIAN CAPITAL LETTER JHAN Khutsuri # \x10C0 GEORGIAN CAPITAL LETTER HAE Khutsuri # \x10C1 GEORGIAN CAPITAL LETTER HE Khutsuri # \x10C2 GEORGIAN CAPITAL LETTER HIE Khutsuri # \x10C3 GEORGIAN CAPITAL LETTER WE Khutsuri # \x10C4 GEORGIAN CAPITAL LETTER HAR Khutsuri # \x10C5 GEORGIAN CAPITAL LETTER HOE Khutsuri # \x10D0 GEORGIAN LETTER AN GEORGIAN SMALL LETTER AN # \x10D1 GEORGIAN LETTER BAN GEORGIAN SMALL LETTER BAN # \x10D2 GEORGIAN LETTER GAN GEORGIAN SMALL LETTER GAN # \x10D3 GEORGIAN LETTER DON GEORGIAN SMALL LETTER DON # \x10D4 GEORGIAN LETTER EN GEORGIAN SMALL LETTER EN # \x10D5 GEORGIAN LETTER VIN GEORGIAN SMALL LETTER VIN # \x10D6 GEORGIAN LETTER ZEN GEORGIAN SMALL LETTER ZEN # \x10D7 GEORGIAN LETTER TAN GEORGIAN SMALL LETTER TAN # \x10D8 GEORGIAN LETTER IN GEORGIAN SMALL LETTER IN # \x10D9 GEORGIAN LETTER KAN GEORGIAN SMALL LETTER KAN # \x10DA GEORGIAN LETTER LAS GEORGIAN SMALL LETTER LAS # \x10DB GEORGIAN LETTER MAN GEORGIAN SMALL LETTER MAN # \x10DC GEORGIAN LETTER NAR GEORGIAN SMALL LETTER NAR # \x10DD GEORGIAN LETTER GEORGIAN SMALL LETTER # \x10DE GEORGIAN LETTER PAR GEORGIAN SMALL LETTER PAR # \x10DF GEORGIAN LETTER ZHAR GEORGIAN SMALL LETTER ZHAR # \x10E0 GEORGIAN LETTER RAE GEORGIAN SMALL LETTER RAE # \x10E1 GEORGIAN LETTER SAN GEORGIAN SMALL LETTER SAN # \x10E2 GEORGIAN LETTER TAR GEORGIAN SMALL LETTER TAR # \x10E3 GEORGIAN LETTER UN GEORGIAN SMALL LETTER UN # \x10E4 GEORGIAN LETTER PHAR GEORGIAN SMALL LETTER PHAR # \x10E5 GEORGIAN LETTER KHAR GEORGIAN SMALL LETTER KHAR # \x10E6 GEORGIAN LETTER GHAN GEORGIAN SMALL LETTER GHAN # \x10E7 GEORGIAN LETTER QAR GEORGIAN SMALL LETTER QAR # \x10E8 GEORGIAN LETTER SHIN GEORGIAN SMALL LETTER SHIN # \x10E9 GEORGIAN LETTER CHIN GEORGIAN SMALL LETTER CHIN # \x10EA GEORGIAN LETTER CAN GEORGIAN SMALL LETTER CAN # \x10EB GEORGIAN LETTER JIL GEORGIAN SMALL LETTER JIL # \x10EC GEORGIAN LETTER CIL GEORGIAN SMALL LETTER CIL # \x10ED GEORGIAN LETTER CHAR GEORGIAN SMALL LETTER CHAR # \x10EE GEORGIAN LETTER XAN GEORGIAN SMALL LETTER XAN # \x10EF GEORGIAN LETTER JHAN GEORGIAN SMALL LETTER JHAN # \x10F0 GEORGIAN LETTER HAE GEORGIAN SMALL LETTER HAE # \x10F1 GEORGIAN LETTER HE GEORGIAN SMALL LETTER HE # \x10F2 GEORGIAN LETTER HIE GEORGIAN SMALL LETTER HIE # \x10F3 GEORGIAN LETTER WE GEORGIAN SMALL LETTER WE # \x10F4 GEORGIAN LETTER HAR GEORGIAN SMALL LETTER HAR # \x10F5 GEORGIAN LETTER HOE GEORGIAN SMALL LETTER HOE # \x10F6 GEORGIAN LETTER FI GEORGIAN SMALL LETTER FI # \x10F7 GEORGIAN LETTER YN # \x10F8 GEORGIAN LETTER ELIFI # \x10FB GEORGIAN PARAGRAPH SEPARATOR # \x1100 HANGUL CHOSEONG KIYEOK g * # \x1101 HANGUL CHOSEONG SSANGKIYEOK gg * # \x1102 HANGUL CHOSEONG NIEUN n * # \x1103 HANGUL CHOSEONG TIKEUT d * # \x1104 HANGUL CHOSEONG SSANGTIKEUT dd * # \x1105 HANGUL CHOSEONG RIEUL * # \x1106 HANGUL CHOSEONG MIEUM m * # \x1107 HANGUL CHOSEONG PIEUP b * # \x1108 HANGUL CHOSEONG SSANGPIEUP bb * # \x1109 HANGUL CHOSEONG SIOS s * # \x110A HANGUL CHOSEONG SSANGSIOS ss * # \x110B HANGUL CHOSEONG IEUNG # \x110C HANGUL CHOSEONG CIEUC j * # \x110D HANGUL CHOSEONG SSANGCIEUC jj * # \x110E HANGUL CHOSEONG CHIEUCH c * # \x110F HANGUL CHOSEONG KHIEUKH k * # \x1110 HANGUL CHOSEONG THIEUTH t * # \x1111 HANGUL CHOSEONG PHIEUPH p * # \x1112 HANGUL CHOSEONG HIEUH h * # \x1113 HANGUL CHOSEONG NIEUN-KIYEOK # \x1114 HANGUL CHOSEONG SSANGNIEUN # \x1115 HANGUL CHOSEONG NIEUN-TIKEUT # \x1116 HANGUL CHOSEONG NIEUN-PIEUP # \x1117 HANGUL CHOSEONG TIKEUT-KIYEOK # \x1118 HANGUL CHOSEONG RIEUL-NIEUN # \x1119 HANGUL CHOSEONG SSANGRIEUL # \x111A HANGUL CHOSEONG RIEUL-HIEUH # \x111B HANGUL CHOSEONG KAPYEOUNRIEUL # \x111C HANGUL CHOSEONG MIEUM-PIEUP # \x111D HANGUL CHOSEONG KAPYEOUNMIEUM # \x111E HANGUL CHOSEONG PIEUP-KIYEOK # \x111F HANGUL CHOSEONG PIEUP-NIEUN # \x1120 HANGUL CHOSEONG PIEUP-TIKEUT # \x1121 HANGUL CHOSEONG PIEUP-SIOS # \x1122 HANGUL CHOSEONG PIEUP-SIOS-KIYEOK # \x1123 HANGUL CHOSEONG PIEUP-SIOS-TIKEUT # \x1124 HANGUL CHOSEONG PIEUP-SIOS-PIEUP # \x1125 HANGUL CHOSEONG PIEUP-SSANGSIOS # \x1126 HANGUL CHOSEONG PIEUP-SIOS-CIEUC # \x1127 HANGUL CHOSEONG PIEUP-CIEUC # \x1128 HANGUL CHOSEONG PIEUP-CHIEUCH # \x1129 HANGUL CHOSEONG PIEUP-THIEUTH # \x112A HANGUL CHOSEONG PIEUP-PHIEUPH # \x112B HANGUL CHOSEONG KAPYEOUNPIEUP # \x112C HANGUL CHOSEONG KAPYEOUNSSANGPIEUP # \x112D HANGUL CHOSEONG SIOS-KIYEOK # \x112E HANGUL CHOSEONG SIOS-NIEUN # \x112F HANGUL CHOSEONG SIOS-TIKEUT # \x1130 HANGUL CHOSEONG SIOS-RIEUL # \x1131 HANGUL CHOSEONG SIOS-MIEUM # \x1132 HANGUL CHOSEONG SIOS-PIEUP # \x1133 HANGUL CHOSEONG SIOS-PIEUP-KIYEOK # \x1134 HANGUL CHOSEONG SIOS-SSANGSIOS # \x1135 HANGUL CHOSEONG SIOS-IEUNG # \x1136 HANGUL CHOSEONG SIOS-CIEUC # \x1137 HANGUL CHOSEONG SIOS-CHIEUCH # \x1138 HANGUL CHOSEONG SIOS-KHIEUKH # \x1139 HANGUL CHOSEONG SIOS-THIEUTH # \x113A HANGUL CHOSEONG SIOS-PHIEUPH # \x113B HANGUL CHOSEONG SIOS-HIEUH # \x113C HANGUL CHOSEONG CHITUEUMSIOS # \x113D HANGUL CHOSEONG CHITUEUMSSANGSIOS # \x113E HANGUL CHOSEONG CEONGCHIEUMSIOS # \x113F HANGUL CHOSEONG CEONGCHIEUMSSANGSIOS # \x1140 HANGUL CHOSEONG PANSIOS # \x1141 HANGUL CHOSEONG IEUNG-KIYEOK # \x1142 HANGUL CHOSEONG IEUNG-TIKEUT # \x1143 HANGUL CHOSEONG IEUNG-MIEUM # \x1144 HANGUL CHOSEONG IEUNG-PIEUP # \x1145 HANGUL CHOSEONG IEUNG-SIOS # \x1146 HANGUL CHOSEONG IEUNG-PANSIOS # \x1147 HANGUL CHOSEONG SSANGIEUNG # \x1148 HANGUL CHOSEONG IEUNG-CIEUC # \x1149 HANGUL CHOSEONG IEUNG-CHIEUCH # \x114A HANGUL CHOSEONG IEUNG-THIEUTH # \x114B HANGUL CHOSEONG IEUNG-PHIEUPH # \x114C HANGUL CHOSEONG YESIEUNG # \x114D HANGUL CHOSEONG CIEUC-IEUNG # \x114E HANGUL CHOSEONG CHITUEUMCIEUC # \x114F HANGUL CHOSEONG CHITUEUMSSANGCIEUC # \x1150 HANGUL CHOSEONG CEONGCHIEUMCIEUC # \x1151 HANGUL CHOSEONG CEONGCHIEUMSSANGCIEUC # \x1152 HANGUL CHOSEONG CHIEUCH-KHIEUKH # \x1153 HANGUL CHOSEONG CHIEUCH-HIEUH # \x1154 HANGUL CHOSEONG CHITUEUMCHIEUCH # \x1155 HANGUL CHOSEONG CEONGCHIEUMCHIEUCH # \x1156 HANGUL CHOSEONG PHIEUPH-PIEUP # \x1157 HANGUL CHOSEONG KAPYEOUNPHIEUPH # \x1158 HANGUL CHOSEONG SSANGHIEUH # \x1159 HANGUL CHOSEONG YEORINHIEUH # \x115F HANGUL CHOSEONG FILLER # \x1160 HANGUL JUNGSEONG FILLER # \x1161 HANGUL JUNGSEONG A # \x1162 HANGUL JUNGSEONG AE # \x1163 HANGUL JUNGSEONG YA # \x1164 HANGUL JUNGSEONG YAE # \x1165 HANGUL JUNGSEONG EO # \x1166 HANGUL JUNGSEONG E # \x1167 HANGUL JUNGSEONG YEO # \x1168 HANGUL JUNGSEONG YE # \x1169 HANGUL JUNGSEONG O # \x116A HANGUL JUNGSEONG WA # \x116B HANGUL JUNGSEONG WAE # \x116C HANGUL JUNGSEONG OE # \x116D HANGUL JUNGSEONG YO # \x116E HANGUL JUNGSEONG U # \x116F HANGUL JUNGSEONG WEO # \x1170 HANGUL JUNGSEONG WE # \x1171 HANGUL JUNGSEONG WI # \x1172 HANGUL JUNGSEONG YU # \x1173 HANGUL JUNGSEONG EU # \x1174 HANGUL JUNGSEONG YI # \x1175 HANGUL JUNGSEONG I # \x1176 HANGUL JUNGSEONG A-O # \x1177 HANGUL JUNGSEONG A-U # \x1178 HANGUL JUNGSEONG YA-O # \x1179 HANGUL JUNGSEONG YA-YO # \x117A HANGUL JUNGSEONG EO-O # \x117B HANGUL JUNGSEONG EO-U # \x117C HANGUL JUNGSEONG EO-EU # \x117D HANGUL JUNGSEONG YEO-O # \x117E HANGUL JUNGSEONG YEO-U # \x117F HANGUL JUNGSEONG O-EO # \x1180 HANGUL JUNGSEONG O-E # \x1181 HANGUL JUNGSEONG O-YE # \x1182 HANGUL JUNGSEONG O-O # \x1183 HANGUL JUNGSEONG O-U # \x1184 HANGUL JUNGSEONG YO-YA # \x1185 HANGUL JUNGSEONG YO-YAE # \x1186 HANGUL JUNGSEONG YO-YEO # \x1187 HANGUL JUNGSEONG YO-O # \x1188 HANGUL JUNGSEONG YO-I # \x1189 HANGUL JUNGSEONG U-A # \x118A HANGUL JUNGSEONG U-AE # \x118B HANGUL JUNGSEONG U-EO-EU # \x118C HANGUL JUNGSEONG U-YE # \x118D HANGUL JUNGSEONG U-U # \x118E HANGUL JUNGSEONG YU-A # \x118F HANGUL JUNGSEONG YU-EO # \x1190 HANGUL JUNGSEONG YU-E # \x1191 HANGUL JUNGSEONG YU-YEO # \x1192 HANGUL JUNGSEONG YU-YE # \x1193 HANGUL JUNGSEONG YU-U # \x1194 HANGUL JUNGSEONG YU-I # \x1195 HANGUL JUNGSEONG EU-U # \x1196 HANGUL JUNGSEONG EU-EU # \x1197 HANGUL JUNGSEONG YI-U # \x1198 HANGUL JUNGSEONG I-A # \x1199 HANGUL JUNGSEONG I-YA # \x119A HANGUL JUNGSEONG I-O # \x119B HANGUL JUNGSEONG I-U # \x119C HANGUL JUNGSEONG I-EU # \x119D HANGUL JUNGSEONG I-ARAEA # \x119E HANGUL JUNGSEONG ARAEA # \x119F HANGUL JUNGSEONG ARAEA-EO # \x11A0 HANGUL JUNGSEONG ARAEA-U # \x11A1 HANGUL JUNGSEONG ARAEA-I # \x11A2 HANGUL JUNGSEONG SSANGARAEA # \x11A8 HANGUL JONGSEONG KIYEOK g * # \x11A9 HANGUL JONGSEONG SSANGKIYEOK gg * # \x11AA HANGUL JONGSEONG KIYEOK-SIOS gs * # \x11AB HANGUL JONGSEONG NIEUN n * # \x11AC HANGUL JONGSEONG NIEUN-CIEUC nj * # \x11AD HANGUL JONGSEONG NIEUN-HIEUH nh * # \x11AE HANGUL JONGSEONG TIKEUT d * # \x11AF HANGUL JONGSEONG RIEUL l * # \x11B0 HANGUL JONGSEONG RIEUL-KIYEOK lg * # \x11B1 HANGUL JONGSEONG RIEUL-MIEUM lm * # \x11B2 HANGUL JONGSEONG RIEUL-PIEUP lb * # \x11B3 HANGUL JONGSEONG RIEUL-SIOS ls * # \x11B4 HANGUL JONGSEONG RIEUL-THIEUTH lt * # \x11B5 HANGUL JONGSEONG RIEUL-PHIEUPH lp * # \x11B6 HANGUL JONGSEONG RIEUL-HIEUH lh * # \x11B7 HANGUL JONGSEONG MIEUM m * # \x11B8 HANGUL JONGSEONG PIEUP b * # \x11B9 HANGUL JONGSEONG PIEUP-SIOS bs * # \x11BA HANGUL JONGSEONG SIOS s * # \x11BB HANGUL JONGSEONG SSANGSIOS ss * # \x11BC HANGUL JONGSEONG IEUNG ng * # \x11BD HANGUL JONGSEONG CIEUC j * # \x11BE HANGUL JONGSEONG CHIEUCH c * # \x11BF HANGUL JONGSEONG KHIEUKH k * # \x11C0 HANGUL JONGSEONG THIEUTH t * # \x11C1 HANGUL JONGSEONG PHIEUPH p * # \x11C2 HANGUL JONGSEONG HIEUH h * # \x11C3 HANGUL JONGSEONG KIYEOK-RIEUL # \x11C4 HANGUL JONGSEONG KIYEOK-SIOS-KIYEOK # \x11C5 HANGUL JONGSEONG NIEUN-KIYEOK # \x11C6 HANGUL JONGSEONG NIEUN-TIKEUT # \x11C7 HANGUL JONGSEONG NIEUN-SIOS # \x11C8 HANGUL JONGSEONG NIEUN-PANSIOS # \x11C9 HANGUL JONGSEONG NIEUN-THIEUTH # \x11CA HANGUL JONGSEONG TIKEUT-KIYEOK # \x11CB HANGUL JONGSEONG TIKEUT-RIEUL # \x11CC HANGUL JONGSEONG RIEUL-KIYEOK-SIOS # \x11CD HANGUL JONGSEONG RIEUL-NIEUN # \x11CE HANGUL JONGSEONG RIEUL-TIKEUT # \x11CF HANGUL JONGSEONG RIEUL-TIKEUT-HIEUH # \x11D0 HANGUL JONGSEONG SSANGRIEUL # \x11D1 HANGUL JONGSEONG RIEUL-MIEUM-KIYEOK # \x11D2 HANGUL JONGSEONG RIEUL-MIEUM-SIOS # \x11D3 HANGUL JONGSEONG RIEUL-PIEUP-SIOS # \x11D4 HANGUL JONGSEONG RIEUL-PIEUP-HIEUH # \x11D5 HANGUL JONGSEONG RIEUL-KAPYEOUNPIEUP # \x11D6 HANGUL JONGSEONG RIEUL-SSANGSIOS # \x11D7 HANGUL JONGSEONG RIEUL-PANSIOS # \x11D8 HANGUL JONGSEONG RIEUL-KHIEUKH # \x11D9 HANGUL JONGSEONG RIEUL-YEORINHIEUH # \x11DA HANGUL JONGSEONG MIEUM-KIYEOK # \x11DB HANGUL JONGSEONG MIEUM-RIEUL # \x11DC HANGUL JONGSEONG MIEUM-PIEUP # \x11DD HANGUL JONGSEONG MIEUM-SIOS # \x11DE HANGUL JONGSEONG MIEUM-SSANGSIOS # \x11DF HANGUL JONGSEONG MIEUM-PANSIOS # \x11E0 HANGUL JONGSEONG MIEUM-CHIEUCH # \x11E1 HANGUL JONGSEONG MIEUM-HIEUH # \x11E2 HANGUL JONGSEONG KAPYEOUNMIEUM # \x11E3 HANGUL JONGSEONG PIEUP-RIEUL # \x11E4 HANGUL JONGSEONG PIEUP-PHIEUPH # \x11E5 HANGUL JONGSEONG PIEUP-HIEUH # \x11E6 HANGUL JONGSEONG KAPYEOUNPIEUP # \x11E7 HANGUL JONGSEONG SIOS-KIYEOK # \x11E8 HANGUL JONGSEONG SIOS-TIKEUT # \x11E9 HANGUL JONGSEONG SIOS-RIEUL # \x11EA HANGUL JONGSEONG SIOS-PIEUP # \x11EB HANGUL JONGSEONG PANSIOS # \x11EC HANGUL JONGSEONG IEUNG-KIYEOK # \x11ED HANGUL JONGSEONG IEUNG-SSANGKIYEOK # \x11EE HANGUL JONGSEONG SSANGIEUNG # \x11EF HANGUL JONGSEONG IEUNG-KHIEUKH # \x11F0 HANGUL JONGSEONG YESIEUNG # \x11F1 HANGUL JONGSEONG YESIEUNG-SIOS # \x11F2 HANGUL JONGSEONG YESIEUNG-PANSIOS # \x11F3 HANGUL JONGSEONG PHIEUPH-PIEUP # \x11F4 HANGUL JONGSEONG KAPYEOUNPHIEUPH # \x11F5 HANGUL JONGSEONG HIEUH-NIEUN # \x11F6 HANGUL JONGSEONG HIEUH-RIEUL # \x11F7 HANGUL JONGSEONG HIEUH-MIEUM # \x11F8 HANGUL JONGSEONG HIEUH-PIEUP # \x11F9 HANGUL JONGSEONG YEORINHIEUH # \x1200 ETHIOPIC SYLLABLE HA # \x1201 ETHIOPIC SYLLABLE HU # \x1202 ETHIOPIC SYLLABLE HI # \x1203 ETHIOPIC SYLLABLE HAA # \x1204 ETHIOPIC SYLLABLE HEE # \x1205 ETHIOPIC SYLLABLE HE # \x1206 ETHIOPIC SYLLABLE HO # \x1208 ETHIOPIC SYLLABLE LA # \x1209 ETHIOPIC SYLLABLE o # \x120A ETHIOPIC SYLLABLE LI # \x120B ETHIOPIC SYLLABLE LAA # \x120C ETHIOPIC SYLLABLE LEE # \x120D ETHIOPIC SYLLABLE LE # \x120E ETHIOPIC SYLLABLE Lo # \x120F ETHIOPIC SYLLABLE LWA # \x1210 ETHIOPIC SYLLABLE HHA # \x1211 ETHIOPIC SYLLABLE HHU # \x1212 ETHIOPIC SYLLABLE HHI # \x1213 ETHIOPIC SYLLABLE HHAA # \x1214 ETHIOPIC SYLLABLE HHEE # \x1215 ETHIOPIC SYLLABLE HHE # \x1216 ETHIOPIC SYLLABLE HHO # \x1217 ETHIOPIC SYLLABLE HHWA # \x1218 ETHIOPIC SYLLABLE MA # \x1219 ETHIOPIC SYLLABLE MU # \x121A ETHIOPIC SYLLABLE MI # \x121B ETHIOPIC SYLLABLE MAA # \x121C ETHIOPIC SYLLABLE MEE # \x121D ETHIOPIC SYLLABLE ME # \x121E ETHIOPIC SYLLABLE MO # \x121F ETHIOPIC SYLLABLE MWA # \x1220 ETHIOPIC SYLLABLE SZA # \x1221 ETHIOPIC SYLLABLE SZU # \x1222 ETHIOPIC SYLLABLE SZI # \x1223 ETHIOPIC SYLLABLE SZAA # \x1224 ETHIOPIC SYLLABLE SZEE # \x1225 ETHIOPIC SYLLABLE SZE # \x1226 ETHIOPIC SYLLABLE SZO # \x1227 ETHIOPIC SYLLABLE SZWA # \x1228 ETHIOPIC SYLLABLE RA # \x1229 ETHIOPIC SYLLABLE RU # \x122A ETHIOPIC SYLLABLE RI # \x122B ETHIOPIC SYLLABLE RAA # \x122C ETHIOPIC SYLLABLE REE # \x122D ETHIOPIC SYLLABLE RE # \x122E ETHIOPIC SYLLABLE RO # \x122F ETHIOPIC SYLLABLE RWA # \x1230 ETHIOPIC SYLLABLE SA # \x1231 ETHIOPIC SYLLABLE SU # \x1232 ETHIOPIC SYLLABLE SI # \x1233 ETHIOPIC SYLLABLE SAA # \x1234 ETHIOPIC SYLLABLE SEE # \x1235 ETHIOPIC SYLLABLE SE # \x1236 ETHIOPIC SYLLABLE # \x1237 ETHIOPIC SYLLABLE SWA # \x1238 ETHIOPIC SYLLABLE SHA # \x1239 ETHIOPIC SYLLABLE SHU # \x123A ETHIOPIC SYLLABLE SHI # \x123B ETHIOPIC SYLLABLE SHAA # \x123C ETHIOPIC SYLLABLE SHEE # \x123D ETHIOPIC SYLLABLE SHE # \x123E ETHIOPIC SYLLABLE SHO # \x123F ETHIOPIC SYLLABLE SHWA # \x1240 ETHIOPIC SYLLABLE QA # \x1241 ETHIOPIC SYLLABLE QU # \x1242 ETHIOPIC SYLLABLE QI # \x1243 ETHIOPIC SYLLABLE QAA # \x1244 ETHIOPIC SYLLABLE QEE # \x1245 ETHIOPIC SYLLABLE QE # \x1246 ETHIOPIC SYLLABLE QO # \x1248 ETHIOPIC SYLLABLE QWA # \x124A ETHIOPIC SYLLABLE QWI # \x124B ETHIOPIC SYLLABLE QWAA # \x124C ETHIOPIC SYLLABLE QWEE # \x124D ETHIOPIC SYLLABLE QWE # \x1250 ETHIOPIC SYLLABLE QHA # \x1251 ETHIOPIC SYLLABLE QHU # \x1252 ETHIOPIC SYLLABLE QHI # \x1253 ETHIOPIC SYLLABLE QHAA # \x1254 ETHIOPIC SYLLABLE QHEE # \x1255 ETHIOPIC SYLLABLE QHE # \x1256 ETHIOPIC SYLLABLE QHO # \x1258 ETHIOPIC SYLLABLE QHWA # \x125A ETHIOPIC SYLLABLE QHWI # \x125B ETHIOPIC SYLLABLE QHWAA # \x125C ETHIOPIC SYLLABLE QHWEE # \x125D ETHIOPIC SYLLABLE QHWE # \x1260 ETHIOPIC SYLLABLE BA # \x1261 ETHIOPIC SYLLABLE BU # \x1262 ETHIOPIC SYLLABLE BI # \x1263 ETHIOPIC SYLLABLE BAA # \x1264 ETHIOPIC SYLLABLE BEE # \x1265 ETHIOPIC SYLLABLE BE # \x1266 ETHIOPIC SYLLABLE BO # \x1267 ETHIOPIC SYLLABLE BWA # \x1268 ETHIOPIC SYLLABLE VA # \x1269 ETHIOPIC SYLLABLE VU # \x126A ETHIOPIC SYLLABLE VI # \x126B ETHIOPIC SYLLABLE VAA # \x126C ETHIOPIC SYLLABLE VEE # \x126D ETHIOPIC SYLLABLE VE # \x126E ETHIOPIC SYLLABLE VO # \x126F ETHIOPIC SYLLABLE VWA # \x1270 ETHIOPIC SYLLABLE TA # \x1271 ETHIOPIC SYLLABLE TU # \x1272 ETHIOPIC SYLLABLE TI # \x1273 ETHIOPIC SYLLABLE TAA # \x1274 ETHIOPIC SYLLABLE TEE # \x1275 ETHIOPIC SYLLABLE TE # \x1276 ETHIOPIC SYLLABLE TO # \x1277 ETHIOPIC SYLLABLE TWA # \x1278 ETHIOPIC SYLLABLE CA # \x1279 ETHIOPIC SYLLABLE CU # \x127A ETHIOPIC SYLLABLE CI # \x127B ETHIOPIC SYLLABLE CAA # \x127C ETHIOPIC SYLLABLE CEE # \x127D ETHIOPIC SYLLABLE CE # \x127E ETHIOPIC SYLLABLE CO # \x127F ETHIOPIC SYLLABLE CWA # \x1280 ETHIOPIC SYLLABLE XA # \x1281 ETHIOPIC SYLLABLE XU # \x1282 ETHIOPIC SYLLABLE XI # \x1283 ETHIOPIC SYLLABLE XAA # \x1284 ETHIOPIC SYLLABLE XEE # \x1285 ETHIOPIC SYLLABLE XE # \x1286 ETHIOPIC SYLLABLE XO # \x1288 ETHIOPIC SYLLABLE XWA # \x128A ETHIOPIC SYLLABLE XWI # \x128B ETHIOPIC SYLLABLE XWAA # \x128C ETHIOPIC SYLLABLE XWEE # \x128D ETHIOPIC SYLLABLE XWE # \x1290 ETHIOPIC SYLLABLE NA # \x1291 ETHIOPIC SYLLABLE NU # \x1292 ETHIOPIC SYLLABLE NI # \x1293 ETHIOPIC SYLLABLE NAA # \x1294 ETHIOPIC SYLLABLE NEE # \x1295 ETHIOPIC SYLLABLE NE # \x1296 ETHIOPIC SYLLABLE NO # \x1297 ETHIOPIC SYLLABLE NWA # \x1298 ETHIOPIC SYLLABLE NYA # \x1299 ETHIOPIC SYLLABLE NYU # \x129A ETHIOPIC SYLLABLE NYI # \x129B ETHIOPIC SYLLABLE NYAA # \x129C ETHIOPIC SYLLABLE NYEE # \x129D ETHIOPIC SYLLABLE NYE # \x129E ETHIOPIC SYLLABLE NYO # \x129F ETHIOPIC SYLLABLE NYWA # \x12A0 ETHIOPIC SYLLABLE GLOTTAL A # \x12A1 ETHIOPIC SYLLABLE GLOTTAL U # \x12A2 ETHIOPIC SYLLABLE GLOTTAL I # \x12A3 ETHIOPIC SYLLABLE GLOTTAL AA # \x12A4 ETHIOPIC SYLLABLE GLOTTAL EE # \x12A5 ETHIOPIC SYLLABLE GLOTTAL E # \x12A6 ETHIOPIC SYLLABLE GLOTTAL O # \x12A7 ETHIOPIC SYLLABLE GLOTTAL WA # \x12A8 ETHIOPIC SYLLABLE KA # \x12A9 ETHIOPIC SYLLABLE KU # \x12AA ETHIOPIC SYLLABLE KI # \x12AB ETHIOPIC SYLLABLE KAA # \x12AC ETHIOPIC SYLLABLE KEE # \x12AD ETHIOPIC SYLLABLE KE # \x12AE ETHIOPIC SYLLABLE KO # \x12B0 ETHIOPIC SYLLABLE KWA # \x12B2 ETHIOPIC SYLLABLE KWI # \x12B3 ETHIOPIC SYLLABLE KWAA # \x12B4 ETHIOPIC SYLLABLE KWEE # \x12B5 ETHIOPIC SYLLABLE KWE # \x12B8 ETHIOPIC SYLLABLE KXA # \x12B9 ETHIOPIC SYLLABLE KXU # \x12BA ETHIOPIC SYLLABLE KXI # \x12BB ETHIOPIC SYLLABLE KXAA # \x12BC ETHIOPIC SYLLABLE KXEE # \x12BD ETHIOPIC SYLLABLE KXE # \x12BE ETHIOPIC SYLLABLE KXO # \x12C0 ETHIOPIC SYLLABLE KXWA # \x12C2 ETHIOPIC SYLLABLE KXWI # \x12C3 ETHIOPIC SYLLABLE KXWAA # \x12C4 ETHIOPIC SYLLABLE KXWEE # \x12C5 ETHIOPIC SYLLABLE KXWE # \x12C8 ETHIOPIC SYLLABLE WA # \x12C9 ETHIOPIC SYLLABLE WU # \x12CA ETHIOPIC SYLLABLE WI # \x12CB ETHIOPIC SYLLABLE WAA # \x12CC ETHIOPIC SYLLABLE WEE # \x12CD ETHIOPIC SYLLABLE WE # \x12CE ETHIOPIC SYLLABLE WO # \x12D0 ETHIOPIC SYLLABLE PHARYNGEAL A # \x12D1 ETHIOPIC SYLLABLE PHARYNGEAL U # \x12D2 ETHIOPIC SYLLABLE PHARYNGEAL I # \x12D3 ETHIOPIC SYLLABLE PHARYNGEAL AA # \x12D4 ETHIOPIC SYLLABLE PHARYNGEAL EE # \x12D5 ETHIOPIC SYLLABLE PHARYNGEAL E # \x12D6 ETHIOPIC SYLLABLE PHARYNGEAL O # \x12D8 ETHIOPIC SYLLABLE ZA # \x12D9 ETHIOPIC SYLLABLE ZU # \x12DA ETHIOPIC SYLLABLE ZI # \x12DB ETHIOPIC SYLLABLE ZAA # \x12DC ETHIOPIC SYLLABLE ZEE # \x12DD ETHIOPIC SYLLABLE ZE # \x12DE ETHIOPIC SYLLABLE ZO # \x12DF ETHIOPIC SYLLABLE ZWA # \x12E0 ETHIOPIC SYLLABLE ZHA # \x12E1 ETHIOPIC SYLLABLE ZHU # \x12E2 ETHIOPIC SYLLABLE ZHI # \x12E3 ETHIOPIC SYLLABLE ZHAA # \x12E4 ETHIOPIC SYLLABLE ZHEE # \x12E5 ETHIOPIC SYLLABLE ZHE # \x12E6 ETHIOPIC SYLLABLE ZHO # \x12E7 ETHIOPIC SYLLABLE ZHWA # \x12E8 ETHIOPIC SYLLABLE YA # \x12E9 ETHIOPIC SYLLABLE YU # \x12EA ETHIOPIC SYLLABLE YI # \x12EB ETHIOPIC SYLLABLE YAA # \x12EC ETHIOPIC SYLLABLE YEE # \x12ED ETHIOPIC SYLLABLE YE # \x12EE ETHIOPIC SYLLABLE YO # \x12F0 ETHIOPIC SYLLABLE DA # \x12F1 ETHIOPIC SYLLABLE DU # \x12F2 ETHIOPIC SYLLABLE DI # \x12F3 ETHIOPIC SYLLABLE DAA # \x12F4 ETHIOPIC SYLLABLE DEE # \x12F5 ETHIOPIC SYLLABLE DE # \x12F6 ETHIOPIC SYLLABLE DO # \x12F7 ETHIOPIC SYLLABLE DWA # \x12F8 ETHIOPIC SYLLABLE DDA # \x12F9 ETHIOPIC SYLLABLE DDU # \x12FA ETHIOPIC SYLLABLE DDI # \x12FB ETHIOPIC SYLLABLE DDAA # \x12FC ETHIOPIC SYLLABLE DDEE # \x12FD ETHIOPIC SYLLABLE DDE # \x12FE ETHIOPIC SYLLABLE DDO # \x12FF ETHIOPIC SYLLABLE DDWA # \x1300 ETHIOPIC SYLLABLE JA # \x1301 ETHIOPIC SYLLABLE JU # \x1302 ETHIOPIC SYLLABLE JI # \x1303 ETHIOPIC SYLLABLE JAA # \x1304 ETHIOPIC SYLLABLE JEE # \x1305 ETHIOPIC SYLLABLE JE # \x1306 ETHIOPIC SYLLABLE JO # \x1307 ETHIOPIC SYLLABLE JWA # \x1308 ETHIOPIC SYLLABLE GA # \x1309 ETHIOPIC SYLLABLE GU # \x130A ETHIOPIC SYLLABLE GI # \x130B ETHIOPIC SYLLABLE GAA # \x130C ETHIOPIC SYLLABLE GEE # \x130D ETHIOPIC SYLLABLE GE # \x130E ETHIOPIC SYLLABLE GO # \x1310 ETHIOPIC SYLLABLE GWA # \x1312 ETHIOPIC SYLLABLE GWI # \x1313 ETHIOPIC SYLLABLE GWAA # \x1314 ETHIOPIC SYLLABLE GWEE # \x1315 ETHIOPIC SYLLABLE GWE # \x1318 ETHIOPIC SYLLABLE GGA # \x1319 ETHIOPIC SYLLABLE GGU # \x131A ETHIOPIC SYLLABLE GGI # \x131B ETHIOPIC SYLLABLE GGAA # \x131C ETHIOPIC SYLLABLE GGEE # \x131D ETHIOPIC SYLLABLE GGE # \x131E ETHIOPIC SYLLABLE GGO # \x1320 ETHIOPIC SYLLABLE THA # \x1321 ETHIOPIC SYLLABLE THU # \x1322 ETHIOPIC SYLLABLE THI # \x1323 ETHIOPIC SYLLABLE THAA # \x1324 ETHIOPIC SYLLABLE THEE # \x1325 ETHIOPIC SYLLABLE THE # \x1326 ETHIOPIC SYLLABLE THO # \x1327 ETHIOPIC SYLLABLE THWA # \x1328 ETHIOPIC SYLLABLE CHA # \x1329 ETHIOPIC SYLLABLE CHU # \x132A ETHIOPIC SYLLABLE CHI # \x132B ETHIOPIC SYLLABLE CHAA # \x132C ETHIOPIC SYLLABLE CHEE # \x132D ETHIOPIC SYLLABLE CHE # \x132E ETHIOPIC SYLLABLE CHO # \x132F ETHIOPIC SYLLABLE CHWA # \x1330 ETHIOPIC SYLLABLE PHA # \x1331 ETHIOPIC SYLLABLE PHU # \x1332 ETHIOPIC SYLLABLE PHI # \x1333 ETHIOPIC SYLLABLE PHAA # \x1334 ETHIOPIC SYLLABLE PHEE # \x1335 ETHIOPIC SYLLABLE PHE # \x1336 ETHIOPIC SYLLABLE PHO # \x1337 ETHIOPIC SYLLABLE PHWA # \x1338 ETHIOPIC SYLLABLE TSA # \x1339 ETHIOPIC SYLLABLE TSU # \x133A ETHIOPIC SYLLABLE TSI # \x133B ETHIOPIC SYLLABLE TSAA # \x133C ETHIOPIC SYLLABLE TSEE # \x133D ETHIOPIC SYLLABLE TSE # \x133E ETHIOPIC SYLLABLE TSO # \x133F ETHIOPIC SYLLABLE TSWA # \x1340 ETHIOPIC SYLLABLE TZA # \x1341 ETHIOPIC SYLLABLE TZU # \x1342 ETHIOPIC SYLLABLE TZI # \x1343 ETHIOPIC SYLLABLE TZAA # \x1344 ETHIOPIC SYLLABLE TZEE # \x1345 ETHIOPIC SYLLABLE TZE # \x1346 ETHIOPIC SYLLABLE TZO # \x1348 ETHIOPIC SYLLABLE FA # \x1349 ETHIOPIC SYLLABLE FU # \x134A ETHIOPIC SYLLABLE FI # \x134B ETHIOPIC SYLLABLE FAA # \x134C ETHIOPIC SYLLABLE FEE # \x134D ETHIOPIC SYLLABLE FE # \x134E ETHIOPIC SYLLABLE FO # \x134F ETHIOPIC SYLLABLE FWA # \x1350 ETHIOPIC SYLLABLE PA # \x1351 ETHIOPIC SYLLABLE PU # \x1352 ETHIOPIC SYLLABLE PI # \x1353 ETHIOPIC SYLLABLE PAA # \x1354 ETHIOPIC SYLLABLE PEE # \x1355 ETHIOPIC SYLLABLE PE # \x1356 ETHIOPIC SYLLABLE # \x1357 ETHIOPIC SYLLABLE PWA # \x1358 ETHIOPIC SYLLABLE RYA # \x1359 ETHIOPIC SYLLABLE MYA # \x135A ETHIOPIC SYLLABLE FYA # \x1361 ETHIOPIC WORDSPACE # \x1362 ETHIOPIC FULL STOP # \x1363 ETHIOPIC COMMA # \x1364 ETHIOPIC SEMICOLON # \x1365 ETHIOPIC COLON # \x1366 ETHIOPIC PREFACE COLON # \x1367 ETHIOPIC QUESTION MARK # \x1368 ETHIOPIC PARAGRAPH SEPARATOR # \x1369 ETHIOPIC DIGIT ONE Nd 1 1 # \x136A ETHIOPIC DIGIT TWO Nd 2 2 # \x136B ETHIOPIC DIGIT THREE Nd 3 3 # \x136C ETHIOPIC DIGIT FOUR Nd 4 4 # \x136D ETHIOPIC DIGIT FIVE Nd 5 5 # \x136E ETHIOPIC DIGIT SIX Nd 6 6 # \x136F ETHIOPIC DIGIT SEVEN Nd 7 7 # \x1370 ETHIOPIC DIGIT EIGHT Nd 8 8 # \x1371 ETHIOPIC DIGIT NINE Nd 9 9 # \x1372 ETHIOPIC NUMBER TEN No 10 # \x1373 ETHIOPIC NUMBER TWENTY No 20 # \x1374 ETHIOPIC NUMBER THIRTY No 30 # \x1375 ETHIOPIC NUMBER FORTY No 40 # \x1376 ETHIOPIC NUMBER FIFTY No 50 # \x1377 ETHIOPIC NUMBER SIXTY No 60 # \x1378 ETHIOPIC NUMBER SEVENTY No 70 # \x1379 ETHIOPIC NUMBER EIGHTY No 80 # \x137A ETHIOPIC NUMBER NINETY No 90 # \x137B ETHIOPIC NUMBER HUNDRED No 100 # \x137C ETHIOPIC NUMBER TEN THOUSAND No 10000 # \x13A0 CHEROKEE LETTER A # \x13A1 CHEROKEE LETTER E # \x13A2 CHEROKEE LETTER I # \x13A3 CHEROKEE LETTER O # \x13A4 CHEROKEE LETTER U # \x13A5 CHEROKEE LETTER V # \x13A6 CHEROKEE LETTER GA # \x13A7 CHEROKEE LETTER KA # \x13A8 CHEROKEE LETTER GE # \x13A9 CHEROKEE LETTER GI # \x13AA CHEROKEE LETTER GO # \x13AB CHEROKEE LETTER GU # \x13AC CHEROKEE LETTER GV # \x13AD CHEROKEE LETTER HA # \x13AE CHEROKEE LETTER HE # \x13AF CHEROKEE LETTER HI # \x13B0 CHEROKEE LETTER HO # \x13B1 CHEROKEE LETTER HU # \x13B2 CHEROKEE LETTER HV # \x13B3 CHEROKEE LETTER LA # \x13B4 CHEROKEE LETTER LE # \x13B5 CHEROKEE LETTER LI # \x13B6 CHEROKEE LETTER Lo # \x13B7 CHEROKEE LETTER o # \x13B8 CHEROKEE LETTER LV # \x13B9 CHEROKEE LETTER MA # \x13BA CHEROKEE LETTER ME # \x13BB CHEROKEE LETTER MI # \x13BC CHEROKEE LETTER MO # \x13BD CHEROKEE LETTER MU # \x13BE CHEROKEE LETTER NA # \x13BF CHEROKEE LETTER HNA # \x13C0 CHEROKEE LETTER NAH # \x13C1 CHEROKEE LETTER NE # \x13C2 CHEROKEE LETTER NI # \x13C3 CHEROKEE LETTER NO # \x13C4 CHEROKEE LETTER NU # \x13C5 CHEROKEE LETTER NV # \x13C6 CHEROKEE LETTER QUA # \x13C7 CHEROKEE LETTER QUE # \x13C8 CHEROKEE LETTER QUI # \x13C9 CHEROKEE LETTER QUO # \x13CA CHEROKEE LETTER QUU # \x13CB CHEROKEE LETTER QUV # \x13CC CHEROKEE LETTER SA # \x13CD CHEROKEE LETTER S # \x13CE CHEROKEE LETTER SE # \x13CF CHEROKEE LETTER SI # \x13D0 CHEROKEE LETTER # \x13D1 CHEROKEE LETTER SU # \x13D2 CHEROKEE LETTER SV # \x13D3 CHEROKEE LETTER DA # \x13D4 CHEROKEE LETTER TA # \x13D5 CHEROKEE LETTER DE # \x13D6 CHEROKEE LETTER TE # \x13D7 CHEROKEE LETTER DI # \x13D8 CHEROKEE LETTER TI # \x13D9 CHEROKEE LETTER DO # \x13DA CHEROKEE LETTER DU # \x13DB CHEROKEE LETTER DV # \x13DC CHEROKEE LETTER DLA # \x13DD CHEROKEE LETTER TLA # \x13DE CHEROKEE LETTER TLE # \x13DF CHEROKEE LETTER TLI # \x13E0 CHEROKEE LETTER TLO # \x13E1 CHEROKEE LETTER To # \x13E2 CHEROKEE LETTER TLV # \x13E3 CHEROKEE LETTER TSA # \x13E4 CHEROKEE LETTER TSE # \x13E5 CHEROKEE LETTER TSI # \x13E6 CHEROKEE LETTER TSO # \x13E7 CHEROKEE LETTER TSU # \x13E8 CHEROKEE LETTER TSV # \x13E9 CHEROKEE LETTER WA # \x13EA CHEROKEE LETTER WE # \x13EB CHEROKEE LETTER WI # \x13EC CHEROKEE LETTER WO # \x13ED CHEROKEE LETTER WU # \x13EE CHEROKEE LETTER WV # \x13EF CHEROKEE LETTER YA # \x13F0 CHEROKEE LETTER YE # \x13F1 CHEROKEE LETTER YI # \x13F2 CHEROKEE LETTER YO # \x13F3 CHEROKEE LETTER YU # \x13F4 CHEROKEE LETTER YV # \x1401 CANADIAN SYLLABICS E # \x1402 CANADIAN SYLLABICS AAI # \x1403 CANADIAN SYLLABICS I # \x1404 CANADIAN SYLLABICS II # \x1405 CANADIAN SYLLABICS O # \x1406 CANADIAN SYLLABICS OO # \x1407 CANADIAN SYLLABICS Y-CREE OO # \x1408 CANADIAN SYLLABICS CARRIER EE # \x1409 CANADIAN SYLLABICS CARRIER I # \x140A CANADIAN SYLLABICS A # \x140B CANADIAN SYLLABICS AA # \x140C CANADIAN SYLLABICS WE # \x140D CANADIAN SYLLABICS WEST-CREE WE # \x140E CANADIAN SYLLABICS WI # \x140F CANADIAN SYLLABICS WEST-CREE WI # \x1410 CANADIAN SYLLABICS WII # \x1411 CANADIAN SYLLABICS WEST-CREE WII # \x1412 CANADIAN SYLLABICS WO # \x1413 CANADIAN SYLLABICS WEST-CREE WO # \x1414 CANADIAN SYLLABICS WOO # \x1415 CANADIAN SYLLABICS WEST-CREE WOO # \x1416 CANADIAN SYLLABICS NASKAPI WOO # \x1417 CANADIAN SYLLABICS WA # \x1418 CANADIAN SYLLABICS WEST-CREE WA # \x1419 CANADIAN SYLLABICS WAA # \x141A CANADIAN SYLLABICS WEST-CREE WAA # \x141B CANADIAN SYLLABICS NASKAPI WAA # \x141C CANADIAN SYLLABICS AI # \x141D CANADIAN SYLLABICS Y-CREE W # \x141E CANADIAN SYLLABICS GLOTTAL STOP # \x141F CANADIAN SYLLABICS FINAL ACUTE # \x1420 CANADIAN SYLLABICS FINAL GRAVE # \x1421 CANADIAN SYLLABICS FINAL BOTTOM HALF RING # \x1422 CANADIAN SYLLABICS FINAL TOP HALF RING # \x1423 CANADIAN SYLLABICS FINAL RIGHT HALF RING # \x1424 CANADIAN SYLLABICS FINAL RING # \x1425 CANADIAN SYLLABICS FINAL DOUBLE ACUTE # \x1426 CANADIAN SYLLABICS FINAL DOUBLE SHORT VERTICAL STROKES # \x1427 CANADIAN SYLLABICS FINAL MIDDLE DOT # \x1428 CANADIAN SYLLABICS FINAL SHORT HORIZONTAL STROKE # \x1429 CANADIAN SYLLABICS FINAL PLUS # \x142A CANADIAN SYLLABICS FINAL DOWN TACK # \x142B CANADIAN SYLLABICS EN # \x142C CANADIAN SYLLABICS IN # \x142D CANADIAN SYLLABICS # \x142E CANADIAN SYLLABICS AN # \x142F CANADIAN SYLLABICS PE # \x1430 CANADIAN SYLLABICS PAAI # \x1431 CANADIAN SYLLABICS PI # \x1432 CANADIAN SYLLABICS PII # \x1433 CANADIAN SYLLABICS # \x1434 CANADIAN SYLLABICS POO # \x1435 CANADIAN SYLLABICS Y-CREE POO # \x1436 CANADIAN SYLLABICS CARRIER HEE # \x1437 CANADIAN SYLLABICS CARRIER HI # \x1438 CANADIAN SYLLABICS PA # \x1439 CANADIAN SYLLABICS PAA # \x143A CANADIAN SYLLABICS PWE # \x143B CANADIAN SYLLABICS WEST-CREE PWE # \x143C CANADIAN SYLLABICS PWI # \x143D CANADIAN SYLLABICS WEST-CREE PWI # \x143E CANADIAN SYLLABICS PWII # \x143F CANADIAN SYLLABICS WEST-CREE PWII # \x1440 CANADIAN SYLLABICS PWO # \x1441 CANADIAN SYLLABICS WEST-CREE PWO # \x1442 CANADIAN SYLLABICS PWOO # \x1443 CANADIAN SYLLABICS WEST-CREE PWOO # \x1444 CANADIAN SYLLABICS PWA # \x1445 CANADIAN SYLLABICS WEST-CREE PWA # \x1446 CANADIAN SYLLABICS PWAA # \x1447 CANADIAN SYLLABICS WEST-CREE PWAA # \x1448 CANADIAN SYLLABICS Y-CREE PWAA # \x1449 CANADIAN SYLLABICS P # \x144A CANADIAN SYLLABICS WEST-CREE P # \x144B CANADIAN SYLLABICS CARRIER H # \x144C CANADIAN SYLLABICS TE # \x144D CANADIAN SYLLABICS TAAI # \x144E CANADIAN SYLLABICS TI # \x144F CANADIAN SYLLABICS TII # \x1450 CANADIAN SYLLABICS TO # \x1451 CANADIAN SYLLABICS TOO # \x1452 CANADIAN SYLLABICS Y-CREE TOO # \x1453 CANADIAN SYLLABICS CARRIER DEE # \x1454 CANADIAN SYLLABICS CARRIER DI # \x1455 CANADIAN SYLLABICS TA # \x1456 CANADIAN SYLLABICS TAA # \x1457 CANADIAN SYLLABICS TWE # \x1458 CANADIAN SYLLABICS WEST-CREE TWE # \x1459 CANADIAN SYLLABICS TWI # \x145A CANADIAN SYLLABICS WEST-CREE TWI # \x145B CANADIAN SYLLABICS TWII # \x145C CANADIAN SYLLABICS WEST-CREE TWII # \x145D CANADIAN SYLLABICS TWO # \x145E CANADIAN SYLLABICS WEST-CREE TWO # \x145F CANADIAN SYLLABICS TWOO # \x1460 CANADIAN SYLLABICS WEST-CREE TWOO # \x1461 CANADIAN SYLLABICS TWA # \x1462 CANADIAN SYLLABICS WEST-CREE TWA # \x1463 CANADIAN SYLLABICS TWAA # \x1464 CANADIAN SYLLABICS WEST-CREE TWAA # \x1465 CANADIAN SYLLABICS NASKAPI TWAA # \x1466 CANADIAN SYLLABICS T # \x1467 CANADIAN SYLLABICS TTE # \x1468 CANADIAN SYLLABICS TTI # \x1469 CANADIAN SYLLABICS TTO # \x146A CANADIAN SYLLABICS TTA # \x146B CANADIAN SYLLABICS KE # \x146C CANADIAN SYLLABICS KAAI # \x146D CANADIAN SYLLABICS KI # \x146E CANADIAN SYLLABICS KII # \x146F CANADIAN SYLLABICS KO # \x1470 CANADIAN SYLLABICS KOO # \x1471 CANADIAN SYLLABICS Y-CREE KOO # \x1472 CANADIAN SYLLABICS KA # \x1473 CANADIAN SYLLABICS KAA # \x1474 CANADIAN SYLLABICS KWE # \x1475 CANADIAN SYLLABICS WEST-CREE KWE # \x1476 CANADIAN SYLLABICS KWI # \x1477 CANADIAN SYLLABICS WEST-CREE KWI # \x1478 CANADIAN SYLLABICS KWII # \x1479 CANADIAN SYLLABICS WEST-CREE KWII # \x147A CANADIAN SYLLABICS KWO # \x147B CANADIAN SYLLABICS WEST-CREE KWO # \x147C CANADIAN SYLLABICS KWOO # \x147D CANADIAN SYLLABICS WEST-CREE KWOO # \x147E CANADIAN SYLLABICS KWA # \x147F CANADIAN SYLLABICS WEST-CREE KWA # \x1480 CANADIAN SYLLABICS KWAA # \x1481 CANADIAN SYLLABICS WEST-CREE KWAA # \x1482 CANADIAN SYLLABICS NASKAPI KWAA # \x1483 CANADIAN SYLLABICS K # \x1484 CANADIAN SYLLABICS KW # \x1485 CANADIAN SYLLABICS SOUTH-SLAVEY KEH # \x1486 CANADIAN SYLLABICS SOUTH-SLAVEY KIH # \x1487 CANADIAN SYLLABICS SOUTH-SLAVEY KOH # \x1488 CANADIAN SYLLABICS SOUTH-SLAVEY KAH # \x1489 CANADIAN SYLLABICS CE # \x148A CANADIAN SYLLABICS CAAI # \x148B CANADIAN SYLLABICS CI # \x148C CANADIAN SYLLABICS CII # \x148D CANADIAN SYLLABICS CO # \x148E CANADIAN SYLLABICS COO # \x148F CANADIAN SYLLABICS Y-CREE COO # \x1490 CANADIAN SYLLABICS CA # \x1491 CANADIAN SYLLABICS CAA # \x1492 CANADIAN SYLLABICS CWE # \x1493 CANADIAN SYLLABICS WEST-CREE CWE # \x1494 CANADIAN SYLLABICS CWI # \x1495 CANADIAN SYLLABICS WEST-CREE CWI # \x1496 CANADIAN SYLLABICS CWII # \x1497 CANADIAN SYLLABICS WEST-CREE CWII # \x1498 CANADIAN SYLLABICS CWO # \x1499 CANADIAN SYLLABICS WEST-CREE CWO # \x149A CANADIAN SYLLABICS CWOO # \x149B CANADIAN SYLLABICS WEST-CREE CWOO # \x149C CANADIAN SYLLABICS CWA # \x149D CANADIAN SYLLABICS WEST-CREE CWA # \x149E CANADIAN SYLLABICS CWAA # \x149F CANADIAN SYLLABICS WEST-CREE CWAA # \x14A0 CANADIAN SYLLABICS NASKAPI CWAA # \x14A1 CANADIAN SYLLABICS C # \x14A2 CANADIAN SYLLABICS SAYISI TH # \x14A3 CANADIAN SYLLABICS ME # \x14A4 CANADIAN SYLLABICS MAAI # \x14A5 CANADIAN SYLLABICS MI # \x14A6 CANADIAN SYLLABICS MII # \x14A7 CANADIAN SYLLABICS MO # \x14A8 CANADIAN SYLLABICS MOO # \x14A9 CANADIAN SYLLABICS Y-CREE MOO # \x14AA CANADIAN SYLLABICS MA # \x14AB CANADIAN SYLLABICS MAA # \x14AC CANADIAN SYLLABICS MWE # \x14AD CANADIAN SYLLABICS WEST-CREE MWE # \x14AE CANADIAN SYLLABICS MWI # \x14AF CANADIAN SYLLABICS WEST-CREE MWI # \x14B0 CANADIAN SYLLABICS MWII # \x14B1 CANADIAN SYLLABICS WEST-CREE MWII # \x14B2 CANADIAN SYLLABICS MWO # \x14B3 CANADIAN SYLLABICS WEST-CREE MWO # \x14B4 CANADIAN SYLLABICS MWOO # \x14B5 CANADIAN SYLLABICS WEST-CREE MWOO # \x14B6 CANADIAN SYLLABICS MWA # \x14B7 CANADIAN SYLLABICS WEST-CREE MWA # \x14B8 CANADIAN SYLLABICS MWAA # \x14B9 CANADIAN SYLLABICS WEST-CREE MWAA # \x14BA CANADIAN SYLLABICS NASKAPI MWAA # \x14BB CANADIAN SYLLABICS M # \x14BC CANADIAN SYLLABICS WEST-CREE M # \x14BD CANADIAN SYLLABICS MH # \x14BE CANADIAN SYLLABICS ATHAPASCAN M # \x14BF CANADIAN SYLLABICS SAYISI M # \x14C0 CANADIAN SYLLABICS NE # \x14C1 CANADIAN SYLLABICS NAAI # \x14C2 CANADIAN SYLLABICS NI # \x14C3 CANADIAN SYLLABICS NII # \x14C4 CANADIAN SYLLABICS NO # \x14C5 CANADIAN SYLLABICS NOO # \x14C6 CANADIAN SYLLABICS Y-CREE NOO # \x14C7 CANADIAN SYLLABICS NA # \x14C8 CANADIAN SYLLABICS NAA # \x14C9 CANADIAN SYLLABICS NWE # \x14CA CANADIAN SYLLABICS WEST-CREE NWE # \x14CB CANADIAN SYLLABICS NWA # \x14CC CANADIAN SYLLABICS WEST-CREE NWA # \x14CD CANADIAN SYLLABICS NWAA # \x14CE CANADIAN SYLLABICS WEST-CREE NWAA # \x14CF CANADIAN SYLLABICS NASKAPI NWAA # \x14D0 CANADIAN SYLLABICS # \x14D1 CANADIAN SYLLABICS CARRIER NG # \x14D2 CANADIAN SYLLABICS NH # \x14D3 CANADIAN SYLLABICS LE # \x14D4 CANADIAN SYLLABICS LAAI # \x14D5 CANADIAN SYLLABICS LI # \x14D6 CANADIAN SYLLABICS LII # \x14D7 CANADIAN SYLLABICS Lo # \x14D8 CANADIAN SYLLABICS LOO # \x14D9 CANADIAN SYLLABICS Y-CREE LOO # \x14DA CANADIAN SYLLABICS LA # \x14DB CANADIAN SYLLABICS LAA # \x14DC CANADIAN SYLLABICS LWE # \x14DD CANADIAN SYLLABICS WEST-CREE LWE # \x14DE CANADIAN SYLLABICS LWI # \x14DF CANADIAN SYLLABICS WEST-CREE LWI # \x14E0 CANADIAN SYLLABICS LWII # \x14E1 CANADIAN SYLLABICS WEST-CREE LWII # \x14E2 CANADIAN SYLLABICS LWO # \x14E3 CANADIAN SYLLABICS WEST-CREE LWO # \x14E4 CANADIAN SYLLABICS LWOO # \x14E5 CANADIAN SYLLABICS WEST-CREE LWOO # \x14E6 CANADIAN SYLLABICS LWA # \x14E7 CANADIAN SYLLABICS WEST-CREE LWA # \x14E8 CANADIAN SYLLABICS LWAA # \x14E9 CANADIAN SYLLABICS WEST-CREE LWAA # \x14EA CANADIAN SYLLABICS # \x14EB CANADIAN SYLLABICS WEST-CREE # \x14EC CANADIAN SYLLABICS MEDIAL # \x14ED CANADIAN SYLLABICS SE # \x14EE CANADIAN SYLLABICS SAAI # \x14EF CANADIAN SYLLABICS SI # \x14F0 CANADIAN SYLLABICS SII # \x14F1 CANADIAN SYLLABICS # \x14F2 CANADIAN SYLLABICS SOO # \x14F3 CANADIAN SYLLABICS Y-CREE SOO # \x14F4 CANADIAN SYLLABICS SA # \x14F5 CANADIAN SYLLABICS SAA # \x14F6 CANADIAN SYLLABICS SWE # \x14F7 CANADIAN SYLLABICS WEST-CREE SWE # \x14F8 CANADIAN SYLLABICS SWI # \x14F9 CANADIAN SYLLABICS WEST-CREE SWI # \x14FA CANADIAN SYLLABICS SWII # \x14FB CANADIAN SYLLABICS WEST-CREE SWII # \x14FC CANADIAN SYLLABICS SWO # \x14FD CANADIAN SYLLABICS WEST-CREE SWO # \x14FE CANADIAN SYLLABICS SWOO # \x14FF CANADIAN SYLLABICS WEST-CREE SWOO # \x1500 CANADIAN SYLLABICS SWA # \x1501 CANADIAN SYLLABICS WEST-CREE SWA # \x1502 CANADIAN SYLLABICS SWAA # \x1503 CANADIAN SYLLABICS WEST-CREE SWAA # \x1504 CANADIAN SYLLABICS NASKAPI SWAA # \x1505 CANADIAN SYLLABICS S # \x1506 CANADIAN SYLLABICS ATHAPASCAN S # \x1507 CANADIAN SYLLABICS SW # \x1508 CANADIAN SYLLABICS BLACKFOOT S # \x1509 CANADIAN SYLLABICS MOOSE-CREE SK # \x150A CANADIAN SYLLABICS NASKAPI SKW # \x150B CANADIAN SYLLABICS NASKAPI S-W # \x150C CANADIAN SYLLABICS NASKAPI SPWA # \x150D CANADIAN SYLLABICS NASKAPI STWA # \x150E CANADIAN SYLLABICS NASKAPI SKWA # \x150F CANADIAN SYLLABICS NASKAPI SCWA # \x1510 CANADIAN SYLLABICS SHE # \x1511 CANADIAN SYLLABICS SHI # \x1512 CANADIAN SYLLABICS SHII # \x1513 CANADIAN SYLLABICS SHO # \x1514 CANADIAN SYLLABICS SHOO # \x1515 CANADIAN SYLLABICS SHA # \x1516 CANADIAN SYLLABICS SHAA # \x1517 CANADIAN SYLLABICS SHWE # \x1518 CANADIAN SYLLABICS WEST-CREE SHWE # \x1519 CANADIAN SYLLABICS SHWI # \x151A CANADIAN SYLLABICS WEST-CREE SHWI # \x151B CANADIAN SYLLABICS SHWII # \x151C CANADIAN SYLLABICS WEST-CREE SHWII # \x151D CANADIAN SYLLABICS SHWO # \x151E CANADIAN SYLLABICS WEST-CREE SHWO # \x151F CANADIAN SYLLABICS SHWOO # \x1520 CANADIAN SYLLABICS WEST-CREE SHWOO # \x1521 CANADIAN SYLLABICS SHWA # \x1522 CANADIAN SYLLABICS WEST-CREE SHWA # \x1523 CANADIAN SYLLABICS SHWAA # \x1524 CANADIAN SYLLABICS WEST-CREE SHWAA # \x1525 CANADIAN SYLLABICS SH # \x1526 CANADIAN SYLLABICS YE # \x1527 CANADIAN SYLLABICS YAAI # \x1528 CANADIAN SYLLABICS YI # \x1529 CANADIAN SYLLABICS YII # \x152A CANADIAN SYLLABICS YO # \x152B CANADIAN SYLLABICS YOO # \x152C CANADIAN SYLLABICS Y-CREE YOO # \x152D CANADIAN SYLLABICS YA # \x152E CANADIAN SYLLABICS YAA # \x152F CANADIAN SYLLABICS YWE # \x1530 CANADIAN SYLLABICS WEST-CREE YWE # \x1531 CANADIAN SYLLABICS YWI # \x1532 CANADIAN SYLLABICS WEST-CREE YWI # \x1533 CANADIAN SYLLABICS YWII # \x1534 CANADIAN SYLLABICS WEST-CREE YWII # \x1535 CANADIAN SYLLABICS YWO # \x1536 CANADIAN SYLLABICS WEST-CREE YWO # \x1537 CANADIAN SYLLABICS YWOO # \x1538 CANADIAN SYLLABICS WEST-CREE YWOO # \x1539 CANADIAN SYLLABICS YWA # \x153A CANADIAN SYLLABICS WEST-CREE YWA # \x153B CANADIAN SYLLABICS YWAA # \x153C CANADIAN SYLLABICS WEST-CREE YWAA # \x153D CANADIAN SYLLABICS NASKAWAA # \x153E CANADIAN SYLLABICS Y # \x153F CANADIAN SYLLABICS BIBLE-CREE Y # \x1540 CANADIAN SYLLABICS WEST-CREE Y # \x1541 CANADIAN SYLLABICS SAYISI YI # \x1542 CANADIAN SYLLABICS RE # \x1543 CANADIAN SYLLABICS R-CREE RE # \x1544 CANADIAN SYLLABICS WEST-CREE LE # \x1545 CANADIAN SYLLABICS RAAI # \x1546 CANADIAN SYLLABICS RI # \x1547 CANADIAN SYLLABICS RII # \x1548 CANADIAN SYLLABICS RO # \x1549 CANADIAN SYLLABICS ROO # \x154A CANADIAN SYLLABICS WEST-CREE Lo # \x154B CANADIAN SYLLABICS RA # \x154C CANADIAN SYLLABICS RAA # \x154D CANADIAN SYLLABICS WEST-CREE LA # \x154E CANADIAN SYLLABICS RWAA # \x154F CANADIAN SYLLABICS WEST-CREE RWAA # \x1550 CANADIAN SYLLABICS # \x1551 CANADIAN SYLLABICS WEST-CREE # \x1552 CANADIAN SYLLABICS MEDIAL # \x1553 CANADIAN SYLLABICS FE # \x1554 CANADIAN SYLLABICS FAAI # \x1555 CANADIAN SYLLABICS FI # \x1556 CANADIAN SYLLABICS FII # \x1557 CANADIAN SYLLABICS FO # \x1558 CANADIAN SYLLABICS FOO # \x1559 CANADIAN SYLLABICS FA # \x155A CANADIAN SYLLABICS FAA # \x155B CANADIAN SYLLABICS FWAA # \x155C CANADIAN SYLLABICS WEST-CREE FWAA # \x155D CANADIAN SYLLABICS F # \x155E CANADIAN SYLLABICS THE # \x155F CANADIAN SYLLABICS N-CREE THE # \x1560 CANADIAN SYLLABICS THI # \x1561 CANADIAN SYLLABICS N-CREE THI # \x1562 CANADIAN SYLLABICS THII # \x1563 CANADIAN SYLLABICS N-CREE THII # \x1564 CANADIAN SYLLABICS THO # \x1565 CANADIAN SYLLABICS THOO # \x1566 CANADIAN SYLLABICS THA # \x1567 CANADIAN SYLLABICS THAA # \x1568 CANADIAN SYLLABICS THWAA # \x1569 CANADIAN SYLLABICS WEST-CREE THWAA # \x156A CANADIAN SYLLABICS TH # \x156B CANADIAN SYLLABICS TTHE # \x156C CANADIAN SYLLABICS TTHI # \x156D CANADIAN SYLLABICS TTHO # \x156E CANADIAN SYLLABICS TTHA # \x156F CANADIAN SYLLABICS TTH # \x1570 CANADIAN SYLLABICS TYE # \x1571 CANADIAN SYLLABICS TYI # \x1572 CANADIAN SYLLABICS TYO # \x1573 CANADIAN SYLLABICS TYA # \x1574 CANADIAN SYLLABICS NUNAVIK HE # \x1575 CANADIAN SYLLABICS NUNAVIK HI # \x1576 CANADIAN SYLLABICS NUNAVIK HII # \x1577 CANADIAN SYLLABICS NUNAVIK HO # \x1578 CANADIAN SYLLABICS NUNAVIK HOO # \x1579 CANADIAN SYLLABICS NUNAVIK HA # \x157A CANADIAN SYLLABICS NUNAVIK HAA # \x157B CANADIAN SYLLABICS NUNAVIK H # \x157C CANADIAN SYLLABICS NUNAVUT H # \x157D CANADIAN SYLLABICS HK # \x157E CANADIAN SYLLABICS QAAI # \x157F CANADIAN SYLLABICS QI # \x1580 CANADIAN SYLLABICS QII # \x1581 CANADIAN SYLLABICS QO # \x1582 CANADIAN SYLLABICS QOO # \x1583 CANADIAN SYLLABICS QA # \x1584 CANADIAN SYLLABICS QAA # \x1585 CANADIAN SYLLABICS Q # \x1586 CANADIAN SYLLABICS TLHE # \x1587 CANADIAN SYLLABICS TLHI # \x1588 CANADIAN SYLLABICS TLHO # \x1589 CANADIAN SYLLABICS TLHA # \x158A CANADIAN SYLLABICS WEST-CREE RE # \x158B CANADIAN SYLLABICS WEST-CREE RI # \x158C CANADIAN SYLLABICS WEST-CREE RO # \x158D CANADIAN SYLLABICS WEST-CREE RA # \x158E CANADIAN SYLLABICS NGAAI # \x158F CANADIAN SYLLABICS NGI # \x1590 CANADIAN SYLLABICS NGII # \x1591 CANADIAN SYLLABICS NGO # \x1592 CANADIAN SYLLABICS NGOO # \x1593 CANADIAN SYLLABICS NGA # \x1594 CANADIAN SYLLABICS NGAA # \x1595 CANADIAN SYLLABICS NG # \x1596 CANADIAN SYLLABICS NNG # \x1597 CANADIAN SYLLABICS SAYISI SHE # \x1598 CANADIAN SYLLABICS SAYISI SHI # \x1599 CANADIAN SYLLABICS SAYISI SHO # \x159A CANADIAN SYLLABICS SAYISI SHA # \x159B CANADIAN SYLLABICS WOODS-CREE THE # \x159C CANADIAN SYLLABICS WOODS-CREE THI # \x159D CANADIAN SYLLABICS WOODS-CREE THO # \x159E CANADIAN SYLLABICS WOODS-CREE THA # \x159F CANADIAN SYLLABICS WOODS-CREE TH # \x15A0 CANADIAN SYLLABICS LHI # \x15A1 CANADIAN SYLLABICS LHII # \x15A2 CANADIAN SYLLABICS LHO # \x15A3 CANADIAN SYLLABICS LHOO # \x15A4 CANADIAN SYLLABICS LHA # \x15A5 CANADIAN SYLLABICS LHAA # \x15A6 CANADIAN SYLLABICS LH # \x15A7 CANADIAN SYLLABICS TH-CREE THE # \x15A8 CANADIAN SYLLABICS TH-CREE THI # \x15A9 CANADIAN SYLLABICS TH-CREE THII # \x15AA CANADIAN SYLLABICS TH-CREE THO # \x15AB CANADIAN SYLLABICS TH-CREE THOO # \x15AC CANADIAN SYLLABICS TH-CREE THA # \x15AD CANADIAN SYLLABICS TH-CREE THAA # \x15AE CANADIAN SYLLABICS TH-CREE TH # \x15AF CANADIAN SYLLABICS AIVILIK B # \x15B0 CANADIAN SYLLABICS BLACKFOOT E # \x15B1 CANADIAN SYLLABICS BLACKFOOT I # \x15B2 CANADIAN SYLLABICS BLACKFOOT O # \x15B3 CANADIAN SYLLABICS BLACKFOOT A # \x15B4 CANADIAN SYLLABICS BLACKFOOT WE # \x15B5 CANADIAN SYLLABICS BLACKFOOT WI # \x15B6 CANADIAN SYLLABICS BLACKFOOT WO # \x15B7 CANADIAN SYLLABICS BLACKFOOT WA # \x15B8 CANADIAN SYLLABICS BLACKFOOT NE # \x15B9 CANADIAN SYLLABICS BLACKFOOT NI # \x15BA CANADIAN SYLLABICS BLACKFOOT NO # \x15BB CANADIAN SYLLABICS BLACKFOOT NA # \x15BC CANADIAN SYLLABICS BLACKFOOT KE # \x15BD CANADIAN SYLLABICS BLACKFOOT KI # \x15BE CANADIAN SYLLABICS BLACKFOOT KO # \x15BF CANADIAN SYLLABICS BLACKFOOT KA # \x15C0 CANADIAN SYLLABICS SAYISI HE # \x15C1 CANADIAN SYLLABICS SAYISI HI # \x15C2 CANADIAN SYLLABICS SAYISI HO # \x15C3 CANADIAN SYLLABICS SAYISI HA # \x15C4 CANADIAN SYLLABICS CARRIER GHU # \x15C5 CANADIAN SYLLABICS CARRIER GHO # \x15C6 CANADIAN SYLLABICS CARRIER GHE # \x15C7 CANADIAN SYLLABICS CARRIER GHEE # \x15C8 CANADIAN SYLLABICS CARRIER GHI # \x15C9 CANADIAN SYLLABICS CARRIER GHA # \x15CA CANADIAN SYLLABICS CARRIER RU # \x15CB CANADIAN SYLLABICS CARRIER RO # \x15CC CANADIAN SYLLABICS CARRIER RE # \x15CD CANADIAN SYLLABICS CARRIER REE # \x15CE CANADIAN SYLLABICS CARRIER RI # \x15CF CANADIAN SYLLABICS CARRIER RA # \x15D0 CANADIAN SYLLABICS CARRIER WU # \x15D1 CANADIAN SYLLABICS CARRIER WO # \x15D2 CANADIAN SYLLABICS CARRIER WE # \x15D3 CANADIAN SYLLABICS CARRIER WEE # \x15D4 CANADIAN SYLLABICS CARRIER WI # \x15D5 CANADIAN SYLLABICS CARRIER WA # \x15D6 CANADIAN SYLLABICS CARRIER HWU # \x15D7 CANADIAN SYLLABICS CARRIER HWO # \x15D8 CANADIAN SYLLABICS CARRIER HWE # \x15D9 CANADIAN SYLLABICS CARRIER HWEE # \x15DA CANADIAN SYLLABICS CARRIER HWI # \x15DB CANADIAN SYLLABICS CARRIER HWA # \x15DC CANADIAN SYLLABICS CARRIER THU # \x15DD CANADIAN SYLLABICS CARRIER THO # \x15DE CANADIAN SYLLABICS CARRIER THE # \x15DF CANADIAN SYLLABICS CARRIER THEE # \x15E0 CANADIAN SYLLABICS CARRIER THI # \x15E1 CANADIAN SYLLABICS CARRIER THA # \x15E2 CANADIAN SYLLABICS CARRIER TTU # \x15E3 CANADIAN SYLLABICS CARRIER TTO # \x15E4 CANADIAN SYLLABICS CARRIER TTE # \x15E5 CANADIAN SYLLABICS CARRIER TTEE # \x15E6 CANADIAN SYLLABICS CARRIER TTI # \x15E7 CANADIAN SYLLABICS CARRIER TTA # \x15E8 CANADIAN SYLLABICS CARRIER PU # \x15E9 CANADIAN SYLLABICS CARRIER # \x15EA CANADIAN SYLLABICS CARRIER PE # \x15EB CANADIAN SYLLABICS CARRIER PEE # \x15EC CANADIAN SYLLABICS CARRIER PI # \x15ED CANADIAN SYLLABICS CARRIER PA # \x15EE CANADIAN SYLLABICS CARRIER P # \x15EF CANADIAN SYLLABICS CARRIER GU # \x15F0 CANADIAN SYLLABICS CARRIER GO # \x15F1 CANADIAN SYLLABICS CARRIER GE # \x15F2 CANADIAN SYLLABICS CARRIER GEE # \x15F3 CANADIAN SYLLABICS CARRIER GI # \x15F4 CANADIAN SYLLABICS CARRIER GA # \x15F5 CANADIAN SYLLABICS CARRIER KHU # \x15F6 CANADIAN SYLLABICS CARRIER KHO # \x15F7 CANADIAN SYLLABICS CARRIER KHE # \x15F8 CANADIAN SYLLABICS CARRIER KHEE # \x15F9 CANADIAN SYLLABICS CARRIER KHI # \x15FA CANADIAN SYLLABICS CARRIER KHA # \x15FB CANADIAN SYLLABICS CARRIER KKU # \x15FC CANADIAN SYLLABICS CARRIER KKO # \x15FD CANADIAN SYLLABICS CARRIER KKE # \x15FE CANADIAN SYLLABICS CARRIER KKEE # \x15FF CANADIAN SYLLABICS CARRIER KKI # \x1600 CANADIAN SYLLABICS CARRIER KKA # \x1601 CANADIAN SYLLABICS CARRIER KK # \x1602 CANADIAN SYLLABICS CARRIER NU # \x1603 CANADIAN SYLLABICS CARRIER NO # \x1604 CANADIAN SYLLABICS CARRIER NE # \x1605 CANADIAN SYLLABICS CARRIER NEE # \x1606 CANADIAN SYLLABICS CARRIER NI # \x1607 CANADIAN SYLLABICS CARRIER NA # \x1608 CANADIAN SYLLABICS CARRIER MU # \x1609 CANADIAN SYLLABICS CARRIER MO # \x160A CANADIAN SYLLABICS CARRIER ME # \x160B CANADIAN SYLLABICS CARRIER MEE # \x160C CANADIAN SYLLABICS CARRIER MI # \x160D CANADIAN SYLLABICS CARRIER MA # \x160E CANADIAN SYLLABICS CARRIER YU # \x160F CANADIAN SYLLABICS CARRIER YO # \x1610 CANADIAN SYLLABICS CARRIER YE # \x1611 CANADIAN SYLLABICS CARRIER YEE # \x1612 CANADIAN SYLLABICS CARRIER YI # \x1613 CANADIAN SYLLABICS CARRIER YA # \x1614 CANADIAN SYLLABICS CARRIER JU # \x1615 CANADIAN SYLLABICS SAYISI JU # \x1616 CANADIAN SYLLABICS CARRIER JO # \x1617 CANADIAN SYLLABICS CARRIER JE # \x1618 CANADIAN SYLLABICS CARRIER JEE # \x1619 CANADIAN SYLLABICS CARRIER JI # \x161A CANADIAN SYLLABICS SAYISI JI # \x161B CANADIAN SYLLABICS CARRIER JA # \x161C CANADIAN SYLLABICS CARRIER JJU # \x161D CANADIAN SYLLABICS CARRIER JJO # \x161E CANADIAN SYLLABICS CARRIER JJE # \x161F CANADIAN SYLLABICS CARRIER JJEE # \x1620 CANADIAN SYLLABICS CARRIER JJI # \x1621 CANADIAN SYLLABICS CARRIER JJA # \x1622 CANADIAN SYLLABICS CARRIER o # \x1623 CANADIAN SYLLABICS CARRIER Lo # \x1624 CANADIAN SYLLABICS CARRIER LE # \x1625 CANADIAN SYLLABICS CARRIER LEE # \x1626 CANADIAN SYLLABICS CARRIER LI # \x1627 CANADIAN SYLLABICS CARRIER LA # \x1628 CANADIAN SYLLABICS CARRIER Do # \x1629 CANADIAN SYLLABICS CARRIER DLO # \x162A CANADIAN SYLLABICS CARRIER DLE # \x162B CANADIAN SYLLABICS CARRIER DLEE # \x162C CANADIAN SYLLABICS CARRIER DLI # \x162D CANADIAN SYLLABICS CARRIER DLA # \x162E CANADIAN SYLLABICS CARRIER LHU # \x162F CANADIAN SYLLABICS CARRIER LHO # \x1630 CANADIAN SYLLABICS CARRIER LHE # \x1631 CANADIAN SYLLABICS CARRIER LHEE # \x1632 CANADIAN SYLLABICS CARRIER LHI # \x1633 CANADIAN SYLLABICS CARRIER LHA # \x1634 CANADIAN SYLLABICS CARRIER TLHU # \x1635 CANADIAN SYLLABICS CARRIER TLHO # \x1636 CANADIAN SYLLABICS CARRIER TLHE # \x1637 CANADIAN SYLLABICS CARRIER TLHEE # \x1638 CANADIAN SYLLABICS CARRIER TLHI # \x1639 CANADIAN SYLLABICS CARRIER TLHA # \x163A CANADIAN SYLLABICS CARRIER To # \x163B CANADIAN SYLLABICS CARRIER TLO # \x163C CANADIAN SYLLABICS CARRIER TLE # \x163D CANADIAN SYLLABICS CARRIER TLEE # \x163E CANADIAN SYLLABICS CARRIER TLI # \x163F CANADIAN SYLLABICS CARRIER TLA # \x1640 CANADIAN SYLLABICS CARRIER ZU # \x1641 CANADIAN SYLLABICS CARRIER ZO # \x1642 CANADIAN SYLLABICS CARRIER ZE # \x1643 CANADIAN SYLLABICS CARRIER ZEE # \x1644 CANADIAN SYLLABICS CARRIER ZI # \x1645 CANADIAN SYLLABICS CARRIER ZA # \x1646 CANADIAN SYLLABICS CARRIER Z # \x1647 CANADIAN SYLLABICS CARRIER INITIAL Z # \x1648 CANADIAN SYLLABICS CARRIER DZU # \x1649 CANADIAN SYLLABICS CARRIER DZO # \x164A CANADIAN SYLLABICS CARRIER DZE # \x164B CANADIAN SYLLABICS CARRIER DZEE # \x164C CANADIAN SYLLABICS CARRIER DZI # \x164D CANADIAN SYLLABICS CARRIER DZA # \x164E CANADIAN SYLLABICS CARRIER SU # \x164F CANADIAN SYLLABICS CARRIER # \x1650 CANADIAN SYLLABICS CARRIER SE # \x1651 CANADIAN SYLLABICS CARRIER SEE # \x1652 CANADIAN SYLLABICS CARRIER SI # \x1653 CANADIAN SYLLABICS CARRIER SA # \x1654 CANADIAN SYLLABICS CARRIER SHU # \x1655 CANADIAN SYLLABICS CARRIER SHO # \x1656 CANADIAN SYLLABICS CARRIER SHE # \x1657 CANADIAN SYLLABICS CARRIER SHEE # \x1658 CANADIAN SYLLABICS CARRIER SHI # \x1659 CANADIAN SYLLABICS CARRIER SHA # \x165A CANADIAN SYLLABICS CARRIER SH # \x165B CANADIAN SYLLABICS CARRIER TSU # \x165C CANADIAN SYLLABICS CARRIER TSO # \x165D CANADIAN SYLLABICS CARRIER TSE # \x165E CANADIAN SYLLABICS CARRIER TSEE # \x165F CANADIAN SYLLABICS CARRIER TSI # \x1660 CANADIAN SYLLABICS CARRIER TSA # \x1661 CANADIAN SYLLABICS CARRIER CHU # \x1662 CANADIAN SYLLABICS CARRIER CHO # \x1663 CANADIAN SYLLABICS CARRIER CHE # \x1664 CANADIAN SYLLABICS CARRIER CHEE # \x1665 CANADIAN SYLLABICS CARRIER CHI # \x1666 CANADIAN SYLLABICS CARRIER CHA # \x1667 CANADIAN SYLLABICS CARRIER TTSU # \x1668 CANADIAN SYLLABICS CARRIER TTSO # \x1669 CANADIAN SYLLABICS CARRIER TTSE # \x166A CANADIAN SYLLABICS CARRIER TTSEE # \x166B CANADIAN SYLLABICS CARRIER TTSI # \x166C CANADIAN SYLLABICS CARRIER TTSA # \x166D CANADIAN SYLLABICS CHI SIGN # \x166E CANADIAN SYLLABICS FULL STOP # \x166F CANADIAN SYLLABICS QAI # \x1670 CANADIAN SYLLABICS NGAI # \x1671 CANADIAN SYLLABICS NNGI # \x1672 CANADIAN SYLLABICS NNGII # \x1673 CANADIAN SYLLABICS NNGO # \x1674 CANADIAN SYLLABICS NNGOO # \x1675 CANADIAN SYLLABICS NNGA # \x1676 CANADIAN SYLLABICS NNGAA # \x1680 OGHAM SPACE MARK # \x1681 OGHAM LETTER BEITH # \x1682 OGHAM LETTER LUIS # \x1683 OGHAM LETTER FEARN # \x1684 OGHAM LETTER SAIL # \x1685 OGHAM LETTER NION # \x1686 OGHAM LETTER UATH # \x1687 OGHAM LETTER DAIR # \x1688 OGHAM LETTER TINNE # \x1689 OGHAM LETTER COLL # \x168A OGHAM LETTER CEIRT # \x168B OGHAM LETTER MUIN # \x168C OGHAM LETTER GORT # \x168D OGHAM LETTER NGEADAL # \x168E OGHAM LETTER STRAIF # \x168F OGHAM LETTER RUIS # \x1690 OGHAM LETTER AILM # \x1691 OGHAM LETTER ONN # \x1692 OGHAM LETTER UR # \x1693 OGHAM LETTER EADHADH # \x1694 OGHAM LETTER IODHADH # \x1695 OGHAM LETTER EABHADH # \x1696 OGHAM LETTER OR # \x1697 OGHAM LETTER UILLEANN # \x1698 OGHAM LETTER IFIN # \x1699 OGHAM LETTER EAMHANCHOLL # \x169A OGHAM LETTER PEITH # \x169B OGHAM FEATHER MARK # \x169C OGHAM REVERSED FEATHER MARK Pe # \x16A0 RUNIC LETTER FEHU FEOH FE F # \x16A1 RUNIC LETTER V # \x16A2 RUNIC LETTER URUZ UR U # \x16A3 RUNIC LETTER YR # \x16A4 RUNIC LETTER Y # \x16A5 RUNIC LETTER W # \x16A6 RUNIC LETTER THURISAZ THURS THORN # \x16A7 RUNIC LETTER ETH # \x16A8 RUNIC LETTER ANSUZ A # \x16A9 RUNIC LETTER OS O # \x16AA RUNIC LETTER AC A # \x16AB RUNIC LETTER AESC # \x16AC RUNIC LETTER LONG-BRANCH-OSS O # \x16AD RUNIC LETTER SHORT-TWIG-OSS O # \x16AE RUNIC LETTER O # \x16AF RUNIC LETTER OE # \x16B0 RUNIC LETTER # \x16B1 RUNIC LETTER RAIDO RAD REID # \x16B2 RUNIC LETTER KAUNA # \x16B3 RUNIC LETTER CEN # \x16B4 RUNIC LETTER KAUN K # \x16B5 RUNIC LETTER G # \x16B6 RUNIC LETTER ENG # \x16B7 RUNIC LETTER GEBO GYFU G # \x16B8 RUNIC LETTER GAR # \x16B9 RUNIC LETTER WUNJO WYNN W # \x16BA RUNIC LETTER HAGLAZ H # \x16BB RUNIC LETTER HAEGL H # \x16BC RUNIC LETTER LONG-BRANCH-HAGALL H # \x16BD RUNIC LETTER SHORT-TWIG-HAGALL H # \x16BE RUNIC LETTER NAUDIZ NYD NAUD # \x16BF RUNIC LETTER SHORT-TWIG-NAUD # \x16C0 RUNIC LETTER DOTTED-N # \x16C1 RUNIC LETTER ISAZ IS ISS I # \x16C2 RUNIC LETTER E # \x16C3 RUNIC LETTER JERAN J # \x16C4 RUNIC LETTER GER # \x16C5 RUNIC LETTER LONG-BRANCH-AR AE # \x16C6 RUNIC LETTER SHORT-TWIG-AR A # \x16C7 RUNIC LETTER IWAZ EOH # \x16C8 RUNIC LETTER PERTHO PEORTH P # \x16C9 RUNIC LETTER ALGIZ EOLHX # \x16CA RUNIC LETTER SOWILO S # \x16CB RUNIC LETTER SIGEL LONG-BRANCH-SOL S # \x16CC RUNIC LETTER SHORT-TWIG-SOL S # \x16CD RUNIC LETTER C # \x16CE RUNIC LETTER Z # \x16CF RUNIC LETTER TIWAZ TIR TYR T # \x16D0 RUNIC LETTER SHORT-TWIG-TYR T # \x16D1 RUNIC LETTER D # \x16D2 RUNIC LETTER BERKANAN BEORC BJARKAN B # \x16D3 RUNIC LETTER SHORT-TWIG-BJARKAN B # \x16D4 RUNIC LETTER DOTTED-P # \x16D5 RUNIC LETTER OPEN-P # \x16D6 RUNIC LETTER EHWAZ EH E # \x16D7 RUNIC LETTER MANNAZ MAN M # \x16D8 RUNIC LETTER LONG-BRANCH-MADR M # \x16D9 RUNIC LETTER SHORT-TWIG-MADR M # \x16DA RUNIC LETTER LAUKAZ LAGU LOGR # \x16DB RUNIC LETTER DOTTED-L # \x16DC RUNIC LETTER INGWAZ # \x16DD RUNIC LETTER ING # \x16DE RUNIC LETTER DAGAZ DAEG D # \x16DF RUNIC LETTER OTHALAN ETHEL O # \x16E0 RUNIC LETTER EAR # \x16E1 RUNIC LETTER IOR # \x16E2 RUNIC LETTER CWEORTH # \x16E3 RUNIC LETTER CALC # \x16E4 RUNIC LETTER CEALC # \x16E5 RUNIC LETTER STAN # \x16E6 RUNIC LETTER LONG-BRANCH-YR # \x16E7 RUNIC LETTER SHORT-TWIG-YR # \x16E8 RUNIC LETTER ICELANDIC-YR # \x16E9 RUNIC LETTER Q # \x16EA RUNIC LETTER X # \x16EB RUNIC SINGLE PUNCTUATION # \x16EC RUNIC MULTIPLE PUNCTUATION # \x16ED RUNIC CROSS PUNCTUATION # \x16EE RUNIC ARLAUG SYMBOL Nl 17 golden number 17 # \x16EF RUNIC TVIMADUR SYMBOL Nl 18 golden number 18 # \x16F0 RUNIC BELGTHOR SYMBOL Nl 19 golden number 19 # \x1700 TAGALOG LETTER A # \x1701 TAGALOG LETTER I # \x1702 TAGALOG LETTER U # \x1703 TAGALOG LETTER KA # \x1704 TAGALOG LETTER GA # \x1705 TAGALOG LETTER NGA # \x1706 TAGALOG LETTER TA # \x1707 TAGALOG LETTER DA # \x1708 TAGALOG LETTER NA # \x1709 TAGALOG LETTER PA # \x170A TAGALOG LETTER BA # \x170B TAGALOG LETTER MA # \x170C TAGALOG LETTER YA # \x170E TAGALOG LETTER LA # \x170F TAGALOG LETTER WA # \x1710 TAGALOG LETTER SA # \x1711 TAGALOG LETTER HA # \x1712 TAGALOG VOWEL SIGN I # \x1713 TAGALOG VOWEL SIGN U # \x1714 TAGALOG SIGN VIRAMA 9 # \x1720 HANUNOO LETTER A # \x1721 HANUNOO LETTER I # \x1722 HANUNOO LETTER U # \x1723 HANUNOO LETTER KA # \x1724 HANUNOO LETTER GA # \x1725 HANUNOO LETTER NGA # \x1726 HANUNOO LETTER TA # \x1727 HANUNOO LETTER DA # \x1728 HANUNOO LETTER NA # \x1729 HANUNOO LETTER PA # \x172A HANUNOO LETTER BA # \x172B HANUNOO LETTER MA # \x172C HANUNOO LETTER YA # \x172D HANUNOO LETTER RA # \x172E HANUNOO LETTER LA # \x172F HANUNOO LETTER WA # \x1730 HANUNOO LETTER SA # \x1731 HANUNOO LETTER HA # \x1732 HANUNOO VOWEL SIGN I # \x1733 HANUNOO VOWEL SIGN U # \x1734 HANUNOO SIGN PAMUDPOD 9 # \x1735 PHILIPPINE SINGLE PUNCTUATION # \x1736 PHILIPPINE DOUBLE PUNCTUATION # \x1740 BUHID LETTER A # \x1741 BUHID LETTER I # \x1742 BUHID LETTER U # \x1743 BUHID LETTER KA # \x1744 BUHID LETTER GA # \x1745 BUHID LETTER NGA # \x1746 BUHID LETTER TA # \x1747 BUHID LETTER DA # \x1748 BUHID LETTER NA # \x1749 BUHID LETTER PA # \x174A BUHID LETTER BA # \x174B BUHID LETTER MA # \x174C BUHID LETTER YA # \x174D BUHID LETTER RA # \x174E BUHID LETTER LA # \x174F BUHID LETTER WA # \x1750 BUHID LETTER SA # \x1751 BUHID LETTER HA # \x1752 BUHID VOWEL SIGN I # \x1753 BUHID VOWEL SIGN U # \x1760 TAGBANWA LETTER A # \x1761 TAGBANWA LETTER I # \x1762 TAGBANWA LETTER U # \x1763 TAGBANWA LETTER KA # \x1764 TAGBANWA LETTER GA # \x1765 TAGBANWA LETTER NGA # \x1766 TAGBANWA LETTER TA # \x1767 TAGBANWA LETTER DA # \x1768 TAGBANWA LETTER NA # \x1769 TAGBANWA LETTER PA # \x176A TAGBANWA LETTER BA # \x176B TAGBANWA LETTER MA # \x176C TAGBANWA LETTER YA # \x176E TAGBANWA LETTER LA # \x176F TAGBANWA LETTER WA # \x1770 TAGBANWA LETTER SA # \x1772 TAGBANWA VOWEL SIGN I # \x1773 TAGBANWA VOWEL SIGN U # \x1780 KHMER LETTER KA # \x1781 KHMER LETTER KHA # \x1782 KHMER LETTER KO # \x1783 KHMER LETTER KHO # \x1784 KHMER LETTER NGO # \x1785 KHMER LETTER CA # \x1786 KHMER LETTER CHA # \x1787 KHMER LETTER CO # \x1788 KHMER LETTER CHO # \x1789 KHMER LETTER NYO # \x178A KHMER LETTER DA # \x178B KHMER LETTER TTHA # \x178C KHMER LETTER DO # \x178D KHMER LETTER TTHO # \x178E KHMER LETTER NNO # \x178F KHMER LETTER TA # \x1790 KHMER LETTER THA # \x1791 KHMER LETTER TO # \x1792 KHMER LETTER THO # \x1793 KHMER LETTER NO # \x1794 KHMER LETTER BA # \x1795 KHMER LETTER PHA # \x1796 KHMER LETTER # \x1797 KHMER LETTER PHO # \x1798 KHMER LETTER MO # \x1799 KHMER LETTER YO # \x179A KHMER LETTER RO # \x179B KHMER LETTER Lo # \x179C KHMER LETTER VO # \x179D KHMER LETTER SHA # \x179E KHMER LETTER SSO # \x179F KHMER LETTER SA # \x17A0 KHMER LETTER HA # \x17A1 KHMER LETTER LA # \x17A2 KHMER LETTER QA # \x17A3 KHMER INDEPENDENT VOWEL QAQ * # \x17A4 KHMER INDEPENDENT VOWEL QAA * # \x17A5 KHMER INDEPENDENT VOWEL QI # \x17A6 KHMER INDEPENDENT VOWEL QII # \x17A7 KHMER INDEPENDENT VOWEL QU # \x17A8 KHMER INDEPENDENT VOWEL QUK # \x17A9 KHMER INDEPENDENT VOWEL QUU # \x17AA KHMER INDEPENDENT VOWEL QUUV # \x17AB KHMER INDEPENDENT VOWEL RY # \x17AC KHMER INDEPENDENT VOWEL RYY # \x17AD KHMER INDEPENDENT VOWEL LY # \x17AE KHMER INDEPENDENT VOWEL LYY # \x17AF KHMER INDEPENDENT VOWEL QE # \x17B0 KHMER INDEPENDENT VOWEL QAI # \x17B1 KHMER INDEPENDENT VOWEL QOO TYPE ONE # \x17B2 KHMER INDEPENDENT VOWEL QOO TYPE TWO # \x17B3 KHMER INDEPENDENT VOWEL QAU # \x17B4 KHMER VOWEL INHERENT AQ * # \x17B5 KHMER VOWEL INHERENT AA * # \x17B6 KHMER VOWEL SIGN AA Mc # \x17B7 KHMER VOWEL SIGN I # \x17B8 KHMER VOWEL SIGN II # \x17B9 KHMER VOWEL SIGN Y # \x17BA KHMER VOWEL SIGN YY # \x17BB KHMER VOWEL SIGN U # \x17BC KHMER VOWEL SIGN UU # \x17BD KHMER VOWEL SIGN UA # \x17BE KHMER VOWEL SIGN OE Mc # \x17BF KHMER VOWEL SIGN YA Mc # \x17C0 KHMER VOWEL SIGN IE Mc # \x17C1 KHMER VOWEL SIGN E Mc # \x17C2 KHMER VOWEL SIGN AE Mc # \x17C3 KHMER VOWEL SIGN AI Mc # \x17C4 KHMER VOWEL SIGN OO Mc # \x17C5 KHMER VOWEL SIGN AU Mc # \x17C6 KHMER SIGN NIKAHIT # \x17C7 KHMER SIGN REAHMUK Mc # \x17C8 KHMER SIGN YUUKALEAPINTU Mc # \x17C9 KHMER SIGN MUUSIKATOAN # \x17CA KHMER SIGN TRIISAP # \x17CB KHMER SIGN BANTOC # \x17CC KHMER SIGN ROBAT # \x17CD KHMER SIGN TOANDAKHIAT # \x17CE KHMER SIGN KAKABAT # \x17CF KHMER SIGN AHSDA # \x17D0 KHMER SIGN SAMYOK SANNYA # \x17D1 KHMER SIGN VIRIAM # \x17D2 KHMER SIGN COENG 9 # \x17D3 KHMER SIGN BATHAMASAT * # \x17D4 KHMER SIGN KHAN # \x17D5 KHMER SIGN BARIYOOSAN # \x17D6 KHMER SIGN CAMNUC PII KUUH # \x17D7 KHMER SIGN LEK TOO Lm # \x17D8 KHMER SIGN BEYYAL * # \x17D9 KHMER SIGN PHNAEK MUAN # \x17DA KHMER SIGN KOOMUUT # \x17DB KHMER CURRENCY SYMBOL RIEL # \x17DC KHMER SIGN AVAKRAHASANYA # \x17DD KHMER SIGN ATTHACAN 230 # \x17E0 KHMER DIGIT ZERO Nd 0 # \x17E1 KHMER DIGIT ONE Nd 1 1 1 # \x17E2 KHMER DIGIT TWO Nd 2 2 2 # \x17E3 KHMER DIGIT THREE Nd 3 3 3 # \x17E4 KHMER DIGIT FOUR Nd 4 4 4 # \x17E5 KHMER DIGIT FIVE Nd 5 5 5 # \x17E6 KHMER DIGIT SIX Nd 6 6 6 # \x17E7 KHMER DIGIT SEVEN Nd 7 7 7 # \x17E8 KHMER DIGIT EIGHT Nd 8 8 8 # \x17E9 KHMER DIGIT NINE Nd 9 9 9 # \x17F0 KHMER SYMBOL LEK ATTAK SON No 0 # \x17F1 KHMER SYMBOL LEK ATTAK MUOY No 1 # \x17F2 KHMER SYMBOL LEK ATTAK PII No 2 # \x17F3 KHMER SYMBOL LEK ATTAK BEI No 3 # \x17F4 KHMER SYMBOL LEK ATTAK BUON No 4 # \x17F5 KHMER SYMBOL LEK ATTAK PRAM No 5 # \x17F6 KHMER SYMBOL LEK ATTAK PRAM-MUOY No 6 # \x17F7 KHMER SYMBOL LEK ATTAK PRAM-PII No 7 # \x17F8 KHMER SYMBOL LEK ATTAK PRAM-BEI No 8 # \x17F9 KHMER SYMBOL LEK ATTAK PRAM-BUON No 9 # \x1800 MONGOLIAN BIRGA # \x1801 MONGOLIAN ELLIPSIS # \x1802 MONGOLIAN COMMA # \x1803 MONGOLIAN FULL STOP # \x1804 MONGOLIAN COLON # \x1805 MONGOLIAN FOUR DOTS # \x1806 MONGOLIAN TODO SOFT HYPHEN # \x1807 MONGOLIAN SIBE SYLLABLE BOUNDARY MARKER # \x1808 MONGOLIAN MANCHU COMMA # \x1809 MONGOLIAN MANCHU FULL STOP # \x180A MONGOLIAN NIRUGU # \x180B MONGOLIAN FREE VARIATION SELECTOR ONE # \x180C MONGOLIAN FREE VARIATION SELECTOR TWO # \x180D MONGOLIAN FREE VARIATION SELECTOR THREE # \x180E MONGOLIAN VOWEL SEPARATOR # \x1810 MONGOLIAN DIGIT ZERO Nd 0 # \x1811 MONGOLIAN DIGIT ONE Nd 1 1 1 # \x1812 MONGOLIAN DIGIT TWO Nd 2 2 2 # \x1813 MONGOLIAN DIGIT THREE Nd 3 3 3 # \x1814 MONGOLIAN DIGIT FOUR Nd 4 4 4 # \x1815 MONGOLIAN DIGIT FIVE Nd 5 5 5 # \x1816 MONGOLIAN DIGIT SIX Nd 6 6 6 # \x1817 MONGOLIAN DIGIT SEVEN Nd 7 7 7 # \x1818 MONGOLIAN DIGIT EIGHT Nd 8 8 8 # \x1819 MONGOLIAN DIGIT NINE Nd 9 9 9 # \x1820 MONGOLIAN LETTER A # \x1821 MONGOLIAN LETTER E # \x1822 MONGOLIAN LETTER I # \x1823 MONGOLIAN LETTER O # \x1824 MONGOLIAN LETTER U # \x1825 MONGOLIAN LETTER OE # \x1826 MONGOLIAN LETTER UE # \x1827 MONGOLIAN LETTER EE # \x1828 MONGOLIAN LETTER NA # \x1829 MONGOLIAN LETTER ANG # \x182A MONGOLIAN LETTER BA # \x182B MONGOLIAN LETTER PA # \x182C MONGOLIAN LETTER QA # \x182D MONGOLIAN LETTER GA # \x182E MONGOLIAN LETTER MA # \x182F MONGOLIAN LETTER LA # \x1830 MONGOLIAN LETTER SA # \x1831 MONGOLIAN LETTER SHA # \x1832 MONGOLIAN LETTER TA # \x1833 MONGOLIAN LETTER DA # \x1834 MONGOLIAN LETTER CHA # \x1835 MONGOLIAN LETTER JA # \x1836 MONGOLIAN LETTER YA # \x1837 MONGOLIAN LETTER RA # \x1838 MONGOLIAN LETTER WA # \x1839 MONGOLIAN LETTER FA # \x183A MONGOLIAN LETTER KA # \x183B MONGOLIAN LETTER KHA # \x183C MONGOLIAN LETTER TSA # \x183D MONGOLIAN LETTER ZA # \x183E MONGOLIAN LETTER HAA # \x183F MONGOLIAN LETTER ZRA # \x1840 MONGOLIAN LETTER LHA # \x1841 MONGOLIAN LETTER ZHI # \x1842 MONGOLIAN LETTER CHI # \x1843 MONGOLIAN LETTER TODO LONG VOWEL SIGN Lm # \x1844 MONGOLIAN LETTER TODO E # \x1845 MONGOLIAN LETTER TODO I # \x1846 MONGOLIAN LETTER TODO O # \x1847 MONGOLIAN LETTER TODO U # \x1848 MONGOLIAN LETTER TODO OE # \x1849 MONGOLIAN LETTER TODO UE # \x184A MONGOLIAN LETTER TODO ANG # \x184B MONGOLIAN LETTER TODO BA # \x184C MONGOLIAN LETTER TODO PA # \x184D MONGOLIAN LETTER TODO QA # \x184E MONGOLIAN LETTER TODO GA # \x184F MONGOLIAN LETTER TODO MA # \x1850 MONGOLIAN LETTER TODO TA # \x1851 MONGOLIAN LETTER TODO DA # \x1852 MONGOLIAN LETTER TODO CHA # \x1853 MONGOLIAN LETTER TODO JA # \x1854 MONGOLIAN LETTER TODO TSA # \x1855 MONGOLIAN LETTER TODO YA # \x1856 MONGOLIAN LETTER TODO WA # \x1857 MONGOLIAN LETTER TODO KA # \x1858 MONGOLIAN LETTER TODO GAA # \x1859 MONGOLIAN LETTER TODO HAA # \x185A MONGOLIAN LETTER TODO JIA # \x185B MONGOLIAN LETTER TODO NIA # \x185C MONGOLIAN LETTER TODO DZA # \x185D MONGOLIAN LETTER SIBE E # \x185E MONGOLIAN LETTER SIBE I # \x185F MONGOLIAN LETTER SIBE IY # \x1860 MONGOLIAN LETTER SIBE UE # \x1861 MONGOLIAN LETTER SIBE U # \x1862 MONGOLIAN LETTER SIBE ANG # \x1863 MONGOLIAN LETTER SIBE KA # \x1864 MONGOLIAN LETTER SIBE GA # \x1865 MONGOLIAN LETTER SIBE HA # \x1866 MONGOLIAN LETTER SIBE PA # \x1867 MONGOLIAN LETTER SIBE SHA # \x1868 MONGOLIAN LETTER SIBE TA # \x1869 MONGOLIAN LETTER SIBE DA # \x186A MONGOLIAN LETTER SIBE JA # \x186B MONGOLIAN LETTER SIBE FA # \x186C MONGOLIAN LETTER SIBE GAA # \x186D MONGOLIAN LETTER SIBE HAA # \x186E MONGOLIAN LETTER SIBE TSA # \x186F MONGOLIAN LETTER SIBE ZA # \x1870 MONGOLIAN LETTER SIBE RAA # \x1871 MONGOLIAN LETTER SIBE CHA # \x1872 MONGOLIAN LETTER SIBE ZHA # \x1873 MONGOLIAN LETTER MANCHU I # \x1874 MONGOLIAN LETTER MANCHU KA # \x1875 MONGOLIAN LETTER MANCHU RA # \x1876 MONGOLIAN LETTER MANCHU FA # \x1877 MONGOLIAN LETTER MANCHU ZHA # \x1880 MONGOLIAN LETTER ALI GALI ANUSVARA ONE # \x1881 MONGOLIAN LETTER ALI GALI VISARGA ONE # \x1882 MONGOLIAN LETTER ALI GALI DAMARU # \x1883 MONGOLIAN LETTER ALI GALI UBADAMA # \x1884 MONGOLIAN LETTER ALI GALI INVERTED UBADAMA # \x1885 MONGOLIAN LETTER ALI GALI BALUDA # \x1886 MONGOLIAN LETTER ALI GALI THREE BALUDA # \x1887 MONGOLIAN LETTER ALI GALI A # \x1888 MONGOLIAN LETTER ALI GALI I # \x1889 MONGOLIAN LETTER ALI GALI KA # \x188A MONGOLIAN LETTER ALI GALI NGA # \x188B MONGOLIAN LETTER ALI GALI CA # \x188C MONGOLIAN LETTER ALI GALI TTA # \x188D MONGOLIAN LETTER ALI GALI TTHA # \x188E MONGOLIAN LETTER ALI GALI DDA # \x188F MONGOLIAN LETTER ALI GALI NNA # \x1890 MONGOLIAN LETTER ALI GALI TA # \x1891 MONGOLIAN LETTER ALI GALI DA # \x1892 MONGOLIAN LETTER ALI GALI PA # \x1893 MONGOLIAN LETTER ALI GALI PHA # \x1894 MONGOLIAN LETTER ALI GALI SSA # \x1895 MONGOLIAN LETTER ALI GALI ZHA # \x1896 MONGOLIAN LETTER ALI GALI ZA # \x1897 MONGOLIAN LETTER ALI GALI AH # \x1898 MONGOLIAN LETTER TODO ALI GALI TA # \x1899 MONGOLIAN LETTER TODO ALI GALI ZHA # \x189A MONGOLIAN LETTER MANCHU ALI GALI GHA # \x189B MONGOLIAN LETTER MANCHU ALI GALI NGA # \x189C MONGOLIAN LETTER MANCHU ALI GALI CA # \x189D MONGOLIAN LETTER MANCHU ALI GALI JHA # \x189E MONGOLIAN LETTER MANCHU ALI GALI TTA # \x189F MONGOLIAN LETTER MANCHU ALI GALI DDHA # \x18A0 MONGOLIAN LETTER MANCHU ALI GALI TA # \x18A1 MONGOLIAN LETTER MANCHU ALI GALI DHA # \x18A2 MONGOLIAN LETTER MANCHU ALI GALI SSA # \x18A3 MONGOLIAN LETTER MANCHU ALI GALI CYA # \x18A4 MONGOLIAN LETTER MANCHU ALI GALI ZHA # \x18A5 MONGOLIAN LETTER MANCHU ALI GALI ZA # \x18A6 MONGOLIAN LETTER ALI GALI HALF U # \x18A7 MONGOLIAN LETTER ALI GALI HALF YA # \x18A8 MONGOLIAN LETTER MANCHU ALI GALI BHA # \x18A9 MONGOLIAN LETTER ALI GALI DAGALGA 228 # \x1900 LIMBU VOWEL-CARRIER LETTER # \x1901 LIMBU LETTER KA # \x1902 LIMBU LETTER KHA # \x1903 LIMBU LETTER GA # \x1904 LIMBU LETTER GHA # \x1905 LIMBU LETTER NGA # \x1906 LIMBU LETTER CA # \x1907 LIMBU LETTER CHA # \x1908 LIMBU LETTER JA # \x1909 LIMBU LETTER JHA # \x190A LIMBU LETTER YAN # \x190B LIMBU LETTER TA # \x190C LIMBU LETTER THA # \x190D LIMBU LETTER DA # \x190E LIMBU LETTER DHA # \x190F LIMBU LETTER NA # \x1910 LIMBU LETTER PA # \x1911 LIMBU LETTER PHA # \x1912 LIMBU LETTER BA # \x1913 LIMBU LETTER BHA # \x1914 LIMBU LETTER MA # \x1915 LIMBU LETTER YA # \x1916 LIMBU LETTER RA # \x1917 LIMBU LETTER LA # \x1918 LIMBU LETTER WA # \x1919 LIMBU LETTER SHA # \x191A LIMBU LETTER SSA # \x191B LIMBU LETTER SA # \x191C LIMBU LETTER HA # \x1920 LIMBU VOWEL SIGN A # \x1921 LIMBU VOWEL SIGN I # \x1922 LIMBU VOWEL SIGN U # \x1923 LIMBU VOWEL SIGN EE Mc # \x1924 LIMBU VOWEL SIGN AI Mc # \x1925 LIMBU VOWEL SIGN OO Mc # \x1926 LIMBU VOWEL SIGN AU Mc # \x1927 LIMBU VOWEL SIGN E # \x1928 LIMBU VOWEL SIGN O # \x1929 LIMBU SUBJOINED LETTER YA Mc # \x192A LIMBU SUBJOINED LETTER RA Mc # \x192B LIMBU SUBJOINED LETTER WA Mc # \x1930 LIMBU SMALL LETTER KA Mc # \x1931 LIMBU SMALL LETTER NGA Mc # \x1932 LIMBU SMALL LETTER ANUSVARA # \x1933 LIMBU SMALL LETTER TA Mc # \x1934 LIMBU SMALL LETTER NA Mc # \x1935 LIMBU SMALL LETTER PA Mc # \x1936 LIMBU SMALL LETTER MA Mc # \x1937 LIMBU SMALL LETTER RA Mc # \x1938 LIMBU SMALL LETTER LA Mc # \x1939 LIMBU SIGN MUKPHRENG 222 # \x193A LIMBU SIGN KEMPHRENG 230 # \x193B LIMBU SIGN SA-I 220 # \x1940 LIMBU SIGN LOO # \x1944 LIMBU EXCLAMATION MARK # \x1945 LIMBU QUESTION MARK # \x1946 LIMBU DIGIT ZERO Nd 0 # \x1947 LIMBU DIGIT ONE Nd 1 1 1 # \x1948 LIMBU DIGIT TWO Nd 2 2 2 # \x1949 LIMBU DIGIT THREE Nd 3 3 3 # \x194A LIMBU DIGIT FOUR Nd 4 4 4 # \x194B LIMBU DIGIT FIVE Nd 5 5 5 # \x194C LIMBU DIGIT SIX Nd 6 6 6 # \x194D LIMBU DIGIT SEVEN Nd 7 7 7 # \x194E LIMBU DIGIT EIGHT Nd 8 8 8 # \x194F LIMBU DIGIT NINE Nd 9 9 9 # \x1950 TAI LE LETTER KA # \x1951 TAI LE LETTER XA # \x1952 TAI LE LETTER NGA # \x1953 TAI LE LETTER TSA # \x1954 TAI LE LETTER SA # \x1955 TAI LE LETTER YA # \x1956 TAI LE LETTER TA # \x1957 TAI LE LETTER THA # \x1958 TAI LE LETTER LA # \x1959 TAI LE LETTER PA # \x195A TAI LE LETTER PHA # \x195B TAI LE LETTER MA # \x195C TAI LE LETTER FA # \x195D TAI LE LETTER VA # \x195E TAI LE LETTER HA # \x195F TAI LE LETTER QA # \x1960 TAI LE LETTER KHA # \x1961 TAI LE LETTER TSHA # \x1962 TAI LE LETTER NA # \x1963 TAI LE LETTER A # \x1964 TAI LE LETTER I # \x1965 TAI LE LETTER EE # \x1966 TAI LE LETTER EH # \x1967 TAI LE LETTER U # \x1968 TAI LE LETTER OO # \x1969 TAI LE LETTER O # \x196A TAI LE LETTER UE # \x196B TAI LE LETTER E # \x196C TAI LE LETTER AUE # \x196D TAI LE LETTER AI # \x1970 TAI LE LETTER TONE-2 # \x1971 TAI LE LETTER TONE-3 # \x1972 TAI LE LETTER TONE-4 # \x1973 TAI LE LETTER TONE-5 # \x1974 TAI LE LETTER TONE-6 # \x19E0 KHMER SYMBOL PATHAMASAT # \x19E1 KHMER SYMBOL MUOY KOET # \x19E2 KHMER SYMBOL PII KOET # \x19E3 KHMER SYMBOL BEI KOET # \x19E4 KHMER SYMBOL BUON KOET # \x19E5 KHMER SYMBOL PRAM KOET # \x19E6 KHMER SYMBOL PRAM-MUOY KOET # \x19E7 KHMER SYMBOL PRAM-PII KOET # \x19E8 KHMER SYMBOL PRAM-BEI KOET # \x19E9 KHMER SYMBOL PRAM-BUON KOET # \x19EA KHMER SYMBOL DAP KOET # \x19EB KHMER SYMBOL DAP-MUOY KOET # \x19EC KHMER SYMBOL DAP-PII KOET # \x19ED KHMER SYMBOL DAP-BEI KOET # \x19EE KHMER SYMBOL DAP-BUON KOET # \x19EF KHMER SYMBOL DAP-PRAM KOET # \x19F0 KHMER SYMBOL TUTEYASAT # \x19F1 KHMER SYMBOL MUOY ROC # \x19F2 KHMER SYMBOL PII ROC # \x19F3 KHMER SYMBOL BEI ROC # \x19F4 KHMER SYMBOL BUON ROC # \x19F5 KHMER SYMBOL PRAM ROC # \x19F6 KHMER SYMBOL PRAM-MUOY ROC # \x19F7 KHMER SYMBOL PRAM-PII ROC # \x19F8 KHMER SYMBOL PRAM-BEI ROC # \x19F9 KHMER SYMBOL PRAM-BUON ROC # \x19FA KHMER SYMBOL DAP ROC # \x19FB KHMER SYMBOL DAP-MUOY ROC # \x19FC KHMER SYMBOL DAP-PII ROC # \x19FD KHMER SYMBOL DAP-BEI ROC # \x19FE KHMER SYMBOL DAP-BUON ROC # \x19FF KHMER SYMBOL DAP-PRAM ROC # \x1D00 LATIN LETTER SMALL CAPITAL A # \x1D01 LATIN LETTER SMALL CAPITAL AE # \x1D02 LATIN SMALL LETTER TURNED AE # \x1D03 LATIN LETTER SMALL CAPITAL BARRED B # \x1D04 LATIN LETTER SMALL CAPITAL C # \x1D05 LATIN LETTER SMALL CAPITAL D # \x1D06 LATIN LETTER SMALL CAPITAL ETH # \x1D07 LATIN LETTER SMALL CAPITAL E # \x1D08 LATIN SMALL LETTER TURNED OPEN E # \x1D09 LATIN SMALL LETTER TURNED I # \x1D0A LATIN LETTER SMALL CAPITAL J # \x1D0B LATIN LETTER SMALL CAPITAL K # \x1D0C LATIN LETTER SMALL CAPITAL WITH STROKE # \x1D0D LATIN LETTER SMALL CAPITAL M # \x1D0E LATIN LETTER SMALL CAPITAL REVERSED # \x1D0F LATIN LETTER SMALL CAPITAL O # \x1D10 LATIN LETTER SMALL CAPITAL OPEN O # \x1D11 LATIN SMALL LETTER SIDEWAYS O # \x1D12 LATIN SMALL LETTER SIDEWAYS OPEN O # \x1D13 LATIN SMALL LETTER SIDEWAYS O WITH STROKE # \x1D14 LATIN SMALL LETTER TURNED OE # \x1D15 LATIN LETTER SMALL CAPITAL OU # \x1D16 LATIN SMALL LETTER TOP HALF O # \x1D17 LATIN SMALL LETTER BOTTOM HALF O # \x1D18 LATIN LETTER SMALL CAPITAL P # \x1D19 LATIN LETTER SMALL CAPITAL REVERSED # \x1D1A LATIN LETTER SMALL CAPITAL TURNED # \x1D1B LATIN LETTER SMALL CAPITAL T # \x1D1C LATIN LETTER SMALL CAPITAL U # \x1D1D LATIN SMALL LETTER SIDEWAYS U # \x1D1E LATIN SMALL LETTER SIDEWAYS DIAERESIZED U # \x1D1F LATIN SMALL LETTER SIDEWAYS TURNED M # \x1D20 LATIN LETTER SMALL CAPITAL V # \x1D21 LATIN LETTER SMALL CAPITAL W # \x1D22 LATIN LETTER SMALL CAPITAL Z # \x1D23 LATIN LETTER SMALL CAPITAL EZH # \x1D24 LATIN LETTER VOICED LARYNGEAL SPIRANT # \x1D25 LATIN LETTER AIN # \x1D26 GREEK LETTER SMALL CAPITAL GAMMA # \x1D27 GREEK LETTER SMALL CAPITAL LAMDA # \x1D28 GREEK LETTER SMALL CAPITAL PI # \x1D29 GREEK LETTER SMALL CAPITAL RHO # \x1D2A GREEK LETTER SMALL CAPITAL PSI # \x1D2B CYRILLIC LETTER SMALL CAPITAL EL # \x1D2C MODIFIER LETTER CAPITAL A Lm 0041 # \x1D2D MODIFIER LETTER CAPITAL AE Lm 00C6 # \x1D2E MODIFIER LETTER CAPITAL B Lm 0042 # \x1D2F MODIFIER LETTER CAPITAL BARRED B Lm # \x1D30 MODIFIER LETTER CAPITAL D Lm 0044 # \x1D31 MODIFIER LETTER CAPITAL E Lm 0045 # \x1D32 MODIFIER LETTER CAPITAL REVERSED E Lm 018E # \x1D33 MODIFIER LETTER CAPITAL G Lm 0047 # \x1D34 MODIFIER LETTER CAPITAL H Lm 0048 # \x1D35 MODIFIER LETTER CAPITAL I Lm 0049 # \x1D36 MODIFIER LETTER CAPITAL J Lm 004A # \x1D37 MODIFIER LETTER CAPITAL K Lm 004B # \x1D38 MODIFIER LETTER CAPITAL Lm 004C # \x1D39 MODIFIER LETTER CAPITAL M Lm 004D # \x1D3A MODIFIER LETTER CAPITAL Lm 004E # \x1D3B MODIFIER LETTER CAPITAL REVERSED Lm # \x1D3C MODIFIER LETTER CAPITAL O Lm 004F # \x1D3D MODIFIER LETTER CAPITAL OU Lm 0222 # \x1D3E MODIFIER LETTER CAPITAL P Lm 0050 # \x1D3F MODIFIER LETTER CAPITAL Lm 0052 # \x1D40 MODIFIER LETTER CAPITAL T Lm 0054 # \x1D41 MODIFIER LETTER CAPITAL U Lm 0055 # \x1D42 MODIFIER LETTER CAPITAL W Lm 0057 # \x1D43 MODIFIER LETTER SMALL A Lm 0061 # \x1D44 MODIFIER LETTER SMALL TURNED A Lm 0250 # \x1D45 MODIFIER LETTER SMALL ALPHA Lm 0251 # \x1D46 MODIFIER LETTER SMALL TURNED AE Lm 1D02 # \x1D47 MODIFIER LETTER SMALL B Lm 0062 # \x1D48 MODIFIER LETTER SMALL D Lm 0064 # \x1D49 MODIFIER LETTER SMALL E Lm 0065 # \x1D4A MODIFIER LETTER SMALL SCHWA Lm 0259 # \x1D4B MODIFIER LETTER SMALL OPEN E Lm 025B # \x1D4C MODIFIER LETTER SMALL TURNED OPEN E Lm 025C # \x1D4D MODIFIER LETTER SMALL G Lm 0067 # \x1D4E MODIFIER LETTER SMALL TURNED I Lm # \x1D4F MODIFIER LETTER SMALL K Lm 006B # \x1D50 MODIFIER LETTER SMALL M Lm 006D # \x1D51 MODIFIER LETTER SMALL ENG Lm 014B # \x1D52 MODIFIER LETTER SMALL O Lm 006F # \x1D53 MODIFIER LETTER SMALL OPEN O Lm 0254 # \x1D54 MODIFIER LETTER SMALL TOP HALF O Lm 1D16 # \x1D55 MODIFIER LETTER SMALL BOTTOM HALF O Lm 1D17 # \x1D56 MODIFIER LETTER SMALL P Lm 0070 # \x1D57 MODIFIER LETTER SMALL T Lm 0074 # \x1D58 MODIFIER LETTER SMALL U Lm 0075 # \x1D59 MODIFIER LETTER SMALL SIDEWAYS U Lm 1D1D # \x1D5A MODIFIER LETTER SMALL TURNED M Lm 026F # \x1D5B MODIFIER LETTER SMALL V Lm 0076 # \x1D5C MODIFIER LETTER SMALL AIN Lm 1D25 # \x1D5D MODIFIER LETTER SMALL BETA Lm 03B2 # \x1D5E MODIFIER LETTER SMALL GREEK GAMMA Lm 03B3 # \x1D5F MODIFIER LETTER SMALL DELTA Lm 03B4 # \x1D60 MODIFIER LETTER SMALL GREEK PHI Lm 03C6 # \x1D61 MODIFIER LETTER SMALL CHI Lm 03C7 # \x1D62 LATIN SUBSCRIPT SMALL LETTER I 0069 # \x1D63 LATIN SUBSCRIPT SMALL LETTER 0072 # \x1D64 LATIN SUBSCRIPT SMALL LETTER U 0075 # \x1D65 LATIN SUBSCRIPT SMALL LETTER V 0076 # \x1D66 GREEK SUBSCRIPT SMALL LETTER BETA 03B2 # \x1D67 GREEK SUBSCRIPT SMALL LETTER GAMMA 03B3 # \x1D68 GREEK SUBSCRIPT SMALL LETTER RHO 03C1 # \x1D69 GREEK SUBSCRIPT SMALL LETTER PHI 03C6 # \x1D6A GREEK SUBSCRIPT SMALL LETTER CHI 03C7 # \x1D6B LATIN SMALL LETTER UE # \x1E00 LATIN CAPITAL LETTER A WITH RING BELOW 0041 0325 1E01 # \x1E01 LATIN SMALL LETTER A WITH RING BELOW 0061 0325 1E00 1E00 # \x1E02 LATIN CAPITAL LETTER B WITH DOT ABOVE 0042 0307 1E03 # \x1E03 LATIN SMALL LETTER B WITH DOT ABOVE 0062 0307 1E02 1E02 # \x1E04 LATIN CAPITAL LETTER B WITH DOT BELOW 0042 0323 1E05 # \x1E05 LATIN SMALL LETTER B WITH DOT BELOW 0062 0323 1E04 1E04 # \x1E06 LATIN CAPITAL LETTER B WITH LINE BELOW 0042 0331 1E07 # \x1E07 LATIN SMALL LETTER B WITH LINE BELOW 0062 0331 1E06 1E06 # \x1E08 LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE 00C7 0301 1E0 # \x9 # \x1E09 LATIN SMALL LETTER C WITH CEDILLA AND ACUTE 00E7 0301 1E08 # \x1E08 # \x1E0A LATIN CAPITAL LETTER D WITH DOT ABOVE 0044 0307 1E0B # \x1E0B LATIN SMALL LETTER D WITH DOT ABOVE 0064 0307 1E0A 1E0A # \x1E0C LATIN CAPITAL LETTER D WITH DOT BELOW 0044 0323 1E0D # \x1E0D LATIN SMALL LETTER D WITH DOT BELOW 0064 0323 1E0C 1E0C # \x1E0E LATIN CAPITAL LETTER D WITH LINE BELOW 0044 0331 1E0F # \x1E0F LATIN SMALL LETTER D WITH LINE BELOW 0064 0331 1E0E 1E0E # \x1E10 LATIN CAPITAL LETTER D WITH CEDILLA 0044 0327 1E11 # \x1E11 LATIN SMALL LETTER D WITH CEDILLA 0064 0327 1E10 1E10 # \x1E12 LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW 0044 032D 1E13 # \x # \x1E13 LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW 0064 032D 1E12 1 # \xE12 # \x1E14 LATIN CAPITAL LETTER E WITH MACRON AND GRAVE 0112 0300 1E15 # \x # \x1E15 LATIN SMALL LETTER E WITH MACRON AND GRAVE 0113 0300 1E14 1 # \xE14 # \x1E16 LATIN CAPITAL LETTER E WITH MACRON AND ACUTE 0112 0301 1E17 # \x # \x1E17 LATIN SMALL LETTER E WITH MACRON AND ACUTE 0113 0301 1E16 1 # \xE16 # \x1E18 LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW 0045 032D 1E19 # \x # \x1E19 LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW 0065 032D 1E18 1 # \xE18 # \x1E1A LATIN CAPITAL LETTER E WITH TILDE BELOW 0045 0330 1E1B # \x1E1B LATIN SMALL LETTER E WITH TILDE BELOW 0065 0330 1E1A 1E1A # \x1E1C LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE 0228 0306 1E1 # \xD # \x1E1D LATIN SMALL LETTER E WITH CEDILLA AND BREVE 0229 0306 1E1C # \x1E1C # \x1E1E LATIN CAPITAL LETTER F WITH DOT ABOVE 0046 0307 1E1F # \x1E1F LATIN SMALL LETTER F WITH DOT ABOVE 0066 0307 1E1E 1E1E # \x1E20 LATIN CAPITAL LETTER G WITH MACRON 0047 0304 1E21 # \x1E21 LATIN SMALL LETTER G WITH MACRON 0067 0304 1E20 1E20 # \x1E22 LATIN CAPITAL LETTER H WITH DOT ABOVE 0048 0307 1E23 # \x1E23 LATIN SMALL LETTER H WITH DOT ABOVE 0068 0307 1E22 1E22 # \x1E24 LATIN CAPITAL LETTER H WITH DOT BELOW 0048 0323 1E25 # \x1E25 LATIN SMALL LETTER H WITH DOT BELOW 0068 0323 1E24 1E24 # \x1E26 LATIN CAPITAL LETTER H WITH DIAERESIS 0048 0308 1E27 # \x1E27 LATIN SMALL LETTER H WITH DIAERESIS 0068 0308 1E26 1E26 # \x1E28 LATIN CAPITAL LETTER H WITH CEDILLA 0048 0327 1E29 # \x1E29 LATIN SMALL LETTER H WITH CEDILLA 0068 0327 1E28 1E28 # \x1E2A LATIN CAPITAL LETTER H WITH BREVE BELOW 0048 032E 1E2B # \x1E2B LATIN SMALL LETTER H WITH BREVE BELOW 0068 032E 1E2A 1E2A # \x1E2C LATIN CAPITAL LETTER I WITH TILDE BELOW 0049 0330 1E2D # \x1E2D LATIN SMALL LETTER I WITH TILDE BELOW 0069 0330 1E2C 1E2C # \x1E2E LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE 00CF 0301 1 # \xE2F # \x1E2F LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE 00EF 0301 1E2E # \x 1E2E # \x1E30 LATIN CAPITAL LETTER K WITH ACUTE 004B 0301 1E31 # \x1E31 LATIN SMALL LETTER K WITH ACUTE 006B 0301 1E30 1E30 # \x1E32 LATIN CAPITAL LETTER K WITH DOT BELOW 004B 0323 1E33 # \x1E33 LATIN SMALL LETTER K WITH DOT BELOW 006B 0323 1E32 1E32 # \x1E34 LATIN CAPITAL LETTER K WITH LINE BELOW 004B 0331 1E35 # \x1E35 LATIN SMALL LETTER K WITH LINE BELOW 006B 0331 1E34 1E34 # \x1E36 LATIN CAPITAL LETTER WITH DOT BELOW 004C 0323 1E37 # \x1E37 LATIN SMALL LETTER WITH DOT BELOW 006C 0323 1E36 1E36 # \x1E38 LATIN CAPITAL LETTER WITH DOT BELOW AND MACRON 1E36 0304 # \x1E39 # \x1E39 LATIN SMALL LETTER WITH DOT BELOW AND MACRON 1E37 0304 1E3 # \x8 1E38 # \x1E3A LATIN CAPITAL LETTER WITH LINE BELOW 004C 0331 1E3B # \x1E3B LATIN SMALL LETTER WITH LINE BELOW 006C 0331 1E3A 1E3A # \x1E3C LATIN CAPITAL LETTER WITH CIRCUMFLEX BELOW 004C 032D 1E3D # \x # \x1E3D LATIN SMALL LETTER WITH CIRCUMFLEX BELOW 006C 032D 1E3C 1 # \xE3C # \x1E3E LATIN CAPITAL LETTER M WITH ACUTE 004D 0301 1E3F # \x1E3F LATIN SMALL LETTER M WITH ACUTE 006D 0301 1E3E 1E3E # \x1E40 LATIN CAPITAL LETTER M WITH DOT ABOVE 004D 0307 1E41 # \x1E41 LATIN SMALL LETTER M WITH DOT ABOVE 006D 0307 1E40 1E40 # \x1E42 LATIN CAPITAL LETTER M WITH DOT BELOW 004D 0323 1E43 # \x1E43 LATIN SMALL LETTER M WITH DOT BELOW 006D 0323 1E42 1E42 # \x1E44 LATIN CAPITAL LETTER WITH DOT ABOVE 004E 0307 1E45 # \x1E45 LATIN SMALL LETTER WITH DOT ABOVE 006E 0307 1E44 1E44 # \x1E46 LATIN CAPITAL LETTER WITH DOT BELOW 004E 0323 1E47 # \x1E47 LATIN SMALL LETTER WITH DOT BELOW 006E 0323 1E46 1E46 # \x1E48 LATIN CAPITAL LETTER WITH LINE BELOW 004E 0331 1E49 # \x1E49 LATIN SMALL LETTER WITH LINE BELOW 006E 0331 1E48 1E48 # \x1E4A LATIN CAPITAL LETTER WITH CIRCUMFLEX BELOW 004E 032D 1E4B # \x # \x1E4B LATIN SMALL LETTER WITH CIRCUMFLEX BELOW 006E 032D 1E4A 1 # \xE4A # \x1E4C LATIN CAPITAL LETTER O WITH TILDE AND ACUTE 00D5 0301 1E4D # \x1E4D LATIN SMALL LETTER O WITH TILDE AND ACUTE 00F5 0301 1E4C 1E # \x4C # \x1E4E LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS 00D5 0308 1 # \xE4F # \x1E4F LATIN SMALL LETTER O WITH TILDE AND DIAERESIS 00F5 0308 1E4E # \x 1E4E # \x1E50 LATIN CAPITAL LETTER O WITH MACRON AND GRAVE 014C 0300 1E51 # \x # \x1E51 LATIN SMALL LETTER O WITH MACRON AND GRAVE 014D 0300 1E50 1 # \xE50 # \x1E52 LATIN CAPITAL LETTER O WITH MACRON AND ACUTE 014C 0301 1E53 # \x # \x1E53 LATIN SMALL LETTER O WITH MACRON AND ACUTE 014D 0301 1E52 1 # \xE52 # \x1E54 LATIN CAPITAL LETTER P WITH ACUTE 0050 0301 1E55 # \x1E55 LATIN SMALL LETTER P WITH ACUTE 0070 0301 1E54 1E54 # \x1E56 LATIN CAPITAL LETTER P WITH DOT ABOVE 0050 0307 1E57 # \x1E57 LATIN SMALL LETTER P WITH DOT ABOVE 0070 0307 1E56 1E56 # \x1E58 LATIN CAPITAL LETTER WITH DOT ABOVE 0052 0307 1E59 # \x1E59 LATIN SMALL LETTER WITH DOT ABOVE 0072 0307 1E58 1E58 # \x1E5A LATIN CAPITAL LETTER WITH DOT BELOW 0052 0323 1E5B # \x1E5B LATIN SMALL LETTER WITH DOT BELOW 0072 0323 1E5A 1E5A # \x1E5C LATIN CAPITAL LETTER WITH DOT BELOW AND MACRON 1E5A 0304 # \x1E5D # \x1E5D LATIN SMALL LETTER WITH DOT BELOW AND MACRON 1E5B 0304 1E5 # \xC 1E5C # \x1E5E LATIN CAPITAL LETTER WITH LINE BELOW 0052 0331 1E5F # \x1E5F LATIN SMALL LETTER WITH LINE BELOW 0072 0331 1E5E 1E5E # \x1E60 LATIN CAPITAL LETTER S WITH DOT ABOVE 0053 0307 1E61 # \x1E61 LATIN SMALL LETTER S WITH DOT ABOVE 0073 0307 1E60 1E60 # \x1E62 LATIN CAPITAL LETTER S WITH DOT BELOW 0053 0323 1E63 # \x1E63 LATIN SMALL LETTER S WITH DOT BELOW 0073 0323 1E62 1E62 # \x1E64 LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE 015A 0307 1 # \xE65 # \x1E65 LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE 015B 0307 1E64 # \x 1E64 # \x1E66 LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE 0160 0307 1 # \xE67 # \x1E67 LATIN SMALL LETTER S WITH CARON AND DOT ABOVE 0161 0307 1E66 # \x 1E66 # \x1E68 LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE 1E62 0307 # \x 1E69 # \x1E69 LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE 1E63 0307 # \x1E68 1E68 # \x1E6A LATIN CAPITAL LETTER T WITH DOT ABOVE 0054 0307 1E6B # \x1E6B LATIN SMALL LETTER T WITH DOT ABOVE 0074 0307 1E6A 1E6A # \x1E6C LATIN CAPITAL LETTER T WITH DOT BELOW 0054 0323 1E6D # \x1E6D LATIN SMALL LETTER T WITH DOT BELOW 0074 0323 1E6C 1E6C # \x1E6E LATIN CAPITAL LETTER T WITH LINE BELOW 0054 0331 1E6F # \x1E6F LATIN SMALL LETTER T WITH LINE BELOW 0074 0331 1E6E 1E6E # \x1E70 LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW 0054 032D 1E71 # \x # \x1E71 LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW 0074 032D 1E70 1 # \xE70 # \x1E72 LATIN CAPITAL LETTER U WITH DIAERESIS BELOW 0055 0324 1E73 # \x1E73 LATIN SMALL LETTER U WITH DIAERESIS BELOW 0075 0324 1E72 1E # \x72 # \x1E74 LATIN CAPITAL LETTER U WITH TILDE BELOW 0055 0330 1E75 # \x1E75 LATIN SMALL LETTER U WITH TILDE BELOW 0075 0330 1E74 1E74 # \x1E76 LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW 0055 032D 1E77 # \x # \x1E77 LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW 0075 032D 1E76 1 # \xE76 # \x1E78 LATIN CAPITAL LETTER U WITH TILDE AND ACUTE 0168 0301 1E79 # \x1E79 LATIN SMALL LETTER U WITH TILDE AND ACUTE 0169 0301 1E78 1E # \x78 # \x1E7A LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS 016A 0308 # \x1E7B # \x1E7B LATIN SMALL LETTER U WITH MACRON AND DIAERESIS 016B 0308 1E7 # \xA 1E7A # \x1E7C LATIN CAPITAL LETTER V WITH TILDE 0056 0303 1E7D # \x1E7D LATIN SMALL LETTER V WITH TILDE 0076 0303 1E7C 1E7C # \x1E7E LATIN CAPITAL LETTER V WITH DOT BELOW 0056 0323 1E7F # \x1E7F LATIN SMALL LETTER V WITH DOT BELOW 0076 0323 1E7E 1E7E # \x1E80 LATIN CAPITAL LETTER W WITH GRAVE 0057 0300 1E81 # \x1E81 LATIN SMALL LETTER W WITH GRAVE 0077 0300 1E80 1E80 # \x1E82 LATIN CAPITAL LETTER W WITH ACUTE 0057 0301 1E83 # \x1E83 LATIN SMALL LETTER W WITH ACUTE 0077 0301 1E82 1E82 # \x1E84 LATIN CAPITAL LETTER W WITH DIAERESIS 0057 0308 1E85 # \x1E85 LATIN SMALL LETTER W WITH DIAERESIS 0077 0308 1E84 1E84 # \x1E86 LATIN CAPITAL LETTER W WITH DOT ABOVE 0057 0307 1E87 # \x1E87 LATIN SMALL LETTER W WITH DOT ABOVE 0077 0307 1E86 1E86 # \x1E88 LATIN CAPITAL LETTER W WITH DOT BELOW 0057 0323 1E89 # \x1E89 LATIN SMALL LETTER W WITH DOT BELOW 0077 0323 1E88 1E88 # \x1E8A LATIN CAPITAL LETTER X WITH DOT ABOVE 0058 0307 1E8B # \x1E8B LATIN SMALL LETTER X WITH DOT ABOVE 0078 0307 1E8A 1E8A # \x1E8C LATIN CAPITAL LETTER X WITH DIAERESIS 0058 0308 1E8D # \x1E8D LATIN SMALL LETTER X WITH DIAERESIS 0078 0308 1E8C 1E8C # \x1E8E LATIN CAPITAL LETTER Y WITH DOT ABOVE 0059 0307 1E8F # \x1E8F LATIN SMALL LETTER Y WITH DOT ABOVE 0079 0307 1E8E 1E8E # \x1E90 LATIN CAPITAL LETTER Z WITH CIRCUMFLEX 005A 0302 1E91 # \x1E91 LATIN SMALL LETTER Z WITH CIRCUMFLEX 007A 0302 1E90 1E90 # \x1E92 LATIN CAPITAL LETTER Z WITH DOT BELOW 005A 0323 1E93 # \x1E93 LATIN SMALL LETTER Z WITH DOT BELOW 007A 0323 1E92 1E92 # \x1E94 LATIN CAPITAL LETTER Z WITH LINE BELOW 005A 0331 1E95 # \x1E95 LATIN SMALL LETTER Z WITH LINE BELOW 007A 0331 1E94 1E94 # \x1E96 LATIN SMALL LETTER H WITH LINE BELOW 0068 0331 # \x1E97 LATIN SMALL LETTER T WITH DIAERESIS 0074 0308 # \x1E98 LATIN SMALL LETTER W WITH RING ABOVE 0077 030A # \x1E99 LATIN SMALL LETTER Y WITH RING ABOVE 0079 030A # \x1E9A LATIN SMALL LETTER A WITH RIGHT HALF RING 0061 02BE # \x # \x1E9B LATIN SMALL LETTER LONG S WITH DOT ABOVE 017F 0307 1E60 1E6 # \x0 # \x1EA0 LATIN CAPITAL LETTER A WITH DOT BELOW 0041 0323 1EA1 # \x1EA1 LATIN SMALL LETTER A WITH DOT BELOW 0061 0323 1EA0 1EA0 # \x1EA2 LATIN CAPITAL LETTER A WITH HOOK ABOVE 0041 0309 1EA3 # \x1EA3 LATIN SMALL LETTER A WITH HOOK ABOVE 0061 0309 1EA2 1EA2 # \x1EA4 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE 00C2 0301 # \x1EA5 # \x1EA5 LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE 00E2 0301 1EA # \x4 1EA4 # \x1EA6 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE 00C2 0300 # \x1EA7 # \x1EA7 LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE 00E2 0300 1EA # \x6 1EA6 # \x1EA8 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE 00C2 0309 # \xN 1EA9 # \x1EA9 LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE 00E2 0309 # \x 1EA8 1EA8 # \x1EAA LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE 00C2 0303 # \x1EAB # \x1EAB LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE 00E2 0303 1EA # \xA 1EAA # \x1EAC LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW 1EA0 0302 N # \x 1EAD # \x1EAD LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW 1EA1 0302 # \x 1EAC 1EAC # \x1EAE LATIN CAPITAL LETTER A WITH BREVE AND ACUTE 0102 0301 1EAF # \x1EAF LATIN SMALL LETTER A WITH BREVE AND ACUTE 0103 0301 1EAE 1E # \xAE # \x1EB0 LATIN CAPITAL LETTER A WITH BREVE AND GRAVE 0102 0300 1EB1 # \x1EB1 LATIN SMALL LETTER A WITH BREVE AND GRAVE 0103 0300 1EB0 1E # \xB0 # \x1EB2 LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE 0102 0309 # \x1EB3 # \x1EB3 LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE 0103 0309 1EB # \x2 1EB2 # \x1EB4 LATIN CAPITAL LETTER A WITH BREVE AND TILDE 0102 0303 1EB5 # \x1EB5 LATIN SMALL LETTER A WITH BREVE AND TILDE 0103 0303 1EB4 1E # \xB4 # \x1EB6 LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW 1EA0 0306 1 # \xEB7 # \x1EB7 LATIN SMALL LETTER A WITH BREVE AND DOT BELOW 1EA1 0306 1EB6 # \x 1EB6 # \x1EB8 LATIN CAPITAL LETTER E WITH DOT BELOW 0045 0323 1EB9 # \x1EB9 LATIN SMALL LETTER E WITH DOT BELOW 0065 0323 1EB8 1EB8 # \x1EBA LATIN CAPITAL LETTER E WITH HOOK ABOVE 0045 0309 1EBB # \x1EBB LATIN SMALL LETTER E WITH HOOK ABOVE 0065 0309 1EBA 1EBA # \x1EBC LATIN CAPITAL LETTER E WITH TILDE 0045 0303 1EBD # \x1EBD LATIN SMALL LETTER E WITH TILDE 0065 0303 1EBC 1EBC # \x1EBE LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE 00CA 0301 # \x1EBF # \x1EBF LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE 00EA 0301 1EB # \xE 1EBE # \x1EC0 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE 00CA 0300 # \x1EC1 # \x1EC1 LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE 00EA 0300 1EC # \x0 1EC0 # \x1EC2 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE 00CA 0309 # \xN 1EC3 # \x1EC3 LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE 00EA 0309 # \x 1EC2 1EC2 # \x1EC4 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE 00CA 0303 # \x1EC5 # \x1EC5 LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE 00EA 0303 1EC # \x4 1EC4 # \x1EC6 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW 1EB8 0302 N # \x 1EC7 # \x1EC7 LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW 1EB9 0302 # \x 1EC6 1EC6 # \x1EC8 LATIN CAPITAL LETTER I WITH HOOK ABOVE 0049 0309 1EC9 # \x1EC9 LATIN SMALL LETTER I WITH HOOK ABOVE 0069 0309 1EC8 1EC8 # \x1ECA LATIN CAPITAL LETTER I WITH DOT BELOW 0049 0323 1ECB # \x1ECB LATIN SMALL LETTER I WITH DOT BELOW 0069 0323 1ECA 1ECA # \x1ECC LATIN CAPITAL LETTER O WITH DOT BELOW 004F 0323 1ECD # \x1ECD LATIN SMALL LETTER O WITH DOT BELOW 006F 0323 1ECC 1ECC # \x1ECE LATIN CAPITAL LETTER O WITH HOOK ABOVE 004F 0309 1ECF # \x1ECF LATIN SMALL LETTER O WITH HOOK ABOVE 006F 0309 1ECE 1ECE # \x1ED0 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE 00D4 0301 # \x1ED1 # \x1ED1 LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE 00F4 0301 1ED # \x0 1ED0 # \x1ED2 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE 00D4 0300 # \x1ED3 # \x1ED3 LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE 00F4 0300 1ED # \x2 1ED2 # \x1ED4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE 00D4 0309 # \xN 1ED5 # \x1ED5 LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE 00F4 0309 # \x 1ED4 1ED4 # \x1ED6 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE 00D4 0303 # \x1ED7 # \x1ED7 LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE 00F4 0303 1ED # \x6 1ED6 # \x1ED8 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW 1ECC 0302 N # \x 1ED9 # \x1ED9 LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW 1ECD 0302 # \x 1ED8 1ED8 # \x1EDA LATIN CAPITAL LETTER O WITH HORN AND ACUTE 01A0 0301 1EDB # \x1EDB LATIN SMALL LETTER O WITH HORN AND ACUTE 01A1 0301 1EDA 1ED # \xA # \x1EDC LATIN CAPITAL LETTER O WITH HORN AND GRAVE 01A0 0300 1EDD # \x1EDD LATIN SMALL LETTER O WITH HORN AND GRAVE 01A1 0300 1EDC 1ED # \xC # \x1EDE LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE 01A0 0309 1 # \xEDF # \x1EDF LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE 01A1 0309 1EDE # \x 1EDE # \x1EE0 LATIN CAPITAL LETTER O WITH HORN AND TILDE 01A0 0303 1EE1 # \x1EE1 LATIN SMALL LETTER O WITH HORN AND TILDE 01A1 0303 1EE0 1EE # \x0 # \x1EE2 LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW 01A0 0323 1E # \xE3 # \x1EE3 LATIN SMALL LETTER O WITH HORN AND DOT BELOW 01A1 0323 1EE2 # \x 1EE2 # \x1EE4 LATIN CAPITAL LETTER U WITH DOT BELOW 0055 0323 1EE5 # \x1EE5 LATIN SMALL LETTER U WITH DOT BELOW 0075 0323 1EE4 1EE4 # \x1EE6 LATIN CAPITAL LETTER U WITH HOOK ABOVE 0055 0309 1EE7 # \x1EE7 LATIN SMALL LETTER U WITH HOOK ABOVE 0075 0309 1EE6 1EE6 # \x1EE8 LATIN CAPITAL LETTER U WITH HORN AND ACUTE 01AF 0301 1EE9 # \x1EE9 LATIN SMALL LETTER U WITH HORN AND ACUTE 01B0 0301 1EE8 1EE # \x8 # \x1EEA LATIN CAPITAL LETTER U WITH HORN AND GRAVE 01AF 0300 1EEB # \x1EEB LATIN SMALL LETTER U WITH HORN AND GRAVE 01B0 0300 1EEA 1EE # \xA # \x1EEC LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE 01AF 0309 1 # \xEED # \x1EED LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE 01B0 0309 1EEC # \x 1EEC # \x1EEE LATIN CAPITAL LETTER U WITH HORN AND TILDE 01AF 0303 1EEF # \x1EEF LATIN SMALL LETTER U WITH HORN AND TILDE 01B0 0303 1EEE 1EE # \xE # \x1EF0 LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW 01AF 0323 1E # \xF1 # \x1EF1 LATIN SMALL LETTER U WITH HORN AND DOT BELOW 01B0 0323 1EF0 # \x 1EF0 # \x1EF2 LATIN CAPITAL LETTER Y WITH GRAVE 0059 0300 1EF3 # \x1EF3 LATIN SMALL LETTER Y WITH GRAVE 0079 0300 1EF2 1EF2 # \x1EF4 LATIN CAPITAL LETTER Y WITH DOT BELOW 0059 0323 1EF5 # \x1EF5 LATIN SMALL LETTER Y WITH DOT BELOW 0079 0323 1EF4 1EF4 # \x1EF6 LATIN CAPITAL LETTER Y WITH HOOK ABOVE 0059 0309 1EF7 # \x1EF7 LATIN SMALL LETTER Y WITH HOOK ABOVE 0079 0309 1EF6 1EF6 # \x1EF8 LATIN CAPITAL LETTER Y WITH TILDE 0059 0303 1EF9 # \x1EF9 LATIN SMALL LETTER Y WITH TILDE 0079 0303 1EF8 1EF8 # \x1F00 GREEK SMALL LETTER ALPHA WITH PSILI 03B1 0313 1F08 1F08 # \x1F01 GREEK SMALL LETTER ALPHA WITH DASIA 03B1 0314 1F09 1F09 # \x1F02 GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA 1F00 0300 1F0A # \x 1F0A # \x1F03 GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA 1F01 0300 1F0B # \x 1F0B # \x1F04 GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA 1F00 0301 1F0C # \x 1F0C # \x1F05 GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA 1F01 0301 1F0D # \x 1F0D # \x1F06 GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI 1F00 0342 # \x 1F0E 1F0E # \x1F07 GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI 1F01 0342 # \x 1F0F 1F0F # \x1F08 GREEK CAPITAL LETTER ALPHA WITH PSILI 0391 0313 1F00 # \x1F09 GREEK CAPITAL LETTER ALPHA WITH DASIA 0391 0314 1F01 # \x1F0A GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA 1F08 0300 1 # \xF02 # \x1F0B GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA 1F09 0300 1 # \xF03 # \x1F0C GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA 1F08 0301 1F # \x04 # \x1F0D GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA 1F09 0301 1F # \x05 # \x1F0E GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI 1F08 0342 # \xN 1F06 # \x1F0F GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI 1F09 0342 # \xN 1F07 # \x1F10 GREEK SMALL LETTER EPSILON WITH PSILI 03B5 0313 1F18 1F18 # \x1F11 GREEK SMALL LETTER EPSILON WITH DASIA 03B5 0314 1F19 1F19 # \x1F12 GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA 1F10 0300 1F # \x1A 1F1A # \x1F13 GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA 1F11 0300 1F # \x1B 1F1B # \x1F14 GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA 1F10 0301 1F1 # \xC 1F1C # \x1F15 GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA 1F11 0301 1F1 # \xD 1F1D # \x1F18 GREEK CAPITAL LETTER EPSILON WITH PSILI 0395 0313 1F10 # \x1F19 GREEK CAPITAL LETTER EPSILON WITH DASIA 0395 0314 1F11 # \x1F1A GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA 1F18 0300 # \x 1F12 # \x1F1B GREEK CAPITAL LETTER EPSILON WITH DASIA AND VARIA 1F19 0300 # \x 1F13 # \x1F1C GREEK CAPITAL LETTER EPSILON WITH PSILI AND OXIA 1F18 0301 # \x1F14 # \x1F1D GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA 1F19 0301 # \x1F15 # \x1F20 GREEK SMALL LETTER ETA WITH PSILI 03B7 0313 1F28 1F28 # \x1F21 GREEK SMALL LETTER ETA WITH DASIA 03B7 0314 1F29 1F29 # \x1F22 GREEK SMALL LETTER ETA WITH PSILI AND VARIA 1F20 0300 1F2A # \x1F2A # \x1F23 GREEK SMALL LETTER ETA WITH DASIA AND VARIA 1F21 0300 1F2B # \x1F2B # \x1F24 GREEK SMALL LETTER ETA WITH PSILI AND OXIA 1F20 0301 1F2C 1 # \xF2C # \x1F25 GREEK SMALL LETTER ETA WITH DASIA AND OXIA 1F21 0301 1F2D 1 # \xF2D # \x1F26 GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI 1F20 0342 # \x1F2E 1F2E # \x1F27 GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI 1F21 0342 # \x1F2F 1F2F # \x1F28 GREEK CAPITAL LETTER ETA WITH PSILI 0397 0313 1F20 # \x1F29 GREEK CAPITAL LETTER ETA WITH DASIA 0397 0314 1F21 # \x1F2A GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA 1F28 0300 1F2 # \x2 # \x1F2B GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA 1F29 0300 1F2 # \x3 # \x1F2C GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA 1F28 0301 1F24 # \x # \x1F2D GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA 1F29 0301 1F25 # \x # \x1F2E GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI 1F28 0342 # \x 1F26 # \x1F2F GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI 1F29 0342 # \x 1F27 # \x1F30 GREEK SMALL LETTER IOTA WITH PSILI 03B9 0313 1F38 1F38 # \x1F31 GREEK SMALL LETTER IOTA WITH DASIA 03B9 0314 1F39 1F39 # \x1F32 GREEK SMALL LETTER IOTA WITH PSILI AND VARIA 1F30 0300 1F3A # \x 1F3A # \x1F33 GREEK SMALL LETTER IOTA WITH DASIA AND VARIA 1F31 0300 1F3B # \x 1F3B # \x1F34 GREEK SMALL LETTER IOTA WITH PSILI AND OXIA 1F30 0301 1F3C # \x1F3C # \x1F35 GREEK SMALL LETTER IOTA WITH DASIA AND OXIA 1F31 0301 1F3D # \x1F3D # \x1F36 GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI 1F30 0342 # \x 1F3E 1F3E # \x1F37 GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI 1F31 0342 # \x 1F3F 1F3F # \x1F38 GREEK CAPITAL LETTER IOTA WITH PSILI 0399 0313 1F30 # \x1F39 GREEK CAPITAL LETTER IOTA WITH DASIA 0399 0314 1F31 # \x1F3A GREEK CAPITAL LETTER IOTA WITH PSILI AND VARIA 1F38 0300 1F # \x32 # \x1F3B GREEK CAPITAL LETTER IOTA WITH DASIA AND VARIA 1F39 0300 1F # \x33 # \x1F3C GREEK CAPITAL LETTER IOTA WITH PSILI AND OXIA 1F38 0301 1F3 # \x4 # \x1F3D GREEK CAPITAL LETTER IOTA WITH DASIA AND OXIA 1F39 0301 1F3 # \x5 # \x1F3E GREEK CAPITAL LETTER IOTA WITH PSILI AND PERISPOMENI 1F38 0342 N # \x 1F36 # \x1F3F GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI 1F39 0342 N # \x 1F37 # \x1F40 GREEK SMALL LETTER OMICRON WITH PSILI 03BF 0313 1F48 1F48 # \x1F41 GREEK SMALL LETTER OMICRON WITH DASIA 03BF 0314 1F49 1F49 # \x1F42 GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA 1F40 0300 1F # \x4A 1F4A # \x1F43 GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA 1F41 0300 1F # \x4B 1F4B # \x1F44 GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA 1F40 0301 1F4 # \xC 1F4C # \x1F45 GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA 1F41 0301 1F4 # \xD 1F4D # \x1F48 GREEK CAPITAL LETTER OMICRON WITH PSILI 039F 0313 1F40 # \x1F49 GREEK CAPITAL LETTER OMICRON WITH DASIA 039F 0314 1F41 # \x1F4A GREEK CAPITAL LETTER OMICRON WITH PSILI AND VARIA 1F48 0300 # \x 1F42 # \x1F4B GREEK CAPITAL LETTER OMICRON WITH DASIA AND VARIA 1F49 0300 # \x 1F43 # \x1F4C GREEK CAPITAL LETTER OMICRON WITH PSILI AND OXIA 1F48 0301 # \x1F44 # \x1F4D GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA 1F49 0301 # \x1F45 # \x1F50 GREEK SMALL LETTER UPSILON WITH PSILI 03C5 0313 # \x1F51 GREEK SMALL LETTER UPSILON WITH DASIA 03C5 0314 1F59 1F59 # \x1F52 GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA 1F50 0300 # \x1F53 GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA 1F51 0300 1F # \x5B 1F5B # \x1F54 GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA 1F50 0301 # \x1F55 GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA 1F51 0301 1F5 # \xD 1F5D # \x1F56 GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI 1F50 0342 # \xN # \x1F57 GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI 1F51 0342 # \xN 1F5F 1F5F # \x1F59 GREEK CAPITAL LETTER UPSILON WITH DASIA 03A5 0314 1F51 # \x1F5B GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA 1F59 0300 # \x 1F53 # \x1F5D GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA 1F59 0301 # \x1F55 # \x1F5F GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI 1F59 0342 # \x 1F57 # \x1F60 GREEK SMALL LETTER OMEGA WITH PSILI 03C9 0313 1F68 1F68 # \x1F61 GREEK SMALL LETTER OMEGA WITH DASIA 03C9 0314 1F69 1F69 # \x1F62 GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA 1F60 0300 1F6A # \x 1F6A # \x1F63 GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA 1F61 0300 1F6B # \x 1F6B # \x1F64 GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA 1F60 0301 1F6C # \x 1F6C # \x1F65 GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA 1F61 0301 1F6D # \x 1F6D # \x1F66 GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI 1F60 0342 # \x 1F6E 1F6E # \x1F67 GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI 1F61 0342 # \x 1F6F 1F6F # \x1F68 GREEK CAPITAL LETTER OMEGA WITH PSILI 03A9 0313 1F60 # \x1F69 GREEK CAPITAL LETTER OMEGA WITH DASIA 03A9 0314 1F61 # \x1F6A GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA 1F68 0300 1 # \xF62 # \x1F6B GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA 1F69 0300 1 # \xF63 # \x1F6C GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA 1F68 0301 1F # \x64 # \x1F6D GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA 1F69 0301 1F # \x65 # \x1F6E GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI 1F68 0342 # \xN 1F66 # \x1F6F GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI 1F69 0342 # \xN 1F67 # \x1F70 GREEK SMALL LETTER ALPHA WITH VARIA 03B1 0300 1FBA 1FBA # \x1F71 GREEK SMALL LETTER ALPHA WITH OXIA 03AC 1FBB 1FBB # \x1F72 GREEK SMALL LETTER EPSILON WITH VARIA 03B5 0300 1FC8 1FC8 # \x1F73 GREEK SMALL LETTER EPSILON WITH OXIA 03AD 1FC9 1FC9 # \x1F74 GREEK SMALL LETTER ETA WITH VARIA 03B7 0300 1FCA 1FCA # \x1F75 GREEK SMALL LETTER ETA WITH OXIA 03AE 1FCB 1FCB # \x1F76 GREEK SMALL LETTER IOTA WITH VARIA 03B9 0300 1FDA 1FDA # \x1F77 GREEK SMALL LETTER IOTA WITH OXIA 03AF 1FDB 1FDB # \x1F78 GREEK SMALL LETTER OMICRON WITH VARIA 03BF 0300 1FF8 1FF8 # \x1F79 GREEK SMALL LETTER OMICRON WITH OXIA 03CC 1FF9 1FF9 # \x1F7A GREEK SMALL LETTER UPSILON WITH VARIA 03C5 0300 1FEA 1FEA # \x1F7B GREEK SMALL LETTER UPSILON WITH OXIA 03CD 1FEB 1FEB # \x1F7C GREEK SMALL LETTER OMEGA WITH VARIA 03C9 0300 1FFA 1FFA # \x1F7D GREEK SMALL LETTER OMEGA WITH OXIA 03CE 1FFB 1FFB # \x1F80 GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI 1F00 0345 # \xN 1F88 1F88 # \x1F81 GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI 1F01 0345 # \xN 1F89 1F89 # \x1F82 GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI 1F0 # \x2 0345 1F8A 1F8A # \x1F83 GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI 1F0 # \x3 0345 1F8B 1F8B # \x1F84 GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI 1F04 # \x 0345 1F8C 1F8C # \x1F85 GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI 1F05 # \x 0345 1F8D 1F8D # \x1F86 GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI Ll 0 # \x 1F06 0345 1F8E 1F8E # \x1F87 GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI Ll 0 # \x 1F07 0345 1F8F 1F8F # \x1F88 GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI Lt 1F08 0345 # \x 1F80 # \x1F89 GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI Lt 1F09 0345 # \x 1F81 # \x1F8A GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI Lt # \x1F0A 0345 1F82 # \x1F8B GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI Lt # \x1F0B 0345 1F83 # \x1F8C GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI Lt 1 # \xF0C 0345 1F84 # \x1F8D GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI Lt 1 # \xF0D 0345 1F85 # \x1F8E GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI L # \xt 1F0E 0345 1F86 # \x1F8F GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI L # \xt 1F0F 0345 1F87 # \x1F90 GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI 1F20 0345 # \x 1F98 1F98 # \x1F91 GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI 1F21 0345 # \x 1F99 1F99 # \x1F92 GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI 1F22 # \x0345 1F9A 1F9A # \x1F93 GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI 1F23 # \x0345 1F9B 1F9B # \x1F94 GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI 1F24 0 # \x345 1F9C 1F9C # \x1F95 GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI 1F25 0 # \x345 1F9D 1F9D # \x1F96 GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI # \x 1F26 0345 1F9E 1F9E # \x1F97 GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI # \x 1F27 0345 1F9F 1F9F # \x1F98 GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI Lt 1F28 0345 # \x 1F90 # \x1F99 GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI Lt 1F29 0345 # \x 1F91 # \x1F9A GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI Lt 1F # \x2A 0345 1F92 # \x1F9B GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI Lt 1F # \x2B 0345 1F93 # \x1F9C GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI Lt 1F2 # \xC 0345 1F94 # \x1F9D GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI Lt 1F2 # \xD 0345 1F95 # \x1F9E GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI Lt # \x0 1F2E 0345 1F96 # \x1F9F GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI Lt # \x0 1F2F 0345 1F97 # \x1FA0 GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI 1F60 0345 # \xN 1FA8 1FA8 # \x1FA1 GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI 1F61 0345 # \xN 1FA9 1FA9 # \x1FA2 GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI 1F6 # \x2 0345 1FAA 1FAA # \x1FA3 GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI 1F6 # \x3 0345 1FAB 1FAB # \x1FA4 GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI 1F64 # \x 0345 1FAC 1FAC # \x1FA5 GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI 1F65 # \x 0345 1FAD 1FAD # \x1FA6 GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI Ll 0 # \x 1F66 0345 1FAE 1FAE # \x1FA7 GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI Ll 0 # \x 1F67 0345 1FAF 1FAF # \x1FA8 GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI Lt 1F68 0345 # \x 1FA0 # \x1FA9 GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI Lt 1F69 0345 # \x 1FA1 # \x1FAA GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI Lt # \x1F6A 0345 1FA2 # \x1FAB GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI Lt # \x1F6B 0345 1FA3 # \x1FAC GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI Lt 1 # \xF6C 0345 1FA4 # \x1FAD GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI Lt 1 # \xF6D 0345 1FA5 # \x1FAE GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI L # \xt 1F6E 0345 1FA6 # \x1FAF GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI L # \xt 1F6F 0345 1FA7 # \x1FB0 GREEK SMALL LETTER ALPHA WITH VRACHY 03B1 0306 1FB8 1FB8 # \x1FB1 GREEK SMALL LETTER ALPHA WITH MACRON 03B1 0304 1FB9 1FB9 # \x1FB2 GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI 1F70 0345 # \xN # \x1FB3 GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI 03B1 0345 1FBC # \x1FBC # \x1FB4 GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI 03AC 0345 N # \x # \x1FB6 GREEK SMALL LETTER ALPHA WITH PERISPOMENI 03B1 0342 # \x1FB7 GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI 1FB6 03 # \x45 # \x1FB8 GREEK CAPITAL LETTER ALPHA WITH VRACHY 0391 0306 1FB0 # \x1FB9 GREEK CAPITAL LETTER ALPHA WITH MACRON 0391 0304 1FB1 # \x1FBA GREEK CAPITAL LETTER ALPHA WITH VARIA 0391 0300 1F70 # \x1FBB GREEK CAPITAL LETTER ALPHA WITH OXIA 0386 1F71 # \x1FBC GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI Lt 0391 0345 1F # \xB3 # \x1FBD GREEK KORONIS 0020 0313 # \x1FBE GREEK PROSGEGRAMMENI 03B9 0399 0399 # \x1FBF GREEK PSILI 0020 0313 # \x1FC0 GREEK PERISPOMENI 0020 0342 # \x1FC1 GREEK DIALYTIKA AND PERISPOMENI 00A8 0342 # \x1FC2 GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI 1F74 0345 # \x # \x1FC3 GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI 03B7 0345 1FCC 1F # \xCC # \x1FC4 GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI 03AE 0345 # \x # \x1FC6 GREEK SMALL LETTER ETA WITH PERISPOMENI 03B7 0342 # \x1FC7 GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI 1FC6 0345 # \x # \x1FC8 GREEK CAPITAL LETTER EPSILON WITH VARIA 0395 0300 1F72 # \x1FC9 GREEK CAPITAL LETTER EPSILON WITH OXIA 0388 1F73 # \x1FCA GREEK CAPITAL LETTER ETA WITH VARIA 0397 0300 1F74 # \x1FCB GREEK CAPITAL LETTER ETA WITH OXIA 0389 1F75 # \x1FCC GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI Lt 0397 0345 1FC3 # \x # \x1FCD GREEK PSILI AND VARIA 1FBF 0300 # \x1FCE GREEK PSILI AND OXIA 1FBF 0301 # \x1FCF GREEK PSILI AND PERISPOMENI 1FBF 0342 # \x1FD0 GREEK SMALL LETTER IOTA WITH VRACHY 03B9 0306 1FD8 1FD8 # \x1FD1 GREEK SMALL LETTER IOTA WITH MACRON 03B9 0304 1FD9 1FD9 # \x1FD2 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA 03CA 0300 # \x # \x1FD3 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA 0390 # \x1FD6 GREEK SMALL LETTER IOTA WITH PERISPOMENI 03B9 0342 # \x1FD7 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI 03CA 0342 # \x # \x1FD8 GREEK CAPITAL LETTER IOTA WITH VRACHY 0399 0306 1FD0 # \x1FD9 GREEK CAPITAL LETTER IOTA WITH MACRON 0399 0304 1FD1 # \x1FDA GREEK CAPITAL LETTER IOTA WITH VARIA 0399 0300 1F76 # \x1FDB GREEK CAPITAL LETTER IOTA WITH OXIA 038A 1F77 # \x1FDD GREEK DASIA AND VARIA 1FFE 0300 # \x1FDE GREEK DASIA AND OXIA 1FFE 0301 # \x1FDF GREEK DASIA AND PERISPOMENI 1FFE 0342 # \x1FE0 GREEK SMALL LETTER UPSILON WITH VRACHY 03C5 0306 1FE8 1FE81FE1 GREEK SMALL LETTER UPSILON WITH MACRON 03C5 0304 1FE9 1FE9 # \x1FE2 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA 03CB 0300 # \x1FE3 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA 03B0 # \x1FE4 GREEK SMALL LETTER RHO WITH PSILI 03C1 0313 # \x1FE5 GREEK SMALL LETTER RHO WITH DASIA 03C1 0314 1FEC 1FEC # \x1FE6 GREEK SMALL LETTER UPSILON WITH PERISPOMENI 03C5 0342 # \x1FE7 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI 03CB 0342 # \x # \x1FE8 GREEK CAPITAL LETTER UPSILON WITH VRACHY 03A5 0306 1FE0 # \x1FE9 GREEK CAPITAL LETTER UPSILON WITH MACRON 03A5 0304 1FE1 # \x1FEA GREEK CAPITAL LETTER UPSILON WITH VARIA 03A5 0300 1F7A # \x1FEB GREEK CAPITAL LETTER UPSILON WITH OXIA 038E 1F7B # \x1FEC GREEK CAPITAL LETTER RHO WITH DASIA 03A1 0314 1FE5 # \x1FED GREEK DIALYTIKA AND VARIA 00A8 0300 # \x1FEE GREEK DIALYTIKA AND OXIA 0385 # \x1FEF GREEK VARIA 0060 # \x1FF2 GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI 1F7C 0345 # \xN # \x1FF3 GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI 03C9 0345 1FFC # \x1FFC # \x1FF4 GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI 03CE 0345 N # \x # \x1FF6 GREEK SMALL LETTER OMEGA WITH PERISPOMENI 03C9 0342 # \x1FF7 GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI 1FF6 03 # \x45 # \x1FF8 GREEK CAPITAL LETTER OMICRON WITH VARIA 039F 0300 1F78 # \x1FF9 GREEK CAPITAL LETTER OMICRON WITH OXIA 038C 1F79 # \x1FFA GREEK CAPITAL LETTER OMEGA WITH VARIA 03A9 0300 1F7C # \x1FFB GREEK CAPITAL LETTER OMEGA WITH OXIA 038F 1F7D # \x1FFC GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI Lt 03A9 0345 1F # \xF3 # \x1FFD GREEK OXIA 00B4 # \x1FFE GREEK DASIA 0020 0314 # \x2000 EN QUAD 2002 # \x2001 EM QUAD 2003 # \x2002 EN SPACE 0020 # \x2003 EM SPACE 0020 # \x2004 THREE-PER-EM SPACE 0020 # \x2005 FOUR-PER-EM SPACE 0020 # \x2006 SIX-PER-EM SPACE 0020 # \x2007 FIGURE SPACE 0020 # \x2008 PUNCTUATION SPACE 0020 space \x2009 0 THIN SPACE 0020 # \x200A HAIR SPACE 0020 # \x200B ZERO WIDTH SPACE # \x200C ZERO WIDTH NON-JOINER # \x200D ZERO WIDTH JOINER # \x200E LEFT-TO-RIGHT MARK # \x200F RIGHT-TO-LEFT MARK # \x2010 HYPHEN # \x2011 NON-BREAKING HYPHEN 2010 # \x2012 FIGURE DASH # \x2013 EN DASH # \x2014 EM DASH # \x2015 HORIZONTAL BAR QUOTATION DASH # \x2016 DOUBLE VERTICAL LINE DOUBLE VERTICAL BAR # \x2017 DOUBLE LOW LINE 0020 0333 SPACING DOUBLE UNDERSCORE # \x2018 LEFT SINGLE QUOTATION MARK Pi SINGLE TURNED COMMA QUOTATION MARK # \x2019 RIGHT SINGLE QUOTATION MARK Pf SINGLE COMMA QUOTATION MARK # \x201A SINGLE LOW-9 QUOTATION MARK LOW SINGLE COMMA QUOTATION MARK # \x201B SINGLE HIGH-REVERSED-9 QUOTATION MARK Pi SINGLE REVERSED COMMA QUOTATION MARK # \x201C LEFT DOUBLE QUOTATION MARK Pi DOUBLE TURNED COMMA QUOTATION MARK # \x201D RIGHT DOUBLE QUOTATION MARK Pf DOUBLE COMMA QUOTATION MARK # \x201E DOUBLE LOW-9 QUOTATION MARK LOW DOUBLE COMMA QUOTATION MARK # \x201F DOUBLE HIGH-REVERSED-9 QUOTATION MARK Pi DOUBLE REVERSED COMMA QUOTATION MARK # \x2020 DAGGER # \x2021 DOUBLE DAGGER sign \x2022 35-35 BULLET # \x2023 TRIANGULAR BULLET # \x2024 ONE DOT LEADER 002E # \x2025 TWO DOT LEADER 002E 002E math \x2026 0-3-3-3-0 HORIZONTAL ELLIPSIS 002E 002E 002E # \x2027 HYPHENATION POINT # \x2028 LINE SEPARATOR # \x2029 PARAGRAPH SEPARATOR Zp B # \x202A LEFT-TO-RIGHT EMBEDDING LRE # \x202B RIGHT-TO-LEFT EMBEDDING RLE # \x202C POP DIRECTIONAL FORMATTING PDF # \x202D LEFT-TO-RIGHT OVERRIDE LRO # \x202E RIGHT-TO-LEFT OVERRIDE RLO # \x202F NARROW NO-BREAK SPACE 0020 # \x2030 PER MILLE SIGN # \x2031 PER TEN THOUSAND SIGN math \x2032 3 PRIME math \x2033 3-3 DOUBLE PRIME 2032 2032 # \x2034 TRIPLE PRIME 2032 2032 2032 # \x2035 REVERSED PRIME # \x2036 REVERSED DOUBLE PRIME 2035 2035 # \x2037 REVERSED TRIPLE PRIME 2035 2035 2035 # \x2038 CARET # \x2039 SINGLE LEFT-POINTING ANGLE QUOTATION MARK LEFT POINTING SINGLE GUILLEMET # \x203A SINGLE RIGHT-POINTING ANGLE QUOTATION MARK Pf Y RIGHT POINTING SINGLE GUILLEMET # \x203B REFERENCE MARK # \x203C DOUBLE EXCLAMATION MARK 0021 0021 # \x203D INTERROBANG # \x203E OVERLINE 0020 0305 SPACING OVERSCORE # \x203F UNDERTIE Enotikon # \x2040 CHARACTER TIE # \x2041 CARET INSERTION POINT # \x2042 ASTERISM # \x2043 HYPHEN BULLET # \x2044 FRACTION SLASH CS # \x2045 LEFT SQUARE BRACKET WITH QUILL # \x2046 RIGHT SQUARE BRACKET WITH QUILL # \x2047 DOUBLE QUESTION MARK 003F 003F # \x2048 QUESTION EXCLAMATION MARK 003F 0021 # \x2049 EXCLAMATION QUESTION MARK 0021 003F # \x204A TIRONIAN SIGN # \x204B REVERSED PILCROW SIGN # \x204C BLACK LEFTWARDS BULLET # \x204D BLACK RIGHTWARDS BULLET # \x204E LOW ASTERISK # \x204F REVERSED SEMICOLON # \x2050 CLOSE UP # \x2051 TWO ASTERISKS ALIGNED VERTICALLY # \x2052 COMMERCIAL MINUS SIGN # \x2053 SWUNG DASH # \x2054 INVERTED UNDERTIE # \x2057 QUADRUPLE PRIME 2032 2032 2032 2032 # \x205F MEDIUM MATHEMATICAL SPACE 0020 # \x2060 WORD JOINER space \x2061 0 FUNCTION APPLICATION # \x2062 INVISIBLE TIMES # \x2063 INVISIBLE SEPARATOR # \x206A INHIBIT SYMMETRIC SWAPPING # \x206B ACTIVATE SYMMETRIC SWAPPING # \x206C INHIBIT ARABIC FORM SHAPING # \x206D ACTIVATE ARABIC FORM SHAPING # \x206E NATIONAL DIGIT SHAPES # \x206F NOMINAL DIGIT SHAPES # \x2070 SUPERSCRIPT ZERO 0030 0 SUPERSCRIPT DIGIT ZERO # \x2071 SUPERSCRIPT LATIN SMALL LETTER I 0069 # \x2074 SUPERSCRIPT FOUR 0034 4 4 SUPERSCRIPT DIGIT FOUR # \x2075 SUPERSCRIPT FIVE 0035 5 5 SUPERSCRIPT DIGIT FIVE # \x2076 SUPERSCRIPT SIX 0036 6 6 SUPERSCRIPT DIGIT SIX # \x2077 SUPERSCRIPT SEVEN 0037 7 7 SUPERSCRIPT DIGIT SEVEN # \x2078 SUPERSCRIPT EIGHT 0038 8 8 SUPERSCRIPT DIGIT EIGHT # \x2079 SUPERSCRIPT NINE 0039 9 9 SUPERSCRIPT DIGIT NINE # \x207A SUPERSCRIPT PLUS SIGN 002B # \x207B SUPERSCRIPT MINUS 2212 SUPERSCRIPT HYPHEN-MINUS # \x207C SUPERSCRIPT EQUALS SIGN 003D # \x207D SUPERSCRIPT LEFT PARENTHESIS Ps 0028 Y SUPERSCRIPT OPENING PARENTHESIS # \x207E SUPERSCRIPT RIGHT PARENTHESIS Pe 0029 Y SUPERSCRIPT CLOSING PARENTHESIS # \x207F SUPERSCRIPT LATIN SMALL LETTER 006E # \x2080 SUBSCRIPT ZERO 0030 0 SUBSCRIPT DIGIT ZERO # \x2081 SUBSCRIPT ONE 0031 1 1 SUBSCRIPT DIGIT ONE # \x2082 SUBSCRIPT TWO 0032 2 2 SUBSCRIPT DIGIT TWO # \x2083 SUBSCRIPT THREE 0033 3 3 SUBSCRIPT DIGIT THREE # \x2084 SUBSCRIPT FOUR 0034 4 4 SUBSCRIPT DIGIT FOUR # \x2085 SUBSCRIPT FIVE 0035 5 5 SUBSCRIPT DIGIT FIVE # \x2086 SUBSCRIPT SIX 0036 6 6 SUBSCRIPT DIGIT SIX # \x2087 SUBSCRIPT SEVEN 0037 7 7 SUBSCRIPT DIGIT SEVEN # \x2088 SUBSCRIPT EIGHT 0038 8 8 SUBSCRIPT DIGIT EIGHT # \x2089 SUBSCRIPT NINE 0039 9 9 SUBSCRIPT DIGIT NINE # \x208A SUBSCRIPT PLUS SIGN 002B # \x208B SUBSCRIPT MINUS 2212 SUBSCRIPT HYPHEN-MINUS # \x208C SUBSCRIPT EQUALS SIGN 003D # \x208D SUBSCRIPT LEFT PARENTHESIS Ps 0028 Y SUBSCRIPT OPENING PARENTHESIS # \x208E SUBSCRIPT RIGHT PARENTHESIS Pe 0029 Y SUBSCRIPT CLOSING PARENTHESIS # \x20A0 EURO-CURRENCY SIGN # \x20A1 COLON SIGN # \x20A2 CRUZEIRO SIGN # \x20A3 FRENCH FRANC SIGN # \x20A4 LIRA SIGN # \x20A5 MILL SIGN # \x20A6 NAIRA SIGN # \x20A7 PESETA SIGN # \x20A8 RUPEE SIGN Sc 0052 0073 # \x20A9 WON SIGN # \x20AA NEW SHEQEL SIGN # \x20AB DONG SIGN # \x20AC EURO SIGN # \x20AD KIP SIGN # \x20AE TUGRIK SIGN # \x20AF DRACHMA SIGN # \x20B0 GERMAN PENNY SIGN # \x20B1 PESO SIGN # \x20D0 COMBINING LEFT HARPOON ABOVE 230 NON-SPACING LEFT HARPOON ABOVE # \x20D1 COMBINING RIGHT HARPOON ABOVE 230 NON-SPACING RIGHT HARPOON ABOVE # \x20D2 COMBINING LONG VERTICAL LINE OVERLAY 1 NON-SPACING LONG VERTICAL BAR OVERLAY # \x20D3 COMBINING SHORT VERTICAL LINE OVERLAY 1 NON-SPACING SHORT VERTICAL BAR OVERLAY # \x20D4 COMBINING ANTICLOCKWISE ARROW ABOVE 230 NON-SPACING ANTICLOCKWISE ARROW ABOVE # \x20D5 COMBINING CLOCKWISE ARROW ABOVE 230 NON-SPACING CLOCKWISE ARROW ABOVE # \x20D6 COMBINING LEFT ARROW ABOVE 230 NON-SPACING LEFT ARROW ABOVE # \x # \x20D7 COMBINING RIGHT ARROW ABOVE 230 NON-SPACING RIGHT ARROW ABOVE # \x # \x20D8 COMBINING RING OVERLAY 1 NON-SPACING RING OVERLAY # \x20D9 COMBINING CLOCKWISE RING OVERLAY 1 NON-SPACING CLOCKWISE RING # \x OVERLAY # \x20DA COMBINING ANTICLOCKWISE RING OVERLAY 1 NON-SPACING ANTICLOCKWISE RING OVERLAY # \x20DB COMBINING THREE DOTS ABOVE 230 NON-SPACING THREE DOTS ABOVE # \x # \x20DC COMBINING FOUR DOTS ABOVE 230 NON-SPACING FOUR DOTS ABOVE # \x20DD COMBINING ENCLOSING CIRCLE Me ENCLOSING CIRCLE # \x20DE COMBINING ENCLOSING SQUARE Me ENCLOSING SQUARE # \x20DF COMBINING ENCLOSING DIAMOND Me ENCLOSING DIAMOND # \x20E0 COMBINING ENCLOSING CIRCLE BACKSLASH Me ENCLOSING CIRCLE SLASH # \x # \x20E1 COMBINING LEFT RIGHT ARROW ABOVE 230 NON-SPACING LEFT RIGHT A # \xRROW ABOVE # \x20E2 COMBINING ENCLOSING SCREEN Me # \x20E3 COMBINING ENCLOSING KEYCAP Me # \x20E4 COMBINING ENCLOSING UPWARD POINTING TRIANGLE Me # \x20E5 COMBINING REVERSE SOLIDUS OVERLAY 1 # \x20E6 COMBINING DOUBLE VERTICAL STROKE OVERLAY 1 # \x20E7 COMBINING ANNUITY SYMBOL 230 # \x20E8 COMBINING TRIPLE UNDERDOT 220 # \x20E9 COMBINING WIDE BRIDGE ABOVE 230 # \x20EA COMBINING LEFTWARDS ARROW OVERLAY 1 # \x2100 ACCOUNT OF 0061 002F 0063 # \x2101 ADDRESSED TO THE SUBJECT 0061 002F 0073 # \x2102 DOUBLE-STRUCK CAPITAL C 0043 DOUBLE-STRUCK C # \x2103 DEGREE CELSIUS 00B0 0043 DEGREES CENTIGRADE # \x2104 CENTRE LINE SYMBOL C SYMBOL # \x2105 CARE OF 0063 002F 006F # \x2106 CADA UNA 0063 002F 0075 # \x2107 EULER CONSTANT 0190 EULERS # \x2108 SCRUPLE # \x2109 DEGREE FAHRENHEIT 00B0 0046 DEGREES FAHRENHEIT # \x210A SCRIPT SMALL G 0067 # \x210B SCRIPT CAPITAL H 0048 SCRIPT H # \x210C BLACK-LETTER CAPITAL H 0048 BLACK-LETTER H # \x210D DOUBLE-STRUCK CAPITAL H 0048 DOUBLE-STRUCK H # \x210E PLANCK CONSTANT 0068 # \x210F PLANCK CONSTANT OVER TWO PI 0127 PLANCK CONSTANT OVER 2 PI # \x2110 SCRIPT CAPITAL I 0049 SCRIPT I # \x2111 BLACK-LETTER CAPITAL I 0049 BLACK-LETTER I # \x2112 SCRIPT CAPITAL 004C SCRIPT lowercase \x2113 4-123 SCRIPT SMALL 006C math \x2114 456-1256 B BAR SYMBOL # \x2115 DOUBLE-STRUCK CAPITAL 004E DOUBLE-STRUCK # \x2116 NUMERO SIGN 004E 006F NUMERO # \x2117 SOUND RECORDING COPYRIGHT # \x2118 SCRIPT CAPITAL P SCRIPT P # \x2119 DOUBLE-STRUCK CAPITAL P 0050 DOUBLE-STRUCK P # \x211A DOUBLE-STRUCK CAPITAL Q 0051 DOUBLE-STRUCK Q # \x211B SCRIPT CAPITAL 0052 SCRIPT # \x211C BLACK-LETTER CAPITAL 0052 BLACK-LETTER math \x211D 4-6-1235 DOUBLE-STRUCK CAPITAL 0052 DOUBLE-STRUCK # \x211E PRESCRIPTION TAKE # \x211F RESPONSE # \x2120 SERVICE MARK 0053 004D # \x2121 TELEPHONE SIGN 0054 0045 004C T E SYMBOL # \x2122 TRADE MARK SIGN 0054 004D TRADEMARK # \x2123 VERSICLE # \x2124 DOUBLE-STRUCK CAPITAL Z 005A DOUBLE-STRUCK Z # \x2125 OUNCE SIGN OUNCE # \x2126 OHM SIGN 03A9 OHM 03C9 # \x2127 INVERTED OHM SIGN MHO # \x2128 BLACK-LETTER CAPITAL Z 005A BLACK-LETTER Z # \x2129 TURNED GREEK SMALL LETTER IOTA # \x212A KELVIN SIGN 004B DEGREES KELVIN 006B # \x212B ANGSTROM SIGN 00C5 ANGSTROM UNIT 00E5 # \x212C SCRIPT CAPITAL B 0042 SCRIPT B # \x212D BLACK-LETTER CAPITAL C 0043 BLACK-LETTER C # \x212E ESTIMATED SYMBOL # \x212F SCRIPT SMALL E 0065 # \x2130 SCRIPT CAPITAL E 0045 SCRIPT E # \x2131 SCRIPT CAPITAL F 0046 SCRIPT F # \x2132 TURNED CAPITAL F TURNED F # \x2133 SCRIPT CAPITAL M 004D SCRIPT M # \x2134 SCRIPT SMALL O 006F # \x2135 ALEF SYMBOL 05D0 FIRST TRANSFINITE CARDINAL # \x2136 BET SYMBOL 05D1 SECOND TRANSFINITE CARDINAL # \x2137 GIMEL SYMBOL 05D2 THIRD TRANSFINITE CARDINAL # \x2138 DALET SYMBOL 05D3 FOURTH TRANSFINITE CARDINAL # \x2139 INFORMATION SOURCE 0069 # \x213A ROTATED CAPITAL Q # \x213B FACSIMILE SIGN 0046 0041 0058 # \x213D DOUBLE-STRUCK SMALL GAMMA 03B3 # \x213E DOUBLE-STRUCK CAPITAL GAMMA 0393 # \x213F DOUBLE-STRUCK CAPITAL PI 03A0 # \x2140 DOUBLE-STRUCK N-ARY SUMMATION 2211 Y # \x2141 TURNED SANS-SERIF CAPITAL G # \x2142 TURNED SANS-SERIF CAPITAL # \x2143 REVERSED SANS-SERIF CAPITAL # \x2144 TURNED SANS-SERIF CAPITAL Y # \x2145 DOUBLE-STRUCK ITALIC CAPITAL D 0044 # \x2146 DOUBLE-STRUCK ITALIC SMALL D 0064 # \x2147 DOUBLE-STRUCK ITALIC SMALL E 0065 # \x2148 DOUBLE-STRUCK ITALIC SMALL I 0069 # \x2149 DOUBLE-STRUCK ITALIC SMALL J 006A # \x214A PROPERTY LINE # \x214B TURNED AMPERSAND # \x2153 VULGAR FRACTION ONE THIRD No 0031 2044 0033 1/3 FRACTI # \xON ONE THIRD # \x2154 VULGAR FRACTION TWO THIRDS No 0032 2044 0033 2/3 FRACTION TWO THIRDS # \x2155 VULGAR FRACTION ONE FIFTH No 0031 2044 0035 1/5 FRACTION ONE FIFTH # \x2156 VULGAR FRACTION TWO FIFTHS No 0032 2044 0035 2/5 FRACTION TWO FIFTHS # \x2157 VULGAR FRACTION THREE FIFTHS No 0033 2044 0035 3/5 FRA # \xCTION THREE FIFTHS # \x2158 VULGAR FRACTION FOUR FIFTHS No 0034 2044 0035 4/5 FRAC # \xTION FOUR FIFTHS # \x2159 VULGAR FRACTION ONE SIXTH No 0031 2044 0036 1/6 FRACTI # \xON ONE SIXTH # \x215A VULGAR FRACTION FIVE SIXTHS No 0035 2044 0036 5/6 FRAC # \xTION FIVE SIXTHS # \x215B VULGAR FRACTION ONE EIGHTH No 0031 2044 0038 1/8 FRACT # \xION ONE EIGHTH # \x215C VULGAR FRACTION THREE EIGHTHS No 0033 2044 0038 3/8 FR # \xACTION THREE EIGHTHS # \x215D VULGAR FRACTION FIVE EIGHTHS No 0035 2044 0038 5/8 FRA # \xCTION FIVE EIGHTHS # \x215E VULGAR FRACTION SEVEN EIGHTHS No 0037 2044 0038 7/8 FR # \xACTION SEVEN EIGHTHS # \x215F FRACTION NUMERATOR ONE No 0031 2044 1 # \x2160 ROMAN NUMERAL ONE Nl 0049 1 2170 # \x2161 ROMAN NUMERAL TWO Nl 0049 0049 2 2171 # \x2162 ROMAN NUMERAL THREE Nl 0049 0049 0049 3 2172 # \x2163 ROMAN NUMERAL FOUR Nl 0049 0056 4 2173 # \x2164 ROMAN NUMERAL FIVE Nl 0056 5 2174 # \x2165 ROMAN NUMERAL SIX Nl 0056 0049 6 2175 # \x2166 ROMAN NUMERAL SEVEN Nl 0056 0049 0049 7 2176 # \x2167 ROMAN NUMERAL EIGHT Nl 0056 0049 0049 0049 8 2177 # \x2168 ROMAN NUMERAL NINE Nl 0049 0058 9 2178 # \x2169 ROMAN NUMERAL TEN Nl 0058 10 2179 # \x216A ROMAN NUMERAL ELEVEN Nl 0058 0049 11 217A # \x216B ROMAN NUMERAL TWELVE Nl 0058 0049 0049 12 217B # \x216C ROMAN NUMERAL FIFTY Nl 004C 50 217C # \x216D ROMAN NUMERAL ONE HUNDRED Nl 0043 100 217D # \x216E ROMAN NUMERAL FIVE HUNDRED Nl 0044 500 217E # \x216F ROMAN NUMERAL ONE THOUSAND Nl 004D 1000 217F # \x2170 SMALL ROMAN NUMERAL ONE Nl 0069 1 2160 2160 # \x2171 SMALL ROMAN NUMERAL TWO Nl 0069 0069 2 2161 2161 # \x2172 SMALL ROMAN NUMERAL THREE Nl 0069 0069 0069 3 2162 216 # \x2 # \x2173 SMALL ROMAN NUMERAL FOUR Nl 0069 0076 4 2163 2163 # \x2174 SMALL ROMAN NUMERAL FIVE Nl 0076 5 2164 2164 # \x2175 SMALL ROMAN NUMERAL SIX Nl 0076 0069 6 2165 2165 # \x2176 SMALL ROMAN NUMERAL SEVEN Nl 0076 0069 0069 7 2166 216 # \x6 # \x2177 SMALL ROMAN NUMERAL EIGHT Nl 0076 0069 0069 0069 8 2167 # \x 2167 # \x2178 SMALL ROMAN NUMERAL NINE Nl 0069 0078 9 2168 2168 # \x2179 SMALL ROMAN NUMERAL TEN Nl 0078 10 2169 2169 # \x217A SMALL ROMAN NUMERAL ELEVEN Nl 0078 0069 11 216A 216A # \x217B SMALL ROMAN NUMERAL TWELVE Nl 0078 0069 0069 12 216B 2 # \x16B # \x217C SMALL ROMAN NUMERAL FIFTY Nl 006C 50 216C 216C # \x217D SMALL ROMAN NUMERAL ONE HUNDRED Nl 0063 100 216D 216D # \x217E SMALL ROMAN NUMERAL FIVE HUNDRED Nl 0064 500 216E 216E # \x217F SMALL ROMAN NUMERAL ONE THOUSAND Nl 006D 1000 216F 216 # \xF # \x2180 ROMAN NUMERAL ONE THOUSAND C D Nl 1000 # \x2181 ROMAN NUMERAL FIVE THOUSAND Nl 5000 # \x2182 ROMAN NUMERAL TEN THOUSAND Nl 10000 # \x2183 ROMAN NUMERAL REVERSED ONE HUNDRED Nl # \x2190 LEFTWARDS ARROW LEFT ARROW # \x2191 UPWARDS ARROW UP ARROW math \x2192 0-25-135-0 RIGHTWARDS ARROW RIGHT ARROW # \x2193 DOWNWARDS ARROW DOWN ARROW # \x2194 LEFT RIGHT ARROW # \x2195 UP DOWN ARROW # \x2196 NORTH WEST ARROW UPPER LEFT ARROW # \x2197 NORTH EAST ARROW UPPER RIGHT ARROW # \x2198 SOUTH EAST ARROW LOWER RIGHT ARROW # \x2199 SOUTH WEST ARROW LOWER LEFT ARROW # \x219A LEFTWARDS ARROW WITH STROKE 2190 0338 LEFT ARROW WITH STROKE # \x # \x219B RIGHTWARDS ARROW WITH STROKE 2192 0338 RIGHT ARROW WITH STROK # \xE # \x219C LEFTWARDS WAVE ARROW LEFT WAVE ARROW # \x219D RIGHTWARDS WAVE ARROW RIGHT WAVE ARROW # \x219E LEFTWARDS TWO HEADED ARROW LEFT TWO HEADED ARROW # \x219F UPWARDS TWO HEADED ARROW UP TWO HEADED ARROW # \x21A0 RIGHTWARDS TWO HEADED ARROW RIGHT TWO HEADED ARROW # \x21A1 DOWNWARDS TWO HEADED ARROW DOWN TWO HEADED ARROW # \x21A2 LEFTWARDS ARROW WITH TAIL LEFT ARROW WITH TAIL # \x21A3 RIGHTWARDS ARROW WITH TAIL RIGHT ARROW WITH TAIL # \x21A4 LEFTWARDS ARROW FROM BAR LEFT ARROW FROM BAR # \x21A5 UPWARDS ARROW FROM BAR UP ARROW FROM BAR # \x21A6 RIGHTWARDS ARROW FROM BAR RIGHT ARROW FROM BAR # \x21A7 DOWNWARDS ARROW FROM BAR DOWN ARROW FROM BAR # \x21A8 UP DOWN ARROW WITH BASE # \x21A9 LEFTWARDS ARROW WITH HOOK LEFT ARROW WITH HOOK # \x21AA RIGHTWARDS ARROW WITH HOOK RIGHT ARROW WITH HOOK # \x21AB LEFTWARDS ARROW WITH LOOP LEFT ARROW WITH LOOP # \x21AC RIGHTWARDS ARROW WITH LOOP RIGHT ARROW WITH LOOP # \x21AD LEFT RIGHT WAVE ARROW # \x21AE LEFT RIGHT ARROW WITH STROKE 2194 0338 # \x21AF DOWNWARDS ZIGZAG ARROW DOWN ZIGZAG ARROW # \x21B0 UPWARDS ARROW WITH TIP LEFTWARDS UP ARROW WITH TIP LEFT # \x21B1 UPWARDS ARROW WITH TIP RIGHTWARDS UP ARROW WITH TIP RIGHT # \x # \x21B2 DOWNWARDS ARROW WITH TIP LEFTWARDS DOWN ARROW WITH TIP LEFT # \x # \x21B3 DOWNWARDS ARROW WITH TIP RIGHTWARDS DOWN ARROW WITH TIP RIGH # \xT # \x21B4 RIGHTWARDS ARROW WITH CORNER DOWNWARDS RIGHT ARROW WITH CORNER DOWN # \x21B5 DOWNWARDS ARROW WITH CORNER LEFTWARDS DOWN ARROW WITH CORNER # \x LEFT # \x21B6 ANTICLOCKWISE TOP SEMICIRCLE ARROW # \x21B7 CLOCKWISE TOP SEMICIRCLE ARROW # \x21B8 NORTH WEST ARROW TO LONG BAR UPPER LEFT ARROW TO LONG BAR # \x # \x21B9 LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR LEFT ARR # \xOW TO BAR OVER RIGHT ARROW TO BAR # \x21BA ANTICLOCKWISE OPEN CIRCLE ARROW # \x21BB CLOCKWISE OPEN CIRCLE ARROW # \x21BC LEFTWARDS HARPOON WITH BARB UPWARDS LEFT HARPOON WITH BARB U # \xP # \x21BD LEFTWARDS HARPOON WITH BARB DOWNWARDS LEFT HARPOON WITH BARB # \x DOWN # \x21BE UPWARDS HARPOON WITH BARB RIGHTWARDS UP HARPOON WITH BARB RI # \xGHT # \x21BF UPWARDS HARPOON WITH BARB LEFTWARDS UP HARPOON WITH BARB LEF # \xT # \x21C0 RIGHTWARDS HARPOON WITH BARB UPWARDS RIGHT HARPOON WITH BARB # \x UP # \x21C1 RIGHTWARDS HARPOON WITH BARB DOWNWARDS RIGHT HARPOON WITH BA # \xRB DOWN # \x21C2 DOWNWARDS HARPOON WITH BARB RIGHTWARDS DOWN HARPOON WITH BAR # \xB RIGHT # \x21C3 DOWNWARDS HARPOON WITH BARB LEFTWARDS DOWN HARPOON WITH BARB # \x LEFT # \x21C4 RIGHTWARDS ARROW OVER LEFTWARDS ARROW RIGHT ARROW OVER LEFT # \xARROW # \x21C5 UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW UP ARROW LEFT OF # \xDOWN ARROW # \x21C6 LEFTWARDS ARROW OVER RIGHTWARDS ARROW LEFT ARROW OVER RIGHT # \xARROW # \x21C7 LEFTWARDS PAIRED ARROWS LEFT PAIRED ARROWS # \x21C8 UPWARDS PAIRED ARROWS UP PAIRED ARROWS # \x21C9 RIGHTWARDS PAIRED ARROWS RIGHT PAIRED ARROWS # \x21CA DOWNWARDS PAIRED ARROWS DOWN PAIRED ARROWS # \x21CB LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON LEFT HARPOON OVER # \xRIGHT HARPOON # \x21CC RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON RIGHT HARPOON OVER # \x LEFT HARPOON # \x21CD LEFTWARDS DOUBLE ARROW WITH STROKE 21D0 0338 LEFT DOUBLE ARRO # \xW WITH STROKE # \x21CE LEFT RIGHT DOUBLE ARROW WITH STROKE 21D4 0338 # \x21CF RIGHTWARDS DOUBLE ARROW WITH STROKE 21D2 0338 RIGHT DOUBLE AR # \xROW WITH STROKE # \x21D0 LEFTWARDS DOUBLE ARROW LEFT DOUBLE ARROW # \x21D1 UPWARDS DOUBLE ARROW UP DOUBLE ARROW # \x21D2 RIGHTWARDS DOUBLE ARROW RIGHT DOUBLE ARROW # \x21D3 DOWNWARDS DOUBLE ARROW DOWN DOUBLE ARROW # \x21D4 LEFT RIGHT DOUBLE ARROW # \x21D5 UP DOWN DOUBLE ARROW # \x21D6 NORTH WEST DOUBLE ARROW UPPER LEFT DOUBLE ARROW # \x21D7 NORTH EAST DOUBLE ARROW UPPER RIGHT DOUBLE ARROW # \x21D8 SOUTH EAST DOUBLE ARROW LOWER RIGHT DOUBLE ARROW # \x21D9 SOUTH WEST DOUBLE ARROW LOWER LEFT DOUBLE ARROW # \x21DA LEFTWARDS TRIPLE ARROW LEFT TRIPLE ARROW # \x21DB RIGHTWARDS TRIPLE ARROW RIGHT TRIPLE ARROW # \x21DC LEFTWARDS SQUIGGLE ARROW LEFT SQUIGGLE ARROW # \x21DD RIGHTWARDS SQUIGGLE ARROW RIGHT SQUIGGLE ARROW # \x21DE UPWARDS ARROW WITH DOUBLE STROKE UP ARROW WITH DOUBLE STROKE # \x # \x21DF DOWNWARDS ARROW WITH DOUBLE STROKE DOWN ARROW WITH DOUBLE ST # \xROKE # \x21E0 LEFTWARDS DASHED ARROW LEFT DASHED ARROW # \x21E1 UPWARDS DASHED ARROW UP DASHED ARROW # \x21E2 RIGHTWARDS DASHED ARROW RIGHT DASHED ARROW # \x21E3 DOWNWARDS DASHED ARROW DOWN DASHED ARROW # \x21E4 LEFTWARDS ARROW TO BAR LEFT ARROW TO BAR # \x21E5 RIGHTWARDS ARROW TO BAR RIGHT ARROW TO BAR # \x21E6 LEFTWARDS WHITE ARROW WHITE LEFT ARROW # \x21E7 UPWARDS WHITE ARROW WHITE UP ARROW # \x21E8 RIGHTWARDS WHITE ARROW WHITE RIGHT ARROW # \x21E9 DOWNWARDS WHITE ARROW WHITE DOWN ARROW # \x21EA UPWARDS WHITE ARROW FROM BAR WHITE UP ARROW FROM BAR # \x21EB UPWARDS WHITE ARROW PEDESTAL # \x21EC UPWARDS WHITE ARROW PEDESTAL WITH HORIZONTAL BAR # \x21ED UPWARDS WHITE ARROW PEDESTAL WITH VERTICAL BAR # \x21EE UPWARDS WHITE DOUBLE ARROW # \x21EF UPWARDS WHITE DOUBLE ARROW PEDESTAL # \x21F0 RIGHTWARDS WHITE ARROW FROM WALL # \x21F1 NORTH WEST ARROW TO CORNER # \x21F2 SOUTH EAST ARROW TO CORNER # \x21F3 UP DOWN WHITE ARROW # \x21F4 RIGHT ARROW WITH SMALL CIRCLE # \x21F5 DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW # \x21F6 THREE RIGHTWARDS ARROWS # \x21F7 LEFTWARDS ARROW WITH VERTICAL STROKE # \x21F8 RIGHTWARDS ARROW WITH VERTICAL STROKE # \x21F9 LEFT RIGHT ARROW WITH VERTICAL STROKE # \x21FA LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE # \x21FB RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE # \x21FC LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE # \x21FD LEFTWARDS OPEN-HEADED ARROW # \x21FE RIGHTWARDS OPEN-HEADED ARROW # \x21FF LEFT RIGHT OPEN-HEADED ARROW math \x2200 456-12346 FOR ALL # \x2201 COMPLEMENT # \x2202 PARTIAL DIFFERENTIAL # \x2203 THERE EXISTS # \x2204 THERE DOES NOT EXIST 2203 0338 Y # \x2205 EMPTY SET # \x2206 INCREMENT # \x2207 NABLA math \x2208 46-15 ELEMENT OF # \x2209 NOT AN ELEMENT OF 2208 0338 Y # \x220A SMALL ELEMENT OF # \x220B CONTAINS AS MEMBER # \x220C DOES NOT CONTAIN AS MEMBER 220B 0338 Y # \x220D SMALL CONTAINS AS MEMBER # \x220E END OF PROOF # \x220F N-ARY PRODUCT # \x2210 N-ARY COPRODUCT math \x2211 46-6-234 N-ARY SUMMATION math \x2212 36 MINUS SIGN # \x2213 MINUS-OR-PLUS SIGN # \x2214 DOT PLUS # \x2215 DIVISION SLASH # \x2216 SET MINUS # \x2217 ASTERISK OPERATOR # \x2218 RING OPERATOR # \x2219 BULLET OPERATOR # \x221A SQUARE ROOT # \x221B CUBE ROOT # \x221C FOURTH ROOT # \x221D PROPORTIONAL TO math \x221E 6-123456 INFINITY # \x221F RIGHT ANGLE # \x2220 ANGLE # \x2221 MEASURED ANGLE # \x2222 SPHERICAL ANGLE # \x2223 DIVIDES # \x2224 DOES NOT DIVIDE 2223 0338 Y # \x2225 PARALLEL TO # \x2226 NOT PARALLEL TO 2225 0338 Y # \x2227 LOGICAL AND # \x2228 LOGICAL OR # \x2229 INTERSECTION # \x222A UNION math \x222B 2346 INTEGRAL math \x222C 2346-2346 DOUBLE INTEGRAL 222B 222B Y math \x222D 2346-2346-2346 TRIPLE INTEGRAL 222B 222B 222B Y # \x222E CONTOUR INTEGRAL # \x222F SURFACE INTEGRAL 222E 222E Y # \x2230 VOLUME INTEGRAL 222E 222E 222E Y # \x2231 CLOCKWISE INTEGRAL # \x2232 CLOCKWISE CONTOUR INTEGRAL # \x2233 ANTICLOCKWISE CONTOUR INTEGRAL # \x2234 THEREFORE # \x2235 BECAUSE math \x2236 9-5-2-9 RATIO # \x2237 PROPORTION # \x2238 DOT MINUS # \x2239 EXCESS # \x223A GEOMETRIC PROPORTION # \x223B HOMOTHETIC # \x223C TILDE OPERATOR # \x223D REVERSED TILDE lazy S # \x223E INVERTED LAZY S # \x223F SINE WAVE # \x2240 WREATH PRODUCT # \x2241 NOT TILDE 223C 0338 Y # \x2242 MINUS TILDE # \x2243 ASYMPTOTICALLY EQUAL TO # \x2244 NOT ASYMPTOTICALLY EQUAL TO 2243 0338 Y # \x2245 APPROXIMATELY EQUAL TO # \x2246 APPROXIMATELY BUT NOT ACTUALLY EQUAL TO # \x2247 NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO 2245 0338 Y # \x2248 ALMOST EQUAL TO # \x2249 NOT ALMOST EQUAL TO 2248 0338 Y # \x224A ALMOST EQUAL OR EQUAL TO # \x224B TRIPLE TILDE # \x224C ALL EQUAL TO # \x224D EQUIVALENT TO # \x224E GEOMETRICALLY EQUIVALENT TO # \x224F DIFFERENCE BETWEEN # \x2250 APPROACHES THE LIMIT # \x2251 GEOMETRICALLY EQUAL TO # \x2252 APPROXIMATELY EQUAL TO OR THE IMAGE OF # \x2253 IMAGE OF OR APPROXIMATELY EQUAL TO # \x2254 COLON EQUALS COLON EQUAL # \x2255 EQUALS COLON EQUAL COLON # \x2256 RING IN EQUAL TO # \x2257 RING EQUAL TO # \x2258 CORRESPONDS TO # \x2259 ESTIMATES # \x225A EQUIANGULAR TO # \x225B STAR EQUALS # \x225C DELTA EQUAL TO # \x225D EQUAL TO BY DEFINITION # \x225E MEASURED BY # \x225F QUESTIONED EQUAL TO math \x2260 5-13-46-2 NOT EQUAL TO 003D 0338 Y math \x2261 456-123 IDENTICAL TO # \x2262 NOT IDENTICAL TO 2261 0338 Y # \x2263 STRICTLY EQUIVALENT TO math \x2264 0-5-13-46-13-0 LESS-THAN OR EQUAL TO LESS THAN OR EQUAL TO math \x2265 46-2-46-13 GREATER-THAN OR EQUAL TO GREATER THAN OR EQUAL TO # \x2266 LESS-THAN OVER EQUAL TO LESS THAN OVER EQUAL TO # \x2267 GREATER-THAN OVER EQUAL TO GREATER THAN OVER EQUAL TO # \x2268 LESS-THAN BUT NOT EQUAL TO LESS THAN BUT NOT EQUAL TO # \x2269 GREATER-THAN BUT NOT EQUAL TO GREATER THAN BUT NOT EQUAL TO # \x226A MUCH LESS-THAN MUCH LESS THAN # \x226B MUCH GREATER-THAN MUCH GREATER THAN # \x226C BETWEEN # \x226D NOT EQUIVALENT TO 224D 0338 # \x226E NOT LESS-THAN 003C 0338 Y NOT LESS THAN # \x226F NOT GREATER-THAN 003E 0338 Y NOT GREATER THAN # \x2270 NEITHER LESS-THAN NOR EQUAL TO 2264 0338 Y NEITHER LESS THAN NOR EQUAL TO # \x2271 NEITHER GREATER-THAN NOR EQUAL TO 2265 0338 Y NEITHER GREATER THAN NOR EQUAL TO # \x2272 LESS-THAN OR EQUIVALENT TO LESS THAN OR EQUIVALENT TO # \x2273 GREATER-THAN OR EQUIVALENT TO GREATER THAN OR EQUIVALENT TO # \x2274 NEITHER LESS-THAN NOR EQUIVALENT TO 2272 0338 Y NEITHER LESS THAN NOR EQUIVALENT TO # \x2275 NEITHER GREATER-THAN NOR EQUIVALENT TO 2273 0338 Y NEITHER GREATER THAN NOR EQUIVALENT TO # \x2276 LESS-THAN OR GREATER-THAN LESS THAN OR GREATER THAN # \x2277 GREATER-THAN OR LESS-THAN GREATER THAN OR LESS THAN # \x2278 NEITHER LESS-THAN NOR GREATER-THAN 2276 0338 Y NEITHER LESS THAN NOR GREATER THAN # \x2279 NEITHER GREATER-THAN NOR LESS-THAN 2277 0338 Y NEITHER GREATER THAN NOR LESS THAN # \x227A PRECEDES # \x227B SUCCEEDS # \x227C PRECEDES OR EQUAL TO # \x227D SUCCEEDS OR EQUAL TO # \x227E PRECEDES OR EQUIVALENT TO # \x227F SUCCEEDS OR EQUIVALENT TO # \x2280 DOES NOT PRECEDE 227A 0338 Y # \x2281 DOES NOT SUCCEED 227B 0338 Y # \x2282 SUBSET OF # \x2283 SUPERSET OF # \x2284 NOT A SUBSET OF 2282 0338 Y # \x2285 NOT A SUPERSET OF 2283 0338 Y # \x2286 SUBSET OF OR EQUAL TO # \x2287 SUPERSET OF OR EQUAL TO # \x2288 NEITHER A SUBSET OF NOR EQUAL TO 2286 0338 Y # \x2289 NEITHER A SUPERSET OF NOR EQUAL TO 2287 0338 Y # \x228A SUBSET OF WITH NOT EQUAL TO SUBSET OF OR NOT EQUAL TO # \x228B SUPERSET OF WITH NOT EQUAL TO SUPERSET OF OR NOT EQUAL TO # \x228C MULTISET # \x228D MULTISET MULTIPLICATION # \x228E MULTISET UNION # \x228F SQUARE IMAGE OF # \x2290 SQUARE ORIGINAL OF # \x2291 SQUARE IMAGE OF OR EQUAL TO # \x2292 SQUARE ORIGINAL OF OR EQUAL TO # \x2293 SQUARE CAP # \x2294 SQUARE CUP # \x2295 CIRCLED PLUS # \x2296 CIRCLED MINUS # \x2297 CIRCLED TIMES # \x2298 CIRCLED DIVISION SLASH # \x2299 CIRCLED DOT OPERATOR # \x229A CIRCLED RING OPERATOR # \x229B CIRCLED ASTERISK OPERATOR # \x229C CIRCLED EQUALS # \x229D CIRCLED DASH # \x229E SQUARED PLUS # \x229F SQUARED MINUS # \x22A0 SQUARED TIMES # \x22A1 SQUARED DOT OPERATOR # \x22A2 RIGHT TACK # \x22A3 LEFT TACK # \x22A4 DOWN TACK # \x22A5 UP TACK # \x22A6 ASSERTION # \x22A7 MODELS # \x22A8 TRUE # \x22A9 FORCES # \x22AA TRIPLE VERTICAL BAR RIGHT TURNSTILE # \x22AB DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE # \x22AC DOES NOT PROVE 22A2 0338 Y # \x22AD NOT TRUE 22A8 0338 Y # \x22AE DOES NOT FORCE 22A9 0338 Y # \x22AF NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE 22AB 0338 Y # \x # \x22B0 PRECEDES UNDER RELATION # \x22B1 SUCCEEDS UNDER RELATION # \x22B2 NORMAL SUBGROUP OF # \x22B3 CONTAINS AS NORMAL SUBGROUP # \x22B4 NORMAL SUBGROUP OF OR EQUAL TO # \x22B5 CONTAINS AS NORMAL SUBGROUP OR EQUAL TO # \x22B6 ORIGINAL OF # \x22B7 IMAGE OF # \x22B8 MULTIMAP # \x22B9 HERMITIAN CONJUGATE MATRIX # \x22BA INTERCALATE # \x22BB XOR # \x22BC NAND # \x22BD NOR # \x22BE RIGHT ANGLE WITH ARC # \x22BF RIGHT TRIANGLE # \x22C0 N-ARY LOGICAL AND # \x22C1 N-ARY LOGICAL OR # \x22C2 N-ARY INTERSECTION # \x22C3 N-ARY UNION unknown # \x22C4 DIAMOND OPERATOR # \x22C5 DOT OPERATOR # \x22C6 STAR OPERATOR # \x22C7 DIVISION TIMES # \x22C8 BOWTIE # \x22C9 LEFT NORMAL FACTOR SEMIDIRECT PRODUCT # \x22CA RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT # \x22CB LEFT SEMIDIRECT PRODUCT # \x22CC RIGHT SEMIDIRECT PRODUCT # \x22CD REVERSED TILDE EQUALS # \x22CE CURLY LOGICAL OR # \x22CF CURLY LOGICAL AND # \x22D0 DOUBLE SUBSET # \x22D1 DOUBLE SUPERSET # \x22D2 DOUBLE INTERSECTION # \x22D3 DOUBLE UNION # \x22D4 PITCHFORK # \x22D5 EQUAL AND PARALLEL TO # \x22D6 LESS-THAN WITH DOT LESS THAN WITH DOT # \x22D7 GREATER-THAN WITH DOT GREATER THAN WITH DOT # \x22D8 VERY MUCH LESS-THAN VERY MUCH LESS THAN # \x22D9 VERY MUCH GREATER-THAN VERY MUCH GREATER THAN # \x22DA LESS-THAN EQUAL TO OR GREATER-THAN LESS THAN EQUAL TO OR GRE # \xATER THAN # \x22DB GREATER-THAN EQUAL TO OR LESS-THAN GREATER THAN EQUAL TO OR # \xLESS THAN # \x22DC EQUAL TO OR LESS-THAN EQUAL TO OR LESS THAN # \x22DD EQUAL TO OR GREATER-THAN EQUAL TO OR GREATER THAN # \x22DE EQUAL TO OR PRECEDES # \x22DF EQUAL TO OR SUCCEEDS # \x22E0 DOES NOT PRECEDE OR EQUAL 227C 0338 Y # \x22E1 DOES NOT SUCCEED OR EQUAL 227D 0338 Y # \x22E2 NOT SQUARE IMAGE OF OR EQUAL TO 2291 0338 Y # \x22E3 NOT SQUARE ORIGINAL OF OR EQUAL TO 2292 0338 Y # \x22E4 SQUARE IMAGE OF OR NOT EQUAL TO # \x22E5 SQUARE ORIGINAL OF OR NOT EQUAL TO # \x22E6 LESS-THAN BUT NOT EQUIVALENT TO LESS THAN BUT NOT EQUIVALENT # \x TO # \x22E7 GREATER-THAN BUT NOT EQUIVALENT TO GREATER THAN BUT NOT EQUI # \xVALENT TO # \x22E8 PRECEDES BUT NOT EQUIVALENT TO # \x22E9 SUCCEEDS BUT NOT EQUIVALENT TO # \x22EA NOT NORMAL SUBGROUP OF 22B2 0338 Y # \x22EB DOES NOT CONTAIN AS NORMAL SUBGROUP 22B3 0338 Y # \x22EC NOT NORMAL SUBGROUP OF OR EQUAL TO 22B4 0338 Y # \x22ED DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL 22B5 0338 Y # \x22EE VERTICAL ELLIPSIS # \x22EF MIDLINE HORIZONTAL ELLIPSIS # \x22F0 UP RIGHT DIAGONAL ELLIPSIS # \x22F1 DOWN RIGHT DIAGONAL ELLIPSIS # \x22F2 ELEMENT OF WITH LONG HORIZONTAL STROKE # \x22F3 ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE # \x # \x22F4 SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE # \x Y # \x22F5 ELEMENT OF WITH DOT ABOVE # \x22F6 ELEMENT OF WITH OVERBAR # \x22F7 SMALL ELEMENT OF WITH OVERBAR # \x22F8 ELEMENT OF WITH UNDERBAR # \x22F9 ELEMENT OF WITH TWO HORIZONTAL STROKES # \x22FA CONTAINS WITH LONG HORIZONTAL STROKE # \x22FB CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE # \x22FC SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE # \x # \x22FD CONTAINS WITH OVERBAR # \x22FE SMALL CONTAINS WITH OVERBAR # \x22FF Z NOTATION BAG MEMBERSHIP # \x2300 DIAMETER SIGN # \x2301 ELECTRIC ARROW # \x2302 HOUSE # \x2303 UP ARROWHEAD # \x2304 DOWN ARROWHEAD # \x2305 PROJECTIVE # \x2306 PERSPECTIVE # \x2307 WAVY LINE # \x2308 LEFT CEILING # \x2309 RIGHT CEILING # \x230A LEFT FLOOR # \x230B RIGHT FLOOR # \x230C BOTTOM RIGHT CROP # \x230D BOTTOM LEFT CROP # \x230E TOP RIGHT CROP # \x230F TOP LEFT CROP # \x2310 REVERSED NOT SIGN # \x2311 SQUARE LOZENGE # \x2312 ARC # \x2313 SEGMENT # \x2314 SECTOR # \x2315 TELEPHONE RECORDER # \x2316 POSITION INDICATOR # \x2317 VIEWDATA SQUARE # \x2318 PLACE OF INTEREST SIGN COMMAND KEY # \x2319 TURNED NOT SIGN # \x231A WATCH # \x231B HOURGLASS # \x231C TOP LEFT CORNER # \x231D TOP RIGHT CORNER # \x231E BOTTOM LEFT CORNER # \x231F BOTTOM RIGHT CORNER # \x2320 TOP HALF INTEGRAL # \x2321 BOTTOM HALF INTEGRAL # \x2322 FROWN # \x2323 SMILE # \x2324 UP ARROWHEAD BETWEEN TWO HORIZONTAL BARS ENTER KEY # \x2325 OPTION KEY # \x2326 ERASE TO THE RIGHT DELETE TO THE RIGHT KEY # \x2327 X IN A RECTANGLE BOX CLEAR KEY # \x2328 KEYBOARD # \x2329 LEFT-POINTING ANGLE BRACKET Ps 3008 Y BRA # \x232A RIGHT-POINTING ANGLE BRACKET Pe 3009 Y KET # \x232B ERASE TO THE LEFT DELETE TO THE LEFT KEY # \x232C BENZENE RING # \x232D CYLINDRICITY # \x232E ALL AROUND-PROFILE # \x232F SYMMETRY # \x2330 TOTAL RUNOUT # \x2331 DIMENSION ORIGIN # \x2332 CONICAL TAPER # \x2333 SLOPE # \x2334 COUNTERBORE # \x2335 COUNTERSINK # \x2336 APL FUNCTIONAL SYMBOL I-BEAM # \x2337 APL FUNCTIONAL SYMBOL SQUISH QUAD # \x2338 APL FUNCTIONAL SYMBOL QUAD EQUAL # \x2339 APL FUNCTIONAL SYMBOL QUAD DIVIDE # \x233A APL FUNCTIONAL SYMBOL QUAD DIAMOND # \x233B APL FUNCTIONAL SYMBOL QUAD JOT # \x233C APL FUNCTIONAL SYMBOL QUAD CIRCLE # \x233D APL FUNCTIONAL SYMBOL CIRCLE STILE # \x233E APL FUNCTIONAL SYMBOL CIRCLE JOT # \x233F APL FUNCTIONAL SYMBOL SLASH BAR # \x2340 APL FUNCTIONAL SYMBOL BACKSLASH BAR # \x2341 APL FUNCTIONAL SYMBOL QUAD SLASH # \x2342 APL FUNCTIONAL SYMBOL QUAD BACKSLASH # \x2343 APL FUNCTIONAL SYMBOL QUAD LESS-THAN # \x2344 APL FUNCTIONAL SYMBOL QUAD GREATER-THAN # \x2345 APL FUNCTIONAL SYMBOL LEFTWARDS VANE # \x2346 APL FUNCTIONAL SYMBOL RIGHTWARDS VANE # \x2347 APL FUNCTIONAL SYMBOL QUAD LEFTWARDS ARROW # \x2348 APL FUNCTIONAL SYMBOL QUAD RIGHTWARDS ARROW # \x2349 APL FUNCTIONAL SYMBOL CIRCLE BACKSLASH # \x234A APL FUNCTIONAL SYMBOL DOWN TACK UNDERBAR * # \x234B APL FUNCTIONAL SYMBOL DELTA STILE # \x234C APL FUNCTIONAL SYMBOL QUAD DOWN CARET # \x234D APL FUNCTIONAL SYMBOL QUAD DELTA # \x234E APL FUNCTIONAL SYMBOL DOWN TACK JOT * # \x234F APL FUNCTIONAL SYMBOL UPWARDS VANE # \x2350 APL FUNCTIONAL SYMBOL QUAD UPWARDS ARROW # \x2351 APL FUNCTIONAL SYMBOL UP TACK OVERBAR * # \x2352 APL FUNCTIONAL SYMBOL DEL STILE # \x2353 APL FUNCTIONAL SYMBOL QUAD UP CARET # \x2354 APL FUNCTIONAL SYMBOL QUAD DEL # \x2355 APL FUNCTIONAL SYMBOL UP TACK JOT * # \x2356 APL FUNCTIONAL SYMBOL DOWNWARDS VANE # \x2357 APL FUNCTIONAL SYMBOL QUAD DOWNWARDS ARROW # \x2358 APL FUNCTIONAL SYMBOL QUOTE UNDERBAR # \x2359 APL FUNCTIONAL SYMBOL DELTA UNDERBAR # \x235A APL FUNCTIONAL SYMBOL DIAMOND UNDERBAR # \x235B APL FUNCTIONAL SYMBOL JOT UNDERBAR # \x235C APL FUNCTIONAL SYMBOL CIRCLE UNDERBAR # \x235D APL FUNCTIONAL SYMBOL UP SHOE JOT # \x235E APL FUNCTIONAL SYMBOL QUOTE QUAD # \x235F APL FUNCTIONAL SYMBOL CIRCLE STAR # \x2360 APL FUNCTIONAL SYMBOL QUAD COLON # \x2361 APL FUNCTIONAL SYMBOL UP TACK DIAERESIS * # \x2362 APL FUNCTIONAL SYMBOL DEL DIAERESIS # \x2363 APL FUNCTIONAL SYMBOL STAR DIAERESIS # \x2364 APL FUNCTIONAL SYMBOL JOT DIAERESIS # \x2365 APL FUNCTIONAL SYMBOL CIRCLE DIAERESIS # \x2366 APL FUNCTIONAL SYMBOL DOWN SHOE STILE # \x2367 APL FUNCTIONAL SYMBOL LEFT SHOE STILE # \x2368 APL FUNCTIONAL SYMBOL TILDE DIAERESIS # \x2369 APL FUNCTIONAL SYMBOL GREATER-THAN DIAERESIS # \x236A APL FUNCTIONAL SYMBOL COMMA BAR # \x236B APL FUNCTIONAL SYMBOL DEL TILDE # \x236C APL FUNCTIONAL SYMBOL ZILDE # \x236D APL FUNCTIONAL SYMBOL STILE TILDE # \x236E APL FUNCTIONAL SYMBOL SEMICOLON UNDERBAR # \x236F APL FUNCTIONAL SYMBOL QUAD NOT EQUAL # \x2370 APL FUNCTIONAL SYMBOL QUAD QUESTION # \x2371 APL FUNCTIONAL SYMBOL DOWN CARET TILDE # \x2372 APL FUNCTIONAL SYMBOL UP CARET TILDE # \x2373 APL FUNCTIONAL SYMBOL IOTA # \x2374 APL FUNCTIONAL SYMBOL RHO # \x2375 APL FUNCTIONAL SYMBOL OMEGA # \x2376 APL FUNCTIONAL SYMBOL ALPHA UNDERBAR # \x2377 APL FUNCTIONAL SYMBOL EPSILON UNDERBAR # \x2378 APL FUNCTIONAL SYMBOL IOTA UNDERBAR # \x2379 APL FUNCTIONAL SYMBOL OMEGA UNDERBAR # \x237A APL FUNCTIONAL SYMBOL ALPHA # \x237B NOT CHECK MARK # \x237C RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW # \x237D SHOULDERED OPEN BOX # \x237E BELL SYMBOL # \x237F VERTICAL LINE WITH MIDDLE DOT # \x2380 INSERTION SYMBOL # \x2381 CONTINUOUS UNDERLINE SYMBOL # \x2382 DISCONTINUOUS UNDERLINE SYMBOL # \x2383 EMPHASIS SYMBOL # \x2384 COMPOSITION SYMBOL # \x2385 WHITE SQUARE WITH CENTRE VERTICAL LINE # \x2386 ENTER SYMBOL # \x2387 ALTERNATIVE KEY SYMBOL # \x2388 HELM SYMBOL # \x2389 CIRCLED HORIZONTAL BAR WITH NOTCH pause # \x238A CIRCLED TRIANGLE DOWN break # \x238B BROKEN CIRCLE WITH NORTHWEST ARROW escape # \x238C UNDO SYMBOL # \x238D MONOSTABLE SYMBOL # \x238E HYSTERESIS SYMBOL # \x238F OPEN-CIRCUIT-OUTPUT H-TYPE SYMBOL # \x2390 OPEN-CIRCUIT-OUTPUT L-TYPE SYMBOL # \x2391 PASSIVE-PULL-DOWN-OUTPUT SYMBOL # \x2392 PASSIVE-PULL-UP-OUTPUT SYMBOL # \x2393 DIRECT CURRENT SYMBOL FORM TWO # \x2394 SOFTWARE-FUNCTION SYMBOL # \x2395 APL FUNCTIONAL SYMBOL QUAD # \x2396 DECIMAL SEPARATOR KEY SYMBOL # \x2397 PREVIOUS PAGE # \x2398 NEXT PAGE # \x2399 PRINT SCREEN SYMBOL # \x239A CLEAR SCREEN SYMBOL # \x239B LEFT PARENTHESIS UPPER HOOK # \x239C LEFT PARENTHESIS EXTENSION # \x239D LEFT PARENTHESIS LOWER HOOK # \x239E RIGHT PARENTHESIS UPPER HOOK # \x239F RIGHT PARENTHESIS EXTENSION # \x23A0 RIGHT PARENTHESIS LOWER HOOK # \x23A1 LEFT SQUARE BRACKET UPPER CORNER # \x23A2 LEFT SQUARE BRACKET EXTENSION # \x23A3 LEFT SQUARE BRACKET LOWER CORNER # \x23A4 RIGHT SQUARE BRACKET UPPER CORNER # \x23A5 RIGHT SQUARE BRACKET EXTENSION # \x23A6 RIGHT SQUARE BRACKET LOWER CORNER # \x23A7 LEFT CURLY BRACKET UPPER HOOK # \x23A8 LEFT CURLY BRACKET MIDDLE PIECE # \x23A9 LEFT CURLY BRACKET LOWER HOOK # \x23AA CURLY BRACKET EXTENSION # \x23AB RIGHT CURLY BRACKET UPPER HOOK # \x23AC RIGHT CURLY BRACKET MIDDLE PIECE # \x23AD RIGHT CURLY BRACKET LOWER HOOK # \x23AE INTEGRAL EXTENSION # \x23AF HORIZONTAL LINE EXTENSION # \x23B0 UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION # \x23B1 UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION # \x23B2 SUMMATION TOP # \x23B3 SUMMATION BOTTOM # \x23B4 TOP SQUARE BRACKET # \x23B5 BOTTOM SQUARE BRACKET Pe # \x23B6 BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET # \x23B7 RADICAL SYMBOL BOTTOM # \x23B8 LEFT VERTICAL BOX LINE # \x23B9 RIGHT VERTICAL BOX LINE # \x23BA HORIZONTAL SCAN LINE-1 # \x23BB HORIZONTAL SCAN LINE-3 # \x23BC HORIZONTAL SCAN LINE-7 # \x23BD HORIZONTAL SCAN LINE-9 # \x23BE DENTISTRY SYMBOL LIGHT VERTICAL AND TOP RIGHT # \x23BF DENTISTRY SYMBOL LIGHT VERTICAL AND BOTTOM RIGHT # \x23C0 DENTISTRY SYMBOL LIGHT VERTICAL WITH CIRCLE # \x23C1 DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH CIRCLE # \x23C2 DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH CIRCLE # \x23C3 DENTISTRY SYMBOL LIGHT VERTICAL WITH TRIANGLE # \x23C4 DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH TRIANGLE # \x # \x23C5 DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH TRIANGLE # \x23C6 DENTISTRY SYMBOL LIGHT VERTICAL AND WAVE # \x23C7 DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH WAVE # \x23C8 DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH WAVE # \x23C9 DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL # \x23CA DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL # \x23CB DENTISTRY SYMBOL LIGHT VERTICAL AND TOP LEFT # \x23CC DENTISTRY SYMBOL LIGHT VERTICAL AND BOTTOM LEFT # \x23CD SQUARE FOOT # \x23CE RETURN SYMBOL # \x23CF EJECT SYMBOL # \x23D0 VERTICAL LINE EXTENSION # \x2400 SYMBOL FOR NULL GRAPHIC FOR NULL # \x2401 SYMBOL FOR START OF HEADING GRAPHIC FOR START OF HEADING # \x2402 SYMBOL FOR START OF TEXT GRAPHIC FOR START OF TEXT # \x2403 SYMBOL FOR END OF TEXT GRAPHIC FOR END OF TEXT # \x2404 SYMBOL FOR END OF TRANSMISSION GRAPHIC FOR END OF TRANSMISSI # \xON # \x2405 SYMBOL FOR ENQUIRY GRAPHIC FOR ENQUIRY # \x2406 SYMBOL FOR ACKNOWLEDGE GRAPHIC FOR ACKNOWLEDGE # \x2407 SYMBOL FOR BELL GRAPHIC FOR BELL # \x2408 SYMBOL FOR BACKSPACE GRAPHIC FOR BACKSPACE # \x2409 SYMBOL FOR HORIZONTAL TABULATION GRAPHIC FOR HORIZONTAL TABU # \xLATION # \x240A SYMBOL FOR LINE FEED GRAPHIC FOR LINE FEED # \x240B SYMBOL FOR VERTICAL TABULATION GRAPHIC FOR VERTICAL TABULATI # \xON # \x240C SYMBOL FOR FORM FEED GRAPHIC FOR FORM FEED # \x240D SYMBOL FOR CARRIAGE RETURN GRAPHIC FOR CARRIAGE RETURN # \x240E SYMBOL FOR SHIFT OUT GRAPHIC FOR SHIFT OUT # \x240F SYMBOL FOR SHIFT IN GRAPHIC FOR SHIFT IN # \x2410 SYMBOL FOR DATA LINK ESCAPE GRAPHIC FOR DATA LINK ESCAPE # \x2411 SYMBOL FOR DEVICE CONTROL ONE GRAPHIC FOR DEVICE CONTROL ONE # \x # \x2412 SYMBOL FOR DEVICE CONTROL TWO GRAPHIC FOR DEVICE CONTROL TWO # \x # \x2413 SYMBOL FOR DEVICE CONTROL THREE GRAPHIC FOR DEVICE CONTROL T # \xHREE # \x2414 SYMBOL FOR DEVICE CONTROL FOUR GRAPHIC FOR DEVICE CONTROL FO # \xUR # \x2415 SYMBOL FOR NEGATIVE ACKNOWLEDGE GRAPHIC FOR NEGATIVE ACKNOWL # \xEDGE # \x2416 SYMBOL FOR SYNCHRONOUS IDLE GRAPHIC FOR SYNCHRONOUS IDLE # \x2417 SYMBOL FOR END OF TRANSMISSION BLOCK GRAPHIC FOR END OF TRAN # \xSMISSION BLOCK # \x2418 SYMBOL FOR CANCEL GRAPHIC FOR CANCEL # \x2419 SYMBOL FOR END OF MEDIUM GRAPHIC FOR END OF MEDIUM # \x241A SYMBOL FOR SUBSTITUTE GRAPHIC FOR SUBSTITUTE # \x241B SYMBOL FOR ESCAPE GRAPHIC FOR ESCAPE # \x241C SYMBOL FOR FILE SEPARATOR GRAPHIC FOR FILE SEPARATOR # \x241D SYMBOL FOR GROUP SEPARATOR GRAPHIC FOR GROUP SEPARATOR # \x241E SYMBOL FOR RECORD SEPARATOR GRAPHIC FOR RECORD SEPARATOR # \x241F SYMBOL FOR UNIT SEPARATOR GRAPHIC FOR UNIT SEPARATOR # \x2420 SYMBOL FOR SPACE GRAPHIC FOR SPACE # \x2421 SYMBOL FOR DELETE GRAPHIC FOR DELETE # \x2422 BLANK SYMBOL BLANK # \x2423 OPEN BOX # \x2424 SYMBOL FOR NEWLINE GRAPHIC FOR NEWLINE # \x2425 SYMBOL FOR DELETE FORM TWO # \x2426 SYMBOL FOR SUBSTITUTE FORM TWO # \x2440 OCR HOOK # \x2441 OCR CHAIR # \x2442 OCR FORK # \x2443 OCR INVERTED FORK # \x2444 OCR BELT BUCKLE # \x2445 OCR BOW TIE # \x2446 OCR BRANCH BANK IDENTIFICATION # \x2447 OCR AMOUNT OF CHECK # \x2448 OCR DASH # \x2449 OCR CUSTOMER ACCOUNT NUMBER # \x244A OCR DOUBLE BACKSLASH # \x2460 CIRCLED DIGIT ONE No 0031 1 1 # \x2461 CIRCLED DIGIT TWO No 0032 2 2 # \x2462 CIRCLED DIGIT THREE No 0033 3 3 # \x2463 CIRCLED DIGIT FOUR No 0034 4 4 # \x2464 CIRCLED DIGIT FIVE No 0035 5 5 # \x2465 CIRCLED DIGIT SIX No 0036 6 6 # \x2466 CIRCLED DIGIT SEVEN No 0037 7 7 # \x2467 CIRCLED DIGIT EIGHT No 0038 8 8 # \x2468 CIRCLED DIGIT NINE No 0039 9 9 # \x2469 CIRCLED NUMBER TEN No 0031 0030 10 # \x246A CIRCLED NUMBER ELEVEN No 0031 0031 11 # \x246B CIRCLED NUMBER TWELVE No 0031 0032 12 # \x246C CIRCLED NUMBER THIRTEEN No 0031 0033 13 # \x246D CIRCLED NUMBER FOURTEEN No 0031 0034 14 # \x246E CIRCLED NUMBER FIFTEEN No 0031 0035 15 # \x246F CIRCLED NUMBER SIXTEEN No 0031 0036 16 # \x2470 CIRCLED NUMBER SEVENTEEN No 0031 0037 17 # \x2471 CIRCLED NUMBER EIGHTEEN No 0031 0038 18 # \x2472 CIRCLED NUMBER NINETEEN No 0031 0039 19 # \x2473 CIRCLED NUMBER TWENTY No 0032 0030 20 # \x2474 PARENTHESIZED DIGIT ONE No 0028 0031 0029 1 1 # \x2475 PARENTHESIZED DIGIT TWO No 0028 0032 0029 2 2 # \x2476 PARENTHESIZED DIGIT THREE No 0028 0033 0029 3 3 # \x2477 PARENTHESIZED DIGIT FOUR No 0028 0034 0029 4 4 # \x2478 PARENTHESIZED DIGIT FIVE No 0028 0035 0029 5 5 # \x2479 PARENTHESIZED DIGIT SIX No 0028 0036 0029 6 6 # \x247A PARENTHESIZED DIGIT SEVEN No 0028 0037 0029 7 7 # \x247B PARENTHESIZED DIGIT EIGHT No 0028 0038 0029 8 8 # \x247C PARENTHESIZED DIGIT NINE No 0028 0039 0029 9 9 # \x247D PARENTHESIZED NUMBER TEN No 0028 0031 0030 0029 10 # \x247E PARENTHESIZED NUMBER ELEVEN No 0028 0031 0031 0029 11 # \x # \x247F PARENTHESIZED NUMBER TWELVE No 0028 0031 0032 0029 12 # \x # \x2480 PARENTHESIZED NUMBER THIRTEEN No 0028 0031 0033 0029 13 # \x # \x2481 PARENTHESIZED NUMBER FOURTEEN No 0028 0031 0034 0029 14 # \x # \x2482 PARENTHESIZED NUMBER FIFTEEN No 0028 0031 0035 0029 15 # \x # \x2483 PARENTHESIZED NUMBER SIXTEEN No 0028 0031 0036 0029 16 # \x # \x2484 PARENTHESIZED NUMBER SEVENTEEN No 0028 0031 0037 0029 17 N # \x # \x2485 PARENTHESIZED NUMBER EIGHTEEN No 0028 0031 0038 0029 18 # \x # \x2486 PARENTHESIZED NUMBER NINETEEN No 0028 0031 0039 0029 19 # \x # \x2487 PARENTHESIZED NUMBER TWENTY No 0028 0032 0030 0029 20 # \x # \x2488 DIGIT ONE FULL STOP 0031 002E 1 1 DIGIT ONE PERIOD # \x2489 DIGIT TWO FULL STOP 0032 002E 2 2 DIGIT TWO PERIOD # \x248A DIGIT THREE FULL STOP 0033 002E 3 3 DIGIT THREE PERIOD # \x # \x248B DIGIT FOUR FULL STOP 0034 002E 4 4 DIGIT FOUR PERIOD # \x # \x248C DIGIT FIVE FULL STOP 0035 002E 5 5 DIGIT FIVE PERIOD # \x # \x248D DIGIT SIX FULL STOP 0036 002E 6 6 DIGIT SIX PERIOD # \x248E DIGIT SEVEN FULL STOP 0037 002E 7 7 DIGIT SEVEN PERIOD # \x # \x248F DIGIT EIGHT FULL STOP 0038 002E 8 8 DIGIT EIGHT PERIOD # \x # \x2490 DIGIT NINE FULL STOP 0039 002E 9 9 DIGIT NINE PERIOD # \x # \x2491 NUMBER TEN FULL STOP 0031 0030 002E 10 NUMBER TEN PER # \xIOD # \x2492 NUMBER ELEVEN FULL STOP 0031 0031 002E 11 NUMBER ELEV # \xEN PERIOD # \x2493 NUMBER TWELVE FULL STOP 0031 0032 002E 12 NUMBER TWEL # \xVE PERIOD # \x2494 NUMBER THIRTEEN FULL STOP 0031 0033 002E 13 NUMBER TH # \xIRTEEN PERIOD # \x2495 NUMBER FOURTEEN FULL STOP 0031 0034 002E 14 NUMBER FO # \xURTEEN PERIOD # \x2496 NUMBER FIFTEEN FULL STOP 0031 0035 002E 15 NUMBER FIF # \xTEEN PERIOD # \x2497 NUMBER SIXTEEN FULL STOP 0031 0036 002E 16 NUMBER SIX # \xTEEN PERIOD # \x2498 NUMBER SEVENTEEN FULL STOP 0031 0037 002E 17 NUMBER S # \xEVENTEEN PERIOD # \x2499 NUMBER EIGHTEEN FULL STOP 0031 0038 002E 18 NUMBER EI # \xGHTEEN PERIOD # \x249A NUMBER NINETEEN FULL STOP 0031 0039 002E 19 NUMBER NI # \xNETEEN PERIOD # \x249B NUMBER TWENTY FULL STOP 0032 0030 002E 20 NUMBER TWEN # \xTY PERIOD # \x249C PARENTHESIZED LATIN SMALL LETTER A 0028 0061 0029 # \x # \x249D PARENTHESIZED LATIN SMALL LETTER B 0028 0062 0029 # \x # \x249E PARENTHESIZED LATIN SMALL LETTER C 0028 0063 0029 # \x # \x249F PARENTHESIZED LATIN SMALL LETTER D 0028 0064 0029 # \x # \x24A0 PARENTHESIZED LATIN SMALL LETTER E 0028 0065 0029 # \x # \x24A1 PARENTHESIZED LATIN SMALL LETTER F 0028 0066 0029 # \x # \x24A2 PARENTHESIZED LATIN SMALL LETTER G 0028 0067 0029 # \x # \x24A3 PARENTHESIZED LATIN SMALL LETTER H 0028 0068 0029 # \x # \x24A4 PARENTHESIZED LATIN SMALL LETTER I 0028 0069 0029 # \x # \x24A5 PARENTHESIZED LATIN SMALL LETTER J 0028 006A 0029 # \x # \x24A6 PARENTHESIZED LATIN SMALL LETTER K 0028 006B 0029 # \x # \x24A7 PARENTHESIZED LATIN SMALL LETTER 0028 006C 0029 # \x # \x24A8 PARENTHESIZED LATIN SMALL LETTER M 0028 006D 0029 # \x # \x24A9 PARENTHESIZED LATIN SMALL LETTER 0028 006E 0029 # \x # \x24AA PARENTHESIZED LATIN SMALL LETTER O 0028 006F 0029 # \x # \x24AB PARENTHESIZED LATIN SMALL LETTER P 0028 0070 0029 # \x # \x24AC PARENTHESIZED LATIN SMALL LETTER Q 0028 0071 0029 # \x # \x24AD PARENTHESIZED LATIN SMALL LETTER 0028 0072 0029 # \x # \x24AE PARENTHESIZED LATIN SMALL LETTER S 0028 0073 0029 # \x # \x24AF PARENTHESIZED LATIN SMALL LETTER T 0028 0074 0029 # \x # \x24B0 PARENTHESIZED LATIN SMALL LETTER U 0028 0075 0029 # \x # \x24B1 PARENTHESIZED LATIN SMALL LETTER V 0028 0076 0029 # \x # \x24B2 PARENTHESIZED LATIN SMALL LETTER W 0028 0077 0029 # \x # \x24B3 PARENTHESIZED LATIN SMALL LETTER X 0028 0078 0029 # \x # \x24B4 PARENTHESIZED LATIN SMALL LETTER Y 0028 0079 0029 # \x # \x24B5 PARENTHESIZED LATIN SMALL LETTER Z 0028 007A 0029 # \x # \x24B6 CIRCLED LATIN CAPITAL LETTER A 0041 24D0 # \x24B7 CIRCLED LATIN CAPITAL LETTER B 0042 24D1 # \x24B8 CIRCLED LATIN CAPITAL LETTER C 0043 24D2 # \x24B9 CIRCLED LATIN CAPITAL LETTER D 0044 24D3 # \x24BA CIRCLED LATIN CAPITAL LETTER E 0045 24D4 # \x24BB CIRCLED LATIN CAPITAL LETTER F 0046 24D5 # \x24BC CIRCLED LATIN CAPITAL LETTER G 0047 24D6 # \x24BD CIRCLED LATIN CAPITAL LETTER H 0048 24D7 # \x24BE CIRCLED LATIN CAPITAL LETTER I 0049 24D8 # \x24BF CIRCLED LATIN CAPITAL LETTER J 004A 24D9 # \x24C0 CIRCLED LATIN CAPITAL LETTER K 004B 24DA # \x24C1 CIRCLED LATIN CAPITAL LETTER 004C 24DB # \x24C2 CIRCLED LATIN CAPITAL LETTER M 004D 24DC # \x24C3 CIRCLED LATIN CAPITAL LETTER 004E 24DD # \x24C4 CIRCLED LATIN CAPITAL LETTER O 004F 24DE # \x24C5 CIRCLED LATIN CAPITAL LETTER P 0050 24DF # \x24C6 CIRCLED LATIN CAPITAL LETTER Q 0051 24E0 # \x24C7 CIRCLED LATIN CAPITAL LETTER 0052 24E1 # \x24C8 CIRCLED LATIN CAPITAL LETTER S 0053 24E2 # \x24C9 CIRCLED LATIN CAPITAL LETTER T 0054 24E3 # \x24CA CIRCLED LATIN CAPITAL LETTER U 0055 24E4 # \x24CB CIRCLED LATIN CAPITAL LETTER V 0056 24E5 # \x24CC CIRCLED LATIN CAPITAL LETTER W 0057 24E6 # \x24CD CIRCLED LATIN CAPITAL LETTER X 0058 24E7 # \x24CE CIRCLED LATIN CAPITAL LETTER Y 0059 24E8 # \x24CF CIRCLED LATIN CAPITAL LETTER Z 005A 24E9 # \x24D0 CIRCLED LATIN SMALL LETTER A 0061 24B6 24B6 # \x24D1 CIRCLED LATIN SMALL LETTER B 0062 24B7 24B7 # \x24D2 CIRCLED LATIN SMALL LETTER C 0063 24B8 24B8 # \x24D3 CIRCLED LATIN SMALL LETTER D 0064 24B9 24B9 # \x24D4 CIRCLED LATIN SMALL LETTER E 0065 24BA 24BA # \x24D5 CIRCLED LATIN SMALL LETTER F 0066 24BB 24BB # \x24D6 CIRCLED LATIN SMALL LETTER G 0067 24BC 24BC # \x24D7 CIRCLED LATIN SMALL LETTER H 0068 24BD 24BD # \x24D8 CIRCLED LATIN SMALL LETTER I 0069 24BE 24BE # \x24D9 CIRCLED LATIN SMALL LETTER J 006A 24BF 24BF # \x24DA CIRCLED LATIN SMALL LETTER K 006B 24C0 24C0 # \x24DB CIRCLED LATIN SMALL LETTER 006C 24C1 24C1 # \x24DC CIRCLED LATIN SMALL LETTER M 006D 24C2 24C2 # \x24DD CIRCLED LATIN SMALL LETTER 006E 24C3 24C3 # \x24DE CIRCLED LATIN SMALL LETTER O 006F 24C4 24C4 # \x24DF CIRCLED LATIN SMALL LETTER P 0070 24C5 24C5 # \x24E0 CIRCLED LATIN SMALL LETTER Q 0071 24C6 24C6 # \x24E1 CIRCLED LATIN SMALL LETTER 0072 24C7 24C7 # \x24E2 CIRCLED LATIN SMALL LETTER S 0073 24C8 24C8 # \x24E3 CIRCLED LATIN SMALL LETTER T 0074 24C9 24C9 # \x24E4 CIRCLED LATIN SMALL LETTER U 0075 24CA 24CA # \x24E5 CIRCLED LATIN SMALL LETTER V 0076 24CB 24CB # \x24E6 CIRCLED LATIN SMALL LETTER W 0077 24CC 24CC # \x24E7 CIRCLED LATIN SMALL LETTER X 0078 24CD 24CD # \x24E8 CIRCLED LATIN SMALL LETTER Y 0079 24CE 24CE # \x24E9 CIRCLED LATIN SMALL LETTER Z 007A 24CF 24CF # \x24EA CIRCLED DIGIT ZERO No 0030 0 # \x24EB NEGATIVE CIRCLED NUMBER ELEVEN No 11 # \x24EC NEGATIVE CIRCLED NUMBER TWELVE No 12 # \x24ED NEGATIVE CIRCLED NUMBER THIRTEEN No 13 # \x24EE NEGATIVE CIRCLED NUMBER FOURTEEN No 14 # \x24EF NEGATIVE CIRCLED NUMBER FIFTEEN No 15 # \x24F0 NEGATIVE CIRCLED NUMBER SIXTEEN No 16 # \x24F1 NEGATIVE CIRCLED NUMBER SEVENTEEN No 17 # \x24F2 NEGATIVE CIRCLED NUMBER EIGHTEEN No 18 # \x24F3 NEGATIVE CIRCLED NUMBER NINETEEN No 19 # \x24F4 NEGATIVE CIRCLED NUMBER TWENTY No 20 # \x24F5 DOUBLE CIRCLED DIGIT ONE No 1 1 # \x24F6 DOUBLE CIRCLED DIGIT TWO No 2 2 # \x24F7 DOUBLE CIRCLED DIGIT THREE No 3 3 # \x24F8 DOUBLE CIRCLED DIGIT FOUR No 4 4 # \x24F9 DOUBLE CIRCLED DIGIT FIVE No 5 5 # \x24FA DOUBLE CIRCLED DIGIT SIX No 6 6 # \x24FB DOUBLE CIRCLED DIGIT SEVEN No 7 7 # \x24FC DOUBLE CIRCLED DIGIT EIGHT No 8 8 # \x24FD DOUBLE CIRCLED DIGIT NINE No 9 9 # \x24FE DOUBLE CIRCLED NUMBER TEN No 10 # \x24FF NEGATIVE CIRCLED DIGIT ZERO No 0 # \x2500 BOX DRAWINGS LIGHT HORIZONTAL FORMS LIGHT HORIZONTAL # \x2501 BOX DRAWINGS HEAVY HORIZONTAL FORMS HEAVY HORIZONTAL # \x2502 BOX DRAWINGS LIGHT VERTICAL FORMS LIGHT VERTICAL # \x2503 BOX DRAWINGS HEAVY VERTICAL FORMS HEAVY VERTICAL # \x2504 BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL FORMS LIGHT TRIPLE # \x DASH HORIZONTAL # \x2505 BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL FORMS HEAVY TRIPLE # \x DASH HORIZONTAL # \x2506 BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL FORMS LIGHT TRIPLE D # \xASH VERTICAL # \x2507 BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL FORMS HEAVY TRIPLE D # \xASH VERTICAL # \x2508 BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL FORMS LIGHT QUA # \xDRUPLE DASH HORIZONTAL # \x2509 BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL FORMS HEAVY QUA # \xDRUPLE DASH HORIZONTAL # \x250A BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL FORMS LIGHT QUADR # \xUPLE DASH VERTICAL # \x250B BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL FORMS HEAVY QUADR # \xUPLE DASH VERTICAL # \x250C BOX DRAWINGS LIGHT DOWN AND RIGHT FORMS LIGHT DOWN AND RIGHT # \x # \x250D BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY FORMS DOWN LIGHT AND # \x RIGHT HEAVY # \x250E BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT FORMS DOWN HEAVY AND # \x RIGHT LIGHT # \x250F BOX DRAWINGS HEAVY DOWN AND RIGHT FORMS HEAVY DOWN AND RIGHT # \x # \x2510 BOX DRAWINGS LIGHT DOWN AND LEFT FORMS LIGHT DOWN AND LEFT # \x # \x2511 BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY FORMS DOWN LIGHT AND # \xLEFT HEAVY # \x2512 BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT FORMS DOWN HEAVY AND # \xLEFT LIGHT # \x2513 BOX DRAWINGS HEAVY DOWN AND LEFT FORMS HEAVY DOWN AND LEFT # \x # \x2514 BOX DRAWINGS LIGHT UP AND RIGHT FORMS LIGHT UP AND RIGHT # \x2515 BOX DRAWINGS UP LIGHT AND RIGHT HEAVY FORMS UP LIGHT AND RIG # \xHT HEAVY # \x2516 BOX DRAWINGS UP HEAVY AND RIGHT LIGHT FORMS UP HEAVY AND RIG # \xHT LIGHT # \x2517 BOX DRAWINGS HEAVY UP AND RIGHT FORMS HEAVY UP AND RIGHT # \x2518 BOX DRAWINGS LIGHT UP AND LEFT FORMS LIGHT UP AND LEFT # \x2519 BOX DRAWINGS UP LIGHT AND LEFT HEAVY FORMS UP LIGHT AND LEFT # \x HEAVY # \x251A BOX DRAWINGS UP HEAVY AND LEFT LIGHT FORMS UP HEAVY AND LEFT # \x LIGHT # \x251B BOX DRAWINGS HEAVY UP AND LEFT FORMS HEAVY UP AND LEFT # \x251C BOX DRAWINGS LIGHT VERTICAL AND RIGHT FORMS LIGHT VERTICAL A # \xND RIGHT # \x251D BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY FORMS VERTICAL L # \xIGHT AND RIGHT HEAVY # \x251E BOX DRAWINGS UP HEAVY AND RIGHT DOWN LIGHT FORMS UP HEAVY AN # \xD RIGHT DOWN LIGHT # \x251F BOX DRAWINGS DOWN HEAVY AND RIGHT UP LIGHT FORMS DOWN HEAVY # \xAND RIGHT UP LIGHT # \x2520 BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT FORMS VERTICAL H # \xEAVY AND RIGHT LIGHT # \x2521 BOX DRAWINGS DOWN LIGHT AND RIGHT UP HEAVY FORMS DOWN LIGHT # \xAND RIGHT UP HEAVY # \x2522 BOX DRAWINGS UP LIGHT AND RIGHT DOWN HEAVY FORMS UP LIGHT AN # \xD RIGHT DOWN HEAVY # \x2523 BOX DRAWINGS HEAVY VERTICAL AND RIGHT FORMS HEAVY VERTICAL A # \xND RIGHT # \x2524 BOX DRAWINGS LIGHT VERTICAL AND LEFT FORMS LIGHT VERTICAL AN # \xD LEFT # \x2525 BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY FORMS VERTICAL LI # \xGHT AND LEFT HEAVY # \x2526 BOX DRAWINGS UP HEAVY AND LEFT DOWN LIGHT FORMS UP HEAVY AND # \x LEFT DOWN LIGHT # \x2527 BOX DRAWINGS DOWN HEAVY AND LEFT UP LIGHT FORMS DOWN HEAVY A # \xND LEFT UP LIGHT # \x2528 BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT FORMS VERTICAL HE # \xAVY AND LEFT LIGHT # \x2529 BOX DRAWINGS DOWN LIGHT AND LEFT UP HEAVY FORMS DOWN LIGHT A # \xND LEFT UP HEAVY # \x252A BOX DRAWINGS UP LIGHT AND LEFT DOWN HEAVY FORMS UP LIGHT AND # \x LEFT DOWN HEAVY # \x252B BOX DRAWINGS HEAVY VERTICAL AND LEFT FORMS HEAVY VERTICAL AN # \xD LEFT # \x252C BOX DRAWINGS LIGHT DOWN AND HORIZONTAL FORMS LIGHT DOWN AND # \xHORIZONTAL # \x252D BOX DRAWINGS LEFT HEAVY AND RIGHT DOWN LIGHT FORMS LEFT HEAV # \xY AND RIGHT DOWN LIGHT # \x252E BOX DRAWINGS RIGHT HEAVY AND LEFT DOWN LIGHT FORMS RIGHT HEA # \xVY AND LEFT DOWN LIGHT # \x252F BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY FORMS DOWN LIGH # \xT AND HORIZONTAL HEAVY # \x2530 BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT FORMS DOWN HEAV # \xY AND HORIZONTAL LIGHT # \x2531 BOX DRAWINGS RIGHT LIGHT AND LEFT DOWN HEAVY FORMS RIGHT LIG # \xHT AND LEFT DOWN HEAVY # \x2532 BOX DRAWINGS LEFT LIGHT AND RIGHT DOWN HEAVY FORMS LEFT LIGH # \xT AND RIGHT DOWN HEAVY # \x2533 BOX DRAWINGS HEAVY DOWN AND HORIZONTAL FORMS HEAVY DOWN AND # \xHORIZONTAL # \x2534 BOX DRAWINGS LIGHT UP AND HORIZONTAL FORMS LIGHT UP AND HORI # \xZONTAL # \x2535 BOX DRAWINGS LEFT HEAVY AND RIGHT UP LIGHT FORMS LEFT HEAVY # \xAND RIGHT UP LIGHT # \x2536 BOX DRAWINGS RIGHT HEAVY AND LEFT UP LIGHT FORMS RIGHT HEAVY # \x AND LEFT UP LIGHT # \x2537 BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY FORMS UP LIGHT AN # \xD HORIZONTAL HEAVY # \x2538 BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT FORMS UP HEAVY AN # \xD HORIZONTAL LIGHT # \x2539 BOX DRAWINGS RIGHT LIGHT AND LEFT UP HEAVY FORMS RIGHT LIGHT # \x AND LEFT UP HEAVY # \x253A BOX DRAWINGS LEFT LIGHT AND RIGHT UP HEAVY FORMS LEFT LIGHT # \xAND RIGHT UP HEAVY # \x253B BOX DRAWINGS HEAVY UP AND HORIZONTAL FORMS HEAVY UP AND HORI # \xZONTAL # \x253C BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL FORMS LIGHT VERTI # \xCAL AND HORIZONTAL # \x253D BOX DRAWINGS LEFT HEAVY AND RIGHT VERTICAL LIGHT FORMS LEFT # \xHEAVY AND RIGHT VERTICAL LIGHT # \x253E BOX DRAWINGS RIGHT HEAVY AND LEFT VERTICAL LIGHT FORMS RIGHT # \x HEAVY AND LEFT VERTICAL LIGHT # \x253F BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY FORMS VERTI # \xCAL LIGHT AND HORIZONTAL HEAVY # \x2540 BOX DRAWINGS UP HEAVY AND DOWN HORIZONTAL LIGHT FORMS UP HEA # \xVY AND DOWN HORIZONTAL LIGHT # \x2541 BOX DRAWINGS DOWN HEAVY AND UP HORIZONTAL LIGHT FORMS DOWN H # \xEAVY AND UP HORIZONTAL LIGHT # \x2542 BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT FORMS VERTI # \xCAL HEAVY AND HORIZONTAL LIGHT # \x2543 BOX DRAWINGS LEFT UP HEAVY AND RIGHT DOWN LIGHT FORMS LEFT U # \xP HEAVY AND RIGHT DOWN LIGHT # \x2544 BOX DRAWINGS RIGHT UP HEAVY AND LEFT DOWN LIGHT FORMS RIGHT # \xUP HEAVY AND LEFT DOWN LIGHT # \x2545 BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT FORMS LEFT D # \xOWN HEAVY AND RIGHT UP LIGHT # \x2546 BOX DRAWINGS RIGHT DOWN HEAVY AND LEFT UP LIGHT FORMS RIGHT # \xDOWN HEAVY AND LEFT UP LIGHT # \x2547 BOX DRAWINGS DOWN LIGHT AND UP HORIZONTAL HEAVY FORMS DOWN L # \xIGHT AND UP HORIZONTAL HEAVY # \x2548 BOX DRAWINGS UP LIGHT AND DOWN HORIZONTAL HEAVY FORMS UP LIG # \xHT AND DOWN HORIZONTAL HEAVY # \x2549 BOX DRAWINGS RIGHT LIGHT AND LEFT VERTICAL HEAVY FORMS RIGHT # \x LIGHT AND LEFT VERTICAL HEAVY # \x254A BOX DRAWINGS LEFT LIGHT AND RIGHT VERTICAL HEAVY FORMS LEFT # \xLIGHT AND RIGHT VERTICAL HEAVY # \x254B BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL FORMS HEAVY VERTI # \xCAL AND HORIZONTAL # \x254C BOX DRAWINGS LIGHT DOUBLE DASH HORIZONTAL FORMS LIGHT DOUBLE # \x DASH HORIZONTAL # \x254D BOX DRAWINGS HEAVY DOUBLE DASH HORIZONTAL FORMS HEAVY DOUBLE # \x DASH HORIZONTAL # \x254E BOX DRAWINGS LIGHT DOUBLE DASH VERTICAL FORMS LIGHT DOUBLE D # \xASH VERTICAL # \x254F BOX DRAWINGS HEAVY DOUBLE DASH VERTICAL FORMS HEAVY DOUBLE D # \xASH VERTICAL # \x2550 BOX DRAWINGS DOUBLE HORIZONTAL FORMS DOUBLE HORIZONTAL # \x2551 BOX DRAWINGS DOUBLE VERTICAL FORMS DOUBLE VERTICAL # \x2552 BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE FORMS DOWN SINGLE # \xAND RIGHT DOUBLE # \x2553 BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE FORMS DOWN DOUBLE # \xAND RIGHT SINGLE # \x2554 BOX DRAWINGS DOUBLE DOWN AND RIGHT FORMS DOUBLE DOWN AND RIG # \xHT # \x2555 BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE FORMS DOWN SINGLE A # \xND LEFT DOUBLE # \x2556 BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE FORMS DOWN DOUBLE A # \xND LEFT SINGLE # \x2557 BOX DRAWINGS DOUBLE DOWN AND LEFT FORMS DOUBLE DOWN AND LEFT # \x # \x2558 BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE FORMS UP SINGLE AND # \xRIGHT DOUBLE # \x2559 BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE FORMS UP DOUBLE AND # \xRIGHT SINGLE # \x255A BOX DRAWINGS DOUBLE UP AND RIGHT FORMS DOUBLE UP AND RIGHT # \x # \x255B BOX DRAWINGS UP SINGLE AND LEFT DOUBLE FORMS UP SINGLE AND L # \xEFT DOUBLE # \x255C BOX DRAWINGS UP DOUBLE AND LEFT SINGLE FORMS UP DOUBLE AND L # \xEFT SINGLE # \x255D BOX DRAWINGS DOUBLE UP AND LEFT FORMS DOUBLE UP AND LEFT # \x255E BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE FORMS VERTICAL # \x SINGLE AND RIGHT DOUBLE # \x255F BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE FORMS VERTICAL # \x DOUBLE AND RIGHT SINGLE # \x2560 BOX DRAWINGS DOUBLE VERTICAL AND RIGHT FORMS DOUBLE VERTICAL # \x AND RIGHT # \x2561 BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE FORMS VERTICAL # \xSINGLE AND LEFT DOUBLE # \x2562 BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE FORMS VERTICAL # \xDOUBLE AND LEFT SINGLE # \x2563 BOX DRAWINGS DOUBLE VERTICAL AND LEFT FORMS DOUBLE VERTICAL # \xAND LEFT # \x2564 BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE FORMS DOWN SI # \xNGLE AND HORIZONTAL DOUBLE # \x2565 BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE FORMS DOWN DO # \xUBLE AND HORIZONTAL SINGLE # \x2566 BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL FORMS DOUBLE DOWN AN # \xD HORIZONTAL # \x2567 BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE FORMS UP SINGLE # \x AND HORIZONTAL DOUBLE # \x2568 BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE FORMS UP DOUBLE # \x AND HORIZONTAL SINGLE # \x2569 BOX DRAWINGS DOUBLE UP AND HORIZONTAL FORMS DOUBLE UP AND HO # \xRIZONTAL # \x256A BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE FORMS VER # \xTICAL SINGLE AND HORIZONTAL DOUBLE # \x256B BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE FORMS VER # \xTICAL DOUBLE AND HORIZONTAL SINGLE # \x256C BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL FORMS DOUBLE VER # \xTICAL AND HORIZONTAL # \x256D BOX DRAWINGS LIGHT ARC DOWN AND RIGHT FORMS LIGHT ARC DOWN A # \xND RIGHT # \x256E BOX DRAWINGS LIGHT ARC DOWN AND LEFT FORMS LIGHT ARC DOWN AN # \xD LEFT # \x256F BOX DRAWINGS LIGHT ARC UP AND LEFT FORMS LIGHT ARC UP AND LE # \xFT # \x2570 BOX DRAWINGS LIGHT ARC UP AND RIGHT FORMS LIGHT ARC UP AND R # \xIGHT # \x2571 BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT FORMS # \xLIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT # \x2572 BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT FORMS # \xLIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT # \x2573 BOX DRAWINGS LIGHT DIAGONAL CROSS FORMS LIGHT DIAGONAL CROSS # \x # \x2574 BOX DRAWINGS LIGHT LEFT FORMS LIGHT LEFT # \x2575 BOX DRAWINGS LIGHT UP FORMS LIGHT UP # \x2576 BOX DRAWINGS LIGHT RIGHT FORMS LIGHT RIGHT # \x2577 BOX DRAWINGS LIGHT DOWN FORMS LIGHT DOWN # \x2578 BOX DRAWINGS HEAVY LEFT FORMS HEAVY LEFT # \x2579 BOX DRAWINGS HEAVY UP FORMS HEAVY UP # \x257A BOX DRAWINGS HEAVY RIGHT FORMS HEAVY RIGHT # \x257B BOX DRAWINGS HEAVY DOWN FORMS HEAVY DOWN # \x257C BOX DRAWINGS LIGHT LEFT AND HEAVY RIGHT FORMS LIGHT LEFT AND # \x HEAVY RIGHT # \x257D BOX DRAWINGS LIGHT UP AND HEAVY DOWN FORMS LIGHT UP AND HEAV # \xY DOWN # \x257E BOX DRAWINGS HEAVY LEFT AND LIGHT RIGHT FORMS HEAVY LEFT AND # \x LIGHT RIGHT # \x257F BOX DRAWINGS HEAVY UP AND LIGHT DOWN FORMS HEAVY UP AND LIGH # \xT DOWN # \x2580 UPPER HALF BLOCK # \x2581 LOWER ONE EIGHTH BLOCK # \x2582 LOWER ONE QUARTER BLOCK # \x2583 LOWER THREE EIGHTHS BLOCK # \x2584 LOWER HALF BLOCK # \x2585 LOWER FIVE EIGHTHS BLOCK # \x2586 LOWER THREE QUARTERS BLOCK LOWER THREE QUARTER BLOCK # \x2587 LOWER SEVEN EIGHTHS BLOCK # \x2588 FULL BLOCK # \x2589 LEFT SEVEN EIGHTHS BLOCK # \x258A LEFT THREE QUARTERS BLOCK LEFT THREE QUARTER BLOCK # \x258B LEFT FIVE EIGHTHS BLOCK # \x258C LEFT HALF BLOCK # \x258D LEFT THREE EIGHTHS BLOCK # \x258E LEFT ONE QUARTER BLOCK # \x258F LEFT ONE EIGHTH BLOCK # \x2590 RIGHT HALF BLOCK # \x2591 LIGHT SHADE # \x2592 MEDIUM SHADE # \x2593 DARK SHADE # \x2594 UPPER ONE EIGHTH BLOCK # \x2595 RIGHT ONE EIGHTH BLOCK # \x2596 QUADRANT LOWER LEFT # \x2597 QUADRANT LOWER RIGHT # \x2598 QUADRANT UPPER LEFT # \x2599 QUADRANT UPPER LEFT AND LOWER LEFT AND LOWER RIGHT # \x259A QUADRANT UPPER LEFT AND LOWER RIGHT # \x259B QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER LEFT # \x259C QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER RIGHT # \x259D QUADRANT UPPER RIGHT # \x259E QUADRANT UPPER RIGHT AND LOWER LEFT # \x259F QUADRANT UPPER RIGHT AND LOWER LEFT AND LOWER RIGHT # \x25A0 BLACK SQUARE # \x25A1 WHITE SQUARE # \x25A2 WHITE SQUARE WITH ROUNDED CORNERS # \x25A3 WHITE SQUARE CONTAINING BLACK SMALL SQUARE # \x25A4 SQUARE WITH HORIZONTAL FILL # \x25A5 SQUARE WITH VERTICAL FILL # \x25A6 SQUARE WITH ORTHOGONAL CROSSHATCH FILL # \x25A7 SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL # \x25A8 SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL # \x25A9 SQUARE WITH DIAGONAL CROSSHATCH FILL # \x25AA BLACK SMALL SQUARE # \x25AB WHITE SMALL SQUARE # \x25AC BLACK RECTANGLE # \x25AD WHITE RECTANGLE # \x25AE BLACK VERTICAL RECTANGLE # \x25AF WHITE VERTICAL RECTANGLE # \x25B0 BLACK PARALLELOGRAM # \x25B1 WHITE PARALLELOGRAM # \x25B2 BLACK UP-POINTING TRIANGLE BLACK UP POINTING TRIANGLE # \x25B3 WHITE UP-POINTING TRIANGLE WHITE UP POINTING TRIANGLE # \x25B4 BLACK UP-POINTING SMALL TRIANGLE BLACK UP POINTING SMALL TRI # \xANGLE # \x25B5 WHITE UP-POINTING SMALL TRIANGLE WHITE UP POINTING SMALL TRI # \xANGLE # \x25B6 BLACK RIGHT-POINTING TRIANGLE BLACK RIGHT POINTING TRIANGLE # \x # \x25B7 WHITE RIGHT-POINTING TRIANGLE WHITE RIGHT POINTING TRIANGLE # \x # \x25B8 BLACK RIGHT-POINTING SMALL TRIANGLE BLACK RIGHT POINTING SMA # \xLL TRIANGLE # \x25B9 WHITE RIGHT-POINTING SMALL TRIANGLE WHITE RIGHT POINTING SMA # \xLL TRIANGLE # \x25BA BLACK RIGHT-POINTING POINTER BLACK RIGHT POINTING POINTER # \x # \x25BB WHITE RIGHT-POINTING POINTER WHITE RIGHT POINTING POINTER # \x # \x25BC BLACK DOWN-POINTING TRIANGLE BLACK DOWN POINTING TRIANGLE # \x # \x25BD WHITE DOWN-POINTING TRIANGLE WHITE DOWN POINTING TRIANGLE # \x # \x25BE BLACK DOWN-POINTING SMALL TRIANGLE BLACK DOWN POINTING SMALL # \x TRIANGLE # \x25BF WHITE DOWN-POINTING SMALL TRIANGLE WHITE DOWN POINTING SMALL # \x TRIANGLE # \x25C0 BLACK LEFT-POINTING TRIANGLE BLACK LEFT POINTING TRIANGLE # \x # \x25C1 WHITE LEFT-POINTING TRIANGLE WHITE LEFT POINTING TRIANGLE # \x # \x25C2 BLACK LEFT-POINTING SMALL TRIANGLE BLACK LEFT POINTING SMALL # \x TRIANGLE # \x25C3 WHITE LEFT-POINTING SMALL TRIANGLE WHITE LEFT POINTING SMALL # \x TRIANGLE # \x25C4 BLACK LEFT-POINTING POINTER BLACK LEFT POINTING POINTER # \x25C5 WHITE LEFT-POINTING POINTER WHITE LEFT POINTING POINTER # \x25C6 BLACK DIAMOND # \x25C7 WHITE DIAMOND # \x25C8 WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND # \x25C9 FISHEYE # \x25CA LOZENGE # \x25CB WHITE CIRCLE # \x25CC DOTTED CIRCLE # \x25CD CIRCLE WITH VERTICAL FILL # \x25CE BULLSEYE # \x25CF BLACK CIRCLE # \x25D0 CIRCLE WITH LEFT HALF BLACK # \x25D1 CIRCLE WITH RIGHT HALF BLACK # \x25D2 CIRCLE WITH LOWER HALF BLACK # \x25D3 CIRCLE WITH UPPER HALF BLACK # \x25D4 CIRCLE WITH UPPER RIGHT QUADRANT BLACK # \x25D5 CIRCLE WITH ALL BUT UPPER LEFT QUADRANT BLACK # \x25D6 LEFT HALF BLACK CIRCLE # \x25D7 RIGHT HALF BLACK CIRCLE # \x25D8 INVERSE BULLET # \x25D9 INVERSE WHITE CIRCLE # \x25DA UPPER HALF INVERSE WHITE CIRCLE # \x25DB LOWER HALF INVERSE WHITE CIRCLE # \x25DC UPPER LEFT QUADRANT CIRCULAR ARC # \x25DD UPPER RIGHT QUADRANT CIRCULAR ARC # \x25DE LOWER RIGHT QUADRANT CIRCULAR ARC # \x25DF LOWER LEFT QUADRANT CIRCULAR ARC # \x25E0 UPPER HALF CIRCLE # \x25E1 LOWER HALF CIRCLE # \x25E2 BLACK LOWER RIGHT TRIANGLE # \x25E3 BLACK LOWER LEFT TRIANGLE # \x25E4 BLACK UPPER LEFT TRIANGLE # \x25E5 BLACK UPPER RIGHT TRIANGLE # \x25E6 WHITE BULLET # \x25E7 SQUARE WITH LEFT HALF BLACK # \x25E8 SQUARE WITH RIGHT HALF BLACK # \x25E9 SQUARE WITH UPPER LEFT DIAGONAL HALF BLACK # \x25EA SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK # \x25EB WHITE SQUARE WITH VERTICAL BISECTING LINE # \x25EC WHITE UP-POINTING TRIANGLE WITH DOT WHITE UP POINTING TRIANG # \xLE WITH DOT # \x25ED UP-POINTING TRIANGLE WITH LEFT HALF BLACK UP POINTING TRIANG # \xLE WITH LEFT HALF BLACK # \x25EE UP-POINTING TRIANGLE WITH RIGHT HALF BLACK UP POINTING TRIAN # \xGLE WITH RIGHT HALF BLACK # \x25EF LARGE CIRCLE # \x25F0 WHITE SQUARE WITH UPPER LEFT QUADRANT # \x25F1 WHITE SQUARE WITH LOWER LEFT QUADRANT # \x25F2 WHITE SQUARE WITH LOWER RIGHT QUADRANT # \x25F3 WHITE SQUARE WITH UPPER RIGHT QUADRANT # \x25F4 WHITE CIRCLE WITH UPPER LEFT QUADRANT # \x25F5 WHITE CIRCLE WITH LOWER LEFT QUADRANT # \x25F6 WHITE CIRCLE WITH LOWER RIGHT QUADRANT # \x25F7 WHITE CIRCLE WITH UPPER RIGHT QUADRANT # \x25F8 UPPER LEFT TRIANGLE # \x25F9 UPPER RIGHT TRIANGLE # \x25FA LOWER LEFT TRIANGLE # \x25FB WHITE MEDIUM SQUARE # \x25FC BLACK MEDIUM SQUARE # \x25FD WHITE MEDIUM SMALL SQUARE # \x25FE BLACK MEDIUM SMALL SQUARE # \x25FF LOWER RIGHT TRIANGLE # \x2600 BLACK SUN WITH RAYS # \x2601 CLOUD # \x2602 UMBRELLA # \x2603 SNOWMAN # \x2604 COMET # \x2605 BLACK STAR # \x2606 WHITE STAR # \x2607 LIGHTNING # \x2608 THUNDERSTORM # \x2609 SUN # \x260A ASCENDING NODE # \x260B DESCENDING NODE # \x260C CONJUNCTION # \x260D OPPOSITION # \x260E BLACK TELEPHONE # \x260F WHITE TELEPHONE # \x2610 BALLOT BOX # \x2611 BALLOT BOX WITH CHECK # \x2612 BALLOT BOX WITH X # \x2613 SALTIRE # \x2614 UMBRELLA WITH RAIN DROPS # \x2615 HOT BEVERAGE # \x2616 WHITE SHOGI PIECE # \x2617 BLACK SHOGI PIECE # \x2619 REVERSED ROTATED FLORAL HEART BULLET # \x261A BLACK LEFT POINTING INDEX # \x261B BLACK RIGHT POINTING INDEX # \x261C WHITE LEFT POINTING INDEX # \x261D WHITE UP POINTING INDEX # \x261E WHITE RIGHT POINTING INDEX # \x261F WHITE DOWN POINTING INDEX # \x2620 SKULL AND CROSSBONES # \x2621 CAUTION SIGN # \x2622 RADIOACTIVE SIGN # \x2623 BIOHAZARD SIGN # \x2624 CADUCEUS # \x2625 ANKH # \x2626 ORTHODOX CROSS # \x2627 CHI RHO # \x2628 CROSS OF LORRAINE # \x2629 CROSS OF JERUSALEM # \x262A STAR AND CRESCENT # \x262B FARSI SYMBOL SYMBOL OF IRAN # \x262C ADI SHAKTI # \x262D HAMMER AND SICKLE # \x262E PEACE SYMBOL # \x262F YIN YANG # \x2630 TRIGRAM FOR HEAVEN # \x2631 TRIGRAM FOR LAKE # \x2632 TRIGRAM FOR FIRE # \x2633 TRIGRAM FOR THUNDER # \x2634 TRIGRAM FOR WIND # \x2635 TRIGRAM FOR WATER # \x2636 TRIGRAM FOR MOUNTAIN # \x2637 TRIGRAM FOR EARTH # \x2638 WHEEL OF DHARMA # \x2639 WHITE FROWNING FACE # \x263A WHITE SMILING FACE # \x263B BLACK SMILING FACE # \x263C WHITE SUN WITH RAYS # \x263D FIRST QUARTER MOON # \x263E LAST QUARTER MOON # \x263F MERCURY # \x2640 FEMALE SIGN # \x2641 EARTH # \x2642 MALE SIGN # \x2643 JUPITER # \x2644 SATURN # \x2645 URANUS # \x2646 NEPTUNE # \x2647 PLUTO # \x2648 ARIES # \x2649 TAURUS # \x264A GEMINI # \x264B CANCER # \x264C LEO # \x264D VIRGO # \x264E LIBRA # \x264F SCORPIUS # \x2650 SAGITTARIUS # \x2651 CAPRICORN # \x2652 AQUARIUS # \x2653 PISCES # \x2654 WHITE CHESS KING # \x2655 WHITE CHESS QUEEN # \x2656 WHITE CHESS ROOK # \x2657 WHITE CHESS BISHOP # \x2658 WHITE CHESS KNIGHT # \x2659 WHITE CHESS PAWN # \x265A BLACK CHESS KING # \x265B BLACK CHESS QUEEN # \x265C BLACK CHESS ROOK # \x265D BLACK CHESS BISHOP # \x265E BLACK CHESS KNIGHT # \x265F BLACK CHESS PAWN # \x2660 BLACK SPADE SUIT # \x2661 WHITE HEART SUIT # \x2662 WHITE DIAMOND SUIT # \x2663 BLACK CLUB SUIT # \x2664 WHITE SPADE SUIT # \x2665 BLACK HEART SUIT # \x2666 BLACK DIAMOND SUIT # \x2667 WHITE CLUB SUIT # \x2668 HOT SPRINGS # \x2669 QUARTER NOTE # \x266A EIGHTH NOTE # \x266B BEAMED EIGHTH NOTES BARRED EIGHTH NOTES # \x266C BEAMED SIXTEENTH NOTES BARRED SIXTEENTH NOTES # \x266D MUSIC FLAT SIGN FLAT # \x266E MUSIC NATURAL SIGN NATURAL # \x266F MUSIC SHARP SIGN SHARP # \x2670 WEST SYRIAC CROSS # \x2671 EAST SYRIAC CROSS # \x2672 UNIVERSAL RECYCLING SYMBOL # \x2673 RECYCLING SYMBOL FOR TYPE-1 PLASTICS pete # \x2674 RECYCLING SYMBOL FOR TYPE-2 PLASTICS hdpe # \x2675 RECYCLING SYMBOL FOR TYPE-3 PLASTICS pvc # \x2676 RECYCLING SYMBOL FOR TYPE-4 PLASTICS ldpe # \x2677 RECYCLING SYMBOL FOR TYPE-5 PLASTICS pp # \x2678 RECYCLING SYMBOL FOR TYPE-6 PLASTICS ps # \x2679 RECYCLING SYMBOL FOR TYPE-7 PLASTICS other # \x267A RECYCLING SYMBOL FOR GENERIC MATERIALS # \x267B BLACK UNIVERSAL RECYCLING SYMBOL # \x267C RECYCLED PAPER SYMBOL # \x267D PARTIALLY-RECYCLED PAPER SYMBOL # \x2680 DIE FACE-1 # \x2681 DIE FACE-2 # \x2682 DIE FACE-3 # \x2683 DIE FACE-4 # \x2684 DIE FACE-5 # \x2685 DIE FACE-6 # \x2686 WHITE CIRCLE WITH DOT RIGHT # \x2687 WHITE CIRCLE WITH TWO DOTS # \x2688 BLACK CIRCLE WITH WHITE DOT RIGHT # \x2689 BLACK CIRCLE WITH TWO WHITE DOTS # \x268A MONOGRAM FOR YANG # \x268B MONOGRAM FOR YIN # \x268C DIGRAM FOR GREATER YANG # \x268D DIGRAM FOR LESSER YIN # \x268E DIGRAM FOR LESSER YANG # \x268F DIGRAM FOR GREATER YIN # \x2690 WHITE FLAG # \x2691 BLACK FLAG # \x26A0 WARNING SIGN # \x26A1 HIGH VOLTAGE SIGN # \x2701 UPPER BLADE SCISSORS # \x2702 BLACK SCISSORS # \x2703 LOWER BLADE SCISSORS # \x2704 WHITE SCISSORS # \x2706 TELEPHONE LOCATION SIGN # \x2707 TAPE DRIVE # \x2708 AIRPLANE # \x2709 ENVELOPE # \x270C VICTORY HAND # \x270D WRITING HAND # \x270E LOWER RIGHT PENCIL # \x270F PENCIL # \x2710 UPPER RIGHT PENCIL # \x2711 WHITE NIB # \x2712 BLACK NIB # \x2713 CHECK MARK # \x2714 HEAVY CHECK MARK # \x2715 MULTIPLICATION X # \x2716 HEAVY MULTIPLICATION X # \x2717 BALLOT X # \x2718 HEAVY BALLOT X # \x2719 OUTLINED GREEK CROSS # \x271A HEAVY GREEK CROSS # \x271B OPEN CENTRE CROSS OPEN CENTER CROSS # \x271C HEAVY OPEN CENTRE CROSS HEAVY OPEN CENTER CROSS # \x271D LATIN CROSS # \x271E SHADOWED WHITE LATIN CROSS # \x271F OUTLINED LATIN CROSS # \x2720 MALTESE CROSS # \x2721 STAR OF DAVID # \x2722 FOUR TEARDROP-SPOKED ASTERISK # \x2723 FOUR BALLOON-SPOKED ASTERISK # \x2724 HEAVY FOUR BALLOON-SPOKED ASTERISK # \x2725 FOUR CLUB-SPOKED ASTERISK # \x2726 BLACK FOUR POINTED STAR # \x2727 WHITE FOUR POINTED STAR # \x2729 STRESS OUTLINED WHITE STAR # \x272A CIRCLED WHITE STAR # \x272B OPEN CENTRE BLACK STAR OPEN CENTER BLACK STAR # \x272C BLACK CENTRE WHITE STAR BLACK CENTER WHITE STAR # \x272D OUTLINED BLACK STAR # \x272E HEAVY OUTLINED BLACK STAR # \x272F PINWHEEL STAR # \x2730 SHADOWED WHITE STAR # \x2731 HEAVY ASTERISK # \x2732 OPEN CENTRE ASTERISK OPEN CENTER ASTERISK # \x2733 EIGHT SPOKED ASTERISK # \x2734 EIGHT POINTED BLACK STAR # \x2735 EIGHT POINTED PINWHEEL STAR # \x2736 SIX POINTED BLACK STAR # \x2737 EIGHT POINTED RECTILINEAR BLACK STAR # \x2738 HEAVY EIGHT POINTED RECTILINEAR BLACK STAR # \x2739 TWELVE POINTED BLACK STAR # \x273A SIXTEEN POINTED ASTERISK # \x273B TEARDROP-SPOKED ASTERISK # \x273C OPEN CENTRE TEARDROP-SPOKED ASTERISK OPEN CENTER TEARDROP-SP # \xOKED ASTERISK # \x273D HEAVY TEARDROP-SPOKED ASTERISK # \x273E SIX PETALLED BLACK AND WHITE FLORETTE # \x273F BLACK FLORETTE # \x2740 WHITE FLORETTE # \x2741 EIGHT PETALLED OUTLINED BLACK FLORETTE # \x2742 CIRCLED OPEN CENTRE EIGHT POINTED STAR CIRCLED OPEN CENTER E # \xIGHT POINTED STAR # \x2743 HEAVY TEARDROP-SPOKED PINWHEEL ASTERISK # \x2744 SNOWFLAKE # \x2745 TIGHT TRIFOLIATE SNOWFLAKE # \x2746 HEAVY CHEVRON SNOWFLAKE # \x2747 SPARKLE # \x2748 HEAVY SPARKLE # \x2749 BALLOON-SPOKED ASTERISK # \x274A EIGHT TEARDROP-SPOKED PROPELLER ASTERISK # \x274B HEAVY EIGHT TEARDROP-SPOKED PROPELLER ASTERISK # \x274D SHADOWED WHITE CIRCLE # \x274F LOWER RIGHT DROP-SHADOWED WHITE SQUARE # \x2750 UPPER RIGHT DROP-SHADOWED WHITE SQUARE # \x2751 LOWER RIGHT SHADOWED WHITE SQUARE # \x2752 UPPER RIGHT SHADOWED WHITE SQUARE # \x2756 BLACK DIAMOND MINUS WHITE X # \x2758 LIGHT VERTICAL BAR # \x2759 MEDIUM VERTICAL BAR # \x275A HEAVY VERTICAL BAR # \x275B HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT # \x275C HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT # \x275D HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT # \x275E HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT # \x2761 CURVED STEM PARAGRAPH SIGN ORNAMENT # \x2762 HEAVY EXCLAMATION MARK ORNAMENT # \x2763 HEAVY HEART EXCLAMATION MARK ORNAMENT # \x2764 HEAVY BLACK HEART # \x2765 ROTATED HEAVY BLACK HEART BULLET # \x2766 FLORAL HEART # \x2767 ROTATED FLORAL HEART BULLET # \x2768 MEDIUM LEFT PARENTHESIS ORNAMENT # \x2769 MEDIUM RIGHT PARENTHESIS ORNAMENT # \x276A MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT # \x276B MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT # \x276C MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT # \x276D MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT # \x276E HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT # \x276F HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT # \x2770 HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT # \x2771 HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT # \x2772 LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT # \x2773 LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT # \x2774 MEDIUM LEFT CURLY BRACKET ORNAMENT # \x2775 MEDIUM RIGHT CURLY BRACKET ORNAMENT # \x2776 DINGBAT NEGATIVE CIRCLED DIGIT ONE No 1 1 INVERSE CIRCLED DIGIT O # \xNE # \x2777 DINGBAT NEGATIVE CIRCLED DIGIT TWO No 2 2 INVERSE CIRCLED DIGIT T # \xWO # \x2778 DINGBAT NEGATIVE CIRCLED DIGIT THREE No 3 3 INVERSE CIRCLED DIGIT # \x THREE # \x2779 DINGBAT NEGATIVE CIRCLED DIGIT FOUR No 4 4 INVERSE CIRCLED DIGIT # \xFOUR # \x277A DINGBAT NEGATIVE CIRCLED DIGIT FIVE No 5 5 INVERSE CIRCLED DIGIT # \xFIVE # \x277B DINGBAT NEGATIVE CIRCLED DIGIT SIX No 6 6 INVERSE CIRCLED DIGIT S # \xIX # \x277C DINGBAT NEGATIVE CIRCLED DIGIT SEVEN No 7 7 INVERSE CIRCLED DIGIT # \x SEVEN # \x277D DINGBAT NEGATIVE CIRCLED DIGIT EIGHT No 8 8 INVERSE CIRCLED DIGIT # \x EIGHT # \x277E DINGBAT NEGATIVE CIRCLED DIGIT NINE No 9 9 INVERSE CIRCLED DIGIT # \xNINE # \x277F DINGBAT NEGATIVE CIRCLED NUMBER TEN No 10 INVERSE CIRCLED NUMBER # \x TEN # \x2780 DINGBAT CIRCLED SANS-SERIF DIGIT ONE No 1 1 CIRCLED SANS-SERIF DI # \xGIT ONE # \x2781 DINGBAT CIRCLED SANS-SERIF DIGIT TWO No 2 2 CIRCLED SANS-SERIF DI # \xGIT TWO # \x2782 DINGBAT CIRCLED SANS-SERIF DIGIT THREE No 3 3 CIRCLED SANS-SERIF # \xDIGIT THREE # \x2783 DINGBAT CIRCLED SANS-SERIF DIGIT FOUR No 4 4 CIRCLED SANS-SERIF D # \xIGIT FOUR # \x2784 DINGBAT CIRCLED SANS-SERIF DIGIT FIVE No 5 5 CIRCLED SANS-SERIF D # \xIGIT FIVE # \x2785 DINGBAT CIRCLED SANS-SERIF DIGIT SIX No 6 6 CIRCLED SANS-SERIF DI # \xGIT SIX # \x2786 DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN No 7 7 CIRCLED SANS-SERIF # \xDIGIT SEVEN # \x2787 DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT No 8 8 CIRCLED SANS-SERIF # \xDIGIT EIGHT # \x2788 DINGBAT CIRCLED SANS-SERIF DIGIT NINE No 9 9 CIRCLED SANS-SERIF D # \xIGIT NINE # \x2789 DINGBAT CIRCLED SANS-SERIF NUMBER TEN No 10 CIRCLED SANS-SERIF N # \xUMBER TEN # \x278A DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE No 1 1 INVERSE CIRC # \xLED SANS-SERIF DIGIT ONE # \x278B DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO No 2 2 INVERSE CIRC # \xLED SANS-SERIF DIGIT TWO # \x278C DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE No 3 3 INVERSE CI # \xRCLED SANS-SERIF DIGIT THREE # \x278D DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR No 4 4 INVERSE CIR # \xCLED SANS-SERIF DIGIT FOUR # \x278E DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE No 5 5 INVERSE CIR # \xCLED SANS-SERIF DIGIT FIVE # \x278F DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX No 6 6 INVERSE CIRC # \xLED SANS-SERIF DIGIT SIX # \x2790 DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN No 7 7 INVERSE CI # \xRCLED SANS-SERIF DIGIT SEVEN # \x2791 DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT No 8 8 INVERSE CI # \xRCLED SANS-SERIF DIGIT EIGHT # \x2792 DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE No 9 9 INVERSE CIR # \xCLED SANS-SERIF DIGIT NINE # \x2793 DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN No 10 INVERSE CIR # \xCLED SANS-SERIF NUMBER TEN # \x2794 HEAVY WIDE-HEADED RIGHTWARDS ARROW HEAVY WIDE-HEADED RIGHT A # \xRROW # \x2798 HEAVY SOUTH EAST ARROW HEAVY LOWER RIGHT ARROW # \x2799 HEAVY RIGHTWARDS ARROW HEAVY RIGHT ARROW # \x279A HEAVY NORTH EAST ARROW HEAVY UPPER RIGHT ARROW # \x279B DRAFTING POINT RIGHTWARDS ARROW DRAFTING POINT RIGHT ARROW # \x # \x279C HEAVY ROUND-TIPPED RIGHTWARDS ARROW HEAVY ROUND-TIPPED RIGHT # \x ARROW # \x279D TRIANGLE-HEADED RIGHTWARDS ARROW TRIANGLE-HEADED RIGHT ARROW # \x # \x279E HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW HEAVY TRIANGLE-HEADED # \x RIGHT ARROW # \x279F DASHED TRIANGLE-HEADED RIGHTWARDS ARROW DASHED TRIANGLE-HEAD # \xED RIGHT ARROW # \x27A0 HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW HEAVY DASHED T # \xRIANGLE-HEADED RIGHT ARROW # \x27A1 BLACK RIGHTWARDS ARROW BLACK RIGHT ARROW # \x27A2 THREE-D TOP-LIGHTED RIGHTWARDS ARROWHEAD THREE-D TOP-LIGHTED # \x RIGHT ARROWHEAD # \x27A3 THREE-D BOTTOM-LIGHTED RIGHTWARDS ARROWHEAD THREE-D BOTTOM-L # \xIGHTED RIGHT ARROWHEAD # \x27A4 BLACK RIGHTWARDS ARROWHEAD BLACK RIGHT ARROWHEAD # \x27A5 HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW HEAVY BLAC # \xK CURVED DOWN AND RIGHT ARROW # \x27A6 HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW HEAVY BLACK # \xCURVED UP AND RIGHT ARROW # \x27A7 SQUAT BLACK RIGHTWARDS ARROW SQUAT BLACK RIGHT ARROW # \x27A8 HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW HEAVY CONCAVE-P # \xOINTED BLACK RIGHT ARROW # \x27A9 RIGHT-SHADED WHITE RIGHTWARDS ARROW RIGHT-SHADED WHITE RIGHT # \x ARROW # \x27AA LEFT-SHADED WHITE RIGHTWARDS ARROW LEFT-SHADED WHITE RIGHT A # \xRROW # \x27AB BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW BACK-TILTED SHAD # \xOWED WHITE RIGHT ARROW # \x27AC FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW FRONT-TILTED SH # \xADOWED WHITE RIGHT ARROW # \x27AD HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW HEAVY LOWE # \xR RIGHT-SHADOWED WHITE RIGHT ARROW # \x27AE HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW HEAVY UPPE # \xR RIGHT-SHADOWED WHITE RIGHT ARROW # \x27AF NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW NOTCHED # \xLOWER RIGHT-SHADOWED WHITE RIGHT ARROW # \x27B1 NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW NOTCHED # \xUPPER RIGHT-SHADOWED WHITE RIGHT ARROW # \x27B2 CIRCLED HEAVY WHITE RIGHTWARDS ARROW CIRCLED HEAVY WHITE RIG # \xHT ARROW # \x27B3 WHITE-FEATHERED RIGHTWARDS ARROW WHITE-FEATHERED RIGHT ARROW # \x # \x27B4 BLACK-FEATHERED SOUTH EAST ARROW BLACK-FEATHERED LOWER RIGHT # \x ARROW # \x27B5 BLACK-FEATHERED RIGHTWARDS ARROW BLACK-FEATHERED RIGHT ARROW # \x # \x27B6 BLACK-FEATHERED NORTH EAST ARROW BLACK-FEATHERED UPPER RIGHT # \x ARROW # \x27B7 HEAVY BLACK-FEATHERED SOUTH EAST ARROW HEAVY BLACK-FEATHERED # \x LOWER RIGHT ARROW # \x27B8 HEAVY BLACK-FEATHERED RIGHTWARDS ARROW HEAVY BLACK-FEATHERED # \x RIGHT ARROW # \x27B9 HEAVY BLACK-FEATHERED NORTH EAST ARROW HEAVY BLACK-FEATHERED # \x UPPER RIGHT ARROW # \x27BA TEARDROP-BARBED RIGHTWARDS ARROW TEARDROP-BARBED RIGHT ARROW # \x # \x27BB HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW HEAVY TEARDROP-SHANK # \xED RIGHT ARROW # \x27BC WEDGE-TAILED RIGHTWARDS ARROW WEDGE-TAILED RIGHT ARROW # \x27BD HEAVY WEDGE-TAILED RIGHTWARDS ARROW HEAVY WEDGE-TAILED RIGHT # \x ARROW # \x27BE OPEN-OUTLINED RIGHTWARDS ARROW OPEN-OUTLINED RIGHT ARROW # \x27D0 WHITE DIAMOND WITH CENTRED DOT # \x27D1 AND WITH DOT # \x27D2 ELEMENT OF OPENING UPWARDS # \x27D3 LOWER RIGHT CORNER WITH DOT # \x27D4 UPPER LEFT CORNER WITH DOT # \x27D5 LEFT OUTER JOIN # \x27D6 RIGHT OUTER JOIN # \x27D7 FULL OUTER JOIN # \x27D8 LARGE UP TACK # \x27D9 LARGE DOWN TACK # \x27DA LEFT AND RIGHT DOUBLE TURNSTILE # \x27DB LEFT AND RIGHT TACK # \x27DC LEFT MULTIMAP # \x27DD LONG RIGHT TACK # \x27DE LONG LEFT TACK # \x27DF UP TACK WITH CIRCLE ABOVE # \x27E0 LOZENGE DIVIDED BY HORIZONTAL RULE # \x27E1 WHITE CONCAVE-SIDED DIAMOND # \x27E2 WHITE CONCAVE-SIDED DIAMOND WITH LEFTWARDS TICK # \x27E3 WHITE CONCAVE-SIDED DIAMOND WITH RIGHTWARDS TICK # \x27E4 WHITE SQUARE WITH LEFTWARDS TICK # \x27E5 WHITE SQUARE WITH RIGHTWARDS TICK # \x27E6 MATHEMATICAL LEFT WHITE SQUARE BRACKET # \x27E7 MATHEMATICAL RIGHT WHITE SQUARE BRACKET # \x27E8 MATHEMATICAL LEFT ANGLE BRACKET # \x27E9 MATHEMATICAL RIGHT ANGLE BRACKET # \x27EA MATHEMATICAL LEFT DOUBLE ANGLE BRACKET # \x27EB MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET # \x27F0 UPWARDS QUADRUPLE ARROW # \x27F1 DOWNWARDS QUADRUPLE ARROW # \x27F2 ANTICLOCKWISE GAPPED CIRCLE ARROW # \x27F3 CLOCKWISE GAPPED CIRCLE ARROW # \x27F4 RIGHT ARROW WITH CIRCLED PLUS # \x27F5 LONG LEFTWARDS ARROW # \x27F6 LONG RIGHTWARDS ARROW # \x27F7 LONG LEFT RIGHT ARROW # \x27F8 LONG LEFTWARDS DOUBLE ARROW # \x27F9 LONG RIGHTWARDS DOUBLE ARROW # \x27FA LONG LEFT RIGHT DOUBLE ARROW # \x27FB LONG LEFTWARDS ARROW FROM BAR # \x27FC LONG RIGHTWARDS ARROW FROM BAR # \x27FD LONG LEFTWARDS DOUBLE ARROW FROM BAR # \x27FE LONG RIGHTWARDS DOUBLE ARROW FROM BAR # \x27FF LONG RIGHTWARDS SQUIGGLE ARROW # \x2800 BRAILLE PATTERN BLANK # \x2801 BRAILLE PATTERN DOTS-1 # \x2802 BRAILLE PATTERN DOTS-2 # \x2803 BRAILLE PATTERN DOTS-12 # \x2804 BRAILLE PATTERN DOTS-3 # \x2805 BRAILLE PATTERN DOTS-13 # \x2806 BRAILLE PATTERN DOTS-23 # \x2807 BRAILLE PATTERN DOTS-123 # \x2808 BRAILLE PATTERN DOTS-4 # \x2809 BRAILLE PATTERN DOTS-14 # \x280A BRAILLE PATTERN DOTS-24 # \x280B BRAILLE PATTERN DOTS-124 # \x280C BRAILLE PATTERN DOTS-34 # \x280D BRAILLE PATTERN DOTS-134 # \x280E BRAILLE PATTERN DOTS-234 # \x280F BRAILLE PATTERN DOTS-1234 # \x2810 BRAILLE PATTERN DOTS-5 # \x2811 BRAILLE PATTERN DOTS-15 # \x2812 BRAILLE PATTERN DOTS-25 # \x2813 BRAILLE PATTERN DOTS-125 # \x2814 BRAILLE PATTERN DOTS-35 # \x2815 BRAILLE PATTERN DOTS-135 # \x2816 BRAILLE PATTERN DOTS-235 # \x2817 BRAILLE PATTERN DOTS-1235 # \x2818 BRAILLE PATTERN DOTS-45 # \x2819 BRAILLE PATTERN DOTS-145 # \x281A BRAILLE PATTERN DOTS-245 # \x281B BRAILLE PATTERN DOTS-1245 # \x281C BRAILLE PATTERN DOTS-345 # \x281D BRAILLE PATTERN DOTS-1345 # \x281E BRAILLE PATTERN DOTS-2345 # \x281F BRAILLE PATTERN DOTS-12345 # \x2820 BRAILLE PATTERN DOTS-6 # \x2821 BRAILLE PATTERN DOTS-16 # \x2822 BRAILLE PATTERN DOTS-26 # \x2823 BRAILLE PATTERN DOTS-126 # \x2824 BRAILLE PATTERN DOTS-36 # \x2825 BRAILLE PATTERN DOTS-136 # \x2826 BRAILLE PATTERN DOTS-236 # \x2827 BRAILLE PATTERN DOTS-1236 # \x2828 BRAILLE PATTERN DOTS-46 # \x2829 BRAILLE PATTERN DOTS-146 # \x282A BRAILLE PATTERN DOTS-246 # \x282B BRAILLE PATTERN DOTS-1246 # \x282C BRAILLE PATTERN DOTS-346 # \x282D BRAILLE PATTERN DOTS-1346 # \x282E BRAILLE PATTERN DOTS-2346 # \x282F BRAILLE PATTERN DOTS-12346 # \x2830 BRAILLE PATTERN DOTS-56 # \x2831 BRAILLE PATTERN DOTS-156 # \x2832 BRAILLE PATTERN DOTS-256 # \x2833 BRAILLE PATTERN DOTS-1256 # \x2834 BRAILLE PATTERN DOTS-356 # \x2835 BRAILLE PATTERN DOTS-1356 # \x2836 BRAILLE PATTERN DOTS-2356 # \x2837 BRAILLE PATTERN DOTS-12356 # \x2838 BRAILLE PATTERN DOTS-456 # \x2839 BRAILLE PATTERN DOTS-1456 # \x283A BRAILLE PATTERN DOTS-2456 # \x283B BRAILLE PATTERN DOTS-12456 # \x283C BRAILLE PATTERN DOTS-3456 # \x283D BRAILLE PATTERN DOTS-13456 # \x283E BRAILLE PATTERN DOTS-23456 # \x283F BRAILLE PATTERN DOTS-123456 # \x2840 BRAILLE PATTERN DOTS-7 # \x2841 BRAILLE PATTERN DOTS-17 # \x2842 BRAILLE PATTERN DOTS-27 # \x2843 BRAILLE PATTERN DOTS-127 # \x2844 BRAILLE PATTERN DOTS-37 # \x2845 BRAILLE PATTERN DOTS-137 # \x2846 BRAILLE PATTERN DOTS-237 # \x2847 BRAILLE PATTERN DOTS-1237 # \x2848 BRAILLE PATTERN DOTS-47 # \x2849 BRAILLE PATTERN DOTS-147 # \x284A BRAILLE PATTERN DOTS-247 # \x284B BRAILLE PATTERN DOTS-1247 # \x284C BRAILLE PATTERN DOTS-347 # \x284D BRAILLE PATTERN DOTS-1347 # \x284E BRAILLE PATTERN DOTS-2347 # \x284F BRAILLE PATTERN DOTS-12347 # \x2850 BRAILLE PATTERN DOTS-57 # \x2851 BRAILLE PATTERN DOTS-157 # \x2852 BRAILLE PATTERN DOTS-257 # \x2853 BRAILLE PATTERN DOTS-1257 # \x2854 BRAILLE PATTERN DOTS-357 # \x2855 BRAILLE PATTERN DOTS-1357 # \x2856 BRAILLE PATTERN DOTS-2357 # \x2857 BRAILLE PATTERN DOTS-12357 # \x2858 BRAILLE PATTERN DOTS-457 # \x2859 BRAILLE PATTERN DOTS-1457 # \x285A BRAILLE PATTERN DOTS-2457 # \x285B BRAILLE PATTERN DOTS-12457 # \x285C BRAILLE PATTERN DOTS-3457 # \x285D BRAILLE PATTERN DOTS-13457 # \x285E BRAILLE PATTERN DOTS-23457 # \x285F BRAILLE PATTERN DOTS-123457 # \x2860 BRAILLE PATTERN DOTS-67 # \x2861 BRAILLE PATTERN DOTS-167 # \x2862 BRAILLE PATTERN DOTS-267 # \x2863 BRAILLE PATTERN DOTS-1267 # \x2864 BRAILLE PATTERN DOTS-367 # \x2865 BRAILLE PATTERN DOTS-1367 # \x2866 BRAILLE PATTERN DOTS-2367 # \x2867 BRAILLE PATTERN DOTS-12367 # \x2868 BRAILLE PATTERN DOTS-467 # \x2869 BRAILLE PATTERN DOTS-1467 # \x286A BRAILLE PATTERN DOTS-2467 # \x286B BRAILLE PATTERN DOTS-12467 # \x286C BRAILLE PATTERN DOTS-3467 # \x286D BRAILLE PATTERN DOTS-13467 # \x286E BRAILLE PATTERN DOTS-23467 # \x286F BRAILLE PATTERN DOTS-123467 # \x2870 BRAILLE PATTERN DOTS-567 # \x2871 BRAILLE PATTERN DOTS-1567 # \x2872 BRAILLE PATTERN DOTS-2567 # \x2873 BRAILLE PATTERN DOTS-12567 # \x2874 BRAILLE PATTERN DOTS-3567 # \x2875 BRAILLE PATTERN DOTS-13567 # \x2876 BRAILLE PATTERN DOTS-23567 # \x2877 BRAILLE PATTERN DOTS-123567 # \x2878 BRAILLE PATTERN DOTS-4567 # \x2879 BRAILLE PATTERN DOTS-14567 # \x287A BRAILLE PATTERN DOTS-24567 # \x287B BRAILLE PATTERN DOTS-124567 # \x287C BRAILLE PATTERN DOTS-34567 # \x287D BRAILLE PATTERN DOTS-134567 # \x287E BRAILLE PATTERN DOTS-234567 # \x287F BRAILLE PATTERN DOTS-1234567 # \x2880 BRAILLE PATTERN DOTS-8 # \x2881 BRAILLE PATTERN DOTS-18 # \x2882 BRAILLE PATTERN DOTS-28 # \x2883 BRAILLE PATTERN DOTS-128 # \x2884 BRAILLE PATTERN DOTS-38 # \x2885 BRAILLE PATTERN DOTS-138 # \x2886 BRAILLE PATTERN DOTS-238 # \x2887 BRAILLE PATTERN DOTS-1238 # \x2888 BRAILLE PATTERN DOTS-48 # \x2889 BRAILLE PATTERN DOTS-148 # \x288A BRAILLE PATTERN DOTS-248 # \x288B BRAILLE PATTERN DOTS-1248 # \x288C BRAILLE PATTERN DOTS-348 # \x288D BRAILLE PATTERN DOTS-1348 # \x288E BRAILLE PATTERN DOTS-2348 # \x288F BRAILLE PATTERN DOTS-12348 # \x2890 BRAILLE PATTERN DOTS-58 # \x2891 BRAILLE PATTERN DOTS-158 # \x2892 BRAILLE PATTERN DOTS-258 # \x2893 BRAILLE PATTERN DOTS-1258 # \x2894 BRAILLE PATTERN DOTS-358 # \x2895 BRAILLE PATTERN DOTS-1358 # \x2896 BRAILLE PATTERN DOTS-2358 # \x2897 BRAILLE PATTERN DOTS-12358 # \x2898 BRAILLE PATTERN DOTS-458 # \x2899 BRAILLE PATTERN DOTS-1458 # \x289A BRAILLE PATTERN DOTS-2458 # \x289B BRAILLE PATTERN DOTS-12458 # \x289C BRAILLE PATTERN DOTS-3458 # \x289D BRAILLE PATTERN DOTS-13458 # \x289E BRAILLE PATTERN DOTS-23458 # \x289F BRAILLE PATTERN DOTS-123458 # \x28A0 BRAILLE PATTERN DOTS-68 # \x28A1 BRAILLE PATTERN DOTS-168 # \x28A2 BRAILLE PATTERN DOTS-268 # \x28A3 BRAILLE PATTERN DOTS-1268 # \x28A4 BRAILLE PATTERN DOTS-368 # \x28A5 BRAILLE PATTERN DOTS-1368 # \x28A6 BRAILLE PATTERN DOTS-2368 # \x28A7 BRAILLE PATTERN DOTS-12368 # \x28A8 BRAILLE PATTERN DOTS-468 # \x28A9 BRAILLE PATTERN DOTS-1468 # \x28AA BRAILLE PATTERN DOTS-2468 # \x28AB BRAILLE PATTERN DOTS-12468 # \x28AC BRAILLE PATTERN DOTS-3468 # \x28AD BRAILLE PATTERN DOTS-13468 # \x28AE BRAILLE PATTERN DOTS-23468 # \x28AF BRAILLE PATTERN DOTS-123468 # \x28B0 BRAILLE PATTERN DOTS-568 # \x28B1 BRAILLE PATTERN DOTS-1568 # \x28B2 BRAILLE PATTERN DOTS-2568 # \x28B3 BRAILLE PATTERN DOTS-12568 # \x28B4 BRAILLE PATTERN DOTS-3568 # \x28B5 BRAILLE PATTERN DOTS-13568 # \x28B6 BRAILLE PATTERN DOTS-23568 # \x28B7 BRAILLE PATTERN DOTS-123568 # \x28B8 BRAILLE PATTERN DOTS-4568 # \x28B9 BRAILLE PATTERN DOTS-14568 # \x28BA BRAILLE PATTERN DOTS-24568 # \x28BB BRAILLE PATTERN DOTS-124568 # \x28BC BRAILLE PATTERN DOTS-34568 # \x28BD BRAILLE PATTERN DOTS-134568 # \x28BE BRAILLE PATTERN DOTS-234568 # \x28BF BRAILLE PATTERN DOTS-1234568 # \x28C0 BRAILLE PATTERN DOTS-78 # \x28C1 BRAILLE PATTERN DOTS-178 # \x28C2 BRAILLE PATTERN DOTS-278 # \x28C3 BRAILLE PATTERN DOTS-1278 # \x28C4 BRAILLE PATTERN DOTS-378 # \x28C5 BRAILLE PATTERN DOTS-1378 # \x28C6 BRAILLE PATTERN DOTS-2378 # \x28C7 BRAILLE PATTERN DOTS-12378 # \x28C8 BRAILLE PATTERN DOTS-478 # \x28C9 BRAILLE PATTERN DOTS-1478 # \x28CA BRAILLE PATTERN DOTS-2478 # \x28CB BRAILLE PATTERN DOTS-12478 # \x28CC BRAILLE PATTERN DOTS-3478 # \x28CD BRAILLE PATTERN DOTS-13478 # \x28CE BRAILLE PATTERN DOTS-23478 # \x28CF BRAILLE PATTERN DOTS-123478 # \x28D0 BRAILLE PATTERN DOTS-578 # \x28D1 BRAILLE PATTERN DOTS-1578 # \x28D2 BRAILLE PATTERN DOTS-2578 # \x28D3 BRAILLE PATTERN DOTS-12578 # \x28D4 BRAILLE PATTERN DOTS-3578 # \x28D5 BRAILLE PATTERN DOTS-13578 # \x28D6 BRAILLE PATTERN DOTS-23578 # \x28D7 BRAILLE PATTERN DOTS-123578 # \x28D8 BRAILLE PATTERN DOTS-4578 # \x28D9 BRAILLE PATTERN DOTS-14578 # \x28DA BRAILLE PATTERN DOTS-24578 # \x28DB BRAILLE PATTERN DOTS-124578 # \x28DC BRAILLE PATTERN DOTS-34578 # \x28DD BRAILLE PATTERN DOTS-134578 # \x28DE BRAILLE PATTERN DOTS-234578 # \x28DF BRAILLE PATTERN DOTS-1234578 # \x28E0 BRAILLE PATTERN DOTS-678 # \x28E1 BRAILLE PATTERN DOTS-1678 # \x28E2 BRAILLE PATTERN DOTS-2678 # \x28E3 BRAILLE PATTERN DOTS-12678 # \x28E4 BRAILLE PATTERN DOTS-3678 # \x28E5 BRAILLE PATTERN DOTS-13678 # \x28E6 BRAILLE PATTERN DOTS-23678 # \x28E7 BRAILLE PATTERN DOTS-123678 # \x28E8 BRAILLE PATTERN DOTS-4678 # \x28E9 BRAILLE PATTERN DOTS-14678 # \x28EA BRAILLE PATTERN DOTS-24678 # \x28EB BRAILLE PATTERN DOTS-124678 # \x28EC BRAILLE PATTERN DOTS-34678 # \x28ED BRAILLE PATTERN DOTS-134678 # \x28EE BRAILLE PATTERN DOTS-234678 # \x28EF BRAILLE PATTERN DOTS-1234678 # \x28F0 BRAILLE PATTERN DOTS-5678 # \x28F1 BRAILLE PATTERN DOTS-15678 # \x28F2 BRAILLE PATTERN DOTS-25678 # \x28F3 BRAILLE PATTERN DOTS-125678 # \x28F4 BRAILLE PATTERN DOTS-35678 # \x28F5 BRAILLE PATTERN DOTS-135678 # \x28F6 BRAILLE PATTERN DOTS-235678 # \x28F7 BRAILLE PATTERN DOTS-1235678 # \x28F8 BRAILLE PATTERN DOTS-45678 # \x28F9 BRAILLE PATTERN DOTS-145678 # \x28FA BRAILLE PATTERN DOTS-245678 # \x28FB BRAILLE PATTERN DOTS-1245678 # \x28FC BRAILLE PATTERN DOTS-345678 # \x28FD BRAILLE PATTERN DOTS-1345678 # \x28FE BRAILLE PATTERN DOTS-2345678 # \x28FF BRAILLE PATTERN DOTS-12345678 # \x2900 RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE # \x2901 RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE # \x2902 LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE # \x2903 RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE # \x2904 LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE # \x2905 RIGHTWARDS TWO-HEADED ARROW FROM BAR # \x2906 LEFTWARDS DOUBLE ARROW FROM BAR # \x2907 RIGHTWARDS DOUBLE ARROW FROM BAR # \x2908 DOWNWARDS ARROW WITH HORIZONTAL STROKE # \x2909 UPWARDS ARROW WITH HORIZONTAL STROKE # \x290A UPWARDS TRIPLE ARROW # \x290B DOWNWARDS TRIPLE ARROW # \x290C LEFTWARDS DOUBLE DASH ARROW # \x290D RIGHTWARDS DOUBLE DASH ARROW # \x290E LEFTWARDS TRIPLE DASH ARROW # \x290F RIGHTWARDS TRIPLE DASH ARROW # \x2910 RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW # \x2911 RIGHTWARDS ARROW WITH DOTTED STEM # \x2912 UPWARDS ARROW TO BAR # \x2913 DOWNWARDS ARROW TO BAR # \x2914 RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE # \x2915 RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE # \x2916 RIGHTWARDS TWO-HEADED ARROW WITH TAIL # \x2917 RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE # \x # \x2918 RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE # \x # \x2919 LEFTWARDS ARROW-TAIL # \x291A RIGHTWARDS ARROW-TAIL # \x291B LEFTWARDS DOUBLE ARROW-TAIL # \x291C RIGHTWARDS DOUBLE ARROW-TAIL # \x291D LEFTWARDS ARROW TO BLACK DIAMOND # \x291E RIGHTWARDS ARROW TO BLACK DIAMOND # \x291F LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND # \x2920 RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND # \x2921 NORTH WEST AND SOUTH EAST ARROW # \x2922 NORTH EAST AND SOUTH WEST ARROW # \x2923 NORTH WEST ARROW WITH HOOK # \x2924 NORTH EAST ARROW WITH HOOK # \x2925 SOUTH EAST ARROW WITH HOOK # \x2926 SOUTH WEST ARROW WITH HOOK # \x2927 NORTH WEST ARROW AND NORTH EAST ARROW # \x2928 NORTH EAST ARROW AND SOUTH EAST ARROW # \x2929 SOUTH EAST ARROW AND SOUTH WEST ARROW # \x292A SOUTH WEST ARROW AND NORTH WEST ARROW # \x292B RISING DIAGONAL CROSSING FALLING DIAGONAL # \x292C FALLING DIAGONAL CROSSING RISING DIAGONAL # \x292D SOUTH EAST ARROW CROSSING NORTH EAST ARROW # \x292E NORTH EAST ARROW CROSSING SOUTH EAST ARROW # \x292F FALLING DIAGONAL CROSSING NORTH EAST ARROW # \x2930 RISING DIAGONAL CROSSING SOUTH EAST ARROW # \x2931 NORTH EAST ARROW CROSSING NORTH WEST ARROW # \x2932 NORTH WEST ARROW CROSSING NORTH EAST ARROW # \x2933 WAVE ARROW POINTING DIRECTLY RIGHT # \x2934 ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS # \x2935 ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS # \x2936 ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS # \x2937 ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS # \x2938 RIGHT-SIDE ARC CLOCKWISE ARROW # \x2939 LEFT-SIDE ARC ANTICLOCKWISE ARROW # \x293A TOP ARC ANTICLOCKWISE ARROW # \x293B BOTTOM ARC ANTICLOCKWISE ARROW # \x293C TOP ARC CLOCKWISE ARROW WITH MINUS # \x293D TOP ARC ANTICLOCKWISE ARROW WITH PLUS # \x293E LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW # \x293F LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW # \x2940 ANTICLOCKWISE CLOSED CIRCLE ARROW # \x2941 CLOCKWISE CLOSED CIRCLE ARROW # \x2942 RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW # \x2943 LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW # \x2944 SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW # \x2945 RIGHTWARDS ARROW WITH PLUS BELOW # \x2946 LEFTWARDS ARROW WITH PLUS BELOW # \x2947 RIGHTWARDS ARROW THROUGH X # \x2948 LEFT RIGHT ARROW THROUGH SMALL CIRCLE # \x2949 UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE # \x294A LEFT BARB UP RIGHT BARB DOWN HARPOON # \x294B LEFT BARB DOWN RIGHT BARB UP HARPOON # \x294C UP BARB RIGHT DOWN BARB LEFT HARPOON # \x294D UP BARB LEFT DOWN BARB RIGHT HARPOON # \x294E LEFT BARB UP RIGHT BARB UP HARPOON # \x294F UP BARB RIGHT DOWN BARB RIGHT HARPOON # \x2950 LEFT BARB DOWN RIGHT BARB DOWN HARPOON # \x2951 UP BARB LEFT DOWN BARB LEFT HARPOON # \x2952 LEFTWARDS HARPOON WITH BARB UP TO BAR # \x2953 RIGHTWARDS HARPOON WITH BARB UP TO BAR # \x2954 UPWARDS HARPOON WITH BARB RIGHT TO BAR # \x2955 DOWNWARDS HARPOON WITH BARB RIGHT TO BAR # \x2956 LEFTWARDS HARPOON WITH BARB DOWN TO BAR # \x2957 RIGHTWARDS HARPOON WITH BARB DOWN TO BAR # \x2958 UPWARDS HARPOON WITH BARB LEFT TO BAR # \x2959 DOWNWARDS HARPOON WITH BARB LEFT TO BAR # \x295A LEFTWARDS HARPOON WITH BARB UP FROM BAR # \x295B RIGHTWARDS HARPOON WITH BARB UP FROM BAR # \x295C UPWARDS HARPOON WITH BARB RIGHT FROM BAR # \x295D DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR # \x295E LEFTWARDS HARPOON WITH BARB DOWN FROM BAR # \x295F RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR # \x2960 UPWARDS HARPOON WITH BARB LEFT FROM BAR # \x2961 DOWNWARDS HARPOON WITH BARB LEFT FROM BAR # \x2962 LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN 0 # \x # \x2963 UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT 0 # \x # \x2964 RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN Sm # \x # \x2965 DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT # \x # \x2966 LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP # \xON # \x2967 LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN S # \xm # \x2968 RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP # \xON # \x2969 RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN S # \xm # \x296A LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH # \x296B LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH # \x296C RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH # \x296D RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH # \x296E UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT Sm # \x # \x296F DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT Sm # \x # \x2970 RIGHT DOUBLE ARROW WITH ROUNDED HEAD # \x2971 EQUALS SIGN ABOVE RIGHTWARDS ARROW # \x2972 TILDE OPERATOR ABOVE RIGHTWARDS ARROW # \x2973 LEFTWARDS ARROW ABOVE TILDE OPERATOR # \x2974 RIGHTWARDS ARROW ABOVE TILDE OPERATOR # \x2975 RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO # \x2976 LESS-THAN ABOVE LEFTWARDS ARROW # \x2977 LEFTWARDS ARROW THROUGH LESS-THAN # \x2978 GREATER-THAN ABOVE RIGHTWARDS ARROW # \x2979 SUBSET ABOVE RIGHTWARDS ARROW # \x297A LEFTWARDS ARROW THROUGH SUBSET # \x297B SUPERSET ABOVE LEFTWARDS ARROW # \x297C LEFT FISH TAIL # \x297D RIGHT FISH TAIL # \x297E UP FISH TAIL # \x297F DOWN FISH TAIL # \x2980 TRIPLE VERTICAL BAR DELIMITER # \x2981 Z NOTATION SPOT # \x2982 Z NOTATION TYPE COLON # \x2983 LEFT WHITE CURLY BRACKET # \x2984 RIGHT WHITE CURLY BRACKET # \x2985 LEFT WHITE PARENTHESIS # \x2986 RIGHT WHITE PARENTHESIS # \x2987 Z NOTATION LEFT IMAGE BRACKET # \x2988 Z NOTATION RIGHT IMAGE BRACKET # \x2989 Z NOTATION LEFT BINDING BRACKET # \x298A Z NOTATION RIGHT BINDING BRACKET # \x298B LEFT SQUARE BRACKET WITH UNDERBAR # \x298C RIGHT SQUARE BRACKET WITH UNDERBAR # \x298D LEFT SQUARE BRACKET WITH TICK IN TOP CORNER # \x298E RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER # \x298F LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER # \x2990 RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER # \x2991 LEFT ANGLE BRACKET WITH DOT # \x2992 RIGHT ANGLE BRACKET WITH DOT # \x2993 LEFT ARC LESS-THAN BRACKET # \x2994 RIGHT ARC GREATER-THAN BRACKET # \x2995 DOUBLE LEFT ARC GREATER-THAN BRACKET # \x2996 DOUBLE RIGHT ARC LESS-THAN BRACKET # \x2997 LEFT BLACK TORTOISE SHELL BRACKET # \x2998 RIGHT BLACK TORTOISE SHELL BRACKET # \x2999 DOTTED FENCE # \x299A VERTICAL ZIGZAG LINE # \x299B MEASURED ANGLE OPENING LEFT # \x299C RIGHT ANGLE VARIANT WITH SQUARE # \x299D MEASURED RIGHT ANGLE WITH DOT # \x299E ANGLE WITH S INSIDE # \x299F ACUTE ANGLE # \x29A0 SPHERICAL ANGLE OPENING LEFT # \x29A1 SPHERICAL ANGLE OPENING UP # \x29A2 TURNED ANGLE # \x29A3 REVERSED ANGLE # \x29A4 ANGLE WITH UNDERBAR # \x29A5 REVERSED ANGLE WITH UNDERBAR # \x29A6 OBLIQUE ANGLE OPENING UP # \x29A7 OBLIQUE ANGLE OPENING DOWN # \x29A8 MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT ON # \x Y # \x29A9 MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT # \x Y # \x29AA MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT # \xON Y # \x29AB MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT O # \xN Y # \x29AC MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP ON # \x Y # \x29AD MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP # \x Y # \x29AE MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN # \xON Y # \x29AF MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN O # \xN Y # \x29B0 REVERSED EMPTY SET # \x29B1 EMPTY SET WITH OVERBAR # \x29B2 EMPTY SET WITH SMALL CIRCLE ABOVE # \x29B3 EMPTY SET WITH RIGHT ARROW ABOVE # \x29B4 EMPTY SET WITH LEFT ARROW ABOVE # \x29B5 CIRCLE WITH HORIZONTAL BAR # \x29B6 CIRCLED VERTICAL BAR # \x29B7 CIRCLED PARALLEL # \x29B8 CIRCLED REVERSE SOLIDUS # \x29B9 CIRCLED PERPENDICULAR # \x29BA CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR 0 # \x # \x29BB CIRCLE WITH SUPERIMPOSED X # \x29BC CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN # \x29BD UP ARROW THROUGH CIRCLE # \x29BE CIRCLED WHITE BULLET # \x29BF CIRCLED BULLET # \x29C0 CIRCLED LESS-THAN # \x29C1 CIRCLED GREATER-THAN # \x29C2 CIRCLE WITH SMALL CIRCLE TO THE RIGHT # \x29C3 CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT # \x29C4 SQUARED RISING DIAGONAL SLASH # \x29C5 SQUARED FALLING DIAGONAL SLASH # \x29C6 SQUARED ASTERISK # \x29C7 SQUARED SMALL CIRCLE # \x29C8 SQUARED SQUARE # \x29C9 TWO JOINED SQUARES # \x29CA TRIANGLE WITH DOT ABOVE # \x29CB TRIANGLE WITH UNDERBAR # \x29CC S IN TRIANGLE # \x29CD TRIANGLE WITH SERIFS AT BOTTOM # \x29CE RIGHT TRIANGLE ABOVE LEFT TRIANGLE # \x29CF LEFT TRIANGLE BESIDE VERTICAL BAR # \x29D0 VERTICAL BAR BESIDE RIGHT TRIANGLE # \x29D1 BOWTIE WITH LEFT HALF BLACK # \x29D2 BOWTIE WITH RIGHT HALF BLACK # \x29D3 BLACK BOWTIE # \x29D4 TIMES WITH LEFT HALF BLACK # \x29D5 TIMES WITH RIGHT HALF BLACK # \x29D6 WHITE HOURGLASS # \x29D7 BLACK HOURGLASS # \x29D8 LEFT WIGGLY FENCE # \x29D9 RIGHT WIGGLY FENCE # \x29DA LEFT DOUBLE WIGGLY FENCE # \x29DB RIGHT DOUBLE WIGGLY FENCE # \x29DC INCOMPLETE INFINITY # \x29DD TIE OVER INFINITY # \x29DE INFINITY NEGATED WITH VERTICAL BAR # \x29DF DOUBLE-ENDED MULTIMAP # \x29E0 SQUARE WITH CONTOURED OUTLINE # \x29E1 INCREASES AS # \x29E2 SHUFFLE PRODUCT # \x29E3 EQUALS SIGN AND SLANTED PARALLEL # \x29E4 EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE # \x29E5 IDENTICAL TO AND SLANTED PARALLEL # \x29E6 GLEICH STARK # \x29E7 THERMODYNAMIC # \x29E8 DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK # \x29E9 DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK # \x29EA BLACK DIAMOND WITH DOWN ARROW # \x29EB BLACK LOZENGE # \x29EC WHITE CIRCLE WITH DOWN ARROW # \x29ED BLACK CIRCLE WITH DOWN ARROW # \x29EE ERROR-BARRED WHITE SQUARE # \x29EF ERROR-BARRED BLACK SQUARE # \x29F0 ERROR-BARRED WHITE DIAMOND # \x29F1 ERROR-BARRED BLACK DIAMOND # \x29F2 ERROR-BARRED WHITE CIRCLE # \x29F3 ERROR-BARRED BLACK CIRCLE # \x29F4 RULE-DELAYED # \x29F5 REVERSE SOLIDUS OPERATOR # \x29F6 SOLIDUS WITH OVERBAR # \x29F7 REVERSE SOLIDUS WITH HORIZONTAL STROKE # \x29F8 BIG SOLIDUS # \x29F9 BIG REVERSE SOLIDUS # \x29FA DOUBLE PLUS # \x29FB TRIPLE PLUS # \x29FC LEFT-POINTING CURVED ANGLE BRACKET # \x29FD RIGHT-POINTING CURVED ANGLE BRACKET # \x29FE TINY # \x29FF MINY # \x2A00 N-ARY CIRCLED DOT OPERATOR # \x2A01 N-ARY CIRCLED PLUS OPERATOR # \x2A02 N-ARY CIRCLED TIMES OPERATOR # \x2A03 N-ARY UNION OPERATOR WITH DOT # \x2A04 N-ARY UNION OPERATOR WITH PLUS # \x2A05 N-ARY SQUARE INTERSECTION OPERATOR # \x2A06 N-ARY SQUARE UNION OPERATOR # \x2A07 TWO LOGICAL AND OPERATOR # \x2A08 TWO LOGICAL OR OPERATOR # \x2A09 N-ARY TIMES OPERATOR # \x2A0A MODULO TWO SUM # \x2A0B SUMMATION WITH INTEGRAL # \x2A0C QUADRUPLE INTEGRAL OPERATOR 222B 222B 222B 222B Y # \x2A0D FINITE PART INTEGRAL # \x2A0E INTEGRAL WITH DOUBLE STROKE # \x2A0F INTEGRAL AVERAGE WITH SLASH # \x2A10 CIRCULATION FUNCTION # \x2A11 ANTICLOCKWISE INTEGRATION # \x2A12 LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE # \x2A13 LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE # \x2A14 LINE INTEGRATION NOT INCLUDING THE POLE # \x2A15 INTEGRAL AROUND A POINT OPERATOR # \x2A16 QUATERNION INTEGRAL OPERATOR # \x2A17 INTEGRAL WITH LEFTWARDS ARROW WITH HOOK # \x2A18 INTEGRAL WITH TIMES SIGN # \x2A19 INTEGRAL WITH INTERSECTION # \x2A1A INTEGRAL WITH UNION # \x2A1B INTEGRAL WITH OVERBAR # \x2A1C INTEGRAL WITH UNDERBAR # \x2A1D JOIN # \x2A1E LARGE LEFT TRIANGLE OPERATOR # \x2A1F Z NOTATION SCHEMA COMPOSITION # \x2A20 Z NOTATION SCHEMA PIPING # \x2A21 Z NOTATION SCHEMA PROJECTION # \x2A22 PLUS SIGN WITH SMALL CIRCLE ABOVE # \x2A23 PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE # \x2A24 PLUS SIGN WITH TILDE ABOVE # \x2A25 PLUS SIGN WITH DOT BELOW # \x2A26 PLUS SIGN WITH TILDE BELOW # \x2A27 PLUS SIGN WITH SUBSCRIPT TWO # \x2A28 PLUS SIGN WITH BLACK TRIANGLE # \x2A29 MINUS SIGN WITH COMMA ABOVE # \x2A2A MINUS SIGN WITH DOT BELOW # \x2A2B MINUS SIGN WITH FALLING DOTS # \x2A2C MINUS SIGN WITH RISING DOTS # \x2A2D PLUS SIGN IN LEFT HALF CIRCLE # \x2A2E PLUS SIGN IN RIGHT HALF CIRCLE # \x2A2F VECTOR OR CROSS PRODUCT # \x2A30 MULTIPLICATION SIGN WITH DOT ABOVE # \x2A31 MULTIPLICATION SIGN WITH UNDERBAR # \x2A32 SEMIDIRECT PRODUCT WITH BOTTOM CLOSED # \x2A33 SMASH PRODUCT # \x2A34 MULTIPLICATION SIGN IN LEFT HALF CIRCLE # \x2A35 MULTIPLICATION SIGN IN RIGHT HALF CIRCLE # \x2A36 CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT # \x2A37 MULTIPLICATION SIGN IN DOUBLE CIRCLE # \x2A38 CIRCLED DIVISION SIGN # \x2A39 PLUS SIGN IN TRIANGLE # \x2A3A MINUS SIGN IN TRIANGLE # \x2A3B MULTIPLICATION SIGN IN TRIANGLE # \x2A3C INTERIOR PRODUCT # \x2A3D RIGHTHAND INTERIOR PRODUCT # \x2A3E Z NOTATION RELATIONAL COMPOSITION # \x2A3F AMALGAMATION OR COPRODUCT # \x2A40 INTERSECTION WITH DOT # \x2A41 UNION WITH MINUS SIGN # \x2A42 UNION WITH OVERBAR # \x2A43 INTERSECTION WITH OVERBAR # \x2A44 INTERSECTION WITH LOGICAL AND # \x2A45 UNION WITH LOGICAL OR # \x2A46 UNION ABOVE INTERSECTION # \x2A47 INTERSECTION ABOVE UNION # \x2A48 UNION ABOVE BAR ABOVE INTERSECTION # \x2A49 INTERSECTION ABOVE BAR ABOVE UNION # \x2A4A UNION BESIDE AND JOINED WITH UNION # \x2A4B INTERSECTION BESIDE AND JOINED WITH INTERSECTION # \x2A4C CLOSED UNION WITH SERIFS # \x2A4D CLOSED INTERSECTION WITH SERIFS # \x2A4E DOUBLE SQUARE INTERSECTION # \x2A4F DOUBLE SQUARE UNION # \x2A50 CLOSED UNION WITH SERIFS AND SMASH PRODUCT # \x2A51 LOGICAL AND WITH DOT ABOVE # \x2A52 LOGICAL OR WITH DOT ABOVE # \x2A53 DOUBLE LOGICAL AND # \x2A54 DOUBLE LOGICAL OR # \x2A55 TWO INTERSECTING LOGICAL AND # \x2A56 TWO INTERSECTING LOGICAL OR # \x2A57 SLOPING LARGE OR # \x2A58 SLOPING LARGE AND # \x2A59 LOGICAL OR OVERLAPPING LOGICAL AND # \x2A5A LOGICAL AND WITH MIDDLE STEM # \x2A5B LOGICAL OR WITH MIDDLE STEM # \x2A5C LOGICAL AND WITH HORIZONTAL DASH # \x2A5D LOGICAL OR WITH HORIZONTAL DASH # \x2A5E LOGICAL AND WITH DOUBLE OVERBAR # \x2A5F LOGICAL AND WITH UNDERBAR # \x2A60 LOGICAL AND WITH DOUBLE UNDERBAR # \x2A61 SMALL VEE WITH UNDERBAR # \x2A62 LOGICAL OR WITH DOUBLE OVERBAR # \x2A63 LOGICAL OR WITH DOUBLE UNDERBAR # \x2A64 Z NOTATION DOMAIN ANTIRESTRICTION # \x2A65 Z NOTATION RANGE ANTIRESTRICTION # \x2A66 EQUALS SIGN WITH DOT BELOW # \x2A67 IDENTICAL WITH DOT ABOVE # \x2A68 TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE # \x2A69 TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE # \x2A6A TILDE OPERATOR WITH DOT ABOVE # \x2A6B TILDE OPERATOR WITH RISING DOTS # \x2A6C SIMILAR MINUS SIMILAR # \x2A6D CONGRUENT WITH DOT ABOVE # \x2A6E EQUALS WITH ASTERISK # \x2A6F ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT # \x2A70 APPROXIMATELY EQUAL OR EQUAL TO # \x2A71 EQUALS SIGN ABOVE PLUS SIGN # \x2A72 PLUS SIGN ABOVE EQUALS SIGN # \x2A73 EQUALS SIGN ABOVE TILDE OPERATOR # \x2A74 DOUBLE COLON EQUAL 003A 003A 003D Y # \x2A75 TWO CONSECUTIVE EQUALS SIGNS 003D 003D # \x2A76 THREE CONSECUTIVE EQUALS SIGNS 003D 003D 003D # \x2A77 EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW # \x2A78 EQUIVALENT WITH FOUR DOTS ABOVE # \x2A79 LESS-THAN WITH CIRCLE INSIDE # \x2A7A GREATER-THAN WITH CIRCLE INSIDE # \x2A7B LESS-THAN WITH QUESTION MARK ABOVE # \x2A7C GREATER-THAN WITH QUESTION MARK ABOVE # \x2A7D LESS-THAN OR SLANTED EQUAL TO # \x2A7E GREATER-THAN OR SLANTED EQUAL TO # \x2A7F LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE # \x2A80 GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE # \x2A81 LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE # \x2A82 GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE # \x2A83 LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT # \x2A84 GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT # \x2A85 LESS-THAN OR APPROXIMATE # \x2A86 GREATER-THAN OR APPROXIMATE # \x2A87 LESS-THAN AND SINGLE-LINE NOT EQUAL TO # \x2A88 GREATER-THAN AND SINGLE-LINE NOT EQUAL TO # \x2A89 LESS-THAN AND NOT APPROXIMATE # \x2A8A GREATER-THAN AND NOT APPROXIMATE # \x2A8B LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN # \x2A8C GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN # \x2A8D LESS-THAN ABOVE SIMILAR OR EQUAL # \x2A8E GREATER-THAN ABOVE SIMILAR OR EQUAL # \x2A8F LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN # \x2A90 GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN # \x2A91 LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL # \x2A92 GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL # \x2A93 LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL # \xON Y # \x2A94 GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL # \xON Y # \x2A95 SLANTED EQUAL TO OR LESS-THAN # \x2A96 SLANTED EQUAL TO OR GREATER-THAN # \x2A97 SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE # \x2A98 SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE # \x2A99 DOUBLE-LINE EQUAL TO OR LESS-THAN # \x2A9A DOUBLE-LINE EQUAL TO OR GREATER-THAN # \x2A9B DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN # \x2A9C DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN # \x2A9D SIMILAR OR LESS-THAN # \x2A9E SIMILAR OR GREATER-THAN # \x2A9F SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN # \x2AA0 SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN # \x2AA1 DOUBLE NESTED LESS-THAN # \x2AA2 DOUBLE NESTED GREATER-THAN # \x2AA3 DOUBLE NESTED LESS-THAN WITH UNDERBAR # \x2AA4 GREATER-THAN OVERLAPPING LESS-THAN # \x2AA5 GREATER-THAN BESIDE LESS-THAN # \x2AA6 LESS-THAN CLOSED BY CURVE # \x2AA7 GREATER-THAN CLOSED BY CURVE # \x2AA8 LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL # \x2AA9 GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL # \x2AAA SMALLER THAN # \x2AAB LARGER THAN # \x2AAC SMALLER THAN OR EQUAL TO # \x2AAD LARGER THAN OR EQUAL TO # \x2AAE EQUALS SIGN WITH BUMPY ABOVE # \x2AAF PRECEDES ABOVE SINGLE-LINE EQUALS SIGN # \x2AB0 SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN # \x2AB1 PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO # \x2AB2 SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO # \x2AB3 PRECEDES ABOVE EQUALS SIGN # \x2AB4 SUCCEEDS ABOVE EQUALS SIGN # \x2AB5 PRECEDES ABOVE NOT EQUAL TO # \x2AB6 SUCCEEDS ABOVE NOT EQUAL TO # \x2AB7 PRECEDES ABOVE ALMOST EQUAL TO # \x2AB8 SUCCEEDS ABOVE ALMOST EQUAL TO # \x2AB9 PRECEDES ABOVE NOT ALMOST EQUAL TO # \x2ABA SUCCEEDS ABOVE NOT ALMOST EQUAL TO # \x2ABB DOUBLE PRECEDES # \x2ABC DOUBLE SUCCEEDS # \x2ABD SUBSET WITH DOT # \x2ABE SUPERSET WITH DOT # \x2ABF SUBSET WITH PLUS SIGN BELOW # \x2AC0 SUPERSET WITH PLUS SIGN BELOW # \x2AC1 SUBSET WITH MULTIPLICATION SIGN BELOW # \x2AC2 SUPERSET WITH MULTIPLICATION SIGN BELOW # \x2AC3 SUBSET OF OR EQUAL TO WITH DOT ABOVE # \x2AC4 SUPERSET OF OR EQUAL TO WITH DOT ABOVE # \x2AC5 SUBSET OF ABOVE EQUALS SIGN # \x2AC6 SUPERSET OF ABOVE EQUALS SIGN # \x2AC7 SUBSET OF ABOVE TILDE OPERATOR # \x2AC8 SUPERSET OF ABOVE TILDE OPERATOR # \x2AC9 SUBSET OF ABOVE ALMOST EQUAL TO # \x2ACA SUPERSET OF ABOVE ALMOST EQUAL TO # \x2ACB SUBSET OF ABOVE NOT EQUAL TO # \x2ACC SUPERSET OF ABOVE NOT EQUAL TO # \x2ACD SQUARE LEFT OPEN BOX OPERATOR # \x2ACE SQUARE RIGHT OPEN BOX OPERATOR # \x2ACF CLOSED SUBSET # \x2AD0 CLOSED SUPERSET # \x2AD1 CLOSED SUBSET OR EQUAL TO # \x2AD2 CLOSED SUPERSET OR EQUAL TO # \x2AD3 SUBSET ABOVE SUPERSET # \x2AD4 SUPERSET ABOVE SUBSET # \x2AD5 SUBSET ABOVE SUBSET # \x2AD6 SUPERSET ABOVE SUPERSET # \x2AD7 SUPERSET BESIDE SUBSET # \x2AD8 SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET # \x2AD9 ELEMENT OF OPENING DOWNWARDS # \x2ADA PITCHFORK WITH TEE TOP # \x2ADB TRANSVERSAL INTERSECTION # \x2ADC FORKING 2ADD 0338 Y not independent # \x2ADD NONFORKING independent # \x2ADE SHORT LEFT TACK # \x2ADF SHORT DOWN TACK # \x2AE0 SHORT UP TACK # \x2AE1 PERPENDICULAR WITH S # \x2AE2 VERTICAL BAR TRIPLE RIGHT TURNSTILE # \x2AE3 DOUBLE VERTICAL BAR LEFT TURNSTILE # \x2AE4 VERTICAL BAR DOUBLE LEFT TURNSTILE # \x2AE5 DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE # \x2AE6 LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL # \x2AE7 SHORT DOWN TACK WITH OVERBAR # \x2AE8 SHORT UP TACK WITH UNDERBAR # \x2AE9 SHORT UP TACK ABOVE SHORT DOWN TACK # \x2AEA DOUBLE DOWN TACK # \x2AEB DOUBLE UP TACK # \x2AEC DOUBLE STROKE NOT SIGN # \x2AED REVERSED DOUBLE STROKE NOT SIGN # \x2AEE DOES NOT DIVIDE WITH REVERSED NEGATION SLASH # \x2AEF VERTICAL LINE WITH CIRCLE ABOVE # \x2AF0 VERTICAL LINE WITH CIRCLE BELOW # \x2AF1 DOWN TACK WITH CIRCLE BELOW # \x2AF2 PARALLEL WITH HORIZONTAL STROKE # \x2AF3 PARALLEL WITH TILDE OPERATOR # \x2AF4 TRIPLE VERTICAL BAR BINARY RELATION # \x2AF5 TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE # \x2AF6 TRIPLE COLON OPERATOR # \x2AF7 TRIPLE NESTED LESS-THAN # \x2AF8 TRIPLE NESTED GREATER-THAN # \x2AF9 DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO # \x2AFA DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO # \x2AFB TRIPLE SOLIDUS BINARY RELATION # \x2AFC LARGE TRIPLE VERTICAL BAR OPERATOR # \x2AFD DOUBLE SOLIDUS OPERATOR # \x2AFE WHITE VERTICAL BAR # \x2AFF N-ARY WHITE VERTICAL BAR # \x2B00 NORTH EAST WHITE ARROW # \x2B01 NORTH WEST WHITE ARROW # \x2B02 SOUTH EAST WHITE ARROW # \x2B03 SOUTH WEST WHITE ARROW # \x2B04 LEFT RIGHT WHITE ARROW # \x2B05 LEFTWARDS BLACK ARROW # \x2B06 UPWARDS BLACK ARROW # \x2B07 DOWNWARDS BLACK ARROW # \x2B08 NORTH EAST BLACK ARROW # \x2B09 NORTH WEST BLACK ARROW # \x2B0A SOUTH EAST BLACK ARROW # \x2B0B SOUTH WEST BLACK ARROW # \x2B0C LEFT RIGHT BLACK ARROW # \x2B0D UP DOWN BLACK ARROW # \x2E80 CJK RADICAL REPEAT # \x2E81 CJK RADICAL CLIFF # \x2E82 CJK RADICAL SECOND ONE # \x2E83 CJK RADICAL SECOND TWO # \x2E84 CJK RADICAL SECOND THREE # \x2E85 CJK RADICAL PERSON # \x2E86 CJK RADICAL BOX # \x2E87 CJK RADICAL TABLE # \x2E88 CJK RADICAL KNIFE ONE # \x2E89 CJK RADICAL KNIFE TWO # \x2E8A CJK RADICAL DIVINATION # \x2E8B CJK RADICAL SEAL # \x2E8C CJK RADICAL SMALL ONE # \x2E8D CJK RADICAL SMALL TWO # \x2E8E CJK RADICAL LAME ONE # \x2E8F CJK RADICAL LAME TWO # \x2E90 CJK RADICAL LAME THREE # \x2E91 CJK RADICAL LAME FOUR # \x2E92 CJK RADICAL SNAKE # \x2E93 CJK RADICAL THREAD # \x2E94 CJK RADICAL SNOUT ONE # \x2E95 CJK RADICAL SNOUT TWO # \x2E96 CJK RADICAL HEART ONE # \x2E97 CJK RADICAL HEART TWO # \x2E98 CJK RADICAL HAND # \x2E99 CJK RADICAL RAP # \x2E9B CJK RADICAL CHOKE # \x2E9C CJK RADICAL SUN # \x2E9D CJK RADICAL MOON # \x2E9E CJK RADICAL DEATH # \x2E9F CJK RADICAL MOTHER 6BCD # \x2EA0 CJK RADICAL CIVILIAN # \x2EA1 CJK RADICAL WATER ONE # \x2EA2 CJK RADICAL WATER TWO # \x2EA3 CJK RADICAL FIRE # \x2EA4 CJK RADICAL PAW ONE # \x2EA5 CJK RADICAL PAW TWO # \x2EA6 CJK RADICAL SIMPLIFIED HALF TREE TRUNK # \x2EA7 CJK RADICAL COW # \x2EA8 CJK RADICAL DOG # \x2EA9 CJK RADICAL JADE # \x2EAA CJK RADICAL BOLT OF CLOTH # \x2EAB CJK RADICAL EYE # \x2EAC CJK RADICAL SPIRIT ONE # \x2EAD CJK RADICAL SPIRIT TWO # \x2EAE CJK RADICAL BAMBOO # \x2EAF CJK RADICAL SILK # \x2EB0 CJK RADICAL C-SIMPLIFIED SILK # \x2EB1 CJK RADICAL NET ONE # \x2EB2 CJK RADICAL NET TWO # \x2EB3 CJK RADICAL NET THREE # \x2EB4 CJK RADICAL NET FOUR # \x2EB5 CJK RADICAL MESH # \x2EB6 CJK RADICAL SHEEP # \x2EB7 CJK RADICAL RAM # \x2EB8 CJK RADICAL EWE # \x2EB9 CJK RADICAL OLD # \x2EBA CJK RADICAL BRUSH ONE # \x2EBB CJK RADICAL BRUSH TWO # \x2EBC CJK RADICAL MEAT # \x2EBD CJK RADICAL MORTAR # \x2EBE CJK RADICAL GRASS ONE # \x2EBF CJK RADICAL GRASS TWO # \x2EC0 CJK RADICAL GRASS THREE # \x2EC1 CJK RADICAL TIGER # \x2EC2 CJK RADICAL CLOTHES # \x2EC3 CJK RADICAL WEST ONE # \x2EC4 CJK RADICAL WEST TWO # \x2EC5 CJK RADICAL C-SIMPLIFIED SEE # \x2EC6 CJK RADICAL SIMPLIFIED HORN # \x2EC7 CJK RADICAL HORN # \x2EC8 CJK RADICAL C-SIMPLIFIED SPEECH # \x2EC9 CJK RADICAL C-SIMPLIFIED SHELL # \x2ECA CJK RADICAL FOOT # \x2ECB CJK RADICAL C-SIMPLIFIED CART # \x2ECC CJK RADICAL SIMPLIFIED WALK # \x2ECD CJK RADICAL WALK ONE # \x2ECE CJK RADICAL WALK TWO # \x2ECF CJK RADICAL CITY # \x2ED0 CJK RADICAL C-SIMPLIFIED GOLD # \x2ED1 CJK RADICAL LONG ONE # \x2ED2 CJK RADICAL LONG TWO # \x2ED3 CJK RADICAL C-SIMPLIFIED LONG # \x2ED4 CJK RADICAL C-SIMPLIFIED GATE # \x2ED5 CJK RADICAL MOUND ONE # \x2ED6 CJK RADICAL MOUND TWO # \x2ED7 CJK RADICAL RAIN # \x2ED8 CJK RADICAL BLUE # \x2ED9 CJK RADICAL C-SIMPLIFIED TANNED LEATHER # \x2EDA CJK RADICAL C-SIMPLIFIED LEAF # \x2EDB CJK RADICAL C-SIMPLIFIED WIND # \x2EDC CJK RADICAL C-SIMPLIFIED FLY # \x2EDD CJK RADICAL EAT ONE # \x2EDE CJK RADICAL EAT TWO # \x2EDF CJK RADICAL EAT THREE # \x2EE0 CJK RADICAL C-SIMPLIFIED EAT # \x2EE1 CJK RADICAL HEAD # \x2EE2 CJK RADICAL C-SIMPLIFIED HORSE # \x2EE3 CJK RADICAL BONE # \x2EE4 CJK RADICAL GHOST # \x2EE5 CJK RADICAL C-SIMPLIFIED FISH # \x2EE6 CJK RADICAL C-SIMPLIFIED BIRD # \x2EE7 CJK RADICAL C-SIMPLIFIED SALT # \x2EE8 CJK RADICAL SIMPLIFIED WHEAT # \x2EE9 CJK RADICAL SIMPLIFIED YELLOW # \x2EEA CJK RADICAL C-SIMPLIFIED FROG # \x2EEB CJK RADICAL J-SIMPLIFIED EVEN # \x2EEC CJK RADICAL C-SIMPLIFIED EVEN # \x2EED CJK RADICAL J-SIMPLIFIED TOOTH # \x2EEE CJK RADICAL C-SIMPLIFIED TOOTH # \x2EEF CJK RADICAL J-SIMPLIFIED DRAGON # \x2EF0 CJK RADICAL C-SIMPLIFIED DRAGON # \x2EF1 CJK RADICAL TURTLE # \x2EF2 CJK RADICAL J-SIMPLIFIED TURTLE # \x2EF3 CJK RADICAL C-SIMPLIFIED TURTLE 9F9F # \x2F00 KANGXI RADICAL ONE 4E00 # \x2F01 KANGXI RADICAL LINE 4E28 # \x2F02 KANGXI RADICAL DOT 4E36 # \x2F03 KANGXI RADICAL SLASH 4E3F # \x2F04 KANGXI RADICAL SECOND 4E59 # \x2F05 KANGXI RADICAL HOOK 4E85 # \x2F06 KANGXI RADICAL TWO 4E8C # \x2F07 KANGXI RADICAL LID 4EA0 # \x2F08 KANGXI RADICAL MAN 4EBA # \x2F09 KANGXI RADICAL LEGS 513F # \x2F0A KANGXI RADICAL ENTER 5165 # \x2F0B KANGXI RADICAL EIGHT 516B # \x2F0C KANGXI RADICAL DOWN BOX 5182 # \x2F0D KANGXI RADICAL COVER 5196 # \x2F0E KANGXI RADICAL ICE 51AB # \x2F0F KANGXI RADICAL TABLE 51E0 # \x2F10 KANGXI RADICAL OPEN BOX 51F5 # \x2F11 KANGXI RADICAL KNIFE 5200 # \x2F12 KANGXI RADICAL POWER 529B # \x2F13 KANGXI RADICAL WRAP 52F9 # \x2F14 KANGXI RADICAL SPOON 5315 # \x2F15 KANGXI RADICAL RIGHT OPEN BOX 531A # \x2F16 KANGXI RADICAL HIDING ENCLOSURE 5338 # \x2F17 KANGXI RADICAL TEN 5341 # \x2F18 KANGXI RADICAL DIVINATION 535C # \x2F19 KANGXI RADICAL SEAL 5369 # \x2F1A KANGXI RADICAL CLIFF 5382 # \x2F1B KANGXI RADICAL PRIVATE 53B6 # \x2F1C KANGXI RADICAL AGAIN 53C8 # \x2F1D KANGXI RADICAL MOUTH 53E3 # \x2F1E KANGXI RADICAL ENCLOSURE 56D7 # \x2F1F KANGXI RADICAL EARTH 571F # \x2F20 KANGXI RADICAL SCHOLAR 58EB # \x2F21 KANGXI RADICAL GO 5902 # \x2F22 KANGXI RADICAL GO SLOWLY 590A # \x2F23 KANGXI RADICAL EVENING 5915 # \x2F24 KANGXI RADICAL BIG 5927 # \x2F25 KANGXI RADICAL WOMAN 5973 # \x2F26 KANGXI RADICAL CHILD 5B50 # \x2F27 KANGXI RADICAL ROOF 5B80 # \x2F28 KANGXI RADICAL INCH 5BF8 # \x2F29 KANGXI RADICAL SMALL 5C0F # \x2F2A KANGXI RADICAL LAME 5C22 # \x2F2B KANGXI RADICAL CORPSE 5C38 # \x2F2C KANGXI RADICAL SPROUT 5C6E # \x2F2D KANGXI RADICAL MOUNTAIN 5C71 # \x2F2E KANGXI RADICAL RIVER 5DDB # \x2F2F KANGXI RADICAL WORK 5DE5 # \x2F30 KANGXI RADICAL ONESELF 5DF1 # \x2F31 KANGXI RADICAL TURBAN 5DFE # \x2F32 KANGXI RADICAL DRY 5E72 # \x2F33 KANGXI RADICAL SHORT THREAD 5E7A # \x2F34 KANGXI RADICAL DOTTED CLIFF 5E7F # \x2F35 KANGXI RADICAL LONG STRIDE 5EF4 # \x2F36 KANGXI RADICAL TWO HANDS 5EFE # \x2F37 KANGXI RADICAL SHOOT 5F0B # \x2F38 KANGXI RADICAL BOW 5F13 # \x2F39 KANGXI RADICAL SNOUT 5F50 # \x2F3A KANGXI RADICAL BRISTLE 5F61 # \x2F3B KANGXI RADICAL STEP 5F73 # \x2F3C KANGXI RADICAL HEART 5FC3 # \x2F3D KANGXI RADICAL HALBERD 6208 # \x2F3E KANGXI RADICAL DOOR 6236 # \x2F3F KANGXI RADICAL HAND 624B # \x2F40 KANGXI RADICAL BRANCH 652F # \x2F41 KANGXI RADICAL RAP 6534 # \x2F42 KANGXI RADICAL SCRIPT 6587 # \x2F43 KANGXI RADICAL DIPPER 6597 # \x2F44 KANGXI RADICAL AXE 65A4 # \x2F45 KANGXI RADICAL SQUARE 65B9 # \x2F46 KANGXI RADICAL NOT 65E0 # \x2F47 KANGXI RADICAL SUN 65E5 # \x2F48 KANGXI RADICAL SAY 66F0 # \x2F49 KANGXI RADICAL MOON 6708 # \x2F4A KANGXI RADICAL TREE 6728 # \x2F4B KANGXI RADICAL LACK 6B20 # \x2F4C KANGXI RADICAL STOP 6B62 # \x2F4D KANGXI RADICAL DEATH 6B79 # \x2F4E KANGXI RADICAL WEAPON 6BB3 # \x2F4F KANGXI RADICAL DO NOT 6BCB # \x2F50 KANGXI RADICAL COMPARE 6BD4 # \x2F51 KANGXI RADICAL FUR 6BDB # \x2F52 KANGXI RADICAL CLAN 6C0F # \x2F53 KANGXI RADICAL STEAM 6C14 # \x2F54 KANGXI RADICAL WATER 6C34 # \x2F55 KANGXI RADICAL FIRE 706B # \x2F56 KANGXI RADICAL CLAW 722A # \x2F57 KANGXI RADICAL FATHER 7236 # \x2F58 KANGXI RADICAL DOUBLE X 723B # \x2F59 KANGXI RADICAL HALF TREE TRUNK 723F # \x2F5A KANGXI RADICAL SLICE 7247 # \x2F5B KANGXI RADICAL FANG 7259 # \x2F5C KANGXI RADICAL COW 725B # \x2F5D KANGXI RADICAL DOG 72AC # \x2F5E KANGXI RADICAL PROFOUND 7384 # \x2F5F KANGXI RADICAL JADE 7389 # \x2F60 KANGXI RADICAL MELON 74DC # \x2F61 KANGXI RADICAL TILE 74E6 # \x2F62 KANGXI RADICAL SWEET 7518 # \x2F63 KANGXI RADICAL LIFE 751F # \x2F64 KANGXI RADICAL USE 7528 # \x2F65 KANGXI RADICAL FIELD 7530 # \x2F66 KANGXI RADICAL BOLT OF CLOTH 758B # \x2F67 KANGXI RADICAL SICKNESS 7592 # \x2F68 KANGXI RADICAL DOTTED TENT 7676 # \x2F69 KANGXI RADICAL WHITE 767D # \x2F6A KANGXI RADICAL SKIN 76AE # \x2F6B KANGXI RADICAL DISH 76BF # \x2F6C KANGXI RADICAL EYE 76EE # \x2F6D KANGXI RADICAL SPEAR 77DB # \x2F6E KANGXI RADICAL ARROW 77E2 # \x2F6F KANGXI RADICAL STONE 77F3 # \x2F70 KANGXI RADICAL SPIRIT 793A # \x2F71 KANGXI RADICAL TRACK 79B8 # \x2F72 KANGXI RADICAL GRAIN 79BE # \x2F73 KANGXI RADICAL CAVE 7A74 # \x2F74 KANGXI RADICAL STAND 7ACB # \x2F75 KANGXI RADICAL BAMBOO 7AF9 # \x2F76 KANGXI RADICAL RICE 7C73 # \x2F77 KANGXI RADICAL SILK 7CF8 # \x2F78 KANGXI RADICAL JAR 7F36 # \x2F79 KANGXI RADICAL NET 7F51 # \x2F7A KANGXI RADICAL SHEEP 7F8A # \x2F7B KANGXI RADICAL FEATHER 7FBD # \x2F7C KANGXI RADICAL OLD 8001 # \x2F7D KANGXI RADICAL AND 800C # \x2F7E KANGXI RADICAL PLOW 8012 # \x2F7F KANGXI RADICAL EAR 8033 # \x2F80 KANGXI RADICAL BRUSH 807F # \x2F81 KANGXI RADICAL MEAT 8089 # \x2F82 KANGXI RADICAL MINISTER 81E3 # \x2F83 KANGXI RADICAL SELF 81EA # \x2F84 KANGXI RADICAL ARRIVE 81F3 # \x2F85 KANGXI RADICAL MORTAR 81FC # \x2F86 KANGXI RADICAL TONGUE 820C # \x2F87 KANGXI RADICAL OPPOSE 821B # \x2F88 KANGXI RADICAL BOAT 821F # \x2F89 KANGXI RADICAL STOPPING 826E # \x2F8A KANGXI RADICAL COLOR 8272 # \x2F8B KANGXI RADICAL GRASS 8278 # \x2F8C KANGXI RADICAL TIGER 864D # \x2F8D KANGXI RADICAL INSECT 866B # \x2F8E KANGXI RADICAL BLOOD 8840 # \x2F8F KANGXI RADICAL WALK ENCLOSURE 884C # \x2F90 KANGXI RADICAL CLOTHES 8863 # \x2F91 KANGXI RADICAL WEST 897E # \x2F92 KANGXI RADICAL SEE 898B # \x2F93 KANGXI RADICAL HORN 89D2 # \x2F94 KANGXI RADICAL SPEECH 8A00 # \x2F95 KANGXI RADICAL VALLEY 8C37 # \x2F96 KANGXI RADICAL BEAN 8C46 # \x2F97 KANGXI RADICAL PIG 8C55 # \x2F98 KANGXI RADICAL BADGER 8C78 # \x2F99 KANGXI RADICAL SHELL 8C9D # \x2F9A KANGXI RADICAL RED 8D64 # \x2F9B KANGXI RADICAL RUN 8D70 # \x2F9C KANGXI RADICAL FOOT 8DB3 # \x2F9D KANGXI RADICAL BODY 8EAB # \x2F9E KANGXI RADICAL CART 8ECA # \x2F9F KANGXI RADICAL BITTER 8F9B # \x2FA0 KANGXI RADICAL MORNING 8FB0 # \x2FA1 KANGXI RADICAL WALK 8FB5 # \x2FA2 KANGXI RADICAL CITY 9091 # \x2FA3 KANGXI RADICAL WINE 9149 # \x2FA4 KANGXI RADICAL DISTINGUISH 91C6 # \x2FA5 KANGXI RADICAL VILLAGE 91CC # \x2FA6 KANGXI RADICAL GOLD 91D1 # \x2FA7 KANGXI RADICAL LONG 9577 # \x2FA8 KANGXI RADICAL GATE 9580 # \x2FA9 KANGXI RADICAL MOUND 961C # \x2FAA KANGXI RADICAL SLAVE 96B6 # \x2FAB KANGXI RADICAL SHORT TAILED BIRD 96B9 # \x2FAC KANGXI RADICAL RAIN 96E8 # \x2FAD KANGXI RADICAL BLUE 9751 # \x2FAE KANGXI RADICAL WRONG 975E # \x2FAF KANGXI RADICAL FACE 9762 # \x2FB0 KANGXI RADICAL LEATHER 9769 # \x2FB1 KANGXI RADICAL TANNED LEATHER 97CB # \x2FB2 KANGXI RADICAL LEEK 97ED # \x2FB3 KANGXI RADICAL SOUND 97F3 # \x2FB4 KANGXI RADICAL LEAF 9801 # \x2FB5 KANGXI RADICAL WIND 98A8 # \x2FB6 KANGXI RADICAL FLY 98DB # \x2FB7 KANGXI RADICAL EAT 98DF # \x2FB8 KANGXI RADICAL HEAD 9996 # \x2FB9 KANGXI RADICAL FRAGRANT 9999 # \x2FBA KANGXI RADICAL HORSE 99AC # \x2FBB KANGXI RADICAL BONE 9AA8 # \x2FBC KANGXI RADICAL TALL 9AD8 # \x2FBD KANGXI RADICAL HAIR 9ADF # \x2FBE KANGXI RADICAL FIGHT 9B25 # \x2FBF KANGXI RADICAL SACRIFICIAL WINE 9B2F # \x2FC0 KANGXI RADICAL CAULDRON 9B32 # \x2FC1 KANGXI RADICAL GHOST 9B3C # \x2FC2 KANGXI RADICAL FISH 9B5A # \x2FC3 KANGXI RADICAL BIRD 9CE5 # \x2FC4 KANGXI RADICAL SALT 9E75 # \x2FC5 KANGXI RADICAL DEER 9E7F # \x2FC6 KANGXI RADICAL WHEAT 9EA5 # \x2FC7 KANGXI RADICAL HEMP 9EBB # \x2FC8 KANGXI RADICAL YELLOW 9EC3 # \x2FC9 KANGXI RADICAL MILLET 9ECD # \x2FCA KANGXI RADICAL BLACK 9ED1 # \x2FCB KANGXI RADICAL EMBROIDERY 9EF9 # \x2FCC KANGXI RADICAL FROG 9EFD # \x2FCD KANGXI RADICAL TRIPOD 9F0E # \x2FCE KANGXI RADICAL DRUM 9F13 # \x2FCF KANGXI RADICAL RAT 9F20 # \x2FD0 KANGXI RADICAL NOSE 9F3B # \x2FD1 KANGXI RADICAL EVEN 9F4A # \x2FD2 KANGXI RADICAL TOOTH 9F52 # \x2FD3 KANGXI RADICAL DRAGON 9F8D # \x2FD4 KANGXI RADICAL TURTLE 9F9C # \x2FD5 KANGXI RADICAL FLUTE 9FA0 # \x2FF0 IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO RIGHT # \x2FF1 IDEOGRAPHIC DESCRIPTION CHARACTER ABOVE TO BELOW # \x2FF2 IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO MIDDLE AND RIGHT # \x # \x2FF3 IDEOGRAPHIC DESCRIPTION CHARACTER ABOVE TO MIDDLE AND BELOW # \x # \x2FF4 IDEOGRAPHIC DESCRIPTION CHARACTER FULL SURROUND # \x2FF5 IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM ABOVE # \x2FF6 IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM BELOW # \x2FF7 IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM LEFT # \x2FF8 IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM UPPER LEFT # \x # \x2FF9 IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM UPPER RIGHT # \x # \x2FFA IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM LOWER LEFT # \x # \x2FFB IDEOGRAPHIC DESCRIPTION CHARACTER OVERLAID # \x3000 IDEOGRAPHIC SPACE 0020 # \x3001 IDEOGRAPHIC COMMA # \x3002 IDEOGRAPHIC FULL STOP IDEOGRAPHIC PERIOD # \x3003 DITTO MARK # \x3004 JAPANESE INDUSTRIAL STANDARD SYMBOL # \x3005 IDEOGRAPHIC ITERATION MARK Lm # \x3006 IDEOGRAPHIC CLOSING MARK # \x3007 IDEOGRAPHIC NUMBER ZERO Nl # \x3008 LEFT ANGLE BRACKET OPENING ANGLE BRACKET # \x3009 RIGHT ANGLE BRACKET CLOSING ANGLE BRACKET # \x300A LEFT DOUBLE ANGLE BRACKET OPENING DOUBLE ANGLE BRACKET # \x300B RIGHT DOUBLE ANGLE BRACKET CLOSING DOUBLE ANGLE BRACKET # \x300C LEFT CORNER BRACKET OPENING CORNER BRACKET # \x300D RIGHT CORNER BRACKET CLOSING CORNER BRACKET # \x300E LEFT WHITE CORNER BRACKET OPENING WHITE CORNER BRACKET # \x300F RIGHT WHITE CORNER BRACKET CLOSING WHITE CORNER BRACKET # \x3010 LEFT BLACK LENTICULAR BRACKET OPENING BLACK LENTICULAR BRACK # \xET # \x3011 RIGHT BLACK LENTICULAR BRACKET CLOSING BLACK LENTICULAR BRAC # \xKET # \x3012 POSTAL MARK # \x3013 GETA MARK # \x3014 LEFT TORTOISE SHELL BRACKET OPENING TORTOISE SHELL BRACKET # \x # \x3015 RIGHT TORTOISE SHELL BRACKET CLOSING TORTOISE SHELL BRACKET # \x # \x3016 LEFT WHITE LENTICULAR BRACKET OPENING WHITE LENTICULAR BRACK # \xET # \x3017 RIGHT WHITE LENTICULAR BRACKET CLOSING WHITE LENTICULAR BRAC # \xKET # \x3018 LEFT WHITE TORTOISE SHELL BRACKET OPENING WHITE TORTOISE SHE # \xLL BRACKET # \x3019 RIGHT WHITE TORTOISE SHELL BRACKET CLOSING WHITE TORTOISE SH # \xELL BRACKET # \x301A LEFT WHITE SQUARE BRACKET OPENING WHITE SQUARE BRACKET # \x301B RIGHT WHITE SQUARE BRACKET CLOSING WHITE SQUARE BRACKET # \x301C WAVE DASH # \x301D REVERSED DOUBLE PRIME QUOTATION MARK # \x301E DOUBLE PRIME QUOTATION MARK Pe # \x301F LOW DOUBLE PRIME QUOTATION MARK Pe # \x3020 POSTAL MARK FACE # \x3021 HANGZHOU NUMERAL ONE Nl 1 # \x3022 HANGZHOU NUMERAL TWO Nl 2 # \x3023 HANGZHOU NUMERAL THREE Nl 3 # \x3024 HANGZHOU NUMERAL FOUR Nl 4 # \x3025 HANGZHOU NUMERAL FIVE Nl 5 # \x3026 HANGZHOU NUMERAL SIX Nl 6 # \x3027 HANGZHOU NUMERAL SEVEN Nl 7 # \x3028 HANGZHOU NUMERAL EIGHT Nl 8 # \x3029 HANGZHOU NUMERAL NINE Nl 9 # \x302A IDEOGRAPHIC LEVEL TONE MARK 218 # \x302B IDEOGRAPHIC RISING TONE MARK 228 # \x302C IDEOGRAPHIC DEPARTING TONE MARK 232 # \x302D IDEOGRAPHIC ENTERING TONE MARK 222 # \x302E HANGUL SINGLE DOT TONE MARK 224 # \x302F HANGUL DOUBLE DOT TONE MARK 224 # \x3030 WAVY DASH # \x3031 VERTICAL KANA REPEAT MARK Lm # \x3032 VERTICAL KANA REPEAT WITH VOICED SOUND MARK Lm # \x3033 VERTICAL KANA REPEAT MARK UPPER HALF Lm # \x3034 VERTICAL KANA REPEAT WITH VOICED SOUND MARK UPPER HALF Lm # \x3035 VERTICAL KANA REPEAT MARK LOWER HALF Lm # \x3036 CIRCLED POSTAL MARK 3012 # \x3037 IDEOGRAPHIC TELEGRAPH LINE FEED SEPARATOR SYMBOL # \x3038 HANGZHOU NUMERAL TEN Nl 5341 10 # \x3039 HANGZHOU NUMERAL TWENTY Nl 5344 20 # \x303A HANGZHOU NUMERAL THIRTY Nl 5345 30 # \x303B VERTICAL IDEOGRAPHIC ITERATION MARK Lm # \x303C MASU MARK # \x303D PART ALTERNATION MARK # \x303E IDEOGRAPHIC VARIATION INDICATOR # \x303F IDEOGRAPHIC HALF FILL SPACE # \x3041 HIRAGANA LETTER SMALL A # \x3042 HIRAGANA LETTER A # \x3043 HIRAGANA LETTER SMALL I # \x3044 HIRAGANA LETTER I # \x3045 HIRAGANA LETTER SMALL U # \x3046 HIRAGANA LETTER U # \x3047 HIRAGANA LETTER SMALL E # \x3048 HIRAGANA LETTER E # \x3049 HIRAGANA LETTER SMALL O # \x304A HIRAGANA LETTER O # \x304B HIRAGANA LETTER KA # \x304C HIRAGANA LETTER GA 304B 3099 # \x304D HIRAGANA LETTER KI # \x304E HIRAGANA LETTER GI 304D 3099 # \x304F HIRAGANA LETTER KU # \x3050 HIRAGANA LETTER GU 304F 3099 # \x3051 HIRAGANA LETTER KE # \x3052 HIRAGANA LETTER GE 3051 3099 # \x3053 HIRAGANA LETTER KO # \x3054 HIRAGANA LETTER GO 3053 3099 # \x3055 HIRAGANA LETTER SA # \x3056 HIRAGANA LETTER ZA 3055 3099 # \x3057 HIRAGANA LETTER SI # \x3058 HIRAGANA LETTER ZI 3057 3099 # \x3059 HIRAGANA LETTER SU # \x305A HIRAGANA LETTER ZU 3059 3099 # \x305B HIRAGANA LETTER SE # \x305C HIRAGANA LETTER ZE 305B 3099 # \x305D HIRAGANA LETTER # \x305E HIRAGANA LETTER ZO 305D 3099 # \x305F HIRAGANA LETTER TA # \x3060 HIRAGANA LETTER DA 305F 3099 # \x3061 HIRAGANA LETTER TI # \x3062 HIRAGANA LETTER DI 3061 3099 # \x3063 HIRAGANA LETTER SMALL TU # \x3064 HIRAGANA LETTER TU # \x3065 HIRAGANA LETTER DU 3064 3099 # \x3066 HIRAGANA LETTER TE # \x3067 HIRAGANA LETTER DE 3066 3099 # \x3068 HIRAGANA LETTER TO # \x3069 HIRAGANA LETTER DO 3068 3099 # \x306A HIRAGANA LETTER NA # \x306B HIRAGANA LETTER NI # \x306C HIRAGANA LETTER NU # \x306D HIRAGANA LETTER NE # \x306E HIRAGANA LETTER NO # \x306F HIRAGANA LETTER HA # \x3070 HIRAGANA LETTER BA 306F 3099 # \x3071 HIRAGANA LETTER PA 306F 309A # \x3072 HIRAGANA LETTER HI # \x3073 HIRAGANA LETTER BI 3072 3099 # \x3074 HIRAGANA LETTER PI 3072 309A # \x3075 HIRAGANA LETTER HU # \x3076 HIRAGANA LETTER BU 3075 3099 # \x3077 HIRAGANA LETTER PU 3075 309A # \x3078 HIRAGANA LETTER HE # \x3079 HIRAGANA LETTER BE 3078 3099 # \x307A HIRAGANA LETTER PE 3078 309A # \x307B HIRAGANA LETTER HO # \x307C HIRAGANA LETTER BO 307B 3099 # \x307D HIRAGANA LETTER 307B 309A # \x307E HIRAGANA LETTER MA # \x307F HIRAGANA LETTER MI # \x3080 HIRAGANA LETTER MU # \x3081 HIRAGANA LETTER ME # \x3082 HIRAGANA LETTER MO # \x3083 HIRAGANA LETTER SMALL YA # \x3084 HIRAGANA LETTER YA # \x3085 HIRAGANA LETTER SMALL YU # \x3086 HIRAGANA LETTER YU # \x3087 HIRAGANA LETTER SMALL YO # \x3088 HIRAGANA LETTER YO # \x3089 HIRAGANA LETTER RA # \x308A HIRAGANA LETTER RI # \x308B HIRAGANA LETTER RU # \x308C HIRAGANA LETTER RE # \x308D HIRAGANA LETTER RO # \x308E HIRAGANA LETTER SMALL WA # \x308F HIRAGANA LETTER WA # \x3090 HIRAGANA LETTER WI # \x3091 HIRAGANA LETTER WE # \x3092 HIRAGANA LETTER WO # \x3093 HIRAGANA LETTER # \x3094 HIRAGANA LETTER VU 3046 3099 # \x3095 HIRAGANA LETTER SMALL KA # \x3096 HIRAGANA LETTER SMALL KE # \x3099 COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK 8 NON-SPACING K # \xATAKANA-HIRAGANA VOICED SOUND MARK # \x309A COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK 8 NON-SPAC # \xING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK # \x309B KATAKANA-HIRAGANA VOICED SOUND MARK 0020 3099 # \x309C KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK 0020 309A # \x # \x309D HIRAGANA ITERATION MARK Lm # \x309E HIRAGANA VOICED ITERATION MARK Lm 309D 3099 # \x309F HIRAGANA DIGRAPH YORI 3088 308A # \x30A0 KATAKANA-HIRAGANA DOUBLE HYPHEN # \x30A1 KATAKANA LETTER SMALL A # \x30A2 KATAKANA LETTER A # \x30A3 KATAKANA LETTER SMALL I # \x30A4 KATAKANA LETTER I # \x30A5 KATAKANA LETTER SMALL U # \x30A6 KATAKANA LETTER U # \x30A7 KATAKANA LETTER SMALL E # \x30A8 KATAKANA LETTER E # \x30A9 KATAKANA LETTER SMALL O # \x30AA KATAKANA LETTER O # \x30AB KATAKANA LETTER KA # \x30AC KATAKANA LETTER GA 30AB 3099 # \x30AD KATAKANA LETTER KI # \x30AE KATAKANA LETTER GI 30AD 3099 # \x30AF KATAKANA LETTER KU # \x30B0 KATAKANA LETTER GU 30AF 3099 # \x30B1 KATAKANA LETTER KE # \x30B2 KATAKANA LETTER GE 30B1 3099 # \x30B3 KATAKANA LETTER KO # \x30B4 KATAKANA LETTER GO 30B3 3099 # \x30B5 KATAKANA LETTER SA # \x30B6 KATAKANA LETTER ZA 30B5 3099 # \x30B7 KATAKANA LETTER SI # \x30B8 KATAKANA LETTER ZI 30B7 3099 # \x30B9 KATAKANA LETTER SU # \x30BA KATAKANA LETTER ZU 30B9 3099 # \x30BB KATAKANA LETTER SE # \x30BC KATAKANA LETTER ZE 30BB 3099 # \x30BD KATAKANA LETTER # \x30BE KATAKANA LETTER ZO 30BD 3099 # \x30BF KATAKANA LETTER TA # \x30C0 KATAKANA LETTER DA 30BF 3099 # \x30C1 KATAKANA LETTER TI # \x30C2 KATAKANA LETTER DI 30C1 3099 # \x30C3 KATAKANA LETTER SMALL TU # \x30C4 KATAKANA LETTER TU # \x30C5 KATAKANA LETTER DU 30C4 3099 # \x30C6 KATAKANA LETTER TE # \x30C7 KATAKANA LETTER DE 30C6 3099 # \x30C8 KATAKANA LETTER TO # \x30C9 KATAKANA LETTER DO 30C8 3099 # \x30CA KATAKANA LETTER NA # \x30CB KATAKANA LETTER NI # \x30CC KATAKANA LETTER NU # \x30CD KATAKANA LETTER NE # \x30CE KATAKANA LETTER NO # \x30CF KATAKANA LETTER HA # \x30D0 KATAKANA LETTER BA 30CF 3099 # \x30D1 KATAKANA LETTER PA 30CF 309A # \x30D2 KATAKANA LETTER HI # \x30D3 KATAKANA LETTER BI 30D2 3099 # \x30D4 KATAKANA LETTER PI 30D2 309A # \x30D5 KATAKANA LETTER HU # \x30D6 KATAKANA LETTER BU 30D5 3099 # \x30D7 KATAKANA LETTER PU 30D5 309A # \x30D8 KATAKANA LETTER HE # \x30D9 KATAKANA LETTER BE 30D8 3099 # \x30DA KATAKANA LETTER PE 30D8 309A # \x30DB KATAKANA LETTER HO # \x30DC KATAKANA LETTER BO 30DB 3099 # \x30DD KATAKANA LETTER 30DB 309A # \x30DE KATAKANA LETTER MA # \x30DF KATAKANA LETTER MI # \x30E0 KATAKANA LETTER MU # \x30E1 KATAKANA LETTER ME # \x30E2 KATAKANA LETTER MO # \x30E3 KATAKANA LETTER SMALL YA # \x30E4 KATAKANA LETTER YA # \x30E5 KATAKANA LETTER SMALL YU # \x30E6 KATAKANA LETTER YU # \x30E7 KATAKANA LETTER SMALL YO # \x30E8 KATAKANA LETTER YO # \x30E9 KATAKANA LETTER RA # \x30EA KATAKANA LETTER RI # \x30EB KATAKANA LETTER RU # \x30EC KATAKANA LETTER RE # \x30ED KATAKANA LETTER RO # \x30EE KATAKANA LETTER SMALL WA # \x30EF KATAKANA LETTER WA # \x30F0 KATAKANA LETTER WI # \x30F1 KATAKANA LETTER WE # \x30F2 KATAKANA LETTER WO # \x30F3 KATAKANA LETTER # \x30F4 KATAKANA LETTER VU 30A6 3099 # \x30F5 KATAKANA LETTER SMALL KA # \x30F6 KATAKANA LETTER SMALL KE # \x30F7 KATAKANA LETTER VA 30EF 3099 # \x30F8 KATAKANA LETTER VI 30F0 3099 # \x30F9 KATAKANA LETTER VE 30F1 3099 # \x30FA KATAKANA LETTER VO 30F2 3099 # \x30FB KATAKANA MIDDLE DOT # \x30FC KATAKANA-HIRAGANA PROLONGED SOUND MARK Lm # \x30FD KATAKANA ITERATION MARK Lm # \x30FE KATAKANA VOICED ITERATION MARK Lm 30FD 3099 # \x30FF KATAKANA DIGRAPH KOTO 30B3 30C8 # \x3105 BOPOMOFO LETTER B # \x3106 BOPOMOFO LETTER P # \x3107 BOPOMOFO LETTER M # \x3108 BOPOMOFO LETTER F # \x3109 BOPOMOFO LETTER D # \x310A BOPOMOFO LETTER T # \x310B BOPOMOFO LETTER # \x310C BOPOMOFO LETTER # \x310D BOPOMOFO LETTER G # \x310E BOPOMOFO LETTER K # \x310F BOPOMOFO LETTER H # \x3110 BOPOMOFO LETTER J # \x3111 BOPOMOFO LETTER Q # \x3112 BOPOMOFO LETTER X # \x3113 BOPOMOFO LETTER ZH # \x3114 BOPOMOFO LETTER CH # \x3115 BOPOMOFO LETTER SH # \x3116 BOPOMOFO LETTER # \x3117 BOPOMOFO LETTER Z # \x3118 BOPOMOFO LETTER C # \x3119 BOPOMOFO LETTER S # \x311A BOPOMOFO LETTER A # \x311B BOPOMOFO LETTER O # \x311C BOPOMOFO LETTER E # \x311D BOPOMOFO LETTER EH # \x311E BOPOMOFO LETTER AI # \x311F BOPOMOFO LETTER EI # \x3120 BOPOMOFO LETTER AU # \x3121 BOPOMOFO LETTER OU # \x3122 BOPOMOFO LETTER AN # \x3123 BOPOMOFO LETTER EN # \x3124 BOPOMOFO LETTER ANG # \x3125 BOPOMOFO LETTER ENG # \x3126 BOPOMOFO LETTER ER # \x3127 BOPOMOFO LETTER I # \x3128 BOPOMOFO LETTER U # \x3129 BOPOMOFO LETTER IU # \x312A BOPOMOFO LETTER V # \x312B BOPOMOFO LETTER NG # \x312C BOPOMOFO LETTER GN # \x3131 HANGUL LETTER KIYEOK 1100 HANGUL LETTER GIYEOG # \x3132 HANGUL LETTER SSANGKIYEOK 1101 HANGUL LETTER SSANG GI # \xYEOG # \x3133 HANGUL LETTER KIYEOK-SIOS 11AA HANGUL LETTER GIYEOG S # \xIOS # \x3134 HANGUL LETTER NIEUN 1102 # \x3135 HANGUL LETTER NIEUN-CIEUC 11AC HANGUL LETTER NIEUN JI # \xEUJ # \x3136 HANGUL LETTER NIEUN-HIEUH 11AD HANGUL LETTER NIEUN HI # \xEUH # \x3137 HANGUL LETTER TIKEUT 1103 HANGUL LETTER DIGEUD # \x3138 HANGUL LETTER SSANGTIKEUT 1104 HANGUL LETTER SSANG DI # \xGEUD # \x3139 HANGUL LETTER RIEUL 1105 HANGUL LETTER LIEUL # \x313A HANGUL LETTER RIEUL-KIYEOK 11B0 HANGUL LETTER LIEUL G # \xIYEOG # \x313B HANGUL LETTER RIEUL-MIEUM 11B1 HANGUL LETTER LIEUL MI # \xEUM # \x313C HANGUL LETTER RIEUL-PIEUP 11B2 HANGUL LETTER LIEUL BI # \xEUB # \x313D HANGUL LETTER RIEUL-SIOS 11B3 HANGUL LETTER LIEUL SIO # \xS # \x313E HANGUL LETTER RIEUL-THIEUTH 11B4 HANGUL LETTER LIEUL # \xTIEUT # \x313F HANGUL LETTER RIEUL-PHIEUPH 11B5 HANGUL LETTER LIEUL # \xPIEUP # \x3140 HANGUL LETTER RIEUL-HIEUH 111A HANGUL LETTER LIEUL HI # \xEUH # \x3141 HANGUL LETTER MIEUM 1106 # \x3142 HANGUL LETTER PIEUP 1107 HANGUL LETTER BIEUB # \x3143 HANGUL LETTER SSANGPIEUP 1108 HANGUL LETTER SSANG BIE # \xUB # \x3144 HANGUL LETTER PIEUP-SIOS 1121 HANGUL LETTER BIEUB SIO # \xS # \x3145 HANGUL LETTER SIOS 1109 # \x3146 HANGUL LETTER SSANGSIOS 110A HANGUL LETTER SSANG SIOS # \x # \x3147 HANGUL LETTER IEUNG 110B # \x3148 HANGUL LETTER CIEUC 110C HANGUL LETTER JIEUJ # \x3149 HANGUL LETTER SSANGCIEUC 110D HANGUL LETTER SSANG JIE # \xUJ # \x314A HANGUL LETTER CHIEUCH 110E HANGUL LETTER CIEUC # \x314B HANGUL LETTER KHIEUKH 110F HANGUL LETTER KIYEOK # \x314C HANGUL LETTER THIEUTH 1110 HANGUL LETTER TIEUT # \x314D HANGUL LETTER PHIEUPH 1111 HANGUL LETTER PIEUP # \x314E HANGUL LETTER HIEUH 1112 # \x314F HANGUL LETTER A 1161 # \x3150 HANGUL LETTER AE 1162 # \x3151 HANGUL LETTER YA 1163 # \x3152 HANGUL LETTER YAE 1164 # \x3153 HANGUL LETTER EO 1165 # \x3154 HANGUL LETTER E 1166 # \x3155 HANGUL LETTER YEO 1167 # \x3156 HANGUL LETTER YE 1168 # \x3157 HANGUL LETTER O 1169 # \x3158 HANGUL LETTER WA 116A # \x3159 HANGUL LETTER WAE 116B # \x315A HANGUL LETTER OE 116C # \x315B HANGUL LETTER YO 116D # \x315C HANGUL LETTER U 116E # \x315D HANGUL LETTER WEO 116F # \x315E HANGUL LETTER WE 1170 # \x315F HANGUL LETTER WI 1171 # \x3160 HANGUL LETTER YU 1172 # \x3161 HANGUL LETTER EU 1173 # \x3162 HANGUL LETTER YI 1174 # \x3163 HANGUL LETTER I 1175 # \x3164 HANGUL FILLER 1160 HANGUL CAE OM # \x3165 HANGUL LETTER SSANGNIEUN 1114 HANGUL LETTER SSANG NIE # \xUN # \x3166 HANGUL LETTER NIEUN-TIKEUT 1115 HANGUL LETTER NIEUN D # \xIGEUD # \x3167 HANGUL LETTER NIEUN-SIOS 11C7 HANGUL LETTER NIEUN SIO # \xS # \x3168 HANGUL LETTER NIEUN-PANSIOS 11C8 HANGUL LETTER NIEUN # \xBAN CHI EUM # \x3169 HANGUL LETTER RIEUL-KIYEOK-SIOS 11CC HANGUL LETTER LI # \xEUL GIYEOG SIOS # \x316A HANGUL LETTER RIEUL-TIKEUT 11CE HANGUL LETTER LIEUL D # \xIGEUD # \x316B HANGUL LETTER RIEUL-PIEUP-SIOS 11D3 HANGUL LETTER LIE # \xUL BIEUB SIOS # \x316C HANGUL LETTER RIEUL-PANSIOS 11D7 HANGUL LETTER LIEUL # \xBAN CHI EUM # \x316D HANGUL LETTER RIEUL-YEORINHIEUH 11D9 HANGUL LETTER LI # \xEUL YEOLIN HIEUH # \x316E HANGUL LETTER MIEUM-PIEUP 111C HANGUL LETTER MIEUM BI # \xEUB # \x316F HANGUL LETTER MIEUM-SIOS 11DD HANGUL LETTER MIEUM SIO # \xS # \x3170 HANGUL LETTER MIEUM-PANSIOS 11DF HANGUL LETTER BIEUB # \xBAN CHI EUM # \x3171 HANGUL LETTER KAPYEOUNMIEUM 111D HANGUL LETTER MIEUM # \xSUN GYEONG EUM # \x3172 HANGUL LETTER PIEUP-KIYEOK 111E HANGUL LETTER BIEUB G # \xIYEOG # \x3173 HANGUL LETTER PIEUP-TIKEUT 1120 HANGUL LETTER BIEUB D # \xIGEUD # \x3174 HANGUL LETTER PIEUP-SIOS-KIYEOK 1122 HANGUL LETTER BI # \xEUB SIOS GIYEOG # \x3175 HANGUL LETTER PIEUP-SIOS-TIKEUT 1123 HANGUL LETTER BI # \xEUB SIOS DIGEUD # \x3176 HANGUL LETTER PIEUP-CIEUC 1127 HANGUL LETTER BIEUB JI # \xEUJ # \x3177 HANGUL LETTER PIEUP-THIEUTH 1129 HANGUL LETTER BIEUB # \xTIEUT # \x3178 HANGUL LETTER KAPYEOUNPIEUP 112B HANGUL LETTER BIEUB # \xSUN GYEONG EUM # \x3179 HANGUL LETTER KAPYEOUNSSANGPIEUP 112C HANGUL LETTER S # \xSANG BIEUB SUN GYEONG EUM # \x317A HANGUL LETTER SIOS-KIYEOK 112D HANGUL LETTER SIOS GIY # \xEOG # \x317B HANGUL LETTER SIOS-NIEUN 112E HANGUL LETTER SIOS NIEU # \xN # \x317C HANGUL LETTER SIOS-TIKEUT 112F HANGUL LETTER SIOS DIG # \xEUD # \x317D HANGUL LETTER SIOS-PIEUP 1132 HANGUL LETTER SIOS BIEU # \xB # \x317E HANGUL LETTER SIOS-CIEUC 1136 HANGUL LETTER SIOS JIEU # \xJ # \x317F HANGUL LETTER PANSIOS 1140 HANGUL LETTER BAN CHI EUM # \x # \x3180 HANGUL LETTER SSANGIEUNG 1147 HANGUL LETTER SSANG IEU # \xNG # \x3181 HANGUL LETTER YESIEUNG 114C HANGUL LETTER NGIEUNG # \x3182 HANGUL LETTER YESIEUNG-SIOS 11F1 HANGUL LETTER NGIEUN # \xG SIOS # \x3183 HANGUL LETTER YESIEUNG-PANSIOS 11F2 HANGUL LETTER NGI # \xEUNG BAN CHI EUM # \x3184 HANGUL LETTER KAPYEOUNPHIEUPH 1157 HANGUL LETTER PIEU # \xP SUN GYEONG EUM # \x3185 HANGUL LETTER SSANGHIEUH 1158 HANGUL LETTER SSANG HIE # \xUH # \x3186 HANGUL LETTER YEORINHIEUH 1159 HANGUL LETTER YEOLIN H # \xIEUH # \x3187 HANGUL LETTER YO-YA 1184 HANGUL LETTER YOYA # \x3188 HANGUL LETTER YO-YAE 1185 HANGUL LETTER YOYAE # \x3189 HANGUL LETTER YO-I 1188 HANGUL LETTER YOI # \x318A HANGUL LETTER YU-YEO 1191 HANGUL LETTER YUYEO # \x318B HANGUL LETTER YU-YE 1192 HANGUL LETTER YUYE # \x318C HANGUL LETTER YU-I 1194 HANGUL LETTER YUI # \x318D HANGUL LETTER ARAEA 119E HANGUL LETTER ALAE A # \x318E HANGUL LETTER ARAEAE 11A1 HANGUL LETTER ALAE AE # \x3190 IDEOGRAPHIC ANNOTATION LINKING MARK KANBUN TATETEN Kanbun Tat # \xeten # \x3191 IDEOGRAPHIC ANNOTATION REVERSE MARK KAERITEN RE Kaeriten # \x3192 IDEOGRAPHIC ANNOTATION ONE MARK No 4E00 1 KAERITEN ITI Kae # \xriten # \x3193 IDEOGRAPHIC ANNOTATION TWO MARK No 4E8C 2 KAERITEN NI Kaer # \xiten # \x3194 IDEOGRAPHIC ANNOTATION THREE MARK No 4E09 3 KAERITEN SAN K # \xaeriten # \x3195 IDEOGRAPHIC ANNOTATION FOUR MARK No 56DB 4 KAERITEN SI Kae # \xriten # \x3196 IDEOGRAPHIC ANNOTATION TOP MARK 4E0A KAERITEN ZYOU Kae # \xriten # \x3197 IDEOGRAPHIC ANNOTATION MIDDLE MARK 4E2D KAERITEN TYUU # \xKaeriten # \x3198 IDEOGRAPHIC ANNOTATION BOTTOM MARK 4E0B KAERITEN GE Ka # \xeriten # \x3199 IDEOGRAPHIC ANNOTATION FIRST MARK 7532 KAERITEN KOU Ka # \xeriten # \x319A IDEOGRAPHIC ANNOTATION SECOND MARK 4E59 KAERITEN OTU K # \xaeriten # \x319B IDEOGRAPHIC ANNOTATION THIRD MARK 4E19 KAERITEN HEI Ka # \xeriten # \x319C IDEOGRAPHIC ANNOTATION FOURTH MARK 4E01 KAERITEN TEI K # \xaeriten # \x319D IDEOGRAPHIC ANNOTATION HEAVEN MARK 5929 KAERITEN TEN K # \xaeriten # \x319E IDEOGRAPHIC ANNOTATION EARTH MARK 5730 KAERITEN TI Kae # \xriten # \x319F IDEOGRAPHIC ANNOTATION MAN MARK 4EBA KAERITEN ZIN Kaer # \xiten # \x31A0 BOPOMOFO LETTER BU # \x31A1 BOPOMOFO LETTER ZI # \x31A2 BOPOMOFO LETTER JI # \x31A3 BOPOMOFO LETTER GU # \x31A4 BOPOMOFO LETTER EE # \x31A5 BOPOMOFO LETTER ENN # \x31A6 BOPOMOFO LETTER OO # \x31A7 BOPOMOFO LETTER ONN # \x31A8 BOPOMOFO LETTER IR # \x31A9 BOPOMOFO LETTER ANN # \x31AA BOPOMOFO LETTER INN # \x31AB BOPOMOFO LETTER UNN # \x31AC BOPOMOFO LETTER IM # \x31AD BOPOMOFO LETTER NGG # \x31AE BOPOMOFO LETTER AINN # \x31AF BOPOMOFO LETTER AUNN # \x31B0 BOPOMOFO LETTER AM # \x31B1 BOPOMOFO LETTER OM # \x31B2 BOPOMOFO LETTER ONG # \x31B3 BOPOMOFO LETTER INNN # \x31B4 BOPOMOFO FINAL LETTER P # \x31B5 BOPOMOFO FINAL LETTER T # \x31B6 BOPOMOFO FINAL LETTER K # \x31B7 BOPOMOFO FINAL LETTER H # \x31F0 KATAKANA LETTER SMALL KU # \x31F1 KATAKANA LETTER SMALL SI # \x31F2 KATAKANA LETTER SMALL SU # \x31F3 KATAKANA LETTER SMALL TO # \x31F4 KATAKANA LETTER SMALL NU # \x31F5 KATAKANA LETTER SMALL HA # \x31F6 KATAKANA LETTER SMALL HI # \x31F7 KATAKANA LETTER SMALL HU # \x31F8 KATAKANA LETTER SMALL HE # \x31F9 KATAKANA LETTER SMALL HO # \x31FA KATAKANA LETTER SMALL MU # \x31FB KATAKANA LETTER SMALL RA # \x31FC KATAKANA LETTER SMALL RI # \x31FD KATAKANA LETTER SMALL RU # \x31FE KATAKANA LETTER SMALL RE # \x31FF KATAKANA LETTER SMALL RO # \x3200 PARENTHESIZED HANGUL KIYEOK 0028 1100 0029 PARENTHESI # \xZED HANGUL GIYEOG # \x3201 PARENTHESIZED HANGUL NIEUN 0028 1102 0029 # \x3202 PARENTHESIZED HANGUL TIKEUT 0028 1103 0029 PARENTHESI # \xZED HANGUL DIGEUD # \x3203 PARENTHESIZED HANGUL RIEUL 0028 1105 0029 PARENTHESIZ # \xED HANGUL LIEUL # \x3204 PARENTHESIZED HANGUL MIEUM 0028 1106 0029 # \x3205 PARENTHESIZED HANGUL PIEUP 0028 1107 0029 PARENTHESIZ # \xED HANGUL BIEUB # \x3206 PARENTHESIZED HANGUL SIOS 0028 1109 0029 # \x3207 PARENTHESIZED HANGUL IEUNG 0028 110B 0029 # \x3208 PARENTHESIZED HANGUL CIEUC 0028 110C 0029 PARENTHESIZ # \xED HANGUL JIEUJ # \x3209 PARENTHESIZED HANGUL CHIEUCH 0028 110E 0029 PARENTHES # \xIZED HANGUL CIEUC # \x320A PARENTHESIZED HANGUL KHIEUKH 0028 110F 0029 PARENTHES # \xIZED HANGUL KIYEOK # \x320B PARENTHESIZED HANGUL THIEUTH 0028 1110 0029 PARENTHES # \xIZED HANGUL TIEUT # \x320C PARENTHESIZED HANGUL PHIEUPH 0028 1111 0029 PARENTHES # \xIZED HANGUL PIEUP # \x320D PARENTHESIZED HANGUL HIEUH 0028 1112 0029 # \x320E PARENTHESIZED HANGUL KIYEOK A 0028 1100 1161 0029 PAR # \xENTHESIZED HANGUL GA # \x320F PARENTHESIZED HANGUL NIEUN A 0028 1102 1161 0029 PARE # \xNTHESIZED HANGUL NA # \x3210 PARENTHESIZED HANGUL TIKEUT A 0028 1103 1161 0029 PAR # \xENTHESIZED HANGUL DA # \x3211 PARENTHESIZED HANGUL RIEUL A 0028 1105 1161 0029 PARE # \xNTHESIZED HANGUL LA # \x3212 PARENTHESIZED HANGUL MIEUM A 0028 1106 1161 0029 PARE # \xNTHESIZED HANGUL MA # \x3213 PARENTHESIZED HANGUL PIEUP A 0028 1107 1161 0029 PARE # \xNTHESIZED HANGUL BA # \x3214 PARENTHESIZED HANGUL SIOS A 0028 1109 1161 0029 PAREN # \xTHESIZED HANGUL SA # \x3215 PARENTHESIZED HANGUL IEUNG A 0028 110B 1161 0029 PARE # \xNTHESIZED HANGUL A # \x3216 PARENTHESIZED HANGUL CIEUC A 0028 110C 1161 0029 PARE # \xNTHESIZED HANGUL JA # \x3217 PARENTHESIZED HANGUL CHIEUCH A 0028 110E 1161 0029 PA # \xRENTHESIZED HANGUL CA # \x3218 PARENTHESIZED HANGUL KHIEUKH A 0028 110F 1161 0029 PA # \xRENTHESIZED HANGUL KA # \x3219 PARENTHESIZED HANGUL THIEUTH A 0028 1110 1161 0029 PA # \xRENTHESIZED HANGUL TA # \x321A PARENTHESIZED HANGUL PHIEUPH A 0028 1111 1161 0029 PA # \xRENTHESIZED HANGUL PA # \x321B PARENTHESIZED HANGUL HIEUH A 0028 1112 1161 0029 PARE # \xNTHESIZED HANGUL HA # \x321C PARENTHESIZED HANGUL CIEUC U 0028 110C 116E 0029 PARE # \xNTHESIZED HANGUL JU # \x321D PARENTHESIZED KOREAN CHARACTER OJEON 0028 110B 1169 110C # \x1165 11AB 0029 # \x321E PARENTHESIZED KOREAN CHARACTER O HU 0028 110B 1169 1112 1 # \x16E 0029 # \x3220 PARENTHESIZED IDEOGRAPH ONE No 0028 4E00 0029 1 # \x3221 PARENTHESIZED IDEOGRAPH TWO No 0028 4E8C 0029 2 # \x3222 PARENTHESIZED IDEOGRAPH THREE No 0028 4E09 0029 3 # \x3223 PARENTHESIZED IDEOGRAPH FOUR No 0028 56DB 0029 4 # \x3224 PARENTHESIZED IDEOGRAPH FIVE No 0028 4E94 0029 5 # \x3225 PARENTHESIZED IDEOGRAPH SIX No 0028 516D 0029 6 # \x3226 PARENTHESIZED IDEOGRAPH SEVEN No 0028 4E03 0029 7 # \x3227 PARENTHESIZED IDEOGRAPH EIGHT No 0028 516B 0029 8 # \x3228 PARENTHESIZED IDEOGRAPH NINE No 0028 4E5D 0029 9 # \x3229 PARENTHESIZED IDEOGRAPH TEN No 0028 5341 0029 10 # \x322A PARENTHESIZED IDEOGRAPH MOON 0028 6708 0029 # \x322B PARENTHESIZED IDEOGRAPH FIRE 0028 706B 0029 # \x322C PARENTHESIZED IDEOGRAPH WATER 0028 6C34 0029 # \x322D PARENTHESIZED IDEOGRAPH WOOD 0028 6728 0029 # \x322E PARENTHESIZED IDEOGRAPH METAL 0028 91D1 0029 # \x322F PARENTHESIZED IDEOGRAPH EARTH 0028 571F 0029 # \x3230 PARENTHESIZED IDEOGRAPH SUN 0028 65E5 0029 # \x3231 PARENTHESIZED IDEOGRAPH STOCK 0028 682A 0029 # \x3232 PARENTHESIZED IDEOGRAPH HAVE 0028 6709 0029 # \x3233 PARENTHESIZED IDEOGRAPH SOCIETY 0028 793E 0029 # \x3234 PARENTHESIZED IDEOGRAPH NAME 0028 540D 0029 # \x3235 PARENTHESIZED IDEOGRAPH SPECIAL 0028 7279 0029 # \x3236 PARENTHESIZED IDEOGRAPH FINANCIAL 0028 8CA1 0029 # \x3237 PARENTHESIZED IDEOGRAPH CONGRATULATION 0028 795D 0029 N # \x # \x3238 PARENTHESIZED IDEOGRAPH LABOR 0028 52B4 0029 # \x3239 PARENTHESIZED IDEOGRAPH REPRESENT 0028 4EE3 0029 # \x323A PARENTHESIZED IDEOGRAPH CALL 0028 547C 0029 # \x323B PARENTHESIZED IDEOGRAPH STUDY 0028 5B66 0029 # \x323C PARENTHESIZED IDEOGRAPH SUPERVISE 0028 76E3 0029 # \x323D PARENTHESIZED IDEOGRAPH ENTERPRISE 0028 4F01 0029 # \x # \x323E PARENTHESIZED IDEOGRAPH RESOURCE 0028 8CC7 0029 # \x323F PARENTHESIZED IDEOGRAPH ALLIANCE 0028 5354 0029 # \x3240 PARENTHESIZED IDEOGRAPH FESTIVAL 0028 796D 0029 # \x3241 PARENTHESIZED IDEOGRAPH REST 0028 4F11 0029 # \x3242 PARENTHESIZED IDEOGRAPH SELF 0028 81EA 0029 # \x3243 PARENTHESIZED IDEOGRAPH REACH 0028 81F3 0029 # \x3250 PARTNERSHIP SIGN 0050 0054 0045 # \x3251 CIRCLED NUMBER TWENTY ONE No 0032 0031 21 # \x3252 CIRCLED NUMBER TWENTY TWO No 0032 0032 22 # \x3253 CIRCLED NUMBER TWENTY THREE No 0032 0033 23 # \x3254 CIRCLED NUMBER TWENTY FOUR No 0032 0034 24 # \x3255 CIRCLED NUMBER TWENTY FIVE No 0032 0035 25 # \x3256 CIRCLED NUMBER TWENTY SIX No 0032 0036 26 # \x3257 CIRCLED NUMBER TWENTY SEVEN No 0032 0037 27 # \x3258 CIRCLED NUMBER TWENTY EIGHT No 0032 0038 28 # \x3259 CIRCLED NUMBER TWENTY NINE No 0032 0039 29 # \x325A CIRCLED NUMBER THIRTY No 0033 0030 30 # \x325B CIRCLED NUMBER THIRTY ONE No 0033 0031 31 # \x325C CIRCLED NUMBER THIRTY TWO No 0033 0032 32 # \x325D CIRCLED NUMBER THIRTY THREE No 0033 0033 33 # \x325E CIRCLED NUMBER THIRTY FOUR No 0033 0034 34 # \x325F CIRCLED NUMBER THIRTY FIVE No 0033 0035 35 # \x3260 CIRCLED HANGUL KIYEOK 1100 CIRCLED HANGUL GIYEOG # \x3261 CIRCLED HANGUL NIEUN 1102 # \x3262 CIRCLED HANGUL TIKEUT 1103 CIRCLED HANGUL DIGEUD # \x3263 CIRCLED HANGUL RIEUL 1105 CIRCLED HANGUL LIEUL # \x3264 CIRCLED HANGUL MIEUM 1106 # \x3265 CIRCLED HANGUL PIEUP 1107 CIRCLED HANGUL BIEUB # \x3266 CIRCLED HANGUL SIOS 1109 # \x3267 CIRCLED HANGUL IEUNG 110B # \x3268 CIRCLED HANGUL CIEUC 110C CIRCLED HANGUL JIEUJ # \x3269 CIRCLED HANGUL CHIEUCH 110E CIRCLED HANGUL CIEUC # \x326A CIRCLED HANGUL KHIEUKH 110F CIRCLED HANGUL KIYEOK # \x326B CIRCLED HANGUL THIEUTH 1110 CIRCLED HANGUL TIEUT # \x326C CIRCLED HANGUL PHIEUPH 1111 CIRCLED HANGUL PIEUP # \x326D CIRCLED HANGUL HIEUH 1112 # \x326E CIRCLED HANGUL KIYEOK A 1100 1161 CIRCLED HANGUL GA # \x # \x326F CIRCLED HANGUL NIEUN A 1102 1161 CIRCLED HANGUL NA # \x # \x3270 CIRCLED HANGUL TIKEUT A 1103 1161 CIRCLED HANGUL DA # \x # \x3271 CIRCLED HANGUL RIEUL A 1105 1161 CIRCLED HANGUL LA # \x # \x3272 CIRCLED HANGUL MIEUM A 1106 1161 CIRCLED HANGUL MA # \x # \x3273 CIRCLED HANGUL PIEUP A 1107 1161 CIRCLED HANGUL BA # \x # \x3274 CIRCLED HANGUL SIOS A 1109 1161 CIRCLED HANGUL SA # \x3275 CIRCLED HANGUL IEUNG A 110B 1161 CIRCLED HANGUL A # \x3276 CIRCLED HANGUL CIEUC A 110C 1161 CIRCLED HANGUL JA # \x # \x3277 CIRCLED HANGUL CHIEUCH A 110E 1161 CIRCLED HANGUL CA # \x # \x3278 CIRCLED HANGUL KHIEUKH A 110F 1161 CIRCLED HANGUL KA # \x # \x3279 CIRCLED HANGUL THIEUTH A 1110 1161 CIRCLED HANGUL TA # \x # \x327A CIRCLED HANGUL PHIEUPH A 1111 1161 CIRCLED HANGUL PA # \x # \x327B CIRCLED HANGUL HIEUH A 1112 1161 CIRCLED HANGUL HA # \x # \x327C CIRCLED KOREAN CHARACTER CHAMKO 110E 1161 11B7 1100 1169 # \x # \x327D CIRCLED KOREAN CHARACTER JUEUI 110C 116E 110B 1174 # \x # \x327F KOREAN STANDARD SYMBOL # \x3280 CIRCLED IDEOGRAPH ONE No 4E00 1 # \x3281 CIRCLED IDEOGRAPH TWO No 4E8C 2 # \x3282 CIRCLED IDEOGRAPH THREE No 4E09 3 # \x3283 CIRCLED IDEOGRAPH FOUR No 56DB 4 # \x3284 CIRCLED IDEOGRAPH FIVE No 4E94 5 # \x3285 CIRCLED IDEOGRAPH SIX No 516D 6 # \x3286 CIRCLED IDEOGRAPH SEVEN No 4E03 7 # \x3287 CIRCLED IDEOGRAPH EIGHT No 516B 8 # \x3288 CIRCLED IDEOGRAPH NINE No 4E5D 9 # \x3289 CIRCLED IDEOGRAPH TEN No 5341 10 # \x328A CIRCLED IDEOGRAPH MOON 6708 # \x328B CIRCLED IDEOGRAPH FIRE 706B # \x328C CIRCLED IDEOGRAPH WATER 6C34 # \x328D CIRCLED IDEOGRAPH WOOD 6728 # \x328E CIRCLED IDEOGRAPH METAL 91D1 # \x328F CIRCLED IDEOGRAPH EARTH 571F # \x3290 CIRCLED IDEOGRAPH SUN 65E5 # \x3291 CIRCLED IDEOGRAPH STOCK 682A # \x3292 CIRCLED IDEOGRAPH HAVE 6709 # \x3293 CIRCLED IDEOGRAPH SOCIETY 793E # \x3294 CIRCLED IDEOGRAPH NAME 540D # \x3295 CIRCLED IDEOGRAPH SPECIAL 7279 # \x3296 CIRCLED IDEOGRAPH FINANCIAL 8CA1 # \x3297 CIRCLED IDEOGRAPH CONGRATULATION 795D # \x3298 CIRCLED IDEOGRAPH LABOR 52B4 # \x3299 CIRCLED IDEOGRAPH SECRET 79D8 # \x329A CIRCLED IDEOGRAPH MALE 7537 # \x329B CIRCLED IDEOGRAPH FEMALE 5973 # \x329C CIRCLED IDEOGRAPH SUITABLE 9069 # \x329D CIRCLED IDEOGRAPH EXCELLENT 512A # \x329E CIRCLED IDEOGRAPH PRINT 5370 # \x329F CIRCLED IDEOGRAPH ATTENTION 6CE8 # \x32A0 CIRCLED IDEOGRAPH ITEM 9805 # \x32A1 CIRCLED IDEOGRAPH REST 4F11 # \x32A2 CIRCLED IDEOGRAPH COPY 5199 # \x32A3 CIRCLED IDEOGRAPH CORRECT 6B63 # \x32A4 CIRCLED IDEOGRAPH HIGH 4E0A # \x32A5 CIRCLED IDEOGRAPH CENTRE 4E2D CIRCLED IDEOGRAPH CENTE # \xR # \x32A6 CIRCLED IDEOGRAPH LOW 4E0B # \x32A7 CIRCLED IDEOGRAPH LEFT 5DE6 # \x32A8 CIRCLED IDEOGRAPH RIGHT 53F3 # \x32A9 CIRCLED IDEOGRAPH MEDICINE 533B # \x32AA CIRCLED IDEOGRAPH RELIGION 5B97 # \x32AB CIRCLED IDEOGRAPH STUDY 5B66 # \x32AC CIRCLED IDEOGRAPH SUPERVISE 76E3 # \x32AD CIRCLED IDEOGRAPH ENTERPRISE 4F01 # \x32AE CIRCLED IDEOGRAPH RESOURCE 8CC7 # \x32AF CIRCLED IDEOGRAPH ALLIANCE 5354 # \x32B0 CIRCLED IDEOGRAPH NIGHT 591C # \x32B1 CIRCLED NUMBER THIRTY SIX No 0033 0036 36 # \x32B2 CIRCLED NUMBER THIRTY SEVEN No 0033 0037 37 # \x32B3 CIRCLED NUMBER THIRTY EIGHT No 0033 0038 38 # \x32B4 CIRCLED NUMBER THIRTY NINE No 0033 0039 39 # \x32B5 CIRCLED NUMBER FORTY No 0034 0030 40 # \x32B6 CIRCLED NUMBER FORTY ONE No 0034 0031 41 # \x32B7 CIRCLED NUMBER FORTY TWO No 0034 0032 42 # \x32B8 CIRCLED NUMBER FORTY THREE No 0034 0033 43 # \x32B9 CIRCLED NUMBER FORTY FOUR No 0034 0034 44 # \x32BA CIRCLED NUMBER FORTY FIVE No 0034 0035 45 # \x32BB CIRCLED NUMBER FORTY SIX No 0034 0036 46 # \x32BC CIRCLED NUMBER FORTY SEVEN No 0034 0037 47 # \x32BD CIRCLED NUMBER FORTY EIGHT No 0034 0038 48 # \x32BE CIRCLED NUMBER FORTY NINE No 0034 0039 49 # \x32BF CIRCLED NUMBER FIFTY No 0035 0030 50 # \x32C0 IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY 0031 6708 # \x # \x32C1 IDEOGRAPHIC TELEGRAPH SYMBOL FOR FEBRUARY 0032 6708 # \x # \x32C2 IDEOGRAPHIC TELEGRAPH SYMBOL FOR MARCH 0033 6708 # \x32C3 IDEOGRAPHIC TELEGRAPH SYMBOL FOR APRIL 0034 6708 # \x32C4 IDEOGRAPHIC TELEGRAPH SYMBOL FOR MAY 0035 6708 # \x32C5 IDEOGRAPHIC TELEGRAPH SYMBOL FOR JUNE 0036 6708 # \x32C6 IDEOGRAPHIC TELEGRAPH SYMBOL FOR JULY 0037 6708 # \x32C7 IDEOGRAPHIC TELEGRAPH SYMBOL FOR AUGUST 0038 6708 # \x # \x32C8 IDEOGRAPHIC TELEGRAPH SYMBOL FOR SEPTEMBER 0039 6708 # \x # \x32C9 IDEOGRAPHIC TELEGRAPH SYMBOL FOR OCTOBER 0031 0030 6708 # \x # \x32CA IDEOGRAPHIC TELEGRAPH SYMBOL FOR NOVEMBER 0031 0031 6708 # \x # \x32CB IDEOGRAPHIC TELEGRAPH SYMBOL FOR DECEMBER 0031 0032 6708 # \x # \x32CC SQUARE HG 0048 0067 # \x32CD SQUARE ERG 0065 0072 0067 # \x32CE SQUARE EV 0065 0056 # \x32CF LIMITED LIABILITY SIGN 004C 0054 0044 # \x32D0 CIRCLED KATAKANA A 30A2 # \x32D1 CIRCLED KATAKANA I 30A4 # \x32D2 CIRCLED KATAKANA U 30A6 # \x32D3 CIRCLED KATAKANA E 30A8 # \x32D4 CIRCLED KATAKANA O 30AA # \x32D5 CIRCLED KATAKANA KA 30AB # \x32D6 CIRCLED KATAKANA KI 30AD # \x32D7 CIRCLED KATAKANA KU 30AF # \x32D8 CIRCLED KATAKANA KE 30B1 # \x32D9 CIRCLED KATAKANA KO 30B3 # \x32DA CIRCLED KATAKANA SA 30B5 # \x32DB CIRCLED KATAKANA SI 30B7 # \x32DC CIRCLED KATAKANA SU 30B9 # \x32DD CIRCLED KATAKANA SE 30BB # \x32DE CIRCLED KATAKANA So 30BD # \x32DF CIRCLED KATAKANA TA 30BF # \x32E0 CIRCLED KATAKANA TI 30C1 # \x32E1 CIRCLED KATAKANA TU 30C4 # \x32E2 CIRCLED KATAKANA TE 30C6 # \x32E3 CIRCLED KATAKANA TO 30C8 # \x32E4 CIRCLED KATAKANA NA 30CA # \x32E5 CIRCLED KATAKANA NI 30CB # \x32E6 CIRCLED KATAKANA NU 30CC # \x32E7 CIRCLED KATAKANA NE 30CD # \x32E8 CIRCLED KATAKANA NO 30CE # \x32E9 CIRCLED KATAKANA HA 30CF # \x32EA CIRCLED KATAKANA HI 30D2 # \x32EB CIRCLED KATAKANA HU 30D5 # \x32EC CIRCLED KATAKANA HE 30D8 # \x32ED CIRCLED KATAKANA HO 30DB # \x32EE CIRCLED KATAKANA MA 30DE # \x32EF CIRCLED KATAKANA MI 30DF # \x32F0 CIRCLED KATAKANA MU 30E0 # \x32F1 CIRCLED KATAKANA ME 30E1 # \x32F2 CIRCLED KATAKANA MO 30E2 # \x32F3 CIRCLED KATAKANA YA 30E4 # \x32F4 CIRCLED KATAKANA YU 30E6 # \x32F5 CIRCLED KATAKANA YO 30E8 # \x32F6 CIRCLED KATAKANA RA 30E9 # \x32F7 CIRCLED KATAKANA RI 30EA # \x32F8 CIRCLED KATAKANA RU 30EB # \x32F9 CIRCLED KATAKANA RE 30EC # \x32FA CIRCLED KATAKANA RO 30ED # \x32FB CIRCLED KATAKANA WA 30EF # \x32FC CIRCLED KATAKANA WI 30F0 # \x32FD CIRCLED KATAKANA WE 30F1 # \x32FE CIRCLED KATAKANA WO 30F2 # \x3300 SQUARE APAATO 30A2 30D1 30FC 30C8 SQUARED APAATO # \x3301 SQUARE ARUHUA 30A2 30EB 30D5 30A1 SQUARED ARUHUA # \x3302 SQUARE ANPEA 30A2 30F3 30DA 30A2 SQUARED ANPEA # \x3303 SQUARE AARU 30A2 30FC 30EB SQUARED AARU # \x3304 SQUARE ININGU 30A4 30CB 30F3 30B0 SQUARED ININGU # \x3305 SQUARE INTI 30A4 30F3 30C1 SQUARED INTI # \x3306 SQUARE UON 30A6 30A9 30F3 SQUARED UON # \x3307 SQUARE ESUKUUDO 30A8 30B9 30AF 30FC 30C9 SQUARED ESUK # \xUUDO # \x3308 SQUARE EEKAA 30A8 30FC 30AB 30FC SQUARED EEKAA # \x3309 SQUARE ONSU 30AA 30F3 30B9 SQUARED ONSU # \x330A SQUARE OOMU 30AA 30FC 30E0 SQUARED OOMU # \x330B SQUARE KAIRI 30AB 30A4 30EA SQUARED KAIRI # \x330C SQUARE KARATTO 30AB 30E9 30C3 30C8 SQUARED KARATTO # \x # \x330D SQUARE KARORII 30AB 30ED 30EA 30FC SQUARED KARORII # \x # \x330E SQUARE GARON 30AC 30ED 30F3 SQUARED GARON # \x330F SQUARE GANMA 30AC 30F3 30DE SQUARED GANMA # \x3310 SQUARE GIGA 30AE 30AC SQUARED GIGA # \x3311 SQUARE GINII 30AE 30CB 30FC SQUARED GINII # \x3312 SQUARE KYURII 30AD 30E5 30EA 30FC SQUARED KYURII # \x3313 SQUARE GIRUDAA 30AE 30EB 30C0 30FC SQUARED GIRUDAA # \x # \x3314 SQUARE KIRO 30AD 30ED SQUARED KIRO # \x3315 SQUARE KIROGURAMU 30AD 30ED 30B0 30E9 30E0 SQUARED KI # \xROGURAMU # \x3316 SQUARE KIROMEETORU 30AD 30ED 30E1 30FC 30C8 30EB SQUA # \xRED KIROMEETORU # \x3317 SQUARE KIROWATTO 30AD 30ED 30EF 30C3 30C8 SQUARED KIR # \xOWATTO # \x3318 SQUARE GURAMU 30B0 30E9 30E0 SQUARED GURAMU # \x3319 SQUARE GURAMUTON 30B0 30E9 30E0 30C8 30F3 SQUARED GUR # \xAMUTON # \x331A SQUARE KURUZEIRO 30AF 30EB 30BC 30A4 30ED SQUARED KUR # \xUZEIRO # \x331B SQUARE KUROONE 30AF 30ED 30FC 30CD SQUARED KUROONE # \x # \x331C SQUARE KEESU 30B1 30FC 30B9 SQUARED KEESU # \x331D SQUARE KORUNA 30B3 30EB 30CA SQUARED KORUNA # \x331E SQUARE KOOPO 30B3 30FC 30DD SQUARED KOOPO # \x331F SQUARE SAIKURU 30B5 30A4 30AF 30EB SQUARED SAIKURU # \x # \x3320 SQUARE SANTIIMU 30B5 30F3 30C1 30FC 30E0 SQUARED SANT # \xIIMU # \x3321 SQUARE SIRINGU 30B7 30EA 30F3 30B0 SQUARED SIRINGU # \x # \x3322 SQUARE SENTI 30BB 30F3 30C1 SQUARED SENTI # \x3323 SQUARE SENTO 30BB 30F3 30C8 SQUARED SENTO # \x3324 SQUARE DAASU 30C0 30FC 30B9 SQUARED DAASU # \x3325 SQUARE DESI 30C7 30B7 SQUARED DESI # \x3326 SQUARE DORU 30C9 30EB SQUARED DORU # \x3327 SQUARE TON 30C8 30F3 SQUARED TON # \x3328 SQUARE NANO 30CA 30CE SQUARED NANO # \x3329 SQUARE NOTTO 30CE 30C3 30C8 SQUARED NOTTO # \x332A SQUARE HAITU 30CF 30A4 30C4 SQUARED HAITU # \x332B SQUARE PAASENTO 30D1 30FC 30BB 30F3 30C8 SQUARED PAAS # \xENTO # \x332C SQUARE PAATU 30D1 30FC 30C4 SQUARED PAATU # \x332D SQUARE BAARERU 30D0 30FC 30EC 30EB SQUARED BAARERU # \x # \x332E SQUARE PIASUTORU 30D4 30A2 30B9 30C8 30EB SQUARED PIA # \xSUTORU # \x332F SQUARE PIKURU 30D4 30AF 30EB SQUARED PIKURU # \x3330 SQUARE PIKO 30D4 30B3 SQUARED PIKO # \x3331 SQUARE BIRU 30D3 30EB SQUARED BIRU # \x3332 SQUARE HUARADDO 30D5 30A1 30E9 30C3 30C9 SQUARED HUAR # \xADDO # \x3333 SQUARE HUIITO 30D5 30A3 30FC 30C8 SQUARED HUIITO # \x3334 SQUARE BUSSYERU 30D6 30C3 30B7 30A7 30EB SQUARED BUSS # \xYERU # \x3335 SQUARE HURAN 30D5 30E9 30F3 SQUARED HURAN # \x3336 SQUARE HEKUTAARU 30D8 30AF 30BF 30FC 30EB SQUARED HEK # \xUTAARU # \x3337 SQUARE PESO 30DA 30BD SQUARED PESO # \x3338 SQUARE PENIHI 30DA 30CB 30D2 SQUARED PENIHI # \x3339 SQUARE HERUTU 30D8 30EB 30C4 SQUARED HERUTU # \x333A SQUARE PENSU 30DA 30F3 30B9 SQUARED PENSU # \x333B SQUARE PEEZI 30DA 30FC 30B8 SQUARED PEEZI # \x333C SQUARE BEETA 30D9 30FC 30BF SQUARED BEETA # \x333D SQUARE POINTO 30DD 30A4 30F3 30C8 SQUARED POINTO # \x333E SQUARE BORUTO 30DC 30EB 30C8 SQUARED BORUTO # \x333F SQUARE HON 30DB 30F3 SQUARED HON # \x3340 SQUARE PONDO 30DD 30F3 30C9 SQUARED PONDO # \x3341 SQUARE HOORU 30DB 30FC 30EB SQUARED HOORU # \x3342 SQUARE HOON 30DB 30FC 30F3 SQUARED HOON # \x3343 SQUARE MAIKURO 30DE 30A4 30AF 30ED SQUARED MAIKURO # \x # \x3344 SQUARE MAIRU 30DE 30A4 30EB SQUARED MAIRU # \x3345 SQUARE MAHHA 30DE 30C3 30CF SQUARED MAHHA # \x3346 SQUARE MARUKU 30DE 30EB 30AF SQUARED MARUKU # \x3347 SQUARE MANSYON 30DE 30F3 30B7 30E7 30F3 SQUARED MANSY # \xON # \x3348 SQUARE MIKURON 30DF 30AF 30ED 30F3 SQUARED MIKURON # \x # \x3349 SQUARE MIRI 30DF 30EA SQUARED MIRI # \x334A SQUARE MIRIBAARU 30DF 30EA 30D0 30FC 30EB SQUARED MIR # \xIBAARU # \x334B SQUARE MEGA 30E1 30AC SQUARED MEGA # \x334C SQUARE MEGATON 30E1 30AC 30C8 30F3 SQUARED MEGATON # \x # \x334D SQUARE MEETORU 30E1 30FC 30C8 30EB SQUARED MEETORU # \x # \x334E SQUARE YAADO 30E4 30FC 30C9 SQUARED YAADO # \x334F SQUARE YAARU 30E4 30FC 30EB SQUARED YAARU # \x3350 SQUARE YUAN 30E6 30A2 30F3 SQUARED YUAN # \x3351 SQUARE RITTORU 30EA 30C3 30C8 30EB SQUARED RITTORU # \x # \x3352 SQUARE RIRA 30EA 30E9 SQUARED RIRA # \x3353 SQUARE RUPII 30EB 30D4 30FC SQUARED RUPII # \x3354 SQUARE RUUBURU 30EB 30FC 30D6 30EB SQUARED RUUBURU # \x # \x3355 SQUARE REMU 30EC 30E0 SQUARED REMU # \x3356 SQUARE RENTOGEN 30EC 30F3 30C8 30B2 30F3 SQUARED RENT # \xOGEN # \x3357 SQUARE WATTO 30EF 30C3 30C8 SQUARED WATTO # \x3358 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ZERO 0030 70B9 # \x # \x3359 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ONE 0031 70B9 # \x # \x335A IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWO 0032 70B9 # \x # \x335B IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR THREE 0033 70B9 N # \x # \x335C IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FOUR 0034 70B9 # \x # \x335D IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FIVE 0035 70B9 # \x # \x335E IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SIX 0036 70B9 # \x # \x335F IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SEVEN 0037 70B9 N # \x # \x3360 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR EIGHT 0038 70B9 N # \x # \x3361 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR NINE 0039 70B9 # \x # \x3362 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TEN 0031 0030 70B9 # \x # \x3363 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ELEVEN 0031 0031 70B # \x9 # \x3364 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWELVE 0031 0032 70B # \x9 # \x3365 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR THIRTEEN 0031 0033 7 # \x0B9 # \x3366 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FOURTEEN 0031 0034 7 # \x0B9 # \x3367 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FIFTEEN 0031 0035 70 # \xB9 # \x3368 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SIXTEEN 0031 0036 70 # \xB9 # \x3369 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SEVENTEEN 0031 0037 # \x70B9 # \x336A IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR EIGHTEEN 0031 0038 7 # \x0B9 # \x336B IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR NINETEEN 0031 0039 7 # \x0B9 # \x336C IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY 0032 0030 70B # \x9 # \x336D IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-ONE 0032 0031 # \x 70B9 # \x336E IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-TWO 0032 0032 # \x 70B9 # \x336F IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-THREE 0032 00 # \x33 70B9 # \x3370 IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-FOUR 0032 003 # \x4 70B9 # \x3371 SQUARE HPA 0068 0050 0061 # \x3372 SQUARE DA 0064 0061 # \x3373 SQUARE AU 0041 0055 # \x3374 SQUARE BAR 0062 0061 0072 # \x3375 SQUARE OV 006F 0056 # \x3376 SQUARE PC 0070 0063 # \x3377 SQUARE DM 0064 006D # \x3378 SQUARE DM SQUARED 0064 006D 00B2 # \x3379 SQUARE DM CUBED 0064 006D 00B3 # \x337A SQUARE IU 0049 0055 # \x337B SQUARE ERA NAME HEISEI 5E73 6210 SQUARED TWO IDEOGRAP # \xHS ERA NAME HEISEI # \x337C SQUARE ERA NAME SYOUWA 662D 548C SQUARED TWO IDEOGRAP # \xHS ERA NAME SYOUWA # \x337D SQUARE ERA NAME TAISYOU 5927 6B63 SQUARED TWO IDEOGRA # \xPHS ERA NAME TAISYOU # \x337E SQUARE ERA NAME MEIZI 660E 6CBB SQUARED TWO IDEOGRAPH # \xS ERA NAME MEIZI # \x337F SQUARE CORPORATION 682A 5F0F 4F1A 793E SQUARED FOUR I # \xDEOGRAPHS CORPORATION # \x3380 SQUARE PA AMPS 0070 0041 SQUARED PA AMPS # \x3381 SQUARE NA 006E 0041 SQUARED NA # \x3382 SQUARE MU A 03BC 0041 SQUARED MU A # \x3383 SQUARE MA 006D 0041 SQUARED MA # \x3384 SQUARE KA 006B 0041 SQUARED KA # \x3385 SQUARE KB 004B 0042 SQUARED KB # \x3386 SQUARE MB 004D 0042 SQUARED MB # \x3387 SQUARE GB 0047 0042 SQUARED GB # \x3388 SQUARE CAL 0063 0061 006C SQUARED CAL # \x3389 SQUARE KCAL 006B 0063 0061 006C SQUARED KCAL # \x338A SQUARE PF 0070 0046 SQUARED PF # \x338B SQUARE NF 006E 0046 SQUARED NF # \x338C SQUARE MU F 03BC 0046 SQUARED MU F # \x338D SQUARE MU G 03BC 0067 SQUARED MU G # \x338E SQUARE MG 006D 0067 SQUARED MG # \x338F SQUARE KG 006B 0067 SQUARED KG # \x3390 SQUARE HZ 0048 007A SQUARED HZ # \x3391 SQUARE KHZ 006B 0048 007A SQUARED KHZ # \x3392 SQUARE MHZ 004D 0048 007A SQUARED MHZ # \x3393 SQUARE GHZ 0047 0048 007A SQUARED GHZ # \x3394 SQUARE THZ 0054 0048 007A SQUARED THZ # \x3395 SQUARE MU 03BC 2113 SQUARED MU # \x3396 SQUARE ML 006D 2113 SQUARED ML # \x3397 SQUARE DL 0064 2113 SQUARED DL # \x3398 SQUARE KL 006B 2113 SQUARED KL # \x3399 SQUARE FM 0066 006D SQUARED FM # \x339A SQUARE NM 006E 006D SQUARED NM # \x339B SQUARE MU M 03BC 006D SQUARED MU M # \x339C SQUARE MM 006D 006D SQUARED MM # \x339D SQUARE CM 0063 006D SQUARED CM # \x339E SQUARE KM 006B 006D SQUARED KM # \x339F SQUARE MM SQUARED 006D 006D 00B2 SQUARED MM SQUARED # \x # \x33A0 SQUARE CM SQUARED 0063 006D 00B2 SQUARED CM SQUARED # \x # \x33A1 SQUARE M SQUARED 006D 00B2 SQUARED M SQUARED # \x33A2 SQUARE KM SQUARED 006B 006D 00B2 SQUARED KM SQUARED # \x # \x33A3 SQUARE MM CUBED 006D 006D 00B3 SQUARED MM CUBED # \x33A4 SQUARE CM CUBED 0063 006D 00B3 SQUARED CM CUBED # \x33A5 SQUARE M CUBED 006D 00B3 SQUARED M CUBED # \x33A6 SQUARE KM CUBED 006B 006D 00B3 SQUARED KM CUBED # \x33A7 SQUARE M OVER S 006D 2215 0073 SQUARED M OVER S # \x33A8 SQUARE M OVER S SQUARED 006D 2215 0073 00B2 SQUARED M # \x OVER S SQUARED # \x33A9 SQUARE PA 0050 0061 SQUARED PA # \x33AA SQUARE KPA 006B 0050 0061 SQUARED KPA # \x33AB SQUARE MPA 004D 0050 0061 SQUARED MPA # \x33AC SQUARE GPA 0047 0050 0061 SQUARED GPA # \x33AD SQUARE RAD 0072 0061 0064 SQUARED RAD # \x33AE SQUARE RAD OVER S 0072 0061 0064 2215 0073 SQUARED RA # \xD OVER S # \x33AF SQUARE RAD OVER S SQUARED 0072 0061 0064 2215 0073 00B2 # \x SQUARED RAD OVER S SQUARED # \x33B0 SQUARE PS 0070 0073 SQUARED PS # \x33B1 SQUARE NS 006E 0073 SQUARED NS # \x33B2 SQUARE MU S 03BC 0073 SQUARED MU S # \x33B3 SQUARE MS 006D 0073 SQUARED MS # \x33B4 SQUARE PV 0070 0056 SQUARED PV # \x33B5 SQUARE NV 006E 0056 SQUARED NV # \x33B6 SQUARE MU V 03BC 0056 SQUARED MU V # \x33B7 SQUARE MV 006D 0056 SQUARED MV # \x33B8 SQUARE KV 006B 0056 SQUARED KV # \x33B9 SQUARE MV MEGA 004D 0056 SQUARED MV MEGA # \x33BA SQUARE PW 0070 0057 SQUARED PW # \x33BB SQUARE NW 006E 0057 SQUARED NW # \x33BC SQUARE MU W 03BC 0057 SQUARED MU W # \x33BD SQUARE MW 006D 0057 SQUARED MW # \x33BE SQUARE KW 006B 0057 SQUARED KW # \x33BF SQUARE MW MEGA 004D 0057 SQUARED MW MEGA # \x33C0 SQUARE K OHM 006B 03A9 SQUARED K OHM # \x33C1 SQUARE M OHM 004D 03A9 SQUARED M OHM # \x33C2 SQUARE AM 0061 002E 006D 002E SQUARED AM # \x33C3 SQUARE BQ 0042 0071 SQUARED BQ # \x33C4 SQUARE CC 0063 0063 SQUARED CC # \x33C5 SQUARE CD 0063 0064 SQUARED CD # \x33C6 SQUARE C OVER KG 0043 2215 006B 0067 SQUARED C OVER K # \xG # \x33C7 SQUARE CO 0043 006F 002E SQUARED CO # \x33C8 SQUARE DB 0064 0042 SQUARED DB # \x33C9 SQUARE GY 0047 0079 SQUARED GY # \x33CA SQUARE HA 0068 0061 SQUARED HA # \x33CB SQUARE HP 0048 0050 SQUARED HP # \x33CC SQUARE IN 0069 006E SQUARED IN # \x33CD SQUARE KK 004B 004B SQUARED KK # \x33CE SQUARE KM CAPITAL 004B 004D SQUARED KM CAPITAL # \x33CF SQUARE KT 006B 0074 SQUARED KT # \x33D0 SQUARE LM 006C 006D SQUARED LM # \x33D1 SQUARE LN 006C 006E SQUARED LN # \x33D2 SQUARE LOG 006C 006F 0067 SQUARED LOG # \x33D3 SQUARE LX 006C 0078 SQUARED LX # \x33D4 SQUARE MB SMALL 006D 0062 SQUARED MB SMALL # \x33D5 SQUARE MIL 006D 0069 006C SQUARED MIL # \x33D6 SQUARE MOL 006D 006F 006C SQUARED MOL # \x33D7 SQUARE PH 0050 0048 SQUARED PH # \x33D8 SQUARE PM 0070 002E 006D 002E SQUARED PM # \x33D9 SQUARE PPM 0050 0050 004D SQUARED PPM # \x33DA SQUARE PR 0050 0052 SQUARED PR # \x33DB SQUARE SR 0073 0072 SQUARED SR # \x33DC SQUARE SV 0053 0076 SQUARED SV # \x33DD SQUARE WB 0057 0062 SQUARED WB # \x33DE SQUARE V OVER M 0056 2215 006D # \x33DF SQUARE A OVER M 0041 2215 006D # \x33E0 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY ONE 0031 65E5 # \x # \x33E1 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWO 0032 65E5 # \x # \x33E2 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THREE 0033 65E5 # \x # \x33E3 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FOUR 0034 65E5 # \x # \x33E4 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FIVE 0035 65E5 # \x # \x33E5 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SIX 0036 65E5 # \x # \x33E6 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SEVEN 0037 65E5 # \x # \x33E7 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY EIGHT 0038 65E5 # \x # \x33E8 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY NINE 0039 65E5 # \x # \x33E9 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TEN 0031 0030 65E5 # \x # \x33EA IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY ELEVEN 0031 0031 65E5 # \x # \x33EB IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWELVE 0031 0032 65E5 # \x # \x33EC IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTEEN 0031 0033 65 # \xE5 # \x33ED IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FOURTEEN 0031 0034 65 # \xE5 # \x33EE IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FIFTEEN 0031 0035 65E # \x5 # \x33EF IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SIXTEEN 0031 0036 65E # \x5 # \x33F0 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SEVENTEEN 0031 0037 6 # \x5E5 # \x33F1 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY EIGHTEEN 0031 0038 65 # \xE5 # \x33F2 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY NINETEEN 0031 0039 65 # \xE5 # \x33F3 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY 0032 0030 65E5 # \x # \x33F4 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-ONE 0032 0031 # \x65E5 # \x33F5 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-TWO 0032 0032 # \x65E5 # \x33F6 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-THREE 0032 003 # \x3 65E5 # \x33F7 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-FOUR 0032 0034 # \x 65E5 # \x33F8 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-FIVE 0032 0035 # \x 65E5 # \x33F9 IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-SIX 0032 0036 # \x65E5 # \x33FA IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-SEVEN 0032 003 # \x7 65E5 # \x33FB IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-EIGHT 0032 003 # \x8 65E5 # \x33FC IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-NINE 0032 0039 # \x 65E5 # \x33FD IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTY 0033 0030 65E5 # \x # \x33FE IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTY-ONE 0033 0031 # \x65E5 # \x33FF SQUARE GAL 0067 0061 006C # \x3400 # \x4DB5 # \x4DC0 HEXAGRAM FOR THE CREATIVE HEAVEN # \x4DC1 HEXAGRAM FOR THE RECEPTIVE EARTH # \x4DC2 HEXAGRAM FOR DIFFICULTY AT THE BEGINNING # \x4DC3 HEXAGRAM FOR YOUTHFUL FOLLY # \x4DC4 HEXAGRAM FOR WAITING # \x4DC5 HEXAGRAM FOR CONFLICT # \x4DC6 HEXAGRAM FOR THE ARMY # \x4DC7 HEXAGRAM FOR HOLDING TOGETHER # \x4DC8 HEXAGRAM FOR SMALL TAMING # \x4DC9 HEXAGRAM FOR TREADING # \x4DCA HEXAGRAM FOR PEACE # \x4DCB HEXAGRAM FOR STANDSTILL # \x4DCC HEXAGRAM FOR FELLOWSHIP # \x4DCD HEXAGRAM FOR GREAT POSSESSION # \x4DCE HEXAGRAM FOR MODESTY # \x4DCF HEXAGRAM FOR ENTHUSIASM # \x4DD0 HEXAGRAM FOR FOLLOWING # \x4DD1 HEXAGRAM FOR WORK THE DECAYED # \x4DD2 HEXAGRAM FOR APPROACH # \x4DD3 HEXAGRAM FOR CONTEMPLATION # \x4DD4 HEXAGRAM FOR BITING THROUGH # \x4DD5 HEXAGRAM FOR GRACE # \x4DD6 HEXAGRAM FOR SPLITTING APART # \x4DD7 HEXAGRAM FOR RETURN # \x4DD8 HEXAGRAM FOR INNOCENCE # \x4DD9 HEXAGRAM FOR GREAT TAMING # \x4DDA HEXAGRAM FOR MOUTH CORNERS # \x4DDB HEXAGRAM FOR GREAT PREPONDERANCE # \x4DDC HEXAGRAM FOR THE ABYSMAL WATER # \x4DDD HEXAGRAM FOR THE CLINGING FIRE # \x4DDE HEXAGRAM FOR INFLUENCE # \x4DDF HEXAGRAM FOR DURATION # \x4DE0 HEXAGRAM FOR RETREAT # \x4DE1 HEXAGRAM FOR GREAT POWER # \x4DE2 HEXAGRAM FOR PROGRESS # \x4DE3 HEXAGRAM FOR DARKENING OF THE LIGHT # \x4DE4 HEXAGRAM FOR THE FAMILY # \x4DE5 HEXAGRAM FOR OPPOSITION # \x4DE6 HEXAGRAM FOR OBSTRUCTION # \x4DE7 HEXAGRAM FOR DELIVERANCE # \x4DE8 HEXAGRAM FOR DECREASE # \x4DE9 HEXAGRAM FOR INCREASE # \x4DEA HEXAGRAM FOR BREAKTHROUGH # \x4DEB HEXAGRAM FOR COMING TO MEET # \x4DEC HEXAGRAM FOR GATHERING TOGETHER # \x4DED HEXAGRAM FOR PUSHING UPWARD # \x4DEE HEXAGRAM FOR OPPRESSION # \x4DEF HEXAGRAM FOR THE WELL # \x4DF0 HEXAGRAM FOR REVOLUTION # \x4DF1 HEXAGRAM FOR THE CAULDRON # \x4DF2 HEXAGRAM FOR THE AROUSING THUNDER # \x4DF3 HEXAGRAM FOR THE KEEPING STILL MOUNTAIN # \x4DF4 HEXAGRAM FOR DEVELOPMENT # \x4DF5 HEXAGRAM FOR THE MARRYING MAIDEN # \x4DF6 HEXAGRAM FOR ABUNDANCE # \x4DF7 HEXAGRAM FOR THE WANDERER # \x4DF8 HEXAGRAM FOR THE GENTLE WIND # \x4DF9 HEXAGRAM FOR THE JOYOUS LAKE # \x4DFA HEXAGRAM FOR DISPERSION # \x4DFB HEXAGRAM FOR LIMITATION # \x4DFC HEXAGRAM FOR INNER TRUTH # \x4DFD HEXAGRAM FOR SMALL PREPONDERANCE # \x4DFE HEXAGRAM FOR AFTER COMPLETION # \x4DFF HEXAGRAM FOR BEFORE COMPLETION # \x4E00 # \x9FA5 # \xA000 YI SYLLABLE IT # \xA001 YI SYLLABLE IX # \xA002 YI SYLLABLE I # \xA003 YI SYLLABLE IP # \xA004 YI SYLLABLE IET # \xA005 YI SYLLABLE IEX # \xA006 YI SYLLABLE IE # \xA007 YI SYLLABLE IEP # \xA008 YI SYLLABLE AT # \xA009 YI SYLLABLE AX # \xA00A YI SYLLABLE A # \xA00B YI SYLLABLE AP # \xA00C YI SYLLABLE UOX # \xA00D YI SYLLABLE UO # \xA00E YI SYLLABLE UOP # \xA00F YI SYLLABLE OT # \xA010 YI SYLLABLE OX # \xA011 YI SYLLABLE O # \xA012 YI SYLLABLE OP # \xA013 YI SYLLABLE EX # \xA014 YI SYLLABLE E # \xA015 YI SYLLABLE WU # \xA016 YI SYLLABLE BIT # \xA017 YI SYLLABLE BIX # \xA018 YI SYLLABLE BI # \xA019 YI SYLLABLE BIP # \xA01A YI SYLLABLE BIET # \xA01B YI SYLLABLE BIEX # \xA01C YI SYLLABLE BIE # \xA01D YI SYLLABLE BIEP # \xA01E YI SYLLABLE BAT # \xA01F YI SYLLABLE BAX # \xA020 YI SYLLABLE BA # \xA021 YI SYLLABLE BAP # \xA022 YI SYLLABLE BUOX # \xA023 YI SYLLABLE BUO # \xA024 YI SYLLABLE BUOP # \xA025 YI SYLLABLE BOT # \xA026 YI SYLLABLE BOX # \xA027 YI SYLLABLE BO # \xA028 YI SYLLABLE BOP # \xA029 YI SYLLABLE BEX # \xA02A YI SYLLABLE BE # \xA02B YI SYLLABLE BEP # \xA02C YI SYLLABLE BUT # \xA02D YI SYLLABLE BUX # \xA02E YI SYLLABLE BU # \xA02F YI SYLLABLE BUP # \xA030 YI SYLLABLE BURX # \xA031 YI SYLLABLE BUR # \xA032 YI SYLLABLE BYT # \xA033 YI SYLLABLE BYX # \xA034 YI SYLLABLE BY # \xA035 YI SYLLABLE BYP # \xA036 YI SYLLABLE BYRX # \xA037 YI SYLLABLE BYR # \xA038 YI SYLLABLE PIT # \xA039 YI SYLLABLE PIX # \xA03A YI SYLLABLE PI # \xA03B YI SYLLABLE PIP # \xA03C YI SYLLABLE PIEX # \xA03D YI SYLLABLE PIE # \xA03E YI SYLLABLE PIEP # \xA03F YI SYLLABLE PAT # \xA040 YI SYLLABLE PAX # \xA041 YI SYLLABLE PA # \xA042 YI SYLLABLE PAP # \xA043 YI SYLLABLE PUOX # \xA044 YI SYLLABLE PUO # \xA045 YI SYLLABLE PUOP # \xA046 YI SYLLABLE POT # \xA047 YI SYLLABLE POX # \xA048 YI SYLLABLE # \xA049 YI SYLLABLE POP # \xA04A YI SYLLABLE PUT # \xA04B YI SYLLABLE PUX # \xA04C YI SYLLABLE PU # \xA04D YI SYLLABLE PUP # \xA04E YI SYLLABLE PURX # \xA04F YI SYLLABLE PUR # \xA050 YI SYLLABLE PYT # \xA051 YI SYLLABLE PYX # \xA052 YI SYLLABLE PY # \xA053 YI SYLLABLE PYP # \xA054 YI SYLLABLE PYRX # \xA055 YI SYLLABLE PYR # \xA056 YI SYLLABLE BBIT # \xA057 YI SYLLABLE BBIX # \xA058 YI SYLLABLE BBI # \xA059 YI SYLLABLE BBIP # \xA05A YI SYLLABLE BBIET # \xA05B YI SYLLABLE BBIEX # \xA05C YI SYLLABLE BBIE # \xA05D YI SYLLABLE BBIEP # \xA05E YI SYLLABLE BBAT # \xA05F YI SYLLABLE BBAX # \xA060 YI SYLLABLE BBA # \xA061 YI SYLLABLE BBAP # \xA062 YI SYLLABLE BBUOX # \xA063 YI SYLLABLE BBUO # \xA064 YI SYLLABLE BBUOP # \xA065 YI SYLLABLE BBOT # \xA066 YI SYLLABLE BBOX # \xA067 YI SYLLABLE BBO # \xA068 YI SYLLABLE BBOP # \xA069 YI SYLLABLE BBEX # \xA06A YI SYLLABLE BBE # \xA06B YI SYLLABLE BBEP # \xA06C YI SYLLABLE BBUT # \xA06D YI SYLLABLE BBUX # \xA06E YI SYLLABLE BBU # \xA06F YI SYLLABLE BBUP # \xA070 YI SYLLABLE BBURX # \xA071 YI SYLLABLE BBUR # \xA072 YI SYLLABLE BBYT # \xA073 YI SYLLABLE BBYX # \xA074 YI SYLLABLE BBY # \xA075 YI SYLLABLE BBYP # \xA076 YI SYLLABLE NBIT # \xA077 YI SYLLABLE NBIX # \xA078 YI SYLLABLE NBI # \xA079 YI SYLLABLE NBIP # \xA07A YI SYLLABLE NBIEX # \xA07B YI SYLLABLE NBIE # \xA07C YI SYLLABLE NBIEP # \xA07D YI SYLLABLE NBAT # \xA07E YI SYLLABLE NBAX # \xA07F YI SYLLABLE NBA # \xA080 YI SYLLABLE NBAP # \xA081 YI SYLLABLE NBOT # \xA082 YI SYLLABLE NBOX # \xA083 YI SYLLABLE NBO # \xA084 YI SYLLABLE NBOP # \xA085 YI SYLLABLE NBUT # \xA086 YI SYLLABLE NBUX # \xA087 YI SYLLABLE NBU # \xA088 YI SYLLABLE NBUP # \xA089 YI SYLLABLE NBURX # \xA08A YI SYLLABLE NBUR # \xA08B YI SYLLABLE NBYT # \xA08C YI SYLLABLE NBYX # \xA08D YI SYLLABLE NBY # \xA08E YI SYLLABLE NBYP # \xA08F YI SYLLABLE NBYRX # \xA090 YI SYLLABLE NBYR # \xA091 YI SYLLABLE HMIT # \xA092 YI SYLLABLE HMIX # \xA093 YI SYLLABLE HMI # \xA094 YI SYLLABLE HMIP # \xA095 YI SYLLABLE HMIEX # \xA096 YI SYLLABLE HMIE # \xA097 YI SYLLABLE HMIEP # \xA098 YI SYLLABLE HMAT # \xA099 YI SYLLABLE HMAX # \xA09A YI SYLLABLE HMA # \xA09B YI SYLLABLE HMAP # \xA09C YI SYLLABLE HMUOX # \xA09D YI SYLLABLE HMUO # \xA09E YI SYLLABLE HMUOP # \xA09F YI SYLLABLE HMOT # \xA0A0 YI SYLLABLE HMOX # \xA0A1 YI SYLLABLE HMO # \xA0A2 YI SYLLABLE HMOP # \xA0A3 YI SYLLABLE HMUT # \xA0A4 YI SYLLABLE HMUX # \xA0A5 YI SYLLABLE HMU # \xA0A6 YI SYLLABLE HMUP # \xA0A7 YI SYLLABLE HMURX # \xA0A8 YI SYLLABLE HMUR # \xA0A9 YI SYLLABLE HMYX # \xA0AA YI SYLLABLE HMY # \xA0AB YI SYLLABLE HMYP # \xA0AC YI SYLLABLE HMYRX # \xA0AD YI SYLLABLE HMYR # \xA0AE YI SYLLABLE MIT # \xA0AF YI SYLLABLE MIX # \xA0B0 YI SYLLABLE MI # \xA0B1 YI SYLLABLE MIP # \xA0B2 YI SYLLABLE MIEX # \xA0B3 YI SYLLABLE MIE # \xA0B4 YI SYLLABLE MIEP # \xA0B5 YI SYLLABLE MAT # \xA0B6 YI SYLLABLE MAX # \xA0B7 YI SYLLABLE MA # \xA0B8 YI SYLLABLE MAP # \xA0B9 YI SYLLABLE MUOT # \xA0BA YI SYLLABLE MUOX # \xA0BB YI SYLLABLE MUO # \xA0BC YI SYLLABLE MUOP # \xA0BD YI SYLLABLE MOT # \xA0BE YI SYLLABLE MOX # \xA0BF YI SYLLABLE MO # \xA0C0 YI SYLLABLE MOP # \xA0C1 YI SYLLABLE MEX # \xA0C2 YI SYLLABLE ME # \xA0C3 YI SYLLABLE MUT # \xA0C4 YI SYLLABLE MUX # \xA0C5 YI SYLLABLE MU # \xA0C6 YI SYLLABLE MUP # \xA0C7 YI SYLLABLE MURX # \xA0C8 YI SYLLABLE MUR # \xA0C9 YI SYLLABLE MYT # \xA0CA YI SYLLABLE MYX # \xA0CB YI SYLLABLE MY # \xA0CC YI SYLLABLE MYP # \xA0CD YI SYLLABLE FIT # \xA0CE YI SYLLABLE FIX # \xA0CF YI SYLLABLE FI # \xA0D0 YI SYLLABLE FIP # \xA0D1 YI SYLLABLE FAT # \xA0D2 YI SYLLABLE FAX # \xA0D3 YI SYLLABLE FA # \xA0D4 YI SYLLABLE FAP # \xA0D5 YI SYLLABLE FOX # \xA0D6 YI SYLLABLE FO # \xA0D7 YI SYLLABLE FOP # \xA0D8 YI SYLLABLE FUT # \xA0D9 YI SYLLABLE FUX # \xA0DA YI SYLLABLE FU # \xA0DB YI SYLLABLE FUP # \xA0DC YI SYLLABLE FURX # \xA0DD YI SYLLABLE FUR # \xA0DE YI SYLLABLE FYT # \xA0DF YI SYLLABLE FYX # \xA0E0 YI SYLLABLE FY # \xA0E1 YI SYLLABLE FYP # \xA0E2 YI SYLLABLE VIT # \xA0E3 YI SYLLABLE VIX # \xA0E4 YI SYLLABLE VI # \xA0E5 YI SYLLABLE VIP # \xA0E6 YI SYLLABLE VIET # \xA0E7 YI SYLLABLE VIEX # \xA0E8 YI SYLLABLE VIE # \xA0E9 YI SYLLABLE VIEP # \xA0EA YI SYLLABLE VAT # \xA0EB YI SYLLABLE VAX # \xA0EC YI SYLLABLE VA # \xA0ED YI SYLLABLE VAP # \xA0EE YI SYLLABLE VOT # \xA0EF YI SYLLABLE VOX # \xA0F0 YI SYLLABLE VO # \xA0F1 YI SYLLABLE VOP # \xA0F2 YI SYLLABLE VEX # \xA0F3 YI SYLLABLE VEP # \xA0F4 YI SYLLABLE VUT # \xA0F5 YI SYLLABLE VUX # \xA0F6 YI SYLLABLE VU # \xA0F7 YI SYLLABLE VUP # \xA0F8 YI SYLLABLE VURX # \xA0F9 YI SYLLABLE VUR # \xA0FA YI SYLLABLE VYT # \xA0FB YI SYLLABLE VYX # \xA0FC YI SYLLABLE VY # \xA0FD YI SYLLABLE VYP # \xA0FE YI SYLLABLE VYRX # \xA0FF YI SYLLABLE VYR # \xA100 YI SYLLABLE DIT # \xA101 YI SYLLABLE DIX # \xA102 YI SYLLABLE DI # \xA103 YI SYLLABLE DIP # \xA104 YI SYLLABLE DIEX # \xA105 YI SYLLABLE DIE # \xA106 YI SYLLABLE DIEP # \xA107 YI SYLLABLE DAT # \xA108 YI SYLLABLE DAX # \xA109 YI SYLLABLE DA # \xA10A YI SYLLABLE DAP # \xA10B YI SYLLABLE DUOX # \xA10C YI SYLLABLE DUO # \xA10D YI SYLLABLE DOT # \xA10E YI SYLLABLE DOX # \xA10F YI SYLLABLE DO # \xA110 YI SYLLABLE DOP # \xA111 YI SYLLABLE DEX # \xA112 YI SYLLABLE DE # \xA113 YI SYLLABLE DEP # \xA114 YI SYLLABLE DUT # \xA115 YI SYLLABLE DUX # \xA116 YI SYLLABLE DU # \xA117 YI SYLLABLE DUP # \xA118 YI SYLLABLE DURX # \xA119 YI SYLLABLE DUR # \xA11A YI SYLLABLE TIT # \xA11B YI SYLLABLE TIX # \xA11C YI SYLLABLE TI # \xA11D YI SYLLABLE TIP # \xA11E YI SYLLABLE TIEX # \xA11F YI SYLLABLE TIE # \xA120 YI SYLLABLE TIEP # \xA121 YI SYLLABLE TAT # \xA122 YI SYLLABLE TAX # \xA123 YI SYLLABLE TA # \xA124 YI SYLLABLE TAP # \xA125 YI SYLLABLE TUOT # \xA126 YI SYLLABLE TUOX # \xA127 YI SYLLABLE TUO # \xA128 YI SYLLABLE TUOP # \xA129 YI SYLLABLE TOT # \xA12A YI SYLLABLE TOX # \xA12B YI SYLLABLE TO # \xA12C YI SYLLABLE TOP # \xA12D YI SYLLABLE TEX # \xA12E YI SYLLABLE TE # \xA12F YI SYLLABLE TEP # \xA130 YI SYLLABLE TUT # \xA131 YI SYLLABLE TUX # \xA132 YI SYLLABLE TU # \xA133 YI SYLLABLE TUP # \xA134 YI SYLLABLE TURX # \xA135 YI SYLLABLE TUR # \xA136 YI SYLLABLE DDIT # \xA137 YI SYLLABLE DDIX # \xA138 YI SYLLABLE DDI # \xA139 YI SYLLABLE DDIP # \xA13A YI SYLLABLE DDIEX # \xA13B YI SYLLABLE DDIE # \xA13C YI SYLLABLE DDIEP # \xA13D YI SYLLABLE DDAT # \xA13E YI SYLLABLE DDAX # \xA13F YI SYLLABLE DDA # \xA140 YI SYLLABLE DDAP # \xA141 YI SYLLABLE DDUOX # \xA142 YI SYLLABLE DDUO # \xA143 YI SYLLABLE DDUOP # \xA144 YI SYLLABLE DDOT # \xA145 YI SYLLABLE DDOX # \xA146 YI SYLLABLE DDO # \xA147 YI SYLLABLE DDOP # \xA148 YI SYLLABLE DDEX # \xA149 YI SYLLABLE DDE # \xA14A YI SYLLABLE DDEP # \xA14B YI SYLLABLE DDUT # \xA14C YI SYLLABLE DDUX # \xA14D YI SYLLABLE DDU # \xA14E YI SYLLABLE DDUP # \xA14F YI SYLLABLE DDURX # \xA150 YI SYLLABLE DDUR # \xA151 YI SYLLABLE NDIT # \xA152 YI SYLLABLE NDIX # \xA153 YI SYLLABLE NDI # \xA154 YI SYLLABLE NDIP # \xA155 YI SYLLABLE NDIEX # \xA156 YI SYLLABLE NDIE # \xA157 YI SYLLABLE NDAT # \xA158 YI SYLLABLE NDAX # \xA159 YI SYLLABLE NDA # \xA15A YI SYLLABLE NDAP # \xA15B YI SYLLABLE NDOT # \xA15C YI SYLLABLE NDOX # \xA15D YI SYLLABLE NDO # \xA15E YI SYLLABLE NDOP # \xA15F YI SYLLABLE NDEX # \xA160 YI SYLLABLE NDE # \xA161 YI SYLLABLE NDEP # \xA162 YI SYLLABLE NDUT # \xA163 YI SYLLABLE NDUX # \xA164 YI SYLLABLE NDU # \xA165 YI SYLLABLE NDUP # \xA166 YI SYLLABLE NDURX # \xA167 YI SYLLABLE NDUR # \xA168 YI SYLLABLE HNIT # \xA169 YI SYLLABLE HNIX # \xA16A YI SYLLABLE HNI # \xA16B YI SYLLABLE HNIP # \xA16C YI SYLLABLE HNIET # \xA16D YI SYLLABLE HNIEX # \xA16E YI SYLLABLE HNIE # \xA16F YI SYLLABLE HNIEP # \xA170 YI SYLLABLE HNAT # \xA171 YI SYLLABLE HNAX # \xA172 YI SYLLABLE HNA # \xA173 YI SYLLABLE HNAP # \xA174 YI SYLLABLE HNUOX # \xA175 YI SYLLABLE HNUO # \xA176 YI SYLLABLE HNOT # \xA177 YI SYLLABLE HNOX # \xA178 YI SYLLABLE HNOP # \xA179 YI SYLLABLE HNEX # \xA17A YI SYLLABLE HNE # \xA17B YI SYLLABLE HNEP # \xA17C YI SYLLABLE HNUT # \xA17D YI SYLLABLE NIT # \xA17E YI SYLLABLE NIX # \xA17F YI SYLLABLE NI # \xA180 YI SYLLABLE NIP # \xA181 YI SYLLABLE NIEX # \xA182 YI SYLLABLE NIE # \xA183 YI SYLLABLE NIEP # \xA184 YI SYLLABLE NAX # \xA185 YI SYLLABLE NA # \xA186 YI SYLLABLE NAP # \xA187 YI SYLLABLE NUOX # \xA188 YI SYLLABLE NUO # \xA189 YI SYLLABLE NUOP # \xA18A YI SYLLABLE NOT # \xA18B YI SYLLABLE NOX # \xA18C YI SYLLABLE NO # \xA18D YI SYLLABLE NOP # \xA18E YI SYLLABLE NEX # \xA18F YI SYLLABLE NE # \xA190 YI SYLLABLE NEP # \xA191 YI SYLLABLE NUT # \xA192 YI SYLLABLE NUX # \xA193 YI SYLLABLE NU # \xA194 YI SYLLABLE NUP # \xA195 YI SYLLABLE NURX # \xA196 YI SYLLABLE NUR # \xA197 YI SYLLABLE HLIT # \xA198 YI SYLLABLE HLIX # \xA199 YI SYLLABLE HLI # \xA19A YI SYLLABLE HLIP # \xA19B YI SYLLABLE HLIEX # \xA19C YI SYLLABLE HLIE # \xA19D YI SYLLABLE HLIEP # \xA19E YI SYLLABLE HLAT # \xA19F YI SYLLABLE HLAX # \xA1A0 YI SYLLABLE HLA # \xA1A1 YI SYLLABLE HLAP # \xA1A2 YI SYLLABLE HLUOX # \xA1A3 YI SYLLABLE HLUO # \xA1A4 YI SYLLABLE HLUOP # \xA1A5 YI SYLLABLE HLOX # \xA1A6 YI SYLLABLE HLO # \xA1A7 YI SYLLABLE HLOP # \xA1A8 YI SYLLABLE HLEX # \xA1A9 YI SYLLABLE HLE # \xA1AA YI SYLLABLE HLEP # \xA1AB YI SYLLABLE HLUT # \xA1AC YI SYLLABLE HLUX # \xA1AD YI SYLLABLE Ho # \xA1AE YI SYLLABLE HLUP # \xA1AF YI SYLLABLE HLURX # \xA1B0 YI SYLLABLE HLUR # \xA1B1 YI SYLLABLE HLYT # \xA1B2 YI SYLLABLE HLYX # \xA1B3 YI SYLLABLE HLY # \xA1B4 YI SYLLABLE HLYP # \xA1B5 YI SYLLABLE HLYRX # \xA1B6 YI SYLLABLE HLYR # \xA1B7 YI SYLLABLE LIT # \xA1B8 YI SYLLABLE LIX # \xA1B9 YI SYLLABLE LI # \xA1BA YI SYLLABLE LIP # \xA1BB YI SYLLABLE LIET # \xA1BC YI SYLLABLE LIEX # \xA1BD YI SYLLABLE LIE # \xA1BE YI SYLLABLE LIEP # \xA1BF YI SYLLABLE LAT # \xA1C0 YI SYLLABLE LAX # \xA1C1 YI SYLLABLE LA # \xA1C2 YI SYLLABLE LAP # \xA1C3 YI SYLLABLE LUOT # \xA1C4 YI SYLLABLE LUOX # \xA1C5 YI SYLLABLE LUO # \xA1C6 YI SYLLABLE LUOP # \xA1C7 YI SYLLABLE LOT # \xA1C8 YI SYLLABLE LOX # \xA1C9 YI SYLLABLE Lo # \xA1CA YI SYLLABLE LOP # \xA1CB YI SYLLABLE LEX # \xA1CC YI SYLLABLE LE # \xA1CD YI SYLLABLE LEP # \xA1CE YI SYLLABLE LUT # \xA1CF YI SYLLABLE LUX # \xA1D0 YI SYLLABLE o # \xA1D1 YI SYLLABLE LUP # \xA1D2 YI SYLLABLE LURX # \xA1D3 YI SYLLABLE LUR # \xA1D4 YI SYLLABLE LYT # \xA1D5 YI SYLLABLE LYX # \xA1D6 YI SYLLABLE LY # \xA1D7 YI SYLLABLE LYP # \xA1D8 YI SYLLABLE LYRX # \xA1D9 YI SYLLABLE LYR # \xA1DA YI SYLLABLE GIT # \xA1DB YI SYLLABLE GIX # \xA1DC YI SYLLABLE GI # \xA1DD YI SYLLABLE GIP # \xA1DE YI SYLLABLE GIET # \xA1DF YI SYLLABLE GIEX # \xA1E0 YI SYLLABLE GIE # \xA1E1 YI SYLLABLE GIEP # \xA1E2 YI SYLLABLE GAT # \xA1E3 YI SYLLABLE GAX # \xA1E4 YI SYLLABLE GA # \xA1E5 YI SYLLABLE GAP # \xA1E6 YI SYLLABLE GUOT # \xA1E7 YI SYLLABLE GUOX # \xA1E8 YI SYLLABLE GUO # \xA1E9 YI SYLLABLE GUOP # \xA1EA YI SYLLABLE GOT # \xA1EB YI SYLLABLE GOX # \xA1EC YI SYLLABLE GO # \xA1ED YI SYLLABLE GOP # \xA1EE YI SYLLABLE GET # \xA1EF YI SYLLABLE GEX # \xA1F0 YI SYLLABLE GE # \xA1F1 YI SYLLABLE GEP # \xA1F2 YI SYLLABLE GUT # \xA1F3 YI SYLLABLE GUX # \xA1F4 YI SYLLABLE GU # \xA1F5 YI SYLLABLE GUP # \xA1F6 YI SYLLABLE GURX # \xA1F7 YI SYLLABLE GUR # \xA1F8 YI SYLLABLE KIT # \xA1F9 YI SYLLABLE KIX # \xA1FA YI SYLLABLE KI # \xA1FB YI SYLLABLE KIP # \xA1FC YI SYLLABLE KIEX # \xA1FD YI SYLLABLE KIE # \xA1FE YI SYLLABLE KIEP # \xA1FF YI SYLLABLE KAT # \xA200 YI SYLLABLE KAX # \xA201 YI SYLLABLE KA # \xA202 YI SYLLABLE KAP # \xA203 YI SYLLABLE KUOX # \xA204 YI SYLLABLE KUO # \xA205 YI SYLLABLE KUOP # \xA206 YI SYLLABLE KOT # \xA207 YI SYLLABLE KOX # \xA208 YI SYLLABLE KO # \xA209 YI SYLLABLE KOP # \xA20A YI SYLLABLE KET # \xA20B YI SYLLABLE KEX # \xA20C YI SYLLABLE KE # \xA20D YI SYLLABLE KEP # \xA20E YI SYLLABLE KUT # \xA20F YI SYLLABLE KUX # \xA210 YI SYLLABLE KU # \xA211 YI SYLLABLE KUP # \xA212 YI SYLLABLE KURX # \xA213 YI SYLLABLE KUR # \xA214 YI SYLLABLE GGIT # \xA215 YI SYLLABLE GGIX # \xA216 YI SYLLABLE GGI # \xA217 YI SYLLABLE GGIEX # \xA218 YI SYLLABLE GGIE # \xA219 YI SYLLABLE GGIEP # \xA21A YI SYLLABLE GGAT # \xA21B YI SYLLABLE GGAX # \xA21C YI SYLLABLE GGA # \xA21D YI SYLLABLE GGAP # \xA21E YI SYLLABLE GGUOT # \xA21F YI SYLLABLE GGUOX # \xA220 YI SYLLABLE GGUO # \xA221 YI SYLLABLE GGUOP # \xA222 YI SYLLABLE GGOT # \xA223 YI SYLLABLE GGOX # \xA224 YI SYLLABLE GGO # \xA225 YI SYLLABLE GGOP # \xA226 YI SYLLABLE GGET # \xA227 YI SYLLABLE GGEX # \xA228 YI SYLLABLE GGE # \xA229 YI SYLLABLE GGEP # \xA22A YI SYLLABLE GGUT # \xA22B YI SYLLABLE GGUX # \xA22C YI SYLLABLE GGU # \xA22D YI SYLLABLE GGUP # \xA22E YI SYLLABLE GGURX # \xA22F YI SYLLABLE GGUR # \xA230 YI SYLLABLE MGIEX # \xA231 YI SYLLABLE MGIE # \xA232 YI SYLLABLE MGAT # \xA233 YI SYLLABLE MGAX # \xA234 YI SYLLABLE MGA # \xA235 YI SYLLABLE MGAP # \xA236 YI SYLLABLE MGUOX # \xA237 YI SYLLABLE MGUO # \xA238 YI SYLLABLE MGUOP # \xA239 YI SYLLABLE MGOT # \xA23A YI SYLLABLE MGOX # \xA23B YI SYLLABLE MGO # \xA23C YI SYLLABLE MGOP # \xA23D YI SYLLABLE MGEX # \xA23E YI SYLLABLE MGE # \xA23F YI SYLLABLE MGEP # \xA240 YI SYLLABLE MGUT # \xA241 YI SYLLABLE MGUX # \xA242 YI SYLLABLE MGU # \xA243 YI SYLLABLE MGUP # \xA244 YI SYLLABLE MGURX # \xA245 YI SYLLABLE MGUR # \xA246 YI SYLLABLE HXIT # \xA247 YI SYLLABLE HXIX # \xA248 YI SYLLABLE HXI # \xA249 YI SYLLABLE HXIP # \xA24A YI SYLLABLE HXIET # \xA24B YI SYLLABLE HXIEX # \xA24C YI SYLLABLE HXIE # \xA24D YI SYLLABLE HXIEP # \xA24E YI SYLLABLE HXAT # \xA24F YI SYLLABLE HXAX # \xA250 YI SYLLABLE HXA # \xA251 YI SYLLABLE HXAP # \xA252 YI SYLLABLE HXUOT # \xA253 YI SYLLABLE HXUOX # \xA254 YI SYLLABLE HXUO # \xA255 YI SYLLABLE HXUOP # \xA256 YI SYLLABLE HXOT # \xA257 YI SYLLABLE HXOX # \xA258 YI SYLLABLE HXO # \xA259 YI SYLLABLE HXOP # \xA25A YI SYLLABLE HXEX # \xA25B YI SYLLABLE HXE # \xA25C YI SYLLABLE HXEP # \xA25D YI SYLLABLE NGIEX # \xA25E YI SYLLABLE NGIE # \xA25F YI SYLLABLE NGIEP # \xA260 YI SYLLABLE NGAT # \xA261 YI SYLLABLE NGAX # \xA262 YI SYLLABLE NGA # \xA263 YI SYLLABLE NGAP # \xA264 YI SYLLABLE NGUOT # \xA265 YI SYLLABLE NGUOX # \xA266 YI SYLLABLE NGUO # \xA267 YI SYLLABLE NGOT # \xA268 YI SYLLABLE NGOX # \xA269 YI SYLLABLE NGO # \xA26A YI SYLLABLE NGOP # \xA26B YI SYLLABLE NGEX # \xA26C YI SYLLABLE NGE # \xA26D YI SYLLABLE NGEP # \xA26E YI SYLLABLE HIT # \xA26F YI SYLLABLE HIEX # \xA270 YI SYLLABLE HIE # \xA271 YI SYLLABLE HAT # \xA272 YI SYLLABLE HAX # \xA273 YI SYLLABLE HA # \xA274 YI SYLLABLE HAP # \xA275 YI SYLLABLE HUOT # \xA276 YI SYLLABLE HUOX # \xA277 YI SYLLABLE HUO # \xA278 YI SYLLABLE HUOP # \xA279 YI SYLLABLE HOT # \xA27A YI SYLLABLE HOX # \xA27B YI SYLLABLE HO # \xA27C YI SYLLABLE HOP # \xA27D YI SYLLABLE HEX # \xA27E YI SYLLABLE HE # \xA27F YI SYLLABLE HEP # \xA280 YI SYLLABLE WAT # \xA281 YI SYLLABLE WAX # \xA282 YI SYLLABLE WA # \xA283 YI SYLLABLE WAP # \xA284 YI SYLLABLE WUOX # \xA285 YI SYLLABLE WUO # \xA286 YI SYLLABLE WUOP # \xA287 YI SYLLABLE WOX # \xA288 YI SYLLABLE WO # \xA289 YI SYLLABLE WOP # \xA28A YI SYLLABLE WEX # \xA28B YI SYLLABLE WE # \xA28C YI SYLLABLE WEP # \xA28D YI SYLLABLE ZIT # \xA28E YI SYLLABLE ZIX # \xA28F YI SYLLABLE ZI # \xA290 YI SYLLABLE ZIP # \xA291 YI SYLLABLE ZIEX # \xA292 YI SYLLABLE ZIE # \xA293 YI SYLLABLE ZIEP # \xA294 YI SYLLABLE ZAT # \xA295 YI SYLLABLE ZAX # \xA296 YI SYLLABLE ZA # \xA297 YI SYLLABLE ZAP # \xA298 YI SYLLABLE ZUOX # \xA299 YI SYLLABLE ZUO # \xA29A YI SYLLABLE ZUOP # \xA29B YI SYLLABLE ZOT # \xA29C YI SYLLABLE ZOX # \xA29D YI SYLLABLE ZO # \xA29E YI SYLLABLE ZOP # \xA29F YI SYLLABLE ZEX # \xA2A0 YI SYLLABLE ZE # \xA2A1 YI SYLLABLE ZEP # \xA2A2 YI SYLLABLE ZUT # \xA2A3 YI SYLLABLE ZUX # \xA2A4 YI SYLLABLE ZU # \xA2A5 YI SYLLABLE ZUP # \xA2A6 YI SYLLABLE ZURX # \xA2A7 YI SYLLABLE ZUR # \xA2A8 YI SYLLABLE ZYT # \xA2A9 YI SYLLABLE ZYX # \xA2AA YI SYLLABLE ZY # \xA2AB YI SYLLABLE ZYP # \xA2AC YI SYLLABLE ZYRX # \xA2AD YI SYLLABLE ZYR # \xA2AE YI SYLLABLE CIT # \xA2AF YI SYLLABLE CIX # \xA2B0 YI SYLLABLE CI # \xA2B1 YI SYLLABLE CIP # \xA2B2 YI SYLLABLE CIET # \xA2B3 YI SYLLABLE CIEX # \xA2B4 YI SYLLABLE CIE # \xA2B5 YI SYLLABLE CIEP # \xA2B6 YI SYLLABLE CAT # \xA2B7 YI SYLLABLE CAX # \xA2B8 YI SYLLABLE CA # \xA2B9 YI SYLLABLE CAP # \xA2BA YI SYLLABLE CUOX # \xA2BB YI SYLLABLE CUO # \xA2BC YI SYLLABLE CUOP # \xA2BD YI SYLLABLE COT # \xA2BE YI SYLLABLE COX # \xA2BF YI SYLLABLE CO # \xA2C0 YI SYLLABLE COP # \xA2C1 YI SYLLABLE CEX # \xA2C2 YI SYLLABLE CE # \xA2C3 YI SYLLABLE CEP # \xA2C4 YI SYLLABLE CUT # \xA2C5 YI SYLLABLE CUX # \xA2C6 YI SYLLABLE CU # \xA2C7 YI SYLLABLE CUP # \xA2C8 YI SYLLABLE CURX # \xA2C9 YI SYLLABLE CUR # \xA2CA YI SYLLABLE CYT # \xA2CB YI SYLLABLE CYX # \xA2CC YI SYLLABLE CY # \xA2CD YI SYLLABLE CYP # \xA2CE YI SYLLABLE CYRX # \xA2CF YI SYLLABLE CYR # \xA2D0 YI SYLLABLE ZZIT # \xA2D1 YI SYLLABLE ZZIX # \xA2D2 YI SYLLABLE ZZI # \xA2D3 YI SYLLABLE ZZIP # \xA2D4 YI SYLLABLE ZZIET # \xA2D5 YI SYLLABLE ZZIEX # \xA2D6 YI SYLLABLE ZZIE # \xA2D7 YI SYLLABLE ZZIEP # \xA2D8 YI SYLLABLE ZZAT # \xA2D9 YI SYLLABLE ZZAX # \xA2DA YI SYLLABLE ZZA # \xA2DB YI SYLLABLE ZZAP # \xA2DC YI SYLLABLE ZZOX # \xA2DD YI SYLLABLE ZZO # \xA2DE YI SYLLABLE ZZOP # \xA2DF YI SYLLABLE ZZEX # \xA2E0 YI SYLLABLE ZZE # \xA2E1 YI SYLLABLE ZZEP # \xA2E2 YI SYLLABLE ZZUX # \xA2E3 YI SYLLABLE ZZU # \xA2E4 YI SYLLABLE ZZUP # \xA2E5 YI SYLLABLE ZZURX # \xA2E6 YI SYLLABLE ZZUR # \xA2E7 YI SYLLABLE ZZYT # \xA2E8 YI SYLLABLE ZZYX # \xA2E9 YI SYLLABLE ZZY # \xA2EA YI SYLLABLE ZZYP # \xA2EB YI SYLLABLE ZZYRX # \xA2EC YI SYLLABLE ZZYR # \xA2ED YI SYLLABLE NZIT # \xA2EE YI SYLLABLE NZIX # \xA2EF YI SYLLABLE NZI # \xA2F0 YI SYLLABLE NZIP # \xA2F1 YI SYLLABLE NZIEX # \xA2F2 YI SYLLABLE NZIE # \xA2F3 YI SYLLABLE NZIEP # \xA2F4 YI SYLLABLE NZAT # \xA2F5 YI SYLLABLE NZAX # \xA2F6 YI SYLLABLE NZA # \xA2F7 YI SYLLABLE NZAP # \xA2F8 YI SYLLABLE NZUOX # \xA2F9 YI SYLLABLE NZUO # \xA2FA YI SYLLABLE NZOX # \xA2FB YI SYLLABLE NZOP # \xA2FC YI SYLLABLE NZEX # \xA2FD YI SYLLABLE NZE # \xA2FE YI SYLLABLE NZUX # \xA2FF YI SYLLABLE NZU # \xA300 YI SYLLABLE NZUP # \xA301 YI SYLLABLE NZURX # \xA302 YI SYLLABLE NZUR # \xA303 YI SYLLABLE NZYT # \xA304 YI SYLLABLE NZYX # \xA305 YI SYLLABLE NZY # \xA306 YI SYLLABLE NZYP # \xA307 YI SYLLABLE NZYRX # \xA308 YI SYLLABLE NZYR # \xA309 YI SYLLABLE SIT # \xA30A YI SYLLABLE SIX # \xA30B YI SYLLABLE SI # \xA30C YI SYLLABLE SIP # \xA30D YI SYLLABLE SIEX # \xA30E YI SYLLABLE SIE # \xA30F YI SYLLABLE SIEP # \xA310 YI SYLLABLE SAT # \xA311 YI SYLLABLE SAX # \xA312 YI SYLLABLE SA # \xA313 YI SYLLABLE SAP # \xA314 YI SYLLABLE SUOX # \xA315 YI SYLLABLE SUO # \xA316 YI SYLLABLE SUOP # \xA317 YI SYLLABLE SOT # \xA318 YI SYLLABLE SOX # \xA319 YI SYLLABLE # \xA31A YI SYLLABLE SOP # \xA31B YI SYLLABLE SEX # \xA31C YI SYLLABLE SE # \xA31D YI SYLLABLE SEP # \xA31E YI SYLLABLE SUT # \xA31F YI SYLLABLE SUX # \xA320 YI SYLLABLE SU # \xA321 YI SYLLABLE SUP # \xA322 YI SYLLABLE SURX # \xA323 YI SYLLABLE SUR # \xA324 YI SYLLABLE SYT # \xA325 YI SYLLABLE SYX # \xA326 YI SYLLABLE SY # \xA327 YI SYLLABLE SYP # \xA328 YI SYLLABLE SYRX # \xA329 YI SYLLABLE SYR # \xA32A YI SYLLABLE SSIT # \xA32B YI SYLLABLE SSIX # \xA32C YI SYLLABLE SSI # \xA32D YI SYLLABLE SSIP # \xA32E YI SYLLABLE SSIEX # \xA32F YI SYLLABLE SSIE # \xA330 YI SYLLABLE SSIEP # \xA331 YI SYLLABLE SSAT # \xA332 YI SYLLABLE SSAX # \xA333 YI SYLLABLE SSA # \xA334 YI SYLLABLE SSAP # \xA335 YI SYLLABLE SSOT # \xA336 YI SYLLABLE SSOX # \xA337 YI SYLLABLE SSO # \xA338 YI SYLLABLE SSOP # \xA339 YI SYLLABLE SSEX # \xA33A YI SYLLABLE SSE # \xA33B YI SYLLABLE SSEP # \xA33C YI SYLLABLE SSUT # \xA33D YI SYLLABLE SSUX # \xA33E YI SYLLABLE SSU # \xA33F YI SYLLABLE SSUP # \xA340 YI SYLLABLE SSYT # \xA341 YI SYLLABLE SSYX # \xA342 YI SYLLABLE SSY # \xA343 YI SYLLABLE SSYP # \xA344 YI SYLLABLE SSYRX # \xA345 YI SYLLABLE SSYR # \xA346 YI SYLLABLE ZHAT # \xA347 YI SYLLABLE ZHAX # \xA348 YI SYLLABLE ZHA # \xA349 YI SYLLABLE ZHAP # \xA34A YI SYLLABLE ZHUOX # \xA34B YI SYLLABLE ZHUO # \xA34C YI SYLLABLE ZHUOP # \xA34D YI SYLLABLE ZHOT # \xA34E YI SYLLABLE ZHOX # \xA34F YI SYLLABLE ZHO # \xA350 YI SYLLABLE ZHOP # \xA351 YI SYLLABLE ZHET # \xA352 YI SYLLABLE ZHEX # \xA353 YI SYLLABLE ZHE # \xA354 YI SYLLABLE ZHEP # \xA355 YI SYLLABLE ZHUT # \xA356 YI SYLLABLE ZHUX # \xA357 YI SYLLABLE ZHU # \xA358 YI SYLLABLE ZHUP # \xA359 YI SYLLABLE ZHURX # \xA35A YI SYLLABLE ZHUR # \xA35B YI SYLLABLE ZHYT # \xA35C YI SYLLABLE ZHYX # \xA35D YI SYLLABLE ZHY # \xA35E YI SYLLABLE ZHYP # \xA35F YI SYLLABLE ZHYRX # \xA360 YI SYLLABLE ZHYR # \xA361 YI SYLLABLE CHAT # \xA362 YI SYLLABLE CHAX # \xA363 YI SYLLABLE CHA # \xA364 YI SYLLABLE CHAP # \xA365 YI SYLLABLE CHUOT # \xA366 YI SYLLABLE CHUOX # \xA367 YI SYLLABLE CHUO # \xA368 YI SYLLABLE CHUOP # \xA369 YI SYLLABLE CHOT # \xA36A YI SYLLABLE CHOX # \xA36B YI SYLLABLE CHO # \xA36C YI SYLLABLE CHOP # \xA36D YI SYLLABLE CHET # \xA36E YI SYLLABLE CHEX # \xA36F YI SYLLABLE CHE # \xA370 YI SYLLABLE CHEP # \xA371 YI SYLLABLE CHUX # \xA372 YI SYLLABLE CHU # \xA373 YI SYLLABLE CHUP # \xA374 YI SYLLABLE CHURX # \xA375 YI SYLLABLE CHUR # \xA376 YI SYLLABLE CHYT # \xA377 YI SYLLABLE CHYX # \xA378 YI SYLLABLE CHY # \xA379 YI SYLLABLE CHYP # \xA37A YI SYLLABLE CHYRX # \xA37B YI SYLLABLE CHYR # \xA37C YI SYLLABLE RRAX # \xA37D YI SYLLABLE RRA # \xA37E YI SYLLABLE RRUOX # \xA37F YI SYLLABLE RRUO # \xA380 YI SYLLABLE RROT # \xA381 YI SYLLABLE RROX # \xA382 YI SYLLABLE RRO # \xA383 YI SYLLABLE RROP # \xA384 YI SYLLABLE RRET # \xA385 YI SYLLABLE RREX # \xA386 YI SYLLABLE RRE # \xA387 YI SYLLABLE RREP # \xA388 YI SYLLABLE RRUT # \xA389 YI SYLLABLE RRUX # \xA38A YI SYLLABLE RRU # \xA38B YI SYLLABLE RRUP # \xA38C YI SYLLABLE RRURX # \xA38D YI SYLLABLE RRUR # \xA38E YI SYLLABLE RRYT # \xA38F YI SYLLABLE RRYX # \xA390 YI SYLLABLE RRY # \xA391 YI SYLLABLE RRYP # \xA392 YI SYLLABLE RRYRX # \xA393 YI SYLLABLE RRYR # \xA394 YI SYLLABLE NRAT # \xA395 YI SYLLABLE NRAX # \xA396 YI SYLLABLE NRA # \xA397 YI SYLLABLE NRAP # \xA398 YI SYLLABLE NROX # \xA399 YI SYLLABLE NRO # \xA39A YI SYLLABLE NROP # \xA39B YI SYLLABLE NRET # \xA39C YI SYLLABLE NREX # \xA39D YI SYLLABLE NRE # \xA39E YI SYLLABLE NREP # \xA39F YI SYLLABLE NRUT # \xA3A0 YI SYLLABLE NRUX # \xA3A1 YI SYLLABLE NRU # \xA3A2 YI SYLLABLE NRUP # \xA3A3 YI SYLLABLE NRURX # \xA3A4 YI SYLLABLE NRUR # \xA3A5 YI SYLLABLE NRYT # \xA3A6 YI SYLLABLE NRYX # \xA3A7 YI SYLLABLE NRY # \xA3A8 YI SYLLABLE NRYP # \xA3A9 YI SYLLABLE NRYRX # \xA3AA YI SYLLABLE NRYR # \xA3AB YI SYLLABLE SHAT # \xA3AC YI SYLLABLE SHAX # \xA3AD YI SYLLABLE SHA # \xA3AE YI SYLLABLE SHAP # \xA3AF YI SYLLABLE SHUOX # \xA3B0 YI SYLLABLE SHUO # \xA3B1 YI SYLLABLE SHUOP # \xA3B2 YI SYLLABLE SHOT # \xA3B3 YI SYLLABLE SHOX # \xA3B4 YI SYLLABLE SHO # \xA3B5 YI SYLLABLE SHOP # \xA3B6 YI SYLLABLE SHET # \xA3B7 YI SYLLABLE SHEX # \xA3B8 YI SYLLABLE SHE # \xA3B9 YI SYLLABLE SHEP # \xA3BA YI SYLLABLE SHUT # \xA3BB YI SYLLABLE SHUX # \xA3BC YI SYLLABLE SHU # \xA3BD YI SYLLABLE SHUP # \xA3BE YI SYLLABLE SHURX # \xA3BF YI SYLLABLE SHUR # \xA3C0 YI SYLLABLE SHYT # \xA3C1 YI SYLLABLE SHYX # \xA3C2 YI SYLLABLE SHY # \xA3C3 YI SYLLABLE SHYP # \xA3C4 YI SYLLABLE SHYRX # \xA3C5 YI SYLLABLE SHYR # \xA3C6 YI SYLLABLE RAT # \xA3C7 YI SYLLABLE RAX # \xA3C8 YI SYLLABLE RA # \xA3C9 YI SYLLABLE RAP # \xA3CA YI SYLLABLE RUOX # \xA3CB YI SYLLABLE RUO # \xA3CC YI SYLLABLE RUOP # \xA3CD YI SYLLABLE ROT # \xA3CE YI SYLLABLE ROX # \xA3CF YI SYLLABLE RO # \xA3D0 YI SYLLABLE ROP # \xA3D1 YI SYLLABLE REX # \xA3D2 YI SYLLABLE RE # \xA3D3 YI SYLLABLE REP # \xA3D4 YI SYLLABLE RUT # \xA3D5 YI SYLLABLE RUX # \xA3D6 YI SYLLABLE RU # \xA3D7 YI SYLLABLE RUP # \xA3D8 YI SYLLABLE RURX # \xA3D9 YI SYLLABLE RUR # \xA3DA YI SYLLABLE RYT # \xA3DB YI SYLLABLE RYX # \xA3DC YI SYLLABLE RY # \xA3DD YI SYLLABLE RYP # \xA3DE YI SYLLABLE RYRX # \xA3DF YI SYLLABLE RYR # \xA3E0 YI SYLLABLE JIT # \xA3E1 YI SYLLABLE JIX # \xA3E2 YI SYLLABLE JI # \xA3E3 YI SYLLABLE JIP # \xA3E4 YI SYLLABLE JIET # \xA3E5 YI SYLLABLE JIEX # \xA3E6 YI SYLLABLE JIE # \xA3E7 YI SYLLABLE JIEP # \xA3E8 YI SYLLABLE JUOT # \xA3E9 YI SYLLABLE JUOX # \xA3EA YI SYLLABLE JUO # \xA3EB YI SYLLABLE JUOP # \xA3EC YI SYLLABLE JOT # \xA3ED YI SYLLABLE JOX # \xA3EE YI SYLLABLE JO # \xA3EF YI SYLLABLE JOP # \xA3F0 YI SYLLABLE JUT # \xA3F1 YI SYLLABLE JUX # \xA3F2 YI SYLLABLE JU # \xA3F3 YI SYLLABLE JUP # \xA3F4 YI SYLLABLE JURX # \xA3F5 YI SYLLABLE JUR # \xA3F6 YI SYLLABLE JYT # \xA3F7 YI SYLLABLE JYX # \xA3F8 YI SYLLABLE JY # \xA3F9 YI SYLLABLE JYP # \xA3FA YI SYLLABLE JYRX # \xA3FB YI SYLLABLE JYR # \xA3FC YI SYLLABLE QIT # \xA3FD YI SYLLABLE QIX # \xA3FE YI SYLLABLE QI # \xA3FF YI SYLLABLE QIP # \xA400 YI SYLLABLE QIET # \xA401 YI SYLLABLE QIEX # \xA402 YI SYLLABLE QIE # \xA403 YI SYLLABLE QIEP # \xA404 YI SYLLABLE QUOT # \xA405 YI SYLLABLE QUOX # \xA406 YI SYLLABLE QUO # \xA407 YI SYLLABLE QUOP # \xA408 YI SYLLABLE QOT # \xA409 YI SYLLABLE QOX # \xA40A YI SYLLABLE QO # \xA40B YI SYLLABLE QOP # \xA40C YI SYLLABLE QUT # \xA40D YI SYLLABLE QUX # \xA40E YI SYLLABLE QU # \xA40F YI SYLLABLE QUP # \xA410 YI SYLLABLE QURX # \xA411 YI SYLLABLE QUR # \xA412 YI SYLLABLE QYT # \xA413 YI SYLLABLE QYX # \xA414 YI SYLLABLE QY # \xA415 YI SYLLABLE QYP # \xA416 YI SYLLABLE QYRX # \xA417 YI SYLLABLE QYR # \xA418 YI SYLLABLE JJIT # \xA419 YI SYLLABLE JJIX # \xA41A YI SYLLABLE JJI # \xA41B YI SYLLABLE JJIP # \xA41C YI SYLLABLE JJIET # \xA41D YI SYLLABLE JJIEX # \xA41E YI SYLLABLE JJIE # \xA41F YI SYLLABLE JJIEP # \xA420 YI SYLLABLE JJUOX # \xA421 YI SYLLABLE JJUO # \xA422 YI SYLLABLE JJUOP # \xA423 YI SYLLABLE JJOT # \xA424 YI SYLLABLE JJOX # \xA425 YI SYLLABLE JJO # \xA426 YI SYLLABLE JJOP # \xA427 YI SYLLABLE JJUT # \xA428 YI SYLLABLE JJUX # \xA429 YI SYLLABLE JJU # \xA42A YI SYLLABLE JJUP # \xA42B YI SYLLABLE JJURX # \xA42C YI SYLLABLE JJUR # \xA42D YI SYLLABLE JJYT # \xA42E YI SYLLABLE JJYX # \xA42F YI SYLLABLE JJY # \xA430 YI SYLLABLE JJYP # \xA431 YI SYLLABLE NJIT # \xA432 YI SYLLABLE NJIX # \xA433 YI SYLLABLE NJI # \xA434 YI SYLLABLE NJIP # \xA435 YI SYLLABLE NJIET # \xA436 YI SYLLABLE NJIEX # \xA437 YI SYLLABLE NJIE # \xA438 YI SYLLABLE NJIEP # \xA439 YI SYLLABLE NJUOX # \xA43A YI SYLLABLE NJUO # \xA43B YI SYLLABLE NJOT # \xA43C YI SYLLABLE NJOX # \xA43D YI SYLLABLE NJO # \xA43E YI SYLLABLE NJOP # \xA43F YI SYLLABLE NJUX # \xA440 YI SYLLABLE NJU # \xA441 YI SYLLABLE NJUP # \xA442 YI SYLLABLE NJURX # \xA443 YI SYLLABLE NJUR # \xA444 YI SYLLABLE NJYT # \xA445 YI SYLLABLE NJYX # \xA446 YI SYLLABLE NJY # \xA447 YI SYLLABLE NJYP # \xA448 YI SYLLABLE NJYRX # \xA449 YI SYLLABLE NJYR # \xA44A YI SYLLABLE NYIT # \xA44B YI SYLLABLE NYIX # \xA44C YI SYLLABLE NYI # \xA44D YI SYLLABLE NYIP # \xA44E YI SYLLABLE NYIET # \xA44F YI SYLLABLE NYIEX # \xA450 YI SYLLABLE NYIE # \xA451 YI SYLLABLE NYIEP # \xA452 YI SYLLABLE NYUOX # \xA453 YI SYLLABLE NYUO # \xA454 YI SYLLABLE NYUOP # \xA455 YI SYLLABLE NYOT # \xA456 YI SYLLABLE NYOX # \xA457 YI SYLLABLE NYO # \xA458 YI SYLLABLE NYOP # \xA459 YI SYLLABLE NYUT # \xA45A YI SYLLABLE NYUX # \xA45B YI SYLLABLE NYU # \xA45C YI SYLLABLE NYUP # \xA45D YI SYLLABLE XIT # \xA45E YI SYLLABLE XIX # \xA45F YI SYLLABLE XI # \xA460 YI SYLLABLE XIP # \xA461 YI SYLLABLE XIET # \xA462 YI SYLLABLE XIEX # \xA463 YI SYLLABLE XIE # \xA464 YI SYLLABLE XIEP # \xA465 YI SYLLABLE XUOX # \xA466 YI SYLLABLE XUO # \xA467 YI SYLLABLE XOT # \xA468 YI SYLLABLE XOX # \xA469 YI SYLLABLE XO # \xA46A YI SYLLABLE XOP # \xA46B YI SYLLABLE XYT # \xA46C YI SYLLABLE XYX # \xA46D YI SYLLABLE XY # \xA46E YI SYLLABLE XYP # \xA46F YI SYLLABLE XYRX # \xA470 YI SYLLABLE XYR # \xA471 YI SYLLABLE YIT # \xA472 YI SYLLABLE YIX # \xA473 YI SYLLABLE YI # \xA474 YI SYLLABLE YIP # \xA475 YI SYLLABLE YIET # \xA476 YI SYLLABLE YIEX # \xA477 YI SYLLABLE YIE # \xA478 YI SYLLABLE YIEP # \xA479 YI SYLLABLE YUOT # \xA47A YI SYLLABLE YUOX # \xA47B YI SYLLABLE YUO # \xA47C YI SYLLABLE YUOP # \xA47D YI SYLLABLE YOT # \xA47E YI SYLLABLE YOX # \xA47F YI SYLLABLE YO # \xA480 YI SYLLABLE YOP # \xA481 YI SYLLABLE YUT # \xA482 YI SYLLABLE YUX # \xA483 YI SYLLABLE YU # \xA484 YI SYLLABLE YUP # \xA485 YI SYLLABLE YURX # \xA486 YI SYLLABLE YUR # \xA487 YI SYLLABLE YYT # \xA488 YI SYLLABLE YYX # \xA489 YI SYLLABLE YY # \xA48A YI SYLLABLE YYP # \xA48B YI SYLLABLE YYRX # \xA48C YI SYLLABLE YYR # \xA490 YI RADICAL QOT # \xA491 YI RADICAL LI # \xA492 YI RADICAL KIT # \xA493 YI RADICAL NYIP # \xA494 YI RADICAL CYP # \xA495 YI RADICAL SSI # \xA496 YI RADICAL GGOP # \xA497 YI RADICAL GEP # \xA498 YI RADICAL MI # \xA499 YI RADICAL HXIT # \xA49A YI RADICAL LYR # \xA49B YI RADICAL BBUT # \xA49C YI RADICAL MOP # \xA49D YI RADICAL YO # \xA49E YI RADICAL PUT # \xA49F YI RADICAL HXUO # \xA4A0 YI RADICAL TAT # \xA4A1 YI RADICAL GA # \xA4A2 YI RADICAL ZUP # \xA4A3 YI RADICAL CYT # \xA4A4 YI RADICAL DDUR # \xA4A5 YI RADICAL BUR # \xA4A6 YI RADICAL GGUO # \xA4A7 YI RADICAL NYOP # \xA4A8 YI RADICAL TU # \xA4A9 YI RADICAL OP # \xA4AA YI RADICAL JJUT # \xA4AB YI RADICAL ZOT # \xA4AC YI RADICAL PYT # \xA4AD YI RADICAL HMO # \xA4AE YI RADICAL YIT # \xA4AF YI RADICAL VUR # \xA4B0 YI RADICAL SHY # \xA4B1 YI RADICAL VEP # \xA4B2 YI RADICAL ZA # \xA4B3 YI RADICAL JO # \xA4B4 YI RADICAL NZUP # \xA4B5 YI RADICAL JJY # \xA4B6 YI RADICAL GOT # \xA4B7 YI RADICAL JJIE # \xA4B8 YI RADICAL WO # \xA4B9 YI RADICAL DU # \xA4BA YI RADICAL SHUR # \xA4BB YI RADICAL LIE # \xA4BC YI RADICAL CY # \xA4BD YI RADICAL CUOP # \xA4BE YI RADICAL CIP # \xA4BF YI RADICAL HXOP # \xA4C0 YI RADICAL SHAT # \xA4C1 YI RADICAL ZUR # \xA4C2 YI RADICAL SHOP # \xA4C3 YI RADICAL CHE # \xA4C4 YI RADICAL ZZIET # \xA4C5 YI RADICAL NBIE # \xA4C6 YI RADICAL KE # \xAC00 # \xD7A3 # \xD800 Cs # \xDB7F Cs # \xDB80 Cs # \xDBFF Cs # \xDC00 Cs # \xDFFF Cs # \xE000 Co # \xF8FF Co # \xF900 CJK COMPATIBILITY IDEOGRAPH-F900 8C48 # \xF901 CJK COMPATIBILITY IDEOGRAPH-F901 66F4 # \xF902 CJK COMPATIBILITY IDEOGRAPH-F902 8ECA # \xF903 CJK COMPATIBILITY IDEOGRAPH-F903 8CC8 # \xF904 CJK COMPATIBILITY IDEOGRAPH-F904 6ED1 # \xF905 CJK COMPATIBILITY IDEOGRAPH-F905 4E32 # \xF906 CJK COMPATIBILITY IDEOGRAPH-F906 53E5 # \xF907 CJK COMPATIBILITY IDEOGRAPH-F907 9F9C # \xF908 CJK COMPATIBILITY IDEOGRAPH-F908 9F9C # \xF909 CJK COMPATIBILITY IDEOGRAPH-F909 5951 # \xF90A CJK COMPATIBILITY IDEOGRAPH-F90A 91D1 # \xF90B CJK COMPATIBILITY IDEOGRAPH-F90B 5587 # \xF90C CJK COMPATIBILITY IDEOGRAPH-F90C 5948 # \xF90D CJK COMPATIBILITY IDEOGRAPH-F90D 61F6 # \xF90E CJK COMPATIBILITY IDEOGRAPH-F90E 7669 # \xF90F CJK COMPATIBILITY IDEOGRAPH-F90F 7F85 # \xF910 CJK COMPATIBILITY IDEOGRAPH-F910 863F # \xF911 CJK COMPATIBILITY IDEOGRAPH-F911 87BA # \xF912 CJK COMPATIBILITY IDEOGRAPH-F912 88F8 # \xF913 CJK COMPATIBILITY IDEOGRAPH-F913 908F # \xF914 CJK COMPATIBILITY IDEOGRAPH-F914 6A02 # \xF915 CJK COMPATIBILITY IDEOGRAPH-F915 6D1B # \xF916 CJK COMPATIBILITY IDEOGRAPH-F916 70D9 # \xF917 CJK COMPATIBILITY IDEOGRAPH-F917 73DE # \xF918 CJK COMPATIBILITY IDEOGRAPH-F918 843D # \xF919 CJK COMPATIBILITY IDEOGRAPH-F919 916A # \xF91A CJK COMPATIBILITY IDEOGRAPH-F91A 99F1 # \xF91B CJK COMPATIBILITY IDEOGRAPH-F91B 4E82 # \xF91C CJK COMPATIBILITY IDEOGRAPH-F91C 5375 # \xF91D CJK COMPATIBILITY IDEOGRAPH-F91D 6B04 # \xF91E CJK COMPATIBILITY IDEOGRAPH-F91E 721B # \xF91F CJK COMPATIBILITY IDEOGRAPH-F91F 862D # \xF920 CJK COMPATIBILITY IDEOGRAPH-F920 9E1E # \xF921 CJK COMPATIBILITY IDEOGRAPH-F921 5D50 # \xF922 CJK COMPATIBILITY IDEOGRAPH-F922 6FEB # \xF923 CJK COMPATIBILITY IDEOGRAPH-F923 85CD # \xF924 CJK COMPATIBILITY IDEOGRAPH-F924 8964 # \xF925 CJK COMPATIBILITY IDEOGRAPH-F925 62C9 # \xF926 CJK COMPATIBILITY IDEOGRAPH-F926 81D8 # \xF927 CJK COMPATIBILITY IDEOGRAPH-F927 881F # \xF928 CJK COMPATIBILITY IDEOGRAPH-F928 5ECA # \xF929 CJK COMPATIBILITY IDEOGRAPH-F929 6717 # \xF92A CJK COMPATIBILITY IDEOGRAPH-F92A 6D6A # \xF92B CJK COMPATIBILITY IDEOGRAPH-F92B 72FC # \xF92C CJK COMPATIBILITY IDEOGRAPH-F92C 90CE # \xF92D CJK COMPATIBILITY IDEOGRAPH-F92D 4F86 # \xF92E CJK COMPATIBILITY IDEOGRAPH-F92E 51B7 # \xF92F CJK COMPATIBILITY IDEOGRAPH-F92F 52DE # \xF930 CJK COMPATIBILITY IDEOGRAPH-F930 64C4 # \xF931 CJK COMPATIBILITY IDEOGRAPH-F931 6AD3 # \xF932 CJK COMPATIBILITY IDEOGRAPH-F932 7210 # \xF933 CJK COMPATIBILITY IDEOGRAPH-F933 76E7 # \xF934 CJK COMPATIBILITY IDEOGRAPH-F934 8001 # \xF935 CJK COMPATIBILITY IDEOGRAPH-F935 8606 # \xF936 CJK COMPATIBILITY IDEOGRAPH-F936 865C # \xF937 CJK COMPATIBILITY IDEOGRAPH-F937 8DEF # \xF938 CJK COMPATIBILITY IDEOGRAPH-F938 9732 # \xF939 CJK COMPATIBILITY IDEOGRAPH-F939 9B6F # \xF93A CJK COMPATIBILITY IDEOGRAPH-F93A 9DFA # \xF93B CJK COMPATIBILITY IDEOGRAPH-F93B 788C # \xF93C CJK COMPATIBILITY IDEOGRAPH-F93C 797F # \xF93D CJK COMPATIBILITY IDEOGRAPH-F93D 7DA0 # \xF93E CJK COMPATIBILITY IDEOGRAPH-F93E 83C9 # \xF93F CJK COMPATIBILITY IDEOGRAPH-F93F 9304 # \xF940 CJK COMPATIBILITY IDEOGRAPH-F940 9E7F # \xF941 CJK COMPATIBILITY IDEOGRAPH-F941 8AD6 # \xF942 CJK COMPATIBILITY IDEOGRAPH-F942 58DF # \xF943 CJK COMPATIBILITY IDEOGRAPH-F943 5F04 # \xF944 CJK COMPATIBILITY IDEOGRAPH-F944 7C60 # \xF945 CJK COMPATIBILITY IDEOGRAPH-F945 807E # \xF946 CJK COMPATIBILITY IDEOGRAPH-F946 7262 # \xF947 CJK COMPATIBILITY IDEOGRAPH-F947 78CA # \xF948 CJK COMPATIBILITY IDEOGRAPH-F948 8CC2 # \xF949 CJK COMPATIBILITY IDEOGRAPH-F949 96F7 # \xF94A CJK COMPATIBILITY IDEOGRAPH-F94A 58D8 # \xF94B CJK COMPATIBILITY IDEOGRAPH-F94B 5C62 # \xF94C CJK COMPATIBILITY IDEOGRAPH-F94C 6A13 # \xF94D CJK COMPATIBILITY IDEOGRAPH-F94D 6DDA # \xF94E CJK COMPATIBILITY IDEOGRAPH-F94E 6F0F # \xF94F CJK COMPATIBILITY IDEOGRAPH-F94F 7D2F # \xF950 CJK COMPATIBILITY IDEOGRAPH-F950 7E37 # \xF951 CJK COMPATIBILITY IDEOGRAPH-F951 964B # \xF952 CJK COMPATIBILITY IDEOGRAPH-F952 52D2 # \xF953 CJK COMPATIBILITY IDEOGRAPH-F953 808B # \xF954 CJK COMPATIBILITY IDEOGRAPH-F954 51DC # \xF955 CJK COMPATIBILITY IDEOGRAPH-F955 51CC # \xF956 CJK COMPATIBILITY IDEOGRAPH-F956 7A1C # \xF957 CJK COMPATIBILITY IDEOGRAPH-F957 7DBE # \xF958 CJK COMPATIBILITY IDEOGRAPH-F958 83F1 # \xF959 CJK COMPATIBILITY IDEOGRAPH-F959 9675 # \xF95A CJK COMPATIBILITY IDEOGRAPH-F95A 8B80 # \xF95B CJK COMPATIBILITY IDEOGRAPH-F95B 62CF # \xF95C CJK COMPATIBILITY IDEOGRAPH-F95C 6A02 # \xF95D CJK COMPATIBILITY IDEOGRAPH-F95D 8AFE # \xF95E CJK COMPATIBILITY IDEOGRAPH-F95E 4E39 # \xF95F CJK COMPATIBILITY IDEOGRAPH-F95F 5BE7 # \xF960 CJK COMPATIBILITY IDEOGRAPH-F960 6012 # \xF961 CJK COMPATIBILITY IDEOGRAPH-F961 7387 # \xF962 CJK COMPATIBILITY IDEOGRAPH-F962 7570 # \xF963 CJK COMPATIBILITY IDEOGRAPH-F963 5317 # \xF964 CJK COMPATIBILITY IDEOGRAPH-F964 78FB # \xF965 CJK COMPATIBILITY IDEOGRAPH-F965 4FBF # \xF966 CJK COMPATIBILITY IDEOGRAPH-F966 5FA9 # \xF967 CJK COMPATIBILITY IDEOGRAPH-F967 4E0D # \xF968 CJK COMPATIBILITY IDEOGRAPH-F968 6CCC # \xF969 CJK COMPATIBILITY IDEOGRAPH-F969 6578 # \xF96A CJK COMPATIBILITY IDEOGRAPH-F96A 7D22 # \xF96B CJK COMPATIBILITY IDEOGRAPH-F96B 53C3 # \xF96C CJK COMPATIBILITY IDEOGRAPH-F96C 585E # \xF96D CJK COMPATIBILITY IDEOGRAPH-F96D 7701 # \xF96E CJK COMPATIBILITY IDEOGRAPH-F96E 8449 # \xF96F CJK COMPATIBILITY IDEOGRAPH-F96F 8AAA # \xF970 CJK COMPATIBILITY IDEOGRAPH-F970 6BBA # \xF971 CJK COMPATIBILITY IDEOGRAPH-F971 8FB0 # \xF972 CJK COMPATIBILITY IDEOGRAPH-F972 6C88 # \xF973 CJK COMPATIBILITY IDEOGRAPH-F973 62FE # \xF974 CJK COMPATIBILITY IDEOGRAPH-F974 82E5 # \xF975 CJK COMPATIBILITY IDEOGRAPH-F975 63A0 # \xF976 CJK COMPATIBILITY IDEOGRAPH-F976 7565 # \xF977 CJK COMPATIBILITY IDEOGRAPH-F977 4EAE # \xF978 CJK COMPATIBILITY IDEOGRAPH-F978 5169 # \xF979 CJK COMPATIBILITY IDEOGRAPH-F979 51C9 # \xF97A CJK COMPATIBILITY IDEOGRAPH-F97A 6881 # \xF97B CJK COMPATIBILITY IDEOGRAPH-F97B 7CE7 # \xF97C CJK COMPATIBILITY IDEOGRAPH-F97C 826F # \xF97D CJK COMPATIBILITY IDEOGRAPH-F97D 8AD2 # \xF97E CJK COMPATIBILITY IDEOGRAPH-F97E 91CF # \xF97F CJK COMPATIBILITY IDEOGRAPH-F97F 52F5 # \xF980 CJK COMPATIBILITY IDEOGRAPH-F980 5442 # \xF981 CJK COMPATIBILITY IDEOGRAPH-F981 5973 # \xF982 CJK COMPATIBILITY IDEOGRAPH-F982 5EEC # \xF983 CJK COMPATIBILITY IDEOGRAPH-F983 65C5 # \xF984 CJK COMPATIBILITY IDEOGRAPH-F984 6FFE # \xF985 CJK COMPATIBILITY IDEOGRAPH-F985 792A # \xF986 CJK COMPATIBILITY IDEOGRAPH-F986 95AD # \xF987 CJK COMPATIBILITY IDEOGRAPH-F987 9A6A # \xF988 CJK COMPATIBILITY IDEOGRAPH-F988 9E97 # \xF989 CJK COMPATIBILITY IDEOGRAPH-F989 9ECE # \xF98A CJK COMPATIBILITY IDEOGRAPH-F98A 529B # \xF98B CJK COMPATIBILITY IDEOGRAPH-F98B 66C6 # \xF98C CJK COMPATIBILITY IDEOGRAPH-F98C 6B77 # \xF98D CJK COMPATIBILITY IDEOGRAPH-F98D 8F62 # \xF98E CJK COMPATIBILITY IDEOGRAPH-F98E 5E74 # \xF98F CJK COMPATIBILITY IDEOGRAPH-F98F 6190 # \xF990 CJK COMPATIBILITY IDEOGRAPH-F990 6200 # \xF991 CJK COMPATIBILITY IDEOGRAPH-F991 649A # \xF992 CJK COMPATIBILITY IDEOGRAPH-F992 6F23 # \xF993 CJK COMPATIBILITY IDEOGRAPH-F993 7149 # \xF994 CJK COMPATIBILITY IDEOGRAPH-F994 7489 # \xF995 CJK COMPATIBILITY IDEOGRAPH-F995 79CA # \xF996 CJK COMPATIBILITY IDEOGRAPH-F996 7DF4 # \xF997 CJK COMPATIBILITY IDEOGRAPH-F997 806F # \xF998 CJK COMPATIBILITY IDEOGRAPH-F998 8F26 # \xF999 CJK COMPATIBILITY IDEOGRAPH-F999 84EE # \xF99A CJK COMPATIBILITY IDEOGRAPH-F99A 9023 # \xF99B CJK COMPATIBILITY IDEOGRAPH-F99B 934A # \xF99C CJK COMPATIBILITY IDEOGRAPH-F99C 5217 # \xF99D CJK COMPATIBILITY IDEOGRAPH-F99D 52A3 # \xF99E CJK COMPATIBILITY IDEOGRAPH-F99E 54BD # \xF99F CJK COMPATIBILITY IDEOGRAPH-F99F 70C8 # \xF9A0 CJK COMPATIBILITY IDEOGRAPH-F9A0 88C2 # \xF9A1 CJK COMPATIBILITY IDEOGRAPH-F9A1 8AAA # \xF9A2 CJK COMPATIBILITY IDEOGRAPH-F9A2 5EC9 # \xF9A3 CJK COMPATIBILITY IDEOGRAPH-F9A3 5FF5 # \xF9A4 CJK COMPATIBILITY IDEOGRAPH-F9A4 637B # \xF9A5 CJK COMPATIBILITY IDEOGRAPH-F9A5 6BAE # \xF9A6 CJK COMPATIBILITY IDEOGRAPH-F9A6 7C3E # \xF9A7 CJK COMPATIBILITY IDEOGRAPH-F9A7 7375 # \xF9A8 CJK COMPATIBILITY IDEOGRAPH-F9A8 4EE4 # \xF9A9 CJK COMPATIBILITY IDEOGRAPH-F9A9 56F9 # \xF9AA CJK COMPATIBILITY IDEOGRAPH-F9AA 5BE7 # \xF9AB CJK COMPATIBILITY IDEOGRAPH-F9AB 5DBA # \xF9AC CJK COMPATIBILITY IDEOGRAPH-F9AC 601C # \xF9AD CJK COMPATIBILITY IDEOGRAPH-F9AD 73B2 # \xF9AE CJK COMPATIBILITY IDEOGRAPH-F9AE 7469 # \xF9AF CJK COMPATIBILITY IDEOGRAPH-F9AF 7F9A # \xF9B0 CJK COMPATIBILITY IDEOGRAPH-F9B0 8046 # \xF9B1 CJK COMPATIBILITY IDEOGRAPH-F9B1 9234 # \xF9B2 CJK COMPATIBILITY IDEOGRAPH-F9B2 96F6 # \xF9B3 CJK COMPATIBILITY IDEOGRAPH-F9B3 9748 # \xF9B4 CJK COMPATIBILITY IDEOGRAPH-F9B4 9818 # \xF9B5 CJK COMPATIBILITY IDEOGRAPH-F9B5 4F8B # \xF9B6 CJK COMPATIBILITY IDEOGRAPH-F9B6 79AE # \xF9B7 CJK COMPATIBILITY IDEOGRAPH-F9B7 91B4 # \xF9B8 CJK COMPATIBILITY IDEOGRAPH-F9B8 96B8 # \xF9B9 CJK COMPATIBILITY IDEOGRAPH-F9B9 60E1 # \xF9BA CJK COMPATIBILITY IDEOGRAPH-F9BA 4E86 # \xF9BB CJK COMPATIBILITY IDEOGRAPH-F9BB 50DA # \xF9BC CJK COMPATIBILITY IDEOGRAPH-F9BC 5BEE # \xF9BD CJK COMPATIBILITY IDEOGRAPH-F9BD 5C3F # \xF9BE CJK COMPATIBILITY IDEOGRAPH-F9BE 6599 # \xF9BF CJK COMPATIBILITY IDEOGRAPH-F9BF 6A02 # \xF9C0 CJK COMPATIBILITY IDEOGRAPH-F9C0 71CE # \xF9C1 CJK COMPATIBILITY IDEOGRAPH-F9C1 7642 # \xF9C2 CJK COMPATIBILITY IDEOGRAPH-F9C2 84FC # \xF9C3 CJK COMPATIBILITY IDEOGRAPH-F9C3 907C # \xF9C4 CJK COMPATIBILITY IDEOGRAPH-F9C4 9F8D # \xF9C5 CJK COMPATIBILITY IDEOGRAPH-F9C5 6688 # \xF9C6 CJK COMPATIBILITY IDEOGRAPH-F9C6 962E # \xF9C7 CJK COMPATIBILITY IDEOGRAPH-F9C7 5289 # \xF9C8 CJK COMPATIBILITY IDEOGRAPH-F9C8 677B # \xF9C9 CJK COMPATIBILITY IDEOGRAPH-F9C9 67F3 # \xF9CA CJK COMPATIBILITY IDEOGRAPH-F9CA 6D41 # \xF9CB CJK COMPATIBILITY IDEOGRAPH-F9CB 6E9C # \xF9CC CJK COMPATIBILITY IDEOGRAPH-F9CC 7409 # \xF9CD CJK COMPATIBILITY IDEOGRAPH-F9CD 7559 # \xF9CE CJK COMPATIBILITY IDEOGRAPH-F9CE 786B # \xF9CF CJK COMPATIBILITY IDEOGRAPH-F9CF 7D10 # \xF9D0 CJK COMPATIBILITY IDEOGRAPH-F9D0 985E # \xF9D1 CJK COMPATIBILITY IDEOGRAPH-F9D1 516D # \xF9D2 CJK COMPATIBILITY IDEOGRAPH-F9D2 622E # \xF9D3 CJK COMPATIBILITY IDEOGRAPH-F9D3 9678 # \xF9D4 CJK COMPATIBILITY IDEOGRAPH-F9D4 502B # \xF9D5 CJK COMPATIBILITY IDEOGRAPH-F9D5 5D19 # \xF9D6 CJK COMPATIBILITY IDEOGRAPH-F9D6 6DEA # \xF9D7 CJK COMPATIBILITY IDEOGRAPH-F9D7 8F2A # \xF9D8 CJK COMPATIBILITY IDEOGRAPH-F9D8 5F8B # \xF9D9 CJK COMPATIBILITY IDEOGRAPH-F9D9 6144 # \xF9DA CJK COMPATIBILITY IDEOGRAPH-F9DA 6817 # \xF9DB CJK COMPATIBILITY IDEOGRAPH-F9DB 7387 # \xF9DC CJK COMPATIBILITY IDEOGRAPH-F9DC 9686 # \xF9DD CJK COMPATIBILITY IDEOGRAPH-F9DD 5229 # \xF9DE CJK COMPATIBILITY IDEOGRAPH-F9DE 540F # \xF9DF CJK COMPATIBILITY IDEOGRAPH-F9DF 5C65 # \xF9E0 CJK COMPATIBILITY IDEOGRAPH-F9E0 6613 # \xF9E1 CJK COMPATIBILITY IDEOGRAPH-F9E1 674E # \xF9E2 CJK COMPATIBILITY IDEOGRAPH-F9E2 68A8 # \xF9E3 CJK COMPATIBILITY IDEOGRAPH-F9E3 6CE5 # \xF9E4 CJK COMPATIBILITY IDEOGRAPH-F9E4 7406 # \xF9E5 CJK COMPATIBILITY IDEOGRAPH-F9E5 75E2 # \xF9E6 CJK COMPATIBILITY IDEOGRAPH-F9E6 7F79 # \xF9E7 CJK COMPATIBILITY IDEOGRAPH-F9E7 88CF # \xF9E8 CJK COMPATIBILITY IDEOGRAPH-F9E8 88E1 # \xF9E9 CJK COMPATIBILITY IDEOGRAPH-F9E9 91CC # \xF9EA CJK COMPATIBILITY IDEOGRAPH-F9EA 96E2 # \xF9EB CJK COMPATIBILITY IDEOGRAPH-F9EB 533F # \xF9EC CJK COMPATIBILITY IDEOGRAPH-F9EC 6EBA # \xF9ED CJK COMPATIBILITY IDEOGRAPH-F9ED 541D # \xF9EE CJK COMPATIBILITY IDEOGRAPH-F9EE 71D0 # \xF9EF CJK COMPATIBILITY IDEOGRAPH-F9EF 7498 # \xF9F0 CJK COMPATIBILITY IDEOGRAPH-F9F0 85FA # \xF9F1 CJK COMPATIBILITY IDEOGRAPH-F9F1 96A3 # \xF9F2 CJK COMPATIBILITY IDEOGRAPH-F9F2 9C57 # \xF9F3 CJK COMPATIBILITY IDEOGRAPH-F9F3 9E9F # \xF9F4 CJK COMPATIBILITY IDEOGRAPH-F9F4 6797 # \xF9F5 CJK COMPATIBILITY IDEOGRAPH-F9F5 6DCB # \xF9F6 CJK COMPATIBILITY IDEOGRAPH-F9F6 81E8 # \xF9F7 CJK COMPATIBILITY IDEOGRAPH-F9F7 7ACB # \xF9F8 CJK COMPATIBILITY IDEOGRAPH-F9F8 7B20 # \xF9F9 CJK COMPATIBILITY IDEOGRAPH-F9F9 7C92 # \xF9FA CJK COMPATIBILITY IDEOGRAPH-F9FA 72C0 # \xF9FB CJK COMPATIBILITY IDEOGRAPH-F9FB 7099 # \xF9FC CJK COMPATIBILITY IDEOGRAPH-F9FC 8B58 # \xF9FD CJK COMPATIBILITY IDEOGRAPH-F9FD 4EC0 # \xF9FE CJK COMPATIBILITY IDEOGRAPH-F9FE 8336 # \xF9FF CJK COMPATIBILITY IDEOGRAPH-F9FF 523A # \xFA00 CJK COMPATIBILITY IDEOGRAPH-FA00 5207 # \xFA01 CJK COMPATIBILITY IDEOGRAPH-FA01 5EA6 # \xFA02 CJK COMPATIBILITY IDEOGRAPH-FA02 62D3 # \xFA03 CJK COMPATIBILITY IDEOGRAPH-FA03 7CD6 # \xFA04 CJK COMPATIBILITY IDEOGRAPH-FA04 5B85 # \xFA05 CJK COMPATIBILITY IDEOGRAPH-FA05 6D1E # \xFA06 CJK COMPATIBILITY IDEOGRAPH-FA06 66B4 # \xFA07 CJK COMPATIBILITY IDEOGRAPH-FA07 8F3B # \xFA08 CJK COMPATIBILITY IDEOGRAPH-FA08 884C # \xFA09 CJK COMPATIBILITY IDEOGRAPH-FA09 964D # \xFA0A CJK COMPATIBILITY IDEOGRAPH-FA0A 898B # \xFA0B CJK COMPATIBILITY IDEOGRAPH-FA0B 5ED3 # \xFA0C CJK COMPATIBILITY IDEOGRAPH-FA0C 5140 # \xFA0D CJK COMPATIBILITY IDEOGRAPH-FA0D 55C0 # \xFA0E CJK COMPATIBILITY IDEOGRAPH-FA0E # \xFA0F CJK COMPATIBILITY IDEOGRAPH-FA0F # \xFA10 CJK COMPATIBILITY IDEOGRAPH-FA10 585A # \xFA11 CJK COMPATIBILITY IDEOGRAPH-FA11 # \xFA12 CJK COMPATIBILITY IDEOGRAPH-FA12 6674 # \xFA13 CJK COMPATIBILITY IDEOGRAPH-FA13 # \xFA14 CJK COMPATIBILITY IDEOGRAPH-FA14 # \xFA15 CJK COMPATIBILITY IDEOGRAPH-FA15 51DE # \xFA16 CJK COMPATIBILITY IDEOGRAPH-FA16 732A # \xFA17 CJK COMPATIBILITY IDEOGRAPH-FA17 76CA # \xFA18 CJK COMPATIBILITY IDEOGRAPH-FA18 793C # \xFA19 CJK COMPATIBILITY IDEOGRAPH-FA19 795E # \xFA1A CJK COMPATIBILITY IDEOGRAPH-FA1A 7965 # \xFA1B CJK COMPATIBILITY IDEOGRAPH-FA1B 798F # \xFA1C CJK COMPATIBILITY IDEOGRAPH-FA1C 9756 # \xFA1D CJK COMPATIBILITY IDEOGRAPH-FA1D 7CBE # \xFA1E CJK COMPATIBILITY IDEOGRAPH-FA1E 7FBD # \xFA1F CJK COMPATIBILITY IDEOGRAPH-FA1F * # \xFA20 CJK COMPATIBILITY IDEOGRAPH-FA20 8612 # \xFA21 CJK COMPATIBILITY IDEOGRAPH-FA21 # \xFA22 CJK COMPATIBILITY IDEOGRAPH-FA22 8AF8 # \xFA23 CJK COMPATIBILITY IDEOGRAPH-FA23 * # \xFA24 CJK COMPATIBILITY IDEOGRAPH-FA24 # \xFA25 CJK COMPATIBILITY IDEOGRAPH-FA25 9038 # \xFA26 CJK COMPATIBILITY IDEOGRAPH-FA26 90FD # \xFA27 CJK COMPATIBILITY IDEOGRAPH-FA27 # \xFA28 CJK COMPATIBILITY IDEOGRAPH-FA28 # \xFA29 CJK COMPATIBILITY IDEOGRAPH-FA29 # \xFA2A CJK COMPATIBILITY IDEOGRAPH-FA2A 98EF # \xFA2B CJK COMPATIBILITY IDEOGRAPH-FA2B 98FC # \xFA2C CJK COMPATIBILITY IDEOGRAPH-FA2C 9928 # \xFA2D CJK COMPATIBILITY IDEOGRAPH-FA2D 9DB4 # \xFA30 CJK COMPATIBILITY IDEOGRAPH-FA30 4FAE # \xFA31 CJK COMPATIBILITY IDEOGRAPH-FA31 50E7 # \xFA32 CJK COMPATIBILITY IDEOGRAPH-FA32 514D # \xFA33 CJK COMPATIBILITY IDEOGRAPH-FA33 52C9 # \xFA34 CJK COMPATIBILITY IDEOGRAPH-FA34 52E4 # \xFA35 CJK COMPATIBILITY IDEOGRAPH-FA35 5351 # \xFA36 CJK COMPATIBILITY IDEOGRAPH-FA36 559D # \xFA37 CJK COMPATIBILITY IDEOGRAPH-FA37 5606 # \xFA38 CJK COMPATIBILITY IDEOGRAPH-FA38 5668 # \xFA39 CJK COMPATIBILITY IDEOGRAPH-FA39 5840 # \xFA3A CJK COMPATIBILITY IDEOGRAPH-FA3A 58A8 # \xFA3B CJK COMPATIBILITY IDEOGRAPH-FA3B 5C64 # \xFA3C CJK COMPATIBILITY IDEOGRAPH-FA3C 5C6E # \xFA3D CJK COMPATIBILITY IDEOGRAPH-FA3D 6094 # \xFA3E CJK COMPATIBILITY IDEOGRAPH-FA3E 6168 # \xFA3F CJK COMPATIBILITY IDEOGRAPH-FA3F 618E # \xFA40 CJK COMPATIBILITY IDEOGRAPH-FA40 61F2 # \xFA41 CJK COMPATIBILITY IDEOGRAPH-FA41 654F # \xFA42 CJK COMPATIBILITY IDEOGRAPH-FA42 65E2 # \xFA43 CJK COMPATIBILITY IDEOGRAPH-FA43 6691 # \xFA44 CJK COMPATIBILITY IDEOGRAPH-FA44 6885 # \xFA45 CJK COMPATIBILITY IDEOGRAPH-FA45 6D77 # \xFA46 CJK COMPATIBILITY IDEOGRAPH-FA46 6E1A # \xFA47 CJK COMPATIBILITY IDEOGRAPH-FA47 6F22 # \xFA48 CJK COMPATIBILITY IDEOGRAPH-FA48 716E # \xFA49 CJK COMPATIBILITY IDEOGRAPH-FA49 722B # \xFA4A CJK COMPATIBILITY IDEOGRAPH-FA4A 7422 # \xFA4B CJK COMPATIBILITY IDEOGRAPH-FA4B 7891 # \xFA4C CJK COMPATIBILITY IDEOGRAPH-FA4C 793E # \xFA4D CJK COMPATIBILITY IDEOGRAPH-FA4D 7949 # \xFA4E CJK COMPATIBILITY IDEOGRAPH-FA4E 7948 # \xFA4F CJK COMPATIBILITY IDEOGRAPH-FA4F 7950 # \xFA50 CJK COMPATIBILITY IDEOGRAPH-FA50 7956 # \xFA51 CJK COMPATIBILITY IDEOGRAPH-FA51 795D # \xFA52 CJK COMPATIBILITY IDEOGRAPH-FA52 798D # \xFA53 CJK COMPATIBILITY IDEOGRAPH-FA53 798E # \xFA54 CJK COMPATIBILITY IDEOGRAPH-FA54 7A40 # \xFA55 CJK COMPATIBILITY IDEOGRAPH-FA55 7A81 # \xFA56 CJK COMPATIBILITY IDEOGRAPH-FA56 7BC0 # \xFA57 CJK COMPATIBILITY IDEOGRAPH-FA57 7DF4 # \xFA58 CJK COMPATIBILITY IDEOGRAPH-FA58 7E09 # \xFA59 CJK COMPATIBILITY IDEOGRAPH-FA59 7E41 # \xFA5A CJK COMPATIBILITY IDEOGRAPH-FA5A 7F72 # \xFA5B CJK COMPATIBILITY IDEOGRAPH-FA5B 8005 # \xFA5C CJK COMPATIBILITY IDEOGRAPH-FA5C 81ED # \xFA5D CJK COMPATIBILITY IDEOGRAPH-FA5D 8279 # \xFA5E CJK COMPATIBILITY IDEOGRAPH-FA5E 8279 # \xFA5F CJK COMPATIBILITY IDEOGRAPH-FA5F 8457 # \xFA60 CJK COMPATIBILITY IDEOGRAPH-FA60 8910 # \xFA61 CJK COMPATIBILITY IDEOGRAPH-FA61 8996 # \xFA62 CJK COMPATIBILITY IDEOGRAPH-FA62 8B01 # \xFA63 CJK COMPATIBILITY IDEOGRAPH-FA63 8B39 # \xFA64 CJK COMPATIBILITY IDEOGRAPH-FA64 8CD3 # \xFA65 CJK COMPATIBILITY IDEOGRAPH-FA65 8D08 # \xFA66 CJK COMPATIBILITY IDEOGRAPH-FA66 8FB6 # \xFA67 CJK COMPATIBILITY IDEOGRAPH-FA67 9038 # \xFA68 CJK COMPATIBILITY IDEOGRAPH-FA68 96E3 # \xFA69 CJK COMPATIBILITY IDEOGRAPH-FA69 97FF # \xFA6A CJK COMPATIBILITY IDEOGRAPH-FA6A 983B # \xFB00 LATIN SMALL LIGATURE FF 0066 0066 # \xFB01 LATIN SMALL LIGATURE FI 0066 0069 # \xFB02 LATIN SMALL LIGATURE FL 0066 006C # \xFB03 LATIN SMALL LIGATURE FFI 0066 0066 0069 # \xFB04 LATIN SMALL LIGATURE FFL 0066 0066 006C # \xFB05 LATIN SMALL LIGATURE LONG S T 017F 0074 # \xFB06 LATIN SMALL LIGATURE ST 0073 0074 # \xFB13 ARMENIAN SMALL LIGATURE MEN NOW 0574 0576 # \xFB14 ARMENIAN SMALL LIGATURE MEN ECH 0574 0565 # \xFB15 ARMENIAN SMALL LIGATURE MEN INI 0574 056B # \xFB16 ARMENIAN SMALL LIGATURE VEW NOW 057E 0576 # \xFB17 ARMENIAN SMALL LIGATURE MEN XEH 0574 056D # \xFB1D HEBREW LETTER YOD WITH HIRIQ 05D9 05B4 # \xFB1E HEBREW POINT JUDEO-SPANISH VARIKA 26 HEBREW POINT VARIKA # \xFB1F HEBREW LIGATURE YIDDISH YOD YOD PATAH 05F2 05B7 # \xFB20 HEBREW LETTER ALTERNATIVE AYIN 05E2 # \xFB21 HEBREW LETTER WIDE ALEF 05D0 # \xFB22 HEBREW LETTER WIDE DALET 05D3 # \xFB23 HEBREW LETTER WIDE HE 05D4 # \xFB24 HEBREW LETTER WIDE KAF 05DB # \xFB25 HEBREW LETTER WIDE LAMED 05DC # \xFB26 HEBREW LETTER WIDE FINAL MEM 05DD # \xFB27 HEBREW LETTER WIDE RESH 05E8 # \xFB28 HEBREW LETTER WIDE TAV 05EA # \xFB29 HEBREW LETTER ALTERNATIVE PLUS SIGN 002B # \xFB2A HEBREW LETTER SHIN WITH SHIN DOT 05E9 05C1 # \xFB2B HEBREW LETTER SHIN WITH SIN DOT 05E9 05C2 # \xFB2C HEBREW LETTER SHIN WITH DAGESH AND SHIN DOT FB49 05C1 # \xFB2D HEBREW LETTER SHIN WITH DAGESH AND SIN DOT FB49 05C2 # \xFB2E HEBREW LETTER ALEF WITH PATAH 05D0 05B7 # \xFB2F HEBREW LETTER ALEF WITH QAMATS 05D0 05B8 # \xFB30 HEBREW LETTER ALEF WITH MAPIQ 05D0 05BC # \xFB31 HEBREW LETTER BET WITH DAGESH 05D1 05BC # \xFB32 HEBREW LETTER GIMEL WITH DAGESH 05D2 05BC # \xFB33 HEBREW LETTER DALET WITH DAGESH 05D3 05BC # \xFB34 HEBREW LETTER HE WITH MAPIQ 05D4 05BC # \xFB35 HEBREW LETTER VAV WITH DAGESH 05D5 05BC # \xFB36 HEBREW LETTER ZAYIN WITH DAGESH 05D6 05BC # \xFB38 HEBREW LETTER TET WITH DAGESH 05D8 05BC # \xFB39 HEBREW LETTER YOD WITH DAGESH 05D9 05BC # \xFB3A HEBREW LETTER FINAL KAF WITH DAGESH 05DA 05BC # \xFB3B HEBREW LETTER KAF WITH DAGESH 05DB 05BC # \xFB3C HEBREW LETTER LAMED WITH DAGESH 05DC 05BC # \xFB3E HEBREW LETTER MEM WITH DAGESH 05DE 05BC # \xFB40 HEBREW LETTER NUN WITH DAGESH 05E0 05BC # \xFB41 HEBREW LETTER SAMEKH WITH DAGESH 05E1 05BC # \xFB43 HEBREW LETTER FINAL PE WITH DAGESH 05E3 05BC # \xFB44 HEBREW LETTER PE WITH DAGESH 05E4 05BC # \xFB46 HEBREW LETTER TSADI WITH DAGESH 05E6 05BC # \xFB47 HEBREW LETTER QOF WITH DAGESH 05E7 05BC # \xFB48 HEBREW LETTER RESH WITH DAGESH 05E8 05BC # \xFB49 HEBREW LETTER SHIN WITH DAGESH 05E9 05BC # \xFB4A HEBREW LETTER TAV WITH DAGESH 05EA 05BC # \xFB4B HEBREW LETTER VAV WITH HOLAM 05D5 05B9 # \xFB4C HEBREW LETTER BET WITH RAFE 05D1 05BF # \xFB4D HEBREW LETTER KAF WITH RAFE 05DB 05BF # \xFB4E HEBREW LETTER PE WITH RAFE 05E4 05BF # \xFB4F HEBREW LIGATURE ALEF LAMED 05D0 05DC # \xFB50 ARABIC LETTER ALEF WASLA ISOLATED FORM AL 0671 # \xFB51 ARABIC LETTER ALEF WASLA FINAL FORM AL 0671 # \xFB52 ARABIC LETTER BEEH ISOLATED FORM AL 067B # \xFB53 ARABIC LETTER BEEH FINAL FORM AL 067B # \xFB54 ARABIC LETTER BEEH INITIAL FORM AL 067B # \xFB55 ARABIC LETTER BEEH MEDIAL FORM AL 067B # \xFB56 ARABIC LETTER PEH ISOLATED FORM AL 067E # \xFB57 ARABIC LETTER PEH FINAL FORM AL 067E # \xFB58 ARABIC LETTER PEH INITIAL FORM AL 067E # \xFB59 ARABIC LETTER PEH MEDIAL FORM AL 067E # \xFB5A ARABIC LETTER BEHEH ISOLATED FORM AL 0680 # \xFB5B ARABIC LETTER BEHEH FINAL FORM AL 0680 # \xFB5C ARABIC LETTER BEHEH INITIAL FORM AL 0680 # \xFB5D ARABIC LETTER BEHEH MEDIAL FORM AL 0680 # \xFB5E ARABIC LETTER TTEHEH ISOLATED FORM AL 067A # \xFB5F ARABIC LETTER TTEHEH FINAL FORM AL 067A # \xFB60 ARABIC LETTER TTEHEH INITIAL FORM AL 067A # \xFB61 ARABIC LETTER TTEHEH MEDIAL FORM AL 067A # \xFB62 ARABIC LETTER TEHEH ISOLATED FORM AL 067F # \xFB63 ARABIC LETTER TEHEH FINAL FORM AL 067F # \xFB64 ARABIC LETTER TEHEH INITIAL FORM AL 067F # \xFB65 ARABIC LETTER TEHEH MEDIAL FORM AL 067F # \xFB66 ARABIC LETTER TTEH ISOLATED FORM AL 0679 # \xFB67 ARABIC LETTER TTEH FINAL FORM AL 0679 # \xFB68 ARABIC LETTER TTEH INITIAL FORM AL 0679 # \xFB69 ARABIC LETTER TTEH MEDIAL FORM AL 0679 # \xFB6A ARABIC LETTER VEH ISOLATED FORM AL 06A4 # \xFB6B ARABIC LETTER VEH FINAL FORM AL 06A4 # \xFB6C ARABIC LETTER VEH INITIAL FORM AL 06A4 # \xFB6D ARABIC LETTER VEH MEDIAL FORM AL 06A4 # \xFB6E ARABIC LETTER PEHEH ISOLATED FORM AL 06A6 # \xFB6F ARABIC LETTER PEHEH FINAL FORM AL 06A6 # \xFB70 ARABIC LETTER PEHEH INITIAL FORM AL 06A6 # \xFB71 ARABIC LETTER PEHEH MEDIAL FORM AL 06A6 # \xFB72 ARABIC LETTER DYEH ISOLATED FORM AL 0684 # \xFB73 ARABIC LETTER DYEH FINAL FORM AL 0684 # \xFB74 ARABIC LETTER DYEH INITIAL FORM AL 0684 # \xFB75 ARABIC LETTER DYEH MEDIAL FORM AL 0684 # \xFB76 ARABIC LETTER NYEH ISOLATED FORM AL 0683 # \xFB77 ARABIC LETTER NYEH FINAL FORM AL 0683 # \xFB78 ARABIC LETTER NYEH INITIAL FORM AL 0683 # \xFB79 ARABIC LETTER NYEH MEDIAL FORM AL 0683 # \xFB7A ARABIC LETTER TCHEH ISOLATED FORM AL 0686 # \xFB7B ARABIC LETTER TCHEH FINAL FORM AL 0686 # \xFB7C ARABIC LETTER TCHEH INITIAL FORM AL 0686 # \xFB7D ARABIC LETTER TCHEH MEDIAL FORM AL 0686 # \xFB7E ARABIC LETTER TCHEHEH ISOLATED FORM AL 0687 # \xFB7F ARABIC LETTER TCHEHEH FINAL FORM AL 0687 # \xFB80 ARABIC LETTER TCHEHEH INITIAL FORM AL 0687 # \xFB81 ARABIC LETTER TCHEHEH MEDIAL FORM AL 0687 # \xFB82 ARABIC LETTER DDAHAL ISOLATED FORM AL 068D # \xFB83 ARABIC LETTER DDAHAL FINAL FORM AL 068D # \xFB84 ARABIC LETTER DAHAL ISOLATED FORM AL 068C # \xFB85 ARABIC LETTER DAHAL FINAL FORM AL 068C # \xFB86 ARABIC LETTER DUL ISOLATED FORM AL 068E # \xFB87 ARABIC LETTER DUL FINAL FORM AL 068E # \xFB88 ARABIC LETTER DDAL ISOLATED FORM AL 0688 # \xFB89 ARABIC LETTER DDAL FINAL FORM AL 0688 # \xFB8A ARABIC LETTER JEH ISOLATED FORM AL 0698 # \xFB8B ARABIC LETTER JEH FINAL FORM AL 0698 # \xFB8C ARABIC LETTER RREH ISOLATED FORM AL 0691 # \xFB8D ARABIC LETTER RREH FINAL FORM AL 0691 # \xFB8E ARABIC LETTER KEHEH ISOLATED FORM AL 06A9 # \xFB8F ARABIC LETTER KEHEH FINAL FORM AL 06A9 # \xFB90 ARABIC LETTER KEHEH INITIAL FORM AL 06A9 # \xFB91 ARABIC LETTER KEHEH MEDIAL FORM AL 06A9 # \xFB92 ARABIC LETTER GAF ISOLATED FORM AL 06AF # \xFB93 ARABIC LETTER GAF FINAL FORM AL 06AF # \xFB94 ARABIC LETTER GAF INITIAL FORM AL 06AF # \xFB95 ARABIC LETTER GAF MEDIAL FORM AL 06AF # \xFB96 ARABIC LETTER GUEH ISOLATED FORM AL 06B3 # \xFB97 ARABIC LETTER GUEH FINAL FORM AL 06B3 # \xFB98 ARABIC LETTER GUEH INITIAL FORM AL 06B3 # \xFB99 ARABIC LETTER GUEH MEDIAL FORM AL 06B3 # \xFB9A ARABIC LETTER NGOEH ISOLATED FORM AL 06B1 # \xFB9B ARABIC LETTER NGOEH FINAL FORM AL 06B1 # \xFB9C ARABIC LETTER NGOEH INITIAL FORM AL 06B1 # \xFB9D ARABIC LETTER NGOEH MEDIAL FORM AL 06B1 # \xFB9E ARABIC LETTER NOON GHUNNA ISOLATED FORM AL 06BA # \xFB9F ARABIC LETTER NOON GHUNNA FINAL FORM AL 06BA # \xFBA0 ARABIC LETTER RNOON ISOLATED FORM AL 06BB # \xFBA1 ARABIC LETTER RNOON FINAL FORM AL 06BB # \xFBA2 ARABIC LETTER RNOON INITIAL FORM AL 06BB # \xFBA3 ARABIC LETTER RNOON MEDIAL FORM AL 06BB # \xFBA4 ARABIC LETTER HEH WITH YEH ABOVE ISOLATED FORM AL 06C0 # \xN # \xFBA5 ARABIC LETTER HEH WITH YEH ABOVE FINAL FORM AL 06C0 # \xFBA6 ARABIC LETTER HEH GOAL ISOLATED FORM AL 06C1 # \xFBA7 ARABIC LETTER HEH GOAL FINAL FORM AL 06C1 # \xFBA8 ARABIC LETTER HEH GOAL INITIAL FORM AL 06C1 # \xFBA9 ARABIC LETTER HEH GOAL MEDIAL FORM AL 06C1 # \xFBAA ARABIC LETTER HEH DOACHASHMEE ISOLATED FORM AL 06BE # \x # \xFBAB ARABIC LETTER HEH DOACHASHMEE FINAL FORM AL 06BE # \xFBAC ARABIC LETTER HEH DOACHASHMEE INITIAL FORM AL 06BE # \x # \xFBAD ARABIC LETTER HEH DOACHASHMEE MEDIAL FORM AL 06BE # \xFBAE ARABIC LETTER YEH BARREE ISOLATED FORM AL 06D2 # \xFBAF ARABIC LETTER YEH BARREE FINAL FORM AL 06D2 # \xFBB0 ARABIC LETTER YEH BARREE WITH HAMZA ABOVE ISOLATED FORM AL # \x 06D3 # \xFBB1 ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM AL 06D3 # \x # \xFBD3 ARABIC LETTER NG ISOLATED FORM AL 06AD # \xFBD4 ARABIC LETTER NG FINAL FORM AL 06AD # \xFBD5 ARABIC LETTER NG INITIAL FORM AL 06AD # \xFBD6 ARABIC LETTER NG MEDIAL FORM AL 06AD # \xFBD7 ARABIC LETTER U ISOLATED FORM AL 06C7 # \xFBD8 ARABIC LETTER U FINAL FORM AL 06C7 # \xFBD9 ARABIC LETTER OE ISOLATED FORM AL 06C6 # \xFBDA ARABIC LETTER OE FINAL FORM AL 06C6 # \xFBDB ARABIC LETTER YU ISOLATED FORM AL 06C8 # \xFBDC ARABIC LETTER YU FINAL FORM AL 06C8 # \xFBDD ARABIC LETTER U WITH HAMZA ABOVE ISOLATED FORM AL 0677 # \xN # \xFBDE ARABIC LETTER VE ISOLATED FORM AL 06CB # \xFBDF ARABIC LETTER VE FINAL FORM AL 06CB # \xFBE0 ARABIC LETTER KIRGHIZ OE ISOLATED FORM AL 06C5 # \xFBE1 ARABIC LETTER KIRGHIZ OE FINAL FORM AL 06C5 # \xFBE2 ARABIC LETTER KIRGHIZ YU ISOLATED FORM AL 06C9 # \xFBE3 ARABIC LETTER KIRGHIZ YU FINAL FORM AL 06C9 # \xFBE4 ARABIC LETTER E ISOLATED FORM AL 06D0 # \xFBE5 ARABIC LETTER E FINAL FORM AL 06D0 # \xFBE6 ARABIC LETTER E INITIAL FORM AL 06D0 # \xFBE7 ARABIC LETTER E MEDIAL FORM AL 06D0 # \xFBE8 ARABIC LETTER UIGHUR KAZAKH KIRGHIZ ALEF MAKSURA INITIAL FORM AL 0649 # \xFBE9 ARABIC LETTER UIGHUR KAZAKH KIRGHIZ ALEF MAKSURA MEDIAL FORM AL 0649 # \xFBEA ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF ISOLATED FORM AL 0626 0627 # \xFBEB ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF FINAL FORM AL # \x0626 0627 # \xFBEC ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH AE ISOLATED FORM AL 0626 06D5 # \xFBED ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH AE FINAL FORM AL 06 # \x26 06D5 # \xFBEE ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH WAW ISOLATED FORM AL 0626 0648 # \xFBEF ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH WAW FINAL FORM AL 0 # \x626 0648 # \xFBF0 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH U ISOLATED FORM AL 0626 06C7 # \xFBF1 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH U FINAL FORM AL 062 # \x6 06C7 # \xFBF2 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH OE ISOLATED FORM AL 0626 06C6 # \xFBF3 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH OE FINAL FORM AL 06 # \x26 06C6 # \xFBF4 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YU ISOLATED FORM AL 0626 06C8 # \xFBF5 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YU FINAL FORM AL 06 # \x26 06C8 # \xFBF6 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH E ISOLATED FORM AL 0626 06D0 # \xFBF7 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH E FINAL FORM AL 062 # \x6 06D0 # \xFBF8 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH E INITIAL FORM AL # \x 0626 06D0 # \xFBF9 ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA ISOL # \xATED FORM AL 0626 0649 # \xFBFA ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA FINA # \xL FORM AL 0626 0649 # \xFBFB ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA INIT # \xIAL FORM AL 0626 0649 # \xFBFC ARABIC LETTER FARSI YEH ISOLATED FORM AL 06CC # \xFBFD ARABIC LETTER FARSI YEH FINAL FORM AL 06CC # \xFBFE ARABIC LETTER FARSI YEH INITIAL FORM AL 06CC # \xFBFF ARABIC LETTER FARSI YEH MEDIAL FORM AL 06CC # \xFC00 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH JEEM ISOLATED FORM AL 0626 062C # \xFC01 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HAH ISOLATED FORM AL 0626 062D # \xFC02 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM ISOLATED FORM AL 0626 0645 # \xFC03 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF MAKSURA ISOLATED FORM # \xAL 0626 0649 # \xFC04 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YEH ISOLATED FORM AL 0626 064A # \xFC05 ARABIC LIGATURE BEH WITH JEEM ISOLATED FORM AL 0628 062C # \x # \xFC06 ARABIC LIGATURE BEH WITH HAH ISOLATED FORM AL 0628 062D # \x # \xFC07 ARABIC LIGATURE BEH WITH KHAH ISOLATED FORM AL 0628 062E # \x # \xFC08 ARABIC LIGATURE BEH WITH MEEM ISOLATED FORM AL 0628 0645 # \x # \xFC09 ARABIC LIGATURE BEH WITH ALEF MAKSURA ISOLATED FORM AL 062 # \x8 0649 # \xFC0A ARABIC LIGATURE BEH WITH YEH ISOLATED FORM AL 0628 064A # \x # \xFC0B ARABIC LIGATURE TEH WITH JEEM ISOLATED FORM AL 062A 062C # \x # \xFC0C ARABIC LIGATURE TEH WITH HAH ISOLATED FORM AL 062A 062D # \x # \xFC0D ARABIC LIGATURE TEH WITH KHAH ISOLATED FORM AL 062A 062E # \x # \xFC0E ARABIC LIGATURE TEH WITH MEEM ISOLATED FORM AL 062A 0645 # \x # \xFC0F ARABIC LIGATURE TEH WITH ALEF MAKSURA ISOLATED FORM AL 062 # \xA 0649 # \xFC10 ARABIC LIGATURE TEH WITH YEH ISOLATED FORM AL 062A 064A # \x # \xFC11 ARABIC LIGATURE THEH WITH JEEM ISOLATED FORM AL 062B 062C # \x # \xFC12 ARABIC LIGATURE THEH WITH MEEM ISOLATED FORM AL 062B 0645 # \x # \xFC13 ARABIC LIGATURE THEH WITH ALEF MAKSURA ISOLATED FORM AL 06 # \x2B 0649 # \xFC14 ARABIC LIGATURE THEH WITH YEH ISOLATED FORM AL 062B 064A # \x # \xFC15 ARABIC LIGATURE JEEM WITH HAH ISOLATED FORM AL 062C 062D # \x # \xFC16 ARABIC LIGATURE JEEM WITH MEEM ISOLATED FORM AL 062C 0645 # \x # \xFC17 ARABIC LIGATURE HAH WITH JEEM ISOLATED FORM AL 062D 062C # \x # \xFC18 ARABIC LIGATURE HAH WITH MEEM ISOLATED FORM AL 062D 0645 # \x # \xFC19 ARABIC LIGATURE KHAH WITH JEEM ISOLATED FORM AL 062E 062C # \x # \xFC1A ARABIC LIGATURE KHAH WITH HAH ISOLATED FORM AL 062E 062D # \x # \xFC1B ARABIC LIGATURE KHAH WITH MEEM ISOLATED FORM AL 062E 0645 # \x # \xFC1C ARABIC LIGATURE SEEN WITH JEEM ISOLATED FORM AL 0633 062C # \x # \xFC1D ARABIC LIGATURE SEEN WITH HAH ISOLATED FORM AL 0633 062D # \x # \xFC1E ARABIC LIGATURE SEEN WITH KHAH ISOLATED FORM AL 0633 062E # \x # \xFC1F ARABIC LIGATURE SEEN WITH MEEM ISOLATED FORM AL 0633 0645 # \x # \xFC20 ARABIC LIGATURE SAD WITH HAH ISOLATED FORM AL 0635 062D # \x # \xFC21 ARABIC LIGATURE SAD WITH MEEM ISOLATED FORM AL 0635 0645 # \x # \xFC22 ARABIC LIGATURE DAD WITH JEEM ISOLATED FORM AL 0636 062C # \x # \xFC23 ARABIC LIGATURE DAD WITH HAH ISOLATED FORM AL 0636 062D # \x # \xFC24 ARABIC LIGATURE DAD WITH KHAH ISOLATED FORM AL 0636 062E # \x # \xFC25 ARABIC LIGATURE DAD WITH MEEM ISOLATED FORM AL 0636 0645 # \x # \xFC26 ARABIC LIGATURE TAH WITH HAH ISOLATED FORM AL 0637 062D # \x # \xFC27 ARABIC LIGATURE TAH WITH MEEM ISOLATED FORM AL 0637 0645 # \x # \xFC28 ARABIC LIGATURE ZAH WITH MEEM ISOLATED FORM AL 0638 0645 # \x # \xFC29 ARABIC LIGATURE AIN WITH JEEM ISOLATED FORM AL 0639 062C # \x # \xFC2A ARABIC LIGATURE AIN WITH MEEM ISOLATED FORM AL 0639 0645 # \x # \xFC2B ARABIC LIGATURE GHAIN WITH JEEM ISOLATED FORM AL 063A 062C # \x # \xFC2C ARABIC LIGATURE GHAIN WITH MEEM ISOLATED FORM AL 063A 0645 # \x # \xFC2D ARABIC LIGATURE FEH WITH JEEM ISOLATED FORM AL 0641 062C # \x # \xFC2E ARABIC LIGATURE FEH WITH HAH ISOLATED FORM AL 0641 062D # \x # \xFC2F ARABIC LIGATURE FEH WITH KHAH ISOLATED FORM AL 0641 062E # \x # \xFC30 ARABIC LIGATURE FEH WITH MEEM ISOLATED FORM AL 0641 0645 # \x # \xFC31 ARABIC LIGATURE FEH WITH ALEF MAKSURA ISOLATED FORM AL 064 # \x1 0649 # \xFC32 ARABIC LIGATURE FEH WITH YEH ISOLATED FORM AL 0641 064A # \x # \xFC33 ARABIC LIGATURE QAF WITH HAH ISOLATED FORM AL 0642 062D # \x # \xFC34 ARABIC LIGATURE QAF WITH MEEM ISOLATED FORM AL 0642 0645 # \x # \xFC35 ARABIC LIGATURE QAF WITH ALEF MAKSURA ISOLATED FORM AL 064 # \x2 0649 # \xFC36 ARABIC LIGATURE QAF WITH YEH ISOLATED FORM AL 0642 064A # \x # \xFC37 ARABIC LIGATURE KAF WITH ALEF ISOLATED FORM AL 0643 0627 # \x # \xFC38 ARABIC LIGATURE KAF WITH JEEM ISOLATED FORM AL 0643 062C # \x # \xFC39 ARABIC LIGATURE KAF WITH HAH ISOLATED FORM AL 0643 062D # \x # \xFC3A ARABIC LIGATURE KAF WITH KHAH ISOLATED FORM AL 0643 062E # \x # \xFC3B ARABIC LIGATURE KAF WITH LAM ISOLATED FORM AL 0643 0644 # \x # \xFC3C ARABIC LIGATURE KAF WITH MEEM ISOLATED FORM AL 0643 0645 # \x # \xFC3D ARABIC LIGATURE KAF WITH ALEF MAKSURA ISOLATED FORM AL 064 # \x3 0649 # \xFC3E ARABIC LIGATURE KAF WITH YEH ISOLATED FORM AL 0643 064A # \x # \xFC3F ARABIC LIGATURE LAM WITH JEEM ISOLATED FORM AL 0644 062C # \x # \xFC40 ARABIC LIGATURE LAM WITH HAH ISOLATED FORM AL 0644 062D # \x # \xFC41 ARABIC LIGATURE LAM WITH KHAH ISOLATED FORM AL 0644 062E # \x # \xFC42 ARABIC LIGATURE LAM WITH MEEM ISOLATED FORM AL 0644 0645 # \x # \xFC43 ARABIC LIGATURE LAM WITH ALEF MAKSURA ISOLATED FORM AL 064 # \x4 0649 # \xFC44 ARABIC LIGATURE LAM WITH YEH ISOLATED FORM AL 0644 064A # \x # \xFC45 ARABIC LIGATURE MEEM WITH JEEM ISOLATED FORM AL 0645 062C # \x # \xFC46 ARABIC LIGATURE MEEM WITH HAH ISOLATED FORM AL 0645 062D # \x # \xFC47 ARABIC LIGATURE MEEM WITH KHAH ISOLATED FORM AL 0645 062E # \x # \xFC48 ARABIC LIGATURE MEEM WITH MEEM ISOLATED FORM AL 0645 0645 # \x # \xFC49 ARABIC LIGATURE MEEM WITH ALEF MAKSURA ISOLATED FORM AL 06 # \x45 0649 # \xFC4A ARABIC LIGATURE MEEM WITH YEH ISOLATED FORM AL 0645 064A # \x # \xFC4B ARABIC LIGATURE NOON WITH JEEM ISOLATED FORM AL 0646 062C # \x # \xFC4C ARABIC LIGATURE NOON WITH HAH ISOLATED FORM AL 0646 062D # \x # \xFC4D ARABIC LIGATURE NOON WITH KHAH ISOLATED FORM AL 0646 062E # \x # \xFC4E ARABIC LIGATURE NOON WITH MEEM ISOLATED FORM AL 0646 0645 # \x # \xFC4F ARABIC LIGATURE NOON WITH ALEF MAKSURA ISOLATED FORM AL 06 # \x46 0649 # \xFC50 ARABIC LIGATURE NOON WITH YEH ISOLATED FORM AL 0646 064A # \x # \xFC51 ARABIC LIGATURE HEH WITH JEEM ISOLATED FORM AL 0647 062C # \x # \xFC52 ARABIC LIGATURE HEH WITH MEEM ISOLATED FORM AL 0647 0645 # \x # \xFC53 ARABIC LIGATURE HEH WITH ALEF MAKSURA ISOLATED FORM AL 064 # \x7 0649 # \xFC54 ARABIC LIGATURE HEH WITH YEH ISOLATED FORM AL 0647 064A # \x # \xFC55 ARABIC LIGATURE YEH WITH JEEM ISOLATED FORM AL 064A 062C # \x # \xFC56 ARABIC LIGATURE YEH WITH HAH ISOLATED FORM AL 064A 062D # \x # \xFC57 ARABIC LIGATURE YEH WITH KHAH ISOLATED FORM AL 064A 062E # \x # \xFC58 ARABIC LIGATURE YEH WITH MEEM ISOLATED FORM AL 064A 0645 # \x # \xFC59 ARABIC LIGATURE YEH WITH ALEF MAKSURA ISOLATED FORM AL 064 # \xA 0649 # \xFC5A ARABIC LIGATURE YEH WITH YEH ISOLATED FORM AL 064A 064A # \x # \xFC5B ARABIC LIGATURE THAL WITH SUPERSCRIPT ALEF ISOLATED FORM AL 0630 0670 # \xFC5C ARABIC LIGATURE REH WITH SUPERSCRIPT ALEF ISOLATED FORM AL # \x 0631 0670 # \xFC5D ARABIC LIGATURE ALEF MAKSURA WITH SUPERSCRIPT ALEF ISOLATED FORM AL < # \xisolated> 0649 0670 # \xFC5E ARABIC LIGATURE SHADDA WITH DAMMATAN ISOLATED FORM AL 0020 # \x 064C 0651 # \xFC5F ARABIC LIGATURE SHADDA WITH KASRATAN ISOLATED FORM AL 0020 # \x 064D 0651 # \xFC60 ARABIC LIGATURE SHADDA WITH FATHA ISOLATED FORM AL 0020 06 # \x4E 0651 # \xFC61 ARABIC LIGATURE SHADDA WITH DAMMA ISOLATED FORM AL 0020 06 # \x4F 0651 # \xFC62 ARABIC LIGATURE SHADDA WITH KASRA ISOLATED FORM AL 0020 06 # \x50 0651 # \xFC63 ARABIC LIGATURE SHADDA WITH SUPERSCRIPT ALEF ISOLATED FORM AL 0020 0651 0670 # \xFC64 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH REH FINAL FORM AL 0 # \x626 0631 # \xFC65 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ZAIN FINAL FORM AL # \x0626 0632 # \xFC66 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM FINAL FORM AL # \x0626 0645 # \xFC67 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH NOON FINAL FORM AL # \x0626 0646 # \xFC68 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF MAKSURA FINAL FORM AL # \x 0626 0649 # \xFC69 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YEH FINAL FORM AL 0 # \x626 064A # \xFC6A ARABIC LIGATURE BEH WITH REH FINAL FORM AL 0628 0631 # \x # \xFC6B ARABIC LIGATURE BEH WITH ZAIN FINAL FORM AL 0628 0632 # \x # \xFC6C ARABIC LIGATURE BEH WITH MEEM FINAL FORM AL 0628 0645 # \x # \xFC6D ARABIC LIGATURE BEH WITH NOON FINAL FORM AL 0628 0646 # \x # \xFC6E ARABIC LIGATURE BEH WITH ALEF MAKSURA FINAL FORM AL 0628 0649 # \x # \xFC6F ARABIC LIGATURE BEH WITH YEH FINAL FORM AL 0628 064A # \x # \xFC70 ARABIC LIGATURE TEH WITH REH FINAL FORM AL 062A 0631 # \x # \xFC71 ARABIC LIGATURE TEH WITH ZAIN FINAL FORM AL 062A 0632 # \x # \xFC72 ARABIC LIGATURE TEH WITH MEEM FINAL FORM AL 062A 0645 # \x # \xFC73 ARABIC LIGATURE TEH WITH NOON FINAL FORM AL 062A 0646 # \x # \xFC74 ARABIC LIGATURE TEH WITH ALEF MAKSURA FINAL FORM AL 062A 0649 # \x # \xFC75 ARABIC LIGATURE TEH WITH YEH FINAL FORM AL 062A 064A # \x # \xFC76 ARABIC LIGATURE THEH WITH REH FINAL FORM AL 062B 0631 # \x # \xFC77 ARABIC LIGATURE THEH WITH ZAIN FINAL FORM AL 062B 0632 # \x # \xFC78 ARABIC LIGATURE THEH WITH MEEM FINAL FORM AL 062B 0645 # \x # \xFC79 ARABIC LIGATURE THEH WITH NOON FINAL FORM AL 062B 0646 # \x # \xFC7A ARABIC LIGATURE THEH WITH ALEF MAKSURA FINAL FORM AL 062B 064 # \x9 # \xFC7B ARABIC LIGATURE THEH WITH YEH FINAL FORM AL 062B 064A # \x # \xFC7C ARABIC LIGATURE FEH WITH ALEF MAKSURA FINAL FORM AL 0641 0649 # \x # \xFC7D ARABIC LIGATURE FEH WITH YEH FINAL FORM AL 0641 064A # \x # \xFC7E ARABIC LIGATURE QAF WITH ALEF MAKSURA FINAL FORM AL 0642 0649 # \x # \xFC7F ARABIC LIGATURE QAF WITH YEH FINAL FORM AL 0642 064A # \x # \xFC80 ARABIC LIGATURE KAF WITH ALEF FINAL FORM AL 0643 0627 # \x # \xFC81 ARABIC LIGATURE KAF WITH LAM FINAL FORM AL 0643 0644 # \x # \xFC82 ARABIC LIGATURE KAF WITH MEEM FINAL FORM AL 0643 0645 # \x # \xFC83 ARABIC LIGATURE KAF WITH ALEF MAKSURA FINAL FORM AL 0643 0649 # \x # \xFC84 ARABIC LIGATURE KAF WITH YEH FINAL FORM AL 0643 064A # \x # \xFC85 ARABIC LIGATURE LAM WITH MEEM FINAL FORM AL 0644 0645 # \x # \xFC86 ARABIC LIGATURE LAM WITH ALEF MAKSURA FINAL FORM AL 0644 0649 # \x # \xFC87 ARABIC LIGATURE LAM WITH YEH FINAL FORM AL 0644 064A # \x # \xFC88 ARABIC LIGATURE MEEM WITH ALEF FINAL FORM AL 0645 0627 # \x # \xFC89 ARABIC LIGATURE MEEM WITH MEEM FINAL FORM AL 0645 0645 # \x # \xFC8A ARABIC LIGATURE NOON WITH REH FINAL FORM AL 0646 0631 # \x # \xFC8B ARABIC LIGATURE NOON WITH ZAIN FINAL FORM AL 0646 0632 # \x # \xFC8C ARABIC LIGATURE NOON WITH MEEM FINAL FORM AL 0646 0645 # \x # \xFC8D ARABIC LIGATURE NOON WITH NOON FINAL FORM AL 0646 0646 # \x # \xFC8E ARABIC LIGATURE NOON WITH ALEF MAKSURA FINAL FORM AL 0646 064 # \x9 # \xFC8F ARABIC LIGATURE NOON WITH YEH FINAL FORM AL 0646 064A # \x # \xFC90 ARABIC LIGATURE ALEF MAKSURA WITH SUPERSCRIPT ALEF FINAL FORM AL 0649 0670 # \xFC91 ARABIC LIGATURE YEH WITH REH FINAL FORM AL 064A 0631 # \x # \xFC92 ARABIC LIGATURE YEH WITH ZAIN FINAL FORM AL 064A 0632 # \x # \xFC93 ARABIC LIGATURE YEH WITH MEEM FINAL FORM AL 064A 0645 # \x # \xFC94 ARABIC LIGATURE YEH WITH NOON FINAL FORM AL 064A 0646 # \x # \xFC95 ARABIC LIGATURE YEH WITH ALEF MAKSURA FINAL FORM AL 064A 0649 # \x # \xFC96 ARABIC LIGATURE YEH WITH YEH FINAL FORM AL 064A 064A # \x # \xFC97 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH JEEM INITIAL FORM AL 0626 062C # \xFC98 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HAH INITIAL FORM AL 0626 062D # \xFC99 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH KHAH INITIAL FORM AL 0626 062E # \xFC9A ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM INITIAL FORM AL 0626 0645 # \xFC9B ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HEH INITIAL FORM AL 0626 0647 # \xFC9C ARABIC LIGATURE BEH WITH JEEM INITIAL FORM AL 0628 062C # \xN # \xFC9D ARABIC LIGATURE BEH WITH HAH INITIAL FORM AL 0628 062D N # \x # \xFC9E ARABIC LIGATURE BEH WITH KHAH INITIAL FORM AL 0628 062E # \xN # \xFC9F ARABIC LIGATURE BEH WITH MEEM INITIAL FORM AL 0628 0645 # \xN # \xFCA0 ARABIC LIGATURE BEH WITH HEH INITIAL FORM AL 0628 0647 N # \x # \xFCA1 ARABIC LIGATURE TEH WITH JEEM INITIAL FORM AL 062A 062C # \xN # \xFCA2 ARABIC LIGATURE TEH WITH HAH INITIAL FORM AL 062A 062D N # \x # \xFCA3 ARABIC LIGATURE TEH WITH KHAH INITIAL FORM AL 062A 062E # \xN # \xFCA4 ARABIC LIGATURE TEH WITH MEEM INITIAL FORM AL 062A 0645 # \xN # \xFCA5 ARABIC LIGATURE TEH WITH HEH INITIAL FORM AL 062A 0647 N # \x # \xFCA6 ARABIC LIGATURE THEH WITH MEEM INITIAL FORM AL 062B 0645 # \x # \xFCA7 ARABIC LIGATURE JEEM WITH HAH INITIAL FORM AL 062C 062D # \xN # \xFCA8 ARABIC LIGATURE JEEM WITH MEEM INITIAL FORM AL 062C 0645 # \x # \xFCA9 ARABIC LIGATURE HAH WITH JEEM INITIAL FORM AL 062D 062C # \xN # \xFCAA ARABIC LIGATURE HAH WITH MEEM INITIAL FORM AL 062D 0645 # \xN # \xFCAB ARABIC LIGATURE KHAH WITH JEEM INITIAL FORM AL 062E 062C # \x # \xFCAC ARABIC LIGATURE KHAH WITH MEEM INITIAL FORM AL 062E 0645 # \x # \xFCAD ARABIC LIGATURE SEEN WITH JEEM INITIAL FORM AL 0633 062C # \x # \xFCAE ARABIC LIGATURE SEEN WITH HAH INITIAL FORM AL 0633 062D # \xN # \xFCAF ARABIC LIGATURE SEEN WITH KHAH INITIAL FORM AL 0633 062E # \x # \xFCB0 ARABIC LIGATURE SEEN WITH MEEM INITIAL FORM AL 0633 0645 # \x # \xFCB1 ARABIC LIGATURE SAD WITH HAH INITIAL FORM AL 0635 062D N # \x # \xFCB2 ARABIC LIGATURE SAD WITH KHAH INITIAL FORM AL 0635 062E # \xN # \xFCB3 ARABIC LIGATURE SAD WITH MEEM INITIAL FORM AL 0635 0645 # \xN # \xFCB4 ARABIC LIGATURE DAD WITH JEEM INITIAL FORM AL 0636 062C # \xN # \xFCB5 ARABIC LIGATURE DAD WITH HAH INITIAL FORM AL 0636 062D N # \x # \xFCB6 ARABIC LIGATURE DAD WITH KHAH INITIAL FORM AL 0636 062E # \xN # \xFCB7 ARABIC LIGATURE DAD WITH MEEM INITIAL FORM AL 0636 0645 # \xN # \xFCB8 ARABIC LIGATURE TAH WITH HAH INITIAL FORM AL 0637 062D N # \x # \xFCB9 ARABIC LIGATURE ZAH WITH MEEM INITIAL FORM AL 0638 0645 # \xN # \xFCBA ARABIC LIGATURE AIN WITH JEEM INITIAL FORM AL 0639 062C # \xN # \xFCBB ARABIC LIGATURE AIN WITH MEEM INITIAL FORM AL 0639 0645 # \xN # \xFCBC ARABIC LIGATURE GHAIN WITH JEEM INITIAL FORM AL 063A 062C # \x # \xFCBD ARABIC LIGATURE GHAIN WITH MEEM INITIAL FORM AL 063A 0645 # \x # \xFCBE ARABIC LIGATURE FEH WITH JEEM INITIAL FORM AL 0641 062C # \xN # \xFCBF ARABIC LIGATURE FEH WITH HAH INITIAL FORM AL 0641 062D N # \x # \xFCC0 ARABIC LIGATURE FEH WITH KHAH INITIAL FORM AL 0641 062E # \xN # \xFCC1 ARABIC LIGATURE FEH WITH MEEM INITIAL FORM AL 0641 0645 # \xN # \xFCC2 ARABIC LIGATURE QAF WITH HAH INITIAL FORM AL 0642 062D N # \x # \xFCC3 ARABIC LIGATURE QAF WITH MEEM INITIAL FORM AL 0642 0645 # \xN # \xFCC4 ARABIC LIGATURE KAF WITH JEEM INITIAL FORM AL 0643 062C # \xN # \xFCC5 ARABIC LIGATURE KAF WITH HAH INITIAL FORM AL 0643 062D N # \x # \xFCC6 ARABIC LIGATURE KAF WITH KHAH INITIAL FORM AL 0643 062E # \xN # \xFCC7 ARABIC LIGATURE KAF WITH LAM INITIAL FORM AL 0643 0644 N # \x # \xFCC8 ARABIC LIGATURE KAF WITH MEEM INITIAL FORM AL 0643 0645 # \xN # \xFCC9 ARABIC LIGATURE LAM WITH JEEM INITIAL FORM AL 0644 062C # \xN # \xFCCA ARABIC LIGATURE LAM WITH HAH INITIAL FORM AL 0644 062D N # \x # \xFCCB ARABIC LIGATURE LAM WITH KHAH INITIAL FORM AL 0644 062E # \xN # \xFCCC ARABIC LIGATURE LAM WITH MEEM INITIAL FORM AL 0644 0645 # \xN # \xFCCD ARABIC LIGATURE LAM WITH HEH INITIAL FORM AL 0644 0647 N # \x # \xFCCE ARABIC LIGATURE MEEM WITH JEEM INITIAL FORM AL 0645 062C # \x # \xFCCF ARABIC LIGATURE MEEM WITH HAH INITIAL FORM AL 0645 062D # \xN # \xFCD0 ARABIC LIGATURE MEEM WITH KHAH INITIAL FORM AL 0645 062E # \x # \xFCD1 ARABIC LIGATURE MEEM WITH MEEM INITIAL FORM AL 0645 0645 # \x # \xFCD2 ARABIC LIGATURE NOON WITH JEEM INITIAL FORM AL 0646 062C # \x # \xFCD3 ARABIC LIGATURE NOON WITH HAH INITIAL FORM AL 0646 062D # \xN # \xFCD4 ARABIC LIGATURE NOON WITH KHAH INITIAL FORM AL 0646 062E # \x # \xFCD5 ARABIC LIGATURE NOON WITH MEEM INITIAL FORM AL 0646 0645 # \x # \xFCD6 ARABIC LIGATURE NOON WITH HEH INITIAL FORM AL 0646 0647 # \xN # \xFCD7 ARABIC LIGATURE HEH WITH JEEM INITIAL FORM AL 0647 062C # \xN # \xFCD8 ARABIC LIGATURE HEH WITH MEEM INITIAL FORM AL 0647 0645 # \xN # \xFCD9 ARABIC LIGATURE HEH WITH SUPERSCRIPT ALEF INITIAL FORM AL 0 # \x647 0670 # \xFCDA ARABIC LIGATURE YEH WITH JEEM INITIAL FORM AL 064A 062C # \xN # \xFCDB ARABIC LIGATURE YEH WITH HAH INITIAL FORM AL 064A 062D N # \x # \xFCDC ARABIC LIGATURE YEH WITH KHAH INITIAL FORM AL 064A 062E # \xN # \xFCDD ARABIC LIGATURE YEH WITH MEEM INITIAL FORM AL 064A 0645 # \xN # \xFCDE ARABIC LIGATURE YEH WITH HEH INITIAL FORM AL 064A 0647 N # \x # \xFCDF ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM MEDIAL FORM AL 0626 0645 # \xFCE0 ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HEH MEDIAL FORM AL # \x 0626 0647 # \xFCE1 ARABIC LIGATURE BEH WITH MEEM MEDIAL FORM AL 0628 0645 # \x # \xFCE2 ARABIC LIGATURE BEH WITH HEH MEDIAL FORM AL 0628 0647 # \x # \xFCE3 ARABIC LIGATURE TEH WITH MEEM MEDIAL FORM AL 062A 0645 # \x # \xFCE4 ARABIC LIGATURE TEH WITH HEH MEDIAL FORM AL 062A 0647 # \x # \xFCE5 ARABIC LIGATURE THEH WITH MEEM MEDIAL FORM AL 062B 0645 N # \x # \xFCE6 ARABIC LIGATURE THEH WITH HEH MEDIAL FORM AL 062B 0647 # \x # \xFCE7 ARABIC LIGATURE SEEN WITH MEEM MEDIAL FORM AL 0633 0645 N # \x # \xFCE8 ARABIC LIGATURE SEEN WITH HEH MEDIAL FORM AL 0633 0647 # \x # \xFCE9 ARABIC LIGATURE SHEEN WITH MEEM MEDIAL FORM AL 0634 0645 # \xN # \xFCEA ARABIC LIGATURE SHEEN WITH HEH MEDIAL FORM AL 0634 0647 N # \x # \xFCEB ARABIC LIGATURE KAF WITH LAM MEDIAL FORM AL 0643 0644 # \x # \xFCEC ARABIC LIGATURE KAF WITH MEEM MEDIAL FORM AL 0643 0645 # \x # \xFCED ARABIC LIGATURE LAM WITH MEEM MEDIAL FORM AL 0644 0645 # \x # \xFCEE ARABIC LIGATURE NOON WITH MEEM MEDIAL FORM AL 0646 0645 N # \x # \xFCEF ARABIC LIGATURE NOON WITH HEH MEDIAL FORM AL 0646 0647 # \x # \xFCF0 ARABIC LIGATURE YEH WITH MEEM MEDIAL FORM AL 064A 0645 # \x # \xFCF1 ARABIC LIGATURE YEH WITH HEH MEDIAL FORM AL 064A 0647 # \x # \xFCF2 ARABIC LIGATURE SHADDA WITH FATHA MEDIAL FORM AL 0640 064E 0 # \x651 # \xFCF3 ARABIC LIGATURE SHADDA WITH DAMMA MEDIAL FORM AL 0640 064F 0 # \x651 # \xFCF4 ARABIC LIGATURE SHADDA WITH KASRA MEDIAL FORM AL 0640 0650 0 # \x651 # \xFCF5 ARABIC LIGATURE TAH WITH ALEF MAKSURA ISOLATED FORM AL 063 # \x7 0649 # \xFCF6 ARABIC LIGATURE TAH WITH YEH ISOLATED FORM AL 0637 064A # \x # \xFCF7 ARABIC LIGATURE AIN WITH ALEF MAKSURA ISOLATED FORM AL 063 # \x9 0649 # \xFCF8 ARABIC LIGATURE AIN WITH YEH ISOLATED FORM AL 0639 064A # \x # \xFCF9 ARABIC LIGATURE GHAIN WITH ALEF MAKSURA ISOLATED FORM AL 0 # \x63A 0649 # \xFCFA ARABIC LIGATURE GHAIN WITH YEH ISOLATED FORM AL 063A 064A # \x # \xFCFB ARABIC LIGATURE SEEN WITH ALEF MAKSURA ISOLATED FORM AL 06 # \x33 0649 # \xFCFC ARABIC LIGATURE SEEN WITH YEH ISOLATED FORM AL 0633 064A # \x # \xFCFD ARABIC LIGATURE SHEEN WITH ALEF MAKSURA ISOLATED FORM AL 0 # \x634 0649 # \xFCFE ARABIC LIGATURE SHEEN WITH YEH ISOLATED FORM AL 0634 064A # \x # \xFCFF ARABIC LIGATURE HAH WITH ALEF MAKSURA ISOLATED FORM AL 062 # \xD 0649 # \xFD00 ARABIC LIGATURE HAH WITH YEH ISOLATED FORM AL 062D 064A # \x # \xFD01 ARABIC LIGATURE JEEM WITH ALEF MAKSURA ISOLATED FORM AL 06 # \x2C 0649 # \xFD02 ARABIC LIGATURE JEEM WITH YEH ISOLATED FORM AL 062C 064A # \x # \xFD03 ARABIC LIGATURE KHAH WITH ALEF MAKSURA ISOLATED FORM AL 06 # \x2E 0649 # \xFD04 ARABIC LIGATURE KHAH WITH YEH ISOLATED FORM AL 062E 064A # \x # \xFD05 ARABIC LIGATURE SAD WITH ALEF MAKSURA ISOLATED FORM AL 063 # \x5 0649 # \xFD06 ARABIC LIGATURE SAD WITH YEH ISOLATED FORM AL 0635 064A # \x # \xFD07 ARABIC LIGATURE DAD WITH ALEF MAKSURA ISOLATED FORM AL 063 # \x6 0649 # \xFD08 ARABIC LIGATURE DAD WITH YEH ISOLATED FORM AL 0636 064A # \x # \xFD09 ARABIC LIGATURE SHEEN WITH JEEM ISOLATED FORM AL 0634 062C # \x # \xFD0A ARABIC LIGATURE SHEEN WITH HAH ISOLATED FORM AL 0634 062D # \x # \xFD0B ARABIC LIGATURE SHEEN WITH KHAH ISOLATED FORM AL 0634 062E # \x # \xFD0C ARABIC LIGATURE SHEEN WITH MEEM ISOLATED FORM AL 0634 0645 # \x # \xFD0D ARABIC LIGATURE SHEEN WITH REH ISOLATED FORM AL 0634 0631 # \x # \xFD0E ARABIC LIGATURE SEEN WITH REH ISOLATED FORM AL 0633 0631 # \x # \xFD0F ARABIC LIGATURE SAD WITH REH ISOLATED FORM AL 0635 0631 # \x # \xFD10 ARABIC LIGATURE DAD WITH REH ISOLATED FORM AL 0636 0631 # \x # \xFD11 ARABIC LIGATURE TAH WITH ALEF MAKSURA FINAL FORM AL 0637 0649 # \x # \xFD12 ARABIC LIGATURE TAH WITH YEH FINAL FORM AL 0637 064A # \x # \xFD13 ARABIC LIGATURE AIN WITH ALEF MAKSURA FINAL FORM AL 0639 0649 # \x # \xFD14 ARABIC LIGATURE AIN WITH YEH FINAL FORM AL 0639 064A # \x # \xFD15 ARABIC LIGATURE GHAIN WITH ALEF MAKSURA FINAL FORM AL 063A 06 # \x49 # \xFD16 ARABIC LIGATURE GHAIN WITH YEH FINAL FORM AL 063A 064A # \x # \xFD17 ARABIC LIGATURE SEEN WITH ALEF MAKSURA FINAL FORM AL 0633 064 # \x9 # \xFD18 ARABIC LIGATURE SEEN WITH YEH FINAL FORM AL 0633 064A # \x # \xFD19 ARABIC LIGATURE SHEEN WITH ALEF MAKSURA FINAL FORM AL 0634 06 # \x49 # \xFD1A ARABIC LIGATURE SHEEN WITH YEH FINAL FORM AL 0634 064A # \x # \xFD1B ARABIC LIGATURE HAH WITH ALEF MAKSURA FINAL FORM AL 062D 0649 # \x # \xFD1C ARABIC LIGATURE HAH WITH YEH FINAL FORM AL 062D 064A # \x # \xFD1D ARABIC LIGATURE JEEM WITH ALEF MAKSURA FINAL FORM AL 062C 064 # \x9 # \xFD1E ARABIC LIGATURE JEEM WITH YEH FINAL FORM AL 062C 064A # \x # \xFD1F ARABIC LIGATURE KHAH WITH ALEF MAKSURA FINAL FORM AL 062E 064 # \x9 # \xFD20 ARABIC LIGATURE KHAH WITH YEH FINAL FORM AL 062E 064A # \x # \xFD21 ARABIC LIGATURE SAD WITH ALEF MAKSURA FINAL FORM AL 0635 0649 # \x # \xFD22 ARABIC LIGATURE SAD WITH YEH FINAL FORM AL 0635 064A # \x # \xFD23 ARABIC LIGATURE DAD WITH ALEF MAKSURA FINAL FORM AL 0636 0649 # \x # \xFD24 ARABIC LIGATURE DAD WITH YEH FINAL FORM AL 0636 064A # \x # \xFD25 ARABIC LIGATURE SHEEN WITH JEEM FINAL FORM AL 0634 062C # \x # \xFD26 ARABIC LIGATURE SHEEN WITH HAH FINAL FORM AL 0634 062D # \x # \xFD27 ARABIC LIGATURE SHEEN WITH KHAH FINAL FORM AL 0634 062E # \x # \xFD28 ARABIC LIGATURE SHEEN WITH MEEM FINAL FORM AL 0634 0645 # \x # \xFD29 ARABIC LIGATURE SHEEN WITH REH FINAL FORM AL 0634 0631 # \x # \xFD2A ARABIC LIGATURE SEEN WITH REH FINAL FORM AL 0633 0631 # \x # \xFD2B ARABIC LIGATURE SAD WITH REH FINAL FORM AL 0635 0631 # \x # \xFD2C ARABIC LIGATURE DAD WITH REH FINAL FORM AL 0636 0631 # \x # \xFD2D ARABIC LIGATURE SHEEN WITH JEEM INITIAL FORM AL 0634 062C # \x # \xFD2E ARABIC LIGATURE SHEEN WITH HAH INITIAL FORM AL 0634 062D # \x # \xFD2F ARABIC LIGATURE SHEEN WITH KHAH INITIAL FORM AL 0634 062E # \x # \xFD30 ARABIC LIGATURE SHEEN WITH MEEM INITIAL FORM AL 0634 0645 # \x # \xFD31 ARABIC LIGATURE SEEN WITH HEH INITIAL FORM AL 0633 0647 # \xN # \xFD32 ARABIC LIGATURE SHEEN WITH HEH INITIAL FORM AL 0634 0647 # \x # \xFD33 ARABIC LIGATURE TAH WITH MEEM INITIAL FORM AL 0637 0645 # \xN # \xFD34 ARABIC LIGATURE SEEN WITH JEEM MEDIAL FORM AL 0633 062C N # \x # \xFD35 ARABIC LIGATURE SEEN WITH HAH MEDIAL FORM AL 0633 062D # \x # \xFD36 ARABIC LIGATURE SEEN WITH KHAH MEDIAL FORM AL 0633 062E N # \x # \xFD37 ARABIC LIGATURE SHEEN WITH JEEM MEDIAL FORM AL 0634 062C # \xN # \xFD38 ARABIC LIGATURE SHEEN WITH HAH MEDIAL FORM AL 0634 062D N # \x # \xFD39 ARABIC LIGATURE SHEEN WITH KHAH MEDIAL FORM AL 0634 062E # \xN # \xFD3A ARABIC LIGATURE TAH WITH MEEM MEDIAL FORM AL 0637 0645 # \x # \xFD3B ARABIC LIGATURE ZAH WITH MEEM MEDIAL FORM AL 0638 0645 # \x # \xFD3C ARABIC LIGATURE ALEF WITH FATHATAN FINAL FORM AL 0627 064B # \x # \xFD3D ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM AL 0627 0 # \x64B # \xFD3E ORNATE LEFT PARENTHESIS # \xFD3F ORNATE RIGHT PARENTHESIS Pe # \xFD50 ARABIC LIGATURE TEH WITH JEEM WITH MEEM INITIAL FORM AL 062 # \xA 062C 0645 # \xFD51 ARABIC LIGATURE TEH WITH HAH WITH JEEM FINAL FORM AL 062A 062 # \xD 062C # \xFD52 ARABIC LIGATURE TEH WITH HAH WITH JEEM INITIAL FORM AL 062A # \x 062D 062C # \xFD53 ARABIC LIGATURE TEH WITH HAH WITH MEEM INITIAL FORM AL 062A # \x 062D 0645 # \xFD54 ARABIC LIGATURE TEH WITH KHAH WITH MEEM INITIAL FORM AL 062 # \xA 062E 0645 # \xFD55 ARABIC LIGATURE TEH WITH MEEM WITH JEEM INITIAL FORM AL 062 # \xA 0645 062C # \xFD56 ARABIC LIGATURE TEH WITH MEEM WITH HAH INITIAL FORM AL 062A # \x 0645 062D # \xFD57 ARABIC LIGATURE TEH WITH MEEM WITH KHAH INITIAL FORM AL 062 # \xA 0645 062E # \xFD58 ARABIC LIGATURE JEEM WITH MEEM WITH HAH FINAL FORM AL 062C 06 # \x45 062D # \xFD59 ARABIC LIGATURE JEEM WITH MEEM WITH HAH INITIAL FORM AL 062 # \xC 0645 062D # \xFD5A ARABIC LIGATURE HAH WITH MEEM WITH YEH FINAL FORM AL 062D 064 # \x5 064A # \xFD5B ARABIC LIGATURE HAH WITH MEEM WITH ALEF MAKSURA FINAL FORM AL # \x 062D 0645 0649 # \xFD5C ARABIC LIGATURE SEEN WITH HAH WITH JEEM INITIAL FORM AL 063 # \x3 062D 062C # \xFD5D ARABIC LIGATURE SEEN WITH JEEM WITH HAH INITIAL FORM AL 063 # \x3 062C 062D # \xFD5E ARABIC LIGATURE SEEN WITH JEEM WITH ALEF MAKSURA FINAL FORM AL 0633 062C 0649 # \xFD5F ARABIC LIGATURE SEEN WITH MEEM WITH HAH FINAL FORM AL 0633 06 # \x45 062D # \xFD60 ARABIC LIGATURE SEEN WITH MEEM WITH HAH INITIAL FORM AL 063 # \x3 0645 062D # \xFD61 ARABIC LIGATURE SEEN WITH MEEM WITH JEEM INITIAL FORM AL 06 # \x33 0645 062C # \xFD62 ARABIC LIGATURE SEEN WITH MEEM WITH MEEM FINAL FORM AL 0633 0 # \x645 0645 # \xFD63 ARABIC LIGATURE SEEN WITH MEEM WITH MEEM INITIAL FORM AL 06 # \x33 0645 0645 # \xFD64 ARABIC LIGATURE SAD WITH HAH WITH HAH FINAL FORM AL 0635 062D # \x 062D # \xFD65 ARABIC LIGATURE SAD WITH HAH WITH HAH INITIAL FORM AL 0635 # \x062D 062D # \xFD66 ARABIC LIGATURE SAD WITH MEEM WITH MEEM FINAL FORM AL 0635 06 # \x45 0645 # \xFD67 ARABIC LIGATURE SHEEN WITH HAH WITH MEEM FINAL FORM AL 0634 0 # \x62D 0645 # \xFD68 ARABIC LIGATURE SHEEN WITH HAH WITH MEEM INITIAL FORM AL 06 # \x34 062D 0645 # \xFD69 ARABIC LIGATURE SHEEN WITH JEEM WITH YEH FINAL FORM AL 0634 0 # \x62C 064A # \xFD6A ARABIC LIGATURE SHEEN WITH MEEM WITH KHAH FINAL FORM AL 0634 # \x0645 062E # \xFD6B ARABIC LIGATURE SHEEN WITH MEEM WITH KHAH INITIAL FORM AL 0 # \x634 0645 062E # \xFD6C ARABIC LIGATURE SHEEN WITH MEEM WITH MEEM FINAL FORM AL 0634 # \x0645 0645 # \xFD6D ARABIC LIGATURE SHEEN WITH MEEM WITH MEEM INITIAL FORM AL 0 # \x634 0645 0645 # \xFD6E ARABIC LIGATURE DAD WITH HAH WITH ALEF MAKSURA FINAL FORM AL # \x0636 062D 0649 # \xFD6F ARABIC LIGATURE DAD WITH KHAH WITH MEEM FINAL FORM AL 0636 06 # \x2E 0645 # \xFD70 ARABIC LIGATURE DAD WITH KHAH WITH MEEM INITIAL FORM AL 063 # \x6 062E 0645 # \xFD71 ARABIC LIGATURE TAH WITH MEEM WITH HAH FINAL FORM AL 0637 064 # \x5 062D # \xFD72 ARABIC LIGATURE TAH WITH MEEM WITH HAH INITIAL FORM AL 0637 # \x 0645 062D # \xFD73 ARABIC LIGATURE TAH WITH MEEM WITH MEEM INITIAL FORM AL 063 # \x7 0645 0645 # \xFD74 ARABIC LIGATURE TAH WITH MEEM WITH YEH FINAL FORM AL 0637 064 # \x5 064A # \xFD75 ARABIC LIGATURE AIN WITH JEEM WITH MEEM FINAL FORM AL 0639 06 # \x2C 0645 # \xFD76 ARABIC LIGATURE AIN WITH MEEM WITH MEEM FINAL FORM AL 0639 06 # \x45 0645 # \xFD77 ARABIC LIGATURE AIN WITH MEEM WITH MEEM INITIAL FORM AL 063 # \x9 0645 0645 # \xFD78 ARABIC LIGATURE AIN WITH MEEM WITH ALEF MAKSURA FINAL FORM AL # \x 0639 0645 0649 # \xFD79 ARABIC LIGATURE GHAIN WITH MEEM WITH MEEM FINAL FORM AL 063A # \x0645 0645 # \xFD7A ARABIC LIGATURE GHAIN WITH MEEM WITH YEH FINAL FORM AL 063A 0 # \x645 064A # \xFD7B ARABIC LIGATURE GHAIN WITH MEEM WITH ALEF MAKSURA FINAL FORM AL 063A 0645 0649 # \xFD7C ARABIC LIGATURE FEH WITH KHAH WITH MEEM FINAL FORM AL 0641 06 # \x2E 0645 # \xFD7D ARABIC LIGATURE FEH WITH KHAH WITH MEEM INITIAL FORM AL 064 # \x1 062E 0645 # \xFD7E ARABIC LIGATURE QAF WITH MEEM WITH HAH FINAL FORM AL 0642 064 # \x5 062D # \xFD7F ARABIC LIGATURE QAF WITH MEEM WITH MEEM FINAL FORM AL 0642 06 # \x45 0645 # \xFD80 ARABIC LIGATURE LAM WITH HAH WITH MEEM FINAL FORM AL 0644 062 # \xD 0645 # \xFD81 ARABIC LIGATURE LAM WITH HAH WITH YEH FINAL FORM AL 0644 062D # \x 064A # \xFD82 ARABIC LIGATURE LAM WITH HAH WITH ALEF MAKSURA FINAL FORM AL # \x0644 062D 0649 # \xFD83 ARABIC LIGATURE LAM WITH JEEM WITH JEEM INITIAL FORM AL 064 # \x4 062C 062C # \xFD84 ARABIC LIGATURE LAM WITH JEEM WITH JEEM FINAL FORM AL 0644 06 # \x2C 062C # \xFD85 ARABIC LIGATURE LAM WITH KHAH WITH MEEM FINAL FORM AL 0644 06 # \x2E 0645 # \xFD86 ARABIC LIGATURE LAM WITH KHAH WITH MEEM INITIAL FORM AL 064 # \x4 062E 0645 # \xFD87 ARABIC LIGATURE LAM WITH MEEM WITH HAH FINAL FORM AL 0644 064 # \x5 062D # \xFD88 ARABIC LIGATURE LAM WITH MEEM WITH HAH INITIAL FORM AL 0644 # \x 0645 062D # \xFD89 ARABIC LIGATURE MEEM WITH HAH WITH JEEM INITIAL FORM AL 064 # \x5 062D 062C # \xFD8A ARABIC LIGATURE MEEM WITH HAH WITH MEEM INITIAL FORM AL 064 # \x5 062D 0645 # \xFD8B ARABIC LIGATURE MEEM WITH HAH WITH YEH FINAL FORM AL 0645 062 # \xD 064A # \xFD8C ARABIC LIGATURE MEEM WITH JEEM WITH HAH INITIAL FORM AL 064 # \x5 062C 062D # \xFD8D ARABIC LIGATURE MEEM WITH JEEM WITH MEEM INITIAL FORM AL 06 # \x45 062C 0645 # \xFD8E ARABIC LIGATURE MEEM WITH KHAH WITH JEEM INITIAL FORM AL 06 # \x45 062E 062C # \xFD8F ARABIC LIGATURE MEEM WITH KHAH WITH MEEM INITIAL FORM AL 06 # \x45 062E 0645 # \xFD92 ARABIC LIGATURE MEEM WITH JEEM WITH KHAH INITIAL FORM AL 06 # \x45 062C 062E # \xFD93 ARABIC LIGATURE HEH WITH MEEM WITH JEEM INITIAL FORM AL 064 # \x7 0645 062C # \xFD94 ARABIC LIGATURE HEH WITH MEEM WITH MEEM INITIAL FORM AL 064 # \x7 0645 0645 # \xFD95 ARABIC LIGATURE NOON WITH HAH WITH MEEM INITIAL FORM AL 064 # \x6 062D 0645 # \xFD96 ARABIC LIGATURE NOON WITH HAH WITH ALEF MAKSURA FINAL FORM AL # \x 0646 062D 0649 # \xFD97 ARABIC LIGATURE NOON WITH JEEM WITH MEEM FINAL FORM AL 0646 0 # \x62C 0645 # \xFD98 ARABIC LIGATURE NOON WITH JEEM WITH MEEM INITIAL FORM AL 06 # \x46 062C 0645 # \xFD99 ARABIC LIGATURE NOON WITH JEEM WITH ALEF MAKSURA FINAL FORM AL 0646 062C 0649 # \xFD9A ARABIC LIGATURE NOON WITH MEEM WITH YEH FINAL FORM AL 0646 06 # \x45 064A # \xFD9B ARABIC LIGATURE NOON WITH MEEM WITH ALEF MAKSURA FINAL FORM AL 0646 0645 0649 # \xFD9C ARABIC LIGATURE YEH WITH MEEM WITH MEEM FINAL FORM AL 064A 06 # \x45 0645 # \xFD9D ARABIC LIGATURE YEH WITH MEEM WITH MEEM INITIAL FORM AL 064 # \xA 0645 0645 # \xFD9E ARABIC LIGATURE BEH WITH KHAH WITH YEH FINAL FORM AL 0628 062 # \xE 064A # \xFD9F ARABIC LIGATURE TEH WITH JEEM WITH YEH FINAL FORM AL 062A 062 # \xC 064A # \xFDA0 ARABIC LIGATURE TEH WITH JEEM WITH ALEF MAKSURA FINAL FORM AL # \x 062A 062C 0649 # \xFDA1 ARABIC LIGATURE TEH WITH KHAH WITH YEH FINAL FORM AL 062A 062 # \xE 064A # \xFDA2 ARABIC LIGATURE TEH WITH KHAH WITH ALEF MAKSURA FINAL FORM AL # \x 062A 062E 0649 # \xFDA3 ARABIC LIGATURE TEH WITH MEEM WITH YEH FINAL FORM AL 062A 064 # \x5 064A # \xFDA4 ARABIC LIGATURE TEH WITH MEEM WITH ALEF MAKSURA FINAL FORM AL # \x 062A 0645 0649 # \xFDA5 ARABIC LIGATURE JEEM WITH MEEM WITH YEH FINAL FORM AL 062C 06 # \x45 064A # \xFDA6 ARABIC LIGATURE JEEM WITH HAH WITH ALEF MAKSURA FINAL FORM AL # \x 062C 062D 0649 # \xFDA7 ARABIC LIGATURE JEEM WITH MEEM WITH ALEF MAKSURA FINAL FORM AL 062C 0645 0649 # \xFDA8 ARABIC LIGATURE SEEN WITH KHAH WITH ALEF MAKSURA FINAL FORM AL 0633 062E 0649 # \xFDA9 ARABIC LIGATURE SAD WITH HAH WITH YEH FINAL FORM AL 0635 062D # \x 064A # \xFDAA ARABIC LIGATURE SHEEN WITH HAH WITH YEH FINAL FORM AL 0634 06 # \x2D 064A # \xFDAB ARABIC LIGATURE DAD WITH HAH WITH YEH FINAL FORM AL 0636 062D # \x 064A # \xFDAC ARABIC LIGATURE LAM WITH JEEM WITH YEH FINAL FORM AL 0644 062 # \xC 064A # \xFDAD ARABIC LIGATURE LAM WITH MEEM WITH YEH FINAL FORM AL 0644 064 # \x5 064A # \xFDAE ARABIC LIGATURE YEH WITH HAH WITH YEH FINAL FORM AL 064A 062D # \x 064A # \xFDAF ARABIC LIGATURE YEH WITH JEEM WITH YEH FINAL FORM AL 064A 062 # \xC 064A # \xFDB0 ARABIC LIGATURE YEH WITH MEEM WITH YEH FINAL FORM AL 064A 064 # \x5 064A # \xFDB1 ARABIC LIGATURE MEEM WITH MEEM WITH YEH FINAL FORM AL 0645 06 # \x45 064A # \xFDB2 ARABIC LIGATURE QAF WITH MEEM WITH YEH FINAL FORM AL 0642 064 # \x5 064A # \xFDB3 ARABIC LIGATURE NOON WITH HAH WITH YEH FINAL FORM AL 0646 062 # \xD 064A # \xFDB4 ARABIC LIGATURE QAF WITH MEEM WITH HAH INITIAL FORM AL 0642 # \x 0645 062D # \xFDB5 ARABIC LIGATURE LAM WITH HAH WITH MEEM INITIAL FORM AL 0644 # \x 062D 0645 # \xFDB6 ARABIC LIGATURE AIN WITH MEEM WITH YEH FINAL FORM AL 0639 064 # \x5 064A # \xFDB7 ARABIC LIGATURE KAF WITH MEEM WITH YEH FINAL FORM AL 0643 064 # \x5 064A # \xFDB8 ARABIC LIGATURE NOON WITH JEEM WITH HAH INITIAL FORM AL 064 # \x6 062C 062D # \xFDB9 ARABIC LIGATURE MEEM WITH KHAH WITH YEH FINAL FORM AL 0645 06 # \x2E 064A # \xFDBA ARABIC LIGATURE LAM WITH JEEM WITH MEEM INITIAL FORM AL 064 # \x4 062C 0645 # \xFDBB ARABIC LIGATURE KAF WITH MEEM WITH MEEM FINAL FORM AL 0643 06 # \x45 0645 # \xFDBC ARABIC LIGATURE LAM WITH JEEM WITH MEEM FINAL FORM AL 0644 06 # \x2C 0645 # \xFDBD ARABIC LIGATURE NOON WITH JEEM WITH HAH FINAL FORM AL 0646 06 # \x2C 062D # \xFDBE ARABIC LIGATURE JEEM WITH HAH WITH YEH FINAL FORM AL 062C 062 # \xD 064A # \xFDBF ARABIC LIGATURE HAH WITH JEEM WITH YEH FINAL FORM AL 062D 062 # \xC 064A # \xFDC0 ARABIC LIGATURE MEEM WITH JEEM WITH YEH FINAL FORM AL 0645 06 # \x2C 064A # \xFDC1 ARABIC LIGATURE FEH WITH MEEM WITH YEH FINAL FORM AL 0641 064 # \x5 064A # \xFDC2 ARABIC LIGATURE BEH WITH HAH WITH YEH FINAL FORM AL 0628 062D # \x 064A # \xFDC3 ARABIC LIGATURE KAF WITH MEEM WITH MEEM INITIAL FORM AL 064 # \x3 0645 0645 # \xFDC4 ARABIC LIGATURE AIN WITH JEEM WITH MEEM INITIAL FORM AL 063 # \x9 062C 0645 # \xFDC5 ARABIC LIGATURE SAD WITH MEEM WITH MEEM INITIAL FORM AL 063 # \x5 0645 0645 # \xFDC6 ARABIC LIGATURE SEEN WITH KHAH WITH YEH FINAL FORM AL 0633 06 # \x2E 064A # \xFDC7 ARABIC LIGATURE NOON WITH JEEM WITH YEH FINAL FORM AL 0646 06 # \x2C 064A # \xFDF0 ARABIC LIGATURE SALLA USED AS KORANIC STOP SIGN ISOLATED FORM AL 0635 0644 06D2 # \xFDF1 ARABIC LIGATURE QALA USED AS KORANIC STOP SIGN ISOLATED FORM AL 0642 0644 06D2 # \xFDF2 ARABIC LIGATURE ALLAH ISOLATED FORM AL 0627 0644 0644 0647 # \x # \xFDF3 ARABIC LIGATURE AKBAR ISOLATED FORM AL 0627 0643 0628 0631 # \x # \xFDF4 ARABIC LIGATURE MOHAMMAD ISOLATED FORM AL 0645 062D 0645 0 # \x62F # \xFDF5 ARABIC LIGATURE SALAM ISOLATED FORM AL 0635 0644 0639 0645 # \x # \xFDF6 ARABIC LIGATURE RASOUL ISOLATED FORM AL 0631 0633 0648 064 # \x4 # \xFDF7 ARABIC LIGATURE ALAYHE ISOLATED FORM AL 0639 0644 064A 064 # \x7 # \xFDF8 ARABIC LIGATURE WASALLAM ISOLATED FORM AL 0648 0633 0644 0 # \x645 # \xFDF9 ARABIC LIGATURE SALLA ISOLATED FORM AL 0635 0644 0649 N # \x # \xFDFA ARABIC LIGATURE SALLALLAHOU ALAYHE WASALLAM AL 0635 0644 0 # \x649 0020 0627 0644 0644 0647 0020 0639 0644 064A 0647 0020 0648 0633 0644 0645 # \x ARABIC LETTER SALLALLAHOU ALAYHE WASALLAM # \xFDFB ARABIC LIGATURE JALLAJALALOUHOU AL 062C 0644 0020 062C 064 # \x4 0627 0644 0647 ARABIC LETTER JALLAJALALOUHOU # \xFDFC RIAL SIGN Sc AL 0631 06CC 0627 0644 # \xFDFD ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM # \xFE00 VARIATION SELECTOR-1 # \xFE01 VARIATION SELECTOR-2 # \xFE02 VARIATION SELECTOR-3 # \xFE03 VARIATION SELECTOR-4 # \xFE04 VARIATION SELECTOR-5 # \xFE05 VARIATION SELECTOR-6 # \xFE06 VARIATION SELECTOR-7 # \xFE07 VARIATION SELECTOR-8 # \xFE08 VARIATION SELECTOR-9 # \xFE09 VARIATION SELECTOR-10 # \xFE0A VARIATION SELECTOR-11 # \xFE0B VARIATION SELECTOR-12 # \xFE0C VARIATION SELECTOR-13 # \xFE0D VARIATION SELECTOR-14 # \xFE0E VARIATION SELECTOR-15 # \xFE0F VARIATION SELECTOR-16 # \xFE20 COMBINING LIGATURE LEFT HALF 230 # \xFE21 COMBINING LIGATURE RIGHT HALF 230 # \xFE22 COMBINING DOUBLE TILDE LEFT HALF 230 # \xFE23 COMBINING DOUBLE TILDE RIGHT HALF 230 # \xFE30 PRESENTATION FORM FOR VERTICAL TWO DOT LEADER 2025 N # \x GLYPH FOR VERTICAL TWO DOT LEADER # \xFE31 PRESENTATION FORM FOR VERTICAL EM DASH 2014 GLYPH # \xFOR VERTICAL EM DASH # \xFE32 PRESENTATION FORM FOR VERTICAL EN DASH 2013 GLYPH # \xFOR VERTICAL EN DASH # \xFE33 PRESENTATION FORM FOR VERTICAL LOW LINE Pc 005F GLYPH # \x FOR VERTICAL SPACING UNDERSCORE # \xFE34 PRESENTATION FORM FOR VERTICAL WAVY LOW LINE Pc 005F # \xGLYPH FOR VERTICAL SPACING WAVY UNDERSCORE # \xFE35 PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS Ps 0028 # \x GLYPH FOR VERTICAL OPENING PARENTHESIS # \xFE36 PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS Pe 0029 # \x GLYPH FOR VERTICAL CLOSING PARENTHESIS # \xFE37 PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET Ps 007B # \x GLYPH FOR VERTICAL OPENING CURLY BRACKET # \xFE38 PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET Pe 007D # \x GLYPH FOR VERTICAL CLOSING CURLY BRACKET # \xFE39 PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET Ps 3014 GLYPH FOR VERTICAL OPENING TORTOISE SHELL BRACKET # \xFE3A PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET Pe 3015 GLYPH FOR VERTICAL CLOSING TORTOISE SHELL BRACKET # \xFE3B PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET Ps 3010 GLYPH FOR VERTICAL OPENING BLACK LENTICULAR BRACKET # \xFE3C PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET Pe 3011 GLYPH FOR VERTICAL CLOSING BLACK LENTICULAR BRACKET # \xFE3D PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET Ps 300A GLYPH FOR VERTICAL OPENING DOUBLE ANGLE BRACKET # \xFE3E PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET Pe 300B GLYPH FOR VERTICAL CLOSING DOUBLE ANGLE BRACKET # \xFE3F PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET Ps 3008 # \x GLYPH FOR VERTICAL OPENING ANGLE BRACKET # \xFE40 PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET Pe 3009 # \x GLYPH FOR VERTICAL CLOSING ANGLE BRACKET # \xFE41 PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET Ps 300C # \x GLYPH FOR VERTICAL OPENING CORNER BRACKET # \xFE42 PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET Pe 300 # \xD GLYPH FOR VERTICAL CLOSING CORNER BRACKET # \xFE43 PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET Ps 300E GLYPH FOR VERTICAL OPENING WHITE CORNER BRACKET # \xFE44 PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET Pe 300F GLYPH FOR VERTICAL CLOSING WHITE CORNER BRACKET # \xFE45 SESAME DOT # \xFE46 WHITE SESAME DOT # \xFE47 PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET Ps 005B # \x # \xFE48 PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET Pe 005 # \xD # \xFE49 DASHED OVERLINE 203E SPACING DASHED OVERSCORE # \xFE4A CENTRELINE OVERLINE 203E SPACING CENTERLINE OVERSCOR # \xE # \xFE4B WAVY OVERLINE 203E SPACING WAVY OVERSCORE # \xFE4C DOUBLE WAVY OVERLINE 203E SPACING DOUBLE WAVY OVERSC # \xORE # \xFE4D DASHED LOW LINE Pc 005F SPACING DASHED UNDERSCORE # \xFE4E CENTRELINE LOW LINE Pc 005F SPACING CENTERLINE UNDERSCO # \xRE # \xFE4F WAVY LOW LINE Pc 005F SPACING WAVY UNDERSCORE # \xFE50 SMALL COMMA CS 002C # \xFE51 SMALL IDEOGRAPHIC COMMA 3001 # \xFE52 SMALL FULL STOP CS 002E SMALL PERIOD # \xFE54 SMALL SEMICOLON 003B # \xFE55 SMALL COLON CS 003A # \xFE56 SMALL QUESTION MARK 003F # \xFE57 SMALL EXCLAMATION MARK 0021 # \xFE58 SMALL EM DASH 2014 # \xFE59 SMALL LEFT PARENTHESIS Ps 0028 SMALL OPENING PARENTHESIS # \x # \xFE5A SMALL RIGHT PARENTHESIS Pe 0029 SMALL CLOSING PARENTHESI # \xS # \xFE5B SMALL LEFT CURLY BRACKET Ps 007B SMALL OPENING CURLY BRA # \xCKET # \xFE5C SMALL RIGHT CURLY BRACKET Pe 007D SMALL CLOSING CURLY BR # \xACKET # \xFE5D SMALL LEFT TORTOISE SHELL BRACKET Ps 3014 SMALL OPENING # \xTORTOISE SHELL BRACKET # \xFE5E SMALL RIGHT TORTOISE SHELL BRACKET Pe 3015 SMALL CLOSING # \x TORTOISE SHELL BRACKET # \xFE5F SMALL NUMBER SIGN 0023 # \xFE60 SMALL AMPERSAND 0026 # \xFE61 SMALL ASTERISK 002A # \xFE62 SMALL PLUS SIGN 002B # \xFE63 SMALL HYPHEN-MINUS 002D # \xFE64 SMALL LESS-THAN SIGN 003C # \xFE65 SMALL GREATER-THAN SIGN 003E # \xFE66 SMALL EQUALS SIGN 003D # \xFE68 SMALL REVERSE SOLIDUS 005C SMALL BACKSLASH # \xFE69 SMALL DOLLAR SIGN Sc 0024 # \xFE6A SMALL PERCENT SIGN 0025 # \xFE6B SMALL COMMERCIAL AT 0040 # \xFE70 ARABIC FATHATAN ISOLATED FORM AL 0020 064B ARABIC SPA # \xCING FATHATAN # \xFE71 ARABIC TATWEEL WITH FATHATAN ABOVE AL 0640 064B ARABIC # \xFATHATAN TATWEEL # \xFE72 ARABIC DAMMATAN ISOLATED FORM AL 0020 064C ARABIC SPA # \xCING DAMMATAN # \xFE73 ARABIC TAIL FRAGMENT AL # \xFE74 ARABIC KASRATAN ISOLATED FORM AL 0020 064D ARABIC SPA # \xCING KASRATAN # \xFE76 ARABIC FATHA ISOLATED FORM AL 0020 064E ARABIC SPACIN # \xG FATHAH # \xFE77 ARABIC FATHA MEDIAL FORM AL 0640 064E ARABIC FATHAH # \xTATWEEL # \xFE78 ARABIC DAMMA ISOLATED FORM AL 0020 064F ARABIC SPACIN # \xG DAMMAH # \xFE79 ARABIC DAMMA MEDIAL FORM AL 0640 064F ARABIC DAMMAH # \xTATWEEL # \xFE7A ARABIC KASRA ISOLATED FORM AL 0020 0650 ARABIC SPACIN # \xG KASRAH # \xFE7B ARABIC KASRA MEDIAL FORM AL 0640 0650 ARABIC KASRAH # \xTATWEEL # \xFE7C ARABIC SHADDA ISOLATED FORM AL 0020 0651 ARABIC SPACI # \xNG SHADDAH # \xFE7D ARABIC SHADDA MEDIAL FORM AL 0640 0651 ARABIC SHADDAH O # \xN TATWEEL # \xFE7E ARABIC SUKUN ISOLATED FORM AL 0020 0652 ARABIC SPACIN # \xG SUKUN # \xFE7F ARABIC SUKUN MEDIAL FORM AL 0640 0652 ARABIC SUKUN T # \xATWEEL # \xFE80 ARABIC LETTER HAMZA ISOLATED FORM AL 0621 GLYPH FOR I # \xSOLATE ARABIC HAMZAH # \xFE81 ARABIC LETTER ALEF WITH MADDA ABOVE ISOLATED FORM AL 0622 # \x GLYPH FOR ISOLATE ARABIC MADDAH ALEF # \xFE82 ARABIC LETTER ALEF WITH MADDA ABOVE FINAL FORM AL 0622 G # \xLYPH FOR FINAL ARABIC MADDAH ALEF # \xFE83 ARABIC LETTER ALEF WITH HAMZA ABOVE ISOLATED FORM AL 0623 # \x GLYPH FOR ISOLATE ARABIC HAMZAH ALEF # \xFE84 ARABIC LETTER ALEF WITH HAMZA ABOVE FINAL FORM AL 0623 G # \xLYPH FOR FINAL ARABIC HAMZAH ALEF # \xFE85 ARABIC LETTER WAW WITH HAMZA ABOVE ISOLATED FORM AL 0624 # \x GLYPH FOR ISOLATE ARABIC HAMZAH WAW # \xFE86 ARABIC LETTER WAW WITH HAMZA ABOVE FINAL FORM AL 0624 GL # \xYPH FOR FINAL ARABIC HAMZAH WAW # \xFE87 ARABIC LETTER ALEF WITH HAMZA BELOW ISOLATED FORM AL 0625 # \x GLYPH FOR ISOLATE ARABIC HAMZAH UNDER ALEF # \xFE88 ARABIC LETTER ALEF WITH HAMZA BELOW FINAL FORM AL 0625 G # \xLYPH FOR FINAL ARABIC HAMZAH UNDER ALEF # \xFE89 ARABIC LETTER YEH WITH HAMZA ABOVE ISOLATED FORM AL 0626 # \x GLYPH FOR ISOLATE ARABIC HAMZAH YA # \xFE8A ARABIC LETTER YEH WITH HAMZA ABOVE FINAL FORM AL 0626 GL # \xYPH FOR FINAL ARABIC HAMZAH YA # \xFE8B ARABIC LETTER YEH WITH HAMZA ABOVE INITIAL FORM AL 0626 # \xN GLYPH FOR INITIAL ARABIC HAMZAH YA # \xFE8C ARABIC LETTER YEH WITH HAMZA ABOVE MEDIAL FORM AL 0626 # \xGLYPH FOR MEDIAL ARABIC HAMZAH YA # \xFE8D ARABIC LETTER ALEF ISOLATED FORM AL 0627 GLYPH FOR IS # \xOLATE ARABIC ALEF # \xFE8E ARABIC LETTER ALEF FINAL FORM AL 0627 GLYPH FOR FINAL AR # \xABIC ALEF # \xFE8F ARABIC LETTER BEH ISOLATED FORM AL 0628 GLYPH FOR ISO # \xLATE ARABIC BAA # \xFE90 ARABIC LETTER BEH FINAL FORM AL 0628 GLYPH FOR FINAL ARA # \xBIC BAA # \xFE91 ARABIC LETTER BEH INITIAL FORM AL 0628 GLYPH FOR INITI # \xAL ARABIC BAA # \xFE92 ARABIC LETTER BEH MEDIAL FORM AL 0628 GLYPH FOR MEDIAL # \xARABIC BAA # \xFE93 ARABIC LETTER TEH MARBUTA ISOLATED FORM AL 0629 GLYPH # \x FOR ISOLATE ARABIC TAA MARBUTAH # \xFE94 ARABIC LETTER TEH MARBUTA FINAL FORM AL 0629 GLYPH FOR F # \xINAL ARABIC TAA MARBUTAH # \xFE95 ARABIC LETTER TEH ISOLATED FORM AL 062A GLYPH FOR ISO # \xLATE ARABIC TAA # \xFE96 ARABIC LETTER TEH FINAL FORM AL 062A GLYPH FOR FINAL ARA # \xBIC TAA # \xFE97 ARABIC LETTER TEH INITIAL FORM AL 062A GLYPH FOR INITI # \xAL ARABIC TAA # \xFE98 ARABIC LETTER TEH MEDIAL FORM AL 062A GLYPH FOR MEDIAL # \xARABIC TAA # \xFE99 ARABIC LETTER THEH ISOLATED FORM AL 062B GLYPH FOR IS # \xOLATE ARABIC THAA # \xFE9A ARABIC LETTER THEH FINAL FORM AL 062B GLYPH FOR FINAL AR # \xABIC THAA # \xFE9B ARABIC LETTER THEH INITIAL FORM AL 062B GLYPH FOR INIT # \xIAL ARABIC THAA # \xFE9C ARABIC LETTER THEH MEDIAL FORM AL 062B GLYPH FOR MEDIAL # \x ARABIC THAA # \xFE9D ARABIC LETTER JEEM ISOLATED FORM AL 062C GLYPH FOR IS # \xOLATE ARABIC JEEM # \xFE9E ARABIC LETTER JEEM FINAL FORM AL 062C GLYPH FOR FINAL AR # \xABIC JEEM # \xFE9F ARABIC LETTER JEEM INITIAL FORM AL 062C GLYPH FOR INIT # \xIAL ARABIC JEEM # \xFEA0 ARABIC LETTER JEEM MEDIAL FORM AL 062C GLYPH FOR MEDIAL # \x ARABIC JEEM # \xFEA1 ARABIC LETTER HAH ISOLATED FORM AL 062D GLYPH FOR ISO # \xLATE ARABIC HAA # \xFEA2 ARABIC LETTER HAH FINAL FORM AL 062D GLYPH FOR FINAL ARA # \xBIC HAA # \xFEA3 ARABIC LETTER HAH INITIAL FORM AL 062D GLYPH FOR INITI # \xAL ARABIC HAA # \xFEA4 ARABIC LETTER HAH MEDIAL FORM AL 062D GLYPH FOR MEDIAL # \xARABIC HAA # \xFEA5 ARABIC LETTER KHAH ISOLATED FORM AL 062E GLYPH FOR IS # \xOLATE ARABIC KHAA # \xFEA6 ARABIC LETTER KHAH FINAL FORM AL 062E GLYPH FOR FINAL AR # \xABIC KHAA # \xFEA7 ARABIC LETTER KHAH INITIAL FORM AL 062E GLYPH FOR INIT # \xIAL ARABIC KHAA # \xFEA8 ARABIC LETTER KHAH MEDIAL FORM AL 062E GLYPH FOR MEDIAL # \x ARABIC KHAA # \xFEA9 ARABIC LETTER DAL ISOLATED FORM AL 062F GLYPH FOR ISO # \xLATE ARABIC DAL # \xFEAA ARABIC LETTER DAL FINAL FORM AL 062F GLYPH FOR FINAL ARA # \xBIC DAL # \xFEAB ARABIC LETTER THAL ISOLATED FORM AL 0630 GLYPH FOR IS # \xOLATE ARABIC THAL # \xFEAC ARABIC LETTER THAL FINAL FORM AL 0630 GLYPH FOR FINAL AR # \xABIC THAL # \xFEAD ARABIC LETTER REH ISOLATED FORM AL 0631 GLYPH FOR ISO # \xLATE ARABIC RA # \xFEAE ARABIC LETTER REH FINAL FORM AL 0631 GLYPH FOR FINAL ARA # \xBIC RA # \xFEAF ARABIC LETTER ZAIN ISOLATED FORM AL 0632 GLYPH FOR IS # \xOLATE ARABIC ZAIN # \xFEB0 ARABIC LETTER ZAIN FINAL FORM AL 0632 GLYPH FOR FINAL AR # \xABIC ZAIN # \xFEB1 ARABIC LETTER SEEN ISOLATED FORM AL 0633 GLYPH FOR IS # \xOLATE ARABIC SEEN # \xFEB2 ARABIC LETTER SEEN FINAL FORM AL 0633 GLYPH FOR FINAL AR # \xABIC SEEN # \xFEB3 ARABIC LETTER SEEN INITIAL FORM AL 0633 GLYPH FOR INIT # \xIAL ARABIC SEEN # \xFEB4 ARABIC LETTER SEEN MEDIAL FORM AL 0633 GLYPH FOR MEDIAL # \x ARABIC SEEN # \xFEB5 ARABIC LETTER SHEEN ISOLATED FORM AL 0634 GLYPH FOR I # \xSOLATE ARABIC SHEEN # \xFEB6 ARABIC LETTER SHEEN FINAL FORM AL 0634 GLYPH FOR FINAL A # \xRABIC SHEEN # \xFEB7 ARABIC LETTER SHEEN INITIAL FORM AL 0634 GLYPH FOR INI # \xTIAL ARABIC SHEEN # \xFEB8 ARABIC LETTER SHEEN MEDIAL FORM AL 0634 GLYPH FOR MEDIA # \xL ARABIC SHEEN # \xFEB9 ARABIC LETTER SAD ISOLATED FORM AL 0635 GLYPH FOR ISO # \xLATE ARABIC SAD # \xFEBA ARABIC LETTER SAD FINAL FORM AL 0635 GLYPH FOR FINAL ARA # \xBIC SAD # \xFEBB ARABIC LETTER SAD INITIAL FORM AL 0635 GLYPH FOR INITI # \xAL ARABIC SAD # \xFEBC ARABIC LETTER SAD MEDIAL FORM AL 0635 GLYPH FOR MEDIAL # \xARABIC SAD # \xFEBD ARABIC LETTER DAD ISOLATED FORM AL 0636 GLYPH FOR ISO # \xLATE ARABIC DAD # \xFEBE ARABIC LETTER DAD FINAL FORM AL 0636 GLYPH FOR FINAL ARA # \xBIC DAD # \xFEBF ARABIC LETTER DAD INITIAL FORM AL 0636 GLYPH FOR INITI # \xAL ARABIC DAD # \xFEC0 ARABIC LETTER DAD MEDIAL FORM AL 0636 GLYPH FOR MEDIAL # \xARABIC DAD # \xFEC1 ARABIC LETTER TAH ISOLATED FORM AL 0637 GLYPH FOR ISO # \xLATE ARABIC TAH # \xFEC2 ARABIC LETTER TAH FINAL FORM AL 0637 GLYPH FOR FINAL ARA # \xBIC TAH # \xFEC3 ARABIC LETTER TAH INITIAL FORM AL 0637 GLYPH FOR INITI # \xAL ARABIC TAH # \xFEC4 ARABIC LETTER TAH MEDIAL FORM AL 0637 GLYPH FOR MEDIAL # \xARABIC TAH # \xFEC5 ARABIC LETTER ZAH ISOLATED FORM AL 0638 GLYPH FOR ISO # \xLATE ARABIC DHAH # \xFEC6 ARABIC LETTER ZAH FINAL FORM AL 0638 GLYPH FOR FINAL ARA # \xBIC DHAH # \xFEC7 ARABIC LETTER ZAH INITIAL FORM AL 0638 GLYPH FOR INITI # \xAL ARABIC DHAH # \xFEC8 ARABIC LETTER ZAH MEDIAL FORM AL 0638 GLYPH FOR MEDIAL # \xARABIC DHAH # \xFEC9 ARABIC LETTER AIN ISOLATED FORM AL 0639 GLYPH FOR ISO # \xLATE ARABIC AIN # \xFECA ARABIC LETTER AIN FINAL FORM AL 0639 GLYPH FOR FINAL ARA # \xBIC AIN # \xFECB ARABIC LETTER AIN INITIAL FORM AL 0639 GLYPH FOR INITI # \xAL ARABIC AIN # \xFECC ARABIC LETTER AIN MEDIAL FORM AL 0639 GLYPH FOR MEDIAL # \xARABIC AIN # \xFECD ARABIC LETTER GHAIN ISOLATED FORM AL 063A GLYPH FOR I # \xSOLATE ARABIC GHAIN # \xFECE ARABIC LETTER GHAIN FINAL FORM AL 063A GLYPH FOR FINAL A # \xRABIC GHAIN # \xFECF ARABIC LETTER GHAIN INITIAL FORM AL 063A GLYPH FOR INI # \xTIAL ARABIC GHAIN # \xFED0 ARABIC LETTER GHAIN MEDIAL FORM AL 063A GLYPH FOR MEDIA # \xL ARABIC GHAIN # \xFED1 ARABIC LETTER FEH ISOLATED FORM AL 0641 GLYPH FOR ISO # \xLATE ARABIC FA # \xFED2 ARABIC LETTER FEH FINAL FORM AL 0641 GLYPH FOR FINAL ARA # \xBIC FA # \xFED3 ARABIC LETTER FEH INITIAL FORM AL 0641 GLYPH FOR INITI # \xAL ARABIC FA # \xFED4 ARABIC LETTER FEH MEDIAL FORM AL 0641 GLYPH FOR MEDIAL # \xARABIC FA # \xFED5 ARABIC LETTER QAF ISOLATED FORM AL 0642 GLYPH FOR ISO # \xLATE ARABIC QAF # \xFED6 ARABIC LETTER QAF FINAL FORM AL 0642 GLYPH FOR FINAL ARA # \xBIC QAF # \xFED7 ARABIC LETTER QAF INITIAL FORM AL 0642 GLYPH FOR INITI # \xAL ARABIC QAF # \xFED8 ARABIC LETTER QAF MEDIAL FORM AL 0642 GLYPH FOR MEDIAL # \xARABIC QAF # \xFED9 ARABIC LETTER KAF ISOLATED FORM AL 0643 GLYPH FOR ISO # \xLATE ARABIC CAF # \xFEDA ARABIC LETTER KAF FINAL FORM AL 0643 GLYPH FOR FINAL ARA # \xBIC CAF # \xFEDB ARABIC LETTER KAF INITIAL FORM AL 0643 GLYPH FOR INITI # \xAL ARABIC CAF # \xFEDC ARABIC LETTER KAF MEDIAL FORM AL 0643 GLYPH FOR MEDIAL # \xARABIC CAF # \xFEDD ARABIC LETTER LAM ISOLATED FORM AL 0644 GLYPH FOR ISO # \xLATE ARABIC LAM # \xFEDE ARABIC LETTER LAM FINAL FORM AL 0644 GLYPH FOR FINAL ARA # \xBIC LAM # \xFEDF ARABIC LETTER LAM INITIAL FORM AL 0644 GLYPH FOR INITI # \xAL ARABIC LAM # \xFEE0 ARABIC LETTER LAM MEDIAL FORM AL 0644 GLYPH FOR MEDIAL # \xARABIC LAM # \xFEE1 ARABIC LETTER MEEM ISOLATED FORM AL 0645 GLYPH FOR IS # \xOLATE ARABIC MEEM # \xFEE2 ARABIC LETTER MEEM FINAL FORM AL 0645 GLYPH FOR FINAL AR # \xABIC MEEM # \xFEE3 ARABIC LETTER MEEM INITIAL FORM AL 0645 GLYPH FOR INIT # \xIAL ARABIC MEEM # \xFEE4 ARABIC LETTER MEEM MEDIAL FORM AL 0645 GLYPH FOR MEDIAL # \x ARABIC MEEM # \xFEE5 ARABIC LETTER NOON ISOLATED FORM AL 0646 GLYPH FOR IS # \xOLATE ARABIC NOON # \xFEE6 ARABIC LETTER NOON FINAL FORM AL 0646 GLYPH FOR FINAL AR # \xABIC NOON # \xFEE7 ARABIC LETTER NOON INITIAL FORM AL 0646 GLYPH FOR INIT # \xIAL ARABIC NOON # \xFEE8 ARABIC LETTER NOON MEDIAL FORM AL 0646 GLYPH FOR MEDIAL # \x ARABIC NOON # \xFEE9 ARABIC LETTER HEH ISOLATED FORM AL 0647 GLYPH FOR ISO # \xLATE ARABIC HA # \xFEEA ARABIC LETTER HEH FINAL FORM AL 0647 GLYPH FOR FINAL ARA # \xBIC HA # \xFEEB ARABIC LETTER HEH INITIAL FORM AL 0647 GLYPH FOR INITI # \xAL ARABIC HA # \xFEEC ARABIC LETTER HEH MEDIAL FORM AL 0647 GLYPH FOR MEDIAL # \xARABIC HA # \xFEED ARABIC LETTER WAW ISOLATED FORM AL 0648 GLYPH FOR ISO # \xLATE ARABIC WAW # \xFEEE ARABIC LETTER WAW FINAL FORM AL 0648 GLYPH FOR FINAL ARA # \xBIC WAW # \xFEEF ARABIC LETTER ALEF MAKSURA ISOLATED FORM AL 0649 GLYP # \xH FOR ISOLATE ARABIC ALEF MAQSURAH # \xFEF0 ARABIC LETTER ALEF MAKSURA FINAL FORM AL 0649 GLYPH FOR # \xFINAL ARABIC ALEF MAQSURAH # \xFEF1 ARABIC LETTER YEH ISOLATED FORM AL 064A GLYPH FOR ISO # \xLATE ARABIC YA # \xFEF2 ARABIC LETTER YEH FINAL FORM AL 064A GLYPH FOR FINAL ARA # \xBIC YA # \xFEF3 ARABIC LETTER YEH INITIAL FORM AL 064A GLYPH FOR INITI # \xAL ARABIC YA # \xFEF4 ARABIC LETTER YEH MEDIAL FORM AL 064A GLYPH FOR MEDIAL # \xARABIC YA # \xFEF5 ARABIC LIGATURE LAM WITH ALEF WITH MADDA ABOVE ISOLATED FORM AL 0644 0622 GLYPH FOR ISOLATE ARABIC MADDAH LIGATURE LAM ALEF # \xFEF6 ARABIC LIGATURE LAM WITH ALEF WITH MADDA ABOVE FINAL FORM AL # \x0644 0622 GLYPH FOR FINAL ARABIC MADDAH LIGATURE LAM ALEF # \xFEF7 ARABIC LIGATURE LAM WITH ALEF WITH HAMZA ABOVE ISOLATED FORM AL 0644 0623 GLYPH FOR ISOLATE ARABIC HAMZAH LIGATURE LAM ALEF # \xFEF8 ARABIC LIGATURE LAM WITH ALEF WITH HAMZA ABOVE FINAL FORM AL # \x0644 0623 GLYPH FOR FINAL ARABIC HAMZAH LIGATURE LAM ALEF # \xFEF9 ARABIC LIGATURE LAM WITH ALEF WITH HAMZA BELOW ISOLATED FORM AL 0644 0625 GLYPH FOR ISOLATE ARABIC HAMZAH UNDER LIGATURE LAM ALEF # \x # \xFEFA ARABIC LIGATURE LAM WITH ALEF WITH HAMZA BELOW FINAL FORM AL # \x0644 0625 GLYPH FOR FINAL ARABIC HAMZAH UNDER LIGATURE LAM ALEF # \xFEFB ARABIC LIGATURE LAM WITH ALEF ISOLATED FORM AL 0644 0627 # \x GLYPH FOR ISOLATE ARABIC LIGATURE LAM ALEF # \xFEFC ARABIC LIGATURE LAM WITH ALEF FINAL FORM AL 0644 0627 GL # \xYPH FOR FINAL ARABIC LIGATURE LAM ALEF # \xFEFF ZERO WIDTH NO-BREAK SPACE BYTE ORDER MARK # \xFF01 FULLWIDTH EXCLAMATION MARK 0021 # \xFF02 FULLWIDTH QUOTATION MARK 0022 # \xFF03 FULLWIDTH NUMBER SIGN 0023 # \xFF04 FULLWIDTH DOLLAR SIGN Sc 0024 # \xFF05 FULLWIDTH PERCENT SIGN 0025 # \xFF06 FULLWIDTH AMPERSAND 0026 # \xFF07 FULLWIDTH APOSTROPHE 0027 # \xFF08 FULLWIDTH LEFT PARENTHESIS Ps 0028 Y FULLWIDTH OPENING PARE # \xNTHESIS # \xFF09 FULLWIDTH RIGHT PARENTHESIS Pe 0029 Y FULLWIDTH CLOSING PAR # \xENTHESIS # \xFF0A FULLWIDTH ASTERISK 002A # \xFF0B FULLWIDTH PLUS SIGN 002B # \xFF0C FULLWIDTH COMMA CS 002C # \xFF0D FULLWIDTH HYPHEN-MINUS 002D # \xFF0E FULLWIDTH FULL STOP CS 002E FULLWIDTH PERIOD # \xFF0F FULLWIDTH SOLIDUS ES 002F FULLWIDTH SLASH # \xFF10 FULLWIDTH DIGIT ZERO Nd EN 0030 0 # \xFF11 FULLWIDTH DIGIT ONE Nd EN 0031 1 1 1 # \xFF12 FULLWIDTH DIGIT TWO Nd EN 0032 2 2 2 # \xFF13 FULLWIDTH DIGIT THREE Nd EN 0033 3 3 3 # \xFF14 FULLWIDTH DIGIT FOUR Nd EN 0034 4 4 4 # \xFF15 FULLWIDTH DIGIT FIVE Nd EN 0035 5 5 5 # \xFF16 FULLWIDTH DIGIT SIX Nd EN 0036 6 6 6 # \xFF17 FULLWIDTH DIGIT SEVEN Nd EN 0037 7 7 7 # \xFF18 FULLWIDTH DIGIT EIGHT Nd EN 0038 8 8 8 # \xFF19 FULLWIDTH DIGIT NINE Nd EN 0039 9 9 9 # \xFF1A FULLWIDTH COLON CS 003A # \xFF1B FULLWIDTH SEMICOLON 003B # \xFF1C FULLWIDTH LESS-THAN SIGN 003C Y # \xFF1D FULLWIDTH EQUALS SIGN 003D # \xFF1E FULLWIDTH GREATER-THAN SIGN 003E Y # \xFF1F FULLWIDTH QUESTION MARK 003F # \xFF20 FULLWIDTH COMMERCIAL AT 0040 # \xFF21 FULLWIDTH LATIN CAPITAL LETTER A 0041 FF41 # \xFF22 FULLWIDTH LATIN CAPITAL LETTER B 0042 FF42 # \xFF23 FULLWIDTH LATIN CAPITAL LETTER C 0043 FF43 # \xFF24 FULLWIDTH LATIN CAPITAL LETTER D 0044 FF44 # \xFF25 FULLWIDTH LATIN CAPITAL LETTER E 0045 FF45 # \xFF26 FULLWIDTH LATIN CAPITAL LETTER F 0046 FF46 # \xFF27 FULLWIDTH LATIN CAPITAL LETTER G 0047 FF47 # \xFF28 FULLWIDTH LATIN CAPITAL LETTER H 0048 FF48 # \xFF29 FULLWIDTH LATIN CAPITAL LETTER I 0049 FF49 # \xFF2A FULLWIDTH LATIN CAPITAL LETTER J 004A FF4A # \xFF2B FULLWIDTH LATIN CAPITAL LETTER K 004B FF4B # \xFF2C FULLWIDTH LATIN CAPITAL LETTER 004C FF4C # \xFF2D FULLWIDTH LATIN CAPITAL LETTER M 004D FF4D # \xFF2E FULLWIDTH LATIN CAPITAL LETTER 004E FF4E # \xFF2F FULLWIDTH LATIN CAPITAL LETTER O 004F FF4F # \xFF30 FULLWIDTH LATIN CAPITAL LETTER P 0050 FF50 # \xFF31 FULLWIDTH LATIN CAPITAL LETTER Q 0051 FF51 # \xFF32 FULLWIDTH LATIN CAPITAL LETTER 0052 FF52 # \xFF33 FULLWIDTH LATIN CAPITAL LETTER S 0053 FF53 # \xFF34 FULLWIDTH LATIN CAPITAL LETTER T 0054 FF54 # \xFF35 FULLWIDTH LATIN CAPITAL LETTER U 0055 FF55 # \xFF36 FULLWIDTH LATIN CAPITAL LETTER V 0056 FF56 # \xFF37 FULLWIDTH LATIN CAPITAL LETTER W 0057 FF57 # \xFF38 FULLWIDTH LATIN CAPITAL LETTER X 0058 FF58 # \xFF39 FULLWIDTH LATIN CAPITAL LETTER Y 0059 FF59 # \xFF3A FULLWIDTH LATIN CAPITAL LETTER Z 005A FF5A # \xFF3B FULLWIDTH LEFT SQUARE BRACKET Ps 005B Y FULLWIDTH OPENING S # \xQUARE BRACKET # \xFF3C FULLWIDTH REVERSE SOLIDUS 005C FULLWIDTH BACKSLASH # \xFF3D FULLWIDTH RIGHT SQUARE BRACKET Pe 005D Y FULLWIDTH CLOSING # \xSQUARE BRACKET # \xFF3E FULLWIDTH CIRCUMFLEX ACCENT 005E FULLWIDTH SPACING CIR # \xCUMFLEX # \xFF3F FULLWIDTH LOW LINE Pc 005F FULLWIDTH SPACING UNDERSCORE # \x # \xFF40 FULLWIDTH GRAVE ACCENT 0060 FULLWIDTH SPACING GRAVE # \x # \xFF41 FULLWIDTH LATIN SMALL LETTER A 0061 FF21 FF21 # \xFF42 FULLWIDTH LATIN SMALL LETTER B 0062 FF22 FF22 # \xFF43 FULLWIDTH LATIN SMALL LETTER C 0063 FF23 FF23 # \xFF44 FULLWIDTH LATIN SMALL LETTER D 0064 FF24 FF24 # \xFF45 FULLWIDTH LATIN SMALL LETTER E 0065 FF25 FF25 # \xFF46 FULLWIDTH LATIN SMALL LETTER F 0066 FF26 FF26 # \xFF47 FULLWIDTH LATIN SMALL LETTER G 0067 FF27 FF27 # \xFF48 FULLWIDTH LATIN SMALL LETTER H 0068 FF28 FF28 # \xFF49 FULLWIDTH LATIN SMALL LETTER I 0069 FF29 FF29 # \xFF4A FULLWIDTH LATIN SMALL LETTER J 006A FF2A FF2A # \xFF4B FULLWIDTH LATIN SMALL LETTER K 006B FF2B FF2B # \xFF4C FULLWIDTH LATIN SMALL LETTER 006C FF2C FF2C # \xFF4D FULLWIDTH LATIN SMALL LETTER M 006D FF2D FF2D # \xFF4E FULLWIDTH LATIN SMALL LETTER 006E FF2E FF2E # \xFF4F FULLWIDTH LATIN SMALL LETTER O 006F FF2F FF2F # \xFF50 FULLWIDTH LATIN SMALL LETTER P 0070 FF30 FF30 # \xFF51 FULLWIDTH LATIN SMALL LETTER Q 0071 FF31 FF31 # \xFF52 FULLWIDTH LATIN SMALL LETTER 0072 FF32 FF32 # \xFF53 FULLWIDTH LATIN SMALL LETTER S 0073 FF33 FF33 # \xFF54 FULLWIDTH LATIN SMALL LETTER T 0074 FF34 FF34 # \xFF55 FULLWIDTH LATIN SMALL LETTER U 0075 FF35 FF35 # \xFF56 FULLWIDTH LATIN SMALL LETTER V 0076 FF36 FF36 # \xFF57 FULLWIDTH LATIN SMALL LETTER W 0077 FF37 FF37 # \xFF58 FULLWIDTH LATIN SMALL LETTER X 0078 FF38 FF38 # \xFF59 FULLWIDTH LATIN SMALL LETTER Y 0079 FF39 FF39 # \xFF5A FULLWIDTH LATIN SMALL LETTER Z 007A FF3A FF3A # \xFF5B FULLWIDTH LEFT CURLY BRACKET Ps 007B Y FULLWIDTH OPENING CU # \xRLY BRACKET # \xFF5C FULLWIDTH VERTICAL LINE 007C FULLWIDTH VERTICAL BAR # \x # \xFF5D FULLWIDTH RIGHT CURLY BRACKET Pe 007D Y FULLWIDTH CLOSING C # \xURLY BRACKET # \xFF5E FULLWIDTH TILDE 007E FULLWIDTH SPACING TILDE # \xFF5F FULLWIDTH LEFT WHITE PARENTHESIS Ps 2985 Y * # \xFF60 FULLWIDTH RIGHT WHITE PARENTHESIS Pe 2986 Y * # \xFF61 HALFWIDTH IDEOGRAPHIC FULL STOP 3002 HALFWIDTH IDEOG # \xRAPHIC PERIOD # \xFF62 HALFWIDTH LEFT CORNER BRACKET Ps 300C Y HALFWIDTH OPENING # \x CORNER BRACKET # \xFF63 HALFWIDTH RIGHT CORNER BRACKET Pe 300D Y HALFWIDTH CLOSIN # \xG CORNER BRACKET # \xFF64 HALFWIDTH IDEOGRAPHIC COMMA 3001 # \xFF65 HALFWIDTH KATAKANA MIDDLE DOT Pc 30FB # \xFF66 HALFWIDTH KATAKANA LETTER WO 30F2 # \xFF67 HALFWIDTH KATAKANA LETTER SMALL A 30A1 # \xFF68 HALFWIDTH KATAKANA LETTER SMALL I 30A3 # \xFF69 HALFWIDTH KATAKANA LETTER SMALL U 30A5 # \xFF6A HALFWIDTH KATAKANA LETTER SMALL E 30A7 # \xFF6B HALFWIDTH KATAKANA LETTER SMALL O 30A9 # \xFF6C HALFWIDTH KATAKANA LETTER SMALL YA 30E3 # \xFF6D HALFWIDTH KATAKANA LETTER SMALL YU 30E5 # \xFF6E HALFWIDTH KATAKANA LETTER SMALL YO 30E7 # \xFF6F HALFWIDTH KATAKANA LETTER SMALL TU 30C3 # \xFF70 HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK Lm 30FC N # \x # \xFF71 HALFWIDTH KATAKANA LETTER A 30A2 # \xFF72 HALFWIDTH KATAKANA LETTER I 30A4 # \xFF73 HALFWIDTH KATAKANA LETTER U 30A6 # \xFF74 HALFWIDTH KATAKANA LETTER E 30A8 # \xFF75 HALFWIDTH KATAKANA LETTER O 30AA # \xFF76 HALFWIDTH KATAKANA LETTER KA 30AB # \xFF77 HALFWIDTH KATAKANA LETTER KI 30AD # \xFF78 HALFWIDTH KATAKANA LETTER KU 30AF # \xFF79 HALFWIDTH KATAKANA LETTER KE 30B1 # \xFF7A HALFWIDTH KATAKANA LETTER KO 30B3 # \xFF7B HALFWIDTH KATAKANA LETTER SA 30B5 # \xFF7C HALFWIDTH KATAKANA LETTER SI 30B7 # \xFF7D HALFWIDTH KATAKANA LETTER SU 30B9 # \xFF7E HALFWIDTH KATAKANA LETTER SE 30BB # \xFF7F HALFWIDTH KATAKANA LETTER 30BD # \xFF80 HALFWIDTH KATAKANA LETTER TA 30BF # \xFF81 HALFWIDTH KATAKANA LETTER TI 30C1 # \xFF82 HALFWIDTH KATAKANA LETTER TU 30C4 # \xFF83 HALFWIDTH KATAKANA LETTER TE 30C6 # \xFF84 HALFWIDTH KATAKANA LETTER TO 30C8 # \xFF85 HALFWIDTH KATAKANA LETTER NA 30CA # \xFF86 HALFWIDTH KATAKANA LETTER NI 30CB # \xFF87 HALFWIDTH KATAKANA LETTER NU 30CC # \xFF88 HALFWIDTH KATAKANA LETTER NE 30CD # \xFF89 HALFWIDTH KATAKANA LETTER NO 30CE # \xFF8A HALFWIDTH KATAKANA LETTER HA 30CF # \xFF8B HALFWIDTH KATAKANA LETTER HI 30D2 # \xFF8C HALFWIDTH KATAKANA LETTER HU 30D5 # \xFF8D HALFWIDTH KATAKANA LETTER HE 30D8 # \xFF8E HALFWIDTH KATAKANA LETTER HO 30DB # \xFF8F HALFWIDTH KATAKANA LETTER MA 30DE # \xFF90 HALFWIDTH KATAKANA LETTER MI 30DF # \xFF91 HALFWIDTH KATAKANA LETTER MU 30E0 # \xFF92 HALFWIDTH KATAKANA LETTER ME 30E1 # \xFF93 HALFWIDTH KATAKANA LETTER MO 30E2 # \xFF94 HALFWIDTH KATAKANA LETTER YA 30E4 # \xFF95 HALFWIDTH KATAKANA LETTER YU 30E6 # \xFF96 HALFWIDTH KATAKANA LETTER YO 30E8 # \xFF97 HALFWIDTH KATAKANA LETTER RA 30E9 # \xFF98 HALFWIDTH KATAKANA LETTER RI 30EA # \xFF99 HALFWIDTH KATAKANA LETTER RU 30EB # \xFF9A HALFWIDTH KATAKANA LETTER RE 30EC # \xFF9B HALFWIDTH KATAKANA LETTER RO 30ED # \xFF9C HALFWIDTH KATAKANA LETTER WA 30EF # \xFF9D HALFWIDTH KATAKANA LETTER 30F3 # \xFF9E HALFWIDTH KATAKANA VOICED SOUND MARK Lm 3099 halfwidth # \xkatakana-hiragana voiced sound mark # \xFF9F HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK Lm 309A halfw # \xidth katakana-hiragana semi-voiced sound mark # \xFFA0 HALFWIDTH HANGUL FILLER 3164 HALFWIDTH HANGUL CAE OM # \x # \xFFA1 HALFWIDTH HANGUL LETTER KIYEOK 3131 HALFWIDTH HANGUL # \xLETTER GIYEOG # \xFFA2 HALFWIDTH HANGUL LETTER SSANGKIYEOK 3132 HALFWIDTH HA # \xNGUL LETTER SSANG GIYEOG # \xFFA3 HALFWIDTH HANGUL LETTER KIYEOK-SIOS 3133 HALFWIDTH HA # \xNGUL LETTER GIYEOG SIOS # \xFFA4 HALFWIDTH HANGUL LETTER NIEUN 3134 # \xFFA5 HALFWIDTH HANGUL LETTER NIEUN-CIEUC 3135 HALFWIDTH HA # \xNGUL LETTER NIEUN JIEUJ # \xFFA6 HALFWIDTH HANGUL LETTER NIEUN-HIEUH 3136 HALFWIDTH HA # \xNGUL LETTER NIEUN HIEUH # \xFFA7 HALFWIDTH HANGUL LETTER TIKEUT 3137 HALFWIDTH HANGUL # \xLETTER DIGEUD # \xFFA8 HALFWIDTH HANGUL LETTER SSANGTIKEUT 3138 HALFWIDTH HA # \xNGUL LETTER SSANG DIGEUD # \xFFA9 HALFWIDTH HANGUL LETTER RIEUL 3139 HALFWIDTH HANGUL L # \xETTER LIEUL # \xFFAA HALFWIDTH HANGUL LETTER RIEUL-KIYEOK 313A HALFWIDTH H # \xANGUL LETTER LIEUL GIYEOG # \xFFAB HALFWIDTH HANGUL LETTER RIEUL-MIEUM 313B HALFWIDTH HA # \xNGUL LETTER LIEUL MIEUM # \xFFAC HALFWIDTH HANGUL LETTER RIEUL-PIEUP 313C HALFWIDTH HA # \xNGUL LETTER LIEUL BIEUB # \xFFAD HALFWIDTH HANGUL LETTER RIEUL-SIOS 313D HALFWIDTH HAN # \xGUL LETTER LIEUL SIOS # \xFFAE HALFWIDTH HANGUL LETTER RIEUL-THIEUTH 313E HALFWIDTH # \xHANGUL LETTER LIEUL TIEUT # \xFFAF HALFWIDTH HANGUL LETTER RIEUL-PHIEUPH 313F HALFWIDTH # \xHANGUL LETTER LIEUL PIEUP # \xFFB0 HALFWIDTH HANGUL LETTER RIEUL-HIEUH 3140 HALFWIDTH HA # \xNGUL LETTER LIEUL HIEUH # \xFFB1 HALFWIDTH HANGUL LETTER MIEUM 3141 # \xFFB2 HALFWIDTH HANGUL LETTER PIEUP 3142 HALFWIDTH HANGUL L # \xETTER BIEUB # \xFFB3 HALFWIDTH HANGUL LETTER SSANGPIEUP 3143 HALFWIDTH HAN # \xGUL LETTER SSANG BIEUB # \xFFB4 HALFWIDTH HANGUL LETTER PIEUP-SIOS 3144 HALFWIDTH HAN # \xGUL LETTER BIEUB SIOS # \xFFB5 HALFWIDTH HANGUL LETTER SIOS 3145 # \xFFB6 HALFWIDTH HANGUL LETTER SSANGSIOS 3146 HALFWIDTH HANG # \xUL LETTER SSANG SIOS # \xFFB7 HALFWIDTH HANGUL LETTER IEUNG 3147 # \xFFB8 HALFWIDTH HANGUL LETTER CIEUC 3148 HALFWIDTH HANGUL L # \xETTER JIEUJ # \xFFB9 HALFWIDTH HANGUL LETTER SSANGCIEUC 3149 HALFWIDTH HAN # \xGUL LETTER SSANG JIEUJ # \xFFBA HALFWIDTH HANGUL LETTER CHIEUCH 314A HALFWIDTH HANGUL # \x LETTER CIEUC # \xFFBB HALFWIDTH HANGUL LETTER KHIEUKH 314B HALFWIDTH HANGUL # \x LETTER KIYEOK # \xFFBC HALFWIDTH HANGUL LETTER THIEUTH 314C HALFWIDTH HANGUL # \x LETTER TIEUT # \xFFBD HALFWIDTH HANGUL LETTER PHIEUPH 314D HALFWIDTH HANGUL # \x LETTER PIEUP # \xFFBE HALFWIDTH HANGUL LETTER HIEUH 314E # \xFFC2 HALFWIDTH HANGUL LETTER A 314F # \xFFC3 HALFWIDTH HANGUL LETTER AE 3150 # \xFFC4 HALFWIDTH HANGUL LETTER YA 3151 # \xFFC5 HALFWIDTH HANGUL LETTER YAE 3152 # \xFFC6 HALFWIDTH HANGUL LETTER EO 3153 # \xFFC7 HALFWIDTH HANGUL LETTER E 3154 # \xFFCA HALFWIDTH HANGUL LETTER YEO 3155 # \xFFCB HALFWIDTH HANGUL LETTER YE 3156 # \xFFCC HALFWIDTH HANGUL LETTER O 3157 # \xFFCD HALFWIDTH HANGUL LETTER WA 3158 # \xFFCE HALFWIDTH HANGUL LETTER WAE 3159 # \xFFCF HALFWIDTH HANGUL LETTER OE 315A # \xFFD2 HALFWIDTH HANGUL LETTER YO 315B # \xFFD3 HALFWIDTH HANGUL LETTER U 315C # \xFFD4 HALFWIDTH HANGUL LETTER WEO 315D # \xFFD5 HALFWIDTH HANGUL LETTER WE 315E # \xFFD6 HALFWIDTH HANGUL LETTER WI 315F # \xFFD7 HALFWIDTH HANGUL LETTER YU 3160 # \xFFDA HALFWIDTH HANGUL LETTER EU 3161 # \xFFDB HALFWIDTH HANGUL LETTER YI 3162 # \xFFDC HALFWIDTH HANGUL LETTER I 3163 # \xFFE0 FULLWIDTH CENT SIGN Sc 00A2 # \xFFE1 FULLWIDTH POUND SIGN Sc 00A3 # \xFFE2 FULLWIDTH NOT SIGN 00AC # \xFFE3 FULLWIDTH MACRON 00AF FULLWIDTH SPACING MACRON * # \xFFE4 FULLWIDTH BROKEN BAR 00A6 FULLWIDTH BROKEN VERTICAL BA # \xR # \xFFE5 FULLWIDTH YEN SIGN Sc 00A5 # \xFFE6 FULLWIDTH WON SIGN Sc 20A9 # \xFFE8 HALFWIDTH FORMS LIGHT VERTICAL 2502 # \xFFE9 HALFWIDTH LEFTWARDS ARROW 2190 # \xFFEA HALFWIDTH UPWARDS ARROW 2191 # \xFFEB HALFWIDTH RIGHTWARDS ARROW 2192 # \xFFEC HALFWIDTH DOWNWARDS ARROW 2193 # \xFFED HALFWIDTH BLACK SQUARE 25A0 # \xFFEE HALFWIDTH WHITE CIRCLE 25CB # \xFFF9 INTERLINEAR ANNOTATION ANCHOR # \xFFFA INTERLINEAR ANNOTATION SEPARATOR # \xFFFB INTERLINEAR ANNOTATION TERMINATOR # \xFFFC OBJECT REPLACEMENT CHARACTER # \xFFFD REPLACEMENT CHARACTER # \x10000 LINEAR B SYLLABLE B008 A # \x10001 LINEAR B SYLLABLE B038 E # \x10002 LINEAR B SYLLABLE B028 I # \x10003 LINEAR B SYLLABLE B061 O # \x10004 LINEAR B SYLLABLE B010 U # \x10005 LINEAR B SYLLABLE B001 DA # \x10006 LINEAR B SYLLABLE B045 DE # \x10007 LINEAR B SYLLABLE B007 DI # \x10008 LINEAR B SYLLABLE B014 DO # \x10009 LINEAR B SYLLABLE B051 DU # \x1000A LINEAR B SYLLABLE B057 JA # \x1000B LINEAR B SYLLABLE B046 JE # \x1000D LINEAR B SYLLABLE B036 JO # \x1000E LINEAR B SYLLABLE B065 JU # \x1000F LINEAR B SYLLABLE B077 KA # \x10010 LINEAR B SYLLABLE B044 KE # \x10011 LINEAR B SYLLABLE B067 KI # \x10012 LINEAR B SYLLABLE B070 KO # \x10013 LINEAR B SYLLABLE B081 KU # \x10014 LINEAR B SYLLABLE B080 MA # \x10015 LINEAR B SYLLABLE B013 ME # \x10016 LINEAR B SYLLABLE B073 MI # \x10017 LINEAR B SYLLABLE B015 MO # \x10018 LINEAR B SYLLABLE B023 MU # \x10019 LINEAR B SYLLABLE B006 NA # \x1001A LINEAR B SYLLABLE B024 NE # \x1001B LINEAR B SYLLABLE B030 NI # \x1001C LINEAR B SYLLABLE B052 NO # \x1001D LINEAR B SYLLABLE B055 NU # \x1001E LINEAR B SYLLABLE B003 PA # \x1001F LINEAR B SYLLABLE B072 PE # \x10020 LINEAR B SYLLABLE B039 PI # \x10021 LINEAR B SYLLABLE B011 # \x10022 LINEAR B SYLLABLE B050 PU # \x10023 LINEAR B SYLLABLE B016 QA # \x10024 LINEAR B SYLLABLE B078 QE # \x10025 LINEAR B SYLLABLE B021 QI # \x10026 LINEAR B SYLLABLE B032 QO # \x10028 LINEAR B SYLLABLE B060 RA # \x10029 LINEAR B SYLLABLE B027 RE # \x1002A LINEAR B SYLLABLE B053 RI # \x1002B LINEAR B SYLLABLE B002 RO # \x1002C LINEAR B SYLLABLE B026 RU # \x1002D LINEAR B SYLLABLE B031 SA # \x1002E LINEAR B SYLLABLE B009 SE # \x1002F LINEAR B SYLLABLE B041 SI # \x10030 LINEAR B SYLLABLE B012 # \x10031 LINEAR B SYLLABLE B058 SU # \x10032 LINEAR B SYLLABLE B059 TA # \x10033 LINEAR B SYLLABLE B004 TE # \x10034 LINEAR B SYLLABLE B037 TI # \x10035 LINEAR B SYLLABLE B005 TO # \x10036 LINEAR B SYLLABLE B069 TU # \x10037 LINEAR B SYLLABLE B054 WA # \x10038 LINEAR B SYLLABLE B075 WE # \x10039 LINEAR B SYLLABLE B040 WI # \x1003A LINEAR B SYLLABLE B042 WO # \x1003C LINEAR B SYLLABLE B017 ZA # \x1003D LINEAR B SYLLABLE B074 ZE # \x1003F LINEAR B SYLLABLE B020 ZO # \x10040 LINEAR B SYLLABLE B025 A2 # \x10041 LINEAR B SYLLABLE B043 A3 # \x10042 LINEAR B SYLLABLE B085 AU # \x10043 LINEAR B SYLLABLE B071 DWE # \x10044 LINEAR B SYLLABLE B090 DWO # \x10045 LINEAR B SYLLABLE B048 NWA # \x10046 LINEAR B SYLLABLE B029 PU2 # \x10047 LINEAR B SYLLABLE B062 PTE # \x10048 LINEAR B SYLLABLE B076 RA2 # \x10049 LINEAR B SYLLABLE B033 RA3 # \x1004A LINEAR B SYLLABLE B068 RO2 # \x1004B LINEAR B SYLLABLE B066 TA2 # \x1004C LINEAR B SYLLABLE B087 TWE # \x1004D LINEAR B SYLLABLE B091 TWO # \x10050 LINEAR B SYMBOL B018 # \x10051 LINEAR B SYMBOL B019 # \x10052 LINEAR B SYMBOL B022 # \x10053 LINEAR B SYMBOL B034 # \x10054 LINEAR B SYMBOL B047 # \x10055 LINEAR B SYMBOL B049 # \x10056 LINEAR B SYMBOL B056 # \x10057 LINEAR B SYMBOL B063 # \x10058 LINEAR B SYMBOL B064 # \x10059 LINEAR B SYMBOL B079 # \x1005A LINEAR B SYMBOL B082 # \x1005B LINEAR B SYMBOL B083 # \x1005C LINEAR B SYMBOL B086 # \x1005D LINEAR B SYMBOL B089 # \x10080 LINEAR B IDEOGRAM B100 MAN # \x10081 LINEAR B IDEOGRAM B102 WOMAN # \x10082 LINEAR B IDEOGRAM B104 DEER # \x10083 LINEAR B IDEOGRAM B105 EQUID # \x10084 LINEAR B IDEOGRAM B105F MARE # \x10085 LINEAR B IDEOGRAM B105M STALLION # \x10086 LINEAR B IDEOGRAM B106F EWE # \x10087 LINEAR B IDEOGRAM B106M RAM # \x10088 LINEAR B IDEOGRAM B107F SHE-GOAT # \x10089 LINEAR B IDEOGRAM B107M HE-GOAT # \x1008A LINEAR B IDEOGRAM B108F SOW # \x1008B LINEAR B IDEOGRAM B108M BOAR # \x1008C LINEAR B IDEOGRAM B109F COW # \x1008D LINEAR B IDEOGRAM B109M BULL # \x1008E LINEAR B IDEOGRAM B120 WHEAT # \x1008F LINEAR B IDEOGRAM B121 BARLEY # \x10090 LINEAR B IDEOGRAM B122 OLIVE # \x10091 LINEAR B IDEOGRAM B123 SPICE # \x10092 LINEAR B IDEOGRAM B125 CYPERUS # \x10093 LINEAR B MONOGRAM B127 KAPO # \x10094 LINEAR B MONOGRAM B128 KANAKO # \x10095 LINEAR B IDEOGRAM B130 OIL # \x10096 LINEAR B IDEOGRAM B131 WINE # \x10097 LINEAR B IDEOGRAM B132 # \x10098 LINEAR B MONOGRAM B133 AREPA # \x10099 LINEAR B MONOGRAM B135 MERI # \x1009A LINEAR B IDEOGRAM B140 BRONZE # \x1009B LINEAR B IDEOGRAM B141 GOLD # \x1009C LINEAR B IDEOGRAM B142 # \x1009D LINEAR B IDEOGRAM B145 WOOL # \x1009E LINEAR B IDEOGRAM B146 # \x1009F LINEAR B IDEOGRAM B150 # \x100A0 LINEAR B IDEOGRAM B151 HORN # \x100A1 LINEAR B IDEOGRAM B152 # \x100A2 LINEAR B IDEOGRAM B153 # \x100A3 LINEAR B IDEOGRAM B154 # \x100A4 LINEAR B MONOGRAM B156 TURO2 # \x100A5 LINEAR B IDEOGRAM B157 # \x100A6 LINEAR B IDEOGRAM B158 # \x100A7 LINEAR B IDEOGRAM B159 CLOTH # \x100A8 LINEAR B IDEOGRAM B160 # \x100A9 LINEAR B IDEOGRAM B161 # \x100AA LINEAR B IDEOGRAM B162 GARMENT # \x100AB LINEAR B IDEOGRAM B163 ARMOUR # \x100AC LINEAR B IDEOGRAM B164 # \x100AD LINEAR B IDEOGRAM B165 # \x100AE LINEAR B IDEOGRAM B166 # \x100AF LINEAR B IDEOGRAM B167 # \x100B0 LINEAR B IDEOGRAM B168 # \x100B1 LINEAR B IDEOGRAM B169 # \x100B2 LINEAR B IDEOGRAM B170 # \x100B3 LINEAR B IDEOGRAM B171 # \x100B4 LINEAR B IDEOGRAM B172 # \x100B5 LINEAR B IDEOGRAM B173 MONTH # \x100B6 LINEAR B IDEOGRAM B174 # \x100B7 LINEAR B IDEOGRAM B176 TREE # \x100B8 LINEAR B IDEOGRAM B177 # \x100B9 LINEAR B IDEOGRAM B178 # \x100BA LINEAR B IDEOGRAM B179 # \x100BB LINEAR B IDEOGRAM B180 # \x100BC LINEAR B IDEOGRAM B181 # \x100BD LINEAR B IDEOGRAM B182 # \x100BE LINEAR B IDEOGRAM B183 # \x100BF LINEAR B IDEOGRAM B184 # \x100C0 LINEAR B IDEOGRAM B185 # \x100C1 LINEAR B IDEOGRAM B189 # \x100C2 LINEAR B IDEOGRAM B190 # \x100C3 LINEAR B IDEOGRAM B191 HELMET # \x100C4 LINEAR B IDEOGRAM B220 FOOTSTOOL # \x100C5 LINEAR B IDEOGRAM B225 BATHTUB # \x100C6 LINEAR B IDEOGRAM B230 SPEAR # \x100C7 LINEAR B IDEOGRAM B231 ARROW # \x100C8 LINEAR B IDEOGRAM B232 # \x100C9 LINEAR B IDEOGRAM B233 SWORD pug # \x100CA LINEAR B IDEOGRAM B234 # \x100CB LINEAR B IDEOGRAM B236 gup # \x100CC LINEAR B IDEOGRAM B240 WHEELED CHARIOT # \x100CD LINEAR B IDEOGRAM B241 CHARIOT # \x100CE LINEAR B IDEOGRAM B242 CHARIOT FRAME # \x100CF LINEAR B IDEOGRAM B243 WHEEL # \x100D0 LINEAR B IDEOGRAM B245 # \x100D1 LINEAR B IDEOGRAM B246 # \x100D2 LINEAR B MONOGRAM B247 DIPTE # \x100D3 LINEAR B IDEOGRAM B248 # \x100D4 LINEAR B IDEOGRAM B249 # \x100D5 LINEAR B IDEOGRAM B251 # \x100D6 LINEAR B IDEOGRAM B252 # \x100D7 LINEAR B IDEOGRAM B253 # \x100D8 LINEAR B IDEOGRAM B254 DART # \x100D9 LINEAR B IDEOGRAM B255 # \x100DA LINEAR B IDEOGRAM B256 # \x100DB LINEAR B IDEOGRAM B257 # \x100DC LINEAR B IDEOGRAM B258 # \x100DD LINEAR B IDEOGRAM B259 # \x100DE LINEAR B IDEOGRAM VESSEL B155 # \x100DF LINEAR B IDEOGRAM VESSEL B200 # \x100E0 LINEAR B IDEOGRAM VESSEL B201 # \x100E1 LINEAR B IDEOGRAM VESSEL B202 # \x100E2 LINEAR B IDEOGRAM VESSEL B203 # \x100E3 LINEAR B IDEOGRAM VESSEL B204 # \x100E4 LINEAR B IDEOGRAM VESSEL B205 # \x100E5 LINEAR B IDEOGRAM VESSEL B206 # \x100E6 LINEAR B IDEOGRAM VESSEL B207 # \x100E7 LINEAR B IDEOGRAM VESSEL B208 # \x100E8 LINEAR B IDEOGRAM VESSEL B209 # \x100E9 LINEAR B IDEOGRAM VESSEL B210 # \x100EA LINEAR B IDEOGRAM VESSEL B211 # \x100EB LINEAR B IDEOGRAM VESSEL B212 # \x100EC LINEAR B IDEOGRAM VESSEL B213 # \x100ED LINEAR B IDEOGRAM VESSEL B214 # \x100EE LINEAR B IDEOGRAM VESSEL B215 # \x100EF LINEAR B IDEOGRAM VESSEL B216 # \x100F0 LINEAR B IDEOGRAM VESSEL B217 # \x100F1 LINEAR B IDEOGRAM VESSEL B218 # \x100F2 LINEAR B IDEOGRAM VESSEL B219 # \x100F3 LINEAR B IDEOGRAM VESSEL B221 # \x100F4 LINEAR B IDEOGRAM VESSEL B222 # \x100F5 LINEAR B IDEOGRAM VESSEL B226 # \x100F6 LINEAR B IDEOGRAM VESSEL B227 # \x100F7 LINEAR B IDEOGRAM VESSEL B228 # \x100F8 LINEAR B IDEOGRAM VESSEL B229 # \x100F9 LINEAR B IDEOGRAM VESSEL B250 # \x100FA LINEAR B IDEOGRAM VESSEL B305 # \x10100 AEGEAN WORD SEPARATOR LINE # \x10101 AEGEAN WORD SEPARATOR DOT # \x10102 AEGEAN CHECK MARK # \x10107 AEGEAN NUMBER ONE No 1 # \x10108 AEGEAN NUMBER TWO No 2 # \x10109 AEGEAN NUMBER THREE No 3 # \x1010A AEGEAN NUMBER FOUR No 4 # \x1010B AEGEAN NUMBER FIVE No 5 # \x1010C AEGEAN NUMBER SIX No 6 # \x1010D AEGEAN NUMBER SEVEN No 7 # \x1010E AEGEAN NUMBER EIGHT No 8 # \x1010F AEGEAN NUMBER NINE No 9 # \x10110 AEGEAN NUMBER TEN No 10 # \x10111 AEGEAN NUMBER TWENTY No 20 # \x10112 AEGEAN NUMBER THIRTY No 30 # \x10113 AEGEAN NUMBER FORTY No 40 # \x10114 AEGEAN NUMBER FIFTY No 50 # \x10115 AEGEAN NUMBER SIXTY No 60 # \x10116 AEGEAN NUMBER SEVENTY No 70 # \x10117 AEGEAN NUMBER EIGHTY No 80 # \x10118 AEGEAN NUMBER NINETY No 90 # \x10119 AEGEAN NUMBER ONE HUNDRED No 100 # \x1011A AEGEAN NUMBER TWO HUNDRED No 200 # \x1011B AEGEAN NUMBER THREE HUNDRED No 300 # \x1011C AEGEAN NUMBER FOUR HUNDRED No 400 # \x1011D AEGEAN NUMBER FIVE HUNDRED No 500 # \x1011E AEGEAN NUMBER SIX HUNDRED No 600 # \x1011F AEGEAN NUMBER SEVEN HUNDRED No 700 # \x10120 AEGEAN NUMBER EIGHT HUNDRED No 800 # \x10121 AEGEAN NUMBER NINE HUNDRED No 900 # \x10122 AEGEAN NUMBER ONE THOUSAND No 1000 # \x10123 AEGEAN NUMBER TWO THOUSAND No 2000 # \x10124 AEGEAN NUMBER THREE THOUSAND No 3000 # \x10125 AEGEAN NUMBER FOUR THOUSAND No 4000 # \x10126 AEGEAN NUMBER FIVE THOUSAND No 5000 # \x10127 AEGEAN NUMBER SIX THOUSAND No 6000 # \x10128 AEGEAN NUMBER SEVEN THOUSAND No 7000 # \x10129 AEGEAN NUMBER EIGHT THOUSAND No 8000 # \x1012A AEGEAN NUMBER NINE THOUSAND No 9000 # \x1012B AEGEAN NUMBER TEN THOUSAND No 10000 # \x1012C AEGEAN NUMBER TWENTY THOUSAND No 20000 # \x1012D AEGEAN NUMBER THIRTY THOUSAND No 30000 # \x1012E AEGEAN NUMBER FORTY THOUSAND No 40000 # \x1012F AEGEAN NUMBER FIFTY THOUSAND No 50000 # \x10130 AEGEAN NUMBER SIXTY THOUSAND No 60000 # \x10131 AEGEAN NUMBER SEVENTY THOUSAND No 70000 # \x10132 AEGEAN NUMBER EIGHTY THOUSAND No 80000 # \x10133 AEGEAN NUMBER NINETY THOUSAND No 90000 # \x10137 AEGEAN WEIGHT BASE UNIT # \x10138 AEGEAN WEIGHT FIRST SUBUNIT # \x10139 AEGEAN WEIGHT SECOND SUBUNIT # \x1013A AEGEAN WEIGHT THIRD SUBUNIT # \x1013B AEGEAN WEIGHT FOURTH SUBUNIT # \x1013C AEGEAN DRY MEASURE FIRST SUBUNIT # \x1013D AEGEAN LIQUID MEASURE FIRST SUBUNIT # \x1013E AEGEAN MEASURE SECOND SUBUNIT # \x1013F AEGEAN MEASURE THIRD SUBUNIT # \x10300 OLD ITALIC LETTER A # \x10301 OLD ITALIC LETTER BE # \x10302 OLD ITALIC LETTER KE # \x10303 OLD ITALIC LETTER DE # \x10304 OLD ITALIC LETTER E # \x10305 OLD ITALIC LETTER VE # \x10306 OLD ITALIC LETTER ZE # \x10307 OLD ITALIC LETTER HE # \x10308 OLD ITALIC LETTER THE # \x10309 OLD ITALIC LETTER I # \x1030A OLD ITALIC LETTER KA # \x1030B OLD ITALIC LETTER EL # \x1030C OLD ITALIC LETTER EM # \x1030D OLD ITALIC LETTER EN # \x1030E OLD ITALIC LETTER ESH # \x1030F OLD ITALIC LETTER O Faliscan # \x10310 OLD ITALIC LETTER PE # \x10311 OLD ITALIC LETTER SHE # \x10312 OLD ITALIC LETTER KU # \x10313 OLD ITALIC LETTER ER # \x10314 OLD ITALIC LETTER ES # \x10315 OLD ITALIC LETTER TE # \x10316 OLD ITALIC LETTER U # \x10317 OLD ITALIC LETTER EKS Faliscan # \x10318 OLD ITALIC LETTER PHE # \x10319 OLD ITALIC LETTER KHE # \x1031A OLD ITALIC LETTER EF # \x1031B OLD ITALIC LETTER ERS Umbrian # \x1031C OLD ITALIC LETTER CHE Umbrian # \x1031D OLD ITALIC LETTER II Oscan # \x1031E OLD ITALIC LETTER UU Oscan # \x10320 OLD ITALIC NUMERAL ONE No 1 # \x10321 OLD ITALIC NUMERAL FIVE No 5 # \x10322 OLD ITALIC NUMERAL TEN No 10 # \x10323 OLD ITALIC NUMERAL FIFTY No 50 # \x10330 GOTHIC LETTER AHSA # \x10331 GOTHIC LETTER BAIRKAN # \x10332 GOTHIC LETTER GIBA # \x10333 GOTHIC LETTER DAGS # \x10334 GOTHIC LETTER AIHVUS # \x10335 GOTHIC LETTER QAIRTHRA # \x10336 GOTHIC LETTER IUJA # \x10337 GOTHIC LETTER HAGL # \x10338 GOTHIC LETTER THIUTH # \x10339 GOTHIC LETTER EIS # \x1033A GOTHIC LETTER KUSMA # \x1033B GOTHIC LETTER LAGUS # \x1033C GOTHIC LETTER MANNA # \x1033D GOTHIC LETTER NAUTHS # \x1033E GOTHIC LETTER JER # \x1033F GOTHIC LETTER URUS # \x10340 GOTHIC LETTER PAIRTHRA # \x10341 GOTHIC LETTER NINETY # \x10342 GOTHIC LETTER RAIDA # \x10343 GOTHIC LETTER SAUIL # \x10344 GOTHIC LETTER TEIWS # \x10345 GOTHIC LETTER WINJA # \x10346 GOTHIC LETTER FAIHU # \x10347 GOTHIC LETTER IGGWS # \x10348 GOTHIC LETTER HWAIR # \x10349 GOTHIC LETTER OTHAL # \x1034A GOTHIC LETTER NINE HUNDRED Nl # \x10380 UGARITIC LETTER ALPA # \x10381 UGARITIC LETTER BETA # \x10382 UGARITIC LETTER GAMLA # \x10383 UGARITIC LETTER KHA # \x10384 UGARITIC LETTER DELTA # \x10385 UGARITIC LETTER HO # \x10386 UGARITIC LETTER WO # \x10387 UGARITIC LETTER ZETA # \x10388 UGARITIC LETTER HOTA # \x10389 UGARITIC LETTER TET # \x1038A UGARITIC LETTER YOD # \x1038B UGARITIC LETTER KAF # \x1038C UGARITIC LETTER SHIN # \x1038D UGARITIC LETTER LAMDA # \x1038E UGARITIC LETTER MEM # \x1038F UGARITIC LETTER DHAL # \x10390 UGARITIC LETTER NUN # \x10391 UGARITIC LETTER ZU # \x10392 UGARITIC LETTER SAMKA # \x10393 UGARITIC LETTER AIN # \x10394 UGARITIC LETTER PU # \x10395 UGARITIC LETTER SADE # \x10396 UGARITIC LETTER QOPA # \x10397 UGARITIC LETTER RASHA # \x10398 UGARITIC LETTER THANNA # \x10399 UGARITIC LETTER GHAIN # \x1039A UGARITIC LETTER TO # \x1039B UGARITIC LETTER I # \x1039C UGARITIC LETTER U # \x1039D UGARITIC LETTER SSU # \x1039F UGARITIC WORD DIVIDER # \x10400 DESERET CAPITAL LETTER LONG I 10428 # \x10401 DESERET CAPITAL LETTER LONG E 10429 # \x10402 DESERET CAPITAL LETTER LONG A 1042A # \x10403 DESERET CAPITAL LETTER LONG AH 1042B # \x10404 DESERET CAPITAL LETTER LONG O 1042C # \x10405 DESERET CAPITAL LETTER LONG OO 1042D # \x10406 DESERET CAPITAL LETTER SHORT I 1042E # \x10407 DESERET CAPITAL LETTER SHORT E 1042F # \x10408 DESERET CAPITAL LETTER SHORT A 10430 # \x10409 DESERET CAPITAL LETTER SHORT AH 10431 # \x1040A DESERET CAPITAL LETTER SHORT O 10432 # \x1040B DESERET CAPITAL LETTER SHORT OO 10433 # \x1040C DESERET CAPITAL LETTER AY 10434 # \x1040D DESERET CAPITAL LETTER OW 10435 # \x1040E DESERET CAPITAL LETTER WU 10436 # \x1040F DESERET CAPITAL LETTER YEE 10437 # \x10410 DESERET CAPITAL LETTER H 10438 # \x10411 DESERET CAPITAL LETTER PEE 10439 # \x10412 DESERET CAPITAL LETTER BEE 1043A # \x10413 DESERET CAPITAL LETTER TEE 1043B # \x10414 DESERET CAPITAL LETTER DEE 1043C # \x10415 DESERET CAPITAL LETTER CHEE 1043D # \x10416 DESERET CAPITAL LETTER JEE 1043E # \x10417 DESERET CAPITAL LETTER KAY 1043F # \x10418 DESERET CAPITAL LETTER GAY 10440 # \x10419 DESERET CAPITAL LETTER EF 10441 # \x1041A DESERET CAPITAL LETTER VEE 10442 # \x1041B DESERET CAPITAL LETTER ETH 10443 # \x1041C DESERET CAPITAL LETTER THEE 10444 # \x1041D DESERET CAPITAL LETTER ES 10445 # \x1041E DESERET CAPITAL LETTER ZEE 10446 # \x1041F DESERET CAPITAL LETTER ESH 10447 # \x10420 DESERET CAPITAL LETTER ZHEE 10448 # \x10421 DESERET CAPITAL LETTER ER 10449 # \x10422 DESERET CAPITAL LETTER EL 1044A # \x10423 DESERET CAPITAL LETTER EM 1044B # \x10424 DESERET CAPITAL LETTER EN 1044C # \x10425 DESERET CAPITAL LETTER ENG 1044D # \x10426 DESERET CAPITAL LETTER OI 1044E # \x10427 DESERET CAPITAL LETTER EW 1044F # \x10428 DESERET SMALL LETTER LONG I 10400 10400 # \x10429 DESERET SMALL LETTER LONG E 10401 10401 # \x1042A DESERET SMALL LETTER LONG A 10402 10402 # \x1042B DESERET SMALL LETTER LONG AH 10403 10403 # \x1042C DESERET SMALL LETTER LONG O 10404 10404 # \x1042D DESERET SMALL LETTER LONG OO 10405 10405 # \x1042E DESERET SMALL LETTER SHORT I 10406 10406 # \x1042F DESERET SMALL LETTER SHORT E 10407 10407 # \x10430 DESERET SMALL LETTER SHORT A 10408 10408 # \x10431 DESERET SMALL LETTER SHORT AH 10409 10409 # \x10432 DESERET SMALL LETTER SHORT O 1040A 1040A # \x10433 DESERET SMALL LETTER SHORT OO 1040B 1040B # \x10434 DESERET SMALL LETTER AY 1040C 1040C # \x10435 DESERET SMALL LETTER OW 1040D 1040D # \x10436 DESERET SMALL LETTER WU 1040E 1040E # \x10437 DESERET SMALL LETTER YEE 1040F 1040F # \x10438 DESERET SMALL LETTER H 10410 10410 # \x10439 DESERET SMALL LETTER PEE 10411 10411 # \x1043A DESERET SMALL LETTER BEE 10412 10412 # \x1043B DESERET SMALL LETTER TEE 10413 10413 # \x1043C DESERET SMALL LETTER DEE 10414 10414 # \x1043D DESERET SMALL LETTER CHEE 10415 10415 # \x1043E DESERET SMALL LETTER JEE 10416 10416 # \x1043F DESERET SMALL LETTER KAY 10417 10417 # \x10440 DESERET SMALL LETTER GAY 10418 10418 # \x10441 DESERET SMALL LETTER EF 10419 10419 # \x10442 DESERET SMALL LETTER VEE 1041A 1041A # \x10443 DESERET SMALL LETTER ETH 1041B 1041B # \x10444 DESERET SMALL LETTER THEE 1041C 1041C # \x10445 DESERET SMALL LETTER ES 1041D 1041D # \x10446 DESERET SMALL LETTER ZEE 1041E 1041E # \x10447 DESERET SMALL LETTER ESH 1041F 1041F # \x10448 DESERET SMALL LETTER ZHEE 10420 10420 # \x10449 DESERET SMALL LETTER ER 10421 10421 # \x1044A DESERET SMALL LETTER EL 10422 10422 # \x1044B DESERET SMALL LETTER EM 10423 10423 # \x1044C DESERET SMALL LETTER EN 10424 10424 # \x1044D DESERET SMALL LETTER ENG 10425 10425 # \x1044E DESERET SMALL LETTER OI 10426 10426 # \x1044F DESERET SMALL LETTER EW 10427 10427 # \x10450 SHAVIAN LETTER PEEP # \x10451 SHAVIAN LETTER TOT # \x10452 SHAVIAN LETTER KICK # \x10453 SHAVIAN LETTER FEE # \x10454 SHAVIAN LETTER THIGH # \x10455 SHAVIAN LETTER # \x10456 SHAVIAN LETTER SURE # \x10457 SHAVIAN LETTER CHURCH # \x10458 SHAVIAN LETTER YEA # \x10459 SHAVIAN LETTER HUNG # \x1045A SHAVIAN LETTER BIB # \x1045B SHAVIAN LETTER DEAD # \x1045C SHAVIAN LETTER GAG # \x1045D SHAVIAN LETTER VOW # \x1045E SHAVIAN LETTER THEY # \x1045F SHAVIAN LETTER ZOO # \x10460 SHAVIAN LETTER MEASURE # \x10461 SHAVIAN LETTER JUDGE # \x10462 SHAVIAN LETTER WOE # \x10463 SHAVIAN LETTER HA-HA # \x10464 SHAVIAN LETTER LOLL # \x10465 SHAVIAN LETTER MIME # \x10466 SHAVIAN LETTER IF # \x10467 SHAVIAN LETTER EGG # \x10468 SHAVIAN LETTER ASH # \x10469 SHAVIAN LETTER ADO # \x1046A SHAVIAN LETTER # \x1046B SHAVIAN LETTER WOOL # \x1046C SHAVIAN LETTER OUT # \x1046D SHAVIAN LETTER AH # \x1046E SHAVIAN LETTER ROAR # \x1046F SHAVIAN LETTER NUN # \x10470 SHAVIAN LETTER EAT # \x10471 SHAVIAN LETTER AGE # \x10472 SHAVIAN LETTER ICE # \x10473 SHAVIAN LETTER UP # \x10474 SHAVIAN LETTER OAK # \x10475 SHAVIAN LETTER OOZE # \x10476 SHAVIAN LETTER OIL # \x10477 SHAVIAN LETTER AWE # \x10478 SHAVIAN LETTER ARE # \x10479 SHAVIAN LETTER OR # \x1047A SHAVIAN LETTER AIR # \x1047B SHAVIAN LETTER ERR # \x1047C SHAVIAN LETTER ARRAY # \x1047D SHAVIAN LETTER EAR # \x1047E SHAVIAN LETTER IAN # \x1047F SHAVIAN LETTER YEW # \x10480 OSMANYA LETTER ALEF # \x10481 OSMANYA LETTER BA # \x10482 OSMANYA LETTER TA # \x10483 OSMANYA LETTER JA # \x10484 OSMANYA LETTER XA # \x10485 OSMANYA LETTER KHA # \x10486 OSMANYA LETTER DEEL # \x10487 OSMANYA LETTER RA # \x10488 OSMANYA LETTER SA # \x10489 OSMANYA LETTER SHIIN # \x1048A OSMANYA LETTER DHA # \x1048B OSMANYA LETTER CAYN # \x1048C OSMANYA LETTER GA # \x1048D OSMANYA LETTER FA # \x1048E OSMANYA LETTER QAAF # \x1048F OSMANYA LETTER KAAF # \x10490 OSMANYA LETTER LAAN # \x10491 OSMANYA LETTER MIIN # \x10492 OSMANYA LETTER NUUN # \x10493 OSMANYA LETTER WAW # \x10494 OSMANYA LETTER HA # \x10495 OSMANYA LETTER YA # \x10496 OSMANYA LETTER A # \x10497 OSMANYA LETTER E # \x10498 OSMANYA LETTER I # \x10499 OSMANYA LETTER O # \x1049A OSMANYA LETTER U # \x1049B OSMANYA LETTER AA # \x1049C OSMANYA LETTER EE # \x1049D OSMANYA LETTER OO # \x104A0 OSMANYA DIGIT ZERO Nd 0 # \x104A1 OSMANYA DIGIT ONE Nd 1 1 1 # \x104A2 OSMANYA DIGIT TWO Nd 2 2 2 # \x104A3 OSMANYA DIGIT THREE Nd 3 3 3 # \x104A4 OSMANYA DIGIT FOUR Nd 4 4 4 # \x104A5 OSMANYA DIGIT FIVE Nd 5 5 5 # \x104A6 OSMANYA DIGIT SIX Nd 6 6 6 # \x104A7 OSMANYA DIGIT SEVEN Nd 7 7 7 # \x104A8 OSMANYA DIGIT EIGHT Nd 8 8 8 # \x104A9 OSMANYA DIGIT NINE Nd 9 9 9 # \x10800 CYPRIOT SYLLABLE A # \x10801 CYPRIOT SYLLABLE E # \x10802 CYPRIOT SYLLABLE I # \x10803 CYPRIOT SYLLABLE O # \x10804 CYPRIOT SYLLABLE U # \x10805 CYPRIOT SYLLABLE JA # \x10808 CYPRIOT SYLLABLE JO # \x1080A CYPRIOT SYLLABLE KA # \x1080B CYPRIOT SYLLABLE KE # \x1080C CYPRIOT SYLLABLE KI # \x1080D CYPRIOT SYLLABLE KO # \x1080E CYPRIOT SYLLABLE KU # \x1080F CYPRIOT SYLLABLE LA # \x10810 CYPRIOT SYLLABLE LE # \x10811 CYPRIOT SYLLABLE LI # \x10812 CYPRIOT SYLLABLE Lo # \x10813 CYPRIOT SYLLABLE o # \x10814 CYPRIOT SYLLABLE MA # \x10815 CYPRIOT SYLLABLE ME # \x10816 CYPRIOT SYLLABLE MI # \x10817 CYPRIOT SYLLABLE MO # \x10818 CYPRIOT SYLLABLE MU # \x10819 CYPRIOT SYLLABLE NA # \x1081A CYPRIOT SYLLABLE NE # \x1081B CYPRIOT SYLLABLE NI # \x1081C CYPRIOT SYLLABLE NO # \x1081D CYPRIOT SYLLABLE NU # \x1081E CYPRIOT SYLLABLE PA # \x1081F CYPRIOT SYLLABLE PE # \x10820 CYPRIOT SYLLABLE PI # \x10821 CYPRIOT SYLLABLE # \x10822 CYPRIOT SYLLABLE PU # \x10823 CYPRIOT SYLLABLE RA # \x10824 CYPRIOT SYLLABLE RE # \x10825 CYPRIOT SYLLABLE RI # \x10826 CYPRIOT SYLLABLE RO # \x10827 CYPRIOT SYLLABLE RU # \x10828 CYPRIOT SYLLABLE SA # \x10829 CYPRIOT SYLLABLE SE # \x1082A CYPRIOT SYLLABLE SI # \x1082B CYPRIOT SYLLABLE # \x1082C CYPRIOT SYLLABLE SU # \x1082D CYPRIOT SYLLABLE TA # \x1082E CYPRIOT SYLLABLE TE # \x1082F CYPRIOT SYLLABLE TI # \x10830 CYPRIOT SYLLABLE TO # \x10831 CYPRIOT SYLLABLE TU # \x10832 CYPRIOT SYLLABLE WA # \x10833 CYPRIOT SYLLABLE WE # \x10834 CYPRIOT SYLLABLE WI # \x10835 CYPRIOT SYLLABLE WO # \x10837 CYPRIOT SYLLABLE XA # \x10838 CYPRIOT SYLLABLE XE # \x1083C CYPRIOT SYLLABLE ZA # \x1083F CYPRIOT SYLLABLE ZO # \x1D000 BYZANTINE MUSICAL SYMBOL PSILI # \x1D001 BYZANTINE MUSICAL SYMBOL DASEIA # \x1D002 BYZANTINE MUSICAL SYMBOL PERISPOMENI # \x1D003 BYZANTINE MUSICAL SYMBOL OXEIA EKFONITIKON # \x1D004 BYZANTINE MUSICAL SYMBOL OXEIA DIPLI # \x1D005 BYZANTINE MUSICAL SYMBOL VAREIA EKFONITIKON # \x1D006 BYZANTINE MUSICAL SYMBOL VAREIA DIPLI # \x1D007 BYZANTINE MUSICAL SYMBOL KATHISTI # \x1D008 BYZANTINE MUSICAL SYMBOL SYRMATIKI # \x1D009 BYZANTINE MUSICAL SYMBOL PARAKLITIKI # \x1D00A BYZANTINE MUSICAL SYMBOL YPOKRISIS # \x1D00B BYZANTINE MUSICAL SYMBOL YPOKRISIS DIPLI # \x1D00C BYZANTINE MUSICAL SYMBOL KREMASTI # \x1D00D BYZANTINE MUSICAL SYMBOL APESO EKFONITIKON # \x1D00E BYZANTINE MUSICAL SYMBOL EXO EKFONITIKON # \x1D00F BYZANTINE MUSICAL SYMBOL TELEIA # \x1D010 BYZANTINE MUSICAL SYMBOL KENTIMATA # \x1D011 BYZANTINE MUSICAL SYMBOL APOSTROFOS # \x1D012 BYZANTINE MUSICAL SYMBOL APOSTROFOS DIPLI # \x1D013 BYZANTINE MUSICAL SYMBOL SYNEVMA # \x1D014 BYZANTINE MUSICAL SYMBOL THITA # \x1D015 BYZANTINE MUSICAL SYMBOL OLIGON ARCHAION # \x1D016 BYZANTINE MUSICAL SYMBOL GORGON ARCHAION # \x1D017 BYZANTINE MUSICAL SYMBOL PSILON # \x1D018 BYZANTINE MUSICAL SYMBOL CHAMILON # \x1D019 BYZANTINE MUSICAL SYMBOL VATHY # \x1D01A BYZANTINE MUSICAL SYMBOL ISON ARCHAION # \x1D01B BYZANTINE MUSICAL SYMBOL KENTIMA ARCHAION # \x1D01C BYZANTINE MUSICAL SYMBOL KENTIMATA ARCHAION # \x1D01D BYZANTINE MUSICAL SYMBOL SAXIMATA # \x1D01E BYZANTINE MUSICAL SYMBOL PARICHON # \x1D01F BYZANTINE MUSICAL SYMBOL STAVROS APODEXIA # \x1D020 BYZANTINE MUSICAL SYMBOL OXEIAI ARCHAION # \x1D021 BYZANTINE MUSICAL SYMBOL VAREIAI ARCHAION # \x1D022 BYZANTINE MUSICAL SYMBOL APODERMA ARCHAION # \x1D023 BYZANTINE MUSICAL SYMBOL APOTHEMA # \x1D024 BYZANTINE MUSICAL SYMBOL KLASMA # \x1D025 BYZANTINE MUSICAL SYMBOL REVMA # \x1D026 BYZANTINE MUSICAL SYMBOL PIASMA ARCHAION # \x1D027 BYZANTINE MUSICAL SYMBOL TINAGMA # \x1D028 BYZANTINE MUSICAL SYMBOL ANATRICHISMA # \x1D029 BYZANTINE MUSICAL SYMBOL SEISMA # \x1D02A BYZANTINE MUSICAL SYMBOL SYNAGMA ARCHAION # \x1D02B BYZANTINE MUSICAL SYMBOL SYNAGMA META STAVROU # \x1D02C BYZANTINE MUSICAL SYMBOL OYRANISMA ARCHAION # \x1D02D BYZANTINE MUSICAL SYMBOL THEMA # \x1D02E BYZANTINE MUSICAL SYMBOL LEMOI # \x1D02F BYZANTINE MUSICAL SYMBOL DYO # \x1D030 BYZANTINE MUSICAL SYMBOL TRIA # \x1D031 BYZANTINE MUSICAL SYMBOL TESSERA # \x1D032 BYZANTINE MUSICAL SYMBOL KRATIMATA # \x1D033 BYZANTINE MUSICAL SYMBOL APESO EXO NEO # \x1D034 BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION # \x1D035 BYZANTINE MUSICAL SYMBOL IMIFTHORA # \x1D036 BYZANTINE MUSICAL SYMBOL TROMIKON ARCHAION # \x1D037 BYZANTINE MUSICAL SYMBOL KATAVA TROMIKON # \x1D038 BYZANTINE MUSICAL SYMBOL PELASTON # \x1D039 BYZANTINE MUSICAL SYMBOL PSIFISTON # \x1D03A BYZANTINE MUSICAL SYMBOL KONTEVMA # \x1D03B BYZANTINE MUSICAL SYMBOL CHOREVMA ARCHAION # \x1D03C BYZANTINE MUSICAL SYMBOL RAPISMA # \x1D03D BYZANTINE MUSICAL SYMBOL PARAKALESMA ARCHAION # \x1D03E BYZANTINE MUSICAL SYMBOL PARAKLITIKI ARCHAION # \x1D03F BYZANTINE MUSICAL SYMBOL ICHADIN # \x1D040 BYZANTINE MUSICAL SYMBOL NANA # \x1D041 BYZANTINE MUSICAL SYMBOL PETASMA # \x1D042 BYZANTINE MUSICAL SYMBOL KONTEVMA ALLO # \x1D043 BYZANTINE MUSICAL SYMBOL TROMIKON ALLO # \x1D044 BYZANTINE MUSICAL SYMBOL STRAGGISMATA # \x1D045 BYZANTINE MUSICAL SYMBOL GRONTHISMATA # \x1D046 BYZANTINE MUSICAL SYMBOL ISON NEO # \x1D047 BYZANTINE MUSICAL SYMBOL OLIGON NEO # \x1D048 BYZANTINE MUSICAL SYMBOL OXEIA NEO # \x1D049 BYZANTINE MUSICAL SYMBOL PETASTI # \x1D04A BYZANTINE MUSICAL SYMBOL KOUFISMA # \x1D04B BYZANTINE MUSICAL SYMBOL PETASTOKOUFISMA # \x1D04C BYZANTINE MUSICAL SYMBOL KRATIMOKOUFISMA # \x1D04D BYZANTINE MUSICAL SYMBOL PELASTON NEO # \x1D04E BYZANTINE MUSICAL SYMBOL KENTIMATA NEO ANO # \x1D04F BYZANTINE MUSICAL SYMBOL KENTIMA NEO ANO # \x1D050 BYZANTINE MUSICAL SYMBOL YPSILI # \x1D051 BYZANTINE MUSICAL SYMBOL APOSTROFOS NEO # \x1D052 BYZANTINE MUSICAL SYMBOL APOSTROFOI SYNDESMOS NEO # \x1D053 BYZANTINE MUSICAL SYMBOL YPORROI # \x1D054 BYZANTINE MUSICAL SYMBOL KRATIMOYPORROON # \x1D055 BYZANTINE MUSICAL SYMBOL ELAFRON # \x1D056 BYZANTINE MUSICAL SYMBOL CHAMILI # \x1D057 BYZANTINE MUSICAL SYMBOL MIKRON ISON # \x1D058 BYZANTINE MUSICAL SYMBOL VAREIA NEO # \x1D059 BYZANTINE MUSICAL SYMBOL PIASMA NEO # \x1D05A BYZANTINE MUSICAL SYMBOL PSIFISTON NEO # \x1D05B BYZANTINE MUSICAL SYMBOL OMALON # \x1D05C BYZANTINE MUSICAL SYMBOL ANTIKENOMA # \x1D05D BYZANTINE MUSICAL SYMBOL LYGISMA # \x1D05E BYZANTINE MUSICAL SYMBOL PARAKLITIKI NEO # \x1D05F BYZANTINE MUSICAL SYMBOL PARAKALESMA NEO # \x1D060 BYZANTINE MUSICAL SYMBOL ETERON PARAKALESMA # \x1D061 BYZANTINE MUSICAL SYMBOL KYLISMA # \x1D062 BYZANTINE MUSICAL SYMBOL ANTIKENOKYLISMA # \x1D063 BYZANTINE MUSICAL SYMBOL TROMIKON NEO # \x1D064 BYZANTINE MUSICAL SYMBOL EKSTREPTON # \x1D065 BYZANTINE MUSICAL SYMBOL SYNAGMA NEO # \x1D066 BYZANTINE MUSICAL SYMBOL SYRMA # \x1D067 BYZANTINE MUSICAL SYMBOL CHOREVMA NEO # \x1D068 BYZANTINE MUSICAL SYMBOL EPEGERMA # \x1D069 BYZANTINE MUSICAL SYMBOL SEISMA NEO # \x1D06A BYZANTINE MUSICAL SYMBOL XIRON KLASMA # \x1D06B BYZANTINE MUSICAL SYMBOL TROMIKOPSIFISTON # \x1D06C BYZANTINE MUSICAL SYMBOL PSIFISTOLYGISMA # \x1D06D BYZANTINE MUSICAL SYMBOL TROMIKOLYGISMA # \x1D06E BYZANTINE MUSICAL SYMBOL TROMIKOPARAKALESMA # \x1D06F BYZANTINE MUSICAL SYMBOL PSIFISTOPARAKALESMA # \x1D070 BYZANTINE MUSICAL SYMBOL TROMIKOSYNAGMA # \x1D071 BYZANTINE MUSICAL SYMBOL PSIFISTOSYNAGMA # \x1D072 BYZANTINE MUSICAL SYMBOL GORGOSYNTHETON # \x1D073 BYZANTINE MUSICAL SYMBOL ARGOSYNTHETON # \x1D074 BYZANTINE MUSICAL SYMBOL ETERON ARGOSYNTHETON # \x1D075 BYZANTINE MUSICAL SYMBOL OYRANISMA NEO # \x1D076 BYZANTINE MUSICAL SYMBOL THEMATISMOS ESO # \x1D077 BYZANTINE MUSICAL SYMBOL THEMATISMOS EXO # \x1D078 BYZANTINE MUSICAL SYMBOL THEMA APLOUN # \x1D079 BYZANTINE MUSICAL SYMBOL THES KAI APOTHES # \x1D07A BYZANTINE MUSICAL SYMBOL KATAVASMA # \x1D07B BYZANTINE MUSICAL SYMBOL ENDOFONON # \x1D07C BYZANTINE MUSICAL SYMBOL YFEN KATO # \x1D07D BYZANTINE MUSICAL SYMBOL YFEN ANO # \x1D07E BYZANTINE MUSICAL SYMBOL STAVROS # \x1D07F BYZANTINE MUSICAL SYMBOL KLASMA ANO # \x1D080 BYZANTINE MUSICAL SYMBOL DIPLI ARCHAION # \x1D081 BYZANTINE MUSICAL SYMBOL KRATIMA ARCHAION # \x1D082 BYZANTINE MUSICAL SYMBOL KRATIMA ALLO # \x1D083 BYZANTINE MUSICAL SYMBOL KRATIMA NEO # \x1D084 BYZANTINE MUSICAL SYMBOL APODERMA NEO # \x1D085 BYZANTINE MUSICAL SYMBOL APLI # \x1D086 BYZANTINE MUSICAL SYMBOL DIPLI # \x1D087 BYZANTINE MUSICAL SYMBOL TRIPLI # \x1D088 BYZANTINE MUSICAL SYMBOL TETRAPLI # \x1D089 BYZANTINE MUSICAL SYMBOL KORONIS # \x1D08A BYZANTINE MUSICAL SYMBOL LEIMMA ENOS CHRONOU # \x1D08B BYZANTINE MUSICAL SYMBOL LEIMMA DYO CHRONON # \x1D08C BYZANTINE MUSICAL SYMBOL LEIMMA TRION CHRONON # \x1D08D BYZANTINE MUSICAL SYMBOL LEIMMA TESSARON CHRONON # \x1D08E BYZANTINE MUSICAL SYMBOL LEIMMA IMISEOS CHRONOU # \x1D08F BYZANTINE MUSICAL SYMBOL GORGON NEO ANO # \x1D090 BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON ARISTERA # \x1D091 BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON DEXIA # \x1D092 BYZANTINE MUSICAL SYMBOL DIGORGON # \x1D093 BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA KATO # \xN # \x1D094 BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA ANO N # \x # \x1D095 BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON DEXIA # \x1D096 BYZANTINE MUSICAL SYMBOL TRIGORGON # \x1D097 BYZANTINE MUSICAL SYMBOL ARGON # \x1D098 BYZANTINE MUSICAL SYMBOL IMIDIARGON # \x1D099 BYZANTINE MUSICAL SYMBOL DIARGON # \x1D09A BYZANTINE MUSICAL SYMBOL AGOGI POLI ARGI # \x1D09B BYZANTINE MUSICAL SYMBOL AGOGI ARGOTERI # \x1D09C BYZANTINE MUSICAL SYMBOL AGOGI ARGI # \x1D09D BYZANTINE MUSICAL SYMBOL AGOGI METRIA # \x1D09E BYZANTINE MUSICAL SYMBOL AGOGI MESI # \x1D09F BYZANTINE MUSICAL SYMBOL AGOGI GORGI # \x1D0A0 BYZANTINE MUSICAL SYMBOL AGOGI GORGOTERI # \x1D0A1 BYZANTINE MUSICAL SYMBOL AGOGI POLI GORGI # \x1D0A2 BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOS ICHOS # \x1D0A3 BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI PROTOS ICHOS # \x1D0A4 BYZANTINE MUSICAL SYMBOL MARTYRIA DEYTEROS ICHOS # \x1D0A5 BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI DEYTEROS ICHOS # \x1D0A6 BYZANTINE MUSICAL SYMBOL MARTYRIA TRITOS ICHOS # \x1D0A7 BYZANTINE MUSICAL SYMBOL MARTYRIA TRIFONIAS # \x1D0A8 BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS ICHOS # \x1D0A9 BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS LEGETOS ICHOS # \x # \x1D0AA BYZANTINE MUSICAL SYMBOL MARTYRIA LEGETOS ICHOS # \x1D0AB BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS ICHOS # \x1D0AC BYZANTINE MUSICAL SYMBOL ISAKIA TELOUS ICHIMATOS # \x1D0AD BYZANTINE MUSICAL SYMBOL APOSTROFOI TELOUS ICHIMATOS # \x1D0AE BYZANTINE MUSICAL SYMBOL FANEROSIS TETRAFONIAS # \x1D0AF BYZANTINE MUSICAL SYMBOL FANEROSIS MONOFONIAS # \x1D0B0 BYZANTINE MUSICAL SYMBOL FANEROSIS DIFONIAS # \x1D0B1 BYZANTINE MUSICAL SYMBOL MARTYRIA VARYS ICHOS # \x1D0B2 BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOVARYS ICHOS # \x1D0B3 BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS TETARTOS ICHOS # \x # \x1D0B4 BYZANTINE MUSICAL SYMBOL GORTHMIKON APLOUN # \x1D0B5 BYZANTINE MUSICAL SYMBOL GORTHMIKON DIPLOUN # \x1D0B6 BYZANTINE MUSICAL SYMBOL ENARXIS KAI FTHORA VOU # \x1D0B7 BYZANTINE MUSICAL SYMBOL IMIFONON # \x1D0B8 BYZANTINE MUSICAL SYMBOL IMIFTHORON # \x1D0B9 BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION DEYTEROU ICHOU # \x1D0BA BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI PA # \x1D0BB BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NANA # \x1D0BC BYZANTINE MUSICAL SYMBOL FTHORA NAOS ICHOS # \x1D0BD BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI DI # \x1D0BE BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON DIATONON DI # \x1D0BF BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI KE # \x1D0C0 BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI ZO # \x1D0C1 BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI KATO # \x1D0C2 BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI ANO # \x1D0C3 BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA DIFONIAS # \x1D0C4 BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA MONOFONIAS # \x # \x1D0C5 BYZANTINE MUSICAL SYMBOL FHTORA SKLIRON CHROMA VASIS # \x1D0C6 BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON CHROMA SYNAFI # \x1D0C7 BYZANTINE MUSICAL SYMBOL FTHORA NENANO # \x1D0C8 BYZANTINE MUSICAL SYMBOL CHROA ZYGOS # \x1D0C9 BYZANTINE MUSICAL SYMBOL CHROA KLITON # \x1D0CA BYZANTINE MUSICAL SYMBOL CHROA SPATHI # \x1D0CB BYZANTINE MUSICAL SYMBOL FTHORA I YFESIS TETARTIMORION # \x1D0CC BYZANTINE MUSICAL SYMBOL FTHORA ENARMONIOS ANTIFONIA # \x1D0CD BYZANTINE MUSICAL SYMBOL YFESIS TRITIMORION # \x1D0CE BYZANTINE MUSICAL SYMBOL DIESIS TRITIMORION # \x1D0CF BYZANTINE MUSICAL SYMBOL DIESIS TETARTIMORION # \x1D0D0 BYZANTINE MUSICAL SYMBOL DIESIS APLI DYO DODEKATA # \x1D0D1 BYZANTINE MUSICAL SYMBOL DIESIS MONOGRAMMOS TESSERA DODEKATA N # \x # \x1D0D2 BYZANTINE MUSICAL SYMBOL DIESIS DIGRAMMOS EX DODEKATA # \x1D0D3 BYZANTINE MUSICAL SYMBOL DIESIS TRIGRAMMOS OKTO DODEKATA # \x # \x1D0D4 BYZANTINE MUSICAL SYMBOL YFESIS APLI DYO DODEKATA # \x1D0D5 BYZANTINE MUSICAL SYMBOL YFESIS MONOGRAMMOS TESSERA DODEKATA N # \x # \x1D0D6 BYZANTINE MUSICAL SYMBOL YFESIS DIGRAMMOS EX DODEKATA # \x1D0D7 BYZANTINE MUSICAL SYMBOL YFESIS TRIGRAMMOS OKTO DODEKATA # \x # \x1D0D8 BYZANTINE MUSICAL SYMBOL GENIKI DIESIS # \x1D0D9 BYZANTINE MUSICAL SYMBOL GENIKI YFESIS # \x1D0DA BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MIKRI # \x1D0DB BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MEGALI # \x1D0DC BYZANTINE MUSICAL SYMBOL DIASTOLI DIPLI # \x1D0DD BYZANTINE MUSICAL SYMBOL DIASTOLI THESEOS # \x1D0DE BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS # \x1D0DF BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS DISIMOU # \x1D0E0 BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TRISIMOU # \x1D0E1 BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TETRASIMOU # \x1D0E2 BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS # \x1D0E3 BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS DISIMOU # \x1D0E4 BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TRISIMOU # \x1D0E5 BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TETRASIMOU # \x1D0E6 BYZANTINE MUSICAL SYMBOL DIGRAMMA GG # \x1D0E7 BYZANTINE MUSICAL SYMBOL DIFTOGGOS OU # \x1D0E8 BYZANTINE MUSICAL SYMBOL STIGMA # \x1D0E9 BYZANTINE MUSICAL SYMBOL ARKTIKO PA # \x1D0EA BYZANTINE MUSICAL SYMBOL ARKTIKO VOU # \x1D0EB BYZANTINE MUSICAL SYMBOL ARKTIKO GA # \x1D0EC BYZANTINE MUSICAL SYMBOL ARKTIKO DI # \x1D0ED BYZANTINE MUSICAL SYMBOL ARKTIKO KE # \x1D0EE BYZANTINE MUSICAL SYMBOL ARKTIKO ZO # \x1D0EF BYZANTINE MUSICAL SYMBOL ARKTIKO NI # \x1D0F0 BYZANTINE MUSICAL SYMBOL KENTIMATA NEO MESO # \x1D0F1 BYZANTINE MUSICAL SYMBOL KENTIMA NEO MESO # \x1D0F2 BYZANTINE MUSICAL SYMBOL KENTIMATA NEO KATO # \x1D0F3 BYZANTINE MUSICAL SYMBOL KENTIMA NEO KATO # \x1D0F4 BYZANTINE MUSICAL SYMBOL KLASMA KATO # \x1D0F5 BYZANTINE MUSICAL SYMBOL GORGON NEO KATO # \x1D100 MUSICAL SYMBOL SINGLE BARLINE # \x1D101 MUSICAL SYMBOL DOUBLE BARLINE # \x1D102 MUSICAL SYMBOL FINAL BARLINE # \x1D103 MUSICAL SYMBOL REVERSE FINAL BARLINE # \x1D104 MUSICAL SYMBOL DASHED BARLINE # \x1D105 MUSICAL SYMBOL SHORT BARLINE # \x1D106 MUSICAL SYMBOL LEFT REPEAT SIGN # \x1D107 MUSICAL SYMBOL RIGHT REPEAT SIGN # \x1D108 MUSICAL SYMBOL REPEAT DOTS # \x1D109 MUSICAL SYMBOL DAL SEGNO # \x1D10A MUSICAL SYMBOL DA CAPO # \x1D10B MUSICAL SYMBOL SEGNO # \x1D10C MUSICAL SYMBOL CODA # \x1D10D MUSICAL SYMBOL REPEATED FIGURE-1 # \x1D10E MUSICAL SYMBOL REPEATED FIGURE-2 # \x1D10F MUSICAL SYMBOL REPEATED FIGURE-3 # \x1D110 MUSICAL SYMBOL FERMATA # \x1D111 MUSICAL SYMBOL FERMATA BELOW # \x1D112 MUSICAL SYMBOL BREATH MARK # \x1D113 MUSICAL SYMBOL CAESURA # \x1D114 MUSICAL SYMBOL BRACE # \x1D115 MUSICAL SYMBOL BRACKET # \x1D116 MUSICAL SYMBOL ONE-LINE STAFF # \x1D117 MUSICAL SYMBOL TWO-LINE STAFF # \x1D118 MUSICAL SYMBOL THREE-LINE STAFF # \x1D119 MUSICAL SYMBOL FOUR-LINE STAFF # \x1D11A MUSICAL SYMBOL FIVE-LINE STAFF # \x1D11B MUSICAL SYMBOL SIX-LINE STAFF # \x1D11C MUSICAL SYMBOL SIX-STRING FRETBOARD # \x1D11D MUSICAL SYMBOL FOUR-STRING FRETBOARD # \x1D11E MUSICAL SYMBOL G CLEF # \x1D11F MUSICAL SYMBOL G CLEF OTTAVA ALTA # \x1D120 MUSICAL SYMBOL G CLEF OTTAVA BASSA # \x1D121 MUSICAL SYMBOL C CLEF # \x1D122 MUSICAL SYMBOL F CLEF # \x1D123 MUSICAL SYMBOL F CLEF OTTAVA ALTA # \x1D124 MUSICAL SYMBOL F CLEF OTTAVA BASSA # \x1D125 MUSICAL SYMBOL DRUM CLEF-1 # \x1D126 MUSICAL SYMBOL DRUM CLEF-2 # \x1D12A MUSICAL SYMBOL DOUBLE SHARP # \x1D12B MUSICAL SYMBOL DOUBLE FLAT # \x1D12C MUSICAL SYMBOL FLAT UP # \x1D12D MUSICAL SYMBOL FLAT DOWN # \x1D12E MUSICAL SYMBOL NATURAL UP # \x1D12F MUSICAL SYMBOL NATURAL DOWN # \x1D130 MUSICAL SYMBOL SHARP UP # \x1D131 MUSICAL SYMBOL SHARP DOWN # \x1D132 MUSICAL SYMBOL QUARTER TONE SHARP # \x1D133 MUSICAL SYMBOL QUARTER TONE FLAT # \x1D134 MUSICAL SYMBOL COMMON TIME # \x1D135 MUSICAL SYMBOL CUT TIME # \x1D136 MUSICAL SYMBOL OTTAVA ALTA # \x1D137 MUSICAL SYMBOL OTTAVA BASSA # \x1D138 MUSICAL SYMBOL QUINDICESIMA ALTA # \x1D139 MUSICAL SYMBOL QUINDICESIMA BASSA # \x1D13A MUSICAL SYMBOL MULTI REST # \x1D13B MUSICAL SYMBOL WHOLE REST # \x1D13C MUSICAL SYMBOL HALF REST # \x1D13D MUSICAL SYMBOL QUARTER REST # \x1D13E MUSICAL SYMBOL EIGHTH REST # \x1D13F MUSICAL SYMBOL SIXTEENTH REST # \x1D140 MUSICAL SYMBOL THIRTY-SECOND REST # \x1D141 MUSICAL SYMBOL SIXTY-FOURTH REST # \x1D142 MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH REST # \x1D143 MUSICAL SYMBOL X NOTEHEAD # \x1D144 MUSICAL SYMBOL PLUS NOTEHEAD # \x1D145 MUSICAL SYMBOL CIRCLE X NOTEHEAD # \x1D146 MUSICAL SYMBOL SQUARE NOTEHEAD WHITE # \x1D147 MUSICAL SYMBOL SQUARE NOTEHEAD BLACK # \x1D148 MUSICAL SYMBOL TRIANGLE NOTEHEAD UP WHITE # \x1D149 MUSICAL SYMBOL TRIANGLE NOTEHEAD UP BLACK # \x1D14A MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT WHITE # \x1D14B MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT BLACK # \x1D14C MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT WHITE # \x1D14D MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT BLACK # \x1D14E MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN WHITE # \x1D14F MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN BLACK # \x1D150 MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT WHITE # \x1D151 MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT BLACK # \x1D152 MUSICAL SYMBOL MOON NOTEHEAD WHITE # \x1D153 MUSICAL SYMBOL MOON NOTEHEAD BLACK # \x1D154 MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN WHITE # \x1D155 MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN BLACK # \x1D156 MUSICAL SYMBOL PARENTHESIS NOTEHEAD # \x1D157 MUSICAL SYMBOL VOID NOTEHEAD # \x1D158 MUSICAL SYMBOL NOTEHEAD BLACK # \x1D159 MUSICAL SYMBOL NULL NOTEHEAD # \x1D15A MUSICAL SYMBOL CLUSTER NOTEHEAD WHITE # \x1D15B MUSICAL SYMBOL CLUSTER NOTEHEAD BLACK # \x1D15C MUSICAL SYMBOL BREVE # \x1D15D MUSICAL SYMBOL WHOLE NOTE # \x1D15E MUSICAL SYMBOL HALF NOTE 1D157 1D165 # \x1D15F MUSICAL SYMBOL QUARTER NOTE 1D158 1D165 # \x1D160 MUSICAL SYMBOL EIGHTH NOTE 1D15F 1D16E # \x1D161 MUSICAL SYMBOL SIXTEENTH NOTE 1D15F 1D16F # \x1D162 MUSICAL SYMBOL THIRTY-SECOND NOTE 1D15F 1D170 # \x1D163 MUSICAL SYMBOL SIXTY-FOURTH NOTE 1D15F 1D171 # \x1D164 MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE 1D15F 1D172 # \x # \x1D165 MUSICAL SYMBOL COMBINING STEM Mc 216 # \x1D166 MUSICAL SYMBOL COMBINING SPRECHGESANG STEM Mc 216 # \x1D167 MUSICAL SYMBOL COMBINING TREMOLO-1 1 # \x1D168 MUSICAL SYMBOL COMBINING TREMOLO-2 1 # \x1D169 MUSICAL SYMBOL COMBINING TREMOLO-3 1 # \x1D16A MUSICAL SYMBOL FINGERED TREMOLO-1 # \x1D16B MUSICAL SYMBOL FINGERED TREMOLO-2 # \x1D16C MUSICAL SYMBOL FINGERED TREMOLO-3 # \x1D16D MUSICAL SYMBOL COMBINING AUGMENTATION DOT Mc 226 # \x1D16E MUSICAL SYMBOL COMBINING FLAG-1 Mc 216 # \x1D16F MUSICAL SYMBOL COMBINING FLAG-2 Mc 216 # \x1D170 MUSICAL SYMBOL COMBINING FLAG-3 Mc 216 # \x1D171 MUSICAL SYMBOL COMBINING FLAG-4 Mc 216 # \x1D172 MUSICAL SYMBOL COMBINING FLAG-5 Mc 216 # \x1D173 MUSICAL SYMBOL BEGIN BEAM # \x1D174 MUSICAL SYMBOL END BEAM # \x1D175 MUSICAL SYMBOL BEGIN TIE # \x1D176 MUSICAL SYMBOL END TIE # \x1D177 MUSICAL SYMBOL BEGIN SLUR # \x1D178 MUSICAL SYMBOL END SLUR # \x1D179 MUSICAL SYMBOL BEGIN PHRASE # \x1D17A MUSICAL SYMBOL END PHRASE # \x1D17B MUSICAL SYMBOL COMBINING ACCENT 220 # \x1D17C MUSICAL SYMBOL COMBINING STACCATO 220 # \x1D17D MUSICAL SYMBOL COMBINING TENUTO 220 # \x1D17E MUSICAL SYMBOL COMBINING STACCATISSIMO 220 # \x1D17F MUSICAL SYMBOL COMBINING MARCATO 220 # \x1D180 MUSICAL SYMBOL COMBINING MARCATO-STACCATO 220 # \x1D181 MUSICAL SYMBOL COMBINING ACCENT-STACCATO 220 # \x1D182 MUSICAL SYMBOL COMBINING LOURE 220 # \x1D183 MUSICAL SYMBOL ARPEGGIATO UP # \x1D184 MUSICAL SYMBOL ARPEGGIATO DOWN # \x1D185 MUSICAL SYMBOL COMBINING DOIT 230 # \x1D186 MUSICAL SYMBOL COMBINING RIP 230 # \x1D187 MUSICAL SYMBOL COMBINING FLIP 230 # \x1D188 MUSICAL SYMBOL COMBINING SMEAR 230 # \x1D189 MUSICAL SYMBOL COMBINING BEND 230 # \x1D18A MUSICAL SYMBOL COMBINING DOUBLE TONGUE 220 # \x1D18B MUSICAL SYMBOL COMBINING TRIPLE TONGUE 220 # \x1D18C MUSICAL SYMBOL RINFORZANDO # \x1D18D MUSICAL SYMBOL SUBITO # \x1D18E MUSICAL SYMBOL Z # \x1D18F MUSICAL SYMBOL PIANO # \x1D190 MUSICAL SYMBOL MEZZO # \x1D191 MUSICAL SYMBOL FORTE # \x1D192 MUSICAL SYMBOL CRESCENDO # \x1D193 MUSICAL SYMBOL DECRESCENDO # \x1D194 MUSICAL SYMBOL GRACE NOTE SLASH # \x1D195 MUSICAL SYMBOL GRACE NOTE NO SLASH # \x1D196 MUSICAL SYMBOL TR # \x1D197 MUSICAL SYMBOL TURN # \x1D198 MUSICAL SYMBOL INVERTED TURN # \x1D199 MUSICAL SYMBOL TURN SLASH # \x1D19A MUSICAL SYMBOL TURN UP # \x1D19B MUSICAL SYMBOL ORNAMENT STROKE-1 # \x1D19C MUSICAL SYMBOL ORNAMENT STROKE-2 # \x1D19D MUSICAL SYMBOL ORNAMENT STROKE-3 # \x1D19E MUSICAL SYMBOL ORNAMENT STROKE-4 # \x1D19F MUSICAL SYMBOL ORNAMENT STROKE-5 # \x1D1A0 MUSICAL SYMBOL ORNAMENT STROKE-6 # \x1D1A1 MUSICAL SYMBOL ORNAMENT STROKE-7 # \x1D1A2 MUSICAL SYMBOL ORNAMENT STROKE-8 # \x1D1A3 MUSICAL SYMBOL ORNAMENT STROKE-9 # \x1D1A4 MUSICAL SYMBOL ORNAMENT STROKE-10 # \x1D1A5 MUSICAL SYMBOL ORNAMENT STROKE-11 # \x1D1A6 MUSICAL SYMBOL HAUPTSTIMME # \x1D1A7 MUSICAL SYMBOL NEBENSTIMME # \x1D1A8 MUSICAL SYMBOL END OF STIMME # \x1D1A9 MUSICAL SYMBOL DEGREE SLASH # \x1D1AA MUSICAL SYMBOL COMBINING DOWN BOW 230 # \x1D1AB MUSICAL SYMBOL COMBINING UP BOW 230 # \x1D1AC MUSICAL SYMBOL COMBINING HARMONIC 230 # \x1D1AD MUSICAL SYMBOL COMBINING SNAP PIZZICATO 230 # \x1D1AE MUSICAL SYMBOL PEDAL MARK # \x1D1AF MUSICAL SYMBOL PEDAL UP MARK # \x1D1B0 MUSICAL SYMBOL HALF PEDAL MARK # \x1D1B1 MUSICAL SYMBOL GLISSANDO UP # \x1D1B2 MUSICAL SYMBOL GLISSANDO DOWN # \x1D1B3 MUSICAL SYMBOL WITH FINGERNAILS # \x1D1B4 MUSICAL SYMBOL DAMP # \x1D1B5 MUSICAL SYMBOL DAMP ALL # \x1D1B6 MUSICAL SYMBOL MAXIMA # \x1D1B7 MUSICAL SYMBOL LONGA # \x1D1B8 MUSICAL SYMBOL BREVIS # \x1D1B9 MUSICAL SYMBOL SEMIBREVIS WHITE # \x1D1BA MUSICAL SYMBOL SEMIBREVIS BLACK # \x1D1BB MUSICAL SYMBOL MINIMA 1D1B9 1D165 # \x1D1BC MUSICAL SYMBOL MINIMA BLACK 1D1BA 1D165 # \x1D1BD MUSICAL SYMBOL SEMIMINIMA WHITE 1D1BB 1D16E # \x1D1BE MUSICAL SYMBOL SEMIMINIMA BLACK 1D1BC 1D16E # \x1D1BF MUSICAL SYMBOL FUSA WHITE 1D1BB 1D16F # \x1D1C0 MUSICAL SYMBOL FUSA BLACK 1D1BC 1D16F # \x1D1C1 MUSICAL SYMBOL LONGA PERFECTA REST # \x1D1C2 MUSICAL SYMBOL LONGA IMPERFECTA REST # \x1D1C3 MUSICAL SYMBOL BREVIS REST # \x1D1C4 MUSICAL SYMBOL SEMIBREVIS REST # \x1D1C5 MUSICAL SYMBOL MINIMA REST # \x1D1C6 MUSICAL SYMBOL SEMIMINIMA REST # \x1D1C7 MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA # \x1D1C8 MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE IMPERFECTA # \x # \x1D1C9 MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA DIMINUTION-1 0 # \x # \x1D1CA MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE PERFECTA # \x # \x1D1CB MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA # \x # \x1D1CC MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-1 # \xSo # \x1D1CD MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-2 # \xSo # \x1D1CE MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-3 # \xSo # \x1D1CF MUSICAL SYMBOL CROIX # \x1D1D0 MUSICAL SYMBOL GREGORIAN C CLEF # \x1D1D1 MUSICAL SYMBOL GREGORIAN F CLEF # \x1D1D2 MUSICAL SYMBOL SQUARE B # \x1D1D3 MUSICAL SYMBOL VIRGA # \x1D1D4 MUSICAL SYMBOL PODATUS # \x1D1D5 MUSICAL SYMBOL CLIVIS # \x1D1D6 MUSICAL SYMBOL SCANDICUS # \x1D1D7 MUSICAL SYMBOL CLIMACUS # \x1D1D8 MUSICAL SYMBOL TORCULUS # \x1D1D9 MUSICAL SYMBOL PORRECTUS # \x1D1DA MUSICAL SYMBOL PORRECTUS FLEXUS # \x1D1DB MUSICAL SYMBOL SCANDICUS FLEXUS # \x1D1DC MUSICAL SYMBOL TORCULUS RESUPINUS # \x1D1DD MUSICAL SYMBOL PES SUBPUNCTIS # \x1D300 MONOGRAM FOR EARTH # \x1D301 DIGRAM FOR HEAVENLY EARTH # \x1D302 DIGRAM FOR HUMAN EARTH # \x1D303 DIGRAM FOR EARTHLY HEAVEN # \x1D304 DIGRAM FOR EARTHLY HUMAN # \x1D305 DIGRAM FOR EARTH # \x1D306 TETRAGRAM FOR CENTRE # \x1D307 TETRAGRAM FOR FULL CIRCLE # \x1D308 TETRAGRAM FOR MIRED # \x1D309 TETRAGRAM FOR BARRIER # \x1D30A TETRAGRAM FOR KEEPING SMALL # \x1D30B TETRAGRAM FOR CONTRARIETY # \x1D30C TETRAGRAM FOR ASCENT # \x1D30D TETRAGRAM FOR OPPOSITION # \x1D30E TETRAGRAM FOR BRANCHING OUT # \x1D30F TETRAGRAM FOR DEFECTIVENESS OR DISTORTION # \x1D310 TETRAGRAM FOR DIVERGENCE # \x1D311 TETRAGRAM FOR YOUTHFULNESS # \x1D312 TETRAGRAM FOR INCREASE # \x1D313 TETRAGRAM FOR PENETRATION # \x1D314 TETRAGRAM FOR REACH # \x1D315 TETRAGRAM FOR CONTACT # \x1D316 TETRAGRAM FOR HOLDING BACK # \x1D317 TETRAGRAM FOR WAITING # \x1D318 TETRAGRAM FOR FOLLOWING # \x1D319 TETRAGRAM FOR ADVANCE # \x1D31A TETRAGRAM FOR RELEASE # \x1D31B TETRAGRAM FOR RESISTANCE # \x1D31C TETRAGRAM FOR EASE # \x1D31D TETRAGRAM FOR JOY # \x1D31E TETRAGRAM FOR CONTENTION # \x1D31F TETRAGRAM FOR ENDEAVOUR # \x1D320 TETRAGRAM FOR DUTIES # \x1D321 TETRAGRAM FOR CHANGE # \x1D322 TETRAGRAM FOR DECISIVENESS # \x1D323 TETRAGRAM FOR BOLD RESOLUTION # \x1D324 TETRAGRAM FOR PACKING # \x1D325 TETRAGRAM FOR LEGION # \x1D326 TETRAGRAM FOR CLOSENESS # \x1D327 TETRAGRAM FOR KINSHIP # \x1D328 TETRAGRAM FOR GATHERING # \x1D329 TETRAGRAM FOR STRENGTH # \x1D32A TETRAGRAM FOR PURITY # \x1D32B TETRAGRAM FOR FULLNESS # \x1D32C TETRAGRAM FOR RESIDENCE # \x1D32D TETRAGRAM FOR LAW OR MODEL # \x1D32E TETRAGRAM FOR RESPONSE # \x1D32F TETRAGRAM FOR GOING TO MEET # \x1D330 TETRAGRAM FOR ENCOUNTERS # \x1D331 TETRAGRAM FOR STOVE # \x1D332 TETRAGRAM FOR GREATNESS # \x1D333 TETRAGRAM FOR ENLARGEMENT # \x1D334 TETRAGRAM FOR PATTERN # \x1D335 TETRAGRAM FOR RITUAL # \x1D336 TETRAGRAM FOR FLIGHT # \x1D337 TETRAGRAM FOR VASTNESS OR WASTING # \x1D338 TETRAGRAM FOR CONSTANCY # \x1D339 TETRAGRAM FOR MEASURE # \x1D33A TETRAGRAM FOR ETERNITY # \x1D33B TETRAGRAM FOR UNITY # \x1D33C TETRAGRAM FOR DIMINISHMENT # \x1D33D TETRAGRAM FOR CLOSED MOUTH # \x1D33E TETRAGRAM FOR GUARDEDNESS # \x1D33F TETRAGRAM FOR GATHERING IN # \x1D340 TETRAGRAM FOR MASSING # \x1D341 TETRAGRAM FOR ACCUMULATION # \x1D342 TETRAGRAM FOR EMBELLISHMENT # \x1D343 TETRAGRAM FOR DOUBT # \x1D344 TETRAGRAM FOR WATCH # \x1D345 TETRAGRAM FOR SINKING # \x1D346 TETRAGRAM FOR INNER # \x1D347 TETRAGRAM FOR DEPARTURE # \x1D348 TETRAGRAM FOR DARKENING # \x1D349 TETRAGRAM FOR DIMMING # \x1D34A TETRAGRAM FOR EXHAUSTION # \x1D34B TETRAGRAM FOR SEVERANCE # \x1D34C TETRAGRAM FOR STOPPAGE # \x1D34D TETRAGRAM FOR HARDNESS # \x1D34E TETRAGRAM FOR COMPLETION # \x1D34F TETRAGRAM FOR CLOSURE # \x1D350 TETRAGRAM FOR FAILURE # \x1D351 TETRAGRAM FOR AGGRAVATION # \x1D352 TETRAGRAM FOR COMPLIANCE # \x1D353 TETRAGRAM FOR THE VERGE # \x1D354 TETRAGRAM FOR DIFFICULTIES # \x1D355 TETRAGRAM FOR LABOURING # \x1D356 TETRAGRAM FOR FOSTERING # \x1D400 MATHEMATICAL BOLD CAPITAL A 0041 # \x1D401 MATHEMATICAL BOLD CAPITAL B 0042 # \x1D402 MATHEMATICAL BOLD CAPITAL C 0043 # \x1D403 MATHEMATICAL BOLD CAPITAL D 0044 # \x1D404 MATHEMATICAL BOLD CAPITAL E 0045 # \x1D405 MATHEMATICAL BOLD CAPITAL F 0046 # \x1D406 MATHEMATICAL BOLD CAPITAL G 0047 # \x1D407 MATHEMATICAL BOLD CAPITAL H 0048 # \x1D408 MATHEMATICAL BOLD CAPITAL I 0049 # \x1D409 MATHEMATICAL BOLD CAPITAL J 004A # \x1D40A MATHEMATICAL BOLD CAPITAL K 004B # \x1D40B MATHEMATICAL BOLD CAPITAL 004C # \x1D40C MATHEMATICAL BOLD CAPITAL M 004D # \x1D40D MATHEMATICAL BOLD CAPITAL 004E # \x1D40E MATHEMATICAL BOLD CAPITAL O 004F # \x1D40F MATHEMATICAL BOLD CAPITAL P 0050 # \x1D410 MATHEMATICAL BOLD CAPITAL Q 0051 # \x1D411 MATHEMATICAL BOLD CAPITAL 0052 # \x1D412 MATHEMATICAL BOLD CAPITAL S 0053 # \x1D413 MATHEMATICAL BOLD CAPITAL T 0054 # \x1D414 MATHEMATICAL BOLD CAPITAL U 0055 # \x1D415 MATHEMATICAL BOLD CAPITAL V 0056 # \x1D416 MATHEMATICAL BOLD CAPITAL W 0057 # \x1D417 MATHEMATICAL BOLD CAPITAL X 0058 # \x1D418 MATHEMATICAL BOLD CAPITAL Y 0059 # \x1D419 MATHEMATICAL BOLD CAPITAL Z 005A # \x1D41A MATHEMATICAL BOLD SMALL A 0061 # \x1D41B MATHEMATICAL BOLD SMALL B 0062 # \x1D41C MATHEMATICAL BOLD SMALL C 0063 # \x1D41D MATHEMATICAL BOLD SMALL D 0064 # \x1D41E MATHEMATICAL BOLD SMALL E 0065 # \x1D41F MATHEMATICAL BOLD SMALL F 0066 # \x1D420 MATHEMATICAL BOLD SMALL G 0067 # \x1D421 MATHEMATICAL BOLD SMALL H 0068 # \x1D422 MATHEMATICAL BOLD SMALL I 0069 # \x1D423 MATHEMATICAL BOLD SMALL J 006A # \x1D424 MATHEMATICAL BOLD SMALL K 006B # \x1D425 MATHEMATICAL BOLD SMALL 006C # \x1D426 MATHEMATICAL BOLD SMALL M 006D # \x1D427 MATHEMATICAL BOLD SMALL 006E # \x1D428 MATHEMATICAL BOLD SMALL O 006F # \x1D429 MATHEMATICAL BOLD SMALL P 0070 # \x1D42A MATHEMATICAL BOLD SMALL Q 0071 # \x1D42B MATHEMATICAL BOLD SMALL 0072 # \x1D42C MATHEMATICAL BOLD SMALL S 0073 # \x1D42D MATHEMATICAL BOLD SMALL T 0074 # \x1D42E MATHEMATICAL BOLD SMALL U 0075 # \x1D42F MATHEMATICAL BOLD SMALL V 0076 # \x1D430 MATHEMATICAL BOLD SMALL W 0077 # \x1D431 MATHEMATICAL BOLD SMALL X 0078 # \x1D432 MATHEMATICAL BOLD SMALL Y 0079 # \x1D433 MATHEMATICAL BOLD SMALL Z 007A # \x1D434 MATHEMATICAL ITALIC CAPITAL A 0041 # \x1D435 MATHEMATICAL ITALIC CAPITAL B 0042 # \x1D436 MATHEMATICAL ITALIC CAPITAL C 0043 # \x1D437 MATHEMATICAL ITALIC CAPITAL D 0044 # \x1D438 MATHEMATICAL ITALIC CAPITAL E 0045 # \x1D439 MATHEMATICAL ITALIC CAPITAL F 0046 # \x1D43A MATHEMATICAL ITALIC CAPITAL G 0047 # \x1D43B MATHEMATICAL ITALIC CAPITAL H 0048 # \x1D43C MATHEMATICAL ITALIC CAPITAL I 0049 # \x1D43D MATHEMATICAL ITALIC CAPITAL J 004A # \x1D43E MATHEMATICAL ITALIC CAPITAL K 004B # \x1D43F MATHEMATICAL ITALIC CAPITAL 004C # \x1D440 MATHEMATICAL ITALIC CAPITAL M 004D # \x1D441 MATHEMATICAL ITALIC CAPITAL 004E # \x1D442 MATHEMATICAL ITALIC CAPITAL O 004F # \x1D443 MATHEMATICAL ITALIC CAPITAL P 0050 # \x1D444 MATHEMATICAL ITALIC CAPITAL Q 0051 # \x1D445 MATHEMATICAL ITALIC CAPITAL 0052 # \x1D446 MATHEMATICAL ITALIC CAPITAL S 0053 # \x1D447 MATHEMATICAL ITALIC CAPITAL T 0054 # \x1D448 MATHEMATICAL ITALIC CAPITAL U 0055 # \x1D449 MATHEMATICAL ITALIC CAPITAL V 0056 # \x1D44A MATHEMATICAL ITALIC CAPITAL W 0057 # \x1D44B MATHEMATICAL ITALIC CAPITAL X 0058 # \x1D44C MATHEMATICAL ITALIC CAPITAL Y 0059 # \x1D44D MATHEMATICAL ITALIC CAPITAL Z 005A # \x1D44E MATHEMATICAL ITALIC SMALL A 0061 # \x1D44F MATHEMATICAL ITALIC SMALL B 0062 # \x1D450 MATHEMATICAL ITALIC SMALL C 0063 # \x1D451 MATHEMATICAL ITALIC SMALL D 0064 # \x1D452 MATHEMATICAL ITALIC SMALL E 0065 # \x1D453 MATHEMATICAL ITALIC SMALL F 0066 # \x1D454 MATHEMATICAL ITALIC SMALL G 0067 # \x1D456 MATHEMATICAL ITALIC SMALL I 0069 # \x1D457 MATHEMATICAL ITALIC SMALL J 006A # \x1D458 MATHEMATICAL ITALIC SMALL K 006B # \x1D459 MATHEMATICAL ITALIC SMALL 006C # \x1D45A MATHEMATICAL ITALIC SMALL M 006D # \x1D45B MATHEMATICAL ITALIC SMALL 006E # \x1D45C MATHEMATICAL ITALIC SMALL O 006F # \x1D45D MATHEMATICAL ITALIC SMALL P 0070 # \x1D45E MATHEMATICAL ITALIC SMALL Q 0071 # \x1D45F MATHEMATICAL ITALIC SMALL 0072 # \x1D460 MATHEMATICAL ITALIC SMALL S 0073 # \x1D461 MATHEMATICAL ITALIC SMALL T 0074 # \x1D462 MATHEMATICAL ITALIC SMALL U 0075 # \x1D463 MATHEMATICAL ITALIC SMALL V 0076 # \x1D464 MATHEMATICAL ITALIC SMALL W 0077 # \x1D465 MATHEMATICAL ITALIC SMALL X 0078 # \x1D466 MATHEMATICAL ITALIC SMALL Y 0079 # \x1D467 MATHEMATICAL ITALIC SMALL Z 007A # \x1D468 MATHEMATICAL BOLD ITALIC CAPITAL A 0041 # \x1D469 MATHEMATICAL BOLD ITALIC CAPITAL B 0042 # \x1D46A MATHEMATICAL BOLD ITALIC CAPITAL C 0043 # \x1D46B MATHEMATICAL BOLD ITALIC CAPITAL D 0044 # \x1D46C MATHEMATICAL BOLD ITALIC CAPITAL E 0045 # \x1D46D MATHEMATICAL BOLD ITALIC CAPITAL F 0046 # \x1D46E MATHEMATICAL BOLD ITALIC CAPITAL G 0047 # \x1D46F MATHEMATICAL BOLD ITALIC CAPITAL H 0048 # \x1D470 MATHEMATICAL BOLD ITALIC CAPITAL I 0049 # \x1D471 MATHEMATICAL BOLD ITALIC CAPITAL J 004A # \x1D472 MATHEMATICAL BOLD ITALIC CAPITAL K 004B # \x1D473 MATHEMATICAL BOLD ITALIC CAPITAL 004C # \x1D474 MATHEMATICAL BOLD ITALIC CAPITAL M 004D # \x1D475 MATHEMATICAL BOLD ITALIC CAPITAL 004E # \x1D476 MATHEMATICAL BOLD ITALIC CAPITAL O 004F # \x1D477 MATHEMATICAL BOLD ITALIC CAPITAL P 0050 # \x1D478 MATHEMATICAL BOLD ITALIC CAPITAL Q 0051 # \x1D479 MATHEMATICAL BOLD ITALIC CAPITAL 0052 # \x1D47A MATHEMATICAL BOLD ITALIC CAPITAL S 0053 # \x1D47B MATHEMATICAL BOLD ITALIC CAPITAL T 0054 # \x1D47C MATHEMATICAL BOLD ITALIC CAPITAL U 0055 # \x1D47D MATHEMATICAL BOLD ITALIC CAPITAL V 0056 # \x1D47E MATHEMATICAL BOLD ITALIC CAPITAL W 0057 # \x1D47F MATHEMATICAL BOLD ITALIC CAPITAL X 0058 # \x1D480 MATHEMATICAL BOLD ITALIC CAPITAL Y 0059 # \x1D481 MATHEMATICAL BOLD ITALIC CAPITAL Z 005A # \x1D482 MATHEMATICAL BOLD ITALIC SMALL A 0061 # \x1D483 MATHEMATICAL BOLD ITALIC SMALL B 0062 # \x1D484 MATHEMATICAL BOLD ITALIC SMALL C 0063 # \x1D485 MATHEMATICAL BOLD ITALIC SMALL D 0064 # \x1D486 MATHEMATICAL BOLD ITALIC SMALL E 0065 # \x1D487 MATHEMATICAL BOLD ITALIC SMALL F 0066 # \x1D488 MATHEMATICAL BOLD ITALIC SMALL G 0067 # \x1D489 MATHEMATICAL BOLD ITALIC SMALL H 0068 # \x1D48A MATHEMATICAL BOLD ITALIC SMALL I 0069 # \x1D48B MATHEMATICAL BOLD ITALIC SMALL J 006A # \x1D48C MATHEMATICAL BOLD ITALIC SMALL K 006B # \x1D48D MATHEMATICAL BOLD ITALIC SMALL 006C # \x1D48E MATHEMATICAL BOLD ITALIC SMALL M 006D # \x1D48F MATHEMATICAL BOLD ITALIC SMALL 006E # \x1D490 MATHEMATICAL BOLD ITALIC SMALL O 006F # \x1D491 MATHEMATICAL BOLD ITALIC SMALL P 0070 # \x1D492 MATHEMATICAL BOLD ITALIC SMALL Q 0071 # \x1D493 MATHEMATICAL BOLD ITALIC SMALL 0072 # \x1D494 MATHEMATICAL BOLD ITALIC SMALL S 0073 # \x1D495 MATHEMATICAL BOLD ITALIC SMALL T 0074 # \x1D496 MATHEMATICAL BOLD ITALIC SMALL U 0075 # \x1D497 MATHEMATICAL BOLD ITALIC SMALL V 0076 # \x1D498 MATHEMATICAL BOLD ITALIC SMALL W 0077 # \x1D499 MATHEMATICAL BOLD ITALIC SMALL X 0078 # \x1D49A MATHEMATICAL BOLD ITALIC SMALL Y 0079 # \x1D49B MATHEMATICAL BOLD ITALIC SMALL Z 007A # \x1D49C MATHEMATICAL SCRIPT CAPITAL A 0041 # \x1D49E MATHEMATICAL SCRIPT CAPITAL C 0043 # \x1D49F MATHEMATICAL SCRIPT CAPITAL D 0044 # \x1D4A2 MATHEMATICAL SCRIPT CAPITAL G 0047 # \x1D4A5 MATHEMATICAL SCRIPT CAPITAL J 004A # \x1D4A6 MATHEMATICAL SCRIPT CAPITAL K 004B # \x1D4A9 MATHEMATICAL SCRIPT CAPITAL 004E # \x1D4AA MATHEMATICAL SCRIPT CAPITAL O 004F # \x1D4AB MATHEMATICAL SCRIPT CAPITAL P 0050 # \x1D4AC MATHEMATICAL SCRIPT CAPITAL Q 0051 # \x1D4AE MATHEMATICAL SCRIPT CAPITAL S 0053 # \x1D4AF MATHEMATICAL SCRIPT CAPITAL T 0054 # \x1D4B0 MATHEMATICAL SCRIPT CAPITAL U 0055 # \x1D4B1 MATHEMATICAL SCRIPT CAPITAL V 0056 # \x1D4B2 MATHEMATICAL SCRIPT CAPITAL W 0057 # \x1D4B3 MATHEMATICAL SCRIPT CAPITAL X 0058 # \x1D4B4 MATHEMATICAL SCRIPT CAPITAL Y 0059 # \x1D4B5 MATHEMATICAL SCRIPT CAPITAL Z 005A # \x1D4B6 MATHEMATICAL SCRIPT SMALL A 0061 # \x1D4B7 MATHEMATICAL SCRIPT SMALL B 0062 # \x1D4B8 MATHEMATICAL SCRIPT SMALL C 0063 # \x1D4B9 MATHEMATICAL SCRIPT SMALL D 0064 # \x1D4BB MATHEMATICAL SCRIPT SMALL F 0066 # \x1D4BD MATHEMATICAL SCRIPT SMALL H 0068 # \x1D4BE MATHEMATICAL SCRIPT SMALL I 0069 # \x1D4BF MATHEMATICAL SCRIPT SMALL J 006A # \x1D4C0 MATHEMATICAL SCRIPT SMALL K 006B # \x1D4C1 MATHEMATICAL SCRIPT SMALL 006C # \x1D4C2 MATHEMATICAL SCRIPT SMALL M 006D # \x1D4C3 MATHEMATICAL SCRIPT SMALL 006E # \x1D4C5 MATHEMATICAL SCRIPT SMALL P 0070 # \x1D4C6 MATHEMATICAL SCRIPT SMALL Q 0071 # \x1D4C7 MATHEMATICAL SCRIPT SMALL 0072 # \x1D4C8 MATHEMATICAL SCRIPT SMALL S 0073 # \x1D4C9 MATHEMATICAL SCRIPT SMALL T 0074 # \x1D4CA MATHEMATICAL SCRIPT SMALL U 0075 # \x1D4CB MATHEMATICAL SCRIPT SMALL V 0076 # \x1D4CC MATHEMATICAL SCRIPT SMALL W 0077 # \x1D4CD MATHEMATICAL SCRIPT SMALL X 0078 # \x1D4CE MATHEMATICAL SCRIPT SMALL Y 0079 # \x1D4CF MATHEMATICAL SCRIPT SMALL Z 007A # \x1D4D0 MATHEMATICAL BOLD SCRIPT CAPITAL A 0041 # \x1D4D1 MATHEMATICAL BOLD SCRIPT CAPITAL B 0042 # \x1D4D2 MATHEMATICAL BOLD SCRIPT CAPITAL C 0043 # \x1D4D3 MATHEMATICAL BOLD SCRIPT CAPITAL D 0044 # \x1D4D4 MATHEMATICAL BOLD SCRIPT CAPITAL E 0045 # \x1D4D5 MATHEMATICAL BOLD SCRIPT CAPITAL F 0046 # \x1D4D6 MATHEMATICAL BOLD SCRIPT CAPITAL G 0047 # \x1D4D7 MATHEMATICAL BOLD SCRIPT CAPITAL H 0048 # \x1D4D8 MATHEMATICAL BOLD SCRIPT CAPITAL I 0049 # \x1D4D9 MATHEMATICAL BOLD SCRIPT CAPITAL J 004A # \x1D4DA MATHEMATICAL BOLD SCRIPT CAPITAL K 004B # \x1D4DB MATHEMATICAL BOLD SCRIPT CAPITAL 004C # \x1D4DC MATHEMATICAL BOLD SCRIPT CAPITAL M 004D # \x1D4DD MATHEMATICAL BOLD SCRIPT CAPITAL 004E # \x1D4DE MATHEMATICAL BOLD SCRIPT CAPITAL O 004F # \x1D4DF MATHEMATICAL BOLD SCRIPT CAPITAL P 0050 # \x1D4E0 MATHEMATICAL BOLD SCRIPT CAPITAL Q 0051 # \x1D4E1 MATHEMATICAL BOLD SCRIPT CAPITAL 0052 # \x1D4E2 MATHEMATICAL BOLD SCRIPT CAPITAL S 0053 # \x1D4E3 MATHEMATICAL BOLD SCRIPT CAPITAL T 0054 # \x1D4E4 MATHEMATICAL BOLD SCRIPT CAPITAL U 0055 # \x1D4E5 MATHEMATICAL BOLD SCRIPT CAPITAL V 0056 # \x1D4E6 MATHEMATICAL BOLD SCRIPT CAPITAL W 0057 # \x1D4E7 MATHEMATICAL BOLD SCRIPT CAPITAL X 0058 # \x1D4E8 MATHEMATICAL BOLD SCRIPT CAPITAL Y 0059 # \x1D4E9 MATHEMATICAL BOLD SCRIPT CAPITAL Z 005A # \x1D4EA MATHEMATICAL BOLD SCRIPT SMALL A 0061 # \x1D4EB MATHEMATICAL BOLD SCRIPT SMALL B 0062 # \x1D4EC MATHEMATICAL BOLD SCRIPT SMALL C 0063 # \x1D4ED MATHEMATICAL BOLD SCRIPT SMALL D 0064 # \x1D4EE MATHEMATICAL BOLD SCRIPT SMALL E 0065 # \x1D4EF MATHEMATICAL BOLD SCRIPT SMALL F 0066 # \x1D4F0 MATHEMATICAL BOLD SCRIPT SMALL G 0067 # \x1D4F1 MATHEMATICAL BOLD SCRIPT SMALL H 0068 # \x1D4F2 MATHEMATICAL BOLD SCRIPT SMALL I 0069 # \x1D4F3 MATHEMATICAL BOLD SCRIPT SMALL J 006A # \x1D4F4 MATHEMATICAL BOLD SCRIPT SMALL K 006B # \x1D4F5 MATHEMATICAL BOLD SCRIPT SMALL 006C # \x1D4F6 MATHEMATICAL BOLD SCRIPT SMALL M 006D # \x1D4F7 MATHEMATICAL BOLD SCRIPT SMALL 006E # \x1D4F8 MATHEMATICAL BOLD SCRIPT SMALL O 006F # \x1D4F9 MATHEMATICAL BOLD SCRIPT SMALL P 0070 # \x1D4FA MATHEMATICAL BOLD SCRIPT SMALL Q 0071 # \x1D4FB MATHEMATICAL BOLD SCRIPT SMALL 0072 # \x1D4FC MATHEMATICAL BOLD SCRIPT SMALL S 0073 # \x1D4FD MATHEMATICAL BOLD SCRIPT SMALL T 0074 # \x1D4FE MATHEMATICAL BOLD SCRIPT SMALL U 0075 # \x1D4FF MATHEMATICAL BOLD SCRIPT SMALL V 0076 # \x1D500 MATHEMATICAL BOLD SCRIPT SMALL W 0077 # \x1D501 MATHEMATICAL BOLD SCRIPT SMALL X 0078 # \x1D502 MATHEMATICAL BOLD SCRIPT SMALL Y 0079 # \x1D503 MATHEMATICAL BOLD SCRIPT SMALL Z 007A # \x1D504 MATHEMATICAL FRAKTUR CAPITAL A 0041 # \x1D505 MATHEMATICAL FRAKTUR CAPITAL B 0042 # \x1D507 MATHEMATICAL FRAKTUR CAPITAL D 0044 # \x1D508 MATHEMATICAL FRAKTUR CAPITAL E 0045 # \x1D509 MATHEMATICAL FRAKTUR CAPITAL F 0046 # \x1D50A MATHEMATICAL FRAKTUR CAPITAL G 0047 # \x1D50D MATHEMATICAL FRAKTUR CAPITAL J 004A # \x1D50E MATHEMATICAL FRAKTUR CAPITAL K 004B # \x1D50F MATHEMATICAL FRAKTUR CAPITAL 004C # \x1D510 MATHEMATICAL FRAKTUR CAPITAL M 004D # \x1D511 MATHEMATICAL FRAKTUR CAPITAL 004E # \x1D512 MATHEMATICAL FRAKTUR CAPITAL O 004F # \x1D513 MATHEMATICAL FRAKTUR CAPITAL P 0050 # \x1D514 MATHEMATICAL FRAKTUR CAPITAL Q 0051 # \x1D516 MATHEMATICAL FRAKTUR CAPITAL S 0053 # \x1D517 MATHEMATICAL FRAKTUR CAPITAL T 0054 # \x1D518 MATHEMATICAL FRAKTUR CAPITAL U 0055 # \x1D519 MATHEMATICAL FRAKTUR CAPITAL V 0056 # \x1D51A MATHEMATICAL FRAKTUR CAPITAL W 0057 # \x1D51B MATHEMATICAL FRAKTUR CAPITAL X 0058 # \x1D51C MATHEMATICAL FRAKTUR CAPITAL Y 0059 # \x1D51E MATHEMATICAL FRAKTUR SMALL A 0061 # \x1D51F MATHEMATICAL FRAKTUR SMALL B 0062 # \x1D520 MATHEMATICAL FRAKTUR SMALL C 0063 # \x1D521 MATHEMATICAL FRAKTUR SMALL D 0064 # \x1D522 MATHEMATICAL FRAKTUR SMALL E 0065 # \x1D523 MATHEMATICAL FRAKTUR SMALL F 0066 # \x1D524 MATHEMATICAL FRAKTUR SMALL G 0067 # \x1D525 MATHEMATICAL FRAKTUR SMALL H 0068 # \x1D526 MATHEMATICAL FRAKTUR SMALL I 0069 # \x1D527 MATHEMATICAL FRAKTUR SMALL J 006A # \x1D528 MATHEMATICAL FRAKTUR SMALL K 006B # \x1D529 MATHEMATICAL FRAKTUR SMALL 006C # \x1D52A MATHEMATICAL FRAKTUR SMALL M 006D # \x1D52B MATHEMATICAL FRAKTUR SMALL 006E # \x1D52C MATHEMATICAL FRAKTUR SMALL O 006F # \x1D52D MATHEMATICAL FRAKTUR SMALL P 0070 # \x1D52E MATHEMATICAL FRAKTUR SMALL Q 0071 # \x1D52F MATHEMATICAL FRAKTUR SMALL 0072 # \x1D530 MATHEMATICAL FRAKTUR SMALL S 0073 # \x1D531 MATHEMATICAL FRAKTUR SMALL T 0074 # \x1D532 MATHEMATICAL FRAKTUR SMALL U 0075 # \x1D533 MATHEMATICAL FRAKTUR SMALL V 0076 # \x1D534 MATHEMATICAL FRAKTUR SMALL W 0077 # \x1D535 MATHEMATICAL FRAKTUR SMALL X 0078 # \x1D536 MATHEMATICAL FRAKTUR SMALL Y 0079 # \x1D537 MATHEMATICAL FRAKTUR SMALL Z 007A # \x1D538 MATHEMATICAL DOUBLE-STRUCK CAPITAL A 0041 # \x1D539 MATHEMATICAL DOUBLE-STRUCK CAPITAL B 0042 # \x1D53B MATHEMATICAL DOUBLE-STRUCK CAPITAL D 0044 # \x1D53C MATHEMATICAL DOUBLE-STRUCK CAPITAL E 0045 # \x1D53D MATHEMATICAL DOUBLE-STRUCK CAPITAL F 0046 # \x1D53E MATHEMATICAL DOUBLE-STRUCK CAPITAL G 0047 # \x1D540 MATHEMATICAL DOUBLE-STRUCK CAPITAL I 0049 # \x1D541 MATHEMATICAL DOUBLE-STRUCK CAPITAL J 004A # \x1D542 MATHEMATICAL DOUBLE-STRUCK CAPITAL K 004B # \x1D543 MATHEMATICAL DOUBLE-STRUCK CAPITAL 004C # \x1D544 MATHEMATICAL DOUBLE-STRUCK CAPITAL M 004D # \x1D546 MATHEMATICAL DOUBLE-STRUCK CAPITAL O 004F # \x1D54A MATHEMATICAL DOUBLE-STRUCK CAPITAL S 0053 # \x1D54B MATHEMATICAL DOUBLE-STRUCK CAPITAL T 0054 # \x1D54C MATHEMATICAL DOUBLE-STRUCK CAPITAL U 0055 # \x1D54D MATHEMATICAL DOUBLE-STRUCK CAPITAL V 0056 # \x1D54E MATHEMATICAL DOUBLE-STRUCK CAPITAL W 0057 # \x1D54F MATHEMATICAL DOUBLE-STRUCK CAPITAL X 0058 # \x1D550 MATHEMATICAL DOUBLE-STRUCK CAPITAL Y 0059 # \x1D552 MATHEMATICAL DOUBLE-STRUCK SMALL A 0061 # \x1D553 MATHEMATICAL DOUBLE-STRUCK SMALL B 0062 # \x1D554 MATHEMATICAL DOUBLE-STRUCK SMALL C 0063 # \x1D555 MATHEMATICAL DOUBLE-STRUCK SMALL D 0064 # \x1D556 MATHEMATICAL DOUBLE-STRUCK SMALL E 0065 # \x1D557 MATHEMATICAL DOUBLE-STRUCK SMALL F 0066 # \x1D558 MATHEMATICAL DOUBLE-STRUCK SMALL G 0067 # \x1D559 MATHEMATICAL DOUBLE-STRUCK SMALL H 0068 # \x1D55A MATHEMATICAL DOUBLE-STRUCK SMALL I 0069 # \x1D55B MATHEMATICAL DOUBLE-STRUCK SMALL J 006A # \x1D55C MATHEMATICAL DOUBLE-STRUCK SMALL K 006B # \x1D55D MATHEMATICAL DOUBLE-STRUCK SMALL 006C # \x1D55E MATHEMATICAL DOUBLE-STRUCK SMALL M 006D # \x1D55F MATHEMATICAL DOUBLE-STRUCK SMALL 006E # \x1D560 MATHEMATICAL DOUBLE-STRUCK SMALL O 006F # \x1D561 MATHEMATICAL DOUBLE-STRUCK SMALL P 0070 # \x1D562 MATHEMATICAL DOUBLE-STRUCK SMALL Q 0071 # \x1D563 MATHEMATICAL DOUBLE-STRUCK SMALL 0072 # \x1D564 MATHEMATICAL DOUBLE-STRUCK SMALL S 0073 # \x1D565 MATHEMATICAL DOUBLE-STRUCK SMALL T 0074 # \x1D566 MATHEMATICAL DOUBLE-STRUCK SMALL U 0075 # \x1D567 MATHEMATICAL DOUBLE-STRUCK SMALL V 0076 # \x1D568 MATHEMATICAL DOUBLE-STRUCK SMALL W 0077 # \x1D569 MATHEMATICAL DOUBLE-STRUCK SMALL X 0078 # \x1D56A MATHEMATICAL DOUBLE-STRUCK SMALL Y 0079 # \x1D56B MATHEMATICAL DOUBLE-STRUCK SMALL Z 007A # \x1D56C MATHEMATICAL BOLD FRAKTUR CAPITAL A 0041 # \x1D56D MATHEMATICAL BOLD FRAKTUR CAPITAL B 0042 # \x1D56E MATHEMATICAL BOLD FRAKTUR CAPITAL C 0043 # \x1D56F MATHEMATICAL BOLD FRAKTUR CAPITAL D 0044 # \x1D570 MATHEMATICAL BOLD FRAKTUR CAPITAL E 0045 # \x1D571 MATHEMATICAL BOLD FRAKTUR CAPITAL F 0046 # \x1D572 MATHEMATICAL BOLD FRAKTUR CAPITAL G 0047 # \x1D573 MATHEMATICAL BOLD FRAKTUR CAPITAL H 0048 # \x1D574 MATHEMATICAL BOLD FRAKTUR CAPITAL I 0049 # \x1D575 MATHEMATICAL BOLD FRAKTUR CAPITAL J 004A # \x1D576 MATHEMATICAL BOLD FRAKTUR CAPITAL K 004B # \x1D577 MATHEMATICAL BOLD FRAKTUR CAPITAL 004C # \x1D578 MATHEMATICAL BOLD FRAKTUR CAPITAL M 004D # \x1D579 MATHEMATICAL BOLD FRAKTUR CAPITAL 004E # \x1D57A MATHEMATICAL BOLD FRAKTUR CAPITAL O 004F # \x1D57B MATHEMATICAL BOLD FRAKTUR CAPITAL P 0050 # \x1D57C MATHEMATICAL BOLD FRAKTUR CAPITAL Q 0051 # \x1D57D MATHEMATICAL BOLD FRAKTUR CAPITAL 0052 # \x1D57E MATHEMATICAL BOLD FRAKTUR CAPITAL S 0053 # \x1D57F MATHEMATICAL BOLD FRAKTUR CAPITAL T 0054 # \x1D580 MATHEMATICAL BOLD FRAKTUR CAPITAL U 0055 # \x1D581 MATHEMATICAL BOLD FRAKTUR CAPITAL V 0056 # \x1D582 MATHEMATICAL BOLD FRAKTUR CAPITAL W 0057 # \x1D583 MATHEMATICAL BOLD FRAKTUR CAPITAL X 0058 # \x1D584 MATHEMATICAL BOLD FRAKTUR CAPITAL Y 0059 # \x1D585 MATHEMATICAL BOLD FRAKTUR CAPITAL Z 005A # \x1D586 MATHEMATICAL BOLD FRAKTUR SMALL A 0061 # \x1D587 MATHEMATICAL BOLD FRAKTUR SMALL B 0062 # \x1D588 MATHEMATICAL BOLD FRAKTUR SMALL C 0063 # \x1D589 MATHEMATICAL BOLD FRAKTUR SMALL D 0064 # \x1D58A MATHEMATICAL BOLD FRAKTUR SMALL E 0065 # \x1D58B MATHEMATICAL BOLD FRAKTUR SMALL F 0066 # \x1D58C MATHEMATICAL BOLD FRAKTUR SMALL G 0067 # \x1D58D MATHEMATICAL BOLD FRAKTUR SMALL H 0068 # \x1D58E MATHEMATICAL BOLD FRAKTUR SMALL I 0069 # \x1D58F MATHEMATICAL BOLD FRAKTUR SMALL J 006A # \x1D590 MATHEMATICAL BOLD FRAKTUR SMALL K 006B # \x1D591 MATHEMATICAL BOLD FRAKTUR SMALL 006C # \x1D592 MATHEMATICAL BOLD FRAKTUR SMALL M 006D # \x1D593 MATHEMATICAL BOLD FRAKTUR SMALL 006E # \x1D594 MATHEMATICAL BOLD FRAKTUR SMALL O 006F # \x1D595 MATHEMATICAL BOLD FRAKTUR SMALL P 0070 # \x1D596 MATHEMATICAL BOLD FRAKTUR SMALL Q 0071 # \x1D597 MATHEMATICAL BOLD FRAKTUR SMALL 0072 # \x1D598 MATHEMATICAL BOLD FRAKTUR SMALL S 0073 # \x1D599 MATHEMATICAL BOLD FRAKTUR SMALL T 0074 # \x1D59A MATHEMATICAL BOLD FRAKTUR SMALL U 0075 # \x1D59B MATHEMATICAL BOLD FRAKTUR SMALL V 0076 # \x1D59C MATHEMATICAL BOLD FRAKTUR SMALL W 0077 # \x1D59D MATHEMATICAL BOLD FRAKTUR SMALL X 0078 # \x1D59E MATHEMATICAL BOLD FRAKTUR SMALL Y 0079 # \x1D59F MATHEMATICAL BOLD FRAKTUR SMALL Z 007A # \x1D5A0 MATHEMATICAL SANS-SERIF CAPITAL A 0041 # \x1D5A1 MATHEMATICAL SANS-SERIF CAPITAL B 0042 # \x1D5A2 MATHEMATICAL SANS-SERIF CAPITAL C 0043 # \x1D5A3 MATHEMATICAL SANS-SERIF CAPITAL D 0044 # \x1D5A4 MATHEMATICAL SANS-SERIF CAPITAL E 0045 # \x1D5A5 MATHEMATICAL SANS-SERIF CAPITAL F 0046 # \x1D5A6 MATHEMATICAL SANS-SERIF CAPITAL G 0047 # \x1D5A7 MATHEMATICAL SANS-SERIF CAPITAL H 0048 # \x1D5A8 MATHEMATICAL SANS-SERIF CAPITAL I 0049 # \x1D5A9 MATHEMATICAL SANS-SERIF CAPITAL J 004A # \x1D5AA MATHEMATICAL SANS-SERIF CAPITAL K 004B # \x1D5AB MATHEMATICAL SANS-SERIF CAPITAL 004C # \x1D5AC MATHEMATICAL SANS-SERIF CAPITAL M 004D # \x1D5AD MATHEMATICAL SANS-SERIF CAPITAL 004E # \x1D5AE MATHEMATICAL SANS-SERIF CAPITAL O 004F # \x1D5AF MATHEMATICAL SANS-SERIF CAPITAL P 0050 # \x1D5B0 MATHEMATICAL SANS-SERIF CAPITAL Q 0051 # \x1D5B1 MATHEMATICAL SANS-SERIF CAPITAL 0052 # \x1D5B2 MATHEMATICAL SANS-SERIF CAPITAL S 0053 # \x1D5B3 MATHEMATICAL SANS-SERIF CAPITAL T 0054 # \x1D5B4 MATHEMATICAL SANS-SERIF CAPITAL U 0055 # \x1D5B5 MATHEMATICAL SANS-SERIF CAPITAL V 0056 # \x1D5B6 MATHEMATICAL SANS-SERIF CAPITAL W 0057 # \x1D5B7 MATHEMATICAL SANS-SERIF CAPITAL X 0058 # \x1D5B8 MATHEMATICAL SANS-SERIF CAPITAL Y 0059 # \x1D5B9 MATHEMATICAL SANS-SERIF CAPITAL Z 005A # \x1D5BA MATHEMATICAL SANS-SERIF SMALL A 0061 # \x1D5BB MATHEMATICAL SANS-SERIF SMALL B 0062 # \x1D5BC MATHEMATICAL SANS-SERIF SMALL C 0063 # \x1D5BD MATHEMATICAL SANS-SERIF SMALL D 0064 # \x1D5BE MATHEMATICAL SANS-SERIF SMALL E 0065 # \x1D5BF MATHEMATICAL SANS-SERIF SMALL F 0066 # \x1D5C0 MATHEMATICAL SANS-SERIF SMALL G 0067 # \x1D5C1 MATHEMATICAL SANS-SERIF SMALL H 0068 # \x1D5C2 MATHEMATICAL SANS-SERIF SMALL I 0069 # \x1D5C3 MATHEMATICAL SANS-SERIF SMALL J 006A # \x1D5C4 MATHEMATICAL SANS-SERIF SMALL K 006B # \x1D5C5 MATHEMATICAL SANS-SERIF SMALL 006C # \x1D5C6 MATHEMATICAL SANS-SERIF SMALL M 006D # \x1D5C7 MATHEMATICAL SANS-SERIF SMALL 006E # \x1D5C8 MATHEMATICAL SANS-SERIF SMALL O 006F # \x1D5C9 MATHEMATICAL SANS-SERIF SMALL P 0070 # \x1D5CA MATHEMATICAL SANS-SERIF SMALL Q 0071 # \x1D5CB MATHEMATICAL SANS-SERIF SMALL 0072 # \x1D5CC MATHEMATICAL SANS-SERIF SMALL S 0073 # \x1D5CD MATHEMATICAL SANS-SERIF SMALL T 0074 # \x1D5CE MATHEMATICAL SANS-SERIF SMALL U 0075 # \x1D5CF MATHEMATICAL SANS-SERIF SMALL V 0076 # \x1D5D0 MATHEMATICAL SANS-SERIF SMALL W 0077 # \x1D5D1 MATHEMATICAL SANS-SERIF SMALL X 0078 # \x1D5D2 MATHEMATICAL SANS-SERIF SMALL Y 0079 # \x1D5D3 MATHEMATICAL SANS-SERIF SMALL Z 007A # \x1D5D4 MATHEMATICAL SANS-SERIF BOLD CAPITAL A 0041 # \x1D5D5 MATHEMATICAL SANS-SERIF BOLD CAPITAL B 0042 # \x1D5D6 MATHEMATICAL SANS-SERIF BOLD CAPITAL C 0043 # \x1D5D7 MATHEMATICAL SANS-SERIF BOLD CAPITAL D 0044 # \x1D5D8 MATHEMATICAL SANS-SERIF BOLD CAPITAL E 0045 # \x1D5D9 MATHEMATICAL SANS-SERIF BOLD CAPITAL F 0046 # \x1D5DA MATHEMATICAL SANS-SERIF BOLD CAPITAL G 0047 # \x1D5DB MATHEMATICAL SANS-SERIF BOLD CAPITAL H 0048 # \x1D5DC MATHEMATICAL SANS-SERIF BOLD CAPITAL I 0049 # \x1D5DD MATHEMATICAL SANS-SERIF BOLD CAPITAL J 004A # \x1D5DE MATHEMATICAL SANS-SERIF BOLD CAPITAL K 004B # \x1D5DF MATHEMATICAL SANS-SERIF BOLD CAPITAL 004C # \x1D5E0 MATHEMATICAL SANS-SERIF BOLD CAPITAL M 004D # \x1D5E1 MATHEMATICAL SANS-SERIF BOLD CAPITAL 004E # \x1D5E2 MATHEMATICAL SANS-SERIF BOLD CAPITAL O 004F # \x1D5E3 MATHEMATICAL SANS-SERIF BOLD CAPITAL P 0050 # \x1D5E4 MATHEMATICAL SANS-SERIF BOLD CAPITAL Q 0051 # \x1D5E5 MATHEMATICAL SANS-SERIF BOLD CAPITAL 0052 # \x1D5E6 MATHEMATICAL SANS-SERIF BOLD CAPITAL S 0053 # \x1D5E7 MATHEMATICAL SANS-SERIF BOLD CAPITAL T 0054 # \x1D5E8 MATHEMATICAL SANS-SERIF BOLD CAPITAL U 0055 # \x1D5E9 MATHEMATICAL SANS-SERIF BOLD CAPITAL V 0056 # \x1D5EA MATHEMATICAL SANS-SERIF BOLD CAPITAL W 0057 # \x1D5EB MATHEMATICAL SANS-SERIF BOLD CAPITAL X 0058 # \x1D5EC MATHEMATICAL SANS-SERIF BOLD CAPITAL Y 0059 # \x1D5ED MATHEMATICAL SANS-SERIF BOLD CAPITAL Z 005A # \x1D5EE MATHEMATICAL SANS-SERIF BOLD SMALL A 0061 # \x1D5EF MATHEMATICAL SANS-SERIF BOLD SMALL B 0062 # \x1D5F0 MATHEMATICAL SANS-SERIF BOLD SMALL C 0063 # \x1D5F1 MATHEMATICAL SANS-SERIF BOLD SMALL D 0064 # \x1D5F2 MATHEMATICAL SANS-SERIF BOLD SMALL E 0065 # \x1D5F3 MATHEMATICAL SANS-SERIF BOLD SMALL F 0066 # \x1D5F4 MATHEMATICAL SANS-SERIF BOLD SMALL G 0067 # \x1D5F5 MATHEMATICAL SANS-SERIF BOLD SMALL H 0068 # \x1D5F6 MATHEMATICAL SANS-SERIF BOLD SMALL I 0069 # \x1D5F7 MATHEMATICAL SANS-SERIF BOLD SMALL J 006A # \x1D5F8 MATHEMATICAL SANS-SERIF BOLD SMALL K 006B # \x1D5F9 MATHEMATICAL SANS-SERIF BOLD SMALL 006C # \x1D5FA MATHEMATICAL SANS-SERIF BOLD SMALL M 006D # \x1D5FB MATHEMATICAL SANS-SERIF BOLD SMALL 006E # \x1D5FC MATHEMATICAL SANS-SERIF BOLD SMALL O 006F # \x1D5FD MATHEMATICAL SANS-SERIF BOLD SMALL P 0070 # \x1D5FE MATHEMATICAL SANS-SERIF BOLD SMALL Q 0071 # \x1D5FF MATHEMATICAL SANS-SERIF BOLD SMALL 0072 # \x1D600 MATHEMATICAL SANS-SERIF BOLD SMALL S 0073 # \x1D601 MATHEMATICAL SANS-SERIF BOLD SMALL T 0074 # \x1D602 MATHEMATICAL SANS-SERIF BOLD SMALL U 0075 # \x1D603 MATHEMATICAL SANS-SERIF BOLD SMALL V 0076 # \x1D604 MATHEMATICAL SANS-SERIF BOLD SMALL W 0077 # \x1D605 MATHEMATICAL SANS-SERIF BOLD SMALL X 0078 # \x1D606 MATHEMATICAL SANS-SERIF BOLD SMALL Y 0079 # \x1D607 MATHEMATICAL SANS-SERIF BOLD SMALL Z 007A # \x1D608 MATHEMATICAL SANS-SERIF ITALIC CAPITAL A 0041 # \x1D609 MATHEMATICAL SANS-SERIF ITALIC CAPITAL B 0042 # \x1D60A MATHEMATICAL SANS-SERIF ITALIC CAPITAL C 0043 # \x1D60B MATHEMATICAL SANS-SERIF ITALIC CAPITAL D 0044 # \x1D60C MATHEMATICAL SANS-SERIF ITALIC CAPITAL E 0045 # \x1D60D MATHEMATICAL SANS-SERIF ITALIC CAPITAL F 0046 # \x1D60E MATHEMATICAL SANS-SERIF ITALIC CAPITAL G 0047 # \x1D60F MATHEMATICAL SANS-SERIF ITALIC CAPITAL H 0048 # \x1D610 MATHEMATICAL SANS-SERIF ITALIC CAPITAL I 0049 # \x1D611 MATHEMATICAL SANS-SERIF ITALIC CAPITAL J 004A # \x1D612 MATHEMATICAL SANS-SERIF ITALIC CAPITAL K 004B # \x1D613 MATHEMATICAL SANS-SERIF ITALIC CAPITAL 004C # \x1D614 MATHEMATICAL SANS-SERIF ITALIC CAPITAL M 004D # \x1D615 MATHEMATICAL SANS-SERIF ITALIC CAPITAL 004E # \x1D616 MATHEMATICAL SANS-SERIF ITALIC CAPITAL O 004F # \x1D617 MATHEMATICAL SANS-SERIF ITALIC CAPITAL P 0050 # \x1D618 MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q 0051 # \x1D619 MATHEMATICAL SANS-SERIF ITALIC CAPITAL 0052 # \x1D61A MATHEMATICAL SANS-SERIF ITALIC CAPITAL S 0053 # \x1D61B MATHEMATICAL SANS-SERIF ITALIC CAPITAL T 0054 # \x1D61C MATHEMATICAL SANS-SERIF ITALIC CAPITAL U 0055 # \x1D61D MATHEMATICAL SANS-SERIF ITALIC CAPITAL V 0056 # \x1D61E MATHEMATICAL SANS-SERIF ITALIC CAPITAL W 0057 # \x1D61F MATHEMATICAL SANS-SERIF ITALIC CAPITAL X 0058 # \x1D620 MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y 0059 # \x1D621 MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z 005A # \x1D622 MATHEMATICAL SANS-SERIF ITALIC SMALL A 0061 # \x1D623 MATHEMATICAL SANS-SERIF ITALIC SMALL B 0062 # \x1D624 MATHEMATICAL SANS-SERIF ITALIC SMALL C 0063 # \x1D625 MATHEMATICAL SANS-SERIF ITALIC SMALL D 0064 # \x1D626 MATHEMATICAL SANS-SERIF ITALIC SMALL E 0065 # \x1D627 MATHEMATICAL SANS-SERIF ITALIC SMALL F 0066 # \x1D628 MATHEMATICAL SANS-SERIF ITALIC SMALL G 0067 # \x1D629 MATHEMATICAL SANS-SERIF ITALIC SMALL H 0068 # \x1D62A MATHEMATICAL SANS-SERIF ITALIC SMALL I 0069 # \x1D62B MATHEMATICAL SANS-SERIF ITALIC SMALL J 006A # \x1D62C MATHEMATICAL SANS-SERIF ITALIC SMALL K 006B # \x1D62D MATHEMATICAL SANS-SERIF ITALIC SMALL 006C # \x1D62E MATHEMATICAL SANS-SERIF ITALIC SMALL M 006D # \x1D62F MATHEMATICAL SANS-SERIF ITALIC SMALL 006E # \x1D630 MATHEMATICAL SANS-SERIF ITALIC SMALL O 006F # \x1D631 MATHEMATICAL SANS-SERIF ITALIC SMALL P 0070 # \x1D632 MATHEMATICAL SANS-SERIF ITALIC SMALL Q 0071 # \x1D633 MATHEMATICAL SANS-SERIF ITALIC SMALL 0072 # \x1D634 MATHEMATICAL SANS-SERIF ITALIC SMALL S 0073 # \x1D635 MATHEMATICAL SANS-SERIF ITALIC SMALL T 0074 # \x1D636 MATHEMATICAL SANS-SERIF ITALIC SMALL U 0075 # \x1D637 MATHEMATICAL SANS-SERIF ITALIC SMALL V 0076 # \x1D638 MATHEMATICAL SANS-SERIF ITALIC SMALL W 0077 # \x1D639 MATHEMATICAL SANS-SERIF ITALIC SMALL X 0078 # \x1D63A MATHEMATICAL SANS-SERIF ITALIC SMALL Y 0079 # \x1D63B MATHEMATICAL SANS-SERIF ITALIC SMALL Z 007A # \x1D63C MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A 0041 # \x # \x1D63D MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B 0042 # \x # \x1D63E MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C 0043 # \x # \x1D63F MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D 0044 # \x # \x1D640 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E 0045 # \x # \x1D641 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F 0046 # \x # \x1D642 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G 0047 # \x # \x1D643 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H 0048 # \x # \x1D644 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I 0049 # \x # \x1D645 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J 004A # \x # \x1D646 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K 004B # \x # \x1D647 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL 004C # \x # \x1D648 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M 004D # \x # \x1D649 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL 004E # \x # \x1D64A MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O 004F # \x # \x1D64B MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P 0050 # \x # \x1D64C MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q 0051 # \x # \x1D64D MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL 0052 # \x # \x1D64E MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S 0053 # \x # \x1D64F MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T 0054 # \x # \x1D650 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U 0055 # \x # \x1D651 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V 0056 # \x # \x1D652 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W 0057 # \x # \x1D653 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X 0058 # \x # \x1D654 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y 0059 # \x # \x1D655 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z 005A # \x # \x1D656 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A 0061 # \x1D657 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B 0062 # \x1D658 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C 0063 # \x1D659 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D 0064 # \x1D65A MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E 0065 # \x1D65B MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F 0066 # \x1D65C MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G 0067 # \x1D65D MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H 0068 # \x1D65E MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I 0069 # \x1D65F MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J 006A # \x1D660 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K 006B # \x1D661 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL 006C # \x1D662 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M 006D # \x1D663 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL 006E # \x1D664 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O 006F # \x1D665 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P 0070 # \x1D666 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q 0071 # \x1D667 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL 0072 # \x1D668 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S 0073 # \x1D669 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T 0074 # \x1D66A MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U 0075 # \x1D66B MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V 0076 # \x1D66C MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W 0077 # \x1D66D MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X 0078 # \x1D66E MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y 0079 # \x1D66F MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z 007A # \x1D670 MATHEMATICAL MONOSPACE CAPITAL A 0041 # \x1D671 MATHEMATICAL MONOSPACE CAPITAL B 0042 # \x1D672 MATHEMATICAL MONOSPACE CAPITAL C 0043 # \x1D673 MATHEMATICAL MONOSPACE CAPITAL D 0044 # \x1D674 MATHEMATICAL MONOSPACE CAPITAL E 0045 # \x1D675 MATHEMATICAL MONOSPACE CAPITAL F 0046 # \x1D676 MATHEMATICAL MONOSPACE CAPITAL G 0047 # \x1D677 MATHEMATICAL MONOSPACE CAPITAL H 0048 # \x1D678 MATHEMATICAL MONOSPACE CAPITAL I 0049 # \x1D679 MATHEMATICAL MONOSPACE CAPITAL J 004A # \x1D67A MATHEMATICAL MONOSPACE CAPITAL K 004B # \x1D67B MATHEMATICAL MONOSPACE CAPITAL 004C # \x1D67C MATHEMATICAL MONOSPACE CAPITAL M 004D # \x1D67D MATHEMATICAL MONOSPACE CAPITAL 004E # \x1D67E MATHEMATICAL MONOSPACE CAPITAL O 004F # \x1D67F MATHEMATICAL MONOSPACE CAPITAL P 0050 # \x1D680 MATHEMATICAL MONOSPACE CAPITAL Q 0051 # \x1D681 MATHEMATICAL MONOSPACE CAPITAL 0052 # \x1D682 MATHEMATICAL MONOSPACE CAPITAL S 0053 # \x1D683 MATHEMATICAL MONOSPACE CAPITAL T 0054 # \x1D684 MATHEMATICAL MONOSPACE CAPITAL U 0055 # \x1D685 MATHEMATICAL MONOSPACE CAPITAL V 0056 # \x1D686 MATHEMATICAL MONOSPACE CAPITAL W 0057 # \x1D687 MATHEMATICAL MONOSPACE CAPITAL X 0058 # \x1D688 MATHEMATICAL MONOSPACE CAPITAL Y 0059 # \x1D689 MATHEMATICAL MONOSPACE CAPITAL Z 005A # \x1D68A MATHEMATICAL MONOSPACE SMALL A 0061 # \x1D68B MATHEMATICAL MONOSPACE SMALL B 0062 # \x1D68C MATHEMATICAL MONOSPACE SMALL C 0063 # \x1D68D MATHEMATICAL MONOSPACE SMALL D 0064 # \x1D68E MATHEMATICAL MONOSPACE SMALL E 0065 # \x1D68F MATHEMATICAL MONOSPACE SMALL F 0066 # \x1D690 MATHEMATICAL MONOSPACE SMALL G 0067 # \x1D691 MATHEMATICAL MONOSPACE SMALL H 0068 # \x1D692 MATHEMATICAL MONOSPACE SMALL I 0069 # \x1D693 MATHEMATICAL MONOSPACE SMALL J 006A # \x1D694 MATHEMATICAL MONOSPACE SMALL K 006B # \x1D695 MATHEMATICAL MONOSPACE SMALL 006C # \x1D696 MATHEMATICAL MONOSPACE SMALL M 006D # \x1D697 MATHEMATICAL MONOSPACE SMALL 006E # \x1D698 MATHEMATICAL MONOSPACE SMALL O 006F # \x1D699 MATHEMATICAL MONOSPACE SMALL P 0070 # \x1D69A MATHEMATICAL MONOSPACE SMALL Q 0071 # \x1D69B MATHEMATICAL MONOSPACE SMALL 0072 # \x1D69C MATHEMATICAL MONOSPACE SMALL S 0073 # \x1D69D MATHEMATICAL MONOSPACE SMALL T 0074 # \x1D69E MATHEMATICAL MONOSPACE SMALL U 0075 # \x1D69F MATHEMATICAL MONOSPACE SMALL V 0076 # \x1D6A0 MATHEMATICAL MONOSPACE SMALL W 0077 # \x1D6A1 MATHEMATICAL MONOSPACE SMALL X 0078 # \x1D6A2 MATHEMATICAL MONOSPACE SMALL Y 0079 # \x1D6A3 MATHEMATICAL MONOSPACE SMALL Z 007A # \x1D6A8 MATHEMATICAL BOLD CAPITAL ALPHA 0391 # \x1D6A9 MATHEMATICAL BOLD CAPITAL BETA 0392 # \x1D6AA MATHEMATICAL BOLD CAPITAL GAMMA 0393 # \x1D6AB MATHEMATICAL BOLD CAPITAL DELTA 0394 # \x1D6AC MATHEMATICAL BOLD CAPITAL EPSILON 0395 # \x1D6AD MATHEMATICAL BOLD CAPITAL ZETA 0396 # \x1D6AE MATHEMATICAL BOLD CAPITAL ETA 0397 # \x1D6AF MATHEMATICAL BOLD CAPITAL THETA 0398 # \x1D6B0 MATHEMATICAL BOLD CAPITAL IOTA 0399 # \x1D6B1 MATHEMATICAL BOLD CAPITAL KAPPA 039A # \x1D6B2 MATHEMATICAL BOLD CAPITAL LAMDA 039B # \x1D6B3 MATHEMATICAL BOLD CAPITAL MU 039C # \x1D6B4 MATHEMATICAL BOLD CAPITAL NU 039D # \x1D6B5 MATHEMATICAL BOLD CAPITAL XI 039E # \x1D6B6 MATHEMATICAL BOLD CAPITAL OMICRON 039F # \x1D6B7 MATHEMATICAL BOLD CAPITAL PI 03A0 # \x1D6B8 MATHEMATICAL BOLD CAPITAL RHO 03A1 # \x1D6B9 MATHEMATICAL BOLD CAPITAL THETA SYMBOL 03F4 # \x1D6BA MATHEMATICAL BOLD CAPITAL SIGMA 03A3 # \x1D6BB MATHEMATICAL BOLD CAPITAL TAU 03A4 # \x1D6BC MATHEMATICAL BOLD CAPITAL UPSILON 03A5 # \x1D6BD MATHEMATICAL BOLD CAPITAL PHI 03A6 # \x1D6BE MATHEMATICAL BOLD CAPITAL CHI 03A7 # \x1D6BF MATHEMATICAL BOLD CAPITAL PSI 03A8 # \x1D6C0 MATHEMATICAL BOLD CAPITAL OMEGA 03A9 # \x1D6C1 MATHEMATICAL BOLD NABLA 2207 # \x1D6C2 MATHEMATICAL BOLD SMALL ALPHA 03B1 # \x1D6C3 MATHEMATICAL BOLD SMALL BETA 03B2 # \x1D6C4 MATHEMATICAL BOLD SMALL GAMMA 03B3 # \x1D6C5 MATHEMATICAL BOLD SMALL DELTA 03B4 # \x1D6C6 MATHEMATICAL BOLD SMALL EPSILON 03B5 # \x1D6C7 MATHEMATICAL BOLD SMALL ZETA 03B6 # \x1D6C8 MATHEMATICAL BOLD SMALL ETA 03B7 # \x1D6C9 MATHEMATICAL BOLD SMALL THETA 03B8 # \x1D6CA MATHEMATICAL BOLD SMALL IOTA 03B9 # \x1D6CB MATHEMATICAL BOLD SMALL KAPPA 03BA # \x1D6CC MATHEMATICAL BOLD SMALL LAMDA 03BB # \x1D6CD MATHEMATICAL BOLD SMALL MU 03BC # \x1D6CE MATHEMATICAL BOLD SMALL NU 03BD # \x1D6CF MATHEMATICAL BOLD SMALL XI 03BE # \x1D6D0 MATHEMATICAL BOLD SMALL OMICRON 03BF # \x1D6D1 MATHEMATICAL BOLD SMALL PI 03C0 # \x1D6D2 MATHEMATICAL BOLD SMALL RHO 03C1 # \x1D6D3 MATHEMATICAL BOLD SMALL FINAL SIGMA 03C2 # \x1D6D4 MATHEMATICAL BOLD SMALL SIGMA 03C3 # \x1D6D5 MATHEMATICAL BOLD SMALL TAU 03C4 # \x1D6D6 MATHEMATICAL BOLD SMALL UPSILON 03C5 # \x1D6D7 MATHEMATICAL BOLD SMALL PHI 03C6 # \x1D6D8 MATHEMATICAL BOLD SMALL CHI 03C7 # \x1D6D9 MATHEMATICAL BOLD SMALL PSI 03C8 # \x1D6DA MATHEMATICAL BOLD SMALL OMEGA 03C9 # \x1D6DB MATHEMATICAL BOLD PARTIAL DIFFERENTIAL 2202 # \x1D6DC MATHEMATICAL BOLD EPSILON SYMBOL 03F5 # \x1D6DD MATHEMATICAL BOLD THETA SYMBOL 03D1 # \x1D6DE MATHEMATICAL BOLD KAPPA SYMBOL 03F0 # \x1D6DF MATHEMATICAL BOLD PHI SYMBOL 03D5 # \x1D6E0 MATHEMATICAL BOLD RHO SYMBOL 03F1 # \x1D6E1 MATHEMATICAL BOLD PI SYMBOL 03D6 # \x1D6E2 MATHEMATICAL ITALIC CAPITAL ALPHA 0391 # \x1D6E3 MATHEMATICAL ITALIC CAPITAL BETA 0392 # \x1D6E4 MATHEMATICAL ITALIC CAPITAL GAMMA 0393 # \x1D6E5 MATHEMATICAL ITALIC CAPITAL DELTA 0394 # \x1D6E6 MATHEMATICAL ITALIC CAPITAL EPSILON 0395 # \x1D6E7 MATHEMATICAL ITALIC CAPITAL ZETA 0396 # \x1D6E8 MATHEMATICAL ITALIC CAPITAL ETA 0397 # \x1D6E9 MATHEMATICAL ITALIC CAPITAL THETA 0398 # \x1D6EA MATHEMATICAL ITALIC CAPITAL IOTA 0399 # \x1D6EB MATHEMATICAL ITALIC CAPITAL KAPPA 039A # \x1D6EC MATHEMATICAL ITALIC CAPITAL LAMDA 039B # \x1D6ED MATHEMATICAL ITALIC CAPITAL MU 039C # \x1D6EE MATHEMATICAL ITALIC CAPITAL NU 039D # \x1D6EF MATHEMATICAL ITALIC CAPITAL XI 039E # \x1D6F0 MATHEMATICAL ITALIC CAPITAL OMICRON 039F # \x1D6F1 MATHEMATICAL ITALIC CAPITAL PI 03A0 # \x1D6F2 MATHEMATICAL ITALIC CAPITAL RHO 03A1 # \x1D6F3 MATHEMATICAL ITALIC CAPITAL THETA SYMBOL 03F4 # \x1D6F4 MATHEMATICAL ITALIC CAPITAL SIGMA 03A3 # \x1D6F5 MATHEMATICAL ITALIC CAPITAL TAU 03A4 # \x1D6F6 MATHEMATICAL ITALIC CAPITAL UPSILON 03A5 # \x1D6F7 MATHEMATICAL ITALIC CAPITAL PHI 03A6 # \x1D6F8 MATHEMATICAL ITALIC CAPITAL CHI 03A7 # \x1D6F9 MATHEMATICAL ITALIC CAPITAL PSI 03A8 # \x1D6FA MATHEMATICAL ITALIC CAPITAL OMEGA 03A9 # \x1D6FB MATHEMATICAL ITALIC NABLA 2207 # \x1D6FC MATHEMATICAL ITALIC SMALL ALPHA 03B1 # \x1D6FD MATHEMATICAL ITALIC SMALL BETA 03B2 # \x1D6FE MATHEMATICAL ITALIC SMALL GAMMA 03B3 # \x1D6FF MATHEMATICAL ITALIC SMALL DELTA 03B4 # \x1D700 MATHEMATICAL ITALIC SMALL EPSILON 03B5 # \x1D701 MATHEMATICAL ITALIC SMALL ZETA 03B6 # \x1D702 MATHEMATICAL ITALIC SMALL ETA 03B7 # \x1D703 MATHEMATICAL ITALIC SMALL THETA 03B8 # \x1D704 MATHEMATICAL ITALIC SMALL IOTA 03B9 # \x1D705 MATHEMATICAL ITALIC SMALL KAPPA 03BA # \x1D706 MATHEMATICAL ITALIC SMALL LAMDA 03BB # \x1D707 MATHEMATICAL ITALIC SMALL MU 03BC # \x1D708 MATHEMATICAL ITALIC SMALL NU 03BD # \x1D709 MATHEMATICAL ITALIC SMALL XI 03BE # \x1D70A MATHEMATICAL ITALIC SMALL OMICRON 03BF # \x1D70B MATHEMATICAL ITALIC SMALL PI 03C0 # \x1D70C MATHEMATICAL ITALIC SMALL RHO 03C1 # \x1D70D MATHEMATICAL ITALIC SMALL FINAL SIGMA 03C2 # \x1D70E MATHEMATICAL ITALIC SMALL SIGMA 03C3 # \x1D70F MATHEMATICAL ITALIC SMALL TAU 03C4 # \x1D710 MATHEMATICAL ITALIC SMALL UPSILON 03C5 # \x1D711 MATHEMATICAL ITALIC SMALL PHI 03C6 # \x1D712 MATHEMATICAL ITALIC SMALL CHI 03C7 # \x1D713 MATHEMATICAL ITALIC SMALL PSI 03C8 # \x1D714 MATHEMATICAL ITALIC SMALL OMEGA 03C9 # \x1D715 MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL 2202 # \x1D716 MATHEMATICAL ITALIC EPSILON SYMBOL 03F5 # \x1D717 MATHEMATICAL ITALIC THETA SYMBOL 03D1 # \x1D718 MATHEMATICAL ITALIC KAPPA SYMBOL 03F0 # \x1D719 MATHEMATICAL ITALIC PHI SYMBOL 03D5 # \x1D71A MATHEMATICAL ITALIC RHO SYMBOL 03F1 # \x1D71B MATHEMATICAL ITALIC PI SYMBOL 03D6 # \x1D71C MATHEMATICAL BOLD ITALIC CAPITAL ALPHA 0391 # \x1D71D MATHEMATICAL BOLD ITALIC CAPITAL BETA 0392 # \x1D71E MATHEMATICAL BOLD ITALIC CAPITAL GAMMA 0393 # \x1D71F MATHEMATICAL BOLD ITALIC CAPITAL DELTA 0394 # \x1D720 MATHEMATICAL BOLD ITALIC CAPITAL EPSILON 0395 # \x1D721 MATHEMATICAL BOLD ITALIC CAPITAL ZETA 0396 # \x1D722 MATHEMATICAL BOLD ITALIC CAPITAL ETA 0397 # \x1D723 MATHEMATICAL BOLD ITALIC CAPITAL THETA 0398 # \x1D724 MATHEMATICAL BOLD ITALIC CAPITAL IOTA 0399 # \x1D725 MATHEMATICAL BOLD ITALIC CAPITAL KAPPA 039A # \x1D726 MATHEMATICAL BOLD ITALIC CAPITAL LAMDA 039B # \x1D727 MATHEMATICAL BOLD ITALIC CAPITAL MU 039C # \x1D728 MATHEMATICAL BOLD ITALIC CAPITAL NU 039D # \x1D729 MATHEMATICAL BOLD ITALIC CAPITAL XI 039E # \x1D72A MATHEMATICAL BOLD ITALIC CAPITAL OMICRON 039F # \x1D72B MATHEMATICAL BOLD ITALIC CAPITAL PI 03A0 # \x1D72C MATHEMATICAL BOLD ITALIC CAPITAL RHO 03A1 # \x1D72D MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL 03F4 # \x # \x1D72E MATHEMATICAL BOLD ITALIC CAPITAL SIGMA 03A3 # \x1D72F MATHEMATICAL BOLD ITALIC CAPITAL TAU 03A4 # \x1D730 MATHEMATICAL BOLD ITALIC CAPITAL UPSILON 03A5 # \x1D731 MATHEMATICAL BOLD ITALIC CAPITAL PHI 03A6 # \x1D732 MATHEMATICAL BOLD ITALIC CAPITAL CHI 03A7 # \x1D733 MATHEMATICAL BOLD ITALIC CAPITAL PSI 03A8 # \x1D734 MATHEMATICAL BOLD ITALIC CAPITAL OMEGA 03A9 # \x1D735 MATHEMATICAL BOLD ITALIC NABLA 2207 # \x1D736 MATHEMATICAL BOLD ITALIC SMALL ALPHA 03B1 # \x1D737 MATHEMATICAL BOLD ITALIC SMALL BETA 03B2 # \x1D738 MATHEMATICAL BOLD ITALIC SMALL GAMMA 03B3 # \x1D739 MATHEMATICAL BOLD ITALIC SMALL DELTA 03B4 # \x1D73A MATHEMATICAL BOLD ITALIC SMALL EPSILON 03B5 # \x1D73B MATHEMATICAL BOLD ITALIC SMALL ZETA 03B6 # \x1D73C MATHEMATICAL BOLD ITALIC SMALL ETA 03B7 # \x1D73D MATHEMATICAL BOLD ITALIC SMALL THETA 03B8 # \x1D73E MATHEMATICAL BOLD ITALIC SMALL IOTA 03B9 # \x1D73F MATHEMATICAL BOLD ITALIC SMALL KAPPA 03BA # \x1D740 MATHEMATICAL BOLD ITALIC SMALL LAMDA 03BB # \x1D741 MATHEMATICAL BOLD ITALIC SMALL MU 03BC # \x1D742 MATHEMATICAL BOLD ITALIC SMALL NU 03BD # \x1D743 MATHEMATICAL BOLD ITALIC SMALL XI 03BE # \x1D744 MATHEMATICAL BOLD ITALIC SMALL OMICRON 03BF # \x1D745 MATHEMATICAL BOLD ITALIC SMALL PI 03C0 # \x1D746 MATHEMATICAL BOLD ITALIC SMALL RHO 03C1 # \x1D747 MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA 03C2 # \x1D748 MATHEMATICAL BOLD ITALIC SMALL SIGMA 03C3 # \x1D749 MATHEMATICAL BOLD ITALIC SMALL TAU 03C4 # \x1D74A MATHEMATICAL BOLD ITALIC SMALL UPSILON 03C5 # \x1D74B MATHEMATICAL BOLD ITALIC SMALL PHI 03C6 # \x1D74C MATHEMATICAL BOLD ITALIC SMALL CHI 03C7 # \x1D74D MATHEMATICAL BOLD ITALIC SMALL PSI 03C8 # \x1D74E MATHEMATICAL BOLD ITALIC SMALL OMEGA 03C9 # \x1D74F MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL 2202 # \x # \x1D750 MATHEMATICAL BOLD ITALIC EPSILON SYMBOL 03F5 # \x1D751 MATHEMATICAL BOLD ITALIC THETA SYMBOL 03D1 # \x1D752 MATHEMATICAL BOLD ITALIC KAPPA SYMBOL 03F0 # \x1D753 MATHEMATICAL BOLD ITALIC PHI SYMBOL 03D5 # \x1D754 MATHEMATICAL BOLD ITALIC RHO SYMBOL 03F1 # \x1D755 MATHEMATICAL BOLD ITALIC PI SYMBOL 03D6 # \x1D756 MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA 0391 # \x1D757 MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA 0392 # \x1D758 MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA 0393 # \x1D759 MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA 0394 # \x1D75A MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON 0395 # \x1D75B MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA 0396 # \x1D75C MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA 0397 # \x1D75D MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA 0398 # \x1D75E MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA 0399 # \x1D75F MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA 039A # \x1D760 MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA 039B # \x1D761 MATHEMATICAL SANS-SERIF BOLD CAPITAL MU 039C # \x1D762 MATHEMATICAL SANS-SERIF BOLD CAPITAL NU 039D # \x1D763 MATHEMATICAL SANS-SERIF BOLD CAPITAL XI 039E # \x1D764 MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON 039F # \x1D765 MATHEMATICAL SANS-SERIF BOLD CAPITAL PI 03A0 # \x1D766 MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO 03A1 # \x1D767 MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL 03F4 N # \x # \x1D768 MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA 03A3 # \x1D769 MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU 03A4 # \x1D76A MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON 03A5 # \x1D76B MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI 03A6 # \x1D76C MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI 03A7 # \x1D76D MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI 03A8 # \x1D76E MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA 03A9 # \x1D76F MATHEMATICAL SANS-SERIF BOLD NABLA 2207 # \x1D770 MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA 03B1 # \x1D771 MATHEMATICAL SANS-SERIF BOLD SMALL BETA 03B2 # \x1D772 MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA 03B3 # \x1D773 MATHEMATICAL SANS-SERIF BOLD SMALL DELTA 03B4 # \x1D774 MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON 03B5 # \x1D775 MATHEMATICAL SANS-SERIF BOLD SMALL ZETA 03B6 # \x1D776 MATHEMATICAL SANS-SERIF BOLD SMALL ETA 03B7 # \x1D777 MATHEMATICAL SANS-SERIF BOLD SMALL THETA 03B8 # \x1D778 MATHEMATICAL SANS-SERIF BOLD SMALL IOTA 03B9 # \x1D779 MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA 03BA # \x1D77A MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA 03BB # \x1D77B MATHEMATICAL SANS-SERIF BOLD SMALL MU 03BC # \x1D77C MATHEMATICAL SANS-SERIF BOLD SMALL NU 03BD # \x1D77D MATHEMATICAL SANS-SERIF BOLD SMALL XI 03BE # \x1D77E MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON 03BF # \x1D77F MATHEMATICAL SANS-SERIF BOLD SMALL PI 03C0 # \x1D780 MATHEMATICAL SANS-SERIF BOLD SMALL RHO 03C1 # \x1D781 MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA 03C2 # \x # \x1D782 MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA 03C3 # \x1D783 MATHEMATICAL SANS-SERIF BOLD SMALL TAU 03C4 # \x1D784 MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON 03C5 # \x1D785 MATHEMATICAL SANS-SERIF BOLD SMALL PHI 03C6 # \x1D786 MATHEMATICAL SANS-SERIF BOLD SMALL CHI 03C7 # \x1D787 MATHEMATICAL SANS-SERIF BOLD SMALL PSI 03C8 # \x1D788 MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA 03C9 # \x1D789 MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL 2202 N # \x # \x1D78A MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL 03F5 # \x1D78B MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL 03D1 # \x1D78C MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL 03F0 # \x1D78D MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL 03D5 # \x1D78E MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL 03F1 # \x1D78F MATHEMATICAL SANS-SERIF BOLD PI SYMBOL 03D6 # \x1D790 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA 0391 N # \x # \x1D791 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA 0392 # \x # \x1D792 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA 0393 N # \x # \x1D793 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA 0394 N # \x # \x1D794 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON 0395 # \x # \x1D795 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA 0396 # \x # \x1D796 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA 0397 # \x # \x1D797 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA 0398 N # \x # \x1D798 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA 0399 # \x # \x1D799 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA 039A N # \x # \x1D79A MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA 039B N # \x # \x1D79B MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU 039C # \x # \x1D79C MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU 039D # \x # \x1D79D MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI 039E # \x # \x1D79E MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON 039F # \x # \x1D79F MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI 03A0 # \x # \x1D7A0 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO 03A1 # \x # \x1D7A1 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL 03 # \xF4 # \x1D7A2 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA 03A3 N # \x # \x1D7A3 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU 03A4 # \x # \x1D7A4 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON 03A5 # \x # \x1D7A5 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI 03A6 # \x # \x1D7A6 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI 03A7 # \x # \x1D7A7 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI 03A8 # \x # \x1D7A8 MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA 03A9 N # \x # \x1D7A9 MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA 2207 # \x1D7AA MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA 03B1 # \x # \x1D7AB MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA 03B2 # \x # \x1D7AC MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA 03B3 # \x # \x1D7AD MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA 03B4 # \x # \x1D7AE MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON 03B5 N # \x # \x1D7AF MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA 03B6 # \x # \x1D7B0 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA 03B7 # \x # \x1D7B1 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA 03B8 # \x # \x1D7B2 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA 03B9 # \x # \x1D7B3 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA 03BA # \x # \x1D7B4 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA 03BB # \x # \x1D7B5 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU 03BC # \x1D7B6 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU 03BD # \x1D7B7 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI 03BE # \x1D7B8 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON 03BF N # \x # \x1D7B9 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI 03C0 # \x1D7BA MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO 03C1 # \x # \x1D7BB MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA 03C2 # \x # \x1D7BC MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA 03C3 # \x # \x1D7BD MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU 03C4 # \x # \x1D7BE MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON 03C5 N # \x # \x1D7BF MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI 03C6 # \x # \x1D7C0 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI 03C7 # \x # \x1D7C1 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI 03C8 # \x # \x1D7C2 MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA 03C9 # \x # \x1D7C3 MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL 22 # \x02 # \x1D7C4 MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL 03F5 # \xN # \x1D7C5 MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL 03D1 # \x # \x1D7C6 MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL 03F0 # \x # \x1D7C7 MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL 03D5 # \x # \x1D7C8 MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL 03F1 # \x # \x1D7C9 MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL 03D6 # \x # \x1D7CE MATHEMATICAL BOLD DIGIT ZERO Nd EN 0030 0 # \x1D7CF MATHEMATICAL BOLD DIGIT ONE Nd EN 0031 1 1 1 # \x1D7D0 MATHEMATICAL BOLD DIGIT TWO Nd EN 0032 2 2 2 # \x1D7D1 MATHEMATICAL BOLD DIGIT THREE Nd EN 0033 3 3 3 # \x1D7D2 MATHEMATICAL BOLD DIGIT FOUR Nd EN 0034 4 4 4 # \x1D7D3 MATHEMATICAL BOLD DIGIT FIVE Nd EN 0035 5 5 5 # \x1D7D4 MATHEMATICAL BOLD DIGIT SIX Nd EN 0036 6 6 6 # \x1D7D5 MATHEMATICAL BOLD DIGIT SEVEN Nd EN 0037 7 7 7 # \x1D7D6 MATHEMATICAL BOLD DIGIT EIGHT Nd EN 0038 8 8 8 # \x1D7D7 MATHEMATICAL BOLD DIGIT NINE Nd EN 0039 9 9 9 # \x1D7D8 MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO Nd EN 0030 0 # \x1D7D9 MATHEMATICAL DOUBLE-STRUCK DIGIT ONE Nd EN 0031 1 1 1 # \x1D7DA MATHEMATICAL DOUBLE-STRUCK DIGIT TWO Nd EN 0032 2 2 2 # \x1D7DB MATHEMATICAL DOUBLE-STRUCK DIGIT THREE Nd EN 0033 3 3 3 # \x1D7DC MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR Nd EN 0034 4 4 4 # \x1D7DD MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE Nd EN 0035 5 5 5 # \x1D7DE MATHEMATICAL DOUBLE-STRUCK DIGIT SIX Nd EN 0036 6 6 6 # \x1D7DF MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN Nd EN 0037 7 7 7 # \x1D7E0 MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT Nd EN 0038 8 8 8 # \x1D7E1 MATHEMATICAL DOUBLE-STRUCK DIGIT NINE Nd EN 0039 9 9 9 # \x1D7E2 MATHEMATICAL SANS-SERIF DIGIT ZERO Nd EN 0030 0 # \x1D7E3 MATHEMATICAL SANS-SERIF DIGIT ONE Nd EN 0031 1 1 1 # \x1D7E4 MATHEMATICAL SANS-SERIF DIGIT TWO Nd EN 0032 2 2 2 # \x1D7E5 MATHEMATICAL SANS-SERIF DIGIT THREE Nd EN 0033 3 3 3 # \x1D7E6 MATHEMATICAL SANS-SERIF DIGIT FOUR Nd EN 0034 4 4 4 # \x1D7E7 MATHEMATICAL SANS-SERIF DIGIT FIVE Nd EN 0035 5 5 5 # \x1D7E8 MATHEMATICAL SANS-SERIF DIGIT SIX Nd EN 0036 6 6 6 # \x1D7E9 MATHEMATICAL SANS-SERIF DIGIT SEVEN Nd EN 0037 7 7 7 # \x1D7EA MATHEMATICAL SANS-SERIF DIGIT EIGHT Nd EN 0038 8 8 8 # \x1D7EB MATHEMATICAL SANS-SERIF DIGIT NINE Nd EN 0039 9 9 9 # \x1D7EC MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO Nd EN 0030 0 # \x1D7ED MATHEMATICAL SANS-SERIF BOLD DIGIT ONE Nd EN 0031 1 1 1 # \x1D7EE MATHEMATICAL SANS-SERIF BOLD DIGIT TWO Nd EN 0032 2 2 2 # \x1D7EF MATHEMATICAL SANS-SERIF BOLD DIGIT THREE Nd EN 0033 3 3 3 # \x1D7F0 MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR Nd EN 0034 4 4 4 # \x1D7F1 MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE Nd EN 0035 5 5 5 # \x1D7F2 MATHEMATICAL SANS-SERIF BOLD DIGIT SIX Nd EN 0036 6 6 6 # \x1D7F3 MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN Nd EN 0037 7 7 7 # \x1D7F4 MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT Nd EN 0038 8 8 8 # \x1D7F5 MATHEMATICAL SANS-SERIF BOLD DIGIT NINE Nd EN 0039 9 9 9 # \x1D7F6 MATHEMATICAL MONOSPACE DIGIT ZERO Nd EN 0030 0 # \x1D7F7 MATHEMATICAL MONOSPACE DIGIT ONE Nd EN 0031 1 1 1 # \x1D7F8 MATHEMATICAL MONOSPACE DIGIT TWO Nd EN 0032 2 2 2 # \x1D7F9 MATHEMATICAL MONOSPACE DIGIT THREE Nd EN 0033 3 3 3 # \x1D7FA MATHEMATICAL MONOSPACE DIGIT FOUR Nd EN 0034 4 4 4 # \x1D7FB MATHEMATICAL MONOSPACE DIGIT FIVE Nd EN 0035 5 5 5 # \x1D7FC MATHEMATICAL MONOSPACE DIGIT SIX Nd EN 0036 6 6 6 # \x1D7FD MATHEMATICAL MONOSPACE DIGIT SEVEN Nd EN 0037 7 7 7 # \x1D7FE MATHEMATICAL MONOSPACE DIGIT EIGHT Nd EN 0038 8 8 8 # \x1D7FF MATHEMATICAL MONOSPACE DIGIT NINE Nd EN 0039 9 9 9 # \x20000 # \x2A6D6 # \x2F800 CJK COMPATIBILITY IDEOGRAPH-2F800 4E3D # \x2F801 CJK COMPATIBILITY IDEOGRAPH-2F801 4E38 # \x2F802 CJK COMPATIBILITY IDEOGRAPH-2F802 4E41 # \x2F803 CJK COMPATIBILITY IDEOGRAPH-2F803 20122 # \x2F804 CJK COMPATIBILITY IDEOGRAPH-2F804 4F60 # \x2F805 CJK COMPATIBILITY IDEOGRAPH-2F805 4FAE # \x2F806 CJK COMPATIBILITY IDEOGRAPH-2F806 4FBB # \x2F807 CJK COMPATIBILITY IDEOGRAPH-2F807 5002 # \x2F808 CJK COMPATIBILITY IDEOGRAPH-2F808 507A # \x2F809 CJK COMPATIBILITY IDEOGRAPH-2F809 5099 # \x2F80A CJK COMPATIBILITY IDEOGRAPH-2F80A 50E7 # \x2F80B CJK COMPATIBILITY IDEOGRAPH-2F80B 50CF # \x2F80C CJK COMPATIBILITY IDEOGRAPH-2F80C 349E # \x2F80D CJK COMPATIBILITY IDEOGRAPH-2F80D 2063A # \x2F80E CJK COMPATIBILITY IDEOGRAPH-2F80E 514D # \x2F80F CJK COMPATIBILITY IDEOGRAPH-2F80F 5154 # \x2F810 CJK COMPATIBILITY IDEOGRAPH-2F810 5164 # \x2F811 CJK COMPATIBILITY IDEOGRAPH-2F811 5177 # \x2F812 CJK COMPATIBILITY IDEOGRAPH-2F812 2051C # \x2F813 CJK COMPATIBILITY IDEOGRAPH-2F813 34B9 # \x2F814 CJK COMPATIBILITY IDEOGRAPH-2F814 5167 # \x2F815 CJK COMPATIBILITY IDEOGRAPH-2F815 518D # \x2F816 CJK COMPATIBILITY IDEOGRAPH-2F816 2054B # \x2F817 CJK COMPATIBILITY IDEOGRAPH-2F817 5197 # \x2F818 CJK COMPATIBILITY IDEOGRAPH-2F818 51A4 # \x2F819 CJK COMPATIBILITY IDEOGRAPH-2F819 4ECC # \x2F81A CJK COMPATIBILITY IDEOGRAPH-2F81A 51AC # \x2F81B CJK COMPATIBILITY IDEOGRAPH-2F81B 51B5 # \x2F81C CJK COMPATIBILITY IDEOGRAPH-2F81C 291DF # \x2F81D CJK COMPATIBILITY IDEOGRAPH-2F81D 51F5 # \x2F81E CJK COMPATIBILITY IDEOGRAPH-2F81E 5203 # \x2F81F CJK COMPATIBILITY IDEOGRAPH-2F81F 34DF # \x2F820 CJK COMPATIBILITY IDEOGRAPH-2F820 523B # \x2F821 CJK COMPATIBILITY IDEOGRAPH-2F821 5246 # \x2F822 CJK COMPATIBILITY IDEOGRAPH-2F822 5272 # \x2F823 CJK COMPATIBILITY IDEOGRAPH-2F823 5277 # \x2F824 CJK COMPATIBILITY IDEOGRAPH-2F824 3515 # \x2F825 CJK COMPATIBILITY IDEOGRAPH-2F825 52C7 # \x2F826 CJK COMPATIBILITY IDEOGRAPH-2F826 52C9 # \x2F827 CJK COMPATIBILITY IDEOGRAPH-2F827 52E4 # \x2F828 CJK COMPATIBILITY IDEOGRAPH-2F828 52FA # \x2F829 CJK COMPATIBILITY IDEOGRAPH-2F829 5305 # \x2F82A CJK COMPATIBILITY IDEOGRAPH-2F82A 5306 # \x2F82B CJK COMPATIBILITY IDEOGRAPH-2F82B 5317 # \x2F82C CJK COMPATIBILITY IDEOGRAPH-2F82C 5349 # \x2F82D CJK COMPATIBILITY IDEOGRAPH-2F82D 5351 # \x2F82E CJK COMPATIBILITY IDEOGRAPH-2F82E 535A # \x2F82F CJK COMPATIBILITY IDEOGRAPH-2F82F 5373 # \x2F830 CJK COMPATIBILITY IDEOGRAPH-2F830 537D # \x2F831 CJK COMPATIBILITY IDEOGRAPH-2F831 537F # \x2F832 CJK COMPATIBILITY IDEOGRAPH-2F832 537F # \x2F833 CJK COMPATIBILITY IDEOGRAPH-2F833 537F # \x2F834 CJK COMPATIBILITY IDEOGRAPH-2F834 20A2C # \x2F835 CJK COMPATIBILITY IDEOGRAPH-2F835 7070 # \x2F836 CJK COMPATIBILITY IDEOGRAPH-2F836 53CA # \x2F837 CJK COMPATIBILITY IDEOGRAPH-2F837 53DF # \x2F838 CJK COMPATIBILITY IDEOGRAPH-2F838 20B63 # \x2F839 CJK COMPATIBILITY IDEOGRAPH-2F839 53EB # \x2F83A CJK COMPATIBILITY IDEOGRAPH-2F83A 53F1 # \x2F83B CJK COMPATIBILITY IDEOGRAPH-2F83B 5406 # \x2F83C CJK COMPATIBILITY IDEOGRAPH-2F83C 549E # \x2F83D CJK COMPATIBILITY IDEOGRAPH-2F83D 5438 # \x2F83E CJK COMPATIBILITY IDEOGRAPH-2F83E 5448 # \x2F83F CJK COMPATIBILITY IDEOGRAPH-2F83F 5468 # \x2F840 CJK COMPATIBILITY IDEOGRAPH-2F840 54A2 # \x2F841 CJK COMPATIBILITY IDEOGRAPH-2F841 54F6 # \x2F842 CJK COMPATIBILITY IDEOGRAPH-2F842 5510 # \x2F843 CJK COMPATIBILITY IDEOGRAPH-2F843 5553 # \x2F844 CJK COMPATIBILITY IDEOGRAPH-2F844 5563 # \x2F845 CJK COMPATIBILITY IDEOGRAPH-2F845 5584 # \x2F846 CJK COMPATIBILITY IDEOGRAPH-2F846 5584 # \x2F847 CJK COMPATIBILITY IDEOGRAPH-2F847 5599 # \x2F848 CJK COMPATIBILITY IDEOGRAPH-2F848 55AB # \x2F849 CJK COMPATIBILITY IDEOGRAPH-2F849 55B3 # \x2F84A CJK COMPATIBILITY IDEOGRAPH-2F84A 55C2 # \x2F84B CJK COMPATIBILITY IDEOGRAPH-2F84B 5716 # \x2F84C CJK COMPATIBILITY IDEOGRAPH-2F84C 5606 # \x2F84D CJK COMPATIBILITY IDEOGRAPH-2F84D 5717 # \x2F84E CJK COMPATIBILITY IDEOGRAPH-2F84E 5651 # \x2F84F CJK COMPATIBILITY IDEOGRAPH-2F84F 5674 # \x2F850 CJK COMPATIBILITY IDEOGRAPH-2F850 5207 # \x2F851 CJK COMPATIBILITY IDEOGRAPH-2F851 58EE # \x2F852 CJK COMPATIBILITY IDEOGRAPH-2F852 57CE # \x2F853 CJK COMPATIBILITY IDEOGRAPH-2F853 57F4 # \x2F854 CJK COMPATIBILITY IDEOGRAPH-2F854 580D # \x2F855 CJK COMPATIBILITY IDEOGRAPH-2F855 578B # \x2F856 CJK COMPATIBILITY IDEOGRAPH-2F856 5832 # \x2F857 CJK COMPATIBILITY IDEOGRAPH-2F857 5831 # \x2F858 CJK COMPATIBILITY IDEOGRAPH-2F858 58AC # \x2F859 CJK COMPATIBILITY IDEOGRAPH-2F859 214E4 # \x2F85A CJK COMPATIBILITY IDEOGRAPH-2F85A 58F2 # \x2F85B CJK COMPATIBILITY IDEOGRAPH-2F85B 58F7 # \x2F85C CJK COMPATIBILITY IDEOGRAPH-2F85C 5906 # \x2F85D CJK COMPATIBILITY IDEOGRAPH-2F85D 591A # \x2F85E CJK COMPATIBILITY IDEOGRAPH-2F85E 5922 # \x2F85F CJK COMPATIBILITY IDEOGRAPH-2F85F 5962 # \x2F860 CJK COMPATIBILITY IDEOGRAPH-2F860 216A8 # \x2F861 CJK COMPATIBILITY IDEOGRAPH-2F861 216EA # \x2F862 CJK COMPATIBILITY IDEOGRAPH-2F862 59EC # \x2F863 CJK COMPATIBILITY IDEOGRAPH-2F863 5A1B # \x2F864 CJK COMPATIBILITY IDEOGRAPH-2F864 5A27 # \x2F865 CJK COMPATIBILITY IDEOGRAPH-2F865 59D8 # \x2F866 CJK COMPATIBILITY IDEOGRAPH-2F866 5A66 # \x2F867 CJK COMPATIBILITY IDEOGRAPH-2F867 36EE # \x2F868 CJK COMPATIBILITY IDEOGRAPH-2F868 36FC # \x2F869 CJK COMPATIBILITY IDEOGRAPH-2F869 5B08 # \x2F86A CJK COMPATIBILITY IDEOGRAPH-2F86A 5B3E # \x2F86B CJK COMPATIBILITY IDEOGRAPH-2F86B 5B3E # \x2F86C CJK COMPATIBILITY IDEOGRAPH-2F86C 219C8 # \x2F86D CJK COMPATIBILITY IDEOGRAPH-2F86D 5BC3 # \x2F86E CJK COMPATIBILITY IDEOGRAPH-2F86E 5BD8 # \x2F86F CJK COMPATIBILITY IDEOGRAPH-2F86F 5BE7 # \x2F870 CJK COMPATIBILITY IDEOGRAPH-2F870 5BF3 # \x2F871 CJK COMPATIBILITY IDEOGRAPH-2F871 21B18 # \x2F872 CJK COMPATIBILITY IDEOGRAPH-2F872 5BFF # \x2F873 CJK COMPATIBILITY IDEOGRAPH-2F873 5C06 # \x2F874 CJK COMPATIBILITY IDEOGRAPH-2F874 5F53 # \x2F875 CJK COMPATIBILITY IDEOGRAPH-2F875 5C22 # \x2F876 CJK COMPATIBILITY IDEOGRAPH-2F876 3781 # \x2F877 CJK COMPATIBILITY IDEOGRAPH-2F877 5C60 # \x2F878 CJK COMPATIBILITY IDEOGRAPH-2F878 5C6E # \x2F879 CJK COMPATIBILITY IDEOGRAPH-2F879 5CC0 # \x2F87A CJK COMPATIBILITY IDEOGRAPH-2F87A 5C8D # \x2F87B CJK COMPATIBILITY IDEOGRAPH-2F87B 21DE4 # \x2F87C CJK COMPATIBILITY IDEOGRAPH-2F87C 5D43 # \x2F87D CJK COMPATIBILITY IDEOGRAPH-2F87D 21DE6 # \x2F87E CJK COMPATIBILITY IDEOGRAPH-2F87E 5D6E # \x2F87F CJK COMPATIBILITY IDEOGRAPH-2F87F 5D6B # \x2F880 CJK COMPATIBILITY IDEOGRAPH-2F880 5D7C # \x2F881 CJK COMPATIBILITY IDEOGRAPH-2F881 5DE1 # \x2F882 CJK COMPATIBILITY IDEOGRAPH-2F882 5DE2 # \x2F883 CJK COMPATIBILITY IDEOGRAPH-2F883 382F # \x2F884 CJK COMPATIBILITY IDEOGRAPH-2F884 5DFD # \x2F885 CJK COMPATIBILITY IDEOGRAPH-2F885 5E28 # \x2F886 CJK COMPATIBILITY IDEOGRAPH-2F886 5E3D # \x2F887 CJK COMPATIBILITY IDEOGRAPH-2F887 5E69 # \x2F888 CJK COMPATIBILITY IDEOGRAPH-2F888 3862 # \x2F889 CJK COMPATIBILITY IDEOGRAPH-2F889 22183 # \x2F88A CJK COMPATIBILITY IDEOGRAPH-2F88A 387C # \x2F88B CJK COMPATIBILITY IDEOGRAPH-2F88B 5EB0 # \x2F88C CJK COMPATIBILITY IDEOGRAPH-2F88C 5EB3 # \x2F88D CJK COMPATIBILITY IDEOGRAPH-2F88D 5EB6 # \x2F88E CJK COMPATIBILITY IDEOGRAPH-2F88E 5ECA # \x2F88F CJK COMPATIBILITY IDEOGRAPH-2F88F 2A392 # \x2F890 CJK COMPATIBILITY IDEOGRAPH-2F890 5EFE # \x2F891 CJK COMPATIBILITY IDEOGRAPH-2F891 22331 # \x2F892 CJK COMPATIBILITY IDEOGRAPH-2F892 22331 # \x2F893 CJK COMPATIBILITY IDEOGRAPH-2F893 8201 # \x2F894 CJK COMPATIBILITY IDEOGRAPH-2F894 5F22 # \x2F895 CJK COMPATIBILITY IDEOGRAPH-2F895 5F22 # \x2F896 CJK COMPATIBILITY IDEOGRAPH-2F896 38C7 # \x2F897 CJK COMPATIBILITY IDEOGRAPH-2F897 232B8 # \x2F898 CJK COMPATIBILITY IDEOGRAPH-2F898 261DA # \x2F899 CJK COMPATIBILITY IDEOGRAPH-2F899 5F62 # \x2F89A CJK COMPATIBILITY IDEOGRAPH-2F89A 5F6B # \x2F89B CJK COMPATIBILITY IDEOGRAPH-2F89B 38E3 # \x2F89C CJK COMPATIBILITY IDEOGRAPH-2F89C 5F9A # \x2F89D CJK COMPATIBILITY IDEOGRAPH-2F89D 5FCD # \x2F89E CJK COMPATIBILITY IDEOGRAPH-2F89E 5FD7 # \x2F89F CJK COMPATIBILITY IDEOGRAPH-2F89F 5FF9 # \x2F8A0 CJK COMPATIBILITY IDEOGRAPH-2F8A0 6081 # \x2F8A1 CJK COMPATIBILITY IDEOGRAPH-2F8A1 393A # \x2F8A2 CJK COMPATIBILITY IDEOGRAPH-2F8A2 391C # \x2F8A3 CJK COMPATIBILITY IDEOGRAPH-2F8A3 6094 # \x2F8A4 CJK COMPATIBILITY IDEOGRAPH-2F8A4 226D4 # \x2F8A5 CJK COMPATIBILITY IDEOGRAPH-2F8A5 60C7 # \x2F8A6 CJK COMPATIBILITY IDEOGRAPH-2F8A6 6148 # \x2F8A7 CJK COMPATIBILITY IDEOGRAPH-2F8A7 614C # \x2F8A8 CJK COMPATIBILITY IDEOGRAPH-2F8A8 614E # \x2F8A9 CJK COMPATIBILITY IDEOGRAPH-2F8A9 614C # \x2F8AA CJK COMPATIBILITY IDEOGRAPH-2F8AA 617A # \x2F8AB CJK COMPATIBILITY IDEOGRAPH-2F8AB 618E # \x2F8AC CJK COMPATIBILITY IDEOGRAPH-2F8AC 61B2 # \x2F8AD CJK COMPATIBILITY IDEOGRAPH-2F8AD 61A4 # \x2F8AE CJK COMPATIBILITY IDEOGRAPH-2F8AE 61AF # \x2F8AF CJK COMPATIBILITY IDEOGRAPH-2F8AF 61DE # \x2F8B0 CJK COMPATIBILITY IDEOGRAPH-2F8B0 61F2 # \x2F8B1 CJK COMPATIBILITY IDEOGRAPH-2F8B1 61F6 # \x2F8B2 CJK COMPATIBILITY IDEOGRAPH-2F8B2 6210 # \x2F8B3 CJK COMPATIBILITY IDEOGRAPH-2F8B3 621B # \x2F8B4 CJK COMPATIBILITY IDEOGRAPH-2F8B4 625D # \x2F8B5 CJK COMPATIBILITY IDEOGRAPH-2F8B5 62B1 # \x2F8B6 CJK COMPATIBILITY IDEOGRAPH-2F8B6 62D4 # \x2F8B7 CJK COMPATIBILITY IDEOGRAPH-2F8B7 6350 # \x2F8B8 CJK COMPATIBILITY IDEOGRAPH-2F8B8 22B0C # \x2F8B9 CJK COMPATIBILITY IDEOGRAPH-2F8B9 633D # \x2F8BA CJK COMPATIBILITY IDEOGRAPH-2F8BA 62FC # \x2F8BB CJK COMPATIBILITY IDEOGRAPH-2F8BB 6368 # \x2F8BC CJK COMPATIBILITY IDEOGRAPH-2F8BC 6383 # \x2F8BD CJK COMPATIBILITY IDEOGRAPH-2F8BD 63E4 # \x2F8BE CJK COMPATIBILITY IDEOGRAPH-2F8BE 22BF1 # \x2F8BF CJK COMPATIBILITY IDEOGRAPH-2F8BF 6422 # \x2F8C0 CJK COMPATIBILITY IDEOGRAPH-2F8C0 63C5 # \x2F8C1 CJK COMPATIBILITY IDEOGRAPH-2F8C1 63A9 # \x2F8C2 CJK COMPATIBILITY IDEOGRAPH-2F8C2 3A2E # \x2F8C3 CJK COMPATIBILITY IDEOGRAPH-2F8C3 6469 # \x2F8C4 CJK COMPATIBILITY IDEOGRAPH-2F8C4 647E # \x2F8C5 CJK COMPATIBILITY IDEOGRAPH-2F8C5 649D # \x2F8C6 CJK COMPATIBILITY IDEOGRAPH-2F8C6 6477 # \x2F8C7 CJK COMPATIBILITY IDEOGRAPH-2F8C7 3A6C # \x2F8C8 CJK COMPATIBILITY IDEOGRAPH-2F8C8 654F # \x2F8C9 CJK COMPATIBILITY IDEOGRAPH-2F8C9 656C # \x2F8CA CJK COMPATIBILITY IDEOGRAPH-2F8CA 2300A # \x2F8CB CJK COMPATIBILITY IDEOGRAPH-2F8CB 65E3 # \x2F8CC CJK COMPATIBILITY IDEOGRAPH-2F8CC 66F8 # \x2F8CD CJK COMPATIBILITY IDEOGRAPH-2F8CD 6649 # \x2F8CE CJK COMPATIBILITY IDEOGRAPH-2F8CE 3B19 # \x2F8CF CJK COMPATIBILITY IDEOGRAPH-2F8CF 6691 # \x2F8D0 CJK COMPATIBILITY IDEOGRAPH-2F8D0 3B08 # \x2F8D1 CJK COMPATIBILITY IDEOGRAPH-2F8D1 3AE4 # \x2F8D2 CJK COMPATIBILITY IDEOGRAPH-2F8D2 5192 # \x2F8D3 CJK COMPATIBILITY IDEOGRAPH-2F8D3 5195 # \x2F8D4 CJK COMPATIBILITY IDEOGRAPH-2F8D4 6700 # \x2F8D5 CJK COMPATIBILITY IDEOGRAPH-2F8D5 669C # \x2F8D6 CJK COMPATIBILITY IDEOGRAPH-2F8D6 80AD # \x2F8D7 CJK COMPATIBILITY IDEOGRAPH-2F8D7 43D9 # \x2F8D8 CJK COMPATIBILITY IDEOGRAPH-2F8D8 6717 # \x2F8D9 CJK COMPATIBILITY IDEOGRAPH-2F8D9 671B # \x2F8DA CJK COMPATIBILITY IDEOGRAPH-2F8DA 6721 # \x2F8DB CJK COMPATIBILITY IDEOGRAPH-2F8DB 675E # \x2F8DC CJK COMPATIBILITY IDEOGRAPH-2F8DC 6753 # \x2F8DD CJK COMPATIBILITY IDEOGRAPH-2F8DD 233C3 # \x2F8DE CJK COMPATIBILITY IDEOGRAPH-2F8DE 3B49 # \x2F8DF CJK COMPATIBILITY IDEOGRAPH-2F8DF 67FA # \x2F8E0 CJK COMPATIBILITY IDEOGRAPH-2F8E0 6785 # \x2F8E1 CJK COMPATIBILITY IDEOGRAPH-2F8E1 6852 # \x2F8E2 CJK COMPATIBILITY IDEOGRAPH-2F8E2 6885 # \x2F8E3 CJK COMPATIBILITY IDEOGRAPH-2F8E3 2346D # \x2F8E4 CJK COMPATIBILITY IDEOGRAPH-2F8E4 688E # \x2F8E5 CJK COMPATIBILITY IDEOGRAPH-2F8E5 681F # \x2F8E6 CJK COMPATIBILITY IDEOGRAPH-2F8E6 6914 # \x2F8E7 CJK COMPATIBILITY IDEOGRAPH-2F8E7 3B9D # \x2F8E8 CJK COMPATIBILITY IDEOGRAPH-2F8E8 6942 # \x2F8E9 CJK COMPATIBILITY IDEOGRAPH-2F8E9 69A3 # \x2F8EA CJK COMPATIBILITY IDEOGRAPH-2F8EA 69EA # \x2F8EB CJK COMPATIBILITY IDEOGRAPH-2F8EB 6AA8 # \x2F8EC CJK COMPATIBILITY IDEOGRAPH-2F8EC 236A3 # \x2F8ED CJK COMPATIBILITY IDEOGRAPH-2F8ED 6ADB # \x2F8EE CJK COMPATIBILITY IDEOGRAPH-2F8EE 3C18 # \x2F8EF CJK COMPATIBILITY IDEOGRAPH-2F8EF 6B21 # \x2F8F0 CJK COMPATIBILITY IDEOGRAPH-2F8F0 238A7 # \x2F8F1 CJK COMPATIBILITY IDEOGRAPH-2F8F1 6B54 # \x2F8F2 CJK COMPATIBILITY IDEOGRAPH-2F8F2 3C4E # \x2F8F3 CJK COMPATIBILITY IDEOGRAPH-2F8F3 6B72 # \x2F8F4 CJK COMPATIBILITY IDEOGRAPH-2F8F4 6B9F # \x2F8F5 CJK COMPATIBILITY IDEOGRAPH-2F8F5 6BBA # \x2F8F6 CJK COMPATIBILITY IDEOGRAPH-2F8F6 6BBB # \x2F8F7 CJK COMPATIBILITY IDEOGRAPH-2F8F7 23A8D # \x2F8F8 CJK COMPATIBILITY IDEOGRAPH-2F8F8 21D0B # \x2F8F9 CJK COMPATIBILITY IDEOGRAPH-2F8F9 23AFA # \x2F8FA CJK COMPATIBILITY IDEOGRAPH-2F8FA 6C4E # \x2F8FB CJK COMPATIBILITY IDEOGRAPH-2F8FB 23CBC # \x2F8FC CJK COMPATIBILITY IDEOGRAPH-2F8FC 6CBF # \x2F8FD CJK COMPATIBILITY IDEOGRAPH-2F8FD 6CCD # \x2F8FE CJK COMPATIBILITY IDEOGRAPH-2F8FE 6C67 # \x2F8FF CJK COMPATIBILITY IDEOGRAPH-2F8FF 6D16 # \x2F900 CJK COMPATIBILITY IDEOGRAPH-2F900 6D3E # \x2F901 CJK COMPATIBILITY IDEOGRAPH-2F901 6D77 # \x2F902 CJK COMPATIBILITY IDEOGRAPH-2F902 6D41 # \x2F903 CJK COMPATIBILITY IDEOGRAPH-2F903 6D69 # \x2F904 CJK COMPATIBILITY IDEOGRAPH-2F904 6D78 # \x2F905 CJK COMPATIBILITY IDEOGRAPH-2F905 6D85 # \x2F906 CJK COMPATIBILITY IDEOGRAPH-2F906 23D1E # \x2F907 CJK COMPATIBILITY IDEOGRAPH-2F907 6D34 # \x2F908 CJK COMPATIBILITY IDEOGRAPH-2F908 6E2F # \x2F909 CJK COMPATIBILITY IDEOGRAPH-2F909 6E6E # \x2F90A CJK COMPATIBILITY IDEOGRAPH-2F90A 3D33 # \x2F90B CJK COMPATIBILITY IDEOGRAPH-2F90B 6ECB # \x2F90C CJK COMPATIBILITY IDEOGRAPH-2F90C 6EC7 # \x2F90D CJK COMPATIBILITY IDEOGRAPH-2F90D 23ED1 # \x2F90E CJK COMPATIBILITY IDEOGRAPH-2F90E 6DF9 # \x2F90F CJK COMPATIBILITY IDEOGRAPH-2F90F 6F6E # \x2F910 CJK COMPATIBILITY IDEOGRAPH-2F910 23F5E # \x2F911 CJK COMPATIBILITY IDEOGRAPH-2F911 23F8E # \x2F912 CJK COMPATIBILITY IDEOGRAPH-2F912 6FC6 # \x2F913 CJK COMPATIBILITY IDEOGRAPH-2F913 7039 # \x2F914 CJK COMPATIBILITY IDEOGRAPH-2F914 701E # \x2F915 CJK COMPATIBILITY IDEOGRAPH-2F915 701B # \x2F916 CJK COMPATIBILITY IDEOGRAPH-2F916 3D96 # \x2F917 CJK COMPATIBILITY IDEOGRAPH-2F917 704A # \x2F918 CJK COMPATIBILITY IDEOGRAPH-2F918 707D # \x2F919 CJK COMPATIBILITY IDEOGRAPH-2F919 7077 # \x2F91A CJK COMPATIBILITY IDEOGRAPH-2F91A 70AD # \x2F91B CJK COMPATIBILITY IDEOGRAPH-2F91B 20525 # \x2F91C CJK COMPATIBILITY IDEOGRAPH-2F91C 7145 # \x2F91D CJK COMPATIBILITY IDEOGRAPH-2F91D 24263 # \x2F91E CJK COMPATIBILITY IDEOGRAPH-2F91E 719C # \x2F91F CJK COMPATIBILITY IDEOGRAPH-2F91F 243AB # \x2F920 CJK COMPATIBILITY IDEOGRAPH-2F920 7228 # \x2F921 CJK COMPATIBILITY IDEOGRAPH-2F921 7235 # \x2F922 CJK COMPATIBILITY IDEOGRAPH-2F922 7250 # \x2F923 CJK COMPATIBILITY IDEOGRAPH-2F923 24608 # \x2F924 CJK COMPATIBILITY IDEOGRAPH-2F924 7280 # \x2F925 CJK COMPATIBILITY IDEOGRAPH-2F925 7295 # \x2F926 CJK COMPATIBILITY IDEOGRAPH-2F926 24735 # \x2F927 CJK COMPATIBILITY IDEOGRAPH-2F927 24814 # \x2F928 CJK COMPATIBILITY IDEOGRAPH-2F928 737A # \x2F929 CJK COMPATIBILITY IDEOGRAPH-2F929 738B # \x2F92A CJK COMPATIBILITY IDEOGRAPH-2F92A 3EAC # \x2F92B CJK COMPATIBILITY IDEOGRAPH-2F92B 73A5 # \x2F92C CJK COMPATIBILITY IDEOGRAPH-2F92C 3EB8 # \x2F92D CJK COMPATIBILITY IDEOGRAPH-2F92D 3EB8 # \x2F92E CJK COMPATIBILITY IDEOGRAPH-2F92E 7447 # \x2F92F CJK COMPATIBILITY IDEOGRAPH-2F92F 745C # \x2F930 CJK COMPATIBILITY IDEOGRAPH-2F930 7471 # \x2F931 CJK COMPATIBILITY IDEOGRAPH-2F931 7485 # \x2F932 CJK COMPATIBILITY IDEOGRAPH-2F932 74CA # \x2F933 CJK COMPATIBILITY IDEOGRAPH-2F933 3F1B # \x2F934 CJK COMPATIBILITY IDEOGRAPH-2F934 7524 # \x2F935 CJK COMPATIBILITY IDEOGRAPH-2F935 24C36 # \x2F936 CJK COMPATIBILITY IDEOGRAPH-2F936 753E # \x2F937 CJK COMPATIBILITY IDEOGRAPH-2F937 24C92 # \x2F938 CJK COMPATIBILITY IDEOGRAPH-2F938 7570 # \x2F939 CJK COMPATIBILITY IDEOGRAPH-2F939 2219F # \x2F93A CJK COMPATIBILITY IDEOGRAPH-2F93A 7610 # \x2F93B CJK COMPATIBILITY IDEOGRAPH-2F93B 24FA1 # \x2F93C CJK COMPATIBILITY IDEOGRAPH-2F93C 24FB8 # \x2F93D CJK COMPATIBILITY IDEOGRAPH-2F93D 25044 # \x2F93E CJK COMPATIBILITY IDEOGRAPH-2F93E 3FFC # \x2F93F CJK COMPATIBILITY IDEOGRAPH-2F93F 4008 # \x2F940 CJK COMPATIBILITY IDEOGRAPH-2F940 76F4 # \x2F941 CJK COMPATIBILITY IDEOGRAPH-2F941 250F3 # \x2F942 CJK COMPATIBILITY IDEOGRAPH-2F942 250F2 # \x2F943 CJK COMPATIBILITY IDEOGRAPH-2F943 25119 # \x2F944 CJK COMPATIBILITY IDEOGRAPH-2F944 25133 # \x2F945 CJK COMPATIBILITY IDEOGRAPH-2F945 771E # \x2F946 CJK COMPATIBILITY IDEOGRAPH-2F946 771F # \x2F947 CJK COMPATIBILITY IDEOGRAPH-2F947 771F # \x2F948 CJK COMPATIBILITY IDEOGRAPH-2F948 774A # \x2F949 CJK COMPATIBILITY IDEOGRAPH-2F949 4039 # \x2F94A CJK COMPATIBILITY IDEOGRAPH-2F94A 778B # \x2F94B CJK COMPATIBILITY IDEOGRAPH-2F94B 4046 # \x2F94C CJK COMPATIBILITY IDEOGRAPH-2F94C 4096 # \x2F94D CJK COMPATIBILITY IDEOGRAPH-2F94D 2541D # \x2F94E CJK COMPATIBILITY IDEOGRAPH-2F94E 784E # \x2F94F CJK COMPATIBILITY IDEOGRAPH-2F94F 788C # \x2F950 CJK COMPATIBILITY IDEOGRAPH-2F950 78CC # \x2F951 CJK COMPATIBILITY IDEOGRAPH-2F951 40E3 # \x2F952 CJK COMPATIBILITY IDEOGRAPH-2F952 25626 # \x2F953 CJK COMPATIBILITY IDEOGRAPH-2F953 7956 # \x2F954 CJK COMPATIBILITY IDEOGRAPH-2F954 2569A # \x2F955 CJK COMPATIBILITY IDEOGRAPH-2F955 256C5 # \x2F956 CJK COMPATIBILITY IDEOGRAPH-2F956 798F # \x2F957 CJK COMPATIBILITY IDEOGRAPH-2F957 79EB # \x2F958 CJK COMPATIBILITY IDEOGRAPH-2F958 412F # \x2F959 CJK COMPATIBILITY IDEOGRAPH-2F959 7A40 # \x2F95A CJK COMPATIBILITY IDEOGRAPH-2F95A 7A4A # \x2F95B CJK COMPATIBILITY IDEOGRAPH-2F95B 7A4F # \x2F95C CJK COMPATIBILITY IDEOGRAPH-2F95C 2597C # \x2F95D CJK COMPATIBILITY IDEOGRAPH-2F95D 25AA7 # \x2F95E CJK COMPATIBILITY IDEOGRAPH-2F95E 25AA7 # \x2F95F CJK COMPATIBILITY IDEOGRAPH-2F95F 7AEE # \x2F960 CJK COMPATIBILITY IDEOGRAPH-2F960 4202 # \x2F961 CJK COMPATIBILITY IDEOGRAPH-2F961 25BAB # \x2F962 CJK COMPATIBILITY IDEOGRAPH-2F962 7BC6 # \x2F963 CJK COMPATIBILITY IDEOGRAPH-2F963 7BC9 # \x2F964 CJK COMPATIBILITY IDEOGRAPH-2F964 4227 # \x2F965 CJK COMPATIBILITY IDEOGRAPH-2F965 25C80 # \x2F966 CJK COMPATIBILITY IDEOGRAPH-2F966 7CD2 # \x2F967 CJK COMPATIBILITY IDEOGRAPH-2F967 42A0 # \x2F968 CJK COMPATIBILITY IDEOGRAPH-2F968 7CE8 # \x2F969 CJK COMPATIBILITY IDEOGRAPH-2F969 7CE3 # \x2F96A CJK COMPATIBILITY IDEOGRAPH-2F96A 7D00 # \x2F96B CJK COMPATIBILITY IDEOGRAPH-2F96B 25F86 # \x2F96C CJK COMPATIBILITY IDEOGRAPH-2F96C 7D63 # \x2F96D CJK COMPATIBILITY IDEOGRAPH-2F96D 4301 # \x2F96E CJK COMPATIBILITY IDEOGRAPH-2F96E 7DC7 # \x2F96F CJK COMPATIBILITY IDEOGRAPH-2F96F 7E02 # \x2F970 CJK COMPATIBILITY IDEOGRAPH-2F970 7E45 # \x2F971 CJK COMPATIBILITY IDEOGRAPH-2F971 4334 # \x2F972 CJK COMPATIBILITY IDEOGRAPH-2F972 26228 # \x2F973 CJK COMPATIBILITY IDEOGRAPH-2F973 26247 # \x2F974 CJK COMPATIBILITY IDEOGRAPH-2F974 4359 # \x2F975 CJK COMPATIBILITY IDEOGRAPH-2F975 262D9 # \x2F976 CJK COMPATIBILITY IDEOGRAPH-2F976 7F7A # \x2F977 CJK COMPATIBILITY IDEOGRAPH-2F977 2633E # \x2F978 CJK COMPATIBILITY IDEOGRAPH-2F978 7F95 # \x2F979 CJK COMPATIBILITY IDEOGRAPH-2F979 7FFA # \x2F97A CJK COMPATIBILITY IDEOGRAPH-2F97A 8005 # \x2F97B CJK COMPATIBILITY IDEOGRAPH-2F97B 264DA # \x2F97C CJK COMPATIBILITY IDEOGRAPH-2F97C 26523 # \x2F97D CJK COMPATIBILITY IDEOGRAPH-2F97D 8060 # \x2F97E CJK COMPATIBILITY IDEOGRAPH-2F97E 265A8 # \x2F97F CJK COMPATIBILITY IDEOGRAPH-2F97F 8070 # \x2F980 CJK COMPATIBILITY IDEOGRAPH-2F980 2335F # \x2F981 CJK COMPATIBILITY IDEOGRAPH-2F981 43D5 # \x2F982 CJK COMPATIBILITY IDEOGRAPH-2F982 80B2 # \x2F983 CJK COMPATIBILITY IDEOGRAPH-2F983 8103 # \x2F984 CJK COMPATIBILITY IDEOGRAPH-2F984 440B # \x2F985 CJK COMPATIBILITY IDEOGRAPH-2F985 813E # \x2F986 CJK COMPATIBILITY IDEOGRAPH-2F986 5AB5 # \x2F987 CJK COMPATIBILITY IDEOGRAPH-2F987 267A7 # \x2F988 CJK COMPATIBILITY IDEOGRAPH-2F988 267B5 # \x2F989 CJK COMPATIBILITY IDEOGRAPH-2F989 23393 # \x2F98A CJK COMPATIBILITY IDEOGRAPH-2F98A 2339C # \x2F98B CJK COMPATIBILITY IDEOGRAPH-2F98B 8201 # \x2F98C CJK COMPATIBILITY IDEOGRAPH-2F98C 8204 # \x2F98D CJK COMPATIBILITY IDEOGRAPH-2F98D 8F9E # \x2F98E CJK COMPATIBILITY IDEOGRAPH-2F98E 446B # \x2F98F CJK COMPATIBILITY IDEOGRAPH-2F98F 8291 # \x2F990 CJK COMPATIBILITY IDEOGRAPH-2F990 828B # \x2F991 CJK COMPATIBILITY IDEOGRAPH-2F991 829D # \x2F992 CJK COMPATIBILITY IDEOGRAPH-2F992 52B3 # \x2F993 CJK COMPATIBILITY IDEOGRAPH-2F993 82B1 # \x2F994 CJK COMPATIBILITY IDEOGRAPH-2F994 82B3 # \x2F995 CJK COMPATIBILITY IDEOGRAPH-2F995 82BD # \x2F996 CJK COMPATIBILITY IDEOGRAPH-2F996 82E6 # \x2F997 CJK COMPATIBILITY IDEOGRAPH-2F997 26B3C # \x2F998 CJK COMPATIBILITY IDEOGRAPH-2F998 82E5 # \x2F999 CJK COMPATIBILITY IDEOGRAPH-2F999 831D # \x2F99A CJK COMPATIBILITY IDEOGRAPH-2F99A 8363 # \x2F99B CJK COMPATIBILITY IDEOGRAPH-2F99B 83AD # \x2F99C CJK COMPATIBILITY IDEOGRAPH-2F99C 8323 # \x2F99D CJK COMPATIBILITY IDEOGRAPH-2F99D 83BD # \x2F99E CJK COMPATIBILITY IDEOGRAPH-2F99E 83E7 # \x2F99F CJK COMPATIBILITY IDEOGRAPH-2F99F 8457 # \x2F9A0 CJK COMPATIBILITY IDEOGRAPH-2F9A0 8353 # \x2F9A1 CJK COMPATIBILITY IDEOGRAPH-2F9A1 83CA # \x2F9A2 CJK COMPATIBILITY IDEOGRAPH-2F9A2 83CC # \x2F9A3 CJK COMPATIBILITY IDEOGRAPH-2F9A3 83DC # \x2F9A4 CJK COMPATIBILITY IDEOGRAPH-2F9A4 26C36 # \x2F9A5 CJK COMPATIBILITY IDEOGRAPH-2F9A5 26D6B # \x2F9A6 CJK COMPATIBILITY IDEOGRAPH-2F9A6 26CD5 # \x2F9A7 CJK COMPATIBILITY IDEOGRAPH-2F9A7 452B # \x2F9A8 CJK COMPATIBILITY IDEOGRAPH-2F9A8 84F1 # \x2F9A9 CJK COMPATIBILITY IDEOGRAPH-2F9A9 84F3 # \x2F9AA CJK COMPATIBILITY IDEOGRAPH-2F9AA 8516 # \x2F9AB CJK COMPATIBILITY IDEOGRAPH-2F9AB 273CA # \x2F9AC CJK COMPATIBILITY IDEOGRAPH-2F9AC 8564 # \x2F9AD CJK COMPATIBILITY IDEOGRAPH-2F9AD 26F2C # \x2F9AE CJK COMPATIBILITY IDEOGRAPH-2F9AE 455D # \x2F9AF CJK COMPATIBILITY IDEOGRAPH-2F9AF 4561 # \x2F9B0 CJK COMPATIBILITY IDEOGRAPH-2F9B0 26FB1 # \x2F9B1 CJK COMPATIBILITY IDEOGRAPH-2F9B1 270D2 # \x2F9B2 CJK COMPATIBILITY IDEOGRAPH-2F9B2 456B # \x2F9B3 CJK COMPATIBILITY IDEOGRAPH-2F9B3 8650 # \x2F9B4 CJK COMPATIBILITY IDEOGRAPH-2F9B4 865C # \x2F9B5 CJK COMPATIBILITY IDEOGRAPH-2F9B5 8667 # \x2F9B6 CJK COMPATIBILITY IDEOGRAPH-2F9B6 8669 # \x2F9B7 CJK COMPATIBILITY IDEOGRAPH-2F9B7 86A9 # \x2F9B8 CJK COMPATIBILITY IDEOGRAPH-2F9B8 8688 # \x2F9B9 CJK COMPATIBILITY IDEOGRAPH-2F9B9 870E # \x2F9BA CJK COMPATIBILITY IDEOGRAPH-2F9BA 86E2 # \x2F9BB CJK COMPATIBILITY IDEOGRAPH-2F9BB 8779 # \x2F9BC CJK COMPATIBILITY IDEOGRAPH-2F9BC 8728 # \x2F9BD CJK COMPATIBILITY IDEOGRAPH-2F9BD 876B # \x2F9BE CJK COMPATIBILITY IDEOGRAPH-2F9BE 8786 # \x2F9BF CJK COMPATIBILITY IDEOGRAPH-2F9BF 45D7 # \x2F9C0 CJK COMPATIBILITY IDEOGRAPH-2F9C0 87E1 # \x2F9C1 CJK COMPATIBILITY IDEOGRAPH-2F9C1 8801 # \x2F9C2 CJK COMPATIBILITY IDEOGRAPH-2F9C2 45F9 # \x2F9C3 CJK COMPATIBILITY IDEOGRAPH-2F9C3 8860 # \x2F9C4 CJK COMPATIBILITY IDEOGRAPH-2F9C4 8863 # \x2F9C5 CJK COMPATIBILITY IDEOGRAPH-2F9C5 27667 # \x2F9C6 CJK COMPATIBILITY IDEOGRAPH-2F9C6 88D7 # \x2F9C7 CJK COMPATIBILITY IDEOGRAPH-2F9C7 88DE # \x2F9C8 CJK COMPATIBILITY IDEOGRAPH-2F9C8 4635 # \x2F9C9 CJK COMPATIBILITY IDEOGRAPH-2F9C9 88FA # \x2F9CA CJK COMPATIBILITY IDEOGRAPH-2F9CA 34BB # \x2F9CB CJK COMPATIBILITY IDEOGRAPH-2F9CB 278AE # \x2F9CC CJK COMPATIBILITY IDEOGRAPH-2F9CC 27966 # \x2F9CD CJK COMPATIBILITY IDEOGRAPH-2F9CD 46BE # \x2F9CE CJK COMPATIBILITY IDEOGRAPH-2F9CE 46C7 # \x2F9CF CJK COMPATIBILITY IDEOGRAPH-2F9CF 8AA0 # \x2F9D0 CJK COMPATIBILITY IDEOGRAPH-2F9D0 8AED # \x2F9D1 CJK COMPATIBILITY IDEOGRAPH-2F9D1 8B8A # \x2F9D2 CJK COMPATIBILITY IDEOGRAPH-2F9D2 8C55 # \x2F9D3 CJK COMPATIBILITY IDEOGRAPH-2F9D3 27CA8 # \x2F9D4 CJK COMPATIBILITY IDEOGRAPH-2F9D4 8CAB # \x2F9D5 CJK COMPATIBILITY IDEOGRAPH-2F9D5 8CC1 # \x2F9D6 CJK COMPATIBILITY IDEOGRAPH-2F9D6 8D1B # \x2F9D7 CJK COMPATIBILITY IDEOGRAPH-2F9D7 8D77 # \x2F9D8 CJK COMPATIBILITY IDEOGRAPH-2F9D8 27F2F # \x2F9D9 CJK COMPATIBILITY IDEOGRAPH-2F9D9 20804 # \x2F9DA CJK COMPATIBILITY IDEOGRAPH-2F9DA 8DCB # \x2F9DB CJK COMPATIBILITY IDEOGRAPH-2F9DB 8DBC # \x2F9DC CJK COMPATIBILITY IDEOGRAPH-2F9DC 8DF0 # \x2F9DD CJK COMPATIBILITY IDEOGRAPH-2F9DD 208DE # \x2F9DE CJK COMPATIBILITY IDEOGRAPH-2F9DE 8ED4 # \x2F9DF CJK COMPATIBILITY IDEOGRAPH-2F9DF 8F38 # \x2F9E0 CJK COMPATIBILITY IDEOGRAPH-2F9E0 285D2 # \x2F9E1 CJK COMPATIBILITY IDEOGRAPH-2F9E1 285ED # \x2F9E2 CJK COMPATIBILITY IDEOGRAPH-2F9E2 9094 # \x2F9E3 CJK COMPATIBILITY IDEOGRAPH-2F9E3 90F1 # \x2F9E4 CJK COMPATIBILITY IDEOGRAPH-2F9E4 9111 # \x2F9E5 CJK COMPATIBILITY IDEOGRAPH-2F9E5 2872E # \x2F9E6 CJK COMPATIBILITY IDEOGRAPH-2F9E6 911B # \x2F9E7 CJK COMPATIBILITY IDEOGRAPH-2F9E7 9238 # \x2F9E8 CJK COMPATIBILITY IDEOGRAPH-2F9E8 92D7 # \x2F9E9 CJK COMPATIBILITY IDEOGRAPH-2F9E9 92D8 # \x2F9EA CJK COMPATIBILITY IDEOGRAPH-2F9EA 927C # \x2F9EB CJK COMPATIBILITY IDEOGRAPH-2F9EB 93F9 # \x2F9EC CJK COMPATIBILITY IDEOGRAPH-2F9EC 9415 # \x2F9ED CJK COMPATIBILITY IDEOGRAPH-2F9ED 28BFA # \x2F9EE CJK COMPATIBILITY IDEOGRAPH-2F9EE 958B # \x2F9EF CJK COMPATIBILITY IDEOGRAPH-2F9EF 4995 # \x2F9F0 CJK COMPATIBILITY IDEOGRAPH-2F9F0 95B7 # \x2F9F1 CJK COMPATIBILITY IDEOGRAPH-2F9F1 28D77 # \x2F9F2 CJK COMPATIBILITY IDEOGRAPH-2F9F2 49E6 # \x2F9F3 CJK COMPATIBILITY IDEOGRAPH-2F9F3 96C3 # \x2F9F4 CJK COMPATIBILITY IDEOGRAPH-2F9F4 5DB2 # \x2F9F5 CJK COMPATIBILITY IDEOGRAPH-2F9F5 9723 # \x2F9F6 CJK COMPATIBILITY IDEOGRAPH-2F9F6 29145 # \x2F9F7 CJK COMPATIBILITY IDEOGRAPH-2F9F7 2921A # \x2F9F8 CJK COMPATIBILITY IDEOGRAPH-2F9F8 4A6E # \x2F9F9 CJK COMPATIBILITY IDEOGRAPH-2F9F9 4A76 # \x2F9FA CJK COMPATIBILITY IDEOGRAPH-2F9FA 97E0 # \x2F9FB CJK COMPATIBILITY IDEOGRAPH-2F9FB 2940A # \x2F9FC CJK COMPATIBILITY IDEOGRAPH-2F9FC 4AB2 # \x2F9FD CJK COMPATIBILITY IDEOGRAPH-2F9FD 29496 # \x2F9FE CJK COMPATIBILITY IDEOGRAPH-2F9FE 980B # \x2F9FF CJK COMPATIBILITY IDEOGRAPH-2F9FF 980B # \x2FA00 CJK COMPATIBILITY IDEOGRAPH-2FA00 9829 # \x2FA01 CJK COMPATIBILITY IDEOGRAPH-2FA01 295B6 # \x2FA02 CJK COMPATIBILITY IDEOGRAPH-2FA02 98E2 # \x2FA03 CJK COMPATIBILITY IDEOGRAPH-2FA03 4B33 # \x2FA04 CJK COMPATIBILITY IDEOGRAPH-2FA04 9929 # \x2FA05 CJK COMPATIBILITY IDEOGRAPH-2FA05 99A7 # \x2FA06 CJK COMPATIBILITY IDEOGRAPH-2FA06 99C2 # \x2FA07 CJK COMPATIBILITY IDEOGRAPH-2FA07 99FE # \x2FA08 CJK COMPATIBILITY IDEOGRAPH-2FA08 4BCE # \x2FA09 CJK COMPATIBILITY IDEOGRAPH-2FA09 29B30 # \x2FA0A CJK COMPATIBILITY IDEOGRAPH-2FA0A 9B12 # \x2FA0B CJK COMPATIBILITY IDEOGRAPH-2FA0B 9C40 # \x2FA0C CJK COMPATIBILITY IDEOGRAPH-2FA0C 9CFD # \x2FA0D CJK COMPATIBILITY IDEOGRAPH-2FA0D 4CCE # \x2FA0E CJK COMPATIBILITY IDEOGRAPH-2FA0E 4CED # \x2FA0F CJK COMPATIBILITY IDEOGRAPH-2FA0F 9D67 # \x2FA10 CJK COMPATIBILITY IDEOGRAPH-2FA10 2A0CE # \x2FA11 CJK COMPATIBILITY IDEOGRAPH-2FA11 4CF8 # \x2FA12 CJK COMPATIBILITY IDEOGRAPH-2FA12 2A105 # \x2FA13 CJK COMPATIBILITY IDEOGRAPH-2FA13 2A20E # \x2FA14 CJK COMPATIBILITY IDEOGRAPH-2FA14 2A291 # \x2FA15 CJK COMPATIBILITY IDEOGRAPH-2FA15 9EBB # \x2FA16 CJK COMPATIBILITY IDEOGRAPH-2FA16 4D56 # \x2FA17 CJK COMPATIBILITY IDEOGRAPH-2FA17 9EF9 # \x2FA18 CJK COMPATIBILITY IDEOGRAPH-2FA18 9EFE # \x2FA19 CJK COMPATIBILITY IDEOGRAPH-2FA19 9F05 # \x2FA1A CJK COMPATIBILITY IDEOGRAPH-2FA1A 9F0F # \x2FA1B CJK COMPATIBILITY IDEOGRAPH-2FA1B 9F16 # \x2FA1C CJK COMPATIBILITY IDEOGRAPH-2FA1C 9F3B # \x2FA1D CJK COMPATIBILITY IDEOGRAPH-2FA1D 2A600 # \xE0001 LANGUAGE TAG # \xE0020 TAG SPACE # \xE0021 TAG EXCLAMATION MARK # \xE0022 TAG QUOTATION MARK # \xE0023 TAG NUMBER SIGN # \xE0024 TAG DOLLAR SIGN # \xE0025 TAG PERCENT SIGN # \xE0026 TAG AMPERSAND # \xE0027 TAG APOSTROPHE # \xE0028 TAG LEFT PARENTHESIS # \xE0029 TAG RIGHT PARENTHESIS # \xE002A TAG ASTERISK # \xE002B TAG PLUS SIGN # \xE002C TAG COMMA # \xE002D TAG HYPHEN-MINUS # \xE002E TAG FULL STOP # \xE002F TAG SOLIDUS # \xE0030 TAG DIGIT ZERO # \xE0031 TAG DIGIT ONE # \xE0032 TAG DIGIT TWO # \xE0033 TAG DIGIT THREE # \xE0034 TAG DIGIT FOUR # \xE0035 TAG DIGIT FIVE # \xE0036 TAG DIGIT SIX # \xE0037 TAG DIGIT SEVEN # \xE0038 TAG DIGIT EIGHT # \xE0039 TAG DIGIT NINE # \xE003A TAG COLON # \xE003B TAG SEMICOLON # \xE003C TAG LESS-THAN SIGN # \xE003D TAG EQUALS SIGN # \xE003E TAG GREATER-THAN SIGN # \xE003F TAG QUESTION MARK # \xE0040 TAG COMMERCIAL AT # \xE0041 TAG LATIN CAPITAL LETTER A # \xE0042 TAG LATIN CAPITAL LETTER B # \xE0043 TAG LATIN CAPITAL LETTER C # \xE0044 TAG LATIN CAPITAL LETTER D # \xE0045 TAG LATIN CAPITAL LETTER E # \xE0046 TAG LATIN CAPITAL LETTER F # \xE0047 TAG LATIN CAPITAL LETTER G # \xE0048 TAG LATIN CAPITAL LETTER H # \xE0049 TAG LATIN CAPITAL LETTER I # \xE004A TAG LATIN CAPITAL LETTER J # \xE004B TAG LATIN CAPITAL LETTER K # \xE004C TAG LATIN CAPITAL LETTER # \xE004D TAG LATIN CAPITAL LETTER M # \xE004E TAG LATIN CAPITAL LETTER # \xE004F TAG LATIN CAPITAL LETTER O # \xE0050 TAG LATIN CAPITAL LETTER P # \xE0051 TAG LATIN CAPITAL LETTER Q # \xE0052 TAG LATIN CAPITAL LETTER # \xE0053 TAG LATIN CAPITAL LETTER S # \xE0054 TAG LATIN CAPITAL LETTER T # \xE0055 TAG LATIN CAPITAL LETTER U # \xE0056 TAG LATIN CAPITAL LETTER V # \xE0057 TAG LATIN CAPITAL LETTER W # \xE0058 TAG LATIN CAPITAL LETTER X # \xE0059 TAG LATIN CAPITAL LETTER Y # \xE005A TAG LATIN CAPITAL LETTER Z # \xE005B TAG LEFT SQUARE BRACKET # \xE005C TAG REVERSE SOLIDUS # \xE005D TAG RIGHT SQUARE BRACKET # \xE005E TAG CIRCUMFLEX ACCENT # \xE005F TAG LOW LINE # \xE0060 TAG GRAVE ACCENT # \xE0061 TAG LATIN SMALL LETTER A # \xE0062 TAG LATIN SMALL LETTER B # \xE0063 TAG LATIN SMALL LETTER C # \xE0064 TAG LATIN SMALL LETTER D # \xE0065 TAG LATIN SMALL LETTER E # \xE0066 TAG LATIN SMALL LETTER F # \xE0067 TAG LATIN SMALL LETTER G # \xE0068 TAG LATIN SMALL LETTER H # \xE0069 TAG LATIN SMALL LETTER I # \xE006A TAG LATIN SMALL LETTER J # \xE006B TAG LATIN SMALL LETTER K # \xE006C TAG LATIN SMALL LETTER # \xE006D TAG LATIN SMALL LETTER M # \xE006E TAG LATIN SMALL LETTER # \xE006F TAG LATIN SMALL LETTER O # \xE0070 TAG LATIN SMALL LETTER P # \xE0071 TAG LATIN SMALL LETTER Q # \xE0072 TAG LATIN SMALL LETTER # \xE0073 TAG LATIN SMALL LETTER S # \xE0074 TAG LATIN SMALL LETTER T # \xE0075 TAG LATIN SMALL LETTER U # \xE0076 TAG LATIN SMALL LETTER V # \xE0077 TAG LATIN SMALL LETTER W # \xE0078 TAG LATIN SMALL LETTER X # \xE0079 TAG LATIN SMALL LETTER Y # \xE007A TAG LATIN SMALL LETTER Z # \xE007B TAG LEFT CURLY BRACKET # \xE007C TAG VERTICAL LINE # \xE007D TAG RIGHT CURLY BRACKET # \xE007E TAG TILDE # \xE007F CANCEL TAG # \xE0100 VARIATION SELECTOR-17 # \xE0101 VARIATION SELECTOR-18 # \xE0102 VARIATION SELECTOR-19 # \xE0103 VARIATION SELECTOR-20 # \xE0104 VARIATION SELECTOR-21 # \xE0105 VARIATION SELECTOR-22 # \xE0106 VARIATION SELECTOR-23 # \xE0107 VARIATION SELECTOR-24 # \xE0108 VARIATION SELECTOR-25 # \xE0109 VARIATION SELECTOR-26 # \xE010A VARIATION SELECTOR-27 # \xE010B VARIATION SELECTOR-28 # \xE010C VARIATION SELECTOR-29 # \xE010D VARIATION SELECTOR-30 # \xE010E VARIATION SELECTOR-31 # \xE010F VARIATION SELECTOR-32 # \xE0110 VARIATION SELECTOR-33 # \xE0111 VARIATION SELECTOR-34 # \xE0112 VARIATION SELECTOR-35 # \xE0113 VARIATION SELECTOR-36 # \xE0114 VARIATION SELECTOR-37 # \xE0115 VARIATION SELECTOR-38 # \xE0116 VARIATION SELECTOR-39 # \xE0117 VARIATION SELECTOR-40 # \xE0118 VARIATION SELECTOR-41 # \xE0119 VARIATION SELECTOR-42 # \xE011A VARIATION SELECTOR-43 # \xE011B VARIATION SELECTOR-44 # \xE011C VARIATION SELECTOR-45 # \xE011D VARIATION SELECTOR-46 # \xE011E VARIATION SELECTOR-47 # \xE011F VARIATION SELECTOR-48 # \xE0120 VARIATION SELECTOR-49 # \xE0121 VARIATION SELECTOR-50 # \xE0122 VARIATION SELECTOR-51 # \xE0123 VARIATION SELECTOR-52 # \xE0124 VARIATION SELECTOR-53 # \xE0125 VARIATION SELECTOR-54 # \xE0126 VARIATION SELECTOR-55 # \xE0127 VARIATION SELECTOR-56 # \xE0128 VARIATION SELECTOR-57 # \xE0129 VARIATION SELECTOR-58 # \xE012A VARIATION SELECTOR-59 # \xE012B VARIATION SELECTOR-60 # \xE012C VARIATION SELECTOR-61 # \xE012D VARIATION SELECTOR-62 # \xE012E VARIATION SELECTOR-63 # \xE012F VARIATION SELECTOR-64 # \xE0130 VARIATION SELECTOR-65 # \xE0131 VARIATION SELECTOR-66 # \xE0132 VARIATION SELECTOR-67 # \xE0133 VARIATION SELECTOR-68 # \xE0134 VARIATION SELECTOR-69 # \xE0135 VARIATION SELECTOR-70 # \xE0136 VARIATION SELECTOR-71 # \xE0137 VARIATION SELECTOR-72 # \xE0138 VARIATION SELECTOR-73 # \xE0139 VARIATION SELECTOR-74 # \xE013A VARIATION SELECTOR-75 # \xE013B VARIATION SELECTOR-76 # \xE013C VARIATION SELECTOR-77 # \xE013D VARIATION SELECTOR-78 # \xE013E VARIATION SELECTOR-79 # \xE013F VARIATION SELECTOR-80 # \xE0140 VARIATION SELECTOR-81 # \xE0141 VARIATION SELECTOR-82 # \xE0142 VARIATION SELECTOR-83 # \xE0143 VARIATION SELECTOR-84 # \xE0144 VARIATION SELECTOR-85 # \xE0145 VARIATION SELECTOR-86 # \xE0146 VARIATION SELECTOR-87 # \xE0147 VARIATION SELECTOR-88 # \xE0148 VARIATION SELECTOR-89 # \xE0149 VARIATION SELECTOR-90 # \xE014A VARIATION SELECTOR-91 # \xE014B VARIATION SELECTOR-92 # \xE014C VARIATION SELECTOR-93 # \xE014D VARIATION SELECTOR-94 # \xE014E VARIATION SELECTOR-95 # \xE014F VARIATION SELECTOR-96 # \xE0150 VARIATION SELECTOR-97 # \xE0151 VARIATION SELECTOR-98 # \xE0152 VARIATION SELECTOR-99 # \xE0153 VARIATION SELECTOR-100 # \xE0154 VARIATION SELECTOR-101 # \xE0155 VARIATION SELECTOR-102 # \xE0156 VARIATION SELECTOR-103 # \xE0157 VARIATION SELECTOR-104 # \xE0158 VARIATION SELECTOR-105 # \xE0159 VARIATION SELECTOR-106 # \xE015A VARIATION SELECTOR-107 # \xE015B VARIATION SELECTOR-108 # \xE015C VARIATION SELECTOR-109 # \xE015D VARIATION SELECTOR-110 # \xE015E VARIATION SELECTOR-111 # \xE015F VARIATION SELECTOR-112 # \xE0160 VARIATION SELECTOR-113 # \xE0161 VARIATION SELECTOR-114 # \xE0162 VARIATION SELECTOR-115 # \xE0163 VARIATION SELECTOR-116 # \xE0164 VARIATION SELECTOR-117 # \xE0165 VARIATION SELECTOR-118 # \xE0166 VARIATION SELECTOR-119 # \xE0167 VARIATION SELECTOR-120 # \xE0168 VARIATION SELECTOR-121 # \xE0169 VARIATION SELECTOR-122 # \xE016A VARIATION SELECTOR-123 # \xE016B VARIATION SELECTOR-124 # \xE016C VARIATION SELECTOR-125 # \xE016D VARIATION SELECTOR-126 # \xE016E VARIATION SELECTOR-127 # \xE016F VARIATION SELECTOR-128 # \xE0170 VARIATION SELECTOR-129 # \xE0171 VARIATION SELECTOR-130 # \xE0172 VARIATION SELECTOR-131 # \xE0173 VARIATION SELECTOR-132 # \xE0174 VARIATION SELECTOR-133 # \xE0175 VARIATION SELECTOR-134 # \xE0176 VARIATION SELECTOR-135 # \xE0177 VARIATION SELECTOR-136 # \xE0178 VARIATION SELECTOR-137 # \xE0179 VARIATION SELECTOR-138 # \xE017A VARIATION SELECTOR-139 # \xE017B VARIATION SELECTOR-140 # \xE017C VARIATION SELECTOR-141 # \xE017D VARIATION SELECTOR-142 # \xE017E VARIATION SELECTOR-143 # \xE017F VARIATION SELECTOR-144 # \xE0180 VARIATION SELECTOR-145 # \xE0181 VARIATION SELECTOR-146 # \xE0182 VARIATION SELECTOR-147 # \xE0183 VARIATION SELECTOR-148 # \xE0184 VARIATION SELECTOR-149 # \xE0185 VARIATION SELECTOR-150 # \xE0186 VARIATION SELECTOR-151 # \xE0187 VARIATION SELECTOR-152 # \xE0188 VARIATION SELECTOR-153 # \xE0189 VARIATION SELECTOR-154 # \xE018A VARIATION SELECTOR-155 # \xE018B VARIATION SELECTOR-156 # \xE018C VARIATION SELECTOR-157 # \xE018D VARIATION SELECTOR-158 # \xE018E VARIATION SELECTOR-159 # \xE018F VARIATION SELECTOR-160 # \xE0190 VARIATION SELECTOR-161 # \xE0191 VARIATION SELECTOR-162 # \xE0192 VARIATION SELECTOR-163 # \xE0193 VARIATION SELECTOR-164 # \xE0194 VARIATION SELECTOR-165 # \xE0195 VARIATION SELECTOR-166 # \xE0196 VARIATION SELECTOR-167 # \xE0197 VARIATION SELECTOR-168 # \xE0198 VARIATION SELECTOR-169 # \xE0199 VARIATION SELECTOR-170 # \xE019A VARIATION SELECTOR-171 # \xE019B VARIATION SELECTOR-172 # \xE019C VARIATION SELECTOR-173 # \xE019D VARIATION SELECTOR-174 # \xE019E VARIATION SELECTOR-175 # \xE019F VARIATION SELECTOR-176 # \xE01A0 VARIATION SELECTOR-177 # \xE01A1 VARIATION SELECTOR-178 # \xE01A2 VARIATION SELECTOR-179 # \xE01A3 VARIATION SELECTOR-180 # \xE01A4 VARIATION SELECTOR-181 # \xE01A5 VARIATION SELECTOR-182 # \xE01A6 VARIATION SELECTOR-183 # \xE01A7 VARIATION SELECTOR-184 # \xE01A8 VARIATION SELECTOR-185 # \xE01A9 VARIATION SELECTOR-186 # \xE01AA VARIATION SELECTOR-187 # \xE01AB VARIATION SELECTOR-188 # \xE01AC VARIATION SELECTOR-189 # \xE01AD VARIATION SELECTOR-190 # \xE01AE VARIATION SELECTOR-191 # \xE01AF VARIATION SELECTOR-192 # \xE01B0 VARIATION SELECTOR-193 # \xE01B1 VARIATION SELECTOR-194 # \xE01B2 VARIATION SELECTOR-195 # \xE01B3 VARIATION SELECTOR-196 # \xE01B4 VARIATION SELECTOR-197 # \xE01B5 VARIATION SELECTOR-198 # \xE01B6 VARIATION SELECTOR-199 # \xE01B7 VARIATION SELECTOR-200 # \xE01B8 VARIATION SELECTOR-201 # \xE01B9 VARIATION SELECTOR-202 # \xE01BA VARIATION SELECTOR-203 # \xE01BB VARIATION SELECTOR-204 # \xE01BC VARIATION SELECTOR-205 # \xE01BD VARIATION SELECTOR-206 # \xE01BE VARIATION SELECTOR-207 # \xE01BF VARIATION SELECTOR-208 # \xE01C0 VARIATION SELECTOR-209 # \xE01C1 VARIATION SELECTOR-210 # \xE01C2 VARIATION SELECTOR-211 # \xE01C3 VARIATION SELECTOR-212 # \xE01C4 VARIATION SELECTOR-213 # \xE01C5 VARIATION SELECTOR-214 # \xE01C6 VARIATION SELECTOR-215 # \xE01C7 VARIATION SELECTOR-216 # \xE01C8 VARIATION SELECTOR-217 # \xE01C9 VARIATION SELECTOR-218 # \xE01CA VARIATION SELECTOR-219 # \xE01CB VARIATION SELECTOR-220 # \xE01CC VARIATION SELECTOR-221 # \xE01CD VARIATION SELECTOR-222 # \xE01CE VARIATION SELECTOR-223 # \xE01CF VARIATION SELECTOR-224 # \xE01D0 VARIATION SELECTOR-225 # \xE01D1 VARIATION SELECTOR-226 # \xE01D2 VARIATION SELECTOR-227 # \xE01D3 VARIATION SELECTOR-228 # \xE01D4 VARIATION SELECTOR-229 # \xE01D5 VARIATION SELECTOR-230 # \xE01D6 VARIATION SELECTOR-231 # \xE01D7 VARIATION SELECTOR-232 # \xE01D8 VARIATION SELECTOR-233 # \xE01D9 VARIATION SELECTOR-234 # \xE01DA VARIATION SELECTOR-235 # \xE01DB VARIATION SELECTOR-236 # \xE01DC VARIATION SELECTOR-237 # \xE01DD VARIATION SELECTOR-238 # \xE01DE VARIATION SELECTOR-239 # \xE01DF VARIATION SELECTOR-240 # \xE01E0 VARIATION SELECTOR-241 # \xE01E1 VARIATION SELECTOR-242 # \xE01E2 VARIATION SELECTOR-243 # \xE01E3 VARIATION SELECTOR-244 # \xE01E4 VARIATION SELECTOR-245 # \xE01E5 VARIATION SELECTOR-246 # \xE01E6 VARIATION SELECTOR-247 # \xE01E7 VARIATION SELECTOR-248 # \xE01E8 VARIATION SELECTOR-249 # \xE01E9 VARIATION SELECTOR-250 # \xE01EA VARIATION SELECTOR-251 # \xE01EB VARIATION SELECTOR-252 # \xE01EC VARIATION SELECTOR-253 # \xE01ED VARIATION SELECTOR-254 # \xE01EE VARIATION SELECTOR-255 # \xE01EF VARIATION SELECTOR-256 # \xF0000 Co # \xFFFFD Co # \x100000 Co # \x10FFFD Co # \x # \x math \xf577 25-135 contracted right arrow liblouis-2.5.3/tables/zh-tw.ctb0000664000175000017500000240360712161041546013317 00000000000000# Chinese braille table by Coscell Kao (C) 2011 #English characters space \t 9 tab space \s 0 blank space \x00a0 a unbreakable space sign \x000a 78 newline space \x000d 0 carriage return include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation , 6 punctuation ; 56 punctuation : 156 punctuation . 46 punctuation ! 2346 punctuation " 5 punctuation ' 3 punctuation ( 12356 punctuation ) 23456 punctuation - 36 sign _ 456 math < 126 math = 123456 math > 345 sign % 146 math + 346 math ~ 45 sign ` 4 sign & 12346 sign $ 1246 punctuation ? 1456 punctuation { 246 punctuation [ 2467 punctuation } 12456 punctuation ] 124567 sign ^ 457 sign @ 47 sign # 3456 sign \\ 12567 sign | 1256 math / 34 sign * 16 #Chinese characters sign \x00A0 0 sign \x00A1 34-2346 sign \x00A2 36-14-36 sign \x00A3 36-1237-36 sign \x00A4 456-1246 sign \x00A5 36-134567-157-13457-36 sign \x00A6 46-36 sign \x00A7 1246-256 sign \x00A8 456-36 sign \x00A9 12356-147-23456 sign \x00AA 36-1247-157-1347-36 sign \x00AB 126-126 sign \x00AC 36-13457-1357-23457-36 sign \x00AD 36 sign \x00AE 12356-12357-23456 sign \x00AF 156-36 sign \x00B0 45-46-16 sign \x00B1 346-36 sign \x00B2 457-23 sign \x00B3 457-25 sign \x00B4 4 sign \x00B5 46-134 sign \x00B6 1246-1234 sign \x00B7 46 sign \x00B8 2346-4 sign \x00B9 457-2 sign \x00BA 36-1347-17-2347-36 sign \x00BB 345-345 sign \x00BC 2-34-256 sign \x00BD 2-34-23 sign \x00BE 25-34-256 sign \x00C0 456-17 sign \x00C1 457-17 sign \x00C2 346-17 sign \x00C3 45-17 sign \x00C4 36-17 sign \x00C5 1357-17 sign \x00C6 17-157 sign \x00D7 4-16 sign \x00F7 46-34 sign \x02C6 378-35678 sign \x02C7 34567-4 sign \x02C9 34567-3 sign \x02CA 34567-2 sign \x02CB 34567-5 sign \x02CD 23467-34578 sign \x02D9 34567-1 sign \x0391 46-17 sign \x0392 46-127 sign \x0393 46-12457 sign \x0394 46-1457 sign \x0395 46-157 sign \x0396 46-13567 sign \x0397 46-1567 sign \x0398 46-14567 sign \x0399 46-247 sign \x039A 46-137 sign \x039B 46-1237 sign \x039C 46-1347 sign \x039D 46-13457 sign \x039E 46-13467 sign \x039F 46-1357 sign \x03A0 46-12347 sign \x03A1 46-12357 sign \x03A3 46-2347 sign \x03A4 46-23457 sign \x03A5 46-1367 sign \x03A6 46-1257 sign \x03A7 46-123467 sign \x03A8 46-134567 sign \x03A9 46-24567 sign \x03B1 46-1 sign \x03B2 46-12 sign \x03B3 46-1245 sign \x03B4 46-145 sign \x03B5 46-15 sign \x03B6 46-1356 sign \x03B7 46-156 sign \x03B9 46-24 sign \x03BA 46-13 sign \x03BB 46-123 sign \x03BC 46-134 sign \x03BD 46-1345 sign \x03BE 46-1346 sign \x03BF 46-135 sign \x03C0 46-1234 sign \x03C1 46-1235 sign \x03C3 46-234 sign \x03C4 46-2345 sign \x03C5 46-136 sign \x03C6 46-125 sign \x03C7 46-12346 sign \x03C8 46-13456 sign \x03C9 46-2456 sign \x0401 34678-3568 sign \x0410 34678-14568 sign \x0411 34678-2568 sign \x0412 34678-568 sign \x0413 34678-23468 sign \x0414 34678-347 sign \x0415 34678-348 sign \x0416 34678-1568 sign \x0417 34678-268 sign \x0418 34678-234568 sign \x0419 34678-12468 sign \x041A 34678-368 sign \x041B 235678-47 sign \x041C 235678-17 sign \x041D 235678-127 sign \x041E 235678-147 sign \x041F 235678-1457 sign \x0420 235678-157 sign \x0421 235678-1247 sign \x0422 235678-12457 sign \x0423 235678-1257 sign \x0424 235678-247 sign \x0425 235678-2457 sign \x0426 235678-137 sign \x0427 235678-1237 sign \x0428 235678-1347 sign \x0429 235678-13457 sign \x042A 235678-1357 sign \x042B 235678-12347 sign \x042C 235678-123457 sign \x042D 235678-12357 sign \x042E 235678-2347 sign \x042F 235678-23457 sign \x0430 235678-1367 sign \x0431 235678-12367 sign \x0432 235678-24567 sign \x0433 235678-13467 sign \x0434 235678-134567 sign \x0435 235678-13567 sign \x0436 235678-12567 sign \x0437 235678-124567 sign \x0438 235678-457 sign \x0439 235678-456 sign \x043A 235678-4 sign \x043B 235678-1 sign \x043C 235678-12 sign \x043D 235678-14 sign \x043E 235678-145 sign \x043F 235678-15 sign \x0440 235678-124 sign \x0441 235678-1245 sign \x0442 235678-125 sign \x0443 235678-24 sign \x0444 235678-245 sign \x0445 235678-13 sign \x0446 235678-123 sign \x0447 235678-134 sign \x0448 235678-1345 sign \x0449 235678-135 sign \x044A 235678-1234 sign \x044B 235678-12345 sign \x044C 235678-1235 sign \x044D 235678-234 sign \x044E 235678-2345 sign \x044F 235678-136 sign \x0451 235678-2467 sign \x2003 0 sign \x2013 5-2 sign \x2014 36-36 sign \x2015 36-36 sign \x2016 1246-123 sign \x2018 4 sign \x2019 3 sign \x201C 236-236 sign \x201D 356-356 sign \x2020 346 sign \x2022 36 sign \x2024 34567-1 sign \x2025 5-5-5 sign \x2026 5-5-5 sign \x2027 36 sign \x2032 3 sign \x2033 4-3456 sign \x2035 3 sign \x203B 46-16 sign \x203E 23467-578 sign \x2103 45-46-16-0-147 sign \x2105 146 sign \x2109 45-46-16-0-1247 sign \x2116 235678-3578 sign \x2121 235678-145678 sign \x2160 247 sign \x2161 247-247 sign \x2162 247-247-247 sign \x2163 247-12367 sign \x2164 12367 sign \x2165 12367-247 sign \x2166 12367-247-247 sign \x2167 12367-247-247-247 sign \x2168 247-13467 sign \x2169 13467 sign \x2170 247 sign \x2171 247-247 sign \x2172 247-247-247 sign \x2173 247-12367 sign \x2174 12367 sign \x2175 12367-247 sign \x2176 12367-247-247 sign \x2177 12367-247-247-247 sign \x2178 247-13467 sign \x2179 13467 sign \x2190 1246-246-25-25 sign \x2191 1246-126-25-25-135 sign \x2192 1246-25-25-135 sign \x2193 1246-146-25-25-135 sign \x2196 23467-348 sign \x2197 23467-3568 sign \x2198 23467-268 sign \x2199 23467-1568 sign \x21B8 235678-2456 sign \x21B9 235678-1346 sign \x21E7 235678-1236 sign \x21E8 1246-25-25-135 sign \x2207 46-1246 sign \x220F 46-12347 sign \x2211 46-2347 sign \x2212 36 sign \x2215 34 sign \x2216 12467-127 sign \x2218 45-46-16 sign \x221A 345-12456 sign \x221E 6-123456 sign \x221F 23467-23568 sign \x2220 1246-246 sign \x2223 1256 sign \x2225 1246-123 sign \x2227 46-1237 sign \x2228 12367 sign \x2229 46-146 sign \x222A 46-346 sign \x222B 23467-2368 sign \x222E 23467-1468 sign \x2234 6-16 sign \x2235 4-34 sign \x2236 25-25 sign \x2248 23467-2345678 sign \x2251 123456 sign \x2252 5-46-13-126-156-12456 sign \x2260 34-46-13 sign \x2261 4-156-46-13 sign \x2263 4-156-46-13 sign \x2264 5-13-156 sign \x2265 46-2-156 sign \x2266 5-13-156 sign \x2267 46-2-156 sign \x2295 23467-358 sign \x2299 23467-14568 sign \x22A5 1246-1234 sign \x22BF 23467-1268 sign \x2307 45 sign \x2400 34567-23578 sign \x2401 34567-1678 sign \x2402 34567-278 sign \x2403 34567-578 sign \x2404 34567-1234678 sign \x2405 34567-34578 sign \x2406 34567-378 sign \x2407 34567-34678 sign \x2408 34567-235678 sign \x2409 34567-12678 sign \x240A 34567-2378 sign \x240B 34567-12345678 sign \x240C 34567-23678 sign \x240D 34567-14678 sign \x240E 34567-2578 sign \x240F 34567-1235678 sign \x2410 34567-678 sign \x2411 34567-4678 sign \x2412 34567-3578 sign \x2413 34567-145678 sign \x2414 34567-25678 sign \x2415 34567-5678 sign \x2416 34567-234678 sign \x2417 34567-167 sign \x2418 34567-3478 sign \x2419 34567-35678 sign \x241A 34567-15678 sign \x241B 34567-2678 sign \x241C 34567-2345678 sign \x241D 34567-124678 sign \x241E 34567-3678 sign \x241F 34567-345678 sign \x2421 34567-2358 sign \x2460 378-23467 sign \x2461 378-12467 sign \x2462 378-34567 sign \x2463 378-1467 sign \x2464 378-123467 sign \x2465 378-1567 sign \x2466 378-357 sign \x2467 378-57 sign \x2468 378-23567 sign \x2469 378-8 sign \x2474 12356-2-23456 sign \x2475 12356-23-23456 sign \x2476 12356-25-23456 sign \x2477 12356-256-23456 sign \x2478 12356-26-23456 sign \x2479 12356-235-23456 sign \x247A 12356-2356-23456 sign \x247B 12356-236-23456 sign \x247C 12356-35-23456 sign \x247D 12356-2-356-23456 sign \x2500 36-36 sign \x2502 1256 sign \x2504 5-5-5 sign \x2505 5-5-5 sign \x2506 25-25 sign \x2507 25-25 sign \x2508 5-5-5 sign \x2509 5-5-5 sign \x250A 1256-0 sign \x250B 1256-0 sign \x250C 12467-1356 sign \x250D 12467-1356 sign \x250E 12467-1356 sign \x250F 12467-1356 sign \x2510 12467-246 sign \x2511 12467-246 sign \x2512 12467-246 sign \x2513 12467-246 sign \x2514 12467-1256 sign \x2515 12467-1256 sign \x2516 12467-1256 sign \x2517 12467-1256 sign \x2518 12467-12456 sign \x2519 12467-12456 sign \x251A 12467-12456 sign \x251B 12467-12456 sign \x251C 12467-136 sign \x251D 12467-136 sign \x251E 12467-136 sign \x251F 12467-136 sign \x2520 12467-136 sign \x2521 12467-136 sign \x2522 12467-136 sign \x2523 12467-136 sign \x2524 12467-2345 sign \x2525 12467-2345 sign \x2526 12467-2345 sign \x2527 12467-2345 sign \x2528 12467-2345 sign \x2529 12467-2345 sign \x252A 12467-2345 sign \x252B 12467-2345 sign \x252C 12467-234 sign \x252D 12467-234 sign \x252E 12467-234 sign \x252F 12467-234 sign \x2530 12467-234 sign \x2531 12467-234 sign \x2532 12467-234 sign \x2533 12467-234 sign \x2534 12467-1235 sign \x2535 12467-1235 sign \x2536 12467-1235 sign \x2537 12467-1235 sign \x2538 12467-1235 sign \x2539 12467-1235 sign \x253A 12467-1235 sign \x253B 12467-1235 sign \x253C 12467-12345 sign \x253D 12467-12345 sign \x253E 12467-12345 sign \x253F 12467-12345 sign \x2540 12467-12345 sign \x2541 12467-12345 sign \x2542 12467-12345 sign \x2543 12467-12345 sign \x2544 12467-12345 sign \x2545 12467-12345 sign \x2546 12467-12345 sign \x2547 12467-12345 sign \x2548 12467-12345 sign \x2549 12467-12345 sign \x254A 12467-12345 sign \x254B 12467-12345 sign \x2550 3568-3568 sign \x2551 3568-348 sign \x2552 3568-38 sign \x2553 3568-123568 sign \x2554 3568-124678 sign \x2555 3568-23568 sign \x2556 3568-468 sign \x2557 3568-345678 sign \x2558 3568-2368 sign \x2559 3568-568 sign \x255A 3568-58 sign \x255B 3568-258 sign \x255C 3568-347 sign \x255D 3568-3458 sign \x255E 3568-1268 sign \x255F 3568-358 sign \x2560 3568-2358 sign \x2561 3568-1234568 sign \x2562 3568-2568 sign \x2563 3568-28 sign \x2564 3568-3468 sign \x2565 3568-68 sign \x2566 3568-3678 sign \x2567 3568-1468 sign \x2568 3568-23468 sign \x2569 3568-123468 sign \x256A 3568-238 sign \x256B 3568-14568 sign \x256C 3568-168 sign \x256D 12467-45 sign \x256E 12467-23467 sign \x256F 12467-34567 sign \x2570 12467-12467 sign \x2571 34 sign \x2572 12467-367 sign \x2573 135-246 sign \x2574 36-0 sign \x2581 456 sign \x2582 12467-14 sign \x2583 12467-145 sign \x2584 12467-15 sign \x2585 12467-124 sign \x2586 12467-1245 sign \x2587 12467-125 sign \x2588 12467-24 sign \x2589 12467-1234 sign \x258A 12467-135 sign \x258B 12467-1345 sign \x258C 12467-134 sign \x258D 12467-123 sign \x258E 12467-13 sign \x258F 12467-245 sign \x2593 3568-368 sign \x2594 12467-1236 sign \x2595 12467-13456 sign \x25A0 12345678-12345678 sign \x25A1 12346-13456 sign \x25B2 1246-126 sign \x25B3 1246-2345 sign \x25BC 1246-146 sign \x25BD 46-1246 sign \x25C6 1246-145 sign \x25C7 23467-7 sign \x25CB 14-13456-2 sign \x25CE 246-246-135-135 sign \x25CF 246-123456-135 sign \x25E2 12467-57 sign \x25E3 12467-23567 sign \x25E4 12467-1267 sign \x25E5 12467-8 sign \x25EF 14-13456-2 sign \x2605 23467-27 sign \x2606 23467-67 sign \x2609 23467-14568 sign \x2640 46-2-15-13456-5 sign \x2641 23467-358 sign \x2642 1456-3-15-13456-5 sign \x266D 12 sign \x266F 3456 sign \x273D 378-38 sign \x2780 378-23467 sign \x2781 378-12467 sign \x2782 378-34567 sign \x2783 378-1467 sign \x2784 378-123467 sign \x2785 378-1567 sign \x2786 378-357 sign \x2787 378-57 sign \x2788 378-23567 sign \x2789 378-8 sign \x2F02 378-14567 sign \x2F03 1234-346-4 sign \x2F05 378-1678 sign \x2F07 124-12356-2 sign \x2F0C 13-235-3 sign \x2F0D 134-16-5 sign \x2F0E 135-13456-3 sign \x2F13 135-146-3 sign \x2F16 15-16-5 sign \x2F19 13-346-2 sign \x2F1B 378-12678 sign \x2F22 378-2378 sign \x2F27 134-2345-2 sign \x2F2E 378-23678 sign \x2F33 378-14678 sign \x2F34 2345-4 sign \x2F35 378-1235678 sign \x2F39 378-678 sign \x2F3A 24-1236-3 sign \x2F41 1234-34-3 sign \x2F46 378-145678 sign \x2F67 12-456-2 sign \x2F68 135-126-3 sign \x2FA1 12-25-5 sign \x2FAA 378-167 sign \x3000 0 sign \x3001 6-0 sign \x3002 36-0 sign \x3003 4-3456 sign \x3005 378-2358 sign \x3006 378-168 sign \x3007 378-28 sign \x3008 126 sign \x3009 345 sign \x300A 126-126 sign \x300B 345-345 sign \x300C 56-36 sign \x300D 36-23 sign \x300E 236-236 sign \x300F 356-356 sign \x3010 2467-0 sign \x3011 124567-0 sign \x3012 12347-1357 sign \x3013 12467-1467 sign \x3014 12346-0 sign \x3015 13456-0 sign \x301C 45 sign \x301D 236 sign \x301E 236 sign \x3021 24 sign \x3022 24-24 sign \x3023 24-24-24 sign \x3024 24-1236 sign \x3025 1236 sign \x3026 1236-24 sign \x3027 1236-24-24 sign \x3028 1236-24-24-24 sign \x3029 24-1346 sign \x3030 23467-2378 sign \x3038 1346 sign \x3039 1346-1346 sign \x303A 1346-1346-1346 sign \x3041 378-3468 sign \x3042 1 sign \x3043 378-1268 sign \x3044 12 sign \x3045 378-1234568 sign \x3046 14 sign \x3047 378-1468 sign \x3048 124 sign \x3049 378-123568 sign \x304A 24 sign \x304B 16 sign \x304C 5-16 sign \x304D 126 sign \x304E 5-126 sign \x304F 146 sign \x3050 5-146 sign \x3051 1246 sign \x3052 5-1246 sign \x3053 246 sign \x3054 5-246 sign \x3055 156 sign \x3056 5-156 sign \x3057 1256 sign \x3058 5-1256 sign \x305B 12456 sign \x305C 5-12456 sign \x305D 2456 sign \x305E 5-2456 sign \x305F 135 sign \x3060 5-135 sign \x3061 1235 sign \x3062 5-1235 sign \x3063 34678-2457 sign \x3064 1345 sign \x3065 5-1345 sign \x3066 12345 sign \x3067 5-12345 sign \x3068 2345 sign \x3069 5-2345 sign \x306A 13 sign \x306B 123 sign \x306C 134 sign \x306D 1234 sign \x306E 234 sign \x306F 136 sign \x3070 5-136 sign \x3071 6-136 sign \x3072 1236 sign \x3073 5-1236 sign \x3074 6-1236 sign \x3075 1346 sign \x3076 5-1346 sign \x3077 6-1346 sign \x3078 12346 sign \x3079 5-12346 sign \x307A 6-12346 sign \x307B 2346 sign \x307C 5-2346 sign \x307D 6-2346 sign \x307E 1356 sign \x307F 12356 sign \x3080 13456 sign \x3081 123456 sign \x3082 23456 sign \x3083 34678-245 sign \x3084 346 sign \x3085 34678-123 sign \x3086 34 sign \x3087 34678-1345 sign \x3088 345 sign \x3089 15 sign \x308A 125 sign \x308B 145 sign \x308C 1245 sign \x308D 245 sign \x308E 34678-136 sign \x308F 3 sign \x3090 34678-2456 sign \x3091 34678-1346 sign \x3092 35 sign \x3093 356 sign \x3094 235678-257 sign \x309B 235678-3467 sign \x309C 235678-237 sign \x309D 378-2345678 sign \x309E 378-124678 sign \x30A1 34678-246 sign \x30A2 34678-1256 sign \x30A3 34678-12456 sign \x30A4 34678-45 sign \x30A5 34678-23467 sign \x30A6 34678-12467 sign \x30A7 34678-34567 sign \x30A8 34678-1467 sign \x30A9 34678-123467 sign \x30AA 34678-1567 sign \x30AB 34678-357 sign \x30AC 34678-57 sign \x30AD 34678-23567 sign \x30AE 34678-8 sign \x30AF 34678-1267 sign \x30B0 34678-2567 sign \x30B1 34678-367 sign \x30B2 34678-2367 sign \x30B3 34678-267 sign \x30B4 34678-3567 sign \x30B5 34678-3467 sign \x30B6 34678-237 sign \x30B7 34678-257 sign \x30B8 34678-37 sign \x30B9 34678-567 sign \x30BA 34678-2357 sign \x30BB 34678-467 sign \x30BC 34678-67 sign \x30BD 34678-27 sign \x30BE 34678-7 sign \x30BF 34678-3457 sign \x30C0 34678-123567 sign \x30C1 34678-1234567 sign \x30C2 34678-234567 sign \x30C3 34678-14567 sign \x30C4 34678-23578 sign \x30C5 34678-1678 sign \x30C6 34678-278 sign \x30C7 34678-578 sign \x30C8 34678-1234678 sign \x30C9 34678-34578 sign \x30CA 34678-378 sign \x30CB 34678-34678 sign \x30CC 34678-235678 sign \x30CD 34678-12678 sign \x30CE 34678-2378 sign \x30CF 34678-12345678 sign \x30D0 34678-23678 sign \x30D1 34678-14678 sign \x30D2 34678-2578 sign \x30D3 34678-1235678 sign \x30D4 34678-678 sign \x30D5 34678-4678 sign \x30D6 34678-3578 sign \x30D7 34678-145678 sign \x30D8 34678-25678 sign \x30D9 34678-5678 sign \x30DA 34678-234678 sign \x30DB 34678-167 sign \x30DC 34678-3478 sign \x30DD 34678-35678 sign \x30DE 34678-15678 sign \x30DF 34678-2678 sign \x30E0 34678-2345678 sign \x30E1 34678-124678 sign \x30E2 34678-3678 sign \x30E3 34678-345678 sign \x30E4 34678-2358 sign \x30E5 34678-168 sign \x30E6 34678-28 sign \x30E7 34678-58 sign \x30E8 34678-123468 sign \x30E9 34678-3458 sign \x30EA 34678-38 sign \x30EB 34678-3468 sign \x30EC 34678-23568 sign \x30ED 34678-1268 sign \x30EE 34678-238 sign \x30EF 34678-1234568 sign \x30F0 34678-2368 sign \x30F1 34678-1468 sign \x30F2 34678-258 sign \x30F3 34678-123568 sign \x30F4 34678-68 sign \x30F5 34678-468 sign \x30F6 34678-358 sign \x30F7 235678-37 sign \x30F8 235678-567 sign \x30F9 235678-2357 sign \x30FA 235678-467 sign \x30FB 235678-67 sign \x30FC 378-58 sign \x30FD 378-15678 sign \x30FE 378-2678 sign \x3105 34567-135 sign \x3106 34567-1234 sign \x3107 34567-134 sign \x3108 34567-12345 sign \x3109 34567-145 sign \x310A 34567-124 sign \x310B 34567-1345 sign \x310C 34567-14 sign \x310D 34567-13 sign \x310E 34567-123 sign \x310F 34567-1235 sign \x3110 34567-13 sign \x3111 34567-245 sign \x3112 34567-15 sign \x3113 34567-1 sign \x3114 34567-12 sign \x3115 34567-24 sign \x3116 34567-1245 sign \x3117 34567-125 sign \x3118 34567-245 sign \x3119 34567-15 sign \x311A 34567-345 sign \x311B 34567-126 sign \x311C 34567-2346 sign \x311D 34567-26 sign \x311E 34567-2456 sign \x311F 34567-356 sign \x3120 34567-146 sign \x3121 34567-12356 sign \x3122 34567-1236 sign \x3123 34567-136 sign \x3124 34567-1346 sign \x3125 34567-1356 sign \x3126 34567-156 sign \x3127 34567-16 sign \x3128 34567-34 sign \x3129 34567-1256 sign \x3192 16-3 sign \x3193 156-5 sign \x3194 15-1236-3 sign \x3195 15-156-5 sign \x3196 24-1346-5 sign \x3197 1-12346-3 sign \x3198 15-23456-5 sign \x3199 13-23456-4 sign \x319A 16-4 sign \x319B 135-13456-4 sign \x319C 145-13456-3 sign \x319D 124-2345-3 sign \x319E 145-16-5 sign \x319F 1245-136-2 sign \x31CF 235678-13456 sign \x322A 236-5 sign \x322B 1235-25-4 sign \x322C 24-1246-4 sign \x322D 134-34-5 sign \x322E 13-1456-3 sign \x322F 124-34-4 sign \x3230 1245-156-5 sign \x3231 235678-4678 sign \x3233 24-2346-5 sign \x3234 134-13456-2 sign \x3235 124-2346-5 sign \x3236 245-2456-2 sign \x3237 1-34-5 sign \x3238 14-146-2 sign \x3239 145-2456-5 sign \x323A 1235-34-3 sign \x323B 15-236-2 sign \x323C 13-2345-3 sign \x323D 245-16-5 sign \x323E 125-156-3 sign \x323F 15-346-2 sign \x3240 13-16-5 sign \x3241 15-234-3 sign \x3242 125-156-5 sign \x3243 1-156-5 sign \x3280 16-3 sign \x3281 156-5 sign \x3282 15-1236-3 sign \x3283 15-156-5 sign \x3284 34-4 sign \x3285 14-234-5 sign \x3286 245-16-3 sign \x3287 135-345-3 sign \x3288 13-234-4 sign \x3289 24-156-2 sign \x328A 236-5 sign \x328B 1235-25-4 sign \x328C 24-1246-4 sign \x328D 134-34-5 sign \x328E 13-1456-3 sign \x328F 124-34-4 sign \x3290 1245-156-5 sign \x3291 1-34-3 sign \x3292 234-4 sign \x3293 24-2346-5 sign \x3294 134-13456-2 sign \x3295 124-2346-5 sign \x3296 245-2456-2 sign \x3297 1-34-5 sign \x3298 14-146-2 sign \x3299 134-16-5 sign \x329A 1345-1236-2 sign \x329B 1345-1256-4 sign \x329C 24-156-5 sign \x329D 234-3 sign \x329E 1456-5 sign \x329F 1-34-5 sign \x32A0 15-46-5 sign \x32A1 15-234-3 sign \x32A2 15-346-4 sign \x32A3 1-1356-5 sign \x32A4 24-1346-5 sign \x32A5 1-12346-3 sign \x32A6 15-23456-5 sign \x32A7 125-25-4 sign \x32A8 234-5 sign \x32A9 16-3 sign \x32AA 125-12346-3 sign \x32AB 15-236-2 sign \x32AC 13-2345-3 sign \x32AD 245-16-5 sign \x32AE 125-156-3 sign \x32AF 15-346-2 sign \x32B0 346-5 sign \x338E 134-1245 sign \x338F 13-1245 sign \x339C 134-134 sign \x339D 14-134 sign \x339E 13-134 sign \x33A1 134-45-23 sign \x33C4 14-14 sign \x33CE 137-1347 sign \x33D1 23467-1234568 sign \x33D2 23467-238 sign \x33D5 134-24-123 sign \x3400 245-234-3 sign \x3401 124-2345-4 sign \x3404 123-35-5 sign \x3405 34-4 sign \x3406 1456-4 sign \x340C 24-156-5 sign \x3416 346-5 sign \x341C 12-12356-2 sign \x3421 1345-25-5 sign \x3424 245-234-2 sign \x3428 15-234-5 sign \x3429 15-13456-2 sign \x342B 15-235-3 sign \x342C 14-234-2 sign \x342D 14-1456-4 sign \x342E 15-46-3 sign \x342F 235-3 sign \x3430 15-1456-5 sign \x3431 1-136-4 sign \x3432 145-2456-5 sign \x3433 34-5 sign \x3434 1234-1236-3 sign \x3437 134-345-5 sign \x3438 245-2345-5 sign \x3439 16-5 sign \x343A 1-12346-5 sign \x343B 136-4 sign \x343C 1-1356-4 sign \x3441 1-25-3 sign \x3442 12345-1346-4 sign \x3443 146-4 sign \x3444 34-4 sign \x3445 125-25-5 sign \x3447 1-12356-5 sign \x3448 145-12346-5 sign \x3449 15-34-5 sign \x344A 16-5 sign \x344B 13-235-5 sign \x344C 123-456-3 sign \x344D 14-356-4 sign \x344E 1345-146-4 sign \x344F 1-34-5 sign \x3454 15-234-4 sign \x3458 13-246-5 sign \x3459 145-346-2 sign \x345A 1345-25-2 sign \x345B 15-34-5 sign \x345C 16-5 sign \x345D 14-12346-5 sign \x345E 13456-5 sign \x345F 135-1356-4 sign \x3463 14-1236-2 sign \x3464 134-246-2 sign \x3465 16-5 sign \x3466 14-16-5 sign \x3467 13-16-5 sign \x3468 234-4 sign \x3469 14-25-2 sign \x346A 12-2456-2 sign \x346E 1235-123456-2 sign \x346F 15-234-4 sign \x3470 1235-1246-5 sign \x3471 1235-146-4 sign \x3473 1-12356-5 sign \x3474 245-1456-3 sign \x3475 1235-1236-5 sign \x3476 15-16-5 sign \x3477 1-456-5 sign \x3478 2456-4 sign \x3479 1235-1246-5 sign \x347A 13-256-5 sign \x347B 134-245-5 sign \x347C 14-346-5 sign \x347D 124-1346-2 sign \x347E 15-246-2 sign \x347F 124-246-2 sign \x3480 1-345-4 sign \x3481 1256-4 sign \x3482 123-34-5 sign \x3483 156-5 sign \x3484 1345-1346-5 sign \x3485 245-16-4 sign \x3486 12-156-5 sign \x3487 134-34-5 sign \x3488 1235-1236-5 sign \x3489 124-1346-4 sign \x348A 15-2346-5 sign \x348C 245-235-2 sign \x348D 14-356-2 sign \x348E 15-345-4 sign \x3491 1235-1246-5 sign \x3492 1234-34-2 sign \x3493 124-345-5 sign \x3494 24-34-4 sign \x3496 12356-4 sign \x3497 124-2456-2 sign \x3499 134-2345-2 sign \x349A 123456-4 sign \x349B 145-246-5 sign \x349C 1256-2 sign \x349D 134-346-5 sign \x349E 13-256-5 sign \x349F 1345-246-4 sign \x34A0 15-346-5 sign \x34A1 234-2 sign \x34A4 24-2346-5 sign \x34A6 14-356-4 sign \x34A7 14-16-5 sign \x34A8 15-2345-3 sign \x34A9 14-25-4 sign \x34AB 13-16-5 sign \x34B0 245-45-2 sign \x34B2 245-2456-2 sign \x34B3 14-46-4 sign \x34B4 13-34-4 sign \x34B5 134-146-5 sign \x34B7 13-35-4 sign \x34B8 15-1246-5 sign \x34BA 456-4 sign \x34BB 134-146-5 sign \x34BC 134-1236-2 sign \x34BE 24-156-5 sign \x34BF 14-16-2 sign \x34C1 456-4 sign \x34C2 123-12356-5 sign \x34C3 12-1246-2 sign \x34C4 1-136-5 sign \x34C8 135-1346-5 sign \x34C9 1235-456-5 sign \x34CA 145-12346-5 sign \x34CB 13-12346-5 sign \x34CE 14-2345-2 sign \x34CF 13-235-4 sign \x34D0 14-34-5 sign \x34D1 15-13456-5 sign \x34D3 1345-1236-2 sign \x34D4 15-346-5 sign \x34D6 135-16-5 sign \x34D7 13-346-2 sign \x34D8 15-34-5 sign \x34DC 234-5 sign \x34DD 15-13456-2 sign \x34DE 245-16-5 sign \x34E0 145-2345-5 sign \x34E1 12345-4 sign \x34E2 14-25-5 sign \x34E3 245-23456-5 sign \x34E4 13-346-2 sign \x34E5 124-1346-3 sign \x34E7 2345-4 sign \x34E8 245-156-5 sign \x34EA 14-1346-4 sign \x34ED 1235-2346-2 sign \x34EF 14-16-2 sign \x34F0 1235-35-5 sign \x34F1 124-12356-2 sign \x34F2 1234-2345-5 sign \x34F4 13-256-5 sign \x34F5 2346-5 sign \x34F6 245-16-5 sign \x34F7 16-5 sign \x34F8 13-236-2 sign \x34F9 1245-1246-5 sign \x34FA 13-2345-5 sign \x34FC 12-156-5 sign \x34FD 12-12346-2 sign \x34FE 12-156-2 sign \x3500 14-236-5 sign \x3502 14-1456-2 sign \x3503 13-236-2 sign \x3504 15-34-5 sign \x3505 15-246-5 sign \x3506 12-1236-2 sign \x3509 1-34-2 sign \x350A 145-1236-4 sign \x350B 13-2345-5 sign \x350C 1-12356-5 sign \x350D 145-25-4 sign \x350E 15-346-5 sign \x350F 14-16-5 sign \x3511 12-156-5 sign \x3512 15-16-2 sign \x3513 13-2345-4 sign \x3515 13-16-2 sign \x3517 12345-356-5 sign \x3518 12-34-5 sign \x3519 135-1346-4 sign \x351A 123-12356-4 sign \x351C 135-345-2 sign \x351D 14-46-4 sign \x351E 123-2356-5 sign \x3520 1235-2346-2 sign \x3522 13-236-2 sign \x3523 14-356-2 sign \x3524 24-136-4 sign \x3525 1234-16-2 sign \x3526 46-4 sign \x3527 15-236-5 sign \x3528 135-356-5 sign \x3529 2346-5 sign \x352A 14-34-4 sign \x352D 12-2346-5 sign \x352E 1345-25-2 sign \x352F 15-12456-4 sign \x3530 1235-1356-2 sign \x3531 1256-4 sign \x3533 13-1246-4 sign \x3534 16-5 sign \x3535 15-2345-5 sign \x3536 13-12346-5 sign \x3537 14-12356-5 sign \x3539 14-2346-5 sign \x353A 24-156-5 sign \x353C 15-12346-4 sign \x353D 246-5 sign \x353E 13-346-2 sign \x353F 125-12356-5 sign \x3541 245-236-5 sign \x3542 1456-2 sign \x3544 1-156-5 sign \x3545 13-23456-4 sign \x3546 1235-34-5 sign \x3547 14-345-2 sign \x3548 1235-12356-5 sign \x3549 123-2346-5 sign \x354B 13-13456-5 sign \x354C 23456-5 sign \x354E 2346-5 sign \x354F 12-34-2 sign \x3550 15-346-4 sign \x3551 12-34-2 sign \x3552 1246-2 sign \x3554 124-13456-3 sign \x3555 1235-12456-5 sign \x3556 15-34-5 sign \x3557 234-5 sign \x355C 24-156-4 sign \x3560 24-456-3 sign \x3565 16-4 sign \x3576 136-4 sign \x3581 14-1456-5 sign \x358A 15-256-2 sign \x3590 1246-4 sign \x3591 15-346-5 sign \x3592 124-16-2 sign \x3593 1235-12346-2 sign \x3594 124-123456-4 sign \x3595 135-126-5 sign \x3596 1345-346-5 sign \x3597 1456-2 sign \x359E 13-25-3 sign \x359F 24-12356-5 sign \x35A0 135-345-5 sign \x35A1 346-5 sign \x35A2 13-16-2 sign \x35A3 124-12356-5 sign \x35A4 1235-1236-2 sign \x35A5 13-235-4 sign \x35A6 145-12346-4 sign \x35A7 123456-4 sign \x35A8 14-34-5 sign \x35A9 15-12356-4 sign \x35AA 13-25-2 sign \x35AB 14-13456-2 sign \x35AD 124-2345-4 sign \x35AE 14-123456-2 sign \x35B6 346-5 sign \x35B7 24-156-2 sign \x35B8 15-236-2 sign \x35B9 12345-136-5 sign \x35BA 12-123456-4 sign \x35BB 1245-12356-2 sign \x35BC 145-25-4 sign \x35BD 125-2346-2 sign \x35BE 2346-5 sign \x35BF 15-346-2 sign \x35C1 2346-5 sign \x35C2 24-1356-4 sign \x35C3 123456-4 sign \x35C4 134-1236-2 sign \x35C5 1235-34-2 sign \x35C6 13-2346-2 sign \x35C7 15-23456-2 sign \x35C8 134-1236-5 sign \x35C9 14-236-5 sign \x35CA 14-356-2 sign \x35CB 1235-12356-2 sign \x35CC 1-156-5 sign \x35D1 135-2456-5 sign \x35D2 2456-5 sign \x35D5 13-12356-5 sign \x35D6 145-1236-5 sign \x35D7 135-2456-4 sign \x35D8 135-126-2 sign \x35D9 1345-345-5 sign \x35DA 14-16-5 sign \x35DB 15-246-5 sign \x35DC 15-234-5 sign \x35E2 145-12346-5 sign \x35E3 124-16-5 sign \x35E4 245-34-5 sign \x35E5 123-25-5 sign \x35E6 14-146-2 sign \x35E7 1-156-5 sign \x35E8 2456-4 sign \x35E9 15-16-3 sign \x35EB 245-346-5 sign \x35F0 12-34-5 sign \x35F1 13-16-2 sign \x35F2 1235-25-5 sign \x35F3 124-345-4 sign \x35F4 2345-2 sign \x35F5 15-1256-5 sign \x35F7 15-2456-4 sign \x35FC 346-5 sign \x35FD 15-46-4 sign \x35FF 15-23456-5 sign \x3600 125-25-5 sign \x3601 16-5 sign \x3602 245-156-2 sign \x3605 15-2345-2 sign \x3606 124-2456-2 sign \x3607 1245-12346-2 sign \x3608 16-3 sign \x3609 13-16-3 sign \x360A 16-5 sign \x360B 15-2345-2 sign \x360C 13-1256-5 sign \x360D 13-16-2 sign \x360E 1235-1236-4 sign \x3610 1234-146-5 sign \x3611 14-16-5 sign \x3613 14-1236-2 sign \x3614 245-1236-4 sign \x3615 1235-1236-4 sign \x3616 2345-2 sign \x3619 2345-2 sign \x361A 1235-1236-4 sign \x361C 12-156-4 sign \x361D 1345-2345-4 sign \x361E 1235-25-5 sign \x3620 135-16-5 sign \x3621 15-23456-2 sign \x3622 12346-4 sign \x3623 15-45-2 sign \x3625 234-2 sign \x3626 245-1456-2 sign \x3627 15-1256-5 sign \x3628 1345-356-5 sign \x3629 135-16-5 sign \x362A 1235-146-5 sign \x362B 13-13456-4 sign \x362C 146-5 sign \x362D 146-3 sign \x3631 124-1236-3 sign \x3632 13-1256-2 sign \x3634 125-25-5 sign \x3635 135-34-5 sign \x3636 13-346-2 sign \x3637 2456-5 sign \x3638 125-1346-5 sign \x3639 245-156-2 sign \x363A 12345-345-2 sign \x363F 1345-346-5 sign \x3640 14-234-5 sign \x3641 134-1346-4 sign \x3642 145-1246-5 sign \x3644 135-16-5 sign \x3645 135-146-4 sign \x3647 12-34-5 sign \x3648 1235-1236-2 sign \x3649 124-2345-4 sign \x364A 12-1346-2 sign \x364F 12345-34-5 sign \x3650 145-25-4 sign \x3651 1256-4 sign \x3652 346-4 sign \x3653 123-1246-2 sign \x3654 1235-1236-2 sign \x3655 123-2356-5 sign \x3657 123-2356-5 sign \x3659 14-12346-4 sign \x365B 135-34-4 sign \x365C 12-156-2 sign \x365D 15-346-2 sign \x365E 1345-346-5 sign \x365F 14-1346-4 sign \x3660 16-5 sign \x3662 134-1236-2 sign \x3663 1-1346-5 sign \x3664 15-23456-5 sign \x3665 13-123456-4 sign \x3668 13-16-5 sign \x3669 14-246-2 sign \x366A 346-5 sign \x366B 13-16-2 sign \x366C 1456-2 sign \x366E 145-345-3 sign \x366F 16-5 sign \x3670 15-346-5 sign \x3671 1235-146-5 sign \x3672 235-4 sign \x3673 1235-1236-4 sign \x3674 12-1236-5 sign \x3675 124-2456-2 sign \x3676 124-1346-2 sign \x3677 1-156-2 sign \x3678 135-146-5 sign \x3679 134-1356-2 sign \x367A 13-1246-5 sign \x367B 12-1236-2 sign \x367C 14-356-4 sign \x367E 15-16-5 sign \x3681 245-246-5 sign \x3682 1245-1346-2 sign \x3683 256-2 sign \x3685 14-12346-2 sign \x3686 12345-34-5 sign \x3689 13-34-4 sign \x368C 1235-35-5 sign \x368D 13-25-2 sign \x368F 13-146-4 sign \x3690 124-146-5 sign \x3692 24-1236-4 sign \x3693 14-2456-2 sign \x3694 1345-346-5 sign \x3695 12345-34-2 sign \x3696 13-146-4 sign \x3697 245-346-2 sign \x3698 135-1236-5 sign \x369B 15-16-5 sign \x369C 15-1256-5 sign \x369D 123-1246-2 sign \x369E 134-1356-4 sign \x369F 12-25-5 sign \x36A1 13-16-4 sign \x36A2 1345-34-2 sign \x36A3 15-246-2 sign \x36A4 16-5 sign \x36A5 1256-2 sign \x36A6 16-2 sign \x36A7 2345-4 sign \x36A9 1245-1236-4 sign \x36AA 1235-146-5 sign \x36AB 24-345-5 sign \x36AD 234-2 sign \x36AF 15-1456-2 sign \x36B0 135-16-4 sign \x36B2 145-2345-4 sign \x36B4 135-34-5 sign \x36B6 15-156-5 sign \x36B7 156-4 sign \x36B9 134-146-4 sign \x36BA 256-5 sign \x36BD 245-246-4 sign \x36BF 1234-146-2 sign \x36C2 1345-25-4 sign \x36C3 13-346-2 sign \x36C5 156-5 sign \x36C6 145-25-4 sign \x36CA 145-25-4 sign \x36CD 245-346-5 sign \x36CF 12356-5 sign \x36D0 15-12356-4 sign \x36D1 245-1236-5 sign \x36D2 145-12356-5 sign \x36D4 1234-1356-2 sign \x36D5 16-5 sign \x36D7 125-25-5 sign \x36D8 1234-126-5 sign \x36D9 245-346-5 sign \x36DA 124-12346-4 sign \x36DB 15-1456-5 sign \x36DC 234-2 sign \x36DD 135-356-5 sign \x36DE 14-12346-5 sign \x36E5 124-345-5 sign \x36E6 14-1236-4 sign \x36E7 134-1236-4 sign \x36E8 245-46-4 sign \x36E9 1-12356-2 sign \x36EA 2345-5 sign \x36EC 14-34-5 sign \x36EE 15-146-4 sign \x36EF 134-2345-4 sign \x36F0 1235-123456-3 sign \x36F1 1245-1246-5 sign \x36F2 12345-345-5 sign \x36F3 12-345-5 sign \x36F4 1345-146-4 sign \x36F6 12-12356-2 sign \x36F8 24-34-5 sign \x36F9 1234-2345-2 sign \x36FB 123-1246-4 sign \x36FC 24-345-5 sign \x36FE 15-2345-2 sign \x36FF 1-156-5 sign \x3703 14-2345-5 sign \x3704 15-256-2 sign \x3705 15-1256-5 sign \x3706 134-16-5 sign \x3707 1235-1246-5 sign \x3708 134-34-5 sign \x370A 1234-1346-5 sign \x370B 16-5 sign \x370C 13-12356-5 sign \x370D 124-1346-2 sign \x370E 245-16-2 sign \x370F 256-2 sign \x3710 24-34-5 sign \x3711 1234-126-2 sign \x3712 16-5 sign \x3713 145-345-2 sign \x3715 14-2345-2 sign \x3716 245-146-2 sign \x3717 245-1236-4 sign \x3718 13-1256-5 sign \x3719 14-34-5 sign \x371A 15-34-5 sign \x371B 1345-136-5 sign \x371C 146-5 sign \x371D 1236-4 sign \x371E 245-2345-5 sign \x3723 1245-1236-2 sign \x3724 24-136-4 sign \x3725 134-2456-2 sign \x3726 1235-1236-5 sign \x3727 236-5 sign \x3728 156-2 sign \x3729 146-5 sign \x372A 15-2345-4 sign \x372B 134-345-5 sign \x372E 14-1236-5 sign \x3730 236-5 sign \x3731 145-12346-5 sign \x3732 12346-4 sign \x3733 1235-2356-2 sign \x3734 134-1356-5 sign \x3735 1345-246-4 sign \x3736 12456-4 sign \x3737 134-16-2 sign \x3738 1345-346-5 sign \x3739 245-1256-2 sign \x373A 125-1236-5 sign \x373B 14-2345-5 sign \x373C 1-156-2 sign \x373D 125-156-4 sign \x373E 1235-2456-2 sign \x373F 15-1256-5 sign \x3740 1235-146-5 sign \x3741 15-256-2 sign \x3742 1-156-5 sign \x3743 12345-1236-5 sign \x3744 12-123456-2 sign \x3745 13-12356-5 sign \x3747 12-123456-2 sign \x3748 14-12456-2 sign \x3749 1-34-5 sign \x374A 24-12356-4 sign \x374B 14-246-2 sign \x374C 13-346-2 sign \x374D 15-346-4 sign \x374E 145-13456-5 sign \x374F 13-346-5 sign \x3750 1245-12346-2 sign \x3751 134-1346-2 sign \x3753 13-2346-2 sign \x3754 246-5 sign \x3755 1345-13456-2 sign \x3756 16-2 sign \x3757 14-1346-2 sign \x3758 235-2 sign \x3759 1456-2 sign \x375B 15-34-5 sign \x375D 14-1456-2 sign \x375E 23456-5 sign \x375F 134-146-2 sign \x3760 134-13456-2 sign \x3761 125-1246-5 sign \x3762 1256-4 sign \x3763 346-5 sign \x3764 13-12356-5 sign \x3765 134-16-4 sign \x3766 13-256-5 sign \x3767 123456-4 sign \x376A 145-2345-5 sign \x376B 14-12346-2 sign \x376D 15-13456-4 sign \x376E 245-1246-5 sign \x376F 245-246-2 sign \x3770 134-2345-2 sign \x3771 134-1356-5 sign \x3772 245-1456-4 sign \x3774 12456-2 sign \x3775 145-2346-2 sign \x3776 2456-5 sign \x3778 135-2345-5 sign \x3779 1345-12356-2 sign \x377A 14-2345-2 sign \x377B 13-1456-4 sign \x377D 12-1246-2 sign \x377E 125-25-4 sign \x377F 135-126-4 sign \x3781 246-5 sign \x3782 124-1246-4 sign \x3783 13-16-2 sign \x3785 13-25-4 sign \x3786 13-16-4 sign \x3787 1246-4 sign \x378A 15-1256-5 sign \x378B 1345-2345-4 sign \x378C 256-5 sign \x378E 135-345-4 sign \x378F 1-2346-2 sign \x3790 13-1256-3 sign \x3791 1246-4 sign \x3792 15-16-5 sign \x3793 245-16-4 sign \x3794 16-2 sign \x3795 15-346-5 sign \x3796 245-156-5 sign \x3797 245-234-2 sign \x3798 124-123456-2 sign \x3799 1345-246-5 sign \x379A 245-16-5 sign \x379B 13-16-4 sign \x379F 145-2345-5 sign \x37A0 14-146-2 sign \x37A1 1-1236-4 sign \x37A2 1-156-3 sign \x37A4 1456-2 sign \x37A5 245-136-2 sign \x37A6 13-16-4 sign \x37A7 1235-1246-5 sign \x37A8 125-2456-4 sign \x37A9 14-1236-2 sign \x37AA 1345-146-2 sign \x37AB 13-1256-5 sign \x37AC 245-1456-5 sign \x37AD 145-2456-5 sign \x37AF 13-346-2 sign \x37B0 15-1256-4 sign \x37B2 235-5 sign \x37B3 145-12356-4 sign \x37B4 12-156-2 sign \x37B6 134-1456-4 sign \x37B7 1235-456-2 sign \x37B8 15-1246-5 sign \x37B9 123-2346-4 sign \x37BA 125-34-2 sign \x37BB 1235-146-5 sign \x37BC 12-1356-2 sign \x37BD 15-236-5 sign \x37BE 1345-16-2 sign \x37BF 12-156-5 sign \x37C0 14-2345-2 sign \x37C1 1236-5 sign \x37C2 12-156-4 sign \x37C4 15-46-2 sign \x37C5 46-2 sign \x37C6 1235-35-2 sign \x37C7 245-25-2 sign \x37C8 245-234-2 sign \x37C9 14-146-2 sign \x37CA 12345-34-2 sign \x37CB 145-1246-5 sign \x37CC 134-1346-2 sign \x37CD 14-1346-2 sign \x37CE 124-25-4 sign \x37CF 1235-1236-2 sign \x37D0 134-1346-4 sign \x37D1 135-126-2 sign \x37D3 245-16-2 sign \x37D4 1235-1236-2 sign \x37D6 14-12346-5 sign \x37D8 124-246-2 sign \x37D9 14-146-4 sign \x37DA 245-16-2 sign \x37DB 125-1236-5 sign \x37DC 134-16-2 sign \x37DD 1234-356-2 sign \x37DE 1-1236-5 sign \x37DF 15-46-5 sign \x37E0 13-1346-4 sign \x37E2 245-16-2 sign \x37E4 14-34-5 sign \x37E6 256-5 sign \x37E7 2346-5 sign \x37E8 245-45-2 sign \x37E9 134-1456-2 sign \x37EA 1246-4 sign \x37EB 245-45-2 sign \x37EC 24-34-4 sign \x37ED 134-1456-2 sign \x37F0 134-13456-4 sign \x37F1 246-4 sign \x37F2 13-236-2 sign \x37F3 14-16-5 sign \x37F4 123-2356-5 sign \x37F5 13-1346-4 sign \x37F6 45-2 sign \x37F7 145-345-1 sign \x37F9 14-146-2 sign \x37FA 14-12356-2 sign \x37FB 245-2345-5 sign \x37FC 146-2 sign \x37FD 135-246-4 sign \x37FF 134-1346-2 sign \x3800 145-146-4 sign \x3802 146-2 sign \x3804 15-16-2 sign \x3805 12345-34-2 sign \x3807 13-234-5 sign \x3808 1245-123456-5 sign \x3809 124-12346-2 sign \x380A 245-1256-3 sign \x380B 2346-5 sign \x380D 13-16-2 sign \x380E 13-16-2 sign \x380F 1235-35-2 sign \x3810 13-246-5 sign \x3811 125-1246-5 sign \x3812 135-246-4 sign \x3813 134-1356-2 sign \x3814 135-2456-5 sign \x3815 1246-4 sign \x3816 13-16-5 sign \x3817 146-5 sign \x3818 1256-4 sign \x3819 1235-146-2 sign \x381A 145-1246-5 sign \x381B 25-5 sign \x381C 1345-16-5 sign \x381D 245-12456-2 sign \x381F 14-16-2 sign \x3820 14-34-2 sign \x3821 1345-246-4 sign \x3822 1235-35-5 sign \x3823 14-2456-5 sign \x3825 14-1256-5 sign \x3827 134-16-2 sign \x3828 1256-5 sign \x382A 13-1256-5 sign \x382D 1-1236-4 sign \x382F 16-4 sign \x3831 13-16-5 sign \x3832 135-16-4 sign \x3834 1245-136-5 sign \x3836 12345-1236-2 sign \x3837 12345-1236-2 sign \x3838 123-34-5 sign \x3839 13-346-5 sign \x383A 134-246-2 sign \x383D 124-12346-2 sign \x383F 245-156-4 sign \x3840 135-16-5 sign \x3841 123-2456-4 sign \x3842 14-16-5 sign \x3844 15-123456-4 sign \x3845 1345-25-4 sign \x3847 13-16-2 sign \x3848 134-136-2 sign \x3849 15-2345-2 sign \x384A 245-23456-5 sign \x384B 2346-5 sign \x384C 134-146-5 sign \x384F 124-12356-2 sign \x3851 245-246-4 sign \x3854 34-5 sign \x3856 12-456-2 sign \x3857 124-16-2 sign \x3858 14-2345-2 sign \x3859 135-16-5 sign \x385B 134-1346-2 sign \x385C 15-236-4 sign \x385D 12345-1356-5 sign \x385E 14-356-4 sign \x3860 1-1356-5 sign \x3861 12-34-2 sign \x3862 134-1236-5 sign \x3863 14-12346-2 sign \x3865 1456-4 sign \x3867 1-1356-5 sign \x3868 245-2345-3 sign \x3869 14-12456-2 sign \x386A 1345-346-2 sign \x386B 16-5 sign \x386D 13-16-5 sign \x386E 13-16-2 sign \x386F 1-2456-2 sign \x3870 1256-4 sign \x3871 13-234-4 sign \x3872 1235-12456-2 sign \x3873 145-16-4 sign \x3875 14-13456-2 sign \x3876 13-16-5 sign \x3877 135-136-4 sign \x3878 1-345-4 sign \x3879 245-156-5 sign \x387A 145-1236-5 sign \x387B 14-246-5 sign \x387C 16-5 sign \x387D 1-146-5 sign \x387E 15-2345-5 sign \x387F 12-156-5 sign \x3880 245-156-5 sign \x3881 12-156-4 sign \x3882 2345-4 sign \x3883 14-1346-2 sign \x3884 145-12356-5 sign \x3885 14-12346-5 sign \x3886 12-1236-2 sign \x3888 124-1246-2 sign \x3889 12-345-2 sign \x388A 2456-4 sign \x388B 12-156-4 sign \x388D 13456-2 sign \x388E 12-345-5 sign \x388F 124-12356-2 sign \x3891 124-1246-2 sign \x3892 12-345-2 sign \x3893 1-1346-5 sign \x3894 125-12346-4 sign \x3897 245-246-5 sign \x3898 14-2345-2 sign \x3899 245-1456-2 sign \x389A 14-34-4 sign \x389B 2345-5 sign \x389E 16-5 sign \x389F 12-1236-4 sign \x38A0 13-235-4 sign \x38A1 13-46-4 sign \x38A3 13-13456-5 sign \x38A5 145-12346-5 sign \x38A7 13-45-5 sign \x38A8 1235-1236-5 sign \x38A9 145-16-5 sign \x38AC 1235-12346-2 sign \x38AE 12-156-2 sign \x38AF 134-1456-2 sign \x38B0 135-16-5 sign \x38B2 15-256-5 sign \x38B3 14-34-2 sign \x38B5 24-2346-5 sign \x38B6 135-16-5 sign \x38B8 135-16-5 sign \x38BA 15-2345-2 sign \x38BB 1246-4 sign \x38BC 135-346-5 sign \x38BD 156-4 sign \x38BE 13-45-5 sign \x38C0 1-136-5 sign \x38C1 135-356-5 sign \x38C2 16-5 sign \x38C3 1256-4 sign \x38C4 245-1256-2 sign \x38C5 125-1236-5 sign \x38C6 134-16-2 sign \x38C7 1345-16-4 sign \x38C8 15-156-5 sign \x38CC 24-1236-5 sign \x38CD 124-2456-2 sign \x38CE 134-34-5 sign \x38CF 13-13456-5 sign \x38D0 135-2345-5 sign \x38D1 1245-12346-2 sign \x38D2 245-1356-5 sign \x38D3 245-1236-5 sign \x38D9 145-16-2 sign \x38DA 124-12346-2 sign \x38DB 124-345-5 sign \x38DC 15-13456-2 sign \x38DE 145-25-2 sign \x38DF 15-16-5 sign \x38E0 124-12346-2 sign \x38E2 124-16-2 sign \x38E3 24-1236-4 sign \x38E4 13-2345-5 sign \x38E5 1-156-5 sign \x38E7 1456-5 sign \x38EA 1235-12456-4 sign \x38EB 1-12346-4 sign \x38EC 245-16-5 sign \x38EF 15-346-5 sign \x38F0 15-346-5 sign \x38F1 125-2346-2 sign \x38F2 1246-2 sign \x38F5 124-345-5 sign \x38F6 1-1236-3 sign \x38F7 1345-13456-5 sign \x38FB 16-5 sign \x38FC 1245-136-4 sign \x38FD 24-34-5 sign \x38FE 12-345-5 sign \x38FF 1-25-2 sign \x3901 134-2345-4 sign \x3902 13-16-2 sign \x3903 12345-1346-2 sign \x3904 1234-356-5 sign \x3905 2456-5 sign \x3906 12345-1236-5 sign \x3907 146-4 sign \x3908 245-1456-5 sign \x3909 245-23456-5 sign \x390A 15-246-5 sign \x390D 245-246-4 sign \x390F 124-12346-2 sign \x3911 234-5 sign \x3913 135-136-5 sign \x3914 12345-34-2 sign \x3915 12-34-5 sign \x3916 1345-25-5 sign \x3918 12-34-5 sign \x3919 136-3 sign \x391A 1235-1346-2 sign \x391B 1345-1456-2 sign \x391C 13-236-2 sign \x391E 12-345-5 sign \x391F 123-12346-4 sign \x3920 14-346-5 sign \x3921 14-16-5 sign \x3922 15-1256-5 sign \x3924 1256-2 sign \x3925 1235-2456-5 sign \x3926 14-16-5 sign \x3927 1235-12356-2 sign \x3928 13-12346-4 sign \x3929 123-2346-5 sign \x392A 45-5 sign \x392B 145-2346-2 sign \x392C 1235-1246-5 sign \x392D 13-246-3 sign \x392E 123-456-2 sign \x392F 13-235-4 sign \x3930 125-1236-4 sign \x3931 12345-34-5 sign \x3932 245-346-5 sign \x3933 135-356-4 sign \x3934 15-16-2 sign \x3935 245-156-2 sign \x3936 1234-1346-2 sign \x3938 15-16-5 sign \x3939 245-234-2 sign \x393A 1235-456-4 sign \x393D 12-12356-2 sign \x393E 15-1236-5 sign \x3940 145-2346-2 sign \x3941 145-2346-2 sign \x3942 124-2346-5 sign \x3943 134-136-5 sign \x3944 14-13456-2 sign \x3945 24-12356-5 sign \x3946 145-2345-5 sign \x3947 245-1236-2 sign \x3948 145-346-2 sign \x3949 12-2346-5 sign \x394A 1234-1356-2 sign \x394C 13-1256-2 sign \x394D 13-16-5 sign \x394E 14-2456-2 sign \x394F 124-2345-4 sign \x3950 45-5 sign \x3952 245-2456-4 sign \x3953 245-16-4 sign \x3954 1256-2 sign \x3955 14-2345-2 sign \x395A 1256-2 sign \x395B 13-16-2 sign \x395C 1246-5 sign \x395D 134-16-4 sign \x395E 245-1246-5 sign \x395F 15-346-2 sign \x3960 15-1256-4 sign \x3961 15-16-5 sign \x3962 245-234-2 sign \x3963 1235-1246-5 sign \x3965 1256-2 sign \x3966 245-346-5 sign \x3967 24-123456-5 sign \x3968 12-1246-2 sign \x3969 145-25-4 sign \x396A 14-12356-2 sign \x396B 1-123456-3 sign \x396C 1234-1346-2 sign \x396D 124-2456-5 sign \x396E 1-12356-5 sign \x396F 1456-4 sign \x3971 12345-356-4 sign \x3972 24-136-5 sign \x3973 45-2 sign \x3974 16-2 sign \x3975 1235-123456-5 sign \x3976 15-2346-5 sign \x3977 346-5 sign \x3978 134-1456-4 sign \x3979 12345-136-4 sign \x397A 1235-2346-2 sign \x397C 1456-4 sign \x397D 245-2346-5 sign \x397E 1345-16-5 sign \x397F 146-5 sign \x3980 12345-1356-2 sign \x3981 14-2345-2 sign \x3982 12-1346-2 sign \x3983 12-1236-4 sign \x3984 134-345-2 sign \x3985 145-16-5 sign \x3987 14-34-5 sign \x3989 16-5 sign \x398A 1235-35-2 sign \x398C 124-1246-5 sign \x398D 2346-5 sign \x398E 1235-35-5 sign \x398F 15-123456-4 sign \x3990 1345-16-5 sign \x3991 14-2345-4 sign \x3992 14-16-2 sign \x3993 15-2345-5 sign \x3994 2345-5 sign \x3995 14-12346-2 sign \x3996 134-136-5 sign \x3997 13-2345-5 sign \x399A 135-2345-4 sign \x399B 1256-2 sign \x399C 1235-25-5 sign \x399D 134-246-4 sign \x399E 12-12356-2 sign \x399F 1235-2456-5 sign \x39A1 14-2346-5 sign \x39A2 13-346-2 sign \x39A3 1246-5 sign \x39A4 16-5 sign \x39A5 1235-12456-2 sign \x39A6 1235-2346-5 sign \x39A7 245-1236-4 sign \x39A8 14-1236-2 sign \x39A9 1456-4 sign \x39AA 15-346-5 sign \x39AC 14-25-4 sign \x39AD 14-13456-2 sign \x39AE 245-2345-2 sign \x39AF 1235-25-5 sign \x39B1 25-4 sign \x39B4 13-2346-2 sign \x39B6 145-346-2 sign \x39B7 235-4 sign \x39B8 13-16-4 sign \x39B9 1346-5 sign \x39BA 1245-34-4 sign \x39BB 15-16-2 sign \x39BC 24-456-5 sign \x39BD 15-1256-5 sign \x39BE 16-2 sign \x39BF 1235-34-5 sign \x39C0 13-16-2 sign \x39C1 245-1256-5 sign \x39C2 124-2345-2 sign \x39C4 245-2345-4 sign \x39C5 134-34-5 sign \x39C7 134-146-4 sign \x39C8 1456-4 sign \x39C9 13-2456-5 sign \x39CA 135-345-2 sign \x39CB 15-2345-4 sign \x39CC 134-146-5 sign \x39CD 12345-1346-4 sign \x39CE 23456-2 sign \x39D0 15-12346-4 sign \x39D1 1235-1246-3 sign \x39D2 15-236-2 sign \x39D4 13-2356-5 sign \x39D5 13-234-5 sign \x39D6 2346-5 sign \x39D7 125-156-4 sign \x39D8 245-1246-5 sign \x39D9 135-16-5 sign \x39DA 35-4 sign \x39DB 14-1236-4 sign \x39DC 14-346-5 sign \x39DF 123-2356-4 sign \x39E1 1235-2456-5 sign \x39E3 1-34-5 sign \x39E4 12-12346-5 sign \x39E5 15-2345-4 sign \x39E6 15-45-5 sign \x39E8 245-234-2 sign \x39E9 1234-356-5 sign \x39EA 13-1246-4 sign \x39EB 156-2 sign \x39EC 13-12346-4 sign \x39ED 245-235-2 sign \x39EF 14-146-4 sign \x39F0 14-16-5 sign \x39F1 1345-345-2 sign \x39F2 15-1236-4 sign \x39F3 135-126-2 sign \x39F4 25-4 sign \x39F5 1234-12356-2 sign \x39F7 145-25-5 sign \x39F9 124-2346-5 sign \x39FA 124-345-5 sign \x39FB 1-156-4 sign \x39FC 135-246-5 sign \x39FD 13-34-5 sign \x3A00 135-13456-4 sign \x3A01 1-156-2 sign \x3A02 145-12346-4 sign \x3A03 12-1356-2 sign \x3A04 1-146-5 sign \x3A05 1345-356-5 sign \x3A06 14-1456-4 sign \x3A07 1234-126-2 sign \x3A08 13-16-4 sign \x3A09 134-1456-4 sign \x3A0A 1246-4 sign \x3A0B 12-2346-4 sign \x3A0C 13-12356-5 sign \x3A0E 1245-34-2 sign \x3A10 135-34-4 sign \x3A12 123-1246-2 sign \x3A13 14-146-2 sign \x3A14 1235-1236-5 sign \x3A15 13456-2 sign \x3A16 1-156-5 sign \x3A17 13-346-2 sign \x3A18 15-13456-4 sign \x3A19 15-346-2 sign \x3A1A 15-256-2 sign \x3A1B 24-1236-4 sign \x3A1C 245-2345-2 sign \x3A1D 15-346-5 sign \x3A1E 15-34-5 sign \x3A1F 1235-2456-2 sign \x3A20 134-16-5 sign \x3A21 1235-123456-2 sign \x3A24 1235-1246-5 sign \x3A25 1345-345-5 sign \x3A26 15-12346-4 sign \x3A27 135-136-5 sign \x3A28 14-234-5 sign \x3A29 13-346-2 sign \x3A2A 1235-456-5 sign \x3A2B 14-1236-4 sign \x3A2D 1235-34-5 sign \x3A2E 145-12356-3 sign \x3A2F 1235-25-5 sign \x3A30 13-2346-2 sign \x3A31 246-2 sign \x3A32 245-2346-5 sign \x3A33 13-1246-4 sign \x3A34 13-2345-5 sign \x3A35 13-2345-4 sign \x3A36 12-12356-2 sign \x3A37 13-1456-5 sign \x3A38 134-345-5 sign \x3A39 1235-1246-5 sign \x3A3A 134-136-2 sign \x3A3B 245-1236-2 sign \x3A3C 14-236-5 sign \x3A3D 135-16-3 sign \x3A3E 46-5 sign \x3A3F 13-1256-5 sign \x3A40 13-1256-5 sign \x3A41 245-236-5 sign \x3A44 24-2456-3 sign \x3A46 13-234-5 sign \x3A47 1235-35-5 sign \x3A48 15-2345-5 sign \x3A49 15-346-2 sign \x3A4B 15-34-5 sign \x3A4C 12345-356-5 sign \x3A4D 245-2346-5 sign \x3A4E 346-5 sign \x3A50 145-123456-5 sign \x3A52 245-1456-2 sign \x3A53 1235-1246-4 sign \x3A54 124-123456-2 sign \x3A56 245-46-2 sign \x3A57 15-16-2 sign \x3A58 16-4 sign \x3A5A 134-1356-2 sign \x3A5B 124-12456-2 sign \x3A5C 14-1236-4 sign \x3A5D 1235-146-2 sign \x3A5E 245-156-5 sign \x3A5F 1-2456-5 sign \x3A60 1234-246-4 sign \x3A61 14-25-4 sign \x3A62 134-16-2 sign \x3A63 1235-1246-3 sign \x3A66 15-346-2 sign \x3A67 135-126-2 sign \x3A68 1235-1246-5 sign \x3A69 245-16-4 sign \x3A6A 13-346-2 sign \x3A6D 135-126-2 sign \x3A6E 245-2345-2 sign \x3A6F 135-1236-4 sign \x3A70 13-246-4 sign \x3A71 13-236-2 sign \x3A72 123-123456-4 sign \x3A73 15-12346-4 sign \x3A74 13-1256-2 sign \x3A75 2346-5 sign \x3A76 1345-346-5 sign \x3A78 145-346-2 sign \x3A79 145-346-2 sign \x3A7B 13-1246-4 sign \x3A7D 245-16-2 sign \x3A7E 12-1246-2 sign \x3A80 1256-2 sign \x3A81 245-1456-2 sign \x3A83 123-2346-4 sign \x3A84 12345-34-2 sign \x3A86 145-16-4 sign \x3A87 15-2345-5 sign \x3A88 13-1246-5 sign \x3A89 1235-2346-2 sign \x3A8A 245-256-2 sign \x3A8B 1235-1236-5 sign \x3A8C 124-12346-4 sign \x3A8D 135-126-2 sign \x3A8E 24-1236-4 sign \x3A8F 135-16-4 sign \x3A90 14-34-5 sign \x3A91 346-5 sign \x3A92 1345-16-2 sign \x3A93 12-2356-2 sign \x3A94 15-1236-5 sign \x3A95 145-246-5 sign \x3A96 14-34-5 sign \x3A97 124-12356-4 sign \x3A98 14-2345-4 sign \x3A99 123-2346-4 sign \x3A9A 15-1236-5 sign \x3A9B 1-136-4 sign \x3A9C 12-2356-4 sign \x3A9D 14-2345-5 sign \x3A9E 134-146-5 sign \x3A9F 145-123456-3 sign \x3AA0 245-2345-5 sign \x3AA1 123-2346-4 sign \x3AA2 24-146-4 sign \x3AA3 245-246-5 sign \x3AA4 135-16-5 sign \x3AA6 1456-5 sign \x3AA8 24-1236-5 sign \x3AA9 15-34-5 sign \x3AAA 15-345-5 sign \x3AAB 1245-1246-5 sign \x3AAC 1-25-2 sign \x3AAD 14-34-2 sign \x3AAE 14-13456-2 sign \x3AAF 12-345-2 sign \x3AB1 1235-12456-5 sign \x3AB4 13-23456-2 sign \x3AB5 135-1236-5 sign \x3AB6 1235-34-2 sign \x3AB7 145-12356-4 sign \x3AB9 14-12356-4 sign \x3ABB 13-45-5 sign \x3ABC 123-2346-4 sign \x3ABD 15-25-4 sign \x3ABE 13-2346-2 sign \x3ABF 1-2346-2 sign \x3AC0 145-13456-4 sign \x3AC1 145-12456-5 sign \x3AC2 1-34-5 sign \x3AC3 2345-4 sign \x3AC4 1234-1346-2 sign \x3AC5 12-345-2 sign \x3ACA 16-4 sign \x3ACD 234-2 sign \x3ACE 13-123456-4 sign \x3ACF 246-4 sign \x3AD0 246-4 sign \x3AD1 24-156-2 sign \x3AD2 13-12346-4 sign \x3AD3 245-16-4 sign \x3AD4 13-136-5 sign \x3AD7 1235-12356-5 sign \x3AD8 134-16-5 sign \x3AD9 12345-34-2 sign \x3ADA 1235-34-3 sign \x3ADB 13-456-5 sign \x3ADC 145-1236-5 sign \x3ADF 2345-2 sign \x3AE2 245-1256-5 sign \x3AE4 12-1346-4 sign \x3AE5 134-13456-4 sign \x3AE7 135-146-5 sign \x3AEB 15-2345-4 sign \x3AEF 134-146-5 sign \x3AF0 14-1346-4 sign \x3AF1 1345-1236-4 sign \x3AF2 1234-356-5 sign \x3AF3 12-136-2 sign \x3AF4 15-246-5 sign \x3AF6 245-12356-4 sign \x3AF8 245-346-5 sign \x3AF9 145-2456-5 sign \x3AFB 123-123456-5 sign \x3AFC 145-346-2 sign \x3AFD 14-34-5 sign \x3B02 1256-2 sign \x3B03 124-2456-2 sign \x3B04 12-1236-5 sign \x3B05 134-1236-5 sign \x3B06 134-2345-2 sign \x3B07 1235-12456-5 sign \x3B09 1345-12456-4 sign \x3B0A 1235-12456-4 sign \x3B0B 1235-12356-2 sign \x3B0C 13-13456-5 sign \x3B0D 135-126-2 sign \x3B0E 15-2345-4 sign \x3B0F 14-16-5 sign \x3B10 13-1456-4 sign \x3B12 134-1346-4 sign \x3B13 1234-246-5 sign \x3B14 1235-146-2 sign \x3B15 46-2 sign \x3B17 15-2345-5 sign \x3B18 15-34-5 sign \x3B19 1246-4 sign \x3B1A 12-2346-5 sign \x3B1C 13-1456-5 sign \x3B1D 245-1356-2 sign \x3B1E 1235-2346-5 sign \x3B20 24-2456-5 sign \x3B21 14-13456-2 sign \x3B23 145-1246-5 sign \x3B25 1234-34-5 sign \x3B26 236-5 sign \x3B27 135-126-2 sign \x3B29 1235-1246-5 sign \x3B2A 145-346-2 sign \x3B2B 2345-5 sign \x3B2C 13-1256-5 sign \x3B2D 13-246-5 sign \x3B2E 123-2356-5 sign \x3B2F 14-346-5 sign \x3B30 1256-2 sign \x3B31 124-16-5 sign \x3B33 34-4 sign \x3B34 1235-12346-4 sign \x3B35 15-246-2 sign \x3B36 1235-146-5 sign \x3B3B 1235-456-4 sign \x3B3C 12345-34-5 sign \x3B3F 145-123456-5 sign \x3B41 1245-1356-2 sign \x3B42 13-246-4 sign \x3B44 15-1456-5 sign \x3B47 45-5 sign \x3B48 13-236-2 sign \x3B49 1235-35-2 sign \x3B4A 15-16-3 sign \x3B4B 135-1346-5 sign \x3B4C 134-12356-2 sign \x3B4F 1246-4 sign \x3B51 134-356-5 sign \x3B52 15-156-5 sign \x3B53 135-2345-5 sign \x3B54 14-34-2 sign \x3B58 1235-2346-2 sign \x3B59 24-2346-2 sign \x3B5A 14-1256-4 sign \x3B5B 1234-2456-5 sign \x3B5C 1245-12346-2 sign \x3B5D 245-234-2 sign \x3B5E 14-346-5 sign \x3B5F 13-12346-4 sign \x3B60 15-2345-4 sign \x3B61 15-16-5 sign \x3B64 1345-246-4 sign \x3B68 346-2 sign \x3B69 14-356-5 sign \x3B6B 245-12456-2 sign \x3B6C 1-25-2 sign \x3B6D 12345-356-5 sign \x3B6E 125-25-5 sign \x3B6F 145-346-2 sign \x3B70 13-16-5 sign \x3B71 1235-2346-2 sign \x3B72 13-16-2 sign \x3B78 124-34-2 sign \x3B79 15-2345-2 sign \x3B7A 2345-4 sign \x3B7B 124-1346-2 sign \x3B7C 124-345-5 sign \x3B7D 145-16-4 sign \x3B7E 13-236-2 sign \x3B7F 1346-2 sign \x3B80 1235-1236-2 sign \x3B81 246-2 sign \x3B82 13-1256-2 sign \x3B83 1245-1246-2 sign \x3B84 135-1346-4 sign \x3B86 1345-346-5 sign \x3B87 124-2345-5 sign \x3B88 1345-2456-5 sign \x3B8B 234-4 sign \x3B8C 134-2345-2 sign \x3B8F 1345-2456-5 sign \x3B90 15-13456-4 sign \x3B91 245-16-5 sign \x3B93 13-136-5 sign \x3B94 124-12346-2 sign \x3B95 156-2 sign \x3B96 13-23456-2 sign \x3B97 245-1456-2 sign \x3B98 134-146-5 sign \x3B99 2346-5 sign \x3B9A 14-16-5 sign \x3B9B 12-156-2 sign \x3B9D 1235-2346-2 sign \x3B9E 13-346-2 sign \x3B9F 13-16-2 sign \x3BA1 13-12456-5 sign \x3BA2 1235-12356-2 sign \x3BA3 13-2456-5 sign \x3BA5 12345-136-5 sign \x3BA6 15-2346-5 sign \x3BA8 13-16-2 sign \x3BAA 245-235-2 sign \x3BAB 1235-2346-2 sign \x3BAD 15-2345-2 sign \x3BAE 13-346-2 sign \x3BAF 1235-35-2 sign \x3BB0 135-16-2 sign \x3BB3 1-136-5 sign \x3BB5 1-1236-3 sign \x3BB6 24-156-5 sign \x3BB8 15-12346-5 sign \x3BB9 1-156-4 sign \x3BBA 135-136-4 sign \x3BBE 14-1346-4 sign \x3BBF 135-16-5 sign \x3BC0 15-2345-4 sign \x3BC1 135-1346-5 sign \x3BC2 145-2456-5 sign \x3BC5 1234-16-2 sign \x3BC6 12-1236-4 sign \x3BC7 135-16-5 sign \x3BC8 15-34-5 sign \x3BC9 1235-25-5 sign \x3BCA 1235-136-2 sign \x3BCB 13456-4 sign \x3BCC 12-12456-2 sign \x3BCD 13-46-4 sign \x3BCE 1345-136-5 sign \x3BCF 13-34-4 sign \x3BD0 124-25-4 sign \x3BD3 124-345-5 sign \x3BD4 245-1246-5 sign \x3BD6 145-2346-2 sign \x3BD7 1245-1236-4 sign \x3BD8 123-12456-4 sign \x3BD9 12-2346-5 sign \x3BDA 145-345-2 sign \x3BDB 1235-34-2 sign \x3BDC 245-1246-5 sign \x3BDD 14-34-5 sign \x3BDE 13-45-5 sign \x3BDF 14-34-5 sign \x3BE0 245-2345-5 sign \x3BE1 1234-146-5 sign \x3BE2 1-136-5 sign \x3BE4 14-16-5 sign \x3BE5 245-146-2 sign \x3BE6 245-16-2 sign \x3BE9 124-16-5 sign \x3BEA 14-13456-2 sign \x3BEB 245-1256-2 sign \x3BEC 14-2345-4 sign \x3BED 14-34-4 sign \x3BEE 24-34-4 sign \x3BEF 13-12346-5 sign \x3BF0 1-2346-2 sign \x3BF1 135-246-4 sign \x3BF2 13-1456-5 sign \x3BF3 245-13456-2 sign \x3BF6 125-12346-3 sign \x3BF7 1234-34-2 sign \x3BF8 13-1456-4 sign \x3BF9 135-246-4 sign \x3BFA 13-2345-5 sign \x3BFB 13-123456-4 sign \x3BFF 14-346-5 sign \x3C00 14-16-2 sign \x3C01 14-25-4 sign \x3C02 24-136-4 sign \x3C03 134-2345-2 sign \x3C04 13-2345-5 sign \x3C05 145-16-2 sign \x3C06 135-356-5 sign \x3C08 14-2345-4 sign \x3C0A 15-256-2 sign \x3C0B 1234-1456-2 sign \x3C0C 245-236-5 sign \x3C0D 14-12346-2 sign \x3C0E 125-1246-5 sign \x3C10 13-236-2 sign \x3C12 24-2346-2 sign \x3C14 15-346-5 sign \x3C16 14-1236-4 sign \x3C17 245-34-5 sign \x3C18 16-2 sign \x3C19 1345-25-2 sign \x3C1A 14-16-2 sign \x3C1B 236-5 sign \x3C1D 16-4 sign \x3C1F 13-16-5 sign \x3C20 123-1346-5 sign \x3C21 15-346-5 sign \x3C23 125-156-5 sign \x3C24 123-2346-4 sign \x3C25 1235-1246-5 sign \x3C26 245-1256-5 sign \x3C2A 35-2 sign \x3C2C 15-256-2 sign \x3C2E 24-136-5 sign \x3C2F 123-12356-5 sign \x3C30 245-346-5 sign \x3C31 24-345-5 sign \x3C32 15-1256-5 sign \x3C33 23456-5 sign \x3C34 1234-126-2 sign \x3C35 125-34-2 sign \x3C36 234-4 sign \x3C37 125-156-5 sign \x3C38 14-2345-4 sign \x3C39 13-1456-5 sign \x3C3A 15-23456-2 sign \x3C3B 16-4 sign \x3C3C 245-346-5 sign \x3C3D 134-16-4 sign \x3C3E 13-246-5 sign \x3C40 12-156-4 sign \x3C41 24-156-5 sign \x3C43 1456-4 sign \x3C44 134-126-5 sign \x3C45 16-5 sign \x3C47 15-2346-5 sign \x3C48 13-1456-5 sign \x3C49 346-5 sign \x3C4B 245-236-5 sign \x3C4C 12-2346-5 sign \x3C4D 14-12456-2 sign \x3C4F 1-1356-5 sign \x3C55 13-1246-3 sign \x3C56 245-1246-5 sign \x3C58 1236-5 sign \x3C59 15-234-4 sign \x3C5A 245-1236-2 sign \x3C5B 12-12456-4 sign \x3C5C 1-345-2 sign \x3C5E 13-16-2 sign \x3C5F 135-126-2 sign \x3C62 14-1346-2 sign \x3C63 124-1246-4 sign \x3C65 14-13456-2 sign \x3C66 2346-5 sign \x3C67 25-5 sign \x3C68 14-2345-5 sign \x3C69 145-34-2 sign \x3C6A 134-136-5 sign \x3C6B 14-1236-5 sign \x3C6C 1246-4 sign \x3C6D 145-12456-5 sign \x3C6E 123-2356-5 sign \x3C6F 2456-2 sign \x3C70 125-2456-4 sign \x3C71 1235-1246-5 sign \x3C72 16-5 sign \x3C73 134-126-5 sign \x3C74 125-156-5 sign \x3C75 135-136-5 sign \x3C76 135-1356-5 sign \x3C78 135-16-5 sign \x3C79 14-16-5 sign \x3C7A 14-34-2 sign \x3C7B 14-25-4 sign \x3C7D 145-1236-5 sign \x3C7F 245-236-5 sign \x3C80 12-136-2 sign \x3C82 12-1356-2 sign \x3C83 13-234-5 sign \x3C84 123-12356-5 sign \x3C85 13-16-5 sign \x3C86 14-13456-2 sign \x3C88 24-146-2 sign \x3C89 123-2456-4 sign \x3C8A 1245-1246-5 sign \x3C8B 12-25-5 sign \x3C8C 1345-1356-5 sign \x3C8E 14-12356-2 sign \x3C8F 135-146-4 sign \x3C92 135-146-5 sign \x3C93 1245-12346-2 sign \x3C95 14-356-5 sign \x3C98 245-1256-2 sign \x3C9B 1-156-4 sign \x3C9C 124-1236-2 sign \x3C9D 1245-12346-4 sign \x3C9E 125-34-2 sign \x3C9F 13456-4 sign \x3CA0 134-146-2 sign \x3CA1 1345-2456-5 sign \x3CA2 135-2345-5 sign \x3CA5 124-1346-2 sign \x3CA6 1235-1236-5 sign \x3CA7 125-146-5 sign \x3CA8 1245-12346-2 sign \x3CAB 1234-34-2 sign \x3CAD 124-1236-4 sign \x3CAF 1245-1236-2 sign \x3CB0 1345-13456-2 sign \x3CB1 14-346-5 sign \x3CB2 145-346-2 sign \x3CB3 145-346-2 sign \x3CB4 1-12346-5 sign \x3CB6 14-1256-5 sign \x3CB7 145-1236-5 sign \x3CB9 13-1246-4 sign \x3CBA 13-16-2 sign \x3CBB 1345-16-5 sign \x3CBC 16-5 sign \x3CBD 1345-2345-5 sign \x3CBE 1256-4 sign \x3CBF 456-4 sign \x3CC0 13-25-5 sign \x3CC1 125-2346-5 sign \x3CC2 2345-2 sign \x3CC3 245-1246-5 sign \x3CC4 15-2345-2 sign \x3CC5 14-234-2 sign \x3CC6 24-34-4 sign \x3CC7 12345-34-5 sign \x3CC8 1234-356-5 sign \x3CCD 135-34-5 sign \x3CCE 135-2345-5 sign \x3CCF 12-156-4 sign \x3CD0 15-345-5 sign \x3CD1 16-5 sign \x3CD2 12345-345-4 sign \x3CD4 145-1246-5 sign \x3CD5 14-1236-2 sign \x3CD7 12-2456-5 sign \x3CD9 15-45-5 sign \x3CDA 1256-5 sign \x3CDB 1256-2 sign \x3CE0 124-345-5 sign \x3CE1 25-3 sign \x3CE5 13-1256-5 sign \x3CE6 15-346-5 sign \x3CE7 15-16-2 sign \x3CE8 13-2345-4 sign \x3CEA 1234-1236-5 sign \x3CEB 124-345-5 sign \x3CEC 15-45-2 sign \x3CED 15-2345-2 sign \x3CEE 1345-246-5 sign \x3CF4 134-16-5 sign \x3CF5 13-16-5 sign \x3CF6 13-12356-5 sign \x3CF7 123456-4 sign \x3CF9 456-4 sign \x3CFA 234-2 sign \x3CFB 125-2346-2 sign \x3CFC 135-16-5 sign \x3CFD 134-16-4 sign \x3CFF 15-346-5 sign \x3D00 12345-1236-5 sign \x3D01 16-5 sign \x3D03 14-356-5 sign \x3D04 13456-2 sign \x3D06 13-1456-5 sign \x3D07 24-2346-5 sign \x3D08 1456-5 sign \x3D09 13-16-4 sign \x3D0B 15-34-5 sign \x3D0F 456-4 sign \x3D10 134-2345-5 sign \x3D11 15-34-5 sign \x3D12 16-5 sign \x3D13 125-2456-4 sign \x3D14 15-2346-5 sign \x3D15 13-16-2 sign \x3D16 14-25-5 sign \x3D18 134-146-5 sign \x3D19 1-345-2 sign \x3D1A 15-1246-5 sign \x3D1B 1-156-5 sign \x3D1C 135-2345-5 sign \x3D1D 14-16-2 sign \x3D25 245-246-5 sign \x3D26 13-12456-5 sign \x3D28 1-136-5 sign \x3D2A 1345-346-5 sign \x3D2B 13-256-5 sign \x3D2C 15-346-5 sign \x3D2D 246-4 sign \x3D2E 15-346-5 sign \x3D30 1345-1356-2 sign \x3D31 24-136-3 sign \x3D33 14-12346-4 sign \x3D34 12-136-2 sign \x3D35 134-16-5 sign \x3D36 245-236-5 sign \x3D38 1345-345-5 sign \x3D3C 15-34-5 sign \x3D3D 15-346-5 sign \x3D3E 135-126-2 sign \x3D3F 145-13456-4 sign \x3D40 245-12456-5 sign \x3D42 12-456-4 sign \x3D43 12-2346-5 sign \x3D44 1235-1236-5 sign \x3D45 145-1236-5 sign \x3D46 1235-146-5 sign \x3D4A 24-136-4 sign \x3D4B 134-16-5 sign \x3D4C 12-1236-5 sign \x3D4D 134-136-5 sign \x3D4E 1235-1236-4 sign \x3D4F 245-1246-4 sign \x3D50 13-236-2 sign \x3D51 1235-2346-5 sign \x3D52 12345-356-5 sign \x3D53 24-156-2 sign \x3D54 12-2346-4 sign \x3D55 24-136-5 sign \x3D56 1345-1256-5 sign \x3D57 12345-34-5 sign \x3D58 134-1236-5 sign \x3D5D 16-5 sign \x3D5E 12-12356-2 sign \x3D61 135-146-2 sign \x3D62 14-356-2 sign \x3D63 123-2346-4 sign \x3D64 145-2345-5 sign \x3D65 135-16-5 sign \x3D66 15-1246-2 sign \x3D67 13-2346-2 sign \x3D68 135-16-5 sign \x3D69 16-5 sign \x3D6A 15-2345-2 sign \x3D6B 1345-16-4 sign \x3D6C 13456-2 sign \x3D6D 1-34-4 sign \x3D6E 12-123456-2 sign \x3D6F 12345-1356-2 sign \x3D70 15-1256-5 sign \x3D71 1234-246-4 sign \x3D72 34-4 sign \x3D73 14-246-2 sign \x3D74 245-1346-2 sign \x3D75 125-12356-5 sign \x3D77 135-2345-5 sign \x3D78 246-5 sign \x3D79 1235-12456-2 sign \x3D7A 1234-2456-2 sign \x3D7B 15-12356-5 sign \x3D7D 145-1246-5 sign \x3D7E 13-13456-5 sign \x3D7F 15-16-2 sign \x3D81 13-25-2 sign \x3D84 2345-2 sign \x3D85 15-236-2 sign \x3D86 12-34-2 sign \x3D87 1235-1356-2 sign \x3D88 13456-2 sign \x3D89 23456-3 sign \x3D8C 14-2345-2 sign \x3D8D 15-2345-4 sign \x3D8E 1235-12456-2 sign \x3D91 14-2345-5 sign \x3D92 24-1236-4 sign \x3D93 245-1346-2 sign \x3D94 135-356-5 sign \x3D95 13-2345-4 sign \x3D96 24-34-5 sign \x3D97 12345-1236-5 sign \x3D98 145-2345-5 sign \x3D9A 135-345-5 sign \x3D9B 1256-2 sign \x3D9E 1345-1346-4 sign \x3D9F 14-356-4 sign \x3DA0 16-5 sign \x3DA1 145-2456-5 sign \x3DA3 12-1236-2 sign \x3DA4 12-146-4 sign \x3DA6 13-1456-5 sign \x3DA7 1345-136-5 sign \x3DAB 14-246-4 sign \x3DAC 134-356-2 sign \x3DAD 13-234-5 sign \x3DAF 14-234-5 sign \x3DB0 1235-1236-2 sign \x3DB2 235-5 sign \x3DB3 13-1456-5 sign \x3DB4 12-156-4 sign \x3DB5 1245-136-5 sign \x3DB6 1345-12346-2 sign \x3DB9 1235-12346-5 sign \x3DBA 124-2345-5 sign \x3DBF 135-126-2 sign \x3DC0 245-235-2 sign \x3DC2 24-34-5 sign \x3DC3 245-1246-4 sign \x3DC4 1235-1246-5 sign \x3DC5 12-146-4 sign \x3DC6 145-12356-5 sign \x3DC7 13-2356-5 sign \x3DC8 2346-5 sign \x3DC9 1246-5 sign \x3DCA 12345-136-2 sign \x3DCB 124-1236-2 sign \x3DCD 14-123456-2 sign \x3DCE 1235-2346-5 sign \x3DCF 235-4 sign \x3DD0 1235-1246-4 sign \x3DD2 1256-2 sign \x3DD3 125-12346-4 sign \x3DD4 2345-5 sign \x3DD5 245-234-2 sign \x3DD6 1-146-5 sign \x3DD7 13-235-4 sign \x3DD8 124-2456-2 sign \x3DDF 124-1246-5 sign \x3DE0 14-1456-2 sign \x3DE1 13-235-4 sign \x3DE2 1-345-4 sign \x3DE4 1235-2346-5 sign \x3DE6 15-1256-5 sign \x3DEA 245-1246-5 sign \x3DEB 245-13456-4 sign \x3DEC 134-126-5 sign \x3DEF 135-1356-5 sign \x3DF0 14-16-2 sign \x3DF3 2345-5 sign \x3DF4 13-2346-2 sign \x3DF5 134-126-5 sign \x3DF6 135-356-5 sign \x3DF7 13-45-4 sign \x3DF8 145-346-2 sign \x3DF9 24-146-5 sign \x3DFB 34-2 sign \x3DFC 2345-5 sign \x3DFE 13-236-2 sign \x3E00 124-2456-2 sign \x3E01 1235-1236-4 sign \x3E03 145-2345-4 sign \x3E04 13-16-5 sign \x3E05 13-346-2 sign \x3E09 15-346-5 sign \x3E0A 14-345-5 sign \x3E0B 12345-1236-2 sign \x3E0C 1235-25-5 sign \x3E0D 15-16-5 sign \x3E0E 1345-346-5 sign \x3E0F 134-16-2 sign \x3E10 1245-1236-2 sign \x3E11 245-12456-5 sign \x3E12 1456-2 sign \x3E13 134-16-5 sign \x3E15 13-236-2 sign \x3E17 124-12346-2 sign \x3E18 12456-5 sign \x3E1A 14-16-4 sign \x3E1B 24-146-2 sign \x3E1C 123-12346-5 sign \x3E1D 123-1236-4 sign \x3E1E 135-1236-4 sign \x3E20 124-246-4 sign \x3E22 135-356-5 sign \x3E23 346-5 sign \x3E24 1234-2345-5 sign \x3E25 12-1236-2 sign \x3E26 1235-34-5 sign \x3E27 123-136-5 sign \x3E29 1236-5 sign \x3E2A 12-123456-2 sign \x3E2B 245-2345-2 sign \x3E2C 135-356-5 sign \x3E2E 12345-136-2 sign \x3E30 124-25-2 sign \x3E31 124-25-2 sign \x3E32 125-25-2 sign \x3E33 14-13456-2 sign \x3E35 13-1246-4 sign \x3E37 24-156-5 sign \x3E38 1235-12356-4 sign \x3E39 14-346-5 sign \x3E3B 15-156-5 sign \x3E3D 135-356-5 sign \x3E3E 1245-136-5 sign \x3E3F 145-34-2 sign \x3E40 135-126-2 sign \x3E41 14-46-2 sign \x3E42 245-156-5 sign \x3E43 135-16-5 sign \x3E44 13-16-5 sign \x3E45 125-12346-4 sign \x3E47 1235-2346-2 sign \x3E48 14-16-2 sign \x3E49 45-2 sign \x3E4A 236-5 sign \x3E4C 12-1236-4 sign \x3E4D 145-16-2 sign \x3E4E 14-356-2 sign \x3E4F 13-1456-4 sign \x3E50 12-12346-2 sign \x3E51 15-156-5 sign \x3E52 1234-34-4 sign \x3E53 16-5 sign \x3E56 1235-12456-5 sign \x3E57 124-146-2 sign \x3E58 1245-34-2 sign \x3E59 13456-2 sign \x3E5A 13456-2 sign \x3E5B 1245-146-2 sign \x3E5C 1456-2 sign \x3E5D 24-156-5 sign \x3E5E 1456-2 sign \x3E5F 13-236-2 sign \x3E60 124-123456-2 sign \x3E61 15-45-2 sign \x3E64 245-346-5 sign \x3E65 1-34-5 sign \x3E68 234-5 sign \x3E6B 15-16-5 sign \x3E6C 24-156-4 sign \x3E6D 16-5 sign \x3E6E 134-126-5 sign \x3E71 1235-34-2 sign \x3E72 15-246-5 sign \x3E73 34-2 sign \x3E75 13-13456-5 sign \x3E76 124-13456-2 sign \x3E77 24-156-4 sign \x3E78 1345-16-2 sign \x3E7A 124-345-5 sign \x3E7C 12-34-4 sign \x3E7D 12-1236-4 sign \x3E7E 1234-246-4 sign \x3E7F 145-246-4 sign \x3E80 1345-146-2 sign \x3E81 1345-146-4 sign \x3E82 13-1236-4 sign \x3E83 13-12356-4 sign \x3E84 1256-4 sign \x3E85 1235-12356-2 sign \x3E89 1235-34-5 sign \x3E8A 46-5 sign \x3E8C 15-2345-5 sign \x3E8E 1245-12346-2 sign \x3E8F 14-12356-2 sign \x3E90 1-146-4 sign \x3E91 245-1236-2 sign \x3E92 14-246-5 sign \x3E93 1234-246-5 sign \x3E94 1235-2456-5 sign \x3E95 12345-1236-2 sign \x3E96 1235-1236-4 sign \x3E97 145-1236-5 sign \x3E98 1-1236-5 sign \x3E9A 124-345-4 sign \x3E9B 1-34-5 sign \x3E9C 135-1236-4 sign \x3E9D 13-2345-5 sign \x3E9E 1256-2 sign \x3E9F 1-25-2 sign \x3EA0 234-5 sign \x3EA1 14-16-5 sign \x3EA5 12-1236-2 sign \x3EA6 14-2345-2 sign \x3EA9 13-234-5 sign \x3EAA 1234-34-2 sign \x3EAB 245-234-2 sign \x3EAC 13-12346-4 sign \x3EAD 125-156-4 sign \x3EAE 1256-2 sign \x3EB1 1245-1356-2 sign \x3EB2 1345-234-4 sign \x3EB3 134-356-2 sign \x3EB5 13-234-2 sign \x3EB7 15-1256-5 sign \x3EB8 1234-13456-2 sign \x3EB9 135-2345-5 sign \x3EBA 134-146-5 sign \x3EBF 16-2 sign \x3EC0 234-2 sign \x3EC2 1234-13456-2 sign \x3EC4 135-146-4 sign \x3EC5 1235-1246-5 sign \x3EC9 135-34-5 sign \x3ECA 134-1346-2 sign \x3ECB 14-345-5 sign \x3ECC 124-34-2 sign \x3ECD 34-2 sign \x3ECE 14-16-5 sign \x3ECF 14-13456-2 sign \x3ED1 13-16-5 sign \x3ED2 13-256-5 sign \x3ED4 145-25-4 sign \x3ED5 13-236-2 sign \x3ED6 145-2456-5 sign \x3ED7 135-356-5 sign \x3EDD 14-345-5 sign \x3EDE 135-2345-5 sign \x3EDF 15-1246-2 sign \x3EE0 124-34-2 sign \x3EE1 145-346-2 sign \x3EE7 145-25-5 sign \x3EEA 15-1246-5 sign \x3EEB 135-16-5 sign \x3EEC 124-34-2 sign \x3EED 15-2346-5 sign \x3EEE 245-1236-5 sign \x3EEF 124-34-2 sign \x3EF0 134-2345-4 sign \x3EF2 14-1256-4 sign \x3EF5 1-1236-5 sign \x3EF6 135-16-4 sign \x3EF7 13-16-2 sign \x3EF8 245-136-2 sign \x3EFA 14-16-5 sign \x3EFD 15-1246-5 sign \x3EFF 24-34-4 sign \x3F02 2346-2 sign \x3F07 245-235-2 sign \x3F08 14-25-2 sign \x3F09 1456-5 sign \x3F0A 124-123456-2 sign \x3F0B 13-34-4 sign \x3F0C 1256-4 sign \x3F0D 14-356-4 sign \x3F0E 135-356-5 sign \x3F0F 1345-356-4 sign \x3F10 1234-2345-2 sign \x3F11 14-2345-5 sign \x3F12 245-234-4 sign \x3F13 14-2345-2 sign \x3F16 14-16-5 sign \x3F17 145-13456-4 sign \x3F18 35-4 sign \x3F19 1-12356-5 sign \x3F1B 15-13456-2 sign \x3F1C 1346-5 sign \x3F1D 12456-4 sign \x3F1E 1234-1356-5 sign \x3F1F 135-2456-2 sign \x3F20 124-25-2 sign \x3F22 2346-4 sign \x3F23 135-2456-4 sign \x3F24 245-16-5 sign \x3F25 12-34-2 sign \x3F26 13-12346-4 sign \x3F27 124-12346-2 sign \x3F28 1235-1236-2 sign \x3F29 12-1356-2 sign \x3F2A 13-23456-2 sign \x3F2B 1235-12456-5 sign \x3F2C 15-13456-5 sign \x3F2D 145-2345-5 sign \x3F2E 134-2456-2 sign \x3F2F 145-12346-5 sign \x3F30 2346-2 sign \x3F31 1245-12456-4 sign \x3F32 14-346-5 sign \x3F33 24-1356-4 sign \x3F34 12356-4 sign \x3F35 145-16-5 sign \x3F36 1256-2 sign \x3F37 12-12456-2 sign \x3F38 1245-12346-2 sign \x3F3A 124-1346-2 sign \x3F3B 245-12346-2 sign \x3F3C 1234-246-2 sign \x3F3D 24-456-4 sign \x3F3E 14-34-5 sign \x3F3F 124-12346-2 sign \x3F40 1-1356-5 sign \x3F41 14-16-5 sign \x3F42 15-345-5 sign \x3F47 13-2356-5 sign \x3F48 16-5 sign \x3F49 1235-1236-4 sign \x3F4A 15-346-5 sign \x3F4B 14-25-2 sign \x3F4C 14-234-5 sign \x3F4E 145-1236-4 sign \x3F51 124-1236-2 sign \x3F55 234-2 sign \x3F56 1345-1236-2 sign \x3F58 13-1346-4 sign \x3F59 13-256-5 sign \x3F5A 12-156-5 sign \x3F5B 123-12356-5 sign \x3F5C 12456-4 sign \x3F5D 14-16-5 sign \x3F5E 14-234-2 sign \x3F5F 14-346-5 sign \x3F60 15-23456-2 sign \x3F62 1236-4 sign \x3F63 1256-5 sign \x3F64 13-1256-2 sign \x3F65 1245-12356-2 sign \x3F66 15-256-2 sign \x3F68 245-25-2 sign \x3F69 245-1236-5 sign \x3F6A 125-1356-4 sign \x3F6B 235-4 sign \x3F6C 12345-34-5 sign \x3F6D 1245-12456-4 sign \x3F6F 15-16-2 sign \x3F70 24-34-5 sign \x3F71 13-246-4 sign \x3F72 13-246-4 sign \x3F73 1235-1236-5 sign \x3F74 1-1346-5 sign \x3F77 24-1246-5 sign \x3F78 12-136-2 sign \x3F79 12345-1236-5 sign \x3F7A 13-16-2 sign \x3F7D 13-34-5 sign \x3F7E 34-5 sign \x3F80 245-346-5 sign \x3F81 24-34-5 sign \x3F83 124-25-2 sign \x3F84 145-34-2 sign \x3F85 15-156-5 sign \x3F86 1245-1236-2 sign \x3F87 134-34-5 sign \x3F88 12345-34-5 sign \x3F89 14-13456-2 sign \x3F8A 13-16-2 sign \x3F8B 15-234-5 sign \x3F8C 15-2345-4 sign \x3F8D 1345-2456-2 sign \x3F8F 13-346-5 sign \x3F90 14-16-5 sign \x3F91 145-345-2 sign \x3F92 13-16-5 sign \x3F94 14-1256-4 sign \x3F95 24-136-4 sign \x3F96 14-16-4 sign \x3F97 14-1346-4 sign \x3F98 13-1356-4 sign \x3F99 1456-4 sign \x3F9B 245-1456-4 sign \x3F9C 245-346-5 sign \x3F9D 12-2346-5 sign \x3F9E 234-4 sign \x3F9F 135-34-5 sign \x3FA0 1235-456-2 sign \x3FA1 245-236-5 sign \x3FA2 14-2456-5 sign \x3FA5 15-1256-5 sign \x3FA6 135-1346-5 sign \x3FA7 123-2346-5 sign \x3FA8 245-16-4 sign \x3FAA 24-1356-4 sign \x3FAD 1-12356-5 sign \x3FAE 1235-456-2 sign \x3FAF 124-1246-2 sign \x3FB0 1235-34-2 sign \x3FB1 135-356-5 sign \x3FB5 13-16-5 sign \x3FB6 13-34-4 sign \x3FB8 13-146-4 sign \x3FB9 12-2456-2 sign \x3FBA 134-345-5 sign \x3FBB 1-34-5 sign \x3FBC 124-1246-4 sign \x3FBD 124-1246-2 sign \x3FBE 14-2345-2 sign \x3FBF 14-1346-2 sign \x3FC3 145-2456-5 sign \x3FC4 2456-5 sign \x3FC5 15-2345-4 sign \x3FC7 15-16-2 sign \x3FC9 124-1246-2 sign \x3FCA 245-1236-4 sign \x3FCB 15-146-5 sign \x3FCD 13-346-5 sign \x3FCE 12345-136-5 sign \x3FCF 245-256-2 sign \x3FD1 246-5 sign \x3FD2 145-146-4 sign \x3FD3 13-23456-2 sign \x3FD4 14-356-4 sign \x3FD5 2345-2 sign \x3FD6 14-34-2 sign \x3FD7 124-1246-2 sign \x3FD8 13456-2 sign \x3FD9 1234-16-5 sign \x3FDA 14-25-5 sign \x3FDB 14-16-2 sign \x3FDC 135-346-4 sign \x3FDE 134-146-5 sign \x3FDF 135-2456-2 sign \x3FE1 145-12356-3 sign \x3FE2 246-5 sign \x3FE3 1235-2346-2 sign \x3FE4 12-123456-4 sign \x3FE5 1235-34-2 sign \x3FE6 1345-13456-5 sign \x3FE7 12-12356-2 sign \x3FE8 14-16-5 sign \x3FE9 124-1346-4 sign \x3FEA 1235-12456-2 sign \x3FEB 135-16-5 sign \x3FED 12-2346-5 sign \x3FEE 46-5 sign \x3FEF 145-345-2 sign \x3FF0 146-2 sign \x3FF1 15-236-2 sign \x3FF5 1245-1236-4 sign \x3FF7 125-146-5 sign \x3FF8 12456-4 sign \x3FF9 124-345-5 sign \x3FFA 135-146-2 sign \x3FFC 2345-2 sign \x3FFE 1-34-5 sign \x3FFF 23456-4 sign \x4000 12345-1236-2 sign \x4001 234-5 sign \x4003 124-1246-2 sign \x4004 134-1356-2 sign \x4005 24-2346-5 sign \x4006 13-1456-5 sign \x4007 13-34-4 sign \x4008 245-16-5 sign \x4009 245-246-2 sign \x400A 13-246-4 sign \x400B 2345-2 sign \x400D 123-1236-5 sign \x400E 134-2345-4 sign \x400F 15-2345-5 sign \x4010 15-1236-4 sign \x4011 1345-345-5 sign \x4013 1235-12456-5 sign \x4014 1345-234-2 sign \x4015 12-1356-5 sign \x4017 13-236-2 sign \x4018 15-16-2 sign \x4019 245-16-5 sign \x401A 1346-2 sign \x401B 134-356-5 sign \x401C 13-34-4 sign \x401F 12345-1236-2 sign \x4020 245-1256-2 sign \x4021 12-1236-5 sign \x4022 24-123456-5 sign \x4023 135-16-5 sign \x4024 134-146-5 sign \x4025 24-25-5 sign \x4026 13-34-4 sign \x4027 1235-12346-4 sign \x4028 1235-12456-5 sign \x4029 14-25-5 sign \x402A 1235-1346-2 sign \x402B 13-23456-2 sign \x402C 245-45-2 sign \x402E 134-1346-2 sign \x402F 135-34-4 sign \x4030 13-34-4 sign \x4032 134-34-5 sign \x4033 2456-5 sign \x4034 13456-4 sign \x4035 24-123456-5 sign \x4036 14-1346-4 sign \x4037 13-346-2 sign \x4038 145-16-5 sign \x4039 13-346-2 sign \x403B 1234-1456-5 sign \x403C 1245-136-5 sign \x403D 2345-2 sign \x403E 145-34-4 sign \x403F 145-16-5 sign \x4041 14-1346-4 sign \x4042 15-2345-5 sign \x4044 15-13456-5 sign \x4045 135-356-5 sign \x4046 1236-4 sign \x4047 134-16-5 sign \x4048 245-16-5 sign \x4049 245-16-5 sign \x404A 25-5 sign \x404B 24-2346-2 sign \x404C 1256-5 sign \x404D 13-23456-5 sign \x404E 12-1356-2 sign \x404F 246-4 sign \x4050 13456-5 sign \x4051 46-2 sign \x4052 13-16-2 sign \x4053 13-346-5 sign \x4054 1235-1236-5 sign \x4055 134-1456-2 sign \x4056 14-12356-3 sign \x4057 123-2456-4 sign \x4058 246-4 sign \x4059 2345-4 sign \x405A 15-123456-4 sign \x405B 13-1246-4 sign \x405C 1235-456-4 sign \x405D 13456-2 sign \x405E 24-1356-4 sign \x405F 12-345-2 sign \x4060 14-2345-2 sign \x4062 15-45-2 sign \x4063 12-12456-2 sign \x4064 12-2346-5 sign \x4065 1345-16-5 sign \x4066 245-1256-5 sign \x4067 134-246-2 sign \x4068 1235-25-5 sign \x4069 1256-2 sign \x406A 1345-1236-4 sign \x406B 1235-34-2 sign \x406C 245-1356-2 sign \x406E 245-2345-2 sign \x406F 24-2346-5 sign \x4070 13-46-4 sign \x4071 146-5 sign \x4072 134-2456-2 sign \x4073 134-1346-4 sign \x4074 1-1236-4 sign \x4075 135-2345-4 sign \x4076 13-246-4 sign \x4077 13-236-2 sign \x4078 1345-12346-2 sign \x4079 135-16-5 sign \x407A 24-156-5 sign \x407B 14-16-5 sign \x407C 134-126-5 sign \x407D 14-346-5 sign \x407E 134-346-5 sign \x407F 134-126-5 sign \x4080 15-16-3 sign \x4081 12-1236-2 sign \x4082 245-1256-2 sign \x4083 13-246-5 sign \x4084 1235-25-5 sign \x4086 15-1256-5 sign \x4087 1345-1346-2 sign \x4088 124-12346-2 sign \x4089 1235-12356-2 sign \x408A 1256-5 sign \x408D 135-126-2 sign \x408E 125-12456-4 sign \x4090 12-25-5 sign \x4092 13-346-2 sign \x4094 15-13456-5 sign \x4095 1235-1246-5 sign \x4096 24-156-2 sign \x409A 246-2 sign \x409B 1256-2 sign \x409C 135-1346-5 sign \x409D 13-346-2 sign \x409E 1-2346-5 sign \x40A0 24-2346-2 sign \x40A1 145-16-4 sign \x40A2 145-12346-4 sign \x40A3 245-156-2 sign \x40A4 12345-34-5 sign \x40A5 134-1456-2 sign \x40A6 1-136-4 sign \x40A7 1-136-4 sign \x40A9 2345-5 sign \x40AA 145-246-5 sign \x40AB 1235-1346-4 sign \x40AC 13-12346-4 sign \x40AE 14-236-5 sign \x40AF 13-2356-5 sign \x40B0 14-345-5 sign \x40B1 245-1246-5 sign \x40B2 12345-345-4 sign \x40B3 245-25-4 sign \x40B4 2345-2 sign \x40B6 13-346-2 sign \x40B8 13-25-2 sign \x40B9 15-25-4 sign \x40BA 12456-4 sign \x40BB 1-1356-5 sign \x40BC 1345-346-5 sign \x40BD 145-246-5 sign \x40BE 14-2456-4 sign \x40BF 124-345-5 sign \x40C0 245-1246-5 sign \x40C2 13-123456-4 sign \x40C7 134-2345-2 sign \x40C9 134-1456-2 sign \x40CA 13-1256-4 sign \x40CB 1256-2 sign \x40CD 1-146-5 sign \x40CE 125-2346-2 sign \x40D1 1234-1236-2 sign \x40D2 1235-2346-2 sign \x40D3 13-12356-5 sign \x40D4 1235-12346-2 sign \x40D5 14-146-2 sign \x40D6 34-5 sign \x40D7 12-25-5 sign \x40D9 14-34-5 sign \x40DA 245-34-5 sign \x40DB 14-2345-2 sign \x40DD 245-246-5 sign \x40DE 24-34-2 sign \x40E1 245-136-2 sign \x40E3 1235-1246-4 sign \x40E4 15-34-5 sign \x40E5 12-456-2 sign \x40E7 14-12346-2 sign \x40E9 1345-146-2 sign \x40EA 124-1236-2 sign \x40EB 145-1236-4 sign \x40EC 1246-4 sign \x40ED 13-1236-4 sign \x40EE 145-345-2 sign \x40EF 14-16-5 sign \x40F1 15-2345-5 sign \x40F2 1234-1236-2 sign \x40F3 14-345-5 sign \x40F5 1345-246-4 sign \x40F6 1235-2356-2 sign \x40F7 13456-2 sign \x40F8 15-2345-5 sign \x40F9 14-1236-5 sign \x40FA 134-126-2 sign \x40FB 135-345-5 sign \x40FD 12345-34-2 sign \x40FE 135-16-4 sign \x4100 1235-25-5 sign \x4101 16-5 sign \x4102 14-234-5 sign \x4105 13-45-5 sign \x4106 1235-25-2 sign \x4107 12-1356-2 sign \x4108 145-12356-5 sign \x4109 2346-2 sign \x410B 2345-4 sign \x410C 1-1246-5 sign \x410D 145-34-5 sign \x410E 245-16-4 sign \x410F 1256-2 sign \x4110 245-45-5 sign \x4111 1235-25-2 sign \x4112 1345-346-5 sign \x4113 1235-1356-2 sign \x4114 13-1256-4 sign \x4115 24-2346-5 sign \x4118 1234-1356-2 sign \x4119 134-13456-2 sign \x411A 245-146-2 sign \x411B 14-12356-2 sign \x411C 14-16-2 sign \x411D 12-123456-4 sign \x411F 245-1246-5 sign \x4120 24-1236-5 sign \x4122 245-16-2 sign \x4124 14-2456-5 sign \x4125 14-13456-2 sign \x4126 14-246-4 sign \x4127 1245-1356-2 sign \x4128 1256-2 sign \x4129 1345-146-2 sign \x412A 12-25-5 sign \x412B 245-16-4 sign \x412C 16-2 sign \x412D 1345-2345-2 sign \x412F 13-2345-4 sign \x4130 23456-2 sign \x4132 12-1246-2 sign \x4136 135-16-5 sign \x4137 145-1236-5 sign \x4138 1234-126-5 sign \x4139 1345-2345-2 sign \x413A 1-156-5 sign \x413B 12-146-2 sign \x413C 124-2345-4 sign \x413D 124-2345-4 sign \x413E 1245-12356-5 sign \x413F 16-5 sign \x4140 14-346-5 sign \x4141 1236-5 sign \x4142 1235-2346-2 sign \x4143 245-235-2 sign \x4144 14-16-5 sign \x4146 125-156-5 sign \x4147 15-34-5 sign \x4148 45-5 sign \x4149 23456-5 sign \x414A 145-34-5 sign \x414B 12456-4 sign \x414D 145-12346-5 sign \x414E 234-4 sign \x414F 1235-1246-5 sign \x4150 13-2345-4 sign \x4151 1245-1246-2 sign \x4152 134-1346-2 sign \x4153 13-1256-4 sign \x4156 1236-4 sign \x4157 15-1246-5 sign \x4158 14-2456-2 sign \x4159 1235-123456-5 sign \x415A 245-46-4 sign \x415C 145-25-5 sign \x415E 1345-345-5 sign \x415F 24-1236-3 sign \x4160 124-16-2 sign \x4161 15-1256-4 sign \x4162 13-234-5 sign \x4163 1235-456-2 sign \x4164 245-16-5 sign \x4165 13-346-2 sign \x4166 134-146-2 sign \x4167 2345-5 sign \x4169 1-156-4 sign \x416A 124-1246-2 sign \x416C 2456-5 sign \x416D 1234-1346-2 sign \x416E 245-1346-5 sign \x416F 124-1346-2 sign \x4170 136-4 sign \x4171 1235-123456-5 sign \x4172 245-16-2 sign \x4173 12-34-2 sign \x4174 15-25-4 sign \x4175 1-25-2 sign \x4176 1345-12356-5 sign \x4177 124-34-2 sign \x4178 125-34-2 sign \x4179 14-12356-2 sign \x417A 134-246-4 sign \x417B 14-16-2 sign \x417C 134-1236-2 sign \x417D 13-34-4 sign \x417E 245-136-2 sign \x417F 1235-35-2 sign \x4180 134-356-4 sign \x4182 14-2345-2 sign \x4183 145-146-4 sign \x4184 24-1236-5 sign \x4185 245-156-2 sign \x4188 1-156-5 sign \x4189 135-345-5 sign \x418A 245-1246-5 sign \x418B 245-234-3 sign \x418D 14-12346-2 sign \x418F 12345-356-5 sign \x4190 13-25-2 sign \x4191 12-1356-2 sign \x4192 13-234-5 sign \x4193 2346-5 sign \x4195 13-236-2 sign \x4196 1235-12346-2 sign \x4197 13-246-5 sign \x4198 245-12456-2 sign \x4199 246-2 sign \x419A 124-12346-2 sign \x419B 12-345-2 sign \x419C 234-5 sign \x419D 24-34-5 sign \x419E 246-4 sign \x419F 13-2346-2 sign \x41A0 1235-12456-5 sign \x41A1 14-1346-2 sign \x41A2 13-236-2 sign \x41A3 12-136-2 sign \x41A6 24-136-5 sign \x41A8 134-13456-2 sign \x41A9 134-13456-2 sign \x41AB 12-456-3 sign \x41AC 256-4 sign \x41AE 13-1456-5 sign \x41AF 12-25-5 sign \x41B1 124-1236-4 sign \x41B3 245-235-2 sign \x41B5 12-1356-2 sign \x41B7 1256-5 sign \x41B8 12-1356-2 sign \x41B9 124-12346-4 sign \x41BB 245-246-5 sign \x41BD 13-1256-5 sign \x41BE 14-1236-2 sign \x41BF 16-5 sign \x41C0 1245-12346-2 sign \x41C3 15-156-5 sign \x41C5 12345-345-2 sign \x41C7 134-1346-2 sign \x41C8 13-1246-5 sign \x41CB 1235-2456-5 sign \x41CC 245-246-5 sign \x41CD 12-25-5 sign \x41CE 245-236-5 sign \x41CF 145-1246-5 sign \x41D0 14-16-5 sign \x41D1 135-345-5 sign \x41D2 13-346-5 sign \x41D4 14-25-5 sign \x41D6 256-4 sign \x41D8 1235-34-5 sign \x41D9 1456-4 sign \x41DB 1-156-4 sign \x41DC 14-2345-4 sign \x41DE 13-1236-4 sign \x41DF 13-2345-5 sign \x41E0 1-12356-5 sign \x41E1 1-34-5 sign \x41E2 123-34-4 sign \x41E3 1345-345-5 sign \x41E4 145-1246-5 sign \x41E5 125-2346-2 sign \x41E6 46-4 sign \x41E7 1-34-5 sign \x41E8 13-12346-5 sign \x41E9 16-5 sign \x41EC 12-456-4 sign \x41ED 14-146-4 sign \x41EE 1245-136-5 sign \x41EF 1245-12346-2 sign \x41F1 1345-345-5 sign \x41F2 245-2346-5 sign \x41F5 16-2 sign \x41F6 13-236-2 sign \x41F7 135-16-4 sign \x41F8 12-1356-2 sign \x41F9 13-256-5 sign \x41FA 12-12356-2 sign \x41FB 1235-1246-5 sign \x41FC 12-156-5 sign \x41FD 1-156-5 sign \x41FE 2345-2 sign \x4201 14-123456-2 sign \x4202 135-13456-5 sign \x4203 1-146-4 sign \x4204 1235-1236-2 sign \x4205 1256-5 sign \x4206 145-2456-5 sign \x4207 1-146-5 sign \x4208 12345-356-2 sign \x4209 24-345-5 sign \x420A 14-13456-2 sign \x420B 124-345-5 sign \x420D 134-1346-2 sign \x420E 346-5 sign \x420F 135-146-2 sign \x4210 123-1246-5 sign \x4211 13-35-4 sign \x4212 1345-1236-4 sign \x4213 13-2346-2 sign \x4215 12-156-2 sign \x4217 15-25-4 sign \x4218 245-156-2 sign \x4219 1-12356-5 sign \x421A 124-2456-2 sign \x421B 123-2356-5 sign \x421C 245-1456-5 sign \x421E 145-34-4 sign \x421F 245-2346-5 sign \x4220 1235-12456-4 sign \x4222 15-2456-4 sign \x4223 1-1356-5 sign \x4224 245-2345-2 sign \x4227 1246-4 sign \x422A 15-16-5 sign \x422B 1345-345-5 sign \x422C 1234-34-2 sign \x422D 1235-2356-2 sign \x422E 13-1256-4 sign \x4230 24-146-3 sign \x4232 1234-1236-2 sign \x4233 124-345-5 sign \x4234 245-2345-5 sign \x4236 1245-12346-2 sign \x4237 14-25-5 sign \x4238 1235-34-2 sign \x4239 15-12356-4 sign \x423B 1234-34-2 sign \x423C 134-346-5 sign \x423E 24-25-5 sign \x423F 134-2456-5 sign \x4240 24-34-5 sign \x4241 14-13456-2 sign \x4242 14-356-4 sign \x4243 13-46-4 sign \x4244 14-1356-2 sign \x4245 1-156-5 sign \x4246 145-246-4 sign \x4248 15-1236-4 sign \x4249 1235-34-2 sign \x424A 12345-1236-5 sign \x424B 134-356-5 sign \x424C 15-1246-5 sign \x424D 13-2345-4 sign \x424E 124-1346-2 sign \x424F 15-346-5 sign \x4251 134-126-2 sign \x4252 12345-1236-2 sign \x4253 14-356-2 sign \x4255 245-1356-2 sign \x4256 14-13456-2 sign \x4258 245-12346-2 sign \x4259 256-2 sign \x425A 134-1356-2 sign \x425B 1256-5 sign \x425C 1-156-5 sign \x425D 245-16-4 sign \x425E 145-1236-4 sign \x425F 1235-25-5 sign \x4260 1246-2 sign \x4261 124-1236-2 sign \x4262 15-2346-5 sign \x4263 15-346-5 sign \x4264 15-12356-4 sign \x4265 15-12346-4 sign \x4267 14-234-2 sign \x4268 16-5 sign \x426A 14-356-5 sign \x426B 14-16-2 sign \x426C 12345-356-5 sign \x426D 14-346-5 sign \x426E 14-1456-5 sign \x426F 15-2345-5 sign \x4270 246-2 sign \x4272 135-346-5 sign \x4273 15-2345-4 sign \x4274 1245-1346-2 sign \x4275 1-12456-5 sign \x4277 145-1236-5 sign \x4278 135-2345-5 sign \x4279 14-13456-2 sign \x427A 1235-12346-2 sign \x427B 245-16-2 sign \x427C 14-246-5 sign \x427D 135-1236-4 sign \x427E 134-16-5 sign \x427F 1235-34-2 sign \x4280 1235-34-2 sign \x4282 245-2346-5 sign \x4283 1234-356-5 sign \x4284 245-235-2 sign \x4285 134-13456-2 sign \x4286 13-234-5 sign \x4287 135-34-5 sign \x4288 134-356-2 sign \x4289 15-1236-4 sign \x428A 134-356-5 sign \x428B 1-456-3 sign \x428D 14-16-2 sign \x428E 245-45-4 sign \x4290 136-5 sign \x4291 15-46-4 sign \x4293 24-156-5 sign \x4296 14-1236-4 sign \x4297 1235-456-2 sign \x4298 13-234-5 sign \x4299 2345-2 sign \x429B 15-345-4 sign \x429C 124-12456-2 sign \x429D 15-346-5 sign \x429E 1-2346-2 sign \x429F 134-136-2 sign \x42A0 15-16-5 sign \x42A1 134-1236-2 sign \x42A3 1235-456-2 sign \x42A4 124-1236-2 sign \x42A5 15-246-5 sign \x42A6 23456-2 sign \x42A7 135-16-5 sign \x42A8 14-25-2 sign \x42A9 12345-1236-2 sign \x42AA 14-16-5 sign \x42AB 245-1246-4 sign \x42AC 12-345-5 sign \x42AD 12-12356-2 sign \x42AE 145-16-2 sign \x42AF 123-456-5 sign \x42B0 12-34-4 sign \x42B2 12-1236-4 sign \x42B3 134-16-2 sign \x42B4 245-2345-5 sign \x42B5 245-234-2 sign \x42B6 1-136-5 sign \x42B7 125-156-3 sign \x42B7 1256-3 sign \x42BA 13-34-4 sign \x42BB 2345-4 sign \x42BC 12-156-4 sign \x42BD 13-2356-5 sign \x42BE 134-34-5 sign \x42BF 135-126-2 sign \x42C0 123-35-5 sign \x42C1 13-1356-4 sign \x42C2 246-2 sign \x42C3 134-146-5 sign \x42C4 456-4 sign \x42C8 1245-34-2 sign \x42C9 13-236-2 sign \x42CB 134-1456-2 sign \x42CC 13-46-4 sign \x42CE 1-1236-5 sign \x42CF 125-25-5 sign \x42D0 236-5 sign \x42D1 135-13456-4 sign \x42D2 24-34-3 sign \x42D3 1-12356-5 sign \x42D4 135-16-5 sign \x42D5 1245-136-5 sign \x42D6 1256-5 sign \x42D8 12-25-5 sign \x42D9 156-4 sign \x42DA 16-5 sign \x42DB 134-16-2 sign \x42DC 245-13456-5 sign \x42DE 456-4 sign \x42DF 13-16-5 sign \x42E0 135-34-4 sign \x42E2 135-346-5 sign \x42E3 12345-1236-2 sign \x42E4 246-5 sign \x42E5 14-16-2 sign \x42E6 12345-1236-2 sign \x42E7 245-1256-2 sign \x42E8 12345-34-4 sign \x42E9 156-2 sign \x42ED 1235-25-5 sign \x42EE 13-1456-5 sign \x42EF 245-16-4 sign \x42F0 13-1256-2 sign \x42F1 14-2456-2 sign \x42F2 12-2346-4 sign \x42F3 135-356-5 sign \x42F4 1345-234-5 sign \x42F5 16-5 sign \x42F6 15-1256-5 sign \x42F7 14-234-2 sign \x42F8 15-256-2 sign \x42F9 12345-34-2 sign \x42FB 1345-1456-2 sign \x42FC 124-13456-4 sign \x42FD 135-1356-4 sign \x42FE 1-345-4 sign \x4302 12356-5 sign \x4303 24-25-5 sign \x4304 13-1356-4 sign \x4305 124-1346-2 sign \x4306 13-1246-5 sign \x4307 1235-1246-5 sign \x4308 124-345-5 sign \x430A 234-2 sign \x430C 245-16-5 sign \x430D 1235-1236-5 sign \x430E 14-236-5 sign \x430F 134-16-5 sign \x4310 134-16-5 sign \x4312 14-34-5 sign \x4313 12345-1236-2 sign \x4314 12356-5 sign \x4315 134-16-2 sign \x4316 13-346-2 sign \x4317 12345-34-4 sign \x4318 134-16-2 sign \x4319 1235-456-4 sign \x431A 15-34-5 sign \x431B 246-2 sign \x431C 1345-346-5 sign \x431D 13-1456-5 sign \x431E 14-2345-4 sign \x431F 135-16-5 sign \x4320 245-13456-5 sign \x4321 124-16-4 sign \x4322 14-13456-2 sign \x4323 125-12456-4 sign \x4324 1-156-4 sign \x4325 1456-4 sign \x4326 145-146-4 sign \x4327 12-12356-2 sign \x4328 245-2456-5 sign \x4329 134-16-5 sign \x432A 2345-2 sign \x432B 14-1236-4 sign \x432C 12-12346-2 sign \x432F 13-12456-5 sign \x4330 24-2346-5 sign \x4331 14-25-5 sign \x4334 14-25-5 sign \x4335 1-34-2 sign \x4336 125-156-3 sign \x4337 12-12356-2 sign \x4338 13-45-5 sign \x4339 13-235-4 sign \x433A 156-4 sign \x433B 16-5 sign \x433C 1245-1246-5 sign \x433D 245-2456-4 sign \x433E 1245-136-2 sign \x433F 12345-34-2 sign \x4340 14-1236-2 sign \x4341 15-1246-5 sign \x4342 1256-2 sign \x4343 246-2 sign \x4344 145-2345-4 sign \x4345 14-13456-2 sign \x4346 1-34-5 sign \x4347 124-345-5 sign \x4348 1234-13456-2 sign \x4349 245-2345-2 sign \x434A 13-236-2 sign \x434B 12-1246-2 sign \x434C 135-34-5 sign \x434D 13-34-4 sign \x434E 245-123456-5 sign \x4350 1235-1236-4 sign \x4351 1235-1236-4 sign \x4352 134-12356-4 sign \x4353 1235-34-5 sign \x4354 1235-12346-2 sign \x4355 145-16-4 sign \x4356 12345-34-2 sign \x4357 15-45-5 sign \x4358 134-16-2 sign \x4359 134-356-2 sign \x435A 14-1346-5 sign \x435B 13-34-5 sign \x435C 1-146-5 sign \x435D 124-345-5 sign \x435E 1256-5 sign \x435F 125-12346-5 sign \x4360 14-16-2 sign \x4361 14-246-5 sign \x4362 34-2 sign \x4363 14-356-2 sign \x4364 13-16-4 sign \x4365 14-356-5 sign \x4366 14-16-2 sign \x4368 135-126-2 sign \x4369 46-4 sign \x436A 123-1246-5 sign \x436B 124-25-2 sign \x436E 1-146-5 sign \x436F 13-1246-4 sign \x4371 15-1256-2 sign \x4372 1345-2456-2 sign \x4373 12-25-5 sign \x4374 145-25-5 sign \x4376 145-12346-5 sign \x4377 13-1246-5 sign \x4378 135-126-2 sign \x437A 1235-12456-2 sign \x437B 15-45-4 sign \x437C 245-1236-2 sign \x437D 14-16-5 sign \x437E 124-1246-2 sign \x437F 1235-456-2 sign \x4380 15-236-5 sign \x4381 1235-34-2 sign \x4382 135-146-4 sign \x4383 1245-1236-4 sign \x4384 124-246-2 sign \x4385 12345-34-5 sign \x4386 14-246-5 sign \x4388 16-5 sign \x4389 24-34-5 sign \x438A 1234-126-5 sign \x438B 1235-2346-5 sign \x438C 245-34-5 sign \x438E 1345-345-5 sign \x438F 1236-5 sign \x4390 12-146-4 sign \x4391 14-34-5 sign \x4392 1-1236-4 sign \x4393 124-345-5 sign \x4397 245-246-2 sign \x4398 15-34-5 sign \x439A 13-12456-5 sign \x439D 12-34-2 sign \x439F 156-2 sign \x43A0 156-2 sign \x43A1 1345-12456-4 sign \x43A2 245-16-4 sign \x43A3 15-156-5 sign \x43A4 12-34-2 sign \x43A6 2345-4 sign \x43A7 135-1346-5 sign \x43A8 1236-5 sign \x43AA 1345-2346-5 sign \x43AB 12-456-5 sign \x43AC 1234-345-2 sign \x43AE 124-16-5 sign \x43AF 1235-1236-5 sign \x43B0 125-25-2 sign \x43B1 1234-345-2 sign \x43B2 1-2346-2 sign \x43B3 35-5 sign \x43B4 24-1356-5 sign \x43B5 135-16-5 sign \x43B6 156-5 sign \x43B7 1-34-5 sign \x43B8 34-5 sign \x43B9 123456-2 sign \x43BA 1-156-4 sign \x43BB 1-12356-4 sign \x43BC 14-34-5 sign \x43BD 123456-2 sign \x43BE 13-123456-4 sign \x43BF 245-234-2 sign \x43C0 14-345-5 sign \x43C1 125-2456-4 sign \x43C2 15-12356-4 sign \x43C3 134-2345-2 sign \x43C4 1-156-5 sign \x43C5 245-16-5 sign \x43C6 245-146-2 sign \x43C7 1234-246-5 sign \x43C8 14-2345-2 sign \x43CA 14-12346-2 sign \x43CB 15-34-5 sign \x43CC 245-16-5 sign \x43CD 45-5 sign \x43CE 12345-1356-2 sign \x43D0 13-236-2 sign \x43D1 145-16-5 sign \x43D2 1234-2345-5 sign \x43D3 13-12456-4 sign \x43D4 1345-234-4 sign \x43D5 1245-136-4 sign \x43D6 1-136-5 sign \x43D7 13-2456-5 sign \x43D8 1234-16-4 sign \x43D9 124-1236-4 sign \x43DA 12-146-4 sign \x43DB 12-123456-4 sign \x43DD 12-123456-2 sign \x43DE 134-126-5 sign \x43DF 135-346-5 sign \x43E0 245-16-5 sign \x43E1 24-156-5 sign \x43E2 135-16-4 sign \x43E3 13-236-2 sign \x43E4 15-156-5 sign \x43E6 1235-35-2 sign \x43E7 1345-345-2 sign \x43E8 1235-1246-4 sign \x43EA 156-5 sign \x43EC 134-12356-2 sign \x43EE 15-16-2 sign \x43EF 1-156-5 sign \x43F0 1245-136-4 sign \x43F1 13-1256-2 sign \x43F2 145-346-2 sign \x43F3 1-2346-5 sign \x43F4 24-146-5 sign \x43F5 134-1356-4 sign \x43F6 135-16-5 sign \x43F7 1235-1236-5 sign \x43F8 1256-2 sign \x43F9 15-2345-5 sign \x43FB 1345-1356-2 sign \x43FC 245-1236-2 sign \x43FD 135-34-5 sign \x43FF 245-16-4 sign \x4400 13-16-5 sign \x4401 1345-246-4 sign \x4402 14-34-5 sign \x4403 13-235-4 sign \x4404 1235-1236-5 sign \x4405 16-2 sign \x4406 245-2456-4 sign \x4407 12-123456-2 sign \x4408 1-156-2 sign \x4409 125-156-5 sign \x440A 145-345-2 sign \x440C 124-2345-4 sign \x440D 1-12356-5 sign \x440F 12-123456-4 sign \x4411 1-2346-2 sign \x4413 1245-12356-2 sign \x4414 135-1456-5 sign \x4415 13-16-2 sign \x4416 16-2 sign \x4417 145-34-4 sign \x4418 13-236-2 sign \x4419 13-2346-2 sign \x441A 13-16-2 sign \x441D 15-25-4 sign \x441E 1245-25-5 sign \x441F 15-46-5 sign \x4420 1235-456-4 sign \x4421 245-16-2 sign \x4422 1-34-5 sign \x4423 245-25-5 sign \x4424 12-156-2 sign \x4425 12346-4 sign \x4427 123-146-5 sign \x4428 13-34-4 sign \x4429 123-2456-4 sign \x442A 12345-1236-5 sign \x442C 245-146-2 sign \x442D 1-156-5 sign \x442E 12-1236-4 sign \x442F 14-356-2 sign \x4432 1-2346-2 sign \x4433 1256-2 sign \x4434 13-1246-5 sign \x4435 1235-456-2 sign \x4436 13-1456-4 sign \x4438 13-25-2 sign \x4439 15-146-5 sign \x443A 124-1236-5 sign \x443C 15-16-5 sign \x443D 134-1236-2 sign \x443E 145-25-2 sign \x443F 146-2 sign \x4440 1234-16-5 sign \x4441 34-5 sign \x4442 2456-4 sign \x4443 134-1356-2 sign \x4444 1234-16-5 sign \x4445 134-1356-2 sign \x4446 46-4 sign \x4447 1-156-5 sign \x4448 135-126-2 sign \x4449 13456-2 sign \x444A 1246-2 sign \x444B 1345-146-2 sign \x444C 14-1236-2 sign \x444D 2345-5 sign \x444E 12-1236-4 sign \x444F 245-45-2 sign \x4450 1-136-4 sign \x4451 1234-34-2 sign \x4453 124-2456-2 sign \x4454 12345-356-5 sign \x4455 24-34-4 sign \x4457 145-1346-5 sign \x4458 12-345-2 sign \x4459 1245-1236-2 sign \x445A 124-2345-2 sign \x445B 12-156-4 sign \x445C 124-345-5 sign \x445D 13-23456-4 sign \x445E 24-123456-5 sign \x445F 1235-456-2 sign \x4460 14-246-4 sign \x4464 13-1456-5 sign \x4465 2346-5 sign \x4467 12345-34-2 sign \x4468 145-25-5 sign \x446A 2346-5 sign \x446C 246-5 sign \x446D 145-16-5 sign \x446F 145-16-5 sign \x4470 135-34-5 sign \x4471 134-1236-2 sign \x4472 12-2346-5 sign \x4473 14-123456-2 sign \x4474 245-16-2 sign \x4475 134-34-5 sign \x4476 245-1236-2 sign \x447B 234-2 sign \x447D 145-345-2 sign \x447F 15-34-5 sign \x4480 12345-34-2 sign \x4481 13-16-5 sign \x4482 13-46-4 sign \x4483 245-146-5 sign \x4484 135-126-2 sign \x4485 124-1356-2 sign \x4486 12-2346-5 sign \x4487 12345-34-5 sign \x4488 135-34-4 sign \x4489 34-4 sign \x448B 46-4 sign \x448C 134-13456-5 sign \x448D 1234-1346-4 sign \x448E 134-1346-4 sign \x4490 134-1356-2 sign \x4491 235678-45 sign \x4492 124-246-2 sign \x4493 123-2456-4 sign \x4494 135-2456-5 sign \x4495 15-246-4 sign \x4496 15-1456-5 sign \x4497 245-16-5 sign \x449A 24-146-4 sign \x449B 1235-1356-2 sign \x449C 1345-234-2 sign \x449D 15-246-2 sign \x449E 12-136-2 sign \x44A0 12345-1236-4 sign \x44A1 1456-4 sign \x44A2 1346-2 sign \x44A3 1245-1236-4 sign \x44A4 1245-156-5 sign \x44A5 12345-345-5 sign \x44A6 12345-1236-5 sign \x44A7 245-1256-5 sign \x44A8 24-156-4 sign \x44A9 1235-2346-2 sign \x44AA 135-2345-5 sign \x44AB 145-2456-5 sign \x44AC 134-126-5 sign \x44AD 145-1356-4 sign \x44B2 12-345-5 sign \x44B3 145-25-4 sign \x44B4 234-4 sign \x44B5 1235-146-5 sign \x44B7 123-2356-5 sign \x44B8 15-2345-2 sign \x44B9 14-356-5 sign \x44BA 13-1456-4 sign \x44BB 245-16-4 sign \x44BD 134-356-2 sign \x44C2 2345-2 sign \x44C3 16-5 sign \x44C4 1456-2 sign \x44C5 245-16-2 sign \x44C6 1-2346-2 sign \x44C7 15-16-5 sign \x44C8 16-5 sign \x44C9 346-2 sign \x44CA 2346-5 sign \x44CC 1-156-5 sign \x44CD 1235-1236-4 sign \x44CE 12-25-5 sign \x44D0 12-123456-2 sign \x44D1 135-13456-4 sign \x44D2 123-2356-4 sign \x44D3 12-12356-2 sign \x44D5 124-25-4 sign \x44D6 245-235-2 sign \x44D8 13-234-5 sign \x44DA 245-34-2 sign \x44DB 12345-34-4 sign \x44DD 134-1356-2 sign \x44DE 14-16-5 sign \x44DF 14-346-5 sign \x44E0 124-345-5 sign \x44E2 13-34-5 sign \x44E3 14-46-4 sign \x44E5 14-345-5 sign \x44E6 145-2345-4 sign \x44E7 245-156-5 sign \x44EA 46-2 sign \x44EB 13-16-5 sign \x44ED 12-345-5 sign \x44EE 134-146-5 sign \x44EF 145-34-2 sign \x44F1 12-2456-2 sign \x44F2 1245-1246-5 sign \x44F3 1235-136-4 sign \x44F4 1245-12456-2 sign \x44F6 14-2456-5 sign \x44F7 15-13456-5 sign \x44F9 16-5 sign \x44FA 134-356-4 sign \x44FC 1235-2346-5 sign \x44FD 13-16-5 sign \x44FF 1235-1236-4 sign \x4501 14-16-5 sign \x4502 125-156-4 sign \x4503 125-34-4 sign \x4504 246-2 sign \x4506 14-16-2 sign \x4507 245-16-4 sign \x4508 13-1236-4 sign \x4509 14-16-5 sign \x450D 145-34-4 sign \x450E 15-34-5 sign \x450F 12-12356-5 sign \x4511 15-346-2 sign \x4512 135-356-5 sign \x4513 15-1256-4 sign \x4514 13-13456-5 sign \x4515 1234-34-2 sign \x4516 14-13456-2 sign \x4517 15-46-2 sign \x4518 125-25-5 sign \x4519 145-246-5 sign \x451A 12-123456-2 sign \x451B 245-13456-4 sign \x451C 1345-1236-2 sign \x451E 14-1256-5 sign \x451F 12-156-2 sign \x4520 24-146-4 sign \x4521 1256-2 sign \x4522 1235-35-2 sign \x4523 14-16-2 sign \x4527 14-16-2 sign \x452A 145-1246-5 sign \x452C 16-5 sign \x452D 1345-13456-5 sign \x452F 1235-34-2 sign \x4530 12345-34-2 sign \x4532 12-1356-2 sign \x4533 1345-1236-4 sign \x4534 245-2346-5 sign \x4536 124-16-2 sign \x4537 245-1456-2 sign \x4538 135-246-4 sign \x4539 15-1246-5 sign \x453A 1246-2 sign \x453C 15-2346-5 sign \x453D 2456-5 sign \x453E 2346-5 sign \x453F 13-346-5 sign \x4540 123-12456-4 sign \x4541 12345-356-4 sign \x4543 1456-5 sign \x4545 15-146-4 sign \x4546 145-12356-5 sign \x4547 1235-1246-5 sign \x4548 15-346-5 sign \x4549 125-2346-2 sign \x454A 124-1236-2 sign \x454B 12-1346-4 sign \x454C 1-156-5 sign \x454D 16-5 sign \x454E 12345-34-2 sign \x454F 2346-2 sign \x4551 13-256-5 sign \x4553 12-345-2 sign \x4554 15-2345-2 sign \x4555 134-1236-5 sign \x4557 135-16-5 sign \x4558 14-13456-2 sign \x4559 13-346-2 sign \x455A 123-1246-5 sign \x455B 13-23456-2 sign \x455E 14-1346-5 sign \x4560 12345-356-5 sign \x4561 14-34-4 sign \x4562 1-345-4 sign \x4563 1235-2346-2 sign \x4565 1345-16-4 sign \x4566 13456-2 sign \x4567 15-246-5 sign \x4568 124-1356-2 sign \x4569 14-146-4 sign \x456A 125-2346-2 sign \x456B 123-1246-2 sign \x456D 15-256-2 sign \x456E 13-1256-2 sign \x456F 1234-246-2 sign \x4570 135-1236-5 sign \x4571 145-12356-4 sign \x4572 14-1456-4 sign \x4573 134-16-2 sign \x4574 1-25-2 sign \x4575 15-346-2 sign \x4576 1235-34-5 sign \x4577 134-16-2 sign \x4578 13-346-3 sign \x4579 125-345-2 sign \x457A 245-12346-2 sign \x457B 13-2346-2 sign \x457C 1345-1236-2 sign \x457D 1-34-2 sign \x457E 2345-2 sign \x457F 1235-1236-5 sign \x4581 16-5 sign \x4582 14-12456-2 sign \x4583 236-5 sign \x4584 1245-1236-2 sign \x4585 14-13456-2 sign \x4586 1345-46-5 sign \x4587 1256-5 sign \x4588 1345-236-5 sign \x458A 16-2 sign \x458B 1345-236-5 sign \x458C 245-1456-2 sign \x458D 245-2345-2 sign \x458E 15-23456-2 sign \x458F 12-34-4 sign \x4590 13-1456-5 sign \x4591 134-16-5 sign \x4593 1345-345-5 sign \x4594 1235-1236-5 sign \x4595 125-34-4 sign \x4596 15-23456-2 sign \x4597 2345-2 sign \x4598 124-34-2 sign \x459B 15-25-4 sign \x459C 1456-2 sign \x459D 12-12346-2 sign \x459E 1-12356-4 sign \x459F 134-1346-4 sign \x45A0 45-2 sign \x45A1 1345-1256-5 sign \x45A2 134-246-2 sign \x45A3 15-146-5 sign \x45A4 12456-4 sign \x45A5 14-16-2 sign \x45A7 1345-345-5 sign \x45A8 24-156-2 sign \x45A9 135-16-5 sign \x45AA 245-156-2 sign \x45AB 135-1346-5 sign \x45AD 13-45-5 sign \x45AE 15-46-4 sign \x45AF 13-1246-5 sign \x45B0 1234-2456-5 sign \x45B2 15-256-2 sign \x45B3 1-345-5 sign \x45B4 246-2 sign \x45B8 2346-2 sign \x45B9 46-2 sign \x45BA 124-246-2 sign \x45BB 234-2 sign \x45BC 13-236-2 sign \x45BD 14-16-2 sign \x45BF 14-16-2 sign \x45C1 13-16-5 sign \x45C2 1235-34-4 sign \x45C3 1-1236-5 sign \x45C4 12345-34-4 sign \x45C5 12-1346-2 sign \x45C6 13-12456-4 sign \x45C7 13-1256-2 sign \x45C8 134-1356-2 sign \x45CA 12-1356-2 sign \x45CB 134-12356-2 sign \x45CD 14-16-4 sign \x45D1 16-5 sign \x45D2 135-13456-5 sign \x45D4 1235-12356-2 sign \x45D5 12456-4 sign \x45D6 12-156-5 sign \x45D8 13-2346-2 sign \x45D9 1235-1236-2 sign \x45DA 135-126-2 sign \x45DC 14-234-2 sign \x45DD 245-1236-2 sign \x45DE 245-1236-2 sign \x45DF 16-5 sign \x45E0 15-45-2 sign \x45E1 2345-2 sign \x45E2 15-25-4 sign \x45E3 13-146-4 sign \x45E4 235-2 sign \x45E8 1256-2 sign \x45EA 1-2346-5 sign \x45EB 134-345-2 sign \x45EE 24-456-4 sign \x45EF 13-1456-5 sign \x45F0 13-12456-5 sign \x45F1 1234-34-2 sign \x45F2 14-1456-5 sign \x45F4 124-13456-2 sign \x45F6 14-345-5 sign \x45F7 16-5 sign \x45F9 245-156-5 sign \x45FA 2345-4 sign \x45FB 13-346-2 sign \x45FD 1246-5 sign \x45FE 15-2345-4 sign \x45FF 1345-13456-2 sign \x4600 12345-34-5 sign \x4601 13-2346-2 sign \x4603 134-126-5 sign \x4604 12345-34-5 sign \x4605 1345-2456-2 sign \x4606 15-2345-4 sign \x4607 123456-2 sign \x4608 14-16-5 sign \x4609 245-1236-2 sign \x460A 134-346-5 sign \x460C 1345-16-5 sign \x460D 12-2456-5 sign \x460F 15-1256-5 sign \x4610 1345-1256-5 sign \x4611 134-2456-5 sign \x4613 123-1236-5 sign \x4615 1235-1346-2 sign \x4618 1256-5 sign \x4619 1246-5 sign \x461A 125-34-2 sign \x461D 16-5 sign \x4620 12345-34-2 sign \x4621 135-16-4 sign \x4622 1-34-4 sign \x4623 125-156-4 sign \x4624 24-34-5 sign \x4625 15-23456-2 sign \x4626 1345-16-2 sign \x4628 13-246-4 sign \x4629 15-45-5 sign \x462B 1345-12356-5 sign \x462C 1245-12346-2 sign \x462D 145-346-2 sign \x462E 15-1346-3 sign \x4631 1256-5 sign \x4633 13-1456-3 sign \x4635 14-34-5 sign \x4636 1235-1236-5 sign \x4638 16-5 sign \x4639 125-1246-5 sign \x463A 1-1236-5 sign \x463B 15-34-5 sign \x463C 12456-4 sign \x463D 1345-16-2 sign \x463E 13-12456-4 sign \x463F 13-236-2 sign \x4640 135-1356-4 sign \x4641 245-1236-2 sign \x4643 145-25-5 sign \x4644 245-16-5 sign \x4645 246-5 sign \x4646 13-1246-5 sign \x4647 1345-12456-4 sign \x4648 1235-12356-2 sign \x4649 15-256-2 sign \x464A 15-346-5 sign \x464C 1235-1246-5 sign \x464E 15-346-2 sign \x464F 135-126-2 sign \x4650 123-2346-5 sign \x4652 15-1256-5 sign \x4653 135-2456-4 sign \x4655 12-34-5 sign \x4657 124-16-5 sign \x4658 12-34-4 sign \x4659 12-156-2 sign \x465A 1345-246-4 sign \x465B 13-12456-5 sign \x465C 12345-1356-2 sign \x465D 15-346-5 sign \x465F 145-25-5 sign \x4660 13-236-2 sign \x4661 1235-1246-5 sign \x4662 125-1356-5 sign \x4663 15-345-5 sign \x4664 145-25-4 sign \x4665 14-13456-2 sign \x4666 134-1356-2 sign \x4668 13-25-4 sign \x4669 134-1356-2 sign \x466A 14-12346-2 sign \x466C 13456-5 sign \x466E 13-12456-5 sign \x466F 245-34-5 sign \x4670 14-16-2 sign \x4671 145-34-2 sign \x4673 2346-5 sign \x4677 145-2346-2 sign \x4678 145-2346-2 sign \x4679 13-46-4 sign \x467A 14-2345-2 sign \x467C 24-146-5 sign \x467D 15-16-5 sign \x467F 1246-5 sign \x4682 1235-2346-5 sign \x4683 234-2 sign \x4684 14-34-5 sign \x4685 14-2456-2 sign \x4686 12356-4 sign \x4687 24-1356-4 sign \x4688 13-45-5 sign \x4689 245-16-5 sign \x468B 256-5 sign \x468D 245-16-5 sign \x468F 14-1356-5 sign \x4690 13-16-2 sign \x4691 134-2456-2 sign \x4692 12-456-2 sign \x4693 1345-2345-4 sign \x4695 14-16-5 sign \x4696 14-13456-2 sign \x4698 12-136-2 sign \x469A 15-2345-4 sign \x469B 1235-34-2 sign \x469D 125-34-2 sign \x469E 145-2456-4 sign \x469F 145-2456-4 sign \x46A0 1235-123456-5 sign \x46A2 12-2346-5 sign \x46A3 124-16-2 sign \x46A5 1345-25-5 sign \x46A6 1-156-5 sign \x46A7 14-234-2 sign \x46A8 12345-356-5 sign \x46A9 13-246-4 sign \x46AB 146-2 sign \x46AC 14-1456-2 sign \x46AE 1245-1356-2 sign \x46AF 124-146-4 sign \x46B0 1234-16-4 sign \x46B1 15-1456-5 sign \x46B2 24-1236-5 sign \x46B3 15-346-5 sign \x46B4 35-5 sign \x46B5 124-146-4 sign \x46B7 15-16-5 sign \x46B8 15-346-5 sign \x46B9 1234-16-4 sign \x46BA 246-2 sign \x46BB 246-2 sign \x46BC 1345-1256-5 sign \x46BD 1235-146-5 sign \x46BE 1345-1456-2 sign \x46BF 1456-5 sign \x46C0 12345-1236-4 sign \x46C1 1345-1236-2 sign \x46C2 12-156-2 sign \x46C3 456-5 sign \x46C4 45-4 sign \x46C5 15-23456-2 sign \x46C6 1-12356-5 sign \x46C7 45-4 sign \x46C8 24-156-5 sign \x46C9 134-16-5 sign \x46CB 13-2346-2 sign \x46CC 1234-146-2 sign \x46CD 12345-356-5 sign \x46CE 1235-34-5 sign \x46CF 1345-16-2 sign \x46D0 245-156-2 sign \x46D1 134-16-5 sign \x46D2 135-2345-5 sign \x46D4 1345-345-2 sign \x46D5 1256-5 sign \x46D6 2346-5 sign \x46D7 1-156-4 sign \x46D8 1345-1456-2 sign \x46D9 15-1256-5 sign \x46DA 14-236-5 sign \x46DB 1235-1246-5 sign \x46DC 15-256-5 sign \x46DD 1345-146-2 sign \x46DE 1235-1236-4 sign \x46DF 13-23456-2 sign \x46E0 145-12356-5 sign \x46E1 1235-35-5 sign \x46E4 245-34-5 sign \x46E5 15-16-5 sign \x46E6 15-12346-5 sign \x46E7 134-16-2 sign \x46E8 15-1456-5 sign \x46E9 34-5 sign \x46EA 245-235-2 sign \x46EB 1-1356-5 sign \x46EC 12-12356-2 sign \x46ED 15-13456-5 sign \x46EE 13-234-5 sign \x46EF 13-1256-5 sign \x46F0 1235-123456-2 sign \x46F1 124-16-2 sign \x46F2 134-1236-2 sign \x46F3 13-2345-4 sign \x46F4 245-16-4 sign \x46F5 24-12356-5 sign \x46F6 14-356-4 sign \x46F7 12456-4 sign \x46F8 12-2346-5 sign \x46F9 245-1236-5 sign \x46FA 13-346-5 sign \x46FB 234-5 sign \x46FC 1235-1246-4 sign \x46FD 1-345-4 sign \x46FE 15-34-5 sign \x46FF 13-2346-2 sign \x4700 1345-146-4 sign \x4701 15-16-5 sign \x4704 12-156-2 sign \x4705 1246-2 sign \x4706 134-126-5 sign \x4707 13-123456-4 sign \x470A 125-146-5 sign \x470B 1235-1246-5 sign \x470C 14-12456-2 sign \x470D 14-246-2 sign \x470E 14-146-2 sign \x4711 245-23456-5 sign \x4712 146-5 sign \x4713 1345-346-5 sign \x4714 15-1246-2 sign \x4715 134-2456-5 sign \x4716 124-1236-5 sign \x4717 15-1456-5 sign \x4718 13-13456-4 sign \x4719 1236-2 sign \x471A 124-345-5 sign \x471B 12-1236-2 sign \x471C 1246-5 sign \x471D 124-12456-4 sign \x471E 13-16-5 sign \x471F 12-136-2 sign \x4720 12-2346-5 sign \x4721 15-1256-5 sign \x4722 15-2345-4 sign \x4723 15-1456-3 sign \x4727 1345-146-4 sign \x4729 2345-5 sign \x472A 245-234-2 sign \x472B 1235-12346-2 sign \x472C 15-12346-4 sign \x472D 13-256-5 sign \x472E 14-246-2 sign \x472F 13-1256-2 sign \x4731 134-1236-4 sign \x4732 14-346-5 sign \x4734 12-34-5 sign \x4735 12-156-4 sign \x4736 15-46-2 sign \x4738 134-356-4 sign \x4739 24-34-5 sign \x473A 245-2346-5 sign \x473B 12-156-4 sign \x473C 13-34-2 sign \x473D 1256-2 sign \x4740 14-246-2 sign \x4741 14-146-2 sign \x4742 24-34-5 sign \x4743 1-2346-2 sign \x4748 2346-5 sign \x474A 24-345-5 sign \x474B 125-12346-5 sign \x474C 13-236-2 sign \x474D 13-256-5 sign \x474F 14-12356-2 sign \x4750 1246-2 sign \x4752 1-34-5 sign \x4753 14-345-5 sign \x4754 1235-12456-3 sign \x4755 1-2346-2 sign \x4756 1-146-4 sign \x4758 16-5 sign \x475A 1345-16-2 sign \x475D 16-4 sign \x475E 1235-146-5 sign \x475F 23456-5 sign \x4760 1235-12456-2 sign \x4761 134-1236-5 sign \x4762 134-1236-5 sign \x4763 245-1256-2 sign \x4764 14-146-4 sign \x4765 1235-146-2 sign \x4767 134-136-2 sign \x4768 15-2345-2 sign \x4769 1-136-5 sign \x476A 24-34-2 sign \x476B 125-25-2 sign \x476C 1-34-5 sign \x476D 13-12356-5 sign \x476E 15-45-5 sign \x476F 16-5 sign \x4770 124-16-2 sign \x4772 13-1456-5 sign \x4773 245-1236-2 sign \x4775 135-34-5 sign \x4776 14-46-2 sign \x4777 1-156-5 sign \x4778 13-16-5 sign \x4779 12456-4 sign \x477A 13-12456-5 sign \x477C 245-13456-2 sign \x477D 2456-5 sign \x477E 12345-34-5 sign \x477F 13-1246-5 sign \x4780 13-12356-5 sign \x4781 15-2345-5 sign \x4782 1245-12456-4 sign \x4783 1-156-5 sign \x4784 135-246-5 sign \x4785 16-2 sign \x4786 15-25-4 sign \x4787 145-346-2 sign \x4788 13-1246-4 sign \x4789 24-1356-5 sign \x478A 15-256-5 sign \x478B 12-136-5 sign \x478C 24-2346-2 sign \x478D 245-13456-2 sign \x4790 12-123456-4 sign \x4791 1235-12346-2 sign \x4792 145-12346-5 sign \x4793 12-1356-3 sign \x4794 1246-4 sign \x4795 145-346-2 sign \x4796 24-34-4 sign \x4798 13-16-2 sign \x4799 125-345-2 sign \x479A 245-16-2 sign \x479C 12345-34-5 sign \x479D 146-4 sign \x479E 12345-34-2 sign \x479F 1234-126-5 sign \x47A1 124-1236-4 sign \x47A2 1-345-5 sign \x47A3 12-2346-4 sign \x47A4 245-1256-2 sign \x47A5 234-5 sign \x47A6 1235-2346-2 sign \x47A7 1235-12356-5 sign \x47A8 13-1246-4 sign \x47A9 2346-5 sign \x47AA 13-46-5 sign \x47AB 256-4 sign \x47AC 124-12356-5 sign \x47AD 245-234-4 sign \x47AF 12345-34-5 sign \x47B0 125-25-2 sign \x47B1 1235-34-2 sign \x47B3 135-126-2 sign \x47B5 13-236-4 sign \x47B6 145-16-5 sign \x47B7 13-236-2 sign \x47B8 12345-34-5 sign \x47B9 1235-456-2 sign \x47BB 235-4 sign \x47BC 12-1246-4 sign \x47BD 15-25-4 sign \x47BE 12-156-2 sign \x47C2 134-1236-2 sign \x47C3 245-345-5 sign \x47C4 245-16-5 sign \x47C5 13-2345-5 sign \x47C6 135-16-5 sign \x47C8 1-156-2 sign \x47C9 1-34-2 sign \x47CA 245-1256-2 sign \x47CB 1-1236-4 sign \x47CC 13-16-2 sign \x47CD 145-2345-2 sign \x47CF 14-16-5 sign \x47D0 14-16-5 sign \x47D1 14-345-4 sign \x47D2 245-45-2 sign \x47D4 12345-34-5 sign \x47D5 12-345-5 sign \x47D6 124-1346-5 sign \x47D7 24-156-5 sign \x47D8 1235-1346-5 sign \x47D9 245-346-5 sign \x47DA 245-16-2 sign \x47DB 135-126-2 sign \x47DC 1345-345-5 sign \x47DD 124-12356-5 sign \x47DE 12-34-2 sign \x47DF 245-34-5 sign \x47E0 236-5 sign \x47E1 1-156-3 sign \x47E2 12-136-2 sign \x47E3 12-34-5 sign \x47E4 135-16-5 sign \x47E5 134-1346-2 sign \x47E6 135-345-2 sign \x47E7 124-2345-2 sign \x47E8 134-1456-2 sign \x47E9 14-346-4 sign \x47EA 12345-1356-4 sign \x47EB 12-1356-3 sign \x47EC 245-234-5 sign \x47ED 124-246-2 sign \x47EE 12345-34-2 sign \x47EF 123-25-5 sign \x47F0 13-2345-4 sign \x47F4 1-136-5 sign \x47F5 245-234-2 sign \x47F6 245-25-5 sign \x47F7 12-156-5 sign \x47F8 123-1246-2 sign \x47F9 14-346-5 sign \x47FA 135-1346-4 sign \x47FB 145-34-5 sign \x47FC 34-4 sign \x47FE 13-236-4 sign \x47FF 14-34-5 sign \x4800 124-1346-5 sign \x4802 12-34-2 sign \x4803 14-46-4 sign \x4804 124-2345-4 sign \x4805 123-123456-4 sign \x4806 12-1346-2 sign \x4807 13-236-2 sign \x4808 124-34-2 sign \x4809 1235-35-5 sign \x480A 12345-356-5 sign \x480B 135-16-4 sign \x480D 245-23456-2 sign \x480E 25-5 sign \x480F 13-16-5 sign \x4810 245-1256-5 sign \x4811 123-1246-4 sign \x4812 1235-34-2 sign \x4813 245-34-5 sign \x4814 15-1246-5 sign \x4817 245-234-5 sign \x4818 1234-16-5 sign \x4819 135-356-5 sign \x481A 35-5 sign \x481B 13-246-4 sign \x481C 1245-12346-2 sign \x481E 245-34-5 sign \x481F 145-346-2 sign \x4820 12-156-5 sign \x4821 245-25-2 sign \x4822 134-1356-5 sign \x4823 15-45-4 sign \x4824 145-25-4 sign \x4825 135-346-2 sign \x4826 1-2346-5 sign \x4827 12-34-2 sign \x4828 12-1236-5 sign \x4829 13-1246-5 sign \x482A 145-12456-5 sign \x482B 125-12356-5 sign \x482C 145-1356-5 sign \x482D 14-2456-2 sign \x482E 124-1356-2 sign \x482F 236-5 sign \x4830 245-45-2 sign \x4831 24-34-4 sign \x4832 14-13456-2 sign \x4834 245-1456-4 sign \x4835 12345-34-5 sign \x4836 24-2346-5 sign \x4837 124-246-4 sign \x4839 2456-2 sign \x483B 245-235-2 sign \x483C 145-246-5 sign \x483D 1235-2456-2 sign \x483E 24-1236-4 sign \x483F 2356-5 sign \x4840 1-1236-4 sign \x4841 14-12346-4 sign \x4842 13-234-5 sign \x4843 14-16-5 sign \x4845 134-1456-4 sign \x4846 1245-12346-2 sign \x4847 236-5 sign \x4848 13-236-2 sign \x4849 123-1346-4 sign \x484A 12345-1236-2 sign \x484B 245-16-2 sign \x484C 1235-12346-2 sign \x484D 12345-34-2 sign \x484E 14-34-2 sign \x484F 1235-12346-2 sign \x4850 124-25-2 sign \x4851 134-1456-2 sign \x4852 124-2345-2 sign \x4853 13-45-5 sign \x4854 245-16-4 sign \x4855 1-1356-4 sign \x4856 13-13456-5 sign \x4857 13-12346-4 sign \x4858 124-2345-2 sign \x4859 14-1346-2 sign \x485A 134-146-5 sign \x485B 1456-5 sign \x485C 14-34-5 sign \x485D 256-4 sign \x485E 13-1256-2 sign \x485F 1234-16-5 sign \x4861 15-346-2 sign \x4862 135-2345-5 sign \x4865 1245-12346-2 sign \x4866 15-1346-4 sign \x4867 34-4 sign \x4868 12-345-5 sign \x4869 13-34-4 sign \x486A 12-1236-2 sign \x486B 1234-1356-2 sign \x486C 134-1236-5 sign \x486F 24-456-5 sign \x4870 123-1356-4 sign \x4871 1-12456-4 sign \x4872 12-1236-2 sign \x4874 12-12346-3 sign \x4875 15-1246-5 sign \x4876 135-356-5 sign \x4877 123-2456-4 sign \x4879 1-156-5 sign \x487A 1246-5 sign \x487B 134-1456-2 sign \x487C 14-13456-2 sign \x487E 1345-356-5 sign \x487F 14-13456-2 sign \x4880 245-16-5 sign \x4881 236-5 sign \x4883 16-5 sign \x4884 15-16-4 sign \x4885 12-136-2 sign \x4887 1245-12346-4 sign \x4888 12-136-2 sign \x4889 1345-12346-2 sign \x488A 234-2 sign \x488B 13-16-5 sign \x488C 135-126-2 sign \x488D 12345-1346-4 sign \x4890 245-34-2 sign \x4891 145-16-4 sign \x4893 1256-2 sign \x4894 13-2346-2 sign \x4895 15-1256-5 sign \x4896 14-1256-5 sign \x4897 1235-2346-2 sign \x4899 135-2456-5 sign \x489A 13-12346-5 sign \x489B 13-235-4 sign \x489C 13-1246-3 sign \x489D 23456-5 sign \x489E 1345-34-5 sign \x489F 234-2 sign \x48A0 15-12346-5 sign \x48A1 15-346-5 sign \x48A2 245-1346-5 sign \x48A3 246-2 sign \x48A4 24-34-5 sign \x48A5 2345-2 sign \x48A6 24-2356-5 sign \x48A7 14-246-5 sign \x48A9 1256-5 sign \x48AA 135-126-2 sign \x48AB 15-1246-2 sign \x48AD 2345-5 sign \x48AE 14-356-5 sign \x48AF 14-1456-2 sign \x48B0 124-2456-2 sign \x48B1 145-34-2 sign \x48B2 236-5 sign \x48B3 13-16-4 sign \x48B5 256-2 sign \x48B9 13-1256-4 sign \x48BB 12-136-2 sign \x48BD 15-46-5 sign \x48BE 15-2345-4 sign \x48C0 13-1246-4 sign \x48C1 1256-4 sign \x48C2 14-356-4 sign \x48C3 15-346-5 sign \x48C4 124-34-2 sign \x48C5 12-136-2 sign \x48C6 15-13456-2 sign \x48C7 245-234-2 sign \x48C8 1235-1346-5 sign \x48CA 145-1346-4 sign \x48CB 245-2456-4 sign \x48CC 145-16-4 sign \x48CD 2345-4 sign \x48D1 12-1236-2 sign \x48D3 14-16-2 sign \x48D4 15-25-4 sign \x48D5 134-345-4 sign \x48D6 134-345-4 sign \x48D8 124-1346-2 sign \x48D9 1234-356-2 sign \x48DA 14-12356-2 sign \x48DB 15-16-3 sign \x48DC 245-25-2 sign \x48DD 124-34-2 sign \x48DE 2346-5 sign \x48DF 245-1236-2 sign \x48E0 13-346-2 sign \x48E1 124-16-2 sign \x48E2 13-16-2 sign \x48E3 145-1346-4 sign \x48E4 13-246-5 sign \x48E5 135-16-4 sign \x48E6 14-356-5 sign \x48E7 16-5 sign \x48E8 12-123456-2 sign \x48E9 12-123456-2 sign \x48EA 1234-126-5 sign \x48EB 14-16-2 sign \x48EC 125-2456-4 sign \x48ED 124-2456-5 sign \x48EE 1234-126-5 sign \x48EF 124-2345-4 sign \x48F0 13-1256-5 sign \x48F1 15-1256-5 sign \x48F2 12345-1236-5 sign \x48F4 15-1256-5 sign \x48F5 156-5 sign \x48F6 1235-25-2 sign \x48F8 1245-1236-4 sign \x48F9 12345-345-2 sign \x48FC 14-46-2 sign \x48FD 124-16-4 sign \x48FE 134-16-5 sign \x4901 245-136-2 sign \x4902 134-356-2 sign \x4903 1456-5 sign \x4904 134-2345-4 sign \x4905 124-34-2 sign \x4906 123-1246-2 sign \x4909 134-16-5 sign \x490A 1245-12346-2 sign \x490B 13-25-2 sign \x490D 134-16-2 sign \x490E 13-1256-2 sign \x490F 1234-16-4 sign \x4910 13-1456-4 sign \x4911 456-5 sign \x4912 13-16-4 sign \x4913 134-1356-2 sign \x4914 13-2345-5 sign \x4915 15-236-5 sign \x4916 135-146-5 sign \x4917 13-1236-4 sign \x4918 12-1236-4 sign \x4919 14-16-5 sign \x491A 14-16-4 sign \x491B 245-234-2 sign \x491C 145-123456-5 sign \x491D 13456-5 sign \x491E 256-4 sign \x491F 12-136-2 sign \x4920 13-16-3 sign \x4921 1245-1236-4 sign \x4923 14-236-5 sign \x4925 13-1246-4 sign \x4926 236-5 sign \x4927 1235-1246-5 sign \x4928 1234-16-5 sign \x4929 12-345-2 sign \x492A 145-25-4 sign \x492B 12-1236-2 sign \x492D 123-12456-5 sign \x492E 24-2346-5 sign \x492F 15-13456-2 sign \x4930 12346-4 sign \x4931 24-156-5 sign \x4932 12-156-5 sign \x4933 346-5 sign \x4934 1235-1236-2 sign \x4935 12345-356-5 sign \x4936 346-5 sign \x4937 2345-2 sign \x4938 125-12456-5 sign \x493A 1456-4 sign \x493B 145-25-5 sign \x493C 15-2345-5 sign \x493F 245-346-5 sign \x4940 12-1236-4 sign \x4941 1235-1236-2 sign \x4942 134-1356-5 sign \x4943 236-5 sign \x4944 245-34-5 sign \x4945 245-2345-5 sign \x4946 13-1456-4 sign \x4947 24-1236-5 sign \x4948 134-34-4 sign \x494C 1-1356-5 sign \x494D 1-156-5 sign \x494E 12-123456-2 sign \x494F 1256-4 sign \x4950 134-12356-2 sign \x4951 12456-5 sign \x4952 12-12356-2 sign \x4954 15-34-5 sign \x4955 1234-346-4 sign \x4956 124-2345-2 sign \x4957 123-12456-4 sign \x4958 245-34-5 sign \x4959 15-1246-5 sign \x495B 13-346-2 sign \x495C 13-2345-5 sign \x495D 146-2 sign \x495E 13-246-4 sign \x495F 346-5 sign \x4961 346-5 sign \x4962 14-12346-2 sign \x4963 125-146-2 sign \x4964 135-146-2 sign \x4965 14-2345-2 sign \x4967 1235-12456-2 sign \x4968 14-1256-5 sign \x4969 1246-2 sign \x496A 15-2345-4 sign \x496B 124-346-4 sign \x496C 135-126-2 sign \x496D 1-1356-5 sign \x496E 1-34-2 sign \x496F 135-345-5 sign \x4970 134-1356-5 sign \x4971 15-346-4 sign \x4975 15-246-4 sign \x4976 14-16-5 sign \x4977 1-345-2 sign \x4978 134-16-2 sign \x497A 346-2 sign \x497E 15-346-4 sign \x4982 24-1236-5 sign \x4985 24-1236-5 sign \x4986 13-236-2 sign \x4987 13-16-5 sign \x4988 12345-1346-4 sign \x498A 1345-246-4 sign \x498B 146-2 sign \x498C 12-34-5 sign \x498D 34-5 sign \x498E 13-12456-4 sign \x498F 15-346-5 sign \x4990 124-13456-4 sign \x4991 15-346-5 sign \x4992 145-1346-5 sign \x4994 124-1236-4 sign \x4996 15-23456-2 sign \x4997 15-1256-5 sign \x4998 135-16-5 sign \x4999 15-156-5 sign \x499A 1235-25-5 sign \x499B 1-1356-5 sign \x499C 34-2 sign \x499E 1245-123456-5 sign \x499F 12-2356-5 sign \x49A0 24-156-4 sign \x49A1 1235-12456-2 sign \x49A2 123-25-5 sign \x49A3 12345-34-5 sign \x49A4 12-2356-5 sign \x49A5 15-2345-2 sign \x49A6 245-1456-2 sign \x49A7 245-346-2 sign \x49A8 14-1236-2 sign \x49AA 23456-5 sign \x49AC 245-236-5 sign \x49AE 12-123456-4 sign \x49AF 1-156-5 sign \x49B1 123-1246-4 sign \x49B2 245-2345-5 sign \x49B3 1235-1346-5 sign \x49B4 16-5 sign \x49B5 1345-16-4 sign \x49B6 1-1356-5 sign \x49B7 12-2356-5 sign \x49B9 24-156-2 sign \x49BB 245-156-5 sign \x49BC 13-236-2 sign \x49BD 15-1256-5 sign \x49BE 256-4 sign \x49C1 12-34-5 sign \x49C2 145-146-5 sign \x49C3 145-2345-5 sign \x49C4 13-2346-5 sign \x49C5 124-16-5 sign \x49C6 1235-12346-2 sign \x49C7 1345-16-4 sign \x49C9 14-16-4 sign \x49CB 15-2345-4 sign \x49CD 15-16-5 sign \x49CE 15-45-5 sign \x49D2 14-2456-2 sign \x49D4 134-34-5 sign \x49D5 12-1356-2 sign \x49D6 13-2345-5 sign \x49D7 135-16-5 sign \x49D8 245-16-2 sign \x49D9 14-13456-2 sign \x49DA 1235-146-5 sign \x49DB 135-1346-5 sign \x49DC 124-1346-2 sign \x49DD 145-16-5 sign \x49DE 12345-34-5 sign \x49DF 15-2345-5 sign \x49E0 24-12456-5 sign \x49E1 235-3 sign \x49E4 1234-34-2 sign \x49E5 1235-1246-5 sign \x49E6 1246-2 sign \x49E7 16-4 sign \x49E8 346-5 sign \x49EA 12-2346-5 sign \x49EB 1235-146-2 sign \x49EE 15-2345-4 sign \x49EF 12-1236-2 sign \x49F0 1235-123456-5 sign \x49F2 1235-1236-5 sign \x49F3 245-156-2 sign \x49F5 245-16-2 sign \x49F6 123-1246-2 sign \x49F7 1245-12356-2 sign \x49FA 15-235-2 sign \x49FC 1235-34-2 sign \x49FD 245-1246-4 sign \x49FF 245-236-5 sign \x4A00 145-16-2 sign \x4A01 12-2346-5 sign \x4A04 2345-5 sign \x4A05 14-246-2 sign \x4A06 135-16-2 sign \x4A0B 1345-236-5 sign \x4A0C 135-146-2 sign \x4A0D 13456-4 sign \x4A0E 1235-12346-2 sign \x4A0F 245-156-2 sign \x4A10 245-23456-5 sign \x4A11 124-16-2 sign \x4A12 1256-5 sign \x4A13 14-356-2 sign \x4A14 135-146-2 sign \x4A16 13-16-5 sign \x4A17 12345-34-2 sign \x4A18 15-2345-5 sign \x4A19 245-136-2 sign \x4A1B 15-2346-5 sign \x4A1E 1256-4 sign \x4A20 2456-4 sign \x4A21 1235-1236-2 sign \x4A22 145-1236-5 sign \x4A23 13-2346-2 sign \x4A24 145-16-2 sign \x4A25 1235-34-5 sign \x4A26 1234-1346-3 sign \x4A29 14-13456-2 sign \x4A2A 134-2456-2 sign \x4A2B 134-2456-5 sign \x4A2C 14-2345-2 sign \x4A2E 15-236-4 sign \x4A2F 1-136-5 sign \x4A30 1234-126-5 sign \x4A31 12345-34-5 sign \x4A32 1345-12356-2 sign \x4A33 15-16-5 sign \x4A34 145-1246-5 sign \x4A35 145-1236-5 sign \x4A36 256-4 sign \x4A37 15-2345-5 sign \x4A38 1456-4 sign \x4A3A 145-1246-5 sign \x4A3B 135-1356-5 sign \x4A3C 1235-34-5 sign \x4A3D 12345-356-4 sign \x4A3E 12345-356-4 sign \x4A3F 245-2345-2 sign \x4A40 135-356-5 sign \x4A43 24-156-5 sign \x4A44 124-2345-4 sign \x4A45 1-1236-4 sign \x4A46 13-2345-4 sign \x4A48 1235-1246-5 sign \x4A49 12345-34-4 sign \x4A4A 12456-4 sign \x4A4B 134-126-4 sign \x4A4C 245-246-2 sign \x4A4D 14-246-4 sign \x4A4F 134-346-5 sign \x4A50 13-2346-2 sign \x4A51 1235-12346-2 sign \x4A52 1256-2 sign \x4A53 245-16-2 sign \x4A54 145-25-5 sign \x4A55 1346-2 sign \x4A57 135-345-5 sign \x4A58 145-16-5 sign \x4A59 15-45-5 sign \x4A5A 145-16-5 sign \x4A5B 135-16-5 sign \x4A5C 1-12356-5 sign \x4A5D 1234-146-2 sign \x4A5E 1345-2345-2 sign \x4A5F 16-2 sign \x4A61 13-23456-2 sign \x4A62 145-345-2 sign \x4A63 145-25-4 sign \x4A64 15-16-5 sign \x4A65 145-1236-5 sign \x4A66 124-246-2 sign \x4A67 15-346-5 sign \x4A68 12-1346-5 sign \x4A69 45-4 sign \x4A6A 13-12456-4 sign \x4A6B 14-46-4 sign \x4A6C 135-1356-4 sign \x4A6D 13-16-3 sign \x4A6E 14-34-5 sign \x4A6F 13-16-2 sign \x4A70 15-45-5 sign \x4A71 24-34-5 sign \x4A73 24-34-4 sign \x4A74 1235-34-2 sign \x4A75 256-5 sign \x4A76 12-1236-4 sign \x4A78 1245-12346-2 sign \x4A79 2346-2 sign \x4A7B 135-345-5 sign \x4A7C 12345-1356-2 sign \x4A7E 1-2346-5 sign \x4A7F 12345-136-2 sign \x4A80 13-12456-4 sign \x4A81 135-34-4 sign \x4A82 13-2346-2 sign \x4A84 1235-456-2 sign \x4A85 145-34-2 sign \x4A86 124-16-4 sign \x4A87 135-126-2 sign \x4A88 245-2345-4 sign \x4A89 14-345-5 sign \x4A8A 14-12346-2 sign \x4A8B 1246-5 sign \x4A8C 1-1236-5 sign \x4A8D 14-1236-2 sign \x4A8F 1345-345-5 sign \x4A90 135-16-5 sign \x4A91 124-25-2 sign \x4A92 13-246-5 sign \x4A94 135-34-4 sign \x4A95 13-1256-2 sign \x4A96 1234-126-5 sign \x4A97 15-23456-2 sign \x4A98 1246-4 sign \x4A99 12345-34-2 sign \x4A9A 1235-2346-5 sign \x4A9B 12345-1236-2 sign \x4A9C 12-1236-5 sign \x4A9D 1235-34-5 sign \x4A9E 125-345-2 sign \x4AA4 12345-1236-2 sign \x4AA5 145-346-2 sign \x4AA6 1235-12346-2 sign \x4AA7 12-156-2 sign \x4AA8 135-146-2 sign \x4AA9 1456-2 sign \x4AAC 135-126-2 sign \x4AAD 1245-12456-4 sign \x4AAE 12-12356-4 sign \x4AAF 13456-2 sign \x4AB1 13-2456-4 sign \x4AB3 256-4 sign \x4AB4 1-136-4 sign \x4AB5 23456-4 sign \x4AB7 1235-12356-5 sign \x4AB8 134-1456-2 sign \x4AB9 1234-356-2 sign \x4ABA 13-2346-2 sign \x4ABB 135-2345-5 sign \x4ABD 1235-146-5 sign \x4ABE 134-16-2 sign \x4ABF 24-1356-4 sign \x4AC0 13-136-4 sign \x4AC1 135-16-5 sign \x4AC2 145-25-4 sign \x4AC3 12-123456-2 sign \x4AC4 12-35-5 sign \x4AC5 15-1236-5 sign \x4AC6 12-1356-2 sign \x4AC7 1245-1236-2 sign \x4AC8 125-136-5 sign \x4AC9 134-146-5 sign \x4ACA 135-126-2 sign \x4ACB 124-1246-2 sign \x4ACC 1234-16-4 sign \x4ACD 12345-34-4 sign \x4AD0 14-1456-2 sign \x4AD2 134-136-2 sign \x4AD3 34-2 sign \x4AD4 245-16-5 sign \x4AD5 1-156-5 sign \x4AD6 12-136-4 sign \x4AD7 15-23456-2 sign \x4AD8 1235-2346-2 sign \x4AD9 15-1346-4 sign \x4ADB 1235-12356-2 sign \x4ADD 12345-34-4 sign \x4ADE 1245-146-2 sign \x4ADF 1235-123456-2 sign \x4AE0 1234-356-2 sign \x4AE1 245-2345-5 sign \x4AE3 15-16-2 sign \x4AE4 134-13456-2 sign \x4AE5 123-1246-4 sign \x4AE6 13-2346-2 sign \x4AE8 146-5 sign \x4AE9 15-1236-4 sign \x4AEA 24-456-4 sign \x4AEB 14-12356-2 sign \x4AEC 1-136-4 sign \x4AED 1235-1246-5 sign \x4AEE 245-1236-2 sign \x4AF0 14-1456-5 sign \x4AF1 1345-345-2 sign \x4AF2 1235-1236-5 sign \x4AF3 145-34-2 sign \x4AF4 13-1456-5 sign \x4AF5 134-2345-2 sign \x4AF6 12345-1236-2 sign \x4AF7 2346-5 sign \x4AF8 1345-146-2 sign \x4AF9 1235-12346-2 sign \x4AFA 1235-12346-2 sign \x4AFB 15-236-2 sign \x4AFC 15-236-5 sign \x4AFE 135-16-5 sign \x4B00 234-4 sign \x4B01 16-2 sign \x4B02 15-236-5 sign \x4B03 15-345-5 sign \x4B04 1256-5 sign \x4B05 14-16-5 sign \x4B06 14-16-5 sign \x4B07 45-5 sign \x4B08 145-1246-5 sign \x4B09 1235-146-5 sign \x4B0A 245-346-5 sign \x4B0B 14-1356-2 sign \x4B0E 13-25-2 sign \x4B0F 135-34-5 sign \x4B10 1246-4 sign \x4B11 1246-5 sign \x4B13 1236-5 sign \x4B14 15-1256-5 sign \x4B15 24-1346-4 sign \x4B16 1235-1356-2 sign \x4B17 46-2 sign \x4B19 246-2 sign \x4B1B 135-16-5 sign \x4B1D 1235-1356-2 sign \x4B1E 124-146-2 sign \x4B1F 14-234-2 sign \x4B21 1-34-5 sign \x4B23 245-16-5 sign \x4B24 12-146-2 sign \x4B25 16-5 sign \x4B26 145-12356-5 sign \x4B27 45-2 sign \x4B28 245-34-5 sign \x4B2A 135-126-2 sign \x4B2B 245-1236-4 sign \x4B2C 46-4 sign \x4B2E 16-2 sign \x4B2F 1345-2345-2 sign \x4B30 24-146-5 sign \x4B31 135-136-5 sign \x4B33 135-1236-4 sign \x4B34 134-126-5 sign \x4B35 2456-5 sign \x4B36 136-5 sign \x4B37 24-2346-4 sign \x4B39 1-156-5 sign \x4B3A 46-5 sign \x4B3B 13-2345-5 sign \x4B3C 45-5 sign \x4B3D 145-1246-5 sign \x4B3E 124-16-2 sign \x4B3F 1246-4 sign \x4B40 15-256-5 sign \x4B41 1-156-5 sign \x4B42 16-5 sign \x4B43 1245-136-4 sign \x4B44 24-156-5 sign \x4B45 1235-34-2 sign \x4B46 1345-2346-5 sign \x4B47 16-5 sign \x4B48 13-2345-5 sign \x4B49 15-1246-4 sign \x4B4A 13456-4 sign \x4B4B 135-146-4 sign \x4B4C 1235-34-2 sign \x4B4D 1235-34-2 sign \x4B4E 15-346-2 sign \x4B50 46-5 sign \x4B51 14-2345-2 sign \x4B53 136-5 sign \x4B55 13-2345-5 sign \x4B56 1-34-5 sign \x4B57 13456-4 sign \x4B58 2345-5 sign \x4B59 13-1456-4 sign \x4B5A 12-456-2 sign \x4B5B 145-1236-5 sign \x4B5D 123-2356-5 sign \x4B5E 16-5 sign \x4B5F 346-5 sign \x4B60 13-2345-4 sign \x4B61 136-5 sign \x4B62 1345-13456-2 sign \x4B63 245-156-2 sign \x4B64 245-2345-4 sign \x4B65 15-236-5 sign \x4B66 135-126-2 sign \x4B67 134-16-4 sign \x4B68 24-1246-5 sign \x4B69 134-16-5 sign \x4B6A 14-46-2 sign \x4B6B 245-16-4 sign \x4B6C 245-16-4 sign \x4B6D 24-12356-4 sign \x4B6E 135-16-5 sign \x4B6F 135-126-2 sign \x4B70 135-1356-4 sign \x4B71 135-346-2 sign \x4B72 1345-16-4 sign \x4B73 1246-5 sign \x4B74 1235-12456-2 sign \x4B75 12345-1236-2 sign \x4B76 245-16-2 sign \x4B77 14-234-2 sign \x4B78 12345-34-5 sign \x4B79 1346-2 sign \x4B7A 1346-2 sign \x4B7C 245-16-2 sign \x4B7D 245-256-2 sign \x4B7E 124-25-2 sign \x4B7F 16-5 sign \x4B80 135-126-2 sign \x4B81 1234-2345-2 sign \x4B82 135-126-2 sign \x4B84 15-45-2 sign \x4B87 1256-5 sign \x4B88 12-156-2 sign \x4B89 14-34-2 sign \x4B8A 16-2 sign \x4B8B 14-16-5 sign \x4B8D 1345-246-4 sign \x4B8E 15-16-5 sign \x4B8F 34-2 sign \x4B91 14-356-5 sign \x4B93 1-146-5 sign \x4B94 125-1246-4 sign \x4B95 12-25-5 sign \x4B97 1236-5 sign \x4B98 156-2 sign \x4B99 1256-5 sign \x4B9A 14-1356-5 sign \x4B9B 12345-34-5 sign \x4B9C 24-345-5 sign \x4B9D 1235-12456-2 sign \x4B9E 12-34-5 sign \x4B9F 15-12356-4 sign \x4BA1 135-16-5 sign \x4BA2 145-346-2 sign \x4BA4 145-16-2 sign \x4BA5 14-16-5 sign \x4BA7 1235-1236-2 sign \x4BA8 125-2456-4 sign \x4BA9 13-34-2 sign \x4BAA 12-1356-2 sign \x4BAB 14-12356-2 sign \x4BAC 134-126-5 sign \x4BAD 134-16-5 sign \x4BAE 134-2456-5 sign \x4BAF 146-5 sign \x4BB0 145-1236-4 sign \x4BB1 1-34-2 sign \x4BB2 1235-456-2 sign \x4BB3 12345-1236-2 sign \x4BB4 145-1356-5 sign \x4BB5 124-12346-2 sign \x4BB7 145-34-2 sign \x4BB8 1235-34-2 sign \x4BB9 1246-5 sign \x4BBA 13-16-5 sign \x4BBB 12-156-5 sign \x4BBC 14-1456-2 sign \x4BBE 1234-1346-2 sign \x4BBF 13-2345-4 sign \x4BC0 1345-346-5 sign \x4BC1 14-25-2 sign \x4BC2 13-16-2 sign \x4BC5 1345-346-5 sign \x4BC6 16-5 sign \x4BC8 12456-2 sign \x4BC9 23456-5 sign \x4BCA 245-23456-5 sign \x4BCB 135-126-2 sign \x4BCD 14-13456-2 sign \x4BCE 13-1236-5 sign \x4BCF 1235-25-2 sign \x4BD0 1235-2456-2 sign \x4BD2 1235-1356-2 sign \x4BD3 123-1246-2 sign \x4BD4 245-136-2 sign \x4BD6 14-1346-2 sign \x4BD7 135-16-5 sign \x4BD8 1235-12456-5 sign \x4BD9 1234-126-5 sign \x4BDA 12356-4 sign \x4BDB 13-2345-4 sign \x4BDC 124-16-5 sign \x4BDD 15-1246-4 sign \x4BDF 145-1246-5 sign \x4BE0 146-4 sign \x4BE1 13-2345-4 sign \x4BE2 134-126-2 sign \x4BE3 13-1246-5 sign \x4BE4 123-2356-5 sign \x4BE5 1236-5 sign \x4BE6 134-345-5 sign \x4BE7 245-13456-4 sign \x4BE8 12345-136-2 sign \x4BEA 123-146-4 sign \x4BEB 1235-146-5 sign \x4BEC 145-25-4 sign \x4BEE 1345-2456-2 sign \x4BF0 13-346-5 sign \x4BF1 12345-34-5 sign \x4BF2 1234-345-2 sign \x4BF4 12-1346-2 sign \x4BF5 1345-346-5 sign \x4BF6 134-1236-2 sign \x4BF8 245-156-5 sign \x4BFA 123-25-5 sign \x4BFC 145-16-2 sign \x4BFD 12345-34-4 sign \x4BFE 124-246-2 sign \x4BFF 125-34-2 sign \x4C00 25-4 sign \x4C01 12345-356-5 sign \x4C02 245-2456-5 sign \x4C03 1234-1356-2 sign \x4C04 24-156-5 sign \x4C06 1245-12356-2 sign \x4C07 245-16-2 sign \x4C08 12-345-4 sign \x4C09 1234-1236-2 sign \x4C0A 135-126-2 sign \x4C0B 134-1236-2 sign \x4C0C 125-12346-4 sign \x4C0D 245-156-5 sign \x4C0E 13-1246-5 sign \x4C0F 13-16-5 sign \x4C10 14-1236-2 sign \x4C12 134-1356-2 sign \x4C13 134-2345-2 sign \x4C14 1234-1236-2 sign \x4C15 14-34-2 sign \x4C16 245-12456-2 sign \x4C18 14-234-2 sign \x4C19 16-4 sign \x4C1A 123456-2 sign \x4C1B 14-16-5 sign \x4C1C 14-16-5 sign \x4C1D 125-1356-5 sign \x4C1E 1-34-4 sign \x4C1F 1235-123456-2 sign \x4C20 24-136-2 sign \x4C21 12-156-5 sign \x4C22 15-13456-5 sign \x4C23 456-4 sign \x4C25 1235-25-5 sign \x4C26 1234-16-4 sign \x4C28 134-356-5 sign \x4C29 12-2346-4 sign \x4C2A 134-356-5 sign \x4C2B 12-146-2 sign \x4C2C 13-1256-2 sign \x4C2D 1345-12356-5 sign \x4C2F 1345-16-4 sign \x4C30 1245-34-2 sign \x4C31 14-13456-2 sign \x4C32 23456-5 sign \x4C34 245-16-5 sign \x4C37 135-1346-5 sign \x4C39 125-2346-2 sign \x4C3A 13-346-5 sign \x4C3B 1256-2 sign \x4C3C 15-1456-2 sign \x4C3D 135-356-5 sign \x4C3E 135-345-5 sign \x4C3F 124-25-2 sign \x4C41 245-246-2 sign \x4C42 234-4 sign \x4C43 145-16-4 sign \x4C44 13-346-5 sign \x4C45 134-126-5 sign \x4C46 24-1356-2 sign \x4C47 24-1236-5 sign \x4C48 245-16-2 sign \x4C49 24-1236-5 sign \x4C4A 134-16-4 sign \x4C4B 145-1236-4 sign \x4C4C 16-2 sign \x4C4D 13-1356-5 sign \x4C4E 13-1356-5 sign \x4C4F 124-12356-4 sign \x4C51 15-236-2 sign \x4C52 16-5 sign \x4C53 124-13456-2 sign \x4C54 124-246-2 sign \x4C55 134-12356-2 sign \x4C56 14-234-2 sign \x4C58 14-16-2 sign \x4C5A 14-34-5 sign \x4C5B 15-1256-5 sign \x4C5C 245-25-5 sign \x4C5D 135-345-5 sign \x4C5E 14-234-2 sign \x4C5F 13-1256-5 sign \x4C60 1-1236-5 sign \x4C61 13-1256-2 sign \x4C63 125-34-2 sign \x4C64 15-2345-5 sign \x4C65 1-156-2 sign \x4C68 1-156-5 sign \x4C6B 14-345-5 sign \x4C6D 13-1356-5 sign \x4C6E 2346-2 sign \x4C6F 134-34-2 sign \x4C70 1-12346-5 sign \x4C71 145-16-5 sign \x4C72 2345-2 sign \x4C74 13-1356-5 sign \x4C76 14-1346-2 sign \x4C77 1256-2 sign \x4C79 1345-345-5 sign \x4C7A 1235-2456-2 sign \x4C7B 1235-35-2 sign \x4C7C 1-1236-4 sign \x4C7E 14-12356-2 sign \x4C7F 12-1236-5 sign \x4C80 145-346-2 sign \x4C81 1246-5 sign \x4C82 15-45-2 sign \x4C83 125-146-4 sign \x4C84 134-1456-2 sign \x4C8A 124-25-4 sign \x4C8B 245-136-2 sign \x4C8C 123-12456-4 sign \x4C8D 124-1356-2 sign \x4C8E 1345-356-4 sign \x4C8F 14-146-2 sign \x4C90 14-34-4 sign \x4C91 16-2 sign \x4C92 15-346-5 sign \x4C93 2345-4 sign \x4C94 13-13456-3 sign \x4C95 1234-34-4 sign \x4C96 12-12356-2 sign \x4C97 15-2345-2 sign \x4C98 13-12456-4 sign \x4C99 13-346-2 sign \x4C9A 14-2456-5 sign \x4C9B 134-1356-2 sign \x4C9C 346-5 sign \x4C9E 14-16-5 sign \x4C9F 1456-5 sign \x4CA0 12-123456-3 sign \x4CA2 124-1356-2 sign \x4CA3 1256-2 sign \x4CA6 12-345-2 sign \x4CA7 145-34-5 sign \x4CA8 1235-12346-2 sign \x4CAA 15-16-5 sign \x4CAB 13-234-3 sign \x4CAC 245-16-2 sign \x4CAE 45-2 sign \x4CAF 13-16-2 sign \x4CB0 256-5 sign \x4CB1 12345-1346-4 sign \x4CB3 1235-1346-2 sign \x4CB4 1-136-5 sign \x4CB5 1235-34-5 sign \x4CB8 13-346-5 sign \x4CB9 1234-356-2 sign \x4CBA 13-1236-5 sign \x4CBB 15-45-2 sign \x4CBD 145-146-4 sign \x4CBE 245-246-4 sign \x4CBF 245-156-2 sign \x4CC0 145-346-2 sign \x4CC1 135-345-2 sign \x4CC2 124-246-2 sign \x4CC3 12456-4 sign \x4CC4 245-156-2 sign \x4CC5 1-156-4 sign \x4CC6 135-2456-2 sign \x4CC7 34-4 sign \x4CC8 135-146-4 sign \x4CC9 145-1236-5 sign \x4CCA 135-345-2 sign \x4CCB 124-12346-2 sign \x4CCE 13-234-5 sign \x4CCF 13-1246-5 sign \x4CD0 245-156-5 sign \x4CD1 234-4 sign \x4CD2 45-3 sign \x4CD3 14-146-4 sign \x4CD4 13-234-5 sign \x4CD5 12345-12356-2 sign \x4CD6 1345-356-5 sign \x4CD7 2346-2 sign \x4CD8 2346-2 sign \x4CD9 15-13456-4 sign \x4CDA 1235-2346-2 sign \x4CDB 2345-5 sign \x4CDC 124-34-2 sign \x4CDD 135-34-5 sign \x4CDE 135-1356-4 sign \x4CDF 123-12356-5 sign \x4CE0 12-1246-2 sign \x4CE2 245-16-2 sign \x4CE3 45-2 sign \x4CE7 1235-12356-2 sign \x4CE8 1235-456-2 sign \x4CEA 13-45-5 sign \x4CEB 123-1246-2 sign \x4CEC 2346-5 sign \x4CED 13-16-2 sign \x4CEE 134-126-5 sign \x4CEF 12-12346-2 sign \x4CF0 135-146-4 sign \x4CF1 34-5 sign \x4CF2 1-136-5 sign \x4CF3 15-1256-5 sign \x4CF4 145-345-2 sign \x4CF5 12-156-5 sign \x4CF7 245-12346-2 sign \x4CF8 134-345-2 sign \x4CF9 123-12356-5 sign \x4CFA 1236-3 sign \x4CFB 245-1236-2 sign \x4CFD 1235-2346-5 sign \x4CFF 14-1236-2 sign \x4D00 124-12346-2 sign \x4D01 1256-5 sign \x4D02 1235-1346-5 sign \x4D03 1345-146-2 sign \x4D04 14-16-5 sign \x4D05 12345-136-2 sign \x4D06 1234-34-2 sign \x4D07 14-13456-2 sign \x4D08 146-4 sign \x4D09 15-45-2 sign \x4D0A 16-2 sign \x4D0B 15-45-2 sign \x4D0C 134-1356-2 sign \x4D0E 14-356-4 sign \x4D0F 2345-5 sign \x4D10 135-146-4 sign \x4D11 145-346-2 sign \x4D12 14-13456-2 sign \x4D13 24-156-3 sign \x4D14 13-246-3 sign \x4D15 14-346-5 sign \x4D16 13-13456-3 sign \x4D17 13-1256-2 sign \x4D18 124-16-3 sign \x4D19 1234-16-5 sign \x4D1A 13-1346-4 sign \x4D1B 13-246-4 sign \x4D1C 1235-2356-2 sign \x4D1D 135-34-5 sign \x4D1E 145-16-2 sign \x4D1F 1235-12456-2 sign \x4D20 246-4 sign \x4D21 14-16-5 sign \x4D22 134-16-2 sign \x4D26 1245-136-2 sign \x4D29 1234-246-2 sign \x4D2A 14-34-5 sign \x4D2B 14-13456-2 sign \x4D2C 16-5 sign \x4D2D 245-2456-2 sign \x4D2E 24-1236-5 sign \x4D30 24-34-2 sign \x4D31 124-25-2 sign \x4D32 134-126-5 sign \x4D33 1235-2346-5 sign \x4D34 124-346-5 sign \x4D35 135-13456-4 sign \x4D36 1234-1356-2 sign \x4D37 1235-123456-2 sign \x4D38 12345-34-3 sign \x4D39 13-25-4 sign \x4D3A 135-34-5 sign \x4D3B 14-16-2 sign \x4D3C 12-1236-4 sign \x4D3D 135-2456-5 sign \x4D3E 245-25-2 sign \x4D3F 134-1356-2 sign \x4D40 15-25-4 sign \x4D41 245-46-5 sign \x4D42 1-156-2 sign \x4D43 123-456-5 sign \x4D44 135-16-2 sign \x4D45 146-2 sign \x4D46 134-1356-2 sign \x4D47 15-2345-5 sign \x4D49 124-12356-2 sign \x4D4B 1246-4 sign \x4D4F 14-146-4 sign \x4D50 12-1236-4 sign \x4D51 1345-16-5 sign \x4D52 1345-16-5 sign \x4D53 14-16-2 sign \x4D54 145-12346-4 sign \x4D55 13-1256-5 sign \x4D56 13-2345-5 sign \x4D57 12345-34-2 sign \x4D58 24-345-5 sign \x4D59 1-345-4 sign \x4D5A 124-146-4 sign \x4D5B 13-2345-5 sign \x4D5C 1345-12346-4 sign \x4D5D 23456-5 sign \x4D5E 13-13456-5 sign \x4D5F 13-1236-4 sign \x4D60 145-16-2 sign \x4D61 13-2345-4 sign \x4D62 134-356-5 sign \x4D63 145-345-2 sign \x4D64 13-2345-4 sign \x4D65 24-2346-5 sign \x4D66 15-346-5 sign \x4D67 125-2456-5 sign \x4D68 134-1346-2 sign \x4D69 14-16-2 sign \x4D6A 13-123456-5 sign \x4D6B 1256-5 sign \x4D6C 124-345-5 sign \x4D6D 1-2346-5 sign \x4D6E 46-5 sign \x4D6F 124-12456-4 sign \x4D71 1235-2346-5 sign \x4D72 145-246-5 sign \x4D73 1246-5 sign \x4D74 256-5 sign \x4D75 1-345-2 sign \x4D76 245-1256-2 sign \x4D77 35-3 sign \x4D7A 124-13456-4 sign \x4D7B 13-34-4 sign \x4D7D 245-345-5 sign \x4D7E 12345-34-2 sign \x4D7F 124-346-5 sign \x4D80 124-345-5 sign \x4D81 124-345-5 sign \x4D82 1-25-2 sign \x4D83 1235-1236-2 sign \x4D84 1234-13456-2 sign \x4D85 1235-2346-2 sign \x4D87 1-12356-5 sign \x4D88 135-126-2 sign \x4D89 14-234-2 sign \x4D8A 1345-1256-5 sign \x4D8C 1234-146-5 sign \x4D8D 145-16-5 sign \x4D8E 24-345-5 sign \x4D8F 124-16-4 sign \x4D90 123-2356-5 sign \x4D91 124-16-5 sign \x4D92 245-16-2 sign \x4D93 13-16-5 sign \x4D94 12-156-2 sign \x4D95 1234-345-2 sign \x4D96 13-1456-5 sign \x4D97 123-2346-5 sign \x4D98 14-16-5 sign \x4D99 13-1256-5 sign \x4D9A 245-1256-4 sign \x4D9B 14-345-5 sign \x4D9C 13-34-5 sign \x4D9D 245-23456-5 sign \x4D9E 245-16-2 sign \x4D9F 15-2345-5 sign \x4DA0 13-2345-4 sign \x4DA1 24-156-2 sign \x4DA2 15-2345-2 sign \x4DA3 2456-2 sign \x4DA4 1235-35-2 sign \x4DA5 13-1256-4 sign \x4DA6 125-2346-2 sign \x4DA7 246-4 sign \x4DA9 13-16-5 sign \x4DAA 12-345-2 sign \x4DAB 123-1236-4 sign \x4DAE 2345-2 sign \x4DB1 124-12346-2 sign \x4DB2 1345-1236-2 sign \x4DB3 236-5 sign \x4DB5 12-156-2 sign \x4E00 16-3 sign \x4E01 145-13456-3 sign \x4E02 123-146-4 sign \x4E03 245-16-3 sign \x4E04 24-1346-5 sign \x4E05 15-23456-5 sign \x4E07 12456-5 sign \x4E08 1-1346-5 sign \x4E09 15-1236-3 sign \x4E0A 24-1346-5 sign \x4E0B 15-23456-5 sign \x4E0C 245-16-2 sign \x4E0D 135-34-5 sign \x4E0E 1256-4 sign \x4E0F 134-2345-4 sign \x4E10 13-2456-5 sign \x4E11 12-12356-4 sign \x4E12 12-12356-4 sign \x4E13 1-12456-3 sign \x4E14 245-346-4 sign \x4E15 1234-16-3 sign \x4E16 24-156-5 sign \x4E17 24-156-5 sign \x4E18 245-234-3 sign \x4E19 135-13456-4 sign \x4E1A 346-5 sign \x4E1B 245-12346-2 sign \x4E1C 145-12346-3 sign \x4E1D 15-156-3 sign \x4E1E 12-1356-2 sign \x4E1F 145-234-3 sign \x4E20 245-234-3 sign \x4E21 14-46-4 sign \x4E22 145-234-3 sign \x4E23 234-4 sign \x4E24 14-46-4 sign \x4E25 2345-2 sign \x4E26 135-13456-5 sign \x4E27 15-1346-5 sign \x4E28 13-123456-4 sign \x4E29 13-234-3 sign \x4E2A 13-2346-5 sign \x4E2B 23456-3 sign \x4E2C 245-46-2 sign \x4E2D 1-12346-3 sign \x4E2E 13-16-4 sign \x4E2F 13-346-5 sign \x4E30 12345-1356-3 sign \x4E31 13-12456-5 sign \x4E32 12-12456-5 sign \x4E33 12-1236-4 sign \x4E34 14-1456-2 sign \x4E35 1-25-4 sign \x4E36 1-34-4 sign \x4E38 12456-2 sign \x4E39 145-1236-3 sign \x4E3A 1246-2 sign \x4E3B 1-34-4 sign \x4E3C 13-13456-4 sign \x4E3D 14-16-5 sign \x4E3E 13-1256-4 sign \x4E3F 1234-346-4 sign \x4E40 12345-34-2 sign \x4E41 16-2 sign \x4E42 16-5 sign \x4E43 1345-2456-4 sign \x4E45 13-234-4 sign \x4E46 13-234-4 sign \x4E47 1-2346-2 sign \x4E48 246-3 sign \x4E49 16-5 sign \x4E4B 1-156-3 sign \x4E4C 34-3 sign \x4E4D 1-345-5 sign \x4E4E 1235-34-3 sign \x4E4F 12345-345-2 sign \x4E50 14-2346-5 sign \x4E51 1-12346-5 sign \x4E52 1234-13456-3 sign \x4E53 1234-1346-3 sign \x4E54 245-246-2 sign \x4E55 1235-34-4 sign \x4E56 13-2356-3 sign \x4E57 12-1356-2 sign \x4E58 12-1356-2 sign \x4E59 16-4 sign \x4E5A 16-4 sign \x4E5C 134-346-3 sign \x4E5D 13-234-4 sign \x4E5E 245-16-4 sign \x4E5F 346-4 sign \x4E60 15-16-2 sign \x4E61 15-46-3 sign \x4E62 13-2456-5 sign \x4E63 13-234-3 sign \x4E66 24-34-3 sign \x4E68 24-156-4 sign \x4E69 13-16-3 sign \x4E6A 1345-1346-2 sign \x4E6B 13-23456-3 sign \x4E6D 24-156-2 sign \x4E70 134-2456-4 sign \x4E71 14-12456-5 sign \x4E73 1245-34-4 sign \x4E74 15-236-2 sign \x4E75 2345-4 sign \x4E76 12345-34-4 sign \x4E77 24-345-3 sign \x4E78 1345-345-4 sign \x4E79 13-1236-3 sign \x4E7E 13-1236-3 sign \x4E7F 12-156-5 sign \x4E80 13-1246-3 sign \x4E81 13-1236-3 sign \x4E82 14-12456-5 sign \x4E83 14-1456-2 sign \x4E84 16-5 sign \x4E85 378-1678 sign \x4E86 14-2346-1 sign \x4E88 1256-4 sign \x4E89 1-1356-3 sign \x4E8A 24-156-5 sign \x4E8B 24-156-5 sign \x4E8C 156-5 sign \x4E8D 12-34-5 sign \x4E8E 1256-2 sign \x4E8F 123-1246-3 sign \x4E90 1256-2 sign \x4E91 256-2 sign \x4E92 1235-34-5 sign \x4E93 245-16-2 sign \x4E94 34-4 sign \x4E95 13-13456-4 sign \x4E96 15-156-5 sign \x4E97 15-1246-5 sign \x4E98 13-136-5 sign \x4E99 13-136-5 sign \x4E9A 23456-4 sign \x4E9B 15-346-3 sign \x4E9C 23456-5 sign \x4E9D 245-16-2 sign \x4E9E 23456-4 sign \x4E9F 245-16-5 sign \x4EA0 124-12356-2 sign \x4EA1 456-2 sign \x4EA2 123-1346-5 sign \x4EA3 124-345-5 sign \x4EA4 13-246-3 sign \x4EA5 1235-2456-5 sign \x4EA6 16-5 sign \x4EA7 12-1236-4 sign \x4EA8 1235-1356-3 sign \x4EA9 134-34-4 sign \x4EAB 15-46-4 sign \x4EAC 13-13456-3 sign \x4EAD 124-13456-2 sign \x4EAE 14-46-5 sign \x4EAF 1235-1356-3 sign \x4EB0 13-13456-3 sign \x4EB1 346-5 sign \x4EB2 245-1456-3 sign \x4EB3 135-126-5 sign \x4EB4 234-5 sign \x4EB5 15-346-5 sign \x4EB6 145-1236-4 sign \x4EB7 14-2345-2 sign \x4EB8 145-25-4 sign \x4EB9 1246-4 sign \x4EBA 1245-136-2 sign \x4EBB 1245-136-2 sign \x4EBC 13-16-2 sign \x4EBE 456-2 sign \x4EBF 16-5 sign \x4EC0 24-156-2 sign \x4EC1 1245-136-2 sign \x4EC2 14-2346-5 sign \x4EC3 145-13456-3 sign \x4EC4 125-2346-5 sign \x4EC5 13-1456-4 sign \x4EC6 1234-34-3 sign \x4EC7 12-12356-2 sign \x4EC8 135-345-3 sign \x4EC9 1-1346-4 sign \x4ECA 13-1456-3 sign \x4ECB 13-346-5 sign \x4ECC 135-13456-3 sign \x4ECD 1245-1356-2 sign \x4ECE 245-12346-2 sign \x4ECF 12345-126-2 sign \x4ED0 15-1236-4 sign \x4ED1 14-123456-2 sign \x4ED3 245-1346-3 sign \x4ED4 125-156-4 sign \x4ED5 24-156-5 sign \x4ED6 1247-345-3 sign \x4ED7 1-1346-5 sign \x4ED8 12345-34-5 sign \x4ED9 15-2345-3 sign \x4EDA 15-2345-3 sign \x4EDB 124-25-3 sign \x4EDC 1235-12346-2 sign \x4EDD 124-12346-2 sign \x4EDE 1245-136-5 sign \x4EDF 245-2345-3 sign \x4EE0 13-1236-2 sign \x4EE1 16-5 sign \x4EE2 145-16-2 sign \x4EE3 145-2456-5 sign \x4EE4 14-13456-5 sign \x4EE5 16-4 sign \x4EE6 12-146-5 sign \x4EE7 12-1346-2 sign \x4EE8 15-345-3 sign \x4EE9 135-345-1 sign \x4EEA 16-2 sign \x4EEB 134-34-5 sign \x4EEC 134-136-1 sign \x4EED 1245-136-5 sign \x4EEE 13-23456-4 sign \x4EEF 12-146-5 sign \x4EF0 46-4 sign \x4EF1 245-2345-2 sign \x4EF2 1-12346-5 sign \x4EF3 1234-16-4 sign \x4EF4 12456-5 sign \x4EF5 34-4 sign \x4EF6 13-2345-5 sign \x4EF7 13-23456-5 sign \x4EF8 246-4 sign \x4EF9 12345-1356-3 sign \x4EFA 245-1346-3 sign \x4EFB 1245-136-5 sign \x4EFC 456-2 sign \x4EFD 12345-136-5 sign \x4EFE 145-16-3 sign \x4EFF 12345-1346-4 sign \x4F00 1-12346-3 sign \x4F01 245-16-5 sign \x4F02 1234-356-5 sign \x4F03 1256-2 sign \x4F04 145-246-5 sign \x4F05 145-123456-4 sign \x4F06 123456-5 sign \x4F07 16-5 sign \x4F08 15-1456-4 sign \x4F09 123-1346-5 sign \x4F0A 16-3 sign \x4F0B 13-16-2 sign \x4F0C 2456-5 sign \x4F0D 34-4 sign \x4F0E 13-16-5 sign \x4F0F 12345-34-2 sign \x4F10 12345-345-2 sign \x4F11 15-234-3 sign \x4F12 13-1456-5 sign \x4F13 135-356-3 sign \x4F14 12-136-2 sign \x4F15 12345-34-3 sign \x4F16 124-1346-4 sign \x4F17 1-12346-5 sign \x4F18 234-3 sign \x4F19 1235-25-4 sign \x4F1A 1235-1246-5 sign \x4F1B 1256-4 sign \x4F1C 245-1246-5 sign \x4F1D 256-2 sign \x4F1E 15-1236-4 sign \x4F1F 1246-4 sign \x4F20 12-12456-2 sign \x4F21 12-2346-3 sign \x4F22 23456-2 sign \x4F23 15-2345-5 sign \x4F24 24-1346-3 sign \x4F25 12-1346-3 sign \x4F26 14-123456-2 sign \x4F27 245-1346-3 sign \x4F28 15-256-5 sign \x4F29 15-1456-5 sign \x4F2A 1246-5 sign \x4F2B 1-34-5 sign \x4F2C 135-345-1 sign \x4F2D 15-45-2 sign \x4F2E 1345-34-2 sign \x4F2F 135-126-2 sign \x4F30 13-34-3 sign \x4F31 1345-16-4 sign \x4F32 1345-16-4 sign \x4F33 15-346-5 sign \x4F34 135-1236-5 sign \x4F35 15-1256-5 sign \x4F36 14-13456-2 sign \x4F37 1-12356-5 sign \x4F38 24-136-3 sign \x4F39 245-1256-3 sign \x4F3A 15-156-5 sign \x4F3B 135-1356-3 sign \x4F3C 15-156-5 sign \x4F3D 13-23456-3 sign \x4F3E 1234-16-3 sign \x4F3F 16-5 sign \x4F40 15-156-5 sign \x4F41 2456-4 sign \x4F42 1-1356-3 sign \x4F43 145-2345-5 sign \x4F44 1235-1236-2 sign \x4F45 134-2456-5 sign \x4F46 145-1236-5 sign \x4F47 1-34-5 sign \x4F48 135-34-5 sign \x4F49 245-1256-3 sign \x4F4A 135-16-4 sign \x4F4B 24-146-5 sign \x4F4C 245-156-4 sign \x4F4D 1246-5 sign \x4F4E 145-16-3 sign \x4F4F 1-34-5 sign \x4F50 125-25-4 sign \x4F51 234-5 sign \x4F52 46-4 sign \x4F53 124-16-4 sign \x4F54 1-1236-5 sign \x4F55 1235-2346-2 sign \x4F56 135-16-5 sign \x4F57 124-25-2 sign \x4F58 24-2346-2 sign \x4F59 1256-2 sign \x4F5A 16-5 sign \x4F5B 12345-126-2 sign \x4F5C 125-25-5 sign \x4F5D 123-12356-5 sign \x4F5E 1345-13456-5 sign \x4F5F 124-12346-2 sign \x4F60 1345-16-4 sign \x4F61 15-45-3 sign \x4F62 13-1256-4 sign \x4F63 235-5 sign \x4F64 35-4 sign \x4F65 245-2345-3 sign \x4F67 123-345-4 sign \x4F69 1234-356-5 sign \x4F6A 1235-1246-2 sign \x4F6B 1235-2346-5 sign \x4F6C 14-146-4 sign \x4F6D 15-46-2 sign \x4F6E 13-2346-2 sign \x4F6F 46-2 sign \x4F70 135-2456-4 sign \x4F71 12345-345-4 sign \x4F72 134-13456-2 sign \x4F73 13-23456-3 sign \x4F74 156-5 sign \x4F75 135-13456-5 sign \x4F76 13-16-2 sign \x4F77 1235-136-4 sign \x4F78 1235-25-2 sign \x4F79 13-1246-4 sign \x4F7A 245-45-2 sign \x4F7B 124-246-2 sign \x4F7C 13-246-4 sign \x4F7D 245-156-5 sign \x4F7E 16-5 sign \x4F7F 24-156-4 sign \x4F80 15-13456-2 sign \x4F81 24-136-3 sign \x4F82 124-25-3 sign \x4F83 123-1236-4 sign \x4F84 1-156-2 sign \x4F85 13-2456-3 sign \x4F86 14-2456-2 sign \x4F87 16-2 sign \x4F88 12-156-4 sign \x4F89 123-35-3 sign \x4F8A 13-456-3 sign \x4F8B 14-16-5 sign \x4F8C 1456-3 sign \x4F8D 24-156-5 sign \x4F8E 134-16-4 sign \x4F8F 1-34-3 sign \x4F90 15-1256-5 sign \x4F91 234-5 sign \x4F92 1236-3 sign \x4F93 14-34-5 sign \x4F94 134-12356-2 sign \x4F95 156-2 sign \x4F96 14-123456-2 sign \x4F97 124-12346-3 sign \x4F98 12-345-5 sign \x4F99 12-156-5 sign \x4F9A 15-256-5 sign \x4F9B 13-12346-3 sign \x4F9C 1-12356-3 sign \x4F9D 16-3 sign \x4F9E 1245-34-4 sign \x4F9F 13-2345-5 sign \x4FA0 15-23456-2 sign \x4FA1 13-23456-5 sign \x4FA2 125-2456-5 sign \x4FA3 14-1256-4 sign \x4FA5 13-246-4 sign \x4FA6 1-136-3 sign \x4FA7 245-2346-5 sign \x4FA8 245-246-2 sign \x4FA9 123-2356-5 sign \x4FAA 12-2456-2 sign \x4FAB 1345-13456-5 sign \x4FAC 1345-12346-2 sign \x4FAD 13-1456-4 sign \x4FAE 34-4 sign \x4FAF 1235-12356-2 sign \x4FB0 13-235-4 sign \x4FB1 12-1356-4 sign \x4FB2 1-136-5 sign \x4FB3 245-25-5 sign \x4FB4 12-12356-4 sign \x4FB5 245-1456-3 sign \x4FB6 14-1256-4 sign \x4FB7 13-1256-2 sign \x4FB8 24-34-5 sign \x4FB9 124-13456-4 sign \x4FBA 24-136-5 sign \x4FBB 124-25-3 sign \x4FBC 135-126-2 sign \x4FBD 1345-1236-2 sign \x4FBE 1235-146-3 sign \x4FBF 135-2345-5 sign \x4FC0 124-1246-4 sign \x4FC1 1256-2 sign \x4FC2 15-16-5 sign \x4FC3 245-34-5 sign \x4FC4 2346-5 sign \x4FC5 245-234-2 sign \x4FC6 15-1256-2 sign \x4FC7 13-456-4 sign \x4FC8 123-34-5 sign \x4FC9 34-4 sign \x4FCA 13-256-5 sign \x4FCB 16-5 sign \x4FCC 12345-34-4 sign \x4FCD 14-46-2 sign \x4FCE 125-34-4 sign \x4FCF 245-246-5 sign \x4FD0 14-16-5 sign \x4FD1 235-4 sign \x4FD2 1235-123456-5 sign \x4FD3 13-13456-5 sign \x4FD4 245-2345-5 sign \x4FD5 15-1236-5 sign \x4FD6 1234-2456-4 sign \x4FD7 15-34-2 sign \x4FD8 12345-34-2 sign \x4FD9 15-16-3 sign \x4FDA 14-16-4 sign \x4FDB 12345-34-4 sign \x4FDC 1234-13456-2 sign \x4FDD 135-146-4 sign \x4FDE 1256-2 sign \x4FDF 15-156-5 sign \x4FE0 15-23456-2 sign \x4FE1 15-1456-5 sign \x4FE2 15-234-3 sign \x4FE3 1256-2 sign \x4FE4 124-16-5 sign \x4FE5 12-2346-3 sign \x4FE6 12-12356-2 sign \x4FE8 2345-4 sign \x4FE9 14-46-4 sign \x4FEA 14-16-5 sign \x4FEB 14-2456-2 sign \x4FEC 13-1256-5 sign \x4FED 13-2345-4 sign \x4FEE 15-234-3 sign \x4FEF 12345-34-4 sign \x4FF0 1235-2346-5 sign \x4FF1 13-1256-5 sign \x4FF2 15-246-5 sign \x4FF3 1234-2456-2 sign \x4FF4 13-2345-5 sign \x4FF5 135-246-4 sign \x4FF6 12-34-5 sign \x4FF7 12345-356-5 sign \x4FF8 12345-1356-5 sign \x4FF9 23456-5 sign \x4FFA 1236-4 sign \x4FFB 135-356-5 sign \x4FFC 1256-5 sign \x4FFD 15-1456-3 sign \x4FFE 135-16-5 sign \x4FFF 13-2345-5 sign \x5000 12-1346-3 sign \x5001 12-156-2 sign \x5002 135-13456-5 sign \x5003 125-1236-2 sign \x5004 246-2 sign \x5005 245-1246-5 sign \x5006 14-46-4 sign \x5007 12456-4 sign \x5008 14-2456-2 sign \x5009 245-1346-3 sign \x500A 125-12346-5 sign \x500B 13-2346-5 sign \x500C 13-12456-3 sign \x500D 135-356-5 sign \x500E 124-2345-4 sign \x500F 24-34-5 sign \x5010 24-34-5 sign \x5011 134-136-2 sign \x5012 145-146-4 sign \x5013 124-1236-2 sign \x5014 13-236-2 sign \x5015 12-1246-2 sign \x5016 15-13456-5 sign \x5017 1234-1356-2 sign \x5018 124-1346-4 sign \x5019 1235-12356-5 sign \x501A 16-4 sign \x501B 245-16-3 sign \x501C 124-16-5 sign \x501D 13-1236-5 sign \x501E 13-13456-5 sign \x501F 13-346-5 sign \x5020 1235-1246-3 sign \x5021 12-1346-5 sign \x5022 13-346-3 sign \x5023 12345-1346-4 sign \x5024 1-156-2 sign \x5025 123-12346-3 sign \x5026 13-45-5 sign \x5027 125-12346-3 sign \x5028 13-1256-5 sign \x5029 245-2345-5 sign \x502A 1345-16-2 sign \x502B 14-123456-2 sign \x502C 1-25-2 sign \x502D 25-3 sign \x502E 14-25-4 sign \x502F 15-12346-3 sign \x5030 14-1356-2 sign \x5031 1235-123456-5 sign \x5032 145-12346-3 sign \x5033 125-156-5 sign \x5034 135-136-5 sign \x5035 34-4 sign \x5036 13-1256-5 sign \x5037 1345-2456-5 sign \x5038 245-2456-4 sign \x5039 13-2345-4 sign \x503A 1-2456-5 sign \x503B 346-3 sign \x503C 1-156-2 sign \x503D 24-345-2 sign \x503E 245-13456-3 sign \x5040 13456-3 sign \x5041 12-1356-3 sign \x5042 13-2345-3 sign \x5043 2345-4 sign \x5044 1345-12456-5 sign \x5045 1-12346-4 sign \x5046 12-123456-4 sign \x5047 13-23456-4 sign \x5048 13-346-2 sign \x5049 1246-4 sign \x504A 1256-4 sign \x504B 135-13456-5 sign \x504C 1245-25-5 sign \x504D 24-156-5 sign \x504E 1246-3 sign \x504F 1234-2345-3 sign \x5050 2345-5 sign \x5051 12345-1356-3 sign \x5052 124-1346-4 sign \x5053 25-5 sign \x5054 2346-5 sign \x5055 15-346-2 sign \x5056 12-2346-4 sign \x5057 24-1356-4 sign \x5058 123-1236-4 sign \x5059 145-16-5 sign \x505A 125-25-5 sign \x505B 12-345-3 sign \x505C 124-13456-2 sign \x505D 135-356-5 sign \x505E 346-5 sign \x505F 1235-456-2 sign \x5060 246-4 sign \x5061 1-1236-5 sign \x5062 245-234-3 sign \x5063 2345-3 sign \x5064 234-4 sign \x5065 13-2345-5 sign \x5066 15-1256-3 sign \x5067 1-345-3 sign \x5068 12-2456-3 sign \x5069 12345-34-5 sign \x506A 135-16-3 sign \x506B 1-156-5 sign \x506C 125-12346-4 sign \x506D 134-2345-4 sign \x506E 13-16-2 sign \x506F 16-4 sign \x5070 15-346-5 sign \x5071 15-256-2 sign \x5072 15-156-3 sign \x5073 145-12456-3 sign \x5074 245-2346-5 sign \x5075 1-136-3 sign \x5076 12356-4 sign \x5077 124-12356-3 sign \x5078 124-12356-3 sign \x5079 135-356-5 sign \x507A 125-1236-2 sign \x507B 14-1256-4 sign \x507C 13-346-2 sign \x507D 1246-5 sign \x507E 12345-136-5 sign \x507F 12-1346-2 sign \x5080 123-1246-4 sign \x5081 15-12356-4 sign \x5082 12-156-4 sign \x5083 15-34-5 sign \x5084 15-23456-3 sign \x5085 12345-34-5 sign \x5086 45-5 sign \x5087 1245-12346-4 sign \x5088 14-16-5 sign \x5089 1245-34-5 sign \x508A 256-4 sign \x508B 13-12356-5 sign \x508C 134-345-5 sign \x508D 135-1346-3 sign \x508E 145-2345-3 sign \x508F 124-1346-2 sign \x5090 1235-146-5 sign \x5091 13-346-2 sign \x5092 15-16-3 sign \x5093 24-1236-5 sign \x5094 245-2345-5 sign \x5095 13-236-2 sign \x5096 245-1346-3 sign \x5097 12-34-5 sign \x5098 15-1236-4 sign \x5099 135-356-5 sign \x509A 15-246-5 sign \x509B 235-4 sign \x509C 246-2 sign \x509D 124-1236-5 sign \x509E 15-25-3 sign \x509F 46-4 sign \x50A0 12345-345-3 sign \x50A1 135-13456-5 sign \x50A2 13-23456-3 sign \x50A3 145-2456-4 sign \x50A4 125-2456-5 sign \x50A5 124-1346-4 sign \x50A7 135-1456-3 sign \x50A8 12-34-2 sign \x50A9 1345-25-2 sign \x50AA 245-1236-3 sign \x50AB 14-356-4 sign \x50AC 245-1246-3 sign \x50AD 235-3 sign \x50AE 125-146-3 sign \x50AF 125-12346-4 sign \x50B0 1234-1356-2 sign \x50B1 15-12346-4 sign \x50B2 146-5 sign \x50B3 12-12456-2 sign \x50B4 1256-4 sign \x50B5 1-2456-5 sign \x50B6 12-34-4 sign \x50B7 24-1346-3 sign \x50B8 15-23456-2 sign \x50B9 13-46-3 sign \x50BA 12-156-5 sign \x50BB 24-345-4 sign \x50BC 1235-1236-5 sign \x50BD 1-1346-3 sign \x50BE 245-13456-3 sign \x50BF 2345-5 sign \x50C0 145-16-5 sign \x50C1 15-346-5 sign \x50C2 14-1256-4 sign \x50C3 135-356-5 sign \x50C4 1234-246-5 sign \x50C5 13-1456-4 sign \x50C6 14-2345-2 sign \x50C7 14-34-5 sign \x50C8 134-1236-5 sign \x50C9 245-2345-3 sign \x50CA 15-2345-3 sign \x50CB 14-1236-5 sign \x50CC 13456-2 sign \x50CD 145-12346-5 sign \x50CE 1-12456-5 sign \x50CF 15-46-5 sign \x50D0 24-1236-5 sign \x50D1 245-246-2 sign \x50D2 13-235-4 sign \x50D3 124-1246-4 sign \x50D4 125-123456-4 sign \x50D5 1234-34-2 sign \x50D6 15-16-3 sign \x50D7 14-146-5 sign \x50D8 12-1346-4 sign \x50D9 13-456-3 sign \x50DA 14-246-2 sign \x50DB 245-16-3 sign \x50DC 145-1356-5 sign \x50DD 1-1236-4 sign \x50DE 1246-4 sign \x50DF 13-16-3 sign \x50E0 12345-1236-3 sign \x50E1 1235-1246-5 sign \x50E2 12-12456-4 sign \x50E3 124-346-4 sign \x50E4 145-1236-5 sign \x50E5 13-246-4 sign \x50E6 13-234-5 sign \x50E7 15-1356-3 sign \x50E8 12345-136-5 sign \x50E9 15-2345-5 sign \x50EA 1256-5 sign \x50EB 2346-5 sign \x50EC 13-246-3 sign \x50ED 13-2345-5 sign \x50EE 124-12346-2 sign \x50EF 14-1456-4 sign \x50F0 135-126-2 sign \x50F1 13-34-5 sign \x50F3 14-16-5 sign \x50F4 15-2345-5 sign \x50F5 13-46-3 sign \x50F6 134-1456-4 sign \x50F7 346-5 sign \x50F8 13-1456-5 sign \x50F9 13-23456-5 sign \x50FA 245-246-5 sign \x50FB 1234-16-5 sign \x50FC 12345-1356-3 sign \x50FD 1-12356-5 sign \x50FE 2456-5 sign \x50FF 15-2456-5 sign \x5100 16-2 sign \x5101 13-256-5 sign \x5102 1345-12346-2 sign \x5103 12-1236-2 sign \x5104 16-5 sign \x5105 145-1346-3 sign \x5106 13-13456-4 sign \x5107 15-45-3 sign \x5108 123-2356-5 sign \x5109 13-2345-4 sign \x510A 12-34-5 sign \x510B 145-1236-3 sign \x510C 13-246-3 sign \x510D 24-345-4 sign \x510E 125-2456-5 sign \x5110 135-1456-3 sign \x5111 1236-5 sign \x5112 1245-34-2 sign \x5113 124-2456-2 sign \x5114 12-12356-2 sign \x5115 12-2456-2 sign \x5116 14-1236-2 sign \x5117 1345-16-4 sign \x5118 13-1456-4 sign \x5119 245-2345-5 sign \x511A 134-1356-2 sign \x511B 34-4 sign \x511C 1345-1356-2 sign \x511D 245-235-2 sign \x511E 1345-16-4 sign \x511F 12-1346-2 sign \x5120 14-346-5 sign \x5121 14-356-4 sign \x5122 14-1256-4 sign \x5123 123-456-5 sign \x5124 135-146-5 sign \x5125 145-34-2 sign \x5126 135-246-3 sign \x5127 125-1236-4 sign \x5128 1-156-2 sign \x5129 15-156-5 sign \x512A 234-3 sign \x512B 1235-146-2 sign \x512C 12-136-5 sign \x512D 12-136-5 sign \x512E 14-16-5 sign \x512F 124-1356-2 sign \x5130 1246-4 sign \x5131 14-12346-4 sign \x5132 12-34-2 sign \x5133 12-1236-2 sign \x5134 1245-1346-2 sign \x5135 24-34-5 sign \x5136 1235-1246-5 sign \x5137 14-16-5 sign \x5138 14-25-2 sign \x5139 125-1236-4 sign \x513A 1345-25-2 sign \x513B 124-1346-4 sign \x513C 2345-4 sign \x513D 14-356-2 sign \x513E 1345-1346-5 sign \x513F 156-2 sign \x5140 34-5 sign \x5141 256-4 sign \x5142 125-1236-3 sign \x5143 45-2 sign \x5144 15-235-3 sign \x5145 12-12346-3 sign \x5146 1-146-5 sign \x5147 15-235-3 sign \x5148 15-2345-3 sign \x5149 13-456-3 sign \x514A 145-1246-5 sign \x514B 123-2346-5 sign \x514C 145-1246-5 sign \x514D 134-2345-4 sign \x514E 124-34-5 sign \x514F 12-1346-2 sign \x5150 156-2 sign \x5151 145-1246-5 sign \x5152 156-2 sign \x5153 15-1456-3 sign \x5154 124-34-5 sign \x5155 15-156-5 sign \x5156 2345-4 sign \x5157 2345-4 sign \x5158 24-156-4 sign \x5159 2-356-1245 sign \x515A 145-1346-4 sign \x515B 2-356-356-356-1245 sign \x515C 145-12356-3 sign \x515D 14-1245 sign \x515E 134-1245 sign \x515F 15-1456-3 sign \x5160 145-12356-3 sign \x5161 2-356-356-1245 sign \x5162 13-13456-3 sign \x5163 14-16 sign \x5164 1235-456-2 sign \x5165 1245-34-5 sign \x5166 456-2 sign \x5167 1345-356-5 sign \x5168 245-45-2 sign \x5169 14-46-4 sign \x516A 1256-2 sign \x516B 135-345-3 sign \x516C 13-12346-3 sign \x516D 14-234-5 sign \x516E 15-16-3 sign \x5170 14-1236-2 sign \x5171 13-12346-5 sign \x5172 124-2345-3 sign \x5173 13-12456-3 sign \x5174 15-13456-3 sign \x5175 135-13456-3 sign \x5176 245-16-2 sign \x5177 13-1256-5 sign \x5178 145-2345-4 sign \x5179 125-156-3 sign \x517B 46-4 sign \x517C 13-2345-3 sign \x517D 24-12356-5 sign \x517E 13-16-5 sign \x517F 16-5 sign \x5180 13-16-5 sign \x5181 12-1236-4 sign \x5182 13-235-3 sign \x5184 1245-1236-4 sign \x5185 1345-345-5 sign \x5187 134-12356-4 sign \x5188 13-1346-3 sign \x5189 1245-1236-4 sign \x518A 245-2346-5 sign \x518B 13-235-3 sign \x518C 245-2346-5 sign \x518D 125-2456-5 sign \x518E 13-35-4 sign \x518F 13-235-4 sign \x5190 134-146-5 sign \x5191 1-12356-5 sign \x5192 134-146-5 sign \x5193 13-12356-5 sign \x5194 15-1256-3 sign \x5195 134-2345-4 sign \x5196 134-16-5 sign \x5197 1245-12346-4 sign \x5198 1456-2 sign \x5199 15-346-4 sign \x519A 123-1236-4 sign \x519B 13-256-3 sign \x519C 1345-12346-2 sign \x519D 16-2 sign \x519E 134-16-2 sign \x519F 24-156-5 sign \x51A0 13-12456-5 sign \x51A1 134-1356-2 sign \x51A2 1-12346-4 sign \x51A3 125-1246-5 sign \x51A4 45-3 sign \x51A5 134-13456-2 sign \x51A6 123-12356-5 sign \x51A8 12345-34-5 sign \x51A9 15-346-4 sign \x51AA 134-16-5 sign \x51AB 135-13456-3 sign \x51AC 145-12346-3 sign \x51AD 124-2456-2 sign \x51AE 13-1346-3 sign \x51AF 12345-1356-2 sign \x51B0 135-13456-3 sign \x51B1 1235-34-5 sign \x51B2 12-12346-3 sign \x51B3 13-236-2 sign \x51B4 1235-34-5 sign \x51B5 123-456-5 sign \x51B6 346-4 sign \x51B7 14-1356-4 sign \x51B8 1234-1236-5 sign \x51B9 12345-34-2 sign \x51BA 134-1456-4 sign \x51BB 145-12346-5 sign \x51BC 24-1356-4 sign \x51BD 14-346-5 sign \x51BE 15-23456-2 sign \x51BF 13-2345-3 sign \x51C0 13-13456-5 sign \x51C1 24-34-5 sign \x51C2 134-356-4 sign \x51C3 124-34-2 sign \x51C4 245-16-3 sign \x51C5 13-34-5 sign \x51C6 1-123456-4 sign \x51C7 15-12346-3 sign \x51C8 13-13456-5 sign \x51C9 14-46-2 sign \x51CA 245-13456-5 sign \x51CB 145-246-3 sign \x51CC 14-13456-2 sign \x51CD 145-12346-5 sign \x51CE 135-345-1 sign \x51CF 13-2345-4 sign \x51D0 1456-3 sign \x51D1 245-12356-5 sign \x51D2 16-2 sign \x51D3 14-16-5 sign \x51D4 245-1346-3 sign \x51D5 134-13456-4 sign \x51D7 245-1246-3 sign \x51D8 15-156-3 sign \x51D9 145-25-2 sign \x51DA 13-1456-5 sign \x51DB 14-1456-4 sign \x51DC 14-1456-4 sign \x51DD 1345-13456-2 sign \x51DE 15-16-3 sign \x51DF 145-34-2 sign \x51E0 13-16-4 sign \x51E1 12345-1236-2 sign \x51E2 12345-1236-2 sign \x51E3 12345-1236-2 sign \x51E4 12345-1356-5 sign \x51E5 13-1256-3 sign \x51E6 12-34-4 sign \x51E8 12345-1356-3 sign \x51EB 12345-34-2 sign \x51EC 12345-1356-3 sign \x51ED 1234-13456-2 sign \x51EE 12345-1356-3 sign \x51EF 123-2456-4 sign \x51F0 1235-456-2 sign \x51F1 123-2456-4 sign \x51F2 13-1236-3 sign \x51F3 145-1356-5 sign \x51F4 1234-13456-2 sign \x51F5 123-1236-4 sign \x51F6 15-235-3 sign \x51F7 123-2356-5 sign \x51F8 124-34-2 sign \x51F9 146-3 sign \x51FA 12-34-3 sign \x51FB 13-16-2 sign \x51FC 145-1346-5 sign \x51FD 1235-1236-2 sign \x51FE 1235-1236-2 sign \x51FF 125-146-2 sign \x5200 145-146-3 sign \x5201 145-246-3 sign \x5202 145-146-3 sign \x5203 1245-136-5 sign \x5204 1245-136-5 sign \x5205 12-456-3 sign \x5206 12345-136-3 sign \x5207 245-346-5 sign \x5208 16-5 sign \x5209 13-16-3 sign \x520A 123-1236-3 sign \x520B 245-2345-5 sign \x520C 245-123456-4 sign \x520D 12-34-2 sign \x520E 123456-4 sign \x520F 13-16-3 sign \x5210 145-1236-4 sign \x5211 15-13456-2 sign \x5212 1235-35-2 sign \x5213 12456-4 sign \x5214 13-236-2 sign \x5215 14-16-2 sign \x5216 236-5 sign \x5217 14-346-5 sign \x5218 14-234-2 sign \x5219 125-2346-2 sign \x521A 13-1346-3 sign \x521B 12-456-5 sign \x521C 12345-34-2 sign \x521D 12-34-3 sign \x521E 245-1256-5 sign \x521F 13-1256-3 sign \x5220 24-1236-3 sign \x5221 134-1456-4 sign \x5222 14-13456-2 sign \x5223 1-12346-3 sign \x5224 1234-1236-5 sign \x5225 135-346-2 sign \x5226 13-346-2 sign \x5227 13-346-2 sign \x5228 135-146-5 sign \x5229 14-16-5 sign \x522A 24-1236-3 sign \x522B 135-346-5 sign \x522C 12-1236-4 sign \x522D 13-13456-3 sign \x522E 13-35-3 sign \x522F 13-136-3 sign \x5230 145-146-5 sign \x5231 12-456-5 sign \x5232 123-1246-3 sign \x5233 123-34-3 sign \x5234 145-25-5 sign \x5235 156-5 sign \x5236 1-156-5 sign \x5237 24-35-3 sign \x5238 245-45-5 sign \x5239 12-345-5 sign \x523A 245-156-5 sign \x523B 123-2346-5 sign \x523C 13-346-2 sign \x523D 123-2356-5 sign \x523E 245-156-5 sign \x523F 13-1246-5 sign \x5240 13-2456-3 sign \x5241 145-25-5 sign \x5242 13-16-5 sign \x5243 124-16-5 sign \x5244 13-13456-3 sign \x5245 14-12356-2 sign \x5246 14-25-2 sign \x5247 125-2346-2 sign \x5248 45-3 sign \x5249 245-25-5 sign \x524A 15-246-3 sign \x524B 123-2346-5 sign \x524C 14-345-5 sign \x524D 245-2345-2 sign \x524E 12-345-5 sign \x524F 12-456-5 sign \x5250 13-35-4 sign \x5251 13-2345-5 sign \x5252 245-25-5 sign \x5253 14-16-2 sign \x5254 124-16-3 sign \x5255 12345-356-5 sign \x5256 1234-12356-4 sign \x5257 12-1236-4 sign \x5258 245-16-2 sign \x5259 12-456-5 sign \x525A 125-156-5 sign \x525B 13-1346-3 sign \x525C 12456-3 sign \x525D 135-126-3 sign \x525E 13-16-4 sign \x525F 145-25-2 sign \x5260 14-236-5 sign \x5261 24-1236-5 sign \x5262 1-25-2 sign \x5263 13-2345-5 sign \x5264 13-16-5 sign \x5265 135-126-3 sign \x5266 2345-3 sign \x5267 13-1256-5 sign \x5268 1235-25-5 sign \x5269 24-1356-5 sign \x526A 13-2345-4 sign \x526B 145-25-2 sign \x526C 145-12456-3 sign \x526D 34-3 sign \x526E 13-35-4 sign \x526F 12345-34-5 sign \x5270 24-1356-5 sign \x5271 13-2345-5 sign \x5272 13-2346-3 sign \x5273 1-345-2 sign \x5274 13-2456-3 sign \x5275 12-456-5 sign \x5276 13-45-3 sign \x5277 12-1236-4 sign \x5278 1-12456-4 sign \x5279 14-34-5 sign \x527A 14-16-2 sign \x527B 12345-12356-2 sign \x527C 24-1236-3 sign \x527D 1234-246-5 sign \x527E 123-12356-3 sign \x527F 13-246-4 sign \x5280 13-35-3 sign \x5281 245-246-2 sign \x5282 13-236-2 sign \x5283 1235-35-5 sign \x5284 1-345-2 sign \x5285 1-25-5 sign \x5286 14-2345-2 sign \x5287 13-1256-5 sign \x5288 1234-16-3 sign \x5289 14-234-2 sign \x528A 123-2356-5 sign \x528B 13-246-4 sign \x528C 13-1246-5 sign \x528D 13-2345-5 sign \x528E 13-2345-5 sign \x528F 124-1346-3 sign \x5290 1235-25-3 sign \x5291 13-16-5 sign \x5292 13-2345-5 sign \x5293 16-5 sign \x5294 13-2345-5 sign \x5295 1-156-2 sign \x5296 12-1236-2 sign \x5297 13-2345-4 sign \x5298 134-16-2 sign \x5299 14-16-2 sign \x529A 1-34-2 sign \x529B 14-16-5 sign \x529C 23456-3 sign \x529D 245-45-5 sign \x529E 135-1236-5 sign \x529F 13-12346-3 sign \x52A0 13-23456-3 sign \x52A1 34-5 sign \x52A2 134-2456-5 sign \x52A3 14-346-5 sign \x52A4 13-1456-5 sign \x52A5 123-1356-3 sign \x52A6 15-346-2 sign \x52A7 1-156-4 sign \x52A8 145-12346-5 sign \x52A9 1-34-5 sign \x52AA 1345-34-4 sign \x52AB 13-346-2 sign \x52AC 245-1256-2 sign \x52AD 24-146-5 sign \x52AE 16-5 sign \x52AF 1-34-3 sign \x52B0 134-246-4 sign \x52B1 14-16-5 sign \x52B2 13-1456-5 sign \x52B3 14-146-2 sign \x52B4 14-146-2 sign \x52B5 245-45-5 sign \x52B6 123-12356-4 sign \x52B7 46-2 sign \x52B8 35-3 sign \x52B9 15-246-5 sign \x52BA 134-12356-2 sign \x52BB 123-456-3 sign \x52BC 13-346-2 sign \x52BD 14-346-5 sign \x52BE 1235-2346-2 sign \x52BF 24-156-5 sign \x52C0 123-2346-5 sign \x52C1 13-1456-5 sign \x52C2 1235-146-2 sign \x52C3 135-126-2 sign \x52C4 134-1456-4 sign \x52C5 12-156-5 sign \x52C6 14-1346-2 sign \x52C7 235-4 sign \x52C8 235-4 sign \x52C9 134-2345-4 sign \x52CA 123-2346-5 sign \x52CB 15-256-3 sign \x52CC 13-45-5 sign \x52CD 245-13456-2 sign \x52CE 14-34-5 sign \x52CF 1234-12356-4 sign \x52D0 134-1356-4 sign \x52D1 12-156-5 sign \x52D2 14-2346-5 sign \x52D3 123-2456-5 sign \x52D4 134-2345-4 sign \x52D5 145-12346-5 sign \x52D6 15-1256-5 sign \x52D7 15-1256-5 sign \x52D8 123-1236-3 sign \x52D9 34-5 sign \x52DA 16-5 sign \x52DB 15-256-3 sign \x52DC 12346-4 sign \x52DD 24-1356-5 sign \x52DE 14-146-2 sign \x52DF 134-34-5 sign \x52E0 14-34-5 sign \x52E1 1234-246-5 sign \x52E2 24-156-5 sign \x52E3 13-16-3 sign \x52E4 245-1456-2 sign \x52E5 245-46-4 sign \x52E6 13-246-4 sign \x52E7 245-45-5 sign \x52E8 46-4 sign \x52E9 16-5 sign \x52EA 13-236-2 sign \x52EB 12345-1236-2 sign \x52EC 13-45-5 sign \x52ED 124-12346-2 sign \x52EE 13-1256-5 sign \x52EF 145-1236-3 sign \x52F0 15-346-2 sign \x52F1 134-2456-5 sign \x52F2 15-256-3 sign \x52F3 15-256-3 sign \x52F4 14-1256-5 sign \x52F5 14-16-5 sign \x52F6 12-2346-5 sign \x52F7 1245-1346-2 sign \x52F8 245-45-5 sign \x52F9 135-146-3 sign \x52FA 24-146-2 sign \x52FB 256-2 sign \x52FC 13-234-3 sign \x52FD 135-146-5 sign \x52FE 13-12356-3 sign \x52FF 34-5 sign \x5300 256-2 sign \x5303 13-2456-5 sign \x5304 13-2456-5 sign \x5305 135-146-3 sign \x5306 245-12346-3 sign \x5308 15-235-3 sign \x5309 1234-1356-3 sign \x530A 13-1256-2 sign \x530B 124-146-2 sign \x530C 13-2346-2 sign \x530D 1234-34-2 sign \x530E 25-5 sign \x530F 1234-146-2 sign \x5310 12345-34-2 sign \x5311 245-235-3 sign \x5312 145-345-2 sign \x5313 13-234-5 sign \x5314 245-235-3 sign \x5315 135-16-4 sign \x5316 1235-35-5 sign \x5317 135-356-4 sign \x5318 1345-146-4 sign \x5319 12-156-2 sign \x531A 12345-1346-3 sign \x531B 13-234-5 sign \x531C 16-2 sign \x531D 125-345-3 sign \x531E 13-46-5 sign \x531F 123-1346-5 sign \x5320 13-46-5 sign \x5321 123-456-3 sign \x5322 1235-34-3 sign \x5323 15-23456-2 sign \x5324 245-1256-3 sign \x5325 135-2345-5 sign \x5326 13-1246-4 sign \x5327 245-346-5 sign \x5328 125-1346-3 sign \x5329 123-456-3 sign \x532A 12345-356-4 sign \x532B 1235-34-3 sign \x532C 124-12356-2 sign \x532D 13-1246-4 sign \x532E 123-1246-5 sign \x532F 1235-1246-5 sign \x5330 145-1236-3 sign \x5331 123-1246-5 sign \x5332 14-2345-2 sign \x5333 14-2345-2 sign \x5334 15-12456-5 sign \x5335 145-34-2 sign \x5336 13-234-5 sign \x5337 245-1256-2 sign \x5338 15-16-5 sign \x5339 1234-16-3 sign \x533A 245-1256-3 sign \x533B 16-3 sign \x533C 1236-5 sign \x533D 2345-4 sign \x533E 135-2345-4 sign \x533F 1345-16-5 sign \x5340 245-1256-3 sign \x5341 24-156-2 sign \x5342 15-1456-5 sign \x5343 245-2345-3 sign \x5344 1346-1346 sign \x5345 15-345-5 sign \x5346 125-34-2 sign \x5347 24-1356-3 sign \x5348 34-4 sign \x5349 1235-1246-5 sign \x534A 135-1236-5 sign \x534B 24-156-5 sign \x534C 15-16-5 sign \x534D 12456-5 sign \x534E 1235-35-2 sign \x534F 15-346-2 sign \x5350 12456-5 sign \x5351 135-356-3 sign \x5352 125-34-2 sign \x5353 1-25-2 sign \x5354 15-346-2 sign \x5355 145-1236-3 sign \x5356 134-2456-5 sign \x5357 1345-1236-2 sign \x5358 145-1236-3 sign \x5359 13-16-2 sign \x535A 135-126-2 sign \x535B 24-2356-5 sign \x535C 135-34-4 sign \x535D 123-456-5 sign \x535E 135-2345-5 sign \x535F 135-34-4 sign \x5360 1-1236-5 sign \x5361 123-345-4 sign \x5362 14-34-2 sign \x5363 234-4 sign \x5364 14-34-4 sign \x5365 15-16-3 sign \x5366 13-35-5 sign \x5367 25-5 sign \x5368 15-346-5 sign \x5369 13-346-2 sign \x536A 13-346-2 sign \x536B 1246-5 sign \x536C 1346-2 sign \x536D 245-235-2 sign \x536E 1-156-3 sign \x536F 134-146-4 sign \x5370 1456-5 sign \x5371 1246-2 sign \x5372 24-146-5 sign \x5373 13-16-2 sign \x5374 245-236-5 sign \x5375 14-12456-4 sign \x5376 24-156-5 sign \x5377 13-45-4 sign \x5378 15-346-5 sign \x5379 15-1256-5 sign \x537A 13-1456-4 sign \x537B 245-236-5 sign \x537C 34-5 sign \x537D 13-16-2 sign \x537E 2346-5 sign \x537F 245-13456-3 sign \x5380 15-16-3 sign \x5382 12-1346-4 sign \x5383 1-1236-3 sign \x5384 2346-5 sign \x5385 124-13456-3 sign \x5386 14-16-5 sign \x5387 1-2346-2 sign \x5388 1235-1236-4 sign \x5389 14-16-5 sign \x538A 23456-4 sign \x538B 23456-3 sign \x538C 2345-5 sign \x538D 24-2346-5 sign \x538E 1-156-4 sign \x538F 1-345-4 sign \x5390 1234-1346-2 sign \x5392 1235-2346-2 sign \x5393 23456-2 sign \x5394 1-156-5 sign \x5395 245-2346-5 sign \x5396 12345-1346-2 sign \x5397 124-16-2 sign \x5398 14-16-2 sign \x5399 24-2346-5 sign \x539A 1235-12356-5 sign \x539B 124-13456-3 sign \x539C 125-1246-3 sign \x539D 245-25-5 sign \x539E 12345-356-5 sign \x539F 45-2 sign \x53A0 245-2346-5 sign \x53A1 45-2 sign \x53A2 15-46-3 sign \x53A3 2345-4 sign \x53A4 14-16-5 sign \x53A5 13-236-2 sign \x53A6 15-23456-5 sign \x53A7 145-2345-3 sign \x53A8 12-34-2 sign \x53A9 13-234-5 sign \x53AA 13-1456-4 sign \x53AB 146-2 sign \x53AC 13-1246-4 sign \x53AD 2345-5 sign \x53AE 15-156-3 sign \x53AF 14-16-5 sign \x53B0 12-1346-4 sign \x53B1 14-1236-2 sign \x53B2 14-16-5 sign \x53B3 2345-2 sign \x53B4 2345-4 sign \x53B5 45-2 sign \x53B6 134-12356-4 sign \x53B7 13-12346-3 sign \x53B8 14-1456-2 sign \x53B9 1245-12356-2 sign \x53BA 245-1256-5 sign \x53BB 245-1256-5 sign \x53BD 14-356-4 sign \x53BE 145-34-3 sign \x53BF 15-2345-5 sign \x53C0 1-12456-3 sign \x53C1 15-1236-3 sign \x53C2 245-1236-3 sign \x53C3 245-1236-3 sign \x53C4 245-1236-3 sign \x53C5 245-1236-3 sign \x53C6 2456-5 sign \x53C7 145-2456-5 sign \x53C8 234-5 sign \x53C9 12-345-3 sign \x53CA 13-16-2 sign \x53CB 234-4 sign \x53CC 24-456-3 sign \x53CD 12345-1236-4 sign \x53CE 24-12356-3 sign \x53CF 13-2356-5 sign \x53D0 135-345-2 sign \x53D1 12345-345-4 sign \x53D2 1245-25-5 sign \x53D3 24-156-5 sign \x53D4 24-34-2 sign \x53D5 1-25-2 sign \x53D6 245-1256-4 sign \x53D7 24-12356-5 sign \x53D8 135-2345-5 sign \x53D9 15-1256-5 sign \x53DA 13-23456-4 sign \x53DB 1234-1236-5 sign \x53DC 15-12356-4 sign \x53DD 13-146-5 sign \x53DE 1246-5 sign \x53DF 15-12356-4 sign \x53E0 145-346-2 sign \x53E1 1245-1246-5 sign \x53E2 245-12346-2 sign \x53E3 123-12356-4 sign \x53E4 13-34-4 sign \x53E5 13-1256-5 sign \x53E6 14-13456-5 sign \x53E7 13-35-4 sign \x53E8 145-146-3 sign \x53E9 123-12356-5 sign \x53EA 1-156-4 sign \x53EB 13-246-5 sign \x53EC 1-146-5 sign \x53ED 135-345-3 sign \x53EE 145-13456-3 sign \x53EF 123-2346-4 sign \x53F0 124-2456-2 sign \x53F1 12-156-5 sign \x53F2 24-156-4 sign \x53F3 234-5 sign \x53F4 245-234-2 sign \x53F5 1234-126-4 sign \x53F6 346-5 sign \x53F7 1235-146-5 sign \x53F8 15-156-3 sign \x53F9 124-1236-5 sign \x53FA 12-156-4 sign \x53FB 14-2346-5 sign \x53FC 145-246-3 sign \x53FD 13-16-3 sign \x53FF 1235-12346-3 sign \x5400 134-346-3 sign \x5401 15-1256-3 sign \x5402 134-1346-2 sign \x5403 12-156-3 sign \x5404 13-2346-5 sign \x5405 15-45-3 sign \x5406 246-3 sign \x5407 125-156-4 sign \x5408 1235-2346-2 sign \x5409 13-16-2 sign \x540A 145-246-5 sign \x540B 245-123456-5 sign \x540C 124-12346-2 sign \x540D 134-13456-2 sign \x540E 1235-12356-5 sign \x540F 14-16-5 sign \x5410 124-34-4 sign \x5411 15-46-5 sign \x5412 1-345-5 sign \x5413 15-23456-5 sign \x5414 346-4 sign \x5415 14-1256-4 sign \x5416 345-3 sign \x5417 134-345-4 sign \x5418 12356-4 sign \x5419 15-236-3 sign \x541A 16-3 sign \x541B 13-256-3 sign \x541C 12-12356-4 sign \x541D 14-1456-5 sign \x541E 124-123456-3 sign \x541F 1456-2 sign \x5420 12345-356-5 sign \x5421 135-16-4 sign \x5422 245-1456-5 sign \x5423 245-1456-5 sign \x5424 13-346-5 sign \x5425 1234-12356-3 sign \x5426 12345-12356-4 sign \x5427 135-345-1 sign \x5428 124-123456-2 sign \x5429 12345-136-3 sign \x542A 2346-2 sign \x542B 1235-1236-2 sign \x542C 124-13456-3 sign \x542D 123-1356-3 sign \x542E 24-123456-4 sign \x542F 245-16-4 sign \x5430 1235-12346-2 sign \x5431 125-156-3 sign \x5432 24-136-4 sign \x5433 34-2 sign \x5434 34-2 sign \x5435 12-146-4 sign \x5436 1345-345-5 sign \x5437 15-236-5 sign \x5438 15-16-3 sign \x5439 12-1246-3 sign \x543A 145-12356-3 sign \x543B 123456-4 sign \x543C 1235-12356-4 sign \x543D 12356-2 sign \x543E 34-2 sign \x543F 13-146-5 sign \x5440 23456-3 sign \x5441 13-256-5 sign \x5442 14-1256-4 sign \x5443 2346-5 sign \x5444 13-2346-2 sign \x5445 134-356-2 sign \x5446 145-2456-3 sign \x5447 245-16-4 sign \x5448 12-1356-2 sign \x5449 34-2 sign \x544A 13-146-5 sign \x544B 12345-34-3 sign \x544C 13-246-5 sign \x544D 1235-12346-3 sign \x544E 12-156-4 sign \x544F 24-1356-3 sign \x5450 1345-345-5 sign \x5451 124-123456-3 sign \x5452 34-4 sign \x5453 16-5 sign \x5454 124-2456-5 sign \x5455 12356-4 sign \x5456 14-16-5 sign \x5457 135-2456-5 sign \x5458 45-2 sign \x5459 13-2346-3 sign \x545B 245-46-5 sign \x545C 34-3 sign \x545D 2346-5 sign \x545E 24-156-3 sign \x545F 245-45-4 sign \x5460 1234-136-4 sign \x5461 123456-4 sign \x5462 1345-2346-1 sign \x5463 134-12356-2 sign \x5464 14-13456-2 sign \x5465 1245-1236-2 sign \x5466 234-3 sign \x5467 145-16-4 sign \x5468 1-12356-3 sign \x5469 24-156-5 sign \x546A 1-12356-5 sign \x546B 124-346-3 sign \x546C 14-13456-2 sign \x546D 16-5 sign \x546E 245-16-5 sign \x546F 1234-13456-2 sign \x5470 125-156-4 sign \x5471 13-35-3 sign \x5472 125-156-3 sign \x5473 1246-5 sign \x5474 15-1256-3 sign \x5475 1235-2346-3 sign \x5476 1345-146-2 sign \x5477 15-23456-2 sign \x5478 1234-356-3 sign \x5479 16-5 sign \x547A 15-246-3 sign \x547B 24-136-3 sign \x547C 1235-34-3 sign \x547D 134-13456-5 sign \x547E 145-345-2 sign \x547F 245-1256-3 sign \x5480 125-1246-4 sign \x5481 15-2345-2 sign \x5482 125-345-3 sign \x5483 124-25-3 sign \x5484 145-25-5 sign \x5485 1234-12356-5 sign \x5486 1234-146-2 sign \x5487 135-346-2 sign \x5488 12345-34-2 sign \x5489 46-3 sign \x548A 1235-2346-2 sign \x548B 1-345-5 sign \x548C 1235-2346-2 sign \x548D 1235-2456-2 sign \x548E 13-234-5 sign \x548F 235-4 sign \x5490 12345-34-5 sign \x5491 145-345-3 sign \x5492 1-12356-5 sign \x5493 35-4 sign \x5494 123-345-4 sign \x5495 13-34-3 sign \x5496 123-345-3 sign \x5497 125-25-4 sign \x5498 135-34-5 sign \x5499 14-12346-2 sign \x549A 145-12346-3 sign \x549B 1345-13456-2 sign \x549D 15-156-3 sign \x549E 15-2345-5 sign \x549F 1235-25-5 sign \x54A0 245-16-3 sign \x54A1 156-5 sign \x54A2 2346-5 sign \x54A3 13-456-3 sign \x54A4 1-345-5 sign \x54A5 15-16-3 sign \x54A6 16-2 sign \x54A7 14-346-4 sign \x54A8 125-156-3 sign \x54A9 134-346-3 sign \x54AA 134-16-3 sign \x54AB 1-156-4 sign \x54AC 246-4 sign \x54AD 13-16-3 sign \x54AE 1-34-3 sign \x54AF 123-2346-5 sign \x54B0 24-2356-5 sign \x54B1 125-1236-2 sign \x54B2 15-246-5 sign \x54B3 123-2346-2 sign \x54B4 1235-1246-3 sign \x54B5 123-35-3 sign \x54B6 1235-2356-5 sign \x54B7 124-146-2 sign \x54B8 15-2345-2 sign \x54B9 2346-5 sign \x54BA 15-45-4 sign \x54BB 15-234-3 sign \x54BC 13-2346-3 sign \x54BD 2345-5 sign \x54BE 14-146-4 sign \x54BF 16-3 sign \x54C0 2456-3 sign \x54C1 1234-1456-4 sign \x54C2 24-136-4 sign \x54C3 124-12346-2 sign \x54C4 1235-12346-3 sign \x54C5 15-235-3 sign \x54C6 12-156-4 sign \x54C7 35-3 sign \x54C8 1235-345-3 sign \x54C9 125-2456-3 sign \x54CA 1256-5 sign \x54CB 145-16-5 sign \x54CC 1234-2456-5 sign \x54CD 15-46-4 sign \x54CE 2456-3 sign \x54CF 13-136-2 sign \x54D0 123-456-3 sign \x54D1 23456-4 sign \x54D2 145-345-2 sign \x54D3 15-246-3 sign \x54D4 135-16-5 sign \x54D5 236-3 sign \x54D6 1345-2345-2 sign \x54D7 1235-35-2 sign \x54D9 123-2356-5 sign \x54DA 145-25-4 sign \x54DC 13-16-5 sign \x54DD 1345-12346-2 sign \x54DE 134-12356-2 sign \x54DF 246-3 sign \x54E0 1235-146-5 sign \x54E1 45-2 sign \x54E2 14-12346-5 sign \x54E3 1234-12356-4 sign \x54E4 134-1346-2 sign \x54E5 13-2346-3 sign \x54E6 2346-2 sign \x54E7 15-23456-5 sign \x54E8 24-146-5 sign \x54E9 14-16-4 sign \x54EA 1345-345-4 sign \x54EB 125-34-2 sign \x54EC 1235-2346-2 sign \x54ED 123-34-3 sign \x54EE 15-246-5 sign \x54EF 15-2345-5 sign \x54F0 14-146-2 sign \x54F1 1234-126-5 sign \x54F2 1-2346-2 sign \x54F3 1-345-2 sign \x54F4 14-46-5 sign \x54F5 135-345-3 sign \x54F6 134-346-3 sign \x54F7 14-2346-5 sign \x54F8 15-1246-3 sign \x54F9 12345-12356-2 sign \x54FA 135-34-4 sign \x54FB 1235-1236-5 sign \x54FC 1235-1356-3 sign \x54FD 13-1356-4 sign \x54FE 24-25-3 sign \x54FF 13-2346-4 sign \x5500 234-4 sign \x5501 2345-5 sign \x5502 13-34-4 sign \x5503 13-34-4 sign \x5504 135-2456-5 sign \x5505 1235-1236-3 sign \x5506 15-25-3 sign \x5507 12-123456-2 sign \x5508 16-5 sign \x5509 2456-3 sign \x550A 13-23456-2 sign \x550B 124-34-2 sign \x550C 15-2345-2 sign \x550D 1235-12456-4 sign \x550E 14-16-5 sign \x550F 15-16-3 sign \x5510 124-1346-2 sign \x5511 24-156-5 sign \x5512 134-234-3 sign \x5513 12-2346-3 sign \x5514 34-2 sign \x5515 125-146-5 sign \x5516 23456-4 sign \x5517 145-12356-3 sign \x5518 245-16-4 sign \x5519 145-16-2 sign \x551A 245-1456-5 sign \x551B 134-345-4 sign \x551D 1235-12346-4 sign \x551E 145-12356-4 sign \x5520 14-146-2 sign \x5521 14-46-4 sign \x5522 15-25-4 sign \x5523 125-146-5 sign \x5524 1235-12456-5 sign \x5526 24-345-3 sign \x5527 13-16-3 sign \x5528 125-25-4 sign \x5529 25-3 sign \x552A 12345-1356-4 sign \x552B 1456-2 sign \x552C 1235-34-4 sign \x552D 245-16-5 sign \x552E 24-12356-5 sign \x552F 1246-2 sign \x5530 24-35-3 sign \x5531 12-1346-5 sign \x5532 156-2 sign \x5533 14-16-5 sign \x5534 245-46-5 sign \x5535 1236-4 sign \x5536 13-346-5 sign \x5537 234-1 sign \x5538 1345-2345-5 sign \x5539 1256-3 sign \x553A 124-2345-4 sign \x553B 14-2456-4 sign \x553C 24-345-5 sign \x553D 15-16-3 sign \x553E 124-25-5 sign \x553F 1235-34-3 sign \x5540 26-2 sign \x5541 1-12356-3 sign \x5542 1345-12356-5 sign \x5543 123-136-4 sign \x5544 1-25-2 sign \x5545 1-25-2 sign \x5546 24-1346-3 sign \x5547 145-16-2 sign \x5548 1235-1356-5 sign \x5549 14-1236-2 sign \x554A 345-3 sign \x554B 15-246-3 sign \x554C 15-46-3 sign \x554D 124-123456-3 sign \x554E 34-4 sign \x554F 123456-5 sign \x5550 245-1246-5 sign \x5551 24-345-5 sign \x5552 1235-34-3 sign \x5553 245-16-4 sign \x5554 245-16-4 sign \x5555 124-146-2 sign \x5556 145-1236-5 sign \x5557 145-1236-5 sign \x5558 346-5 sign \x5559 125-156-3 sign \x555A 124-34-2 sign \x555B 245-1246-5 sign \x555C 12-25-5 sign \x555D 1235-2346-2 sign \x555E 23456-4 sign \x555F 245-16-4 sign \x5560 1-2346-2 sign \x5561 12345-356-3 sign \x5562 14-46-4 sign \x5563 15-2345-2 sign \x5564 1234-16-2 sign \x5565 24-345-2 sign \x5566 14-345-3 sign \x5567 125-2346-2 sign \x5568 245-13456-3 sign \x5569 13-35-5 sign \x556A 1234-345-3 sign \x556B 1-2346-4 sign \x556C 15-2346-5 sign \x556D 1-12456-4 sign \x556E 1345-346-5 sign \x556F 13-25-1 sign \x5570 14-25-3 sign \x5571 2345-3 sign \x5572 145-16-5 sign \x5573 245-45-2 sign \x5574 124-1236-3 sign \x5575 135-126-3 sign \x5576 145-13456-5 sign \x5577 14-1346-3 sign \x5578 15-246-5 sign \x557A 124-1346-2 sign \x557B 12-156-5 sign \x557C 124-16-2 sign \x557D 1236-2 sign \x557E 13-234-3 sign \x557F 124-1236-4 sign \x5580 123-2346-5 sign \x5581 1256-2 sign \x5582 1246-5 sign \x5583 1345-1236-2 sign \x5584 24-1236-5 sign \x5585 1256-5 sign \x5586 1-2346-2 sign \x5587 14-345-4 sign \x5588 13-346-3 sign \x5589 1235-12356-2 sign \x558A 1235-1236-4 sign \x558B 145-346-2 sign \x558C 1-34-5 sign \x558D 12-2456-2 sign \x558E 13-25-3 sign \x558F 1245-2346-4 sign \x5590 1256-5 sign \x5591 1456-3 sign \x5592 125-1236-2 sign \x5593 246-3 sign \x5594 126-3 sign \x5595 134-2345-4 sign \x5596 1235-34-2 sign \x5597 256-4 sign \x5598 12-12456-4 sign \x5599 1235-1246-5 sign \x559A 1235-12456-5 sign \x559B 1235-12456-5 sign \x559C 15-16-4 sign \x559D 1235-2346-3 sign \x559E 13-16-3 sign \x559F 123-1246-5 sign \x55A0 1-12346-4 sign \x55A1 1246-4 sign \x55A2 24-345-5 sign \x55A3 15-1256-4 sign \x55A4 1235-456-2 sign \x55A5 145-25-2 sign \x55A6 1345-346-5 sign \x55A7 15-45-3 sign \x55A8 14-46-5 sign \x55A9 1256-5 sign \x55AA 15-1346-3 sign \x55AB 12-156-3 sign \x55AC 245-246-2 sign \x55AD 1236-5 sign \x55AE 145-1236-3 sign \x55AF 1234-136-3 sign \x55B0 245-1236-3 sign \x55B1 14-16-2 sign \x55B2 246-3 sign \x55B3 12-345-3 sign \x55B4 1246-3 sign \x55B5 134-246-3 sign \x55B6 13456-2 sign \x55B7 1234-136-3 sign \x55B9 123-1246-2 sign \x55BA 15-16-5 sign \x55BB 1256-5 sign \x55BC 13-346-2 sign \x55BD 14-12356-2 sign \x55BE 123-34-5 sign \x55BF 125-146-5 sign \x55C0 15-236-5 sign \x55C1 124-16-2 sign \x55C2 246-2 sign \x55C3 1235-2346-5 sign \x55C4 24-345-5 sign \x55C5 15-234-5 sign \x55C6 245-46-5 sign \x55C7 15-2346-5 sign \x55C8 235-3 sign \x55C9 15-34-5 sign \x55CA 1235-12346-4 sign \x55CB 15-346-2 sign \x55CC 16-5 sign \x55CD 24-25-5 sign \x55CE 134-345-3 sign \x55CF 12-345-3 sign \x55D0 15-23456-5 sign \x55D1 123-2346-5 sign \x55D2 124-345-5 sign \x55D3 15-1346-4 sign \x55D4 12-136-3 sign \x55D5 1245-34-5 sign \x55D6 15-12356-3 sign \x55D7 35-3 sign \x55D8 13-16-3 sign \x55D9 1234-1346-4 sign \x55DA 34-3 sign \x55DB 15-2345-2 sign \x55DC 24-156-5 sign \x55DD 13-2346-2 sign \x55DE 125-156-3 sign \x55DF 13-346-3 sign \x55E0 14-25-5 sign \x55E1 12346-3 sign \x55E2 35-5 sign \x55E3 15-156-5 sign \x55E4 12-156-3 sign \x55E5 1235-146-2 sign \x55E6 15-25-3 sign \x55E7 36-1245-1-123-36 sign \x55E8 1235-2456-5 sign \x55E9 15-25-4 sign \x55EA 245-1456-2 sign \x55EB 1345-346-5 sign \x55EC 1235-2346-3 sign \x55EE 15-2456-5 sign \x55EF 136-4 sign \x55F0 13-2346-5 sign \x55F1 1345-345-2 sign \x55F2 145-346-3 sign \x55F3 2456-5 sign \x55F5 124-12346-3 sign \x55F6 135-16-5 sign \x55F7 146-2 sign \x55F8 146-2 sign \x55F9 14-2345-2 sign \x55FA 125-1246-3 sign \x55FB 1-2346-4 sign \x55FC 134-126-5 sign \x55FD 15-12356-5 sign \x55FE 15-12356-4 sign \x55FF 124-1236-4 sign \x5600 125-2346-2 sign \x5601 125-345-3 sign \x5602 13-246-5 sign \x5603 12-12346-3 sign \x5604 13-246-3 sign \x5605 123-2456-4 sign \x5606 124-1236-5 sign \x5607 15-1236-3 sign \x5608 245-146-2 sign \x5609 13-23456-3 sign \x560A 2456-2 sign \x560B 15-246-3 sign \x560C 1234-246-3 sign \x560D 14-12356-2 sign \x560E 13-345-3 sign \x560F 13-34-4 sign \x5610 15-246-3 sign \x5611 1235-34-3 sign \x5612 1235-1246-5 sign \x5613 13-25-3 sign \x5614 12356-4 sign \x5615 15-2345-3 sign \x5616 125-2346-2 sign \x5617 12-1346-2 sign \x5618 15-1256-3 sign \x5619 1234-126-2 sign \x561A 145-2346-2 sign \x561B 134-345-1 sign \x561C 134-345-4 sign \x561D 1235-34-2 sign \x561E 14-356-1 sign \x561F 145-34-3 sign \x5620 13-345-3 sign \x5621 124-1346-3 sign \x5622 346-4 sign \x5623 135-1356-3 sign \x5624 13456-3 sign \x5626 13-246-5 sign \x5627 134-16-5 sign \x5628 15-246-5 sign \x5629 1235-35-2 sign \x562A 134-2456-4 sign \x562B 1245-1236-2 sign \x562C 12-2356-5 sign \x562D 1234-1356-3 sign \x562E 14-146-2 sign \x562F 15-246-5 sign \x5630 13-16-3 sign \x5631 1-34-4 sign \x5632 12-146-2 sign \x5633 123-2356-5 sign \x5634 125-1246-4 sign \x5635 15-246-3 sign \x5636 15-156-3 sign \x5637 1235-146-2 sign \x5638 34-4 sign \x5639 14-246-2 sign \x563A 245-246-2 sign \x563B 15-16-3 sign \x563C 15-234-5 sign \x563D 124-1236-3 sign \x563E 124-1236-2 sign \x563F 1235-356-3 sign \x5640 15-123456-5 sign \x5641 34-5 sign \x5642 125-123456-4 sign \x5643 12345-1236-3 sign \x5644 12-156-3 sign \x5645 1235-1246-3 sign \x5646 245-1236-4 sign \x5647 12-456-2 sign \x5648 245-34-5 sign \x5649 145-1236-5 sign \x564A 1256-5 sign \x564B 124-123456-3 sign \x564C 245-1356-3 sign \x564D 13-246-5 sign \x564E 346-3 sign \x564F 15-16-3 sign \x5650 245-16-5 sign \x5651 1235-146-2 sign \x5652 14-2345-2 sign \x5653 15-1256-3 sign \x5654 145-1356-3 sign \x5655 1235-1246-3 sign \x5656 1456-2 sign \x5657 1234-34-3 sign \x5658 13-236-3 sign \x5659 245-1456-2 sign \x565A 15-256-2 sign \x565B 1345-346-5 sign \x565C 14-34-3 sign \x565D 15-156-3 sign \x565E 2345-4 sign \x565F 13456-5 sign \x5660 145-345-2 sign \x5661 1-1236-3 sign \x5662 1256-4 sign \x5663 1-12356-5 sign \x5664 13-1456-5 sign \x5665 1345-12346-2 sign \x5666 236-3 sign \x5667 1235-1246-5 sign \x5668 245-16-5 sign \x5669 2346-5 sign \x566A 125-146-5 sign \x566B 16-3 sign \x566C 24-156-5 sign \x566D 13-246-5 sign \x566E 45-5 sign \x566F 2456-5 sign \x5670 235-3 sign \x5671 15-236-3 sign \x5672 123-2356-5 sign \x5673 1256-4 sign \x5674 1234-136-3 sign \x5675 145-146-5 sign \x5676 13-2346-2 sign \x5677 135-345-1 sign \x5678 145-123456-5 sign \x5679 145-1346-3 sign \x567B 15-2456-1 sign \x567C 1234-16-3 sign \x567D 1234-16-4 sign \x567E 1456-3 sign \x567F 125-1246-4 sign \x5680 1345-13456-2 sign \x5681 145-16-2 sign \x5682 14-1236-5 sign \x5683 124-345-5 sign \x5684 1235-25-5 sign \x5685 1245-34-2 sign \x5686 1235-146-3 sign \x5687 15-23456-5 sign \x5688 23456-5 sign \x5689 145-25-3 sign \x568A 15-16-5 sign \x568B 12-12356-2 sign \x568C 13-16-5 sign \x568D 13-1456-5 sign \x568E 1235-146-2 sign \x568F 124-16-5 sign \x5690 12-1346-2 sign \x5693 135-345-1 sign \x5694 124-16-5 sign \x5695 14-34-3 sign \x5696 1235-1246-5 sign \x5697 135-126-3 sign \x5698 234-3 sign \x5699 1345-346-5 sign \x569A 1456-2 sign \x569B 1235-34-5 sign \x569C 134-126-5 sign \x569D 1235-456-3 sign \x569E 1-2346-2 sign \x569F 14-16-2 sign \x56A0 14-234-2 sign \x56A2 1345-1346-2 sign \x56A3 15-246-3 sign \x56A4 134-126-2 sign \x56A5 2345-5 sign \x56A6 14-16-5 sign \x56A7 14-34-2 sign \x56A8 14-12346-2 sign \x56A9 12345-34-2 sign \x56AA 145-1236-5 sign \x56AB 12-136-5 sign \x56AC 1234-1456-2 sign \x56AD 1234-16-4 sign \x56AE 15-46-5 sign \x56AF 1235-25-5 sign \x56B0 134-126-2 sign \x56B1 15-16-5 sign \x56B2 145-25-4 sign \x56B3 123-34-5 sign \x56B4 2345-2 sign \x56B5 12-1236-2 sign \x56B6 13456-3 sign \x56B7 1245-1346-4 sign \x56B8 145-2345-4 sign \x56B9 14-345-3 sign \x56BA 124-345-5 sign \x56BB 15-246-3 sign \x56BC 13-236-2 sign \x56BD 12-25-5 sign \x56BE 1235-12456-3 sign \x56BF 1235-25-5 sign \x56C0 1-12456-4 sign \x56C1 1345-346-5 sign \x56C2 15-246-3 sign \x56C3 245-345-5 sign \x56C4 14-16-2 sign \x56C5 12-1236-4 sign \x56C6 12-2456-5 sign \x56C7 14-16-5 sign \x56C8 16-5 sign \x56C9 14-25-3 sign \x56CA 1345-1346-2 sign \x56CB 125-1236-5 sign \x56CC 15-34-3 sign \x56CD 15-16-4 sign \x56CF 13-2345-3 sign \x56D0 125-345-2 sign \x56D1 1-34-4 sign \x56D2 14-1236-2 sign \x56D3 1345-346-5 sign \x56D4 1345-1346-2 sign \x56D7 1246-2 sign \x56D8 1235-1246-2 sign \x56D9 1456-3 sign \x56DA 245-234-2 sign \x56DB 15-156-5 sign \x56DC 1345-1456-2 sign \x56DD 13-2345-4 sign \x56DE 1235-1246-2 sign \x56DF 15-1456-5 sign \x56E0 1456-3 sign \x56E1 1345-1236-3 sign \x56E2 124-12456-2 sign \x56E3 124-12456-2 sign \x56E4 124-123456-2 sign \x56E5 123-1346-5 sign \x56E6 45-3 sign \x56E7 13-235-4 sign \x56E8 1234-2345-3 sign \x56E9 256-5 sign \x56EA 245-12346-3 sign \x56EB 1235-34-2 sign \x56EC 1235-1246-2 sign \x56ED 45-2 sign \x56EE 2346-2 sign \x56EF 13-25-2 sign \x56F0 123-123456-5 sign \x56F1 245-12346-3 sign \x56F2 1246-2 sign \x56F3 124-34-2 sign \x56F4 1246-2 sign \x56F5 14-123456-2 sign \x56F6 13-25-2 sign \x56F7 13-256-3 sign \x56F8 1245-156-5 sign \x56F9 14-13456-2 sign \x56FA 13-34-5 sign \x56FB 13-25-2 sign \x56FC 124-2456-3 sign \x56FD 13-25-2 sign \x56FE 124-34-2 sign \x56FF 234-5 sign \x5700 13-25-2 sign \x5701 1456-2 sign \x5702 1235-123456-5 sign \x5703 1234-34-4 sign \x5704 1256-4 sign \x5705 1235-1236-2 sign \x5706 45-2 sign \x5707 14-123456-2 sign \x5708 245-45-3 sign \x5709 1256-4 sign \x570A 245-13456-3 sign \x570B 13-25-2 sign \x570C 12-12456-3 sign \x570D 1246-2 sign \x570E 45-2 sign \x570F 245-45-3 sign \x5710 123-34-3 sign \x5711 12345-34-5 sign \x5712 45-2 sign \x5713 45-2 sign \x5714 2346-5 sign \x5716 124-34-2 sign \x5717 124-34-2 sign \x5718 124-12456-2 sign \x5719 14-236-5 sign \x571A 1235-1246-5 sign \x571B 16-5 sign \x571C 45-2 sign \x571D 14-12456-2 sign \x571E 14-12456-2 sign \x571F 124-34-4 sign \x5720 23456-5 sign \x5721 124-34-4 sign \x5722 124-13456-4 sign \x5723 123-34-3 sign \x5724 1234-34-4 sign \x5725 14-34-5 sign \x5727 23456-3 sign \x5728 125-2456-5 sign \x5729 15-1256-3 sign \x572A 16-3 sign \x572B 1256-5 sign \x572C 34-3 sign \x572D 13-1246-3 sign \x572E 1234-16-4 sign \x572F 16-2 sign \x5730 145-16-5 sign \x5731 245-2345-3 sign \x5732 245-2345-3 sign \x5733 13-256-5 sign \x5734 1-25-2 sign \x5735 145-1346-5 sign \x5736 245-23456-5 sign \x5739 123-456-5 sign \x573A 12-1346-4 sign \x573B 245-16-2 sign \x573C 1345-346-5 sign \x573D 134-126-5 sign \x573E 15-2346-5 sign \x573F 13-23456-2 sign \x5740 1-156-4 sign \x5741 1-156-4 sign \x5742 135-1236-4 sign \x5743 15-256-3 sign \x5744 124-12356-2 sign \x5745 245-1456-4 sign \x5746 12345-136-2 sign \x5747 13-256-3 sign \x5748 123-1356-3 sign \x5749 124-123456-2 sign \x574A 12345-1346-3 sign \x574B 12345-136-5 sign \x574C 135-136-5 sign \x574D 124-1236-3 sign \x574E 123-1236-4 sign \x574F 1235-2356-5 sign \x5750 125-25-5 sign \x5751 123-1356-3 sign \x5752 135-16-5 sign \x5753 15-13456-2 sign \x5754 145-16-5 sign \x5755 13-13456-3 sign \x5756 13-16-5 sign \x5757 123-2356-5 sign \x5758 145-16-4 sign \x5759 13-13456-3 sign \x575A 13-2345-3 sign \x575B 124-1236-2 sign \x575C 14-16-5 sign \x575D 135-345-5 sign \x575E 34-5 sign \x575F 12345-136-2 sign \x5760 1-1246-5 sign \x5761 1234-126-3 sign \x5762 1234-1236-4 sign \x5763 124-1346-2 sign \x5764 123-123456-3 sign \x5765 245-1256-3 sign \x5766 124-1236-4 sign \x5767 1-156-3 sign \x5768 124-25-2 sign \x5769 13-1236-3 sign \x576A 1234-13456-2 sign \x576B 145-2345-5 sign \x576C 13-35-5 sign \x576D 1345-16-2 sign \x576E 124-2456-2 sign \x576F 1234-356-3 sign \x5770 13-235-3 sign \x5771 46-4 sign \x5772 12345-126-2 sign \x5773 146-3 sign \x5774 14-234-5 sign \x5775 245-234-3 sign \x5776 134-34-5 sign \x5777 123-2346-4 sign \x5778 13-12356-5 sign \x5779 15-236-5 sign \x577A 135-345-2 sign \x577B 12-156-2 sign \x577C 12-2346-5 sign \x577D 14-13456-2 sign \x577E 1-34-5 sign \x577F 12345-34-5 sign \x5780 1235-34-3 sign \x5781 1-156-5 sign \x5782 12-1246-2 sign \x5783 14-2346-5 sign \x5784 14-12346-4 sign \x5785 14-12346-4 sign \x5786 14-34-2 sign \x5787 146-5 sign \x5789 1234-146-2 sign \x578B 15-13456-2 sign \x578C 124-12346-4 sign \x578D 13-16-5 sign \x578E 123-2346-5 sign \x578F 14-34-5 sign \x5790 245-156-2 sign \x5791 12-156-4 sign \x5792 14-356-4 sign \x5793 13-2456-3 sign \x5794 1456-3 sign \x5795 1235-12356-5 sign \x5796 145-1246-3 sign \x5797 1-146-5 sign \x5798 12345-34-2 sign \x5799 13-456-3 sign \x579A 246-2 sign \x579B 145-25-4 sign \x579C 145-25-4 sign \x579D 13-1246-4 sign \x579E 12-345-2 sign \x579F 46-2 sign \x57A0 1456-2 sign \x57A1 12345-345-2 sign \x57A2 13-12356-5 sign \x57A3 45-2 sign \x57A4 145-346-2 sign \x57A5 15-346-2 sign \x57A6 123-136-4 sign \x57A7 13-235-3 sign \x57A8 24-12356-4 sign \x57A9 2346-5 sign \x57AB 145-2345-5 sign \x57AC 1235-12346-2 sign \x57AD 34-5 sign \x57AE 123-35-4 sign \x57B1 145-1346-5 sign \x57B2 123-2456-4 sign \x57B4 1345-146-4 sign \x57B5 2345-4 sign \x57B6 15-13456-3 sign \x57B7 15-2345-5 sign \x57B8 12456-2 sign \x57B9 135-1346-3 sign \x57BA 1234-12356-2 sign \x57BB 135-345-5 sign \x57BC 16-5 sign \x57BD 1456-5 sign \x57BE 1235-1236-5 sign \x57BF 15-1256-5 sign \x57C0 12-1246-2 sign \x57C1 245-136-5 sign \x57C2 13-1356-4 sign \x57C3 2456-3 sign \x57C4 1234-1356-2 sign \x57C5 12345-1346-2 sign \x57C6 245-236-5 sign \x57C7 235-4 sign \x57C8 15-256-5 sign \x57C9 13-23456-2 sign \x57CA 145-16-5 sign \x57CB 134-2456-2 sign \x57CC 14-1346-5 sign \x57CD 15-45-5 sign \x57CE 12-1356-2 sign \x57CF 2345-2 sign \x57D0 13-1456-3 sign \x57D1 1-2346-2 sign \x57D2 14-2346-5 sign \x57D3 14-2346-5 sign \x57D4 1234-34-4 sign \x57D5 12-1356-2 sign \x57D7 135-34-5 sign \x57D8 24-156-2 sign \x57D9 15-45-3 sign \x57DA 13-25-3 sign \x57DB 13-235-3 sign \x57DC 346-4 sign \x57DD 1345-2345-5 sign \x57DE 145-16-4 sign \x57DF 1256-5 sign \x57E0 135-34-5 sign \x57E1 34-5 sign \x57E2 245-45-2 sign \x57E3 15-1246-5 sign \x57E4 1234-16-2 sign \x57E5 12-1356-3 sign \x57E6 12456-4 sign \x57E7 13-1256-5 sign \x57E8 14-123456-4 sign \x57E9 1-1356-3 sign \x57EA 123-12346-3 sign \x57EB 12-12346-4 sign \x57EC 145-12346-3 sign \x57ED 145-2456-5 sign \x57EE 124-1236-5 sign \x57EF 1236-4 sign \x57F0 245-2456-5 sign \x57F1 24-34-2 sign \x57F2 135-1356-4 sign \x57F3 123-1236-4 sign \x57F4 1-156-2 sign \x57F5 145-25-4 sign \x57F6 24-156-5 sign \x57F7 1-156-2 sign \x57F8 16-5 sign \x57F9 1234-356-2 sign \x57FA 13-16-3 sign \x57FB 1-123456-4 sign \x57FC 245-16-2 sign \x57FD 15-146-4 sign \x57FE 13-1256-5 sign \x57FF 1345-16-2 sign \x5800 123-34-3 sign \x5801 123-25-5 sign \x5802 124-1346-2 sign \x5803 123-123456-3 sign \x5804 1345-16-4 sign \x5805 13-2345-3 sign \x5806 145-1246-3 sign \x5807 13-1456-4 sign \x5808 13-1346-3 sign \x5809 1256-5 sign \x580A 2346-5 sign \x580B 1234-1356-5 sign \x580C 13-34-5 sign \x580D 124-34-5 sign \x580E 135-345-1 sign \x5810 2456-2 sign \x5811 245-2345-5 sign \x5813 1236-5 sign \x5814 135-345-1 sign \x5815 145-25-5 sign \x5816 1345-146-4 sign \x5817 124-34-2 sign \x5818 12-1356-2 sign \x5819 1456-3 sign \x581A 1235-123456-2 sign \x581B 135-16-5 sign \x581C 14-2345-5 sign \x581D 13-25-3 sign \x581E 145-346-2 sign \x581F 1-12456-5 sign \x5820 1235-12356-5 sign \x5821 135-146-4 sign \x5822 135-146-4 sign \x5823 1256-2 sign \x5824 124-16-2 sign \x5825 134-1356-2 sign \x5826 13-346-3 sign \x5827 1245-12456-2 sign \x5828 13-346-2 sign \x5829 13-1356-5 sign \x582A 123-1236-3 sign \x582B 125-12346-3 sign \x582C 1256-3 sign \x582D 1235-456-2 sign \x582E 2346-5 sign \x582F 246-2 sign \x5830 2345-4 sign \x5831 135-146-5 sign \x5832 13-16-2 sign \x5833 134-356-2 sign \x5834 12-1346-4 sign \x5835 145-34-4 sign \x5836 124-25-3 sign \x5837 1236-4 sign \x5838 12345-1356-2 sign \x5839 1-12346-5 sign \x583A 13-346-5 sign \x583B 1-136-3 sign \x583C 12345-1356-3 sign \x583D 13-1346-3 sign \x583E 12-12456-4 sign \x583F 13-2345-4 sign \x5842 15-46-5 sign \x5843 1235-456-3 sign \x5844 14-1356-2 sign \x5845 145-12456-5 sign \x5847 15-45-3 sign \x5848 13-16-2 sign \x5849 13-16-2 sign \x584A 123-2356-5 sign \x584B 13456-2 sign \x584C 124-345-3 sign \x584D 12-1356-2 sign \x584E 235-4 sign \x584F 123-2456-4 sign \x5850 15-34-5 sign \x5851 15-34-5 sign \x5852 24-156-2 sign \x5853 134-16-5 sign \x5854 124-345-4 sign \x5855 12346-4 sign \x5856 12-1356-2 sign \x5857 124-34-2 sign \x5858 124-1346-2 sign \x5859 245-236-5 sign \x585A 1-12346-4 sign \x585B 14-16-5 sign \x585C 1234-1356-2 sign \x585D 135-1346-5 sign \x585E 15-2456-5 sign \x585F 125-1346-5 sign \x5860 145-1246-3 sign \x5861 124-2345-2 sign \x5862 34-5 sign \x5863 12-1356-4 sign \x5864 15-45-3 sign \x5865 13-2346-2 sign \x5866 1-136-5 sign \x5867 2456-5 sign \x5868 13-12346-3 sign \x5869 2345-2 sign \x586A 123-1236-4 sign \x586B 124-2345-2 sign \x586C 45-2 sign \x586D 123456-3 sign \x586E 15-346-5 sign \x586F 14-234-3 sign \x5871 14-1346-4 sign \x5872 12-1346-4 sign \x5873 1234-1356-2 sign \x5874 135-1356-5 sign \x5875 12-136-2 sign \x5876 14-34-5 sign \x5877 14-34-4 sign \x5878 12356-4 sign \x5879 245-2345-5 sign \x587A 134-356-2 sign \x587B 134-126-5 sign \x587C 1-12456-3 sign \x587D 24-456-4 sign \x587E 24-34-2 sign \x587F 14-12356-2 sign \x5880 12-156-2 sign \x5881 134-1236-5 sign \x5882 135-246-3 sign \x5883 13-13456-5 sign \x5884 245-16-3 sign \x5885 24-34-5 sign \x5886 145-346-2 sign \x5887 1-1346-3 sign \x5888 123-1236-5 sign \x5889 235-3 sign \x588A 145-2345-5 sign \x588B 12-136-4 sign \x588C 1-156-3 sign \x588D 15-16-5 sign \x588E 13-25-3 sign \x588F 245-46-4 sign \x5890 13-1456-4 sign \x5891 145-16-3 sign \x5892 145-16-3 sign \x5893 134-34-5 sign \x5894 245-1246-3 sign \x5895 2345-5 sign \x5896 124-345-4 sign \x5897 125-1356-3 sign \x5898 245-16-2 sign \x5899 245-46-2 sign \x589A 14-46-2 sign \x589C 1-1246-5 sign \x589D 245-246-3 sign \x589E 125-1356-3 sign \x589F 15-1256-3 sign \x58A0 24-1236-5 sign \x58A1 24-1236-5 sign \x58A2 135-345-2 sign \x58A3 1234-34-2 sign \x58A4 123-2356-5 sign \x58A5 145-12346-4 sign \x58A6 12345-1236-2 sign \x58A7 245-236-5 sign \x58A8 134-126-5 sign \x58A9 145-123456-3 sign \x58AA 145-123456-3 sign \x58AB 245-256-3 sign \x58AC 145-16-5 sign \x58AD 24-1356-5 sign \x58AE 145-25-5 sign \x58AF 145-25-5 sign \x58B0 124-1236-2 sign \x58B1 145-1356-5 sign \x58B2 34-4 sign \x58B3 12345-136-2 sign \x58B4 1235-456-2 sign \x58B5 124-1236-2 sign \x58B6 145-345-3 sign \x58B7 346-5 sign \x58BA 1256-5 sign \x58BB 245-46-2 sign \x58BC 13-16-2 sign \x58BD 245-246-3 sign \x58BE 123-136-4 sign \x58BF 16-5 sign \x58C0 1234-16-2 sign \x58C1 135-16-5 sign \x58C2 145-2345-5 sign \x58C3 13-46-3 sign \x58C4 346-4 sign \x58C5 235-4 sign \x58C6 15-236-2 sign \x58C7 124-1236-2 sign \x58C8 14-1236-4 sign \x58C9 13-1256-5 sign \x58CA 1235-2356-5 sign \x58CB 145-1346-5 sign \x58CC 1245-1346-4 sign \x58CD 245-2345-5 sign \x58CE 15-256-3 sign \x58CF 13-2345-5 sign \x58D0 15-16-4 sign \x58D1 1235-25-5 sign \x58D2 2456-5 sign \x58D3 23456-3 sign \x58D4 145-146-4 sign \x58D5 1235-146-2 sign \x58D6 1245-12456-2 sign \x58D8 14-356-4 sign \x58D9 123-456-5 sign \x58DA 14-34-2 sign \x58DB 2345-2 sign \x58DC 124-1236-2 sign \x58DD 1246-4 sign \x58DE 1235-2356-5 sign \x58DF 14-12346-4 sign \x58E0 14-12346-4 sign \x58E1 1245-1246-5 sign \x58E2 14-16-5 sign \x58E3 14-1456-2 sign \x58E4 1245-1346-4 sign \x58E6 15-256-3 sign \x58E7 2345-2 sign \x58E8 14-356-2 sign \x58E9 135-345-5 sign \x58EB 24-156-5 sign \x58EC 1245-136-2 sign \x58EE 1-456-5 sign \x58EF 1-456-5 sign \x58F0 24-1356-3 sign \x58F1 16-3 sign \x58F2 134-2456-5 sign \x58F3 123-2346-2 sign \x58F4 1-34-4 sign \x58F5 1-456-5 sign \x58F6 123-123456-4 sign \x58F7 1235-34-2 sign \x58F8 123-123456-4 sign \x58F9 16-3 sign \x58FA 1235-34-2 sign \x58FB 15-1256-5 sign \x58FC 123-123456-4 sign \x58FD 24-12356-5 sign \x58FE 134-1346-4 sign \x58FF 125-123456-4 sign \x5900 24-12356-5 sign \x5901 16-3 sign \x5902 1-12346-3 sign \x5903 13-34-3 sign \x5904 12-34-5 sign \x5905 13-46-5 sign \x5906 12345-1356-2 sign \x5907 135-356-5 sign \x5909 135-2345-5 sign \x590A 15-1246-3 sign \x590B 245-256-3 sign \x590C 14-13456-2 sign \x590D 12345-34-5 sign \x590E 125-25-5 sign \x590F 15-23456-5 sign \x5910 15-235-5 sign \x5912 1345-146-2 sign \x5913 15-23456-5 sign \x5914 123-1246-2 sign \x5915 15-16-5 sign \x5916 2356-5 sign \x5917 45-5 sign \x5918 134-146-4 sign \x5919 15-34-5 sign \x591A 145-25-3 sign \x591B 145-25-3 sign \x591C 346-5 sign \x591D 245-13456-2 sign \x591F 13-12356-5 sign \x5920 13-12356-5 sign \x5921 245-16-5 sign \x5922 134-1356-5 sign \x5923 134-1356-5 sign \x5924 1456-2 sign \x5925 1235-25-4 sign \x5926 12-136-5 sign \x5927 145-345-5 sign \x5928 125-2346-5 sign \x5929 124-2345-3 sign \x592A 124-2456-5 sign \x592B 12345-34-3 sign \x592C 13-2356-5 sign \x592D 246-3 sign \x592E 46-3 sign \x592F 1235-1346-4 sign \x5930 13-146-4 sign \x5931 24-156-3 sign \x5932 135-136-4 sign \x5933 124-2456-5 sign \x5934 124-12356-2 sign \x5935 2345-4 sign \x5936 135-16-4 sign \x5937 16-2 sign \x5938 123-35-3 sign \x5939 13-23456-2 sign \x593A 145-25-2 sign \x593C 135-345-1 sign \x593D 256-5 sign \x593E 13-23456-2 sign \x593F 1234-345-3 sign \x5940 134-1346-2 sign \x5941 14-2345-2 sign \x5942 1235-12456-5 sign \x5943 145-16-5 sign \x5944 2345-3 sign \x5945 1234-146-5 sign \x5946 245-45-4 sign \x5947 245-16-2 sign \x5948 1345-2456-5 sign \x5949 12345-1356-5 sign \x594A 15-346-2 sign \x594B 12345-136-5 sign \x594C 145-2345-4 sign \x594E 123-1246-2 sign \x594F 125-12356-5 sign \x5950 1235-12456-5 sign \x5951 245-16-5 sign \x5952 123-2456-3 sign \x5953 24-2346-3 sign \x5954 135-136-3 sign \x5955 16-5 sign \x5956 13-46-4 sign \x5957 124-146-5 sign \x5958 125-1346-5 sign \x5959 135-136-4 sign \x595A 15-16-3 sign \x595B 15-46-4 sign \x595C 12345-356-4 sign \x595D 145-246-3 sign \x595E 15-256-5 sign \x595F 123-1356-3 sign \x5960 145-2345-5 sign \x5961 146-5 sign \x5962 24-2346-3 sign \x5963 12346-4 sign \x5964 1234-1236-4 sign \x5965 146-5 sign \x5966 34-5 sign \x5967 146-5 sign \x5968 13-46-4 sign \x5969 14-2345-2 sign \x596A 145-25-2 sign \x596B 256-3 sign \x596C 13-46-4 sign \x596D 24-156-5 sign \x596E 12345-136-5 sign \x596F 1235-25-5 sign \x5970 135-356-5 sign \x5971 14-2345-2 sign \x5972 145-25-2 sign \x5973 1345-1256-4 sign \x5974 1345-34-2 sign \x5975 145-13456-3 sign \x5976 1345-2456-4 sign \x5977 245-2345-3 sign \x5978 13-2345-3 sign \x5979 1248-345-3 sign \x597A 13-234-4 sign \x597B 1345-1236-2 sign \x597C 12-345-4 sign \x597D 1235-146-4 sign \x597E 15-2345-3 sign \x597F 12345-1236-5 sign \x5980 13-16-4 sign \x5981 24-25-5 sign \x5982 1245-34-2 sign \x5983 12345-356-3 sign \x5984 456-5 sign \x5985 1235-12346-2 sign \x5986 1-456-3 sign \x5987 12345-34-5 sign \x5988 134-345-3 sign \x5989 145-1236-3 sign \x598A 1245-136-5 sign \x598B 12345-34-3 sign \x598C 13-13456-5 sign \x598D 2345-2 sign \x598E 1235-2456-5 sign \x598F 123456-5 sign \x5990 1-12346-3 sign \x5991 1234-345-3 sign \x5992 145-34-5 sign \x5993 13-16-5 sign \x5994 123-1356-3 sign \x5995 1-12346-5 sign \x5996 246-3 sign \x5997 13-1456-5 sign \x5998 256-2 sign \x5999 134-246-5 sign \x599A 1234-356-3 sign \x599C 236-5 sign \x599D 1-456-3 sign \x599E 1345-234-3 sign \x599F 2345-5 sign \x59A0 1345-345-5 sign \x59A1 15-1456-3 sign \x59A2 12345-136-2 sign \x59A3 135-16-4 sign \x59A4 1256-2 sign \x59A5 124-25-4 sign \x59A6 12345-1356-3 sign \x59A7 45-2 sign \x59A8 12345-1346-2 sign \x59A9 34-4 sign \x59AA 1256-5 sign \x59AB 13-1246-3 sign \x59AC 145-34-5 sign \x59AD 135-345-2 sign \x59AE 1345-16-2 sign \x59AF 1-12356-2 sign \x59B0 1-25-2 sign \x59B1 1-146-3 sign \x59B2 145-345-2 sign \x59B3 13457-16-4 sign \x59B4 12456-4 sign \x59B5 124-12356-4 sign \x59B6 15-45-2 sign \x59B7 1-156-2 sign \x59B8 2346-3 sign \x59B9 134-356-5 sign \x59BA 134-126-5 sign \x59BB 245-16-3 sign \x59BC 135-16-5 sign \x59BD 24-136-3 sign \x59BE 245-346-5 sign \x59BF 2346-3 sign \x59C0 1235-2346-2 sign \x59C1 15-1256-4 sign \x59C2 12345-345-2 sign \x59C3 1-1356-3 sign \x59C4 134-1456-2 sign \x59C5 135-1236-5 sign \x59C6 134-34-4 sign \x59C7 12345-34-5 sign \x59C8 14-13456-2 sign \x59C9 125-156-4 sign \x59CA 13-346-4 sign \x59CB 24-156-4 sign \x59CC 1245-1236-4 sign \x59CD 24-1236-3 sign \x59CE 46-3 sign \x59CF 245-2345-2 sign \x59D0 13-346-4 sign \x59D1 13-34-3 sign \x59D2 15-156-5 sign \x59D3 15-13456-5 sign \x59D4 1246-4 sign \x59D5 125-156-3 sign \x59D6 13-1256-5 sign \x59D7 24-1236-3 sign \x59D8 1234-1456-3 sign \x59D9 1245-136-5 sign \x59DA 246-2 sign \x59DB 124-12346-4 sign \x59DC 13-46-3 sign \x59DD 24-34-3 sign \x59DE 13-16-2 sign \x59DF 13-2456-3 sign \x59E0 24-1346-5 sign \x59E1 13-35-3 sign \x59E2 13-45-3 sign \x59E3 13-246-4 sign \x59E4 13-12356-5 sign \x59E5 14-146-4 sign \x59E6 13-2345-3 sign \x59E7 13-2345-3 sign \x59E8 16-2 sign \x59E9 1345-2345-5 sign \x59EA 1-156-2 sign \x59EB 13-16-3 sign \x59EC 13-16-3 sign \x59ED 15-2345-5 sign \x59EE 1235-1356-2 sign \x59EF 13-456-3 sign \x59F0 13-256-3 sign \x59F1 123-35-3 sign \x59F2 2345-5 sign \x59F3 134-13456-4 sign \x59F4 14-346-5 sign \x59F5 1234-356-5 sign \x59F6 2345-4 sign \x59F7 234-5 sign \x59F8 2345-2 sign \x59F9 12-345-5 sign \x59FA 15-1456-3 sign \x59FB 1456-3 sign \x59FC 24-156-2 sign \x59FD 13-1246-4 sign \x59FE 245-45-3 sign \x59FF 125-156-3 sign \x5A00 15-12346-3 sign \x5A01 1246-3 sign \x5A02 1235-12346-2 sign \x5A03 35-2 sign \x5A04 14-12356-2 sign \x5A05 23456-5 sign \x5A06 1245-146-2 sign \x5A07 13-246-3 sign \x5A08 14-45-4 sign \x5A09 1234-13456-3 sign \x5A0A 15-2345-5 sign \x5A0B 24-146-5 sign \x5A0C 14-16-4 sign \x5A0D 12-1356-2 sign \x5A0E 15-246-5 sign \x5A0F 134-1346-2 sign \x5A11 15-25-3 sign \x5A12 34-4 sign \x5A13 1246-4 sign \x5A14 123-2346-5 sign \x5A15 14-2456-5 sign \x5A16 12-25-5 sign \x5A17 124-13456-4 sign \x5A18 1345-46-2 sign \x5A19 13456-4 sign \x5A1A 1345-1236-2 sign \x5A1B 1256-2 sign \x5A1C 1345-345-5 sign \x5A1D 1234-356-3 sign \x5A1E 1345-356-4 sign \x5A1F 13-45-3 sign \x5A20 12-136-2 sign \x5A21 1-156-5 sign \x5A22 1235-1236-2 sign \x5A23 145-16-5 sign \x5A24 1-456-3 sign \x5A25 2346-2 sign \x5A26 1234-1456-2 sign \x5A27 124-1246-5 sign \x5A28 1235-1236-5 sign \x5A29 134-2345-4 sign \x5A2A 34-2 sign \x5A2B 2345-2 sign \x5A2C 34-4 sign \x5A2D 15-16-3 sign \x5A2E 2345-2 sign \x5A2F 1256-2 sign \x5A30 15-156-5 sign \x5A31 1256-2 sign \x5A32 35-3 sign \x5A33 135-345-1 sign \x5A34 15-2345-2 sign \x5A35 13-1256-3 sign \x5A36 245-1256-4 sign \x5A37 24-1246-5 sign \x5A38 245-16-3 sign \x5A39 15-2345-2 sign \x5A3A 1-1246-3 sign \x5A3B 145-12346-3 sign \x5A3C 12-1346-3 sign \x5A3D 14-34-5 sign \x5A3E 2456-4 sign \x5A3F 2346-3 sign \x5A40 2346-3 sign \x5A41 14-12356-2 sign \x5A42 134-2345-2 sign \x5A43 245-12346-2 sign \x5A44 1234-12356-4 sign \x5A45 13-1256-2 sign \x5A46 1234-126-2 sign \x5A47 245-2456-4 sign \x5A48 145-13456-2 sign \x5A49 12456-4 sign \x5A4A 135-246-4 sign \x5A4B 15-246-3 sign \x5A4C 24-34-4 sign \x5A4D 245-16-4 sign \x5A4E 1235-1246-3 sign \x5A4F 12345-34-5 sign \x5A50 25-4 sign \x5A51 25-4 sign \x5A52 124-1236-2 sign \x5A53 12345-356-3 sign \x5A55 13-346-3 sign \x5A56 124-2345-3 sign \x5A57 1345-16-2 sign \x5A58 245-45-2 sign \x5A59 13-13456-5 sign \x5A5A 1235-123456-3 sign \x5A5B 13-13456-3 sign \x5A5C 245-2345-3 sign \x5A5D 145-2345-5 sign \x5A5E 15-13456-5 sign \x5A5F 1235-34-5 sign \x5A60 12456-2 sign \x5A61 14-2456-2 sign \x5A62 135-16-5 sign \x5A63 1456-3 sign \x5A64 1-12356-3 sign \x5A65 12-25-5 sign \x5A66 12345-34-5 sign \x5A67 245-13456-5 sign \x5A68 14-123456-2 sign \x5A69 2345-4 sign \x5A6A 14-1236-2 sign \x5A6B 123-123456-3 sign \x5A6C 1456-2 sign \x5A6D 23456-5 sign \x5A6F 14-16-5 sign \x5A70 145-2345-4 sign \x5A71 15-2345-2 sign \x5A73 1235-35-5 sign \x5A74 13456-3 sign \x5A75 12-1236-2 sign \x5A76 24-136-4 sign \x5A77 124-13456-2 sign \x5A78 145-1346-5 sign \x5A79 246-4 sign \x5A7A 34-5 sign \x5A7B 1345-1236-5 sign \x5A7C 12-25-5 sign \x5A7D 13-23456-4 sign \x5A7E 124-12356-3 sign \x5A7F 15-1256-5 sign \x5A80 1256-2 sign \x5A81 1246-3 sign \x5A82 124-16-2 sign \x5A83 1245-12356-2 sign \x5A84 134-356-4 sign \x5A85 145-1236-3 sign \x5A86 1245-12456-4 sign \x5A87 245-1456-3 sign \x5A89 34-3 sign \x5A8A 245-2345-2 sign \x5A8B 12-123456-3 sign \x5A8C 134-146-2 sign \x5A8D 12345-34-5 sign \x5A8E 135-345-1 sign \x5A8F 145-12456-3 sign \x5A90 15-16-3 sign \x5A91 1-12346-5 sign \x5A92 134-356-2 sign \x5A93 1235-456-2 sign \x5A94 134-2345-2 sign \x5A95 2345-4 sign \x5A96 13456-3 sign \x5A97 15-45-3 sign \x5A99 1246-3 sign \x5A9A 134-356-5 sign \x5A9B 45-2 sign \x5A9C 1-136-3 sign \x5A9D 245-234-3 sign \x5A9E 24-156-5 sign \x5A9F 15-346-5 sign \x5AA0 145-25-5 sign \x5AA1 14-2345-5 sign \x5AA2 134-146-5 sign \x5AA3 1245-1236-4 sign \x5AA4 15-156-3 sign \x5AA5 1234-2345-3 sign \x5AA6 1246-5 sign \x5AA7 35-3 sign \x5AA8 13-234-5 sign \x5AA9 1235-34-2 sign \x5AAA 146-4 sign \x5AAC 135-146-4 sign \x5AAD 15-1256-3 sign \x5AAE 124-12356-3 sign \x5AAF 13-1246-3 sign \x5AB0 125-12356-3 sign \x5AB1 246-2 sign \x5AB2 1234-16-5 sign \x5AB3 15-16-2 sign \x5AB4 45-2 sign \x5AB5 13456-5 sign \x5AB6 1245-12346-2 sign \x5AB7 1245-34-5 sign \x5AB8 12-156-3 sign \x5AB9 14-234-2 sign \x5ABA 134-356-4 sign \x5ABB 1234-1236-2 sign \x5ABC 146-4 sign \x5ABD 134-345-3 sign \x5ABE 13-12356-5 sign \x5ABF 123-1246-5 sign \x5AC0 245-1456-2 sign \x5AC1 13-23456-5 sign \x5AC2 15-146-4 sign \x5AC3 1-136-3 sign \x5AC4 45-2 sign \x5AC5 12-345-3 sign \x5AC6 235-2 sign \x5AC7 134-13456-2 sign \x5AC8 13456-3 sign \x5AC9 13-16-2 sign \x5ACA 15-34-5 sign \x5ACB 1345-246-4 sign \x5ACC 15-2345-2 sign \x5ACD 124-146-3 sign \x5ACE 1234-1346-2 sign \x5ACF 14-1346-2 sign \x5AD0 1345-146-4 sign \x5AD1 135-146-2 sign \x5AD2 2456-5 sign \x5AD3 1234-16-5 sign \x5AD4 1234-1456-2 sign \x5AD5 16-5 sign \x5AD6 1234-246-2 sign \x5AD7 1256-5 sign \x5AD8 14-356-2 sign \x5AD9 15-45-2 sign \x5ADA 134-1236-5 sign \x5ADB 16-3 sign \x5ADC 1-1346-3 sign \x5ADD 123-1346-3 sign \x5ADE 12-12346-2 sign \x5ADF 1345-16-5 sign \x5AE0 14-16-2 sign \x5AE1 145-16-2 sign \x5AE2 13-1246-3 sign \x5AE3 2345-3 sign \x5AE4 13-1456-5 sign \x5AE5 1-12456-3 sign \x5AE6 12-1346-2 sign \x5AE7 245-2346-5 sign \x5AE8 1235-1236-3 sign \x5AE9 1345-136-5 sign \x5AEA 14-146-5 sign \x5AEB 134-126-2 sign \x5AEC 1-2346-3 sign \x5AED 1235-34-5 sign \x5AEE 1235-34-5 sign \x5AEF 146-5 sign \x5AF0 1345-136-5 sign \x5AF1 245-46-2 sign \x5AF3 1234-346-5 sign \x5AF4 13-34-3 sign \x5AF5 34-4 sign \x5AF6 245-246-2 sign \x5AF7 124-25-4 sign \x5AF8 1-1236-4 sign \x5AF9 134-146-2 sign \x5AFA 15-2345-2 sign \x5AFB 15-2345-2 sign \x5AFC 134-126-5 sign \x5AFD 14-246-2 sign \x5AFE 14-2345-2 sign \x5AFF 1235-35-5 sign \x5B00 13-1246-3 sign \x5B01 145-1356-3 sign \x5B02 1-156-3 sign \x5B03 15-1256-3 sign \x5B05 1235-35-5 sign \x5B06 15-16-3 sign \x5B07 1235-1246-5 sign \x5B08 1245-146-2 sign \x5B09 15-16-3 sign \x5B0A 2345-5 sign \x5B0B 12-1236-2 sign \x5B0C 13-246-3 sign \x5B0D 134-356-4 sign \x5B0E 12345-1236-5 sign \x5B0F 12345-1236-3 sign \x5B10 15-2345-3 sign \x5B11 16-5 sign \x5B12 1246-5 sign \x5B13 13-246-5 sign \x5B14 12345-34-5 sign \x5B15 24-156-5 sign \x5B16 135-16-5 sign \x5B17 24-1236-5 sign \x5B18 15-1246-5 sign \x5B19 245-46-2 sign \x5B1A 14-2345-2 sign \x5B1B 15-45-3 sign \x5B1D 1345-246-4 sign \x5B1E 145-12346-4 sign \x5B1F 16-5 sign \x5B20 245-1236-2 sign \x5B21 2456-5 sign \x5B22 1345-46-2 sign \x5B23 1345-1356-2 sign \x5B24 134-345-3 sign \x5B25 124-246-4 sign \x5B26 12-12356-2 sign \x5B27 13-1456-5 sign \x5B28 245-156-2 sign \x5B29 1256-2 sign \x5B2A 1234-1456-2 sign \x5B2C 1245-34-2 sign \x5B2D 1345-2456-4 sign \x5B2E 2345-3 sign \x5B2F 124-2456-2 sign \x5B30 13456-3 sign \x5B31 245-1236-2 sign \x5B32 1345-246-4 sign \x5B34 13456-2 sign \x5B35 134-2345-2 sign \x5B37 134-345-3 sign \x5B38 24-136-4 sign \x5B39 15-13456-5 sign \x5B3A 1345-16-5 sign \x5B3B 145-34-2 sign \x5B3C 14-234-4 sign \x5B3D 45-3 sign \x5B3E 14-1236-4 sign \x5B3F 2345-4 sign \x5B40 24-456-3 sign \x5B41 14-13456-2 sign \x5B42 13-246-4 sign \x5B43 1345-46-2 sign \x5B44 14-1236-4 sign \x5B45 15-2345-3 sign \x5B46 13456-3 sign \x5B47 24-456-3 sign \x5B48 24-2356-3 sign \x5B49 245-45-2 sign \x5B4A 134-16-4 sign \x5B4B 14-16-2 sign \x5B4C 14-45-4 sign \x5B4D 2345-2 sign \x5B4E 1-34-4 sign \x5B4F 14-1236-4 sign \x5B50 125-156-4 sign \x5B51 13-346-2 sign \x5B52 13-236-2 sign \x5B53 13-236-2 sign \x5B54 123-12346-4 sign \x5B55 256-5 sign \x5B56 125-156-3 sign \x5B57 125-156-5 sign \x5B58 245-123456-2 sign \x5B59 15-123456-3 sign \x5B5A 12345-34-2 sign \x5B5B 135-126-2 sign \x5B5C 125-156-3 sign \x5B5D 15-246-5 sign \x5B5E 15-1456-5 sign \x5B5F 134-1356-5 sign \x5B60 15-156-5 sign \x5B61 124-2456-3 sign \x5B62 135-146-3 sign \x5B63 13-16-5 sign \x5B64 13-34-3 sign \x5B65 1345-34-2 sign \x5B66 15-236-2 sign \x5B68 1-12456-4 sign \x5B69 1235-2456-2 sign \x5B6A 14-45-2 sign \x5B6B 15-123456-3 sign \x5B6C 1235-2356-5 sign \x5B6D 134-346-3 sign \x5B6E 245-12346-2 sign \x5B6F 245-2345-3 sign \x5B70 24-34-2 sign \x5B71 12-1236-2 sign \x5B72 23456-3 sign \x5B73 125-156-3 sign \x5B74 1345-16-4 sign \x5B75 12345-34-3 sign \x5B76 125-156-3 sign \x5B77 14-16-2 sign \x5B78 15-236-2 sign \x5B79 135-126-5 sign \x5B7A 1245-34-2 sign \x5B7B 1345-2456-2 sign \x5B7C 1345-346-5 sign \x5B7D 1345-346-5 sign \x5B7E 13456-3 sign \x5B7F 14-45-2 sign \x5B80 134-2345-2 sign \x5B81 1345-13456-2 sign \x5B82 1245-12346-4 sign \x5B83 124-345-3 sign \x5B84 13-1246-4 sign \x5B85 1-2456-2 sign \x5B86 245-235-2 sign \x5B87 1256-4 sign \x5B88 24-12356-4 sign \x5B89 1236-3 sign \x5B8A 124-34-2 sign \x5B8B 15-12346-5 sign \x5B8C 12456-2 sign \x5B8D 1245-12356-5 sign \x5B8E 246-3 sign \x5B8F 1235-12346-2 sign \x5B90 16-2 sign \x5B91 13-13456-4 sign \x5B92 1-123456-3 sign \x5B93 134-16-5 sign \x5B94 1-34-4 sign \x5B95 145-1346-5 sign \x5B96 1235-12346-2 sign \x5B97 125-12346-3 sign \x5B98 13-12456-3 sign \x5B99 1-12356-5 sign \x5B9A 145-13456-5 sign \x5B9B 12456-4 sign \x5B9C 16-2 sign \x5B9D 135-146-4 sign \x5B9E 24-156-2 sign \x5B9F 24-156-2 sign \x5BA0 12-12346-4 sign \x5BA1 24-136-4 sign \x5BA2 123-2346-5 sign \x5BA3 15-45-3 sign \x5BA4 24-156-5 sign \x5BA5 234-5 sign \x5BA6 1235-12456-5 sign \x5BA7 16-2 sign \x5BA8 124-246-4 sign \x5BA9 24-156-4 sign \x5BAA 15-2345-5 sign \x5BAB 13-12346-3 sign \x5BAC 12-1356-2 sign \x5BAD 245-256-2 sign \x5BAE 13-12346-3 sign \x5BAF 15-246-3 sign \x5BB0 125-2456-4 sign \x5BB1 1-345-5 sign \x5BB2 135-146-4 sign \x5BB3 1235-2456-5 sign \x5BB4 2345-5 sign \x5BB5 15-246-3 sign \x5BB6 13-23456-3 sign \x5BB7 24-136-4 sign \x5BB8 12-136-2 sign \x5BB9 1245-12346-2 sign \x5BBA 1235-456-4 sign \x5BBB 134-16-5 sign \x5BBC 123-12356-5 sign \x5BBD 123-12456-3 sign \x5BBE 135-1456-3 sign \x5BBF 15-34-5 sign \x5BC0 245-2456-4 sign \x5BC1 125-1236-4 sign \x5BC2 13-16-2 sign \x5BC3 45-3 sign \x5BC4 13-16-5 sign \x5BC5 1456-2 sign \x5BC6 134-16-5 sign \x5BC7 123-12356-5 sign \x5BC8 245-13456-3 sign \x5BC9 245-236-5 sign \x5BCA 1-136-3 sign \x5BCB 13-2345-4 sign \x5BCC 12345-34-5 sign \x5BCD 1345-13456-2 sign \x5BCE 135-13456-5 sign \x5BCF 1235-12456-2 sign \x5BD0 134-356-5 sign \x5BD1 245-1456-4 sign \x5BD2 1235-1236-2 sign \x5BD3 1256-5 sign \x5BD4 24-156-2 sign \x5BD5 1345-13456-2 sign \x5BD6 13-1456-5 sign \x5BD7 1345-13456-2 sign \x5BD8 1-156-5 sign \x5BD9 1256-4 sign \x5BDA 135-146-4 sign \x5BDB 123-12456-3 sign \x5BDC 1345-13456-2 sign \x5BDD 245-1456-4 sign \x5BDE 134-126-5 sign \x5BDF 12-345-2 sign \x5BE0 13-1256-5 sign \x5BE1 13-35-4 sign \x5BE2 245-1456-4 sign \x5BE3 1235-34-3 sign \x5BE4 34-5 sign \x5BE5 14-246-2 sign \x5BE6 24-156-2 sign \x5BE7 1345-13456-2 sign \x5BE8 1-2456-5 sign \x5BE9 24-136-4 sign \x5BEA 1246-4 sign \x5BEB 15-346-4 sign \x5BEC 123-12456-3 sign \x5BED 1235-1246-5 sign \x5BEE 14-246-2 sign \x5BEF 13-256-5 sign \x5BF0 1235-12456-2 sign \x5BF1 16-5 sign \x5BF2 16-2 sign \x5BF3 135-146-4 sign \x5BF4 245-1456-5 sign \x5BF5 12-12346-4 sign \x5BF6 135-146-4 sign \x5BF7 12345-1356-3 sign \x5BF8 245-123456-5 sign \x5BF9 145-1246-5 sign \x5BFA 15-156-5 sign \x5BFB 15-256-2 sign \x5BFC 145-146-4 sign \x5BFD 14-1256-5 sign \x5BFE 145-1246-5 sign \x5BFF 24-12356-5 sign \x5C00 1234-126-4 sign \x5C01 12345-1356-3 sign \x5C02 1-12456-3 sign \x5C03 12345-34-3 sign \x5C04 24-2346-5 sign \x5C05 123-2346-5 sign \x5C06 13-46-3 sign \x5C07 13-46-3 sign \x5C08 1-12456-3 sign \x5C09 1246-5 sign \x5C0A 125-123456-3 sign \x5C0B 15-256-2 sign \x5C0C 1-34-5 sign \x5C0D 145-1246-5 sign \x5C0E 145-146-4 sign \x5C0F 15-246-4 sign \x5C10 13-16-3 sign \x5C11 24-146-4 sign \x5C12 156-4 sign \x5C13 156-4 sign \x5C14 156-4 sign \x5C15 135-345-1 sign \x5C16 13-2345-3 sign \x5C17 24-34-2 sign \x5C18 12-136-2 sign \x5C19 24-1346-5 sign \x5C1A 24-1346-5 sign \x5C1C 13-345-2 sign \x5C1D 12-1346-2 sign \x5C1E 14-246-5 sign \x5C1F 15-2345-4 sign \x5C20 15-2345-3 sign \x5C22 456-3 sign \x5C23 456-3 sign \x5C24 234-2 sign \x5C25 14-246-5 sign \x5C26 14-246-5 sign \x5C27 246-2 sign \x5C28 1234-1346-2 sign \x5C29 456-3 sign \x5C2A 456-3 sign \x5C2B 456-3 sign \x5C2C 13-345-5 sign \x5C2D 246-2 sign \x5C2E 145-25-5 sign \x5C2F 123-1246-5 sign \x5C30 1-12346-4 sign \x5C31 13-234-5 sign \x5C32 13-1236-3 sign \x5C33 13-34-4 sign \x5C34 13-1236-3 sign \x5C35 124-1246-2 sign \x5C36 13-1236-3 sign \x5C37 13-1236-3 sign \x5C38 24-156-3 sign \x5C39 1456-4 sign \x5C3A 12-156-4 sign \x5C3B 123-146-3 sign \x5C3C 1345-16-2 sign \x5C3D 13-1456-4 sign \x5C3E 1246-4 sign \x5C3F 1345-246-5 sign \x5C40 13-1256-2 sign \x5C41 1234-16-5 sign \x5C42 245-1356-2 sign \x5C43 15-16-5 sign \x5C44 135-16-3 sign \x5C45 13-1256-3 sign \x5C46 13-346-5 sign \x5C47 124-2345-2 sign \x5C48 245-1256-3 sign \x5C49 124-16-5 sign \x5C4A 13-346-5 sign \x5C4B 34-3 sign \x5C4C 145-246-4 sign \x5C4D 24-156-3 sign \x5C4E 24-156-4 sign \x5C4F 1234-13456-2 sign \x5C50 13-16-3 sign \x5C51 15-346-5 sign \x5C52 12-136-2 sign \x5C53 15-16-5 sign \x5C54 1345-16-2 sign \x5C55 1-1236-4 sign \x5C56 15-16-3 sign \x5C58 134-1236-3 sign \x5C59 2346-3 sign \x5C5A 14-12356-5 sign \x5C5B 1234-13456-2 sign \x5C5C 124-16-5 sign \x5C5D 12345-356-5 sign \x5C5E 24-34-4 sign \x5C5F 15-346-5 sign \x5C60 124-34-2 sign \x5C61 14-1256-4 sign \x5C62 14-1256-4 sign \x5C63 15-16-4 sign \x5C64 245-1356-2 sign \x5C65 14-1256-4 sign \x5C66 14-1256-4 sign \x5C67 15-346-5 sign \x5C68 14-1256-4 sign \x5C69 245-246-3 sign \x5C6A 14-246-2 sign \x5C6B 13-236-2 sign \x5C6C 24-34-4 sign \x5C6D 15-16-5 sign \x5C6E 12-2346-5 sign \x5C6F 124-123456-2 sign \x5C70 1345-16-5 sign \x5C71 24-1236-3 sign \x5C73 15-2345-3 sign \x5C74 14-16-5 sign \x5C75 15-236-3 sign \x5C78 14-12346-2 sign \x5C79 16-5 sign \x5C7A 245-16-4 sign \x5C7B 1245-136-5 sign \x5C7C 34-5 sign \x5C7D 1235-1236-5 sign \x5C7E 24-136-3 sign \x5C7F 1256-4 sign \x5C80 12-34-3 sign \x5C81 15-1246-5 sign \x5C82 245-16-4 sign \x5C84 236-5 sign \x5C85 135-1236-4 sign \x5C86 246-4 sign \x5C87 1346-2 sign \x5C88 15-23456-3 sign \x5C89 34-5 sign \x5C8A 13-346-2 sign \x5C8B 2346-5 sign \x5C8C 13-16-2 sign \x5C8D 245-2345-3 sign \x5C8E 12345-136-3 sign \x5C8F 12456-2 sign \x5C90 245-16-2 sign \x5C91 245-136-2 sign \x5C92 245-2345-2 sign \x5C93 245-16-2 sign \x5C94 12-345-5 sign \x5C95 13-346-5 sign \x5C96 245-1256-3 sign \x5C97 13-1346-3 sign \x5C98 15-2345-5 sign \x5C99 146-5 sign \x5C9A 14-1236-2 sign \x5C9B 145-146-4 sign \x5C9C 135-345-3 sign \x5C9D 125-2346-2 sign \x5C9E 125-25-5 sign \x5C9F 46-4 sign \x5CA0 13-1256-5 sign \x5CA1 13-1346-3 sign \x5CA2 123-2346-4 sign \x5CA3 13-12356-4 sign \x5CA4 15-236-5 sign \x5CA5 1234-126-3 sign \x5CA6 14-16-5 sign \x5CA7 124-246-2 sign \x5CA8 245-1256-3 sign \x5CA9 2345-2 sign \x5CAA 12345-34-2 sign \x5CAB 15-234-5 sign \x5CAC 13-23456-4 sign \x5CAD 14-13456-2 sign \x5CAE 124-25-2 sign \x5CAF 1234-356-3 sign \x5CB0 234-4 sign \x5CB1 145-2456-5 sign \x5CB2 123-456-5 sign \x5CB3 236-5 sign \x5CB4 245-1256-3 sign \x5CB5 1235-34-5 sign \x5CB6 1234-126-5 sign \x5CB7 134-1456-2 sign \x5CB8 1236-5 sign \x5CB9 124-246-2 sign \x5CBA 14-13456-2 sign \x5CBB 12-156-2 sign \x5CBD 145-12346-3 sign \x5CBF 123-1246-3 sign \x5CC0 15-234-5 sign \x5CC1 134-146-4 sign \x5CC2 124-12346-2 sign \x5CC3 15-236-2 sign \x5CC4 16-5 sign \x5CC6 1235-2346-3 sign \x5CC7 123-2346-3 sign \x5CC8 14-25-5 sign \x5CC9 2346-2 sign \x5CCA 12345-34-5 sign \x5CCB 15-256-2 sign \x5CCC 145-346-2 sign \x5CCD 14-34-5 sign \x5CCE 1236-3 sign \x5CCF 156-4 sign \x5CD0 13-2456-3 sign \x5CD1 245-45-2 sign \x5CD2 124-12346-2 sign \x5CD3 16-2 sign \x5CD4 134-34-4 sign \x5CD5 24-156-2 sign \x5CD6 1236-3 sign \x5CD7 1246-2 sign \x5CD8 1235-12456-2 sign \x5CD9 1-156-5 sign \x5CDA 134-16-5 sign \x5CDB 14-16-4 sign \x5CDC 13-16-3 sign \x5CDD 124-12346-2 sign \x5CDE 1246-2 sign \x5CDF 234-5 sign \x5CE1 15-23456-2 sign \x5CE2 14-16-4 sign \x5CE3 246-2 sign \x5CE4 245-246-2 sign \x5CE5 1-1356-3 sign \x5CE6 14-12456-2 sign \x5CE7 13-246-3 sign \x5CE8 2346-2 sign \x5CE9 2346-2 sign \x5CEA 1256-5 sign \x5CEB 346-2 sign \x5CEC 135-34-3 sign \x5CED 245-246-5 sign \x5CEE 245-256-3 sign \x5CEF 12345-1356-3 sign \x5CF0 12345-1356-3 sign \x5CF1 1345-146-2 sign \x5CF2 14-16-4 sign \x5CF3 234-2 sign \x5CF4 15-2345-5 sign \x5CF5 1235-12346-2 sign \x5CF6 145-146-4 sign \x5CF7 24-136-3 sign \x5CF8 135-345-1 sign \x5CF9 124-34-2 sign \x5CFA 13-1356-4 sign \x5CFB 13-256-5 sign \x5CFC 1235-146-5 sign \x5CFD 15-23456-2 sign \x5CFE 1456-3 sign \x5CFF 1256-4 sign \x5D00 14-1346-4 sign \x5D01 123-1236-4 sign \x5D02 14-146-3 sign \x5D03 14-2456-2 sign \x5D04 15-2345-4 sign \x5D05 245-236-5 sign \x5D06 123-12346-3 sign \x5D07 12-12346-2 sign \x5D08 12-12346-2 sign \x5D09 124-345-5 sign \x5D0B 1235-35-2 sign \x5D0C 13-1256-3 sign \x5D0D 14-2456-2 sign \x5D0E 245-16-2 sign \x5D0F 134-1456-2 sign \x5D10 123-123456-3 sign \x5D11 123-123456-3 sign \x5D12 125-34-2 sign \x5D13 13-34-5 sign \x5D14 245-1246-3 sign \x5D15 26-2 sign \x5D16 26-2 sign \x5D17 13-1346-3 sign \x5D18 14-123456-2 sign \x5D19 14-123456-2 sign \x5D1A 14-13456-2 sign \x5D1B 13-236-2 sign \x5D1C 145-25-3 sign \x5D1D 1-1356-3 sign \x5D1E 13-25-3 sign \x5D1F 1456-2 sign \x5D20 145-12346-3 sign \x5D21 1235-1236-2 sign \x5D22 1-1356-3 sign \x5D23 1246-4 sign \x5D24 246-2 sign \x5D25 1234-16-4 sign \x5D26 2345-3 sign \x5D27 15-12346-3 sign \x5D28 13-346-2 sign \x5D29 135-1356-3 sign \x5D2A 125-34-2 sign \x5D2B 13-236-2 sign \x5D2C 145-12346-3 sign \x5D2D 1-1236-4 sign \x5D2E 13-34-5 sign \x5D2F 1456-2 sign \x5D30 125-156-3 sign \x5D31 125-2346-2 sign \x5D32 1235-456-2 sign \x5D33 1256-2 sign \x5D34 1246-3 sign \x5D35 46-2 sign \x5D36 12345-1356-3 sign \x5D37 245-234-2 sign \x5D38 145-123456-5 sign \x5D39 124-16-2 sign \x5D3A 16-4 sign \x5D3B 1-156-5 sign \x5D3C 24-156-5 sign \x5D3D 125-2456-4 sign \x5D3E 246-4 sign \x5D3F 2346-5 sign \x5D40 1-34-5 sign \x5D41 123-1236-3 sign \x5D42 14-1256-5 sign \x5D43 2345-4 sign \x5D44 134-356-4 sign \x5D45 13-1236-3 sign \x5D46 13-16-3 sign \x5D47 13-16-3 sign \x5D48 1235-12456-4 sign \x5D49 124-13456-2 sign \x5D4A 24-1356-5 sign \x5D4B 134-356-2 sign \x5D4C 245-2345-3 sign \x5D4D 34-5 sign \x5D4E 1256-2 sign \x5D4F 125-12346-3 sign \x5D50 14-1236-2 sign \x5D51 1235-2346-2 sign \x5D52 2345-2 sign \x5D53 2345-2 sign \x5D54 1246-4 sign \x5D55 125-12346-3 sign \x5D56 12-345-2 sign \x5D57 15-1246-5 sign \x5D58 1245-12346-2 sign \x5D59 135-345-1 sign \x5D5A 245-2345-3 sign \x5D5B 1256-2 sign \x5D5D 14-1256-4 sign \x5D5E 124-34-2 sign \x5D5F 145-1246-3 sign \x5D60 15-16-3 sign \x5D61 12346-3 sign \x5D62 245-1346-3 sign \x5D63 145-1346-3 sign \x5D64 1235-12346-2 sign \x5D65 13-346-2 sign \x5D66 2456-2 sign \x5D67 14-234-2 sign \x5D68 34-4 sign \x5D69 15-12346-3 sign \x5D6A 245-246-3 sign \x5D6B 125-156-3 sign \x5D6C 1246-2 sign \x5D6D 135-1356-3 sign \x5D6E 145-2345-3 sign \x5D6F 245-25-2 sign \x5D70 245-2345-4 sign \x5D71 235-4 sign \x5D72 1345-346-5 sign \x5D73 245-25-2 sign \x5D74 13-16-2 sign \x5D77 15-12346-4 sign \x5D78 125-12346-3 sign \x5D79 13-46-5 sign \x5D7A 14-246-2 sign \x5D7C 12-1236-4 sign \x5D7D 145-346-2 sign \x5D7E 245-136-3 sign \x5D7F 145-13456-4 sign \x5D80 124-34-3 sign \x5D81 14-1256-4 sign \x5D82 1-1346-5 sign \x5D83 1-1236-4 sign \x5D84 1-1236-4 sign \x5D85 146-2 sign \x5D86 245-146-2 sign \x5D87 245-1256-3 sign \x5D88 245-46-3 sign \x5D89 125-1246-4 sign \x5D8A 125-1246-4 sign \x5D8B 145-146-4 sign \x5D8C 145-146-4 sign \x5D8D 15-16-2 sign \x5D8E 1256-5 sign \x5D8F 135-126-2 sign \x5D90 14-12346-2 sign \x5D91 15-46-4 sign \x5D92 245-1356-2 sign \x5D93 135-126-3 sign \x5D94 245-2345-3 sign \x5D95 13-246-3 sign \x5D96 2345-4 sign \x5D97 14-146-3 sign \x5D98 1-1236-5 sign \x5D99 14-1456-2 sign \x5D9A 14-246-2 sign \x5D9B 14-246-2 sign \x5D9C 13-1456-3 sign \x5D9D 145-1356-5 sign \x5D9E 145-25-5 sign \x5D9F 125-123456-3 sign \x5DA0 245-246-2 sign \x5DA1 13-1246-5 sign \x5DA2 246-2 sign \x5DA3 245-246-2 sign \x5DA4 246-2 sign \x5DA5 13-236-2 sign \x5DA6 1-1236-3 sign \x5DA7 16-5 sign \x5DA8 15-236-3 sign \x5DA9 1345-146-3 sign \x5DAA 346-5 sign \x5DAB 346-5 sign \x5DAC 16-2 sign \x5DAD 2346-5 sign \x5DAE 15-2345-4 sign \x5DAF 1-345-2 sign \x5DB0 15-346-5 sign \x5DB1 123-2346-4 sign \x5DB2 15-1246-4 sign \x5DB3 145-16-5 sign \x5DB4 146-5 sign \x5DB5 125-1246-5 sign \x5DB7 1345-16-5 sign \x5DB8 1245-12346-2 sign \x5DB9 145-146-4 sign \x5DBA 14-13456-4 sign \x5DBB 125-345-2 sign \x5DBC 1256-4 sign \x5DBD 236-5 sign \x5DBE 1456-4 sign \x5DC0 125-345-2 sign \x5DC1 14-16-5 sign \x5DC2 15-16-3 sign \x5DC3 14-12346-2 sign \x5DC4 14-12346-2 sign \x5DC5 145-2345-3 sign \x5DC6 13456-2 sign \x5DC7 15-16-3 sign \x5DC8 13-1256-2 sign \x5DC9 12-1236-2 sign \x5DCA 13456-4 sign \x5DCB 123-1246-3 sign \x5DCC 2345-2 sign \x5DCD 1246-2 sign \x5DCE 1345-146-2 sign \x5DCF 245-45-2 sign \x5DD0 12-146-4 sign \x5DD1 245-12456-2 sign \x5DD2 14-12456-2 sign \x5DD3 145-2345-3 sign \x5DD4 145-2345-3 sign \x5DD5 1345-346-5 sign \x5DD6 2345-2 sign \x5DD7 2345-2 sign \x5DD8 2345-4 sign \x5DD9 1345-146-2 sign \x5DDA 2345-4 sign \x5DDB 123-123456-3 sign \x5DDC 13-1246-5 sign \x5DDD 12-12456-3 sign \x5DDE 1-12356-3 sign \x5DDF 1235-456-3 sign \x5DE0 13-13456-3 sign \x5DE1 15-256-2 sign \x5DE2 12-146-2 sign \x5DE3 12-146-2 sign \x5DE4 14-346-3 sign \x5DE5 13-12346-3 sign \x5DE6 125-25-4 sign \x5DE7 245-246-4 sign \x5DE8 13-1256-5 sign \x5DE9 13-12346-4 sign \x5DEB 34-2 sign \x5DEE 12-345-3 sign \x5DEF 12345-356-5 sign \x5DF0 135-345-1 sign \x5DF1 13-16-4 sign \x5DF2 16-4 sign \x5DF3 15-156-5 sign \x5DF4 135-345-3 sign \x5DF5 1-156-3 sign \x5DF6 1-146-3 sign \x5DF7 15-46-5 sign \x5DF8 16-2 sign \x5DF9 13-1456-4 sign \x5DFA 15-256-5 sign \x5DFB 13-45-5 sign \x5DFD 15-256-5 sign \x5DFE 13-1456-3 sign \x5DFF 12345-34-2 sign \x5E00 125-345-3 sign \x5E01 135-16-5 sign \x5E02 24-156-5 sign \x5E03 135-34-5 sign \x5E04 145-13456-3 sign \x5E05 24-2356-5 sign \x5E06 12345-1236-2 sign \x5E07 1345-346-5 sign \x5E08 24-156-3 sign \x5E09 12345-136-3 sign \x5E0A 1234-345-5 sign \x5E0B 1-156-4 sign \x5E0C 15-16-3 sign \x5E0D 1235-34-5 sign \x5E0E 145-1236-5 sign \x5E0F 1246-2 sign \x5E10 1-1346-5 sign \x5E11 124-1346-4 sign \x5E12 145-2456-5 sign \x5E13 134-345-5 sign \x5E14 1234-356-5 sign \x5E15 1234-345-5 sign \x5E16 124-346-4 sign \x5E17 12345-34-2 sign \x5E18 14-2345-2 sign \x5E19 1-156-5 sign \x5E1A 1-12356-4 sign \x5E1B 135-126-2 sign \x5E1C 1-156-5 sign \x5E1D 145-16-5 sign \x5E1E 134-126-5 sign \x5E1F 16-5 sign \x5E20 16-5 sign \x5E21 1234-13456-2 sign \x5E22 245-23456-5 sign \x5E23 13-45-5 sign \x5E24 1245-34-2 sign \x5E25 24-2356-5 sign \x5E26 145-2456-5 sign \x5E27 1-1356-5 sign \x5E28 24-1246-5 sign \x5E29 245-246-5 sign \x5E2A 1-136-3 sign \x5E2B 24-156-3 sign \x5E2C 245-256-2 sign \x5E2D 15-16-2 sign \x5E2E 135-1346-3 sign \x5E2F 145-2456-5 sign \x5E30 13-1246-3 sign \x5E31 12-12356-2 sign \x5E32 1234-13456-2 sign \x5E33 1-1346-5 sign \x5E34 24-345-3 sign \x5E35 12456-3 sign \x5E36 145-2456-5 sign \x5E37 1246-2 sign \x5E38 12-1346-2 sign \x5E39 24-345-5 sign \x5E3A 245-16-2 sign \x5E3B 125-2346-2 sign \x5E3C 13-25-2 sign \x5E3D 134-146-5 sign \x5E3E 145-34-4 sign \x5E3F 1235-12356-2 sign \x5E40 1-1356-5 sign \x5E41 15-1256-3 sign \x5E42 134-16-5 sign \x5E43 1246-2 sign \x5E44 25-5 sign \x5E45 12345-34-2 sign \x5E46 16-5 sign \x5E47 135-1346-3 sign \x5E48 1234-13456-2 sign \x5E4A 13-12346-3 sign \x5E4B 1234-1236-2 sign \x5E4C 1235-456-4 sign \x5E4D 145-146-3 sign \x5E4E 134-16-5 sign \x5E4F 13-23456-5 sign \x5E50 124-1356-2 sign \x5E51 1235-1246-3 sign \x5E52 1-12346-3 sign \x5E53 15-136-3 sign \x5E54 134-1236-5 sign \x5E55 134-34-5 sign \x5E56 135-246-3 sign \x5E57 13-25-2 sign \x5E58 125-2346-2 sign \x5E59 134-34-5 sign \x5E5A 135-1346-3 sign \x5E5B 1-1346-5 sign \x5E5C 13-235-4 sign \x5E5D 12-1236-4 sign \x5E5E 12345-34-2 sign \x5E5F 1-156-5 sign \x5E60 1235-34-3 sign \x5E61 12345-1236-3 sign \x5E62 12-456-2 sign \x5E63 135-16-5 sign \x5E66 134-16-5 sign \x5E67 245-246-3 sign \x5E68 12-1236-3 sign \x5E69 12345-136-2 sign \x5E6A 134-1356-2 sign \x5E6B 135-1346-3 sign \x5E6C 12-12356-2 sign \x5E6D 134-346-5 sign \x5E6E 12-34-2 sign \x5E6F 13-346-2 sign \x5E70 15-2345-4 sign \x5E71 14-1236-2 sign \x5E72 13-1236-3 sign \x5E73 1234-13456-2 sign \x5E74 1345-2345-2 sign \x5E75 123-2456-3 sign \x5E76 135-13456-5 sign \x5E77 135-13456-5 sign \x5E78 15-13456-5 sign \x5E79 13-1236-5 sign \x5E7A 378-14678 sign \x5E7B 1235-12456-5 sign \x5E7C 234-5 sign \x5E7D 234-3 sign \x5E7E 13-16-4 sign \x5E7F 13-456-4 sign \x5E80 1234-16-4 sign \x5E81 124-13456-3 sign \x5E82 125-2346-5 sign \x5E83 13-456-4 sign \x5E84 1-456-3 sign \x5E85 134-126-1 sign \x5E86 245-13456-5 sign \x5E87 135-16-5 sign \x5E88 245-1456-2 sign \x5E89 124-123456-2 sign \x5E8A 12-456-2 sign \x5E8B 13-1246-4 sign \x5E8C 23456-4 sign \x5E8D 135-2456-5 sign \x5E8E 13-346-5 sign \x5E8F 15-1256-5 sign \x5E90 14-34-2 sign \x5E91 34-4 sign \x5E93 123-34-5 sign \x5E94 13456-3 sign \x5E95 145-16-4 sign \x5E96 1234-146-2 sign \x5E97 145-2345-5 sign \x5E98 23456-3 sign \x5E99 134-246-5 sign \x5E9A 13-1356-3 sign \x5E9B 245-156-5 sign \x5E9C 12345-34-4 sign \x5E9D 124-12346-2 sign \x5E9E 1234-1346-2 sign \x5E9F 12345-356-5 sign \x5EA0 15-46-2 sign \x5EA1 16-4 sign \x5EA2 1-156-5 sign \x5EA3 124-246-3 sign \x5EA4 1-156-5 sign \x5EA5 15-234-3 sign \x5EA6 145-34-5 sign \x5EA7 125-25-5 sign \x5EA8 15-246-3 sign \x5EA9 124-34-2 sign \x5EAA 13-1246-4 sign \x5EAB 123-34-5 sign \x5EAC 1234-1346-2 sign \x5EAD 124-13456-2 sign \x5EAE 234-4 sign \x5EAF 135-34-3 sign \x5EB0 135-13456-4 sign \x5EB1 12-1356-4 sign \x5EB2 14-2456-2 sign \x5EB3 135-16-5 sign \x5EB4 13-16-2 sign \x5EB5 1236-3 sign \x5EB6 24-34-5 sign \x5EB7 123-1346-3 sign \x5EB8 235-3 sign \x5EB9 124-25-2 sign \x5EBA 15-12346-3 sign \x5EBB 24-34-5 sign \x5EBC 245-13456-4 sign \x5EBD 1256-5 sign \x5EBE 1256-4 sign \x5EBF 134-246-5 sign \x5EC0 15-12356-3 sign \x5EC1 245-2346-5 sign \x5EC2 15-46-3 sign \x5EC3 12345-356-5 sign \x5EC4 13-234-5 sign \x5EC5 1235-2346-2 sign \x5EC6 1235-1246-5 sign \x5EC7 14-234-5 sign \x5EC8 15-23456-5 sign \x5EC9 14-2345-2 sign \x5ECA 14-1346-2 sign \x5ECB 15-12356-4 sign \x5ECC 1-2456-5 sign \x5ECD 1234-12356-4 sign \x5ECE 245-13456-3 sign \x5ECF 13-234-5 sign \x5ED0 13-234-5 sign \x5ED1 245-1456-2 sign \x5ED2 146-2 sign \x5ED3 123-25-5 sign \x5ED4 14-12356-2 sign \x5ED5 1456-5 sign \x5ED6 14-246-5 sign \x5ED7 145-2456-5 sign \x5ED8 14-34-5 sign \x5ED9 16-5 sign \x5EDA 12-34-2 sign \x5EDB 12-1236-2 sign \x5EDC 124-34-3 sign \x5EDD 15-156-3 sign \x5EDE 15-1456-3 sign \x5EDF 134-246-5 sign \x5EE0 12-1346-4 sign \x5EE1 34-4 sign \x5EE2 12345-356-5 sign \x5EE3 13-456-4 sign \x5EE5 123-2356-5 sign \x5EE6 135-16-5 sign \x5EE7 245-46-2 sign \x5EE8 13-346-5 sign \x5EE9 14-1456-4 sign \x5EEA 14-1456-4 sign \x5EEB 14-246-2 sign \x5EEC 14-34-2 sign \x5EEE 13456-2 sign \x5EEF 15-2345-3 sign \x5EF0 124-13456-3 sign \x5EF1 235-3 sign \x5EF2 14-16-2 sign \x5EF3 124-13456-3 sign \x5EF4 1456-4 sign \x5EF5 15-256-2 sign \x5EF6 2345-2 sign \x5EF7 124-13456-2 sign \x5EF8 145-16-2 sign \x5EF9 1234-126-5 sign \x5EFA 13-2345-5 sign \x5EFB 1235-1246-2 sign \x5EFC 1345-2456-4 sign \x5EFD 1235-1246-2 sign \x5EFE 1345-2345-5 sign \x5EFF 1345-2345-5 sign \x5F00 123-2456-3 sign \x5F01 135-2345-5 sign \x5F02 16-2 sign \x5F03 245-16-5 sign \x5F04 1345-12346-5 sign \x5F05 12345-136-2 sign \x5F06 13-1256-4 sign \x5F07 2345-3 sign \x5F08 16-5 sign \x5F09 125-1346-5 sign \x5F0A 135-16-5 sign \x5F0B 16-5 sign \x5F0C 16-3 sign \x5F0D 156-5 sign \x5F0E 15-1236-3 sign \x5F0F 24-156-5 sign \x5F10 156-5 sign \x5F11 24-156-5 sign \x5F12 24-156-5 sign \x5F13 13-12346-3 sign \x5F14 145-246-5 sign \x5F15 1456-4 sign \x5F16 1235-34-5 sign \x5F17 12345-34-2 sign \x5F18 1235-12346-2 sign \x5F19 34-3 sign \x5F1A 145-16-5 sign \x5F1B 12-156-2 sign \x5F1C 13-46-5 sign \x5F1D 135-345-5 sign \x5F1E 24-136-4 sign \x5F1F 145-16-5 sign \x5F20 1-1346-3 sign \x5F21 13-236-2 sign \x5F22 124-146-3 sign \x5F23 12345-34-4 sign \x5F24 145-16-4 sign \x5F25 134-16-2 sign \x5F26 15-2345-2 sign \x5F27 1235-34-2 sign \x5F28 12-146-3 sign \x5F29 1345-34-4 sign \x5F2A 135-345-1 sign \x5F2B 1-136-4 sign \x5F2C 16-2 sign \x5F2D 134-16-4 sign \x5F2E 245-45-3 sign \x5F2F 12456-3 sign \x5F30 24-146-3 sign \x5F31 1245-25-5 sign \x5F32 15-45-3 sign \x5F33 135-345-1 sign \x5F34 145-123456-3 sign \x5F35 1-1346-3 sign \x5F36 13-46-5 sign \x5F37 245-46-2 sign \x5F38 1234-1356-2 sign \x5F39 124-1236-2 sign \x5F3A 245-46-2 sign \x5F3B 135-16-5 sign \x5F3C 135-16-5 sign \x5F3D 24-2346-5 sign \x5F3E 145-1236-5 sign \x5F3F 13-2345-4 sign \x5F40 13-12356-5 sign \x5F42 12345-345-3 sign \x5F43 135-16-5 sign \x5F44 123-12356-3 sign \x5F46 135-346-5 sign \x5F47 15-246-3 sign \x5F48 124-1236-2 sign \x5F49 1235-25-5 sign \x5F4A 13-46-3 sign \x5F4B 1235-12346-2 sign \x5F4C 134-16-2 sign \x5F4D 123-25-5 sign \x5F4E 12456-3 sign \x5F4F 13-236-2 sign \x5F50 378-678 sign \x5F51 13-16-5 sign \x5F52 13-1246-3 sign \x5F53 145-1346-3 sign \x5F54 14-34-5 sign \x5F55 14-34-5 sign \x5F56 124-12456-5 sign \x5F57 1235-1246-5 sign \x5F58 1-156-5 sign \x5F59 1235-1246-5 sign \x5F5A 1235-1246-5 sign \x5F5B 16-2 sign \x5F5C 16-2 sign \x5F5D 16-2 sign \x5F5E 16-2 sign \x5F5F 1235-25-5 sign \x5F60 1235-25-5 sign \x5F61 24-1236-3 sign \x5F62 15-13456-2 sign \x5F63 123456-2 sign \x5F64 124-12346-2 sign \x5F65 2345-5 sign \x5F66 2345-5 sign \x5F67 1256-5 sign \x5F68 12-156-3 sign \x5F69 245-2456-4 sign \x5F6A 135-246-3 sign \x5F6B 145-246-3 sign \x5F6C 135-1456-3 sign \x5F6D 1234-1356-2 sign \x5F6E 235-4 sign \x5F6F 1234-246-3 sign \x5F70 1-1346-3 sign \x5F71 13456-4 sign \x5F72 12-156-3 sign \x5F73 12-156-5 sign \x5F74 135-126-2 sign \x5F75 124-25-4 sign \x5F76 13-16-2 sign \x5F77 12345-1346-4 sign \x5F78 1-12346-3 sign \x5F79 16-5 sign \x5F7A 456-2 sign \x5F7B 12-2346-5 sign \x5F7C 135-16-4 sign \x5F7D 145-16-3 sign \x5F7E 14-13456-2 sign \x5F7F 12345-34-2 sign \x5F80 456-4 sign \x5F81 1-1356-3 sign \x5F82 245-34-2 sign \x5F83 456-4 sign \x5F84 13-13456-5 sign \x5F85 145-2456-5 sign \x5F86 15-16-3 sign \x5F87 15-256-2 sign \x5F88 1235-136-4 sign \x5F89 46-2 sign \x5F8A 1235-1246-2 sign \x5F8B 14-1256-5 sign \x5F8C 1235-12356-5 sign \x5F8D 35-3 sign \x5F8E 12-1356-4 sign \x5F8F 1-156-5 sign \x5F90 15-1256-2 sign \x5F91 13-13456-5 sign \x5F92 124-34-2 sign \x5F93 245-12346-2 sign \x5F95 14-2456-2 sign \x5F96 245-12346-2 sign \x5F97 145-2346-2 sign \x5F98 1234-2456-2 sign \x5F99 15-16-4 sign \x5F9B 245-16-3 sign \x5F9C 12-1346-2 sign \x5F9D 1-156-5 sign \x5F9E 245-12346-2 sign \x5F9F 1-12356-3 sign \x5FA0 14-2456-2 sign \x5FA1 1256-5 sign \x5FA2 15-346-5 sign \x5FA3 13-346-5 sign \x5FA4 13-2345-5 sign \x5FA5 12-156-3 sign \x5FA6 13-23456-4 sign \x5FA7 135-2345-5 sign \x5FA8 1235-456-2 sign \x5FA9 12345-34-5 sign \x5FAA 15-256-2 sign \x5FAB 1246-4 sign \x5FAC 1234-1346-2 sign \x5FAD 246-2 sign \x5FAE 1246-2 sign \x5FAF 15-16-3 sign \x5FB0 1-1356-3 sign \x5FB1 1234-246-5 sign \x5FB2 12-156-2 sign \x5FB3 145-2346-2 sign \x5FB4 1-1356-3 sign \x5FB5 1-1356-3 sign \x5FB6 135-346-2 sign \x5FB7 145-2346-2 sign \x5FB8 12-12346-3 sign \x5FB9 12-2346-5 sign \x5FBA 13-246-4 sign \x5FBB 1246-5 sign \x5FBC 13-246-4 sign \x5FBD 1235-1246-3 sign \x5FBE 134-356-2 sign \x5FBF 14-12346-5 sign \x5FC0 15-46-3 sign \x5FC1 135-146-5 sign \x5FC2 245-1256-2 sign \x5FC3 15-1456-3 sign \x5FC5 135-16-5 sign \x5FC6 16-5 sign \x5FC7 14-2346-5 sign \x5FC8 1245-136-2 sign \x5FC9 145-146-3 sign \x5FCA 145-13456-5 sign \x5FCB 13-2456-4 sign \x5FCC 13-16-5 sign \x5FCD 1245-136-4 sign \x5FCE 1245-136-2 sign \x5FCF 245-2345-4 sign \x5FD0 124-1236-4 sign \x5FD1 124-2346-5 sign \x5FD2 124-2346-5 sign \x5FD3 13-1236-3 sign \x5FD4 245-16-5 sign \x5FD5 145-2456-5 sign \x5FD6 245-123456-4 sign \x5FD7 1-156-5 sign \x5FD8 456-5 sign \x5FD9 134-1346-2 sign \x5FDA 15-16-3 sign \x5FDB 12345-1236-2 sign \x5FDC 13456-3 sign \x5FDD 124-2345-4 sign \x5FDE 134-1456-2 sign \x5FDF 134-1456-2 sign \x5FE0 1-12346-3 sign \x5FE1 12-12346-3 sign \x5FE2 34-5 sign \x5FE3 13-16-2 sign \x5FE4 34-4 sign \x5FE5 15-16-5 sign \x5FE6 346-5 sign \x5FE7 234-3 sign \x5FE8 12456-5 sign \x5FE9 245-12346-3 sign \x5FEA 15-12346-3 sign \x5FEB 123-2356-5 sign \x5FEC 1256-5 sign \x5FED 135-2345-5 sign \x5FEE 1-156-5 sign \x5FEF 245-16-2 sign \x5FF0 245-1246-5 sign \x5FF1 12-136-2 sign \x5FF2 124-2456-5 sign \x5FF3 124-123456-2 sign \x5FF4 245-2345-2 sign \x5FF5 1345-2345-5 sign \x5FF6 1235-123456-2 sign \x5FF7 15-235-3 sign \x5FF8 1345-234-4 sign \x5FF9 456-4 sign \x5FFA 15-2345-3 sign \x5FFB 15-1456-3 sign \x5FFC 123-1346-3 sign \x5FFD 1235-34-3 sign \x5FFE 123-2456-4 sign \x5FFF 12345-136-5 sign \x6000 12345-34-5 sign \x6001 124-2456-5 sign \x6002 15-12346-4 sign \x6003 34-4 sign \x6004 12356-5 sign \x6005 12-1346-5 sign \x6006 12-456-5 sign \x6007 13-1256-5 sign \x6008 16-5 sign \x6009 135-146-4 sign \x600A 12-146-3 sign \x600B 134-1456-2 sign \x600C 1234-16-3 sign \x600D 125-25-5 sign \x600E 125-136-4 sign \x600F 46-5 sign \x6010 123-12356-5 sign \x6011 135-1236-5 sign \x6012 1345-34-5 sign \x6013 1345-146-2 sign \x6014 1-1356-3 sign \x6015 1234-345-5 sign \x6016 135-34-5 sign \x6017 124-346-3 sign \x6018 13-34-5 sign \x6019 1235-34-5 sign \x601A 13-1256-5 sign \x601B 145-345-2 sign \x601C 14-13456-2 sign \x601D 15-156-3 sign \x601E 1-12356-5 sign \x601F 145-16-5 sign \x6020 145-2456-5 sign \x6021 16-2 sign \x6022 124-34-2 sign \x6023 234-2 sign \x6024 12345-34-3 sign \x6025 13-16-2 sign \x6026 1234-1356-3 sign \x6027 15-13456-5 sign \x6028 45-5 sign \x6029 1345-16-2 sign \x602A 13-2356-5 sign \x602B 12345-356-5 sign \x602C 15-16-5 sign \x602D 135-16-5 sign \x602E 234-3 sign \x602F 245-346-5 sign \x6030 15-45-5 sign \x6031 245-12346-3 sign \x6032 135-13456-4 sign \x6033 1235-456-4 sign \x6034 15-1256-5 sign \x6035 12-34-5 sign \x6036 1234-16-3 sign \x6037 1-34-2 sign \x6038 15-16-3 sign \x6039 124-1236-3 sign \x603B 125-12346-4 sign \x603C 145-1246-5 sign \x603F 16-5 sign \x6040 12-156-4 sign \x6041 1245-136-5 sign \x6042 15-256-2 sign \x6043 24-156-5 sign \x6044 15-16-5 sign \x6045 14-146-4 sign \x6046 1235-1356-2 sign \x6047 123-456-3 sign \x6048 134-34-2 sign \x6049 1-156-4 sign \x604A 15-346-2 sign \x604B 14-2345-5 sign \x604C 124-246-3 sign \x604D 1235-456-4 sign \x604E 145-346-2 sign \x604F 1235-146-4 sign \x6050 123-12346-4 sign \x6051 13-1246-4 sign \x6052 1235-1356-2 sign \x6053 15-16-3 sign \x6054 13-246-4 sign \x6055 24-34-5 sign \x6057 123-35-4 sign \x6058 245-234-3 sign \x6059 46-5 sign \x605A 1246-5 sign \x605B 1235-1246-2 sign \x605C 12-156-5 sign \x605D 13-23456-2 sign \x605E 16-2 sign \x605F 15-235-3 sign \x6060 13-2356-5 sign \x6061 14-1456-5 sign \x6062 1235-1246-3 sign \x6063 125-156-5 sign \x6064 15-1256-5 sign \x6065 12-156-4 sign \x6066 15-46-5 sign \x6067 1345-1256-5 sign \x6068 1235-136-5 sign \x6069 136-3 sign \x606A 123-2346-5 sign \x606B 145-12346-5 sign \x606C 124-2345-2 sign \x606D 13-12346-3 sign \x606E 245-45-2 sign \x606F 15-16-2 sign \x6070 245-23456-5 sign \x6071 236-5 sign \x6072 1234-1356-3 sign \x6073 123-136-4 sign \x6074 145-2346-2 sign \x6075 1235-1246-5 sign \x6076 2346-5 sign \x6078 124-12346-5 sign \x6079 2345-3 sign \x607A 123-2456-4 sign \x607B 245-2346-5 sign \x607C 1345-146-4 sign \x607D 256-5 sign \x607E 134-1346-2 sign \x607F 235-4 sign \x6080 235-4 sign \x6081 45-3 sign \x6082 1234-16-3 sign \x6083 123-123456-4 sign \x6084 245-246-4 sign \x6085 236-5 sign \x6086 1256-5 sign \x6087 1256-5 sign \x6088 13-346-5 sign \x6089 15-16-3 sign \x608A 1-2346-2 sign \x608B 14-1456-5 sign \x608C 124-16-5 sign \x608D 1235-1236-5 sign \x608E 1235-146-5 sign \x608F 245-346-5 sign \x6090 124-16-5 sign \x6091 135-34-5 sign \x6092 16-5 sign \x6093 245-2345-5 sign \x6094 1235-1246-4 sign \x6095 15-16-3 sign \x6096 135-356-5 sign \x6097 134-1236-2 sign \x6098 16-3 sign \x6099 1235-1356-3 sign \x609A 15-12346-4 sign \x609B 245-45-3 sign \x609C 12-1356-4 sign \x609D 123-1246-3 sign \x609E 34-5 sign \x609F 34-5 sign \x60A0 234-3 sign \x60A1 14-16-2 sign \x60A2 14-46-5 sign \x60A3 1235-12456-5 sign \x60A4 245-12346-3 sign \x60A5 16-5 sign \x60A6 236-5 sign \x60A7 14-16-5 sign \x60A8 1345-1456-2 sign \x60A9 1345-146-4 sign \x60AA 2346-5 sign \x60AB 245-236-5 sign \x60AC 15-45-2 sign \x60AD 245-2345-3 sign \x60AE 34-5 sign \x60AF 134-1456-4 sign \x60B0 245-12346-2 sign \x60B1 12345-356-4 sign \x60B2 135-356-3 sign \x60B3 145-25-2 sign \x60B4 245-1246-5 sign \x60B5 12-1346-5 sign \x60B6 134-136-3 sign \x60B7 14-16-5 sign \x60B8 13-16-5 sign \x60B9 13-12456-5 sign \x60BA 13-12456-5 sign \x60BB 15-13456-5 sign \x60BC 145-146-5 sign \x60BD 245-16-3 sign \x60BE 123-12346-3 sign \x60BF 124-2345-4 sign \x60C0 14-123456-2 sign \x60C1 15-16-3 sign \x60C2 123-1236-4 sign \x60C3 123-123456-3 sign \x60C4 1345-16-5 sign \x60C5 245-13456-2 sign \x60C6 12-12356-2 sign \x60C7 1-123456-3 sign \x60C8 13-25-4 sign \x60C9 12-1236-3 sign \x60CA 13-13456-3 sign \x60CB 12456-5 sign \x60CC 45-3 sign \x60CD 13-1456-3 sign \x60CE 13-16-5 sign \x60CF 14-1456-2 sign \x60D0 1256-5 sign \x60D1 1235-25-5 sign \x60D2 1235-2346-2 sign \x60D3 245-45-2 sign \x60D4 124-1236-2 sign \x60D5 124-16-5 sign \x60D6 124-16-5 sign \x60D7 1345-346-3 sign \x60D8 456-4 sign \x60D9 12-25-5 sign \x60DA 1235-34-3 sign \x60DB 1235-123456-3 sign \x60DC 15-16-2 sign \x60DD 12-1346-4 sign \x60DE 15-1456-3 sign \x60DF 1246-2 sign \x60E0 1235-1246-5 sign \x60E1 2346-5 sign \x60E2 15-25-4 sign \x60E3 125-12346-4 sign \x60E4 13-2345-3 sign \x60E5 235-4 sign \x60E6 145-2345-5 sign \x60E7 13-1256-5 sign \x60E8 245-1236-4 sign \x60E9 12-1356-2 sign \x60EA 145-2346-2 sign \x60EB 135-356-5 sign \x60EC 245-346-5 sign \x60ED 245-1236-2 sign \x60EE 145-1236-5 sign \x60EF 13-12456-5 sign \x60F0 145-25-5 sign \x60F1 1345-146-4 sign \x60F2 256-5 sign \x60F3 15-46-4 sign \x60F4 1-1246-5 sign \x60F5 145-346-5 sign \x60F6 1235-456-2 sign \x60F7 12-123456-4 sign \x60F8 245-235-2 sign \x60F9 1245-2346-4 sign \x60FA 15-13456-3 sign \x60FB 245-2346-5 sign \x60FC 135-2345-4 sign \x60FD 1235-123456-3 sign \x60FE 125-12346-3 sign \x60FF 124-16-2 sign \x6100 245-246-4 sign \x6101 12-12356-2 sign \x6102 135-356-5 sign \x6103 15-45-3 sign \x6104 1246-3 sign \x6105 13-2346-2 sign \x6106 245-2345-3 sign \x6107 1246-4 sign \x6108 1256-5 sign \x6109 1256-2 sign \x610A 135-16-5 sign \x610B 15-45-3 sign \x610C 1235-12456-5 sign \x610D 134-1456-4 sign \x610E 135-16-5 sign \x610F 16-5 sign \x6110 134-2345-4 sign \x6111 235-4 sign \x6112 123-2456-4 sign \x6113 145-1346-5 sign \x6114 1456-3 sign \x6115 2346-5 sign \x6116 12-136-2 sign \x6117 134-12356-5 sign \x6118 123-2346-5 sign \x6119 123-2346-5 sign \x611A 1256-2 sign \x611B 2456-5 sign \x611C 245-346-5 sign \x611D 2345-4 sign \x611E 1345-25-5 sign \x611F 13-1236-4 sign \x6120 256-5 sign \x6121 125-12346-4 sign \x6122 15-2456-3 sign \x6123 14-1356-5 sign \x6124 12345-136-5 sign \x6126 123-1246-5 sign \x6127 123-1246-5 sign \x6128 245-236-5 sign \x6129 13-12346-3 sign \x612A 256-2 sign \x612B 15-34-5 sign \x612C 15-34-5 sign \x612D 245-16-2 sign \x612E 246-2 sign \x612F 15-12346-4 sign \x6130 1235-456-4 sign \x6131 13-16-2 sign \x6132 13-34-4 sign \x6133 13-1256-5 sign \x6134 12-456-5 sign \x6135 1345-16-5 sign \x6136 15-346-2 sign \x6137 123-2456-4 sign \x6138 1-1356-4 sign \x6139 235-4 sign \x613A 245-146-4 sign \x613B 15-123456-5 sign \x613C 24-136-5 sign \x613D 135-126-2 sign \x613E 123-2456-4 sign \x613F 45-5 sign \x6140 15-346-2 sign \x6141 1235-123456-5 sign \x6142 235-4 sign \x6143 46-4 sign \x6144 14-16-5 sign \x6145 15-146-3 sign \x6146 124-146-3 sign \x6147 1456-3 sign \x6148 245-156-2 sign \x6149 15-1256-5 sign \x614A 15-2345-2 sign \x614B 124-2456-5 sign \x614C 1235-456-3 sign \x614D 256-5 sign \x614E 24-136-5 sign \x614F 134-13456-4 sign \x6151 1-2346-2 sign \x6152 245-12346-2 sign \x6153 1234-246-3 sign \x6154 134-34-5 sign \x6155 134-34-5 sign \x6156 13-25-2 sign \x6157 12-156-5 sign \x6158 245-1236-4 sign \x6159 245-1236-2 sign \x615A 245-1236-2 sign \x615B 245-1246-2 sign \x615C 134-1456-4 sign \x615D 124-2346-5 sign \x615E 1-1346-3 sign \x615F 124-12346-5 sign \x6160 146-5 sign \x6161 24-456-4 sign \x6162 134-1236-5 sign \x6163 13-12456-5 sign \x6164 245-236-5 sign \x6165 245-146-5 sign \x6166 13-234-5 sign \x6167 1235-1246-5 sign \x6168 123-2456-4 sign \x6169 14-2345-2 sign \x616A 12356-5 sign \x616B 15-12346-4 sign \x616C 245-1456-2 sign \x616D 1456-5 sign \x616E 14-1256-5 sign \x616F 24-1346-3 sign \x6170 1246-5 sign \x6171 124-12456-2 sign \x6172 134-1236-2 sign \x6173 245-2345-3 sign \x6174 1-2346-2 sign \x6175 235-3 sign \x6176 245-13456-5 sign \x6177 123-1346-3 sign \x6178 145-16-5 sign \x6179 1-156-2 sign \x617A 14-1256-2 sign \x617B 13-45-5 sign \x617C 245-16-3 sign \x617D 245-16-3 sign \x617E 1256-5 sign \x617F 1234-13456-2 sign \x6180 14-246-2 sign \x6181 245-12346-3 sign \x6182 234-3 sign \x6183 12-456-3 sign \x6184 1-156-5 sign \x6185 124-12346-5 sign \x6186 12-1356-3 sign \x6187 245-16-5 sign \x6188 245-1256-3 sign \x6189 1234-1356-2 sign \x618A 135-356-5 sign \x618B 135-346-3 sign \x618C 12-123456-2 sign \x618D 13-246-3 sign \x618E 125-1356-3 sign \x618F 12-156-5 sign \x6190 14-2345-2 sign \x6191 1234-13456-2 sign \x6192 123-1246-5 sign \x6193 1235-1246-5 sign \x6194 245-246-2 sign \x6195 12-1356-2 sign \x6196 1456-5 sign \x6197 1456-5 sign \x6198 15-16-4 sign \x6199 15-16-4 sign \x619A 145-1236-5 sign \x619B 124-1236-2 sign \x619C 145-25-4 sign \x619D 145-1246-5 sign \x619E 145-1246-5 sign \x619F 15-34-5 sign \x61A0 13-236-2 sign \x61A1 245-2346-5 sign \x61A2 15-246-3 sign \x61A3 12345-1236-2 sign \x61A4 12345-136-5 sign \x61A5 14-146-2 sign \x61A6 14-146-5 sign \x61A7 12-12346-3 sign \x61A8 1235-1236-3 sign \x61A9 245-16-5 sign \x61AA 15-2345-2 sign \x61AB 134-1456-4 sign \x61AC 13-13456-4 sign \x61AD 14-246-2 sign \x61AE 34-4 sign \x61AF 245-1236-4 sign \x61B0 13-236-2 sign \x61B1 245-34-5 sign \x61B2 15-2345-5 sign \x61B3 124-1236-4 sign \x61B4 24-1356-2 sign \x61B5 1234-16-3 sign \x61B6 16-5 sign \x61B7 12-34-4 sign \x61B8 15-2345-3 sign \x61B9 1345-146-2 sign \x61BA 145-1236-5 sign \x61BB 124-1236-4 sign \x61BC 13-13456-4 sign \x61BD 15-12346-3 sign \x61BE 1235-1236-5 sign \x61BF 13-246-3 sign \x61C0 2356-5 sign \x61C1 13-45-5 sign \x61C2 145-12346-4 sign \x61C3 245-1456-2 sign \x61C4 245-1456-2 sign \x61C5 245-1256-2 sign \x61C6 245-146-4 sign \x61C7 123-136-4 sign \x61C8 15-346-5 sign \x61C9 13456-3 sign \x61CA 146-5 sign \x61CB 134-146-5 sign \x61CC 16-5 sign \x61CD 14-1456-4 sign \x61CE 15-2346-5 sign \x61CF 13-256-5 sign \x61D0 1235-2356-2 sign \x61D1 134-136-5 sign \x61D2 14-1236-4 sign \x61D3 2456-5 sign \x61D4 14-1456-4 sign \x61D5 2345-3 sign \x61D6 13-35-3 sign \x61D7 15-23456-5 sign \x61D8 12-156-5 sign \x61D9 1256-4 sign \x61DA 1456-5 sign \x61DB 145-2456-3 sign \x61DC 134-1356-2 sign \x61DD 2456-5 sign \x61DE 134-1356-2 sign \x61DF 145-1246-5 sign \x61E0 245-16-2 sign \x61E1 134-126-4 sign \x61E2 14-1236-2 sign \x61E3 134-136-5 sign \x61E4 12-12356-2 sign \x61E5 1-156-5 sign \x61E6 1345-25-5 sign \x61E7 1345-25-5 sign \x61E8 2345-3 sign \x61E9 46-4 sign \x61EA 135-126-2 sign \x61EB 1-156-2 sign \x61EC 123-456-5 sign \x61ED 123-456-5 sign \x61EE 234-4 sign \x61EF 12345-34-3 sign \x61F0 14-234-2 sign \x61F1 134-346-5 sign \x61F2 12-1356-2 sign \x61F4 12-1236-5 sign \x61F5 134-1356-2 sign \x61F6 14-1236-4 sign \x61F7 1235-2356-2 sign \x61F8 15-45-2 sign \x61F9 1245-1346-5 sign \x61FA 12-1236-5 sign \x61FB 13-16-5 sign \x61FC 13-1256-5 sign \x61FD 13-12456-5 sign \x61FE 1-2346-2 sign \x61FF 16-5 sign \x6200 14-2345-5 sign \x6201 1345-1236-4 sign \x6202 134-16-2 sign \x6203 124-1346-4 sign \x6204 13-236-2 sign \x6205 1-456-5 sign \x6206 1-456-5 sign \x6207 1-456-5 sign \x6208 13-2346-3 sign \x6209 236-5 sign \x620A 34-5 sign \x620B 245-1236-2 sign \x620C 15-1256-3 sign \x620D 24-34-5 sign \x620E 1245-12346-2 sign \x620F 15-16-5 sign \x6210 12-1356-2 sign \x6211 25-4 sign \x6212 13-346-5 sign \x6213 13-2346-3 sign \x6214 245-1236-2 sign \x6215 245-46-2 sign \x6216 1235-25-5 sign \x6217 12-456-3 sign \x6218 1-1236-5 sign \x6219 145-12346-5 sign \x621A 245-16-3 sign \x621B 13-23456-2 sign \x621C 145-346-2 sign \x621D 125-356-2 sign \x621E 13-23456-2 sign \x621F 13-16-4 sign \x6220 1-156-2 sign \x6221 123-1236-3 sign \x6222 13-16-2 sign \x6223 123-1246-2 sign \x6224 13-2456-5 sign \x6225 145-1356-4 sign \x6226 1-1236-5 sign \x6227 12-456-3 sign \x6228 13-2346-3 sign \x6229 13-2345-4 sign \x622A 13-346-2 sign \x622B 1256-5 sign \x622C 13-2345-4 sign \x622D 2345-4 sign \x622E 14-34-5 sign \x622F 15-16-5 sign \x6230 1-1236-5 sign \x6231 15-16-5 sign \x6232 15-16-5 sign \x6233 12-25-3 sign \x6234 145-2456-5 sign \x6235 245-1256-2 sign \x6236 1235-34-5 sign \x6237 1235-34-5 sign \x6238 1235-34-5 sign \x6239 2346-5 sign \x623A 24-156-5 sign \x623B 14-16-5 sign \x623C 134-146-4 sign \x623D 1235-34-5 sign \x623E 14-16-5 sign \x623F 12345-1346-2 sign \x6240 15-25-4 sign \x6241 135-2345-4 sign \x6242 145-2345-5 sign \x6243 13-235-3 sign \x6244 24-1346-4 sign \x6245 16-2 sign \x6246 16-4 sign \x6247 24-1236-5 sign \x6248 1235-34-5 sign \x6249 12345-356-3 sign \x624A 2345-4 sign \x624B 24-12356-4 sign \x624D 245-2456-2 sign \x624E 1-345-2 sign \x624F 245-234-2 sign \x6250 14-2346-5 sign \x6251 1234-34-3 sign \x6252 1234-345-2 sign \x6253 145-345-4 sign \x6254 1245-1356-3 sign \x6255 12345-34-2 sign \x6257 125-2456-5 sign \x6258 124-25-3 sign \x6259 13-34-4 sign \x625A 12-345-3 sign \x625B 123-1346-2 sign \x625C 145-123456-5 sign \x625D 123-34-3 sign \x625E 1256-3 sign \x625F 24-136-3 sign \x6260 1-1346-5 sign \x6261 34-5 sign \x6262 245-2345-3 sign \x6263 123-12356-5 sign \x6264 13-1236-4 sign \x6265 145-246-3 sign \x6266 16-4 sign \x6267 1-156-2 sign \x6268 1245-136-5 sign \x6269 123-25-5 sign \x626A 134-136-2 sign \x626B 15-146-4 sign \x626C 46-2 sign \x626D 1345-234-4 sign \x626E 135-1236-5 sign \x626F 12-2346-4 sign \x6270 234-5 sign \x6271 12-345-2 sign \x6272 245-2345-2 sign \x6273 135-1236-3 sign \x6274 13-23456-2 sign \x6275 1256-2 sign \x6276 12345-34-2 sign \x6277 146-5 sign \x6278 15-16-3 sign \x6279 1234-16-3 sign \x627A 1-156-4 sign \x627B 125-156-5 sign \x627C 2346-5 sign \x627D 145-123456-5 sign \x627E 1-146-4 sign \x627F 12-1356-2 sign \x6280 13-16-5 sign \x6281 2345-4 sign \x6282 123-456-2 sign \x6283 135-2345-5 sign \x6284 12-146-3 sign \x6285 13-1256-3 sign \x6286 123456-4 sign \x6287 1235-34-2 sign \x6288 236-5 sign \x6289 13-236-2 sign \x628A 135-345-4 sign \x628B 245-1456-5 sign \x628C 1-136-4 sign \x628D 1-1356-4 sign \x628E 256-4 sign \x628F 12456-2 sign \x6290 1345-34-5 sign \x6291 16-5 sign \x6292 24-34-3 sign \x6293 1-35-3 sign \x6294 1234-12356-2 sign \x6295 124-12356-2 sign \x6296 145-12356-4 sign \x6297 123-1346-5 sign \x6298 1-2346-2 sign \x6299 1234-12356-2 sign \x629A 12345-34-4 sign \x629B 1234-146-3 sign \x629C 135-345-2 sign \x629D 146-5 sign \x629E 125-2346-2 sign \x629F 124-12456-2 sign \x62A0 123-12356-3 sign \x62A1 14-123456-2 sign \x62A2 245-46-4 sign \x62A4 1235-34-5 sign \x62A5 135-146-5 sign \x62A6 135-13456-4 sign \x62A7 1-156-4 sign \x62A8 1234-1356-3 sign \x62A9 124-1236-3 sign \x62AA 1234-34-3 sign \x62AB 1234-16-3 sign \x62AC 124-2456-2 sign \x62AD 246-4 sign \x62AE 1-136-4 sign \x62AF 1-345-3 sign \x62B0 46-4 sign \x62B1 135-146-5 sign \x62B2 1235-2346-3 sign \x62B3 1345-16-4 sign \x62B4 16-5 sign \x62B5 145-16-4 sign \x62B6 12-156-5 sign \x62B7 1234-16-3 sign \x62B8 125-345-3 sign \x62B9 134-126-4 sign \x62BA 134-356-5 sign \x62BB 24-136-5 sign \x62BC 23456-3 sign \x62BD 12-12356-3 sign \x62BE 245-1256-3 sign \x62BF 134-1456-4 sign \x62C0 12-34-5 sign \x62C1 13-23456-3 sign \x62C2 12345-34-2 sign \x62C3 1-1236-4 sign \x62C4 1-34-4 sign \x62C5 145-1236-3 sign \x62C6 12-2456-3 sign \x62C7 134-34-4 sign \x62C8 1345-2345-2 sign \x62C9 14-345-3 sign \x62CA 12345-34-4 sign \x62CB 1234-146-3 sign \x62CC 135-1236-5 sign \x62CD 1234-2456-3 sign \x62CE 14-13456-3 sign \x62CF 1345-345-2 sign \x62D0 13-2356-4 sign \x62D1 245-2345-2 sign \x62D2 13-1256-5 sign \x62D3 124-25-5 sign \x62D4 135-345-2 sign \x62D5 124-25-3 sign \x62D6 124-25-3 sign \x62D7 146-5 sign \x62D8 13-1256-3 sign \x62D9 1-25-2 sign \x62DA 1234-1456-3 sign \x62DB 1-146-3 sign \x62DC 135-2456-5 sign \x62DD 135-2456-5 sign \x62DE 145-16-4 sign \x62DF 1345-16-4 sign \x62E0 13-1256-5 sign \x62E1 123-25-5 sign \x62E2 14-12346-4 sign \x62E3 13-2345-4 sign \x62E5 235-4 sign \x62E6 14-1236-2 sign \x62E7 1345-13456-2 sign \x62E8 135-126-3 sign \x62E9 125-2346-2 sign \x62EA 245-2345-3 sign \x62EB 1235-136-2 sign \x62EC 13-35-3 sign \x62ED 24-156-5 sign \x62EE 13-346-2 sign \x62EF 1-1356-4 sign \x62F0 1345-1456-4 sign \x62F1 13-12346-4 sign \x62F2 13-12346-4 sign \x62F3 245-45-2 sign \x62F4 24-12456-3 sign \x62F5 245-123456-2 sign \x62F6 125-1236-4 sign \x62F7 123-146-4 sign \x62F8 12-156-4 sign \x62F9 15-346-2 sign \x62FA 245-2346-5 sign \x62FB 1235-1246-3 sign \x62FC 1234-1456-3 sign \x62FD 1-2356-4 sign \x62FE 24-156-2 sign \x62FF 1345-345-2 sign \x6300 134-126-5 sign \x6301 12-156-2 sign \x6302 13-35-5 sign \x6303 1-156-5 sign \x6304 123-25-5 sign \x6305 145-25-4 sign \x6306 145-25-4 sign \x6307 1-156-4 sign \x6308 245-346-5 sign \x6309 1236-5 sign \x630A 1345-12346-5 sign \x630B 1-136-5 sign \x630C 13-2346-2 sign \x630D 13-246-5 sign \x630E 123-34-3 sign \x630F 145-12346-5 sign \x6310 1345-1256-2 sign \x6311 124-246-3 sign \x6312 14-346-5 sign \x6313 1-345-3 sign \x6314 14-1256-4 sign \x6315 145-346-2 sign \x6316 35-3 sign \x6317 13-236-2 sign \x6319 13-1256-4 sign \x631A 1-156-5 sign \x631B 14-45-2 sign \x631C 23456-5 sign \x631D 1-35-3 sign \x631E 124-345-5 sign \x631F 13-23456-2 sign \x6320 1345-146-2 sign \x6321 145-1346-4 sign \x6322 13-246-4 sign \x6323 1-1356-3 sign \x6324 13-16-4 sign \x6325 1235-1246-3 sign \x6326 15-256-2 sign \x6328 2456-3 sign \x6329 124-25-3 sign \x632A 1345-25-2 sign \x632B 245-25-5 sign \x632C 135-126-2 sign \x632D 13-1356-4 sign \x632E 124-16-4 sign \x632F 1-136-5 sign \x6330 12-1356-2 sign \x6331 15-25-3 sign \x6332 15-25-3 sign \x6333 123-1356-3 sign \x6334 134-356-4 sign \x6335 1345-12346-5 sign \x6336 13-1256-2 sign \x6337 1234-1356-2 sign \x6338 13-2345-4 sign \x6339 16-5 sign \x633A 124-13456-4 sign \x633B 24-1236-3 sign \x633C 1345-2346-2 sign \x633D 12456-4 sign \x633E 13-23456-2 sign \x633F 12-345-3 sign \x6340 12345-1356-3 sign \x6341 13-246-4 sign \x6342 34-5 sign \x6343 13-256-5 sign \x6344 13-1256-3 sign \x6345 124-12346-4 sign \x6346 123-123456-4 sign \x6347 1235-25-5 sign \x6348 124-34-2 sign \x6349 1-25-3 sign \x634A 1234-12356-2 sign \x634B 14-2346-5 sign \x634C 135-345-3 sign \x634D 1235-1236-5 sign \x634E 24-146-3 sign \x634F 1345-346-3 sign \x6350 13-45-3 sign \x6351 125-2346-2 sign \x6352 15-12346-4 sign \x6353 346-2 sign \x6354 13-236-2 sign \x6355 135-34-4 sign \x6356 1235-12456-2 sign \x6357 135-34-5 sign \x6358 125-123456-5 sign \x6359 1-2356-4 sign \x635A 1-2456-3 sign \x635B 14-1256-4 sign \x635C 15-12356-3 sign \x635D 124-25-3 sign \x635E 14-146-3 sign \x635F 15-123456-4 sign \x6360 135-1346-3 sign \x6361 13-2345-4 sign \x6362 1235-12456-5 sign \x6363 145-146-4 sign \x6365 12456-5 sign \x6366 245-1456-2 sign \x6367 1234-1356-4 sign \x6368 24-2346-4 sign \x6369 14-346-5 sign \x636A 134-1456-2 sign \x636B 134-136-2 sign \x636C 12345-34-4 sign \x636D 135-2456-4 sign \x636E 13-1256-5 sign \x636F 145-146-4 sign \x6370 25-4 sign \x6371 2456-2 sign \x6372 13-45-4 sign \x6373 236-5 sign \x6374 125-12346-4 sign \x6375 124-2345-4 sign \x6376 12-1246-2 sign \x6377 13-346-2 sign \x6378 124-34-3 sign \x6379 135-136-5 sign \x637A 1345-345-5 sign \x637B 1345-2345-4 sign \x637C 1345-25-2 sign \x637D 125-34-2 sign \x637E 25-5 sign \x637F 15-16-3 sign \x6380 15-2345-3 sign \x6381 12-1356-2 sign \x6382 145-2345-3 sign \x6383 15-146-4 sign \x6384 14-123456-2 sign \x6385 245-13456-5 sign \x6386 13-1346-3 sign \x6387 145-25-2 sign \x6388 24-12356-5 sign \x6389 145-246-5 sign \x638A 1234-12356-2 sign \x638B 145-16-4 sign \x638C 1-1346-4 sign \x638D 13-123456-4 sign \x638E 13-16-4 sign \x638F 124-146-3 sign \x6390 245-23456-3 sign \x6391 245-16-2 sign \x6392 1234-2456-2 sign \x6393 24-34-2 sign \x6394 245-2345-3 sign \x6395 14-13456-5 sign \x6396 16-5 sign \x6397 23456-5 sign \x6398 13-236-2 sign \x6399 1-1356-3 sign \x639A 14-46-4 sign \x639B 13-35-5 sign \x639C 16-4 sign \x639D 1235-25-5 sign \x639E 24-1236-5 sign \x639F 1-1356-4 sign \x63A0 14-236-5 sign \x63A1 245-2456-4 sign \x63A2 124-1236-5 sign \x63A3 12-2346-5 sign \x63A4 135-13456-3 sign \x63A5 13-346-3 sign \x63A6 124-16-5 sign \x63A7 123-12346-5 sign \x63A8 124-1246-3 sign \x63A9 2345-4 sign \x63AA 245-25-5 sign \x63AB 125-12356-3 sign \x63AC 13-1256-2 sign \x63AD 124-2345-5 sign \x63AE 245-2345-2 sign \x63AF 123-136-5 sign \x63B0 135-2456-3 sign \x63B1 24-12356-4 sign \x63B2 13-346-3 sign \x63B3 14-34-4 sign \x63B4 13-25-2 sign \x63B7 1-156-2 sign \x63B8 145-1236-4 sign \x63BA 245-1236-3 sign \x63BB 15-146-3 sign \x63BC 13-12456-5 sign \x63BD 1234-1356-5 sign \x63BE 45-5 sign \x63BF 1345-25-5 sign \x63C0 13-2345-4 sign \x63C1 1-136-3 sign \x63C2 13-234-3 sign \x63C3 13-2345-4 sign \x63C4 1256-2 sign \x63C5 2345-2 sign \x63C6 123-1246-2 sign \x63C7 1345-1236-4 sign \x63C8 1235-12346-3 sign \x63C9 1245-12356-2 sign \x63CA 1234-16-5 sign \x63CB 1246-3 sign \x63CC 15-2456-3 sign \x63CD 125-12356-5 sign \x63CE 15-45-3 sign \x63CF 134-246-2 sign \x63D0 124-16-2 sign \x63D1 1345-346-3 sign \x63D2 12-345-3 sign \x63D3 24-156-5 sign \x63D4 125-12346-4 sign \x63D5 1-136-5 sign \x63D6 16-3 sign \x63D7 24-123456-4 sign \x63D8 1235-1356-2 sign \x63D9 135-2345-5 sign \x63DA 46-2 sign \x63DB 1235-12456-5 sign \x63DC 2345-4 sign \x63DD 125-12456-5 sign \x63DE 1236-4 sign \x63DF 15-1256-3 sign \x63E0 23456-5 sign \x63E1 25-5 sign \x63E2 123-2346-5 sign \x63E3 12-2356-4 sign \x63E4 13-16-2 sign \x63E5 124-16-5 sign \x63E6 14-345-2 sign \x63E7 14-345-5 sign \x63E8 12-1356-2 sign \x63E9 123-2456-4 sign \x63EA 13-234-3 sign \x63EB 13-234-3 sign \x63EC 124-34-2 sign \x63ED 13-346-3 sign \x63EE 1235-1246-3 sign \x63EF 13-1356-3 sign \x63F0 12-12346-5 sign \x63F1 15-246-3 sign \x63F2 24-2346-2 sign \x63F3 15-346-5 sign \x63F4 45-2 sign \x63F5 245-2345-2 sign \x63F6 346-2 sign \x63F7 12-345-3 sign \x63F8 1-345-3 sign \x63F9 135-356-3 sign \x63FA 246-2 sign \x63FD 14-1236-4 sign \x63FE 123456-5 sign \x63FF 245-1456-5 sign \x6400 12-1236-3 sign \x6401 13-2346-3 sign \x6402 14-12356-4 sign \x6403 125-12346-4 sign \x6404 13-1356-3 sign \x6405 13-246-4 sign \x6406 13-12356-3 sign \x6407 245-1456-5 sign \x6408 235-4 sign \x6409 245-236-5 sign \x640A 12-12356-3 sign \x640B 12-2356-3 sign \x640C 1-1236-4 sign \x640D 15-123456-4 sign \x640E 15-123456-3 sign \x640F 135-126-2 sign \x6410 12-34-5 sign \x6411 1245-12346-4 sign \x6412 135-1356-5 sign \x6413 245-25-3 sign \x6414 15-146-3 sign \x6415 123-2346-5 sign \x6416 246-2 sign \x6417 145-146-4 sign \x6418 1-156-3 sign \x6419 1345-34-5 sign \x641A 15-346-2 sign \x641B 13-2345-3 sign \x641C 15-12356-3 sign \x641D 245-234-4 sign \x641E 13-146-4 sign \x641F 15-2345-4 sign \x6420 24-25-5 sign \x6421 15-1346-4 sign \x6422 13-1456-5 sign \x6423 134-346-5 sign \x6424 2346-5 sign \x6425 12-1246-2 sign \x6426 1345-25-5 sign \x6427 24-1236-3 sign \x6428 124-345-5 sign \x6429 13-346-2 sign \x642A 124-1346-2 sign \x642B 1234-1236-2 sign \x642C 135-1236-3 sign \x642D 145-345-3 sign \x642E 14-16-5 sign \x642F 124-146-3 sign \x6430 1235-34-2 sign \x6431 1-156-5 sign \x6432 35-3 sign \x6433 15-23456-2 sign \x6434 245-2345-3 sign \x6435 123456-5 sign \x6436 245-46-4 sign \x6437 124-2345-2 sign \x6438 1-136-3 sign \x6439 2346-5 sign \x643A 15-16-3 sign \x643B 1345-25-5 sign \x643C 245-45-2 sign \x643D 12-345-2 sign \x643E 1-345-5 sign \x643F 13-2346-2 sign \x6440 34-4 sign \x6441 136-5 sign \x6442 24-2346-5 sign \x6443 123-1346-2 sign \x6444 24-2346-5 sign \x6445 24-34-3 sign \x6446 135-2456-4 sign \x6447 246-2 sign \x6448 135-1456-5 sign \x6449 15-12356-3 sign \x644A 124-1236-3 sign \x644B 15-345-5 sign \x644C 12-1236-4 sign \x644D 15-25-3 sign \x644E 13-234-3 sign \x644F 12-12346-3 sign \x6450 12-456-3 sign \x6451 13-25-2 sign \x6452 135-13456-5 sign \x6453 12345-1356-2 sign \x6454 24-2356-3 sign \x6455 145-16-5 sign \x6456 245-16-5 sign \x6458 1-2456-3 sign \x6459 14-2345-4 sign \x645A 124-1346-2 sign \x645B 12-156-3 sign \x645C 13-12456-5 sign \x645D 14-34-5 sign \x645E 14-25-2 sign \x645F 14-12356-4 sign \x6460 125-12346-4 sign \x6461 13-2456-5 sign \x6462 1235-34-5 sign \x6463 1-345-3 sign \x6464 12-456-4 sign \x6465 124-1346-5 sign \x6466 1235-35-5 sign \x6467 245-1246-3 sign \x6468 1345-2456-2 sign \x6469 134-126-2 sign \x646A 13-46-3 sign \x646B 13-1246-3 sign \x646C 13456-5 sign \x646D 1-156-2 sign \x646E 146-2 sign \x646F 1-156-5 sign \x6470 1345-346-5 sign \x6471 134-1236-2 sign \x6472 24-1236-3 sign \x6473 123-12356-3 sign \x6474 24-34-3 sign \x6475 15-25-4 sign \x6476 124-12456-2 sign \x6477 13-246-4 sign \x6478 134-126-3 sign \x6479 134-126-2 sign \x647A 1-2346-2 sign \x647B 12-1236-3 sign \x647C 123-1356-3 sign \x647D 135-246-3 sign \x647E 13-46-5 sign \x647F 1456-3 sign \x6480 13-12356-5 sign \x6481 245-2345-3 sign \x6482 14-236-5 sign \x6483 13-16-2 sign \x6484 13456-3 sign \x6485 13-236-3 sign \x6486 1234-346-4 sign \x6487 1234-346-4 sign \x6488 14-146-3 sign \x6489 145-123456-3 sign \x648A 15-2345-5 sign \x648B 1245-12456-2 sign \x648C 123-1246-5 sign \x648D 125-1236-4 sign \x648E 16-5 sign \x648F 15-256-2 sign \x6490 12-1356-3 sign \x6491 12-1356-3 sign \x6492 15-345-4 sign \x6493 1345-146-2 sign \x6494 1235-1356-5 sign \x6495 15-156-3 sign \x6496 245-2345-4 sign \x6497 1235-456-2 sign \x6498 145-345-3 sign \x6499 125-123456-4 sign \x649A 1345-2345-4 sign \x649B 14-1456-4 sign \x649C 1-1356-4 sign \x649D 1235-1246-3 sign \x649E 1-456-5 sign \x649F 13-246-4 sign \x64A0 13-16-4 sign \x64A1 245-146-3 sign \x64A2 145-1236-4 sign \x64A3 145-1236-4 sign \x64A4 12-2346-5 sign \x64A5 135-126-3 sign \x64A6 12-2346-4 sign \x64A7 13-236-2 sign \x64A8 15-246-3 sign \x64A9 14-246-2 sign \x64AA 135-136-5 sign \x64AB 12345-34-4 sign \x64AC 245-246-3 sign \x64AD 135-126-5 sign \x64AE 245-25-3 sign \x64AF 1-25-2 sign \x64B0 1-12456-5 sign \x64B1 124-25-4 sign \x64B2 1234-34-3 sign \x64B3 245-1456-5 sign \x64B4 145-123456-3 sign \x64B5 1345-2345-4 sign \x64B7 13-346-2 sign \x64B8 14-34-4 sign \x64B9 13-246-4 sign \x64BA 245-12456-3 sign \x64BB 124-345-5 sign \x64BC 1235-1236-5 sign \x64BD 245-246-5 sign \x64BE 1-35-3 sign \x64BF 13-2345-4 sign \x64C0 13-1236-4 sign \x64C1 235-4 sign \x64C2 14-356-2 sign \x64C3 123-25-4 sign \x64C4 14-34-4 sign \x64C5 24-1236-5 sign \x64C6 1-25-2 sign \x64C7 125-2346-2 sign \x64C8 1234-34-3 sign \x64C9 12-25-5 sign \x64CA 13-16-2 sign \x64CB 145-1346-4 sign \x64CC 15-25-4 sign \x64CD 245-146-3 sign \x64CE 245-13456-2 sign \x64CF 245-13456-2 sign \x64D0 1235-12456-5 sign \x64D1 13-346-3 sign \x64D2 245-1456-2 sign \x64D3 123-2356-4 sign \x64D4 145-1236-3 sign \x64D5 15-16-3 sign \x64D6 13-2346-5 sign \x64D7 1234-16-5 sign \x64D8 135-126-5 sign \x64D9 146-5 sign \x64DA 13-1256-5 sign \x64DB 346-5 sign \x64DE 15-12356-4 sign \x64DF 134-16-2 sign \x64E0 13-16-4 sign \x64E1 124-2456-2 sign \x64E2 1-25-2 sign \x64E3 145-146-4 sign \x64E4 15-13456-4 sign \x64E5 14-1236-4 sign \x64E6 245-345-3 sign \x64E7 13-1256-4 sign \x64E8 346-2 sign \x64E9 1245-34-4 sign \x64EA 346-5 sign \x64EB 346-5 sign \x64EC 1345-16-4 sign \x64ED 1235-34-5 sign \x64EE 13-16-2 sign \x64EF 135-1456-5 sign \x64F0 1345-13456-2 sign \x64F1 13-2346-3 sign \x64F2 1-156-2 sign \x64F3 13-346-2 sign \x64F4 123-25-5 sign \x64F5 134-126-2 sign \x64F6 13-2345-5 sign \x64F7 13-346-2 sign \x64F8 14-346-5 sign \x64F9 124-1236-3 sign \x64FA 135-2456-4 sign \x64FB 15-12356-4 sign \x64FC 14-34-4 sign \x64FD 14-236-5 sign \x64FE 1245-146-4 sign \x64FF 1-156-2 sign \x6500 1234-1236-3 sign \x6501 46-4 sign \x6502 14-356-2 sign \x6503 15-345-5 sign \x6504 24-34-3 sign \x6505 125-1236-4 sign \x6506 1345-2345-4 sign \x6507 15-2345-4 sign \x6508 13-256-5 sign \x6509 1235-25-5 sign \x650A 14-16-5 sign \x650B 14-345-5 sign \x650C 1235-1236-5 sign \x650D 13456-2 sign \x650E 14-34-2 sign \x650F 14-12346-4 sign \x6510 245-2345-3 sign \x6511 245-2345-3 sign \x6512 125-1236-4 sign \x6513 245-2345-3 sign \x6514 14-1236-2 sign \x6515 15-1236-3 sign \x6516 13456-3 sign \x6517 134-356-2 sign \x6518 1245-1346-4 sign \x6519 12-1236-3 sign \x651B 245-12456-3 sign \x651C 15-16-3 sign \x651D 24-2346-5 sign \x651E 14-25-4 sign \x651F 13-256-5 sign \x6520 134-16-2 sign \x6521 14-16-2 sign \x6522 125-1236-4 sign \x6523 14-45-2 sign \x6524 124-1236-3 sign \x6525 125-12456-5 sign \x6526 14-16-5 sign \x6527 145-2345-3 sign \x6528 35-3 sign \x6529 145-1346-4 sign \x652A 13-246-4 sign \x652B 13-236-2 sign \x652C 14-1236-4 sign \x652D 14-16-5 sign \x652E 1345-1346-4 sign \x652F 1-156-3 sign \x6530 13-1246-5 sign \x6531 13-1246-4 sign \x6532 245-16-3 sign \x6533 15-1456-2 sign \x6534 1234-34-3 sign \x6535 15-1246-3 sign \x6536 24-12356-3 sign \x6537 123-146-4 sign \x6538 234-3 sign \x6539 13-2456-4 sign \x653A 16-4 sign \x653B 13-12346-3 sign \x653C 13-1236-3 sign \x653D 135-1236-3 sign \x653E 12345-1346-5 sign \x653F 1-1356-5 sign \x6540 135-126-2 sign \x6541 145-2345-3 sign \x6542 123-12356-5 sign \x6543 134-1456-4 sign \x6544 34-5 sign \x6545 13-34-5 sign \x6546 13-2346-2 sign \x6547 245-2346-5 sign \x6548 15-246-5 sign \x6549 134-16-4 sign \x654A 12-34-5 sign \x654B 13-2346-2 sign \x654C 145-16-2 sign \x654D 15-1256-5 sign \x654E 13-246-5 sign \x654F 134-1456-4 sign \x6550 12-136-2 sign \x6551 13-234-5 sign \x6552 1-136-5 sign \x6553 145-25-2 sign \x6554 1256-4 sign \x6555 12-156-5 sign \x6556 146-2 sign \x6557 135-2456-5 sign \x6558 15-1256-5 sign \x6559 13-246-5 sign \x655A 145-25-2 sign \x655B 14-2345-5 sign \x655C 1345-346-5 sign \x655D 135-16-5 sign \x655E 12-1346-4 sign \x655F 145-2345-4 sign \x6560 145-25-2 sign \x6561 16-5 sign \x6562 13-1236-4 sign \x6563 15-1236-5 sign \x6564 123-2346-4 sign \x6565 2345-5 sign \x6566 145-123456-3 sign \x6567 245-16-4 sign \x6568 124-12356-4 sign \x6569 15-236-2 sign \x656A 145-25-2 sign \x656B 13-246-5 sign \x656C 13-13456-5 sign \x656D 46-2 sign \x656E 15-23456-2 sign \x656F 134-1456-4 sign \x6570 24-34-5 sign \x6571 2456-2 sign \x6572 245-246-3 sign \x6573 2456-2 sign \x6574 1-1356-4 sign \x6575 145-16-2 sign \x6576 1-136-5 sign \x6577 12345-34-3 sign \x6578 24-34-5 sign \x6579 14-246-2 sign \x657A 245-1256-3 sign \x657B 15-235-5 sign \x657C 15-16-4 sign \x657D 13-246-4 sign \x657F 13-246-4 sign \x6580 1-25-2 sign \x6581 16-5 sign \x6582 14-2345-5 sign \x6583 135-16-5 sign \x6584 14-16-5 sign \x6585 15-246-5 sign \x6586 15-236-2 sign \x6587 123456-2 sign \x6588 15-236-2 sign \x6589 245-16-2 sign \x658A 245-16-2 sign \x658B 1-2456-3 sign \x658C 135-1456-3 sign \x658D 13-236-2 sign \x658E 1-2456-3 sign \x6590 12345-356-4 sign \x6591 135-1236-3 sign \x6592 135-1236-3 sign \x6593 14-1236-2 sign \x6594 1256-4 sign \x6595 14-1236-2 sign \x6596 1246-4 sign \x6597 145-12356-4 sign \x6598 24-1356-3 sign \x6599 14-246-5 sign \x659A 13-23456-4 sign \x659B 1235-34-2 sign \x659C 15-346-2 sign \x659D 13-23456-4 sign \x659E 1256-4 sign \x659F 1-136-3 sign \x65A0 13-246-5 sign \x65A1 25-5 sign \x65A2 124-12356-4 sign \x65A3 12-34-5 sign \x65A4 13-1456-3 sign \x65A5 12-156-5 sign \x65A6 1456-2 sign \x65A7 12345-34-4 sign \x65A8 245-46-3 sign \x65A9 1-1236-4 sign \x65AA 245-1256-2 sign \x65AB 1-25-2 sign \x65AC 1-1236-4 sign \x65AD 145-12456-5 sign \x65AE 1-25-2 sign \x65AF 15-156-3 sign \x65B0 15-1456-3 sign \x65B1 1-25-2 sign \x65B2 1-25-2 sign \x65B3 245-1456-2 sign \x65B4 14-1456-2 sign \x65B5 1-25-2 sign \x65B6 12-34-5 sign \x65B7 145-12456-5 sign \x65B8 1-34-4 sign \x65B9 12345-1346-3 sign \x65BA 15-346-5 sign \x65BB 1235-1346-2 sign \x65BC 1256-2 sign \x65BD 24-156-3 sign \x65BE 1234-356-5 sign \x65BF 234-2 sign \x65C1 1234-1346-2 sign \x65C2 245-16-2 sign \x65C3 1-1236-3 sign \x65C4 134-146-2 sign \x65C5 14-1256-4 sign \x65C6 1234-356-5 sign \x65C7 1234-16-3 sign \x65C8 14-234-2 sign \x65C9 12345-34-3 sign \x65CA 12345-1346-4 sign \x65CB 15-45-2 sign \x65CC 13-13456-3 sign \x65CD 13-13456-3 sign \x65CE 1345-16-2 sign \x65CF 125-34-2 sign \x65D0 1-146-5 sign \x65D1 16-4 sign \x65D2 14-234-2 sign \x65D3 24-146-3 sign \x65D4 13-2345-5 sign \x65D6 16-4 sign \x65D7 245-16-2 sign \x65D8 1-156-5 sign \x65D9 12345-1236-3 sign \x65DA 1234-246-3 sign \x65DB 12345-1236-3 sign \x65DC 1-1236-3 sign \x65DD 13-2356-5 sign \x65DE 15-1246-5 sign \x65DF 1256-2 sign \x65E0 34-2 sign \x65E1 125-1236-3 sign \x65E2 13-16-5 sign \x65E3 13-16-5 sign \x65E4 1235-25-5 sign \x65E5 1245-156-5 sign \x65E6 145-1236-5 sign \x65E7 13-234-5 sign \x65E8 1-156-4 sign \x65E9 125-146-4 sign \x65EA 15-346-2 sign \x65EB 124-246-3 sign \x65EC 15-256-2 sign \x65ED 15-1256-5 sign \x65EE 15-1256-5 sign \x65EF 14-345-2 sign \x65F0 13-1236-5 sign \x65F1 1235-1236-5 sign \x65F2 124-2456-2 sign \x65F3 145-2346-1 sign \x65F4 15-1256-3 sign \x65F5 12-1236-4 sign \x65F6 24-156-2 sign \x65F7 123-456-5 sign \x65F8 46-2 sign \x65F9 24-156-2 sign \x65FA 456-5 sign \x65FB 134-1456-2 sign \x65FC 134-1456-2 sign \x65FD 124-123456-3 sign \x65FE 12-123456-3 sign \x65FF 34-4 sign \x6600 256-2 sign \x6601 135-356-5 sign \x6602 1346-2 sign \x6603 125-2346-5 sign \x6604 135-1236-4 sign \x6605 13-346-2 sign \x6606 123-123456-3 sign \x6607 24-1356-3 sign \x6608 1235-34-5 sign \x6609 12345-1346-4 sign \x660A 1235-146-5 sign \x660B 13-1246-5 sign \x660C 12-1346-3 sign \x660D 15-45-3 sign \x660E 134-13456-2 sign \x660F 1235-123456-3 sign \x6610 12345-136-3 sign \x6611 245-1456-4 sign \x6612 1235-34-3 sign \x6613 16-5 sign \x6614 15-16-2 sign \x6615 15-1456-3 sign \x6616 2345-2 sign \x6617 125-2346-5 sign \x6618 12345-1346-4 sign \x6619 124-1236-2 sign \x661A 24-136-5 sign \x661B 13-1256-5 sign \x661C 46-2 sign \x661D 125-1236-4 sign \x661E 135-13456-4 sign \x661F 15-13456-3 sign \x6620 13456-5 sign \x6621 15-45-5 sign \x6622 1234-356-4 sign \x6623 1-136-4 sign \x6624 14-13456-3 sign \x6625 12-123456-3 sign \x6626 1235-146-5 sign \x6627 134-356-5 sign \x6628 125-25-2 sign \x6629 134-126-5 sign \x662A 135-2345-5 sign \x662B 15-1256-3 sign \x662C 1235-123456-3 sign \x662D 1-146-3 sign \x662E 125-12346-5 sign \x662F 24-156-5 sign \x6630 24-156-5 sign \x6631 1256-5 sign \x6632 12345-356-5 sign \x6633 145-346-2 sign \x6634 134-146-4 sign \x6635 1345-16-5 sign \x6636 12-1346-4 sign \x6637 123456-3 sign \x6638 145-12346-3 sign \x6639 2456-4 sign \x663A 135-13456-4 sign \x663B 1346-2 sign \x663C 1-12356-5 sign \x663D 14-12346-2 sign \x663E 15-2345-4 sign \x663F 123-456-5 sign \x6640 124-246-4 sign \x6641 1-146-5 sign \x6642 24-156-2 sign \x6643 1235-456-4 sign \x6644 1235-456-4 sign \x6645 15-45-3 sign \x6646 123-1246-2 sign \x6647 15-1256-3 sign \x6648 13-246-4 sign \x6649 13-1456-5 sign \x664A 1-156-4 sign \x664B 13-1456-5 sign \x664C 24-1346-4 sign \x664D 124-12346-2 sign \x664E 1235-12346-4 sign \x664F 2345-5 sign \x6650 13-2456-3 sign \x6651 15-46-4 sign \x6652 24-2456-5 sign \x6653 15-246-4 sign \x6654 346-5 sign \x6655 256-3 sign \x6656 1235-1246-3 sign \x6657 1235-1236-2 sign \x6658 1235-1236-5 sign \x6659 13-256-5 sign \x665A 12456-4 sign \x665B 15-2345-5 sign \x665C 123-123456-3 sign \x665D 1-12356-5 sign \x665E 15-16-3 sign \x665F 24-1356-5 sign \x6660 24-1356-2 sign \x6661 135-34-3 sign \x6662 1-2346-3 sign \x6663 1-2346-3 sign \x6664 34-5 sign \x6665 1235-1236-5 sign \x6666 1235-1246-5 sign \x6667 1235-146-5 sign \x6668 12-136-2 sign \x6669 12456-4 sign \x666A 124-2345-4 sign \x666B 1-25-2 sign \x666C 125-1246-5 sign \x666D 1-12356-4 sign \x666E 1234-34-4 sign \x666F 13-13456-4 sign \x6670 15-16-3 sign \x6671 24-1236-4 sign \x6672 16-4 sign \x6673 15-16-5 sign \x6674 245-13456-2 sign \x6675 245-16-4 sign \x6676 13-13456-3 sign \x6677 13-1246-4 sign \x6678 1-136-4 sign \x6679 16-5 sign \x667A 1-156-5 sign \x667B 1236-4 sign \x667C 12456-4 sign \x667D 14-1456-2 sign \x667E 14-46-5 sign \x667F 12-1346-3 sign \x6680 456-5 sign \x6681 15-246-4 sign \x6682 1-1236-5 sign \x6684 15-45-3 sign \x6685 15-45-4 sign \x6686 16-2 sign \x6687 15-23456-2 sign \x6688 256-3 sign \x6689 1235-1246-3 sign \x668A 12345-34-4 sign \x668B 134-1456-4 sign \x668C 123-1246-2 sign \x668D 346-5 sign \x668E 13456-5 sign \x668F 145-34-4 sign \x6690 1246-4 sign \x6691 24-34-4 sign \x6692 245-13456-2 sign \x6693 134-146-5 sign \x6694 1345-1236-2 sign \x6695 13-2345-4 sign \x6696 1345-12456-4 sign \x6697 1236-5 sign \x6698 46-2 sign \x6699 12-123456-3 sign \x669A 246-2 sign \x669B 15-25-4 sign \x669C 13-1456-5 sign \x669D 134-13456-2 sign \x669E 13-246-4 sign \x669F 123-2456-4 sign \x66A0 13-146-4 sign \x66A1 12346-4 sign \x66A2 12-1346-5 sign \x66A3 245-16-5 sign \x66A4 1235-146-5 sign \x66A5 2345-5 sign \x66A6 14-16-5 sign \x66A7 2456-5 sign \x66A8 13-16-5 sign \x66A9 13-1246-5 sign \x66AA 134-136-4 sign \x66AB 1-1236-5 sign \x66AC 15-346-5 sign \x66AD 1235-146-5 sign \x66AE 134-34-5 sign \x66AF 134-126-5 sign \x66B0 245-12346-3 sign \x66B1 1345-16-5 sign \x66B2 1-1346-3 sign \x66B3 1235-1246-5 sign \x66B4 135-146-5 sign \x66B5 1235-1236-4 sign \x66B6 15-45-2 sign \x66B7 12-12456-2 sign \x66B8 14-246-2 sign \x66B9 15-2345-3 sign \x66BA 145-1236-5 sign \x66BB 13-13456-4 sign \x66BC 1234-346-3 sign \x66BD 14-1456-2 sign \x66BE 124-123456-3 sign \x66BF 15-16-4 sign \x66C0 16-5 sign \x66C1 13-16-5 sign \x66C2 1235-456-5 sign \x66C3 124-2456-5 sign \x66C4 346-5 sign \x66C5 346-5 sign \x66C6 14-16-5 sign \x66C7 124-1236-2 sign \x66C8 124-12346-2 sign \x66C9 15-246-4 sign \x66CA 12345-356-5 sign \x66CB 245-1456-4 sign \x66CC 1-146-5 sign \x66CD 1235-146-5 sign \x66CE 16-5 sign \x66CF 15-46-4 sign \x66D0 15-13456-3 sign \x66D1 15-136-3 sign \x66D2 13-246-4 sign \x66D3 135-146-5 sign \x66D4 13-13456-5 sign \x66D5 2345-5 sign \x66D6 2456-5 sign \x66D7 346-5 sign \x66D8 1245-34-2 sign \x66D9 24-34-5 sign \x66DA 134-1356-2 sign \x66DB 15-256-3 sign \x66DC 246-5 sign \x66DD 1234-34-5 sign \x66DE 14-16-5 sign \x66DF 12-136-2 sign \x66E0 123-456-5 sign \x66E1 145-346-2 sign \x66E3 2345-5 sign \x66E4 1235-25-5 sign \x66E5 14-34-2 sign \x66E6 15-16-3 sign \x66E7 1245-12346-2 sign \x66E8 14-12346-2 sign \x66E9 1345-1346-4 sign \x66EA 14-25-4 sign \x66EB 14-12456-2 sign \x66EC 24-2456-5 sign \x66ED 124-1346-4 sign \x66EE 2345-4 sign \x66EF 12-34-2 sign \x66F0 236-3 sign \x66F1 236-3 sign \x66F2 245-1256-4 sign \x66F3 16-5 sign \x66F4 13-1356-5 sign \x66F5 16-5 sign \x66F6 1235-34-3 sign \x66F7 1235-2346-2 sign \x66F8 24-34-3 sign \x66F9 245-146-2 sign \x66FA 245-146-2 sign \x66FC 134-1236-5 sign \x66FD 245-1356-3 sign \x66FE 245-1356-2 sign \x66FF 124-16-5 sign \x6700 125-1246-5 sign \x6701 245-1236-4 sign \x6702 15-1256-5 sign \x6703 1235-1246-5 sign \x6704 1456-5 sign \x6705 245-346-5 sign \x6706 12345-136-3 sign \x6707 1234-16-2 sign \x6708 236-5 sign \x6709 234-4 sign \x670A 13-12456-4 sign \x670B 1234-1356-2 sign \x670C 135-1236-3 sign \x670D 12345-34-2 sign \x670E 14-13456-2 sign \x670F 12345-356-4 sign \x6710 245-1256-2 sign \x6712 1345-1256-5 sign \x6713 124-246-4 sign \x6714 24-25-5 sign \x6715 1-136-5 sign \x6716 14-1346-4 sign \x6717 14-1346-4 sign \x6718 13-45-3 sign \x6719 134-13456-2 sign \x671A 1235-456-3 sign \x671B 456-5 sign \x671C 124-123456-3 sign \x671D 12-146-2 sign \x671E 13-16-3 sign \x671F 245-16-2 sign \x6720 13456-3 sign \x6721 125-12346-3 sign \x6722 456-5 sign \x6723 124-12346-2 sign \x6724 14-1346-4 sign \x6726 134-1356-2 sign \x6727 14-12346-2 sign \x6728 134-34-5 sign \x6729 145-1356-4 sign \x672A 1246-5 sign \x672B 134-126-5 sign \x672C 135-136-4 sign \x672D 1-345-2 sign \x672E 1-34-2 sign \x672F 24-34-5 sign \x6731 1-34-3 sign \x6732 1245-136-2 sign \x6733 135-345-3 sign \x6734 1234-34-2 sign \x6735 145-25-4 sign \x6736 145-25-4 sign \x6737 145-146-3 sign \x6738 14-16-5 sign \x6739 245-234-2 sign \x673A 13-16-3 sign \x673B 13-234-3 sign \x673C 135-16-4 sign \x673D 15-234-4 sign \x673E 124-13456-2 sign \x673F 245-156-5 sign \x6740 24-345-3 sign \x6742 125-345-2 sign \x6743 245-45-2 sign \x6744 245-2345-3 sign \x6745 1256-2 sign \x6746 13-1236-3 sign \x6747 34-3 sign \x6748 12-345-3 sign \x6749 24-1236-3 sign \x674A 15-256-2 sign \x674B 12345-1236-2 sign \x674C 34-5 sign \x674D 125-156-4 sign \x674E 14-16-4 sign \x674F 15-13456-5 sign \x6750 245-2456-2 sign \x6751 245-123456-3 sign \x6752 1245-136-5 sign \x6753 24-146-2 sign \x6754 124-25-3 sign \x6755 145-16-5 sign \x6756 1-1346-5 sign \x6757 134-1346-2 sign \x6758 12-156-5 sign \x6759 16-5 sign \x675A 13-34-4 sign \x675B 13-12346-3 sign \x675C 145-34-5 sign \x675D 1-156-5 sign \x675E 245-16-4 sign \x675F 24-34-5 sign \x6760 13-1346-3 sign \x6761 124-246-2 sign \x6765 14-2456-2 sign \x6767 134-1346-2 sign \x6768 46-2 sign \x6769 134-345-5 sign \x676A 134-246-4 sign \x676B 15-156-5 sign \x676C 45-2 sign \x676D 1235-1346-2 sign \x676E 12345-356-5 sign \x676F 135-356-3 sign \x6770 13-346-2 sign \x6771 145-12346-3 sign \x6772 13-146-4 sign \x6773 246-4 sign \x6774 15-2345-3 sign \x6775 12-34-4 sign \x6776 12-123456-3 sign \x6777 1234-345-2 sign \x6778 24-34-3 sign \x6779 1235-35-5 sign \x677A 15-1456-3 sign \x677B 12-12356-4 sign \x677C 1-34-5 sign \x677D 12-12356-4 sign \x677E 15-12346-3 sign \x677F 135-1236-4 sign \x6780 15-12346-3 sign \x6781 13-16-2 sign \x6782 236-5 sign \x6783 13-1456-5 sign \x6784 13-12356-5 sign \x6785 13-16-3 sign \x6786 134-146-2 sign \x6787 1234-16-2 sign \x6788 135-16-5 sign \x6789 456-4 sign \x678A 1346-5 sign \x678B 12345-1346-3 sign \x678C 12345-136-2 sign \x678D 16-5 sign \x678E 12345-34-2 sign \x678F 1345-1236-2 sign \x6790 15-16-3 sign \x6791 1235-34-5 sign \x6792 23456-2 sign \x6793 145-12356-4 sign \x6794 15-256-2 sign \x6795 1-136-4 sign \x6796 246-3 sign \x6797 14-1456-2 sign \x6798 1245-1246-5 sign \x6799 2346-2 sign \x679A 134-356-2 sign \x679B 1-146-5 sign \x679C 13-25-4 sign \x679D 1-156-3 sign \x679E 245-12346-3 sign \x679F 256-5 sign \x67A1 145-12356-4 sign \x67A2 24-34-3 sign \x67A3 125-146-4 sign \x67A5 14-16-5 sign \x67A7 13-2345-5 sign \x67A8 12-1356-2 sign \x67AA 245-46-3 sign \x67AB 12345-1356-3 sign \x67AC 1345-1236-2 sign \x67AD 15-246-3 sign \x67AE 15-2345-3 sign \x67AF 123-34-3 sign \x67B0 1234-13456-2 sign \x67B1 16-2 sign \x67B2 15-16-4 sign \x67B3 13-16-4 sign \x67B4 13-2356-4 sign \x67B5 15-246-3 sign \x67B6 13-23456-5 sign \x67B7 13-23456-3 sign \x67B8 13-12356-4 sign \x67B9 12345-34-2 sign \x67BA 134-126-5 sign \x67BB 16-5 sign \x67BC 346-5 sign \x67BD 346-5 sign \x67BE 24-156-5 sign \x67BF 1345-346-5 sign \x67C0 135-16-4 sign \x67C1 145-25-5 sign \x67C2 16-2 sign \x67C3 14-13456-2 sign \x67C4 135-13456-4 sign \x67C5 1345-16-4 sign \x67C6 14-345-3 sign \x67C7 1235-2346-2 sign \x67C8 1234-1236-2 sign \x67C9 12345-1236-2 sign \x67CA 1-12346-3 sign \x67CB 145-2456-5 sign \x67CC 245-156-2 sign \x67CD 46-3 sign \x67CE 12345-34-3 sign \x67CF 135-126-2 sign \x67D0 134-12356-4 sign \x67D1 13-1236-3 sign \x67D2 245-16-3 sign \x67D3 1245-1236-4 sign \x67D4 1245-12356-2 sign \x67D5 134-146-5 sign \x67D6 1-146-3 sign \x67D7 15-12346-3 sign \x67D8 1-2346-5 sign \x67D9 15-23456-2 sign \x67DA 234-5 sign \x67DB 24-136-3 sign \x67DC 13-1246-5 sign \x67DD 124-25-5 sign \x67DE 125-25-5 sign \x67DF 1345-1236-2 sign \x67E0 1345-13456-2 sign \x67E1 235-4 sign \x67E2 145-16-4 sign \x67E3 1-156-2 sign \x67E4 1-345-3 sign \x67E5 12-345-2 sign \x67E6 145-1236-5 sign \x67E7 13-34-3 sign \x67E9 13-234-5 sign \x67EA 146-3 sign \x67EB 12345-34-2 sign \x67EC 13-2345-4 sign \x67ED 135-126-3 sign \x67EE 145-25-5 sign \x67EF 123-2346-3 sign \x67F0 1345-2456-5 sign \x67F1 1-34-5 sign \x67F2 135-16-5 sign \x67F3 14-234-4 sign \x67F4 12-2456-2 sign \x67F5 1-345-5 sign \x67F6 15-156-5 sign \x67F7 12-34-5 sign \x67F8 1234-356-3 sign \x67F9 24-156-5 sign \x67FA 13-2356-4 sign \x67FB 12-345-2 sign \x67FC 246-4 sign \x67FD 12-1356-3 sign \x67FE 13-234-5 sign \x67FF 24-156-5 sign \x6800 1-156-3 sign \x6801 14-234-4 sign \x6802 134-356-2 sign \x6804 1245-12346-2 sign \x6805 1-345-5 sign \x6807 135-246-3 sign \x6808 1-1236-5 sign \x6809 13-346-2 sign \x680A 14-12346-2 sign \x680B 145-12346-5 sign \x680C 14-34-2 sign \x680E 14-16-5 sign \x680F 14-1236-2 sign \x6810 235-4 sign \x6811 24-34-5 sign \x6812 15-256-2 sign \x6813 24-12456-3 sign \x6814 245-16-5 sign \x6815 1-136-3 sign \x6816 245-16-3 sign \x6817 14-16-5 sign \x6818 16-2 sign \x6819 15-46-2 sign \x681A 1-136-5 sign \x681B 14-16-5 sign \x681C 15-34-5 sign \x681D 123-2356-5 sign \x681E 123-1236-3 sign \x681F 135-13456-3 sign \x6820 1245-136-4 sign \x6821 15-246-5 sign \x6822 135-126-2 sign \x6823 1245-136-4 sign \x6824 135-13456-5 sign \x6825 125-156-3 sign \x6826 12-12356-2 sign \x6827 16-5 sign \x6828 13-346-2 sign \x6829 15-1256-4 sign \x682A 1-34-3 sign \x682B 125-123456-5 sign \x682C 125-1246-5 sign \x682D 156-2 sign \x682E 156-4 sign \x682F 1256-5 sign \x6830 12345-345-2 sign \x6831 13-12346-4 sign \x6832 123-146-4 sign \x6833 14-146-4 sign \x6834 1-1236-3 sign \x6835 14-346-5 sign \x6837 46-5 sign \x6838 1235-2346-2 sign \x6839 13-136-3 sign \x683A 16-5 sign \x683B 12-156-5 sign \x683C 13-2346-2 sign \x683D 125-2456-3 sign \x683E 14-12456-2 sign \x683F 12345-34-2 sign \x6840 13-346-2 sign \x6841 1235-1356-2 sign \x6842 13-1246-5 sign \x6843 124-146-2 sign \x6844 13-456-5 sign \x6845 1246-2 sign \x6846 123-456-3 sign \x6847 1245-34-2 sign \x6848 1236-5 sign \x6849 1236-5 sign \x684A 13-45-5 sign \x684B 16-2 sign \x684C 1-25-3 sign \x684D 123-34-3 sign \x684E 1-156-5 sign \x684F 245-235-2 sign \x6850 124-12346-2 sign \x6851 15-1346-3 sign \x6852 15-1346-3 sign \x6853 1235-12456-2 sign \x6854 13-346-2 sign \x6855 13-234-5 sign \x6856 15-236-5 sign \x6857 145-25-5 sign \x6858 1-1246-5 sign \x6859 1256-2 sign \x685A 125-1236-4 sign \x685C 13456-3 sign \x685F 1-1236-5 sign \x6860 23456-3 sign \x6861 1345-146-5 sign \x6862 1-136-3 sign \x6863 145-1346-4 sign \x6864 245-16-3 sign \x6865 245-246-2 sign \x6866 1235-35-2 sign \x6867 123-2356-5 sign \x6868 13-46-4 sign \x6869 1-456-3 sign \x686A 15-256-2 sign \x686B 15-25-3 sign \x686C 24-345-3 sign \x686D 1-136-3 sign \x686E 135-356-3 sign \x686F 124-13456-3 sign \x6870 123-2356-5 sign \x6871 13-13456-5 sign \x6872 135-126-2 sign \x6873 135-136-5 sign \x6874 12345-34-2 sign \x6875 1245-1246-4 sign \x6876 124-12346-4 sign \x6877 13-236-2 sign \x6878 15-16-3 sign \x6879 14-1346-2 sign \x687A 14-234-4 sign \x687B 12345-1356-3 sign \x687C 245-16-3 sign \x687D 123456-4 sign \x687E 13-256-3 sign \x687F 13-1236-4 sign \x6880 245-34-5 sign \x6881 14-46-2 sign \x6882 245-234-2 sign \x6883 124-13456-4 sign \x6884 234-4 sign \x6885 134-356-2 sign \x6886 135-1346-3 sign \x6887 14-12346-5 sign \x6888 1234-1356-3 sign \x6889 1-456-3 sign \x688A 1-2346-2 sign \x688B 15-45-3 sign \x688C 124-34-2 sign \x688D 125-146-5 sign \x688E 146-3 sign \x688F 13-34-5 sign \x6890 135-16-5 sign \x6891 145-16-2 sign \x6892 1235-1236-2 sign \x6893 125-156-4 sign \x6894 1-156-3 sign \x6895 1245-136-5 sign \x6896 135-356-5 sign \x6897 13-1356-4 sign \x6898 13-2345-5 sign \x6899 1235-12456-5 sign \x689A 12456-4 sign \x689B 1345-25-2 sign \x689C 13-23456-2 sign \x689D 124-246-2 sign \x689E 13-16-5 sign \x689F 15-246-3 sign \x68A0 14-1256-4 sign \x68A1 123-12456-4 sign \x68A2 24-146-3 sign \x68A3 245-136-2 sign \x68A4 12345-136-2 sign \x68A5 15-12346-3 sign \x68A6 134-1356-5 sign \x68A7 34-2 sign \x68A8 14-16-2 sign \x68A9 14-16-2 sign \x68AA 145-12356-5 sign \x68AB 245-136-3 sign \x68AC 13456-4 sign \x68AD 15-25-3 sign \x68AE 13-1256-2 sign \x68AF 124-16-3 sign \x68B0 15-346-5 sign \x68B1 123-123456-4 sign \x68B2 1-25-2 sign \x68B3 24-34-3 sign \x68B4 12-1236-3 sign \x68B5 12345-1236-5 sign \x68B6 1246-4 sign \x68B7 13-13456-5 sign \x68B8 14-16-2 sign \x68B9 135-1456-3 sign \x68BC 124-146-2 sign \x68BD 1-156-5 sign \x68BE 14-2456-2 sign \x68BF 14-2345-2 sign \x68C0 13-2345-4 sign \x68C1 1-25-2 sign \x68C2 14-13456-2 sign \x68C3 14-16-2 sign \x68C4 245-16-5 sign \x68C5 135-13456-5 sign \x68C6 1-123456-3 sign \x68C7 245-12346-3 sign \x68C8 245-2345-5 sign \x68C9 134-2345-2 sign \x68CA 245-16-2 sign \x68CB 245-16-2 sign \x68CC 245-2456-4 sign \x68CD 13-123456-5 sign \x68CE 12-1236-2 sign \x68CF 124-2346-5 sign \x68D0 12345-356-4 sign \x68D1 1234-2456-2 sign \x68D2 135-1346-5 sign \x68D3 1234-12356-4 sign \x68D4 1235-123456-3 sign \x68D5 125-12346-3 sign \x68D6 12-1356-2 sign \x68D7 125-146-4 sign \x68D8 13-16-2 sign \x68D9 14-16-5 sign \x68DA 1234-1356-2 sign \x68DB 1256-5 sign \x68DC 1256-5 sign \x68DD 13-34-5 sign \x68DE 1235-123456-2 sign \x68DF 145-12346-5 sign \x68E0 124-1346-2 sign \x68E1 13-1346-3 sign \x68E2 456-4 sign \x68E3 145-16-5 sign \x68E4 15-16-2 sign \x68E5 12345-1236-2 sign \x68E6 12-1356-3 sign \x68E7 1-1236-5 sign \x68E8 245-16-4 sign \x68E9 45-3 sign \x68EA 2345-4 sign \x68EB 1256-5 sign \x68EC 245-45-3 sign \x68ED 16-5 sign \x68EE 15-136-3 sign \x68EF 1245-136-4 sign \x68F0 1-1246-4 sign \x68F1 14-1356-2 sign \x68F2 245-16-3 sign \x68F3 1-25-2 sign \x68F4 12345-34-2 sign \x68F5 123-2346-3 sign \x68F6 14-2456-2 sign \x68F7 125-12356-3 sign \x68F8 125-12356-3 sign \x68F9 1-146-5 sign \x68FA 13-12456-3 sign \x68FB 12345-136-3 sign \x68FC 12345-136-2 sign \x68FD 12-136-3 sign \x68FE 245-235-2 sign \x68FF 1345-346-5 sign \x6900 12456-4 sign \x6901 13-25-4 sign \x6902 14-34-5 sign \x6903 1235-146-2 sign \x6904 13-346-3 sign \x6905 16-4 sign \x6906 12-12356-2 sign \x6907 13-1256-4 sign \x6908 13-1256-2 sign \x6909 12-1356-2 sign \x690A 125-25-2 sign \x690B 14-46-2 sign \x690C 245-46-3 sign \x690D 1-156-2 sign \x690E 1-1246-3 sign \x690F 23456-3 sign \x6910 13-1256-3 sign \x6911 1234-16-2 sign \x6912 13-246-3 sign \x6913 1-25-2 sign \x6914 125-156-3 sign \x6915 135-1456-3 sign \x6916 1234-1356-2 sign \x6917 145-13456-5 sign \x6918 12-34-4 sign \x691C 13-2345-4 sign \x691D 13-1246-3 sign \x691E 15-16-5 sign \x691F 145-34-2 sign \x6920 13-2345-5 sign \x6924 14-25-2 sign \x6925 1-156-3 sign \x692A 1234-1356-5 sign \x692B 1-1236-4 sign \x692D 124-25-4 sign \x692E 15-136-3 sign \x692F 145-25-4 sign \x6930 346-2 sign \x6931 12345-12356-5 sign \x6932 1246-4 sign \x6933 1246-3 sign \x6934 145-12456-5 sign \x6935 13-23456-4 sign \x6936 125-12346-3 sign \x6937 13-2345-3 sign \x6938 16-2 sign \x6939 1-136-3 sign \x693A 15-16-2 sign \x693B 2345-5 sign \x693C 2345-4 sign \x693D 12-12456-2 sign \x693E 13-2345-3 sign \x693F 12-123456-3 sign \x6940 1256-4 sign \x6941 123-2346-5 sign \x6942 12-345-2 sign \x6943 25-5 sign \x6944 1234-2345-2 sign \x6945 135-16-5 sign \x6946 246-3 sign \x6947 1235-25-5 sign \x6948 15-1256-3 sign \x6949 1245-25-5 sign \x694A 46-2 sign \x694B 14-345-5 sign \x694C 2345-2 sign \x694D 135-136-4 sign \x694E 1235-123456-2 sign \x694F 123-1246-2 sign \x6950 13-346-5 sign \x6951 123-1246-2 sign \x6952 15-156-3 sign \x6953 12345-1356-3 sign \x6954 15-346-5 sign \x6955 124-25-4 sign \x6956 13-16-2 sign \x6957 13-2345-5 sign \x6958 134-34-5 sign \x6959 134-146-5 sign \x695A 12-34-4 sign \x695B 1235-34-5 sign \x695C 1235-34-2 sign \x695D 14-2345-5 sign \x695E 14-1356-5 sign \x695F 124-13456-2 sign \x6960 1345-1236-2 sign \x6961 1256-2 sign \x6962 234-2 sign \x6963 134-356-2 sign \x6964 15-12346-4 sign \x6965 15-45-5 sign \x6966 15-45-5 sign \x6967 13456-3 sign \x6968 1-136-3 sign \x6969 1234-2345-2 sign \x696A 346-5 sign \x696B 13-16-2 sign \x696C 13-346-3 sign \x696D 346-5 sign \x696E 12-34-4 sign \x696F 24-123456-4 sign \x6970 1256-2 sign \x6971 245-12356-5 sign \x6972 1246-3 sign \x6973 134-356-2 sign \x6974 145-16-5 sign \x6975 13-16-2 sign \x6976 13-346-2 sign \x6977 123-2456-4 sign \x6978 245-234-3 sign \x6979 13456-2 sign \x697A 1245-12356-2 sign \x697B 1235-1356-2 sign \x697C 14-12356-2 sign \x697D 14-2346-5 sign \x6980 1234-1456-4 sign \x6982 13-2456-5 sign \x6983 135-345-1 sign \x6984 14-1236-4 sign \x6985 256-2 sign \x6986 1256-2 sign \x6987 12-136-5 sign \x6988 14-1256-2 sign \x6989 13-1256-4 sign \x698D 15-346-5 sign \x698E 13-23456-4 sign \x698F 16-5 sign \x6990 1-1236-4 sign \x6991 12345-34-2 sign \x6992 1345-2456-5 sign \x6993 134-16-5 sign \x6994 14-1346-2 sign \x6995 1245-12346-2 sign \x6996 13-34-4 sign \x6997 13-2345-5 sign \x6998 13-1256-4 sign \x6999 124-345-4 sign \x699A 246-4 sign \x699B 1-136-3 sign \x699C 135-1346-4 sign \x699D 24-345-3 sign \x699E 45-2 sign \x699F 125-156-4 sign \x69A0 134-13456-2 sign \x69A1 15-34-5 sign \x69A2 13-23456-5 sign \x69A3 246-2 sign \x69A4 13-346-2 sign \x69A5 1235-456-4 sign \x69A6 13-1236-5 sign \x69A7 12345-356-4 sign \x69A8 1-345-5 sign \x69A9 245-2345-2 sign \x69AA 134-345-5 sign \x69AB 15-123456-4 sign \x69AC 45-2 sign \x69AD 15-346-5 sign \x69AE 1245-12346-2 sign \x69AF 24-156-2 sign \x69B0 1-156-3 sign \x69B1 245-1246-3 sign \x69B2 256-2 sign \x69B3 124-13456-2 sign \x69B4 14-234-2 sign \x69B5 1245-12346-2 sign \x69B6 124-1346-2 sign \x69B7 245-236-5 sign \x69B8 1-2456-3 sign \x69B9 15-156-3 sign \x69BA 24-1356-5 sign \x69BB 124-345-5 sign \x69BC 123-2346-5 sign \x69BD 15-16-3 sign \x69BE 13-34-5 sign \x69BF 245-16-3 sign \x69C0 13-146-4 sign \x69C1 13-146-4 sign \x69C2 15-123456-3 sign \x69C3 1234-1236-2 sign \x69C4 124-146-3 sign \x69C5 13-2346-2 sign \x69C6 15-256-2 sign \x69C7 145-2345-3 sign \x69C8 1245-34-5 sign \x69C9 13-16-2 sign \x69CA 24-25-5 sign \x69CB 13-12356-5 sign \x69CC 12-1246-2 sign \x69CD 245-46-3 sign \x69CE 1-345-5 sign \x69CF 245-2345-4 sign \x69D0 1235-2356-2 sign \x69D1 134-356-2 sign \x69D2 15-1256-5 sign \x69D3 13-1346-5 sign \x69D4 13-146-3 sign \x69D5 1-25-3 sign \x69D6 124-25-5 sign \x69D8 46-5 sign \x69D9 145-2345-3 sign \x69DA 13-23456-4 sign \x69DB 13-2345-5 sign \x69DC 125-1246-5 sign \x69DF 135-1456-3 sign \x69E0 1-34-3 sign \x69E2 15-16-2 sign \x69E3 245-16-4 sign \x69E4 14-2345-2 sign \x69E5 1246-5 sign \x69E6 235-2 sign \x69E7 13-2345-5 sign \x69E8 13-25-4 sign \x69E9 13-2456-5 sign \x69EA 13-2456-5 sign \x69EB 124-12456-2 sign \x69EC 1235-35-5 sign \x69ED 245-16-3 sign \x69EE 15-136-3 sign \x69EF 245-1246-3 sign \x69F0 135-1356-5 sign \x69F1 234-4 sign \x69F2 1235-34-2 sign \x69F3 13-46-4 sign \x69F4 1235-34-5 sign \x69F5 1235-12456-5 sign \x69F6 123-1246-5 sign \x69F7 1345-346-5 sign \x69F8 1345-346-5 sign \x69F9 13-146-3 sign \x69FA 123-1346-3 sign \x69FB 13-1246-3 sign \x69FC 13-1246-3 sign \x69FD 245-146-2 sign \x69FE 134-1236-2 sign \x69FF 13-1456-4 sign \x6A00 145-16-5 sign \x6A01 1-456-3 sign \x6A02 14-2346-5 sign \x6A03 14-1346-2 sign \x6A04 12-136-2 sign \x6A05 245-12346-3 sign \x6A06 14-16-2 sign \x6A07 15-234-3 sign \x6A08 245-13456-2 sign \x6A09 24-456-4 sign \x6A0A 12345-1236-2 sign \x6A0B 124-12346-3 sign \x6A0C 13-12456-5 sign \x6A0D 13-16-3 sign \x6A0E 15-25-3 sign \x6A0F 14-356-4 sign \x6A10 14-34-4 sign \x6A11 14-46-2 sign \x6A12 134-16-5 sign \x6A13 14-12356-2 sign \x6A14 12-146-2 sign \x6A15 15-34-5 sign \x6A16 123-2346-3 sign \x6A17 24-34-3 sign \x6A18 12-1356-3 sign \x6A19 135-246-3 sign \x6A1A 14-34-5 sign \x6A1B 13-234-3 sign \x6A1C 24-34-5 sign \x6A1D 1-345-3 sign \x6A1E 24-34-3 sign \x6A1F 1-1346-3 sign \x6A20 134-136-2 sign \x6A21 134-126-2 sign \x6A22 1345-246-4 sign \x6A23 46-5 sign \x6A24 124-246-2 sign \x6A25 1234-1356-2 sign \x6A26 1-34-5 sign \x6A27 24-345-3 sign \x6A28 15-1256-3 sign \x6A29 245-45-2 sign \x6A2A 1235-1356-2 sign \x6A2B 13-2345-3 sign \x6A2C 245-12346-3 sign \x6A2F 245-46-2 sign \x6A31 13456-3 sign \x6A32 156-5 sign \x6A33 15-1456-2 sign \x6A34 1-156-2 sign \x6A35 245-246-2 sign \x6A36 125-1246-3 sign \x6A37 245-12346-2 sign \x6A38 1234-34-2 sign \x6A39 24-34-5 sign \x6A3A 1235-35-2 sign \x6A3B 123-1246-5 sign \x6A3C 1-136-3 sign \x6A3D 125-123456-3 sign \x6A3E 236-5 sign \x6A3F 1-1236-4 sign \x6A40 15-16-3 sign \x6A41 12-123456-3 sign \x6A42 145-2345-5 sign \x6A43 12345-345-3 sign \x6A44 13-1236-4 sign \x6A45 134-126-2 sign \x6A46 34-4 sign \x6A47 245-246-3 sign \x6A48 1345-146-5 sign \x6A49 14-1456-5 sign \x6A4A 14-234-2 sign \x6A4B 245-246-2 sign \x6A4C 15-2345-5 sign \x6A4D 1245-123456-5 sign \x6A4E 12345-1236-2 sign \x6A4F 1-1236-4 sign \x6A50 124-25-5 sign \x6A51 14-146-4 sign \x6A52 256-2 sign \x6A53 24-123456-5 sign \x6A54 124-1246-2 sign \x6A55 12-1356-3 sign \x6A56 124-1346-2 sign \x6A57 134-1356-2 sign \x6A58 13-1256-2 sign \x6A59 12-1356-2 sign \x6A5A 245-234-3 sign \x6A5B 13-236-2 sign \x6A5C 13-236-2 sign \x6A5D 124-1236-3 sign \x6A5E 1235-1246-5 sign \x6A5F 13-16-3 sign \x6A60 1345-25-4 sign \x6A61 15-46-5 sign \x6A62 124-25-4 sign \x6A63 1345-13456-4 sign \x6A64 1245-1246-4 sign \x6A65 1-34-3 sign \x6A66 12-456-2 sign \x6A67 125-1356-3 sign \x6A68 12345-136-2 sign \x6A69 245-235-2 sign \x6A6A 1245-1236-4 sign \x6A6B 1235-1356-2 sign \x6A6C 245-136-2 sign \x6A6D 13-34-3 sign \x6A6E 14-234-4 sign \x6A6F 14-146-5 sign \x6A70 13-146-3 sign \x6A71 12-34-2 sign \x6A76 13-16-4 sign \x6A77 145-12356-3 sign \x6A79 14-34-4 sign \x6A7C 45-2 sign \x6A7D 124-345-5 sign \x6A7E 24-34-3 sign \x6A7F 13-46-3 sign \x6A80 124-1236-2 sign \x6A81 14-1456-4 sign \x6A82 1345-12346-2 sign \x6A83 1456-4 sign \x6A84 15-16-2 sign \x6A85 15-1246-5 sign \x6A86 24-1236-3 sign \x6A87 125-1246-3 sign \x6A88 15-45-2 sign \x6A89 12-1356-3 sign \x6A8A 13-1236-5 sign \x6A8B 13-1256-3 sign \x6A8C 125-1246-5 sign \x6A8D 16-5 sign \x6A8E 245-1456-2 sign \x6A8F 1234-34-4 sign \x6A90 2345-2 sign \x6A91 14-356-2 sign \x6A92 12345-1356-3 sign \x6A93 1235-1246-4 sign \x6A94 145-1346-4 sign \x6A95 13-16-5 sign \x6A96 15-1246-5 sign \x6A97 135-126-5 sign \x6A98 135-16-5 sign \x6A99 145-13456-4 sign \x6A9A 12-34-4 sign \x6A9B 1-35-3 sign \x6A9C 123-2356-5 sign \x6A9D 13-16-2 sign \x6A9E 13-346-4 sign \x6A9F 13-23456-4 sign \x6AA0 245-13456-2 sign \x6AA1 1-2346-5 sign \x6AA2 13-2345-4 sign \x6AA3 245-46-2 sign \x6AA4 145-146-5 sign \x6AA5 16-4 sign \x6AA6 135-246-4 sign \x6AA7 15-12346-3 sign \x6AA8 24-2346-3 sign \x6AA9 14-1456-4 sign \x6AAB 12-345-2 sign \x6AAC 134-1356-2 sign \x6AAD 1456-2 sign \x6AAE 124-146-2 sign \x6AAF 124-2456-2 sign \x6AB0 134-2345-2 sign \x6AB1 245-16-2 sign \x6AB3 135-1456-3 sign \x6AB4 1235-25-5 sign \x6AB5 13-16-5 sign \x6AB6 245-2345-3 sign \x6AB7 134-16-2 sign \x6AB8 1345-13456-2 sign \x6AB9 16-3 sign \x6ABA 13-146-4 sign \x6ABB 13-2345-5 sign \x6ABC 1456-5 sign \x6ABD 156-2 sign \x6ABE 245-13456-4 sign \x6ABF 2345-4 sign \x6AC0 245-16-2 sign \x6AC1 134-16-5 sign \x6AC2 1-146-5 sign \x6AC3 13-1246-5 sign \x6AC4 12-123456-3 sign \x6AC5 13-16-3 sign \x6AC6 123-1246-2 sign \x6AC7 1234-126-2 sign \x6AC8 145-1356-5 sign \x6AC9 12-34-2 sign \x6ACB 134-2345-2 sign \x6ACC 234-3 sign \x6ACD 1-156-5 sign \x6ACE 13-456-5 sign \x6ACF 245-2345-3 sign \x6AD0 14-356-4 sign \x6AD1 14-356-2 sign \x6AD2 15-345-5 sign \x6AD3 14-34-4 sign \x6AD4 14-16-5 sign \x6AD5 245-12456-2 sign \x6AD6 14-1256-2 sign \x6AD7 134-346-5 sign \x6AD8 1235-1246-5 sign \x6AD9 12356-3 sign \x6ADA 14-1256-2 sign \x6ADB 13-346-2 sign \x6ADC 13-146-3 sign \x6ADD 145-34-2 sign \x6ADE 45-2 sign \x6ADF 14-16-5 sign \x6AE0 12345-356-5 sign \x6AE1 1-25-2 sign \x6AE2 15-12356-4 sign \x6AE3 14-2345-2 sign \x6AE5 12-34-2 sign \x6AE7 1-34-3 sign \x6AE8 14-34-2 sign \x6AE9 2345-2 sign \x6AEA 14-16-5 sign \x6AEB 1-34-3 sign \x6AEC 12-136-5 sign \x6AED 13-346-2 sign \x6AEE 2346-5 sign \x6AEF 15-34-3 sign \x6AF0 1235-2356-2 sign \x6AF1 1345-346-5 sign \x6AF2 1256-5 sign \x6AF3 14-12346-2 sign \x6AF4 14-2456-5 sign \x6AF6 15-2345-4 sign \x6AF8 13-1256-4 sign \x6AF9 15-246-3 sign \x6AFA 14-13456-2 sign \x6AFB 13456-3 sign \x6AFC 13-2345-3 sign \x6AFD 1456-4 sign \x6AFE 234-5 sign \x6AFF 13456-2 sign \x6B00 15-46-3 sign \x6B01 1345-12346-2 sign \x6B02 135-126-2 sign \x6B03 12-1236-2 sign \x6B04 14-1236-2 sign \x6B05 13-1256-4 sign \x6B06 24-456-3 sign \x6B07 24-2346-5 sign \x6B08 1246-2 sign \x6B09 245-12346-5 sign \x6B0A 245-45-2 sign \x6B0B 245-1256-2 sign \x6B0E 1256-5 sign \x6B0F 14-25-2 sign \x6B10 14-16-4 sign \x6B11 245-12456-2 sign \x6B12 14-12456-2 sign \x6B13 145-1346-4 sign \x6B14 13-236-2 sign \x6B16 14-1236-4 sign \x6B17 14-1236-2 sign \x6B18 1-34-4 sign \x6B19 14-356-2 sign \x6B1A 14-16-4 sign \x6B1B 135-345-4 sign \x6B1C 1345-1346-2 sign \x6B1D 1256-5 sign \x6B1E 14-13456-2 sign \x6B20 245-2345-5 sign \x6B21 245-156-5 sign \x6B22 1235-12456-3 sign \x6B23 15-1456-3 sign \x6B24 1256-2 sign \x6B25 1235-12456-3 sign \x6B26 245-2345-3 sign \x6B27 12356-3 sign \x6B28 15-1256-3 sign \x6B29 12-146-3 sign \x6B2A 12-34-5 sign \x6B2B 12-156-3 sign \x6B2C 123-2346-2 sign \x6B2D 16-5 sign \x6B2E 13-236-2 sign \x6B2F 15-16-2 sign \x6B30 15-1256-3 sign \x6B31 1235-2346-3 sign \x6B32 1256-5 sign \x6B33 123-2356-5 sign \x6B34 14-1346-2 sign \x6B35 123-12456-4 sign \x6B36 24-25-5 sign \x6B37 15-16-3 sign \x6B38 2456-3 sign \x6B39 16-3 sign \x6B3A 245-16-3 sign \x6B3B 1235-34-3 sign \x6B3C 12-156-4 sign \x6B3D 245-1456-3 sign \x6B3E 123-12456-4 sign \x6B3F 123-1236-4 sign \x6B40 123-12456-4 sign \x6B41 123-1236-4 sign \x6B42 12-12456-2 sign \x6B43 24-345-5 sign \x6B45 1456-3 sign \x6B46 15-1456-3 sign \x6B47 15-346-3 sign \x6B48 1256-2 sign \x6B49 245-2345-5 sign \x6B4A 15-246-3 sign \x6B4B 16-2 sign \x6B4C 13-2346-3 sign \x6B4D 34-3 sign \x6B4E 124-1236-5 sign \x6B4F 13-1456-5 sign \x6B50 12356-3 sign \x6B51 1235-34-3 sign \x6B52 124-16-5 sign \x6B53 1235-12456-3 sign \x6B54 15-1256-3 sign \x6B55 1234-136-3 sign \x6B56 15-16-3 sign \x6B57 15-246-5 sign \x6B58 15-1256-3 sign \x6B59 24-2346-5 sign \x6B5B 14-2345-5 sign \x6B5C 12-34-5 sign \x6B5D 16-5 sign \x6B5E 13-2346-3 sign \x6B5F 1256-2 sign \x6B60 12-25-5 sign \x6B61 1235-12456-3 sign \x6B62 1-156-4 sign \x6B63 1-1356-5 sign \x6B64 245-156-4 sign \x6B65 135-34-5 sign \x6B66 34-4 sign \x6B67 245-16-2 sign \x6B68 135-34-5 sign \x6B69 135-34-5 sign \x6B6A 2356-3 sign \x6B6B 13-1256-5 sign \x6B6C 245-2345-2 sign \x6B6D 12-156-2 sign \x6B6E 15-2346-5 sign \x6B6F 12-156-4 sign \x6B70 15-2346-5 sign \x6B71 1-12346-4 sign \x6B72 15-1246-5 sign \x6B73 15-1246-5 sign \x6B74 14-16-5 sign \x6B75 245-25-5 sign \x6B76 1256-2 sign \x6B77 14-16-5 sign \x6B78 13-1246-3 sign \x6B79 145-2456-4 sign \x6B7A 145-2456-4 sign \x6B7B 15-156-4 sign \x6B7C 13-2345-3 sign \x6B7D 1-2346-2 sign \x6B7E 134-126-5 sign \x6B7F 134-126-5 sign \x6B80 246-4 sign \x6B81 134-126-5 sign \x6B82 245-34-2 sign \x6B83 46-3 sign \x6B84 124-2345-4 sign \x6B85 24-1356-3 sign \x6B86 145-2456-5 sign \x6B87 24-1346-3 sign \x6B88 15-1256-5 sign \x6B89 15-256-5 sign \x6B8A 24-34-3 sign \x6B8B 245-1236-2 sign \x6B8C 13-236-2 sign \x6B8D 1234-246-4 sign \x6B8E 245-23456-5 sign \x6B8F 245-234-2 sign \x6B90 15-34-5 sign \x6B91 245-13456-2 sign \x6B92 256-4 sign \x6B93 14-2345-5 sign \x6B94 16-5 sign \x6B95 12345-12356-4 sign \x6B96 1-156-2 sign \x6B97 346-5 sign \x6B98 245-1236-2 sign \x6B99 1235-123456-3 sign \x6B9A 145-1236-3 sign \x6B9B 13-16-2 sign \x6B9C 346-5 sign \x6B9E 256-4 sign \x6B9F 35-5 sign \x6BA0 12-12356-5 sign \x6BA1 135-1456-5 sign \x6BA2 124-16-5 sign \x6BA3 13-1456-4 sign \x6BA4 24-1346-3 sign \x6BA5 1456-2 sign \x6BA6 145-246-3 sign \x6BA7 245-34-5 sign \x6BA8 1235-1246-5 sign \x6BA9 245-12456-5 sign \x6BAA 16-5 sign \x6BAB 145-1236-3 sign \x6BAC 145-34-5 sign \x6BAD 13-46-3 sign \x6BAE 14-2345-5 sign \x6BAF 135-1456-5 sign \x6BB0 145-34-2 sign \x6BB2 13-2345-3 sign \x6BB3 24-34-3 sign \x6BB4 12356-3 sign \x6BB5 145-12456-5 sign \x6BB6 1-34-5 sign \x6BB7 1456-3 sign \x6BB8 245-13456-5 sign \x6BB9 16-5 sign \x6BBA 24-345-3 sign \x6BBB 245-236-5 sign \x6BBC 123-2346-2 sign \x6BBD 246-2 sign \x6BBE 13-256-5 sign \x6BBF 145-2345-5 sign \x6BC0 1235-1246-4 sign \x6BC1 1235-1246-4 sign \x6BC2 13-34-4 sign \x6BC3 245-236-5 sign \x6BC4 13-16-3 sign \x6BC5 16-5 sign \x6BC6 12356-3 sign \x6BC7 1235-1246-4 sign \x6BC8 145-12456-5 sign \x6BC9 16-3 sign \x6BCA 15-246-3 sign \x6BCB 34-2 sign \x6BCC 34-2 sign \x6BCD 134-34-4 sign \x6BCE 134-356-4 sign \x6BCF 134-356-4 sign \x6BD0 2456-4 sign \x6BD1 125-25-4 sign \x6BD2 145-34-2 sign \x6BD3 1256-5 sign \x6BD4 135-16-4 sign \x6BD5 135-16-5 sign \x6BD6 135-16-5 sign \x6BD7 1234-16-2 sign \x6BD8 1234-16-2 sign \x6BD9 135-16-5 sign \x6BDA 12-1236-2 sign \x6BDB 134-146-2 sign \x6BDE 1234-16-2 sign \x6BE0 13-23456-3 sign \x6BE1 1-1236-3 sign \x6BE2 15-2456-3 sign \x6BE3 134-146-5 sign \x6BE4 124-25-5 sign \x6BE5 15-256-2 sign \x6BE6 156-5 sign \x6BE7 1245-12346-2 sign \x6BE8 15-2345-4 sign \x6BE9 13-1256-2 sign \x6BEA 134-34-2 sign \x6BEB 1235-146-2 sign \x6BEC 245-234-2 sign \x6BED 145-12356-5 sign \x6BEF 124-1236-4 sign \x6BF0 1234-356-2 sign \x6BF1 13-1256-2 sign \x6BF2 145-25-2 sign \x6BF3 245-1246-5 sign \x6BF4 135-16-3 sign \x6BF5 15-1236-3 sign \x6BF7 134-146-5 sign \x6BF8 15-1246-3 sign \x6BF9 1256-2 sign \x6BFA 1256-3 sign \x6BFB 124-25-5 sign \x6BFC 1235-2346-2 sign \x6BFD 13-2345-5 sign \x6BFE 124-345-5 sign \x6BFF 15-1236-3 sign \x6C00 14-1256-2 sign \x6C01 134-34-2 sign \x6C02 134-146-2 sign \x6C03 124-12346-2 sign \x6C04 1245-12346-4 sign \x6C05 12-1346-4 sign \x6C06 1234-34-4 sign \x6C07 14-25-2 sign \x6C08 1-1236-3 sign \x6C09 125-146-5 sign \x6C0A 1-1236-3 sign \x6C0B 134-1356-2 sign \x6C0C 14-25-2 sign \x6C0D 245-1256-2 sign \x6C0E 145-346-2 sign \x6C0F 24-156-5 sign \x6C10 145-16-3 sign \x6C11 134-1456-2 sign \x6C12 13-236-2 sign \x6C13 134-1346-2 sign \x6C14 245-16-5 sign \x6C15 1234-346-3 sign \x6C16 1345-2456-4 sign \x6C17 245-16-5 sign \x6C18 145-146-3 sign \x6C19 15-2345-3 sign \x6C1A 12-12456-3 sign \x6C1B 12345-136-3 sign \x6C1C 1245-156-5 sign \x6C1D 1345-356-5 sign \x6C1F 12345-34-2 sign \x6C20 24-136-3 sign \x6C21 145-12346-3 sign \x6C22 245-13456-3 sign \x6C23 245-16-5 sign \x6C24 1456-3 sign \x6C25 15-16-3 sign \x6C26 1235-2456-5 sign \x6C27 46-4 sign \x6C28 1236-3 sign \x6C29 23456-5 sign \x6C2A 123-2346-5 sign \x6C2B 245-13456-3 sign \x6C2C 23456-5 sign \x6C2D 145-12346-3 sign \x6C2E 145-1236-5 sign \x6C2F 14-1256-5 sign \x6C30 245-13456-3 sign \x6C31 46-4 sign \x6C32 256-3 sign \x6C33 256-3 sign \x6C34 24-1246-4 sign \x6C36 1-1356-4 sign \x6C37 135-13456-3 sign \x6C38 235-4 sign \x6C39 145-1346-5 sign \x6C3B 14-2346-5 sign \x6C3C 1345-16-5 sign \x6C3D 124-123456-4 sign \x6C3E 12345-1236-5 sign \x6C3F 13-1246-4 sign \x6C40 124-13456-3 sign \x6C41 1-156-3 sign \x6C42 245-234-2 sign \x6C43 135-1456-3 sign \x6C44 125-2346-5 sign \x6C45 134-2345-4 sign \x6C46 124-123456-4 sign \x6C47 1235-1246-5 sign \x6C48 145-246-3 sign \x6C49 1235-1236-5 sign \x6C4A 12-345-5 sign \x6C4B 1-25-2 sign \x6C4C 12-12456-5 sign \x6C4D 12456-2 sign \x6C4E 12345-1236-5 sign \x6C4F 145-2456-5 sign \x6C50 15-16-5 sign \x6C51 124-25-3 sign \x6C52 134-1346-2 sign \x6C53 245-234-2 sign \x6C54 245-16-5 sign \x6C55 24-1236-5 sign \x6C56 1234-2456-5 sign \x6C57 1235-1236-5 sign \x6C58 245-2345-3 sign \x6C59 34-3 sign \x6C5A 34-3 sign \x6C5B 15-256-5 sign \x6C5C 15-156-5 sign \x6C5D 1245-34-4 sign \x6C5E 13-12346-4 sign \x6C5F 13-46-3 sign \x6C60 12-156-2 sign \x6C61 34-3 sign \x6C64 124-1346-3 sign \x6C65 1-156-3 sign \x6C66 12-156-2 sign \x6C67 245-2345-3 sign \x6C68 134-16-5 sign \x6C69 1256-5 sign \x6C6A 456-3 sign \x6C6B 245-13456-5 sign \x6C6C 13-13456-4 sign \x6C6D 1245-1246-5 sign \x6C6E 13-256-3 sign \x6C6F 1235-12346-2 sign \x6C70 124-2456-5 sign \x6C71 245-45-4 sign \x6C72 13-16-2 sign \x6C73 135-2345-5 sign \x6C74 135-2345-5 sign \x6C75 13-1236-5 sign \x6C76 123456-5 sign \x6C77 1-12346-3 sign \x6C78 12345-1346-3 sign \x6C79 15-235-3 sign \x6C7A 13-236-2 sign \x6C7B 1235-34-4 sign \x6C7D 245-16-5 sign \x6C7E 12345-136-2 sign \x6C7F 15-1256-5 sign \x6C80 15-1256-4 sign \x6C81 245-1456-5 sign \x6C82 16-2 sign \x6C83 25-5 sign \x6C84 256-2 sign \x6C85 45-2 sign \x6C86 1235-1346-2 sign \x6C87 2345-4 sign \x6C88 12-136-2 sign \x6C89 12-136-2 sign \x6C8A 145-1236-5 sign \x6C8B 234-2 sign \x6C8C 145-123456-5 sign \x6C8D 1235-34-5 sign \x6C8E 1235-25-5 sign \x6C8F 245-16-5 sign \x6C90 134-34-5 sign \x6C91 1245-12356-2 sign \x6C92 134-356-2 sign \x6C93 124-345-5 sign \x6C94 134-2345-4 sign \x6C95 34-5 sign \x6C96 12-12346-3 sign \x6C97 124-2345-3 sign \x6C98 135-16-4 sign \x6C99 24-345-3 sign \x6C9A 1-156-4 sign \x6C9B 1234-356-5 sign \x6C9C 1234-1236-5 sign \x6C9D 1-1246-4 sign \x6C9E 125-345-3 sign \x6C9F 13-12356-3 sign \x6CA0 14-234-2 sign \x6CA1 134-356-2 sign \x6CA2 125-2346-2 sign \x6CA3 12345-1356-3 sign \x6CA4 12356-5 sign \x6CA5 14-16-5 sign \x6CA6 14-123456-2 sign \x6CA7 245-1346-3 sign \x6CA8 12345-1356-2 sign \x6CA9 13-1246-3 sign \x6CAA 1235-34-5 sign \x6CAB 134-126-5 sign \x6CAC 134-356-5 sign \x6CAD 24-34-5 sign \x6CAE 13-1256-4 sign \x6CAF 125-1236-4 sign \x6CB0 124-25-3 sign \x6CB1 124-25-2 sign \x6CB2 124-25-2 sign \x6CB3 1235-2346-2 sign \x6CB4 14-16-5 sign \x6CB5 14-16-5 sign \x6CB6 16-2 sign \x6CB7 12345-34-2 sign \x6CB8 12345-356-5 sign \x6CB9 234-2 sign \x6CBA 124-2345-2 sign \x6CBB 1-156-5 sign \x6CBC 1-146-4 sign \x6CBD 13-34-3 sign \x6CBE 1-1236-3 sign \x6CBF 2345-2 sign \x6CC0 15-156-3 sign \x6CC1 123-456-5 sign \x6CC2 13-235-4 sign \x6CC3 13-1256-5 sign \x6CC4 15-346-5 sign \x6CC5 245-234-2 sign \x6CC6 16-3 sign \x6CC7 13-23456-3 sign \x6CC8 1-12346-3 sign \x6CC9 245-45-2 sign \x6CCA 135-126-2 sign \x6CCB 1235-1246-5 sign \x6CCC 134-16-5 sign \x6CCD 135-136-3 sign \x6CCE 1-25-2 sign \x6CCF 12-34-5 sign \x6CD0 14-2346-5 sign \x6CD1 234-4 sign \x6CD2 13-34-3 sign \x6CD3 1235-12346-2 sign \x6CD4 13-1236-3 sign \x6CD5 12345-345-4 sign \x6CD6 134-146-4 sign \x6CD7 15-156-5 sign \x6CD8 1235-34-3 sign \x6CD9 1234-13456-2 sign \x6CDA 245-156-4 sign \x6CDB 12345-1236-5 sign \x6CDC 145-16-5 sign \x6CDD 15-34-5 sign \x6CDE 1345-13456-5 sign \x6CDF 12-1356-3 sign \x6CE0 14-13456-2 sign \x6CE1 1234-146-5 sign \x6CE2 135-126-3 sign \x6CE3 245-16-5 sign \x6CE4 15-156-5 sign \x6CE5 1345-16-2 sign \x6CE6 13-1256-2 sign \x6CE7 236-5 sign \x6CE8 1-34-5 sign \x6CE9 24-1356-3 sign \x6CEA 14-356-5 sign \x6CEB 15-45-5 sign \x6CEC 15-236-5 sign \x6CED 12345-34-2 sign \x6CEE 1234-1236-5 sign \x6CEF 134-1456-4 sign \x6CF0 124-2456-5 sign \x6CF1 46-3 sign \x6CF2 13-16-4 sign \x6CF3 235-4 sign \x6CF4 13-12456-5 sign \x6CF5 135-1356-5 sign \x6CF6 15-236-2 sign \x6CF7 14-12346-2 sign \x6CF8 14-34-2 sign \x6CF9 135-345-1 sign \x6CFA 14-25-5 sign \x6CFB 15-346-5 sign \x6CFC 1234-126-3 sign \x6CFD 125-2346-2 sign \x6CFE 13-13456-3 sign \x6CFF 1456-2 sign \x6D00 1-12356-3 sign \x6D01 13-16-2 sign \x6D02 16-5 sign \x6D03 1235-1246-3 sign \x6D04 1235-1246-2 sign \x6D05 125-1246-4 sign \x6D06 12-1356-2 sign \x6D07 1456-3 sign \x6D08 1246-2 sign \x6D09 1235-12356-5 sign \x6D0A 13-2345-5 sign \x6D0B 46-2 sign \x6D0C 14-346-5 sign \x6D0D 15-156-5 sign \x6D0E 13-16-5 sign \x6D0F 156-2 sign \x6D10 15-13456-2 sign \x6D11 12345-34-2 sign \x6D12 15-345-4 sign \x6D13 15-25-4 sign \x6D14 1-156-4 sign \x6D15 1456-3 sign \x6D16 34-2 sign \x6D17 15-16-4 sign \x6D18 123-146-4 sign \x6D19 1-34-3 sign \x6D1A 13-46-5 sign \x6D1B 14-25-5 sign \x6D1D 1236-5 sign \x6D1E 145-12346-5 sign \x6D1F 16-2 sign \x6D20 134-12356-2 sign \x6D21 14-356-4 sign \x6D22 16-3 sign \x6D23 134-16-4 sign \x6D24 245-45-2 sign \x6D25 13-1456-3 sign \x6D26 134-126-5 sign \x6D27 1246-4 sign \x6D28 15-246-2 sign \x6D29 15-346-5 sign \x6D2A 1235-12346-2 sign \x6D2B 15-1256-5 sign \x6D2C 24-25-5 sign \x6D2D 123-456-3 sign \x6D2E 124-146-3 sign \x6D2F 245-346-5 sign \x6D30 13-1256-5 sign \x6D31 156-4 sign \x6D32 1-12356-3 sign \x6D33 1245-34-2 sign \x6D34 1234-13456-2 sign \x6D35 15-256-2 sign \x6D36 15-235-3 sign \x6D37 1-156-5 sign \x6D38 13-456-3 sign \x6D39 45-2 sign \x6D3A 134-13456-2 sign \x6D3B 1235-25-2 sign \x6D3C 35-3 sign \x6D3D 245-23456-5 sign \x6D3E 1234-2456-5 sign \x6D3F 34-3 sign \x6D40 245-1256-4 sign \x6D41 14-234-2 sign \x6D42 16-5 sign \x6D43 13-23456-2 sign \x6D44 13-13456-5 sign \x6D45 245-2345-4 sign \x6D46 13-46-3 sign \x6D47 13-246-3 sign \x6D48 12-1356-2 sign \x6D49 24-156-3 sign \x6D4A 1-25-2 sign \x6D4B 245-2346-5 sign \x6D4D 123-2356-5 sign \x6D4E 13-16-5 sign \x6D4F 14-234-2 sign \x6D50 12-1236-4 sign \x6D51 1235-123456-2 sign \x6D52 1235-34-4 sign \x6D53 1345-12346-2 sign \x6D54 15-256-2 sign \x6D55 13-1456-5 sign \x6D56 14-346-5 sign \x6D57 245-234-2 sign \x6D58 1246-4 sign \x6D59 1-2346-5 sign \x6D5A 13-256-5 sign \x6D5B 1235-1236-5 sign \x6D5C 135-1346-3 sign \x6D5D 134-1346-2 sign \x6D5E 1-25-2 sign \x6D5F 234-2 sign \x6D60 15-16-3 sign \x6D61 135-126-2 sign \x6D62 145-12356-5 sign \x6D63 1235-12456-4 sign \x6D64 1235-12346-2 sign \x6D65 16-5 sign \x6D66 1234-34-4 sign \x6D67 13456-4 sign \x6D68 14-1236-4 sign \x6D69 1235-146-5 sign \x6D6A 14-1346-5 sign \x6D6B 1235-1236-4 sign \x6D6C 14-16-4 sign \x6D6D 13-1356-3 sign \x6D6E 12345-34-2 sign \x6D6F 34-2 sign \x6D70 14-2345-5 sign \x6D71 12-123456-2 sign \x6D72 12345-1356-2 sign \x6D73 16-5 sign \x6D74 1256-5 sign \x6D75 124-12346-2 sign \x6D76 14-146-2 sign \x6D77 1235-2456-4 sign \x6D78 13-1456-5 sign \x6D79 13-23456-2 sign \x6D7A 12-12346-3 sign \x6D7B 12346-4 sign \x6D7C 134-356-4 sign \x6D7D 15-1246-3 sign \x6D7E 12-1356-3 sign \x6D7F 1234-356-5 sign \x6D80 15-2345-5 sign \x6D81 24-136-5 sign \x6D82 124-34-2 sign \x6D83 123-123456-5 sign \x6D84 1234-1456-3 sign \x6D85 1345-346-5 sign \x6D86 1235-1236-5 sign \x6D87 13-13456-3 sign \x6D88 15-246-3 sign \x6D89 24-2346-5 sign \x6D8A 1345-2345-4 sign \x6D8B 124-34-3 sign \x6D8C 235-4 sign \x6D8D 15-246-3 sign \x6D8E 15-2345-2 sign \x6D8F 124-13456-4 sign \x6D90 2346-2 sign \x6D91 15-12356-3 sign \x6D92 124-123456-3 sign \x6D93 13-45-3 sign \x6D94 245-136-2 sign \x6D95 124-16-5 sign \x6D96 14-16-5 sign \x6D97 24-1246-5 sign \x6D98 15-156-5 sign \x6D99 14-356-5 sign \x6D9A 24-1246-5 sign \x6D9B 124-146-2 sign \x6D9C 145-34-2 sign \x6D9D 14-146-2 sign \x6D9E 14-2456-2 sign \x6D9F 14-2345-2 sign \x6DA0 1246-2 sign \x6DA1 25-3 sign \x6DA2 256-2 sign \x6DA3 1235-12456-5 sign \x6DA4 145-16-2 sign \x6DA6 1245-123456-5 sign \x6DA7 13-2345-5 sign \x6DA8 1-1346-4 sign \x6DA9 15-2346-5 sign \x6DAA 12345-34-2 sign \x6DAB 13-12456-5 sign \x6DAC 15-13456-5 sign \x6DAD 24-12356-5 sign \x6DAE 24-12456-5 sign \x6DAF 23456-2 sign \x6DB0 12-25-5 sign \x6DB1 1-1346-5 sign \x6DB2 16-5 sign \x6DB3 123-12346-3 sign \x6DB4 12456-4 sign \x6DB5 1235-1236-2 sign \x6DB6 124-25-3 sign \x6DB7 145-12346-3 sign \x6DB8 1235-2346-2 sign \x6DB9 25-3 sign \x6DBA 13-1256-3 sign \x6DBB 24-2346-5 sign \x6DBC 14-46-2 sign \x6DBD 1235-123456-3 sign \x6DBE 124-345-5 sign \x6DBF 1-25-2 sign \x6DC0 145-2345-5 sign \x6DC1 245-346-5 sign \x6DC2 145-2346-2 sign \x6DC3 13-45-5 sign \x6DC4 125-156-3 sign \x6DC5 15-16-3 sign \x6DC6 246-2 sign \x6DC7 245-16-2 sign \x6DC8 13-34-4 sign \x6DC9 13-25-4 sign \x6DCA 1235-1236-5 sign \x6DCB 14-1456-2 sign \x6DCC 124-1346-4 sign \x6DCD 1-12356-3 sign \x6DCE 1234-1356-4 sign \x6DCF 1235-146-5 sign \x6DD0 12-1346-3 sign \x6DD1 24-34-2 sign \x6DD2 245-16-3 sign \x6DD3 12345-1346-3 sign \x6DD4 12-156-5 sign \x6DD5 14-34-5 sign \x6DD6 1345-146-5 sign \x6DD7 13-1256-2 sign \x6DD8 124-146-2 sign \x6DD9 245-12346-2 sign \x6DDA 14-356-5 sign \x6DDB 1-2346-5 sign \x6DDC 1234-1356-2 sign \x6DDD 12345-356-2 sign \x6DDE 15-12346-3 sign \x6DDF 124-2345-4 sign \x6DE0 1234-16-5 sign \x6DE1 145-1236-5 sign \x6DE2 1256-5 sign \x6DE3 1345-16-2 sign \x6DE4 1256-3 sign \x6DE5 14-34-5 sign \x6DE6 13-1236-5 sign \x6DE7 134-16-5 sign \x6DE8 13-13456-5 sign \x6DE9 14-13456-2 sign \x6DEA 14-123456-2 sign \x6DEB 1456-2 sign \x6DEC 245-1246-5 sign \x6DED 245-1256-2 sign \x6DEE 1235-2356-2 sign \x6DEF 1256-5 sign \x6DF0 1345-2345-4 sign \x6DF1 24-136-3 sign \x6DF2 1234-246-2 sign \x6DF3 12-123456-2 sign \x6DF4 35-5 sign \x6DF5 45-3 sign \x6DF6 14-2456-2 sign \x6DF7 1235-123456-5 sign \x6DF8 245-13456-3 sign \x6DF9 2345-3 sign \x6DFA 245-2345-4 sign \x6DFB 124-2345-3 sign \x6DFC 134-246-4 sign \x6DFD 1-156-4 sign \x6DFE 1456-4 sign \x6DFF 134-16-5 sign \x6E00 135-136-3 sign \x6E01 45-3 sign \x6E02 123456-5 sign \x6E03 1245-2346-5 sign \x6E04 12345-356-3 sign \x6E05 245-13456-3 sign \x6E06 45-3 sign \x6E07 123-2346-4 sign \x6E08 13-16-5 sign \x6E09 24-2346-5 sign \x6E0A 45-3 sign \x6E0C 14-34-5 sign \x6E0D 125-156-5 sign \x6E0E 145-34-2 sign \x6E10 13-2345-5 sign \x6E11 134-1456-4 sign \x6E12 1234-16-5 sign \x6E14 1256-2 sign \x6E15 45-3 sign \x6E16 24-136-4 sign \x6E17 24-136-5 sign \x6E18 1245-12356-2 sign \x6E19 1235-12456-5 sign \x6E1A 1-34-4 sign \x6E1B 13-2345-4 sign \x6E1C 1345-12456-4 sign \x6E1D 1256-2 sign \x6E1E 245-234-2 sign \x6E1F 124-13456-2 sign \x6E20 245-1256-2 sign \x6E21 145-34-5 sign \x6E22 12345-1356-2 sign \x6E23 1-345-3 sign \x6E24 135-126-2 sign \x6E25 25-5 sign \x6E26 25-3 sign \x6E27 145-16-5 sign \x6E28 1246-3 sign \x6E29 123456-3 sign \x6E2A 1245-34-2 sign \x6E2B 15-346-5 sign \x6E2C 245-2346-5 sign \x6E2D 1246-5 sign \x6E2E 13-2346-3 sign \x6E2F 13-1346-4 sign \x6E30 2345-4 sign \x6E31 1235-12346-2 sign \x6E32 15-45-5 sign \x6E33 134-16-4 sign \x6E34 123-2346-4 sign \x6E35 134-146-2 sign \x6E36 13456-3 sign \x6E37 2345-4 sign \x6E38 234-2 sign \x6E39 1235-12346-3 sign \x6E3A 134-246-4 sign \x6E3B 15-13456-4 sign \x6E3C 134-356-4 sign \x6E3D 125-2456-3 sign \x6E3E 1235-123456-2 sign \x6E3F 1345-2456-5 sign \x6E40 123-1246-2 sign \x6E41 12-156-5 sign \x6E42 2346-5 sign \x6E43 1234-2456-5 sign \x6E44 134-356-2 sign \x6E45 14-2345-5 sign \x6E46 245-16-5 sign \x6E47 245-16-5 sign \x6E48 134-356-2 sign \x6E49 124-2345-2 sign \x6E4A 245-12356-5 sign \x6E4B 1246-2 sign \x6E4C 245-1236-3 sign \x6E4D 124-12456-3 sign \x6E4E 134-2345-4 sign \x6E4F 1235-1246-5 sign \x6E50 134-126-5 sign \x6E51 15-1256-4 sign \x6E52 13-16-2 sign \x6E53 1234-136-2 sign \x6E54 13-2345-3 sign \x6E55 13-2345-4 sign \x6E56 1235-34-2 sign \x6E57 12345-1356-5 sign \x6E58 15-46-3 sign \x6E59 16-5 sign \x6E5A 1456-5 sign \x6E5B 1-1236-5 sign \x6E5C 24-156-2 sign \x6E5D 13-346-3 sign \x6E5E 12-1356-2 sign \x6E5F 1235-456-2 sign \x6E60 124-1236-5 sign \x6E61 1256-2 sign \x6E62 135-16-5 sign \x6E63 134-1456-4 sign \x6E64 24-156-3 sign \x6E65 124-34-2 sign \x6E66 24-1356-3 sign \x6E67 235-4 sign \x6E68 245-1256-5 sign \x6E69 145-12346-5 sign \x6E6B 13-246-4 sign \x6E6C 13-246-4 sign \x6E6E 2345-3 sign \x6E6F 124-1346-3 sign \x6E70 14-12346-2 sign \x6E71 1235-25-5 sign \x6E72 45-2 sign \x6E73 1345-1236-4 sign \x6E74 135-1236-5 sign \x6E75 234-4 sign \x6E76 245-45-2 sign \x6E77 12-1246-2 sign \x6E78 14-46-5 sign \x6E79 12-1236-2 sign \x6E7A 2345-2 sign \x6E7B 12-123456-2 sign \x6E7C 1345-346-5 sign \x6E7D 125-156-3 sign \x6E7E 12456-3 sign \x6E7F 24-156-3 sign \x6E80 134-1236-4 sign \x6E81 13456-2 sign \x6E83 123-1246-5 sign \x6E85 13-2345-5 sign \x6E86 15-1256-5 sign \x6E87 14-1256-4 sign \x6E88 13-1246-3 sign \x6E89 13-2456-5 sign \x6E8C 1234-126-3 sign \x6E8D 13-1456-5 sign \x6E8E 13-1246-5 sign \x6E8F 124-1346-2 sign \x6E90 45-2 sign \x6E91 15-25-4 sign \x6E92 45-2 sign \x6E93 14-2345-2 sign \x6E94 246-4 sign \x6E95 134-1356-5 sign \x6E96 1-123456-4 sign \x6E97 24-1356-2 sign \x6E98 123-2346-5 sign \x6E99 124-2456-5 sign \x6E9A 145-345-2 sign \x6E9B 35-3 sign \x6E9C 14-234-3 sign \x6E9D 13-12356-3 sign \x6E9E 15-146-3 sign \x6E9F 134-13456-2 sign \x6EA0 1-345-5 sign \x6EA1 24-156-2 sign \x6EA2 16-5 sign \x6EA3 14-123456-2 sign \x6EA4 134-345-4 sign \x6EA5 1234-34-4 sign \x6EA6 1246-2 sign \x6EA7 14-16-5 sign \x6EA8 245-2456-2 sign \x6EA9 34-5 sign \x6EAA 15-16-3 sign \x6EAB 123456-3 sign \x6EAC 245-46-3 sign \x6EAD 125-2346-2 sign \x6EAE 24-156-3 sign \x6EAF 15-34-5 sign \x6EB0 16-3 sign \x6EB1 1-136-3 sign \x6EB2 15-12356-4 sign \x6EB3 256-2 sign \x6EB4 15-234-5 sign \x6EB5 1456-3 sign \x6EB6 1245-12346-2 sign \x6EB7 1235-123456-5 sign \x6EB8 15-34-5 sign \x6EB9 15-34-5 sign \x6EBA 1345-16-5 sign \x6EBB 124-345-5 sign \x6EBC 24-156-3 sign \x6EBD 1245-34-5 sign \x6EBE 1246-3 sign \x6EBF 1234-1236-5 sign \x6EC0 12-34-5 sign \x6EC1 12-34-2 sign \x6EC2 1234-1346-3 sign \x6EC3 12346-4 sign \x6EC4 245-1346-3 sign \x6EC5 134-346-5 sign \x6EC6 1235-2346-2 sign \x6EC7 145-2345-3 sign \x6EC8 1235-146-5 sign \x6EC9 1235-456-4 sign \x6ECA 15-16-5 sign \x6ECB 125-156-3 sign \x6ECC 145-16-2 sign \x6ECD 1-156-4 sign \x6ECE 13456-2 sign \x6ECF 12345-34-4 sign \x6ED0 13-346-2 sign \x6ED1 1235-35-2 sign \x6ED2 13-2346-3 sign \x6ED3 125-156-4 sign \x6ED4 124-146-3 sign \x6ED5 124-1356-2 sign \x6ED6 15-1246-3 sign \x6ED7 135-16-4 sign \x6ED8 13-246-5 sign \x6ED9 1235-1246-5 sign \x6EDA 13-123456-4 sign \x6EDB 1456-2 sign \x6EDC 13-146-3 sign \x6EDD 14-12346-2 sign \x6EDE 1-156-5 sign \x6EDF 2345-5 sign \x6EE0 24-2346-5 sign \x6EE1 134-1236-4 sign \x6EE2 13456-5 sign \x6EE3 12-123456-2 sign \x6EE4 14-1256-5 sign \x6EE5 14-1236-5 sign \x6EE6 14-12456-2 sign \x6EE8 135-1456-3 sign \x6EE9 124-1236-3 sign \x6EEA 1256-5 sign \x6EEB 15-234-3 sign \x6EEC 1235-34-5 sign \x6EED 135-16-5 sign \x6EEE 135-246-3 sign \x6EEF 1-156-5 sign \x6EF0 13-46-4 sign \x6EF1 123-12356-5 sign \x6EF2 24-136-5 sign \x6EF3 24-1346-3 sign \x6EF4 145-16-3 sign \x6EF5 134-16-5 sign \x6EF6 146-2 sign \x6EF7 14-34-4 sign \x6EF8 1235-34-4 sign \x6EF9 1235-34-3 sign \x6EFA 234-2 sign \x6EFB 12-1236-4 sign \x6EFC 12345-1236-5 sign \x6EFD 235-2 sign \x6EFE 13-123456-4 sign \x6EFF 134-1236-4 sign \x6F00 245-13456-5 sign \x6F01 1256-2 sign \x6F02 1234-246-3 sign \x6F03 13-16-2 sign \x6F04 23456-2 sign \x6F05 13-246-4 sign \x6F06 245-16-3 sign \x6F07 15-16-4 sign \x6F08 13-16-5 sign \x6F09 14-34-5 sign \x6F0A 14-1256-4 sign \x6F0B 14-12346-2 sign \x6F0C 13-1456-4 sign \x6F0D 13-25-2 sign \x6F0E 245-12346-2 sign \x6F0F 14-12356-5 sign \x6F10 1-156-2 sign \x6F11 13-2456-5 sign \x6F12 245-46-2 sign \x6F13 14-16-2 sign \x6F14 2345-4 sign \x6F15 125-146-5 sign \x6F16 13-246-5 sign \x6F17 245-12346-3 sign \x6F18 12-123456-2 sign \x6F19 124-12456-2 sign \x6F1A 12356-5 sign \x6F1B 124-1356-2 sign \x6F1C 346-4 sign \x6F1D 15-16-2 sign \x6F1E 134-16-5 sign \x6F1F 124-1346-2 sign \x6F20 134-126-5 sign \x6F21 24-1346-3 sign \x6F22 1235-1236-5 sign \x6F23 14-2345-2 sign \x6F24 14-1236-4 sign \x6F25 35-3 sign \x6F26 14-16-2 sign \x6F27 245-2345-2 sign \x6F28 12345-1356-2 sign \x6F29 15-45-2 sign \x6F2A 16-3 sign \x6F2B 134-1236-5 sign \x6F2C 125-156-5 sign \x6F2D 134-1346-4 sign \x6F2E 123-1346-3 sign \x6F2F 124-345-5 sign \x6F30 1234-1356-3 sign \x6F31 24-34-5 sign \x6F32 1-1346-4 sign \x6F33 1-1346-3 sign \x6F34 12-12346-2 sign \x6F35 15-1256-5 sign \x6F36 1235-12456-5 sign \x6F37 123-25-5 sign \x6F38 13-2345-5 sign \x6F39 2345-3 sign \x6F3A 12-456-4 sign \x6F3B 14-246-2 sign \x6F3C 245-1246-4 sign \x6F3D 124-16-2 sign \x6F3E 46-5 sign \x6F3F 13-46-3 sign \x6F40 245-12346-2 sign \x6F41 13456-4 sign \x6F42 1235-12346-2 sign \x6F43 15-12356-4 sign \x6F44 24-34-5 sign \x6F45 13-12456-5 sign \x6F46 13456-2 sign \x6F47 15-246-3 sign \x6F4A 15-1256-5 sign \x6F4B 14-2345-5 sign \x6F4C 1-156-5 sign \x6F4D 1246-2 sign \x6F4E 1234-16-5 sign \x6F4F 13-236-2 sign \x6F50 13-246-5 sign \x6F51 1234-126-3 sign \x6F52 145-1346-5 sign \x6F53 1235-1246-5 sign \x6F54 13-346-2 sign \x6F55 34-4 sign \x6F56 1234-345-2 sign \x6F57 13-16-2 sign \x6F58 1234-1236-3 sign \x6F59 13-1246-2 sign \x6F5A 245-34-5 sign \x6F5B 245-2345-2 sign \x6F5C 245-2345-2 sign \x6F5D 15-16-3 sign \x6F5E 14-34-5 sign \x6F5F 15-16-5 sign \x6F60 15-123456-5 sign \x6F61 145-123456-5 sign \x6F62 1235-456-2 sign \x6F63 134-1456-4 sign \x6F64 1245-123456-5 sign \x6F65 15-34-5 sign \x6F66 14-246-2 sign \x6F67 1-136-3 sign \x6F68 1-12346-3 sign \x6F69 16-5 sign \x6F6A 145-16-2 sign \x6F6B 12456-3 sign \x6F6C 145-1236-5 sign \x6F6D 124-1236-2 sign \x6F6E 12-146-2 sign \x6F6F 15-256-2 sign \x6F70 123-1246-5 sign \x6F72 24-146-5 sign \x6F73 124-34-2 sign \x6F74 1-34-3 sign \x6F75 15-1236-5 sign \x6F76 1235-356-3 sign \x6F77 135-16-4 sign \x6F78 24-1236-3 sign \x6F79 12-1236-2 sign \x6F7A 12-1236-2 sign \x6F7B 24-34-4 sign \x6F7C 124-12346-2 sign \x6F7D 1234-34-4 sign \x6F7E 14-1456-2 sign \x6F7F 1246-2 sign \x6F80 15-2346-5 sign \x6F81 15-2346-5 sign \x6F82 12-1356-2 sign \x6F83 13-235-5 sign \x6F84 12-1356-2 sign \x6F85 1235-35-5 sign \x6F86 13-246-3 sign \x6F87 14-146-2 sign \x6F88 12-2346-5 sign \x6F89 13-1236-4 sign \x6F8A 245-123456-3 sign \x6F8B 1235-1356-5 sign \x6F8C 15-156-3 sign \x6F8D 1-34-5 sign \x6F8E 1234-1356-2 sign \x6F8F 1235-1236-5 sign \x6F90 256-2 sign \x6F91 14-234-5 sign \x6F92 1235-12346-5 sign \x6F93 12345-34-2 sign \x6F94 1235-146-5 sign \x6F95 1235-2346-2 sign \x6F96 15-2345-3 sign \x6F97 13-2345-5 sign \x6F98 24-1236-3 sign \x6F99 15-16-5 sign \x6F9C 14-1236-2 sign \x6F9E 1256-2 sign \x6F9F 14-1456-4 sign \x6FA0 134-1456-4 sign \x6FA1 125-146-4 sign \x6FA2 145-1346-3 sign \x6FA3 1235-12456-4 sign \x6FA4 125-2346-2 sign \x6FA5 15-346-5 sign \x6FA6 1256-5 sign \x6FA7 14-16-4 sign \x6FA8 24-156-5 sign \x6FA9 15-236-2 sign \x6FAA 14-13456-2 sign \x6FAB 134-1236-5 sign \x6FAC 125-156-3 sign \x6FAD 235-3 sign \x6FAE 123-2356-5 sign \x6FAF 245-1236-5 sign \x6FB0 14-2345-5 sign \x6FB1 145-2345-5 sign \x6FB2 346-5 sign \x6FB3 146-5 sign \x6FB4 1235-12456-2 sign \x6FB5 1-136-3 sign \x6FB6 145-1236-5 sign \x6FB7 134-1236-5 sign \x6FB8 145-1236-4 sign \x6FB9 145-1236-5 sign \x6FBA 16-5 sign \x6FBB 15-1246-5 sign \x6FBC 1234-16-5 sign \x6FBD 13-1256-5 sign \x6FBE 124-345-5 sign \x6FBF 245-1456-2 sign \x6FC0 13-16-3 sign \x6FC1 1-25-2 sign \x6FC2 14-2345-2 sign \x6FC3 1345-12346-2 sign \x6FC4 25-3 sign \x6FC5 13-1456-5 sign \x6FC6 12345-136-2 sign \x6FC7 15-2346-5 sign \x6FC8 13-16-2 sign \x6FC9 15-1246-3 sign \x6FCA 1235-1246-5 sign \x6FCB 12-34-4 sign \x6FCC 124-345-5 sign \x6FCD 15-12346-3 sign \x6FCE 145-13456-4 sign \x6FCF 135-345-1 sign \x6FD0 1-34-4 sign \x6FD1 14-2456-5 sign \x6FD2 135-1456-3 sign \x6FD3 14-2345-2 sign \x6FD4 134-16-4 sign \x6FD5 24-156-3 sign \x6FD6 24-34-5 sign \x6FD7 134-16-5 sign \x6FD8 1345-13456-5 sign \x6FD9 13456-2 sign \x6FDA 13456-2 sign \x6FDB 134-1356-2 sign \x6FDC 13-1456-5 sign \x6FDD 245-16-2 sign \x6FDE 1234-16-5 sign \x6FDF 13-16-5 sign \x6FE0 1235-146-2 sign \x6FE1 1245-34-2 sign \x6FE2 125-1246-4 sign \x6FE3 25-5 sign \x6FE4 124-146-2 sign \x6FE5 1456-5 sign \x6FE6 1456-4 sign \x6FE7 145-1246-5 sign \x6FE8 245-156-2 sign \x6FE9 1235-25-5 sign \x6FEA 13-13456-5 sign \x6FEB 14-1236-5 sign \x6FEC 13-256-5 sign \x6FED 2456-5 sign \x6FEE 1234-34-2 sign \x6FEF 1-25-2 sign \x6FF0 1246-2 sign \x6FF1 135-1456-3 sign \x6FF2 13-34-4 sign \x6FF3 245-2345-2 sign \x6FF4 15-13456-2 sign \x6FF6 123-25-5 sign \x6FF7 12345-356-5 sign \x6FFA 13-2345-5 sign \x6FFB 1246-2 sign \x6FFC 14-25-5 sign \x6FFD 125-1236-5 sign \x6FFE 14-1256-5 sign \x6FFF 14-16-5 sign \x7000 234-3 sign \x7001 46-5 sign \x7002 14-34-4 sign \x7003 15-156-5 sign \x7004 13-346-2 sign \x7005 13456-5 sign \x7006 145-34-2 sign \x7007 456-4 sign \x7008 1235-1246-3 sign \x7009 15-346-5 sign \x700A 1234-1236-2 sign \x700B 24-136-4 sign \x700C 135-246-3 sign \x700D 12-1236-2 sign \x700E 134-126-5 sign \x700F 14-234-2 sign \x7010 13-2345-3 sign \x7011 1234-34-5 sign \x7012 15-2346-5 sign \x7013 12-1356-2 sign \x7014 13-34-4 sign \x7015 135-1456-3 sign \x7016 1235-25-5 sign \x7017 15-2345-5 sign \x7018 14-34-2 sign \x7019 245-1456-3 sign \x701A 1235-1236-5 sign \x701B 13456-2 sign \x701C 1245-12346-2 sign \x701D 14-16-5 sign \x701E 13-13456-5 sign \x701F 15-246-3 sign \x7020 13456-2 sign \x7021 15-1246-4 sign \x7022 1246-2 sign \x7023 15-346-5 sign \x7024 1235-2356-2 sign \x7025 1235-146-5 sign \x7026 1-34-3 sign \x7027 14-12346-2 sign \x7028 14-2456-5 sign \x7029 145-1246-5 sign \x702A 12345-1236-2 sign \x702B 1235-34-2 sign \x702C 14-2456-5 sign \x702F 13456-2 sign \x7030 134-16-2 sign \x7031 13-16-5 sign \x7032 14-2345-5 sign \x7033 13-2345-5 sign \x7034 13456-4 sign \x7035 12345-136-5 sign \x7036 14-1456-2 sign \x7037 16-5 sign \x7038 13-2345-3 sign \x7039 246-5 sign \x703A 12-1236-2 sign \x703B 145-2456-5 sign \x703C 1245-1346-2 sign \x703D 13-2345-4 sign \x703E 14-1236-2 sign \x703F 12345-1236-2 sign \x7040 24-456-5 sign \x7041 45-3 sign \x7042 1-25-2 sign \x7043 12345-1356-3 sign \x7044 24-2346-5 sign \x7045 14-356-4 sign \x7046 14-1236-2 sign \x7047 245-12346-2 sign \x7048 245-1256-2 sign \x7049 235-3 sign \x704A 245-2345-2 sign \x704B 12345-345-4 sign \x704C 13-12456-5 sign \x704D 245-236-5 sign \x704E 2345-5 sign \x704F 1235-146-5 sign \x7051 15-345-4 sign \x7052 125-1236-5 sign \x7053 14-12456-2 sign \x7054 2345-5 sign \x7055 14-16-2 sign \x7056 134-16-4 sign \x7057 24-1236-5 sign \x7058 124-1236-3 sign \x7059 145-1346-4 sign \x705A 13-246-4 sign \x705B 12-1236-4 sign \x705D 1235-146-5 sign \x705E 135-345-5 sign \x705F 1-34-2 sign \x7060 14-1236-5 sign \x7061 14-1236-2 sign \x7062 1345-1346-4 sign \x7063 12456-3 sign \x7064 14-12456-2 sign \x7065 245-45-2 sign \x7066 15-2345-4 sign \x7067 2345-5 sign \x7068 13-1236-4 sign \x7069 2345-5 sign \x706A 1256-5 sign \x706B 1235-25-4 sign \x706C 135-246-3 sign \x706D 134-346-5 sign \x706E 13-456-3 sign \x706F 145-1356-3 sign \x7070 1235-1246-3 sign \x7071 15-246-3 sign \x7072 15-246-3 sign \x7074 1235-12346-2 sign \x7075 14-13456-2 sign \x7076 125-146-5 sign \x7077 1-12456-5 sign \x7078 13-234-4 sign \x7079 1-345-5 sign \x707A 15-346-5 sign \x707B 12-156-5 sign \x707C 1-25-2 sign \x707D 125-2456-3 sign \x707E 125-2456-3 sign \x707F 245-1236-5 sign \x7080 46-2 sign \x7081 245-16-5 sign \x7082 1-12346-3 sign \x7083 12345-136-2 sign \x7084 1345-234-4 sign \x7085 13-235-4 sign \x7086 123456-2 sign \x7087 1234-126-5 sign \x7088 16-5 sign \x7089 14-34-2 sign \x708A 12-1246-3 sign \x708B 1234-16-3 sign \x708C 123-2456-4 sign \x708D 1234-1236-5 sign \x708E 2345-2 sign \x708F 123-2456-4 sign \x7090 1234-1346-5 sign \x7091 134-34-5 sign \x7092 12-146-4 sign \x7093 14-246-5 sign \x7094 13-1246-5 sign \x7095 123-1346-5 sign \x7096 124-123456-3 sign \x7097 13-456-3 sign \x7098 15-1456-3 sign \x7099 1-156-5 sign \x709A 13-456-3 sign \x709B 13-456-3 sign \x709C 1246-4 sign \x709D 245-46-5 sign \x709F 145-345-2 sign \x70A0 15-23456-2 sign \x70A1 1-1356-3 sign \x70A2 1-34-2 sign \x70A3 123-2346-4 sign \x70A4 1-146-5 sign \x70A5 12345-34-2 sign \x70A6 135-345-2 sign \x70A7 145-25-5 sign \x70A8 145-25-5 sign \x70A9 14-13456-5 sign \x70AA 1-25-2 sign \x70AB 15-45-5 sign \x70AC 13-1256-5 sign \x70AD 124-1236-5 sign \x70AE 1234-146-5 sign \x70AF 13-235-4 sign \x70B0 1234-146-2 sign \x70B1 124-2456-2 sign \x70B2 124-2456-2 sign \x70B3 135-13456-4 sign \x70B4 46-4 sign \x70B5 124-12346-3 sign \x70B6 1235-1236-3 sign \x70B7 1-34-5 sign \x70B8 1-345-5 sign \x70B9 145-2345-4 sign \x70BA 1246-2 sign \x70BB 24-156-2 sign \x70BC 14-2345-5 sign \x70BD 12-156-5 sign \x70BE 1234-13456-2 sign \x70C0 1235-34-3 sign \x70C1 24-25-5 sign \x70C2 14-1236-5 sign \x70C3 13-13456-4 sign \x70C4 13-246-4 sign \x70C5 15-1256-5 sign \x70C6 15-13456-2 sign \x70C7 245-45-5 sign \x70C8 14-346-5 sign \x70C9 1235-12456-5 sign \x70CA 46-2 sign \x70CB 15-234-3 sign \x70CC 15-234-3 sign \x70CD 15-2345-4 sign \x70CE 1456-2 sign \x70CF 34-3 sign \x70D0 1-12356-3 sign \x70D1 246-2 sign \x70D2 24-156-5 sign \x70D3 1246-3 sign \x70D4 124-12346-2 sign \x70D5 15-236-5 sign \x70D6 125-2456-3 sign \x70D7 123-2456-4 sign \x70D8 1235-12346-3 sign \x70D9 14-25-5 sign \x70DA 15-23456-2 sign \x70DB 1-34-2 sign \x70DC 15-45-4 sign \x70DD 1-1356-3 sign \x70DE 1234-126-5 sign \x70DF 2345-3 sign \x70E0 1235-1246-4 sign \x70E1 13-456-3 sign \x70E2 1-2346-5 sign \x70E3 1235-1246-3 sign \x70E4 123-146-4 sign \x70E6 12345-1236-2 sign \x70E7 24-146-3 sign \x70E8 346-5 sign \x70E9 1235-1246-5 sign \x70EB 124-1346-5 sign \x70EC 13-1456-5 sign \x70ED 1245-2346-5 sign \x70EF 15-16-3 sign \x70F0 12345-34-2 sign \x70F1 13-235-4 sign \x70F2 12-2346-5 sign \x70F3 1234-34-4 sign \x70F4 13-13456-4 sign \x70F5 1-25-2 sign \x70F6 124-13456-4 sign \x70F7 12456-2 sign \x70F8 1235-2456-4 sign \x70F9 1234-1356-3 sign \x70FA 14-1346-4 sign \x70FB 2345-4 sign \x70FC 1235-34-3 sign \x70FD 12345-1356-3 sign \x70FE 12-156-5 sign \x70FF 1245-12346-2 sign \x7100 1235-34-2 sign \x7102 24-34-2 sign \x7103 1235-2346-5 sign \x7104 15-256-3 sign \x7105 123-34-5 sign \x7106 13-236-2 sign \x7107 15-246-3 sign \x7108 15-16-3 sign \x7109 2345-3 sign \x710A 1235-1236-4 sign \x710B 1-456-5 sign \x710C 13-256-5 sign \x710D 145-16-5 sign \x710E 15-246-5 sign \x710F 13-16-2 sign \x7110 34-5 sign \x7113 1235-1236-2 sign \x7114 2345-5 sign \x7115 1235-12456-5 sign \x7116 134-136-3 sign \x7117 13-1256-2 sign \x7118 124-146-2 sign \x7119 135-356-5 sign \x711A 12345-136-2 sign \x711B 14-1456-5 sign \x711C 1235-123456-5 sign \x711D 1235-123456-5 sign \x711E 124-123456-3 sign \x711F 15-16-2 sign \x7120 245-1246-5 sign \x7121 34-2 sign \x7122 1235-12346-3 sign \x7123 13-1256-5 sign \x7124 12345-34-4 sign \x7125 25-5 sign \x7126 13-246-3 sign \x7127 245-12346-3 sign \x7128 12345-1356-5 sign \x7129 1234-13456-3 sign \x712A 245-235-3 sign \x712B 1245-25-5 sign \x712C 15-16-2 sign \x712D 245-235-2 sign \x712E 15-1456-5 sign \x712F 1-25-2 sign \x7130 2345-5 sign \x7131 2345-4 sign \x7132 16-5 sign \x7133 13-236-2 sign \x7134 1256-5 sign \x7135 13-1346-5 sign \x7136 1245-1236-2 sign \x7137 1234-16-2 sign \x7138 13-34-4 sign \x713A 24-1356-3 sign \x713B 12-1346-5 sign \x713C 24-146-3 sign \x7141 12-136-2 sign \x7142 1235-2346-5 sign \x7143 123-1246-4 sign \x7144 1-12346-3 sign \x7145 145-12456-5 sign \x7146 15-23456-3 sign \x7147 1235-1246-3 sign \x7148 12345-1356-5 sign \x7149 14-2345-5 sign \x714A 15-45-3 sign \x714B 15-13456-3 sign \x714C 1235-456-2 sign \x714D 13-246-4 sign \x714E 13-2345-3 sign \x714F 135-16-5 sign \x7150 13456-3 sign \x7151 1-34-4 sign \x7152 1246-4 sign \x7153 124-12456-3 sign \x7154 124-2345-5 sign \x7155 15-16-3 sign \x7156 1345-12456-4 sign \x7157 1345-12456-4 sign \x7158 12-1236-2 sign \x7159 2345-3 sign \x715A 13-235-4 sign \x715B 13-235-4 sign \x715C 1256-5 sign \x715D 134-356-5 sign \x715E 24-345-5 sign \x715F 1246-5 sign \x7160 346-5 sign \x7161 15-1456-5 sign \x7162 245-235-2 sign \x7163 1245-12356-4 sign \x7164 134-356-2 sign \x7165 1235-12456-5 sign \x7166 15-1256-4 sign \x7167 1-146-5 sign \x7168 1246-3 sign \x7169 12345-1236-2 sign \x716A 245-234-2 sign \x716B 15-1246-5 sign \x716C 46-2 sign \x716D 14-346-5 sign \x716E 1-34-4 sign \x7170 13-146-5 sign \x7171 13-35-3 sign \x7172 135-146-3 sign \x7173 1235-34-2 sign \x7174 256-3 sign \x7175 15-23456-3 sign \x7178 135-2345-3 sign \x7179 13-12356-5 sign \x717A 124-1246-5 sign \x717B 124-1346-2 sign \x717C 12-146-4 sign \x717D 24-1236-3 sign \x717E 136-3 sign \x717F 135-126-2 sign \x7180 1235-456-4 sign \x7181 15-346-2 sign \x7182 15-16-5 sign \x7183 34-5 sign \x7184 15-16-2 sign \x7185 256-2 sign \x7186 1235-2346-2 sign \x7187 1235-34-5 sign \x7188 15-16-3 sign \x7189 256-2 sign \x718A 15-235-2 sign \x718B 1345-2456-2 sign \x718C 24-1236-5 sign \x718E 246-5 sign \x718F 15-256-3 sign \x7190 134-13456-2 sign \x7191 14-2345-2 sign \x7192 13456-2 sign \x7193 34-4 sign \x7194 1245-12346-2 sign \x7197 245-46-5 sign \x7198 14-234-3 sign \x7199 15-16-3 sign \x719A 135-16-5 sign \x719B 135-246-3 sign \x719C 125-12346-4 sign \x719D 14-34-5 sign \x719E 13-2345-3 sign \x719F 24-34-2 sign \x71A0 16-5 sign \x71A1 14-12356-2 sign \x71A2 12345-1356-3 sign \x71A3 15-1246-3 sign \x71A4 16-5 sign \x71A5 124-12346-3 sign \x71A6 13-236-2 sign \x71A7 125-12346-3 sign \x71A8 256-5 sign \x71A9 1235-34-5 sign \x71AA 16-2 sign \x71AB 1-156-5 sign \x71AC 146-2 sign \x71AD 1246-5 sign \x71AE 14-246-2 sign \x71AF 1245-1236-4 sign \x71B0 12356-3 sign \x71B1 1245-2346-5 sign \x71B2 13-235-4 sign \x71B3 134-1236-5 sign \x71B4 135-16-4 sign \x71B5 24-1346-3 sign \x71B6 245-12456-5 sign \x71B7 125-1356-3 sign \x71B8 13-2345-3 sign \x71B9 15-16-3 sign \x71BA 15-16-3 sign \x71BB 15-16-3 sign \x71BC 16-5 sign \x71BD 15-246-5 sign \x71BE 12-156-5 sign \x71BF 1235-456-2 sign \x71C0 12-1236-4 sign \x71C1 346-5 sign \x71C2 245-2345-2 sign \x71C3 1245-1236-2 sign \x71C4 2345-5 sign \x71C5 15-2345-2 sign \x71C6 245-246-2 sign \x71C7 125-123456-5 sign \x71C8 145-1356-3 sign \x71C9 145-123456-5 sign \x71CA 24-136-3 sign \x71CB 13-246-3 sign \x71CC 12345-136-2 sign \x71CD 15-156-3 sign \x71CE 14-246-5 sign \x71CF 1256-5 sign \x71D0 14-1456-2 sign \x71D1 124-12346-2 sign \x71D2 24-146-3 sign \x71D3 12345-136-3 sign \x71D4 12345-1236-2 sign \x71D5 2345-5 sign \x71D6 15-256-2 sign \x71D7 14-1236-5 sign \x71D8 134-356-4 sign \x71D9 124-1346-5 sign \x71DA 16-3 sign \x71DB 13-13456-4 sign \x71DC 134-136-5 sign \x71DF 13456-2 sign \x71E0 146-5 sign \x71E1 16-5 sign \x71E2 15-236-2 sign \x71E3 14-1236-2 sign \x71E4 124-2456-5 sign \x71E5 125-146-5 sign \x71E6 245-1236-5 sign \x71E7 15-1246-5 sign \x71E8 15-16-3 sign \x71E9 245-236-5 sign \x71EA 245-12346-3 sign \x71EB 14-2345-2 sign \x71EC 1235-1246-4 sign \x71ED 1-34-2 sign \x71EE 15-346-5 sign \x71EF 14-13456-2 sign \x71F0 1246-3 sign \x71F1 16-5 sign \x71F2 15-346-2 sign \x71F3 1-146-5 sign \x71F4 1235-1246-5 sign \x71F7 14-1236-2 sign \x71F8 1245-34-2 sign \x71F9 15-2345-4 sign \x71FA 123-146-4 sign \x71FB 15-256-3 sign \x71FC 13-1456-5 sign \x71FD 12-12356-2 sign \x71FE 124-146-2 sign \x71FF 246-5 sign \x7200 1235-2346-5 sign \x7201 14-1236-5 sign \x7202 135-246-3 sign \x7203 1245-12346-2 sign \x7204 14-16-5 sign \x7205 134-126-5 sign \x7206 135-146-5 sign \x7207 1245-25-5 sign \x7208 14-1256-2 sign \x7209 14-345-5 sign \x720A 146-2 sign \x720B 15-256-5 sign \x720C 123-456-5 sign \x720D 24-25-5 sign \x720F 14-16-5 sign \x7210 14-34-2 sign \x7211 13-236-2 sign \x7212 14-246-5 sign \x7213 2345-2 sign \x7214 15-16-3 sign \x7215 15-346-5 sign \x7216 14-12346-2 sign \x7217 346-5 sign \x7219 1245-1346-4 sign \x721A 236-5 sign \x721B 14-1236-5 sign \x721C 245-12346-2 sign \x721D 13-236-2 sign \x721E 124-12346-2 sign \x721F 13-12456-5 sign \x7221 12-2346-5 sign \x7222 134-16-2 sign \x7223 124-1346-4 sign \x7224 14-1236-5 sign \x7225 1-34-2 sign \x7226 14-1236-4 sign \x7227 14-13456-2 sign \x7228 245-12456-5 sign \x7229 1256-5 sign \x722A 1-35-4 sign \x722C 1234-345-2 sign \x722D 1-1356-3 sign \x722E 1234-146-2 sign \x722F 12-1356-3 sign \x7230 45-2 sign \x7231 2456-5 sign \x7232 1246-5 sign \x7234 13-236-2 sign \x7235 13-236-2 sign \x7236 12345-34-5 sign \x7237 346-2 sign \x7238 135-345-5 sign \x7239 145-346-3 sign \x723A 346-2 sign \x723B 246-2 sign \x723C 125-34-4 sign \x723D 24-456-4 sign \x723E 156-4 sign \x723F 135-1236-5 sign \x7240 12-456-2 sign \x7241 13-2346-3 sign \x7242 125-1346-3 sign \x7243 145-346-2 sign \x7244 245-46-3 sign \x7245 235-2 sign \x7246 245-46-2 sign \x7247 1234-2345-5 sign \x7248 135-1236-4 sign \x7249 1234-1236-5 sign \x724A 24-146-2 sign \x724B 13-2345-3 sign \x724C 1234-2456-2 sign \x724D 145-34-2 sign \x724E 12-456-3 sign \x724F 1-34-5 sign \x7250 1-345-2 sign \x7251 135-2345-3 sign \x7252 145-346-2 sign \x7253 135-1346-4 sign \x7254 135-126-2 sign \x7255 12-456-3 sign \x7256 234-4 sign \x7258 145-34-2 sign \x7259 23456-2 sign \x725A 12-1356-5 sign \x725B 1345-234-2 sign \x725D 1234-1456-5 sign \x725E 13-234-3 sign \x725F 134-12356-2 sign \x7260 124-3457-3 sign \x7261 134-34-4 sign \x7262 14-146-2 sign \x7263 1245-136-5 sign \x7264 134-1346-2 sign \x7265 12345-1346-3 sign \x7266 134-146-2 sign \x7267 134-34-5 sign \x7268 13-1346-3 sign \x7269 34-5 sign \x726A 2345-5 sign \x726B 13-2346-3 sign \x726C 135-356-5 sign \x726D 15-156-5 sign \x726E 13-2345-5 sign \x726F 13-34-4 sign \x7270 234-5 sign \x7271 13-2346-3 sign \x7272 24-1356-3 sign \x7273 134-34-4 sign \x7274 145-16-4 sign \x7275 245-2345-3 sign \x7276 245-45-5 sign \x7277 245-45-2 sign \x7278 125-156-5 sign \x7279 124-2346-5 sign \x727A 15-16-3 sign \x727B 134-1346-2 sign \x727C 123-1356-3 sign \x727D 245-2345-3 sign \x727E 34-2 sign \x727F 13-34-5 sign \x7280 15-16-3 sign \x7281 14-16-2 sign \x7282 14-16-2 sign \x7283 1234-12356-4 sign \x7284 13-16-3 sign \x7285 13-1346-3 sign \x7286 124-2346-5 sign \x7287 135-136-3 sign \x7288 245-45-2 sign \x7289 1245-123456-2 sign \x728A 145-34-2 sign \x728B 135-345-1 sign \x728C 13-23456-3 sign \x728D 13-2345-3 sign \x728E 12345-1356-3 sign \x728F 1234-2345-3 sign \x7290 123-2346-3 sign \x7291 13-1256-2 sign \x7292 123-146-5 sign \x7293 12-34-2 sign \x7294 15-16-5 sign \x7295 135-356-5 sign \x7296 14-25-5 sign \x7297 13-346-5 sign \x7298 134-345-2 sign \x7299 15-1236-3 sign \x729A 1246-5 sign \x729B 14-16-2 sign \x729C 145-123456-3 sign \x729D 124-12346-2 sign \x729E 245-246-2 sign \x729F 13-46-5 sign \x72A1 14-16-5 sign \x72A2 145-34-2 sign \x72A3 14-346-5 sign \x72A4 1234-16-2 sign \x72A5 1234-246-4 sign \x72A6 135-146-5 sign \x72A7 15-16-3 sign \x72A8 12-12356-3 sign \x72A9 1246-2 sign \x72AA 123-1246-2 sign \x72AB 12-12356-3 sign \x72AC 245-45-4 sign \x72AE 135-126-2 sign \x72AF 12345-1236-5 sign \x72B0 245-234-2 sign \x72B1 13-16-4 sign \x72B2 245-2456-2 sign \x72B3 12-25-2 sign \x72B4 1235-1236-2 sign \x72B5 13-346-2 sign \x72B6 1-456-5 sign \x72B7 13-456-4 sign \x72B8 134-345-5 sign \x72B9 234-2 sign \x72BA 123-1346-5 sign \x72BB 135-126-2 sign \x72BC 1235-12356-4 sign \x72BD 23456-5 sign \x72BE 1456-2 sign \x72BF 1235-12456-3 sign \x72C0 1-456-5 sign \x72C1 256-4 sign \x72C2 123-456-2 sign \x72C3 1345-234-4 sign \x72C4 145-16-2 sign \x72C5 245-13456-3 sign \x72C6 1-12346-5 sign \x72C7 134-34-5 sign \x72C8 135-356-5 sign \x72C9 1234-16-3 sign \x72CA 13-1256-2 sign \x72CB 1345-16-2 sign \x72CC 24-1356-3 sign \x72CD 1234-146-2 sign \x72CE 15-23456-2 sign \x72CF 124-25-2 sign \x72D0 1235-34-2 sign \x72D1 14-13456-2 sign \x72D2 12345-356-5 sign \x72D3 1234-16-3 sign \x72D4 1345-16-4 sign \x72D5 146-4 sign \x72D6 234-5 sign \x72D7 13-12356-4 sign \x72D8 236-5 sign \x72D9 13-1256-3 sign \x72DA 145-1236-5 sign \x72DB 1234-126-5 sign \x72DC 13-34-4 sign \x72DD 15-2345-4 sign \x72DE 1345-13456-2 sign \x72DF 1235-12456-2 sign \x72E0 1235-136-4 sign \x72E1 13-246-4 sign \x72E2 1235-2346-2 sign \x72E3 1-146-5 sign \x72E4 13-16-2 sign \x72E5 15-256-2 sign \x72E6 24-1236-3 sign \x72E7 124-345-5 sign \x72E8 1245-12346-2 sign \x72E9 24-12356-5 sign \x72EA 124-12346-3 sign \x72EB 14-146-4 sign \x72EC 145-34-2 sign \x72ED 15-23456-2 sign \x72EE 24-156-3 sign \x72EF 123-2356-5 sign \x72F0 1-1356-3 sign \x72F1 1256-5 sign \x72F2 15-123456-3 sign \x72F3 1256-2 sign \x72F4 135-16-5 sign \x72F5 134-1346-2 sign \x72F6 15-16-4 sign \x72F7 13-45-5 sign \x72F8 14-16-2 sign \x72F9 15-23456-2 sign \x72FA 1456-2 sign \x72FB 15-12456-3 sign \x72FC 14-1346-2 sign \x72FD 135-356-5 sign \x72FE 1-156-5 sign \x72FF 2345-2 sign \x7300 24-345-3 sign \x7301 14-16-5 sign \x7302 1235-1236-5 sign \x7303 15-2345-4 sign \x7304 13-13456-3 sign \x7305 1234-2456-2 sign \x7306 12345-356-3 sign \x7307 246-2 sign \x7308 135-345-5 sign \x7309 245-16-2 sign \x730A 1345-16-2 sign \x730B 135-246-3 sign \x730C 1456-5 sign \x730D 14-2456-2 sign \x730E 14-346-5 sign \x730F 13-2345-3 sign \x7310 245-46-3 sign \x7311 123-123456-3 sign \x7312 2345-3 sign \x7313 13-25-4 sign \x7314 125-12346-5 sign \x7315 134-16-2 sign \x7316 12-1346-3 sign \x7317 16-3 sign \x7318 1-156-5 sign \x7319 1-1356-3 sign \x731A 23456-2 sign \x731B 134-1356-4 sign \x731C 245-2456-3 sign \x731D 245-34-5 sign \x731E 24-2346-5 sign \x7321 14-25-2 sign \x7322 1235-34-2 sign \x7323 125-12346-3 sign \x7324 13-16-5 sign \x7325 1246-4 sign \x7326 12345-1356-3 sign \x7327 25-3 sign \x7328 45-2 sign \x7329 15-13456-3 sign \x732A 1-34-3 sign \x732B 134-146-3 sign \x732C 1246-5 sign \x732D 12-12456-2 sign \x732E 15-2345-5 sign \x732F 124-12456-3 sign \x7330 23456-5 sign \x7331 1345-146-2 sign \x7332 15-346-3 sign \x7333 13-23456-3 sign \x7334 1235-12356-2 sign \x7335 135-2345-3 sign \x7336 234-2 sign \x7337 234-2 sign \x7338 134-356-2 sign \x7339 1-345-3 sign \x733A 246-2 sign \x733B 15-123456-3 sign \x733C 135-126-2 sign \x733D 134-13456-2 sign \x733E 1235-35-2 sign \x733F 45-2 sign \x7340 15-12356-3 sign \x7341 134-345-5 sign \x7342 45-2 sign \x7343 145-2456-3 sign \x7344 1256-5 sign \x7345 24-156-3 sign \x7346 1235-146-2 sign \x7348 16-5 sign \x7349 1-136-3 sign \x734A 12-456-5 sign \x734B 1235-146-2 sign \x734C 134-1236-5 sign \x734D 13-13456-5 sign \x734E 13-46-4 sign \x734F 134-34-2 sign \x7350 1-1346-3 sign \x7351 12-1236-2 sign \x7352 146-2 sign \x7353 146-2 sign \x7354 1235-146-2 sign \x7355 245-1246-3 sign \x7356 12345-136-2 sign \x7357 13-236-2 sign \x7358 135-16-5 sign \x7359 135-16-5 sign \x735A 1235-456-2 sign \x735B 135-34-4 sign \x735C 14-1456-2 sign \x735D 1256-5 sign \x735E 124-12346-2 sign \x735F 246-5 sign \x7360 14-246-2 sign \x7361 135-345-1 sign \x7362 15-246-3 sign \x7365 15-16-2 sign \x7366 13-2346-2 sign \x7367 13-45-5 sign \x7368 145-34-2 sign \x7369 1235-1246-5 sign \x736A 123-2356-5 sign \x736B 15-2345-4 sign \x736C 15-346-5 sign \x736D 124-345-5 sign \x736E 15-2345-4 sign \x736F 15-256-3 sign \x7370 1345-13456-2 sign \x7371 1234-1456-2 sign \x7372 1235-25-5 sign \x7373 1345-12356-5 sign \x7374 134-1356-2 sign \x7375 14-346-5 sign \x7376 1345-146-2 sign \x7377 13-456-4 sign \x7378 24-12356-5 sign \x7379 14-34-2 sign \x737A 124-345-5 sign \x737B 15-2345-5 sign \x737C 134-16-2 sign \x737D 1245-1346-2 sign \x737E 1235-12456-3 sign \x737F 1345-146-2 sign \x7380 14-25-2 sign \x7381 15-2345-4 sign \x7382 245-16-2 sign \x7383 13-236-2 sign \x7384 15-45-2 sign \x7385 134-246-5 sign \x7386 125-156-3 sign \x7387 14-1256-5 sign \x7388 14-34-2 sign \x7389 1256-5 sign \x738A 15-34-5 sign \x738B 456-2 sign \x738C 245-234-2 sign \x738D 13-345-4 sign \x738E 145-13456-3 sign \x738F 14-2346-5 sign \x7390 135-345-3 sign \x7391 13-16-3 sign \x7392 1235-12346-2 sign \x7393 145-16-5 sign \x7394 12-12456-5 sign \x7395 13-1236-3 sign \x7396 13-234-4 sign \x7397 1256-2 sign \x7398 13-16-4 sign \x7399 1256-2 sign \x739A 46-2 sign \x739B 134-345-4 sign \x739C 13-12346-3 sign \x739D 34-4 sign \x739E 12345-34-3 sign \x739F 123456-2 sign \x73A0 13-346-5 sign \x73A1 23456-5 sign \x73A2 135-1456-3 sign \x73A3 135-2345-5 sign \x73A4 135-1356-4 sign \x73A5 236-5 sign \x73A6 13-236-2 sign \x73A7 256-4 sign \x73A8 13-236-2 sign \x73A9 12456-2 sign \x73AA 13-2345-3 sign \x73AB 134-356-2 sign \x73AC 145-1236-4 sign \x73AD 1234-1456-2 sign \x73AE 1246-4 sign \x73AF 1235-12456-2 sign \x73B0 15-2345-5 sign \x73B1 245-46-3 sign \x73B2 14-13456-2 sign \x73B3 145-2456-5 sign \x73B4 16-5 sign \x73B5 1236-2 sign \x73B6 1234-13456-2 sign \x73B7 145-2345-5 sign \x73B8 12345-34-2 sign \x73B9 15-45-2 sign \x73BA 15-16-4 sign \x73BB 135-126-3 sign \x73BC 245-156-4 sign \x73BD 13-12356-4 sign \x73BE 13-23456-4 sign \x73BF 24-146-2 sign \x73C0 1234-126-5 sign \x73C1 245-156-2 sign \x73C2 123-2346-3 sign \x73C3 1245-1236-4 sign \x73C4 24-1356-3 sign \x73C5 24-136-3 sign \x73C6 16-2 sign \x73C7 125-34-4 sign \x73C8 13-23456-3 sign \x73C9 134-1456-2 sign \x73CA 24-1236-3 sign \x73CB 14-234-4 sign \x73CC 135-16-5 sign \x73CD 1-136-3 sign \x73CE 1-136-3 sign \x73CF 13-236-2 sign \x73D0 12345-345-5 sign \x73D1 14-12346-2 sign \x73D2 13-1456-3 sign \x73D3 13-246-5 sign \x73D4 13-2345-5 sign \x73D5 14-16-5 sign \x73D6 13-456-3 sign \x73D7 15-2345-3 sign \x73D8 1-12356-3 sign \x73D9 13-12346-4 sign \x73DA 2345-3 sign \x73DB 15-234-5 sign \x73DC 46-2 sign \x73DD 15-1256-4 sign \x73DE 14-25-5 sign \x73DF 15-34-5 sign \x73E0 1-34-3 sign \x73E1 245-1456-2 sign \x73E2 123-136-5 sign \x73E3 15-256-2 sign \x73E4 135-146-4 sign \x73E5 156-4 sign \x73E6 15-46-5 sign \x73E7 246-2 sign \x73E8 15-23456-2 sign \x73E9 1235-1356-2 sign \x73EA 13-1246-3 sign \x73EB 12-12346-3 sign \x73EC 15-1256-5 sign \x73ED 135-1236-3 sign \x73EE 1234-356-5 sign \x73F0 145-1346-3 sign \x73F2 1235-123456-2 sign \x73F3 123456-2 sign \x73F4 2346-2 sign \x73F5 12-1356-2 sign \x73F6 124-16-2 sign \x73F7 34-4 sign \x73F8 34-2 sign \x73F9 12-1356-2 sign \x73FA 13-256-5 sign \x73FB 134-356-2 sign \x73FC 135-356-5 sign \x73FD 124-13456-4 sign \x73FE 15-2345-5 sign \x73FF 12-25-5 sign \x7400 1235-1236-5 sign \x7401 15-45-2 sign \x7402 2345-2 sign \x7403 245-234-2 sign \x7404 245-45-4 sign \x7405 14-1346-2 sign \x7406 14-16-4 sign \x7407 15-234-5 sign \x7408 12345-34-2 sign \x7409 14-234-2 sign \x740A 346-2 sign \x740B 15-16-3 sign \x740C 14-13456-2 sign \x740D 14-16-5 sign \x740E 13-1456-5 sign \x740F 14-2345-4 sign \x7410 15-25-4 sign \x7413 12456-2 sign \x7414 145-2345-5 sign \x7415 1234-1456-2 sign \x7416 1-1236-4 sign \x7417 245-1246-5 sign \x7418 134-1456-2 sign \x7419 1256-5 sign \x741A 13-1256-3 sign \x741B 12-136-3 sign \x741C 14-2456-2 sign \x741D 123456-2 sign \x741E 24-1356-5 sign \x741F 1246-2 sign \x7420 145-2345-4 sign \x7421 12-34-5 sign \x7422 1-25-2 sign \x7423 1234-356-4 sign \x7424 12-1356-3 sign \x7425 1235-34-4 sign \x7426 245-16-2 sign \x7427 2346-5 sign \x7428 123-123456-3 sign \x7429 12-1346-3 sign \x742A 245-16-2 sign \x742B 135-1356-4 sign \x742C 12456-4 sign \x742D 14-34-5 sign \x742E 245-12346-2 sign \x742F 13-12456-4 sign \x7430 2345-4 sign \x7431 145-246-3 sign \x7432 135-356-5 sign \x7433 14-1456-2 sign \x7434 245-1456-2 sign \x7435 1234-16-2 sign \x7436 1234-345-2 sign \x7437 245-236-5 sign \x7438 1-25-2 sign \x7439 245-1456-2 sign \x743A 12345-345-5 sign \x743C 245-235-2 sign \x743D 145-34-4 sign \x743E 13-346-5 sign \x743F 1235-123456-2 sign \x7440 1256-4 sign \x7441 134-356-5 sign \x7442 134-356-2 sign \x7444 15-45-3 sign \x7445 124-16-2 sign \x7446 15-13456-3 sign \x7447 145-2456-5 sign \x7448 1245-12356-2 sign \x7449 134-1456-2 sign \x744A 1-136-3 sign \x744B 1246-4 sign \x744C 1245-12456-4 sign \x744D 1235-12456-5 sign \x744E 13-346-3 sign \x744F 12-12456-3 sign \x7450 13-2345-4 sign \x7451 1-12456-5 sign \x7452 12-1346-5 sign \x7453 14-2345-5 sign \x7454 245-45-2 sign \x7455 15-23456-2 sign \x7456 145-12456-5 sign \x7457 45-5 sign \x7458 346-2 sign \x7459 1345-146-4 sign \x745A 1235-34-2 sign \x745B 13456-3 sign \x745C 1256-2 sign \x745D 1235-456-2 sign \x745E 1245-1246-5 sign \x745F 15-2346-5 sign \x7460 14-234-2 sign \x7462 1245-12346-2 sign \x7463 15-25-4 sign \x7464 246-2 sign \x7465 123456-3 sign \x7466 34-3 sign \x7467 13-1456-3 sign \x7468 13-1456-5 sign \x7469 13456-2 sign \x746A 134-345-4 sign \x746B 124-146-3 sign \x746C 14-234-2 sign \x746D 124-1346-2 sign \x746E 14-16-5 sign \x746F 14-1346-2 sign \x7470 13-1246-3 sign \x7471 124-2345-5 sign \x7472 245-46-3 sign \x7473 245-25-3 sign \x7474 13-236-2 sign \x7475 1-146-4 sign \x7476 246-2 sign \x7477 2456-5 sign \x7478 135-1456-3 sign \x7479 124-34-2 sign \x747A 12-1346-2 sign \x747B 123-123456-3 sign \x747C 1-12456-3 sign \x747D 245-12346-3 sign \x747E 13-1456-4 sign \x747F 16-3 sign \x7480 245-1246-4 sign \x7481 245-12346-3 sign \x7482 245-16-2 sign \x7483 14-16-2 sign \x7484 13456-4 sign \x7485 125-146-4 sign \x7486 245-234-2 sign \x7487 15-45-2 sign \x7488 146-2 sign \x7489 14-2345-4 sign \x748A 134-136-2 sign \x748B 1-1346-3 sign \x748C 1456-2 sign \x748E 13456-3 sign \x748F 1-156-5 sign \x7490 14-34-5 sign \x7491 34-2 sign \x7492 145-1356-3 sign \x7494 125-1356-3 sign \x7495 15-256-2 sign \x7496 245-1256-2 sign \x7497 145-1346-5 sign \x7498 14-1456-2 sign \x7499 14-246-2 sign \x749A 245-235-2 sign \x749B 15-34-5 sign \x749C 1235-456-2 sign \x749D 13-1246-3 sign \x749E 1234-34-2 sign \x749F 13-13456-4 sign \x74A0 12345-1236-2 sign \x74A1 13-1456-5 sign \x74A2 14-234-2 sign \x74A3 13-16-3 sign \x74A5 13-13456-4 sign \x74A6 2456-5 sign \x74A7 135-16-5 sign \x74A8 245-1236-5 sign \x74A9 245-1256-2 sign \x74AA 125-146-4 sign \x74AB 145-1346-3 sign \x74AC 13-246-4 sign \x74AD 13-123456-5 sign \x74AE 124-1236-4 sign \x74AF 1235-1246-5 sign \x74B0 1235-12456-2 sign \x74B1 15-2346-5 sign \x74B2 15-1246-5 sign \x74B3 124-2345-2 sign \x74B5 1256-2 sign \x74B6 13-1456-5 sign \x74B7 12345-34-3 sign \x74B8 135-1456-3 sign \x74B9 24-12356-5 sign \x74BA 123456-5 sign \x74BB 125-1246-4 sign \x74BC 14-1236-2 sign \x74BD 15-16-4 sign \x74BE 13-16-5 sign \x74BF 15-45-2 sign \x74C0 1245-12456-2 sign \x74C1 1235-25-5 sign \x74C2 13-2456-5 sign \x74C3 14-356-2 sign \x74C4 145-34-2 sign \x74C5 14-16-5 sign \x74C6 1-156-2 sign \x74C7 1245-12356-2 sign \x74C8 14-16-2 sign \x74C9 125-1236-5 sign \x74CA 245-235-2 sign \x74CB 1-2456-3 sign \x74CC 13-1246-3 sign \x74CD 15-1246-5 sign \x74CE 14-345-5 sign \x74CF 14-12346-2 sign \x74D0 14-34-2 sign \x74D1 14-16-5 sign \x74D2 125-1236-5 sign \x74D3 14-1236-5 sign \x74D4 13456-3 sign \x74D5 134-16-2 sign \x74D6 15-46-3 sign \x74D7 15-16-3 sign \x74D8 13-12456-5 sign \x74D9 145-146-5 sign \x74DA 125-1236-5 sign \x74DB 1235-12456-2 sign \x74DC 13-35-3 sign \x74DD 135-126-2 sign \x74DE 145-346-2 sign \x74DF 135-126-2 sign \x74E0 1235-34-2 sign \x74E1 1-156-2 sign \x74E2 1234-246-2 sign \x74E3 135-1236-5 sign \x74E4 1245-1346-2 sign \x74E5 14-16-5 sign \x74E6 35-4 sign \x74E8 13-1346-3 sign \x74E9 13-2456 sign \x74EA 12345-1236-4 sign \x74EB 1234-136-2 sign \x74EC 12345-1346-4 sign \x74ED 145-1236-4 sign \x74EE 12346-5 sign \x74EF 12356-3 sign \x74F3 1235-34-2 sign \x74F4 14-13456-2 sign \x74F5 16-2 sign \x74F6 1234-13456-2 sign \x74F7 245-156-2 sign \x74F9 13-45-5 sign \x74FA 12-1346-2 sign \x74FB 12-156-3 sign \x74FD 145-1346-5 sign \x74FE 35-3 sign \x74FF 1234-12356-4 sign \x7500 1-1246-5 sign \x7501 1234-13456-2 sign \x7502 135-2345-3 sign \x7503 1-12356-5 sign \x7504 1-136-3 sign \x7506 245-156-2 sign \x7507 13456-3 sign \x7508 245-16-5 sign \x7509 15-2345-2 sign \x750A 14-12356-4 sign \x750B 145-16-5 sign \x750C 12356-3 sign \x750D 134-1356-2 sign \x750E 1-12456-3 sign \x750F 1234-1356-5 sign \x7510 14-1456-5 sign \x7511 125-1356-5 sign \x7512 34-4 sign \x7513 1234-16-5 sign \x7514 145-1236-3 sign \x7515 12346-5 sign \x7516 13456-3 sign \x7517 2345-4 sign \x7518 13-1236-3 sign \x7519 145-2456-5 sign \x751A 24-136-5 sign \x751B 124-2345-2 sign \x751C 124-2345-2 sign \x751D 1235-1236-3 sign \x751E 12-1346-2 sign \x751F 24-1356-3 sign \x7520 245-13456-2 sign \x7521 24-136-3 sign \x7522 12-1236-4 sign \x7523 12-1236-4 sign \x7524 1245-1246-2 sign \x7525 24-1356-3 sign \x7526 15-34-3 sign \x7527 15-136-3 sign \x7528 235-5 sign \x7529 24-2356-4 sign \x752A 14-34-5 sign \x752B 12345-34-4 sign \x752C 235-4 sign \x752D 135-1356-2 sign \x752E 12345-1356-5 sign \x752F 1345-13456-5 sign \x7530 124-2345-2 sign \x7531 234-2 sign \x7532 13-23456-4 sign \x7533 24-136-3 sign \x7534 1-345-2 sign \x7535 145-2345-5 sign \x7536 12345-34-2 sign \x7537 1345-1236-2 sign \x7538 145-2345-5 sign \x7539 1234-13456-2 sign \x753A 124-13456-3 sign \x753B 1235-35-5 sign \x753C 124-13456-4 sign \x753D 245-45-4 sign \x753E 125-156-3 sign \x753F 134-1356-2 sign \x7540 135-16-5 sign \x7541 245-16-2 sign \x7542 134-34-4 sign \x7543 15-256-2 sign \x7544 14-234-2 sign \x7545 12-1346-5 sign \x7546 134-34-4 sign \x7547 256-2 sign \x7548 12345-1236-5 sign \x7549 12345-34-2 sign \x754A 13-1356-3 sign \x754B 124-2345-2 sign \x754C 13-346-5 sign \x754D 13-346-5 sign \x754E 245-45-4 sign \x754F 1246-5 sign \x7550 12345-34-2 sign \x7551 124-2345-2 sign \x7552 134-34-4 sign \x7554 1234-1236-5 sign \x7555 13-46-3 sign \x7556 35-3 sign \x7557 145-345-2 sign \x7558 1345-1236-2 sign \x7559 14-234-2 sign \x755A 135-136-4 sign \x755B 1-136-4 sign \x755C 12-34-5 sign \x755D 134-34-4 sign \x755E 134-34-4 sign \x755F 245-2346-5 sign \x7560 125-156-3 sign \x7561 13-2456-3 sign \x7562 135-16-5 sign \x7563 145-345-2 sign \x7564 1-156-4 sign \x7565 14-236-5 sign \x7566 245-16-2 sign \x7567 14-236-5 sign \x7568 1234-1236-3 sign \x756A 12345-1236-3 sign \x756B 1235-35-5 sign \x756C 1256-2 sign \x756D 1256-2 sign \x756E 134-34-4 sign \x756F 13-256-5 sign \x7570 16-5 sign \x7571 14-234-2 sign \x7572 1256-2 sign \x7573 145-346-2 sign \x7574 12-12356-2 sign \x7575 1235-35-5 sign \x7576 145-1346-3 sign \x7577 12-25-5 sign \x7578 13-16-3 sign \x7579 12456-4 sign \x757A 13-46-3 sign \x757B 24-1356-2 sign \x757C 12-1346-4 sign \x757D 124-12456-4 sign \x757E 14-356-2 sign \x757F 13-16-3 sign \x7580 12-345-3 sign \x7581 14-234-2 sign \x7583 124-12456-4 sign \x7584 14-1456-2 sign \x7585 13-46-3 sign \x7586 13-46-3 sign \x7587 12-12356-2 sign \x7588 135-126-5 sign \x7589 145-346-2 sign \x758A 145-346-2 sign \x758B 1234-16-4 sign \x758C 1345-346-5 sign \x758D 145-1236-5 sign \x758E 24-34-3 sign \x758F 24-34-3 sign \x7590 1-156-5 sign \x7591 16-2 sign \x7592 12-456-2 sign \x7593 1345-2456-4 sign \x7594 145-13456-3 sign \x7595 135-16-4 sign \x7596 13-346-2 sign \x7597 14-246-2 sign \x7598 13-12346-3 sign \x7599 13-2346-3 sign \x759A 13-234-5 sign \x759B 1-12356-4 sign \x759C 15-23456-5 sign \x759D 24-1236-5 sign \x759E 15-1256-3 sign \x759F 1345-236-5 sign \x75A0 14-16-5 sign \x75A1 46-2 sign \x75A2 12-136-5 sign \x75A3 234-2 sign \x75A4 135-345-3 sign \x75A5 13-346-5 sign \x75A6 13-236-2 sign \x75A7 245-16-2 sign \x75A8 15-23456-3 sign \x75A9 245-1246-5 sign \x75AA 135-16-5 sign \x75AB 16-5 sign \x75AC 14-16-5 sign \x75AD 125-12346-5 sign \x75AE 12-456-3 sign \x75AF 12345-1356-3 sign \x75B0 1-34-5 sign \x75B1 1234-146-5 sign \x75B2 1234-16-2 sign \x75B3 13-1236-3 sign \x75B4 2346-3 sign \x75B5 245-156-3 sign \x75B6 15-346-5 sign \x75B7 245-16-2 sign \x75B8 145-1236-4 sign \x75B9 1-136-4 sign \x75BA 12345-345-2 sign \x75BB 1-156-4 sign \x75BC 124-1356-2 sign \x75BD 13-1256-3 sign \x75BE 13-16-2 sign \x75BF 12345-356-5 sign \x75C0 13-1256-3 sign \x75C1 24-1236-3 sign \x75C2 13-23456-3 sign \x75C3 15-2345-2 sign \x75C4 12-345-2 sign \x75C5 135-13456-5 sign \x75C6 1345-16-5 sign \x75C7 1-1356-5 sign \x75C8 235-3 sign \x75C9 13-13456-5 sign \x75CA 245-45-2 sign \x75CB 12-12346-2 sign \x75CC 145-12346-5 sign \x75CD 16-2 sign \x75CE 13-346-3 sign \x75CF 1246-4 sign \x75D0 1235-1246-2 sign \x75D1 145-25-4 sign \x75D2 46-4 sign \x75D3 12-156-5 sign \x75D4 1-156-5 sign \x75D5 1235-136-2 sign \x75D6 23456-4 sign \x75D7 134-356-5 sign \x75D8 145-12356-5 sign \x75D9 13-13456-5 sign \x75DA 15-246-3 sign \x75DB 124-12346-5 sign \x75DC 124-34-3 sign \x75DD 134-1346-2 sign \x75DE 1234-16-4 sign \x75DF 15-246-3 sign \x75E0 15-12456-3 sign \x75E1 1234-34-3 sign \x75E2 14-16-5 sign \x75E3 1-156-5 sign \x75E4 245-25-2 sign \x75E5 145-25-2 sign \x75E6 34-5 sign \x75E7 24-345-3 sign \x75E8 14-146-2 sign \x75E9 24-12356-5 sign \x75EA 1235-12456-5 sign \x75EB 15-2345-2 sign \x75EC 16-5 sign \x75ED 1234-1356-2 sign \x75EE 1-1346-5 sign \x75EF 13-12456-4 sign \x75F0 124-1236-2 sign \x75F1 12345-356-5 sign \x75F2 134-345-2 sign \x75F3 14-1456-2 sign \x75F4 12-156-3 sign \x75F5 13-16-5 sign \x75F6 145-2345-4 sign \x75F7 1236-3 sign \x75F8 12-156-5 sign \x75F9 135-16-5 sign \x75FA 135-16-5 sign \x75FB 134-1456-2 sign \x75FC 13-34-5 sign \x75FD 145-1246-3 sign \x75FE 2346-3 sign \x75FF 1246-4 sign \x7600 1256-3 sign \x7601 245-1246-5 sign \x7602 23456-4 sign \x7603 1-34-4 sign \x7604 245-34-5 sign \x7605 145-1236-5 sign \x7606 24-136-5 sign \x7607 1-12346-4 sign \x7608 1-156-5 sign \x7609 1256-5 sign \x760A 1235-12356-2 sign \x760B 12345-1356-3 sign \x760C 14-345-5 sign \x760D 46-2 sign \x760E 24-136-5 sign \x760F 124-34-2 sign \x7610 1256-4 sign \x7611 13-35-3 sign \x7612 123456-2 sign \x7613 1235-12456-5 sign \x7614 123-34-5 sign \x7615 13-23456-4 sign \x7616 1456-3 sign \x7617 16-5 sign \x7618 14-1256-2 sign \x7619 15-146-3 sign \x761A 13-236-2 sign \x761B 12-156-5 sign \x761C 15-16-2 sign \x761D 13-12456-3 sign \x761E 16-5 sign \x761F 123456-3 sign \x7620 13-16-2 sign \x7621 12-456-3 sign \x7622 135-1236-3 sign \x7623 1235-1246-5 sign \x7624 14-234-2 sign \x7625 245-25-2 sign \x7626 24-12356-5 sign \x7627 1345-236-5 sign \x7628 145-2345-3 sign \x7629 145-345-1 sign \x762A 135-346-4 sign \x762B 124-1236-3 sign \x762C 1-1346-5 sign \x762D 135-246-3 sign \x762E 24-136-5 sign \x762F 245-34-5 sign \x7630 14-25-4 sign \x7631 16-5 sign \x7632 125-12346-5 sign \x7633 12-12356-3 sign \x7634 1-1346-5 sign \x7635 1-2456-5 sign \x7636 15-12356-5 sign \x7637 15-25-4 sign \x7638 245-236-2 sign \x7639 145-246-5 sign \x763A 14-12356-5 sign \x763B 14-1256-2 sign \x763C 134-126-5 sign \x763D 13-1456-5 sign \x763E 1456-4 sign \x763F 13456-4 sign \x7640 1235-456-2 sign \x7641 12345-34-2 sign \x7642 14-246-2 sign \x7643 14-12346-2 sign \x7644 245-246-2 sign \x7645 14-234-2 sign \x7646 14-146-2 sign \x7647 15-2345-2 sign \x7648 12345-356-5 sign \x7649 145-1236-5 sign \x764A 1456-5 sign \x764B 1235-2346-5 sign \x764C 2345-2 sign \x764D 135-1236-3 sign \x764E 15-2345-2 sign \x764F 13-12456-3 sign \x7650 13-2356-5 sign \x7651 1345-12346-2 sign \x7652 1256-5 sign \x7653 1246-2 sign \x7654 16-5 sign \x7655 235-3 sign \x7656 1234-16-4 sign \x7657 14-356-4 sign \x7658 14-16-5 sign \x7659 24-34-4 sign \x765A 145-1236-5 sign \x765B 14-1456-4 sign \x765C 145-2345-5 sign \x765D 14-1456-4 sign \x765E 14-2456-5 sign \x765F 135-346-4 sign \x7660 13-16-5 sign \x7661 12-156-3 sign \x7662 46-4 sign \x7663 15-2345-4 sign \x7664 13-346-2 sign \x7665 1-1356-3 sign \x7667 14-16-5 sign \x7668 1235-25-5 sign \x7669 14-2456-5 sign \x766A 135-345-1 sign \x766B 145-2345-3 sign \x766C 15-2345-4 sign \x766D 13456-4 sign \x766E 1456-4 sign \x766F 245-1256-2 sign \x7670 235-3 sign \x7671 124-1236-3 sign \x7672 145-2345-3 sign \x7673 14-25-4 sign \x7674 14-12456-2 sign \x7675 14-12456-2 sign \x7676 135-126-3 sign \x7678 13-1246-4 sign \x7679 1234-126-3 sign \x767A 12345-345-3 sign \x767B 145-1356-3 sign \x767C 12345-345-3 sign \x767D 135-2456-2 sign \x767E 135-2456-4 sign \x767F 245-346-2 sign \x7680 135-16-3 sign \x7681 125-146-5 sign \x7682 125-146-5 sign \x7683 134-146-5 sign \x7684 145-2346-1 sign \x7685 1234-345-3 sign \x7686 13-346-3 sign \x7687 1235-456-2 sign \x7688 13-1246-3 sign \x7689 245-156-4 sign \x768A 14-13456-2 sign \x768B 13-146-3 sign \x768C 134-126-5 sign \x768D 13-16-2 sign \x768E 13-246-4 sign \x768F 1234-1356-4 sign \x7690 13-146-3 sign \x7691 2456-2 sign \x7692 2346-2 sign \x7693 1235-146-5 sign \x7694 1235-1236-5 sign \x7695 135-16-5 sign \x7696 12456-4 sign \x7697 12-12356-2 sign \x7698 245-2345-5 sign \x7699 15-16-3 sign \x769A 2456-2 sign \x769B 13-235-4 sign \x769C 1235-146-5 sign \x769D 1235-456-4 sign \x769E 1235-146-5 sign \x769F 125-2346-2 sign \x76A0 245-1246-4 sign \x76A1 1235-146-5 sign \x76A2 15-246-4 sign \x76A3 346-5 sign \x76A4 1234-126-2 sign \x76A5 1235-146-5 sign \x76A6 13-246-4 sign \x76A7 2456-5 sign \x76A8 15-13456-3 sign \x76A9 1235-456-5 sign \x76AA 14-16-5 sign \x76AB 1234-246-4 sign \x76AC 1235-2346-5 sign \x76AD 13-246-5 sign \x76AE 1234-16-2 sign \x76AF 13-1236-4 sign \x76B0 1234-146-5 sign \x76B1 1-12356-5 sign \x76B2 13-256-3 sign \x76B3 245-234-2 sign \x76B4 245-123456-3 sign \x76B5 245-236-5 sign \x76B6 1-345-3 sign \x76B7 13-34-4 sign \x76B8 13-256-3 sign \x76B9 13-256-3 sign \x76BA 1-12356-5 sign \x76BB 1-345-3 sign \x76BC 13-34-4 sign \x76BD 1-1236-4 sign \x76BE 145-34-2 sign \x76BF 134-1456-4 sign \x76C0 245-16-4 sign \x76C1 13456-2 sign \x76C2 1256-2 sign \x76C3 135-356-3 sign \x76C4 1-146-3 sign \x76C5 1-12346-3 sign \x76C6 1234-136-2 sign \x76C7 1235-2346-2 sign \x76C8 13456-2 sign \x76C9 1235-2346-2 sign \x76CA 16-5 sign \x76CB 135-126-3 sign \x76CC 12456-4 sign \x76CD 1235-2346-2 sign \x76CE 1346-5 sign \x76CF 1-1236-4 sign \x76D0 2345-2 sign \x76D1 13-2345-3 sign \x76D2 1235-2346-2 sign \x76D3 1256-3 sign \x76D4 123-1246-3 sign \x76D5 12345-1236-5 sign \x76D6 13-2456-5 sign \x76D7 145-146-5 sign \x76D8 1234-1236-2 sign \x76D9 12345-34-4 sign \x76DA 245-234-2 sign \x76DB 24-1356-5 sign \x76DC 145-146-5 sign \x76DD 14-34-5 sign \x76DE 1-1236-4 sign \x76DF 134-1356-2 sign \x76E0 14-16-4 sign \x76E1 13-1456-5 sign \x76E2 15-1256-5 sign \x76E3 13-2345-3 sign \x76E4 1234-1236-2 sign \x76E5 13-12456-5 sign \x76E6 1236-3 sign \x76E7 14-34-2 sign \x76E8 24-34-4 sign \x76E9 1-12356-3 sign \x76EA 145-1346-5 sign \x76EB 1236-3 sign \x76EC 13-34-4 sign \x76ED 14-16-5 sign \x76EE 134-34-5 sign \x76EF 145-13456-3 sign \x76F0 13-1236-4 sign \x76F1 15-1256-3 sign \x76F2 134-1346-2 sign \x76F3 134-1346-2 sign \x76F4 1-156-2 sign \x76F5 245-16-5 sign \x76F6 1245-12456-4 sign \x76F7 124-2345-2 sign \x76F8 15-46-3 sign \x76F9 145-123456-4 sign \x76FA 15-1456-3 sign \x76FB 15-16-5 sign \x76FC 1234-1236-5 sign \x76FD 12345-1356-3 sign \x76FE 145-123456-5 sign \x76FF 134-1456-2 sign \x7700 134-13456-2 sign \x7701 24-1356-4 sign \x7702 24-156-5 sign \x7703 256-2 sign \x7704 134-2345-4 sign \x7705 1234-1236-3 sign \x7706 12345-1346-4 sign \x7707 134-246-4 sign \x7708 145-1236-3 sign \x7709 134-356-2 sign \x770A 134-146-5 sign \x770B 123-1236-5 sign \x770C 15-2345-5 sign \x770D 12356-3 sign \x770E 24-156-5 sign \x770F 46-3 sign \x7710 1-1356-3 sign \x7711 246-4 sign \x7712 24-136-5 sign \x7713 1235-25-5 sign \x7714 145-345-5 sign \x7715 1-136-4 sign \x7716 123-456-5 sign \x7717 13-1256-3 sign \x7718 24-136-5 sign \x7719 12-156-5 sign \x771A 24-1356-4 sign \x771B 134-356-5 sign \x771C 134-126-5 sign \x771D 1-34-5 sign \x771E 1-136-3 sign \x771F 1-136-3 sign \x7720 134-2345-2 sign \x7721 24-156-5 sign \x7722 12456-3 sign \x7723 145-346-2 sign \x7724 16-2 sign \x7725 125-156-5 sign \x7726 125-156-5 sign \x7727 12-146-4 sign \x7728 1-345-4 sign \x7729 15-45-5 sign \x772A 135-13456-4 sign \x772B 134-16-4 sign \x772C 14-12346-2 sign \x772D 1235-1246-3 sign \x772E 145-12346-5 sign \x772F 134-16-4 sign \x7730 145-346-2 sign \x7731 16-2 sign \x7732 156-5 sign \x7733 134-13456-2 sign \x7734 15-45-5 sign \x7735 12-156-3 sign \x7736 123-456-5 sign \x7737 13-45-5 sign \x7738 134-12356-2 sign \x7739 1-136-5 sign \x773A 124-246-5 sign \x773B 46-2 sign \x773C 2345-4 sign \x773D 134-126-5 sign \x773E 1-12346-5 sign \x773F 134-2456-5 sign \x7740 1-2346-1 sign \x7741 1-1356-3 sign \x7742 134-356-2 sign \x7743 13-256-5 sign \x7744 24-146-5 sign \x7745 1235-1236-5 sign \x7746 1235-12456-4 sign \x7747 145-16-5 sign \x7748 12-1356-4 sign \x7749 245-25-3 sign \x774A 13-45-5 sign \x774B 2346-2 sign \x774C 12456-4 sign \x774D 15-2345-5 sign \x774E 15-16-3 sign \x774F 123-123456-5 sign \x7750 14-2456-5 sign \x7751 13-2345-4 sign \x7752 24-1236-4 sign \x7753 124-2345-4 sign \x7754 1235-123456-4 sign \x7755 12456-4 sign \x7756 14-13456-2 sign \x7757 24-156-5 sign \x7758 245-235-2 sign \x7759 14-346-5 sign \x775A 26-2 sign \x775B 13-13456-3 sign \x775C 1-1356-3 sign \x775D 14-16-2 sign \x775E 14-2456-5 sign \x775F 15-1246-5 sign \x7760 13-45-5 sign \x7761 24-1246-5 sign \x7762 15-1246-3 sign \x7763 145-34-3 sign \x7764 135-16-5 sign \x7765 135-16-5 sign \x7766 134-34-5 sign \x7767 1235-123456-3 sign \x7768 1345-16-5 sign \x7769 14-34-5 sign \x776A 13-146-4 sign \x776B 13-346-2 sign \x776C 245-2456-4 sign \x776D 1-12356-4 sign \x776E 1256-2 sign \x776F 1235-123456-3 sign \x7770 134-345-5 sign \x7771 15-23456-5 sign \x7772 15-13456-4 sign \x7773 15-16-3 sign \x7774 13-123456-5 sign \x7776 12-123456-4 sign \x7777 13-2345-3 sign \x7778 134-356-5 sign \x7779 145-34-4 sign \x777A 1235-12356-2 sign \x777B 15-45-3 sign \x777C 124-16-5 sign \x777D 123-1246-2 sign \x777E 13-146-3 sign \x777F 1245-1246-5 sign \x7780 134-146-5 sign \x7781 15-1256-5 sign \x7782 12345-345-3 sign \x7783 123456-3 sign \x7784 134-246-2 sign \x7785 12-12356-4 sign \x7786 123-1246-5 sign \x7787 134-16-3 sign \x7788 12346-4 sign \x7789 123-12356-5 sign \x778A 145-1346-5 sign \x778B 12-136-3 sign \x778C 123-2346-3 sign \x778D 15-12356-4 sign \x778E 15-23456-3 sign \x778F 245-235-2 sign \x7790 134-146-5 sign \x7791 134-13456-2 sign \x7792 134-1236-2 sign \x7793 24-1246-5 sign \x7794 125-2346-2 sign \x7795 1-1346-5 sign \x7796 16-3 sign \x7797 145-246-3 sign \x7798 12356-3 sign \x7799 134-126-5 sign \x779A 24-123456-5 sign \x779B 245-12346-3 sign \x779C 14-12356-3 sign \x779D 12-156-3 sign \x779E 134-1236-2 sign \x779F 1234-246-4 sign \x77A0 12-1356-3 sign \x77A1 13-16-5 sign \x77A2 134-1356-2 sign \x77A3 1235-12456-5 sign \x77A4 1245-123456-2 sign \x77A5 1234-346-3 sign \x77A6 15-16-3 sign \x77A7 245-246-2 sign \x77A8 1234-34-3 sign \x77A9 1-34-4 sign \x77AA 145-1356-5 sign \x77AB 24-136-4 sign \x77AC 24-123456-5 sign \x77AD 14-246-4 sign \x77AE 12-2346-5 sign \x77AF 15-2345-2 sign \x77B0 123-1236-5 sign \x77B1 346-5 sign \x77B2 15-1256-5 sign \x77B3 124-12346-2 sign \x77B4 134-12356-2 sign \x77B5 14-1456-2 sign \x77B6 123-1246-5 sign \x77B7 13-2345-5 sign \x77B8 346-5 sign \x77B9 2456-5 sign \x77BA 1235-1246-5 sign \x77BB 1-1236-3 sign \x77BC 13-2345-4 sign \x77BD 13-34-4 sign \x77BE 1-146-5 sign \x77BF 245-1256-3 sign \x77C0 1246-2 sign \x77C1 12-12356-4 sign \x77C2 135-345-1 sign \x77C3 1345-13456-4 sign \x77C4 15-256-3 sign \x77C5 246-5 sign \x77C6 1235-25-5 sign \x77C7 134-1356-2 sign \x77C8 134-2345-2 sign \x77C9 1234-1456-2 sign \x77CA 134-2345-2 sign \x77CB 14-16-5 sign \x77CC 123-456-5 sign \x77CD 13-236-2 sign \x77CE 15-45-3 sign \x77CF 134-2345-2 sign \x77D0 1235-2346-5 sign \x77D1 14-34-2 sign \x77D2 134-1356-2 sign \x77D3 14-12346-2 sign \x77D4 13-12456-5 sign \x77D5 134-1236-4 sign \x77D6 15-16-4 sign \x77D7 12-34-5 sign \x77D8 124-1346-4 sign \x77D9 123-1236-5 sign \x77DA 1-34-4 sign \x77DB 134-146-2 sign \x77DC 13-1456-3 sign \x77DD 14-1456-2 sign \x77DE 1256-5 sign \x77DF 24-25-5 sign \x77E0 245-2346-5 sign \x77E1 13-236-2 sign \x77E2 24-156-4 sign \x77E3 16-4 sign \x77E4 24-136-4 sign \x77E5 1-156-3 sign \x77E6 1235-12356-2 sign \x77E7 24-136-4 sign \x77E8 13456-4 sign \x77E9 13-1256-4 sign \x77EA 1-12356-3 sign \x77EB 13-246-4 sign \x77EC 245-25-2 sign \x77ED 145-12456-4 sign \x77EE 2456-4 sign \x77EF 13-246-4 sign \x77F0 125-1356-3 sign \x77F1 1235-25-5 sign \x77F2 135-345-5 sign \x77F3 24-156-2 sign \x77F4 145-13456-5 sign \x77F5 245-16-5 sign \x77F6 13-16-3 sign \x77F7 125-156-4 sign \x77F8 1236-5 sign \x77F9 34-5 sign \x77FA 1-2346-2 sign \x77FB 123-34-5 sign \x77FC 13-46-3 sign \x77FD 15-16-5 sign \x77FE 12345-1236-2 sign \x77FF 123-456-5 sign \x7800 145-1346-5 sign \x7801 134-345-4 sign \x7802 24-345-3 sign \x7803 145-1236-3 sign \x7804 13-236-2 sign \x7805 14-16-5 sign \x7806 12345-34-3 sign \x7807 134-1456-2 sign \x7808 1345-25-4 sign \x7809 1235-25-5 sign \x780A 123-1346-5 sign \x780B 1-156-4 sign \x780C 245-16-5 sign \x780D 123-1236-4 sign \x780E 13-346-5 sign \x780F 135-1456-3 sign \x7810 2346-5 sign \x7811 23456-5 sign \x7812 1234-16-3 sign \x7813 1-2346-2 sign \x7814 2345-2 sign \x7815 15-1246-5 sign \x7816 1-12456-3 sign \x7817 12-2346-3 sign \x7818 145-123456-5 sign \x7819 1234-1236-3 sign \x781A 2345-5 sign \x781C 12345-1356-3 sign \x781D 12345-345-4 sign \x781E 134-126-5 sign \x781F 1-345-5 sign \x7820 245-1256-3 sign \x7821 1256-5 sign \x7822 14-25-4 sign \x7823 124-25-2 sign \x7824 124-25-2 sign \x7825 145-16-4 sign \x7826 1-2456-5 sign \x7827 1-136-3 sign \x7828 2456-5 sign \x7829 12345-356-5 sign \x782A 134-34-4 sign \x782B 1-34-4 sign \x782C 14-16-5 sign \x782D 135-2345-3 sign \x782E 1345-34-4 sign \x782F 1234-13456-3 sign \x7830 1234-1356-3 sign \x7831 14-13456-2 sign \x7832 1234-146-5 sign \x7833 14-2346-5 sign \x7834 1234-126-5 sign \x7835 135-126-3 sign \x7836 1234-126-5 sign \x7837 24-136-3 sign \x7838 125-345-2 sign \x7839 1345-25-4 sign \x783A 14-16-5 sign \x783B 14-12346-2 sign \x783C 124-12346-2 sign \x783E 14-16-5 sign \x7840 12-34-4 sign \x7841 123-1356-3 sign \x7842 245-45-2 sign \x7843 1-34-3 sign \x7844 123-456-3 sign \x7845 1235-25-5 sign \x7846 2346-5 sign \x7847 1345-146-2 sign \x7848 13-23456-2 sign \x7849 14-34-5 sign \x784A 1246-4 sign \x784B 2456-5 sign \x784C 14-25-5 sign \x784D 123-136-5 sign \x784E 15-13456-2 sign \x784F 2345-2 sign \x7850 124-12346-2 sign \x7851 1234-1356-3 sign \x7852 15-16-3 sign \x7854 1235-12346-2 sign \x7855 24-25-5 sign \x7856 15-23456-2 sign \x7857 245-246-3 sign \x7859 1246-5 sign \x785A 245-246-2 sign \x785C 123-1356-3 sign \x785D 15-246-3 sign \x785E 245-236-5 sign \x785F 12-1236-5 sign \x7860 14-1346-4 sign \x7861 1235-12346-2 sign \x7862 1256-2 sign \x7863 15-246-3 sign \x7864 15-23456-2 sign \x7865 134-1346-4 sign \x7866 14-12346-5 sign \x7867 235-4 sign \x7868 12-2346-3 sign \x7869 12-2346-5 sign \x786A 2346-2 sign \x786B 14-234-2 sign \x786C 13456-5 sign \x786D 134-1346-2 sign \x786E 245-236-5 sign \x786F 2345-5 sign \x7870 24-345-3 sign \x7871 123-123456-4 sign \x7872 1256-5 sign \x7875 14-34-4 sign \x7876 12-136-4 sign \x7877 13-2345-4 sign \x7878 1345-236-5 sign \x7879 15-12346-3 sign \x787A 1-25-2 sign \x787B 123-1356-3 sign \x787C 1234-1356-2 sign \x787D 2345-4 sign \x787E 1-1246-5 sign \x787F 123-12346-3 sign \x7880 245-1356-2 sign \x7881 13-16-3 sign \x7882 125-12346-5 sign \x7883 245-13456-5 sign \x7884 14-1456-2 sign \x7885 13-256-3 sign \x7886 135-126-3 sign \x7887 145-13456-5 sign \x7888 134-1456-2 sign \x7889 145-246-3 sign \x788A 13-2345-3 sign \x788B 1235-2346-5 sign \x788C 14-34-5 sign \x788D 2456-5 sign \x788E 15-1246-5 sign \x788F 245-236-5 sign \x7890 14-13456-2 sign \x7891 135-356-3 sign \x7892 1456-2 sign \x7893 145-1246-5 sign \x7894 34-4 sign \x7895 245-16-2 sign \x7896 14-123456-5 sign \x7897 12456-4 sign \x7898 145-2345-4 sign \x7899 13-1346-3 sign \x789A 1234-356-2 sign \x789B 245-16-5 sign \x789C 12-136-4 sign \x789D 1245-12456-4 sign \x789E 2345-2 sign \x789F 145-346-2 sign \x78A0 145-13456-5 sign \x78A1 145-34-2 sign \x78A2 124-25-2 sign \x78A3 13-346-2 sign \x78A4 13456-3 sign \x78A5 135-2345-4 sign \x78A6 123-2346-5 sign \x78A7 135-16-5 sign \x78A8 1246-3 sign \x78A9 24-25-5 sign \x78AA 1-136-3 sign \x78AB 145-12456-5 sign \x78AC 15-23456-2 sign \x78AD 145-1346-5 sign \x78AE 124-16-2 sign \x78AF 1345-146-4 sign \x78B0 1234-1356-5 sign \x78B1 13-2345-4 sign \x78B2 145-16-5 sign \x78B3 124-1236-5 sign \x78B4 12-345-2 sign \x78B6 245-16-5 sign \x78B8 12345-1356-3 sign \x78B9 15-45-5 sign \x78BA 245-236-5 sign \x78BB 245-236-5 sign \x78BC 134-345-4 sign \x78BD 13-12346-3 sign \x78BE 1345-2345-4 sign \x78BF 15-34-5 sign \x78C0 2346-2 sign \x78C1 245-156-2 sign \x78C2 14-234-5 sign \x78C3 124-16-2 sign \x78C4 124-1346-2 sign \x78C5 135-1346-5 sign \x78C6 1235-35-2 sign \x78C7 1234-16-3 sign \x78C8 1246-4 sign \x78C9 15-1346-4 sign \x78CA 14-356-4 sign \x78CB 245-25-3 sign \x78CC 124-2345-2 sign \x78CD 15-23456-2 sign \x78CE 15-16-3 sign \x78CF 14-2345-2 sign \x78D0 1234-1236-2 sign \x78D1 1246-5 sign \x78D2 256-4 sign \x78D3 145-1246-3 sign \x78D4 1-2346-2 sign \x78D5 123-2346-3 sign \x78D6 14-16-5 sign \x78D8 245-13456-5 sign \x78D9 13-123456-4 sign \x78DA 1-12456-3 sign \x78DB 12-1236-2 sign \x78DC 245-16-5 sign \x78DD 146-2 sign \x78DE 1234-1356-3 sign \x78DF 14-34-5 sign \x78E0 14-34-4 sign \x78E1 123-1236-5 sign \x78E2 245-46-4 sign \x78E3 12-136-4 sign \x78E4 1456-4 sign \x78E5 14-356-4 sign \x78E6 135-246-3 sign \x78E7 245-16-5 sign \x78E8 134-126-2 sign \x78E9 245-16-3 sign \x78EA 245-1246-3 sign \x78EB 125-12346-3 sign \x78EC 245-13456-5 sign \x78ED 12-25-5 sign \x78EF 13-16-3 sign \x78F0 24-1236-5 sign \x78F1 14-146-2 sign \x78F2 245-1256-2 sign \x78F3 125-1356-3 sign \x78F4 145-1356-5 sign \x78F5 13-2345-5 sign \x78F6 15-16-5 sign \x78F7 14-1456-2 sign \x78F8 145-13456-5 sign \x78F9 145-2345-5 sign \x78FA 1235-456-2 sign \x78FB 1234-1236-2 sign \x78FC 125-345-2 sign \x78FD 245-246-3 sign \x78FE 145-16-3 sign \x78FF 14-16-5 sign \x7901 13-246-3 sign \x7902 15-16-3 sign \x7903 1-1346-4 sign \x7904 245-246-2 sign \x7905 145-123456-3 sign \x7906 15-2345-4 sign \x7907 1256-5 sign \x7908 1-1246-5 sign \x7909 1235-2346-2 sign \x790A 1235-25-5 sign \x790B 1-2456-2 sign \x790C 14-356-5 sign \x790D 123-2346-4 sign \x790E 12-34-4 sign \x790F 13-16-2 sign \x7910 245-236-5 sign \x7911 145-1346-5 sign \x7912 16-4 sign \x7913 13-46-3 sign \x7914 1234-16-5 sign \x7915 1234-16-3 sign \x7916 1256-5 sign \x7917 1234-1456-3 sign \x7918 245-16-5 sign \x7919 2456-5 sign \x791A 123-2456-4 sign \x791B 13-2345-3 sign \x791C 1256-5 sign \x791D 1245-12456-4 sign \x791E 134-1356-2 sign \x791F 1234-146-5 sign \x7920 245-156-2 sign \x7921 135-126-2 sign \x7923 134-346-5 sign \x7924 245-345-4 sign \x7925 15-2345-2 sign \x7926 123-456-5 sign \x7927 14-356-4 sign \x7928 14-356-4 sign \x7929 1-156-5 sign \x792A 14-16-5 sign \x792B 14-16-5 sign \x792C 12345-1236-2 sign \x792D 245-236-5 sign \x792E 1234-146-5 sign \x792F 13456-3 sign \x7930 14-16-5 sign \x7931 14-12346-2 sign \x7932 14-12346-2 sign \x7933 134-126-5 sign \x7934 135-126-2 sign \x7935 24-456-3 sign \x7936 13-12456-5 sign \x7937 14-1236-2 sign \x7938 125-1236-4 sign \x7939 2345-2 sign \x793A 24-156-5 sign \x793B 24-156-5 sign \x793C 14-16-4 sign \x793D 1245-1356-2 sign \x793E 24-2346-5 sign \x793F 236-5 sign \x7940 15-156-5 sign \x7941 245-16-2 sign \x7942 124-3458-3 sign \x7943 134-345-5 sign \x7944 15-346-5 sign \x7945 246-3 sign \x7946 246-3 sign \x7947 1-156-4 sign \x7948 245-16-2 sign \x7949 1-156-4 sign \x794A 135-1356-3 sign \x794B 145-1246-5 sign \x794C 1-12346-5 sign \x794E 16-3 sign \x794F 24-156-2 sign \x7950 234-5 sign \x7951 1-156-5 sign \x7952 124-246-2 sign \x7953 12345-34-2 sign \x7954 12345-34-5 sign \x7955 134-16-5 sign \x7956 125-34-4 sign \x7957 1-156-3 sign \x7958 15-12456-5 sign \x7959 134-356-5 sign \x795A 125-25-5 sign \x795B 245-1256-3 sign \x795C 1235-34-5 sign \x795D 1-34-5 sign \x795E 24-136-2 sign \x795F 15-1246-5 sign \x7960 245-156-2 sign \x7961 12-2456-2 sign \x7962 134-16-2 sign \x7963 14-1256-4 sign \x7964 1256-4 sign \x7965 15-46-2 sign \x7966 34-2 sign \x7967 124-246-3 sign \x7968 1234-246-5 sign \x7969 1-34-3 sign \x796A 13-1246-4 sign \x796B 15-23456-2 sign \x796C 1-156-3 sign \x796D 13-16-5 sign \x796E 13-146-5 sign \x796F 1-136-3 sign \x7970 13-146-5 sign \x7971 24-1246-5 sign \x7972 13-1456-3 sign \x7973 12-136-4 sign \x7974 13-2456-3 sign \x7975 123-123456-4 sign \x7976 145-16-5 sign \x7977 145-146-4 sign \x7978 1235-25-5 sign \x7979 124-146-2 sign \x797A 245-16-2 sign \x797B 13-34-5 sign \x797C 13-12456-5 sign \x797D 125-1246-5 sign \x797E 14-13456-2 sign \x797F 14-34-5 sign \x7980 135-13456-4 sign \x7981 13-1456-5 sign \x7982 145-146-4 sign \x7983 1-156-2 sign \x7984 14-34-5 sign \x7985 12-1236-2 sign \x7986 135-356-3 sign \x7987 12-34-4 sign \x7988 1235-1246-3 sign \x7989 234-4 sign \x798A 15-16-5 sign \x798B 1456-3 sign \x798C 125-156-3 sign \x798D 1235-25-5 sign \x798E 1-136-3 sign \x798F 12345-34-2 sign \x7990 45-5 sign \x7991 34-2 sign \x7992 15-2345-4 sign \x7993 46-2 sign \x7994 124-16-2 sign \x7995 16-3 sign \x7996 134-356-2 sign \x7997 15-156-3 sign \x7998 145-16-5 sign \x799A 1-25-2 sign \x799B 1-136-3 sign \x799C 235-4 sign \x799D 13-16-2 sign \x799E 13-146-5 sign \x799F 124-1346-2 sign \x79A0 15-156-3 sign \x79A1 134-345-5 sign \x79A2 124-345-3 sign \x79A4 15-45-3 sign \x79A5 245-16-2 sign \x79A6 1256-5 sign \x79A7 15-16-4 sign \x79A8 13-16-3 sign \x79A9 15-156-5 sign \x79AA 12-1236-2 sign \x79AB 124-1236-4 sign \x79AC 123-2356-5 sign \x79AD 15-1246-5 sign \x79AE 14-16-4 sign \x79AF 1345-12346-2 sign \x79B0 1345-16-4 sign \x79B1 145-146-4 sign \x79B2 14-16-5 sign \x79B3 1245-1346-2 sign \x79B4 236-5 sign \x79B5 124-16-2 sign \x79B6 125-1236-5 sign \x79B7 14-356-5 sign \x79B8 1245-12356-2 sign \x79B9 1256-4 sign \x79BA 1256-2 sign \x79BB 14-16-2 sign \x79BC 15-346-5 sign \x79BD 245-1456-2 sign \x79BE 1235-2346-2 sign \x79BF 124-34-3 sign \x79C0 15-234-5 sign \x79C1 15-156-3 sign \x79C2 1245-136-2 sign \x79C3 124-34-3 sign \x79C4 125-156-4 sign \x79C5 12-345-2 sign \x79C6 13-1236-4 sign \x79C7 16-5 sign \x79C8 15-2345-3 sign \x79C9 135-13456-4 sign \x79CA 1345-2345-2 sign \x79CB 245-234-3 sign \x79CC 245-234-3 sign \x79CD 1-12346-4 sign \x79CE 12345-136-2 sign \x79CF 1235-146-5 sign \x79D0 256-2 sign \x79D1 123-2346-3 sign \x79D2 134-246-4 sign \x79D3 1-156-3 sign \x79D4 13-1356-3 sign \x79D5 135-16-4 sign \x79D6 1-156-3 sign \x79D7 1256-5 sign \x79D8 134-16-5 sign \x79D9 123-34-5 sign \x79DA 135-1236-5 sign \x79DB 1234-16-3 sign \x79DC 1345-16-2 sign \x79DD 14-16-5 sign \x79DE 234-2 sign \x79DF 125-34-3 sign \x79E0 1234-16-3 sign \x79E1 135-345-2 sign \x79E2 14-13456-2 sign \x79E3 134-126-5 sign \x79E4 12-1356-5 sign \x79E5 1345-2345-2 sign \x79E6 245-1456-2 sign \x79E7 46-3 sign \x79E8 125-25-2 sign \x79E9 1-156-5 sign \x79EA 1-156-3 sign \x79EB 24-34-2 sign \x79EC 13-1256-5 sign \x79ED 125-156-4 sign \x79EE 1235-25-2 sign \x79EF 13-16-3 sign \x79F0 12-1356-3 sign \x79F1 124-12346-2 sign \x79F2 1-156-5 sign \x79F3 1235-25-2 sign \x79F4 1235-2346-2 sign \x79F5 1456-3 sign \x79F6 1-2456-3 sign \x79F7 1-156-2 sign \x79F8 13-346-3 sign \x79F9 1245-136-4 sign \x79FA 145-34-5 sign \x79FB 16-2 sign \x79FC 1-34-3 sign \x79FD 1235-1246-5 sign \x79FE 1345-12346-2 sign \x79FF 12345-34-4 sign \x7A00 15-16-3 sign \x7A01 123-146-4 sign \x7A02 14-1346-2 sign \x7A03 12345-34-3 sign \x7A04 125-2346-5 sign \x7A05 24-1246-5 sign \x7A06 14-1256-4 sign \x7A07 123-123456-4 sign \x7A08 13-1236-4 sign \x7A09 13-1356-3 sign \x7A0A 124-16-2 sign \x7A0B 12-1356-2 sign \x7A0C 124-34-2 sign \x7A0D 24-146-3 sign \x7A0E 24-1246-5 sign \x7A0F 23456-5 sign \x7A10 14-123456-4 sign \x7A11 14-34-5 sign \x7A12 13-34-5 sign \x7A13 125-25-2 sign \x7A14 1245-136-4 sign \x7A15 1-123456-5 sign \x7A16 135-1346-5 sign \x7A17 135-2456-5 sign \x7A18 13-16-3 sign \x7A19 1-156-2 sign \x7A1A 1-156-5 sign \x7A1B 123-123456-4 sign \x7A1C 14-1356-2 sign \x7A1D 1234-1356-2 sign \x7A1E 123-2346-3 sign \x7A1F 135-13456-4 sign \x7A20 12-12356-2 sign \x7A21 125-34-2 sign \x7A22 1256-5 sign \x7A23 15-34-3 sign \x7A24 14-236-5 sign \x7A26 16-3 sign \x7A27 15-16-5 sign \x7A28 135-2345-3 sign \x7A29 13-16-5 sign \x7A2A 12345-34-5 sign \x7A2B 135-16-5 sign \x7A2C 1345-25-5 sign \x7A2D 13-346-3 sign \x7A2E 1-12346-4 sign \x7A2F 125-12346-3 sign \x7A30 15-1256-3 sign \x7A31 12-1356-3 sign \x7A32 145-146-5 sign \x7A33 123456-4 sign \x7A34 14-2345-2 sign \x7A35 125-156-3 sign \x7A36 1256-5 sign \x7A37 13-16-5 sign \x7A38 15-1256-5 sign \x7A39 1-136-4 sign \x7A3A 1-156-5 sign \x7A3B 145-146-5 sign \x7A3C 13-23456-5 sign \x7A3D 13-16-3 sign \x7A3E 13-146-4 sign \x7A3F 13-146-4 sign \x7A40 13-34-4 sign \x7A41 1245-12346-2 sign \x7A42 15-1246-5 sign \x7A44 13-16-5 sign \x7A45 123-1346-3 sign \x7A46 134-34-5 sign \x7A47 24-1236-3 sign \x7A48 134-136-2 sign \x7A49 1-156-5 sign \x7A4A 13-16-5 sign \x7A4B 14-34-5 sign \x7A4C 15-34-3 sign \x7A4D 13-16-3 sign \x7A4E 13456-4 sign \x7A4F 123456-4 sign \x7A50 245-234-3 sign \x7A51 15-2346-5 sign \x7A53 16-5 sign \x7A54 1235-456-2 sign \x7A55 245-346-5 sign \x7A56 13-16-4 sign \x7A57 15-1246-5 sign \x7A58 15-246-3 sign \x7A59 1234-34-2 sign \x7A5A 13-246-3 sign \x7A5B 1-25-3 sign \x7A5C 124-12346-2 sign \x7A5E 14-1256-4 sign \x7A5F 15-1246-5 sign \x7A60 1345-12346-2 sign \x7A61 15-2346-5 sign \x7A62 1235-1246-5 sign \x7A63 1245-1346-2 sign \x7A64 1345-25-5 sign \x7A65 1256-5 sign \x7A67 13-16-5 sign \x7A68 124-1246-2 sign \x7A69 123456-4 sign \x7A6A 12-1356-3 sign \x7A6B 1235-25-5 sign \x7A6C 13-12346-4 sign \x7A6D 14-1256-4 sign \x7A6E 135-246-3 sign \x7A70 1245-1346-2 sign \x7A71 1-25-3 sign \x7A72 14-16-2 sign \x7A73 125-1236-5 sign \x7A74 15-236-5 sign \x7A75 35-3 sign \x7A76 13-234-5 sign \x7A77 245-235-2 sign \x7A78 15-16-5 sign \x7A79 245-235-3 sign \x7A7A 123-12346-3 sign \x7A7B 1256-3 sign \x7A7C 15-136-3 sign \x7A7D 13-13456-4 sign \x7A7E 246-5 sign \x7A7F 12-12456-3 sign \x7A80 1-123456-3 sign \x7A81 124-34-2 sign \x7A82 14-146-2 sign \x7A83 245-346-5 sign \x7A84 1-2456-4 sign \x7A85 246-4 sign \x7A86 135-2345-4 sign \x7A87 135-146-2 sign \x7A88 246-4 sign \x7A89 135-13456-4 sign \x7A8A 35-3 sign \x7A8B 1-34-2 sign \x7A8C 13-246-5 sign \x7A8D 245-246-5 sign \x7A8E 145-246-5 sign \x7A8F 34-3 sign \x7A90 35-3 sign \x7A91 246-2 sign \x7A92 1-156-5 sign \x7A93 12-456-3 sign \x7A94 246-5 sign \x7A95 124-246-4 sign \x7A96 13-246-5 sign \x7A97 12-456-3 sign \x7A98 13-235-4 sign \x7A99 15-246-3 sign \x7A9A 12-1356-2 sign \x7A9B 123-12356-5 sign \x7A9C 245-12456-5 sign \x7A9D 25-3 sign \x7A9E 145-1236-5 sign \x7A9F 123-34-3 sign \x7AA0 123-2346-3 sign \x7AA1 1-1246-5 sign \x7AA2 15-1256-5 sign \x7AA3 15-34-5 sign \x7AA5 123-1246-3 sign \x7AA6 145-12356-5 sign \x7AA8 1456-5 sign \x7AA9 25-3 sign \x7AAA 35-3 sign \x7AAB 23456-5 sign \x7AAC 1256-2 sign \x7AAD 13-1256-5 sign \x7AAE 245-235-2 sign \x7AAF 246-2 sign \x7AB0 246-2 sign \x7AB1 124-246-5 sign \x7AB2 12-146-2 sign \x7AB3 1256-4 sign \x7AB4 124-2345-2 sign \x7AB5 145-246-5 sign \x7AB6 13-1256-5 sign \x7AB7 14-246-2 sign \x7AB8 15-16-3 sign \x7AB9 34-5 sign \x7ABA 123-1246-3 sign \x7ABB 12-456-3 sign \x7ABC 1-146-3 sign \x7ABE 123-12456-4 sign \x7ABF 14-12346-2 sign \x7AC0 12-1356-3 sign \x7AC1 245-1246-5 sign \x7AC2 1234-246-2 sign \x7AC3 125-146-5 sign \x7AC4 245-12456-5 sign \x7AC5 245-246-5 sign \x7AC6 245-235-2 sign \x7AC7 145-12356-5 sign \x7AC8 125-146-5 sign \x7AC9 14-12346-4 sign \x7ACA 245-346-5 sign \x7ACB 14-16-5 sign \x7ACC 12-34-5 sign \x7ACE 12345-12356-5 sign \x7AD0 12-34-5 sign \x7AD1 1235-12346-2 sign \x7AD2 245-16-2 sign \x7AD6 24-34-5 sign \x7AD7 134-246-5 sign \x7AD8 13-1256-4 sign \x7AD9 1-1236-5 sign \x7ADA 1-34-5 sign \x7ADB 14-13456-2 sign \x7ADC 14-12346-2 sign \x7ADD 135-13456-5 sign \x7ADE 13-13456-5 sign \x7ADF 13-13456-5 sign \x7AE0 1-1346-3 sign \x7AE2 15-156-5 sign \x7AE3 13-256-5 sign \x7AE4 1235-12346-2 sign \x7AE5 124-12346-2 sign \x7AE6 15-12346-4 sign \x7AE7 13-13456-5 sign \x7AE8 145-246-5 sign \x7AE9 16-5 sign \x7AEA 24-34-5 sign \x7AEB 13-13456-5 sign \x7AEC 245-1256-4 sign \x7AED 13-346-2 sign \x7AEE 1234-13456-2 sign \x7AEF 145-12456-3 sign \x7AF0 24-146-2 sign \x7AF1 1-12456-4 sign \x7AF2 245-1356-2 sign \x7AF3 145-1356-3 sign \x7AF4 245-1246-3 sign \x7AF5 2356-3 sign \x7AF6 13-13456-5 sign \x7AF7 123-1236-5 sign \x7AF8 13-13456-5 sign \x7AF9 1-34-2 sign \x7AFA 1-34-2 sign \x7AFB 14-2346-5 sign \x7AFC 1234-1356-2 sign \x7AFD 1256-2 sign \x7AFE 12-156-2 sign \x7AFF 13-1236-3 sign \x7B00 134-1346-2 sign \x7B01 1-34-2 sign \x7B03 145-34-4 sign \x7B04 13-16-3 sign \x7B05 15-246-2 sign \x7B06 135-345-3 sign \x7B07 15-12456-5 sign \x7B08 13-346-2 sign \x7B09 1-136-4 sign \x7B0A 1-146-4 sign \x7B0B 15-123456-4 sign \x7B0C 23456-2 sign \x7B0D 1-1246-5 sign \x7B0E 45-2 sign \x7B0F 1235-34-5 sign \x7B10 13-1346-3 sign \x7B11 15-246-5 sign \x7B12 245-136-2 sign \x7B13 1234-16-2 sign \x7B14 135-16-4 sign \x7B15 13-2345-4 sign \x7B16 16-4 sign \x7B17 145-12346-3 sign \x7B18 24-1236-3 sign \x7B19 24-1356-3 sign \x7B1A 15-23456-2 sign \x7B1B 145-16-2 sign \x7B1C 1-34-2 sign \x7B1D 1345-345-5 sign \x7B1E 12-156-3 sign \x7B1F 13-34-3 sign \x7B20 14-16-5 sign \x7B21 245-346-5 sign \x7B22 134-1456-4 sign \x7B23 135-146-3 sign \x7B24 124-246-2 sign \x7B25 15-156-5 sign \x7B26 12345-34-2 sign \x7B27 245-2346-5 sign \x7B28 135-136-5 sign \x7B29 1234-356-5 sign \x7B2A 145-345-2 sign \x7B2B 125-156-4 sign \x7B2C 145-16-5 sign \x7B2D 14-13456-2 sign \x7B2E 125-2346-2 sign \x7B2F 1345-34-2 sign \x7B30 12345-34-2 sign \x7B31 13-12356-4 sign \x7B32 12345-1236-2 sign \x7B33 13-23456-3 sign \x7B34 13-2346-4 sign \x7B35 12345-1236-5 sign \x7B36 24-156-4 sign \x7B37 134-146-4 sign \x7B38 1234-126-4 sign \x7B3A 13-2345-3 sign \x7B3B 1-34-2 sign \x7B3C 14-12346-2 sign \x7B3E 135-2345-3 sign \x7B3F 14-25-5 sign \x7B40 13-1246-5 sign \x7B41 245-1256-4 sign \x7B42 12-156-2 sign \x7B43 1456-3 sign \x7B44 246-5 sign \x7B45 15-2345-4 sign \x7B46 135-16-4 sign \x7B47 245-235-2 sign \x7B48 13-35-3 sign \x7B49 145-1356-4 sign \x7B4A 15-246-2 sign \x7B4B 13-1456-3 sign \x7B4C 245-45-2 sign \x7B4D 15-123456-4 sign \x7B4E 1245-34-2 sign \x7B4F 12345-345-2 sign \x7B50 123-456-3 sign \x7B51 1-34-2 sign \x7B52 124-12346-4 sign \x7B53 13-16-3 sign \x7B54 145-345-2 sign \x7B55 15-13456-2 sign \x7B56 245-2346-5 sign \x7B57 1-12346-5 sign \x7B58 123-12356-5 sign \x7B59 14-2456-2 sign \x7B5A 135-16-5 sign \x7B5B 24-2456-3 sign \x7B5C 145-1346-3 sign \x7B5D 1-1356-3 sign \x7B5E 245-2346-5 sign \x7B5F 12345-34-3 sign \x7B60 256-2 sign \x7B61 124-34-2 sign \x7B62 1234-345-2 sign \x7B63 14-16-2 sign \x7B64 14-1346-2 sign \x7B65 13-1256-4 sign \x7B66 13-12456-4 sign \x7B67 13-2345-4 sign \x7B68 1235-1236-2 sign \x7B69 124-12346-2 sign \x7B6A 15-23456-2 sign \x7B6B 1-156-5 sign \x7B6C 12-1356-2 sign \x7B6D 15-12456-5 sign \x7B6E 24-156-5 sign \x7B6F 1-34-5 sign \x7B70 125-25-2 sign \x7B71 15-246-4 sign \x7B72 24-146-3 sign \x7B73 124-13456-2 sign \x7B74 245-2346-5 sign \x7B75 2345-2 sign \x7B76 13-146-4 sign \x7B77 123-2356-5 sign \x7B78 13-1236-3 sign \x7B79 12-12356-2 sign \x7B7B 13-1346-5 sign \x7B7C 256-2 sign \x7B7E 245-2345-3 sign \x7B7F 15-246-4 sign \x7B80 13-2345-4 sign \x7B81 1234-34-2 sign \x7B82 14-2456-2 sign \x7B83 125-12356-3 sign \x7B84 1234-2456-2 sign \x7B85 135-16-5 sign \x7B86 135-16-5 sign \x7B87 13-2346-5 sign \x7B88 12-156-2 sign \x7B89 13-2356-4 sign \x7B8A 1256-3 sign \x7B8B 13-2345-3 sign \x7B8C 1-146-5 sign \x7B8D 13-34-3 sign \x7B8E 12-156-2 sign \x7B8F 1-1356-3 sign \x7B90 13-13456-3 sign \x7B91 24-345-5 sign \x7B92 1-12356-4 sign \x7B93 14-34-5 sign \x7B94 135-126-2 sign \x7B95 13-16-3 sign \x7B96 14-1456-2 sign \x7B97 15-12456-5 sign \x7B98 13-256-5 sign \x7B99 12345-34-2 sign \x7B9A 123-123456-3 sign \x7B9B 13-34-3 sign \x7B9C 123-12346-3 sign \x7B9D 245-2345-2 sign \x7B9E 245-45-3 sign \x7B9F 13-256-5 sign \x7BA0 12-1246-2 sign \x7BA1 13-12456-4 sign \x7BA2 45-3 sign \x7BA3 245-2346-5 sign \x7BA4 15-1246-5 sign \x7BA5 135-126-4 sign \x7BA6 125-2346-2 sign \x7BA7 245-346-5 sign \x7BA8 124-25-5 sign \x7BA9 14-25-2 sign \x7BAA 145-1236-3 sign \x7BAB 15-246-3 sign \x7BAC 1245-25-5 sign \x7BAD 13-2345-5 sign \x7BAF 135-2345-3 sign \x7BB0 15-123456-4 sign \x7BB1 15-46-3 sign \x7BB2 15-2345-4 sign \x7BB3 1234-13456-2 sign \x7BB4 1-136-3 sign \x7BB5 24-1356-4 sign \x7BB6 1235-34-2 sign \x7BB7 24-156-3 sign \x7BB8 1-34-5 sign \x7BB9 236-3 sign \x7BBA 12-123456-4 sign \x7BBB 14-1256-5 sign \x7BBC 34-3 sign \x7BBD 145-12346-4 sign \x7BBE 24-25-5 sign \x7BBF 13-16-2 sign \x7BC0 13-346-2 sign \x7BC1 1235-456-2 sign \x7BC2 15-13456-3 sign \x7BC3 134-356-2 sign \x7BC4 12345-1236-5 sign \x7BC5 12-1246-2 sign \x7BC6 1-12456-5 sign \x7BC7 1234-2345-3 sign \x7BC8 12345-1356-3 sign \x7BC9 1-34-2 sign \x7BCA 1235-12346-2 sign \x7BCB 245-346-5 sign \x7BCC 1235-12356-2 sign \x7BCD 245-234-3 sign \x7BCE 134-246-4 sign \x7BCF 245-2345-5 sign \x7BD1 123-1246-5 sign \x7BD3 14-12356-4 sign \x7BD4 256-2 sign \x7BD5 1235-2346-2 sign \x7BD6 124-1346-2 sign \x7BD7 236-5 sign \x7BD8 12-12356-3 sign \x7BD9 13-146-3 sign \x7BDA 12345-356-4 sign \x7BDB 1245-25-5 sign \x7BDC 1-1356-3 sign \x7BDD 13-12356-3 sign \x7BDE 1345-346-5 sign \x7BDF 245-2345-5 sign \x7BE0 15-246-4 sign \x7BE1 245-12456-5 sign \x7BE2 13-12346-3 sign \x7BE3 1234-1346-2 sign \x7BE4 145-34-4 sign \x7BE5 14-16-5 sign \x7BE6 135-16-5 sign \x7BE7 1-25-2 sign \x7BE8 12-34-2 sign \x7BE9 24-2456-3 sign \x7BEA 12-156-2 sign \x7BEB 1-34-2 sign \x7BEC 245-46-3 sign \x7BED 14-12346-2 sign \x7BEE 14-1236-2 sign \x7BEF 13-2345-3 sign \x7BF0 135-34-5 sign \x7BF1 14-16-2 sign \x7BF2 15-1246-5 sign \x7BF3 135-16-5 sign \x7BF4 145-16-2 sign \x7BF5 245-12346-3 sign \x7BF6 2345-3 sign \x7BF7 1234-1356-2 sign \x7BF8 15-136-3 sign \x7BF9 1-12456-5 sign \x7BFA 1234-2456-2 sign \x7BFB 1234-246-4 sign \x7BFC 145-12356-3 sign \x7BFD 1256-4 sign \x7BFE 134-346-5 sign \x7BFF 124-12456-2 sign \x7C00 125-2346-2 sign \x7C01 15-156-3 sign \x7C02 13-25-2 sign \x7C03 16-2 sign \x7C04 1235-34-5 sign \x7C05 12-1236-4 sign \x7C06 123-12356-5 sign \x7C07 245-34-5 sign \x7C08 1234-13456-2 sign \x7C09 12-12356-5 sign \x7C0A 13-16-3 sign \x7C0B 13-1246-4 sign \x7C0C 15-34-5 sign \x7C0D 14-12356-4 sign \x7C0E 13-16-2 sign \x7C0F 14-34-5 sign \x7C10 1345-2345-4 sign \x7C11 15-25-3 sign \x7C12 245-12456-5 sign \x7C14 15-25-3 sign \x7C15 14-2346-5 sign \x7C16 145-12456-5 sign \x7C18 15-246-3 sign \x7C19 135-126-2 sign \x7C1A 134-16-5 sign \x7C1B 15-156-3 sign \x7C1C 145-1346-5 sign \x7C1D 14-246-2 sign \x7C1E 145-1236-3 sign \x7C1F 145-2345-5 sign \x7C20 12345-34-4 sign \x7C21 13-2345-4 sign \x7C22 134-1456-4 sign \x7C23 123-1246-5 sign \x7C24 145-2456-5 sign \x7C25 13-246-3 sign \x7C26 145-1356-3 sign \x7C27 1235-456-2 sign \x7C28 15-123456-4 sign \x7C29 14-146-2 sign \x7C2A 125-1236-3 sign \x7C2B 15-246-3 sign \x7C2C 145-34-5 sign \x7C2D 24-156-5 sign \x7C2E 125-1236-3 sign \x7C30 1234-2456-2 sign \x7C32 1234-2456-2 sign \x7C33 13-1236-4 sign \x7C34 13-1256-5 sign \x7C35 145-34-5 sign \x7C36 14-34-5 sign \x7C37 2345-2 sign \x7C38 135-126-4 sign \x7C39 145-1346-3 sign \x7C3A 15-2456-5 sign \x7C3B 1-35-3 sign \x7C3C 14-12346-2 sign \x7C3D 245-2345-3 sign \x7C3E 14-2345-2 sign \x7C3F 135-34-5 sign \x7C40 1-12356-5 sign \x7C41 14-2456-5 sign \x7C43 14-1236-2 sign \x7C44 123-1246-5 sign \x7C45 1256-2 sign \x7C46 236-5 sign \x7C47 1235-146-2 sign \x7C48 1-136-3 sign \x7C49 124-2456-2 sign \x7C4A 124-16-5 sign \x7C4B 134-16-2 sign \x7C4C 12-12356-2 sign \x7C4D 13-16-2 sign \x7C50 124-1356-2 sign \x7C51 1-12456-5 sign \x7C52 1-12356-5 sign \x7C53 12345-1236-3 sign \x7C54 15-12356-4 sign \x7C55 1-12356-5 sign \x7C57 1-25-2 sign \x7C58 124-1356-2 sign \x7C59 14-34-5 sign \x7C5A 14-34-2 sign \x7C5B 13-2345-3 sign \x7C5C 124-25-5 sign \x7C5D 13456-2 sign \x7C5E 1256-5 sign \x7C5F 14-2456-5 sign \x7C60 14-12346-2 sign \x7C62 14-2345-2 sign \x7C63 14-1236-2 sign \x7C64 245-2345-3 sign \x7C65 236-5 sign \x7C66 1-12346-3 sign \x7C67 245-1256-2 sign \x7C68 14-2345-2 sign \x7C69 135-2345-3 sign \x7C6A 145-12456-5 sign \x7C6B 125-12456-4 sign \x7C6C 14-16-2 sign \x7C6D 15-156-3 sign \x7C6E 14-25-2 sign \x7C6F 13456-2 sign \x7C70 236-5 sign \x7C71 1-25-2 sign \x7C72 1256-5 sign \x7C73 134-16-4 sign \x7C74 145-16-2 sign \x7C75 12345-1236-2 sign \x7C76 24-136-3 sign \x7C77 1-2346-2 sign \x7C78 24-136-3 sign \x7C79 1245-34-4 sign \x7C7A 15-346-2 sign \x7C7B 14-356-5 sign \x7C7C 15-2345-3 sign \x7C7D 125-156-4 sign \x7C7E 1345-16-2 sign \x7C7F 245-123456-5 sign \x7C80 1-1346-5 sign \x7C81 245-2345-3 sign \x7C83 135-16-4 sign \x7C84 135-1236-4 sign \x7C85 34-5 sign \x7C86 24-345-3 sign \x7C87 123-1346-3 sign \x7C88 1245-12356-4 sign \x7C89 12345-136-4 sign \x7C8A 135-16-5 sign \x7C8B 245-1246-5 sign \x7C8C 1456-2 sign \x7C8D 14-16-2 sign \x7C8E 12-156-4 sign \x7C91 135-345-3 sign \x7C92 14-16-5 sign \x7C93 13-1236-3 sign \x7C94 13-1256-5 sign \x7C95 1234-126-5 sign \x7C96 134-126-5 sign \x7C97 245-34-3 sign \x7C98 1345-2345-2 sign \x7C99 1-12356-5 sign \x7C9A 14-16-2 sign \x7C9B 15-34-5 sign \x7C9C 124-246-5 sign \x7C9D 14-16-5 sign \x7C9E 15-16-3 sign \x7C9F 15-34-5 sign \x7CA0 1235-12346-2 sign \x7CA1 124-12346-2 sign \x7CA2 125-156-3 sign \x7CA3 245-2346-5 sign \x7CA4 236-5 sign \x7CA5 1-12356-3 sign \x7CA6 14-1456-2 sign \x7CA7 1-456-3 sign \x7CA8 135-2456-4 sign \x7CAA 12345-136-5 sign \x7CAE 14-46-2 sign \x7CAF 15-2345-5 sign \x7CB0 12345-34-3 sign \x7CB1 14-46-2 sign \x7CB2 245-1236-5 sign \x7CB3 13-1356-3 sign \x7CB4 14-16-4 sign \x7CB5 236-5 sign \x7CB6 14-34-5 sign \x7CB7 13-1256-2 sign \x7CB8 245-16-2 sign \x7CB9 245-1246-5 sign \x7CBA 135-2456-5 sign \x7CBB 1-1346-3 sign \x7CBC 14-1456-2 sign \x7CBD 125-12346-5 sign \x7CBE 13-13456-3 sign \x7CBF 13-25-4 sign \x7CC1 15-1236-4 sign \x7CC2 15-1236-4 sign \x7CC3 124-1346-2 sign \x7CC4 135-2345-3 sign \x7CC5 1245-12356-4 sign \x7CC6 134-2345-5 sign \x7CC7 1235-12356-2 sign \x7CC8 15-1256-3 sign \x7CC9 125-12346-5 sign \x7CCA 1235-34-2 sign \x7CCB 13-2345-5 sign \x7CCC 125-1236-2 sign \x7CCD 245-156-2 sign \x7CCE 14-134 sign \x7CCF 15-346-5 sign \x7CD0 12345-34-3 sign \x7CD1 1345-16-5 sign \x7CD2 135-356-5 sign \x7CD3 13-34-4 sign \x7CD4 15-234-4 sign \x7CD5 13-146-3 sign \x7CD6 124-1346-2 sign \x7CD7 245-234-4 sign \x7CD9 245-146-3 sign \x7CDA 1-456-3 sign \x7CDB 124-1346-2 sign \x7CDC 134-16-2 sign \x7CDD 15-1236-4 sign \x7CDE 12345-136-5 sign \x7CDF 125-146-3 sign \x7CE0 123-1346-3 sign \x7CE1 13-46-5 sign \x7CE2 134-126-2 sign \x7CE3 15-1236-4 sign \x7CE4 15-1236-4 sign \x7CE5 1345-25-5 sign \x7CE6 15-16-3 sign \x7CE7 14-46-2 sign \x7CE8 13-46-5 sign \x7CE9 123-2356-5 sign \x7CEA 135-126-2 sign \x7CEB 1235-12456-2 sign \x7CEC 135-345-1 sign \x7CED 125-12346-5 sign \x7CEE 13-2345-5 sign \x7CEF 1345-25-5 sign \x7CF0 124-12456-2 sign \x7CF1 1345-346-5 sign \x7CF2 14-16-5 sign \x7CF3 125-25-5 sign \x7CF4 145-16-2 sign \x7CF5 1345-346-5 sign \x7CF6 124-246-5 sign \x7CF7 14-1236-2 sign \x7CF8 134-16-5 sign \x7CF9 15-156-3 sign \x7CFA 13-234-3 sign \x7CFB 15-16-5 sign \x7CFC 13-12346-3 sign \x7CFD 1-1356-4 sign \x7CFE 13-234-3 sign \x7CFF 234-5 sign \x7D00 13-16-5 sign \x7D01 12-345-5 sign \x7D02 1-12356-5 sign \x7D03 15-256-2 sign \x7D04 236-3 sign \x7D05 1235-12346-2 sign \x7D06 1256-3 sign \x7D07 1235-2346-2 sign \x7D08 12456-2 sign \x7D09 1245-136-5 sign \x7D0A 123456-5 sign \x7D0B 123456-2 sign \x7D0C 245-234-2 sign \x7D0D 1345-345-5 sign \x7D0E 125-156-3 sign \x7D0F 124-12356-4 sign \x7D10 1345-234-4 sign \x7D11 12345-12356-2 sign \x7D12 13-16-5 sign \x7D13 24-34-3 sign \x7D14 12-123456-2 sign \x7D15 1234-16-3 sign \x7D16 1-136-5 sign \x7D17 24-345-3 sign \x7D18 1235-12346-2 sign \x7D19 1-156-4 sign \x7D1A 13-16-2 sign \x7D1B 12345-136-3 sign \x7D1C 256-2 sign \x7D1D 1245-136-5 sign \x7D1E 145-1236-4 sign \x7D1F 13-1456-3 sign \x7D20 15-34-5 sign \x7D21 12345-1346-4 sign \x7D22 15-25-4 sign \x7D23 245-1246-5 sign \x7D24 13-234-4 sign \x7D25 1-345-2 sign \x7D27 13-1456-4 sign \x7D28 12345-34-5 sign \x7D29 1-156-5 sign \x7D2A 245-156-4 sign \x7D2B 125-156-4 sign \x7D2C 12-12356-2 sign \x7D2D 1235-12346-2 sign \x7D2E 1-345-2 sign \x7D2F 14-356-5 sign \x7D30 15-16-5 sign \x7D31 12345-34-2 sign \x7D32 15-346-5 sign \x7D33 24-136-3 sign \x7D34 135-356-5 sign \x7D35 1-34-5 sign \x7D36 245-1256-4 sign \x7D37 14-13456-2 sign \x7D38 1-34-5 sign \x7D39 24-146-5 sign \x7D3A 13-1236-5 sign \x7D3B 46-3 sign \x7D3C 12345-34-2 sign \x7D3D 124-25-2 sign \x7D3E 1-136-4 sign \x7D3F 145-2456-5 sign \x7D40 12-34-5 sign \x7D41 24-156-3 sign \x7D42 1-12346-3 sign \x7D43 15-2345-2 sign \x7D44 125-34-4 sign \x7D45 13-235-3 sign \x7D46 135-1236-5 sign \x7D47 245-1256-2 sign \x7D48 134-126-5 sign \x7D49 24-34-5 sign \x7D4A 125-1246-5 sign \x7D4C 13-13456-3 sign \x7D4D 1245-136-2 sign \x7D4E 1235-1356-5 sign \x7D4F 15-346-5 sign \x7D50 13-346-2 sign \x7D51 1-34-3 sign \x7D52 12-12356-2 sign \x7D53 13-35-5 sign \x7D54 135-2456-4 sign \x7D55 13-236-2 sign \x7D56 123-456-5 sign \x7D57 1235-34-2 sign \x7D58 125-156-3 sign \x7D59 13-1356-3 sign \x7D5A 13-1356-3 sign \x7D5B 124-146-3 sign \x7D5C 13-346-2 sign \x7D5D 123-34-5 sign \x7D5E 13-246-4 sign \x7D5F 245-45-3 sign \x7D60 13-2456-4 sign \x7D61 14-25-5 sign \x7D62 15-45-5 sign \x7D63 135-1356-3 sign \x7D64 15-2345-5 sign \x7D65 12345-34-2 sign \x7D66 13-356-4 sign \x7D67 124-12346-2 sign \x7D68 1245-12346-2 sign \x7D69 124-246-5 sign \x7D6A 1456-3 sign \x7D6B 14-356-4 sign \x7D6C 15-346-5 sign \x7D6D 245-45-5 sign \x7D6E 15-1256-5 sign \x7D6F 13-2456-3 sign \x7D70 145-346-2 sign \x7D71 124-12346-4 sign \x7D72 15-156-3 sign \x7D73 13-46-5 sign \x7D74 15-46-2 sign \x7D75 1235-1246-5 sign \x7D76 13-236-2 sign \x7D77 1-156-2 sign \x7D78 13-2345-4 sign \x7D79 13-45-5 sign \x7D7A 12-156-3 sign \x7D7B 123456-5 sign \x7D7C 1-136-4 sign \x7D7D 14-1256-4 sign \x7D7E 12-1356-2 sign \x7D7F 245-234-2 sign \x7D80 24-34-3 sign \x7D81 135-1346-4 sign \x7D82 124-12346-4 sign \x7D83 15-246-3 sign \x7D84 12456-5 sign \x7D85 245-1456-3 sign \x7D86 13-1356-4 sign \x7D87 15-234-4 sign \x7D88 124-16-2 sign \x7D89 15-234-5 sign \x7D8A 15-346-2 sign \x7D8B 1235-12346-2 sign \x7D8C 15-16-5 sign \x7D8D 12345-34-2 sign \x7D8E 124-13456-3 sign \x7D8F 15-1246-3 sign \x7D90 145-1246-5 sign \x7D91 123-123456-4 sign \x7D92 12345-34-3 sign \x7D93 13-13456-3 sign \x7D94 1235-34-5 sign \x7D95 1-156-3 sign \x7D96 2345-2 sign \x7D97 13-235-4 sign \x7D98 12345-1356-2 sign \x7D99 13-16-5 sign \x7D9C 125-12346-5 sign \x7D9D 12-136-3 sign \x7D9E 145-25-4 sign \x7D9F 14-16-5 sign \x7DA0 14-1256-5 sign \x7DA1 14-46-2 sign \x7DA2 12-12356-2 sign \x7DA3 245-45-4 sign \x7DA4 24-146-5 sign \x7DA5 245-16-5 sign \x7DA6 245-16-2 sign \x7DA7 1-123456-4 sign \x7DA8 245-16-2 sign \x7DA9 12456-4 sign \x7DAA 245-2345-5 sign \x7DAB 15-2345-5 sign \x7DAC 24-12356-5 sign \x7DAD 1246-2 sign \x7DAE 245-16-4 sign \x7DAF 124-146-2 sign \x7DB0 12456-4 sign \x7DB1 13-1346-3 sign \x7DB2 456-4 sign \x7DB3 135-1356-3 sign \x7DB4 1-1246-5 sign \x7DB5 245-2456-4 sign \x7DB6 13-25-4 sign \x7DB7 125-1246-5 sign \x7DB8 14-123456-2 sign \x7DB9 14-234-4 sign \x7DBA 245-16-4 sign \x7DBB 1-1236-5 sign \x7DBC 135-16-5 sign \x7DBD 12-25-5 sign \x7DBE 14-13456-2 sign \x7DBF 134-2345-2 sign \x7DC0 245-16-3 sign \x7DC1 245-346-5 sign \x7DC2 124-1236-3 sign \x7DC3 125-12346-3 sign \x7DC4 13-123456-4 sign \x7DC5 125-12356-3 sign \x7DC6 15-16-5 sign \x7DC7 125-156-3 sign \x7DC8 15-13456-5 sign \x7DC9 14-46-4 sign \x7DCA 13-1456-4 sign \x7DCB 12345-356-3 sign \x7DCC 1245-1246-2 sign \x7DCD 134-1456-2 sign \x7DCE 1256-5 sign \x7DCF 125-12346-4 sign \x7DD0 12345-1236-2 sign \x7DD1 14-1256-5 sign \x7DD2 15-1256-5 sign \x7DD3 13456-3 sign \x7DD4 1-1346-5 sign \x7DD6 15-1256-5 sign \x7DD7 15-46-3 sign \x7DD8 13-2345-3 sign \x7DD9 123-2346-5 sign \x7DDA 15-2345-5 sign \x7DDB 1245-12456-4 sign \x7DDC 134-2345-2 sign \x7DDD 245-16-5 sign \x7DDE 145-12456-5 sign \x7DDF 1-12346-5 sign \x7DE0 145-16-5 sign \x7DE1 134-1456-2 sign \x7DE2 134-246-2 sign \x7DE3 45-2 sign \x7DE4 15-346-5 sign \x7DE5 135-146-4 sign \x7DE6 15-156-3 sign \x7DE7 245-234-3 sign \x7DE8 135-2345-3 sign \x7DE9 1235-12456-4 sign \x7DEA 13-1356-3 sign \x7DEB 125-12346-4 sign \x7DEC 134-2345-4 sign \x7DED 1246-5 sign \x7DEE 12345-34-5 sign \x7DEF 1246-4 sign \x7DF0 124-12356-2 sign \x7DF1 13-12356-3 sign \x7DF2 134-246-4 sign \x7DF3 15-346-2 sign \x7DF4 14-2345-5 sign \x7DF5 125-12346-3 sign \x7DF6 1234-2345-2 sign \x7DF7 256-5 sign \x7DF8 1456-3 sign \x7DF9 124-16-2 sign \x7DFA 13-35-3 sign \x7DFB 1-156-5 sign \x7DFC 256-3 sign \x7DFD 12-1356-3 sign \x7DFE 12-1236-2 sign \x7DFF 145-2456-5 sign \x7E00 15-23456-2 sign \x7E01 45-2 sign \x7E02 125-12346-4 sign \x7E03 15-1256-3 sign \x7E06 13-1356-3 sign \x7E08 13456-2 sign \x7E09 13-1456-5 sign \x7E0A 16-5 sign \x7E0B 1-1246-5 sign \x7E0C 1345-16-5 sign \x7E0D 135-1346-3 sign \x7E0E 13-34-4 sign \x7E0F 1234-1236-2 sign \x7E10 1-12356-5 sign \x7E11 13-2345-3 sign \x7E12 245-25-4 sign \x7E13 245-45-2 sign \x7E14 24-456-4 sign \x7E15 256-5 sign \x7E16 15-23456-2 sign \x7E17 245-1246-3 sign \x7E18 15-16-3 sign \x7E19 1245-12346-2 sign \x7E1A 124-146-3 sign \x7E1B 12345-34-2 sign \x7E1C 256-2 sign \x7E1D 1-136-4 sign \x7E1E 13-146-4 sign \x7E1F 1245-34-5 sign \x7E20 1235-34-2 sign \x7E21 125-2456-4 sign \x7E22 124-1356-2 sign \x7E23 15-2345-5 sign \x7E24 15-34-5 sign \x7E25 1-136-4 sign \x7E26 125-12346-5 sign \x7E27 124-146-3 sign \x7E29 245-2456-5 sign \x7E2A 135-16-5 sign \x7E2B 12345-1356-2 sign \x7E2C 245-34-5 sign \x7E2D 14-16-2 sign \x7E2E 15-25-3 sign \x7E2F 2345-4 sign \x7E30 15-16-4 sign \x7E31 125-12346-5 sign \x7E32 14-356-2 sign \x7E33 1-12456-5 sign \x7E34 245-2345-5 sign \x7E35 134-1236-5 sign \x7E36 1-156-2 sign \x7E37 14-1256-4 sign \x7E38 134-126-5 sign \x7E39 1234-246-4 sign \x7E3A 14-2345-2 sign \x7E3B 134-16-2 sign \x7E3C 15-45-5 sign \x7E3D 125-12346-4 sign \x7E3E 13-16-3 sign \x7E3F 24-1236-3 sign \x7E40 15-1246-5 sign \x7E41 12345-1236-2 sign \x7E42 14-1256-5 sign \x7E43 135-1356-3 sign \x7E44 16-3 sign \x7E45 15-146-3 sign \x7E46 134-12356-2 sign \x7E47 234-2 sign \x7E48 245-46-4 sign \x7E49 1235-123456-2 sign \x7E4B 15-16-5 sign \x7E4C 24-345-4 sign \x7E4D 15-234-5 sign \x7E4E 1245-1236-2 sign \x7E4F 15-45-5 sign \x7E50 1235-1246-5 sign \x7E51 245-246-3 sign \x7E52 125-1356-3 sign \x7E53 125-25-4 sign \x7E54 1-156-3 sign \x7E55 24-1236-5 sign \x7E56 15-1236-4 sign \x7E57 14-1456-2 sign \x7E58 1256-5 sign \x7E59 12345-1236-3 sign \x7E5A 14-246-2 sign \x7E5B 12-25-5 sign \x7E5C 125-123456-3 sign \x7E5D 13-2345-5 sign \x7E5E 1245-146-5 sign \x7E5F 12-1236-4 sign \x7E60 1245-1246-4 sign \x7E61 15-234-5 sign \x7E62 1235-1246-5 sign \x7E63 1235-35-5 sign \x7E64 125-12456-4 sign \x7E65 15-16-3 sign \x7E66 245-46-4 sign \x7E68 145-345-2 sign \x7E69 24-1356-2 sign \x7E6A 1235-1246-5 sign \x7E6B 15-16-5 sign \x7E6C 15-2346-5 sign \x7E6D 13-2345-4 sign \x7E6E 13-46-3 sign \x7E6F 15-45-5 sign \x7E70 125-146-4 sign \x7E71 245-12346-3 sign \x7E72 13-346-5 sign \x7E73 13-246-4 sign \x7E74 135-16-5 sign \x7E75 12-1236-2 sign \x7E76 16-5 sign \x7E77 1345-146-2 sign \x7E78 15-1246-5 sign \x7E79 16-5 sign \x7E7A 24-2456-4 sign \x7E7B 15-1256-3 sign \x7E7C 13-16-5 sign \x7E7D 135-1456-3 sign \x7E7E 245-2345-4 sign \x7E7F 13-246-3 sign \x7E80 1234-34-2 sign \x7E81 15-256-3 sign \x7E82 125-12456-4 sign \x7E83 245-16-2 sign \x7E84 1234-1356-2 sign \x7E85 14-16-5 sign \x7E86 134-126-5 sign \x7E87 14-356-5 sign \x7E88 15-346-2 sign \x7E89 125-12456-4 sign \x7E8A 123-456-5 sign \x7E8B 234-3 sign \x7E8C 15-1256-5 sign \x7E8D 14-356-2 sign \x7E8E 15-2345-3 sign \x7E8F 12-1236-2 sign \x7E91 14-34-2 sign \x7E92 12-1236-2 sign \x7E93 13456-3 sign \x7E94 245-2456-2 sign \x7E95 15-46-3 sign \x7E96 15-2345-3 sign \x7E97 125-1246-3 sign \x7E98 125-12456-4 sign \x7E99 14-25-5 sign \x7E9A 15-16-4 sign \x7E9B 145-146-5 sign \x7E9C 14-1236-4 sign \x7E9D 14-356-2 sign \x7E9E 14-2345-5 sign \x7E9F 15-156-3 sign \x7EA0 13-234-3 sign \x7EA1 1256-3 sign \x7EA2 1235-12346-2 sign \x7EA3 1-12356-5 sign \x7EA4 15-2345-3 sign \x7EA5 1235-2346-2 sign \x7EA6 236-3 sign \x7EA7 13-16-2 sign \x7EA8 12456-2 sign \x7EA9 123-456-5 sign \x7EAA 13-16-5 sign \x7EAB 1245-136-5 sign \x7EAC 1246-4 sign \x7EAD 256-2 sign \x7EAE 1235-12346-2 sign \x7EAF 12-123456-2 sign \x7EB0 1234-16-3 sign \x7EB1 24-345-3 sign \x7EB2 13-1346-3 sign \x7EB3 1345-345-5 sign \x7EB4 1245-136-2 sign \x7EB5 125-12346-5 sign \x7EB6 14-123456-2 sign \x7EB7 12345-136-3 sign \x7EB8 1-156-4 sign \x7EB9 123456-2 sign \x7EBA 12345-1346-4 sign \x7EBB 1-34-5 sign \x7EBC 1456-4 sign \x7EBD 1345-234-4 sign \x7EBE 24-34-3 sign \x7EBF 15-2345-5 sign \x7EC0 13-1236-5 sign \x7EC1 15-346-5 sign \x7EC2 12345-34-2 sign \x7EC3 14-2345-5 sign \x7EC4 125-34-4 sign \x7EC5 24-136-3 sign \x7EC6 15-16-5 sign \x7EC7 1-156-3 sign \x7EC8 1-12346-3 sign \x7EC9 1-12356-5 sign \x7ECA 135-1236-5 sign \x7ECB 12345-34-2 sign \x7ECC 12-34-5 sign \x7ECD 24-146-5 sign \x7ECE 16-5 sign \x7ECF 13-13456-3 sign \x7ED0 145-2456-5 sign \x7ED1 135-1346-4 sign \x7ED2 1245-12346-2 sign \x7ED3 13-346-2 sign \x7ED4 123-34-5 sign \x7ED5 1245-146-5 sign \x7ED6 145-346-2 sign \x7ED7 1235-1356-5 sign \x7ED8 1235-1246-5 sign \x7ED9 13-356-4 sign \x7EDA 15-45-5 sign \x7EDB 13-46-5 sign \x7EDC 14-25-5 sign \x7EDD 13-236-2 sign \x7EDE 13-246-4 sign \x7EDF 124-12346-4 sign \x7EE0 13-1356-4 sign \x7EE1 15-246-3 sign \x7EE2 13-45-5 sign \x7EE3 15-234-5 sign \x7EE4 15-16-5 sign \x7EE5 15-1246-3 sign \x7EE6 124-146-3 sign \x7EE7 13-16-5 sign \x7EE8 124-16-2 sign \x7EE9 13-16-3 sign \x7EEA 15-1256-5 sign \x7EEB 14-13456-2 sign \x7EEC 13456-3 sign \x7EED 15-1256-5 sign \x7EEE 245-16-4 sign \x7EEF 12345-356-3 sign \x7EF0 12-25-5 sign \x7EF1 1-1346-4 sign \x7EF2 13-123456-4 sign \x7EF3 24-1356-2 sign \x7EF4 1246-2 sign \x7EF5 134-2345-2 sign \x7EF6 24-12356-5 sign \x7EF7 135-1356-3 sign \x7EF8 12-12356-2 sign \x7EF9 124-146-2 sign \x7EFA 14-234-4 sign \x7EFB 245-45-4 sign \x7EFC 125-12346-5 sign \x7EFD 1-1236-5 sign \x7EFE 12456-4 sign \x7EFF 14-1256-5 sign \x7F00 1-1246-5 sign \x7F01 125-156-3 sign \x7F02 123-2346-5 sign \x7F03 15-46-3 sign \x7F04 13-2345-3 sign \x7F05 134-2345-4 sign \x7F06 14-1236-4 sign \x7F07 124-16-2 sign \x7F08 134-246-4 sign \x7F09 245-16-5 sign \x7F0A 256-3 sign \x7F0B 1235-1246-5 sign \x7F0C 15-156-3 sign \x7F0D 145-25-4 sign \x7F0E 145-12456-5 sign \x7F0F 1234-2345-2 sign \x7F10 15-2345-5 sign \x7F11 13-12356-3 sign \x7F12 1-1246-5 sign \x7F13 1235-12456-4 sign \x7F14 145-16-5 sign \x7F15 14-1256-4 sign \x7F16 135-2345-3 sign \x7F17 134-1456-2 sign \x7F18 45-2 sign \x7F19 13-1456-5 sign \x7F1A 12345-34-2 sign \x7F1B 1245-34-5 sign \x7F1C 1-136-4 sign \x7F1D 12345-1356-2 sign \x7F1E 24-2356-3 sign \x7F1F 13-146-4 sign \x7F20 12-1236-2 sign \x7F21 14-16-2 sign \x7F22 16-5 sign \x7F23 13-2345-3 sign \x7F24 135-1456-3 sign \x7F25 1234-246-4 sign \x7F26 134-1236-5 sign \x7F27 14-356-2 sign \x7F28 13456-3 sign \x7F29 15-25-3 sign \x7F2A 134-12356-2 sign \x7F2B 15-146-3 sign \x7F2C 15-346-2 sign \x7F2D 14-246-2 sign \x7F2E 24-1236-5 sign \x7F2F 125-1356-3 sign \x7F30 13-46-3 sign \x7F31 245-2345-4 sign \x7F32 125-146-4 sign \x7F33 15-45-5 sign \x7F34 13-246-4 sign \x7F35 125-12456-4 sign \x7F36 12345-12356-4 sign \x7F37 15-346-5 sign \x7F38 13-1346-3 sign \x7F39 12345-12356-4 sign \x7F3A 245-236-3 sign \x7F3B 12345-12356-4 sign \x7F3D 135-126-3 sign \x7F3E 1234-13456-2 sign \x7F3F 15-46-5 sign \x7F41 13-1346-3 sign \x7F42 13456-3 sign \x7F43 13456-3 sign \x7F44 245-13456-5 sign \x7F45 15-23456-5 sign \x7F46 13-12456-5 sign \x7F47 125-123456-3 sign \x7F48 124-1236-2 sign \x7F4A 245-16-5 sign \x7F4B 12346-5 sign \x7F4C 13456-3 sign \x7F4D 14-356-2 sign \x7F4E 124-1236-2 sign \x7F4F 14-34-2 sign \x7F50 13-12456-5 sign \x7F51 456-4 sign \x7F52 456-4 sign \x7F53 13-1346-3 sign \x7F54 456-4 sign \x7F55 1235-1236-4 sign \x7F57 14-25-2 sign \x7F58 12345-34-2 sign \x7F59 24-136-3 sign \x7F5A 12345-345-2 sign \x7F5B 13-34-3 sign \x7F5C 1-34-4 sign \x7F5D 13-346-3 sign \x7F5E 134-146-2 sign \x7F5F 13-34-4 sign \x7F60 134-1456-2 sign \x7F61 13-1346-3 sign \x7F62 135-345-5 sign \x7F63 13-35-5 sign \x7F64 124-16-2 sign \x7F65 13-45-5 sign \x7F66 12345-34-2 sign \x7F67 15-136-3 sign \x7F68 2345-4 sign \x7F69 1-146-5 sign \x7F6A 125-1246-5 sign \x7F6B 13-35-5 sign \x7F6C 1-25-2 sign \x7F6D 1256-5 sign \x7F6E 1-156-5 sign \x7F6F 1236-4 sign \x7F70 12345-345-2 sign \x7F71 1345-1236-4 sign \x7F72 24-34-4 sign \x7F73 15-156-3 sign \x7F74 1234-16-2 sign \x7F75 134-345-5 sign \x7F76 14-234-4 sign \x7F77 135-345-5 sign \x7F78 12345-345-2 sign \x7F79 14-16-2 sign \x7F7A 1-146-3 sign \x7F7B 1246-5 sign \x7F7C 135-16-5 sign \x7F7D 13-16-5 sign \x7F7E 125-1356-3 sign \x7F7F 12-12346-3 sign \x7F80 14-234-4 sign \x7F81 13-16-3 sign \x7F82 13-45-5 sign \x7F83 134-16-5 sign \x7F84 1-146-5 sign \x7F85 14-25-2 sign \x7F86 1234-16-2 sign \x7F87 13-16-3 sign \x7F88 13-16-3 sign \x7F89 14-12456-2 sign \x7F8A 46-2 sign \x7F8B 134-346-3 sign \x7F8C 245-46-3 sign \x7F8D 124-345-5 sign \x7F8E 134-356-4 sign \x7F8F 46-2 sign \x7F90 234-4 sign \x7F91 234-4 sign \x7F92 12345-136-2 sign \x7F93 135-345-3 sign \x7F94 13-146-3 sign \x7F95 46-5 sign \x7F96 13-34-4 sign \x7F97 245-46-3 sign \x7F98 125-1346-3 sign \x7F99 13-146-3 sign \x7F9A 14-13456-2 sign \x7F9B 16-5 sign \x7F9C 1-34-5 sign \x7F9D 145-16-3 sign \x7F9E 15-234-3 sign \x7F9F 245-2345-3 sign \x7FA0 16-2 sign \x7FA1 15-2345-5 sign \x7FA2 1245-12346-2 sign \x7FA3 245-256-2 sign \x7FA4 245-256-2 sign \x7FA5 245-2345-3 sign \x7FA6 1235-12456-2 sign \x7FA7 125-1246-3 sign \x7FA8 15-2345-5 sign \x7FA9 16-5 sign \x7FAB 245-46-3 sign \x7FAC 2345-2 sign \x7FAD 1256-2 sign \x7FAE 13-1356-3 sign \x7FAF 13-346-2 sign \x7FB0 124-1346-3 sign \x7FB1 45-2 sign \x7FB2 15-16-3 sign \x7FB3 12345-1236-2 sign \x7FB4 124-1236-4 sign \x7FB5 12345-136-2 sign \x7FB6 24-1236-3 sign \x7FB7 14-2345-4 sign \x7FB8 14-356-2 sign \x7FB9 13-1356-3 sign \x7FBA 1345-12356-2 sign \x7FBB 245-46-5 sign \x7FBC 12-1236-5 sign \x7FBD 1256-4 sign \x7FBE 13-12346-5 sign \x7FBF 16-5 sign \x7FC0 12-12346-2 sign \x7FC1 12346-3 sign \x7FC2 12345-136-3 sign \x7FC3 1235-12346-2 sign \x7FC4 12-156-5 sign \x7FC5 12-156-5 sign \x7FC6 245-1246-5 sign \x7FC7 12345-34-2 sign \x7FC8 15-23456-2 sign \x7FC9 1234-136-4 sign \x7FCA 16-5 sign \x7FCB 14-345-3 sign \x7FCC 16-5 sign \x7FCD 1234-16-3 sign \x7FCE 14-13456-2 sign \x7FCF 14-234-5 sign \x7FD0 1-156-5 sign \x7FD1 245-1256-2 sign \x7FD2 15-16-2 sign \x7FD3 15-346-2 sign \x7FD4 15-46-2 sign \x7FD5 15-16-5 sign \x7FD6 15-16-5 sign \x7FD7 245-16-2 sign \x7FD8 245-246-5 sign \x7FD9 1235-1246-5 sign \x7FDA 1235-1246-3 sign \x7FDB 24-34-5 sign \x7FDC 15-2346-5 sign \x7FDD 1235-12346-2 sign \x7FDE 13-46-3 sign \x7FDF 1-2456-2 sign \x7FE0 245-1246-5 sign \x7FE1 12345-356-4 sign \x7FE2 124-146-3 sign \x7FE3 24-345-5 sign \x7FE4 12-156-5 sign \x7FE5 1-34-5 sign \x7FE6 13-2345-4 sign \x7FE7 15-45-3 sign \x7FE8 24-156-5 sign \x7FE9 1234-2345-3 sign \x7FEA 125-12346-3 sign \x7FEB 12456-5 sign \x7FEC 1235-1246-3 sign \x7FED 1235-12356-2 sign \x7FEE 1235-2346-2 sign \x7FEF 1235-34-2 sign \x7FF0 1235-1236-5 sign \x7FF1 146-2 sign \x7FF2 1234-246-3 sign \x7FF3 16-3 sign \x7FF4 14-2345-2 sign \x7FF5 245-1256-2 sign \x7FF7 14-1456-2 sign \x7FF8 1234-136-4 sign \x7FF9 245-246-5 sign \x7FFA 146-2 sign \x7FFB 12345-1236-3 sign \x7FFC 16-5 sign \x7FFD 1235-1246-5 sign \x7FFE 15-45-3 sign \x7FFF 145-146-5 sign \x8000 246-5 sign \x8001 14-146-4 sign \x8003 123-146-4 sign \x8004 134-146-5 sign \x8005 1-2346-4 sign \x8006 245-16-2 sign \x8007 13-12356-4 sign \x8008 13-12356-4 sign \x8009 13-12356-4 sign \x800A 145-346-5 sign \x800B 145-346-2 sign \x800C 156-2 sign \x800D 24-35-4 sign \x800E 1245-12456-4 sign \x800F 156-2 sign \x8010 1345-2456-5 sign \x8011 1-12456-3 sign \x8012 14-356-4 sign \x8013 124-13456-3 sign \x8014 125-156-4 sign \x8015 13-1356-3 sign \x8016 12-146-5 sign \x8017 1235-146-5 sign \x8018 256-2 sign \x8019 1234-345-2 sign \x801A 1234-16-3 sign \x801B 12-156-2 sign \x801C 15-156-5 sign \x801D 12-34-2 sign \x801E 13-23456-3 sign \x801F 13-1256-5 sign \x8020 1235-2346-2 sign \x8021 12-34-2 sign \x8022 14-146-5 sign \x8023 14-123456-4 sign \x8024 13-16-2 sign \x8025 124-1346-4 sign \x8026 12356-4 sign \x8027 14-12356-2 sign \x8028 1245-34-5 sign \x8029 13-12356-3 sign \x802A 1234-1346-4 sign \x802B 125-2346-2 sign \x802C 14-12356-2 sign \x802D 13-16-3 sign \x802E 14-146-5 sign \x802F 1235-25-5 sign \x8030 234-3 sign \x8031 134-126-5 sign \x8032 1235-2356-2 sign \x8033 156-4 sign \x8034 1345-346-5 sign \x8035 145-13456-4 sign \x8036 346-3 sign \x8037 145-345-3 sign \x8038 15-12346-4 sign \x8039 245-1456-2 sign \x803A 256-2 sign \x803B 12-156-4 sign \x803C 145-1236-3 sign \x803D 145-1236-3 sign \x803E 1235-12346-2 sign \x803F 13-1356-4 sign \x8040 1-156-2 sign \x8042 1345-346-5 sign \x8043 145-1236-3 sign \x8044 1-136-4 sign \x8045 12-2346-5 sign \x8046 14-13456-2 sign \x8047 1-1356-3 sign \x8048 13-246-3 sign \x8049 35-3 sign \x804A 14-246-2 sign \x804B 14-12346-2 sign \x804C 1-156-2 sign \x804D 1345-13456-2 sign \x804E 124-246-3 sign \x804F 1345-1256-5 sign \x8050 23456-5 sign \x8051 145-346-2 sign \x8052 13-35-3 sign \x8053 15-1256-5 sign \x8054 14-2345-2 sign \x8055 1235-146-5 sign \x8056 24-1356-5 sign \x8057 14-346-5 sign \x8058 1234-1456-5 sign \x8059 13-13456-3 sign \x805A 13-1256-5 sign \x805B 135-16-5 sign \x805C 145-16-4 sign \x805D 13-25-2 sign \x805E 123456-2 sign \x805F 15-1256-5 sign \x8060 1234-13456-2 sign \x8061 245-12346-3 sign \x8064 124-13456-2 sign \x8065 1256-4 sign \x8066 245-12346-3 sign \x8067 123-1246-2 sign \x8069 123-1246-5 sign \x806A 245-12346-3 sign \x806B 14-2345-2 sign \x806C 12346-4 sign \x806D 123-1246-5 sign \x806E 14-2345-2 sign \x806F 14-2345-2 sign \x8070 245-12346-3 sign \x8071 146-2 sign \x8072 24-1356-3 sign \x8073 15-12346-4 sign \x8074 124-13456-3 sign \x8075 123-1246-5 sign \x8076 1345-346-5 sign \x8077 1-156-2 sign \x8078 145-1236-3 sign \x8079 1345-13456-2 sign \x807B 13-16-3 sign \x807C 124-13456-3 sign \x807D 124-13456-3 sign \x807E 14-12346-2 sign \x807F 1256-5 sign \x8080 1256-5 sign \x8081 1-146-5 sign \x8082 15-156-5 sign \x8083 15-34-5 sign \x8084 16-5 sign \x8085 15-34-5 sign \x8086 15-156-5 sign \x8087 1-146-5 sign \x8088 1-146-5 sign \x8089 1245-12356-5 sign \x808A 16-5 sign \x808B 14-2346-5 sign \x808C 13-16-3 sign \x808D 245-234-2 sign \x808E 123-136-4 sign \x808F 245-146-5 sign \x8090 13-2346-3 sign \x8091 145-16-5 sign \x8092 1235-12456-5 sign \x8093 1235-456-3 sign \x8094 16-4 sign \x8095 1245-136-5 sign \x8096 15-246-5 sign \x8097 1245-34-4 sign \x8098 1-12356-4 sign \x8099 45-3 sign \x809A 145-34-5 sign \x809B 13-1346-3 sign \x809C 1245-12346-2 sign \x809D 13-1236-3 sign \x809E 12-345-3 sign \x809F 25-5 sign \x80A0 12-1346-2 sign \x80A1 13-34-4 sign \x80A2 1-156-3 sign \x80A3 1235-1236-2 sign \x80A4 12345-34-3 sign \x80A5 12345-356-2 sign \x80A6 12345-136-2 sign \x80A7 1234-356-3 sign \x80A8 1234-1346-5 sign \x80A9 13-2345-3 sign \x80AA 12345-1346-2 sign \x80AB 124-123456-2 sign \x80AC 234-2 sign \x80AD 1345-345-5 sign \x80AE 1346-3 sign \x80AF 123-136-4 sign \x80B0 1245-1236-2 sign \x80B1 13-12346-3 sign \x80B2 1256-5 sign \x80B3 123456-4 sign \x80B4 246-2 sign \x80B5 245-16-2 sign \x80B6 1234-16-2 sign \x80B7 245-2345-3 sign \x80B8 15-16-5 sign \x80B9 15-16-3 sign \x80BA 12345-356-5 sign \x80BB 123-136-4 sign \x80BC 13-13456-4 sign \x80BD 124-2456-5 sign \x80BE 24-136-5 sign \x80BF 1-12346-4 sign \x80C0 1-1346-5 sign \x80C1 15-346-2 sign \x80C2 24-136-3 sign \x80C3 1246-5 sign \x80C4 1-12356-5 sign \x80C5 145-346-2 sign \x80C6 145-1236-4 sign \x80C7 12345-356-5 sign \x80C8 135-345-2 sign \x80C9 135-126-2 sign \x80CA 245-1256-2 sign \x80CB 124-2345-2 sign \x80CC 135-356-5 sign \x80CD 13-34-3 sign \x80CE 124-2456-3 sign \x80CF 125-156-4 sign \x80D0 123-34-3 sign \x80D1 1-156-3 sign \x80D2 1345-16-5 sign \x80D3 1234-13456-2 sign \x80D4 125-156-5 sign \x80D5 12345-34-3 sign \x80D6 1234-1346-5 sign \x80D7 1-136-4 sign \x80D8 15-2345-2 sign \x80D9 125-34-5 sign \x80DA 1234-356-3 sign \x80DB 13-23456-4 sign \x80DC 15-13456-3 sign \x80DD 1-156-3 sign \x80DE 135-146-3 sign \x80DF 134-34-4 sign \x80E0 245-1256-3 sign \x80E1 1235-34-2 sign \x80E2 123-2346-3 sign \x80E3 12-156-4 sign \x80E4 1456-5 sign \x80E5 15-1256-3 sign \x80E6 46-3 sign \x80E7 14-12346-2 sign \x80E8 145-12346-5 sign \x80E9 123-345-4 sign \x80EA 14-34-2 sign \x80EB 13-13456-5 sign \x80EC 1345-34-4 sign \x80ED 2345-3 sign \x80EE 135-1346-4 sign \x80EF 123-35-5 sign \x80F0 16-2 sign \x80F1 13-456-3 sign \x80F2 13-2456-3 sign \x80F3 13-2346-3 sign \x80F4 145-12346-5 sign \x80F5 12-156-3 sign \x80F6 13-246-3 sign \x80F7 15-235-3 sign \x80F8 15-235-3 sign \x80F9 156-2 sign \x80FA 1236-3 sign \x80FB 15-13456-2 sign \x80FC 1234-2345-2 sign \x80FD 1345-1356-2 sign \x80FE 125-156-5 sign \x8100 12-1356-2 sign \x8101 124-246-5 sign \x8102 1-156-3 sign \x8103 245-1246-5 sign \x8104 134-356-2 sign \x8105 15-346-2 sign \x8106 245-1246-5 sign \x8107 15-346-2 sign \x8108 134-126-5 sign \x8109 134-126-5 sign \x810A 13-16-4 sign \x810D 123-2356-5 sign \x810E 15-345-5 sign \x810F 125-1346-5 sign \x8110 245-16-2 sign \x8111 1345-146-4 sign \x8112 134-16-4 sign \x8113 1345-12346-2 sign \x8114 14-12456-2 sign \x8115 12456-5 sign \x8116 135-126-2 sign \x8117 123456-4 sign \x8118 13-12456-4 sign \x8119 245-234-2 sign \x811A 13-246-4 sign \x811B 13-13456-5 sign \x811C 1245-12356-2 sign \x811D 1235-1356-3 sign \x811E 245-25-4 sign \x811F 14-346-5 sign \x8120 24-1236-3 sign \x8121 124-13456-4 sign \x8122 134-356-2 sign \x8123 12-123456-2 sign \x8124 24-136-5 sign \x8125 15-346-2 sign \x8126 124-2346-5 sign \x8127 13-45-3 sign \x8128 245-34-5 sign \x8129 15-234-3 sign \x812A 15-1456-5 sign \x812B 124-25-3 sign \x812C 1234-146-3 sign \x812D 12-1356-2 sign \x812E 1345-356-4 sign \x812F 1234-34-2 sign \x8130 145-12356-5 sign \x8131 124-25-3 sign \x8132 1345-246-5 sign \x8134 1234-16-4 sign \x8135 13-34-4 sign \x8136 14-25-2 sign \x8137 14-16-5 sign \x8138 14-2345-4 sign \x8139 1-1346-5 sign \x813A 15-1246-5 sign \x813B 13-346-2 sign \x813C 14-46-4 sign \x813D 24-1246-2 sign \x813E 1234-16-2 sign \x813F 135-246-3 sign \x8140 14-123456-2 sign \x8141 1234-2345-2 sign \x8142 13-25-5 sign \x8143 123-1246-5 sign \x8144 1-1246-3 sign \x8145 145-1236-5 sign \x8146 124-2345-4 sign \x8147 1345-356-4 sign \x8148 13-13456-3 sign \x8149 13-346-3 sign \x814A 15-16-2 sign \x814B 16-5 sign \x814C 2345-3 sign \x814D 1245-136-4 sign \x814E 24-136-5 sign \x814F 12-25-5 sign \x8150 12345-34-4 sign \x8151 12345-34-4 sign \x8152 13-1256-3 sign \x8153 12345-356-2 sign \x8154 245-46-3 sign \x8155 12456-5 sign \x8156 145-12346-5 sign \x8157 1234-16-2 sign \x8158 13-25-2 sign \x8159 125-12346-3 sign \x815A 145-13456-5 sign \x815B 25-5 sign \x815C 134-356-2 sign \x815D 1245-12456-4 sign \x815E 1-12456-5 sign \x815F 1-156-5 sign \x8160 245-12356-5 sign \x8161 14-25-2 sign \x8162 12356-4 sign \x8163 145-16-5 sign \x8164 1236-3 sign \x8165 15-13456-3 sign \x8166 1345-146-4 sign \x8167 24-34-5 sign \x8168 12-12456-4 sign \x8169 1345-1236-4 sign \x816A 256-5 sign \x816B 1-12346-4 sign \x816C 1245-12356-2 sign \x816D 2346-5 sign \x816E 15-2456-3 sign \x816F 124-34-2 sign \x8170 246-3 sign \x8171 13-2345-5 sign \x8172 1246-4 sign \x8173 13-246-4 sign \x8174 1256-2 sign \x8175 13-23456-3 sign \x8176 145-12456-5 sign \x8177 135-16-5 sign \x8178 12-1346-2 sign \x8179 12345-34-5 sign \x817A 15-2345-5 sign \x817B 1345-16-5 sign \x817C 134-2345-4 sign \x817D 35-5 sign \x817E 124-1356-2 sign \x817F 124-1246-4 sign \x8180 135-1346-4 sign \x8181 245-2345-3 sign \x8182 14-1256-4 sign \x8183 35-5 sign \x8184 15-12356-5 sign \x8185 124-1346-2 sign \x8186 15-34-5 sign \x8187 1-1246-5 sign \x8188 13-2346-2 sign \x8189 16-5 sign \x818A 135-126-2 sign \x818B 14-246-2 sign \x818C 13-16-2 sign \x818D 1234-16-2 sign \x818E 15-346-2 sign \x818F 13-146-3 sign \x8190 14-1256-4 sign \x8191 135-1456-5 sign \x8193 12-1346-2 sign \x8194 14-34-5 sign \x8195 13-25-2 sign \x8196 1234-1346-3 sign \x8197 12-2356-2 sign \x8198 135-246-3 sign \x8199 13-46-4 sign \x819A 12345-34-3 sign \x819B 124-1346-2 sign \x819C 134-126-5 sign \x819D 15-16-3 sign \x819E 1-12456-4 sign \x819F 14-1256-5 sign \x81A0 13-246-3 sign \x81A1 13456-5 sign \x81A2 14-1256-2 sign \x81A3 1-156-5 sign \x81A5 12-123456-3 sign \x81A6 14-2345-4 sign \x81A7 124-12346-2 sign \x81A8 1234-1356-2 sign \x81A9 1345-16-5 sign \x81AA 1-345-5 sign \x81AB 14-246-2 sign \x81AC 245-1246-5 sign \x81AD 13-1246-3 sign \x81AE 15-246-3 sign \x81AF 124-1356-3 sign \x81B0 12345-1236-2 sign \x81B1 1-156-2 sign \x81B2 13-246-3 sign \x81B3 24-1236-5 sign \x81B4 1235-34-3 sign \x81B5 245-1246-5 sign \x81B6 1245-123456-5 sign \x81B7 15-46-3 sign \x81B8 15-1246-4 sign \x81B9 12345-136-5 sign \x81BA 13456-3 sign \x81BB 124-1236-4 sign \x81BC 1-35-3 sign \x81BD 145-1236-4 sign \x81BE 123-2356-5 sign \x81BF 1345-12346-2 sign \x81C0 124-123456-2 sign \x81C1 14-2345-2 sign \x81C2 135-356-5 sign \x81C3 235-4 sign \x81C4 13-236-2 sign \x81C5 12-34-5 sign \x81C6 16-5 sign \x81C7 13-45-4 sign \x81C8 14-345-5 sign \x81C9 14-2345-4 sign \x81CA 15-146-3 sign \x81CB 124-123456-2 sign \x81CC 13-34-4 sign \x81CD 245-16-2 sign \x81CE 245-1246-5 sign \x81CF 135-1456-5 sign \x81D0 15-256-3 sign \x81D1 1245-34-2 sign \x81D2 1235-25-5 sign \x81D3 125-1346-5 sign \x81D4 15-2345-5 sign \x81D5 135-246-3 sign \x81D6 15-13456-5 sign \x81D7 123-12456-3 sign \x81D8 14-345-5 sign \x81D9 2345-3 sign \x81DA 14-34-2 sign \x81DB 1235-25-5 sign \x81DC 125-1236-3 sign \x81DD 14-25-4 sign \x81DE 245-1256-2 sign \x81DF 125-1346-5 sign \x81E0 14-12456-2 sign \x81E1 1345-16-2 sign \x81E2 125-1236-3 sign \x81E3 12-136-2 sign \x81E4 245-2345-3 sign \x81E5 25-5 sign \x81E6 13-456-5 sign \x81E7 125-1346-3 sign \x81E8 14-1456-2 sign \x81E9 13-456-5 sign \x81EA 125-156-5 sign \x81EB 13-246-4 sign \x81EC 1345-346-5 sign \x81ED 12-12356-5 sign \x81EE 13-16-5 sign \x81EF 13-146-3 sign \x81F0 12-12356-5 sign \x81F1 134-2345-2 sign \x81F2 1345-346-5 sign \x81F3 1-156-5 sign \x81F4 1-156-5 sign \x81F5 13-2346-2 sign \x81F6 13-2345-5 sign \x81F7 145-346-2 sign \x81F8 1-156-5 sign \x81F9 15-234-3 sign \x81FA 124-2456-2 sign \x81FB 1-136-3 sign \x81FC 13-234-5 sign \x81FD 15-2345-5 sign \x81FE 1256-2 sign \x81FF 12-345-3 sign \x8200 246-4 sign \x8201 1256-2 sign \x8202 12-12346-3 sign \x8203 15-16-5 sign \x8204 15-16-5 sign \x8205 13-234-5 sign \x8206 1256-2 sign \x8207 1256-4 sign \x8208 15-13456-3 sign \x8209 13-1256-4 sign \x820A 13-234-5 sign \x820B 15-1456-5 sign \x820C 24-2346-2 sign \x820D 24-2346-5 sign \x820F 13-234-4 sign \x8210 24-156-5 sign \x8211 124-1236-3 sign \x8212 24-34-3 sign \x8213 24-156-5 sign \x8214 124-2345-4 sign \x8215 124-1236-5 sign \x8216 1234-34-5 sign \x8217 1234-34-5 sign \x8218 13-12456-4 sign \x8219 1235-35-5 sign \x821A 124-1236-3 sign \x821B 12-12456-4 sign \x821C 24-123456-5 sign \x821D 15-23456-2 sign \x821E 34-4 sign \x821F 1-12356-3 sign \x8220 145-146-3 sign \x8221 13-1346-3 sign \x8222 24-1236-3 sign \x8223 16-4 sign \x8225 1234-345-3 sign \x8226 124-2456-5 sign \x8227 12345-1236-2 sign \x8228 135-1236-4 sign \x8229 12-12456-2 sign \x822A 1235-1346-2 sign \x822B 12345-1346-4 sign \x822C 135-1236-3 sign \x822D 245-236-5 sign \x822F 1-12346-3 sign \x8230 13-2345-5 sign \x8231 245-1346-3 sign \x8232 14-13456-2 sign \x8233 1-34-2 sign \x8234 1-2346-2 sign \x8235 145-25-5 sign \x8236 135-126-2 sign \x8237 15-2345-2 sign \x8238 13-2346-4 sign \x8239 12-12456-2 sign \x823A 13-23456-2 sign \x823B 14-34-2 sign \x823C 245-235-2 sign \x823D 1234-1346-2 sign \x823E 15-16-3 sign \x823F 135-345-1 sign \x8240 12345-34-2 sign \x8241 125-146-5 sign \x8242 12345-1356-2 sign \x8243 14-16-2 sign \x8244 24-146-3 sign \x8245 1256-2 sign \x8246 14-1346-2 sign \x8247 124-13456-4 sign \x8249 1246-4 sign \x824A 135-126-2 sign \x824B 134-1356-4 sign \x824C 1345-2345-5 sign \x824D 13-1256-3 sign \x824E 1235-456-2 sign \x824F 24-12356-4 sign \x8250 125-12346-3 sign \x8251 135-2345-5 sign \x8252 134-146-5 sign \x8253 145-346-2 sign \x8255 135-1346-5 sign \x8256 12-345-3 sign \x8257 16-5 sign \x8258 15-146-3 sign \x8259 245-1346-3 sign \x825A 245-146-2 sign \x825B 14-12356-2 sign \x825C 145-2456-5 sign \x825E 246-5 sign \x825F 124-12346-2 sign \x8261 145-1346-3 sign \x8262 245-46-2 sign \x8263 14-34-4 sign \x8264 16-4 sign \x8265 13-346-5 sign \x8266 13-2345-5 sign \x8267 1235-25-5 sign \x8268 134-1356-2 sign \x8269 245-16-2 sign \x826A 14-34-4 sign \x826B 14-34-2 sign \x826C 12-1236-2 sign \x826D 24-456-3 sign \x826E 13-136-5 sign \x826F 14-46-2 sign \x8270 13-2345-3 sign \x8271 13-2345-3 sign \x8272 15-2346-5 sign \x8273 2345-5 sign \x8274 12345-34-2 sign \x8275 1234-13456-3 sign \x8276 2345-5 sign \x8277 2345-5 sign \x8278 245-146-4 sign \x827A 16-5 sign \x827B 14-2346-5 sign \x827C 124-13456-3 sign \x827D 245-234-2 sign \x827E 2456-5 sign \x827F 1245-1356-2 sign \x8280 124-246-2 sign \x8281 13-246-3 sign \x8282 13-346-2 sign \x8283 1234-1356-2 sign \x8284 12456-2 sign \x8285 16-5 sign \x8286 12-2456-3 sign \x8287 134-2345-2 sign \x8288 134-346-3 sign \x8289 13-1236-3 sign \x828A 245-2345-3 sign \x828B 1256-5 sign \x828C 1256-5 sign \x828D 24-146-2 sign \x828E 245-235-3 sign \x828F 124-34-4 sign \x8290 1235-34-5 sign \x8291 245-16-4 sign \x8292 134-1346-2 sign \x8293 125-156-5 sign \x8294 1235-1246-5 sign \x8295 15-1246-3 sign \x8296 1-156-5 sign \x8297 15-46-3 sign \x8298 1234-16-2 sign \x8299 12345-34-2 sign \x829A 124-123456-2 sign \x829B 1246-4 sign \x829C 34-2 sign \x829D 1-156-3 sign \x829E 245-16-4 sign \x829F 24-1236-3 sign \x82A0 123456-2 sign \x82A1 245-2345-5 sign \x82A2 1245-136-2 sign \x82A3 12345-12356-2 sign \x82A4 123-12356-3 sign \x82A5 13-346-5 sign \x82A6 14-34-2 sign \x82A7 15-1256-5 sign \x82A8 13-16-2 sign \x82A9 245-1456-2 sign \x82AA 245-16-2 sign \x82AB 45-2 sign \x82AC 12345-136-3 sign \x82AD 135-345-3 sign \x82AE 1245-1246-5 sign \x82AF 15-1456-3 sign \x82B0 13-16-5 sign \x82B1 1235-35-3 sign \x82B2 1235-35-3 sign \x82B3 12345-1346-3 sign \x82B4 34-5 sign \x82B5 13-236-2 sign \x82B6 13-12356-3 sign \x82B7 1-156-4 sign \x82B8 256-2 sign \x82B9 245-1456-2 sign \x82BA 146-4 sign \x82BB 12-34-2 sign \x82BC 134-146-5 sign \x82BD 23456-2 sign \x82BE 12345-356-5 sign \x82BF 1245-1356-5 sign \x82C0 1235-1346-2 sign \x82C1 125-12346-4 sign \x82C2 1456-2 sign \x82C3 234-4 sign \x82C4 135-2345-5 sign \x82C5 16-5 sign \x82C7 1246-4 sign \x82C8 14-16-5 sign \x82C9 1234-16-4 sign \x82CA 2346-5 sign \x82CB 15-2345-5 sign \x82CC 12-1346-2 sign \x82CD 245-1346-3 sign \x82CE 1-34-5 sign \x82CF 15-34-3 sign \x82D0 16-2 sign \x82D1 45-5 sign \x82D2 1245-1236-4 sign \x82D3 14-13456-2 sign \x82D4 124-2456-2 sign \x82D5 124-246-2 sign \x82D6 145-16-2 sign \x82D7 134-246-2 sign \x82D8 245-235-4 sign \x82D9 14-16-5 sign \x82DA 235-5 sign \x82DB 123-2346-3 sign \x82DC 134-34-5 sign \x82DD 1234-356-5 sign \x82DE 135-146-3 sign \x82DF 13-12356-4 sign \x82E0 134-1456-2 sign \x82E1 16-4 sign \x82E2 16-4 sign \x82E3 13-1256-5 sign \x82E4 1234-16-4 sign \x82E5 1245-25-5 sign \x82E6 123-34-4 sign \x82E7 1-34-5 sign \x82E8 1345-16-4 sign \x82E9 135-126-2 sign \x82EA 135-13456-4 sign \x82EB 24-1236-3 sign \x82EC 234-2 sign \x82ED 246-4 sign \x82EE 15-2345-3 sign \x82EF 135-136-4 sign \x82F0 1235-12346-2 sign \x82F1 13456-3 sign \x82F2 1-345-4 sign \x82F3 145-12346-3 sign \x82F4 13-1256-2 sign \x82F5 145-346-2 sign \x82F6 1345-346-2 sign \x82F7 13-1236-3 sign \x82F8 1235-34-3 sign \x82F9 1234-13456-2 sign \x82FA 134-356-2 sign \x82FB 12345-34-2 sign \x82FC 24-1356-3 sign \x82FD 13-34-3 sign \x82FE 135-16-5 sign \x82FF 1246-5 sign \x8300 12345-34-2 sign \x8301 1-25-2 sign \x8302 134-146-5 sign \x8303 12345-1236-5 sign \x8304 245-346-2 sign \x8305 134-146-2 sign \x8306 134-146-2 sign \x8307 135-345-2 sign \x8308 125-156-4 sign \x8309 134-126-5 sign \x830A 125-156-3 sign \x830B 145-16-4 sign \x830C 12-156-2 sign \x830D 13-12356-4 sign \x830E 13-13456-3 sign \x830F 14-12346-2 sign \x8311 1345-246-4 sign \x8313 15-236-2 sign \x8314 13456-2 sign \x8315 245-235-2 sign \x8316 13-2346-2 sign \x8317 134-13456-2 sign \x8318 14-16-5 sign \x8319 1245-12346-2 sign \x831A 1456-5 sign \x831B 13-136-5 sign \x831C 245-2345-5 sign \x831D 12-2456-4 sign \x831E 12-136-2 sign \x831F 1256-5 sign \x8320 15-234-3 sign \x8321 125-156-5 sign \x8322 14-346-5 sign \x8323 34-2 sign \x8324 13-16-5 sign \x8325 123-1246-3 sign \x8326 245-2346-5 sign \x8327 13-2345-4 sign \x8328 245-156-2 sign \x8329 1235-12356-5 sign \x832A 13-456-3 sign \x832B 134-1346-2 sign \x832C 125-156-3 sign \x832D 13-246-3 sign \x832E 13-246-3 sign \x832F 12345-34-2 sign \x8330 1256-2 sign \x8331 1-34-3 sign \x8332 125-156-3 sign \x8333 13-46-3 sign \x8334 1235-1246-2 sign \x8335 1456-3 sign \x8336 12-345-2 sign \x8337 12345-345-2 sign \x8338 1245-12346-2 sign \x8339 1245-34-2 sign \x833A 12-12346-3 sign \x833B 134-1346-4 sign \x833C 124-12346-2 sign \x833D 1-12346-5 sign \x833F 1-34-2 sign \x8340 15-256-2 sign \x8341 1235-12456-2 sign \x8342 123-35-3 sign \x8343 245-45-2 sign \x8344 13-2456-3 sign \x8345 145-345-2 sign \x8346 13-13456-3 sign \x8347 15-13456-5 sign \x8348 12-12456-4 sign \x8349 245-146-4 sign \x834A 13-13456-3 sign \x834B 156-2 sign \x834C 1236-5 sign \x834D 245-246-2 sign \x834E 12-156-2 sign \x834F 1245-136-4 sign \x8350 13-2345-5 sign \x8351 124-16-2 sign \x8352 1235-456-3 sign \x8353 1234-13456-2 sign \x8354 14-16-5 sign \x8355 13-1456-3 sign \x8356 14-146-4 sign \x8357 24-34-5 sign \x8358 1-456-3 sign \x8359 145-345-2 sign \x835A 13-23456-2 sign \x835B 1245-146-2 sign \x835C 135-16-5 sign \x835D 125-2346-2 sign \x835E 245-246-2 sign \x835F 1235-1246-5 sign \x8360 13-16-5 sign \x8361 145-1346-5 sign \x8363 1245-12346-2 sign \x8364 1235-123456-3 sign \x8365 13456-2 sign \x8366 14-25-5 sign \x8367 13456-2 sign \x8368 15-256-2 sign \x8369 13-1456-5 sign \x836A 15-123456-3 sign \x836B 1456-5 sign \x836C 134-2456-4 sign \x836D 1235-12346-2 sign \x836E 1-12356-5 sign \x836F 246-5 sign \x8370 145-34-5 sign \x8371 1246-4 sign \x8372 12-34-5 sign \x8373 145-12356-5 sign \x8374 12345-34-3 sign \x8375 1245-136-4 sign \x8376 1456-2 sign \x8377 1235-2346-2 sign \x8378 135-126-2 sign \x8379 135-34-5 sign \x837A 256-4 sign \x837B 145-16-2 sign \x837C 124-34-2 sign \x837D 15-1246-3 sign \x837E 15-1246-3 sign \x837F 12-1356-2 sign \x8380 12-136-2 sign \x8381 34-2 sign \x8382 135-346-2 sign \x8383 15-16-3 sign \x8384 13-1356-4 sign \x8385 14-16-5 sign \x8386 1234-34-2 sign \x8387 1-34-5 sign \x8388 134-126-5 sign \x8389 14-16-5 sign \x838A 1-456-3 sign \x838B 125-25-2 sign \x838C 145-25-2 sign \x838D 245-234-2 sign \x838E 24-345-3 sign \x838F 15-25-3 sign \x8390 12-136-2 sign \x8391 12345-1356-3 sign \x8392 13-1256-4 sign \x8393 134-356-2 sign \x8394 134-1356-2 sign \x8395 15-13456-5 sign \x8396 13-13456-3 sign \x8397 12-2346-3 sign \x8398 15-1456-3 sign \x8399 13-256-3 sign \x839A 2345-2 sign \x839B 124-13456-2 sign \x839C 145-246-5 sign \x839D 245-25-5 sign \x839E 12456-4 sign \x839F 1235-1236-5 sign \x83A0 234-4 sign \x83A1 245-25-5 sign \x83A2 13-23456-2 sign \x83A3 456-2 sign \x83A4 15-25-3 sign \x83A5 1345-234-4 sign \x83A6 24-146-3 sign \x83A7 15-2345-5 sign \x83A8 14-1346-2 sign \x83A9 1234-246-4 sign \x83AA 2346-2 sign \x83AB 134-126-5 sign \x83AC 123456-5 sign \x83AD 13-346-2 sign \x83AE 1345-1236-2 sign \x83AF 134-34-5 sign \x83B0 135-345-1 sign \x83B1 14-2456-2 sign \x83B2 14-2345-2 sign \x83B3 24-156-2 sign \x83B4 25-3 sign \x83B6 14-2345-5 sign \x83B7 1235-25-5 sign \x83B8 234-2 sign \x83B9 13456-2 sign \x83BA 13456-3 sign \x83BC 12-123456-2 sign \x83BD 134-1346-4 sign \x83BE 134-1346-4 sign \x83BF 245-156-5 sign \x83C0 12456-4 sign \x83C1 13-13456-3 sign \x83C2 145-16-3 sign \x83C3 245-1256-2 sign \x83C4 145-12346-3 sign \x83C5 13-2345-3 sign \x83C6 125-12356-3 sign \x83C7 13-34-3 sign \x83C8 14-345-3 sign \x83C9 14-34-5 sign \x83CA 13-1256-2 sign \x83CB 1246-5 sign \x83CC 13-256-5 sign \x83CD 1345-346-5 sign \x83CE 123-123456-3 sign \x83CF 1235-2346-2 sign \x83D0 1234-34-2 sign \x83D1 125-156-3 sign \x83D2 13-146-4 sign \x83D3 13-25-4 sign \x83D4 135-126-2 sign \x83D5 14-123456-2 sign \x83D6 12-1346-3 sign \x83D7 12-12356-2 sign \x83D8 15-12346-3 sign \x83D9 1-1246-5 sign \x83DA 1-1236-5 sign \x83DB 134-136-2 sign \x83DC 245-2456-5 sign \x83DD 135-345-2 sign \x83DE 14-16-2 sign \x83DF 124-34-5 sign \x83E0 135-126-3 sign \x83E1 1235-1236-5 sign \x83E2 135-146-5 sign \x83E3 245-1456-5 sign \x83E4 13-45-4 sign \x83E5 15-16-3 sign \x83E6 245-1456-2 sign \x83E7 145-16-4 sign \x83E8 13-346-3 sign \x83E9 1234-34-2 sign \x83EA 145-1346-5 sign \x83EB 13-1456-4 sign \x83EC 1-146-4 sign \x83ED 124-2456-2 sign \x83EE 13-1356-3 sign \x83EF 1235-35-2 sign \x83F0 13-34-3 sign \x83F1 14-13456-2 sign \x83F2 12345-356-3 sign \x83F3 13-1456-3 sign \x83F4 1236-3 sign \x83F5 456-4 sign \x83F6 135-1356-4 sign \x83F7 1-12356-4 sign \x83F8 2345-3 sign \x83F9 13-1256-3 sign \x83FA 13-2345-3 sign \x83FB 14-1456-4 sign \x83FC 124-1236-4 sign \x83FD 24-34-2 sign \x83FE 124-2345-2 sign \x83FF 145-146-5 sign \x8400 1235-34-4 sign \x8401 245-16-2 sign \x8402 1235-2346-2 sign \x8403 245-1246-5 sign \x8404 124-146-2 sign \x8405 12-123456-3 sign \x8406 135-16-5 sign \x8407 12-1346-2 sign \x8408 1235-12456-2 sign \x8409 12345-356-5 sign \x840A 14-2456-2 sign \x840B 245-16-3 sign \x840C 134-1356-2 sign \x840D 1234-13456-2 sign \x840E 1246-4 sign \x840F 145-1236-5 sign \x8410 24-345-5 sign \x8411 1-1246-3 sign \x8412 2345-4 sign \x8413 16-2 sign \x8414 124-246-2 sign \x8415 245-16-2 sign \x8416 12456-4 sign \x8417 245-2346-5 sign \x8418 1345-2456-5 sign \x841A 124-25-5 sign \x841B 13-234-3 sign \x841C 124-346-3 sign \x841D 14-25-2 sign \x8420 134-1356-2 sign \x8423 145-13456-5 sign \x8424 13456-2 sign \x8425 13456-2 sign \x8426 13456-2 sign \x8427 15-246-3 sign \x8428 15-345-5 sign \x8429 245-234-3 sign \x842A 123-2346-3 sign \x842B 15-46-5 sign \x842C 12456-5 sign \x842D 13-1256-3 sign \x842E 1256-5 sign \x842F 12345-34-5 sign \x8430 14-2345-5 sign \x8431 15-45-3 sign \x8432 15-45-3 sign \x8433 1345-1236-2 sign \x8434 125-2346-2 sign \x8435 25-3 sign \x8436 12-123456-4 sign \x8437 15-246-3 sign \x8438 1256-2 sign \x8439 135-2345-4 sign \x843A 134-146-5 sign \x843B 1236-3 sign \x843C 2346-5 sign \x843D 14-25-5 sign \x843E 13456-2 sign \x843F 13-35-3 sign \x8440 13-35-3 sign \x8441 13-46-3 sign \x8442 12456-4 sign \x8443 135-345-1 sign \x8444 125-25-5 sign \x8445 13-1256-3 sign \x8446 135-146-4 sign \x8447 1245-12356-2 sign \x8448 15-16-4 sign \x8449 346-5 sign \x844A 1236-3 sign \x844B 245-1256-2 sign \x844C 13-2345-3 sign \x844D 12345-34-2 sign \x844E 14-1256-5 sign \x844F 13-13456-3 sign \x8450 1234-136-2 sign \x8451 12345-1356-3 sign \x8452 1235-12346-2 sign \x8453 1235-12346-2 sign \x8454 1235-12356-2 sign \x8455 2345-2 sign \x8456 124-34-2 sign \x8457 1-2346-1 sign \x8458 125-156-3 sign \x8459 15-46-3 sign \x845A 24-136-5 sign \x845B 13-2346-4 sign \x845C 13-346-2 sign \x845D 245-13456-2 sign \x845E 134-16-4 sign \x845F 1235-456-2 sign \x8460 24-136-3 sign \x8461 1234-34-2 sign \x8462 13-2456-5 sign \x8463 145-12346-4 sign \x8464 1-12356-5 sign \x8465 13-2345-5 sign \x8466 1246-4 sign \x8467 135-126-2 sign \x8468 1246-3 sign \x8469 1234-345-3 sign \x846A 13-16-5 sign \x846B 1235-34-2 sign \x846C 125-1346-5 sign \x846D 13-23456-3 sign \x846E 145-12456-5 sign \x846F 246-5 sign \x8470 15-1246-3 sign \x8471 245-12346-3 sign \x8472 245-45-2 sign \x8473 1246-3 sign \x8474 1-136-3 sign \x8475 123-1246-2 sign \x8476 124-13456-2 sign \x8477 1235-123456-3 sign \x8478 15-16-4 sign \x8479 24-156-3 sign \x847A 245-16-5 sign \x847B 14-1236-2 sign \x847C 125-12346-3 sign \x847D 246-3 sign \x847E 45-3 sign \x847F 134-356-2 sign \x8480 256-3 sign \x8481 24-34-5 sign \x8482 145-16-5 sign \x8483 1-12456-5 sign \x8484 13-12456-3 sign \x8486 135-345-1 sign \x8487 12-1236-4 sign \x8488 123-2456-4 sign \x8489 123-1246-5 sign \x848B 13-46-4 sign \x848C 14-12356-2 sign \x848D 1246-4 sign \x848E 12345-34-5 sign \x848F 135-345-1 sign \x8490 15-12356-3 sign \x8491 1456-3 sign \x8492 24-156-3 sign \x8493 12-123456-2 sign \x8494 24-156-2 sign \x8495 256-3 sign \x8496 1-136-3 sign \x8497 14-1346-5 sign \x8498 1245-34-2 sign \x8499 134-1356-2 sign \x849A 1235-2346-2 sign \x849B 245-236-3 sign \x849C 15-12456-5 sign \x849D 45-2 sign \x849E 14-16-5 sign \x849F 13-1256-4 sign \x84A0 15-16-2 sign \x84A1 1234-1346-2 sign \x84A2 12-34-2 sign \x84A3 15-1256-2 sign \x84A4 124-34-2 sign \x84A5 14-234-2 sign \x84A6 25-5 sign \x84A7 1-136-3 sign \x84A8 245-2345-5 sign \x84A9 125-34-3 sign \x84AA 1234-126-5 sign \x84AB 245-25-3 sign \x84AC 45-3 sign \x84AD 12-34-2 sign \x84AE 1256-5 sign \x84AF 123-2356-5 sign \x84B0 1234-1236-2 sign \x84B1 1234-34-2 sign \x84B2 1234-34-2 sign \x84B3 1345-345-5 sign \x84B4 24-25-5 sign \x84B5 15-16-3 sign \x84B6 12345-136-2 sign \x84B7 256-2 sign \x84B8 1-1356-3 sign \x84B9 13-2345-3 sign \x84BA 13-16-2 sign \x84BB 1245-25-5 sign \x84BC 245-1346-3 sign \x84BD 136-3 sign \x84BE 134-16-2 sign \x84BF 1235-146-3 sign \x84C0 15-123456-3 sign \x84C1 1-136-3 sign \x84C2 134-13456-2 sign \x84C3 1235-25-5 sign \x84C4 15-1256-5 sign \x84C5 14-234-2 sign \x84C6 15-16-2 sign \x84C7 13-34-4 sign \x84C8 14-1346-2 sign \x84C9 1245-12346-2 sign \x84CA 12346-3 sign \x84CB 13-2456-5 sign \x84CC 245-25-5 sign \x84CD 24-156-3 sign \x84CE 124-1346-2 sign \x84CF 14-25-4 sign \x84D0 1245-34-5 sign \x84D1 15-25-3 sign \x84D2 15-2345-3 sign \x84D3 135-356-5 sign \x84D4 246-4 sign \x84D5 13-1246-5 sign \x84D6 135-16-5 sign \x84D7 125-12346-4 sign \x84D8 13-123456-4 sign \x84DA 15-234-3 sign \x84DB 245-2346-5 sign \x84DD 14-1236-2 sign \x84DF 13-16-5 sign \x84E0 14-16-2 sign \x84E1 245-1236-3 sign \x84E2 14-1346-2 sign \x84E3 1256-5 sign \x84E5 13456-2 sign \x84E6 134-126-5 sign \x84E7 124-246-3 sign \x84E8 124-246-3 sign \x84E9 134-146-5 sign \x84EA 124-12346-3 sign \x84EB 1-34-2 sign \x84EC 1234-1356-2 sign \x84ED 1236-3 sign \x84EE 14-2345-2 sign \x84EF 125-12346-4 sign \x84F0 15-16-4 sign \x84F1 1234-13456-2 sign \x84F2 245-234-3 sign \x84F3 13-1456-4 sign \x84F4 12-123456-2 sign \x84F5 13-346-2 sign \x84F6 1246-2 sign \x84F7 124-1246-3 sign \x84F8 245-146-2 sign \x84F9 1256-5 sign \x84FA 16-5 sign \x84FB 13-16-2 sign \x84FC 14-246-4 sign \x84FD 135-16-5 sign \x84FE 14-34-4 sign \x84FF 15-34-5 sign \x8500 135-34-5 sign \x8501 1-1346-3 sign \x8502 14-356-2 sign \x8503 13-46-5 sign \x8504 134-1236-5 sign \x8505 2345-2 sign \x8506 14-13456-2 sign \x8507 13-16-5 sign \x8508 135-246-3 sign \x8509 13-123456-4 sign \x850A 1235-1236-4 sign \x850B 145-16-2 sign \x850C 15-34-5 sign \x850D 14-34-5 sign \x850E 24-2346-5 sign \x850F 24-1346-3 sign \x8510 145-16-2 sign \x8511 134-346-5 sign \x8512 15-256-3 sign \x8513 134-1236-5 sign \x8514 135-126-2 sign \x8515 145-16-5 sign \x8516 245-34-4 sign \x8517 1-2346-5 sign \x8518 15-136-3 sign \x8519 15-45-5 sign \x851A 1246-5 sign \x851B 1235-34-2 sign \x851C 146-2 sign \x851D 134-16-4 sign \x851E 14-12356-2 sign \x851F 245-34-5 sign \x8520 1-12346-3 sign \x8521 245-2456-5 sign \x8522 1234-126-2 sign \x8523 13-46-4 sign \x8524 134-16-5 sign \x8525 245-12346-3 sign \x8526 1345-246-4 sign \x8527 1235-1246-5 sign \x8528 13-256-5 sign \x8529 1456-2 sign \x852A 24-1236-3 sign \x852B 2345-3 sign \x852C 24-34-3 sign \x852D 1456-5 sign \x852E 123-1246-5 sign \x852F 12-136-2 sign \x8530 1235-34-5 sign \x8531 24-345-3 sign \x8532 123-12356-5 sign \x8533 245-2345-5 sign \x8534 134-345-2 sign \x8535 125-1346-3 sign \x8537 245-46-2 sign \x8538 145-12356-3 sign \x8539 14-2345-2 sign \x853A 14-1456-5 sign \x853B 123-12356-5 sign \x853C 2456-4 sign \x853D 135-16-5 sign \x853E 14-16-2 sign \x853F 1246-2 sign \x8540 13-16-2 sign \x8541 15-256-2 sign \x8542 24-1356-5 sign \x8543 12345-1236-2 sign \x8544 134-1356-2 sign \x8545 12356-4 sign \x8546 12-1236-4 sign \x8547 145-2345-4 sign \x8548 15-256-5 sign \x8549 13-246-3 sign \x854A 1245-1246-4 sign \x854B 1245-1246-4 sign \x854C 14-356-4 sign \x854D 1256-2 sign \x854E 245-246-2 sign \x854F 12-34-2 sign \x8550 1235-35-2 sign \x8551 13-2345-3 sign \x8552 134-2456-4 sign \x8553 256-2 sign \x8554 135-146-3 sign \x8555 234-2 sign \x8556 245-1256-2 sign \x8557 14-34-5 sign \x8558 1245-146-2 sign \x8559 1235-1246-5 sign \x855A 2346-5 sign \x855B 124-16-2 sign \x855C 12345-356-4 sign \x855D 13-236-2 sign \x855E 125-1246-5 sign \x855F 12345-345-5 sign \x8560 1345-34-2 sign \x8561 12345-136-2 sign \x8562 123-1246-5 sign \x8563 24-123456-5 sign \x8564 1245-1246-2 sign \x8565 23456-4 sign \x8566 15-1256-3 sign \x8567 12345-34-5 sign \x8568 13-236-2 sign \x8569 145-1346-5 sign \x856A 34-2 sign \x856B 145-12346-4 sign \x856C 15-156-3 sign \x856D 15-246-3 sign \x856E 15-16-5 sign \x856F 15-345-5 sign \x8570 256-5 sign \x8571 24-146-3 sign \x8572 245-16-2 sign \x8573 13-2345-3 sign \x8574 256-5 sign \x8575 15-123456-3 sign \x8576 14-13456-2 sign \x8577 1256-5 sign \x8578 15-23456-2 sign \x8579 235-3 sign \x857A 13-16-2 sign \x857B 1235-12346-2 sign \x857C 15-156-5 sign \x857D 1345-12346-2 sign \x857E 14-356-4 sign \x857F 15-45-3 sign \x8580 256-4 sign \x8581 1256-5 sign \x8582 15-16-2 sign \x8583 1235-146-5 sign \x8584 135-126-2 sign \x8585 1235-146-3 sign \x8586 2456-5 sign \x8587 1246-2 sign \x8588 1235-1246-5 sign \x8589 1235-1246-5 sign \x858A 13-16-5 sign \x858B 245-156-2 sign \x858C 15-46-3 sign \x858D 12456-5 sign \x858E 134-346-5 sign \x858F 16-5 sign \x8590 14-1356-2 sign \x8591 13-46-3 sign \x8592 245-1236-5 sign \x8593 24-136-3 sign \x8594 245-46-2 sign \x8595 14-2345-2 sign \x8596 123-2346-3 sign \x8597 45-2 sign \x8598 145-345-2 sign \x8599 124-16-5 sign \x859A 124-1346-2 sign \x859B 15-236-3 sign \x859C 135-16-5 sign \x859D 1-1236-3 sign \x859E 15-123456-3 sign \x859F 14-2345-5 sign \x85A0 12345-1236-2 sign \x85A1 145-13456-4 sign \x85A2 15-346-5 sign \x85A3 13-34-4 sign \x85A4 15-346-5 sign \x85A5 24-34-4 sign \x85A6 13-2345-5 sign \x85A7 1235-146-3 sign \x85A8 1235-12346-3 sign \x85A9 15-345-5 sign \x85AA 15-1456-3 sign \x85AB 15-256-3 sign \x85AC 246-5 sign \x85AE 15-12356-4 sign \x85AF 24-34-4 sign \x85B0 15-256-3 sign \x85B1 145-1246-5 sign \x85B2 1234-1456-2 sign \x85B3 1246-4 sign \x85B4 1345-13456-2 sign \x85B5 12-12356-2 sign \x85B6 134-2456-2 sign \x85B7 1245-34-2 sign \x85B8 1234-246-2 sign \x85B9 124-2456-2 sign \x85BA 245-16-2 sign \x85BB 125-146-4 sign \x85BC 12-136-2 sign \x85BD 1-136-3 sign \x85BE 156-4 sign \x85BF 1345-16-4 sign \x85C0 13456-2 sign \x85C1 13-146-4 sign \x85C2 245-12346-2 sign \x85C3 15-246-3 sign \x85C4 245-16-2 sign \x85C5 12345-345-2 sign \x85C6 13-2345-4 sign \x85C7 15-1256-5 sign \x85C8 123-1246-3 sign \x85C9 13-346-5 sign \x85CA 135-2345-4 sign \x85CB 145-246-5 sign \x85CC 134-16-5 sign \x85CD 14-1236-2 sign \x85CE 13-1456-5 sign \x85CF 125-1346-5 sign \x85D0 134-246-4 sign \x85D1 245-235-2 sign \x85D2 245-346-5 sign \x85D3 15-2345-4 sign \x85D5 12356-4 sign \x85D6 15-2345-2 sign \x85D7 15-34-5 sign \x85D8 14-1256-2 sign \x85D9 16-5 sign \x85DA 15-1256-5 sign \x85DB 15-346-4 sign \x85DC 14-16-2 sign \x85DD 16-5 sign \x85DE 14-345-4 sign \x85DF 14-356-4 sign \x85E0 15-246-5 sign \x85E1 145-16-2 sign \x85E2 1-156-4 sign \x85E3 135-356-3 sign \x85E4 124-1356-2 sign \x85E5 246-5 sign \x85E6 134-126-2 sign \x85E7 1235-12456-4 sign \x85E8 135-246-3 sign \x85E9 12345-1236-2 sign \x85EA 15-12356-4 sign \x85EB 124-1236-2 sign \x85EC 124-1246-3 sign \x85ED 245-235-2 sign \x85EE 245-246-2 sign \x85EF 1246-5 sign \x85F0 14-234-2 sign \x85F1 1235-1246-5 sign \x85F2 12356-3 sign \x85F3 13-146-4 sign \x85F4 256-5 sign \x85F6 14-16-5 sign \x85F7 24-34-4 sign \x85F8 12-34-2 sign \x85F9 2456-4 sign \x85FA 14-1456-5 sign \x85FB 125-146-4 sign \x85FC 15-45-3 sign \x85FD 12-136-5 sign \x85FE 14-2456-5 sign \x85FF 1235-25-5 sign \x8600 124-25-5 sign \x8601 34-5 sign \x8602 1245-1246-4 sign \x8603 1245-1246-4 sign \x8604 245-16-2 sign \x8605 1235-1356-2 sign \x8606 14-34-2 sign \x8607 15-34-3 sign \x8608 124-1246-2 sign \x8609 134-1346-2 sign \x860A 256-5 sign \x860B 1234-13456-2 sign \x860C 1256-4 sign \x860D 15-256-3 sign \x860E 13-16-5 sign \x860F 13-235-3 sign \x8610 15-45-3 sign \x8611 134-126-2 sign \x8613 15-34-3 sign \x8614 13-235-3 sign \x8616 135-126-5 sign \x8617 135-126-5 sign \x8618 1245-1346-2 sign \x8619 16-5 sign \x861A 15-2345-4 sign \x861B 1256-5 sign \x861C 13-1256-2 sign \x861D 14-2345-5 sign \x861E 14-2345-2 sign \x861F 1456-4 sign \x8620 245-46-2 sign \x8621 13456-3 sign \x8622 14-12346-2 sign \x8623 1235-1246-3 sign \x8624 1246-4 sign \x8625 236-5 sign \x8626 14-13456-2 sign \x8627 245-1256-2 sign \x8628 246-2 sign \x8629 12345-1236-2 sign \x862A 134-16-2 sign \x862B 14-1236-2 sign \x862C 123-1246-3 sign \x862D 14-1236-2 sign \x862E 13-16-5 sign \x862F 145-1346-5 sign \x8631 14-356-5 sign \x8632 14-356-2 sign \x8633 1235-35-4 sign \x8634 12345-1356-3 sign \x8635 1-156-2 sign \x8636 1246-5 sign \x8637 123-1246-2 sign \x8638 1-1236-5 sign \x8639 1235-2356-2 sign \x863A 14-16-2 sign \x863B 13-16-5 sign \x863C 134-16-2 sign \x863D 14-356-4 sign \x863E 1235-2356-5 sign \x863F 14-25-2 sign \x8640 13-16-3 sign \x8641 123-1246-2 sign \x8642 14-34-5 sign \x8643 15-2345-3 sign \x8646 14-356-2 sign \x8647 245-45-4 sign \x8648 15-246-3 sign \x8649 16-5 sign \x864A 14-12456-2 sign \x864B 134-136-2 sign \x864C 135-346-3 sign \x864D 1235-34-3 sign \x864E 1235-34-4 sign \x864F 14-34-4 sign \x8650 1345-236-5 sign \x8651 14-1256-5 sign \x8652 15-156-3 sign \x8653 15-246-3 sign \x8654 245-2345-2 sign \x8655 12-34-5 sign \x8656 1235-34-3 sign \x8657 15-1256-3 sign \x8658 245-25-2 sign \x8659 12345-34-2 sign \x865A 15-1256-3 sign \x865B 15-1256-3 sign \x865C 14-34-4 sign \x865D 1235-34-4 sign \x865E 1256-2 sign \x865F 1235-146-5 sign \x8660 13-246-4 sign \x8661 13-1256-5 sign \x8662 13-25-2 sign \x8663 135-146-5 sign \x8664 2345-2 sign \x8665 12-1236-2 sign \x8666 1-1236-5 sign \x8667 123-1246-3 sign \x8668 135-1236-3 sign \x8669 15-16-5 sign \x866A 24-34-2 sign \x866B 12-12346-2 sign \x866C 245-234-2 sign \x866D 145-246-3 sign \x866E 13-16-3 sign \x866F 245-234-2 sign \x8670 145-13456-3 sign \x8671 24-156-3 sign \x8673 145-16-5 sign \x8674 1-2346-2 sign \x8675 24-2346-2 sign \x8676 1256-3 sign \x8677 1235-1236-2 sign \x8678 125-156-4 sign \x8679 1235-12346-2 sign \x867A 1235-1246-4 sign \x867B 134-1356-2 sign \x867C 13-2346-5 sign \x867D 15-1246-3 sign \x867E 15-23456-3 sign \x867F 12-2456-5 sign \x8680 24-156-2 sign \x8681 16-4 sign \x8682 134-345-4 sign \x8683 15-46-5 sign \x8684 12345-1346-3 sign \x8685 2346-5 sign \x8686 135-345-3 sign \x8687 12-156-4 sign \x8688 245-2345-3 sign \x8689 123456-2 sign \x868A 123456-2 sign \x868B 1245-1246-5 sign \x868C 135-1346-5 sign \x868D 1234-16-2 sign \x868E 236-5 sign \x868F 236-5 sign \x8690 13-256-3 sign \x8691 245-16-2 sign \x8692 124-12346-2 sign \x8693 1456-4 sign \x8694 245-16-2 sign \x8695 245-1236-2 sign \x8696 45-2 sign \x8697 13-236-2 sign \x8698 1235-1246-2 sign \x8699 245-1456-2 sign \x869A 245-16-2 sign \x869B 1-12346-5 sign \x869C 23456-2 sign \x869D 245-156-5 sign \x869E 134-34-5 sign \x869F 456-2 sign \x86A0 12345-136-2 sign \x86A1 12345-136-2 sign \x86A2 1235-1346-2 sign \x86A3 13-12346-3 sign \x86A4 125-146-4 sign \x86A5 12345-34-4 sign \x86A6 1245-1236-2 sign \x86A7 13-346-5 sign \x86A8 12345-34-2 sign \x86A9 12-156-3 sign \x86AA 145-12356-4 sign \x86AB 1234-246-2 sign \x86AC 15-2345-5 sign \x86AD 1345-16-2 sign \x86AE 124-2346-5 sign \x86AF 245-234-3 sign \x86B0 234-2 sign \x86B1 1-345-5 sign \x86B2 1234-13456-2 sign \x86B3 12-156-2 sign \x86B4 234-4 sign \x86B5 1235-2346-2 sign \x86B6 1235-1236-3 sign \x86B7 13-1256-5 sign \x86B8 14-16-5 sign \x86B9 12345-34-5 sign \x86BA 1245-1236-2 sign \x86BB 1-345-2 sign \x86BC 13-12356-4 sign \x86BD 1234-16-2 sign \x86BE 135-126-4 sign \x86BF 15-2345-2 sign \x86C0 1-34-5 sign \x86C1 145-246-3 sign \x86C2 135-346-2 sign \x86C3 135-13456-4 sign \x86C4 13-34-3 sign \x86C5 1-1236-3 sign \x86C6 245-1256-3 sign \x86C7 24-2346-2 sign \x86C8 124-346-4 sign \x86C9 14-13456-2 sign \x86CA 13-34-4 sign \x86CB 145-1236-5 sign \x86CC 13-34-4 sign \x86CD 13456-2 sign \x86CE 14-16-5 sign \x86CF 12-1356-3 sign \x86D0 245-1256-3 sign \x86D1 134-12356-2 sign \x86D2 13-2346-2 sign \x86D3 245-156-5 sign \x86D4 1235-1246-2 sign \x86D5 1235-1246-2 sign \x86D6 134-1346-2 sign \x86D7 12345-34-5 sign \x86D8 46-4 sign \x86D9 35-3 sign \x86DA 14-346-5 sign \x86DB 1-34-3 sign \x86DC 16-3 sign \x86DD 15-2345-2 sign \x86DE 13-35-3 sign \x86DF 13-246-3 sign \x86E0 14-16-5 sign \x86E1 16-5 sign \x86E2 1234-13456-2 sign \x86E3 13-346-2 sign \x86E4 13-2346-2 sign \x86E5 24-2346-2 sign \x86E6 124-16-2 sign \x86E7 456-4 sign \x86E8 134-126-5 sign \x86E9 245-235-2 sign \x86EA 245-346-5 sign \x86EB 13-1246-4 sign \x86EC 13-12346-4 sign \x86ED 1-156-5 sign \x86EE 134-1236-2 sign \x86F0 1-156-2 sign \x86F1 13-23456-2 sign \x86F2 1245-146-2 sign \x86F3 15-156-3 sign \x86F4 245-16-2 sign \x86F5 15-13456-3 sign \x86F6 14-346-5 sign \x86F7 245-234-2 sign \x86F8 15-246-3 sign \x86F9 235-4 sign \x86FA 13-23456-2 sign \x86FB 24-1246-5 sign \x86FC 12-2346-3 sign \x86FD 135-2456-5 sign \x86FE 2346-2 sign \x86FF 1235-1236-5 sign \x8700 24-34-4 sign \x8701 15-45-2 sign \x8702 12345-1356-3 sign \x8703 24-136-5 sign \x8704 1-136-5 sign \x8705 12345-34-4 sign \x8706 15-2345-5 sign \x8707 1-2346-2 sign \x8708 34-2 sign \x8709 12345-34-2 sign \x870A 14-16-2 sign \x870B 14-1346-2 sign \x870C 135-16-5 sign \x870D 12-34-2 sign \x870E 13-45-4 sign \x870F 234-4 sign \x8710 13-346-2 sign \x8711 145-1236-5 sign \x8712 2345-2 sign \x8713 124-13456-2 sign \x8714 145-2345-5 sign \x8715 24-1246-5 sign \x8716 1235-1246-2 sign \x8717 13-35-3 sign \x8718 1-156-3 sign \x8719 15-12346-3 sign \x871A 12345-356-4 sign \x871B 13-1256-3 sign \x871C 134-16-5 sign \x871D 245-16-2 sign \x871E 245-16-2 sign \x871F 1256-5 sign \x8720 13-256-4 sign \x8721 245-1256-5 sign \x8722 134-1356-4 sign \x8723 245-46-3 sign \x8724 15-156-3 sign \x8725 15-16-3 sign \x8726 14-123456-2 sign \x8727 14-16-5 sign \x8728 145-346-2 sign \x8729 124-246-2 sign \x872A 124-146-2 sign \x872B 123-123456-3 sign \x872C 1235-1236-2 sign \x872D 1235-1236-5 sign \x872E 1256-5 sign \x872F 135-1346-5 sign \x8730 12345-356-2 sign \x8731 1234-16-2 sign \x8732 1246-3 sign \x8733 145-123456-3 sign \x8734 16-5 sign \x8735 45-3 sign \x8736 15-34-5 sign \x8737 245-45-2 sign \x8738 245-2345-4 sign \x8739 1245-1246-5 sign \x873A 1345-16-2 sign \x873B 245-13456-3 sign \x873C 1246-5 sign \x873D 14-46-4 sign \x873E 13-25-4 sign \x873F 12456-3 sign \x8740 145-12346-5 sign \x8741 2346-5 sign \x8742 135-1236-4 sign \x8743 145-16-5 sign \x8744 456-4 sign \x8745 245-1236-2 sign \x8746 46-4 sign \x8747 13456-2 sign \x8748 13-25-3 sign \x8749 12-1236-2 sign \x874B 14-345-5 sign \x874C 123-2346-3 sign \x874D 13-16-2 sign \x874E 15-346-3 sign \x874F 124-13456-2 sign \x8750 134-356-5 sign \x8751 15-1256-3 sign \x8752 134-2345-2 sign \x8753 1256-2 sign \x8754 13-346-3 sign \x8755 24-156-2 sign \x8756 15-45-3 sign \x8757 1235-456-2 sign \x8758 2345-4 sign \x8759 135-2345-3 sign \x875A 1245-12356-2 sign \x875B 1246-3 sign \x875C 12345-34-5 sign \x875D 45-2 sign \x875E 134-356-5 sign \x875F 1246-5 sign \x8760 12345-34-2 sign \x8761 1245-12456-4 sign \x8762 15-346-2 sign \x8763 234-2 sign \x8764 245-234-2 sign \x8765 134-146-2 sign \x8766 15-23456-3 sign \x8767 13456-3 sign \x8768 24-156-3 sign \x8769 12-12346-2 sign \x876A 124-1346-3 sign \x876B 1-34-3 sign \x876C 125-12346-3 sign \x876D 124-16-2 sign \x876E 12345-34-5 sign \x876F 45-2 sign \x8770 1235-1246-4 sign \x8771 134-1356-2 sign \x8772 14-345-5 sign \x8773 145-2456-5 sign \x8774 1235-34-2 sign \x8775 245-234-3 sign \x8776 145-346-2 sign \x8777 14-16-5 sign \x8778 13-35-3 sign \x8779 256-3 sign \x877A 13-1256-4 sign \x877B 1345-1236-2 sign \x877C 14-12356-2 sign \x877D 245-256-4 sign \x877E 1245-12346-2 sign \x877F 13456-2 sign \x8780 13-46-3 sign \x8781 135-345-1 sign \x8782 14-1346-2 sign \x8783 1234-1346-2 sign \x8784 15-156-3 sign \x8785 15-16-3 sign \x8786 245-156-5 sign \x8787 15-16-3 sign \x8788 45-2 sign \x8789 12346-3 sign \x878A 14-2345-2 sign \x878B 15-12356-3 sign \x878C 135-1236-3 sign \x878D 1245-12346-2 sign \x878E 1245-12346-2 sign \x878F 13-16-2 sign \x8790 34-3 sign \x8791 245-234-5 sign \x8792 1235-1236-5 sign \x8793 245-1456-2 sign \x8794 16-2 sign \x8795 135-16-3 sign \x8796 1235-35-2 sign \x8797 124-1346-2 sign \x8798 16-4 sign \x8799 145-34-5 sign \x879A 1345-2456-5 sign \x879B 1235-2346-2 sign \x879C 1235-34-2 sign \x879D 1235-1246-5 sign \x879E 134-345-4 sign \x879F 134-13456-2 sign \x87A0 16-5 sign \x87A1 123456-2 sign \x87A2 13456-2 sign \x87A3 124-1356-2 sign \x87A4 135-345-1 sign \x87A5 245-1346-3 sign \x87A8 134-1236-4 sign \x87AA 24-1346-3 sign \x87AB 1-2346-3 sign \x87AC 245-146-2 sign \x87AD 12-156-3 sign \x87AE 145-16-5 sign \x87AF 146-2 sign \x87B0 14-34-5 sign \x87B1 1246-5 sign \x87B2 145-346-2 sign \x87B3 124-1346-2 sign \x87B4 12-136-2 sign \x87B5 1234-246-3 sign \x87B6 245-1256-2 sign \x87B7 135-1356-5 sign \x87B8 1256-2 sign \x87B9 13-2345-5 sign \x87BA 14-25-2 sign \x87BB 14-12356-2 sign \x87BC 245-1456-4 sign \x87BD 1-12346-3 sign \x87BE 1456-4 sign \x87BF 13-46-3 sign \x87C0 24-2356-5 sign \x87C1 123456-2 sign \x87C2 13-246-3 sign \x87C3 12456-5 sign \x87C4 1-156-2 sign \x87C5 1-2346-5 sign \x87C6 134-345-1 sign \x87C7 134-345-2 sign \x87C8 13-25-3 sign \x87C9 13-234-5 sign \x87CA 134-146-2 sign \x87CB 15-16-3 sign \x87CC 245-12346-3 sign \x87CD 14-16-2 sign \x87CE 134-1236-4 sign \x87CF 15-246-3 sign \x87D1 1-1346-3 sign \x87D2 134-1346-4 sign \x87D3 15-46-5 sign \x87D4 134-126-5 sign \x87D5 125-1246-3 sign \x87D6 15-156-3 sign \x87D7 245-234-3 sign \x87D8 124-2346-5 sign \x87D9 1-156-2 sign \x87DA 1234-1356-2 sign \x87DB 1234-1356-2 sign \x87DC 13-246-4 sign \x87DD 245-1256-2 sign \x87DE 135-346-2 sign \x87DF 14-246-2 sign \x87E0 1234-1236-2 sign \x87E1 13-1246-4 sign \x87E2 15-16-4 sign \x87E3 13-16-4 sign \x87E4 245-45-2 sign \x87E5 1235-456-2 sign \x87E6 12345-356-5 sign \x87E7 14-146-2 sign \x87E8 13-236-2 sign \x87E9 13-236-2 sign \x87EA 1235-1246-5 sign \x87EB 1456-2 sign \x87EC 12-1236-2 sign \x87ED 13-246-3 sign \x87EE 24-1236-5 sign \x87EF 1245-146-2 sign \x87F0 15-246-3 sign \x87F1 134-12356-2 sign \x87F2 12-12346-2 sign \x87F3 15-256-2 sign \x87F4 15-156-3 sign \x87F6 12-1356-3 sign \x87F7 145-1346-3 sign \x87F8 14-16-4 sign \x87F9 15-346-5 sign \x87FA 24-1236-5 sign \x87FB 16-4 sign \x87FC 13-13456-4 sign \x87FD 145-345-2 sign \x87FE 12-1236-2 sign \x87FF 245-16-5 sign \x8800 245-156-3 sign \x8801 15-46-5 sign \x8802 24-2346-5 sign \x8803 14-25-4 sign \x8804 245-1456-2 sign \x8805 13456-2 sign \x8806 12-2456-5 sign \x8807 14-16-5 sign \x8808 125-2346-2 sign \x8809 15-45-4 sign \x880A 14-2345-2 sign \x880B 1-34-4 sign \x880C 125-2346-2 sign \x880D 15-346-3 sign \x880E 134-1346-4 sign \x880F 15-346-5 sign \x8810 245-16-2 sign \x8811 1245-12346-2 sign \x8812 13-2345-4 sign \x8813 134-1356-4 sign \x8814 1235-146-2 sign \x8815 1245-34-2 sign \x8816 25-5 sign \x8817 1-25-2 sign \x8818 13-346-2 sign \x8819 135-1456-3 sign \x881A 1235-2346-5 sign \x881B 134-346-5 sign \x881C 12345-1236-2 sign \x881D 14-356-2 sign \x881E 13-346-2 sign \x881F 14-345-5 sign \x8820 134-16-5 sign \x8821 14-16-4 sign \x8822 12-123456-4 sign \x8823 14-16-5 sign \x8824 245-234-3 sign \x8825 1345-346-5 sign \x8826 14-34-2 sign \x8827 145-34-5 sign \x8828 15-246-3 sign \x8829 1-34-3 sign \x882A 14-12346-2 sign \x882B 14-16-5 sign \x882C 14-12346-2 sign \x882D 12345-1356-3 sign \x882E 346-3 sign \x882F 1234-16-2 sign \x8830 15-46-3 sign \x8831 13-34-4 sign \x8832 13-45-3 sign \x8833 13456-3 sign \x8835 15-16-3 sign \x8836 245-1236-2 sign \x8837 245-1256-2 sign \x8838 245-45-2 sign \x8839 145-34-5 sign \x883A 245-1236-2 sign \x883B 134-1236-2 sign \x883C 13-236-2 sign \x883D 13-346-2 sign \x883E 1-34-2 sign \x883F 1-25-2 sign \x8840 15-346-4 sign \x8841 134-1346-5 sign \x8842 1345-234-5 sign \x8843 1234-356-3 sign \x8844 1345-1256-5 sign \x8845 15-1456-5 sign \x8846 1-12346-5 sign \x8847 134-126-5 sign \x8848 156-5 sign \x8849 123-2346-5 sign \x884A 134-346-5 sign \x884B 15-16-5 sign \x884C 15-13456-2 sign \x884D 2345-4 sign \x884E 123-1236-4 sign \x884F 45-5 sign \x8851 14-13456-2 sign \x8852 15-45-5 sign \x8853 24-34-5 sign \x8854 15-2345-2 sign \x8855 124-12346-2 sign \x8856 15-46-5 sign \x8857 13-346-3 sign \x8858 15-2345-2 sign \x8859 23456-2 sign \x885A 1235-34-2 sign \x885B 1246-5 sign \x885C 145-146-5 sign \x885D 12-12346-3 sign \x885E 1246-5 sign \x885F 145-146-5 sign \x8860 1-123456-3 sign \x8861 1235-1356-2 sign \x8862 245-1256-2 sign \x8863 16-3 sign \x8865 135-34-4 sign \x8866 13-1236-4 sign \x8867 1256-2 sign \x8868 135-246-4 sign \x8869 12-2456-5 sign \x886A 16-5 sign \x886B 24-1236-3 sign \x886C 12-136-5 sign \x886D 12345-34-3 sign \x886E 13-123456-4 sign \x886F 12345-136-3 sign \x8870 24-2356-3 sign \x8871 13-346-2 sign \x8872 1345-345-5 sign \x8873 1-12346-3 sign \x8874 145-1236-4 sign \x8875 1345-16-5 sign \x8876 1-12346-5 sign \x8877 1-12346-3 sign \x8878 15-346-5 sign \x8879 1-156-4 sign \x887A 15-346-2 sign \x887B 1245-1236-2 sign \x887C 1-156-3 sign \x887D 1245-136-5 sign \x887E 245-1456-3 sign \x887F 13-1456-3 sign \x8880 13-256-3 sign \x8881 45-2 sign \x8882 134-356-5 sign \x8883 12-2456-5 sign \x8884 146-4 sign \x8885 1345-246-4 sign \x8886 1235-1246-3 sign \x8887 1245-1236-2 sign \x8888 13-23456-3 sign \x8889 124-25-2 sign \x888A 14-13456-4 sign \x888B 145-2456-5 sign \x888C 135-146-5 sign \x888D 1234-146-2 sign \x888E 246-5 sign \x888F 125-25-5 sign \x8890 135-16-5 sign \x8891 24-146-5 sign \x8892 124-1236-4 sign \x8893 13-1256-4 sign \x8894 1235-2346-5 sign \x8895 15-236-5 sign \x8896 15-234-5 sign \x8897 1-136-4 sign \x8898 16-2 sign \x8899 1234-345-5 sign \x889A 135-126-3 sign \x889B 145-16-3 sign \x889C 35-5 sign \x889D 12345-34-5 sign \x889E 13-123456-4 sign \x889F 1-156-5 sign \x88A0 1-156-5 sign \x88A1 1245-1236-2 sign \x88A2 1234-1236-5 sign \x88A3 16-5 sign \x88A4 134-146-5 sign \x88A6 1345-345-5 sign \x88A7 123-12356-3 sign \x88A8 15-45-5 sign \x88A9 12-1236-3 sign \x88AA 245-1256-3 sign \x88AB 135-356-5 sign \x88AC 124-2456-2 sign \x88AD 15-16-2 sign \x88AF 135-126-2 sign \x88B1 12345-34-2 sign \x88B2 16-2 sign \x88B3 12-156-4 sign \x88B4 123-34-5 sign \x88B5 1245-136-5 sign \x88B6 13-46-5 sign \x88B7 13-23456-2 sign \x88B8 245-123456-2 sign \x88B9 1234-345-5 sign \x88BA 13-346-2 sign \x88BB 156-2 sign \x88BC 13-2346-5 sign \x88BD 1245-34-2 sign \x88BE 1-34-3 sign \x88BF 13-1246-3 sign \x88C0 1456-3 sign \x88C1 245-2456-2 sign \x88C2 14-346-5 sign \x88C5 1-456-3 sign \x88C6 145-1346-3 sign \x88C8 123-123456-3 sign \x88C9 123-136-5 sign \x88CA 1345-246-4 sign \x88CB 24-34-5 sign \x88CC 125-1246-4 sign \x88CD 123-123456-4 sign \x88CE 12-1356-2 sign \x88CF 14-16-4 sign \x88D0 13-45-3 sign \x88D1 24-136-3 sign \x88D2 1234-12356-2 sign \x88D3 13-2346-2 sign \x88D4 16-5 sign \x88D5 1256-5 sign \x88D6 1-136-4 sign \x88D7 14-234-2 sign \x88D8 245-234-2 sign \x88D9 245-256-2 sign \x88DA 13-16-5 sign \x88DB 346-5 sign \x88DC 135-34-4 sign \x88DD 1-456-3 sign \x88DE 24-1246-5 sign \x88DF 24-345-3 sign \x88E0 245-256-2 sign \x88E1 14-16-4 sign \x88E2 14-2345-2 sign \x88E3 14-2345-2 sign \x88E4 123-34-5 sign \x88E5 13-2345-5 sign \x88E6 12345-12356-2 sign \x88E7 12-1236-3 sign \x88E8 135-16-5 sign \x88E9 13-123456-3 sign \x88EA 124-146-2 sign \x88EB 45-5 sign \x88EC 14-13456-2 sign \x88ED 12-156-4 sign \x88EE 12-1346-3 sign \x88EF 145-146-3 sign \x88F0 145-25-2 sign \x88F1 135-246-4 sign \x88F2 14-46-4 sign \x88F3 24-1346-3 sign \x88F4 1234-356-2 sign \x88F5 1234-356-2 sign \x88F6 12345-356-3 sign \x88F7 45-3 sign \x88F8 14-25-4 sign \x88F9 13-25-4 sign \x88FA 2345-4 sign \x88FB 145-34-4 sign \x88FC 15-16-2 sign \x88FD 1-156-5 sign \x88FE 13-1256-3 sign \x88FF 245-16-4 sign \x8900 13-16-5 sign \x8901 1-156-2 sign \x8902 13-35-5 sign \x8903 123-136-5 sign \x8905 124-16-5 sign \x8906 124-16-2 sign \x8907 12345-34-5 sign \x8908 12-12346-2 sign \x8909 15-346-3 sign \x890A 135-2345-4 sign \x890B 145-346-2 sign \x890C 123-123456-3 sign \x890D 145-12456-3 sign \x890E 15-234-5 sign \x890F 15-234-5 sign \x8910 1235-2346-2 sign \x8911 45-5 sign \x8912 135-146-3 sign \x8913 135-146-4 sign \x8914 12345-34-5 sign \x8915 1256-2 sign \x8916 124-12456-5 sign \x8917 2345-4 sign \x8918 1235-1246-3 sign \x8919 135-356-5 sign \x891A 12-34-4 sign \x891B 14-1256-4 sign \x891E 256-4 sign \x891F 145-345-2 sign \x8920 13-12356-3 sign \x8921 145-345-3 sign \x8922 1235-2356-2 sign \x8923 1245-12346-2 sign \x8924 45-5 sign \x8925 1245-34-5 sign \x8926 1345-2456-5 sign \x8927 13-235-4 sign \x8928 15-25-4 sign \x8929 135-1236-3 sign \x892A 124-123456-5 sign \x892B 12-156-4 sign \x892C 15-1346-4 sign \x892D 1345-246-4 sign \x892E 13456-2 sign \x892F 13-346-5 sign \x8930 245-2345-3 sign \x8931 1235-2356-2 sign \x8932 123-34-5 sign \x8933 14-2345-2 sign \x8934 14-1236-2 sign \x8935 14-16-2 sign \x8936 1-2346-2 sign \x8937 24-156-3 sign \x8938 14-1256-4 sign \x8939 16-5 sign \x893A 145-346-2 sign \x893B 15-346-5 sign \x893C 15-2345-3 sign \x893D 1246-5 sign \x893E 135-246-4 sign \x893F 245-146-2 sign \x8940 13-16-3 sign \x8941 245-46-4 sign \x8942 15-136-3 sign \x8943 135-146-3 sign \x8944 15-46-3 sign \x8946 1234-34-2 sign \x8947 13-2345-4 sign \x8948 1-12456-5 sign \x8949 13-2345-5 sign \x894A 125-1246-5 sign \x894B 13-16-2 sign \x894C 145-1236-3 sign \x894D 125-345-2 sign \x894E 12345-1236-2 sign \x894F 135-126-2 sign \x8950 15-46-5 sign \x8951 15-1456-2 sign \x8952 135-346-2 sign \x8953 1245-146-2 sign \x8954 134-1236-4 sign \x8955 14-1236-2 sign \x8956 146-4 sign \x8957 145-25-2 sign \x8958 13-1246-5 sign \x8959 245-146-5 sign \x895A 15-1246-5 sign \x895B 1345-12346-2 sign \x895C 12-1236-3 sign \x895D 14-2345-2 sign \x895E 135-16-5 sign \x895F 13-1456-3 sign \x8960 145-1346-3 sign \x8961 24-34-4 sign \x8962 124-1236-4 sign \x8963 135-16-5 sign \x8964 14-1236-2 sign \x8965 1234-34-2 sign \x8966 1245-34-2 sign \x8967 1-156-4 sign \x8969 24-34-4 sign \x896A 35-5 sign \x896B 24-156-5 sign \x896C 135-2456-4 sign \x896D 15-346-2 sign \x896E 135-126-2 sign \x896F 12-136-5 sign \x8970 14-2456-5 sign \x8971 14-12346-2 sign \x8972 15-16-2 sign \x8973 15-2345-3 sign \x8974 14-1236-2 sign \x8975 1-2346-2 sign \x8976 145-2456-5 sign \x8978 125-1236-5 sign \x8979 15-16-4 sign \x897A 13-2345-4 sign \x897B 1234-1236-5 sign \x897C 16-5 sign \x897E 23456-5 sign \x897F 15-16-3 sign \x8980 15-16-3 sign \x8981 246-5 sign \x8982 12345-1356-4 sign \x8983 245-1456-2 sign \x8985 12345-246-5 sign \x8986 12345-34-5 sign \x8987 135-345-5 sign \x8988 1235-2346-2 sign \x8989 13-16-3 sign \x898A 13-16-3 sign \x898B 13-2345-5 sign \x898C 13-12456-3 sign \x898D 135-2345-5 sign \x898E 2345-5 sign \x898F 13-1246-3 sign \x8990 13-236-2 sign \x8991 1234-2345-4 sign \x8992 134-146-2 sign \x8993 134-16-5 sign \x8994 134-16-5 sign \x8995 1234-346-3 sign \x8996 24-156-5 sign \x8997 15-156-3 sign \x8998 12-1236-3 sign \x8999 14-25-2 sign \x899A 13-236-2 sign \x899B 134-16-5 sign \x899C 124-246-5 sign \x899D 14-2345-2 sign \x899E 246-5 sign \x899F 1-156-5 sign \x89A0 13-256-3 sign \x89A1 15-16-2 sign \x89A2 24-1236-4 sign \x89A3 1246-3 sign \x89A4 15-16-5 sign \x89A5 124-2345-4 sign \x89A6 1256-2 sign \x89A7 14-1236-4 sign \x89A8 2346-5 sign \x89A9 145-34-4 sign \x89AA 245-1456-3 sign \x89AB 1234-1346-4 sign \x89AC 13-16-5 sign \x89AD 134-13456-2 sign \x89AE 1234-13456-3 sign \x89AF 13-12356-5 sign \x89B0 245-1256-5 sign \x89B1 1-1236-5 sign \x89B2 13-1456-5 sign \x89B3 13-12456-3 sign \x89B4 145-1356-3 sign \x89B5 13-2345-5 sign \x89B6 14-25-2 sign \x89B7 245-1256-5 sign \x89B8 13-2345-5 sign \x89B9 1246-2 sign \x89BA 13-236-2 sign \x89BB 245-1256-5 sign \x89BC 14-25-2 sign \x89BD 14-1236-4 sign \x89BE 24-136-4 sign \x89BF 145-16-2 sign \x89C0 13-12456-3 sign \x89C1 13-2345-5 sign \x89C2 13-12456-3 sign \x89C3 2345-5 sign \x89C4 13-1246-3 sign \x89C5 134-16-5 sign \x89C6 24-156-5 sign \x89C7 12-1236-3 sign \x89C8 14-1236-4 sign \x89C9 13-236-2 sign \x89CA 13-16-5 sign \x89CB 15-16-2 sign \x89CC 145-16-2 sign \x89CD 124-2345-4 sign \x89CE 1256-2 sign \x89CF 13-12356-5 sign \x89D0 13-1456-5 sign \x89D1 245-1256-5 sign \x89D2 13-246-4 sign \x89D3 245-234-2 sign \x89D4 13-1456-3 sign \x89D5 245-34-3 sign \x89D6 13-236-2 sign \x89D7 1-156-5 sign \x89D8 12-146-5 sign \x89D9 13-16-2 sign \x89DA 13-34-3 sign \x89DB 145-1236-5 sign \x89DC 125-156-3 sign \x89DD 145-16-4 sign \x89DE 24-1346-3 sign \x89DF 1235-35-5 sign \x89E0 245-45-2 sign \x89E1 13-2346-2 sign \x89E2 12-156-5 sign \x89E3 13-346-4 sign \x89E4 13-1246-4 sign \x89E5 13-12346-3 sign \x89E6 12-34-5 sign \x89E7 13-346-4 sign \x89E8 1235-123456-5 sign \x89E9 245-234-2 sign \x89EA 15-13456-3 sign \x89EB 15-34-5 sign \x89EC 1345-16-2 sign \x89ED 245-16-3 sign \x89EE 14-34-5 sign \x89EF 1-156-5 sign \x89F0 1-345-3 sign \x89F1 135-16-5 sign \x89F2 15-13456-1 sign \x89F3 1235-34-2 sign \x89F4 24-1346-3 sign \x89F5 13-12346-3 sign \x89F6 1-156-5 sign \x89F7 15-236-2 sign \x89F8 12-34-5 sign \x89F9 15-16-3 sign \x89FA 16-2 sign \x89FB 14-34-5 sign \x89FC 13-236-2 sign \x89FD 15-16-3 sign \x89FE 2345-5 sign \x89FF 15-16-3 sign \x8A00 2345-2 sign \x8A02 145-13456-5 sign \x8A03 12345-34-5 sign \x8A04 245-234-2 sign \x8A05 245-234-2 sign \x8A06 13-246-5 sign \x8A07 1235-12346-3 sign \x8A08 13-16-5 sign \x8A09 12345-1236-5 sign \x8A0A 15-256-5 sign \x8A0B 145-246-5 sign \x8A0C 1235-12346-2 sign \x8A0D 12-345-5 sign \x8A0E 124-146-4 sign \x8A0F 15-1256-3 sign \x8A10 13-346-2 sign \x8A11 16-2 sign \x8A12 1245-136-5 sign \x8A13 15-256-5 sign \x8A14 1456-2 sign \x8A15 24-1236-5 sign \x8A16 245-16-5 sign \x8A17 124-25-3 sign \x8A18 13-16-5 sign \x8A19 15-256-5 sign \x8A1A 1456-2 sign \x8A1B 2346-2 sign \x8A1C 12345-136-3 sign \x8A1D 23456-5 sign \x8A1E 246-3 sign \x8A1F 15-12346-5 sign \x8A20 24-136-4 sign \x8A21 1456-2 sign \x8A22 15-1456-3 sign \x8A23 13-236-2 sign \x8A24 15-246-2 sign \x8A25 1345-345-5 sign \x8A26 12-136-2 sign \x8A27 234-2 sign \x8A28 1-156-4 sign \x8A29 15-235-3 sign \x8A2A 12345-1346-4 sign \x8A2B 15-1456-5 sign \x8A2C 12-146-3 sign \x8A2D 24-2346-5 sign \x8A2E 15-2345-3 sign \x8A2F 24-345-4 sign \x8A30 1-123456-5 sign \x8A31 15-1256-4 sign \x8A32 16-5 sign \x8A33 16-5 sign \x8A34 15-34-5 sign \x8A35 12-156-3 sign \x8A36 1235-2346-3 sign \x8A37 24-136-3 sign \x8A38 1235-2346-2 sign \x8A39 15-1256-5 sign \x8A3A 1-136-4 sign \x8A3B 1-34-5 sign \x8A3C 1-1356-5 sign \x8A3D 13-12356-5 sign \x8A3E 125-156-3 sign \x8A3F 125-156-3 sign \x8A40 1-1236-3 sign \x8A41 13-34-4 sign \x8A42 12345-34-5 sign \x8A43 245-45-4 sign \x8A44 16-5 sign \x8A45 14-13456-5 sign \x8A46 145-16-4 sign \x8A47 46-5 sign \x8A48 14-16-5 sign \x8A49 1345-146-2 sign \x8A4A 1234-1236-5 sign \x8A4B 1-12356-5 sign \x8A4C 13-1236-5 sign \x8A4D 16-5 sign \x8A4E 13-1256-5 sign \x8A4F 146-5 sign \x8A50 1-345-5 sign \x8A51 16-2 sign \x8A52 16-2 sign \x8A53 245-1256-4 sign \x8A54 1-146-5 sign \x8A55 1234-13456-2 sign \x8A56 135-16-5 sign \x8A57 15-235-4 sign \x8A58 245-1256-3 sign \x8A59 135-345-2 sign \x8A5A 145-345-2 sign \x8A5B 125-34-4 sign \x8A5C 124-146-3 sign \x8A5D 1-34-4 sign \x8A5E 245-156-2 sign \x8A5F 1-2346-2 sign \x8A60 235-4 sign \x8A61 15-1256-4 sign \x8A62 15-256-2 sign \x8A63 16-5 sign \x8A64 1235-456-4 sign \x8A65 1235-2346-2 sign \x8A66 24-156-5 sign \x8A67 12-345-2 sign \x8A68 15-246-3 sign \x8A69 24-156-3 sign \x8A6A 1235-136-4 sign \x8A6B 12-345-5 sign \x8A6C 13-12356-5 sign \x8A6D 13-1246-4 sign \x8A6E 245-45-2 sign \x8A6F 1235-1246-5 sign \x8A70 13-346-2 sign \x8A71 1235-35-5 sign \x8A72 13-2456-3 sign \x8A73 15-46-2 sign \x8A74 1246-3 sign \x8A75 24-136-3 sign \x8A76 12-12356-2 sign \x8A77 124-12346-2 sign \x8A78 134-16-2 sign \x8A79 1-1236-3 sign \x8A7A 134-13456-5 sign \x8A7B 2346-5 sign \x8A7C 1235-1246-3 sign \x8A7D 2345-2 sign \x8A7E 15-235-3 sign \x8A7F 13-35-5 sign \x8A80 156-5 sign \x8A81 1234-13456-5 sign \x8A82 124-246-4 sign \x8A83 12-156-4 sign \x8A84 14-356-4 sign \x8A85 1-34-3 sign \x8A86 13-456-3 sign \x8A87 123-35-3 sign \x8A88 34-2 sign \x8A89 1256-5 sign \x8A8A 124-1356-2 sign \x8A8B 13-16-5 sign \x8A8C 1-156-5 sign \x8A8D 1245-136-5 sign \x8A8E 15-34-5 sign \x8A8F 14-1346-4 sign \x8A90 2346-2 sign \x8A91 123-456-2 sign \x8A92 15-16-3 sign \x8A93 24-156-5 sign \x8A94 124-13456-4 sign \x8A95 145-1236-5 sign \x8A96 135-356-5 sign \x8A97 12-1236-2 sign \x8A98 234-5 sign \x8A99 123-1356-3 sign \x8A9A 245-246-5 sign \x8A9B 245-1456-3 sign \x8A9C 24-35-5 sign \x8A9D 1236-3 sign \x8A9E 1256-4 sign \x8A9F 15-246-5 sign \x8AA0 12-1356-2 sign \x8AA1 13-346-5 sign \x8AA2 15-2345-5 sign \x8AA3 34-3 sign \x8AA4 34-5 sign \x8AA5 13-146-5 sign \x8AA6 15-12346-5 sign \x8AA7 1234-34-4 sign \x8AA8 1235-1246-4 sign \x8AA9 13-13456-5 sign \x8AAA 24-25-3 sign \x8AAB 1-136-5 sign \x8AAC 24-25-3 sign \x8AAD 145-34-2 sign \x8AAF 12-1346-5 sign \x8AB0 24-356-2 sign \x8AB1 13-346-2 sign \x8AB2 123-2346-5 sign \x8AB3 245-1256-3 sign \x8AB4 245-12346-2 sign \x8AB5 15-246-2 sign \x8AB6 15-1246-5 sign \x8AB7 456-4 sign \x8AB8 15-2345-2 sign \x8AB9 12345-356-4 sign \x8ABA 12-156-3 sign \x8ABB 124-345-5 sign \x8ABC 16-2 sign \x8ABD 16-5 sign \x8ABE 1456-2 sign \x8ABF 145-246-5 sign \x8AC0 1234-16-4 sign \x8AC1 12-25-5 sign \x8AC2 12-1236-4 sign \x8AC3 12-136-3 sign \x8AC4 1-123456-3 sign \x8AC5 13-16-5 sign \x8AC6 245-16-3 sign \x8AC7 124-1236-2 sign \x8AC8 12-1246-2 sign \x8AC9 1246-4 sign \x8ACA 13-1256-2 sign \x8ACB 245-13456-4 sign \x8ACC 13-2345-5 sign \x8ACD 1-1356-5 sign \x8ACE 125-2346-2 sign \x8ACF 125-12356-3 sign \x8AD0 245-2345-3 sign \x8AD1 1-25-2 sign \x8AD2 14-46-5 sign \x8AD3 13-2345-3 sign \x8AD4 12-34-5 sign \x8AD5 1235-146-2 sign \x8AD6 14-123456-5 sign \x8AD7 24-136-4 sign \x8AD8 135-246-4 sign \x8AD9 1235-2356-5 sign \x8ADA 1234-2345-2 sign \x8ADB 1256-2 sign \x8ADC 145-346-2 sign \x8ADD 15-1256-4 sign \x8ADE 1234-2345-2 sign \x8ADF 24-156-5 sign \x8AE0 15-45-3 sign \x8AE1 24-156-5 sign \x8AE2 1235-123456-5 sign \x8AE3 1235-35-5 sign \x8AE4 2346-5 sign \x8AE5 1-12346-5 sign \x8AE6 145-16-5 sign \x8AE7 15-346-2 sign \x8AE8 12345-34-2 sign \x8AE9 1234-34-4 sign \x8AEA 124-13456-2 sign \x8AEB 13-2345-5 sign \x8AEC 245-16-4 sign \x8AED 1256-5 sign \x8AEE 125-156-3 sign \x8AEF 12-12456-2 sign \x8AF0 15-16-4 sign \x8AF1 1235-1246-5 sign \x8AF2 1456-3 sign \x8AF3 1236-3 sign \x8AF4 15-2345-2 sign \x8AF5 1345-1236-2 sign \x8AF6 12-136-2 sign \x8AF7 12345-1356-5 sign \x8AF8 1-34-3 sign \x8AF9 46-2 sign \x8AFA 2345-5 sign \x8AFB 1235-1356-3 sign \x8AFC 15-45-3 sign \x8AFD 13-2346-2 sign \x8AFE 1345-25-5 sign \x8AFF 245-16-5 sign \x8B00 134-12356-2 sign \x8B01 346-5 sign \x8B02 1246-5 sign \x8B04 124-1356-2 sign \x8B05 125-12356-3 sign \x8B06 24-1236-5 sign \x8B07 13-2345-4 sign \x8B08 135-126-2 sign \x8B0A 1235-456-4 sign \x8B0B 1235-25-5 sign \x8B0C 13-2346-3 sign \x8B0D 13456-2 sign \x8B0E 134-16-2 sign \x8B0F 15-12356-4 sign \x8B10 134-16-5 sign \x8B11 15-16-5 sign \x8B12 245-46-3 sign \x8B13 12-136-3 sign \x8B14 1345-236-5 sign \x8B15 124-16-2 sign \x8B16 15-34-5 sign \x8B17 135-1346-5 sign \x8B18 12-156-2 sign \x8B19 245-2345-3 sign \x8B1A 24-156-5 sign \x8B1B 13-46-4 sign \x8B1C 45-5 sign \x8B1D 15-346-5 sign \x8B1E 1235-2346-5 sign \x8B1F 124-146-3 sign \x8B20 246-2 sign \x8B21 246-2 sign \x8B22 135-345-1 sign \x8B23 1256-2 sign \x8B24 135-246-3 sign \x8B25 245-12346-5 sign \x8B26 245-13456-4 sign \x8B27 14-16-2 sign \x8B28 134-126-2 sign \x8B29 134-126-2 sign \x8B2A 24-1346-3 sign \x8B2B 1-2346-2 sign \x8B2C 134-234-5 sign \x8B2D 13-2345-4 sign \x8B2E 125-2346-2 sign \x8B2F 1-34-5 sign \x8B30 14-2345-2 sign \x8B31 14-12356-2 sign \x8B32 245-1236-3 sign \x8B33 12356-3 sign \x8B34 13-12456-5 sign \x8B35 15-16-2 sign \x8B36 1-25-2 sign \x8B37 146-2 sign \x8B38 146-2 sign \x8B39 13-1456-4 sign \x8B3A 1-2346-2 sign \x8B3B 12-156-2 sign \x8B3C 1235-34-3 sign \x8B3D 13-46-5 sign \x8B3E 134-1236-5 sign \x8B3F 12-146-2 sign \x8B40 1235-1236-5 sign \x8B41 1235-35-2 sign \x8B42 12-1236-4 sign \x8B43 15-1256-3 sign \x8B44 125-1356-3 sign \x8B45 15-2346-5 sign \x8B46 15-16-3 sign \x8B47 1-345-3 sign \x8B48 145-1246-5 sign \x8B49 1-1356-5 sign \x8B4A 1345-146-2 sign \x8B4B 14-1236-2 sign \x8B4C 2346-2 sign \x8B4D 13456-5 sign \x8B4E 13-236-2 sign \x8B4F 13-16-3 sign \x8B50 125-123456-4 sign \x8B51 13-246-4 sign \x8B52 135-126-5 sign \x8B53 1235-1246-5 sign \x8B54 1-12456-5 sign \x8B55 134-34-2 sign \x8B56 125-136-5 sign \x8B57 1-345-2 sign \x8B58 24-156-5 sign \x8B59 13-246-3 sign \x8B5A 124-1236-2 sign \x8B5B 125-136-5 sign \x8B5C 1234-34-4 sign \x8B5D 24-1356-2 sign \x8B5E 15-45-3 sign \x8B5F 125-146-5 sign \x8B60 124-1236-3 sign \x8B61 145-1346-4 sign \x8B62 15-1246-5 sign \x8B63 245-2345-3 sign \x8B64 13-16-3 sign \x8B65 13-246-5 sign \x8B66 13-13456-4 sign \x8B67 14-2345-2 sign \x8B68 1345-12356-5 sign \x8B69 16-3 sign \x8B6A 2456-5 sign \x8B6B 1-1236-3 sign \x8B6C 1234-16-5 sign \x8B6D 1235-1246-4 sign \x8B6E 1235-35-5 sign \x8B6F 16-5 sign \x8B70 16-5 sign \x8B71 24-1236-5 sign \x8B72 1245-1346-5 sign \x8B73 1345-12356-5 sign \x8B74 245-2345-4 sign \x8B75 1-1246-5 sign \x8B76 124-345-5 sign \x8B77 1235-34-5 sign \x8B78 1-12356-3 sign \x8B79 13-146-3 sign \x8B7A 346-5 sign \x8B7B 13456-3 sign \x8B7C 13-2345-5 sign \x8B7D 1256-5 sign \x8B7E 13-2345-4 sign \x8B7F 1235-1246-5 sign \x8B80 145-34-2 sign \x8B81 1-2346-2 sign \x8B82 15-45-5 sign \x8B83 125-1236-5 sign \x8B84 14-356-4 sign \x8B85 24-136-4 sign \x8B86 1246-5 sign \x8B87 12-1236-4 sign \x8B88 14-16-5 sign \x8B89 16-2 sign \x8B8A 135-2345-5 sign \x8B8B 1-2346-2 sign \x8B8C 2345-5 sign \x8B8D 2346-5 sign \x8B8E 12-12356-2 sign \x8B8F 1246-5 sign \x8B90 12-12356-2 sign \x8B91 246-5 sign \x8B92 12-1236-2 sign \x8B93 1245-1346-5 sign \x8B94 1456-4 sign \x8B95 14-1236-2 sign \x8B96 12-136-5 sign \x8B97 1235-25-5 sign \x8B98 1-2346-2 sign \x8B99 1235-12456-3 sign \x8B9A 125-1236-5 sign \x8B9B 16-5 sign \x8B9C 145-1346-4 sign \x8B9D 1-1236-3 sign \x8B9E 2345-5 sign \x8B9F 145-34-2 sign \x8BA0 14-234-2 sign \x8BA1 13-16-5 sign \x8BA2 145-13456-5 sign \x8BA3 12345-34-5 sign \x8BA4 1245-136-5 sign \x8BA5 13-16-3 sign \x8BA6 13-346-2 sign \x8BA7 1235-12346-2 sign \x8BA8 124-146-4 sign \x8BA9 1245-1346-5 sign \x8BAA 24-1236-5 sign \x8BAB 245-16-5 sign \x8BAC 124-25-3 sign \x8BAD 15-256-5 sign \x8BAE 16-5 sign \x8BAF 15-256-5 sign \x8BB0 13-16-5 sign \x8BB1 1245-136-5 sign \x8BB2 13-46-4 sign \x8BB3 1235-1246-5 sign \x8BB4 12356-3 sign \x8BB5 13-1256-5 sign \x8BB6 23456-5 sign \x8BB7 1345-345-5 sign \x8BB8 15-1256-4 sign \x8BB9 2346-2 sign \x8BBA 14-123456-5 sign \x8BBB 15-235-3 sign \x8BBC 15-12346-5 sign \x8BBD 12345-1356-5 sign \x8BBE 24-2346-5 sign \x8BBF 12345-1346-4 sign \x8BC0 13-236-2 sign \x8BC1 1-1356-5 sign \x8BC2 13-34-4 sign \x8BC3 1235-2346-3 sign \x8BC4 1234-13456-2 sign \x8BC5 125-34-4 sign \x8BC6 24-156-5 sign \x8BC7 15-235-5 sign \x8BC8 1-345-5 sign \x8BC9 15-34-5 sign \x8BCA 1-136-4 sign \x8BCB 145-16-4 sign \x8BCC 125-12356-3 sign \x8BCD 245-156-2 sign \x8BCE 1-146-5 sign \x8BCF 1-146-5 sign \x8BD0 135-16-5 sign \x8BD1 16-5 sign \x8BD2 16-2 sign \x8BD3 13-456-3 sign \x8BD4 14-356-4 sign \x8BD5 24-156-5 sign \x8BD6 13-35-5 sign \x8BD7 24-156-3 sign \x8BD8 13-346-2 sign \x8BD9 1235-1246-3 sign \x8BDA 12-1356-2 sign \x8BDB 1-34-3 sign \x8BDC 24-136-3 sign \x8BDD 1235-35-5 sign \x8BDE 145-1236-5 sign \x8BDF 13-12356-5 sign \x8BE0 245-45-2 sign \x8BE1 13-1246-4 sign \x8BE2 15-256-2 sign \x8BE3 16-5 sign \x8BE4 1-1356-5 sign \x8BE5 13-2456-3 sign \x8BE6 15-46-2 sign \x8BE7 12-345-5 sign \x8BE8 1235-123456-5 sign \x8BE9 15-1256-4 sign \x8BEA 1-12356-3 sign \x8BEB 13-346-5 sign \x8BEC 34-3 sign \x8BED 1256-4 sign \x8BEE 245-246-5 sign \x8BEF 34-5 sign \x8BF0 13-146-5 sign \x8BF1 234-5 sign \x8BF2 1235-1246-4 sign \x8BF3 123-456-2 sign \x8BF4 24-25-3 sign \x8BF5 15-12346-5 sign \x8BF6 15-16-3 sign \x8BF7 245-13456-4 sign \x8BF8 1-34-3 sign \x8BF9 125-12356-3 sign \x8BFA 1345-25-5 sign \x8BFB 145-34-2 sign \x8BFC 1-25-2 sign \x8BFD 12345-356-4 sign \x8BFE 123-2346-5 sign \x8BFF 1246-4 sign \x8C00 1256-2 sign \x8C01 24-356-2 sign \x8C02 24-136-4 sign \x8C03 145-246-5 sign \x8C04 12-1236-4 sign \x8C05 14-46-5 sign \x8C06 1-123456-3 sign \x8C07 15-1246-5 sign \x8C08 124-1236-2 sign \x8C09 24-136-4 sign \x8C0A 16-2 sign \x8C0B 134-12356-2 sign \x8C0C 12-136-2 sign \x8C0D 145-346-2 sign \x8C0E 1235-456-4 sign \x8C0F 13-2345-5 sign \x8C10 15-346-2 sign \x8C11 1345-236-5 sign \x8C12 346-5 sign \x8C13 1246-5 sign \x8C14 2346-5 sign \x8C15 1256-5 sign \x8C16 15-45-3 sign \x8C17 12-1236-2 sign \x8C18 125-156-3 sign \x8C19 1236-3 sign \x8C1A 2345-5 sign \x8C1B 145-16-5 sign \x8C1C 134-16-2 sign \x8C1D 1234-2345-2 sign \x8C1E 15-1256-4 sign \x8C1F 134-126-2 sign \x8C20 145-1346-4 sign \x8C21 15-34-5 sign \x8C22 15-346-5 sign \x8C23 246-2 sign \x8C24 135-1346-5 sign \x8C25 24-156-5 sign \x8C26 245-2345-3 sign \x8C27 134-16-5 sign \x8C28 13-1456-4 sign \x8C29 134-1236-5 sign \x8C2A 1-2346-2 sign \x8C2B 13-2345-4 sign \x8C2C 134-234-5 sign \x8C2D 124-1236-2 sign \x8C2E 125-136-5 sign \x8C2F 13-246-3 sign \x8C30 14-1236-2 sign \x8C31 1234-34-4 sign \x8C32 13-236-2 sign \x8C33 2345-5 sign \x8C34 245-2345-4 sign \x8C35 1-1236-3 sign \x8C36 12-136-5 sign \x8C37 13-34-4 sign \x8C38 245-2345-3 sign \x8C39 1235-12346-2 sign \x8C3A 15-23456-3 sign \x8C3B 13-236-2 sign \x8C3C 1235-12346-2 sign \x8C3D 1235-1236-3 sign \x8C3E 1235-12346-3 sign \x8C3F 15-16-3 sign \x8C40 15-16-3 sign \x8C41 1235-25-5 sign \x8C42 14-246-2 sign \x8C43 1235-1236-4 sign \x8C44 145-34-2 sign \x8C45 14-12346-2 sign \x8C46 145-12356-5 sign \x8C47 13-46-3 sign \x8C48 245-16-4 sign \x8C49 24-156-5 sign \x8C4A 14-16-4 sign \x8C4B 145-1356-3 sign \x8C4C 12456-3 sign \x8C4D 135-16-3 sign \x8C4E 24-34-5 sign \x8C4F 15-2345-5 sign \x8C50 12345-1356-3 sign \x8C51 1-156-5 sign \x8C52 1-156-5 sign \x8C53 2345-5 sign \x8C54 2345-5 sign \x8C55 24-156-4 sign \x8C56 12-34-5 sign \x8C57 1235-1246-3 sign \x8C58 124-123456-2 sign \x8C59 16-5 sign \x8C5A 124-123456-2 sign \x8C5B 16-5 sign \x8C5C 13-2345-3 sign \x8C5D 135-345-3 sign \x8C5E 1235-12356-5 sign \x8C5F 2346-5 sign \x8C60 245-34-2 sign \x8C61 15-46-5 sign \x8C62 1235-12456-5 sign \x8C63 13-2345-3 sign \x8C64 123-136-4 sign \x8C65 13-2456-3 sign \x8C66 245-1256-2 sign \x8C67 12345-34-3 sign \x8C68 15-16-4 sign \x8C69 135-1456-3 sign \x8C6A 1235-146-2 sign \x8C6B 1256-5 sign \x8C6C 1-34-3 sign \x8C6D 13-23456-3 sign \x8C6E 12345-136-2 sign \x8C6F 15-16-3 sign \x8C70 1235-34-5 sign \x8C71 123456-3 sign \x8C72 1235-12456-2 sign \x8C73 135-1456-3 sign \x8C74 145-16-2 sign \x8C75 125-12346-3 sign \x8C76 12345-136-2 sign \x8C77 15-16-5 sign \x8C78 1-156-5 sign \x8C79 135-146-5 sign \x8C7A 12-2456-2 sign \x8C7B 1235-1236-5 sign \x8C7C 1234-16-2 sign \x8C7D 1345-345-5 sign \x8C7E 1234-16-3 sign \x8C7F 13-12356-4 sign \x8C80 1345-345-5 sign \x8C81 234-5 sign \x8C82 145-246-3 sign \x8C83 134-126-5 sign \x8C84 15-156-5 sign \x8C85 15-234-3 sign \x8C86 1235-12456-2 sign \x8C87 123-123456-3 sign \x8C88 1235-2346-2 sign \x8C89 1235-2346-2 sign \x8C8A 134-126-5 sign \x8C8B 1235-1236-5 sign \x8C8C 134-146-5 sign \x8C8D 14-16-2 sign \x8C8E 1345-16-2 sign \x8C8F 135-16-4 sign \x8C90 1256-4 sign \x8C91 13-23456-3 sign \x8C92 124-12456-3 sign \x8C93 134-146-3 sign \x8C94 1234-16-2 sign \x8C95 15-16-3 sign \x8C96 2346-5 sign \x8C97 13-1256-5 sign \x8C98 134-126-5 sign \x8C99 12-34-3 sign \x8C9A 124-1236-2 sign \x8C9B 1235-12456-3 sign \x8C9C 13-236-2 sign \x8C9D 135-356-5 sign \x8C9E 1-136-3 sign \x8C9F 45-2 sign \x8CA0 12345-34-5 sign \x8CA1 245-2456-2 sign \x8CA2 13-12346-5 sign \x8CA3 124-2346-5 sign \x8CA4 16-5 sign \x8CA5 1235-1346-2 sign \x8CA6 12456-5 sign \x8CA7 1234-1456-2 sign \x8CA8 1235-25-5 sign \x8CA9 12345-1236-5 sign \x8CAA 124-1236-3 sign \x8CAB 13-12456-5 sign \x8CAC 125-2346-2 sign \x8CAD 1-156-2 sign \x8CAE 156-5 sign \x8CAF 1-34-4 sign \x8CB0 24-156-5 sign \x8CB1 135-16-5 sign \x8CB2 125-156-3 sign \x8CB3 156-5 sign \x8CB4 13-1246-5 sign \x8CB5 1234-2345-3 sign \x8CB6 135-2345-4 sign \x8CB7 134-2456-4 sign \x8CB8 145-2456-5 sign \x8CB9 24-1356-5 sign \x8CBA 123-456-5 sign \x8CBB 12345-356-5 sign \x8CBC 124-346-3 sign \x8CBD 16-2 sign \x8CBE 12-156-2 sign \x8CBF 134-146-5 sign \x8CC0 1235-2346-5 sign \x8CC1 135-136-3 sign \x8CC2 14-34-5 sign \x8CC3 1245-136-5 sign \x8CC4 1235-1246-5 sign \x8CC5 13-2456-3 sign \x8CC6 1234-2345-2 sign \x8CC7 125-156-3 sign \x8CC8 13-23456-4 sign \x8CC9 15-1256-5 sign \x8CCA 125-356-2 sign \x8CCB 13-246-4 sign \x8CCC 13-2456-3 sign \x8CCD 125-1346-3 sign \x8CCE 13-2345-5 sign \x8CCF 13456-5 sign \x8CD0 15-256-5 sign \x8CD1 1-136-5 sign \x8CD2 24-2346-3 sign \x8CD3 135-1456-3 sign \x8CD4 135-1456-3 sign \x8CD5 245-234-2 sign \x8CD6 24-2346-3 sign \x8CD7 12-12456-5 sign \x8CD8 125-1346-3 sign \x8CD9 1-12356-3 sign \x8CDA 14-2456-5 sign \x8CDB 125-1236-5 sign \x8CDC 15-156-5 sign \x8CDD 12-136-3 sign \x8CDE 24-1346-4 sign \x8CDF 124-2345-4 sign \x8CE0 1234-356-2 sign \x8CE1 13-1356-3 sign \x8CE2 15-2345-2 sign \x8CE3 134-2456-5 sign \x8CE4 13-2345-5 sign \x8CE5 15-1246-5 sign \x8CE6 12345-34-5 sign \x8CE7 124-1236-5 sign \x8CE8 245-12346-2 sign \x8CE9 245-12346-2 sign \x8CEA 1-156-2 sign \x8CEB 13-16-3 sign \x8CEC 1-1346-5 sign \x8CED 145-34-4 sign \x8CEE 15-1456-5 sign \x8CEF 15-235-3 sign \x8CF0 24-123456-4 sign \x8CF1 256-4 sign \x8CF2 135-146-4 sign \x8CF3 125-2456-3 sign \x8CF4 14-2456-5 sign \x8CF5 12345-1356-5 sign \x8CF6 245-1346-5 sign \x8CF7 13-16-3 sign \x8CF8 24-1356-5 sign \x8CF9 2456-5 sign \x8CFA 1-12456-5 sign \x8CFB 12345-34-5 sign \x8CFC 13-12356-5 sign \x8CFD 15-2456-5 sign \x8CFE 125-2346-2 sign \x8CFF 14-246-2 sign \x8D00 1246-5 sign \x8D01 135-2456-5 sign \x8D02 12-136-4 sign \x8D03 1-12456-5 sign \x8D04 1-156-5 sign \x8D05 1-1246-5 sign \x8D06 135-246-3 sign \x8D07 256-3 sign \x8D08 125-1356-5 sign \x8D09 124-1236-4 sign \x8D0A 125-1236-5 sign \x8D0B 2345-5 sign \x8D0D 24-1236-5 sign \x8D0E 12456-5 sign \x8D0F 13456-2 sign \x8D10 13-1456-5 sign \x8D11 13-1236-4 sign \x8D12 15-2345-2 sign \x8D13 125-1346-3 sign \x8D14 135-16-5 sign \x8D15 145-34-2 sign \x8D16 24-34-2 sign \x8D17 2345-5 sign \x8D19 15-45-5 sign \x8D1A 14-12346-5 sign \x8D1B 13-1236-5 sign \x8D1C 125-1346-3 sign \x8D1D 135-356-5 sign \x8D1E 1-136-3 sign \x8D1F 12345-34-5 sign \x8D20 45-2 sign \x8D21 13-12346-5 sign \x8D22 245-2456-2 sign \x8D23 125-2346-2 sign \x8D24 15-2345-2 sign \x8D25 135-2456-5 sign \x8D26 1-1346-5 sign \x8D27 1235-25-5 sign \x8D28 1-156-2 sign \x8D29 12345-1236-5 sign \x8D2A 124-1236-3 sign \x8D2B 1234-1456-2 sign \x8D2C 135-2345-4 sign \x8D2D 13-12356-5 sign \x8D2E 1-34-4 sign \x8D2F 13-12456-5 sign \x8D30 156-5 sign \x8D31 13-2345-5 sign \x8D32 135-136-3 sign \x8D33 24-156-5 sign \x8D34 124-346-3 sign \x8D35 13-1246-5 sign \x8D36 123-456-5 sign \x8D37 145-2456-5 sign \x8D38 134-146-5 sign \x8D39 12345-356-5 sign \x8D3A 1235-2346-5 sign \x8D3B 16-2 sign \x8D3C 125-356-2 sign \x8D3D 1-156-5 sign \x8D3E 13-23456-4 sign \x8D3F 1235-1246-5 sign \x8D40 125-156-3 sign \x8D41 1245-136-5 sign \x8D42 14-34-5 sign \x8D43 125-1346-3 sign \x8D44 125-156-3 sign \x8D45 13-2456-3 sign \x8D46 13-1456-5 sign \x8D47 245-234-2 sign \x8D48 1-136-5 sign \x8D49 14-2456-5 sign \x8D4A 24-2346-3 sign \x8D4B 12345-34-5 sign \x8D4C 145-34-4 sign \x8D4D 13-16-3 sign \x8D4E 24-34-2 sign \x8D4F 24-1346-4 sign \x8D50 245-156-5 sign \x8D51 135-16-5 sign \x8D52 1-12356-3 sign \x8D53 13-1356-3 sign \x8D54 1234-356-2 sign \x8D55 124-1236-5 sign \x8D56 14-2456-5 sign \x8D57 12345-1356-5 sign \x8D58 1-1246-5 sign \x8D59 12345-34-5 sign \x8D5A 1-12456-5 sign \x8D5B 15-2456-5 sign \x8D5C 125-2346-2 sign \x8D5D 2345-5 sign \x8D5E 125-1236-5 sign \x8D5F 256-3 sign \x8D60 125-1356-5 sign \x8D61 24-1236-5 sign \x8D62 13456-2 sign \x8D63 13-1236-5 sign \x8D64 12-156-5 sign \x8D65 15-16-5 sign \x8D66 24-2346-5 sign \x8D67 1345-1236-4 sign \x8D68 124-12346-2 sign \x8D69 15-16-5 sign \x8D6A 12-1356-3 sign \x8D6B 1235-2346-5 sign \x8D6C 12-1356-3 sign \x8D6D 1-2346-4 sign \x8D6E 15-23456-2 sign \x8D6F 124-1346-2 sign \x8D70 125-12356-4 sign \x8D71 125-12356-4 sign \x8D72 14-16-5 sign \x8D73 13-234-3 sign \x8D74 12345-34-5 sign \x8D75 1-146-5 sign \x8D76 13-1236-4 sign \x8D77 245-16-4 sign \x8D78 24-1236-5 sign \x8D79 245-235-2 sign \x8D7A 245-1456-2 sign \x8D7B 15-2345-3 sign \x8D7C 245-156-3 sign \x8D7D 13-236-2 sign \x8D7E 245-1456-4 sign \x8D7F 12-156-2 sign \x8D80 245-156-3 sign \x8D81 12-136-5 sign \x8D82 12-136-5 sign \x8D83 145-346-2 sign \x8D84 13-1256-3 sign \x8D85 12-146-3 sign \x8D86 145-16-3 sign \x8D87 15-2346-5 sign \x8D88 1-1236-3 sign \x8D89 1-34-2 sign \x8D8A 236-5 sign \x8D8B 245-1256-3 sign \x8D8C 13-346-2 sign \x8D8D 245-1256-3 sign \x8D8E 12-34-2 sign \x8D8F 13-35-3 sign \x8D90 15-236-5 sign \x8D91 125-156-3 sign \x8D92 124-246-2 sign \x8D93 145-25-4 sign \x8D94 14-346-5 sign \x8D95 13-1236-4 sign \x8D96 15-25-3 sign \x8D97 245-34-5 sign \x8D98 15-16-2 sign \x8D99 1-146-5 sign \x8D9A 15-34-5 sign \x8D9B 1456-4 sign \x8D9C 13-1256-2 sign \x8D9D 13-2345-5 sign \x8D9E 245-236-5 sign \x8D9F 124-1346-5 sign \x8DA0 12-25-5 sign \x8DA1 245-1246-4 sign \x8DA2 14-34-5 sign \x8DA3 245-1256-5 sign \x8DA4 145-1346-5 sign \x8DA5 245-234-3 sign \x8DA6 125-156-3 sign \x8DA7 124-16-2 sign \x8DA8 245-1256-3 sign \x8DA9 12-156-5 sign \x8DAA 1235-456-2 sign \x8DAB 245-246-2 sign \x8DAC 245-246-3 sign \x8DAD 13-246-5 sign \x8DAE 125-146-5 sign \x8DAF 124-16-5 sign \x8DB1 125-1236-4 sign \x8DB2 125-1236-4 sign \x8DB3 125-34-2 sign \x8DB4 1234-345-3 sign \x8DB5 135-146-5 sign \x8DB6 123-34-5 sign \x8DB7 135-345-1 sign \x8DB8 145-123456-4 sign \x8DB9 13-236-2 sign \x8DBA 12345-34-3 sign \x8DBB 12-136-4 sign \x8DBC 13-2345-4 sign \x8DBD 12345-1346-5 sign \x8DBE 1-156-4 sign \x8DBF 15-345-5 sign \x8DC0 236-5 sign \x8DC1 1234-345-2 sign \x8DC2 245-16-2 sign \x8DC3 236-5 sign \x8DC4 245-46-3 sign \x8DC5 124-25-5 sign \x8DC6 124-2456-2 sign \x8DC7 12-156-5 sign \x8DC8 1345-2345-4 sign \x8DC9 14-13456-2 sign \x8DCA 134-356-5 sign \x8DCB 135-345-2 sign \x8DCC 145-346-2 sign \x8DCD 123-34-3 sign \x8DCE 124-25-2 sign \x8DCF 13-23456-3 sign \x8DD0 245-156-4 sign \x8DD1 1234-146-4 sign \x8DD2 245-23456-4 sign \x8DD3 1-34-5 sign \x8DD4 13-1256-3 sign \x8DD5 124-346-3 sign \x8DD6 1-156-2 sign \x8DD7 12345-34-3 sign \x8DD8 1234-1236-2 sign \x8DD9 13-1256-4 sign \x8DDA 24-1236-3 sign \x8DDB 135-126-4 sign \x8DDC 1345-16-2 sign \x8DDD 13-1256-5 sign \x8DDE 14-16-5 sign \x8DDF 13-136-3 sign \x8DE0 16-2 sign \x8DE1 13-16-3 sign \x8DE2 12-156-2 sign \x8DE3 15-2345-4 sign \x8DE4 13-246-3 sign \x8DE5 145-25-5 sign \x8DE6 1-34-3 sign \x8DE7 245-45-2 sign \x8DE8 123-35-5 sign \x8DE9 1-2356-4 sign \x8DEA 13-1246-5 sign \x8DEB 245-235-2 sign \x8DEC 123-1246-4 sign \x8DED 15-46-2 sign \x8DEE 12-156-5 sign \x8DEF 14-34-5 sign \x8DF0 135-1356-5 sign \x8DF1 1-156-5 sign \x8DF2 13-346-2 sign \x8DF3 124-246-5 sign \x8DF4 245-2456-4 sign \x8DF5 13-2345-5 sign \x8DF6 124-345-5 sign \x8DF7 245-246-3 sign \x8DF8 135-16-5 sign \x8DF9 15-2345-3 sign \x8DFA 145-25-5 sign \x8DFB 13-16-3 sign \x8DFC 13-1256-2 sign \x8DFD 13-16-5 sign \x8DFE 24-34-2 sign \x8DFF 124-34-2 sign \x8E00 12-34-5 sign \x8E01 13-13456-5 sign \x8E02 1345-346-5 sign \x8E03 15-246-3 sign \x8E04 135-126-2 sign \x8E05 12-156-5 sign \x8E06 245-256-3 sign \x8E07 134-12356-4 sign \x8E08 24-34-3 sign \x8E09 14-46-2 sign \x8E0A 235-4 sign \x8E0B 13-246-4 sign \x8E0C 12-12356-2 sign \x8E0D 15-246-5 sign \x8E0F 124-345-5 sign \x8E10 13-2345-5 sign \x8E11 13-16-5 sign \x8E12 25-3 sign \x8E13 1246-4 sign \x8E14 1-25-2 sign \x8E15 13-346-2 sign \x8E16 13-16-2 sign \x8E17 1345-346-3 sign \x8E18 13-1256-2 sign \x8E19 1345-346-5 sign \x8E1A 14-123456-2 sign \x8E1B 14-34-5 sign \x8E1C 14-1356-5 sign \x8E1D 1235-35-5 sign \x8E1E 13-1256-5 sign \x8E1F 12-156-2 sign \x8E20 12456-4 sign \x8E21 245-45-2 sign \x8E22 124-16-3 sign \x8E23 135-126-2 sign \x8E24 125-34-2 sign \x8E25 245-346-5 sign \x8E26 245-16-3 sign \x8E27 245-34-5 sign \x8E28 125-12346-3 sign \x8E29 245-2456-4 sign \x8E2A 125-12346-3 sign \x8E2B 1234-1356-5 sign \x8E2C 1-156-5 sign \x8E2D 1-1356-3 sign \x8E2E 145-2345-4 sign \x8E2F 1-156-2 sign \x8E30 1256-2 sign \x8E31 145-25-5 sign \x8E32 145-123456-5 sign \x8E33 12-123456-4 sign \x8E34 235-4 sign \x8E35 1-12346-4 sign \x8E36 145-16-5 sign \x8E37 1-2346-4 sign \x8E38 12-136-4 sign \x8E39 12-2356-5 sign \x8E3A 13-2345-5 sign \x8E3B 13-35-3 sign \x8E3C 124-1346-2 sign \x8E3D 13-1256-4 sign \x8E3E 135-16-5 sign \x8E3F 125-34-2 sign \x8E40 145-346-2 sign \x8E41 1234-2345-2 sign \x8E42 1245-12356-2 sign \x8E43 1345-25-5 sign \x8E44 124-16-2 sign \x8E45 12-345-4 sign \x8E46 124-1246-4 sign \x8E47 13-2345-4 sign \x8E48 145-146-5 sign \x8E49 245-25-3 sign \x8E4A 15-16-3 sign \x8E4B 124-345-5 sign \x8E4C 245-46-3 sign \x8E4D 1-1236-4 sign \x8E4E 145-2345-3 sign \x8E4F 124-16-2 sign \x8E50 13-16-2 sign \x8E51 1345-346-5 sign \x8E52 134-1236-2 sign \x8E53 14-234-5 sign \x8E54 125-1236-5 sign \x8E55 135-16-5 sign \x8E56 12-12346-3 sign \x8E57 14-34-5 sign \x8E58 14-246-2 sign \x8E59 245-34-5 sign \x8E5A 124-1346-3 sign \x8E5B 145-2456-5 sign \x8E5C 15-25-3 sign \x8E5D 15-16-4 sign \x8E5E 123-1246-4 sign \x8E5F 13-16-3 sign \x8E60 1-156-2 sign \x8E61 245-46-3 sign \x8E62 1-156-2 sign \x8E63 134-1236-2 sign \x8E64 125-12346-3 sign \x8E65 14-2345-2 sign \x8E66 135-1356-5 sign \x8E67 125-146-3 sign \x8E68 1345-2345-4 sign \x8E69 135-346-2 sign \x8E6A 124-1246-2 sign \x8E6B 13-1256-2 sign \x8E6C 145-1356-5 sign \x8E6D 245-1356-5 sign \x8E6E 15-2345-3 sign \x8E6F 12345-1236-2 sign \x8E70 12-34-2 sign \x8E71 1-12346-3 sign \x8E72 145-123456-3 sign \x8E73 135-126-3 sign \x8E74 245-34-5 sign \x8E75 245-34-5 sign \x8E76 13-236-2 sign \x8E77 13-236-2 sign \x8E78 14-1456-5 sign \x8E79 124-345-5 sign \x8E7A 245-246-3 sign \x8E7B 245-246-2 sign \x8E7C 1234-34-2 sign \x8E7D 14-246-3 sign \x8E7E 145-123456-3 sign \x8E7F 245-12456-3 sign \x8E80 123-456-5 sign \x8E81 125-146-5 sign \x8E82 124-345-5 sign \x8E83 135-16-5 sign \x8E84 135-16-5 sign \x8E85 1-25-2 sign \x8E86 13-1256-5 sign \x8E87 12-34-2 sign \x8E88 245-246-5 sign \x8E89 145-123456-4 sign \x8E8A 12-12356-2 sign \x8E8B 13-16-3 sign \x8E8C 34-4 sign \x8E8D 236-5 sign \x8E8E 1345-2345-4 sign \x8E8F 14-1456-5 sign \x8E90 14-346-5 sign \x8E91 1-156-2 sign \x8E92 14-16-5 sign \x8E93 1-156-5 sign \x8E94 12-1236-2 sign \x8E95 12-34-2 sign \x8E96 145-12456-5 sign \x8E97 1246-5 sign \x8E98 14-12346-2 sign \x8E99 14-1456-5 sign \x8E9A 15-2345-3 sign \x8E9B 1246-5 sign \x8E9C 125-12456-3 sign \x8E9D 14-1236-2 sign \x8E9E 15-346-5 sign \x8E9F 1245-1346-2 sign \x8EA0 15-345-4 sign \x8EA1 1345-346-5 sign \x8EA2 124-345-5 sign \x8EA3 245-1256-2 sign \x8EA4 13-346-5 sign \x8EA5 245-12456-3 sign \x8EA6 125-12456-3 sign \x8EA7 15-16-4 sign \x8EA8 123-1246-2 sign \x8EA9 13-236-2 sign \x8EAA 14-1456-5 sign \x8EAB 24-136-3 sign \x8EAC 13-12346-3 sign \x8EAD 145-1236-3 sign \x8EAF 245-1256-3 sign \x8EB0 124-16-4 sign \x8EB1 145-25-4 sign \x8EB2 145-25-4 sign \x8EB3 13-12346-3 sign \x8EB4 14-1346-2 sign \x8EB6 14-25-4 sign \x8EB7 2456-4 sign \x8EB8 13-16-3 sign \x8EB9 13-1256-2 sign \x8EBA 124-1346-4 sign \x8EBD 2345-4 sign \x8EBF 123-1346-3 sign \x8EC0 245-1256-3 sign \x8EC1 14-12356-2 sign \x8EC2 14-146-5 sign \x8EC3 124-25-4 sign \x8EC4 1-156-2 sign \x8EC6 124-16-4 sign \x8EC7 145-146-5 sign \x8EC9 1256-5 sign \x8ECA 12-2346-3 sign \x8ECB 23456-5 sign \x8ECC 13-1246-4 sign \x8ECD 13-256-3 sign \x8ECE 1246-5 sign \x8ECF 236-5 sign \x8ED0 15-1456-5 sign \x8ED1 145-16-5 sign \x8ED2 15-45-3 sign \x8ED3 12345-1236-5 sign \x8ED4 1245-136-5 sign \x8ED5 24-1236-3 sign \x8ED6 245-46-2 sign \x8ED7 24-34-3 sign \x8ED8 124-123456-2 sign \x8ED9 12-136-2 sign \x8EDA 145-2456-5 sign \x8EDB 2346-5 sign \x8EDC 1345-345-5 sign \x8EDD 245-16-2 sign \x8EDE 134-146-2 sign \x8EDF 1245-12456-4 sign \x8EE0 1245-136-5 sign \x8EE1 245-1456-2 sign \x8EE2 1-12456-4 sign \x8EE3 1235-12346-3 sign \x8EE4 1235-34-3 sign \x8EE5 245-1256-2 sign \x8EE6 1235-456-5 sign \x8EE7 145-16-4 sign \x8EE8 14-13456-2 sign \x8EE9 145-2456-5 sign \x8EEA 146-3 sign \x8EEB 1-136-4 sign \x8EEC 12345-1236-5 sign \x8EED 123-456-3 sign \x8EEE 1346-4 sign \x8EEF 1234-1356-3 sign \x8EF0 135-356-5 sign \x8EF1 13-34-3 sign \x8EF2 123-34-3 sign \x8EF3 1234-146-2 sign \x8EF4 1-34-5 sign \x8EF5 1245-12346-4 sign \x8EF6 2346-5 sign \x8EF7 135-345-2 sign \x8EF8 1-12356-2 sign \x8EF9 1-156-4 sign \x8EFA 246-2 sign \x8EFB 123-2346-3 sign \x8EFC 16-5 sign \x8EFD 245-13456-3 sign \x8EFE 24-156-5 sign \x8EFF 1234-13456-2 sign \x8F00 156-2 sign \x8F01 245-235-2 sign \x8F02 13-1256-2 sign \x8F03 13-246-5 sign \x8F04 13-456-3 sign \x8F05 14-34-5 sign \x8F06 123-2456-4 sign \x8F07 245-45-2 sign \x8F08 1-12356-3 sign \x8F09 125-2456-5 sign \x8F0A 1-156-5 sign \x8F0B 24-156-3 sign \x8F0C 14-46-5 sign \x8F0D 1256-5 sign \x8F0E 24-146-3 sign \x8F0F 234-2 sign \x8F10 12456-5 sign \x8F11 256-4 sign \x8F12 1-2346-2 sign \x8F13 12456-4 sign \x8F14 12345-34-4 sign \x8F15 245-13456-3 sign \x8F16 1-12356-3 sign \x8F17 1345-16-2 sign \x8F18 14-13456-2 sign \x8F19 1-2346-2 sign \x8F1A 1-1236-5 sign \x8F1B 14-46-5 sign \x8F1C 125-156-3 sign \x8F1D 1235-1246-3 sign \x8F1E 456-4 sign \x8F1F 12-25-5 sign \x8F20 13-25-4 sign \x8F21 123-1236-4 sign \x8F22 16-4 sign \x8F23 1234-1356-2 sign \x8F24 245-2345-5 sign \x8F25 13-123456-4 sign \x8F26 1345-2345-4 sign \x8F27 1234-13456-2 sign \x8F28 13-12456-4 sign \x8F29 135-356-5 sign \x8F2A 14-123456-2 sign \x8F2B 1234-2456-2 sign \x8F2C 14-46-2 sign \x8F2D 1245-12456-4 sign \x8F2E 1245-12356-2 sign \x8F2F 13-16-2 sign \x8F30 46-2 sign \x8F31 15-2345-2 sign \x8F32 24-12456-5 sign \x8F33 245-12356-5 sign \x8F34 12-123456-3 sign \x8F35 13-2346-2 sign \x8F36 234-2 sign \x8F37 1235-12346-3 sign \x8F38 24-34-3 sign \x8F39 12345-34-5 sign \x8F3A 125-156-3 sign \x8F3B 12345-34-2 sign \x8F3C 123456-3 sign \x8F3D 135-136-5 sign \x8F3E 1-1236-4 sign \x8F3F 1256-2 sign \x8F40 123456-3 sign \x8F41 124-146-3 sign \x8F42 13-34-4 sign \x8F43 1-136-3 sign \x8F44 15-23456-2 sign \x8F45 45-2 sign \x8F46 14-34-5 sign \x8F47 13-246-3 sign \x8F48 12-146-2 sign \x8F49 1-12456-4 sign \x8F4A 1246-5 sign \x8F4B 1235-123456-3 sign \x8F4D 12-2346-5 sign \x8F4E 13-246-5 sign \x8F4F 1-1236-5 sign \x8F50 135-34-2 sign \x8F51 14-146-4 sign \x8F52 12345-136-2 sign \x8F53 12345-1236-3 sign \x8F54 14-1456-2 sign \x8F55 13-2346-2 sign \x8F56 15-2346-5 sign \x8F57 123-1236-4 sign \x8F58 1235-12456-2 sign \x8F59 16-4 sign \x8F5A 13-16-2 sign \x8F5B 145-1246-5 sign \x8F5C 156-2 sign \x8F5D 1256-2 sign \x8F5E 15-2345-5 sign \x8F5F 1235-12346-3 sign \x8F60 14-356-2 sign \x8F61 1234-356-5 sign \x8F62 14-16-5 sign \x8F63 14-16-5 sign \x8F64 14-34-2 sign \x8F65 14-1456-5 sign \x8F66 12-2346-3 sign \x8F67 23456-5 sign \x8F68 13-1246-4 sign \x8F69 15-45-3 sign \x8F6A 145-16-5 sign \x8F6B 1245-136-5 sign \x8F6C 1-12456-4 sign \x8F6D 2346-5 sign \x8F6E 14-123456-2 sign \x8F6F 1245-12456-4 sign \x8F70 1235-12346-3 sign \x8F71 123-34-3 sign \x8F72 123-2346-3 sign \x8F73 14-34-2 sign \x8F74 1-12356-2 sign \x8F75 1-156-4 sign \x8F76 16-5 sign \x8F77 1235-34-3 sign \x8F78 1-136-4 sign \x8F79 14-16-5 sign \x8F7A 246-2 sign \x8F7B 245-13456-3 sign \x8F7C 24-156-5 sign \x8F7D 125-2456-5 sign \x8F7E 1-156-5 sign \x8F7F 13-246-5 sign \x8F80 1-12356-3 sign \x8F81 245-45-2 sign \x8F82 14-34-5 sign \x8F83 13-246-5 sign \x8F84 1-2346-2 sign \x8F85 12345-34-4 sign \x8F86 14-46-5 sign \x8F87 1345-2345-4 sign \x8F88 135-356-5 sign \x8F89 1235-1246-3 sign \x8F8A 13-123456-4 sign \x8F8B 456-4 sign \x8F8C 14-46-2 sign \x8F8D 12-25-5 sign \x8F8E 125-156-3 sign \x8F8F 245-12356-5 sign \x8F90 12345-34-2 sign \x8F91 13-16-2 sign \x8F92 123456-3 sign \x8F93 24-34-3 sign \x8F94 1234-356-5 sign \x8F95 45-2 sign \x8F96 15-23456-2 sign \x8F97 1-1236-4 sign \x8F98 14-34-5 sign \x8F99 12-2346-5 sign \x8F9A 14-1456-2 sign \x8F9B 15-1456-3 sign \x8F9C 13-34-3 sign \x8F9D 245-156-2 sign \x8F9E 245-156-2 sign \x8F9F 135-16-5 sign \x8FA0 125-1246-5 sign \x8FA1 135-2345-5 sign \x8FA2 14-345-5 sign \x8FA3 14-345-5 sign \x8FA4 245-156-2 sign \x8FA5 15-236-3 sign \x8FA6 135-1236-5 sign \x8FA7 135-2345-5 sign \x8FA8 135-2345-5 sign \x8FA9 135-2345-5 sign \x8FAB 135-2345-5 sign \x8FAC 135-1236-3 sign \x8FAD 245-156-2 sign \x8FAE 135-2345-5 sign \x8FAF 135-2345-5 sign \x8FB0 12-136-2 sign \x8FB1 1245-34-5 sign \x8FB2 1345-12346-2 sign \x8FB3 1345-12346-2 sign \x8FB4 1-136-4 sign \x8FB5 12-25-5 sign \x8FB6 12-25-5 sign \x8FB8 1245-1356-2 sign \x8FB9 135-2345-3 sign \x8FBA 135-2345-3 sign \x8FBD 14-246-2 sign \x8FBE 145-345-2 sign \x8FBF 12-1236-3 sign \x8FC0 13-1236-3 sign \x8FC1 245-2345-3 sign \x8FC2 1256-3 sign \x8FC3 1256-3 sign \x8FC4 245-16-5 sign \x8FC5 15-256-5 sign \x8FC6 16-4 sign \x8FC7 13-25-5 sign \x8FC8 134-2456-5 sign \x8FC9 24-156-5 sign \x8FCA 125-345-3 sign \x8FCB 456-5 sign \x8FCD 1-123456-3 sign \x8FCE 13456-2 sign \x8FCF 124-16-5 sign \x8FD0 256-5 sign \x8FD1 13-1456-5 sign \x8FD2 1235-1346-2 sign \x8FD3 23456-5 sign \x8FD4 12345-1236-4 sign \x8FD5 34-4 sign \x8FD6 124-16-5 sign \x8FD7 2346-2 sign \x8FD8 1235-2456-2 sign \x8FD9 1-2346-5 sign \x8FDB 13-1456-5 sign \x8FDC 45-4 sign \x8FDD 1246-2 sign \x8FDE 14-2345-2 sign \x8FDF 12-156-2 sign \x8FE0 15-16-2 sign \x8FE1 1345-16-5 sign \x8FE2 124-246-2 sign \x8FE3 12-156-5 sign \x8FE4 16-2 sign \x8FE5 13-235-4 sign \x8FE6 13-23456-3 sign \x8FE7 12-136-2 sign \x8FE8 145-2456-5 sign \x8FE9 156-4 sign \x8FEA 145-16-2 sign \x8FEB 1234-126-5 sign \x8FEC 456-4 sign \x8FED 145-346-2 sign \x8FEE 125-2346-2 sign \x8FEF 124-146-2 sign \x8FF0 24-34-5 sign \x8FF1 124-25-2 sign \x8FF3 13-13456-5 sign \x8FF4 1235-1246-2 sign \x8FF5 124-12346-2 sign \x8FF6 234-5 sign \x8FF7 134-16-2 sign \x8FF8 135-1356-5 sign \x8FF9 13-16-3 sign \x8FFA 1345-2456-4 sign \x8FFB 16-2 sign \x8FFC 13-346-2 sign \x8FFD 1-1246-3 sign \x8FFE 14-346-5 sign \x8FFF 15-256-5 sign \x9000 124-1246-5 sign \x9001 15-12346-5 sign \x9002 24-156-5 sign \x9003 124-146-2 sign \x9004 1234-1346-2 sign \x9005 13-12356-5 sign \x9006 1345-16-5 sign \x9007 145-123456-5 sign \x9008 13-235-4 sign \x9009 15-45-4 sign \x900A 15-256-5 sign \x900B 135-34-3 sign \x900C 234-2 sign \x900D 15-246-3 sign \x900E 245-234-2 sign \x900F 124-12356-5 sign \x9010 1-34-2 sign \x9011 245-234-2 sign \x9012 145-16-5 sign \x9013 145-16-5 sign \x9014 124-34-2 sign \x9015 13-13456-5 sign \x9016 124-16-5 sign \x9017 145-12356-5 sign \x9018 16-4 sign \x9019 1-2346-5 sign \x901A 124-12346-3 sign \x901B 13-456-5 sign \x901C 34-5 sign \x901D 24-156-5 sign \x901E 12-1356-4 sign \x901F 15-34-5 sign \x9020 125-146-5 sign \x9021 245-256-3 sign \x9022 12345-1356-2 sign \x9023 14-2345-2 sign \x9024 15-25-5 sign \x9025 1235-1246-2 sign \x9026 14-16-4 sign \x9028 14-2456-2 sign \x9029 135-136-3 sign \x902A 245-25-5 sign \x902B 13-236-2 sign \x902C 135-1356-5 sign \x902D 1235-12456-5 sign \x902E 145-2456-5 sign \x902F 14-34-5 sign \x9030 234-2 sign \x9031 1-12356-3 sign \x9032 13-1456-5 sign \x9033 1256-5 sign \x9034 1-25-2 sign \x9035 123-1246-2 sign \x9036 1246-3 sign \x9037 124-16-5 sign \x9038 16-5 sign \x9039 145-345-2 sign \x903A 45-4 sign \x903B 14-25-2 sign \x903C 135-16-3 sign \x903D 1345-25-5 sign \x903E 1256-2 sign \x903F 145-1346-5 sign \x9040 15-1246-2 sign \x9041 145-123456-5 sign \x9042 15-1246-5 sign \x9043 2345-4 sign \x9044 12-12456-2 sign \x9045 12-156-2 sign \x9046 124-16-2 sign \x9047 1256-5 sign \x9048 24-156-2 sign \x9049 1-136-3 sign \x904A 234-2 sign \x904B 256-5 sign \x904C 2346-5 sign \x904D 135-2345-5 sign \x904E 13-25-5 sign \x904F 2346-5 sign \x9050 15-23456-2 sign \x9051 1235-456-2 sign \x9052 245-234-2 sign \x9053 145-146-5 sign \x9054 145-345-2 sign \x9055 1246-2 sign \x9057 16-2 sign \x9058 13-12356-5 sign \x9059 246-2 sign \x905A 12-34-5 sign \x905B 14-234-5 sign \x905C 15-256-5 sign \x905D 124-345-5 sign \x905E 145-16-5 sign \x905F 12-156-2 sign \x9060 45-4 sign \x9061 15-34-5 sign \x9062 124-345-5 sign \x9063 245-2345-4 sign \x9065 246-2 sign \x9066 13-12456-5 sign \x9067 1-1346-3 sign \x9068 146-2 sign \x9069 24-156-5 sign \x906A 245-2346-5 sign \x906B 12-156-5 sign \x906C 15-34-5 sign \x906D 125-146-3 sign \x906E 1-2346-3 sign \x906F 145-123456-5 sign \x9070 145-16-5 sign \x9071 14-12356-2 sign \x9072 12-156-2 sign \x9073 245-25-3 sign \x9074 14-1456-2 sign \x9075 125-123456-3 sign \x9076 1245-146-4 sign \x9077 245-2345-3 sign \x9078 15-45-4 sign \x9079 1256-5 sign \x907A 16-2 sign \x907B 2346-5 sign \x907C 14-246-2 sign \x907D 13-1256-5 sign \x907E 24-156-5 sign \x907F 135-16-5 sign \x9080 246-3 sign \x9081 134-2456-5 sign \x9082 15-346-5 sign \x9083 15-1246-5 sign \x9084 1235-2456-2 sign \x9085 1-1236-3 sign \x9086 124-1356-2 sign \x9087 156-4 sign \x9088 134-246-4 sign \x9089 135-2345-3 sign \x908A 135-2345-3 sign \x908B 14-345-2 sign \x908C 14-16-2 sign \x908D 45-2 sign \x908E 246-2 sign \x908F 14-25-2 sign \x9090 14-16-4 sign \x9091 16-5 sign \x9092 124-13456-2 sign \x9093 145-1356-5 sign \x9094 245-16-4 sign \x9095 235-3 sign \x9096 24-1236-3 sign \x9097 1235-1236-2 sign \x9098 1256-2 sign \x9099 134-1346-2 sign \x909A 1245-34-2 sign \x909B 245-235-2 sign \x909D 13-456-4 sign \x909E 12345-34-3 sign \x909F 123-1346-5 sign \x90A0 135-1456-3 sign \x90A1 12345-1346-3 sign \x90A2 15-13456-2 sign \x90A3 1345-345-5 sign \x90A5 24-136-4 sign \x90A6 135-1346-3 sign \x90A7 45-2 sign \x90A8 245-123456-3 sign \x90A9 1235-25-4 sign \x90AA 15-346-2 sign \x90AB 135-1346-3 sign \x90AC 34-4 sign \x90AD 13-1256-5 sign \x90AE 234-2 sign \x90AF 1235-1236-2 sign \x90B0 124-2456-3 sign \x90B1 245-234-3 sign \x90B2 135-16-5 sign \x90B3 1234-356-2 sign \x90B4 135-13456-4 sign \x90B5 24-146-5 sign \x90B6 135-356-5 sign \x90B7 35-4 sign \x90B8 145-16-4 sign \x90B9 125-12356-3 sign \x90BA 346-5 sign \x90BB 14-1456-2 sign \x90BC 123-456-3 sign \x90BD 13-1246-3 sign \x90BE 1-34-3 sign \x90BF 24-156-3 sign \x90C0 123-34-3 sign \x90C1 1256-5 sign \x90C2 13-2456-3 sign \x90C3 1235-2346-2 sign \x90C4 15-16-5 sign \x90C5 1-156-5 sign \x90C6 13-16-2 sign \x90C7 15-256-2 sign \x90C8 1235-12356-5 sign \x90C9 15-13456-2 sign \x90CA 13-246-3 sign \x90CB 15-16-3 sign \x90CC 13-1246-3 sign \x90CD 1345-25-2 sign \x90CE 14-1346-2 sign \x90CF 13-23456-2 sign \x90D0 123-2356-5 sign \x90D1 1-1356-5 sign \x90D3 256-5 sign \x90D4 2345-2 sign \x90D5 12-1356-2 sign \x90D6 145-12356-3 sign \x90D7 12-156-3 sign \x90D8 14-1256-4 sign \x90D9 12345-34-4 sign \x90DA 34-2 sign \x90DB 12345-34-2 sign \x90DC 13-146-5 sign \x90DD 1235-146-4 sign \x90DE 14-1346-2 sign \x90DF 13-23456-2 sign \x90E0 13-1356-4 sign \x90E1 13-256-5 sign \x90E2 13456-4 sign \x90E3 135-126-2 sign \x90E4 15-16-5 sign \x90E5 135-356-5 sign \x90E6 14-16-5 sign \x90E7 256-2 sign \x90E8 135-34-5 sign \x90E9 15-246-2 sign \x90EA 245-16-3 sign \x90EB 1234-16-2 sign \x90EC 245-13456-3 sign \x90ED 13-25-3 sign \x90EF 124-1236-2 sign \x90F0 125-12356-3 sign \x90F1 1234-13456-2 sign \x90F2 14-2456-2 sign \x90F3 1345-16-2 sign \x90F4 12-136-3 sign \x90F5 234-2 sign \x90F6 135-34-5 sign \x90F7 15-46-3 sign \x90F8 145-1236-3 sign \x90F9 13-1256-2 sign \x90FA 235-3 sign \x90FB 13-1256-2 sign \x90FC 16-3 sign \x90FD 145-12356-3 sign \x90FE 2345-5 sign \x90FF 134-356-2 sign \x9100 1245-25-5 sign \x9101 135-356-5 sign \x9102 2346-5 sign \x9103 1256-2 sign \x9104 13-45-5 sign \x9105 1256-4 sign \x9106 256-5 sign \x9107 1235-12356-5 sign \x9108 123-1246-2 sign \x9109 15-46-3 sign \x910A 15-46-3 sign \x910B 15-12356-3 sign \x910C 124-1346-2 sign \x910D 134-13456-2 sign \x910E 15-16-2 sign \x910F 1245-34-5 sign \x9110 15-1256-5 sign \x9111 125-156-3 sign \x9112 125-12356-3 sign \x9113 13-1256-2 sign \x9114 34-4 sign \x9115 15-46-3 sign \x9116 256-2 sign \x9117 1235-146-5 sign \x9118 235-3 sign \x9119 135-16-4 sign \x911A 134-126-5 sign \x911B 12-146-2 sign \x911C 12345-34-3 sign \x911D 14-246-4 sign \x911E 1456-2 sign \x911F 1-12456-3 sign \x9120 1235-34-5 sign \x9121 245-246-3 sign \x9122 2345-3 sign \x9123 1-1346-3 sign \x9124 134-1236-5 sign \x9125 245-246-3 sign \x9126 15-1256-4 sign \x9127 145-1356-5 sign \x9128 135-16-5 sign \x9129 15-256-2 sign \x912A 135-16-5 sign \x912B 245-1356-2 sign \x912C 1246-2 sign \x912D 1-1356-5 sign \x912E 134-146-5 sign \x912F 24-1236-5 sign \x9130 14-1456-2 sign \x9131 1234-126-2 sign \x9132 145-1236-3 sign \x9133 134-1356-2 sign \x9134 346-5 sign \x9135 245-146-5 sign \x9136 123-2356-5 sign \x9137 12345-1356-3 sign \x9138 134-1356-2 sign \x9139 125-12356-3 sign \x913A 13-456-4 sign \x913B 14-2345-4 sign \x913C 125-1236-5 sign \x913D 12-1236-2 sign \x913E 234-3 sign \x913F 245-16-2 sign \x9140 2345-3 sign \x9141 12-1236-2 sign \x9142 125-1236-5 sign \x9143 14-13456-2 sign \x9144 1235-12456-3 sign \x9145 15-16-3 sign \x9146 12345-1356-3 sign \x9147 125-12456-4 sign \x9148 14-16-5 sign \x9149 234-4 sign \x914A 145-13456-4 sign \x914B 245-234-2 sign \x914C 1-25-2 sign \x914D 1234-356-5 sign \x914E 1-12356-5 sign \x914F 16-2 sign \x9150 1235-1346-4 sign \x9151 1256-4 sign \x9152 13-234-4 sign \x9153 2345-4 sign \x9154 125-1246-5 sign \x9155 134-146-2 sign \x9156 145-1236-3 sign \x9157 15-1256-5 sign \x9158 124-12356-2 sign \x9159 1-136-3 sign \x915A 12345-136-3 sign \x915D 256-5 sign \x915E 124-2456-5 sign \x915F 124-2345-3 sign \x9160 245-23456-4 sign \x9161 124-25-2 sign \x9162 125-25-5 sign \x9163 1235-1236-3 sign \x9164 13-34-3 sign \x9165 15-34-3 sign \x9166 1234-126-5 sign \x9167 12-12356-2 sign \x9168 145-2456-5 sign \x9169 134-13456-4 sign \x916A 14-25-5 sign \x916B 12-25-5 sign \x916C 12-12356-2 sign \x916D 234-5 sign \x916E 124-12346-2 sign \x916F 1-156-4 sign \x9170 15-2345-3 sign \x9171 13-46-5 sign \x9172 12-1356-2 sign \x9173 1456-5 sign \x9174 124-34-2 sign \x9175 15-246-5 sign \x9176 134-356-2 sign \x9177 123-34-5 sign \x9178 15-12456-3 sign \x9179 14-356-5 sign \x917A 1234-34-2 sign \x917B 125-1246-5 sign \x917C 1235-2456-4 sign \x917D 2345-5 sign \x917E 15-16-4 sign \x917F 1345-46-5 sign \x9180 1246-2 sign \x9181 14-34-5 sign \x9182 14-1236-4 sign \x9183 2345-3 sign \x9184 124-146-2 sign \x9185 1234-356-3 sign \x9186 1-1236-4 sign \x9187 12-123456-2 sign \x9188 124-1236-2 sign \x9189 125-1246-5 sign \x918A 1-25-2 sign \x918B 245-34-5 sign \x918C 123-123456-3 sign \x918D 124-16-2 sign \x918E 134-2345-2 sign \x918F 145-34-3 sign \x9190 1235-34-2 sign \x9191 15-1256-4 sign \x9192 15-13456-4 sign \x9193 124-1236-4 sign \x9194 13-234-3 sign \x9195 12-123456-2 sign \x9196 256-5 sign \x9197 1234-126-5 sign \x9198 123-2346-5 sign \x9199 15-12356-3 sign \x919A 134-16-2 sign \x919B 245-45-2 sign \x919C 12-12356-4 sign \x919D 245-25-2 sign \x919E 256-5 sign \x919F 235-5 sign \x91A0 1346-5 sign \x91A1 1-345-5 sign \x91A2 1235-2456-4 sign \x91A3 124-1346-2 sign \x91A4 13-46-5 sign \x91A5 1234-246-4 sign \x91A6 24-1236-4 sign \x91A7 1256-5 sign \x91A8 14-16-2 sign \x91A9 125-146-2 sign \x91AA 14-146-2 sign \x91AB 16-3 sign \x91AC 13-46-5 sign \x91AD 1234-34-3 sign \x91AE 13-246-5 sign \x91AF 15-16-3 sign \x91B0 145-1236-5 sign \x91B1 1234-126-5 sign \x91B2 1345-12346-2 sign \x91B3 16-5 sign \x91B4 14-16-4 sign \x91B5 13-236-2 sign \x91B6 13-246-5 sign \x91B7 16-5 sign \x91B8 1345-46-5 sign \x91B9 1245-34-2 sign \x91BA 15-256-3 sign \x91BB 12-12356-2 sign \x91BC 2345-5 sign \x91BD 14-13456-2 sign \x91BE 134-16-2 sign \x91BF 134-16-2 sign \x91C0 1345-46-5 sign \x91C1 15-1456-5 sign \x91C2 13-246-5 sign \x91C3 15-16-4 sign \x91C4 134-16-2 sign \x91C5 2345-5 sign \x91C6 135-2345-5 sign \x91C7 245-2456-4 sign \x91C8 24-156-5 sign \x91C9 234-5 sign \x91CA 24-156-5 sign \x91CB 24-156-5 sign \x91CC 14-16-4 sign \x91CD 1-12346-5 sign \x91CE 346-4 sign \x91CF 14-46-5 sign \x91D0 14-16-2 sign \x91D1 13-1456-3 sign \x91D3 245-234-2 sign \x91D4 16-4 sign \x91D5 1345-246-4 sign \x91D6 145-146-3 sign \x91D7 1-146-3 sign \x91D8 145-13456-3 sign \x91D9 1234-126-5 sign \x91DA 245-234-2 sign \x91DB 1235-2346-2 sign \x91DC 12345-34-4 sign \x91DD 1-136-3 sign \x91DE 1-156-2 sign \x91DF 135-345-3 sign \x91E0 14-12456-5 sign \x91E1 12345-34-4 sign \x91E2 1345-2456-4 sign \x91E3 145-246-5 sign \x91E4 24-1236-5 sign \x91E5 245-246-4 sign \x91E6 123-12356-5 sign \x91E7 12-12456-5 sign \x91E8 125-156-4 sign \x91E9 12345-1236-2 sign \x91EA 1256-2 sign \x91EB 1235-35-2 sign \x91EC 1235-1236-5 sign \x91ED 13-1346-3 sign \x91EE 245-16-2 sign \x91EF 134-1346-2 sign \x91F0 1245-156-5 sign \x91F1 145-16-5 sign \x91F2 15-156-5 sign \x91F3 15-16-5 sign \x91F4 16-5 sign \x91F5 12-2456-3 sign \x91F6 24-156-3 sign \x91F7 124-34-4 sign \x91F8 15-16-5 sign \x91F9 1345-1256-4 sign \x91FA 245-2345-3 sign \x91FC 13-2345-5 sign \x91FD 1234-16-3 sign \x91FE 346-2 sign \x91FF 1456-4 sign \x9200 135-345-4 sign \x9201 12345-1346-3 sign \x9202 12-136-2 sign \x9203 13-2345-3 sign \x9204 124-12356-4 sign \x9205 236-5 sign \x9206 245-2345-3 sign \x9207 12345-34-3 sign \x9208 1234-16-3 sign \x9209 1345-345-5 sign \x920A 15-1456-3 sign \x920B 2346-2 sign \x920C 13-236-2 sign \x920D 145-123456-5 sign \x920E 13-12356-3 sign \x920F 1456-4 sign \x9210 245-2345-2 sign \x9211 135-1236-4 sign \x9212 15-345-5 sign \x9213 1245-136-2 sign \x9214 12-146-3 sign \x9215 1345-234-4 sign \x9216 12345-136-3 sign \x9217 256-4 sign \x9218 13-16-4 sign \x9219 245-1456-2 sign \x921A 1234-16-2 sign \x921B 13-25-3 sign \x921C 1235-12346-2 sign \x921D 1456-2 sign \x921E 13-256-3 sign \x921F 24-156-3 sign \x9220 16-5 sign \x9221 1-12346-3 sign \x9222 1345-346-3 sign \x9223 13-2456-5 sign \x9224 1245-156-5 sign \x9225 1235-25-4 sign \x9226 124-2456-5 sign \x9227 123-1346-5 sign \x922C 145-25-2 sign \x922D 125-156-3 sign \x922E 1345-16-4 sign \x922F 124-34-2 sign \x9230 24-156-5 sign \x9231 134-1456-2 sign \x9232 13-34-3 sign \x9233 123-2346-3 sign \x9234 14-13456-2 sign \x9235 135-13456-5 sign \x9236 245-156-2 sign \x9237 13-34-3 sign \x9238 135-345-2 sign \x9239 1234-16-3 sign \x923A 1256-5 sign \x923B 15-156-5 sign \x923C 125-25-2 sign \x923D 135-34-5 sign \x923E 234-5 sign \x923F 145-2345-5 sign \x9240 13-23456-4 sign \x9241 1-136-3 sign \x9242 24-156-4 sign \x9243 24-156-5 sign \x9244 124-346-4 sign \x9245 13-1256-5 sign \x9246 1-1236-3 sign \x9247 24-156-3 sign \x9248 24-2346-2 sign \x9249 15-45-5 sign \x924A 1-146-3 sign \x924B 135-146-5 sign \x924C 1235-2346-2 sign \x924D 135-16-5 sign \x924E 24-1356-3 sign \x924F 12-34-2 sign \x9250 24-156-2 sign \x9251 135-126-2 sign \x9252 1-34-5 sign \x9253 12-156-5 sign \x9254 125-345-3 sign \x9255 1234-126-3 sign \x9256 124-12346-2 sign \x9257 245-2345-2 sign \x9258 12345-34-2 sign \x9259 1-2456-4 sign \x925A 14-234-4 sign \x925B 245-2345-3 sign \x925C 12345-34-2 sign \x925D 14-16-5 sign \x925E 1235-1246-5 sign \x925F 1234-16-3 sign \x9260 46-3 sign \x9261 135-1236-5 sign \x9262 135-126-3 sign \x9263 13-346-2 sign \x9264 13-12356-3 sign \x9265 24-34-5 sign \x9266 1-1356-3 sign \x9267 134-34-4 sign \x9268 1345-16-4 sign \x9269 15-16-4 sign \x926A 145-16-5 sign \x926B 13-23456-3 sign \x926C 134-34-5 sign \x926D 145-1236-5 sign \x926E 24-136-3 sign \x926F 16-4 sign \x9270 15-156-3 sign \x9271 123-456-5 sign \x9272 123-345-3 sign \x9273 135-356-4 sign \x9274 13-2345-5 sign \x9275 124-12346-2 sign \x9276 15-13456-2 sign \x9277 1235-12346-2 sign \x9278 13-246-4 sign \x9279 12-156-4 sign \x927A 156-5 sign \x927B 14-25-5 sign \x927C 135-13456-4 sign \x927D 24-156-5 sign \x927E 134-12356-2 sign \x927F 13-23456-2 sign \x9280 1456-2 sign \x9281 13-256-3 sign \x9282 1-12356-3 sign \x9283 12-12346-5 sign \x9284 24-1346-5 sign \x9285 124-12346-2 sign \x9286 134-126-5 sign \x9287 14-356-5 sign \x9288 13-16-3 sign \x9289 1256-5 sign \x928A 15-1256-5 sign \x928B 1245-136-2 sign \x928C 125-123456-5 sign \x928D 1-156-5 sign \x928E 245-235-3 sign \x928F 24-1236-5 sign \x9290 12-156-5 sign \x9291 15-2345-4 sign \x9292 15-13456-2 sign \x9293 245-45-2 sign \x9294 1234-16-3 sign \x9295 124-346-4 sign \x9296 1-34-3 sign \x9297 1235-12356-2 sign \x9298 134-13456-2 sign \x9299 123-35-4 sign \x929A 246-2 sign \x929B 15-2345-3 sign \x929C 15-2345-2 sign \x929D 15-234-3 sign \x929E 13-256-3 sign \x929F 12-345-3 sign \x92A0 14-146-4 sign \x92A1 13-16-2 sign \x92A2 135-345-1 sign \x92A3 1245-34-2 sign \x92A4 134-16-4 sign \x92A5 16-3 sign \x92A6 1456-3 sign \x92A7 13-456-3 sign \x92A8 1236-3 sign \x92A9 145-234-3 sign \x92AA 234-4 sign \x92AB 15-2346-5 sign \x92AC 123-146-5 sign \x92AD 245-2345-2 sign \x92AE 14-12456-2 sign \x92B0 2456-3 sign \x92B1 145-246-5 sign \x92B2 1235-1236-5 sign \x92B3 1245-1246-5 sign \x92B4 24-156-5 sign \x92B5 123-1356-3 sign \x92B6 245-234-2 sign \x92B7 15-246-3 sign \x92B8 1-2346-2 sign \x92B9 15-234-5 sign \x92BA 125-1346-5 sign \x92BB 124-16-5 sign \x92BC 245-25-5 sign \x92BD 13-35-3 sign \x92BE 13-12346-4 sign \x92BF 1-12346-3 sign \x92C0 145-12356-5 sign \x92C1 14-1256-4 sign \x92C2 134-356-2 sign \x92C3 14-1346-2 sign \x92C4 12456-4 sign \x92C5 15-1456-3 sign \x92C6 256-2 sign \x92C7 135-356-5 sign \x92C8 34-5 sign \x92C9 15-34-5 sign \x92CA 1256-5 sign \x92CB 12-1236-2 sign \x92CC 124-13456-4 sign \x92CD 135-126-2 sign \x92CE 1235-1236-5 sign \x92CF 13-23456-2 sign \x92D0 1235-12346-2 sign \x92D1 245-12456-3 sign \x92D2 12345-1356-3 sign \x92D3 12-1236-3 sign \x92D4 12456-4 sign \x92D5 1-156-5 sign \x92D6 15-156-3 sign \x92D7 15-45-3 sign \x92D8 1235-35-2 sign \x92D9 1256-4 sign \x92DA 124-246-2 sign \x92DB 13-12346-4 sign \x92DC 1-25-2 sign \x92DD 14-236-5 sign \x92DE 15-13456-2 sign \x92DF 245-1456-3 sign \x92E0 24-136-5 sign \x92E1 1235-1236-2 sign \x92E2 14-236-5 sign \x92E3 15-346-2 sign \x92E4 12-34-2 sign \x92E5 1-1356-5 sign \x92E6 13-1256-2 sign \x92E7 15-2345-5 sign \x92E8 2346-2 sign \x92E9 134-1346-3 sign \x92EA 1234-34-3 sign \x92EB 14-16-2 sign \x92EC 1234-1236-5 sign \x92ED 1245-1246-5 sign \x92EE 12-1356-2 sign \x92EF 13-146-5 sign \x92F0 14-16-4 sign \x92F1 124-2346-5 sign \x92F3 1-34-5 sign \x92F5 124-34-3 sign \x92F6 14-234-4 sign \x92F7 125-1246-5 sign \x92F8 13-1256-5 sign \x92F9 12-1346-4 sign \x92FA 45-3 sign \x92FB 13-2345-5 sign \x92FC 13-1346-3 sign \x92FD 145-246-5 sign \x92FE 124-146-2 sign \x92FF 12-1346-2 sign \x9300 14-123456-2 sign \x9301 13-25-4 sign \x9302 14-13456-2 sign \x9303 135-356-3 sign \x9304 14-34-5 sign \x9305 14-16-2 sign \x9306 245-46-3 sign \x9307 1234-12356-2 sign \x9308 13-45-5 sign \x9309 134-1456-2 sign \x930A 125-1246-5 sign \x930B 1234-1356-2 sign \x930C 1236-5 sign \x930D 1234-16-2 sign \x930E 15-2345-5 sign \x930F 23456-3 sign \x9310 1-1246-3 sign \x9311 14-356-5 sign \x9312 345-5 sign \x9313 123-12346-3 sign \x9314 124-345-5 sign \x9315 123-123456-3 sign \x9316 145-34-4 sign \x9317 1246-5 sign \x9318 12-1246-2 sign \x9319 125-156-3 sign \x931A 1-1356-3 sign \x931B 135-136-3 sign \x931C 1345-346-3 sign \x931D 245-12346-2 sign \x931E 12-123456-2 sign \x931F 124-1236-2 sign \x9320 145-13456-5 sign \x9321 16-4 sign \x9322 245-2345-2 sign \x9323 1-1246-5 sign \x9324 13-16-3 sign \x9325 1256-5 sign \x9326 13-1456-4 sign \x9327 13-12456-4 sign \x9328 134-146-2 sign \x9329 12-1346-3 sign \x932A 124-2345-4 sign \x932B 15-16-2 sign \x932C 14-2345-5 sign \x932D 145-246-3 sign \x932E 13-34-5 sign \x932F 245-25-5 sign \x9330 24-34-5 sign \x9331 1-136-3 sign \x9332 14-34-5 sign \x9333 134-1356-4 sign \x9334 14-34-5 sign \x9335 1235-35-3 sign \x9336 135-246-4 sign \x9337 13-345-2 sign \x9338 14-2456-2 sign \x9339 123-136-4 sign \x933C 1345-2456-5 sign \x933D 12456-4 sign \x933E 125-1236-5 sign \x9340 145-2346-2 sign \x9341 15-2345-3 sign \x9343 1235-25-3 sign \x9344 14-46-5 sign \x9346 134-136-2 sign \x9347 123-2456-4 sign \x9348 13456-3 sign \x9349 124-16-2 sign \x934A 14-2345-5 sign \x934B 13-25-3 sign \x934C 15-2345-4 sign \x934D 145-34-5 sign \x934E 124-34-2 sign \x934F 1246-2 sign \x9350 125-12346-3 sign \x9351 12345-34-5 sign \x9352 1245-12356-2 sign \x9353 13-16-2 sign \x9354 2346-5 sign \x9355 13-256-3 sign \x9356 12-136-4 sign \x9357 124-16-2 sign \x9358 1-345-2 sign \x9359 1235-12346-5 sign \x935A 46-2 sign \x935B 145-12456-5 sign \x935C 15-23456-2 sign \x935D 1256-2 sign \x935E 123-1356-3 sign \x935F 15-13456-3 sign \x9360 1235-456-2 sign \x9361 1246-5 sign \x9362 12345-34-5 sign \x9363 1-146-3 sign \x9364 12-345-2 sign \x9365 245-16-5 sign \x9366 24-2346-2 sign \x9367 1235-12346-3 sign \x9368 123-1246-2 sign \x9369 124-2345-4 sign \x936A 134-12356-2 sign \x936B 245-246-3 sign \x936C 245-246-3 sign \x936D 1235-12356-2 sign \x936E 124-12356-3 sign \x936F 245-12346-3 sign \x9370 1235-12456-2 sign \x9371 346-5 sign \x9372 134-1456-2 sign \x9373 13-2345-5 sign \x9374 145-12456-3 sign \x9375 13-2345-5 sign \x9376 15-12346-3 sign \x9377 123-1246-3 sign \x9378 1235-34-2 sign \x9379 15-45-3 sign \x937A 145-25-4 sign \x937B 13-346-2 sign \x937C 1-136-3 sign \x937D 135-2345-3 sign \x937E 1-12346-3 sign \x937F 125-156-3 sign \x9380 15-234-3 sign \x9381 346-2 sign \x9382 134-356-4 sign \x9383 1234-2456-5 sign \x9384 2456-3 sign \x9385 13-346-5 sign \x9387 134-356-2 sign \x9388 12-25-3 sign \x9389 124-345-5 sign \x938A 135-1346-5 sign \x938B 15-23456-2 sign \x938C 14-2345-2 sign \x938D 15-25-4 sign \x938E 15-16-5 sign \x938F 14-234-2 sign \x9390 125-34-2 sign \x9391 346-5 sign \x9392 1345-12356-5 sign \x9393 12346-3 sign \x9394 1245-12346-2 sign \x9395 124-1346-2 sign \x9396 15-25-4 sign \x9397 245-46-3 sign \x9398 13-2346-2 sign \x9399 24-25-5 sign \x939A 12-1246-2 sign \x939B 135-126-2 sign \x939C 1234-1236-2 sign \x939D 15-345-5 sign \x939E 135-16-5 sign \x939F 15-1346-4 sign \x93A0 13-1346-3 sign \x93A1 125-156-3 sign \x93A2 34-3 sign \x93A3 13456-2 sign \x93A4 1235-456-4 sign \x93A5 124-246-2 sign \x93A6 14-234-2 sign \x93A7 123-2456-4 sign \x93A8 15-123456-4 sign \x93A9 24-345-3 sign \x93AA 15-12356-3 sign \x93AB 12456-5 sign \x93AC 13-146-4 sign \x93AD 1-136-5 sign \x93AE 1-136-5 sign \x93AF 14-25-4 sign \x93B0 16-5 sign \x93B1 45-2 sign \x93B2 124-1346-4 sign \x93B3 1345-346-5 sign \x93B4 15-16-2 sign \x93B5 13-23456-3 sign \x93B6 13-2346-3 sign \x93B7 134-345-4 sign \x93B8 13-45-3 sign \x93BB 15-25-4 sign \x93BF 1345-345-2 sign \x93C0 14-34-4 sign \x93C1 15-25-4 sign \x93C2 12356-3 sign \x93C3 125-34-2 sign \x93C4 124-12456-2 sign \x93C5 15-234-3 sign \x93C6 13-12456-5 sign \x93C7 15-45-2 sign \x93C8 14-2345-5 sign \x93C9 24-12356-5 sign \x93CA 146-5 sign \x93CB 134-1236-4 sign \x93CC 134-126-5 sign \x93CD 14-25-2 sign \x93CE 135-16-5 sign \x93CF 1246-5 sign \x93D0 14-234-2 sign \x93D1 145-16-2 sign \x93D2 245-246-3 sign \x93D3 245-12346-3 sign \x93D4 16-2 sign \x93D5 14-34-5 sign \x93D6 146-2 sign \x93D7 123-1356-3 sign \x93D8 245-46-3 sign \x93D9 245-1246-4 sign \x93DA 245-16-5 sign \x93DB 12-1346-2 sign \x93DC 124-1346-3 sign \x93DD 134-1236-5 sign \x93DE 1245-12346-2 sign \x93DF 12-1236-4 sign \x93E0 12345-1356-3 sign \x93E1 13-13456-5 sign \x93E2 135-246-3 sign \x93E3 24-34-5 sign \x93E4 14-12356-5 sign \x93E5 15-234-5 sign \x93E6 245-12346-3 sign \x93E7 14-12346-2 sign \x93E8 125-1236-5 sign \x93E9 13-2345-5 sign \x93EA 245-146-2 sign \x93EB 14-16-2 sign \x93EC 15-23456-5 sign \x93ED 15-16-3 sign \x93EE 123-1346-3 sign \x93F0 135-1356-5 sign \x93F3 1-1356-3 sign \x93F4 14-34-5 sign \x93F5 1235-35-2 sign \x93F6 13-16-2 sign \x93F7 1234-34-2 sign \x93F8 1235-1246-5 sign \x93F9 13-46-4 sign \x93FA 1234-126-3 sign \x93FB 14-1456-2 sign \x93FC 15-25-4 sign \x93FD 15-234-5 sign \x93FE 15-2345-5 sign \x93FF 12-1356-3 sign \x9400 123-1246-5 sign \x9401 15-156-3 sign \x9402 14-234-5 sign \x9403 1345-146-2 sign \x9404 1235-1356-2 sign \x9405 1234-346-4 sign \x9406 15-1246-5 sign \x9407 12345-1236-2 sign \x9408 245-246-2 sign \x9409 245-45-2 sign \x940A 46-2 sign \x940B 124-1346-5 sign \x940C 15-46-5 sign \x940D 13-236-2 sign \x940E 13-246-3 sign \x940F 125-123456-5 sign \x9410 14-246-2 sign \x9411 13-346-2 sign \x9412 14-146-2 sign \x9413 145-1246-3 sign \x9414 15-256-2 sign \x9415 125-1236-3 sign \x9416 13-16-3 sign \x9417 13-2345-4 sign \x9418 1-12346-3 sign \x9419 145-1356-3 sign \x941A 23456-5 sign \x941B 13456-5 sign \x941C 145-1246-5 sign \x941D 13-236-2 sign \x941E 1345-12356-5 sign \x941F 124-16-5 sign \x9420 1234-34-4 sign \x9421 124-346-4 sign \x9424 145-13456-4 sign \x9425 24-1236-5 sign \x9426 123-2456-3 sign \x9427 13-2345-4 sign \x9428 12345-356-5 sign \x9429 15-1246-5 sign \x942A 14-34-4 sign \x942B 13-45-3 sign \x942C 1235-1246-5 sign \x942D 1256-5 sign \x942E 14-2345-2 sign \x942F 1-25-2 sign \x9430 245-246-3 sign \x9431 245-2345-3 sign \x9432 1-25-2 sign \x9433 14-356-2 sign \x9434 135-16-5 sign \x9435 124-346-4 sign \x9436 1235-12456-2 sign \x9437 346-5 sign \x9438 145-25-2 sign \x9439 13-25-4 sign \x943A 145-1346-3 sign \x943B 13-1256-5 sign \x943C 135-136-3 sign \x943D 145-345-2 sign \x943E 135-356-5 sign \x943F 16-5 sign \x9440 2456-5 sign \x9441 125-12346-3 sign \x9442 15-256-5 sign \x9443 145-246-5 sign \x9444 1-34-5 sign \x9445 1235-1356-2 sign \x9446 1-1246-5 sign \x9447 13-16-3 sign \x9448 1345-346-3 sign \x9449 13-2456-5 sign \x944A 1235-25-5 sign \x944B 245-13456-3 sign \x944C 135-1456-3 sign \x944D 13456-3 sign \x944E 123-1246-5 sign \x944F 1345-13456-2 sign \x9450 15-1256-3 sign \x9451 13-2345-5 sign \x9452 13-2345-5 sign \x9454 12-345-4 sign \x9455 1-156-5 sign \x9456 134-346-5 sign \x9457 14-16-2 sign \x9458 14-356-2 sign \x9459 13-16-3 sign \x945A 125-12456-5 sign \x945B 123-456-5 sign \x945C 24-1346-5 sign \x945D 1234-1356-2 sign \x945E 14-345-5 sign \x945F 145-34-2 sign \x9460 24-25-5 sign \x9461 12-25-5 sign \x9462 14-1256-5 sign \x9463 135-246-3 sign \x9464 135-146-5 sign \x9465 14-34-4 sign \x9468 14-12346-2 sign \x9469 2346-5 sign \x946A 14-34-2 sign \x946B 15-1456-3 sign \x946C 13-2345-5 sign \x946D 14-1236-5 sign \x946E 135-126-2 sign \x946F 13-2345-3 sign \x9470 246-5 sign \x9471 12-1236-2 sign \x9472 15-46-3 sign \x9473 13-2345-5 sign \x9474 15-16-3 sign \x9475 13-12456-5 sign \x9476 245-1346-2 sign \x9477 1345-346-5 sign \x9478 14-356-4 sign \x9479 245-12456-5 sign \x947A 245-1256-2 sign \x947B 1234-1236-5 sign \x947C 14-25-2 sign \x947D 125-12456-3 sign \x947E 14-12456-2 sign \x947F 125-146-2 sign \x9480 16-2 sign \x9481 13-236-2 sign \x9482 124-1346-4 sign \x9483 1-34-2 sign \x9484 14-1236-2 sign \x9485 13-1456-3 sign \x9486 245-234-2 sign \x9487 16-4 sign \x9488 1-136-3 sign \x9489 145-13456-3 sign \x948A 1-146-3 sign \x948B 1234-126-5 sign \x948C 1345-246-4 sign \x948D 124-34-4 sign \x948E 245-2345-3 sign \x948F 12-12456-5 sign \x9490 24-1236-5 sign \x9491 13-16-2 sign \x9492 12345-1236-2 sign \x9493 145-246-5 sign \x9494 134-136-2 sign \x9495 1345-1256-4 sign \x9496 15-16-2 sign \x9497 12-2456-3 sign \x9498 15-13456-2 sign \x9499 13-2456-5 sign \x949A 135-34-5 sign \x949B 124-2456-5 sign \x949C 13-1256-5 sign \x949D 145-123456-5 sign \x949E 12-146-3 sign \x949F 1-12346-3 sign \x94A0 1345-345-5 sign \x94A1 135-356-5 sign \x94A2 13-1346-3 sign \x94A3 135-1236-4 sign \x94A4 245-2345-2 sign \x94A5 246-5 sign \x94A6 245-1456-3 sign \x94A7 13-256-3 sign \x94A8 34-3 sign \x94A9 13-12356-3 sign \x94AA 123-1346-5 sign \x94AB 12345-1346-3 sign \x94AC 1235-25-4 sign \x94AD 124-12356-4 sign \x94AE 1345-234-4 sign \x94AF 135-345-3 sign \x94B0 1256-5 sign \x94B1 245-2345-2 sign \x94B2 1-1356-3 sign \x94B3 245-2345-2 sign \x94B4 13-34-3 sign \x94B5 135-126-3 sign \x94B6 123-2346-3 sign \x94B7 1234-126-3 sign \x94B8 135-34-5 sign \x94B9 135-345-2 sign \x94BA 1235-1246-5 sign \x94BB 125-12456-3 sign \x94BC 134-34-5 sign \x94BD 145-1236-5 sign \x94BE 13-23456-4 sign \x94BF 145-2345-5 sign \x94C0 234-5 sign \x94C1 124-346-4 sign \x94C2 135-126-2 sign \x94C3 14-13456-2 sign \x94C4 24-25-5 sign \x94C5 245-2345-3 sign \x94C6 14-234-4 sign \x94C7 135-146-5 sign \x94C8 24-156-5 sign \x94C9 15-45-5 sign \x94CA 24-2346-2 sign \x94CB 135-16-5 sign \x94CC 1345-16-4 sign \x94CD 1234-16-3 sign \x94CE 145-25-2 sign \x94CF 15-13456-2 sign \x94D0 123-146-5 sign \x94D1 14-146-4 sign \x94D2 156-5 sign \x94D3 134-1346-3 sign \x94D4 23456-5 sign \x94D5 234-4 sign \x94D6 12-1356-2 sign \x94D7 13-23456-2 sign \x94D8 346-2 sign \x94D9 1345-146-2 sign \x94DA 1-156-5 sign \x94DB 145-1346-3 sign \x94DC 124-12346-2 sign \x94DD 14-1256-4 sign \x94DE 145-246-5 sign \x94DF 1456-3 sign \x94E0 123-2456-4 sign \x94E1 1-345-2 sign \x94E2 1-34-3 sign \x94E3 15-2345-4 sign \x94E4 124-13456-4 sign \x94E5 145-234-3 sign \x94E6 15-2345-3 sign \x94E7 1235-35-2 sign \x94E8 245-45-2 sign \x94E9 24-345-3 sign \x94EA 13-23456-2 sign \x94EB 246-2 sign \x94EC 14-25-5 sign \x94ED 134-13456-2 sign \x94EE 1-1356-3 sign \x94EF 15-2346-5 sign \x94F0 13-246-4 sign \x94F1 16-3 sign \x94F2 12-1236-4 sign \x94F3 12-12346-5 sign \x94F4 124-1346-5 sign \x94F5 1236-3 sign \x94F6 1456-2 sign \x94F7 1245-34-2 sign \x94F8 1-34-5 sign \x94F9 14-146-2 sign \x94FA 1234-34-3 sign \x94FB 34-2 sign \x94FC 14-2456-2 sign \x94FD 124-2346-5 sign \x94FE 14-2345-5 sign \x94FF 123-1356-3 sign \x9500 15-246-3 sign \x9501 15-25-4 sign \x9502 14-16-4 sign \x9503 1-1356-5 sign \x9504 12-34-2 sign \x9505 13-25-3 sign \x9506 13-146-5 sign \x9507 2346-2 sign \x9508 15-234-5 sign \x9509 245-25-5 sign \x950A 14-236-5 sign \x950B 12345-1356-3 sign \x950C 15-1456-3 sign \x950D 14-234-4 sign \x950E 123-2456-3 sign \x950F 13-2345-4 sign \x9510 1245-1246-5 sign \x9511 124-16-5 sign \x9512 14-1346-2 sign \x9513 245-1456-3 sign \x9514 13-1256-2 sign \x9515 345-5 sign \x9516 245-46-3 sign \x9517 145-25-4 sign \x9518 124-2345-4 sign \x9519 245-25-5 sign \x951A 134-146-2 sign \x951B 135-136-3 sign \x951C 16-4 sign \x951D 145-2346-2 sign \x951E 13-25-4 sign \x951F 123-123456-3 sign \x9520 12-1346-3 sign \x9521 15-16-2 sign \x9522 13-34-5 sign \x9523 14-25-2 sign \x9524 12-1246-2 sign \x9525 1-1246-3 sign \x9526 13-1456-4 sign \x9527 1-156-5 sign \x9528 15-2345-3 sign \x9529 13-45-5 sign \x952A 1235-25-3 sign \x952B 1234-12356-2 sign \x952C 124-1236-2 sign \x952D 145-13456-5 sign \x952E 13-2345-5 sign \x952F 13-1256-5 sign \x9530 134-1356-4 sign \x9531 125-156-3 sign \x9532 245-16-5 sign \x9533 13456-3 sign \x9534 123-2456-4 sign \x9535 245-46-3 sign \x9536 15-12346-3 sign \x9537 2346-5 sign \x9538 12-345-2 sign \x9539 245-246-3 sign \x953A 1-12346-3 sign \x953B 145-12456-5 sign \x953C 15-12356-3 sign \x953D 1235-456-2 sign \x953E 1235-12456-2 sign \x953F 2456-3 sign \x9540 145-34-5 sign \x9541 134-356-4 sign \x9542 14-12356-5 sign \x9543 125-156-3 sign \x9544 12345-356-5 sign \x9545 134-356-2 sign \x9546 134-126-5 sign \x9547 1-136-5 sign \x9548 135-126-2 sign \x9549 13-2346-2 sign \x954A 1345-346-5 sign \x954B 124-1346-4 sign \x954C 13-45-3 sign \x954D 1345-346-5 sign \x954E 1345-345-2 sign \x954F 14-234-2 sign \x9550 13-146-4 sign \x9551 135-1346-5 sign \x9552 16-5 sign \x9553 13-23456-3 sign \x9554 135-1456-3 sign \x9555 1245-12346-2 sign \x9556 135-246-3 sign \x9557 124-1346-3 sign \x9558 134-1236-5 sign \x9559 14-25-2 sign \x955A 135-1356-5 sign \x955B 1245-12346-2 sign \x955C 13-13456-5 sign \x955D 145-16-2 sign \x955E 125-34-2 sign \x955F 15-45-2 sign \x9560 14-234-2 sign \x9561 15-256-2 sign \x9562 13-236-2 sign \x9563 14-246-2 sign \x9564 1234-34-2 sign \x9565 14-34-4 sign \x9566 145-1246-3 sign \x9567 14-1236-5 sign \x9568 1234-34-4 sign \x9569 245-12456-5 sign \x956A 13-46-4 sign \x956B 145-1356-3 sign \x956C 1235-25-5 sign \x956D 14-356-2 sign \x956E 1235-12456-2 sign \x956F 1-25-2 sign \x9570 14-2345-2 sign \x9571 16-5 sign \x9572 12-345-4 sign \x9573 135-246-3 sign \x9574 14-345-5 sign \x9575 12-1236-2 sign \x9576 15-46-3 sign \x9577 12-1346-2 sign \x9578 12-1346-2 sign \x9579 13-234-4 sign \x957A 146-4 sign \x957B 145-346-2 sign \x957C 245-1256-3 sign \x957D 14-246-4 sign \x957E 134-16-2 sign \x957F 12-1346-2 sign \x9580 134-136-2 sign \x9581 134-345-5 sign \x9582 24-12456-3 sign \x9583 24-1236-4 sign \x9584 1235-25-5 sign \x9585 134-136-2 sign \x9586 2345-2 sign \x9587 135-16-5 sign \x9588 1235-1236-5 sign \x9589 135-16-5 sign \x958B 123-2456-3 sign \x958C 123-1346-5 sign \x958D 135-1356-3 sign \x958E 1235-12346-2 sign \x958F 1245-123456-5 sign \x9590 15-1236-5 sign \x9591 15-2345-2 sign \x9592 15-2345-2 sign \x9593 13-2345-3 sign \x9594 134-1456-4 sign \x9595 15-23456-3 sign \x9597 145-12356-5 sign \x9598 1-345-2 sign \x9599 1345-146-5 sign \x959B 1234-1356-3 sign \x959C 15-23456-4 sign \x959D 14-13456-2 sign \x959E 135-2345-5 sign \x959F 135-16-5 sign \x95A0 1245-123456-5 sign \x95A1 1235-2346-2 sign \x95A2 13-12456-3 sign \x95A3 13-2346-2 sign \x95A4 1235-2346-2 sign \x95A5 12345-345-2 sign \x95A6 12-34-5 sign \x95A7 1235-12346-4 sign \x95A8 13-1246-3 sign \x95A9 134-1456-2 sign \x95AB 123-123456-4 sign \x95AC 14-1346-5 sign \x95AD 14-1256-2 sign \x95AE 124-13456-2 sign \x95AF 24-345-5 sign \x95B0 13-1256-2 sign \x95B1 236-5 sign \x95B2 236-5 sign \x95B3 12-1236-4 sign \x95B4 245-1256-5 sign \x95B5 14-1456-5 sign \x95B6 12-1346-3 sign \x95B7 24-345-3 sign \x95B8 123-123456-4 sign \x95B9 2345-3 sign \x95BA 134-1456-2 sign \x95BB 2345-2 sign \x95BC 2346-5 sign \x95BD 1235-123456-3 sign \x95BE 1256-5 sign \x95BF 123456-2 sign \x95C0 15-46-5 sign \x95C1 135-146-3 sign \x95C2 15-46-5 sign \x95C3 245-1256-5 sign \x95C4 246-4 sign \x95C5 123456-2 sign \x95C6 135-1236-4 sign \x95C7 1236-5 sign \x95C8 1246-2 sign \x95C9 1456-3 sign \x95CA 123-25-5 sign \x95CB 245-236-5 sign \x95CC 14-1236-2 sign \x95CD 145-34-3 sign \x95D0 124-2345-2 sign \x95D1 1345-346-5 sign \x95D2 124-345-5 sign \x95D3 123-2456-4 sign \x95D4 1235-2346-2 sign \x95D5 245-236-5 sign \x95D6 12-456-4 sign \x95D7 13-12456-3 sign \x95D8 145-12356-5 sign \x95D9 245-16-4 sign \x95DA 123-1246-3 sign \x95DB 124-1346-2 sign \x95DC 13-12456-3 sign \x95DD 1234-246-2 sign \x95DE 123-1236-5 sign \x95DF 15-16-3 sign \x95E0 1235-1246-5 sign \x95E1 12-1236-4 sign \x95E2 1234-16-5 sign \x95E3 145-1346-5 sign \x95E4 1235-12456-2 sign \x95E5 124-345-5 sign \x95E6 123456-2 sign \x95E8 134-136-2 sign \x95E9 24-12456-3 sign \x95EA 24-1236-4 sign \x95EB 2345-2 sign \x95EC 1235-1236-5 sign \x95ED 135-16-5 sign \x95EE 123456-5 sign \x95EF 12-456-4 sign \x95F0 1245-123456-5 sign \x95F1 1246-2 sign \x95F2 15-2345-2 sign \x95F3 1235-12346-2 sign \x95F4 13-2345-3 sign \x95F5 134-1456-4 sign \x95F6 123-1346-5 sign \x95F7 134-136-5 sign \x95F8 1-345-2 sign \x95F9 1345-146-5 sign \x95FA 13-1246-3 sign \x95FB 123456-2 sign \x95FC 124-345-5 sign \x95FD 134-1456-4 sign \x95FE 14-1256-2 sign \x95FF 123-2456-4 sign \x9600 12345-345-2 sign \x9601 13-2346-2 sign \x9602 1235-2346-2 sign \x9603 123-123456-4 sign \x9604 13-234-3 sign \x9605 236-5 sign \x9606 14-1346-5 sign \x9607 145-34-3 sign \x9608 1256-5 sign \x9609 2345-3 sign \x960A 12-1346-3 sign \x960B 15-16-5 sign \x960C 123456-2 sign \x960D 1235-123456-3 sign \x960E 2345-2 sign \x960F 2346-5 sign \x9610 12-1236-4 sign \x9611 14-1236-2 sign \x9612 245-1256-5 sign \x9613 1235-1246-5 sign \x9614 123-25-5 sign \x9615 245-236-5 sign \x9616 1235-2346-2 sign \x9617 124-2345-2 sign \x9618 124-345-5 sign \x9619 245-236-5 sign \x961A 123-1236-5 sign \x961B 1235-12456-2 sign \x961C 12345-34-5 sign \x961D 12345-34-5 sign \x961E 14-2346-5 sign \x961F 145-1246-5 sign \x9620 24-136-3 sign \x9621 245-2345-3 sign \x9622 34-5 sign \x9623 16-5 sign \x9624 1-156-5 sign \x9625 1456-3 sign \x9626 46-2 sign \x9627 145-12356-4 sign \x9628 2346-5 sign \x9629 24-1356-3 sign \x962A 135-1236-4 sign \x962B 1234-356-2 sign \x962C 123-1356-3 sign \x962D 256-4 sign \x962E 1245-12456-4 sign \x962F 1-156-4 sign \x9630 1234-16-2 sign \x9631 13-13456-4 sign \x9632 12345-1346-2 sign \x9633 46-2 sign \x9634 1456-3 sign \x9635 1-136-5 sign \x9636 13-346-3 sign \x9637 12-1356-3 sign \x9638 2346-5 sign \x9639 245-1256-3 sign \x963A 145-16-4 sign \x963B 125-34-4 sign \x963C 125-34-5 sign \x963D 2345-2 sign \x963E 14-13456-4 sign \x963F 345-3 sign \x9640 124-25-2 sign \x9641 124-25-2 sign \x9642 1234-126-3 sign \x9643 135-13456-4 sign \x9644 12345-34-5 sign \x9645 13-16-5 sign \x9646 14-34-5 sign \x9647 14-12346-4 sign \x9648 12-136-2 sign \x9649 15-13456-2 sign \x964A 145-25-5 sign \x964B 14-12356-5 sign \x964C 134-126-5 sign \x964D 13-46-5 sign \x964E 24-34-3 sign \x964F 145-25-5 sign \x9650 15-2345-5 sign \x9651 156-2 sign \x9652 13-1246-4 sign \x9653 1256-3 sign \x9654 13-2456-3 sign \x9655 24-1236-4 sign \x9656 13-256-5 sign \x9657 245-246-5 sign \x9658 15-13456-2 sign \x9659 12-123456-2 sign \x965A 12345-34-5 sign \x965B 135-16-5 sign \x965C 24-1236-4 sign \x965D 24-1236-4 sign \x965E 24-1356-3 sign \x965F 1-156-5 sign \x9660 1234-34-3 sign \x9661 145-12356-4 sign \x9662 45-5 sign \x9663 1-136-5 sign \x9664 12-34-2 sign \x9665 15-2345-5 sign \x9667 1345-346-5 sign \x9668 256-4 sign \x9669 15-2345-4 sign \x966A 1234-356-2 sign \x966B 12345-356-5 sign \x966C 125-12356-3 sign \x966D 16-3 sign \x966E 145-1246-4 sign \x966F 14-123456-2 sign \x9670 1456-3 sign \x9671 13-1256-2 sign \x9672 12-1246-2 sign \x9673 12-136-2 sign \x9674 1234-16-2 sign \x9675 14-13456-2 sign \x9676 124-146-2 sign \x9677 15-2345-5 sign \x9678 14-34-5 sign \x967A 15-2345-4 sign \x967B 1456-3 sign \x967C 1-34-4 sign \x967D 46-2 sign \x967E 1245-1356-2 sign \x967F 15-23456-2 sign \x9680 12-12346-2 sign \x9681 2345-4 sign \x9682 1456-3 sign \x9683 1256-2 sign \x9684 124-16-2 sign \x9685 1256-2 sign \x9686 14-12346-2 sign \x9687 1246-3 sign \x9688 1246-3 sign \x9689 1345-346-5 sign \x968A 145-1246-5 sign \x968B 15-1246-2 sign \x968C 1236-4 sign \x968D 1235-456-2 sign \x968E 13-346-3 sign \x968F 15-1246-2 sign \x9690 1456-4 sign \x9691 13-2456-3 sign \x9692 2345-4 sign \x9693 1235-1246-3 sign \x9694 13-2346-2 sign \x9695 256-4 sign \x9696 34-5 sign \x9697 1246-4 sign \x9698 2456-5 sign \x9699 15-16-5 sign \x969A 124-1346-2 sign \x969B 13-16-5 sign \x969C 1-1346-5 sign \x969D 145-146-4 sign \x969E 146-2 sign \x969F 15-16-5 sign \x96A0 1456-4 sign \x96A1 135-345-1 sign \x96A2 1245-146-5 sign \x96A3 14-1456-2 sign \x96A4 124-1246-2 sign \x96A5 145-1356-5 sign \x96A6 1234-16-4 sign \x96A7 15-1246-5 sign \x96A8 15-1246-2 sign \x96A9 146-5 sign \x96AA 15-2345-4 sign \x96AB 12345-136-2 sign \x96AC 1345-16-4 sign \x96AD 156-2 sign \x96AE 13-16-3 sign \x96AF 145-146-4 sign \x96B0 15-16-2 sign \x96B1 1456-4 sign \x96B2 2346-2 sign \x96B3 1235-1246-3 sign \x96B4 14-12346-4 sign \x96B5 15-16-3 sign \x96B6 378-167 sign \x96B7 14-16-5 sign \x96B8 14-16-5 sign \x96B9 1-1246-3 sign \x96BA 1235-2346-5 sign \x96BB 1-156-3 sign \x96BC 15-123456-4 sign \x96BD 13-45-5 sign \x96BE 1345-1236-2 sign \x96BF 16-5 sign \x96C0 245-236-5 sign \x96C1 2345-5 sign \x96C2 245-2345-2 sign \x96C3 245-2345-3 sign \x96C4 15-235-2 sign \x96C5 23456-4 sign \x96C6 13-16-2 sign \x96C7 13-34-5 sign \x96C8 1235-12456-2 sign \x96C9 1-156-5 sign \x96CA 13-1256-5 sign \x96CB 13-45-5 sign \x96CC 245-156-2 sign \x96CD 235-3 sign \x96CE 13-1256-3 sign \x96CF 12-34-2 sign \x96D0 1235-34-3 sign \x96D1 125-345-2 sign \x96D2 14-25-5 sign \x96D3 1256-2 sign \x96D4 12-12356-2 sign \x96D5 145-246-3 sign \x96D6 15-1246-3 sign \x96D7 1235-1236-5 sign \x96D8 25-5 sign \x96D9 24-456-3 sign \x96DA 13-12456-5 sign \x96DB 12-34-2 sign \x96DC 125-345-2 sign \x96DD 235-3 sign \x96DE 13-16-3 sign \x96DF 15-16-3 sign \x96E0 12-12356-2 sign \x96E1 14-234-5 sign \x96E2 14-16-2 sign \x96E3 1345-1236-2 sign \x96E4 15-236-2 sign \x96E5 125-345-2 sign \x96E6 13-16-2 sign \x96E7 13-16-2 sign \x96E8 1256-4 sign \x96E9 1256-2 sign \x96EA 15-236-4 sign \x96EB 1345-345-4 sign \x96EC 12345-12356-4 sign \x96ED 15-2346-5 sign \x96EE 134-34-5 sign \x96EF 123456-2 sign \x96F0 12345-136-3 sign \x96F1 1234-1346-2 sign \x96F2 256-2 sign \x96F3 14-16-5 sign \x96F4 14-16-5 sign \x96F5 1346-4 sign \x96F6 14-13456-2 sign \x96F7 14-356-2 sign \x96F8 1236-2 sign \x96F9 135-146-2 sign \x96FA 34-5 sign \x96FB 145-2345-5 sign \x96FC 145-1346-5 sign \x96FD 1235-34-3 sign \x96FE 34-5 sign \x96FF 1-2456-2 sign \x9700 15-1256-3 sign \x9701 13-16-5 sign \x9702 134-34-5 sign \x9703 12-136-2 sign \x9704 15-246-3 sign \x9705 1-345-2 sign \x9706 124-13456-2 sign \x9707 1-136-5 sign \x9708 1234-356-5 sign \x9709 134-356-2 sign \x970A 14-13456-2 sign \x970B 245-16-3 sign \x970C 12-12356-3 sign \x970D 1235-25-5 sign \x970E 24-345-5 sign \x970F 12345-356-3 sign \x9710 12346-3 sign \x9711 1-1236-3 sign \x9712 1456-3 sign \x9713 1345-16-2 sign \x9714 1-34-5 sign \x9715 124-123456-2 sign \x9716 14-1456-2 sign \x9718 145-12346-5 sign \x9719 13456-3 sign \x971A 34-5 sign \x971B 14-13456-2 sign \x971C 24-456-3 sign \x971D 14-13456-2 sign \x971E 15-23456-2 sign \x971F 1235-12346-2 sign \x9720 1456-3 sign \x9721 134-126-5 sign \x9722 134-126-5 sign \x9723 256-4 sign \x9724 14-234-5 sign \x9725 134-1356-5 sign \x9726 135-1456-3 sign \x9727 34-5 sign \x9728 1246-5 sign \x9729 123-25-5 sign \x972A 1456-2 sign \x972B 15-16-2 sign \x972C 16-5 sign \x972D 2456-4 sign \x972E 145-1236-5 sign \x972F 145-1356-5 sign \x9730 15-2345-5 sign \x9731 1256-5 sign \x9732 14-34-5 sign \x9733 14-12346-2 sign \x9734 145-2456-5 sign \x9735 13-16-2 sign \x9736 1234-1346-2 sign \x9737 46-2 sign \x9738 135-345-5 sign \x9739 1234-16-3 sign \x973A 1246-2 sign \x973C 15-16-4 sign \x973D 13-16-5 sign \x973E 134-2456-2 sign \x973F 34-5 sign \x9740 134-1356-2 sign \x9741 14-356-2 sign \x9742 14-16-5 sign \x9743 1235-25-5 sign \x9744 2456-4 sign \x9745 12345-356-5 sign \x9746 145-2456-5 sign \x9747 14-12346-2 sign \x9748 14-13456-2 sign \x9749 2456-5 sign \x974A 12345-1356-3 sign \x974B 14-16-5 sign \x974C 135-146-4 sign \x974E 1235-2346-5 sign \x974F 1235-2346-5 sign \x9750 135-13456-5 sign \x9751 245-13456-3 sign \x9752 245-13456-3 sign \x9753 13-13456-5 sign \x9754 124-2345-3 sign \x9755 1-136-3 sign \x9756 13-13456-5 sign \x9757 12-1356-5 sign \x9758 245-13456-5 sign \x9759 13-13456-5 sign \x975A 13-13456-5 sign \x975B 145-2345-5 sign \x975C 13-13456-5 sign \x975D 124-2345-3 sign \x975E 12345-356-3 sign \x975F 12345-356-3 sign \x9760 123-146-5 sign \x9761 134-16-4 sign \x9762 134-2345-5 sign \x9763 134-2345-5 sign \x9764 1234-146-5 sign \x9765 346-5 sign \x9766 124-2345-4 sign \x9767 1235-1246-5 sign \x9768 346-5 sign \x9769 13-2346-2 sign \x976A 145-13456-3 sign \x976B 12-345-3 sign \x976C 123-1236-5 sign \x976D 1245-136-5 sign \x976E 145-16-5 sign \x976F 145-34-5 sign \x9770 34-5 sign \x9771 1245-136-5 sign \x9772 245-1456-2 sign \x9773 13-1456-5 sign \x9774 15-236-3 sign \x9775 1345-234-4 sign \x9776 135-345-4 sign \x9777 1456-4 sign \x9778 15-345-5 sign \x9779 1345-345-5 sign \x977A 134-126-5 sign \x977B 125-34-4 sign \x977C 145-345-2 sign \x977D 135-1236-5 sign \x977E 16-5 sign \x977F 246-5 sign \x9780 124-146-2 sign \x9781 135-356-5 sign \x9782 13-346-3 sign \x9783 1235-12346-2 sign \x9784 1234-146-2 sign \x9785 46-3 sign \x9787 1456-3 sign \x9788 13-2346-2 sign \x9789 124-146-2 sign \x978A 13-16-2 sign \x978B 15-346-2 sign \x978C 1236-3 sign \x978D 1236-3 sign \x978E 1235-136-2 sign \x978F 13-12346-4 sign \x9791 145-345-2 sign \x9792 245-246-3 sign \x9793 124-13456-3 sign \x9794 134-1236-2 sign \x9795 13456-5 sign \x9796 15-1246-3 sign \x9797 124-246-2 sign \x9798 245-246-5 sign \x9799 45-3 sign \x979A 123-12346-5 sign \x979B 135-1356-4 sign \x979C 124-345-5 sign \x979D 1-1346-4 sign \x979E 135-13456-4 sign \x979F 123-25-5 sign \x97A0 13-1256-2 sign \x97A1 135-345-1 sign \x97A2 15-346-5 sign \x97A3 1245-12356-2 sign \x97A4 135-1346-3 sign \x97A5 1356-3 sign \x97A6 245-234-3 sign \x97A7 245-234-3 sign \x97A8 1235-2346-2 sign \x97A9 15-246-5 sign \x97AA 134-12356-2 sign \x97AB 13-1256-2 sign \x97AC 13-2345-3 sign \x97AD 135-2345-3 sign \x97AE 145-16-3 sign \x97AF 13-2345-3 sign \x97B1 124-146-3 sign \x97B2 13-12356-3 sign \x97B3 124-345-5 sign \x97B4 135-356-5 sign \x97B5 15-346-2 sign \x97B6 1234-1236-2 sign \x97B7 13-2346-2 sign \x97B8 135-16-5 sign \x97B9 123-25-5 sign \x97BB 14-1256-5 sign \x97BC 13-1246-5 sign \x97BD 245-246-2 sign \x97BE 15-236-3 sign \x97BF 13-16-3 sign \x97C0 13-2345-3 sign \x97C1 13-46-3 sign \x97C2 12-1236-5 sign \x97C3 145-345-2 sign \x97C4 25-5 sign \x97C5 15-2345-4 sign \x97C6 245-2345-3 sign \x97C7 145-34-2 sign \x97C8 35-5 sign \x97C9 13-2345-3 sign \x97CA 14-1236-2 sign \x97CB 1246-2 sign \x97CC 1245-136-5 sign \x97CD 12345-34-2 sign \x97CE 134-356-5 sign \x97CF 13-45-5 sign \x97D0 13-23456-2 sign \x97D1 1246-4 sign \x97D2 245-246-5 sign \x97D3 1235-1236-2 sign \x97D4 12-1346-5 sign \x97D5 135-345-1 sign \x97D6 1245-12356-4 sign \x97D7 256-5 sign \x97D8 24-2346-5 sign \x97D9 1246-4 sign \x97DA 13-2346-2 sign \x97DB 135-356-5 sign \x97DC 124-146-3 sign \x97DD 13-12356-3 sign \x97DE 256-4 sign \x97DF 13-146-3 sign \x97E0 135-16-5 sign \x97E1 1246-4 sign \x97E2 1235-1246-5 sign \x97E3 145-34-2 sign \x97E4 35-5 sign \x97E5 145-34-2 sign \x97E6 1246-2 sign \x97E7 1245-136-5 sign \x97E8 12345-34-2 sign \x97E9 1235-1236-2 sign \x97EA 1246-4 sign \x97EB 256-4 sign \x97EC 124-146-3 sign \x97ED 13-234-4 sign \x97EE 13-234-4 sign \x97EF 15-2345-3 sign \x97F0 15-346-5 sign \x97F1 15-2345-3 sign \x97F2 13-16-3 sign \x97F3 1456-3 sign \x97F4 125-345-2 sign \x97F5 256-5 sign \x97F6 24-146-2 sign \x97F7 14-2346-5 sign \x97F8 1234-1356-2 sign \x97F9 1235-1356-2 sign \x97FA 13456-3 sign \x97FB 256-5 sign \x97FC 1234-1356-2 sign \x97FD 1236-3 sign \x97FE 1456-3 sign \x97FF 15-46-4 sign \x9800 1235-34-5 sign \x9801 346-5 sign \x9802 145-13456-4 sign \x9803 245-13456-4 sign \x9804 123-1246-2 sign \x9805 15-46-5 sign \x9806 24-123456-5 sign \x9807 1235-1236-3 sign \x9808 15-1256-3 sign \x9809 16-2 sign \x980A 15-1256-5 sign \x980B 13-34-5 sign \x980C 15-12346-5 sign \x980D 123-1246-4 sign \x980E 245-16-2 sign \x980F 1235-1346-2 sign \x9810 1256-5 sign \x9811 12456-2 sign \x9812 135-1236-3 sign \x9813 145-123456-5 sign \x9814 145-16-2 sign \x9815 145-1236-3 sign \x9816 1234-1236-5 sign \x9817 1234-126-4 sign \x9818 14-13456-4 sign \x9819 245-2346-5 sign \x981A 13-13456-4 sign \x981B 14-356-4 sign \x981C 1235-1236-2 sign \x981D 245-246-3 sign \x981E 2346-5 sign \x981F 2346-2 sign \x9820 1246-4 sign \x9821 13-346-2 sign \x9822 13-35-3 sign \x9823 24-136-4 sign \x9824 16-2 sign \x9825 24-136-4 sign \x9826 1235-2456-2 sign \x9827 145-1246-3 sign \x9828 1234-2345-3 sign \x9829 1234-13456-3 sign \x982A 14-356-5 sign \x982B 12345-34-4 sign \x982C 13-23456-2 sign \x982D 124-12356-2 sign \x982E 1235-1246-5 sign \x982F 123-1246-2 sign \x9830 13-23456-2 sign \x9831 14-2346-5 sign \x9832 124-13456-4 sign \x9833 12-1356-3 sign \x9834 13456-4 sign \x9835 13-256-3 sign \x9836 1235-34-2 sign \x9837 1235-1236-2 sign \x9838 13-13456-4 sign \x9839 124-1246-2 sign \x983A 124-1246-2 sign \x983B 1234-1456-2 sign \x983C 14-2456-5 sign \x983D 124-1246-2 sign \x983E 125-156-3 sign \x983F 125-156-3 sign \x9840 12-1246-2 sign \x9841 145-13456-5 sign \x9842 14-2456-5 sign \x9843 2345-2 sign \x9844 1235-1236-5 sign \x9845 13-2345-3 sign \x9846 123-2346-3 sign \x9847 245-1246-5 sign \x9848 13-235-4 sign \x9849 245-1456-3 sign \x984A 16-2 sign \x984B 15-2456-3 sign \x984C 124-16-2 sign \x984D 2346-2 sign \x984E 2346-5 sign \x984F 2345-2 sign \x9850 1235-123456-5 sign \x9851 123-1236-4 sign \x9852 235-2 sign \x9853 1-12456-3 sign \x9854 2345-2 sign \x9855 15-2345-4 sign \x9856 15-1456-5 sign \x9857 16-4 sign \x9858 45-5 sign \x9859 15-1346-4 sign \x985A 145-2345-3 sign \x985B 145-2345-3 sign \x985C 13-46-4 sign \x985D 123-34-3 sign \x985E 14-356-5 sign \x985F 14-246-2 sign \x9860 1234-246-4 sign \x9861 16-5 sign \x9862 134-1236-2 sign \x9863 245-34-5 sign \x9864 246-2 sign \x9865 1235-146-5 sign \x9866 245-246-2 sign \x9867 13-34-5 sign \x9868 15-256-5 sign \x9869 2345-4 sign \x986A 1235-1246-5 sign \x986B 1-1236-5 sign \x986C 1245-34-2 sign \x986D 1235-12346-3 sign \x986E 135-1456-3 sign \x986F 15-2345-4 sign \x9870 1234-1456-2 sign \x9871 14-34-2 sign \x9872 14-1236-4 sign \x9873 1345-346-5 sign \x9874 245-45-2 sign \x9875 346-5 sign \x9876 145-13456-4 sign \x9877 245-13456-4 sign \x9878 1235-1236-3 sign \x9879 15-46-5 sign \x987A 24-123456-5 sign \x987B 15-1256-3 sign \x987C 15-1256-5 sign \x987D 12456-2 sign \x987E 13-34-5 sign \x987F 145-123456-5 sign \x9880 245-16-2 sign \x9881 135-1236-3 sign \x9882 15-12346-5 sign \x9883 1235-1346-2 sign \x9884 1256-5 sign \x9885 14-34-2 sign \x9886 14-13456-4 sign \x9887 1234-126-4 sign \x9888 13-13456-4 sign \x9889 13-346-2 sign \x988A 13-23456-2 sign \x988B 124-2345-1 sign \x988C 1235-1236-2 sign \x988D 13456-4 sign \x988E 13-235-4 sign \x988F 1235-2456-2 sign \x9890 16-2 sign \x9891 1234-1456-2 sign \x9892 1235-1246-5 sign \x9893 124-1246-2 sign \x9894 1235-1236-2 sign \x9895 13456-4 sign \x9896 13456-4 sign \x9897 123-2346-3 sign \x9898 124-16-2 sign \x9899 235-2 sign \x989A 2346-5 sign \x989B 1-12456-3 sign \x989C 2345-2 sign \x989D 2346-2 sign \x989E 1345-346-5 sign \x989F 134-1236-2 sign \x98A0 145-2345-3 sign \x98A1 15-1346-4 sign \x98A2 1235-146-5 sign \x98A3 14-356-5 sign \x98A4 1-1236-5 sign \x98A5 1245-34-2 sign \x98A6 1234-1456-2 sign \x98A7 245-45-2 sign \x98A8 12345-1356-3 sign \x98A9 135-246-3 sign \x98AB 12345-34-2 sign \x98AC 15-23456-3 sign \x98AD 1-1236-4 sign \x98AE 135-246-3 sign \x98AF 15-345-5 sign \x98B0 135-345-2 sign \x98B1 124-2456-2 sign \x98B2 14-346-5 sign \x98B3 13-35-3 sign \x98B4 15-45-5 sign \x98B5 24-146-5 sign \x98B6 13-1256-5 sign \x98B7 135-16-3 sign \x98B8 15-156-3 sign \x98B9 1246-4 sign \x98BA 46-2 sign \x98BB 246-2 sign \x98BC 15-12356-3 sign \x98BD 123-2456-4 sign \x98BE 15-146-3 sign \x98BF 12345-1236-2 sign \x98C0 14-234-2 sign \x98C1 15-16-2 sign \x98C2 14-246-2 sign \x98C3 1234-246-3 sign \x98C4 1234-246-3 sign \x98C5 14-234-2 sign \x98C6 135-246-3 sign \x98C7 135-246-3 sign \x98C8 135-246-4 sign \x98C9 14-246-2 sign \x98CB 15-2346-5 sign \x98CC 12345-1356-3 sign \x98CD 135-246-3 sign \x98CE 12345-1356-3 sign \x98CF 46-2 sign \x98D0 1-1236-4 sign \x98D1 135-246-3 sign \x98D2 15-345-5 sign \x98D3 13-1256-5 sign \x98D4 15-156-3 sign \x98D5 15-12356-3 sign \x98D6 246-2 sign \x98D7 14-234-2 sign \x98D8 1234-246-3 sign \x98D9 135-246-3 sign \x98DA 135-246-3 sign \x98DB 12345-356-3 sign \x98DC 12345-1236-3 sign \x98DD 12345-356-3 sign \x98DE 12345-356-3 sign \x98DF 24-156-2 sign \x98E0 24-156-2 sign \x98E1 245-1236-3 sign \x98E2 13-16-3 sign \x98E3 145-13456-5 sign \x98E4 15-156-5 sign \x98E5 124-25-3 sign \x98E6 1-1236-3 sign \x98E7 15-123456-3 sign \x98E8 15-46-4 sign \x98E9 124-123456-2 sign \x98EA 1245-136-5 sign \x98EB 1256-5 sign \x98EC 13-45-5 sign \x98ED 12-156-5 sign \x98EE 1456-4 sign \x98EF 12345-1236-5 sign \x98F0 12345-1236-5 sign \x98F1 15-123456-3 sign \x98F2 1456-4 sign \x98F3 1-34-5 sign \x98F4 16-2 sign \x98F5 1-2456-4 sign \x98F6 135-16-5 sign \x98F7 13-346-4 sign \x98F8 124-146-3 sign \x98F9 14-234-4 sign \x98FA 245-156-2 sign \x98FB 124-346-5 sign \x98FC 15-156-5 sign \x98FD 135-146-4 sign \x98FE 24-156-5 sign \x98FF 145-25-5 sign \x9900 1235-2456-5 sign \x9901 1245-136-5 sign \x9902 124-2345-4 sign \x9903 13-246-4 sign \x9904 13-23456-2 sign \x9905 135-13456-4 sign \x9906 246-2 sign \x9907 124-12346-2 sign \x9908 245-156-2 sign \x9909 15-46-4 sign \x990A 46-4 sign \x990B 46-4 sign \x990C 156-4 sign \x990D 2345-5 sign \x990E 14-2346-1 sign \x990F 16-3 sign \x9910 245-1236-3 sign \x9911 135-126-3 sign \x9912 1345-356-4 sign \x9913 2346-5 sign \x9914 135-34-3 sign \x9915 13-256-5 sign \x9916 145-12356-5 sign \x9917 15-34-5 sign \x9918 1256-2 sign \x9919 24-156-5 sign \x991A 246-2 sign \x991B 1235-123456-2 sign \x991C 13-25-4 sign \x991D 24-156-5 sign \x991E 13-2345-5 sign \x991F 1-1246-5 sign \x9920 135-13456-4 sign \x9921 15-2345-5 sign \x9922 135-34-5 sign \x9923 346-5 sign \x9924 124-1236-2 sign \x9925 12345-356-4 sign \x9926 1-1346-3 sign \x9927 1246-5 sign \x9928 13-12456-4 sign \x9929 2346-5 sign \x992A 1345-12456-4 sign \x992B 256-5 sign \x992C 1235-34-2 sign \x992D 1235-456-2 sign \x992E 124-346-5 sign \x992F 1235-1246-5 sign \x9930 1-1236-3 sign \x9931 1235-12356-2 sign \x9932 16-5 sign \x9933 124-1346-2 sign \x9934 12345-136-3 sign \x9935 1246-5 sign \x9936 13-34-4 sign \x9937 12-345-3 sign \x9938 15-12346-5 sign \x9939 124-1346-2 sign \x993A 135-126-2 sign \x993B 13-146-3 sign \x993C 15-16-5 sign \x993D 123-1246-5 sign \x993E 14-234-5 sign \x993F 15-12356-3 sign \x9940 124-146-2 sign \x9941 346-5 sign \x9942 256-2 sign \x9943 134-126-2 sign \x9944 124-1346-2 sign \x9945 134-1236-2 sign \x9946 135-16-5 sign \x9947 1256-5 sign \x9948 15-234-3 sign \x9949 13-1456-4 sign \x994A 15-1236-4 sign \x994B 123-1246-5 sign \x994C 1-12456-5 sign \x994D 24-1236-5 sign \x994E 12-156-5 sign \x994F 145-1236-5 sign \x9950 16-5 sign \x9951 13-16-3 sign \x9952 1245-146-2 sign \x9953 12-1356-3 sign \x9954 235-3 sign \x9955 124-146-3 sign \x9956 1235-1246-5 sign \x9957 15-46-4 sign \x9958 1-1236-3 sign \x9959 12345-136-3 sign \x995A 1235-2456-5 sign \x995B 134-1356-2 sign \x995C 2345-5 sign \x995D 134-126-2 sign \x995E 12-1236-2 sign \x995F 15-46-5 sign \x9960 14-25-2 sign \x9961 125-12456-5 sign \x9962 1345-1346-4 sign \x9963 24-156-2 sign \x9964 145-13456-5 sign \x9965 13-16-3 sign \x9966 124-25-3 sign \x9967 124-1346-2 sign \x9968 124-123456-2 sign \x9969 15-16-5 sign \x996A 1245-136-5 sign \x996B 1256-5 sign \x996C 12-156-5 sign \x996D 12345-1236-5 sign \x996E 1456-4 sign \x996F 13-2345-5 sign \x9970 24-156-5 sign \x9971 135-146-4 sign \x9972 15-156-5 sign \x9973 145-25-5 sign \x9974 16-2 sign \x9975 156-4 sign \x9976 1245-146-2 sign \x9977 15-46-4 sign \x9978 13-23456-2 sign \x9979 14-2346-1 sign \x997A 13-246-4 sign \x997B 16-3 sign \x997C 135-13456-4 sign \x997D 135-126-3 sign \x997E 145-12356-5 sign \x997F 2346-5 sign \x9980 1256-2 sign \x9981 1345-356-4 sign \x9982 13-256-5 sign \x9983 13-25-4 sign \x9984 1235-123456-2 sign \x9985 15-2345-5 sign \x9986 13-12456-4 sign \x9987 12-345-3 sign \x9988 123-1246-5 sign \x9989 13-34-4 sign \x998A 15-12356-3 sign \x998B 12-1236-2 sign \x998C 346-5 sign \x998D 134-126-2 sign \x998E 135-126-2 sign \x998F 14-234-5 sign \x9990 15-234-3 sign \x9991 13-1456-4 sign \x9992 134-1236-2 sign \x9993 15-1236-4 sign \x9994 1-12456-5 sign \x9995 1345-1346-4 sign \x9996 24-12356-4 sign \x9997 123-1246-2 sign \x9998 13-25-2 sign \x9999 15-46-3 sign \x999A 12345-136-2 sign \x999B 135-345-2 sign \x999C 1345-16-4 sign \x999D 135-16-5 sign \x999E 135-126-2 sign \x999F 124-34-2 sign \x99A0 1235-1236-3 sign \x99A1 12345-356-3 sign \x99A2 13-2345-3 sign \x99A3 1236-4 sign \x99A4 2456-4 sign \x99A5 12345-34-5 sign \x99A6 15-2345-3 sign \x99A7 123456-3 sign \x99A8 15-1456-3 sign \x99A9 12345-136-2 sign \x99AA 135-1456-3 sign \x99AB 15-13456-3 sign \x99AC 134-345-4 sign \x99AD 1256-5 sign \x99AE 12345-1356-2 sign \x99AF 245-2345-3 sign \x99B0 145-16-5 sign \x99B1 124-25-2 sign \x99B2 1-2346-2 sign \x99B3 12-156-2 sign \x99B4 15-256-2 sign \x99B5 1-34-5 sign \x99B6 1-156-3 sign \x99B7 1234-356-5 sign \x99B8 15-1456-5 sign \x99B9 1245-156-5 sign \x99BA 15-345-5 sign \x99BB 2345-4 sign \x99BC 123456-2 sign \x99BD 1-156-2 sign \x99BE 145-1236-5 sign \x99BF 14-1256-2 sign \x99C0 234-2 sign \x99C1 135-126-2 sign \x99C2 135-146-4 sign \x99C3 13-236-2 sign \x99C4 124-25-2 sign \x99C5 16-5 sign \x99C6 245-1256-3 sign \x99C7 135-345-1 sign \x99C8 245-1256-3 sign \x99C9 13-235-3 sign \x99CA 135-126-4 sign \x99CB 1-146-3 sign \x99CC 45-3 sign \x99CD 1234-1356-3 sign \x99CE 1-12356-5 sign \x99CF 13-1256-5 sign \x99D0 1-34-5 sign \x99D1 1345-34-2 sign \x99D2 13-1256-3 sign \x99D3 1234-16-3 sign \x99D4 125-1346-4 sign \x99D5 13-23456-5 sign \x99D6 14-13456-2 sign \x99D7 1-136-4 sign \x99D8 124-2456-2 sign \x99D9 12345-34-5 sign \x99DA 46-4 sign \x99DB 24-156-4 sign \x99DC 135-16-5 sign \x99DD 124-25-2 sign \x99DE 124-25-2 sign \x99DF 15-156-5 sign \x99E0 14-234-2 sign \x99E1 134-345-5 sign \x99E2 1234-2345-2 sign \x99E3 124-146-2 sign \x99E4 1-156-5 sign \x99E5 15-1256-5 sign \x99E6 124-1356-2 sign \x99E7 145-12346-5 sign \x99E8 15-256-2 sign \x99E9 245-45-2 sign \x99EA 24-136-3 sign \x99EB 13-235-3 sign \x99EC 156-4 sign \x99ED 1235-2456-5 sign \x99EE 135-126-2 sign \x99F0 1456-3 sign \x99F1 14-25-5 sign \x99F3 145-1236-5 sign \x99F4 15-346-5 sign \x99F5 14-234-2 sign \x99F6 13-1256-2 sign \x99F7 15-12346-4 sign \x99F8 245-1456-3 sign \x99F9 134-1346-2 sign \x99FA 14-1346-2 sign \x99FB 1235-1236-5 sign \x99FC 124-34-2 sign \x99FD 15-45-3 sign \x99FE 124-1246-5 sign \x99FF 13-256-5 sign \x9A00 2346-2 sign \x9A01 12-1356-4 sign \x9A02 15-13456-3 sign \x9A03 2456-2 sign \x9A04 14-34-5 sign \x9A05 1-1246-3 sign \x9A06 1-12356-3 sign \x9A07 24-2346-5 sign \x9A08 1234-2345-2 sign \x9A09 123-123456-3 sign \x9A0A 124-146-2 sign \x9A0B 14-2456-2 sign \x9A0C 125-12346-3 sign \x9A0D 123-2346-5 sign \x9A0E 245-16-2 sign \x9A0F 245-16-2 sign \x9A10 2345-5 sign \x9A11 12345-356-3 sign \x9A12 15-146-3 sign \x9A13 2345-4 sign \x9A14 13-346-2 sign \x9A15 246-4 sign \x9A16 34-5 sign \x9A17 1234-2345-5 sign \x9A18 245-12346-3 sign \x9A19 1234-2345-5 sign \x9A1A 245-2345-2 sign \x9A1B 12345-356-3 sign \x9A1C 1235-456-2 sign \x9A1D 13-2345-3 sign \x9A1E 1235-25-5 sign \x9A1F 1256-5 sign \x9A20 124-16-2 sign \x9A21 245-45-2 sign \x9A22 15-23456-2 sign \x9A23 125-12346-3 sign \x9A24 123-1246-2 sign \x9A25 1245-12356-2 sign \x9A26 15-156-3 sign \x9A27 13-35-3 sign \x9A28 124-25-2 sign \x9A29 123-1246-5 sign \x9A2A 15-12356-3 sign \x9A2B 245-2345-3 sign \x9A2C 12-1356-2 sign \x9A2D 1-156-5 sign \x9A2E 14-234-2 sign \x9A2F 1234-1346-2 sign \x9A30 124-1356-2 sign \x9A31 15-16-3 sign \x9A32 245-146-4 sign \x9A33 145-34-2 sign \x9A34 2345-5 sign \x9A35 45-2 sign \x9A36 125-12356-3 sign \x9A37 15-146-3 sign \x9A38 24-1236-5 sign \x9A39 245-16-2 sign \x9A3A 1-156-5 sign \x9A3B 24-456-4 sign \x9A3C 14-34-5 sign \x9A3D 15-16-2 sign \x9A3E 14-25-2 sign \x9A3F 1-1346-3 sign \x9A40 134-126-5 sign \x9A41 146-2 sign \x9A42 245-1236-3 sign \x9A43 1234-246-5 sign \x9A44 245-12346-3 sign \x9A45 245-1256-3 sign \x9A46 135-16-5 sign \x9A47 1-156-5 sign \x9A48 1256-5 sign \x9A49 15-1256-3 sign \x9A4A 1235-35-2 sign \x9A4B 135-126-3 sign \x9A4C 15-34-5 sign \x9A4D 15-246-3 sign \x9A4E 14-1456-2 sign \x9A4F 12-1236-4 sign \x9A50 145-123456-3 sign \x9A51 14-234-2 sign \x9A52 124-25-2 sign \x9A53 125-1356-3 sign \x9A54 124-1236-2 sign \x9A55 13-246-3 sign \x9A56 124-346-4 sign \x9A57 2345-5 sign \x9A58 14-25-2 sign \x9A59 1-1236-3 sign \x9A5A 13-13456-3 sign \x9A5B 16-5 sign \x9A5C 346-5 sign \x9A5D 124-25-3 sign \x9A5E 135-1456-3 sign \x9A5F 125-12356-5 sign \x9A60 2345-5 sign \x9A61 1234-1356-2 sign \x9A62 14-1256-2 sign \x9A63 124-1356-2 sign \x9A64 15-46-3 sign \x9A65 13-16-5 sign \x9A66 24-456-3 sign \x9A67 13-1256-2 sign \x9A68 15-16-3 sign \x9A69 1235-12456-3 sign \x9A6A 14-16-2 sign \x9A6B 135-246-3 sign \x9A6C 134-345-4 sign \x9A6D 1256-5 sign \x9A6E 124-25-2 sign \x9A6F 15-256-2 sign \x9A70 12-156-2 sign \x9A71 245-1256-3 sign \x9A72 1245-156-5 sign \x9A73 135-126-2 sign \x9A74 14-1256-2 sign \x9A75 125-1346-4 sign \x9A76 24-156-4 sign \x9A77 15-156-5 sign \x9A78 12345-34-5 sign \x9A79 13-1256-3 sign \x9A7A 125-12356-3 sign \x9A7B 1-34-5 sign \x9A7C 124-25-2 sign \x9A7D 1345-34-2 sign \x9A7E 13-23456-5 sign \x9A7F 16-5 sign \x9A80 124-2456-2 sign \x9A81 15-246-3 sign \x9A82 134-345-5 sign \x9A83 1456-3 sign \x9A84 13-246-3 sign \x9A85 1235-35-2 sign \x9A86 14-25-5 sign \x9A87 1235-2456-5 sign \x9A88 1234-2345-2 sign \x9A89 135-246-3 sign \x9A8A 14-16-2 sign \x9A8B 12-1356-4 sign \x9A8C 2345-5 sign \x9A8D 15-1456-3 sign \x9A8E 245-1456-3 sign \x9A8F 13-256-5 sign \x9A90 245-16-2 sign \x9A91 245-16-2 sign \x9A92 123-2346-5 sign \x9A93 1-1246-3 sign \x9A94 125-12346-3 sign \x9A95 15-34-5 sign \x9A96 245-1236-3 sign \x9A97 1234-2345-5 sign \x9A98 1-156-5 sign \x9A99 123-1246-2 sign \x9A9A 15-146-3 sign \x9A9B 34-5 sign \x9A9C 146-2 sign \x9A9D 14-234-2 sign \x9A9E 245-2345-3 sign \x9A9F 24-1236-5 sign \x9AA0 1234-246-5 sign \x9AA1 14-25-2 sign \x9AA2 245-12346-3 sign \x9AA3 12-1236-4 sign \x9AA4 125-12356-5 sign \x9AA5 13-16-5 sign \x9AA6 24-456-3 sign \x9AA7 15-46-3 sign \x9AA8 13-34-4 sign \x9AA9 1246-4 sign \x9AAA 1246-4 sign \x9AAB 1246-4 sign \x9AAC 1256-2 sign \x9AAD 13-1236-5 sign \x9AAE 16-5 sign \x9AAF 1346-3 sign \x9AB0 24-2456-4 sign \x9AB1 15-346-5 sign \x9AB2 135-146-3 sign \x9AB3 135-16-5 sign \x9AB4 12-156-3 sign \x9AB5 124-16-4 sign \x9AB6 145-16-4 sign \x9AB7 123-34-3 sign \x9AB8 1235-2456-2 sign \x9AB9 245-246-3 sign \x9ABA 13-12356-5 sign \x9ABB 123-35-5 sign \x9ABC 13-2346-2 sign \x9ABD 124-1246-4 sign \x9ABE 13-1356-4 sign \x9ABF 1234-2345-2 sign \x9AC0 135-16-5 sign \x9AC1 123-2346-5 sign \x9AC2 123-345-5 sign \x9AC3 1256-2 sign \x9AC4 15-1246-4 sign \x9AC5 14-12356-2 sign \x9AC6 135-126-2 sign \x9AC7 15-246-3 sign \x9AC8 135-1346-4 sign \x9AC9 135-126-3 sign \x9ACA 245-156-3 sign \x9ACB 123-12456-3 sign \x9ACC 135-1456-5 sign \x9ACD 134-126-2 sign \x9ACE 14-246-2 sign \x9ACF 14-12356-2 sign \x9AD0 15-246-3 sign \x9AD1 145-34-2 sign \x9AD2 125-1346-3 sign \x9AD3 15-1246-4 sign \x9AD4 124-16-4 sign \x9AD5 135-1456-5 sign \x9AD6 123-12456-3 sign \x9AD7 14-34-2 sign \x9AD8 13-146-3 sign \x9AD9 13-146-3 sign \x9ADA 245-246-5 sign \x9ADB 123-146-3 sign \x9ADC 245-246-3 sign \x9ADD 14-146-5 sign \x9ADE 125-146-5 sign \x9ADF 135-246-3 sign \x9AE0 123-123456-3 sign \x9AE1 123-123456-3 sign \x9AE2 124-16-5 sign \x9AE3 12345-1346-4 sign \x9AE4 15-234-3 sign \x9AE5 1245-1236-2 sign \x9AE6 134-146-2 sign \x9AE7 145-1236-5 sign \x9AE8 123-123456-3 sign \x9AE9 135-1456-5 sign \x9AEA 12345-345-5 sign \x9AEB 124-246-2 sign \x9AEC 1234-16-3 sign \x9AED 125-156-3 sign \x9AEE 12345-345-4 sign \x9AEF 1245-1236-2 sign \x9AF0 124-16-5 sign \x9AF1 1234-146-5 sign \x9AF2 135-16-5 sign \x9AF3 134-146-2 sign \x9AF4 12345-34-2 sign \x9AF5 156-2 sign \x9AF6 1245-12346-2 sign \x9AF7 245-1256-5 sign \x9AF9 15-234-3 sign \x9AFA 13-35-3 sign \x9AFB 13-16-5 sign \x9AFC 1234-1356-2 sign \x9AFD 1-35-3 sign \x9AFE 24-146-3 sign \x9AFF 24-345-3 sign \x9B00 124-16-5 sign \x9B01 14-16-5 sign \x9B02 135-1456-5 sign \x9B03 125-12346-3 sign \x9B04 124-16-5 sign \x9B05 1234-1356-2 sign \x9B06 15-12346-3 sign \x9B07 1-1356-3 sign \x9B08 245-45-2 sign \x9B09 125-12346-3 sign \x9B0A 24-123456-5 sign \x9B0B 13-2345-4 sign \x9B0C 145-25-4 sign \x9B0D 1235-34-2 sign \x9B0E 14-345-5 sign \x9B0F 13-234-3 sign \x9B10 245-16-2 sign \x9B11 14-2345-2 sign \x9B12 1-136-4 sign \x9B13 135-1456-5 sign \x9B14 1234-1356-2 sign \x9B15 134-2456-5 sign \x9B16 15-1236-3 sign \x9B17 134-1236-2 sign \x9B18 134-1236-2 sign \x9B19 15-1356-3 sign \x9B1A 15-1256-3 sign \x9B1B 14-346-5 sign \x9B1C 245-2345-3 sign \x9B1D 245-2345-3 sign \x9B1E 1345-12346-2 sign \x9B1F 1235-12456-2 sign \x9B20 13-35-3 sign \x9B21 1345-13456-2 sign \x9B22 135-1456-5 sign \x9B23 14-346-5 sign \x9B24 1245-1346-2 sign \x9B25 145-12356-5 sign \x9B26 145-12356-5 sign \x9B27 1345-146-5 sign \x9B28 1235-12346-5 sign \x9B29 15-16-5 sign \x9B2A 145-12356-5 sign \x9B2B 1235-1236-4 sign \x9B2C 145-12356-5 sign \x9B2D 145-12356-5 sign \x9B2E 13-234-3 sign \x9B2F 12-1346-5 sign \x9B30 1256-5 sign \x9B31 1256-5 sign \x9B32 13-2346-2 sign \x9B33 13-45-5 sign \x9B34 12345-34-4 sign \x9B35 15-1456-2 sign \x9B36 13-1246-3 sign \x9B37 125-12346-3 sign \x9B38 14-234-5 sign \x9B39 13-1246-3 sign \x9B3A 24-1346-3 sign \x9B3B 1256-5 sign \x9B3C 13-1246-4 sign \x9B3D 134-356-5 sign \x9B3E 13-16-5 sign \x9B3F 245-16-2 sign \x9B40 13-346-5 sign \x9B41 123-1246-2 sign \x9B42 1235-123456-2 sign \x9B43 135-345-2 sign \x9B44 1234-126-5 sign \x9B45 134-356-5 sign \x9B46 15-1256-5 sign \x9B47 2345-4 sign \x9B48 15-246-3 sign \x9B49 14-46-4 sign \x9B4A 1256-5 sign \x9B4B 124-1246-2 sign \x9B4C 245-16-3 sign \x9B4D 456-4 sign \x9B4E 14-46-4 sign \x9B4F 1246-5 sign \x9B50 13-2345-3 sign \x9B51 12-156-3 sign \x9B52 1234-246-3 sign \x9B53 135-16-5 sign \x9B54 134-126-2 sign \x9B55 245-16-2 sign \x9B56 15-1256-3 sign \x9B57 12-12356-4 sign \x9B58 2345-4 sign \x9B59 1-1236-4 sign \x9B5A 1256-2 sign \x9B5B 145-146-3 sign \x9B5C 1245-136-2 sign \x9B5D 13-16-5 sign \x9B5F 1235-12346-3 sign \x9B60 124-25-3 sign \x9B61 145-246-5 sign \x9B62 13-16-4 sign \x9B63 15-1256-5 sign \x9B64 2346-2 sign \x9B65 2346-5 sign \x9B66 24-345-3 sign \x9B67 1235-1346-2 sign \x9B68 124-123456-2 sign \x9B69 134-126-5 sign \x9B6A 13-346-5 sign \x9B6B 24-136-4 sign \x9B6C 135-1236-5 sign \x9B6D 45-2 sign \x9B6E 135-16-2 sign \x9B6F 14-34-4 sign \x9B70 123456-2 sign \x9B71 1235-34-2 sign \x9B72 14-34-2 sign \x9B73 125-345-2 sign \x9B74 12345-1346-2 sign \x9B75 12345-136-2 sign \x9B76 1345-345-5 sign \x9B77 234-2 sign \x9B7A 1235-2346-2 sign \x9B7B 15-23456-2 sign \x9B7C 245-1256-3 sign \x9B7D 1235-1236-3 sign \x9B7E 1234-16-2 sign \x9B7F 14-13456-2 sign \x9B80 124-25-2 sign \x9B81 135-126-3 sign \x9B82 245-234-2 sign \x9B83 1234-13456-2 sign \x9B84 12345-34-2 sign \x9B85 135-16-5 sign \x9B86 13-16-4 sign \x9B87 1246-5 sign \x9B88 13-1256-3 sign \x9B89 145-246-3 sign \x9B8A 135-126-2 sign \x9B8B 234-2 sign \x9B8C 13-123456-4 sign \x9B8D 1234-16-3 sign \x9B8E 1345-2345-2 sign \x9B8F 15-13456-3 sign \x9B90 124-2456-2 sign \x9B91 135-146-5 sign \x9B92 12345-34-5 sign \x9B93 1-345-4 sign \x9B94 13-1256-5 sign \x9B95 13-34-3 sign \x9B99 124-345-5 sign \x9B9A 13-346-2 sign \x9B9B 24-34-2 sign \x9B9C 1235-12356-5 sign \x9B9D 15-46-4 sign \x9B9E 156-2 sign \x9B9F 1236-5 sign \x9BA0 1246-2 sign \x9BA1 1-146-4 sign \x9BA2 1-34-3 sign \x9BA3 1456-5 sign \x9BA4 14-346-5 sign \x9BA5 14-25-5 sign \x9BA6 124-12346-2 sign \x9BA7 16-2 sign \x9BA8 245-16-2 sign \x9BA9 135-13456-5 sign \x9BAA 1246-4 sign \x9BAB 13-246-3 sign \x9BAC 135-34-5 sign \x9BAD 13-1246-3 sign \x9BAE 15-2345-3 sign \x9BAF 13-2346-2 sign \x9BB0 1235-1246-2 sign \x9BB3 123-146-4 sign \x9BB5 145-25-2 sign \x9BB6 13-256-3 sign \x9BB7 124-16-2 sign \x9BB8 134-2345-4 sign \x9BB9 24-146-3 sign \x9BBA 125-345-4 sign \x9BBB 24-345-3 sign \x9BBC 245-1456-3 sign \x9BBD 1256-2 sign \x9BBE 1345-356-4 sign \x9BBF 1-2346-2 sign \x9BC0 13-123456-4 sign \x9BC1 13-1356-4 sign \x9BC3 34-2 sign \x9BC4 245-234-2 sign \x9BC5 124-13456-2 sign \x9BC6 135-34-3 sign \x9BC7 1235-12456-4 sign \x9BC8 124-246-2 sign \x9BC9 14-16-4 sign \x9BCA 24-345-3 sign \x9BCB 24-345-3 sign \x9BCC 13-146-5 sign \x9BCD 134-1356-2 sign \x9BD2 235-4 sign \x9BD3 1345-16-2 sign \x9BD4 125-156-3 sign \x9BD5 245-16-2 sign \x9BD6 245-13456-3 sign \x9BD7 15-46-4 sign \x9BD8 1345-356-4 sign \x9BD9 12-123456-2 sign \x9BDA 13-16-5 sign \x9BDB 145-246-3 sign \x9BDC 245-346-5 sign \x9BDD 13-34-5 sign \x9BDE 1-12356-4 sign \x9BDF 145-12346-3 sign \x9BE0 14-2456-2 sign \x9BE1 12345-356-5 sign \x9BE2 1345-16-2 sign \x9BE3 16-5 sign \x9BE4 123-123456-3 sign \x9BE5 14-34-5 sign \x9BE6 245-234-2 sign \x9BE7 12-1346-3 sign \x9BE8 13-13456-3 sign \x9BE9 14-123456-2 sign \x9BEA 14-13456-2 sign \x9BEB 125-12356-3 sign \x9BEC 14-16-2 sign \x9BED 134-1356-4 sign \x9BEE 125-12346-3 sign \x9BEF 1-156-5 sign \x9BF0 1345-2345-2 sign \x9BF4 24-156-3 sign \x9BF5 24-136-3 sign \x9BF6 1235-12456-4 sign \x9BF7 124-16-2 sign \x9BF8 1235-12356-2 sign \x9BF9 15-13456-3 sign \x9BFA 1-34-3 sign \x9BFB 14-345-5 sign \x9BFC 125-12346-3 sign \x9BFD 13-16-5 sign \x9BFE 135-2345-3 sign \x9BFF 135-2345-3 sign \x9C00 1235-12456-5 sign \x9C01 245-45-2 sign \x9C02 125-2346-2 sign \x9C03 1246-3 sign \x9C04 1246-3 sign \x9C05 1256-2 sign \x9C06 12-123456-3 sign \x9C07 1245-12356-2 sign \x9C08 145-346-2 sign \x9C09 1235-456-2 sign \x9C0A 14-2345-5 sign \x9C0B 2345-4 sign \x9C0C 245-234-2 sign \x9C0D 245-234-3 sign \x9C0E 13-2345-5 sign \x9C0F 135-16-5 sign \x9C10 2346-5 sign \x9C11 46-2 sign \x9C12 12345-34-5 sign \x9C13 15-2456-3 sign \x9C14 13-2345-4 sign \x9C15 15-23456-3 sign \x9C16 124-25-4 sign \x9C17 1235-34-2 sign \x9C19 1245-25-5 sign \x9C1B 123456-3 sign \x9C1C 13-2345-3 sign \x9C1D 1235-146-5 sign \x9C1E 34-3 sign \x9C1F 12345-1346-2 sign \x9C20 15-146-3 sign \x9C21 14-234-3 sign \x9C22 134-345-4 sign \x9C23 24-156-2 sign \x9C24 24-156-3 sign \x9C25 13-12456-3 sign \x9C27 124-1356-2 sign \x9C28 124-345-5 sign \x9C29 246-2 sign \x9C2A 13-2346-2 sign \x9C2B 1245-12346-2 sign \x9C2C 245-2345-2 sign \x9C2D 245-16-2 sign \x9C2E 123456-3 sign \x9C2F 1245-25-5 sign \x9C31 14-2345-2 sign \x9C32 146-2 sign \x9C33 14-2346-5 sign \x9C34 1235-1246-3 sign \x9C35 134-1456-4 sign \x9C36 13-16-5 sign \x9C37 124-246-2 sign \x9C38 245-1256-3 sign \x9C39 13-2345-3 sign \x9C3A 15-146-3 sign \x9C3B 134-1236-2 sign \x9C3C 15-16-2 sign \x9C3D 245-234-2 sign \x9C3E 135-246-5 sign \x9C3F 125-2346-2 sign \x9C40 13-16-5 sign \x9C41 1-34-2 sign \x9C42 13-46-3 sign \x9C43 245-234-3 sign \x9C44 1-12456-3 sign \x9C45 235-2 sign \x9C46 1-1346-3 sign \x9C47 123-1346-3 sign \x9C48 15-236-4 sign \x9C49 135-346-3 sign \x9C4A 1256-5 sign \x9C4B 245-1256-3 sign \x9C4C 15-46-5 sign \x9C4D 135-126-3 sign \x9C4E 13-246-4 sign \x9C4F 15-256-2 sign \x9C50 15-12356-3 sign \x9C51 1235-456-2 sign \x9C52 125-123456-3 sign \x9C53 24-1236-5 sign \x9C54 24-1236-5 sign \x9C55 12345-1236-3 sign \x9C56 13-1246-5 sign \x9C57 14-1456-2 sign \x9C58 15-256-2 sign \x9C59 134-246-2 sign \x9C5A 15-16-4 sign \x9C5D 12345-136-5 sign \x9C5E 13-12456-3 sign \x9C5F 1235-12356-5 sign \x9C60 123-2356-5 sign \x9C61 125-356-2 sign \x9C62 15-146-3 sign \x9C63 1-1236-3 sign \x9C64 13-1236-4 sign \x9C65 13-1246-5 sign \x9C66 24-1356-2 sign \x9C67 14-16-4 sign \x9C68 12-1346-2 sign \x9C6C 1245-34-2 sign \x9C6D 13-16-5 sign \x9C6E 15-1256-5 sign \x9C6F 1235-25-5 sign \x9C71 14-16-5 sign \x9C72 14-346-5 sign \x9C73 14-16-5 sign \x9C74 134-346-5 sign \x9C75 1-136-3 sign \x9C76 15-46-4 sign \x9C77 2346-5 sign \x9C78 14-34-2 sign \x9C79 13-12456-5 sign \x9C7A 14-16-2 sign \x9C7B 15-2345-3 sign \x9C7C 1256-2 sign \x9C7D 145-146-3 sign \x9C7E 13-16-4 sign \x9C7F 234-2 sign \x9C80 124-123456-2 sign \x9C81 14-34-4 sign \x9C82 12345-1346-2 sign \x9C83 135-345-3 sign \x9C84 1235-2346-2 sign \x9C85 135-126-3 sign \x9C86 1234-13456-2 sign \x9C87 1345-2345-2 sign \x9C88 14-34-2 sign \x9C89 234-2 sign \x9C8A 1-345-4 sign \x9C8B 12345-34-5 sign \x9C8C 135-126-2 sign \x9C8D 135-146-5 sign \x9C8E 1235-12356-5 sign \x9C8F 1234-16-3 sign \x9C90 124-2456-2 sign \x9C91 13-1246-3 sign \x9C92 13-346-2 sign \x9C93 123-146-4 sign \x9C94 1246-4 sign \x9C95 156-2 sign \x9C96 124-12346-2 sign \x9C97 125-2346-2 sign \x9C98 1235-12356-5 sign \x9C99 123-2356-5 sign \x9C9A 13-16-5 sign \x9C9B 13-246-3 sign \x9C9C 15-2345-3 sign \x9C9D 125-345-4 sign \x9C9E 15-46-4 sign \x9C9F 15-256-2 sign \x9CA0 13-1356-4 sign \x9CA1 14-16-2 sign \x9CA2 14-2345-2 sign \x9CA3 13-2345-3 sign \x9CA4 14-16-4 sign \x9CA5 24-156-2 sign \x9CA6 124-246-2 sign \x9CA7 13-123456-4 sign \x9CA8 24-345-3 sign \x9CA9 1235-12456-4 sign \x9CAA 13-256-3 sign \x9CAB 13-16-5 sign \x9CAC 235-4 sign \x9CAD 245-13456-3 sign \x9CAE 14-13456-2 sign \x9CAF 245-16-2 sign \x9CB0 125-12356-3 sign \x9CB1 12345-356-5 sign \x9CB2 123-123456-3 sign \x9CB3 12-1346-3 sign \x9CB4 13-34-5 sign \x9CB5 1345-16-2 sign \x9CB6 1345-2345-2 sign \x9CB7 145-246-3 sign \x9CB8 13-13456-3 sign \x9CB9 24-136-3 sign \x9CBA 24-156-3 sign \x9CBB 125-156-3 sign \x9CBC 12345-136-5 sign \x9CBD 145-346-2 sign \x9CBE 135-16-5 sign \x9CBF 12-1346-2 sign \x9CC0 124-16-2 sign \x9CC1 123456-3 sign \x9CC2 1246-3 sign \x9CC3 15-2456-3 sign \x9CC4 2346-5 sign \x9CC5 245-234-3 sign \x9CC6 12345-34-5 sign \x9CC7 1235-456-2 sign \x9CC8 245-45-2 sign \x9CC9 13-46-3 sign \x9CCA 135-2345-3 sign \x9CCB 15-146-3 sign \x9CCC 146-2 sign \x9CCD 245-16-2 sign \x9CCE 124-345-5 sign \x9CCF 13-12456-3 sign \x9CD0 246-2 sign \x9CD1 12345-1346-2 sign \x9CD2 13-2345-3 sign \x9CD3 14-2346-5 sign \x9CD4 135-246-5 sign \x9CD5 15-236-4 sign \x9CD6 135-346-3 sign \x9CD7 134-1236-2 sign \x9CD8 134-1456-4 sign \x9CD9 235-2 sign \x9CDA 1246-5 sign \x9CDB 15-16-2 sign \x9CDC 13-1246-5 sign \x9CDD 24-1236-5 sign \x9CDE 14-1456-2 sign \x9CDF 125-123456-3 sign \x9CE0 1235-25-5 sign \x9CE1 13-1236-4 sign \x9CE2 14-16-4 sign \x9CE3 1-1236-3 sign \x9CE4 13-12456-4 sign \x9CE5 1345-246-4 sign \x9CE6 16-4 sign \x9CE7 12345-34-2 sign \x9CE8 14-16-5 sign \x9CE9 13-234-3 sign \x9CEA 135-34-4 sign \x9CEB 2345-5 sign \x9CEC 12345-34-2 sign \x9CED 12-146-2 sign \x9CEE 13-16-3 sign \x9CEF 12345-1356-5 sign \x9CF1 13-1236-3 sign \x9CF2 24-156-3 sign \x9CF3 12345-1356-5 sign \x9CF4 134-13456-2 sign \x9CF5 135-146-4 sign \x9CF6 45-3 sign \x9CF7 1-156-3 sign \x9CF8 1235-34-5 sign \x9CF9 245-1456-2 sign \x9CFA 12345-34-3 sign \x9CFB 12345-136-3 sign \x9CFC 123456-2 sign \x9CFD 2346-5 sign \x9CFE 24-156-3 sign \x9CFF 1256-5 sign \x9D00 12345-12356-2 sign \x9D01 246-3 sign \x9D02 13-236-5 sign \x9D03 13-236-2 sign \x9D04 1234-16-3 sign \x9D05 1235-12456-3 sign \x9D06 1-136-5 sign \x9D07 135-146-4 sign \x9D08 2345-5 sign \x9D09 23456-3 sign \x9D0A 1-1356-5 sign \x9D0B 12345-1346-3 sign \x9D0C 12345-1356-5 sign \x9D0D 123456-2 sign \x9D0E 12356-3 sign \x9D0F 124-2346-5 sign \x9D10 13-23456-3 sign \x9D11 1345-34-2 sign \x9D12 14-13456-2 sign \x9D13 134-346-5 sign \x9D14 12345-34-2 sign \x9D15 124-25-2 sign \x9D16 123456-2 sign \x9D17 14-16-5 sign \x9D18 135-2345-5 sign \x9D19 1-156-5 sign \x9D1A 13-2346-3 sign \x9D1B 45-3 sign \x9D1C 125-156-3 sign \x9D1D 245-1256-2 sign \x9D1E 15-246-3 sign \x9D1F 12-156-3 sign \x9D20 145-1236-5 sign \x9D21 13-1256-3 sign \x9D22 234-5 sign \x9D23 13-34-3 sign \x9D24 1-12346-3 sign \x9D25 1256-5 sign \x9D26 46-3 sign \x9D27 1245-12346-5 sign \x9D28 23456-3 sign \x9D29 16-5 sign \x9D2A 1256-5 sign \x9D2C 13456-3 sign \x9D2D 1-1246-3 sign \x9D2E 34-3 sign \x9D2F 156-2 sign \x9D30 13-35-3 sign \x9D31 2456-5 sign \x9D32 1-156-3 sign \x9D33 2345-5 sign \x9D34 1235-1356-2 sign \x9D35 13-246-3 sign \x9D36 13-23456-5 sign \x9D37 14-346-5 sign \x9D38 1-34-3 sign \x9D39 1245-136-2 sign \x9D3A 16-2 sign \x9D3B 1235-12346-2 sign \x9D3C 14-25-5 sign \x9D3D 1245-34-2 sign \x9D3E 134-12356-2 sign \x9D3F 13-2346-3 sign \x9D40 1245-136-2 sign \x9D41 13-246-3 sign \x9D42 15-234-3 sign \x9D43 1-146-3 sign \x9D44 12-156-3 sign \x9D45 14-25-5 sign \x9D49 14-12456-2 sign \x9D4A 13-23456-2 sign \x9D4B 13-16-5 sign \x9D4C 124-34-2 sign \x9D4D 1235-12456-3 sign \x9D4E 124-25-4 sign \x9D4F 135-34-3 sign \x9D50 34-2 sign \x9D51 13-45-3 sign \x9D52 1256-5 sign \x9D53 135-126-2 sign \x9D54 13-256-5 sign \x9D55 15-256-5 sign \x9D56 135-16-5 sign \x9D57 15-16-3 sign \x9D58 13-256-5 sign \x9D59 13-1256-2 sign \x9D5A 124-34-2 sign \x9D5B 13-13456-3 sign \x9D5C 124-16-2 sign \x9D5D 2346-2 sign \x9D5E 2346-2 sign \x9D5F 123-456-2 sign \x9D60 1235-34-2 sign \x9D61 34-4 sign \x9D62 24-136-3 sign \x9D63 14-2456-5 sign \x9D66 14-34-5 sign \x9D67 1234-13456-2 sign \x9D68 24-34-3 sign \x9D69 12345-34-2 sign \x9D6A 1236-3 sign \x9D6B 1-146-5 sign \x9D6C 1234-1356-2 sign \x9D6D 245-1456-2 sign \x9D6E 245-2345-3 sign \x9D6F 135-356-3 sign \x9D70 145-246-3 sign \x9D71 14-34-5 sign \x9D72 245-236-5 sign \x9D73 13-2345-3 sign \x9D74 13-1256-2 sign \x9D75 124-34-5 sign \x9D76 23456-3 sign \x9D77 45-3 sign \x9D78 245-16-2 sign \x9D79 14-16-2 sign \x9D7A 346-5 sign \x9D7B 1-1246-3 sign \x9D7C 123-12346-3 sign \x9D7D 145-25-5 sign \x9D7E 123-123456-3 sign \x9D7F 24-1356-3 sign \x9D80 245-16-2 sign \x9D81 13-13456-3 sign \x9D82 16-5 sign \x9D83 16-5 sign \x9D84 13-13456-3 sign \x9D85 125-156-3 sign \x9D86 14-2456-2 sign \x9D87 145-12346-3 sign \x9D88 245-16-3 sign \x9D89 12-123456-2 sign \x9D8A 13-1356-3 sign \x9D8B 13-1256-3 sign \x9D8C 13-236-2 sign \x9D8F 13-16-3 sign \x9D90 1-156-3 sign \x9D92 12-156-4 sign \x9D93 134-246-2 sign \x9D94 1245-12356-2 sign \x9D95 1236-3 sign \x9D96 245-234-3 sign \x9D97 124-16-2 sign \x9D98 1235-34-2 sign \x9D99 124-16-2 sign \x9D9A 2346-5 sign \x9D9B 13-346-3 sign \x9D9C 134-146-2 sign \x9D9D 12345-34-2 sign \x9D9E 12-123456-3 sign \x9D9F 124-34-2 sign \x9DA0 2345-4 sign \x9DA1 1235-2346-2 sign \x9DA2 45-2 sign \x9DA3 1234-2345-3 sign \x9DA4 123-123456-3 sign \x9DA5 134-356-2 sign \x9DA6 1235-34-2 sign \x9DA7 13456-3 sign \x9DA8 124-12456-5 sign \x9DA9 134-34-5 sign \x9DAA 13-1256-2 sign \x9DAC 245-1346-3 sign \x9DAD 12345-1346-4 sign \x9DAE 13-34-5 sign \x9DAF 13456-3 sign \x9DB0 45-2 sign \x9DB1 15-45-3 sign \x9DB2 12346-3 sign \x9DB3 24-156-3 sign \x9DB4 1235-2346-5 sign \x9DB5 12-34-2 sign \x9DB6 124-1346-2 sign \x9DB7 1235-2346-2 sign \x9DB8 1245-25-5 sign \x9DB9 14-234-2 sign \x9DBA 13-16-2 sign \x9DBB 13-34-4 sign \x9DBC 13-2345-3 sign \x9DBD 1-123456-4 sign \x9DBE 1235-1236-5 sign \x9DBF 125-156-3 sign \x9DC0 125-156-3 sign \x9DC1 1345-16-5 sign \x9DC2 246-5 sign \x9DC3 2345-5 sign \x9DC4 13-16-3 sign \x9DC5 14-16-5 sign \x9DC6 124-2345-2 sign \x9DC7 123-12356-5 sign \x9DC8 124-16-3 sign \x9DC9 124-16-3 sign \x9DCA 16-5 sign \x9DCB 124-34-2 sign \x9DCC 134-345-4 sign \x9DCD 13-246-3 sign \x9DCE 13-146-3 sign \x9DCF 124-2345-2 sign \x9DD0 12-136-2 sign \x9DD1 13-16-2 sign \x9DD2 124-12456-2 sign \x9DD3 1-2346-5 sign \x9DD4 146-2 sign \x9DD5 246-4 sign \x9DD6 16-3 sign \x9DD7 12356-3 sign \x9DD8 12-156-5 sign \x9DD9 1-156-5 sign \x9DDA 14-234-5 sign \x9DDB 1245-12346-2 sign \x9DDC 14-1256-2 sign \x9DDD 135-16-5 sign \x9DDE 24-456-3 sign \x9DDF 1-25-2 sign \x9DE0 1256-2 sign \x9DE1 34-2 sign \x9DE2 13-236-2 sign \x9DE3 1456-2 sign \x9DE4 124-16-2 sign \x9DE5 15-156-3 sign \x9DE6 13-246-3 sign \x9DE7 16-5 sign \x9DE8 1235-35-3 sign \x9DE9 135-16-5 sign \x9DEA 13456-3 sign \x9DEB 15-34-5 sign \x9DEC 1235-456-2 sign \x9DED 12345-1236-2 sign \x9DEE 13-246-3 sign \x9DEF 14-246-2 sign \x9DF0 2345-5 sign \x9DF1 123-146-3 sign \x9DF2 13-234-5 sign \x9DF3 15-2345-2 sign \x9DF4 15-2345-2 sign \x9DF5 124-34-2 sign \x9DF6 134-2456-4 sign \x9DF7 125-123456-3 sign \x9DF8 1256-5 sign \x9DF9 13456-3 sign \x9DFA 14-34-5 sign \x9DFB 124-12456-2 sign \x9DFC 15-2345-2 sign \x9DFD 15-236-2 sign \x9DFE 16-5 sign \x9DFF 1234-16-5 sign \x9E00 24-34-2 sign \x9E01 14-25-2 sign \x9E02 245-16-3 sign \x9E03 16-2 sign \x9E04 13-246-3 sign \x9E05 1-2346-2 sign \x9E06 1256-2 sign \x9E07 1-1236-3 sign \x9E08 346-5 sign \x9E09 46-2 sign \x9E0A 1234-16-5 sign \x9E0B 1345-13456-2 sign \x9E0C 1235-25-5 sign \x9E0D 134-16-2 sign \x9E0E 13456-3 sign \x9E0F 134-1356-2 sign \x9E10 145-16-2 sign \x9E11 236-5 sign \x9E12 1256-5 sign \x9E13 14-356-4 sign \x9E14 135-126-2 sign \x9E15 14-34-2 sign \x9E16 1235-2346-5 sign \x9E17 14-12346-2 sign \x9E18 24-456-3 sign \x9E19 236-5 sign \x9E1A 13456-3 sign \x9E1B 13-12456-5 sign \x9E1C 245-1256-2 sign \x9E1D 14-16-2 sign \x9E1E 14-12456-2 sign \x9E1F 1345-246-4 sign \x9E20 13-234-3 sign \x9E21 13-16-3 sign \x9E22 45-3 sign \x9E23 134-13456-2 sign \x9E24 24-156-3 sign \x9E25 12356-3 sign \x9E26 23456-3 sign \x9E27 245-1346-3 sign \x9E28 135-146-4 sign \x9E29 1-136-5 sign \x9E2A 13-34-3 sign \x9E2B 145-12346-3 sign \x9E2C 14-34-2 sign \x9E2D 23456-3 sign \x9E2E 15-246-3 sign \x9E2F 46-3 sign \x9E30 14-13456-2 sign \x9E31 12-156-3 sign \x9E32 245-1256-2 sign \x9E33 45-3 sign \x9E34 15-236-2 sign \x9E35 124-25-2 sign \x9E36 15-156-3 sign \x9E37 1-156-5 sign \x9E38 156-2 sign \x9E39 13-35-3 sign \x9E3A 15-234-3 sign \x9E3B 1235-1356-2 sign \x9E3C 1-12356-3 sign \x9E3D 13-2346-3 sign \x9E3E 14-12456-2 sign \x9E3F 1235-12346-2 sign \x9E40 34-2 sign \x9E41 135-126-2 sign \x9E42 14-16-2 sign \x9E43 13-45-3 sign \x9E44 1235-34-2 sign \x9E45 2346-2 sign \x9E46 1256-5 sign \x9E47 15-2345-2 sign \x9E48 124-16-2 sign \x9E49 34-4 sign \x9E4A 245-236-5 sign \x9E4B 134-246-2 sign \x9E4C 1236-3 sign \x9E4D 123-123456-3 sign \x9E4E 135-356-3 sign \x9E4F 1234-1356-2 sign \x9E50 245-2345-3 sign \x9E51 12-123456-2 sign \x9E52 13-1356-3 sign \x9E53 45-3 sign \x9E54 15-34-5 sign \x9E55 1235-34-2 sign \x9E56 1235-2346-2 sign \x9E57 2346-5 sign \x9E58 13-34-4 sign \x9E59 245-234-3 sign \x9E5A 125-156-3 sign \x9E5B 134-356-2 sign \x9E5C 134-34-5 sign \x9E5D 1345-16-5 sign \x9E5E 246-5 sign \x9E5F 12346-3 sign \x9E60 14-234-2 sign \x9E61 13-16-2 sign \x9E62 1345-16-5 sign \x9E63 13-2345-3 sign \x9E64 1235-2346-5 sign \x9E65 16-3 sign \x9E66 13456-3 sign \x9E67 1-2346-5 sign \x9E68 14-234-5 sign \x9E69 14-246-2 sign \x9E6A 13-246-3 sign \x9E6B 13-234-5 sign \x9E6C 1256-5 sign \x9E6D 14-34-5 sign \x9E6E 15-45-2 sign \x9E6F 1-1236-3 sign \x9E70 13456-3 sign \x9E71 1235-25-5 sign \x9E72 134-1356-2 sign \x9E73 13-12456-5 sign \x9E74 24-456-3 sign \x9E75 14-34-4 sign \x9E76 13-1456-3 sign \x9E77 14-13456-2 sign \x9E78 13-2345-4 sign \x9E79 15-2345-2 sign \x9E7A 245-25-2 sign \x9E7B 13-2345-4 sign \x9E7C 13-2345-4 sign \x9E7D 2345-2 sign \x9E7E 245-25-2 sign \x9E7F 14-34-5 sign \x9E80 234-3 sign \x9E81 245-34-3 sign \x9E82 13-16-4 sign \x9E83 135-246-3 sign \x9E84 245-34-3 sign \x9E85 135-246-3 sign \x9E86 1-34-5 sign \x9E87 13-256-3 sign \x9E88 1-34-4 sign \x9E89 13-2345-3 sign \x9E8A 134-16-2 sign \x9E8B 134-16-2 sign \x9E8C 1256-4 sign \x9E8D 14-234-2 sign \x9E8E 12-136-2 sign \x9E8F 13-256-3 sign \x9E90 14-1456-2 sign \x9E91 134-16-2 sign \x9E92 245-16-2 sign \x9E93 14-34-5 sign \x9E94 13-234-5 sign \x9E95 13-256-3 sign \x9E96 13-13456-3 sign \x9E97 14-16-5 sign \x9E98 15-46-3 sign \x9E99 15-2345-2 sign \x9E9A 13-23456-3 sign \x9E9B 134-16-2 sign \x9E9C 14-16-5 sign \x9E9D 24-2346-5 sign \x9E9E 1-1346-3 sign \x9E9F 14-1456-2 sign \x9EA0 13-13456-3 sign \x9EA1 13-16-3 sign \x9EA2 14-13456-2 sign \x9EA3 2345-2 sign \x9EA4 245-34-3 sign \x9EA5 134-2456-5 sign \x9EA6 134-2456-5 sign \x9EA7 13-2346-3 sign \x9EA8 12-146-4 sign \x9EA9 12345-34-3 sign \x9EAA 134-2345-5 sign \x9EAB 134-2345-4 sign \x9EAC 12345-34-3 sign \x9EAD 1234-146-5 sign \x9EAE 245-1256-5 sign \x9EAF 245-1256-2 sign \x9EB0 134-12356-2 sign \x9EB1 12345-34-3 sign \x9EB2 15-2345-5 sign \x9EB3 14-2456-2 sign \x9EB4 245-1256-2 sign \x9EB5 134-2345-5 sign \x9EB6 135-345-1 sign \x9EB7 12345-1356-3 sign \x9EB8 12345-34-3 sign \x9EB9 245-1256-2 sign \x9EBA 134-2345-5 sign \x9EBB 134-345-2 sign \x9EBC 134-2346-1 sign \x9EBD 134-126-1 sign \x9EBE 1235-1246-3 sign \x9EC0 125-12356-3 sign \x9EC1 1345-136-3 sign \x9EC2 12345-136-2 sign \x9EC3 1235-456-2 sign \x9EC4 1235-456-2 sign \x9EC5 13-1456-3 sign \x9EC6 13-456-3 sign \x9EC7 124-2345-3 sign \x9EC8 124-12356-4 sign \x9EC9 1235-1356-2 sign \x9ECA 15-16-3 sign \x9ECB 123-456-4 sign \x9ECC 1235-1356-2 sign \x9ECD 24-34-4 sign \x9ECE 14-16-2 sign \x9ECF 1345-2345-2 sign \x9ED0 14-16-2 sign \x9ED1 1235-356-3 sign \x9ED2 1235-356-3 sign \x9ED3 16-5 sign \x9ED4 245-2345-2 sign \x9ED5 145-1236-4 sign \x9ED6 15-16-5 sign \x9ED7 124-12456-4 sign \x9ED8 134-126-5 sign \x9ED9 134-126-5 sign \x9EDA 245-2345-2 sign \x9EDB 145-2456-5 sign \x9EDC 12-34-5 sign \x9EDD 234-4 sign \x9EDE 145-2345-4 sign \x9EDF 16-3 sign \x9EE0 15-23456-2 sign \x9EE1 2345-4 sign \x9EE2 245-1256-3 sign \x9EE3 134-356-4 sign \x9EE4 1236-4 sign \x9EE5 245-13456-2 sign \x9EE6 1256-5 sign \x9EE7 14-16-2 sign \x9EE8 145-1346-4 sign \x9EE9 145-34-2 sign \x9EEA 245-1236-4 sign \x9EEB 1456-3 sign \x9EEC 1236-5 sign \x9EED 1236-4 sign \x9EEE 124-1236-4 sign \x9EEF 1236-5 sign \x9EF0 1-136-4 sign \x9EF1 145-2456-5 sign \x9EF2 245-1236-4 sign \x9EF3 16-3 sign \x9EF4 134-356-2 sign \x9EF5 145-1236-4 sign \x9EF6 2345-4 sign \x9EF7 145-34-2 sign \x9EF8 14-34-2 sign \x9EF9 1-156-4 sign \x9EFA 12345-136-4 sign \x9EFB 12345-34-2 sign \x9EFC 12345-34-4 sign \x9EFD 134-1456-4 sign \x9EFE 134-1456-4 sign \x9EFF 45-2 sign \x9F00 245-234-3 sign \x9F01 245-1256-5 sign \x9F02 12-146-2 sign \x9F03 35-3 sign \x9F04 1-34-3 sign \x9F05 1-156-3 sign \x9F06 134-1346-2 sign \x9F07 146-2 sign \x9F08 135-346-3 sign \x9F09 124-25-2 sign \x9F0A 135-16-5 sign \x9F0B 45-2 sign \x9F0C 1-146-5 sign \x9F0D 124-25-2 sign \x9F0E 145-13456-4 sign \x9F0F 134-16-5 sign \x9F10 1345-2456-5 sign \x9F11 145-13456-4 sign \x9F12 125-156-3 sign \x9F13 13-34-4 sign \x9F14 13-34-4 sign \x9F15 124-12346-2 sign \x9F16 12345-136-2 sign \x9F17 124-146-2 sign \x9F18 45-3 sign \x9F19 1234-16-2 sign \x9F1A 12-1346-3 sign \x9F1B 13-146-3 sign \x9F1C 245-16-5 sign \x9F1D 45-3 sign \x9F1E 124-1346-3 sign \x9F1F 124-1356-3 sign \x9F20 24-34-4 sign \x9F21 24-34-4 sign \x9F22 12345-136-2 sign \x9F23 12345-356-5 sign \x9F24 123456-5 sign \x9F25 135-345-2 sign \x9F26 145-246-3 sign \x9F27 124-25-2 sign \x9F28 1-12346-3 sign \x9F29 245-1256-2 sign \x9F2A 24-1356-3 sign \x9F2B 24-156-2 sign \x9F2C 234-5 sign \x9F2D 24-156-2 sign \x9F2E 124-13456-2 sign \x9F2F 34-2 sign \x9F30 135-356-5 sign \x9F31 13-13456-3 sign \x9F32 1235-123456-2 sign \x9F33 13-1256-2 sign \x9F34 2345-4 sign \x9F35 124-34-2 sign \x9F36 15-156-3 sign \x9F37 15-16-3 sign \x9F38 245-2345-4 sign \x9F39 2345-4 sign \x9F3A 14-356-2 sign \x9F3B 135-16-2 sign \x9F3C 246-4 sign \x9F3D 245-234-2 sign \x9F3E 1235-1236-3 sign \x9F3F 34-3 sign \x9F40 34-5 sign \x9F41 1235-12356-3 sign \x9F42 15-16-5 sign \x9F43 1235-2346-2 sign \x9F44 1-345-3 sign \x9F45 15-234-5 sign \x9F46 12346-5 sign \x9F47 1-345-3 sign \x9F48 1345-12346-2 sign \x9F49 1345-1346-5 sign \x9F4A 245-16-2 sign \x9F4B 1-2456-3 sign \x9F4C 13-16-5 sign \x9F4D 125-156-3 sign \x9F4E 13-16-3 sign \x9F4F 13-16-3 sign \x9F50 245-16-2 sign \x9F51 13-16-3 sign \x9F52 12-156-4 sign \x9F53 12-136-5 sign \x9F54 12-136-4 sign \x9F55 1235-2346-2 sign \x9F56 23456-2 sign \x9F57 1456-2 sign \x9F58 15-346-5 sign \x9F59 1234-146-2 sign \x9F5A 245-25-5 sign \x9F5B 15-346-5 sign \x9F5C 125-156-3 sign \x9F5D 12-156-3 sign \x9F5E 1345-2345-4 sign \x9F5F 13-1256-4 sign \x9F60 124-246-2 sign \x9F61 14-13456-2 sign \x9F62 14-13456-2 sign \x9F63 12-34-3 sign \x9F64 245-45-2 sign \x9F65 15-346-5 sign \x9F66 1456-2 sign \x9F67 1345-346-5 sign \x9F68 13-234-5 sign \x9F69 246-4 sign \x9F6A 12-25-5 sign \x9F6B 1345-136-4 sign \x9F6C 1256-4 sign \x9F6D 12-34-4 sign \x9F6E 16-4 sign \x9F6F 1345-16-2 sign \x9F70 1-345-5 sign \x9F71 125-12356-3 sign \x9F72 245-1256-4 sign \x9F73 1345-136-4 sign \x9F74 2345-4 sign \x9F75 12356-2 sign \x9F76 2346-5 sign \x9F77 25-5 sign \x9F78 16-5 sign \x9F79 12-25-3 sign \x9F7A 125-12356-3 sign \x9F7B 145-2345-3 sign \x9F7C 12-34-4 sign \x9F7D 13-1456-5 sign \x9F7E 23456-5 sign \x9F7F 12-156-4 sign \x9F80 12-136-4 sign \x9F81 1235-2346-2 sign \x9F82 1456-2 sign \x9F83 13-1256-4 sign \x9F84 14-13456-2 sign \x9F85 1234-146-2 sign \x9F86 124-246-2 sign \x9F87 125-156-3 sign \x9F88 1456-2 sign \x9F89 1256-4 sign \x9F8A 12-25-5 sign \x9F8B 245-1256-4 sign \x9F8C 25-5 sign \x9F8D 14-12346-2 sign \x9F8E 1234-1346-2 sign \x9F8F 13-12346-3 sign \x9F90 1234-1346-2 sign \x9F91 2345-4 sign \x9F92 145-12346-2 sign \x9F93 14-12346-2 sign \x9F94 13-12346-3 sign \x9F95 123-1236-3 sign \x9F96 124-345-5 sign \x9F97 14-13456-2 sign \x9F98 124-345-5 sign \x9F99 14-12346-2 sign \x9F9A 13-12346-3 sign \x9F9B 123-1236-3 sign \x9F9C 13-1246-3 sign \x9F9D 245-234-3 sign \x9F9E 135-346-3 sign \x9F9F 13-1246-3 sign \x9FA0 236-5 sign \x9FA1 12-1246-5 sign \x9FA2 1235-2346-2 sign \x9FA3 13-236-2 sign \x9FA4 15-346-2 sign \x9FA5 1256-5 sign \x9FB0 235678-23467 sign \x9FB1 235678-34567 sign \x9FC3 24-1236-4 sign \xE00C 14-34-5 sign \xE074 123-123456-3 sign \xE08A 13-246-3 sign \xE127 15-256-5 sign \xE171 245-156-2 sign \xE18C 12356-17-23456 sign \xE18D 12356-127-23456 sign \xE18E 12356-147-23456 sign \xE18F 12356-1457-23456 sign \xE219 124-345-5 sign \xE372 245-46-3 sign \xE450 12-34-2 sign \xE934 13-1256-4 sign \xE9CB 245-156-2 sign \xEB03 124-2456-5 sign \xEB11 15-1246-5 sign \xEB3F 24-34-5 sign \xEB55 15-16-3 sign \xEB76 145-345-1 sign \xEBB9 13-1456-5 sign \xEC41 24-2356-3 sign \xEC5D 1456-3 sign \xED84 135-126-2 sign \xEDED 15-234-3 sign \xEE56 1345-1236-2 sign \xF455 12345-1356-4 sign \xF6B1 378-23467 sign \xF6B2 378-12467 sign \xF6B3 378-34567 sign \xF6B4 378-1467 sign \xF6B5 378-123467 sign \xF6B6 378-1567 sign \xF6B7 378-357 sign \xF6B8 378-57 sign \xF6B9 378-23567 sign \xF6BA 378-8 sign \xF6BB 12356-2-23456 sign \xF6BC 12356-23-23456 sign \xF6BD 12356-25-23456 sign \xF6BE 12356-256-23456 sign \xF6BF 12356-26-23456 sign \xF6C0 12356-235-23456 sign \xF6C1 12356-2356-23456 sign \xF6C2 12356-236-23456 sign \xF6C3 12356-35-23456 sign \xF6C4 12356-2-356-23456 sign \xF6C5 247 sign \xF6C6 247-247 sign \xF6C7 247-247-247 sign \xF6C8 247-12367 sign \xF6C9 12367 sign \xF6CA 12367-247 sign \xF6CB 12367-247-247 sign \xF6CC 12367-247-247-247 sign \xF6CD 247-13467 sign \xF6CE 13467 sign \xF6CF 378-14567 sign \xF6D0 1234-346-4 sign \xF6D1 378-1678 sign \xF6D2 124-12356-2 sign \xF6D3 13-235-3 sign \xF6D4 134-16-5 sign \xF6D5 135-13456-3 sign \xF6D6 135-146-3 sign \xF6D7 15-16-5 sign \xF6D8 13-346-2 sign \xF6D9 378-12678 sign \xF6DA 378-2378 sign \xF6DB 134-2345-2 sign \xF6DC 378-23678 sign \xF6DD 378-14678 sign \xF6DE 2345-4 sign \xF6DF 378-1235678 sign \xF6E0 378-678 sign \xF6E1 24-1236-3 sign \xF6E2 1234-34-3 sign \xF6E3 378-145678 sign \xF6E4 12-456-2 sign \xF6E5 135-126-3 sign \xF6E6 12-25-5 sign \xF6E7 378-167 sign \xF6E8 1-2346-1 sign \xF6E9 378-35678 sign \xF6EA 378-15678 sign \xF6EB 378-2678 sign \xF6EC 378-2345678 sign \xF6ED 378-124678 sign \xF6EE 378-3678 sign \xF6EF 378-345678 sign \xF6F0 378-2358 sign \xF6F1 378-168 sign \xF6F2 378-28 sign \xF6F3 378-58 sign \xF6F4 378-123468 sign \xF6F5 378-3458 sign \xF6F6 378-38 sign \xF6F7 378-3468 sign \xF6F8 378-23568 sign \xF6F9 378-1268 sign \xF6FA 378-238 sign \xF6FB 378-1234568 sign \xF6FC 378-2368 sign \xF6FD 378-1468 sign \xF6FE 378-258 sign \xF6FF 378-123568 sign \xF700 378-68 sign \xF701 378-468 sign \xF702 378-358 sign \xF703 378-14568 sign \xF704 378-2568 sign \xF705 378-568 sign \xF706 378-23468 sign \xF707 378-347 sign \xF708 378-348 sign \xF709 378-3568 sign \xF70A 378-1568 sign \xF70B 378-268 sign \xF70C 378-234568 sign \xF70D 378-12468 sign \xF70E 378-368 sign \xF70F 34678-47 sign \xF710 34678-17 sign \xF711 34678-127 sign \xF712 34678-147 sign \xF713 34678-1457 sign \xF714 34678-157 sign \xF715 34678-1247 sign \xF716 34678-12457 sign \xF717 34678-1257 sign \xF718 34678-247 sign \xF719 34678-2457 sign \xF71A 34678-137 sign \xF71B 34678-1237 sign \xF71C 34678-1347 sign \xF71D 34678-13457 sign \xF71E 34678-1357 sign \xF71F 34678-12347 sign \xF720 34678-123457 sign \xF721 34678-12357 sign \xF722 34678-2347 sign \xF723 34678-23457 sign \xF724 34678-1367 sign \xF725 34678-12367 sign \xF726 34678-24567 sign \xF727 34678-13467 sign \xF728 34678-134567 sign \xF729 34678-13567 sign \xF72A 34678-2467 sign \xF72B 34678-12567 sign \xF72C 34678-124567 sign \xF72D 34678-457 sign \xF72E 34678-456 sign \xF72F 34678-4 sign \xF730 34678-1 sign \xF731 34678-12 sign \xF732 34678-14 sign \xF733 34678-145 sign \xF734 34678-15 sign \xF735 34678-124 sign \xF736 34678-1245 sign \xF737 34678-125 sign \xF738 34678-24 sign \xF739 34678-245 sign \xF73A 34678-13 sign \xF73B 34678-123 sign \xF73C 34678-134 sign \xF73D 34678-1345 sign \xF73E 34678-135 sign \xF73F 34678-1234 sign \xF740 34678-12345 sign \xF741 34678-1235 sign \xF742 34678-234 sign \xF743 34678-2345 sign \xF744 34678-136 sign \xF745 34678-1236 sign \xF746 34678-2456 sign \xF747 34678-1346 sign \xF748 34678-13456 sign \xF749 34678-1356 sign \xF74A 34678-246 sign \xF74B 34678-1256 sign \xF74C 34678-12456 sign \xF74D 34678-45 sign \xF74E 34678-23467 sign \xF74F 34678-12467 sign \xF750 34678-34567 sign \xF751 34678-1467 sign \xF752 34678-123467 sign \xF753 34678-1567 sign \xF754 34678-357 sign \xF755 34678-57 sign \xF756 34678-23567 sign \xF757 34678-8 sign \xF758 34678-1267 sign \xF759 34678-2567 sign \xF75A 34678-367 sign \xF75B 34678-2367 sign \xF75C 34678-267 sign \xF75D 34678-3567 sign \xF75E 34678-3467 sign \xF75F 34678-237 sign \xF760 34678-257 sign \xF761 34678-37 sign \xF762 34678-567 sign \xF763 34678-2357 sign \xF764 34678-467 sign \xF765 34678-67 sign \xF766 34678-27 sign \xF767 34678-7 sign \xF768 34678-3457 sign \xF769 34678-123567 sign \xF76A 34678-1234567 sign \xF76B 34678-234567 sign \xF76C 34678-14567 sign \xF76D 34678-23578 sign \xF76E 34678-1678 sign \xF76F 34678-278 sign \xF770 34678-578 sign \xF771 34678-1234678 sign \xF772 34678-34578 sign \xF773 34678-378 sign \xF774 34678-34678 sign \xF775 34678-235678 sign \xF776 34678-12678 sign \xF777 34678-2378 sign \xF778 34678-12345678 sign \xF779 34678-23678 sign \xF77A 34678-14678 sign \xF77B 34678-2578 sign \xF77C 34678-1235678 sign \xF77D 34678-678 sign \xF77E 34678-4678 sign \xF77F 34678-3578 sign \xF780 34678-145678 sign \xF781 34678-25678 sign \xF782 34678-5678 sign \xF783 34678-234678 sign \xF784 34678-167 sign \xF785 34678-3478 sign \xF786 34678-35678 sign \xF787 34678-15678 sign \xF788 34678-2678 sign \xF789 34678-2345678 sign \xF78A 34678-124678 sign \xF78B 34678-3678 sign \xF78C 34678-345678 sign \xF78D 34678-2358 sign \xF78E 34678-168 sign \xF78F 34678-28 sign \xF790 34678-58 sign \xF791 34678-123468 sign \xF792 34678-3458 sign \xF793 34678-38 sign \xF794 34678-3468 sign \xF795 34678-23568 sign \xF796 34678-1268 sign \xF797 34678-238 sign \xF798 34678-1234568 sign \xF799 34678-2368 sign \xF79A 34678-1468 sign \xF79B 34678-258 sign \xF79C 34678-123568 sign \xF79D 34678-68 sign \xF79E 34678-468 sign \xF79F 34678-358 sign \xF7A0 34678-14568 sign \xF7A1 34678-2568 sign \xF7A2 34678-568 sign \xF7A3 34678-23468 sign \xF7A4 34678-347 sign \xF7A5 34678-348 sign \xF7A6 34678-3568 sign \xF7A7 34678-1568 sign \xF7A8 34678-268 sign \xF7A9 34678-234568 sign \xF7AA 34678-12468 sign \xF7AB 34678-368 sign \xF7AC 235678-47 sign \xF7AD 235678-17 sign \xF7AE 235678-127 sign \xF7AF 235678-147 sign \xF7B0 235678-1457 sign \xF7B1 235678-157 sign \xF7B2 235678-1247 sign \xF7B3 235678-12457 sign \xF7B4 235678-1257 sign \xF7B5 235678-247 sign \xF7B6 235678-2457 sign \xF7B7 235678-137 sign \xF7B8 235678-1237 sign \xF7B9 235678-1347 sign \xF7BA 235678-13457 sign \xF7BB 235678-1357 sign \xF7BC 235678-12347 sign \xF7BD 235678-123457 sign \xF7BE 235678-12357 sign \xF7BF 235678-2347 sign \xF7C0 235678-23457 sign \xF7C1 235678-1367 sign \xF7C2 235678-12367 sign \xF7C3 235678-24567 sign \xF7C4 235678-13467 sign \xF7C5 235678-134567 sign \xF7C6 235678-13567 sign \xF7C7 235678-2467 sign \xF7C8 235678-12567 sign \xF7C9 235678-124567 sign \xF7CA 235678-457 sign \xF7CB 235678-456 sign \xF7CC 235678-4 sign \xF7CD 235678-1 sign \xF7CE 235678-12 sign \xF7CF 235678-14 sign \xF7D0 235678-145 sign \xF7D1 235678-15 sign \xF7D2 235678-124 sign \xF7D3 235678-1245 sign \xF7D4 235678-125 sign \xF7D5 235678-24 sign \xF7D6 235678-245 sign \xF7D7 235678-13 sign \xF7D8 235678-123 sign \xF7D9 235678-134 sign \xF7DA 235678-1345 sign \xF7DB 235678-135 sign \xF7DC 235678-1234 sign \xF7DD 235678-12345 sign \xF7DE 235678-1235 sign \xF7DF 235678-234 sign \xF7E0 235678-2345 sign \xF7E1 235678-136 sign \xF7E2 235678-1236 sign \xF7E3 235678-2456 sign \xF7E4 235678-1346 sign \xF7E5 235678-13456 sign \xF7E6 235678-1356 sign \xF7E7 235678-246 sign \xF7E8 235678-1256 sign \xF7E9 235678-12456 sign \xF7EA 235678-45 sign \xF7EB 235678-23467 sign \xF7EC 235678-12467 sign \xF7ED 235678-34567 sign \xF7EE 235678-1467 sign \xF7EF 235678-123467 sign \xF7F0 235678-1567 sign \xF7F1 235678-357 sign \xF7F2 235678-57 sign \xF7F3 235678-23567 sign \xF7F4 235678-8 sign \xF7F5 235678-1267 sign \xF7F6 235678-2567 sign \xF7F7 235678-367 sign \xF7F8 235678-2367 sign \xF7F9 235678-267 sign \xF7FA 235678-3567 sign \xF7FB 235678-3467 sign \xF7FC 235678-237 sign \xF7FD 235678-257 sign \xF7FE 235678-37 sign \xF7FF 235678-567 sign \xF800 235678-2357 sign \xF801 235678-467 sign \xF802 235678-67 sign \xF803 235678-27 sign \xF804 235678-7 sign \xF805 235678-3457 sign \xF806 235678-123567 sign \xF807 235678-1234567 sign \xF808 235678-234567 sign \xF809 235678-14567 sign \xF80A 235678-23578 sign \xF80B 235678-1678 sign \xF80C 235678-278 sign \xF80D 235678-578 sign \xF80E 235678-1234678 sign \xF80F 235678-34578 sign \xF810 235678-378 sign \xF811 235678-34678 sign \xF812 235678-235678 sign \xF813 235678-12678 sign \xF814 235678-2378 sign \xF815 235678-12345678 sign \xF816 235678-23678 sign \xF817 235678-14678 sign \xF818 235678-2578 sign \xF819 235678-1235678 sign \xF81A 235678-678 sign \xF81B 235678-4678 sign \xF81C 235678-3578 sign \xF81D 235678-145678 sign \xF81E 235678-25678 sign \xF81F 235678-5678 sign \xF820 235678-234678 sign \xF821 235678-167 sign \xF822 235678-3478 sign \xF823 235678-35678 sign \xF824 235678-15678 sign \xF825 235678-2678 sign \xF826 235678-2345678 sign \xF827 235678-124678 sign \xF828 235678-3678 sign \xF829 235678-345678 sign \xF82A 235678-2358 sign \xF82B 235678-168 sign \xF82C 235678-28 sign \xF82D 235678-58 sign \xF82E 235678-123468 sign \xF82F 235678-3458 sign \xF830 235678-38 sign \xF831 235678-3468 sign \xF832 235678-23568 sign \xF833 235678-1268 sign \xF834 235678-238 sign \xF835 235678-1234568 sign \xF836 235678-2368 sign \xF837 235678-1468 sign \xF838 235678-258 sign \xF839 235678-123568 sign \xF83A 235678-68 sign \xF83B 235678-468 sign \xF83C 235678-358 sign \xF83D 235678-14568 sign \xF83E 235678-2568 sign \xF83F 235678-568 sign \xF840 235678-23468 sign \xF841 235678-347 sign \xF842 235678-348 sign \xF843 235678-3568 sign \xF844 235678-1568 sign \xF845 235678-268 sign \xF846 235678-234568 sign \xF847 235678-12468 sign \xF848 235678-368 sign \xF849 34567-28 sign \xF84A 34567-58 sign \xF84B 34567-123468 sign \xF84C 34567-3458 sign \xF84D 34567-38 sign \xF84E 34567-3468 sign \xF84F 34567-23568 sign \xF850 34567-1268 sign \xF851 34567-238 sign \xF852 34567-1234568 sign \xF853 34567-2368 sign \xF854 34567-1468 sign \xF855 34567-258 sign \xF856 34567-123568 sign \xF857 34567-68 sign \xF858 34567-468 sign \xF859 34567-358 sign \xF85A 34567-14568 sign \xF85B 34567-2568 sign \xF85C 34567-568 sign \xF85D 34567-23468 sign \xF85E 34567-347 sign \xF85F 34567-348 sign \xF860 34567-3568 sign \xF861 34567-1568 sign \xF862 34567-268 sign \xF863 34567-234568 sign \xF864 34567-12468 sign \xF865 34567-368 sign \xF866 378-3678 sign \xF867 378-345678 sign \xF900 245-16-4 sign \xF901 13-1356-5 sign \xF902 12-2346-3 sign \xF903 13-23456-4 sign \xF904 1235-35-2 sign \xF905 12-12456-5 sign \xF906 13-1256-5 sign \xF907 13-1246-3 sign \xF908 13-1246-3 sign \xF909 245-16-5 sign \xF90A 13-1456-3 sign \xF90B 14-345-4 sign \xF90C 1345-2456-5 sign \xF90D 14-1236-4 sign \xF90E 14-2456-5 sign \xF90F 14-25-2 sign \xF910 14-25-2 sign \xF911 14-25-2 sign \xF912 14-25-4 sign \xF913 14-25-2 sign \xF914 14-2346-5 sign \xF915 14-25-5 sign \xF916 14-25-5 sign \xF917 14-25-5 sign \xF918 14-25-5 sign \xF919 14-25-5 sign \xF91A 14-25-5 sign \xF91B 14-12456-5 sign \xF91C 14-12456-4 sign \xF91D 14-1236-2 sign \xF91E 14-1236-5 sign \xF91F 14-1236-2 sign \xF920 15-156-3 sign \xF921 14-1236-2 sign \xF922 14-1236-5 sign \xF923 14-1236-2 sign \xF924 14-1236-2 sign \xF925 14-345-3 sign \xF926 14-345-5 sign \xF927 14-345-5 sign \xF928 14-1346-2 sign \xF929 14-1346-4 sign \xF92A 14-1346-5 sign \xF92B 14-1346-2 sign \xF92C 14-1346-2 sign \xF92D 14-2456-2 sign \xF92E 14-1356-4 sign \xF92F 14-146-2 sign \xF930 14-34-4 sign \xF931 14-34-4 sign \xF932 14-34-2 sign \xF933 14-34-2 sign \xF934 14-146-4 sign \xF935 14-34-2 sign \xF936 14-34-4 sign \xF937 14-34-5 sign \xF938 14-34-5 sign \xF939 14-34-4 sign \xF93A 14-34-5 sign \xF93B 14-34-5 sign \xF93C 14-34-5 sign \xF93D 14-1256-5 sign \xF93E 14-34-5 sign \xF93F 14-34-5 sign \xF940 14-34-5 sign \xF941 14-123456-5 sign \xF942 14-12346-4 sign \xF943 1345-12346-5 sign \xF944 14-12346-2 sign \xF945 14-12346-2 sign \xF946 14-146-2 sign \xF947 14-356-4 sign \xF948 14-34-5 sign \xF949 14-356-2 sign \xF94A 14-356-4 sign \xF94B 14-1256-4 sign \xF94C 14-12356-2 sign \xF94D 14-356-5 sign \xF94E 14-12356-5 sign \xF94F 14-356-5 sign \xF950 14-1256-4 sign \xF951 14-12356-5 sign \xF952 14-2346-5 sign \xF953 14-2346-5 sign \xF954 14-1456-4 sign \xF955 14-13456-2 sign \xF956 14-1356-2 sign \xF957 14-13456-2 sign \xF958 14-13456-2 sign \xF959 14-13456-2 sign \xF95A 145-34-2 sign \xF95B 1345-345-2 sign \xF95C 14-2346-5 sign \xF95D 1345-25-5 sign \xF95E 145-1236-3 sign \xF95F 1345-13456-2 sign \xF960 1345-34-5 sign \xF961 14-1256-5 sign \xF962 16-5 sign \xF963 135-356-4 sign \xF964 1234-1236-2 sign \xF965 135-2345-5 sign \xF966 12345-34-5 sign \xF967 135-34-5 sign \xF968 134-16-5 sign \xF969 24-34-5 sign \xF96A 15-25-4 sign \xF96B 245-1236-3 sign \xF96C 15-2456-5 sign \xF96D 24-1356-4 sign \xF96E 346-5 sign \xF96F 24-25-3 sign \xF970 24-345-3 sign \xF971 12-136-2 sign \xF972 12-136-2 sign \xF973 24-156-2 sign \xF974 1245-25-5 sign \xF975 14-236-5 sign \xF976 14-236-5 sign \xF977 14-46-5 sign \xF978 14-46-4 sign \xF97A 14-46-2 sign \xF97B 14-46-2 sign \xF97C 14-46-2 sign \xF97D 14-46-5 sign \xF97E 14-46-5 sign \xF97F 14-16-5 sign \xF980 14-1256-4 sign \xF981 1345-1256-4 sign \xF982 14-34-2 sign \xF983 14-1256-4 sign \xF984 14-1256-5 sign \xF985 14-16-5 sign \xF986 14-1256-2 sign \xF987 14-16-2 sign \xF988 14-16-5 sign \xF989 14-16-2 sign \xF98A 14-16-5 sign \xF98B 14-16-5 sign \xF98C 14-16-5 sign \xF98D 14-16-5 sign \xF98E 1345-2345-2 sign \xF98F 14-2345-2 sign \xF990 14-2345-5 sign \xF991 1345-2345-4 sign \xF992 14-2345-2 sign \xF993 14-2345-5 sign \xF994 14-2345-4 sign \xF995 1345-2345-2 sign \xF996 14-2345-5 sign \xF997 14-2345-2 sign \xF998 1345-2345-4 sign \xF999 14-2345-2 sign \xF99A 14-2345-2 sign \xF99B 14-2345-5 sign \xF99C 14-346-5 sign \xF99D 14-346-5 sign \xF99E 2345-5 sign \xF99F 14-346-5 sign \xF9A0 14-346-5 sign \xF9A1 24-25-3 sign \xF9A2 14-2345-2 sign \xF9A3 1345-2345-5 sign \xF9A4 1345-2345-4 sign \xF9A5 14-2345-5 sign \xF9A6 14-2345-2 sign \xF9A7 14-346-5 sign \xF9A8 14-13456-5 sign \xF9A9 14-13456-2 sign \xF9AA 1345-13456-2 sign \xF9AB 14-13456-4 sign \xF9AC 14-13456-2 sign \xF9AD 14-13456-2 sign \xF9AE 13456-2 sign \xF9AF 14-13456-2 sign \xF9B0 14-13456-2 sign \xF9B1 14-13456-2 sign \xF9B2 14-13456-2 sign \xF9B3 14-13456-2 sign \xF9B4 14-13456-4 sign \xF9B5 14-16-5 sign \xF9B6 14-16-4 sign \xF9B7 14-16-4 sign \xF9B8 14-16-5 sign \xF9B9 2346-5 sign \xF9BA 14-2346-1 sign \xF9BB 14-246-2 sign \xF9BC 14-246-2 sign \xF9BD 1345-246-5 sign \xF9BE 14-246-5 sign \xF9BF 14-2346-5 sign \xF9C0 14-246-5 sign \xF9C1 14-246-2 sign \xF9C2 14-246-4 sign \xF9C3 14-246-2 sign \xF9C4 14-12346-2 sign \xF9C5 256-3 sign \xF9C6 1245-12456-4 sign \xF9C7 14-234-2 sign \xF9C8 12-12356-4 sign \xF9C9 14-234-4 sign \xF9CA 14-234-2 sign \xF9CB 14-234-3 sign \xF9CC 14-234-2 sign \xF9CD 14-234-2 sign \xF9CE 14-234-2 sign \xF9CF 1345-234-4 sign \xF9D0 14-356-5 sign \xF9D1 14-234-5 sign \xF9D2 14-34-5 sign \xF9D3 14-34-5 sign \xF9D4 14-123456-2 sign \xF9D5 14-123456-2 sign \xF9D6 14-123456-2 sign \xF9D7 14-123456-2 sign \xF9D8 14-1256-5 sign \xF9D9 14-16-5 sign \xF9DA 14-16-5 sign \xF9DB 14-1256-5 sign \xF9DC 14-12346-2 sign \xF9DD 14-16-5 sign \xF9DE 14-16-5 sign \xF9DF 14-1256-4 sign \xF9E0 16-5 sign \xF9E1 14-16-4 sign \xF9E2 14-16-2 sign \xF9E3 1345-16-2 sign \xF9E4 14-16-4 sign \xF9E5 14-16-5 sign \xF9E6 14-16-2 sign \xF9E7 14-16-4 sign \xF9E8 14-16-4 sign \xF9E9 14-16-4 sign \xF9EA 14-16-2 sign \xF9EB 1345-16-5 sign \xF9EC 1345-16-5 sign \xF9ED 14-1456-5 sign \xF9EE 14-1456-2 sign \xF9EF 14-1456-2 sign \xF9F0 14-1456-5 sign \xF9F2 14-1456-2 sign \xF9F3 14-1456-2 sign \xF9F4 14-1456-2 sign \xF9F5 14-1456-2 sign \xF9F6 14-1456-2 sign \xF9F7 14-16-5 sign \xF9F8 14-16-5 sign \xF9F9 14-16-5 sign \xF9FA 1-456-5 sign \xF9FB 1-156-5 sign \xF9FC 24-156-5 sign \xF9FD 24-156-2 sign \xF9FE 12-345-2 sign \xF9FF 245-156-5 sign \xFA00 245-346-5 sign \xFA01 145-34-5 sign \xFA02 124-25-5 sign \xFA03 124-1346-2 sign \xFA04 1-2456-2 sign \xFA05 145-12346-5 sign \xFA06 135-146-5 sign \xFA07 12345-34-2 sign \xFA08 15-13456-2 sign \xFA09 13-46-5 sign \xFA0A 13-2345-5 sign \xFA0B 123-25-5 sign \xFA0C 34-5 sign \xFA0D 1235-25-5 sign \xFA10 1-12346-4 sign \xFA12 245-13456-2 sign \xFA15 15-16-3 sign \xFA16 1-34-3 sign \xFA17 16-5 sign \xFA18 14-16-4 sign \xFA19 24-136-2 sign \xFA1A 15-46-2 sign \xFA1B 12345-34-2 sign \xFA1C 13-13456-5 sign \xFA1D 13-13456-3 sign \xFA1E 1256-4 sign \xFA22 1-34-3 sign \xFA25 16-5 sign \xFA26 145-12356-3 sign \xFA2A 12345-1236-5 sign \xFA2B 15-156-5 sign \xFA2C 13-12456-4 sign \xFA2D 1235-2346-5 sign \xFA30 34-4 sign \xFA31 15-1356-3 sign \xFA32 134-2345-4 sign \xFA33 134-2345-4 sign \xFA34 245-1456-2 sign \xFA35 135-356-3 sign \xFA36 1235-2346-3 sign \xFA37 124-1236-5 sign \xFA38 245-16-5 sign \xFA3A 134-126-5 sign \xFA3B 245-1356-2 sign \xFA3C 12-2346-5 sign \xFA3D 1235-1246-4 sign \xFA3E 123-2456-4 sign \xFA3F 125-1356-3 sign \xFA40 12-1356-2 sign \xFA41 134-1456-4 sign \xFA42 13-16-5 sign \xFA43 24-34-4 sign \xFA44 134-356-2 sign \xFA45 1235-2456-4 sign \xFA46 1-34-4 sign \xFA47 1235-1236-5 sign \xFA48 1-34-4 sign \xFA4A 1-25-2 sign \xFA4B 135-356-3 sign \xFA4C 24-2346-5 sign \xFA4D 1-156-4 sign \xFA4E 245-16-2 sign \xFA4F 234-5 sign \xFA50 125-34-4 sign \xFA51 1-34-5 sign \xFA52 1235-25-5 sign \xFA53 1-136-3 sign \xFA54 13-34-4 sign \xFA55 124-34-2 sign \xFA56 13-346-2 sign \xFA57 14-2345-5 sign \xFA58 13-1456-5 sign \xFA59 12345-1236-2 sign \xFA5A 24-34-4 sign \xFA5B 1-2346-4 sign \xFA5C 12-12356-5 sign \xFA5F 1-2346-1 sign \xFA60 1235-2346-2 sign \xFA61 24-156-5 sign \xFA62 346-5 sign \xFA63 13-1456-4 sign \xFA64 135-1456-3 sign \xFA65 125-1356-5 sign \xFA67 16-5 sign \xFA68 1345-1236-2 sign \xFA69 15-46-4 sign \xFA6A 1234-1456-2 sign \xFA70 135-13456-5 sign \xFA71 123-456-5 sign \xFA72 245-45-2 sign \xFA74 12-12346-3 sign \xFA75 13-16-5 sign \xFA76 235-4 sign \xFA78 1235-2346-3 sign \xFA79 124-146-2 sign \xFA7A 1235-1246-5 sign \xFA7C 1-12346-4 sign \xFA7D 12345-136-2 sign \xFA7E 2345-3 sign \xFA7F 135-136-3 sign \xFA80 135-16-5 sign \xFA84 245-2456-4 sign \xFA85 246-2 sign \xFA86 456-4 sign \xFA87 24-136-5 sign \xFA88 1256-5 sign \xFA89 125-1356-3 sign \xFA8A 146-5 sign \xFA8B 12-1356-2 sign \xFA8C 145-2456-5 sign \xFA8D 1256-2 sign \xFA8E 15-12356-3 sign \xFA8F 135-13456-5 sign \xFA90 146-2 sign \xFA91 245-13456-2 sign \xFA92 14-1346-4 sign \xFA93 456-5 sign \xFA94 1-1346-5 sign \xFA95 145-2456-4 sign \xFA96 24-345-3 sign \xFA97 14-234-2 sign \xFA98 1456-2 sign \xFA99 125-156-3 sign \xFA9A 1235-1236-5 sign \xFA9C 1-34-4 sign \xFA9D 245-246-2 sign \xFA9E 13-236-2 sign \xFA9F 12345-1236-5 sign \xFAA2 245-156-2 sign \xFAA5 123456-3 sign \xFAA6 16-5 sign \xFAA7 24-1356-5 sign \xFAA8 1-156-2 sign \xFAAA 1-2346-1 sign \xFAAD 13-346-2 sign \xFAAE 14-356-5 sign \xFAAF 124-146-3 sign \xFAB0 14-2345-5 sign \xFAB2 1-2346-4 sign \xFAB3 1235-456-3 sign \xFAB4 1235-35-2 sign \xFAB6 245-46-4 sign \xFAB7 12345-34-5 sign \xFAB8 24-156-5 sign \xFAB9 145-246-5 sign \xFABA 1-34-3 sign \xFABB 245-13456-4 sign \xFABC 346-5 sign \xFABD 1345-25-5 sign \xFABE 1256-5 sign \xFABF 13-1456-4 sign \xFAC0 135-2345-5 sign \xFAC1 125-1356-5 sign \xFAC2 24-34-3 sign \xFAC3 12-156-2 sign \xFAC6 1-34-4 sign \xFAC7 1345-1236-2 sign \xFAC8 13-13456-5 sign \xFACA 15-46-4 sign \xFACC 1234-1456-2 sign \xFACE 13-1246-3 sign \xFAD5 245-25-5 sign \xFAD7 13-346-2 sign \xFAD9 1234-1346-2 sign \xFE30 25-25 sign \xFE31 1256-0 sign \xFE33 456 sign \xFE34 45 sign \xFE35 246-0 sign \xFE36 135-0 sign \xFE37 246-0 sign \xFE38 12456-0 sign \xFE39 2467-0 sign \xFE3A 124567-0 sign \xFE3B 2467-0 sign \xFE3C 124567-0 sign \xFE3D 126-126 sign \xFE3E 345-345 sign \xFE3F 126 sign \xFE40 345 sign \xFE41 56-36 sign \xFE42 36-23 sign \xFE43 236-236 sign \xFE44 356-356 sign \xFE49 23467-378 sign \xFE4A 23467-34678 sign \xFE4B 23467-2378 sign \xFE4C 23467-12345678 sign \xFE4D 23467-235678 sign \xFE4E 23467-12678 sign \xFE4F 45 sign \xFE50 23-0 sign \xFE51 6-0 sign \xFE52 36-0 sign \xFE54 56-0 sign \xFE55 156-0 sign \xFE56 135-0 sign \xFE57 2346-0 sign \xFE59 12356 sign \xFE5A 23456 sign \xFE5B 246-0 sign \xFE5C 12456-0 sign \xFE5D 12346-0 sign \xFE5E 13456-0 sign \xFE5F 3456 sign \xFE60 456-12346 sign \xFE61 16 sign \xFE62 346 sign \xFE63 36 sign \xFE64 126 sign \xFE65 345 sign \xFE66 123456 sign \xFE68 12467-127 sign \xFE69 1246 sign \xFE6A 146 sign \xFE6B 47 sign \xFF01 123-0 sign \xFF02 235678-678 sign \xFF03 3456 sign \xFF04 1246 sign \xFF05 146 sign \xFF06 456-12346 sign \xFF07 235678-1235678 sign \xFF08 246-0 sign \xFF09 135-0 sign \xFF0A 4-3456 sign \xFF0B 346 sign \xFF0C 23-0 sign \xFF0D 36 sign \xFF0E 46-0 sign \xFF0F 34 sign \xFF10 356 sign \xFF11 2 sign \xFF12 23 sign \xFF13 25 sign \xFF14 256 sign \xFF15 26 sign \xFF16 235 sign \xFF17 2356 sign \xFF18 236 sign \xFF19 35 sign \xFF1A 25-25 sign \xFF1B 56-0 sign \xFF1C 126 sign \xFF1D 123456 sign \xFF1E 345 sign \xFF1F 1456-0 sign \xFF20 47 sign \xFF21 17 sign \xFF22 127 sign \xFF23 147 sign \xFF24 1457 sign \xFF25 157 sign \xFF26 1247 sign \xFF27 12457 sign \xFF28 1257 sign \xFF29 247 sign \xFF2A 2457 sign \xFF2B 137 sign \xFF2C 1237 sign \xFF2D 1347 sign \xFF2E 13457 sign \xFF2F 1357 sign \xFF30 12347 sign \xFF31 123457 sign \xFF32 12357 sign \xFF33 2347 sign \xFF34 23457 sign \xFF35 1367 sign \xFF36 12367 sign \xFF37 24567 sign \xFF38 13467 sign \xFF39 134567 sign \xFF3A 13567 sign \xFF3B 378-123468 sign \xFF3C 12567 sign \xFF3D 378-3458 sign \xFF3E 0-126 sign \xFF3F 36-0 sign \xFF40 3 sign \xFF41 1 sign \xFF42 12 sign \xFF43 14 sign \xFF44 145 sign \xFF45 15 sign \xFF46 124 sign \xFF47 1245 sign \xFF48 125 sign \xFF49 24 sign \xFF4A 245 sign \xFF4B 13 sign \xFF4C 123 sign \xFF4D 134 sign \xFF4E 1345 sign \xFF4F 135 sign \xFF50 1234 sign \xFF51 12345 sign \xFF52 1235 sign \xFF53 234 sign \xFF54 2345 sign \xFF55 136 sign \xFF56 1236 sign \xFF57 2456 sign \xFF58 1346 sign \xFF59 13456 sign \xFF5A 1356 sign \xFF5B 246-0 sign \xFF5C 1256-0 sign \xFF5D 12456-0 sign \xFF5E 45 sign \xFF61 235678-27 sign \xFF62 235678-7 sign \xFF63 235678-3457 sign \xFF64 6-0 sign \xFF65 235678-1234567 sign \xFF66 35 sign \xFF67 235678-14567 sign \xFF68 235678-23578 sign \xFF69 235678-1678 sign \xFF6A 235678-278 sign \xFF6B 235678-578 sign \xFF6C 235678-1234678 sign \xFF6D 235678-34578 sign \xFF6E 235678-378 sign \xFF6F 235678-34678 sign \xFF70 235678-235678 sign \xFF71 1 sign \xFF72 12 sign \xFF73 14 sign \xFF74 124 sign \xFF75 24 sign \xFF76 16 sign \xFF77 126 sign \xFF78 146 sign \xFF79 1246 sign \xFF7A 246 sign \xFF7B 156 sign \xFF7C 1256 sign \xFF7D 1456 sign \xFF7E 12456 sign \xFF7F 2456 sign \xFF80 135 sign \xFF81 1235 sign \xFF82 1345 sign \xFF83 12345 sign \xFF84 2345 sign \xFF85 13 sign \xFF86 123 sign \xFF87 134 sign \xFF88 1234 sign \xFF89 234 sign \xFF8A 136 sign \xFF8B 1236 sign \xFF8C 1346 sign \xFF8D 12346 sign \xFF8E 2346 sign \xFF8F 1356 sign \xFF90 12356 sign \xFF91 13456 sign \xFF92 123456 sign \xFF93 23456 sign \xFF94 346 sign \xFF95 34 sign \xFF96 345 sign \xFF97 15 sign \xFF98 125 sign \xFF99 145 sign \xFF9A 1245 sign \xFF9B 245 sign \xFF9C 3 sign \xFF9D 356 sign \xFF9E 235678-12468 sign \xFF9F 235678-368 sign \xFFE0 36-14-36 sign \xFFE1 36-1237-36 sign \xFFE2 235678-14678 sign \xFFE3 23467-578 sign \xFFE4 235678-2578 sign \xFFE5 134567-157-13457 sign \xFFE8 12467-1346 sign \xFFE9 1246-246-25-25 sign \xFFEA 1246-126-25-25-135 sign \xFFEB 1246-25-25-135 sign \xFFEC 1246-146-25-25-135 sign \xFFED 12345678-12345678 sign \xFFEE 14-13456-2 #Japanese characters always \x304d\x3083 4-16 always \x304d\x3085 4-146 always \x304d\x3087 4-246 always \x3057\x3083 4-156 always \x3057\x3085 4-1456 always \x3057\x3087 4-2456 always \x3061\x3083 4-135 always \x3061\x3085 4-1345 always \x3061\x3087 4-2345 always \x306b\x3083 4-13 always \x306b\x3085 4-134 always \x306b\x3087 4-234 always \x3072\x3083 4-136 always \x3072\x3085 4-1346 always \x3072\x3087 4-2346 always \x307f\x3083 4-1356 always \x307f\x3085 4-13456 always \x307f\x3087 4-23456 always \x308a\x3083 4-15 always \x308a\x3085 4-145 always \x308a\x3087 4-245 always \x304e\x3083 45-16 always \x304e\x3085 45-146 always \x304e\x3087 45-246 always \x3058\x3083 45-156 always \x3058\x3085 45-1456 always \x3058\x3087 45-2456 always \x3073\x3083 45-136 always \x3073\x3085 45-1346 always \x3073\x3087 45-2346 always \x3074\x3083 46-136 always \x3074\x3085 46-1346 always \x3074\x3087 46-2346 always \xff76\xff9e 5-16 always \xff77\xff9e 5-126 always \xff78\xff9e 5-146 always \xff79\xff9e 5-1246 always \xff7a\xff9e 5-246 always \xff7b\xff9e 5-156 always \xff7c\xff9e 5-1256 always \xff7d\xff9e 5-1456 always \xff7e\xff9e 5-12456 always \xff7f\xff9e 5-2456 always \xFF80\xFF9E 5-135 always \xff81\xff9e 5-1235 always \xff82\xff9e 5-1345 always \xff83\xff9e 5-12345 always \xff84\xff9e 5-2345 always \xff8a\xff9e 5-136 always \xff8b\xff9e 5-1236 always \xff8c\xff9e 5-1346 always \xff8d\xff9e 5-12346 always \xff8e\xff9e 5-2346 always \xff8a\xff9f 6-136 always \xff8b\xff9f 6-1236 always \xff8c\xff9f 6-1346 always \xff8d\xff9f 6-12346 always \xff8e\xff9f 6-2346 always \xff77\xff6c 4-16 always \xff77\xff6d 4-146 always \xff77\xff6e 4-246 always \xff7c\xff6c 4-156 always \xff7c\xff6d 4-1456 always \xff7c\xff6e 4-2456 always \xff81\xff6c 4-135 always \xff81\xff6d 4-1345 always \xff81\xff6e 4-2345 always \xff86\xff6c 4-13 always \xff86\xff6d 4-134 always \xff86\xff6e 4-234 always \xff8b\xff6c 4-136 always \xff8b\xff6d 4-1346 always \xff8b\xff6e 4-2346 always \xff90\xff6c 4-1356 always \xff90\xff6d 4-13456 always \xff90\xff6e 4-23456 always \xff98\xff6c 4-15 always \xff98\xff6d 4-145 always \xff98\xff6e 4-245 always \xFF77\xFF9E\xFF6C 45-16 always \xFF77\xFF9E\xFF6D 45-146 always \xFF77\xFF9E\xFF6E 45-246 always \xFF7C\xFF9E\xFF6C 45-156 always \xFF7C\xFF9E\xFF6D 45-1456 always \xFF7C\xFF9E\xFF6E 45-2456 always \xFF8B\xFF9E\xFF6C 45-136 always \xFF8B\xFF9E\xFF6D 45-1346 always \xFF8B\xFF9E\xFF6E 45-2346 always \xFF8B\xFF9F\xFF6C 46-136 always \xFF8B\xFF9F\xFF6D 46-1346 always \xFF8B\xFF9F\xFF6E 46-2346 #Chinese phrases always \x4e00\x4e86 16-3-14-246-4 always \x4e00\x5339 16-3-1234-16-4 always \x4e00\x64ae 16-3-245-25-5 always \x4e00\x64c1 16-3-235-3 always \x4e00\x66b4 16-3-1234-34-5 always \x4e00\x671d 16-3-1-146-3 always \x4e00\x8457 16-3-1-25-2 always \x4e00\x884c 16-3-1235-1346-2 always \x4e00\x89ba 16-3-13-246-5 always \x4e09\x66f4 15-1236-3-13-13456-3 always \x4e09\x7701 15-1236-3-15-13456-4 always \x4e09\x884c 15-1236-3-1235-1346-2 always \x4e09\x91cd 15-1236-3-12-12346-2 always \x4e0a\x4f9b 24-1346-5-13-12346-5 always \x4e0a\x5c07 24-1346-5-13-46-5 always \x4e0a\x7576 24-1346-5-145-1346-5 always \x4e0a\x76f8 24-1346-5-15-46-5 always \x4e0a\x8072 24-1346-4-24-1356-3 always \x4e0b\x5b50 15-23456-5-125-156-1 always \x4e0d\x4e2d 135-34-5-1-12346-5 always \x4e0d\x4e86 135-34-5-14-246-4 always \x4e0d\x52dd 135-34-5-24-1356-3 always \x4e0d\x7576 135-34-5-145-1346-5 always \x4e0d\x7701 135-34-5-15-13456-4 always \x4e0d\x7981 135-34-5-13-1456-3 always \x4e0d\x820d 135-34-5-24-2346-4 always \x4e0d\x8457 135-34-5-1-146-2 always \x4e0d\x963f 135-34-5-2346-3 always \x4e0d\x9bae 135-34-5-15-2345-4 always \x4e1e\x76f8 12-1356-2-15-46-5 always \x4e2d\x50b7 1-12346-5-24-1346-3 always \x4e2d\x610f 1-12346-5-16-5 always \x4e2d\x6691 1-12346-5-24-34-4 always \x4e2d\x6bd2 1-12346-5-145-34-2 always \x4e2d\x734e 1-12346-5-13-46-4 always \x4e2d\x80af 1-12346-5-123-136-4 always \x4e2d\x8209 1-12346-5-13-1256-4 always \x4e2d\x8a08 1-12346-5-13-16-5 always \x4e2d\x98a8 1-12346-5-12345-1356-3 always \x4e38\x5b50 12456-2-125-156-1 always \x4e3b\x5c07 1-34-4-13-46-5 always \x4e58\x8208 12-1356-2-15-13456-5 always \x4e7e\x5609 245-2345-2-13-23456-3 always \x4e7e\x5764 245-2345-2-123-123456-3 always \x4e7e\x9686 245-2345-2-14-12346-2 always \x4e82\x5b50 14-12456-5-125-156-1 always \x4e86\x4e86 14-246-4-14-246-4 always \x4e86\x4e8b 14-246-4-24-156-5 always \x4e86\x5f97 14-246-4-145-2346-2 always \x4e86\x609f 14-246-4-34-5 always \x4e86\x65b7 14-246-4-145-12456-5 always \x4e86\x7136 14-246-4-1245-1236-2 always \x4e86\x7d50 14-246-4-13-346-2 always \x4e86\x89e3 14-246-4-13-346-4 always \x4e94\x66f4 34-4-13-13456-3 always \x4ea4\x5377 13-246-3-13-45-5 always \x4ea4\x60e1 13-246-3-34-5 always \x4ea4\x81c2 13-246-3-135-16-5 always \x4ea4\x9084 13-246-3-1235-12456-2 always \x4eac\x90fd 13-13456-3-145-34-3 always \x4ead\x5b50 124-13456-2-125-156-1 always \x4eae\x76f8 14-46-5-15-46-5 always \x4eb6\x7236 145-1236-4-12345-34-4 always \x4eba\x53c3 1245-136-2-24-136-3 always \x4ec0\x4e48 24-2346-2-134-2346-1 always \x4ec0\x9ebc 24-2346-2-134-2346-1 always \x4f11\x5047 15-234-3-13-23456-5 always \x4f19\x5b50 1235-25-4-125-156-1 always \x4f3a\x5019 245-156-5-1235-12356-5 always \x4f4d\x5b50 1246-5-125-156-1 always \x4f5d\x50c2 123-12356-5-14-12356-2 always \x4f86\x964d 14-2456-2-15-46-2 always \x4f8b\x5047 14-16-5-13-23456-5 always \x4f8b\x5b50 14-16-5-125-156-1 always \x4f9b\x54c1 13-12346-5-1234-1456-4 always \x4f9b\x61c9 13-12346-3-13456-5 always \x4f9b\x684c 13-12346-5-1-25-3 always \x4f9b\x7d66 13-12346-3-13-16-4 always \x4f9b\x8a5e 13-12346-5-245-156-2 always \x4f9b\x990a 13-12346-5-46-5 always \x4f9d\x508d 16-3-135-1346-5 always \x4fbf\x5b9c 1234-2345-2-16-2 always \x4fe1\x5dee 15-1456-5-12-2456-3 always \x4fef\x755c 12345-34-4-15-1256-5 always \x4ff8\x7d66 12345-1356-5-13-16-4 always \x5009\x5352 245-1346-3-245-34-5 always \x5009\x9821 245-1346-3-13-346-2 always \x500b\x5b50 13-2346-5-125-156-1 always \x5014\x5f37 13-236-2-13-46-5 always \x5047\x65e5 13-23456-5-1245-156-5 always \x5047\x671f 13-23456-5-245-16-2 always \x504f\x597d 1234-2345-3-1235-146-5 always \x5065\x5c07 13-2345-5-13-46-5 always \x50b3\x8a18 1-12456-5-13-16-5 always \x5110\x76f8 135-1456-3-15-46-5 always \x5112\x5c07 1245-34-2-13-46-5 always \x511f\x9084 12-1346-2-1235-12456-2 always \x5141\x7576 256-4-145-1346-5 always \x5144\x9577 15-235-3-1-1346-4 always \x5145\x5206 12-12346-3-12345-136-5 always \x5145\x585e 12-12346-3-15-2346-5 always \x514b\x96e3 123-2346-5-1345-1236-5 always \x5152\x5b50 156-2-125-156-1 always \x5154\x5b50 124-34-5-125-156-1 always \x5165\x76f8 1245-34-5-15-46-5 always \x5167\x61c9 1345-356-5-13456-5 always \x5167\x76f8 1345-356-5-15-46-5 always \x5167\x7701 1345-356-5-15-13456-4 always \x5167\x884c 1345-356-5-1235-1346-2 always \x516c\x5dee 13-12346-3-12-2456-3 always \x516c\x64ae 13-12346-3-245-25-5 always \x5171\x8655 13-12346-5-12-34-4 always \x5178\x7576 145-2345-4-145-1346-5 always \x517c\x5dee 13-2345-3-12-2456-3 always \x518a\x5b50 245-2346-5-125-156-1 always \x51a0\x5195 13-12456-3-134-2345-4 always \x51a0\x84cb 13-12456-3-13-2456-5 always \x51b7\x85cf 14-1356-4-245-1346-2 always \x51f1\x6492 123-2456-4-15-345-3 always \x51f3\x5b50 145-1356-5-125-156-1 always \x51fa\x5c07 12-34-3-13-46-5 always \x51fa\x5dee 12-34-3-12-2456-3 always \x51fa\x6c92 12-34-3-134-126-5 always \x5200\x5b50 145-146-3-125-156-1 always \x5206\x5167 12345-136-5-1345-356-5 always \x5206\x5916 12345-136-5-2356-5 always \x5206\x5b50 12345-136-5-125-156-4 always \x5206\x884c 12345-136-3-1235-1346-2 always \x5206\x91cf 12345-136-5-14-46-5 always \x5207\x63db 245-346-3-1235-12456-5 always \x5207\x9664 245-346-3-12-34-2 always \x5217\x50b3 14-346-5-1-12456-5 always \x5228\x571f 1234-146-2-124-34-4 always \x5228\x5730 1234-146-2-145-16-5 always \x5228\x5b50 1234-146-2-125-156-1 always \x5237\x5b50 24-35-3-125-156-1 always \x524e\x8eca 24-345-5-12-2346-3 always \x524e\x90a3 12-345-5-1345-25-2 always \x525d\x524a 135-126-3-15-236-3 always \x526f\x5c07 12345-34-5-13-46-5 always \x5275\x75d5 12-456-3-1235-136-2 always \x52a9\x9577 1-34-5-1-1346-4 always \x52c7\x5c07 235-4-13-46-5 always \x52c9\x5f37 134-2345-4-245-46-4 always \x52d2\x5012 14-356-3-145-146-4 always \x52d2\x50b7 14-356-3-24-1346-3 always \x52d2\x660f 14-356-3-1235-123456-3 always \x52d2\x6b7b 14-356-3-15-156-4 always \x52d2\x75d5 14-356-3-1235-136-2 always \x52d5\x8108 145-12346-5-134-2456-5 always \x52dd\x4efb 24-1356-3-1245-136-5 always \x52dd\x6578 24-1356-3-24-34-4 always \x52de\x8ecd 14-146-5-13-256-3 always \x52f8\x964d 245-45-5-15-46-2 always \x52fa\x5b50 24-146-2-125-156-1 always \x52fb\x7a31 256-2-12-136-5 always \x52fe\x7576 13-12356-3-145-1346-5 always \x5305\x5b50 135-146-3-125-156-1 always \x5305\x85cf 135-146-3-245-1346-2 always \x5315\x898b 135-16-4-15-2345-5 always \x5316\x5b50 1235-35-3-125-156-1 always \x5317\x4f10 135-356-4-12345-345-3 always \x5323\x5b50 15-23456-2-125-156-1 always \x5339\x592b 1234-16-4-12345-34-3 always \x5339\x5a66 1234-16-4-12345-34-5 always \x5339\x6575 1234-16-4-145-16-2 always \x5339\x914d 1234-16-4-1234-356-5 always \x5340\x9577 245-1256-3-1-1346-4 always \x5341\x884c 24-156-2-1235-1346-2 always \x5343\x4e58 245-2345-3-24-1356-5 always \x5348\x89ba 34-4-13-246-5 always \x534a\x8f09 135-1236-5-125-2456-4 always \x5352\x5b50 125-34-2-125-156-1 always \x5353\x8457 1-25-2-1-34-5 always \x5354\x8abf 15-346-2-124-246-2 always \x5357\x7121 1345-1236-2-134-126-2 always \x5360\x535c 1-1236-3-135-34-4 always \x5360\x661f 1-1236-3-15-13456-3 always \x5371\x96e3 1246-2-1345-1236-5 always \x5377\x5b50 13-45-5-125-156-1 always \x5377\x5b97 13-45-5-125-12346-3 always \x537f\x76f8 245-13456-3-15-46-5 always \x539f\x8457 45-2-1-34-5 always \x53ad\x60e1 2345-5-34-5 always \x53bb\x8108 245-1256-5-134-2456-5 always \x53c3\x5546 24-136-3-24-1346-3 always \x53c3\x5c07 245-1236-3-13-46-5 always \x53c3\x5dee 245-136-3-245-156-3 always \x53c3\x8207 245-1236-3-1256-5 always \x53c9\x5b50 12-345-3-125-156-1 always \x53cd\x61c9 12345-1236-4-13456-5 always \x53cd\x76f8 12345-1236-4-15-46-5 always \x53cd\x7701 12345-1236-4-15-13456-4 always \x53cd\x9593 12345-1236-4-13-2345-5 always \x53d7\x964d 24-12356-5-15-46-2 always \x53d7\x96e3 24-12356-5-1345-1236-5 always \x53e3\x4f9b 123-12356-4-13-12346-5 always \x53e3\x5403 123-12356-4-13-16-2 always \x53e3\x5b50 123-12356-4-125-156-1 always \x53e4\x73a9 13-34-4-12456-5 always \x53e5\x5b50 13-1256-5-125-156-1 always \x53e5\x8e10 13-12356-3-13-2345-5 always \x53ef\x60e1 123-2346-4-34-5 always \x53ef\x6578 123-2346-4-24-34-4 always \x53ef\x6c57 123-2346-5-1235-1236-2 always \x53f0\x5b50 124-2456-2-125-156-1 always \x53f8\x9577 15-156-3-1-1346-4 always \x5404\x884c 13-2346-5-1235-1346-2 always \x5406\x559d 246-3-1235-2346-5 always \x540a\x5b50 145-246-5-125-156-1 always \x540d\x5206 134-13456-2-12345-136-5 always \x540d\x5c07 134-13456-2-13-46-5 always \x540d\x8457 134-13456-2-1-34-5 always \x5410\x8543 124-34-4-12345-1236-3 always \x541e\x6c92 124-123456-3-134-126-5 always \x5426\x6975 1234-16-4-13-16-2 always \x542b\x6df7 1235-1236-2-1235-123456-4 always \x5446\x5b50 145-2456-3-125-156-1 always \x544a\x5047 13-146-5-13-23456-5 always \x5462\x5462 1345-16-2-1345-16-2 always \x5462\x5583 1345-16-2-1345-1236-2 always \x5462\x7d68 1345-16-2-1245-12346-2 always \x547c\x61c9 1235-34-3-13456-5 always \x547d\x8108 134-13456-5-134-2456-5 always \x5486\x54ee 1234-146-2-15-246-3 always \x548b\x820c 125-2346-2-24-2346-2 always \x54b6\x566a 13-35-3-125-146-5 always \x54bd\x5589 2345-3-1235-12356-2 always \x54c0\x865f 2456-3-1235-146-2 always \x54c1\x884c 1234-1456-4-15-13456-5 always \x54c4\x9a19 1235-12346-4-1234-2345-5 always \x54c6\x55e6 145-25-3-15-25-3 always \x54c8\x5587 123-345-3-14-345-1 always \x54e8\x5b50 24-146-5-125-156-1 always \x54e9\x5695 14-16-3-14-34-3 always \x54ed\x865f 123-34-3-1235-146-2 always \x54ee\x5598 15-246-3-12-12456-4 always \x54fd\x54bd 13-1356-4-346-5 always \x5531\x548c 12-1346-5-1235-2346-5 always \x5546\x884c 24-1346-3-1235-1346-2 always \x5546\x8cc8 24-1346-3-13-34-4 always \x554f\x5377 123456-5-13-45-5 always \x555e\x5427 23456-4-135-345-3 always \x555e\x555e 23456-3-23456-3 always \x5580\x4ec0 123-345-5-24-156-2 always \x5580\x5427 123-345-3-135-345-3 always \x5581\x5581 1256-2-1256-2 always \x559c\x597d 15-16-4-1235-146-5 always \x559d\x91c7 1235-2346-5-245-2456-4 always \x55ae\x4e8e 12-1236-2-1256-2 always \x55ae\x5b50 145-1236-3-125-156-1 always \x55ce\x5561 134-345-4-12345-356-3 always \x55d3\x5b50 15-1346-4-125-156-1 always \x55da\x54bd 34-3-346-5 always \x55dc\x597d 24-156-5-1235-146-5 always \x5600\x5495 145-16-2-13-34-3 always \x5614\x5410 12356-4-124-34-5 always \x5614\x6c23 12356-5-245-16-5 always \x5629\x5566 1235-35-3-14-345-3 always \x5630\x54e9 13-16-3-14-16-3 always \x5641\x5fc3 2346-4-15-1456-3 always \x5668\x6a02 245-16-5-236-5 always \x5687\x963b 1235-2346-5-125-34-4 always \x56db\x884c 15-156-5-1235-1346-2 always \x56de\x61c9 1235-1246-2-13456-5 always \x56e0\x61c9 1456-3-13456-5 always \x56e0\x70ba 1456-3-1246-5 always \x56fa\x8457 13-34-5-1-25-2 always \x5708\x5b50 245-45-3-125-156-1 always \x570b\x6a02 13-25-2-236-5 always \x570b\x90fd 13-25-2-145-34-3 always \x570b\x96e3 13-25-2-1345-1236-5 always \x5718\x9577 124-12456-2-1-1346-4 always \x571f\x8457 124-34-4-1-34-5 always \x571f\x9577 124-34-4-1-1346-4 always \x5728\x884c 125-2456-5-1235-1346-2 always \x5730\x92ea 145-16-5-1234-34-5 always \x574e\x5777 123-1236-4-123-2346-4 always \x5750\x9a0e 125-25-5-13-16-5 always \x5766\x7387 124-1236-4-24-2356-5 always \x57cb\x6c92 134-2456-2-134-126-5 always \x57f7\x8457 1-156-2-1-25-2 always \x5831\x61c9 135-146-5-13456-5 always \x5834\x5408 12-1346-2-1235-2346-2 always \x5834\x9762 12-1346-2-134-2345-5 always \x585e\x4f4f 15-2456-3-1-34-5 always \x585e\x5b50 15-2456-3-125-156-1 always \x585e\x6eff 15-2456-3-134-1236-4 always \x585e\x7259 15-2456-3-23456-2 always \x588a\x5b50 145-2345-5-125-156-1 always \x589c\x5b50 1-1246-5-125-156-1 always \x589e\x9577 125-1356-3-1-1346-4 always \x58a8\x7fdf 134-126-5-145-16-2 always \x58c5\x585e 235-4-15-2346-5 always \x58e9\x5b50 135-345-5-125-156-1 always \x5916\x76f8 2356-5-15-46-5 always \x5916\x884c 2356-5-1235-1346-2 always \x5916\x9577 2356-5-1-1346-4 always \x591a\x91cd 145-25-3-12-12346-2 always \x5922\x9b58 134-1356-5-346-5 always \x5927\x5b9b 145-345-5-45-3 always \x5927\x5c07 145-345-5-13-46-5 always \x5927\x7387 145-345-5-24-2356-5 always \x5927\x96e3 145-345-5-1345-1236-5 always \x5929\x5206 124-2345-3-12345-136-5 always \x5929\x6daf 124-2345-3-26-2 always \x5929\x76f8 124-2345-3-15-46-5 always \x592a\x76e3 124-2456-5-13-2345-5 always \x592a\x884c 124-2456-5-1235-1346-2 always \x592b\x5dee 12345-34-3-12-2456-3 always \x592d\x6298 246-4-1-2346-2 always \x5931\x7576 24-156-3-145-1346-5 always \x5931\x8abf 24-156-3-124-246-2 always \x593e\x5b50 13-23456-2-125-156-1 always \x593e\x7e2b 13-23456-2-12345-1356-5 always \x5947\x6578 13-16-3-24-34-5 always \x5949\x9084 12345-1356-5-1235-12456-2 always \x5949\x990a 12345-1356-5-46-5 always \x594f\x6a02 125-12356-5-236-5 always \x596e\x81c2 12345-136-5-135-16-5 always \x5973\x5c07 1345-1256-4-13-46-5 always \x597d\x52d5 1235-146-5-145-12346-5 always \x597d\x52dd 1235-146-5-24-1356-5 always \x597d\x554f 1235-146-5-123456-5 always \x597d\x5947 1235-146-5-245-16-2 always \x597d\x60e1 1235-146-5-34-5 always \x597d\x6230 1235-146-5-1-1236-5 always \x597d\x8005 1235-146-5-1-2346-4 always \x597d\x9b25 1235-146-5-145-12356-5 always \x598a\x5a20 1245-136-5-24-136-3 always \x59a5\x7576 124-25-4-145-1346-5 always \x59ae\x5b50 1345-16-2-125-156-1 always \x59d4\x66f2 1246-4-245-1256-3 always \x59e8\x5b50 16-2-125-156-1 always \x59ea\x5b50 1-156-2-125-156-1 always \x5a01\x5687 1246-3-1235-2346-5 always \x5a03\x5a03 35-2-35-3 always \x5a1c\x5a1c 1345-25-4-1345-25-4 always \x5a40\x5a1c 2346-3-1345-25-4 always \x5a46\x5b50 1234-126-2-125-156-1 always \x5ac2\x5b50 15-146-4-125-156-1 always \x5acb\x5a1c 1345-246-4-1345-25-2 always \x5acc\x60e1 15-2345-2-34-5 always \x5ae1\x9577 145-16-2-1-1346-4 always \x5b0c\x5a03 13-246-3-35-3 always \x5b50\x5f48 125-156-4-145-1236-5 always \x5b57\x5e16 125-156-5-124-346-5 always \x5b5d\x990a 15-246-5-46-5 always \x5b69\x5b50 1235-2456-2-125-156-1 always \x5b6b\x5b50 15-123456-3-125-156-1 always \x5b78\x9577 15-236-2-1-1346-4 always \x5b85\x5b50 1-2456-2-125-156-1 always \x5b88\x5206 24-12356-4-12345-136-5 always \x5b88\x5c07 24-12356-4-13-46-5 always \x5b89\x5206 1236-3-12345-136-5 always \x5b8f\x90fd 1235-12346-2-145-34-3 always \x5b98\x9577 13-12456-3-1-1346-4 always \x5b9a\x7701 145-13456-5-15-13456-4 always \x5b9a\x90fd 145-13456-5-145-34-3 always \x5ba3\x52de 15-45-3-14-146-5 always \x5ba3\x5c0e 15-45-3-145-146-5 always \x5bb0\x76f8 125-2456-4-15-46-5 always \x5bb3\x81ca 1235-2456-5-15-146-5 always \x5bb6\x5b50 13-23456-3-125-156-1 always \x5bb6\x7576 13-23456-3-145-1346-5 always \x5bb6\x7d2f 13-23456-3-14-356-4 always \x5bb6\x9577 13-23456-3-1-1346-4 always \x5bd2\x5047 1235-1236-2-13-23456-5 always \x5be9\x5ea6 24-136-4-145-25-5 always \x5c07\x4ee4 13-46-5-14-13456-5 always \x5c07\x4f50 13-46-5-125-25-4 always \x5c07\x58eb 13-46-5-24-156-5 always \x5c07\x5b98 13-46-5-13-12456-3 always \x5c07\x5e25 13-46-5-24-2356-5 always \x5c07\x6750 13-46-5-245-2456-2 always \x5c07\x6821 13-46-5-15-246-5 always \x5c07\x76f8 13-46-5-15-46-5 always \x5c07\x9580 13-46-5-134-136-2 always \x5c07\x9818 13-46-5-14-13456-4 always \x5c08\x6a6b 1-12456-3-1235-1356-5 always \x5c08\x8457 1-12456-3-1-34-5 always \x5c0a\x9577 125-123456-3-1-1346-4 always \x5c0d\x61c9 145-1246-5-13456-5 always \x5c0d\x7a31 145-1246-5-12-136-5 always \x5c0e\x5f48 145-146-4-145-1236-5 always \x5c0e\x64ad 145-146-4-135-126-3 always \x5c0f\x50b3 15-246-4-1-12456-5 always \x5c11\x58ef 24-146-5-1-456-5 always \x5c11\x5973 24-146-5-1345-1256-4 always \x5c11\x5a66 24-146-5-12345-34-5 always \x5c11\x5b89 24-146-3-1236-3 always \x5c11\x5c07 24-146-5-13-46-5 always \x5c11\x5e74 24-146-5-1345-2345-2 always \x5c11\x5eb7 24-146-5-123-1346-3 always \x5c11\x6797 24-146-5-14-1456-2 always \x5c11\x723a 24-146-5-346-2 always \x5c31\x5f97 13-234-5-145-356-4 always \x5c3e\x5df4 16-4-135-345-3 always \x5c40\x9577 13-1256-2-1-1346-4 always \x5c4b\x5b50 34-3-125-156-1 always \x5c4f\x606f 135-13456-4-15-16-2 always \x5c4f\x9000 135-13456-4-124-1246-5 always \x5c91\x53c3 245-136-2-24-136-3 always \x5c94\x5b50 12-345-5-125-156-1 always \x5de1\x66f4 15-256-2-13-1356-3 always \x5de6\x50b3 125-25-4-1-12456-5 always \x5de8\x8457 13-1256-5-1-34-5 always \x5dee\x4e0d 12-345-5-135-34-5 always \x5dee\x4e8b 12-2456-3-24-156-5 always \x5dee\x4f7f 12-2456-3-24-156-4 always \x5dee\x5f79 12-2456-3-16-5 always \x5dee\x9063 12-2456-3-245-2345-4 always \x5dee\x9ede 12-345-5-145-2345-4 always \x5df4\x7b54 135-345-3-145-345-3 always \x5df7\x5b50 15-46-5-125-156-1 always \x5e02\x9577 24-156-5-1-1346-4 always \x5e03\x5339 135-34-5-1234-16-4 always \x5e16\x5b50 124-346-4-125-156-1 always \x5e2b\x9577 24-156-3-1-1346-4 always \x5e3d\x5b50 134-146-5-125-156-1 always \x5e4c\x5b50 1235-456-4-125-156-1 always \x5e6b\x5b50 135-1346-3-125-156-1 always \x5e72\x5c07 13-1236-3-13-46-5 always \x5e74\x5047 1345-2345-2-13-23456-5 always \x5e74\x5c11 1345-2345-2-24-146-5 always \x5e74\x9577 1345-2345-2-1-1346-4 always \x5e79\x561b 13-1236-5-134-345-2 always \x5e79\x9ebc 13-1236-5-134-345-2 always \x5e7e\x4e4e 13-16-3-1235-34-3 always \x5e8a\x92ea 12-456-2-1234-34-5 always \x5e94\x7528 13456-5-235-5 always \x5e95\x5b50 145-16-4-125-156-1 always \x5e97\x92ea 145-2345-5-1234-34-5 always \x5ea6\x5047 145-34-5-13-23456-5 always \x5ead\x9577 124-13456-2-1-1346-4 always \x5eda\x5b50 12-34-2-125-156-1 always \x5ee0\x9577 12-1346-4-1-1346-4 always \x5ef3\x9577 124-13456-3-1-1346-4 always \x5efa\x90fd 13-2345-5-145-34-3 always \x5f26\x6a02 15-2345-2-236-5 always \x5f37\x5236 245-46-4-1-156-5 always \x5f37\x5360 245-46-4-1-1236-5 always \x5f37\x5c07 245-46-2-13-46-5 always \x5f37\x5e79 245-46-4-13-1236-5 always \x5f37\x6a6b 245-46-2-1235-1356-5 always \x5f37\x6c42 245-46-4-245-234-2 always \x5f37\x8a18 245-46-4-13-16-5 always \x5f48\x4e38 145-1236-5-12456-2 always \x5f48\x5b50 145-1236-5-125-156-1 always \x5f48\x5f13 145-1236-5-13-12346-3 always \x5f48\x7121 145-1236-5-34-2 always \x5f48\x73e0 145-1236-5-1-34-3 always \x5f48\x75d5 145-1236-5-1235-136-2 always \x5f48\x76e1 145-1236-5-13-1456-5 always \x5f48\x85e5 145-1236-5-246-5 always \x5f48\x9053 145-1236-5-145-146-5 always \x5f48\x92cf 145-1236-5-13-23456-2 always \x5f48\x96e8 145-1236-5-1256-4 always \x5f48\x982d 145-1236-5-124-12356-2 always \x5f4c\x6492 134-16-2-15-345-3 always \x5f4e\x66f2 12456-3-245-1256-3 always \x5f71\x5b50 13456-4-125-156-1 always \x5f77\x5fa8 1234-1346-2-1235-456-2 always \x5f80\x9084 456-4-1235-12456-2 always \x5f81\x4f10 1-1356-3-12345-345-3 always \x5f98\x5f8a 1234-2456-2-1235-2356-2 always \x5fb7\x884c 145-2346-2-15-13456-5 always \x5fc5\x5f97 135-16-5-145-356-4 always \x5fc5\x61c9 135-16-5-13456-5 always \x5fd6\x5ea6 245-123456-4-145-25-5 always \x5fe0\x544a 1-12346-3-13-34-5 always \x600e\x4e48 125-136-4-134-2346-1 always \x6012\x865f 1345-34-5-1235-146-2 always \x601d\x6c57 15-156-3-1235-1236-2 always \x601d\x91cf 15-156-3-14-46-2 always \x6025\x96e3 13-16-2-1345-1236-5 always \x6027\x5b50 15-13456-5-125-156-1 always \x602f\x5834 245-236-5-12-1346-4 always \x602f\x61e6 245-236-5-1345-25-5 always \x6050\x5687 123-12346-4-1235-2346-5 always \x606b\x5687 145-12346-5-1235-2346-5 always \x6070\x7576 245-23456-5-145-1346-5 always \x60a3\x96e3 1235-12456-5-1345-1236-5 always \x60b6\x60b6 134-136-5-134-136-5 always \x60c5\x5206 245-13456-2-12345-136-5 always \x60e1\x52de 34-5-14-146-2 always \x60e1\x5c11 2346-5-24-146-5 always \x611b\x597d 2456-5-1235-146-5 always \x611f\x61c9 13-1236-4-13456-5 always \x6170\x52de 1246-5-14-146-5 always \x618e\x60e1 125-1356-3-34-5 always \x61c9\x4ed8 13456-5-12345-34-5 always \x61c9\x5141 13456-5-256-4 always \x61c9\x547d 13456-5-134-13456-5 always \x61c9\x548c 13456-5-1235-2346-2 always \x61c9\x5c0d 13456-5-145-1246-5 always \x61c9\x5fb5 13456-5-1-1356-3 always \x61c9\x63a5 13456-5-13-346-3 always \x61c9\x6642 13456-5-24-156-2 always \x61c9\x666f 13456-5-13-13456-4 always \x61c9\x6c42 13456-5-245-234-2 always \x61c9\x7528 13456-5-235-5 always \x61c9\x8003 13456-5-123-146-4 always \x61c9\x8072 13456-5-24-1356-3 always \x61c9\x8a31 13456-5-15-1256-4 always \x61c9\x8a66 13456-5-24-156-5 always \x61c9\x8b8a 13456-5-135-2345-5 always \x61c9\x904b 13456-5-256-5 always \x61c9\x9080 13456-5-246-3 always \x61c9\x916c 13456-5-12-12356-2 always \x61c9\x9a57 13456-5-2345-5 always \x61ca\x55aa 146-5-15-1346-5 always \x61ca\x6094 146-5-1235-1246-4 always \x61ca\x60f1 146-5-1345-146-4 always \x61f2\x8655 12-1356-2-12-34-4 always \x61f5\x61c2 134-1356-4-145-12346-4 always \x61f6\x6563 14-1236-4-15-1236-4 always \x6210\x5206 12-1356-2-12345-136-5 always \x6210\x90fd 12-1356-2-145-34-3 always \x6210\x9577 12-1356-2-1-1346-4 always \x6230\x5c07 1-1236-5-13-46-5 always \x6232\x5b50 15-16-5-125-156-1 always \x6232\x8b14 15-16-5-1345-236-5 always \x6236\x9577 1235-34-5-1-1346-4 always \x623f\x5b50 12345-1346-2-125-156-1 always \x6240\x8457 15-25-4-1-34-5 always \x6240\x9577 15-25-4-1-1346-4 always \x6241\x64d4 135-2345-4-145-1236-5 always \x6241\x821f 1234-2345-3-1-12356-3 always \x6241\x947d 135-2345-4-125-12456-5 always \x6247\x5b50 24-1236-5-125-156-1 always \x624b\x76f8 24-12356-4-15-46-5 always \x624e\x5be6 1-345-3-24-156-2 always \x624e\x624b 1-345-3-24-12356-4 always \x624e\x6839 1-345-3-13-136-3 always \x624e\x773c 1-345-3-2345-4 always \x624e\x91dd 1-345-3-1-136-3 always \x6253\x76f9 145-345-4-145-123456-4 always \x6263\x5b50 123-12356-5-125-156-1 always \x626d\x66f2 1345-234-4-245-1256-3 always \x626e\x76f8 135-1236-5-15-46-5 always \x627e\x8457 1-146-4-1-146-2 always \x6284\x6c92 12-146-3-134-126-5 always \x6295\x964d 124-12356-2-15-46-2 always \x62b9\x715e 134-126-4-24-345-3 always \x62bd\x7a7a 12-12356-3-123-12346-5 always \x62cd\x5b50 1234-2456-3-125-156-1 always \x62d4\x90fd 135-345-2-145-34-3 always \x62d7\x53e3 246-5-123-12356-4 always \x62d8\x6ce5 13-1256-3-1345-16-5 always \x62d9\x8457 1-25-2-1-34-5 always \x6307\x6458 1-156-4-1-2346-2 always \x6311\x5254 124-246-3-124-16-5 always \x6311\x5f04 124-246-4-1345-12346-5 always \x6311\x6230 124-246-4-1-1236-5 always \x6311\x64a5 124-246-4-135-126-3 always \x6311\x64d4 124-246-3-145-1236-5 always \x6311\x71c8 124-246-4-145-1356-3 always \x6311\x9017 124-246-4-145-12356-5 always \x6311\x91c1 124-246-4-15-1456-5 always \x632f\x81c2 1-136-5-135-16-5 always \x6383\x5e1a 15-146-5-1-12356-4 always \x6392\x6bd4 1234-2456-2-135-16-5 always \x6392\x884c 1234-2456-2-1235-1346-2 always \x6392\x9577 1234-2456-2-1-1346-4 always \x6399\x9322 1-1356-5-245-2345-2 always \x63a2\x5b50 124-1236-5-125-156-1 always \x63a5\x61c9 13-346-3-13456-5 always \x63a5\x7e2b 13-346-3-12345-1356-5 always \x63a8\x78e8 124-1246-3-134-126-5 always \x63a9\x6c92 2345-4-134-126-5 always \x63db\x884c 1235-12456-5-1235-1346-2 always \x63e3\x5ea6 12-2356-4-145-25-5 always \x63e9\x6cb9 123-2456-3-234-2 always \x63ed\x6aeb 13-346-2-1-34-3 always \x6416\x6643 246-2-1235-456-5 always \x642a\x585e 124-1346-2-15-2346-5 always \x645f\x9322 14-12356-3-245-2345-2 always \x6487\x5b50 1234-346-4-125-156-1 always \x6492\x4f46 15-345-3-145-1236-5 always \x6492\x5b0c 15-345-3-13-246-3 always \x6492\x5c3f 15-345-3-1345-246-5 always \x6492\x624b 15-345-3-24-12356-4 always \x6492\x817f 15-345-3-124-1246-4 always \x6492\x8b0a 15-345-3-1235-456-4 always \x6492\x8cf4 15-345-3-14-2456-5 always \x6492\x91ce 15-345-3-346-4 always \x6492\x958b 15-345-3-123-2456-3 always \x64ad\x6620 135-126-3-13456-5 always \x64ad\x97f3 135-126-3-1456-3 always \x64cd\x884c 245-146-3-15-13456-5 always \x64d4\x5b50 145-1236-5-125-156-1 always \x64f2\x9084 1-156-2-1235-12456-2 always \x6518\x5937 1245-1346-2-16-2 always \x6518\x596a 1245-1346-2-145-25-2 always \x6524\x5b50 124-1236-3-125-156-1 always \x6524\x9084 124-1236-3-1235-12456-2 always \x652a\x548c 13-246-4-1235-25-5 always \x6536\x85cf 24-12356-3-245-1346-2 always \x6539\x884c 13-2456-4-1235-1346-2 always \x653e\x5047 12345-1346-5-13-23456-5 always \x6548\x61c9 15-246-5-13456-5 always \x6551\x96e3 13-234-5-1345-1236-5 always \x6557\x8208 135-2456-5-15-13456-5 always \x6563\x5149 15-1236-4-13-456-3 always \x6563\x5175 15-1236-4-135-13456-3 always \x6563\x6587 15-1236-4-123456-2 always \x6563\x66f2 15-1236-4-245-1256-4 always \x6563\x6c99 15-1236-4-24-345-3 always \x6578\x4e00 24-34-4-16-3 always \x6578\x4e0d 24-34-4-135-34-5 always \x6578\x4e8c 24-34-4-156-5 always \x6578\x5178 24-34-4-145-2345-4 always \x6578\x6578 24-34-4-24-34-5 always \x6578\x843d 24-34-4-14-25-5 always \x6578\x8aaa 24-34-4-24-25-3 always \x6578\x9322 24-34-4-245-2345-2 always \x6587\x904e 123456-5-13-25-5 always \x6587\x98fe 123456-5-24-156-5 always \x6597\x91cf 145-12356-4-14-46-2 always \x6599\x4e2d 14-246-5-1-12346-5 always \x6599\x5b50 14-246-5-125-156-1 always \x65a7\x5b50 12345-34-4-125-156-1 always \x65c5\x9577 14-1256-4-1-1346-4 always \x65cb\x98a8 15-45-5-12345-1356-3 always \x65cf\x9577 125-34-2-1-1346-4 always \x65d7\x5b50 245-16-2-125-156-1 always \x65e5\x5b50 1245-156-5-125-156-1 always \x65e5\x6688 1245-156-5-256-5 always \x65e5\x6c92 1245-156-5-134-126-5 always \x6613\x50b3 16-5-1-12456-5 always \x661f\x5bbf 15-13456-3-15-234-5 always \x661f\x76f8 15-13456-3-15-46-5 always \x6625\x5047 12-123456-3-13-23456-5 always \x662d\x8457 1-146-3-1-34-5 always \x6641\x932f 12-146-2-245-25-5 always \x6643\x8166 1235-456-5-1345-146-4 always \x6643\x8569 1235-456-5-145-1346-5 always \x6687\x7d66 15-23456-2-13-16-4 always \x6691\x5047 24-34-4-13-23456-5 always \x6696\x548c 1345-12456-4-1235-25-1 always \x66b4\x9732 1234-34-5-14-34-5 always \x66f2\x5b50 245-1256-4-125-156-1 always \x66f2\x5c3a 245-1256-3-12-156-4 always \x66f2\x5ea6 245-1256-3-145-34-5 always \x66f2\x6298 245-1256-3-1-2346-2 always \x66f2\x66f2 245-1256-3-245-1256-3 always \x66f2\x6c83 245-1256-3-25-5 always \x66f2\x76f4 245-1256-3-1-156-2 always \x66f2\x7dda 245-1256-3-15-2345-5 always \x66f2\x89e3 245-1256-3-13-346-4 always \x66f2\x961c 245-1256-3-12345-34-5 always \x66f4\x4e8b 13-1356-3-24-156-5 always \x66f4\x52d5 13-1356-3-145-12346-5 always \x66f4\x540d 13-1356-3-134-13456-2 always \x66f4\x5f35 13-1356-3-1-1346-3 always \x66f4\x5f97 13-1356-5-145-356-4 always \x66f4\x63db 13-1356-3-1235-12456-5 always \x66f4\x6539 13-1356-3-13-2456-4 always \x66f4\x65b0 13-1356-3-15-1456-3 always \x66f4\x6613 13-1356-3-16-5 always \x66f4\x66ff 13-1356-3-124-16-5 always \x66f4\x6b63 13-1356-3-1-1356-5 always \x66f4\x751f 13-1356-3-24-1356-3 always \x66f4\x865f 13-1356-3-1235-146-5 always \x66f4\x8863 13-1356-3-16-3 always \x66f4\x8fed 13-1356-3-145-346-2 always \x66f8\x5377 24-34-3-13-45-5 always \x66f9\x53c3 245-146-2-24-136-3 always \x66fe\x53c3 125-1356-3-24-136-3 always \x66fe\x5b50 125-1356-3-125-156-4 always \x66fe\x5b6b 125-1356-3-15-123456-3 always \x66fe\x6c0f 125-1356-3-24-156-5 always \x66fe\x7956 125-1356-3-125-34-4 always \x66fe\x978f 125-1356-3-13-12346-4 always \x6703\x5152 1235-1246-4-156-3 always \x6703\x7a3d 13-1246-5-13-16-3 always \x6703\x8a08 123-2356-5-13-16-5 always \x6703\x9577 1235-1246-5-1-1346-4 always \x6708\x5b50 236-5-125-156-1 always \x6708\x6688 236-5-256-5 always \x6708\x7d2f 236-5-14-356-4 always \x6709\x5206 234-4-12345-136-5 always \x6709\x671d 234-4-1-146-3 always \x670d\x5e16 12345-34-2-124-346-3 always \x671d\x4e09 1-146-3-15-1236-3 always \x671d\x4e0d 1-146-3-135-34-5 always \x671d\x4ee4 1-146-3-14-13456-5 always \x671d\x5915 1-146-3-15-16-5 always \x671d\x66e6 1-146-3-15-16-3 always \x671d\x6703 1-146-3-1235-1246-5 always \x671d\x671d 1-146-3-1-146-3 always \x671d\x6c23 1-146-3-245-16-5 always \x671d\x767c 1-146-3-12345-345-3 always \x671d\x79e6 1-146-3-245-1456-2 always \x671d\x967d 1-146-3-46-2 always \x671d\x9732 1-146-3-14-34-5 always \x671f\x5e74 13-16-3-1345-2345-2 always \x671f\x6708 13-16-3-236-5 always \x671f\x670d 13-16-3-12345-34-2 always \x6728\x585e 134-34-5-15-2456-3 always \x672a\x4e86 1246-5-14-246-4 always \x672b\x4e86 134-126-5-14-246-4 always \x672c\x5206 135-136-4-12345-136-5 always \x672c\x5b50 135-136-4-125-156-1 always \x672c\x884c 135-136-4-1235-1346-2 always \x674e\x5b50 14-16-4-125-156-1 always \x6751\x5b50 245-123456-3-125-156-1 always \x6751\x9577 245-123456-3-1-1346-4 always \x676f\x5b50 135-356-3-125-156-1 always \x677e\x6fe4 15-12346-3-124-146-3 always \x679c\x5b50 13-25-4-125-156-1 always \x67af\x840e 123-34-3-1246-3 always \x67b6\x5b50 13-23456-5-125-156-1 always \x67da\x5b50 234-5-125-156-1 always \x67e5\x52d8 12-345-2-123-1236-5 always \x67f1\x5b50 1-34-5-125-156-1 always \x67fa\x5b50 13-2356-4-125-156-1 always \x67ff\x5b50 24-156-5-125-156-1 always \x6813\x585e 24-12456-3-15-2456-3 always \x6813\x5b50 24-12456-3-125-156-1 always \x6821\x52d8 13-246-5-123-1236-3 always \x6821\x5c0d 13-246-5-145-1246-5 always \x6821\x6b63 13-246-5-1-1356-5 always \x6821\x6e96 13-246-5-1-123456-4 always \x6821\x8a02 13-246-5-145-13456-5 always \x6821\x9577 15-246-5-1-1346-4 always \x6821\x95b1 13-246-5-236-5 always \x683c\x5b50 13-2346-2-125-156-1 always \x683d\x7a2e 125-2456-3-1-12346-5 always \x6843\x5b50 124-146-2-125-156-1 always \x6846\x5b50 123-456-3-125-156-1 always \x6848\x5377 1236-5-13-45-5 always \x6848\x5b50 1236-5-125-156-1 always \x684c\x5b50 1-25-3-125-156-1 always \x6876\x5b50 124-12346-4-125-156-1 always \x687f\x5b50 13-1236-4-125-156-1 always \x6885\x5b50 134-356-2-125-156-1 always \x6886\x5b50 135-1346-3-125-156-1 always \x6897\x585e 13-1356-4-15-2346-5 always \x689d\x5b50 124-246-2-125-156-1 always \x68af\x5b50 124-16-3-125-156-1 always \x68b3\x5b50 24-34-3-125-156-1 always \x68cd\x5b50 13-123456-5-125-156-1 always \x68d2\x559d 135-1346-5-1235-2346-5 always \x68d2\x5b50 135-1346-5-125-156-1 always \x68da\x5b50 1234-1356-2-125-156-1 always \x6905\x5b50 16-4-125-156-1 always \x6930\x5b50 346-2-125-156-1 always \x6954\x5b50 15-346-5-125-156-1 always \x69b4\x5f48 14-234-2-145-1236-5 always \x69d3\x5b50 13-1346-5-125-156-1 always \x6a02\x5287 236-5-13-1256-5 always \x6a02\x5668 236-5-245-16-5 always \x6a02\x5718 236-5-124-12456-2 always \x6a02\x58c7 236-5-124-1236-2 always \x6a02\x5b98 236-5-13-12456-3 always \x6a02\x5e2b 236-5-24-156-3 always \x6a02\x5e9c 236-5-12345-34-4 always \x6a02\x624b 236-5-24-12356-4 always \x6a02\x66f2 236-5-245-1256-4 always \x6a02\x6bb5 236-5-145-12456-5 always \x6a02\x6c34 246-5-24-1246-4 always \x6a02\x6d3e 236-5-1234-2456-5 always \x6a02\x7406 236-5-14-16-4 always \x6a02\x7ae0 236-5-1-1346-3 always \x6a02\x7c4d 236-5-13-16-2 always \x6a02\x8b5c 236-5-1234-34-4 always \x6a02\x8ff7 236-5-134-16-2 always \x6a02\x968a 236-5-145-1246-5 always \x6a02\x97f3 236-5-1456-3 always \x6a02\x98a8 236-5-12345-1356-3 always \x6a13\x5b50 14-12356-2-125-156-1 always \x6a21\x5b50 134-126-2-125-156-1 always \x6a21\x6a23 134-34-2-46-5 always \x6a23\x5b50 46-5-125-156-1 always \x6a58\x5b50 13-1256-2-125-156-1 always \x6a6b\x66b4 1235-1356-5-135-146-5 always \x6a6b\x6b7b 1235-1356-5-15-156-4 always \x6a6b\x798d 1235-1356-5-1235-25-5 always \x6a6b\x8089 1235-1356-5-1245-12356-5 always \x6a6b\x884c 1235-1356-5-15-13456-2 always \x6a6b\x8ca1 1235-1356-5-245-2456-2 always \x6ac3\x5b50 13-1246-5-125-156-1 always \x6adb\x6bd4 13-346-2-135-16-5 always \x6b21\x9577 245-156-5-1-1346-4 always \x6b23\x7fa1 15-1456-3-15-2345-5 always \x6b38\x4e43 2456-4-1345-2456-4 always \x6b3d\x5dee 245-1456-3-12-2456-3 always \x6b3e\x5b50 123-12456-4-125-156-1 always \x6b63\x4e2d 1-1356-5-1-12346-5 always \x6b65\x5b50 135-34-5-125-156-1 always \x6b66\x5c07 34-4-13-46-5 always \x6b6a\x66f2 2356-3-245-1256-3 always \x6b78\x9084 13-1246-3-1235-12456-2 always \x6b78\x964d 13-1246-3-15-46-2 always \x6b7b\x7576 15-156-4-145-1346-5 always \x6b7b\x96e3 15-156-4-1345-1236-5 always \x6b89\x96e3 15-256-5-1345-1236-5 always \x6b9e\x6c92 256-4-134-126-5 always \x6bba\x4f10 24-345-3-12345-345-3 always \x6bbc\x5b50 123-2346-2-125-156-1 always \x6bcf\x884c 134-356-4-1235-1346-2 always \x6bd4\x53ca 135-16-5-13-16-2 always \x6bd4\x6bd4 135-16-5-135-16-5 always \x6bd4\x80a9 135-16-5-13-2345-3 always \x6bd4\x9130 135-16-5-14-1456-2 always \x6bef\x5b50 124-1236-4-125-156-1 always \x6bfd\x5b50 13-2345-5-125-156-1 always \x6c08\x5b50 1-1236-3-125-156-1 always \x6c2b\x5f48 245-13456-3-145-1236-5 always \x6c34\x5206 24-1246-4-12345-136-5 always \x6c57\x4f4d 1235-1236-2-1246-5 always \x6c57\x570b 1235-1236-2-13-25-2 always \x6c57\x738b 1235-1236-2-456-2 always \x6c5f\x90fd 13-46-3-145-34-3 always \x6c60\x5b50 12-156-2-125-156-1 always \x6c88\x62ec 24-136-4-13-35-3 always \x6c88\x6c92 12-136-2-134-126-5 always \x6c88\x8457 12-136-2-1-25-2 always \x6c8f\x8336 245-16-5-12-345-2 always \x6c92\x4e16 134-126-5-24-156-5 always \x6c92\x5165 134-126-5-1245-34-5 always \x6c92\x6536 134-126-5-24-12356-3 always \x6c92\x6c92 134-126-5-134-126-5 always \x6c92\x843d 134-126-5-14-25-5 always \x6c92\x85e5 134-126-5-246-5 always \x6c92\x9802 134-126-5-145-13456-4 always \x6c92\x98f2 134-126-5-1456-4 always \x6c92\x9f52 134-126-5-12-156-4 always \x6c99\x5b50 24-345-3-125-156-1 always \x6cd5\x570b 12345-345-5-13-25-2 always \x6cd5\x5b50 12345-345-2-125-156-1 always \x6cd5\x76f8 12345-345-4-15-46-5 always \x6cd5\x862d 12345-345-5-14-1236-2 always \x6cd5\x8a9e 12345-345-5-1256-4 always \x6cef\x6c92 134-1456-4-134-126-5 always \x6d0b\x76f8 46-2-15-46-5 always \x6d0b\x884c 46-2-1235-1346-2 always \x6d3b\x585e 1235-25-2-15-2456-3 always \x6d77\x53c3 1235-2456-4-24-136-3 always \x6d77\x96e3 1235-2456-4-1345-1236-5 always \x6d88\x9577 15-246-3-1-1346-4 always \x6dd6\x7d04 12-25-5-236-3 always \x6de4\x585e 1256-3-15-2346-5 always \x6df1\x60e1 24-136-3-34-5 always \x6df1\x66f4 24-136-3-13-13456-3 always \x6df1\x7701 24-136-3-15-13456-4 always \x6df7\x4e82 1235-123456-4-14-12456-5 always \x6df7\x6c34 1235-123456-2-24-1246-4 always \x6df7\x6dc6 1235-123456-4-246-2 always \x6df7\x6fc1 1235-123456-2-1-25-2 always \x6df9\x6c92 2345-3-134-126-5 always \x6e21\x5047 145-34-5-13-23456-5 always \x6e23\x5b50 1-345-3-125-156-1 always \x6e2c\x5ea6 245-2346-5-145-25-5 always \x6e2c\x91cf 245-2346-5-14-46-2 always \x6e38\x8aaa 234-2-24-1246-5 always \x6e6e\x6c92 2345-3-134-126-5 always \x6e6e\x6ec5 1456-3-134-346-5 always \x6e6f\x6e6f 24-1346-3-24-1346-3 always \x6ecb\x9577 125-156-3-1-1346-4 always \x6ed1\x7a3d 13-34-4-13-16-3 always \x6ef4\x7b54 145-16-3-145-345-3 always \x6f02\x4eae 1234-246-5-14-46-5 always \x6f02\x767d 1234-246-4-135-2456-2 always \x6f0f\x5b50 14-12356-5-125-156-1 always \x6f15\x904b 245-146-2-256-5 always \x6f2b\x5929 134-1236-2-124-2345-3 always \x6f8e\x6e43 1234-1356-3-1234-2456-5 always \x6fc0\x5c07 13-16-3-13-46-5 always \x6fdf\x5357 13-16-4-1345-1236-2 always \x707d\x96e3 125-2456-3-1345-1236-5 always \x70ae\x5f48 1234-146-5-145-1236-5 always \x70ae\x88fd 1234-146-2-1-156-5 always \x70b8\x5f48 1-345-5-145-1236-5 always \x70b8\x91ac 1-345-2-13-46-5 always \x70ba\x4e86 1246-5-14-2346-1 always \x70ba\x4ec0 1246-5-24-2346-2 always \x70ba\x4ed6 1246-5-124-345-3 always \x70ba\x4f55 1246-5-1235-2346-2 always \x70ba\x4f60 1246-5-1345-16-4 always \x70ba\x570b 1246-5-13-25-2 always \x70ba\x5979 1246-5-124-345-3 always \x70ba\x59b3 1246-5-1345-16-4 always \x70ba\x60a8 1246-5-1345-1456-2 always \x70ba\x6c11 1246-5-134-1456-2 always \x70ba\x864e 1246-5-1235-34-4 always \x70d9\x5370 14-146-5-1456-5 always \x70d9\x9435 14-146-5-124-346-4 always \x70d9\x9905 14-146-5-135-13456-4 always \x70f9\x8abf 1234-1356-3-124-246-2 always \x710a\x63a5 1235-1236-5-13-346-3 always \x710a\x689d 1235-1236-5-124-246-2 always \x7121\x7684 34-2-145-16-5 always \x7121\x7e2b 34-2-12345-1356-5 always \x7126\x6fdf 13-246-3-1-156-4 always \x715e\x4f4f 24-345-3-1-34-5 always \x715e\x8eca 24-345-3-12-2346-3 always \x7167\x61c9 1-146-5-13456-5 always \x7167\x76f8 1-146-5-15-46-5 always \x71ce\x539f 14-246-5-45-2 always \x71d5\x4eac 2345-3-13-13456-3 always \x71d5\x5b50 2345-5-125-156-1 always \x71df\x9577 13456-2-1-1346-4 always \x7210\x5b50 14-34-2-125-156-1 always \x722a\x5b50 1-35-4-125-156-1 always \x722a\x7259 1-146-4-23456-2 always \x7247\x5b50 1234-2345-5-125-156-1 always \x724c\x5b50 1234-2456-2-125-156-1 always \x725b\x4ed4 1345-234-2-125-2456-4 always \x7292\x52de 123-146-5-14-146-5 always \x729b\x725b 134-146-2-1345-234-2 always \x72af\x96e3 12345-1236-5-1345-1236-5 always \x72c0\x5b50 1-456-5-125-156-1 always \x72d7\x4ed4 13-12356-4-125-2456-4 always \x72e9\x7375 24-12356-5-14-346-5 always \x72fc\x85c9 14-1346-2-13-16-2 always \x72fc\x865f 14-1346-2-1235-146-2 always \x731b\x5c07 134-1356-4-13-46-5 always \x731c\x5ea6 245-2456-3-145-25-5 always \x7334\x5b50 1235-12356-2-125-156-1 always \x7343\x5b50 145-2456-3-125-156-1 always \x7345\x5b50 24-156-3-125-156-1 always \x7368\x8655 145-34-2-12-34-4 always \x7387\x5148 24-2356-5-15-2345-3 always \x7387\x5175 24-2356-5-135-13456-3 always \x7387\x540c 24-2356-5-124-12346-2 always \x7387\x5718 24-2356-5-124-12456-2 always \x7387\x5e2b 24-2356-5-24-156-3 always \x7387\x6027 24-2356-5-15-13456-5 always \x7387\x610f 24-2356-5-16-5 always \x7387\x7136 24-2356-5-1245-1236-2 always \x7387\x76f4 24-2356-5-1-156-2 always \x7387\x771f 24-2356-5-1-136-3 always \x7387\x773e 24-2356-5-1-12346-5 always \x7387\x8ecd 24-2356-5-13-256-3 always \x7387\x9818 24-2356-5-14-13456-4 always \x738b\x51a0 456-2-13-12456-3 always \x738b\x90fd 456-2-145-34-3 always \x73a9\x5473 12456-5-1246-5 always \x73a9\x5ffd 12456-5-1235-34-3 always \x73a9\x6cd5 12456-5-12345-345-4 always \x73e0\x5b50 1-34-3-125-156-1 always \x73ed\x5b50 135-1236-3-125-156-1 always \x73ed\x9577 135-1236-3-1-1346-4 always \x7405\x90aa 14-1346-2-346-2 always \x743a\x746f 12345-345-5-14-1236-2 always \x745c\x4f3d 1256-2-13-23456-3 always \x745f\x7e2e 15-2346-5-15-34-5 always \x74a7\x9084 135-16-5-1235-12456-2 always \x74f6\x585e 1234-13456-2-15-2456-3 always \x74f6\x5b50 1234-13456-2-125-156-1 always \x751a\x9ebc 24-2346-2-134-2346-1 always \x751f\x9084 24-1356-3-1235-12456-2 always \x751f\x9577 24-1356-3-1-1346-4 always \x752f\x621a 1345-13456-2-245-16-3 always \x755c\x7267 15-1256-5-134-34-5 always \x755c\x7522 15-1256-5-12-1236-4 always \x755c\x7a4d 15-1256-5-13-16-3 always \x755c\x8b00 15-1256-5-134-12356-2 always \x755c\x990a 15-1256-5-46-4 always \x7576\x5dee 145-1346-3-12-2456-3 always \x7576\x6389 145-1346-5-145-246-5 always \x7576\x6a5f 145-1346-5-13-16-3 always \x7576\x7576 145-1346-5-145-1346-5 always \x7576\x7968 145-1346-5-1234-246-5 always \x7576\x8eca 145-1346-3-13-1256-3 always \x7576\x92ea 145-1346-5-1234-34-5 always \x7599\x7629 13-2346-3-145-345-1 always \x75b9\x5b50 1-136-4-125-156-1 always \x75c0\x50c2 13-1256-3-14-12356-2 always \x75c5\x5047 135-13456-5-13-23456-5 always \x75db\x60e1 124-12346-5-34-5 always \x75f1\x5b50 12345-356-5-125-156-1 always \x760b\x5b50 12345-1356-3-125-156-1 always \x7626\x524a 24-12356-5-15-236-3 always \x7626\x5b50 24-12356-5-125-156-1 always \x7638\x5b50 245-236-2-125-156-1 always \x7656\x597d 1234-16-4-1235-146-5 always \x7669\x5b50 14-2456-5-125-156-1 always \x767c\x9084 12345-345-3-1235-12456-2 always \x767c\x96e3 12345-345-3-1345-1236-5 always \x767d\x5377 135-2456-2-13-45-5 always \x767e\x4e58 135-2456-4-24-1356-5 always \x767e\x4e86 135-2456-4-14-246-4 always \x7687\x51a0 1235-456-2-13-12456-3 always \x768b\x9676 13-146-3-246-2 always \x76ae\x76f8 1234-16-2-15-46-5 always \x76c6\x5b50 1234-136-2-125-156-1 always \x76d2\x5b50 1235-2346-2-125-156-1 always \x76e4\x5b50 1234-1236-2-125-156-1 always \x76ee\x7684 134-34-5-145-16-5 always \x76f4\x7387 1-156-2-24-2356-5 always \x76f8\x4f4d 15-46-5-1246-5 always \x76f8\x5055 15-46-3-13-346-3 always \x76f8\x570b 15-46-5-13-25-2 always \x76f8\x592b 15-46-5-12345-34-3 always \x76f8\x61c9 15-46-3-13456-5 always \x76f8\x6a5f 15-46-5-13-16-3 always \x76f8\x7247 15-46-5-1234-2345-5 always \x76f8\x7387 15-46-3-24-2356-5 always \x76f8\x7a31 15-46-3-12-136-5 always \x76f8\x7c3f 15-46-5-135-34-5 always \x76f8\x8072 15-46-5-24-1356-3 always \x76f8\x8655 15-46-3-12-34-4 always \x76f8\x8853 15-46-5-24-34-5 always \x76f8\x8c8c 15-46-5-134-146-5 always \x76f8\x9762 15-46-5-134-2345-5 always \x7701\x5206 24-1356-4-12345-136-5 always \x7701\x5bdf 15-13456-4-12-345-2 always \x7701\x601d 15-13456-4-15-156-3 always \x7701\x609f 15-13456-4-34-5 always \x7701\x89aa 15-13456-4-245-1456-3 always \x7701\x9577 24-1356-4-1-1346-4 always \x770b\x4e2d 123-1236-5-1-12346-5 always \x770b\x5b88 123-1236-3-24-12356-4 always \x770b\x5bb6 123-1236-3-13-23456-3 always \x770b\x76f8 123-1236-5-15-46-5 always \x770b\x7ba1 123-1236-3-13-12456-4 always \x770b\x8b77 123-1236-3-1235-34-5 always \x770b\x9580 123-1236-3-134-136-2 always \x771f\x7387 1-136-3-24-2356-5 always \x771f\x76f8 1-136-3-15-46-5 always \x7738\x5b50 134-12356-2-125-156-1 always \x773c\x6688 2345-4-256-5 always \x773c\x7736 2345-4-123-456-3 always \x7761\x8457 24-1246-5-1-146-2 always \x7761\x89ba 24-1246-5-13-246-5 always \x7763\x7387 145-34-3-24-2356-5 always \x778e\x5b50 15-23456-3-125-156-1 always \x77ad\x671b 14-246-5-456-5 always \x77e5\x4e86 1-156-3-14-246-4 always \x77ee\x5b50 2456-4-125-156-1 always \x77f3\x5b50 24-156-2-125-156-1 always \x77f3\x8108 24-156-2-134-2456-5 always \x7802\x5b50 24-345-3-125-156-1 always \x780d\x4f10 123-1236-4-12345-345-3 always \x7832\x5f48 1234-146-5-145-1236-5 always \x7834\x76f8 1234-126-5-15-46-5 always \x7891\x5e16 135-356-3-124-346-5 always \x789f\x5b50 145-346-2-125-156-1 always \x78bc\x5b50 134-345-4-125-156-1 always \x78c5\x7921 1234-1346-3-135-126-2 always \x78e8\x96e3 134-126-2-1345-1236-5 always \x7926\x8108 123-456-5-134-2456-5 always \x793e\x9577 24-2346-5-1-1346-4 always \x7957\x6709 1-156-4-234-4 always \x7957\x80fd 1-156-4-1345-1356-2 always \x7957\x8981 1-156-4-246-5 always \x795e\x7947 24-136-2-245-16-2 always \x7968\x5b50 1234-246-5-125-156-1 always \x7981\x4e0d 13-1456-3-135-34-5 always \x798f\x76f8 12345-34-2-15-46-5 always \x79aa\x8b93 24-1236-5-1245-1346-5 always \x79ae\x6a02 14-16-4-236-5 always \x79bf\x5b50 124-34-3-125-156-1 always \x79d1\x9577 123-2346-3-1-1346-4 always \x7a2e\x690d 1-12346-5-1-156-2 always \x7a2e\x6a39 1-12346-5-24-34-5 always \x7a31\x5fc3 12-136-5-15-1456-3 always \x7a31\x610f 12-136-5-16-5 always \x7a3b\x5b50 145-146-5-125-156-1 always \x7a3f\x5b50 13-146-4-125-156-1 always \x7a40\x5b50 13-34-4-125-156-1 always \x7a4d\x7d2f 13-16-3-14-356-4 always \x7a69\x7576 123456-4-145-1346-5 always \x7a7a\x5730 123-12346-5-145-16-5 always \x7a7a\x683c 123-12346-5-13-2346-2 always \x7a7a\x9592 123-12346-5-15-2345-2 always \x7a7a\x9699 123-12346-5-15-16-5 always \x7a7a\x96e3 123-12346-3-1345-1236-5 always \x7a7a\x984d 123-12346-5-2346-2 always \x7a7f\x8457 12-12456-3-1-25-2 always \x7a97\x5b50 12-456-3-125-156-1 always \x7aae\x76f8 245-235-2-15-46-5 always \x7aaf\x5b50 246-2-125-156-1 always \x7ad9\x9577 1-1236-5-1-1346-4 always \x7b1b\x5b50 145-16-2-125-156-1 always \x7b26\x61c9 12345-34-2-13456-5 always \x7b46\x4f10 135-16-4-12345-345-3 always \x7b49\x5206 145-1356-4-12345-136-5 always \x7b54\x61c9 145-345-3-13456-5 always \x7b54\x7406 145-345-3-14-16-4 always \x7b54\x7b54 145-345-3-145-345-3 always \x7b56\x61c9 245-2346-5-13456-5 always \x7b77\x5b50 123-2356-5-125-156-1 always \x7ba1\x5b50 13-12456-4-125-156-1 always \x7ba1\x6a02 13-12456-4-236-5 always \x7bad\x93c3 13-2345-5-245-34-5 always \x7bb1\x5b50 15-46-3-125-156-1 always \x7be9\x5b50 24-2456-3-125-156-1 always \x7c1e\x98df 145-1236-3-15-156-5 always \x7c2a\x5b50 125-1236-3-125-156-1 always \x7c3d\x7f72 245-2345-3-24-34-5 always \x7c3e\x5b50 14-2345-2-125-156-1 always \x7c3f\x5b50 135-34-5-125-156-1 always \x7c43\x5b50 14-1236-2-125-156-1 always \x7c4d\x6c92 13-16-2-134-126-5 always \x7c60\x5b50 14-12346-2-125-156-1 always \x7c73\x884c 134-16-4-1235-1346-2 always \x7c97\x7377 245-34-3-123-456-5 always \x7c97\x7387 245-34-3-24-2356-5 always \x7c98\x8cbc 1-1236-3-124-346-3 always \x7cbd\x5b50 125-12346-5-125-156-1 always \x7cd9\x7c73 245-146-5-134-16-4 always \x7cf0\x5b50 124-12456-2-125-156-1 always \x7d00\x50b3 13-16-5-1-12456-5 always \x7d13\x96e3 24-34-3-1345-1236-5 always \x7d20\x884c 15-34-5-15-13456-5 always \x7d2f\x4e16 14-356-4-24-156-5 always \x7d2f\x52a0 14-356-4-13-23456-3 always \x7d2f\x5375 14-356-4-14-12456-4 always \x7d2f\x5b98 14-356-4-13-12456-3 always \x7d2f\x65e5 14-356-4-1245-156-5 always \x7d2f\x6708 14-356-4-236-5 always \x7d2f\x6b21 14-356-4-245-156-5 always \x7d2f\x72af 14-356-4-12345-1236-5 always \x7d2f\x7a4d 14-356-4-13-16-3 always \x7d2f\x7d2f 14-356-4-14-356-4 always \x7d2f\x8d05 14-356-4-1-1246-5 always \x7d2f\x9032 14-356-4-13-1456-5 always \x7d42\x4e86 1-12346-3-14-246-4 always \x7d44\x9577 125-34-4-1-1346-4 always \x7d50\x5be6 13-346-3-24-156-2 always \x7d50\x5df4 13-346-3-135-345-3 always \x7d66\x4ed8 13-16-4-12345-34-5 always \x7d68\x5462 1245-12346-2-1345-16-2 always \x7d71\x7387 124-12346-4-24-2356-5 always \x7d93\x50b3 13-13456-3-1-12456-5 always \x7d93\x8108 13-13456-3-134-2456-5 always \x7db2\x5b50 456-4-125-156-1 always \x7db8\x5dfe 13-12456-3-13-1456-3 always \x7de3\x5206 45-2-12345-136-5 always \x7de8\x8457 135-2345-3-1-34-5 always \x7e23\x5206 15-2345-5-12345-136-5 always \x7e23\x9577 15-2345-5-1-1346-4 always \x7e2b\x9699 12345-1356-5-15-16-5 always \x7e31\x6a6b 125-12346-3-1235-1356-2 always \x7e31\x8cab 125-12346-3-13-12456-5 always \x7e3d\x5f97 125-12346-4-145-356-4 always \x7e3d\x884c 125-12346-4-1235-1346-2 always \x7e3d\x9577 125-12346-4-1-1346-4 always \x7e43\x5b50 135-1356-3-125-156-1 always \x7e69\x5b50 24-1356-2-125-156-1 always \x7e8c\x5047 15-1256-5-13-23456-5 always \x7f3a\x7a7a 245-236-3-123-12346-5 always \x7f48\x5b50 124-1236-2-125-156-1 always \x7f50\x5b50 13-12456-5-125-156-1 always \x7f69\x5b50 1-146-5-125-156-1 always \x7f72\x540d 24-34-5-134-13456-2 always \x7f79\x96e3 14-16-2-1345-1236-5 always \x7f9e\x602f 15-234-3-245-236-5 always \x7f9e\x60e1 15-234-3-34-5 always \x7fa9\x884c 16-5-15-13456-5 always \x7ff9\x695a 245-246-2-12-34-4 always \x7ff9\x9996 245-246-2-24-12356-4 always \x8001\x5c07 14-146-4-13-46-5 always \x8001\x5c11 14-146-4-24-146-5 always \x8003\x5377 123-146-4-13-45-5 always \x8003\x91cf 123-146-4-14-46-2 always \x8015\x7a2e 13-1356-3-1-12346-5 always \x8017\x5b50 1235-146-5-125-156-1 always \x805e\x9054 123456-5-145-345-2 always \x8072\x6a02 24-1356-3-236-5 always \x8077\x5206 1-156-2-12345-136-5 always \x807d\x5929 124-13456-5-124-2345-3 always \x807d\x5dee 124-13456-3-12-2456-3 always \x8086\x61c9 15-156-5-13456-5 always \x8098\x5b50 1-12356-4-125-156-1 always \x809a\x5b50 145-34-5-125-156-1 always \x80a1\x5206 13-34-4-12345-136-5 always \x80d6\x5b50 1234-1346-5-125-156-1 always \x80da\x5b50 1234-356-3-125-156-1 always \x80f0\x5b50 16-2-125-156-1 always \x8108\x5bec 134-2456-5-123-12456-3 always \x8108\x5e45 134-2456-5-12345-34-2 always \x8108\x640f 134-2456-5-135-126-2 always \x8108\x7406 134-2456-5-14-16-4 always \x8108\x78bc 134-2456-5-134-345-4 always \x8108\x7d61 134-2456-5-14-25-5 always \x8108\x983b 134-2456-5-1234-1456-2 always \x8116\x5b50 135-126-2-125-156-1 always \x8166\x5b50 1345-146-4-125-156-1 always \x8178\x5b50 12-1346-2-125-156-1 always \x817f\x5b50 124-1246-4-125-156-1 always \x8180\x5b50 135-1346-4-125-156-1 always \x8180\x80f1 1234-1346-2-13-456-3 always \x8180\x81c2 135-1346-4-135-16-5 always \x819c\x62dc 134-126-2-135-2456-5 always \x81bd\x5b50 145-1236-4-125-156-1 always \x81bd\x602f 145-1236-4-245-236-5 always \x81c6\x5ea6 16-5-145-25-5 always \x81e5\x92ea 25-5-1234-34-5 always \x81e7\x5426 125-1346-3-1234-16-4 always \x81e8\x6d2e 14-1456-2-246-2 always \x81e8\x96e3 14-1456-2-1345-1236-5 always \x81ea\x50b3 125-156-5-1-12456-5 always \x81ea\x7701 125-156-5-15-13456-4 always \x81ea\x7d66 125-156-5-13-16-4 always \x8205\x5b50 13-234-5-125-156-1 always \x8208\x5473 15-13456-5-1246-5 always \x8208\x7dfb 15-13456-5-1-156-5 always \x8208\x8208 15-13456-5-15-13456-5 always \x8208\x8da3 15-13456-5-245-1256-5 always \x820a\x90fd 13-234-5-145-34-3 always \x820c\x82d4 24-2346-2-124-2456-3 always \x820d\x68c4 24-2346-4-245-16-5 always \x8216\x5f35 1234-34-3-1-1346-3 always \x8216\x6392 1234-34-3-1234-2456-2 always \x822c\x82e5 135-126-3-1245-2346-4 always \x8239\x9577 12-12456-2-1-1346-4 always \x8239\x96e3 12-12456-2-1345-1236-5 always \x8266\x9577 13-2345-5-1-1346-4 always \x826f\x5c07 14-46-2-13-46-5 always \x8272\x76f8 15-2346-5-15-46-5 always \x82b1\x51a0 1235-35-3-13-12456-3 always \x82e5\x5e79 1245-25-5-13-1236-3 always \x82e6\x96e3 123-34-4-1345-1236-5 always \x82f1\x6cd5 13456-3-12345-345-5 always \x8304\x5b50 245-346-2-125-156-1 always \x8305\x585e 134-146-2-15-2346-5 always \x8349\x7387 245-146-4-24-2356-5 always \x8378\x85ba 135-16-2-245-16-2 always \x83f2\x8584 12345-356-4-135-126-2 always \x840e\x7e2e 1246-3-15-25-3 always \x842c\x4e58 12456-5-24-1356-5 always \x842c\x5377 12456-5-13-45-5 always \x843d\x96e3 14-25-5-1345-1236-5 always \x843d\x9b44 14-25-5-124-25-5 always \x8449\x5b50 346-5-125-156-1 always \x8449\x8108 346-5-134-2456-5 always \x8457\x4f5c 1-34-5-125-25-5 always \x8457\x529b 1-25-2-14-16-5 always \x8457\x540d 1-34-5-134-13456-2 always \x8457\x5be6 1-25-2-24-156-2 always \x8457\x5e8a 1-25-2-12-456-2 always \x8457\x6025 1-146-3-13-16-2 always \x8457\x60f3 1-146-2-15-46-4 always \x8457\x614c 1-146-2-1235-456-3 always \x8457\x624b 1-25-2-24-12356-4 always \x8457\x66f8 1-34-5-24-34-3 always \x8457\x6709 1-34-5-234-4 always \x8457\x68cb 1-25-2-245-16-2 always \x8457\x6dbc 1-146-3-14-46-2 always \x8457\x706b 1-146-2-1235-25-4 always \x8457\x7a31 1-34-5-12-1356-3 always \x8457\x8005 1-34-5-1-2346-4 always \x8457\x8272 1-25-2-15-2346-5 always \x8457\x843d 1-146-2-14-25-5 always \x8457\x8457 1-25-2-1-2346-1 always \x8457\x8863 1-25-2-16-3 always \x8457\x8ff0 1-34-5-24-34-5 always \x8457\x91cd 1-25-2-1-12346-5 always \x8457\x9678 1-25-2-14-34-5 always \x8499\x96e3 134-1356-2-1345-1236-5 always \x84c6\x5b50 15-16-2-125-156-1 always \x84cb\x5b50 13-2456-5-125-156-1 always \x84fc\x83aa 14-34-5-2346-2 always \x8584\x8377 135-126-5-1235-2346-2 always \x8584\x884c 135-126-2-15-13456-5 always \x85c9\x85c9 13-16-2-13-16-2 always \x85e4\x5b50 124-1356-2-125-156-1 always \x85e5\x884c 246-5-1235-1346-2 always \x85e5\x92ea 246-5-1234-34-5 always \x860a\x85cf 256-5-245-1346-2 always \x8655\x4e8b 12-34-4-24-156-5 always \x8655\x4e8e 12-34-4-1256-2 always \x8655\x5206 12-34-4-12345-136-5 always \x8655\x5883 12-34-4-13-13456-5 always \x8655\x65bc 12-34-4-1256-2 always \x8655\x7406 12-34-4-14-16-4 always \x8655\x7f70 12-34-4-12345-345-2 always \x8655\x9577 12-34-5-1-1346-4 always \x865f\x54ed 1235-146-2-123-34-3 always \x868a\x5b50 123456-2-125-156-1 always \x86e4\x868c 13-2346-4-135-1346-5 always \x86e4\x86a7 13-2346-4-13-346-5 always \x86e4\x870a 13-2346-4-14-16-5 always \x86fb\x5316 124-1246-5-1235-35-5 always \x8766\x87c6 1235-345-2-134-345-1 always \x8768\x5b50 24-156-3-125-156-1 always \x87ec\x86fb 12-1236-2-124-1246-5 always \x87f2\x5b50 12-12346-2-125-156-1 always \x883b\x6a6b 134-1236-2-1235-1356-5 always \x8840\x6688 15-346-4-256-5 always \x8840\x9084 15-346-4-1235-12456-2 always \x884c\x4e1a 1235-1346-2-346-5 always \x884c\x4f0d 1235-1346-2-34-4 always \x884c\x5217 1235-1346-2-14-346-5 always \x884c\x54e1 1235-1346-2-45-2 always \x884c\x5bb6 1235-1346-2-13-23456-3 always \x884c\x5eab 1235-1346-2-123-34-5 always \x884c\x60c5 1235-1346-2-245-13456-2 always \x884c\x6578 1235-1346-2-24-34-5 always \x884c\x6703 1235-1346-2-1235-1246-5 always \x884c\x696d 1235-1346-2-346-5 always \x884c\x6b3e 1235-1346-2-123-12456-4 always \x884c\x72c0 15-13456-5-1-456-5 always \x884c\x865f 1235-1346-2-1235-146-5 always \x884c\x884c 1235-1346-2-15-13456-2 always \x884c\x898f 1235-1346-2-13-1246-3 always \x884c\x8a71 1235-1346-2-1235-35-5 always \x884c\x9593 1235-1346-2-13-2345-3 always \x885d\x51a0 12-12346-3-13-12456-3 always \x8861\x91cf 1235-1356-2-14-46-2 always \x8863\x51a0 16-3-13-12456-3 always \x8863\x8457 16-3-1-25-2 always \x8863\x88f3 16-3-24-1346-1 always \x8868\x7387 135-246-4-24-2356-5 always \x8868\x76f8 135-246-4-15-46-5 always \x888b\x5b50 145-2456-5-125-156-1 always \x8896\x5b50 15-234-5-125-156-1 always \x88ab\x5b50 135-356-5-125-156-1 always \x88c1\x5ea6 245-2456-2-145-25-5 always \x88c1\x91cf 245-2456-2-14-46-2 always \x88c2\x7e2b 14-346-5-12345-1356-5 always \x88d9\x5b50 245-256-2-125-156-1 always \x88dc\x5047 135-34-4-13-23456-5 always \x88dc\x7d66 135-34-4-13-16-4 always \x88dc\x9084 135-34-4-1235-12456-2 always \x88dc\x95d5 135-34-4-245-236-3 always \x88e1\x5b50 14-16-4-125-156-1 always \x8902\x5b50 13-35-5-125-156-1 always \x8932\x5b50 123-34-5-125-156-1 always \x893b\x73a9 15-346-5-12456-5 always \x896a\x5b50 35-5-125-156-1 always \x897f\x6a02 15-16-3-236-5 always \x8981\x633e 246-3-15-346-2 always \x8981\x6c42 246-3-245-234-2 always \x8981\x8105 246-3-15-346-2 always \x8986\x6821 12345-34-5-13-246-5 always \x8986\x6c92 12345-34-5-134-126-5 always \x89aa\x5bb6 245-13456-5-13-23456-3 always \x8a0e\x4f10 124-146-4-12345-345-3 always \x8a3a\x8108 1-136-4-134-2456-5 always \x8a50\x964d 1-345-5-15-46-2 always \x8a55\x50b3 1234-13456-2-1-12456-5 always \x8a55\x91cf 1234-13456-2-14-46-2 always \x8a66\x5377 24-156-5-13-45-5 always \x8a72\x884c 13-2456-3-1235-1346-2 always \x8a86\x9a19 123-456-3-1234-2345-5 always \x8aaa\x5ba2 24-1246-5-123-2346-5 always \x8aaa\x670d 24-1246-5-12345-34-2 always \x8abf\x505c 124-246-2-124-13456-2 always \x8abf\x5408 124-246-2-1235-2346-2 always \x8abf\x5b50 145-246-5-125-156-1 always \x8abf\x6559 124-246-2-13-246-5 always \x8abf\x6574 124-246-2-1-1356-4 always \x8abf\x7bc0 124-246-2-13-346-2 always \x8abf\x89e3 124-246-2-13-346-4 always \x8abf\x9577 124-246-2-1-1346-4 always \x8abf\x990a 124-246-2-46-4 always \x8acb\x5047 245-13456-4-13-23456-5 always \x8ad6\x8457 14-123456-5-1-34-5 always \x8ad6\x8a9e 14-123456-2-1256-4 always \x8b14\x7a31 1345-236-5-12-1356-3 always \x8b1d\x6713 15-346-5-124-246-5 always \x8b3e\x7f75 134-1236-5-134-345-5 always \x8b58\x76f8 24-156-5-15-46-5 always \x8b5c\x5b50 1234-34-4-125-156-1 always \x8b70\x8655 16-5-12-34-4 always \x8b70\x9577 16-5-1-1346-4 always \x8b8a\x66f4 135-2345-5-13-1356-3 always \x8b8a\x76f8 135-2345-5-15-46-5 always \x8c46\x5b50 145-12356-5-125-156-1 always \x8c46\x8c49 145-12356-5-12-156-4 always \x8c6c\x4ed4 1-34-3-125-2456-4 always \x8c6c\x5708 1-34-3-13-45-5 always \x8c79\x5b50 135-146-5-125-156-1 always \x8c8c\x76f8 134-146-5-15-46-5 always \x8ca0\x7d2f 12345-34-5-14-356-4 always \x8ca0\x8377 12345-34-5-1235-2346-5 always \x8ca1\x76f8 245-2456-2-15-46-5 always \x8ca1\x9577 245-2456-2-1-1346-4 always \x8ca9\x5b50 12345-1236-5-125-156-1 always \x8cde\x73a9 24-1346-4-12456-5 always \x8ce2\x76f8 15-2345-2-15-46-5 always \x8d74\x96e3 12345-34-5-1345-1236-5 always \x8d77\x5b50 245-16-4-125-156-1 always \x8ddb\x5b50 135-126-4-125-156-1 always \x8def\x5b50 14-34-5-125-156-1 always \x8df3\x884c 124-246-5-1235-1346-2 always \x8e09\x8e4c 14-46-5-245-46-5 always \x8e44\x5b50 124-16-2-125-156-1 always \x8e4a\x8e7a 15-16-3-245-246-5 always \x8eab\x5206 24-136-3-12345-136-5 always \x8eab\x5b50 24-136-3-125-156-1 always \x8eca\x5b50 12-2346-3-125-156-1 always \x8eca\x884c 12-2346-3-1235-1346-2 always \x8eca\x9577 12-2346-3-1-1346-4 always \x8ecb\x6232 13-345-3-15-16-5 always \x8ecd\x6a02 13-256-3-236-5 always \x8ecd\x9577 13-256-3-1-1346-4 always \x8f15\x7387 245-13456-3-24-2356-5 always \x8f29\x5206 135-356-5-12345-136-5 always \x8f29\x5b50 135-356-5-125-156-1 always \x8f2a\x5b50 14-123456-2-125-156-1 always \x8fae\x5b50 135-2345-5-125-156-1 always \x8fb1\x6c92 1245-34-5-134-126-5 always \x8fd4\x9084 12345-1236-4-1235-12456-2 always \x9000\x9084 124-1246-5-1235-12456-2 always \x9002\x5408 24-156-5-1235-2346-2 always \x9003\x96e3 124-146-2-1345-1236-5 always \x9023\x9577 14-2345-2-1-1346-4 always \x903e\x5206 1256-2-12345-136-5 always \x9047\x96e3 1256-5-1345-1236-5 always \x904a\x8aaa 234-2-24-1246-5 always \x904e\x5206 13-25-5-12345-136-5 always \x904e\x7576 13-25-5-145-1346-5 always \x9053\x89c0 145-146-5-13-12456-5 always \x905b\x9054 14-234-3-145-345-3 always \x9063\x5c07 245-2345-4-13-46-5 always \x9069\x61c9 24-156-5-13456-5 always \x9069\x7576 24-156-5-145-1346-5 always \x906d\x96e3 125-146-3-1345-1236-5 always \x9077\x90fd 245-2345-3-145-34-3 always \x907f\x96e3 135-16-5-1345-1236-5 always \x9084\x4fd7 1235-12456-2-15-34-2 always \x9084\x50f9 1235-12456-2-13-23456-5 always \x9084\x539f 1235-12456-2-45-2 always \x9084\x624b 1235-12456-2-24-12356-4 always \x9084\x672c 1235-12456-2-135-136-4 always \x9084\x7259 1235-12456-2-23456-2 always \x9084\x773c 1235-12456-2-2345-4 always \x9084\x79ae 1235-12456-2-14-16-4 always \x9084\x81f3 1235-12456-2-1-156-5 always \x9084\x9109 1235-12456-2-15-46-3 always \x9084\x9858 1235-12456-2-45-5 always \x9084\x9b42 1235-12456-2-1235-123456-2 always \x908a\x5fbc 135-2345-3-13-246-5 always \x90a3\x4e48 1345-345-5-134-2346-1 always \x90a3\x500b 1345-345-4-13-2346-5 always \x90a3\x582a 1345-345-4-123-1236-3 always \x90a3\x6709 1345-345-4-234-4 always \x90a3\x80fd 1345-345-4-1345-1356-2 always \x90aa\x884c 15-346-2-15-13456-5 always \x90e1\x9577 13-256-5-1-1346-4 always \x90e2\x90fd 13456-4-145-34-3 always \x90e8\x5206 135-34-5-12345-136-5 always \x90e8\x5c07 135-34-5-13-46-5 always \x90e8\x9577 135-34-5-1-1346-4 always \x90f5\x5dee 234-2-12-2456-3 always \x90fd\x5175 145-34-3-135-13456-3 always \x90fd\x53f8 145-34-3-15-156-3 always \x90fd\x57ce 145-34-3-12-1356-2 always \x90fd\x5bdf 145-34-3-12-345-2 always \x90fd\x5c09 145-34-3-1246-5 always \x90fd\x5e02 145-34-3-24-156-5 always \x90fd\x5ec1 145-34-3-245-2346-5 always \x90fd\x723e 145-34-3-156-4 always \x90fd\x7763 145-34-3-145-34-3 always \x90fd\x7d71 145-34-3-124-12346-4 always \x90fd\x8ecd 145-34-3-13-256-3 always \x90fd\x9091 145-34-3-16-5 always \x9109\x5c0e 15-46-5-145-146-4 always \x9109\x9577 15-46-3-1-1346-4 always \x914b\x9577 245-234-2-1-1346-4 always \x914d\x6a02 1234-356-5-236-5 always \x914d\x7d66 1234-356-5-13-16-4 always \x916c\x61c9 12-12356-2-13456-5 always \x91cb\x5377 24-156-5-13-45-5 always \x91cc\x9577 14-16-4-1-1346-4 always \x91cd\x4e5d 12-12346-2-13-234-4 always \x91cd\x4f30 12-12346-2-13-34-3 always \x91cd\x4f86 12-12346-2-14-2456-2 always \x91cd\x4fee 12-12346-2-15-234-3 always \x91cd\x5144 12-12346-2-15-235-3 always \x91cd\x5149 12-12346-2-13-456-3 always \x91cd\x5165 12-12346-2-1245-34-5 always \x91cd\x520a 12-12346-2-123-1236-3 always \x91cd\x5370 12-12346-2-1456-5 always \x91cd\x56de 12-12346-2-1235-1246-2 always \x91cd\x570d 12-12346-2-1246-2 always \x91cd\x594f 12-12346-2-125-12356-5 always \x91cd\x5a5a 12-12346-2-1235-123456-3 always \x91cd\x5b6b 12-12346-2-15-123456-3 always \x91cd\x5b9a 12-12346-2-145-13456-5 always \x91cd\x5beb 12-12346-2-15-346-4 always \x91cd\x5efa 12-12346-2-13-2345-5 always \x91cd\x5fa9 12-12346-2-12345-34-5 always \x91cd\x6176 12-12346-2-245-13456-5 always \x91cd\x6284 12-12346-2-12-146-3 always \x91cd\x632f 12-12346-2-1-136-5 always \x91cd\x6574 12-12346-2-1-1356-4 always \x91cd\x65b0 12-12346-2-15-1456-3 always \x91cd\x6d0b 12-12346-2-46-2 always \x91cd\x6e2c 12-12346-2-245-2346-5 always \x91cd\x6f14 12-12346-2-2345-4 always \x91cd\x7372 12-12346-2-1235-25-5 always \x91cd\x73fe 12-12346-2-15-2345-5 always \x91cd\x7533 12-12346-2-24-136-3 always \x91cd\x758a 12-12346-2-145-346-2 always \x91cd\x7d44 12-12346-2-125-34-4 always \x91cd\x7f6e 12-12346-2-1-156-5 always \x91cd\x8003 12-12346-2-123-146-4 always \x91cd\x8907 12-12346-2-12345-34-5 always \x91cd\x8a2d 12-12346-2-24-2346-5 always \x91cd\x8e48 12-12346-2-145-146-5 always \x91cd\x8fd4 12-12346-2-12345-1236-4 always \x91cd\x8ff0 12-12346-2-24-34-5 always \x91cd\x9022 12-12346-2-12345-1356-2 always \x91cd\x91cd 12-12346-2-12-12346-2 always \x91cd\x967d 12-12346-2-46-2 always \x91d1\x5b50 13-1456-3-125-156-1 always \x91d8\x5b50 145-13456-3-125-156-1 always \x91e6\x5b50 123-12356-5-125-156-1 always \x9245\x8457 13-1256-5-1-34-5 always \x9257\x5b50 245-2345-2-125-156-1 always \x9264\x5b50 13-12356-3-125-156-1 always \x9280\x5b50 1456-2-125-156-1 always \x9280\x884c 1456-2-1235-1346-2 always \x92b7\x5047 15-246-3-13-23456-5 always \x92ea\x4f4d 1234-34-5-1246-5 always \x92ea\x5b50 1234-34-5-125-156-1 always \x92ea\x9762 1234-34-5-134-2345-5 always \x92f8\x5b50 13-1256-5-125-156-1 always \x9320\x5b50 145-13456-5-125-156-1 always \x934a\x5b50 14-2345-5-125-156-1 always \x934b\x5b50 13-25-3-125-156-1 always \x9397\x5f48 245-46-3-145-1236-5 always \x939a\x5b50 12-1246-2-125-156-1 always \x93ac\x4eac 1235-146-5-13-13456-3 always \x93e1\x5b50 13-13456-5-125-156-1 always \x9435\x9a0e 124-346-4-13-16-5 always \x9470\x5319 246-5-24-156-4 always \x9472\x5d4c 15-46-3-245-2345-5 always \x947d\x6212 125-12456-5-13-346-5 always \x947d\x77f3 125-12456-5-24-156-2 always \x947f\x5b50 125-146-2-125-156-1 always \x9577\x4f7f 1-1346-4-24-156-4 always \x9577\x5047 12-1346-2-13-23456-5 always \x9577\x50cf 1-1346-4-15-46-5 always \x9577\x5144 1-1346-4-15-235-3 always \x9577\x5927 1-1346-4-145-345-5 always \x9577\x5973 1-1346-4-1345-1256-4 always \x9577\x5b50 1-1346-4-125-156-4 always \x9577\x5b6b 1-1346-4-15-123456-3 always \x9577\x5b98 1-1346-4-13-12456-3 always \x9577\x5e7c 1-1346-4-234-5 always \x9577\x623f 1-1346-4-12345-1346-2 always \x9577\x7537 1-1346-4-1345-1236-2 always \x9577\x8001 1-1346-4-14-146-4 always \x9577\x8005 1-1346-4-1-2346-4 always \x9577\x8457 1-1346-4-1-2346-1 always \x9577\x865f 12-1346-2-1235-146-2 always \x9577\x8f29 1-1346-4-135-356-5 always \x9577\x9032 1-1346-4-13-1456-5 always \x9580\x5b50 134-136-2-125-156-1 always \x9580\x6846 134-136-2-123-456-5 always \x9580\x6abb 134-136-2-123-1236-4 always \x9580\x7e2b 134-136-2-12345-1356-5 always \x9589\x585e 135-16-5-15-2346-5 always \x958b\x8869 123-2456-3-12-345-5 always \x9592\x6563 15-2345-2-15-1236-4 always \x9592\x7a7a 15-2345-2-123-12346-5 always \x9593\x63a5 13-2345-5-13-346-3 always \x9593\x65b7 13-2345-5-145-12456-5 always \x9593\x6b47 13-2345-5-15-346-3 always \x9593\x8adc 13-2345-5-145-346-2 always \x9593\x9694 13-2345-5-13-2346-2 always \x9593\x9699 13-2345-5-15-16-5 always \x95a3\x5b50 13-2346-2-125-156-1 always \x95b1\x5377 236-5-13-45-5 always \x95d5\x5931 245-236-3-24-156-3 always \x95d5\x5982 245-236-3-1245-34-2 always \x95d5\x6f0f 245-236-3-14-12356-5 always \x95d5\x7591 245-236-3-16-2 always \x963b\x5687 125-34-4-1235-2346-5 always \x963b\x585e 125-34-4-15-2346-5 always \x963f\x4fd7 2346-3-15-34-2 always \x963f\x8adb 2346-3-1256-2 always \x9644\x548c 12345-34-5-1235-2346-5 always \x9644\x8457 12345-34-5-1-25-2 always \x964d\x4f0f 15-46-2-12345-34-2 always \x964d\x5c07 15-46-2-13-46-5 always \x964d\x6575 15-46-2-145-16-2 always \x964d\x66f8 15-46-2-24-34-3 always \x964d\x670d 15-46-2-12345-34-2 always \x964d\x9f8d 15-46-2-14-12346-2 always \x9662\x5b50 45-5-125-156-1 always \x9662\x9577 45-5-1-1346-4 always \x9663\x5b50 1-136-5-125-156-1 always \x968a\x9577 145-1246-5-1-1346-4 always \x9690\x85cf 1456-4-245-1346-2 always \x96a8\x8208 15-1246-2-15-13456-5 always \x96b1\x6c92 1456-4-134-126-5 always \x96b1\x85cf 1456-4-245-1346-2 always \x96c5\x6a02 23456-4-236-5 always \x96d9\x91cd 24-456-3-12-12346-2 always \x96e2\x9593 14-16-2-13-2345-5 always \x96e3\x5730 1345-1236-5-145-16-5 always \x96e3\x6c11 1345-1236-5-134-1456-2 always \x96e3\x80f8 1345-1236-5-15-235-3 always \x96ea\x8304 15-236-4-13-23456-3 always \x96fb\x710a 145-2345-5-1235-1236-5 always \x9732\x767d 14-12356-5-135-2456-2 always \x9732\x76f8 14-12356-5-15-46-5 always \x9732\x81c9 14-12356-5-14-2345-4 always \x9732\x9762 14-12356-5-134-2345-5 always \x9756\x96e3 13-13456-5-1345-1236-5 always \x975c\x8108 13-13456-5-134-2456-5 always \x975e\x5206 12345-356-3-12345-136-5 always \x975e\x96e3 12345-356-3-1345-1236-5 always \x9762\x5b50 134-2345-5-125-156-1 always \x9774\x5b50 15-236-3-125-156-1 always \x978b\x5b50 15-346-2-125-156-1 always \x978d\x5b50 1236-3-125-156-1 always \x97ff\x61c9 15-46-4-13456-5 always \x9806\x61c9 24-123456-5-13456-5 always \x9818\x5b50 14-13456-4-125-156-1 always \x982d\x5b50 124-12356-2-125-156-1 always \x9838\x5b50 13-13456-4-125-156-1 always \x986f\x8457 15-2345-4-1-34-5 always \x98db\x5f48 12345-356-3-145-1236-5 always \x98db\x6f32 12345-356-3-1-1346-5 always \x9903\x5b50 13-246-4-125-156-1 always \x990a\x5206 46-4-12345-136-5 always \x9918\x8208 1256-2-15-13456-5 always \x9928\x5b50 13-12456-4-125-156-1 always \x9928\x9577 13-12456-4-1-1346-4 always \x9996\x76f8 24-12356-4-15-46-5 always \x9996\x90fd 24-12356-4-145-34-3 always \x9996\x9577 24-12356-4-1-1346-4 always \x99ac\x5b50 134-345-4-125-156-1 always \x99ac\x864e 134-345-4-1235-34-3 always \x99ae\x6cb3 1234-13456-2-1235-2346-2 always \x9a0e\x5175 13-16-5-135-13456-3 always \x9a19\x5b50 1234-2345-5-125-156-1 always \x9a3e\x5b50 14-25-2-125-156-1 always \x9a4d\x9a0e 15-246-3-13-16-5 always \x9a55\x6a6b 13-246-3-1235-1356-5 always \x9aa8\x5b50 13-34-4-125-156-1 always \x9aa8\x76f8 13-34-4-15-46-5 always \x9ad4\x80d6 124-16-4-1234-1236-2 always \x9ad8\x66f4 13-146-3-13-1356-3 always \x9ad8\x8208 13-146-3-15-13456-5 always \x9ad8\x9e97 13-146-3-14-16-2 always \x9b06\x6563 15-12346-3-15-1236-4 always \x9b0d\x5b50 1235-34-2-125-156-1 always \x9b1a\x5b50 15-1256-3-125-156-1 always \x9b3c\x5b50 13-1246-4-125-156-1 always \x9bae\x5c11 15-2345-4-24-146-4 always \x9bae\x6065 15-2345-4-12-156-4 always \x9d28\x5b50 23456-3-125-156-1 always \x9d3b\x722a 1235-12346-2-1-146-4 always \x9d3f\x5b50 13-2346-3-125-156-1 always \x9d60\x7684 1235-34-2-145-16-5 always \x9ea5\x5b50 134-2456-5-125-156-1 always \x9ebb\x5b50 134-345-2-125-156-1 always \x9ec3\x51a0 1235-456-2-13-12456-3 always \x9ede\x5b50 145-2345-4-125-156-1 always \x9f13\x8b5f 13-34-4-125-146-5 always \x9f3b\x5b50 135-16-2-125-156-1 always \x9f9c\x8332 245-234-3-245-156-2 always \x9f9c\x88c2 13-256-3-14-346-5 always \x97f3\x6a02 1456-3-236-5 always \x7b56\x5212 245-2346-5-1235-35-5 always \x4e3a\x4e86 1246-5-14-2346-1 always \x7684\x786e 145-16-2-245-236-5 always \x6210\x957f 12-1356-2-1-1346-4 always \x5546\x91cf 24-1346-3-14-46-2 always \x80c6\x5b50 145-1236-4-125-156-1 always \x5e72\x5427 13-1236-5-135-345-1 always \x56e0\x4e3a 1456-3-1246-5 always \x56de\x5e94 1235-1246-2-13456-5 always \x5904\x7406 12-34-4-14-16-4 always \x884c\x85cf 15-13456-2-245-1346-2 always \x4e5d\x91cd 13-234-4-12-12346-2 always \x7ad9\x957f 1-1236-5-1-1346-4 always \x5e97\x94fa 145-2345-5-1234-34-5 always \x5174\x8da3 15-13456-5-245-1256-5 always \x6267\x8457 1-156-2-1-25-2 always \x8ba1\x5212 13-16-5-1235-35-5 liblouis-2.5.3/tables/Fr-Fr-g2.ctb0000664000175000017500000014033512161041546013462 00000000000000# liblouis: French Grade 2 Table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Auteur: # # Nicolas Pitre # # Référence: # # Index de l'abrégé orthographique français étendu, lecture et écriture # Révision 1993 # Service de production Braille, Institut Nazareth et Louis-Braille # Longueuil (Québec) # Contracted Unified French Table # -------------------------------- include fr-fr-g1.utb ### ### 1. Assemblages de lettres représentés par un seul symbole, ### et finales représentées par deux ou trois symboles; ### punctuation ' 6 so the line below compiles letsign 6 sign ^ 4 so the line: "before con always ar 4" compiles sign ~ 5 class voy aeiouyéàèùâêîôûëïüAEIOUYÉÀÈÙÂÊËïü class con bcçdfghjklmnpqrstvwxzBCÇDFGHJKLMNPQRSTVWXZ class bmp bmpBMP endword able 45 always ai 34 endword ait 146 before con always an 2 endword ant 1456 before con always ar 4 endword ar 4 endword ation 16 always au 13 always bl 45 before voy always br 23 always ch 12356 before voy always cl 146 before con begword com 36 before con always con 25 before voy always cr 25 before con begword dis 256 before voy always dr 1456 endword elle 456 before con always em 345 before con always en 26 endword en 26 endword ent 126 before con midword er 236 endword er 236 begword es 156 endword es 156 word eu 15-136 always eu 5 before con always eur 46 endword eur 46 before con always ex 1346 endword ez 1356 before voy always fl 126 before voy always fr 16 before voy always gl 345 always gn 2356 before voy always gr 12456 always ien 256 always ieu 6 before bmp begword im 246 always in 35 always ion 3456 endword ition 246 before voy after voy always ll 456 always oi 23456 before con always om 2456 endword om 2456 before con always on 346 endword on 346 before con always or 56 endword or 56 always ou 1256 before con always our 12346 endword our 12346 before voy always pl 1246 before voy always pr 235 before con always pro 235 always qu 12345 endword que 12345 before con begword re 3 before voy after voy always ss 2346 before voy always tr 356 before con begword trans 356 before voy after voy always tt 2456 before con always ui 23 endword ablement 45-134 endword bilité 12-123-2345 endword bilités 12-123-2345-234 endword ellement 456-134 endword logie 123-1245 endword quement 12345-134 endword quements 12345-134-234 endword tement 2345-134 endword tements 2345-134-234 endword ttement 2345-2345-134 endword ttements 2345-2345-134-234 endword vement 1236-134 endword vements 1236-134-234 before con always ain 1-35 endword ain 1-35 before con always oin 135-35 endword oin 135-35 before con begword recom 3-36 before con begword redis 3-256 before con begword retrans 3-356 before con begword incom 35-36 before con begword indis 35-256 before con begword intrans 35-356 begword ines 35-156 prfword tient 2345-256-2345 prfword vient 1236-256-2345 endword ient 24-126 word balbutient 12-1-123-12-136-2345-24-126 word initient 35-24-2345-24-126 word dévient 145-123456-1236-24-126 word envient 1235-26-1236-24-126 sufword bleu 45-15-136 before con always brui 12-1235-23 endword clait 14-123-146 before voy always concr 14-346-25 endword drant 145-1235-1456 always drô 145-1235-1456 endword en? 15-1345-26 always ien. 24-26-256 before voy always propr 235-135-235 before con begword ren 1235-26 always ssè 234-234-2346 word (en 236-15-1345 word (la 236-123-1 ### ### 2. Mots représentés par un seul symbole ### word a 1 word à 12356 word ai 34 word au 13 word aux 13-1346 word bien 12 word biens 12-234 word ce 14 word celui 36 word cet 146 word dans 1456 word de 145 word dès 256 word du 236 word elle 1356 word elles 1356-234 word en 26 word est 156 word et 23456 word été 2356 word étés 2356-234 word faire 124 word grand 12456 word grands 12456-234 word il 24 word ils 24-234 word je 245 word la 3 word le 123 word les 345 word lui 3456 word mais 1346 word me 134 word même 126 word mêmes 126-234 word ne 1345 word nous 135 word on 346 word ou 1256 word par 1234 word plus 1246 word pour 12346 word puis 235 word que 12345 word qui 1245 word quoi 123456 word rien 1235 word riens 1235-234 word sans 2346 word se 234 word si 35 word son 246 word sons 246-234 word sous 356 word sur 125 word te 2345 word tous 2456 word tout 16 word un 136 word uns 136-234 word vous 1236 word y 13456 begword c' 14-3 begword d' 145-3 begword j' 245-3 begword l' 123-3 begword m' 134-3 begword n' 1345-3 begword s' 234-3 begword t' 2345-3 ### ### 3. Mots représentés par deux ou plusieurs symboles ### word absolu 1-12 word absolus 1-12-234 word absolue 1-12-15 word absolues 1-12-156 word absolument 1-12-134 word action 1-3456 word actions 1-3456-234 word actionnaire 1-3456-1235 word actionnaires 1-3456-1235-234 word affaire 1-124-124 word affaires 1-124-124-234 word afin 1-124 word ailleurs 34-136 word ainsi 1-24 word alors 1-123 word amour 1-134 word amours 1-134-234 word amoureuse 1-134-234-15 word amoureuses 1-134-234-156 word amoureusement 1-134-234-134 word amoureux 1-134-1346 word apparemment 1-1234-134 word apparence 1-1234-14 word apparences 1-1234-14-234 word apparent 1-1234 word apparents 1-1234-234 word apparente 1-1234-15 word apparentes 1-1234-156 word après 1-235 word assez 1-1356 word atentif 1-2345-124 word atentifs 1-2345-124-234 word attention 1-2345 word attentions 1-2345-234 word attentive 1-2345-1236 word attentives 1-2345-1236-234 word attentivement 1-2345-1236-134 word aucun 13-14 word aucune 13-1345 word aucunement 13-1345-134 word auparavant 13-1234 word auprès 13-235 word auquel 13-12345-123 word aussi 13-234 word aussitôt 13-2345 word autour 13-1235 word autre 13-356 word autres 13-356-234 word autrefois 13-124 word autrement 13-356-134 word auxquelles 13-1346-12345-123-123-234 word auxquels 13-1346-12345-123-234 word avance 1-1236-14 word avances 1-1236-14-234 word avancement 1-1236-14-134 word avant 1-1236 word avantage 1-1236-1245 word avantages 1-1236-1245-234 word avantageuse 1-1236-1245-234-15 word avantageuses 1-1236-1245-234-156 word avantageusement 1-1236-1245-234-134 word avantageux 1-1236-1245-1346 word avec 1-14 word avoir 1-1235 word avoirs 1-1235-234 word ayant 1-13456 word beaucoup 12-14 word besogne 12-2356 word besognes 12-2356-234 word besogneuse 12-2356-234-15 word besogneuses 12-2356-234-156 word besogneux 12-2356-1346 word besoin 12-35 word besoins 12-35-234 word bête 12-126 word bêtes 12-126-234 word bêtement 12-126-134 word bienfaisance 12-124-14 word bienfaisances 12-124-14-234 word bienfait 12-124 word bienfaits 12-124-234 word bienfaiteur 12-124-46 word bienfaiteurs 12-124-46-234 word bientôt 12-2345 word bienveillance 12-1236-14 word bienveillances 12-1236-14-234 word bienveillant 12-1236 word bienveillants 12-1236-234 word bienveillante 12-1236-15 word bienveillantes 12-1236-156 word bizarre 12-1356 word bizarres 12-1356-234 word bizarrement 12-1356-134 word bonheur 12-125 word bonheurs 12-125-234 word bonjour 12-245 word bonjours 12-245-234 word bonne 12-1345 word bonnes 12-1345-234 word bonnement 12-1345-134 word bonté 12-135 word bontés 12-135-234 word boulevard 12-145 word boulevards 12-145-234 word braille 23-123 word branchage 23-12356-1245 word branchages 23-12356-1245-234 word branche 23-12356 word branches 23-12356-234 word branchement 23-12356-134 word branchements 23-12356-134-234 word brave 23-1236 word braves 23-1236-234 word bravement 23-1236-134 word bruit 23-2345 word bruits 23-2345-234 word brusque 23-12345 word brusques 23-12345-234 word brusquement 23-12345-134 word budget 12-1245 word budgets 12-1245-234 word budgétaire 12-1245-1235 word budgétaires 12-1245-1235-234 word caractère 14-2346 word caractères 14-2346-234 word caractéristique 14-123456-12345 word caractéristiques 14-123456-12345-234 word ceci 14-14 word cela 14-1 word celle 14-123 word celles 14-123-234 word celui-ci 36-36-14-24 word celui-là 36-36-123-12356 word cependant 14-1234 word certain 14-35 word certains 14-35-234 word certaine 14-1345 word certaines 14-1345-234 word certainement 14-1345-134 word certes 14-236 word certitude 14-236-145 word certitudes 14-236-145-234 word ces 14-234 word cette 14-2345 word ceux 14-1346 word chacun 12356-14 word chacune 12356-1345 word chagrin 12356-12456 word chagrins 12356-12456-234 word chaleur 12356-123 word chaleurs 12356-123-234 word chaleureuse 12356-123-234-15 word chaleureuses 12356-123-234-156 word chaleureusement 12356-123-234-134 word chaleureux 12356-123-1346 word champ 12356-1234 word champs 12356-1234-234 word change 12356-1245 word changes 12356-1245-234 word changement 12356-1245-134 word changeur 12356-1245-46 word changeurs 12356-1245-46-234 word chaque 12356-12345 word charitable 12356-2345-45 word charitables 12356-2345-45-234 word charitablement 12356-2345-45-134 word charité 12356-2345 word charités 12356-2345-234 word chaud 12356-145 word chauds 12356-145-234 word chaude 12356-145-15 word chaudes 12356-145-156 word chaudement 12356-145-134 word chemin 12356-134 word chemins 12356-134-234 word chère 12356-2346 word chères 12356-2346-234 word chèrement 12356-2346-134 word chez 12356-1356 word chiffrage 12356-124-1245 word chiffrages 12356-124-1245-234 word chiffre 12356-124 word chiffres 12356-124-234 word choeur 12356-1235 word choeurs 12356-1235-234 word choix 12356-1346 word chose 12356-234 word choses 12356-234-234 word circonstance 14-25-14 word circonstances 14-25-14-234 word circonstanciel 14-25-14-123 word circonstanciels 14-25-14-123-234 word circonstancielle 14-25-14-123-123 word circonstancielles 14-25-14-123-123-234 word civil 14-1236 word civils 14-1236-234 word civile 14-1236-15 word civiles 14-1236-156 word civilement 14-1236-134 word civilisation 14-1236-16 word civilisations 14-1236-16-234 word civilité 14-1236-2345 word civilités 14-1236-2345-234 word coeur 14-1235 word coeurs 14-1235-234 word combien 14-12 word comme 14-134 word commencement 36-134 word commencements 36-134-234 word comment 14-26 word commentaire 14-26-1235 word commentaires 14-26-1235-234 word commentateur 14-26-46 word commentateurs 14-26-46-234 word commun 36-1345 word communs 36-1345-234 word commune 36-1345-15 word communes 36-1345-156 word communal 36-1345-123 word communale 36-1345-123-15 word communales 36-1345-123-156 word communautaire 36-1345-2345-1235 word communautaires 36-1345-2345-1235-234 word communauté 36-1345-2345 word communautés 36-1345-2345-234 word communaux 36-1345-1346 word communément 36-1345-134 word communion 36-1345-3456 word communions 36-1345-3456-234 word complément 36-1246-134 word compléments 36-1246-134-234 word complémentaire 36-1246-134-1235 word complémentaires 36-1246-134-1235-234 word complet 36-1246 word complets 36-1246-234 word complète 36-2345 word complètes 36-2345-234 word complètement 36-2345-134 word conclusion 25-14 word conclusions 25-14-234 word condition 25-145 word conditions 25-145-234 word conditionnel 25-145-123 word conditionnels 25-145-123-234 word conditionnelle 25-145-123-123 word conditionnelles 25-145-123-123-234 word conditionnellement 25-145-123-134 word confiance 25-124-14 word confiant 25-124 word congrès 25-12456 word connaissance 25-1345-14 word connaissances 25-1345-14-234 word connaître 25-1345 word consciemment 25-234-134 word conscience 25-234-14 word consciences 25-234-14-234 word consciencieuse 25-234-14-234-15 word consciencieuses 25-234-14-234-156 word consciencieusement 25-234-14-234-134 word consciencieux 25-234-14-1346 word conscient 25-234 word conscients 25-234-234 word consciente 25-234-15 word conscientes 25-234-156 word conséquemment 14-12345-134 word conséquence 14-12345-14 word conséquences 14-12345-14-234 word conséquent 14-12345 word conséquents 14-12345-234 word conséquente 14-12345-15 word conséquentes 14-12345-156 word considérable 14-145 word considérables 14-145-234 word considérablement 14-145-134 word considération 14-145-16 word considérations 14-145-16-234 word contraire 14-356 word contraires 14-356-234 word contrairement 14-356-134 word conversation 25-1236 word conversations 25-1236-234 word côté 14-1456 word côtés 14-1456-234 word couple 14-1246 word couples 14-1246-234 word courage 14-1245 word courageuse 14-1245-234-15 word courageuses 14-1245-234-156 word courageusement 14-1245-234-134 word courageux 14-1245-1346 word danger 145-1245 word dangers 145-1245-234 word dangeureuse 145-1245-234-15 word dangeureuses 145-1245-234-156 word dangeureusement 145-1245-234-134 word dangeureux 145-1245-1346 word davantage 145-1 word debout 145-12 word dedans 145-145 word degré 145-12456 word degrés 145-12456-234 word dehors 145-125 word déjà 145-245 word demain 145-134 word depuis 145-1234 word dernier 145-1345 word derniers 145-1345-234 word dernière 145-1235 word dernières 145-1235-234 word dernièrement 145-1235-134 word derrière 145-236 word derrières 145-236-234 word des 145-234 word désormais 145-34 word desquels 145-234-12345-123-234 word desquelles 145-234-12345-123-123-234 word destin 145-35 word destins 145-35-234 word destinataire 145-35-1235 word destinataires 145-35-1235-234 word destination 145-35-16 word destinations 145-35-16-234 word devant 145-1236 word devants 145-1236-234 word différemment 145-345-134 word différence 145-26-14 word différences 145-26-14-234 word différent 145-26 word différents 145-26-234 word différente 145-26-15 word différentes 145-26-156 word difficile 145-124 word difficiles 145-124-234 word difficilement 145-124-134 word difficulté 145-124-2345 word difficultés 145-124-2345-234 word digne 145-2356 word dignes 145-2356-234 word dignement 145-2356-134 word dignitaire 145-2356-2345-1235 word dignitaires 145-2356-2345-1235-234 word dignité 145-2356-2345 word discours 256-14 word dispositif 256-1234-124 word dispositifs 256-1234-124-234 word disposition 256-1234 word dispositions 256-1234-234 word distance 256-2345-14 word distances 256-2345-14-234 word distant 256-2345 word distants 256-2345-234 word distante 256-2345-15 word distantes 256-2345-156 word donc 145-14 word dont 145-2345 word douleur 145-123 word douleurs 145-123-234 word douloureuse 145-123-234-15 word douloureuses 145-123-234-156 word douloureusement 145-123-234-134 word douloureux 145-123-1346 word doute 145-1256 word doutes 145-1256-234 word duquel 145-12345-123 word effectif 15-124-124 word effectifs 15-124-124-234 word effective 15-124-1236 word effectives 15-124-1236-234 word effectivement 15-124-1236-134 word effet 15-124 word effets 15-124-234 word égal 123456-1245 word égale 123456-1245-15 word égales 123456-1245-156 word également 123456-1245-134 word égalitaire 123456-1245-2345-1235 word égalitaires 123456-1245-2345-1235-234 word égalité 123456-1245-2345 word égalités 123456-1245-2345-234 word égaux 123456-1245-1346 word élément 123456-123 word éléments 123456-123-234 word élémentaire 123456-123-1235 word élémentaires 123456-123-1235-234 word encore 26-14 word endroit 26-145 word endroits 26-145-234 word énergie 123456-1345 word énergies 123456-1345-234 word énergique 123456-1345-12345 word énergiques 123456-1345-12345-234 word énergiquement 123456-1345-12345-134 word enfin 26-124 word ennui 26-1345 word ennuis 26-1345-234 word ennuyeuse 26-1345-234-15 word ennuyeuses 26-1345-234-156 word ennuyeux 26-1345-1346 word enquête 26-12345 word enquêtes 26-12345-234 word enquêteur 26-12345-46 word enquêteurs 26-12345-46-234 word enquêteuse 26-12345-234-15 word enquêteuses 26-12345-234-156 word ensemble 26-345 word ensembles 26-345-234 word ensuite 26-234 word entier 26-2345 word entiers 26-2345-234 word entière 26-1235 word entières 26-1235-234 word entièrement 26-1235-134 word environ 26-1236 word espèce 156-1234 word espèces 156-1234-234 word espérance 156-1235-14 word espérances 156-1235-14-234 word espoir 156-1235 word espoirs 156-1235-234 word esprit 15-235 word esprits 15-235-234 word essentiel 156-123 word essentiels 156-123-234 word essentielle 156-123-123 word essentielles 156-123-123-234 word essentiellement 156-123-134 word étant 123456-2345 word être 126-356 word êtres 126-356-234 word événement 123456-1236 word événements 123456-1236-234 word éventualité 123456-1236-123-2345 word éventualités 123456-1236-123-2345-234 word éventuel 123456-1236-123 word éventuels 123456-1236-123-234 word éventuelle 123456-1236-123-123 word éventuelles 123456-1236-123-123-234 word éventuellement 123456-1236-123-134 word excellemment 1346-123-134 word excellence 1346-123-14 word excellences 1346-123-14-234 word excellent 1346-123 word excellents 1346-123-234 word excellente 1346-123-15 word excellentes 1346-123-156 word excès 1346-14 word excessif 1346-14-124 word excessifs 1346-14-124-234 word excessive 1346-14-1236 word excessives 1346-14-1236-234 word excessivement 1346-14-1236-134 word exercice 1346-236 word exercices 1346-236-234 word expérience 1346-1234 word expériences 1346-1234-234 word expérimental 1346-1234-123 word expérimentale 1346-1234-123-15 word expérimentales 1346-1234-123-156 word expérimentallement 1346-1234-123-134 word expérimentateur 1346-1234-46 word expérimentateurs 1346-1234-46-234 word expérimentation 1346-1234-16 word expérimentations 1346-1234-16-234 word expérimentaux 1346-1234-1346 word explicable 1346-1246-45 word explicables 1346-1246-45-234 word explicatif 1346-1246-124 word explicatifs 1346-1246-124-234 word explication 1346-1246 word explications 1346-1246-234 word explicative 1346-1246-1236 word explicatives 1346-1246-1236-234 word expressif 1346-235-124 word expressifs 1346-235-124-234 word expression 1346-235 word expressions 1346-235-234 word expressive 1346-235-1236 word expressives 1346-235-1236-234 word expressivement 1346-235-1236-134 word extérieur 1346-2345 word extérieurs 1346-2345-234 word extérieure 1346-2345-15 word extérieures 1346-2345-156 word extérieurement 1346-2345-134 word extrême 1346-356 word extrêmes 1346-356-234 word extrêmement 1346-356-134 word extrémité 1346-356-2345 word extrémités 1346-356-2345-234 word facile 124-14 word faciles 124-14-234 word facilement 124-14-134 word facilité 124-14-2345 word facilités 124-14-2345-234 word faubourg 124-12 word faubourgs 124-12-234 word faut 124-2345 word faute 124-2345-15 word fautes 124-2345-15-234 word fautif 124-2345-124 word fautifs 124-2345-124-234 word fautive 124-2345-1236 word fautives 124-2345-1236-234 word faveur 124-1236 word faveurs 124-1236-234 word favorable 124-1236-45 word favorables 124-1236-45-234 word favorablement 124-1236-45-134 word féminin 124-134-35 word féminins 124-134-35-234 word féminine 124-134-1345 word féminines 124-134-1345-234 word femme 124-134 word femmes 124-134-234 word fête 124-126 word fêtes 124-126-234 word fidèle 124-145 word fidèles 124-145-234 word fidèlement 124-145-134 word fidélité 124-145-2345 word fidélités 124-145-2345-234 word figuratif 124-1245-124 word figuratifs 124-1245-124-234 word figuration 124-1245-16 word figurations 124-1245-16-234 word figurative 124-1245-1236 word figuratives 124-1245-1236-234 word figure 124-1245 word figures 124-1245-234 word fille 124-123 word filles 124-123-234 word fils 124-234 word fonction 124-346 word fonctions 124-346-234 word fonctionnaire 124-346-1235 word fonctionnaires 124-346-1235-234 word fonctionnel 124-346-123 word fonctionnels 124-346-123-234 word fonctionnelle 124-346-123-123 word fonctionnelles 124-346-123-123-234 word fonctionnement 124-346-134 word fonctionnements 124-346-134-234 word force 124-135 word forces 124-135-234 word forcément 124-135-134 word fortune 124-1345 word fortunes 124-1345-234 word fraternel 124-1235-123 word fraternels 124-1235-123-234 word fraternelle 124-1235-123-123 word fraternelles 124-1235-123-123-234 word fraternellement 124-1235-123-134 word fraternisation 124-1235-16 word fraternisations 124-1235-16-234 word fraternité 124-1235-2345 word fraternités 124-1235-2345-234 word fréquemment 124-12345-134 word fréquence 124-12345-14 word fréquences 124-12345-14-234 word fréquent 124-12345 word fréquents 124-12345-234 word fréquente 124-12345-15 word fréquentes 124-12345-156 word fréquentation 124-12345-16 word fréquentations 124-12345-16-234 word frère 124-1235 word frères 124-1235-234 word garde 1245-145 word gardes 1245-145-234 word général 1245-1345 word générale 1245-1345-15 word générales 1245-1345-156 word généralement 1245-1345-134 word généralisation 1245-1345-16 word généralisations 1245-1345-16-234 word généralité 1245-1345-2345 word généralités 1245-1345-2345-234 word généraux 1245-1345-1346 word généreuse 1245-234-15 word généreuses 1245-234-156 word généreusement 1245-234-134 word généreux 1245-1346 word générosité 1245-234-2345 word générosités 1245-234-2345-234 word gloire 1245-1235 word gloires 1245-1235-234 word glorieuse 1245-1235-234-15 word glorieuses 1245-1235-234-156 word glorieusement 1245-1235-234-134 word glorieux 1245-1235-1346 word gouvernement 1245-1236 word gouvernements 1245-1236-234 word gouvernemental 1245-1236-123 word gouvernementale 1245-1236-123-15 word gouvernementales 1245-1236-123-156 word gouvernementaux 1245-1236-1346 word gouverneur 1245-1236-46 word gouverneurs 1245-1236-46-234 word grâce 12456-14 word grâces 12456-14-234 word gracieuse 12456-14-234-15 word gracieuses 12456-14-234-156 word gracieusement 12456-14-234-134 word gracieux 12456-14-1346 word grande 12456-145 word grandes 12456-145-234 word grandement 12456-145-134 word grandeur 12456-46 word grandeurs 12456-46-234 word grave 12456-1236 word graves 12456-1236-234 word gravement 12456-1236-134 word gravitation 12456-1236-2345-16 word gravitations 12456-1236-2345-16-234 word gravité 12456-1236-2345 word gravités 12456-1236-2345-234 word groupe 12456-1234 word groupes 12456-1234-234 word groupement 12456-1234-134 word groupements 12456-1234-134-234 word guère 1245-2346 word guerre 1245-236 word guerres 1245-236-234 word habitude 125-12 word habitudes 125-12-234 word habituel 125-12-123 word habituels 125-12-123-234 word habituelle 125-12-123-123 word habituelles 125-12-123-123-234 word habituellement 125-12-123-134 word hasard 125-145 word hasards 125-145-234 word hasardeuse 125-145-234-15 word hasardeuses 125-145-234-156 word hasardeux 125-145-1346 word hélas 125-123 word heure 125-1235 word heures 125-1235-234 word heureuse 125-234-15 word heureuses 125-234-156 word heureusement 125-234-134 word heureux 125-1346 word hier 125-236 word histoire 125-2345 word histoires 125-2345-234 word historique 125-2345-12345 word historiques 125-2345-12345-234 word historiquement 125-2345-12345-134 word hiver 125-1236 word hivers 125-1236-234 word hivernal 125-1236-123 word hivernaux 125-1236-1346 word hommage 125-1245 word hommages 125-1245-234 word homme 125-134 word hommes 125-134-234 word honnête 125-126 word honnêtes 125-126-234 word honnêtement 125-126-134 word honnêteté 125-126-2345 word honnêtetés 125-126-2345-234 word honneur 125-1345 word honneurs 125-1345-234 word honorabilité 125-1345-12-123-2345 word honorabilités 125-1345-12-123-2345-234 word honorable 125-1345-45 word honorables 125-1345-45-234 word honorablement 125-1345-45-134 word honoraire 125-1345-1235 word honoraires 125-1345-1235-234 word horaire 125-1235-1235 word horaires 125-1235-1235-234 word horizon 125-1356 word horizons 125-1356-234 word horizontal 125-1356-123 word horizontale 125-1356-123-15 word horizontales 125-1356-123-156 word horizontalement 125-1356-123-134 word horizontalité 125-1356-123-2345 word horizontalités 125-1356-123-2345-234 word horizontaux 125-1356-1346 word hypothèse 125-1234 word hypothèses 125-1234-234 word hypothétique 125-1234-12345 word hypothétiques 125-1234-12345-234 word hypothétiquement 125-1234-12345-134 word humain 125-134-35 word humains 125-134-35-234 word humaine 125-134-1345 word humaines 125-134-1345-234 word humainement 125-134-1345-134 word humanitaire 125-134-1345-2345-1235 word humanitaires 125-134-1345-2345-1235-234 word humanité 125-134-1345-2345 word humanités 125-134-1345-2345-234 word idéal 24-145-123 word idéale 24-145-123-15 word idéales 24-145-123-156 word idéalement 24-145-123-134 word idéaux 24-145-1346 word idée 24-145 word idées 24-145-234 word image 24-1245 word images 24-1245-234 word imaginable 24-1245-45 word imaginables 24-1245-45-234 word imaginaire 24-1245-1235 word imaginaires 24-1245-1235-234 word imagination 24-1245-16 word immédiat 24-134 word immédiats 24-134-234 word immédiate 24-134-15 word immédiates 24-134-156 word immédiatement 24-134-134 word impression 246-235 word impressions 246-235-234 word impressionnable 246-235-45 word impressionnables 246-235-45-234 word inférieur 35-124 word inférieurs 35-124-234 word inférieure 35-124-15 word inférieures 35-124-156 word inférieurement 35-124-134 word infériorité 35-124-2345 word infériorités 35-124-2345-234 word inquiet 35-12345 word inquiets 35-12345-234 word inquiète 35-2346 word inquiètes 35-2346-234 word inquiétude 35-12345-145 word inquiétudes 35-12345-145-234 word intelligemment 35-1245-134 word intelligence 35-1245-14 word intelligent 35-1245 word intelligents 35-1245-234 word intelligente 35-1245-15 word intelligentes 35-1245-156 word intérieur 35-2345 word intérieurs 35-2345-234 word intérieure 35-2345-15 word intérieures 35-2345-156 word intérieurement 35-2345-134 word jadis 245-145 word jamais 245-134 word jeune 245-1345 word jeunes 245-1345-234 word jour 245-1235 word jours 245-1235-234 word journal 245-1235-123 word journaux 245-1235-1346 word joyeuse 245-234-15 word joyeuses 245-234-156 word joyeusement 245-234-134 word joyeux 245-1346 word juge 245-1245 word juges 245-1245-234 word jugement 245-1245-134 word jugements 245-1245-134-234 word jusque 245-12345 word juste 245-2345 word justes 245-2345-234 word justement 245-2345-134 word justice 245-14 word laquelle 123-123-123 word lecture 123-1235 word lectures 123-1235-234 word lequel 123-123 word lesquelles 123-123-123-234 word lesquels 123-123-234 word lettre 123-356 word lettres 123-356-234 word libéral 123-12-123 word libérale 123-12-123-15 word libérales 123-12-123-156 word libéralement 123-12-123-134 word libéralité 123-12-123-2345 word libéralités 123-12-123-2345-234 word libérateur 123-12-46 word libérateurs 123-12-46-234 word libération 123-12-16 word libérations 123-12-16-234 word libéraux 123-12-1346 word liberté 123-12-2345 word libertés 123-12-2345-234 word libre 123-12 word libres 123-12-234 word librement 123-12-134 word ligne 123-2356 word lignes 123-2356-234 word livre 123-1236 word livres 123-1236-234 word logique 123-1245-12345 word logiques 123-1245-12345-234 word logiquement 123-1245-12345-134 word loin 123-1345 word loins 123-1345-234 word lointain 123-1345-35 word lointains 123-1345-35-234 word lointaine 123-1345-1345 word lointaines 123-1345-1345-234 word longtemps 123-2345 word lorsque 123-12345 word lourd 123-145 word lourds 123-145-234 word lourde 123-145-15 word lourdes 123-145-156 word lourdement 123-145-134 word lourdeur 123-145-46 word lourdeurs 123-145-46-234 word lumière 123-134 word lumières 123-134-234 word lumineuse 123-134-234-15 word lumineuses 123-134-234-156 word lumineusement 123-134-234-134 word lumineux 123-134-1346 word luminosité 123-134-234-2345 word luminosités 123-134-234-2345-234 word madame 134-145 word mademoiselle 134-134 word magnificence 134-2356-14 word magnificences 134-2356-14-234 word magnifique 134-2356 word magnifiques 134-2356-234 word magnifiquement 134-2356-134 word maintenant 134-2345 word malgré 134-12456 word malheur 134-125 word malheurs 134-125-234 word malheureuse 134-125-234-15 word malheureuses 134-125-234-156 word malheureusement 134-125-234-134 word malheureux 134-125-1346 word manière 134-1345 word manières 134-1345-234 word mauvais 134-1236 word mauvaise 134-1236-15 word mauvaises 134-1236-156 word meilleur 134-123 word meilleurs 134-123-234 word meilleure 134-123-15 word meilleures 134-123-156 word merci 134-14 word mère 134-2346 word mères 134-2346-234 word mes 134-234 word mesdames 134-145-234 word mesdemoiselles 134-134-234 word messieurs 134-1235-234 word mettre 134-356 word mieux 134-1346 word mission 134-3456 word missions 134-3456-234 word missionnaire 134-3456-1235 word missionnaires 134-3456-1235-234 word mobile 134-12 word mobiles 134-12-234 word mobilisation 134-12-16 word mobilisations 134-12-16-234 word mobilité 134-12-2345 word mobilités 134-12-2345-234 word moins 134-35 word moment 134-26 word moments 134-26-234 word momentanément 134-26-134 word monsieur 134-1235 word multiple 134-1246 word multiples 134-1246-234 word multiplicateur 134-1246-46 word multiplicateurs 134-1246-46-234 word multiplication 134-1246-16 word multiplications 134-1246-16-234 word multiplicité 134-1246-2345 word multiplicités 134-1246-2345-234 word musique 134-12345 word musiques 134-12345-234 word mystère 134-13456 word mystères 134-13456-234 word mystérieuse 134-13456-234-15 word mystérieuses 134-13456-234-156 word mystérieusement 134-13456-234-134 word mystérieux 134-13456-1346 word naguère 1345-1245 word nation 1345-16 word nations 1345-16-234 word national 1345-16-123 word nationale 1345-16-123-15 word nationales 1345-16-123-156 word nationalité 1345-16-123-2345 word nationalités 1345-16-123-2345-234 word nationaux 1345-16-1346 word nature 1345-2345 word natures 1345-2345-234 word naturel 1345-2345-123 word naturels 1345-2345-123-234 word naturelle 1345-2345-123-123 word naturelles 1345-2345-123-123-234 word naturellement 1345-2345-123-134 word néanmoins 1345-134 word nécessaire 1345-14 word nécessaires 1345-14-234 word nécessairement 1345-14-134 word nécessité 1345-14-2345 word nécessités 1345-14-2345-234 word nécessiteuse 1345-14-2345-234-15 word nécessiteuses 1345-14-2345-234-156 word nécessiteux 1345-14-2345-1346 word nombre 1345-12 word nombres 1345-12-234 word nombreuse 1345-12-234-15 word nombreuses 1345-12-234-156 word nombreux 1345-12-1346 word nos 1345-234 word notre 1345-356 word nôtre 1345-1456 word nôtres 1345-1456-234 word nouveau 1345-1236 word nouveaux 1345-1236-1346 word nouveauté 1345-1236-2345 word nouveautés 1345-1236-2345-234 word nouvel 1345-123 word nouvelle 1345-123-123 word nouvelles 1345-123-123-234 word nouvellement 1345-123-134 word objectif 135-245-124 word objectifs 135-245-124-234 word objection 135-245-3456 word objections 135-245-3456-234 word objective 135-245-1236 word objectives 135-245-1236-234 word objectivement 135-245-1236-134 word objectivité 135-245-1236-2345 word objectivités 135-245-1236-2345-234 word objet 135-245 word objets 135-245-234 word observateur 135-12-46 word observateurs 135-12-46-234 word observation 135-12 word observations 135-12-234 word occasion 135-14 word occasions 135-14-234 word occasionnel 135-14-123 word occasionnels 135-14-123-234 word occasionnelle 135-14-123-123 word occasionnelles 135-14-123-123-234 word occasionnellement 135-14-123-134 word oeuvre 246-1236 word oeuvres 246-1236-234 word office 135-124 word offices 135-124-234 word officiel 135-124-123 word officiels 135-124-123-234 word officielle 135-124-123-123 word officielles 135-124-123-123-234 word officiellement 135-124-123-134 word officieuse 135-124-234-15 word officieuses 135-124-234-156 word officieusement 135-124-234-134 word officieux 135-124-1346 word opinion 135-1234 word opinions 135-1234-234 word ordinaire 56-145 word ordinaires 56-145-234 word ordinairement 56-145-134 word originaire 135-1245-1235 word originaires 135-1245-1235-234 word originairement 135-1245-1235-134 word original 135-1245-123 word originale 135-1245-123-15 word originales 135-1245-123-156 word originalement 135-1245-123-134 word originalité 135-1245-123-2345 word originalités 135-1245-123-2345-234 word originaux 135-1245-1346 word origine 135-1245 word origines 135-1245-234 word outrage 1256-356-1245 word outrages 1256-356-1245-234 word outrageuse 1256-356-1245-234-15 word outrageuses 1256-356-1245-234-156 word outrageusement 1256-356-1245-234-134 word outrageux 1256-356-1245-1346 word outre 1256-356 word ouvrage 1256-1245 word ouvrages 1256-1245-234 word ouvrier 1256-1236 word ouvriers 1256-1236-234 word ouvrière 1256-2346 word ouvrières 1256-2346-234 word parfois 1234-124 word parmi 1234-134 word parole 1234-1235 word paroles 1234-1235-234 word particularité 1234-1235-123-2345 word particularités 1234-1235-123-2345-234 word particulier 1234-123 word particuliers 1234-123-234 word particulière 1234-123-1235 word particulières 1234-123-1235-234 word particulièrement 1234-123-1235-134 word partout 1234-1 word pas 1234-234 word pauvre 1234-1236 word pauvres 1234-1236-234 word pauvrement 1234-1236-134 word pauvreté 1234-1236-2345 word pauvretés 1234-1236-2345-234 word pendant 1234-145 word pensée 1234-26 word pensées 1234-26-234 word pensif 1234-26-124 word pensifs 1234-26-124-234 word pensive 1234-26-1236 word pensives 1234-26-1236-234 word pensivement 1234-26-1236-134 word père 1234-2346 word pères 1234-2346-234 word personnage 1234-1345-1245 word personnages 1234-1345-1245-234 word personnalité 1234-1345-123-2345 word personnalités 1234-1345-123-2345-234 word personne 1234-1345 word personnes 1234-1345-234 word personnel 1234-1345-123 word personnels 1234-1345-123-234 word personnelle 1234-1345-123-123 word personnelles 1234-1345-123-123-234 word personnellement 1234-1345-123-134 word petit 1234-15 word petits 1234-15-234 word petite 1234-15-15 word petites 1234-15-156 word peuple 1234-1246 word peuples 1234-1246-234 word peuplement 1234-1246-134 word peuplements 1234-1246-134-234 word place 1246-14 word places 1246-14-234 word placement 1246-14-134 word placements 1246-14-134-234 word plaisir 1246-1235 word plaisirs 1246-1235-234 word plusieurs 1246-234 word plutôt 1246-2345 word point 1234-2345 word points 1234-2345-234 word pointe 1234-2345-15 word pointes 1234-2345-15-234 word populaire 1234-1234-1235 word populaires 1234-1234-1235-234 word populairement 1234-1234-1235-134 word popularité 1234-1234-1235-2345 word popularités 1234-1234-1235-2345-234 word population 1234-1234 word populations 1234-1234-234 word populeuse 1234-1234-234-15 word populeuses 1234-1234-234-156 word populeux 1234-1234-1346 word possibilité 1234-12-2345 word possibilités 1234-12-2345-234 word possible 1234-12 word possibles 1234-12-234 word pourquoi 1234-23456 word pourtant 1234-135 word praticable 235-2345-45 word praticables 235-2345-45-234 word pratique 235-2345 word pratiques 235-2345-234 word pratiquement 235-2345-134 word premier 235-134 word premiers 235-134-234 word première 235-1235 word premières 235-1235-234 word premièrement 235-1235-134 word près 235-234 word presque 235-12345 word preuve 235-1236 word preuves 235-1236-234 word primitif 235-134-124 word primitifs 235-134-124-234 word primitive 235-134-1236 word primitives 235-134-1236-234 word primitivement 235-134-1236-134 word principal 235-14-123 word principale 235-14-123-15 word principales 235-14-123-156 word principalement 235-14-123-134 word principaux 235-14-1346 word principe 235-14 word principes 235-14-234 word prix 235-1346 word probabilité 235-12-2345 word probabilités 235-12-2345-234 word probable 235-12 word probables 235-12-234 word probablement 235-12-134 word prochain 235-12356 word prochains 235-12356-234 word prochaine 235-1345 word prochaines 235-1345-234 word prochainement 235-1345-134 word producteur 235-145-46 word producteurs 235-145-46-234 word productif 235-145-124 word productifs 235-145-124-234 word production 235-145-3456 word productions 235-145-3456-234 word productive 235-145-1236 word productives 235-145-1236-234 word productivement 235-145-1236-134 word productivité 235-145-1236-2345 word productivités 235-145-1236-2345-234 word produit 235-145 word produits 235-145-234 word profit 235-124 word profits 235-124-234 word profitable 235-124-45 word profitables 235-124-45-234 word profiteur 235-124-46 word profiteurs 235-124-46-234 word profiteuse 235-124-234-15 word profiteuses 235-124-234-156 word progrès 235-12456 word progressif 235-12456-124 word progressifs 235-12456-124-234 word progression 235-12456-3456 word progressions 235-12456-3456-234 word progressive 235-12456-1236 word progressives 235-12456-1236-234 word progressivement 235-12456-1236-134 word projecteur 235-245-46 word projecteurs 235-245-46-234 word projection 235-245-3456 word projections 235-245-3456-234 word projet 235-245 word projets 235-245-234 word proportion 235-1234 word proportions 235-1234-234 word proportionnalité 235-1234-123-2345 word proportionnalités 235-1234-123-2345-234 word proportionnel 235-1234-123 word proportionnels 235-1234-123-234 word proportionnelle 235-1234-123-123 word proportionnelles 235-1234-123-123-234 word proportionnellement 235-1234-123-134 word proposition 235-246 word propositions 235-246-234 word puisque 1234-12345 word puissance 1234-14 word puissances 1234-14-234 word qualitatif 12345-123-2345-124 word qualitatifs 12345-123-2345-124-234 word qualitative 12345-123-2345-1236 word qualitatives 12345-123-2345-1236-234 word qualitativement 12345-123-2345-1236-134 word qualité 12345-123-2345 word qualités 12345-123-2345-234 word quand 12345-145 word quant 12345-2345 word quantitatif 12345-2345-2345-124 word quantitatifs 12345-2345-2345-124-234 word quantitative 12345-2345-2345-1236 word quantitatives 12345-2345-2345-1236-234 word quantitativement 12345-2345-2345-1236-134 word quantité 12345-2345-2345 word quantités 12345-2345-2345-234 word quel 12345-123 word quels 12345-123-234 word quelle 12345-123-123 word quelles 12345-123-123-234 word quelconque 12345-14 word quelconques 12345-14-234 word quelque 12345-12345 word quelques 12345-12345-234 word quelquefois 12345-124 word question 12345-3456 word questions 12345-3456-234 word questionnaire 12345-3456-1235 word questionnaires 12345-3456-1235-234 word quiconque 12345-346 word quoique 12345-15 word raison 1235-346 word raisons 1235-346-234 word raisonnable 1235-346-45 word raisonnables 1235-346-45-234 word raisonnablement 1235-346-45-134 word raisonnement 1235-346-134 word raisonnements 1235-346-134-234 word rapport 1235-1234 word rapports 1235-1234-234 word rapporteur 1235-1234-46 word rapporteurs 1235-1234-46-234 word rare 1235-1235 word rares 1235-1235-234 word rarement 1235-1235-134 word rareté 1235-1235-2345 word raretés 1235-1235-2345-234 word réalisable 1235-123-45 word réalisables 1235-123-45-234 word réalisateur 1235-123-46 word réalisateurs 1235-123-46-234 word réalisation 1235-123-16 word réalisations 1235-123-16-234 word réalité 1235-123-2345 word réalités 1235-123-2345-234 word réel 1235-123 word réels 1235-123-234 word réelle 1235-123-123 word réelles 1235-123-123-234 word réellement 1235-123-134 word réflexion 1235-124 word réflexions 1235-124-234 word regard 1235-1245 word regards 1235-1245-234 word regret 1235-12456 word regrets 1235-12456-234 word regrettable 1235-12456-45 word regrettables 1235-12456-45-234 word relatif 1235-2345-124 word relatifs 1235-2345-124-234 word relation 1235-2345 word relations 1235-2345-234 word relative 1235-2345-1236 word relatives 1235-2345-1236-234 word relativement 1235-2345-1236-134 word relativité 1235-2345-1236-2345 word relativités 1235-2345-1236-2345-234 word remarquable 1235-12345-45 word remarquables 1235-12345-45-234 word remarquablement 1235-12345-45-134 word remarque 1235-12345 word remarques 1235-12345-234 word remerciement 1235-134 word remerciements 1235-134-234 word renseignement 1235-26 word renseignements 1235-26-234 word rêve 1235-126 word rêves 1235-126-234 word rêveur 1235-126-46 word rêveurs 1235-126-46-234 word rêveuse 1235-126-234-15 word rêveuses 1235-126-234-156 word rêveusement 1235-126-234-134 word rôle 1235-1456 word rôles 1235-1456-234 word route 1235-1256 word routes 1235-1256-234 word rythme 1235-13456 word rythmes 1235-13456-234 word rythmique 1235-13456-12345 word rythmiques 1235-13456-12345-234 word rythmiquement 1235-13456-12345-134 word séculaire 234-14-1235 word séculaires 234-14-1235-234 word séculairement 234-14-1235-134 word seigneur 234-2356 word seigneurs 234-2356-234 word semblable 234-12 word semblables 234-12-234 word semblablement 234-12-134 word sentiment 234-2345-134 word sentiments 234-2345-134-234 word sentimental 234-2345-134-123 word sentimentale 234-2345-134-123-15 word sentimentales 234-2345-134-123-156 word sentimentalement 234-2345-134-123-134 word sentimentalité 234-2345-134-123-2345 word sentimentalités 234-2345-134-123-2345-234 word sentimentaux 234-2345-134-1346 word ses 234-234 word seul 234-123 word seuls 234-123-234 word seule 234-123-15 word seules 234-123-156 word seulement 234-123-134 word siècle 234-14 word siècles 234-14-234 word simple 234-1246 word simples 234-1246-234 word simplement 234-1246-134 word simplicité 234-1246-2345 word simplicités 234-1246-2345-234 word simplification 234-1246-16 word simplifications 234-1246-16-234 word soeur 234-1235 word soeurs 234-1235-234 word soin 234-35 word soins 234-35-234 word solitaire 234-123-1235 word solitaires 234-123-1235-234 word solitairement 234-123-1235-134 word solitude 234-123-145 word solitudes 234-123-145-234 word sommaire 234-2456-1235 word sommaires 234-2456-1235-234 word sommairement 234-2456-1235-134 word somme 234-2456 word sommes 234-2456-234 word sont 234-2345 word sorte 234-135 word sortes 234-135-234 word soudain 234-145 word soudains 234-145-234 word soudaine 234-1345 word soudaines 234-1345-234 word soudainement 234-1345-134 word soudaineté 234-1345-2345 word soudainetés 234-1345-2345-234 word souffrance 234-124-14 word souffrances 234-124-14-234 word souffrant 234-124 word souffrants 234-124-234 word souffrante 234-124-15 word souffrantes 234-124-156 word souvent 234-1236 word subjectif 234-245-124 word subjectifs 234-245-124-234 word subjective 234-245-1236 word subjectives 234-245-1236-234 word subjectivement 234-245-1236-134 word subjectivité 234-245-1236-2345 word subjectivités 234-245-1236-2345-234 word sujet 234-245 word sujets 234-245-234 word sujétion 234-245-3456 word sujétions 234-245-3456-234 word supérieur 234-1234 word supérieurs 234-1234-234 word supérieure 234-1234-15 word supérieures 234-1234-156 word supérieurement 234-1234-134 word supériorité 234-1234-2345 word supériorités 234-1234-2345-234 word surtout 234-2345 word systématique 234-13456-12345 word systématiques 234-13456-12345-234 word systématiquement 234-13456-12345-134 word système 234-13456 word systèmes 234-13456-234 word tel 2345-123 word tels 2345-123-234 word telle 2345-123-123 word telles 2345-123-123-234 word tellement 2345-123-134 word temporaire 2345-1234-1235 word temporaires 2345-1234-1235-234 word temporairement 2345-1234-1235-134 word temporel 2345-1234-123 word temporels 2345-1234-123-234 word temporelle 2345-1234-123-123 word temporelles 2345-1234-123-123-234 word temps 2345-1234 word tenir 2345-1345 word terre 2345-1235 word terres 2345-1235-234 word tes 2345-234 word tête 2345-126 word têtes 2345-126-234 word théorie 2345-125 word théories 2345-125-234 word théorique 2345-125-12345 word théoriques 2345-125-12345-234 word théoriquement 2345-125-12345-134 word titre 2345-356 word titres 2345-356-234 word toujours 2345-245 word toute 2345-2345 word toutes 2345-2345-234 word toutefois 2345-124 word tragique 356-1245 word tragiques 356-1245-234 word tragiquement 356-1245-134 word trajet 356-245 word trajets 356-245-234 word tranquille 356-12345 word tranquilles 356-12345-234 word tranquillement 356-12345-134 word tranquillité 356-12345-2345 word tranquillités 356-12345-2345-234 word travail 356-123 word travailleur 356-123-46 word travailleurs 356-123-46-234 word travailleuse 356-123-234-15 word travailleuses 356-123-234-156 word travaux 356-1346 word travers 356-1236 word très 356-234 word trop 356-1234 word type 2345-13456 word types 2345-13456-234 word typique 2345-13456-12345 word typiques 2345-13456-12345-234 word typiquement 2345-13456-12345-134 word une 136-1345 word unes 136-1345-234 word unique 136-12345 word uniques 136-12345-234 word uniquement 136-12345-134 word unitaire 136-1345-2345-1235 word unitaires 136-1345-2345-1235-234 word unité 136-1345-2345 word unités 136-1345-2345-234 word univers 136-1236 word universalité 136-1236-123-2345 word universalités 136-1236-123-2345-234 word universel 136-1236-123 word universels 136-1236-123-234 word universelle 136-1236-123-123 word universelles 136-1236-123-123-234 word universellement 136-1236-123-134 word universitaire 136-1236-2345-1235 word universitaires 136-1236-2345-1235-234 word université 136-1236-2345 word universités 136-1236-2345-234 word usage 136-1245 word usages 136-1245-234 word utile 136-123 word utiles 136-123-234 word utilement 136-123-134 word utilisable 136-123-45 word utilisables 136-123-45-234 word utilisateur 136-123-46 word utilisateurs 136-123-46-234 word utilisation 136-123-16 word utilisations 136-123-16-234 word utilitaire 136-123-2345-1235 word utilitaires 136-123-2345-1235-234 word utilité 136-123-2345 word utilités 136-123-2345-234 word valeur 1236-46 word valeurs 1236-46-234 word venir 1236-1345 word véritable 1236-1235 word véritables 1236-1235-234 word véritablement 1236-1235-134 word vérité 1236-123456 word vérités 1236-123456-234 word vieux 1236-1346 word vif 1236-124 word vifs 1236-124-234 word vive 1236-1236 word vives 1236-1236-234 word vivement 1236-1236-134 word voici 1236-14 word voilà 1236-123 word volontaire 1236-135-1235 word volontaires 1236-135-1235-234 word volontairement 1236-135-1235-134 word volonté 1236-135 word volontés 1236-135-234 word volontiers 1236-346 word vos 1236-234 word votre 1236-356 word vôtre 1236-1456 word vôtres 1236-1456-234 word voyage 1236-1245 word voyages 1236-1245-234 word voyageur 1236-1245-46 word voyageurs 1236-1245-46-234 word voyageuse 1236-1245-234-15 word voyageuses 1236-1245-234-156 word vraiment 1236-134 ### ### 4. Locutions ### word à\scause 12356-456-14 word à\smesure 12356-456-134 word à\speine 12356-456-1234 word à\speu\sprès 12356-456-1234-456-235 word à\sprésent 12356-456-235 word à\stravers 12356-456-356 word au\scontraire 13-456-14 word au-dessous 13-36-1256 word au-dessus 13-36-145 word aujourd'hui 13-3-125 word autant\sque 13-456-12345 word autre\schose 13-456-12356 word autre\spart 13-456-1234 word c'est-à-dire 14-3-15-36-12356-36-145 word d'abord 145-3-1 word de\ssuite 145-456-234 word en\smesure 26-456-134 word en\sréalité 26-456-1235 word et\scétera 15-456-14 word la\splupart 123-456-1246 word non\sseulement 1345-456-234 word parce\sque 1234-456-12345 word par\sconséquent 1234-456-14 word par-dessous 1234-36-1256 word par-dessus 1234-36-145 word par\sexemple 1234-456-15 word par\ssuite 1234-456-234 word peu\sà\speu 1234-456-12356-456-1234 word peut-être 1234-36-126 word plus\stard 1246-456-2345 word plus\stôt 1246-456-1456 word pour\sainsi\sdire 1234-456-1-456-145 word quelque\schose 12345-456-12356 word quelque\spart 12345-456-1234 word quelque\stemps 12345-456-2345 word sans\scesse 234-456-14 word sans\sdoute 234-456-145 word tandis\sque 2345-456-12345 word tour\sà\stour 2345-456-12356-456-2345 word tout\sà\scoup 16-456-12356-456-14 word tout\sà\sfait 16-456-12356-456-124 word très\sbien 356-456-12 word vis-à-vis 1236-36-12356-36-1236 sufword jusqu' 245-12345-3 sufword lorsqu' 123-12345-3 sufword parce\squ' 1234-456-12345-3 liblouis-2.5.3/tables/litdigits6Dots.uti0000664000175000017500000000022112161041546015172 00000000000000litdigit 0 245 litdigit 1 1 litdigit 2 12 litdigit 3 14 litdigit 4 145 litdigit 5 15 litdigit 6 124 litdigit 7 1245 litdigit 8 125 litdigit 9 24 liblouis-2.5.3/tables/cs-g1.ctb0000664000175000017500000000247212161041546013151 00000000000000# # Copyright (C) 2011 by Bert Frees # Copyright (C) 2011 by Jan Halousek # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #-------------------------------------------------------------------------------- # # Czech Braille # # Created and maintained by Bert Frees # Jan Halousek # # Based on the official Czech Braille Standard # ------------------------------------------------------------------------------- include cs-chardefs.cti include braille-patterns.cti include cs-translation.cti # ------------------------------------------------------------------------------- liblouis-2.5.3/tables/he.ctb0000664000175000017500000001545412161041546012637 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2009 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Hebrew # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 # SPACE punctuation ! 2358 # EXCLAMATION MARK punctuation " 23568 # QUOTATION MARK punctuation # 34568 # NUMBER SIGN punctuation $ 12468 # DOLLAR SIGN punctuation % 1468 # PERCENT SIGN punctuation & 23468 # AMPERSAND punctuation ' 3 # APOSTROPHE punctuation ( 2368 # LEFT PARENTHESIS punctuation ) 3568 # RIGHT PARENTHESIS punctuation * 358 # ASTERISK punctuation + 3468 # PLUS SIGN punctuation , 28 # COMMA punctuation - 36 # HYPHEN-MINUS punctuation . 2568 # FULL STOP punctuation / 348 # SOLIDUS include loweredDigits6Dots.uti punctuation : 258 # COLON punctuation ; 238 # SEMICOLON punctuation < 1268 # LESS-THAN SIGN punctuation = 1234568 # EQUALS SIGN punctuation > 3458 # GREATER-THAN SIGN punctuation ? 268 # QUESTION MARK punctuation @ 47 # COMMERCIAL AT uppercase A 178 # LATIN CAPITAL LETTER A uppercase B 1278 # LATIN CAPITAL LETTER B uppercase C 1478 # LATIN CAPITAL LETTER C uppercase D 14578 # LATIN CAPITAL LETTER D uppercase E 1578 # LATIN CAPITAL LETTER E uppercase F 12478 # LATIN CAPITAL LETTER F uppercase G 124578 # LATIN CAPITAL LETTER G uppercase H 12578 # LATIN CAPITAL LETTER H uppercase I 2478 # LATIN CAPITAL LETTER I uppercase J 24578 # LATIN CAPITAL LETTER J uppercase K 1378 # LATIN CAPITAL LETTER K uppercase L 12378 # LATIN CAPITAL LETTER L uppercase M 13478 # LATIN CAPITAL LETTER M uppercase N 134578 # LATIN CAPITAL LETTER N uppercase O 13578 # LATIN CAPITAL LETTER O uppercase P 123478 # LATIN CAPITAL LETTER P uppercase Q 1234578 # LATIN CAPITAL LETTER Q uppercase R 123578 # LATIN CAPITAL LETTER R uppercase S 23478 # LATIN CAPITAL LETTER S uppercase T 234578 # LATIN CAPITAL LETTER T uppercase U 13678 # LATIN CAPITAL LETTER U uppercase V 123678 # LATIN CAPITAL LETTER V uppercase W 245678 # LATIN CAPITAL LETTER W uppercase X 134678 # LATIN CAPITAL LETTER X uppercase Y 1345678 # LATIN CAPITAL LETTER Y uppercase Z 135678 # LATIN CAPITAL LETTER Z punctuation [ 123568 # LEFT SQUARE BRACKET punctuation \\ 168 # REVERSE SOLIDUS punctuation ] 234568 # RIGHT SQUARE BRACKET punctuation ^ 457 # CIRCUMFLEX ACCENT punctuation _ 456 # LOW LINE punctuation ` 4 # GRAVE ACCENT lowercase a 18 # LATIN SMALL LETTER A lowercase b 128 # LATIN SMALL LETTER B lowercase c 148 # LATIN SMALL LETTER C lowercase d 1458 # LATIN SMALL LETTER D lowercase e 158 # LATIN SMALL LETTER E lowercase f 1248 # LATIN SMALL LETTER F lowercase g 12458 # LATIN SMALL LETTER G lowercase h 1258 # LATIN SMALL LETTER H lowercase i 248 # LATIN SMALL LETTER I lowercase j 2458 # LATIN SMALL LETTER J lowercase k 138 # LATIN SMALL LETTER K lowercase l 1238 # LATIN SMALL LETTER L lowercase m 1348 # LATIN SMALL LETTER M lowercase n 13458 # LATIN SMALL LETTER N lowercase o 1358 # LATIN SMALL LETTER O lowercase p 12348 # LATIN SMALL LETTER P lowercase q 123458 # LATIN SMALL LETTER Q lowercase r 12358 # LATIN SMALL LETTER R lowercase s 2348 # LATIN SMALL LETTER S lowercase t 23458 # LATIN SMALL LETTER T lowercase u 1368 # LATIN SMALL LETTER U lowercase v 12368 # LATIN SMALL LETTER V lowercase w 24568 # LATIN SMALL LETTER W lowercase x 13468 # LATIN SMALL LETTER X lowercase y 134568 # LATIN SMALL LETTER Y lowercase z 13568 # LATIN SMALL LETTER Z punctuation { 23678 # LEFT CURLY BRACKET punctuation | 12568 # VERTICAL LINE punctuation } 35678 # RIGHT CURLY BRACKET punctuation ~ 45 # TILDE punctuation \x00a0 0 # NO-BREAK SPACE punctuation \x05b1 26 # HEBREW POINT HATAF SEGOL punctuation \x05b2 25 # HEBREW POINT HATAF PATAH punctuation \x05b3 345 # HEBREW POINT HATAF QAMATS punctuation \x05b4 24 # HEBREW POINT HIRIQ punctuation \x05b5 34 # HEBREW POINT TSERE punctuation \x05b6 15 # HEBREW POINT SEGOL punctuation \x05b7 14 # HEBREW POINT PATAH punctuation \x05b8 126 # HEBREW POINT QAMATS punctuation \x05b9 135 # HEBREW POINT HOLAM punctuation \x05bb 136 # HEBREW POINT QUBUTS letter \x05d0 1 # HEBREW LETTER ALEF letter \x05d1 1236 # HEBREW LETTER BET letter \x05d2 1245 # HEBREW LETTER GIMEL letter \x05d3 145 # HEBREW LETTER DALET letter \x05d4 125 # HEBREW LETTER HE letter \x05d5 2456 # HEBREW LETTER VAV letter \x05d6 1356 # HEBREW LETTER ZAYIN letter \x05d7 1346 # HEBREW LETTER HET letter \x05d8 2345 # HEBREW LETTER TET letter \x05d9 245 # HEBREW LETTER YOD letter \x05da 16 # HEBREW LETTER FINAL KAF letter \x05db 16 # HEBREW LETTER KAF letter \x05dc 123 # HEBREW LETTER LAMED letter \x05dd 134 # HEBREW LETTER FINAL MEM letter \x05de 134 # HEBREW LETTER MEM letter \x05df 1345 # HEBREW LETTER FINAL NUN letter \x05e0 1345 # HEBREW LETTER NUN letter \x05e1 234 # HEBREW LETTER SAMEKH letter \x05e2 1246 # HEBREW LETTER AYIN letter \x05e3 124 # HEBREW LETTER FINAL PE letter \x05e4 124 # HEBREW LETTER PE letter \x05e5 2346 # HEBREW LETTER FINAL TSADI letter \x05e6 2346 # HEBREW LETTER TSADI letter \x05e7 12345 # HEBREW LETTER QOF letter \x05e8 1235 # HEBREW LETTER RESH letter \x05e9 146 # HEBREW LETTER SHIN letter \x05ea 1456 # HEBREW LETTER TAV space \x2002 0 # EN SPACE space \x2003 0 # EM SPACE space \x2004 0 # THREE-PER-EM SPACE space \x2005 0 # FOUR-PER-EM SPACE space \x2006 0 # SIX-PER-EM SPACE punctuation \x2007 0 # FIGURE SPACE space \x2008 0 # PUNCTUATION SPACE space \x2009 0 # THIN SPACE space \x200a 0 # HAIR SPACE punctuation \x202f 0 # NARROW NO-BREAK SPACE space \x205f 0 # MEDIUM MATHEMATICAL SPACE letter \xfb1d 35 # HEBREW LETTER YOD WITH HIRIQ letter \xfb2a 146 # HEBREW LETTER SHIN WITH SHIN DOT letter \xfb2b 156 # HEBREW LETTER SHIN WITH SIN DOT letter \xfb31 12 # HEBREW LETTER BET WITH DAGESH letter \xfb35 346 # HEBREW LETTER VAV WITH DAGESH letter \xfb3a 13 # HEBREW LETTER FINAL KAF WITH DAGESH letter \xfb3b 13 # HEBREW LETTER KAF WITH DAGESH letter \xfb43 1234 # HEBREW LETTER FINAL PE WITH DAGESH letter \xfb44 1234 # HEBREW LETTER PE WITH DAGESH letter \xfb4a 1256 # HEBREW LETTER TAV WITH DAGESH liblouis-2.5.3/tables/de-ch-g2.ctb0000664000175000017500000000220612161041546013520 00000000000000# liblouis: Swiss German Grade 2 Braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE KURZSCHRIFT - German Grade 2 Braille - Switzerland # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include de-ch-g0.utb letsign 6 include de-g2-core.cti liblouis-2.5.3/tables/digits8Dots.uti0000664000175000017500000000017512161041546014473 00000000000000digit 0 2458 digit 1 18 digit 2 128 digit 3 148 digit 4 1458 digit 5 158 digit 6 1248 digit 7 12458 digit 8 1258 digit 9 248 liblouis-2.5.3/tables/hyph_de_DE.dic0000664000175000017500000010770112161041546014217 00000000000000ISO8859-1 .aa6l .ab3a4s .ab3ei .abi2 .ab3it .ab1l .ab1r .ab3u .ad3o4r .alti6 .ana3c .an5alg .an1e .ang8s2t1 .an1s .ap1p .ar6sc .ar6ta .ar6tei .as2z .au2f1 .au2s3 .be5erb .be3na .ber6t5r .bie6r5 .bim6s5t .brot3 .bru6s .ch6 .che6f5 .da8c .da2r .dar5in .dar5u .den6ka .de5r6en .des6pe .de8spo .de3sz .dia3s4 .dien4 .dy2s1 .ehren5 .eine6 .ei6n5eh .ei8nen .ein5sa .en6der .en6d5r .en3k4 .en8ta8 .en8tei .en4t3r .epo1 .er6ban .er6b5ei .er6bla .er6d5um .er3ei .er5er .er3in .er3o4b .erwi5s .es1p .es8t1l .es8t1n .ex1a2 .ex3em .fal6sc .fe6st5a .flu4g3 .furch8 .ga6ner .ge3n4a .ge5rö .ges6 .halb5 .halbe6 .hal6br .haup4 .hau4t .heima6 .he4r3e .her6za .he5x .hin3 .hir8sc .ho4c .hu3sa .hy5o .ibe5 .ima6ge .in1 .ini6 .is5chi .jagd5 .kal6k5o .ka6ph .ki4e .kop6f3 .kraf6 .kü5ra .lab6br .liie6 .lo6s5k .lö4s3t .ma5d .mi2t1 .no6th .no6top .obe8ri .ob1l .obs2 .ob6st5e .or3c .ort6s5e .ost3a .oste8r .pe4re .pe3ts .ph6 .po8str .rau4m3 .re5an .ro8q .ru5the .rü5be .sch8 .se6e .se5n6h .se5ra .si2e .spi6ke .st4 .sy2n .tages5 .tan6kl .ta8th .te6e .te8str .to6der .to8nin .to6we .um1 .umpf4 .un1 .une6 .unge5n .ur1c .ur5en .ve6rin .vora8 .wah6l5 .we8ges .we8s2t .wes3te .wo6r .wor3a .wun4s .zi4e .zuch8 .ände8re .öch8 aa1c aa2gr aal5e aa6r5a a5arti aa2s1t aat2s 6aba ab3art 1abdr 6abel aben6dr ab5erk ab5err ab5esse 1abf 1abg 1abhä ab1ir 1abko a1bl ab1la 5ablag a6blaß ab4ler ab1lu a8blä 5a6blö abma5c 1abn ab1ra ab1re 5a6brec ab1ro ab1s ab8sk abs2z 3abtei ab1ur 1abw 5abze 5abzu ab1än abäu8 a4ce. a5chal ach5art ach5au a1che a8chent ach6er. a6ch5erf a1chi ach1l ach3m ach5n a1cho ach3re a1chu ach1w a1chy ach5äf ack1o acks6t ack5sta a1d 8ad. a6d5ac ad3ant ad8ar 5addi a8dein ade5o8 adi5en 1adj 1adle ad1op a2dre 3adres adt1 1adv a6dä a1e2d ae1r a1er. 1aero 8afa a3fal af1an a5far a5fat af1au a6fentl a2f1ex af1fr af5rau af1re 1afri af6tent af6tra aft5re a6f5um 8afä ag5abe 5a4gent ag8er ages5e 1aggr ag5las ag1lo a1gn ag2ne 1agog a6g5und a1ha a1he ah5ein a4h3erh a1hi ahl1a ah1le ah4m3ar ahn1a a5ho ahra6 ahr5ab ah1re ah8rei ahren8s ahre4s3 ahr8ti ah1ru a1hu ah8ö ai3d2s ai1e aif6 a3inse ai4re. a5isch. ais8e a3ismu ais6n aiso6 a1j 1akad a4kade a1ke a1ki 1akko 5akro1 a5lal al5ans 3al8arm al8beb al8berw alb5la 3album al1c a1le a6l5e6be a4l3ein a8lel a8lerb a8lerh a6lert 5a6l5eth 1algi al4gli al3int al4lab al8lan al4l3ar alle3g a1lo a4l5ob al6schm al4the al4t3re 8a1lu alu5i a6lur alu3ta a1lä a6mate 8ame. 5a6meise am6m5ei am6mum am2n ampf3a am6schw am2ta a1mu a1mä a3nac a1nad anadi5e an3ako an3alp 3analy an3ame an3ara a1nas an5asti a1nat anat5s an8dent ande4s3 an1ec an5eis an1e2k 4aner. a6n5erd a8nerf a6n5erke 1anfa 5anfert 1anfä 3angab 5angebo an3gli ang6lis an2gn 3angri ang5t6 5anhä ani5g ani4ka an5i8on an1kl an6kno an4kro 1anl anma5c anmar4 3annah anne4s3 a1no 5a6n1o2d 5a6n3oma 5a6nord 1anr an1sa 5anschl an4soz an1st 5anstal an1s2z 5antenn an1th 5anwä a5ny an4z3ed 5anzeig 5anzieh 3anzug an1ä 5anäs a1nö anö8d a1os a1pa 3apfel a2ph1t aph5ä6 a1pi 8apl apo1c apo1s a6pos2t a6poth 1appa ap1pr a1pr a5pä a3pü a1ra a4r3af ar3all 3arbei 2arbt ar1c 2a1re ar3ein ar2gl 2a1ri ari5es ar8kers ar6les ar4nan ar5o6ch ar1o2d a1rol ar3ony a8ror a3ros ar5ox ar6schl 8artei ar6t5ri a1ru a1ry 1arzt arz1w ar8zä arä8m arö6 ar5öm ar1ü2 a1sa a6schec asch5l asch3m a6schn a3s4hi as1pa asp5l as5tev 1asth a1str ast3re 8a1ta ata5c ata3la a6tapf ata5pl a1te a6teli aten5a ate5ran 6atf 6atg a1th at3hal 1athl 2a1ti 5atlant 3atlas 8atmus 6atn a1to a6t5ops ato6ra a6t5ort. 4a1tr a6t5ru at2t1h at5t6hä 6a1tu atz1w a1tä a1tü au1a au6bre auch3a au1e aue4l 5aufent 3auffü 3aufga 1aufn auf1t 3auftr 1aufw 3auge. au4kle aule8s 6aum au8mar aum5p 1ausb 3ausd 1ausf 1ausg au8sin au4sta 1ausw 1ausz aut5eng au1th 1auto auße8 a1v ave5r6a aver6i a1w a6wes a1x a2xia a6xio a1ya a1z azi5er. 8aß 1ba 8ba8del ba1la ba1na ban6k5r ba5ot bardi6n ba1ro basten6 bau3sp 2b1b bb6le b2bli 2b1c 2b1d 1be be1a be8at. be1ch 8becht 8becke. be5el be1en bee8rei be5eta bef2 8beff be1g2 behö8 bei1s 6b5eisen bei3tr b8el bel8o belu3t be3nac bend6o be6ners be6nerw be4nor ben4se6 bens5el be1nä be1nü be1o2 b8er. be1ra be8rac ber8gab. ber1r be1rü bes8c bes5erh bes2p be5tha bet5sc be1un be1ur 8bex be6zwec 2b1f8 2b1g2 bga2s5 bge1 2b1h bhole6 1bi bi1bl b6ie bi1el bi1la bilä5 bi1na bi4nok bi6stu bi5tr bit4t5r b1j 2b1k2 bkü6 bl8 b6la. 6b1lad 6blag 8blam 1blat b8latt 3blau. b6lav 3ble. b1leb b1led 8b1leg 8b1leh 8bleid 8bleih 6b3lein ble4m3o 4blich b4lind 8bling b2lio 5blit b4litz b1loh 8b1los 1blu 5blum 2blun blut3a blut5sc 3blä bläs5c 5blö 3blü blü8sc 2b1m 2b1n 1bo bo1ch bo5d6s boe5 8boff 8bonk bo1ra b1ort 2b1p2 b1q 1br brail6 brast8 bre4a b5red 8bref 8b5riem b6riga bro1s b1rup b2ruz 8bröh brös5c 8bs b1sa b8sang b2s1ar b1sc bs3erl bs3erz b8sof b1s2p bst1h b3stru b5stä b6sun 2b1t b2t1h 1bu bu1ie bul6k b8ure bu6sin 6b1v 2b1w 1by1 by6te. 8b1z 1bä b5ä6s5 1bü b6ü5bere büge6 bügel5e bür6sc 1ca cag6 ca5la ca6re ca5y c1c 1ce celi4c celich5 ce1ro c8h 2ch. 1chae ch1ah ch3akt cha6mer 8chanz 5chara 3chari 5chato 6chb 1chef 6chei ch3eil ch3eis 6cherkl 6chf 4chh 5chiad 5chias 6chins 8chj chl6 5chlor 6ch2m 2chn6 ch8nie 5cho. 8chob choi8d 6chp ch3ren ch6res ch3rü 2chs 2cht cht5ha cht3hi 5chthon ch6tin 6chuh chu4la 6ch3unt chut6t 8chw 1ci ci5tr c2k 2ck. ck1ei 4ckh ck3l ck3n ck5o8f ck1r 2cks ck5stra ck6s5u c2l 1c8o con6ne 8corb cos6t c3q 1c6r 8c1t 1cu 1cy 5cä1 cö5 1da. 8daas 2dabg 8dabr 6dabt 6dabw 1dac da2gr 6d5alk 8d5amt dan6ce. dani5er dan8ker 2danl danla6 6dans 8danzi 6danzu d1ap da2r1a8 2d1arb d3arc dar6men 4d3art 8darz 1dat 8datm 2d1auf 2d1aus 2d1b 2d1c 2d1d d5de d3d2h ddämme8 1de 2deal de5an de3cha de1e defe6 6deff 2d1ehr 5d4eic de5isc de8lar del6s5e del6spr de4mag de8mun de8nep dene6r 8denge. 8dengen de5o6d 2deol de5ram 8derdb der5ein de1ro der1r d8ers der5um de4s3am de4s3an de4sau de6sil de4sin de8sor de4spr de2su 8deul de5us. 2d1f df2l 2d1g 2d1h 1di dia5c di5ara dice5 di3chr di5ena di1gn di1la dil8s di1na 8dind 6dinf 4d3inh 2d1ins di5o6d di3p4t di8sen dis1p di5s8per di6s5to dis3tr di8tan di8tin d1j 6dje 2dju 2d1k 2d1l 2d1m 2d1n6 dni6 dnje6 1do 6d5obe do6berf 6d5ony do3ran 6dord 2d1org dor4t3h 6doth dott8e 2d1p d5q dr4 1drah 8drak d5rand 6dre. 4drech d6reck 4d3reg 8d3reic d5reife 8drem 8d1ren 2drer 8dres. 6d5rh 1dria d1ric 8drind droi6 dro5x 1dru 8drut drös5c 1drü drü5b drü8sc 2ds d1sa d6san dsat6 d1sc 5d6scha. 5dschik dse8e d8serg 8dsl d1sp d4spak ds2po d8spä d1st d1sü 2dt d1ta d1te d1ti d1to dt1s6 d1tu d5tä 1du du5als du1b6 du1e duf4t3r 4d3uh du5ie 8duml 8dumw 2d1und du8ni 6d5unt dur2c durch3 6durl 6dursa 8durt dus1t du8schr 2d1v 2d1w dwa8l 2d1z 1dä 6däh 8dänd dä6r dö8bl d5öl dör6fl dö8sc d5ö4st 1dü ea4ben e1ac e1ah e1akt e1al. e5alf e1alg e5a8lin e1alk e1all e5alp e1alt e5alw e1am e1and ea6nim e1ar. e5arf e1ark e5arm e3art e5at. e6ate e6a5t6l e8ats e5att e6au. e1aus e1b e6b5am ebens5e eb4lie eb4ser eb4s3in e1che e8cherz e1chi ech3m 8ech3n ech1r ech8send ech4su e1chu eck5an e5cl e1d ee5a ee3e ee5g e1ei ee5isc eei4s3t ee6lend e1ell ee5lö e1erd ee3r4e ee8reng eere6s5 ee5rä ee6tat e1ex e1f e6fau e8fe8b 3effek ef3rom ege6ra eglo6si 1egy e1ha e6h5ach eh5ans e6hap eh5auf e1he e1hi ehl3a eh1le ehl5ein eh1mu ehn5ec e1ho ehr1a eh1re ehre6n eh1ri eh1ru ehr5um e1hu eh1w e1hy e1hä e1hö e3hüt ei1a eia6s ei6bar eich3a eich5r ei4dar ei6d5ei ei8derf ei3d4sc ei1e 8eifen 3eifri 1eign eil1d ei6mab ei8mag ein1a4 ei8nat ei8nerh ei8ness ei6nete ein1g e8ini ein1k ei6n5od ei8nok ei4nor e3insä ei1o e1irr ei5ru ei8sab ei5schn ei6s5ent ei8sol ei4t3al eit3ar eit1h ei6thi ei8tho eit8samt ei6t5um e1j 1ekd e1ke e1ki e1k2l e1kn ekni4 e1la e2l1al 6elan e6lanf e8lanl e6l5ans el3arb el3arm e6l3art 5e6lasti e6lauge elbst5a e1le 6elef ele6h e6l5ehe e8leif e6l5einh 1elek e8lel 3eleme e6lemen e6lente el5epi e4l3err e6l5ersc elf2l elg2 e6l5ins ell8er 4e1lo e4l3ofe el8soh el8tent 5eltern e1lu elut2 e1lä e1lü em8dei em8meis 4emo emo5s 1emp1f 1empt 1emto e1mu emurk4 emurks5 e1mä en5a6ben en5achs en5ack e1nad en5af en5all en3alt en1am en3an. en3ant en3anz en1a6p en1ar en1a6s 6e1nat en3auf en3aus en2ce enda6l end5erf end5erg en8dess 4ene. en5eck e8neff e6n5ehr e6n5eim en3eis 6enem. 6enen e4nent 4ener. e8nerd e6n3erf e4nerg 5energi e6n5erla en5ers e6nerst en5erw 6enes e6n5ess e2nex en3glo 2eni enni6s5 ennos4 enns8 e1no e6nober eno8f en5opf e4n3ord en8sers ens8kl en1sp ens6por en5t6ag enta5go en8terbu en6tid 3entla ent5ric 5entwic 5entwu 1entz enu5i e3ny en8zan en1öf e1nös e1nüg eo1c e5o6fe e5okk e1on. e3onf e5onk e5onl e5onr e5opf e5ops e5or. e1ord e1org eo5r6h eo1t e1pa e8pee e6p5e6g ep5ent e1p2f e1pi 5epid e6pidem e1pl 5epos e6pos. ep4p3a e1pr e1pä e1q e1ra. er5aal 8eraba e5rabel er5a6ben e5rabi er3abs er3ach era5e era5k6l er3all er3amt e3rand e3rane er3ans e5ranz. e1rap er3arc e3rari er3a6si e1rat erat3s er3auf e3raum 3erbse er1c e1re 4e5re. er3eck er5egg er5e2h 2erei e3rei. e8reine er5einr 6eren. e4r3enm 4erer. e6r5erm er5ero er5erst e4r3erz er3ess 5erfül er8gan. 5ergebn er2g5h 5ergänz 5erhöhu 2e1ri eri5ak e6r5iat e4r3ind e6r5i6n5i6 er5ins e6r5int er5itio er1kl 3erklä 5erlös. ermen6s er6nab 3ernst 6e1ro. e1rod er1o2f e1rog 6e3roi ero8ide e3rol e1rom e1ron e3rop8 e2r1or e1ros e1rot er5ox ersch4 5erstat er6t5ein er2t1h er5t6her 2e1ru eruf4s3 e4r3uhr er3ums e5rus 5erwerb e1ry er5zwa er3zwu erä8m er5äs erö8 e3rös. e6r1ü2b e1sa esa8b e8sap e6s5a6v e1sc esch4l ese1a es5ebe eserve5 e8sh es5ill es3int es4kop e2sl eso8b e1sp espei6s5 es2po es2pu 5essenz e6stabs e6staf e6st5ak est3ar e8stob e1str est5res es3ur e2sz e1sü e1ta et8ag etari5e eta8ta e1te eten6te et5hal e5thel e1ti 1etn e1to e1tr et3rec e8tscha et8se et6tei et2th et2t1r e1tu etu1s et8zent et8zw e1tä e1tö e1tü eu1a2 eu1e eue8rei eu5fe euin5 euk2 e1um. eu6nio e5unter eu1o6 eu5p 3europ eu1sp eu5str eu8zo e1v eval6s eve5r6en ever4i e1w e2wig ex1or 1exp 1extr ey3er. e1z e1ä2 e5ö8 e1ü e8ßes fa6ch5i fade8 fa6del fa5el. fal6lo falt8e fa1na fan4gr 6fanl 6fap far6ba far4bl far6r5a 2f1art fa1sc fau8str fa3y 2f1b2 6f1c 2f1d 1fe 2f1eck fe6dr feh6lei f6eim 8feins f5eis fel5en 8feltern 8femp fe5rant 4ferd. ferri8 fe8stof fe6str fe6stum fe8tag fet6ta fex1 2ff f1fa f6f5arm f5fe ffe5in ffe6la ffe8ler ff1f f1fla ff3lei ff4lie ff8sa ff6s5ta 2f1g2 fgewen6 4f1h 1fi fid4 fi3ds fieb4 fi1la fi8lei fil4m5a f8in. fi1na 8finf fi8scho fi6u 6f1j 2f1k2 f8lanz fl8e 4f3lein 8flib 4fling f2lix 6f3lon 5flop 1flor 5f8läc 3flöt 2f1m 2f1n 1fo foh1 f2on fo6na 2f1op fo5ra for8mei for8str for8th for6t5r fo5ru 6f5otte 2f1p8 f1q fr6 f5ram 1f8ran f8raß f8re. frei1 5frei. f3reic f3rest f1rib 8f1ric 6frig 1fris fro8na fräs5t 2fs f1sc f2s1er f5str fs3tät 2ft f1tak f1te ft5e6h ftere6 ft1h f1ti f5to f1tr ft5rad ft1sc ft2so f1tu ftwi3d4 ft1z 1fu 6f5ums 6funf fun4ka fu8ßend 6f1v 2f1w 2f1z 1fä fä1c 8färm 6fäug fä8ß föde3 8föf 3för 1fü fün4f3u 1ga ga6bl 6gabw 8gabz g3a4der ga8ho ga5isc 4gak ga1la 6g5amt ga1na gan5erb gan6g5a ga5nj 6ganl 8gansc 6garb 2g1arc 2g1arm ga5ro 6g3arti ga8sa ga8sc ga6stre 2g1atm 6g5auf gau5fr g5aus 2g1b g5c 6gd g1da 1ge ge1a2 ge6an ge8at. ge1e2 ge6es gef2 8geff ge1g2l ge1im 4g3eise geist5r gel8bra gelt8s ge5lö ge8nin gen3k 6g5entf ge3nä ge1or ge1ra ge6rab ger8au 8gerhö ger8ins ge1ro 6g5erz. ge1rä ge1rü ge1s ges2p ge2s7te. ge2s7ten ge2s7ter ge2s7tik ge5unt 4g3ex3 2g1f8 2g1g g1ha 6g1hei 5ghel. g5henn 6g1hi g1ho 1ghr g1hö 1gi gi5la gi8me. gi1na 4g3ins gis1tr g1j 2g1k 8gl. 1glad g5lag glan4z3 1glas 6glass 5glaub g3lauf 1gle. g5leb 3gleic g3lein 5gleis 1glem 2gler 8g3leu gli8a g2lie 3glied 1g2lik 1g2lim g6lio 1gloa 5glom 1glon 1glop g1los g4loss g5luf 1g2ly 1glü 2g1m gn8 6gn. 1gna 8gnach 2gnah g1nas g8neu g2nie g3nis 1gno 8gnot 1go goe1 8gof 2gog 5gogr 6g5oh goni5e 6gonist go1ra 8gord 2g1p2 g1q 1gr4 g5rahm gra8m gra4s3t 6g1rec gre6ge 4g3reic g5reit 8grenn gri4e g5riem 5grif 2grig g5ring 6groh 2grot gro6ß 4grut 2gs gs1ab g5sah gs1ak gs1an gs8and gs1ar gs1au g1sc gs1ef g5seil gs5ein g2s1er gs1in g2s1o gso2r gs1pr g2s1u 2g1t g3te g2t1h 1gu gu5as gu2e 2gue. 6gued 4g3uh 8gums 6g5unt gut3h gu2tu 4g1v 2g1w gy1n g1z 1gä 8gä8m 6gärm 1gö 1gü 6güb 1haa hab8r ha8del hade4n 8hae ha5el. haf6tr 2hal. ha1la hal4b5a 6hale 8han. ha1na han6dr han6ge. 2hani h5anth 6hanz 6harb h3arbe h3arme ha5ro ha2t1h h1atm hau6san ha8ß h1b2 h1c h1d he2bl he3cho h3echt he5d6s 5heft h5e6he. hei8ds h1eif 2hein he3ism he5ist. heit8s3 hek6ta hel8lau 8helt he6mer 1hemm 6h1emp hen5end hen5klo hen6tri he2nu 8heo he8q her3ab he5rak her3an 4herap her3au h3erbi he1ro he8ro8b he4r3um her6z5er he4spe he1st heta6 het5am he5th heu3sc he1xa hey5e h1f2 h1g hgol8 h1h h1iat hie6r5i hi5kt hil1a2 hil4fr hi5nak hin4ta hi2nu hi5ob hirn5e hir6ner hi1sp hi1th hi5tr 5hitz h1j h6jo h1k2 hlabb4 hla4ga hla6gr h5lai hl8am h1las h1laß hl1c h1led h3lein h5ler. h2lif h2lim h8linf hl5int h2lip h2lit h4lor h3lose h1läs hme5e h2nee h2nei hn3eig h2nel hne8n hne4p3f hn8erz h6netz h2nip h2nit h1nol hn5sp h2nuc h2nud h2nul hoch1 1hoh hoh8lei 2hoi ho4l3ar 1holz h2on ho1ra 6horg 5horn. ho3sl hos1p ho4spi h1p hpi6 h1q 6hr h1rai h8rank h5raum hr1c hrcre8 h1red h3reg h8rei. h4r3erb h8rert hrg2 h1ric hr5ins h2rom hr6t5erl hr2t1h hr6t5ra hr8tri h6rum hr1z hs3ach h6s5amt h1sc h6s5ec h6s5erl hs8erle h4sob h1sp h8spaß h8spel hs6po h4spun h1str h4s3tum hs3und h1sü h5ta. h5tab ht3ac ht1ak ht3ang h5tanz ht1ar ht1at h5taub h1te h2t1ec ht3eff ht3ehe h4t3eif h8teim h4t3ein ht3eis h6temp h8tentf hte8ren h6terfü h8tergr h4t3erh h6t5ersc h8terst h8tese h8tess h2t1eu h4t3ex ht1he ht5hu h1ti ht5rak hts3ah ht1sc ht6sex ht8sk ht8so h1tu htz8 h5tüm hub5l hu6b5r huh1l h5uhr. huld5a6 hu8lent hu8lä h5up. h1v h5weib h3weis h1z hä8kl häl8s häma8tu8 hä8sche. hät1s häu4s3c 2hö. 2höe 8höi hö6s hös5c hühne6 hül4s3t hütte8re i5adn i1af i5ak. i1al. i1al1a i1alb i1ald i5alei i1alf i1alg i3alh i1alk i1all i1alp i1alr i1als i1alt i1alv i5alw i3alz i1an. ia5na i3and ian8e ia8ne8b i1ang i3ank i5ann i1ant i1anz i6apo i1ar. ia6rab i5arr i1as. i1asm i1ass i5ast. i1at. i5ats i1au i5azz i6b5eig i6b5eis ib2le i4blis i6brig i6b5unt i6büb i1che ich5ei i6cherb i1chi ich5ins ich1l ich3m ich1n i1cho icht5an icht3r i1chu ich1w ick6s5te ic5l i1d id3arm 3ideal ide8na 3ideol ide5rö i6diot id5rec id1t ie1a ie6b5ar iebe4s3 ie2bl ieb1r ie8bra ie4bre ie8bä ie2dr ie1e8 ie6f5ad ief5f ie2f1l ie4fro ief1t i1ei ie4l3ec ie8lei ie4lek i3ell i1en. i1end ien6e i3enf i5enn ien6ne. i1enp i1enr i5ensa ien8stal i5env i1enz ie5o ier3a4b ie4rap i2ere ie4rec ie6r5ein ie6r5eis ier8er i3ern. ie8rum ie8rund ie6s5che ie6tau ie8tert ie5the ie6t5ri i1ett ie5un iex5 2if i1fa if5ang i6fau if1fr if5lac i5f6lie i1fre ift5a if6t5r ig3art 2ige i8gess ig5he i5gla ig2ni i5go ig3rot ig3s2p i1ha i8ham i8hans i1he i1hi ih1n ih1r i1hu i8hum ih1w 8i1i ii2s ii2t i1j i1k i6kak i8kerz i6kes ik4ler i6k5unt 2il i5lac i1lag il3ans i5las i1lau il6auf i1le ile8h i8lel il2fl il3ipp il6l5enn i1lo ilt8e i1lu i1lä i8mart imb2 i8mele i8mid imme6l5a i1mu i1mä i5mö ina5he i1nat in1au inau8s 8ind. in4d3an 5index ind2r 3indus i5nec i2n1ei i8nerw 3infek 1info 5ingeni ing5s6o 5inhab ini5er. 5inj in8kät in8nan i1no inoi8d in3o4ku in5sau in1sp 5inspe 5instit 5instru ins4ze 5intere 5interv in3the in5t2r i5ny inä2 i1när in1äs inö8 in5öd i1nös 2io io1a8 io1c iode4 io2di ioi8 i1ol. i1om. i1on. i5onb ion2s1 i1ont i5ops i5o8pt i1or. i3oral io3rat i5orc i1os. i1ot. i1o8x 2ip i1pa i1pi i1p2l i1pr i1q i1ra ir6bl i1re i1ri ir8me8d ir2m1o2 ir8nak i1ro ir5rho ir6schl ir6sch5r i5rus i5ry i5rä i1sa i8samt i6sar i2s1au i8scheh i8schei isch5m isch3r ischä8 is8ele ise3ra i4s3erh is3err isi6de i8sind is4kop ison5e is6por i8s5tum i5sty i5sö i1ta it5ab. i2t1a2m i8tax i1te i8tersc i1thi i1tho i5thr it8hä i1ti i8ti8d iti6kl itmen4 i1to i8tof it3ran it3rau i1tri itri5o it1sc it2se it5spa it8tru i1tu it6z5erg it6z1w i1tä itä6r5e ität2 itäts5 i1tü i1u iu6r 2i1v i6vad iva8tin i8vei i6v5ene i8verh i2vob i8vur i1w iwi2 i5xa i1xe i1z ize8n i8zir i6z5w iä8m i1ä6r i5ät. i5äv i1ö8 iü8 i6ß5ers ja5la je2t3r 6jm 5jo jo5as jo1ra jou6l ju5cha jugen4 jugend5 jung5s6 3jä 1ka 8kachs 8kakz ka1la kal5d kam5t ka1na 2kanl 8kapf ka6pl ka5r6a 6k3arbe ka1ro kar6p5f 4k3arti 8karz ka1rä kasi5e ka6teb kat8ta kauf6s kau3t2 2k1b 2k1c 4k1d kehr6s kehrs5a 8keic 2k1eig 6k5ein 6k5eis ke6lar ke8leis ke8lo 8kemp k5ente. k3entf 8k5ents 6kentz ke1ra k5erlau 2k1f8 2k1g 2k1h ki5fl 8kik king6s5 6kinh ki5os ki5sp ki5th 8ki8ö 2k1k2 kl8 1kla 8klac k5lager kle4br k3leib 3kleid kle5isc 4k3leit k3lek 6k5ler. 5klet 2klic 8klig k2lim k2lin 5klip 5klop k3lor 1klä 2k1m kmani5e kn8 6kner k2ni knä8 1k2o ko1a2 ko6de. ko1i koi8t ko6min ko1op ko1or ko6pht ko3ra kor6d5er ko5ru ko5t6sc k3ou 3kow 6k5ox 2k1p2 k1q 1kr8 4k3rad 2k1rec 4k3reic kre5ie 2krib 6krig 2krip 6kroba 2ks k1sa k6sab ksal8s k8samt k6san k1sc k2s1ex k5spat k5spe k8spil ks6por k1spr kst8 k2s1uf 2k1t kta8l kt5a6re k8tein kte8re k2t1h k8tinf kt3rec kt1s 1ku ku1ch kuck8 k3uhr ku5ie kum2s1 kunfts5 kun2s kunst3 ku8rau ku4ro kurz1 4kusti ku1ta ku8ß 6k1v 2k1w ky5n 2k1z 1kä kä4m 4k3ämi käse5 1kö kö1c kö1s 1kü kü1c kür6sc 1la. 8labf 8labh lab2r 2l1abs lach3r la8dr 5ladu 8ladv 6laff laf5t la2gn 5laken 8lamb la6mer 5lampe. 2l1amt la1na 1land lan4d3a lan4d3r lan4gr 8lanme 6lann 8lanw 6lanä 8lappa lap8pl lap6pr l8ar. la5ra lar4af la8rag la8ran la6r5a6s l3arbe la8rei 6larm. la8sa la1sc la8sta lat8i 6l5atm 4lauss 4lauto 1law 2lb l8bab l8bauf l8bede l4b3ins l5blo lbst5an lbst3e 8lc l1che l8chert l1chi lch3m l5cho lch5w 6ld l4d3ei ld1re l6düb le2bl le8bre lecht6s5 led2r 6leff le4gas 1lehr lei6br le8inf 8leinn 5leistu 4lektr le6l5ers lemo2 8lemp l8en. 8lends 6lendun le8nend len8erw 6l5ents 4l3entw 4lentz 8lenzy 8leoz 6lepi le6pip 8lepo 1ler l6er. 8lerbs 6l5erde le8reis le8rend le4r3er 4l3erg l8ergr 6lerkl 6l5erzie 8lerö 8lesel lesi5e le3sko le3tha let1s 5leuc 4leuro leu4s3t le5xe 6lexp l1f 2l1g lgend8 l8gh lglie3 lglied6 6l1h 1li li1ar li1as 2lick li8dr li1en lien6n li8ers li8ert 2ließ 3lig li8ga8b li1g6n li1l8a 8limb li1na 4l3indu lings5 4l3inh 6linj link4s3 4linkt 2lint 8linv 4lipp 5lipt 4lisam livi5e 6l1j 6l1k l8keim l8kj lk2l lko8f lkor8 lk2sa lk2se 6ll l1la ll3a4be l8labt ll8anl ll1b ll1c ll1d6 l1le l4l3eim l6l5eise ller3a l4leti l5lip l1lo ll3ort ll5ov ll6spr llte8 l1lu ll3urg l1lä l5lü l6lüb 2l1m l6m5o6d 6ln l1na l1no 8lobl lo6br 3loch. l5o4fen 5loge. 5lohn 4l3ohr 1lok l2on 4l3o4per lo1ra 2l1ord 6lorg 4lort lo1ru 1los. lo8sei 3losig lo6ve lowi5 6l1p lp2f l8pho l8pn lp4s3te l2pt l1q 8l1r 2ls l1sa l6sarm l1sc l8sec l6s5erg l4s3ers l8sh l5s6la l1sp ls4por ls2pu l1str l8suni l1sü 2l1t lt5amp l4t3ein l5ten l6t5eng l6t5erp l4t3hei lt3her l2t1ho l6t5i6b lti1l l8trö lt1sc lt6ser lt4s3o lt5ums lu8br lu2dr lu1en8 8lu8fe luft3a luf8tr lu6g5r 2luh l1uhr lu5it 5luk 2l1umf 2l1umw 1lun 6l5u6nio 4l3unte lu5ol 4lurg 6lurs l3urt lu4sto lus1tr lu6st5re lu8su lu6tal lu6t5e6g lu8terg lu3the lu6t5or lu2t1r lu6ß5 l1v lve5r6u 2l1w 1ly lya6 6lymp ly1no l8zess l8zo8f l3zwei lz5wu 3länd lä5on lä6sc lät1s 5läuf 2läug läu6s5c lä5v l1öl 1lös lö1ß6t 6l1übe 1ma 8mabg ma5chan mad2 ma5el 4magg mag8n ma1la ma8lau mal5d 8malde mali5e malu8 ma8lut 2m1amp 3man mand2 man3ds 8mangr mani5o 8m5anst 6mappa 4m3arbe mar8kr ma1r4o mar8schm 3mas ma1sc ma1tö 4m5auf ma5yo 2m1b mb6r 2m1c 2m1d md6sä 1me me1ch me5isc 5meld mel8sa 8memp me5nal men4dr men8schl men8schw 8mentsp me1ra mer4gl me1ro 3mes me6s5ei me1th me8ß 2m1f6 2m1g 2m1h 1mi mi1a mi6ale mi1la 2m1imm mi1na mi5nü mi4s3an mit1h mi5t6ra 3mitt mitta8 mi6ß5 6mj 2m1k8 2m1l 2m1m m6mad m6m5ak m8menth m8mentw mme6ra m2mn mm5sp mm5ums mmut5s m8män m1n8 m5ni 1mo mo5ar mo4dr 8mof mo8gal mo4kla mol5d m2on mon8do mo4n3od mon2s1tr mont8a 6m5ony mopa6 mo1ra mor8d5a mo1sc mo1sp 5mot moy5 2mp m1pa mpfa6 mpf3l mphe6 m1pi mpin6 m1pl mp2li m2plu mpo8ste m1pr mprä5 mp8th mput6 mpu5ts m1pö 8m1q 2m1r 2ms ms5au m1sc msch4l ms6po m3spri m1str 2m1t mt1ar m8tein m2t1h mt6se mt8sä mu5e 6m5uh mumi1 1mun mun6dr muse5e mu1ta 2m1v mvol2 mvoll3 2m1w 1my 2m1z mä6kl 1män mä1s mä5tr mäu4s3c 3mäß möb2 6möl 1mü 5mün 3müt 1na. n5ab. 8nabn n1abs n1abz na6bä na2c nach3e 3nacht 1nae na5el n1afr 1nag 1n2ah na8ha na8ho 1nai 6nair na4kol n1akt nal1a 8naly 1nama na4mer na1mn n1amp 8n1amt 5nanc nan6ce n1and n6and. 2n1ang 1nani 1nann n1ans 8nanw 5napf. 1n2ar. na2ra 2n1arc n8ard 1nari n8ark 6n1arm 5n6ars 2n1art n8arv 6natm nat6s5e 1naue 4nauf n3aug 5naui n5auk na5um 6nausb 6nauto 1nav 2nax 3naz 1naß n1b2 nbau5s n1c nche5e nch5m 2n1d nda8d n2d1ak nd5ans n2d1ei nde8lac ndel6sa n8derhi nde4se nde8stal n2dj ndnis5 n6d5or6t nd3rec nd3rot nd8samt nd6sau ndt1h n8dumd 1ne ne5as ne2bl 6n5ebn 2nec 5neei ne5en ne1g4l 2negy 4n1ein 8neis 4n3e4lem 8nemb 2n1emp nen1a 6n5energ nen3k 8nentb 4n3en3th 8nentl 8n5entn 8n5ents ne1ra ne5r8al ne8ras 8nerbi 6n5erde. nere5i6d nerfor6 6n5erhö 8nerlö 2n1err n8ers. 6n5ertra 2n1erz nesi3e net1h neu4ra neu5sc 8neuß n1f nf5f nf2l nflei8 nf5lin nft8st n8g5ac ng5d ng8en nge8ram ngg2 ng1h n6glic ng3rip ng8ru ng2se4 ng2si n2g1um n1gy n8gäl n1h nhe6r5e 1ni ni1bl ni5chä ni8dee n6ie ni1en nie6s5te niet5h ni8etn 4n3i6gel n6ik ni1la 2n1imp ni5na 2n1ind 8ninf 6n5inh ni8nit 6n5inn 2n1ins 4n1int n6is nis1tr ni1th ni1tr n1j n6ji n8kad nk5ans n1ke n8kerla n1ki nk5inh n5klö n1k2n n8k5not nk3rot n8krü nk5spo nk6t5r n8kuh n6küb n5l6 nli4mi n1m nmen4s n1na n8nerg nni5o n1no nn4t3ak nnt1h nnu1e n1ny n1nä n1nö n1nü no5a no4b3la 4n3obs 2nobt noche8 no6die no4dis no8ia no5isc 6n5o6leu no4mal noni6er 2n1onk n1ony 4n3o4per 6nopf 6nopti no3ra no4ram nor6da 4n1org 2n1ort n6os no1st 8nost. no8tan no8ter noty6pe 6n5ox n1p2 n1q n1r nrös3 6ns n1sac ns3ang n1sc n8self n8s5erf n8serg n6serk ns5erw n8sint n1s2pe n1spr n6s5tat. n6stob n1str n1ta n4t3a4go nt5anh nt3ark nt3art n1te nt3eis nte5n6ar nte8nei nter3a nte6rei nt1ha nt6har n3ther nt5hie n3thus n1ti nti1c n8tinh nti1t ntlo6b ntmen8 n1to nt3o4ti n1tr ntra5f ntra5ut nt8rea nt3rec nt8rep n4t3rin nt8rop n4t3rot n4trü nt1s nts6an nt2sk n1tu nt1z n1tä n1tö n8töl n1tü 1nu nu1a nu5el nu5en 4n1uhr nu5ie 8numl 6n5ums 6n5umw 2n1und 6nuni 6n5unr 2n1unt 2nup 2nu6r n5uri nu3skr nu5ta n1v 8n1w 1nys n1za n6zab n2z1ar n6zaus nzi4ga n8zof n6z5unt n1zw n6zwir 1näc 5näe 5näi n8äl nä6m nä6re n5ärz 5näus n1öl 1nöt n5öz 5nü. 6n1ü2b 5nüß o5ab. oa2l o8ala o1a2m o1an ob1ac obe4ra o6berh 5o4bers o4beru obe6ser 1obj o1bl o2bli ob5sk 3obst. ob8sta obst5re ob5sz o1che oche8b o8chec o3chi och1l och3m ocho8f o3chro och3to o3chu och1w o1d o2d1ag od2dr ode5i ode6n5e od1tr o5e6b o5e6der. oe8du o1ef o1e2l o1e2p o1er. o5e8x o1fa of8fan 1offi of8fin of6f5la o5fla o1fr 8o1g og2n o1ha o1he o6h5eis o1hi ohl1a oh1le oh4l3er 5ohm. oh2ni o1ho oh1re oh1ru o1hu oh1w o1hy o1hä o5ia o1id. o8idi oi8dr o5ids o5isch. oiset6 o1ism o3ist. o5i6tu o1j o1k ok2l ok3lau o8klä 1okta o1la old5am old5r o1le ole5in ole1r ole3u ol6gl ol2kl olk4s1 ol8lak ol8lauf. ol6lel ol8less o1lo ol1s ol2ster ol6sk o1lu oly1e2 5olym o2mab om6an o8mau ombe4 o8merz om5sp o1mu o8munt o1mä o1mö o1na ona8m on1ax on8ent o6n5erb 8oni oni5er. on1k on6n5a6b o1no ono1c o4nokt 1ons onts8 o1nä oo8f 1oog oo2pe oo2sa o1pa 3o4pera o3pfli opf3lo opf3r o1pi o1pl o2pli o5p6n op8pa op6pl o1pr o3p4ter 1opti o1pä o5pö o1q o1ra. o3rad o8radd 1oram o6rang o5ras o8rauf or5cha or4d3a4m or8dei or8deu 1ordn or4dos o1re o5re. ore2h o8r5ein ore5isc or6enn or8fla or8fli 1orga 5orgel. or2gl o1ri 5o6rient or8nan or8nä o1ro or1r2h or6t5an or8tau or8tere o1rus o1ry o1rä or1ü2 o1sa osa3i 6ose o8serk o1sk o6ske o6ski os2kl os2ko os2kr osni5e o2s1o2d o3s4per o4stam o6stau o3stra ost3re osu6 o6s5ur o5s6ze o1ta ot3auf o6taus o1te o6terw o1th othe5u o2th1r o1ti o1to oto1a ot1re o1tri o1tro ot1sc o3tsu ot6t5erg ot2t3h ot2t5r ot8tö o1tu ou3e ouf1 ou5f6l o5u6gr ou5ie ou6rar ou1t6a o1v o1wa o1we o6wer. o1wi owid6 o1wo o5wu o1xe oy5al. oy1e oy1i o5yo o1z oza2r 1o2zea ozo3is oö8 oß5elt oß1t 3paa pa6ce 5pad pag2 1pak pa1la pa8na8t pani5el pa4nor pan1s2 1pap pap8s pa8rei par8kr paro8n par5o6ti part8e 5partei 3partn pas6sep pa4tha 1pau 6paug pau3sc p1b 8p5c 4p1d 1pe 4peic pe5isc 2pek pen3k pen8to8 p8er pe1ra pere6 per5ea per5eb pe4rem 2perr per8ran 3pers 4persi pe3rü pe4sta pet2s p2f1ec p4fei pf1f pf2l 5pflanz pf8leg pf3lei 2pft pf3ta p1g 1ph 2ph. 2p1haf 6phb 8phd 6p5heit ph5eme 6phg phi6e 8phk 6phn p5holl pht2 ph3tha 4ph3the phu6 6phz pi1en pi5err pi1la pi1na 5pinse pioni8e 1pis pi1s2k pi1th p1k pl8 5pla p2lau 4plei p3lein 2pler 6p5les 2plig p6lik 6p5ling p2liz plo8min 6p1m p1n 1p2o 8poh 5pol po8lan poly1 po3ny po1ra 2porn por4t3h po5rö 5poti p1pa p6p5ei ppe6la pp5f p2p1h p1pi pp1l ppp6 pp5ren pp1s pp2ste p5pö pr6 3preis 1pres 2p3rig 5prinz 1prob 1prod 5prog pro8pt pro6t5a prote5i 8proß prä3l 1präs präte4 1prüf p5schl 2pst 1p2sy p1t p8to8d pt1s 5p6ty 1pu pu1b2 2puc pu2dr puf8fr 6p5uh pun8s pu8rei pu5s6h pu1ta p1v p3w 5py py5l p1z pä6der p5ä6m pä8nu 8pär pät5h pät1s qu6 1qui 8rabk ra6bla 3rable ra2br r1abt 6rabz ra4dan ra2dr 5rafal ra4f3er ra5gla ra2g3n 6raha ral5am 5rald 4ralg ra8lins 2rall ral5t 8ramei r3anal r6and ran8der ran4dr 8ranf 6ranga 5rangi ran8gli r3angr rans5pa 8ranw r8anz. ra5or 6rapf ra5pl rap6s5er 2r1arb 1rarh r1arm ra5ro 2r1art 6r1arz ra8tei ra6t5he 6ratl ra4t3ro r5atta raue4n 6raus. r5austa rau8tel raut5s ray1 r1b rb5lass r6bler rb4lie rbon6n r8brecht rb6s5tä r8ces r1che rch1l rch3m rch3re rch3tr rch1w 8rd r1da r8dachs r8dap rda5ro rde5ins rdio5 r8dir rd3ost r1dr r8drau 1re. re1ak 3reakt re3als re6am. re1as 4reben re6bl rech5a r8edi re3er 8reff 3refl 2reh 5reha r4ei. reich6s5 8reier 6reign re5imp 4r3eina 6r3einb 6reing 6r5einn 6reinr 4r3eins r3eint reli3e 8r5elt 6rempf 2remt ren5a6b ren8gl r3enni 1reno 5rente 4r3enth 8rentl 4r3entw 8rentz ren4zw re1on requi5 1rer rer4bl 6rerbs 4r3erd 8rerhö 8rerkl 4r3erla 8rerlö 4r3erns 6r5ernä rer5o 6r5erreg r5ertr r5erwec r5erö re2sa re8schm 2ress re5u8ni 6rewo 2r1ex r1f r8ferd rf4lie 8r1g r8gah rge4bl rge5na rgest4 rg6ne r2gni2 r8gob r4g3ret rg8sel r1h8 r2hy 5rhyt ri1ar ri5cha rid2g r2ie rieg4s5 ri8ei ri1el ri6ele ri1en ri3er. ri5ers. ri6fan ri8fer ri8fr 1r2ig ri8kn ri5la rimä8 ri1na r8inde rin4ga rin6gr 1rinn 6rinner rino1 r8insp 4rinst ri1nä ri5o6ch ri1o2d ri3o6st 2r1ir r2is ri3sko ri8spr ri5sv r2it 6r5i6tal ri5tr ri6ve. 8r1j 6rk r1ke rkehrs5 r1ki r3klin r1k2n rk3str rk4t3an rk6to r6kuh rkä4s3t r1l r5li rline5a 6r1m r6manl rma4p r4m3aph r8minf r8mob rm5sa 2rn r1na rna8be r5ne rn2ei r6neif r6nex r6nh rn1k r1no r6n5oc rn1sp r1nä r1nü ro6bern 6robs ro1ch 3rock. ro5de ro1e 4rofe ro8hert 1rohr ro5id ro1in ro5isc 6rolym r2on 6roog ro6phan r3ort ro1s2p ro5s6w ro4tau ro1tr ro6ts 5rout r1p rpe8re rp2f r2ps r2pt r1q 2rr r1ra r1re rrer6 rr6hos r5rhö r1ri r1ro rro8f rr8or rror5a r1ru r3ry r1rä r1rö r1rü 2r1s r2ste r2sti r6sab r4sanf rse6e rse5na r2sh r6ska r6ski rs2kl r8sko r2sl rs2p r6stauf r8sterw r8stran rswi3d4 r2sz 2r1t rt3art r8taut r5tei rt5eige r8tepe r4t3erh r8terla r4t3hei r5t6hu r4t3int rt5reif rt1sc rt6ser rt6s5o rt6s5u rt5und r8turt rube6 ru1en 1r4uf ruf4st ru1ie 2r1umg 2r1uml 2rums run8der run4d5r 6rundz 6runf 8runs 2r1unt 2r1ur r6us ru6sta rus1tr ru6tr 1ruts r1v rven1 rvi2c r1w r1x r1za rz5ac r6z5al r8z1ar r8zerd r6z5erf rz8erh rz4t3h r8zum rä4ste räu8sc r1öf 5röhr rö5le 3röll 5römis r1ör rö2sc 3rümp 1sa. 1saa s3a4ben sa2bl 2s1abs 6s1abt 6sabw 3sack. 6s3a4der 1saf sa1fa 4s1aff sa5fr 1sag 1sai sa1i2k1 4s1akt 1sal sa1la 4s3alpi 6salter salz3a 1sam s5anb san2c 1sand s5angeh 6sanl 2s1ans 6s3antr 8s1anw s1ap s6aph 8sapo sap5p6 s8ar. 2s1arb 3sarg s1arm sa5ro 2s1art 6s1arz 1sas 1sat sat8a 2s1atl sa8tom 3s8aue s5auff sau5i s6aur 2s1aus 5s6ause 2s1b2 2sca s4ce 8sch. 3scha. 5schade 3schaf 3schal sch5ame 8schanc 8schb 1sche 6schef 8schex 2schf 2schg 2schh 1schi 2schk 5schlag 5schlu 6schmäß 6schnaß 1scho 6schord 6schp 3schri 8schric 8schrig 8schrou 6schs 2scht sch3ta sch3tr 1schu 8schunt 6schv 2schz 5schö 5schü 2sco scre6 6scu 2s1d 1se se5an se1ap se6ben se5ec see5i6g se3erl 8seff se6han se8hi se8hö 6s5eid. 2s1eig s8eil 5sein. sei5n6e 6s5einh 3s8eit 3sel. se4lar selb4 6s3e4lem se8lerl 2s1emp sen3ac se5nec 6s5ents 4sentz s8er. se8reim ser5inn 8sermä 8s5erzi 6seröf se1um 8sexa 6sexp 2s1f2 sfal8ler 2s3g2 sge5b2 s1h s8hew 5s6hip 5s4hop 1si 2siat si1b sicht6s 6s5i6dee siege6s5 si1en si5err si1f2 si1g2n si6g5r si8kau sik1i si4kin si2kl si8kü si1la sil6br si1na 2s1inf sin5gh 2s1inh sinne6s5 2s1ins si5ru si5str 4s1j s1k2 6sk. 2skau skel6c skelch5 s6kele 1s2ki. 3s4kin. s6kiz s8kj 6skn 2skow 3skrib 3skrip 2sku 8skü s1l s8lal slei3t s4low 2s1m s1n 6sna 6snot 1so so1ch 2s1odo so4dor 6s5o4fen solo3 s2on so5of 4sope so1ra 2s1ord 4sorga sou5c so3un 4s3ox sp2 8spaa 5spal 1span 2spap s2pec s4peis 1spek s6perg 4spers s6pes 2s1pf 8sphi 1s2phä 1spi spi4e 6s5pig 6spinse 2spis 2spla 2spol 5s6pom 6s5pos 6spoti 1spra 3s8prec 6spreis 5spring 6sprob 1spru s2pul 1s2pur 6spy 5spän 1spü s1q 2s1r 2ssa 2sse 2ssi 2sso 2ssä 2ssö 2ssü 2s1sch sse8nu ssini6s ssoi6r 2st. 1sta 4stafe 2stag sta3la 6stale 4s2talg 8stalk 8stamt 6st5anf 4stans 6stanw 6starb sta4te 6staus 2stb 6stc 6std s1te 4steil 6steppi 8stesse 6stf 2stg 2sth st1ha st3hei s8t1hi st1ho st5hu s1ti s2ti4el 4s2tigm 6s2tind 4s2tinf s2ti8r 2stk 2stl 2stm 1sto 6stoll. 4st3ope 6stopf. 6stord 6stp 4strai s3tral 6s5traum 3straß 3strec 6s3tref 8streib 5streif 6streno 6stres 6strev 2st5rig 8s2t1ris s8troma st5rose 4struf 3strum 6sträg 2st1s6 2stt 1stu stu5a 4stuc 2stue 8stun. 2stv 2stw s2tyl 6stz 1stä 8stäg 1stö 1stü 8stüch 4stür. 1su su2b1 3suc su1e su2fe su8mar 6sumfa 8sumk 2s1unt sup1p2 6s5u6ran 6surte 2s1v 2s1w 1sy 8syl. sy5la syn1 sy2na syne4 s1z s4zend 5s6zene. 8szu 1sä 6s5änd 6säugi 6säuß 5söm 2s1ü2b 1süc sü8di 1sün 5süß taats3 4tab. taba6k ta8ban tab2l ta6bre 4tabs t3absc 8tabz 6t3acht ta6der 6tadr tad6s tad2t 1tafe4 1tag ta6ga6 ta8gei tage4s tag6s5t tah8 tahl3 tai6ne. ta5ir. tak8ta tal3au 1tale ta8leng tal5ert 6t5a6mer 6tamp tampe6 2t1amt tan5d6a tan8dr tands5a tani5e 6tanl 2tanr t3ans 8t5antr tanu6 t5anw 8tanwa tan8zw ta8rau 6tarbe 1tari 2tark 2t1arm ta1ro 2tart t3arti 6tarz ta1sc ta6sien ta8stem ta8sto t5aufb 4taufn 8taus. 5tause 8tausf 6tausg t5ausl 2t1b2 2t1c t6chu 2t1d te2am tea4s te8ben 5techn 4teff te4g3re te6hau 2tehe te4hel 2t1ehr te5id. teig5l 6teign tei8gr 1teil 4teinh t5einhe 4teis t5eisen 8teiw te8lam te4lar 4telek 8telem te6man te6n5ag ten8erw ten5k tens4p ten8tro 4t3entw 8tentz te6pli 5teppi ter5a6b te3ral ter5au 8terbar t5erbe. 6terben 8terbs 4t3erbt t5erde. ter5ebe ter5ein te8rers terf4 8terhö 6terklä ter8nor ter6re. t8erscha t5e6sel te8stau t3euro te1xa tex3e 8texp tex6ta 2t1f2 2t1g2 2th. th6a 5tha. 2thaa 6t1hab 6t5haf t5hah 8thak 3thal. 6thals 6t3hand 2t1hau 1the. 3t4hea t1heb t5heil t3heit t3helf 1theo 5therap 5therf 6t5herz 1thes 1thet 5thi. 2t1hil t3him 8thir 3this t5hj 2th1l 2th1m th1n t5hob t5hof 4tholz 6thopti 1thr6 4ths t1hum 1thy 4t1hä 2t1hö t1hü ti1a2m ti1b tie6fer ti1en ti8gerz tig3l ti8kin ti5lat 1tilg t1ind tin4k3l ti3spa ti5str 5tite ti5tr ti8vel ti8vr 2t1j 2t1k2 2t1l tl8a 2t1m8 2t1n 3tobe 8tobj to3cha 5tocht 8tock tode4 to8del to8du to1e 6t5o6fen to1in toi6r 5toll. to8mene t2ons 2t1ony to4per 5topf. 6topt to1ra to1s to2ste to6ska tos2l 2toti to1tr t8ou 2t1p2 6t1q tr6 tra5cha tra8far traf5t 1trag tra6gl tra6gr t3rahm 1trai t6rans tra3sc tra6st 3traue t4re. 2trec t3rech t8reck 6t1red t8ree 4t1reg 3treib 4treif 8t3reis 8trepo tre6t5r t3rev 4t3rez 1trib t6rick tri6er 2trig t8rink tri6o5d trizi5 tro1a 3troc trocke6 troi8d tro8man. tro3ny 5tropf 6t5rosa t5roß 5trub 5trup trut5 1träg 6t1röh 5trüb trü3bu t1rüc t1rüs 2ts ts1ab t1sac tsa8d ts1ak t6s5alt ts1an ts1ar ts3auf t3schr t5schä tse6e tsee5i tsein6s ts3ent ts1er t8serf t4serk t8sh 5t6sik t4s3int ts5ort. t5s6por t6sprei t1st t2ste t6s5tanz ts1th t6stit t4s3tor 1t2sua t2s1uf t8sum. t2s1u8n t2s1ur 2t1t tt5eif tte6sa tt1ha tt8ret tt1sc tt8ser tt5s6z 1tuc tuch5a 1tu1e 6tuh t5uhr tu1i tu6it 1tumh 6t5umr 1tums 8tumt 6tund 6tunf 2t1unt tu5ra tu6rau tu6re. tu4r3er 2t1v 2t1w 1ty1 ty6a ty8la 8tym 6ty6o 2tz tz5al tz1an tz1ar t8zec tzeh6 tzehn5 t6z5ei. t6zor t4z3um t6zäu 5täg 6täh t5ält t8än täre8 8tä8st 6täuß t5öffen 8tö8k 1tön 4tüb t6ü5ber. 5tüch 1tür. u3al. u5alb u5alf u3alh u5alk u3alp u3an. ua5na u3and u5ans u5ar. ua6th u1au ua1y u2bab ubi5er. u6b5rit ubs2k u5bö u8büb 2uc u1che u6ch5ec u1chi uch1l uch3m uch5n uch1r uch5to ucht5re u1chu uch1w uck1a uck5in u1d ud4a u1ei u6ela uene8 u6ep u1er uer1a ue8rerl uer5o u8esc u2est u8ev u1fa u2f1ei u4f3ent u8ferh uf1fr uf1l uf1ra uf1re uf1rä uf1rü uf1s2p uf1st uft1s u8gabt u8gad u6gap ugeb8 u8gn ugo3s4 u1ha u1he u1hi uh1le u1ho uh1re u1hu uh1w u1hä u1hö 6ui ui5en u1ig u3ins uin8tes u5isch. u1j 6uk u1ke u1ki u1kl u8klu u1k6n u5ky u1la uld8se u1le ul8lac ul6lau ul6le6l ul6lo ulni8 u1lo ulo6i ult6a ult8e u1lu ul2vr u1lä u1lö 3umfan 5umlau umo8f um8pho u1mu umu8s u5mö u1n1a un2al un6at unau2 6und. 5undein un4d3um 3undzw undü8 un8düb une2b un1ec une2h un3eis 3unfal 1unfä 5ungea 3unglü ung2s1 un8gä 1u2nif un4it un8kro unk5s u1no unpa2 uns2p unvol4 unvoll5 u5os. u1pa u1pi u1p2l u1pr up4s3t up2t1a u1q u1ra ur5abs ura8d ur5ah u6rak ur3alt u6rana u6r5ans u8rap ur5a6ri u8ratt u1re ur3eig ur8gri u1ri ur5ins 3urlau urmen6 ur8nan u1ro 3ursac ur8sau ur8sei ur4sk 3urtei u1ru uru5i6 uru6r u1ry ur2za ur6zä ur5ä6m u5rö u1rü urück3 u1sa usa4gi u2s1ar u2s1au u8schec usch5wi u2s1ei use8kel u8sl u4st3a4b us3tau u2s1uf u8surn ut1ac u1tal uta8m u1tan ut1ar u1tas ut1au u1te u8teic u4tent u8terf u6terin u4t3hei ut5ho ut1hu u1ti utine5 uti6q u1to uto5c u1tr ut1sa ut1s6p ut6stro u1tu utz5w u1u u1v uve5n uve3r4ä u1w u1xe u5ya uy5e6 u1yi u2z1eh u8zerh u5ö uße6n ußen5e 8vanb 6vang 6varb var8d va6t5a va8tei va2t1r 2v1b 6v5c 6vd 1ve 6ve5g6 ver1 ver5b verb8l ve2re2 verg8 ve2ru8 ve1s ve2s3p ve3xe 2v1f 2v1g 6v5h vi6el vie6w5 vi1g4 vi8leh vil6le. 8vint vi1ru vi1tr 2v1k 2v1l 2v1m 4v5n 8vo8f voi6le vol8lend vol8li v2or1 vo2re vo8rin vo2ro 2v1p 8vra v6re 2v2s 2v1t 2v1v 4v3w 2v1z waffe8 wa6g5n 1wah wah8n wa5la wal8din wal6ta wan4dr 5ware wa8ru war4za 1was w5c w1d 5wech we6fl 1weg we8geng weg5h weg3l we2g1r weh6r5er 5weise weit3r wel2t welt3r we6rat 8werc 5werdu wer4fl 5werk. wer4ka wer8ku wer4ta wer8term we2sp we8s4tend we8str we8stö wet8ta wich6s5t 1wid wi2dr wiede4 wieder5 wik6 wim6ma win4d3r 5wirt wisch5l 1wj 6wk 2w1l 8w1n wo1c woche6 wol6f wor6t5r 6ws2 w1sk 6w5t 5wunde. wun6gr wu1sc wu2t1 6w5w wy5a wärme5 wä1sc 1xag x1ak x3a4men 8xamt x1an 8x1b x1c 1xe. x3e4g 1xen xe1ro x1erz 1xes 8xf x1g 8x1h 1xi 8xid xi8so 4xiste x1k 6x1l x1m 8xn 1xo 8x5o6d 8x3p2 x1r x1s6 8x1t x6tak x8terf x2t1h 1xu xu1e x5ul 6x3w x1z 5ya. y5an. y5ank y1b y1c y6cha y4chia y1d yen6n y5ern y1g y5h y5in y1j y1k2 y1lak yl1al yla8m y5lax y1le y1lo y5lu y8mn ym1p2 y3mu y1na yno2d yn1t y1on. y1o4p y5ou ypo1 y1pr y8ps y1r yri3e yr1r2 ys5iat ys8ty y1t y3w y1z yä8m z5a6b zab5l 8za6d 1zah za5is 4z3ak 6z1am 5zange. 8zanl 2z1ara 6z5as z5auf 3zaun 2z1b 6z1c 6z1d 1ze ze4dik 4z3eff 8zein zei4ta zei8ters ze6la ze8lec zel8th 4zemp 6z5engel zen8zin 8zergä zer8i ze1ro zers8 zerta8 zer8tab zer8tag 8zerz ze8ste zeu6gr 2z1ex 2z1f8 z1g 4z1h 1zi zi1en zi5es. 4z3imp zi1na 6z5inf 6z5inni zin6s5er 8zinsuf zist5r zi5th zi1tr 6z1j 2z1k 2z1l 2z1m 6z1n 1zo zo6gl 4z3oh zo1on zor6na8 4z1p z5q 6z1r 2z1s8 2z1t z4t3end z4t3hei z8thi 1zu zu3al zu1b4 zu1f2 6z5uhr zun2a 8zunem zunf8 8zungl zu1o zup8fi zu1s8 zu1z 2z1v zw8 z1wal 5zweck zwei3s z1wel z1wer z6werg 8z5wes 1zwi zwi1s 6z1wo 1zy 2z1z zz8a zzi1s 1zä 1zö 6zöl. zö1le 1zü 2z1ü2b ä1a6 äb1l ä1che ä3chi äch8sc äch8sp ä5chu äck5a äd1a äd5era ä6d5ia ä1e ä5fa äf1l äft6s äg1h äg3le ä6g5nan äg5str ä1he ä1hi äh1le äh5ne 1ähnl äh1re äh5ri äh1ru ä1hu äh1w 6äi ä1isc ä6ische ä5ism ä5j ä1k äl1c ä1le ä8lei äl6schl ämi1e äm8n äm8s ä5na 5änderu äne5i8 äng3l änk5l ä1no än6s5c ä1pa äp6s5c 3äq är1c ä1re äre8m 5ärgern är6gl ä1ri 3ärmel ä1ro ärt6s5 ä1ru 3ärztl ä5rö ä6s5chen äsen8s äs1th äta8b ä1te äteri4 äter5it ä6thy ä1ti 3ätk ä1to ät8schl äts1p ä5tu äub1l äu1e 1äug äu8ga äu5i ä1um. ä1us. 1äuß ä1z ö1b ö1che ö5chi öch8s2tei öch8str öcht6 5ö6dem 5öffn ö1he öh1l8 öh1re ö1hu ö1is ö1ke 1ö2ko 1öl. öl6k5l öl8pl ö1mu ö5na önig6s3 ö1no ö5o6t öpf3l öp6s5c ö1re ör8gli ö1ri ör8tr ö1ru 5österr ö1te ö5th ö1ti ö1tu ö1v ö1w öwe8 ö2z üb6e2 3ü4ber1 üb1l üb1r 5ü2bu ü1che ü1chi ü8ch3l üch6s5c ü8ck ück1a ück5ers üd1a2 ü6deu üdi8t ü2d1o4 üd5s6 üge4l5a üg1l üh5a ü1he ü8heh ü6h5erk üh1le üh1re üh1ru ü1hu üh1w ü3k ü1le ül4l5a ül8lo ül4ps ül6s5c ü1lu ün8da ün8fei ünk5l ün8za ün6zw ü5pi ü1re ü8rei ür8fl ür8fr ür8geng ü1ri ü1ro ür8sta ü1ru üse8n ü8sta ü8stes ü3ta ü1te ü1ti üt8tr ü1tu üt8zei ü1v ß1a8 5ßa. ß8as ß1b8 ß1c ß1d 1ße ß5ec 8ße8g 8ße8h 2ß1ei 8ßem ß1f8 ß1g ß1h 1ßi ß1k ß1l ß1m ß1n ß1o ß1p8 ß5q ß1r ß1s2 ßst8 ß1ta ß1te ßt3hei ß1ti ß5to ß1tr 1ßu8 6ß5um ß1v ß1w ß1z 2s1ta. i2s1tal 2s1tani 2s1tan. fe2s1ta te2s1ta nd2ste ve2ste 3s2tec 4s3techn 3s2teg 3s2teh 3s2tein 3s2teig 3s2teif 3s2tell 3s2telz a4s3tel 3s2temm 3s2temp 3s2tep s3s2ter t3s2tern 3s2teue 6s4teuro bs2ti te2s3ti ve2sti 3s2tic 3s2tieb 3s2tieg 3s2tif 3s2til 3s2tim 3s2tink 3s2titu a2s1to gu2s1to ku2s1to i2s1tol i2s1tor ve2s1to 2s1tung 2s7tus o2s1tul aus3s4 ens3s4 gs3s4 .mis2s1 s2s1b8 s2s3chen s2s3d s2s5ec 2s2s1ei s2s3f s2s1g s2s3h s2s3k s2s3l s2s3m s2s3n s2s3p8 s2s5q s2s3r s2s3s2 sss2t8 as2s3te is2s3te us2s3te üs2s3te s2st3hei s2s3ti s2s1to s2s1tr 6ss5um s2s3v s2s3w s2s3z 1cker. 1ckert 1ckad 1cke. 1ckel 1cken 4ck1ent 1ckere 1ckern 1ckeru 1ckie 1ckig 1ckun liblouis-2.5.3/tables/cs-translation.cti0000664000175000017500000000467112161041546015212 00000000000000# # Copyright (C) 2011 by Bert Frees # Copyright (C) 2011 by Jan Halousek # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ---------------------------------------------------------------------------------------------- # # Czech Braille # # Created and maintained by Bert Frees # Jan Halousek # # Based on the official Czech Braille Standard # ---------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------- # Braille indicator opcodes # ---------------------------------------------------------------------------------------------- numsign 3456 capsign 6 begcaps 56 endcaps 5 # ---------------------------------------------------------------------------------------------- # Literary digits # ---------------------------------------------------------------------------------------------- include litdigits6Dots.uti # ---------------------------------------------------------------------------------------------- # Decimal points, hyphens # ---------------------------------------------------------------------------------------------- decpoint \x002C 2 decpoint \x002E 3 hyphen \x002D 36 # ---------------------------------------------------------------------------------------------- # Letter prefix in numbers # ---------------------------------------------------------------------------------------------- class digitletter abcdefghij context $d[]%digitletter @5 context $d"."[]%digitletter @5 context $d","[]%digitletter @5 # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/ukmaths_unicode_defs.cti0000664000175000017500000003470612161041546016436 00000000000000# Unicode character definitions, usually multi-cell lowercase \x2113 4-123 SCRIPT SMALL 006C sign \x00B0 356 Degree math \x00B1 a-56-235-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN math \x0391 456-1 GREEK CAPITAL LETTER ALPHA 03B1 math \x0392 456-12 GREEK CAPITAL LETTER BETA 03B2 math \x0393 456-1245 GREEK CAPITAL LETTER GAMMA 03B3 math \x0394 456-145 GREEK CAPITAL LETTER DELTA 03B4 math \x0395 456-15 GREEK CAPITAL LETTER EPSILON 03B5 math \x0396 456-156 GREEK CAPITAL LETTER ZETA 03B6 math \x0397 456-126 GREEK CAPITAL LETTER ETA 03B7 math \x0398 456-1456 GREEK CAPITAL LETTER THETA 03B8 math \x0399 456-24 GREEK CAPITAL LETTER IOTA 03B9 math \x039A 456-13 GREEK CAPITAL LETTER KAPPA 03BA math \x039B 456-123 GREEK CAPITAL LETTER LAMDA math \x039C 456-134 GREEK CAPITAL LETTER MU 03BC math \x039D 456-1345 GREEK CAPITAL LETTER NU 03BD math \x039E 456-1346 GREEK CAPITAL LETTER XI 03BE math \x039F 456-135 GREEK CAPITAL LETTER OMICRON 03BF math \x03A0 456-1234 GREEK CAPITAL LETTER PI 03C0 math \x03A1 456-1235 GREEK CAPITAL LETTER RHO 03C1 math \x03A3 456-234 GREEK CAPITAL LETTER SIGMA 03C3 math \x03A4 456-136 GREEK CAPITAL LETTER TAU 03C4 math \x03A5 456-136 GREEK CAPITAL LETTER UPSILON 03C5 math \x03A6 456-124 GREEK CAPITAL LETTER PHI 03C6 math \x03A7 456-12346 GREEK CAPITAL LETTER CHI 03C7 math \x03A8 456-1246 GREEK CAPITAL LETTER PSI 03C8 math \x03A9 456-2456 GREEK CAPITAL LETTER OMEGA 03C9 math \x03B1 46-1 GREEK SMALL LETTER ALPHA 0391 0391 math \x03B2 46-12 GREEK SMALL LETTER BETA 0392 0392 math \x03B3 46-1245 GREEK SMALL LETTER GAMMA 0393 0393 math \x03B4 46-145 GREEK SMALL LETTER DELTA 0394 0394 math \x03B5 46-15 GREEK SMALL LETTER EPSILON 0395 0395 math \x03B6 46-156 GREEK SMALL LETTER ZETA 0396 0396 math \x03B7 46-236 GREEK SMALL LETTER ETA 0397 0397 math \x03B8 46-1456 GREEK SMALL LETTER THETA 0398 0398 math \x03B9 46-24 GREEK SMALL LETTER IOTA 0399 0399 math \x03BA 46-13 GREEK SMALL LETTER KAPPA 039A 039A math \x03BB 46-123 GREEK SMALL LETTER LAMDA GREEK math \x03BC 46-134 GREEK SMALL LETTER MU 039C 039C math \x03BD 46-1345 GREEK SMALL LETTER NU 039D 039D math \x03BE 46-1346 GREEK SMALL LETTER XI 039E 039E math \x03BF 46-135 GREEK SMALL LETTER OMICRON 039F 039F math \x03C0 46-1234 GREEK SMALL LETTER PI 03A0 03A0 math \x03C1 46-1235 GREEK SMALL LETTER RHO 03A1 03A1 math \x03C2 46-25 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3 math \x03C3 46-234 GREEK SMALL LETTER SIGMA 03A3 03A3 math \x03C4 46-2345 GREEK SMALL LETTER TAU 03A4 03A4 math \x03C5 46-136 GREEK SMALL LETTER UPSILON 03A5 03A5 math \x03C6 46-124 GREEK SMALL LETTER PHI 03A6 03A6 math \x03C7 46-12346 GREEK SMALL LETTER CHI 03A7 03A7 math \x03C8 46-125 GREEK SMALL LETTER PSI 03A8 03A8 math \x03C9 46-135 GREEK SMALL LETTER OMEGA 03A9 03A9 math \x03D5 46-124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI math \x2026 a-3-3-3 HORIZONTAL ELLIPSIS 002E 002E 002E math \x2032 4-35 PRIME math \x2033 3-3 DOUBLE PRIME 2032 2032 math \x2114 1256 B BAR SYMBOL math \x211D 4-6-1235 DOUBLE-STRUCK CAPITAL 0052 DOUBLE-STRUCK math \X212B 45-1 ANGSTROM SIGN math \X2190 a246-25 LEFTWARDS ARROW math \X2191 a-25-24 UPWARDS ARROW math \x2192 a-25-135 RIGHTWARDS ARROW math \X2193 a-25-36 DOWNWARDS ARROW math \X2194 a-246-25-135 LEFT RIGHT ARROW math \X2195 a-1246-126-146-246-25-25-135 UP DOWN ARROW math \X2196 a-1246-45-246-25-25 NORTH WEST ARROW math \X2197 a-1246-45-25-25-135 NORTH EAST ARROW math \X2198 a-1246-56-25-25-135 SOUTH EAST ARROW math \X2199 a-1246-56-246-25-25 SOUTH WEST ARROW math \X219A a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH STROKE math \X219B a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH STROKE math \X219C a-1246-246-35-25-26 LEFTWARDS WAVE ARROW math \X219D a-1246-35-25-26-135 RIGHTWARDS WAVE ARROW math \X219E a-1246-246-246-25-25 LEFTWARDS TWO HEADED ARROW math \X219F a-1246-126-25-25-135-135 UPWARDS TWO HEADED ARROW math \X21A0 a-1246-25-25-135-135 RIGHTWARDS TWO HEADED ARROW math \X21A1 a-1246-146-25-25-135-135 DOWNWARDS TWO HEADED ARROW math \X21A2 a-1246-246-25-25-6-13456 LEFTWARDS ARROW WITH TAIL math \X21A3 a-12456-12346-25-25-135 RIGHTWARDS ARROW WITH TAIL math \X21A4 a-1246-246-25-25-1256 LEFTWARDS ARROW FROM BAR math \X21A5 a-1246-126-1256-25-25-135 UPWARDS ARROW FROM BAR math \X21A6 a-1246-1256-25-25-135 RIGHTWARDS ARROW FROM BAR math \X21A7 a-1246-146-1256-25-25-135 DOWNWARDS ARROW FROM BAR math \X21A8 a-1246-246-25-1256-25-135 UP DOWN ARROW WITH BASE math \X21A9 a-1246-246-25-25-6-135 LEFTWARDS ARROW WITH HOOK math \X21AA a-12456-246-25-25-135 RIGHTWARDS ARROW WITH HOOK math \X21AB a-1246-246-25-25-46-16 LEFTWARDS ARROW WITH LOOP math \X21AC a-1246-46-16-25-25-135 RIGHTWARDS ARROW WITH LOOP math \X21AD a-1246-246-35-25-26-135 LEFT RIGHT WAVE ARROW math \X21AE a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH STROKE math \X21AF a-1246-146-35-26-35-1359 DOWNWARDS ZIGZAG ARROW math \X21B4 a-12456-1256-25-25-135 RIGHTWARDS ARROW WITH CORNER DOWNWARDS math \X21B5 a-1246-1456-1256-25-25-135 DOWNWARDS ARROW WITH CORNER LEFTWARDS math \X21B6 a-1246-26-35-135 ANTICLOCKWISE TOP SEMICIRCLE ARROW math \X21B7 a-1246-246-26-35 CLOCKWISE TOP SEMICIRCLE ARROW math \X21BA a-1246-26-35-135 ANTICLOCKWISE OPEN CIRCLE ARROW math \X21BB a-1246-246-26-35 CLOCKWISE OPEN CIRCLE ARROW math \X21BC a-1246-4-246-25-25 LEFTWARDS HARPOON WITH BARB UPWARDS math \X21BD a-12456-246-25-25 LEFTWARDS HARPOON WITH BARB DOWNWARDS math \X21BE a-1246-126-25-25-6-135 UPWARDS HARPOON WITH BARB RIGHTWARDS math \X21BF a-1246-126-25-25-4-135 UPWARDS HARPOON WITH BARB LEFTWARDS math \X21C0 a-1246-25-25-4-135 RIGHTWARDS HARPOON WITH BARB UPWARDS math \X21C1 a-1246-25-25-6-135 RIGHTWARDS HARPOON WITH BARB DOWNWARS math \X21C2 a-1246-246-25-25-4-135 DOWNWARDS HARPOON WITH BARB RIGHTWARDS math \X21C3 a-1246-146-25-25-6-135 DOWNWARDS HARPOON WITH BARB LEFTWARDS math \X21C4 1246-25-25-135-1246-246-25-25 RIGHTWARDS ARROW OVER LEFTWARDS ARROW math \X21C5 1246-126-25-25-135-5-1246-146-25-25-135 UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW math \X21C6 1246-246-25-25-1246-25-25-135 LEFTWARDS ARROW OVER RIGHTWARDS ARROW math \X21C7 1246-245-25-25-1246-245-25-25 LEFTWARDS PAIRED ARROWS math \X21C8 1246-126-25-25-135-5-1246-126-25-25-135 UPWARDS PAIRED ARROWS math \X21C9 1246-25-25-135-1246-25-25-135 RIGHTWARDS PAIRED ARROWS math \X21CA 1246-146-25-25-135-5-1246-146-25-25-135 DOWNWARDS PAIRED ARROWS math \X21CB 1246-4-246-25-25-1246-25-25-4-135 LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON math \X21CC 1246-25-25-4-135-1246-4-246-25-25 RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON math \X21CD a-1256-4-1246-246-246-25-25 LEFTWARDS DOUBLE ARROW WITH STROKE math \X21CE a-1256-4-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW WITH STROKE math \X21CF a-1256-4-1246-25-25-135-135 RIGHTWARDS DOUBLE ARROW WITH STROKE math \X21D0 a-246-246-25 LEFTWARDS DOUBLE ARROW math \X21D1 a-1246-126-25-25-135-135 UPWARDS DOUBLE ARROW math \X21D2 a-25-135-135 RIGHTWARDS DOUBLE ARROW math \X21D3 a-1246-126-25-25-135-135 DOWNWARDS DOUBLE ARROW math \X21D4 a-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW math \X21D5 a-1246-126-246-246-25-25-135-135 UP DOWN DOUBLE ARROW math \X21D6 a-1246-45-246-246-25-25 NORTH WEST DOUBLE ARROW math \X21D7 a-1246-45-25-25-135-135 NORTH EAST DOUBLE ARROW math \X21D8 a-1246-56-25-25-135-135 SOUTH EAST DOUBLE ARROW math \X21D9 a-1246-56-246-246-25-25 SOUTH WEST DOUBLE ARROW math \X21DA a-1246-246-246-246-25-25 LEFTWARDS TRIPLE ARROW math \X21DB a-1246-25-25-135-135-135 RIGHTWARDS TRIPLE ARROW math \X21DC a-1246-246-26-36-35-25-26 LEFTWARDS SQUIGGLE ARROW math \X21DD a-1246-26-36-35-25-26-135 RIGHTWARDS SQUIGGLE ARROW math \X21DE a-1256-1256-4-1246-126-25-25-135-12456 UPWARDS ARROW WITH DOUBLE STROKE math \X21DF a-1256-1256-4-1246-146-25-25-135-12456 DOWNWARDS ARROW WITH DOUBLE STROKE math \X21E0 a-1246-246-25-25 LEFTWARDS DASHED ARROW math \X21E1 a-1246-126-25-25-135 UPWARDS DASHED ARROW math \X21E2 a-1246-25-25-135 RIGHTWARDS DASHED ARROW math \X21E3 a-1246-146-25-25-135 DOWNWARDS DASHED ARROW math \X21E4 a-1246-1256-246-25-25 LEFTWARDS ARROW TO BAR math \X21E5 a-1246-25-25-135-1256 RIGHTWARDS ARROW TO BAR math \X21E6 a-1246-456-246-25-25 LEFTWARDS WHITE ARROW math \X21E7 a-1246-126-456-25-25-135 UPWARDS WHITE ARROW math \X21E8 a-1246-456-25-25-135 RIGHTWARDS WHITE ARROW math \X21E9 a-1246-146-456-25-25-135 DOWNWARDS WHITE ARROW math \X21F3 a-1246-126-456-246-25-25-135 UP DOWN WHITE ARROW math \X21F4 a-1246-25-25-135-46-16 RIGHT ARROW WITH SMALL CIRCLE math \X21F5 a-1246-146-25-25-135-5-1246-126-25-25-135 DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW math \X21F6 a-1246-25-25-135-1246-25-25-135-1246-25-25-135 THREE RIGHTWARDS ARROWS math \X21F7 a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH VERTICAL STROKE math \X21F8 a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH VERTICAL STROKE math \X21F9 a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH VERTICAL STROKE math \X21FA a-1256-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE math \X21FB a-1256-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE math \X21FC a-1256-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE math \X21FD a-1246-1256-25-25 LEFTWARDS OPEN-HEADED ARROW math \X21FE a-1246-25-25-1256 RIGHTWARDS OPEN-HEADED ARROW math \X21FF a-1246-1256-25-25-1256 LEFT RIGHT OPEN-HEADED ARROW math \x2200 1256-2 FOR ALL math \X2202 4-145 PARTIAL DIFFERENTIAL math \X2203 1256-26 THERE EXISTS math \X2204 34-4-123456 THERE DOES NOT EXIST math \X2205 1256-356 EMPTY SET math \X2207 456-356 NABLA math \x2208 1256-35 ELEMENT OF math \X2209 34-4-15 NOT AN ELEMENT OF math \X220B 1256-135 CONTAINS AS MEMBER math \X220C 35-1256-135 DOES NOT CONTAIN AS MEMBER math \X220D 4-26 SMALL CONTAINS AS MEMBER math \X220E a-123456-123456 END OF PROOF math \x2211 456-234 NRY SUMMATION math \x2212 a-56-36 MINUS SIGN math \X2217 4-3456 ASTERISK OPERATOR math \x2218 356 degrees sign math \X221D a-25-2356 PROPORTIONAL TO math \x221E 123456 INFINITY math \X221F 1246-246-46-1235-12456 RIGHT ANGLE math \X2220 1456-246 ANGLE math \X2221 1246-246-456-1246-1246-1-12456 MEASURED ANGLE math \X2222 1246-246-456-1246-1246-1-12456 Spherical ANGLE math \X2223 1256 DIVIDES math \X2224 34-1256 DOES NOT DIVIDE math \X2225 a-1246-123 PARALLEL TO math \X2226 a-34-1246-123 NOT PARALLEL TO math \X2229 1256-2356 INTERSECTION math \X222A 1256-235 UNION math \x222B 2346 INTEGRAL math \x222C 2346-2346 DOUBLE INTEGRAL math \x222D 2346-2346-2346 TRIPLE INTEGRAL math \X222E 2346-4-1246-14-12456 CONTOUR INTEGRAL math \X2232 2346-4-1246-246-26-35-12456 CLOCKWISE CONTOUR INTEGRAL math \X2233 2346-4-1246-26-35-135-12456 ANTICLOCKWISE CONTOUR INTEGRAL math \X2234 a-6-16 THEREFORE math \X2235 a-4-34 BECAUSE math \X2236 a-5-2 RATIO math \X2245 a-456-2356 APPROXIMATELY EQUAL TO math \X224D a-2356-2356 EQUIVALENT TO math \x2260 a-35-2356 NOT EQUAL TO math \x2261 a-456-123 IDENTICAL TO math \x2264 a-246-2356 LESS-THAN OR EQUAL TO math \x2265 a-135-2356 GREATER-THAN OR EQUAL TO GREATER THAN OR EQUAL TO math \X2266 a-246-456-2356 LESS-THAN OVER EQUAL TO math \X2267 a-46-2-46-13 GREATER-THAN OVER EQUAL TO math \X2268 a-246-35-2356 LESS-THAN BUT NOT EQUAL TO math \X2269 a-135-35-2356 GREATER-THAN BUT NOT EQUAL TO math \X226A a-246-246 MUCH LESS-THAN math \X226B a-135-135 MUCH GREATER-THAN math \X226D a-35-2356-2356 NOT EQUIVALENT TO math \X226E a-35-246 NOT LESS-THAN math \X226F a-35-135 NOT GREATER-THAN math \X2270 a-34-5-13-156 NEITHER LESS-THAN NOR EQUAL TO math \X2271 a-34-46-2-156 NEITHER GREATER-THAN NOR EQUAL TO math \X2272 a-246-2356-2356 LESS-THAN OR EQUIVALENT TO math \X2273 a-135-2356-2356 GREATER-THAN OR EQUIVALENT TO math \X2274 a-34-5-13-456-123 NEITHER LESS-THAN NOR EQUIVALENT TO math \X2275 a-34-46-2-456-123 NEITHER GREATER-THAN NOR EQUIVALENT TO math \X2276 a-5-13-46-2 LESS-THAN OR GREATER-THAN math \X2277 a-46-2-5-13 GREATER-THAN OR LESS-THAN math \X2278 a-34-5-13-46-2 NEITHER LESS-THAN NOR GREATER-THAN math \X2279 a-34-46-2-5-13 NEITHER GREATER-THAN NOR LESS-THAN math \X2282 456-5-13 SUBSET OF math \X2283 456-46-2 SUPERSET OF math \X2284 34-456-5-13 NOT A SUBSET OF math \X2285 34-456-46-2 NOT A SUPERSET OF math \X2286 456-5-13-156 SUBSET OF OR EQUAL TO math \X2287 46-2-156 SUPERSET OF OR EQUAL TO math \X2288 34-5-13-156 NEITHER A SUBSET OF NOR EQUAL TO math \X2289 34-46-2-156 NEITHER A SUPERSET OF NOR EQUAL TO math \X228A 456-5-13-34-46-13 SUBSET OF WITH NOT EQUAL TO math \X228B 456-46-2-34-46-13 SUPERSET OF WITH NOT EQUAL TO math \X2295 1246-14-456-1246-346-12456 CIRCLED PLUS math \X2296 1246-14-456-1246-36-12456 CIRCLED MINUS math \X2297 1246-14-456-1246-4-16-12456 CIRCLED TIMES math \X2298 1246-14-456-1246-456-34-12456 CIRCLED DIVISION SLASH math \X2299 1246-14-456-1246-16-12456 CIRCLED DOT OPERATOR math \X229B 1246-14-456-1246-4-3456-12456 CIRCLED ASTERISK OPERATOR math \X229C 1246-14-456-1246-46-13-12456 CIRCLED EQUALS math \X229D 1246-14-456-1246-36-36-12456 CIRCLED DASH math \X229E 1246-256-456-1246-346-12456 SQUARED PLUS math \X229F 1246-256-456-1246-36-12456 SQUARED MINUS math \X22A0 1246-256-456-1246-4-16-12456 SQUARED TIMES math \X22A1 1246-256-456-1246-16-12456 SQUARED DOT OPERATOR math \X22A5 a-3456-3 Perpendicular TO math \X22A5 a-34-1246-1234 not Perpendicular TO math \x22C5 56-3 dot operator math \X22DC a-2356-246 EQUAL TO OR LESS-THAN math \X22DD a-2356-135 EQUAL TO OR GREATER-THAN math \X22EE 126-3-3-3 VERTICAL ELLIPSIS math \X22EF 3-3-3 MIDLINE HORIZONTAL ELLIPSIS math \X22F0 45-3-3-3 UP RIGHT DIAGONAL ELLIPSIS math \X22F1 56-3-3-3 DOWN RIGHT DIAGONAL ELLIPSIS math \x2322 a-1246-1 arc math \X25A0 1246-456-12345 filled Square math \X25A1 1246-12345 Square math \X25AB 1246-456-1235 filled Rectangle math \X25AC 1246-1235 Rectangle math \X25B0 1246-456-1245 filled PARALLELOGRAM math \X25B1 1246-1245 PARALLELOGRAM math \X25B2 1246-456-145 Filled Triangle math \X25B3 1246-145 Triangle math \X25BC 456-46-1246 BLACK DOWN-POINTING TRIANGLE math \X25BD 46-1246 WHITE DOWN-POINTING TRIANGLE math \X25CA 1246-456-14 filled Circle math \X25CB 1246-25 Circle math \xf577 1246-135 contracted right arrow sign * 4-3456 ASTERISK OPERATOR sign \x009A a SINGLE CHARACTER INTRODUCER sign \x00A2 4-14 CENT SIGN sign \x00A7 4-6-234 SECTION SIGN sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN sign \x00B7 16 MIDDLE DOT sign \x00D7 a-56-236 MULTIPLICATION SIGN sign \X00F7 a-56-256 DIVISION SIGN sign \x2022 35-35 BULLET sign \X2215 456-34 DIVISION slash sign \x2715 a-56-236 MULTIPLICATION SIGN space \x2009 0 THIN SPACE 0020 space \x2061 0 FUNCTION APPLICATION liblouis-2.5.3/tables/hyph_it_IT.dic0000664000175000017500000000423612161041546014266 00000000000000ISO8859-1 .a3p2 .anti1 .a1n .a2n1t .a1nti3m2n .anti1m .bio1 .1b .1c2 .ca4p3s2 .ca1p .circu2m1 .ci1r .1ci2r1c .1d2 .di2s3cine .di1s2 .dis1c .disci1n .fra2n2k3 .1f .f2r .fra1n .free3 .narco1 .1n .na1r .na2r1c .opto1 .o1p .o2p1t .orto3p2 .o1r .o2r1t .para1 .1p .pa1r .1poli3p2 .po1l .pre1 .p2r .2p2s2 .sha2re3 .1s2 .s1h .sha1r .tran2s3c .1t .t2r .tra1n .tra2n1s2 .tran2s3d .tran2s3f .tran2s3l .tra1n2s3n .tran2s3p .t1ran2s3r .1tran2s3t .su2b3lu .su1b .sub2l .su2b3r .wa2g3n .1w .wa1g .we2l2t1 .we1l a1ia a1ie a1io a1iu a1uo a1ya 2a2t. a1t e1iu e2w o1ia o1ie o1io o1iu '2 1b 2b1b 2b1c 2b1d 2b1f 2b1m 2b1n 2b1p 2b1s2 2b1t 2b1v b2l b2r 2b. 2b'. b'2 2b'2'2 1c 2c1b 2c1c 2c1d 2c1f 2c1k 2c1m 2c1n 2c1q 2c1s2 2c1t 2c1z c2h 2c2h1h 2c2h1b c2h2r 2c2h1n c2l c2r 2c. 2c'. c'2 2c'2'2 1d 2d1b 2d1d 2d1g 2d1l 2d1m 2d1n 2d1p d2r 2d1s2 2d1t 2d1v 2d1w 2d. 2d'. d'2 2d'2'2 1f 2f1b 2f1g 2f1f 2f1n f2l f2r 2f1s2 2f1t 2f. 2f'. f'2 2f'2'2 1g 2g1b 2g1d 2g1f 2g1g g2h g2l 2g1m g2n 2g1p g2r 2g1s2 2g1t 2g1v 2g1w 2g1z 2gh2t 2g. 2g'. g'2 2g'2'2 1h 2h1b 2h1d 2h1h hi3p2n hi1p h2l 2h1m 2h1n 2h1r 2h1v 2h. 2h'. h'2 2h'2'2 1j 2j. 2j'. j'2 2j'2'2 1k 2k1g 2k1f k2h 2k1k k2l 2k1m k2r 2k1s2 2k1t 2k. 2k'. k'2 2k'2'2 1l 2l1b 2l1c 2l1d 2l3f2 2l1g l2h 2l1k 2l1l 2l1m 2l1n 2l1p 2l1q 2l1r 2l1s2 2l1t 2l1v 2l1w 2l1z 2l. 2l'. l'2 2l'2'2 1m 2m1b 2m1c 2m1f 2m1l 2m1m 2m1n 2m1p 2m1q 2m1r 2m1s2 2m1t 2m1v 2m1w 2m. 2m'. m'2 2m'2'2 1n 2n1b 2n1c 2n1d 2n1f 2n1g 2n1k 2n1l 2n1m 2n1n 2n1p 2n1q 2n1r 2n1s2 2n1t 2n1v 2n1z 1n2g3n 2nhei2t. n1h nhei1t 2n. 2n'2 2n'2'2 1p 2p1d p2h p2l 2p1n 3p2ne 2p1p p2r 2p1s2 3p2si1c 2p1t 2p1z 2p. 2p'. p'2 2p'2'2 1q 2q1q 2q. 2q'. q'2 2q'2'2 1r 2r1b 2r1c 2r1d 2r1f r2h 2r1g 2r1k 2r1l 2r1m 2r1n 2r1p 2r1q 2r1r 2r1s2 2r1t r2t2s3 2r1v 2r1x 2r1w 2r1z 2r. 2r'. r'2 2r'2'2 1s2 2s2h1m s1h 2s3s2 s4s3m 2s3p2n s1p 2s2t1b s1t 2s2t1c 2s2t1d 2s2t1f 2s2t1g 2s2t1m 2s2t1n 2s2t1p 2s2t1s2 2s2t1t 2s2t1v 2s1z 4s. 4s'. s'2 4s'2'2 1t 2t1b 2t1c 2t1d 2t1f 2t1g t2h t2l 2t1m 2t1n 2t1p t2r 2t1s2 3t2sc2h ts1c 2t1t 2t1v 2t1w t2z 2tz1k 2t2z1s2 2t. 2t'. t'2 2t'2'2 1v 2v1c v2l v2r 2v1v 2v. 2v'. v'2 2v'2'2 1w w2h wa2r 2w1y 2w. 2w'. w'2 2w'2'2 1x 2x1t 2x1w 2x. 2x'. x'2 2x'2'2 y1ou y1i 1z 2z1b 2z1d 2z1l 2z1n 2z1p 2z1t 2z1s2 2z1v 2z1z 2z. 2z'. z'2 2z'2'2 .1z2 liblouis-2.5.3/tables/en-gb-g1.utb0000664000175000017500000002133712161041546013557 00000000000000# liblouis: U.K. English Grade 1 table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by Tom Johnston, Tom.Johnston@accessibilityconsulting.co.uk # include text_nabcc.dis All display opcodes include ukchardefs.cti All character definition opcodes # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign letsign 56 capsign 6 begcaps 6-6 endcaps 6-3 begital 46 endital 46-3 begbold 46-46 endbold 46-3 begcomp 6-346 endcomp 6-346 # the decimal digits include litdigits6Dots.uti # Letters are defined in en-chardefs #single letter words largesign a 1 largesign A 1 word I 24 word O 135 word o 135 # punctuation prepunc " 236 postpunc " 356 always " 5 prepunc ' 6-236 postpunc ' 356-3 postpunc '' 356 postpunc ''' 356-3-356 always ' 3 endword 'd 3-145 endword ’d 3-145 word 'em = endword 'll 3-123-123 endword ’ll 3-123-123 endword 'm 3-134 endword ’m 3-134 endword 're 3-1235-15 endword ’re 3-1235-15 endword 'ry 3-1235-13456 endword ’ry 3-1235-13456 endword 'r 3-1235 endword ’r 3-1235 endword 's 3-234 endword ’s 3-234 endword 't 3-2345 endword ’t 3-2345 word 'tis = word 'twas = endword 've 3-1236-15 endword ’ve 3-1236-15 midnum , 3 always , 2 midnum . 2 decpoint . 2 always . 256 always ; 23 midnum : 3456 always : 25 endnum ! 6-235 always ! 235 always # 4-3456 midnum / 456-34-3456 always / 456-34 always ? 236 endnum % 0-25-1234 always % 25-1234 midnum ^ 346-3456 always ^ 456-126 always ~ 4-156 always & 4-12346 midnum * 0-56-236-3456 always * 35-35 repeated *** 35-35-0-35-35-0-35-35 prepunc ( 2356 postpunc ) 2356 always [ 6-2356 always ] 2356-3 always { 46-2356 always } 46-2356 always -com = endword -to = pointed-to resource endword -by = used-by # always _ 78 prepunc `` 236 prepunc ` 6-236 always ` 4 always @ 2346 always \\ 5-16 always | 5-123 repeated --- 36-36-36 # repeated ___ 78-78-78 repeated ___ 46-46-46 repeated ::: 25-25-25 repeated === 56-2356-56-2356-56-2356 repeated ~~~ 4-156-4-156-4-156 always \s-\s 36-36 always \s-\scom 36-36-14-135-134 always ... 3-3-3 always .\s.\s. 3-3-3 . . . # always \x2026 3-3-3 # 8230 MS Word smart ellipsis # the hyphen # always ­ 36 repeated ­­­ 36-36-36 always \s­\s 36-36 # accented letters uplow \x00C0\x00E0 1 # a with grave uplow \x00C1\x00E1 1 # a with acute uplow \x00C2\x00E2 1 # a with circumflex uplow \x00C3\x00E3 1 # a with tilde uplow \x00C4\x00E4 1 # a with dieresis uplow \x00C5\x00E5 1 # a with ring above uplow \x00C6\x00E6 1 # letter ae uplow \x00C7\x00E7 14 # c with cedilla uplow \x00C8\x00E8 15 # e with grave uplow \x00C9\x00E9 15 # e with acute uplow \x00CA\x00EA 15 # e with circumflex uplow \x00CB\x00EB 15 # e with dieresis uplow \x00CC\x00EC 24 # i with grave above uplow \x00CD\x00ED 24 # i with acute above uplow \x00CE\x00EE 24 # i with circumflex uplow \x00CF\x00EF 24 # i with dieresis uplow \x00D0\x00F0 15 # letter eth uplow \x00D1\x00F1 1345 # n with tilde uplow \x00D2\x00F2 135 # o with grave above uplow \x00D3\x00F3 135 # o with acute above uplow \x00D4\x00F4 135 # o with circumflex uplow \x00D5\x00F5 135 # o with tilde uplow \x00D6\x00F6 135 # o with dieresis # \x00D7 × multiplication sign ---------------------- uplow \x00D8\x00F8 135 # o with stroke uplow \x00D9\x00F9 136 # u with grave above uplow \x00DA\x00FA 136 # u with acute above uplow \x00DB\x00FB 136 # u with circumflex above uplow \x00DC\x00FC 136 # u with dieeresis uplow \x00DD\x00FD 13456 # y with acute above uplow \x00DE\x00FE 2345 # letter thorn letter \x00DF 2346 # small sharp s uplow \x0174\x0175 2456 w with circumflex uplow \x0176\x0177 13456 # y with circumflex uplow \x0178\x00ff 13456 # y with diaeresis uplow \x1EF2\x1EF3 13456 # y with grave largesign \x00C0 4-1 [C0] upper a grave largesign \x00E0 4-1 [E0] lower a grave largesign \x00C1 4-1 [C1] upper a acute largesign \x00E1 4-1 [E1] lower a acute largesign \x00C2 4-1 [C2] upper a circumflex largesign \x00E2 4-1 [E2] lower a circumflex largesign \x00C3 4-1 [C3] upper a tilde largesign \x00E3 4-1 [E3] lower a tilde largesign \x00C4 4-1 [C4] upper a dieresis largesign \x00E4 4-1 [E4] lower a dieresis largesign \x00C5 4-1 [C5] upper a ring largesign \x00E5 4-1 [E5] lower a ring largesign \x00C6 1-15 [C6] upper ae largesign \x00E6 1-15 [E6] lower ae largesign \x00C7 4-14 [C7] upper c cedilla largesign \x00E7 4-14 [E7] lower c cedilla largesign \x00C8 4-15 [C8] upper e grave largesign \x00E8 4-15 [E8] lower e grave largesign \x00C9 4-15 [C9] upper e acute largesign \x00E9 4-15 [E9] lower e acute largesign \x00CA 4-15 [CA] upper e circumflex largesign \x00EA 4-15 [EA] lower e circumflex largesign \x00CB 4-15 [CB] upper e dieresis largesign \x00EB 4-15 [EB] lower e dieresis largesign \x00CC 4-24 [CC] upper i grave largesign \x00EC 4-24 [EC] lower i grave largesign \x00CD 4-24 [CD] upper i acute largesign \x00ED 4-24 [ED] lower i acute largesign \x00CE 4-24 [CE] upper i circumflex largesign \x00EE 4-24 [EE] lower i circumflex largesign \x00CF 4-24 [CF] upper i dieresis largesign \x00EF 4-24 [EF] lower i dieresis largesign \x00D0 4-15 [D0] upper eth largesign \x00F0 4-15 [F0] lower eth largesign \x00D1 4-1345 [D1] upper n tilde largesign \x00F1 4-1345 [F1] lower n tilde largesign \x00D2 4-135 [D2] upper o grave largesign \x00F2 4-135 [F2] lower o grave largesign \x00D3 4-135 [D3] upper o acute largesign \x00F3 4-135 [F3] lower o acute largesign \x00D4 4-135 [D4] upper o circumflex largesign \x00F4 4-135 [F4] lower o circumflex largesign \x00D5 4-135 [D5] upper o tilde largesign \x00F5 4-135 [F5] lower o tilde largesign \x00D6 4-135 [D6] upper o dieresis largesign \x00F6 4-135 [F6] lower o dieresis largesign \x00D8 4-135 [D8] upper o slash largesign \x00f8 4-135 [F8] lower o slash largesign \x00D9 4-136 [D9] upper u grave largesign \x00F9 4-136 [F9] lower u grave largesign \x00DA 4-136 [DA] upper u acute largesign \x00FA 4-136 [FA] lower u acute largesign \x00DB 4-136 [DB] upper u circumflex largesign \x00FB 4-136 [FB] lower u circumflex largesign \x00DC 4-136 [DC] upper u dieresis largesign \x00FC 4-136 [FC] lower u dieresis largesign \x00DD 4-13456 [DD] upper y acute largesign \x00FD 4-13456 [FD] lower y acute largesign \x00DE 4-2345 [DE] upper t horn largesign \x00FE 4-2345 [FE] lower t horn largesign \x00DF 234-234 (DF) lower ss largesign \x0174 4-2456 lower w circumflex largesign \x0175 4-2456 upper w circumflex largesign \x0176 4-13456 upper y circumflex largesign \x0177 4-13456 lower y circumflex largesign \x0178 4-13456 upper y with dieresis largesign \x00FF 4-13456 lower y with dieresis largesign \x1EF2 4-13456 upper y with grave largesign \x1EF3 4-13456 lower y with grave hyphen \x2010 36 # 8208 hyphen # punctuation \x2011 36 # 8209 non-breaking hyphen punctuation \x2011 23478 # 8209 non-breaking hyphen always \x2013 56-36 # 8211 smart minus sign always \x201C 236 # 8220 smart opening double quote always \x201D 356 # 8221 smart closing double quote always \x201E 236 # 8222 smart double low quotation mark always \x201F 356 # 8223 smart double high reverse quotation mark # mathematical symbols decpoint . 2 always < 246 joinword = 56-2356 joinnum = 56-2356 always > 135 midnum + 0-56-235-3456 joinnum + 56-235 joinword + 56-235 midnum - 36-3456 always - 36 joinnum × 56-236 joinword × 56-236 midnum ÷ 0-56-256-3456 division sign joinnum ÷ 56-256 joinword ÷ 56-256 begnum £ 123 always £ 4-123 pounds # other special characters always © 45-14 copyright sign ™ 45-2345 trademark sign ® 45-1235 registered always ¶ 1234-345 paragraph always § 234-3 section always ° 356 degrees begnum $ 256 always $ 4-256 always ¢ 4-14 cents sign € 4-15 euro always € 4-15 euro always Â¥ 4-13456 yen always µ 2-134 mu # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org # include countries.cti literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zi p liblouis-2.5.3/tables/Es-Es-G0.utb0000664000175000017500000001516312161041546013442 00000000000000# liblouis: Computer Spanish 8 dots Braille table # # Copyright (C) 2012 by José Enrique Fernández del Campo and Juan Carlos Buño Suárez # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # Uncontracted Computer Spanish Table # Autor José Enrique Fernández del Campo and Juan Carlos Buño Suárez # ----------------------------------------------------------------------------- space \s 0 # blank 32 space \t 9 # tab 9 space \x001B 1b # escape space \x000A 0 # lf space \x000D 0 # cr space \X00A0 0 # Espacio de no separación # all except 0 are the same, so define 0 here to take higher presidence digit 0 34678 cero include digits6DotsPlusDot6.uti include latinLetterDef8Dots.uti uplow \x00c7\x00e7 1234678,123468 c cedilla uplow \x00c1\x00e1 123567,12356 a con acento uplow \x00c9\x00e9 23467,2346 e con acento uplow \x00cd\x00ed 347,34 i con acento uplow \x00d3\x00f3 3467,346 o con acento uplow \x00da\x00fa 234567,23456 u con acento uplow \x00c0\x00e0 1235678,123568 a grave uplow \x00c8\x00e8 234678,23468 e grave uplow \x00cc\x00ec 345,348 i grave uplow \x00d2\x00f2 2458,3468 o grave uplow \x00d9\x00f9 2345678,234568 u grave uplow \x00c2\x00e2 178,18 a con circunflejo uplow \x00ca\x00ea 1578,158 e con circunflejo uplow \x00ce\x00ee 2478,248 i con circunflejo uplow \x00d4\x00f4 13578,1358 o con circunflejo uplow \x00db\x00fb 13678,1368 u con circunflejo uplow \x00c4\x00e4 34578,3458 a con diéresis uplow \x00cb\x00eb 124678,12468 e con diéresis uplow \x00cf\x00ef 1245678,258 i con diéresis uplow \x00d6\x00f6 24678,2468 o con diéresis uplow \x00dc\x00fc 125678,12568 u con diéresis uplow \x00dd\x00fd 1567,2348 ye con acento agudo uplow \x009F\x00FF 367,67 ye con diéresis uplow \X00c6\X00e6 38,1348 ae uplow \X0152\X0153 1468,1238 oe uplow \x008C\x009C 1468,1238 oe uplow \x00C3\x00E3 3567,168 a con tilde uplow \x00D5\x00F5 12458,4567 o con tilde uplow \x00D1\x00F1 124567,124568 letra eñe punctuation , 2 coma punctuation ; 23 punto y coma punctuation : 25 dos puntos punctuation - 36 guión punctuation . 3 punto punctuation ? 26 cerrar interrogación punctuation ! 2357 cerrar admiración punctuation \X0022 56 comillas punctuation \X201c 14568 abrir comillas punctuation \X201d 12348 cerrar comillas punctuation ( 1268 abre paréntesis punctuation ) 3457 cierra paréntesis punctuation ' 4 apóstrofo punctuation \x00ab 238 comillas angulares izquierda punctuation \x00bb 567 comillas angulares derecha punctuation [ 2367 abre corchetes punctuation ] 3568 cierra corchetes punctuation { 46 abre llave punctuation } 35 cierra llave sign * 256 asterisco sign \\ 123456 barra invertida sign @ 5 arroba sign % 456 por ciento sign _ 6 subrayado sign # 3456 signo de número sign \x0060 58 acento grave sign ^ 45 circunflejo sign \X007E 57 #126 ~ tilde sign \X007C 4568 # barra vertical sign \X007F 7 # borrar sign \x00a1 23578 # abrir admiración sign \X00A6 478 # barra vertical cortada sign \X00A7 167 # sección sign \X00A8 268 # diéresis sign \X00A9 23567 # copyright sign \X00AC 257 # guión opcional sign \X20AC 12358 # euros sign \X00AD 2358 # soft hyphen sign \X00AE 2368 # registrado sign \X00AF 24568 # macron sign \X00B1 12467 # más-menos sign \X00B5 13468 # my sign \X00B6 14567 # párrafo sign \X00B7 14678 # punto centrado sign \X00B9 237 # Super uno sign \X00BA 5678 # ordinal masculino sign \x00AA 23568 # ordinal femenino sign \X00BF 267 # abrir interrogación sign \X00C5 12368 #*a mayúscula con círculo superescrito sign \X00D0 13458 # letra eth mayúscula sign \X00D7 1678 # multiplicado por sign \X00D8 34567 # Alfa sign \X00DE 123458 # Thorn sign \X00DF 128 # Beta sign \X00E5 15678 # a con círculo superescrito sign \X00F0 235678 # letra eth sign \X00F7 2578 # dividido por sign \X00F8 457 # latin small letter o with stroke sign \X00FE 1568 # thorn sign \x00A8 268 diéresis math + 235 más math = 2356 igual math \x00d7 1678 multiplicado por math < 236 menor que math > 356 mayor que math / 3478 barra oblicua math \x00F7 2578 dividido por sign \x00a9 23567 copyright sign \x00b0 8 grado sign & 12346 ampersand sign \x00a2 12678 centavo sign \x00a4 2567 sign \x00a3 2378 libra sign \x00a7 167 sección sign \x0024 123467 dólar sign \x00a5 145678 yen sign \x00b9 237 super 1 sign \x00b2 47 al cuadrado sign \x00b3 568 al cubo sign \x00bc 1467 un cuarto sign \x00bd 468 un medio sign \x00be 48 tres cuartos sign \x0081 358 sin nombre sign \x0082 37 por sign \X201a 37 por sign \X0083 1248 signo sign \X0192 1248 signo sign \X0084 78 signo sign \X201e 78 signo sign \X0085 1267 elipsis sign \X2026 1267 elipsis sign \X0086 28 sin nombre sign \X2020 28 sin nombre sign \X0087 23458 sin nombre sign \X2021 23458 sin nombre sign \X0088 458 sin nombre sign \X02c6 23458 sin nombre sign \X0089 45678 sin nombre sign \X2030 45678 sin nombre sign \X008a 1234568 sh mayúscula sign \X0160 1234568 sh mayúscula sign \X008b 1258 sign \X2039 1258 sign \X008d 357 sin nombre sign \X008e 148 sin nombre sign \X017d 148 sin nombre sign \X008f 58 sign \X0090 68 sin nombre sign \X2018 4 apóstrofo sign \X2019 4 apóstrofo sign \X0095 1458 signo sign \X2022 1458 signo sign \X0096 368 guión sign \X2013 368 guión sign \X0097 3678 guión sign \X2014 3678 guión sign \X0098 134568 tilde sign \X02dc 134568 tilde sign \X0099 2467 marca registrada sign \X2122 2467 marca registrada sign \X009a 34568 signo sign \X203a 34568 signo sign \X0161 12567 sh sign \X009d 25678 sign \X009e 2568 sign \X017e 2568 sign \X009f 367 sign \X0178 367 sign \x00b4 467 acento agudo sign \x00B8 135678 z con caron liblouis-2.5.3/tables/ko-g2.ctb0000664000175000017500000102752212161041546013162 00000000000000# liblouis: Korean Grade 2 (contracted) # # Based on the braille contraction table in BRLTTY # # Copyright (C) 1995-2012 by The BRLTTY Team. # # Samuel Thibault # # This is missing CHITUEUM*, CEONGCHIEUMSIOS, PANSIOS, YESIEUNG, RINHIEUH and # ARAEA for which I couldn't find documentation. Please contact me to fix # anything, as this table was generated from a C program. # # Copyright (C) 2012 by Mesar Hameed # Copyright (C) 2013 by Joseph Lee # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # Globals: include ko.cti Uncontracted Hangul, punctuation and symbols. # Common letter contractions: # Using "always" opcode in order for contraction to work correctly. # Otherwise letters shows grade 1 dot patterns. # This is because many Korean contractions are shorthand for Hangul characters (see ko.cti). # Special cases: # Since there are a number of rules in place about special char placement, had to put one of the special cases at the top. # Case 1: numbers followed by Korean characters: # Included case 1 before actual common char contractions to help with translations. # See ko.cti for more info regarding this matter. after digit always 나 0-14 after digit always ë‚™ 0-14-1 after digit always 낚 0-14-1-1 after digit always ë‚› 0-14-1-3 after digit always 난 0-14-25 after digit always ë‚ 0-14-25-13 after digit always 낞 0-14-25-356 after digit always 낟 0-14-35 after digit always ë‚  0-14-2 after digit always ë‚¡ 0-14-2-1 after digit always ë‚¢ 0-14-2-26 after digit always ë‚£ 0-14-2-12 after digit always 낤 0-14-2-3 after digit always ë‚¥ 0-14-2-236 after digit always 낦 0-14-2-256 after digit always ë‚§ 0-14-2-356 after digit always 남 0-14-26 after digit always ë‚© 0-14-12 after digit always 낪 0-14-12-3 after digit always ë‚« 0-14-3 after digit always 났 0-14-34 after digit always ë‚­ 0-14-2356 after digit always ë‚® 0-14-13 after digit always 낯 0-14-23 after digit always ë‚° 0-14-235 after digit always 낱 0-14-236 after digit always 낲 0-14-256 after digit always 낳 0-14-356 after digit always 넉 0-14-1456 after digit always 넊 0-14-1456-1 after digit always ë„‹ 0-14-1456-3 after digit always 넌 0-14-23456 after digit always ë„ 0-14-23456-13 after digit always 넎 0-14-23456-356 after digit always ë„ 0-14-2345 after digit always ë„‘ 0-14-2345-1 after digit always ë„’ 0-14-2345-26 after digit always ë„“ 0-14-2345-12 after digit always ë„” 0-14-2345-3 after digit always ë„• 0-14-2345-236 after digit always ë„– 0-14-2345-256 after digit always ë„— 0-14-2345-356 after digit always ë…„ 0-14-16 after digit always ë…… 0-14-16-13 after digit always ë…† 0-14-16-356 after digit always ë…ˆ 0-14-1256 after digit always ë…‰ 0-14-1256-1 after digit always ë…Š 0-14-1256-26 after digit always ë…‹ 0-14-1256-12 after digit always ë…Œ 0-14-1256-3 after digit always ë… 0-14-1256-236 after digit always ë…Ž 0-14-1256-256 after digit always ë… 0-14-1256-356 after digit always ë…• 0-14-12456 after digit always ë…¹ 0-14-1346 after digit always ë…º 0-14-1346-1 after digit always ë…» 0-14-1346-3 after digit always ë…¼ 0-14-12356 after digit always ë…½ 0-14-12356-13 after digit always ë…¾ 0-14-12356-356 after digit always ë† 0-14-123456 after digit always 눈 0-14-1245 after digit always 눉 0-14-1245-13 after digit always 눊 0-14-1245-356 after digit always 눌 0-14-12346 after digit always ëˆ 0-14-12346-1 after digit always 눎 0-14-12346-26 after digit always ëˆ 0-14-12346-12 after digit always ëˆ 0-14-12346-3 after digit always 눑 0-14-12346-236 after digit always 눒 0-14-12346-256 after digit always 눓 0-14-12346-356 after digit always 는 0-14-1356 after digit always 늕 0-14-1356-13 after digit always 늖 0-14-1356-356 after digit always 늘 0-14-2346 after digit always 늙 0-14-2346-1 after digit always 늚 0-14-2346-26 after digit always 늛 0-14-2346-12 after digit always 늜 0-14-2346-3 after digit always ëŠ 0-14-2346-236 after digit always 늞 0-14-2346-256 after digit always 늟 0-14-2346-356 after digit always 닌 0-14-12345 after digit always ë‹ 0-14-12345-13 after digit always 닎 0-14-12345-356 after digit always 다 0-24 after digit always ë‹¥ 0-24-1 after digit always 닦 0-24-1-1 after digit always ë‹§ 0-24-1-3 after digit always 단 0-24-25 after digit always ë‹© 0-24-25-13 after digit always 닪 0-24-25-356 after digit always ë‹« 0-24-35 after digit always 달 0-24-2 after digit always ë‹­ 0-24-2-1 after digit always ë‹® 0-24-2-26 after digit always 닯 0-24-2-12 after digit always ë‹° 0-24-2-3 after digit always 닱 0-24-2-236 after digit always 닲 0-24-2-256 after digit always 닳 0-24-2-356 after digit always ë‹´ 0-24-26 after digit always 답 0-24-12 after digit always ë‹¶ 0-24-12-3 after digit always ë‹· 0-24-3 after digit always 닸 0-24-34 after digit always 당 0-24-2356 after digit always 닺 0-24-13 after digit always ë‹» 0-24-23 after digit always 닼 0-24-235 after digit always 닽 0-24-236 after digit always 닾 0-24-256 after digit always ë‹¿ 0-24-356 after digit always ë• 0-24-1456 after digit always ë– 0-24-1456-1 after digit always ë— 0-24-1456-3 after digit always ë˜ 0-24-23456 after digit always ë™ 0-24-23456-13 after digit always ëš 0-24-23456-356 after digit always ëœ 0-24-2345 after digit always ë 0-24-2345-1 after digit always ëž 0-24-2345-26 after digit always ëŸ 0-24-2345-12 after digit always ë  0-24-2345-3 after digit always ë¡ 0-24-2345-236 after digit always ë¢ 0-24-2345-256 after digit always ë£ 0-24-2345-356 after digit always ëŽ 0-24-16 after digit always 뎑 0-24-16-13 after digit always 뎒 0-24-16-356 after digit always 뎔 0-24-1256 after digit always 뎕 0-24-1256-1 after digit always 뎖 0-24-1256-26 after digit always 뎗 0-24-1256-12 after digit always 뎘 0-24-1256-3 after digit always 뎙 0-24-1256-236 after digit always 뎚 0-24-1256-256 after digit always 뎛 0-24-1256-356 after digit always 뎡 0-24-12456 after digit always ë… 0-24-1346 after digit always ë† 0-24-1346-1 after digit always ë‡ 0-24-1346-3 after digit always ëˆ 0-24-12356 after digit always ë‰ 0-24-12356-13 after digit always ëŠ 0-24-12356-356 after digit always ë™ 0-24-123456 after digit always ë‘” 0-24-1245 after digit always ë‘• 0-24-1245-13 after digit always ë‘– 0-24-1245-356 after digit always 둘 0-24-12346 after digit always ë‘™ 0-24-12346-1 after digit always 둚 0-24-12346-26 after digit always ë‘› 0-24-12346-12 after digit always 둜 0-24-12346-3 after digit always ë‘ 0-24-12346-236 after digit always 둞 0-24-12346-256 after digit always 둟 0-24-12346-356 after digit always ë“  0-24-1356 after digit always ë“¡ 0-24-1356-13 after digit always ë“¢ 0-24-1356-356 after digit always 들 0-24-2346 after digit always ë“¥ 0-24-2346-1 after digit always 듦 0-24-2346-26 after digit always ë“§ 0-24-2346-12 after digit always 듨 0-24-2346-3 after digit always ë“© 0-24-2346-236 after digit always 듪 0-24-2346-256 after digit always ë“« 0-24-2346-356 after digit always 딘 0-24-12345 after digit always ë”™ 0-24-12345-13 after digit always 딚 0-24-12345-356 after digit always 마 0-15 after digit always 막 0-15-1 after digit always ë§Š 0-15-1-1 after digit always ë§‹ 0-15-1-3 after digit always ë§Œ 0-15-25 after digit always ë§ 0-15-25-13 after digit always ë§Ž 0-15-25-356 after digit always ë§ 0-15-35 after digit always ë§ 0-15-2 after digit always ë§‘ 0-15-2-1 after digit always ë§’ 0-15-2-26 after digit always ë§“ 0-15-2-12 after digit always ë§” 0-15-2-3 after digit always ë§• 0-15-2-236 after digit always ë§– 0-15-2-256 after digit always ë§— 0-15-2-356 after digit always 맘 0-15-26 after digit always ë§™ 0-15-12 after digit always ë§š 0-15-12-3 after digit always ë§› 0-15-3 after digit always ë§œ 0-15-34 after digit always ë§ 0-15-2356 after digit always ë§ž 0-15-13 after digit always ë§Ÿ 0-15-23 after digit always ë§  0-15-235 after digit always ë§¡ 0-15-236 after digit always ë§¢ 0-15-256 after digit always ë§£ 0-15-356 after digit always 먹 0-15-1456 after digit always 먺 0-15-1456-1 after digit always 먻 0-15-1456-3 after digit always 먼 0-15-23456 after digit always 먽 0-15-23456-13 after digit always 먾 0-15-23456-356 after digit always ë©€ 0-15-2345 after digit always ë© 0-15-2345-1 after digit always ë©‚ 0-15-2345-26 after digit always 멃 0-15-2345-12 after digit always ë©„ 0-15-2345-3 after digit always ë©… 0-15-2345-236 after digit always 멆 0-15-2345-256 after digit always 멇 0-15-2345-356 after digit always ë©´ 0-15-16 after digit always 멵 0-15-16-13 after digit always ë©¶ 0-15-16-356 after digit always 멸 0-15-1256 after digit always 멹 0-15-1256-1 after digit always 멺 0-15-1256-26 after digit always ë©» 0-15-1256-12 after digit always 멼 0-15-1256-3 after digit always 멽 0-15-1256-236 after digit always 멾 0-15-1256-256 after digit always ë©¿ 0-15-1256-356 after digit always 명 0-15-12456 after digit always 목 0-15-1346 after digit always 몪 0-15-1346-1 after digit always 몫 0-15-1346-3 after digit always 몬 0-15-12356 after digit always 몭 0-15-12356-13 after digit always 몮 0-15-12356-356 after digit always 몽 0-15-123456 after digit always 문 0-15-1245 after digit always 묹 0-15-1245-13 after digit always 묺 0-15-1245-356 after digit always 물 0-15-12346 after digit always 묽 0-15-12346-1 after digit always 묾 0-15-12346-26 after digit always 묿 0-15-12346-12 after digit always ë­€ 0-15-12346-3 after digit always ë­ 0-15-12346-236 after digit always ë­‚ 0-15-12346-256 after digit always ë­ƒ 0-15-12346-356 after digit always 믄 0-15-1356 after digit always 믅 0-15-1356-13 after digit always 믆 0-15-1356-356 after digit always 믈 0-15-2346 after digit always 믉 0-15-2346-1 after digit always 믊 0-15-2346-26 after digit always 믋 0-15-2346-12 after digit always 믌 0-15-2346-3 after digit always ë¯ 0-15-2346-236 after digit always 믎 0-15-2346-256 after digit always ë¯ 0-15-2346-356 after digit always 민 0-15-12345 after digit always 믽 0-15-12345-13 after digit always 믾 0-15-12345-356 after digit always ìš´ 0-1245 after digit always ìšµ 0-1245-13 after digit always ìš¶ 0-1245-356 after digit always ì¹´ 0-124 after digit always ì¹µ 0-124-1 after digit always ì¹¶ 0-124-1-1 after digit always ì¹· 0-124-1-3 after digit always 칸 0-124-25 after digit always ì¹¹ 0-124-25-13 after digit always 칺 0-124-25-356 after digit always ì¹» 0-124-35 after digit always ì¹¼ 0-124-2 after digit always ì¹½ 0-124-2-1 after digit always ì¹¾ 0-124-2-26 after digit always 칿 0-124-2-12 after digit always 캀 0-124-2-3 after digit always ìº 0-124-2-236 after digit always 캂 0-124-2-256 after digit always 캃 0-124-2-356 after digit always 캄 0-124-26 after digit always 캅 0-124-12 after digit always 캆 0-124-12-3 after digit always 캇 0-124-3 after digit always 캈 0-124-34 after digit always 캉 0-124-2356 after digit always 캊 0-124-13 after digit always 캋 0-124-23 after digit always 캌 0-124-235 after digit always ìº 0-124-236 after digit always 캎 0-124-256 after digit always ìº 0-124-356 after digit always 컥 0-124-1456 after digit always 컦 0-124-1456-1 after digit always ì»§ 0-124-1456-3 after digit always 컨 0-124-23456 after digit always 컩 0-124-23456-13 after digit always 컪 0-124-23456-356 after digit always 컬 0-124-2345 after digit always ì»­ 0-124-2345-1 after digit always ì»® 0-124-2345-26 after digit always 컯 0-124-2345-12 after digit always ì»° 0-124-2345-3 after digit always ì»± 0-124-2345-236 after digit always 컲 0-124-2345-256 after digit always 컳 0-124-2345-356 after digit always ì¼  0-124-16 after digit always 켡 0-124-16-13 after digit always ì¼¢ 0-124-16-356 after digit always 켤 0-124-1256 after digit always ì¼¥ 0-124-1256-1 after digit always 켦 0-124-1256-26 after digit always ì¼§ 0-124-1256-12 after digit always 켨 0-124-1256-3 after digit always 켩 0-124-1256-236 after digit always 켪 0-124-1256-256 after digit always 켫 0-124-1256-356 after digit always ì¼± 0-124-12456 after digit always 콕 0-124-1346 after digit always ì½– 0-124-1346-1 after digit always ì½— 0-124-1346-3 after digit always 콘 0-124-12356 after digit always ì½™ 0-124-12356-13 after digit always 콚 0-124-12356-356 after digit always 콩 0-124-123456 after digit always 쿤 0-124-1245 after digit always ì¿¥ 0-124-1245-13 after digit always 쿦 0-124-1245-356 after digit always 쿨 0-124-12346 after digit always ì¿© 0-124-12346-1 after digit always 쿪 0-124-12346-26 after digit always ì¿« 0-124-12346-12 after digit always 쿬 0-124-12346-3 after digit always ì¿­ 0-124-12346-236 after digit always ì¿® 0-124-12346-256 after digit always 쿯 0-124-12346-356 after digit always í° 0-124-1356 after digit always í± 0-124-1356-13 after digit always í² 0-124-1356-356 after digit always í´ 0-124-2346 after digit always íµ 0-124-2346-1 after digit always í¶ 0-124-2346-26 after digit always í· 0-124-2346-12 after digit always í¸ 0-124-2346-3 after digit always í¹ 0-124-2346-236 after digit always íº 0-124-2346-256 after digit always í» 0-124-2346-356 after digit always 킨 0-124-12345 after digit always í‚© 0-124-12345-13 after digit always 킪 0-124-12345-356 after digit always 타 0-125 after digit always íƒ 0-125-1 after digit always 탂 0-125-1-1 after digit always 탃 0-125-1-3 after digit always 탄 0-125-25 after digit always 탅 0-125-25-13 after digit always 탆 0-125-25-356 after digit always 탇 0-125-35 after digit always 탈 0-125-2 after digit always 탉 0-125-2-1 after digit always 탊 0-125-2-26 after digit always 탋 0-125-2-12 after digit always 탌 0-125-2-3 after digit always íƒ 0-125-2-236 after digit always 탎 0-125-2-256 after digit always íƒ 0-125-2-356 after digit always íƒ 0-125-26 after digit always 탑 0-125-12 after digit always 탒 0-125-12-3 after digit always 탓 0-125-3 after digit always 탔 0-125-34 after digit always 탕 0-125-2356 after digit always 탖 0-125-13 after digit always 탗 0-125-23 after digit always 탘 0-125-235 after digit always 탙 0-125-236 after digit always 탚 0-125-256 after digit always 탛 0-125-356 after digit always 턱 0-125-1456 after digit always 턲 0-125-1456-1 after digit always 턳 0-125-1456-3 after digit always í„´ 0-125-23456 after digit always 턵 0-125-23456-13 after digit always í„¶ 0-125-23456-356 after digit always 털 0-125-2345 after digit always 턹 0-125-2345-1 after digit always 턺 0-125-2345-26 after digit always í„» 0-125-2345-12 after digit always 턼 0-125-2345-3 after digit always 턽 0-125-2345-236 after digit always 턾 0-125-2345-256 after digit always í„¿ 0-125-2345-356 after digit always í…¬ 0-125-16 after digit always í…­ 0-125-16-13 after digit always í…® 0-125-16-356 after digit always í…° 0-125-1256 after digit always í…± 0-125-1256-1 after digit always í…² 0-125-1256-26 after digit always í…³ 0-125-1256-12 after digit always í…´ 0-125-1256-3 after digit always í…µ 0-125-1256-236 after digit always í…¶ 0-125-1256-256 after digit always í…· 0-125-1256-356 after digit always í…½ 0-125-12456 after digit always 톡 0-125-1346 after digit always 톢 0-125-1346-1 after digit always 톣 0-125-1346-3 after digit always 톤 0-125-12356 after digit always 톥 0-125-12356-13 after digit always 톦 0-125-12356-356 after digit always 통 0-125-123456 after digit always 툰 0-125-1245 after digit always 툱 0-125-1245-13 after digit always 툲 0-125-1245-356 after digit always 툴 0-125-12346 after digit always 툵 0-125-12346-1 after digit always 툶 0-125-12346-26 after digit always 툷 0-125-12346-12 after digit always 툸 0-125-12346-3 after digit always 툹 0-125-12346-236 after digit always 툺 0-125-12346-256 after digit always 툻 0-125-12346-356 after digit always 튼 0-125-1356 after digit always 튽 0-125-1356-13 after digit always 튾 0-125-1356-356 after digit always í‹€ 0-125-2346 after digit always í‹ 0-125-2346-1 after digit always í‹‚ 0-125-2346-26 after digit always 틃 0-125-2346-12 after digit always í‹„ 0-125-2346-3 after digit always í‹… 0-125-2346-236 after digit always 틆 0-125-2346-256 after digit always 틇 0-125-2346-356 after digit always í‹´ 0-125-12345 after digit always 틵 0-125-12345-13 after digit always í‹¶ 0-125-12345-356 after digit always 파 0-145 after digit always íŒ 0-145-1 after digit always 팎 0-145-1-1 after digit always íŒ 0-145-1-3 after digit always íŒ 0-145-25 after digit always 팑 0-145-25-13 after digit always 팒 0-145-25-356 after digit always 팓 0-145-35 after digit always 팔 0-145-2 after digit always 팕 0-145-2-1 after digit always 팖 0-145-2-26 after digit always 팗 0-145-2-12 after digit always 팘 0-145-2-3 after digit always 팙 0-145-2-236 after digit always 팚 0-145-2-256 after digit always 팛 0-145-2-356 after digit always 팜 0-145-26 after digit always íŒ 0-145-12 after digit always 팞 0-145-12-3 after digit always 팟 0-145-3 after digit always 팠 0-145-34 after digit always 팡 0-145-2356 after digit always 팢 0-145-13 after digit always 팣 0-145-23 after digit always 팤 0-145-235 after digit always 팥 0-145-236 after digit always 팦 0-145-256 after digit always 팧 0-145-356 after digit always í½ 0-145-1456 after digit always í¾ 0-145-1456-1 after digit always í¿ 0-145-1456-3 after digit always 펀 0-145-23456 after digit always íŽ 0-145-23456-13 after digit always 펂 0-145-23456-356 after digit always 펄 0-145-2345 after digit always 펅 0-145-2345-1 after digit always 펆 0-145-2345-26 after digit always 펇 0-145-2345-12 after digit always 펈 0-145-2345-3 after digit always 펉 0-145-2345-236 after digit always 펊 0-145-2345-256 after digit always 펋 0-145-2345-356 after digit always 편 0-145-16 after digit always 펹 0-145-16-13 after digit always 펺 0-145-16-356 after digit always 펼 0-145-1256 after digit always 펽 0-145-1256-1 after digit always 펾 0-145-1256-26 after digit always 펿 0-145-1256-12 after digit always í€ 0-145-1256-3 after digit always í 0-145-1256-236 after digit always í‚ 0-145-1256-256 after digit always íƒ 0-145-1256-356 after digit always í‰ 0-145-12456 after digit always í­ 0-145-1346 after digit always í® 0-145-1346-1 after digit always í¯ 0-145-1346-3 after digit always í° 0-145-12356 after digit always í± 0-145-12356-13 after digit always í² 0-145-12356-356 after digit always í 0-145-123456 after digit always 푼 0-145-1245 after digit always 푽 0-145-1245-13 after digit always 푾 0-145-1245-356 after digit always í’€ 0-145-12346 after digit always í’ 0-145-12346-1 after digit always í’‚ 0-145-12346-26 after digit always í’ƒ 0-145-12346-12 after digit always í’„ 0-145-12346-3 after digit always í’… 0-145-12346-236 after digit always í’† 0-145-12346-256 after digit always í’‡ 0-145-12346-356 after digit always 픈 0-145-1356 after digit always 픉 0-145-1356-13 after digit always 픊 0-145-1356-356 after digit always 플 0-145-2346 after digit always í” 0-145-2346-1 after digit always 픎 0-145-2346-26 after digit always í” 0-145-2346-12 after digit always í” 0-145-2346-3 after digit always 픑 0-145-2346-236 after digit always í”’ 0-145-2346-256 after digit always 픓 0-145-2346-356 after digit always í•€ 0-145-12345 after digit always í• 0-145-12345-13 after digit always í•‚ 0-145-12345-356 after digit always 하 0-245 after digit always í•™ 0-245-1 after digit always 핚 0-245-1-1 after digit always í•› 0-245-1-3 after digit always 한 0-245-25 after digit always í• 0-245-25-13 after digit always 핞 0-245-25-356 after digit always 핟 0-245-35 after digit always í•  0-245-2 after digit always í•¡ 0-245-2-1 after digit always í•¢ 0-245-2-26 after digit always í•£ 0-245-2-12 after digit always 핤 0-245-2-3 after digit always í•¥ 0-245-2-236 after digit always 핦 0-245-2-256 after digit always í•§ 0-245-2-356 after digit always 함 0-245-26 after digit always í•© 0-245-12 after digit always 핪 0-245-12-3 after digit always í•« 0-245-3 after digit always 핬 0-245-34 after digit always í•­ 0-245-2356 after digit always í•® 0-245-13 after digit always 핯 0-245-23 after digit always í•° 0-245-235 after digit always 핱 0-245-236 after digit always 핲 0-245-256 after digit always 핳 0-245-356 after digit always í—‰ 0-245-1456 after digit always í—Š 0-245-1456-1 after digit always í—‹ 0-245-1456-3 after digit always í—Œ 0-245-23456 after digit always í— 0-245-23456-13 after digit always í—Ž 0-245-23456-356 after digit always í— 0-245-2345 after digit always í—‘ 0-245-2345-1 after digit always í—’ 0-245-2345-26 after digit always í—“ 0-245-2345-12 after digit always í—” 0-245-2345-3 after digit always í—• 0-245-2345-236 after digit always í—– 0-245-2345-256 after digit always í—— 0-245-2345-356 after digit always 현 0-245-16 after digit always 혅 0-245-16-13 after digit always 혆 0-245-16-356 after digit always 혈 0-245-1256 after digit always 혉 0-245-1256-1 after digit always 혊 0-245-1256-26 after digit always 혋 0-245-1256-12 after digit always 혌 0-245-1256-3 after digit always í˜ 0-245-1256-236 after digit always 혎 0-245-1256-256 after digit always í˜ 0-245-1256-356 after digit always 형 0-245-12456 after digit always 혹 0-245-1346 after digit always 혺 0-245-1346-1 after digit always 혻 0-245-1346-3 after digit always 혼 0-245-12356 after digit always 혽 0-245-12356-13 after digit always 혾 0-245-12356-356 after digit always í™ 0-245-123456 after digit always 훈 0-245-1245 after digit always 훉 0-245-1245-13 after digit always 훊 0-245-1245-356 after digit always 훌 0-245-12346 after digit always í› 0-245-12346-1 after digit always 훎 0-245-12346-26 after digit always í› 0-245-12346-12 after digit always í› 0-245-12346-3 after digit always 훑 0-245-12346-236 after digit always í›’ 0-245-12346-256 after digit always 훓 0-245-12346-356 after digit always í” 0-245-1356 after digit always í• 0-245-1356-13 after digit always í– 0-245-1356-356 after digit always í˜ 0-245-2346 after digit always í™ 0-245-2346-1 after digit always íš 0-245-2346-26 after digit always í› 0-245-2346-12 after digit always íœ 0-245-2346-3 after digit always í 0-245-2346-236 after digit always íž 0-245-2346-256 after digit always íŸ 0-245-2346-356 after digit always 힌 0-245-12345 after digit always íž 0-245-12345-13 after digit always 힎 0-245-12345-356 # Common letter contraction: # Due to special rules with numbers, the rest of the chars are reproduced here. always ê°€ 1246 always ê° 1246-1 always ê°‚ 1246-1-1 always ê°ƒ 1246-1-3 always ê°„ 1246-25 always ê°… 1246-25-13 always ê°† 1246-25-356 always ê°‡ 1246-35 always ê°ˆ 1246-2 always ê°‰ 1246-2-1 always ê°Š 1246-2-26 always ê°‹ 1246-2-12 always ê°Œ 1246-2-3 always ê° 1246-2-236 always ê°Ž 1246-2-256 always ê° 1246-2-356 always ê° 1246-26 always ê°‘ 1246-12 always ê°’ 1246-12-3 always ê°“ 1246-3 always ê°” 1246-34 always ê°• 1246-2356 always ê°– 1246-13 always ê°— 1246-23 always ê°˜ 1246-235 always ê°™ 1246-236 always ê°š 1246-256 always ê°› 1246-356 always ê±± 4-1456 always ê±² 4-1456-1 always ê±³ 4-1456-3 always ê±´ 4-23456 always ê±µ 4-23456-13 always ê±¶ 4-23456-356 always 걸 4-2345 always ê±¹ 4-2345-1 always 걺 4-2345-26 always ê±» 4-2345-12 always ê±¼ 4-2345-3 always ê±½ 4-2345-236 always ê±¾ 4-2345-256 always 걿 4-2345-356 always 것 456-234 always 겄 456-234-3 always 견 4-16 always ê²­ 4-16-13 always ê²® 4-16-356 always ê²° 4-1256 always ê²± 4-1256-1 always ê²² 4-1256-26 always ê²³ 4-1256-12 always ê²´ 4-1256-3 always ê²µ 4-1256-236 always ê²¶ 4-1256-256 always ê²· 4-1256-356 always ê²½ 4-12456 always 곡 4-1346 always ê³¢ 4-1346-1 always ê³£ 4-1346-3 always 곤 4-12356 always ê³¥ 4-12356-13 always 곦 4-12356-356 always ê³µ 4-123456 always êµ° 4-1245 always êµ± 4-1245-13 always êµ² 4-1245-356 always êµ´ 4-12346 always êµµ 4-12346-1 always êµ¶ 4-12346-26 always êµ· 4-12346-12 always 굸 4-12346-3 always êµ¹ 4-12346-236 always 굺 4-12346-256 always êµ» 4-12346-356 always ê·¼ 4-1356 always ê·½ 4-1356-13 always ê·¾ 4-1356-356 always 글 4-2346 always ê¸ 4-2346-1 always 긂 4-2346-26 always 긃 4-2346-12 always 긄 4-2346-3 always 긅 4-2346-236 always 긆 4-2346-256 always 긇 4-2346-356 always 긴 4-12345 always 긵 4-12345-13 always 긶 4-12345-356 always 까 6-1246 always ê¹ 6-1246-1 always 깎 6-1246-1-1 always ê¹ 6-1246-1-3 always ê¹ 6-1246-25 always 깑 6-1246-25-13 always ê¹’ 6-1246-25-356 always 깓 6-1246-35 always ê¹” 6-1246-2 always 깕 6-1246-2-1 always ê¹– 6-1246-2-26 always ê¹— 6-1246-2-12 always 깘 6-1246-2-3 always ê¹™ 6-1246-2-236 always 깚 6-1246-2-256 always ê¹› 6-1246-2-356 always 깜 6-1246-26 always ê¹ 6-1246-12 always 깞 6-1246-12-3 always 깟 6-1246-3 always ê¹  6-1246-34 always 깡 6-1246-2356 always ê¹¢ 6-1246-13 always ê¹£ 6-1246-23 always 깤 6-1246-235 always ê¹¥ 6-1246-236 always 깦 6-1246-256 always ê¹§ 6-1246-356 always 꺽 6-4-1456 always 꺾 6-4-1456-1 always 꺿 6-4-1456-3 always 껀 6-4-23456 always ê» 6-4-23456-13 always 껂 6-4-23456-356 always 껄 6-4-2345 always ê»… 6-4-2345-1 always 껆 6-4-2345-26 always 껇 6-4-2345-12 always 껈 6-4-2345-3 always 껉 6-4-2345-236 always 껊 6-4-2345-256 always 껋 6-4-2345-356 always ê» 6-456-234 always ê» 6-456-234-3 always 껸 6-4-16 always 껹 6-4-16-13 always 껺 6-4-16-356 always 껼 6-4-1256 always 껽 6-4-1256-1 always 껾 6-4-1256-26 always 껿 6-4-1256-12 always ê¼€ 6-4-1256-3 always ê¼ 6-4-1256-236 always 꼂 6-4-1256-256 always 꼃 6-4-1256-356 always 꼉 6-4-12456 always ê¼­ 6-4-1346 always ê¼® 6-4-1346-1 always 꼯 6-4-1346-3 always ê¼° 6-4-12356 always ê¼± 6-4-12356-13 always ê¼² 6-4-12356-356 always ê½ 6-4-123456 always ê¾¼ 6-4-1245 always ê¾½ 6-4-1245-13 always ê¾¾ 6-4-1245-356 always ê¿€ 6-4-12346 always ê¿ 6-4-12346-1 always ê¿‚ 6-4-12346-26 always 꿃 6-4-12346-12 always ê¿„ 6-4-12346-3 always ê¿… 6-4-12346-236 always 꿆 6-4-12346-256 always 꿇 6-4-12346-356 always ëˆ 6-4-1356 always ë‰ 6-4-1356-13 always ëŠ 6-4-1356-356 always ëŒ 6-4-2346 always ë 6-4-2346-1 always ëŽ 6-4-2346-26 always ë 6-4-2346-12 always ë 6-4-2346-3 always ë‘ 6-4-2346-236 always ë’ 6-4-2346-256 always ë“ 6-4-2346-356 always ë‚€ 6-4-12345 always ë‚ 6-4-12345-13 always ë‚‚ 6-4-12345-356 always 나 14 always ë‚™ 14-1 always 낚 14-1-1 always ë‚› 14-1-3 always 난 14-25 always ë‚ 14-25-13 always 낞 14-25-356 always 낟 14-35 always ë‚  14-2 always ë‚¡ 14-2-1 always ë‚¢ 14-2-26 always ë‚£ 14-2-12 always 낤 14-2-3 always ë‚¥ 14-2-236 always 낦 14-2-256 always ë‚§ 14-2-356 always 남 14-26 always ë‚© 14-12 always 낪 14-12-3 always ë‚« 14-3 always 났 14-34 always ë‚­ 14-2356 always ë‚® 14-13 always 낯 14-23 always ë‚° 14-235 always 낱 14-236 always 낲 14-256 always 낳 14-356 always 넉 14-1456 always 넊 14-1456-1 always ë„‹ 14-1456-3 always 넌 14-23456 always ë„ 14-23456-13 always 넎 14-23456-356 always ë„ 14-2345 always ë„‘ 14-2345-1 always ë„’ 14-2345-26 always ë„“ 14-2345-12 always ë„” 14-2345-3 always ë„• 14-2345-236 always ë„– 14-2345-256 always ë„— 14-2345-356 always ë…„ 14-16 always ë…… 14-16-13 always ë…† 14-16-356 always ë…ˆ 14-1256 always ë…‰ 14-1256-1 always ë…Š 14-1256-26 always ë…‹ 14-1256-12 always ë…Œ 14-1256-3 always ë… 14-1256-236 always ë…Ž 14-1256-256 always ë… 14-1256-356 always ë…• 14-12456 always ë…¹ 14-1346 always ë…º 14-1346-1 always ë…» 14-1346-3 always ë…¼ 14-12356 always ë…½ 14-12356-13 always ë…¾ 14-12356-356 always ë† 14-123456 always 눈 14-1245 always 눉 14-1245-13 always 눊 14-1245-356 always 눌 14-12346 always ëˆ 14-12346-1 always 눎 14-12346-26 always ëˆ 14-12346-12 always ëˆ 14-12346-3 always 눑 14-12346-236 always 눒 14-12346-256 always 눓 14-12346-356 always 는 14-1356 always 늕 14-1356-13 always 늖 14-1356-356 always 늘 14-2346 always 늙 14-2346-1 always 늚 14-2346-26 always 늛 14-2346-12 always 늜 14-2346-3 always ëŠ 14-2346-236 always 늞 14-2346-256 always 늟 14-2346-356 always 닌 14-12345 always ë‹ 14-12345-13 always 닎 14-12345-356 always 다 24 always ë‹¥ 24-1 always 닦 24-1-1 always ë‹§ 24-1-3 always 단 24-25 always ë‹© 24-25-13 always 닪 24-25-356 always ë‹« 24-35 always 달 24-2 always ë‹­ 24-2-1 always ë‹® 24-2-26 always 닯 24-2-12 always ë‹° 24-2-3 always 닱 24-2-236 always 닲 24-2-256 always 닳 24-2-356 always ë‹´ 24-26 always 답 24-12 always ë‹¶ 24-12-3 always ë‹· 24-3 always 닸 24-34 always 당 24-2356 always 닺 24-13 always ë‹» 24-23 always 닼 24-235 always 닽 24-236 always 닾 24-256 always ë‹¿ 24-356 always ë• 24-1456 always ë– 24-1456-1 always ë— 24-1456-3 always ë˜ 24-23456 always ë™ 24-23456-13 always ëš 24-23456-356 always ëœ 24-2345 always ë 24-2345-1 always ëž 24-2345-26 always ëŸ 24-2345-12 always ë  24-2345-3 always ë¡ 24-2345-236 always ë¢ 24-2345-256 always ë£ 24-2345-356 always ëŽ 24-16 always 뎑 24-16-13 always 뎒 24-16-356 always 뎔 24-1256 always 뎕 24-1256-1 always 뎖 24-1256-26 always 뎗 24-1256-12 always 뎘 24-1256-3 always 뎙 24-1256-236 always 뎚 24-1256-256 always 뎛 24-1256-356 always 뎡 24-12456 always ë… 24-1346 always ë† 24-1346-1 always ë‡ 24-1346-3 always ëˆ 24-12356 always ë‰ 24-12356-13 always ëŠ 24-12356-356 always ë™ 24-123456 always ë‘” 24-1245 always ë‘• 24-1245-13 always ë‘– 24-1245-356 always 둘 24-12346 always ë‘™ 24-12346-1 always 둚 24-12346-26 always ë‘› 24-12346-12 always 둜 24-12346-3 always ë‘ 24-12346-236 always 둞 24-12346-256 always 둟 24-12346-356 always ë“  24-1356 always ë“¡ 24-1356-13 always ë“¢ 24-1356-356 always 들 24-2346 always ë“¥ 24-2346-1 always 듦 24-2346-26 always ë“§ 24-2346-12 always 듨 24-2346-3 always ë“© 24-2346-236 always 듪 24-2346-256 always ë“« 24-2346-356 always 딘 24-12345 always ë”™ 24-12345-13 always 딚 24-12345-356 always ë”° 6-24 always ë”± 6-24-1 always 딲 6-24-1-1 always 딳 6-24-1-3 always ë”´ 6-24-25 always 딵 6-24-25-13 always ë”¶ 6-24-25-356 always ë”· 6-24-35 always 딸 6-24-2 always 딹 6-24-2-1 always 딺 6-24-2-26 always ë”» 6-24-2-12 always 딼 6-24-2-3 always 딽 6-24-2-236 always 딾 6-24-2-256 always 딿 6-24-2-356 always ë•€ 6-24-26 always ë• 6-24-12 always ë•‚ 6-24-12-3 always 땃 6-24-3 always ë•„ 6-24-34 always ë•… 6-24-2356 always 땆 6-24-13 always 땇 6-24-23 always 땈 6-24-235 always 땉 6-24-236 always 땊 6-24-256 always ë•‹ 6-24-356 always ë–¡ 6-24-1456 always ë–¢ 6-24-1456-1 always ë–£ 6-24-1456-3 always ë–¤ 6-24-23456 always ë–¥ 6-24-23456-13 always ë–¦ 6-24-23456-356 always ë–¨ 6-24-2345 always ë–© 6-24-2345-1 always ë–ª 6-24-2345-26 always ë–« 6-24-2345-12 always ë–¬ 6-24-2345-3 always ë–­ 6-24-2345-236 always ë–® 6-24-2345-256 always ë–¯ 6-24-2345-356 always ë—œ 6-24-16 always ë— 6-24-16-13 always ë—ž 6-24-16-356 always ë—  6-24-1256 always ë—¡ 6-24-1256-1 always ë—¢ 6-24-1256-26 always ë—£ 6-24-1256-12 always ë—¤ 6-24-1256-3 always ë—¥ 6-24-1256-236 always ë—¦ 6-24-1256-256 always ë—§ 6-24-1256-356 always ë—­ 6-24-12456 always 똑 6-24-1346 always 똒 6-24-1346-1 always 똓 6-24-1346-3 always 똔 6-24-12356 always 똕 6-24-12356-13 always 똖 6-24-12356-356 always 똥 6-24-123456 always ëš  6-24-1245 always ëš¡ 6-24-1245-13 always 뚢 6-24-1245-356 always 뚣 6-24-134-35 always 뚤 6-24-12346 always 뚥 6-24-12346-1 always 뚦 6-24-12346-26 always ëš§ 6-24-12346-12 always 뚨 6-24-12346-3 always ëš© 6-24-12346-236 always 뚪 6-24-12346-256 always ëš« 6-24-12346-356 always 뜬 6-24-1356 always 뜭 6-24-1356-13 always 뜮 6-24-1356-356 always 뜰 6-24-2346 always 뜱 6-24-2346-1 always 뜲 6-24-2346-26 always 뜳 6-24-2346-12 always 뜴 6-24-2346-3 always 뜵 6-24-2346-236 always 뜶 6-24-2346-256 always 뜷 6-24-2346-356 always ë¤ 6-24-12345 always ë¥ 6-24-12345-13 always ë¦ 6-24-12345-356 always 럭 5-1456 always 럮 5-1456-1 always 럯 5-1456-3 always 런 5-23456 always 럱 5-23456-13 always 럲 5-23456-356 always 럴 5-2345 always 럵 5-2345-1 always 럶 5-2345-26 always 럷 5-2345-12 always 럸 5-2345-3 always 럹 5-2345-236 always 럺 5-2345-256 always 럻 5-2345-356 always ë ¨ 5-16 always ë © 5-16-13 always ë ª 5-16-356 always ë ¬ 5-1256 always ë ­ 5-1256-1 always ë ® 5-1256-26 always ë ¯ 5-1256-12 always ë ° 5-1256-3 always ë ± 5-1256-236 always ë ² 5-1256-256 always ë ³ 5-1256-356 always ë ¹ 5-12456 always ë¡ 5-1346 always 롞 5-1346-1 always 롟 5-1346-3 always ë¡  5-12356 always ë¡¡ 5-12356-13 always ë¡¢ 5-12356-356 always 롱 5-123456 always 룬 5-1245 always 룭 5-1245-13 always 룮 5-1245-356 always 룰 5-12346 always 룱 5-12346-1 always 룲 5-12346-26 always 룳 5-12346-12 always 룴 5-12346-3 always 룵 5-12346-236 always 룶 5-12346-256 always 룷 5-12346-356 always 른 5-1356 always 륹 5-1356-13 always 륺 5-1356-356 always 를 5-2346 always 륽 5-2346-1 always 륾 5-2346-26 always 륿 5-2346-12 always 릀 5-2346-3 always ë¦ 5-2346-236 always 릂 5-2346-256 always 릃 5-2346-356 always 린 5-12345 always 릱 5-12345-13 always 릲 5-12345-356 always 마 15 always 막 15-1 always ë§Š 15-1-1 always ë§‹ 15-1-3 always ë§Œ 15-25 always ë§ 15-25-13 always ë§Ž 15-25-356 always ë§ 15-35 always ë§ 15-2 always ë§‘ 15-2-1 always ë§’ 15-2-26 always ë§“ 15-2-12 always ë§” 15-2-3 always ë§• 15-2-236 always ë§– 15-2-256 always ë§— 15-2-356 always 맘 15-26 always ë§™ 15-12 always ë§š 15-12-3 always ë§› 15-3 always ë§œ 15-34 always ë§ 15-2356 always ë§ž 15-13 always ë§Ÿ 15-23 always ë§  15-235 always ë§¡ 15-236 always ë§¢ 15-256 always ë§£ 15-356 always 먹 15-1456 always 먺 15-1456-1 always 먻 15-1456-3 always 먼 15-23456 always 먽 15-23456-13 always 먾 15-23456-356 always ë©€ 15-2345 always ë© 15-2345-1 always ë©‚ 15-2345-26 always 멃 15-2345-12 always ë©„ 15-2345-3 always ë©… 15-2345-236 always 멆 15-2345-256 always 멇 15-2345-356 always ë©´ 15-16 always 멵 15-16-13 always ë©¶ 15-16-356 always 멸 15-1256 always 멹 15-1256-1 always 멺 15-1256-26 always ë©» 15-1256-12 always 멼 15-1256-3 always 멽 15-1256-236 always 멾 15-1256-256 always ë©¿ 15-1256-356 always 명 15-12456 always 목 15-1346 always 몪 15-1346-1 always 몫 15-1346-3 always 몬 15-12356 always 몭 15-12356-13 always 몮 15-12356-356 always 몽 15-123456 always 문 15-1245 always 묹 15-1245-13 always 묺 15-1245-356 always 물 15-12346 always 묽 15-12346-1 always 묾 15-12346-26 always 묿 15-12346-12 always ë­€ 15-12346-3 always ë­ 15-12346-236 always ë­‚ 15-12346-256 always ë­ƒ 15-12346-356 always 믄 15-1356 always 믅 15-1356-13 always 믆 15-1356-356 always 믈 15-2346 always 믉 15-2346-1 always 믊 15-2346-26 always 믋 15-2346-12 always 믌 15-2346-3 always ë¯ 15-2346-236 always 믎 15-2346-256 always ë¯ 15-2346-356 always 민 15-12345 always 믽 15-12345-13 always 믾 15-12345-356 always ë°” 45 always ë°• 45-1 always ë°– 45-1-1 always ë°— 45-1-3 always ë°˜ 45-25 always ë°™ 45-25-13 always ë°š 45-25-356 always ë°› 45-35 always ë°œ 45-2 always ë° 45-2-1 always ë°ž 45-2-26 always ë°Ÿ 45-2-12 always ë°  45-2-3 always ë°¡ 45-2-236 always ë°¢ 45-2-256 always ë°£ 45-2-356 always ë°¤ 45-26 always ë°¥ 45-12 always ë°¦ 45-12-3 always ë°§ 45-3 always ë°¨ 45-34 always ë°© 45-2356 always ë°ª 45-13 always ë°« 45-23 always ë°¬ 45-235 always ë°­ 45-236 always ë°® 45-256 always ë°¯ 45-356 always ë²… 45-1456 always 벆 45-1456-1 always 벇 45-1456-3 always 번 45-23456 always 벉 45-23456-13 always 벊 45-23456-356 always 벌 45-2345 always ë² 45-2345-1 always 벎 45-2345-26 always ë² 45-2345-12 always ë² 45-2345-3 always 벑 45-2345-236 always ë²’ 45-2345-256 always 벓 45-2345-356 always ë³€ 45-16 always ë³ 45-16-13 always 볂 45-16-356 always 별 45-1256 always ë³… 45-1256-1 always 볆 45-1256-26 always 볇 45-1256-12 always 볈 45-1256-3 always 볉 45-1256-236 always 볊 45-1256-256 always 볋 45-1256-356 always 병 45-12456 always ë³µ 45-1346 always ë³¶ 45-1346-1 always ë³· 45-1346-3 always 본 45-12356 always ë³¹ 45-12356-13 always 볺 45-12356-356 always ë´‰ 45-123456 always ë¶„ 45-1245 always ë¶… 45-1245-13 always 붆 45-1245-356 always 불 45-12346 always 붉 45-12346-1 always ë¶Š 45-12346-26 always ë¶‹ 45-12346-12 always ë¶Œ 45-12346-3 always ë¶ 45-12346-236 always ë¶Ž 45-12346-256 always ë¶ 45-12346-356 always ë¸ 45-1356 always 븑 45-1356-13 always 븒 45-1356-356 always 블 45-2346 always 븕 45-2346-1 always 븖 45-2346-26 always 븗 45-2346-12 always 븘 45-2346-3 always 븙 45-2346-236 always 븚 45-2346-256 always 븛 45-2346-356 always 빈 45-12345 always 빉 45-12345-13 always 빊 45-12345-356 always ë¹  6-45 always 빡 6-45-1 always ë¹¢ 6-45-1-1 always ë¹£ 6-45-1-3 always 빤 6-45-25 always ë¹¥ 6-45-25-13 always 빦 6-45-25-356 always ë¹§ 6-45-35 always 빨 6-45-2 always 빩 6-45-2-1 always 빪 6-45-2-26 always 빫 6-45-2-12 always 빬 6-45-2-3 always ë¹­ 6-45-2-236 always ë¹® 6-45-2-256 always 빯 6-45-2-356 always ë¹° 6-45-26 always ë¹± 6-45-12 always ë¹² 6-45-12-3 always ë¹³ 6-45-3 always ë¹´ 6-45-34 always ë¹µ 6-45-2356 always ë¹¶ 6-45-13 always ë¹· 6-45-23 always 빸 6-45-235 always ë¹¹ 6-45-236 always 빺 6-45-256 always ë¹» 6-45-356 always 뻑 6-45-1456 always ë»’ 6-45-1456-1 always 뻓 6-45-1456-3 always ë»” 6-45-23456 always 뻕 6-45-23456-13 always ë»– 6-45-23456-356 always 뻘 6-45-2345 always ë»™ 6-45-2345-1 always 뻚 6-45-2345-26 always ë»› 6-45-2345-12 always 뻜 6-45-2345-3 always ë» 6-45-2345-236 always 뻞 6-45-2345-256 always 뻟 6-45-2345-356 always 뼌 6-45-16 always ë¼ 6-45-16-13 always 뼎 6-45-16-356 always ë¼ 6-45-1256 always 뼑 6-45-1256-1 always ë¼’ 6-45-1256-26 always 뼓 6-45-1256-12 always ë¼” 6-45-1256-3 always 뼕 6-45-1256-236 always ë¼– 6-45-1256-256 always ë¼— 6-45-1256-356 always ë¼ 6-45-12456 always ë½ 6-45-1346 always 뽂 6-45-1346-1 always 뽃 6-45-1346-3 always 뽄 6-45-12356 always ë½… 6-45-12356-13 always 뽆 6-45-12356-356 always 뽕 6-45-123456 always ë¿ 6-45-1245 always ë¿‘ 6-45-1245-13 always ë¿’ 6-45-1245-356 always ë¿” 6-45-12346 always ë¿• 6-45-12346-1 always ë¿– 6-45-12346-26 always ë¿— 6-45-12346-12 always 뿘 6-45-12346-3 always ë¿™ 6-45-12346-236 always 뿚 6-45-12346-256 always ë¿› 6-45-12346-356 always ìœ 6-45-1356 always ì 6-45-1356-13 always ìž 6-45-1356-356 always ì  6-45-2346 always ì¡ 6-45-2346-1 always ì¢ 6-45-2346-26 always ì£ 6-45-2346-12 always ì¤ 6-45-2346-3 always ì¥ 6-45-2346-236 always ì¦ 6-45-2346-256 always ì§ 6-45-2346-356 always ì‚” 6-45-12345 always ì‚• 6-45-12345-13 always ì‚– 6-45-12345-356 always 사 123 always ì‚­ 123-1 always ì‚® 123-1-1 always 삯 123-1-3 always ì‚° 123-25 always 삱 123-25-13 always 삲 123-25-356 always 삳 123-35 always ì‚´ 123-2 always 삵 123-2-1 always ì‚¶ 123-2-26 always ì‚· 123-2-12 always 삸 123-2-3 always 삹 123-2-236 always 삺 123-2-256 always ì‚» 123-2-356 always 삼 123-26 always 삽 123-12 always 삾 123-12-3 always ì‚¿ 123-3 always 샀 123-34 always ìƒ 123-2356 always 샂 123-13 always 샃 123-23 always 샄 123-235 always 샅 123-236 always 샆 123-256 always 샇 123-356 always ì„ 6-1456 always 섞 6-1456-1 always 섟 6-1456-3 always ì„  6-23456 always ì„¡ 6-23456-13 always ì„¢ 6-23456-356 always 설 6-2345 always ì„¥ 6-2345-1 always 섦 6-2345-26 always ì„§ 6-2345-12 always 섨 6-2345-3 always ì„© 6-2345-236 always 섪 6-2345-256 always ì„« 6-2345-356 always 성 6-12456 always ì…˜ 6-16 always ì…™ 6-16-13 always ì…š 6-16-356 always ì…œ 6-1256 always ì… 6-1256-1 always ì…ž 6-1256-26 always ì…Ÿ 6-1256-12 always ì…  6-1256-3 always ì…¡ 6-1256-236 always ì…¢ 6-1256-256 always ì…£ 6-1256-356 always ì† 6-1346 always 솎 6-1346-1 always ì† 6-1346-3 always ì† 6-12356 always 솑 6-12356-13 always 솒 6-12356-356 always 송 6-123456 always 순 6-1245 always ìˆ 6-1245-13 always 숞 6-1245-356 always 술 6-12346 always 숡 6-12346-1 always 숢 6-12346-26 always 숣 6-12346-12 always 숤 6-12346-3 always 숥 6-12346-236 always 숦 6-12346-256 always 숧 6-12346-356 always 슨 6-1356 always 슩 6-1356-13 always 슪 6-1356-356 always 슬 6-2346 always 슭 6-2346-1 always 슮 6-2346-26 always 슯 6-2346-12 always 슰 6-2346-3 always 슱 6-2346-236 always 슲 6-2346-256 always 슳 6-2346-356 always ì‹  6-12345 always ì‹¡ 6-12345-13 always ì‹¢ 6-12345-356 always 싸 6-123 always 싹 6-123-1 always 싺 6-123-1-1 always ì‹» 6-123-1-3 always 싼 6-123-25 always 싽 6-123-25-13 always 싾 6-123-25-356 always ì‹¿ 6-123-35 always 쌀 6-123-2 always ìŒ 6-123-2-1 always 쌂 6-123-2-26 always 쌃 6-123-2-12 always 쌄 6-123-2-3 always 쌅 6-123-2-236 always 쌆 6-123-2-256 always 쌇 6-123-2-356 always 쌈 6-123-26 always 쌉 6-123-12 always 쌊 6-123-12-3 always 쌋 6-123-3 always 쌌 6-123-34 always ìŒ 6-123-2356 always 쌎 6-123-13 always ìŒ 6-123-23 always ìŒ 6-123-235 always 쌑 6-123-236 always 쌒 6-123-256 always 쌓 6-123-356 always ì© 6-6-1456 always ìª 6-6-1456-1 always ì« 6-6-1456-3 always ì¬ 6-6-23456 always ì­ 6-6-23456-13 always ì® 6-6-23456-356 always ì° 6-6-2345 always ì± 6-6-2345-1 always ì² 6-6-2345-26 always ì³ 6-6-2345-12 always ì´ 6-6-2345-3 always ìµ 6-6-2345-236 always ì¶ 6-6-2345-256 always ì· 6-6-2345-356 always ì½ 6-6-12456 always 쎤 6-6-16 always 쎥 6-6-16-13 always 쎦 6-6-16-356 always 쎨 6-6-1256 always 쎩 6-6-1256-1 always 쎪 6-6-1256-26 always 쎫 6-6-1256-12 always 쎬 6-6-1256-3 always 쎭 6-6-1256-236 always 쎮 6-6-1256-256 always 쎯 6-6-1256-356 always ì™ 6-6-1346 always ìš 6-6-1346-1 always ì› 6-6-1346-3 always ìœ 6-6-12356 always ì 6-6-12356-13 always ìž 6-6-12356-356 always ì­ 6-6-123456 always 쑨 6-6-1245 always ì‘© 6-6-1245-13 always 쑪 6-6-1245-356 always 쑬 6-6-12346 always ì‘­ 6-6-12346-1 always ì‘® 6-6-12346-26 always 쑯 6-6-12346-12 always ì‘° 6-6-12346-3 always 쑱 6-6-12346-236 always 쑲 6-6-12346-256 always 쑳 6-6-12346-356 always ì“´ 6-6-1356 always 쓵 6-6-1356-13 always ì“¶ 6-6-1356-356 always 쓸 6-6-2346 always 쓹 6-6-2346-1 always 쓺 6-6-2346-26 always ì“» 6-6-2346-12 always 쓼 6-6-2346-3 always 쓽 6-6-2346-236 always 쓾 6-6-2346-256 always ì“¿ 6-6-2346-356 always 씬 6-6-12345 always ì”­ 6-6-12345-13 always ì”® 6-6-12345-356 always ì–µ 1456 always ì–¶ 1456-1 always ì–· 1456-3 always ì–¸ 23456 always ì–¹ 23456-13 always ì–º 23456-356 always ì–¼ 2345 always ì–½ 2345-1 always ì–¾ 2345-26 always ì–¿ 2345-12 always ì—€ 2345-3 always ì— 2345-236 always ì—‚ 2345-256 always ì—ƒ 2345-356 always ì—° 16 always ì—± 16-13 always ì—² 16-356 always ì—´ 1256 always ì—µ 1256-1 always ì—¶ 1256-26 always ì—· 1256-12 always ì—¸ 1256-3 always ì—¹ 1256-236 always ì—º 1256-256 always ì—» 1256-356 always ì˜ 12456 always 옥 1346 always 옦 1346-1 always 옧 1346-3 always 온 12356 always 옩 12356-13 always 옪 12356-356 always 옹 123456 always ìš´ 1245 always ìšµ 1245-13 always ìš¶ 1245-356 always 울 12346 always ìš¹ 12346-1 always 욺 12346-26 always ìš» 12346-12 always ìš¼ 12346-3 always ìš½ 12346-236 always ìš¾ 12346-256 always ìš¿ 12346-356 always ì€ 1356 always ì 1356-13 always ì‚ 1356-356 always ì„ 2346 always ì… 2346-1 always ì† 2346-26 always ì‡ 2346-12 always ìˆ 2346-3 always ì‰ 2346-236 always ìŠ 2346-256 always ì‹ 2346-356 always ì¸ 12345 always ì¹ 12345-13 always ìº 12345-356 always ìž 46 always ìž‘ 46-1 always ìž’ 46-1-1 always ìž“ 46-1-3 always ìž” 46-25 always ìž• 46-25-13 always ìž– 46-25-356 always ìž— 46-35 always 잘 46-2 always ìž™ 46-2-1 always ìžš 46-2-26 always ìž› 46-2-12 always ìžœ 46-2-3 always ìž 46-2-236 always ìžž 46-2-256 always 잟 46-2-356 always ìž  46-26 always ìž¡ 46-12 always 잢 46-12-3 always 잣 46-3 always 잤 46-34 always 장 46-2356 always 잦 46-13 always ìž§ 46-23 always 잨 46-235 always ìž© 46-236 always 잪 46-256 always ìž« 46-356 always ì  46-1456 always ì ‚ 46-1456-1 always ì ƒ 46-1456-3 always ì „ 46-23456 always ì … 46-23456-13 always ì † 46-23456-356 always ì ˆ 46-2345 always ì ‰ 46-2345-1 always ì Š 46-2345-26 always ì ‹ 46-2345-12 always ì Œ 46-2345-3 always ì  46-2345-236 always ì Ž 46-2345-256 always ì  46-2345-356 always ì • 46-12456 always ì ¼ 46-16 always ì ½ 46-16-13 always ì ¾ 46-16-356 always ì¡€ 46-1256 always ì¡ 46-1256-1 always ì¡‚ 46-1256-26 always 졃 46-1256-12 always ì¡„ 46-1256-3 always ì¡… 46-1256-236 always 졆 46-1256-256 always 졇 46-1256-356 always 족 46-1346 always 졲 46-1346-1 always 졳 46-1346-3 always ì¡´ 46-12356 always 졵 46-12356-13 always ì¡¶ 46-12356-356 always 종 46-123456 always 준 46-1245 always ì¤ 46-1245-13 always 줂 46-1245-356 always 줄 46-12346 always 줅 46-12346-1 always 줆 46-12346-26 always 줇 46-12346-12 always 줈 46-12346-3 always 줉 46-12346-236 always 줊 46-12346-256 always 줋 46-12346-356 always 즌 46-1356 always ì¦ 46-1356-13 always 즎 46-1356-356 always ì¦ 46-2346 always 즑 46-2346-1 always 즒 46-2346-26 always 즓 46-2346-12 always 즔 46-2346-3 always 즕 46-2346-236 always 즖 46-2346-256 always 즗 46-2346-356 always ì§„ 46-12345 always ì§… 46-12345-13 always 짆 46-12345-356 always ì§œ 6-46 always ì§ 6-46-1 always ì§ž 6-46-1-1 always ì§Ÿ 6-46-1-3 always ì§  6-46-25 always ì§¡ 6-46-25-13 always ì§¢ 6-46-25-356 always ì§£ 6-46-35 always 짤 6-46-2 always ì§¥ 6-46-2-1 always 짦 6-46-2-26 always ì§§ 6-46-2-12 always 짨 6-46-2-3 always ì§© 6-46-2-236 always 짪 6-46-2-256 always ì§« 6-46-2-356 always 짬 6-46-26 always ì§­ 6-46-12 always ì§® 6-46-12-3 always 짯 6-46-3 always ì§° 6-46-34 always ì§± 6-46-2356 always ì§² 6-46-13 always ì§³ 6-46-23 always ì§´ 6-46-235 always ì§µ 6-46-236 always ì§¶ 6-46-256 always ì§· 6-46-356 always ì© 6-46-1456 always 쩎 6-46-1456-1 always ì© 6-46-1456-3 always ì© 6-46-23456 always ì©‘ 6-46-23456-13 always ì©’ 6-46-23456-356 always ì©” 6-46-2345 always ì©• 6-46-2345-1 always ì©– 6-46-2345-26 always ì©— 6-46-2345-12 always 쩘 6-46-2345-3 always ì©™ 6-46-2345-236 always 쩚 6-46-2345-256 always ì©› 6-46-2345-356 always ì©¡ 6-46-12456 always 쪈 6-46-16 always 쪉 6-46-16-13 always 쪊 6-46-16-356 always 쪌 6-46-1256 always ìª 6-46-1256-1 always 쪎 6-46-1256-26 always ìª 6-46-1256-12 always ìª 6-46-1256-3 always 쪑 6-46-1256-236 always 쪒 6-46-1256-256 always 쪓 6-46-1256-356 always 쪽 6-46-1346 always 쪾 6-46-1346-1 always 쪿 6-46-1346-3 always ì«€ 6-46-12356 always ì« 6-46-12356-13 always ì«‚ 6-46-12356-356 always ì«‘ 6-46-123456 always ì­Œ 6-46-1245 always ì­ 6-46-1245-13 always ì­Ž 6-46-1245-356 always ì­ 6-46-12346 always ì­‘ 6-46-12346-1 always ì­’ 6-46-12346-26 always ì­“ 6-46-12346-12 always ì­” 6-46-12346-3 always ì­• 6-46-12346-236 always ì­– 6-46-12346-256 always ì­— 6-46-12346-356 always 쯘 6-46-1356 always 쯙 6-46-1356-13 always 쯚 6-46-1356-356 always 쯜 6-46-2346 always ì¯ 6-46-2346-1 always 쯞 6-46-2346-26 always 쯟 6-46-2346-12 always 쯠 6-46-2346-3 always 쯡 6-46-2346-236 always 쯢 6-46-2346-256 always 쯣 6-46-2346-356 always ì° 6-46-12345 always ì°‘ 6-46-12345-13 always ì°’ 6-46-12345-356 always ì²™ 56-1456 always 첚 56-1456-1 always ì²› 56-1456-3 always 천 56-23456 always ì² 56-23456-13 always 첞 56-23456-356 always ì²  56-2345 always 첡 56-2345-1 always ì²¢ 56-2345-26 always ì²£ 56-2345-12 always 첤 56-2345-3 always ì²¥ 56-2345-236 always 첦 56-2345-256 always ì²§ 56-2345-356 always ì²­ 56-12456 always ì³” 56-16 always 쳕 56-16-13 always ì³– 56-16-356 always 쳘 56-1256 always ì³™ 56-1256-1 always 쳚 56-1256-26 always ì³› 56-1256-12 always 쳜 56-1256-3 always ì³ 56-1256-236 always 쳞 56-1256-256 always 쳟 56-1256-356 always ì´‰ 56-1346 always ì´Š 56-1346-1 always ì´‹ 56-1346-3 always ì´Œ 56-12356 always ì´ 56-12356-13 always ì´Ž 56-12356-356 always ì´ 56-123456 always 춘 56-1245 always ì¶™ 56-1245-13 always ì¶š 56-1245-356 always ì¶œ 56-12346 always ì¶ 56-12346-1 always ì¶ž 56-12346-26 always ì¶Ÿ 56-12346-12 always ì¶  56-12346-3 always ì¶¡ 56-12346-236 always ì¶¢ 56-12346-256 always ì¶£ 56-12346-356 always 츤 56-1356 always 츥 56-1356-13 always 츦 56-1356-356 always 츨 56-2346 always 츩 56-2346-1 always 츪 56-2346-26 always 츫 56-2346-12 always 츬 56-2346-3 always 츭 56-2346-236 always 츮 56-2346-256 always 츯 56-2346-356 always 친 56-12345 always ì¹ 56-12345-13 always 칞 56-12345-356 always ì¹´ 124 always ì¹µ 124-1 always ì¹¶ 124-1-1 always ì¹· 124-1-3 always 칸 124-25 always ì¹¹ 124-25-13 always 칺 124-25-356 always ì¹» 124-35 always ì¹¼ 124-2 always ì¹½ 124-2-1 always ì¹¾ 124-2-26 always 칿 124-2-12 always 캀 124-2-3 always ìº 124-2-236 always 캂 124-2-256 always 캃 124-2-356 always 캄 124-26 always 캅 124-12 always 캆 124-12-3 always 캇 124-3 always 캈 124-34 always 캉 124-2356 always 캊 124-13 always 캋 124-23 always 캌 124-235 always ìº 124-236 always 캎 124-256 always ìº 124-356 always 컥 124-1456 always 컦 124-1456-1 always ì»§ 124-1456-3 always 컨 124-23456 always 컩 124-23456-13 always 컪 124-23456-356 always 컬 124-2345 always ì»­ 124-2345-1 always ì»® 124-2345-26 always 컯 124-2345-12 always ì»° 124-2345-3 always ì»± 124-2345-236 always 컲 124-2345-256 always 컳 124-2345-356 always ì¼  124-16 always 켡 124-16-13 always ì¼¢ 124-16-356 always 켤 124-1256 always ì¼¥ 124-1256-1 always 켦 124-1256-26 always ì¼§ 124-1256-12 always 켨 124-1256-3 always 켩 124-1256-236 always 켪 124-1256-256 always 켫 124-1256-356 always ì¼± 124-12456 always 콕 124-1346 always ì½– 124-1346-1 always ì½— 124-1346-3 always 콘 124-12356 always ì½™ 124-12356-13 always 콚 124-12356-356 always 콩 124-123456 always 쿤 124-1245 always ì¿¥ 124-1245-13 always 쿦 124-1245-356 always 쿨 124-12346 always ì¿© 124-12346-1 always 쿪 124-12346-26 always ì¿« 124-12346-12 always 쿬 124-12346-3 always ì¿­ 124-12346-236 always ì¿® 124-12346-256 always 쿯 124-12346-356 always í° 124-1356 always í± 124-1356-13 always í² 124-1356-356 always í´ 124-2346 always íµ 124-2346-1 always í¶ 124-2346-26 always í· 124-2346-12 always í¸ 124-2346-3 always í¹ 124-2346-236 always íº 124-2346-256 always í» 124-2346-356 always 킨 124-12345 always í‚© 124-12345-13 always 킪 124-12345-356 always 타 125 always íƒ 125-1 always 탂 125-1-1 always 탃 125-1-3 always 탄 125-25 always 탅 125-25-13 always 탆 125-25-356 always 탇 125-35 always 탈 125-2 always 탉 125-2-1 always 탊 125-2-26 always 탋 125-2-12 always 탌 125-2-3 always íƒ 125-2-236 always 탎 125-2-256 always íƒ 125-2-356 always íƒ 125-26 always 탑 125-12 always 탒 125-12-3 always 탓 125-3 always 탔 125-34 always 탕 125-2356 always 탖 125-13 always 탗 125-23 always 탘 125-235 always 탙 125-236 always 탚 125-256 always 탛 125-356 always 턱 125-1456 always 턲 125-1456-1 always 턳 125-1456-3 always í„´ 125-23456 always 턵 125-23456-13 always í„¶ 125-23456-356 always 털 125-2345 always 턹 125-2345-1 always 턺 125-2345-26 always í„» 125-2345-12 always 턼 125-2345-3 always 턽 125-2345-236 always 턾 125-2345-256 always í„¿ 125-2345-356 always í…¬ 125-16 always í…­ 125-16-13 always í…® 125-16-356 always í…° 125-1256 always í…± 125-1256-1 always í…² 125-1256-26 always í…³ 125-1256-12 always í…´ 125-1256-3 always í…µ 125-1256-236 always í…¶ 125-1256-256 always í…· 125-1256-356 always í…½ 125-12456 always 톡 125-1346 always 톢 125-1346-1 always 톣 125-1346-3 always 톤 125-12356 always 톥 125-12356-13 always 톦 125-12356-356 always 통 125-123456 always 툰 125-1245 always 툱 125-1245-13 always 툲 125-1245-356 always 툴 125-12346 always 툵 125-12346-1 always 툶 125-12346-26 always 툷 125-12346-12 always 툸 125-12346-3 always 툹 125-12346-236 always 툺 125-12346-256 always 툻 125-12346-356 always 튼 125-1356 always 튽 125-1356-13 always 튾 125-1356-356 always í‹€ 125-2346 always í‹ 125-2346-1 always í‹‚ 125-2346-26 always 틃 125-2346-12 always í‹„ 125-2346-3 always í‹… 125-2346-236 always 틆 125-2346-256 always 틇 125-2346-356 always í‹´ 125-12345 always 틵 125-12345-13 always í‹¶ 125-12345-356 always 파 145 always íŒ 145-1 always 팎 145-1-1 always íŒ 145-1-3 always íŒ 145-25 always 팑 145-25-13 always 팒 145-25-356 always 팓 145-35 always 팔 145-2 always 팕 145-2-1 always 팖 145-2-26 always 팗 145-2-12 always 팘 145-2-3 always 팙 145-2-236 always 팚 145-2-256 always 팛 145-2-356 always 팜 145-26 always íŒ 145-12 always 팞 145-12-3 always 팟 145-3 always 팠 145-34 always 팡 145-2356 always 팢 145-13 always 팣 145-23 always 팤 145-235 always 팥 145-236 always 팦 145-256 always 팧 145-356 always í½ 145-1456 always í¾ 145-1456-1 always í¿ 145-1456-3 always 펀 145-23456 always íŽ 145-23456-13 always 펂 145-23456-356 always 펄 145-2345 always 펅 145-2345-1 always 펆 145-2345-26 always 펇 145-2345-12 always 펈 145-2345-3 always 펉 145-2345-236 always 펊 145-2345-256 always 펋 145-2345-356 always 편 145-16 always 펹 145-16-13 always 펺 145-16-356 always 펼 145-1256 always 펽 145-1256-1 always 펾 145-1256-26 always 펿 145-1256-12 always í€ 145-1256-3 always í 145-1256-236 always í‚ 145-1256-256 always íƒ 145-1256-356 always í‰ 145-12456 always í­ 145-1346 always í® 145-1346-1 always í¯ 145-1346-3 always í° 145-12356 always í± 145-12356-13 always í² 145-12356-356 always í 145-123456 always 푼 145-1245 always 푽 145-1245-13 always 푾 145-1245-356 always í’€ 145-12346 always í’ 145-12346-1 always í’‚ 145-12346-26 always í’ƒ 145-12346-12 always í’„ 145-12346-3 always í’… 145-12346-236 always í’† 145-12346-256 always í’‡ 145-12346-356 always 픈 145-1356 always 픉 145-1356-13 always 픊 145-1356-356 always 플 145-2346 always í” 145-2346-1 always 픎 145-2346-26 always í” 145-2346-12 always í” 145-2346-3 always 픑 145-2346-236 always í”’ 145-2346-256 always 픓 145-2346-356 always í•€ 145-12345 always í• 145-12345-13 always í•‚ 145-12345-356 always 하 245 always í•™ 245-1 always 핚 245-1-1 always í•› 245-1-3 always 한 245-25 always í• 245-25-13 always 핞 245-25-356 always 핟 245-35 always í•  245-2 always í•¡ 245-2-1 always í•¢ 245-2-26 always í•£ 245-2-12 always 핤 245-2-3 always í•¥ 245-2-236 always 핦 245-2-256 always í•§ 245-2-356 always 함 245-26 always í•© 245-12 always 핪 245-12-3 always í•« 245-3 always 핬 245-34 always í•­ 245-2356 always í•® 245-13 always 핯 245-23 always í•° 245-235 always 핱 245-236 always 핲 245-256 always 핳 245-356 always í—‰ 245-1456 always í—Š 245-1456-1 always í—‹ 245-1456-3 always í—Œ 245-23456 always í— 245-23456-13 always í—Ž 245-23456-356 always í— 245-2345 always í—‘ 245-2345-1 always í—’ 245-2345-26 always í—“ 245-2345-12 always í—” 245-2345-3 always í—• 245-2345-236 always í—– 245-2345-256 always í—— 245-2345-356 always 현 245-16 always 혅 245-16-13 always 혆 245-16-356 always 혈 245-1256 always 혉 245-1256-1 always 혊 245-1256-26 always 혋 245-1256-12 always 혌 245-1256-3 always í˜ 245-1256-236 always 혎 245-1256-256 always í˜ 245-1256-356 always 형 245-12456 always 혹 245-1346 always 혺 245-1346-1 always 혻 245-1346-3 always 혼 245-12356 always 혽 245-12356-13 always 혾 245-12356-356 always í™ 245-123456 always 훈 245-1245 always 훉 245-1245-13 always 훊 245-1245-356 always 훌 245-12346 always í› 245-12346-1 always 훎 245-12346-26 always í› 245-12346-12 always í› 245-12346-3 always 훑 245-12346-236 always í›’ 245-12346-256 always 훓 245-12346-356 always í” 245-1356 always í• 245-1356-13 always í– 245-1356-356 always í˜ 245-2346 always í™ 245-2346-1 always íš 245-2346-26 always í› 245-2346-12 always íœ 245-2346-3 always í 245-2346-236 always íž 245-2346-256 always íŸ 245-2346-356 always 힌 245-12345 always íž 245-12345-13 always 힎 245-12345-356 # Special cases: # Case 1: multi-cell contractions: # These require that two cells are used for contractions (shorthand for commonly used words). always 그래서 1-234 always 그러나 1-14 always 그러면 1-25 always 그러므로 1-26 always ê·¸ëŸ°ë° 1-1345 always 그리고 1-136 always 그리하여 1-156 # Case 2: Special jamo (conscenant-vowel) sequences (mostly "ah" sounds): # These require that "ah" (dots 126) be inserted before reading "ng" conscenant. always 나아 14-126-126 always 나악 14-126-126-1 always 나앆 14-126-126-1-1 always 나앇 14-126-126-1-3 always 나안 14-126-126-25 always 나앉 14-126-126-25-13 always 나않 14-126-126-25-356 always 나앋 14-126-126-35 always 나알 14-126-126-2 always ë‚˜ì• 14-126-126-2-1 always 나앎 14-126-126-2-26 always ë‚˜ì• 14-126-126-2-12 always ë‚˜ì• 14-126-126-2-3 always 나앑 14-126-126-2-236 always 나앒 14-126-126-2-256 always 나앓 14-126-126-2-356 always 나암 14-126-126-26 always 나압 14-126-126-12 always 나앖 14-126-126-12-3 always 나앗 14-126-126-3 always 나았 14-126-126-34 always 나앙 14-126-126-2356 always 나앚 14-126-126-13 always 나앛 14-126-126-23 always 나앜 14-126-126-235 always ë‚˜ì• 14-126-126-236 always 나앞 14-126-126-256 always 나앟 14-126-126-356 always 나애 14-126-1235 always 나액 14-126-1235-1 always 나앢 14-126-1235-1-1 always 나앣 14-126-1235-1-3 always 나앤 14-126-1235-25 always 나앥 14-126-1235-25-13 always 나앦 14-126-1235-25-356 always 나앧 14-126-1235-35 always 나앨 14-126-1235-2 always 나앩 14-126-1235-2-1 always 나앪 14-126-1235-2-26 always 나앫 14-126-1235-2-12 always 나앬 14-126-1235-2-3 always 나앭 14-126-1235-2-236 always 나앮 14-126-1235-2-256 always 나앯 14-126-1235-2-356 always 나앰 14-126-1235-26 always 나앱 14-126-1235-12 always 나앲 14-126-1235-12-3 always 나앳 14-126-1235-3 always 나앴 14-126-1235-34 always 나앵 14-126-1235-2356 always 나앶 14-126-1235-13 always 나앷 14-126-1235-23 always 나앸 14-126-1235-235 always 나앹 14-126-1235-236 always 나앺 14-126-1235-256 always 나앻 14-126-1235-356 always 나야 14-126-345 always 나약 14-126-345-1 always 나앾 14-126-345-1-1 always 나앿 14-126-345-1-3 always 나얀 14-126-345-25 always ë‚˜ì– 14-126-345-25-13 always 나얂 14-126-345-25-356 always 나얃 14-126-345-35 always 나얄 14-126-345-2 always 나얅 14-126-345-2-1 always 나얆 14-126-345-2-26 always 나얇 14-126-345-2-12 always 나얈 14-126-345-2-3 always 나얉 14-126-345-2-236 always 나얊 14-126-345-2-256 always 나얋 14-126-345-2-356 always 나얌 14-126-345-26 always ë‚˜ì– 14-126-345-12 always 나얎 14-126-345-12-3 always ë‚˜ì– 14-126-345-3 always ë‚˜ì– 14-126-345-34 always 나양 14-126-345-2356 always 나얒 14-126-345-13 always 나얓 14-126-345-23 always 나얔 14-126-345-235 always 나얕 14-126-345-236 always 나얖 14-126-345-256 always 나얗 14-126-345-356 always 나얘 14-126-345-1235 always 나얙 14-126-345-1235-1 always 나얚 14-126-345-1235-1-1 always 나얛 14-126-345-1235-1-3 always 나얜 14-126-345-1235-25 always ë‚˜ì– 14-126-345-1235-25-13 always 나얞 14-126-345-1235-25-356 always 나얟 14-126-345-1235-35 always 나얠 14-126-345-1235-2 always 나얡 14-126-345-1235-2-1 always 나얢 14-126-345-1235-2-26 always 나얣 14-126-345-1235-2-12 always 나얤 14-126-345-1235-2-3 always 나얥 14-126-345-1235-2-236 always 나얦 14-126-345-1235-2-256 always 나얧 14-126-345-1235-2-356 always 나얨 14-126-345-1235-26 always 나얩 14-126-345-1235-12 always 나얪 14-126-345-1235-12-3 always 나얫 14-126-345-1235-3 always 나얬 14-126-345-1235-34 always 나얭 14-126-345-1235-2356 always 나얮 14-126-345-1235-13 always 나얯 14-126-345-1235-23 always 나얰 14-126-345-1235-235 always 나얱 14-126-345-1235-236 always 나얲 14-126-345-1235-256 always 나얳 14-126-345-1235-356 always 나어 14-126-234 always 나억 14-126-1456 always 나얶 14-126-1456-1 always 나얷 14-126-1456-3 always 나언 14-126-23456 always 나얹 14-126-23456-13 always 나얺 14-126-23456-356 always 나얻 14-126-234-35 always 나얼 14-126-2345 always 나얽 14-126-2345-1 always 나얾 14-126-2345-26 always 나얿 14-126-2345-12 always 나엀 14-126-2345-3 always ë‚˜ì— 14-126-2345-236 always 나엂 14-126-2345-256 always 나엃 14-126-2345-356 always 나엄 14-126-234-26 always 나업 14-126-234-12 always 나없 14-126-234-12-3 always 나엇 14-126-234-3 always 나었 14-126-234-34 always 나엉 14-126-234-2356 always 나엊 14-126-234-13 always 나엋 14-126-234-23 always 나엌 14-126-234-235 always ë‚˜ì— 14-126-234-236 always 나엎 14-126-234-256 always ë‚˜ì— 14-126-234-356 always ë‚˜ì— 14-126-1345 always 나엑 14-126-1345-1 always 나엒 14-126-1345-1-1 always 나엓 14-126-1345-1-3 always 나엔 14-126-1345-25 always 나엕 14-126-1345-25-13 always 나엖 14-126-1345-25-356 always 나엗 14-126-1345-35 always 나엘 14-126-1345-2 always 나엙 14-126-1345-2-1 always 나엚 14-126-1345-2-26 always 나엛 14-126-1345-2-12 always 나엜 14-126-1345-2-3 always ë‚˜ì— 14-126-1345-2-236 always 나엞 14-126-1345-2-256 always 나엟 14-126-1345-2-356 always 나엠 14-126-1345-26 always 나엡 14-126-1345-12 always 나엢 14-126-1345-12-3 always 나엣 14-126-1345-3 always 나엤 14-126-1345-34 always 나엥 14-126-1345-2356 always 나엦 14-126-1345-13 always 나엧 14-126-1345-23 always 나엨 14-126-1345-235 always 나엩 14-126-1345-236 always 나엪 14-126-1345-256 always 나엫 14-126-1345-356 always 나여 14-126-156 always 나역 14-126-156-1 always 나엮 14-126-156-1-1 always 나엯 14-126-156-1-3 always 나연 14-126-16 always 나엱 14-126-16-13 always 나엲 14-126-16-356 always 나열 14-126-1256 always 나엵 14-126-1256-1 always 나엶 14-126-1256-26 always 나엷 14-126-1256-12 always 나엸 14-126-1256-3 always 나엹 14-126-1256-236 always 나엺 14-126-1256-256 always 나엻 14-126-1256-356 always 나염 14-126-156-26 always 나엽 14-126-156-12 always 나엾 14-126-156-12-3 always 나엿 14-126-156-3 always 나였 14-126-156-34 always ë‚˜ì˜ 14-126-12456 always 나옂 14-126-156-13 always 나옃 14-126-156-23 always 나옄 14-126-156-235 always 나옅 14-126-156-236 always 나옆 14-126-156-256 always 나옇 14-126-156-356 always 나예 14-126-34 always 나옉 14-126-34-1 always 나옊 14-126-34-1-1 always 나옋 14-126-34-1-3 always 나옌 14-126-34-25 always ë‚˜ì˜ 14-126-34-25-13 always 나옎 14-126-34-25-356 always ë‚˜ì˜ 14-126-34-35 always ë‚˜ì˜ 14-126-34-2 always 나옑 14-126-34-2-1 always 나옒 14-126-34-2-26 always 나옓 14-126-34-2-12 always 나옔 14-126-34-2-3 always 나옕 14-126-34-2-236 always 나옖 14-126-34-2-256 always 나옗 14-126-34-2-356 always 나옘 14-126-34-26 always 나옙 14-126-34-12 always 나옚 14-126-34-12-3 always 나옛 14-126-34-3 always 나옜 14-126-34-34 always ë‚˜ì˜ 14-126-34-2356 always 나옞 14-126-34-13 always 나옟 14-126-34-23 always 나옠 14-126-34-235 always 나옡 14-126-34-236 always 나옢 14-126-34-256 always 나옣 14-126-34-356 always 나오 14-126-136 always 나옥 14-126-1346 always 나옦 14-126-1346-1 always 나옧 14-126-1346-3 always 나온 14-126-12356 always 나옩 14-126-12356-13 always 나옪 14-126-12356-356 always 나옫 14-126-136-35 always 나올 14-126-136-2 always 나옭 14-126-136-2-1 always 나옮 14-126-136-2-26 always 나옯 14-126-136-2-12 always 나옰 14-126-136-2-3 always 나옱 14-126-136-2-236 always 나옲 14-126-136-2-256 always 나옳 14-126-136-2-356 always 나옴 14-126-136-26 always 나옵 14-126-136-12 always 나옶 14-126-136-12-3 always 나옷 14-126-136-3 always 나옸 14-126-136-34 always 나옹 14-126-123456 always 나옺 14-126-136-13 always 나옻 14-126-136-23 always 나옼 14-126-136-235 always 나옽 14-126-136-236 always 나옾 14-126-136-256 always 나옿 14-126-136-356 always 나와 14-126-1236 always ë‚˜ì™ 14-126-1236-1 always 나왂 14-126-1236-1-1 always 나왃 14-126-1236-1-3 always 나완 14-126-1236-25 always 나왅 14-126-1236-25-13 always 나왆 14-126-1236-25-356 always 나왇 14-126-1236-35 always 나왈 14-126-1236-2 always 나왉 14-126-1236-2-1 always 나왊 14-126-1236-2-26 always 나왋 14-126-1236-2-12 always 나왌 14-126-1236-2-3 always ë‚˜ì™ 14-126-1236-2-236 always 나왎 14-126-1236-2-256 always ë‚˜ì™ 14-126-1236-2-356 always ë‚˜ì™ 14-126-1236-26 always 나왑 14-126-1236-12 always 나왒 14-126-1236-12-3 always 나왓 14-126-1236-3 always 나왔 14-126-1236-34 always 나왕 14-126-1236-2356 always 나왖 14-126-1236-13 always 나왗 14-126-1236-23 always 나왘 14-126-1236-235 always 나왙 14-126-1236-236 always 나왚 14-126-1236-256 always 나왛 14-126-1236-356 always 나왜 14-126-1236-1235 always ë‚˜ì™ 14-126-1236-1235-1 always 나왞 14-126-1236-1235-1-1 always 나왟 14-126-1236-1235-1-3 always 나왠 14-126-1236-1235-25 always 나왡 14-126-1236-1235-25-13 always 나왢 14-126-1236-1235-25-356 always 나왣 14-126-1236-1235-35 always 나왤 14-126-1236-1235-2 always 나왥 14-126-1236-1235-2-1 always 나왦 14-126-1236-1235-2-26 always 나왧 14-126-1236-1235-2-12 always 나왨 14-126-1236-1235-2-3 always 나왩 14-126-1236-1235-2-236 always 나왪 14-126-1236-1235-2-256 always 나왫 14-126-1236-1235-2-356 always 나왬 14-126-1236-1235-26 always 나왭 14-126-1236-1235-12 always 나왮 14-126-1236-1235-12-3 always 나왯 14-126-1236-1235-3 always 나왰 14-126-1236-1235-34 always 나왱 14-126-1236-1235-2356 always 나왲 14-126-1236-1235-13 always 나왳 14-126-1236-1235-23 always 나왴 14-126-1236-1235-235 always 나왵 14-126-1236-1235-236 always 나왶 14-126-1236-1235-256 always 나왷 14-126-1236-1235-356 always 나외 14-126-13456 always 나왹 14-126-13456-1 always 나왺 14-126-13456-1-1 always 나왻 14-126-13456-1-3 always 나왼 14-126-13456-25 always 나왽 14-126-13456-25-13 always 나왾 14-126-13456-25-356 always 나왿 14-126-13456-35 always 나욀 14-126-13456-2 always ë‚˜ìš 14-126-13456-2-1 always 나욂 14-126-13456-2-26 always 나욃 14-126-13456-2-12 always 나욄 14-126-13456-2-3 always 나욅 14-126-13456-2-236 always 나욆 14-126-13456-2-256 always 나욇 14-126-13456-2-356 always 나욈 14-126-13456-26 always 나욉 14-126-13456-12 always 나욊 14-126-13456-12-3 always 나욋 14-126-13456-3 always 나욌 14-126-13456-34 always ë‚˜ìš 14-126-13456-2356 always 나욎 14-126-13456-13 always ë‚˜ìš 14-126-13456-23 always ë‚˜ìš 14-126-13456-235 always 나욑 14-126-13456-236 always 나욒 14-126-13456-256 always 나욓 14-126-13456-356 always 나요 14-126-346 always 나욕 14-126-346-1 always 나욖 14-126-346-1-1 always 나욗 14-126-346-1-3 always 나욘 14-126-346-25 always 나욙 14-126-346-25-13 always 나욚 14-126-346-25-356 always 나욛 14-126-346-35 always 나욜 14-126-346-2 always ë‚˜ìš 14-126-346-2-1 always 나욞 14-126-346-2-26 always 나욟 14-126-346-2-12 always 나욠 14-126-346-2-3 always 나욡 14-126-346-2-236 always 나욢 14-126-346-2-256 always 나욣 14-126-346-2-356 always 나욤 14-126-346-26 always 나욥 14-126-346-12 always 나욦 14-126-346-12-3 always 나욧 14-126-346-3 always 나욨 14-126-346-34 always 나용 14-126-346-2356 always 나욪 14-126-346-13 always 나욫 14-126-346-23 always 나욬 14-126-346-235 always 나욭 14-126-346-236 always 나욮 14-126-346-256 always 나욯 14-126-346-356 always 나우 14-126-134 always 나욱 14-126-134-1 always 나욲 14-126-134-1-1 always 나욳 14-126-134-1-3 always 나운 14-126-1245 always 나욵 14-126-1245-13 always 나욶 14-126-1245-356 always 나욷 14-126-134-35 always 나울 14-126-12346 always 나욹 14-126-12346-1 always 나욺 14-126-12346-26 always 나욻 14-126-12346-12 always 나욼 14-126-12346-3 always 나욽 14-126-12346-236 always 나욾 14-126-12346-256 always 나욿 14-126-12346-356 always 나움 14-126-134-26 always ë‚˜ì› 14-126-134-12 always 나웂 14-126-134-12-3 always 나웃 14-126-134-3 always 나웄 14-126-134-34 always 나웅 14-126-134-2356 always 나웆 14-126-134-13 always 나웇 14-126-134-23 always 나웈 14-126-134-235 always 나웉 14-126-134-236 always 나웊 14-126-134-256 always 나웋 14-126-134-356 always 나워 14-126-1234 always ë‚˜ì› 14-126-1234-1 always 나웎 14-126-1234-1-1 always ë‚˜ì› 14-126-1234-1-3 always ë‚˜ì› 14-126-1234-25 always 나웑 14-126-1234-25-13 always 나웒 14-126-1234-25-356 always 나웓 14-126-1234-35 always 나월 14-126-1234-2 always 나웕 14-126-1234-2-1 always 나웖 14-126-1234-2-26 always 나웗 14-126-1234-2-12 always 나웘 14-126-1234-2-3 always 나웙 14-126-1234-2-236 always 나웚 14-126-1234-2-256 always 나웛 14-126-1234-2-356 always 나웜 14-126-1234-26 always ë‚˜ì› 14-126-1234-12 always 나웞 14-126-1234-12-3 always 나웟 14-126-1234-3 always 나웠 14-126-1234-34 always 나웡 14-126-1234-2356 always 나웢 14-126-1234-13 always 나웣 14-126-1234-23 always 나웤 14-126-1234-235 always 나웥 14-126-1234-236 always 나웦 14-126-1234-256 always 나웧 14-126-1234-356 always 나웨 14-126-1234-1235 always 나웩 14-126-1234-1235-1 always 나웪 14-126-1234-1235-1-1 always 나웫 14-126-1234-1235-1-3 always 나웬 14-126-1234-1235-25 always 나웭 14-126-1234-1235-25-13 always 나웮 14-126-1234-1235-25-356 always 나웯 14-126-1234-1235-35 always 나웰 14-126-1234-1235-2 always 나웱 14-126-1234-1235-2-1 always 나웲 14-126-1234-1235-2-26 always 나웳 14-126-1234-1235-2-12 always 나웴 14-126-1234-1235-2-3 always 나웵 14-126-1234-1235-2-236 always 나웶 14-126-1234-1235-2-256 always 나웷 14-126-1234-1235-2-356 always 나웸 14-126-1234-1235-26 always 나웹 14-126-1234-1235-12 always 나웺 14-126-1234-1235-12-3 always 나웻 14-126-1234-1235-3 always 나웼 14-126-1234-1235-34 always 나웽 14-126-1234-1235-2356 always 나웾 14-126-1234-1235-13 always 나웿 14-126-1234-1235-23 always 나윀 14-126-1234-1235-235 always ë‚˜ìœ 14-126-1234-1235-236 always 나윂 14-126-1234-1235-256 always 나윃 14-126-1234-1235-356 always 나위 14-126-134-1235 always 나윅 14-126-134-1235-1 always 나윆 14-126-134-1235-1-1 always 나윇 14-126-134-1235-1-3 always 나윈 14-126-134-1235-25 always 나윉 14-126-134-1235-25-13 always 나윊 14-126-134-1235-25-356 always 나윋 14-126-134-1235-35 always 나윌 14-126-134-1235-2 always ë‚˜ìœ 14-126-134-1235-2-1 always 나윎 14-126-134-1235-2-26 always ë‚˜ìœ 14-126-134-1235-2-12 always ë‚˜ìœ 14-126-134-1235-2-3 always 나윑 14-126-134-1235-2-236 always 나윒 14-126-134-1235-2-256 always 나윓 14-126-134-1235-2-356 always 나윔 14-126-134-1235-26 always 나윕 14-126-134-1235-12 always 나윖 14-126-134-1235-12-3 always 나윗 14-126-134-1235-3 always 나윘 14-126-134-1235-34 always 나윙 14-126-134-1235-2356 always 나윚 14-126-134-1235-13 always 나윛 14-126-134-1235-23 always 나윜 14-126-134-1235-235 always ë‚˜ìœ 14-126-134-1235-236 always 나윞 14-126-134-1235-256 always 나윟 14-126-134-1235-356 always 나유 14-126-146 always 나육 14-126-146-1 always 나윢 14-126-146-1-1 always 나윣 14-126-146-1-3 always 나윤 14-126-146-25 always 나윥 14-126-146-25-13 always 나윦 14-126-146-25-356 always 나윧 14-126-146-35 always 나율 14-126-146-2 always 나윩 14-126-146-2-1 always 나윪 14-126-146-2-26 always 나윫 14-126-146-2-12 always 나윬 14-126-146-2-3 always 나윭 14-126-146-2-236 always 나윮 14-126-146-2-256 always 나윯 14-126-146-2-356 always 나윰 14-126-146-26 always 나윱 14-126-146-12 always 나윲 14-126-146-12-3 always 나윳 14-126-146-3 always 나윴 14-126-146-34 always 나융 14-126-146-2356 always 나윶 14-126-146-13 always 나윷 14-126-146-23 always 나윸 14-126-146-235 always 나윹 14-126-146-236 always 나윺 14-126-146-256 always 나윻 14-126-146-356 always 나으 14-126-246 always 나윽 14-126-246-1 always 나윾 14-126-246-1-1 always 나윿 14-126-246-1-3 always ë‚˜ì€ 14-126-1356 always 나ì 14-126-1356-13 always ë‚˜ì‚ 14-126-1356-356 always ë‚˜ìƒ 14-126-246-35 always ë‚˜ì„ 14-126-2346 always ë‚˜ì… 14-126-2346-1 always ë‚˜ì† 14-126-2346-26 always ë‚˜ì‡ 14-126-2346-12 always ë‚˜ìˆ 14-126-2346-3 always ë‚˜ì‰ 14-126-2346-236 always ë‚˜ìŠ 14-126-2346-256 always ë‚˜ì‹ 14-126-2346-356 always ë‚˜ìŒ 14-126-246-26 always 나ì 14-126-246-12 always ë‚˜ìŽ 14-126-246-12-3 always 나ì 14-126-246-3 always 나ì 14-126-246-34 always ë‚˜ì‘ 14-126-246-2356 always ë‚˜ì’ 14-126-246-13 always ë‚˜ì“ 14-126-246-23 always ë‚˜ì” 14-126-246-235 always ë‚˜ì• 14-126-246-236 always ë‚˜ì– 14-126-246-256 always ë‚˜ì— 14-126-246-356 always ë‚˜ì˜ 14-126-2456 always ë‚˜ì™ 14-126-2456-1 always ë‚˜ìš 14-126-2456-1-1 always ë‚˜ì› 14-126-2456-1-3 always ë‚˜ìœ 14-126-2456-25 always 나ì 14-126-2456-25-13 always ë‚˜ìž 14-126-2456-25-356 always ë‚˜ìŸ 14-126-2456-35 always ë‚˜ì  14-126-2456-2 always ë‚˜ì¡ 14-126-2456-2-1 always ë‚˜ì¢ 14-126-2456-2-26 always ë‚˜ì£ 14-126-2456-2-12 always ë‚˜ì¤ 14-126-2456-2-3 always ë‚˜ì¥ 14-126-2456-2-236 always ë‚˜ì¦ 14-126-2456-2-256 always ë‚˜ì§ 14-126-2456-2-356 always ë‚˜ì¨ 14-126-2456-26 always ë‚˜ì© 14-126-2456-12 always ë‚˜ìª 14-126-2456-12-3 always ë‚˜ì« 14-126-2456-3 always ë‚˜ì¬ 14-126-2456-34 always ë‚˜ì­ 14-126-2456-2356 always ë‚˜ì® 14-126-2456-13 always ë‚˜ì¯ 14-126-2456-23 always ë‚˜ì° 14-126-2456-235 always ë‚˜ì± 14-126-2456-236 always ë‚˜ì² 14-126-2456-256 always ë‚˜ì³ 14-126-2456-356 always ë‚˜ì´ 14-126-135 always ë‚˜ìµ 14-126-135-1 always ë‚˜ì¶ 14-126-135-1-1 always ë‚˜ì· 14-126-135-1-3 always ë‚˜ì¸ 14-126-12345 always ë‚˜ì¹ 14-126-12345-13 always ë‚˜ìº 14-126-12345-356 always ë‚˜ì» 14-126-135-35 always ë‚˜ì¼ 14-126-135-2 always ë‚˜ì½ 14-126-135-2-1 always ë‚˜ì¾ 14-126-135-2-26 always ë‚˜ì¿ 14-126-135-2-12 always 나잀 14-126-135-2-3 always ë‚˜ìž 14-126-135-2-236 always 나잂 14-126-135-2-256 always 나잃 14-126-135-2-356 always 나임 14-126-135-26 always 나입 14-126-135-12 always 나잆 14-126-135-12-3 always 나잇 14-126-135-3 always 나있 14-126-135-34 always 나잉 14-126-135-2356 always 나잊 14-126-135-13 always 나잋 14-126-135-23 always 나잌 14-126-135-235 always ë‚˜ìž 14-126-135-236 always 나잎 14-126-135-256 always ë‚˜ìž 14-126-135-356 always 다아 24-126-126 always 다악 24-126-126-1 always 다앆 24-126-126-1-1 always 다앇 24-126-126-1-3 always 다안 24-126-126-25 always 다앉 24-126-126-25-13 always 다않 24-126-126-25-356 always 다앋 24-126-126-35 always 다알 24-126-126-2 always ë‹¤ì• 24-126-126-2-1 always 다앎 24-126-126-2-26 always ë‹¤ì• 24-126-126-2-12 always ë‹¤ì• 24-126-126-2-3 always 다앑 24-126-126-2-236 always 다앒 24-126-126-2-256 always 다앓 24-126-126-2-356 always 다암 24-126-126-26 always 다압 24-126-126-12 always 다앖 24-126-126-12-3 always 다앗 24-126-126-3 always 다았 24-126-126-34 always 다앙 24-126-126-2356 always 다앚 24-126-126-13 always 다앛 24-126-126-23 always 다앜 24-126-126-235 always ë‹¤ì• 24-126-126-236 always 다앞 24-126-126-256 always 다앟 24-126-126-356 always 다애 24-126-1235 always 다액 24-126-1235-1 always 다앢 24-126-1235-1-1 always 다앣 24-126-1235-1-3 always 다앤 24-126-1235-25 always 다앥 24-126-1235-25-13 always 다앦 24-126-1235-25-356 always 다앧 24-126-1235-35 always 다앨 24-126-1235-2 always 다앩 24-126-1235-2-1 always 다앪 24-126-1235-2-26 always 다앫 24-126-1235-2-12 always 다앬 24-126-1235-2-3 always 다앭 24-126-1235-2-236 always 다앮 24-126-1235-2-256 always 다앯 24-126-1235-2-356 always 다앰 24-126-1235-26 always 다앱 24-126-1235-12 always 다앲 24-126-1235-12-3 always 다앳 24-126-1235-3 always 다앴 24-126-1235-34 always 다앵 24-126-1235-2356 always 다앶 24-126-1235-13 always 다앷 24-126-1235-23 always 다앸 24-126-1235-235 always 다앹 24-126-1235-236 always 다앺 24-126-1235-256 always 다앻 24-126-1235-356 always 다야 24-126-345 always 다약 24-126-345-1 always 다앾 24-126-345-1-1 always 다앿 24-126-345-1-3 always 다얀 24-126-345-25 always ë‹¤ì– 24-126-345-25-13 always 다얂 24-126-345-25-356 always 다얃 24-126-345-35 always 다얄 24-126-345-2 always 다얅 24-126-345-2-1 always 다얆 24-126-345-2-26 always 다얇 24-126-345-2-12 always 다얈 24-126-345-2-3 always 다얉 24-126-345-2-236 always 다얊 24-126-345-2-256 always 다얋 24-126-345-2-356 always 다얌 24-126-345-26 always ë‹¤ì– 24-126-345-12 always 다얎 24-126-345-12-3 always ë‹¤ì– 24-126-345-3 always ë‹¤ì– 24-126-345-34 always 다양 24-126-345-2356 always 다얒 24-126-345-13 always 다얓 24-126-345-23 always 다얔 24-126-345-235 always 다얕 24-126-345-236 always 다얖 24-126-345-256 always 다얗 24-126-345-356 always 다얘 24-126-345-1235 always 다얙 24-126-345-1235-1 always 다얚 24-126-345-1235-1-1 always 다얛 24-126-345-1235-1-3 always 다얜 24-126-345-1235-25 always ë‹¤ì– 24-126-345-1235-25-13 always 다얞 24-126-345-1235-25-356 always 다얟 24-126-345-1235-35 always 다얠 24-126-345-1235-2 always 다얡 24-126-345-1235-2-1 always 다얢 24-126-345-1235-2-26 always 다얣 24-126-345-1235-2-12 always 다얤 24-126-345-1235-2-3 always 다얥 24-126-345-1235-2-236 always 다얦 24-126-345-1235-2-256 always 다얧 24-126-345-1235-2-356 always 다얨 24-126-345-1235-26 always 다얩 24-126-345-1235-12 always 다얪 24-126-345-1235-12-3 always 다얫 24-126-345-1235-3 always 다얬 24-126-345-1235-34 always 다얭 24-126-345-1235-2356 always 다얮 24-126-345-1235-13 always 다얯 24-126-345-1235-23 always 다얰 24-126-345-1235-235 always 다얱 24-126-345-1235-236 always 다얲 24-126-345-1235-256 always 다얳 24-126-345-1235-356 always 다어 24-126-234 always 다억 24-126-1456 always 다얶 24-126-1456-1 always 다얷 24-126-1456-3 always 다언 24-126-23456 always 다얹 24-126-23456-13 always 다얺 24-126-23456-356 always 다얻 24-126-234-35 always 다얼 24-126-2345 always 다얽 24-126-2345-1 always 다얾 24-126-2345-26 always 다얿 24-126-2345-12 always 다엀 24-126-2345-3 always ë‹¤ì— 24-126-2345-236 always 다엂 24-126-2345-256 always 다엃 24-126-2345-356 always 다엄 24-126-234-26 always 다업 24-126-234-12 always 다없 24-126-234-12-3 always 다엇 24-126-234-3 always 다었 24-126-234-34 always 다엉 24-126-234-2356 always 다엊 24-126-234-13 always 다엋 24-126-234-23 always 다엌 24-126-234-235 always ë‹¤ì— 24-126-234-236 always 다엎 24-126-234-256 always ë‹¤ì— 24-126-234-356 always ë‹¤ì— 24-126-1345 always 다엑 24-126-1345-1 always 다엒 24-126-1345-1-1 always 다엓 24-126-1345-1-3 always 다엔 24-126-1345-25 always 다엕 24-126-1345-25-13 always 다엖 24-126-1345-25-356 always 다엗 24-126-1345-35 always 다엘 24-126-1345-2 always 다엙 24-126-1345-2-1 always 다엚 24-126-1345-2-26 always 다엛 24-126-1345-2-12 always 다엜 24-126-1345-2-3 always ë‹¤ì— 24-126-1345-2-236 always 다엞 24-126-1345-2-256 always 다엟 24-126-1345-2-356 always 다엠 24-126-1345-26 always 다엡 24-126-1345-12 always 다엢 24-126-1345-12-3 always 다엣 24-126-1345-3 always 다엤 24-126-1345-34 always 다엥 24-126-1345-2356 always 다엦 24-126-1345-13 always 다엧 24-126-1345-23 always 다엨 24-126-1345-235 always 다엩 24-126-1345-236 always 다엪 24-126-1345-256 always 다엫 24-126-1345-356 always 다여 24-126-156 always 다역 24-126-156-1 always 다엮 24-126-156-1-1 always 다엯 24-126-156-1-3 always 다연 24-126-16 always 다엱 24-126-16-13 always 다엲 24-126-16-356 always 다열 24-126-1256 always 다엵 24-126-1256-1 always 다엶 24-126-1256-26 always 다엷 24-126-1256-12 always 다엸 24-126-1256-3 always 다엹 24-126-1256-236 always 다엺 24-126-1256-256 always 다엻 24-126-1256-356 always 다염 24-126-156-26 always 다엽 24-126-156-12 always 다엾 24-126-156-12-3 always 다엿 24-126-156-3 always 다였 24-126-156-34 always ë‹¤ì˜ 24-126-12456 always 다옂 24-126-156-13 always 다옃 24-126-156-23 always 다옄 24-126-156-235 always 다옅 24-126-156-236 always 다옆 24-126-156-256 always 다옇 24-126-156-356 always 다예 24-126-34 always 다옉 24-126-34-1 always 다옊 24-126-34-1-1 always 다옋 24-126-34-1-3 always 다옌 24-126-34-25 always ë‹¤ì˜ 24-126-34-25-13 always 다옎 24-126-34-25-356 always ë‹¤ì˜ 24-126-34-35 always ë‹¤ì˜ 24-126-34-2 always 다옑 24-126-34-2-1 always 다옒 24-126-34-2-26 always 다옓 24-126-34-2-12 always 다옔 24-126-34-2-3 always 다옕 24-126-34-2-236 always 다옖 24-126-34-2-256 always 다옗 24-126-34-2-356 always 다옘 24-126-34-26 always 다옙 24-126-34-12 always 다옚 24-126-34-12-3 always 다옛 24-126-34-3 always 다옜 24-126-34-34 always ë‹¤ì˜ 24-126-34-2356 always 다옞 24-126-34-13 always 다옟 24-126-34-23 always 다옠 24-126-34-235 always 다옡 24-126-34-236 always 다옢 24-126-34-256 always 다옣 24-126-34-356 always 다오 24-126-136 always 다옥 24-126-1346 always 다옦 24-126-1346-1 always 다옧 24-126-1346-3 always 다온 24-126-12356 always 다옩 24-126-12356-13 always 다옪 24-126-12356-356 always 다옫 24-126-136-35 always 다올 24-126-136-2 always 다옭 24-126-136-2-1 always 다옮 24-126-136-2-26 always 다옯 24-126-136-2-12 always 다옰 24-126-136-2-3 always 다옱 24-126-136-2-236 always 다옲 24-126-136-2-256 always 다옳 24-126-136-2-356 always 다옴 24-126-136-26 always 다옵 24-126-136-12 always 다옶 24-126-136-12-3 always 다옷 24-126-136-3 always 다옸 24-126-136-34 always 다옹 24-126-123456 always 다옺 24-126-136-13 always 다옻 24-126-136-23 always 다옼 24-126-136-235 always 다옽 24-126-136-236 always 다옾 24-126-136-256 always 다옿 24-126-136-356 always 다와 24-126-1236 always ë‹¤ì™ 24-126-1236-1 always 다왂 24-126-1236-1-1 always 다왃 24-126-1236-1-3 always 다완 24-126-1236-25 always 다왅 24-126-1236-25-13 always 다왆 24-126-1236-25-356 always 다왇 24-126-1236-35 always 다왈 24-126-1236-2 always 다왉 24-126-1236-2-1 always 다왊 24-126-1236-2-26 always 다왋 24-126-1236-2-12 always 다왌 24-126-1236-2-3 always ë‹¤ì™ 24-126-1236-2-236 always 다왎 24-126-1236-2-256 always ë‹¤ì™ 24-126-1236-2-356 always ë‹¤ì™ 24-126-1236-26 always 다왑 24-126-1236-12 always 다왒 24-126-1236-12-3 always 다왓 24-126-1236-3 always 다왔 24-126-1236-34 always 다왕 24-126-1236-2356 always 다왖 24-126-1236-13 always 다왗 24-126-1236-23 always 다왘 24-126-1236-235 always 다왙 24-126-1236-236 always 다왚 24-126-1236-256 always 다왛 24-126-1236-356 always 다왜 24-126-1236-1235 always ë‹¤ì™ 24-126-1236-1235-1 always 다왞 24-126-1236-1235-1-1 always 다왟 24-126-1236-1235-1-3 always 다왠 24-126-1236-1235-25 always 다왡 24-126-1236-1235-25-13 always 다왢 24-126-1236-1235-25-356 always 다왣 24-126-1236-1235-35 always 다왤 24-126-1236-1235-2 always 다왥 24-126-1236-1235-2-1 always 다왦 24-126-1236-1235-2-26 always 다왧 24-126-1236-1235-2-12 always 다왨 24-126-1236-1235-2-3 always 다왩 24-126-1236-1235-2-236 always 다왪 24-126-1236-1235-2-256 always 다왫 24-126-1236-1235-2-356 always 다왬 24-126-1236-1235-26 always 다왭 24-126-1236-1235-12 always 다왮 24-126-1236-1235-12-3 always 다왯 24-126-1236-1235-3 always 다왰 24-126-1236-1235-34 always 다왱 24-126-1236-1235-2356 always 다왲 24-126-1236-1235-13 always 다왳 24-126-1236-1235-23 always 다왴 24-126-1236-1235-235 always 다왵 24-126-1236-1235-236 always 다왶 24-126-1236-1235-256 always 다왷 24-126-1236-1235-356 always 다외 24-126-13456 always 다왹 24-126-13456-1 always 다왺 24-126-13456-1-1 always 다왻 24-126-13456-1-3 always 다왼 24-126-13456-25 always 다왽 24-126-13456-25-13 always 다왾 24-126-13456-25-356 always 다왿 24-126-13456-35 always 다욀 24-126-13456-2 always ë‹¤ìš 24-126-13456-2-1 always 다욂 24-126-13456-2-26 always 다욃 24-126-13456-2-12 always 다욄 24-126-13456-2-3 always 다욅 24-126-13456-2-236 always 다욆 24-126-13456-2-256 always 다욇 24-126-13456-2-356 always 다욈 24-126-13456-26 always 다욉 24-126-13456-12 always 다욊 24-126-13456-12-3 always 다욋 24-126-13456-3 always 다욌 24-126-13456-34 always ë‹¤ìš 24-126-13456-2356 always 다욎 24-126-13456-13 always ë‹¤ìš 24-126-13456-23 always ë‹¤ìš 24-126-13456-235 always 다욑 24-126-13456-236 always 다욒 24-126-13456-256 always 다욓 24-126-13456-356 always 다요 24-126-346 always 다욕 24-126-346-1 always 다욖 24-126-346-1-1 always 다욗 24-126-346-1-3 always 다욘 24-126-346-25 always 다욙 24-126-346-25-13 always 다욚 24-126-346-25-356 always 다욛 24-126-346-35 always 다욜 24-126-346-2 always ë‹¤ìš 24-126-346-2-1 always 다욞 24-126-346-2-26 always 다욟 24-126-346-2-12 always 다욠 24-126-346-2-3 always 다욡 24-126-346-2-236 always 다욢 24-126-346-2-256 always 다욣 24-126-346-2-356 always 다욤 24-126-346-26 always 다욥 24-126-346-12 always 다욦 24-126-346-12-3 always 다욧 24-126-346-3 always 다욨 24-126-346-34 always 다용 24-126-346-2356 always 다욪 24-126-346-13 always 다욫 24-126-346-23 always 다욬 24-126-346-235 always 다욭 24-126-346-236 always 다욮 24-126-346-256 always 다욯 24-126-346-356 always 다우 24-126-134 always 다욱 24-126-134-1 always 다욲 24-126-134-1-1 always 다욳 24-126-134-1-3 always 다운 24-126-1245 always 다욵 24-126-1245-13 always 다욶 24-126-1245-356 always 다욷 24-126-134-35 always 다울 24-126-12346 always 다욹 24-126-12346-1 always 다욺 24-126-12346-26 always 다욻 24-126-12346-12 always 다욼 24-126-12346-3 always 다욽 24-126-12346-236 always 다욾 24-126-12346-256 always 다욿 24-126-12346-356 always 다움 24-126-134-26 always ë‹¤ì› 24-126-134-12 always 다웂 24-126-134-12-3 always 다웃 24-126-134-3 always 다웄 24-126-134-34 always 다웅 24-126-134-2356 always 다웆 24-126-134-13 always 다웇 24-126-134-23 always 다웈 24-126-134-235 always 다웉 24-126-134-236 always 다웊 24-126-134-256 always 다웋 24-126-134-356 always 다워 24-126-1234 always ë‹¤ì› 24-126-1234-1 always 다웎 24-126-1234-1-1 always ë‹¤ì› 24-126-1234-1-3 always ë‹¤ì› 24-126-1234-25 always 다웑 24-126-1234-25-13 always 다웒 24-126-1234-25-356 always 다웓 24-126-1234-35 always 다월 24-126-1234-2 always 다웕 24-126-1234-2-1 always 다웖 24-126-1234-2-26 always 다웗 24-126-1234-2-12 always 다웘 24-126-1234-2-3 always 다웙 24-126-1234-2-236 always 다웚 24-126-1234-2-256 always 다웛 24-126-1234-2-356 always 다웜 24-126-1234-26 always ë‹¤ì› 24-126-1234-12 always 다웞 24-126-1234-12-3 always 다웟 24-126-1234-3 always 다웠 24-126-1234-34 always 다웡 24-126-1234-2356 always 다웢 24-126-1234-13 always 다웣 24-126-1234-23 always 다웤 24-126-1234-235 always 다웥 24-126-1234-236 always 다웦 24-126-1234-256 always 다웧 24-126-1234-356 always 다웨 24-126-1234-1235 always 다웩 24-126-1234-1235-1 always 다웪 24-126-1234-1235-1-1 always 다웫 24-126-1234-1235-1-3 always 다웬 24-126-1234-1235-25 always 다웭 24-126-1234-1235-25-13 always 다웮 24-126-1234-1235-25-356 always 다웯 24-126-1234-1235-35 always 다웰 24-126-1234-1235-2 always 다웱 24-126-1234-1235-2-1 always 다웲 24-126-1234-1235-2-26 always 다웳 24-126-1234-1235-2-12 always 다웴 24-126-1234-1235-2-3 always 다웵 24-126-1234-1235-2-236 always 다웶 24-126-1234-1235-2-256 always 다웷 24-126-1234-1235-2-356 always 다웸 24-126-1234-1235-26 always 다웹 24-126-1234-1235-12 always 다웺 24-126-1234-1235-12-3 always 다웻 24-126-1234-1235-3 always 다웼 24-126-1234-1235-34 always 다웽 24-126-1234-1235-2356 always 다웾 24-126-1234-1235-13 always 다웿 24-126-1234-1235-23 always 다윀 24-126-1234-1235-235 always ë‹¤ìœ 24-126-1234-1235-236 always 다윂 24-126-1234-1235-256 always 다윃 24-126-1234-1235-356 always 다위 24-126-134-1235 always 다윅 24-126-134-1235-1 always 다윆 24-126-134-1235-1-1 always 다윇 24-126-134-1235-1-3 always 다윈 24-126-134-1235-25 always 다윉 24-126-134-1235-25-13 always 다윊 24-126-134-1235-25-356 always 다윋 24-126-134-1235-35 always 다윌 24-126-134-1235-2 always ë‹¤ìœ 24-126-134-1235-2-1 always 다윎 24-126-134-1235-2-26 always ë‹¤ìœ 24-126-134-1235-2-12 always ë‹¤ìœ 24-126-134-1235-2-3 always 다윑 24-126-134-1235-2-236 always 다윒 24-126-134-1235-2-256 always 다윓 24-126-134-1235-2-356 always 다윔 24-126-134-1235-26 always 다윕 24-126-134-1235-12 always 다윖 24-126-134-1235-12-3 always 다윗 24-126-134-1235-3 always 다윘 24-126-134-1235-34 always 다윙 24-126-134-1235-2356 always 다윚 24-126-134-1235-13 always 다윛 24-126-134-1235-23 always 다윜 24-126-134-1235-235 always ë‹¤ìœ 24-126-134-1235-236 always 다윞 24-126-134-1235-256 always 다윟 24-126-134-1235-356 always 다유 24-126-146 always 다육 24-126-146-1 always 다윢 24-126-146-1-1 always 다윣 24-126-146-1-3 always 다윤 24-126-146-25 always 다윥 24-126-146-25-13 always 다윦 24-126-146-25-356 always 다윧 24-126-146-35 always 다율 24-126-146-2 always 다윩 24-126-146-2-1 always 다윪 24-126-146-2-26 always 다윫 24-126-146-2-12 always 다윬 24-126-146-2-3 always 다윭 24-126-146-2-236 always 다윮 24-126-146-2-256 always 다윯 24-126-146-2-356 always 다윰 24-126-146-26 always 다윱 24-126-146-12 always 다윲 24-126-146-12-3 always 다윳 24-126-146-3 always 다윴 24-126-146-34 always 다융 24-126-146-2356 always 다윶 24-126-146-13 always 다윷 24-126-146-23 always 다윸 24-126-146-235 always 다윹 24-126-146-236 always 다윺 24-126-146-256 always 다윻 24-126-146-356 always 다으 24-126-246 always 다윽 24-126-246-1 always 다윾 24-126-246-1-1 always 다윿 24-126-246-1-3 always ë‹¤ì€ 24-126-1356 always 다ì 24-126-1356-13 always ë‹¤ì‚ 24-126-1356-356 always ë‹¤ìƒ 24-126-246-35 always ë‹¤ì„ 24-126-2346 always ë‹¤ì… 24-126-2346-1 always ë‹¤ì† 24-126-2346-26 always ë‹¤ì‡ 24-126-2346-12 always ë‹¤ìˆ 24-126-2346-3 always ë‹¤ì‰ 24-126-2346-236 always ë‹¤ìŠ 24-126-2346-256 always ë‹¤ì‹ 24-126-2346-356 always ë‹¤ìŒ 24-126-246-26 always 다ì 24-126-246-12 always ë‹¤ìŽ 24-126-246-12-3 always 다ì 24-126-246-3 always 다ì 24-126-246-34 always ë‹¤ì‘ 24-126-246-2356 always ë‹¤ì’ 24-126-246-13 always ë‹¤ì“ 24-126-246-23 always ë‹¤ì” 24-126-246-235 always ë‹¤ì• 24-126-246-236 always ë‹¤ì– 24-126-246-256 always ë‹¤ì— 24-126-246-356 always ë‹¤ì˜ 24-126-2456 always ë‹¤ì™ 24-126-2456-1 always ë‹¤ìš 24-126-2456-1-1 always ë‹¤ì› 24-126-2456-1-3 always ë‹¤ìœ 24-126-2456-25 always 다ì 24-126-2456-25-13 always ë‹¤ìž 24-126-2456-25-356 always ë‹¤ìŸ 24-126-2456-35 always ë‹¤ì  24-126-2456-2 always ë‹¤ì¡ 24-126-2456-2-1 always ë‹¤ì¢ 24-126-2456-2-26 always ë‹¤ì£ 24-126-2456-2-12 always ë‹¤ì¤ 24-126-2456-2-3 always ë‹¤ì¥ 24-126-2456-2-236 always ë‹¤ì¦ 24-126-2456-2-256 always ë‹¤ì§ 24-126-2456-2-356 always ë‹¤ì¨ 24-126-2456-26 always ë‹¤ì© 24-126-2456-12 always ë‹¤ìª 24-126-2456-12-3 always ë‹¤ì« 24-126-2456-3 always ë‹¤ì¬ 24-126-2456-34 always ë‹¤ì­ 24-126-2456-2356 always ë‹¤ì® 24-126-2456-13 always ë‹¤ì¯ 24-126-2456-23 always ë‹¤ì° 24-126-2456-235 always ë‹¤ì± 24-126-2456-236 always ë‹¤ì² 24-126-2456-256 always ë‹¤ì³ 24-126-2456-356 always ë‹¤ì´ 24-126-135 always ë‹¤ìµ 24-126-135-1 always ë‹¤ì¶ 24-126-135-1-1 always ë‹¤ì· 24-126-135-1-3 always ë‹¤ì¸ 24-126-12345 always ë‹¤ì¹ 24-126-12345-13 always ë‹¤ìº 24-126-12345-356 always ë‹¤ì» 24-126-135-35 always ë‹¤ì¼ 24-126-135-2 always ë‹¤ì½ 24-126-135-2-1 always ë‹¤ì¾ 24-126-135-2-26 always ë‹¤ì¿ 24-126-135-2-12 always 다잀 24-126-135-2-3 always ë‹¤ìž 24-126-135-2-236 always 다잂 24-126-135-2-256 always 다잃 24-126-135-2-356 always 다임 24-126-135-26 always 다입 24-126-135-12 always 다잆 24-126-135-12-3 always 다잇 24-126-135-3 always 다있 24-126-135-34 always 다잉 24-126-135-2356 always 다잊 24-126-135-13 always 다잋 24-126-135-23 always 다잌 24-126-135-235 always ë‹¤ìž 24-126-135-236 always 다잎 24-126-135-256 always ë‹¤ìž 24-126-135-356 always ë”°ì•„ 6-24-126-126 always ë”°ì•… 6-24-126-126-1 always 따앆 6-24-126-126-1-1 always 따앇 6-24-126-126-1-3 always 따안 6-24-126-126-25 always 따앉 6-24-126-126-25-13 always 따않 6-24-126-126-25-356 always ë”°ì•‹ 6-24-126-126-35 always 따알 6-24-126-126-2 always ë”°ì• 6-24-126-126-2-1 always 따앎 6-24-126-126-2-26 always ë”°ì• 6-24-126-126-2-12 always ë”°ì• 6-24-126-126-2-3 always ë”°ì•‘ 6-24-126-126-2-236 always ë”°ì•’ 6-24-126-126-2-256 always ë”°ì•“ 6-24-126-126-2-356 always ë”°ì•” 6-24-126-126-26 always ë”°ì•• 6-24-126-126-12 always ë”°ì•– 6-24-126-126-12-3 always ë”°ì•— 6-24-126-126-3 always 따았 6-24-126-126-34 always ë”°ì•™ 6-24-126-126-2356 always 따앚 6-24-126-126-13 always ë”°ì•› 6-24-126-126-23 always 따앜 6-24-126-126-235 always ë”°ì• 6-24-126-126-236 always 따앞 6-24-126-126-256 always 따앟 6-24-126-126-356 always ë”°ì•  6-24-126-1235 always ë”°ì•¡ 6-24-126-1235-1 always ë”°ì•¢ 6-24-126-1235-1-1 always ë”°ì•£ 6-24-126-1235-1-3 always 따앤 6-24-126-1235-25 always ë”°ì•¥ 6-24-126-1235-25-13 always 따앦 6-24-126-1235-25-356 always ë”°ì•§ 6-24-126-1235-35 always 따앨 6-24-126-1235-2 always ë”°ì•© 6-24-126-1235-2-1 always 따앪 6-24-126-1235-2-26 always ë”°ì•« 6-24-126-1235-2-12 always 따앬 6-24-126-1235-2-3 always ë”°ì•­ 6-24-126-1235-2-236 always ë”°ì•® 6-24-126-1235-2-256 always 따앯 6-24-126-1235-2-356 always ë”°ì•° 6-24-126-1235-26 always 따앱 6-24-126-1235-12 always 따앲 6-24-126-1235-12-3 always 따앳 6-24-126-1235-3 always ë”°ì•´ 6-24-126-1235-34 always 따앵 6-24-126-1235-2356 always ë”°ì•¶ 6-24-126-1235-13 always ë”°ì•· 6-24-126-1235-23 always 따앸 6-24-126-1235-235 always 따앹 6-24-126-1235-236 always 따앺 6-24-126-1235-256 always ë”°ì•» 6-24-126-1235-356 always 따야 6-24-126-345 always 따약 6-24-126-345-1 always 따앾 6-24-126-345-1-1 always ë”°ì•¿ 6-24-126-345-1-3 always ë”°ì–€ 6-24-126-345-25 always ë”°ì– 6-24-126-345-25-13 always ë”°ì–‚ 6-24-126-345-25-356 always ë”°ì–ƒ 6-24-126-345-35 always ë”°ì–„ 6-24-126-345-2 always ë”°ì–… 6-24-126-345-2-1 always ë”°ì–† 6-24-126-345-2-26 always ë”°ì–‡ 6-24-126-345-2-12 always ë”°ì–ˆ 6-24-126-345-2-3 always ë”°ì–‰ 6-24-126-345-2-236 always ë”°ì–Š 6-24-126-345-2-256 always ë”°ì–‹ 6-24-126-345-2-356 always ë”°ì–Œ 6-24-126-345-26 always ë”°ì– 6-24-126-345-12 always ë”°ì–Ž 6-24-126-345-12-3 always ë”°ì– 6-24-126-345-3 always ë”°ì– 6-24-126-345-34 always ë”°ì–‘ 6-24-126-345-2356 always ë”°ì–’ 6-24-126-345-13 always ë”°ì–“ 6-24-126-345-23 always ë”°ì–” 6-24-126-345-235 always ë”°ì–• 6-24-126-345-236 always ë”°ì–– 6-24-126-345-256 always ë”°ì–— 6-24-126-345-356 always ë”°ì–˜ 6-24-126-345-1235 always ë”°ì–™ 6-24-126-345-1235-1 always ë”°ì–š 6-24-126-345-1235-1-1 always ë”°ì–› 6-24-126-345-1235-1-3 always ë”°ì–œ 6-24-126-345-1235-25 always ë”°ì– 6-24-126-345-1235-25-13 always ë”°ì–ž 6-24-126-345-1235-25-356 always ë”°ì–Ÿ 6-24-126-345-1235-35 always ë”°ì–  6-24-126-345-1235-2 always ë”°ì–¡ 6-24-126-345-1235-2-1 always ë”°ì–¢ 6-24-126-345-1235-2-26 always ë”°ì–£ 6-24-126-345-1235-2-12 always ë”°ì–¤ 6-24-126-345-1235-2-3 always ë”°ì–¥ 6-24-126-345-1235-2-236 always ë”°ì–¦ 6-24-126-345-1235-2-256 always ë”°ì–§ 6-24-126-345-1235-2-356 always ë”°ì–¨ 6-24-126-345-1235-26 always ë”°ì–© 6-24-126-345-1235-12 always ë”°ì–ª 6-24-126-345-1235-12-3 always ë”°ì–« 6-24-126-345-1235-3 always ë”°ì–¬ 6-24-126-345-1235-34 always ë”°ì–­ 6-24-126-345-1235-2356 always ë”°ì–® 6-24-126-345-1235-13 always ë”°ì–¯ 6-24-126-345-1235-23 always ë”°ì–° 6-24-126-345-1235-235 always ë”°ì–± 6-24-126-345-1235-236 always ë”°ì–² 6-24-126-345-1235-256 always ë”°ì–³ 6-24-126-345-1235-356 always ë”°ì–´ 6-24-126-234 always ë”°ì–µ 6-24-126-1456 always ë”°ì–¶ 6-24-126-1456-1 always ë”°ì–· 6-24-126-1456-3 always ë”°ì–¸ 6-24-126-23456 always ë”°ì–¹ 6-24-126-23456-13 always ë”°ì–º 6-24-126-23456-356 always ë”°ì–» 6-24-126-234-35 always ë”°ì–¼ 6-24-126-2345 always ë”°ì–½ 6-24-126-2345-1 always ë”°ì–¾ 6-24-126-2345-26 always ë”°ì–¿ 6-24-126-2345-12 always ë”°ì—€ 6-24-126-2345-3 always ë”°ì— 6-24-126-2345-236 always ë”°ì—‚ 6-24-126-2345-256 always ë”°ì—ƒ 6-24-126-2345-356 always ë”°ì—„ 6-24-126-234-26 always ë”°ì—… 6-24-126-234-12 always ë”°ì—† 6-24-126-234-12-3 always ë”°ì—‡ 6-24-126-234-3 always ë”°ì—ˆ 6-24-126-234-34 always ë”°ì—‰ 6-24-126-234-2356 always ë”°ì—Š 6-24-126-234-13 always ë”°ì—‹ 6-24-126-234-23 always ë”°ì—Œ 6-24-126-234-235 always ë”°ì— 6-24-126-234-236 always ë”°ì—Ž 6-24-126-234-256 always ë”°ì— 6-24-126-234-356 always ë”°ì— 6-24-126-1345 always ë”°ì—‘ 6-24-126-1345-1 always ë”°ì—’ 6-24-126-1345-1-1 always ë”°ì—“ 6-24-126-1345-1-3 always ë”°ì—” 6-24-126-1345-25 always ë”°ì—• 6-24-126-1345-25-13 always ë”°ì—– 6-24-126-1345-25-356 always ë”°ì—— 6-24-126-1345-35 always ë”°ì—˜ 6-24-126-1345-2 always ë”°ì—™ 6-24-126-1345-2-1 always ë”°ì—š 6-24-126-1345-2-26 always ë”°ì—› 6-24-126-1345-2-12 always ë”°ì—œ 6-24-126-1345-2-3 always ë”°ì— 6-24-126-1345-2-236 always ë”°ì—ž 6-24-126-1345-2-256 always ë”°ì—Ÿ 6-24-126-1345-2-356 always ë”°ì—  6-24-126-1345-26 always ë”°ì—¡ 6-24-126-1345-12 always ë”°ì—¢ 6-24-126-1345-12-3 always ë”°ì—£ 6-24-126-1345-3 always ë”°ì—¤ 6-24-126-1345-34 always ë”°ì—¥ 6-24-126-1345-2356 always ë”°ì—¦ 6-24-126-1345-13 always ë”°ì—§ 6-24-126-1345-23 always ë”°ì—¨ 6-24-126-1345-235 always ë”°ì—© 6-24-126-1345-236 always ë”°ì—ª 6-24-126-1345-256 always ë”°ì—« 6-24-126-1345-356 always ë”°ì—¬ 6-24-126-156 always ë”°ì—­ 6-24-126-156-1 always ë”°ì—® 6-24-126-156-1-1 always ë”°ì—¯ 6-24-126-156-1-3 always ë”°ì—° 6-24-126-16 always ë”°ì—± 6-24-126-16-13 always ë”°ì—² 6-24-126-16-356 always ë”°ì—´ 6-24-126-1256 always ë”°ì—µ 6-24-126-1256-1 always ë”°ì—¶ 6-24-126-1256-26 always ë”°ì—· 6-24-126-1256-12 always ë”°ì—¸ 6-24-126-1256-3 always ë”°ì—¹ 6-24-126-1256-236 always ë”°ì—º 6-24-126-1256-256 always ë”°ì—» 6-24-126-1256-356 always ë”°ì—¼ 6-24-126-156-26 always ë”°ì—½ 6-24-126-156-12 always ë”°ì—¾ 6-24-126-156-12-3 always ë”°ì—¿ 6-24-126-156-3 always 따였 6-24-126-156-34 always ë”°ì˜ 6-24-126-12456 always 따옂 6-24-126-156-13 always 따옃 6-24-126-156-23 always 따옄 6-24-126-156-235 always 따옅 6-24-126-156-236 always 따옆 6-24-126-156-256 always 따옇 6-24-126-156-356 always 따예 6-24-126-34 always 따옉 6-24-126-34-1 always 따옊 6-24-126-34-1-1 always 따옋 6-24-126-34-1-3 always 따옌 6-24-126-34-25 always ë”°ì˜ 6-24-126-34-25-13 always 따옎 6-24-126-34-25-356 always ë”°ì˜ 6-24-126-34-35 always ë”°ì˜ 6-24-126-34-2 always 따옑 6-24-126-34-2-1 always 따옒 6-24-126-34-2-26 always 따옓 6-24-126-34-2-12 always 따옔 6-24-126-34-2-3 always 따옕 6-24-126-34-2-236 always 따옖 6-24-126-34-2-256 always 따옗 6-24-126-34-2-356 always 따옘 6-24-126-34-26 always 따옙 6-24-126-34-12 always 따옚 6-24-126-34-12-3 always 따옛 6-24-126-34-3 always 따옜 6-24-126-34-34 always ë”°ì˜ 6-24-126-34-2356 always 따옞 6-24-126-34-13 always 따옟 6-24-126-34-23 always 따옠 6-24-126-34-235 always 따옡 6-24-126-34-236 always 따옢 6-24-126-34-256 always 따옣 6-24-126-34-356 always 따오 6-24-126-136 always 따옥 6-24-126-1346 always 따옦 6-24-126-1346-1 always 따옧 6-24-126-1346-3 always 따온 6-24-126-12356 always 따옩 6-24-126-12356-13 always 따옪 6-24-126-12356-356 always 따옫 6-24-126-136-35 always 따올 6-24-126-136-2 always 따옭 6-24-126-136-2-1 always 따옮 6-24-126-136-2-26 always 따옯 6-24-126-136-2-12 always 따옰 6-24-126-136-2-3 always 따옱 6-24-126-136-2-236 always 따옲 6-24-126-136-2-256 always 따옳 6-24-126-136-2-356 always 따옴 6-24-126-136-26 always 따옵 6-24-126-136-12 always 따옶 6-24-126-136-12-3 always 따옷 6-24-126-136-3 always 따옸 6-24-126-136-34 always 따옹 6-24-126-123456 always 따옺 6-24-126-136-13 always 따옻 6-24-126-136-23 always 따옼 6-24-126-136-235 always 따옽 6-24-126-136-236 always 따옾 6-24-126-136-256 always 따옿 6-24-126-136-356 always 따와 6-24-126-1236 always ë”°ì™ 6-24-126-1236-1 always 따왂 6-24-126-1236-1-1 always 따왃 6-24-126-1236-1-3 always 따완 6-24-126-1236-25 always ë”°ì™… 6-24-126-1236-25-13 always 따왆 6-24-126-1236-25-356 always 따왇 6-24-126-1236-35 always 따왈 6-24-126-1236-2 always 따왉 6-24-126-1236-2-1 always 따왊 6-24-126-1236-2-26 always 따왋 6-24-126-1236-2-12 always 따왌 6-24-126-1236-2-3 always ë”°ì™ 6-24-126-1236-2-236 always 따왎 6-24-126-1236-2-256 always ë”°ì™ 6-24-126-1236-2-356 always ë”°ì™ 6-24-126-1236-26 always 따왑 6-24-126-1236-12 always ë”°ì™’ 6-24-126-1236-12-3 always 따왓 6-24-126-1236-3 always ë”°ì™” 6-24-126-1236-34 always 따왕 6-24-126-1236-2356 always ë”°ì™– 6-24-126-1236-13 always ë”°ì™— 6-24-126-1236-23 always 따왘 6-24-126-1236-235 always ë”°ì™™ 6-24-126-1236-236 always 따왚 6-24-126-1236-256 always ë”°ì™› 6-24-126-1236-356 always 따왜 6-24-126-1236-1235 always ë”°ì™ 6-24-126-1236-1235-1 always 따왞 6-24-126-1236-1235-1-1 always 따왟 6-24-126-1236-1235-1-3 always ë”°ì™  6-24-126-1236-1235-25 always 따왡 6-24-126-1236-1235-25-13 always 따왢 6-24-126-1236-1235-25-356 always 따왣 6-24-126-1236-1235-35 always 따왤 6-24-126-1236-1235-2 always 따왥 6-24-126-1236-1235-2-1 always 따왦 6-24-126-1236-1235-2-26 always ë”°ì™§ 6-24-126-1236-1235-2-12 always 따왨 6-24-126-1236-1235-2-3 always 따왩 6-24-126-1236-1235-2-236 always 따왪 6-24-126-1236-1235-2-256 always 따왫 6-24-126-1236-1235-2-356 always 따왬 6-24-126-1236-1235-26 always ë”°ì™­ 6-24-126-1236-1235-12 always ë”°ì™® 6-24-126-1236-1235-12-3 always 따왯 6-24-126-1236-1235-3 always ë”°ì™° 6-24-126-1236-1235-34 always ë”°ì™± 6-24-126-1236-1235-2356 always 따왲 6-24-126-1236-1235-13 always 따왳 6-24-126-1236-1235-23 always ë”°ì™´ 6-24-126-1236-1235-235 always 따왵 6-24-126-1236-1235-236 always ë”°ì™¶ 6-24-126-1236-1235-256 always ë”°ì™· 6-24-126-1236-1235-356 always 따외 6-24-126-13456 always 따왹 6-24-126-13456-1 always 따왺 6-24-126-13456-1-1 always ë”°ì™» 6-24-126-13456-1-3 always 따왼 6-24-126-13456-25 always 따왽 6-24-126-13456-25-13 always 따왾 6-24-126-13456-25-356 always 따왿 6-24-126-13456-35 always 따욀 6-24-126-13456-2 always ë”°ìš 6-24-126-13456-2-1 always ë”°ìš‚ 6-24-126-13456-2-26 always 따욃 6-24-126-13456-2-12 always ë”°ìš„ 6-24-126-13456-2-3 always ë”°ìš… 6-24-126-13456-2-236 always 따욆 6-24-126-13456-2-256 always 따욇 6-24-126-13456-2-356 always 따욈 6-24-126-13456-26 always 따욉 6-24-126-13456-12 always 따욊 6-24-126-13456-12-3 always ë”°ìš‹ 6-24-126-13456-3 always 따욌 6-24-126-13456-34 always ë”°ìš 6-24-126-13456-2356 always 따욎 6-24-126-13456-13 always ë”°ìš 6-24-126-13456-23 always ë”°ìš 6-24-126-13456-235 always ë”°ìš‘ 6-24-126-13456-236 always ë”°ìš’ 6-24-126-13456-256 always ë”°ìš“ 6-24-126-13456-356 always ë”°ìš” 6-24-126-346 always ë”°ìš• 6-24-126-346-1 always ë”°ìš– 6-24-126-346-1-1 always ë”°ìš— 6-24-126-346-1-3 always 따욘 6-24-126-346-25 always ë”°ìš™ 6-24-126-346-25-13 always ë”°ìšš 6-24-126-346-25-356 always ë”°ìš› 6-24-126-346-35 always ë”°ìšœ 6-24-126-346-2 always ë”°ìš 6-24-126-346-2-1 always ë”°ìšž 6-24-126-346-2-26 always 따욟 6-24-126-346-2-12 always ë”°ìš  6-24-126-346-2-3 always ë”°ìš¡ 6-24-126-346-2-236 always 따욢 6-24-126-346-2-256 always 따욣 6-24-126-346-2-356 always 따욤 6-24-126-346-26 always 따욥 6-24-126-346-12 always 따욦 6-24-126-346-12-3 always ë”°ìš§ 6-24-126-346-3 always 따욨 6-24-126-346-34 always ë”°ìš© 6-24-126-346-2356 always 따욪 6-24-126-346-13 always ë”°ìš« 6-24-126-346-23 always 따욬 6-24-126-346-235 always ë”°ìš­ 6-24-126-346-236 always ë”°ìš® 6-24-126-346-256 always 따욯 6-24-126-346-356 always ë”°ìš° 6-24-126-134 always ë”°ìš± 6-24-126-134-1 always ë”°ìš² 6-24-126-134-1-1 always ë”°ìš³ 6-24-126-134-1-3 always ë”°ìš´ 6-24-126-1245 always ë”°ìšµ 6-24-126-1245-13 always ë”°ìš¶ 6-24-126-1245-356 always ë”°ìš· 6-24-126-134-35 always 따울 6-24-126-12346 always ë”°ìš¹ 6-24-126-12346-1 always 따욺 6-24-126-12346-26 always ë”°ìš» 6-24-126-12346-12 always ë”°ìš¼ 6-24-126-12346-3 always ë”°ìš½ 6-24-126-12346-236 always ë”°ìš¾ 6-24-126-12346-256 always ë”°ìš¿ 6-24-126-12346-356 always 따움 6-24-126-134-26 always ë”°ì› 6-24-126-134-12 always 따웂 6-24-126-134-12-3 always 따웃 6-24-126-134-3 always 따웄 6-24-126-134-34 always ë”°ì›… 6-24-126-134-2356 always 따웆 6-24-126-134-13 always 따웇 6-24-126-134-23 always 따웈 6-24-126-134-235 always 따웉 6-24-126-134-236 always 따웊 6-24-126-134-256 always 따웋 6-24-126-134-356 always 따워 6-24-126-1234 always ë”°ì› 6-24-126-1234-1 always 따웎 6-24-126-1234-1-1 always ë”°ì› 6-24-126-1234-1-3 always ë”°ì› 6-24-126-1234-25 always 따웑 6-24-126-1234-25-13 always ë”°ì›’ 6-24-126-1234-25-356 always 따웓 6-24-126-1234-35 always ë”°ì›” 6-24-126-1234-2 always 따웕 6-24-126-1234-2-1 always ë”°ì›– 6-24-126-1234-2-26 always ë”°ì›— 6-24-126-1234-2-12 always 따웘 6-24-126-1234-2-3 always ë”°ì›™ 6-24-126-1234-2-236 always 따웚 6-24-126-1234-2-256 always ë”°ì›› 6-24-126-1234-2-356 always 따웜 6-24-126-1234-26 always ë”°ì› 6-24-126-1234-12 always 따웞 6-24-126-1234-12-3 always 따웟 6-24-126-1234-3 always ë”°ì›  6-24-126-1234-34 always 따웡 6-24-126-1234-2356 always 따웢 6-24-126-1234-13 always 따웣 6-24-126-1234-23 always 따웤 6-24-126-1234-235 always 따웥 6-24-126-1234-236 always 따웦 6-24-126-1234-256 always ë”°ì›§ 6-24-126-1234-356 always 따웨 6-24-126-1234-1235 always 따웩 6-24-126-1234-1235-1 always 따웪 6-24-126-1234-1235-1-1 always 따웫 6-24-126-1234-1235-1-3 always 따웬 6-24-126-1234-1235-25 always ë”°ì›­ 6-24-126-1234-1235-25-13 always ë”°ì›® 6-24-126-1234-1235-25-356 always 따웯 6-24-126-1234-1235-35 always ë”°ì›° 6-24-126-1234-1235-2 always ë”°ì›± 6-24-126-1234-1235-2-1 always 따웲 6-24-126-1234-1235-2-26 always 따웳 6-24-126-1234-1235-2-12 always ë”°ì›´ 6-24-126-1234-1235-2-3 always 따웵 6-24-126-1234-1235-2-236 always ë”°ì›¶ 6-24-126-1234-1235-2-256 always ë”°ì›· 6-24-126-1234-1235-2-356 always 따웸 6-24-126-1234-1235-26 always 따웹 6-24-126-1234-1235-12 always 따웺 6-24-126-1234-1235-12-3 always ë”°ì›» 6-24-126-1234-1235-3 always 따웼 6-24-126-1234-1235-34 always 따웽 6-24-126-1234-1235-2356 always 따웾 6-24-126-1234-1235-13 always 따웿 6-24-126-1234-1235-23 always 따윀 6-24-126-1234-1235-235 always ë”°ìœ 6-24-126-1234-1235-236 always 따윂 6-24-126-1234-1235-256 always 따윃 6-24-126-1234-1235-356 always 따위 6-24-126-134-1235 always 따윅 6-24-126-134-1235-1 always 따윆 6-24-126-134-1235-1-1 always 따윇 6-24-126-134-1235-1-3 always 따윈 6-24-126-134-1235-25 always 따윉 6-24-126-134-1235-25-13 always 따윊 6-24-126-134-1235-25-356 always 따윋 6-24-126-134-1235-35 always 따윌 6-24-126-134-1235-2 always ë”°ìœ 6-24-126-134-1235-2-1 always 따윎 6-24-126-134-1235-2-26 always ë”°ìœ 6-24-126-134-1235-2-12 always ë”°ìœ 6-24-126-134-1235-2-3 always 따윑 6-24-126-134-1235-2-236 always 따윒 6-24-126-134-1235-2-256 always 따윓 6-24-126-134-1235-2-356 always 따윔 6-24-126-134-1235-26 always 따윕 6-24-126-134-1235-12 always 따윖 6-24-126-134-1235-12-3 always 따윗 6-24-126-134-1235-3 always 따윘 6-24-126-134-1235-34 always 따윙 6-24-126-134-1235-2356 always 따윚 6-24-126-134-1235-13 always 따윛 6-24-126-134-1235-23 always 따윜 6-24-126-134-1235-235 always ë”°ìœ 6-24-126-134-1235-236 always 따윞 6-24-126-134-1235-256 always 따윟 6-24-126-134-1235-356 always 따유 6-24-126-146 always 따육 6-24-126-146-1 always 따윢 6-24-126-146-1-1 always 따윣 6-24-126-146-1-3 always 따윤 6-24-126-146-25 always 따윥 6-24-126-146-25-13 always 따윦 6-24-126-146-25-356 always 따윧 6-24-126-146-35 always 따율 6-24-126-146-2 always 따윩 6-24-126-146-2-1 always 따윪 6-24-126-146-2-26 always 따윫 6-24-126-146-2-12 always 따윬 6-24-126-146-2-3 always 따윭 6-24-126-146-2-236 always 따윮 6-24-126-146-2-256 always 따윯 6-24-126-146-2-356 always 따윰 6-24-126-146-26 always 따윱 6-24-126-146-12 always 따윲 6-24-126-146-12-3 always 따윳 6-24-126-146-3 always 따윴 6-24-126-146-34 always 따융 6-24-126-146-2356 always 따윶 6-24-126-146-13 always 따윷 6-24-126-146-23 always 따윸 6-24-126-146-235 always 따윹 6-24-126-146-236 always 따윺 6-24-126-146-256 always 따윻 6-24-126-146-356 always 따으 6-24-126-246 always 따윽 6-24-126-246-1 always 따윾 6-24-126-246-1-1 always 따윿 6-24-126-246-1-3 always ë”°ì€ 6-24-126-1356 always ë”°ì 6-24-126-1356-13 always ë”°ì‚ 6-24-126-1356-356 always ë”°ìƒ 6-24-126-246-35 always ë”°ì„ 6-24-126-2346 always ë”°ì… 6-24-126-2346-1 always ë”°ì† 6-24-126-2346-26 always ë”°ì‡ 6-24-126-2346-12 always ë”°ìˆ 6-24-126-2346-3 always ë”°ì‰ 6-24-126-2346-236 always ë”°ìŠ 6-24-126-2346-256 always ë”°ì‹ 6-24-126-2346-356 always ë”°ìŒ 6-24-126-246-26 always ë”°ì 6-24-126-246-12 always ë”°ìŽ 6-24-126-246-12-3 always ë”°ì 6-24-126-246-3 always ë”°ì 6-24-126-246-34 always ë”°ì‘ 6-24-126-246-2356 always ë”°ì’ 6-24-126-246-13 always ë”°ì“ 6-24-126-246-23 always ë”°ì” 6-24-126-246-235 always ë”°ì• 6-24-126-246-236 always ë”°ì– 6-24-126-246-256 always ë”°ì— 6-24-126-246-356 always ë”°ì˜ 6-24-126-2456 always ë”°ì™ 6-24-126-2456-1 always ë”°ìš 6-24-126-2456-1-1 always ë”°ì› 6-24-126-2456-1-3 always ë”°ìœ 6-24-126-2456-25 always ë”°ì 6-24-126-2456-25-13 always ë”°ìž 6-24-126-2456-25-356 always ë”°ìŸ 6-24-126-2456-35 always ë”°ì  6-24-126-2456-2 always ë”°ì¡ 6-24-126-2456-2-1 always ë”°ì¢ 6-24-126-2456-2-26 always ë”°ì£ 6-24-126-2456-2-12 always ë”°ì¤ 6-24-126-2456-2-3 always ë”°ì¥ 6-24-126-2456-2-236 always ë”°ì¦ 6-24-126-2456-2-256 always ë”°ì§ 6-24-126-2456-2-356 always ë”°ì¨ 6-24-126-2456-26 always ë”°ì© 6-24-126-2456-12 always ë”°ìª 6-24-126-2456-12-3 always ë”°ì« 6-24-126-2456-3 always ë”°ì¬ 6-24-126-2456-34 always ë”°ì­ 6-24-126-2456-2356 always ë”°ì® 6-24-126-2456-13 always ë”°ì¯ 6-24-126-2456-23 always ë”°ì° 6-24-126-2456-235 always ë”°ì± 6-24-126-2456-236 always ë”°ì² 6-24-126-2456-256 always ë”°ì³ 6-24-126-2456-356 always ë”°ì´ 6-24-126-135 always ë”°ìµ 6-24-126-135-1 always ë”°ì¶ 6-24-126-135-1-1 always ë”°ì· 6-24-126-135-1-3 always ë”°ì¸ 6-24-126-12345 always ë”°ì¹ 6-24-126-12345-13 always ë”°ìº 6-24-126-12345-356 always ë”°ì» 6-24-126-135-35 always ë”°ì¼ 6-24-126-135-2 always ë”°ì½ 6-24-126-135-2-1 always ë”°ì¾ 6-24-126-135-2-26 always ë”°ì¿ 6-24-126-135-2-12 always 따잀 6-24-126-135-2-3 always ë”°ìž 6-24-126-135-2-236 always ë”°ìž‚ 6-24-126-135-2-256 always 따잃 6-24-126-135-2-356 always ë”°ìž„ 6-24-126-135-26 always ë”°ìž… 6-24-126-135-12 always 따잆 6-24-126-135-12-3 always 따잇 6-24-126-135-3 always 따있 6-24-126-135-34 always 따잉 6-24-126-135-2356 always 따잊 6-24-126-135-13 always ë”°ìž‹ 6-24-126-135-23 always 따잌 6-24-126-135-235 always ë”°ìž 6-24-126-135-236 always 따잎 6-24-126-135-256 always ë”°ìž 6-24-126-135-356 always 마아 15-126-126 always 마악 15-126-126-1 always 마앆 15-126-126-1-1 always 마앇 15-126-126-1-3 always 마안 15-126-126-25 always 마앉 15-126-126-25-13 always 마않 15-126-126-25-356 always 마앋 15-126-126-35 always 마알 15-126-126-2 always ë§ˆì• 15-126-126-2-1 always 마앎 15-126-126-2-26 always ë§ˆì• 15-126-126-2-12 always ë§ˆì• 15-126-126-2-3 always 마앑 15-126-126-2-236 always 마앒 15-126-126-2-256 always 마앓 15-126-126-2-356 always 마암 15-126-126-26 always 마압 15-126-126-12 always 마앖 15-126-126-12-3 always 마앗 15-126-126-3 always 마았 15-126-126-34 always 마앙 15-126-126-2356 always 마앚 15-126-126-13 always 마앛 15-126-126-23 always 마앜 15-126-126-235 always ë§ˆì• 15-126-126-236 always 마앞 15-126-126-256 always 마앟 15-126-126-356 always 마애 15-126-1235 always 마액 15-126-1235-1 always 마앢 15-126-1235-1-1 always 마앣 15-126-1235-1-3 always 마앤 15-126-1235-25 always 마앥 15-126-1235-25-13 always 마앦 15-126-1235-25-356 always 마앧 15-126-1235-35 always 마앨 15-126-1235-2 always 마앩 15-126-1235-2-1 always 마앪 15-126-1235-2-26 always 마앫 15-126-1235-2-12 always 마앬 15-126-1235-2-3 always 마앭 15-126-1235-2-236 always 마앮 15-126-1235-2-256 always 마앯 15-126-1235-2-356 always 마앰 15-126-1235-26 always 마앱 15-126-1235-12 always 마앲 15-126-1235-12-3 always 마앳 15-126-1235-3 always 마앴 15-126-1235-34 always 마앵 15-126-1235-2356 always 마앶 15-126-1235-13 always 마앷 15-126-1235-23 always 마앸 15-126-1235-235 always 마앹 15-126-1235-236 always 마앺 15-126-1235-256 always 마앻 15-126-1235-356 always 마야 15-126-345 always 마약 15-126-345-1 always 마앾 15-126-345-1-1 always 마앿 15-126-345-1-3 always 마얀 15-126-345-25 always ë§ˆì– 15-126-345-25-13 always 마얂 15-126-345-25-356 always 마얃 15-126-345-35 always 마얄 15-126-345-2 always 마얅 15-126-345-2-1 always 마얆 15-126-345-2-26 always 마얇 15-126-345-2-12 always 마얈 15-126-345-2-3 always 마얉 15-126-345-2-236 always 마얊 15-126-345-2-256 always 마얋 15-126-345-2-356 always 마얌 15-126-345-26 always ë§ˆì– 15-126-345-12 always 마얎 15-126-345-12-3 always ë§ˆì– 15-126-345-3 always ë§ˆì– 15-126-345-34 always 마양 15-126-345-2356 always 마얒 15-126-345-13 always 마얓 15-126-345-23 always 마얔 15-126-345-235 always 마얕 15-126-345-236 always 마얖 15-126-345-256 always 마얗 15-126-345-356 always 마얘 15-126-345-1235 always 마얙 15-126-345-1235-1 always 마얚 15-126-345-1235-1-1 always 마얛 15-126-345-1235-1-3 always 마얜 15-126-345-1235-25 always ë§ˆì– 15-126-345-1235-25-13 always 마얞 15-126-345-1235-25-356 always 마얟 15-126-345-1235-35 always 마얠 15-126-345-1235-2 always 마얡 15-126-345-1235-2-1 always 마얢 15-126-345-1235-2-26 always 마얣 15-126-345-1235-2-12 always 마얤 15-126-345-1235-2-3 always 마얥 15-126-345-1235-2-236 always 마얦 15-126-345-1235-2-256 always 마얧 15-126-345-1235-2-356 always 마얨 15-126-345-1235-26 always 마얩 15-126-345-1235-12 always 마얪 15-126-345-1235-12-3 always 마얫 15-126-345-1235-3 always 마얬 15-126-345-1235-34 always 마얭 15-126-345-1235-2356 always 마얮 15-126-345-1235-13 always 마얯 15-126-345-1235-23 always 마얰 15-126-345-1235-235 always 마얱 15-126-345-1235-236 always 마얲 15-126-345-1235-256 always 마얳 15-126-345-1235-356 always 마어 15-126-234 always 마억 15-126-1456 always 마얶 15-126-1456-1 always 마얷 15-126-1456-3 always 마언 15-126-23456 always 마얹 15-126-23456-13 always 마얺 15-126-23456-356 always 마얻 15-126-234-35 always 마얼 15-126-2345 always 마얽 15-126-2345-1 always 마얾 15-126-2345-26 always 마얿 15-126-2345-12 always 마엀 15-126-2345-3 always ë§ˆì— 15-126-2345-236 always 마엂 15-126-2345-256 always 마엃 15-126-2345-356 always 마엄 15-126-234-26 always 마업 15-126-234-12 always 마없 15-126-234-12-3 always 마엇 15-126-234-3 always 마었 15-126-234-34 always 마엉 15-126-234-2356 always 마엊 15-126-234-13 always 마엋 15-126-234-23 always 마엌 15-126-234-235 always ë§ˆì— 15-126-234-236 always 마엎 15-126-234-256 always ë§ˆì— 15-126-234-356 always ë§ˆì— 15-126-1345 always 마엑 15-126-1345-1 always 마엒 15-126-1345-1-1 always 마엓 15-126-1345-1-3 always 마엔 15-126-1345-25 always 마엕 15-126-1345-25-13 always 마엖 15-126-1345-25-356 always 마엗 15-126-1345-35 always 마엘 15-126-1345-2 always 마엙 15-126-1345-2-1 always 마엚 15-126-1345-2-26 always 마엛 15-126-1345-2-12 always 마엜 15-126-1345-2-3 always ë§ˆì— 15-126-1345-2-236 always 마엞 15-126-1345-2-256 always 마엟 15-126-1345-2-356 always 마엠 15-126-1345-26 always 마엡 15-126-1345-12 always 마엢 15-126-1345-12-3 always 마엣 15-126-1345-3 always 마엤 15-126-1345-34 always 마엥 15-126-1345-2356 always 마엦 15-126-1345-13 always 마엧 15-126-1345-23 always 마엨 15-126-1345-235 always 마엩 15-126-1345-236 always 마엪 15-126-1345-256 always 마엫 15-126-1345-356 always 마여 15-126-156 always 마역 15-126-156-1 always 마엮 15-126-156-1-1 always 마엯 15-126-156-1-3 always 마연 15-126-16 always 마엱 15-126-16-13 always 마엲 15-126-16-356 always 마열 15-126-1256 always 마엵 15-126-1256-1 always 마엶 15-126-1256-26 always 마엷 15-126-1256-12 always 마엸 15-126-1256-3 always 마엹 15-126-1256-236 always 마엺 15-126-1256-256 always 마엻 15-126-1256-356 always 마염 15-126-156-26 always 마엽 15-126-156-12 always 마엾 15-126-156-12-3 always 마엿 15-126-156-3 always 마였 15-126-156-34 always ë§ˆì˜ 15-126-12456 always 마옂 15-126-156-13 always 마옃 15-126-156-23 always 마옄 15-126-156-235 always 마옅 15-126-156-236 always 마옆 15-126-156-256 always 마옇 15-126-156-356 always 마예 15-126-34 always 마옉 15-126-34-1 always 마옊 15-126-34-1-1 always 마옋 15-126-34-1-3 always 마옌 15-126-34-25 always ë§ˆì˜ 15-126-34-25-13 always 마옎 15-126-34-25-356 always ë§ˆì˜ 15-126-34-35 always ë§ˆì˜ 15-126-34-2 always 마옑 15-126-34-2-1 always 마옒 15-126-34-2-26 always 마옓 15-126-34-2-12 always 마옔 15-126-34-2-3 always 마옕 15-126-34-2-236 always 마옖 15-126-34-2-256 always 마옗 15-126-34-2-356 always 마옘 15-126-34-26 always 마옙 15-126-34-12 always 마옚 15-126-34-12-3 always 마옛 15-126-34-3 always 마옜 15-126-34-34 always ë§ˆì˜ 15-126-34-2356 always 마옞 15-126-34-13 always 마옟 15-126-34-23 always 마옠 15-126-34-235 always 마옡 15-126-34-236 always 마옢 15-126-34-256 always 마옣 15-126-34-356 always 마오 15-126-136 always 마옥 15-126-1346 always 마옦 15-126-1346-1 always 마옧 15-126-1346-3 always 마온 15-126-12356 always 마옩 15-126-12356-13 always 마옪 15-126-12356-356 always 마옫 15-126-136-35 always 마올 15-126-136-2 always 마옭 15-126-136-2-1 always 마옮 15-126-136-2-26 always 마옯 15-126-136-2-12 always 마옰 15-126-136-2-3 always 마옱 15-126-136-2-236 always 마옲 15-126-136-2-256 always 마옳 15-126-136-2-356 always 마옴 15-126-136-26 always 마옵 15-126-136-12 always 마옶 15-126-136-12-3 always 마옷 15-126-136-3 always 마옸 15-126-136-34 always 마옹 15-126-123456 always 마옺 15-126-136-13 always 마옻 15-126-136-23 always 마옼 15-126-136-235 always 마옽 15-126-136-236 always 마옾 15-126-136-256 always 마옿 15-126-136-356 always 마와 15-126-1236 always ë§ˆì™ 15-126-1236-1 always 마왂 15-126-1236-1-1 always 마왃 15-126-1236-1-3 always 마완 15-126-1236-25 always 마왅 15-126-1236-25-13 always 마왆 15-126-1236-25-356 always 마왇 15-126-1236-35 always 마왈 15-126-1236-2 always 마왉 15-126-1236-2-1 always 마왊 15-126-1236-2-26 always 마왋 15-126-1236-2-12 always 마왌 15-126-1236-2-3 always ë§ˆì™ 15-126-1236-2-236 always 마왎 15-126-1236-2-256 always ë§ˆì™ 15-126-1236-2-356 always ë§ˆì™ 15-126-1236-26 always 마왑 15-126-1236-12 always 마왒 15-126-1236-12-3 always 마왓 15-126-1236-3 always 마왔 15-126-1236-34 always 마왕 15-126-1236-2356 always 마왖 15-126-1236-13 always 마왗 15-126-1236-23 always 마왘 15-126-1236-235 always 마왙 15-126-1236-236 always 마왚 15-126-1236-256 always 마왛 15-126-1236-356 always 마왜 15-126-1236-1235 always ë§ˆì™ 15-126-1236-1235-1 always 마왞 15-126-1236-1235-1-1 always 마왟 15-126-1236-1235-1-3 always 마왠 15-126-1236-1235-25 always 마왡 15-126-1236-1235-25-13 always 마왢 15-126-1236-1235-25-356 always 마왣 15-126-1236-1235-35 always 마왤 15-126-1236-1235-2 always 마왥 15-126-1236-1235-2-1 always 마왦 15-126-1236-1235-2-26 always 마왧 15-126-1236-1235-2-12 always 마왨 15-126-1236-1235-2-3 always 마왩 15-126-1236-1235-2-236 always 마왪 15-126-1236-1235-2-256 always 마왫 15-126-1236-1235-2-356 always 마왬 15-126-1236-1235-26 always 마왭 15-126-1236-1235-12 always 마왮 15-126-1236-1235-12-3 always 마왯 15-126-1236-1235-3 always 마왰 15-126-1236-1235-34 always 마왱 15-126-1236-1235-2356 always 마왲 15-126-1236-1235-13 always 마왳 15-126-1236-1235-23 always 마왴 15-126-1236-1235-235 always 마왵 15-126-1236-1235-236 always 마왶 15-126-1236-1235-256 always 마왷 15-126-1236-1235-356 always 마외 15-126-13456 always 마왹 15-126-13456-1 always 마왺 15-126-13456-1-1 always 마왻 15-126-13456-1-3 always 마왼 15-126-13456-25 always 마왽 15-126-13456-25-13 always 마왾 15-126-13456-25-356 always 마왿 15-126-13456-35 always 마욀 15-126-13456-2 always ë§ˆìš 15-126-13456-2-1 always 마욂 15-126-13456-2-26 always 마욃 15-126-13456-2-12 always 마욄 15-126-13456-2-3 always 마욅 15-126-13456-2-236 always 마욆 15-126-13456-2-256 always 마욇 15-126-13456-2-356 always 마욈 15-126-13456-26 always 마욉 15-126-13456-12 always 마욊 15-126-13456-12-3 always 마욋 15-126-13456-3 always 마욌 15-126-13456-34 always ë§ˆìš 15-126-13456-2356 always 마욎 15-126-13456-13 always ë§ˆìš 15-126-13456-23 always ë§ˆìš 15-126-13456-235 always 마욑 15-126-13456-236 always 마욒 15-126-13456-256 always 마욓 15-126-13456-356 always 마요 15-126-346 always 마욕 15-126-346-1 always 마욖 15-126-346-1-1 always 마욗 15-126-346-1-3 always 마욘 15-126-346-25 always 마욙 15-126-346-25-13 always 마욚 15-126-346-25-356 always 마욛 15-126-346-35 always 마욜 15-126-346-2 always ë§ˆìš 15-126-346-2-1 always 마욞 15-126-346-2-26 always 마욟 15-126-346-2-12 always 마욠 15-126-346-2-3 always 마욡 15-126-346-2-236 always 마욢 15-126-346-2-256 always 마욣 15-126-346-2-356 always 마욤 15-126-346-26 always 마욥 15-126-346-12 always 마욦 15-126-346-12-3 always 마욧 15-126-346-3 always 마욨 15-126-346-34 always 마용 15-126-346-2356 always 마욪 15-126-346-13 always 마욫 15-126-346-23 always 마욬 15-126-346-235 always 마욭 15-126-346-236 always 마욮 15-126-346-256 always 마욯 15-126-346-356 always 마우 15-126-134 always 마욱 15-126-134-1 always 마욲 15-126-134-1-1 always 마욳 15-126-134-1-3 always 마운 15-126-1245 always 마욵 15-126-1245-13 always 마욶 15-126-1245-356 always 마욷 15-126-134-35 always 마울 15-126-12346 always 마욹 15-126-12346-1 always 마욺 15-126-12346-26 always 마욻 15-126-12346-12 always 마욼 15-126-12346-3 always 마욽 15-126-12346-236 always 마욾 15-126-12346-256 always 마욿 15-126-12346-356 always 마움 15-126-134-26 always ë§ˆì› 15-126-134-12 always 마웂 15-126-134-12-3 always 마웃 15-126-134-3 always 마웄 15-126-134-34 always 마웅 15-126-134-2356 always 마웆 15-126-134-13 always 마웇 15-126-134-23 always 마웈 15-126-134-235 always 마웉 15-126-134-236 always 마웊 15-126-134-256 always 마웋 15-126-134-356 always 마워 15-126-1234 always ë§ˆì› 15-126-1234-1 always 마웎 15-126-1234-1-1 always ë§ˆì› 15-126-1234-1-3 always ë§ˆì› 15-126-1234-25 always 마웑 15-126-1234-25-13 always 마웒 15-126-1234-25-356 always 마웓 15-126-1234-35 always 마월 15-126-1234-2 always 마웕 15-126-1234-2-1 always 마웖 15-126-1234-2-26 always 마웗 15-126-1234-2-12 always 마웘 15-126-1234-2-3 always 마웙 15-126-1234-2-236 always 마웚 15-126-1234-2-256 always 마웛 15-126-1234-2-356 always 마웜 15-126-1234-26 always ë§ˆì› 15-126-1234-12 always 마웞 15-126-1234-12-3 always 마웟 15-126-1234-3 always 마웠 15-126-1234-34 always 마웡 15-126-1234-2356 always 마웢 15-126-1234-13 always 마웣 15-126-1234-23 always 마웤 15-126-1234-235 always 마웥 15-126-1234-236 always 마웦 15-126-1234-256 always 마웧 15-126-1234-356 always 마웨 15-126-1234-1235 always 마웩 15-126-1234-1235-1 always 마웪 15-126-1234-1235-1-1 always 마웫 15-126-1234-1235-1-3 always 마웬 15-126-1234-1235-25 always 마웭 15-126-1234-1235-25-13 always 마웮 15-126-1234-1235-25-356 always 마웯 15-126-1234-1235-35 always 마웰 15-126-1234-1235-2 always 마웱 15-126-1234-1235-2-1 always 마웲 15-126-1234-1235-2-26 always 마웳 15-126-1234-1235-2-12 always 마웴 15-126-1234-1235-2-3 always 마웵 15-126-1234-1235-2-236 always 마웶 15-126-1234-1235-2-256 always 마웷 15-126-1234-1235-2-356 always 마웸 15-126-1234-1235-26 always 마웹 15-126-1234-1235-12 always 마웺 15-126-1234-1235-12-3 always 마웻 15-126-1234-1235-3 always 마웼 15-126-1234-1235-34 always 마웽 15-126-1234-1235-2356 always 마웾 15-126-1234-1235-13 always 마웿 15-126-1234-1235-23 always 마윀 15-126-1234-1235-235 always ë§ˆìœ 15-126-1234-1235-236 always 마윂 15-126-1234-1235-256 always 마윃 15-126-1234-1235-356 always 마위 15-126-134-1235 always 마윅 15-126-134-1235-1 always 마윆 15-126-134-1235-1-1 always 마윇 15-126-134-1235-1-3 always 마윈 15-126-134-1235-25 always 마윉 15-126-134-1235-25-13 always 마윊 15-126-134-1235-25-356 always 마윋 15-126-134-1235-35 always 마윌 15-126-134-1235-2 always ë§ˆìœ 15-126-134-1235-2-1 always 마윎 15-126-134-1235-2-26 always ë§ˆìœ 15-126-134-1235-2-12 always ë§ˆìœ 15-126-134-1235-2-3 always 마윑 15-126-134-1235-2-236 always 마윒 15-126-134-1235-2-256 always 마윓 15-126-134-1235-2-356 always 마윔 15-126-134-1235-26 always 마윕 15-126-134-1235-12 always 마윖 15-126-134-1235-12-3 always 마윗 15-126-134-1235-3 always 마윘 15-126-134-1235-34 always 마윙 15-126-134-1235-2356 always 마윚 15-126-134-1235-13 always 마윛 15-126-134-1235-23 always 마윜 15-126-134-1235-235 always ë§ˆìœ 15-126-134-1235-236 always 마윞 15-126-134-1235-256 always 마윟 15-126-134-1235-356 always 마유 15-126-146 always 마육 15-126-146-1 always 마윢 15-126-146-1-1 always 마윣 15-126-146-1-3 always 마윤 15-126-146-25 always 마윥 15-126-146-25-13 always 마윦 15-126-146-25-356 always 마윧 15-126-146-35 always 마율 15-126-146-2 always 마윩 15-126-146-2-1 always 마윪 15-126-146-2-26 always 마윫 15-126-146-2-12 always 마윬 15-126-146-2-3 always 마윭 15-126-146-2-236 always 마윮 15-126-146-2-256 always 마윯 15-126-146-2-356 always 마윰 15-126-146-26 always 마윱 15-126-146-12 always 마윲 15-126-146-12-3 always 마윳 15-126-146-3 always 마윴 15-126-146-34 always 마융 15-126-146-2356 always 마윶 15-126-146-13 always 마윷 15-126-146-23 always 마윸 15-126-146-235 always 마윹 15-126-146-236 always 마윺 15-126-146-256 always 마윻 15-126-146-356 always 마으 15-126-246 always 마윽 15-126-246-1 always 마윾 15-126-246-1-1 always 마윿 15-126-246-1-3 always ë§ˆì€ 15-126-1356 always 마ì 15-126-1356-13 always ë§ˆì‚ 15-126-1356-356 always ë§ˆìƒ 15-126-246-35 always ë§ˆì„ 15-126-2346 always ë§ˆì… 15-126-2346-1 always ë§ˆì† 15-126-2346-26 always ë§ˆì‡ 15-126-2346-12 always ë§ˆìˆ 15-126-2346-3 always ë§ˆì‰ 15-126-2346-236 always ë§ˆìŠ 15-126-2346-256 always ë§ˆì‹ 15-126-2346-356 always ë§ˆìŒ 15-126-246-26 always 마ì 15-126-246-12 always ë§ˆìŽ 15-126-246-12-3 always 마ì 15-126-246-3 always 마ì 15-126-246-34 always ë§ˆì‘ 15-126-246-2356 always ë§ˆì’ 15-126-246-13 always ë§ˆì“ 15-126-246-23 always ë§ˆì” 15-126-246-235 always ë§ˆì• 15-126-246-236 always ë§ˆì– 15-126-246-256 always ë§ˆì— 15-126-246-356 always ë§ˆì˜ 15-126-2456 always ë§ˆì™ 15-126-2456-1 always ë§ˆìš 15-126-2456-1-1 always ë§ˆì› 15-126-2456-1-3 always ë§ˆìœ 15-126-2456-25 always 마ì 15-126-2456-25-13 always ë§ˆìž 15-126-2456-25-356 always ë§ˆìŸ 15-126-2456-35 always ë§ˆì  15-126-2456-2 always ë§ˆì¡ 15-126-2456-2-1 always ë§ˆì¢ 15-126-2456-2-26 always ë§ˆì£ 15-126-2456-2-12 always ë§ˆì¤ 15-126-2456-2-3 always ë§ˆì¥ 15-126-2456-2-236 always ë§ˆì¦ 15-126-2456-2-256 always ë§ˆì§ 15-126-2456-2-356 always ë§ˆì¨ 15-126-2456-26 always ë§ˆì© 15-126-2456-12 always ë§ˆìª 15-126-2456-12-3 always ë§ˆì« 15-126-2456-3 always ë§ˆì¬ 15-126-2456-34 always ë§ˆì­ 15-126-2456-2356 always ë§ˆì® 15-126-2456-13 always ë§ˆì¯ 15-126-2456-23 always ë§ˆì° 15-126-2456-235 always ë§ˆì± 15-126-2456-236 always ë§ˆì² 15-126-2456-256 always ë§ˆì³ 15-126-2456-356 always ë§ˆì´ 15-126-135 always ë§ˆìµ 15-126-135-1 always ë§ˆì¶ 15-126-135-1-1 always ë§ˆì· 15-126-135-1-3 always ë§ˆì¸ 15-126-12345 always ë§ˆì¹ 15-126-12345-13 always ë§ˆìº 15-126-12345-356 always ë§ˆì» 15-126-135-35 always ë§ˆì¼ 15-126-135-2 always ë§ˆì½ 15-126-135-2-1 always ë§ˆì¾ 15-126-135-2-26 always ë§ˆì¿ 15-126-135-2-12 always 마잀 15-126-135-2-3 always ë§ˆìž 15-126-135-2-236 always 마잂 15-126-135-2-256 always 마잃 15-126-135-2-356 always 마임 15-126-135-26 always 마입 15-126-135-12 always 마잆 15-126-135-12-3 always 마잇 15-126-135-3 always 마있 15-126-135-34 always 마잉 15-126-135-2356 always 마잊 15-126-135-13 always 마잋 15-126-135-23 always 마잌 15-126-135-235 always ë§ˆìž 15-126-135-236 always 마잎 15-126-135-256 always ë§ˆìž 15-126-135-356 always 바아 45-126-126 always 바악 45-126-126-1 always 바앆 45-126-126-1-1 always 바앇 45-126-126-1-3 always 바안 45-126-126-25 always 바앉 45-126-126-25-13 always 바않 45-126-126-25-356 always 바앋 45-126-126-35 always 바알 45-126-126-2 always ë°”ì• 45-126-126-2-1 always 바앎 45-126-126-2-26 always ë°”ì• 45-126-126-2-12 always ë°”ì• 45-126-126-2-3 always 바앑 45-126-126-2-236 always 바앒 45-126-126-2-256 always 바앓 45-126-126-2-356 always 바암 45-126-126-26 always 바압 45-126-126-12 always 바앖 45-126-126-12-3 always 바앗 45-126-126-3 always 바았 45-126-126-34 always 바앙 45-126-126-2356 always 바앚 45-126-126-13 always 바앛 45-126-126-23 always 바앜 45-126-126-235 always ë°”ì• 45-126-126-236 always 바앞 45-126-126-256 always 바앟 45-126-126-356 always 바애 45-126-1235 always 바액 45-126-1235-1 always 바앢 45-126-1235-1-1 always 바앣 45-126-1235-1-3 always 바앤 45-126-1235-25 always 바앥 45-126-1235-25-13 always 바앦 45-126-1235-25-356 always 바앧 45-126-1235-35 always 바앨 45-126-1235-2 always 바앩 45-126-1235-2-1 always 바앪 45-126-1235-2-26 always 바앫 45-126-1235-2-12 always 바앬 45-126-1235-2-3 always 바앭 45-126-1235-2-236 always 바앮 45-126-1235-2-256 always 바앯 45-126-1235-2-356 always 바앰 45-126-1235-26 always 바앱 45-126-1235-12 always 바앲 45-126-1235-12-3 always 바앳 45-126-1235-3 always 바앴 45-126-1235-34 always 바앵 45-126-1235-2356 always 바앶 45-126-1235-13 always 바앷 45-126-1235-23 always 바앸 45-126-1235-235 always 바앹 45-126-1235-236 always 바앺 45-126-1235-256 always 바앻 45-126-1235-356 always 바야 45-126-345 always 바약 45-126-345-1 always 바앾 45-126-345-1-1 always 바앿 45-126-345-1-3 always 바얀 45-126-345-25 always ë°”ì– 45-126-345-25-13 always 바얂 45-126-345-25-356 always 바얃 45-126-345-35 always 바얄 45-126-345-2 always 바얅 45-126-345-2-1 always 바얆 45-126-345-2-26 always 바얇 45-126-345-2-12 always 바얈 45-126-345-2-3 always 바얉 45-126-345-2-236 always 바얊 45-126-345-2-256 always 바얋 45-126-345-2-356 always 바얌 45-126-345-26 always ë°”ì– 45-126-345-12 always 바얎 45-126-345-12-3 always ë°”ì– 45-126-345-3 always ë°”ì– 45-126-345-34 always 바양 45-126-345-2356 always 바얒 45-126-345-13 always 바얓 45-126-345-23 always 바얔 45-126-345-235 always 바얕 45-126-345-236 always 바얖 45-126-345-256 always 바얗 45-126-345-356 always 바얘 45-126-345-1235 always 바얙 45-126-345-1235-1 always 바얚 45-126-345-1235-1-1 always 바얛 45-126-345-1235-1-3 always 바얜 45-126-345-1235-25 always ë°”ì– 45-126-345-1235-25-13 always 바얞 45-126-345-1235-25-356 always 바얟 45-126-345-1235-35 always 바얠 45-126-345-1235-2 always 바얡 45-126-345-1235-2-1 always 바얢 45-126-345-1235-2-26 always 바얣 45-126-345-1235-2-12 always 바얤 45-126-345-1235-2-3 always 바얥 45-126-345-1235-2-236 always 바얦 45-126-345-1235-2-256 always 바얧 45-126-345-1235-2-356 always 바얨 45-126-345-1235-26 always 바얩 45-126-345-1235-12 always 바얪 45-126-345-1235-12-3 always 바얫 45-126-345-1235-3 always 바얬 45-126-345-1235-34 always 바얭 45-126-345-1235-2356 always 바얮 45-126-345-1235-13 always 바얯 45-126-345-1235-23 always 바얰 45-126-345-1235-235 always 바얱 45-126-345-1235-236 always 바얲 45-126-345-1235-256 always 바얳 45-126-345-1235-356 always 바어 45-126-234 always 바억 45-126-1456 always 바얶 45-126-1456-1 always 바얷 45-126-1456-3 always 바언 45-126-23456 always 바얹 45-126-23456-13 always 바얺 45-126-23456-356 always 바얻 45-126-234-35 always 바얼 45-126-2345 always 바얽 45-126-2345-1 always 바얾 45-126-2345-26 always 바얿 45-126-2345-12 always 바엀 45-126-2345-3 always ë°”ì— 45-126-2345-236 always 바엂 45-126-2345-256 always 바엃 45-126-2345-356 always 바엄 45-126-234-26 always 바업 45-126-234-12 always 바없 45-126-234-12-3 always 바엇 45-126-234-3 always 바었 45-126-234-34 always 바엉 45-126-234-2356 always 바엊 45-126-234-13 always 바엋 45-126-234-23 always 바엌 45-126-234-235 always ë°”ì— 45-126-234-236 always 바엎 45-126-234-256 always ë°”ì— 45-126-234-356 always ë°”ì— 45-126-1345 always 바엑 45-126-1345-1 always 바엒 45-126-1345-1-1 always 바엓 45-126-1345-1-3 always 바엔 45-126-1345-25 always 바엕 45-126-1345-25-13 always 바엖 45-126-1345-25-356 always 바엗 45-126-1345-35 always 바엘 45-126-1345-2 always 바엙 45-126-1345-2-1 always 바엚 45-126-1345-2-26 always 바엛 45-126-1345-2-12 always 바엜 45-126-1345-2-3 always ë°”ì— 45-126-1345-2-236 always 바엞 45-126-1345-2-256 always 바엟 45-126-1345-2-356 always 바엠 45-126-1345-26 always 바엡 45-126-1345-12 always 바엢 45-126-1345-12-3 always 바엣 45-126-1345-3 always 바엤 45-126-1345-34 always 바엥 45-126-1345-2356 always 바엦 45-126-1345-13 always 바엧 45-126-1345-23 always 바엨 45-126-1345-235 always 바엩 45-126-1345-236 always 바엪 45-126-1345-256 always 바엫 45-126-1345-356 always 바여 45-126-156 always 바역 45-126-156-1 always 바엮 45-126-156-1-1 always 바엯 45-126-156-1-3 always 바연 45-126-16 always 바엱 45-126-16-13 always 바엲 45-126-16-356 always 바열 45-126-1256 always 바엵 45-126-1256-1 always 바엶 45-126-1256-26 always 바엷 45-126-1256-12 always 바엸 45-126-1256-3 always 바엹 45-126-1256-236 always 바엺 45-126-1256-256 always 바엻 45-126-1256-356 always 바염 45-126-156-26 always 바엽 45-126-156-12 always 바엾 45-126-156-12-3 always 바엿 45-126-156-3 always 바였 45-126-156-34 always ë°”ì˜ 45-126-12456 always 바옂 45-126-156-13 always 바옃 45-126-156-23 always 바옄 45-126-156-235 always 바옅 45-126-156-236 always 바옆 45-126-156-256 always 바옇 45-126-156-356 always 바예 45-126-34 always 바옉 45-126-34-1 always 바옊 45-126-34-1-1 always 바옋 45-126-34-1-3 always 바옌 45-126-34-25 always ë°”ì˜ 45-126-34-25-13 always 바옎 45-126-34-25-356 always ë°”ì˜ 45-126-34-35 always ë°”ì˜ 45-126-34-2 always 바옑 45-126-34-2-1 always 바옒 45-126-34-2-26 always 바옓 45-126-34-2-12 always 바옔 45-126-34-2-3 always 바옕 45-126-34-2-236 always 바옖 45-126-34-2-256 always 바옗 45-126-34-2-356 always 바옘 45-126-34-26 always 바옙 45-126-34-12 always 바옚 45-126-34-12-3 always 바옛 45-126-34-3 always 바옜 45-126-34-34 always ë°”ì˜ 45-126-34-2356 always 바옞 45-126-34-13 always 바옟 45-126-34-23 always 바옠 45-126-34-235 always 바옡 45-126-34-236 always 바옢 45-126-34-256 always 바옣 45-126-34-356 always 바오 45-126-136 always 바옥 45-126-1346 always 바옦 45-126-1346-1 always 바옧 45-126-1346-3 always 바온 45-126-12356 always 바옩 45-126-12356-13 always 바옪 45-126-12356-356 always 바옫 45-126-136-35 always 바올 45-126-136-2 always 바옭 45-126-136-2-1 always 바옮 45-126-136-2-26 always 바옯 45-126-136-2-12 always 바옰 45-126-136-2-3 always 바옱 45-126-136-2-236 always 바옲 45-126-136-2-256 always 바옳 45-126-136-2-356 always 바옴 45-126-136-26 always 바옵 45-126-136-12 always 바옶 45-126-136-12-3 always 바옷 45-126-136-3 always 바옸 45-126-136-34 always 바옹 45-126-123456 always 바옺 45-126-136-13 always 바옻 45-126-136-23 always 바옼 45-126-136-235 always 바옽 45-126-136-236 always 바옾 45-126-136-256 always 바옿 45-126-136-356 always 바와 45-126-1236 always ë°”ì™ 45-126-1236-1 always 바왂 45-126-1236-1-1 always 바왃 45-126-1236-1-3 always 바완 45-126-1236-25 always 바왅 45-126-1236-25-13 always 바왆 45-126-1236-25-356 always 바왇 45-126-1236-35 always 바왈 45-126-1236-2 always 바왉 45-126-1236-2-1 always 바왊 45-126-1236-2-26 always 바왋 45-126-1236-2-12 always 바왌 45-126-1236-2-3 always ë°”ì™ 45-126-1236-2-236 always 바왎 45-126-1236-2-256 always ë°”ì™ 45-126-1236-2-356 always ë°”ì™ 45-126-1236-26 always 바왑 45-126-1236-12 always 바왒 45-126-1236-12-3 always 바왓 45-126-1236-3 always 바왔 45-126-1236-34 always 바왕 45-126-1236-2356 always 바왖 45-126-1236-13 always 바왗 45-126-1236-23 always 바왘 45-126-1236-235 always 바왙 45-126-1236-236 always 바왚 45-126-1236-256 always 바왛 45-126-1236-356 always 바왜 45-126-1236-1235 always ë°”ì™ 45-126-1236-1235-1 always 바왞 45-126-1236-1235-1-1 always 바왟 45-126-1236-1235-1-3 always 바왠 45-126-1236-1235-25 always 바왡 45-126-1236-1235-25-13 always 바왢 45-126-1236-1235-25-356 always 바왣 45-126-1236-1235-35 always 바왤 45-126-1236-1235-2 always 바왥 45-126-1236-1235-2-1 always 바왦 45-126-1236-1235-2-26 always 바왧 45-126-1236-1235-2-12 always 바왨 45-126-1236-1235-2-3 always 바왩 45-126-1236-1235-2-236 always 바왪 45-126-1236-1235-2-256 always 바왫 45-126-1236-1235-2-356 always 바왬 45-126-1236-1235-26 always 바왭 45-126-1236-1235-12 always 바왮 45-126-1236-1235-12-3 always 바왯 45-126-1236-1235-3 always 바왰 45-126-1236-1235-34 always 바왱 45-126-1236-1235-2356 always 바왲 45-126-1236-1235-13 always 바왳 45-126-1236-1235-23 always 바왴 45-126-1236-1235-235 always 바왵 45-126-1236-1235-236 always 바왶 45-126-1236-1235-256 always 바왷 45-126-1236-1235-356 always 바외 45-126-13456 always 바왹 45-126-13456-1 always 바왺 45-126-13456-1-1 always 바왻 45-126-13456-1-3 always 바왼 45-126-13456-25 always 바왽 45-126-13456-25-13 always 바왾 45-126-13456-25-356 always 바왿 45-126-13456-35 always 바욀 45-126-13456-2 always ë°”ìš 45-126-13456-2-1 always 바욂 45-126-13456-2-26 always 바욃 45-126-13456-2-12 always 바욄 45-126-13456-2-3 always 바욅 45-126-13456-2-236 always 바욆 45-126-13456-2-256 always 바욇 45-126-13456-2-356 always 바욈 45-126-13456-26 always 바욉 45-126-13456-12 always 바욊 45-126-13456-12-3 always 바욋 45-126-13456-3 always 바욌 45-126-13456-34 always ë°”ìš 45-126-13456-2356 always 바욎 45-126-13456-13 always ë°”ìš 45-126-13456-23 always ë°”ìš 45-126-13456-235 always 바욑 45-126-13456-236 always 바욒 45-126-13456-256 always 바욓 45-126-13456-356 always 바요 45-126-346 always 바욕 45-126-346-1 always 바욖 45-126-346-1-1 always 바욗 45-126-346-1-3 always 바욘 45-126-346-25 always 바욙 45-126-346-25-13 always 바욚 45-126-346-25-356 always 바욛 45-126-346-35 always 바욜 45-126-346-2 always ë°”ìš 45-126-346-2-1 always 바욞 45-126-346-2-26 always 바욟 45-126-346-2-12 always 바욠 45-126-346-2-3 always 바욡 45-126-346-2-236 always 바욢 45-126-346-2-256 always 바욣 45-126-346-2-356 always 바욤 45-126-346-26 always 바욥 45-126-346-12 always 바욦 45-126-346-12-3 always 바욧 45-126-346-3 always 바욨 45-126-346-34 always 바용 45-126-346-2356 always 바욪 45-126-346-13 always 바욫 45-126-346-23 always 바욬 45-126-346-235 always 바욭 45-126-346-236 always 바욮 45-126-346-256 always 바욯 45-126-346-356 always 바우 45-126-134 always 바욱 45-126-134-1 always 바욲 45-126-134-1-1 always 바욳 45-126-134-1-3 always 바운 45-126-1245 always 바욵 45-126-1245-13 always 바욶 45-126-1245-356 always 바욷 45-126-134-35 always 바울 45-126-12346 always 바욹 45-126-12346-1 always 바욺 45-126-12346-26 always 바욻 45-126-12346-12 always 바욼 45-126-12346-3 always 바욽 45-126-12346-236 always 바욾 45-126-12346-256 always 바욿 45-126-12346-356 always 바움 45-126-134-26 always ë°”ì› 45-126-134-12 always 바웂 45-126-134-12-3 always 바웃 45-126-134-3 always 바웄 45-126-134-34 always 바웅 45-126-134-2356 always 바웆 45-126-134-13 always 바웇 45-126-134-23 always 바웈 45-126-134-235 always 바웉 45-126-134-236 always 바웊 45-126-134-256 always 바웋 45-126-134-356 always 바워 45-126-1234 always ë°”ì› 45-126-1234-1 always 바웎 45-126-1234-1-1 always ë°”ì› 45-126-1234-1-3 always ë°”ì› 45-126-1234-25 always 바웑 45-126-1234-25-13 always 바웒 45-126-1234-25-356 always 바웓 45-126-1234-35 always 바월 45-126-1234-2 always 바웕 45-126-1234-2-1 always 바웖 45-126-1234-2-26 always 바웗 45-126-1234-2-12 always 바웘 45-126-1234-2-3 always 바웙 45-126-1234-2-236 always 바웚 45-126-1234-2-256 always 바웛 45-126-1234-2-356 always 바웜 45-126-1234-26 always ë°”ì› 45-126-1234-12 always 바웞 45-126-1234-12-3 always 바웟 45-126-1234-3 always 바웠 45-126-1234-34 always 바웡 45-126-1234-2356 always 바웢 45-126-1234-13 always 바웣 45-126-1234-23 always 바웤 45-126-1234-235 always 바웥 45-126-1234-236 always 바웦 45-126-1234-256 always 바웧 45-126-1234-356 always 바웨 45-126-1234-1235 always 바웩 45-126-1234-1235-1 always 바웪 45-126-1234-1235-1-1 always 바웫 45-126-1234-1235-1-3 always 바웬 45-126-1234-1235-25 always 바웭 45-126-1234-1235-25-13 always 바웮 45-126-1234-1235-25-356 always 바웯 45-126-1234-1235-35 always 바웰 45-126-1234-1235-2 always 바웱 45-126-1234-1235-2-1 always 바웲 45-126-1234-1235-2-26 always 바웳 45-126-1234-1235-2-12 always 바웴 45-126-1234-1235-2-3 always 바웵 45-126-1234-1235-2-236 always 바웶 45-126-1234-1235-2-256 always 바웷 45-126-1234-1235-2-356 always 바웸 45-126-1234-1235-26 always 바웹 45-126-1234-1235-12 always 바웺 45-126-1234-1235-12-3 always 바웻 45-126-1234-1235-3 always 바웼 45-126-1234-1235-34 always 바웽 45-126-1234-1235-2356 always 바웾 45-126-1234-1235-13 always 바웿 45-126-1234-1235-23 always 바윀 45-126-1234-1235-235 always ë°”ìœ 45-126-1234-1235-236 always 바윂 45-126-1234-1235-256 always 바윃 45-126-1234-1235-356 always 바위 45-126-134-1235 always 바윅 45-126-134-1235-1 always 바윆 45-126-134-1235-1-1 always 바윇 45-126-134-1235-1-3 always 바윈 45-126-134-1235-25 always 바윉 45-126-134-1235-25-13 always 바윊 45-126-134-1235-25-356 always 바윋 45-126-134-1235-35 always 바윌 45-126-134-1235-2 always ë°”ìœ 45-126-134-1235-2-1 always 바윎 45-126-134-1235-2-26 always ë°”ìœ 45-126-134-1235-2-12 always ë°”ìœ 45-126-134-1235-2-3 always 바윑 45-126-134-1235-2-236 always 바윒 45-126-134-1235-2-256 always 바윓 45-126-134-1235-2-356 always 바윔 45-126-134-1235-26 always 바윕 45-126-134-1235-12 always 바윖 45-126-134-1235-12-3 always 바윗 45-126-134-1235-3 always 바윘 45-126-134-1235-34 always 바윙 45-126-134-1235-2356 always 바윚 45-126-134-1235-13 always 바윛 45-126-134-1235-23 always 바윜 45-126-134-1235-235 always ë°”ìœ 45-126-134-1235-236 always 바윞 45-126-134-1235-256 always 바윟 45-126-134-1235-356 always 바유 45-126-146 always 바육 45-126-146-1 always 바윢 45-126-146-1-1 always 바윣 45-126-146-1-3 always 바윤 45-126-146-25 always 바윥 45-126-146-25-13 always 바윦 45-126-146-25-356 always 바윧 45-126-146-35 always 바율 45-126-146-2 always 바윩 45-126-146-2-1 always 바윪 45-126-146-2-26 always 바윫 45-126-146-2-12 always 바윬 45-126-146-2-3 always 바윭 45-126-146-2-236 always 바윮 45-126-146-2-256 always 바윯 45-126-146-2-356 always 바윰 45-126-146-26 always 바윱 45-126-146-12 always 바윲 45-126-146-12-3 always 바윳 45-126-146-3 always 바윴 45-126-146-34 always 바융 45-126-146-2356 always 바윶 45-126-146-13 always 바윷 45-126-146-23 always 바윸 45-126-146-235 always 바윹 45-126-146-236 always 바윺 45-126-146-256 always 바윻 45-126-146-356 always 바으 45-126-246 always 바윽 45-126-246-1 always 바윾 45-126-246-1-1 always 바윿 45-126-246-1-3 always ë°”ì€ 45-126-1356 always ë°”ì 45-126-1356-13 always ë°”ì‚ 45-126-1356-356 always ë°”ìƒ 45-126-246-35 always ë°”ì„ 45-126-2346 always ë°”ì… 45-126-2346-1 always ë°”ì† 45-126-2346-26 always ë°”ì‡ 45-126-2346-12 always ë°”ìˆ 45-126-2346-3 always ë°”ì‰ 45-126-2346-236 always ë°”ìŠ 45-126-2346-256 always ë°”ì‹ 45-126-2346-356 always ë°”ìŒ 45-126-246-26 always ë°”ì 45-126-246-12 always ë°”ìŽ 45-126-246-12-3 always ë°”ì 45-126-246-3 always ë°”ì 45-126-246-34 always ë°”ì‘ 45-126-246-2356 always ë°”ì’ 45-126-246-13 always ë°”ì“ 45-126-246-23 always ë°”ì” 45-126-246-235 always ë°”ì• 45-126-246-236 always ë°”ì– 45-126-246-256 always ë°”ì— 45-126-246-356 always ë°”ì˜ 45-126-2456 always ë°”ì™ 45-126-2456-1 always ë°”ìš 45-126-2456-1-1 always ë°”ì› 45-126-2456-1-3 always ë°”ìœ 45-126-2456-25 always ë°”ì 45-126-2456-25-13 always ë°”ìž 45-126-2456-25-356 always ë°”ìŸ 45-126-2456-35 always ë°”ì  45-126-2456-2 always ë°”ì¡ 45-126-2456-2-1 always ë°”ì¢ 45-126-2456-2-26 always ë°”ì£ 45-126-2456-2-12 always ë°”ì¤ 45-126-2456-2-3 always ë°”ì¥ 45-126-2456-2-236 always ë°”ì¦ 45-126-2456-2-256 always ë°”ì§ 45-126-2456-2-356 always ë°”ì¨ 45-126-2456-26 always ë°”ì© 45-126-2456-12 always ë°”ìª 45-126-2456-12-3 always ë°”ì« 45-126-2456-3 always ë°”ì¬ 45-126-2456-34 always ë°”ì­ 45-126-2456-2356 always ë°”ì® 45-126-2456-13 always ë°”ì¯ 45-126-2456-23 always ë°”ì° 45-126-2456-235 always ë°”ì± 45-126-2456-236 always ë°”ì² 45-126-2456-256 always ë°”ì³ 45-126-2456-356 always ë°”ì´ 45-126-135 always ë°”ìµ 45-126-135-1 always ë°”ì¶ 45-126-135-1-1 always ë°”ì· 45-126-135-1-3 always ë°”ì¸ 45-126-12345 always ë°”ì¹ 45-126-12345-13 always ë°”ìº 45-126-12345-356 always ë°”ì» 45-126-135-35 always ë°”ì¼ 45-126-135-2 always ë°”ì½ 45-126-135-2-1 always ë°”ì¾ 45-126-135-2-26 always ë°”ì¿ 45-126-135-2-12 always 바잀 45-126-135-2-3 always ë°”ìž 45-126-135-2-236 always 바잂 45-126-135-2-256 always 바잃 45-126-135-2-356 always 바임 45-126-135-26 always 바입 45-126-135-12 always 바잆 45-126-135-12-3 always 바잇 45-126-135-3 always 바있 45-126-135-34 always 바잉 45-126-135-2356 always 바잊 45-126-135-13 always 바잋 45-126-135-23 always 바잌 45-126-135-235 always ë°”ìž 45-126-135-236 always 바잎 45-126-135-256 always ë°”ìž 45-126-135-356 always ë¹ ì•„ 6-45-126-126 always ë¹ ì•… 6-45-126-126-1 always 빠앆 6-45-126-126-1-1 always 빠앇 6-45-126-126-1-3 always 빠안 6-45-126-126-25 always 빠앉 6-45-126-126-25-13 always 빠않 6-45-126-126-25-356 always ë¹ ì•‹ 6-45-126-126-35 always 빠알 6-45-126-126-2 always ë¹ ì• 6-45-126-126-2-1 always 빠앎 6-45-126-126-2-26 always ë¹ ì• 6-45-126-126-2-12 always ë¹ ì• 6-45-126-126-2-3 always ë¹ ì•‘ 6-45-126-126-2-236 always ë¹ ì•’ 6-45-126-126-2-256 always ë¹ ì•“ 6-45-126-126-2-356 always ë¹ ì•” 6-45-126-126-26 always ë¹ ì•• 6-45-126-126-12 always ë¹ ì•– 6-45-126-126-12-3 always ë¹ ì•— 6-45-126-126-3 always 빠았 6-45-126-126-34 always ë¹ ì•™ 6-45-126-126-2356 always 빠앚 6-45-126-126-13 always ë¹ ì•› 6-45-126-126-23 always 빠앜 6-45-126-126-235 always ë¹ ì• 6-45-126-126-236 always 빠앞 6-45-126-126-256 always 빠앟 6-45-126-126-356 always ë¹ ì•  6-45-126-1235 always ë¹ ì•¡ 6-45-126-1235-1 always ë¹ ì•¢ 6-45-126-1235-1-1 always ë¹ ì•£ 6-45-126-1235-1-3 always 빠앤 6-45-126-1235-25 always ë¹ ì•¥ 6-45-126-1235-25-13 always 빠앦 6-45-126-1235-25-356 always ë¹ ì•§ 6-45-126-1235-35 always 빠앨 6-45-126-1235-2 always ë¹ ì•© 6-45-126-1235-2-1 always 빠앪 6-45-126-1235-2-26 always ë¹ ì•« 6-45-126-1235-2-12 always 빠앬 6-45-126-1235-2-3 always ë¹ ì•­ 6-45-126-1235-2-236 always ë¹ ì•® 6-45-126-1235-2-256 always 빠앯 6-45-126-1235-2-356 always ë¹ ì•° 6-45-126-1235-26 always 빠앱 6-45-126-1235-12 always 빠앲 6-45-126-1235-12-3 always 빠앳 6-45-126-1235-3 always ë¹ ì•´ 6-45-126-1235-34 always 빠앵 6-45-126-1235-2356 always ë¹ ì•¶ 6-45-126-1235-13 always ë¹ ì•· 6-45-126-1235-23 always 빠앸 6-45-126-1235-235 always 빠앹 6-45-126-1235-236 always 빠앺 6-45-126-1235-256 always ë¹ ì•» 6-45-126-1235-356 always 빠야 6-45-126-345 always 빠약 6-45-126-345-1 always 빠앾 6-45-126-345-1-1 always ë¹ ì•¿ 6-45-126-345-1-3 always ë¹ ì–€ 6-45-126-345-25 always ë¹ ì– 6-45-126-345-25-13 always ë¹ ì–‚ 6-45-126-345-25-356 always ë¹ ì–ƒ 6-45-126-345-35 always ë¹ ì–„ 6-45-126-345-2 always ë¹ ì–… 6-45-126-345-2-1 always ë¹ ì–† 6-45-126-345-2-26 always ë¹ ì–‡ 6-45-126-345-2-12 always ë¹ ì–ˆ 6-45-126-345-2-3 always ë¹ ì–‰ 6-45-126-345-2-236 always ë¹ ì–Š 6-45-126-345-2-256 always ë¹ ì–‹ 6-45-126-345-2-356 always ë¹ ì–Œ 6-45-126-345-26 always ë¹ ì– 6-45-126-345-12 always ë¹ ì–Ž 6-45-126-345-12-3 always ë¹ ì– 6-45-126-345-3 always ë¹ ì– 6-45-126-345-34 always ë¹ ì–‘ 6-45-126-345-2356 always ë¹ ì–’ 6-45-126-345-13 always ë¹ ì–“ 6-45-126-345-23 always ë¹ ì–” 6-45-126-345-235 always ë¹ ì–• 6-45-126-345-236 always ë¹ ì–– 6-45-126-345-256 always ë¹ ì–— 6-45-126-345-356 always ë¹ ì–˜ 6-45-126-345-1235 always ë¹ ì–™ 6-45-126-345-1235-1 always ë¹ ì–š 6-45-126-345-1235-1-1 always ë¹ ì–› 6-45-126-345-1235-1-3 always ë¹ ì–œ 6-45-126-345-1235-25 always ë¹ ì– 6-45-126-345-1235-25-13 always ë¹ ì–ž 6-45-126-345-1235-25-356 always ë¹ ì–Ÿ 6-45-126-345-1235-35 always ë¹ ì–  6-45-126-345-1235-2 always ë¹ ì–¡ 6-45-126-345-1235-2-1 always ë¹ ì–¢ 6-45-126-345-1235-2-26 always ë¹ ì–£ 6-45-126-345-1235-2-12 always ë¹ ì–¤ 6-45-126-345-1235-2-3 always ë¹ ì–¥ 6-45-126-345-1235-2-236 always ë¹ ì–¦ 6-45-126-345-1235-2-256 always ë¹ ì–§ 6-45-126-345-1235-2-356 always ë¹ ì–¨ 6-45-126-345-1235-26 always ë¹ ì–© 6-45-126-345-1235-12 always ë¹ ì–ª 6-45-126-345-1235-12-3 always ë¹ ì–« 6-45-126-345-1235-3 always ë¹ ì–¬ 6-45-126-345-1235-34 always ë¹ ì–­ 6-45-126-345-1235-2356 always ë¹ ì–® 6-45-126-345-1235-13 always ë¹ ì–¯ 6-45-126-345-1235-23 always ë¹ ì–° 6-45-126-345-1235-235 always ë¹ ì–± 6-45-126-345-1235-236 always ë¹ ì–² 6-45-126-345-1235-256 always ë¹ ì–³ 6-45-126-345-1235-356 always ë¹ ì–´ 6-45-126-234 always ë¹ ì–µ 6-45-126-1456 always ë¹ ì–¶ 6-45-126-1456-1 always ë¹ ì–· 6-45-126-1456-3 always ë¹ ì–¸ 6-45-126-23456 always ë¹ ì–¹ 6-45-126-23456-13 always ë¹ ì–º 6-45-126-23456-356 always ë¹ ì–» 6-45-126-234-35 always ë¹ ì–¼ 6-45-126-2345 always ë¹ ì–½ 6-45-126-2345-1 always ë¹ ì–¾ 6-45-126-2345-26 always ë¹ ì–¿ 6-45-126-2345-12 always ë¹ ì—€ 6-45-126-2345-3 always ë¹ ì— 6-45-126-2345-236 always ë¹ ì—‚ 6-45-126-2345-256 always ë¹ ì—ƒ 6-45-126-2345-356 always ë¹ ì—„ 6-45-126-234-26 always ë¹ ì—… 6-45-126-234-12 always ë¹ ì—† 6-45-126-234-12-3 always ë¹ ì—‡ 6-45-126-234-3 always ë¹ ì—ˆ 6-45-126-234-34 always ë¹ ì—‰ 6-45-126-234-2356 always ë¹ ì—Š 6-45-126-234-13 always ë¹ ì—‹ 6-45-126-234-23 always ë¹ ì—Œ 6-45-126-234-235 always ë¹ ì— 6-45-126-234-236 always ë¹ ì—Ž 6-45-126-234-256 always ë¹ ì— 6-45-126-234-356 always ë¹ ì— 6-45-126-1345 always ë¹ ì—‘ 6-45-126-1345-1 always ë¹ ì—’ 6-45-126-1345-1-1 always ë¹ ì—“ 6-45-126-1345-1-3 always ë¹ ì—” 6-45-126-1345-25 always ë¹ ì—• 6-45-126-1345-25-13 always ë¹ ì—– 6-45-126-1345-25-356 always ë¹ ì—— 6-45-126-1345-35 always ë¹ ì—˜ 6-45-126-1345-2 always ë¹ ì—™ 6-45-126-1345-2-1 always ë¹ ì—š 6-45-126-1345-2-26 always ë¹ ì—› 6-45-126-1345-2-12 always ë¹ ì—œ 6-45-126-1345-2-3 always ë¹ ì— 6-45-126-1345-2-236 always ë¹ ì—ž 6-45-126-1345-2-256 always ë¹ ì—Ÿ 6-45-126-1345-2-356 always ë¹ ì—  6-45-126-1345-26 always ë¹ ì—¡ 6-45-126-1345-12 always ë¹ ì—¢ 6-45-126-1345-12-3 always ë¹ ì—£ 6-45-126-1345-3 always ë¹ ì—¤ 6-45-126-1345-34 always ë¹ ì—¥ 6-45-126-1345-2356 always ë¹ ì—¦ 6-45-126-1345-13 always ë¹ ì—§ 6-45-126-1345-23 always ë¹ ì—¨ 6-45-126-1345-235 always ë¹ ì—© 6-45-126-1345-236 always ë¹ ì—ª 6-45-126-1345-256 always ë¹ ì—« 6-45-126-1345-356 always ë¹ ì—¬ 6-45-126-156 always ë¹ ì—­ 6-45-126-156-1 always ë¹ ì—® 6-45-126-156-1-1 always ë¹ ì—¯ 6-45-126-156-1-3 always ë¹ ì—° 6-45-126-16 always ë¹ ì—± 6-45-126-16-13 always ë¹ ì—² 6-45-126-16-356 always ë¹ ì—´ 6-45-126-1256 always ë¹ ì—µ 6-45-126-1256-1 always ë¹ ì—¶ 6-45-126-1256-26 always ë¹ ì—· 6-45-126-1256-12 always ë¹ ì—¸ 6-45-126-1256-3 always ë¹ ì—¹ 6-45-126-1256-236 always ë¹ ì—º 6-45-126-1256-256 always ë¹ ì—» 6-45-126-1256-356 always ë¹ ì—¼ 6-45-126-156-26 always ë¹ ì—½ 6-45-126-156-12 always ë¹ ì—¾ 6-45-126-156-12-3 always ë¹ ì—¿ 6-45-126-156-3 always 빠였 6-45-126-156-34 always ë¹ ì˜ 6-45-126-12456 always 빠옂 6-45-126-156-13 always 빠옃 6-45-126-156-23 always 빠옄 6-45-126-156-235 always 빠옅 6-45-126-156-236 always 빠옆 6-45-126-156-256 always 빠옇 6-45-126-156-356 always 빠예 6-45-126-34 always 빠옉 6-45-126-34-1 always 빠옊 6-45-126-34-1-1 always 빠옋 6-45-126-34-1-3 always 빠옌 6-45-126-34-25 always ë¹ ì˜ 6-45-126-34-25-13 always 빠옎 6-45-126-34-25-356 always ë¹ ì˜ 6-45-126-34-35 always ë¹ ì˜ 6-45-126-34-2 always 빠옑 6-45-126-34-2-1 always 빠옒 6-45-126-34-2-26 always 빠옓 6-45-126-34-2-12 always 빠옔 6-45-126-34-2-3 always 빠옕 6-45-126-34-2-236 always 빠옖 6-45-126-34-2-256 always 빠옗 6-45-126-34-2-356 always 빠옘 6-45-126-34-26 always 빠옙 6-45-126-34-12 always 빠옚 6-45-126-34-12-3 always 빠옛 6-45-126-34-3 always 빠옜 6-45-126-34-34 always ë¹ ì˜ 6-45-126-34-2356 always 빠옞 6-45-126-34-13 always 빠옟 6-45-126-34-23 always 빠옠 6-45-126-34-235 always 빠옡 6-45-126-34-236 always 빠옢 6-45-126-34-256 always 빠옣 6-45-126-34-356 always 빠오 6-45-126-136 always 빠옥 6-45-126-1346 always 빠옦 6-45-126-1346-1 always 빠옧 6-45-126-1346-3 always 빠온 6-45-126-12356 always 빠옩 6-45-126-12356-13 always 빠옪 6-45-126-12356-356 always 빠옫 6-45-126-136-35 always 빠올 6-45-126-136-2 always 빠옭 6-45-126-136-2-1 always 빠옮 6-45-126-136-2-26 always 빠옯 6-45-126-136-2-12 always 빠옰 6-45-126-136-2-3 always 빠옱 6-45-126-136-2-236 always 빠옲 6-45-126-136-2-256 always 빠옳 6-45-126-136-2-356 always 빠옴 6-45-126-136-26 always 빠옵 6-45-126-136-12 always 빠옶 6-45-126-136-12-3 always 빠옷 6-45-126-136-3 always 빠옸 6-45-126-136-34 always 빠옹 6-45-126-123456 always 빠옺 6-45-126-136-13 always 빠옻 6-45-126-136-23 always 빠옼 6-45-126-136-235 always 빠옽 6-45-126-136-236 always 빠옾 6-45-126-136-256 always 빠옿 6-45-126-136-356 always 빠와 6-45-126-1236 always ë¹ ì™ 6-45-126-1236-1 always 빠왂 6-45-126-1236-1-1 always 빠왃 6-45-126-1236-1-3 always 빠완 6-45-126-1236-25 always ë¹ ì™… 6-45-126-1236-25-13 always 빠왆 6-45-126-1236-25-356 always 빠왇 6-45-126-1236-35 always 빠왈 6-45-126-1236-2 always 빠왉 6-45-126-1236-2-1 always 빠왊 6-45-126-1236-2-26 always 빠왋 6-45-126-1236-2-12 always 빠왌 6-45-126-1236-2-3 always ë¹ ì™ 6-45-126-1236-2-236 always 빠왎 6-45-126-1236-2-256 always ë¹ ì™ 6-45-126-1236-2-356 always ë¹ ì™ 6-45-126-1236-26 always 빠왑 6-45-126-1236-12 always ë¹ ì™’ 6-45-126-1236-12-3 always 빠왓 6-45-126-1236-3 always ë¹ ì™” 6-45-126-1236-34 always 빠왕 6-45-126-1236-2356 always ë¹ ì™– 6-45-126-1236-13 always ë¹ ì™— 6-45-126-1236-23 always 빠왘 6-45-126-1236-235 always ë¹ ì™™ 6-45-126-1236-236 always 빠왚 6-45-126-1236-256 always ë¹ ì™› 6-45-126-1236-356 always 빠왜 6-45-126-1236-1235 always ë¹ ì™ 6-45-126-1236-1235-1 always 빠왞 6-45-126-1236-1235-1-1 always 빠왟 6-45-126-1236-1235-1-3 always ë¹ ì™  6-45-126-1236-1235-25 always 빠왡 6-45-126-1236-1235-25-13 always 빠왢 6-45-126-1236-1235-25-356 always 빠왣 6-45-126-1236-1235-35 always 빠왤 6-45-126-1236-1235-2 always 빠왥 6-45-126-1236-1235-2-1 always 빠왦 6-45-126-1236-1235-2-26 always ë¹ ì™§ 6-45-126-1236-1235-2-12 always 빠왨 6-45-126-1236-1235-2-3 always 빠왩 6-45-126-1236-1235-2-236 always 빠왪 6-45-126-1236-1235-2-256 always 빠왫 6-45-126-1236-1235-2-356 always 빠왬 6-45-126-1236-1235-26 always ë¹ ì™­ 6-45-126-1236-1235-12 always ë¹ ì™® 6-45-126-1236-1235-12-3 always 빠왯 6-45-126-1236-1235-3 always ë¹ ì™° 6-45-126-1236-1235-34 always ë¹ ì™± 6-45-126-1236-1235-2356 always 빠왲 6-45-126-1236-1235-13 always 빠왳 6-45-126-1236-1235-23 always ë¹ ì™´ 6-45-126-1236-1235-235 always 빠왵 6-45-126-1236-1235-236 always ë¹ ì™¶ 6-45-126-1236-1235-256 always ë¹ ì™· 6-45-126-1236-1235-356 always 빠외 6-45-126-13456 always 빠왹 6-45-126-13456-1 always 빠왺 6-45-126-13456-1-1 always ë¹ ì™» 6-45-126-13456-1-3 always 빠왼 6-45-126-13456-25 always 빠왽 6-45-126-13456-25-13 always 빠왾 6-45-126-13456-25-356 always 빠왿 6-45-126-13456-35 always 빠욀 6-45-126-13456-2 always ë¹ ìš 6-45-126-13456-2-1 always ë¹ ìš‚ 6-45-126-13456-2-26 always 빠욃 6-45-126-13456-2-12 always ë¹ ìš„ 6-45-126-13456-2-3 always ë¹ ìš… 6-45-126-13456-2-236 always 빠욆 6-45-126-13456-2-256 always 빠욇 6-45-126-13456-2-356 always 빠욈 6-45-126-13456-26 always 빠욉 6-45-126-13456-12 always 빠욊 6-45-126-13456-12-3 always ë¹ ìš‹ 6-45-126-13456-3 always 빠욌 6-45-126-13456-34 always ë¹ ìš 6-45-126-13456-2356 always 빠욎 6-45-126-13456-13 always ë¹ ìš 6-45-126-13456-23 always ë¹ ìš 6-45-126-13456-235 always ë¹ ìš‘ 6-45-126-13456-236 always ë¹ ìš’ 6-45-126-13456-256 always ë¹ ìš“ 6-45-126-13456-356 always ë¹ ìš” 6-45-126-346 always ë¹ ìš• 6-45-126-346-1 always ë¹ ìš– 6-45-126-346-1-1 always ë¹ ìš— 6-45-126-346-1-3 always 빠욘 6-45-126-346-25 always ë¹ ìš™ 6-45-126-346-25-13 always ë¹ ìšš 6-45-126-346-25-356 always ë¹ ìš› 6-45-126-346-35 always ë¹ ìšœ 6-45-126-346-2 always ë¹ ìš 6-45-126-346-2-1 always ë¹ ìšž 6-45-126-346-2-26 always 빠욟 6-45-126-346-2-12 always ë¹ ìš  6-45-126-346-2-3 always ë¹ ìš¡ 6-45-126-346-2-236 always 빠욢 6-45-126-346-2-256 always 빠욣 6-45-126-346-2-356 always 빠욤 6-45-126-346-26 always 빠욥 6-45-126-346-12 always 빠욦 6-45-126-346-12-3 always ë¹ ìš§ 6-45-126-346-3 always 빠욨 6-45-126-346-34 always ë¹ ìš© 6-45-126-346-2356 always 빠욪 6-45-126-346-13 always ë¹ ìš« 6-45-126-346-23 always 빠욬 6-45-126-346-235 always ë¹ ìš­ 6-45-126-346-236 always ë¹ ìš® 6-45-126-346-256 always 빠욯 6-45-126-346-356 always ë¹ ìš° 6-45-126-134 always ë¹ ìš± 6-45-126-134-1 always ë¹ ìš² 6-45-126-134-1-1 always ë¹ ìš³ 6-45-126-134-1-3 always ë¹ ìš´ 6-45-126-1245 always ë¹ ìšµ 6-45-126-1245-13 always ë¹ ìš¶ 6-45-126-1245-356 always ë¹ ìš· 6-45-126-134-35 always 빠울 6-45-126-12346 always ë¹ ìš¹ 6-45-126-12346-1 always 빠욺 6-45-126-12346-26 always ë¹ ìš» 6-45-126-12346-12 always ë¹ ìš¼ 6-45-126-12346-3 always ë¹ ìš½ 6-45-126-12346-236 always ë¹ ìš¾ 6-45-126-12346-256 always ë¹ ìš¿ 6-45-126-12346-356 always 빠움 6-45-126-134-26 always ë¹ ì› 6-45-126-134-12 always 빠웂 6-45-126-134-12-3 always 빠웃 6-45-126-134-3 always 빠웄 6-45-126-134-34 always ë¹ ì›… 6-45-126-134-2356 always 빠웆 6-45-126-134-13 always 빠웇 6-45-126-134-23 always 빠웈 6-45-126-134-235 always 빠웉 6-45-126-134-236 always 빠웊 6-45-126-134-256 always 빠웋 6-45-126-134-356 always 빠워 6-45-126-1234 always ë¹ ì› 6-45-126-1234-1 always 빠웎 6-45-126-1234-1-1 always ë¹ ì› 6-45-126-1234-1-3 always ë¹ ì› 6-45-126-1234-25 always 빠웑 6-45-126-1234-25-13 always ë¹ ì›’ 6-45-126-1234-25-356 always 빠웓 6-45-126-1234-35 always ë¹ ì›” 6-45-126-1234-2 always 빠웕 6-45-126-1234-2-1 always ë¹ ì›– 6-45-126-1234-2-26 always ë¹ ì›— 6-45-126-1234-2-12 always 빠웘 6-45-126-1234-2-3 always ë¹ ì›™ 6-45-126-1234-2-236 always 빠웚 6-45-126-1234-2-256 always ë¹ ì›› 6-45-126-1234-2-356 always 빠웜 6-45-126-1234-26 always ë¹ ì› 6-45-126-1234-12 always 빠웞 6-45-126-1234-12-3 always 빠웟 6-45-126-1234-3 always ë¹ ì›  6-45-126-1234-34 always 빠웡 6-45-126-1234-2356 always 빠웢 6-45-126-1234-13 always 빠웣 6-45-126-1234-23 always 빠웤 6-45-126-1234-235 always 빠웥 6-45-126-1234-236 always 빠웦 6-45-126-1234-256 always ë¹ ì›§ 6-45-126-1234-356 always 빠웨 6-45-126-1234-1235 always 빠웩 6-45-126-1234-1235-1 always 빠웪 6-45-126-1234-1235-1-1 always 빠웫 6-45-126-1234-1235-1-3 always 빠웬 6-45-126-1234-1235-25 always ë¹ ì›­ 6-45-126-1234-1235-25-13 always ë¹ ì›® 6-45-126-1234-1235-25-356 always 빠웯 6-45-126-1234-1235-35 always ë¹ ì›° 6-45-126-1234-1235-2 always ë¹ ì›± 6-45-126-1234-1235-2-1 always 빠웲 6-45-126-1234-1235-2-26 always 빠웳 6-45-126-1234-1235-2-12 always ë¹ ì›´ 6-45-126-1234-1235-2-3 always 빠웵 6-45-126-1234-1235-2-236 always ë¹ ì›¶ 6-45-126-1234-1235-2-256 always ë¹ ì›· 6-45-126-1234-1235-2-356 always 빠웸 6-45-126-1234-1235-26 always 빠웹 6-45-126-1234-1235-12 always 빠웺 6-45-126-1234-1235-12-3 always ë¹ ì›» 6-45-126-1234-1235-3 always 빠웼 6-45-126-1234-1235-34 always 빠웽 6-45-126-1234-1235-2356 always 빠웾 6-45-126-1234-1235-13 always 빠웿 6-45-126-1234-1235-23 always 빠윀 6-45-126-1234-1235-235 always ë¹ ìœ 6-45-126-1234-1235-236 always 빠윂 6-45-126-1234-1235-256 always 빠윃 6-45-126-1234-1235-356 always 빠위 6-45-126-134-1235 always 빠윅 6-45-126-134-1235-1 always 빠윆 6-45-126-134-1235-1-1 always 빠윇 6-45-126-134-1235-1-3 always 빠윈 6-45-126-134-1235-25 always 빠윉 6-45-126-134-1235-25-13 always 빠윊 6-45-126-134-1235-25-356 always 빠윋 6-45-126-134-1235-35 always 빠윌 6-45-126-134-1235-2 always ë¹ ìœ 6-45-126-134-1235-2-1 always 빠윎 6-45-126-134-1235-2-26 always ë¹ ìœ 6-45-126-134-1235-2-12 always ë¹ ìœ 6-45-126-134-1235-2-3 always 빠윑 6-45-126-134-1235-2-236 always 빠윒 6-45-126-134-1235-2-256 always 빠윓 6-45-126-134-1235-2-356 always 빠윔 6-45-126-134-1235-26 always 빠윕 6-45-126-134-1235-12 always 빠윖 6-45-126-134-1235-12-3 always 빠윗 6-45-126-134-1235-3 always 빠윘 6-45-126-134-1235-34 always 빠윙 6-45-126-134-1235-2356 always 빠윚 6-45-126-134-1235-13 always 빠윛 6-45-126-134-1235-23 always 빠윜 6-45-126-134-1235-235 always ë¹ ìœ 6-45-126-134-1235-236 always 빠윞 6-45-126-134-1235-256 always 빠윟 6-45-126-134-1235-356 always 빠유 6-45-126-146 always 빠육 6-45-126-146-1 always 빠윢 6-45-126-146-1-1 always 빠윣 6-45-126-146-1-3 always 빠윤 6-45-126-146-25 always 빠윥 6-45-126-146-25-13 always 빠윦 6-45-126-146-25-356 always 빠윧 6-45-126-146-35 always 빠율 6-45-126-146-2 always 빠윩 6-45-126-146-2-1 always 빠윪 6-45-126-146-2-26 always 빠윫 6-45-126-146-2-12 always 빠윬 6-45-126-146-2-3 always 빠윭 6-45-126-146-2-236 always 빠윮 6-45-126-146-2-256 always 빠윯 6-45-126-146-2-356 always 빠윰 6-45-126-146-26 always 빠윱 6-45-126-146-12 always 빠윲 6-45-126-146-12-3 always 빠윳 6-45-126-146-3 always 빠윴 6-45-126-146-34 always 빠융 6-45-126-146-2356 always 빠윶 6-45-126-146-13 always 빠윷 6-45-126-146-23 always 빠윸 6-45-126-146-235 always 빠윹 6-45-126-146-236 always 빠윺 6-45-126-146-256 always 빠윻 6-45-126-146-356 always 빠으 6-45-126-246 always 빠윽 6-45-126-246-1 always 빠윾 6-45-126-246-1-1 always 빠윿 6-45-126-246-1-3 always ë¹ ì€ 6-45-126-1356 always ë¹ ì 6-45-126-1356-13 always ë¹ ì‚ 6-45-126-1356-356 always ë¹ ìƒ 6-45-126-246-35 always ë¹ ì„ 6-45-126-2346 always ë¹ ì… 6-45-126-2346-1 always ë¹ ì† 6-45-126-2346-26 always ë¹ ì‡ 6-45-126-2346-12 always ë¹ ìˆ 6-45-126-2346-3 always ë¹ ì‰ 6-45-126-2346-236 always ë¹ ìŠ 6-45-126-2346-256 always ë¹ ì‹ 6-45-126-2346-356 always ë¹ ìŒ 6-45-126-246-26 always ë¹ ì 6-45-126-246-12 always ë¹ ìŽ 6-45-126-246-12-3 always ë¹ ì 6-45-126-246-3 always ë¹ ì 6-45-126-246-34 always ë¹ ì‘ 6-45-126-246-2356 always ë¹ ì’ 6-45-126-246-13 always ë¹ ì“ 6-45-126-246-23 always ë¹ ì” 6-45-126-246-235 always ë¹ ì• 6-45-126-246-236 always ë¹ ì– 6-45-126-246-256 always ë¹ ì— 6-45-126-246-356 always ë¹ ì˜ 6-45-126-2456 always ë¹ ì™ 6-45-126-2456-1 always ë¹ ìš 6-45-126-2456-1-1 always ë¹ ì› 6-45-126-2456-1-3 always ë¹ ìœ 6-45-126-2456-25 always ë¹ ì 6-45-126-2456-25-13 always ë¹ ìž 6-45-126-2456-25-356 always ë¹ ìŸ 6-45-126-2456-35 always ë¹ ì  6-45-126-2456-2 always ë¹ ì¡ 6-45-126-2456-2-1 always ë¹ ì¢ 6-45-126-2456-2-26 always ë¹ ì£ 6-45-126-2456-2-12 always ë¹ ì¤ 6-45-126-2456-2-3 always ë¹ ì¥ 6-45-126-2456-2-236 always ë¹ ì¦ 6-45-126-2456-2-256 always ë¹ ì§ 6-45-126-2456-2-356 always ë¹ ì¨ 6-45-126-2456-26 always ë¹ ì© 6-45-126-2456-12 always ë¹ ìª 6-45-126-2456-12-3 always ë¹ ì« 6-45-126-2456-3 always ë¹ ì¬ 6-45-126-2456-34 always ë¹ ì­ 6-45-126-2456-2356 always ë¹ ì® 6-45-126-2456-13 always ë¹ ì¯ 6-45-126-2456-23 always ë¹ ì° 6-45-126-2456-235 always ë¹ ì± 6-45-126-2456-236 always ë¹ ì² 6-45-126-2456-256 always ë¹ ì³ 6-45-126-2456-356 always ë¹ ì´ 6-45-126-135 always ë¹ ìµ 6-45-126-135-1 always ë¹ ì¶ 6-45-126-135-1-1 always ë¹ ì· 6-45-126-135-1-3 always ë¹ ì¸ 6-45-126-12345 always ë¹ ì¹ 6-45-126-12345-13 always ë¹ ìº 6-45-126-12345-356 always ë¹ ì» 6-45-126-135-35 always ë¹ ì¼ 6-45-126-135-2 always ë¹ ì½ 6-45-126-135-2-1 always ë¹ ì¾ 6-45-126-135-2-26 always ë¹ ì¿ 6-45-126-135-2-12 always 빠잀 6-45-126-135-2-3 always ë¹ ìž 6-45-126-135-2-236 always ë¹ ìž‚ 6-45-126-135-2-256 always 빠잃 6-45-126-135-2-356 always ë¹ ìž„ 6-45-126-135-26 always ë¹ ìž… 6-45-126-135-12 always 빠잆 6-45-126-135-12-3 always 빠잇 6-45-126-135-3 always 빠있 6-45-126-135-34 always 빠잉 6-45-126-135-2356 always 빠잊 6-45-126-135-13 always ë¹ ìž‹ 6-45-126-135-23 always 빠잌 6-45-126-135-235 always ë¹ ìž 6-45-126-135-236 always 빠잎 6-45-126-135-256 always ë¹ ìž 6-45-126-135-356 always ìžì•„ 46-126-126 always ìžì•… 46-126-126-1 always ìžì•† 46-126-126-1-1 always ìžì•‡ 46-126-126-1-3 always ìžì•ˆ 46-126-126-25 always ìžì•‰ 46-126-126-25-13 always ìžì•Š 46-126-126-25-356 always ìžì•‹ 46-126-126-35 always ìžì•Œ 46-126-126-2 always ìžì• 46-126-126-2-1 always ìžì•Ž 46-126-126-2-26 always ìžì• 46-126-126-2-12 always ìžì• 46-126-126-2-3 always ìžì•‘ 46-126-126-2-236 always ìžì•’ 46-126-126-2-256 always ìžì•“ 46-126-126-2-356 always ìžì•” 46-126-126-26 always ìžì•• 46-126-126-12 always ìžì•– 46-126-126-12-3 always ìžì•— 46-126-126-3 always ìžì•˜ 46-126-126-34 always ìžì•™ 46-126-126-2356 always ìžì•š 46-126-126-13 always ìžì•› 46-126-126-23 always ìžì•œ 46-126-126-235 always ìžì• 46-126-126-236 always ìžì•ž 46-126-126-256 always ìžì•Ÿ 46-126-126-356 always ìžì•  46-126-1235 always ìžì•¡ 46-126-1235-1 always ìžì•¢ 46-126-1235-1-1 always ìžì•£ 46-126-1235-1-3 always ìžì•¤ 46-126-1235-25 always ìžì•¥ 46-126-1235-25-13 always ìžì•¦ 46-126-1235-25-356 always ìžì•§ 46-126-1235-35 always ìžì•¨ 46-126-1235-2 always ìžì•© 46-126-1235-2-1 always ìžì•ª 46-126-1235-2-26 always ìžì•« 46-126-1235-2-12 always ìžì•¬ 46-126-1235-2-3 always ìžì•­ 46-126-1235-2-236 always ìžì•® 46-126-1235-2-256 always ìžì•¯ 46-126-1235-2-356 always ìžì•° 46-126-1235-26 always ìžì•± 46-126-1235-12 always ìžì•² 46-126-1235-12-3 always ìžì•³ 46-126-1235-3 always ìžì•´ 46-126-1235-34 always ìžì•µ 46-126-1235-2356 always ìžì•¶ 46-126-1235-13 always ìžì•· 46-126-1235-23 always ìžì•¸ 46-126-1235-235 always ìžì•¹ 46-126-1235-236 always ìžì•º 46-126-1235-256 always ìžì•» 46-126-1235-356 always ìžì•¼ 46-126-345 always ìžì•½ 46-126-345-1 always ìžì•¾ 46-126-345-1-1 always ìžì•¿ 46-126-345-1-3 always ìžì–€ 46-126-345-25 always ìžì– 46-126-345-25-13 always ìžì–‚ 46-126-345-25-356 always ìžì–ƒ 46-126-345-35 always ìžì–„ 46-126-345-2 always ìžì–… 46-126-345-2-1 always ìžì–† 46-126-345-2-26 always ìžì–‡ 46-126-345-2-12 always ìžì–ˆ 46-126-345-2-3 always ìžì–‰ 46-126-345-2-236 always ìžì–Š 46-126-345-2-256 always ìžì–‹ 46-126-345-2-356 always ìžì–Œ 46-126-345-26 always ìžì– 46-126-345-12 always ìžì–Ž 46-126-345-12-3 always ìžì– 46-126-345-3 always ìžì– 46-126-345-34 always ìžì–‘ 46-126-345-2356 always ìžì–’ 46-126-345-13 always ìžì–“ 46-126-345-23 always ìžì–” 46-126-345-235 always ìžì–• 46-126-345-236 always ìžì–– 46-126-345-256 always ìžì–— 46-126-345-356 always ìžì–˜ 46-126-345-1235 always ìžì–™ 46-126-345-1235-1 always ìžì–š 46-126-345-1235-1-1 always ìžì–› 46-126-345-1235-1-3 always ìžì–œ 46-126-345-1235-25 always ìžì– 46-126-345-1235-25-13 always ìžì–ž 46-126-345-1235-25-356 always ìžì–Ÿ 46-126-345-1235-35 always ìžì–  46-126-345-1235-2 always ìžì–¡ 46-126-345-1235-2-1 always ìžì–¢ 46-126-345-1235-2-26 always ìžì–£ 46-126-345-1235-2-12 always ìžì–¤ 46-126-345-1235-2-3 always ìžì–¥ 46-126-345-1235-2-236 always ìžì–¦ 46-126-345-1235-2-256 always ìžì–§ 46-126-345-1235-2-356 always ìžì–¨ 46-126-345-1235-26 always ìžì–© 46-126-345-1235-12 always ìžì–ª 46-126-345-1235-12-3 always ìžì–« 46-126-345-1235-3 always ìžì–¬ 46-126-345-1235-34 always ìžì–­ 46-126-345-1235-2356 always ìžì–® 46-126-345-1235-13 always ìžì–¯ 46-126-345-1235-23 always ìžì–° 46-126-345-1235-235 always ìžì–± 46-126-345-1235-236 always ìžì–² 46-126-345-1235-256 always ìžì–³ 46-126-345-1235-356 always ìžì–´ 46-126-234 always ìžì–µ 46-126-1456 always ìžì–¶ 46-126-1456-1 always ìžì–· 46-126-1456-3 always ìžì–¸ 46-126-23456 always ìžì–¹ 46-126-23456-13 always ìžì–º 46-126-23456-356 always ìžì–» 46-126-234-35 always ìžì–¼ 46-126-2345 always ìžì–½ 46-126-2345-1 always ìžì–¾ 46-126-2345-26 always ìžì–¿ 46-126-2345-12 always ìžì—€ 46-126-2345-3 always ìžì— 46-126-2345-236 always ìžì—‚ 46-126-2345-256 always ìžì—ƒ 46-126-2345-356 always ìžì—„ 46-126-234-26 always ìžì—… 46-126-234-12 always ìžì—† 46-126-234-12-3 always ìžì—‡ 46-126-234-3 always ìžì—ˆ 46-126-234-34 always ìžì—‰ 46-126-234-2356 always ìžì—Š 46-126-234-13 always ìžì—‹ 46-126-234-23 always ìžì—Œ 46-126-234-235 always ìžì— 46-126-234-236 always ìžì—Ž 46-126-234-256 always ìžì— 46-126-234-356 always ìžì— 46-126-1345 always ìžì—‘ 46-126-1345-1 always ìžì—’ 46-126-1345-1-1 always ìžì—“ 46-126-1345-1-3 always ìžì—” 46-126-1345-25 always ìžì—• 46-126-1345-25-13 always ìžì—– 46-126-1345-25-356 always ìžì—— 46-126-1345-35 always ìžì—˜ 46-126-1345-2 always ìžì—™ 46-126-1345-2-1 always ìžì—š 46-126-1345-2-26 always ìžì—› 46-126-1345-2-12 always ìžì—œ 46-126-1345-2-3 always ìžì— 46-126-1345-2-236 always ìžì—ž 46-126-1345-2-256 always ìžì—Ÿ 46-126-1345-2-356 always ìžì—  46-126-1345-26 always ìžì—¡ 46-126-1345-12 always ìžì—¢ 46-126-1345-12-3 always ìžì—£ 46-126-1345-3 always ìžì—¤ 46-126-1345-34 always ìžì—¥ 46-126-1345-2356 always ìžì—¦ 46-126-1345-13 always ìžì—§ 46-126-1345-23 always ìžì—¨ 46-126-1345-235 always ìžì—© 46-126-1345-236 always ìžì—ª 46-126-1345-256 always ìžì—« 46-126-1345-356 always ìžì—¬ 46-126-156 always ìžì—­ 46-126-156-1 always ìžì—® 46-126-156-1-1 always ìžì—¯ 46-126-156-1-3 always ìžì—° 46-126-16 always ìžì—± 46-126-16-13 always ìžì—² 46-126-16-356 always ìžì—´ 46-126-1256 always ìžì—µ 46-126-1256-1 always ìžì—¶ 46-126-1256-26 always ìžì—· 46-126-1256-12 always ìžì—¸ 46-126-1256-3 always ìžì—¹ 46-126-1256-236 always ìžì—º 46-126-1256-256 always ìžì—» 46-126-1256-356 always ìžì—¼ 46-126-156-26 always ìžì—½ 46-126-156-12 always ìžì—¾ 46-126-156-12-3 always ìžì—¿ 46-126-156-3 always ìžì˜€ 46-126-156-34 always ìžì˜ 46-126-12456 always ìžì˜‚ 46-126-156-13 always ìžì˜ƒ 46-126-156-23 always ìžì˜„ 46-126-156-235 always ìžì˜… 46-126-156-236 always ìžì˜† 46-126-156-256 always ìžì˜‡ 46-126-156-356 always ìžì˜ˆ 46-126-34 always ìžì˜‰ 46-126-34-1 always ìžì˜Š 46-126-34-1-1 always ìžì˜‹ 46-126-34-1-3 always ìžì˜Œ 46-126-34-25 always ìžì˜ 46-126-34-25-13 always ìžì˜Ž 46-126-34-25-356 always ìžì˜ 46-126-34-35 always ìžì˜ 46-126-34-2 always ìžì˜‘ 46-126-34-2-1 always ìžì˜’ 46-126-34-2-26 always ìžì˜“ 46-126-34-2-12 always ìžì˜” 46-126-34-2-3 always ìžì˜• 46-126-34-2-236 always ìžì˜– 46-126-34-2-256 always ìžì˜— 46-126-34-2-356 always ìžì˜˜ 46-126-34-26 always ìžì˜™ 46-126-34-12 always ìžì˜š 46-126-34-12-3 always ìžì˜› 46-126-34-3 always ìžì˜œ 46-126-34-34 always ìžì˜ 46-126-34-2356 always ìžì˜ž 46-126-34-13 always ìžì˜Ÿ 46-126-34-23 always ìžì˜  46-126-34-235 always ìžì˜¡ 46-126-34-236 always ìžì˜¢ 46-126-34-256 always ìžì˜£ 46-126-34-356 always ìžì˜¤ 46-126-136 always ìžì˜¥ 46-126-1346 always ìžì˜¦ 46-126-1346-1 always ìžì˜§ 46-126-1346-3 always ìžì˜¨ 46-126-12356 always ìžì˜© 46-126-12356-13 always ìžì˜ª 46-126-12356-356 always ìžì˜« 46-126-136-35 always ìžì˜¬ 46-126-136-2 always ìžì˜­ 46-126-136-2-1 always ìžì˜® 46-126-136-2-26 always ìžì˜¯ 46-126-136-2-12 always ìžì˜° 46-126-136-2-3 always ìžì˜± 46-126-136-2-236 always ìžì˜² 46-126-136-2-256 always ìžì˜³ 46-126-136-2-356 always ìžì˜´ 46-126-136-26 always ìžì˜µ 46-126-136-12 always ìžì˜¶ 46-126-136-12-3 always ìžì˜· 46-126-136-3 always ìžì˜¸ 46-126-136-34 always ìžì˜¹ 46-126-123456 always ìžì˜º 46-126-136-13 always ìžì˜» 46-126-136-23 always ìžì˜¼ 46-126-136-235 always ìžì˜½ 46-126-136-236 always ìžì˜¾ 46-126-136-256 always ìžì˜¿ 46-126-136-356 always ìžì™€ 46-126-1236 always ìžì™ 46-126-1236-1 always ìžì™‚ 46-126-1236-1-1 always ìžì™ƒ 46-126-1236-1-3 always ìžì™„ 46-126-1236-25 always ìžì™… 46-126-1236-25-13 always ìžì™† 46-126-1236-25-356 always ìžì™‡ 46-126-1236-35 always ìžì™ˆ 46-126-1236-2 always ìžì™‰ 46-126-1236-2-1 always ìžì™Š 46-126-1236-2-26 always ìžì™‹ 46-126-1236-2-12 always ìžì™Œ 46-126-1236-2-3 always ìžì™ 46-126-1236-2-236 always ìžì™Ž 46-126-1236-2-256 always ìžì™ 46-126-1236-2-356 always ìžì™ 46-126-1236-26 always ìžì™‘ 46-126-1236-12 always ìžì™’ 46-126-1236-12-3 always ìžì™“ 46-126-1236-3 always ìžì™” 46-126-1236-34 always ìžì™• 46-126-1236-2356 always ìžì™– 46-126-1236-13 always ìžì™— 46-126-1236-23 always ìžì™˜ 46-126-1236-235 always ìžì™™ 46-126-1236-236 always ìžì™š 46-126-1236-256 always ìžì™› 46-126-1236-356 always ìžì™œ 46-126-1236-1235 always ìžì™ 46-126-1236-1235-1 always ìžì™ž 46-126-1236-1235-1-1 always ìžì™Ÿ 46-126-1236-1235-1-3 always ìžì™  46-126-1236-1235-25 always ìžì™¡ 46-126-1236-1235-25-13 always ìžì™¢ 46-126-1236-1235-25-356 always ìžì™£ 46-126-1236-1235-35 always ìžì™¤ 46-126-1236-1235-2 always ìžì™¥ 46-126-1236-1235-2-1 always ìžì™¦ 46-126-1236-1235-2-26 always ìžì™§ 46-126-1236-1235-2-12 always ìžì™¨ 46-126-1236-1235-2-3 always ìžì™© 46-126-1236-1235-2-236 always ìžì™ª 46-126-1236-1235-2-256 always ìžì™« 46-126-1236-1235-2-356 always ìžì™¬ 46-126-1236-1235-26 always ìžì™­ 46-126-1236-1235-12 always ìžì™® 46-126-1236-1235-12-3 always ìžì™¯ 46-126-1236-1235-3 always ìžì™° 46-126-1236-1235-34 always ìžì™± 46-126-1236-1235-2356 always ìžì™² 46-126-1236-1235-13 always ìžì™³ 46-126-1236-1235-23 always ìžì™´ 46-126-1236-1235-235 always ìžì™µ 46-126-1236-1235-236 always ìžì™¶ 46-126-1236-1235-256 always ìžì™· 46-126-1236-1235-356 always ìžì™¸ 46-126-13456 always ìžì™¹ 46-126-13456-1 always ìžì™º 46-126-13456-1-1 always ìžì™» 46-126-13456-1-3 always ìžì™¼ 46-126-13456-25 always ìžì™½ 46-126-13456-25-13 always ìžì™¾ 46-126-13456-25-356 always ìžì™¿ 46-126-13456-35 always ìžìš€ 46-126-13456-2 always ìžìš 46-126-13456-2-1 always ìžìš‚ 46-126-13456-2-26 always ìžìšƒ 46-126-13456-2-12 always ìžìš„ 46-126-13456-2-3 always ìžìš… 46-126-13456-2-236 always ìžìš† 46-126-13456-2-256 always ìžìš‡ 46-126-13456-2-356 always ìžìšˆ 46-126-13456-26 always ìžìš‰ 46-126-13456-12 always ìžìšŠ 46-126-13456-12-3 always ìžìš‹ 46-126-13456-3 always ìžìšŒ 46-126-13456-34 always ìžìš 46-126-13456-2356 always ìžìšŽ 46-126-13456-13 always ìžìš 46-126-13456-23 always ìžìš 46-126-13456-235 always ìžìš‘ 46-126-13456-236 always ìžìš’ 46-126-13456-256 always ìžìš“ 46-126-13456-356 always ìžìš” 46-126-346 always ìžìš• 46-126-346-1 always ìžìš– 46-126-346-1-1 always ìžìš— 46-126-346-1-3 always ìžìš˜ 46-126-346-25 always ìžìš™ 46-126-346-25-13 always ìžìšš 46-126-346-25-356 always ìžìš› 46-126-346-35 always ìžìšœ 46-126-346-2 always ìžìš 46-126-346-2-1 always ìžìšž 46-126-346-2-26 always ìžìšŸ 46-126-346-2-12 always ìžìš  46-126-346-2-3 always ìžìš¡ 46-126-346-2-236 always ìžìš¢ 46-126-346-2-256 always ìžìš£ 46-126-346-2-356 always ìžìš¤ 46-126-346-26 always ìžìš¥ 46-126-346-12 always ìžìš¦ 46-126-346-12-3 always ìžìš§ 46-126-346-3 always ìžìš¨ 46-126-346-34 always ìžìš© 46-126-346-2356 always ìžìšª 46-126-346-13 always ìžìš« 46-126-346-23 always ìžìš¬ 46-126-346-235 always ìžìš­ 46-126-346-236 always ìžìš® 46-126-346-256 always ìžìš¯ 46-126-346-356 always ìžìš° 46-126-134 always ìžìš± 46-126-134-1 always ìžìš² 46-126-134-1-1 always ìžìš³ 46-126-134-1-3 always ìžìš´ 46-126-1245 always ìžìšµ 46-126-1245-13 always ìžìš¶ 46-126-1245-356 always ìžìš· 46-126-134-35 always ìžìš¸ 46-126-12346 always ìžìš¹ 46-126-12346-1 always ìžìšº 46-126-12346-26 always ìžìš» 46-126-12346-12 always ìžìš¼ 46-126-12346-3 always ìžìš½ 46-126-12346-236 always ìžìš¾ 46-126-12346-256 always ìžìš¿ 46-126-12346-356 always ìžì›€ 46-126-134-26 always ìžì› 46-126-134-12 always ìžì›‚ 46-126-134-12-3 always ìžì›ƒ 46-126-134-3 always ìžì›„ 46-126-134-34 always ìžì›… 46-126-134-2356 always ìžì›† 46-126-134-13 always ìžì›‡ 46-126-134-23 always ìžì›ˆ 46-126-134-235 always ìžì›‰ 46-126-134-236 always ìžì›Š 46-126-134-256 always ìžì›‹ 46-126-134-356 always ìžì›Œ 46-126-1234 always ìžì› 46-126-1234-1 always ìžì›Ž 46-126-1234-1-1 always ìžì› 46-126-1234-1-3 always ìžì› 46-126-1234-25 always ìžì›‘ 46-126-1234-25-13 always ìžì›’ 46-126-1234-25-356 always ìžì›“ 46-126-1234-35 always ìžì›” 46-126-1234-2 always ìžì›• 46-126-1234-2-1 always ìžì›– 46-126-1234-2-26 always ìžì›— 46-126-1234-2-12 always ìžì›˜ 46-126-1234-2-3 always ìžì›™ 46-126-1234-2-236 always ìžì›š 46-126-1234-2-256 always ìžì›› 46-126-1234-2-356 always ìžì›œ 46-126-1234-26 always ìžì› 46-126-1234-12 always ìžì›ž 46-126-1234-12-3 always ìžì›Ÿ 46-126-1234-3 always ìžì›  46-126-1234-34 always ìžì›¡ 46-126-1234-2356 always ìžì›¢ 46-126-1234-13 always ìžì›£ 46-126-1234-23 always ìžì›¤ 46-126-1234-235 always ìžì›¥ 46-126-1234-236 always ìžì›¦ 46-126-1234-256 always ìžì›§ 46-126-1234-356 always ìžì›¨ 46-126-1234-1235 always ìžì›© 46-126-1234-1235-1 always ìžì›ª 46-126-1234-1235-1-1 always ìžì›« 46-126-1234-1235-1-3 always ìžì›¬ 46-126-1234-1235-25 always ìžì›­ 46-126-1234-1235-25-13 always ìžì›® 46-126-1234-1235-25-356 always ìžì›¯ 46-126-1234-1235-35 always ìžì›° 46-126-1234-1235-2 always ìžì›± 46-126-1234-1235-2-1 always ìžì›² 46-126-1234-1235-2-26 always ìžì›³ 46-126-1234-1235-2-12 always ìžì›´ 46-126-1234-1235-2-3 always ìžì›µ 46-126-1234-1235-2-236 always ìžì›¶ 46-126-1234-1235-2-256 always ìžì›· 46-126-1234-1235-2-356 always ìžì›¸ 46-126-1234-1235-26 always ìžì›¹ 46-126-1234-1235-12 always ìžì›º 46-126-1234-1235-12-3 always ìžì›» 46-126-1234-1235-3 always ìžì›¼ 46-126-1234-1235-34 always ìžì›½ 46-126-1234-1235-2356 always ìžì›¾ 46-126-1234-1235-13 always ìžì›¿ 46-126-1234-1235-23 always ìžìœ€ 46-126-1234-1235-235 always ìžìœ 46-126-1234-1235-236 always ìžìœ‚ 46-126-1234-1235-256 always ìžìœƒ 46-126-1234-1235-356 always ìžìœ„ 46-126-134-1235 always ìžìœ… 46-126-134-1235-1 always ìžìœ† 46-126-134-1235-1-1 always ìžìœ‡ 46-126-134-1235-1-3 always ìžìœˆ 46-126-134-1235-25 always ìžìœ‰ 46-126-134-1235-25-13 always ìžìœŠ 46-126-134-1235-25-356 always ìžìœ‹ 46-126-134-1235-35 always ìžìœŒ 46-126-134-1235-2 always ìžìœ 46-126-134-1235-2-1 always ìžìœŽ 46-126-134-1235-2-26 always ìžìœ 46-126-134-1235-2-12 always ìžìœ 46-126-134-1235-2-3 always ìžìœ‘ 46-126-134-1235-2-236 always ìžìœ’ 46-126-134-1235-2-256 always ìžìœ“ 46-126-134-1235-2-356 always ìžìœ” 46-126-134-1235-26 always ìžìœ• 46-126-134-1235-12 always ìžìœ– 46-126-134-1235-12-3 always ìžìœ— 46-126-134-1235-3 always ìžìœ˜ 46-126-134-1235-34 always ìžìœ™ 46-126-134-1235-2356 always ìžìœš 46-126-134-1235-13 always ìžìœ› 46-126-134-1235-23 always ìžìœœ 46-126-134-1235-235 always ìžìœ 46-126-134-1235-236 always ìžìœž 46-126-134-1235-256 always ìžìœŸ 46-126-134-1235-356 always ìžìœ  46-126-146 always ìžìœ¡ 46-126-146-1 always ìžìœ¢ 46-126-146-1-1 always ìžìœ£ 46-126-146-1-3 always ìžìœ¤ 46-126-146-25 always ìžìœ¥ 46-126-146-25-13 always ìžìœ¦ 46-126-146-25-356 always ìžìœ§ 46-126-146-35 always ìžìœ¨ 46-126-146-2 always ìžìœ© 46-126-146-2-1 always ìžìœª 46-126-146-2-26 always ìžìœ« 46-126-146-2-12 always ìžìœ¬ 46-126-146-2-3 always ìžìœ­ 46-126-146-2-236 always ìžìœ® 46-126-146-2-256 always ìžìœ¯ 46-126-146-2-356 always ìžìœ° 46-126-146-26 always ìžìœ± 46-126-146-12 always ìžìœ² 46-126-146-12-3 always ìžìœ³ 46-126-146-3 always ìžìœ´ 46-126-146-34 always ìžìœµ 46-126-146-2356 always ìžìœ¶ 46-126-146-13 always ìžìœ· 46-126-146-23 always ìžìœ¸ 46-126-146-235 always ìžìœ¹ 46-126-146-236 always ìžìœº 46-126-146-256 always ìžìœ» 46-126-146-356 always ìžìœ¼ 46-126-246 always ìžìœ½ 46-126-246-1 always ìžìœ¾ 46-126-246-1-1 always ìžìœ¿ 46-126-246-1-3 always ìžì€ 46-126-1356 always ìžì 46-126-1356-13 always ìžì‚ 46-126-1356-356 always ìžìƒ 46-126-246-35 always ìžì„ 46-126-2346 always ìžì… 46-126-2346-1 always ìžì† 46-126-2346-26 always ìžì‡ 46-126-2346-12 always ìžìˆ 46-126-2346-3 always ìžì‰ 46-126-2346-236 always ìžìŠ 46-126-2346-256 always ìžì‹ 46-126-2346-356 always ìžìŒ 46-126-246-26 always ìžì 46-126-246-12 always ìžìŽ 46-126-246-12-3 always ìžì 46-126-246-3 always ìžì 46-126-246-34 always ìžì‘ 46-126-246-2356 always ìžì’ 46-126-246-13 always ìžì“ 46-126-246-23 always ìžì” 46-126-246-235 always ìžì• 46-126-246-236 always ìžì– 46-126-246-256 always ìžì— 46-126-246-356 always ìžì˜ 46-126-2456 always ìžì™ 46-126-2456-1 always ìžìš 46-126-2456-1-1 always ìžì› 46-126-2456-1-3 always ìžìœ 46-126-2456-25 always ìžì 46-126-2456-25-13 always ìžìž 46-126-2456-25-356 always ìžìŸ 46-126-2456-35 always ìžì  46-126-2456-2 always ìžì¡ 46-126-2456-2-1 always ìžì¢ 46-126-2456-2-26 always ìžì£ 46-126-2456-2-12 always ìžì¤ 46-126-2456-2-3 always ìžì¥ 46-126-2456-2-236 always ìžì¦ 46-126-2456-2-256 always ìžì§ 46-126-2456-2-356 always ìžì¨ 46-126-2456-26 always ìžì© 46-126-2456-12 always ìžìª 46-126-2456-12-3 always ìžì« 46-126-2456-3 always ìžì¬ 46-126-2456-34 always ìžì­ 46-126-2456-2356 always ìžì® 46-126-2456-13 always ìžì¯ 46-126-2456-23 always ìžì° 46-126-2456-235 always ìžì± 46-126-2456-236 always ìžì² 46-126-2456-256 always ìžì³ 46-126-2456-356 always ìžì´ 46-126-135 always ìžìµ 46-126-135-1 always ìžì¶ 46-126-135-1-1 always ìžì· 46-126-135-1-3 always ìžì¸ 46-126-12345 always ìžì¹ 46-126-12345-13 always ìžìº 46-126-12345-356 always ìžì» 46-126-135-35 always ìžì¼ 46-126-135-2 always ìžì½ 46-126-135-2-1 always ìžì¾ 46-126-135-2-26 always ìžì¿ 46-126-135-2-12 always ìžìž€ 46-126-135-2-3 always ìžìž 46-126-135-2-236 always ìžìž‚ 46-126-135-2-256 always ìžìžƒ 46-126-135-2-356 always ìžìž„ 46-126-135-26 always ìžìž… 46-126-135-12 always ìžìž† 46-126-135-12-3 always ìžìž‡ 46-126-135-3 always ìžìžˆ 46-126-135-34 always ìžìž‰ 46-126-135-2356 always ìžìžŠ 46-126-135-13 always ìžìž‹ 46-126-135-23 always ìžìžŒ 46-126-135-235 always ìžìž 46-126-135-236 always ìžìžŽ 46-126-135-256 always ìžìž 46-126-135-356 always 짜아 6-46-126-126 always 짜악 6-46-126-126-1 always 짜앆 6-46-126-126-1-1 always 짜앇 6-46-126-126-1-3 always 짜안 6-46-126-126-25 always 짜앉 6-46-126-126-25-13 always 짜않 6-46-126-126-25-356 always 짜앋 6-46-126-126-35 always 짜알 6-46-126-126-2 always ì§œì• 6-46-126-126-2-1 always 짜앎 6-46-126-126-2-26 always ì§œì• 6-46-126-126-2-12 always ì§œì• 6-46-126-126-2-3 always 짜앑 6-46-126-126-2-236 always 짜앒 6-46-126-126-2-256 always 짜앓 6-46-126-126-2-356 always 짜암 6-46-126-126-26 always 짜압 6-46-126-126-12 always 짜앖 6-46-126-126-12-3 always 짜앗 6-46-126-126-3 always 짜았 6-46-126-126-34 always 짜앙 6-46-126-126-2356 always 짜앚 6-46-126-126-13 always 짜앛 6-46-126-126-23 always 짜앜 6-46-126-126-235 always ì§œì• 6-46-126-126-236 always 짜앞 6-46-126-126-256 always 짜앟 6-46-126-126-356 always 짜애 6-46-126-1235 always 짜액 6-46-126-1235-1 always 짜앢 6-46-126-1235-1-1 always 짜앣 6-46-126-1235-1-3 always 짜앤 6-46-126-1235-25 always 짜앥 6-46-126-1235-25-13 always 짜앦 6-46-126-1235-25-356 always 짜앧 6-46-126-1235-35 always 짜앨 6-46-126-1235-2 always 짜앩 6-46-126-1235-2-1 always 짜앪 6-46-126-1235-2-26 always 짜앫 6-46-126-1235-2-12 always 짜앬 6-46-126-1235-2-3 always 짜앭 6-46-126-1235-2-236 always 짜앮 6-46-126-1235-2-256 always 짜앯 6-46-126-1235-2-356 always 짜앰 6-46-126-1235-26 always 짜앱 6-46-126-1235-12 always 짜앲 6-46-126-1235-12-3 always 짜앳 6-46-126-1235-3 always 짜앴 6-46-126-1235-34 always 짜앵 6-46-126-1235-2356 always 짜앶 6-46-126-1235-13 always 짜앷 6-46-126-1235-23 always 짜앸 6-46-126-1235-235 always 짜앹 6-46-126-1235-236 always 짜앺 6-46-126-1235-256 always 짜앻 6-46-126-1235-356 always 짜야 6-46-126-345 always 짜약 6-46-126-345-1 always 짜앾 6-46-126-345-1-1 always 짜앿 6-46-126-345-1-3 always 짜얀 6-46-126-345-25 always ì§œì– 6-46-126-345-25-13 always 짜얂 6-46-126-345-25-356 always 짜얃 6-46-126-345-35 always 짜얄 6-46-126-345-2 always 짜얅 6-46-126-345-2-1 always 짜얆 6-46-126-345-2-26 always 짜얇 6-46-126-345-2-12 always 짜얈 6-46-126-345-2-3 always 짜얉 6-46-126-345-2-236 always 짜얊 6-46-126-345-2-256 always 짜얋 6-46-126-345-2-356 always 짜얌 6-46-126-345-26 always ì§œì– 6-46-126-345-12 always 짜얎 6-46-126-345-12-3 always ì§œì– 6-46-126-345-3 always ì§œì– 6-46-126-345-34 always 짜양 6-46-126-345-2356 always 짜얒 6-46-126-345-13 always 짜얓 6-46-126-345-23 always 짜얔 6-46-126-345-235 always 짜얕 6-46-126-345-236 always 짜얖 6-46-126-345-256 always 짜얗 6-46-126-345-356 always 짜얘 6-46-126-345-1235 always 짜얙 6-46-126-345-1235-1 always 짜얚 6-46-126-345-1235-1-1 always 짜얛 6-46-126-345-1235-1-3 always 짜얜 6-46-126-345-1235-25 always ì§œì– 6-46-126-345-1235-25-13 always 짜얞 6-46-126-345-1235-25-356 always 짜얟 6-46-126-345-1235-35 always 짜얠 6-46-126-345-1235-2 always 짜얡 6-46-126-345-1235-2-1 always 짜얢 6-46-126-345-1235-2-26 always 짜얣 6-46-126-345-1235-2-12 always 짜얤 6-46-126-345-1235-2-3 always 짜얥 6-46-126-345-1235-2-236 always 짜얦 6-46-126-345-1235-2-256 always 짜얧 6-46-126-345-1235-2-356 always 짜얨 6-46-126-345-1235-26 always 짜얩 6-46-126-345-1235-12 always 짜얪 6-46-126-345-1235-12-3 always 짜얫 6-46-126-345-1235-3 always 짜얬 6-46-126-345-1235-34 always 짜얭 6-46-126-345-1235-2356 always 짜얮 6-46-126-345-1235-13 always 짜얯 6-46-126-345-1235-23 always 짜얰 6-46-126-345-1235-235 always 짜얱 6-46-126-345-1235-236 always 짜얲 6-46-126-345-1235-256 always 짜얳 6-46-126-345-1235-356 always 짜어 6-46-126-234 always 짜억 6-46-126-1456 always 짜얶 6-46-126-1456-1 always 짜얷 6-46-126-1456-3 always 짜언 6-46-126-23456 always 짜얹 6-46-126-23456-13 always 짜얺 6-46-126-23456-356 always 짜얻 6-46-126-234-35 always 짜얼 6-46-126-2345 always 짜얽 6-46-126-2345-1 always 짜얾 6-46-126-2345-26 always 짜얿 6-46-126-2345-12 always 짜엀 6-46-126-2345-3 always ì§œì— 6-46-126-2345-236 always 짜엂 6-46-126-2345-256 always 짜엃 6-46-126-2345-356 always 짜엄 6-46-126-234-26 always 짜업 6-46-126-234-12 always 짜없 6-46-126-234-12-3 always 짜엇 6-46-126-234-3 always 짜었 6-46-126-234-34 always 짜엉 6-46-126-234-2356 always 짜엊 6-46-126-234-13 always 짜엋 6-46-126-234-23 always 짜엌 6-46-126-234-235 always ì§œì— 6-46-126-234-236 always 짜엎 6-46-126-234-256 always ì§œì— 6-46-126-234-356 always ì§œì— 6-46-126-1345 always 짜엑 6-46-126-1345-1 always 짜엒 6-46-126-1345-1-1 always 짜엓 6-46-126-1345-1-3 always 짜엔 6-46-126-1345-25 always 짜엕 6-46-126-1345-25-13 always 짜엖 6-46-126-1345-25-356 always 짜엗 6-46-126-1345-35 always 짜엘 6-46-126-1345-2 always 짜엙 6-46-126-1345-2-1 always 짜엚 6-46-126-1345-2-26 always 짜엛 6-46-126-1345-2-12 always 짜엜 6-46-126-1345-2-3 always ì§œì— 6-46-126-1345-2-236 always 짜엞 6-46-126-1345-2-256 always 짜엟 6-46-126-1345-2-356 always 짜엠 6-46-126-1345-26 always 짜엡 6-46-126-1345-12 always 짜엢 6-46-126-1345-12-3 always 짜엣 6-46-126-1345-3 always 짜엤 6-46-126-1345-34 always 짜엥 6-46-126-1345-2356 always 짜엦 6-46-126-1345-13 always 짜엧 6-46-126-1345-23 always 짜엨 6-46-126-1345-235 always 짜엩 6-46-126-1345-236 always 짜엪 6-46-126-1345-256 always 짜엫 6-46-126-1345-356 always 짜여 6-46-126-156 always 짜역 6-46-126-156-1 always 짜엮 6-46-126-156-1-1 always 짜엯 6-46-126-156-1-3 always 짜연 6-46-126-16 always 짜엱 6-46-126-16-13 always 짜엲 6-46-126-16-356 always 짜열 6-46-126-1256 always 짜엵 6-46-126-1256-1 always 짜엶 6-46-126-1256-26 always 짜엷 6-46-126-1256-12 always 짜엸 6-46-126-1256-3 always 짜엹 6-46-126-1256-236 always 짜엺 6-46-126-1256-256 always 짜엻 6-46-126-1256-356 always 짜염 6-46-126-156-26 always 짜엽 6-46-126-156-12 always 짜엾 6-46-126-156-12-3 always 짜엿 6-46-126-156-3 always 짜였 6-46-126-156-34 always ì§œì˜ 6-46-126-12456 always 짜옂 6-46-126-156-13 always 짜옃 6-46-126-156-23 always 짜옄 6-46-126-156-235 always 짜옅 6-46-126-156-236 always 짜옆 6-46-126-156-256 always 짜옇 6-46-126-156-356 always 짜예 6-46-126-34 always 짜옉 6-46-126-34-1 always 짜옊 6-46-126-34-1-1 always 짜옋 6-46-126-34-1-3 always 짜옌 6-46-126-34-25 always ì§œì˜ 6-46-126-34-25-13 always 짜옎 6-46-126-34-25-356 always ì§œì˜ 6-46-126-34-35 always ì§œì˜ 6-46-126-34-2 always 짜옑 6-46-126-34-2-1 always 짜옒 6-46-126-34-2-26 always 짜옓 6-46-126-34-2-12 always 짜옔 6-46-126-34-2-3 always 짜옕 6-46-126-34-2-236 always 짜옖 6-46-126-34-2-256 always 짜옗 6-46-126-34-2-356 always 짜옘 6-46-126-34-26 always 짜옙 6-46-126-34-12 always 짜옚 6-46-126-34-12-3 always 짜옛 6-46-126-34-3 always 짜옜 6-46-126-34-34 always ì§œì˜ 6-46-126-34-2356 always 짜옞 6-46-126-34-13 always 짜옟 6-46-126-34-23 always 짜옠 6-46-126-34-235 always 짜옡 6-46-126-34-236 always 짜옢 6-46-126-34-256 always 짜옣 6-46-126-34-356 always 짜오 6-46-126-136 always 짜옥 6-46-126-1346 always 짜옦 6-46-126-1346-1 always 짜옧 6-46-126-1346-3 always 짜온 6-46-126-12356 always 짜옩 6-46-126-12356-13 always 짜옪 6-46-126-12356-356 always 짜옫 6-46-126-136-35 always 짜올 6-46-126-136-2 always 짜옭 6-46-126-136-2-1 always 짜옮 6-46-126-136-2-26 always 짜옯 6-46-126-136-2-12 always 짜옰 6-46-126-136-2-3 always 짜옱 6-46-126-136-2-236 always 짜옲 6-46-126-136-2-256 always 짜옳 6-46-126-136-2-356 always 짜옴 6-46-126-136-26 always 짜옵 6-46-126-136-12 always 짜옶 6-46-126-136-12-3 always 짜옷 6-46-126-136-3 always 짜옸 6-46-126-136-34 always 짜옹 6-46-126-123456 always 짜옺 6-46-126-136-13 always 짜옻 6-46-126-136-23 always 짜옼 6-46-126-136-235 always 짜옽 6-46-126-136-236 always 짜옾 6-46-126-136-256 always 짜옿 6-46-126-136-356 always 짜와 6-46-126-1236 always ì§œì™ 6-46-126-1236-1 always 짜왂 6-46-126-1236-1-1 always 짜왃 6-46-126-1236-1-3 always 짜완 6-46-126-1236-25 always 짜왅 6-46-126-1236-25-13 always 짜왆 6-46-126-1236-25-356 always 짜왇 6-46-126-1236-35 always 짜왈 6-46-126-1236-2 always 짜왉 6-46-126-1236-2-1 always 짜왊 6-46-126-1236-2-26 always 짜왋 6-46-126-1236-2-12 always 짜왌 6-46-126-1236-2-3 always ì§œì™ 6-46-126-1236-2-236 always 짜왎 6-46-126-1236-2-256 always ì§œì™ 6-46-126-1236-2-356 always ì§œì™ 6-46-126-1236-26 always 짜왑 6-46-126-1236-12 always 짜왒 6-46-126-1236-12-3 always 짜왓 6-46-126-1236-3 always 짜왔 6-46-126-1236-34 always 짜왕 6-46-126-1236-2356 always 짜왖 6-46-126-1236-13 always 짜왗 6-46-126-1236-23 always 짜왘 6-46-126-1236-235 always 짜왙 6-46-126-1236-236 always 짜왚 6-46-126-1236-256 always 짜왛 6-46-126-1236-356 always 짜왜 6-46-126-1236-1235 always ì§œì™ 6-46-126-1236-1235-1 always 짜왞 6-46-126-1236-1235-1-1 always 짜왟 6-46-126-1236-1235-1-3 always 짜왠 6-46-126-1236-1235-25 always 짜왡 6-46-126-1236-1235-25-13 always 짜왢 6-46-126-1236-1235-25-356 always 짜왣 6-46-126-1236-1235-35 always 짜왤 6-46-126-1236-1235-2 always 짜왥 6-46-126-1236-1235-2-1 always 짜왦 6-46-126-1236-1235-2-26 always 짜왧 6-46-126-1236-1235-2-12 always 짜왨 6-46-126-1236-1235-2-3 always 짜왩 6-46-126-1236-1235-2-236 always 짜왪 6-46-126-1236-1235-2-256 always 짜왫 6-46-126-1236-1235-2-356 always 짜왬 6-46-126-1236-1235-26 always 짜왭 6-46-126-1236-1235-12 always 짜왮 6-46-126-1236-1235-12-3 always 짜왯 6-46-126-1236-1235-3 always 짜왰 6-46-126-1236-1235-34 always 짜왱 6-46-126-1236-1235-2356 always 짜왲 6-46-126-1236-1235-13 always 짜왳 6-46-126-1236-1235-23 always 짜왴 6-46-126-1236-1235-235 always 짜왵 6-46-126-1236-1235-236 always 짜왶 6-46-126-1236-1235-256 always 짜왷 6-46-126-1236-1235-356 always 짜외 6-46-126-13456 always 짜왹 6-46-126-13456-1 always 짜왺 6-46-126-13456-1-1 always 짜왻 6-46-126-13456-1-3 always 짜왼 6-46-126-13456-25 always 짜왽 6-46-126-13456-25-13 always 짜왾 6-46-126-13456-25-356 always 짜왿 6-46-126-13456-35 always 짜욀 6-46-126-13456-2 always ì§œìš 6-46-126-13456-2-1 always 짜욂 6-46-126-13456-2-26 always 짜욃 6-46-126-13456-2-12 always 짜욄 6-46-126-13456-2-3 always 짜욅 6-46-126-13456-2-236 always 짜욆 6-46-126-13456-2-256 always 짜욇 6-46-126-13456-2-356 always 짜욈 6-46-126-13456-26 always 짜욉 6-46-126-13456-12 always 짜욊 6-46-126-13456-12-3 always 짜욋 6-46-126-13456-3 always 짜욌 6-46-126-13456-34 always ì§œìš 6-46-126-13456-2356 always 짜욎 6-46-126-13456-13 always ì§œìš 6-46-126-13456-23 always ì§œìš 6-46-126-13456-235 always 짜욑 6-46-126-13456-236 always 짜욒 6-46-126-13456-256 always 짜욓 6-46-126-13456-356 always 짜요 6-46-126-346 always 짜욕 6-46-126-346-1 always 짜욖 6-46-126-346-1-1 always 짜욗 6-46-126-346-1-3 always 짜욘 6-46-126-346-25 always 짜욙 6-46-126-346-25-13 always 짜욚 6-46-126-346-25-356 always 짜욛 6-46-126-346-35 always 짜욜 6-46-126-346-2 always ì§œìš 6-46-126-346-2-1 always 짜욞 6-46-126-346-2-26 always 짜욟 6-46-126-346-2-12 always 짜욠 6-46-126-346-2-3 always 짜욡 6-46-126-346-2-236 always 짜욢 6-46-126-346-2-256 always 짜욣 6-46-126-346-2-356 always 짜욤 6-46-126-346-26 always 짜욥 6-46-126-346-12 always 짜욦 6-46-126-346-12-3 always 짜욧 6-46-126-346-3 always 짜욨 6-46-126-346-34 always 짜용 6-46-126-346-2356 always 짜욪 6-46-126-346-13 always 짜욫 6-46-126-346-23 always 짜욬 6-46-126-346-235 always 짜욭 6-46-126-346-236 always 짜욮 6-46-126-346-256 always 짜욯 6-46-126-346-356 always 짜우 6-46-126-134 always 짜욱 6-46-126-134-1 always 짜욲 6-46-126-134-1-1 always 짜욳 6-46-126-134-1-3 always 짜운 6-46-126-1245 always 짜욵 6-46-126-1245-13 always 짜욶 6-46-126-1245-356 always 짜욷 6-46-126-134-35 always 짜울 6-46-126-12346 always 짜욹 6-46-126-12346-1 always 짜욺 6-46-126-12346-26 always 짜욻 6-46-126-12346-12 always 짜욼 6-46-126-12346-3 always 짜욽 6-46-126-12346-236 always 짜욾 6-46-126-12346-256 always 짜욿 6-46-126-12346-356 always 짜움 6-46-126-134-26 always ì§œì› 6-46-126-134-12 always 짜웂 6-46-126-134-12-3 always 짜웃 6-46-126-134-3 always 짜웄 6-46-126-134-34 always 짜웅 6-46-126-134-2356 always 짜웆 6-46-126-134-13 always 짜웇 6-46-126-134-23 always 짜웈 6-46-126-134-235 always 짜웉 6-46-126-134-236 always 짜웊 6-46-126-134-256 always 짜웋 6-46-126-134-356 always 짜워 6-46-126-1234 always ì§œì› 6-46-126-1234-1 always 짜웎 6-46-126-1234-1-1 always ì§œì› 6-46-126-1234-1-3 always ì§œì› 6-46-126-1234-25 always 짜웑 6-46-126-1234-25-13 always 짜웒 6-46-126-1234-25-356 always 짜웓 6-46-126-1234-35 always 짜월 6-46-126-1234-2 always 짜웕 6-46-126-1234-2-1 always 짜웖 6-46-126-1234-2-26 always 짜웗 6-46-126-1234-2-12 always 짜웘 6-46-126-1234-2-3 always 짜웙 6-46-126-1234-2-236 always 짜웚 6-46-126-1234-2-256 always 짜웛 6-46-126-1234-2-356 always 짜웜 6-46-126-1234-26 always ì§œì› 6-46-126-1234-12 always 짜웞 6-46-126-1234-12-3 always 짜웟 6-46-126-1234-3 always 짜웠 6-46-126-1234-34 always 짜웡 6-46-126-1234-2356 always 짜웢 6-46-126-1234-13 always 짜웣 6-46-126-1234-23 always 짜웤 6-46-126-1234-235 always 짜웥 6-46-126-1234-236 always 짜웦 6-46-126-1234-256 always 짜웧 6-46-126-1234-356 always 짜웨 6-46-126-1234-1235 always 짜웩 6-46-126-1234-1235-1 always 짜웪 6-46-126-1234-1235-1-1 always 짜웫 6-46-126-1234-1235-1-3 always 짜웬 6-46-126-1234-1235-25 always 짜웭 6-46-126-1234-1235-25-13 always 짜웮 6-46-126-1234-1235-25-356 always 짜웯 6-46-126-1234-1235-35 always 짜웰 6-46-126-1234-1235-2 always 짜웱 6-46-126-1234-1235-2-1 always 짜웲 6-46-126-1234-1235-2-26 always 짜웳 6-46-126-1234-1235-2-12 always 짜웴 6-46-126-1234-1235-2-3 always 짜웵 6-46-126-1234-1235-2-236 always 짜웶 6-46-126-1234-1235-2-256 always 짜웷 6-46-126-1234-1235-2-356 always 짜웸 6-46-126-1234-1235-26 always 짜웹 6-46-126-1234-1235-12 always 짜웺 6-46-126-1234-1235-12-3 always 짜웻 6-46-126-1234-1235-3 always 짜웼 6-46-126-1234-1235-34 always 짜웽 6-46-126-1234-1235-2356 always 짜웾 6-46-126-1234-1235-13 always 짜웿 6-46-126-1234-1235-23 always 짜윀 6-46-126-1234-1235-235 always ì§œìœ 6-46-126-1234-1235-236 always 짜윂 6-46-126-1234-1235-256 always 짜윃 6-46-126-1234-1235-356 always 짜위 6-46-126-134-1235 always 짜윅 6-46-126-134-1235-1 always 짜윆 6-46-126-134-1235-1-1 always 짜윇 6-46-126-134-1235-1-3 always 짜윈 6-46-126-134-1235-25 always 짜윉 6-46-126-134-1235-25-13 always 짜윊 6-46-126-134-1235-25-356 always 짜윋 6-46-126-134-1235-35 always 짜윌 6-46-126-134-1235-2 always ì§œìœ 6-46-126-134-1235-2-1 always 짜윎 6-46-126-134-1235-2-26 always ì§œìœ 6-46-126-134-1235-2-12 always ì§œìœ 6-46-126-134-1235-2-3 always 짜윑 6-46-126-134-1235-2-236 always 짜윒 6-46-126-134-1235-2-256 always 짜윓 6-46-126-134-1235-2-356 always 짜윔 6-46-126-134-1235-26 always 짜윕 6-46-126-134-1235-12 always 짜윖 6-46-126-134-1235-12-3 always 짜윗 6-46-126-134-1235-3 always 짜윘 6-46-126-134-1235-34 always 짜윙 6-46-126-134-1235-2356 always 짜윚 6-46-126-134-1235-13 always 짜윛 6-46-126-134-1235-23 always 짜윜 6-46-126-134-1235-235 always ì§œìœ 6-46-126-134-1235-236 always 짜윞 6-46-126-134-1235-256 always 짜윟 6-46-126-134-1235-356 always 짜유 6-46-126-146 always 짜육 6-46-126-146-1 always 짜윢 6-46-126-146-1-1 always 짜윣 6-46-126-146-1-3 always 짜윤 6-46-126-146-25 always 짜윥 6-46-126-146-25-13 always 짜윦 6-46-126-146-25-356 always 짜윧 6-46-126-146-35 always 짜율 6-46-126-146-2 always 짜윩 6-46-126-146-2-1 always 짜윪 6-46-126-146-2-26 always 짜윫 6-46-126-146-2-12 always 짜윬 6-46-126-146-2-3 always 짜윭 6-46-126-146-2-236 always 짜윮 6-46-126-146-2-256 always 짜윯 6-46-126-146-2-356 always 짜윰 6-46-126-146-26 always 짜윱 6-46-126-146-12 always 짜윲 6-46-126-146-12-3 always 짜윳 6-46-126-146-3 always 짜윴 6-46-126-146-34 always 짜융 6-46-126-146-2356 always 짜윶 6-46-126-146-13 always 짜윷 6-46-126-146-23 always 짜윸 6-46-126-146-235 always 짜윹 6-46-126-146-236 always 짜윺 6-46-126-146-256 always 짜윻 6-46-126-146-356 always 짜으 6-46-126-246 always 짜윽 6-46-126-246-1 always 짜윾 6-46-126-246-1-1 always 짜윿 6-46-126-246-1-3 always ì§œì€ 6-46-126-1356 always ì§œì 6-46-126-1356-13 always ì§œì‚ 6-46-126-1356-356 always ì§œìƒ 6-46-126-246-35 always ì§œì„ 6-46-126-2346 always ì§œì… 6-46-126-2346-1 always ì§œì† 6-46-126-2346-26 always ì§œì‡ 6-46-126-2346-12 always ì§œìˆ 6-46-126-2346-3 always ì§œì‰ 6-46-126-2346-236 always ì§œìŠ 6-46-126-2346-256 always ì§œì‹ 6-46-126-2346-356 always ì§œìŒ 6-46-126-246-26 always ì§œì 6-46-126-246-12 always ì§œìŽ 6-46-126-246-12-3 always ì§œì 6-46-126-246-3 always ì§œì 6-46-126-246-34 always ì§œì‘ 6-46-126-246-2356 always ì§œì’ 6-46-126-246-13 always ì§œì“ 6-46-126-246-23 always ì§œì” 6-46-126-246-235 always ì§œì• 6-46-126-246-236 always ì§œì– 6-46-126-246-256 always ì§œì— 6-46-126-246-356 always ì§œì˜ 6-46-126-2456 always ì§œì™ 6-46-126-2456-1 always ì§œìš 6-46-126-2456-1-1 always ì§œì› 6-46-126-2456-1-3 always ì§œìœ 6-46-126-2456-25 always ì§œì 6-46-126-2456-25-13 always ì§œìž 6-46-126-2456-25-356 always ì§œìŸ 6-46-126-2456-35 always ì§œì  6-46-126-2456-2 always ì§œì¡ 6-46-126-2456-2-1 always ì§œì¢ 6-46-126-2456-2-26 always ì§œì£ 6-46-126-2456-2-12 always ì§œì¤ 6-46-126-2456-2-3 always ì§œì¥ 6-46-126-2456-2-236 always ì§œì¦ 6-46-126-2456-2-256 always ì§œì§ 6-46-126-2456-2-356 always ì§œì¨ 6-46-126-2456-26 always ì§œì© 6-46-126-2456-12 always ì§œìª 6-46-126-2456-12-3 always ì§œì« 6-46-126-2456-3 always ì§œì¬ 6-46-126-2456-34 always ì§œì­ 6-46-126-2456-2356 always ì§œì® 6-46-126-2456-13 always ì§œì¯ 6-46-126-2456-23 always ì§œì° 6-46-126-2456-235 always ì§œì± 6-46-126-2456-236 always ì§œì² 6-46-126-2456-256 always ì§œì³ 6-46-126-2456-356 always ì§œì´ 6-46-126-135 always ì§œìµ 6-46-126-135-1 always ì§œì¶ 6-46-126-135-1-1 always ì§œì· 6-46-126-135-1-3 always ì§œì¸ 6-46-126-12345 always ì§œì¹ 6-46-126-12345-13 always ì§œìº 6-46-126-12345-356 always ì§œì» 6-46-126-135-35 always ì§œì¼ 6-46-126-135-2 always ì§œì½ 6-46-126-135-2-1 always ì§œì¾ 6-46-126-135-2-26 always ì§œì¿ 6-46-126-135-2-12 always 짜잀 6-46-126-135-2-3 always ì§œìž 6-46-126-135-2-236 always 짜잂 6-46-126-135-2-256 always 짜잃 6-46-126-135-2-356 always 짜임 6-46-126-135-26 always 짜입 6-46-126-135-12 always 짜잆 6-46-126-135-12-3 always 짜잇 6-46-126-135-3 always 짜있 6-46-126-135-34 always 짜잉 6-46-126-135-2356 always 짜잊 6-46-126-135-13 always 짜잋 6-46-126-135-23 always 짜잌 6-46-126-135-235 always ì§œìž 6-46-126-135-236 always 짜잎 6-46-126-135-256 always ì§œìž 6-46-126-135-356 always ì¹´ì•„ 124-126-126 always ì¹´ì•… 124-126-126-1 always 카앆 124-126-126-1-1 always 카앇 124-126-126-1-3 always 카안 124-126-126-25 always 카앉 124-126-126-25-13 always 카않 124-126-126-25-356 always ì¹´ì•‹ 124-126-126-35 always 카알 124-126-126-2 always ì¹´ì• 124-126-126-2-1 always 카앎 124-126-126-2-26 always ì¹´ì• 124-126-126-2-12 always ì¹´ì• 124-126-126-2-3 always ì¹´ì•‘ 124-126-126-2-236 always ì¹´ì•’ 124-126-126-2-256 always ì¹´ì•“ 124-126-126-2-356 always ì¹´ì•” 124-126-126-26 always ì¹´ì•• 124-126-126-12 always ì¹´ì•– 124-126-126-12-3 always ì¹´ì•— 124-126-126-3 always 카았 124-126-126-34 always ì¹´ì•™ 124-126-126-2356 always 카앚 124-126-126-13 always ì¹´ì•› 124-126-126-23 always 카앜 124-126-126-235 always ì¹´ì• 124-126-126-236 always 카앞 124-126-126-256 always 카앟 124-126-126-356 always ì¹´ì•  124-126-1235 always ì¹´ì•¡ 124-126-1235-1 always ì¹´ì•¢ 124-126-1235-1-1 always ì¹´ì•£ 124-126-1235-1-3 always 카앤 124-126-1235-25 always ì¹´ì•¥ 124-126-1235-25-13 always 카앦 124-126-1235-25-356 always ì¹´ì•§ 124-126-1235-35 always 카앨 124-126-1235-2 always ì¹´ì•© 124-126-1235-2-1 always 카앪 124-126-1235-2-26 always ì¹´ì•« 124-126-1235-2-12 always 카앬 124-126-1235-2-3 always ì¹´ì•­ 124-126-1235-2-236 always ì¹´ì•® 124-126-1235-2-256 always 카앯 124-126-1235-2-356 always ì¹´ì•° 124-126-1235-26 always 카앱 124-126-1235-12 always 카앲 124-126-1235-12-3 always 카앳 124-126-1235-3 always ì¹´ì•´ 124-126-1235-34 always 카앵 124-126-1235-2356 always ì¹´ì•¶ 124-126-1235-13 always ì¹´ì•· 124-126-1235-23 always 카앸 124-126-1235-235 always 카앹 124-126-1235-236 always 카앺 124-126-1235-256 always ì¹´ì•» 124-126-1235-356 always 카야 124-126-345 always 카약 124-126-345-1 always 카앾 124-126-345-1-1 always ì¹´ì•¿ 124-126-345-1-3 always ì¹´ì–€ 124-126-345-25 always ì¹´ì– 124-126-345-25-13 always ì¹´ì–‚ 124-126-345-25-356 always ì¹´ì–ƒ 124-126-345-35 always ì¹´ì–„ 124-126-345-2 always ì¹´ì–… 124-126-345-2-1 always ì¹´ì–† 124-126-345-2-26 always ì¹´ì–‡ 124-126-345-2-12 always ì¹´ì–ˆ 124-126-345-2-3 always ì¹´ì–‰ 124-126-345-2-236 always ì¹´ì–Š 124-126-345-2-256 always ì¹´ì–‹ 124-126-345-2-356 always ì¹´ì–Œ 124-126-345-26 always ì¹´ì– 124-126-345-12 always ì¹´ì–Ž 124-126-345-12-3 always ì¹´ì– 124-126-345-3 always ì¹´ì– 124-126-345-34 always ì¹´ì–‘ 124-126-345-2356 always ì¹´ì–’ 124-126-345-13 always ì¹´ì–“ 124-126-345-23 always ì¹´ì–” 124-126-345-235 always ì¹´ì–• 124-126-345-236 always ì¹´ì–– 124-126-345-256 always ì¹´ì–— 124-126-345-356 always ì¹´ì–˜ 124-126-345-1235 always ì¹´ì–™ 124-126-345-1235-1 always ì¹´ì–š 124-126-345-1235-1-1 always ì¹´ì–› 124-126-345-1235-1-3 always ì¹´ì–œ 124-126-345-1235-25 always ì¹´ì– 124-126-345-1235-25-13 always ì¹´ì–ž 124-126-345-1235-25-356 always ì¹´ì–Ÿ 124-126-345-1235-35 always ì¹´ì–  124-126-345-1235-2 always ì¹´ì–¡ 124-126-345-1235-2-1 always ì¹´ì–¢ 124-126-345-1235-2-26 always ì¹´ì–£ 124-126-345-1235-2-12 always ì¹´ì–¤ 124-126-345-1235-2-3 always ì¹´ì–¥ 124-126-345-1235-2-236 always ì¹´ì–¦ 124-126-345-1235-2-256 always ì¹´ì–§ 124-126-345-1235-2-356 always ì¹´ì–¨ 124-126-345-1235-26 always ì¹´ì–© 124-126-345-1235-12 always ì¹´ì–ª 124-126-345-1235-12-3 always ì¹´ì–« 124-126-345-1235-3 always ì¹´ì–¬ 124-126-345-1235-34 always ì¹´ì–­ 124-126-345-1235-2356 always ì¹´ì–® 124-126-345-1235-13 always ì¹´ì–¯ 124-126-345-1235-23 always ì¹´ì–° 124-126-345-1235-235 always ì¹´ì–± 124-126-345-1235-236 always ì¹´ì–² 124-126-345-1235-256 always ì¹´ì–³ 124-126-345-1235-356 always ì¹´ì–´ 124-126-234 always ì¹´ì–µ 124-126-1456 always ì¹´ì–¶ 124-126-1456-1 always ì¹´ì–· 124-126-1456-3 always ì¹´ì–¸ 124-126-23456 always ì¹´ì–¹ 124-126-23456-13 always ì¹´ì–º 124-126-23456-356 always ì¹´ì–» 124-126-234-35 always ì¹´ì–¼ 124-126-2345 always ì¹´ì–½ 124-126-2345-1 always ì¹´ì–¾ 124-126-2345-26 always ì¹´ì–¿ 124-126-2345-12 always ì¹´ì—€ 124-126-2345-3 always ì¹´ì— 124-126-2345-236 always ì¹´ì—‚ 124-126-2345-256 always ì¹´ì—ƒ 124-126-2345-356 always ì¹´ì—„ 124-126-234-26 always ì¹´ì—… 124-126-234-12 always ì¹´ì—† 124-126-234-12-3 always ì¹´ì—‡ 124-126-234-3 always ì¹´ì—ˆ 124-126-234-34 always ì¹´ì—‰ 124-126-234-2356 always ì¹´ì—Š 124-126-234-13 always ì¹´ì—‹ 124-126-234-23 always ì¹´ì—Œ 124-126-234-235 always ì¹´ì— 124-126-234-236 always ì¹´ì—Ž 124-126-234-256 always ì¹´ì— 124-126-234-356 always ì¹´ì— 124-126-1345 always ì¹´ì—‘ 124-126-1345-1 always ì¹´ì—’ 124-126-1345-1-1 always ì¹´ì—“ 124-126-1345-1-3 always ì¹´ì—” 124-126-1345-25 always ì¹´ì—• 124-126-1345-25-13 always ì¹´ì—– 124-126-1345-25-356 always ì¹´ì—— 124-126-1345-35 always ì¹´ì—˜ 124-126-1345-2 always ì¹´ì—™ 124-126-1345-2-1 always ì¹´ì—š 124-126-1345-2-26 always ì¹´ì—› 124-126-1345-2-12 always ì¹´ì—œ 124-126-1345-2-3 always ì¹´ì— 124-126-1345-2-236 always ì¹´ì—ž 124-126-1345-2-256 always ì¹´ì—Ÿ 124-126-1345-2-356 always ì¹´ì—  124-126-1345-26 always ì¹´ì—¡ 124-126-1345-12 always ì¹´ì—¢ 124-126-1345-12-3 always ì¹´ì—£ 124-126-1345-3 always ì¹´ì—¤ 124-126-1345-34 always ì¹´ì—¥ 124-126-1345-2356 always ì¹´ì—¦ 124-126-1345-13 always ì¹´ì—§ 124-126-1345-23 always ì¹´ì—¨ 124-126-1345-235 always ì¹´ì—© 124-126-1345-236 always ì¹´ì—ª 124-126-1345-256 always ì¹´ì—« 124-126-1345-356 always ì¹´ì—¬ 124-126-156 always ì¹´ì—­ 124-126-156-1 always ì¹´ì—® 124-126-156-1-1 always ì¹´ì—¯ 124-126-156-1-3 always ì¹´ì—° 124-126-16 always ì¹´ì—± 124-126-16-13 always ì¹´ì—² 124-126-16-356 always ì¹´ì—´ 124-126-1256 always ì¹´ì—µ 124-126-1256-1 always ì¹´ì—¶ 124-126-1256-26 always ì¹´ì—· 124-126-1256-12 always ì¹´ì—¸ 124-126-1256-3 always ì¹´ì—¹ 124-126-1256-236 always ì¹´ì—º 124-126-1256-256 always ì¹´ì—» 124-126-1256-356 always ì¹´ì—¼ 124-126-156-26 always ì¹´ì—½ 124-126-156-12 always ì¹´ì—¾ 124-126-156-12-3 always ì¹´ì—¿ 124-126-156-3 always 카였 124-126-156-34 always ì¹´ì˜ 124-126-12456 always 카옂 124-126-156-13 always 카옃 124-126-156-23 always 카옄 124-126-156-235 always 카옅 124-126-156-236 always 카옆 124-126-156-256 always 카옇 124-126-156-356 always 카예 124-126-34 always 카옉 124-126-34-1 always 카옊 124-126-34-1-1 always 카옋 124-126-34-1-3 always 카옌 124-126-34-25 always ì¹´ì˜ 124-126-34-25-13 always 카옎 124-126-34-25-356 always ì¹´ì˜ 124-126-34-35 always ì¹´ì˜ 124-126-34-2 always 카옑 124-126-34-2-1 always 카옒 124-126-34-2-26 always 카옓 124-126-34-2-12 always 카옔 124-126-34-2-3 always 카옕 124-126-34-2-236 always 카옖 124-126-34-2-256 always 카옗 124-126-34-2-356 always 카옘 124-126-34-26 always 카옙 124-126-34-12 always 카옚 124-126-34-12-3 always 카옛 124-126-34-3 always 카옜 124-126-34-34 always ì¹´ì˜ 124-126-34-2356 always 카옞 124-126-34-13 always 카옟 124-126-34-23 always 카옠 124-126-34-235 always 카옡 124-126-34-236 always 카옢 124-126-34-256 always 카옣 124-126-34-356 always 카오 124-126-136 always 카옥 124-126-1346 always 카옦 124-126-1346-1 always 카옧 124-126-1346-3 always 카온 124-126-12356 always 카옩 124-126-12356-13 always 카옪 124-126-12356-356 always 카옫 124-126-136-35 always 카올 124-126-136-2 always 카옭 124-126-136-2-1 always 카옮 124-126-136-2-26 always 카옯 124-126-136-2-12 always 카옰 124-126-136-2-3 always 카옱 124-126-136-2-236 always 카옲 124-126-136-2-256 always 카옳 124-126-136-2-356 always 카옴 124-126-136-26 always 카옵 124-126-136-12 always 카옶 124-126-136-12-3 always 카옷 124-126-136-3 always 카옸 124-126-136-34 always 카옹 124-126-123456 always 카옺 124-126-136-13 always 카옻 124-126-136-23 always 카옼 124-126-136-235 always 카옽 124-126-136-236 always 카옾 124-126-136-256 always 카옿 124-126-136-356 always 카와 124-126-1236 always ì¹´ì™ 124-126-1236-1 always 카왂 124-126-1236-1-1 always 카왃 124-126-1236-1-3 always 카완 124-126-1236-25 always ì¹´ì™… 124-126-1236-25-13 always 카왆 124-126-1236-25-356 always 카왇 124-126-1236-35 always 카왈 124-126-1236-2 always 카왉 124-126-1236-2-1 always 카왊 124-126-1236-2-26 always 카왋 124-126-1236-2-12 always 카왌 124-126-1236-2-3 always ì¹´ì™ 124-126-1236-2-236 always 카왎 124-126-1236-2-256 always ì¹´ì™ 124-126-1236-2-356 always ì¹´ì™ 124-126-1236-26 always 카왑 124-126-1236-12 always ì¹´ì™’ 124-126-1236-12-3 always 카왓 124-126-1236-3 always ì¹´ì™” 124-126-1236-34 always 카왕 124-126-1236-2356 always ì¹´ì™– 124-126-1236-13 always ì¹´ì™— 124-126-1236-23 always 카왘 124-126-1236-235 always ì¹´ì™™ 124-126-1236-236 always 카왚 124-126-1236-256 always ì¹´ì™› 124-126-1236-356 always 카왜 124-126-1236-1235 always ì¹´ì™ 124-126-1236-1235-1 always 카왞 124-126-1236-1235-1-1 always 카왟 124-126-1236-1235-1-3 always ì¹´ì™  124-126-1236-1235-25 always 카왡 124-126-1236-1235-25-13 always 카왢 124-126-1236-1235-25-356 always 카왣 124-126-1236-1235-35 always 카왤 124-126-1236-1235-2 always 카왥 124-126-1236-1235-2-1 always 카왦 124-126-1236-1235-2-26 always ì¹´ì™§ 124-126-1236-1235-2-12 always 카왨 124-126-1236-1235-2-3 always 카왩 124-126-1236-1235-2-236 always 카왪 124-126-1236-1235-2-256 always 카왫 124-126-1236-1235-2-356 always 카왬 124-126-1236-1235-26 always ì¹´ì™­ 124-126-1236-1235-12 always ì¹´ì™® 124-126-1236-1235-12-3 always 카왯 124-126-1236-1235-3 always ì¹´ì™° 124-126-1236-1235-34 always ì¹´ì™± 124-126-1236-1235-2356 always 카왲 124-126-1236-1235-13 always 카왳 124-126-1236-1235-23 always ì¹´ì™´ 124-126-1236-1235-235 always 카왵 124-126-1236-1235-236 always ì¹´ì™¶ 124-126-1236-1235-256 always ì¹´ì™· 124-126-1236-1235-356 always 카외 124-126-13456 always 카왹 124-126-13456-1 always 카왺 124-126-13456-1-1 always ì¹´ì™» 124-126-13456-1-3 always 카왼 124-126-13456-25 always 카왽 124-126-13456-25-13 always 카왾 124-126-13456-25-356 always 카왿 124-126-13456-35 always 카욀 124-126-13456-2 always ì¹´ìš 124-126-13456-2-1 always ì¹´ìš‚ 124-126-13456-2-26 always 카욃 124-126-13456-2-12 always ì¹´ìš„ 124-126-13456-2-3 always ì¹´ìš… 124-126-13456-2-236 always 카욆 124-126-13456-2-256 always 카욇 124-126-13456-2-356 always 카욈 124-126-13456-26 always 카욉 124-126-13456-12 always 카욊 124-126-13456-12-3 always ì¹´ìš‹ 124-126-13456-3 always 카욌 124-126-13456-34 always ì¹´ìš 124-126-13456-2356 always 카욎 124-126-13456-13 always ì¹´ìš 124-126-13456-23 always ì¹´ìš 124-126-13456-235 always ì¹´ìš‘ 124-126-13456-236 always ì¹´ìš’ 124-126-13456-256 always ì¹´ìš“ 124-126-13456-356 always ì¹´ìš” 124-126-346 always ì¹´ìš• 124-126-346-1 always ì¹´ìš– 124-126-346-1-1 always ì¹´ìš— 124-126-346-1-3 always 카욘 124-126-346-25 always ì¹´ìš™ 124-126-346-25-13 always ì¹´ìšš 124-126-346-25-356 always ì¹´ìš› 124-126-346-35 always ì¹´ìšœ 124-126-346-2 always ì¹´ìš 124-126-346-2-1 always ì¹´ìšž 124-126-346-2-26 always 카욟 124-126-346-2-12 always ì¹´ìš  124-126-346-2-3 always ì¹´ìš¡ 124-126-346-2-236 always 카욢 124-126-346-2-256 always 카욣 124-126-346-2-356 always 카욤 124-126-346-26 always 카욥 124-126-346-12 always 카욦 124-126-346-12-3 always ì¹´ìš§ 124-126-346-3 always 카욨 124-126-346-34 always ì¹´ìš© 124-126-346-2356 always 카욪 124-126-346-13 always ì¹´ìš« 124-126-346-23 always 카욬 124-126-346-235 always ì¹´ìš­ 124-126-346-236 always ì¹´ìš® 124-126-346-256 always 카욯 124-126-346-356 always ì¹´ìš° 124-126-134 always ì¹´ìš± 124-126-134-1 always ì¹´ìš² 124-126-134-1-1 always ì¹´ìš³ 124-126-134-1-3 always ì¹´ìš´ 124-126-1245 always ì¹´ìšµ 124-126-1245-13 always ì¹´ìš¶ 124-126-1245-356 always ì¹´ìš· 124-126-134-35 always 카울 124-126-12346 always ì¹´ìš¹ 124-126-12346-1 always 카욺 124-126-12346-26 always ì¹´ìš» 124-126-12346-12 always ì¹´ìš¼ 124-126-12346-3 always ì¹´ìš½ 124-126-12346-236 always ì¹´ìš¾ 124-126-12346-256 always ì¹´ìš¿ 124-126-12346-356 always 카움 124-126-134-26 always ì¹´ì› 124-126-134-12 always 카웂 124-126-134-12-3 always 카웃 124-126-134-3 always 카웄 124-126-134-34 always ì¹´ì›… 124-126-134-2356 always 카웆 124-126-134-13 always 카웇 124-126-134-23 always 카웈 124-126-134-235 always 카웉 124-126-134-236 always 카웊 124-126-134-256 always 카웋 124-126-134-356 always 카워 124-126-1234 always ì¹´ì› 124-126-1234-1 always 카웎 124-126-1234-1-1 always ì¹´ì› 124-126-1234-1-3 always ì¹´ì› 124-126-1234-25 always 카웑 124-126-1234-25-13 always ì¹´ì›’ 124-126-1234-25-356 always 카웓 124-126-1234-35 always ì¹´ì›” 124-126-1234-2 always 카웕 124-126-1234-2-1 always ì¹´ì›– 124-126-1234-2-26 always ì¹´ì›— 124-126-1234-2-12 always 카웘 124-126-1234-2-3 always ì¹´ì›™ 124-126-1234-2-236 always 카웚 124-126-1234-2-256 always ì¹´ì›› 124-126-1234-2-356 always 카웜 124-126-1234-26 always ì¹´ì› 124-126-1234-12 always 카웞 124-126-1234-12-3 always 카웟 124-126-1234-3 always ì¹´ì›  124-126-1234-34 always 카웡 124-126-1234-2356 always 카웢 124-126-1234-13 always 카웣 124-126-1234-23 always 카웤 124-126-1234-235 always 카웥 124-126-1234-236 always 카웦 124-126-1234-256 always ì¹´ì›§ 124-126-1234-356 always 카웨 124-126-1234-1235 always 카웩 124-126-1234-1235-1 always 카웪 124-126-1234-1235-1-1 always 카웫 124-126-1234-1235-1-3 always 카웬 124-126-1234-1235-25 always ì¹´ì›­ 124-126-1234-1235-25-13 always ì¹´ì›® 124-126-1234-1235-25-356 always 카웯 124-126-1234-1235-35 always ì¹´ì›° 124-126-1234-1235-2 always ì¹´ì›± 124-126-1234-1235-2-1 always 카웲 124-126-1234-1235-2-26 always 카웳 124-126-1234-1235-2-12 always ì¹´ì›´ 124-126-1234-1235-2-3 always 카웵 124-126-1234-1235-2-236 always ì¹´ì›¶ 124-126-1234-1235-2-256 always ì¹´ì›· 124-126-1234-1235-2-356 always 카웸 124-126-1234-1235-26 always 카웹 124-126-1234-1235-12 always 카웺 124-126-1234-1235-12-3 always ì¹´ì›» 124-126-1234-1235-3 always 카웼 124-126-1234-1235-34 always 카웽 124-126-1234-1235-2356 always 카웾 124-126-1234-1235-13 always 카웿 124-126-1234-1235-23 always 카윀 124-126-1234-1235-235 always ì¹´ìœ 124-126-1234-1235-236 always 카윂 124-126-1234-1235-256 always 카윃 124-126-1234-1235-356 always 카위 124-126-134-1235 always 카윅 124-126-134-1235-1 always 카윆 124-126-134-1235-1-1 always 카윇 124-126-134-1235-1-3 always 카윈 124-126-134-1235-25 always 카윉 124-126-134-1235-25-13 always 카윊 124-126-134-1235-25-356 always 카윋 124-126-134-1235-35 always 카윌 124-126-134-1235-2 always ì¹´ìœ 124-126-134-1235-2-1 always 카윎 124-126-134-1235-2-26 always ì¹´ìœ 124-126-134-1235-2-12 always ì¹´ìœ 124-126-134-1235-2-3 always 카윑 124-126-134-1235-2-236 always 카윒 124-126-134-1235-2-256 always 카윓 124-126-134-1235-2-356 always 카윔 124-126-134-1235-26 always 카윕 124-126-134-1235-12 always 카윖 124-126-134-1235-12-3 always 카윗 124-126-134-1235-3 always 카윘 124-126-134-1235-34 always 카윙 124-126-134-1235-2356 always 카윚 124-126-134-1235-13 always 카윛 124-126-134-1235-23 always 카윜 124-126-134-1235-235 always ì¹´ìœ 124-126-134-1235-236 always 카윞 124-126-134-1235-256 always 카윟 124-126-134-1235-356 always 카유 124-126-146 always 카육 124-126-146-1 always 카윢 124-126-146-1-1 always 카윣 124-126-146-1-3 always 카윤 124-126-146-25 always 카윥 124-126-146-25-13 always 카윦 124-126-146-25-356 always 카윧 124-126-146-35 always 카율 124-126-146-2 always 카윩 124-126-146-2-1 always 카윪 124-126-146-2-26 always 카윫 124-126-146-2-12 always 카윬 124-126-146-2-3 always 카윭 124-126-146-2-236 always 카윮 124-126-146-2-256 always 카윯 124-126-146-2-356 always 카윰 124-126-146-26 always 카윱 124-126-146-12 always 카윲 124-126-146-12-3 always 카윳 124-126-146-3 always 카윴 124-126-146-34 always 카융 124-126-146-2356 always 카윶 124-126-146-13 always 카윷 124-126-146-23 always 카윸 124-126-146-235 always 카윹 124-126-146-236 always 카윺 124-126-146-256 always 카윻 124-126-146-356 always 카으 124-126-246 always 카윽 124-126-246-1 always 카윾 124-126-246-1-1 always 카윿 124-126-246-1-3 always ì¹´ì€ 124-126-1356 always ì¹´ì 124-126-1356-13 always ì¹´ì‚ 124-126-1356-356 always ì¹´ìƒ 124-126-246-35 always ì¹´ì„ 124-126-2346 always ì¹´ì… 124-126-2346-1 always ì¹´ì† 124-126-2346-26 always ì¹´ì‡ 124-126-2346-12 always ì¹´ìˆ 124-126-2346-3 always ì¹´ì‰ 124-126-2346-236 always ì¹´ìŠ 124-126-2346-256 always ì¹´ì‹ 124-126-2346-356 always ì¹´ìŒ 124-126-246-26 always ì¹´ì 124-126-246-12 always ì¹´ìŽ 124-126-246-12-3 always ì¹´ì 124-126-246-3 always ì¹´ì 124-126-246-34 always ì¹´ì‘ 124-126-246-2356 always ì¹´ì’ 124-126-246-13 always ì¹´ì“ 124-126-246-23 always ì¹´ì” 124-126-246-235 always ì¹´ì• 124-126-246-236 always ì¹´ì– 124-126-246-256 always ì¹´ì— 124-126-246-356 always ì¹´ì˜ 124-126-2456 always ì¹´ì™ 124-126-2456-1 always ì¹´ìš 124-126-2456-1-1 always ì¹´ì› 124-126-2456-1-3 always ì¹´ìœ 124-126-2456-25 always ì¹´ì 124-126-2456-25-13 always ì¹´ìž 124-126-2456-25-356 always ì¹´ìŸ 124-126-2456-35 always ì¹´ì  124-126-2456-2 always ì¹´ì¡ 124-126-2456-2-1 always ì¹´ì¢ 124-126-2456-2-26 always ì¹´ì£ 124-126-2456-2-12 always ì¹´ì¤ 124-126-2456-2-3 always ì¹´ì¥ 124-126-2456-2-236 always ì¹´ì¦ 124-126-2456-2-256 always ì¹´ì§ 124-126-2456-2-356 always ì¹´ì¨ 124-126-2456-26 always ì¹´ì© 124-126-2456-12 always ì¹´ìª 124-126-2456-12-3 always ì¹´ì« 124-126-2456-3 always ì¹´ì¬ 124-126-2456-34 always ì¹´ì­ 124-126-2456-2356 always ì¹´ì® 124-126-2456-13 always ì¹´ì¯ 124-126-2456-23 always ì¹´ì° 124-126-2456-235 always ì¹´ì± 124-126-2456-236 always ì¹´ì² 124-126-2456-256 always ì¹´ì³ 124-126-2456-356 always ì¹´ì´ 124-126-135 always ì¹´ìµ 124-126-135-1 always ì¹´ì¶ 124-126-135-1-1 always ì¹´ì· 124-126-135-1-3 always ì¹´ì¸ 124-126-12345 always ì¹´ì¹ 124-126-12345-13 always ì¹´ìº 124-126-12345-356 always ì¹´ì» 124-126-135-35 always ì¹´ì¼ 124-126-135-2 always ì¹´ì½ 124-126-135-2-1 always ì¹´ì¾ 124-126-135-2-26 always ì¹´ì¿ 124-126-135-2-12 always 카잀 124-126-135-2-3 always ì¹´ìž 124-126-135-2-236 always ì¹´ìž‚ 124-126-135-2-256 always 카잃 124-126-135-2-356 always ì¹´ìž„ 124-126-135-26 always ì¹´ìž… 124-126-135-12 always 카잆 124-126-135-12-3 always 카잇 124-126-135-3 always 카있 124-126-135-34 always 카잉 124-126-135-2356 always 카잊 124-126-135-13 always ì¹´ìž‹ 124-126-135-23 always 카잌 124-126-135-235 always ì¹´ìž 124-126-135-236 always 카잎 124-126-135-256 always ì¹´ìž 124-126-135-356 always 타아 125-126-126 always 타악 125-126-126-1 always 타앆 125-126-126-1-1 always 타앇 125-126-126-1-3 always 타안 125-126-126-25 always 타앉 125-126-126-25-13 always 타않 125-126-126-25-356 always 타앋 125-126-126-35 always 타알 125-126-126-2 always íƒ€ì• 125-126-126-2-1 always 타앎 125-126-126-2-26 always íƒ€ì• 125-126-126-2-12 always íƒ€ì• 125-126-126-2-3 always 타앑 125-126-126-2-236 always 타앒 125-126-126-2-256 always 타앓 125-126-126-2-356 always 타암 125-126-126-26 always 타압 125-126-126-12 always 타앖 125-126-126-12-3 always 타앗 125-126-126-3 always 타았 125-126-126-34 always 타앙 125-126-126-2356 always 타앚 125-126-126-13 always 타앛 125-126-126-23 always 타앜 125-126-126-235 always íƒ€ì• 125-126-126-236 always 타앞 125-126-126-256 always 타앟 125-126-126-356 always 타애 125-126-1235 always 타액 125-126-1235-1 always 타앢 125-126-1235-1-1 always 타앣 125-126-1235-1-3 always 타앤 125-126-1235-25 always 타앥 125-126-1235-25-13 always 타앦 125-126-1235-25-356 always 타앧 125-126-1235-35 always 타앨 125-126-1235-2 always 타앩 125-126-1235-2-1 always 타앪 125-126-1235-2-26 always 타앫 125-126-1235-2-12 always 타앬 125-126-1235-2-3 always 타앭 125-126-1235-2-236 always 타앮 125-126-1235-2-256 always 타앯 125-126-1235-2-356 always 타앰 125-126-1235-26 always 타앱 125-126-1235-12 always 타앲 125-126-1235-12-3 always 타앳 125-126-1235-3 always 타앴 125-126-1235-34 always 타앵 125-126-1235-2356 always 타앶 125-126-1235-13 always 타앷 125-126-1235-23 always 타앸 125-126-1235-235 always 타앹 125-126-1235-236 always 타앺 125-126-1235-256 always 타앻 125-126-1235-356 always 타야 125-126-345 always 타약 125-126-345-1 always 타앾 125-126-345-1-1 always 타앿 125-126-345-1-3 always 타얀 125-126-345-25 always íƒ€ì– 125-126-345-25-13 always 타얂 125-126-345-25-356 always 타얃 125-126-345-35 always 타얄 125-126-345-2 always 타얅 125-126-345-2-1 always 타얆 125-126-345-2-26 always 타얇 125-126-345-2-12 always 타얈 125-126-345-2-3 always 타얉 125-126-345-2-236 always 타얊 125-126-345-2-256 always 타얋 125-126-345-2-356 always 타얌 125-126-345-26 always íƒ€ì– 125-126-345-12 always 타얎 125-126-345-12-3 always íƒ€ì– 125-126-345-3 always íƒ€ì– 125-126-345-34 always 타양 125-126-345-2356 always 타얒 125-126-345-13 always 타얓 125-126-345-23 always 타얔 125-126-345-235 always 타얕 125-126-345-236 always 타얖 125-126-345-256 always 타얗 125-126-345-356 always 타얘 125-126-345-1235 always 타얙 125-126-345-1235-1 always 타얚 125-126-345-1235-1-1 always 타얛 125-126-345-1235-1-3 always 타얜 125-126-345-1235-25 always íƒ€ì– 125-126-345-1235-25-13 always 타얞 125-126-345-1235-25-356 always 타얟 125-126-345-1235-35 always 타얠 125-126-345-1235-2 always 타얡 125-126-345-1235-2-1 always 타얢 125-126-345-1235-2-26 always 타얣 125-126-345-1235-2-12 always 타얤 125-126-345-1235-2-3 always 타얥 125-126-345-1235-2-236 always 타얦 125-126-345-1235-2-256 always 타얧 125-126-345-1235-2-356 always 타얨 125-126-345-1235-26 always 타얩 125-126-345-1235-12 always 타얪 125-126-345-1235-12-3 always 타얫 125-126-345-1235-3 always 타얬 125-126-345-1235-34 always 타얭 125-126-345-1235-2356 always 타얮 125-126-345-1235-13 always 타얯 125-126-345-1235-23 always 타얰 125-126-345-1235-235 always 타얱 125-126-345-1235-236 always 타얲 125-126-345-1235-256 always 타얳 125-126-345-1235-356 always 타어 125-126-234 always 타억 125-126-1456 always 타얶 125-126-1456-1 always 타얷 125-126-1456-3 always 타언 125-126-23456 always 타얹 125-126-23456-13 always 타얺 125-126-23456-356 always 타얻 125-126-234-35 always 타얼 125-126-2345 always 타얽 125-126-2345-1 always 타얾 125-126-2345-26 always 타얿 125-126-2345-12 always 타엀 125-126-2345-3 always íƒ€ì— 125-126-2345-236 always 타엂 125-126-2345-256 always 타엃 125-126-2345-356 always 타엄 125-126-234-26 always 타업 125-126-234-12 always 타없 125-126-234-12-3 always 타엇 125-126-234-3 always 타었 125-126-234-34 always 타엉 125-126-234-2356 always 타엊 125-126-234-13 always 타엋 125-126-234-23 always 타엌 125-126-234-235 always íƒ€ì— 125-126-234-236 always 타엎 125-126-234-256 always íƒ€ì— 125-126-234-356 always íƒ€ì— 125-126-1345 always 타엑 125-126-1345-1 always 타엒 125-126-1345-1-1 always 타엓 125-126-1345-1-3 always 타엔 125-126-1345-25 always 타엕 125-126-1345-25-13 always 타엖 125-126-1345-25-356 always 타엗 125-126-1345-35 always 타엘 125-126-1345-2 always 타엙 125-126-1345-2-1 always 타엚 125-126-1345-2-26 always 타엛 125-126-1345-2-12 always 타엜 125-126-1345-2-3 always íƒ€ì— 125-126-1345-2-236 always 타엞 125-126-1345-2-256 always 타엟 125-126-1345-2-356 always 타엠 125-126-1345-26 always 타엡 125-126-1345-12 always 타엢 125-126-1345-12-3 always 타엣 125-126-1345-3 always 타엤 125-126-1345-34 always 타엥 125-126-1345-2356 always 타엦 125-126-1345-13 always 타엧 125-126-1345-23 always 타엨 125-126-1345-235 always 타엩 125-126-1345-236 always 타엪 125-126-1345-256 always 타엫 125-126-1345-356 always 타여 125-126-156 always 타역 125-126-156-1 always 타엮 125-126-156-1-1 always 타엯 125-126-156-1-3 always 타연 125-126-16 always 타엱 125-126-16-13 always 타엲 125-126-16-356 always 타열 125-126-1256 always 타엵 125-126-1256-1 always 타엶 125-126-1256-26 always 타엷 125-126-1256-12 always 타엸 125-126-1256-3 always 타엹 125-126-1256-236 always 타엺 125-126-1256-256 always 타엻 125-126-1256-356 always 타염 125-126-156-26 always 타엽 125-126-156-12 always 타엾 125-126-156-12-3 always 타엿 125-126-156-3 always 타였 125-126-156-34 always íƒ€ì˜ 125-126-12456 always 타옂 125-126-156-13 always 타옃 125-126-156-23 always 타옄 125-126-156-235 always 타옅 125-126-156-236 always 타옆 125-126-156-256 always 타옇 125-126-156-356 always 타예 125-126-34 always 타옉 125-126-34-1 always 타옊 125-126-34-1-1 always 타옋 125-126-34-1-3 always 타옌 125-126-34-25 always íƒ€ì˜ 125-126-34-25-13 always 타옎 125-126-34-25-356 always íƒ€ì˜ 125-126-34-35 always íƒ€ì˜ 125-126-34-2 always 타옑 125-126-34-2-1 always 타옒 125-126-34-2-26 always 타옓 125-126-34-2-12 always 타옔 125-126-34-2-3 always 타옕 125-126-34-2-236 always 타옖 125-126-34-2-256 always 타옗 125-126-34-2-356 always 타옘 125-126-34-26 always 타옙 125-126-34-12 always 타옚 125-126-34-12-3 always 타옛 125-126-34-3 always 타옜 125-126-34-34 always íƒ€ì˜ 125-126-34-2356 always 타옞 125-126-34-13 always 타옟 125-126-34-23 always 타옠 125-126-34-235 always 타옡 125-126-34-236 always 타옢 125-126-34-256 always 타옣 125-126-34-356 always 타오 125-126-136 always 타옥 125-126-1346 always 타옦 125-126-1346-1 always 타옧 125-126-1346-3 always 타온 125-126-12356 always 타옩 125-126-12356-13 always 타옪 125-126-12356-356 always 타옫 125-126-136-35 always 타올 125-126-136-2 always 타옭 125-126-136-2-1 always 타옮 125-126-136-2-26 always 타옯 125-126-136-2-12 always 타옰 125-126-136-2-3 always 타옱 125-126-136-2-236 always 타옲 125-126-136-2-256 always 타옳 125-126-136-2-356 always 타옴 125-126-136-26 always 타옵 125-126-136-12 always 타옶 125-126-136-12-3 always 타옷 125-126-136-3 always 타옸 125-126-136-34 always 타옹 125-126-123456 always 타옺 125-126-136-13 always 타옻 125-126-136-23 always 타옼 125-126-136-235 always 타옽 125-126-136-236 always 타옾 125-126-136-256 always 타옿 125-126-136-356 always 타와 125-126-1236 always íƒ€ì™ 125-126-1236-1 always 타왂 125-126-1236-1-1 always 타왃 125-126-1236-1-3 always 타완 125-126-1236-25 always 타왅 125-126-1236-25-13 always 타왆 125-126-1236-25-356 always 타왇 125-126-1236-35 always 타왈 125-126-1236-2 always 타왉 125-126-1236-2-1 always 타왊 125-126-1236-2-26 always 타왋 125-126-1236-2-12 always 타왌 125-126-1236-2-3 always íƒ€ì™ 125-126-1236-2-236 always 타왎 125-126-1236-2-256 always íƒ€ì™ 125-126-1236-2-356 always íƒ€ì™ 125-126-1236-26 always 타왑 125-126-1236-12 always 타왒 125-126-1236-12-3 always 타왓 125-126-1236-3 always 타왔 125-126-1236-34 always 타왕 125-126-1236-2356 always 타왖 125-126-1236-13 always 타왗 125-126-1236-23 always 타왘 125-126-1236-235 always 타왙 125-126-1236-236 always 타왚 125-126-1236-256 always 타왛 125-126-1236-356 always 타왜 125-126-1236-1235 always íƒ€ì™ 125-126-1236-1235-1 always 타왞 125-126-1236-1235-1-1 always 타왟 125-126-1236-1235-1-3 always 타왠 125-126-1236-1235-25 always 타왡 125-126-1236-1235-25-13 always 타왢 125-126-1236-1235-25-356 always 타왣 125-126-1236-1235-35 always 타왤 125-126-1236-1235-2 always 타왥 125-126-1236-1235-2-1 always 타왦 125-126-1236-1235-2-26 always 타왧 125-126-1236-1235-2-12 always 타왨 125-126-1236-1235-2-3 always 타왩 125-126-1236-1235-2-236 always 타왪 125-126-1236-1235-2-256 always 타왫 125-126-1236-1235-2-356 always 타왬 125-126-1236-1235-26 always 타왭 125-126-1236-1235-12 always 타왮 125-126-1236-1235-12-3 always 타왯 125-126-1236-1235-3 always 타왰 125-126-1236-1235-34 always 타왱 125-126-1236-1235-2356 always 타왲 125-126-1236-1235-13 always 타왳 125-126-1236-1235-23 always 타왴 125-126-1236-1235-235 always 타왵 125-126-1236-1235-236 always 타왶 125-126-1236-1235-256 always 타왷 125-126-1236-1235-356 always 타외 125-126-13456 always 타왹 125-126-13456-1 always 타왺 125-126-13456-1-1 always 타왻 125-126-13456-1-3 always 타왼 125-126-13456-25 always 타왽 125-126-13456-25-13 always 타왾 125-126-13456-25-356 always 타왿 125-126-13456-35 always 타욀 125-126-13456-2 always íƒ€ìš 125-126-13456-2-1 always 타욂 125-126-13456-2-26 always 타욃 125-126-13456-2-12 always 타욄 125-126-13456-2-3 always 타욅 125-126-13456-2-236 always 타욆 125-126-13456-2-256 always 타욇 125-126-13456-2-356 always 타욈 125-126-13456-26 always 타욉 125-126-13456-12 always 타욊 125-126-13456-12-3 always 타욋 125-126-13456-3 always 타욌 125-126-13456-34 always íƒ€ìš 125-126-13456-2356 always 타욎 125-126-13456-13 always íƒ€ìš 125-126-13456-23 always íƒ€ìš 125-126-13456-235 always 타욑 125-126-13456-236 always 타욒 125-126-13456-256 always 타욓 125-126-13456-356 always 타요 125-126-346 always 타욕 125-126-346-1 always 타욖 125-126-346-1-1 always 타욗 125-126-346-1-3 always 타욘 125-126-346-25 always 타욙 125-126-346-25-13 always 타욚 125-126-346-25-356 always 타욛 125-126-346-35 always 타욜 125-126-346-2 always íƒ€ìš 125-126-346-2-1 always 타욞 125-126-346-2-26 always 타욟 125-126-346-2-12 always 타욠 125-126-346-2-3 always 타욡 125-126-346-2-236 always 타욢 125-126-346-2-256 always 타욣 125-126-346-2-356 always 타욤 125-126-346-26 always 타욥 125-126-346-12 always 타욦 125-126-346-12-3 always 타욧 125-126-346-3 always 타욨 125-126-346-34 always 타용 125-126-346-2356 always 타욪 125-126-346-13 always 타욫 125-126-346-23 always 타욬 125-126-346-235 always 타욭 125-126-346-236 always 타욮 125-126-346-256 always 타욯 125-126-346-356 always 타우 125-126-134 always 타욱 125-126-134-1 always 타욲 125-126-134-1-1 always 타욳 125-126-134-1-3 always 타운 125-126-1245 always 타욵 125-126-1245-13 always 타욶 125-126-1245-356 always 타욷 125-126-134-35 always 타울 125-126-12346 always 타욹 125-126-12346-1 always 타욺 125-126-12346-26 always 타욻 125-126-12346-12 always 타욼 125-126-12346-3 always 타욽 125-126-12346-236 always 타욾 125-126-12346-256 always 타욿 125-126-12346-356 always 타움 125-126-134-26 always íƒ€ì› 125-126-134-12 always 타웂 125-126-134-12-3 always 타웃 125-126-134-3 always 타웄 125-126-134-34 always 타웅 125-126-134-2356 always 타웆 125-126-134-13 always 타웇 125-126-134-23 always 타웈 125-126-134-235 always 타웉 125-126-134-236 always 타웊 125-126-134-256 always 타웋 125-126-134-356 always 타워 125-126-1234 always íƒ€ì› 125-126-1234-1 always 타웎 125-126-1234-1-1 always íƒ€ì› 125-126-1234-1-3 always íƒ€ì› 125-126-1234-25 always 타웑 125-126-1234-25-13 always 타웒 125-126-1234-25-356 always 타웓 125-126-1234-35 always 타월 125-126-1234-2 always 타웕 125-126-1234-2-1 always 타웖 125-126-1234-2-26 always 타웗 125-126-1234-2-12 always 타웘 125-126-1234-2-3 always 타웙 125-126-1234-2-236 always 타웚 125-126-1234-2-256 always 타웛 125-126-1234-2-356 always 타웜 125-126-1234-26 always íƒ€ì› 125-126-1234-12 always 타웞 125-126-1234-12-3 always 타웟 125-126-1234-3 always 타웠 125-126-1234-34 always 타웡 125-126-1234-2356 always 타웢 125-126-1234-13 always 타웣 125-126-1234-23 always 타웤 125-126-1234-235 always 타웥 125-126-1234-236 always 타웦 125-126-1234-256 always 타웧 125-126-1234-356 always 타웨 125-126-1234-1235 always 타웩 125-126-1234-1235-1 always 타웪 125-126-1234-1235-1-1 always 타웫 125-126-1234-1235-1-3 always 타웬 125-126-1234-1235-25 always 타웭 125-126-1234-1235-25-13 always 타웮 125-126-1234-1235-25-356 always 타웯 125-126-1234-1235-35 always 타웰 125-126-1234-1235-2 always 타웱 125-126-1234-1235-2-1 always 타웲 125-126-1234-1235-2-26 always 타웳 125-126-1234-1235-2-12 always 타웴 125-126-1234-1235-2-3 always 타웵 125-126-1234-1235-2-236 always 타웶 125-126-1234-1235-2-256 always 타웷 125-126-1234-1235-2-356 always 타웸 125-126-1234-1235-26 always 타웹 125-126-1234-1235-12 always 타웺 125-126-1234-1235-12-3 always 타웻 125-126-1234-1235-3 always 타웼 125-126-1234-1235-34 always 타웽 125-126-1234-1235-2356 always 타웾 125-126-1234-1235-13 always 타웿 125-126-1234-1235-23 always 타윀 125-126-1234-1235-235 always íƒ€ìœ 125-126-1234-1235-236 always 타윂 125-126-1234-1235-256 always 타윃 125-126-1234-1235-356 always 타위 125-126-134-1235 always 타윅 125-126-134-1235-1 always 타윆 125-126-134-1235-1-1 always 타윇 125-126-134-1235-1-3 always 타윈 125-126-134-1235-25 always 타윉 125-126-134-1235-25-13 always 타윊 125-126-134-1235-25-356 always 타윋 125-126-134-1235-35 always 타윌 125-126-134-1235-2 always íƒ€ìœ 125-126-134-1235-2-1 always 타윎 125-126-134-1235-2-26 always íƒ€ìœ 125-126-134-1235-2-12 always íƒ€ìœ 125-126-134-1235-2-3 always 타윑 125-126-134-1235-2-236 always 타윒 125-126-134-1235-2-256 always 타윓 125-126-134-1235-2-356 always 타윔 125-126-134-1235-26 always 타윕 125-126-134-1235-12 always 타윖 125-126-134-1235-12-3 always 타윗 125-126-134-1235-3 always 타윘 125-126-134-1235-34 always 타윙 125-126-134-1235-2356 always 타윚 125-126-134-1235-13 always 타윛 125-126-134-1235-23 always 타윜 125-126-134-1235-235 always íƒ€ìœ 125-126-134-1235-236 always 타윞 125-126-134-1235-256 always 타윟 125-126-134-1235-356 always 타유 125-126-146 always 타육 125-126-146-1 always 타윢 125-126-146-1-1 always 타윣 125-126-146-1-3 always 타윤 125-126-146-25 always 타윥 125-126-146-25-13 always 타윦 125-126-146-25-356 always 타윧 125-126-146-35 always 타율 125-126-146-2 always 타윩 125-126-146-2-1 always 타윪 125-126-146-2-26 always 타윫 125-126-146-2-12 always 타윬 125-126-146-2-3 always 타윭 125-126-146-2-236 always 타윮 125-126-146-2-256 always 타윯 125-126-146-2-356 always 타윰 125-126-146-26 always 타윱 125-126-146-12 always 타윲 125-126-146-12-3 always 타윳 125-126-146-3 always 타윴 125-126-146-34 always 타융 125-126-146-2356 always 타윶 125-126-146-13 always 타윷 125-126-146-23 always 타윸 125-126-146-235 always 타윹 125-126-146-236 always 타윺 125-126-146-256 always 타윻 125-126-146-356 always 타으 125-126-246 always 타윽 125-126-246-1 always 타윾 125-126-246-1-1 always 타윿 125-126-246-1-3 always íƒ€ì€ 125-126-1356 always 타ì 125-126-1356-13 always íƒ€ì‚ 125-126-1356-356 always íƒ€ìƒ 125-126-246-35 always íƒ€ì„ 125-126-2346 always íƒ€ì… 125-126-2346-1 always íƒ€ì† 125-126-2346-26 always íƒ€ì‡ 125-126-2346-12 always íƒ€ìˆ 125-126-2346-3 always íƒ€ì‰ 125-126-2346-236 always íƒ€ìŠ 125-126-2346-256 always íƒ€ì‹ 125-126-2346-356 always íƒ€ìŒ 125-126-246-26 always 타ì 125-126-246-12 always íƒ€ìŽ 125-126-246-12-3 always 타ì 125-126-246-3 always 타ì 125-126-246-34 always íƒ€ì‘ 125-126-246-2356 always íƒ€ì’ 125-126-246-13 always íƒ€ì“ 125-126-246-23 always íƒ€ì” 125-126-246-235 always íƒ€ì• 125-126-246-236 always íƒ€ì– 125-126-246-256 always íƒ€ì— 125-126-246-356 always íƒ€ì˜ 125-126-2456 always íƒ€ì™ 125-126-2456-1 always íƒ€ìš 125-126-2456-1-1 always íƒ€ì› 125-126-2456-1-3 always íƒ€ìœ 125-126-2456-25 always 타ì 125-126-2456-25-13 always íƒ€ìž 125-126-2456-25-356 always íƒ€ìŸ 125-126-2456-35 always íƒ€ì  125-126-2456-2 always íƒ€ì¡ 125-126-2456-2-1 always íƒ€ì¢ 125-126-2456-2-26 always íƒ€ì£ 125-126-2456-2-12 always íƒ€ì¤ 125-126-2456-2-3 always íƒ€ì¥ 125-126-2456-2-236 always íƒ€ì¦ 125-126-2456-2-256 always íƒ€ì§ 125-126-2456-2-356 always íƒ€ì¨ 125-126-2456-26 always íƒ€ì© 125-126-2456-12 always íƒ€ìª 125-126-2456-12-3 always íƒ€ì« 125-126-2456-3 always íƒ€ì¬ 125-126-2456-34 always íƒ€ì­ 125-126-2456-2356 always íƒ€ì® 125-126-2456-13 always íƒ€ì¯ 125-126-2456-23 always íƒ€ì° 125-126-2456-235 always íƒ€ì± 125-126-2456-236 always íƒ€ì² 125-126-2456-256 always íƒ€ì³ 125-126-2456-356 always íƒ€ì´ 125-126-135 always íƒ€ìµ 125-126-135-1 always íƒ€ì¶ 125-126-135-1-1 always íƒ€ì· 125-126-135-1-3 always íƒ€ì¸ 125-126-12345 always íƒ€ì¹ 125-126-12345-13 always íƒ€ìº 125-126-12345-356 always íƒ€ì» 125-126-135-35 always íƒ€ì¼ 125-126-135-2 always íƒ€ì½ 125-126-135-2-1 always íƒ€ì¾ 125-126-135-2-26 always íƒ€ì¿ 125-126-135-2-12 always 타잀 125-126-135-2-3 always íƒ€ìž 125-126-135-2-236 always 타잂 125-126-135-2-256 always 타잃 125-126-135-2-356 always 타임 125-126-135-26 always 타입 125-126-135-12 always 타잆 125-126-135-12-3 always 타잇 125-126-135-3 always 타있 125-126-135-34 always 타잉 125-126-135-2356 always 타잊 125-126-135-13 always 타잋 125-126-135-23 always 타잌 125-126-135-235 always íƒ€ìž 125-126-135-236 always 타잎 125-126-135-256 always íƒ€ìž 125-126-135-356 always 파아 145-126-126 always 파악 145-126-126-1 always 파앆 145-126-126-1-1 always 파앇 145-126-126-1-3 always 파안 145-126-126-25 always 파앉 145-126-126-25-13 always 파않 145-126-126-25-356 always 파앋 145-126-126-35 always 파알 145-126-126-2 always íŒŒì• 145-126-126-2-1 always 파앎 145-126-126-2-26 always íŒŒì• 145-126-126-2-12 always íŒŒì• 145-126-126-2-3 always 파앑 145-126-126-2-236 always 파앒 145-126-126-2-256 always 파앓 145-126-126-2-356 always 파암 145-126-126-26 always 파압 145-126-126-12 always 파앖 145-126-126-12-3 always 파앗 145-126-126-3 always 파았 145-126-126-34 always 파앙 145-126-126-2356 always 파앚 145-126-126-13 always 파앛 145-126-126-23 always 파앜 145-126-126-235 always íŒŒì• 145-126-126-236 always 파앞 145-126-126-256 always 파앟 145-126-126-356 always 파애 145-126-1235 always 파액 145-126-1235-1 always 파앢 145-126-1235-1-1 always 파앣 145-126-1235-1-3 always 파앤 145-126-1235-25 always 파앥 145-126-1235-25-13 always 파앦 145-126-1235-25-356 always 파앧 145-126-1235-35 always 파앨 145-126-1235-2 always 파앩 145-126-1235-2-1 always 파앪 145-126-1235-2-26 always 파앫 145-126-1235-2-12 always 파앬 145-126-1235-2-3 always 파앭 145-126-1235-2-236 always 파앮 145-126-1235-2-256 always 파앯 145-126-1235-2-356 always 파앰 145-126-1235-26 always 파앱 145-126-1235-12 always 파앲 145-126-1235-12-3 always 파앳 145-126-1235-3 always 파앴 145-126-1235-34 always 파앵 145-126-1235-2356 always 파앶 145-126-1235-13 always 파앷 145-126-1235-23 always 파앸 145-126-1235-235 always 파앹 145-126-1235-236 always 파앺 145-126-1235-256 always 파앻 145-126-1235-356 always 파야 145-126-345 always 파약 145-126-345-1 always 파앾 145-126-345-1-1 always 파앿 145-126-345-1-3 always 파얀 145-126-345-25 always íŒŒì– 145-126-345-25-13 always 파얂 145-126-345-25-356 always 파얃 145-126-345-35 always 파얄 145-126-345-2 always 파얅 145-126-345-2-1 always 파얆 145-126-345-2-26 always 파얇 145-126-345-2-12 always 파얈 145-126-345-2-3 always 파얉 145-126-345-2-236 always 파얊 145-126-345-2-256 always 파얋 145-126-345-2-356 always 파얌 145-126-345-26 always íŒŒì– 145-126-345-12 always 파얎 145-126-345-12-3 always íŒŒì– 145-126-345-3 always íŒŒì– 145-126-345-34 always 파양 145-126-345-2356 always 파얒 145-126-345-13 always 파얓 145-126-345-23 always 파얔 145-126-345-235 always 파얕 145-126-345-236 always 파얖 145-126-345-256 always 파얗 145-126-345-356 always 파얘 145-126-345-1235 always 파얙 145-126-345-1235-1 always 파얚 145-126-345-1235-1-1 always 파얛 145-126-345-1235-1-3 always 파얜 145-126-345-1235-25 always íŒŒì– 145-126-345-1235-25-13 always 파얞 145-126-345-1235-25-356 always 파얟 145-126-345-1235-35 always 파얠 145-126-345-1235-2 always 파얡 145-126-345-1235-2-1 always 파얢 145-126-345-1235-2-26 always 파얣 145-126-345-1235-2-12 always 파얤 145-126-345-1235-2-3 always 파얥 145-126-345-1235-2-236 always 파얦 145-126-345-1235-2-256 always 파얧 145-126-345-1235-2-356 always 파얨 145-126-345-1235-26 always 파얩 145-126-345-1235-12 always 파얪 145-126-345-1235-12-3 always 파얫 145-126-345-1235-3 always 파얬 145-126-345-1235-34 always 파얭 145-126-345-1235-2356 always 파얮 145-126-345-1235-13 always 파얯 145-126-345-1235-23 always 파얰 145-126-345-1235-235 always 파얱 145-126-345-1235-236 always 파얲 145-126-345-1235-256 always 파얳 145-126-345-1235-356 always 파어 145-126-234 always 파억 145-126-1456 always 파얶 145-126-1456-1 always 파얷 145-126-1456-3 always 파언 145-126-23456 always 파얹 145-126-23456-13 always 파얺 145-126-23456-356 always 파얻 145-126-234-35 always 파얼 145-126-2345 always 파얽 145-126-2345-1 always 파얾 145-126-2345-26 always 파얿 145-126-2345-12 always 파엀 145-126-2345-3 always íŒŒì— 145-126-2345-236 always 파엂 145-126-2345-256 always 파엃 145-126-2345-356 always 파엄 145-126-234-26 always 파업 145-126-234-12 always 파없 145-126-234-12-3 always 파엇 145-126-234-3 always 파었 145-126-234-34 always 파엉 145-126-234-2356 always 파엊 145-126-234-13 always 파엋 145-126-234-23 always 파엌 145-126-234-235 always íŒŒì— 145-126-234-236 always 파엎 145-126-234-256 always íŒŒì— 145-126-234-356 always íŒŒì— 145-126-1345 always 파엑 145-126-1345-1 always 파엒 145-126-1345-1-1 always 파엓 145-126-1345-1-3 always 파엔 145-126-1345-25 always 파엕 145-126-1345-25-13 always 파엖 145-126-1345-25-356 always 파엗 145-126-1345-35 always 파엘 145-126-1345-2 always 파엙 145-126-1345-2-1 always 파엚 145-126-1345-2-26 always 파엛 145-126-1345-2-12 always 파엜 145-126-1345-2-3 always íŒŒì— 145-126-1345-2-236 always 파엞 145-126-1345-2-256 always 파엟 145-126-1345-2-356 always 파엠 145-126-1345-26 always 파엡 145-126-1345-12 always 파엢 145-126-1345-12-3 always 파엣 145-126-1345-3 always 파엤 145-126-1345-34 always 파엥 145-126-1345-2356 always 파엦 145-126-1345-13 always 파엧 145-126-1345-23 always 파엨 145-126-1345-235 always 파엩 145-126-1345-236 always 파엪 145-126-1345-256 always 파엫 145-126-1345-356 always 파여 145-126-156 always 파역 145-126-156-1 always 파엮 145-126-156-1-1 always 파엯 145-126-156-1-3 always 파연 145-126-16 always 파엱 145-126-16-13 always 파엲 145-126-16-356 always 파열 145-126-1256 always 파엵 145-126-1256-1 always 파엶 145-126-1256-26 always 파엷 145-126-1256-12 always 파엸 145-126-1256-3 always 파엹 145-126-1256-236 always 파엺 145-126-1256-256 always 파엻 145-126-1256-356 always 파염 145-126-156-26 always 파엽 145-126-156-12 always 파엾 145-126-156-12-3 always 파엿 145-126-156-3 always 파였 145-126-156-34 always íŒŒì˜ 145-126-12456 always 파옂 145-126-156-13 always 파옃 145-126-156-23 always 파옄 145-126-156-235 always 파옅 145-126-156-236 always 파옆 145-126-156-256 always 파옇 145-126-156-356 always 파예 145-126-34 always 파옉 145-126-34-1 always 파옊 145-126-34-1-1 always 파옋 145-126-34-1-3 always 파옌 145-126-34-25 always íŒŒì˜ 145-126-34-25-13 always 파옎 145-126-34-25-356 always íŒŒì˜ 145-126-34-35 always íŒŒì˜ 145-126-34-2 always 파옑 145-126-34-2-1 always 파옒 145-126-34-2-26 always 파옓 145-126-34-2-12 always 파옔 145-126-34-2-3 always 파옕 145-126-34-2-236 always 파옖 145-126-34-2-256 always 파옗 145-126-34-2-356 always 파옘 145-126-34-26 always 파옙 145-126-34-12 always 파옚 145-126-34-12-3 always 파옛 145-126-34-3 always 파옜 145-126-34-34 always íŒŒì˜ 145-126-34-2356 always 파옞 145-126-34-13 always 파옟 145-126-34-23 always 파옠 145-126-34-235 always 파옡 145-126-34-236 always 파옢 145-126-34-256 always 파옣 145-126-34-356 always 파오 145-126-136 always 파옥 145-126-1346 always 파옦 145-126-1346-1 always 파옧 145-126-1346-3 always 파온 145-126-12356 always 파옩 145-126-12356-13 always 파옪 145-126-12356-356 always 파옫 145-126-136-35 always 파올 145-126-136-2 always 파옭 145-126-136-2-1 always 파옮 145-126-136-2-26 always 파옯 145-126-136-2-12 always 파옰 145-126-136-2-3 always 파옱 145-126-136-2-236 always 파옲 145-126-136-2-256 always 파옳 145-126-136-2-356 always 파옴 145-126-136-26 always 파옵 145-126-136-12 always 파옶 145-126-136-12-3 always 파옷 145-126-136-3 always 파옸 145-126-136-34 always 파옹 145-126-123456 always 파옺 145-126-136-13 always 파옻 145-126-136-23 always 파옼 145-126-136-235 always 파옽 145-126-136-236 always 파옾 145-126-136-256 always 파옿 145-126-136-356 always 파와 145-126-1236 always íŒŒì™ 145-126-1236-1 always 파왂 145-126-1236-1-1 always 파왃 145-126-1236-1-3 always 파완 145-126-1236-25 always 파왅 145-126-1236-25-13 always 파왆 145-126-1236-25-356 always 파왇 145-126-1236-35 always 파왈 145-126-1236-2 always 파왉 145-126-1236-2-1 always 파왊 145-126-1236-2-26 always 파왋 145-126-1236-2-12 always 파왌 145-126-1236-2-3 always íŒŒì™ 145-126-1236-2-236 always 파왎 145-126-1236-2-256 always íŒŒì™ 145-126-1236-2-356 always íŒŒì™ 145-126-1236-26 always 파왑 145-126-1236-12 always 파왒 145-126-1236-12-3 always 파왓 145-126-1236-3 always 파왔 145-126-1236-34 always 파왕 145-126-1236-2356 always 파왖 145-126-1236-13 always 파왗 145-126-1236-23 always 파왘 145-126-1236-235 always 파왙 145-126-1236-236 always 파왚 145-126-1236-256 always 파왛 145-126-1236-356 always 파왜 145-126-1236-1235 always íŒŒì™ 145-126-1236-1235-1 always 파왞 145-126-1236-1235-1-1 always 파왟 145-126-1236-1235-1-3 always 파왠 145-126-1236-1235-25 always 파왡 145-126-1236-1235-25-13 always 파왢 145-126-1236-1235-25-356 always 파왣 145-126-1236-1235-35 always 파왤 145-126-1236-1235-2 always 파왥 145-126-1236-1235-2-1 always 파왦 145-126-1236-1235-2-26 always 파왧 145-126-1236-1235-2-12 always 파왨 145-126-1236-1235-2-3 always 파왩 145-126-1236-1235-2-236 always 파왪 145-126-1236-1235-2-256 always 파왫 145-126-1236-1235-2-356 always 파왬 145-126-1236-1235-26 always 파왭 145-126-1236-1235-12 always 파왮 145-126-1236-1235-12-3 always 파왯 145-126-1236-1235-3 always 파왰 145-126-1236-1235-34 always 파왱 145-126-1236-1235-2356 always 파왲 145-126-1236-1235-13 always 파왳 145-126-1236-1235-23 always 파왴 145-126-1236-1235-235 always 파왵 145-126-1236-1235-236 always 파왶 145-126-1236-1235-256 always 파왷 145-126-1236-1235-356 always 파외 145-126-13456 always 파왹 145-126-13456-1 always 파왺 145-126-13456-1-1 always 파왻 145-126-13456-1-3 always 파왼 145-126-13456-25 always 파왽 145-126-13456-25-13 always 파왾 145-126-13456-25-356 always 파왿 145-126-13456-35 always 파욀 145-126-13456-2 always íŒŒìš 145-126-13456-2-1 always 파욂 145-126-13456-2-26 always 파욃 145-126-13456-2-12 always 파욄 145-126-13456-2-3 always 파욅 145-126-13456-2-236 always 파욆 145-126-13456-2-256 always 파욇 145-126-13456-2-356 always 파욈 145-126-13456-26 always 파욉 145-126-13456-12 always 파욊 145-126-13456-12-3 always 파욋 145-126-13456-3 always 파욌 145-126-13456-34 always íŒŒìš 145-126-13456-2356 always 파욎 145-126-13456-13 always íŒŒìš 145-126-13456-23 always íŒŒìš 145-126-13456-235 always 파욑 145-126-13456-236 always 파욒 145-126-13456-256 always 파욓 145-126-13456-356 always 파요 145-126-346 always 파욕 145-126-346-1 always 파욖 145-126-346-1-1 always 파욗 145-126-346-1-3 always 파욘 145-126-346-25 always 파욙 145-126-346-25-13 always 파욚 145-126-346-25-356 always 파욛 145-126-346-35 always 파욜 145-126-346-2 always íŒŒìš 145-126-346-2-1 always 파욞 145-126-346-2-26 always 파욟 145-126-346-2-12 always 파욠 145-126-346-2-3 always 파욡 145-126-346-2-236 always 파욢 145-126-346-2-256 always 파욣 145-126-346-2-356 always 파욤 145-126-346-26 always 파욥 145-126-346-12 always 파욦 145-126-346-12-3 always 파욧 145-126-346-3 always 파욨 145-126-346-34 always 파용 145-126-346-2356 always 파욪 145-126-346-13 always 파욫 145-126-346-23 always 파욬 145-126-346-235 always 파욭 145-126-346-236 always 파욮 145-126-346-256 always 파욯 145-126-346-356 always 파우 145-126-134 always 파욱 145-126-134-1 always 파욲 145-126-134-1-1 always 파욳 145-126-134-1-3 always 파운 145-126-1245 always 파욵 145-126-1245-13 always 파욶 145-126-1245-356 always 파욷 145-126-134-35 always 파울 145-126-12346 always 파욹 145-126-12346-1 always 파욺 145-126-12346-26 always 파욻 145-126-12346-12 always 파욼 145-126-12346-3 always 파욽 145-126-12346-236 always 파욾 145-126-12346-256 always 파욿 145-126-12346-356 always 파움 145-126-134-26 always íŒŒì› 145-126-134-12 always 파웂 145-126-134-12-3 always 파웃 145-126-134-3 always 파웄 145-126-134-34 always 파웅 145-126-134-2356 always 파웆 145-126-134-13 always 파웇 145-126-134-23 always 파웈 145-126-134-235 always 파웉 145-126-134-236 always 파웊 145-126-134-256 always 파웋 145-126-134-356 always 파워 145-126-1234 always íŒŒì› 145-126-1234-1 always 파웎 145-126-1234-1-1 always íŒŒì› 145-126-1234-1-3 always íŒŒì› 145-126-1234-25 always 파웑 145-126-1234-25-13 always 파웒 145-126-1234-25-356 always 파웓 145-126-1234-35 always 파월 145-126-1234-2 always 파웕 145-126-1234-2-1 always 파웖 145-126-1234-2-26 always 파웗 145-126-1234-2-12 always 파웘 145-126-1234-2-3 always 파웙 145-126-1234-2-236 always 파웚 145-126-1234-2-256 always 파웛 145-126-1234-2-356 always 파웜 145-126-1234-26 always íŒŒì› 145-126-1234-12 always 파웞 145-126-1234-12-3 always 파웟 145-126-1234-3 always 파웠 145-126-1234-34 always 파웡 145-126-1234-2356 always 파웢 145-126-1234-13 always 파웣 145-126-1234-23 always 파웤 145-126-1234-235 always 파웥 145-126-1234-236 always 파웦 145-126-1234-256 always 파웧 145-126-1234-356 always 파웨 145-126-1234-1235 always 파웩 145-126-1234-1235-1 always 파웪 145-126-1234-1235-1-1 always 파웫 145-126-1234-1235-1-3 always 파웬 145-126-1234-1235-25 always 파웭 145-126-1234-1235-25-13 always 파웮 145-126-1234-1235-25-356 always 파웯 145-126-1234-1235-35 always 파웰 145-126-1234-1235-2 always 파웱 145-126-1234-1235-2-1 always 파웲 145-126-1234-1235-2-26 always 파웳 145-126-1234-1235-2-12 always 파웴 145-126-1234-1235-2-3 always 파웵 145-126-1234-1235-2-236 always 파웶 145-126-1234-1235-2-256 always 파웷 145-126-1234-1235-2-356 always 파웸 145-126-1234-1235-26 always 파웹 145-126-1234-1235-12 always 파웺 145-126-1234-1235-12-3 always 파웻 145-126-1234-1235-3 always 파웼 145-126-1234-1235-34 always 파웽 145-126-1234-1235-2356 always 파웾 145-126-1234-1235-13 always 파웿 145-126-1234-1235-23 always 파윀 145-126-1234-1235-235 always íŒŒìœ 145-126-1234-1235-236 always 파윂 145-126-1234-1235-256 always 파윃 145-126-1234-1235-356 always 파위 145-126-134-1235 always 파윅 145-126-134-1235-1 always 파윆 145-126-134-1235-1-1 always 파윇 145-126-134-1235-1-3 always 파윈 145-126-134-1235-25 always 파윉 145-126-134-1235-25-13 always 파윊 145-126-134-1235-25-356 always 파윋 145-126-134-1235-35 always 파윌 145-126-134-1235-2 always íŒŒìœ 145-126-134-1235-2-1 always 파윎 145-126-134-1235-2-26 always íŒŒìœ 145-126-134-1235-2-12 always íŒŒìœ 145-126-134-1235-2-3 always 파윑 145-126-134-1235-2-236 always 파윒 145-126-134-1235-2-256 always 파윓 145-126-134-1235-2-356 always 파윔 145-126-134-1235-26 always 파윕 145-126-134-1235-12 always 파윖 145-126-134-1235-12-3 always 파윗 145-126-134-1235-3 always 파윘 145-126-134-1235-34 always 파윙 145-126-134-1235-2356 always 파윚 145-126-134-1235-13 always 파윛 145-126-134-1235-23 always 파윜 145-126-134-1235-235 always íŒŒìœ 145-126-134-1235-236 always 파윞 145-126-134-1235-256 always 파윟 145-126-134-1235-356 always 파유 145-126-146 always 파육 145-126-146-1 always 파윢 145-126-146-1-1 always 파윣 145-126-146-1-3 always 파윤 145-126-146-25 always 파윥 145-126-146-25-13 always 파윦 145-126-146-25-356 always 파윧 145-126-146-35 always 파율 145-126-146-2 always 파윩 145-126-146-2-1 always 파윪 145-126-146-2-26 always 파윫 145-126-146-2-12 always 파윬 145-126-146-2-3 always 파윭 145-126-146-2-236 always 파윮 145-126-146-2-256 always 파윯 145-126-146-2-356 always 파윰 145-126-146-26 always 파윱 145-126-146-12 always 파윲 145-126-146-12-3 always 파윳 145-126-146-3 always 파윴 145-126-146-34 always 파융 145-126-146-2356 always 파윶 145-126-146-13 always 파윷 145-126-146-23 always 파윸 145-126-146-235 always 파윹 145-126-146-236 always 파윺 145-126-146-256 always 파윻 145-126-146-356 always 파으 145-126-246 always 파윽 145-126-246-1 always 파윾 145-126-246-1-1 always 파윿 145-126-246-1-3 always íŒŒì€ 145-126-1356 always 파ì 145-126-1356-13 always íŒŒì‚ 145-126-1356-356 always íŒŒìƒ 145-126-246-35 always íŒŒì„ 145-126-2346 always íŒŒì… 145-126-2346-1 always íŒŒì† 145-126-2346-26 always íŒŒì‡ 145-126-2346-12 always íŒŒìˆ 145-126-2346-3 always íŒŒì‰ 145-126-2346-236 always íŒŒìŠ 145-126-2346-256 always íŒŒì‹ 145-126-2346-356 always íŒŒìŒ 145-126-246-26 always 파ì 145-126-246-12 always íŒŒìŽ 145-126-246-12-3 always 파ì 145-126-246-3 always 파ì 145-126-246-34 always íŒŒì‘ 145-126-246-2356 always íŒŒì’ 145-126-246-13 always íŒŒì“ 145-126-246-23 always íŒŒì” 145-126-246-235 always íŒŒì• 145-126-246-236 always íŒŒì– 145-126-246-256 always íŒŒì— 145-126-246-356 always íŒŒì˜ 145-126-2456 always íŒŒì™ 145-126-2456-1 always íŒŒìš 145-126-2456-1-1 always íŒŒì› 145-126-2456-1-3 always íŒŒìœ 145-126-2456-25 always 파ì 145-126-2456-25-13 always íŒŒìž 145-126-2456-25-356 always íŒŒìŸ 145-126-2456-35 always íŒŒì  145-126-2456-2 always íŒŒì¡ 145-126-2456-2-1 always íŒŒì¢ 145-126-2456-2-26 always íŒŒì£ 145-126-2456-2-12 always íŒŒì¤ 145-126-2456-2-3 always íŒŒì¥ 145-126-2456-2-236 always íŒŒì¦ 145-126-2456-2-256 always íŒŒì§ 145-126-2456-2-356 always íŒŒì¨ 145-126-2456-26 always íŒŒì© 145-126-2456-12 always íŒŒìª 145-126-2456-12-3 always íŒŒì« 145-126-2456-3 always íŒŒì¬ 145-126-2456-34 always íŒŒì­ 145-126-2456-2356 always íŒŒì® 145-126-2456-13 always íŒŒì¯ 145-126-2456-23 always íŒŒì° 145-126-2456-235 always íŒŒì± 145-126-2456-236 always íŒŒì² 145-126-2456-256 always íŒŒì³ 145-126-2456-356 always íŒŒì´ 145-126-135 always íŒŒìµ 145-126-135-1 always íŒŒì¶ 145-126-135-1-1 always íŒŒì· 145-126-135-1-3 always íŒŒì¸ 145-126-12345 always íŒŒì¹ 145-126-12345-13 always íŒŒìº 145-126-12345-356 always íŒŒì» 145-126-135-35 always íŒŒì¼ 145-126-135-2 always íŒŒì½ 145-126-135-2-1 always íŒŒì¾ 145-126-135-2-26 always íŒŒì¿ 145-126-135-2-12 always 파잀 145-126-135-2-3 always íŒŒìž 145-126-135-2-236 always 파잂 145-126-135-2-256 always 파잃 145-126-135-2-356 always 파임 145-126-135-26 always 파입 145-126-135-12 always 파잆 145-126-135-12-3 always 파잇 145-126-135-3 always 파있 145-126-135-34 always 파잉 145-126-135-2356 always 파잊 145-126-135-13 always 파잋 145-126-135-23 always 파잌 145-126-135-235 always íŒŒìž 145-126-135-236 always 파잎 145-126-135-256 always íŒŒìž 145-126-135-356 always 하아 245-126-126 always 하악 245-126-126-1 always 하앆 245-126-126-1-1 always 하앇 245-126-126-1-3 always 하안 245-126-126-25 always 하앉 245-126-126-25-13 always 하않 245-126-126-25-356 always 하앋 245-126-126-35 always 하알 245-126-126-2 always í•˜ì• 245-126-126-2-1 always 하앎 245-126-126-2-26 always í•˜ì• 245-126-126-2-12 always í•˜ì• 245-126-126-2-3 always 하앑 245-126-126-2-236 always 하앒 245-126-126-2-256 always 하앓 245-126-126-2-356 always 하암 245-126-126-26 always 하압 245-126-126-12 always 하앖 245-126-126-12-3 always 하앗 245-126-126-3 always 하았 245-126-126-34 always 하앙 245-126-126-2356 always 하앚 245-126-126-13 always 하앛 245-126-126-23 always 하앜 245-126-126-235 always í•˜ì• 245-126-126-236 always 하앞 245-126-126-256 always 하앟 245-126-126-356 always 하애 245-126-1235 always 하액 245-126-1235-1 always 하앢 245-126-1235-1-1 always 하앣 245-126-1235-1-3 always 하앤 245-126-1235-25 always 하앥 245-126-1235-25-13 always 하앦 245-126-1235-25-356 always 하앧 245-126-1235-35 always 하앨 245-126-1235-2 always 하앩 245-126-1235-2-1 always 하앪 245-126-1235-2-26 always 하앫 245-126-1235-2-12 always 하앬 245-126-1235-2-3 always 하앭 245-126-1235-2-236 always 하앮 245-126-1235-2-256 always 하앯 245-126-1235-2-356 always 하앰 245-126-1235-26 always 하앱 245-126-1235-12 always 하앲 245-126-1235-12-3 always 하앳 245-126-1235-3 always 하앴 245-126-1235-34 always 하앵 245-126-1235-2356 always 하앶 245-126-1235-13 always 하앷 245-126-1235-23 always 하앸 245-126-1235-235 always 하앹 245-126-1235-236 always 하앺 245-126-1235-256 always 하앻 245-126-1235-356 always 하야 245-126-345 always 하약 245-126-345-1 always 하앾 245-126-345-1-1 always 하앿 245-126-345-1-3 always 하얀 245-126-345-25 always í•˜ì– 245-126-345-25-13 always 하얂 245-126-345-25-356 always 하얃 245-126-345-35 always 하얄 245-126-345-2 always 하얅 245-126-345-2-1 always 하얆 245-126-345-2-26 always 하얇 245-126-345-2-12 always 하얈 245-126-345-2-3 always 하얉 245-126-345-2-236 always 하얊 245-126-345-2-256 always 하얋 245-126-345-2-356 always 하얌 245-126-345-26 always í•˜ì– 245-126-345-12 always 하얎 245-126-345-12-3 always í•˜ì– 245-126-345-3 always í•˜ì– 245-126-345-34 always 하양 245-126-345-2356 always 하얒 245-126-345-13 always 하얓 245-126-345-23 always 하얔 245-126-345-235 always 하얕 245-126-345-236 always 하얖 245-126-345-256 always 하얗 245-126-345-356 always 하얘 245-126-345-1235 always 하얙 245-126-345-1235-1 always 하얚 245-126-345-1235-1-1 always 하얛 245-126-345-1235-1-3 always 하얜 245-126-345-1235-25 always í•˜ì– 245-126-345-1235-25-13 always 하얞 245-126-345-1235-25-356 always 하얟 245-126-345-1235-35 always 하얠 245-126-345-1235-2 always 하얡 245-126-345-1235-2-1 always 하얢 245-126-345-1235-2-26 always 하얣 245-126-345-1235-2-12 always 하얤 245-126-345-1235-2-3 always 하얥 245-126-345-1235-2-236 always 하얦 245-126-345-1235-2-256 always 하얧 245-126-345-1235-2-356 always 하얨 245-126-345-1235-26 always 하얩 245-126-345-1235-12 always 하얪 245-126-345-1235-12-3 always 하얫 245-126-345-1235-3 always 하얬 245-126-345-1235-34 always 하얭 245-126-345-1235-2356 always 하얮 245-126-345-1235-13 always 하얯 245-126-345-1235-23 always 하얰 245-126-345-1235-235 always 하얱 245-126-345-1235-236 always 하얲 245-126-345-1235-256 always 하얳 245-126-345-1235-356 always 하어 245-126-234 always 하억 245-126-1456 always 하얶 245-126-1456-1 always 하얷 245-126-1456-3 always 하언 245-126-23456 always 하얹 245-126-23456-13 always 하얺 245-126-23456-356 always 하얻 245-126-234-35 always 하얼 245-126-2345 always 하얽 245-126-2345-1 always 하얾 245-126-2345-26 always 하얿 245-126-2345-12 always 하엀 245-126-2345-3 always í•˜ì— 245-126-2345-236 always 하엂 245-126-2345-256 always 하엃 245-126-2345-356 always 하엄 245-126-234-26 always 하업 245-126-234-12 always 하없 245-126-234-12-3 always 하엇 245-126-234-3 always 하었 245-126-234-34 always 하엉 245-126-234-2356 always 하엊 245-126-234-13 always 하엋 245-126-234-23 always 하엌 245-126-234-235 always í•˜ì— 245-126-234-236 always 하엎 245-126-234-256 always í•˜ì— 245-126-234-356 always í•˜ì— 245-126-1345 always 하엑 245-126-1345-1 always 하엒 245-126-1345-1-1 always 하엓 245-126-1345-1-3 always 하엔 245-126-1345-25 always 하엕 245-126-1345-25-13 always 하엖 245-126-1345-25-356 always 하엗 245-126-1345-35 always 하엘 245-126-1345-2 always 하엙 245-126-1345-2-1 always 하엚 245-126-1345-2-26 always 하엛 245-126-1345-2-12 always 하엜 245-126-1345-2-3 always í•˜ì— 245-126-1345-2-236 always 하엞 245-126-1345-2-256 always 하엟 245-126-1345-2-356 always 하엠 245-126-1345-26 always 하엡 245-126-1345-12 always 하엢 245-126-1345-12-3 always 하엣 245-126-1345-3 always 하엤 245-126-1345-34 always 하엥 245-126-1345-2356 always 하엦 245-126-1345-13 always 하엧 245-126-1345-23 always 하엨 245-126-1345-235 always 하엩 245-126-1345-236 always 하엪 245-126-1345-256 always 하엫 245-126-1345-356 always 하여 245-126-156 always 하역 245-126-156-1 always 하엮 245-126-156-1-1 always 하엯 245-126-156-1-3 always 하연 245-126-16 always 하엱 245-126-16-13 always 하엲 245-126-16-356 always 하열 245-126-1256 always 하엵 245-126-1256-1 always 하엶 245-126-1256-26 always 하엷 245-126-1256-12 always 하엸 245-126-1256-3 always 하엹 245-126-1256-236 always 하엺 245-126-1256-256 always 하엻 245-126-1256-356 always 하염 245-126-156-26 always 하엽 245-126-156-12 always 하엾 245-126-156-12-3 always 하엿 245-126-156-3 always 하였 245-126-156-34 always í•˜ì˜ 245-126-12456 always 하옂 245-126-156-13 always 하옃 245-126-156-23 always 하옄 245-126-156-235 always 하옅 245-126-156-236 always 하옆 245-126-156-256 always 하옇 245-126-156-356 always 하예 245-126-34 always 하옉 245-126-34-1 always 하옊 245-126-34-1-1 always 하옋 245-126-34-1-3 always 하옌 245-126-34-25 always í•˜ì˜ 245-126-34-25-13 always 하옎 245-126-34-25-356 always í•˜ì˜ 245-126-34-35 always í•˜ì˜ 245-126-34-2 always 하옑 245-126-34-2-1 always 하옒 245-126-34-2-26 always 하옓 245-126-34-2-12 always 하옔 245-126-34-2-3 always 하옕 245-126-34-2-236 always 하옖 245-126-34-2-256 always 하옗 245-126-34-2-356 always 하옘 245-126-34-26 always 하옙 245-126-34-12 always 하옚 245-126-34-12-3 always 하옛 245-126-34-3 always 하옜 245-126-34-34 always í•˜ì˜ 245-126-34-2356 always 하옞 245-126-34-13 always 하옟 245-126-34-23 always 하옠 245-126-34-235 always 하옡 245-126-34-236 always 하옢 245-126-34-256 always 하옣 245-126-34-356 always 하오 245-126-136 always 하옥 245-126-1346 always 하옦 245-126-1346-1 always 하옧 245-126-1346-3 always 하온 245-126-12356 always 하옩 245-126-12356-13 always 하옪 245-126-12356-356 always 하옫 245-126-136-35 always 하올 245-126-136-2 always 하옭 245-126-136-2-1 always 하옮 245-126-136-2-26 always 하옯 245-126-136-2-12 always 하옰 245-126-136-2-3 always 하옱 245-126-136-2-236 always 하옲 245-126-136-2-256 always 하옳 245-126-136-2-356 always 하옴 245-126-136-26 always 하옵 245-126-136-12 always 하옶 245-126-136-12-3 always 하옷 245-126-136-3 always 하옸 245-126-136-34 always 하옹 245-126-123456 always 하옺 245-126-136-13 always 하옻 245-126-136-23 always 하옼 245-126-136-235 always 하옽 245-126-136-236 always 하옾 245-126-136-256 always 하옿 245-126-136-356 always 하와 245-126-1236 always í•˜ì™ 245-126-1236-1 always 하왂 245-126-1236-1-1 always 하왃 245-126-1236-1-3 always 하완 245-126-1236-25 always 하왅 245-126-1236-25-13 always 하왆 245-126-1236-25-356 always 하왇 245-126-1236-35 always 하왈 245-126-1236-2 always 하왉 245-126-1236-2-1 always 하왊 245-126-1236-2-26 always 하왋 245-126-1236-2-12 always 하왌 245-126-1236-2-3 always í•˜ì™ 245-126-1236-2-236 always 하왎 245-126-1236-2-256 always í•˜ì™ 245-126-1236-2-356 always í•˜ì™ 245-126-1236-26 always 하왑 245-126-1236-12 always 하왒 245-126-1236-12-3 always 하왓 245-126-1236-3 always 하왔 245-126-1236-34 always 하왕 245-126-1236-2356 always 하왖 245-126-1236-13 always 하왗 245-126-1236-23 always 하왘 245-126-1236-235 always 하왙 245-126-1236-236 always 하왚 245-126-1236-256 always 하왛 245-126-1236-356 always 하왜 245-126-1236-1235 always í•˜ì™ 245-126-1236-1235-1 always 하왞 245-126-1236-1235-1-1 always 하왟 245-126-1236-1235-1-3 always 하왠 245-126-1236-1235-25 always 하왡 245-126-1236-1235-25-13 always 하왢 245-126-1236-1235-25-356 always 하왣 245-126-1236-1235-35 always 하왤 245-126-1236-1235-2 always 하왥 245-126-1236-1235-2-1 always 하왦 245-126-1236-1235-2-26 always 하왧 245-126-1236-1235-2-12 always 하왨 245-126-1236-1235-2-3 always 하왩 245-126-1236-1235-2-236 always 하왪 245-126-1236-1235-2-256 always 하왫 245-126-1236-1235-2-356 always 하왬 245-126-1236-1235-26 always 하왭 245-126-1236-1235-12 always 하왮 245-126-1236-1235-12-3 always 하왯 245-126-1236-1235-3 always 하왰 245-126-1236-1235-34 always 하왱 245-126-1236-1235-2356 always 하왲 245-126-1236-1235-13 always 하왳 245-126-1236-1235-23 always 하왴 245-126-1236-1235-235 always 하왵 245-126-1236-1235-236 always 하왶 245-126-1236-1235-256 always 하왷 245-126-1236-1235-356 always 하외 245-126-13456 always 하왹 245-126-13456-1 always 하왺 245-126-13456-1-1 always 하왻 245-126-13456-1-3 always 하왼 245-126-13456-25 always 하왽 245-126-13456-25-13 always 하왾 245-126-13456-25-356 always 하왿 245-126-13456-35 always 하욀 245-126-13456-2 always í•˜ìš 245-126-13456-2-1 always 하욂 245-126-13456-2-26 always 하욃 245-126-13456-2-12 always 하욄 245-126-13456-2-3 always 하욅 245-126-13456-2-236 always 하욆 245-126-13456-2-256 always 하욇 245-126-13456-2-356 always 하욈 245-126-13456-26 always 하욉 245-126-13456-12 always 하욊 245-126-13456-12-3 always 하욋 245-126-13456-3 always 하욌 245-126-13456-34 always í•˜ìš 245-126-13456-2356 always 하욎 245-126-13456-13 always í•˜ìš 245-126-13456-23 always í•˜ìš 245-126-13456-235 always 하욑 245-126-13456-236 always 하욒 245-126-13456-256 always 하욓 245-126-13456-356 always 하요 245-126-346 always 하욕 245-126-346-1 always 하욖 245-126-346-1-1 always 하욗 245-126-346-1-3 always 하욘 245-126-346-25 always 하욙 245-126-346-25-13 always 하욚 245-126-346-25-356 always 하욛 245-126-346-35 always 하욜 245-126-346-2 always í•˜ìš 245-126-346-2-1 always 하욞 245-126-346-2-26 always 하욟 245-126-346-2-12 always 하욠 245-126-346-2-3 always 하욡 245-126-346-2-236 always 하욢 245-126-346-2-256 always 하욣 245-126-346-2-356 always 하욤 245-126-346-26 always 하욥 245-126-346-12 always 하욦 245-126-346-12-3 always 하욧 245-126-346-3 always 하욨 245-126-346-34 always 하용 245-126-346-2356 always 하욪 245-126-346-13 always 하욫 245-126-346-23 always 하욬 245-126-346-235 always 하욭 245-126-346-236 always 하욮 245-126-346-256 always 하욯 245-126-346-356 always 하우 245-126-134 always 하욱 245-126-134-1 always 하욲 245-126-134-1-1 always 하욳 245-126-134-1-3 always 하운 245-126-1245 always 하욵 245-126-1245-13 always 하욶 245-126-1245-356 always 하욷 245-126-134-35 always 하울 245-126-12346 always 하욹 245-126-12346-1 always 하욺 245-126-12346-26 always 하욻 245-126-12346-12 always 하욼 245-126-12346-3 always 하욽 245-126-12346-236 always 하욾 245-126-12346-256 always 하욿 245-126-12346-356 always 하움 245-126-134-26 always í•˜ì› 245-126-134-12 always 하웂 245-126-134-12-3 always 하웃 245-126-134-3 always 하웄 245-126-134-34 always 하웅 245-126-134-2356 always 하웆 245-126-134-13 always 하웇 245-126-134-23 always 하웈 245-126-134-235 always 하웉 245-126-134-236 always 하웊 245-126-134-256 always 하웋 245-126-134-356 always 하워 245-126-1234 always í•˜ì› 245-126-1234-1 always 하웎 245-126-1234-1-1 always í•˜ì› 245-126-1234-1-3 always í•˜ì› 245-126-1234-25 always 하웑 245-126-1234-25-13 always 하웒 245-126-1234-25-356 always 하웓 245-126-1234-35 always 하월 245-126-1234-2 always 하웕 245-126-1234-2-1 always 하웖 245-126-1234-2-26 always 하웗 245-126-1234-2-12 always 하웘 245-126-1234-2-3 always 하웙 245-126-1234-2-236 always 하웚 245-126-1234-2-256 always 하웛 245-126-1234-2-356 always 하웜 245-126-1234-26 always í•˜ì› 245-126-1234-12 always 하웞 245-126-1234-12-3 always 하웟 245-126-1234-3 always 하웠 245-126-1234-34 always 하웡 245-126-1234-2356 always 하웢 245-126-1234-13 always 하웣 245-126-1234-23 always 하웤 245-126-1234-235 always 하웥 245-126-1234-236 always 하웦 245-126-1234-256 always 하웧 245-126-1234-356 always 하웨 245-126-1234-1235 always 하웩 245-126-1234-1235-1 always 하웪 245-126-1234-1235-1-1 always 하웫 245-126-1234-1235-1-3 always 하웬 245-126-1234-1235-25 always 하웭 245-126-1234-1235-25-13 always 하웮 245-126-1234-1235-25-356 always 하웯 245-126-1234-1235-35 always 하웰 245-126-1234-1235-2 always 하웱 245-126-1234-1235-2-1 always 하웲 245-126-1234-1235-2-26 always 하웳 245-126-1234-1235-2-12 always 하웴 245-126-1234-1235-2-3 always 하웵 245-126-1234-1235-2-236 always 하웶 245-126-1234-1235-2-256 always 하웷 245-126-1234-1235-2-356 always 하웸 245-126-1234-1235-26 always 하웹 245-126-1234-1235-12 always 하웺 245-126-1234-1235-12-3 always 하웻 245-126-1234-1235-3 always 하웼 245-126-1234-1235-34 always 하웽 245-126-1234-1235-2356 always 하웾 245-126-1234-1235-13 always 하웿 245-126-1234-1235-23 always 하윀 245-126-1234-1235-235 always í•˜ìœ 245-126-1234-1235-236 always 하윂 245-126-1234-1235-256 always 하윃 245-126-1234-1235-356 always 하위 245-126-134-1235 always 하윅 245-126-134-1235-1 always 하윆 245-126-134-1235-1-1 always 하윇 245-126-134-1235-1-3 always 하윈 245-126-134-1235-25 always 하윉 245-126-134-1235-25-13 always 하윊 245-126-134-1235-25-356 always 하윋 245-126-134-1235-35 always 하윌 245-126-134-1235-2 always í•˜ìœ 245-126-134-1235-2-1 always 하윎 245-126-134-1235-2-26 always í•˜ìœ 245-126-134-1235-2-12 always í•˜ìœ 245-126-134-1235-2-3 always 하윑 245-126-134-1235-2-236 always 하윒 245-126-134-1235-2-256 always 하윓 245-126-134-1235-2-356 always 하윔 245-126-134-1235-26 always 하윕 245-126-134-1235-12 always 하윖 245-126-134-1235-12-3 always 하윗 245-126-134-1235-3 always 하윘 245-126-134-1235-34 always 하윙 245-126-134-1235-2356 always 하윚 245-126-134-1235-13 always 하윛 245-126-134-1235-23 always 하윜 245-126-134-1235-235 always í•˜ìœ 245-126-134-1235-236 always 하윞 245-126-134-1235-256 always 하윟 245-126-134-1235-356 always 하유 245-126-146 always 하육 245-126-146-1 always 하윢 245-126-146-1-1 always 하윣 245-126-146-1-3 always 하윤 245-126-146-25 always 하윥 245-126-146-25-13 always 하윦 245-126-146-25-356 always 하윧 245-126-146-35 always 하율 245-126-146-2 always 하윩 245-126-146-2-1 always 하윪 245-126-146-2-26 always 하윫 245-126-146-2-12 always 하윬 245-126-146-2-3 always 하윭 245-126-146-2-236 always 하윮 245-126-146-2-256 always 하윯 245-126-146-2-356 always 하윰 245-126-146-26 always 하윱 245-126-146-12 always 하윲 245-126-146-12-3 always 하윳 245-126-146-3 always 하윴 245-126-146-34 always 하융 245-126-146-2356 always 하윶 245-126-146-13 always 하윷 245-126-146-23 always 하윸 245-126-146-235 always 하윹 245-126-146-236 always 하윺 245-126-146-256 always 하윻 245-126-146-356 always 하으 245-126-246 always 하윽 245-126-246-1 always 하윾 245-126-246-1-1 always 하윿 245-126-246-1-3 always í•˜ì€ 245-126-1356 always 하ì 245-126-1356-13 always í•˜ì‚ 245-126-1356-356 always í•˜ìƒ 245-126-246-35 always í•˜ì„ 245-126-2346 always í•˜ì… 245-126-2346-1 always í•˜ì† 245-126-2346-26 always í•˜ì‡ 245-126-2346-12 always í•˜ìˆ 245-126-2346-3 always í•˜ì‰ 245-126-2346-236 always í•˜ìŠ 245-126-2346-256 always í•˜ì‹ 245-126-2346-356 always í•˜ìŒ 245-126-246-26 always 하ì 245-126-246-12 always í•˜ìŽ 245-126-246-12-3 always 하ì 245-126-246-3 always 하ì 245-126-246-34 always í•˜ì‘ 245-126-246-2356 always í•˜ì’ 245-126-246-13 always í•˜ì“ 245-126-246-23 always í•˜ì” 245-126-246-235 always í•˜ì• 245-126-246-236 always í•˜ì– 245-126-246-256 always í•˜ì— 245-126-246-356 always í•˜ì˜ 245-126-2456 always í•˜ì™ 245-126-2456-1 always í•˜ìš 245-126-2456-1-1 always í•˜ì› 245-126-2456-1-3 always í•˜ìœ 245-126-2456-25 always 하ì 245-126-2456-25-13 always í•˜ìž 245-126-2456-25-356 always í•˜ìŸ 245-126-2456-35 always í•˜ì  245-126-2456-2 always í•˜ì¡ 245-126-2456-2-1 always í•˜ì¢ 245-126-2456-2-26 always í•˜ì£ 245-126-2456-2-12 always í•˜ì¤ 245-126-2456-2-3 always í•˜ì¥ 245-126-2456-2-236 always í•˜ì¦ 245-126-2456-2-256 always í•˜ì§ 245-126-2456-2-356 always í•˜ì¨ 245-126-2456-26 always í•˜ì© 245-126-2456-12 always í•˜ìª 245-126-2456-12-3 always í•˜ì« 245-126-2456-3 always í•˜ì¬ 245-126-2456-34 always í•˜ì­ 245-126-2456-2356 always í•˜ì® 245-126-2456-13 always í•˜ì¯ 245-126-2456-23 always í•˜ì° 245-126-2456-235 always í•˜ì± 245-126-2456-236 always í•˜ì² 245-126-2456-256 always í•˜ì³ 245-126-2456-356 always í•˜ì´ 245-126-135 always í•˜ìµ 245-126-135-1 always í•˜ì¶ 245-126-135-1-1 always í•˜ì· 245-126-135-1-3 always í•˜ì¸ 245-126-12345 always í•˜ì¹ 245-126-12345-13 always í•˜ìº 245-126-12345-356 always í•˜ì» 245-126-135-35 always í•˜ì¼ 245-126-135-2 always í•˜ì½ 245-126-135-2-1 always í•˜ì¾ 245-126-135-2-26 always í•˜ì¿ 245-126-135-2-12 always 하잀 245-126-135-2-3 always í•˜ìž 245-126-135-2-236 always 하잂 245-126-135-2-256 always 하잃 245-126-135-2-356 always 하임 245-126-135-26 always 하입 245-126-135-12 always 하잆 245-126-135-12-3 always 하잇 245-126-135-3 always 하있 245-126-135-34 always 하잉 245-126-135-2356 always 하잊 245-126-135-13 always 하잋 245-126-135-23 always 하잌 245-126-135-235 always í•˜ìž 245-126-135-236 always 하잎 245-126-135-256 always í•˜ìž 245-126-135-356 liblouis-2.5.3/tables/UEBC-g2.ctb0000664000175000017500000004242612161041546013266 00000000000000# liblouis: Unified English Braille Grade 2 Table # Created by Tom Johnston . include UEBC-g1.utb # the letter a largesign a 1 always about 1-12 contraction ab always above 1-12-1236 contraction abv always according 1-14 contraction ac always across 1-14-1235 contraction acr always aed = #always aer = Rosenlaer begword aforem 1-123456-15-134 aforementioned word aforesaid 1-123456-15-234-145 always after 1-124 contraction af sufword afternoon 1-124-1345 afternoons contraction afn always afterward 1-124-2456 contraction afw word again 1-1245 contraction ag word against 1-1245-34 word agst = #endword gery = orangery word almost 1-123-134 contraction alm word already 1-123-1235 contraction alr word also 1-123 contraction al word although 1-123-1456 word alth = word altogether 1-123-2345 contraction alt word always 1-123-2456 contraction alw midendword ance 46-15 largesign and 12346 midword angh = Shanghai begword aqued = aqueduct always ar 345 word aright 1-5-1235 word as 1356 contraction as midendword aunder 1-136-1345-145-12456 saunders begword auto = autofocus # the letter b lowword be 23 begword be 23 begword bea 12-15-1 always bear 12-15-345 begword beatif 23-1-2345-24-124 begword beatit 23-1-2345-24-2345 begword beatr 12-15-1-2345-1235 Beatrice always beck 12-15-14-13 always bed 12-1246 begword beda 23-145-1 bedazzle begword bede 23-145-15 bedevil word bede 12-1246-15 bede (a name) begword bedi 23-145-24 bedizzened word bee 12-15-15 begword bee 12-15-15 always been 12-15-26 always beer 12-15-12456 word beg = begword begg 12-15-1245-1245 word begs = begword bei = beijing sufword being 23-346 sufword belch 12-15-123-16 begword beld = Beldon begword belf = belfry, belfast begword belg = Belgium begword belk = Belkin always bell = begword belm = Belmont always belt = begword belw = belwether always ben 12-26 begword beni 12-26-24 begword benif 23-1345-24-124 benificient sufword benign 23-1345-24-1245-1345 benignity begword benov 23-1345-135-1236 benovolent begword benu 23-1345-136 benumbed begword ber 12-12456 begword bera 23-1235-1 berating begword bere 23-1235-15 bereft begword berea 23-1235-2 bereaved begword beri 23-1235-24 beribboned always best 12-15-34 sufword bestow 23-34-246 always beth 12-15-1456 Bethany always bethe 12-15-2346 Bethel (Hans) Bethe always bets = always bett = sufword bev = bevies begword bever 12-5-15 Beverly beverage always bio = midendword bious 12-24-1256-234 dubious always because 23-14 word bec = always before 23-124 word bef = always behind 23-125 word behring 12-15-125-1235-346 word beh = word bel = begword beln = Belnick always below 23-123 always beneath 23-1345 always beside 23-234 word bes = sufword bess = Bessie always between 23-2345 word bet = always beyond 23-13456 word bey = always bless 12-46-234 joblessness always blind 12-123 contraction bl always blinded 12-123-35-145-1246 sufword blinder 12-123-35-145-12456 word blinding 12-123-35-145-346 always braille 12-1235-123 contraction brl word but 12 # the letter c midword cch 14-16 always chloro 16-123-135-1235-135 begword cofac = cofactor always cofound 14-135-124-46-145 sufword common 14-135-134-134-135-1345 commonest begword con 25 sufword conceive 25-14-1236 word concv = word concvd = word concvr = word concvs = word concvst = word concvth = sufword conceiving 25-14-1236-1245 word concvg = always cone 14-5-135 word cons 14-135-1345-234 sufword conundrum = always could 14-145 contraction cd sufword coworker 14-135-5-2456-12456 word can 14 always cannot 456-14 word ch = always ch 16 always character 5-16 always chemo 16-15-134-135 word child 16 always children 16-1345 word chn = sufword clever 14-123-5-15 cleverest # the letter d always day 5-145 begword deact = deactivation begword deall = deallocate begword decarb 145-15-14-345-12 always deceive 145-14-1236 contraction dcv contraction dcvd contraction dcvr contraction dcvs word dcvst = word dcvth = always deceiving 145-14-1236-1245 contraction dcvg always declare 145-14-123 contraction dcl contraction dcld contraction dclr contraction dcls word dclst = word dclth = always declaring 145-14-123-1245 contraction dclg begword deref = dereferencing begword dereg = deregulation midendword dday 145-5-145 midday begword dedic 145-1246-24-14 dedicated begword dis 256 #sufword disc = discount disconsolate always dish 145-24-146 begword disha 256-125-1 dishabile begword dishear 256-125-15-345 disheartened begword disho 256-125-135 dishonor begword dishone 256-125-5-135 dishonest sufword disk = sufword dispirit 145-24-456-234 dispirited begword disul = disulfide word do 145 # the letter e midword eabil = interchangeability endword eably = noticeably midendword eage = mileage midendword eager 15-1-1245-12456 meager #always eally 15-6-13456 midendword eance 15-46-15 vengeance midendword eand 15-12346 meander #always eation 15-6-1345 always ear 15-345 always ed 1246 #always edic = edict Benedict sufword edict = #sufword edition 15-145-24-56-1345 editions #midword edo 15-145-135 always edraw = word either 15-24 contraction ei word en = always en 26 always ename 15-5-1345 sufword enamel 26-1-134-15-123 enameled midendword ence 56-15 always eneck = bottleneck midendword eness 15-56-234 closeness endword enesse 15-56-234-15 #begword enor = enormous #begword enou 15-1345-1256 lowword enough 26 word enough 26-1256-126 #begword enu 15-1345-136 always er 12456 #begword era = #word eras 12456-1-234 #begword erec = erect #begword ero 15-1235-135 midendword eroom = storeroom #begword eru = erupt always ever 5-15 midendword evere 15-1236-12456-15 Everest always evered 15-1236-12456-1246 word every 15 # the letter f always father 5-124 always fein 124-15-35 Feingold always first 124-34 word fst = #always fever 124-15-1236-12456 always ffor 124-123456 largesign for 123456 always fore 123456-15 begword forens 123456-26-234 forensic always forever 123456-5-15 forevermore always foot = word from 124 always friend 124-1235 contraction fr midendword ful 56-123 always funder 124-136-1345-145-12456 # the letter g begword geo = geoengineering sufword geoff 1245-15-12356-124 Geoffrey always gh 126 endword gham = Langham always ghead 1245-125-15-1-145 always gheart 1245-125-15-345-2345 midendword ghill = dunghill midendword ghorn = bighorn always ghouse 1245-125-1256-234-15 always ghz = (gigahertz) begword givea = giveaway sufword gnome = gnomedb word go 1245 always good 1245-145 contraction gd begword gos = goshawk word goshen 1245-135-146-26 always great 1245-1235-2345 contraction grt # the letter h always had 456-125 begword hadd 125-1-256 haddock sufword hade = hadean word have 125 always here 5-125 always hered 125-12456-1246 always heren 125-12456-26 midendword herence 125-12456-56-15 adherence always herer 125-12456-12456 always heres 125-12456-15-234 always heret 125-12456-15-2345 word heretofore 5-125-2345-135-123456-15 word herself 125-12456-124 word herf = word him 125-134 word hm 125-3-134 sufword hmm = word himself 125-134-124 contraction hmf lowword his 236 sufword horse = horseradish always hydro = # the letter i word i 24 midendword iever 24-15-1236-12456 always immediate 24-134-134 contraction imm begword immuno = immunofluorescence lowword in 35 word in = always in 35 begword incon 35-14-135-1345 incongruous always iness 24-56-234 endword inesse 24-56-234-15 midendword ing 346 #midword inga 35-1245-1 nightingale always ingar 35-1245-345 Weingarten #midword ingen 35-1245-26 palingenesis (new birth) #midword ingi 35-1245-24 meningitis midendword inging 346-346 bringing always isomer 24-234-135-134-12456 word it 1346 word its 1346-234 contraction xs word itself 1346-124 contraction xf midendword ity 56-13456 # the letter j word just 245 # the letter k always know 5-13 word knowledge 13 # the letter l midendword less 46-234 always letter 123-1235 contraction lr word like 123 always little 123-123 contraction ll sufword lone 123-5-135 lonely always lord 5-123 # the letter m always many 456-134 begword mc = always medic 134-1246-24-14 medicare midendword ment 56-2345 midword menth 134-26-1456 Blumenthal always mideast 134-24-145-15-1-34 word milling 134-24-123-123-346 begword mishand 134-24-234-125-12346 mishandled always mishap = sufword mishear 134-24-234-125-15-345 misheard begword missh 134-24-234-146 misshapen word mistook = begword mistran = mistranslation sufword mistreat 134-24-234-2345-1235-15-1-2345 begword mistru = mistrust begword misty = mistyped word monetary 134-5-135-2345-345-13456 word more 134 always mother 5-134 always much 134-16 word mch = word must 134-34 word mst = word mustn 134-34-1345 begword myo = myofibroblasts word myself 134-13456-124 contraction myf # the letter n always name 5-1345 always nament 1345-1-56-2345 tournament always namese = endnum nd 1345-145 always necessary 1345-15-14 contraction nec word neither 1345-15-24 contraction nei midendword ness 56-234 begword noness = nonessential word nonetheless 1345-5-135-2346-46-234 always nonex = begword nong = nongraphical word noone 1345-135-5-135 sufword nose = nosedive word not 1345 word noways = word nowhere 1345-135-5-156 # the letter o word O 135 always O 135 #midword oed = Schroeder #always oen = Phoenix midendword oence 135-26-14-15 electroencephalogram largesign of 12356 midendword ofar 135-124-345 insofar always ofold = twofold midword ofor 135-123456 always onesi = midendword oness 135-56-234 midendword onesse 135-56-234-15 midendword oneer 135-1345-15-12456 midendword oned 135-1345-1246 always one 5-135 midendword onel = salmonella colonel always onem = phoneme midendword onement 5-135-56-2345 atonement always onent 135-1345-26-2345 midendword oneous 135-1345-15-1256-234 erroneous always oner 135-1345-12456 midendword onese = Cantonese, word oneself 5-135-124 word onef = midendword oness 135-56-234 Deaconess midendword onet = phonetics bayonet endword onez = Ordonez midendword ong 56-1245 always oon = sooner always osome = word ou = always ou 1256 midendword ound 46-145 midendword ount 46-2345 always ourselves 1256-1235-1236-234 word ourvs = word out 1256 always ought 5-1256 always ow 246 # the letter p always paid 1234-145 contraction pd always part 5-1234 begword parta 1234-345-2345-1 partake begword parto 1234-345-2345-135 word people 1234 always perceive 1234-12456-14-1236 word percv = word percvd = word percvr = word percvs = word percvst = word percvth = always perceiving 1234-12456-14-1236-1245 word percvg = always perhaps 1234-12456-125 word perh = always pher 1234-125-12456 cyphered begword potho = pothole pothook begword pre = always preach 1234-1235-15-1-16 sufword predator 1234-1235-1246-1-2345-135-1235 always prof = always profes 1234-1235-12356-15-234 unprofessional sufword profile 1234-1235-12356-24-123-15 begword proff 1234-1235-12356-124 proffer always profit 1234-1235-12356-24-2345 # the letter q always quick 12345-13 contraction qk word quite 12345 always question 5-12345 # the letter r sufword rafter 1235-1-124-2345-12456 word rather 1235 sufword raw = rawhide endnum rd 1235-145 begword reab = reabsorbed always reac = always reach 1235-15-1-16 begword readj = readjust begword readm = readmit begword reaff 1235-15-1-235 always reagent 1235-15-1-1245-26-2345 begword reagg 1235-15-1-1245-1245 reaggregated begword realig = realign begword rean = reanalyze, reanimate begword reapp = reappear begword reass 1235-15-1-234-234 begword reatt = reattach begword reau = reauthorization begword reaw = reawaken #begword rede = #begword redi = word redo = #word redone 1235-15-145-5-135 #begword redou 1235-15-145-1256 redouble redoubt #always redu = always receive 1235-14-1236 contraction rcv contraction rcvd contraction rcvr contraction rcvs word rcvst = word rcvth = always receiving 1235-14-1236-1245 contraction rcvg #begword redis = redistribute #begword redr = redress begword reduc 1235-1246-136-14 reduce begword redun 1235-1246-136-1345 redundant always rejoice 1235-245-14 contraction rjc contraction rjcd contraction rjcr contraction rjcs word rjcst = word rjcth = always rejoicing 1235-245-14-1245 contraction rjcg sufword renaming 1235-26-1-134-346 renamings #begword rene = sufword renegade 1235-26-15-1245-1-145-15 #begword renom = renominate #begword renou 1235-15-1345-1256 renounce #sufword renown 1235-15-1345-246-1345 renowned #begword renu = renunciation sufword reread 1235-15-1235-2-145 sufword rerun = reruns #always rever 1235-15-1236-12456 always reveren 1235-5-15-26 irreverent always reverence 1235-5-15-56-15 irreverence sufword reverie 1235-5-15-24-15 always right 5-1235 # the letter s endnum s = 40s (no letter sign) always s 234 always S 234 word said 234-145 contraction sd sufword saw = sawhorse sufword screw = screwhole #always sedu = always sent 234-26-2345 sentimental always sever 234-15-1236-12456 perseverance always several 234-5-15-1-123 severally word shall 146 word sh = always sh 146 always shaus = In German names always should 146-145 word shd = always shoulder 146-1256-123-145-12456 word singapore 234-346-1-1234-135-1235-15 midendword sion 46-1345 #midword stak 234-2345-1-13 midendword stion 234-56-1345 word so 234 always some 5-234 midendword somed 234-135-134-1246 ransomed always somer 234-135-134-12456 somersault always spirit 456-234 midendword ssword 234-234-45-2456 crossword endnum st 34 word st = always st 34 always sth 234-1456 always sthe 234-2346 midendword sthead 34-125-15-1-145 masthead always sthood 34-125-135-135-145 priesthood word still 34 always stime 234-5-2345 midendword stown 234-2345-246-1345 Pickstown #begword stringen 34-1235-35-1245-26 stringent stringency begword styro 34-13456-1235-135 styrofoam always shead 234-125-15-1-145 always sheart 124-125-15-345-2345 always shouse 234-125-1256-234-15 always ssh = always shood = word such 234-16 word sch = always sword = # the letter t endnum th 1456 word th = always th 1456 always thand 2345-125-12346 shorthand word that 2345 word this 1456 word thyself 1456-13456-124 word thyf = always tnam = word today 2345-145 contraction td word tomorrow 2345-134 contraction tm word tonight 2345-1345 contraction tn always thead 2345-125-15-1-145 always theast 1456-15-1-34 always theart 2345-125-15-345-2345 always thouse 2345-125-1256-234-15 largesign the 2346 word themselves 2346-134-1236-234 word themvs 1456-15-134-1236-234 always their 456-2346 always thence 1456-56-15 always there 5-2346 midendword thereal 2346-1235-15-1-123 ethereal word thereupon 5-2346-45-136 always thered 2346-1235-1246 always therer 2346-1235-12456 always theres 2346-1235-15-234 theresa therese always thood = midendword tion 56-1345 always time 5-2345 midendword timed 1245-24-134-1246 midendword timer 2345-24-134-12456 midendword timet = altimeter word these 45-2346 always through 5-1456 always together 2345-1245-1235 contraction tgr word those 45-1456 begword trans = transtype # the letter u begword un = unameliorated begword unble = unblemished #begword undis = undisturbed begword uneas = unease begword uneat = uneaten sufword unful = unfulfilled begword unmen 136-1345-134-26 unmentioned word upon 45-136 Dupont word us 136 always under 5-136 word unsaid 136-1345-234-145 # the letter v begword vaing 1236-1-35-1245 vainglory word very 1236 begword vice = viceroy # the letter w lowword was 356 word wh = always wh 156 midendword whart 2456-125-345-2345 Newhart word which 156 midendword whouse 2456-125-1256-234-15 Newhouse word will 2456 lowword were 2356 always where 5-156 word whereupon 5-156-45-136 word wherever 156-12456-5-15 largesign with 23456 always word 45-2456 word whose 45-156 always work 5-2456 always would 2456-145 contraction wd always world 456-2456 # the letter x # the letter y word you 13456 always young 5-13456 word your 13456-1235 contraction yr word yours 13456-1235-234 contraction yrs word yourself 13456-1235-124 contraction yrf word yourselves 13456-1235-1236-234 contraction yrvs # the letter z # Système International Prefixes begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 # begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 begword anti = # begword endo 26-145-135 endow begword epi = begword extra = begword hyper 125-13456-1234-12456 begword hypo = begword infra 35-124-1235-1 begword inter 35-2345-12456 begword intra 35-2345-1235-1 begword iso = begword macro = begword meta = begword micro = begword mono = begword multi = begword patho 1234-1-1456-135 begword peri 1234-12456-24 begword poly = begword post 1234-135-34 begword pre = begword pseudo = begword retro = # begword semi = seminar begword sub = begword super 234-136-1234-12456 begword tetra = begword trans = begword ultra = # begword uni = # other prefixes begword electro = begword neuro = begword psycho 1234-234-13456-16-135 # special character sequences nocont :// URLs nocont www. nocont .com nocont .edu nocont .gov nocont .mil nocont .net nocont .org include countries.cti nocont .doc nocont .htm nocont .html nocont .tex nocont .txt nocont .gif nocont .jpg nocont .png nocont .wav nocont .tar nocont .zip liblouis-2.5.3/tables/hu-hu-comp8.ctb0000664000175000017500000001010312161041546014277 00000000000000# liblouis: Hungarian Computer Braille table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2011 by the BRLTTY Team # # Copyright (C) 2012 IT Foundation for the Visually Impaired - Hungary. Homepage: www.infoalap.hu # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by Attila Hammer hammer.attila@infoalap.hu" # # If you found bugs with hungarian computer braille table, report it with following address: # Attila Hammer #If you have a Launchpad account, report table related requests with following bug tracker address: https://bugs.launchpad.net/belin include boxes.ctb include digits6DotsPlusDot6.uti include latinLetterDef8Dots.uti include spaces.ctb #Uppercase and lowercase accented characters uppercase \x00c1 478 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c4 4578 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c9 1678 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00cd 3478 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00d3 24678 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d6 1234578 LATIN CAPITAL LETTER O WITH DIAERESIS uppercase \x00da 34678 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00dc 1235678 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x0150 1245678 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE uppercase \x0170 2345678 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE lowercase \x00e1 48 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e4 458 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e9 168 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ed 348 LATIN SMALL LETTER I WITH ACUTE lowercase \x00f3 2468 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f6 123458 LATIN SMALL LETTER O WITH DIAERESIS lowercase \x00fa 3468 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fc 123568 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x0151 124568 LATIN SMALL LETTER O WITH DOUBLE ACUTE lowercase \x0171 234568 LATIN SMALL LETTER U WITH DOUBLE ACUTE #Punctuation simbols punctuation ! 5 EXCLAMATION MARK punctuation " 4 QUOTATION MARK punctuation \x0023 3456 NUMBER SIGN punctuation $ 46 DOLLAR SIGN punctuation % 123456 PERCENT SIGN punctuation & 12346 AMPERSAND punctuation ' 6 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 235 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation − 36 Added u+2212 simbol punctuation . 3 FULL STOP punctuation / 256 SOLIDUS punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 56 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 45 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 3457 COMMERCIAL AT punctuation [ 123567 LEFT SQUARE BRACKET punctuation \\ 347 REVERSE SOLIDUS punctuation ] 234567 RIGHT SQUARE BRACKET punctuation ^ 23467 CIRCUMFLEX ACCENT punctuation _ 4567 LOW LINE punctuation ` 345 GRAVE ACCENT punctuation { 12356 LEFT CURLY BRACKET punctuation | 34 VERTICAL LINE punctuation } 23456 RIGHT CURLY BRACKET punctuation ~ 2346 TILDE letter \x007f 456 DELETE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x2580 1245 UPPER HALF BLOCK punctuation \x2582 78 LOWER ONE QUARTER BLOCK punctuation \x2584 3678 LOWER HALF BLOCK punctuation \x2586 235678 LOWER THREE QUARTERS BLOCK punctuation \x2588 12345678 FULL BLOCK punctuation § 357 punctuation – 36 punctuation … 3-3-3 sign € 457 sign • 6-35 space \s 0 SPACE include braille-patterns.cti undefined 26 liblouis-2.5.3/tables/telugu.cti0000664000175000017500000000734412161041546013556 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0c01 3 TELUGU SIGN CANDRABINDU letter \x0c02 56 TELUGU SIGN ANUSVARA letter \x0c03 6 TELUGU SIGN VISARGA letter \x0c05 1 TELUGU LETTER A letter \x0c06 345 TELUGU LETTER AA letter \x0c07 24 TELUGU LETTER I letter \x0c08 35 TELUGU LETTER II letter \x0c09 136 TELUGU LETTER U letter \x0c0a 1256 TELUGU LETTER UU letter \x0c0e 347 TELUGU LETTER E letter \x0c0f 15 TELUGU LETTER EE letter \x0c10 34 TELUGU LETTER AI letter \x0c12 2467 TELUGU LETTER O letter \x0c13 135 TELUGU LETTER OO letter \x0c14 246 TELUGU LETTER AU letter \x0c15 13 TELUGU LETTER KA letter \x0c16 46 TELUGU LETTER KHA letter \x0c17 1234 TELUGU LETTER GA letter \x0c18 126 TELUGU LETTER GHA letter \x0c19 346 TELUGU LETTER NGA letter \x0c1a 14 TELUGU LETTER CA letter \x0c1b 16 TELUGU LETTER CHA letter \x0c1c 245 TELUGU LETTER JA letter \x0c1d 356 TELUGU LETTER JHA letter \x0c1e 25 TELUGU LETTER NYA letter \x0c1f 23456 TELUGU LETTER TTA letter \x0c20 2456 TELUGU LETTER TTHA letter \x0c21 1246 TELUGU LETTER DDA letter \x0c22 123456 TELUGU LETTER DDHA letter \x0c23 3456 TELUGU LETTER NNA letter \x0c24 2345 TELUGU LETTER TA letter \x0c25 1456 TELUGU LETTER THA letter \x0c26 145 TELUGU LETTER DA letter \x0c27 2346 TELUGU LETTER DHA letter \x0c28 1345 TELUGU LETTER NA letter \x0c2a 1234 TELUGU LETTER PA letter \x0c2b 235 TELUGU LETTER PHA letter \x0c2c 12 TELUGU LETTER BA letter \x0c2d 45 TELUGU LETTER BHA letter \x0c2e 134 TELUGU LETTER MA letter \x0c2f 13456 TELUGU LETTER YA letter \x0c30 1235 TELUGU LETTER RA letter \x0c31 12357 TELUGU LETTER RRA letter \x0c32 123 TELUGU LETTER LA letter \x0c33 1237 TELUGU LETTER LLA letter \x0c35 1236 TELUGU LETTER VA letter \x0c36 146 TELUGU LETTER SHA letter \x0c37 12346 TELUGU LETTER SSA letter \x0c38 234 TELUGU LETTER SA letter \x0c39 125 TELUGU LETTER HA letter \x0c3e 345 TELUGU VOWEL SIGN AA letter \x0c3f 24 TELUGU VOWEL SIGN I letter \x0c40 35 TELUGU VOWEL SIGN II letter \x0c41 136 TELUGU VOWEL SIGN U letter \x0c42 1256 TELUGU VOWEL SIGN UU letter \x0c46 347 TELUGU VOWEL SIGN E letter \x0c47 15 TELUGU VOWEL SIGN EE letter \x0c48 34 TELUGU VOWEL SIGN AI letter \x0c4a 2467 TELUGU VOWEL SIGN O letter \x0c4b 135 TELUGU VOWEL SIGN OO letter \x0c4c 246 TELUGU VOWEL SIGN AU letter \x0c4d 4 TELUGU SIGN VIRAMA letter \x0c66 245 TELUGU DIGIT ZERO letter \x0c67 1 TELUGU DIGIT ONE letter \x0c68 12 TELUGU DIGIT TWO letter \x0c69 14 TELUGU DIGIT THREE letter \x0c6a 145 TELUGU DIGIT FOUR letter \x0c6b 15 TELUGU DIGIT FIVE letter \x0c6c 124 TELUGU DIGIT SIX letter \x0c6d 1245 TELUGU DIGIT SEVEN letter \x0c6e 125 TELUGU DIGIT EIGHT letter \x0c6f 24 TELUGU DIGIT NINE liblouis-2.5.3/tables/loweredDigits8Dots.uti0000664000175000017500000000017512161041546016015 00000000000000digit 0 3568 digit 1 28 digit 2 238 digit 3 258 digit 4 2568 digit 5 268 digit 6 2358 digit 7 23568 digit 8 2368 digit 9 358 liblouis-2.5.3/tables/ukchardefs.cti0000664000175000017500000000423712161041546014366 00000000000000# Attributes and dot patterns for the printable ASCII characters space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 2346 # 33 punctuation " 5 # 34 sign # 3456 # 35 sign $ 1246 # 36 sign % 146 # 37 sign & 12346 # 38 punctuation ' 3 # 39 apostrophe punctuation ( 12356 # 40 punctuation ) 23456 # 41 sign * 16 # 42 math + 346 # 43 punctuation , 6 # 44 punctuation - 36 # 45 punctuation . 46 # 46 math / 34 # 47 include loweredDigits6Dots.uti punctuation : 156 # 58 punctuation ; 56 # 59 math < 126 # 60 math = 123456 # 61 math > 345 # 62 punctuation ? 1456 # 63 sign @ 2346 # 64 include latinLetterDef6Dots.uti punctuation [ 2467 # 91 sign \\ 12567 # 92 punctuation ] 124567 # 93 sign ^ 457 # 94 circumflex accent sign _ 456 # 95 underscore sign ` 4 # 96 grave accent # a - z # 97 - 122 punctuation { 246 # 123 sign | 1256 # 124 punctuation } 12456 # 125 math ~ 45 # 126 space \X00A0 0 # 160 no-break space sign \x00A2 4-14 # 162 ¢ cents sign sign \x00A3 4-123 # 163 £ pounds sign sign \x00A5 4-13456 # 165 Â¥ yen sign sign § 4-234-3 # 167 section sign \x00A7 sign \x00A9 2356-6-14-2356 # 169 © copyright sign punctuation \x00Ad 36 # 173 soft hyphen sign \x00B0 356 # 176 ° degrees sign sign \x00B5 46-134 # 181 µ micro sign sign \x00B6 4-1234-345 # 182 ¶ pilcrow sign math \x00D7 56-236 # 215 × multiplication sign math \x00F7 56-256 # 247 ÷ division sign punctuation \x2010 36 # 8208 hyphen punctuation \x2013 6-36 # 8211 en dash punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis sign \x20AC 4-15 # 8364 Euro sign liblouis-2.5.3/tables/en-us-mathtext.ctb0000664000175000017500000004663612161041546015134 00000000000000# liblouis: U.S. English Grade 1 table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # include chardefs.cti All character definition opcodes include nemethdefs.cti # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign letsign 56 capsign 6 begcaps 6-6 endcaps 6-3 begital 46 endital 46-46 begbold 456 endbold 456-456 begcomp 456-346 endcomp 456-156 # Letters are defined in en-chardefs # punctuation prepunc " 236 endnum " 456-356 postpunc " 356 prepunc ' 6-236 endnum ' 456-356-3 postpunc ' 356-3 word 'em = word 'tis = word 'twas = begnum # 4 print number sign before number endnum , 456-2 postpunc , 2 decpoint . 46 midnum - 36 hyphen - 36 endnum . 456-256 postpunc . 256 always . 256 endnum ; 456-23 postpunc ; 23 endnum : 456-25 postpunc : 25 endnum ! 12346 postpunc ! 235 midnum / 34 always / 456-34 always < 0-5-13-0 always = 0-46-13-0 always > 0-46-2-0 endnum ? 456-236 postpunc ? 236 endnum % 4-356 midnum ^ 45 always ^ 456-126 always ~ 4-156 always & 456-12346 always [ 456-12356 always ] 456-23456 always { 46-12356 always } 46-23456 prepunc ` 6-236 always @ 4-1 always \\ 456-16 always | 456-1256 always \s-\s 36-36 always ... 3-3-3 always .\s.\s. 3-3-3 . . . begnum $ 256 always $ 256-3456 # special character sequences compbrl :// URLs compbrl www. compbrl .com compbrl .edu compbrl .gov compbrl .mil compbrl .net compbrl .org # include countries.cti compbrl .doc compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip # the letter a largesign a 1 largesign A 1 word about 1-12 word thereabouts 5-2346-1-12-234 word runabout 1235-136-1345-1-12 contraction ab sufword above 1-12-1236 contraction abv word according 1-14 contraction ac word accordingly 1-14-123-13456 contraction acly word across 1-14-1235 contraction acr always aed = always aer = Rosenlaer begword aforem 1-123456-15-134 aforementioned word aforesaid 1-123456-15-234-145 sufword after 1-124 contraction af sufword afternoon 1-124-1345 afternoons contraction afn sufword afterward 1-124-2456 contraction afw word again 1-1245 contraction ag word against 1-1245-34 endword gery = orangery midendword ally 6-13456 word almost 1-123-134 contraction alm word already 1-123-1235 contraction alr word also 1-123 contraction al word although 1-123-1456 word altogether 1-123-2345 contraction alt word always 1-123-2456 contraction alw midendword ance 46-15 largesign and 12346 always (and = always and) = always andar 12346-345 staodard always anda 12346-1 panda midword angh = Shanghai begword aqued = aqueduct always ar 345 word aright 1-5-1235 word as 1356 contraction as midendword ation 6-1345 midendword aunder 1-136-1345-145-12456 saunders begword auto = autofocus # the letter b midword bb 23 midendword bble 12-3456 lowword be 23 begword be 23 begword bea 12-2 always bear 12-15-345 begword beatif 23-1-2345-24-124 begword beatit 23-1-2345-24-2345 begword beatr 23-1-2345-1235 Beatrice always beck 12-15-14-13 always bed 12-1246 begword beda 23-145-1 bedazzle begword bede 23-145-15 bedevil word bede 12-1246-15 bede (a name) begword bedi 23-145-24 bedizzened word bee 12-15-15 begword bee 12-15-15 always been 12-15-26 always beer 12-15-12456 word beg = begword begg 12-15-2356 word begs = begword bei = beijing sufword being 23-346 sufword belch 12-15-123-16 begword beld = Beldon begword belf = belfry, belfast begword belg = Belgium begword belk = Belkin always bell = begword belm = Belmont always belt = begword belw = belwether always ben 12-26 begword beni 12-26-24 begword benif 23-1345-24-124 benificient sufword benign 23-1345-24-1245-1345 benignity begword benov 23-1345-135-1236 benovolent begword benu 23-1345-136 benumbed begword ber 12-12456 begword bera 23-1235-1 berating begword bere 23-1235-15 bereft begword berea 23-1235-2 bereaved begword beri 23-1235-24 beribboned always best 12-15-34 sufword bestow 23-34-246 always beth 12-15-1456 Bethany always bethe 12-15-2346 Bethel (Hans) Bethe always bets = always bett = sufword bev = bevies begword bever 12-5-15 Beverly beverage always bio = midendword bious 12-24-1256-234 dubious joinword by 356 word because 23-14 word bec = always before 23-124 word behind 23-125 word behring 12-15-125-1235-346 word bel = begword beln = Belnick word below 23-123 word beneath 23-1345 sufword beside 23-234 sufword bess = Bessie word between 23-2345 word bet = word beyond 23-13456 word bey = midendword ble 3456 midendword bleau 12-123-2-136 tableau always bless 12-46-234 joblessness word blind 12-123 contraction bl begword blindf 12-123-124 blindfold word blindly 12-123-123-13456 word blindness 12-123-56-234 sufword blinds 12-123-234 blindsided always braille 12-1235-123 contraction brl word but 12 # the letter c midword cch 14-16 always chloro 16-123-135-1235-135 begword cofac = cofactor always cofound 14-135-124-46-145 begword com 36 sufword common 36-134-135-1345 commonest begword con 25 sufword conceive 25-14-1236 sufword conceiving 25-14-1236-1245 always cone 14-5-135 word cons 14-135-1345-234 sufword conundrum = sufword could 14-145 contraction cd sufword coworker 14-135-5-2456-12456 midword cc 25 word can 14 always cannot 456-14 word ch = always ch 16 always character 5-16 always chemo 16-15-134-135 word child 16 always children 16-1345 sufword clever 14-123-5-15 cleverest # the letter d always day 5-145 begword deact = deactivation begword deall = deallocate begword decarb 145-15-14-345-12 always deceive 145-14-1236 contraction dcv contraction dcvd contraction dcvr contraction dcvs always deceiving 145-14-1236-1245 contraction dcvg always declare 145-14-123 contraction dcl contraction dcld contraction dclr contraction dcls word declaring 145-14-123-1245 contraction dclg begword deref = dereferencing begword dereg = deregulation midword dd 256 midendword dday 145-5-145 midday begword dedic 145-1246-24-14 dedicated always dedu = nondeductible begword deno = denote always denom = begword denou 145-15-1345-1256 denounce begword denu = denunciation begword dera = derail begword deri 145-15-1235-24 begword dero = derogatory begword dinu 145-24-1345-136 begword dis 256 word disc = word discs = always dish 145-24-146 begword disha 256-125-1 dishabile begword dishear 256-125-15-345 disheartened begword disho 256-125-135 dishonor begword dishone 256-125-5-135 dishonest sufword disk = sufword dispirit 145-24-456-234 dispirited begword disul = disulfide word do 145 # the letter e midword ea 2 midword eabil = interchangeability always eable 15-1-3456 endword eably = noticeably midendword eage = mileage midendword eager 2-1245-12456 meager always eally 15-6-13456 midendword eance 15-46-15 vengeance midendword eand 15-12346 meander always eation 15-6-1345 always ear 15-345 always ed 1246 always edic = edict Benedict sufword edition 15-145-24-56-1345 editions midword edo 15-145-135 always edraw = word either 15-24 contraction ei word en = always en 26 always ename 15-5-1345 sufword enamel 26-1-134-15-123 enameled midendword ence 56-15 always eneck = bottleneck midendword eness 15-56-234 closeness begword enor = enormous begword enou 15-1345-1256 lowword enough 26 word enough 26-1256-126 begword enu 15-1345-136 always er 12456 begword era = word eras 12456-1-234 begword erec = erect begword ero 15-1235-135 midendword eroom = storeroom begword eru = erupt always ever 5-15 midendword evere 15-1236-12456-15 Everest always evered 15-1236-12456-1246 word every 15 # the letter f midword ff 235 always father 5-124 always fein 124-15-35 Feingold always first 124-34 always fever 124-15-1236-12456 always ffor 124-123456 largesign for 123456 always (for = always for) = always fora 123456-1 foramen always fore 123456-15 begword forens 123456-26-234 forensic always forever 123456-5-15 forevermore always foot = word from 124 word friend 124-1235 contraction fr sufword friendl 124-1235-123 word friends 124-1235-234 midendword ful 56-123 always funder 124-136-1345-145-12456 # the letter g begword geo = geoengineering sufword geoff 1245-15-12356-124 Geoffrey midword gg 2356 always gh 126 endword gham = Langham always ghead 1245-125-2-145 always gheart 1245-125-15-345-2345 midendword ghill = dunghill midendword ghorn = bighorn always ghouse 1245-125-1256-234-15 always ghz = (gigahertz) begword givea = giveaway sufword gnome = gnomedb word go 1245 sufword good 1245-145 contraction gd begword gos = goshawk word goshen 1245-135-146-26 sufword great 1245-1235-2345 contraction grt # the letter h always had 456-125 begword hadd 125-1-256 haddock sufword hade = hadean word have 125 always here 5-125 always hered 125-12456-1246 always heren 125-12456-26 midendword herence 125-12456-56-15 adherence always herer 125-12456-12456 always heres 125-12456-15-234 always heret 125-12456-15-2345 word heretofore 5-125-2345-135-123456-15 word herself 125-12456-124 word him 125-134 word hm 125-3-134 sufword hmm = word himself 125-134-124 contraction hmf lowword his 236 sufword horse = horseradish always hydro = # the letter i word I 24 midendword iever 24-15-1236-12456 word immediate 24-134-134 contraction imm word immediately 24-134-134-123-13456 contraction immly begword immuno = immunofluorescence lowword in 35 word in = always in 35 begword incon 35-14-135-1345 incongruous midendword iness 24-56-234 midendword ing 346 midword inga 35-1245-1 nightingale always ingar 35-1245-345 Weingarten midword ingen 35-1245-26 palingenesis (new birth) midword ingi 35-1245-24 meningitis midendword inging 346-346 bringing joinword into 35-235 always isomer 24-234-135-134-12456 word it 1346 word its 1346-234 contraction xs word itself 1346-124 contraction xf midendword ity 56-13456 # the letter j word just 245 # the letter k always know 5-13 word knowledge 13 # the letter l midendword less 46-234 sufword letter 123-1235 contraction lr sufword newsletter 1345-15-2456-234-123-1235 word unlettered 136-1345-123-1235-1246 word like 123 sufword little 123-123 contraction ll sufword lone 123-5-135 lonely always lord 5-123 # the letter m always many 456-134 begword mc = always medic 134-1246-24-14 medicare midendword ment 56-2345 midword menth 134-26-1456 Blumenthal always mideast 134-24-145-15-1-34 word milling 134-24-123-123-346 begword mishand 134-24-234-125-12346 mishandled always mishap = sufword mishear 134-24-234-125-15-345 misheard begword missh 134-24-234-146 misshapen word mistook = begword mistran = mistranslation sufword mistreat 134-24-234-2345-1235-2-2345 begword mistru = mistrust begword misty = mistyped word monetary 134-5-135-2345-345-13456 word more 134 always mother 5-134 always much 134-16 word must 134-34 word mustn 134-34-1345 begword myo = myofibroblasts word myself 134-13456-124 contraction myf # the letter n always name 5-1345 midendword nament 1345-1-56-2345 tournament always namese = endnum nd 1345-145 word necessary 1345-15-14 contraction nec word neither 1345-15-24 contraction nei midendword ness 56-234 begword noness = nonessential word nonetheless 1345-5-135-2346-46-234 always nonex = begword nong = nongraphical word noone 1345-135-5-135 sufword nose = nosedive word not 1345 word noways = word nowhere 1345-135-5-156 # the letter o word O 135 midword oed = Schroeder always oen = Phoenix midendword oence 135-26-14-15 electroencephalogram largesign of 12356 always (of = always of) = midendword ofar 135-124-345 insofar always ofold = twofold midword ofor 135-123456 always onesi = midendword oness 135-56-234 midendword oneer 135-1345-15-12456 midendword oned 135-1345-1246 always one 5-135 always oneless 5-135-46-234 midendword onel = salmonella colonel always onem = phoneme midendword onement 5-135-56-2345 atonement midendword onent 135-1345-26-2345 midendword oneous 135-1345-15-1256-234 erroneous always oner 135-1345-12456 sufword loner 123-135-1345-12456 midendword onese = Cantonese, word oneself 5-135-124 midendword oness 135-56-234 Deaconess midendword onet = phonetics bayonet endword onez = Ordonez midendword ong 56-1245 always oon = sooner always osome = word ou = always ou 1256 midendword ound 46-145 midendword ount 46-2345 always ourselves 1256-1235-1236-234 word out 1256 always ought 5-1256 always ow 246 word o'clock 135-3-14 # the letter p always paid 1234-145 contraction pd always part 5-1234 begword parta 1234-345-2345-1 partake always parthe 1234-345-2346 Parthenon always parth 5-1234-1456 begword parto 1234-345-2345-135 word people 1234 always perceive 1234-12456-14-1236 always perceiving 1234-12456-14-1236-1245 always perhaps 1234-12456-125 always pher 1234-125-12456 cyphered begword potho = pothole pothook begword pre = always preach 1234-1235-2-16 sufword predator 1234-1235-1246-1-2345-135-1235 always prof = begword proff 1234-1235-12356-124 proffer always profit 1234-1235-12356-24-2345 # the letter q always quick 12345-13 contraction qk word quite 12345 always question 5-12345 # the letter r sufword rafter 1235-1-124-2345-12456 word rather 1235 sufword raw = rawhide endnum rd 1235-145 begword reab = reabsorbed always reac = always reach 1235-2-16 begword readj = readjust begword readm = readmit begword reaff 1235-15-1-235 sufword reagent 1235-15-1-1245-26-2345 begword reagg 1235-15-1-2356 reaggregated begword realig = realign begword rean = reanalyze, reanimate begword reapp = reappear begword reass 1235-15-1-234-234 begword reatt = reattach begword reau = reauthorization begword reaw = reawaken begword rede = begword redi = word redo = word redone 1235-15-145-5-135 begword redou 1235-15-145-1256 redouble redoubt always redu = always receive 1235-14-1236 contraction rcv contraction rcvd contraction rcvr contraction rcvs always receiving 1235-14-1236-1245 contraction rcvg begword redis = redistribute begword redr = redress always rejoice 1235-245-14 contraction rjc contraction rjcd contraction rjcr contraction rjcs always rejoicing 1235-245-14-1245 contraction rjcg sufword renaming 1235-15-1345-1-134-346 renamings begword rene = begword renom = renominate begword renou 1235-15-1345-1256 renounce sufword renown 1235-15-1345-246-1345 renowned begword renu = renunciation sufword reread 1235-15-1235-2-145 sufword rerun = reruns always rever 1235-15-1236-12456 always reveren 1235-5-15-26 irreverent always reverence 1235-5-15-56-15 irreverence sufword reverie 1235-5-15-24-15 always right 5-1235 # the letter s endnum s = 40s (no letter sign) word said 234-145 contraction sd sufword saw = sawhorse sufword screw = screwhole always sedu = always sent 234-26-2345 sentimental always sever 234-15-1236-12456 perseverance always several 234-5-15-1-123 severally word shall 146 word sh = always sh 146 always shaus = In German names sufword should 146-145 always shoulder 146-1256-123-145-12456 word singapore 234-346-1-1234-135-1235-15 midendword sion 46-1345 midword stak 234-2345-1-13 midendword stion 234-56-1345 word so 234 always some 5-234 midendword somed 234-135-134-1246 ransomed always somer 234-135-134-12456 somersault always spirit 456-234 midendword ssword 234-234-45-2456 crossword endnum st 34 word st = always st 34 always sth 234-1456 always sthe 234-2346 midendword sthead 34-125-2-145 masthead always sthood 34-125-135-135-145 priesthood word still 34 always stime 234-5-2345 midendword stown 234-2345-246-1345 Pickstown begword styro 34-13456-1235-135 styrofoam always shead 234-125-2-145 always sheart 124-125-15-345-2345 always shouse 234-125-1256-234-15 always ssh = always shood = word such 234-16 word sch = always sword = # the letter t endnum th 1456 word th = always th 1456 always thand 2345-125-12346 shorthand word that 2345 midendword thill = anthill word this 1456 word thyself 1456-13456-124 always tnam = joinword to 235 word today 2345-145 contraction td sufword tomorrow 2345-134 contraction tm word tonight 2345-1345 contraction tn always thead 2345-125-2-145 always theast 1456-15-1-34 always theart 2345-125-15-345-2345 always thouse 2345-125-1256-234-15 largesign the 2346 always (the = always the) = always thea 2346-1 theater word themselves 2346-134-1236-234 always their 456-2346 always thence 1456-56-15 always there 5-2346 midendword thereal 2346-1235-2-123 ethereal word thereupon 5-2346-45-136 always thered 2346-1235-1246 always therer 2346-1235-12456 always theres 2346-1235-15-234 theresa therese always thood = midendword tion 56-1345 always time 5-2345 midendword timed 1245-24-134-1246 midendword timer 2345-24-134-12456 midendword timet = altimeter word these 45-2346 always through 5-1456 word together 2345-1245-1235 contraction tgr word those 45-1456 begword trans = transtype # the letter u begword un = unameliorated begword unble = unblemished begword undis = undisturbed begword uneas = unease begword uneat = uneaten sufword unful = unfulfilled begword unmen 136-1345-134-26 unmentioned word upon 45-136 Dupont word us 136 always under 5-136 word unsaid 136-1345-234-145 # the letter v begword vaing 1236-1-35-1245 vainglory word very 1236 begword vice = viceroy # the letter w lowword was 356 word wh = always wh 156 midendword whart 2456-125-345-2345 Newhart word which 156 midendword whouse 2456-125-1256-234-15 Newhouse word will 2456 lowword were 2356 always where 5-156 word whereupon 5-156-45-136 word wherever 156-12456-5-15 largesign with 23456 always (with = always with) = always word 45-2456 word whose 45-156 always work 5-2456 sufword would 2456-145 contraction wd always world 456-2456 # the letter x # the letter y word you 13456 always young 5-13456 word your 13456-1235 contraction yr word yours 13456-1235-234 contraction yrs word yourself 13456-1235-124 contraction yrf word yourselves 13456-1235-1236-234 contraction yrvs # the letter z # Système International Prefixes begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 # begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 begword anti = # begword endo 26-145-135 endow begword epi = begword extra = begword hyper 125-13456-1234-12456 begword hypo = begword infra 35-124-1235-1 begword inter 35-2345-12456 begword intra 35-2345-1235-1 begword iso = begword macro = begword meta = begword micro = begword mono = begword multi = begword patho 1234-1-1456-135 begword peri 1234-12456-24 begword poly = begword post 1234-135-34 begword pre = begword pseudo = begword retro = # begword semi = seminar begword sub = begword super 234-136-1234-12456 begword tetra = begword trans = begword ultra = # begword uni = # other prefixes begword electro = begword neuro = begword psycho 1234-234-13456-16-135 endword 'd 3-145 word 'em = endword 'll 3-123-123 endword 'm 3-134 endword 're 3-1235-15 endword 's 3-234 endword 't 3-2345 endword 've 3-1236-15 always -com = endword -to = pointed-to resource include corrections.cti liblouis-2.5.3/tables/fr-bfu-comp8.utb0000664000175000017500000002062212161041546014463 00000000000000# liblouis: Unified French 8 dots Braille table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Définitions pour code braille français international unifié # Par Nicolas Pitre # Référence: http://www.inlb.qc.ca/apropos/c2003unificationdubraille.aspx # mise à jour importante 2012 par Frédéric SCHWEBEL et André-Abush CLAUSE # Frédéric SCHWEBEL : ajout du support des signes UTF8 braille (6 et 8 points). # André-Abush : # - ajouts du support de multiples signes tels que ´„¤¸ˆ˜œ et bien d'autres encore # - Correction pour la retranscription de certains symbole. Par exemple, l'espace insécable est maintenant 100% fonctionnelle. # - Désactivation de certaines dirrectives pouvant causer problème. # Uncontracted Unified French Table # ---------------------------------- space \s 0 # blank 32 space \X00A0 7 # no-break space space \t 8-4568-7 # tab 9 space \x001B 1b # escape space \x000A 0 # lf space \x000D 0 # cr # override zero digit 0 3456 include digits6DotsPlusDot6.uti include latinLetterDef8Dots.uti uplow Çç 123467,12346 c cédille uplow Éé 1234567,123456 e accent aigu uplow Àà 123567,12356 a accent grave uplow Èè 23467,2346 e accent grave uplow Ùù 234567,23456 u accent grave uplow Ââ 167,168 a accent circonflexe uplow Êê 1267,1268 e accent circonflexe uplow Îî 1467,1468 i accent circonflexe uplow Ôô 14567,14568 o accent circonflexe uplow Ûû 1567,1568 u accent circonflexe uplow Ää 34567,34578 a tréma uplow Ëë 12467,12468 e tréma uplow Ãï 124567,124568 i tréma uplow Öö 24678,358 o tréma uplow Üü 12567,12568 u tréma uplow \x009F\x00FF 145678,2568 y tréma uplow \x008C\x009C 2467,2468 oe liés uplow \x00C1\x00E1 1235678,123568 a accent aigu uplow \x00CD\x00ED 347,3478 i accent aigu uplow \x00D3\x00F3 3467,346 o accent aigu uplow \x00DA\x00FA 2345678,234568 u accent aigu uplow \x00DD\x00FD 1345678,134568 y accent aigu uplow \x00CC\x00EC 2478,248 i accent grave uplow \x00D2\x00F2 13578,1358 o accent grave uplow \x00C3\x00E3 178,18 a tilde uplow \x00D1\x00F1 134578,1245678 n tilde uplow \x00D5\x00F5 1378,4678 o tilde punctuation , 2 virgule punctuation ; 23 point-virgule punctuation : 25 deux-points punctuation - 36 trait d'union punctuation . 256 point punctuation ? 26 point d'interrogation punctuation ! 235 point d'exclamation punctuation " 2356 guillemt punctuation ( 236 parenthèse ouvrante punctuation ) 356 parenthèse fermante punctuation ' 3 apostrophe punctuation \X0091 68 # [left signle quotation mark] (private use one) punctuation \X0092 37 # [right single quotation mark] (private use two) punctuation \X0093 378 # [left double quotation mark] (set transmit state) punctuation \X0094 678 # [right double quotation mark] (cancel character) punctuation \X2018 68 punctuation \X2019 37 sign \X2022 124578 bullet sign \X2026 368 8230 MS Word smart ellipsis punctuation \X00AB 23568 # left-pointing double angle quotation mark punctuation \X00BB 23567 # right-pointing double angle quotation mark sign * 35 astérisque sign \\ 348 barre oblique invers‚e sign @ 345 arobas sign % 3468 pourcent sign _ 578 souligné sign # 34568 dièse sign ^ 4 accent circonflexe sign \X007E 38 #126 ~ tilde sign \X007C 4568 # vertical bar sign \X007F 1238 # delete sign \X0082 67 # [single low-9 quotation mark (break permitted here) sign \X0083 1248 # [latin small letter f with hook (no break here) sign \X0084 56 # [double low-9 quotation mark () sign \X0085 368 # [horizontal ellipsis (next line) sign \X0086 3568 # [dagger (start of selected area) sign \X0087 3567 # [double dagger (end of selected area) sign \X0088 48 # [modifier letter circumflex accent (character tabulation set) sign \X0089 34678 # [per mille sign (character tabulation with justification) sign \X008B 57 # [single left-pointing angle quotation mark] (partial line down) sign \X0095 124578 # [bullet] (message waiting) sign \X0096 478 # [en dash] (start of guarded area) sign \X0097 4578 # [em dash] (end of guarded area) sign \X0098 467 # [small tilde] (start of string) sign \X0099 23458 # [trade mark sign] () sign \x2122 23458 TRADE MARK SIGN sign \X009B 58 # [single right-pointing angle quotation mark] (control sequence introducer) sign \X00A1 2358 # inverted exclamation mark sign \X00A2 1478 # cent sign sign \X00A3 237 # pound sign sign \X201e 56 # sign ¤ 45 # sign ¸ 456 # sign \x25aa 124578-0 # sign ´ 5 # sign \x20ac 1578 EURO SIGN sign \X00A5 25678 # yen sign sign \X00A6 458 # broken bar sign \X00A7 12348 # section sign sign \X00A8 46 # diaeresis sign \X00A9 148 # copyright sign sign \X00AA 1678 # feminine ordinal indicator sign \X00AC 2567 # not sign sign \X00AD 78 # soft hyphen sign \X00AE 12358 # registered sign sign \X00AF 1348 # macron sign \X00B0 267 # degree sign sign \X00B1 3678 # plus-minus sign sign \X00B2 457 # superscript two sign \X00B3 4567 # superscript three sign \X00B5 257 # micro sign sign \X00B6 45678 # pilcrow sign sign \X00B7 8 # middle dot sign \X00B9 47 # superscript one sign \X00BA 2678 # masculine ordinal indicator sign \X00BC 1368 # 1 quart sign \X00BD 468 # 1 demi sign \X00BE 1478 # 3 quarters sign \X00BF 268 #*inverted question mark sign \X00C5 27 #*latin capital letter a with ring above sign \X00C6 3457 #*latin capital letter ae sign \X00D0 1278 # latin capital letter eth sign \X00D7 3578 # multiplication sign sign \X00D8 345678 # latin capital letter o with stroke sign \X00DE 24578 # latin capital letter thorn sign \X00DF 2348 # latin small letter sharp s sign \X00E5 28 #*latin small letter a with ring above sign \X00E6 3458 #*latin small letter ae sign \X00F0 128 # latin small letter eth sign \X00F7 2578 # division sign sign \X00F8 568 # latin small letter o with stroke sign \X00FE 2458 # latin small letter thorn math + 23578 plus math = 235678 égal math × 3578 multiplié par math < 238 inférieur à math > 567 supérieur à math \x2264 238-235678 math \x2265 567-235678 math / 34 barre oblique math \x0060 6 sign © 148 copyright sign ° 267 degré sign & 1234568 perluète (et commercial) sign ¢ 1478 cent sign £ 237 livre sign $ 357 dollar sign Â¥ 25678 yen punctuation \x2013 478 tiret cadratin punctuation \x2014 4578 tiret demi-cadratin punctuation « 23568 guillemet français ouvrant punctuation » 23567 guillemet français fermant punctuation \x201c 378 punctuation \x201d 678 guillemet anglais fermant punctuation [ 23678 crochet droit ouvrant punctuation ] 35678 crochet droit fermant punctuation { 2378 accolade de gauche punctuation } 5678 accolade de droite sign \x0153 2468 oe lié sign \x0152 24678 oe lié sign ¹ 47 exposant 1 sign ² 457 exposant 2 sign ³ 4567 exposant 3 sign \x0007 4568 barre verticale sign ¼ 1368 un quart sign ½ 137 un demi sign ¾ 134678 trois quarts sign \x02dc 467 sign \x02c6 48 sign \x2030 34678 pour-mille sign \x25e6 124578-126-0 sign \xf0e0 36-36-567 sign \xf0f3 238-235678-567 sign \xf0e8 235678-235678-567 sign \xf0e7 238-235678-235678 sign \xf04a 25-356 sign \xf04c 25-36-236 sign \xf0b7 124578 sign \xf0a7 12458 sign \xf0df 238-36-36 sign \x03a0 12348 sign \x0391 18 sign \x0392 128 sign \x2260 235-325678 sign \x221e 2478 sign \x2126 24568 sign \x25cf 35 midnum \s 0 espace entre les chiffres midnum , 2 midnum . 256 midnum - 36 midnum + 23578 plus midnum / 34 midnum : 25 midnum   7 # no-break space always   7 #always \s--\s 36-36 tiret #unicode braille include braille-patterns.cti liblouis-2.5.3/tables/hyph_sv_SE.dic0000664000175000017500000007503312161041546014300 00000000000000charset ISO8859-1 .a4b .ab5i .ab5ol .ab3r .ac3 .a4d .a3dr .ad3s .a5g4ra .a5gre .a5kl .a5le .al4pr .a3lu .am4br .amp3l .a5mu .and4rar .a2n5es .ang4er .an5go .an5s .ap1p .as2k .a3sket .as4t .a5sten .a3sti .a5ta .at3t .au3st .a4val .av3s4 .b4 .bak5s .ben5s .bild3s .bo2k .bort1 .cis4 .cy5klop .d4 .d^^e4r3 .ek1v .e3l4a .e2l5in .en5st .e4n^^e4 .e2r3i .e2s .e5skad .es3kal .es5kap .es4t .e5strad .e3tr .evan5 .ex3 .f4 .feb3r .fram3 .fres5 .f^^e5gel3 .f^^f6r1a .f^^f6r1en .g2 .gu4l^^e4 .gus3 .he2m .hu5sa .ib4 .ik4 .im3p .i2n1 .i4na .in3d .in4ger .ink2 .in3s2 .in3t .is5ka .i3so .k4 .kans4k .ko5li .kort5s .kring3 .krings2 .k^^f6p5s .l2 .lak5r .lek5tr .lu2st .m2 .mas2ke .ma5skeri .me4re .minis4 .mj^^f6lk5s .mon2s .m^^e5n3s .m^^e54st .m^^e4n5sko .m^^f6rk5r .n4 .ner1 .no4n .n^^f6d5r .oc1ku .ok3t .o3kv .o2ma .o2mo .om3s4 .o3mu .on4k .o3o .ord3s .o5sc .o1s4k .o3sl .o3stra .o3sv .o3tr .o1u .p4 .papp5s .pa3ste .pa5sti .pi5sti .pres2s .pub3lika .r2 .re4gr .re2ste .runs4 .rym2d .r^^f6ve5 .s4 .sa2k .seg3r .si5o .sj^^f61 .sk4 .skott3s .slut3s .st4 .sta2m .sten3s .string4 .sup3p .t4 .ta3bl .ta4k .tak5l .tes3ta .tig3r .til4l .ti3o .topp5s .tred2s .tre3s .tr^^e45k .u3k .ult5r .ung2e .up2 .u4ra .ur3s .u2t1 .u4ta .u5trer .ut5s .v2 .var4t .vatten3 .ved5s .v^^e42g .v^^e4g3s .x2 .y2a .y4e .^^e5ng3 .^^e5r4s5 .^^e53st .^^e5ter1 .^^e43ro .^^f63ro a2b ab4bu a5be abel4s abe2s ab1l ab3la ab3ort ab5ric ab3rio ab4sc ab4sk a5bu ac4kes ac4kis ack3sk ack3u4p a5dag a5dek a5del ad5ep ad3j ad3op a5dran a3dre 1adres ad3ril ad3ru ad2s a5ed af4fo 3aff^^e4 1af3ri af4tor a1ga aga4ra a1ge a2ge. ag1gr ag1l ag5ord ag3ro a4gur a4hj aib4 a3iv a1j a3ka a4kart a5ke a1ki ak3n a1ko ak5ram akri5s ak3rob ak4sta 1aktig ak3tri a1ku a5kvari ak3ve a5k^^e5r ak5^^e5t 4ak^^f6 a1la al5adm ali2br a2lin a5lin. a3line al3ins ali5stik a4lj alk3ak al2kv al4k^^e4 all3st al3l^^e5 alms4k a1lo al5ort als5pa al3tr al4tu al4t^^e4 a1lu alu5s alv3s a1ly a4maf am4i am4pr am1s am3^^e5t a3m^^f6 ana4bo an3alf an3ark an3c anci5 an5dak andel2s an4dun an4d^^e4n a4nef ang4es an3gi an1gr aniu4 ank3r ano2i a4nok a4nop an5sce ansis3t an4sj ans5ku ans3li ans3par an1st an4sto an4sty 1ansvar an4tj an4tre a1nu a5ny a3n^^f6 a1o a1pe a2pe. ape4n3 a1pi ap4lan apo3str 1appara apps4k ap3ric ap3rif a5pris ap2s ap3se aps5l aps3p apu5s a5py a5p^^e4 2ara a4rann a4rarv 1arb 4arbi 2arbo 4arbr ar3dr ard5st a4rend arg5si 2arh a1ri a4rigen ar3ka ark3lan ar5kr 4arl 4arn. ar4nal a1ro a2rob 4arp ar2sa ar5skal arsk5l ar2sv ar4tro arts5p ar4tur 4aru a4rur a5rus ar4v^^e4g a3ry a3r^^e4 2asa asbe4 a1sc as2h asis5t as3kis a2sko a4skr as3ku as5l as3pa as3pig as2sk as2s5op as2sp as2st ass5up as3ta a5stard as5ter as5tiker asti5o as3to as4tr ast5rak a5stral ast3rol as5t^^f6r a3su a4sul a4sund as2ut as3v a1sy a2s5^^e5 a2s^^f6 a1t ata5ra a5te ati5^^f6 a4tj a2tr a3tral 4atrar a4t3re at3ria a3tric at3rie a5trik a3tris a3t4ro a4tro. at4ska 1attac at2tak at4tj at4tos att3s a4tung 2au au5b au2t5a 3autom aut5s 2a1va a4vart 1avg 2a1vi av3r 4a3v^^e4 a5^^e5 1b2 3ba ba4di ba4do bad3s4 bak5l ba4ko ba4ku bank5l bas4ta ba5stu 4bb b4bak b4batt bbb4 bb3l bb4ler b4b3r bb4so 4b3d 3be be3d4r be5e be1k 4beld be5lu be3ly be3l^^e5 be5l^^f6 beng4 be3n^^e5 be1r^^f6 be1s be3sl bes5s be4sta be4ste be5su be3tr be3tv be3u 4bex 2b3f 2b5h 3bi bi3d4 4binv bis3ko bi5skv b3je b3k b5lar b5lat ble4mo b5len 5blera 3bles 5blid 3blikr 3bliks 4b3m 2b3n 3bo bo4gr bo2kl bo1mu 5bon bors5te bor4ti bort3r borts2 bort3sl bo1s bo4sc boy5 4b3p 2b5raf 4brar 2b5rati 3brik. b3rika 3brike 3briks b5rik^^f6 bru4st 3bry 3br^^f6 4b3s b5sce bs3ch b4slan b4sof b4sp bst4 b4stj 4b3t 3bu bund4s bus2st b3v 3by by5r 3b^^e5 b^^e5ng3 b^^e5t2s 3b^^e4 3b^^f6 b^^f6r2s c2 5cap c3c 1c4e cens3t 3centr ceu4s 4ch. 3chau 3chef 5choc 4cht ch^^e4s3 ch^^f6r4 1ci ci4lu cim2 cipp4 4ck c3ka c3ke c3ki ck5j ck1l ck5lis ck3n c3ko c4kordn ck3org c4kort ck3r ck4re ck3sla ckus2 ck3va ck3ve ck3v^^e4 ck5^^e4 ck3^^f6 cle2a co2a co4m 4cr cros2 4cs 1cy 1d 3da 5da. 4dadr dags3 2dak 5dako da3li 5dam da3m^^e5 4dand. 4d1ap 4darb 4dart da4tr dat5t 4dax 2db 4dc dcen3 2dd ddd4 ddi4s d3dj d4dos dd3ra dd3re dd3ri d3dr^^e4 dd2s dds3v 3d2e de1k4 4deko 4deld del2sa dels5ti de5lut d4en denti5^^f6 den2to de3pr 5der der1k de2ro de5rol der5sti de4ru de2s de3se de3sp des3ti d4et de3tr 4dex 2d1f df^^f63ra 2d1g d3gl 2d5h 3di dias4 di5el di2gr di3ka di5ku 4dinf din3g4o 4dinr 4dins 2dinsp 4dint di1o di4od di3sc di4sj dis3ko dis1kr dis1p dis5to dis3tra di4tre 2dj d3jor djup5p 3djur 2d3k2 4d5l 2d1m 2d1n 3do d2ol do5lo 4domr dom2sk 5don do4pak 4d5ord 4dori 4dort d5ost do3y 2d1p 2d2r2 d3rad 3d4rag d3rand d5rarb d5rassera d5ratu 3drej d3ren 5dres d3ret d4ric 3drif d3rig 4d5rik d3rin 3d4riv d5roc 3dropp d3ror 4drot drotts3 d3r^^e4kn 3dr^^e4kt 5dr^^e4n d3r^^e4t d5r^^f6d 4ds d2s1an d2se ds5enh d4sf d2si ds3ins d2sj dsk2 d3skef ds4ken d3ski ds3kl ds5kn ds1l ds4lot ds4mo d4sm^^e5 ds5n^^e5 d2so ds3pl ds3s4 ds3tal d5stat ds4te dste4a d5stig ds3tin ds5tro d2su ds1v d2s^^f6 2d3t 3du dub3ble 4dup du1s du2sc du4ste du5s^^f6 4dut du4vu 2d1v d3vr 2d3w 3dy dy4kan dy4ro 4dz 5d^^e5g 2d^^e5s 4d^^e5t 4d^^e4g d^^e42r 3d^^f6 d^^f6ds1 4d^^f6g 4d^^f6p d5^^f6st d^^e94 e1a e2ake e4am 4eb e2br eb3ril 4ec e3ch echiff5 ecis4 e3co e2d e4dans edd4r edi4u ed3j e5dral ed1sk ed2sko ed3s2l edso4 e3d^^e5 e1e e2ed e4ei ee2k5 e4en. e4ene e1f ef4s 3efte e1g e3ga e3ge ege2l eg1l eg2ler e3glera e5gleri e4gran eg5rat eg3rin e5gru egs3 e5g^^e5 eig2 ei5gn e3ik e1in ei5sh e1isk e1jo e3ju e3j^^e4 e5j^^f6 e3ka e1ki e1kl ek3lat ek4le ek3n e1ko ekord5s ek3orr ek4ret. ek5ro e1ku e1kve ek5vis e1ky e1k^^e4 e1la el1akt el4arb 3eld. eleb3r elekt3ri el4fra eli5ku el3k4 el3li ell3s el3l^^e4 e1lo e4lob el3p el2si el5ug e5luv 2e1l^^e4 e1m e5mat e5mis emon1s em5ort emp5le en5art e2nav en4ce e4ned e4nek ene3r^^f6 2enj en5klo en3kn en5kr en5k^^e4 enning5 ennings2 eno2m en3si ens5ke ens2m en2sp ens4te ens4vin en4s^^e5 ent4ha en2t1r ent4rat. ent3rati ent3ri ent5ru e5nus 2eny 2e1n^^e4 e1o e2og eo4i e5or 2ep e1pe e1pi e3pla ep5le epp2s3 epps5t e1pr ep3s ep4tr epu3b e3p^^e5 er1ak 4eras er3d4 erg4l er4gu er4g^^e5s e1ri e5rib e4rinf erings3 eri5stik erk4lin erl^^e44 er5na e1ro e3rob e2rom erp4 er3ra er5sc ers4ken er3sl ers4le er4sta er2ste er3str er3sv e1ru e5rum e3ry e5r^^e5d e1r^^e4 e2sal es5all es3arm e1sc 2ese es4hi esi4u es2k e4skan es5kar e4s3ken es3ker es5kul e1sl e5slag es2mi e1sp es3pl es2sk ess5l^^e4 es2st e3stal es5ten. esti2ge es3tin es5tor. es4tr est5rer e3stru est4r^^f6 e3st^^e5 es2u e1sy eta3b e5ti eti3^^f6 e1to e5tri. et3ris e5tr^^e4 et2s ets2ad ets3kr ets1l ets3m ets5pa et4sv ett3r e1tu etu4ri et4va et5vu e1ty 2etz e1t^^e4 et^^e4c4 euk4 e5um. e5up4 4eur eu4se. eu5tro e1v e4varm e4vj ev3r 3exp ext4r 4e^^e4 f2 3fa fac4 fac5ke 4fans 4farb fa3sh fa4st fa4t^^f6 4fav 4f3b f3d 3fe 4fef fe2l fes5ta fe3sto 4fex 2f1f fff4 ff3l ff3n f3fo ff3r ffs4 f3f^^e4 ff^^f65re f3g2 f5h 3fi fi2br fib5rig fi3li fin5sm fi3skal fisk3r fi2ti 2f3k 1fl flo4da 4f3m fma4 1fo 4fof fol2 folk1 2f5om fo2na for4mo fost3r 4f3p fra2m fram5p f4rer 5freri fre4s f4ri. fri5sp 5frit fros5ta fru5str fr^^e5n5 2f3s fs2k f4sl f4sm f4sn f4sp f4st f4sv 2ft f3ta f4taf f4tak f4tap f4tarm fte4r f4tex f3ti f4tin f3to f4t3r ft2sa ft4set ft2s5i ft4sj fts4t fts5v^^e4 ft5t ft1v 3fu furs5te fu5ru fu3tu 4fv 5fy fy4ma f^^e53t^^f6 1f^^e4 f^^e4s5ti 3f^^f6 f^^f62ra f^^f62ren f^^f62ri f^^f6r3k f^^f6r3sm f^^f6r3su f^^f6rt4 f^^f6r1^^f6 ga5br 3g2ag 4gakt 3g2al gall3s ga5l^^e4 ga4no 2garb 4garm ga2ro 4gart ga4st ga4su 5g2ati gaus4 g4av g5avsn 4gax 2gb 2gd g3d4r ge2a ge5b4 2gef 2ge4j g2eli 3gelis gel5st gel5y 3gel^^e4 gel5^^e4n g4em ge4nap gen5g 3g2eni 3genj 4genm genom5 gen4sa g4ense 1g2ent 4genv ge5ny 3gen^^e4 ge2o 1g2era 4gerarb 3g2eri gers5n 5gese ge4to get5s 5g2ett 2g1f 2gg g1ga g4gap g1ge gg5g gg1l g4gos ggs4la ggs4m gg3s4t gg3s4v g4gu 2gh gh4te 1g2i gi1o gi5sn gi4ste gis4tr gi5stral gi5st4rat 3giv gi2^^f6 g2jo 3gjor g3j^^e4 2g3k2 2gl g4lans g1lar g2las 5glase glas5k 5glas^^f6 g4lid 4glj g4l^^f6g 5gl^^f6m 2g1m 2g1n g4nag g2no 1g2o 3go. 3gol gon3s4 4gont 2gord 4gorm 4gort go3sl 2g1p g2r4 3graf 5gral gra2m5 5grans 4gras 5grec 5grett g3rig 4g5rik 5grip 3gris g5roi gro2v 4grum grus5t g4r^^e5 5gr^^e5. gr^^e44n 5gr^^e4ns 2g2s gs1an g5satt g3sel g4sf gsi4d g3sju g5skaf gs4ki gs3kn gs4kot g3sky gs1l gs1m g4sme gs3n gs4ni gs4n^^f6 gs1or gs3pl gs3po gs4por gs5pre gs3pu gs3s gs3tak gs3tal g3stark gs4ten g3stif gs3till gs3tj g3stol gs3tra gst4re g3st^^e4m g4sug gs1v g4s3ve gs3vi gs3v^^e5 gs3yt gs1^^e4 2g1t g3tr 1g2u 4gug guld3 gul4da 4gul^^e4 gu2ma 4gup gu5ru gus4k 2gut g3utb 2g1v 4gw 3gy gytt3j 1g2^^e5 g^^e5rds5 2g5^^e5ri g4^^e4l g2^^e4r g^^e44s 1g2^^f6 4g^^f6g g^^f65ro 2g5^^f6rt 1h ha3bl ha5ge ha4li hal4so halv3^^e5 ham4st handels3 hands4l han5g2a ha5ra ha4sc ha4sp hasp5l has3t hav2 havs3 h5c 4hd he4at he4fr he4l^^e4 hets1 hets3t hets3v h3g h2i 4hir his2sk hi4t hj^^e4l3s h1k 2hl h4le 2hm 4hn h2na h2nit ho5nu hop5plo hop3s hos3p hos5ti 4how h3p h5ru h1s 2ht hu2s hust5r hyg5r hys4t hys5ta hy3ster h^^e5rd5s4 h^^e4ll2 h^^e4lls1 h^^e4lso3 h^^e44ri h^^e44s h^^e44var h2^^f6 h^^f62g h^^f65gen h^^f6g5r h^^f6rn5s h^^f64s h^^f6st5r i1a ia3fr ia3g ia4lu ia4sk ia3tr i2b3l i5bril i3ca i4ce. i5cha ic4kord ick3u4 i5co i2d iden3s id4ge i4dom id1r id3ro id2s ids3v i4dun i3d^^e5 i4d^^f6 2i1e ifes4 i5fn i1fr 3ifr^^e5n i1g 4igan i2geb ig5ej ig1l ig3no i3i i4kart i1ki i3klo ik5l^^e4n ik3n i1ko ik3re i5krob ik5rof ik5ros ik5s2h ik5skor i3kul i3kum ik5u4t ik1v i3ky i3k^^e5 i3k^^f6 i1la il4dan i2lin il1j^^f6 il5k il5lak il4lik ill3s2 3illu il5l^^e4r il2min i1lo il2tj i3lu ilufts5 i4lup i5l^^e4 im2b3r im5sm im4so i1mu i5m^^e5 i3m^^e4 i5m^^f6 i4nau ind5sk^^e4 ind5sti 1indu in4ga in4ge. ing4es. ing5is in5glas ings5te i3ni i4nif in5j in5kve 1inneh 5inre 1inri 3inr^^e4 in4sem in3skr^^e4 in3sl ins4m in3sn 1inspe 5inspeln in5spr 3instink 3instru in4st^^e5 in5te 1intr in4tra int3s i1nu i4nun in3ym i1n^^e4 i5oc i1og i3ok io4kr i1ol io5li i5om ion2 i3ono ions3 i1op i1or i1os i1ot i1pe i1pi ipos4 ip5pi i3ra i4res i1ri irk5l i1ro iro3p i1ru i5sce isel4 is2h i2sk is5kep isk5na is3kopa is3ku is4kun is3ky i5slam is3l^^e4n is3m is3n i2s3p is4pri is3sa is3se iss5n is4s3tr iss3t^^e4 i1stal i1stans ist5att is5ten. i1stent is4tes is3tig is5ting is5tor. is5tore ist5ro ist^^e54 is5v i3sy i4s^^e5 i1t it5c i4tei i4tex i4tj it5ran i5trin i3tris it2t5op it4t3r it4tu i2t5^^e5 4i1u i1va i2vak i1vi i4vin iv3r iv2s i1v^^e5 ix2t ix5tu i1^^f6 1ja 3jakt. 4jarb jas5p 2jb 2jd jd3r jd4sty j4du 1je je2a 5jef je5sta 2j1f 4j3g 4jh 1ji 4jin 4jk j4kl j3ko jk3v 2j1l 2jm 2j1n j2o 3job jo4kr 4jolj jo5l^^f6 jor4din jord3s4 3jou 4jp j5pl 2j3r 2j1s j5sa j4sk js4me js4te 2jt jts4 2j2u ju4kos juk3s jul3k 4jur jus5kr juss4 jus4t jus5ta jut4sta j^^e45lo j^^e4l4p5r j^^e4l4sa j^^e4rn3sk j^^e4r5s j^^f6r2s j^^f6s4t 5j^^e9 1k2a 3ka. 3kad. 3kade. ka4dr 2kaf 5kaf^^e4 ka3i ka5ju 2kak k3akti 4kalf 4kalg kal4lo kall3s 3kamp 3kamr 3kan. 4kand. 5kano 2kap 3kapi ka5pla kap4pr kaps5t 5kapten 3kar. ka3ra 4karb k5arbet ka5ri 4kark 3karna 4karp karp5s 4kart. 4karte 4karv 3kas ka4sk kas3ti 3kat. 3kats. 4kau 2kb 4kc 2k3d4 kdom4 1k2e 3ke. 2ked. 2keda ke3dr ked4s ke4er 2kefu 4keld kels4 4kense ke5n^^e5 2kep 3kern ke2s kes3s 4kex 2k1f kf^^f62 kf^^f63ri 2k5g4 2kh4 kid3s 4kif 1kig kik4s kilt4 5kim^^e5 king3r 4kinne 4kins 2kint ki4nu ki4tr kiv3s 4kj 5kjol k3j^^e4 2k3k kl2 1klag k2lama kla4mi 3klang. 3klass 2klat 5klav 2kle k2lej 2klig k2lim 3klip k2lis 5klist3r k5lock. 5klocka 3klos 1klub 4kluk 1kl^^e4d 2k3l^^e4g 2k1m 2k2n k4nal 3k4nap 5knip 3k4niv 3k4nu k4ny k5nyk k2o 4koc ko5de k5odl kog3n ko4gr kog4s3 4kola ko2lin 4kolj kol5tr 5kolv. 1kom 3komm 5komp 2k3omr kom4s 1kon 3konf 3konst 3kont ko3nu 1kor 3korg ko3ri 2korr 3korres 5kortera ko5s4k ko3sl 3kost ko4str 4k3ou 2k1p k2r4 3kraf 5kra3ge 4krang 5krera k4reten krid5s2 1krig krigs3 krings2k 4kriv 3kropp kropps5 kru5stad k3ryg kr^^e5k5s kr^^e54pa k5r^^e4dd. kr^^e4k5l 4kr^^e4l k3r^^e4t 2ks ksaks5 k2s5as ks3ch k4ser ks2k4 ks3kl ks5kra ks5kv k3sk^^e4 k3sk^^f6 k5slag. ks2li k5sly k2so ks3pl k1s4t kstavs3 ks5tid k2su 4k1t k4tex kti5ge k4tinn k2tins k2tod k2tom k2tr kt3re kt3rin k5trod kt5rog kt3rol kt5r^^e4t kt2st kt5t4 k4tug k2tut k4t^^e4l 4kug k5ugn ku5la 4kuld 3kul^^f6 kum5pl kungs5 5kunn ku4pen ku4ro 3kurs 3kus kust3a kv4 3kvali k5vare 3kvarn kvar3s 3kvart k4vato k2ve 2kvente 1kvinn 5kvire k4vo k1v^^e5 3kv^^e4ll k1v^^e4r kydds3 ky4lin 3kyrk k^^e4l4m 5k^^e4mp 5k^^e4nn 3k^^e4ns 3k^^e4rl 4k^^f6g k^^f6ks5t 5k^^f6p. k^^f6r4l k^^f6r4sl 3la. 1lade. 2ladm 4ladr 2laf 3lagd. la4gin 5lagm lag3r 2lak 5lakan. 5laki 3laktis la5lo 3lande. lan4di 2lappara 2larb 1larn lar5s 4lart las3h 4lask la4st 5laste. 1lat. la5tr lat4tis 2lau 2lav la5vu 2lb4 4l1c 2l2d lder4s l3dj ld3ra l5dry lds4an 1le 3le. le4ge. le5ig le2kl le4kv lem4s^^f6 2l5enl 3ler. ler5k 3lern ler3ste le5s2l le5t^^e5 le3um le4vu 2lex 2l1f 2l1g l2gj l3g2l lgs4 lg5st 2lh 1li li5ch 3lif 3lig li4go lig3s lik2l li5kli lik3s 5limer 2lind 2linga. ling5o 4lingr lings5t 2lini 5linj 2lint li1o 2lip lis3c li4sta li3str^^f6 li4vo livs1 l2jak 4l1jo 1lju l5j^^e5 l1j^^e4 l3j^^f6r 2l1k l3ke l5kju l2kl lk5lag l5kl^^e4 l2kr l3k4ra lk3t l1la lld4 ll3dr lle5b ll3k ll1l l1lo llok5v ll3p ll4san ll2se ll3ska ll2so ll4sva ll4tig ll3tr l1lu ll5un llust3ra ll5v l5ly ll^^e4ggs5 l5l^^f6d ll^^f6r4 ll5^^f6rt 4l1m l4mol lm3st l1n lo2af loc4ku 4lodl lo4do lod3st lo2ge. 2lolj 2lom 4lord 2lorg lor4s lo4vo l4pak l1pe l1pi l5pla lp5l^^f6 lp4st 4l3r 2l1s l2sc l4sjo l4sj^^e4 l2sk l4skensv l3ski lsk3n l5skot l3skr^^e4 l3sky l3sk^^e5 lsk^^e54p l3sk^^e4 l3slu l4sm ls4mo ls5nyt l2sp l3spe ls3pl ls3pol ls5s l2st l3sta l4stak ls4te ls5ter l3sto l3sty l4styg l3st^^e5 l3st^^e4 l5st^^f6 l2su l5sur l2sv l4svi ls5vid l4s^^e5 4l1t lta2tu l4tef l4tif l4tih l4tos lt5rati l4tret l4tr^^f6 lt5sk ltu4 lu5i luk4to 4lull. 2lun lung3 2lupp lu4pu lus2s5p 5lust. 4lutb 4luts 2lv l1va l4varm lvers4 l1vi l4vos lv3ri lv3sp l1v^^e4 lv^^e4v4 lycks5t ly4gat lyg3r lyg3s2 3lyste 5lystn ly4str 2l^^e5. l^^e5g3s 1l^^e5ng l^^e5ng3s l^^e54sk l^^e5s5te l^^e54st^^e5 4l^^e4c l^^e4g5r 1l^^e4nds 5l^^e4ngder l^^e44san l^^e44sp l^^e4tt3s 4l^^f6l 4l^^f6m 3l^^f6n 3l^^f6rer 1l^^f6s l^^f64v^^e4 3l^^e9 1ma ma5fr mag5n mag5s ma5ju mak3r ma3li mand4 mang2a man5g4o ma5ni mani1k 5ma3ri mash5 mas3ko mask3ro ma5sk^^f6 mas3ti mas4v 2mb mb4sk 2mc 2md m4dat m4di m4do m3d4r 1me 2meds me4du me4kl me4ko 4meld melo5 me5lu men5k me5nu me5ny mer2sko me4so mes4t me3sti 2meta me5trin met3ro meu4 2mex 2m1f m4fes m4fn 2m1g4 2mh 1mi mid3s mi4lu 2mind ming4o 4mink min4kr 4minv mi3n^^f6 mis2 mi5sf mi4sp miss3t mi4te. mi4tr mitt3s 2m1k 2m3l 2m1m2 mme5d mm3s4 m4mul 2m1n m2nam mnas3t m4nav mn5dr mn3g4 mn5st mn5tu m2n3^^e5 1mo m4od mo4i 2momr mo3na mos3k mo2ta mo4tin mo4tu mot3v 2m1p m2pak m4part m2pl mp3lad m5plane mp3lat mp3lin mpos4 mp5p4 mps4k mp5sp m4p^^e5 2m1r 4ms m4sal m4ske m3slag ms3l^^e4 ms2m mste2 m1sto m2str mst3rin ms5^^e4p 2m1t 4mud mulls3 mult5r 5mum 4mun3g4 mun4ko 3mur 3musi mu3sta mut4sl 2m3v 1myn mys4te m^^e5g4 1m^^e5l. 5m^^e5let. 5m^^e5n. 4m^^e5r m^^e51s 4m^^e4g m^^e4k3 1m^^e4n m^^e4ns4 3m^^e4rk 1m^^e4s m^^e4s5ta 1m^^e4t m^^f64bl m^^f64gen. 3m^^f6j m^^f6r4kl 3m^^f6s 4m^^f6v 1na 3na. 3nad nads3 2naf na5gr 2nak 3nako 3nakr na3kro n1akt 2nalf 5nalfl 4nalg nal3s na2lu n5amb 5namn 4nand. 4nanv na4rap 2narb 2nark 4narm 2nart nast3r 2nb4 2n1c n2ch n3cha n3che n3chi ncis4 ncyk3l 2nd n4dak n4dav nd3d4 n5de nde3s n4dil nd5rak nd5ras nd3rat nd3ri n5dril n3drop nd5ros nd5skal nd3sn nds3or nds5v^^e4 nd5^^e5s 1ne 3ne. ne4di 5nedl ne4d3r ned3s ne4d^^f6 ne2gr ne5gres 4nek. ne5ly 4nenl ner5sm nes3s4 ne4sta ne5s4ti ne3tre ne1ut 2nex 2n1f4 nfalls5 nfis3 2ng1 n4gar n4gen. n4gend n4gens n4genti n4germ n4get n2gi ng3ig ngi4s ng4ly n2go ng5om ng3or ng3rad n4gr^^f6 ng4ser ngs1k ngs3pa ngs5tim ngs3val n4g^^f6d 2nh 1n2i 4nid ni5ec ni4ki ni5li 3nin nings1 nings3k nings5v ni1o 4nip nip4pr ni5steri nist3ra ni3t4r niv5sk niv5st 2n1j n4jar n3jun nju4s n3j^^e4 2nk n4kart n1ki n4kis. n3kny n1ko nkrafts5 nk3ri n1kro nkrus4 nk5sl nk3sp nk4tin n1ku n1k^^f6 2n1l 2n1m 2n1n nn3d n3ne nnis4 nn3k nn3s4t 1no 2nodl no4kl 2nolj 2nomr nom3s4 2nord 2norg no5sa no5sc no4tu 2n1p 2n1r 4ns ns2i n4sint n4sis. n4sise ns2k ns3kan n1ski ns3kor nslags5 ns5las ns5mit n4soc n1spi ns3pl ns3po ns3s4 n3stans n3stap ns4tel n3stif ns3tig ns4tra n2strik nst5up nst5vil n3s4ty n1sva ns3vi ns3v^^e4r 2n1t n4tark nter5s4 n4tinf n2t5omb nt3rad n3trah n3trak n5trala nt3rali n5tram nt3rep n3trer nt3ria nt3rin nt3ris n4tropin n4tror n4tr^^f6 nts3c nt4se nts5kor nt4str n4tut n3tv^^e5 nufts4 4nug n5ugn 3nui 3num nums5 2nup n3upp 2nutb 2n1v ny5gr n5z 4n^^e5r 4n^^e4. 4n^^e4c 3n^^e4m 3n^^e4t 4n^^f6g4 3n^^f6j n^^f62ja n^^f65kr 4n^^f6l n^^f6s4 n^^f6s5ke o1a o2ard o2b 5o4bj o4bli oby4 oc4k5r ock3sk oc3ku o2d ode4k odi4a 1odli o5dral o3dro ods4k od2st ods4ti od5stu o3d^^e4 o1e offs5t o4fl o3fr of^^f6rm^^e54 o1g o4gav og3gr o4gj o5glo o5gly ognos4 ogno5st o4gri o4gr^^f6 og3se og4s3t o4g^^e4 o1i o4il o1j o1k o4kli ok3n ok3sl ok4su o2kv o1la o5lak ol5au olf^^f64 1olj ol3ka olk3r ol4ku ol4k^^e4 oll4si oll5sl^^e4 ol3l^^e4 olm4s oln3s o1lo olo5kv ol4sa ol4t^^e5 o1lu o4lug o4lur o1ly ol5^^e5r o1l^^e4 om4br^^e4 o3men o4mord om5pa om3pl 1omr 4omra om1sk om4ste 3oms^^e4t om4tr om3tv on3c on5gi on1gr ongs4l o4nins on3j on1k4 ons3c onsi3s ons3m on5stel ons4ter on3tras on4tre ont4s o1ny on5^^e5 o1n^^e4 o3n^^f6 oo4d oom5s o3or o1pe o1pi o5pline op4pl opp3le op4pr op4pu o3pri op4st o3p^^e5 o5q 4ora o3rak oran3g4 o2rap 1ordn or4d5^^e4 o4reh 1orga 5organi or4gr or4g^^e5 o1ri 3orient 4ork or4m^^f6 or4nu or4n^^e4 o1ro or4pl or5pr or4spa ors5tig or5te or2tr ort3re ort3ro o1ru o3ry o1r^^e4 o1r^^f6 o3s2f^^e4 osk4l o1skop o3som os5pig os4sk os4s4t os3tig os5tiker o5still os4tr ost5ron ost5r^^f6 os3tul ota2lan 4oti. 4otie 4otin o1to o5tro ot5run ot3sv ot5ti ot4tr^^e4 ott2s o1tu o5tun otvin4 o1ty o5t^^e5 o3t^^e4 oun4 oup4 4our ou3r^^f6 ou4s o3ut3t o1va ova4n o1vi ov3r ov4si ov3sl ovs4me o1v^^e4 o3we ox5 oy2 o3^^e5 o3^^e4n o3^^f6 1pa 4paf pag4 paki3 pakis4 pa5la pals5 pa5l^^e4 4pand. pan4tr 3pap 2parb 4parm par3s 2pask pa5ski pa2st 3patr pa3u 2pb4 2pc 2p3d4 pek5tri pekt3ro 4peld pel3s4i 4pem 5peng 3penn pent5r per4bl 3perio 3pers per4sl pe5tro 4pex 2p1f 4p3g 2ph pi4el 1pig pi1o 3pip pi5so pi5sta pi5sto p2j 3pj^^e4s 4p3k2 p2l p4lac 5plan. p4lane p3larn p3lev 3plex 3plic 1plik 4plit p3lj 1plom p3lop 2p1m 4p1n p3ni 1po 5poa 2poc 2pof po2i 3polit 4polj poly3 2porg 3pos pos4ter 4pov po4v^^e4 2pp p4part pp5ask p4pax p3pe p1pi p4pins pp3j pp1l pp3la pp3lin pp5lis pp5lu pp3ly pp3l^^e5n pp3l^^e5t pp3l^^e4 pp3l^^f6 pp5oc pp3of pp3p4 pp1r pp3ra pp3ri pp3ru pp3ry pp3r^^e4 pp3tr p2pu p5py pp3^^e5 p2r2 2pra 5prax 1pres pres4t pre3sta pres5to p3rig p3rik 5pril 3princ pring3 p5riol 3pro pro3g p3ror 4pr^^e5 3pr^^e4s 3pr^^f6v 2ps p2sal 3psalm p5s2ho ps4ken ps2li p3sna 4pso p3sod p1s4t p4stak p4st^^e4v p2s^^f6 2p1t p3tri 1pu 4pug pul2l5ov pul5tr 5pung 3punk pus3t 2p1v p^^e53dr 3p^^e4l p^^e45ro 4p^^f6r 3p^^e9 qu4 3que 1ra 3ra. raci4t 3rade. 4radr ra4du 5ra1e 2raff^^e4 ra3fr ra5is 2rak ra2lo r4ande 3rande. 4ran4d3r rand3s 2ransv ra3pl 3rar r4ar. 4rarb r4are 4rarg r4ark 4rarm r4arn r4ars 4rart r3arta ra5r^^f6 r4as ras3h ra2st 3raste. 3rativ ra3tri 2rav ra5yo 2rb 2r1c 2r2d r4daf rda5gr r3dj r4dos rd3ran rd3rat r4dul r3d^^e5 r3d^^e4 r4d^^f6s 1re 3re. 4reaus re3b 4rec 5reco re3d4r re5du 4reft 4regg 3regn. re1kr rek5tri 4reld re3lu rem5p 3rems r4en. 2reni 2renk 2renl re3n^^f6 re3o 3rer. 3rern 3reso ress5k re1sti 3ret. 4retet ret3ro 4rety re5t^^e5 2revig 4rex 2r1f rf^^f63ri 2r1g rg3g2 rgs5top 2rh rhands5 3rial 4rib 3rifi 2rifr r3ifr^^e5 3rifu 3rigt rik2s 3riktn ri4mo 2rind rind3s 5ringen. ring3r 2rinr 2rins 2rint ri1o 3riot ri5ple ri2st^^e4 ri4tut ri4vis riv3s 4rj r4jis r3jo r5ju r5j^^f6 2rk rk3akt r4kek rkes3 r1ki r3klas rk2le r4kl^^f6 rk3n rk4ne r1ko r4kod rk3tr r1ku r4kup r1k^^e4 r5k^^f6r 2r1l r5laka r5lav rld2 rlds3 rl5sp 2r1m r4marb r4mil rm2s5j rm5tr 2r1n rnal4 rn3g4 rn1k r2nom rns4k rns4t rn3t ro3b ro4gro ro2kr 2rolj rol4li rom4a 5roman 5ronau 5rond. ron4v ro3pl ropp2s ro4ra 2rord 2rorg 2rorie 3rorn ro4sin ro4sn ros3v ro5te 2r1p r4pl^^f6 r4p^^f6 4r1r rra4n rrd4 rreligi5 rres4 r5rib rr5k4 r4rob r4rom rr1s rrs2k r4rur 2rs r4seld r4sex r2sin r1ski r4skid rsk3na rs5koll rs4kos rskotts3 r2sku r3sk^^f6 rslags4v r4sle r4slo r4s5l^^f6 rs4mo rs5nat rs5n^^e4 r1sp r2spl r2spo rs3s4 rs5tak rs4te r5stek rs5tend r5steni rs5till r1sto r4ston rst4r r3str^^f6 r3stu r1sv rs4vag r2sv^^e4 r1sy 2r1t r2taf r2takti rt4an r4tins r4tom r5trit r3tr^^e4 rt3t r4tut rubb5l ru3br ru4dan ruks1 ruks3v 5rullera 3rum. runn2 runns5 4rupp rus2h ru5sha 2rut 5rutig rut4ra ru4vi 5ru^^f6 2r1v rv4sj rv2s5k^^e4 r3w rydd5s ry5o r^^e5ge5l 4r^^e5l r^^e5ng3s r^^e55ra r^^e53st r^^e4ck5s 4r^^e4kt 4r^^e4m r^^e4ng3s r^^e4ns5t 4r^^e4s r^^e44san r^^e4s3s r^^e45sti r^^e4v5s r^^f6d5el r^^f6d5r r^^f6d3s 2r^^f6g r3^^f6i r^^f6k3s r^^f6ns4t 4r^^f6p 3r^^f6r r^^f6r4s r^^f64st r^^f6st3r r1^^f6vr 1sa 3sa. 3sad. 3sade 4sadj 2sa3dr sad5s 2saf sa3i sak5ri 2s1akt sa5lo 3s2am sa2ma samman3 sa2mor sand3s 4sang 2sanl s3anl^^e4 san3sla 2sap 3s4ar. 2sarb 2sarm s5arm. 3sarn 2sart 4sarv 4sass 5sat. sa4tu 2sau s3auk 2s1av 4sb s2c 2sch. 1scha 2schau 4schb 1schen 1scher 1schet 1schi 4schk 4schm 4schp 3schy 3sch^^f6 sci3p 4s3d 1se se4at. se2g 2s3egg 3segl seg3ra sek5le sek3r sek5tr 3sel. se5ly sem2 3sen. s5ers^^e4 3set. 2sexp 2s1f s4f^^e4r. sf^^f62 4s3g2 2sh 5s2haw shi1s s5h^^f6 1si sid5s 5sie si4eri si4esk si2ett 3s2ig 3sik sikts3 5sill. silver3 silv3r 2s1ind 2s1inf sinne2s3 3sinni 4sinr 2sin1s s1inst 5sint. 2sintr 3sio sis4t siu4 1s2j 2sjak s3jakt 4sjn 4sjt s4ju 5sjuk 4sjur sj^^e4ls3 3sj^^f6 4sk. 2ska. 3s2kada s2kado 3skaffn 1skaft s4kag s2kal 3skal. 1skap 5skap. 5skapet 4skapi skaps1 4skar s4kara 5skarv 4skas s2kat s4kav 4ske. 3sked. s4kene 3skepp 4skh sk4i 3skif 5skin 4skis. 5skiv 5skjor 3skju 4skl sk5lap s3klas 4skn 3s4ko. 1s4kog 4skogsg 1skol 3skola s4kolo s4korp skor1st 1skot s5kran. 3skrat sk4ret 3skrev 1skri 3skrif s3krig 5skrin 3skrip s5kris 3skriv s5kron s4kru 5skrub 3skruv 5skr^^e4c sk3s 2skt 3skulp s3kup 2skv s4kve 1s2ky s4kyn 2skyrk 1sk^^e5 s4k^^e5l 5sk^^e5p. 4sk^^e5r 5sk^^e4nk 3sk^^e4rv 2sl2 4sla. s5lad. s3land 3s2lang s4lant s3lar. 4slas s1lat s2lev 3slev. s4lic slins3 4slis s2lit s5lor slotts3 s2lu s3luc s3luf 4slus s3lust 3slut slu4to 3sl^^e5. 5s4l^^e5r s4l^^e4k s5l^^e4m s5l^^e4nn 3s4l^^e4p 4s3l^^e4r s2l^^e4t 3s2l^^f6j 2sm s2mak 3smak. s3makt s2mal s2met. s2mid s2mit 3smitta s3mj 5smug 5smyg sm^^e55g sm^^e53k sm^^e53s 3sm^^e4d 3sm^^e4l 4sm^^e4s 3sm^^f6r 2s2n4 3snab 3s4nac s3nam s5nare s3nast s5ner 3snib 3snil 3snit 1snitt s3niv 3snut s4n^^e5 5sn^^e5r 5sn^^e4c s4n^^e4r 3sn^^f6. sn^^f65g 3sn^^f6r sn^^f63s 1so 3soc 5sock 2sod 5soi 2solj sol3s2 2som 5somm 3son son4st so5pra so4pu 3sor. 2sord s5ord. 2sorg 3sorn 3sot 4sott s2p2 5spann. s4park 5sparv 4spas s3pass spa5tr 1spe 4sped 3s4pek 3s4pel 4spelsl 2spen 2sper 5spets 3spill 3spir 4spl s1pla s3plan s3plats spli4 s4plin 5split s5pl^^e4 4spre s3pres 4s3pris 3sprit 2spro s3pry 3spr^^e5 5spr^^e4n s3ps 1s4p^^e5 3sp^^e5n 3sp^^e5r 5sp^^e4n 3sp^^f6 4s1r 4s1s s5sad sse4lin s5sil ss2k ss5kl ss3kun ss1l ss2lag. ss2l^^e4 ss2l^^f6 ss3na sss4 ss3unn s2sv ss3vi s2t 2st. 4sta. 5stac 3stadi s4taf 5stalgis 3stalla 2stalli 5stam. 5stamm 1stant 5stark. 5startad 1state 3statl 1stau st3c 2s5te. 4stea 5steg. s4tek. 2stekn 5stekt s4tell 3stem. 3steme 5stenar 3s4tene 3stense 5stensm 1stera 1stering s4teriu 3sterne 5stetis 2stia 2stib 3stick 2stid s4tiken 2stil 3stil. 3stink 3stisc 1stit 2stj s5tju 3stj^^e4l 3stj^^e4r 2stm 5stoc 1stol 4stolk 4stom stori4eu 5storis stor3s 3straff 4strativ 3strato 3strec 3strej st3ren 1strer 2stria 1strid 5stride 2striel st4rif 1strikt st5risk 1stru 3struk 2strumm s3tryc 5stryk 5str^^e5k 3str^^e5l 3str^^e4c 4str^^e4d 3str^^e4ng 5str^^e4v 3str^^f6m 2st3s4 st3t 4stv s3tvis 1sty 2styp 1st^^e5 4st^^e5g 5st^^e5l 1st^^e4 3st^^e4l 1st^^f6 1su su4b 3sug su3i 3sum 2sun 5sun. s1under 5sune s5ung 2sup 5supa su2pu 5sus 2s1ut su4to su4tr s2v2 5svag. s3vagn 4s3vak 5svam 4svap svars3 3svart 4svas s3vat 4svec 3sven 5svep 4s3ver s5ves 4s3vil s4vine 4svis s5vitt s5v^^e5d 3sv^^e5ri 3sv^^e4ng 5sv^^e4rm. s3v^^e4s s3v^^e4t 4syk 5syl 3syn syn3k s3yrk 3sys sys4t sys5ter syt2 sy5th 1s^^e5 5s^^e5g 4s^^e5k 2s^^e5lde s^^e5ng3 1s^^e4 s4^^e4d 2s5^^e4gg s4^^e4l 2s^^e4p 5s^^e4s 3s^^e4t 4s^^e4ta 1s^^f6 4s^^f6d 2s^^f6g s5^^f6ga s^^f64ko 4s^^f6l 4s^^f6p s^^f6r2s 2s3^^f6rt 1ta 3ta. ta1ch 3tade. 4tadi 4tads5 2taff 3taga 5tak. ta5kre 2taktig tak4to 4talf 5tallise tall5s 4talv 3tame 3tami 3tan. ta4nab 3tande. 2t3anfa 4tanl t4ap3l 2tappar 3tar. 4tarb tar4mi 3tarn tars4 4tart 5tartavl 4tarv 4task 3tast ta1str tat2 ta4tan tats3 2tatt 2tav 4tave 5tavla. 3tavlan 3tavlo tav2s 3tax 2tb4 2tc t3cha t3che 2t3d4 3t2e te4as te3b4 5tec 4teg te2g1r te3gre te3i te4int 4tej tej2s te4kl 5teknik 5teknis 4teld 5te5l^^f6 5tema 4temo te4mu ten3g4 5tensi ten3tr te4n^^e4 te5n^^f6r 5ter. 5teri^^f6 ter3k4 5term 5terna 5ters ter3t te4ru 5tes. 5test tes4te te5stik te5stu 5tetik tets3 4texa 2texp 2t1f4 2t3g4 2th t4hen 1ti 3tial 5tib 5tici 3tid 5tide ti4du 4tid^^f6 ti4ed tifts5 ti2gel 3tigh ti4go ti2gr 3tigt tik3l 3tiks 5tikul t2il 5tilj 3tillst 3tillv 3till^^e4 5time 2tind 2tinr 2tint ti4od 3tion ti2os 3tis 4tisc 5tisk 3tiva ti4van 5tivite ti2^^f6 t2j 4tje 4tjob 2tjou 4tj^^e4l 4tj^^e4m 3tj^^e4n 2t3k2 2t3l 2t1m 2t5n4 tne4r 4todl 3tok 4tol. 4tolj 2tomr 4toms t2op 5torap t5ord. 5toriett 4torm torm3s 3torn tor1st 4tort. tos4k t5ost. t4ov 2t1p t2r4 2tra t4raf 3trafi 3t4ral. t4rala 3t4rale 5tralo 3trals t4ralt 3trans tran2s5a 4trar t3ras. t3rat. t4rato 4treg 4tren 4trer. 4trern t3rets. 2tri 3tribu 5trick trids3 t5riel t1ring t3ring. 2troc t3rock t4rog t5ronik t3rono 4tropi. 5tross 5trotn t4rump t4rup 3trupp trus5ta 1tryc 5tryck. 5tryggh 4tr^^e5k 5tr^^e4. 3tr^^e4d tr^^e4ds4 3tr^^e4f 3tr^^e4g 4tr^^e4k t3r^^e4kn t4r^^e4n 5tr^^e4ni 5tr^^f6ja t4r^^f6t 5tr^^e9 2ts t5s4and ts5art t3s4at t3se t4seg ts4en t4sex ts2k t5skall t3skatt t1ski ts3kl tskotts5 t5slot ts5l^^e4k ts3n^^e4 t3sn^^f6 t2so ts3ord ts3pl tss4 t1st ts4te ts5ter ts5tillf ts3tj t3stol t4ston t2stra t4stry t4stur t5styr t2su t3sud t5sy 2tt t3tac t4tau t4ted tte5g4 t4tem tte2n ttes4 t4tex t4tins t4tip tt3ja t1to tt3rad tt3rand tt3rat tt3re tt3ri tt4ry tt4se tt2si tt4sta t3tu t4tug tt1v tt4v^^e5 t3ty t3t^^e4 t3t^^f6r 4t5ugn 2tund 3tunga tung3s 5tunn 2tupp tu5re 2tutb t3utv t3ut^^f6 tu4vu 5tu^^f6 2tv t1va 4tve t3vig 3tving t3vit 3tviv t3v^^e5g 3tv^^e5n t3v^^e4n tv^^e4r3s 3tv^^e4tt ty5da 5tyg. 3tyngd 3typ ty3pi 5tys 2tz 3t^^e5g t^^e5s4 4t^^e5t t^^e4c4ko 4t5^^e4g 4t^^e4m 4t^^e4rm 3t^^e4vl 4t^^f64d t^^f65de 4t^^f6g 4t^^f6p t^^f64pi 3t^^f6rer t^^f6rs3t t^^f64vas 5t^^e9 u1a u2b ub5al ubb4le ub3lic u4bo u3cha u5cl u2d u4dak u5de ud3r ud4ret uds4a u4du u4dy u1e u2es uf4f^^e4 uf4tan uf4to 4u1ga u1ge ugg3s ugn4 ugns5 ug3s4 u5ie u1in u3is u3itet u3j u2keb u5ki u4kl uk5la uk3n u1ko ukos4 uk2s uks5ko uk3tris ukt5s uk4t^^e4 u3ku uk3v u1la ul4di ulds2m ul4du ul4d^^f6 ull3ste ull3^^e4n u1lo uls5ti ul2tr u3lu u1l^^e4 u1l^^f6 um4f^^e4 um4so ums4t u1mu u3m^^f6r 5underl 1unders^^f6 1underv un4dom und3r un4d^^e5 un5g2ef un3gersk ung5it ung3r ungs4p 3unif unk3l unk3n un4kr un1sk un4tr un5trati u5nu u1o u1pe u4pern u1pi u2pl u3plet up3lik 3uppfa 1uppg up4pin 1uppla 5uppl^^e4 up4p3r upp3s upp5sp up5ut ur5ak ur5arv u3re u1ri u1ro u4rob u4rom urs5tin ur4st^^e4 u5ry u2sak us5anl u3scha u3se usen3 u2s1k us3ka us4kla us4kr u5sky us4k^^e5 us5l^^e4 us3n u2sp us3pen us5tat us3tig u3stik us5tin ust5ro u4st^^e5 u4st^^e4 us3v u4s^^e5 u4s^^e4 u2s^^f6 u4tak 1utb u4tef ute3s utik2 u5til uti3^^f6 ut3j 3utj^^e4m utlands3 u1to u3top uto5s ut3r ut4rer ut4ro ut5rop 1utru 2utsid ut3sl 3utsl^^e4 2utt utt4j ut1v 3utvec u5ty ut3^^f6v u5u 2u1v u2vak u4vj u4v^^e4 u5^^e5 u3^^f6 va5dro 1vagn 2v1akti val3k val4li val4st 5valv 5vama 4vand. 4vanp van4st van5tr 5vap 2varb va4res va4ri. 4vark var2s vart5r va1ru vas5ti 5vattn 4vau 4vav 5vavi 2vb4 2v1c 2v3d4 1ve 5vec ve2k ve3ke 4veld vensk3^^e4 5ventera ve3ny ve5n^^f6 4vep ver5g 3verk ves4 ve2s5p ve1st 3veta 3vete vet5sa vett5s 2v1f 2v1g 2vh v4i vi4c vid3s vild3s vil4t 3vind. ving3s4 3vinkl vi2no 5vinst. 5vinste vi5ny 3vis. vi5sa vis5h vis5ko vi4st vis3ta vi2tr vi4var 4vjo 2v3k2 2v1l 2v1m vm^^f6rk4 2v1n4 1vo 4vok. 2vom 4vord 2vorg vos4 2v1p 2v2r 5vrak 3vrera v3ru 2vs v4sc v1s2k v2skri vs4mi v3sni v2so v1st vs4te vs5tr^^e5 v5styc vs3v^^e5 v2s^^f6 2v1t vu4d1 v1und 4v5up 4vut 2v1v 3vy 5v^^e5ld v^^e5ngs3 3v^^e5rd 4v^^e5ri v^^e53ru 3v^^e4g v^^e4gg5s v^^e44l v^^e4ll4s3 3v^^e4nl 3v^^e4rde v^^e44ril 4v^^e4rj 5v^^e4rk 3v^^e4rld 2v^^e4t 3v^^e4x 4v^^f6g 4v^^f6p 3v^^f6r 1wa we2 w2h whi2 wi2e w4na x1 xan5d4 xem3pla xis4 xk2 xli4 xs4 xti2 x4t^^e5 2y y1a y4bris yb4s y2d y4da y5dan y4do yd3r yds4 y4du y4d^^f6 y1e y1ga y1ge ygg3r yg4g^^e5 ygs4p y1i y1ki y5klist yk5lon yk3n y1ko y1la yl4gj y3li yl5k yl5l^^e4 y1lo yl4tr ym2fl ym4for y3m^^e5 yng3r ynk5l yn4sa yns4t y3or y5ou y1pe y5po yp3ri yre4s y1ri yr4ku yrk5v y1ro yrs4k yr5st yr5tu y1r^^e53 y5scho ys2st ys3ta ys3ti ys4tik. yst3ra y2tak y4te. y4tea y1to ytt3r yt5v y3va y3vi y3v^^e4 y5w y5^^e5 1za 1ze ze4ro 1zi 1zo zo4nal 4zp z5s 3zu z4zin ^^e51a ^^e53dj ^^e5ds4l ^^e51e ^^e51f ^^e51ga ^^e51ge ^^e5ge2l ^^e5g3l ^^e5g3s4k ^^e5g3st ^^e5g^^e54 ^^e53i ^^e51ki 5^^e5klag ^^e5k4str^^e4 ^^e51la 1^^e5lder ^^e52lin ^^e5l3k ^^e5ll4sp ^^e5l2s5e ^^e5l3st ^^e51l^^e4 ^^e51m ^^e5man4s ^^e5nd4r ^^e5n4du ^^e5ns4t ^^e5ns4v ^^e53o ^^e51p ^^e52pl ^^e55pla ^^e54p^^f6 ^^e5r4do ^^e5rd4ra ^^e5rd2s ^^e5rd4s3t ^^e54rel ^^e51ri ^^e55ror 5^^e5rsav ^^e5r5s2li ^^e5r2sv ^^e5r5^^f6 ^^e5s4ke ^^e5s3n ^^e5ss4 ^^e5s4skr ^^e5s4t ^^e5te2 ^^e5t3ri ^^e53tr^^e5 ^^e5t2sj ^^e5tt5s ^^e51v ^^e41a ^^e42b 2^^e4c ^^e4ck5v ^^e42d ^^e4dd3s ^^e4d4du ^^e4de4s ^^e4d3r ^^e4d5se ^^e4d3st ^^e43e ^^e41ga ^^e41ge ^^e4g4go ^^e4g1l ^^e4g3r ^^e4g4re ^^e4g3se ^^e43i ^^e45jo 4^^e4k ^^e41ki ^^e4k3n ^^e4k3r ^^e41la ^^e4l4pap ^^e4l4seg ^^e4ls5kog ^^e4l4slu ^^e4l2t3r ^^e4l2tu ^^e4l4vin ^^e4mp3l 4^^e4ndligh ^^e4nd3r ^^e4nd1st ^^e4ng5r ^^e4nni3s ^^e4nn3s ^^e44no ^^e4ns1l ^^e4n4st ^^e4ns5te ^^e4n4sv ^^e4n2t3r ^^e43pe ^^e4pp3l ^^e44pr ^^e4p4st ^^e44rap ^^e4r2bre ^^e4rg5l ^^e4r4gr ^^e41ri ^^e4rib4 ^^e4r4k^^e4 ^^e4r4nis ^^e4rn3st ^^e4r2n^^e5 ^^e4r4n^^f6 ^^e4r5ob ^^e45rol ^^e43rop ^^e45ror ^^e45ros ^^e4r2si ^^e4r4sko ^^e4r2so ^^e4r4sp ^^e4r2sv ^^e4r4tand ^^e4r2tr ^^e4rt3s 4^^e4s ^^e4s3pa ^^e4s5pi ^^e4s4sk ^^e4s4sp ^^e4s3ta ^^e4st3r ^^e44st^^e4 ^^e44s^^e5 2^^e4t ^^e43to ^^e45tre ^^e4t4s3k ^^e4t5te ^^e4t4top ^^e4tt3r ^^e4t4tu ^^e4t4tv ^^e41va ^^e42vak ^^e43vi ^^e45vu ^^f61a ^^f62d ^^f64dak ^^f64dal ^^f64darv ^^f6de4s5 ^^f64dis ^^f6d3ra ^^f6d2s ^^f6d3se ^^f64du ^^f64d^^f6 ^^f61e ^^f61ga ^^f6g5ak ^^f65gar 1^^f6gd ^^f61ge ^^f65ger ^^f6gg4 ^^f6g1l ^^f6g2n ^^f6gn3e 1^^f6go ^^f6g3si ^^f6g3sk ^^f61i ^^f63jo ^^f6j4sv ^^f64karm ^^f61ki ^^f6k3n ^^f6k2s ^^f6k3sl ^^f61la ^^f6l4kv ^^f6l4k^^f6 ^^f6l2p ^^f65l^^e4 ^^f6man4 ^^f6m2kl ^^f64nal ^^f62nom ^^f6ns3ke ^^f6n4so ^^f6nst3r ^^f63pe ^^f64pel ^^f63pi ^^f6p5li ^^f65plo 1^^f6ppn ^^f64pr ^^f63rande ^^f63ras ^^f64rask ^^f6rb4 ^^f6r3d4r ^^f6r1eni ^^f63res ^^f64restr ^^f63ret ^^f6r5evig ^^f6r3g ^^f61ri ^^f65rig ^^f63ring ^^f6r3int ^^f6r5ir ^^f6r5iv ^^f6r4kal ^^f6r1k2l ^^f6r5kli ^^f6r4nis ^^f6r3ol ^^f6r1or ^^f6r2p5la ^^f6r1s2k ^^f6r3sl ^^f6r4sl^^e4 ^^f6r5te ^^f6rt5s ^^f6r1u ^^f6r3vr ^^f6r3y ^^f6r1^^e4 ^^f6r^^f64d ^^f62sak ^^f6s3n ^^f6s4sj ^^f6s2sk ^^f6s4sp ^^f6s3ta ^^f6st3v ^^f62tak ^^f6ts5ko ^^f6t4st ^^f61v ^^f6ve4 ^^f6ver1 5^^f6vere ^^f62vj ^^f6v3ra ^^f6v3ri ^^f6v4sk ^^e93e } } liblouis-2.5.3/tables/sd.ctb0000664000175000017500000000167312161041546012647 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Sindhi include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/marburg_edit.ctb0000664000175000017500000000302012161041546014671 00000000000000# liblouis Table for Post-Translation Editing # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Updated 6-18-08 by Mike Sivill include marburg_single_cell_defs.cti math \x0001 56 math \x0002 45 math \x0003 56 math \x0004 45 repeated \s 0 always \ee\s`4 6-256 always \ee\s`1 6 always \ee\s`3 6-25 always \ee\s`2 6-23 always `7\s\eb 12356 always \ee\s`7 23456 always "\s 0 always \s,\s 6-0 # context "\eb"[]$l"\ee" @56 # context "\eb"[]","$l"\ee" @56 pass2 @1b-12 ? pass2 @1b-15 ? pass2 @1b-12-4-4 @4 liblouis-2.5.3/tables/mt.ctb0000664000175000017500000001075512161041546012662 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2009 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Maltese # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 # SPACE punctuation ! 235 # EXCLAMATION MARK punctuation " 2356 # QUOTATION MARK punctuation ' 3 # APOSTROPHE punctuation ( 236 # LEFT PARENTHESIS punctuation ) 356 # RIGHT PARENTHESIS punctuation , 2 # COMMA punctuation - 36 # HYPHEN-MINUS punctuation . 256 # FULL STOP include digits8Dots.uti punctuation : 25 # COLON punctuation ; 23 # SEMICOLON punctuation ? 236 # QUESTION MARK uppercase A 17 # LATIN CAPITAL LETTER A uppercase B 127 # LATIN CAPITAL LETTER B uppercase C 147 # LATIN CAPITAL LETTER C uppercase D 1457 # LATIN CAPITAL LETTER D uppercase E 157 # LATIN CAPITAL LETTER E uppercase F 1247 # LATIN CAPITAL LETTER F uppercase G 12457 # LATIN CAPITAL LETTER G uppercase H 1257 # LATIN CAPITAL LETTER H uppercase I 247 # LATIN CAPITAL LETTER I uppercase J 134567 # LATIN CAPITAL LETTER J uppercase K 137 # LATIN CAPITAL LETTER K uppercase L 1237 # LATIN CAPITAL LETTER L uppercase M 1347 # LATIN CAPITAL LETTER M uppercase N 13457 # LATIN CAPITAL LETTER N uppercase O 1357 # LATIN CAPITAL LETTER O uppercase P 12347 # LATIN CAPITAL LETTER P uppercase Q 123457 # LATIN CAPITAL LETTER Q uppercase R 12357 # LATIN CAPITAL LETTER R uppercase S 2347 # LATIN CAPITAL LETTER S uppercase T 23457 # LATIN CAPITAL LETTER T uppercase U 1367 # LATIN CAPITAL LETTER U uppercase V 12367 # LATIN CAPITAL LETTER V uppercase W 24567 # LATIN CAPITAL LETTER W uppercase X 13467 # LATIN CAPITAL LETTER X uppercase Y 134567 # LATIN CAPITAL LETTER Y uppercase Z 13567 # LATIN CAPITAL LETTER Z lowercase a 1 # LATIN SMALL LETTER A lowercase b 12 # LATIN SMALL LETTER B lowercase c 14 # LATIN SMALL LETTER C lowercase d 145 # LATIN SMALL LETTER D lowercase e 15 # LATIN SMALL LETTER E lowercase f 124 # LATIN SMALL LETTER F lowercase g 1245 # LATIN SMALL LETTER G lowercase h 125 # LATIN SMALL LETTER H lowercase i 24 # LATIN SMALL LETTER I lowercase j 13456 # LATIN SMALL LETTER J lowercase k 13 # LATIN SMALL LETTER K lowercase l 123 # LATIN SMALL LETTER L lowercase m 134 # LATIN SMALL LETTER M lowercase n 1345 # LATIN SMALL LETTER N lowercase o 135 # LATIN SMALL LETTER O lowercase p 1234 # LATIN SMALL LETTER P lowercase q 12345 # LATIN SMALL LETTER Q lowercase r 1235 # LATIN SMALL LETTER R lowercase s 234 # LATIN SMALL LETTER S lowercase t 2345 # LATIN SMALL LETTER T lowercase u 136 # LATIN SMALL LETTER U lowercase v 1236 # LATIN SMALL LETTER V lowercase w 2456 # LATIN SMALL LETTER W lowercase x 1346 # LATIN SMALL LETTER X lowercase y 13456 # LATIN SMALL LETTER Y lowercase z 1356 # LATIN SMALL LETTER Z punctuation \x00a0 0 # NO-BREAK SPACE uppercase \x010a 167 # LATIN CAPITAL LETTER C WITH DOT ABOVE lowercase \x010b 16 # LATIN SMALL LETTER C WITH DOT ABOVE uppercase \x0120 2457 # LATIN CAPITAL LETTER G WITH DOT ABOVE lowercase \x0121 245 # LATIN SMALL LETTER G WITH DOT ABOVE uppercase \x0126 1567 # LATIN CAPITAL LETTER H WITH STROKE lowercase \x0127 156 # LATIN SMALL LETTER H WITH STROKE uppercase \x017b 13567 # LATIN CAPITAL LETTER Z WITH DOT ABOVE lowercase \x017c 1356 # LATIN SMALL LETTER Z WITH DOT ABOVE space \x2002 0 # EN SPACE space \x2003 0 # EM SPACE space \x2004 0 # THREE-PER-EM SPACE space \x2005 0 # FOUR-PER-EM SPACE space \x2006 0 # SIX-PER-EM SPACE punctuation \x2007 0 # FIGURE SPACE space \x2008 0 # PUNCTUATION SPACE space \x2009 0 # THIN SPACE space \x200a 0 # HAIR SPACE punctuation \x202f 0 # NARROW NO-BREAK SPACE space \x205f 0 # MEDIUM MATHEMATICAL SPACE liblouis-2.5.3/tables/fr-bfu-g2.ctb0000664000175000017500000015032012161041546013722 00000000000000# liblouis: Unified French Grade 2 Table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Auteurs: # # Nicolas Pitre # Michel such # # Référence: # # Index de l'abrégé orthographique français étendu, lecture et écriture # Révision 1993 # Service de production Braille, Institut Nazareth et Louis-Braille # Longueuil (Québec) # Contracted Unified French Table # -------------------------------- include fr-bfu-comp6.utb ### ### 1. Assemblages de lettres représentés par un seul symbole, ### et finales représentées par deux ou trois symboles; ### punctuation ' 6 so the line below compiles letsign 6 noletsignafter '.\X2019\X0092 sign ^ 4 so the line: "before con always ar 4" compiles sign ~ 5 class voy aeiouyéàèùâêîôûëïüAEIOUYÉÀÈÙÂÊËïü class con bcçdfghjklmnpqrstvwxzBCÇDFGHJKLMNPQRSTVWXZ class bmp bmpBMP class apost '\X2019\X0092 endword able 45 endword ables 45-234 always ai 34 endword ait 146 endword aits 146-234 before con always an 2 endword ant 1456 endword ants 1456-234 before con always ar 4 endword ar 4 endword ation 16 endword ations 16-234 always au 13 always bl 45 before voy always br 23 always ch 12356 before voy always cl 146 before con begword com 36 before con always con 25 prfword cons 14-346-234 before voy always cr 25 before con begword dis 256 before voy always dr 1456 endword elle 456 endword elles 456-234 before con always em 345 before con always en 26 endword en 26 endword ent 126 endword ents 126-234 before con midword er 236 endword er 236 begword es 156 endword es 156 word eu 15-136 always eu 5 before con always eur 46 endword eur 46 before con always ex 1346 endword ez 1356 before voy always fl 126 before voy always fr 16 before voy always gl 345 always gn 2356 before voy always gr 12456 always ien 256 always ieu 6 before bmp begword im 246 begword in 35 before con always in 35 endword in 35 before con always ion 3456 endword ion 3456 endword ition 246 endword itions 246-234 before voy after voy always ll 456 always oi 23456 before con always om 2456 endword om 2456 before con always on 346 endword on 346 before con always or 56 endword or 56 always ou 1256 before con always our 12346 endword our 12346 before voy always pl 1246 before voy always pr 235 before con always pro 235 always qu 12345 endword que 12345 endword ques 12345-234 before con begword re 3 before voy after voy always ss 2346 before voy always tr 356 before con begword trans 356 before voy after voy always tt 2456 before con always ui 23 endword uin 136-35 endword uins 136-35-234 endword ablement 45-134 endword ablements 45-134-234 endword bilité 12-123-2345 endword bilités 12-123-2345-234 endword ellement 456-134 endword ellements 456-134-234 endword logie 123-1245 endword logies 123-1245-234 endword quement 12345-134 endword quements 12345-134-234 endword tement 2345-134 endword tements 2345-134-234 endword ttement 2345-2345-134 endword ttements 2345-2345-134-234 endword vement 1236-134 endword vements 1236-134-234 before con always ain 1-35 endword ain 1-35 before con always oin 135-35 endword oin 135-35 before con begword recom 3-36 before con begword redis 3-256 before con begword retrans 3-356 before con begword incom 35-36 before con begword indis 35-256 before con begword intrans 35-356 begword ines 35-156 prfword tient 2345-256-2345 prfword vient 1236-256-2345 endword ient 24-126 word balbutient 12-1-123-12-136-2345-24-126 word initient 35-24-2345-24-126 word dévient 145-123456-1236-24-126 word envient 1235-26-1236-24-126 sufword bleu 45-15-136 before con always brui 12-1235-23 endword clait 14-123-146 before voy always concr 14-346-25 endword drant 145-1235-1456 always drô 145-1235-1456 endword en? 15-1345-26 always ien. 24-26-256 before voy always propr 235-135-235 before con begword ren 1235-26 always ssè 234-234-2346 word (en 236-15-1345 word (la 236-123-1 ### ### 2. Mots représentés par un seul symbole ### word a 1 word à 12356 word ai 34 word au 13 word aux 13-1346 word bien 12 word biens 12-234 word ce 14 word celui 36 word cet 146 word dans 1456 word de 145 word dès 256 word du 236 word elle 1356 word elles 1356-234 word en 26 word est 156 word et 23456 word été 2356 word étés 2356-234 word faire 124 word grand 12456 word grands 12456-234 word il 24 word ils 24-234 word je 245 word la 3 word le 123 word les 345 word lui 3456 word mais 1346 word me 134 word même 126 word mêmes 126-234 word ne 1345 word nous 135 word on 346 word ou 1256 word par 1234 word plus 1246 word pour 12346 word puis 235 word que 12345 word qui 1245 word quoi 123456 word rien 1235 word riens 1235-234 word sans 2346 word se 234 word si 35 word son 246 word sons 246-234 word sous 356 word sur 125 word te 2345 word tous 2456 word tout 16 word un 136 word uns 136-234 word vous 1236 word y 13456 begword c' 14-3 begword d' 145-3 begword j' 245-3 begword l' 123-3 begword m' 134-3 begword n' 1345-3 begword s' 234-3 begword t' 2345-3 ### ### 3. Mots représentés par deux ou plusieurs symboles ### word absolu 1-12 word absolus 1-12-234 contraction abs 1-12-234 word absolue 1-12-15 word absolues 1-12-156 word absolument 1-12-134 prfword action 1-3456 prfword actions 1-3456-234 prfword actionnaire 1-3456-1235 prfword actionnaires 1-3456-1235-234 word affaire 1-124-124 word affaires 1-124-124-234 word afin 1-124 word ailleurs 34-136 word ainsi 1-24 word alors 1-123 word amour 1-134 contraction am 1-134 word amours 1-134-234 word amoureuse 1-134-234-15 word amoureuses 1-134-234-156 word amoureusement 1-134-234-134 word amoureux 1-134-1346 word apparemment 1-1234-134 word apparence 1-1234-14 word apparences 1-1234-14-234 word apparent 1-1234 word apparents 1-1234-234 word apparente 1-1234-15 word apparentes 1-1234-156 word après 1-235 word assez 1-1356 word attentif 1-2345-124 word attentifs 1-2345-124-234 word attention 1-2345 word attentions 1-2345-234 word attentive 1-2345-1236 word attentives 1-2345-1236-234 word attentivement 1-2345-1236-134 word aucun 13-14 word aucune 13-1345 word aucunement 13-1345-134 word auparavant 13-1234 word auprès 13-235 word auquel 13-12345-123 word aussi 13-234 word aussitôt 13-2345 word autour 13-1235 word autre 13-356 word autres 13-356-234 word autrefois 13-124 word autrement 13-356-134 word auxquelles 13-1346-12345-123-123-234 word auxquels 13-1346-12345-123-234 word avance 1-1236-14 word avances 1-1236-14-234 word avancement 1-1236-14-134 word avant 1-1236 word avants 1-1236-234 word avantage 1-1236-1245 contraction avg 1-1236-1245 word avantages 1-1236-1245-234 word avantageuse 1-1236-1245-234-15 word avantageuses 1-1236-1245-234-156 word avantageusement 1-1236-1245-234-134 word avantageux 1-1236-1245-1346 word avec 1-14 word avoir 1-1235 word avoirs 1-1235-234 word ayant 1-13456 word beaucoup 12-14 word besogne 12-2356 word besognes 12-2356-234 word besogneuse 12-2356-234-15 word besogneuses 12-2356-234-156 word besogneusement 12-2356-234-134 word besogneux 12-2356-1346 word besoin 12-35 word besoins 12-35-234 prfword bête 12-126 prfword bêtes 12-126-234 prfword bêtement 12-126-134 prfword bêtements 12-126-134-234 word bienfaisance 12-124-14 word bienfaisances 12-124-14-234 word bienfait 12-124 contraction bf 12-124 word bienfaits 12-124-234 word bienfaiteur 12-124-46 word bienfaiteurs 12-124-46-234 word bienheureuse 12-125-234-15 word bienheureuses 12-125-234-156 word bienheureux 12-125-1346 word bientôt 12-2345 word bienveillance 12-1236-14 word bienveillances 12-1236-14-234 word bienveillant 12-1236 word bienveillants 12-1236-234 word bienveillante 12-1236-15 word bienveillantes 12-1236-156 word bizarre 12-1356 word bizarres 12-1356-234 word bizarrement 12-1356-134 word bonheur 12-125 word bonheurs 12-125-234 word bonjour 12-245 word bonjours 12-245-234 word bonne 12-1345 word bonnes 12-1345-234 word bonnement 12-1345-134 word bonté 12-135 word bontés 12-135-234 word boulevard 12-145 contraction bd 12-145 word boulevards 12-145-234 word braille 23-123 word brailles 23-123-234 word branchage 23-12356-1245 word branchages 23-12356-1245-234 word branche 23-12356 word branches 23-12356-234 word branchement 23-12356-134 word branchements 23-12356-134-234 word brave 23-1236 word braves 23-1236-234 word bravement 23-1236-134 word bruit 23-2345 word bruits 23-2345-234 word brusque 23-12345 word brusques 23-12345-234 word brusquement 23-12345-134 word budget 12-1245 word budgets 12-1245-234 word budgétaire 12-1245-1235 word budgétaires 12-1245-1235-234 word budgétairement 12-1245-1235-134 word caractère 14-2346 word caractères 14-2346-234 word caractéristique 14-123456-12345 word caractéristiques 14-123456-12345-234 word ceci 14-14 word cela 14-1 contraction ca 14-1 word celle 14-123 word celles 14-123-234 word celui-ci 36-36-14-24 word celui-là 36-36-123-12356 word cependant 14-1234 contraction cp 14-1234 word certain 14-35 word certains 14-35-234 prfword certaine 14-1345 prfword certaines 14-1345-234 prfword certainement 14-1345-134 word certes 14-236 prfword certitude 14-236-145 prfword certitudes 14-236-145-234 word ces 14-234 word cette 14-2345 word ceux 14-1346 contraction cx 14-1346 word chacun 12356-14 word chacune 12356-1345 word chagrin 12356-12456 word chagrins 12356-12456-234 word chaleur 12356-123 word chaleurs 12356-123-234 word chaleureuse 12356-123-234-15 word chaleureuses 12356-123-234-156 word chaleureusement 12356-123-234-134 word chaleureux 12356-123-1346 word champ 12356-1234 word champs 12356-1234-234 prfword change 12356-1245 prfword changes 12356-1245-234 word changement 12356-1245-134 prfword changeur 12356-1245-46 prfword changeurs 12356-1245-46-234 prfword changeuse 12356-1245-234-15 prfword changeuses 12356-1245-234-156 word chaque 12356-12345 word charitable 12356-2345-45 word charitables 12356-2345-45-234 word charitablement 12356-2345-45-134 word charité 12356-2345 word charités 12356-2345-234 word chaud 12356-145 word chauds 12356-145-234 word chaude 12356-145-15 word chaudes 12356-145-156 word chaudement 12356-145-134 word chemin 12356-134 word chemins 12356-134-234 word chère 12356-2346 word chères 12356-2346-234 word chèrement 12356-2346-134 word chez 12356-1356 word chiffrage 12356-124-1245 word chiffrages 12356-124-1245-234 word chiffre 12356-124 word chiffres 12356-124-234 prfword chiffrement 12356-124-134 prfword chiffrements 12356-124-134-234 word choeur 12356-1235 word choeurs 12356-1235-234 word choix 12356-1346 word chose 12356-234 word choses 12356-234-234 word circonstance 14-25-14 word circonstances 14-25-14-234 word circonstanciel 14-25-14-123 word circonstanciels 14-25-14-123-234 word circonstancielle 14-25-14-123-123 word circonstancielles 14-25-14-123-123-234 word civil 14-1236 contraction cv 14-1236 word civils 14-1236-234 contraction cvs 14-1236-234 word civile 14-1236-15 word civiles 14-1236-156 word civilement 14-1236-134 word civilisation 14-1236-16 word civilisations 14-1236-16-234 word civilité 14-1236-2345 word civilités 14-1236-2345-234 word client 146-256-2345 word coeur 14-1235 word coeurs 14-1235-234 contraction crs 14-1235-234 word combien 14-12 contraction cb 14-12 word comme 14-134 contraction cm 14-134 word commencement 36-134 word commencements 36-134-234 word comment 14-26 word commentaire 14-26-1235 word commentaires 14-26-1235-234 word commentateur 14-26-46 word commentateurs 14-26-46-234 word commère 36-134-2346 word commères 13-134-2346-234 word commun 36-1345 word communs 36-1345-234 word commune 36-1345-15 word communes 36-1345-156 word communal 36-1345-123 word communale 36-1345-123-15 word communales 36-1345-123-156 word communautaire 36-1345-2345-1235 word communautaires 36-1345-2345-1235-234 word communauté 36-1345-2345 word communautés 36-1345-2345-234 word communaux 36-1345-1346 word communément 36-1345-134 word communion 36-1345-3456 word communions 36-1345-3456-234 word compère 36-1234-2346 word compères 36-1234-2346-234 word complément 36-1246-134 word compléments 36-1246-134-234 word complémentaire 36-1246-134-1235 word complémentaires 36-1246-134-1235-234 prfword complet 36-1246 prfword complets 36-1246-234 prfword complète 36-2345 prfword complètes 36-2345-234 prfword complètement 36-2345-134 word conclusion 25-14 word conclusions 25-14-234 word condition 25-145 word conditions 25-145-234 prfword conditionnel 25-145-123 prfword conditionnels 25-145-123-234 prfword conditionnelle 25-145-123-123 prfword conditionnelles 25-145-123-123-234 prfword conditionnellement 25-145-123-134 word confiance 25-124-14 word confiances 25-124-14-234 word confiant 25-124 word confiants 25-124-234 word confiante 25-124-15 word confiantes 25-124-156 word congrès 25-12456 < prfword connaissance 25-1345-14 prfword connaissances 25-1345-14-234 prfword connaître 25-1345 prfword consciemment 25-234-134 prfword conscience 25-234-14 prfword consciences 25-234-14-234 word consciencieuse 25-234-14-234-15 word consciencieuses 25-234-14-234-156 word consciencieusement 25-234-14-234-134 word consciencieux 25-234-14-1346 prfword conscient 25-234 prfword conscients 25-234-234 prfword consciente 25-234-15 prfword conscientes 25-234-156 word conséquemment 14-12345-134 prfword conséquence 14-12345-14 prfword conséquences 14-12345-14-234 prfword conséquent 14-12345 prfword conséquents 14-12345-234 prfword conséquente 14-12345-15 prfword conséquentes 14-12345-156 word considérable 14-145 word considérables 14-145-234 contraction cd word considérablement 14-145-134 contraction cds word considération 14-145-16 word considérations 14-145-16-234 word contraire 14-356 word contraires 14-356-234 word contrairement 14-356-134 prfword contre 14-356 prfword contres 14-356-234 word conversation 25-1236 word conversations 25-1236-234 word côté 14-1456 word côtés 14-1456-234 word couple 14-1246 word couples 14-1246-234 word courage 14-1245 word courageuse 14-1245-234-15 word courageuses 14-1245-234-156 word courageusement 14-1245-234-134 word courageux 14-1245-1346 word danger 145-1245 word dangers 145-1245-234 word dangeureuse 145-1245-234-15 word dangeureuses 145-1245-234-156 word dangeureusement 145-1245-234-134 word dangeureux 145-1245-1346 word davantage 145-1 word debout 145-12 contraction db 145-12 word dedans 145-145 word défaut 145-123456-124-2345 word défauts 145-123456-124-2345-234 word degré 145-12456 word degrés 145-12456-234 word dehors 145-125 word déjà 145-245 prfword demain 145-134 prfword demains 145-134-234 word depuis 145-1234 word dernier 145-1345 word derniers 145-1345-234 word dernière 145-1235 word dernières 145-1235-234 word dernièrement 145-1235-134 word derrière 145-236 word derrières 145-236-234 word des 145-234 word désormais 145-34 word desquels 145-234-12345-123-234 word desquelles 145-234-12345-123-123-234 word destin 145-35 word destins 145-35-234 prfword destinataire 145-35-1235 prfword destinataires 145-35-1235-234 word destination 145-35-16 word destinations 145-35-16-234 word devant 145-1236 word devants 145-1236-234 prfword différemment 145-345-134 prfword différence 145-26-14 prfword différences 145-26-14-234 prfword différent 145-26 prfword différents 145-26-234 prfword différente 145-26-15 prfword différentes 145-26-156 word difficile 145-124 word difficiles 145-124-234 word difficilement 145-124-134 word difficulté 145-124-2345 word difficultés 145-124-2345-234 prfword digne 145-2356 prfword dignes 145-2356-234 prfword dignement 145-2356-134 word dignitaire 145-2356-2345-1235 word dignitaires 145-2356-2345-1235-234 prfword dignité 145-2356-2345 prfword dignités 145-2356-2345-234 word discours 256-14 word dispositif 256-1234-124 word dispositifs 256-1234-124-234 prfword disposition 256-1234 prfword dispositions 256-1234-234 word distance 256-2345-14 word distances 256-2345-14-234 word distant 256-2345 word distants 256-2345-234 word distante 256-2345-15 word distantes 256-2345-156 word donc 145-14 word dont 145-2345 word douleur 145-123 word douleurs 145-123-234 word douloureuse 145-123-234-15 word douloureuses 145-123-234-156 word douloureusement 145-123-234-134 word douloureux 145-123-1346 word doute 145-1256 word doutes 145-1256-234 word duquel 145-12345-123 prfword effectif 15-124-124 prfword effectifs 15-124-124-234 prfword effective 15-124-1236 prfword effectives 15-124-1236-234 word effectivement 15-124-1236-134 word effet 15-124 word effets 15-124-234 word égal 123456-1245 word égale 123456-1245-15 word égales 123456-1245-156 word également 123456-1245-134 word égalitaire 123456-1245-2345-1235 word égalitaires 123456-1245-2345-1235-234 word égalité 123456-1245-2345 word égalités 123456-1245-2345-234 word égaux 123456-1245-1346 word élément 123456-123 word éléments 123456-123-234 word élémentaire 123456-123-1235 word élémentaires 123456-123-1235-234 word encore 26-14 word endroit 26-145 word endroits 26-145-234 word énergie 123456-1345 word énergies 123456-1345-234 word énergique 123456-1345-12345 word énergiques 123456-1345-12345-234 word énergiquement 123456-1345-12345-134 word enfin 26-124 word ennui 26-1345 word ennuis 26-1345-234 word ennuyeuse 26-1345-234-15 word ennuyeuses 26-1345-234-156 word ennuyeux 26-1345-1346 word enquête 26-12345 word enquêtes 26-12345-234 word enquêteur 26-12345-46 word enquêteurs 26-12345-46-234 word enquêteuse 26-12345-234-15 word enquêteuses 26-12345-234-156 word ensemble 26-345 word ensembles 26-345-234 word ensuite 26-234 word entier 26-2345 word entiers 26-2345-234 word entière 26-1235 word entières 26-1235-234 word entièrement 26-1235-134 word environ 26-1236 word environs 26-1236-234 word espèce 156-1234 word espèces 156-1234-234 prfword espérance 156-1235-14 prfword espérances 156-1235-14-234 prfword espoir 156-1235 prfword espoirs 156-1235-234 word esprit 15-235 word esprits 15-235-234 word essentiel 156-123 word essentiels 156-123-234 word essentielle 156-123-123 word essentielles 156-123-123-234 word essentiellement 156-123-134 word étant 123456-2345 word être 126-356 word êtres 126-356-234 word événement 123456-1236 word événements 123456-1236-234 word éventualité 123456-1236-123-2345 word éventualités 123456-1236-123-2345-234 word éventuel 123456-1236-123 word éventuels 123456-1236-123-234 word éventuelle 123456-1236-123-123 word éventuelles 123456-1236-123-123-234 word éventuellement 123456-1236-123-134 word excellemment 1346-123-134 word excellence 1346-123-14 word excellences 1346-123-14-234 word excellent 1346-123 word excellents 1346-123-234 word excellente 1346-123-15 word excellentes 1346-123-156 word excès 1346-14 word excessif 1346-14-124 word excessifs 1346-14-124-234 word excessive 1346-14-1236 word excessives 1346-14-1236-234 word excessivement 1346-14-1236-134 word exercice 1346-236 word exercices 1346-236-234 prfword expérience 1346-1234 contraction xp 1346-1234 prfword expériences 1346-1234-234 word expérimental 1346-1234-123 word expérimentale 1346-1234-123-15 word expérimentales 1346-1234-123-156 word expérimentalement 1346-1234-123-134 word expérimentateur 1346-1234-46 word expérimentateurs 1346-1234-46-234 word expérimentation 1346-1234-16 word expérimentations 1346-1234-16-234 word expérimentaux 1346-1234-1346 prfword explicable 1346-1246-45 prfword explicables 1346-1246-45-234 word explicatif 1346-1246-124 word explicatifs 1346-1246-124-234 word explication 1346-1246 word explications 1346-1246-234 word explicative 1346-1246-1236 word explicatives 1346-1246-1236-234 prfword expressif 1346-235-124 prfword expressifs 1346-235-124-234 word expression 1346-235 word expressions 1346-235-234 prfword expressive 1346-235-1236 prfword expressives 1346-235-1236-234 prfword expressivement 1346-235-1236-134 prfword expressivité 1346-235-1236-2345 prfword expressivités 1346-235-1236-2345-234 word extérieur 1346-2345 word extérieurs 1346-2345-234 word extérieure 1346-2345-15 word extérieures 1346-2345-156 word extérieurement 1346-2345-134 word extrême 1346-356 word extrêmes 1346-356-234 word extrêmement 1346-356-134 word extrémité 1346-356-2345 word extrémités 1346-356-2345-234 word facile 124-14 word faciles 124-14-234 word facilement 124-14-134 word facilité 124-14-2345 word facilités 124-14-2345-234 word faubourg 124-12 word faubourgs 124-12-234 word faut 124-2345 word faute 124-2345-15 word fautes 124-2345-15-234 word fautif 124-2345-124 word fautifs 124-2345-124-234 word fautive 124-2345-1236 word fautives 124-2345-1236-234 prfword faveur 124-1236 prfword faveurs 124-1236-234 prfword favorable 124-1236-45 prfword favorables 124-1236-45-234 prfword favorablement 124-1236-45-134 word féminin 124-134-35 word féminins 124-134-35-234 word féminine 124-134-1345 word féminines 124-134-1345-234 word féminité 124-134-1345-2345 word féminités 124-134-1345-2345-234 word femme 124-134 contraction fm 124-134 word femmes 124-134-234 word fête 124-126 word fêtes 124-126-234 prfword fidèle 124-145 prfword fidèles 124-145-234 prfword fidèlement 124-145-134 prfword fidélité 124-145-2345 prfword fidélités 124-145-2345-234 prfword figuratif 124-1245-124 prfword figuratifs 124-1245-124-234 prfword figuration 124-1245-16 prfword figurations 124-1245-16-234 prfword figurative 124-1245-1236 prfword figuratives 124-1245-1236-234 prfword figure 124-1245 prfword figures 124-1245-234 word fille 124-123 word filles 124-123-234 word fils 124-234 word fonction 124-346 word fonctions 124-346-234 word fonctionnaire 124-346-1235 word fonctionnaires 124-346-1235-234 word fonctionnel 124-346-123 word fonctionnels 124-346-123-234 word fonctionnelle 124-346-123-123 word fonctionnelles 124-346-123-123-234 word fonctionnellement 124-346-123-134-134 prfword fonctionnement 124-346-134 prfword fonctionnements 124-346-134-234 prfword force 124-135 prfword forces 124-135-234 word forcément 124-135-134 prfword fortune 124-1345 contraction fn 124-1345 prfword fortunes 124-1345-234 prfword fraternel 124-1235-123 prfword fraternels 124-1235-123-234 prfword fraternelle 124-1235-123-123 prfword fraternelles 124-1235-123-123-234 prfword fraternellement 124-1235-123-134 prfword fraternisation 124-1235-16 prfword fraternisations 124-1235-16-234 prfword fraternité 124-1235-2345 prfword fraternités 124-1235-2345-234 word fréquemment 124-12345-134 prfword fréquence 124-12345-14 prfword fréquences 124-12345-14-234 word fréquent 124-12345 word fréquents 124-12345-234 word fréquente 124-12345-15 word fréquentes 124-12345-156 word fréquentation 124-12345-16 word fréquentations 124-12345-16-234 prfword frère 124-1235 prfword frères 124-1235-234 prfword garde 1245-145 prfword gardes 1245-145-234 word général 1245-1345 word générale 1245-1345-15 word générales 1245-1345-156 word généralement 1245-1345-134 word généralisation 1245-1345-16 word généralisations 1245-1345-16-234 word généralité 1245-1345-2345 word généralités 1245-1345-2345-234 word généraux 1245-1345-1346 word généreuse 1245-234-15 word généreuses 1245-234-156 word généreusement 1245-234-134 word généreux 1245-1346 word générosité 1245-234-2345 word générosités 1245-234-2345-234 word gloire 1245-1235 word gloires 1245-1235-234 word glorieuse 1245-1235-234-15 word glorieuses 1245-1235-234-156 word glorieusement 1245-1235-234-134 word glorieux 1245-1235-1346 word gouvernement 1245-1236 word gouvernements 1245-1236-234 word gouvernemental 1245-1236-123 word gouvernementale 1245-1236-123-15 word gouvernementales 1245-1236-123-156 word gouvernementaux 1245-1236-1346 word gouverneur 1245-1236-46 word gouverneurs 1245-1236-46-234 prfword grâce 12456-14 prfword grâces 12456-14-234 prfword gracieuse 12456-14-234-15 prfword gracieuses 12456-14-234-156 prfword gracieusement 12456-14-234-134 prfword gracieux 12456-14-1346 word grande 12456-145 word grandes 12456-145-234 word grandement 12456-145-134 word grandeur 12456-46 word grandeurs 12456-46-234 word grave 12456-1236 word graves 12456-1236-234 word gravement 12456-1236-134 word gravitation 12456-1236-2345-16 word gravitations 12456-1236-2345-16-234 word gravité 12456-1236-2345 word gravités 12456-1236-2345-234 word groupe 12456-1234 word groupes 12456-1234-234 prfword groupement 12456-1234-134 prfword groupements 12456-1234-134-234 word guère 1245-2346 word guerre 1245-236 word guerres 1245-236-234 word habitude 125-12 word habitudes 125-12-234 prfword habituel 125-12-123 prfword habituels 125-12-123-234 prfword habituelle 125-12-123-123 prfword habituelles 125-12-123-123-234 prfword habituellement 125-12-123-134 word hasard 125-145 contraction hd 125-145 word hasards 125-145-234 word hasardeuse 125-145-234-15 word hasardeuses 125-145-234-156 word hasardeux 125-145-1346 word hélas 125-123 word heure 125-1235 word heures 125-1235-234 word heureuse 125-234-15 word heureuses 125-234-156 word heureusement 125-234-134 word heureux 125-1346 word hier 125-236 prfword histoire 125-2345 prfword histoires 125-2345-234 prfword historique 125-2345-12345 prfword historiques 125-2345-12345-234 prfword historiquement 125-2345-12345-134 word hiver 125-1236 word hivers 125-1236-234 word hivernal 125-1236-123 word hivernale 125-1236-123-15 word hivernales 125-1236-123-156 word hivernaux 125-1236-1346 word hommage 125-1245 word hommages 125-1245-234 word homme 125-134 word hommes 125-134-234 prfword honnête 125-126 prfword honnêtes 125-126-234 prfword honnêtement 125-126-134 prfword honnêteté 125-126-2345 prfword honnêtetés 125-126-2345-234 prfword honneur 125-1345 prfword honneurs 125-1345-234 word honorabilité 125-1345-12-123-2345 word honorabilités 125-1345-12-123-2345-234 word honorable 125-1345-45 word honorables 125-1345-45-234 word honorablement 125-1345-45-134 word honoraire 125-1345-1235 word honoraires 125-1345-1235-234 word horaire 125-1235-1235 word horaires 125-1235-1235-234 word horizon 125-1356 word horizons 125-1356-234 word horizontal 125-1356-123 word horizontale 125-1356-123-15 word horizontales 125-1356-123-156 word horizontalement 125-1356-123-134 word horizontalité 125-1356-123-2345 word horizontalités 125-1356-123-2345-234 word horizontaux 125-1356-1346 word hypothèse 125-1234 contraction hp 125-1234 word hypothèses 125-1234-234 word hypothétique 125-1234-12345 word hypothétiques 125-1234-12345-234 word hypothétiquement 125-1234-12345-134 prfword humain 125-134-35 prfword humains 125-134-35-234 prfword humaine 125-134-1345 prfword humaines 125-134-1345-234 prfword humainement 125-134-1345-134 word humanitaire 125-134-1345-2345-1235 word humanitaires 125-134-1345-2345-1235-234 prfword humanité 125-134-1345-2345 prfword humanités 125-134-1345-2345-234 word idéal 24-145-123 word idéale 24-145-123-15 word idéales 24-145-123-156 word idéalement 24-145-123-134 word idéaux 24-145-1346 word idée 24-145 word idées 24-145-234 word image 24-1245 word images 24-1245-234 prfword imaginable 24-1245-45 prfword imaginables 24-1245-45-234 prfword imaginablement 24-1245-45-134 word imaginaire 24-1245-1235 word imaginaires 24-1245-1235-234 word imagination 24-1245-16 word imaginations 24-1245-16-234 word immédiat 24-134 word immédiats 24-134-234 word immédiate 24-134-15 word immédiates 24-134-156 word immédiatement 24-134-134 prfword impression 246-235 prfword impressions 246-235-234 word impressionnable 246-235-45 word impressionnables 246-235-45-234 word inégal 35-123456-1245 word inégale 35-123456-1245-15 word inégales 35-123456-1245-156 word inégalement 35-123456-1245-134 word inégalitaire 35-123456-1245-2345-1235 word inégalitaires 35-123456-1245-2345-1235-234 word inégalité 35-123456-1245-2345 word inégalités 35-123456-1245-2345-234 word inégaux 35-123456-1245-1346 word inexplicablement 35-1346-1246-134 word inférieur 35-124 word inférieurs 35-124-234 word inférieure 35-124-15 word inférieures 35-124-156 word inférieurement 35-124-134 word infériorité 35-124-2345 word infériorités 35-124-2345-234 word inquiet 35-12345 word inquiets 35-12345-234 word inquiète 35-2346 word inquiètes 35-2346-234 word inquiétude 35-12345-145 word inquiétudes 35-12345-145-234 word intelligemment 35-1245-134 prfword intelligence 35-1245-14 prfword intelligences 35-1245-14-234 prfword intelligent 35-1245 prfword intelligents 35-1245-234 prfword intelligente 35-1245-15 prfword intelligentes 35-1245-156 word intérieur 35-2345 word intérieurs 35-2345-234 word intérieure 35-2345-15 word intérieures 35-2345-156 word intérieurement 35-2345-134 word jadis 245-145 word jamais 245-134 word jeune 245-1345 word jeunes 245-1345-234 word jour 245-1235 word jours 245-1235-234 word journal 245-1235-123 word journaux 245-1235-1346 word joyeuse 245-234-15 word joyeuses 245-234-156 word joyeusement 245-234-134 word joyeux 245-1346 prfword juge 245-1245 prfword juges 245-1245-234 word jugement 245-1245-134 word jugements 245-1245-134-234 word jusque 245-12345 prfword juste 245-2345 prfword justes 245-2345-234 prfword justement 245-2345-134 prfword justice 245-14 prfword justices 245-14-234 word laquelle 123-123-123 prfword lecture 123-1235 prfword lectures 123-1235-234 word lequel 123-123 word lesquelles 123-123-123-234 word lesquels 123-123-234 word lettre 123-356 word lettres 123-356-234 word libéral 123-12-123 word libérale 123-12-123-15 word libérales 123-12-123-156 word libéralement 123-12-123-134 word libéralité 123-12-123-2345 word libéralités 123-12-123-2345-234 word libérateur 123-12-46 word libérateurs 123-12-46-234 prfword libération 123-12-16 prfword libérations 123-12-16-234 word libéraux 123-12-1346 word liberté 123-12-2345 word libertés 123-12-2345-234 word libre 123-12 word libres 123-12-234 word librement 123-12-134 prfword ligne 123-2356 prfword lignes 123-2356-234 word livre 123-1236 word livres 123-1236-234 prfword logique 123-1245-12345 prfword logiques 123-1245-12345-234 prfword logiquement 123-1245-12345-134 word loin 123-1345 word loins 123-1345-234 word lointain 123-1345-35 word lointains 123-1345-35-234 word lointaine 123-1345-1345 word lointaines 123-1345-1345-234 word lointainement 123-1345-134 word longtemps 123-2345 word lorsque 123-12345 word lourd 123-145 word lourds 123-145-234 word lourde 123-145-15 word lourdes 123-145-156 word lourdement 123-145-134 word lourdeur 123-145-46 word lourdeurs 123-145-46-234 word lumière 123-134 word lumières 123-134-234 word lumineuse 123-134-234-15 word lumineuses 123-134-234-156 word lumineusement 123-134-234-134 word lumineux 123-134-1346 word luminosité 123-134-234-2345 word luminosités 123-134-234-2345-234 word madame 134-145 word mademoiselle 134-134 word magnificence 134-2356-14 word magnificences 134-2356-14-234 word magnifique 134-2356 word magnifiques 134-2356-234 word magnifiquement 134-2356-134 word maintenant 134-2345 word malgré 134-12456 word malheur 134-125 word malheurs 134-125-234 word malheureuse 134-125-234-15 word malheureuses 134-125-234-156 word malheureusement 134-125-234-134 word malheureux 134-125-1346 word manière 134-1345 word manières 134-1345-234 word mauvais 134-1236 word mauvaise 134-1236-15 word mauvaises 134-1236-156 word meilleur 134-123 word meilleurs 134-123-234 word meilleure 134-123-15 word meilleures 134-123-156 word merci 134-14 word mercis 134-14-234 word mère 134-2346 word mères 134-2346-234 word mes 134-234 word mesdames 134-145-234 word mesdemoiselles 134-134-234 word messieurs 134-1235-234 prfword mettre 134-356 word mieux 134-1346 prfword mission 134-3456 prfword missions 134-3456-234 prfword missionnaire 134-3456-1235 prfword missionnaires 134-3456-1235-234 prfword mobile 134-12 prfword mobiles 134-12-234 prfword mobilisation 134-12-16 prfword mobilisations 134-12-16-234 prfword mobilité 134-12-2345 prfword mobilités 134-12-2345-234 word moins 134-35 word moment 134-26 word moments 134-26-234 word momentanément 134-26-134 word monsieur 134-1235 word multiple 134-1246 word multiples 134-1246-234 prfword multiplicateur 134-1246-46 prfword multiplicateurs 134-1246-46-234 prfword multiplication 134-1246-16 prfword multiplications 134-1246-16-234 word multiplicité 134-1246-2345 word multiplicités 134-1246-2345-234 word musique 134-12345 word musiques 134-12345-234 word mystère 134-13456 word mystères 134-13456-234 word mystérieuse 134-13456-234-15 word mystérieuses 134-13456-234-156 word mystérieusement 134-13456-234-134 word mystérieux 134-13456-1346 word naguère 1345-1245 word nation 1345-16 word nations 1345-16-234 word national 1345-16-123 word nationale 1345-16-123-15 word nationales 1345-16-123-156 word nationalité 1345-16-123-2345 word nationalités 1345-16-123-2345-234 word nationaux 1345-16-1346 word nature 1345-2345 word natures 1345-2345-234 word naturel 1345-2345-123 word naturels 1345-2345-123-234 word naturelle 1345-2345-123-123 word naturelles 1345-2345-123-123-234 word naturellement 1345-2345-123-134 word néanmoins 1345-134 word nécessaire 1345-14 word nécessaires 1345-14-234 word nécessairement 1345-14-134 word nécessité 1345-14-2345 word nécessités 1345-14-2345-234 word nécessiteuse 1345-14-2345-234-15 word nécessiteuses 1345-14-2345-234-156 word nécessiteux 1345-14-2345-1346 prfword nombre 1345-12 prfword nombres 1345-12-234 word nombreuse 1345-12-234-15 word nombreuses 1345-12-234-156 word nombreux 1345-12-1346 word nos 1345-234 word notre 1345-356 word nôtre 1345-1456 word nôtres 1345-1456-234 prfword nouveau 1345-1236 prfword nouveaux 1345-1236-1346 word nouveauté 1345-1236-2345 word nouveautés 1345-1236-2345-234 word nouvel 1345-123 word nouvelle 1345-123-123 word nouvelles 1345-123-123-234 prfword nouvellement 1345-123-134 word objectif 135-245-124 word objectifs 135-245-124-234 word objection 135-245-3456 word objections 135-245-3456-234 word objective 135-245-1236 word objectives 135-245-1236-234 word objectivement 135-245-1236-134 word objectivité 135-245-1236-2345 word objectivités 135-245-1236-2345-234 word objet 135-245 word objets 135-245-234 word observateur 135-12-46 word observateurs 135-12-46-234 word observation 135-12 word observations 135-12-234 word occasion 135-14 word occasions 135-14-234 word occasionnel 135-14-123 word occasionnels 135-14-123-234 word occasionnelle 135-14-123-123 word occasionnelles 135-14-123-123-234 word occasionnellement 135-14-123-134 word oeuvre 246-1236 word oeuvres 246-1236-234 word office 135-124 word offices 135-124-234 word officiel 135-124-123 word officiels 135-124-123-234 word officielle 135-124-123-123 word officielles 135-124-123-123-234 word officiellement 135-124-123-134 word officieuse 135-124-234-15 word officieuses 135-124-234-156 word officieusement 135-124-234-134 word officieux 135-124-1346 word opinion 135-1234 word opinions 135-1234-234 prfword ordinaire 56-145 prfword ordinaires 56-145-234 prfword ordinairement 56-145-134 word originaire 135-1245-1235 word originaires 135-1245-1235-234 word originairement 135-1245-1235-134 word original 135-1245-123 word originale 135-1245-123-15 word originales 135-1245-123-156 word originalement 135-1245-123-134 word originalité 135-1245-123-2345 word originalités 135-1245-123-2345-234 word originaux 135-1245-1346 word origine 135-1245 word origines 135-1245-234 word outrage 1256-356-1245 word outrages 1256-356-1245-234 word outrageuse 1256-356-1245-234-15 word outrageuses 1256-356-1245-234-156 word outrageusement 1256-356-1245-234-134 word outrageux 1256-356-1245-1346 word outre 1256-356 word ouvrage 1256-1245 word ouvrages 1256-1245-234 word ouvrier 1256-1236 word ouvriers 1256-1236-234 word ouvrière 1256-2346 word ouvrières 1256-2346-234 word parfois 1234-124 word parmi 1234-134 word parole 1234-1235 word paroles 1234-1235-234 word particularité 1234-1235-123-2345 word particularités 1234-1235-123-2345-234 word particulier 1234-123 word particuliers 1234-123-234 word particulière 1234-123-1235 word particulières 1234-123-1235-234 word particulièrement 1234-123-1235-134 word partout 1234-1 word pas 1234-234 contraction ps 1234-234 word pauvre 1234-1236 word pauvres 1234-1236-234 word pauvrement 1234-1236-134 word pauvreté 1234-1236-2345 word pauvretés 1234-1236-2345-234 word pendant 1234-145 word pensée 1234-26 word pensées 1234-26-234 word pensif 1234-26-124 word pensifs 1234-26-124-234 word pensive 1234-26-1236 word pensives 1234-26-1236-234 word pensivement 1234-26-1236-134 word père 1234-2346 word pères 1234-2346-234 word personnage 1234-1345-1245 word personnages 1234-1345-1245-234 word personnalité 1234-1345-123-2345 word personnalités 1234-1345-123-2345-234 word personne 1234-1345 word personnes 1234-1345-234 word personnel 1234-1345-123 word personnels 1234-1345-123-234 word personnelle 1234-1345-123-123 word personnelles 1234-1345-123-123-234 word personnellement 1234-1345-123-134 word petit 1234-15 word petits 1234-15-234 word petite 1234-15-15 word petites 1234-15-156 word peuple 1234-1246 word peuples 1234-1246-234 prfword peuplement 1234-1246-134 prfword peuplements 1234-1246-134-234 prfword place 1246-14 prfword places 1246-14-234 prfword placement 1246-14-134 prfword placements 1246-14-134-234 prfword plaisir 1246-1235 prfword plaisirs 1246-1235-234 word plusieurs 1246-234 word plutôt 1246-2345 word point 1234-2345 word points 1234-2345-234 word pointe 1234-2345-15 word pointes 1234-2345-15-234 word populaire 1234-1234-1235 word populaires 1234-1234-1235-234 word populairement 1234-1234-1235-134 word popularité 1234-1234-1235-2345 word popularités 1234-1234-1235-2345-234 prfword population 1234-1234 prfword populations 1234-1234-234 word populeuse 1234-1234-234-15 word populeuses 1234-1234-234-156 word populeux 1234-1234-1346 prfword possibilité 1234-12-2345 prfword possibilités 1234-12-2345-234 prfword possible 1234-12 prfword possibles 1234-12-234 prfword possibilité 1234-12-2345 prfword possibilités 1234-12-2345-234 word pourquoi 1234-23456 word pourtant 1234-135 prfword praticable 235-2345-45 prfword praticables 235-2345-45-234 word pratique 235-2345 word pratiques 235-2345-234 word pratiquement 235-2345-134 word premier 235-134 word premiers 235-134-234 word première 235-1235 word premières 235-1235-234 word premièrement 235-1235-134 word près 235-234 word presque 235-12345 word preuve 235-1236 word preuves 235-1236-234 word primitif 235-134-124 word primitifs 235-134-124-234 word primitive 235-134-1236 word primitives 235-134-1236-234 word primitivement 235-134-1236-134 word principal 235-14-123 word principale 235-14-123-15 word principales 235-14-123-156 word principalement 235-14-123-134 word principaux 235-14-1346 word principe 235-14 word principes 235-14-234 word prix 235-1346 prfword probabilité 235-12-2345 prfword probabilités 235-12-2345-234 prfword probable 235-12 prfword probables 235-12-234 prfword probablement 235-12-134 word prochain 235-12356 word prochains 235-12356-234 word prochaine 235-1345 word prochaines 235-1345-234 word prochainement 235-1345-134 word producteur 235-145-46 word producteurs 235-145-46-234 prfword productif 235-145-124 prfword productifs 235-145-124-234 prfword production 235-145-3456 prfword productions 235-145-3456-234 prfword productive 235-145-1236 prfword productives 235-145-1236-234 prfword productivement 235-145-1236-134 prfword productivité 235-145-1236-2345 prfword productivités 235-145-1236-2345-234 word produit 235-145 word produits 235-145-234 word profit 235-124 word profits 235-124-234 word profitable 235-124-45 word profitables 235-124-45-234 word profitablement 235-124-45-134 word profiteur 235-124-46 word profiteurs 235-124-46-234 word profiteuse 235-124-234-15 word profiteuses 235-124-234-156 word progrès 235-12456 word progressif 235-12456-124 word progressifs 235-12456-124-234 word progression 235-12456-3456 word progressions 235-12456-3456-234 word progressive 235-12456-1236 word progressives 235-12456-1236-234 word progressivement 235-12456-1236-134 word progressivité 235-12456-1236-2345 word progressivités 235-12456-1236-2345-234 word projecteur 235-245-46 word projecteurs 235-245-46-234 word projection 235-245-3456 word projections 235-245-3456-234 word projet 235-245 word projets 235-245-234 prfword proportion 235-1234 prfword proportions 235-1234-234 prfword proportionnalité 235-1234-123-2345 prfword proportionnalités 235-1234-123-2345-234 prfword proportionnel 235-1234-123 prfword proportionnels 235-1234-123-234 prfword proportionnelle 235-1234-123-123 prfword proportionnelles 235-1234-123-123-234 prfword proportionnellement 235-1234-123-134 word proposition 235-246 word propositions 235-246-234 word puisque 1234-12345 prfword puissance 1234-14 contraction pc 1234-14 prfword puissances 1234-14-234 word qualitatif 12345-123-2345-124 word qualitatifs 12345-123-2345-124-234 word qualitative 12345-123-2345-1236 word qualitatives 12345-123-2345-1236-234 word qualitativement 12345-123-2345-1236-134 word qualité 12345-123-2345 word qualités 12345-123-2345-234 word quand 12345-145 word quant 12345-2345 word quantitatif 12345-2345-2345-124 word quantitatifs 12345-2345-2345-124-234 word quantitative 12345-2345-2345-1236 word quantitatives 12345-2345-2345-1236-234 word quantitativement 12345-2345-2345-1236-134 word quantité 12345-2345-2345 word quantités 12345-2345-2345-234 word quel 12345-123 word quels 12345-123-234 word quelle 12345-123-123 word quelles 12345-123-123-234 word quelconque 12345-14 word quelconques 12345-14-234 word quelque 12345-12345 word quelques 12345-12345-234 word quelquefois 12345-124 word question 12345-3456 word questions 12345-3456-234 word questionnaire 12345-3456-1235 word questionnaires 12345-3456-1235-234 word quiconque 12345-346 word quoique 12345-15 word raison 1235-346 word raisons 1235-346-234 prfword raisonnable 1235-346-45 prfword raisonnables 1235-346-45-234 prfword raisonnablement 1235-346-45-134 word raisonnement 1235-346-134 word raisonnements 1235-346-134-234 word rapport 1235-1234 word rapports 1235-1234-234 word rapporteur 1235-1234-46 word rapporteurs 1235-1234-46-234 word rapporteuse 1235-1234-234-15 word rapporteuses 1235-1234-234-156 word rare 1235-1235 word rares 1235-1235-234 word rarement 1235-1235-134 word rareté 1235-1235-2345 word raretés 1235-1235-2345-234 prfword réalisable 1235-123-45 prfword réalisables 1235-123-45-234 word réalisateur 1235-123-46 word réalisateurs 1235-123-46-234 word réalisation 1235-123-16 word réalisations 1235-123-16-234 prfword réalité 1235-123-2345 prfword réalités 1235-123-2345-234 prfword réel 1235-123 prfword réels 1235-123-234 prfword réelle 1235-123-123 prfword réelles 1235-123-123-234 prfword réellement 1235-123-134 prfword réflexion 1235-124 prfword réflexions 1235-124-234 word regard 1235-1245 word regards 1235-1245-234 word regret 1235-12456 word regrets 1235-12456-234 word regrettable 1235-12456-45 word regrettables 1235-12456-45-234 word regrettablement 1235-12456-45-134 word relatif 1235-2345-124 word relatifs 1235-2345-124-234 word relation 1235-2345 word relations 1235-2345-234 word relative 1235-2345-1236 word relatives 1235-2345-1236-234 word relativement 1235-2345-1236-134 word relativité 1235-2345-1236-2345 word relativités 1235-2345-1236-2345-234 word remarquable 1235-12345-45 word remarquables 1235-12345-45-234 word remarquablement 1235-12345-45-134 word remarque 1235-12345 word remarques 1235-12345-234 word remerciement 1235-134 word remerciements 1235-134-234 word renseignement 1235-26 word renseignements 1235-26-234 word rêve 1235-126 word rêves 1235-126-234 word rêveur 1235-126-46 word rêveurs 1235-126-46-234 word rêveuse 1235-126-234-15 word rêveuses 1235-126-234-156 word rêveusement 1235-126-234-134 word rôle 1235-1456 word rôles 1235-1456-234 prfword route 1235-1256 prfword routes 1235-1256-234 word rythme 1235-13456 word rythmes 1235-13456-234 word rythmique 1235-13456-12345 word rythmiques 1235-13456-12345-234 word rythmiquement 1235-13456-12345-134 word séculaire 234-14-1235 word séculaires 234-14-1235-234 word séculairement 234-14-1235-134 word seigneur 234-2356 word seigneurs 234-2356-234 prfword semblable 234-12 prfword semblables 234-12-234 prfword semblablement 234-12-134 prfword sentiment 234-2345-134 prfword sentiments 234-2345-134-234 word sentimental 234-2345-134-123 word sentimentale 234-2345-134-123-15 word sentimentales 234-2345-134-123-156 word sentimentalement 234-2345-134-123-134 word sentimentalité 234-2345-134-123-2345 word sentimentalités 234-2345-134-123-2345-234 word sentimentaux 234-2345-134-1346 word ses 234-234 word seul 234-123 word seuls 234-123-234 word seule 234-123-15 word seules 234-123-156 word seulement 234-123-134 word siècle 234-14 word siècles 234-14-234 word simple 234-1246 word simples 234-1246-234 word simplement 234-1246-134 word simplicité 234-1246-2345 word simplicités 234-1246-2345-234 word simplification 234-1246-16 word simplifications 234-1246-16-234 prfword soeur 234-1235 prfword soeurs 234-1235-234 word soin 234-35 word soins 234-35-234 word solitaire 234-123-1235 word solitaires 234-123-1235-234 word solitairement 234-123-1235-134 word solitude 234-123-145 word solitudes 234-123-145-234 word sommaire 234-2456-1235 word sommaires 234-2456-1235-234 word sommairement 234-2456-1235-134 word somme 234-2456 word sommes 234-2456-234 word sont 246-2345 word sorte 234-135 word sortes 234-135-234 word soudain 234-145 word soudains 234-145-234 word soudaine 234-1345 word soudaines 234-1345-234 word soudainement 234-1345-134 word soudaineté 234-1345-2345 word soudainetés 234-1345-2345-234 word souffrance 234-124-14 word souffrances 234-124-14-234 word souffrant 234-124 contraction sf 234-124 word souffrants 234-124-234 word souffrante 234-124-15 word souffrantes 234-124-156 word souvent 234-1236 word subjectif 234-245-124 word subjectifs 234-245-124-234 word subjective 234-245-1236 word subjectives 234-245-1236-234 word subjectivement 234-245-1236-134 word subjectivité 234-245-1236-2345 word subjectivités 234-245-1236-2345-234 word sujet 234-245 word sujets 234-245-234 word sujétion 234-245-3456 word sujétions 234-245-3456-234 word supérieur 234-1234 word supérieurs 234-1234-234 word supérieure 234-1234-15 word supérieures 234-1234-156 word supérieurement 234-1234-134 word supériorité 234-1234-2345 word supériorités 234-1234-2345-234 word surtout 234-2345 contraction st 234-2345 word systématique 234-13456-12345 word systématiques 234-13456-12345-234 word systématiquement 234-13456-12345-134 word système 234-13456 word systèmes 234-13456-234 word tel 2345-123 word tels 2345-123-234 word telle 2345-123-123 word telles 2345-123-123-234 word tellement 2345-123-134 word temporaire 2345-1234-1235 word temporaires 2345-1234-1235-234 word temporairement 2345-1234-1235-134 prfword temporel 2345-1234-123 prfword temporels 2345-1234-123-234 prfword temporelle 2345-1234-123-123 prfword temporelles 2345-1234-123-123-234 word temps 2345-1234 prfword tenir 2345-1345 word terre 2345-1235 word terres 2345-1235-234 word tes 2345-234 word tête 2345-126 word têtes 2345-126-234 word théorie 2345-125 word théories 2345-125-234 word théorique 2345-125-12345 word théoriques 2345-125-12345-234 word théoriquement 2345-125-12345-134 word titre 2345-356 word titres 2345-356-234 word toujours 2345-245 word toute 2345-2345 word toutes 2345-2345-234 word toutefois 2345-124 word tragique 356-1245 word tragiques 356-1245-234 word tragiquement 356-1245-134 word trajet 356-245 word trajets 356-245-234 prfword tranquille 356-12345 prfword tranquilles 356-12345-234 prfword tranquillement 356-12345-134 prfword tranquillité 356-12345-2345 prfword tranquillités 356-12345-2345-234 word travail 356-123 word travailleur 356-123-46 word travailleurs 356-123-46-234 word travailleuse 356-123-234-15 word travailleuses 356-123-234-156 word travaux 356-1346 word travers 356-1236 word très 356-234 word trop 356-1234 word type 2345-13456 word types 2345-13456-234 word typique 2345-13456-12345 word typiques 2345-13456-12345-234 word typiquement 2345-13456-12345-134 word une 136-1345 word unes 136-1345-234 word unique 136-12345 word uniques 136-12345-234 word uniquement 136-12345-134 word unitaire 136-1345-2345-1235 word unitaires 136-1345-2345-1235-234 word unité 136-1345-2345 word unités 136-1345-2345-234 word univers 136-1236 word universalité 136-1236-123-2345 word universalités 136-1236-123-2345-234 word universel 136-1236-123 word universels 136-1236-123-234 word universelle 136-1236-123-123 word universelles 136-1236-123-123-234 word universellement 136-1236-123-134 word universitaire 136-1236-2345-1235 word universitaires 136-1236-2345-1235-234 word université 136-1236-2345 word universités 136-1236-2345-234 word usage 136-1245 word usages 136-1245-234 prfword utile 136-123 prfword utiles 136-123-234 prfword utilement 136-123-134 prfword utilisable 136-123-45 prfword utilisables 136-123-45-234 word utilisateur 136-123-46 word utilisateurs 136-123-46-234 prfword utilisation 136-123-16 prfword utilisations 136-123-16-234 word utilitaire 136-123-2345-1235 word utilitaires 136-123-2345-1235-234 prfword utilité 136-123-2345 prfword utilités 136-123-2345-234 word valeur 1236-46 word valeurs 1236-46-234 prfword venir 1236-1345 word véritable 1236-1235 word véritables 1236-1235-234 word véritablement 1236-1235-134 word vérité 1236-123456 word vérités 1236-123456-234 word vieux 1236-1346 word vif 1236-124 word vifs 1236-124-234 word vive 1236-1236 word vives 1236-1236-234 word vivement 1236-1236-134 word voici 1236-14 word voilà 1236-123 word volontaire 1236-135-1235 word volontaires 1236-135-1235-234 word volontairement 1236-135-1235-134 word volonté 1236-135 word volontés 1236-135-234 word volontiers 1236-346 word vos 1236-234 word votre 1236-356 word vôtre 1236-1456 word vôtres 1236-1456-234 word voyage 1236-1245 word voyages 1236-1245-234 word voyageur 1236-1245-46 word voyageurs 1236-1245-46-234 word voyageuse 1236-1245-234-15 word voyageuses 1236-1245-234-156 word vraiment 1236-134 ### ### 4. Locutions ### word à\scause 12356-456-14 word à\smesure 12356-456-134 word à\speine 12356-456-1234 word à\speu\sprès 12356-456-1234-456-235 word à\sprésent 12356-456-235 word à\stravers 12356-456-356 word au\scontraire 13-456-14 word au-dessous 13-36-1256 word au-dessus 13-36-145 word aujourd'hui 13-3-125 word autant\sque 13-456-12345 word autre\schose 13-456-12356 word autre\spart 13-456-1234 word c'est-à-dire 14-3-15-36-12356-36-145 word d'abord 145-3-1 word de\ssuite 145-456-234 word en\smesure 26-456-134 word en\sréalité 26-456-1235 word et\scétera 15-456-14 word la\splupart 123-456-1246 word non\sseulement 1345-456-234 word parce\sque 1234-456-12345 word par\sconséquent 1234-456-14 word par-dessous 1234-36-1256 word par-dessus 1234-36-145 word par\sexemple 1234-456-15 word par\ssuite 1234-456-234 word peu\sà\speu 1234-456-12356-456-1234 word peut-être 1234-36-126 word plus\stard 1246-456-2345 word plus\stôt 1246-456-1456 word pour\sainsi\sdire 1234-456-1-456-145 word quelque\schose 12345-456-12356 word quelque\spart 12345-456-1234 word quelque\stemps 12345-456-2345 word sans\scesse 234-456-14 word sans\sdoute 234-456-145 word tandis\sque 2345-456-12345 word tour\sà\stour 2345-456-12356-456-2345 word tout\sà\scoup 16-456-12356-456-14 word tout\sà\sfait 16-456-12356-456-124 word très\sbien 356-456-12 word vis-à-vis 1236-36-12356-36-1236 before apost sufword autant\squ 13-456-12345 before apost sufword jusqu 245-12345 before apost sufword lorsqu 123-12345 before apost sufword parce\squ 1234-456-12345 before apost sufword presqu 235-12345 before apost sufword puisqu 1234-12345 liblouis-2.5.3/tables/braille-patterns.cti0000664000175000017500000006347512161041546015530 00000000000000# # Copyright (C) 2010, 2011 DocArch . # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # ---------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------- # Unicode 2800..28FF Braille Patterns # ---------------------------------------------------------------------------------------------- noback sign \x2800 0 # â € BRAILLE PATTERN DOTS-0 noback sign \x2801 1 # â  BRAILLE PATTERN DOTS-1 noback sign \x2802 2 # â ‚ BRAILLE PATTERN DOTS-2 noback sign \x2803 12 # â ƒ BRAILLE PATTERN DOTS-12 noback sign \x2804 3 # â „ BRAILLE PATTERN DOTS-3 noback sign \x2805 13 # â … BRAILLE PATTERN DOTS-13 noback sign \x2806 23 # â † BRAILLE PATTERN DOTS-23 noback sign \x2807 123 # â ‡ BRAILLE PATTERN DOTS-123 noback sign \x2808 4 # â ˆ BRAILLE PATTERN DOTS-4 noback sign \x2809 14 # â ‰ BRAILLE PATTERN DOTS-14 noback sign \x280A 24 # â Š BRAILLE PATTERN DOTS-24 noback sign \x280B 124 # â ‹ BRAILLE PATTERN DOTS-124 noback sign \x280C 34 # â Œ BRAILLE PATTERN DOTS-34 noback sign \x280D 134 # â  BRAILLE PATTERN DOTS-134 noback sign \x280E 234 # â Ž BRAILLE PATTERN DOTS-234 noback sign \x280F 1234 # â  BRAILLE PATTERN DOTS-1234 noback sign \x2810 5 # â  BRAILLE PATTERN DOTS-5 noback sign \x2811 15 # â ‘ BRAILLE PATTERN DOTS-15 noback sign \x2812 25 # â ’ BRAILLE PATTERN DOTS-25 noback sign \x2813 125 # â “ BRAILLE PATTERN DOTS-125 noback sign \x2814 35 # â ” BRAILLE PATTERN DOTS-35 noback sign \x2815 135 # â • BRAILLE PATTERN DOTS-135 noback sign \x2816 235 # â – BRAILLE PATTERN DOTS-235 noback sign \x2817 1235 # â — BRAILLE PATTERN DOTS-1235 noback sign \x2818 45 # â ˜ BRAILLE PATTERN DOTS-45 noback sign \x2819 145 # â ™ BRAILLE PATTERN DOTS-145 noback sign \x281A 245 # â š BRAILLE PATTERN DOTS-245 noback sign \x281B 1245 # â › BRAILLE PATTERN DOTS-1245 noback sign \x281C 345 # â œ BRAILLE PATTERN DOTS-345 noback sign \x281D 1345 # â  BRAILLE PATTERN DOTS-1345 noback sign \x281E 2345 # â ž BRAILLE PATTERN DOTS-2345 noback sign \x281F 12345 # â Ÿ BRAILLE PATTERN DOTS-12345 noback sign \x2820 6 # â   BRAILLE PATTERN DOTS-6 noback sign \x2821 16 # â ¡ BRAILLE PATTERN DOTS-16 noback sign \x2822 26 # â ¢ BRAILLE PATTERN DOTS-26 noback sign \x2823 126 # â £ BRAILLE PATTERN DOTS-126 noback sign \x2824 36 # â ¤ BRAILLE PATTERN DOTS-36 noback sign \x2825 136 # â ¥ BRAILLE PATTERN DOTS-136 noback sign \x2826 236 # â ¦ BRAILLE PATTERN DOTS-236 noback sign \x2827 1236 # â § BRAILLE PATTERN DOTS-1236 noback sign \x2828 46 # â ¨ BRAILLE PATTERN DOTS-46 noback sign \x2829 146 # â © BRAILLE PATTERN DOTS-146 noback sign \x282A 246 # â ª BRAILLE PATTERN DOTS-246 noback sign \x282B 1246 # â « BRAILLE PATTERN DOTS-1246 noback sign \x282C 346 # â ¬ BRAILLE PATTERN DOTS-346 noback sign \x282D 1346 # â ­ BRAILLE PATTERN DOTS-1346 noback sign \x282E 2346 # â ® BRAILLE PATTERN DOTS-2346 noback sign \x282F 12346 # â ¯ BRAILLE PATTERN DOTS-12346 noback sign \x2830 56 # â ° BRAILLE PATTERN DOTS-56 noback sign \x2831 156 # â ± BRAILLE PATTERN DOTS-156 noback sign \x2832 256 # â ² BRAILLE PATTERN DOTS-256 noback sign \x2833 1256 # â ³ BRAILLE PATTERN DOTS-1256 noback sign \x2834 356 # â ´ BRAILLE PATTERN DOTS-356 noback sign \x2835 1356 # â µ BRAILLE PATTERN DOTS-1356 noback sign \x2836 2356 # â ¶ BRAILLE PATTERN DOTS-2356 noback sign \x2837 12356 # â · BRAILLE PATTERN DOTS-12356 noback sign \x2838 456 # â ¸ BRAILLE PATTERN DOTS-456 noback sign \x2839 1456 # â ¹ BRAILLE PATTERN DOTS-1456 noback sign \x283A 2456 # â º BRAILLE PATTERN DOTS-2456 noback sign \x283B 12456 # â » BRAILLE PATTERN DOTS-12456 noback sign \x283C 3456 # â ¼ BRAILLE PATTERN DOTS-3456 noback sign \x283D 13456 # â ½ BRAILLE PATTERN DOTS-13456 noback sign \x283E 23456 # â ¾ BRAILLE PATTERN DOTS-23456 noback sign \x283F 123456 # â ¿ BRAILLE PATTERN DOTS-123456 noback sign \x2840 7 # â¡€ BRAILLE PATTERN DOTS-7 noback sign \x2841 17 # â¡ BRAILLE PATTERN DOTS-17 noback sign \x2842 27 # â¡‚ BRAILLE PATTERN DOTS-27 noback sign \x2843 127 # ⡃ BRAILLE PATTERN DOTS-127 noback sign \x2844 37 # â¡„ BRAILLE PATTERN DOTS-37 noback sign \x2845 137 # â¡… BRAILLE PATTERN DOTS-137 noback sign \x2846 237 # ⡆ BRAILLE PATTERN DOTS-237 noback sign \x2847 1237 # ⡇ BRAILLE PATTERN DOTS-1237 noback sign \x2848 47 # ⡈ BRAILLE PATTERN DOTS-47 noback sign \x2849 147 # ⡉ BRAILLE PATTERN DOTS-147 noback sign \x284A 247 # ⡊ BRAILLE PATTERN DOTS-247 noback sign \x284B 1247 # â¡‹ BRAILLE PATTERN DOTS-1247 noback sign \x284C 347 # ⡌ BRAILLE PATTERN DOTS-347 noback sign \x284D 1347 # â¡ BRAILLE PATTERN DOTS-1347 noback sign \x284E 2347 # ⡎ BRAILLE PATTERN DOTS-2347 noback sign \x284F 12347 # â¡ BRAILLE PATTERN DOTS-12347 noback sign \x2850 57 # â¡ BRAILLE PATTERN DOTS-57 noback sign \x2851 157 # â¡‘ BRAILLE PATTERN DOTS-157 noback sign \x2852 257 # â¡’ BRAILLE PATTERN DOTS-257 noback sign \x2853 1257 # â¡“ BRAILLE PATTERN DOTS-1257 noback sign \x2854 357 # â¡” BRAILLE PATTERN DOTS-357 noback sign \x2855 1357 # â¡• BRAILLE PATTERN DOTS-1357 noback sign \x2856 2357 # â¡– BRAILLE PATTERN DOTS-2357 noback sign \x2857 12357 # â¡— BRAILLE PATTERN DOTS-12357 noback sign \x2858 457 # ⡘ BRAILLE PATTERN DOTS-457 noback sign \x2859 1457 # â¡™ BRAILLE PATTERN DOTS-1457 noback sign \x285A 2457 # ⡚ BRAILLE PATTERN DOTS-2457 noback sign \x285B 12457 # â¡› BRAILLE PATTERN DOTS-12457 noback sign \x285C 3457 # ⡜ BRAILLE PATTERN DOTS-3457 noback sign \x285D 13457 # â¡ BRAILLE PATTERN DOTS-13457 noback sign \x285E 23457 # ⡞ BRAILLE PATTERN DOTS-23457 noback sign \x285F 123457 # ⡟ BRAILLE PATTERN DOTS-123457 noback sign \x2860 67 # â¡  BRAILLE PATTERN DOTS-67 noback sign \x2861 167 # â¡¡ BRAILLE PATTERN DOTS-167 noback sign \x2862 267 # â¡¢ BRAILLE PATTERN DOTS-267 noback sign \x2863 1267 # â¡£ BRAILLE PATTERN DOTS-1267 noback sign \x2864 367 # ⡤ BRAILLE PATTERN DOTS-367 noback sign \x2865 1367 # â¡¥ BRAILLE PATTERN DOTS-1367 noback sign \x2866 2367 # ⡦ BRAILLE PATTERN DOTS-2367 noback sign \x2867 12367 # â¡§ BRAILLE PATTERN DOTS-12367 noback sign \x2868 467 # ⡨ BRAILLE PATTERN DOTS-467 noback sign \x2869 1467 # â¡© BRAILLE PATTERN DOTS-1467 noback sign \x286A 2467 # ⡪ BRAILLE PATTERN DOTS-2467 noback sign \x286B 12467 # â¡« BRAILLE PATTERN DOTS-12467 noback sign \x286C 3467 # ⡬ BRAILLE PATTERN DOTS-3467 noback sign \x286D 13467 # â¡­ BRAILLE PATTERN DOTS-13467 noback sign \x286E 23467 # â¡® BRAILLE PATTERN DOTS-23467 noback sign \x286F 123467 # ⡯ BRAILLE PATTERN DOTS-123467 noback sign \x2870 567 # â¡° BRAILLE PATTERN DOTS-567 noback sign \x2871 1567 # ⡱ BRAILLE PATTERN DOTS-1567 noback sign \x2872 2567 # ⡲ BRAILLE PATTERN DOTS-2567 noback sign \x2873 12567 # ⡳ BRAILLE PATTERN DOTS-12567 noback sign \x2874 3567 # â¡´ BRAILLE PATTERN DOTS-3567 noback sign \x2875 13567 # ⡵ BRAILLE PATTERN DOTS-13567 noback sign \x2876 23567 # â¡¶ BRAILLE PATTERN DOTS-23567 noback sign \x2877 123567 # â¡· BRAILLE PATTERN DOTS-123567 noback sign \x2878 4567 # ⡸ BRAILLE PATTERN DOTS-4567 noback sign \x2879 14567 # ⡹ BRAILLE PATTERN DOTS-14567 noback sign \x287A 24567 # ⡺ BRAILLE PATTERN DOTS-24567 noback sign \x287B 124567 # â¡» BRAILLE PATTERN DOTS-124567 noback sign \x287C 34567 # ⡼ BRAILLE PATTERN DOTS-34567 noback sign \x287D 134567 # ⡽ BRAILLE PATTERN DOTS-134567 noback sign \x287E 234567 # ⡾ BRAILLE PATTERN DOTS-234567 noback sign \x287F 1234567 # â¡¿ BRAILLE PATTERN DOTS-1234567 noback sign \x2880 8 # ⢀ BRAILLE PATTERN DOTS-8 noback sign \x2881 18 # ⢠BRAILLE PATTERN DOTS-18 noback sign \x2882 28 # ⢂ BRAILLE PATTERN DOTS-28 noback sign \x2883 128 # ⢃ BRAILLE PATTERN DOTS-128 noback sign \x2884 38 # ⢄ BRAILLE PATTERN DOTS-38 noback sign \x2885 138 # ⢅ BRAILLE PATTERN DOTS-138 noback sign \x2886 238 # ⢆ BRAILLE PATTERN DOTS-238 noback sign \x2887 1238 # ⢇ BRAILLE PATTERN DOTS-1238 noback sign \x2888 48 # ⢈ BRAILLE PATTERN DOTS-48 noback sign \x2889 148 # ⢉ BRAILLE PATTERN DOTS-148 noback sign \x288A 248 # ⢊ BRAILLE PATTERN DOTS-248 noback sign \x288B 1248 # ⢋ BRAILLE PATTERN DOTS-1248 noback sign \x288C 348 # ⢌ BRAILLE PATTERN DOTS-348 noback sign \x288D 1348 # ⢠BRAILLE PATTERN DOTS-1348 noback sign \x288E 2348 # ⢎ BRAILLE PATTERN DOTS-2348 noback sign \x288F 12348 # ⢠BRAILLE PATTERN DOTS-12348 noback sign \x2890 58 # ⢠BRAILLE PATTERN DOTS-58 noback sign \x2891 158 # ⢑ BRAILLE PATTERN DOTS-158 noback sign \x2892 258 # ⢒ BRAILLE PATTERN DOTS-258 noback sign \x2893 1258 # ⢓ BRAILLE PATTERN DOTS-1258 noback sign \x2894 358 # ⢔ BRAILLE PATTERN DOTS-358 noback sign \x2895 1358 # ⢕ BRAILLE PATTERN DOTS-1358 noback sign \x2896 2358 # ⢖ BRAILLE PATTERN DOTS-2358 noback sign \x2897 12358 # ⢗ BRAILLE PATTERN DOTS-12358 noback sign \x2898 458 # ⢘ BRAILLE PATTERN DOTS-458 noback sign \x2899 1458 # ⢙ BRAILLE PATTERN DOTS-1458 noback sign \x289A 2458 # ⢚ BRAILLE PATTERN DOTS-2458 noback sign \x289B 12458 # ⢛ BRAILLE PATTERN DOTS-12458 noback sign \x289C 3458 # ⢜ BRAILLE PATTERN DOTS-3458 noback sign \x289D 13458 # ⢠BRAILLE PATTERN DOTS-13458 noback sign \x289E 23458 # ⢞ BRAILLE PATTERN DOTS-23458 noback sign \x289F 123458 # ⢟ BRAILLE PATTERN DOTS-123458 noback sign \x28A0 68 # ⢠ BRAILLE PATTERN DOTS-68 noback sign \x28A1 168 # ⢡ BRAILLE PATTERN DOTS-168 noback sign \x28A2 268 # ⢢ BRAILLE PATTERN DOTS-268 noback sign \x28A3 1268 # ⢣ BRAILLE PATTERN DOTS-1268 noback sign \x28A4 368 # ⢤ BRAILLE PATTERN DOTS-368 noback sign \x28A5 1368 # ⢥ BRAILLE PATTERN DOTS-1368 noback sign \x28A6 2368 # ⢦ BRAILLE PATTERN DOTS-2368 noback sign \x28A7 12368 # ⢧ BRAILLE PATTERN DOTS-12368 noback sign \x28A8 468 # ⢨ BRAILLE PATTERN DOTS-468 noback sign \x28A9 1468 # ⢩ BRAILLE PATTERN DOTS-1468 noback sign \x28AA 2468 # ⢪ BRAILLE PATTERN DOTS-2468 noback sign \x28AB 12468 # ⢫ BRAILLE PATTERN DOTS-12468 noback sign \x28AC 3468 # ⢬ BRAILLE PATTERN DOTS-3468 noback sign \x28AD 13468 # ⢭ BRAILLE PATTERN DOTS-13468 noback sign \x28AE 23468 # ⢮ BRAILLE PATTERN DOTS-23468 noback sign \x28AF 123468 # ⢯ BRAILLE PATTERN DOTS-123468 noback sign \x28B0 568 # ⢰ BRAILLE PATTERN DOTS-568 noback sign \x28B1 1568 # ⢱ BRAILLE PATTERN DOTS-1568 noback sign \x28B2 2568 # ⢲ BRAILLE PATTERN DOTS-2568 noback sign \x28B3 12568 # ⢳ BRAILLE PATTERN DOTS-12568 noback sign \x28B4 3568 # ⢴ BRAILLE PATTERN DOTS-3568 noback sign \x28B5 13568 # ⢵ BRAILLE PATTERN DOTS-13568 noback sign \x28B6 23568 # ⢶ BRAILLE PATTERN DOTS-23568 noback sign \x28B7 123568 # ⢷ BRAILLE PATTERN DOTS-123568 noback sign \x28B8 4568 # ⢸ BRAILLE PATTERN DOTS-4568 noback sign \x28B9 14568 # ⢹ BRAILLE PATTERN DOTS-14568 noback sign \x28BA 24568 # ⢺ BRAILLE PATTERN DOTS-24568 noback sign \x28BB 124568 # ⢻ BRAILLE PATTERN DOTS-124568 noback sign \x28BC 34568 # ⢼ BRAILLE PATTERN DOTS-34568 noback sign \x28BD 134568 # ⢽ BRAILLE PATTERN DOTS-134568 noback sign \x28BE 234568 # ⢾ BRAILLE PATTERN DOTS-234568 noback sign \x28BF 1234568 # ⢿ BRAILLE PATTERN DOTS-1234568 noback sign \x28C0 78 # ⣀ BRAILLE PATTERN DOTS-78 noback sign \x28C1 178 # ⣠BRAILLE PATTERN DOTS-178 noback sign \x28C2 278 # ⣂ BRAILLE PATTERN DOTS-278 noback sign \x28C3 1278 # ⣃ BRAILLE PATTERN DOTS-1278 noback sign \x28C4 378 # ⣄ BRAILLE PATTERN DOTS-378 noback sign \x28C5 1378 # ⣅ BRAILLE PATTERN DOTS-1378 noback sign \x28C6 2378 # ⣆ BRAILLE PATTERN DOTS-2378 noback sign \x28C7 12378 # ⣇ BRAILLE PATTERN DOTS-12378 noback sign \x28C8 478 # ⣈ BRAILLE PATTERN DOTS-478 noback sign \x28C9 1478 # ⣉ BRAILLE PATTERN DOTS-1478 noback sign \x28CA 2478 # ⣊ BRAILLE PATTERN DOTS-2478 noback sign \x28CB 12478 # ⣋ BRAILLE PATTERN DOTS-12478 noback sign \x28CC 3478 # ⣌ BRAILLE PATTERN DOTS-3478 noback sign \x28CD 13478 # ⣠BRAILLE PATTERN DOTS-13478 noback sign \x28CE 23478 # ⣎ BRAILLE PATTERN DOTS-23478 noback sign \x28CF 123478 # ⣠BRAILLE PATTERN DOTS-123478 noback sign \x28D0 578 # ⣠BRAILLE PATTERN DOTS-578 noback sign \x28D1 1578 # ⣑ BRAILLE PATTERN DOTS-1578 noback sign \x28D2 2578 # ⣒ BRAILLE PATTERN DOTS-2578 noback sign \x28D3 12578 # ⣓ BRAILLE PATTERN DOTS-12578 noback sign \x28D4 3578 # ⣔ BRAILLE PATTERN DOTS-3578 noback sign \x28D5 13578 # ⣕ BRAILLE PATTERN DOTS-13578 noback sign \x28D6 23578 # ⣖ BRAILLE PATTERN DOTS-23578 noback sign \x28D7 123578 # ⣗ BRAILLE PATTERN DOTS-123578 noback sign \x28D8 4578 # ⣘ BRAILLE PATTERN DOTS-4578 noback sign \x28D9 14578 # ⣙ BRAILLE PATTERN DOTS-14578 noback sign \x28DA 24578 # ⣚ BRAILLE PATTERN DOTS-24578 noback sign \x28DB 124578 # ⣛ BRAILLE PATTERN DOTS-124578 noback sign \x28DC 34578 # ⣜ BRAILLE PATTERN DOTS-34578 noback sign \x28DD 134578 # ⣠BRAILLE PATTERN DOTS-134578 noback sign \x28DE 234578 # ⣞ BRAILLE PATTERN DOTS-234578 noback sign \x28DF 1234578 # ⣟ BRAILLE PATTERN DOTS-1234578 noback sign \x28E0 678 # ⣠ BRAILLE PATTERN DOTS-678 noback sign \x28E1 1678 # ⣡ BRAILLE PATTERN DOTS-1678 noback sign \x28E2 2678 # ⣢ BRAILLE PATTERN DOTS-2678 noback sign \x28E3 12678 # ⣣ BRAILLE PATTERN DOTS-12678 noback sign \x28E4 3678 # ⣤ BRAILLE PATTERN DOTS-3678 noback sign \x28E5 13678 # ⣥ BRAILLE PATTERN DOTS-13678 noback sign \x28E6 23678 # ⣦ BRAILLE PATTERN DOTS-23678 noback sign \x28E7 123678 # ⣧ BRAILLE PATTERN DOTS-123678 noback sign \x28E8 4678 # ⣨ BRAILLE PATTERN DOTS-4678 noback sign \x28E9 14678 # ⣩ BRAILLE PATTERN DOTS-14678 noback sign \x28EA 24678 # ⣪ BRAILLE PATTERN DOTS-24678 noback sign \x28EB 124678 # ⣫ BRAILLE PATTERN DOTS-124678 noback sign \x28EC 34678 # ⣬ BRAILLE PATTERN DOTS-34678 noback sign \x28ED 134678 # ⣭ BRAILLE PATTERN DOTS-134678 noback sign \x28EE 234678 # ⣮ BRAILLE PATTERN DOTS-234678 noback sign \x28EF 1234678 # ⣯ BRAILLE PATTERN DOTS-1234678 noback sign \x28F0 5678 # ⣰ BRAILLE PATTERN DOTS-5678 noback sign \x28F1 15678 # ⣱ BRAILLE PATTERN DOTS-15678 noback sign \x28F2 25678 # ⣲ BRAILLE PATTERN DOTS-25678 noback sign \x28F3 125678 # ⣳ BRAILLE PATTERN DOTS-125678 noback sign \x28F4 35678 # ⣴ BRAILLE PATTERN DOTS-35678 noback sign \x28F5 135678 # ⣵ BRAILLE PATTERN DOTS-135678 noback sign \x28F6 235678 # ⣶ BRAILLE PATTERN DOTS-235678 noback sign \x28F7 1235678 # ⣷ BRAILLE PATTERN DOTS-1235678 noback sign \x28F8 45678 # ⣸ BRAILLE PATTERN DOTS-45678 noback sign \x28F9 145678 # ⣹ BRAILLE PATTERN DOTS-145678 noback sign \x28FA 245678 # ⣺ BRAILLE PATTERN DOTS-245678 noback sign \x28FB 1245678 # ⣻ BRAILLE PATTERN DOTS-1245678 noback sign \x28FC 345678 # ⣼ BRAILLE PATTERN DOTS-345678 noback sign \x28FD 1345678 # ⣽ BRAILLE PATTERN DOTS-1345678 noback sign \x28FE 2345678 # ⣾ BRAILLE PATTERN DOTS-2345678 noback sign \x28FF 12345678 # ⣿ BRAILLE PATTERN DOTS-12345678 # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/cs-chardefs.cti0000664000175000017500000004570112161041546014432 00000000000000# # Copyright (C) 2011 by Bert Frees # Copyright (C) 2011 by Jan Halousek # Copyright (C) 2012 by Brailcom, o.p.s. # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ---------------------------------------------------------------------------------------------- # # Czech Braille # # Created and maintained by Bert Frees # Jan Halousek # # Based on the official Czech Braille Standard # ---------------------------------------------------------------------------------------------- # ============================================================================================== # SINGLE-CELL # ============================================================================================== uplow \x0041\x0061 1,1 Aa LATIN CAPITAL LETTER A - LATIN SMALL LETTER A uplow \x0042\x0062 12,12 Bb LATIN CAPITAL LETTER B - LATIN SMALL LETTER B uplow \x0043\x0063 14,14 Cc LATIN CAPITAL LETTER C - LATIN SMALL LETTER C uplow \x0044\x0064 145,145 Dd LATIN CAPITAL LETTER D - LATIN SMALL LETTER D uplow \x0045\x0065 15,15 Ee LATIN CAPITAL LETTER E - LATIN SMALL LETTER E uplow \x0046\x0066 124,124 Ff LATIN CAPITAL LETTER F - LATIN SMALL LETTER F uplow \x0047\x0067 1245,1245 Gg LATIN CAPITAL LETTER G - LATIN SMALL LETTER G uplow \x0048\x0068 125,125 Hh LATIN CAPITAL LETTER H - LATIN SMALL LETTER H uplow \x0049\x0069 24,24 Ii LATIN CAPITAL LETTER I - LATIN SMALL LETTER I uplow \x004A\x006A 245,245 Jj LATIN CAPITAL LETTER J - LATIN SMALL LETTER J uplow \x004B\x006B 13,13 Kk LATIN CAPITAL LETTER K - LATIN SMALL LETTER K uplow \x004C\x006C 123,123 Ll LATIN CAPITAL LETTER L - LATIN SMALL LETTER L uplow \x004D\x006D 134,134 Mm LATIN CAPITAL LETTER M - LATIN SMALL LETTER M uplow \x004E\x006E 1345,1345 Nn LATIN CAPITAL LETTER N - LATIN SMALL LETTER N uplow \x004F\x006F 135,135 Oo LATIN CAPITAL LETTER O - LATIN SMALL LETTER O uplow \x0050\x0070 1234,1234 Pp LATIN CAPITAL LETTER P - LATIN SMALL LETTER P uplow \x0051\x0071 12345,12345 Qq LATIN CAPITAL LETTER Q - LATIN SMALL LETTER Q uplow \x0052\x0072 1235,1235 Rr LATIN CAPITAL LETTER R - LATIN SMALL LETTER R uplow \x0053\x0073 234,234 Ss LATIN CAPITAL LETTER S - LATIN SMALL LETTER S uplow \x0054\x0074 2345,2345 Tt LATIN CAPITAL LETTER T - LATIN SMALL LETTER T uplow \x0055\x0075 136,136 Uu LATIN CAPITAL LETTER U - LATIN SMALL LETTER U uplow \x0056\x0076 1236,1236 Vv LATIN CAPITAL LETTER V - LATIN SMALL LETTER V uplow \x0057\x0077 12356,12356 Ww LATIN CAPITAL LETTER W - LATIN SMALL LETTER W uplow \x0058\x0078 1346,1346 Xx LATIN CAPITAL LETTER X - LATIN SMALL LETTER X uplow \x0059\x0079 13456,13456 Yy LATIN CAPITAL LETTER Y - LATIN SMALL LETTER Y uplow \x005A\x007A 1356,1356 Zz LATIN CAPITAL LETTER Z - LATIN SMALL LETTER Z uplow \x00C1\x00E1 16,16 Ãá LATIN CAPITAL LETTER A WITH ACUTE - LATIN SMALL LETTER A WITH ACUTE uplow \x00C9\x00E9 345,345 Éé LATIN CAPITAL LETTER E WITH ACUTE - LATIN SMALL LETTER E WITH ACUTE uplow \x00CD\x00ED 34,34 Ãí LATIN CAPITAL LETTER I WITH ACUTE - LATIN SMALL LETTER I WITH ACUTE uplow \x00D3\x00F3 246,246 Óó LATIN CAPITAL LETTER O WITH ACUTE - LATIN SMALL LETTER O WITH ACUTE uplow \x00DA\x00FA 346,346 Úú LATIN CAPITAL LETTER U WITH ACUTE - LATIN SMALL LETTER U WITH ACUTE uplow \x00DD\x00FD 12346,12346 Ãý LATIN CAPITAL LETTER Y WITH ACUTE - LATIN SMALL LETTER Y WITH ACUTE uplow \x010C\x010D 146,146 ÄŒÄ LATIN CAPITAL LETTER C WITH CARON - LATIN SMALL LETTER C WITH CARON uplow \x010E\x010F 1456,1456 ÄŽÄ LATIN CAPITAL LETTER D WITH CARON - LATIN SMALL LETTER D WITH CARON uplow \x011A\x011B 126,126 Ěě LATIN CAPITAL LETTER E WITH CARON - LATIN SMALL LETTER E WITH CARON uplow \x013D\x013E 123456,123456 Ľľ LATIN CAPITAL LETTER L WITH CARON - LATIN SMALL LETTER L WITH CARON uplow \x0147\x0148 1246,1246 Ňň LATIN CAPITAL LETTER N WITH CARON - LATIN SMALL LETTER N WITH CARON uplow \x0158\x0159 2456,2456 Řř LATIN CAPITAL LETTER R WITH CARON - LATIN SMALL LETTER R WITH CARON uplow \x0160\x0161 156,156 Å Å¡ LATIN CAPITAL LETTER S WITH CARON - LATIN SMALL LETTER S WITH CARON uplow \x0164\x0165 1256,1256 Ťť LATIN CAPITAL LETTER T WITH CARON - LATIN SMALL LETTER T WITH CARON uplow \x016E\x016F 23456,23456 Ůů LATIN CAPITAL LETTER U WITH RING ABOVE - LATIN SMALL LETTER U WITH RING ABOVE uplow \x017D\x017E 2346,2346 Žž LATIN CAPITAL LETTER Z WITH CARON - LATIN SMALL LETTER Z WITH CARON # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- space \x0009 9 HORIZONTAL TABULATION space \x000A 0 LINE FEED space \x000C 0 FORM FEED space \x000D 0 CARRIAGE RETURN space \x001B 1b ESCAPE space \x0020 0 SPACE punctuation \x0021 235 ! EXCLAMATION MARK punctuation \x0022 2356 " QUOTATION MARK sign \x0023 3456 # NUMBER SIGN punctuation \x0027 4 ' APOSTROPHE punctuation \x0028 236 ( LEFT PARENTHESIS punctuation \x0029 356 ) RIGHT PARENTHESIS sign \x002A 35 * ASTERISK math \x002B 256 + PLUS SIGN punctuation \x002C 2 , COMMA punctuation \x002D 36 - HYPHEN-MINUS punctuation \x002E 3 . FULL STOP math \x002F 12456 / SOLIDUS include digits6Dots.uti punctuation \x003A 25 : COLON punctuation \x003B 23 ; SEMICOLON math \x003C 126 < LESS-THAN SIGN math \x003D 2356 = EQUALS SIGN math \x003E 345 > GREATER-THAN SIGN punctuation \x003F 26 ? QUESTION MARK punctuation \x0060 4 ` GRAVE ACCENT sign \x007C 456 | VERTICAL LINE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- space \x00A0 a   NO-BREAK SPACE punctuation \x00AD 36 ­ SOFT HYPHEN math \x00B1 256-36 ± PLUS-MINUS SIGN sign \x00B4 4 ´ ACUTE ACCENT math \x00D7 346 × MULTIPLICATION SIGN math \x00F7 25 ÷ DIVISION SIGN # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2010 36 †HYPHEN punctuation \x2011 36 ‑ NON-BREAKING HYPHEN punctuation \x2012 36 ‒ FIGURE DASH punctuation \x2013 36 – EN DASH punctuation \x2014 36 — EM DASH punctuation \x2015 36 ― HORIZONTAL BAR punctuation \x2018 4 ‘ LEFT SINGLE QUOTATION MARK punctuation \x2019 4 ’ RIGHT SINGLE QUOTATION MARK punctuation \x201A 4 ‚ SINGLE LOW-9 QUOTATION MARK punctuation \x201B 4 ‛ SINGLE HIGH-REVERSED-9 QUOTATION MARK punctuation \x201C 2356 “ LEFT DOUBLE QUOTATION MARK punctuation \x201D 2356 †RIGHT DOUBLE QUOTATION MARK punctuation \x201E 2356 „ DOUBLE LOW-9 QUOTATION MARK punctuation \x201F 2356 ‟ DOUBLE HIGH-REVERSED-9 QUOTATION MARK # ============================================================================================== # MULTI-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- sign \x0024 3456-1246 $ DOLLAR SIGN math \x0025 3456-1234 % PERCENT SIGN sign \x0026 3456-12346 & AMPERSAND sign \x0040 3456-12456 @ COMMERCIAL AT punctuation \x005B 6-236 [ LEFT SQUARE BRACKET sign \x005C 3456-1256 \ REVERSE SOLIDUS punctuation \x005D 6-356 ] RIGHT SQUARE BRACKET sign \x005E 6-45 ^ CIRCUMFLEX ACCENT sign \x005F 6-36 _ LOW LINE math \x007B 45-236 { LEFT CURLY BRACKET math \x007D 45-356 } RIGHT CURLY BRACKET math \x007E 6-5 ~ TILDE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- sign \x0080 15-136-1235-135 € - ANSI: EURO-CURRENCY SIGN - MACROMAN: A DIAERESIS sign \x00B0 3456-234 ° DEGREE SIGN sign \x00B5 4-134 µ MICRO SIGN math \x00B9 34-1 ¹ SUPERSCRIPT ONE uplow \x00C4\x00E4 1-15,1-15 Ää LATIN CAPITAL LETTER A WITH DIAERESIS - LATIN SMALL LETTER A WITH DIAERESIS uplow \x00D6\x00F6 135-15,135-15 Öö LATIN CAPITAL LETTER O WITH DIAERESIS - LATIN SMALL LETTER O WITH DIAERESIS uplow \x00DC\x00FC 136-15,136-15 Üü LATIN CAPITAL LETTER U WITH DIAERESIS - LATIN SMALL LETTER U WITH DIAERESIS # ---------------------------------------------------------------------------------------------- # Unicode 0370..03FF Greek and Coptic # ---------------------------------------------------------------------------------------------- letter \x0391 46-1 Α GREEK CAPITAL LETTER ALPHA letter \x0392 46-12 Î’ GREEK CAPITAL LETTER BETA letter \x0393 46-1245 Γ GREEK CAPITAL LETTER GAMMA letter \x0394 46-145 Δ GREEK CAPITAL LETTER DELTA letter \x0395 46-15 Ε GREEK CAPITAL LETTER EPSILON letter \x0398 46-1456 Θ GREEK CAPITAL LETTER THETA letter \x0399 46-24 Ι GREEK CAPITAL LETTER IOTA letter \x039A 46-13 Κ GREEK CAPITAL LETTER KAPPA letter \x039B 46-123 Λ GREEK CAPITAL LETTER LAMDA letter \x039C 46-134 Μ GREEK CAPITAL LETTER MU letter \x039D 46-1345 Î GREEK CAPITAL LETTER NU letter \x039E 46-1346 Ξ GREEK CAPITAL LETTER XI letter \x039F 46-135 Ο GREEK CAPITAL LETTER OMICRON letter \x03A0 46-1234 Π GREEK CAPITAL LETTER PI letter \x03A1 46-1235 Ρ GREEK CAPITAL LETTER RHO letter \x03A3 46-234 Σ GREEK CAPITAL LETTER SIGMA letter \x03A4 46-2345 Τ GREEK CAPITAL LETTER TAU letter \x03A5 46-13456 Î¥ GREEK CAPITAL LETTER UPSILON letter \x03A6 46-124 Φ GREEK CAPITAL LETTER PHI letter \x03A7 46-125 Χ GREEK CAPITAL LETTER CHI letter \x03A8 46-12346 Ψ GREEK CAPITAL LETTER PSI letter \x03A9 46-2356 Ω GREEK CAPITAL LETTER OMEGA lowercase \x03B1 45-1 α GREEK SMALL LETTER ALPHA lowercase \x03B2 45-12 β GREEK SMALL LETTER BETA lowercase \x03B3 45-1245 γ GREEK SMALL LETTER GAMMA lowercase \x03B4 45-145 δ GREEK SMALL LETTER DELTA lowercase \x03B5 45-15 ε GREEK SMALL LETTER EPSILON lowercase \x03B8 45-1456 θ GREEK SMALL LETTER THETA lowercase \x03B9 45-24 ι GREEK SMALL LETTER IOTA lowercase \x03BA 45-13 κ GREEK SMALL LETTER KAPPA lowercase \x03BB 45-123 λ GREEK SMALL LETTER LAMDA lowercase \x03BC 45-134 μ GREEK SMALL LETTER MU lowercase \x03BD 45-1345 ν GREEK SMALL LETTER NU lowercase \x03BE 45-1346 ξ GREEK SMALL LETTER XI lowercase \x03BF 45-135 ο GREEK SMALL LETTER OMICRON lowercase \x03C0 45-1234 Ï€ GREEK SMALL LETTER PI lowercase \x03C1 45-1235 Ï GREEK SMALL LETTER RHO lowercase \x03C3 45-234 σ GREEK SMALL LETTER SIGMA lowercase \x03C4 45-2345 Ï„ GREEK SMALL LETTER TAU lowercase \x03C5 45-13456 Ï… GREEK SMALL LETTER UPSILON lowercase \x03C6 45-124 φ GREEK SMALL LETTER PHI lowercase \x03C7 45-125 χ GREEK SMALL LETTER CHI lowercase \x03C8 45-12346 ψ GREEK SMALL LETTER PSI lowercase \x03C9 45-2356 ω GREEK SMALL LETTER OMEGA # ---------------------------------------------------------------------------------------------- # Other Unicode characters # ---------------------------------------------------------------------------------------------- math \x2030 3456-1235 ‰ PER MILLE SIGN math \x0609 3456-1235 ؉ ARABIC-INDIC PER MILLE SIGN math \x27E8 4-126 ⟨ MATHEMATICAL LEFT ANGLE BRACKET math \x27E8 4-345 ⟩ MATHEMATICAL RIGHT ANGLE BRACKET math \x2260 4-2356 ≠ NOT EQUAL TO math \x2250 5-2356 ≠APPROACHES THE LIMIT math \x2264 126-2356 ≤ LESS-THAN OR EQUAL TO math \x2264 345-2356 ≥ GREATER-THAN OR EQUAL TO math \x22C5 3 â‹… DOT OPERATOR math \x2217 35 ∗ ASTERISK OPERATOR math \x2236 25 ∶ RATIO math \x2208 45-15 ∈ ELEMENT OF math \x2209 4-45-15 ∉ NOT AN ELEMENT OF # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/es-g1.ctb0000664000175000017500000000240012161041546013142 00000000000000# # Copyright (C) 2010, 2011 by DocArch # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ------------------------------------------------------------------------------- # # Spanish Braille # Created and maintained by Bert Frees # with the assistance of Carles Sadurní Anguita # # ---------------------------------------------------------------------------------------------- include es-chardefs.cti include braille-patterns.cti include es-translation.cti # --------------------------------------------------------------------------------------- liblouis-2.5.3/tables/ko.cti0000664000175000017500000136120312161041546012660 00000000000000# liblouis: Korean (Base table and chars) # # Based on the braille contraction table in BRLTTY # # Copyright (C) 1995-2012 by The BRLTTY Team. # # Copyright (C) 2012 Samuel Thibault # Copyright (C) 2012 by Mesar Hameed # Copyright (C) 2013 by Joseph Lee # # This is missing CHITUEUM*, CEONGCHIEUMSIOS, PANSIOS, YESIEUNG, RINHIEUH and # ARAEA for which I couldn't find documentation. Please contact me to fix # anything, as this table was generated from a C program. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. ## Comments: # There are three files that are needed for displaying Korean chars: # ko.cti, which contains punctuations, numbers and Unicode sign # opcodes for Korean (Hangul) chars. This file also includes Korean # dot/char patterns which are not affected by grade 1 and grade 2 # rules - that is, entries which are common to grade 1 and grade 2. # The "universal" entries fixes an issue where some Korean conscenant # dot patterns were confused with litdigit (although in the table, I # put after digit), which was a concern raised by a number of Korean # braille readers. For example, the conscenant dots fpr "ni-eun" is # dots 14, which are same as number 3. # ko-g1.ctb, uncontracted Korean table. Includes har/dot pairs used in # Grade 1 rules. Mostly deals with "after digit" situations. # ko-g2.ctb, contracted Korean braille. Includes same chars as ko1.ctb # which has different dot patterns in grade 2. These are shorthands # for uncontracted chars. Also includes certain strings which must be # uncontracted and a number of multi-char ones which has shorthand dot # patterns. # As for the structure of the files: ko.cti is the base table from # which ko-g1.ctb and ko-g2.ctb derives. Thus, unlike other tables, # ko-g2.ctb does not include ko-g1.ctb. This would help me extend the # table without major modifications - all I need to do is categorize # whether an entry is universal or grade-specific, then add the # entries in the appropriate file (if it is universal, then ko.cti # will be modified; if it is grade-specific, ko-g1 or ko-g2 will be # modified). # Globals (used for punctuations and others): include chardefs.cti All character definition opcodes include braille-patterns.cti # Braille indicators numsign 3456 number sign, just a dots operand capsign 6 begcaps 6-6 endcaps 6-3 firstwordital 46-46 lastworditalbefore 46 lenitalphrase 4 firstletterital 46-3 lastletterital 46-36 singleletterital 46-25 firstwordbold 456-456 lastwordboldbefore 456 lenboldphrase 4 begcomp 456-346 endcomp 456-156 # literary forms of the decimal digits include litdigits6Dots.uti # Letters are defined in chardefs.cti # punctuation prepunc ( 36 word ( 36 always ( 36 postpunc ) 36 word ) 36 always ) 36 prepunc " 236 postpunc " 356 word " 236 prepunc ` 236 prepunc ' 6-236 postpunc ' 356-3 word ' 4-3 word 'em = word 'tis = word 'twas = begnum # 3456 print number sign before number midnum , 5 postpunc , 5 word , 5 always , 5 decpoint . 3 midnum - 36 hyphen - 36 always \s--\s 36-36 always \s-\s 36-36 midnum \x00ad 36 postpunc . 256 word . 256 always . 256 postpunc ; 56-23 word ; 56-23 midnum : 5-2 postpunc : 5-2 always : 5-2 postpunc ! 456 always ! 456 midnum / 456-34 always / 456-34 always < 5-13 always = 25-25 always > 46-2 always + 5-235 postpunc ? 236 word ? 236 always ? 236 endnum st 34 endnum nd 1345-145 endnum rd 1235-145 endnum 's 3-234 endnum th 1456 endnum 's 3-234 always % 356-1234 midnum ^ 45 always ^ 456-126 always ~ 36-36 always & 4-12346 midnum * 5-23 always * 35-35 prepunc [ 236-3 word [ 236-3 always [ 236-3 postpunc ] 6-356 word ] 6-356 always ] 6-356 prepunc { 236-23 word { 236-23 always { 236-23 postpunc } 56-356 word } 56-356 always } 56-356 always @ 4-1 always \\ 4-1256 always | 456-1256 always \s-\s 36 always ..." 5-5-5-356 always … 5-5-5 always ... 5-5-5 always ...' 5-5-5-356-3 repeated .... 0 repeated ____ 6-36-36-3 repeated ---- 36 always .\s.\s." 3-3-3-356 always .\s.\s. 3-3-3 . . . begnum $ 256 always $ 4-256 always _ 6-36-36-3 always — 56-36-36-23 # special character sequences compbrl :// URLs compbrl () compbrl www. compbrl :: compbrl .com compbrl .edu compbrl .gov compbrl .ini compbrl .mil compbrl .net compbrl .org compbrl .doc compbrl .xml compbrl .xsl compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip context "\e"$a * always \\_ 56 letter sign before Roman page numbers pass2 @56-56 @56 pass2 @3-56 @3 #Korean section: #Detect English: letsign 356 #Basic letter patterns (to be used in G1 and G2): sign á„€ 4 sign á„ 6-4 sign á„‚ 14 sign ᄃ 24 sign á„„ 6-24 sign á„… 5 sign ᄆ 15 sign ᄇ 45 sign ᄈ 6-45 sign ᄉ 6 sign ᄊ 6-6 sign á„‹ 2356 sign ᄌ 46 sign á„ 6-46 sign ᄎ 56 sign á„ 124 sign á„ 125 sign á„‘ 145 sign á„’ 245 sign á„“ 14-4 sign á„” 14-14 sign á„• 14-24 sign á„– 14-45 sign á„— 24-4 sign ᄘ 5-14 sign á„™ 5-5 sign ᄚ 5-245 sign á„› 5 sign ᄜ 15-45 sign á„ 15 sign ᄞ 45-4 sign ᄟ 45-14 sign á„  45-24 sign á„¡ 45-6 sign á„¢ 45-6-4 sign á„£ 45-6-24 sign ᄤ 45-6-45 sign á„¥ 45-6-6 sign ᄦ 45-6-46 sign á„§ 45-46 sign ᄨ 45-56 sign á„© 45-125 sign ᄪ 45-145 sign á„« 45 sign ᄬ 45-45 sign á„­ 6-4 sign á„® 6-14 sign ᄯ 6-24 sign á„° 6-5 sign ᄱ 6-15 sign ᄲ 6-45 sign ᄳ 6-45-4 sign á„´ 6-6-6 sign ᄵ 6-2356 sign á„¶ 6-46 sign á„· 6-56 sign ᄸ 6-124 sign ᄹ 6-125 sign ᄺ 6-145 sign á„» 6-245 sign á… 4 sign á…‚ 24 sign á…ƒ 15 sign á…„ 45 sign á…… 6 sign á…‡ 2356-2356 sign á…ˆ 46 sign á…‰ 56 sign á…Š 125 sign á…‹ 145 sign á… 46-2356 sign á…’ 56-124 sign á…“ 56-245 sign á…– 145-45 sign á…— 145 sign á…˜ 245-245 sign á…Ÿ 0 sign á…  0 sign á…¡ 126 sign á…¢ 1235 sign á…£ 345 sign á…¤ 345-1235 sign á…¥ 234 sign á…¦ 1345 sign á…§ 156 sign á…¨ 34 sign á…© 136 sign á…ª 1236 sign á…« 1236-1235 sign á…¬ 13456 sign á…­ 346 sign á…® 134 sign á…¯ 1234 sign á…° 1234-1235 sign á…± 134-1235 sign á…² 146 sign á…³ 246 sign á…´ 2456 sign á…µ 135 sign á…¶ 126-136 sign á…· 126-134 sign á…¸ 345-136 sign á…¹ 345-346 sign á…º 234-136 sign á…» 234-134 sign á…¼ 234-246 sign á…½ 156-136 sign á…¾ 156-134 sign á…¿ 136-234 sign ᆀ 136-1345 sign ᆠ136-34 sign ᆂ 136-136 sign ᆃ 136-134 sign ᆄ 346-345 sign ᆅ 346-345-1235 sign ᆆ 346-156 sign ᆇ 346-136 sign ᆈ 346-135 sign ᆉ 134-126 sign ᆊ 134-1235 sign ᆋ 134-234-246 sign ᆌ 134-34 sign ᆠ134-134 sign ᆎ 146-126 sign ᆠ146-234 sign ᆠ146-1345 sign ᆑ 146-156 sign ᆒ 146-34 sign ᆓ 146-134 sign ᆔ 146-135 sign ᆕ 246-134 sign ᆖ 246-246 sign ᆗ 2456-134 sign ᆘ 135-126 sign ᆙ 135-345 sign ᆚ 135-136 sign ᆛ 135-134 sign ᆜ 135-246 sign ᆨ 1 sign ᆩ 1-1 sign ᆪ 1-3 sign ᆫ 25 sign ᆬ 25-13 sign ᆭ 25-356 sign ᆮ 35 sign ᆯ 2 sign ᆰ 2-1 sign ᆱ 2-26 sign ᆲ 2-12 sign ᆳ 2-3 sign ᆴ 2-236 sign ᆵ 2-256 sign ᆶ 2-356 sign ᆷ 26 sign ᆸ 12 sign ᆹ 12-3 sign ᆺ 3 sign ᆻ 3-4 sign ᆼ 2356 sign ᆽ 13 sign ᆾ 23 sign ᆿ 235 sign ᇀ 236 sign ᇠ256 sign ᇂ 356 sign ᇃ 1-2 sign ᇄ 1-3-1 sign ᇅ 25-1 sign ᇆ 25-35 sign ᇇ 25-3 sign ᇉ 25-236 sign ᇊ 35-1 sign ᇋ 35-2 sign ᇌ 2-1-3 sign ᇠ2-25 sign ᇎ 2-35 sign ᇠ2-35-356 sign ᇠ2-2 sign ᇑ 2-26-1 sign ᇒ 2-26-3 sign ᇓ 2-12-3 sign ᇔ 2-12-356 sign ᇕ 2-12 sign ᇖ 2-34 sign ᇘ 2-235 sign ᇚ 26-1 sign ᇛ 26-2 sign ᇜ 26-12 sign ᇠ26-3 sign ᇞ 26-34 sign ᇠ 26-23 sign ᇡ 26-356 sign ᇢ 26 sign ᇣ 12-2 sign ᇤ 12-256 sign ᇥ 12-356 sign ᇦ 12 sign ᇧ 3-1 sign ᇨ 3-35 sign ᇩ 3-2 sign ᇪ 3-12 sign ᇬ 1 sign ᇭ 1-1 sign ᇮ 2356-2356 sign ᇯ 235 sign ᇳ 256-12 sign ᇴ 256 sign ᇵ 356-25 sign ᇶ 356-2 sign ᇷ 356-26 sign ᇸ 356-12 sign ㄱ 4 sign ㄲ 6-4 sign ㄳ 4-6 sign ã„´ 14 sign ㄵ 14-46 sign ã„¶ 14-245 sign ã„· 24 sign ㄸ 6-24 sign ㄹ 5 sign ㄺ 5-4 sign ã„» 5-15 sign ㄼ 5-45 sign ㄽ 5-6 sign ㄾ 5-125 sign ã„¿ 5-145 sign ã…€ 5-245 sign ã… 15 sign ã…‚ 45 sign ã…ƒ 6-45 sign ã…„ 45-6 sign ã…… 6 sign ã…† 6-6 sign ã…‡ 1245 sign ã…ˆ 46 sign ã…‰ 6-46 sign ã…Š 56 sign ã…‹ 124 sign ã…Œ 125 sign ã… 145 sign ã…Ž 245 sign ã… 126 sign ã… 1235 sign ã…‘ 345 sign ã…’ 345-1235 sign ã…“ 234 sign ã…” 1345 sign ã…• 156 sign ã…– 34 sign ã…— 136 sign ã…˜ 1236 sign ã…™ 1236-1235 sign ã…š 13456 sign ã…› 346 sign ã…œ 134 sign ã… 1234 sign ã…ž 1234-1235 sign ã…Ÿ 134-1235 sign ã…  146 sign ã…¡ 246 sign ã…¢ 2456 sign ã…£ 135 sign ã…¤ 0 sign ã…¥ 25-25 sign ã…¦ 25-35 sign ã…§ 25-3 sign ã…© 2-1-3 sign ã…ª 2-35 sign ã…« 2-12-3 sign ã…® 26-12 sign ã…¯ 26-3 sign ã…± 26 sign ã…² 12-1 sign ã…³ 12-35 sign ã…´ 12-3-1 sign ã…µ 12-345 sign ã…¶ 12-13 sign ã…· 12-236 sign ã…¸ 12 sign ã…¹ 12-12 sign ã…º 3-1 sign ã…» 3-25 sign ã…¼ 3-35 sign ã…½ 3-12 sign ã…¾ 3-13 sign ㆀ 2356-2356 sign ㆄ 256 sign ㆅ 356-356 sign ㆇ 346-345 sign ㆈ 346-345-1235 sign ㆉ 346-135 sign ㆊ 146-156 sign ㆋ 146-34 sign ㆌ 146-135 sign ㈀ 1 sign ㈠25 sign ㈂ 35 sign ㈃ 2 sign ㈄ 26 sign ㈅ 12 sign ㈆ 3 sign ㈇ 2356 sign ㈈ 13 sign ㈉ 23 sign ㈊ 235 sign ㈋ 236 sign ㈌ 256 sign ㈠356 sign ㈎ 1-126 sign ㈠25-126 sign ㈠35-126 sign ㈑ 2-126 sign ㈒ 26-126 sign ㈓ 12-126 sign ㈔ 3-126 sign ㈕ 126 sign ㈖ 13-126 sign ㈗ 23-126 sign ㈘ 235-126 sign ㈙ 236-126 sign ㈚ 256-126 sign ㈛ 356-126 sign ㈜ 13-134 sign ㉠ 1 sign ㉡ 25 sign ㉢ 35 sign ㉣ 2 sign ㉤ 26 sign ㉥ 12 sign ㉦ 3 sign ㉧ 2356 sign ㉨ 13 sign ㉩ 23 sign ㉪ 235 sign ㉫ 236 sign ㉬ 256 sign ㉭ 356 sign ㉮ 1-126 sign ㉯ 25-126 sign ㉰ 35-126 sign ㉱ 2-126 sign ㉲ 26-126 sign ㉳ 12-126 sign ㉴ 3-126 sign ㉵ 126 sign ㉶ 13-126 sign ㉷ 23-126 sign ㉸ 235-126 sign ㉹ 236-126 sign ㉺ 256-126 sign ㉻ 356-126 sign ê°€ 4-126 sign ê° 4-126-1 sign ê°‚ 4-126-1-1 sign ê°ƒ 4-126-1-3 sign ê°„ 4-126-25 sign ê°… 4-126-25-13 sign ê°† 4-126-25-356 sign ê°‡ 4-126-35 sign ê°ˆ 4-126-2 sign ê°‰ 4-126-2-1 sign ê°Š 4-126-2-26 sign ê°‹ 4-126-2-12 sign ê°Œ 4-126-2-3 sign ê° 4-126-2-236 sign ê°Ž 4-126-2-256 sign ê° 4-126-2-356 sign ê° 4-126-26 sign ê°‘ 4-126-12 sign ê°’ 4-126-12-3 sign ê°“ 4-126-3 sign ê°” 4-126-34 sign ê°• 4-126-2356 sign ê°– 4-126-13 sign ê°— 4-126-23 sign ê°˜ 4-126-235 sign ê°™ 4-126-236 sign ê°š 4-126-256 sign ê°› 4-126-356 sign ê°œ 4-1235 sign ê° 4-1235-1 sign ê°ž 4-1235-1-1 sign ê°Ÿ 4-1235-1-3 sign ê°  4-1235-25 sign ê°¡ 4-1235-25-13 sign ê°¢ 4-1235-25-356 sign ê°£ 4-1235-35 sign ê°¤ 4-1235-2 sign ê°¥ 4-1235-2-1 sign ê°¦ 4-1235-2-26 sign ê°§ 4-1235-2-12 sign ê°¨ 4-1235-2-3 sign ê°© 4-1235-2-236 sign ê°ª 4-1235-2-256 sign ê°« 4-1235-2-356 sign ê°¬ 4-1235-26 sign ê°­ 4-1235-12 sign ê°® 4-1235-12-3 sign ê°¯ 4-1235-3 sign ê°° 4-1235-34 sign ê°± 4-1235-2356 sign ê°² 4-1235-13 sign ê°³ 4-1235-23 sign ê°´ 4-1235-235 sign ê°µ 4-1235-236 sign ê°¶ 4-1235-256 sign ê°· 4-1235-356 sign ê°¸ 4-345 sign ê°¹ 4-345-1 sign ê°º 4-345-1-1 sign ê°» 4-345-1-3 sign ê°¼ 4-345-25 sign ê°½ 4-345-25-13 sign ê°¾ 4-345-25-356 sign ê°¿ 4-345-35 sign ê±€ 4-345-2 sign ê± 4-345-2-1 sign 걂 4-345-2-26 sign 걃 4-345-2-12 sign 걄 4-345-2-3 sign ê±… 4-345-2-236 sign 걆 4-345-2-256 sign 걇 4-345-2-356 sign 걈 4-345-26 sign 걉 4-345-12 sign 걊 4-345-12-3 sign 걋 4-345-3 sign 걌 4-345-34 sign ê± 4-345-2356 sign 걎 4-345-13 sign ê± 4-345-23 sign ê± 4-345-235 sign 걑 4-345-236 sign ê±’ 4-345-256 sign 걓 4-345-356 sign ê±” 4-345-1235 sign 걕 4-345-1235-1 sign ê±– 4-345-1235-1-1 sign ê±— 4-345-1235-1-3 sign 걘 4-345-1235-25 sign ê±™ 4-345-1235-25-13 sign 걚 4-345-1235-25-356 sign ê±› 4-345-1235-35 sign 걜 4-345-1235-2 sign ê± 4-345-1235-2-1 sign 걞 4-345-1235-2-26 sign 걟 4-345-1235-2-12 sign ê±  4-345-1235-2-3 sign 걡 4-345-1235-2-236 sign ê±¢ 4-345-1235-2-256 sign ê±£ 4-345-1235-2-356 sign 걤 4-345-1235-26 sign ê±¥ 4-345-1235-12 sign 걦 4-345-1235-12-3 sign ê±§ 4-345-1235-3 sign 걨 4-345-1235-34 sign 걩 4-345-1235-2356 sign 걪 4-345-1235-13 sign 걫 4-345-1235-23 sign 걬 4-345-1235-235 sign ê±­ 4-345-1235-236 sign ê±® 4-345-1235-256 sign 걯 4-345-1235-356 sign ê±° 4-234 sign ê±± 4-234-1 sign ê±² 4-234-1-1 sign ê±³ 4-234-1-3 sign ê±´ 4-234-25 sign ê±µ 4-234-25-13 sign ê±¶ 4-234-25-356 sign ê±· 4-234-35 sign 걸 4-234-2 sign ê±¹ 4-234-2-1 sign 걺 4-234-2-26 sign ê±» 4-234-2-12 sign ê±¼ 4-234-2-3 sign ê±½ 4-234-2-236 sign ê±¾ 4-234-2-256 sign 걿 4-234-2-356 sign ê²€ 4-234-26 sign ê² 4-234-12 sign 겂 4-234-12-3 sign 것 4-234-3 sign 겄 4-234-34 sign ê²… 4-234-2356 sign 겆 4-234-13 sign 겇 4-234-23 sign 겈 4-234-235 sign 겉 4-234-236 sign 겊 4-234-256 sign 겋 4-234-356 sign 게 4-1345 sign ê² 4-1345-1 sign 겎 4-1345-1-1 sign ê² 4-1345-1-3 sign ê² 4-1345-25 sign 겑 4-1345-25-13 sign ê²’ 4-1345-25-356 sign 겓 4-1345-35 sign ê²” 4-1345-2 sign 겕 4-1345-2-1 sign ê²– 4-1345-2-26 sign ê²— 4-1345-2-12 sign 겘 4-1345-2-3 sign ê²™ 4-1345-2-236 sign 겚 4-1345-2-256 sign ê²› 4-1345-2-356 sign 겜 4-1345-26 sign ê² 4-1345-12 sign 겞 4-1345-12-3 sign 겟 4-1345-3 sign ê²  4-1345-34 sign 겡 4-1345-2356 sign ê²¢ 4-1345-13 sign ê²£ 4-1345-23 sign 겤 4-1345-235 sign ê²¥ 4-1345-236 sign 겦 4-1345-256 sign ê²§ 4-1345-356 sign 겨 4-156 sign 격 4-156-1 sign 겪 4-156-1-1 sign 겫 4-156-1-3 sign 견 4-156-25 sign ê²­ 4-156-25-13 sign ê²® 4-156-25-356 sign 겯 4-156-35 sign ê²° 4-156-2 sign ê²± 4-156-2-1 sign ê²² 4-156-2-26 sign ê²³ 4-156-2-12 sign ê²´ 4-156-2-3 sign ê²µ 4-156-2-236 sign ê²¶ 4-156-2-256 sign ê²· 4-156-2-356 sign 겸 4-156-26 sign ê²¹ 4-156-12 sign 겺 4-156-12-3 sign ê²» 4-156-3 sign ê²¼ 4-156-34 sign ê²½ 4-156-2356 sign ê²¾ 4-156-13 sign 겿 4-156-23 sign ê³€ 4-156-235 sign ê³ 4-156-236 sign 곂 4-156-256 sign 곃 4-156-356 sign 계 4-34 sign ê³… 4-34-1 sign 곆 4-34-1-1 sign 곇 4-34-1-3 sign 곈 4-34-25 sign 곉 4-34-25-13 sign 곊 4-34-25-356 sign 곋 4-34-35 sign 곌 4-34-2 sign ê³ 4-34-2-1 sign 곎 4-34-2-26 sign ê³ 4-34-2-12 sign ê³ 4-34-2-3 sign 곑 4-34-2-236 sign ê³’ 4-34-2-256 sign 곓 4-34-2-356 sign ê³” 4-34-26 sign 곕 4-34-12 sign ê³– 4-34-12-3 sign ê³— 4-34-3 sign 곘 4-34-34 sign ê³™ 4-34-2356 sign 곚 4-34-13 sign ê³› 4-34-23 sign 곜 4-34-235 sign ê³ 4-34-236 sign 곞 4-34-256 sign 곟 4-34-356 sign ê³  4-136 sign 곡 4-136-1 sign ê³¢ 4-136-1-1 sign ê³£ 4-136-1-3 sign 곤 4-136-25 sign ê³¥ 4-136-25-13 sign 곦 4-136-25-356 sign ê³§ 4-136-35 sign 골 4-136-2 sign 곩 4-136-2-1 sign 곪 4-136-2-26 sign 곫 4-136-2-12 sign 곬 4-136-2-3 sign ê³­ 4-136-2-236 sign ê³® 4-136-2-256 sign 곯 4-136-2-356 sign ê³° 4-136-26 sign ê³± 4-136-12 sign ê³² 4-136-12-3 sign ê³³ 4-136-3 sign ê³´ 4-136-34 sign ê³µ 4-136-2356 sign ê³¶ 4-136-13 sign ê³· 4-136-23 sign 곸 4-136-235 sign ê³¹ 4-136-236 sign 곺 4-136-256 sign ê³» 4-136-356 sign ê³¼ 4-1236 sign ê³½ 4-1236-1 sign ê³¾ 4-1236-1-1 sign 곿 4-1236-1-3 sign ê´€ 4-1236-25 sign ê´ 4-1236-25-13 sign ê´‚ 4-1236-25-356 sign ê´ƒ 4-1236-35 sign ê´„ 4-1236-2 sign ê´… 4-1236-2-1 sign ê´† 4-1236-2-26 sign ê´‡ 4-1236-2-12 sign ê´ˆ 4-1236-2-3 sign ê´‰ 4-1236-2-236 sign ê´Š 4-1236-2-256 sign ê´‹ 4-1236-2-356 sign ê´Œ 4-1236-26 sign ê´ 4-1236-12 sign ê´Ž 4-1236-12-3 sign ê´ 4-1236-3 sign ê´ 4-1236-34 sign ê´‘ 4-1236-2356 sign ê´’ 4-1236-13 sign ê´“ 4-1236-23 sign ê´” 4-1236-235 sign ê´• 4-1236-236 sign ê´– 4-1236-256 sign ê´— 4-1236-356 sign ê´˜ 4-1236-1235 sign ê´™ 4-1236-1235-1 sign ê´š 4-1236-1235-1-1 sign ê´› 4-1236-1235-1-3 sign ê´œ 4-1236-1235-25 sign ê´ 4-1236-1235-25-13 sign ê´ž 4-1236-1235-25-356 sign ê´Ÿ 4-1236-1235-35 sign ê´  4-1236-1235-2 sign ê´¡ 4-1236-1235-2-1 sign ê´¢ 4-1236-1235-2-26 sign ê´£ 4-1236-1235-2-12 sign ê´¤ 4-1236-1235-2-3 sign ê´¥ 4-1236-1235-2-236 sign ê´¦ 4-1236-1235-2-256 sign ê´§ 4-1236-1235-2-356 sign ê´¨ 4-1236-1235-26 sign ê´© 4-1236-1235-12 sign ê´ª 4-1236-1235-12-3 sign ê´« 4-1236-1235-3 sign ê´¬ 4-1236-1235-34 sign ê´­ 4-1236-1235-2356 sign ê´® 4-1236-1235-13 sign ê´¯ 4-1236-1235-23 sign ê´° 4-1236-1235-235 sign ê´± 4-1236-1235-236 sign ê´² 4-1236-1235-256 sign ê´³ 4-1236-1235-356 sign ê´´ 4-13456 sign ê´µ 4-13456-1 sign ê´¶ 4-13456-1-1 sign ê´· 4-13456-1-3 sign ê´¸ 4-13456-25 sign ê´¹ 4-13456-25-13 sign ê´º 4-13456-25-356 sign ê´» 4-13456-35 sign ê´¼ 4-13456-2 sign ê´½ 4-13456-2-1 sign ê´¾ 4-13456-2-26 sign ê´¿ 4-13456-2-12 sign êµ€ 4-13456-2-3 sign êµ 4-13456-2-236 sign 굂 4-13456-2-256 sign 굃 4-13456-2-356 sign 굄 4-13456-26 sign êµ… 4-13456-12 sign 굆 4-13456-12-3 sign 굇 4-13456-3 sign 굈 4-13456-34 sign 굉 4-13456-2356 sign 굊 4-13456-13 sign 굋 4-13456-23 sign 굌 4-13456-235 sign êµ 4-13456-236 sign 굎 4-13456-256 sign êµ 4-13456-356 sign êµ 4-346 sign 굑 4-346-1 sign êµ’ 4-346-1-1 sign 굓 4-346-1-3 sign êµ” 4-346-25 sign 굕 4-346-25-13 sign êµ– 4-346-25-356 sign êµ— 4-346-35 sign 굘 4-346-2 sign êµ™ 4-346-2-1 sign 굚 4-346-2-26 sign êµ› 4-346-2-12 sign 굜 4-346-2-3 sign êµ 4-346-2-236 sign 굞 4-346-2-256 sign 굟 4-346-2-356 sign êµ  4-346-26 sign 굡 4-346-12 sign êµ¢ 4-346-12-3 sign êµ£ 4-346-3 sign 굤 4-346-34 sign êµ¥ 4-346-2356 sign 굦 4-346-13 sign êµ§ 4-346-23 sign 굨 4-346-235 sign 굩 4-346-236 sign 굪 4-346-256 sign 굫 4-346-356 sign 구 4-134 sign êµ­ 4-134-1 sign êµ® 4-134-1-1 sign 굯 4-134-1-3 sign êµ° 4-134-25 sign êµ± 4-134-25-13 sign êµ² 4-134-25-356 sign êµ³ 4-134-35 sign êµ´ 4-134-2 sign êµµ 4-134-2-1 sign êµ¶ 4-134-2-26 sign êµ· 4-134-2-12 sign 굸 4-134-2-3 sign êµ¹ 4-134-2-236 sign 굺 4-134-2-256 sign êµ» 4-134-2-356 sign êµ¼ 4-134-26 sign êµ½ 4-134-12 sign êµ¾ 4-134-12-3 sign 굿 4-134-3 sign ê¶€ 4-134-34 sign ê¶ 4-134-2356 sign ê¶‚ 4-134-13 sign 궃 4-134-23 sign ê¶„ 4-134-235 sign ê¶… 4-134-236 sign 궆 4-134-256 sign 궇 4-134-356 sign 궈 4-1234 sign 궉 4-1234-1 sign ê¶Š 4-1234-1-1 sign ê¶‹ 4-1234-1-3 sign ê¶Œ 4-1234-25 sign ê¶ 4-1234-25-13 sign ê¶Ž 4-1234-25-356 sign ê¶ 4-1234-35 sign ê¶ 4-1234-2 sign ê¶‘ 4-1234-2-1 sign ê¶’ 4-1234-2-26 sign ê¶“ 4-1234-2-12 sign ê¶” 4-1234-2-3 sign ê¶• 4-1234-2-236 sign ê¶– 4-1234-2-256 sign ê¶— 4-1234-2-356 sign 궘 4-1234-26 sign ê¶™ 4-1234-12 sign ê¶š 4-1234-12-3 sign ê¶› 4-1234-3 sign ê¶œ 4-1234-34 sign ê¶ 4-1234-2356 sign ê¶ž 4-1234-13 sign ê¶Ÿ 4-1234-23 sign ê¶  4-1234-235 sign ê¶¡ 4-1234-236 sign ê¶¢ 4-1234-256 sign ê¶£ 4-1234-356 sign 궤 4-1234-1235 sign ê¶¥ 4-1234-1235-1 sign 궦 4-1234-1235-1-1 sign ê¶§ 4-1234-1235-1-3 sign 궨 4-1234-1235-25 sign ê¶© 4-1234-1235-25-13 sign 궪 4-1234-1235-25-356 sign ê¶« 4-1234-1235-35 sign 궬 4-1234-1235-2 sign ê¶­ 4-1234-1235-2-1 sign ê¶® 4-1234-1235-2-26 sign 궯 4-1234-1235-2-12 sign ê¶° 4-1234-1235-2-3 sign ê¶± 4-1234-1235-2-236 sign ê¶² 4-1234-1235-2-256 sign ê¶³ 4-1234-1235-2-356 sign ê¶´ 4-1234-1235-26 sign ê¶µ 4-1234-1235-12 sign ê¶¶ 4-1234-1235-12-3 sign ê¶· 4-1234-1235-3 sign 궸 4-1234-1235-34 sign ê¶¹ 4-1234-1235-2356 sign 궺 4-1234-1235-13 sign ê¶» 4-1234-1235-23 sign ê¶¼ 4-1234-1235-235 sign ê¶½ 4-1234-1235-236 sign ê¶¾ 4-1234-1235-256 sign ê¶¿ 4-1234-1235-356 sign ê·€ 4-134-1235 sign ê· 4-134-1235-1 sign ê·‚ 4-134-1235-1-1 sign ê·ƒ 4-134-1235-1-3 sign ê·„ 4-134-1235-25 sign ê·… 4-134-1235-25-13 sign ê·† 4-134-1235-25-356 sign ê·‡ 4-134-1235-35 sign ê·ˆ 4-134-1235-2 sign ê·‰ 4-134-1235-2-1 sign ê·Š 4-134-1235-2-26 sign ê·‹ 4-134-1235-2-12 sign ê·Œ 4-134-1235-2-3 sign ê· 4-134-1235-2-236 sign ê·Ž 4-134-1235-2-256 sign ê· 4-134-1235-2-356 sign ê· 4-134-1235-26 sign ê·‘ 4-134-1235-12 sign ê·’ 4-134-1235-12-3 sign ê·“ 4-134-1235-3 sign ê·” 4-134-1235-34 sign ê·• 4-134-1235-2356 sign ê·– 4-134-1235-13 sign ê·— 4-134-1235-23 sign ê·˜ 4-134-1235-235 sign ê·™ 4-134-1235-236 sign ê·š 4-134-1235-256 sign ê·› 4-134-1235-356 sign ê·œ 4-146 sign ê· 4-146-1 sign ê·ž 4-146-1-1 sign ê·Ÿ 4-146-1-3 sign ê·  4-146-25 sign ê·¡ 4-146-25-13 sign ê·¢ 4-146-25-356 sign ê·£ 4-146-35 sign ê·¤ 4-146-2 sign ê·¥ 4-146-2-1 sign ê·¦ 4-146-2-26 sign ê·§ 4-146-2-12 sign ê·¨ 4-146-2-3 sign ê·© 4-146-2-236 sign ê·ª 4-146-2-256 sign ê·« 4-146-2-356 sign ê·¬ 4-146-26 sign ê·­ 4-146-12 sign ê·® 4-146-12-3 sign ê·¯ 4-146-3 sign ê·° 4-146-34 sign ê·± 4-146-2356 sign ê·² 4-146-13 sign ê·³ 4-146-23 sign ê·´ 4-146-235 sign ê·µ 4-146-236 sign ê·¶ 4-146-256 sign ê·· 4-146-356 sign ê·¸ 4-246 sign ê·¹ 4-246-1 sign ê·º 4-246-1-1 sign ê·» 4-246-1-3 sign ê·¼ 4-246-25 sign ê·½ 4-246-25-13 sign ê·¾ 4-246-25-356 sign ê·¿ 4-246-35 sign 글 4-246-2 sign ê¸ 4-246-2-1 sign 긂 4-246-2-26 sign 긃 4-246-2-12 sign 긄 4-246-2-3 sign 긅 4-246-2-236 sign 긆 4-246-2-256 sign 긇 4-246-2-356 sign 금 4-246-26 sign 급 4-246-12 sign 긊 4-246-12-3 sign 긋 4-246-3 sign 긌 4-246-34 sign ê¸ 4-246-2356 sign 긎 4-246-13 sign ê¸ 4-246-23 sign ê¸ 4-246-235 sign 긑 4-246-236 sign 긒 4-246-256 sign 긓 4-246-356 sign 긔 4-2456 sign 긕 4-2456-1 sign 긖 4-2456-1-1 sign 긗 4-2456-1-3 sign 긘 4-2456-25 sign 긙 4-2456-25-13 sign 긚 4-2456-25-356 sign 긛 4-2456-35 sign 긜 4-2456-2 sign ê¸ 4-2456-2-1 sign 긞 4-2456-2-26 sign 긟 4-2456-2-12 sign 긠 4-2456-2-3 sign 긡 4-2456-2-236 sign 긢 4-2456-2-256 sign 긣 4-2456-2-356 sign 긤 4-2456-26 sign 긥 4-2456-12 sign 긦 4-2456-12-3 sign 긧 4-2456-3 sign 긨 4-2456-34 sign 긩 4-2456-2356 sign 긪 4-2456-13 sign 긫 4-2456-23 sign 긬 4-2456-235 sign 긭 4-2456-236 sign 긮 4-2456-256 sign 긯 4-2456-356 sign 기 4-135 sign 긱 4-135-1 sign 긲 4-135-1-1 sign 긳 4-135-1-3 sign 긴 4-135-25 sign 긵 4-135-25-13 sign 긶 4-135-25-356 sign 긷 4-135-35 sign 길 4-135-2 sign 긹 4-135-2-1 sign 긺 4-135-2-26 sign 긻 4-135-2-12 sign 긼 4-135-2-3 sign 긽 4-135-2-236 sign 긾 4-135-2-256 sign 긿 4-135-2-356 sign ê¹€ 4-135-26 sign ê¹ 4-135-12 sign 깂 4-135-12-3 sign 깃 4-135-3 sign 깄 4-135-34 sign ê¹… 4-135-2356 sign 깆 4-135-13 sign 깇 4-135-23 sign 깈 4-135-235 sign 깉 4-135-236 sign 깊 4-135-256 sign 깋 4-135-356 sign 까 6-4-126 sign ê¹ 6-4-126-1 sign 깎 6-4-126-1-1 sign ê¹ 6-4-126-1-3 sign ê¹ 6-4-126-25 sign 깑 6-4-126-25-13 sign ê¹’ 6-4-126-25-356 sign 깓 6-4-126-35 sign ê¹” 6-4-126-2 sign 깕 6-4-126-2-1 sign ê¹– 6-4-126-2-26 sign ê¹— 6-4-126-2-12 sign 깘 6-4-126-2-3 sign ê¹™ 6-4-126-2-236 sign 깚 6-4-126-2-256 sign ê¹› 6-4-126-2-356 sign 깜 6-4-126-26 sign ê¹ 6-4-126-12 sign 깞 6-4-126-12-3 sign 깟 6-4-126-3 sign ê¹  6-4-126-34 sign 깡 6-4-126-2356 sign ê¹¢ 6-4-126-13 sign ê¹£ 6-4-126-23 sign 깤 6-4-126-235 sign ê¹¥ 6-4-126-236 sign 깦 6-4-126-256 sign ê¹§ 6-4-126-356 sign 깨 6-4-1235 sign 깩 6-4-1235-1 sign 깪 6-4-1235-1-1 sign 깫 6-4-1235-1-3 sign 깬 6-4-1235-25 sign ê¹­ 6-4-1235-25-13 sign ê¹® 6-4-1235-25-356 sign 깯 6-4-1235-35 sign ê¹° 6-4-1235-2 sign ê¹± 6-4-1235-2-1 sign ê¹² 6-4-1235-2-26 sign ê¹³ 6-4-1235-2-12 sign ê¹´ 6-4-1235-2-3 sign ê¹µ 6-4-1235-2-236 sign ê¹¶ 6-4-1235-2-256 sign ê¹· 6-4-1235-2-356 sign 깸 6-4-1235-26 sign ê¹¹ 6-4-1235-12 sign 깺 6-4-1235-12-3 sign ê¹» 6-4-1235-3 sign ê¹¼ 6-4-1235-34 sign ê¹½ 6-4-1235-2356 sign ê¹¾ 6-4-1235-13 sign 깿 6-4-1235-23 sign 꺀 6-4-1235-235 sign êº 6-4-1235-236 sign 꺂 6-4-1235-256 sign 꺃 6-4-1235-356 sign 꺄 6-4-345 sign 꺅 6-4-345-1 sign 꺆 6-4-345-1-1 sign 꺇 6-4-345-1-3 sign 꺈 6-4-345-25 sign 꺉 6-4-345-25-13 sign 꺊 6-4-345-25-356 sign 꺋 6-4-345-35 sign 꺌 6-4-345-2 sign êº 6-4-345-2-1 sign 꺎 6-4-345-2-26 sign êº 6-4-345-2-12 sign êº 6-4-345-2-3 sign 꺑 6-4-345-2-236 sign 꺒 6-4-345-2-256 sign 꺓 6-4-345-2-356 sign 꺔 6-4-345-26 sign 꺕 6-4-345-12 sign 꺖 6-4-345-12-3 sign 꺗 6-4-345-3 sign 꺘 6-4-345-34 sign 꺙 6-4-345-2356 sign 꺚 6-4-345-13 sign 꺛 6-4-345-23 sign 꺜 6-4-345-235 sign êº 6-4-345-236 sign 꺞 6-4-345-256 sign 꺟 6-4-345-356 sign 꺠 6-4-345-1235 sign 꺡 6-4-345-1235-1 sign 꺢 6-4-345-1235-1-1 sign 꺣 6-4-345-1235-1-3 sign 꺤 6-4-345-1235-25 sign 꺥 6-4-345-1235-25-13 sign 꺦 6-4-345-1235-25-356 sign 꺧 6-4-345-1235-35 sign 꺨 6-4-345-1235-2 sign 꺩 6-4-345-1235-2-1 sign 꺪 6-4-345-1235-2-26 sign 꺫 6-4-345-1235-2-12 sign 꺬 6-4-345-1235-2-3 sign 꺭 6-4-345-1235-2-236 sign 꺮 6-4-345-1235-2-256 sign 꺯 6-4-345-1235-2-356 sign 꺰 6-4-345-1235-26 sign 꺱 6-4-345-1235-12 sign 꺲 6-4-345-1235-12-3 sign 꺳 6-4-345-1235-3 sign 꺴 6-4-345-1235-34 sign 꺵 6-4-345-1235-2356 sign 꺶 6-4-345-1235-13 sign 꺷 6-4-345-1235-23 sign 꺸 6-4-345-1235-235 sign 꺹 6-4-345-1235-236 sign 꺺 6-4-345-1235-256 sign 꺻 6-4-345-1235-356 sign 꺼 6-4-234 sign 꺽 6-4-234-1 sign 꺾 6-4-234-1-1 sign 꺿 6-4-234-1-3 sign 껀 6-4-234-25 sign ê» 6-4-234-25-13 sign 껂 6-4-234-25-356 sign 껃 6-4-234-35 sign 껄 6-4-234-2 sign ê»… 6-4-234-2-1 sign 껆 6-4-234-2-26 sign 껇 6-4-234-2-12 sign 껈 6-4-234-2-3 sign 껉 6-4-234-2-236 sign 껊 6-4-234-2-256 sign 껋 6-4-234-2-356 sign 껌 6-4-234-26 sign ê» 6-4-234-12 sign 껎 6-4-234-12-3 sign ê» 6-4-234-3 sign ê» 6-4-234-34 sign 껑 6-4-234-2356 sign ê»’ 6-4-234-13 sign 껓 6-4-234-23 sign ê»” 6-4-234-235 sign 껕 6-4-234-236 sign ê»– 6-4-234-256 sign ê»— 6-4-234-356 sign 께 6-4-1345 sign ê»™ 6-4-1345-1 sign 껚 6-4-1345-1-1 sign ê»› 6-4-1345-1-3 sign 껜 6-4-1345-25 sign ê» 6-4-1345-25-13 sign 껞 6-4-1345-25-356 sign 껟 6-4-1345-35 sign ê»  6-4-1345-2 sign 껡 6-4-1345-2-1 sign 껢 6-4-1345-2-26 sign 껣 6-4-1345-2-12 sign 껤 6-4-1345-2-3 sign 껥 6-4-1345-2-236 sign 껦 6-4-1345-2-256 sign ê»§ 6-4-1345-2-356 sign 껨 6-4-1345-26 sign 껩 6-4-1345-12 sign 껪 6-4-1345-12-3 sign 껫 6-4-1345-3 sign 껬 6-4-1345-34 sign ê»­ 6-4-1345-2356 sign ê»® 6-4-1345-13 sign 껯 6-4-1345-23 sign ê»° 6-4-1345-235 sign ê»± 6-4-1345-236 sign 껲 6-4-1345-256 sign 껳 6-4-1345-356 sign ê»´ 6-4-156 sign 껵 6-4-156-1 sign ê»¶ 6-4-156-1-1 sign ê»· 6-4-156-1-3 sign 껸 6-4-156-25 sign 껹 6-4-156-25-13 sign 껺 6-4-156-25-356 sign ê»» 6-4-156-35 sign 껼 6-4-156-2 sign 껽 6-4-156-2-1 sign 껾 6-4-156-2-26 sign 껿 6-4-156-2-12 sign ê¼€ 6-4-156-2-3 sign ê¼ 6-4-156-2-236 sign 꼂 6-4-156-2-256 sign 꼃 6-4-156-2-356 sign 꼄 6-4-156-26 sign ê¼… 6-4-156-12 sign 꼆 6-4-156-12-3 sign 꼇 6-4-156-3 sign 꼈 6-4-156-34 sign 꼉 6-4-156-2356 sign 꼊 6-4-156-13 sign 꼋 6-4-156-23 sign 꼌 6-4-156-235 sign ê¼ 6-4-156-236 sign 꼎 6-4-156-256 sign ê¼ 6-4-156-356 sign ê¼ 6-4-34 sign 꼑 6-4-34-1 sign ê¼’ 6-4-34-1-1 sign 꼓 6-4-34-1-3 sign ê¼” 6-4-34-25 sign 꼕 6-4-34-25-13 sign ê¼– 6-4-34-25-356 sign ê¼— 6-4-34-35 sign 꼘 6-4-34-2 sign ê¼™ 6-4-34-2-1 sign 꼚 6-4-34-2-26 sign ê¼› 6-4-34-2-12 sign 꼜 6-4-34-2-3 sign ê¼ 6-4-34-2-236 sign 꼞 6-4-34-2-256 sign 꼟 6-4-34-2-356 sign ê¼  6-4-34-26 sign 꼡 6-4-34-12 sign ê¼¢ 6-4-34-12-3 sign ê¼£ 6-4-34-3 sign 꼤 6-4-34-34 sign ê¼¥ 6-4-34-2356 sign 꼦 6-4-34-13 sign ê¼§ 6-4-34-23 sign 꼨 6-4-34-235 sign 꼩 6-4-34-236 sign 꼪 6-4-34-256 sign 꼫 6-4-34-356 sign 꼬 6-4-136 sign ê¼­ 6-4-136-1 sign ê¼® 6-4-136-1-1 sign 꼯 6-4-136-1-3 sign ê¼° 6-4-136-25 sign ê¼± 6-4-136-25-13 sign ê¼² 6-4-136-25-356 sign ê¼³ 6-4-136-35 sign ê¼´ 6-4-136-2 sign ê¼µ 6-4-136-2-1 sign ê¼¶ 6-4-136-2-26 sign ê¼· 6-4-136-2-12 sign 꼸 6-4-136-2-3 sign ê¼¹ 6-4-136-2-236 sign 꼺 6-4-136-2-256 sign ê¼» 6-4-136-2-356 sign ê¼¼ 6-4-136-26 sign ê¼½ 6-4-136-12 sign ê¼¾ 6-4-136-12-3 sign 꼿 6-4-136-3 sign ê½€ 6-4-136-34 sign ê½ 6-4-136-2356 sign 꽂 6-4-136-13 sign 꽃 6-4-136-23 sign 꽄 6-4-136-235 sign ê½… 6-4-136-236 sign 꽆 6-4-136-256 sign 꽇 6-4-136-356 sign 꽈 6-4-1236 sign 꽉 6-4-1236-1 sign 꽊 6-4-1236-1-1 sign 꽋 6-4-1236-1-3 sign 꽌 6-4-1236-25 sign ê½ 6-4-1236-25-13 sign 꽎 6-4-1236-25-356 sign ê½ 6-4-1236-35 sign ê½ 6-4-1236-2 sign 꽑 6-4-1236-2-1 sign ê½’ 6-4-1236-2-26 sign 꽓 6-4-1236-2-12 sign ê½” 6-4-1236-2-3 sign 꽕 6-4-1236-2-236 sign ê½– 6-4-1236-2-256 sign ê½— 6-4-1236-2-356 sign 꽘 6-4-1236-26 sign ê½™ 6-4-1236-12 sign 꽚 6-4-1236-12-3 sign ê½› 6-4-1236-3 sign 꽜 6-4-1236-34 sign ê½ 6-4-1236-2356 sign 꽞 6-4-1236-13 sign 꽟 6-4-1236-23 sign ê½  6-4-1236-235 sign 꽡 6-4-1236-236 sign ê½¢ 6-4-1236-256 sign ê½£ 6-4-1236-356 sign 꽤 6-4-1236-1235 sign ê½¥ 6-4-1236-1235-1 sign 꽦 6-4-1236-1235-1-1 sign ê½§ 6-4-1236-1235-1-3 sign 꽨 6-4-1236-1235-25 sign 꽩 6-4-1236-1235-25-13 sign 꽪 6-4-1236-1235-25-356 sign 꽫 6-4-1236-1235-35 sign 꽬 6-4-1236-1235-2 sign ê½­ 6-4-1236-1235-2-1 sign ê½® 6-4-1236-1235-2-26 sign 꽯 6-4-1236-1235-2-12 sign ê½° 6-4-1236-1235-2-3 sign ê½± 6-4-1236-1235-2-236 sign ê½² 6-4-1236-1235-2-256 sign ê½³ 6-4-1236-1235-2-356 sign ê½´ 6-4-1236-1235-26 sign ê½µ 6-4-1236-1235-12 sign ê½¶ 6-4-1236-1235-12-3 sign ê½· 6-4-1236-1235-3 sign 꽸 6-4-1236-1235-34 sign ê½¹ 6-4-1236-1235-2356 sign 꽺 6-4-1236-1235-13 sign ê½» 6-4-1236-1235-23 sign ê½¼ 6-4-1236-1235-235 sign ê½½ 6-4-1236-1235-236 sign ê½¾ 6-4-1236-1235-256 sign 꽿 6-4-1236-1235-356 sign ê¾€ 6-4-13456 sign ê¾ 6-4-13456-1 sign 꾂 6-4-13456-1-1 sign 꾃 6-4-13456-1-3 sign 꾄 6-4-13456-25 sign ê¾… 6-4-13456-25-13 sign 꾆 6-4-13456-25-356 sign 꾇 6-4-13456-35 sign 꾈 6-4-13456-2 sign 꾉 6-4-13456-2-1 sign 꾊 6-4-13456-2-26 sign 꾋 6-4-13456-2-12 sign 꾌 6-4-13456-2-3 sign ê¾ 6-4-13456-2-236 sign 꾎 6-4-13456-2-256 sign ê¾ 6-4-13456-2-356 sign ê¾ 6-4-13456-26 sign 꾑 6-4-13456-12 sign ê¾’ 6-4-13456-12-3 sign 꾓 6-4-13456-3 sign ê¾” 6-4-13456-34 sign 꾕 6-4-13456-2356 sign ê¾– 6-4-13456-13 sign ê¾— 6-4-13456-23 sign 꾘 6-4-13456-235 sign ê¾™ 6-4-13456-236 sign 꾚 6-4-13456-256 sign ê¾› 6-4-13456-356 sign 꾜 6-4-346 sign ê¾ 6-4-346-1 sign 꾞 6-4-346-1-1 sign 꾟 6-4-346-1-3 sign ê¾  6-4-346-25 sign 꾡 6-4-346-25-13 sign ê¾¢ 6-4-346-25-356 sign ê¾£ 6-4-346-35 sign 꾤 6-4-346-2 sign ê¾¥ 6-4-346-2-1 sign 꾦 6-4-346-2-26 sign ê¾§ 6-4-346-2-12 sign 꾨 6-4-346-2-3 sign 꾩 6-4-346-2-236 sign 꾪 6-4-346-2-256 sign 꾫 6-4-346-2-356 sign 꾬 6-4-346-26 sign ê¾­ 6-4-346-12 sign ê¾® 6-4-346-12-3 sign 꾯 6-4-346-3 sign ê¾° 6-4-346-34 sign ê¾± 6-4-346-2356 sign ê¾² 6-4-346-13 sign ê¾³ 6-4-346-23 sign ê¾´ 6-4-346-235 sign ê¾µ 6-4-346-236 sign ê¾¶ 6-4-346-256 sign ê¾· 6-4-346-356 sign 꾸 6-4-134 sign ê¾¹ 6-4-134-1 sign 꾺 6-4-134-1-1 sign ê¾» 6-4-134-1-3 sign ê¾¼ 6-4-134-25 sign ê¾½ 6-4-134-25-13 sign ê¾¾ 6-4-134-25-356 sign 꾿 6-4-134-35 sign ê¿€ 6-4-134-2 sign ê¿ 6-4-134-2-1 sign ê¿‚ 6-4-134-2-26 sign 꿃 6-4-134-2-12 sign ê¿„ 6-4-134-2-3 sign ê¿… 6-4-134-2-236 sign 꿆 6-4-134-2-256 sign 꿇 6-4-134-2-356 sign 꿈 6-4-134-26 sign 꿉 6-4-134-12 sign 꿊 6-4-134-12-3 sign ê¿‹ 6-4-134-3 sign 꿌 6-4-134-34 sign ê¿ 6-4-134-2356 sign 꿎 6-4-134-13 sign ê¿ 6-4-134-23 sign ê¿ 6-4-134-235 sign ê¿‘ 6-4-134-236 sign ê¿’ 6-4-134-256 sign ê¿“ 6-4-134-356 sign ê¿” 6-4-1234 sign ê¿• 6-4-1234-1 sign ê¿– 6-4-1234-1-1 sign ê¿— 6-4-1234-1-3 sign 꿘 6-4-1234-25 sign ê¿™ 6-4-1234-25-13 sign 꿚 6-4-1234-25-356 sign ê¿› 6-4-1234-35 sign 꿜 6-4-1234-2 sign ê¿ 6-4-1234-2-1 sign 꿞 6-4-1234-2-26 sign 꿟 6-4-1234-2-12 sign ê¿  6-4-1234-2-3 sign ê¿¡ 6-4-1234-2-236 sign ê¿¢ 6-4-1234-2-256 sign ê¿£ 6-4-1234-2-356 sign 꿤 6-4-1234-26 sign ê¿¥ 6-4-1234-12 sign 꿦 6-4-1234-12-3 sign ê¿§ 6-4-1234-3 sign 꿨 6-4-1234-34 sign ê¿© 6-4-1234-2356 sign 꿪 6-4-1234-13 sign ê¿« 6-4-1234-23 sign 꿬 6-4-1234-235 sign ê¿­ 6-4-1234-236 sign ê¿® 6-4-1234-256 sign 꿯 6-4-1234-356 sign ê¿° 6-4-1234-1235 sign 꿱 6-4-1234-1235-1 sign 꿲 6-4-1234-1235-1-1 sign 꿳 6-4-1234-1235-1-3 sign ê¿´ 6-4-1234-1235-25 sign 꿵 6-4-1234-1235-25-13 sign ê¿¶ 6-4-1234-1235-25-356 sign ê¿· 6-4-1234-1235-35 sign 꿸 6-4-1234-1235-2 sign 꿹 6-4-1234-1235-2-1 sign 꿺 6-4-1234-1235-2-26 sign ê¿» 6-4-1234-1235-2-12 sign 꿼 6-4-1234-1235-2-3 sign 꿽 6-4-1234-1235-2-236 sign 꿾 6-4-1234-1235-2-256 sign ê¿¿ 6-4-1234-1235-2-356 sign 뀀 6-4-1234-1235-26 sign ë€ 6-4-1234-1235-12 sign 뀂 6-4-1234-1235-12-3 sign 뀃 6-4-1234-1235-3 sign 뀄 6-4-1234-1235-34 sign 뀅 6-4-1234-1235-2356 sign 뀆 6-4-1234-1235-13 sign 뀇 6-4-1234-1235-23 sign 뀈 6-4-1234-1235-235 sign 뀉 6-4-1234-1235-236 sign 뀊 6-4-1234-1235-256 sign 뀋 6-4-1234-1235-356 sign 뀌 6-4-134-1235 sign ë€ 6-4-134-1235-1 sign 뀎 6-4-134-1235-1-1 sign ë€ 6-4-134-1235-1-3 sign ë€ 6-4-134-1235-25 sign 뀑 6-4-134-1235-25-13 sign 뀒 6-4-134-1235-25-356 sign 뀓 6-4-134-1235-35 sign 뀔 6-4-134-1235-2 sign 뀕 6-4-134-1235-2-1 sign 뀖 6-4-134-1235-2-26 sign 뀗 6-4-134-1235-2-12 sign 뀘 6-4-134-1235-2-3 sign 뀙 6-4-134-1235-2-236 sign 뀚 6-4-134-1235-2-256 sign 뀛 6-4-134-1235-2-356 sign 뀜 6-4-134-1235-26 sign ë€ 6-4-134-1235-12 sign 뀞 6-4-134-1235-12-3 sign 뀟 6-4-134-1235-3 sign 뀠 6-4-134-1235-34 sign 뀡 6-4-134-1235-2356 sign 뀢 6-4-134-1235-13 sign 뀣 6-4-134-1235-23 sign 뀤 6-4-134-1235-235 sign 뀥 6-4-134-1235-236 sign 뀦 6-4-134-1235-256 sign 뀧 6-4-134-1235-356 sign 뀨 6-4-146 sign 뀩 6-4-146-1 sign 뀪 6-4-146-1-1 sign 뀫 6-4-146-1-3 sign 뀬 6-4-146-25 sign 뀭 6-4-146-25-13 sign 뀮 6-4-146-25-356 sign 뀯 6-4-146-35 sign 뀰 6-4-146-2 sign 뀱 6-4-146-2-1 sign 뀲 6-4-146-2-26 sign 뀳 6-4-146-2-12 sign 뀴 6-4-146-2-3 sign 뀵 6-4-146-2-236 sign 뀶 6-4-146-2-256 sign 뀷 6-4-146-2-356 sign 뀸 6-4-146-26 sign 뀹 6-4-146-12 sign 뀺 6-4-146-12-3 sign 뀻 6-4-146-3 sign 뀼 6-4-146-34 sign 뀽 6-4-146-2356 sign 뀾 6-4-146-13 sign 뀿 6-4-146-23 sign ë€ 6-4-146-235 sign ë 6-4-146-236 sign ë‚ 6-4-146-256 sign ëƒ 6-4-146-356 sign ë„ 6-4-246 sign ë… 6-4-246-1 sign ë† 6-4-246-1-1 sign ë‡ 6-4-246-1-3 sign ëˆ 6-4-246-25 sign ë‰ 6-4-246-25-13 sign ëŠ 6-4-246-25-356 sign ë‹ 6-4-246-35 sign ëŒ 6-4-246-2 sign ë 6-4-246-2-1 sign ëŽ 6-4-246-2-26 sign ë 6-4-246-2-12 sign ë 6-4-246-2-3 sign ë‘ 6-4-246-2-236 sign ë’ 6-4-246-2-256 sign ë“ 6-4-246-2-356 sign ë” 6-4-246-26 sign ë• 6-4-246-12 sign ë– 6-4-246-12-3 sign ë— 6-4-246-3 sign ë˜ 6-4-246-34 sign ë™ 6-4-246-2356 sign ëš 6-4-246-13 sign ë› 6-4-246-23 sign ëœ 6-4-246-235 sign ë 6-4-246-236 sign ëž 6-4-246-256 sign ëŸ 6-4-246-356 sign ë  6-4-2456 sign ë¡ 6-4-2456-1 sign ë¢ 6-4-2456-1-1 sign ë£ 6-4-2456-1-3 sign ë¤ 6-4-2456-25 sign ë¥ 6-4-2456-25-13 sign ë¦ 6-4-2456-25-356 sign ë§ 6-4-2456-35 sign ë¨ 6-4-2456-2 sign ë© 6-4-2456-2-1 sign ëª 6-4-2456-2-26 sign ë« 6-4-2456-2-12 sign ë¬ 6-4-2456-2-3 sign ë­ 6-4-2456-2-236 sign ë® 6-4-2456-2-256 sign ë¯ 6-4-2456-2-356 sign ë° 6-4-2456-26 sign ë± 6-4-2456-12 sign ë² 6-4-2456-12-3 sign ë³ 6-4-2456-3 sign ë´ 6-4-2456-34 sign ëµ 6-4-2456-2356 sign ë¶ 6-4-2456-13 sign ë· 6-4-2456-23 sign ë¸ 6-4-2456-235 sign ë¹ 6-4-2456-236 sign ëº 6-4-2456-256 sign ë» 6-4-2456-356 sign ë¼ 6-4-135 sign ë½ 6-4-135-1 sign ë¾ 6-4-135-1-1 sign ë¿ 6-4-135-1-3 sign ë‚€ 6-4-135-25 sign ë‚ 6-4-135-25-13 sign ë‚‚ 6-4-135-25-356 sign 낃 6-4-135-35 sign ë‚„ 6-4-135-2 sign ë‚… 6-4-135-2-1 sign 낆 6-4-135-2-26 sign 낇 6-4-135-2-12 sign 낈 6-4-135-2-3 sign 낉 6-4-135-2-236 sign 낊 6-4-135-2-256 sign ë‚‹ 6-4-135-2-356 sign 낌 6-4-135-26 sign ë‚ 6-4-135-12 sign 낎 6-4-135-12-3 sign ë‚ 6-4-135-3 sign ë‚ 6-4-135-34 sign ë‚‘ 6-4-135-2356 sign ë‚’ 6-4-135-13 sign ë‚“ 6-4-135-23 sign ë‚” 6-4-135-235 sign ë‚• 6-4-135-236 sign ë‚– 6-4-135-256 sign ë‚— 6-4-135-356 sign 나 14-126 sign ë‚™ 14-126-1 sign 낚 14-126-1-1 sign ë‚› 14-126-1-3 sign 난 14-126-25 sign ë‚ 14-126-25-13 sign 낞 14-126-25-356 sign 낟 14-126-35 sign ë‚  14-126-2 sign ë‚¡ 14-126-2-1 sign ë‚¢ 14-126-2-26 sign ë‚£ 14-126-2-12 sign 낤 14-126-2-3 sign ë‚¥ 14-126-2-236 sign 낦 14-126-2-256 sign ë‚§ 14-126-2-356 sign 남 14-126-26 sign ë‚© 14-126-12 sign 낪 14-126-12-3 sign ë‚« 14-126-3 sign 났 14-126-34 sign ë‚­ 14-126-2356 sign ë‚® 14-126-13 sign 낯 14-126-23 sign ë‚° 14-126-235 sign 낱 14-126-236 sign 낲 14-126-256 sign 낳 14-126-356 sign ë‚´ 14-1235 sign 낵 14-1235-1 sign ë‚¶ 14-1235-1-1 sign ë‚· 14-1235-1-3 sign 낸 14-1235-25 sign 낹 14-1235-25-13 sign 낺 14-1235-25-356 sign ë‚» 14-1235-35 sign 낼 14-1235-2 sign 낽 14-1235-2-1 sign 낾 14-1235-2-26 sign ë‚¿ 14-1235-2-12 sign 냀 14-1235-2-3 sign ëƒ 14-1235-2-236 sign 냂 14-1235-2-256 sign 냃 14-1235-2-356 sign 냄 14-1235-26 sign 냅 14-1235-12 sign 냆 14-1235-12-3 sign 냇 14-1235-3 sign 냈 14-1235-34 sign 냉 14-1235-2356 sign 냊 14-1235-13 sign 냋 14-1235-23 sign 냌 14-1235-235 sign ëƒ 14-1235-236 sign 냎 14-1235-256 sign ëƒ 14-1235-356 sign ëƒ 14-345 sign 냑 14-345-1 sign 냒 14-345-1-1 sign 냓 14-345-1-3 sign 냔 14-345-25 sign 냕 14-345-25-13 sign 냖 14-345-25-356 sign 냗 14-345-35 sign 냘 14-345-2 sign 냙 14-345-2-1 sign 냚 14-345-2-26 sign 냛 14-345-2-12 sign 냜 14-345-2-3 sign ëƒ 14-345-2-236 sign 냞 14-345-2-256 sign 냟 14-345-2-356 sign 냠 14-345-26 sign 냡 14-345-12 sign 냢 14-345-12-3 sign 냣 14-345-3 sign 냤 14-345-34 sign 냥 14-345-2356 sign 냦 14-345-13 sign 냧 14-345-23 sign 냨 14-345-235 sign 냩 14-345-236 sign 냪 14-345-256 sign 냫 14-345-356 sign 냬 14-345-1235 sign 냭 14-345-1235-1 sign 냮 14-345-1235-1-1 sign 냯 14-345-1235-1-3 sign 냰 14-345-1235-25 sign 냱 14-345-1235-25-13 sign 냲 14-345-1235-25-356 sign 냳 14-345-1235-35 sign 냴 14-345-1235-2 sign 냵 14-345-1235-2-1 sign 냶 14-345-1235-2-26 sign 냷 14-345-1235-2-12 sign 냸 14-345-1235-2-3 sign 냹 14-345-1235-2-236 sign 냺 14-345-1235-2-256 sign 냻 14-345-1235-2-356 sign 냼 14-345-1235-26 sign 냽 14-345-1235-12 sign 냾 14-345-1235-12-3 sign 냿 14-345-1235-3 sign ë„€ 14-345-1235-34 sign ë„ 14-345-1235-2356 sign ë„‚ 14-345-1235-13 sign 넃 14-345-1235-23 sign ë„„ 14-345-1235-235 sign ë„… 14-345-1235-236 sign 넆 14-345-1235-256 sign 넇 14-345-1235-356 sign 너 14-234 sign 넉 14-234-1 sign 넊 14-234-1-1 sign ë„‹ 14-234-1-3 sign 넌 14-234-25 sign ë„ 14-234-25-13 sign 넎 14-234-25-356 sign ë„ 14-234-35 sign ë„ 14-234-2 sign ë„‘ 14-234-2-1 sign ë„’ 14-234-2-26 sign ë„“ 14-234-2-12 sign ë„” 14-234-2-3 sign ë„• 14-234-2-236 sign ë„– 14-234-2-256 sign ë„— 14-234-2-356 sign 넘 14-234-26 sign ë„™ 14-234-12 sign 넚 14-234-12-3 sign ë„› 14-234-3 sign 넜 14-234-34 sign ë„ 14-234-2356 sign 넞 14-234-13 sign 넟 14-234-23 sign ë„  14-234-235 sign ë„¡ 14-234-236 sign ë„¢ 14-234-256 sign ë„£ 14-234-356 sign 네 14-1345 sign ë„¥ 14-1345-1 sign 넦 14-1345-1-1 sign ë„§ 14-1345-1-3 sign 넨 14-1345-25 sign ë„© 14-1345-25-13 sign 넪 14-1345-25-356 sign ë„« 14-1345-35 sign 넬 14-1345-2 sign ë„­ 14-1345-2-1 sign ë„® 14-1345-2-26 sign 넯 14-1345-2-12 sign ë„° 14-1345-2-3 sign 넱 14-1345-2-236 sign 넲 14-1345-2-256 sign 넳 14-1345-2-356 sign ë„´ 14-1345-26 sign 넵 14-1345-12 sign ë„¶ 14-1345-12-3 sign ë„· 14-1345-3 sign 넸 14-1345-34 sign 넹 14-1345-2356 sign 넺 14-1345-13 sign ë„» 14-1345-23 sign 넼 14-1345-235 sign 넽 14-1345-236 sign 넾 14-1345-256 sign ë„¿ 14-1345-356 sign ë…€ 14-156 sign ë… 14-156-1 sign ë…‚ 14-156-1-1 sign ë…ƒ 14-156-1-3 sign ë…„ 14-156-25 sign ë…… 14-156-25-13 sign ë…† 14-156-25-356 sign ë…‡ 14-156-35 sign ë…ˆ 14-156-2 sign ë…‰ 14-156-2-1 sign ë…Š 14-156-2-26 sign ë…‹ 14-156-2-12 sign ë…Œ 14-156-2-3 sign ë… 14-156-2-236 sign ë…Ž 14-156-2-256 sign ë… 14-156-2-356 sign ë… 14-156-26 sign ë…‘ 14-156-12 sign ë…’ 14-156-12-3 sign ë…“ 14-156-3 sign ë…” 14-156-34 sign ë…• 14-156-2356 sign ë…– 14-156-13 sign ë…— 14-156-23 sign ë…˜ 14-156-235 sign ë…™ 14-156-236 sign ë…š 14-156-256 sign ë…› 14-156-356 sign ë…œ 14-34 sign ë… 14-34-1 sign ë…ž 14-34-1-1 sign ë…Ÿ 14-34-1-3 sign ë…  14-34-25 sign ë…¡ 14-34-25-13 sign ë…¢ 14-34-25-356 sign ë…£ 14-34-35 sign ë…¤ 14-34-2 sign ë…¥ 14-34-2-1 sign ë…¦ 14-34-2-26 sign ë…§ 14-34-2-12 sign ë…¨ 14-34-2-3 sign ë…© 14-34-2-236 sign ë…ª 14-34-2-256 sign ë…« 14-34-2-356 sign ë…¬ 14-34-26 sign ë…­ 14-34-12 sign ë…® 14-34-12-3 sign ë…¯ 14-34-3 sign ë…° 14-34-34 sign ë…± 14-34-2356 sign ë…² 14-34-13 sign ë…³ 14-34-23 sign ë…´ 14-34-235 sign ë…µ 14-34-236 sign ë…¶ 14-34-256 sign ë…· 14-34-356 sign ë…¸ 14-136 sign ë…¹ 14-136-1 sign ë…º 14-136-1-1 sign ë…» 14-136-1-3 sign ë…¼ 14-136-25 sign ë…½ 14-136-25-13 sign ë…¾ 14-136-25-356 sign ë…¿ 14-136-35 sign 놀 14-136-2 sign ë† 14-136-2-1 sign 놂 14-136-2-26 sign 놃 14-136-2-12 sign 놄 14-136-2-3 sign 놅 14-136-2-236 sign 놆 14-136-2-256 sign 놇 14-136-2-356 sign 놈 14-136-26 sign 놉 14-136-12 sign 놊 14-136-12-3 sign 놋 14-136-3 sign 놌 14-136-34 sign ë† 14-136-2356 sign 놎 14-136-13 sign ë† 14-136-23 sign ë† 14-136-235 sign 놑 14-136-236 sign 높 14-136-256 sign 놓 14-136-356 sign 놔 14-1236 sign 놕 14-1236-1 sign 놖 14-1236-1-1 sign 놗 14-1236-1-3 sign 놘 14-1236-25 sign 놙 14-1236-25-13 sign 놚 14-1236-25-356 sign 놛 14-1236-35 sign 놜 14-1236-2 sign ë† 14-1236-2-1 sign 놞 14-1236-2-26 sign 놟 14-1236-2-12 sign 놠 14-1236-2-3 sign 놡 14-1236-2-236 sign 놢 14-1236-2-256 sign 놣 14-1236-2-356 sign 놤 14-1236-26 sign 놥 14-1236-12 sign 놦 14-1236-12-3 sign 놧 14-1236-3 sign 놨 14-1236-34 sign 놩 14-1236-2356 sign 놪 14-1236-13 sign 놫 14-1236-23 sign 놬 14-1236-235 sign 놭 14-1236-236 sign 놮 14-1236-256 sign 놯 14-1236-356 sign 놰 14-1236-1235 sign 놱 14-1236-1235-1 sign 놲 14-1236-1235-1-1 sign 놳 14-1236-1235-1-3 sign 놴 14-1236-1235-25 sign 놵 14-1236-1235-25-13 sign 놶 14-1236-1235-25-356 sign 놷 14-1236-1235-35 sign 놸 14-1236-1235-2 sign 놹 14-1236-1235-2-1 sign 놺 14-1236-1235-2-26 sign 놻 14-1236-1235-2-12 sign 놼 14-1236-1235-2-3 sign 놽 14-1236-1235-2-236 sign 놾 14-1236-1235-2-256 sign 놿 14-1236-1235-2-356 sign 뇀 14-1236-1235-26 sign ë‡ 14-1236-1235-12 sign 뇂 14-1236-1235-12-3 sign 뇃 14-1236-1235-3 sign 뇄 14-1236-1235-34 sign 뇅 14-1236-1235-2356 sign 뇆 14-1236-1235-13 sign 뇇 14-1236-1235-23 sign 뇈 14-1236-1235-235 sign 뇉 14-1236-1235-236 sign 뇊 14-1236-1235-256 sign 뇋 14-1236-1235-356 sign 뇌 14-13456 sign ë‡ 14-13456-1 sign 뇎 14-13456-1-1 sign ë‡ 14-13456-1-3 sign ë‡ 14-13456-25 sign 뇑 14-13456-25-13 sign 뇒 14-13456-25-356 sign 뇓 14-13456-35 sign 뇔 14-13456-2 sign 뇕 14-13456-2-1 sign 뇖 14-13456-2-26 sign 뇗 14-13456-2-12 sign 뇘 14-13456-2-3 sign 뇙 14-13456-2-236 sign 뇚 14-13456-2-256 sign 뇛 14-13456-2-356 sign 뇜 14-13456-26 sign ë‡ 14-13456-12 sign 뇞 14-13456-12-3 sign 뇟 14-13456-3 sign 뇠 14-13456-34 sign 뇡 14-13456-2356 sign 뇢 14-13456-13 sign 뇣 14-13456-23 sign 뇤 14-13456-235 sign 뇥 14-13456-236 sign 뇦 14-13456-256 sign 뇧 14-13456-356 sign 뇨 14-346 sign 뇩 14-346-1 sign 뇪 14-346-1-1 sign 뇫 14-346-1-3 sign 뇬 14-346-25 sign 뇭 14-346-25-13 sign 뇮 14-346-25-356 sign 뇯 14-346-35 sign 뇰 14-346-2 sign 뇱 14-346-2-1 sign 뇲 14-346-2-26 sign 뇳 14-346-2-12 sign 뇴 14-346-2-3 sign 뇵 14-346-2-236 sign 뇶 14-346-2-256 sign 뇷 14-346-2-356 sign 뇸 14-346-26 sign 뇹 14-346-12 sign 뇺 14-346-12-3 sign 뇻 14-346-3 sign 뇼 14-346-34 sign 뇽 14-346-2356 sign 뇾 14-346-13 sign 뇿 14-346-23 sign 눀 14-346-235 sign ëˆ 14-346-236 sign 눂 14-346-256 sign 눃 14-346-356 sign 누 14-134 sign 눅 14-134-1 sign 눆 14-134-1-1 sign 눇 14-134-1-3 sign 눈 14-134-25 sign 눉 14-134-25-13 sign 눊 14-134-25-356 sign 눋 14-134-35 sign 눌 14-134-2 sign ëˆ 14-134-2-1 sign 눎 14-134-2-26 sign ëˆ 14-134-2-12 sign ëˆ 14-134-2-3 sign 눑 14-134-2-236 sign 눒 14-134-2-256 sign 눓 14-134-2-356 sign 눔 14-134-26 sign 눕 14-134-12 sign 눖 14-134-12-3 sign 눗 14-134-3 sign 눘 14-134-34 sign 눙 14-134-2356 sign 눚 14-134-13 sign 눛 14-134-23 sign 눜 14-134-235 sign ëˆ 14-134-236 sign 눞 14-134-256 sign 눟 14-134-356 sign 눠 14-1234 sign 눡 14-1234-1 sign 눢 14-1234-1-1 sign 눣 14-1234-1-3 sign 눤 14-1234-25 sign 눥 14-1234-25-13 sign 눦 14-1234-25-356 sign 눧 14-1234-35 sign 눨 14-1234-2 sign 눩 14-1234-2-1 sign 눪 14-1234-2-26 sign 눫 14-1234-2-12 sign 눬 14-1234-2-3 sign 눭 14-1234-2-236 sign 눮 14-1234-2-256 sign 눯 14-1234-2-356 sign 눰 14-1234-26 sign 눱 14-1234-12 sign 눲 14-1234-12-3 sign 눳 14-1234-3 sign 눴 14-1234-34 sign 눵 14-1234-2356 sign 눶 14-1234-13 sign 눷 14-1234-23 sign 눸 14-1234-235 sign 눹 14-1234-236 sign 눺 14-1234-256 sign 눻 14-1234-356 sign 눼 14-1234-1235 sign 눽 14-1234-1235-1 sign 눾 14-1234-1235-1-1 sign 눿 14-1234-1235-1-3 sign 뉀 14-1234-1235-25 sign ë‰ 14-1234-1235-25-13 sign 뉂 14-1234-1235-25-356 sign 뉃 14-1234-1235-35 sign 뉄 14-1234-1235-2 sign 뉅 14-1234-1235-2-1 sign 뉆 14-1234-1235-2-26 sign 뉇 14-1234-1235-2-12 sign 뉈 14-1234-1235-2-3 sign 뉉 14-1234-1235-2-236 sign 뉊 14-1234-1235-2-256 sign 뉋 14-1234-1235-2-356 sign 뉌 14-1234-1235-26 sign ë‰ 14-1234-1235-12 sign 뉎 14-1234-1235-12-3 sign ë‰ 14-1234-1235-3 sign ë‰ 14-1234-1235-34 sign 뉑 14-1234-1235-2356 sign 뉒 14-1234-1235-13 sign 뉓 14-1234-1235-23 sign 뉔 14-1234-1235-235 sign 뉕 14-1234-1235-236 sign 뉖 14-1234-1235-256 sign 뉗 14-1234-1235-356 sign 뉘 14-134-1235 sign 뉙 14-134-1235-1 sign 뉚 14-134-1235-1-1 sign 뉛 14-134-1235-1-3 sign 뉜 14-134-1235-25 sign ë‰ 14-134-1235-25-13 sign 뉞 14-134-1235-25-356 sign 뉟 14-134-1235-35 sign 뉠 14-134-1235-2 sign 뉡 14-134-1235-2-1 sign 뉢 14-134-1235-2-26 sign 뉣 14-134-1235-2-12 sign 뉤 14-134-1235-2-3 sign 뉥 14-134-1235-2-236 sign 뉦 14-134-1235-2-256 sign 뉧 14-134-1235-2-356 sign 뉨 14-134-1235-26 sign 뉩 14-134-1235-12 sign 뉪 14-134-1235-12-3 sign 뉫 14-134-1235-3 sign 뉬 14-134-1235-34 sign 뉭 14-134-1235-2356 sign 뉮 14-134-1235-13 sign 뉯 14-134-1235-23 sign 뉰 14-134-1235-235 sign 뉱 14-134-1235-236 sign 뉲 14-134-1235-256 sign 뉳 14-134-1235-356 sign 뉴 14-146 sign 뉵 14-146-1 sign 뉶 14-146-1-1 sign 뉷 14-146-1-3 sign 뉸 14-146-25 sign 뉹 14-146-25-13 sign 뉺 14-146-25-356 sign 뉻 14-146-35 sign 뉼 14-146-2 sign 뉽 14-146-2-1 sign 뉾 14-146-2-26 sign 뉿 14-146-2-12 sign 늀 14-146-2-3 sign ëŠ 14-146-2-236 sign 늂 14-146-2-256 sign 늃 14-146-2-356 sign 늄 14-146-26 sign 늅 14-146-12 sign 늆 14-146-12-3 sign 늇 14-146-3 sign 늈 14-146-34 sign 늉 14-146-2356 sign 늊 14-146-13 sign 늋 14-146-23 sign 늌 14-146-235 sign ëŠ 14-146-236 sign 늎 14-146-256 sign ëŠ 14-146-356 sign ëŠ 14-246 sign 늑 14-246-1 sign 늒 14-246-1-1 sign 늓 14-246-1-3 sign 는 14-246-25 sign 늕 14-246-25-13 sign 늖 14-246-25-356 sign 늗 14-246-35 sign 늘 14-246-2 sign 늙 14-246-2-1 sign 늚 14-246-2-26 sign 늛 14-246-2-12 sign 늜 14-246-2-3 sign ëŠ 14-246-2-236 sign 늞 14-246-2-256 sign 늟 14-246-2-356 sign 늠 14-246-26 sign 늡 14-246-12 sign 늢 14-246-12-3 sign 늣 14-246-3 sign 늤 14-246-34 sign 능 14-246-2356 sign 늦 14-246-13 sign 늧 14-246-23 sign 늨 14-246-235 sign 늩 14-246-236 sign 늪 14-246-256 sign 늫 14-246-356 sign 늬 14-2456 sign 늭 14-2456-1 sign 늮 14-2456-1-1 sign 늯 14-2456-1-3 sign 늰 14-2456-25 sign 늱 14-2456-25-13 sign 늲 14-2456-25-356 sign 늳 14-2456-35 sign 늴 14-2456-2 sign 늵 14-2456-2-1 sign 늶 14-2456-2-26 sign 늷 14-2456-2-12 sign 늸 14-2456-2-3 sign 늹 14-2456-2-236 sign 늺 14-2456-2-256 sign 늻 14-2456-2-356 sign 늼 14-2456-26 sign 늽 14-2456-12 sign 늾 14-2456-12-3 sign 늿 14-2456-3 sign ë‹€ 14-2456-34 sign ë‹ 14-2456-2356 sign ë‹‚ 14-2456-13 sign 닃 14-2456-23 sign ë‹„ 14-2456-235 sign ë‹… 14-2456-236 sign 닆 14-2456-256 sign 닇 14-2456-356 sign 니 14-135 sign 닉 14-135-1 sign 닊 14-135-1-1 sign ë‹‹ 14-135-1-3 sign 닌 14-135-25 sign ë‹ 14-135-25-13 sign 닎 14-135-25-356 sign ë‹ 14-135-35 sign ë‹ 14-135-2 sign ë‹‘ 14-135-2-1 sign ë‹’ 14-135-2-26 sign ë‹“ 14-135-2-12 sign ë‹” 14-135-2-3 sign ë‹• 14-135-2-236 sign ë‹– 14-135-2-256 sign ë‹— 14-135-2-356 sign 님 14-135-26 sign ë‹™ 14-135-12 sign 닚 14-135-12-3 sign ë‹› 14-135-3 sign 닜 14-135-34 sign ë‹ 14-135-2356 sign 닞 14-135-13 sign 닟 14-135-23 sign ë‹  14-135-235 sign ë‹¡ 14-135-236 sign ë‹¢ 14-135-256 sign ë‹£ 14-135-356 sign 다 24-126 sign ë‹¥ 24-126-1 sign 닦 24-126-1-1 sign ë‹§ 24-126-1-3 sign 단 24-126-25 sign ë‹© 24-126-25-13 sign 닪 24-126-25-356 sign ë‹« 24-126-35 sign 달 24-126-2 sign ë‹­ 24-126-2-1 sign ë‹® 24-126-2-26 sign 닯 24-126-2-12 sign ë‹° 24-126-2-3 sign 닱 24-126-2-236 sign 닲 24-126-2-256 sign 닳 24-126-2-356 sign ë‹´ 24-126-26 sign 답 24-126-12 sign ë‹¶ 24-126-12-3 sign ë‹· 24-126-3 sign 닸 24-126-34 sign 당 24-126-2356 sign 닺 24-126-13 sign ë‹» 24-126-23 sign 닼 24-126-235 sign 닽 24-126-236 sign 닾 24-126-256 sign ë‹¿ 24-126-356 sign 대 24-1235 sign ëŒ 24-1235-1 sign 댂 24-1235-1-1 sign 댃 24-1235-1-3 sign 댄 24-1235-25 sign 댅 24-1235-25-13 sign 댆 24-1235-25-356 sign 댇 24-1235-35 sign 댈 24-1235-2 sign 댉 24-1235-2-1 sign 댊 24-1235-2-26 sign 댋 24-1235-2-12 sign 댌 24-1235-2-3 sign ëŒ 24-1235-2-236 sign 댎 24-1235-2-256 sign ëŒ 24-1235-2-356 sign ëŒ 24-1235-26 sign 댑 24-1235-12 sign 댒 24-1235-12-3 sign 댓 24-1235-3 sign 댔 24-1235-34 sign 댕 24-1235-2356 sign 댖 24-1235-13 sign 댗 24-1235-23 sign 댘 24-1235-235 sign 댙 24-1235-236 sign 댚 24-1235-256 sign 댛 24-1235-356 sign 댜 24-345 sign ëŒ 24-345-1 sign 댞 24-345-1-1 sign 댟 24-345-1-3 sign 댠 24-345-25 sign 댡 24-345-25-13 sign 댢 24-345-25-356 sign 댣 24-345-35 sign 댤 24-345-2 sign 댥 24-345-2-1 sign 댦 24-345-2-26 sign 댧 24-345-2-12 sign 댨 24-345-2-3 sign 댩 24-345-2-236 sign 댪 24-345-2-256 sign 댫 24-345-2-356 sign 댬 24-345-26 sign 댭 24-345-12 sign 댮 24-345-12-3 sign 댯 24-345-3 sign 댰 24-345-34 sign 댱 24-345-2356 sign 댲 24-345-13 sign 댳 24-345-23 sign 댴 24-345-235 sign 댵 24-345-236 sign 댶 24-345-256 sign 댷 24-345-356 sign 댸 24-345-1235 sign 댹 24-345-1235-1 sign 댺 24-345-1235-1-1 sign 댻 24-345-1235-1-3 sign 댼 24-345-1235-25 sign 댽 24-345-1235-25-13 sign 댾 24-345-1235-25-356 sign 댿 24-345-1235-35 sign ë€ 24-345-1235-2 sign ë 24-345-1235-2-1 sign ë‚ 24-345-1235-2-26 sign ëƒ 24-345-1235-2-12 sign ë„ 24-345-1235-2-3 sign ë… 24-345-1235-2-236 sign ë† 24-345-1235-2-256 sign ë‡ 24-345-1235-2-356 sign ëˆ 24-345-1235-26 sign ë‰ 24-345-1235-12 sign ëŠ 24-345-1235-12-3 sign ë‹ 24-345-1235-3 sign ëŒ 24-345-1235-34 sign ë 24-345-1235-2356 sign ëŽ 24-345-1235-13 sign ë 24-345-1235-23 sign ë 24-345-1235-235 sign ë‘ 24-345-1235-236 sign ë’ 24-345-1235-256 sign ë“ 24-345-1235-356 sign ë” 24-234 sign ë• 24-234-1 sign ë– 24-234-1-1 sign ë— 24-234-1-3 sign ë˜ 24-234-25 sign ë™ 24-234-25-13 sign ëš 24-234-25-356 sign ë› 24-234-35 sign ëœ 24-234-2 sign ë 24-234-2-1 sign ëž 24-234-2-26 sign ëŸ 24-234-2-12 sign ë  24-234-2-3 sign ë¡ 24-234-2-236 sign ë¢ 24-234-2-256 sign ë£ 24-234-2-356 sign ë¤ 24-234-26 sign ë¥ 24-234-12 sign ë¦ 24-234-12-3 sign ë§ 24-234-3 sign ë¨ 24-234-34 sign ë© 24-234-2356 sign ëª 24-234-13 sign ë« 24-234-23 sign ë¬ 24-234-235 sign ë­ 24-234-236 sign ë® 24-234-256 sign ë¯ 24-234-356 sign ë° 24-1345 sign ë± 24-1345-1 sign ë² 24-1345-1-1 sign ë³ 24-1345-1-3 sign ë´ 24-1345-25 sign ëµ 24-1345-25-13 sign ë¶ 24-1345-25-356 sign ë· 24-1345-35 sign ë¸ 24-1345-2 sign ë¹ 24-1345-2-1 sign ëº 24-1345-2-26 sign ë» 24-1345-2-12 sign ë¼ 24-1345-2-3 sign ë½ 24-1345-2-236 sign ë¾ 24-1345-2-256 sign ë¿ 24-1345-2-356 sign 뎀 24-1345-26 sign ëŽ 24-1345-12 sign 뎂 24-1345-12-3 sign 뎃 24-1345-3 sign 뎄 24-1345-34 sign 뎅 24-1345-2356 sign 뎆 24-1345-13 sign 뎇 24-1345-23 sign 뎈 24-1345-235 sign 뎉 24-1345-236 sign 뎊 24-1345-256 sign 뎋 24-1345-356 sign 뎌 24-156 sign ëŽ 24-156-1 sign 뎎 24-156-1-1 sign ëŽ 24-156-1-3 sign ëŽ 24-156-25 sign 뎑 24-156-25-13 sign 뎒 24-156-25-356 sign 뎓 24-156-35 sign 뎔 24-156-2 sign 뎕 24-156-2-1 sign 뎖 24-156-2-26 sign 뎗 24-156-2-12 sign 뎘 24-156-2-3 sign 뎙 24-156-2-236 sign 뎚 24-156-2-256 sign 뎛 24-156-2-356 sign 뎜 24-156-26 sign ëŽ 24-156-12 sign 뎞 24-156-12-3 sign 뎟 24-156-3 sign 뎠 24-156-34 sign 뎡 24-156-2356 sign 뎢 24-156-13 sign 뎣 24-156-23 sign 뎤 24-156-235 sign 뎥 24-156-236 sign 뎦 24-156-256 sign 뎧 24-156-356 sign 뎨 24-34 sign 뎩 24-34-1 sign 뎪 24-34-1-1 sign 뎫 24-34-1-3 sign 뎬 24-34-25 sign 뎭 24-34-25-13 sign 뎮 24-34-25-356 sign 뎯 24-34-35 sign 뎰 24-34-2 sign 뎱 24-34-2-1 sign 뎲 24-34-2-26 sign 뎳 24-34-2-12 sign 뎴 24-34-2-3 sign 뎵 24-34-2-236 sign 뎶 24-34-2-256 sign 뎷 24-34-2-356 sign 뎸 24-34-26 sign 뎹 24-34-12 sign 뎺 24-34-12-3 sign 뎻 24-34-3 sign 뎼 24-34-34 sign 뎽 24-34-2356 sign 뎾 24-34-13 sign 뎿 24-34-23 sign ë€ 24-34-235 sign ë 24-34-236 sign ë‚ 24-34-256 sign ëƒ 24-34-356 sign ë„ 24-136 sign ë… 24-136-1 sign ë† 24-136-1-1 sign ë‡ 24-136-1-3 sign ëˆ 24-136-25 sign ë‰ 24-136-25-13 sign ëŠ 24-136-25-356 sign ë‹ 24-136-35 sign ëŒ 24-136-2 sign ë 24-136-2-1 sign ëŽ 24-136-2-26 sign ë 24-136-2-12 sign ë 24-136-2-3 sign ë‘ 24-136-2-236 sign ë’ 24-136-2-256 sign ë“ 24-136-2-356 sign ë” 24-136-26 sign ë• 24-136-12 sign ë– 24-136-12-3 sign ë— 24-136-3 sign ë˜ 24-136-34 sign ë™ 24-136-2356 sign ëš 24-136-13 sign ë› 24-136-23 sign ëœ 24-136-235 sign ë 24-136-236 sign ëž 24-136-256 sign ëŸ 24-136-356 sign ë  24-1236 sign ë¡ 24-1236-1 sign ë¢ 24-1236-1-1 sign ë£ 24-1236-1-3 sign ë¤ 24-1236-25 sign ë¥ 24-1236-25-13 sign ë¦ 24-1236-25-356 sign ë§ 24-1236-35 sign ë¨ 24-1236-2 sign ë© 24-1236-2-1 sign ëª 24-1236-2-26 sign ë« 24-1236-2-12 sign ë¬ 24-1236-2-3 sign ë­ 24-1236-2-236 sign ë® 24-1236-2-256 sign ë¯ 24-1236-2-356 sign ë° 24-1236-26 sign ë± 24-1236-12 sign ë² 24-1236-12-3 sign ë³ 24-1236-3 sign ë´ 24-1236-34 sign ëµ 24-1236-2356 sign ë¶ 24-1236-13 sign ë· 24-1236-23 sign ë¸ 24-1236-235 sign ë¹ 24-1236-236 sign ëº 24-1236-256 sign ë» 24-1236-356 sign ë¼ 24-1236-1235 sign ë½ 24-1236-1235-1 sign ë¾ 24-1236-1235-1-1 sign ë¿ 24-1236-1235-1-3 sign ë€ 24-1236-1235-25 sign ë 24-1236-1235-25-13 sign ë‚ 24-1236-1235-25-356 sign ëƒ 24-1236-1235-35 sign ë„ 24-1236-1235-2 sign ë… 24-1236-1235-2-1 sign ë† 24-1236-1235-2-26 sign ë‡ 24-1236-1235-2-12 sign ëˆ 24-1236-1235-2-3 sign ë‰ 24-1236-1235-2-236 sign ëŠ 24-1236-1235-2-256 sign ë‹ 24-1236-1235-2-356 sign ëŒ 24-1236-1235-26 sign ë 24-1236-1235-12 sign ëŽ 24-1236-1235-12-3 sign ë 24-1236-1235-3 sign ë 24-1236-1235-34 sign ë‘ 24-1236-1235-2356 sign ë’ 24-1236-1235-13 sign ë“ 24-1236-1235-23 sign ë” 24-1236-1235-235 sign ë• 24-1236-1235-236 sign ë– 24-1236-1235-256 sign ë— 24-1236-1235-356 sign ë˜ 24-13456 sign ë™ 24-13456-1 sign ëš 24-13456-1-1 sign ë› 24-13456-1-3 sign ëœ 24-13456-25 sign ë 24-13456-25-13 sign ëž 24-13456-25-356 sign ëŸ 24-13456-35 sign ë  24-13456-2 sign ë¡ 24-13456-2-1 sign ë¢ 24-13456-2-26 sign ë£ 24-13456-2-12 sign ë¤ 24-13456-2-3 sign ë¥ 24-13456-2-236 sign ë¦ 24-13456-2-256 sign ë§ 24-13456-2-356 sign ë¨ 24-13456-26 sign ë© 24-13456-12 sign ëª 24-13456-12-3 sign ë« 24-13456-3 sign ë¬ 24-13456-34 sign ë­ 24-13456-2356 sign ë® 24-13456-13 sign ë¯ 24-13456-23 sign ë° 24-13456-235 sign ë± 24-13456-236 sign ë² 24-13456-256 sign ë³ 24-13456-356 sign ë´ 24-346 sign ëµ 24-346-1 sign ë¶ 24-346-1-1 sign ë· 24-346-1-3 sign ë¸ 24-346-25 sign ë¹ 24-346-25-13 sign ëº 24-346-25-356 sign ë» 24-346-35 sign ë¼ 24-346-2 sign ë½ 24-346-2-1 sign ë¾ 24-346-2-26 sign ë¿ 24-346-2-12 sign ë‘€ 24-346-2-3 sign ë‘ 24-346-2-236 sign ë‘‚ 24-346-2-256 sign 둃 24-346-2-356 sign ë‘„ 24-346-26 sign ë‘… 24-346-12 sign 둆 24-346-12-3 sign 둇 24-346-3 sign 둈 24-346-34 sign 둉 24-346-2356 sign 둊 24-346-13 sign ë‘‹ 24-346-23 sign 둌 24-346-235 sign ë‘ 24-346-236 sign 둎 24-346-256 sign ë‘ 24-346-356 sign ë‘ 24-134 sign ë‘‘ 24-134-1 sign ë‘’ 24-134-1-1 sign ë‘“ 24-134-1-3 sign ë‘” 24-134-25 sign ë‘• 24-134-25-13 sign ë‘– 24-134-25-356 sign ë‘— 24-134-35 sign 둘 24-134-2 sign ë‘™ 24-134-2-1 sign 둚 24-134-2-26 sign ë‘› 24-134-2-12 sign 둜 24-134-2-3 sign ë‘ 24-134-2-236 sign 둞 24-134-2-256 sign 둟 24-134-2-356 sign ë‘  24-134-26 sign ë‘¡ 24-134-12 sign ë‘¢ 24-134-12-3 sign ë‘£ 24-134-3 sign 둤 24-134-34 sign ë‘¥ 24-134-2356 sign 둦 24-134-13 sign ë‘§ 24-134-23 sign 둨 24-134-235 sign ë‘© 24-134-236 sign 둪 24-134-256 sign ë‘« 24-134-356 sign 둬 24-1234 sign ë‘­ 24-1234-1 sign ë‘® 24-1234-1-1 sign 둯 24-1234-1-3 sign ë‘° 24-1234-25 sign 둱 24-1234-25-13 sign 둲 24-1234-25-356 sign 둳 24-1234-35 sign ë‘´ 24-1234-2 sign 둵 24-1234-2-1 sign ë‘¶ 24-1234-2-26 sign ë‘· 24-1234-2-12 sign 둸 24-1234-2-3 sign 둹 24-1234-2-236 sign 둺 24-1234-2-256 sign ë‘» 24-1234-2-356 sign 둼 24-1234-26 sign 둽 24-1234-12 sign 둾 24-1234-12-3 sign ë‘¿ 24-1234-3 sign ë’€ 24-1234-34 sign ë’ 24-1234-2356 sign ë’‚ 24-1234-13 sign ë’ƒ 24-1234-23 sign ë’„ 24-1234-235 sign ë’… 24-1234-236 sign ë’† 24-1234-256 sign ë’‡ 24-1234-356 sign ë’ˆ 24-1234-1235 sign ë’‰ 24-1234-1235-1 sign ë’Š 24-1234-1235-1-1 sign ë’‹ 24-1234-1235-1-3 sign ë’Œ 24-1234-1235-25 sign ë’ 24-1234-1235-25-13 sign ë’Ž 24-1234-1235-25-356 sign ë’ 24-1234-1235-35 sign ë’ 24-1234-1235-2 sign ë’‘ 24-1234-1235-2-1 sign ë’’ 24-1234-1235-2-26 sign ë’“ 24-1234-1235-2-12 sign ë’” 24-1234-1235-2-3 sign ë’• 24-1234-1235-2-236 sign ë’– 24-1234-1235-2-256 sign ë’— 24-1234-1235-2-356 sign ë’˜ 24-1234-1235-26 sign ë’™ 24-1234-1235-12 sign ë’š 24-1234-1235-12-3 sign ë’› 24-1234-1235-3 sign ë’œ 24-1234-1235-34 sign ë’ 24-1234-1235-2356 sign ë’ž 24-1234-1235-13 sign ë’Ÿ 24-1234-1235-23 sign ë’  24-1234-1235-235 sign ë’¡ 24-1234-1235-236 sign ë’¢ 24-1234-1235-256 sign ë’£ 24-1234-1235-356 sign ë’¤ 24-134-1235 sign ë’¥ 24-134-1235-1 sign ë’¦ 24-134-1235-1-1 sign ë’§ 24-134-1235-1-3 sign ë’¨ 24-134-1235-25 sign ë’© 24-134-1235-25-13 sign ë’ª 24-134-1235-25-356 sign ë’« 24-134-1235-35 sign ë’¬ 24-134-1235-2 sign ë’­ 24-134-1235-2-1 sign ë’® 24-134-1235-2-26 sign ë’¯ 24-134-1235-2-12 sign ë’° 24-134-1235-2-3 sign ë’± 24-134-1235-2-236 sign ë’² 24-134-1235-2-256 sign ë’³ 24-134-1235-2-356 sign ë’´ 24-134-1235-26 sign ë’µ 24-134-1235-12 sign ë’¶ 24-134-1235-12-3 sign ë’· 24-134-1235-3 sign ë’¸ 24-134-1235-34 sign ë’¹ 24-134-1235-2356 sign ë’º 24-134-1235-13 sign ë’» 24-134-1235-23 sign ë’¼ 24-134-1235-235 sign ë’½ 24-134-1235-236 sign ë’¾ 24-134-1235-256 sign ë’¿ 24-134-1235-356 sign ë“€ 24-146 sign ë“ 24-146-1 sign ë“‚ 24-146-1-1 sign 듃 24-146-1-3 sign ë“„ 24-146-25 sign ë“… 24-146-25-13 sign 듆 24-146-25-356 sign 듇 24-146-35 sign 듈 24-146-2 sign 듉 24-146-2-1 sign 듊 24-146-2-26 sign ë“‹ 24-146-2-12 sign 듌 24-146-2-3 sign ë“ 24-146-2-236 sign 듎 24-146-2-256 sign ë“ 24-146-2-356 sign ë“ 24-146-26 sign ë“‘ 24-146-12 sign ë“’ 24-146-12-3 sign ë““ 24-146-3 sign ë“” 24-146-34 sign ë“• 24-146-2356 sign ë“– 24-146-13 sign ë“— 24-146-23 sign 듘 24-146-235 sign ë“™ 24-146-236 sign 듚 24-146-256 sign ë“› 24-146-356 sign 드 24-246 sign ë“ 24-246-1 sign 듞 24-246-1-1 sign 듟 24-246-1-3 sign ë“  24-246-25 sign ë“¡ 24-246-25-13 sign ë“¢ 24-246-25-356 sign ë“£ 24-246-35 sign 들 24-246-2 sign ë“¥ 24-246-2-1 sign 듦 24-246-2-26 sign ë“§ 24-246-2-12 sign 듨 24-246-2-3 sign ë“© 24-246-2-236 sign 듪 24-246-2-256 sign ë“« 24-246-2-356 sign 듬 24-246-26 sign ë“­ 24-246-12 sign ë“® 24-246-12-3 sign 듯 24-246-3 sign ë“° 24-246-34 sign 등 24-246-2356 sign 듲 24-246-13 sign 듳 24-246-23 sign ë“´ 24-246-235 sign 듵 24-246-236 sign ë“¶ 24-246-256 sign ë“· 24-246-356 sign 듸 24-2456 sign 듹 24-2456-1 sign 듺 24-2456-1-1 sign ë“» 24-2456-1-3 sign 듼 24-2456-25 sign 듽 24-2456-25-13 sign 듾 24-2456-25-356 sign ë“¿ 24-2456-35 sign 딀 24-2456-2 sign ë” 24-2456-2-1 sign 딂 24-2456-2-26 sign 딃 24-2456-2-12 sign 딄 24-2456-2-3 sign ë”… 24-2456-2-236 sign 딆 24-2456-2-256 sign 딇 24-2456-2-356 sign 딈 24-2456-26 sign 딉 24-2456-12 sign 딊 24-2456-12-3 sign 딋 24-2456-3 sign 딌 24-2456-34 sign ë” 24-2456-2356 sign 딎 24-2456-13 sign ë” 24-2456-23 sign ë” 24-2456-235 sign 딑 24-2456-236 sign ë”’ 24-2456-256 sign 딓 24-2456-356 sign ë”” 24-135 sign 딕 24-135-1 sign ë”– 24-135-1-1 sign ë”— 24-135-1-3 sign 딘 24-135-25 sign ë”™ 24-135-25-13 sign 딚 24-135-25-356 sign ë”› 24-135-35 sign 딜 24-135-2 sign ë” 24-135-2-1 sign 딞 24-135-2-26 sign 딟 24-135-2-12 sign ë”  24-135-2-3 sign 딡 24-135-2-236 sign 딢 24-135-2-256 sign 딣 24-135-2-356 sign 딤 24-135-26 sign 딥 24-135-12 sign 딦 24-135-12-3 sign ë”§ 24-135-3 sign 딨 24-135-34 sign 딩 24-135-2356 sign 딪 24-135-13 sign 딫 24-135-23 sign 딬 24-135-235 sign ë”­ 24-135-236 sign ë”® 24-135-256 sign 딯 24-135-356 sign ë”° 6-24-126 sign ë”± 6-24-126-1 sign 딲 6-24-126-1-1 sign 딳 6-24-126-1-3 sign ë”´ 6-24-126-25 sign 딵 6-24-126-25-13 sign ë”¶ 6-24-126-25-356 sign ë”· 6-24-126-35 sign 딸 6-24-126-2 sign 딹 6-24-126-2-1 sign 딺 6-24-126-2-26 sign ë”» 6-24-126-2-12 sign 딼 6-24-126-2-3 sign 딽 6-24-126-2-236 sign 딾 6-24-126-2-256 sign 딿 6-24-126-2-356 sign ë•€ 6-24-126-26 sign ë• 6-24-126-12 sign ë•‚ 6-24-126-12-3 sign 땃 6-24-126-3 sign ë•„ 6-24-126-34 sign ë•… 6-24-126-2356 sign 땆 6-24-126-13 sign 땇 6-24-126-23 sign 땈 6-24-126-235 sign 땉 6-24-126-236 sign 땊 6-24-126-256 sign ë•‹ 6-24-126-356 sign 때 6-24-1235 sign ë• 6-24-1235-1 sign 땎 6-24-1235-1-1 sign ë• 6-24-1235-1-3 sign ë• 6-24-1235-25 sign ë•‘ 6-24-1235-25-13 sign ë•’ 6-24-1235-25-356 sign ë•“ 6-24-1235-35 sign ë•” 6-24-1235-2 sign ë•• 6-24-1235-2-1 sign ë•– 6-24-1235-2-26 sign ë•— 6-24-1235-2-12 sign 땘 6-24-1235-2-3 sign ë•™ 6-24-1235-2-236 sign 땚 6-24-1235-2-256 sign ë•› 6-24-1235-2-356 sign 땜 6-24-1235-26 sign ë• 6-24-1235-12 sign 땞 6-24-1235-12-3 sign 땟 6-24-1235-3 sign ë•  6-24-1235-34 sign ë•¡ 6-24-1235-2356 sign ë•¢ 6-24-1235-13 sign ë•£ 6-24-1235-23 sign 땤 6-24-1235-235 sign ë•¥ 6-24-1235-236 sign 땦 6-24-1235-256 sign ë•§ 6-24-1235-356 sign 땨 6-24-345 sign ë•© 6-24-345-1 sign 땪 6-24-345-1-1 sign ë•« 6-24-345-1-3 sign 땬 6-24-345-25 sign ë•­ 6-24-345-25-13 sign ë•® 6-24-345-25-356 sign 땯 6-24-345-35 sign ë•° 6-24-345-2 sign 땱 6-24-345-2-1 sign 땲 6-24-345-2-26 sign 땳 6-24-345-2-12 sign ë•´ 6-24-345-2-3 sign 땵 6-24-345-2-236 sign ë•¶ 6-24-345-2-256 sign ë•· 6-24-345-2-356 sign 땸 6-24-345-26 sign 땹 6-24-345-12 sign 땺 6-24-345-12-3 sign ë•» 6-24-345-3 sign 땼 6-24-345-34 sign 땽 6-24-345-2356 sign 땾 6-24-345-13 sign ë•¿ 6-24-345-23 sign ë–€ 6-24-345-235 sign ë– 6-24-345-236 sign ë–‚ 6-24-345-256 sign ë–ƒ 6-24-345-356 sign ë–„ 6-24-345-1235 sign ë–… 6-24-345-1235-1 sign ë–† 6-24-345-1235-1-1 sign ë–‡ 6-24-345-1235-1-3 sign ë–ˆ 6-24-345-1235-25 sign ë–‰ 6-24-345-1235-25-13 sign ë–Š 6-24-345-1235-25-356 sign ë–‹ 6-24-345-1235-35 sign ë–Œ 6-24-345-1235-2 sign ë– 6-24-345-1235-2-1 sign ë–Ž 6-24-345-1235-2-26 sign ë– 6-24-345-1235-2-12 sign ë– 6-24-345-1235-2-3 sign ë–‘ 6-24-345-1235-2-236 sign ë–’ 6-24-345-1235-2-256 sign ë–“ 6-24-345-1235-2-356 sign ë–” 6-24-345-1235-26 sign ë–• 6-24-345-1235-12 sign ë–– 6-24-345-1235-12-3 sign ë–— 6-24-345-1235-3 sign ë–˜ 6-24-345-1235-34 sign ë–™ 6-24-345-1235-2356 sign ë–š 6-24-345-1235-13 sign ë–› 6-24-345-1235-23 sign ë–œ 6-24-345-1235-235 sign ë– 6-24-345-1235-236 sign ë–ž 6-24-345-1235-256 sign ë–Ÿ 6-24-345-1235-356 sign ë–  6-24-234 sign ë–¡ 6-24-234-1 sign ë–¢ 6-24-234-1-1 sign ë–£ 6-24-234-1-3 sign ë–¤ 6-24-234-25 sign ë–¥ 6-24-234-25-13 sign ë–¦ 6-24-234-25-356 sign ë–§ 6-24-234-35 sign ë–¨ 6-24-234-2 sign ë–© 6-24-234-2-1 sign ë–ª 6-24-234-2-26 sign ë–« 6-24-234-2-12 sign ë–¬ 6-24-234-2-3 sign ë–­ 6-24-234-2-236 sign ë–® 6-24-234-2-256 sign ë–¯ 6-24-234-2-356 sign ë–° 6-24-234-26 sign ë–± 6-24-234-12 sign ë–² 6-24-234-12-3 sign ë–³ 6-24-234-3 sign ë–´ 6-24-234-34 sign ë–µ 6-24-234-2356 sign ë–¶ 6-24-234-13 sign ë–· 6-24-234-23 sign ë–¸ 6-24-234-235 sign ë–¹ 6-24-234-236 sign ë–º 6-24-234-256 sign ë–» 6-24-234-356 sign ë–¼ 6-24-1345 sign ë–½ 6-24-1345-1 sign ë–¾ 6-24-1345-1-1 sign ë–¿ 6-24-1345-1-3 sign ë—€ 6-24-1345-25 sign ë— 6-24-1345-25-13 sign ë—‚ 6-24-1345-25-356 sign ë—ƒ 6-24-1345-35 sign ë—„ 6-24-1345-2 sign ë—… 6-24-1345-2-1 sign ë—† 6-24-1345-2-26 sign ë—‡ 6-24-1345-2-12 sign ë—ˆ 6-24-1345-2-3 sign ë—‰ 6-24-1345-2-236 sign ë—Š 6-24-1345-2-256 sign ë—‹ 6-24-1345-2-356 sign ë—Œ 6-24-1345-26 sign ë— 6-24-1345-12 sign ë—Ž 6-24-1345-12-3 sign ë— 6-24-1345-3 sign ë— 6-24-1345-34 sign ë—‘ 6-24-1345-2356 sign ë—’ 6-24-1345-13 sign ë—“ 6-24-1345-23 sign ë—” 6-24-1345-235 sign ë—• 6-24-1345-236 sign ë—– 6-24-1345-256 sign ë—— 6-24-1345-356 sign ë—˜ 6-24-156 sign ë—™ 6-24-156-1 sign ë—š 6-24-156-1-1 sign ë—› 6-24-156-1-3 sign ë—œ 6-24-156-25 sign ë— 6-24-156-25-13 sign ë—ž 6-24-156-25-356 sign ë—Ÿ 6-24-156-35 sign ë—  6-24-156-2 sign ë—¡ 6-24-156-2-1 sign ë—¢ 6-24-156-2-26 sign ë—£ 6-24-156-2-12 sign ë—¤ 6-24-156-2-3 sign ë—¥ 6-24-156-2-236 sign ë—¦ 6-24-156-2-256 sign ë—§ 6-24-156-2-356 sign ë—¨ 6-24-156-26 sign ë—© 6-24-156-12 sign ë—ª 6-24-156-12-3 sign ë—« 6-24-156-3 sign ë—¬ 6-24-156-34 sign ë—­ 6-24-156-2356 sign ë—® 6-24-156-13 sign ë—¯ 6-24-156-23 sign ë—° 6-24-156-235 sign ë—± 6-24-156-236 sign ë—² 6-24-156-256 sign ë—³ 6-24-156-356 sign ë—´ 6-24-34 sign ë—µ 6-24-34-1 sign ë—¶ 6-24-34-1-1 sign ë—· 6-24-34-1-3 sign ë—¸ 6-24-34-25 sign ë—¹ 6-24-34-25-13 sign ë—º 6-24-34-25-356 sign ë—» 6-24-34-35 sign ë—¼ 6-24-34-2 sign ë—½ 6-24-34-2-1 sign ë—¾ 6-24-34-2-26 sign ë—¿ 6-24-34-2-12 sign 똀 6-24-34-2-3 sign ë˜ 6-24-34-2-236 sign 똂 6-24-34-2-256 sign 똃 6-24-34-2-356 sign 똄 6-24-34-26 sign 똅 6-24-34-12 sign 똆 6-24-34-12-3 sign 똇 6-24-34-3 sign 똈 6-24-34-34 sign 똉 6-24-34-2356 sign 똊 6-24-34-13 sign 똋 6-24-34-23 sign 똌 6-24-34-235 sign ë˜ 6-24-34-236 sign 똎 6-24-34-256 sign ë˜ 6-24-34-356 sign ë˜ 6-24-136 sign 똑 6-24-136-1 sign 똒 6-24-136-1-1 sign 똓 6-24-136-1-3 sign 똔 6-24-136-25 sign 똕 6-24-136-25-13 sign 똖 6-24-136-25-356 sign 똗 6-24-136-35 sign 똘 6-24-136-2 sign 똙 6-24-136-2-1 sign 똚 6-24-136-2-26 sign 똛 6-24-136-2-12 sign 똜 6-24-136-2-3 sign ë˜ 6-24-136-2-236 sign 똞 6-24-136-2-256 sign 똟 6-24-136-2-356 sign 똠 6-24-136-26 sign 똡 6-24-136-12 sign 똢 6-24-136-12-3 sign 똣 6-24-136-3 sign 똤 6-24-136-34 sign 똥 6-24-136-2356 sign 똦 6-24-136-13 sign 똧 6-24-136-23 sign 똨 6-24-136-235 sign 똩 6-24-136-236 sign 똪 6-24-136-256 sign 똫 6-24-136-356 sign 똬 6-24-1236 sign 똭 6-24-1236-1 sign 똮 6-24-1236-1-1 sign 똯 6-24-1236-1-3 sign 똰 6-24-1236-25 sign 똱 6-24-1236-25-13 sign 똲 6-24-1236-25-356 sign 똳 6-24-1236-35 sign 똴 6-24-1236-2 sign 똵 6-24-1236-2-1 sign 똶 6-24-1236-2-26 sign 똷 6-24-1236-2-12 sign 똸 6-24-1236-2-3 sign 똹 6-24-1236-2-236 sign 똺 6-24-1236-2-256 sign 똻 6-24-1236-2-356 sign 똼 6-24-1236-26 sign 똽 6-24-1236-12 sign 똾 6-24-1236-12-3 sign 똿 6-24-1236-3 sign 뙀 6-24-1236-34 sign ë™ 6-24-1236-2356 sign 뙂 6-24-1236-13 sign 뙃 6-24-1236-23 sign 뙄 6-24-1236-235 sign ë™… 6-24-1236-236 sign 뙆 6-24-1236-256 sign 뙇 6-24-1236-356 sign 뙈 6-24-1236-1235 sign 뙉 6-24-1236-1235-1 sign 뙊 6-24-1236-1235-1-1 sign 뙋 6-24-1236-1235-1-3 sign 뙌 6-24-1236-1235-25 sign ë™ 6-24-1236-1235-25-13 sign 뙎 6-24-1236-1235-25-356 sign ë™ 6-24-1236-1235-35 sign ë™ 6-24-1236-1235-2 sign 뙑 6-24-1236-1235-2-1 sign ë™’ 6-24-1236-1235-2-26 sign 뙓 6-24-1236-1235-2-12 sign ë™” 6-24-1236-1235-2-3 sign 뙕 6-24-1236-1235-2-236 sign ë™– 6-24-1236-1235-2-256 sign ë™— 6-24-1236-1235-2-356 sign 뙘 6-24-1236-1235-26 sign ë™™ 6-24-1236-1235-12 sign 뙚 6-24-1236-1235-12-3 sign ë™› 6-24-1236-1235-3 sign 뙜 6-24-1236-1235-34 sign ë™ 6-24-1236-1235-2356 sign 뙞 6-24-1236-1235-13 sign 뙟 6-24-1236-1235-23 sign ë™  6-24-1236-1235-235 sign 뙡 6-24-1236-1235-236 sign 뙢 6-24-1236-1235-256 sign 뙣 6-24-1236-1235-356 sign 뙤 6-24-13456 sign 뙥 6-24-13456-1 sign 뙦 6-24-13456-1-1 sign ë™§ 6-24-13456-1-3 sign 뙨 6-24-13456-25 sign 뙩 6-24-13456-25-13 sign 뙪 6-24-13456-25-356 sign 뙫 6-24-13456-35 sign 뙬 6-24-13456-2 sign ë™­ 6-24-13456-2-1 sign ë™® 6-24-13456-2-26 sign 뙯 6-24-13456-2-12 sign ë™° 6-24-13456-2-3 sign ë™± 6-24-13456-2-236 sign 뙲 6-24-13456-2-256 sign 뙳 6-24-13456-2-356 sign ë™´ 6-24-13456-26 sign 뙵 6-24-13456-12 sign ë™¶ 6-24-13456-12-3 sign ë™· 6-24-13456-3 sign 뙸 6-24-13456-34 sign 뙹 6-24-13456-2356 sign 뙺 6-24-13456-13 sign ë™» 6-24-13456-23 sign 뙼 6-24-13456-235 sign 뙽 6-24-13456-236 sign 뙾 6-24-13456-256 sign 뙿 6-24-13456-356 sign 뚀 6-24-346 sign ëš 6-24-346-1 sign ëš‚ 6-24-346-1-1 sign 뚃 6-24-346-1-3 sign ëš„ 6-24-346-25 sign ëš… 6-24-346-25-13 sign 뚆 6-24-346-25-356 sign 뚇 6-24-346-35 sign 뚈 6-24-346-2 sign 뚉 6-24-346-2-1 sign 뚊 6-24-346-2-26 sign ëš‹ 6-24-346-2-12 sign 뚌 6-24-346-2-3 sign ëš 6-24-346-2-236 sign 뚎 6-24-346-2-256 sign ëš 6-24-346-2-356 sign ëš 6-24-346-26 sign ëš‘ 6-24-346-12 sign ëš’ 6-24-346-12-3 sign ëš“ 6-24-346-3 sign ëš” 6-24-346-34 sign ëš• 6-24-346-2356 sign ëš– 6-24-346-13 sign ëš— 6-24-346-23 sign 뚘 6-24-346-235 sign ëš™ 6-24-346-236 sign ëšš 6-24-346-256 sign ëš› 6-24-346-356 sign ëšœ 6-24-134 sign ëš 6-24-134-1 sign ëšž 6-24-134-1-1 sign 뚟 6-24-134-1-3 sign ëš  6-24-134-25 sign ëš¡ 6-24-134-25-13 sign 뚢 6-24-134-25-356 sign 뚣 6-24-134-35 sign 뚤 6-24-134-2 sign 뚥 6-24-134-2-1 sign 뚦 6-24-134-2-26 sign ëš§ 6-24-134-2-12 sign 뚨 6-24-134-2-3 sign ëš© 6-24-134-2-236 sign 뚪 6-24-134-2-256 sign ëš« 6-24-134-2-356 sign 뚬 6-24-134-26 sign ëš­ 6-24-134-12 sign ëš® 6-24-134-12-3 sign 뚯 6-24-134-3 sign ëš° 6-24-134-34 sign ëš± 6-24-134-2356 sign ëš² 6-24-134-13 sign ëš³ 6-24-134-23 sign ëš´ 6-24-134-235 sign ëšµ 6-24-134-236 sign ëš¶ 6-24-134-256 sign ëš· 6-24-134-356 sign 뚸 6-24-1234 sign ëš¹ 6-24-1234-1 sign 뚺 6-24-1234-1-1 sign ëš» 6-24-1234-1-3 sign ëš¼ 6-24-1234-25 sign ëš½ 6-24-1234-25-13 sign ëš¾ 6-24-1234-25-356 sign ëš¿ 6-24-1234-35 sign 뛀 6-24-1234-2 sign ë› 6-24-1234-2-1 sign 뛂 6-24-1234-2-26 sign 뛃 6-24-1234-2-12 sign 뛄 6-24-1234-2-3 sign ë›… 6-24-1234-2-236 sign 뛆 6-24-1234-2-256 sign 뛇 6-24-1234-2-356 sign 뛈 6-24-1234-26 sign 뛉 6-24-1234-12 sign 뛊 6-24-1234-12-3 sign 뛋 6-24-1234-3 sign 뛌 6-24-1234-34 sign ë› 6-24-1234-2356 sign 뛎 6-24-1234-13 sign ë› 6-24-1234-23 sign ë› 6-24-1234-235 sign 뛑 6-24-1234-236 sign ë›’ 6-24-1234-256 sign 뛓 6-24-1234-356 sign ë›” 6-24-1234-1235 sign 뛕 6-24-1234-1235-1 sign ë›– 6-24-1234-1235-1-1 sign ë›— 6-24-1234-1235-1-3 sign 뛘 6-24-1234-1235-25 sign ë›™ 6-24-1234-1235-25-13 sign 뛚 6-24-1234-1235-25-356 sign ë›› 6-24-1234-1235-35 sign 뛜 6-24-1234-1235-2 sign ë› 6-24-1234-1235-2-1 sign 뛞 6-24-1234-1235-2-26 sign 뛟 6-24-1234-1235-2-12 sign ë›  6-24-1234-1235-2-3 sign 뛡 6-24-1234-1235-2-236 sign 뛢 6-24-1234-1235-2-256 sign 뛣 6-24-1234-1235-2-356 sign 뛤 6-24-1234-1235-26 sign 뛥 6-24-1234-1235-12 sign 뛦 6-24-1234-1235-12-3 sign ë›§ 6-24-1234-1235-3 sign 뛨 6-24-1234-1235-34 sign 뛩 6-24-1234-1235-2356 sign 뛪 6-24-1234-1235-13 sign 뛫 6-24-1234-1235-23 sign 뛬 6-24-1234-1235-235 sign ë›­ 6-24-1234-1235-236 sign ë›® 6-24-1234-1235-256 sign 뛯 6-24-1234-1235-356 sign ë›° 6-24-134-1235 sign ë›± 6-24-134-1235-1 sign 뛲 6-24-134-1235-1-1 sign 뛳 6-24-134-1235-1-3 sign ë›´ 6-24-134-1235-25 sign 뛵 6-24-134-1235-25-13 sign ë›¶ 6-24-134-1235-25-356 sign ë›· 6-24-134-1235-35 sign 뛸 6-24-134-1235-2 sign 뛹 6-24-134-1235-2-1 sign 뛺 6-24-134-1235-2-26 sign ë›» 6-24-134-1235-2-12 sign 뛼 6-24-134-1235-2-3 sign 뛽 6-24-134-1235-2-236 sign 뛾 6-24-134-1235-2-256 sign 뛿 6-24-134-1235-2-356 sign 뜀 6-24-134-1235-26 sign ëœ 6-24-134-1235-12 sign 뜂 6-24-134-1235-12-3 sign 뜃 6-24-134-1235-3 sign 뜄 6-24-134-1235-34 sign 뜅 6-24-134-1235-2356 sign 뜆 6-24-134-1235-13 sign 뜇 6-24-134-1235-23 sign 뜈 6-24-134-1235-235 sign 뜉 6-24-134-1235-236 sign 뜊 6-24-134-1235-256 sign 뜋 6-24-134-1235-356 sign 뜌 6-24-146 sign ëœ 6-24-146-1 sign 뜎 6-24-146-1-1 sign ëœ 6-24-146-1-3 sign ëœ 6-24-146-25 sign 뜑 6-24-146-25-13 sign 뜒 6-24-146-25-356 sign 뜓 6-24-146-35 sign 뜔 6-24-146-2 sign 뜕 6-24-146-2-1 sign 뜖 6-24-146-2-26 sign 뜗 6-24-146-2-12 sign 뜘 6-24-146-2-3 sign 뜙 6-24-146-2-236 sign 뜚 6-24-146-2-256 sign 뜛 6-24-146-2-356 sign 뜜 6-24-146-26 sign ëœ 6-24-146-12 sign 뜞 6-24-146-12-3 sign 뜟 6-24-146-3 sign 뜠 6-24-146-34 sign 뜡 6-24-146-2356 sign 뜢 6-24-146-13 sign 뜣 6-24-146-23 sign 뜤 6-24-146-235 sign 뜥 6-24-146-236 sign 뜦 6-24-146-256 sign 뜧 6-24-146-356 sign 뜨 6-24-246 sign 뜩 6-24-246-1 sign 뜪 6-24-246-1-1 sign 뜫 6-24-246-1-3 sign 뜬 6-24-246-25 sign 뜭 6-24-246-25-13 sign 뜮 6-24-246-25-356 sign 뜯 6-24-246-35 sign 뜰 6-24-246-2 sign 뜱 6-24-246-2-1 sign 뜲 6-24-246-2-26 sign 뜳 6-24-246-2-12 sign 뜴 6-24-246-2-3 sign 뜵 6-24-246-2-236 sign 뜶 6-24-246-2-256 sign 뜷 6-24-246-2-356 sign 뜸 6-24-246-26 sign 뜹 6-24-246-12 sign 뜺 6-24-246-12-3 sign 뜻 6-24-246-3 sign 뜼 6-24-246-34 sign 뜽 6-24-246-2356 sign 뜾 6-24-246-13 sign 뜿 6-24-246-23 sign ë€ 6-24-246-235 sign ë 6-24-246-236 sign ë‚ 6-24-246-256 sign ëƒ 6-24-246-356 sign ë„ 6-24-2456 sign ë… 6-24-2456-1 sign ë† 6-24-2456-1-1 sign ë‡ 6-24-2456-1-3 sign ëˆ 6-24-2456-25 sign ë‰ 6-24-2456-25-13 sign ëŠ 6-24-2456-25-356 sign ë‹ 6-24-2456-35 sign ëŒ 6-24-2456-2 sign ë 6-24-2456-2-1 sign ëŽ 6-24-2456-2-26 sign ë 6-24-2456-2-12 sign ë 6-24-2456-2-3 sign ë‘ 6-24-2456-2-236 sign ë’ 6-24-2456-2-256 sign ë“ 6-24-2456-2-356 sign ë” 6-24-2456-26 sign ë• 6-24-2456-12 sign ë– 6-24-2456-12-3 sign ë— 6-24-2456-3 sign ë˜ 6-24-2456-34 sign ë™ 6-24-2456-2356 sign ëš 6-24-2456-13 sign ë› 6-24-2456-23 sign ëœ 6-24-2456-235 sign ë 6-24-2456-236 sign ëž 6-24-2456-256 sign ëŸ 6-24-2456-356 sign ë  6-24-135 sign ë¡ 6-24-135-1 sign ë¢ 6-24-135-1-1 sign ë£ 6-24-135-1-3 sign ë¤ 6-24-135-25 sign ë¥ 6-24-135-25-13 sign ë¦ 6-24-135-25-356 sign ë§ 6-24-135-35 sign ë¨ 6-24-135-2 sign ë© 6-24-135-2-1 sign ëª 6-24-135-2-26 sign ë« 6-24-135-2-12 sign ë¬ 6-24-135-2-3 sign ë­ 6-24-135-2-236 sign ë® 6-24-135-2-256 sign ë¯ 6-24-135-2-356 sign ë° 6-24-135-26 sign ë± 6-24-135-12 sign ë² 6-24-135-12-3 sign ë³ 6-24-135-3 sign ë´ 6-24-135-34 sign ëµ 6-24-135-2356 sign ë¶ 6-24-135-13 sign ë· 6-24-135-23 sign ë¸ 6-24-135-235 sign ë¹ 6-24-135-236 sign ëº 6-24-135-256 sign ë» 6-24-135-356 sign ë¼ 5-126 sign ë½ 5-126-1 sign ë¾ 5-126-1-1 sign ë¿ 5-126-1-3 sign 란 5-126-25 sign ëž 5-126-25-13 sign ëž‚ 5-126-25-356 sign 랃 5-126-35 sign ëž„ 5-126-2 sign ëž… 5-126-2-1 sign 랆 5-126-2-26 sign 랇 5-126-2-12 sign 랈 5-126-2-3 sign 랉 5-126-2-236 sign 랊 5-126-2-256 sign ëž‹ 5-126-2-356 sign 람 5-126-26 sign ëž 5-126-12 sign 랎 5-126-12-3 sign ëž 5-126-3 sign ëž 5-126-34 sign ëž‘ 5-126-2356 sign ëž’ 5-126-13 sign ëž“ 5-126-23 sign ëž” 5-126-235 sign ëž• 5-126-236 sign ëž– 5-126-256 sign ëž— 5-126-356 sign 래 5-1235 sign ëž™ 5-1235-1 sign ëžš 5-1235-1-1 sign ëž› 5-1235-1-3 sign ëžœ 5-1235-25 sign ëž 5-1235-25-13 sign ëžž 5-1235-25-356 sign 랟 5-1235-35 sign ëž  5-1235-2 sign ëž¡ 5-1235-2-1 sign 랢 5-1235-2-26 sign 랣 5-1235-2-12 sign 랤 5-1235-2-3 sign 랥 5-1235-2-236 sign 랦 5-1235-2-256 sign ëž§ 5-1235-2-356 sign 램 5-1235-26 sign ëž© 5-1235-12 sign 랪 5-1235-12-3 sign ëž« 5-1235-3 sign 랬 5-1235-34 sign ëž­ 5-1235-2356 sign ëž® 5-1235-13 sign 랯 5-1235-23 sign ëž° 5-1235-235 sign ëž± 5-1235-236 sign ëž² 5-1235-256 sign ëž³ 5-1235-356 sign ëž´ 5-345 sign ëžµ 5-345-1 sign ëž¶ 5-345-1-1 sign ëž· 5-345-1-3 sign 랸 5-345-25 sign ëž¹ 5-345-25-13 sign 랺 5-345-25-356 sign ëž» 5-345-35 sign ëž¼ 5-345-2 sign ëž½ 5-345-2-1 sign ëž¾ 5-345-2-26 sign ëž¿ 5-345-2-12 sign 럀 5-345-2-3 sign ëŸ 5-345-2-236 sign 럂 5-345-2-256 sign 럃 5-345-2-356 sign 럄 5-345-26 sign 럅 5-345-12 sign 럆 5-345-12-3 sign 럇 5-345-3 sign 럈 5-345-34 sign 량 5-345-2356 sign 럊 5-345-13 sign 럋 5-345-23 sign 럌 5-345-235 sign ëŸ 5-345-236 sign 럎 5-345-256 sign ëŸ 5-345-356 sign ëŸ 5-345-1235 sign 럑 5-345-1235-1 sign 럒 5-345-1235-1-1 sign 럓 5-345-1235-1-3 sign 럔 5-345-1235-25 sign 럕 5-345-1235-25-13 sign 럖 5-345-1235-25-356 sign 럗 5-345-1235-35 sign 럘 5-345-1235-2 sign 럙 5-345-1235-2-1 sign 럚 5-345-1235-2-26 sign 럛 5-345-1235-2-12 sign 럜 5-345-1235-2-3 sign ëŸ 5-345-1235-2-236 sign 럞 5-345-1235-2-256 sign 럟 5-345-1235-2-356 sign 럠 5-345-1235-26 sign 럡 5-345-1235-12 sign 럢 5-345-1235-12-3 sign 럣 5-345-1235-3 sign 럤 5-345-1235-34 sign 럥 5-345-1235-2356 sign 럦 5-345-1235-13 sign 럧 5-345-1235-23 sign 럨 5-345-1235-235 sign 럩 5-345-1235-236 sign 럪 5-345-1235-256 sign 럫 5-345-1235-356 sign 러 5-234 sign 럭 5-234-1 sign 럮 5-234-1-1 sign 럯 5-234-1-3 sign 런 5-234-25 sign 럱 5-234-25-13 sign 럲 5-234-25-356 sign 럳 5-234-35 sign 럴 5-234-2 sign 럵 5-234-2-1 sign 럶 5-234-2-26 sign 럷 5-234-2-12 sign 럸 5-234-2-3 sign 럹 5-234-2-236 sign 럺 5-234-2-256 sign 럻 5-234-2-356 sign 럼 5-234-26 sign 럽 5-234-12 sign 럾 5-234-12-3 sign 럿 5-234-3 sign ë € 5-234-34 sign ë  5-234-2356 sign ë ‚ 5-234-13 sign ë ƒ 5-234-23 sign ë „ 5-234-235 sign ë … 5-234-236 sign ë † 5-234-256 sign ë ‡ 5-234-356 sign ë ˆ 5-1345 sign ë ‰ 5-1345-1 sign ë Š 5-1345-1-1 sign ë ‹ 5-1345-1-3 sign ë Œ 5-1345-25 sign ë  5-1345-25-13 sign ë Ž 5-1345-25-356 sign ë  5-1345-35 sign ë  5-1345-2 sign ë ‘ 5-1345-2-1 sign ë ’ 5-1345-2-26 sign ë “ 5-1345-2-12 sign ë ” 5-1345-2-3 sign ë • 5-1345-2-236 sign ë – 5-1345-2-256 sign ë — 5-1345-2-356 sign ë ˜ 5-1345-26 sign ë ™ 5-1345-12 sign ë š 5-1345-12-3 sign ë › 5-1345-3 sign ë œ 5-1345-34 sign ë  5-1345-2356 sign ë ž 5-1345-13 sign ë Ÿ 5-1345-23 sign ë   5-1345-235 sign ë ¡ 5-1345-236 sign ë ¢ 5-1345-256 sign ë £ 5-1345-356 sign ë ¤ 5-156 sign ë ¥ 5-156-1 sign ë ¦ 5-156-1-1 sign ë § 5-156-1-3 sign ë ¨ 5-156-25 sign ë © 5-156-25-13 sign ë ª 5-156-25-356 sign ë « 5-156-35 sign ë ¬ 5-156-2 sign ë ­ 5-156-2-1 sign ë ® 5-156-2-26 sign ë ¯ 5-156-2-12 sign ë ° 5-156-2-3 sign ë ± 5-156-2-236 sign ë ² 5-156-2-256 sign ë ³ 5-156-2-356 sign ë ´ 5-156-26 sign ë µ 5-156-12 sign ë ¶ 5-156-12-3 sign ë · 5-156-3 sign ë ¸ 5-156-34 sign ë ¹ 5-156-2356 sign ë º 5-156-13 sign ë » 5-156-23 sign ë ¼ 5-156-235 sign ë ½ 5-156-236 sign ë ¾ 5-156-256 sign ë ¿ 5-156-356 sign ë¡€ 5-34 sign ë¡ 5-34-1 sign ë¡‚ 5-34-1-1 sign 롃 5-34-1-3 sign ë¡„ 5-34-25 sign ë¡… 5-34-25-13 sign 롆 5-34-25-356 sign 롇 5-34-35 sign 롈 5-34-2 sign 롉 5-34-2-1 sign 롊 5-34-2-26 sign ë¡‹ 5-34-2-12 sign 롌 5-34-2-3 sign ë¡ 5-34-2-236 sign 롎 5-34-2-256 sign ë¡ 5-34-2-356 sign ë¡ 5-34-26 sign ë¡‘ 5-34-12 sign ë¡’ 5-34-12-3 sign ë¡“ 5-34-3 sign ë¡” 5-34-34 sign ë¡• 5-34-2356 sign ë¡– 5-34-13 sign ë¡— 5-34-23 sign 롘 5-34-235 sign ë¡™ 5-34-236 sign 롚 5-34-256 sign ë¡› 5-34-356 sign 로 5-136 sign ë¡ 5-136-1 sign 롞 5-136-1-1 sign 롟 5-136-1-3 sign ë¡  5-136-25 sign ë¡¡ 5-136-25-13 sign ë¡¢ 5-136-25-356 sign ë¡£ 5-136-35 sign 롤 5-136-2 sign ë¡¥ 5-136-2-1 sign 롦 5-136-2-26 sign ë¡§ 5-136-2-12 sign 롨 5-136-2-3 sign ë¡© 5-136-2-236 sign 롪 5-136-2-256 sign ë¡« 5-136-2-356 sign 롬 5-136-26 sign ë¡­ 5-136-12 sign ë¡® 5-136-12-3 sign 롯 5-136-3 sign ë¡° 5-136-34 sign 롱 5-136-2356 sign 롲 5-136-13 sign 롳 5-136-23 sign ë¡´ 5-136-235 sign 롵 5-136-236 sign ë¡¶ 5-136-256 sign ë¡· 5-136-356 sign 롸 5-1236 sign 롹 5-1236-1 sign 롺 5-1236-1-1 sign ë¡» 5-1236-1-3 sign 롼 5-1236-25 sign 롽 5-1236-25-13 sign 롾 5-1236-25-356 sign ë¡¿ 5-1236-35 sign 뢀 5-1236-2 sign ë¢ 5-1236-2-1 sign 뢂 5-1236-2-26 sign 뢃 5-1236-2-12 sign 뢄 5-1236-2-3 sign 뢅 5-1236-2-236 sign 뢆 5-1236-2-256 sign 뢇 5-1236-2-356 sign 뢈 5-1236-26 sign 뢉 5-1236-12 sign 뢊 5-1236-12-3 sign 뢋 5-1236-3 sign 뢌 5-1236-34 sign ë¢ 5-1236-2356 sign 뢎 5-1236-13 sign ë¢ 5-1236-23 sign ë¢ 5-1236-235 sign 뢑 5-1236-236 sign 뢒 5-1236-256 sign 뢓 5-1236-356 sign 뢔 5-1236-1235 sign 뢕 5-1236-1235-1 sign 뢖 5-1236-1235-1-1 sign 뢗 5-1236-1235-1-3 sign 뢘 5-1236-1235-25 sign 뢙 5-1236-1235-25-13 sign 뢚 5-1236-1235-25-356 sign 뢛 5-1236-1235-35 sign 뢜 5-1236-1235-2 sign ë¢ 5-1236-1235-2-1 sign 뢞 5-1236-1235-2-26 sign 뢟 5-1236-1235-2-12 sign 뢠 5-1236-1235-2-3 sign 뢡 5-1236-1235-2-236 sign 뢢 5-1236-1235-2-256 sign 뢣 5-1236-1235-2-356 sign 뢤 5-1236-1235-26 sign 뢥 5-1236-1235-12 sign 뢦 5-1236-1235-12-3 sign 뢧 5-1236-1235-3 sign 뢨 5-1236-1235-34 sign 뢩 5-1236-1235-2356 sign 뢪 5-1236-1235-13 sign 뢫 5-1236-1235-23 sign 뢬 5-1236-1235-235 sign 뢭 5-1236-1235-236 sign 뢮 5-1236-1235-256 sign 뢯 5-1236-1235-356 sign 뢰 5-13456 sign 뢱 5-13456-1 sign 뢲 5-13456-1-1 sign 뢳 5-13456-1-3 sign 뢴 5-13456-25 sign 뢵 5-13456-25-13 sign 뢶 5-13456-25-356 sign 뢷 5-13456-35 sign 뢸 5-13456-2 sign 뢹 5-13456-2-1 sign 뢺 5-13456-2-26 sign 뢻 5-13456-2-12 sign 뢼 5-13456-2-3 sign 뢽 5-13456-2-236 sign 뢾 5-13456-2-256 sign 뢿 5-13456-2-356 sign 룀 5-13456-26 sign ë£ 5-13456-12 sign 룂 5-13456-12-3 sign 룃 5-13456-3 sign 룄 5-13456-34 sign 룅 5-13456-2356 sign 룆 5-13456-13 sign 룇 5-13456-23 sign 룈 5-13456-235 sign 룉 5-13456-236 sign 룊 5-13456-256 sign 룋 5-13456-356 sign 료 5-346 sign ë£ 5-346-1 sign 룎 5-346-1-1 sign ë£ 5-346-1-3 sign ë£ 5-346-25 sign 룑 5-346-25-13 sign 룒 5-346-25-356 sign 룓 5-346-35 sign 룔 5-346-2 sign 룕 5-346-2-1 sign 룖 5-346-2-26 sign 룗 5-346-2-12 sign 룘 5-346-2-3 sign 룙 5-346-2-236 sign 룚 5-346-2-256 sign 룛 5-346-2-356 sign 룜 5-346-26 sign ë£ 5-346-12 sign 룞 5-346-12-3 sign 룟 5-346-3 sign 룠 5-346-34 sign 룡 5-346-2356 sign 룢 5-346-13 sign 룣 5-346-23 sign 룤 5-346-235 sign 룥 5-346-236 sign 룦 5-346-256 sign 룧 5-346-356 sign 루 5-134 sign 룩 5-134-1 sign 룪 5-134-1-1 sign 룫 5-134-1-3 sign 룬 5-134-25 sign 룭 5-134-25-13 sign 룮 5-134-25-356 sign 룯 5-134-35 sign 룰 5-134-2 sign 룱 5-134-2-1 sign 룲 5-134-2-26 sign 룳 5-134-2-12 sign 룴 5-134-2-3 sign 룵 5-134-2-236 sign 룶 5-134-2-256 sign 룷 5-134-2-356 sign 룸 5-134-26 sign 룹 5-134-12 sign 룺 5-134-12-3 sign 룻 5-134-3 sign 룼 5-134-34 sign 룽 5-134-2356 sign 룾 5-134-13 sign 룿 5-134-23 sign 뤀 5-134-235 sign ë¤ 5-134-236 sign 뤂 5-134-256 sign 뤃 5-134-356 sign 뤄 5-1234 sign 뤅 5-1234-1 sign 뤆 5-1234-1-1 sign 뤇 5-1234-1-3 sign 뤈 5-1234-25 sign 뤉 5-1234-25-13 sign 뤊 5-1234-25-356 sign 뤋 5-1234-35 sign 뤌 5-1234-2 sign ë¤ 5-1234-2-1 sign 뤎 5-1234-2-26 sign ë¤ 5-1234-2-12 sign ë¤ 5-1234-2-3 sign 뤑 5-1234-2-236 sign 뤒 5-1234-2-256 sign 뤓 5-1234-2-356 sign 뤔 5-1234-26 sign 뤕 5-1234-12 sign 뤖 5-1234-12-3 sign 뤗 5-1234-3 sign 뤘 5-1234-34 sign 뤙 5-1234-2356 sign 뤚 5-1234-13 sign 뤛 5-1234-23 sign 뤜 5-1234-235 sign ë¤ 5-1234-236 sign 뤞 5-1234-256 sign 뤟 5-1234-356 sign 뤠 5-1234-1235 sign 뤡 5-1234-1235-1 sign 뤢 5-1234-1235-1-1 sign 뤣 5-1234-1235-1-3 sign 뤤 5-1234-1235-25 sign 뤥 5-1234-1235-25-13 sign 뤦 5-1234-1235-25-356 sign 뤧 5-1234-1235-35 sign 뤨 5-1234-1235-2 sign 뤩 5-1234-1235-2-1 sign 뤪 5-1234-1235-2-26 sign 뤫 5-1234-1235-2-12 sign 뤬 5-1234-1235-2-3 sign 뤭 5-1234-1235-2-236 sign 뤮 5-1234-1235-2-256 sign 뤯 5-1234-1235-2-356 sign 뤰 5-1234-1235-26 sign 뤱 5-1234-1235-12 sign 뤲 5-1234-1235-12-3 sign 뤳 5-1234-1235-3 sign 뤴 5-1234-1235-34 sign 뤵 5-1234-1235-2356 sign 뤶 5-1234-1235-13 sign 뤷 5-1234-1235-23 sign 뤸 5-1234-1235-235 sign 뤹 5-1234-1235-236 sign 뤺 5-1234-1235-256 sign 뤻 5-1234-1235-356 sign 뤼 5-134-1235 sign 뤽 5-134-1235-1 sign 뤾 5-134-1235-1-1 sign 뤿 5-134-1235-1-3 sign 륀 5-134-1235-25 sign ë¥ 5-134-1235-25-13 sign 륂 5-134-1235-25-356 sign 륃 5-134-1235-35 sign 륄 5-134-1235-2 sign 륅 5-134-1235-2-1 sign 륆 5-134-1235-2-26 sign 륇 5-134-1235-2-12 sign 륈 5-134-1235-2-3 sign 륉 5-134-1235-2-236 sign 륊 5-134-1235-2-256 sign 륋 5-134-1235-2-356 sign 륌 5-134-1235-26 sign ë¥ 5-134-1235-12 sign 륎 5-134-1235-12-3 sign ë¥ 5-134-1235-3 sign ë¥ 5-134-1235-34 sign 륑 5-134-1235-2356 sign 륒 5-134-1235-13 sign 륓 5-134-1235-23 sign 륔 5-134-1235-235 sign 륕 5-134-1235-236 sign 륖 5-134-1235-256 sign 륗 5-134-1235-356 sign 류 5-146 sign 륙 5-146-1 sign 륚 5-146-1-1 sign 륛 5-146-1-3 sign 륜 5-146-25 sign ë¥ 5-146-25-13 sign 륞 5-146-25-356 sign 륟 5-146-35 sign 률 5-146-2 sign 륡 5-146-2-1 sign 륢 5-146-2-26 sign 륣 5-146-2-12 sign 륤 5-146-2-3 sign 륥 5-146-2-236 sign 륦 5-146-2-256 sign 륧 5-146-2-356 sign 륨 5-146-26 sign 륩 5-146-12 sign 륪 5-146-12-3 sign 륫 5-146-3 sign 륬 5-146-34 sign 륭 5-146-2356 sign 륮 5-146-13 sign 륯 5-146-23 sign 륰 5-146-235 sign 륱 5-146-236 sign 륲 5-146-256 sign 륳 5-146-356 sign 르 5-246 sign 륵 5-246-1 sign 륶 5-246-1-1 sign 륷 5-246-1-3 sign 른 5-246-25 sign 륹 5-246-25-13 sign 륺 5-246-25-356 sign 륻 5-246-35 sign 를 5-246-2 sign 륽 5-246-2-1 sign 륾 5-246-2-26 sign 륿 5-246-2-12 sign 릀 5-246-2-3 sign ë¦ 5-246-2-236 sign 릂 5-246-2-256 sign 릃 5-246-2-356 sign 름 5-246-26 sign 릅 5-246-12 sign 릆 5-246-12-3 sign 릇 5-246-3 sign 릈 5-246-34 sign 릉 5-246-2356 sign 릊 5-246-13 sign 릋 5-246-23 sign 릌 5-246-235 sign ë¦ 5-246-236 sign 릎 5-246-256 sign ë¦ 5-246-356 sign ë¦ 5-2456 sign 릑 5-2456-1 sign 릒 5-2456-1-1 sign 릓 5-2456-1-3 sign 릔 5-2456-25 sign 릕 5-2456-25-13 sign 릖 5-2456-25-356 sign 릗 5-2456-35 sign 릘 5-2456-2 sign 릙 5-2456-2-1 sign 릚 5-2456-2-26 sign 릛 5-2456-2-12 sign 릜 5-2456-2-3 sign ë¦ 5-2456-2-236 sign 릞 5-2456-2-256 sign 릟 5-2456-2-356 sign 릠 5-2456-26 sign 릡 5-2456-12 sign 릢 5-2456-12-3 sign 릣 5-2456-3 sign 릤 5-2456-34 sign 릥 5-2456-2356 sign 릦 5-2456-13 sign 릧 5-2456-23 sign 릨 5-2456-235 sign 릩 5-2456-236 sign 릪 5-2456-256 sign 릫 5-2456-356 sign 리 5-135 sign 릭 5-135-1 sign 릮 5-135-1-1 sign 릯 5-135-1-3 sign 린 5-135-25 sign 릱 5-135-25-13 sign 릲 5-135-25-356 sign 릳 5-135-35 sign 릴 5-135-2 sign 릵 5-135-2-1 sign 릶 5-135-2-26 sign 릷 5-135-2-12 sign 릸 5-135-2-3 sign 릹 5-135-2-236 sign 릺 5-135-2-256 sign 릻 5-135-2-356 sign 림 5-135-26 sign 립 5-135-12 sign 릾 5-135-12-3 sign 릿 5-135-3 sign ë§€ 5-135-34 sign ë§ 5-135-2356 sign ë§‚ 5-135-13 sign 맃 5-135-23 sign ë§„ 5-135-235 sign ë§… 5-135-236 sign 맆 5-135-256 sign 맇 5-135-356 sign 마 15-126 sign 막 15-126-1 sign ë§Š 15-126-1-1 sign ë§‹ 15-126-1-3 sign ë§Œ 15-126-25 sign ë§ 15-126-25-13 sign ë§Ž 15-126-25-356 sign ë§ 15-126-35 sign ë§ 15-126-2 sign ë§‘ 15-126-2-1 sign ë§’ 15-126-2-26 sign ë§“ 15-126-2-12 sign ë§” 15-126-2-3 sign ë§• 15-126-2-236 sign ë§– 15-126-2-256 sign ë§— 15-126-2-356 sign 맘 15-126-26 sign ë§™ 15-126-12 sign ë§š 15-126-12-3 sign ë§› 15-126-3 sign ë§œ 15-126-34 sign ë§ 15-126-2356 sign ë§ž 15-126-13 sign ë§Ÿ 15-126-23 sign ë§  15-126-235 sign ë§¡ 15-126-236 sign ë§¢ 15-126-256 sign ë§£ 15-126-356 sign 매 15-1235 sign ë§¥ 15-1235-1 sign 맦 15-1235-1-1 sign ë§§ 15-1235-1-3 sign 맨 15-1235-25 sign ë§© 15-1235-25-13 sign 맪 15-1235-25-356 sign ë§« 15-1235-35 sign 맬 15-1235-2 sign ë§­ 15-1235-2-1 sign ë§® 15-1235-2-26 sign 맯 15-1235-2-12 sign ë§° 15-1235-2-3 sign ë§± 15-1235-2-236 sign ë§² 15-1235-2-256 sign ë§³ 15-1235-2-356 sign ë§´ 15-1235-26 sign ë§µ 15-1235-12 sign ë§¶ 15-1235-12-3 sign ë§· 15-1235-3 sign 맸 15-1235-34 sign ë§¹ 15-1235-2356 sign 맺 15-1235-13 sign ë§» 15-1235-23 sign ë§¼ 15-1235-235 sign ë§½ 15-1235-236 sign ë§¾ 15-1235-256 sign ë§¿ 15-1235-356 sign 먀 15-345 sign ë¨ 15-345-1 sign 먂 15-345-1-1 sign 먃 15-345-1-3 sign 먄 15-345-25 sign 먅 15-345-25-13 sign 먆 15-345-25-356 sign 먇 15-345-35 sign 먈 15-345-2 sign 먉 15-345-2-1 sign 먊 15-345-2-26 sign 먋 15-345-2-12 sign 먌 15-345-2-3 sign ë¨ 15-345-2-236 sign 먎 15-345-2-256 sign ë¨ 15-345-2-356 sign ë¨ 15-345-26 sign 먑 15-345-12 sign 먒 15-345-12-3 sign 먓 15-345-3 sign 먔 15-345-34 sign 먕 15-345-2356 sign 먖 15-345-13 sign 먗 15-345-23 sign 먘 15-345-235 sign 먙 15-345-236 sign 먚 15-345-256 sign 먛 15-345-356 sign 먜 15-345-1235 sign ë¨ 15-345-1235-1 sign 먞 15-345-1235-1-1 sign 먟 15-345-1235-1-3 sign 먠 15-345-1235-25 sign 먡 15-345-1235-25-13 sign 먢 15-345-1235-25-356 sign 먣 15-345-1235-35 sign 먤 15-345-1235-2 sign 먥 15-345-1235-2-1 sign 먦 15-345-1235-2-26 sign 먧 15-345-1235-2-12 sign 먨 15-345-1235-2-3 sign 먩 15-345-1235-2-236 sign 먪 15-345-1235-2-256 sign 먫 15-345-1235-2-356 sign 먬 15-345-1235-26 sign 먭 15-345-1235-12 sign 먮 15-345-1235-12-3 sign 먯 15-345-1235-3 sign 먰 15-345-1235-34 sign 먱 15-345-1235-2356 sign 먲 15-345-1235-13 sign 먳 15-345-1235-23 sign 먴 15-345-1235-235 sign 먵 15-345-1235-236 sign 먶 15-345-1235-256 sign 먷 15-345-1235-356 sign 머 15-234 sign 먹 15-234-1 sign 먺 15-234-1-1 sign 먻 15-234-1-3 sign 먼 15-234-25 sign 먽 15-234-25-13 sign 먾 15-234-25-356 sign 먿 15-234-35 sign ë©€ 15-234-2 sign ë© 15-234-2-1 sign ë©‚ 15-234-2-26 sign 멃 15-234-2-12 sign ë©„ 15-234-2-3 sign ë©… 15-234-2-236 sign 멆 15-234-2-256 sign 멇 15-234-2-356 sign 멈 15-234-26 sign 멉 15-234-12 sign 멊 15-234-12-3 sign ë©‹ 15-234-3 sign 멌 15-234-34 sign ë© 15-234-2356 sign 멎 15-234-13 sign ë© 15-234-23 sign ë© 15-234-235 sign ë©‘ 15-234-236 sign ë©’ 15-234-256 sign ë©“ 15-234-356 sign ë©” 15-1345 sign ë©• 15-1345-1 sign ë©– 15-1345-1-1 sign ë©— 15-1345-1-3 sign 멘 15-1345-25 sign ë©™ 15-1345-25-13 sign 멚 15-1345-25-356 sign ë©› 15-1345-35 sign 멜 15-1345-2 sign ë© 15-1345-2-1 sign 멞 15-1345-2-26 sign 멟 15-1345-2-12 sign ë©  15-1345-2-3 sign ë©¡ 15-1345-2-236 sign ë©¢ 15-1345-2-256 sign ë©£ 15-1345-2-356 sign 멤 15-1345-26 sign ë©¥ 15-1345-12 sign 멦 15-1345-12-3 sign ë©§ 15-1345-3 sign 멨 15-1345-34 sign ë©© 15-1345-2356 sign 멪 15-1345-13 sign ë©« 15-1345-23 sign 멬 15-1345-235 sign ë©­ 15-1345-236 sign ë©® 15-1345-256 sign 멯 15-1345-356 sign ë©° 15-156 sign 멱 15-156-1 sign 멲 15-156-1-1 sign 멳 15-156-1-3 sign ë©´ 15-156-25 sign 멵 15-156-25-13 sign ë©¶ 15-156-25-356 sign ë©· 15-156-35 sign 멸 15-156-2 sign 멹 15-156-2-1 sign 멺 15-156-2-26 sign ë©» 15-156-2-12 sign 멼 15-156-2-3 sign 멽 15-156-2-236 sign 멾 15-156-2-256 sign ë©¿ 15-156-2-356 sign 몀 15-156-26 sign ëª 15-156-12 sign 몂 15-156-12-3 sign 몃 15-156-3 sign 몄 15-156-34 sign 명 15-156-2356 sign 몆 15-156-13 sign 몇 15-156-23 sign 몈 15-156-235 sign 몉 15-156-236 sign 몊 15-156-256 sign 몋 15-156-356 sign 몌 15-34 sign ëª 15-34-1 sign 몎 15-34-1-1 sign ëª 15-34-1-3 sign ëª 15-34-25 sign 몑 15-34-25-13 sign 몒 15-34-25-356 sign 몓 15-34-35 sign 몔 15-34-2 sign 몕 15-34-2-1 sign 몖 15-34-2-26 sign 몗 15-34-2-12 sign 몘 15-34-2-3 sign 몙 15-34-2-236 sign 몚 15-34-2-256 sign 몛 15-34-2-356 sign 몜 15-34-26 sign ëª 15-34-12 sign 몞 15-34-12-3 sign 몟 15-34-3 sign 몠 15-34-34 sign 몡 15-34-2356 sign 몢 15-34-13 sign 몣 15-34-23 sign 몤 15-34-235 sign 몥 15-34-236 sign 몦 15-34-256 sign 몧 15-34-356 sign 모 15-136 sign 목 15-136-1 sign 몪 15-136-1-1 sign 몫 15-136-1-3 sign 몬 15-136-25 sign 몭 15-136-25-13 sign 몮 15-136-25-356 sign 몯 15-136-35 sign 몰 15-136-2 sign 몱 15-136-2-1 sign 몲 15-136-2-26 sign 몳 15-136-2-12 sign 몴 15-136-2-3 sign 몵 15-136-2-236 sign 몶 15-136-2-256 sign 몷 15-136-2-356 sign 몸 15-136-26 sign 몹 15-136-12 sign 몺 15-136-12-3 sign 못 15-136-3 sign 몼 15-136-34 sign 몽 15-136-2356 sign 몾 15-136-13 sign 몿 15-136-23 sign ë«€ 15-136-235 sign ë« 15-136-236 sign ë«‚ 15-136-256 sign 뫃 15-136-356 sign ë«„ 15-1236 sign ë«… 15-1236-1 sign 뫆 15-1236-1-1 sign 뫇 15-1236-1-3 sign 뫈 15-1236-25 sign 뫉 15-1236-25-13 sign 뫊 15-1236-25-356 sign ë«‹ 15-1236-35 sign 뫌 15-1236-2 sign ë« 15-1236-2-1 sign 뫎 15-1236-2-26 sign ë« 15-1236-2-12 sign ë« 15-1236-2-3 sign ë«‘ 15-1236-2-236 sign ë«’ 15-1236-2-256 sign ë«“ 15-1236-2-356 sign ë«” 15-1236-26 sign ë«• 15-1236-12 sign ë«– 15-1236-12-3 sign ë«— 15-1236-3 sign 뫘 15-1236-34 sign ë«™ 15-1236-2356 sign 뫚 15-1236-13 sign ë«› 15-1236-23 sign 뫜 15-1236-235 sign ë« 15-1236-236 sign 뫞 15-1236-256 sign 뫟 15-1236-356 sign ë«  15-1236-1235 sign ë«¡ 15-1236-1235-1 sign ë«¢ 15-1236-1235-1-1 sign ë«£ 15-1236-1235-1-3 sign 뫤 15-1236-1235-25 sign ë«¥ 15-1236-1235-25-13 sign 뫦 15-1236-1235-25-356 sign ë«§ 15-1236-1235-35 sign 뫨 15-1236-1235-2 sign ë«© 15-1236-1235-2-1 sign 뫪 15-1236-1235-2-26 sign ë«« 15-1236-1235-2-12 sign 뫬 15-1236-1235-2-3 sign ë«­ 15-1236-1235-2-236 sign ë«® 15-1236-1235-2-256 sign 뫯 15-1236-1235-2-356 sign ë«° 15-1236-1235-26 sign 뫱 15-1236-1235-12 sign 뫲 15-1236-1235-12-3 sign 뫳 15-1236-1235-3 sign ë«´ 15-1236-1235-34 sign 뫵 15-1236-1235-2356 sign ë«¶ 15-1236-1235-13 sign ë«· 15-1236-1235-23 sign 뫸 15-1236-1235-235 sign 뫹 15-1236-1235-236 sign 뫺 15-1236-1235-256 sign ë«» 15-1236-1235-356 sign 뫼 15-13456 sign 뫽 15-13456-1 sign 뫾 15-13456-1-1 sign ë«¿ 15-13456-1-3 sign 묀 15-13456-25 sign ë¬ 15-13456-25-13 sign 묂 15-13456-25-356 sign 묃 15-13456-35 sign 묄 15-13456-2 sign 묅 15-13456-2-1 sign 묆 15-13456-2-26 sign 묇 15-13456-2-12 sign 묈 15-13456-2-3 sign 묉 15-13456-2-236 sign 묊 15-13456-2-256 sign 묋 15-13456-2-356 sign 묌 15-13456-26 sign ë¬ 15-13456-12 sign 묎 15-13456-12-3 sign ë¬ 15-13456-3 sign ë¬ 15-13456-34 sign 묑 15-13456-2356 sign 묒 15-13456-13 sign 묓 15-13456-23 sign 묔 15-13456-235 sign 묕 15-13456-236 sign 묖 15-13456-256 sign 묗 15-13456-356 sign 묘 15-346 sign 묙 15-346-1 sign 묚 15-346-1-1 sign 묛 15-346-1-3 sign 묜 15-346-25 sign ë¬ 15-346-25-13 sign 묞 15-346-25-356 sign 묟 15-346-35 sign 묠 15-346-2 sign 묡 15-346-2-1 sign 묢 15-346-2-26 sign 묣 15-346-2-12 sign 묤 15-346-2-3 sign 묥 15-346-2-236 sign 묦 15-346-2-256 sign 묧 15-346-2-356 sign 묨 15-346-26 sign 묩 15-346-12 sign 묪 15-346-12-3 sign 묫 15-346-3 sign 묬 15-346-34 sign 묭 15-346-2356 sign 묮 15-346-13 sign 묯 15-346-23 sign 묰 15-346-235 sign 묱 15-346-236 sign 묲 15-346-256 sign 묳 15-346-356 sign 무 15-134 sign 묵 15-134-1 sign 묶 15-134-1-1 sign 묷 15-134-1-3 sign 문 15-134-25 sign 묹 15-134-25-13 sign 묺 15-134-25-356 sign 묻 15-134-35 sign 물 15-134-2 sign 묽 15-134-2-1 sign 묾 15-134-2-26 sign 묿 15-134-2-12 sign ë­€ 15-134-2-3 sign ë­ 15-134-2-236 sign ë­‚ 15-134-2-256 sign ë­ƒ 15-134-2-356 sign ë­„ 15-134-26 sign ë­… 15-134-12 sign ë­† 15-134-12-3 sign ë­‡ 15-134-3 sign ë­ˆ 15-134-34 sign ë­‰ 15-134-2356 sign ë­Š 15-134-13 sign ë­‹ 15-134-23 sign ë­Œ 15-134-235 sign ë­ 15-134-236 sign ë­Ž 15-134-256 sign ë­ 15-134-356 sign ë­ 15-1234 sign ë­‘ 15-1234-1 sign ë­’ 15-1234-1-1 sign ë­“ 15-1234-1-3 sign ë­” 15-1234-25 sign ë­• 15-1234-25-13 sign ë­– 15-1234-25-356 sign ë­— 15-1234-35 sign ë­˜ 15-1234-2 sign ë­™ 15-1234-2-1 sign ë­š 15-1234-2-26 sign ë­› 15-1234-2-12 sign ë­œ 15-1234-2-3 sign ë­ 15-1234-2-236 sign ë­ž 15-1234-2-256 sign ë­Ÿ 15-1234-2-356 sign ë­  15-1234-26 sign ë­¡ 15-1234-12 sign ë­¢ 15-1234-12-3 sign ë­£ 15-1234-3 sign ë­¤ 15-1234-34 sign ë­¥ 15-1234-2356 sign ë­¦ 15-1234-13 sign ë­§ 15-1234-23 sign ë­¨ 15-1234-235 sign ë­© 15-1234-236 sign ë­ª 15-1234-256 sign ë­« 15-1234-356 sign ë­¬ 15-1234-1235 sign ë­­ 15-1234-1235-1 sign ë­® 15-1234-1235-1-1 sign ë­¯ 15-1234-1235-1-3 sign ë­° 15-1234-1235-25 sign ë­± 15-1234-1235-25-13 sign ë­² 15-1234-1235-25-356 sign ë­³ 15-1234-1235-35 sign ë­´ 15-1234-1235-2 sign ë­µ 15-1234-1235-2-1 sign ë­¶ 15-1234-1235-2-26 sign ë­· 15-1234-1235-2-12 sign ë­¸ 15-1234-1235-2-3 sign ë­¹ 15-1234-1235-2-236 sign ë­º 15-1234-1235-2-256 sign ë­» 15-1234-1235-2-356 sign ë­¼ 15-1234-1235-26 sign ë­½ 15-1234-1235-12 sign ë­¾ 15-1234-1235-12-3 sign ë­¿ 15-1234-1235-3 sign 뮀 15-1234-1235-34 sign ë® 15-1234-1235-2356 sign 뮂 15-1234-1235-13 sign 뮃 15-1234-1235-23 sign 뮄 15-1234-1235-235 sign ë®… 15-1234-1235-236 sign 뮆 15-1234-1235-256 sign 뮇 15-1234-1235-356 sign 뮈 15-134-1235 sign 뮉 15-134-1235-1 sign 뮊 15-134-1235-1-1 sign 뮋 15-134-1235-1-3 sign 뮌 15-134-1235-25 sign ë® 15-134-1235-25-13 sign 뮎 15-134-1235-25-356 sign ë® 15-134-1235-35 sign ë® 15-134-1235-2 sign 뮑 15-134-1235-2-1 sign ë®’ 15-134-1235-2-26 sign 뮓 15-134-1235-2-12 sign ë®” 15-134-1235-2-3 sign 뮕 15-134-1235-2-236 sign ë®– 15-134-1235-2-256 sign ë®— 15-134-1235-2-356 sign 뮘 15-134-1235-26 sign ë®™ 15-134-1235-12 sign 뮚 15-134-1235-12-3 sign ë®› 15-134-1235-3 sign 뮜 15-134-1235-34 sign ë® 15-134-1235-2356 sign 뮞 15-134-1235-13 sign 뮟 15-134-1235-23 sign ë®  15-134-1235-235 sign 뮡 15-134-1235-236 sign 뮢 15-134-1235-256 sign 뮣 15-134-1235-356 sign 뮤 15-146 sign 뮥 15-146-1 sign 뮦 15-146-1-1 sign ë®§ 15-146-1-3 sign 뮨 15-146-25 sign 뮩 15-146-25-13 sign 뮪 15-146-25-356 sign 뮫 15-146-35 sign 뮬 15-146-2 sign ë®­ 15-146-2-1 sign ë®® 15-146-2-26 sign 뮯 15-146-2-12 sign ë®° 15-146-2-3 sign ë®± 15-146-2-236 sign 뮲 15-146-2-256 sign 뮳 15-146-2-356 sign ë®´ 15-146-26 sign 뮵 15-146-12 sign ë®¶ 15-146-12-3 sign ë®· 15-146-3 sign 뮸 15-146-34 sign 뮹 15-146-2356 sign 뮺 15-146-13 sign ë®» 15-146-23 sign 뮼 15-146-235 sign 뮽 15-146-236 sign 뮾 15-146-256 sign 뮿 15-146-356 sign 므 15-246 sign ë¯ 15-246-1 sign 믂 15-246-1-1 sign 믃 15-246-1-3 sign 믄 15-246-25 sign 믅 15-246-25-13 sign 믆 15-246-25-356 sign 믇 15-246-35 sign 믈 15-246-2 sign 믉 15-246-2-1 sign 믊 15-246-2-26 sign 믋 15-246-2-12 sign 믌 15-246-2-3 sign ë¯ 15-246-2-236 sign 믎 15-246-2-256 sign ë¯ 15-246-2-356 sign ë¯ 15-246-26 sign 믑 15-246-12 sign 믒 15-246-12-3 sign 믓 15-246-3 sign 믔 15-246-34 sign 믕 15-246-2356 sign 믖 15-246-13 sign 믗 15-246-23 sign 믘 15-246-235 sign 믙 15-246-236 sign 믚 15-246-256 sign 믛 15-246-356 sign 믜 15-2456 sign ë¯ 15-2456-1 sign 믞 15-2456-1-1 sign 믟 15-2456-1-3 sign 믠 15-2456-25 sign 믡 15-2456-25-13 sign 믢 15-2456-25-356 sign 믣 15-2456-35 sign 믤 15-2456-2 sign 믥 15-2456-2-1 sign 믦 15-2456-2-26 sign 믧 15-2456-2-12 sign 믨 15-2456-2-3 sign 믩 15-2456-2-236 sign 믪 15-2456-2-256 sign 믫 15-2456-2-356 sign 믬 15-2456-26 sign 믭 15-2456-12 sign 믮 15-2456-12-3 sign 믯 15-2456-3 sign 믰 15-2456-34 sign 믱 15-2456-2356 sign 믲 15-2456-13 sign 믳 15-2456-23 sign 믴 15-2456-235 sign 믵 15-2456-236 sign 믶 15-2456-256 sign 믷 15-2456-356 sign 미 15-135 sign 믹 15-135-1 sign 믺 15-135-1-1 sign 믻 15-135-1-3 sign 민 15-135-25 sign 믽 15-135-25-13 sign 믾 15-135-25-356 sign 믿 15-135-35 sign ë°€ 15-135-2 sign ë° 15-135-2-1 sign ë°‚ 15-135-2-26 sign ë°ƒ 15-135-2-12 sign ë°„ 15-135-2-3 sign ë°… 15-135-2-236 sign ë°† 15-135-2-256 sign ë°‡ 15-135-2-356 sign ë°ˆ 15-135-26 sign ë°‰ 15-135-12 sign ë°Š 15-135-12-3 sign ë°‹ 15-135-3 sign ë°Œ 15-135-34 sign ë° 15-135-2356 sign ë°Ž 15-135-13 sign ë° 15-135-23 sign ë° 15-135-235 sign ë°‘ 15-135-236 sign ë°’ 15-135-256 sign ë°“ 15-135-356 sign ë°” 45-126 sign ë°• 45-126-1 sign ë°– 45-126-1-1 sign ë°— 45-126-1-3 sign ë°˜ 45-126-25 sign ë°™ 45-126-25-13 sign ë°š 45-126-25-356 sign ë°› 45-126-35 sign ë°œ 45-126-2 sign ë° 45-126-2-1 sign ë°ž 45-126-2-26 sign ë°Ÿ 45-126-2-12 sign ë°  45-126-2-3 sign ë°¡ 45-126-2-236 sign ë°¢ 45-126-2-256 sign ë°£ 45-126-2-356 sign ë°¤ 45-126-26 sign ë°¥ 45-126-12 sign ë°¦ 45-126-12-3 sign ë°§ 45-126-3 sign ë°¨ 45-126-34 sign ë°© 45-126-2356 sign ë°ª 45-126-13 sign ë°« 45-126-23 sign ë°¬ 45-126-235 sign ë°­ 45-126-236 sign ë°® 45-126-256 sign ë°¯ 45-126-356 sign ë°° 45-1235 sign ë°± 45-1235-1 sign ë°² 45-1235-1-1 sign ë°³ 45-1235-1-3 sign ë°´ 45-1235-25 sign ë°µ 45-1235-25-13 sign ë°¶ 45-1235-25-356 sign ë°· 45-1235-35 sign ë°¸ 45-1235-2 sign ë°¹ 45-1235-2-1 sign ë°º 45-1235-2-26 sign ë°» 45-1235-2-12 sign ë°¼ 45-1235-2-3 sign ë°½ 45-1235-2-236 sign ë°¾ 45-1235-2-256 sign ë°¿ 45-1235-2-356 sign ë±€ 45-1235-26 sign ë± 45-1235-12 sign 뱂 45-1235-12-3 sign 뱃 45-1235-3 sign 뱄 45-1235-34 sign ë±… 45-1235-2356 sign 뱆 45-1235-13 sign 뱇 45-1235-23 sign 뱈 45-1235-235 sign 뱉 45-1235-236 sign 뱊 45-1235-256 sign 뱋 45-1235-356 sign 뱌 45-345 sign ë± 45-345-1 sign 뱎 45-345-1-1 sign ë± 45-345-1-3 sign ë± 45-345-25 sign 뱑 45-345-25-13 sign ë±’ 45-345-25-356 sign 뱓 45-345-35 sign ë±” 45-345-2 sign 뱕 45-345-2-1 sign ë±– 45-345-2-26 sign ë±— 45-345-2-12 sign 뱘 45-345-2-3 sign ë±™ 45-345-2-236 sign 뱚 45-345-2-256 sign ë±› 45-345-2-356 sign 뱜 45-345-26 sign ë± 45-345-12 sign 뱞 45-345-12-3 sign 뱟 45-345-3 sign ë±  45-345-34 sign 뱡 45-345-2356 sign ë±¢ 45-345-13 sign ë±£ 45-345-23 sign 뱤 45-345-235 sign ë±¥ 45-345-236 sign 뱦 45-345-256 sign ë±§ 45-345-356 sign 뱨 45-345-1235 sign 뱩 45-345-1235-1 sign 뱪 45-345-1235-1-1 sign 뱫 45-345-1235-1-3 sign 뱬 45-345-1235-25 sign ë±­ 45-345-1235-25-13 sign ë±® 45-345-1235-25-356 sign 뱯 45-345-1235-35 sign ë±° 45-345-1235-2 sign ë±± 45-345-1235-2-1 sign ë±² 45-345-1235-2-26 sign ë±³ 45-345-1235-2-12 sign ë±´ 45-345-1235-2-3 sign ë±µ 45-345-1235-2-236 sign ë±¶ 45-345-1235-2-256 sign ë±· 45-345-1235-2-356 sign 뱸 45-345-1235-26 sign ë±¹ 45-345-1235-12 sign 뱺 45-345-1235-12-3 sign ë±» 45-345-1235-3 sign ë±¼ 45-345-1235-34 sign ë±½ 45-345-1235-2356 sign ë±¾ 45-345-1235-13 sign 뱿 45-345-1235-23 sign ë²€ 45-345-1235-235 sign ë² 45-345-1235-236 sign 벂 45-345-1235-256 sign 벃 45-345-1235-356 sign 버 45-234 sign ë²… 45-234-1 sign 벆 45-234-1-1 sign 벇 45-234-1-3 sign 번 45-234-25 sign 벉 45-234-25-13 sign 벊 45-234-25-356 sign 벋 45-234-35 sign 벌 45-234-2 sign ë² 45-234-2-1 sign 벎 45-234-2-26 sign ë² 45-234-2-12 sign ë² 45-234-2-3 sign 벑 45-234-2-236 sign ë²’ 45-234-2-256 sign 벓 45-234-2-356 sign ë²” 45-234-26 sign 법 45-234-12 sign ë²– 45-234-12-3 sign ë²— 45-234-3 sign 벘 45-234-34 sign ë²™ 45-234-2356 sign 벚 45-234-13 sign ë²› 45-234-23 sign 벜 45-234-235 sign ë² 45-234-236 sign 벞 45-234-256 sign 벟 45-234-356 sign ë²  45-1345 sign 벡 45-1345-1 sign ë²¢ 45-1345-1-1 sign ë²£ 45-1345-1-3 sign 벤 45-1345-25 sign ë²¥ 45-1345-25-13 sign 벦 45-1345-25-356 sign ë²§ 45-1345-35 sign 벨 45-1345-2 sign 벩 45-1345-2-1 sign 벪 45-1345-2-26 sign 벫 45-1345-2-12 sign 벬 45-1345-2-3 sign ë²­ 45-1345-2-236 sign ë²® 45-1345-2-256 sign 벯 45-1345-2-356 sign ë²° 45-1345-26 sign ë²± 45-1345-12 sign ë²² 45-1345-12-3 sign ë²³ 45-1345-3 sign ë²´ 45-1345-34 sign ë²µ 45-1345-2356 sign ë²¶ 45-1345-13 sign ë²· 45-1345-23 sign 벸 45-1345-235 sign ë²¹ 45-1345-236 sign 벺 45-1345-256 sign ë²» 45-1345-356 sign ë²¼ 45-156 sign ë²½ 45-156-1 sign ë²¾ 45-156-1-1 sign 벿 45-156-1-3 sign ë³€ 45-156-25 sign ë³ 45-156-25-13 sign 볂 45-156-25-356 sign 볃 45-156-35 sign 별 45-156-2 sign ë³… 45-156-2-1 sign 볆 45-156-2-26 sign 볇 45-156-2-12 sign 볈 45-156-2-3 sign 볉 45-156-2-236 sign 볊 45-156-2-256 sign 볋 45-156-2-356 sign 볌 45-156-26 sign ë³ 45-156-12 sign 볎 45-156-12-3 sign ë³ 45-156-3 sign ë³ 45-156-34 sign 병 45-156-2356 sign ë³’ 45-156-13 sign 볓 45-156-23 sign ë³” 45-156-235 sign 볕 45-156-236 sign ë³– 45-156-256 sign ë³— 45-156-356 sign 볘 45-34 sign ë³™ 45-34-1 sign 볚 45-34-1-1 sign ë³› 45-34-1-3 sign 볜 45-34-25 sign ë³ 45-34-25-13 sign 볞 45-34-25-356 sign 볟 45-34-35 sign ë³  45-34-2 sign 볡 45-34-2-1 sign ë³¢ 45-34-2-26 sign ë³£ 45-34-2-12 sign 볤 45-34-2-3 sign ë³¥ 45-34-2-236 sign 볦 45-34-2-256 sign ë³§ 45-34-2-356 sign 볨 45-34-26 sign 볩 45-34-12 sign 볪 45-34-12-3 sign 볫 45-34-3 sign 볬 45-34-34 sign ë³­ 45-34-2356 sign ë³® 45-34-13 sign 볯 45-34-23 sign ë³° 45-34-235 sign ë³± 45-34-236 sign ë³² 45-34-256 sign ë³³ 45-34-356 sign ë³´ 45-136 sign ë³µ 45-136-1 sign ë³¶ 45-136-1-1 sign ë³· 45-136-1-3 sign 본 45-136-25 sign ë³¹ 45-136-25-13 sign 볺 45-136-25-356 sign ë³» 45-136-35 sign ë³¼ 45-136-2 sign ë³½ 45-136-2-1 sign ë³¾ 45-136-2-26 sign 볿 45-136-2-12 sign ë´€ 45-136-2-3 sign ë´ 45-136-2-236 sign ë´‚ 45-136-2-256 sign ë´ƒ 45-136-2-356 sign ë´„ 45-136-26 sign ë´… 45-136-12 sign ë´† 45-136-12-3 sign ë´‡ 45-136-3 sign ë´ˆ 45-136-34 sign ë´‰ 45-136-2356 sign ë´Š 45-136-13 sign ë´‹ 45-136-23 sign ë´Œ 45-136-235 sign ë´ 45-136-236 sign ë´Ž 45-136-256 sign ë´ 45-136-356 sign ë´ 45-1236 sign ë´‘ 45-1236-1 sign ë´’ 45-1236-1-1 sign ë´“ 45-1236-1-3 sign ë´” 45-1236-25 sign ë´• 45-1236-25-13 sign ë´– 45-1236-25-356 sign ë´— 45-1236-35 sign ë´˜ 45-1236-2 sign ë´™ 45-1236-2-1 sign ë´š 45-1236-2-26 sign ë´› 45-1236-2-12 sign ë´œ 45-1236-2-3 sign ë´ 45-1236-2-236 sign ë´ž 45-1236-2-256 sign ë´Ÿ 45-1236-2-356 sign ë´  45-1236-26 sign ë´¡ 45-1236-12 sign ë´¢ 45-1236-12-3 sign ë´£ 45-1236-3 sign ë´¤ 45-1236-34 sign ë´¥ 45-1236-2356 sign ë´¦ 45-1236-13 sign ë´§ 45-1236-23 sign ë´¨ 45-1236-235 sign ë´© 45-1236-236 sign ë´ª 45-1236-256 sign ë´« 45-1236-356 sign ë´¬ 45-1236-1235 sign ë´­ 45-1236-1235-1 sign ë´® 45-1236-1235-1-1 sign ë´¯ 45-1236-1235-1-3 sign ë´° 45-1236-1235-25 sign ë´± 45-1236-1235-25-13 sign ë´² 45-1236-1235-25-356 sign ë´³ 45-1236-1235-35 sign ë´´ 45-1236-1235-2 sign ë´µ 45-1236-1235-2-1 sign ë´¶ 45-1236-1235-2-26 sign ë´· 45-1236-1235-2-12 sign ë´¸ 45-1236-1235-2-3 sign ë´¹ 45-1236-1235-2-236 sign ë´º 45-1236-1235-2-256 sign ë´» 45-1236-1235-2-356 sign ë´¼ 45-1236-1235-26 sign ë´½ 45-1236-1235-12 sign ë´¾ 45-1236-1235-12-3 sign ë´¿ 45-1236-1235-3 sign ëµ€ 45-1236-1235-34 sign ëµ 45-1236-1235-2356 sign 뵂 45-1236-1235-13 sign 뵃 45-1236-1235-23 sign 뵄 45-1236-1235-235 sign ëµ… 45-1236-1235-236 sign 뵆 45-1236-1235-256 sign 뵇 45-1236-1235-356 sign 뵈 45-13456 sign 뵉 45-13456-1 sign 뵊 45-13456-1-1 sign 뵋 45-13456-1-3 sign 뵌 45-13456-25 sign ëµ 45-13456-25-13 sign 뵎 45-13456-25-356 sign ëµ 45-13456-35 sign ëµ 45-13456-2 sign 뵑 45-13456-2-1 sign ëµ’ 45-13456-2-26 sign 뵓 45-13456-2-12 sign ëµ” 45-13456-2-3 sign 뵕 45-13456-2-236 sign ëµ– 45-13456-2-256 sign ëµ— 45-13456-2-356 sign 뵘 45-13456-26 sign ëµ™ 45-13456-12 sign 뵚 45-13456-12-3 sign ëµ› 45-13456-3 sign 뵜 45-13456-34 sign ëµ 45-13456-2356 sign 뵞 45-13456-13 sign 뵟 45-13456-23 sign ëµ  45-13456-235 sign 뵡 45-13456-236 sign ëµ¢ 45-13456-256 sign ëµ£ 45-13456-356 sign 뵤 45-346 sign ëµ¥ 45-346-1 sign 뵦 45-346-1-1 sign ëµ§ 45-346-1-3 sign 뵨 45-346-25 sign 뵩 45-346-25-13 sign 뵪 45-346-25-356 sign 뵫 45-346-35 sign 뵬 45-346-2 sign ëµ­ 45-346-2-1 sign ëµ® 45-346-2-26 sign 뵯 45-346-2-12 sign ëµ° 45-346-2-3 sign ëµ± 45-346-2-236 sign ëµ² 45-346-2-256 sign ëµ³ 45-346-2-356 sign ëµ´ 45-346-26 sign ëµµ 45-346-12 sign ëµ¶ 45-346-12-3 sign ëµ· 45-346-3 sign 뵸 45-346-34 sign ëµ¹ 45-346-2356 sign 뵺 45-346-13 sign ëµ» 45-346-23 sign ëµ¼ 45-346-235 sign ëµ½ 45-346-236 sign ëµ¾ 45-346-256 sign 뵿 45-346-356 sign ë¶€ 45-134 sign ë¶ 45-134-1 sign ë¶‚ 45-134-1-1 sign 붃 45-134-1-3 sign ë¶„ 45-134-25 sign ë¶… 45-134-25-13 sign 붆 45-134-25-356 sign 붇 45-134-35 sign 불 45-134-2 sign 붉 45-134-2-1 sign ë¶Š 45-134-2-26 sign ë¶‹ 45-134-2-12 sign ë¶Œ 45-134-2-3 sign ë¶ 45-134-2-236 sign ë¶Ž 45-134-2-256 sign ë¶ 45-134-2-356 sign ë¶ 45-134-26 sign ë¶‘ 45-134-12 sign ë¶’ 45-134-12-3 sign ë¶“ 45-134-3 sign ë¶” 45-134-34 sign ë¶• 45-134-2356 sign ë¶– 45-134-13 sign ë¶— 45-134-23 sign 붘 45-134-235 sign ë¶™ 45-134-236 sign ë¶š 45-134-256 sign ë¶› 45-134-356 sign ë¶œ 45-1234 sign ë¶ 45-1234-1 sign ë¶ž 45-1234-1-1 sign ë¶Ÿ 45-1234-1-3 sign ë¶  45-1234-25 sign ë¶¡ 45-1234-25-13 sign ë¶¢ 45-1234-25-356 sign ë¶£ 45-1234-35 sign 붤 45-1234-2 sign ë¶¥ 45-1234-2-1 sign 붦 45-1234-2-26 sign ë¶§ 45-1234-2-12 sign 붨 45-1234-2-3 sign ë¶© 45-1234-2-236 sign 붪 45-1234-2-256 sign ë¶« 45-1234-2-356 sign 붬 45-1234-26 sign ë¶­ 45-1234-12 sign ë¶® 45-1234-12-3 sign 붯 45-1234-3 sign ë¶° 45-1234-34 sign ë¶± 45-1234-2356 sign ë¶² 45-1234-13 sign ë¶³ 45-1234-23 sign ë¶´ 45-1234-235 sign ë¶µ 45-1234-236 sign ë¶¶ 45-1234-256 sign ë¶· 45-1234-356 sign 붸 45-1234-1235 sign ë¶¹ 45-1234-1235-1 sign 붺 45-1234-1235-1-1 sign ë¶» 45-1234-1235-1-3 sign ë¶¼ 45-1234-1235-25 sign ë¶½ 45-1234-1235-25-13 sign ë¶¾ 45-1234-1235-25-356 sign ë¶¿ 45-1234-1235-35 sign ë·€ 45-1234-1235-2 sign ë· 45-1234-1235-2-1 sign ë·‚ 45-1234-1235-2-26 sign ë·ƒ 45-1234-1235-2-12 sign ë·„ 45-1234-1235-2-3 sign ë·… 45-1234-1235-2-236 sign ë·† 45-1234-1235-2-256 sign ë·‡ 45-1234-1235-2-356 sign ë·ˆ 45-1234-1235-26 sign ë·‰ 45-1234-1235-12 sign ë·Š 45-1234-1235-12-3 sign ë·‹ 45-1234-1235-3 sign ë·Œ 45-1234-1235-34 sign ë· 45-1234-1235-2356 sign ë·Ž 45-1234-1235-13 sign ë· 45-1234-1235-23 sign ë· 45-1234-1235-235 sign ë·‘ 45-1234-1235-236 sign ë·’ 45-1234-1235-256 sign ë·“ 45-1234-1235-356 sign ë·” 45-134-1235 sign ë·• 45-134-1235-1 sign ë·– 45-134-1235-1-1 sign ë·— 45-134-1235-1-3 sign ë·˜ 45-134-1235-25 sign ë·™ 45-134-1235-25-13 sign ë·š 45-134-1235-25-356 sign ë·› 45-134-1235-35 sign ë·œ 45-134-1235-2 sign ë· 45-134-1235-2-1 sign ë·ž 45-134-1235-2-26 sign ë·Ÿ 45-134-1235-2-12 sign ë·  45-134-1235-2-3 sign ë·¡ 45-134-1235-2-236 sign ë·¢ 45-134-1235-2-256 sign ë·£ 45-134-1235-2-356 sign ë·¤ 45-134-1235-26 sign ë·¥ 45-134-1235-12 sign ë·¦ 45-134-1235-12-3 sign ë·§ 45-134-1235-3 sign ë·¨ 45-134-1235-34 sign ë·© 45-134-1235-2356 sign ë·ª 45-134-1235-13 sign ë·« 45-134-1235-23 sign ë·¬ 45-134-1235-235 sign ë·­ 45-134-1235-236 sign ë·® 45-134-1235-256 sign ë·¯ 45-134-1235-356 sign ë·° 45-146 sign ë·± 45-146-1 sign ë·² 45-146-1-1 sign ë·³ 45-146-1-3 sign ë·´ 45-146-25 sign ë·µ 45-146-25-13 sign ë·¶ 45-146-25-356 sign ë·· 45-146-35 sign ë·¸ 45-146-2 sign ë·¹ 45-146-2-1 sign ë·º 45-146-2-26 sign ë·» 45-146-2-12 sign ë·¼ 45-146-2-3 sign ë·½ 45-146-2-236 sign ë·¾ 45-146-2-256 sign ë·¿ 45-146-2-356 sign 븀 45-146-26 sign ë¸ 45-146-12 sign 븂 45-146-12-3 sign 븃 45-146-3 sign 븄 45-146-34 sign 븅 45-146-2356 sign 븆 45-146-13 sign 븇 45-146-23 sign 븈 45-146-235 sign 븉 45-146-236 sign 븊 45-146-256 sign 븋 45-146-356 sign 브 45-246 sign ë¸ 45-246-1 sign 븎 45-246-1-1 sign ë¸ 45-246-1-3 sign ë¸ 45-246-25 sign 븑 45-246-25-13 sign 븒 45-246-25-356 sign 븓 45-246-35 sign 블 45-246-2 sign 븕 45-246-2-1 sign 븖 45-246-2-26 sign 븗 45-246-2-12 sign 븘 45-246-2-3 sign 븙 45-246-2-236 sign 븚 45-246-2-256 sign 븛 45-246-2-356 sign 븜 45-246-26 sign ë¸ 45-246-12 sign 븞 45-246-12-3 sign 븟 45-246-3 sign 븠 45-246-34 sign 븡 45-246-2356 sign 븢 45-246-13 sign 븣 45-246-23 sign 븤 45-246-235 sign 븥 45-246-236 sign 븦 45-246-256 sign 븧 45-246-356 sign 븨 45-2456 sign 븩 45-2456-1 sign 븪 45-2456-1-1 sign 븫 45-2456-1-3 sign 븬 45-2456-25 sign 븭 45-2456-25-13 sign 븮 45-2456-25-356 sign 븯 45-2456-35 sign 븰 45-2456-2 sign 븱 45-2456-2-1 sign 븲 45-2456-2-26 sign 븳 45-2456-2-12 sign 븴 45-2456-2-3 sign 븵 45-2456-2-236 sign 븶 45-2456-2-256 sign 븷 45-2456-2-356 sign 븸 45-2456-26 sign 븹 45-2456-12 sign 븺 45-2456-12-3 sign 븻 45-2456-3 sign 븼 45-2456-34 sign 븽 45-2456-2356 sign 븾 45-2456-13 sign 븿 45-2456-23 sign ë¹€ 45-2456-235 sign ë¹ 45-2456-236 sign 빂 45-2456-256 sign 빃 45-2456-356 sign 비 45-135 sign ë¹… 45-135-1 sign 빆 45-135-1-1 sign 빇 45-135-1-3 sign 빈 45-135-25 sign 빉 45-135-25-13 sign 빊 45-135-25-356 sign 빋 45-135-35 sign 빌 45-135-2 sign ë¹ 45-135-2-1 sign 빎 45-135-2-26 sign ë¹ 45-135-2-12 sign ë¹ 45-135-2-3 sign 빑 45-135-2-236 sign ë¹’ 45-135-2-256 sign 빓 45-135-2-356 sign ë¹” 45-135-26 sign 빕 45-135-12 sign ë¹– 45-135-12-3 sign ë¹— 45-135-3 sign 빘 45-135-34 sign ë¹™ 45-135-2356 sign 빚 45-135-13 sign ë¹› 45-135-23 sign 빜 45-135-235 sign ë¹ 45-135-236 sign 빞 45-135-256 sign 빟 45-135-356 sign ë¹  6-45-126 sign 빡 6-45-126-1 sign ë¹¢ 6-45-126-1-1 sign ë¹£ 6-45-126-1-3 sign 빤 6-45-126-25 sign ë¹¥ 6-45-126-25-13 sign 빦 6-45-126-25-356 sign ë¹§ 6-45-126-35 sign 빨 6-45-126-2 sign 빩 6-45-126-2-1 sign 빪 6-45-126-2-26 sign 빫 6-45-126-2-12 sign 빬 6-45-126-2-3 sign ë¹­ 6-45-126-2-236 sign ë¹® 6-45-126-2-256 sign 빯 6-45-126-2-356 sign ë¹° 6-45-126-26 sign ë¹± 6-45-126-12 sign ë¹² 6-45-126-12-3 sign ë¹³ 6-45-126-3 sign ë¹´ 6-45-126-34 sign ë¹µ 6-45-126-2356 sign ë¹¶ 6-45-126-13 sign ë¹· 6-45-126-23 sign 빸 6-45-126-235 sign ë¹¹ 6-45-126-236 sign 빺 6-45-126-256 sign ë¹» 6-45-126-356 sign ë¹¼ 6-45-1235 sign ë¹½ 6-45-1235-1 sign ë¹¾ 6-45-1235-1-1 sign 빿 6-45-1235-1-3 sign 뺀 6-45-1235-25 sign ëº 6-45-1235-25-13 sign 뺂 6-45-1235-25-356 sign 뺃 6-45-1235-35 sign 뺄 6-45-1235-2 sign 뺅 6-45-1235-2-1 sign 뺆 6-45-1235-2-26 sign 뺇 6-45-1235-2-12 sign 뺈 6-45-1235-2-3 sign 뺉 6-45-1235-2-236 sign 뺊 6-45-1235-2-256 sign 뺋 6-45-1235-2-356 sign 뺌 6-45-1235-26 sign ëº 6-45-1235-12 sign 뺎 6-45-1235-12-3 sign ëº 6-45-1235-3 sign ëº 6-45-1235-34 sign 뺑 6-45-1235-2356 sign 뺒 6-45-1235-13 sign 뺓 6-45-1235-23 sign 뺔 6-45-1235-235 sign 뺕 6-45-1235-236 sign 뺖 6-45-1235-256 sign 뺗 6-45-1235-356 sign 뺘 6-45-345 sign 뺙 6-45-345-1 sign 뺚 6-45-345-1-1 sign 뺛 6-45-345-1-3 sign 뺜 6-45-345-25 sign ëº 6-45-345-25-13 sign 뺞 6-45-345-25-356 sign 뺟 6-45-345-35 sign 뺠 6-45-345-2 sign 뺡 6-45-345-2-1 sign 뺢 6-45-345-2-26 sign 뺣 6-45-345-2-12 sign 뺤 6-45-345-2-3 sign 뺥 6-45-345-2-236 sign 뺦 6-45-345-2-256 sign 뺧 6-45-345-2-356 sign 뺨 6-45-345-26 sign 뺩 6-45-345-12 sign 뺪 6-45-345-12-3 sign 뺫 6-45-345-3 sign 뺬 6-45-345-34 sign 뺭 6-45-345-2356 sign 뺮 6-45-345-13 sign 뺯 6-45-345-23 sign 뺰 6-45-345-235 sign 뺱 6-45-345-236 sign 뺲 6-45-345-256 sign 뺳 6-45-345-356 sign 뺴 6-45-345-1235 sign 뺵 6-45-345-1235-1 sign 뺶 6-45-345-1235-1-1 sign 뺷 6-45-345-1235-1-3 sign 뺸 6-45-345-1235-25 sign 뺹 6-45-345-1235-25-13 sign 뺺 6-45-345-1235-25-356 sign 뺻 6-45-345-1235-35 sign 뺼 6-45-345-1235-2 sign 뺽 6-45-345-1235-2-1 sign 뺾 6-45-345-1235-2-26 sign 뺿 6-45-345-1235-2-12 sign 뻀 6-45-345-1235-2-3 sign ë» 6-45-345-1235-2-236 sign 뻂 6-45-345-1235-2-256 sign 뻃 6-45-345-1235-2-356 sign 뻄 6-45-345-1235-26 sign ë»… 6-45-345-1235-12 sign 뻆 6-45-345-1235-12-3 sign 뻇 6-45-345-1235-3 sign 뻈 6-45-345-1235-34 sign 뻉 6-45-345-1235-2356 sign 뻊 6-45-345-1235-13 sign 뻋 6-45-345-1235-23 sign 뻌 6-45-345-1235-235 sign ë» 6-45-345-1235-236 sign 뻎 6-45-345-1235-256 sign ë» 6-45-345-1235-356 sign ë» 6-45-234 sign 뻑 6-45-234-1 sign ë»’ 6-45-234-1-1 sign 뻓 6-45-234-1-3 sign ë»” 6-45-234-25 sign 뻕 6-45-234-25-13 sign ë»– 6-45-234-25-356 sign ë»— 6-45-234-35 sign 뻘 6-45-234-2 sign ë»™ 6-45-234-2-1 sign 뻚 6-45-234-2-26 sign ë»› 6-45-234-2-12 sign 뻜 6-45-234-2-3 sign ë» 6-45-234-2-236 sign 뻞 6-45-234-2-256 sign 뻟 6-45-234-2-356 sign ë»  6-45-234-26 sign 뻡 6-45-234-12 sign 뻢 6-45-234-12-3 sign 뻣 6-45-234-3 sign 뻤 6-45-234-34 sign 뻥 6-45-234-2356 sign 뻦 6-45-234-13 sign ë»§ 6-45-234-23 sign 뻨 6-45-234-235 sign 뻩 6-45-234-236 sign 뻪 6-45-234-256 sign 뻫 6-45-234-356 sign 뻬 6-45-1345 sign ë»­ 6-45-1345-1 sign ë»® 6-45-1345-1-1 sign 뻯 6-45-1345-1-3 sign ë»° 6-45-1345-25 sign ë»± 6-45-1345-25-13 sign 뻲 6-45-1345-25-356 sign 뻳 6-45-1345-35 sign ë»´ 6-45-1345-2 sign 뻵 6-45-1345-2-1 sign ë»¶ 6-45-1345-2-26 sign ë»· 6-45-1345-2-12 sign 뻸 6-45-1345-2-3 sign 뻹 6-45-1345-2-236 sign 뻺 6-45-1345-2-256 sign ë»» 6-45-1345-2-356 sign 뻼 6-45-1345-26 sign 뻽 6-45-1345-12 sign 뻾 6-45-1345-12-3 sign 뻿 6-45-1345-3 sign ë¼€ 6-45-1345-34 sign ë¼ 6-45-1345-2356 sign 뼂 6-45-1345-13 sign 뼃 6-45-1345-23 sign 뼄 6-45-1345-235 sign ë¼… 6-45-1345-236 sign 뼆 6-45-1345-256 sign 뼇 6-45-1345-356 sign 뼈 6-45-156 sign 뼉 6-45-156-1 sign 뼊 6-45-156-1-1 sign 뼋 6-45-156-1-3 sign 뼌 6-45-156-25 sign ë¼ 6-45-156-25-13 sign 뼎 6-45-156-25-356 sign ë¼ 6-45-156-35 sign ë¼ 6-45-156-2 sign 뼑 6-45-156-2-1 sign ë¼’ 6-45-156-2-26 sign 뼓 6-45-156-2-12 sign ë¼” 6-45-156-2-3 sign 뼕 6-45-156-2-236 sign ë¼– 6-45-156-2-256 sign ë¼— 6-45-156-2-356 sign 뼘 6-45-156-26 sign ë¼™ 6-45-156-12 sign 뼚 6-45-156-12-3 sign ë¼› 6-45-156-3 sign 뼜 6-45-156-34 sign ë¼ 6-45-156-2356 sign 뼞 6-45-156-13 sign 뼟 6-45-156-23 sign ë¼  6-45-156-235 sign 뼡 6-45-156-236 sign ë¼¢ 6-45-156-256 sign ë¼£ 6-45-156-356 sign 뼤 6-45-34 sign ë¼¥ 6-45-34-1 sign 뼦 6-45-34-1-1 sign ë¼§ 6-45-34-1-3 sign 뼨 6-45-34-25 sign 뼩 6-45-34-25-13 sign 뼪 6-45-34-25-356 sign 뼫 6-45-34-35 sign 뼬 6-45-34-2 sign ë¼­ 6-45-34-2-1 sign ë¼® 6-45-34-2-26 sign 뼯 6-45-34-2-12 sign ë¼° 6-45-34-2-3 sign ë¼± 6-45-34-2-236 sign ë¼² 6-45-34-2-256 sign ë¼³ 6-45-34-2-356 sign ë¼´ 6-45-34-26 sign ë¼µ 6-45-34-12 sign ë¼¶ 6-45-34-12-3 sign ë¼· 6-45-34-3 sign 뼸 6-45-34-34 sign ë¼¹ 6-45-34-2356 sign 뼺 6-45-34-13 sign ë¼» 6-45-34-23 sign ë¼¼ 6-45-34-235 sign ë¼½ 6-45-34-236 sign ë¼¾ 6-45-34-256 sign 뼿 6-45-34-356 sign ë½€ 6-45-136 sign ë½ 6-45-136-1 sign 뽂 6-45-136-1-1 sign 뽃 6-45-136-1-3 sign 뽄 6-45-136-25 sign ë½… 6-45-136-25-13 sign 뽆 6-45-136-25-356 sign 뽇 6-45-136-35 sign 뽈 6-45-136-2 sign 뽉 6-45-136-2-1 sign 뽊 6-45-136-2-26 sign 뽋 6-45-136-2-12 sign 뽌 6-45-136-2-3 sign ë½ 6-45-136-2-236 sign 뽎 6-45-136-2-256 sign ë½ 6-45-136-2-356 sign ë½ 6-45-136-26 sign 뽑 6-45-136-12 sign ë½’ 6-45-136-12-3 sign 뽓 6-45-136-3 sign ë½” 6-45-136-34 sign 뽕 6-45-136-2356 sign ë½– 6-45-136-13 sign ë½— 6-45-136-23 sign 뽘 6-45-136-235 sign ë½™ 6-45-136-236 sign 뽚 6-45-136-256 sign ë½› 6-45-136-356 sign 뽜 6-45-1236 sign ë½ 6-45-1236-1 sign 뽞 6-45-1236-1-1 sign 뽟 6-45-1236-1-3 sign ë½  6-45-1236-25 sign 뽡 6-45-1236-25-13 sign ë½¢ 6-45-1236-25-356 sign ë½£ 6-45-1236-35 sign 뽤 6-45-1236-2 sign ë½¥ 6-45-1236-2-1 sign 뽦 6-45-1236-2-26 sign ë½§ 6-45-1236-2-12 sign 뽨 6-45-1236-2-3 sign 뽩 6-45-1236-2-236 sign 뽪 6-45-1236-2-256 sign 뽫 6-45-1236-2-356 sign 뽬 6-45-1236-26 sign ë½­ 6-45-1236-12 sign ë½® 6-45-1236-12-3 sign 뽯 6-45-1236-3 sign ë½° 6-45-1236-34 sign ë½± 6-45-1236-2356 sign ë½² 6-45-1236-13 sign ë½³ 6-45-1236-23 sign ë½´ 6-45-1236-235 sign ë½µ 6-45-1236-236 sign ë½¶ 6-45-1236-256 sign ë½· 6-45-1236-356 sign 뽸 6-45-1236-1235 sign ë½¹ 6-45-1236-1235-1 sign 뽺 6-45-1236-1235-1-1 sign ë½» 6-45-1236-1235-1-3 sign ë½¼ 6-45-1236-1235-25 sign ë½½ 6-45-1236-1235-25-13 sign ë½¾ 6-45-1236-1235-25-356 sign 뽿 6-45-1236-1235-35 sign ë¾€ 6-45-1236-1235-2 sign ë¾ 6-45-1236-1235-2-1 sign 뾂 6-45-1236-1235-2-26 sign 뾃 6-45-1236-1235-2-12 sign 뾄 6-45-1236-1235-2-3 sign ë¾… 6-45-1236-1235-2-236 sign 뾆 6-45-1236-1235-2-256 sign 뾇 6-45-1236-1235-2-356 sign 뾈 6-45-1236-1235-26 sign 뾉 6-45-1236-1235-12 sign 뾊 6-45-1236-1235-12-3 sign 뾋 6-45-1236-1235-3 sign 뾌 6-45-1236-1235-34 sign ë¾ 6-45-1236-1235-2356 sign 뾎 6-45-1236-1235-13 sign ë¾ 6-45-1236-1235-23 sign ë¾ 6-45-1236-1235-235 sign 뾑 6-45-1236-1235-236 sign ë¾’ 6-45-1236-1235-256 sign 뾓 6-45-1236-1235-356 sign ë¾” 6-45-13456 sign 뾕 6-45-13456-1 sign ë¾– 6-45-13456-1-1 sign ë¾— 6-45-13456-1-3 sign 뾘 6-45-13456-25 sign ë¾™ 6-45-13456-25-13 sign 뾚 6-45-13456-25-356 sign ë¾› 6-45-13456-35 sign 뾜 6-45-13456-2 sign ë¾ 6-45-13456-2-1 sign 뾞 6-45-13456-2-26 sign 뾟 6-45-13456-2-12 sign ë¾  6-45-13456-2-3 sign 뾡 6-45-13456-2-236 sign ë¾¢ 6-45-13456-2-256 sign ë¾£ 6-45-13456-2-356 sign 뾤 6-45-13456-26 sign ë¾¥ 6-45-13456-12 sign 뾦 6-45-13456-12-3 sign ë¾§ 6-45-13456-3 sign 뾨 6-45-13456-34 sign 뾩 6-45-13456-2356 sign 뾪 6-45-13456-13 sign 뾫 6-45-13456-23 sign 뾬 6-45-13456-235 sign ë¾­ 6-45-13456-236 sign ë¾® 6-45-13456-256 sign 뾯 6-45-13456-356 sign ë¾° 6-45-346 sign ë¾± 6-45-346-1 sign ë¾² 6-45-346-1-1 sign ë¾³ 6-45-346-1-3 sign ë¾´ 6-45-346-25 sign ë¾µ 6-45-346-25-13 sign ë¾¶ 6-45-346-25-356 sign ë¾· 6-45-346-35 sign 뾸 6-45-346-2 sign ë¾¹ 6-45-346-2-1 sign 뾺 6-45-346-2-26 sign ë¾» 6-45-346-2-12 sign ë¾¼ 6-45-346-2-3 sign ë¾½ 6-45-346-2-236 sign ë¾¾ 6-45-346-2-256 sign 뾿 6-45-346-2-356 sign ë¿€ 6-45-346-26 sign ë¿ 6-45-346-12 sign ë¿‚ 6-45-346-12-3 sign 뿃 6-45-346-3 sign ë¿„ 6-45-346-34 sign ë¿… 6-45-346-2356 sign 뿆 6-45-346-13 sign 뿇 6-45-346-23 sign 뿈 6-45-346-235 sign 뿉 6-45-346-236 sign 뿊 6-45-346-256 sign ë¿‹ 6-45-346-356 sign 뿌 6-45-134 sign ë¿ 6-45-134-1 sign 뿎 6-45-134-1-1 sign ë¿ 6-45-134-1-3 sign ë¿ 6-45-134-25 sign ë¿‘ 6-45-134-25-13 sign ë¿’ 6-45-134-25-356 sign ë¿“ 6-45-134-35 sign ë¿” 6-45-134-2 sign ë¿• 6-45-134-2-1 sign ë¿– 6-45-134-2-26 sign ë¿— 6-45-134-2-12 sign 뿘 6-45-134-2-3 sign ë¿™ 6-45-134-2-236 sign 뿚 6-45-134-2-256 sign ë¿› 6-45-134-2-356 sign 뿜 6-45-134-26 sign ë¿ 6-45-134-12 sign 뿞 6-45-134-12-3 sign 뿟 6-45-134-3 sign ë¿  6-45-134-34 sign ë¿¡ 6-45-134-2356 sign ë¿¢ 6-45-134-13 sign ë¿£ 6-45-134-23 sign 뿤 6-45-134-235 sign ë¿¥ 6-45-134-236 sign 뿦 6-45-134-256 sign ë¿§ 6-45-134-356 sign 뿨 6-45-1234 sign ë¿© 6-45-1234-1 sign 뿪 6-45-1234-1-1 sign ë¿« 6-45-1234-1-3 sign 뿬 6-45-1234-25 sign ë¿­ 6-45-1234-25-13 sign ë¿® 6-45-1234-25-356 sign 뿯 6-45-1234-35 sign ë¿° 6-45-1234-2 sign 뿱 6-45-1234-2-1 sign 뿲 6-45-1234-2-26 sign 뿳 6-45-1234-2-12 sign ë¿´ 6-45-1234-2-3 sign 뿵 6-45-1234-2-236 sign ë¿¶ 6-45-1234-2-256 sign ë¿· 6-45-1234-2-356 sign 뿸 6-45-1234-26 sign 뿹 6-45-1234-12 sign 뿺 6-45-1234-12-3 sign ë¿» 6-45-1234-3 sign 뿼 6-45-1234-34 sign 뿽 6-45-1234-2356 sign 뿾 6-45-1234-13 sign ë¿¿ 6-45-1234-23 sign 쀀 6-45-1234-235 sign ì€ 6-45-1234-236 sign 쀂 6-45-1234-256 sign 쀃 6-45-1234-356 sign 쀄 6-45-1234-1235 sign 쀅 6-45-1234-1235-1 sign 쀆 6-45-1234-1235-1-1 sign 쀇 6-45-1234-1235-1-3 sign 쀈 6-45-1234-1235-25 sign 쀉 6-45-1234-1235-25-13 sign 쀊 6-45-1234-1235-25-356 sign 쀋 6-45-1234-1235-35 sign 쀌 6-45-1234-1235-2 sign ì€ 6-45-1234-1235-2-1 sign 쀎 6-45-1234-1235-2-26 sign ì€ 6-45-1234-1235-2-12 sign ì€ 6-45-1234-1235-2-3 sign 쀑 6-45-1234-1235-2-236 sign 쀒 6-45-1234-1235-2-256 sign 쀓 6-45-1234-1235-2-356 sign 쀔 6-45-1234-1235-26 sign 쀕 6-45-1234-1235-12 sign 쀖 6-45-1234-1235-12-3 sign 쀗 6-45-1234-1235-3 sign 쀘 6-45-1234-1235-34 sign 쀙 6-45-1234-1235-2356 sign 쀚 6-45-1234-1235-13 sign 쀛 6-45-1234-1235-23 sign 쀜 6-45-1234-1235-235 sign ì€ 6-45-1234-1235-236 sign 쀞 6-45-1234-1235-256 sign 쀟 6-45-1234-1235-356 sign 쀠 6-45-134-1235 sign 쀡 6-45-134-1235-1 sign 쀢 6-45-134-1235-1-1 sign 쀣 6-45-134-1235-1-3 sign 쀤 6-45-134-1235-25 sign 쀥 6-45-134-1235-25-13 sign 쀦 6-45-134-1235-25-356 sign 쀧 6-45-134-1235-35 sign 쀨 6-45-134-1235-2 sign 쀩 6-45-134-1235-2-1 sign 쀪 6-45-134-1235-2-26 sign 쀫 6-45-134-1235-2-12 sign 쀬 6-45-134-1235-2-3 sign 쀭 6-45-134-1235-2-236 sign 쀮 6-45-134-1235-2-256 sign 쀯 6-45-134-1235-2-356 sign 쀰 6-45-134-1235-26 sign 쀱 6-45-134-1235-12 sign 쀲 6-45-134-1235-12-3 sign 쀳 6-45-134-1235-3 sign 쀴 6-45-134-1235-34 sign 쀵 6-45-134-1235-2356 sign 쀶 6-45-134-1235-13 sign 쀷 6-45-134-1235-23 sign 쀸 6-45-134-1235-235 sign 쀹 6-45-134-1235-236 sign 쀺 6-45-134-1235-256 sign 쀻 6-45-134-1235-356 sign 쀼 6-45-146 sign 쀽 6-45-146-1 sign 쀾 6-45-146-1-1 sign 쀿 6-45-146-1-3 sign ì€ 6-45-146-25 sign ì 6-45-146-25-13 sign ì‚ 6-45-146-25-356 sign ìƒ 6-45-146-35 sign ì„ 6-45-146-2 sign ì… 6-45-146-2-1 sign ì† 6-45-146-2-26 sign ì‡ 6-45-146-2-12 sign ìˆ 6-45-146-2-3 sign ì‰ 6-45-146-2-236 sign ìŠ 6-45-146-2-256 sign ì‹ 6-45-146-2-356 sign ìŒ 6-45-146-26 sign ì 6-45-146-12 sign ìŽ 6-45-146-12-3 sign ì 6-45-146-3 sign ì 6-45-146-34 sign ì‘ 6-45-146-2356 sign ì’ 6-45-146-13 sign ì“ 6-45-146-23 sign ì” 6-45-146-235 sign ì• 6-45-146-236 sign ì– 6-45-146-256 sign ì— 6-45-146-356 sign ì˜ 6-45-246 sign ì™ 6-45-246-1 sign ìš 6-45-246-1-1 sign ì› 6-45-246-1-3 sign ìœ 6-45-246-25 sign ì 6-45-246-25-13 sign ìž 6-45-246-25-356 sign ìŸ 6-45-246-35 sign ì  6-45-246-2 sign ì¡ 6-45-246-2-1 sign ì¢ 6-45-246-2-26 sign ì£ 6-45-246-2-12 sign ì¤ 6-45-246-2-3 sign ì¥ 6-45-246-2-236 sign ì¦ 6-45-246-2-256 sign ì§ 6-45-246-2-356 sign ì¨ 6-45-246-26 sign ì© 6-45-246-12 sign ìª 6-45-246-12-3 sign ì« 6-45-246-3 sign ì¬ 6-45-246-34 sign ì­ 6-45-246-2356 sign ì® 6-45-246-13 sign ì¯ 6-45-246-23 sign ì° 6-45-246-235 sign ì± 6-45-246-236 sign ì² 6-45-246-256 sign ì³ 6-45-246-356 sign ì´ 6-45-2456 sign ìµ 6-45-2456-1 sign ì¶ 6-45-2456-1-1 sign ì· 6-45-2456-1-3 sign ì¸ 6-45-2456-25 sign ì¹ 6-45-2456-25-13 sign ìº 6-45-2456-25-356 sign ì» 6-45-2456-35 sign ì¼ 6-45-2456-2 sign ì½ 6-45-2456-2-1 sign ì¾ 6-45-2456-2-26 sign ì¿ 6-45-2456-2-12 sign ì‚€ 6-45-2456-2-3 sign ì‚ 6-45-2456-2-236 sign ì‚‚ 6-45-2456-2-256 sign 삃 6-45-2456-2-356 sign ì‚„ 6-45-2456-26 sign ì‚… 6-45-2456-12 sign 삆 6-45-2456-12-3 sign 삇 6-45-2456-3 sign 삈 6-45-2456-34 sign 삉 6-45-2456-2356 sign 삊 6-45-2456-13 sign ì‚‹ 6-45-2456-23 sign 삌 6-45-2456-235 sign ì‚ 6-45-2456-236 sign 삎 6-45-2456-256 sign ì‚ 6-45-2456-356 sign ì‚ 6-45-135 sign ì‚‘ 6-45-135-1 sign ì‚’ 6-45-135-1-1 sign ì‚“ 6-45-135-1-3 sign ì‚” 6-45-135-25 sign ì‚• 6-45-135-25-13 sign ì‚– 6-45-135-25-356 sign ì‚— 6-45-135-35 sign 삘 6-45-135-2 sign ì‚™ 6-45-135-2-1 sign 삚 6-45-135-2-26 sign ì‚› 6-45-135-2-12 sign 삜 6-45-135-2-3 sign ì‚ 6-45-135-2-236 sign 삞 6-45-135-2-256 sign 삟 6-45-135-2-356 sign ì‚  6-45-135-26 sign ì‚¡ 6-45-135-12 sign ì‚¢ 6-45-135-12-3 sign ì‚£ 6-45-135-3 sign 삤 6-45-135-34 sign ì‚¥ 6-45-135-2356 sign 삦 6-45-135-13 sign ì‚§ 6-45-135-23 sign 삨 6-45-135-235 sign ì‚© 6-45-135-236 sign 삪 6-45-135-256 sign ì‚« 6-45-135-356 sign 사 6-126 sign ì‚­ 6-126-1 sign ì‚® 6-126-1-1 sign 삯 6-126-1-3 sign ì‚° 6-126-25 sign 삱 6-126-25-13 sign 삲 6-126-25-356 sign 삳 6-126-35 sign ì‚´ 6-126-2 sign 삵 6-126-2-1 sign ì‚¶ 6-126-2-26 sign ì‚· 6-126-2-12 sign 삸 6-126-2-3 sign 삹 6-126-2-236 sign 삺 6-126-2-256 sign ì‚» 6-126-2-356 sign 삼 6-126-26 sign 삽 6-126-12 sign 삾 6-126-12-3 sign ì‚¿ 6-126-3 sign 샀 6-126-34 sign ìƒ 6-126-2356 sign 샂 6-126-13 sign 샃 6-126-23 sign 샄 6-126-235 sign 샅 6-126-236 sign 샆 6-126-256 sign 샇 6-126-356 sign 새 6-1235 sign 색 6-1235-1 sign 샊 6-1235-1-1 sign 샋 6-1235-1-3 sign 샌 6-1235-25 sign ìƒ 6-1235-25-13 sign 샎 6-1235-25-356 sign ìƒ 6-1235-35 sign ìƒ 6-1235-2 sign 샑 6-1235-2-1 sign 샒 6-1235-2-26 sign 샓 6-1235-2-12 sign 샔 6-1235-2-3 sign 샕 6-1235-2-236 sign 샖 6-1235-2-256 sign 샗 6-1235-2-356 sign 샘 6-1235-26 sign 샙 6-1235-12 sign 샚 6-1235-12-3 sign 샛 6-1235-3 sign 샜 6-1235-34 sign ìƒ 6-1235-2356 sign 샞 6-1235-13 sign 샟 6-1235-23 sign 샠 6-1235-235 sign 샡 6-1235-236 sign 샢 6-1235-256 sign 샣 6-1235-356 sign 샤 6-345 sign 샥 6-345-1 sign 샦 6-345-1-1 sign 샧 6-345-1-3 sign 샨 6-345-25 sign 샩 6-345-25-13 sign 샪 6-345-25-356 sign 샫 6-345-35 sign 샬 6-345-2 sign 샭 6-345-2-1 sign 샮 6-345-2-26 sign 샯 6-345-2-12 sign 샰 6-345-2-3 sign 샱 6-345-2-236 sign 샲 6-345-2-256 sign 샳 6-345-2-356 sign 샴 6-345-26 sign 샵 6-345-12 sign 샶 6-345-12-3 sign 샷 6-345-3 sign 샸 6-345-34 sign 샹 6-345-2356 sign 샺 6-345-13 sign 샻 6-345-23 sign 샼 6-345-235 sign 샽 6-345-236 sign 샾 6-345-256 sign 샿 6-345-356 sign ì„€ 6-345-1235 sign ì„ 6-345-1235-1 sign ì„‚ 6-345-1235-1-1 sign 섃 6-345-1235-1-3 sign ì„„ 6-345-1235-25 sign ì„… 6-345-1235-25-13 sign 섆 6-345-1235-25-356 sign 섇 6-345-1235-35 sign 섈 6-345-1235-2 sign 섉 6-345-1235-2-1 sign 섊 6-345-1235-2-26 sign ì„‹ 6-345-1235-2-12 sign 섌 6-345-1235-2-3 sign ì„ 6-345-1235-2-236 sign 섎 6-345-1235-2-256 sign ì„ 6-345-1235-2-356 sign ì„ 6-345-1235-26 sign ì„‘ 6-345-1235-12 sign ì„’ 6-345-1235-12-3 sign ì„“ 6-345-1235-3 sign ì„” 6-345-1235-34 sign ì„• 6-345-1235-2356 sign ì„– 6-345-1235-13 sign ì„— 6-345-1235-23 sign 섘 6-345-1235-235 sign ì„™ 6-345-1235-236 sign 섚 6-345-1235-256 sign ì„› 6-345-1235-356 sign 서 6-234 sign ì„ 6-234-1 sign 섞 6-234-1-1 sign 섟 6-234-1-3 sign ì„  6-234-25 sign ì„¡ 6-234-25-13 sign ì„¢ 6-234-25-356 sign ì„£ 6-234-35 sign 설 6-234-2 sign ì„¥ 6-234-2-1 sign 섦 6-234-2-26 sign ì„§ 6-234-2-12 sign 섨 6-234-2-3 sign ì„© 6-234-2-236 sign 섪 6-234-2-256 sign ì„« 6-234-2-356 sign 섬 6-234-26 sign ì„­ 6-234-12 sign ì„® 6-234-12-3 sign 섯 6-234-3 sign ì„° 6-234-34 sign 성 6-234-2356 sign 섲 6-234-13 sign 섳 6-234-23 sign ì„´ 6-234-235 sign 섵 6-234-236 sign ì„¶ 6-234-256 sign ì„· 6-234-356 sign 세 6-1345 sign 섹 6-1345-1 sign 섺 6-1345-1-1 sign ì„» 6-1345-1-3 sign 센 6-1345-25 sign 섽 6-1345-25-13 sign 섾 6-1345-25-356 sign ì„¿ 6-1345-35 sign ì…€ 6-1345-2 sign ì… 6-1345-2-1 sign ì…‚ 6-1345-2-26 sign ì…ƒ 6-1345-2-12 sign ì…„ 6-1345-2-3 sign ì…… 6-1345-2-236 sign ì…† 6-1345-2-256 sign ì…‡ 6-1345-2-356 sign ì…ˆ 6-1345-26 sign ì…‰ 6-1345-12 sign ì…Š 6-1345-12-3 sign ì…‹ 6-1345-3 sign ì…Œ 6-1345-34 sign ì… 6-1345-2356 sign ì…Ž 6-1345-13 sign ì… 6-1345-23 sign ì… 6-1345-235 sign ì…‘ 6-1345-236 sign ì…’ 6-1345-256 sign ì…“ 6-1345-356 sign ì…” 6-156 sign ì…• 6-156-1 sign ì…– 6-156-1-1 sign ì…— 6-156-1-3 sign ì…˜ 6-156-25 sign ì…™ 6-156-25-13 sign ì…š 6-156-25-356 sign ì…› 6-156-35 sign ì…œ 6-156-2 sign ì… 6-156-2-1 sign ì…ž 6-156-2-26 sign ì…Ÿ 6-156-2-12 sign ì…  6-156-2-3 sign ì…¡ 6-156-2-236 sign ì…¢ 6-156-2-256 sign ì…£ 6-156-2-356 sign ì…¤ 6-156-26 sign ì…¥ 6-156-12 sign ì…¦ 6-156-12-3 sign ì…§ 6-156-3 sign ì…¨ 6-156-34 sign ì…© 6-156-2356 sign ì…ª 6-156-13 sign ì…« 6-156-23 sign ì…¬ 6-156-235 sign ì…­ 6-156-236 sign ì…® 6-156-256 sign ì…¯ 6-156-356 sign ì…° 6-34 sign ì…± 6-34-1 sign ì…² 6-34-1-1 sign ì…³ 6-34-1-3 sign ì…´ 6-34-25 sign ì…µ 6-34-25-13 sign ì…¶ 6-34-25-356 sign ì…· 6-34-35 sign ì…¸ 6-34-2 sign ì…¹ 6-34-2-1 sign ì…º 6-34-2-26 sign ì…» 6-34-2-12 sign ì…¼ 6-34-2-3 sign ì…½ 6-34-2-236 sign ì…¾ 6-34-2-256 sign ì…¿ 6-34-2-356 sign 솀 6-34-26 sign ì† 6-34-12 sign 솂 6-34-12-3 sign 솃 6-34-3 sign 솄 6-34-34 sign 솅 6-34-2356 sign 솆 6-34-13 sign 솇 6-34-23 sign 솈 6-34-235 sign 솉 6-34-236 sign 솊 6-34-256 sign 솋 6-34-356 sign 소 6-136 sign ì† 6-136-1 sign 솎 6-136-1-1 sign ì† 6-136-1-3 sign ì† 6-136-25 sign 솑 6-136-25-13 sign 솒 6-136-25-356 sign 솓 6-136-35 sign 솔 6-136-2 sign 솕 6-136-2-1 sign 솖 6-136-2-26 sign 솗 6-136-2-12 sign 솘 6-136-2-3 sign 솙 6-136-2-236 sign 솚 6-136-2-256 sign 솛 6-136-2-356 sign 솜 6-136-26 sign ì† 6-136-12 sign 솞 6-136-12-3 sign 솟 6-136-3 sign 솠 6-136-34 sign 송 6-136-2356 sign 솢 6-136-13 sign 솣 6-136-23 sign 솤 6-136-235 sign 솥 6-136-236 sign 솦 6-136-256 sign 솧 6-136-356 sign 솨 6-1236 sign 솩 6-1236-1 sign 솪 6-1236-1-1 sign 솫 6-1236-1-3 sign 솬 6-1236-25 sign 솭 6-1236-25-13 sign 솮 6-1236-25-356 sign 솯 6-1236-35 sign 솰 6-1236-2 sign 솱 6-1236-2-1 sign 솲 6-1236-2-26 sign 솳 6-1236-2-12 sign 솴 6-1236-2-3 sign 솵 6-1236-2-236 sign 솶 6-1236-2-256 sign 솷 6-1236-2-356 sign 솸 6-1236-26 sign 솹 6-1236-12 sign 솺 6-1236-12-3 sign 솻 6-1236-3 sign 솼 6-1236-34 sign 솽 6-1236-2356 sign 솾 6-1236-13 sign 솿 6-1236-23 sign 쇀 6-1236-235 sign ì‡ 6-1236-236 sign 쇂 6-1236-256 sign 쇃 6-1236-356 sign 쇄 6-1236-1235 sign 쇅 6-1236-1235-1 sign 쇆 6-1236-1235-1-1 sign 쇇 6-1236-1235-1-3 sign 쇈 6-1236-1235-25 sign 쇉 6-1236-1235-25-13 sign 쇊 6-1236-1235-25-356 sign 쇋 6-1236-1235-35 sign 쇌 6-1236-1235-2 sign ì‡ 6-1236-1235-2-1 sign 쇎 6-1236-1235-2-26 sign ì‡ 6-1236-1235-2-12 sign ì‡ 6-1236-1235-2-3 sign 쇑 6-1236-1235-2-236 sign 쇒 6-1236-1235-2-256 sign 쇓 6-1236-1235-2-356 sign 쇔 6-1236-1235-26 sign 쇕 6-1236-1235-12 sign 쇖 6-1236-1235-12-3 sign 쇗 6-1236-1235-3 sign 쇘 6-1236-1235-34 sign 쇙 6-1236-1235-2356 sign 쇚 6-1236-1235-13 sign 쇛 6-1236-1235-23 sign 쇜 6-1236-1235-235 sign ì‡ 6-1236-1235-236 sign 쇞 6-1236-1235-256 sign 쇟 6-1236-1235-356 sign 쇠 6-13456 sign 쇡 6-13456-1 sign 쇢 6-13456-1-1 sign 쇣 6-13456-1-3 sign 쇤 6-13456-25 sign 쇥 6-13456-25-13 sign 쇦 6-13456-25-356 sign 쇧 6-13456-35 sign 쇨 6-13456-2 sign 쇩 6-13456-2-1 sign 쇪 6-13456-2-26 sign 쇫 6-13456-2-12 sign 쇬 6-13456-2-3 sign 쇭 6-13456-2-236 sign 쇮 6-13456-2-256 sign 쇯 6-13456-2-356 sign 쇰 6-13456-26 sign 쇱 6-13456-12 sign 쇲 6-13456-12-3 sign 쇳 6-13456-3 sign 쇴 6-13456-34 sign 쇵 6-13456-2356 sign 쇶 6-13456-13 sign 쇷 6-13456-23 sign 쇸 6-13456-235 sign 쇹 6-13456-236 sign 쇺 6-13456-256 sign 쇻 6-13456-356 sign 쇼 6-346 sign 쇽 6-346-1 sign 쇾 6-346-1-1 sign 쇿 6-346-1-3 sign 숀 6-346-25 sign ìˆ 6-346-25-13 sign 숂 6-346-25-356 sign 숃 6-346-35 sign 숄 6-346-2 sign 숅 6-346-2-1 sign 숆 6-346-2-26 sign 숇 6-346-2-12 sign 숈 6-346-2-3 sign 숉 6-346-2-236 sign 숊 6-346-2-256 sign 숋 6-346-2-356 sign 숌 6-346-26 sign ìˆ 6-346-12 sign 숎 6-346-12-3 sign ìˆ 6-346-3 sign ìˆ 6-346-34 sign 숑 6-346-2356 sign 숒 6-346-13 sign 숓 6-346-23 sign 숔 6-346-235 sign 숕 6-346-236 sign 숖 6-346-256 sign 숗 6-346-356 sign 수 6-134 sign 숙 6-134-1 sign 숚 6-134-1-1 sign 숛 6-134-1-3 sign 순 6-134-25 sign ìˆ 6-134-25-13 sign 숞 6-134-25-356 sign 숟 6-134-35 sign 술 6-134-2 sign 숡 6-134-2-1 sign 숢 6-134-2-26 sign 숣 6-134-2-12 sign 숤 6-134-2-3 sign 숥 6-134-2-236 sign 숦 6-134-2-256 sign 숧 6-134-2-356 sign 숨 6-134-26 sign 숩 6-134-12 sign 숪 6-134-12-3 sign 숫 6-134-3 sign 숬 6-134-34 sign 숭 6-134-2356 sign 숮 6-134-13 sign 숯 6-134-23 sign 숰 6-134-235 sign 숱 6-134-236 sign 숲 6-134-256 sign 숳 6-134-356 sign 숴 6-1234 sign 숵 6-1234-1 sign 숶 6-1234-1-1 sign 숷 6-1234-1-3 sign 숸 6-1234-25 sign 숹 6-1234-25-13 sign 숺 6-1234-25-356 sign 숻 6-1234-35 sign 숼 6-1234-2 sign 숽 6-1234-2-1 sign 숾 6-1234-2-26 sign 숿 6-1234-2-12 sign 쉀 6-1234-2-3 sign ì‰ 6-1234-2-236 sign 쉂 6-1234-2-256 sign 쉃 6-1234-2-356 sign 쉄 6-1234-26 sign 쉅 6-1234-12 sign 쉆 6-1234-12-3 sign 쉇 6-1234-3 sign 쉈 6-1234-34 sign 쉉 6-1234-2356 sign 쉊 6-1234-13 sign 쉋 6-1234-23 sign 쉌 6-1234-235 sign ì‰ 6-1234-236 sign 쉎 6-1234-256 sign ì‰ 6-1234-356 sign ì‰ 6-1234-1235 sign 쉑 6-1234-1235-1 sign 쉒 6-1234-1235-1-1 sign 쉓 6-1234-1235-1-3 sign 쉔 6-1234-1235-25 sign 쉕 6-1234-1235-25-13 sign 쉖 6-1234-1235-25-356 sign 쉗 6-1234-1235-35 sign 쉘 6-1234-1235-2 sign 쉙 6-1234-1235-2-1 sign 쉚 6-1234-1235-2-26 sign 쉛 6-1234-1235-2-12 sign 쉜 6-1234-1235-2-3 sign ì‰ 6-1234-1235-2-236 sign 쉞 6-1234-1235-2-256 sign 쉟 6-1234-1235-2-356 sign 쉠 6-1234-1235-26 sign 쉡 6-1234-1235-12 sign 쉢 6-1234-1235-12-3 sign 쉣 6-1234-1235-3 sign 쉤 6-1234-1235-34 sign 쉥 6-1234-1235-2356 sign 쉦 6-1234-1235-13 sign 쉧 6-1234-1235-23 sign 쉨 6-1234-1235-235 sign 쉩 6-1234-1235-236 sign 쉪 6-1234-1235-256 sign 쉫 6-1234-1235-356 sign 쉬 6-134-1235 sign 쉭 6-134-1235-1 sign 쉮 6-134-1235-1-1 sign 쉯 6-134-1235-1-3 sign 쉰 6-134-1235-25 sign 쉱 6-134-1235-25-13 sign 쉲 6-134-1235-25-356 sign 쉳 6-134-1235-35 sign 쉴 6-134-1235-2 sign 쉵 6-134-1235-2-1 sign 쉶 6-134-1235-2-26 sign 쉷 6-134-1235-2-12 sign 쉸 6-134-1235-2-3 sign 쉹 6-134-1235-2-236 sign 쉺 6-134-1235-2-256 sign 쉻 6-134-1235-2-356 sign 쉼 6-134-1235-26 sign 쉽 6-134-1235-12 sign 쉾 6-134-1235-12-3 sign 쉿 6-134-1235-3 sign 슀 6-134-1235-34 sign ìŠ 6-134-1235-2356 sign 슂 6-134-1235-13 sign 슃 6-134-1235-23 sign 슄 6-134-1235-235 sign 슅 6-134-1235-236 sign 슆 6-134-1235-256 sign 슇 6-134-1235-356 sign 슈 6-146 sign 슉 6-146-1 sign 슊 6-146-1-1 sign 슋 6-146-1-3 sign 슌 6-146-25 sign ìŠ 6-146-25-13 sign 슎 6-146-25-356 sign ìŠ 6-146-35 sign ìŠ 6-146-2 sign 슑 6-146-2-1 sign 슒 6-146-2-26 sign 슓 6-146-2-12 sign 슔 6-146-2-3 sign 슕 6-146-2-236 sign 슖 6-146-2-256 sign 슗 6-146-2-356 sign 슘 6-146-26 sign 슙 6-146-12 sign 슚 6-146-12-3 sign 슛 6-146-3 sign 슜 6-146-34 sign ìŠ 6-146-2356 sign 슞 6-146-13 sign 슟 6-146-23 sign 슠 6-146-235 sign 슡 6-146-236 sign 슢 6-146-256 sign 슣 6-146-356 sign 스 6-246 sign 슥 6-246-1 sign 슦 6-246-1-1 sign 슧 6-246-1-3 sign 슨 6-246-25 sign 슩 6-246-25-13 sign 슪 6-246-25-356 sign 슫 6-246-35 sign 슬 6-246-2 sign 슭 6-246-2-1 sign 슮 6-246-2-26 sign 슯 6-246-2-12 sign 슰 6-246-2-3 sign 슱 6-246-2-236 sign 슲 6-246-2-256 sign 슳 6-246-2-356 sign 슴 6-246-26 sign 습 6-246-12 sign 슶 6-246-12-3 sign 슷 6-246-3 sign 슸 6-246-34 sign 승 6-246-2356 sign 슺 6-246-13 sign 슻 6-246-23 sign 슼 6-246-235 sign 슽 6-246-236 sign 슾 6-246-256 sign 슿 6-246-356 sign ì‹€ 6-2456 sign ì‹ 6-2456-1 sign ì‹‚ 6-2456-1-1 sign 싃 6-2456-1-3 sign ì‹„ 6-2456-25 sign ì‹… 6-2456-25-13 sign 싆 6-2456-25-356 sign 싇 6-2456-35 sign 싈 6-2456-2 sign 싉 6-2456-2-1 sign 싊 6-2456-2-26 sign ì‹‹ 6-2456-2-12 sign 싌 6-2456-2-3 sign ì‹ 6-2456-2-236 sign 싎 6-2456-2-256 sign ì‹ 6-2456-2-356 sign ì‹ 6-2456-26 sign ì‹‘ 6-2456-12 sign ì‹’ 6-2456-12-3 sign ì‹“ 6-2456-3 sign ì‹” 6-2456-34 sign ì‹• 6-2456-2356 sign ì‹– 6-2456-13 sign ì‹— 6-2456-23 sign 싘 6-2456-235 sign ì‹™ 6-2456-236 sign 싚 6-2456-256 sign ì‹› 6-2456-356 sign 시 6-135 sign ì‹ 6-135-1 sign 싞 6-135-1-1 sign 싟 6-135-1-3 sign ì‹  6-135-25 sign ì‹¡ 6-135-25-13 sign ì‹¢ 6-135-25-356 sign ì‹£ 6-135-35 sign 실 6-135-2 sign ì‹¥ 6-135-2-1 sign 싦 6-135-2-26 sign ì‹§ 6-135-2-12 sign 싨 6-135-2-3 sign ì‹© 6-135-2-236 sign 싪 6-135-2-256 sign ì‹« 6-135-2-356 sign 심 6-135-26 sign ì‹­ 6-135-12 sign ì‹® 6-135-12-3 sign 싯 6-135-3 sign ì‹° 6-135-34 sign 싱 6-135-2356 sign 싲 6-135-13 sign 싳 6-135-23 sign ì‹´ 6-135-235 sign 싵 6-135-236 sign ì‹¶ 6-135-256 sign ì‹· 6-135-356 sign 싸 6-6-126 sign 싹 6-6-126-1 sign 싺 6-6-126-1-1 sign ì‹» 6-6-126-1-3 sign 싼 6-6-126-25 sign 싽 6-6-126-25-13 sign 싾 6-6-126-25-356 sign ì‹¿ 6-6-126-35 sign 쌀 6-6-126-2 sign ìŒ 6-6-126-2-1 sign 쌂 6-6-126-2-26 sign 쌃 6-6-126-2-12 sign 쌄 6-6-126-2-3 sign 쌅 6-6-126-2-236 sign 쌆 6-6-126-2-256 sign 쌇 6-6-126-2-356 sign 쌈 6-6-126-26 sign 쌉 6-6-126-12 sign 쌊 6-6-126-12-3 sign 쌋 6-6-126-3 sign 쌌 6-6-126-34 sign ìŒ 6-6-126-2356 sign 쌎 6-6-126-13 sign ìŒ 6-6-126-23 sign ìŒ 6-6-126-235 sign 쌑 6-6-126-236 sign 쌒 6-6-126-256 sign 쌓 6-6-126-356 sign 쌔 6-6-1235 sign 쌕 6-6-1235-1 sign 쌖 6-6-1235-1-1 sign 쌗 6-6-1235-1-3 sign 쌘 6-6-1235-25 sign 쌙 6-6-1235-25-13 sign 쌚 6-6-1235-25-356 sign 쌛 6-6-1235-35 sign 쌜 6-6-1235-2 sign ìŒ 6-6-1235-2-1 sign 쌞 6-6-1235-2-26 sign 쌟 6-6-1235-2-12 sign 쌠 6-6-1235-2-3 sign 쌡 6-6-1235-2-236 sign 쌢 6-6-1235-2-256 sign 쌣 6-6-1235-2-356 sign 쌤 6-6-1235-26 sign 쌥 6-6-1235-12 sign 쌦 6-6-1235-12-3 sign 쌧 6-6-1235-3 sign 쌨 6-6-1235-34 sign 쌩 6-6-1235-2356 sign 쌪 6-6-1235-13 sign 쌫 6-6-1235-23 sign 쌬 6-6-1235-235 sign 쌭 6-6-1235-236 sign 쌮 6-6-1235-256 sign 쌯 6-6-1235-356 sign 쌰 6-6-345 sign 쌱 6-6-345-1 sign 쌲 6-6-345-1-1 sign 쌳 6-6-345-1-3 sign 쌴 6-6-345-25 sign 쌵 6-6-345-25-13 sign 쌶 6-6-345-25-356 sign 쌷 6-6-345-35 sign 쌸 6-6-345-2 sign 쌹 6-6-345-2-1 sign 쌺 6-6-345-2-26 sign 쌻 6-6-345-2-12 sign 쌼 6-6-345-2-3 sign 쌽 6-6-345-2-236 sign 쌾 6-6-345-2-256 sign 쌿 6-6-345-2-356 sign ì€ 6-6-345-26 sign ì 6-6-345-12 sign ì‚ 6-6-345-12-3 sign ìƒ 6-6-345-3 sign ì„ 6-6-345-34 sign ì… 6-6-345-2356 sign ì† 6-6-345-13 sign ì‡ 6-6-345-23 sign ìˆ 6-6-345-235 sign ì‰ 6-6-345-236 sign ìŠ 6-6-345-256 sign ì‹ 6-6-345-356 sign ìŒ 6-6-345-1235 sign ì 6-6-345-1235-1 sign ìŽ 6-6-345-1235-1-1 sign ì 6-6-345-1235-1-3 sign ì 6-6-345-1235-25 sign ì‘ 6-6-345-1235-25-13 sign ì’ 6-6-345-1235-25-356 sign ì“ 6-6-345-1235-35 sign ì” 6-6-345-1235-2 sign ì• 6-6-345-1235-2-1 sign ì– 6-6-345-1235-2-26 sign ì— 6-6-345-1235-2-12 sign ì˜ 6-6-345-1235-2-3 sign ì™ 6-6-345-1235-2-236 sign ìš 6-6-345-1235-2-256 sign ì› 6-6-345-1235-2-356 sign ìœ 6-6-345-1235-26 sign ì 6-6-345-1235-12 sign ìž 6-6-345-1235-12-3 sign ìŸ 6-6-345-1235-3 sign ì  6-6-345-1235-34 sign ì¡ 6-6-345-1235-2356 sign ì¢ 6-6-345-1235-13 sign ì£ 6-6-345-1235-23 sign ì¤ 6-6-345-1235-235 sign ì¥ 6-6-345-1235-236 sign ì¦ 6-6-345-1235-256 sign ì§ 6-6-345-1235-356 sign ì¨ 6-6-234 sign ì© 6-6-234-1 sign ìª 6-6-234-1-1 sign ì« 6-6-234-1-3 sign ì¬ 6-6-234-25 sign ì­ 6-6-234-25-13 sign ì® 6-6-234-25-356 sign ì¯ 6-6-234-35 sign ì° 6-6-234-2 sign ì± 6-6-234-2-1 sign ì² 6-6-234-2-26 sign ì³ 6-6-234-2-12 sign ì´ 6-6-234-2-3 sign ìµ 6-6-234-2-236 sign ì¶ 6-6-234-2-256 sign ì· 6-6-234-2-356 sign ì¸ 6-6-234-26 sign ì¹ 6-6-234-12 sign ìº 6-6-234-12-3 sign ì» 6-6-234-3 sign ì¼ 6-6-234-34 sign ì½ 6-6-234-2356 sign ì¾ 6-6-234-13 sign ì¿ 6-6-234-23 sign 쎀 6-6-234-235 sign ìŽ 6-6-234-236 sign 쎂 6-6-234-256 sign 쎃 6-6-234-356 sign 쎄 6-6-1345 sign 쎅 6-6-1345-1 sign 쎆 6-6-1345-1-1 sign 쎇 6-6-1345-1-3 sign 쎈 6-6-1345-25 sign 쎉 6-6-1345-25-13 sign 쎊 6-6-1345-25-356 sign 쎋 6-6-1345-35 sign 쎌 6-6-1345-2 sign ìŽ 6-6-1345-2-1 sign 쎎 6-6-1345-2-26 sign ìŽ 6-6-1345-2-12 sign ìŽ 6-6-1345-2-3 sign 쎑 6-6-1345-2-236 sign 쎒 6-6-1345-2-256 sign 쎓 6-6-1345-2-356 sign 쎔 6-6-1345-26 sign 쎕 6-6-1345-12 sign 쎖 6-6-1345-12-3 sign 쎗 6-6-1345-3 sign 쎘 6-6-1345-34 sign 쎙 6-6-1345-2356 sign 쎚 6-6-1345-13 sign 쎛 6-6-1345-23 sign 쎜 6-6-1345-235 sign ìŽ 6-6-1345-236 sign 쎞 6-6-1345-256 sign 쎟 6-6-1345-356 sign 쎠 6-6-156 sign 쎡 6-6-156-1 sign 쎢 6-6-156-1-1 sign 쎣 6-6-156-1-3 sign 쎤 6-6-156-25 sign 쎥 6-6-156-25-13 sign 쎦 6-6-156-25-356 sign 쎧 6-6-156-35 sign 쎨 6-6-156-2 sign 쎩 6-6-156-2-1 sign 쎪 6-6-156-2-26 sign 쎫 6-6-156-2-12 sign 쎬 6-6-156-2-3 sign 쎭 6-6-156-2-236 sign 쎮 6-6-156-2-256 sign 쎯 6-6-156-2-356 sign 쎰 6-6-156-26 sign 쎱 6-6-156-12 sign 쎲 6-6-156-12-3 sign 쎳 6-6-156-3 sign 쎴 6-6-156-34 sign 쎵 6-6-156-2356 sign 쎶 6-6-156-13 sign 쎷 6-6-156-23 sign 쎸 6-6-156-235 sign 쎹 6-6-156-236 sign 쎺 6-6-156-256 sign 쎻 6-6-156-356 sign 쎼 6-6-34 sign 쎽 6-6-34-1 sign 쎾 6-6-34-1-1 sign 쎿 6-6-34-1-3 sign ì€ 6-6-34-25 sign ì 6-6-34-25-13 sign ì‚ 6-6-34-25-356 sign ìƒ 6-6-34-35 sign ì„ 6-6-34-2 sign ì… 6-6-34-2-1 sign ì† 6-6-34-2-26 sign ì‡ 6-6-34-2-12 sign ìˆ 6-6-34-2-3 sign ì‰ 6-6-34-2-236 sign ìŠ 6-6-34-2-256 sign ì‹ 6-6-34-2-356 sign ìŒ 6-6-34-26 sign ì 6-6-34-12 sign ìŽ 6-6-34-12-3 sign ì 6-6-34-3 sign ì 6-6-34-34 sign ì‘ 6-6-34-2356 sign ì’ 6-6-34-13 sign ì“ 6-6-34-23 sign ì” 6-6-34-235 sign ì• 6-6-34-236 sign ì– 6-6-34-256 sign ì— 6-6-34-356 sign ì˜ 6-6-136 sign ì™ 6-6-136-1 sign ìš 6-6-136-1-1 sign ì› 6-6-136-1-3 sign ìœ 6-6-136-25 sign ì 6-6-136-25-13 sign ìž 6-6-136-25-356 sign ìŸ 6-6-136-35 sign ì  6-6-136-2 sign ì¡ 6-6-136-2-1 sign ì¢ 6-6-136-2-26 sign ì£ 6-6-136-2-12 sign ì¤ 6-6-136-2-3 sign ì¥ 6-6-136-2-236 sign ì¦ 6-6-136-2-256 sign ì§ 6-6-136-2-356 sign ì¨ 6-6-136-26 sign ì© 6-6-136-12 sign ìª 6-6-136-12-3 sign ì« 6-6-136-3 sign ì¬ 6-6-136-34 sign ì­ 6-6-136-2356 sign ì® 6-6-136-13 sign ì¯ 6-6-136-23 sign ì° 6-6-136-235 sign ì± 6-6-136-236 sign ì² 6-6-136-256 sign ì³ 6-6-136-356 sign ì´ 6-6-1236 sign ìµ 6-6-1236-1 sign ì¶ 6-6-1236-1-1 sign ì· 6-6-1236-1-3 sign ì¸ 6-6-1236-25 sign ì¹ 6-6-1236-25-13 sign ìº 6-6-1236-25-356 sign ì» 6-6-1236-35 sign ì¼ 6-6-1236-2 sign ì½ 6-6-1236-2-1 sign ì¾ 6-6-1236-2-26 sign ì¿ 6-6-1236-2-12 sign ì€ 6-6-1236-2-3 sign ì 6-6-1236-2-236 sign ì‚ 6-6-1236-2-256 sign ìƒ 6-6-1236-2-356 sign ì„ 6-6-1236-26 sign ì… 6-6-1236-12 sign ì† 6-6-1236-12-3 sign ì‡ 6-6-1236-3 sign ìˆ 6-6-1236-34 sign ì‰ 6-6-1236-2356 sign ìŠ 6-6-1236-13 sign ì‹ 6-6-1236-23 sign ìŒ 6-6-1236-235 sign ì 6-6-1236-236 sign ìŽ 6-6-1236-256 sign ì 6-6-1236-356 sign ì 6-6-1236-1235 sign ì‘ 6-6-1236-1235-1 sign ì’ 6-6-1236-1235-1-1 sign ì“ 6-6-1236-1235-1-3 sign ì” 6-6-1236-1235-25 sign ì• 6-6-1236-1235-25-13 sign ì– 6-6-1236-1235-25-356 sign ì— 6-6-1236-1235-35 sign ì˜ 6-6-1236-1235-2 sign ì™ 6-6-1236-1235-2-1 sign ìš 6-6-1236-1235-2-26 sign ì› 6-6-1236-1235-2-12 sign ìœ 6-6-1236-1235-2-3 sign ì 6-6-1236-1235-2-236 sign ìž 6-6-1236-1235-2-256 sign ìŸ 6-6-1236-1235-2-356 sign ì  6-6-1236-1235-26 sign ì¡ 6-6-1236-1235-12 sign ì¢ 6-6-1236-1235-12-3 sign ì£ 6-6-1236-1235-3 sign ì¤ 6-6-1236-1235-34 sign ì¥ 6-6-1236-1235-2356 sign ì¦ 6-6-1236-1235-13 sign ì§ 6-6-1236-1235-23 sign ì¨ 6-6-1236-1235-235 sign ì© 6-6-1236-1235-236 sign ìª 6-6-1236-1235-256 sign ì« 6-6-1236-1235-356 sign ì¬ 6-6-13456 sign ì­ 6-6-13456-1 sign ì® 6-6-13456-1-1 sign ì¯ 6-6-13456-1-3 sign ì° 6-6-13456-25 sign ì± 6-6-13456-25-13 sign ì² 6-6-13456-25-356 sign ì³ 6-6-13456-35 sign ì´ 6-6-13456-2 sign ìµ 6-6-13456-2-1 sign ì¶ 6-6-13456-2-26 sign ì· 6-6-13456-2-12 sign ì¸ 6-6-13456-2-3 sign ì¹ 6-6-13456-2-236 sign ìº 6-6-13456-2-256 sign ì» 6-6-13456-2-356 sign ì¼ 6-6-13456-26 sign ì½ 6-6-13456-12 sign ì¾ 6-6-13456-12-3 sign ì¿ 6-6-13456-3 sign ì‘€ 6-6-13456-34 sign ì‘ 6-6-13456-2356 sign ì‘‚ 6-6-13456-13 sign 쑃 6-6-13456-23 sign ì‘„ 6-6-13456-235 sign ì‘… 6-6-13456-236 sign 쑆 6-6-13456-256 sign 쑇 6-6-13456-356 sign 쑈 6-6-346 sign 쑉 6-6-346-1 sign 쑊 6-6-346-1-1 sign ì‘‹ 6-6-346-1-3 sign 쑌 6-6-346-25 sign ì‘ 6-6-346-25-13 sign 쑎 6-6-346-25-356 sign ì‘ 6-6-346-35 sign ì‘ 6-6-346-2 sign ì‘‘ 6-6-346-2-1 sign ì‘’ 6-6-346-2-26 sign ì‘“ 6-6-346-2-12 sign ì‘” 6-6-346-2-3 sign ì‘• 6-6-346-2-236 sign ì‘– 6-6-346-2-256 sign ì‘— 6-6-346-2-356 sign 쑘 6-6-346-26 sign ì‘™ 6-6-346-12 sign 쑚 6-6-346-12-3 sign ì‘› 6-6-346-3 sign 쑜 6-6-346-34 sign ì‘ 6-6-346-2356 sign 쑞 6-6-346-13 sign 쑟 6-6-346-23 sign ì‘  6-6-346-235 sign ì‘¡ 6-6-346-236 sign ì‘¢ 6-6-346-256 sign ì‘£ 6-6-346-356 sign 쑤 6-6-134 sign ì‘¥ 6-6-134-1 sign 쑦 6-6-134-1-1 sign ì‘§ 6-6-134-1-3 sign 쑨 6-6-134-25 sign ì‘© 6-6-134-25-13 sign 쑪 6-6-134-25-356 sign ì‘« 6-6-134-35 sign 쑬 6-6-134-2 sign ì‘­ 6-6-134-2-1 sign ì‘® 6-6-134-2-26 sign 쑯 6-6-134-2-12 sign ì‘° 6-6-134-2-3 sign 쑱 6-6-134-2-236 sign 쑲 6-6-134-2-256 sign 쑳 6-6-134-2-356 sign ì‘´ 6-6-134-26 sign 쑵 6-6-134-12 sign ì‘¶ 6-6-134-12-3 sign ì‘· 6-6-134-3 sign 쑸 6-6-134-34 sign 쑹 6-6-134-2356 sign 쑺 6-6-134-13 sign ì‘» 6-6-134-23 sign 쑼 6-6-134-235 sign 쑽 6-6-134-236 sign 쑾 6-6-134-256 sign ì‘¿ 6-6-134-356 sign ì’€ 6-6-1234 sign ì’ 6-6-1234-1 sign ì’‚ 6-6-1234-1-1 sign ì’ƒ 6-6-1234-1-3 sign ì’„ 6-6-1234-25 sign ì’… 6-6-1234-25-13 sign ì’† 6-6-1234-25-356 sign ì’‡ 6-6-1234-35 sign ì’ˆ 6-6-1234-2 sign ì’‰ 6-6-1234-2-1 sign ì’Š 6-6-1234-2-26 sign ì’‹ 6-6-1234-2-12 sign ì’Œ 6-6-1234-2-3 sign ì’ 6-6-1234-2-236 sign ì’Ž 6-6-1234-2-256 sign ì’ 6-6-1234-2-356 sign ì’ 6-6-1234-26 sign ì’‘ 6-6-1234-12 sign ì’’ 6-6-1234-12-3 sign ì’“ 6-6-1234-3 sign ì’” 6-6-1234-34 sign ì’• 6-6-1234-2356 sign ì’– 6-6-1234-13 sign ì’— 6-6-1234-23 sign ì’˜ 6-6-1234-235 sign ì’™ 6-6-1234-236 sign ì’š 6-6-1234-256 sign ì’› 6-6-1234-356 sign ì’œ 6-6-1234-1235 sign ì’ 6-6-1234-1235-1 sign ì’ž 6-6-1234-1235-1-1 sign ì’Ÿ 6-6-1234-1235-1-3 sign ì’  6-6-1234-1235-25 sign ì’¡ 6-6-1234-1235-25-13 sign ì’¢ 6-6-1234-1235-25-356 sign ì’£ 6-6-1234-1235-35 sign ì’¤ 6-6-1234-1235-2 sign ì’¥ 6-6-1234-1235-2-1 sign ì’¦ 6-6-1234-1235-2-26 sign ì’§ 6-6-1234-1235-2-12 sign ì’¨ 6-6-1234-1235-2-3 sign ì’© 6-6-1234-1235-2-236 sign ì’ª 6-6-1234-1235-2-256 sign ì’« 6-6-1234-1235-2-356 sign ì’¬ 6-6-1234-1235-26 sign ì’­ 6-6-1234-1235-12 sign ì’® 6-6-1234-1235-12-3 sign ì’¯ 6-6-1234-1235-3 sign ì’° 6-6-1234-1235-34 sign ì’± 6-6-1234-1235-2356 sign ì’² 6-6-1234-1235-13 sign ì’³ 6-6-1234-1235-23 sign ì’´ 6-6-1234-1235-235 sign ì’µ 6-6-1234-1235-236 sign ì’¶ 6-6-1234-1235-256 sign ì’· 6-6-1234-1235-356 sign ì’¸ 6-6-134-1235 sign ì’¹ 6-6-134-1235-1 sign ì’º 6-6-134-1235-1-1 sign ì’» 6-6-134-1235-1-3 sign ì’¼ 6-6-134-1235-25 sign ì’½ 6-6-134-1235-25-13 sign ì’¾ 6-6-134-1235-25-356 sign ì’¿ 6-6-134-1235-35 sign ì“€ 6-6-134-1235-2 sign ì“ 6-6-134-1235-2-1 sign ì“‚ 6-6-134-1235-2-26 sign 쓃 6-6-134-1235-2-12 sign ì“„ 6-6-134-1235-2-3 sign ì“… 6-6-134-1235-2-236 sign 쓆 6-6-134-1235-2-256 sign 쓇 6-6-134-1235-2-356 sign 쓈 6-6-134-1235-26 sign 쓉 6-6-134-1235-12 sign 쓊 6-6-134-1235-12-3 sign ì“‹ 6-6-134-1235-3 sign 쓌 6-6-134-1235-34 sign ì“ 6-6-134-1235-2356 sign 쓎 6-6-134-1235-13 sign ì“ 6-6-134-1235-23 sign ì“ 6-6-134-1235-235 sign ì“‘ 6-6-134-1235-236 sign ì“’ 6-6-134-1235-256 sign ì““ 6-6-134-1235-356 sign ì“” 6-6-146 sign ì“• 6-6-146-1 sign ì“– 6-6-146-1-1 sign ì“— 6-6-146-1-3 sign 쓘 6-6-146-25 sign ì“™ 6-6-146-25-13 sign 쓚 6-6-146-25-356 sign ì“› 6-6-146-35 sign 쓜 6-6-146-2 sign ì“ 6-6-146-2-1 sign 쓞 6-6-146-2-26 sign 쓟 6-6-146-2-12 sign ì“  6-6-146-2-3 sign ì“¡ 6-6-146-2-236 sign ì“¢ 6-6-146-2-256 sign ì“£ 6-6-146-2-356 sign 쓤 6-6-146-26 sign ì“¥ 6-6-146-12 sign 쓦 6-6-146-12-3 sign ì“§ 6-6-146-3 sign 쓨 6-6-146-34 sign ì“© 6-6-146-2356 sign 쓪 6-6-146-13 sign ì“« 6-6-146-23 sign 쓬 6-6-146-235 sign ì“­ 6-6-146-236 sign ì“® 6-6-146-256 sign 쓯 6-6-146-356 sign ì“° 6-6-246 sign 쓱 6-6-246-1 sign 쓲 6-6-246-1-1 sign 쓳 6-6-246-1-3 sign ì“´ 6-6-246-25 sign 쓵 6-6-246-25-13 sign ì“¶ 6-6-246-25-356 sign ì“· 6-6-246-35 sign 쓸 6-6-246-2 sign 쓹 6-6-246-2-1 sign 쓺 6-6-246-2-26 sign ì“» 6-6-246-2-12 sign 쓼 6-6-246-2-3 sign 쓽 6-6-246-2-236 sign 쓾 6-6-246-2-256 sign ì“¿ 6-6-246-2-356 sign 씀 6-6-246-26 sign ì” 6-6-246-12 sign 씂 6-6-246-12-3 sign 씃 6-6-246-3 sign 씄 6-6-246-34 sign ì”… 6-6-246-2356 sign 씆 6-6-246-13 sign 씇 6-6-246-23 sign 씈 6-6-246-235 sign 씉 6-6-246-236 sign 씊 6-6-246-256 sign 씋 6-6-246-356 sign 씌 6-6-2456 sign ì” 6-6-2456-1 sign 씎 6-6-2456-1-1 sign ì” 6-6-2456-1-3 sign ì” 6-6-2456-25 sign 씑 6-6-2456-25-13 sign ì”’ 6-6-2456-25-356 sign 씓 6-6-2456-35 sign ì”” 6-6-2456-2 sign 씕 6-6-2456-2-1 sign ì”– 6-6-2456-2-26 sign ì”— 6-6-2456-2-12 sign 씘 6-6-2456-2-3 sign ì”™ 6-6-2456-2-236 sign 씚 6-6-2456-2-256 sign ì”› 6-6-2456-2-356 sign 씜 6-6-2456-26 sign ì” 6-6-2456-12 sign 씞 6-6-2456-12-3 sign 씟 6-6-2456-3 sign ì”  6-6-2456-34 sign 씡 6-6-2456-2356 sign 씢 6-6-2456-13 sign 씣 6-6-2456-23 sign 씤 6-6-2456-235 sign 씥 6-6-2456-236 sign 씦 6-6-2456-256 sign ì”§ 6-6-2456-356 sign 씨 6-6-135 sign 씩 6-6-135-1 sign 씪 6-6-135-1-1 sign 씫 6-6-135-1-3 sign 씬 6-6-135-25 sign ì”­ 6-6-135-25-13 sign ì”® 6-6-135-25-356 sign 씯 6-6-135-35 sign ì”° 6-6-135-2 sign ì”± 6-6-135-2-1 sign 씲 6-6-135-2-26 sign 씳 6-6-135-2-12 sign ì”´ 6-6-135-2-3 sign 씵 6-6-135-2-236 sign ì”¶ 6-6-135-2-256 sign ì”· 6-6-135-2-356 sign 씸 6-6-135-26 sign 씹 6-6-135-12 sign 씺 6-6-135-12-3 sign ì”» 6-6-135-3 sign 씼 6-6-135-34 sign 씽 6-6-135-2356 sign 씾 6-6-135-13 sign 씿 6-6-135-23 sign ì•€ 6-6-135-235 sign ì• 6-6-135-236 sign ì•‚ 6-6-135-256 sign 앃 6-6-135-356 sign ì•„ 126 sign ì•… 126-1 sign 앆 126-1-1 sign 앇 126-1-3 sign 안 126-25 sign 앉 126-25-13 sign 않 126-25-356 sign ì•‹ 126-35 sign 알 126-2 sign ì• 126-2-1 sign 앎 126-2-26 sign ì• 126-2-12 sign ì• 126-2-3 sign ì•‘ 126-2-236 sign ì•’ 126-2-256 sign ì•“ 126-2-356 sign ì•” 126-26 sign ì•• 126-12 sign ì•– 126-12-3 sign ì•— 126-3 sign 았 126-34 sign ì•™ 126-2356 sign 앚 126-13 sign ì•› 126-23 sign 앜 126-235 sign ì• 126-236 sign 앞 126-256 sign 앟 126-356 sign ì•  1235 sign ì•¡ 1235-1 sign ì•¢ 1235-1-1 sign ì•£ 1235-1-3 sign 앤 1235-25 sign ì•¥ 1235-25-13 sign 앦 1235-25-356 sign ì•§ 1235-35 sign 앨 1235-2 sign ì•© 1235-2-1 sign 앪 1235-2-26 sign ì•« 1235-2-12 sign 앬 1235-2-3 sign ì•­ 1235-2-236 sign ì•® 1235-2-256 sign 앯 1235-2-356 sign ì•° 1235-26 sign 앱 1235-12 sign 앲 1235-12-3 sign 앳 1235-3 sign ì•´ 1235-34 sign 앵 1235-2356 sign ì•¶ 1235-13 sign ì•· 1235-23 sign 앸 1235-235 sign 앹 1235-236 sign 앺 1235-256 sign ì•» 1235-356 sign 야 345 sign 약 345-1 sign 앾 345-1-1 sign ì•¿ 345-1-3 sign ì–€ 345-25 sign ì– 345-25-13 sign ì–‚ 345-25-356 sign ì–ƒ 345-35 sign ì–„ 345-2 sign ì–… 345-2-1 sign ì–† 345-2-26 sign ì–‡ 345-2-12 sign ì–ˆ 345-2-3 sign ì–‰ 345-2-236 sign ì–Š 345-2-256 sign ì–‹ 345-2-356 sign ì–Œ 345-26 sign ì– 345-12 sign ì–Ž 345-12-3 sign ì– 345-3 sign ì– 345-34 sign ì–‘ 345-2356 sign ì–’ 345-13 sign ì–“ 345-23 sign ì–” 345-235 sign ì–• 345-236 sign ì–– 345-256 sign ì–— 345-356 sign ì–˜ 345-1235 sign ì–™ 345-1235-1 sign ì–š 345-1235-1-1 sign ì–› 345-1235-1-3 sign ì–œ 345-1235-25 sign ì– 345-1235-25-13 sign ì–ž 345-1235-25-356 sign ì–Ÿ 345-1235-35 sign ì–  345-1235-2 sign ì–¡ 345-1235-2-1 sign ì–¢ 345-1235-2-26 sign ì–£ 345-1235-2-12 sign ì–¤ 345-1235-2-3 sign ì–¥ 345-1235-2-236 sign ì–¦ 345-1235-2-256 sign ì–§ 345-1235-2-356 sign ì–¨ 345-1235-26 sign ì–© 345-1235-12 sign ì–ª 345-1235-12-3 sign ì–« 345-1235-3 sign ì–¬ 345-1235-34 sign ì–­ 345-1235-2356 sign ì–® 345-1235-13 sign ì–¯ 345-1235-23 sign ì–° 345-1235-235 sign ì–± 345-1235-236 sign ì–² 345-1235-256 sign ì–³ 345-1235-356 sign ì–´ 234 sign ì–µ 234-1 sign ì–¶ 234-1-1 sign ì–· 234-1-3 sign ì–¸ 234-25 sign ì–¹ 234-25-13 sign ì–º 234-25-356 sign ì–» 234-35 sign ì–¼ 234-2 sign ì–½ 234-2-1 sign ì–¾ 234-2-26 sign ì–¿ 234-2-12 sign ì—€ 234-2-3 sign ì— 234-2-236 sign ì—‚ 234-2-256 sign ì—ƒ 234-2-356 sign ì—„ 234-26 sign ì—… 234-12 sign ì—† 234-12-3 sign ì—‡ 234-3 sign ì—ˆ 234-34 sign ì—‰ 234-2356 sign ì—Š 234-13 sign ì—‹ 234-23 sign ì—Œ 234-235 sign ì— 234-236 sign ì—Ž 234-256 sign ì— 234-356 sign ì— 1345 sign ì—‘ 1345-1 sign ì—’ 1345-1-1 sign ì—“ 1345-1-3 sign ì—” 1345-25 sign ì—• 1345-25-13 sign ì—– 1345-25-356 sign ì—— 1345-35 sign ì—˜ 1345-2 sign ì—™ 1345-2-1 sign ì—š 1345-2-26 sign ì—› 1345-2-12 sign ì—œ 1345-2-3 sign ì— 1345-2-236 sign ì—ž 1345-2-256 sign ì—Ÿ 1345-2-356 sign ì—  1345-26 sign ì—¡ 1345-12 sign ì—¢ 1345-12-3 sign ì—£ 1345-3 sign ì—¤ 1345-34 sign ì—¥ 1345-2356 sign ì—¦ 1345-13 sign ì—§ 1345-23 sign ì—¨ 1345-235 sign ì—© 1345-236 sign ì—ª 1345-256 sign ì—« 1345-356 sign ì—¬ 156 sign ì—­ 156-1 sign ì—® 156-1-1 sign ì—¯ 156-1-3 sign ì—° 156-25 sign ì—± 156-25-13 sign ì—² 156-25-356 sign ì—³ 156-35 sign ì—´ 156-2 sign ì—µ 156-2-1 sign ì—¶ 156-2-26 sign ì—· 156-2-12 sign ì—¸ 156-2-3 sign ì—¹ 156-2-236 sign ì—º 156-2-256 sign ì—» 156-2-356 sign ì—¼ 156-26 sign ì—½ 156-12 sign ì—¾ 156-12-3 sign ì—¿ 156-3 sign 였 156-34 sign ì˜ 156-2356 sign 옂 156-13 sign 옃 156-23 sign 옄 156-235 sign 옅 156-236 sign 옆 156-256 sign 옇 156-356 sign 예 34 sign 옉 34-1 sign 옊 34-1-1 sign 옋 34-1-3 sign 옌 34-25 sign ì˜ 34-25-13 sign 옎 34-25-356 sign ì˜ 34-35 sign ì˜ 34-2 sign 옑 34-2-1 sign 옒 34-2-26 sign 옓 34-2-12 sign 옔 34-2-3 sign 옕 34-2-236 sign 옖 34-2-256 sign 옗 34-2-356 sign 옘 34-26 sign 옙 34-12 sign 옚 34-12-3 sign 옛 34-3 sign 옜 34-34 sign ì˜ 34-2356 sign 옞 34-13 sign 옟 34-23 sign 옠 34-235 sign 옡 34-236 sign 옢 34-256 sign 옣 34-356 sign 오 136 sign 옥 136-1 sign 옦 136-1-1 sign 옧 136-1-3 sign 온 136-25 sign 옩 136-25-13 sign 옪 136-25-356 sign 옫 136-35 sign 올 136-2 sign 옭 136-2-1 sign 옮 136-2-26 sign 옯 136-2-12 sign 옰 136-2-3 sign 옱 136-2-236 sign 옲 136-2-256 sign 옳 136-2-356 sign 옴 136-26 sign 옵 136-12 sign 옶 136-12-3 sign 옷 136-3 sign 옸 136-34 sign 옹 136-2356 sign 옺 136-13 sign 옻 136-23 sign 옼 136-235 sign 옽 136-236 sign 옾 136-256 sign 옿 136-356 sign 와 1236 sign ì™ 1236-1 sign 왂 1236-1-1 sign 왃 1236-1-3 sign 완 1236-25 sign ì™… 1236-25-13 sign 왆 1236-25-356 sign 왇 1236-35 sign 왈 1236-2 sign 왉 1236-2-1 sign 왊 1236-2-26 sign 왋 1236-2-12 sign 왌 1236-2-3 sign ì™ 1236-2-236 sign 왎 1236-2-256 sign ì™ 1236-2-356 sign ì™ 1236-26 sign 왑 1236-12 sign ì™’ 1236-12-3 sign 왓 1236-3 sign ì™” 1236-34 sign 왕 1236-2356 sign ì™– 1236-13 sign ì™— 1236-23 sign 왘 1236-235 sign ì™™ 1236-236 sign 왚 1236-256 sign ì™› 1236-356 sign 왜 1236-1235 sign ì™ 1236-1235-1 sign 왞 1236-1235-1-1 sign 왟 1236-1235-1-3 sign ì™  1236-1235-25 sign 왡 1236-1235-25-13 sign 왢 1236-1235-25-356 sign 왣 1236-1235-35 sign 왤 1236-1235-2 sign 왥 1236-1235-2-1 sign 왦 1236-1235-2-26 sign ì™§ 1236-1235-2-12 sign 왨 1236-1235-2-3 sign 왩 1236-1235-2-236 sign 왪 1236-1235-2-256 sign 왫 1236-1235-2-356 sign 왬 1236-1235-26 sign ì™­ 1236-1235-12 sign ì™® 1236-1235-12-3 sign 왯 1236-1235-3 sign ì™° 1236-1235-34 sign ì™± 1236-1235-2356 sign 왲 1236-1235-13 sign 왳 1236-1235-23 sign ì™´ 1236-1235-235 sign 왵 1236-1235-236 sign ì™¶ 1236-1235-256 sign ì™· 1236-1235-356 sign 외 13456 sign 왹 13456-1 sign 왺 13456-1-1 sign ì™» 13456-1-3 sign 왼 13456-25 sign 왽 13456-25-13 sign 왾 13456-25-356 sign 왿 13456-35 sign 욀 13456-2 sign ìš 13456-2-1 sign ìš‚ 13456-2-26 sign 욃 13456-2-12 sign ìš„ 13456-2-3 sign ìš… 13456-2-236 sign 욆 13456-2-256 sign 욇 13456-2-356 sign 욈 13456-26 sign 욉 13456-12 sign 욊 13456-12-3 sign ìš‹ 13456-3 sign 욌 13456-34 sign ìš 13456-2356 sign 욎 13456-13 sign ìš 13456-23 sign ìš 13456-235 sign ìš‘ 13456-236 sign ìš’ 13456-256 sign ìš“ 13456-356 sign ìš” 346 sign ìš• 346-1 sign ìš– 346-1-1 sign ìš— 346-1-3 sign 욘 346-25 sign ìš™ 346-25-13 sign ìšš 346-25-356 sign ìš› 346-35 sign ìšœ 346-2 sign ìš 346-2-1 sign ìšž 346-2-26 sign 욟 346-2-12 sign ìš  346-2-3 sign ìš¡ 346-2-236 sign 욢 346-2-256 sign 욣 346-2-356 sign 욤 346-26 sign 욥 346-12 sign 욦 346-12-3 sign ìš§ 346-3 sign 욨 346-34 sign ìš© 346-2356 sign 욪 346-13 sign ìš« 346-23 sign 욬 346-235 sign ìš­ 346-236 sign ìš® 346-256 sign 욯 346-356 sign ìš° 134 sign ìš± 134-1 sign ìš² 134-1-1 sign ìš³ 134-1-3 sign ìš´ 134-25 sign ìšµ 134-25-13 sign ìš¶ 134-25-356 sign ìš· 134-35 sign 울 134-2 sign ìš¹ 134-2-1 sign 욺 134-2-26 sign ìš» 134-2-12 sign ìš¼ 134-2-3 sign ìš½ 134-2-236 sign ìš¾ 134-2-256 sign ìš¿ 134-2-356 sign 움 134-26 sign ì› 134-12 sign 웂 134-12-3 sign 웃 134-3 sign 웄 134-34 sign ì›… 134-2356 sign 웆 134-13 sign 웇 134-23 sign 웈 134-235 sign 웉 134-236 sign 웊 134-256 sign 웋 134-356 sign 워 1234 sign ì› 1234-1 sign 웎 1234-1-1 sign ì› 1234-1-3 sign ì› 1234-25 sign 웑 1234-25-13 sign ì›’ 1234-25-356 sign 웓 1234-35 sign ì›” 1234-2 sign 웕 1234-2-1 sign ì›– 1234-2-26 sign ì›— 1234-2-12 sign 웘 1234-2-3 sign ì›™ 1234-2-236 sign 웚 1234-2-256 sign ì›› 1234-2-356 sign 웜 1234-26 sign ì› 1234-12 sign 웞 1234-12-3 sign 웟 1234-3 sign ì›  1234-34 sign 웡 1234-2356 sign 웢 1234-13 sign 웣 1234-23 sign 웤 1234-235 sign 웥 1234-236 sign 웦 1234-256 sign ì›§ 1234-356 sign 웨 1234-1235 sign 웩 1234-1235-1 sign 웪 1234-1235-1-1 sign 웫 1234-1235-1-3 sign 웬 1234-1235-25 sign ì›­ 1234-1235-25-13 sign ì›® 1234-1235-25-356 sign 웯 1234-1235-35 sign ì›° 1234-1235-2 sign ì›± 1234-1235-2-1 sign 웲 1234-1235-2-26 sign 웳 1234-1235-2-12 sign ì›´ 1234-1235-2-3 sign 웵 1234-1235-2-236 sign ì›¶ 1234-1235-2-256 sign ì›· 1234-1235-2-356 sign 웸 1234-1235-26 sign 웹 1234-1235-12 sign 웺 1234-1235-12-3 sign ì›» 1234-1235-3 sign 웼 1234-1235-34 sign 웽 1234-1235-2356 sign 웾 1234-1235-13 sign 웿 1234-1235-23 sign 윀 1234-1235-235 sign ìœ 1234-1235-236 sign 윂 1234-1235-256 sign 윃 1234-1235-356 sign 위 134-1235 sign 윅 134-1235-1 sign 윆 134-1235-1-1 sign 윇 134-1235-1-3 sign 윈 134-1235-25 sign 윉 134-1235-25-13 sign 윊 134-1235-25-356 sign 윋 134-1235-35 sign 윌 134-1235-2 sign ìœ 134-1235-2-1 sign 윎 134-1235-2-26 sign ìœ 134-1235-2-12 sign ìœ 134-1235-2-3 sign 윑 134-1235-2-236 sign 윒 134-1235-2-256 sign 윓 134-1235-2-356 sign 윔 134-1235-26 sign 윕 134-1235-12 sign 윖 134-1235-12-3 sign 윗 134-1235-3 sign 윘 134-1235-34 sign 윙 134-1235-2356 sign 윚 134-1235-13 sign 윛 134-1235-23 sign 윜 134-1235-235 sign ìœ 134-1235-236 sign 윞 134-1235-256 sign 윟 134-1235-356 sign 유 146 sign 육 146-1 sign 윢 146-1-1 sign 윣 146-1-3 sign 윤 146-25 sign 윥 146-25-13 sign 윦 146-25-356 sign 윧 146-35 sign 율 146-2 sign 윩 146-2-1 sign 윪 146-2-26 sign 윫 146-2-12 sign 윬 146-2-3 sign 윭 146-2-236 sign 윮 146-2-256 sign 윯 146-2-356 sign 윰 146-26 sign 윱 146-12 sign 윲 146-12-3 sign 윳 146-3 sign 윴 146-34 sign 융 146-2356 sign 윶 146-13 sign 윷 146-23 sign 윸 146-235 sign 윹 146-236 sign 윺 146-256 sign 윻 146-356 sign 으 246 sign 윽 246-1 sign 윾 246-1-1 sign 윿 246-1-3 sign ì€ 246-25 sign ì 246-25-13 sign ì‚ 246-25-356 sign ìƒ 246-35 sign ì„ 246-2 sign ì… 246-2-1 sign ì† 246-2-26 sign ì‡ 246-2-12 sign ìˆ 246-2-3 sign ì‰ 246-2-236 sign ìŠ 246-2-256 sign ì‹ 246-2-356 sign ìŒ 246-26 sign ì 246-12 sign ìŽ 246-12-3 sign ì 246-3 sign ì 246-34 sign ì‘ 246-2356 sign ì’ 246-13 sign ì“ 246-23 sign ì” 246-235 sign ì• 246-236 sign ì– 246-256 sign ì— 246-356 sign ì˜ 2456 sign ì™ 2456-1 sign ìš 2456-1-1 sign ì› 2456-1-3 sign ìœ 2456-25 sign ì 2456-25-13 sign ìž 2456-25-356 sign ìŸ 2456-35 sign ì  2456-2 sign ì¡ 2456-2-1 sign ì¢ 2456-2-26 sign ì£ 2456-2-12 sign ì¤ 2456-2-3 sign ì¥ 2456-2-236 sign ì¦ 2456-2-256 sign ì§ 2456-2-356 sign ì¨ 2456-26 sign ì© 2456-12 sign ìª 2456-12-3 sign ì« 2456-3 sign ì¬ 2456-34 sign ì­ 2456-2356 sign ì® 2456-13 sign ì¯ 2456-23 sign ì° 2456-235 sign ì± 2456-236 sign ì² 2456-256 sign ì³ 2456-356 sign ì´ 135 sign ìµ 135-1 sign ì¶ 135-1-1 sign ì· 135-1-3 sign ì¸ 135-25 sign ì¹ 135-25-13 sign ìº 135-25-356 sign ì» 135-35 sign ì¼ 135-2 sign ì½ 135-2-1 sign ì¾ 135-2-26 sign ì¿ 135-2-12 sign 잀 135-2-3 sign ìž 135-2-236 sign ìž‚ 135-2-256 sign 잃 135-2-356 sign ìž„ 135-26 sign ìž… 135-12 sign 잆 135-12-3 sign 잇 135-3 sign 있 135-34 sign 잉 135-2356 sign 잊 135-13 sign ìž‹ 135-23 sign 잌 135-235 sign ìž 135-236 sign 잎 135-256 sign ìž 135-356 sign ìž 46-126 sign ìž‘ 46-126-1 sign ìž’ 46-126-1-1 sign ìž“ 46-126-1-3 sign ìž” 46-126-25 sign ìž• 46-126-25-13 sign ìž– 46-126-25-356 sign ìž— 46-126-35 sign 잘 46-126-2 sign ìž™ 46-126-2-1 sign ìžš 46-126-2-26 sign ìž› 46-126-2-12 sign ìžœ 46-126-2-3 sign ìž 46-126-2-236 sign ìžž 46-126-2-256 sign 잟 46-126-2-356 sign ìž  46-126-26 sign ìž¡ 46-126-12 sign 잢 46-126-12-3 sign 잣 46-126-3 sign 잤 46-126-34 sign 장 46-126-2356 sign 잦 46-126-13 sign ìž§ 46-126-23 sign 잨 46-126-235 sign ìž© 46-126-236 sign 잪 46-126-256 sign ìž« 46-126-356 sign 재 46-1235 sign ìž­ 46-1235-1 sign ìž® 46-1235-1-1 sign 잯 46-1235-1-3 sign ìž° 46-1235-25 sign ìž± 46-1235-25-13 sign ìž² 46-1235-25-356 sign ìž³ 46-1235-35 sign ìž´ 46-1235-2 sign ìžµ 46-1235-2-1 sign ìž¶ 46-1235-2-26 sign ìž· 46-1235-2-12 sign 잸 46-1235-2-3 sign ìž¹ 46-1235-2-236 sign 잺 46-1235-2-256 sign ìž» 46-1235-2-356 sign ìž¼ 46-1235-26 sign ìž½ 46-1235-12 sign ìž¾ 46-1235-12-3 sign ìž¿ 46-1235-3 sign 쟀 46-1235-34 sign ìŸ 46-1235-2356 sign 쟂 46-1235-13 sign 쟃 46-1235-23 sign 쟄 46-1235-235 sign 쟅 46-1235-236 sign 쟆 46-1235-256 sign 쟇 46-1235-356 sign 쟈 46-345 sign 쟉 46-345-1 sign 쟊 46-345-1-1 sign 쟋 46-345-1-3 sign 쟌 46-345-25 sign ìŸ 46-345-25-13 sign 쟎 46-345-25-356 sign ìŸ 46-345-35 sign ìŸ 46-345-2 sign 쟑 46-345-2-1 sign 쟒 46-345-2-26 sign 쟓 46-345-2-12 sign 쟔 46-345-2-3 sign 쟕 46-345-2-236 sign 쟖 46-345-2-256 sign 쟗 46-345-2-356 sign 쟘 46-345-26 sign 쟙 46-345-12 sign 쟚 46-345-12-3 sign 쟛 46-345-3 sign 쟜 46-345-34 sign ìŸ 46-345-2356 sign 쟞 46-345-13 sign 쟟 46-345-23 sign 쟠 46-345-235 sign 쟡 46-345-236 sign 쟢 46-345-256 sign 쟣 46-345-356 sign 쟤 46-345-1235 sign 쟥 46-345-1235-1 sign 쟦 46-345-1235-1-1 sign 쟧 46-345-1235-1-3 sign 쟨 46-345-1235-25 sign 쟩 46-345-1235-25-13 sign 쟪 46-345-1235-25-356 sign 쟫 46-345-1235-35 sign 쟬 46-345-1235-2 sign 쟭 46-345-1235-2-1 sign 쟮 46-345-1235-2-26 sign 쟯 46-345-1235-2-12 sign 쟰 46-345-1235-2-3 sign 쟱 46-345-1235-2-236 sign 쟲 46-345-1235-2-256 sign 쟳 46-345-1235-2-356 sign 쟴 46-345-1235-26 sign 쟵 46-345-1235-12 sign 쟶 46-345-1235-12-3 sign 쟷 46-345-1235-3 sign 쟸 46-345-1235-34 sign 쟹 46-345-1235-2356 sign 쟺 46-345-1235-13 sign 쟻 46-345-1235-23 sign 쟼 46-345-1235-235 sign 쟽 46-345-1235-236 sign 쟾 46-345-1235-256 sign 쟿 46-345-1235-356 sign ì € 46-234 sign ì  46-234-1 sign ì ‚ 46-234-1-1 sign ì ƒ 46-234-1-3 sign ì „ 46-234-25 sign ì … 46-234-25-13 sign ì † 46-234-25-356 sign ì ‡ 46-234-35 sign ì ˆ 46-234-2 sign ì ‰ 46-234-2-1 sign ì Š 46-234-2-26 sign ì ‹ 46-234-2-12 sign ì Œ 46-234-2-3 sign ì  46-234-2-236 sign ì Ž 46-234-2-256 sign ì  46-234-2-356 sign ì  46-234-26 sign ì ‘ 46-234-12 sign ì ’ 46-234-12-3 sign ì “ 46-234-3 sign ì ” 46-234-34 sign ì • 46-234-2356 sign ì – 46-234-13 sign ì — 46-234-23 sign ì ˜ 46-234-235 sign ì ™ 46-234-236 sign ì š 46-234-256 sign ì › 46-234-356 sign ì œ 46-1345 sign ì  46-1345-1 sign ì ž 46-1345-1-1 sign ì Ÿ 46-1345-1-3 sign ì   46-1345-25 sign ì ¡ 46-1345-25-13 sign ì ¢ 46-1345-25-356 sign ì £ 46-1345-35 sign ì ¤ 46-1345-2 sign ì ¥ 46-1345-2-1 sign ì ¦ 46-1345-2-26 sign ì § 46-1345-2-12 sign ì ¨ 46-1345-2-3 sign ì © 46-1345-2-236 sign ì ª 46-1345-2-256 sign ì « 46-1345-2-356 sign ì ¬ 46-1345-26 sign ì ­ 46-1345-12 sign ì ® 46-1345-12-3 sign ì ¯ 46-1345-3 sign ì ° 46-1345-34 sign ì ± 46-1345-2356 sign ì ² 46-1345-13 sign ì ³ 46-1345-23 sign ì ´ 46-1345-235 sign ì µ 46-1345-236 sign ì ¶ 46-1345-256 sign ì · 46-1345-356 sign ì ¸ 46-156 sign ì ¹ 46-156-1 sign ì º 46-156-1-1 sign ì » 46-156-1-3 sign ì ¼ 46-156-25 sign ì ½ 46-156-25-13 sign ì ¾ 46-156-25-356 sign ì ¿ 46-156-35 sign ì¡€ 46-156-2 sign ì¡ 46-156-2-1 sign ì¡‚ 46-156-2-26 sign 졃 46-156-2-12 sign ì¡„ 46-156-2-3 sign ì¡… 46-156-2-236 sign 졆 46-156-2-256 sign 졇 46-156-2-356 sign 졈 46-156-26 sign 졉 46-156-12 sign 졊 46-156-12-3 sign ì¡‹ 46-156-3 sign 졌 46-156-34 sign ì¡ 46-156-2356 sign 졎 46-156-13 sign ì¡ 46-156-23 sign ì¡ 46-156-235 sign ì¡‘ 46-156-236 sign ì¡’ 46-156-256 sign ì¡“ 46-156-356 sign ì¡” 46-34 sign ì¡• 46-34-1 sign ì¡– 46-34-1-1 sign ì¡— 46-34-1-3 sign 졘 46-34-25 sign ì¡™ 46-34-25-13 sign 졚 46-34-25-356 sign ì¡› 46-34-35 sign 졜 46-34-2 sign ì¡ 46-34-2-1 sign 졞 46-34-2-26 sign 졟 46-34-2-12 sign ì¡  46-34-2-3 sign ì¡¡ 46-34-2-236 sign ì¡¢ 46-34-2-256 sign ì¡£ 46-34-2-356 sign 졤 46-34-26 sign ì¡¥ 46-34-12 sign 졦 46-34-12-3 sign ì¡§ 46-34-3 sign 졨 46-34-34 sign ì¡© 46-34-2356 sign 졪 46-34-13 sign ì¡« 46-34-23 sign 졬 46-34-235 sign ì¡­ 46-34-236 sign ì¡® 46-34-256 sign 졯 46-34-356 sign ì¡° 46-136 sign 족 46-136-1 sign 졲 46-136-1-1 sign 졳 46-136-1-3 sign ì¡´ 46-136-25 sign 졵 46-136-25-13 sign ì¡¶ 46-136-25-356 sign ì¡· 46-136-35 sign 졸 46-136-2 sign 졹 46-136-2-1 sign 졺 46-136-2-26 sign ì¡» 46-136-2-12 sign 졼 46-136-2-3 sign 졽 46-136-2-236 sign 졾 46-136-2-256 sign ì¡¿ 46-136-2-356 sign 좀 46-136-26 sign ì¢ 46-136-12 sign 좂 46-136-12-3 sign 좃 46-136-3 sign 좄 46-136-34 sign 종 46-136-2356 sign 좆 46-136-13 sign 좇 46-136-23 sign 좈 46-136-235 sign 좉 46-136-236 sign 좊 46-136-256 sign 좋 46-136-356 sign 좌 46-1236 sign ì¢ 46-1236-1 sign 좎 46-1236-1-1 sign ì¢ 46-1236-1-3 sign ì¢ 46-1236-25 sign 좑 46-1236-25-13 sign 좒 46-1236-25-356 sign 좓 46-1236-35 sign 좔 46-1236-2 sign 좕 46-1236-2-1 sign 좖 46-1236-2-26 sign 좗 46-1236-2-12 sign 좘 46-1236-2-3 sign 좙 46-1236-2-236 sign 좚 46-1236-2-256 sign 좛 46-1236-2-356 sign 좜 46-1236-26 sign ì¢ 46-1236-12 sign 좞 46-1236-12-3 sign 좟 46-1236-3 sign 좠 46-1236-34 sign 좡 46-1236-2356 sign 좢 46-1236-13 sign 좣 46-1236-23 sign 좤 46-1236-235 sign 좥 46-1236-236 sign 좦 46-1236-256 sign 좧 46-1236-356 sign 좨 46-1236-1235 sign 좩 46-1236-1235-1 sign 좪 46-1236-1235-1-1 sign 좫 46-1236-1235-1-3 sign 좬 46-1236-1235-25 sign 좭 46-1236-1235-25-13 sign 좮 46-1236-1235-25-356 sign 좯 46-1236-1235-35 sign 좰 46-1236-1235-2 sign 좱 46-1236-1235-2-1 sign 좲 46-1236-1235-2-26 sign 좳 46-1236-1235-2-12 sign 좴 46-1236-1235-2-3 sign 좵 46-1236-1235-2-236 sign 좶 46-1236-1235-2-256 sign 좷 46-1236-1235-2-356 sign 좸 46-1236-1235-26 sign 좹 46-1236-1235-12 sign 좺 46-1236-1235-12-3 sign 좻 46-1236-1235-3 sign 좼 46-1236-1235-34 sign 좽 46-1236-1235-2356 sign 좾 46-1236-1235-13 sign 좿 46-1236-1235-23 sign 죀 46-1236-1235-235 sign ì£ 46-1236-1235-236 sign 죂 46-1236-1235-256 sign 죃 46-1236-1235-356 sign 죄 46-13456 sign 죅 46-13456-1 sign 죆 46-13456-1-1 sign 죇 46-13456-1-3 sign 죈 46-13456-25 sign 죉 46-13456-25-13 sign 죊 46-13456-25-356 sign 죋 46-13456-35 sign 죌 46-13456-2 sign ì£ 46-13456-2-1 sign 죎 46-13456-2-26 sign ì£ 46-13456-2-12 sign ì£ 46-13456-2-3 sign 죑 46-13456-2-236 sign 죒 46-13456-2-256 sign 죓 46-13456-2-356 sign 죔 46-13456-26 sign 죕 46-13456-12 sign 죖 46-13456-12-3 sign 죗 46-13456-3 sign 죘 46-13456-34 sign 죙 46-13456-2356 sign 죚 46-13456-13 sign 죛 46-13456-23 sign 죜 46-13456-235 sign ì£ 46-13456-236 sign 죞 46-13456-256 sign 죟 46-13456-356 sign 죠 46-346 sign 죡 46-346-1 sign 죢 46-346-1-1 sign 죣 46-346-1-3 sign 죤 46-346-25 sign 죥 46-346-25-13 sign 죦 46-346-25-356 sign 죧 46-346-35 sign 죨 46-346-2 sign 죩 46-346-2-1 sign 죪 46-346-2-26 sign 죫 46-346-2-12 sign 죬 46-346-2-3 sign 죭 46-346-2-236 sign 죮 46-346-2-256 sign 죯 46-346-2-356 sign 죰 46-346-26 sign 죱 46-346-12 sign 죲 46-346-12-3 sign 죳 46-346-3 sign 죴 46-346-34 sign 죵 46-346-2356 sign 죶 46-346-13 sign 죷 46-346-23 sign 죸 46-346-235 sign 죹 46-346-236 sign 죺 46-346-256 sign 죻 46-346-356 sign 주 46-134 sign 죽 46-134-1 sign 죾 46-134-1-1 sign 죿 46-134-1-3 sign 준 46-134-25 sign ì¤ 46-134-25-13 sign 줂 46-134-25-356 sign 줃 46-134-35 sign 줄 46-134-2 sign 줅 46-134-2-1 sign 줆 46-134-2-26 sign 줇 46-134-2-12 sign 줈 46-134-2-3 sign 줉 46-134-2-236 sign 줊 46-134-2-256 sign 줋 46-134-2-356 sign 줌 46-134-26 sign ì¤ 46-134-12 sign 줎 46-134-12-3 sign ì¤ 46-134-3 sign ì¤ 46-134-34 sign 중 46-134-2356 sign 줒 46-134-13 sign 줓 46-134-23 sign 줔 46-134-235 sign 줕 46-134-236 sign 줖 46-134-256 sign 줗 46-134-356 sign 줘 46-1234 sign 줙 46-1234-1 sign 줚 46-1234-1-1 sign 줛 46-1234-1-3 sign 줜 46-1234-25 sign ì¤ 46-1234-25-13 sign 줞 46-1234-25-356 sign 줟 46-1234-35 sign 줠 46-1234-2 sign 줡 46-1234-2-1 sign 줢 46-1234-2-26 sign 줣 46-1234-2-12 sign 줤 46-1234-2-3 sign 줥 46-1234-2-236 sign 줦 46-1234-2-256 sign 줧 46-1234-2-356 sign 줨 46-1234-26 sign 줩 46-1234-12 sign 줪 46-1234-12-3 sign 줫 46-1234-3 sign 줬 46-1234-34 sign 줭 46-1234-2356 sign 줮 46-1234-13 sign 줯 46-1234-23 sign 줰 46-1234-235 sign 줱 46-1234-236 sign 줲 46-1234-256 sign 줳 46-1234-356 sign 줴 46-1234-1235 sign 줵 46-1234-1235-1 sign 줶 46-1234-1235-1-1 sign 줷 46-1234-1235-1-3 sign 줸 46-1234-1235-25 sign 줹 46-1234-1235-25-13 sign 줺 46-1234-1235-25-356 sign 줻 46-1234-1235-35 sign 줼 46-1234-1235-2 sign 줽 46-1234-1235-2-1 sign 줾 46-1234-1235-2-26 sign 줿 46-1234-1235-2-12 sign 쥀 46-1234-1235-2-3 sign ì¥ 46-1234-1235-2-236 sign 쥂 46-1234-1235-2-256 sign 쥃 46-1234-1235-2-356 sign 쥄 46-1234-1235-26 sign 쥅 46-1234-1235-12 sign 쥆 46-1234-1235-12-3 sign 쥇 46-1234-1235-3 sign 쥈 46-1234-1235-34 sign 쥉 46-1234-1235-2356 sign 쥊 46-1234-1235-13 sign 쥋 46-1234-1235-23 sign 쥌 46-1234-1235-235 sign ì¥ 46-1234-1235-236 sign 쥎 46-1234-1235-256 sign ì¥ 46-1234-1235-356 sign ì¥ 46-134-1235 sign 쥑 46-134-1235-1 sign 쥒 46-134-1235-1-1 sign 쥓 46-134-1235-1-3 sign 쥔 46-134-1235-25 sign 쥕 46-134-1235-25-13 sign 쥖 46-134-1235-25-356 sign 쥗 46-134-1235-35 sign 쥘 46-134-1235-2 sign 쥙 46-134-1235-2-1 sign 쥚 46-134-1235-2-26 sign 쥛 46-134-1235-2-12 sign 쥜 46-134-1235-2-3 sign ì¥ 46-134-1235-2-236 sign 쥞 46-134-1235-2-256 sign 쥟 46-134-1235-2-356 sign 쥠 46-134-1235-26 sign 쥡 46-134-1235-12 sign 쥢 46-134-1235-12-3 sign 쥣 46-134-1235-3 sign 쥤 46-134-1235-34 sign 쥥 46-134-1235-2356 sign 쥦 46-134-1235-13 sign 쥧 46-134-1235-23 sign 쥨 46-134-1235-235 sign 쥩 46-134-1235-236 sign 쥪 46-134-1235-256 sign 쥫 46-134-1235-356 sign 쥬 46-146 sign 쥭 46-146-1 sign 쥮 46-146-1-1 sign 쥯 46-146-1-3 sign 쥰 46-146-25 sign 쥱 46-146-25-13 sign 쥲 46-146-25-356 sign 쥳 46-146-35 sign 쥴 46-146-2 sign 쥵 46-146-2-1 sign 쥶 46-146-2-26 sign 쥷 46-146-2-12 sign 쥸 46-146-2-3 sign 쥹 46-146-2-236 sign 쥺 46-146-2-256 sign 쥻 46-146-2-356 sign 쥼 46-146-26 sign 쥽 46-146-12 sign 쥾 46-146-12-3 sign 쥿 46-146-3 sign 즀 46-146-34 sign ì¦ 46-146-2356 sign 즂 46-146-13 sign 즃 46-146-23 sign 즄 46-146-235 sign 즅 46-146-236 sign 즆 46-146-256 sign 즇 46-146-356 sign 즈 46-246 sign 즉 46-246-1 sign 즊 46-246-1-1 sign 즋 46-246-1-3 sign 즌 46-246-25 sign ì¦ 46-246-25-13 sign 즎 46-246-25-356 sign ì¦ 46-246-35 sign ì¦ 46-246-2 sign 즑 46-246-2-1 sign 즒 46-246-2-26 sign 즓 46-246-2-12 sign 즔 46-246-2-3 sign 즕 46-246-2-236 sign 즖 46-246-2-256 sign 즗 46-246-2-356 sign 즘 46-246-26 sign 즙 46-246-12 sign 즚 46-246-12-3 sign 즛 46-246-3 sign 즜 46-246-34 sign ì¦ 46-246-2356 sign 즞 46-246-13 sign 즟 46-246-23 sign 즠 46-246-235 sign 즡 46-246-236 sign 즢 46-246-256 sign 즣 46-246-356 sign 즤 46-2456 sign 즥 46-2456-1 sign 즦 46-2456-1-1 sign 즧 46-2456-1-3 sign 즨 46-2456-25 sign 즩 46-2456-25-13 sign 즪 46-2456-25-356 sign 즫 46-2456-35 sign 즬 46-2456-2 sign 즭 46-2456-2-1 sign 즮 46-2456-2-26 sign 즯 46-2456-2-12 sign 즰 46-2456-2-3 sign 즱 46-2456-2-236 sign 즲 46-2456-2-256 sign 즳 46-2456-2-356 sign 즴 46-2456-26 sign 즵 46-2456-12 sign 즶 46-2456-12-3 sign 즷 46-2456-3 sign 즸 46-2456-34 sign 즹 46-2456-2356 sign 즺 46-2456-13 sign 즻 46-2456-23 sign 즼 46-2456-235 sign 즽 46-2456-236 sign 즾 46-2456-256 sign 즿 46-2456-356 sign ì§€ 46-135 sign ì§ 46-135-1 sign ì§‚ 46-135-1-1 sign 짃 46-135-1-3 sign ì§„ 46-135-25 sign ì§… 46-135-25-13 sign 짆 46-135-25-356 sign 짇 46-135-35 sign 질 46-135-2 sign 짉 46-135-2-1 sign ì§Š 46-135-2-26 sign ì§‹ 46-135-2-12 sign ì§Œ 46-135-2-3 sign ì§ 46-135-2-236 sign ì§Ž 46-135-2-256 sign ì§ 46-135-2-356 sign ì§ 46-135-26 sign ì§‘ 46-135-12 sign ì§’ 46-135-12-3 sign ì§“ 46-135-3 sign ì§” 46-135-34 sign ì§• 46-135-2356 sign ì§– 46-135-13 sign ì§— 46-135-23 sign 짘 46-135-235 sign ì§™ 46-135-236 sign ì§š 46-135-256 sign ì§› 46-135-356 sign ì§œ 6-46-126 sign ì§ 6-46-126-1 sign ì§ž 6-46-126-1-1 sign ì§Ÿ 6-46-126-1-3 sign ì§  6-46-126-25 sign ì§¡ 6-46-126-25-13 sign ì§¢ 6-46-126-25-356 sign ì§£ 6-46-126-35 sign 짤 6-46-126-2 sign ì§¥ 6-46-126-2-1 sign 짦 6-46-126-2-26 sign ì§§ 6-46-126-2-12 sign 짨 6-46-126-2-3 sign ì§© 6-46-126-2-236 sign 짪 6-46-126-2-256 sign ì§« 6-46-126-2-356 sign 짬 6-46-126-26 sign ì§­ 6-46-126-12 sign ì§® 6-46-126-12-3 sign 짯 6-46-126-3 sign ì§° 6-46-126-34 sign ì§± 6-46-126-2356 sign ì§² 6-46-126-13 sign ì§³ 6-46-126-23 sign ì§´ 6-46-126-235 sign ì§µ 6-46-126-236 sign ì§¶ 6-46-126-256 sign ì§· 6-46-126-356 sign 째 6-46-1235 sign ì§¹ 6-46-1235-1 sign 짺 6-46-1235-1-1 sign ì§» 6-46-1235-1-3 sign ì§¼ 6-46-1235-25 sign ì§½ 6-46-1235-25-13 sign ì§¾ 6-46-1235-25-356 sign ì§¿ 6-46-1235-35 sign 쨀 6-46-1235-2 sign ì¨ 6-46-1235-2-1 sign 쨂 6-46-1235-2-26 sign 쨃 6-46-1235-2-12 sign 쨄 6-46-1235-2-3 sign 쨅 6-46-1235-2-236 sign 쨆 6-46-1235-2-256 sign 쨇 6-46-1235-2-356 sign 쨈 6-46-1235-26 sign 쨉 6-46-1235-12 sign 쨊 6-46-1235-12-3 sign 쨋 6-46-1235-3 sign 쨌 6-46-1235-34 sign ì¨ 6-46-1235-2356 sign 쨎 6-46-1235-13 sign ì¨ 6-46-1235-23 sign ì¨ 6-46-1235-235 sign 쨑 6-46-1235-236 sign 쨒 6-46-1235-256 sign 쨓 6-46-1235-356 sign 쨔 6-46-345 sign 쨕 6-46-345-1 sign 쨖 6-46-345-1-1 sign 쨗 6-46-345-1-3 sign 쨘 6-46-345-25 sign 쨙 6-46-345-25-13 sign 쨚 6-46-345-25-356 sign 쨛 6-46-345-35 sign 쨜 6-46-345-2 sign ì¨ 6-46-345-2-1 sign 쨞 6-46-345-2-26 sign 쨟 6-46-345-2-12 sign 쨠 6-46-345-2-3 sign 쨡 6-46-345-2-236 sign 쨢 6-46-345-2-256 sign 쨣 6-46-345-2-356 sign 쨤 6-46-345-26 sign 쨥 6-46-345-12 sign 쨦 6-46-345-12-3 sign 쨧 6-46-345-3 sign 쨨 6-46-345-34 sign 쨩 6-46-345-2356 sign 쨪 6-46-345-13 sign 쨫 6-46-345-23 sign 쨬 6-46-345-235 sign 쨭 6-46-345-236 sign 쨮 6-46-345-256 sign 쨯 6-46-345-356 sign 쨰 6-46-345-1235 sign 쨱 6-46-345-1235-1 sign 쨲 6-46-345-1235-1-1 sign 쨳 6-46-345-1235-1-3 sign 쨴 6-46-345-1235-25 sign 쨵 6-46-345-1235-25-13 sign 쨶 6-46-345-1235-25-356 sign 쨷 6-46-345-1235-35 sign 쨸 6-46-345-1235-2 sign 쨹 6-46-345-1235-2-1 sign 쨺 6-46-345-1235-2-26 sign 쨻 6-46-345-1235-2-12 sign 쨼 6-46-345-1235-2-3 sign 쨽 6-46-345-1235-2-236 sign 쨾 6-46-345-1235-2-256 sign 쨿 6-46-345-1235-2-356 sign ì©€ 6-46-345-1235-26 sign ì© 6-46-345-1235-12 sign ì©‚ 6-46-345-1235-12-3 sign 쩃 6-46-345-1235-3 sign ì©„ 6-46-345-1235-34 sign ì©… 6-46-345-1235-2356 sign 쩆 6-46-345-1235-13 sign 쩇 6-46-345-1235-23 sign 쩈 6-46-345-1235-235 sign 쩉 6-46-345-1235-236 sign 쩊 6-46-345-1235-256 sign ì©‹ 6-46-345-1235-356 sign 쩌 6-46-234 sign ì© 6-46-234-1 sign 쩎 6-46-234-1-1 sign ì© 6-46-234-1-3 sign ì© 6-46-234-25 sign ì©‘ 6-46-234-25-13 sign ì©’ 6-46-234-25-356 sign ì©“ 6-46-234-35 sign ì©” 6-46-234-2 sign ì©• 6-46-234-2-1 sign ì©– 6-46-234-2-26 sign ì©— 6-46-234-2-12 sign 쩘 6-46-234-2-3 sign ì©™ 6-46-234-2-236 sign 쩚 6-46-234-2-256 sign ì©› 6-46-234-2-356 sign 쩜 6-46-234-26 sign ì© 6-46-234-12 sign 쩞 6-46-234-12-3 sign 쩟 6-46-234-3 sign ì©  6-46-234-34 sign ì©¡ 6-46-234-2356 sign ì©¢ 6-46-234-13 sign ì©£ 6-46-234-23 sign 쩤 6-46-234-235 sign ì©¥ 6-46-234-236 sign 쩦 6-46-234-256 sign ì©§ 6-46-234-356 sign 쩨 6-46-1345 sign ì©© 6-46-1345-1 sign 쩪 6-46-1345-1-1 sign ì©« 6-46-1345-1-3 sign 쩬 6-46-1345-25 sign ì©­ 6-46-1345-25-13 sign ì©® 6-46-1345-25-356 sign 쩯 6-46-1345-35 sign ì©° 6-46-1345-2 sign 쩱 6-46-1345-2-1 sign 쩲 6-46-1345-2-26 sign 쩳 6-46-1345-2-12 sign ì©´ 6-46-1345-2-3 sign 쩵 6-46-1345-2-236 sign ì©¶ 6-46-1345-2-256 sign ì©· 6-46-1345-2-356 sign 쩸 6-46-1345-26 sign 쩹 6-46-1345-12 sign 쩺 6-46-1345-12-3 sign ì©» 6-46-1345-3 sign 쩼 6-46-1345-34 sign 쩽 6-46-1345-2356 sign 쩾 6-46-1345-13 sign ì©¿ 6-46-1345-23 sign 쪀 6-46-1345-235 sign ìª 6-46-1345-236 sign 쪂 6-46-1345-256 sign 쪃 6-46-1345-356 sign 쪄 6-46-156 sign 쪅 6-46-156-1 sign 쪆 6-46-156-1-1 sign 쪇 6-46-156-1-3 sign 쪈 6-46-156-25 sign 쪉 6-46-156-25-13 sign 쪊 6-46-156-25-356 sign 쪋 6-46-156-35 sign 쪌 6-46-156-2 sign ìª 6-46-156-2-1 sign 쪎 6-46-156-2-26 sign ìª 6-46-156-2-12 sign ìª 6-46-156-2-3 sign 쪑 6-46-156-2-236 sign 쪒 6-46-156-2-256 sign 쪓 6-46-156-2-356 sign 쪔 6-46-156-26 sign 쪕 6-46-156-12 sign 쪖 6-46-156-12-3 sign 쪗 6-46-156-3 sign 쪘 6-46-156-34 sign 쪙 6-46-156-2356 sign 쪚 6-46-156-13 sign 쪛 6-46-156-23 sign 쪜 6-46-156-235 sign ìª 6-46-156-236 sign 쪞 6-46-156-256 sign 쪟 6-46-156-356 sign 쪠 6-46-34 sign 쪡 6-46-34-1 sign 쪢 6-46-34-1-1 sign 쪣 6-46-34-1-3 sign 쪤 6-46-34-25 sign 쪥 6-46-34-25-13 sign 쪦 6-46-34-25-356 sign 쪧 6-46-34-35 sign 쪨 6-46-34-2 sign 쪩 6-46-34-2-1 sign 쪪 6-46-34-2-26 sign 쪫 6-46-34-2-12 sign 쪬 6-46-34-2-3 sign 쪭 6-46-34-2-236 sign 쪮 6-46-34-2-256 sign 쪯 6-46-34-2-356 sign 쪰 6-46-34-26 sign 쪱 6-46-34-12 sign 쪲 6-46-34-12-3 sign 쪳 6-46-34-3 sign 쪴 6-46-34-34 sign 쪵 6-46-34-2356 sign 쪶 6-46-34-13 sign 쪷 6-46-34-23 sign 쪸 6-46-34-235 sign 쪹 6-46-34-236 sign 쪺 6-46-34-256 sign 쪻 6-46-34-356 sign 쪼 6-46-136 sign 쪽 6-46-136-1 sign 쪾 6-46-136-1-1 sign 쪿 6-46-136-1-3 sign ì«€ 6-46-136-25 sign ì« 6-46-136-25-13 sign ì«‚ 6-46-136-25-356 sign 쫃 6-46-136-35 sign ì«„ 6-46-136-2 sign ì«… 6-46-136-2-1 sign 쫆 6-46-136-2-26 sign 쫇 6-46-136-2-12 sign 쫈 6-46-136-2-3 sign 쫉 6-46-136-2-236 sign 쫊 6-46-136-2-256 sign ì«‹ 6-46-136-2-356 sign 쫌 6-46-136-26 sign ì« 6-46-136-12 sign 쫎 6-46-136-12-3 sign ì« 6-46-136-3 sign ì« 6-46-136-34 sign ì«‘ 6-46-136-2356 sign ì«’ 6-46-136-13 sign ì«“ 6-46-136-23 sign ì«” 6-46-136-235 sign ì«• 6-46-136-236 sign ì«– 6-46-136-256 sign ì«— 6-46-136-356 sign 쫘 6-46-1236 sign ì«™ 6-46-1236-1 sign 쫚 6-46-1236-1-1 sign ì«› 6-46-1236-1-3 sign 쫜 6-46-1236-25 sign ì« 6-46-1236-25-13 sign 쫞 6-46-1236-25-356 sign 쫟 6-46-1236-35 sign ì«  6-46-1236-2 sign ì«¡ 6-46-1236-2-1 sign ì«¢ 6-46-1236-2-26 sign ì«£ 6-46-1236-2-12 sign 쫤 6-46-1236-2-3 sign ì«¥ 6-46-1236-2-236 sign 쫦 6-46-1236-2-256 sign ì«§ 6-46-1236-2-356 sign 쫨 6-46-1236-26 sign ì«© 6-46-1236-12 sign 쫪 6-46-1236-12-3 sign ì«« 6-46-1236-3 sign 쫬 6-46-1236-34 sign ì«­ 6-46-1236-2356 sign ì«® 6-46-1236-13 sign 쫯 6-46-1236-23 sign ì«° 6-46-1236-235 sign 쫱 6-46-1236-236 sign 쫲 6-46-1236-256 sign 쫳 6-46-1236-356 sign ì«´ 6-46-1236-1235 sign 쫵 6-46-1236-1235-1 sign ì«¶ 6-46-1236-1235-1-1 sign ì«· 6-46-1236-1235-1-3 sign 쫸 6-46-1236-1235-25 sign 쫹 6-46-1236-1235-25-13 sign 쫺 6-46-1236-1235-25-356 sign ì«» 6-46-1236-1235-35 sign 쫼 6-46-1236-1235-2 sign 쫽 6-46-1236-1235-2-1 sign 쫾 6-46-1236-1235-2-26 sign ì«¿ 6-46-1236-1235-2-12 sign 쬀 6-46-1236-1235-2-3 sign ì¬ 6-46-1236-1235-2-236 sign 쬂 6-46-1236-1235-2-256 sign 쬃 6-46-1236-1235-2-356 sign 쬄 6-46-1236-1235-26 sign 쬅 6-46-1236-1235-12 sign 쬆 6-46-1236-1235-12-3 sign 쬇 6-46-1236-1235-3 sign 쬈 6-46-1236-1235-34 sign 쬉 6-46-1236-1235-2356 sign 쬊 6-46-1236-1235-13 sign 쬋 6-46-1236-1235-23 sign 쬌 6-46-1236-1235-235 sign ì¬ 6-46-1236-1235-236 sign 쬎 6-46-1236-1235-256 sign ì¬ 6-46-1236-1235-356 sign ì¬ 6-46-13456 sign 쬑 6-46-13456-1 sign 쬒 6-46-13456-1-1 sign 쬓 6-46-13456-1-3 sign 쬔 6-46-13456-25 sign 쬕 6-46-13456-25-13 sign 쬖 6-46-13456-25-356 sign 쬗 6-46-13456-35 sign 쬘 6-46-13456-2 sign 쬙 6-46-13456-2-1 sign 쬚 6-46-13456-2-26 sign 쬛 6-46-13456-2-12 sign 쬜 6-46-13456-2-3 sign ì¬ 6-46-13456-2-236 sign 쬞 6-46-13456-2-256 sign 쬟 6-46-13456-2-356 sign 쬠 6-46-13456-26 sign 쬡 6-46-13456-12 sign 쬢 6-46-13456-12-3 sign 쬣 6-46-13456-3 sign 쬤 6-46-13456-34 sign 쬥 6-46-13456-2356 sign 쬦 6-46-13456-13 sign 쬧 6-46-13456-23 sign 쬨 6-46-13456-235 sign 쬩 6-46-13456-236 sign 쬪 6-46-13456-256 sign 쬫 6-46-13456-356 sign 쬬 6-46-346 sign 쬭 6-46-346-1 sign 쬮 6-46-346-1-1 sign 쬯 6-46-346-1-3 sign 쬰 6-46-346-25 sign 쬱 6-46-346-25-13 sign 쬲 6-46-346-25-356 sign 쬳 6-46-346-35 sign 쬴 6-46-346-2 sign 쬵 6-46-346-2-1 sign 쬶 6-46-346-2-26 sign 쬷 6-46-346-2-12 sign 쬸 6-46-346-2-3 sign 쬹 6-46-346-2-236 sign 쬺 6-46-346-2-256 sign 쬻 6-46-346-2-356 sign 쬼 6-46-346-26 sign 쬽 6-46-346-12 sign 쬾 6-46-346-12-3 sign 쬿 6-46-346-3 sign ì­€ 6-46-346-34 sign ì­ 6-46-346-2356 sign ì­‚ 6-46-346-13 sign ì­ƒ 6-46-346-23 sign ì­„ 6-46-346-235 sign ì­… 6-46-346-236 sign ì­† 6-46-346-256 sign ì­‡ 6-46-346-356 sign ì­ˆ 6-46-134 sign ì­‰ 6-46-134-1 sign ì­Š 6-46-134-1-1 sign ì­‹ 6-46-134-1-3 sign ì­Œ 6-46-134-25 sign ì­ 6-46-134-25-13 sign ì­Ž 6-46-134-25-356 sign ì­ 6-46-134-35 sign ì­ 6-46-134-2 sign ì­‘ 6-46-134-2-1 sign ì­’ 6-46-134-2-26 sign ì­“ 6-46-134-2-12 sign ì­” 6-46-134-2-3 sign ì­• 6-46-134-2-236 sign ì­– 6-46-134-2-256 sign ì­— 6-46-134-2-356 sign ì­˜ 6-46-134-26 sign ì­™ 6-46-134-12 sign ì­š 6-46-134-12-3 sign ì­› 6-46-134-3 sign ì­œ 6-46-134-34 sign ì­ 6-46-134-2356 sign ì­ž 6-46-134-13 sign ì­Ÿ 6-46-134-23 sign ì­  6-46-134-235 sign ì­¡ 6-46-134-236 sign ì­¢ 6-46-134-256 sign ì­£ 6-46-134-356 sign ì­¤ 6-46-1234 sign ì­¥ 6-46-1234-1 sign ì­¦ 6-46-1234-1-1 sign ì­§ 6-46-1234-1-3 sign ì­¨ 6-46-1234-25 sign ì­© 6-46-1234-25-13 sign ì­ª 6-46-1234-25-356 sign ì­« 6-46-1234-35 sign ì­¬ 6-46-1234-2 sign ì­­ 6-46-1234-2-1 sign ì­® 6-46-1234-2-26 sign ì­¯ 6-46-1234-2-12 sign ì­° 6-46-1234-2-3 sign ì­± 6-46-1234-2-236 sign ì­² 6-46-1234-2-256 sign ì­³ 6-46-1234-2-356 sign ì­´ 6-46-1234-26 sign ì­µ 6-46-1234-12 sign ì­¶ 6-46-1234-12-3 sign ì­· 6-46-1234-3 sign ì­¸ 6-46-1234-34 sign ì­¹ 6-46-1234-2356 sign ì­º 6-46-1234-13 sign ì­» 6-46-1234-23 sign ì­¼ 6-46-1234-235 sign ì­½ 6-46-1234-236 sign ì­¾ 6-46-1234-256 sign ì­¿ 6-46-1234-356 sign 쮀 6-46-1234-1235 sign ì® 6-46-1234-1235-1 sign 쮂 6-46-1234-1235-1-1 sign 쮃 6-46-1234-1235-1-3 sign 쮄 6-46-1234-1235-25 sign ì®… 6-46-1234-1235-25-13 sign 쮆 6-46-1234-1235-25-356 sign 쮇 6-46-1234-1235-35 sign 쮈 6-46-1234-1235-2 sign 쮉 6-46-1234-1235-2-1 sign 쮊 6-46-1234-1235-2-26 sign 쮋 6-46-1234-1235-2-12 sign 쮌 6-46-1234-1235-2-3 sign ì® 6-46-1234-1235-2-236 sign 쮎 6-46-1234-1235-2-256 sign ì® 6-46-1234-1235-2-356 sign ì® 6-46-1234-1235-26 sign 쮑 6-46-1234-1235-12 sign ì®’ 6-46-1234-1235-12-3 sign 쮓 6-46-1234-1235-3 sign ì®” 6-46-1234-1235-34 sign 쮕 6-46-1234-1235-2356 sign ì®– 6-46-1234-1235-13 sign ì®— 6-46-1234-1235-23 sign 쮘 6-46-1234-1235-235 sign ì®™ 6-46-1234-1235-236 sign 쮚 6-46-1234-1235-256 sign ì®› 6-46-1234-1235-356 sign 쮜 6-46-134-1235 sign ì® 6-46-134-1235-1 sign 쮞 6-46-134-1235-1-1 sign 쮟 6-46-134-1235-1-3 sign ì®  6-46-134-1235-25 sign 쮡 6-46-134-1235-25-13 sign 쮢 6-46-134-1235-25-356 sign 쮣 6-46-134-1235-35 sign 쮤 6-46-134-1235-2 sign 쮥 6-46-134-1235-2-1 sign 쮦 6-46-134-1235-2-26 sign ì®§ 6-46-134-1235-2-12 sign 쮨 6-46-134-1235-2-3 sign 쮩 6-46-134-1235-2-236 sign 쮪 6-46-134-1235-2-256 sign 쮫 6-46-134-1235-2-356 sign 쮬 6-46-134-1235-26 sign ì®­ 6-46-134-1235-12 sign ì®® 6-46-134-1235-12-3 sign 쮯 6-46-134-1235-3 sign ì®° 6-46-134-1235-34 sign ì®± 6-46-134-1235-2356 sign 쮲 6-46-134-1235-13 sign 쮳 6-46-134-1235-23 sign ì®´ 6-46-134-1235-235 sign 쮵 6-46-134-1235-236 sign ì®¶ 6-46-134-1235-256 sign ì®· 6-46-134-1235-356 sign 쮸 6-46-146 sign 쮹 6-46-146-1 sign 쮺 6-46-146-1-1 sign ì®» 6-46-146-1-3 sign 쮼 6-46-146-25 sign 쮽 6-46-146-25-13 sign 쮾 6-46-146-25-356 sign 쮿 6-46-146-35 sign 쯀 6-46-146-2 sign ì¯ 6-46-146-2-1 sign 쯂 6-46-146-2-26 sign 쯃 6-46-146-2-12 sign 쯄 6-46-146-2-3 sign 쯅 6-46-146-2-236 sign 쯆 6-46-146-2-256 sign 쯇 6-46-146-2-356 sign 쯈 6-46-146-26 sign 쯉 6-46-146-12 sign 쯊 6-46-146-12-3 sign 쯋 6-46-146-3 sign 쯌 6-46-146-34 sign ì¯ 6-46-146-2356 sign 쯎 6-46-146-13 sign ì¯ 6-46-146-23 sign ì¯ 6-46-146-235 sign 쯑 6-46-146-236 sign 쯒 6-46-146-256 sign 쯓 6-46-146-356 sign 쯔 6-46-246 sign 쯕 6-46-246-1 sign 쯖 6-46-246-1-1 sign 쯗 6-46-246-1-3 sign 쯘 6-46-246-25 sign 쯙 6-46-246-25-13 sign 쯚 6-46-246-25-356 sign 쯛 6-46-246-35 sign 쯜 6-46-246-2 sign ì¯ 6-46-246-2-1 sign 쯞 6-46-246-2-26 sign 쯟 6-46-246-2-12 sign 쯠 6-46-246-2-3 sign 쯡 6-46-246-2-236 sign 쯢 6-46-246-2-256 sign 쯣 6-46-246-2-356 sign 쯤 6-46-246-26 sign 쯥 6-46-246-12 sign 쯦 6-46-246-12-3 sign 쯧 6-46-246-3 sign 쯨 6-46-246-34 sign 쯩 6-46-246-2356 sign 쯪 6-46-246-13 sign 쯫 6-46-246-23 sign 쯬 6-46-246-235 sign 쯭 6-46-246-236 sign 쯮 6-46-246-256 sign 쯯 6-46-246-356 sign 쯰 6-46-2456 sign 쯱 6-46-2456-1 sign 쯲 6-46-2456-1-1 sign 쯳 6-46-2456-1-3 sign 쯴 6-46-2456-25 sign 쯵 6-46-2456-25-13 sign 쯶 6-46-2456-25-356 sign 쯷 6-46-2456-35 sign 쯸 6-46-2456-2 sign 쯹 6-46-2456-2-1 sign 쯺 6-46-2456-2-26 sign 쯻 6-46-2456-2-12 sign 쯼 6-46-2456-2-3 sign 쯽 6-46-2456-2-236 sign 쯾 6-46-2456-2-256 sign 쯿 6-46-2456-2-356 sign ì°€ 6-46-2456-26 sign ì° 6-46-2456-12 sign ì°‚ 6-46-2456-12-3 sign ì°ƒ 6-46-2456-3 sign ì°„ 6-46-2456-34 sign ì°… 6-46-2456-2356 sign ì°† 6-46-2456-13 sign ì°‡ 6-46-2456-23 sign ì°ˆ 6-46-2456-235 sign ì°‰ 6-46-2456-236 sign ì°Š 6-46-2456-256 sign ì°‹ 6-46-2456-356 sign ì°Œ 6-46-135 sign ì° 6-46-135-1 sign ì°Ž 6-46-135-1-1 sign ì° 6-46-135-1-3 sign ì° 6-46-135-25 sign ì°‘ 6-46-135-25-13 sign ì°’ 6-46-135-25-356 sign ì°“ 6-46-135-35 sign ì°” 6-46-135-2 sign ì°• 6-46-135-2-1 sign ì°– 6-46-135-2-26 sign ì°— 6-46-135-2-12 sign ì°˜ 6-46-135-2-3 sign ì°™ 6-46-135-2-236 sign ì°š 6-46-135-2-256 sign ì°› 6-46-135-2-356 sign ì°œ 6-46-135-26 sign ì° 6-46-135-12 sign ì°ž 6-46-135-12-3 sign ì°Ÿ 6-46-135-3 sign ì°  6-46-135-34 sign ì°¡ 6-46-135-2356 sign ì°¢ 6-46-135-13 sign ì°£ 6-46-135-23 sign ì°¤ 6-46-135-235 sign ì°¥ 6-46-135-236 sign ì°¦ 6-46-135-256 sign ì°§ 6-46-135-356 sign ì°¨ 56-126 sign ì°© 56-126-1 sign ì°ª 56-126-1-1 sign ì°« 56-126-1-3 sign ì°¬ 56-126-25 sign ì°­ 56-126-25-13 sign ì°® 56-126-25-356 sign ì°¯ 56-126-35 sign ì°° 56-126-2 sign ì°± 56-126-2-1 sign ì°² 56-126-2-26 sign ì°³ 56-126-2-12 sign ì°´ 56-126-2-3 sign ì°µ 56-126-2-236 sign ì°¶ 56-126-2-256 sign ì°· 56-126-2-356 sign ì°¸ 56-126-26 sign ì°¹ 56-126-12 sign ì°º 56-126-12-3 sign ì°» 56-126-3 sign ì°¼ 56-126-34 sign ì°½ 56-126-2356 sign ì°¾ 56-126-13 sign ì°¿ 56-126-23 sign ì±€ 56-126-235 sign ì± 56-126-236 sign 챂 56-126-256 sign 챃 56-126-356 sign 채 56-1235 sign ì±… 56-1235-1 sign 챆 56-1235-1-1 sign 챇 56-1235-1-3 sign 챈 56-1235-25 sign 챉 56-1235-25-13 sign 챊 56-1235-25-356 sign 챋 56-1235-35 sign 챌 56-1235-2 sign ì± 56-1235-2-1 sign 챎 56-1235-2-26 sign ì± 56-1235-2-12 sign ì± 56-1235-2-3 sign 챑 56-1235-2-236 sign ì±’ 56-1235-2-256 sign 챓 56-1235-2-356 sign ì±” 56-1235-26 sign 챕 56-1235-12 sign ì±– 56-1235-12-3 sign ì±— 56-1235-3 sign 챘 56-1235-34 sign ì±™ 56-1235-2356 sign 챚 56-1235-13 sign ì±› 56-1235-23 sign 챜 56-1235-235 sign ì± 56-1235-236 sign 챞 56-1235-256 sign 챟 56-1235-356 sign ì±  56-345 sign 챡 56-345-1 sign ì±¢ 56-345-1-1 sign ì±£ 56-345-1-3 sign 챤 56-345-25 sign ì±¥ 56-345-25-13 sign 챦 56-345-25-356 sign ì±§ 56-345-35 sign 챨 56-345-2 sign 챩 56-345-2-1 sign 챪 56-345-2-26 sign 챫 56-345-2-12 sign 챬 56-345-2-3 sign ì±­ 56-345-2-236 sign ì±® 56-345-2-256 sign 챯 56-345-2-356 sign ì±° 56-345-26 sign ì±± 56-345-12 sign ì±² 56-345-12-3 sign ì±³ 56-345-3 sign ì±´ 56-345-34 sign ì±µ 56-345-2356 sign ì±¶ 56-345-13 sign ì±· 56-345-23 sign 챸 56-345-235 sign ì±¹ 56-345-236 sign 챺 56-345-256 sign ì±» 56-345-356 sign ì±¼ 56-345-1235 sign ì±½ 56-345-1235-1 sign ì±¾ 56-345-1235-1-1 sign 챿 56-345-1235-1-3 sign ì²€ 56-345-1235-25 sign ì² 56-345-1235-25-13 sign 첂 56-345-1235-25-356 sign 첃 56-345-1235-35 sign 첄 56-345-1235-2 sign ì²… 56-345-1235-2-1 sign 첆 56-345-1235-2-26 sign 첇 56-345-1235-2-12 sign 첈 56-345-1235-2-3 sign 첉 56-345-1235-2-236 sign 첊 56-345-1235-2-256 sign 첋 56-345-1235-2-356 sign 첌 56-345-1235-26 sign ì² 56-345-1235-12 sign 첎 56-345-1235-12-3 sign ì² 56-345-1235-3 sign ì² 56-345-1235-34 sign 첑 56-345-1235-2356 sign ì²’ 56-345-1235-13 sign 첓 56-345-1235-23 sign ì²” 56-345-1235-235 sign 첕 56-345-1235-236 sign ì²– 56-345-1235-256 sign ì²— 56-345-1235-356 sign 처 56-234 sign ì²™ 56-234-1 sign 첚 56-234-1-1 sign ì²› 56-234-1-3 sign 천 56-234-25 sign ì² 56-234-25-13 sign 첞 56-234-25-356 sign 첟 56-234-35 sign ì²  56-234-2 sign 첡 56-234-2-1 sign ì²¢ 56-234-2-26 sign ì²£ 56-234-2-12 sign 첤 56-234-2-3 sign ì²¥ 56-234-2-236 sign 첦 56-234-2-256 sign ì²§ 56-234-2-356 sign 첨 56-234-26 sign 첩 56-234-12 sign 첪 56-234-12-3 sign 첫 56-234-3 sign 첬 56-234-34 sign ì²­ 56-234-2356 sign ì²® 56-234-13 sign 첯 56-234-23 sign ì²° 56-234-235 sign ì²± 56-234-236 sign ì²² 56-234-256 sign ì²³ 56-234-356 sign ì²´ 56-1345 sign ì²µ 56-1345-1 sign ì²¶ 56-1345-1-1 sign ì²· 56-1345-1-3 sign 첸 56-1345-25 sign ì²¹ 56-1345-25-13 sign 첺 56-1345-25-356 sign ì²» 56-1345-35 sign ì²¼ 56-1345-2 sign ì²½ 56-1345-2-1 sign ì²¾ 56-1345-2-26 sign 첿 56-1345-2-12 sign ì³€ 56-1345-2-3 sign ì³ 56-1345-2-236 sign 쳂 56-1345-2-256 sign 쳃 56-1345-2-356 sign 쳄 56-1345-26 sign ì³… 56-1345-12 sign 쳆 56-1345-12-3 sign 쳇 56-1345-3 sign 쳈 56-1345-34 sign 쳉 56-1345-2356 sign 쳊 56-1345-13 sign 쳋 56-1345-23 sign 쳌 56-1345-235 sign ì³ 56-1345-236 sign 쳎 56-1345-256 sign ì³ 56-1345-356 sign ì³ 56-156 sign 쳑 56-156-1 sign ì³’ 56-156-1-1 sign 쳓 56-156-1-3 sign ì³” 56-156-25 sign 쳕 56-156-25-13 sign ì³– 56-156-25-356 sign ì³— 56-156-35 sign 쳘 56-156-2 sign ì³™ 56-156-2-1 sign 쳚 56-156-2-26 sign ì³› 56-156-2-12 sign 쳜 56-156-2-3 sign ì³ 56-156-2-236 sign 쳞 56-156-2-256 sign 쳟 56-156-2-356 sign ì³  56-156-26 sign 쳡 56-156-12 sign ì³¢ 56-156-12-3 sign ì³£ 56-156-3 sign 쳤 56-156-34 sign ì³¥ 56-156-2356 sign 쳦 56-156-13 sign ì³§ 56-156-23 sign 쳨 56-156-235 sign 쳩 56-156-236 sign 쳪 56-156-256 sign 쳫 56-156-356 sign 쳬 56-34 sign ì³­ 56-34-1 sign ì³® 56-34-1-1 sign 쳯 56-34-1-3 sign ì³° 56-34-25 sign ì³± 56-34-25-13 sign ì³² 56-34-25-356 sign ì³³ 56-34-35 sign ì³´ 56-34-2 sign ì³µ 56-34-2-1 sign ì³¶ 56-34-2-26 sign ì³· 56-34-2-12 sign 쳸 56-34-2-3 sign ì³¹ 56-34-2-236 sign 쳺 56-34-2-256 sign ì³» 56-34-2-356 sign ì³¼ 56-34-26 sign ì³½ 56-34-12 sign ì³¾ 56-34-12-3 sign 쳿 56-34-3 sign ì´€ 56-34-34 sign ì´ 56-34-2356 sign ì´‚ 56-34-13 sign ì´ƒ 56-34-23 sign ì´„ 56-34-235 sign ì´… 56-34-236 sign ì´† 56-34-256 sign ì´‡ 56-34-356 sign ì´ˆ 56-136 sign ì´‰ 56-136-1 sign ì´Š 56-136-1-1 sign ì´‹ 56-136-1-3 sign ì´Œ 56-136-25 sign ì´ 56-136-25-13 sign ì´Ž 56-136-25-356 sign ì´ 56-136-35 sign ì´ 56-136-2 sign ì´‘ 56-136-2-1 sign ì´’ 56-136-2-26 sign ì´“ 56-136-2-12 sign ì´” 56-136-2-3 sign ì´• 56-136-2-236 sign ì´– 56-136-2-256 sign ì´— 56-136-2-356 sign ì´˜ 56-136-26 sign ì´™ 56-136-12 sign ì´š 56-136-12-3 sign ì´› 56-136-3 sign ì´œ 56-136-34 sign ì´ 56-136-2356 sign ì´ž 56-136-13 sign ì´Ÿ 56-136-23 sign ì´  56-136-235 sign ì´¡ 56-136-236 sign ì´¢ 56-136-256 sign ì´£ 56-136-356 sign ì´¤ 56-1236 sign ì´¥ 56-1236-1 sign ì´¦ 56-1236-1-1 sign ì´§ 56-1236-1-3 sign ì´¨ 56-1236-25 sign ì´© 56-1236-25-13 sign ì´ª 56-1236-25-356 sign ì´« 56-1236-35 sign ì´¬ 56-1236-2 sign ì´­ 56-1236-2-1 sign ì´® 56-1236-2-26 sign ì´¯ 56-1236-2-12 sign ì´° 56-1236-2-3 sign ì´± 56-1236-2-236 sign ì´² 56-1236-2-256 sign ì´³ 56-1236-2-356 sign ì´´ 56-1236-26 sign ì´µ 56-1236-12 sign ì´¶ 56-1236-12-3 sign ì´· 56-1236-3 sign ì´¸ 56-1236-34 sign ì´¹ 56-1236-2356 sign ì´º 56-1236-13 sign ì´» 56-1236-23 sign ì´¼ 56-1236-235 sign ì´½ 56-1236-236 sign ì´¾ 56-1236-256 sign ì´¿ 56-1236-356 sign ìµ€ 56-1236-1235 sign ìµ 56-1236-1235-1 sign 쵂 56-1236-1235-1-1 sign 쵃 56-1236-1235-1-3 sign 쵄 56-1236-1235-25 sign ìµ… 56-1236-1235-25-13 sign 쵆 56-1236-1235-25-356 sign 쵇 56-1236-1235-35 sign 쵈 56-1236-1235-2 sign 쵉 56-1236-1235-2-1 sign 쵊 56-1236-1235-2-26 sign 쵋 56-1236-1235-2-12 sign 쵌 56-1236-1235-2-3 sign ìµ 56-1236-1235-2-236 sign 쵎 56-1236-1235-2-256 sign ìµ 56-1236-1235-2-356 sign ìµ 56-1236-1235-26 sign 쵑 56-1236-1235-12 sign ìµ’ 56-1236-1235-12-3 sign 쵓 56-1236-1235-3 sign ìµ” 56-1236-1235-34 sign 쵕 56-1236-1235-2356 sign ìµ– 56-1236-1235-13 sign ìµ— 56-1236-1235-23 sign 쵘 56-1236-1235-235 sign ìµ™ 56-1236-1235-236 sign 쵚 56-1236-1235-256 sign ìµ› 56-1236-1235-356 sign 최 56-13456 sign ìµ 56-13456-1 sign 쵞 56-13456-1-1 sign 쵟 56-13456-1-3 sign ìµ  56-13456-25 sign 쵡 56-13456-25-13 sign ìµ¢ 56-13456-25-356 sign ìµ£ 56-13456-35 sign 쵤 56-13456-2 sign ìµ¥ 56-13456-2-1 sign 쵦 56-13456-2-26 sign ìµ§ 56-13456-2-12 sign 쵨 56-13456-2-3 sign 쵩 56-13456-2-236 sign 쵪 56-13456-2-256 sign 쵫 56-13456-2-356 sign 쵬 56-13456-26 sign ìµ­ 56-13456-12 sign ìµ® 56-13456-12-3 sign 쵯 56-13456-3 sign ìµ° 56-13456-34 sign ìµ± 56-13456-2356 sign ìµ² 56-13456-13 sign ìµ³ 56-13456-23 sign ìµ´ 56-13456-235 sign ìµµ 56-13456-236 sign ìµ¶ 56-13456-256 sign ìµ· 56-13456-356 sign 쵸 56-346 sign ìµ¹ 56-346-1 sign 쵺 56-346-1-1 sign ìµ» 56-346-1-3 sign ìµ¼ 56-346-25 sign ìµ½ 56-346-25-13 sign ìµ¾ 56-346-25-356 sign 쵿 56-346-35 sign ì¶€ 56-346-2 sign ì¶ 56-346-2-1 sign ì¶‚ 56-346-2-26 sign 춃 56-346-2-12 sign ì¶„ 56-346-2-3 sign ì¶… 56-346-2-236 sign 춆 56-346-2-256 sign 춇 56-346-2-356 sign 춈 56-346-26 sign 춉 56-346-12 sign ì¶Š 56-346-12-3 sign ì¶‹ 56-346-3 sign ì¶Œ 56-346-34 sign ì¶ 56-346-2356 sign ì¶Ž 56-346-13 sign ì¶ 56-346-23 sign ì¶ 56-346-235 sign ì¶‘ 56-346-236 sign ì¶’ 56-346-256 sign ì¶“ 56-346-356 sign ì¶” 56-134 sign ì¶• 56-134-1 sign ì¶– 56-134-1-1 sign ì¶— 56-134-1-3 sign 춘 56-134-25 sign ì¶™ 56-134-25-13 sign ì¶š 56-134-25-356 sign ì¶› 56-134-35 sign ì¶œ 56-134-2 sign ì¶ 56-134-2-1 sign ì¶ž 56-134-2-26 sign ì¶Ÿ 56-134-2-12 sign ì¶  56-134-2-3 sign ì¶¡ 56-134-2-236 sign ì¶¢ 56-134-2-256 sign ì¶£ 56-134-2-356 sign 춤 56-134-26 sign ì¶¥ 56-134-12 sign 춦 56-134-12-3 sign ì¶§ 56-134-3 sign 춨 56-134-34 sign ì¶© 56-134-2356 sign 춪 56-134-13 sign ì¶« 56-134-23 sign 춬 56-134-235 sign ì¶­ 56-134-236 sign ì¶® 56-134-256 sign 춯 56-134-356 sign ì¶° 56-1234 sign ì¶± 56-1234-1 sign ì¶² 56-1234-1-1 sign ì¶³ 56-1234-1-3 sign ì¶´ 56-1234-25 sign ì¶µ 56-1234-25-13 sign ì¶¶ 56-1234-25-356 sign ì¶· 56-1234-35 sign 춸 56-1234-2 sign ì¶¹ 56-1234-2-1 sign 춺 56-1234-2-26 sign ì¶» 56-1234-2-12 sign ì¶¼ 56-1234-2-3 sign ì¶½ 56-1234-2-236 sign ì¶¾ 56-1234-2-256 sign ì¶¿ 56-1234-2-356 sign ì·€ 56-1234-26 sign ì· 56-1234-12 sign ì·‚ 56-1234-12-3 sign ì·ƒ 56-1234-3 sign ì·„ 56-1234-34 sign ì·… 56-1234-2356 sign ì·† 56-1234-13 sign ì·‡ 56-1234-23 sign ì·ˆ 56-1234-235 sign ì·‰ 56-1234-236 sign ì·Š 56-1234-256 sign ì·‹ 56-1234-356 sign ì·Œ 56-1234-1235 sign ì· 56-1234-1235-1 sign ì·Ž 56-1234-1235-1-1 sign ì· 56-1234-1235-1-3 sign ì· 56-1234-1235-25 sign ì·‘ 56-1234-1235-25-13 sign ì·’ 56-1234-1235-25-356 sign ì·“ 56-1234-1235-35 sign ì·” 56-1234-1235-2 sign ì·• 56-1234-1235-2-1 sign ì·– 56-1234-1235-2-26 sign ì·— 56-1234-1235-2-12 sign ì·˜ 56-1234-1235-2-3 sign ì·™ 56-1234-1235-2-236 sign ì·š 56-1234-1235-2-256 sign ì·› 56-1234-1235-2-356 sign ì·œ 56-1234-1235-26 sign ì· 56-1234-1235-12 sign ì·ž 56-1234-1235-12-3 sign ì·Ÿ 56-1234-1235-3 sign ì·  56-1234-1235-34 sign ì·¡ 56-1234-1235-2356 sign ì·¢ 56-1234-1235-13 sign ì·£ 56-1234-1235-23 sign ì·¤ 56-1234-1235-235 sign ì·¥ 56-1234-1235-236 sign ì·¦ 56-1234-1235-256 sign ì·§ 56-1234-1235-356 sign ì·¨ 56-134-1235 sign ì·© 56-134-1235-1 sign ì·ª 56-134-1235-1-1 sign ì·« 56-134-1235-1-3 sign ì·¬ 56-134-1235-25 sign ì·­ 56-134-1235-25-13 sign ì·® 56-134-1235-25-356 sign ì·¯ 56-134-1235-35 sign ì·° 56-134-1235-2 sign ì·± 56-134-1235-2-1 sign ì·² 56-134-1235-2-26 sign ì·³ 56-134-1235-2-12 sign ì·´ 56-134-1235-2-3 sign ì·µ 56-134-1235-2-236 sign ì·¶ 56-134-1235-2-256 sign ì·· 56-134-1235-2-356 sign ì·¸ 56-134-1235-26 sign ì·¹ 56-134-1235-12 sign ì·º 56-134-1235-12-3 sign ì·» 56-134-1235-3 sign ì·¼ 56-134-1235-34 sign ì·½ 56-134-1235-2356 sign ì·¾ 56-134-1235-13 sign ì·¿ 56-134-1235-23 sign 츀 56-134-1235-235 sign ì¸ 56-134-1235-236 sign 츂 56-134-1235-256 sign 츃 56-134-1235-356 sign 츄 56-146 sign 츅 56-146-1 sign 츆 56-146-1-1 sign 츇 56-146-1-3 sign 츈 56-146-25 sign 츉 56-146-25-13 sign 츊 56-146-25-356 sign 츋 56-146-35 sign 츌 56-146-2 sign ì¸ 56-146-2-1 sign 츎 56-146-2-26 sign ì¸ 56-146-2-12 sign ì¸ 56-146-2-3 sign 츑 56-146-2-236 sign 츒 56-146-2-256 sign 츓 56-146-2-356 sign 츔 56-146-26 sign 츕 56-146-12 sign 츖 56-146-12-3 sign 츗 56-146-3 sign 츘 56-146-34 sign 츙 56-146-2356 sign 츚 56-146-13 sign 츛 56-146-23 sign 츜 56-146-235 sign ì¸ 56-146-236 sign 츞 56-146-256 sign 츟 56-146-356 sign 츠 56-246 sign 측 56-246-1 sign 츢 56-246-1-1 sign 츣 56-246-1-3 sign 츤 56-246-25 sign 츥 56-246-25-13 sign 츦 56-246-25-356 sign 츧 56-246-35 sign 츨 56-246-2 sign 츩 56-246-2-1 sign 츪 56-246-2-26 sign 츫 56-246-2-12 sign 츬 56-246-2-3 sign 츭 56-246-2-236 sign 츮 56-246-2-256 sign 츯 56-246-2-356 sign 츰 56-246-26 sign 츱 56-246-12 sign 츲 56-246-12-3 sign 츳 56-246-3 sign 츴 56-246-34 sign 층 56-246-2356 sign 츶 56-246-13 sign 츷 56-246-23 sign 츸 56-246-235 sign 츹 56-246-236 sign 츺 56-246-256 sign 츻 56-246-356 sign 츼 56-2456 sign 츽 56-2456-1 sign 츾 56-2456-1-1 sign 츿 56-2456-1-3 sign ì¹€ 56-2456-25 sign ì¹ 56-2456-25-13 sign 칂 56-2456-25-356 sign 칃 56-2456-35 sign 칄 56-2456-2 sign ì¹… 56-2456-2-1 sign 칆 56-2456-2-26 sign 칇 56-2456-2-12 sign 칈 56-2456-2-3 sign 칉 56-2456-2-236 sign 칊 56-2456-2-256 sign 칋 56-2456-2-356 sign 칌 56-2456-26 sign ì¹ 56-2456-12 sign 칎 56-2456-12-3 sign ì¹ 56-2456-3 sign ì¹ 56-2456-34 sign 칑 56-2456-2356 sign ì¹’ 56-2456-13 sign 칓 56-2456-23 sign ì¹” 56-2456-235 sign 칕 56-2456-236 sign ì¹– 56-2456-256 sign ì¹— 56-2456-356 sign 치 56-135 sign ì¹™ 56-135-1 sign 칚 56-135-1-1 sign ì¹› 56-135-1-3 sign 친 56-135-25 sign ì¹ 56-135-25-13 sign 칞 56-135-25-356 sign 칟 56-135-35 sign ì¹  56-135-2 sign 칡 56-135-2-1 sign ì¹¢ 56-135-2-26 sign ì¹£ 56-135-2-12 sign 칤 56-135-2-3 sign ì¹¥ 56-135-2-236 sign 칦 56-135-2-256 sign ì¹§ 56-135-2-356 sign 침 56-135-26 sign 칩 56-135-12 sign 칪 56-135-12-3 sign 칫 56-135-3 sign 칬 56-135-34 sign ì¹­ 56-135-2356 sign ì¹® 56-135-13 sign 칯 56-135-23 sign ì¹° 56-135-235 sign ì¹± 56-135-236 sign ì¹² 56-135-256 sign ì¹³ 56-135-356 sign ì¹´ 124-126 sign ì¹µ 124-126-1 sign ì¹¶ 124-126-1-1 sign ì¹· 124-126-1-3 sign 칸 124-126-25 sign ì¹¹ 124-126-25-13 sign 칺 124-126-25-356 sign ì¹» 124-126-35 sign ì¹¼ 124-126-2 sign ì¹½ 124-126-2-1 sign ì¹¾ 124-126-2-26 sign 칿 124-126-2-12 sign 캀 124-126-2-3 sign ìº 124-126-2-236 sign 캂 124-126-2-256 sign 캃 124-126-2-356 sign 캄 124-126-26 sign 캅 124-126-12 sign 캆 124-126-12-3 sign 캇 124-126-3 sign 캈 124-126-34 sign 캉 124-126-2356 sign 캊 124-126-13 sign 캋 124-126-23 sign 캌 124-126-235 sign ìº 124-126-236 sign 캎 124-126-256 sign ìº 124-126-356 sign ìº 124-1235 sign 캑 124-1235-1 sign 캒 124-1235-1-1 sign 캓 124-1235-1-3 sign 캔 124-1235-25 sign 캕 124-1235-25-13 sign 캖 124-1235-25-356 sign 캗 124-1235-35 sign 캘 124-1235-2 sign 캙 124-1235-2-1 sign 캚 124-1235-2-26 sign 캛 124-1235-2-12 sign 캜 124-1235-2-3 sign ìº 124-1235-2-236 sign 캞 124-1235-2-256 sign 캟 124-1235-2-356 sign 캠 124-1235-26 sign 캡 124-1235-12 sign 캢 124-1235-12-3 sign 캣 124-1235-3 sign 캤 124-1235-34 sign 캥 124-1235-2356 sign 캦 124-1235-13 sign 캧 124-1235-23 sign 캨 124-1235-235 sign 캩 124-1235-236 sign 캪 124-1235-256 sign 캫 124-1235-356 sign 캬 124-345 sign 캭 124-345-1 sign 캮 124-345-1-1 sign 캯 124-345-1-3 sign 캰 124-345-25 sign 캱 124-345-25-13 sign 캲 124-345-25-356 sign 캳 124-345-35 sign 캴 124-345-2 sign 캵 124-345-2-1 sign 캶 124-345-2-26 sign 캷 124-345-2-12 sign 캸 124-345-2-3 sign 캹 124-345-2-236 sign 캺 124-345-2-256 sign 캻 124-345-2-356 sign 캼 124-345-26 sign 캽 124-345-12 sign 캾 124-345-12-3 sign 캿 124-345-3 sign 컀 124-345-34 sign ì» 124-345-2356 sign 컂 124-345-13 sign 컃 124-345-23 sign 컄 124-345-235 sign ì»… 124-345-236 sign 컆 124-345-256 sign 컇 124-345-356 sign 컈 124-345-1235 sign 컉 124-345-1235-1 sign 컊 124-345-1235-1-1 sign 컋 124-345-1235-1-3 sign 컌 124-345-1235-25 sign ì» 124-345-1235-25-13 sign 컎 124-345-1235-25-356 sign ì» 124-345-1235-35 sign ì» 124-345-1235-2 sign 컑 124-345-1235-2-1 sign ì»’ 124-345-1235-2-26 sign 컓 124-345-1235-2-12 sign ì»” 124-345-1235-2-3 sign 컕 124-345-1235-2-236 sign ì»– 124-345-1235-2-256 sign ì»— 124-345-1235-2-356 sign 컘 124-345-1235-26 sign ì»™ 124-345-1235-12 sign 컚 124-345-1235-12-3 sign ì»› 124-345-1235-3 sign 컜 124-345-1235-34 sign ì» 124-345-1235-2356 sign 컞 124-345-1235-13 sign 컟 124-345-1235-23 sign ì»  124-345-1235-235 sign 컡 124-345-1235-236 sign 컢 124-345-1235-256 sign 컣 124-345-1235-356 sign 커 124-234 sign 컥 124-234-1 sign 컦 124-234-1-1 sign ì»§ 124-234-1-3 sign 컨 124-234-25 sign 컩 124-234-25-13 sign 컪 124-234-25-356 sign 컫 124-234-35 sign 컬 124-234-2 sign ì»­ 124-234-2-1 sign ì»® 124-234-2-26 sign 컯 124-234-2-12 sign ì»° 124-234-2-3 sign ì»± 124-234-2-236 sign 컲 124-234-2-256 sign 컳 124-234-2-356 sign ì»´ 124-234-26 sign 컵 124-234-12 sign ì»¶ 124-234-12-3 sign ì»· 124-234-3 sign 컸 124-234-34 sign 컹 124-234-2356 sign 컺 124-234-13 sign ì»» 124-234-23 sign 컼 124-234-235 sign 컽 124-234-236 sign 컾 124-234-256 sign 컿 124-234-356 sign ì¼€ 124-1345 sign ì¼ 124-1345-1 sign 켂 124-1345-1-1 sign 켃 124-1345-1-3 sign 켄 124-1345-25 sign ì¼… 124-1345-25-13 sign 켆 124-1345-25-356 sign 켇 124-1345-35 sign 켈 124-1345-2 sign 켉 124-1345-2-1 sign 켊 124-1345-2-26 sign 켋 124-1345-2-12 sign 켌 124-1345-2-3 sign ì¼ 124-1345-2-236 sign 켎 124-1345-2-256 sign ì¼ 124-1345-2-356 sign ì¼ 124-1345-26 sign 켑 124-1345-12 sign ì¼’ 124-1345-12-3 sign 켓 124-1345-3 sign ì¼” 124-1345-34 sign 켕 124-1345-2356 sign ì¼– 124-1345-13 sign ì¼— 124-1345-23 sign 켘 124-1345-235 sign ì¼™ 124-1345-236 sign 켚 124-1345-256 sign ì¼› 124-1345-356 sign 켜 124-156 sign ì¼ 124-156-1 sign 켞 124-156-1-1 sign 켟 124-156-1-3 sign ì¼  124-156-25 sign 켡 124-156-25-13 sign ì¼¢ 124-156-25-356 sign ì¼£ 124-156-35 sign 켤 124-156-2 sign ì¼¥ 124-156-2-1 sign 켦 124-156-2-26 sign ì¼§ 124-156-2-12 sign 켨 124-156-2-3 sign 켩 124-156-2-236 sign 켪 124-156-2-256 sign 켫 124-156-2-356 sign 켬 124-156-26 sign ì¼­ 124-156-12 sign ì¼® 124-156-12-3 sign 켯 124-156-3 sign ì¼° 124-156-34 sign ì¼± 124-156-2356 sign ì¼² 124-156-13 sign ì¼³ 124-156-23 sign ì¼´ 124-156-235 sign ì¼µ 124-156-236 sign ì¼¶ 124-156-256 sign ì¼· 124-156-356 sign 켸 124-34 sign ì¼¹ 124-34-1 sign 켺 124-34-1-1 sign ì¼» 124-34-1-3 sign ì¼¼ 124-34-25 sign ì¼½ 124-34-25-13 sign ì¼¾ 124-34-25-356 sign 켿 124-34-35 sign ì½€ 124-34-2 sign ì½ 124-34-2-1 sign 콂 124-34-2-26 sign 콃 124-34-2-12 sign 콄 124-34-2-3 sign ì½… 124-34-2-236 sign 콆 124-34-2-256 sign 콇 124-34-2-356 sign 콈 124-34-26 sign 콉 124-34-12 sign 콊 124-34-12-3 sign 콋 124-34-3 sign 콌 124-34-34 sign ì½ 124-34-2356 sign 콎 124-34-13 sign ì½ 124-34-23 sign ì½ 124-34-235 sign 콑 124-34-236 sign ì½’ 124-34-256 sign 콓 124-34-356 sign ì½” 124-136 sign 콕 124-136-1 sign ì½– 124-136-1-1 sign ì½— 124-136-1-3 sign 콘 124-136-25 sign ì½™ 124-136-25-13 sign 콚 124-136-25-356 sign ì½› 124-136-35 sign 콜 124-136-2 sign ì½ 124-136-2-1 sign 콞 124-136-2-26 sign 콟 124-136-2-12 sign ì½  124-136-2-3 sign 콡 124-136-2-236 sign ì½¢ 124-136-2-256 sign ì½£ 124-136-2-356 sign 콤 124-136-26 sign ì½¥ 124-136-12 sign 콦 124-136-12-3 sign ì½§ 124-136-3 sign 콨 124-136-34 sign 콩 124-136-2356 sign 콪 124-136-13 sign 콫 124-136-23 sign 콬 124-136-235 sign ì½­ 124-136-236 sign ì½® 124-136-256 sign 콯 124-136-356 sign ì½° 124-1236 sign ì½± 124-1236-1 sign ì½² 124-1236-1-1 sign ì½³ 124-1236-1-3 sign ì½´ 124-1236-25 sign ì½µ 124-1236-25-13 sign ì½¶ 124-1236-25-356 sign ì½· 124-1236-35 sign 콸 124-1236-2 sign ì½¹ 124-1236-2-1 sign 콺 124-1236-2-26 sign ì½» 124-1236-2-12 sign ì½¼ 124-1236-2-3 sign ì½½ 124-1236-2-236 sign ì½¾ 124-1236-2-256 sign 콿 124-1236-2-356 sign ì¾€ 124-1236-26 sign ì¾ 124-1236-12 sign 쾂 124-1236-12-3 sign 쾃 124-1236-3 sign 쾄 124-1236-34 sign ì¾… 124-1236-2356 sign 쾆 124-1236-13 sign 쾇 124-1236-23 sign 쾈 124-1236-235 sign 쾉 124-1236-236 sign 쾊 124-1236-256 sign 쾋 124-1236-356 sign 쾌 124-1236-1235 sign ì¾ 124-1236-1235-1 sign 쾎 124-1236-1235-1-1 sign ì¾ 124-1236-1235-1-3 sign ì¾ 124-1236-1235-25 sign 쾑 124-1236-1235-25-13 sign ì¾’ 124-1236-1235-25-356 sign 쾓 124-1236-1235-35 sign ì¾” 124-1236-1235-2 sign 쾕 124-1236-1235-2-1 sign ì¾– 124-1236-1235-2-26 sign ì¾— 124-1236-1235-2-12 sign 쾘 124-1236-1235-2-3 sign ì¾™ 124-1236-1235-2-236 sign 쾚 124-1236-1235-2-256 sign ì¾› 124-1236-1235-2-356 sign 쾜 124-1236-1235-26 sign ì¾ 124-1236-1235-12 sign 쾞 124-1236-1235-12-3 sign 쾟 124-1236-1235-3 sign ì¾  124-1236-1235-34 sign 쾡 124-1236-1235-2356 sign ì¾¢ 124-1236-1235-13 sign ì¾£ 124-1236-1235-23 sign 쾤 124-1236-1235-235 sign ì¾¥ 124-1236-1235-236 sign 쾦 124-1236-1235-256 sign ì¾§ 124-1236-1235-356 sign 쾨 124-13456 sign 쾩 124-13456-1 sign 쾪 124-13456-1-1 sign 쾫 124-13456-1-3 sign 쾬 124-13456-25 sign ì¾­ 124-13456-25-13 sign ì¾® 124-13456-25-356 sign 쾯 124-13456-35 sign ì¾° 124-13456-2 sign ì¾± 124-13456-2-1 sign ì¾² 124-13456-2-26 sign ì¾³ 124-13456-2-12 sign ì¾´ 124-13456-2-3 sign ì¾µ 124-13456-2-236 sign ì¾¶ 124-13456-2-256 sign ì¾· 124-13456-2-356 sign 쾸 124-13456-26 sign ì¾¹ 124-13456-12 sign 쾺 124-13456-12-3 sign ì¾» 124-13456-3 sign ì¾¼ 124-13456-34 sign ì¾½ 124-13456-2356 sign ì¾¾ 124-13456-13 sign 쾿 124-13456-23 sign ì¿€ 124-13456-235 sign ì¿ 124-13456-236 sign ì¿‚ 124-13456-256 sign 쿃 124-13456-356 sign ì¿„ 124-346 sign ì¿… 124-346-1 sign 쿆 124-346-1-1 sign 쿇 124-346-1-3 sign 쿈 124-346-25 sign 쿉 124-346-25-13 sign 쿊 124-346-25-356 sign ì¿‹ 124-346-35 sign 쿌 124-346-2 sign ì¿ 124-346-2-1 sign 쿎 124-346-2-26 sign ì¿ 124-346-2-12 sign ì¿ 124-346-2-3 sign ì¿‘ 124-346-2-236 sign ì¿’ 124-346-2-256 sign ì¿“ 124-346-2-356 sign ì¿” 124-346-26 sign ì¿• 124-346-12 sign ì¿– 124-346-12-3 sign ì¿— 124-346-3 sign 쿘 124-346-34 sign ì¿™ 124-346-2356 sign 쿚 124-346-13 sign ì¿› 124-346-23 sign 쿜 124-346-235 sign ì¿ 124-346-236 sign 쿞 124-346-256 sign 쿟 124-346-356 sign ì¿  124-134 sign ì¿¡ 124-134-1 sign ì¿¢ 124-134-1-1 sign ì¿£ 124-134-1-3 sign 쿤 124-134-25 sign ì¿¥ 124-134-25-13 sign 쿦 124-134-25-356 sign ì¿§ 124-134-35 sign 쿨 124-134-2 sign ì¿© 124-134-2-1 sign 쿪 124-134-2-26 sign ì¿« 124-134-2-12 sign 쿬 124-134-2-3 sign ì¿­ 124-134-2-236 sign ì¿® 124-134-2-256 sign 쿯 124-134-2-356 sign ì¿° 124-134-26 sign 쿱 124-134-12 sign 쿲 124-134-12-3 sign 쿳 124-134-3 sign ì¿´ 124-134-34 sign 쿵 124-134-2356 sign ì¿¶ 124-134-13 sign ì¿· 124-134-23 sign 쿸 124-134-235 sign 쿹 124-134-236 sign 쿺 124-134-256 sign ì¿» 124-134-356 sign 쿼 124-1234 sign 쿽 124-1234-1 sign 쿾 124-1234-1-1 sign ì¿¿ 124-1234-1-3 sign 퀀 124-1234-25 sign í€ 124-1234-25-13 sign 퀂 124-1234-25-356 sign 퀃 124-1234-35 sign 퀄 124-1234-2 sign 퀅 124-1234-2-1 sign 퀆 124-1234-2-26 sign 퀇 124-1234-2-12 sign 퀈 124-1234-2-3 sign 퀉 124-1234-2-236 sign 퀊 124-1234-2-256 sign 퀋 124-1234-2-356 sign 퀌 124-1234-26 sign í€ 124-1234-12 sign 퀎 124-1234-12-3 sign í€ 124-1234-3 sign í€ 124-1234-34 sign 퀑 124-1234-2356 sign 퀒 124-1234-13 sign 퀓 124-1234-23 sign 퀔 124-1234-235 sign 퀕 124-1234-236 sign 퀖 124-1234-256 sign 퀗 124-1234-356 sign 퀘 124-1234-1235 sign 퀙 124-1234-1235-1 sign 퀚 124-1234-1235-1-1 sign 퀛 124-1234-1235-1-3 sign 퀜 124-1234-1235-25 sign í€ 124-1234-1235-25-13 sign 퀞 124-1234-1235-25-356 sign 퀟 124-1234-1235-35 sign 퀠 124-1234-1235-2 sign 퀡 124-1234-1235-2-1 sign 퀢 124-1234-1235-2-26 sign 퀣 124-1234-1235-2-12 sign 퀤 124-1234-1235-2-3 sign 퀥 124-1234-1235-2-236 sign 퀦 124-1234-1235-2-256 sign 퀧 124-1234-1235-2-356 sign 퀨 124-1234-1235-26 sign 퀩 124-1234-1235-12 sign 퀪 124-1234-1235-12-3 sign 퀫 124-1234-1235-3 sign 퀬 124-1234-1235-34 sign 퀭 124-1234-1235-2356 sign 퀮 124-1234-1235-13 sign 퀯 124-1234-1235-23 sign 퀰 124-1234-1235-235 sign 퀱 124-1234-1235-236 sign 퀲 124-1234-1235-256 sign 퀳 124-1234-1235-356 sign 퀴 124-134-1235 sign 퀵 124-134-1235-1 sign 퀶 124-134-1235-1-1 sign 퀷 124-134-1235-1-3 sign 퀸 124-134-1235-25 sign 퀹 124-134-1235-25-13 sign 퀺 124-134-1235-25-356 sign 퀻 124-134-1235-35 sign 퀼 124-134-1235-2 sign 퀽 124-134-1235-2-1 sign 퀾 124-134-1235-2-26 sign 퀿 124-134-1235-2-12 sign í€ 124-134-1235-2-3 sign í 124-134-1235-2-236 sign í‚ 124-134-1235-2-256 sign íƒ 124-134-1235-2-356 sign í„ 124-134-1235-26 sign í… 124-134-1235-12 sign í† 124-134-1235-12-3 sign í‡ 124-134-1235-3 sign íˆ 124-134-1235-34 sign í‰ 124-134-1235-2356 sign íŠ 124-134-1235-13 sign í‹ 124-134-1235-23 sign íŒ 124-134-1235-235 sign í 124-134-1235-236 sign íŽ 124-134-1235-256 sign í 124-134-1235-356 sign í 124-146 sign í‘ 124-146-1 sign í’ 124-146-1-1 sign í“ 124-146-1-3 sign í” 124-146-25 sign í• 124-146-25-13 sign í– 124-146-25-356 sign í— 124-146-35 sign í˜ 124-146-2 sign í™ 124-146-2-1 sign íš 124-146-2-26 sign í› 124-146-2-12 sign íœ 124-146-2-3 sign í 124-146-2-236 sign íž 124-146-2-256 sign íŸ 124-146-2-356 sign í  124-146-26 sign í¡ 124-146-12 sign í¢ 124-146-12-3 sign í£ 124-146-3 sign í¤ 124-146-34 sign í¥ 124-146-2356 sign í¦ 124-146-13 sign í§ 124-146-23 sign í¨ 124-146-235 sign í© 124-146-236 sign íª 124-146-256 sign í« 124-146-356 sign í¬ 124-246 sign í­ 124-246-1 sign í® 124-246-1-1 sign í¯ 124-246-1-3 sign í° 124-246-25 sign í± 124-246-25-13 sign í² 124-246-25-356 sign í³ 124-246-35 sign í´ 124-246-2 sign íµ 124-246-2-1 sign í¶ 124-246-2-26 sign í· 124-246-2-12 sign í¸ 124-246-2-3 sign í¹ 124-246-2-236 sign íº 124-246-2-256 sign í» 124-246-2-356 sign í¼ 124-246-26 sign í½ 124-246-12 sign í¾ 124-246-12-3 sign í¿ 124-246-3 sign í‚€ 124-246-34 sign í‚ 124-246-2356 sign í‚‚ 124-246-13 sign 킃 124-246-23 sign í‚„ 124-246-235 sign í‚… 124-246-236 sign 킆 124-246-256 sign 킇 124-246-356 sign 킈 124-2456 sign 킉 124-2456-1 sign 킊 124-2456-1-1 sign í‚‹ 124-2456-1-3 sign 킌 124-2456-25 sign í‚ 124-2456-25-13 sign 킎 124-2456-25-356 sign í‚ 124-2456-35 sign í‚ 124-2456-2 sign í‚‘ 124-2456-2-1 sign í‚’ 124-2456-2-26 sign í‚“ 124-2456-2-12 sign í‚” 124-2456-2-3 sign í‚• 124-2456-2-236 sign í‚– 124-2456-2-256 sign í‚— 124-2456-2-356 sign 킘 124-2456-26 sign í‚™ 124-2456-12 sign 킚 124-2456-12-3 sign í‚› 124-2456-3 sign 킜 124-2456-34 sign í‚ 124-2456-2356 sign 킞 124-2456-13 sign 킟 124-2456-23 sign í‚  124-2456-235 sign í‚¡ 124-2456-236 sign í‚¢ 124-2456-256 sign í‚£ 124-2456-356 sign 키 124-135 sign í‚¥ 124-135-1 sign 킦 124-135-1-1 sign í‚§ 124-135-1-3 sign 킨 124-135-25 sign í‚© 124-135-25-13 sign 킪 124-135-25-356 sign í‚« 124-135-35 sign 킬 124-135-2 sign í‚­ 124-135-2-1 sign í‚® 124-135-2-26 sign 킯 124-135-2-12 sign í‚° 124-135-2-3 sign 킱 124-135-2-236 sign 킲 124-135-2-256 sign 킳 124-135-2-356 sign í‚´ 124-135-26 sign 킵 124-135-12 sign í‚¶ 124-135-12-3 sign í‚· 124-135-3 sign 킸 124-135-34 sign 킹 124-135-2356 sign 킺 124-135-13 sign í‚» 124-135-23 sign 킼 124-135-235 sign 킽 124-135-236 sign 킾 124-135-256 sign í‚¿ 124-135-356 sign 타 125-126 sign íƒ 125-126-1 sign 탂 125-126-1-1 sign 탃 125-126-1-3 sign 탄 125-126-25 sign 탅 125-126-25-13 sign 탆 125-126-25-356 sign 탇 125-126-35 sign 탈 125-126-2 sign 탉 125-126-2-1 sign 탊 125-126-2-26 sign 탋 125-126-2-12 sign 탌 125-126-2-3 sign íƒ 125-126-2-236 sign 탎 125-126-2-256 sign íƒ 125-126-2-356 sign íƒ 125-126-26 sign 탑 125-126-12 sign 탒 125-126-12-3 sign 탓 125-126-3 sign 탔 125-126-34 sign 탕 125-126-2356 sign 탖 125-126-13 sign 탗 125-126-23 sign 탘 125-126-235 sign 탙 125-126-236 sign 탚 125-126-256 sign 탛 125-126-356 sign 태 125-1235 sign íƒ 125-1235-1 sign 탞 125-1235-1-1 sign 탟 125-1235-1-3 sign 탠 125-1235-25 sign 탡 125-1235-25-13 sign 탢 125-1235-25-356 sign 탣 125-1235-35 sign 탤 125-1235-2 sign 탥 125-1235-2-1 sign 탦 125-1235-2-26 sign 탧 125-1235-2-12 sign 탨 125-1235-2-3 sign 탩 125-1235-2-236 sign 탪 125-1235-2-256 sign 탫 125-1235-2-356 sign 탬 125-1235-26 sign 탭 125-1235-12 sign 탮 125-1235-12-3 sign 탯 125-1235-3 sign 탰 125-1235-34 sign 탱 125-1235-2356 sign 탲 125-1235-13 sign 탳 125-1235-23 sign 탴 125-1235-235 sign 탵 125-1235-236 sign 탶 125-1235-256 sign 탷 125-1235-356 sign 탸 125-345 sign 탹 125-345-1 sign 탺 125-345-1-1 sign 탻 125-345-1-3 sign 탼 125-345-25 sign 탽 125-345-25-13 sign 탾 125-345-25-356 sign 탿 125-345-35 sign í„€ 125-345-2 sign í„ 125-345-2-1 sign í„‚ 125-345-2-26 sign 턃 125-345-2-12 sign í„„ 125-345-2-3 sign í„… 125-345-2-236 sign 턆 125-345-2-256 sign 턇 125-345-2-356 sign 턈 125-345-26 sign 턉 125-345-12 sign 턊 125-345-12-3 sign í„‹ 125-345-3 sign 턌 125-345-34 sign í„ 125-345-2356 sign 턎 125-345-13 sign í„ 125-345-23 sign í„ 125-345-235 sign í„‘ 125-345-236 sign í„’ 125-345-256 sign í„“ 125-345-356 sign í„” 125-345-1235 sign í„• 125-345-1235-1 sign í„– 125-345-1235-1-1 sign í„— 125-345-1235-1-3 sign 턘 125-345-1235-25 sign í„™ 125-345-1235-25-13 sign 턚 125-345-1235-25-356 sign í„› 125-345-1235-35 sign 턜 125-345-1235-2 sign í„ 125-345-1235-2-1 sign 턞 125-345-1235-2-26 sign 턟 125-345-1235-2-12 sign í„  125-345-1235-2-3 sign í„¡ 125-345-1235-2-236 sign í„¢ 125-345-1235-2-256 sign í„£ 125-345-1235-2-356 sign 턤 125-345-1235-26 sign í„¥ 125-345-1235-12 sign 턦 125-345-1235-12-3 sign í„§ 125-345-1235-3 sign 턨 125-345-1235-34 sign í„© 125-345-1235-2356 sign 턪 125-345-1235-13 sign í„« 125-345-1235-23 sign 턬 125-345-1235-235 sign í„­ 125-345-1235-236 sign í„® 125-345-1235-256 sign 턯 125-345-1235-356 sign í„° 125-234 sign 턱 125-234-1 sign 턲 125-234-1-1 sign 턳 125-234-1-3 sign í„´ 125-234-25 sign 턵 125-234-25-13 sign í„¶ 125-234-25-356 sign í„· 125-234-35 sign 털 125-234-2 sign 턹 125-234-2-1 sign 턺 125-234-2-26 sign í„» 125-234-2-12 sign 턼 125-234-2-3 sign 턽 125-234-2-236 sign 턾 125-234-2-256 sign í„¿ 125-234-2-356 sign í…€ 125-234-26 sign í… 125-234-12 sign í…‚ 125-234-12-3 sign í…ƒ 125-234-3 sign í…„ 125-234-34 sign í…… 125-234-2356 sign í…† 125-234-13 sign í…‡ 125-234-23 sign í…ˆ 125-234-235 sign í…‰ 125-234-236 sign í…Š 125-234-256 sign í…‹ 125-234-356 sign í…Œ 125-1345 sign í… 125-1345-1 sign í…Ž 125-1345-1-1 sign í… 125-1345-1-3 sign í… 125-1345-25 sign í…‘ 125-1345-25-13 sign í…’ 125-1345-25-356 sign í…“ 125-1345-35 sign í…” 125-1345-2 sign í…• 125-1345-2-1 sign í…– 125-1345-2-26 sign í…— 125-1345-2-12 sign í…˜ 125-1345-2-3 sign í…™ 125-1345-2-236 sign í…š 125-1345-2-256 sign í…› 125-1345-2-356 sign í…œ 125-1345-26 sign í… 125-1345-12 sign í…ž 125-1345-12-3 sign í…Ÿ 125-1345-3 sign í…  125-1345-34 sign í…¡ 125-1345-2356 sign í…¢ 125-1345-13 sign í…£ 125-1345-23 sign í…¤ 125-1345-235 sign í…¥ 125-1345-236 sign í…¦ 125-1345-256 sign í…§ 125-1345-356 sign í…¨ 125-156 sign í…© 125-156-1 sign í…ª 125-156-1-1 sign í…« 125-156-1-3 sign í…¬ 125-156-25 sign í…­ 125-156-25-13 sign í…® 125-156-25-356 sign í…¯ 125-156-35 sign í…° 125-156-2 sign í…± 125-156-2-1 sign í…² 125-156-2-26 sign í…³ 125-156-2-12 sign í…´ 125-156-2-3 sign í…µ 125-156-2-236 sign í…¶ 125-156-2-256 sign í…· 125-156-2-356 sign í…¸ 125-156-26 sign í…¹ 125-156-12 sign í…º 125-156-12-3 sign í…» 125-156-3 sign í…¼ 125-156-34 sign í…½ 125-156-2356 sign í…¾ 125-156-13 sign í…¿ 125-156-23 sign 톀 125-156-235 sign í† 125-156-236 sign 톂 125-156-256 sign 톃 125-156-356 sign 톄 125-34 sign 톅 125-34-1 sign 톆 125-34-1-1 sign 톇 125-34-1-3 sign 톈 125-34-25 sign 톉 125-34-25-13 sign 톊 125-34-25-356 sign 톋 125-34-35 sign 톌 125-34-2 sign í† 125-34-2-1 sign 톎 125-34-2-26 sign í† 125-34-2-12 sign í† 125-34-2-3 sign 톑 125-34-2-236 sign 톒 125-34-2-256 sign 톓 125-34-2-356 sign 톔 125-34-26 sign 톕 125-34-12 sign 톖 125-34-12-3 sign 톗 125-34-3 sign 톘 125-34-34 sign 톙 125-34-2356 sign 톚 125-34-13 sign 톛 125-34-23 sign 톜 125-34-235 sign í† 125-34-236 sign 톞 125-34-256 sign 톟 125-34-356 sign 토 125-136 sign 톡 125-136-1 sign 톢 125-136-1-1 sign 톣 125-136-1-3 sign 톤 125-136-25 sign 톥 125-136-25-13 sign 톦 125-136-25-356 sign 톧 125-136-35 sign 톨 125-136-2 sign 톩 125-136-2-1 sign 톪 125-136-2-26 sign 톫 125-136-2-12 sign 톬 125-136-2-3 sign 톭 125-136-2-236 sign 톮 125-136-2-256 sign 톯 125-136-2-356 sign 톰 125-136-26 sign 톱 125-136-12 sign 톲 125-136-12-3 sign 톳 125-136-3 sign 톴 125-136-34 sign 통 125-136-2356 sign 톶 125-136-13 sign 톷 125-136-23 sign 톸 125-136-235 sign 톹 125-136-236 sign 톺 125-136-256 sign 톻 125-136-356 sign 톼 125-1236 sign 톽 125-1236-1 sign 톾 125-1236-1-1 sign 톿 125-1236-1-3 sign 퇀 125-1236-25 sign í‡ 125-1236-25-13 sign 퇂 125-1236-25-356 sign 퇃 125-1236-35 sign 퇄 125-1236-2 sign 퇅 125-1236-2-1 sign 퇆 125-1236-2-26 sign 퇇 125-1236-2-12 sign 퇈 125-1236-2-3 sign 퇉 125-1236-2-236 sign 퇊 125-1236-2-256 sign 퇋 125-1236-2-356 sign 퇌 125-1236-26 sign í‡ 125-1236-12 sign 퇎 125-1236-12-3 sign í‡ 125-1236-3 sign í‡ 125-1236-34 sign 퇑 125-1236-2356 sign 퇒 125-1236-13 sign 퇓 125-1236-23 sign 퇔 125-1236-235 sign 퇕 125-1236-236 sign 퇖 125-1236-256 sign 퇗 125-1236-356 sign 퇘 125-1236-1235 sign 퇙 125-1236-1235-1 sign 퇚 125-1236-1235-1-1 sign 퇛 125-1236-1235-1-3 sign 퇜 125-1236-1235-25 sign í‡ 125-1236-1235-25-13 sign 퇞 125-1236-1235-25-356 sign 퇟 125-1236-1235-35 sign 퇠 125-1236-1235-2 sign 퇡 125-1236-1235-2-1 sign 퇢 125-1236-1235-2-26 sign 퇣 125-1236-1235-2-12 sign 퇤 125-1236-1235-2-3 sign 퇥 125-1236-1235-2-236 sign 퇦 125-1236-1235-2-256 sign 퇧 125-1236-1235-2-356 sign 퇨 125-1236-1235-26 sign 퇩 125-1236-1235-12 sign 퇪 125-1236-1235-12-3 sign 퇫 125-1236-1235-3 sign 퇬 125-1236-1235-34 sign 퇭 125-1236-1235-2356 sign 퇮 125-1236-1235-13 sign 퇯 125-1236-1235-23 sign 퇰 125-1236-1235-235 sign 퇱 125-1236-1235-236 sign 퇲 125-1236-1235-256 sign 퇳 125-1236-1235-356 sign 퇴 125-13456 sign 퇵 125-13456-1 sign 퇶 125-13456-1-1 sign 퇷 125-13456-1-3 sign 퇸 125-13456-25 sign 퇹 125-13456-25-13 sign 퇺 125-13456-25-356 sign 퇻 125-13456-35 sign 퇼 125-13456-2 sign 퇽 125-13456-2-1 sign 퇾 125-13456-2-26 sign 퇿 125-13456-2-12 sign 툀 125-13456-2-3 sign íˆ 125-13456-2-236 sign 툂 125-13456-2-256 sign 툃 125-13456-2-356 sign 툄 125-13456-26 sign 툅 125-13456-12 sign 툆 125-13456-12-3 sign 툇 125-13456-3 sign 툈 125-13456-34 sign 툉 125-13456-2356 sign 툊 125-13456-13 sign 툋 125-13456-23 sign 툌 125-13456-235 sign íˆ 125-13456-236 sign 툎 125-13456-256 sign íˆ 125-13456-356 sign íˆ 125-346 sign 툑 125-346-1 sign 툒 125-346-1-1 sign 툓 125-346-1-3 sign 툔 125-346-25 sign 툕 125-346-25-13 sign 툖 125-346-25-356 sign 툗 125-346-35 sign 툘 125-346-2 sign 툙 125-346-2-1 sign 툚 125-346-2-26 sign 툛 125-346-2-12 sign 툜 125-346-2-3 sign íˆ 125-346-2-236 sign 툞 125-346-2-256 sign 툟 125-346-2-356 sign 툠 125-346-26 sign 툡 125-346-12 sign 툢 125-346-12-3 sign 툣 125-346-3 sign 툤 125-346-34 sign 툥 125-346-2356 sign 툦 125-346-13 sign 툧 125-346-23 sign 툨 125-346-235 sign 툩 125-346-236 sign 툪 125-346-256 sign 툫 125-346-356 sign 투 125-134 sign 툭 125-134-1 sign 툮 125-134-1-1 sign 툯 125-134-1-3 sign 툰 125-134-25 sign 툱 125-134-25-13 sign 툲 125-134-25-356 sign 툳 125-134-35 sign 툴 125-134-2 sign 툵 125-134-2-1 sign 툶 125-134-2-26 sign 툷 125-134-2-12 sign 툸 125-134-2-3 sign 툹 125-134-2-236 sign 툺 125-134-2-256 sign 툻 125-134-2-356 sign 툼 125-134-26 sign 툽 125-134-12 sign 툾 125-134-12-3 sign 툿 125-134-3 sign 퉀 125-134-34 sign í‰ 125-134-2356 sign 퉂 125-134-13 sign 퉃 125-134-23 sign 퉄 125-134-235 sign 퉅 125-134-236 sign 퉆 125-134-256 sign 퉇 125-134-356 sign 퉈 125-1234 sign 퉉 125-1234-1 sign 퉊 125-1234-1-1 sign 퉋 125-1234-1-3 sign 퉌 125-1234-25 sign í‰ 125-1234-25-13 sign 퉎 125-1234-25-356 sign í‰ 125-1234-35 sign í‰ 125-1234-2 sign 퉑 125-1234-2-1 sign 퉒 125-1234-2-26 sign 퉓 125-1234-2-12 sign 퉔 125-1234-2-3 sign 퉕 125-1234-2-236 sign 퉖 125-1234-2-256 sign 퉗 125-1234-2-356 sign 퉘 125-1234-26 sign 퉙 125-1234-12 sign 퉚 125-1234-12-3 sign 퉛 125-1234-3 sign 퉜 125-1234-34 sign í‰ 125-1234-2356 sign 퉞 125-1234-13 sign 퉟 125-1234-23 sign 퉠 125-1234-235 sign 퉡 125-1234-236 sign 퉢 125-1234-256 sign 퉣 125-1234-356 sign 퉤 125-1234-1235 sign 퉥 125-1234-1235-1 sign 퉦 125-1234-1235-1-1 sign 퉧 125-1234-1235-1-3 sign 퉨 125-1234-1235-25 sign 퉩 125-1234-1235-25-13 sign 퉪 125-1234-1235-25-356 sign 퉫 125-1234-1235-35 sign 퉬 125-1234-1235-2 sign 퉭 125-1234-1235-2-1 sign 퉮 125-1234-1235-2-26 sign 퉯 125-1234-1235-2-12 sign 퉰 125-1234-1235-2-3 sign 퉱 125-1234-1235-2-236 sign 퉲 125-1234-1235-2-256 sign 퉳 125-1234-1235-2-356 sign 퉴 125-1234-1235-26 sign 퉵 125-1234-1235-12 sign 퉶 125-1234-1235-12-3 sign 퉷 125-1234-1235-3 sign 퉸 125-1234-1235-34 sign 퉹 125-1234-1235-2356 sign 퉺 125-1234-1235-13 sign 퉻 125-1234-1235-23 sign 퉼 125-1234-1235-235 sign 퉽 125-1234-1235-236 sign 퉾 125-1234-1235-256 sign 퉿 125-1234-1235-356 sign 튀 125-134-1235 sign íŠ 125-134-1235-1 sign 튂 125-134-1235-1-1 sign 튃 125-134-1235-1-3 sign 튄 125-134-1235-25 sign 튅 125-134-1235-25-13 sign 튆 125-134-1235-25-356 sign 튇 125-134-1235-35 sign 튈 125-134-1235-2 sign 튉 125-134-1235-2-1 sign 튊 125-134-1235-2-26 sign 튋 125-134-1235-2-12 sign 튌 125-134-1235-2-3 sign íŠ 125-134-1235-2-236 sign 튎 125-134-1235-2-256 sign íŠ 125-134-1235-2-356 sign íŠ 125-134-1235-26 sign 튑 125-134-1235-12 sign 튒 125-134-1235-12-3 sign 튓 125-134-1235-3 sign 튔 125-134-1235-34 sign 튕 125-134-1235-2356 sign 튖 125-134-1235-13 sign 튗 125-134-1235-23 sign 튘 125-134-1235-235 sign 튙 125-134-1235-236 sign 튚 125-134-1235-256 sign 튛 125-134-1235-356 sign 튜 125-146 sign íŠ 125-146-1 sign 튞 125-146-1-1 sign 튟 125-146-1-3 sign 튠 125-146-25 sign 튡 125-146-25-13 sign 튢 125-146-25-356 sign 튣 125-146-35 sign 튤 125-146-2 sign 튥 125-146-2-1 sign 튦 125-146-2-26 sign 튧 125-146-2-12 sign 튨 125-146-2-3 sign 튩 125-146-2-236 sign 튪 125-146-2-256 sign 튫 125-146-2-356 sign 튬 125-146-26 sign 튭 125-146-12 sign 튮 125-146-12-3 sign 튯 125-146-3 sign 튰 125-146-34 sign 튱 125-146-2356 sign 튲 125-146-13 sign 튳 125-146-23 sign 튴 125-146-235 sign 튵 125-146-236 sign 튶 125-146-256 sign 튷 125-146-356 sign 트 125-246 sign 특 125-246-1 sign 튺 125-246-1-1 sign 튻 125-246-1-3 sign 튼 125-246-25 sign 튽 125-246-25-13 sign 튾 125-246-25-356 sign 튿 125-246-35 sign í‹€ 125-246-2 sign í‹ 125-246-2-1 sign í‹‚ 125-246-2-26 sign 틃 125-246-2-12 sign í‹„ 125-246-2-3 sign í‹… 125-246-2-236 sign 틆 125-246-2-256 sign 틇 125-246-2-356 sign 틈 125-246-26 sign 틉 125-246-12 sign 틊 125-246-12-3 sign í‹‹ 125-246-3 sign 틌 125-246-34 sign í‹ 125-246-2356 sign 틎 125-246-13 sign í‹ 125-246-23 sign í‹ 125-246-235 sign í‹‘ 125-246-236 sign í‹’ 125-246-256 sign í‹“ 125-246-356 sign í‹” 125-2456 sign í‹• 125-2456-1 sign í‹– 125-2456-1-1 sign í‹— 125-2456-1-3 sign 틘 125-2456-25 sign í‹™ 125-2456-25-13 sign 틚 125-2456-25-356 sign í‹› 125-2456-35 sign 틜 125-2456-2 sign í‹ 125-2456-2-1 sign 틞 125-2456-2-26 sign 틟 125-2456-2-12 sign í‹  125-2456-2-3 sign í‹¡ 125-2456-2-236 sign í‹¢ 125-2456-2-256 sign í‹£ 125-2456-2-356 sign 틤 125-2456-26 sign í‹¥ 125-2456-12 sign 틦 125-2456-12-3 sign í‹§ 125-2456-3 sign 틨 125-2456-34 sign í‹© 125-2456-2356 sign 틪 125-2456-13 sign í‹« 125-2456-23 sign 틬 125-2456-235 sign í‹­ 125-2456-236 sign í‹® 125-2456-256 sign 틯 125-2456-356 sign í‹° 125-135 sign 틱 125-135-1 sign 틲 125-135-1-1 sign 틳 125-135-1-3 sign í‹´ 125-135-25 sign 틵 125-135-25-13 sign í‹¶ 125-135-25-356 sign í‹· 125-135-35 sign 틸 125-135-2 sign 틹 125-135-2-1 sign 틺 125-135-2-26 sign í‹» 125-135-2-12 sign 틼 125-135-2-3 sign 틽 125-135-2-236 sign 틾 125-135-2-256 sign í‹¿ 125-135-2-356 sign 팀 125-135-26 sign íŒ 125-135-12 sign 팂 125-135-12-3 sign 팃 125-135-3 sign 팄 125-135-34 sign 팅 125-135-2356 sign 팆 125-135-13 sign 팇 125-135-23 sign 팈 125-135-235 sign 팉 125-135-236 sign 팊 125-135-256 sign 팋 125-135-356 sign 파 145-126 sign íŒ 145-126-1 sign 팎 145-126-1-1 sign íŒ 145-126-1-3 sign íŒ 145-126-25 sign 팑 145-126-25-13 sign 팒 145-126-25-356 sign 팓 145-126-35 sign 팔 145-126-2 sign 팕 145-126-2-1 sign 팖 145-126-2-26 sign 팗 145-126-2-12 sign 팘 145-126-2-3 sign 팙 145-126-2-236 sign 팚 145-126-2-256 sign 팛 145-126-2-356 sign 팜 145-126-26 sign íŒ 145-126-12 sign 팞 145-126-12-3 sign 팟 145-126-3 sign 팠 145-126-34 sign 팡 145-126-2356 sign 팢 145-126-13 sign 팣 145-126-23 sign 팤 145-126-235 sign 팥 145-126-236 sign 팦 145-126-256 sign 팧 145-126-356 sign 패 145-1235 sign 팩 145-1235-1 sign 팪 145-1235-1-1 sign 팫 145-1235-1-3 sign 팬 145-1235-25 sign 팭 145-1235-25-13 sign 팮 145-1235-25-356 sign 팯 145-1235-35 sign 팰 145-1235-2 sign 팱 145-1235-2-1 sign 팲 145-1235-2-26 sign 팳 145-1235-2-12 sign 팴 145-1235-2-3 sign 팵 145-1235-2-236 sign 팶 145-1235-2-256 sign 팷 145-1235-2-356 sign 팸 145-1235-26 sign 팹 145-1235-12 sign 팺 145-1235-12-3 sign 팻 145-1235-3 sign 팼 145-1235-34 sign 팽 145-1235-2356 sign 팾 145-1235-13 sign 팿 145-1235-23 sign í€ 145-1235-235 sign í 145-1235-236 sign í‚ 145-1235-256 sign íƒ 145-1235-356 sign í„ 145-345 sign í… 145-345-1 sign í† 145-345-1-1 sign í‡ 145-345-1-3 sign íˆ 145-345-25 sign í‰ 145-345-25-13 sign íŠ 145-345-25-356 sign í‹ 145-345-35 sign íŒ 145-345-2 sign í 145-345-2-1 sign íŽ 145-345-2-26 sign í 145-345-2-12 sign í 145-345-2-3 sign í‘ 145-345-2-236 sign í’ 145-345-2-256 sign í“ 145-345-2-356 sign í” 145-345-26 sign í• 145-345-12 sign í– 145-345-12-3 sign í— 145-345-3 sign í˜ 145-345-34 sign í™ 145-345-2356 sign íš 145-345-13 sign í› 145-345-23 sign íœ 145-345-235 sign í 145-345-236 sign íž 145-345-256 sign íŸ 145-345-356 sign í  145-345-1235 sign í¡ 145-345-1235-1 sign í¢ 145-345-1235-1-1 sign í£ 145-345-1235-1-3 sign í¤ 145-345-1235-25 sign í¥ 145-345-1235-25-13 sign í¦ 145-345-1235-25-356 sign í§ 145-345-1235-35 sign í¨ 145-345-1235-2 sign í© 145-345-1235-2-1 sign íª 145-345-1235-2-26 sign í« 145-345-1235-2-12 sign í¬ 145-345-1235-2-3 sign í­ 145-345-1235-2-236 sign í® 145-345-1235-2-256 sign í¯ 145-345-1235-2-356 sign í° 145-345-1235-26 sign í± 145-345-1235-12 sign í² 145-345-1235-12-3 sign í³ 145-345-1235-3 sign í´ 145-345-1235-34 sign íµ 145-345-1235-2356 sign í¶ 145-345-1235-13 sign í· 145-345-1235-23 sign í¸ 145-345-1235-235 sign í¹ 145-345-1235-236 sign íº 145-345-1235-256 sign í» 145-345-1235-356 sign í¼ 145-234 sign í½ 145-234-1 sign í¾ 145-234-1-1 sign í¿ 145-234-1-3 sign 펀 145-234-25 sign íŽ 145-234-25-13 sign 펂 145-234-25-356 sign 펃 145-234-35 sign 펄 145-234-2 sign 펅 145-234-2-1 sign 펆 145-234-2-26 sign 펇 145-234-2-12 sign 펈 145-234-2-3 sign 펉 145-234-2-236 sign 펊 145-234-2-256 sign 펋 145-234-2-356 sign 펌 145-234-26 sign íŽ 145-234-12 sign 펎 145-234-12-3 sign íŽ 145-234-3 sign íŽ 145-234-34 sign 펑 145-234-2356 sign 펒 145-234-13 sign 펓 145-234-23 sign 펔 145-234-235 sign 펕 145-234-236 sign 펖 145-234-256 sign 펗 145-234-356 sign 페 145-1345 sign 펙 145-1345-1 sign 펚 145-1345-1-1 sign 펛 145-1345-1-3 sign 펜 145-1345-25 sign íŽ 145-1345-25-13 sign 펞 145-1345-25-356 sign 펟 145-1345-35 sign 펠 145-1345-2 sign 펡 145-1345-2-1 sign 펢 145-1345-2-26 sign 펣 145-1345-2-12 sign 펤 145-1345-2-3 sign 펥 145-1345-2-236 sign 펦 145-1345-2-256 sign 펧 145-1345-2-356 sign 펨 145-1345-26 sign 펩 145-1345-12 sign 펪 145-1345-12-3 sign 펫 145-1345-3 sign 펬 145-1345-34 sign 펭 145-1345-2356 sign 펮 145-1345-13 sign 펯 145-1345-23 sign 펰 145-1345-235 sign 펱 145-1345-236 sign 펲 145-1345-256 sign 펳 145-1345-356 sign 펴 145-156 sign 펵 145-156-1 sign 펶 145-156-1-1 sign 펷 145-156-1-3 sign 편 145-156-25 sign 펹 145-156-25-13 sign 펺 145-156-25-356 sign 펻 145-156-35 sign 펼 145-156-2 sign 펽 145-156-2-1 sign 펾 145-156-2-26 sign 펿 145-156-2-12 sign í€ 145-156-2-3 sign í 145-156-2-236 sign í‚ 145-156-2-256 sign íƒ 145-156-2-356 sign í„ 145-156-26 sign í… 145-156-12 sign í† 145-156-12-3 sign í‡ 145-156-3 sign íˆ 145-156-34 sign í‰ 145-156-2356 sign íŠ 145-156-13 sign í‹ 145-156-23 sign íŒ 145-156-235 sign í 145-156-236 sign íŽ 145-156-256 sign í 145-156-356 sign í 145-34 sign í‘ 145-34-1 sign í’ 145-34-1-1 sign í“ 145-34-1-3 sign í” 145-34-25 sign í• 145-34-25-13 sign í– 145-34-25-356 sign í— 145-34-35 sign í˜ 145-34-2 sign í™ 145-34-2-1 sign íš 145-34-2-26 sign í› 145-34-2-12 sign íœ 145-34-2-3 sign í 145-34-2-236 sign íž 145-34-2-256 sign íŸ 145-34-2-356 sign í  145-34-26 sign í¡ 145-34-12 sign í¢ 145-34-12-3 sign í£ 145-34-3 sign í¤ 145-34-34 sign í¥ 145-34-2356 sign í¦ 145-34-13 sign í§ 145-34-23 sign í¨ 145-34-235 sign í© 145-34-236 sign íª 145-34-256 sign í« 145-34-356 sign í¬ 145-136 sign í­ 145-136-1 sign í® 145-136-1-1 sign í¯ 145-136-1-3 sign í° 145-136-25 sign í± 145-136-25-13 sign í² 145-136-25-356 sign í³ 145-136-35 sign í´ 145-136-2 sign íµ 145-136-2-1 sign í¶ 145-136-2-26 sign í· 145-136-2-12 sign í¸ 145-136-2-3 sign í¹ 145-136-2-236 sign íº 145-136-2-256 sign í» 145-136-2-356 sign í¼ 145-136-26 sign í½ 145-136-12 sign í¾ 145-136-12-3 sign í¿ 145-136-3 sign í€ 145-136-34 sign í 145-136-2356 sign í‚ 145-136-13 sign íƒ 145-136-23 sign í„ 145-136-235 sign í… 145-136-236 sign í† 145-136-256 sign í‡ 145-136-356 sign íˆ 145-1236 sign í‰ 145-1236-1 sign íŠ 145-1236-1-1 sign í‹ 145-1236-1-3 sign íŒ 145-1236-25 sign í 145-1236-25-13 sign íŽ 145-1236-25-356 sign í 145-1236-35 sign í 145-1236-2 sign í‘ 145-1236-2-1 sign í’ 145-1236-2-26 sign í“ 145-1236-2-12 sign í” 145-1236-2-3 sign í• 145-1236-2-236 sign í– 145-1236-2-256 sign í— 145-1236-2-356 sign í˜ 145-1236-26 sign í™ 145-1236-12 sign íš 145-1236-12-3 sign í› 145-1236-3 sign íœ 145-1236-34 sign í 145-1236-2356 sign íž 145-1236-13 sign íŸ 145-1236-23 sign í  145-1236-235 sign í¡ 145-1236-236 sign í¢ 145-1236-256 sign í£ 145-1236-356 sign í¤ 145-1236-1235 sign í¥ 145-1236-1235-1 sign í¦ 145-1236-1235-1-1 sign í§ 145-1236-1235-1-3 sign í¨ 145-1236-1235-25 sign í© 145-1236-1235-25-13 sign íª 145-1236-1235-25-356 sign í« 145-1236-1235-35 sign í¬ 145-1236-1235-2 sign í­ 145-1236-1235-2-1 sign í® 145-1236-1235-2-26 sign í¯ 145-1236-1235-2-12 sign í° 145-1236-1235-2-3 sign í± 145-1236-1235-2-236 sign í² 145-1236-1235-2-256 sign í³ 145-1236-1235-2-356 sign í´ 145-1236-1235-26 sign íµ 145-1236-1235-12 sign í¶ 145-1236-1235-12-3 sign í· 145-1236-1235-3 sign í¸ 145-1236-1235-34 sign í¹ 145-1236-1235-2356 sign íº 145-1236-1235-13 sign í» 145-1236-1235-23 sign í¼ 145-1236-1235-235 sign í½ 145-1236-1235-236 sign í¾ 145-1236-1235-256 sign í¿ 145-1236-1235-356 sign í‘€ 145-13456 sign í‘ 145-13456-1 sign í‘‚ 145-13456-1-1 sign 푃 145-13456-1-3 sign í‘„ 145-13456-25 sign í‘… 145-13456-25-13 sign 푆 145-13456-25-356 sign 푇 145-13456-35 sign 푈 145-13456-2 sign 푉 145-13456-2-1 sign 푊 145-13456-2-26 sign í‘‹ 145-13456-2-12 sign 푌 145-13456-2-3 sign í‘ 145-13456-2-236 sign 푎 145-13456-2-256 sign í‘ 145-13456-2-356 sign í‘ 145-13456-26 sign í‘‘ 145-13456-12 sign í‘’ 145-13456-12-3 sign í‘“ 145-13456-3 sign í‘” 145-13456-34 sign í‘• 145-13456-2356 sign í‘– 145-13456-13 sign í‘— 145-13456-23 sign 푘 145-13456-235 sign í‘™ 145-13456-236 sign 푚 145-13456-256 sign í‘› 145-13456-356 sign 표 145-346 sign í‘ 145-346-1 sign 푞 145-346-1-1 sign 푟 145-346-1-3 sign í‘  145-346-25 sign í‘¡ 145-346-25-13 sign í‘¢ 145-346-25-356 sign í‘£ 145-346-35 sign 푤 145-346-2 sign í‘¥ 145-346-2-1 sign 푦 145-346-2-26 sign í‘§ 145-346-2-12 sign 푨 145-346-2-3 sign í‘© 145-346-2-236 sign 푪 145-346-2-256 sign í‘« 145-346-2-356 sign 푬 145-346-26 sign í‘­ 145-346-12 sign í‘® 145-346-12-3 sign 푯 145-346-3 sign í‘° 145-346-34 sign 푱 145-346-2356 sign 푲 145-346-13 sign 푳 145-346-23 sign í‘´ 145-346-235 sign 푵 145-346-236 sign í‘¶ 145-346-256 sign í‘· 145-346-356 sign 푸 145-134 sign 푹 145-134-1 sign 푺 145-134-1-1 sign í‘» 145-134-1-3 sign 푼 145-134-25 sign 푽 145-134-25-13 sign 푾 145-134-25-356 sign í‘¿ 145-134-35 sign í’€ 145-134-2 sign í’ 145-134-2-1 sign í’‚ 145-134-2-26 sign í’ƒ 145-134-2-12 sign í’„ 145-134-2-3 sign í’… 145-134-2-236 sign í’† 145-134-2-256 sign í’‡ 145-134-2-356 sign í’ˆ 145-134-26 sign í’‰ 145-134-12 sign í’Š 145-134-12-3 sign í’‹ 145-134-3 sign í’Œ 145-134-34 sign í’ 145-134-2356 sign í’Ž 145-134-13 sign í’ 145-134-23 sign í’ 145-134-235 sign í’‘ 145-134-236 sign í’’ 145-134-256 sign í’“ 145-134-356 sign í’” 145-1234 sign í’• 145-1234-1 sign í’– 145-1234-1-1 sign í’— 145-1234-1-3 sign í’˜ 145-1234-25 sign í’™ 145-1234-25-13 sign í’š 145-1234-25-356 sign í’› 145-1234-35 sign í’œ 145-1234-2 sign í’ 145-1234-2-1 sign í’ž 145-1234-2-26 sign í’Ÿ 145-1234-2-12 sign í’  145-1234-2-3 sign í’¡ 145-1234-2-236 sign í’¢ 145-1234-2-256 sign í’£ 145-1234-2-356 sign í’¤ 145-1234-26 sign í’¥ 145-1234-12 sign í’¦ 145-1234-12-3 sign í’§ 145-1234-3 sign í’¨ 145-1234-34 sign í’© 145-1234-2356 sign í’ª 145-1234-13 sign í’« 145-1234-23 sign í’¬ 145-1234-235 sign í’­ 145-1234-236 sign í’® 145-1234-256 sign í’¯ 145-1234-356 sign í’° 145-1234-1235 sign í’± 145-1234-1235-1 sign í’² 145-1234-1235-1-1 sign í’³ 145-1234-1235-1-3 sign í’´ 145-1234-1235-25 sign í’µ 145-1234-1235-25-13 sign í’¶ 145-1234-1235-25-356 sign í’· 145-1234-1235-35 sign í’¸ 145-1234-1235-2 sign í’¹ 145-1234-1235-2-1 sign í’º 145-1234-1235-2-26 sign í’» 145-1234-1235-2-12 sign í’¼ 145-1234-1235-2-3 sign í’½ 145-1234-1235-2-236 sign í’¾ 145-1234-1235-2-256 sign í’¿ 145-1234-1235-2-356 sign í“€ 145-1234-1235-26 sign í“ 145-1234-1235-12 sign í“‚ 145-1234-1235-12-3 sign 퓃 145-1234-1235-3 sign í“„ 145-1234-1235-34 sign í“… 145-1234-1235-2356 sign 퓆 145-1234-1235-13 sign 퓇 145-1234-1235-23 sign 퓈 145-1234-1235-235 sign 퓉 145-1234-1235-236 sign 퓊 145-1234-1235-256 sign í“‹ 145-1234-1235-356 sign 퓌 145-134-1235 sign í“ 145-134-1235-1 sign 퓎 145-134-1235-1-1 sign í“ 145-134-1235-1-3 sign í“ 145-134-1235-25 sign í“‘ 145-134-1235-25-13 sign í“’ 145-134-1235-25-356 sign í““ 145-134-1235-35 sign í“” 145-134-1235-2 sign í“• 145-134-1235-2-1 sign í“– 145-134-1235-2-26 sign í“— 145-134-1235-2-12 sign 퓘 145-134-1235-2-3 sign í“™ 145-134-1235-2-236 sign 퓚 145-134-1235-2-256 sign í“› 145-134-1235-2-356 sign 퓜 145-134-1235-26 sign í“ 145-134-1235-12 sign 퓞 145-134-1235-12-3 sign 퓟 145-134-1235-3 sign í“  145-134-1235-34 sign í“¡ 145-134-1235-2356 sign í“¢ 145-134-1235-13 sign í“£ 145-134-1235-23 sign 퓤 145-134-1235-235 sign í“¥ 145-134-1235-236 sign 퓦 145-134-1235-256 sign í“§ 145-134-1235-356 sign 퓨 145-146 sign í“© 145-146-1 sign 퓪 145-146-1-1 sign í“« 145-146-1-3 sign 퓬 145-146-25 sign í“­ 145-146-25-13 sign í“® 145-146-25-356 sign 퓯 145-146-35 sign í“° 145-146-2 sign 퓱 145-146-2-1 sign 퓲 145-146-2-26 sign 퓳 145-146-2-12 sign í“´ 145-146-2-3 sign 퓵 145-146-2-236 sign í“¶ 145-146-2-256 sign í“· 145-146-2-356 sign 퓸 145-146-26 sign 퓹 145-146-12 sign 퓺 145-146-12-3 sign í“» 145-146-3 sign 퓼 145-146-34 sign 퓽 145-146-2356 sign 퓾 145-146-13 sign í“¿ 145-146-23 sign 픀 145-146-235 sign í” 145-146-236 sign 픂 145-146-256 sign 픃 145-146-356 sign 프 145-246 sign í”… 145-246-1 sign 픆 145-246-1-1 sign 픇 145-246-1-3 sign 픈 145-246-25 sign 픉 145-246-25-13 sign 픊 145-246-25-356 sign 픋 145-246-35 sign 플 145-246-2 sign í” 145-246-2-1 sign 픎 145-246-2-26 sign í” 145-246-2-12 sign í” 145-246-2-3 sign 픑 145-246-2-236 sign í”’ 145-246-2-256 sign 픓 145-246-2-356 sign í”” 145-246-26 sign 픕 145-246-12 sign í”– 145-246-12-3 sign í”— 145-246-3 sign 픘 145-246-34 sign í”™ 145-246-2356 sign 픚 145-246-13 sign í”› 145-246-23 sign 픜 145-246-235 sign í” 145-246-236 sign 픞 145-246-256 sign 픟 145-246-356 sign í”  145-2456 sign 픡 145-2456-1 sign 픢 145-2456-1-1 sign 픣 145-2456-1-3 sign 픤 145-2456-25 sign 픥 145-2456-25-13 sign 픦 145-2456-25-356 sign í”§ 145-2456-35 sign 픨 145-2456-2 sign 픩 145-2456-2-1 sign 픪 145-2456-2-26 sign 픫 145-2456-2-12 sign 픬 145-2456-2-3 sign í”­ 145-2456-2-236 sign í”® 145-2456-2-256 sign 픯 145-2456-2-356 sign í”° 145-2456-26 sign í”± 145-2456-12 sign 픲 145-2456-12-3 sign 픳 145-2456-3 sign í”´ 145-2456-34 sign 픵 145-2456-2356 sign í”¶ 145-2456-13 sign í”· 145-2456-23 sign 픸 145-2456-235 sign 픹 145-2456-236 sign 픺 145-2456-256 sign í”» 145-2456-356 sign 피 145-135 sign 픽 145-135-1 sign 픾 145-135-1-1 sign 픿 145-135-1-3 sign í•€ 145-135-25 sign í• 145-135-25-13 sign í•‚ 145-135-25-356 sign 핃 145-135-35 sign í•„ 145-135-2 sign í•… 145-135-2-1 sign 핆 145-135-2-26 sign 핇 145-135-2-12 sign 핈 145-135-2-3 sign 핉 145-135-2-236 sign 핊 145-135-2-256 sign í•‹ 145-135-2-356 sign 핌 145-135-26 sign í• 145-135-12 sign 핎 145-135-12-3 sign í• 145-135-3 sign í• 145-135-34 sign í•‘ 145-135-2356 sign í•’ 145-135-13 sign í•“ 145-135-23 sign í•” 145-135-235 sign í•• 145-135-236 sign í•– 145-135-256 sign í•— 145-135-356 sign 하 245-126 sign í•™ 245-126-1 sign 핚 245-126-1-1 sign í•› 245-126-1-3 sign 한 245-126-25 sign í• 245-126-25-13 sign 핞 245-126-25-356 sign 핟 245-126-35 sign í•  245-126-2 sign í•¡ 245-126-2-1 sign í•¢ 245-126-2-26 sign í•£ 245-126-2-12 sign 핤 245-126-2-3 sign í•¥ 245-126-2-236 sign 핦 245-126-2-256 sign í•§ 245-126-2-356 sign 함 245-126-26 sign í•© 245-126-12 sign 핪 245-126-12-3 sign í•« 245-126-3 sign 핬 245-126-34 sign í•­ 245-126-2356 sign í•® 245-126-13 sign 핯 245-126-23 sign í•° 245-126-235 sign 핱 245-126-236 sign 핲 245-126-256 sign 핳 245-126-356 sign í•´ 245-1235 sign 핵 245-1235-1 sign í•¶ 245-1235-1-1 sign í•· 245-1235-1-3 sign 핸 245-1235-25 sign 핹 245-1235-25-13 sign 핺 245-1235-25-356 sign í•» 245-1235-35 sign 핼 245-1235-2 sign 핽 245-1235-2-1 sign 핾 245-1235-2-26 sign í•¿ 245-1235-2-12 sign í–€ 245-1235-2-3 sign í– 245-1235-2-236 sign í–‚ 245-1235-2-256 sign í–ƒ 245-1235-2-356 sign í–„ 245-1235-26 sign í–… 245-1235-12 sign í–† 245-1235-12-3 sign í–‡ 245-1235-3 sign í–ˆ 245-1235-34 sign í–‰ 245-1235-2356 sign í–Š 245-1235-13 sign í–‹ 245-1235-23 sign í–Œ 245-1235-235 sign í– 245-1235-236 sign í–Ž 245-1235-256 sign í– 245-1235-356 sign í– 245-345 sign í–‘ 245-345-1 sign í–’ 245-345-1-1 sign í–“ 245-345-1-3 sign í–” 245-345-25 sign í–• 245-345-25-13 sign í–– 245-345-25-356 sign í–— 245-345-35 sign í–˜ 245-345-2 sign í–™ 245-345-2-1 sign í–š 245-345-2-26 sign í–› 245-345-2-12 sign í–œ 245-345-2-3 sign í– 245-345-2-236 sign í–ž 245-345-2-256 sign í–Ÿ 245-345-2-356 sign í–  245-345-26 sign í–¡ 245-345-12 sign í–¢ 245-345-12-3 sign í–£ 245-345-3 sign í–¤ 245-345-34 sign í–¥ 245-345-2356 sign í–¦ 245-345-13 sign í–§ 245-345-23 sign í–¨ 245-345-235 sign í–© 245-345-236 sign í–ª 245-345-256 sign í–« 245-345-356 sign í–¬ 245-345-1235 sign í–­ 245-345-1235-1 sign í–® 245-345-1235-1-1 sign í–¯ 245-345-1235-1-3 sign í–° 245-345-1235-25 sign í–± 245-345-1235-25-13 sign í–² 245-345-1235-25-356 sign í–³ 245-345-1235-35 sign í–´ 245-345-1235-2 sign í–µ 245-345-1235-2-1 sign í–¶ 245-345-1235-2-26 sign í–· 245-345-1235-2-12 sign í–¸ 245-345-1235-2-3 sign í–¹ 245-345-1235-2-236 sign í–º 245-345-1235-2-256 sign í–» 245-345-1235-2-356 sign í–¼ 245-345-1235-26 sign í–½ 245-345-1235-12 sign í–¾ 245-345-1235-12-3 sign í–¿ 245-345-1235-3 sign í—€ 245-345-1235-34 sign í— 245-345-1235-2356 sign í—‚ 245-345-1235-13 sign í—ƒ 245-345-1235-23 sign í—„ 245-345-1235-235 sign í—… 245-345-1235-236 sign í—† 245-345-1235-256 sign í—‡ 245-345-1235-356 sign í—ˆ 245-234 sign í—‰ 245-234-1 sign í—Š 245-234-1-1 sign í—‹ 245-234-1-3 sign í—Œ 245-234-25 sign í— 245-234-25-13 sign í—Ž 245-234-25-356 sign í— 245-234-35 sign í— 245-234-2 sign í—‘ 245-234-2-1 sign í—’ 245-234-2-26 sign í—“ 245-234-2-12 sign í—” 245-234-2-3 sign í—• 245-234-2-236 sign í—– 245-234-2-256 sign í—— 245-234-2-356 sign í—˜ 245-234-26 sign í—™ 245-234-12 sign í—š 245-234-12-3 sign í—› 245-234-3 sign í—œ 245-234-34 sign í— 245-234-2356 sign í—ž 245-234-13 sign í—Ÿ 245-234-23 sign í—  245-234-235 sign í—¡ 245-234-236 sign í—¢ 245-234-256 sign í—£ 245-234-356 sign í—¤ 245-1345 sign í—¥ 245-1345-1 sign í—¦ 245-1345-1-1 sign í—§ 245-1345-1-3 sign í—¨ 245-1345-25 sign í—© 245-1345-25-13 sign í—ª 245-1345-25-356 sign í—« 245-1345-35 sign í—¬ 245-1345-2 sign í—­ 245-1345-2-1 sign í—® 245-1345-2-26 sign í—¯ 245-1345-2-12 sign í—° 245-1345-2-3 sign í—± 245-1345-2-236 sign í—² 245-1345-2-256 sign í—³ 245-1345-2-356 sign í—´ 245-1345-26 sign í—µ 245-1345-12 sign í—¶ 245-1345-12-3 sign í—· 245-1345-3 sign í—¸ 245-1345-34 sign í—¹ 245-1345-2356 sign í—º 245-1345-13 sign í—» 245-1345-23 sign í—¼ 245-1345-235 sign í—½ 245-1345-236 sign í—¾ 245-1345-256 sign í—¿ 245-1345-356 sign 혀 245-156 sign í˜ 245-156-1 sign 혂 245-156-1-1 sign 혃 245-156-1-3 sign 현 245-156-25 sign 혅 245-156-25-13 sign 혆 245-156-25-356 sign 혇 245-156-35 sign 혈 245-156-2 sign 혉 245-156-2-1 sign 혊 245-156-2-26 sign 혋 245-156-2-12 sign 혌 245-156-2-3 sign í˜ 245-156-2-236 sign 혎 245-156-2-256 sign í˜ 245-156-2-356 sign í˜ 245-156-26 sign 협 245-156-12 sign 혒 245-156-12-3 sign 혓 245-156-3 sign 혔 245-156-34 sign 형 245-156-2356 sign 혖 245-156-13 sign 혗 245-156-23 sign 혘 245-156-235 sign 혙 245-156-236 sign 혚 245-156-256 sign 혛 245-156-356 sign 혜 245-34 sign í˜ 245-34-1 sign 혞 245-34-1-1 sign 혟 245-34-1-3 sign 혠 245-34-25 sign 혡 245-34-25-13 sign 혢 245-34-25-356 sign 혣 245-34-35 sign 혤 245-34-2 sign 혥 245-34-2-1 sign 혦 245-34-2-26 sign 혧 245-34-2-12 sign 혨 245-34-2-3 sign 혩 245-34-2-236 sign 혪 245-34-2-256 sign 혫 245-34-2-356 sign 혬 245-34-26 sign 혭 245-34-12 sign 혮 245-34-12-3 sign 혯 245-34-3 sign 혰 245-34-34 sign 혱 245-34-2356 sign 혲 245-34-13 sign 혳 245-34-23 sign 혴 245-34-235 sign 혵 245-34-236 sign 혶 245-34-256 sign 혷 245-34-356 sign 호 245-136 sign 혹 245-136-1 sign 혺 245-136-1-1 sign 혻 245-136-1-3 sign 혼 245-136-25 sign 혽 245-136-25-13 sign 혾 245-136-25-356 sign 혿 245-136-35 sign 홀 245-136-2 sign í™ 245-136-2-1 sign 홂 245-136-2-26 sign 홃 245-136-2-12 sign 홄 245-136-2-3 sign í™… 245-136-2-236 sign 홆 245-136-2-256 sign 홇 245-136-2-356 sign 홈 245-136-26 sign 홉 245-136-12 sign 홊 245-136-12-3 sign 홋 245-136-3 sign 홌 245-136-34 sign í™ 245-136-2356 sign 홎 245-136-13 sign í™ 245-136-23 sign í™ 245-136-235 sign 홑 245-136-236 sign í™’ 245-136-256 sign 홓 245-136-356 sign í™” 245-1236 sign 확 245-1236-1 sign í™– 245-1236-1-1 sign í™— 245-1236-1-3 sign 환 245-1236-25 sign í™™ 245-1236-25-13 sign 홚 245-1236-25-356 sign í™› 245-1236-35 sign 활 245-1236-2 sign í™ 245-1236-2-1 sign 홞 245-1236-2-26 sign 홟 245-1236-2-12 sign í™  245-1236-2-3 sign 홡 245-1236-2-236 sign 홢 245-1236-2-256 sign 홣 245-1236-2-356 sign 홤 245-1236-26 sign 홥 245-1236-12 sign 홦 245-1236-12-3 sign í™§ 245-1236-3 sign 홨 245-1236-34 sign 황 245-1236-2356 sign 홪 245-1236-13 sign 홫 245-1236-23 sign 홬 245-1236-235 sign í™­ 245-1236-236 sign í™® 245-1236-256 sign 홯 245-1236-356 sign í™° 245-1236-1235 sign í™± 245-1236-1235-1 sign 홲 245-1236-1235-1-1 sign 홳 245-1236-1235-1-3 sign í™´ 245-1236-1235-25 sign 홵 245-1236-1235-25-13 sign í™¶ 245-1236-1235-25-356 sign í™· 245-1236-1235-35 sign 홸 245-1236-1235-2 sign 홹 245-1236-1235-2-1 sign 홺 245-1236-1235-2-26 sign í™» 245-1236-1235-2-12 sign 홼 245-1236-1235-2-3 sign 홽 245-1236-1235-2-236 sign 홾 245-1236-1235-2-256 sign 홿 245-1236-1235-2-356 sign 횀 245-1236-1235-26 sign íš 245-1236-1235-12 sign íš‚ 245-1236-1235-12-3 sign 횃 245-1236-1235-3 sign íš„ 245-1236-1235-34 sign íš… 245-1236-1235-2356 sign 횆 245-1236-1235-13 sign 횇 245-1236-1235-23 sign 횈 245-1236-1235-235 sign 횉 245-1236-1235-236 sign 횊 245-1236-1235-256 sign íš‹ 245-1236-1235-356 sign 회 245-13456 sign íš 245-13456-1 sign 횎 245-13456-1-1 sign íš 245-13456-1-3 sign íš 245-13456-25 sign íš‘ 245-13456-25-13 sign íš’ 245-13456-25-356 sign íš“ 245-13456-35 sign íš” 245-13456-2 sign íš• 245-13456-2-1 sign íš– 245-13456-2-26 sign íš— 245-13456-2-12 sign 횘 245-13456-2-3 sign íš™ 245-13456-2-236 sign íšš 245-13456-2-256 sign íš› 245-13456-2-356 sign íšœ 245-13456-26 sign íš 245-13456-12 sign íšž 245-13456-12-3 sign 횟 245-13456-3 sign íš  245-13456-34 sign íš¡ 245-13456-2356 sign 횢 245-13456-13 sign 횣 245-13456-23 sign 횤 245-13456-235 sign 횥 245-13456-236 sign 횦 245-13456-256 sign íš§ 245-13456-356 sign 효 245-346 sign íš© 245-346-1 sign 횪 245-346-1-1 sign íš« 245-346-1-3 sign 횬 245-346-25 sign íš­ 245-346-25-13 sign íš® 245-346-25-356 sign 횯 245-346-35 sign íš° 245-346-2 sign íš± 245-346-2-1 sign íš² 245-346-2-26 sign íš³ 245-346-2-12 sign íš´ 245-346-2-3 sign íšµ 245-346-2-236 sign íš¶ 245-346-2-256 sign íš· 245-346-2-356 sign 횸 245-346-26 sign íš¹ 245-346-12 sign 횺 245-346-12-3 sign íš» 245-346-3 sign íš¼ 245-346-34 sign íš½ 245-346-2356 sign íš¾ 245-346-13 sign íš¿ 245-346-23 sign 훀 245-346-235 sign í› 245-346-236 sign 훂 245-346-256 sign 훃 245-346-356 sign 후 245-134 sign í›… 245-134-1 sign 훆 245-134-1-1 sign 훇 245-134-1-3 sign 훈 245-134-25 sign 훉 245-134-25-13 sign 훊 245-134-25-356 sign 훋 245-134-35 sign 훌 245-134-2 sign í› 245-134-2-1 sign 훎 245-134-2-26 sign í› 245-134-2-12 sign í› 245-134-2-3 sign 훑 245-134-2-236 sign í›’ 245-134-2-256 sign 훓 245-134-2-356 sign í›” 245-134-26 sign 훕 245-134-12 sign í›– 245-134-12-3 sign í›— 245-134-3 sign 훘 245-134-34 sign í›™ 245-134-2356 sign 훚 245-134-13 sign í›› 245-134-23 sign 훜 245-134-235 sign í› 245-134-236 sign 훞 245-134-256 sign 훟 245-134-356 sign í›  245-1234 sign 훡 245-1234-1 sign 훢 245-1234-1-1 sign 훣 245-1234-1-3 sign 훤 245-1234-25 sign 훥 245-1234-25-13 sign 훦 245-1234-25-356 sign í›§ 245-1234-35 sign 훨 245-1234-2 sign 훩 245-1234-2-1 sign 훪 245-1234-2-26 sign 훫 245-1234-2-12 sign 훬 245-1234-2-3 sign í›­ 245-1234-2-236 sign í›® 245-1234-2-256 sign 훯 245-1234-2-356 sign í›° 245-1234-26 sign í›± 245-1234-12 sign 훲 245-1234-12-3 sign 훳 245-1234-3 sign í›´ 245-1234-34 sign 훵 245-1234-2356 sign í›¶ 245-1234-13 sign í›· 245-1234-23 sign 훸 245-1234-235 sign 훹 245-1234-236 sign 훺 245-1234-256 sign í›» 245-1234-356 sign 훼 245-1234-1235 sign 훽 245-1234-1235-1 sign 훾 245-1234-1235-1-1 sign 훿 245-1234-1235-1-3 sign 휀 245-1234-1235-25 sign íœ 245-1234-1235-25-13 sign 휂 245-1234-1235-25-356 sign 휃 245-1234-1235-35 sign 휄 245-1234-1235-2 sign 휅 245-1234-1235-2-1 sign 휆 245-1234-1235-2-26 sign 휇 245-1234-1235-2-12 sign 휈 245-1234-1235-2-3 sign 휉 245-1234-1235-2-236 sign 휊 245-1234-1235-2-256 sign 휋 245-1234-1235-2-356 sign 휌 245-1234-1235-26 sign íœ 245-1234-1235-12 sign 휎 245-1234-1235-12-3 sign íœ 245-1234-1235-3 sign íœ 245-1234-1235-34 sign 휑 245-1234-1235-2356 sign 휒 245-1234-1235-13 sign 휓 245-1234-1235-23 sign 휔 245-1234-1235-235 sign 휕 245-1234-1235-236 sign 휖 245-1234-1235-256 sign 휗 245-1234-1235-356 sign 휘 245-134-1235 sign 휙 245-134-1235-1 sign 휚 245-134-1235-1-1 sign 휛 245-134-1235-1-3 sign 휜 245-134-1235-25 sign íœ 245-134-1235-25-13 sign 휞 245-134-1235-25-356 sign 휟 245-134-1235-35 sign 휠 245-134-1235-2 sign 휡 245-134-1235-2-1 sign 휢 245-134-1235-2-26 sign 휣 245-134-1235-2-12 sign 휤 245-134-1235-2-3 sign 휥 245-134-1235-2-236 sign 휦 245-134-1235-2-256 sign 휧 245-134-1235-2-356 sign 휨 245-134-1235-26 sign 휩 245-134-1235-12 sign 휪 245-134-1235-12-3 sign 휫 245-134-1235-3 sign 휬 245-134-1235-34 sign 휭 245-134-1235-2356 sign 휮 245-134-1235-13 sign 휯 245-134-1235-23 sign 휰 245-134-1235-235 sign 휱 245-134-1235-236 sign 휲 245-134-1235-256 sign 휳 245-134-1235-356 sign 휴 245-146 sign 휵 245-146-1 sign 휶 245-146-1-1 sign 휷 245-146-1-3 sign 휸 245-146-25 sign 휹 245-146-25-13 sign 휺 245-146-25-356 sign 휻 245-146-35 sign 휼 245-146-2 sign 휽 245-146-2-1 sign 휾 245-146-2-26 sign 휿 245-146-2-12 sign í€ 245-146-2-3 sign í 245-146-2-236 sign í‚ 245-146-2-256 sign íƒ 245-146-2-356 sign í„ 245-146-26 sign í… 245-146-12 sign í† 245-146-12-3 sign í‡ 245-146-3 sign íˆ 245-146-34 sign í‰ 245-146-2356 sign íŠ 245-146-13 sign í‹ 245-146-23 sign íŒ 245-146-235 sign í 245-146-236 sign íŽ 245-146-256 sign í 245-146-356 sign í 245-246 sign í‘ 245-246-1 sign í’ 245-246-1-1 sign í“ 245-246-1-3 sign í” 245-246-25 sign í• 245-246-25-13 sign í– 245-246-25-356 sign í— 245-246-35 sign í˜ 245-246-2 sign í™ 245-246-2-1 sign íš 245-246-2-26 sign í› 245-246-2-12 sign íœ 245-246-2-3 sign í 245-246-2-236 sign íž 245-246-2-256 sign íŸ 245-246-2-356 sign í  245-246-26 sign í¡ 245-246-12 sign í¢ 245-246-12-3 sign í£ 245-246-3 sign í¤ 245-246-34 sign í¥ 245-246-2356 sign í¦ 245-246-13 sign í§ 245-246-23 sign í¨ 245-246-235 sign í© 245-246-236 sign íª 245-246-256 sign í« 245-246-356 sign í¬ 245-2456 sign í­ 245-2456-1 sign í® 245-2456-1-1 sign í¯ 245-2456-1-3 sign í° 245-2456-25 sign í± 245-2456-25-13 sign í² 245-2456-25-356 sign í³ 245-2456-35 sign í´ 245-2456-2 sign íµ 245-2456-2-1 sign í¶ 245-2456-2-26 sign í· 245-2456-2-12 sign í¸ 245-2456-2-3 sign í¹ 245-2456-2-236 sign íº 245-2456-2-256 sign í» 245-2456-2-356 sign í¼ 245-2456-26 sign í½ 245-2456-12 sign í¾ 245-2456-12-3 sign í¿ 245-2456-3 sign 힀 245-2456-34 sign íž 245-2456-2356 sign íž‚ 245-2456-13 sign 힃 245-2456-23 sign íž„ 245-2456-235 sign íž… 245-2456-236 sign 힆 245-2456-256 sign 힇 245-2456-356 sign 히 245-135 sign 힉 245-135-1 sign 힊 245-135-1-1 sign íž‹ 245-135-1-3 sign 힌 245-135-25 sign íž 245-135-25-13 sign 힎 245-135-25-356 sign íž 245-135-35 sign íž 245-135-2 sign íž‘ 245-135-2-1 sign íž’ 245-135-2-26 sign íž“ 245-135-2-12 sign íž” 245-135-2-3 sign íž• 245-135-2-236 sign íž– 245-135-2-256 sign íž— 245-135-2-356 sign 힘 245-135-26 sign íž™ 245-135-12 sign ížš 245-135-12-3 sign íž› 245-135-3 sign ížœ 245-135-34 sign íž 245-135-2356 sign ížž 245-135-13 sign 힟 245-135-23 sign íž  245-135-235 sign íž¡ 245-135-236 sign 힢 245-135-256 sign 힣 245-135-356 sign ï¾  0 sign ᄀ 1 sign ï¾¢ 1-1 sign ï¾£ 1-3 sign ᄂ 25 sign ï¾¥ 25-13 sign ᆭ 25-356 sign ï¾§ 35 sign ᄄ 35-35 sign ᄅ 2 sign ᆰ 2-1 sign ᆱ 2-26 sign ᆲ 2-12 sign ï¾­ 2-3 sign ï¾® 2-236 sign ᆵ 2-256 sign ï¾° 2-356 sign ï¾± 26 sign ï¾² 12 sign ï¾³ 12-12 sign ï¾´ 12-3 sign ï¾µ 3 sign ï¾¶ 3-3 sign ï¾· 2356 sign ᄌ 13 sign ï¾¹ 13-13 sign ᄎ 23 sign ï¾» 235 sign ï¾¼ 236 sign ï¾½ 256 sign ï¾¾ 356 sign ï¿‚ 126 sign ᅢ 1235 sign ï¿„ 345 sign ï¿… 345-1235 sign ᅥ 234 sign ᅦ 1345 sign ᅧ 156 sign ï¿‹ 34 sign ᅩ 136 sign ï¿ 1236 sign ᅫ 1236-1235 sign ï¿ 13456 sign ï¿’ 346 sign ï¿“ 134 sign ï¿” 1234 sign ï¿• 1234-1235 sign ï¿– 134-1235 sign ï¿— 146 sign ᅳ 246 sign ï¿› 2456 sign ᅵ 135 #Special cases: #Case 1: Vowel-vowel that may be mastaken for vowel-conscenants: #These have dots 36 inserted between vowels. always 아예 126-36-34 always ìš°ì•  134-36-1235 #Case 2: Numbers followed by Korean chars: #There are seven conscenant dot patterns which may be confused with digits. #In this case, put dot 0 (space) before Korean characters. #In ko.cti, dot patterns which does not change across grades are included. #For grade 1 dot patterns, see ko1.ctb; for grade 2, see ko2.ctb. after digit always ë‚´ 0-14-1235 after digit always 낵 0-14-1235-1 after digit always ë‚¶ 0-14-1235-1-1 after digit always ë‚· 0-14-1235-1-3 after digit always 낸 0-14-1235-25 after digit always 낹 0-14-1235-25-13 after digit always 낺 0-14-1235-25-356 after digit always ë‚» 0-14-1235-35 after digit always 낼 0-14-1235-2 after digit always 낽 0-14-1235-2-1 after digit always 낾 0-14-1235-2-26 after digit always ë‚¿ 0-14-1235-2-12 after digit always 냀 0-14-1235-2-3 after digit always ëƒ 0-14-1235-2-236 after digit always 냂 0-14-1235-2-256 after digit always 냃 0-14-1235-2-356 after digit always 냄 0-14-1235-26 after digit always 냅 0-14-1235-12 after digit always 냆 0-14-1235-12-3 after digit always 냇 0-14-1235-3 after digit always 냈 0-14-1235-34 after digit always 냉 0-14-1235-2356 after digit always 냊 0-14-1235-13 after digit always 냋 0-14-1235-23 after digit always 냌 0-14-1235-235 after digit always ëƒ 0-14-1235-236 after digit always 냎 0-14-1235-256 after digit always ëƒ 0-14-1235-356 after digit always ëƒ 0-14-345 after digit always 냑 0-14-345-1 after digit always 냒 0-14-345-1-1 after digit always 냓 0-14-345-1-3 after digit always 냔 0-14-345-25 after digit always 냕 0-14-345-25-13 after digit always 냖 0-14-345-25-356 after digit always 냗 0-14-345-35 after digit always 냘 0-14-345-2 after digit always 냙 0-14-345-2-1 after digit always 냚 0-14-345-2-26 after digit always 냛 0-14-345-2-12 after digit always 냜 0-14-345-2-3 after digit always ëƒ 0-14-345-2-236 after digit always 냞 0-14-345-2-256 after digit always 냟 0-14-345-2-356 after digit always 냠 0-14-345-26 after digit always 냡 0-14-345-12 after digit always 냢 0-14-345-12-3 after digit always 냣 0-14-345-3 after digit always 냤 0-14-345-34 after digit always 냥 0-14-345-2356 after digit always 냦 0-14-345-13 after digit always 냧 0-14-345-23 after digit always 냨 0-14-345-235 after digit always 냩 0-14-345-236 after digit always 냪 0-14-345-256 after digit always 냫 0-14-345-356 after digit always 냬 0-14-345-1235 after digit always 냭 0-14-345-1235-1 after digit always 냮 0-14-345-1235-1-1 after digit always 냯 0-14-345-1235-1-3 after digit always 냰 0-14-345-1235-25 after digit always 냱 0-14-345-1235-25-13 after digit always 냲 0-14-345-1235-25-356 after digit always 냳 0-14-345-1235-35 after digit always 냴 0-14-345-1235-2 after digit always 냵 0-14-345-1235-2-1 after digit always 냶 0-14-345-1235-2-26 after digit always 냷 0-14-345-1235-2-12 after digit always 냸 0-14-345-1235-2-3 after digit always 냹 0-14-345-1235-2-236 after digit always 냺 0-14-345-1235-2-256 after digit always 냻 0-14-345-1235-2-356 after digit always 냼 0-14-345-1235-26 after digit always 냽 0-14-345-1235-12 after digit always 냾 0-14-345-1235-12-3 after digit always 냿 0-14-345-1235-3 after digit always ë„€ 0-14-345-1235-34 after digit always ë„ 0-14-345-1235-2356 after digit always ë„‚ 0-14-345-1235-13 after digit always 넃 0-14-345-1235-23 after digit always ë„„ 0-14-345-1235-235 after digit always ë„… 0-14-345-1235-236 after digit always 넆 0-14-345-1235-256 after digit always 넇 0-14-345-1235-356 after digit always 너 0-14-234 after digit always ë„ 0-14-234-35 after digit always 넘 0-14-234-26 after digit always ë„™ 0-14-234-12 after digit always 넚 0-14-234-12-3 after digit always ë„› 0-14-234-3 after digit always 넜 0-14-234-34 after digit always ë„ 0-14-234-2356 after digit always 넞 0-14-234-13 after digit always 넟 0-14-234-23 after digit always ë„  0-14-234-235 after digit always ë„¡ 0-14-234-236 after digit always ë„¢ 0-14-234-256 after digit always ë„£ 0-14-234-356 after digit always 네 0-14-1345 after digit always ë„¥ 0-14-1345-1 after digit always 넦 0-14-1345-1-1 after digit always ë„§ 0-14-1345-1-3 after digit always 넨 0-14-1345-25 after digit always ë„© 0-14-1345-25-13 after digit always 넪 0-14-1345-25-356 after digit always ë„« 0-14-1345-35 after digit always 넬 0-14-1345-2 after digit always ë„­ 0-14-1345-2-1 after digit always ë„® 0-14-1345-2-26 after digit always 넯 0-14-1345-2-12 after digit always ë„° 0-14-1345-2-3 after digit always 넱 0-14-1345-2-236 after digit always 넲 0-14-1345-2-256 after digit always 넳 0-14-1345-2-356 after digit always ë„´ 0-14-1345-26 after digit always 넵 0-14-1345-12 after digit always ë„¶ 0-14-1345-12-3 after digit always ë„· 0-14-1345-3 after digit always 넸 0-14-1345-34 after digit always 넹 0-14-1345-2356 after digit always 넺 0-14-1345-13 after digit always ë„» 0-14-1345-23 after digit always 넼 0-14-1345-235 after digit always 넽 0-14-1345-236 after digit always 넾 0-14-1345-256 after digit always ë„¿ 0-14-1345-356 after digit always ë…€ 0-14-156 after digit always ë… 0-14-156-1 after digit always ë…‚ 0-14-156-1-1 after digit always ë…ƒ 0-14-156-1-3 after digit always ë…‡ 0-14-156-35 after digit always ë… 0-14-156-26 after digit always ë…‘ 0-14-156-12 after digit always ë…’ 0-14-156-12-3 after digit always ë…“ 0-14-156-3 after digit always ë…” 0-14-156-34 after digit always ë…– 0-14-156-13 after digit always ë…— 0-14-156-23 after digit always ë…˜ 0-14-156-235 after digit always ë…™ 0-14-156-236 after digit always ë…š 0-14-156-256 after digit always ë…› 0-14-156-356 after digit always ë…œ 0-14-34 after digit always ë… 0-14-34-1 after digit always ë…ž 0-14-34-1-1 after digit always ë…Ÿ 0-14-34-1-3 after digit always ë…  0-14-34-25 after digit always ë…¡ 0-14-34-25-13 after digit always ë…¢ 0-14-34-25-356 after digit always ë…£ 0-14-34-35 after digit always ë…¤ 0-14-34-2 after digit always ë…¥ 0-14-34-2-1 after digit always ë…¦ 0-14-34-2-26 after digit always ë…§ 0-14-34-2-12 after digit always ë…¨ 0-14-34-2-3 after digit always ë…© 0-14-34-2-236 after digit always ë…ª 0-14-34-2-256 after digit always ë…« 0-14-34-2-356 after digit always ë…¬ 0-14-34-26 after digit always ë…­ 0-14-34-12 after digit always ë…® 0-14-34-12-3 after digit always ë…¯ 0-14-34-3 after digit always ë…° 0-14-34-34 after digit always ë…± 0-14-34-2356 after digit always ë…² 0-14-34-13 after digit always ë…³ 0-14-34-23 after digit always ë…´ 0-14-34-235 after digit always ë…µ 0-14-34-236 after digit always ë…¶ 0-14-34-256 after digit always ë…· 0-14-34-356 after digit always ë…¸ 0-14-136 after digit always ë…¿ 0-14-136-35 after digit always 놀 0-14-136-2 after digit always ë† 0-14-136-2-1 after digit always 놂 0-14-136-2-26 after digit always 놃 0-14-136-2-12 after digit always 놄 0-14-136-2-3 after digit always 놅 0-14-136-2-236 after digit always 놆 0-14-136-2-256 after digit always 놇 0-14-136-2-356 after digit always 놈 0-14-136-26 after digit always 놉 0-14-136-12 after digit always 놊 0-14-136-12-3 after digit always 놋 0-14-136-3 after digit always 놌 0-14-136-34 after digit always 놎 0-14-136-13 after digit always ë† 0-14-136-23 after digit always ë† 0-14-136-235 after digit always 놑 0-14-136-236 after digit always 높 0-14-136-256 after digit always 놓 0-14-136-356 after digit always 놔 0-14-1236 after digit always 놕 0-14-1236-1 after digit always 놖 0-14-1236-1-1 after digit always 놗 0-14-1236-1-3 after digit always 놘 0-14-1236-25 after digit always 놙 0-14-1236-25-13 after digit always 놚 0-14-1236-25-356 after digit always 놛 0-14-1236-35 after digit always 놜 0-14-1236-2 after digit always ë† 0-14-1236-2-1 after digit always 놞 0-14-1236-2-26 after digit always 놟 0-14-1236-2-12 after digit always 놠 0-14-1236-2-3 after digit always 놡 0-14-1236-2-236 after digit always 놢 0-14-1236-2-256 after digit always 놣 0-14-1236-2-356 after digit always 놤 0-14-1236-26 after digit always 놥 0-14-1236-12 after digit always 놦 0-14-1236-12-3 after digit always 놧 0-14-1236-3 after digit always 놨 0-14-1236-34 after digit always 놩 0-14-1236-2356 after digit always 놪 0-14-1236-13 after digit always 놫 0-14-1236-23 after digit always 놬 0-14-1236-235 after digit always 놭 0-14-1236-236 after digit always 놮 0-14-1236-256 after digit always 놯 0-14-1236-356 after digit always 놰 0-14-1236-1235 after digit always 놱 0-14-1236-1235-1 after digit always 놲 0-14-1236-1235-1-1 after digit always 놳 0-14-1236-1235-1-3 after digit always 놴 0-14-1236-1235-25 after digit always 놵 0-14-1236-1235-25-13 after digit always 놶 0-14-1236-1235-25-356 after digit always 놷 0-14-1236-1235-35 after digit always 놸 0-14-1236-1235-2 after digit always 놹 0-14-1236-1235-2-1 after digit always 놺 0-14-1236-1235-2-26 after digit always 놻 0-14-1236-1235-2-12 after digit always 놼 0-14-1236-1235-2-3 after digit always 놽 0-14-1236-1235-2-236 after digit always 놾 0-14-1236-1235-2-256 after digit always 놿 0-14-1236-1235-2-356 after digit always 뇀 0-14-1236-1235-26 after digit always ë‡ 0-14-1236-1235-12 after digit always 뇂 0-14-1236-1235-12-3 after digit always 뇃 0-14-1236-1235-3 after digit always 뇄 0-14-1236-1235-34 after digit always 뇅 0-14-1236-1235-2356 after digit always 뇆 0-14-1236-1235-13 after digit always 뇇 0-14-1236-1235-23 after digit always 뇈 0-14-1236-1235-235 after digit always 뇉 0-14-1236-1235-236 after digit always 뇊 0-14-1236-1235-256 after digit always 뇋 0-14-1236-1235-356 after digit always 뇌 0-14-13456 after digit always ë‡ 0-14-13456-1 after digit always 뇎 0-14-13456-1-1 after digit always ë‡ 0-14-13456-1-3 after digit always ë‡ 0-14-13456-25 after digit always 뇑 0-14-13456-25-13 after digit always 뇒 0-14-13456-25-356 after digit always 뇓 0-14-13456-35 after digit always 뇔 0-14-13456-2 after digit always 뇕 0-14-13456-2-1 after digit always 뇖 0-14-13456-2-26 after digit always 뇗 0-14-13456-2-12 after digit always 뇘 0-14-13456-2-3 after digit always 뇙 0-14-13456-2-236 after digit always 뇚 0-14-13456-2-256 after digit always 뇛 0-14-13456-2-356 after digit always 뇜 0-14-13456-26 after digit always ë‡ 0-14-13456-12 after digit always 뇞 0-14-13456-12-3 after digit always 뇟 0-14-13456-3 after digit always 뇠 0-14-13456-34 after digit always 뇡 0-14-13456-2356 after digit always 뇢 0-14-13456-13 after digit always 뇣 0-14-13456-23 after digit always 뇤 0-14-13456-235 after digit always 뇥 0-14-13456-236 after digit always 뇦 0-14-13456-256 after digit always 뇧 0-14-13456-356 after digit always 뇨 0-14-346 after digit always 뇩 0-14-346-1 after digit always 뇪 0-14-346-1-1 after digit always 뇫 0-14-346-1-3 after digit always 뇬 0-14-346-25 after digit always 뇭 0-14-346-25-13 after digit always 뇮 0-14-346-25-356 after digit always 뇯 0-14-346-35 after digit always 뇰 0-14-346-2 after digit always 뇱 0-14-346-2-1 after digit always 뇲 0-14-346-2-26 after digit always 뇳 0-14-346-2-12 after digit always 뇴 0-14-346-2-3 after digit always 뇵 0-14-346-2-236 after digit always 뇶 0-14-346-2-256 after digit always 뇷 0-14-346-2-356 after digit always 뇸 0-14-346-26 after digit always 뇹 0-14-346-12 after digit always 뇺 0-14-346-12-3 after digit always 뇻 0-14-346-3 after digit always 뇼 0-14-346-34 after digit always 뇽 0-14-346-2356 after digit always 뇾 0-14-346-13 after digit always 뇿 0-14-346-23 after digit always 눀 0-14-346-235 after digit always ëˆ 0-14-346-236 after digit always 눂 0-14-346-256 after digit always 눃 0-14-346-356 after digit always 누 0-14-134 after digit always 눅 0-14-134-1 after digit always 눆 0-14-134-1-1 after digit always 눇 0-14-134-1-3 after digit always 눋 0-14-134-35 after digit always 눔 0-14-134-26 after digit always 눕 0-14-134-12 after digit always 눖 0-14-134-12-3 after digit always 눗 0-14-134-3 after digit always 눘 0-14-134-34 after digit always 눙 0-14-134-2356 after digit always 눚 0-14-134-13 after digit always 눛 0-14-134-23 after digit always 눜 0-14-134-235 after digit always ëˆ 0-14-134-236 after digit always 눞 0-14-134-256 after digit always 눟 0-14-134-356 after digit always 눠 0-14-1234 after digit always 눡 0-14-1234-1 after digit always 눢 0-14-1234-1-1 after digit always 눣 0-14-1234-1-3 after digit always 눤 0-14-1234-25 after digit always 눥 0-14-1234-25-13 after digit always 눦 0-14-1234-25-356 after digit always 눧 0-14-1234-35 after digit always 눨 0-14-1234-2 after digit always 눩 0-14-1234-2-1 after digit always 눪 0-14-1234-2-26 after digit always 눫 0-14-1234-2-12 after digit always 눬 0-14-1234-2-3 after digit always 눭 0-14-1234-2-236 after digit always 눮 0-14-1234-2-256 after digit always 눯 0-14-1234-2-356 after digit always 눰 0-14-1234-26 after digit always 눱 0-14-1234-12 after digit always 눲 0-14-1234-12-3 after digit always 눳 0-14-1234-3 after digit always 눴 0-14-1234-34 after digit always 눵 0-14-1234-2356 after digit always 눶 0-14-1234-13 after digit always 눷 0-14-1234-23 after digit always 눸 0-14-1234-235 after digit always 눹 0-14-1234-236 after digit always 눺 0-14-1234-256 after digit always 눻 0-14-1234-356 after digit always 눼 0-14-1234-1235 after digit always 눽 0-14-1234-1235-1 after digit always 눾 0-14-1234-1235-1-1 after digit always 눿 0-14-1234-1235-1-3 after digit always 뉀 0-14-1234-1235-25 after digit always ë‰ 0-14-1234-1235-25-13 after digit always 뉂 0-14-1234-1235-25-356 after digit always 뉃 0-14-1234-1235-35 after digit always 뉄 0-14-1234-1235-2 after digit always 뉅 0-14-1234-1235-2-1 after digit always 뉆 0-14-1234-1235-2-26 after digit always 뉇 0-14-1234-1235-2-12 after digit always 뉈 0-14-1234-1235-2-3 after digit always 뉉 0-14-1234-1235-2-236 after digit always 뉊 0-14-1234-1235-2-256 after digit always 뉋 0-14-1234-1235-2-356 after digit always 뉌 0-14-1234-1235-26 after digit always ë‰ 0-14-1234-1235-12 after digit always 뉎 0-14-1234-1235-12-3 after digit always ë‰ 0-14-1234-1235-3 after digit always ë‰ 0-14-1234-1235-34 after digit always 뉑 0-14-1234-1235-2356 after digit always 뉒 0-14-1234-1235-13 after digit always 뉓 0-14-1234-1235-23 after digit always 뉔 0-14-1234-1235-235 after digit always 뉕 0-14-1234-1235-236 after digit always 뉖 0-14-1234-1235-256 after digit always 뉗 0-14-1234-1235-356 after digit always 뉘 0-14-134-1235 after digit always 뉙 0-14-134-1235-1 after digit always 뉚 0-14-134-1235-1-1 after digit always 뉛 0-14-134-1235-1-3 after digit always 뉜 0-14-134-1235-25 after digit always ë‰ 0-14-134-1235-25-13 after digit always 뉞 0-14-134-1235-25-356 after digit always 뉟 0-14-134-1235-35 after digit always 뉠 0-14-134-1235-2 after digit always 뉡 0-14-134-1235-2-1 after digit always 뉢 0-14-134-1235-2-26 after digit always 뉣 0-14-134-1235-2-12 after digit always 뉤 0-14-134-1235-2-3 after digit always 뉥 0-14-134-1235-2-236 after digit always 뉦 0-14-134-1235-2-256 after digit always 뉧 0-14-134-1235-2-356 after digit always 뉨 0-14-134-1235-26 after digit always 뉩 0-14-134-1235-12 after digit always 뉪 0-14-134-1235-12-3 after digit always 뉫 0-14-134-1235-3 after digit always 뉬 0-14-134-1235-34 after digit always 뉭 0-14-134-1235-2356 after digit always 뉮 0-14-134-1235-13 after digit always 뉯 0-14-134-1235-23 after digit always 뉰 0-14-134-1235-235 after digit always 뉱 0-14-134-1235-236 after digit always 뉲 0-14-134-1235-256 after digit always 뉳 0-14-134-1235-356 after digit always 뉴 0-14-146 after digit always 뉵 0-14-146-1 after digit always 뉶 0-14-146-1-1 after digit always 뉷 0-14-146-1-3 after digit always 뉸 0-14-146-25 after digit always 뉹 0-14-146-25-13 after digit always 뉺 0-14-146-25-356 after digit always 뉻 0-14-146-35 after digit always 뉼 0-14-146-2 after digit always 뉽 0-14-146-2-1 after digit always 뉾 0-14-146-2-26 after digit always 뉿 0-14-146-2-12 after digit always 늀 0-14-146-2-3 after digit always ëŠ 0-14-146-2-236 after digit always 늂 0-14-146-2-256 after digit always 늃 0-14-146-2-356 after digit always 늄 0-14-146-26 after digit always 늅 0-14-146-12 after digit always 늆 0-14-146-12-3 after digit always 늇 0-14-146-3 after digit always 늈 0-14-146-34 after digit always 늉 0-14-146-2356 after digit always 늊 0-14-146-13 after digit always 늋 0-14-146-23 after digit always 늌 0-14-146-235 after digit always ëŠ 0-14-146-236 after digit always 늎 0-14-146-256 after digit always ëŠ 0-14-146-356 after digit always ëŠ 0-14-246 after digit always 늑 0-14-246-1 after digit always 늒 0-14-246-1-1 after digit always 늓 0-14-246-1-3 after digit always 늗 0-14-246-35 after digit always 늠 0-14-246-26 after digit always 늡 0-14-246-12 after digit always 늢 0-14-246-12-3 after digit always 늣 0-14-246-3 after digit always 늤 0-14-246-34 after digit always 능 0-14-246-2356 after digit always 늦 0-14-246-13 after digit always 늧 0-14-246-23 after digit always 늨 0-14-246-235 after digit always 늩 0-14-246-236 after digit always 늪 0-14-246-256 after digit always 늫 0-14-246-356 after digit always 늬 0-14-2456 after digit always 늭 0-14-2456-1 after digit always 늮 0-14-2456-1-1 after digit always 늯 0-14-2456-1-3 after digit always 늰 0-14-2456-25 after digit always 늱 0-14-2456-25-13 after digit always 늲 0-14-2456-25-356 after digit always 늳 0-14-2456-35 after digit always 늴 0-14-2456-2 after digit always 늵 0-14-2456-2-1 after digit always 늶 0-14-2456-2-26 after digit always 늷 0-14-2456-2-12 after digit always 늸 0-14-2456-2-3 after digit always 늹 0-14-2456-2-236 after digit always 늺 0-14-2456-2-256 after digit always 늻 0-14-2456-2-356 after digit always 늼 0-14-2456-26 after digit always 늽 0-14-2456-12 after digit always 늾 0-14-2456-12-3 after digit always 늿 0-14-2456-3 after digit always ë‹€ 0-14-2456-34 after digit always ë‹ 0-14-2456-2356 after digit always ë‹‚ 0-14-2456-13 after digit always 닃 0-14-2456-23 after digit always ë‹„ 0-14-2456-235 after digit always ë‹… 0-14-2456-236 after digit always 닆 0-14-2456-256 after digit always 닇 0-14-2456-356 after digit always 니 0-14-135 after digit always 닉 0-14-135-1 after digit always 닊 0-14-135-1-1 after digit always ë‹‹ 0-14-135-1-3 after digit always ë‹ 0-14-135-35 after digit always ë‹ 0-14-135-2 after digit always ë‹‘ 0-14-135-2-1 after digit always ë‹’ 0-14-135-2-26 after digit always ë‹“ 0-14-135-2-12 after digit always ë‹” 0-14-135-2-3 after digit always ë‹• 0-14-135-2-236 after digit always ë‹– 0-14-135-2-256 after digit always ë‹— 0-14-135-2-356 after digit always 님 0-14-135-26 after digit always ë‹™ 0-14-135-12 after digit always 닚 0-14-135-12-3 after digit always ë‹› 0-14-135-3 after digit always 닜 0-14-135-34 after digit always ë‹ 0-14-135-2356 after digit always 닞 0-14-135-13 after digit always 닟 0-14-135-23 after digit always ë‹  0-14-135-235 after digit always ë‹¡ 0-14-135-236 after digit always ë‹¢ 0-14-135-256 after digit always ë‹£ 0-14-135-356 after digit always 대 0-24-1235 after digit always ëŒ 0-24-1235-1 after digit always 댂 0-24-1235-1-1 after digit always 댃 0-24-1235-1-3 after digit always 댄 0-24-1235-25 after digit always 댅 0-24-1235-25-13 after digit always 댆 0-24-1235-25-356 after digit always 댇 0-24-1235-35 after digit always 댈 0-24-1235-2 after digit always 댉 0-24-1235-2-1 after digit always 댊 0-24-1235-2-26 after digit always 댋 0-24-1235-2-12 after digit always 댌 0-24-1235-2-3 after digit always ëŒ 0-24-1235-2-236 after digit always 댎 0-24-1235-2-256 after digit always ëŒ 0-24-1235-2-356 after digit always ëŒ 0-24-1235-26 after digit always 댑 0-24-1235-12 after digit always 댒 0-24-1235-12-3 after digit always 댓 0-24-1235-3 after digit always 댔 0-24-1235-34 after digit always 댕 0-24-1235-2356 after digit always 댖 0-24-1235-13 after digit always 댗 0-24-1235-23 after digit always 댘 0-24-1235-235 after digit always 댙 0-24-1235-236 after digit always 댚 0-24-1235-256 after digit always 댛 0-24-1235-356 after digit always 댜 0-24-345 after digit always ëŒ 0-24-345-1 after digit always 댞 0-24-345-1-1 after digit always 댟 0-24-345-1-3 after digit always 댠 0-24-345-25 after digit always 댡 0-24-345-25-13 after digit always 댢 0-24-345-25-356 after digit always 댣 0-24-345-35 after digit always 댤 0-24-345-2 after digit always 댥 0-24-345-2-1 after digit always 댦 0-24-345-2-26 after digit always 댧 0-24-345-2-12 after digit always 댨 0-24-345-2-3 after digit always 댩 0-24-345-2-236 after digit always 댪 0-24-345-2-256 after digit always 댫 0-24-345-2-356 after digit always 댬 0-24-345-26 after digit always 댭 0-24-345-12 after digit always 댮 0-24-345-12-3 after digit always 댯 0-24-345-3 after digit always 댰 0-24-345-34 after digit always 댱 0-24-345-2356 after digit always 댲 0-24-345-13 after digit always 댳 0-24-345-23 after digit always 댴 0-24-345-235 after digit always 댵 0-24-345-236 after digit always 댶 0-24-345-256 after digit always 댷 0-24-345-356 after digit always 댸 0-24-345-1235 after digit always 댹 0-24-345-1235-1 after digit always 댺 0-24-345-1235-1-1 after digit always 댻 0-24-345-1235-1-3 after digit always 댼 0-24-345-1235-25 after digit always 댽 0-24-345-1235-25-13 after digit always 댾 0-24-345-1235-25-356 after digit always 댿 0-24-345-1235-35 after digit always ë€ 0-24-345-1235-2 after digit always ë 0-24-345-1235-2-1 after digit always ë‚ 0-24-345-1235-2-26 after digit always ëƒ 0-24-345-1235-2-12 after digit always ë„ 0-24-345-1235-2-3 after digit always ë… 0-24-345-1235-2-236 after digit always ë† 0-24-345-1235-2-256 after digit always ë‡ 0-24-345-1235-2-356 after digit always ëˆ 0-24-345-1235-26 after digit always ë‰ 0-24-345-1235-12 after digit always ëŠ 0-24-345-1235-12-3 after digit always ë‹ 0-24-345-1235-3 after digit always ëŒ 0-24-345-1235-34 after digit always ë 0-24-345-1235-2356 after digit always ëŽ 0-24-345-1235-13 after digit always ë 0-24-345-1235-23 after digit always ë 0-24-345-1235-235 after digit always ë‘ 0-24-345-1235-236 after digit always ë’ 0-24-345-1235-256 after digit always ë“ 0-24-345-1235-356 after digit always ë” 0-24-234 after digit always ë› 0-24-234-35 after digit always ë¤ 0-24-234-26 after digit always ë¥ 0-24-234-12 after digit always ë¦ 0-24-234-12-3 after digit always ë§ 0-24-234-3 after digit always ë¨ 0-24-234-34 after digit always ë© 0-24-234-2356 after digit always ëª 0-24-234-13 after digit always ë« 0-24-234-23 after digit always ë¬ 0-24-234-235 after digit always ë­ 0-24-234-236 after digit always ë® 0-24-234-256 after digit always ë¯ 0-24-234-356 after digit always ë° 0-24-1345 after digit always ë± 0-24-1345-1 after digit always ë² 0-24-1345-1-1 after digit always ë³ 0-24-1345-1-3 after digit always ë´ 0-24-1345-25 after digit always ëµ 0-24-1345-25-13 after digit always ë¶ 0-24-1345-25-356 after digit always ë· 0-24-1345-35 after digit always ë¸ 0-24-1345-2 after digit always ë¹ 0-24-1345-2-1 after digit always ëº 0-24-1345-2-26 after digit always ë» 0-24-1345-2-12 after digit always ë¼ 0-24-1345-2-3 after digit always ë½ 0-24-1345-2-236 after digit always ë¾ 0-24-1345-2-256 after digit always ë¿ 0-24-1345-2-356 after digit always 뎀 0-24-1345-26 after digit always ëŽ 0-24-1345-12 after digit always 뎂 0-24-1345-12-3 after digit always 뎃 0-24-1345-3 after digit always 뎄 0-24-1345-34 after digit always 뎅 0-24-1345-2356 after digit always 뎆 0-24-1345-13 after digit always 뎇 0-24-1345-23 after digit always 뎈 0-24-1345-235 after digit always 뎉 0-24-1345-236 after digit always 뎊 0-24-1345-256 after digit always 뎋 0-24-1345-356 after digit always 뎌 0-24-156 after digit always ëŽ 0-24-156-1 after digit always 뎎 0-24-156-1-1 after digit always ëŽ 0-24-156-1-3 after digit always 뎓 0-24-156-35 after digit always 뎜 0-24-156-26 after digit always ëŽ 0-24-156-12 after digit always 뎞 0-24-156-12-3 after digit always 뎟 0-24-156-3 after digit always 뎠 0-24-156-34 after digit always 뎢 0-24-156-13 after digit always 뎣 0-24-156-23 after digit always 뎤 0-24-156-235 after digit always 뎥 0-24-156-236 after digit always 뎦 0-24-156-256 after digit always 뎧 0-24-156-356 after digit always 뎨 0-24-34 after digit always 뎩 0-24-34-1 after digit always 뎪 0-24-34-1-1 after digit always 뎫 0-24-34-1-3 after digit always 뎬 0-24-34-25 after digit always 뎭 0-24-34-25-13 after digit always 뎮 0-24-34-25-356 after digit always 뎯 0-24-34-35 after digit always 뎰 0-24-34-2 after digit always 뎱 0-24-34-2-1 after digit always 뎲 0-24-34-2-26 after digit always 뎳 0-24-34-2-12 after digit always 뎴 0-24-34-2-3 after digit always 뎵 0-24-34-2-236 after digit always 뎶 0-24-34-2-256 after digit always 뎷 0-24-34-2-356 after digit always 뎸 0-24-34-26 after digit always 뎹 0-24-34-12 after digit always 뎺 0-24-34-12-3 after digit always 뎻 0-24-34-3 after digit always 뎼 0-24-34-34 after digit always 뎽 0-24-34-2356 after digit always 뎾 0-24-34-13 after digit always 뎿 0-24-34-23 after digit always ë€ 0-24-34-235 after digit always ë 0-24-34-236 after digit always ë‚ 0-24-34-256 after digit always ëƒ 0-24-34-356 after digit always ë„ 0-24-136 after digit always ë‹ 0-24-136-35 after digit always ëŒ 0-24-136-2 after digit always ë 0-24-136-2-1 after digit always ëŽ 0-24-136-2-26 after digit always ë 0-24-136-2-12 after digit always ë 0-24-136-2-3 after digit always ë‘ 0-24-136-2-236 after digit always ë’ 0-24-136-2-256 after digit always ë“ 0-24-136-2-356 after digit always ë” 0-24-136-26 after digit always ë• 0-24-136-12 after digit always ë– 0-24-136-12-3 after digit always ë— 0-24-136-3 after digit always ë˜ 0-24-136-34 after digit always ëš 0-24-136-13 after digit always ë› 0-24-136-23 after digit always ëœ 0-24-136-235 after digit always ë 0-24-136-236 after digit always ëž 0-24-136-256 after digit always ëŸ 0-24-136-356 after digit always ë  0-24-1236 after digit always ë¡ 0-24-1236-1 after digit always ë¢ 0-24-1236-1-1 after digit always ë£ 0-24-1236-1-3 after digit always ë¤ 0-24-1236-25 after digit always ë¥ 0-24-1236-25-13 after digit always ë¦ 0-24-1236-25-356 after digit always ë§ 0-24-1236-35 after digit always ë¨ 0-24-1236-2 after digit always ë© 0-24-1236-2-1 after digit always ëª 0-24-1236-2-26 after digit always ë« 0-24-1236-2-12 after digit always ë¬ 0-24-1236-2-3 after digit always ë­ 0-24-1236-2-236 after digit always ë® 0-24-1236-2-256 after digit always ë¯ 0-24-1236-2-356 after digit always ë° 0-24-1236-26 after digit always ë± 0-24-1236-12 after digit always ë² 0-24-1236-12-3 after digit always ë³ 0-24-1236-3 after digit always ë´ 0-24-1236-34 after digit always ëµ 0-24-1236-2356 after digit always ë¶ 0-24-1236-13 after digit always ë· 0-24-1236-23 after digit always ë¸ 0-24-1236-235 after digit always ë¹ 0-24-1236-236 after digit always ëº 0-24-1236-256 after digit always ë» 0-24-1236-356 after digit always ë¼ 0-24-1236-1235 after digit always ë½ 0-24-1236-1235-1 after digit always ë¾ 0-24-1236-1235-1-1 after digit always ë¿ 0-24-1236-1235-1-3 after digit always ë€ 0-24-1236-1235-25 after digit always ë 0-24-1236-1235-25-13 after digit always ë‚ 0-24-1236-1235-25-356 after digit always ëƒ 0-24-1236-1235-35 after digit always ë„ 0-24-1236-1235-2 after digit always ë… 0-24-1236-1235-2-1 after digit always ë† 0-24-1236-1235-2-26 after digit always ë‡ 0-24-1236-1235-2-12 after digit always ëˆ 0-24-1236-1235-2-3 after digit always ë‰ 0-24-1236-1235-2-236 after digit always ëŠ 0-24-1236-1235-2-256 after digit always ë‹ 0-24-1236-1235-2-356 after digit always ëŒ 0-24-1236-1235-26 after digit always ë 0-24-1236-1235-12 after digit always ëŽ 0-24-1236-1235-12-3 after digit always ë 0-24-1236-1235-3 after digit always ë 0-24-1236-1235-34 after digit always ë‘ 0-24-1236-1235-2356 after digit always ë’ 0-24-1236-1235-13 after digit always ë“ 0-24-1236-1235-23 after digit always ë” 0-24-1236-1235-235 after digit always ë• 0-24-1236-1235-236 after digit always ë– 0-24-1236-1235-256 after digit always ë— 0-24-1236-1235-356 after digit always ë˜ 0-24-13456 after digit always ë™ 0-24-13456-1 after digit always ëš 0-24-13456-1-1 after digit always ë› 0-24-13456-1-3 after digit always ëœ 0-24-13456-25 after digit always ë 0-24-13456-25-13 after digit always ëž 0-24-13456-25-356 after digit always ëŸ 0-24-13456-35 after digit always ë  0-24-13456-2 after digit always ë¡ 0-24-13456-2-1 after digit always ë¢ 0-24-13456-2-26 after digit always ë£ 0-24-13456-2-12 after digit always ë¤ 0-24-13456-2-3 after digit always ë¥ 0-24-13456-2-236 after digit always ë¦ 0-24-13456-2-256 after digit always ë§ 0-24-13456-2-356 after digit always ë¨ 0-24-13456-26 after digit always ë© 0-24-13456-12 after digit always ëª 0-24-13456-12-3 after digit always ë« 0-24-13456-3 after digit always ë¬ 0-24-13456-34 after digit always ë­ 0-24-13456-2356 after digit always ë® 0-24-13456-13 after digit always ë¯ 0-24-13456-23 after digit always ë° 0-24-13456-235 after digit always ë± 0-24-13456-236 after digit always ë² 0-24-13456-256 after digit always ë³ 0-24-13456-356 after digit always ë´ 0-24-346 after digit always ëµ 0-24-346-1 after digit always ë¶ 0-24-346-1-1 after digit always ë· 0-24-346-1-3 after digit always ë¸ 0-24-346-25 after digit always ë¹ 0-24-346-25-13 after digit always ëº 0-24-346-25-356 after digit always ë» 0-24-346-35 after digit always ë¼ 0-24-346-2 after digit always ë½ 0-24-346-2-1 after digit always ë¾ 0-24-346-2-26 after digit always ë¿ 0-24-346-2-12 after digit always ë‘€ 0-24-346-2-3 after digit always ë‘ 0-24-346-2-236 after digit always ë‘‚ 0-24-346-2-256 after digit always 둃 0-24-346-2-356 after digit always ë‘„ 0-24-346-26 after digit always ë‘… 0-24-346-12 after digit always 둆 0-24-346-12-3 after digit always 둇 0-24-346-3 after digit always 둈 0-24-346-34 after digit always 둉 0-24-346-2356 after digit always 둊 0-24-346-13 after digit always ë‘‹ 0-24-346-23 after digit always 둌 0-24-346-235 after digit always ë‘ 0-24-346-236 after digit always 둎 0-24-346-256 after digit always ë‘ 0-24-346-356 after digit always ë‘ 0-24-134 after digit always ë‘‘ 0-24-134-1 after digit always ë‘’ 0-24-134-1-1 after digit always ë‘“ 0-24-134-1-3 after digit always ë‘— 0-24-134-35 after digit always ë‘  0-24-134-26 after digit always ë‘¡ 0-24-134-12 after digit always ë‘¢ 0-24-134-12-3 after digit always ë‘£ 0-24-134-3 after digit always 둤 0-24-134-34 after digit always ë‘¥ 0-24-134-2356 after digit always 둦 0-24-134-13 after digit always ë‘§ 0-24-134-23 after digit always 둨 0-24-134-235 after digit always ë‘© 0-24-134-236 after digit always 둪 0-24-134-256 after digit always ë‘« 0-24-134-356 after digit always 둬 0-24-1234 after digit always ë‘­ 0-24-1234-1 after digit always ë‘® 0-24-1234-1-1 after digit always 둯 0-24-1234-1-3 after digit always ë‘° 0-24-1234-25 after digit always 둱 0-24-1234-25-13 after digit always 둲 0-24-1234-25-356 after digit always 둳 0-24-1234-35 after digit always ë‘´ 0-24-1234-2 after digit always 둵 0-24-1234-2-1 after digit always ë‘¶ 0-24-1234-2-26 after digit always ë‘· 0-24-1234-2-12 after digit always 둸 0-24-1234-2-3 after digit always 둹 0-24-1234-2-236 after digit always 둺 0-24-1234-2-256 after digit always ë‘» 0-24-1234-2-356 after digit always 둼 0-24-1234-26 after digit always 둽 0-24-1234-12 after digit always 둾 0-24-1234-12-3 after digit always ë‘¿ 0-24-1234-3 after digit always ë’€ 0-24-1234-34 after digit always ë’ 0-24-1234-2356 after digit always ë’‚ 0-24-1234-13 after digit always ë’ƒ 0-24-1234-23 after digit always ë’„ 0-24-1234-235 after digit always ë’… 0-24-1234-236 after digit always ë’† 0-24-1234-256 after digit always ë’‡ 0-24-1234-356 after digit always ë’ˆ 0-24-1234-1235 after digit always ë’‰ 0-24-1234-1235-1 after digit always ë’Š 0-24-1234-1235-1-1 after digit always ë’‹ 0-24-1234-1235-1-3 after digit always ë’Œ 0-24-1234-1235-25 after digit always ë’ 0-24-1234-1235-25-13 after digit always ë’Ž 0-24-1234-1235-25-356 after digit always ë’ 0-24-1234-1235-35 after digit always ë’ 0-24-1234-1235-2 after digit always ë’‘ 0-24-1234-1235-2-1 after digit always ë’’ 0-24-1234-1235-2-26 after digit always ë’“ 0-24-1234-1235-2-12 after digit always ë’” 0-24-1234-1235-2-3 after digit always ë’• 0-24-1234-1235-2-236 after digit always ë’– 0-24-1234-1235-2-256 after digit always ë’— 0-24-1234-1235-2-356 after digit always ë’˜ 0-24-1234-1235-26 after digit always ë’™ 0-24-1234-1235-12 after digit always ë’š 0-24-1234-1235-12-3 after digit always ë’› 0-24-1234-1235-3 after digit always ë’œ 0-24-1234-1235-34 after digit always ë’ 0-24-1234-1235-2356 after digit always ë’ž 0-24-1234-1235-13 after digit always ë’Ÿ 0-24-1234-1235-23 after digit always ë’  0-24-1234-1235-235 after digit always ë’¡ 0-24-1234-1235-236 after digit always ë’¢ 0-24-1234-1235-256 after digit always ë’£ 0-24-1234-1235-356 after digit always ë’¤ 0-24-134-1235 after digit always ë’¥ 0-24-134-1235-1 after digit always ë’¦ 0-24-134-1235-1-1 after digit always ë’§ 0-24-134-1235-1-3 after digit always ë’¨ 0-24-134-1235-25 after digit always ë’© 0-24-134-1235-25-13 after digit always ë’ª 0-24-134-1235-25-356 after digit always ë’« 0-24-134-1235-35 after digit always ë’¬ 0-24-134-1235-2 after digit always ë’­ 0-24-134-1235-2-1 after digit always ë’® 0-24-134-1235-2-26 after digit always ë’¯ 0-24-134-1235-2-12 after digit always ë’° 0-24-134-1235-2-3 after digit always ë’± 0-24-134-1235-2-236 after digit always ë’² 0-24-134-1235-2-256 after digit always ë’³ 0-24-134-1235-2-356 after digit always ë’´ 0-24-134-1235-26 after digit always ë’µ 0-24-134-1235-12 after digit always ë’¶ 0-24-134-1235-12-3 after digit always ë’· 0-24-134-1235-3 after digit always ë’¸ 0-24-134-1235-34 after digit always ë’¹ 0-24-134-1235-2356 after digit always ë’º 0-24-134-1235-13 after digit always ë’» 0-24-134-1235-23 after digit always ë’¼ 0-24-134-1235-235 after digit always ë’½ 0-24-134-1235-236 after digit always ë’¾ 0-24-134-1235-256 after digit always ë’¿ 0-24-134-1235-356 after digit always ë“€ 0-24-146 after digit always ë“ 0-24-146-1 after digit always ë“‚ 0-24-146-1-1 after digit always 듃 0-24-146-1-3 after digit always ë“„ 0-24-146-25 after digit always ë“… 0-24-146-25-13 after digit always 듆 0-24-146-25-356 after digit always 듇 0-24-146-35 after digit always 듈 0-24-146-2 after digit always 듉 0-24-146-2-1 after digit always 듊 0-24-146-2-26 after digit always ë“‹ 0-24-146-2-12 after digit always 듌 0-24-146-2-3 after digit always ë“ 0-24-146-2-236 after digit always 듎 0-24-146-2-256 after digit always ë“ 0-24-146-2-356 after digit always ë“ 0-24-146-26 after digit always ë“‘ 0-24-146-12 after digit always ë“’ 0-24-146-12-3 after digit always ë““ 0-24-146-3 after digit always ë“” 0-24-146-34 after digit always ë“• 0-24-146-2356 after digit always ë“– 0-24-146-13 after digit always ë“— 0-24-146-23 after digit always 듘 0-24-146-235 after digit always ë“™ 0-24-146-236 after digit always 듚 0-24-146-256 after digit always ë“› 0-24-146-356 after digit always 드 0-24-246 after digit always ë“ 0-24-246-1 after digit always 듞 0-24-246-1-1 after digit always 듟 0-24-246-1-3 after digit always ë“£ 0-24-246-35 after digit always 듬 0-24-246-26 after digit always ë“­ 0-24-246-12 after digit always ë“® 0-24-246-12-3 after digit always 듯 0-24-246-3 after digit always ë“° 0-24-246-34 after digit always 등 0-24-246-2356 after digit always 듲 0-24-246-13 after digit always 듳 0-24-246-23 after digit always ë“´ 0-24-246-235 after digit always 듵 0-24-246-236 after digit always ë“¶ 0-24-246-256 after digit always ë“· 0-24-246-356 after digit always 듸 0-24-2456 after digit always 듹 0-24-2456-1 after digit always 듺 0-24-2456-1-1 after digit always ë“» 0-24-2456-1-3 after digit always 듼 0-24-2456-25 after digit always 듽 0-24-2456-25-13 after digit always 듾 0-24-2456-25-356 after digit always ë“¿ 0-24-2456-35 after digit always 딀 0-24-2456-2 after digit always ë” 0-24-2456-2-1 after digit always 딂 0-24-2456-2-26 after digit always 딃 0-24-2456-2-12 after digit always 딄 0-24-2456-2-3 after digit always ë”… 0-24-2456-2-236 after digit always 딆 0-24-2456-2-256 after digit always 딇 0-24-2456-2-356 after digit always 딈 0-24-2456-26 after digit always 딉 0-24-2456-12 after digit always 딊 0-24-2456-12-3 after digit always 딋 0-24-2456-3 after digit always 딌 0-24-2456-34 after digit always ë” 0-24-2456-2356 after digit always 딎 0-24-2456-13 after digit always ë” 0-24-2456-23 after digit always ë” 0-24-2456-235 after digit always 딑 0-24-2456-236 after digit always ë”’ 0-24-2456-256 after digit always 딓 0-24-2456-356 after digit always ë”” 0-24-135 after digit always 딕 0-24-135-1 after digit always ë”– 0-24-135-1-1 after digit always ë”— 0-24-135-1-3 after digit always ë”› 0-24-135-35 after digit always 딜 0-24-135-2 after digit always ë” 0-24-135-2-1 after digit always 딞 0-24-135-2-26 after digit always 딟 0-24-135-2-12 after digit always ë”  0-24-135-2-3 after digit always 딡 0-24-135-2-236 after digit always 딢 0-24-135-2-256 after digit always 딣 0-24-135-2-356 after digit always 딤 0-24-135-26 after digit always 딥 0-24-135-12 after digit always 딦 0-24-135-12-3 after digit always ë”§ 0-24-135-3 after digit always 딨 0-24-135-34 after digit always 딩 0-24-135-2356 after digit always 딪 0-24-135-13 after digit always 딫 0-24-135-23 after digit always 딬 0-24-135-235 after digit always ë”­ 0-24-135-236 after digit always ë”® 0-24-135-256 after digit always 딯 0-24-135-356 after digit always 매 0-15-1235 after digit always ë§¥ 0-15-1235-1 after digit always 맦 0-15-1235-1-1 after digit always ë§§ 0-15-1235-1-3 after digit always 맨 0-15-1235-25 after digit always ë§© 0-15-1235-25-13 after digit always 맪 0-15-1235-25-356 after digit always ë§« 0-15-1235-35 after digit always 맬 0-15-1235-2 after digit always ë§­ 0-15-1235-2-1 after digit always ë§® 0-15-1235-2-26 after digit always 맯 0-15-1235-2-12 after digit always ë§° 0-15-1235-2-3 after digit always ë§± 0-15-1235-2-236 after digit always ë§² 0-15-1235-2-256 after digit always ë§³ 0-15-1235-2-356 after digit always ë§´ 0-15-1235-26 after digit always ë§µ 0-15-1235-12 after digit always ë§¶ 0-15-1235-12-3 after digit always ë§· 0-15-1235-3 after digit always 맸 0-15-1235-34 after digit always ë§¹ 0-15-1235-2356 after digit always 맺 0-15-1235-13 after digit always ë§» 0-15-1235-23 after digit always ë§¼ 0-15-1235-235 after digit always ë§½ 0-15-1235-236 after digit always ë§¾ 0-15-1235-256 after digit always ë§¿ 0-15-1235-356 after digit always 먀 0-15-345 after digit always ë¨ 0-15-345-1 after digit always 먂 0-15-345-1-1 after digit always 먃 0-15-345-1-3 after digit always 먄 0-15-345-25 after digit always 먅 0-15-345-25-13 after digit always 먆 0-15-345-25-356 after digit always 먇 0-15-345-35 after digit always 먈 0-15-345-2 after digit always 먉 0-15-345-2-1 after digit always 먊 0-15-345-2-26 after digit always 먋 0-15-345-2-12 after digit always 먌 0-15-345-2-3 after digit always ë¨ 0-15-345-2-236 after digit always 먎 0-15-345-2-256 after digit always ë¨ 0-15-345-2-356 after digit always ë¨ 0-15-345-26 after digit always 먑 0-15-345-12 after digit always 먒 0-15-345-12-3 after digit always 먓 0-15-345-3 after digit always 먔 0-15-345-34 after digit always 먕 0-15-345-2356 after digit always 먖 0-15-345-13 after digit always 먗 0-15-345-23 after digit always 먘 0-15-345-235 after digit always 먙 0-15-345-236 after digit always 먚 0-15-345-256 after digit always 먛 0-15-345-356 after digit always 먜 0-15-345-1235 after digit always ë¨ 0-15-345-1235-1 after digit always 먞 0-15-345-1235-1-1 after digit always 먟 0-15-345-1235-1-3 after digit always 먠 0-15-345-1235-25 after digit always 먡 0-15-345-1235-25-13 after digit always 먢 0-15-345-1235-25-356 after digit always 먣 0-15-345-1235-35 after digit always 먤 0-15-345-1235-2 after digit always 먥 0-15-345-1235-2-1 after digit always 먦 0-15-345-1235-2-26 after digit always 먧 0-15-345-1235-2-12 after digit always 먨 0-15-345-1235-2-3 after digit always 먩 0-15-345-1235-2-236 after digit always 먪 0-15-345-1235-2-256 after digit always 먫 0-15-345-1235-2-356 after digit always 먬 0-15-345-1235-26 after digit always 먭 0-15-345-1235-12 after digit always 먮 0-15-345-1235-12-3 after digit always 먯 0-15-345-1235-3 after digit always 먰 0-15-345-1235-34 after digit always 먱 0-15-345-1235-2356 after digit always 먲 0-15-345-1235-13 after digit always 먳 0-15-345-1235-23 after digit always 먴 0-15-345-1235-235 after digit always 먵 0-15-345-1235-236 after digit always 먶 0-15-345-1235-256 after digit always 먷 0-15-345-1235-356 after digit always 머 0-15-234 after digit always 먿 0-15-234-35 after digit always 멈 0-15-234-26 after digit always 멉 0-15-234-12 after digit always 멊 0-15-234-12-3 after digit always ë©‹ 0-15-234-3 after digit always 멌 0-15-234-34 after digit always ë© 0-15-234-2356 after digit always 멎 0-15-234-13 after digit always ë© 0-15-234-23 after digit always ë© 0-15-234-235 after digit always ë©‘ 0-15-234-236 after digit always ë©’ 0-15-234-256 after digit always ë©“ 0-15-234-356 after digit always ë©” 0-15-1345 after digit always ë©• 0-15-1345-1 after digit always ë©– 0-15-1345-1-1 after digit always ë©— 0-15-1345-1-3 after digit always 멘 0-15-1345-25 after digit always ë©™ 0-15-1345-25-13 after digit always 멚 0-15-1345-25-356 after digit always ë©› 0-15-1345-35 after digit always 멜 0-15-1345-2 after digit always ë© 0-15-1345-2-1 after digit always 멞 0-15-1345-2-26 after digit always 멟 0-15-1345-2-12 after digit always ë©  0-15-1345-2-3 after digit always ë©¡ 0-15-1345-2-236 after digit always ë©¢ 0-15-1345-2-256 after digit always ë©£ 0-15-1345-2-356 after digit always 멤 0-15-1345-26 after digit always ë©¥ 0-15-1345-12 after digit always 멦 0-15-1345-12-3 after digit always ë©§ 0-15-1345-3 after digit always 멨 0-15-1345-34 after digit always ë©© 0-15-1345-2356 after digit always 멪 0-15-1345-13 after digit always ë©« 0-15-1345-23 after digit always 멬 0-15-1345-235 after digit always ë©­ 0-15-1345-236 after digit always ë©® 0-15-1345-256 after digit always 멯 0-15-1345-356 after digit always ë©° 0-15-156 after digit always 멱 0-15-156-1 after digit always 멲 0-15-156-1-1 after digit always 멳 0-15-156-1-3 after digit always ë©· 0-15-156-35 after digit always 몀 0-15-156-26 after digit always ëª 0-15-156-12 after digit always 몂 0-15-156-12-3 after digit always 몃 0-15-156-3 after digit always 몄 0-15-156-34 after digit always 몆 0-15-156-13 after digit always 몇 0-15-156-23 after digit always 몈 0-15-156-235 after digit always 몉 0-15-156-236 after digit always 몊 0-15-156-256 after digit always 몋 0-15-156-356 after digit always 몌 0-15-34 after digit always ëª 0-15-34-1 after digit always 몎 0-15-34-1-1 after digit always ëª 0-15-34-1-3 after digit always ëª 0-15-34-25 after digit always 몑 0-15-34-25-13 after digit always 몒 0-15-34-25-356 after digit always 몓 0-15-34-35 after digit always 몔 0-15-34-2 after digit always 몕 0-15-34-2-1 after digit always 몖 0-15-34-2-26 after digit always 몗 0-15-34-2-12 after digit always 몘 0-15-34-2-3 after digit always 몙 0-15-34-2-236 after digit always 몚 0-15-34-2-256 after digit always 몛 0-15-34-2-356 after digit always 몜 0-15-34-26 after digit always ëª 0-15-34-12 after digit always 몞 0-15-34-12-3 after digit always 몟 0-15-34-3 after digit always 몠 0-15-34-34 after digit always 몡 0-15-34-2356 after digit always 몢 0-15-34-13 after digit always 몣 0-15-34-23 after digit always 몤 0-15-34-235 after digit always 몥 0-15-34-236 after digit always 몦 0-15-34-256 after digit always 몧 0-15-34-356 after digit always 모 0-15-136 after digit always 몯 0-15-136-35 after digit always 몰 0-15-136-2 after digit always 몱 0-15-136-2-1 after digit always 몲 0-15-136-2-26 after digit always 몳 0-15-136-2-12 after digit always 몴 0-15-136-2-3 after digit always 몵 0-15-136-2-236 after digit always 몶 0-15-136-2-256 after digit always 몷 0-15-136-2-356 after digit always 몸 0-15-136-26 after digit always 몹 0-15-136-12 after digit always 몺 0-15-136-12-3 after digit always 못 0-15-136-3 after digit always 몼 0-15-136-34 after digit always 몾 0-15-136-13 after digit always 몿 0-15-136-23 after digit always ë«€ 0-15-136-235 after digit always ë« 0-15-136-236 after digit always ë«‚ 0-15-136-256 after digit always 뫃 0-15-136-356 after digit always ë«„ 0-15-1236 after digit always ë«… 0-15-1236-1 after digit always 뫆 0-15-1236-1-1 after digit always 뫇 0-15-1236-1-3 after digit always 뫈 0-15-1236-25 after digit always 뫉 0-15-1236-25-13 after digit always 뫊 0-15-1236-25-356 after digit always ë«‹ 0-15-1236-35 after digit always 뫌 0-15-1236-2 after digit always ë« 0-15-1236-2-1 after digit always 뫎 0-15-1236-2-26 after digit always ë« 0-15-1236-2-12 after digit always ë« 0-15-1236-2-3 after digit always ë«‘ 0-15-1236-2-236 after digit always ë«’ 0-15-1236-2-256 after digit always ë«“ 0-15-1236-2-356 after digit always ë«” 0-15-1236-26 after digit always ë«• 0-15-1236-12 after digit always ë«– 0-15-1236-12-3 after digit always ë«— 0-15-1236-3 after digit always 뫘 0-15-1236-34 after digit always ë«™ 0-15-1236-2356 after digit always 뫚 0-15-1236-13 after digit always ë«› 0-15-1236-23 after digit always 뫜 0-15-1236-235 after digit always ë« 0-15-1236-236 after digit always 뫞 0-15-1236-256 after digit always 뫟 0-15-1236-356 after digit always ë«  0-15-1236-1235 after digit always ë«¡ 0-15-1236-1235-1 after digit always ë«¢ 0-15-1236-1235-1-1 after digit always ë«£ 0-15-1236-1235-1-3 after digit always 뫤 0-15-1236-1235-25 after digit always ë«¥ 0-15-1236-1235-25-13 after digit always 뫦 0-15-1236-1235-25-356 after digit always ë«§ 0-15-1236-1235-35 after digit always 뫨 0-15-1236-1235-2 after digit always ë«© 0-15-1236-1235-2-1 after digit always 뫪 0-15-1236-1235-2-26 after digit always ë«« 0-15-1236-1235-2-12 after digit always 뫬 0-15-1236-1235-2-3 after digit always ë«­ 0-15-1236-1235-2-236 after digit always ë«® 0-15-1236-1235-2-256 after digit always 뫯 0-15-1236-1235-2-356 after digit always ë«° 0-15-1236-1235-26 after digit always 뫱 0-15-1236-1235-12 after digit always 뫲 0-15-1236-1235-12-3 after digit always 뫳 0-15-1236-1235-3 after digit always ë«´ 0-15-1236-1235-34 after digit always 뫵 0-15-1236-1235-2356 after digit always ë«¶ 0-15-1236-1235-13 after digit always ë«· 0-15-1236-1235-23 after digit always 뫸 0-15-1236-1235-235 after digit always 뫹 0-15-1236-1235-236 after digit always 뫺 0-15-1236-1235-256 after digit always ë«» 0-15-1236-1235-356 after digit always 뫼 0-15-13456 after digit always 뫽 0-15-13456-1 after digit always 뫾 0-15-13456-1-1 after digit always ë«¿ 0-15-13456-1-3 after digit always 묀 0-15-13456-25 after digit always ë¬ 0-15-13456-25-13 after digit always 묂 0-15-13456-25-356 after digit always 묃 0-15-13456-35 after digit always 묄 0-15-13456-2 after digit always 묅 0-15-13456-2-1 after digit always 묆 0-15-13456-2-26 after digit always 묇 0-15-13456-2-12 after digit always 묈 0-15-13456-2-3 after digit always 묉 0-15-13456-2-236 after digit always 묊 0-15-13456-2-256 after digit always 묋 0-15-13456-2-356 after digit always 묌 0-15-13456-26 after digit always ë¬ 0-15-13456-12 after digit always 묎 0-15-13456-12-3 after digit always ë¬ 0-15-13456-3 after digit always ë¬ 0-15-13456-34 after digit always 묑 0-15-13456-2356 after digit always 묒 0-15-13456-13 after digit always 묓 0-15-13456-23 after digit always 묔 0-15-13456-235 after digit always 묕 0-15-13456-236 after digit always 묖 0-15-13456-256 after digit always 묗 0-15-13456-356 after digit always 묘 0-15-346 after digit always 묙 0-15-346-1 after digit always 묚 0-15-346-1-1 after digit always 묛 0-15-346-1-3 after digit always 묜 0-15-346-25 after digit always ë¬ 0-15-346-25-13 after digit always 묞 0-15-346-25-356 after digit always 묟 0-15-346-35 after digit always 묠 0-15-346-2 after digit always 묡 0-15-346-2-1 after digit always 묢 0-15-346-2-26 after digit always 묣 0-15-346-2-12 after digit always 묤 0-15-346-2-3 after digit always 묥 0-15-346-2-236 after digit always 묦 0-15-346-2-256 after digit always 묧 0-15-346-2-356 after digit always 묨 0-15-346-26 after digit always 묩 0-15-346-12 after digit always 묪 0-15-346-12-3 after digit always 묫 0-15-346-3 after digit always 묬 0-15-346-34 after digit always 묭 0-15-346-2356 after digit always 묮 0-15-346-13 after digit always 묯 0-15-346-23 after digit always 묰 0-15-346-235 after digit always 묱 0-15-346-236 after digit always 묲 0-15-346-256 after digit always 묳 0-15-346-356 after digit always 무 0-15-134 after digit always 묵 0-15-134-1 after digit always 묶 0-15-134-1-1 after digit always 묷 0-15-134-1-3 after digit always 묻 0-15-134-35 after digit always ë­„ 0-15-134-26 after digit always ë­… 0-15-134-12 after digit always ë­† 0-15-134-12-3 after digit always ë­‡ 0-15-134-3 after digit always ë­ˆ 0-15-134-34 after digit always ë­‰ 0-15-134-2356 after digit always ë­Š 0-15-134-13 after digit always ë­‹ 0-15-134-23 after digit always ë­Œ 0-15-134-235 after digit always ë­ 0-15-134-236 after digit always ë­Ž 0-15-134-256 after digit always ë­ 0-15-134-356 after digit always ë­ 0-15-1234 after digit always ë­‘ 0-15-1234-1 after digit always ë­’ 0-15-1234-1-1 after digit always ë­“ 0-15-1234-1-3 after digit always ë­” 0-15-1234-25 after digit always ë­• 0-15-1234-25-13 after digit always ë­– 0-15-1234-25-356 after digit always ë­— 0-15-1234-35 after digit always ë­˜ 0-15-1234-2 after digit always ë­™ 0-15-1234-2-1 after digit always ë­š 0-15-1234-2-26 after digit always ë­› 0-15-1234-2-12 after digit always ë­œ 0-15-1234-2-3 after digit always ë­ 0-15-1234-2-236 after digit always ë­ž 0-15-1234-2-256 after digit always ë­Ÿ 0-15-1234-2-356 after digit always ë­  0-15-1234-26 after digit always ë­¡ 0-15-1234-12 after digit always ë­¢ 0-15-1234-12-3 after digit always ë­£ 0-15-1234-3 after digit always ë­¤ 0-15-1234-34 after digit always ë­¥ 0-15-1234-2356 after digit always ë­¦ 0-15-1234-13 after digit always ë­§ 0-15-1234-23 after digit always ë­¨ 0-15-1234-235 after digit always ë­© 0-15-1234-236 after digit always ë­ª 0-15-1234-256 after digit always ë­« 0-15-1234-356 after digit always ë­¬ 0-15-1234-1235 after digit always ë­­ 0-15-1234-1235-1 after digit always ë­® 0-15-1234-1235-1-1 after digit always ë­¯ 0-15-1234-1235-1-3 after digit always ë­° 0-15-1234-1235-25 after digit always ë­± 0-15-1234-1235-25-13 after digit always ë­² 0-15-1234-1235-25-356 after digit always ë­³ 0-15-1234-1235-35 after digit always ë­´ 0-15-1234-1235-2 after digit always ë­µ 0-15-1234-1235-2-1 after digit always ë­¶ 0-15-1234-1235-2-26 after digit always ë­· 0-15-1234-1235-2-12 after digit always ë­¸ 0-15-1234-1235-2-3 after digit always ë­¹ 0-15-1234-1235-2-236 after digit always ë­º 0-15-1234-1235-2-256 after digit always ë­» 0-15-1234-1235-2-356 after digit always ë­¼ 0-15-1234-1235-26 after digit always ë­½ 0-15-1234-1235-12 after digit always ë­¾ 0-15-1234-1235-12-3 after digit always ë­¿ 0-15-1234-1235-3 after digit always 뮀 0-15-1234-1235-34 after digit always ë® 0-15-1234-1235-2356 after digit always 뮂 0-15-1234-1235-13 after digit always 뮃 0-15-1234-1235-23 after digit always 뮄 0-15-1234-1235-235 after digit always ë®… 0-15-1234-1235-236 after digit always 뮆 0-15-1234-1235-256 after digit always 뮇 0-15-1234-1235-356 after digit always 뮈 0-15-134-1235 after digit always 뮉 0-15-134-1235-1 after digit always 뮊 0-15-134-1235-1-1 after digit always 뮋 0-15-134-1235-1-3 after digit always 뮌 0-15-134-1235-25 after digit always ë® 0-15-134-1235-25-13 after digit always 뮎 0-15-134-1235-25-356 after digit always ë® 0-15-134-1235-35 after digit always ë® 0-15-134-1235-2 after digit always 뮑 0-15-134-1235-2-1 after digit always ë®’ 0-15-134-1235-2-26 after digit always 뮓 0-15-134-1235-2-12 after digit always ë®” 0-15-134-1235-2-3 after digit always 뮕 0-15-134-1235-2-236 after digit always ë®– 0-15-134-1235-2-256 after digit always ë®— 0-15-134-1235-2-356 after digit always 뮘 0-15-134-1235-26 after digit always ë®™ 0-15-134-1235-12 after digit always 뮚 0-15-134-1235-12-3 after digit always ë®› 0-15-134-1235-3 after digit always 뮜 0-15-134-1235-34 after digit always ë® 0-15-134-1235-2356 after digit always 뮞 0-15-134-1235-13 after digit always 뮟 0-15-134-1235-23 after digit always ë®  0-15-134-1235-235 after digit always 뮡 0-15-134-1235-236 after digit always 뮢 0-15-134-1235-256 after digit always 뮣 0-15-134-1235-356 after digit always 뮤 0-15-146 after digit always 뮥 0-15-146-1 after digit always 뮦 0-15-146-1-1 after digit always ë®§ 0-15-146-1-3 after digit always 뮨 0-15-146-25 after digit always 뮩 0-15-146-25-13 after digit always 뮪 0-15-146-25-356 after digit always 뮫 0-15-146-35 after digit always 뮬 0-15-146-2 after digit always ë®­ 0-15-146-2-1 after digit always ë®® 0-15-146-2-26 after digit always 뮯 0-15-146-2-12 after digit always ë®° 0-15-146-2-3 after digit always ë®± 0-15-146-2-236 after digit always 뮲 0-15-146-2-256 after digit always 뮳 0-15-146-2-356 after digit always ë®´ 0-15-146-26 after digit always 뮵 0-15-146-12 after digit always ë®¶ 0-15-146-12-3 after digit always ë®· 0-15-146-3 after digit always 뮸 0-15-146-34 after digit always 뮹 0-15-146-2356 after digit always 뮺 0-15-146-13 after digit always ë®» 0-15-146-23 after digit always 뮼 0-15-146-235 after digit always 뮽 0-15-146-236 after digit always 뮾 0-15-146-256 after digit always 뮿 0-15-146-356 after digit always 므 0-15-246 after digit always ë¯ 0-15-246-1 after digit always 믂 0-15-246-1-1 after digit always 믃 0-15-246-1-3 after digit always 믇 0-15-246-35 after digit always ë¯ 0-15-246-26 after digit always 믑 0-15-246-12 after digit always 믒 0-15-246-12-3 after digit always 믓 0-15-246-3 after digit always 믔 0-15-246-34 after digit always 믕 0-15-246-2356 after digit always 믖 0-15-246-13 after digit always 믗 0-15-246-23 after digit always 믘 0-15-246-235 after digit always 믙 0-15-246-236 after digit always 믚 0-15-246-256 after digit always 믛 0-15-246-356 after digit always 믜 0-15-2456 after digit always ë¯ 0-15-2456-1 after digit always 믞 0-15-2456-1-1 after digit always 믟 0-15-2456-1-3 after digit always 믠 0-15-2456-25 after digit always 믡 0-15-2456-25-13 after digit always 믢 0-15-2456-25-356 after digit always 믣 0-15-2456-35 after digit always 믤 0-15-2456-2 after digit always 믥 0-15-2456-2-1 after digit always 믦 0-15-2456-2-26 after digit always 믧 0-15-2456-2-12 after digit always 믨 0-15-2456-2-3 after digit always 믩 0-15-2456-2-236 after digit always 믪 0-15-2456-2-256 after digit always 믫 0-15-2456-2-356 after digit always 믬 0-15-2456-26 after digit always 믭 0-15-2456-12 after digit always 믮 0-15-2456-12-3 after digit always 믯 0-15-2456-3 after digit always 믰 0-15-2456-34 after digit always 믱 0-15-2456-2356 after digit always 믲 0-15-2456-13 after digit always 믳 0-15-2456-23 after digit always 믴 0-15-2456-235 after digit always 믵 0-15-2456-236 after digit always 믶 0-15-2456-256 after digit always 믷 0-15-2456-356 after digit always 미 0-15-135 after digit always 믹 0-15-135-1 after digit always 믺 0-15-135-1-1 after digit always 믻 0-15-135-1-3 after digit always 믿 0-15-135-35 after digit always ë°€ 0-15-135-2 after digit always ë° 0-15-135-2-1 after digit always ë°‚ 0-15-135-2-26 after digit always ë°ƒ 0-15-135-2-12 after digit always ë°„ 0-15-135-2-3 after digit always ë°… 0-15-135-2-236 after digit always ë°† 0-15-135-2-256 after digit always ë°‡ 0-15-135-2-356 after digit always ë°ˆ 0-15-135-26 after digit always ë°‰ 0-15-135-12 after digit always ë°Š 0-15-135-12-3 after digit always ë°‹ 0-15-135-3 after digit always ë°Œ 0-15-135-34 after digit always ë° 0-15-135-2356 after digit always ë°Ž 0-15-135-13 after digit always ë° 0-15-135-23 after digit always ë° 0-15-135-235 after digit always ë°‘ 0-15-135-236 after digit always ë°’ 0-15-135-256 after digit always ë°“ 0-15-135-356 after digit always ìº 0-124-1235 after digit always 캑 0-124-1235-1 after digit always 캒 0-124-1235-1-1 after digit always 캓 0-124-1235-1-3 after digit always 캔 0-124-1235-25 after digit always 캕 0-124-1235-25-13 after digit always 캖 0-124-1235-25-356 after digit always 캗 0-124-1235-35 after digit always 캘 0-124-1235-2 after digit always 캙 0-124-1235-2-1 after digit always 캚 0-124-1235-2-26 after digit always 캛 0-124-1235-2-12 after digit always 캜 0-124-1235-2-3 after digit always ìº 0-124-1235-2-236 after digit always 캞 0-124-1235-2-256 after digit always 캟 0-124-1235-2-356 after digit always 캠 0-124-1235-26 after digit always 캡 0-124-1235-12 after digit always 캢 0-124-1235-12-3 after digit always 캣 0-124-1235-3 after digit always 캤 0-124-1235-34 after digit always 캥 0-124-1235-2356 after digit always 캦 0-124-1235-13 after digit always 캧 0-124-1235-23 after digit always 캨 0-124-1235-235 after digit always 캩 0-124-1235-236 after digit always 캪 0-124-1235-256 after digit always 캫 0-124-1235-356 after digit always 캬 0-124-345 after digit always 캭 0-124-345-1 after digit always 캮 0-124-345-1-1 after digit always 캯 0-124-345-1-3 after digit always 캰 0-124-345-25 after digit always 캱 0-124-345-25-13 after digit always 캲 0-124-345-25-356 after digit always 캳 0-124-345-35 after digit always 캴 0-124-345-2 after digit always 캵 0-124-345-2-1 after digit always 캶 0-124-345-2-26 after digit always 캷 0-124-345-2-12 after digit always 캸 0-124-345-2-3 after digit always 캹 0-124-345-2-236 after digit always 캺 0-124-345-2-256 after digit always 캻 0-124-345-2-356 after digit always 캼 0-124-345-26 after digit always 캽 0-124-345-12 after digit always 캾 0-124-345-12-3 after digit always 캿 0-124-345-3 after digit always 컀 0-124-345-34 after digit always ì» 0-124-345-2356 after digit always 컂 0-124-345-13 after digit always 컃 0-124-345-23 after digit always 컄 0-124-345-235 after digit always ì»… 0-124-345-236 after digit always 컆 0-124-345-256 after digit always 컇 0-124-345-356 after digit always 컈 0-124-345-1235 after digit always 컉 0-124-345-1235-1 after digit always 컊 0-124-345-1235-1-1 after digit always 컋 0-124-345-1235-1-3 after digit always 컌 0-124-345-1235-25 after digit always ì» 0-124-345-1235-25-13 after digit always 컎 0-124-345-1235-25-356 after digit always ì» 0-124-345-1235-35 after digit always ì» 0-124-345-1235-2 after digit always 컑 0-124-345-1235-2-1 after digit always ì»’ 0-124-345-1235-2-26 after digit always 컓 0-124-345-1235-2-12 after digit always ì»” 0-124-345-1235-2-3 after digit always 컕 0-124-345-1235-2-236 after digit always ì»– 0-124-345-1235-2-256 after digit always ì»— 0-124-345-1235-2-356 after digit always 컘 0-124-345-1235-26 after digit always ì»™ 0-124-345-1235-12 after digit always 컚 0-124-345-1235-12-3 after digit always ì»› 0-124-345-1235-3 after digit always 컜 0-124-345-1235-34 after digit always ì» 0-124-345-1235-2356 after digit always 컞 0-124-345-1235-13 after digit always 컟 0-124-345-1235-23 after digit always ì»  0-124-345-1235-235 after digit always 컡 0-124-345-1235-236 after digit always 컢 0-124-345-1235-256 after digit always 컣 0-124-345-1235-356 after digit always 커 0-124-234 after digit always 컫 0-124-234-35 after digit always ì»´ 0-124-234-26 after digit always 컵 0-124-234-12 after digit always ì»¶ 0-124-234-12-3 after digit always ì»· 0-124-234-3 after digit always 컸 0-124-234-34 after digit always 컹 0-124-234-2356 after digit always 컺 0-124-234-13 after digit always ì»» 0-124-234-23 after digit always 컼 0-124-234-235 after digit always 컽 0-124-234-236 after digit always 컾 0-124-234-256 after digit always 컿 0-124-234-356 after digit always ì¼€ 0-124-1345 after digit always ì¼ 0-124-1345-1 after digit always 켂 0-124-1345-1-1 after digit always 켃 0-124-1345-1-3 after digit always 켄 0-124-1345-25 after digit always ì¼… 0-124-1345-25-13 after digit always 켆 0-124-1345-25-356 after digit always 켇 0-124-1345-35 after digit always 켈 0-124-1345-2 after digit always 켉 0-124-1345-2-1 after digit always 켊 0-124-1345-2-26 after digit always 켋 0-124-1345-2-12 after digit always 켌 0-124-1345-2-3 after digit always ì¼ 0-124-1345-2-236 after digit always 켎 0-124-1345-2-256 after digit always ì¼ 0-124-1345-2-356 after digit always ì¼ 0-124-1345-26 after digit always 켑 0-124-1345-12 after digit always ì¼’ 0-124-1345-12-3 after digit always 켓 0-124-1345-3 after digit always ì¼” 0-124-1345-34 after digit always 켕 0-124-1345-2356 after digit always ì¼– 0-124-1345-13 after digit always ì¼— 0-124-1345-23 after digit always 켘 0-124-1345-235 after digit always ì¼™ 0-124-1345-236 after digit always 켚 0-124-1345-256 after digit always ì¼› 0-124-1345-356 after digit always 켜 0-124-156 after digit always ì¼ 0-124-156-1 after digit always 켞 0-124-156-1-1 after digit always 켟 0-124-156-1-3 after digit always ì¼£ 0-124-156-35 after digit always 켬 0-124-156-26 after digit always ì¼­ 0-124-156-12 after digit always ì¼® 0-124-156-12-3 after digit always 켯 0-124-156-3 after digit always ì¼° 0-124-156-34 after digit always ì¼² 0-124-156-13 after digit always ì¼³ 0-124-156-23 after digit always ì¼´ 0-124-156-235 after digit always ì¼µ 0-124-156-236 after digit always ì¼¶ 0-124-156-256 after digit always ì¼· 0-124-156-356 after digit always 켸 0-124-34 after digit always ì¼¹ 0-124-34-1 after digit always 켺 0-124-34-1-1 after digit always ì¼» 0-124-34-1-3 after digit always ì¼¼ 0-124-34-25 after digit always ì¼½ 0-124-34-25-13 after digit always ì¼¾ 0-124-34-25-356 after digit always 켿 0-124-34-35 after digit always ì½€ 0-124-34-2 after digit always ì½ 0-124-34-2-1 after digit always 콂 0-124-34-2-26 after digit always 콃 0-124-34-2-12 after digit always 콄 0-124-34-2-3 after digit always ì½… 0-124-34-2-236 after digit always 콆 0-124-34-2-256 after digit always 콇 0-124-34-2-356 after digit always 콈 0-124-34-26 after digit always 콉 0-124-34-12 after digit always 콊 0-124-34-12-3 after digit always 콋 0-124-34-3 after digit always 콌 0-124-34-34 after digit always ì½ 0-124-34-2356 after digit always 콎 0-124-34-13 after digit always ì½ 0-124-34-23 after digit always ì½ 0-124-34-235 after digit always 콑 0-124-34-236 after digit always ì½’ 0-124-34-256 after digit always 콓 0-124-34-356 after digit always ì½” 0-124-136 after digit always ì½› 0-124-136-35 after digit always 콜 0-124-136-2 after digit always ì½ 0-124-136-2-1 after digit always 콞 0-124-136-2-26 after digit always 콟 0-124-136-2-12 after digit always ì½  0-124-136-2-3 after digit always 콡 0-124-136-2-236 after digit always ì½¢ 0-124-136-2-256 after digit always ì½£ 0-124-136-2-356 after digit always 콤 0-124-136-26 after digit always ì½¥ 0-124-136-12 after digit always 콦 0-124-136-12-3 after digit always ì½§ 0-124-136-3 after digit always 콨 0-124-136-34 after digit always 콪 0-124-136-13 after digit always 콫 0-124-136-23 after digit always 콬 0-124-136-235 after digit always ì½­ 0-124-136-236 after digit always ì½® 0-124-136-256 after digit always 콯 0-124-136-356 after digit always ì½° 0-124-1236 after digit always ì½± 0-124-1236-1 after digit always ì½² 0-124-1236-1-1 after digit always ì½³ 0-124-1236-1-3 after digit always ì½´ 0-124-1236-25 after digit always ì½µ 0-124-1236-25-13 after digit always ì½¶ 0-124-1236-25-356 after digit always ì½· 0-124-1236-35 after digit always 콸 0-124-1236-2 after digit always ì½¹ 0-124-1236-2-1 after digit always 콺 0-124-1236-2-26 after digit always ì½» 0-124-1236-2-12 after digit always ì½¼ 0-124-1236-2-3 after digit always ì½½ 0-124-1236-2-236 after digit always ì½¾ 0-124-1236-2-256 after digit always 콿 0-124-1236-2-356 after digit always ì¾€ 0-124-1236-26 after digit always ì¾ 0-124-1236-12 after digit always 쾂 0-124-1236-12-3 after digit always 쾃 0-124-1236-3 after digit always 쾄 0-124-1236-34 after digit always ì¾… 0-124-1236-2356 after digit always 쾆 0-124-1236-13 after digit always 쾇 0-124-1236-23 after digit always 쾈 0-124-1236-235 after digit always 쾉 0-124-1236-236 after digit always 쾊 0-124-1236-256 after digit always 쾋 0-124-1236-356 after digit always 쾌 0-124-1236-1235 after digit always ì¾ 0-124-1236-1235-1 after digit always 쾎 0-124-1236-1235-1-1 after digit always ì¾ 0-124-1236-1235-1-3 after digit always ì¾ 0-124-1236-1235-25 after digit always 쾑 0-124-1236-1235-25-13 after digit always ì¾’ 0-124-1236-1235-25-356 after digit always 쾓 0-124-1236-1235-35 after digit always ì¾” 0-124-1236-1235-2 after digit always 쾕 0-124-1236-1235-2-1 after digit always ì¾– 0-124-1236-1235-2-26 after digit always ì¾— 0-124-1236-1235-2-12 after digit always 쾘 0-124-1236-1235-2-3 after digit always ì¾™ 0-124-1236-1235-2-236 after digit always 쾚 0-124-1236-1235-2-256 after digit always ì¾› 0-124-1236-1235-2-356 after digit always 쾜 0-124-1236-1235-26 after digit always ì¾ 0-124-1236-1235-12 after digit always 쾞 0-124-1236-1235-12-3 after digit always 쾟 0-124-1236-1235-3 after digit always ì¾  0-124-1236-1235-34 after digit always 쾡 0-124-1236-1235-2356 after digit always ì¾¢ 0-124-1236-1235-13 after digit always ì¾£ 0-124-1236-1235-23 after digit always 쾤 0-124-1236-1235-235 after digit always ì¾¥ 0-124-1236-1235-236 after digit always 쾦 0-124-1236-1235-256 after digit always ì¾§ 0-124-1236-1235-356 after digit always 쾨 0-124-13456 after digit always 쾩 0-124-13456-1 after digit always 쾪 0-124-13456-1-1 after digit always 쾫 0-124-13456-1-3 after digit always 쾬 0-124-13456-25 after digit always ì¾­ 0-124-13456-25-13 after digit always ì¾® 0-124-13456-25-356 after digit always 쾯 0-124-13456-35 after digit always ì¾° 0-124-13456-2 after digit always ì¾± 0-124-13456-2-1 after digit always ì¾² 0-124-13456-2-26 after digit always ì¾³ 0-124-13456-2-12 after digit always ì¾´ 0-124-13456-2-3 after digit always ì¾µ 0-124-13456-2-236 after digit always ì¾¶ 0-124-13456-2-256 after digit always ì¾· 0-124-13456-2-356 after digit always 쾸 0-124-13456-26 after digit always ì¾¹ 0-124-13456-12 after digit always 쾺 0-124-13456-12-3 after digit always ì¾» 0-124-13456-3 after digit always ì¾¼ 0-124-13456-34 after digit always ì¾½ 0-124-13456-2356 after digit always ì¾¾ 0-124-13456-13 after digit always 쾿 0-124-13456-23 after digit always ì¿€ 0-124-13456-235 after digit always ì¿ 0-124-13456-236 after digit always ì¿‚ 0-124-13456-256 after digit always 쿃 0-124-13456-356 after digit always ì¿„ 0-124-346 after digit always ì¿… 0-124-346-1 after digit always 쿆 0-124-346-1-1 after digit always 쿇 0-124-346-1-3 after digit always 쿈 0-124-346-25 after digit always 쿉 0-124-346-25-13 after digit always 쿊 0-124-346-25-356 after digit always ì¿‹ 0-124-346-35 after digit always 쿌 0-124-346-2 after digit always ì¿ 0-124-346-2-1 after digit always 쿎 0-124-346-2-26 after digit always ì¿ 0-124-346-2-12 after digit always ì¿ 0-124-346-2-3 after digit always ì¿‘ 0-124-346-2-236 after digit always ì¿’ 0-124-346-2-256 after digit always ì¿“ 0-124-346-2-356 after digit always ì¿” 0-124-346-26 after digit always ì¿• 0-124-346-12 after digit always ì¿– 0-124-346-12-3 after digit always ì¿— 0-124-346-3 after digit always 쿘 0-124-346-34 after digit always ì¿™ 0-124-346-2356 after digit always 쿚 0-124-346-13 after digit always ì¿› 0-124-346-23 after digit always 쿜 0-124-346-235 after digit always ì¿ 0-124-346-236 after digit always 쿞 0-124-346-256 after digit always 쿟 0-124-346-356 after digit always ì¿  0-124-134 after digit always ì¿¡ 0-124-134-1 after digit always ì¿¢ 0-124-134-1-1 after digit always ì¿£ 0-124-134-1-3 after digit always ì¿§ 0-124-134-35 after digit always ì¿° 0-124-134-26 after digit always 쿱 0-124-134-12 after digit always 쿲 0-124-134-12-3 after digit always 쿳 0-124-134-3 after digit always ì¿´ 0-124-134-34 after digit always 쿵 0-124-134-2356 after digit always ì¿¶ 0-124-134-13 after digit always ì¿· 0-124-134-23 after digit always 쿸 0-124-134-235 after digit always 쿹 0-124-134-236 after digit always 쿺 0-124-134-256 after digit always ì¿» 0-124-134-356 after digit always 쿼 0-124-1234 after digit always 쿽 0-124-1234-1 after digit always 쿾 0-124-1234-1-1 after digit always ì¿¿ 0-124-1234-1-3 after digit always 퀀 0-124-1234-25 after digit always í€ 0-124-1234-25-13 after digit always 퀂 0-124-1234-25-356 after digit always 퀃 0-124-1234-35 after digit always 퀄 0-124-1234-2 after digit always 퀅 0-124-1234-2-1 after digit always 퀆 0-124-1234-2-26 after digit always 퀇 0-124-1234-2-12 after digit always 퀈 0-124-1234-2-3 after digit always 퀉 0-124-1234-2-236 after digit always 퀊 0-124-1234-2-256 after digit always 퀋 0-124-1234-2-356 after digit always 퀌 0-124-1234-26 after digit always í€ 0-124-1234-12 after digit always 퀎 0-124-1234-12-3 after digit always í€ 0-124-1234-3 after digit always í€ 0-124-1234-34 after digit always 퀑 0-124-1234-2356 after digit always 퀒 0-124-1234-13 after digit always 퀓 0-124-1234-23 after digit always 퀔 0-124-1234-235 after digit always 퀕 0-124-1234-236 after digit always 퀖 0-124-1234-256 after digit always 퀗 0-124-1234-356 after digit always 퀘 0-124-1234-1235 after digit always 퀙 0-124-1234-1235-1 after digit always 퀚 0-124-1234-1235-1-1 after digit always 퀛 0-124-1234-1235-1-3 after digit always 퀜 0-124-1234-1235-25 after digit always í€ 0-124-1234-1235-25-13 after digit always 퀞 0-124-1234-1235-25-356 after digit always 퀟 0-124-1234-1235-35 after digit always 퀠 0-124-1234-1235-2 after digit always 퀡 0-124-1234-1235-2-1 after digit always 퀢 0-124-1234-1235-2-26 after digit always 퀣 0-124-1234-1235-2-12 after digit always 퀤 0-124-1234-1235-2-3 after digit always 퀥 0-124-1234-1235-2-236 after digit always 퀦 0-124-1234-1235-2-256 after digit always 퀧 0-124-1234-1235-2-356 after digit always 퀨 0-124-1234-1235-26 after digit always 퀩 0-124-1234-1235-12 after digit always 퀪 0-124-1234-1235-12-3 after digit always 퀫 0-124-1234-1235-3 after digit always 퀬 0-124-1234-1235-34 after digit always 퀭 0-124-1234-1235-2356 after digit always 퀮 0-124-1234-1235-13 after digit always 퀯 0-124-1234-1235-23 after digit always 퀰 0-124-1234-1235-235 after digit always 퀱 0-124-1234-1235-236 after digit always 퀲 0-124-1234-1235-256 after digit always 퀳 0-124-1234-1235-356 after digit always 퀴 0-124-134-1235 after digit always 퀵 0-124-134-1235-1 after digit always 퀶 0-124-134-1235-1-1 after digit always 퀷 0-124-134-1235-1-3 after digit always 퀸 0-124-134-1235-25 after digit always 퀹 0-124-134-1235-25-13 after digit always 퀺 0-124-134-1235-25-356 after digit always 퀻 0-124-134-1235-35 after digit always 퀼 0-124-134-1235-2 after digit always 퀽 0-124-134-1235-2-1 after digit always 퀾 0-124-134-1235-2-26 after digit always 퀿 0-124-134-1235-2-12 after digit always í€ 0-124-134-1235-2-3 after digit always í 0-124-134-1235-2-236 after digit always í‚ 0-124-134-1235-2-256 after digit always íƒ 0-124-134-1235-2-356 after digit always í„ 0-124-134-1235-26 after digit always í… 0-124-134-1235-12 after digit always í† 0-124-134-1235-12-3 after digit always í‡ 0-124-134-1235-3 after digit always íˆ 0-124-134-1235-34 after digit always í‰ 0-124-134-1235-2356 after digit always íŠ 0-124-134-1235-13 after digit always í‹ 0-124-134-1235-23 after digit always íŒ 0-124-134-1235-235 after digit always í 0-124-134-1235-236 after digit always íŽ 0-124-134-1235-256 after digit always í 0-124-134-1235-356 after digit always í 0-124-146 after digit always í‘ 0-124-146-1 after digit always í’ 0-124-146-1-1 after digit always í“ 0-124-146-1-3 after digit always í” 0-124-146-25 after digit always í• 0-124-146-25-13 after digit always í– 0-124-146-25-356 after digit always í— 0-124-146-35 after digit always í˜ 0-124-146-2 after digit always í™ 0-124-146-2-1 after digit always íš 0-124-146-2-26 after digit always í› 0-124-146-2-12 after digit always íœ 0-124-146-2-3 after digit always í 0-124-146-2-236 after digit always íž 0-124-146-2-256 after digit always íŸ 0-124-146-2-356 after digit always í  0-124-146-26 after digit always í¡ 0-124-146-12 after digit always í¢ 0-124-146-12-3 after digit always í£ 0-124-146-3 after digit always í¤ 0-124-146-34 after digit always í¥ 0-124-146-2356 after digit always í¦ 0-124-146-13 after digit always í§ 0-124-146-23 after digit always í¨ 0-124-146-235 after digit always í© 0-124-146-236 after digit always íª 0-124-146-256 after digit always í« 0-124-146-356 after digit always í¬ 0-124-246 after digit always í­ 0-124-246-1 after digit always í® 0-124-246-1-1 after digit always í¯ 0-124-246-1-3 after digit always í³ 0-124-246-35 after digit always í¼ 0-124-246-26 after digit always í½ 0-124-246-12 after digit always í¾ 0-124-246-12-3 after digit always í¿ 0-124-246-3 after digit always í‚€ 0-124-246-34 after digit always í‚ 0-124-246-2356 after digit always í‚‚ 0-124-246-13 after digit always 킃 0-124-246-23 after digit always í‚„ 0-124-246-235 after digit always í‚… 0-124-246-236 after digit always 킆 0-124-246-256 after digit always 킇 0-124-246-356 after digit always 킈 0-124-2456 after digit always 킉 0-124-2456-1 after digit always 킊 0-124-2456-1-1 after digit always í‚‹ 0-124-2456-1-3 after digit always 킌 0-124-2456-25 after digit always í‚ 0-124-2456-25-13 after digit always 킎 0-124-2456-25-356 after digit always í‚ 0-124-2456-35 after digit always í‚ 0-124-2456-2 after digit always í‚‘ 0-124-2456-2-1 after digit always í‚’ 0-124-2456-2-26 after digit always í‚“ 0-124-2456-2-12 after digit always í‚” 0-124-2456-2-3 after digit always í‚• 0-124-2456-2-236 after digit always í‚– 0-124-2456-2-256 after digit always í‚— 0-124-2456-2-356 after digit always 킘 0-124-2456-26 after digit always í‚™ 0-124-2456-12 after digit always 킚 0-124-2456-12-3 after digit always í‚› 0-124-2456-3 after digit always 킜 0-124-2456-34 after digit always í‚ 0-124-2456-2356 after digit always 킞 0-124-2456-13 after digit always 킟 0-124-2456-23 after digit always í‚  0-124-2456-235 after digit always í‚¡ 0-124-2456-236 after digit always í‚¢ 0-124-2456-256 after digit always í‚£ 0-124-2456-356 after digit always 키 0-124-135 after digit always í‚¥ 0-124-135-1 after digit always 킦 0-124-135-1-1 after digit always í‚§ 0-124-135-1-3 after digit always í‚« 0-124-135-35 after digit always 킬 0-124-135-2 after digit always í‚­ 0-124-135-2-1 after digit always í‚® 0-124-135-2-26 after digit always 킯 0-124-135-2-12 after digit always í‚° 0-124-135-2-3 after digit always 킱 0-124-135-2-236 after digit always 킲 0-124-135-2-256 after digit always 킳 0-124-135-2-356 after digit always í‚´ 0-124-135-26 after digit always 킵 0-124-135-12 after digit always í‚¶ 0-124-135-12-3 after digit always í‚· 0-124-135-3 after digit always 킸 0-124-135-34 after digit always 킹 0-124-135-2356 after digit always 킺 0-124-135-13 after digit always í‚» 0-124-135-23 after digit always 킼 0-124-135-235 after digit always 킽 0-124-135-236 after digit always 킾 0-124-135-256 after digit always í‚¿ 0-124-135-356 after digit always 태 0-125-1235 after digit always íƒ 0-125-1235-1 after digit always 탞 0-125-1235-1-1 after digit always 탟 0-125-1235-1-3 after digit always 탠 0-125-1235-25 after digit always 탡 0-125-1235-25-13 after digit always 탢 0-125-1235-25-356 after digit always 탣 0-125-1235-35 after digit always 탤 0-125-1235-2 after digit always 탥 0-125-1235-2-1 after digit always 탦 0-125-1235-2-26 after digit always 탧 0-125-1235-2-12 after digit always 탨 0-125-1235-2-3 after digit always 탩 0-125-1235-2-236 after digit always 탪 0-125-1235-2-256 after digit always 탫 0-125-1235-2-356 after digit always 탬 0-125-1235-26 after digit always 탭 0-125-1235-12 after digit always 탮 0-125-1235-12-3 after digit always 탯 0-125-1235-3 after digit always 탰 0-125-1235-34 after digit always 탱 0-125-1235-2356 after digit always 탲 0-125-1235-13 after digit always 탳 0-125-1235-23 after digit always 탴 0-125-1235-235 after digit always 탵 0-125-1235-236 after digit always 탶 0-125-1235-256 after digit always 탷 0-125-1235-356 after digit always 탸 0-125-345 after digit always 탹 0-125-345-1 after digit always 탺 0-125-345-1-1 after digit always 탻 0-125-345-1-3 after digit always 탼 0-125-345-25 after digit always 탽 0-125-345-25-13 after digit always 탾 0-125-345-25-356 after digit always 탿 0-125-345-35 after digit always í„€ 0-125-345-2 after digit always í„ 0-125-345-2-1 after digit always í„‚ 0-125-345-2-26 after digit always 턃 0-125-345-2-12 after digit always í„„ 0-125-345-2-3 after digit always í„… 0-125-345-2-236 after digit always 턆 0-125-345-2-256 after digit always 턇 0-125-345-2-356 after digit always 턈 0-125-345-26 after digit always 턉 0-125-345-12 after digit always 턊 0-125-345-12-3 after digit always í„‹ 0-125-345-3 after digit always 턌 0-125-345-34 after digit always í„ 0-125-345-2356 after digit always 턎 0-125-345-13 after digit always í„ 0-125-345-23 after digit always í„ 0-125-345-235 after digit always í„‘ 0-125-345-236 after digit always í„’ 0-125-345-256 after digit always í„“ 0-125-345-356 after digit always í„” 0-125-345-1235 after digit always í„• 0-125-345-1235-1 after digit always í„– 0-125-345-1235-1-1 after digit always í„— 0-125-345-1235-1-3 after digit always 턘 0-125-345-1235-25 after digit always í„™ 0-125-345-1235-25-13 after digit always 턚 0-125-345-1235-25-356 after digit always í„› 0-125-345-1235-35 after digit always 턜 0-125-345-1235-2 after digit always í„ 0-125-345-1235-2-1 after digit always 턞 0-125-345-1235-2-26 after digit always 턟 0-125-345-1235-2-12 after digit always í„  0-125-345-1235-2-3 after digit always í„¡ 0-125-345-1235-2-236 after digit always í„¢ 0-125-345-1235-2-256 after digit always í„£ 0-125-345-1235-2-356 after digit always 턤 0-125-345-1235-26 after digit always í„¥ 0-125-345-1235-12 after digit always 턦 0-125-345-1235-12-3 after digit always í„§ 0-125-345-1235-3 after digit always 턨 0-125-345-1235-34 after digit always í„© 0-125-345-1235-2356 after digit always 턪 0-125-345-1235-13 after digit always í„« 0-125-345-1235-23 after digit always 턬 0-125-345-1235-235 after digit always í„­ 0-125-345-1235-236 after digit always í„® 0-125-345-1235-256 after digit always 턯 0-125-345-1235-356 after digit always í„° 0-125-234 after digit always í„· 0-125-234-35 after digit always í…€ 0-125-234-26 after digit always í… 0-125-234-12 after digit always í…‚ 0-125-234-12-3 after digit always í…ƒ 0-125-234-3 after digit always í…„ 0-125-234-34 after digit always í…… 0-125-234-2356 after digit always í…† 0-125-234-13 after digit always í…‡ 0-125-234-23 after digit always í…ˆ 0-125-234-235 after digit always í…‰ 0-125-234-236 after digit always í…Š 0-125-234-256 after digit always í…‹ 0-125-234-356 after digit always í…Œ 0-125-1345 after digit always í… 0-125-1345-1 after digit always í…Ž 0-125-1345-1-1 after digit always í… 0-125-1345-1-3 after digit always í… 0-125-1345-25 after digit always í…‘ 0-125-1345-25-13 after digit always í…’ 0-125-1345-25-356 after digit always í…“ 0-125-1345-35 after digit always í…” 0-125-1345-2 after digit always í…• 0-125-1345-2-1 after digit always í…– 0-125-1345-2-26 after digit always í…— 0-125-1345-2-12 after digit always í…˜ 0-125-1345-2-3 after digit always í…™ 0-125-1345-2-236 after digit always í…š 0-125-1345-2-256 after digit always í…› 0-125-1345-2-356 after digit always í…œ 0-125-1345-26 after digit always í… 0-125-1345-12 after digit always í…ž 0-125-1345-12-3 after digit always í…Ÿ 0-125-1345-3 after digit always í…  0-125-1345-34 after digit always í…¡ 0-125-1345-2356 after digit always í…¢ 0-125-1345-13 after digit always í…£ 0-125-1345-23 after digit always í…¤ 0-125-1345-235 after digit always í…¥ 0-125-1345-236 after digit always í…¦ 0-125-1345-256 after digit always í…§ 0-125-1345-356 after digit always í…¨ 0-125-156 after digit always í…© 0-125-156-1 after digit always í…ª 0-125-156-1-1 after digit always í…« 0-125-156-1-3 after digit always í…¯ 0-125-156-35 after digit always í…¸ 0-125-156-26 after digit always í…¹ 0-125-156-12 after digit always í…º 0-125-156-12-3 after digit always í…» 0-125-156-3 after digit always í…¼ 0-125-156-34 after digit always í…¾ 0-125-156-13 after digit always í…¿ 0-125-156-23 after digit always 톀 0-125-156-235 after digit always í† 0-125-156-236 after digit always 톂 0-125-156-256 after digit always 톃 0-125-156-356 after digit always 톄 0-125-34 after digit always 톅 0-125-34-1 after digit always 톆 0-125-34-1-1 after digit always 톇 0-125-34-1-3 after digit always 톈 0-125-34-25 after digit always 톉 0-125-34-25-13 after digit always 톊 0-125-34-25-356 after digit always 톋 0-125-34-35 after digit always 톌 0-125-34-2 after digit always í† 0-125-34-2-1 after digit always 톎 0-125-34-2-26 after digit always í† 0-125-34-2-12 after digit always í† 0-125-34-2-3 after digit always 톑 0-125-34-2-236 after digit always 톒 0-125-34-2-256 after digit always 톓 0-125-34-2-356 after digit always 톔 0-125-34-26 after digit always 톕 0-125-34-12 after digit always 톖 0-125-34-12-3 after digit always 톗 0-125-34-3 after digit always 톘 0-125-34-34 after digit always 톙 0-125-34-2356 after digit always 톚 0-125-34-13 after digit always 톛 0-125-34-23 after digit always 톜 0-125-34-235 after digit always í† 0-125-34-236 after digit always 톞 0-125-34-256 after digit always 톟 0-125-34-356 after digit always 토 0-125-136 after digit always 톧 0-125-136-35 after digit always 톨 0-125-136-2 after digit always 톩 0-125-136-2-1 after digit always 톪 0-125-136-2-26 after digit always 톫 0-125-136-2-12 after digit always 톬 0-125-136-2-3 after digit always 톭 0-125-136-2-236 after digit always 톮 0-125-136-2-256 after digit always 톯 0-125-136-2-356 after digit always 톰 0-125-136-26 after digit always 톱 0-125-136-12 after digit always 톲 0-125-136-12-3 after digit always 톳 0-125-136-3 after digit always 톴 0-125-136-34 after digit always 톶 0-125-136-13 after digit always 톷 0-125-136-23 after digit always 톸 0-125-136-235 after digit always 톹 0-125-136-236 after digit always 톺 0-125-136-256 after digit always 톻 0-125-136-356 after digit always 톼 0-125-1236 after digit always 톽 0-125-1236-1 after digit always 톾 0-125-1236-1-1 after digit always 톿 0-125-1236-1-3 after digit always 퇀 0-125-1236-25 after digit always í‡ 0-125-1236-25-13 after digit always 퇂 0-125-1236-25-356 after digit always 퇃 0-125-1236-35 after digit always 퇄 0-125-1236-2 after digit always 퇅 0-125-1236-2-1 after digit always 퇆 0-125-1236-2-26 after digit always 퇇 0-125-1236-2-12 after digit always 퇈 0-125-1236-2-3 after digit always 퇉 0-125-1236-2-236 after digit always 퇊 0-125-1236-2-256 after digit always 퇋 0-125-1236-2-356 after digit always 퇌 0-125-1236-26 after digit always í‡ 0-125-1236-12 after digit always 퇎 0-125-1236-12-3 after digit always í‡ 0-125-1236-3 after digit always í‡ 0-125-1236-34 after digit always 퇑 0-125-1236-2356 after digit always 퇒 0-125-1236-13 after digit always 퇓 0-125-1236-23 after digit always 퇔 0-125-1236-235 after digit always 퇕 0-125-1236-236 after digit always 퇖 0-125-1236-256 after digit always 퇗 0-125-1236-356 after digit always 퇘 0-125-1236-1235 after digit always 퇙 0-125-1236-1235-1 after digit always 퇚 0-125-1236-1235-1-1 after digit always 퇛 0-125-1236-1235-1-3 after digit always 퇜 0-125-1236-1235-25 after digit always í‡ 0-125-1236-1235-25-13 after digit always 퇞 0-125-1236-1235-25-356 after digit always 퇟 0-125-1236-1235-35 after digit always 퇠 0-125-1236-1235-2 after digit always 퇡 0-125-1236-1235-2-1 after digit always 퇢 0-125-1236-1235-2-26 after digit always 퇣 0-125-1236-1235-2-12 after digit always 퇤 0-125-1236-1235-2-3 after digit always 퇥 0-125-1236-1235-2-236 after digit always 퇦 0-125-1236-1235-2-256 after digit always 퇧 0-125-1236-1235-2-356 after digit always 퇨 0-125-1236-1235-26 after digit always 퇩 0-125-1236-1235-12 after digit always 퇪 0-125-1236-1235-12-3 after digit always 퇫 0-125-1236-1235-3 after digit always 퇬 0-125-1236-1235-34 after digit always 퇭 0-125-1236-1235-2356 after digit always 퇮 0-125-1236-1235-13 after digit always 퇯 0-125-1236-1235-23 after digit always 퇰 0-125-1236-1235-235 after digit always 퇱 0-125-1236-1235-236 after digit always 퇲 0-125-1236-1235-256 after digit always 퇳 0-125-1236-1235-356 after digit always 퇴 0-125-13456 after digit always 퇵 0-125-13456-1 after digit always 퇶 0-125-13456-1-1 after digit always 퇷 0-125-13456-1-3 after digit always 퇸 0-125-13456-25 after digit always 퇹 0-125-13456-25-13 after digit always 퇺 0-125-13456-25-356 after digit always 퇻 0-125-13456-35 after digit always 퇼 0-125-13456-2 after digit always 퇽 0-125-13456-2-1 after digit always 퇾 0-125-13456-2-26 after digit always 퇿 0-125-13456-2-12 after digit always 툀 0-125-13456-2-3 after digit always íˆ 0-125-13456-2-236 after digit always 툂 0-125-13456-2-256 after digit always 툃 0-125-13456-2-356 after digit always 툄 0-125-13456-26 after digit always 툅 0-125-13456-12 after digit always 툆 0-125-13456-12-3 after digit always 툇 0-125-13456-3 after digit always 툈 0-125-13456-34 after digit always 툉 0-125-13456-2356 after digit always 툊 0-125-13456-13 after digit always 툋 0-125-13456-23 after digit always 툌 0-125-13456-235 after digit always íˆ 0-125-13456-236 after digit always 툎 0-125-13456-256 after digit always íˆ 0-125-13456-356 after digit always íˆ 0-125-346 after digit always 툑 0-125-346-1 after digit always 툒 0-125-346-1-1 after digit always 툓 0-125-346-1-3 after digit always 툔 0-125-346-25 after digit always 툕 0-125-346-25-13 after digit always 툖 0-125-346-25-356 after digit always 툗 0-125-346-35 after digit always 툘 0-125-346-2 after digit always 툙 0-125-346-2-1 after digit always 툚 0-125-346-2-26 after digit always 툛 0-125-346-2-12 after digit always 툜 0-125-346-2-3 after digit always íˆ 0-125-346-2-236 after digit always 툞 0-125-346-2-256 after digit always 툟 0-125-346-2-356 after digit always 툠 0-125-346-26 after digit always 툡 0-125-346-12 after digit always 툢 0-125-346-12-3 after digit always 툣 0-125-346-3 after digit always 툤 0-125-346-34 after digit always 툥 0-125-346-2356 after digit always 툦 0-125-346-13 after digit always 툧 0-125-346-23 after digit always 툨 0-125-346-235 after digit always 툩 0-125-346-236 after digit always 툪 0-125-346-256 after digit always 툫 0-125-346-356 after digit always 투 0-125-134 after digit always 툭 0-125-134-1 after digit always 툮 0-125-134-1-1 after digit always 툯 0-125-134-1-3 after digit always 툳 0-125-134-35 after digit always 툼 0-125-134-26 after digit always 툽 0-125-134-12 after digit always 툾 0-125-134-12-3 after digit always 툿 0-125-134-3 after digit always 퉀 0-125-134-34 after digit always í‰ 0-125-134-2356 after digit always 퉂 0-125-134-13 after digit always 퉃 0-125-134-23 after digit always 퉄 0-125-134-235 after digit always 퉅 0-125-134-236 after digit always 퉆 0-125-134-256 after digit always 퉇 0-125-134-356 after digit always 퉈 0-125-1234 after digit always 퉉 0-125-1234-1 after digit always 퉊 0-125-1234-1-1 after digit always 퉋 0-125-1234-1-3 after digit always 퉌 0-125-1234-25 after digit always í‰ 0-125-1234-25-13 after digit always 퉎 0-125-1234-25-356 after digit always í‰ 0-125-1234-35 after digit always í‰ 0-125-1234-2 after digit always 퉑 0-125-1234-2-1 after digit always 퉒 0-125-1234-2-26 after digit always 퉓 0-125-1234-2-12 after digit always 퉔 0-125-1234-2-3 after digit always 퉕 0-125-1234-2-236 after digit always 퉖 0-125-1234-2-256 after digit always 퉗 0-125-1234-2-356 after digit always 퉘 0-125-1234-26 after digit always 퉙 0-125-1234-12 after digit always 퉚 0-125-1234-12-3 after digit always 퉛 0-125-1234-3 after digit always 퉜 0-125-1234-34 after digit always í‰ 0-125-1234-2356 after digit always 퉞 0-125-1234-13 after digit always 퉟 0-125-1234-23 after digit always 퉠 0-125-1234-235 after digit always 퉡 0-125-1234-236 after digit always 퉢 0-125-1234-256 after digit always 퉣 0-125-1234-356 after digit always 퉤 0-125-1234-1235 after digit always 퉥 0-125-1234-1235-1 after digit always 퉦 0-125-1234-1235-1-1 after digit always 퉧 0-125-1234-1235-1-3 after digit always 퉨 0-125-1234-1235-25 after digit always 퉩 0-125-1234-1235-25-13 after digit always 퉪 0-125-1234-1235-25-356 after digit always 퉫 0-125-1234-1235-35 after digit always 퉬 0-125-1234-1235-2 after digit always 퉭 0-125-1234-1235-2-1 after digit always 퉮 0-125-1234-1235-2-26 after digit always 퉯 0-125-1234-1235-2-12 after digit always 퉰 0-125-1234-1235-2-3 after digit always 퉱 0-125-1234-1235-2-236 after digit always 퉲 0-125-1234-1235-2-256 after digit always 퉳 0-125-1234-1235-2-356 after digit always 퉴 0-125-1234-1235-26 after digit always 퉵 0-125-1234-1235-12 after digit always 퉶 0-125-1234-1235-12-3 after digit always 퉷 0-125-1234-1235-3 after digit always 퉸 0-125-1234-1235-34 after digit always 퉹 0-125-1234-1235-2356 after digit always 퉺 0-125-1234-1235-13 after digit always 퉻 0-125-1234-1235-23 after digit always 퉼 0-125-1234-1235-235 after digit always 퉽 0-125-1234-1235-236 after digit always 퉾 0-125-1234-1235-256 after digit always 퉿 0-125-1234-1235-356 after digit always 튀 0-125-134-1235 after digit always íŠ 0-125-134-1235-1 after digit always 튂 0-125-134-1235-1-1 after digit always 튃 0-125-134-1235-1-3 after digit always 튄 0-125-134-1235-25 after digit always 튅 0-125-134-1235-25-13 after digit always 튆 0-125-134-1235-25-356 after digit always 튇 0-125-134-1235-35 after digit always 튈 0-125-134-1235-2 after digit always 튉 0-125-134-1235-2-1 after digit always 튊 0-125-134-1235-2-26 after digit always 튋 0-125-134-1235-2-12 after digit always 튌 0-125-134-1235-2-3 after digit always íŠ 0-125-134-1235-2-236 after digit always 튎 0-125-134-1235-2-256 after digit always íŠ 0-125-134-1235-2-356 after digit always íŠ 0-125-134-1235-26 after digit always 튑 0-125-134-1235-12 after digit always 튒 0-125-134-1235-12-3 after digit always 튓 0-125-134-1235-3 after digit always 튔 0-125-134-1235-34 after digit always 튕 0-125-134-1235-2356 after digit always 튖 0-125-134-1235-13 after digit always 튗 0-125-134-1235-23 after digit always 튘 0-125-134-1235-235 after digit always 튙 0-125-134-1235-236 after digit always 튚 0-125-134-1235-256 after digit always 튛 0-125-134-1235-356 after digit always 튜 0-125-146 after digit always íŠ 0-125-146-1 after digit always 튞 0-125-146-1-1 after digit always 튟 0-125-146-1-3 after digit always 튠 0-125-146-25 after digit always 튡 0-125-146-25-13 after digit always 튢 0-125-146-25-356 after digit always 튣 0-125-146-35 after digit always 튤 0-125-146-2 after digit always 튥 0-125-146-2-1 after digit always 튦 0-125-146-2-26 after digit always 튧 0-125-146-2-12 after digit always 튨 0-125-146-2-3 after digit always 튩 0-125-146-2-236 after digit always 튪 0-125-146-2-256 after digit always 튫 0-125-146-2-356 after digit always 튬 0-125-146-26 after digit always 튭 0-125-146-12 after digit always 튮 0-125-146-12-3 after digit always 튯 0-125-146-3 after digit always 튰 0-125-146-34 after digit always 튱 0-125-146-2356 after digit always 튲 0-125-146-13 after digit always 튳 0-125-146-23 after digit always 튴 0-125-146-235 after digit always 튵 0-125-146-236 after digit always 튶 0-125-146-256 after digit always 튷 0-125-146-356 after digit always 트 0-125-246 after digit always 특 0-125-246-1 after digit always 튺 0-125-246-1-1 after digit always 튻 0-125-246-1-3 after digit always 튿 0-125-246-35 after digit always 틈 0-125-246-26 after digit always 틉 0-125-246-12 after digit always 틊 0-125-246-12-3 after digit always í‹‹ 0-125-246-3 after digit always 틌 0-125-246-34 after digit always í‹ 0-125-246-2356 after digit always 틎 0-125-246-13 after digit always í‹ 0-125-246-23 after digit always í‹ 0-125-246-235 after digit always í‹‘ 0-125-246-236 after digit always í‹’ 0-125-246-256 after digit always í‹“ 0-125-246-356 after digit always í‹” 0-125-2456 after digit always í‹• 0-125-2456-1 after digit always í‹– 0-125-2456-1-1 after digit always í‹— 0-125-2456-1-3 after digit always 틘 0-125-2456-25 after digit always í‹™ 0-125-2456-25-13 after digit always 틚 0-125-2456-25-356 after digit always í‹› 0-125-2456-35 after digit always 틜 0-125-2456-2 after digit always í‹ 0-125-2456-2-1 after digit always 틞 0-125-2456-2-26 after digit always 틟 0-125-2456-2-12 after digit always í‹  0-125-2456-2-3 after digit always í‹¡ 0-125-2456-2-236 after digit always í‹¢ 0-125-2456-2-256 after digit always í‹£ 0-125-2456-2-356 after digit always 틤 0-125-2456-26 after digit always í‹¥ 0-125-2456-12 after digit always 틦 0-125-2456-12-3 after digit always í‹§ 0-125-2456-3 after digit always 틨 0-125-2456-34 after digit always í‹© 0-125-2456-2356 after digit always 틪 0-125-2456-13 after digit always í‹« 0-125-2456-23 after digit always 틬 0-125-2456-235 after digit always í‹­ 0-125-2456-236 after digit always í‹® 0-125-2456-256 after digit always 틯 0-125-2456-356 after digit always í‹° 0-125-135 after digit always 틱 0-125-135-1 after digit always 틲 0-125-135-1-1 after digit always 틳 0-125-135-1-3 after digit always í‹· 0-125-135-35 after digit always 틸 0-125-135-2 after digit always 틹 0-125-135-2-1 after digit always 틺 0-125-135-2-26 after digit always í‹» 0-125-135-2-12 after digit always 틼 0-125-135-2-3 after digit always 틽 0-125-135-2-236 after digit always 틾 0-125-135-2-256 after digit always í‹¿ 0-125-135-2-356 after digit always 팀 0-125-135-26 after digit always íŒ 0-125-135-12 after digit always 팂 0-125-135-12-3 after digit always 팃 0-125-135-3 after digit always 팄 0-125-135-34 after digit always 팅 0-125-135-2356 after digit always 팆 0-125-135-13 after digit always 팇 0-125-135-23 after digit always 팈 0-125-135-235 after digit always 팉 0-125-135-236 after digit always 팊 0-125-135-256 after digit always 팋 0-125-135-356 after digit always 패 0-145-1235 after digit always 팩 0-145-1235-1 after digit always 팪 0-145-1235-1-1 after digit always 팫 0-145-1235-1-3 after digit always 팬 0-145-1235-25 after digit always 팭 0-145-1235-25-13 after digit always 팮 0-145-1235-25-356 after digit always 팯 0-145-1235-35 after digit always 팰 0-145-1235-2 after digit always 팱 0-145-1235-2-1 after digit always 팲 0-145-1235-2-26 after digit always 팳 0-145-1235-2-12 after digit always 팴 0-145-1235-2-3 after digit always 팵 0-145-1235-2-236 after digit always 팶 0-145-1235-2-256 after digit always 팷 0-145-1235-2-356 after digit always 팸 0-145-1235-26 after digit always 팹 0-145-1235-12 after digit always 팺 0-145-1235-12-3 after digit always 팻 0-145-1235-3 after digit always 팼 0-145-1235-34 after digit always 팽 0-145-1235-2356 after digit always 팾 0-145-1235-13 after digit always 팿 0-145-1235-23 after digit always í€ 0-145-1235-235 after digit always í 0-145-1235-236 after digit always í‚ 0-145-1235-256 after digit always íƒ 0-145-1235-356 after digit always í„ 0-145-345 after digit always í… 0-145-345-1 after digit always í† 0-145-345-1-1 after digit always í‡ 0-145-345-1-3 after digit always íˆ 0-145-345-25 after digit always í‰ 0-145-345-25-13 after digit always íŠ 0-145-345-25-356 after digit always í‹ 0-145-345-35 after digit always íŒ 0-145-345-2 after digit always í 0-145-345-2-1 after digit always íŽ 0-145-345-2-26 after digit always í 0-145-345-2-12 after digit always í 0-145-345-2-3 after digit always í‘ 0-145-345-2-236 after digit always í’ 0-145-345-2-256 after digit always í“ 0-145-345-2-356 after digit always í” 0-145-345-26 after digit always í• 0-145-345-12 after digit always í– 0-145-345-12-3 after digit always í— 0-145-345-3 after digit always í˜ 0-145-345-34 after digit always í™ 0-145-345-2356 after digit always íš 0-145-345-13 after digit always í› 0-145-345-23 after digit always íœ 0-145-345-235 after digit always í 0-145-345-236 after digit always íž 0-145-345-256 after digit always íŸ 0-145-345-356 after digit always í  0-145-345-1235 after digit always í¡ 0-145-345-1235-1 after digit always í¢ 0-145-345-1235-1-1 after digit always í£ 0-145-345-1235-1-3 after digit always í¤ 0-145-345-1235-25 after digit always í¥ 0-145-345-1235-25-13 after digit always í¦ 0-145-345-1235-25-356 after digit always í§ 0-145-345-1235-35 after digit always í¨ 0-145-345-1235-2 after digit always í© 0-145-345-1235-2-1 after digit always íª 0-145-345-1235-2-26 after digit always í« 0-145-345-1235-2-12 after digit always í¬ 0-145-345-1235-2-3 after digit always í­ 0-145-345-1235-2-236 after digit always í® 0-145-345-1235-2-256 after digit always í¯ 0-145-345-1235-2-356 after digit always í° 0-145-345-1235-26 after digit always í± 0-145-345-1235-12 after digit always í² 0-145-345-1235-12-3 after digit always í³ 0-145-345-1235-3 after digit always í´ 0-145-345-1235-34 after digit always íµ 0-145-345-1235-2356 after digit always í¶ 0-145-345-1235-13 after digit always í· 0-145-345-1235-23 after digit always í¸ 0-145-345-1235-235 after digit always í¹ 0-145-345-1235-236 after digit always íº 0-145-345-1235-256 after digit always í» 0-145-345-1235-356 after digit always í¼ 0-145-234 after digit always 펃 0-145-234-35 after digit always 펌 0-145-234-26 after digit always íŽ 0-145-234-12 after digit always 펎 0-145-234-12-3 after digit always íŽ 0-145-234-3 after digit always íŽ 0-145-234-34 after digit always 펑 0-145-234-2356 after digit always 펒 0-145-234-13 after digit always 펓 0-145-234-23 after digit always 펔 0-145-234-235 after digit always 펕 0-145-234-236 after digit always 펖 0-145-234-256 after digit always 펗 0-145-234-356 after digit always 페 0-145-1345 after digit always 펙 0-145-1345-1 after digit always 펚 0-145-1345-1-1 after digit always 펛 0-145-1345-1-3 after digit always 펜 0-145-1345-25 after digit always íŽ 0-145-1345-25-13 after digit always 펞 0-145-1345-25-356 after digit always 펟 0-145-1345-35 after digit always 펠 0-145-1345-2 after digit always 펡 0-145-1345-2-1 after digit always 펢 0-145-1345-2-26 after digit always 펣 0-145-1345-2-12 after digit always 펤 0-145-1345-2-3 after digit always 펥 0-145-1345-2-236 after digit always 펦 0-145-1345-2-256 after digit always 펧 0-145-1345-2-356 after digit always 펨 0-145-1345-26 after digit always 펩 0-145-1345-12 after digit always 펪 0-145-1345-12-3 after digit always 펫 0-145-1345-3 after digit always 펬 0-145-1345-34 after digit always 펭 0-145-1345-2356 after digit always 펮 0-145-1345-13 after digit always 펯 0-145-1345-23 after digit always 펰 0-145-1345-235 after digit always 펱 0-145-1345-236 after digit always 펲 0-145-1345-256 after digit always 펳 0-145-1345-356 after digit always 펴 0-145-156 after digit always 펵 0-145-156-1 after digit always 펶 0-145-156-1-1 after digit always 펷 0-145-156-1-3 after digit always 펻 0-145-156-35 after digit always í„ 0-145-156-26 after digit always í… 0-145-156-12 after digit always í† 0-145-156-12-3 after digit always í‡ 0-145-156-3 after digit always íˆ 0-145-156-34 after digit always íŠ 0-145-156-13 after digit always í‹ 0-145-156-23 after digit always íŒ 0-145-156-235 after digit always í 0-145-156-236 after digit always íŽ 0-145-156-256 after digit always í 0-145-156-356 after digit always í 0-145-34 after digit always í‘ 0-145-34-1 after digit always í’ 0-145-34-1-1 after digit always í“ 0-145-34-1-3 after digit always í” 0-145-34-25 after digit always í• 0-145-34-25-13 after digit always í– 0-145-34-25-356 after digit always í— 0-145-34-35 after digit always í˜ 0-145-34-2 after digit always í™ 0-145-34-2-1 after digit always íš 0-145-34-2-26 after digit always í› 0-145-34-2-12 after digit always íœ 0-145-34-2-3 after digit always í 0-145-34-2-236 after digit always íž 0-145-34-2-256 after digit always íŸ 0-145-34-2-356 after digit always í  0-145-34-26 after digit always í¡ 0-145-34-12 after digit always í¢ 0-145-34-12-3 after digit always í£ 0-145-34-3 after digit always í¤ 0-145-34-34 after digit always í¥ 0-145-34-2356 after digit always í¦ 0-145-34-13 after digit always í§ 0-145-34-23 after digit always í¨ 0-145-34-235 after digit always í© 0-145-34-236 after digit always íª 0-145-34-256 after digit always í« 0-145-34-356 after digit always í¬ 0-145-136 after digit always í³ 0-145-136-35 after digit always í´ 0-145-136-2 after digit always íµ 0-145-136-2-1 after digit always í¶ 0-145-136-2-26 after digit always í· 0-145-136-2-12 after digit always í¸ 0-145-136-2-3 after digit always í¹ 0-145-136-2-236 after digit always íº 0-145-136-2-256 after digit always í» 0-145-136-2-356 after digit always í¼ 0-145-136-26 after digit always í½ 0-145-136-12 after digit always í¾ 0-145-136-12-3 after digit always í¿ 0-145-136-3 after digit always í€ 0-145-136-34 after digit always í‚ 0-145-136-13 after digit always íƒ 0-145-136-23 after digit always í„ 0-145-136-235 after digit always í… 0-145-136-236 after digit always í† 0-145-136-256 after digit always í‡ 0-145-136-356 after digit always íˆ 0-145-1236 after digit always í‰ 0-145-1236-1 after digit always íŠ 0-145-1236-1-1 after digit always í‹ 0-145-1236-1-3 after digit always íŒ 0-145-1236-25 after digit always í 0-145-1236-25-13 after digit always íŽ 0-145-1236-25-356 after digit always í 0-145-1236-35 after digit always í 0-145-1236-2 after digit always í‘ 0-145-1236-2-1 after digit always í’ 0-145-1236-2-26 after digit always í“ 0-145-1236-2-12 after digit always í” 0-145-1236-2-3 after digit always í• 0-145-1236-2-236 after digit always í– 0-145-1236-2-256 after digit always í— 0-145-1236-2-356 after digit always í˜ 0-145-1236-26 after digit always í™ 0-145-1236-12 after digit always íš 0-145-1236-12-3 after digit always í› 0-145-1236-3 after digit always íœ 0-145-1236-34 after digit always í 0-145-1236-2356 after digit always íž 0-145-1236-13 after digit always íŸ 0-145-1236-23 after digit always í  0-145-1236-235 after digit always í¡ 0-145-1236-236 after digit always í¢ 0-145-1236-256 after digit always í£ 0-145-1236-356 after digit always í¤ 0-145-1236-1235 after digit always í¥ 0-145-1236-1235-1 after digit always í¦ 0-145-1236-1235-1-1 after digit always í§ 0-145-1236-1235-1-3 after digit always í¨ 0-145-1236-1235-25 after digit always í© 0-145-1236-1235-25-13 after digit always íª 0-145-1236-1235-25-356 after digit always í« 0-145-1236-1235-35 after digit always í¬ 0-145-1236-1235-2 after digit always í­ 0-145-1236-1235-2-1 after digit always í® 0-145-1236-1235-2-26 after digit always í¯ 0-145-1236-1235-2-12 after digit always í° 0-145-1236-1235-2-3 after digit always í± 0-145-1236-1235-2-236 after digit always í² 0-145-1236-1235-2-256 after digit always í³ 0-145-1236-1235-2-356 after digit always í´ 0-145-1236-1235-26 after digit always íµ 0-145-1236-1235-12 after digit always í¶ 0-145-1236-1235-12-3 after digit always í· 0-145-1236-1235-3 after digit always í¸ 0-145-1236-1235-34 after digit always í¹ 0-145-1236-1235-2356 after digit always íº 0-145-1236-1235-13 after digit always í» 0-145-1236-1235-23 after digit always í¼ 0-145-1236-1235-235 after digit always í½ 0-145-1236-1235-236 after digit always í¾ 0-145-1236-1235-256 after digit always í¿ 0-145-1236-1235-356 after digit always í‘€ 0-145-13456 after digit always í‘ 0-145-13456-1 after digit always í‘‚ 0-145-13456-1-1 after digit always 푃 0-145-13456-1-3 after digit always í‘„ 0-145-13456-25 after digit always í‘… 0-145-13456-25-13 after digit always 푆 0-145-13456-25-356 after digit always 푇 0-145-13456-35 after digit always 푈 0-145-13456-2 after digit always 푉 0-145-13456-2-1 after digit always 푊 0-145-13456-2-26 after digit always í‘‹ 0-145-13456-2-12 after digit always 푌 0-145-13456-2-3 after digit always í‘ 0-145-13456-2-236 after digit always 푎 0-145-13456-2-256 after digit always í‘ 0-145-13456-2-356 after digit always í‘ 0-145-13456-26 after digit always í‘‘ 0-145-13456-12 after digit always í‘’ 0-145-13456-12-3 after digit always í‘“ 0-145-13456-3 after digit always í‘” 0-145-13456-34 after digit always í‘• 0-145-13456-2356 after digit always í‘– 0-145-13456-13 after digit always í‘— 0-145-13456-23 after digit always 푘 0-145-13456-235 after digit always í‘™ 0-145-13456-236 after digit always 푚 0-145-13456-256 after digit always í‘› 0-145-13456-356 after digit always 표 0-145-346 after digit always í‘ 0-145-346-1 after digit always 푞 0-145-346-1-1 after digit always 푟 0-145-346-1-3 after digit always í‘  0-145-346-25 after digit always í‘¡ 0-145-346-25-13 after digit always í‘¢ 0-145-346-25-356 after digit always í‘£ 0-145-346-35 after digit always 푤 0-145-346-2 after digit always í‘¥ 0-145-346-2-1 after digit always 푦 0-145-346-2-26 after digit always í‘§ 0-145-346-2-12 after digit always 푨 0-145-346-2-3 after digit always í‘© 0-145-346-2-236 after digit always 푪 0-145-346-2-256 after digit always í‘« 0-145-346-2-356 after digit always 푬 0-145-346-26 after digit always í‘­ 0-145-346-12 after digit always í‘® 0-145-346-12-3 after digit always 푯 0-145-346-3 after digit always í‘° 0-145-346-34 after digit always 푱 0-145-346-2356 after digit always 푲 0-145-346-13 after digit always 푳 0-145-346-23 after digit always í‘´ 0-145-346-235 after digit always 푵 0-145-346-236 after digit always í‘¶ 0-145-346-256 after digit always í‘· 0-145-346-356 after digit always 푸 0-145-134 after digit always 푹 0-145-134-1 after digit always 푺 0-145-134-1-1 after digit always í‘» 0-145-134-1-3 after digit always í‘¿ 0-145-134-35 after digit always í’ˆ 0-145-134-26 after digit always í’‰ 0-145-134-12 after digit always í’Š 0-145-134-12-3 after digit always í’‹ 0-145-134-3 after digit always í’Œ 0-145-134-34 after digit always í’ 0-145-134-2356 after digit always í’Ž 0-145-134-13 after digit always í’ 0-145-134-23 after digit always í’ 0-145-134-235 after digit always í’‘ 0-145-134-236 after digit always í’’ 0-145-134-256 after digit always í’“ 0-145-134-356 after digit always í’” 0-145-1234 after digit always í’• 0-145-1234-1 after digit always í’– 0-145-1234-1-1 after digit always í’— 0-145-1234-1-3 after digit always í’˜ 0-145-1234-25 after digit always í’™ 0-145-1234-25-13 after digit always í’š 0-145-1234-25-356 after digit always í’› 0-145-1234-35 after digit always í’œ 0-145-1234-2 after digit always í’ 0-145-1234-2-1 after digit always í’ž 0-145-1234-2-26 after digit always í’Ÿ 0-145-1234-2-12 after digit always í’  0-145-1234-2-3 after digit always í’¡ 0-145-1234-2-236 after digit always í’¢ 0-145-1234-2-256 after digit always í’£ 0-145-1234-2-356 after digit always í’¤ 0-145-1234-26 after digit always í’¥ 0-145-1234-12 after digit always í’¦ 0-145-1234-12-3 after digit always í’§ 0-145-1234-3 after digit always í’¨ 0-145-1234-34 after digit always í’© 0-145-1234-2356 after digit always í’ª 0-145-1234-13 after digit always í’« 0-145-1234-23 after digit always í’¬ 0-145-1234-235 after digit always í’­ 0-145-1234-236 after digit always í’® 0-145-1234-256 after digit always í’¯ 0-145-1234-356 after digit always í’° 0-145-1234-1235 after digit always í’± 0-145-1234-1235-1 after digit always í’² 0-145-1234-1235-1-1 after digit always í’³ 0-145-1234-1235-1-3 after digit always í’´ 0-145-1234-1235-25 after digit always í’µ 0-145-1234-1235-25-13 after digit always í’¶ 0-145-1234-1235-25-356 after digit always í’· 0-145-1234-1235-35 after digit always í’¸ 0-145-1234-1235-2 after digit always í’¹ 0-145-1234-1235-2-1 after digit always í’º 0-145-1234-1235-2-26 after digit always í’» 0-145-1234-1235-2-12 after digit always í’¼ 0-145-1234-1235-2-3 after digit always í’½ 0-145-1234-1235-2-236 after digit always í’¾ 0-145-1234-1235-2-256 after digit always í’¿ 0-145-1234-1235-2-356 after digit always í“€ 0-145-1234-1235-26 after digit always í“ 0-145-1234-1235-12 after digit always í“‚ 0-145-1234-1235-12-3 after digit always 퓃 0-145-1234-1235-3 after digit always í“„ 0-145-1234-1235-34 after digit always í“… 0-145-1234-1235-2356 after digit always 퓆 0-145-1234-1235-13 after digit always 퓇 0-145-1234-1235-23 after digit always 퓈 0-145-1234-1235-235 after digit always 퓉 0-145-1234-1235-236 after digit always 퓊 0-145-1234-1235-256 after digit always í“‹ 0-145-1234-1235-356 after digit always 퓌 0-145-134-1235 after digit always í“ 0-145-134-1235-1 after digit always 퓎 0-145-134-1235-1-1 after digit always í“ 0-145-134-1235-1-3 after digit always í“ 0-145-134-1235-25 after digit always í“‘ 0-145-134-1235-25-13 after digit always í“’ 0-145-134-1235-25-356 after digit always í““ 0-145-134-1235-35 after digit always í“” 0-145-134-1235-2 after digit always í“• 0-145-134-1235-2-1 after digit always í“– 0-145-134-1235-2-26 after digit always í“— 0-145-134-1235-2-12 after digit always 퓘 0-145-134-1235-2-3 after digit always í“™ 0-145-134-1235-2-236 after digit always 퓚 0-145-134-1235-2-256 after digit always í“› 0-145-134-1235-2-356 after digit always 퓜 0-145-134-1235-26 after digit always í“ 0-145-134-1235-12 after digit always 퓞 0-145-134-1235-12-3 after digit always 퓟 0-145-134-1235-3 after digit always í“  0-145-134-1235-34 after digit always í“¡ 0-145-134-1235-2356 after digit always í“¢ 0-145-134-1235-13 after digit always í“£ 0-145-134-1235-23 after digit always 퓤 0-145-134-1235-235 after digit always í“¥ 0-145-134-1235-236 after digit always 퓦 0-145-134-1235-256 after digit always í“§ 0-145-134-1235-356 after digit always 퓨 0-145-146 after digit always í“© 0-145-146-1 after digit always 퓪 0-145-146-1-1 after digit always í“« 0-145-146-1-3 after digit always 퓬 0-145-146-25 after digit always í“­ 0-145-146-25-13 after digit always í“® 0-145-146-25-356 after digit always 퓯 0-145-146-35 after digit always í“° 0-145-146-2 after digit always 퓱 0-145-146-2-1 after digit always 퓲 0-145-146-2-26 after digit always 퓳 0-145-146-2-12 after digit always í“´ 0-145-146-2-3 after digit always 퓵 0-145-146-2-236 after digit always í“¶ 0-145-146-2-256 after digit always í“· 0-145-146-2-356 after digit always 퓸 0-145-146-26 after digit always 퓹 0-145-146-12 after digit always 퓺 0-145-146-12-3 after digit always í“» 0-145-146-3 after digit always 퓼 0-145-146-34 after digit always 퓽 0-145-146-2356 after digit always 퓾 0-145-146-13 after digit always í“¿ 0-145-146-23 after digit always 픀 0-145-146-235 after digit always í” 0-145-146-236 after digit always 픂 0-145-146-256 after digit always 픃 0-145-146-356 after digit always 프 0-145-246 after digit always í”… 0-145-246-1 after digit always 픆 0-145-246-1-1 after digit always 픇 0-145-246-1-3 after digit always 픋 0-145-246-35 after digit always í”” 0-145-246-26 after digit always 픕 0-145-246-12 after digit always í”– 0-145-246-12-3 after digit always í”— 0-145-246-3 after digit always 픘 0-145-246-34 after digit always í”™ 0-145-246-2356 after digit always 픚 0-145-246-13 after digit always í”› 0-145-246-23 after digit always 픜 0-145-246-235 after digit always í” 0-145-246-236 after digit always 픞 0-145-246-256 after digit always 픟 0-145-246-356 after digit always í”  0-145-2456 after digit always 픡 0-145-2456-1 after digit always 픢 0-145-2456-1-1 after digit always 픣 0-145-2456-1-3 after digit always 픤 0-145-2456-25 after digit always 픥 0-145-2456-25-13 after digit always 픦 0-145-2456-25-356 after digit always í”§ 0-145-2456-35 after digit always 픨 0-145-2456-2 after digit always 픩 0-145-2456-2-1 after digit always 픪 0-145-2456-2-26 after digit always 픫 0-145-2456-2-12 after digit always 픬 0-145-2456-2-3 after digit always í”­ 0-145-2456-2-236 after digit always í”® 0-145-2456-2-256 after digit always 픯 0-145-2456-2-356 after digit always í”° 0-145-2456-26 after digit always í”± 0-145-2456-12 after digit always 픲 0-145-2456-12-3 after digit always 픳 0-145-2456-3 after digit always í”´ 0-145-2456-34 after digit always 픵 0-145-2456-2356 after digit always í”¶ 0-145-2456-13 after digit always í”· 0-145-2456-23 after digit always 픸 0-145-2456-235 after digit always 픹 0-145-2456-236 after digit always 픺 0-145-2456-256 after digit always í”» 0-145-2456-356 after digit always 피 0-145-135 after digit always 픽 0-145-135-1 after digit always 픾 0-145-135-1-1 after digit always 픿 0-145-135-1-3 after digit always 핃 0-145-135-35 after digit always í•„ 0-145-135-2 after digit always í•… 0-145-135-2-1 after digit always 핆 0-145-135-2-26 after digit always 핇 0-145-135-2-12 after digit always 핈 0-145-135-2-3 after digit always 핉 0-145-135-2-236 after digit always 핊 0-145-135-2-256 after digit always í•‹ 0-145-135-2-356 after digit always 핌 0-145-135-26 after digit always í• 0-145-135-12 after digit always 핎 0-145-135-12-3 after digit always í• 0-145-135-3 after digit always í• 0-145-135-34 after digit always í•‘ 0-145-135-2356 after digit always í•’ 0-145-135-13 after digit always í•“ 0-145-135-23 after digit always í•” 0-145-135-235 after digit always í•• 0-145-135-236 after digit always í•– 0-145-135-256 after digit always í•— 0-145-135-356 after digit always í•´ 0-245-1235 after digit always 핵 0-245-1235-1 after digit always í•¶ 0-245-1235-1-1 after digit always í•· 0-245-1235-1-3 after digit always 핸 0-245-1235-25 after digit always 핹 0-245-1235-25-13 after digit always 핺 0-245-1235-25-356 after digit always í•» 0-245-1235-35 after digit always 핼 0-245-1235-2 after digit always 핽 0-245-1235-2-1 after digit always 핾 0-245-1235-2-26 after digit always í•¿ 0-245-1235-2-12 after digit always í–€ 0-245-1235-2-3 after digit always í– 0-245-1235-2-236 after digit always í–‚ 0-245-1235-2-256 after digit always í–ƒ 0-245-1235-2-356 after digit always í–„ 0-245-1235-26 after digit always í–… 0-245-1235-12 after digit always í–† 0-245-1235-12-3 after digit always í–‡ 0-245-1235-3 after digit always í–ˆ 0-245-1235-34 after digit always í–‰ 0-245-1235-2356 after digit always í–Š 0-245-1235-13 after digit always í–‹ 0-245-1235-23 after digit always í–Œ 0-245-1235-235 after digit always í– 0-245-1235-236 after digit always í–Ž 0-245-1235-256 after digit always í– 0-245-1235-356 after digit always í– 0-245-345 after digit always í–‘ 0-245-345-1 after digit always í–’ 0-245-345-1-1 after digit always í–“ 0-245-345-1-3 after digit always í–” 0-245-345-25 after digit always í–• 0-245-345-25-13 after digit always í–– 0-245-345-25-356 after digit always í–— 0-245-345-35 after digit always í–˜ 0-245-345-2 after digit always í–™ 0-245-345-2-1 after digit always í–š 0-245-345-2-26 after digit always í–› 0-245-345-2-12 after digit always í–œ 0-245-345-2-3 after digit always í– 0-245-345-2-236 after digit always í–ž 0-245-345-2-256 after digit always í–Ÿ 0-245-345-2-356 after digit always í–  0-245-345-26 after digit always í–¡ 0-245-345-12 after digit always í–¢ 0-245-345-12-3 after digit always í–£ 0-245-345-3 after digit always í–¤ 0-245-345-34 after digit always í–¥ 0-245-345-2356 after digit always í–¦ 0-245-345-13 after digit always í–§ 0-245-345-23 after digit always í–¨ 0-245-345-235 after digit always í–© 0-245-345-236 after digit always í–ª 0-245-345-256 after digit always í–« 0-245-345-356 after digit always í–¬ 0-245-345-1235 after digit always í–­ 0-245-345-1235-1 after digit always í–® 0-245-345-1235-1-1 after digit always í–¯ 0-245-345-1235-1-3 after digit always í–° 0-245-345-1235-25 after digit always í–± 0-245-345-1235-25-13 after digit always í–² 0-245-345-1235-25-356 after digit always í–³ 0-245-345-1235-35 after digit always í–´ 0-245-345-1235-2 after digit always í–µ 0-245-345-1235-2-1 after digit always í–¶ 0-245-345-1235-2-26 after digit always í–· 0-245-345-1235-2-12 after digit always í–¸ 0-245-345-1235-2-3 after digit always í–¹ 0-245-345-1235-2-236 after digit always í–º 0-245-345-1235-2-256 after digit always í–» 0-245-345-1235-2-356 after digit always í–¼ 0-245-345-1235-26 after digit always í–½ 0-245-345-1235-12 after digit always í–¾ 0-245-345-1235-12-3 after digit always í–¿ 0-245-345-1235-3 after digit always í—€ 0-245-345-1235-34 after digit always í— 0-245-345-1235-2356 after digit always í—‚ 0-245-345-1235-13 after digit always í—ƒ 0-245-345-1235-23 after digit always í—„ 0-245-345-1235-235 after digit always í—… 0-245-345-1235-236 after digit always í—† 0-245-345-1235-256 after digit always í—‡ 0-245-345-1235-356 after digit always í—ˆ 0-245-234 after digit always í— 0-245-234-35 after digit always í—˜ 0-245-234-26 after digit always í—™ 0-245-234-12 after digit always í—š 0-245-234-12-3 after digit always í—› 0-245-234-3 after digit always í—œ 0-245-234-34 after digit always í— 0-245-234-2356 after digit always í—ž 0-245-234-13 after digit always í—Ÿ 0-245-234-23 after digit always í—  0-245-234-235 after digit always í—¡ 0-245-234-236 after digit always í—¢ 0-245-234-256 after digit always í—£ 0-245-234-356 after digit always í—¤ 0-245-1345 after digit always í—¥ 0-245-1345-1 after digit always í—¦ 0-245-1345-1-1 after digit always í—§ 0-245-1345-1-3 after digit always í—¨ 0-245-1345-25 after digit always í—© 0-245-1345-25-13 after digit always í—ª 0-245-1345-25-356 after digit always í—« 0-245-1345-35 after digit always í—¬ 0-245-1345-2 after digit always í—­ 0-245-1345-2-1 after digit always í—® 0-245-1345-2-26 after digit always í—¯ 0-245-1345-2-12 after digit always í—° 0-245-1345-2-3 after digit always í—± 0-245-1345-2-236 after digit always í—² 0-245-1345-2-256 after digit always í—³ 0-245-1345-2-356 after digit always í—´ 0-245-1345-26 after digit always í—µ 0-245-1345-12 after digit always í—¶ 0-245-1345-12-3 after digit always í—· 0-245-1345-3 after digit always í—¸ 0-245-1345-34 after digit always í—¹ 0-245-1345-2356 after digit always í—º 0-245-1345-13 after digit always í—» 0-245-1345-23 after digit always í—¼ 0-245-1345-235 after digit always í—½ 0-245-1345-236 after digit always í—¾ 0-245-1345-256 after digit always í—¿ 0-245-1345-356 after digit always 혀 0-245-156 after digit always í˜ 0-245-156-1 after digit always 혂 0-245-156-1-1 after digit always 혃 0-245-156-1-3 after digit always 혇 0-245-156-35 after digit always í˜ 0-245-156-26 after digit always 협 0-245-156-12 after digit always 혒 0-245-156-12-3 after digit always 혓 0-245-156-3 after digit always 혔 0-245-156-34 after digit always 혖 0-245-156-13 after digit always 혗 0-245-156-23 after digit always 혘 0-245-156-235 after digit always 혙 0-245-156-236 after digit always 혚 0-245-156-256 after digit always 혛 0-245-156-356 after digit always 혜 0-245-34 after digit always í˜ 0-245-34-1 after digit always 혞 0-245-34-1-1 after digit always 혟 0-245-34-1-3 after digit always 혠 0-245-34-25 after digit always 혡 0-245-34-25-13 after digit always 혢 0-245-34-25-356 after digit always 혣 0-245-34-35 after digit always 혤 0-245-34-2 after digit always 혥 0-245-34-2-1 after digit always 혦 0-245-34-2-26 after digit always 혧 0-245-34-2-12 after digit always 혨 0-245-34-2-3 after digit always 혩 0-245-34-2-236 after digit always 혪 0-245-34-2-256 after digit always 혫 0-245-34-2-356 after digit always 혬 0-245-34-26 after digit always 혭 0-245-34-12 after digit always 혮 0-245-34-12-3 after digit always 혯 0-245-34-3 after digit always 혰 0-245-34-34 after digit always 혱 0-245-34-2356 after digit always 혲 0-245-34-13 after digit always 혳 0-245-34-23 after digit always 혴 0-245-34-235 after digit always 혵 0-245-34-236 after digit always 혶 0-245-34-256 after digit always 혷 0-245-34-356 after digit always 호 0-245-136 after digit always 혿 0-245-136-35 after digit always 홀 0-245-136-2 after digit always í™ 0-245-136-2-1 after digit always 홂 0-245-136-2-26 after digit always 홃 0-245-136-2-12 after digit always 홄 0-245-136-2-3 after digit always í™… 0-245-136-2-236 after digit always 홆 0-245-136-2-256 after digit always 홇 0-245-136-2-356 after digit always 홈 0-245-136-26 after digit always 홉 0-245-136-12 after digit always 홊 0-245-136-12-3 after digit always 홋 0-245-136-3 after digit always 홌 0-245-136-34 after digit always 홎 0-245-136-13 after digit always í™ 0-245-136-23 after digit always í™ 0-245-136-235 after digit always 홑 0-245-136-236 after digit always í™’ 0-245-136-256 after digit always 홓 0-245-136-356 after digit always í™” 0-245-1236 after digit always 확 0-245-1236-1 after digit always í™– 0-245-1236-1-1 after digit always í™— 0-245-1236-1-3 after digit always 환 0-245-1236-25 after digit always í™™ 0-245-1236-25-13 after digit always 홚 0-245-1236-25-356 after digit always í™› 0-245-1236-35 after digit always 활 0-245-1236-2 after digit always í™ 0-245-1236-2-1 after digit always 홞 0-245-1236-2-26 after digit always 홟 0-245-1236-2-12 after digit always í™  0-245-1236-2-3 after digit always 홡 0-245-1236-2-236 after digit always 홢 0-245-1236-2-256 after digit always 홣 0-245-1236-2-356 after digit always 홤 0-245-1236-26 after digit always 홥 0-245-1236-12 after digit always 홦 0-245-1236-12-3 after digit always í™§ 0-245-1236-3 after digit always 홨 0-245-1236-34 after digit always 황 0-245-1236-2356 after digit always 홪 0-245-1236-13 after digit always 홫 0-245-1236-23 after digit always 홬 0-245-1236-235 after digit always í™­ 0-245-1236-236 after digit always í™® 0-245-1236-256 after digit always 홯 0-245-1236-356 after digit always í™° 0-245-1236-1235 after digit always í™± 0-245-1236-1235-1 after digit always 홲 0-245-1236-1235-1-1 after digit always 홳 0-245-1236-1235-1-3 after digit always í™´ 0-245-1236-1235-25 after digit always 홵 0-245-1236-1235-25-13 after digit always í™¶ 0-245-1236-1235-25-356 after digit always í™· 0-245-1236-1235-35 after digit always 홸 0-245-1236-1235-2 after digit always 홹 0-245-1236-1235-2-1 after digit always 홺 0-245-1236-1235-2-26 after digit always í™» 0-245-1236-1235-2-12 after digit always 홼 0-245-1236-1235-2-3 after digit always 홽 0-245-1236-1235-2-236 after digit always 홾 0-245-1236-1235-2-256 after digit always 홿 0-245-1236-1235-2-356 after digit always 횀 0-245-1236-1235-26 after digit always íš 0-245-1236-1235-12 after digit always íš‚ 0-245-1236-1235-12-3 after digit always 횃 0-245-1236-1235-3 after digit always íš„ 0-245-1236-1235-34 after digit always íš… 0-245-1236-1235-2356 after digit always 횆 0-245-1236-1235-13 after digit always 횇 0-245-1236-1235-23 after digit always 횈 0-245-1236-1235-235 after digit always 횉 0-245-1236-1235-236 after digit always 횊 0-245-1236-1235-256 after digit always íš‹ 0-245-1236-1235-356 after digit always 회 0-245-13456 after digit always íš 0-245-13456-1 after digit always 횎 0-245-13456-1-1 after digit always íš 0-245-13456-1-3 after digit always íš 0-245-13456-25 after digit always íš‘ 0-245-13456-25-13 after digit always íš’ 0-245-13456-25-356 after digit always íš“ 0-245-13456-35 after digit always íš” 0-245-13456-2 after digit always íš• 0-245-13456-2-1 after digit always íš– 0-245-13456-2-26 after digit always íš— 0-245-13456-2-12 after digit always 횘 0-245-13456-2-3 after digit always íš™ 0-245-13456-2-236 after digit always íšš 0-245-13456-2-256 after digit always íš› 0-245-13456-2-356 after digit always íšœ 0-245-13456-26 after digit always íš 0-245-13456-12 after digit always íšž 0-245-13456-12-3 after digit always 횟 0-245-13456-3 after digit always íš  0-245-13456-34 after digit always íš¡ 0-245-13456-2356 after digit always 횢 0-245-13456-13 after digit always 횣 0-245-13456-23 after digit always 횤 0-245-13456-235 after digit always 횥 0-245-13456-236 after digit always 횦 0-245-13456-256 after digit always íš§ 0-245-13456-356 after digit always 효 0-245-346 after digit always íš© 0-245-346-1 after digit always 횪 0-245-346-1-1 after digit always íš« 0-245-346-1-3 after digit always 횬 0-245-346-25 after digit always íš­ 0-245-346-25-13 after digit always íš® 0-245-346-25-356 after digit always 횯 0-245-346-35 after digit always íš° 0-245-346-2 after digit always íš± 0-245-346-2-1 after digit always íš² 0-245-346-2-26 after digit always íš³ 0-245-346-2-12 after digit always íš´ 0-245-346-2-3 after digit always íšµ 0-245-346-2-236 after digit always íš¶ 0-245-346-2-256 after digit always íš· 0-245-346-2-356 after digit always 횸 0-245-346-26 after digit always íš¹ 0-245-346-12 after digit always 횺 0-245-346-12-3 after digit always íš» 0-245-346-3 after digit always íš¼ 0-245-346-34 after digit always íš½ 0-245-346-2356 after digit always íš¾ 0-245-346-13 after digit always íš¿ 0-245-346-23 after digit always 훀 0-245-346-235 after digit always í› 0-245-346-236 after digit always 훂 0-245-346-256 after digit always 훃 0-245-346-356 after digit always 후 0-245-134 after digit always í›… 0-245-134-1 after digit always 훆 0-245-134-1-1 after digit always 훇 0-245-134-1-3 after digit always 훋 0-245-134-35 after digit always í›” 0-245-134-26 after digit always 훕 0-245-134-12 after digit always í›– 0-245-134-12-3 after digit always í›— 0-245-134-3 after digit always 훘 0-245-134-34 after digit always í›™ 0-245-134-2356 after digit always 훚 0-245-134-13 after digit always í›› 0-245-134-23 after digit always 훜 0-245-134-235 after digit always í› 0-245-134-236 after digit always 훞 0-245-134-256 after digit always 훟 0-245-134-356 after digit always í›  0-245-1234 after digit always 훡 0-245-1234-1 after digit always 훢 0-245-1234-1-1 after digit always 훣 0-245-1234-1-3 after digit always 훤 0-245-1234-25 after digit always 훥 0-245-1234-25-13 after digit always 훦 0-245-1234-25-356 after digit always í›§ 0-245-1234-35 after digit always 훨 0-245-1234-2 after digit always 훩 0-245-1234-2-1 after digit always 훪 0-245-1234-2-26 after digit always 훫 0-245-1234-2-12 after digit always 훬 0-245-1234-2-3 after digit always í›­ 0-245-1234-2-236 after digit always í›® 0-245-1234-2-256 after digit always 훯 0-245-1234-2-356 after digit always í›° 0-245-1234-26 after digit always í›± 0-245-1234-12 after digit always 훲 0-245-1234-12-3 after digit always 훳 0-245-1234-3 after digit always í›´ 0-245-1234-34 after digit always 훵 0-245-1234-2356 after digit always í›¶ 0-245-1234-13 after digit always í›· 0-245-1234-23 after digit always 훸 0-245-1234-235 after digit always 훹 0-245-1234-236 after digit always 훺 0-245-1234-256 after digit always í›» 0-245-1234-356 after digit always 훼 0-245-1234-1235 after digit always 훽 0-245-1234-1235-1 after digit always 훾 0-245-1234-1235-1-1 after digit always 훿 0-245-1234-1235-1-3 after digit always 휀 0-245-1234-1235-25 after digit always íœ 0-245-1234-1235-25-13 after digit always 휂 0-245-1234-1235-25-356 after digit always 휃 0-245-1234-1235-35 after digit always 휄 0-245-1234-1235-2 after digit always 휅 0-245-1234-1235-2-1 after digit always 휆 0-245-1234-1235-2-26 after digit always 휇 0-245-1234-1235-2-12 after digit always 휈 0-245-1234-1235-2-3 after digit always 휉 0-245-1234-1235-2-236 after digit always 휊 0-245-1234-1235-2-256 after digit always 휋 0-245-1234-1235-2-356 after digit always 휌 0-245-1234-1235-26 after digit always íœ 0-245-1234-1235-12 after digit always 휎 0-245-1234-1235-12-3 after digit always íœ 0-245-1234-1235-3 after digit always íœ 0-245-1234-1235-34 after digit always 휑 0-245-1234-1235-2356 after digit always 휒 0-245-1234-1235-13 after digit always 휓 0-245-1234-1235-23 after digit always 휔 0-245-1234-1235-235 after digit always 휕 0-245-1234-1235-236 after digit always 휖 0-245-1234-1235-256 after digit always 휗 0-245-1234-1235-356 after digit always 휘 0-245-134-1235 after digit always 휙 0-245-134-1235-1 after digit always 휚 0-245-134-1235-1-1 after digit always 휛 0-245-134-1235-1-3 after digit always 휜 0-245-134-1235-25 after digit always íœ 0-245-134-1235-25-13 after digit always 휞 0-245-134-1235-25-356 after digit always 휟 0-245-134-1235-35 after digit always 휠 0-245-134-1235-2 after digit always 휡 0-245-134-1235-2-1 after digit always 휢 0-245-134-1235-2-26 after digit always 휣 0-245-134-1235-2-12 after digit always 휤 0-245-134-1235-2-3 after digit always 휥 0-245-134-1235-2-236 after digit always 휦 0-245-134-1235-2-256 after digit always 휧 0-245-134-1235-2-356 after digit always 휨 0-245-134-1235-26 after digit always 휩 0-245-134-1235-12 after digit always 휪 0-245-134-1235-12-3 after digit always 휫 0-245-134-1235-3 after digit always 휬 0-245-134-1235-34 after digit always 휭 0-245-134-1235-2356 after digit always 휮 0-245-134-1235-13 after digit always 휯 0-245-134-1235-23 after digit always 휰 0-245-134-1235-235 after digit always 휱 0-245-134-1235-236 after digit always 휲 0-245-134-1235-256 after digit always 휳 0-245-134-1235-356 after digit always 휴 0-245-146 after digit always 휵 0-245-146-1 after digit always 휶 0-245-146-1-1 after digit always 휷 0-245-146-1-3 after digit always 휸 0-245-146-25 after digit always 휹 0-245-146-25-13 after digit always 휺 0-245-146-25-356 after digit always 휻 0-245-146-35 after digit always 휼 0-245-146-2 after digit always 휽 0-245-146-2-1 after digit always 휾 0-245-146-2-26 after digit always 휿 0-245-146-2-12 after digit always í€ 0-245-146-2-3 after digit always í 0-245-146-2-236 after digit always í‚ 0-245-146-2-256 after digit always íƒ 0-245-146-2-356 after digit always í„ 0-245-146-26 after digit always í… 0-245-146-12 after digit always í† 0-245-146-12-3 after digit always í‡ 0-245-146-3 after digit always íˆ 0-245-146-34 after digit always í‰ 0-245-146-2356 after digit always íŠ 0-245-146-13 after digit always í‹ 0-245-146-23 after digit always íŒ 0-245-146-235 after digit always í 0-245-146-236 after digit always íŽ 0-245-146-256 after digit always í 0-245-146-356 after digit always í 0-245-246 after digit always í‘ 0-245-246-1 after digit always í’ 0-245-246-1-1 after digit always í“ 0-245-246-1-3 after digit always í— 0-245-246-35 after digit always í  0-245-246-26 after digit always í¡ 0-245-246-12 after digit always í¢ 0-245-246-12-3 after digit always í£ 0-245-246-3 after digit always í¤ 0-245-246-34 after digit always í¥ 0-245-246-2356 after digit always í¦ 0-245-246-13 after digit always í§ 0-245-246-23 after digit always í¨ 0-245-246-235 after digit always í© 0-245-246-236 after digit always íª 0-245-246-256 after digit always í« 0-245-246-356 after digit always í¬ 0-245-2456 after digit always í­ 0-245-2456-1 after digit always í® 0-245-2456-1-1 after digit always í¯ 0-245-2456-1-3 after digit always í° 0-245-2456-25 after digit always í± 0-245-2456-25-13 after digit always í² 0-245-2456-25-356 after digit always í³ 0-245-2456-35 after digit always í´ 0-245-2456-2 after digit always íµ 0-245-2456-2-1 after digit always í¶ 0-245-2456-2-26 after digit always í· 0-245-2456-2-12 after digit always í¸ 0-245-2456-2-3 after digit always í¹ 0-245-2456-2-236 after digit always íº 0-245-2456-2-256 after digit always í» 0-245-2456-2-356 after digit always í¼ 0-245-2456-26 after digit always í½ 0-245-2456-12 after digit always í¾ 0-245-2456-12-3 after digit always í¿ 0-245-2456-3 after digit always 힀 0-245-2456-34 after digit always íž 0-245-2456-2356 after digit always íž‚ 0-245-2456-13 after digit always 힃 0-245-2456-23 after digit always íž„ 0-245-2456-235 after digit always íž… 0-245-2456-236 after digit always 힆 0-245-2456-256 after digit always 힇 0-245-2456-356 after digit always 히 0-245-135 after digit always 힉 0-245-135-1 after digit always 힊 0-245-135-1-1 after digit always íž‹ 0-245-135-1-3 after digit always íž 0-245-135-35 after digit always íž 0-245-135-2 after digit always íž‘ 0-245-135-2-1 after digit always íž’ 0-245-135-2-26 after digit always íž“ 0-245-135-2-12 after digit always íž” 0-245-135-2-3 after digit always íž• 0-245-135-2-236 after digit always íž– 0-245-135-2-256 after digit always íž— 0-245-135-2-356 after digit always 힘 0-245-135-26 after digit always íž™ 0-245-135-12 after digit always ížš 0-245-135-12-3 after digit always íž› 0-245-135-3 after digit always ížœ 0-245-135-34 after digit always íž 0-245-135-2356 after digit always ížž 0-245-135-13 after digit always 힟 0-245-135-23 after digit always íž  0-245-135-235 after digit always íž¡ 0-245-135-236 after digit always 힢 0-245-135-256 after digit always 힣 0-245-135-356 # For grade 1 and grade 2 rules not discussed here, see ko-g1.ctb and ko-g2.ctb. liblouis-2.5.3/tables/bn.ctb0000664000175000017500000000167112161041546012636 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Bengali include bengali.cti include text_nabcc.dis liblouis-2.5.3/tables/hyph_en_US.dic0000664000175000017500000010716312161041546014272 00000000000000ISO8859-1 .a2ch4 .ad4der .a2d .ad1d4 .a2f1t .a2f .a4l3t .am5at .4a1ma .an5c .a2n .2ang4 .an1i5m .an1t4 .an3te .anti5s .ant2i .a4r5s2 .2a2r .ar4t2ie4 .ar1ti .ar4ty .as3c .as1p .a2s1s .aster5 .a2tom5 .a1to .au1d .av4i .awn4 .ba4g .ba5na .ba2n .bas4e .ber4 .be5r1a .be3s1m .4bes4 .b4e5s2to .bri2 .but4ti .bu4t3t2 .cam4pe .1ca .ca4m1p .can5c .ca2n .capa5b .ca1pa .car5ol .c2a2r .ca4t .ce4la .2ch4 .chill5i .ch4il2 .chil1l .1ci2 .cit5r .2c1it .co3e2 .1co .co4r .cor5n1er .corn2e .de4moi2 .d4em .de1mo .de3o .de3r1a .de3r1i .de1s4c .des2 .dic1t2io5 .3di2c1t .do4t .1do .du4c .1du .du4m1b5 .earth5 .ear2t .e2a2r .eas3i .2e1b4 .eer4 .eg2 .e2l5d .el3em .enam3 .e1na .en3g .e2n3s2 .eq5ui5t .e1q .equ2 .eq2ui2 .er4ri .er1r4 .es3 .4eu3 .eye5 .fes3 .for5mer .1fo .fo2r .for1m .for2me .1ga2 .ge2 .gen3t4 .1gen .ge5o2g .1geo .1g2i5a .gi4b .go4r .1go .hand5i .ha2n .h4and .ha4n5k2 .he2 .hero5i2 .h2ero .h1es3 .he4t3 .hi3b .hi3er .h2ie4 .hon5ey .ho2n .hon3o .hov5 .id4l .2id .idol3 .i1do .im3m .im5p1i2n .i4m1p .im2pi .in1 .in3ci .2ine2 .4i4n2k2 .2i2n3s2 .ir5r4 .4ir .is4i .ju3r .la4cy .la4m .lat5er .l4ath5 .le2 .leg5e .len4 .lep5 .lev1 .l2i4g .li1g5a .li2n .l2i3o .l1i4t .ma1g5a5 .1ma .mal5o .ma1n5a .ma2n .mar5ti .m2a2r .me2 .mer3c .me5ter .me1te .m2is1 .mis4t5i .mon3e .1mo .mo2n .mo3ro .mo2r .mu5ta .1mu .mu2ta5b .ni4c .od2 .od1d5 .of5te .o2ft .or5a1to .o1ra .or3c .or1d .or3t .os3 .os4tl .4oth3 .out3 .ou2 .ped5al .2p2ed .p2e2d2a .pe5te .pe2t .pe5tit .p2i4e4 .pio5n4 .3p2i1o .pi2t .pre3m .pr2 .ra4c .ran4t .ra2n .ratio5n1a .ratio2n4 .ra1t2io .ree2 .re5mit .res2 .re5stat .res2t .res1ta .r2i4g .ri2t5u .ro4q .ros5t .row5d .ru4d .3s4c2i3e4 .s1ci .5se2l2f5 .sel1l5 .se2n .se5r2ie4 .ser1i .s2h2 .si2 .s3ing4 .2s1in .st4 .sta5b2l2 .s1ta .s2tab .s4y2 .1ta4 .te4 .3ten5a2n .te1na .th2 .ti2 .til4 .ti1m5o5 .1tim .ting4 .2t1in .t4i4n5k2 .to1n4a .1to .to2n .to4p .top5i .to2u5s .tou2 .trib5ut .tr4ib .u1n1a .un3ce .under5 .un1de .u2n1e .u4n5k2 .un5o .un3u4 .up3 .ure3 .us5a2 .2us .ven4de .ve5r1a .wil5i .wi2 .wil2 .ye4 4ab. a5bal a5ba2n abe2 ab5erd ab2i5a ab5i2t5ab abi2t abi1ta ab5lat ab2l2 ab5o5l1iz abol2i 4abr ab5rog ab3ul a4c2a2r a1ca ac5ard ac5aro a5ceou2 ac1er a5che4t a2ch ache2 4a2ci a3c2ie4 a2c1in a3c2io ac5rob act5if2 a2c1t ac3ul ac4um a2d ad4d1in ad1d4 ad5er. 2adi a3d4i3a ad3i1ca adi4er ad2ie4 a3d2io a3dit a5di1u ad4le ad3ow a1do ad5ra2n a1dr ad4su a2d1s2 4a1du a3du2c ad5um ae4r aer2i4e4 aer1i a2f a4f1f4 a4gab a1ga aga4n ag5el1l a1ge4o 4ag4eu ag1i 4ag4l2 ag1n a2go 3a3g4o4g ag3o3ni ago2n2 a5guer a2gue ag5ul a4gy a3ha a3he a4h4l4 a3ho ai2 a5i1a a3ic. ai5ly a4i4n ain5in a2ini a2i1n5o ait5en a2ite a1j ak1en al5ab al3a2d a4l2a2r 4aldi4 a2ld 2ale al3end a4lent2i a1len1t a5le5o al1i al4ia. al2i1a al2i4e4 al5lev al1l al2le 4allic all2i 4a2lm a5log. a4ly. a1ly 4a2lys4 5a5lys1t 5alyt 3alyz 4a1ma a2m5ab am3ag ama5ra am2a2r am5asc a4ma3tis a4m5a1to am5er1a am3ic am5if am5i1ly am1in am2i4no a2mo a5mo2n amor5i amo2r amp5en a4m1p a2n an3age a1na 3ana1ly a3n2a2r an3ar3c anar4i a3nati an2at 4and ande4s2 an1de an3dis1 an1dl an4dow an1do a5nee a3nen an5e2st. a1nes a2nest a3n4eu 2ang ang5ie4 an1gl2 a4n1ic a3nies an2ie4 an3i3f an4ime an1im a5nim1i a5n2ine an1in an3i4o a3n2ip an3is2h an3it a3ni1u an4kli a4nk2 an1k1l 5anniz a4n1n2 ano4 an5ot an4oth5 an2sa2 a2n1s2 an4s1co ans4c an4s1n4 an2sp ans3po an4st an4su2r an1su anta2l4 an1t an1ta an4t2ie4 ant2i 4an1to an2tr an4tw4 an3u1a an3ul a5nur 4ao ap2a2r4 a1pa ap5at ap5er3o a3ph4er 4aphi a4pilla apil1l ap5ill2a2r ap3i2n ap3i1ta a3pi2tu a2p2l2 apo4c5 ap5o1la apor5i a1p4or apos3t a1pos aps5e4s a2p1s2 ap2se a3pu aque5 aqu2 2a2r ar3a2c1t a5rade ara2d ar5adis1 ar2adi ar3al a5rame1te aram3et ar2an4g ara2n ara3p ar4at a5ra1t2io ar5a1t2iv a5rau ar5av4 araw4 arbal4 ar1b ar4cha2n ar1c ar3cha ar2ch ar5d2ine ard2i ard1in4 ar4dr ar5eas a3ree ar3en1t a5r2e2ss ar4fi ar1f ar4f4l2 ar1i ar5i2al ar2i3a ar3i2a2n a3ri5et ar2ie4 ar4im ar5in2at ar2i1na ar3i1o ar2iz ar2mi ar1m ar5o5d a5roni aro2n a3roo2 ar2p ar3q arre4 ar1r4 ar4sa2 a4rs2 ar2s2h 4as. a2s4ab asa2 as3an1t asa2n ashi4 as2h a5sia. as2i1a a3si1b a3sic 5a5si4t ask3i ask2 as4l2 a4soc a1so as5ph as4s2h a2ss as3ten as1t4r asu1r5a a1su asu2r a2ta at3ab2l2 a2tab at5ac at3alo ata2l at5ap ate5c at5e2ch at3e1go ateg4 at3en. at3er1a ater5n a5ter1na at3est at5ev 4ath ath5em ath2e a5the2n at4ho ath5om 4ati. a5t2i1a a2t5i5b at1ic at3if2 ation5a2r a1t2io atio2n atio1n1a at3i1tu a4tog a1to a2tom at5om2iz a4top a4tos2 a1tr at5rop at4sk2 a4t1s2 at4tag a4t3t2 at1ta at5te at4th a2tu at5u1a a4t5ue at3ul at3u1ra a2ty au4b augh3 au3gu au4l2 aun5d au3r au5si1b a2us a4ut5en au1th a2va av3ag4 a5va2n av4e4no av3er1a av5ern av5ery av1i avi4er av2ie4 av3ig av5oc a1vor 3away aw3i2 aw4ly aws4 ax4i5c ax3i ax4id ay5al aye4 ays4 azi4er a2z1i az2ie4 az2z5i a4z1z2 5ba. bad5ger ba2d ba4ge bal1a ban5dag ba2n b4and ban1d2a ban4e ban3i barbi5 b2a2r bar1b bar2i4a bar1i bas4si ba2ss 1bat ba4z 2b1b b2be b3ber bbi4na 4b1d 4be. beak4 bea2t3 4be2d b2e3d2a be3de b4e3di be3gi be5gu 1bel be1l2i be3lo 4be5m be5n2ig be5nu 4bes4 be3sp b2e5st4r 3bet be1t5iz be5tr be3tw4 be3w be5y1o4 2bf 4b3h bi2b b2i4d 3b2ie4 bi5en bi4er 2b3if 1bil bi3l2iz bil1i bin2a5r4 bi1na b4in4d bi5net b2ine bi3o2gr b2io bi5ou2 bi2t 3b2i3t2io bi1ti bi3tr 3bit5u1a bi1tu b5i4tz b1j bk4 b2l2 bl4ath5 b4le. blen4 5ble1sp bles2 b3lis b4lo blun4t 4b1m 4b3n bne5g 3bod bod3i bo4e bol3ic bol2i bom4bi bo4m1b bo1n4a bo2n bon5at 3boo2 5bor. 4b1o1ra bor5d 5bore 5bori 5bos4 b5o1ta b4oth5 bo4to boun2d3 bou2 4bp 4brit br4oth3 2b5s2 bsor4 b1so 2bt b2t4l b4to b3tr buf4fer1 bu4f1f bu4ga bu3l2i bu1mi4 bu4n bunt4i bun1t bu3re bus5ie4 b2us buss4e bu2ss 5bust 4bu1ta 3bu1t2io b4u1t2i b5u1to b1v 4b5w 5by. bys4 1ca cab3in ca1b2l2 ca2ch4 ca5den ca2d 4cag4 2c5ah ca3lat cal4la cal1l cal2l5in4 call2i 4calo c4an5d ca2n can4e ca4n4ic can5is can3iz can4ty can1t cany4 ca5per car5om c2a2r cast5er cas5t2ig cast2i 4cas4y c4a4th 4ca1t2iv cav5al ca2va c3c ccha5 c2ch c3c2i4a c1ci ccom1pa5 c1co cco4m1p cco2n4 ccou3t ccou2 2ce. 4ced. 4ce1den 3cei2 5cel. 3cel1l 1cen 3cenc 2cen4e 4ceni 3cen1t 3cep ce5ram cer1a 4ce1s4a2 3ces1si c2e2ss ces5si5b ces5t cet4 c5e4ta cew4 2ch 4ch. 4ch3ab 5cha4n1ic cha2n ch5a5nis che2 cheap3 4ch4ed ch5e5lo 3chemi ch5ene che2n ch3er. ch3e4r1s2 4ch1in 5chi2ne. ch2ine ch5i5n2e2ss chi1nes 5ch2ini 5ch2io 3chit chi2z 3cho2 ch4ti 1ci 3c2i1a ci2a5b ci2a5r ci5c 4cier c2ie4 5c4i2f3ic. ci1fi 4c4i5i4 ci4la 3cil1i 2cim 2cin c4i1na 3cin2at cin3em c2ine c1ing c5ing. 5c2i1no cio2n4 c2io 4cipe4 c2ip ci3ph 4cip4ic cip3i 4cis1ta 4cis1t2i 2c1it ci1t3iz ci1ti 5ciz ck1 ck3i 1c4l4 4cl2a2r c5la5ra1t2io clar4at 5clare cle4m 4clic clim4 c1ly4 c5n 1co co5ag c4oa coe2 2cog co4gr coi4 co3inc col5i 5colo col3o4r com5er co2me co1n4a co2n c4one con3g con5t co3pa cop3ic co4p2l2 4cor1b coro3n cos4e cov1 cove4 cow5a co2z5e co5z1i c1q cras5t cr2as 5crat. 5crat1ic cre3a2t 5c2r2ed 4c3re1ta cre4v2 cri2 cri5f c4rin cr2is4 5cri1ti cro4p2l2 crop5o cros4e cru4d 4c3s2 2c1t c2ta4b c1ta ct5ang cta2n c5tan1t c2te c3ter c4t4ic1u ctim3i c1tim ctu4r c1tu c4tw4 cud5 c4uf c4ui2 cu5i1ty 5cul2i cul4tis4 cul1ti cu4lt 3c4ul1tu2 cu2ma c3ume cu4mi 3cun cu3pi cu5py cu2r5a4b cu1ra cu5r2i3a 1c2us cus1s4i cu2ss 3c4ut cu4t2ie4 c4u1t2i 4c5u1t2iv 4cutr 1cy c2ze4 1d2a 5da. 2d3a4b da2ch4 4da2f 2dag da2m2 d2an3g da2n dard5 d2a2r dark5 4dary 3dat 4da1t2iv 4da1to 5dav4 dav5e 5day d1b d5c d1d4 2de. dea2f5 de4b5i2t d2e1b de4bo2n deca2n4 de1ca de4cil de1c2i de5com de1co 2d1ed 4dee. de5if dei2 del2i4e4 del2i de4l5i5q de5lo d4em 5dem. 3demic dem5ic. de5mil de4mo2n3s2 de1mo demo2n demo2r5 1den de4n2a2r de1na d4e3no denti5f2 den1t dent2i de3nu de1p de3pa depi4 de2pu d3e1q d4er1h4 5der3m4 d5ern5iz de4r5s2 des2 d2es. de1s2c de2s5o des3t2i d2e3st4r de4su de1t de2to de1v de2v3i4l de1vi 4dey 4d1f d4ga d3ge4t dg1i d2gy d1h2 5di. 1d4i3a dia5b d4i4cam di1ca d4ice 3di2c1t 3d2id 5di3en d2ie4 d1if di3ge d2ig di4la1to di1la d1in 1di1na 3di2ne. d2ine 5d2ini di5niz 1d2io dio5g di4p2l2 d2ip d4ir2 di1re dir1t5i dis1 5disi d4is3t d2i1ti 1d2i1v d1j d5k2 4d5la 3dle. 3dled 3dles. dles2 4d3l2e2ss 2d3lo 4d5lu 2d1ly d1m 4d1n4 1do 3do. do5de 5doe 2d5of d4og do4la dol2i4 do5lo4r dom5iz do3n2at do2n do1n1a doni4 doo3d doo2 do4p4p d4or 3dos 4d5out dou2 do4v 3dox d1p 1dr drag5o2n2 dra2go 4dr2ai2 dre4 dre2a5r 5dren dr4i4b dril4 dro4p 4drow 5drupli dru3p2l2 4dry 2d1s2 ds4p d4sw2 d4s4y d2th 1du d1u1a du2c d1u3ca duc5er 4duct. du2c1t 4duc4t1s2 du5el du4g d3ul4e dum4be du4m1b du4n 4dup du4pe d1v d1w d2y 5dyn dy4s2e dys5p e1a4b e3a2c1t ea2d1 ead5ie4 e2adi ea4ge ea5ger ea4l eal5er e2ale eal3ou2 eam3er e5and ea2n ear3a e2a2r ear4c ear5es ear4ic ear1i ear4il ear5k ear2t eart3e ea5sp e3a2ss east3 ea2t eat5en eath3i e4ath e5at3if2 e4a3tu ea2v eav3en eav5i eav5o 2e1b e4bel. e1bel e4be2l1s2 e4ben e4bi2t e3br e4ca2d e1ca ecan5c eca2n ec1ca5 ec3c e1ce ec5es1sa2 ec2e2ss e1c2i e4cib ec5ificat eci1fi ecifi1ca ec5i3f2ie4 ec5i1fy e2c3im e2c1i4t e5c2ite e4clam e1c4l4 e4cl2us e2col e1co e4com1m e4compe eco4m1p e4con1c eco2n e2cor ec3o1ra eco5ro e1cr e4crem ec4ta2n e2c1t ec1ta ec4te e1cu e4cul ec3u1la 2e2d2a 4ed3d4 e4d1er ede4s2 4edi e3d4i3a ed3ib ed3i1ca ed3im ed1it edi5z 4e1do e4dol edo2n2 e4dri e1dr e4dul e1du ed5u1l4o ee2c e4ed3i ee2f eel3i ee4ly ee2m ee4na ee4p1 ee2s4 eest4 ee4ty e5ex e1f e4f3ere efer1 1e4f1f e4fic e1fi 5ef2i1c4i efil4 e3f2i2ne e2fin ef5i5n2ite ef2ini efin2it 3efit efor5es e1fo efo2r e4fu4se. e3fu ef2us 4egal e1ga eger4 eg5ib eg4ic eg5ing e5git5 eg5n e4go. e1go e4gos eg1ul e5gur 5e1gy e1h4 eher4 ei2 e5ic e2i5d e2ig2 ei5g4l2 e3i4m1b e3in3f e1ing e5inst e2i2n1s2 eir4d e4ir e2it3e e2i3th e5i1ty e1j e4jud ej5udi eki4n ek1i ek4la ek1l e1la e4la. e4lac e3l4an4d ela2n e4l5a1t2iv e4law elax1a4 e3le2a el5ebra el2e1b ele3br 5elec e4led el3e1ga e5len e4l1er e1les2 e2l2f el2i e3libe4 e4l5ic. el3i1ca e3lier el2ie4 el5i3gib el2ig el4igi e5lim e4l3ing e3l2io e2lis el5is2h e3l2iv3 4ella el1l el4lab ell4o4 e5loc el5og el3op. el2s2h e2l1s2 el4ta e4lt e5lud el5ug e4mac e1ma e4mag e5ma2n em5a1na e4m5b e1me e2mel e4met em3i1ca em2i4e4 em5igra em2ig4 emi1gr em1in2 em5ine em3i3ni e4m2is em5is2h e5m4i2s1s em3iz 5emniz e4m1n emo4g e1mo emo3n2i5o emo2n em3pi e4m1p e4mul e1mu em5u1la emu3n2 e3my en5a2mo e1na e4nan1t en2a2n ench4er en2ch enche2 en3dic e5nea e5nee en3em en5ero en1er en5e1si e1nes e2n5est en3etr e3ne4w en5i4c3s2 e5n2ie4 e5nil e3n2i4o en3is2h en3it e5ni1u 5eniz 4e4n1n2 4eno e4no4g e4nos en3ov en4sw2 e2n1s2 ent5age en1t en1ta 4enth1es enth2e en3u1a en5uf e3ny. 4e4n3z e5of eo2g e4oi4 e3ol eop3a2r eo2pa e1or eo3re eo5rol eos4 e4ot eo4to e5out eou2 e5ow e2pa e3p4ai2 ep5anc epa2n e5pel e3pen1t ep5e5t2i1t2io epe2t epeti1ti ephe4 e4pli e1p2l2 e1po e4prec epr2 ep5re1ca e4p2r2ed ep3re1h4 e3pro e4prob ep4s4h e2p1s2 ep5ti5b e2p1t e4pu2t ep5u1ta e1q equi3l equ2 eq2ui2 e4q3ui3s er1a e2ra4b 4er4and era2n er3a2r 4er4ati. 2er1b er4b2l2 er3ch er1c er4che2 2e2re. e3re1a4l ere5co ere3in erei2 er5el. er3e1mo er5e1na er5ence 4erene er3en1t ere4q er5e2ss er3es2t eret4 er1h4 er1i e1r2i3a4 5erick1 e3rien er2ie4 eri4er er3in4e e1r2i1o 4erit er4i1u er2i4v e4ri1va er3m4 er4nis4 4er3n2it 5erniz er3no4 2ero er5ob e5r2oc ero4r er1ou2 e4r1s2 er3set er2se ert3er 4er2tl er3tw4 4eru eru4t 5erwau er1w e1s4a2 e4sa2ge. e4sages es2c e2s1ca es5ca2n e3scr es5cu e1s2e e2sec es5e1cr e4s5enc e4sert. e4ser4t1s2 e4ser1va 4es2h e3sha esh5e2n e1si e2sic e2s2id es5i1den e4s5ig1n4a es2ig e2s5im e2s4i4n esis4te e1sis e5si4u e5skin esk2 esk1i es4mi e2s1m e2sol e1so es3olu e2so2n es5o1n1a4 e1sp e2s3per es5pi1ra esp4ir es4pre espr2 2e2ss es4si4b es1si esta2n4 es1ta es3t2ig est2i es5tim 4es2to e3sto2n 2est4r e5stro estruc5 e2su2r e1su es5ur1r4 es4w2 e2ta4b e1ta e3ten4d e3teo ethod3 et1ic e5tide et2id e2t1in4 et2i4no e5t4ir e5t2i1t2io eti1ti et5i1t2iv 4e2t1n2 et5o1n1a e1to eto2n e3tra e3tre et3ric et5rif et3rog et5ros et3u1a e1tu et5ym e1ty e4t5z 4eu e5un e3up eu3ro e2us4 eute4 euti5l e4u1t2i eu5tr eva2p5 e1va e2vas ev5ast e5vea ev3el1l eve4l3o e5veng even4i ev1er e5v2er1b e1vi ev3id e2vi4l e4v1in e3v2i4v e5voc e5vu e1wa e4wag e5wee e3wh ewil5 ewi2 ew3in4g e3wit 1ex3p 5ey1c 5eye. eys4 1fa fa3b2l2 f4ab3r fa4ce 4fag fa4i4n4 fai2 fal2l5e fal1l 4f4a4ma fam5is 5f2a2r far5th fa3ta fa3th2e f4ath 4fa1to fau4lt5 fau4l2 4f5b 4fd 4fe. feas4 fe4ath3 fea2t f2e4b 4fe1ca 5fe2c1t 2fed fe3l2i fe4mo fen2d fen1d5e fer1 5fer1r4 fev4 4f1f f4fes f4f2ie4 f1fi f5f2in. f2fin f2f5is f4f2ly5 ff4l2 f2fy 4fh 1fi f2i3a 2f3ic. 4f3ical fi1ca f3ica2n 4ficate f3i1cen fi3cer f2i1c4i 5fi3c2i1a 5fic2ie4 4fi4c3s2 fi3cu fi5del f2id fight5 f2ig fil5i fil2l5in4 fil1l fill2i 4fi1ly 2fin 5fi1na f4in2d5 f2i2ne f1in3g f2i4n4n2 fis4t2i f4l2 f5l2e2ss fles2 flin4 flo3re f2ly5 4fm 4fn 1fo 5fo2n fon4de f2ond fon4t fo2r fo5rat fo1ra for5ay fore5t for4i for1t5a fos5 4f5p fra4t f5rea fres5c fri2 fril4 frol5 2f3s 2ft f4to f2ty 3fu fu5el 4fug fu4min fu1mi fu5ne fu3ri fusi4 f2us fu2s4s 4fu1ta 1fy 1ga ga2f4 5gal. 3gal1i ga3lo 2gam ga5met g5a2mo gan5is ga2n ga3niz gani5za1 4gano4 gar5n4 g2a2r ga2ss4 g4ath3 4ga1t2iv 4gaz g3b gd4 2ge. 2ged geez4 gel4in gel2i ge5lis ge5l1iz 4ge1ly 1gen ge4n2at ge1na g5e5niz 4g4eno 4geny 1geo ge3om g4ery 5ge1si geth5 4ge1to ge4ty ge4v 4g1g2 g2ge g3ger gglu5 ggl2 g1go4 gh3in gh5out ghou2 gh4to 5gi. 1g2i4a gi2a5r g1ic 5gi3c2i1a g2i1ci g4i1co gien5 g2ie4 5gies. gil4 g3i1men 3g4in. g4in5ge 5g4i2n1s2 5g2io 3g4ir gir4l g3is1l2 gi4u 5g2iv 3giz gl2 gla4 gl2ad5i gla2d 5glas 1gle gli4b g3l2ig 3glo glo3r g1m g4my g1n4a g4na. gne4t4t2 g1ni g2n1in g4n2i4o g1no g4no4n 1go 3go. gob5 5goe 3g4o4g go3is goi2 go2n2 4g3o3n1a gon5do5 g2ond go3ni 5goo2 go5riz gor5ou2 5gos. gov1 g3p 1gr 4gra1d2a gra2d g4r2ai2 gra2n2 5gra4ph. g5ra3ph4er 5graph1ic gr4aphi 4g3ra1phy 4gray gre4n 4gress. gr2e2ss 4grit g4ro gruf4 gs2 g5ste gth3 gu4a 3guar2d gu2a2r 2gue 5gui5t g2ui2 3gun 3g2us 4gu4t g3w 1gy 2g5y3n gy5ra h3ab4l2 ha2ch4 hae4m hae4t h5agu ha3la hala3m ha4m han4ci ha2n han4cy 5hand. h4and h2an4g hang5er han1g5o h5a5niz ha4n4k2 han4te han1t ha2p3l2 ha2p5t ha3ra2n h2a2r ha5r2as har2d hard3e har4le4 har1l harp5en har2p har5ter ha2s5s haun4 5haz haz3a1 h1b 1hea2d1 3he2a2r he4ca2n he1ca h5ecat h4ed h4e5do5 he3l4i hel4lis hel1l hell2i hel4ly h5elo he4m4p he2n he1na4 hen5at he1o5r hep5 h4er1a hera3p her4ba h2er1b here5a h3ern h5er1ou2 h2ero h3ery h1es he2s5p he4t he2t4ed h4eu4 h1f h1h hi5a2n h2i1a hi4co high5 h2ig h4il2 himer4 h4i1na hion4e h2io hio2n h2i4p hir4l h4ir hi3ro hir4p hir4r4 his3el h4ise h4i2s4s hith5er h2ith hith2e h2i2v 4hk 4h1l4 hla2n4 h2lo hlo3ri 4h1m hmet4 2h1n h5odiz h5o2d1s2 ho4g ho1ge4 hol5a2r ho1la 3hol4e ho4ma ho2me3 ho1n4a ho2n ho5ny 3hood hoo2 hoo2n4 hor5at ho1ra ho5r2is hort3e ho5ru hos4e ho5sen hos1p 1ho2us hou2 house3 hov5el 4h5p 4hr4 hree5 hro5niz hro2n hro3po 4h1s2 h4s2h h4t2a2r h1ta ht1en ht5es h4ty hu4g hu4min hu1mi hun5ke hu4nk2 hun4t hus3t4 h2us hu4t h1w h4war4t hw2a2r hy3pe hy3ph hy2s 2i1a i2al iam4 iam5e1te i2a2n 4ianc ian3i 4ian4t ia5pe ia2ss4 i4a1t2iv ia4tric ia1tr i4a2tu ibe4 ib3er1a ib5ert ib5i1a ib3in ib5it. ibi2t ib5ite i1b2l2 ib3li i5bo i1br i2b5ri i5bu4n 4icam i1ca 5icap 4ic2a2r i4car. i4cara icas5 i4cay iccu4 ic3c 4iceo 4i2ch 2i1ci i5c2id ic5i1na i2cin i2c2ip ic3i1pa i4c1ly4 i1c4l4 i2c5oc i1co 4i1cr 5icra i4cry ic4te i2c1t ic1tu2 ic4t3u1a ic3u1la ic4um ic5uo i3cur 2id i4dai2 i1d2a id5anc ida2n id5d4 ide3a4l ide4s2 i2di id5i2a2n i1d4i3a idi4a2r i5d2ie4 i1d3io idi5ou2 id1it id5i1u i3dle i4dom i1do id3ow i4dr i2du id5uo 2ie4 ied4e 5ie5ga ie2ld3 ie1n5a4 ien4e i5e4n1n2 i3ent2i ien1t i1er. i3es2c i1est i3et 4if. if5ero ifer1 iff5en i4f1f if4fr 4i2f3ic. i1fi i3f2ie4 i3f4l2 4i2ft 2ig iga5b i1ga ig3er1a ight3i 4igi i3gib ig3il4 ig3in ig3it i4g4l2 i2go ig3or ig5ot i5gre i1gr ig2u5i2 ig1ur i3h 4i5i4 i3j 4ik i1la il3a4b i4l4ade ila2d i2l5am ila5ra il2a2r i3leg il1er ilev4 i2l5f il1i il3i1a il2ib il3io il4ist 2il1it il2iz ill5ab il1l 4i2l1n2 il3o1q il4ty i4lt il5ur il3v i4mag i1ma im3age ima5ry im2a2r iment2a5r i1men i3men1t imen1ta 4imet im1i im5i1d4a im2id imi5le i5m2ini 4imit im4ni i4m1n i3mo2n i1mo i2mu im3u1la 2in. i4n3au i1na 4inav incel4 in3cer 4ind in5dling 2ine i3nee in4er4a2r in1er iner1a i5n2e2ss i1nes 4in1ga 4inge in5gen 4ingi in5gling ingl2 4in1go 4in1gu 2ini i5ni. i4n4i1a in3i4o in1is i5ni4te. in2it in2ite 5i3n2i1t2io ini1ti in3i1ty 4i4nk2 4i4n1l 2i4n1n2 2i1no i4no4c ino4s i4not 2i2n1s2 in3se insu1r5a in1su insu2r 2int. in1t 2in4th in1u i5n2us 4iny 2io 4io. io1ge4 io2gr i1ol io4m ion3at io2n io1n1a ion4ery ion1er ion3i i2o5ph ior3i i4os i4o5th i5oti io4to i4our iou2 2ip ipe4 iphr2as4 ip4hr4 ip3i ip4ic ip4re4 ipr2 ip3ul i3qua iqu2 iq5ue1f iq3u2id iq2ui2 iq3ui3t 4ir i1ra i2ra4b i4rac ird5e ire4de i2r2ed i4re1f i4rel4 i4res ir5gi irg2 ir1i iri5de ir2id ir4is iri3tu 5i5r2iz ir4min ir1m iro4g 5iron. iro2n ir5ul 2is. is5ag isa2 is3a2r isas5 2is1c is3ch2 4ise is3er 3i4s3f is5ha2n is2h is3ho2n3 isho4 ish5op is3i1b is2i4d i5sis is5i1t2iv isi1ti 4is4k2 isla2n4 is1l2 4is4m1s2 i2s1m i2so iso5mer i3som iso2me is1p is2pi is4py 4i2s1s is4sal is1sa2 issen4 is4s1e4s is4ta. is1ta is1te is1t2i ist4ly is2tl 4istral ist4r is1tra i2su is5us 4i3ta. i1ta ita4bi i2tab i4tag 4ita5m i3ta2n i3tat 2ite it3er1a i5ter1i it4es 2ith i1ti 4i1t2i1a 4i2tic it3i1ca 5i5tick1 i2t3ig it5il1l i2tim 2i1t2io 4itis i4ti2s4m i2t5o5m i1to 4ito2n i4tram i1tra it5ry 4i4t3t2 it3u1at i1tu itu1a i5tud2 it3ul 4itz. i4tz i1u 2iv iv3el1l iv3en. i4v3er. i4vers. ive4r1s2 iv5il. i2vil iv5io iv1it i5vore iv3o3ro i4v3ot 4i5w ix4o 4iy 4iz2a2r2 iza1 i2z1i4 5izon1t i1zo izo2n 5ja jac4q ja4p 1je je4r5s2 4jes4t2ie4 jest2i 4jes2ty jew3 jo4p 5judg 3ka. k3ab k5ag kais4 kai2 kal4 k1b k2ed 1kee ke4g ke5l2i k3en4d k1er kes4 k3e2st. ke4ty k3f kh4 k1i 5ki. 5k2ic k4il1l kilo5 k4im k4in. kin4de k4ind k5i5n2e2ss k2ine ki1nes kin4g k2i4p kis4 k5is2h kk4 k1l 4k3ley 4k1ly k1m k5nes 1k2no ko5r kos2h4 k3ou2 kro5n 4k1s2 k4sc ks4l2 k4s4y k5t k1w lab3ic l4abo l4a2ci4 l4ade la2d la3d2y lag4n la2m3o 3l4and la2n lan4dl lan5et lan4te lan1t lar4g2 l2a2r lar3i las4e la5ta2n la2ta 4latel2i4 4la1t2iv 4lav la4v4a 2l1b lbin4 4l1c2 lce4 l3ci 2ld l2de ld4ere ld4er1i ldi4 ld5is1 l3dr l4dri le2a le4bi l2e1b le2ft5 le1f 5leg. 5le4g1g2 le4mat le1ma lem5at1ic 4len. 3lenc 5le2ne. 1len1t le3ph le4pr2 le2ra5b ler1a ler4e 3lerg2 3l4er1i l4ero les2 le5s1co les2c 5lesq 3l2e2ss 5less. l3e1va lev4er. lev1er lev4er1a lev4e4r1s2 3ley 4leye 2lf l5fr 4l1g4 l5ga lg2a2r3 l4ges l1go3 2l3h li4ag l2i1a li2am4 liar5iz li2a2r liar1i li4as li4a1to li5bi 5lic2io l2i1ci li4cor li1co 4li4c3s2 4lict. li2c1t l4icu l3i1cy l3i1d2a l2id lid5er 3li2di lif3er1 l4i4f1f li4f4l2 5ligate l2ig li1ga 3ligh li4gra li1gr 3l4ik 4l4i4l lim4b2l2 li4m1b lim3i li4mo l4i4m4p l4i1na 1l4ine lin3ea l2in3i link5er l4i4nk2 li5og l2io 4l4iq lis4p l1it l2it. 5lit3i1ca li1ti l4i2tic l5i5ti4c3s2 liv3er l2iv l1iz 4lj lka3 l3kal4 lka4t l1l l4law l2le l5le2a l3lec l3leg l3lel l3le4n l3le4t ll2i l2lin4 l5l4i1na ll4o lloq2ui5 llo1q lloqu2 l2l5out llou2 l5low 2lm l5met lm3ing l4mo2d1 l1mo lmo2n4 2l1n2 3lo. lob5al lo4ci 4lof 3log1ic l5o1go 3logu lom3er lo2me 5long lo2n lon4i l3o3niz lood5 loo2 5lo4pe. lop3i l3o4p1m lo1ra4 lo4ra1to lo5r2ie4 lor5ou2 5los. los5et 5los5o3phiz lo2so los4op los2oph 5los5o1phy los4t lo4ta loun5d lou2 2lout 4lov 2lp lpa5b l1pa l3pha l5phi lp5ing lpi2n l3pit l4p2l2 l5pr2 4l1r 2l1s2 l4sc l2se l4s2ie4 4lt lt5ag l1ta ltane5 lta2n l1te lten4 lter1a4 lth3i l5ties. lt2ie4 ltis4 l1tr l1tu2 ltu1r3a lu5a lu3br lu2ch4 lu3ci lu3en luf4 lu5id l2ui2 lu4ma 5lu1mi l5umn. lu4m1n 5lum3n4i1a lu3o luo3r 4lup lu2ss4 l2us lus3te 1lut l5ven l5vet4 2l1w 1ly 4lya 4ly1b ly5me4 ly3no 2lys4 l5y3s2e 1ma 2mab ma2ca ma5ch2ine ma2ch ma4ch1in ma4c4l4 mag5in mag1i 5mag1n 2mah ma2id5 mai2 4ma2ld ma3l2ig mal1i ma5lin mal4l2i mal1l mal4ty ma4lt 5ma3n4i1a ma2n man5is man3iz 4map ma5ri2ne. m2a2r mar1i mar2in4e ma5r2iz mar4ly mar1l mar3v ma5sce mas4e mas1t 5mate m4ath3 ma3tis 4mati3za1 ma1tiz 4m1b m1ba4t5 m5bil m4b3ing mb2i4v 4m5c 4me. 2med 4med. 5me3d4i3a m4edi me3d2ie4 m5e5d2y me2g mel5o2n me4l4t me2m me1m1o3 1men me1n4a men5ac men4de 4mene men4i me2n1s4 men1su5 3men1t men4te me5o2n m5er1sa2 me4r1s2 2mes 3mest2i me4ta met3a2l me1te me5thi m4etr 5met3ric me5tr2ie4 me3try me4v 4m1f 2mh 5mi. m2i3a mi1d4a m2id mid4g m2ig4 3mil3i1a mil1i m5i5l2ie4 m4il1l mi1n4a 3m4ind m5i3nee m2ine m4ingl2 min5gli m5ing1ly min4t m4in1u miot4 m2io m2is mi4s4er. m4ise mis3er mis5l2 mis4t2i m5i4stry mist4r 4m2ith m2iz 4mk 4m1l m1m mma5ry m1ma mm2a2r 4m1n m1n4a m4n1in mn4o 1mo 4mocr 5moc5ra1tiz mo2d1 mo4go mois2 moi2 mo4i5se 4m2ok mo5lest moles2 mo3me mon5et mo2n mon5ge mo3n4i3a mon4i2s1m mon1is mon4ist mo3niz monol4 mo3ny. mo2r 4mo5ra. mo1ra mos2 mo5sey mo3sp m4oth3 m5ouf mou2 3mo2us mo2v 4m1p mpara5 m1pa mp2a2r mpa5rab mp4a4r5i m3pe2t mphas4 m2pi mp2i4a mp5ies mp2ie4 m4p1i2n m5p4ir mp5is mpo3ri m1p4or mpos5ite m1pos m4po2us mpou2 mpov5 mp4tr m2p1t m2py 4m3r 4m1s2 m4s2h m5si 4mt 1mu mul2a5r4 mu1la 5mu4lt mul1ti3 3mum mun2 4mup mu4u 4mw 1na 2n1a2b n4abu 4nac. na4ca n5a2c1t nag5er. nak4 na4l1i na5l2i1a 4na4lt na5mit n2a2n nan1ci4 nan4it na4nk4 nar3c n2a2r 4nare nar3i nar4l n5ar1m n4as nas4c nas5t2i n2at na3ta2l na2ta nat5o5m2iz na2tom na1to n2au nau3se na2us 3naut nav4e 4n1b4 nc2a2r5 n1ca n4ces. n3cha n2ch n5cheo nche2 n5ch4il2 n3chis n2c1in n1ci n2c4it ncou1r5a n1co ncou2 n1cr n1cu n4dai2 n1d2a n5da2n n1de nd5e2st. ndes2 ndi4b n5d2if n1dit n3diz n5du2c n1du ndu4r nd2we nd1w 2ne. n3e2a2r n2e2b neb3u ne2c 5neck1 2ned ne4gat ne1ga ne4g5a1t2iv 5nege ne4la nel5iz nel2i ne5mi ne4mo 1nen 4nene 3neo ne4po ne2q n1er ne2ra5b ner1a n4er3a2r n2ere n4er5i ner4r4 1nes 2nes. 4ne1sp 2nest 4nes4w2 3net1ic ne4v n5eve ne4w n3f n4gab n1ga n3gel nge4n4e n1gen n5gere n3ger1i ng5ha n3gib ng1in n5git n4gla4 ngl2 ngov4 n1go ng5s2h ngs2 n1gu n4gum n2gy 4n1h4 nha4 nhab3 nhe4 3n4i1a ni3a2n ni4ap ni3ba ni4b2l2 n2i4d ni5di ni4er n2ie4 ni2fi ni5ficat nifi1ca n5i1gr n2ig n4ik4 n1im ni3m2iz nim1i n1in 5ni2ne. n2ine nin4g n2i4o 5n2is. nis4ta n2it n4ith 3n2i1t2io ni1ti n3itor ni1to ni3tr n1j 4nk2 n5k2ero nk1er n3ket nk3in nk1i n1k1l 4n1l n5m nme4 nmet4 4n1n2 nne4 nni3al n3n4i1a nn2i4v nob4l2 no3ble n5o1c4l4 4n3o2d 3noe 4nog no1ge4 nois5i noi2 no5l4i 5nol1o1gis 3nomic n5o5m2iz no4mo no3my no4n non4ag no1n1a non5i n5oniz 4nop 5nop5o5l2i no2r5ab no1ra no4rary nor2a2r 4nos2c nos4e nos5t no5ta 1nou2 3noun nov3el3 nowl3 n1p4 npi4 npre4c npr2 n1q n1r nru4 2n1s2 n2s5ab nsa2 nsati4 ns4c n2se n4s3e4s ns2id1 ns2ig4 n2s1l2 n2s3m n4soc n1so ns4pe n5spi nsta5b2l2 ns1ta ns2tab n1t n2ta4b n1ta nte4r3s2 nt2i n5ti2b nti4er nt2ie4 nti2f2 n3t2ine n2t1in n4t3ing nt2i4p ntrol5l2i ntrol1l n4t4s2 ntu3me n1tu n3tum nu1a nu4d nu5en nuf4fe nu4f1f n3ui4n n2ui2 3nu3it n4um nu1me n5u1mi 3nu4n n3uo nu3tr n1v2 n1w4 nym4 nyp4 4nz n3za1 4oa oa2d3 o5a5les2 o2ale oard3 o2a2r oas4e oast5e oat5i ob3a3b o5b2a2r o1be4l o1bi o2bin ob5ing o3br ob3ul o1ce o2ch4 o3che4t oche2 ocif3 o1ci o4cil o4clam o1c4l4 o4cod o1co oc3rac oc5ra1tiz ocre3 5ocrit ocri2 octo2r5a o2c1t oc1to oc3u1la o5cure od5d1ed od1d4 od3ic o1d2i3o o2do4 od4or3 o4d5uct. o1du odu2c odu2c1t o4d5uc4t1s2 o4el o5eng o3er oe4ta o3ev o2fi of5ite of4i4t4t2 o2g5a5r o1ga o4g5a1t2iv o4ga1to o1ge o5gene o1gen o5geo o4ger o3g2ie4 1o1gis og3it o4gl2 o5g2ly 3ogniz og1ni o4g4ro o1gr og2u5i2 1o1gy 2o2g5y3n o1h2 ohab5 oi2 oic3es oi3der o2id oi4f1f4 o2ig4 oi5let o3ing oint5er oin1t o5i2s1m oi5so2n oi2so oist5en ois1te oi3ter o2ite o5j 2ok o3ken ok5ie4 ok1i o1la o4la2n ola2ss4 o2l2d ol2d1e ol3er o3les2c oles2 o3let ol4fi o2lf ol2i o3l2i1a o3lice ol5id. ol2id o3li4f o5l4i4l ol3ing o5l2io o5l2is. ol3is2h o5l2ite ol1it o5l2i1t2io oli1ti o5l2iv oll2i4e4 ol1l oll2i ol5o3giz olo4r ol5p2l2 o2lp o4l2t ol3ub ol3ume ol3un o5l2us ol2v o2ly o2m5ah o1ma oma5l om5a1tiz om2be o4m1b om4b2l2 o2me om3e1n4a o1men om5er2se ome4r1s2 o4met om5e3try om4etr o3m2i3a om3ic. om3i1ca o5m2id om1in o5m2ini 5ommend om1m om1men omo4ge o1mo o4mo2n om3pi o4m1p ompro5 ompr2 o2n o1n1a on4ac o3n2a2n on1c 3oncil on1ci 2ond on5do o3nen o2n5est o1nes on4gu on1ic o3n2i4o on1is o5ni1u on3key o4nk2 on4odi o4n3o2d on3o3my o2n3s2 on5spi4 onspi1r5a onsp4ir on1su4 onten4 on1t on3t4i onti2f5 on5um on1va5 on1v2 oo2 ood5e ood5i o2o4k oop3i o3ord oost5 o2pa o2p2e5d op1er 3oper1a 4op4erag 2oph o5pha2n o5ph4er op3ing opi2n o3pit o5po2n o4posi o1pos o1pr2 op1u opy5 o1q o1ra o5ra. o4r3ag or5al1iz oral1i or5an4ge ora2n or2ang ore5a o5re1a4l or3ei2 or4e5s2h or5e2st. ores2t orew4 or4gu org2 4o5r2i3a or3i1ca o5ril or1in o1r2i1o or3i1ty o3ri1u or2mi or1m orn2e o5rof or3oug orou2 or5pe or1p 3orrh4 or1r4 or4se o4rs2 ors5en orst4 or3thi or3thy or4ty o5rum o1ry os3al osa2 os2c os4ce o3scop os1co 4oscopi o5scr os4i4e4 os5i1t2iv osi1ti os3i1to os3i1ty o5si4u os4l2 o2so o2s4pa os4po os2ta o5stati os5til ost2i os5tit o4ta2n o1ta otele4g ot3er. ot5e4r1s2 o4tes 4oth oth5e1si oth2e oth1es oth3i4 ot3ic. ot5i1ca o3tice o3tif2 o3tis oto5s2 o1to ou2 ou3b2l2 ouch5i ou2ch ou5et ou4l ounc5er oun2d ou5v2 ov4en over4ne ove4r3s2 ov4ert o3vis o4vi1ti4 o5v4ol ow3der ow3el ow5est3 ow1i2 own5i o4wo2 oy1a 1pa pa4ca pa4ce pa2c4t p4a2d 5paga4n pa1ga p3agat p4ai2 pa4i4n4 p4al pa1n4a pa2n pan3el pan4ty pan1t pa3ny pa1p pa4pu para5b2l2 p2a2r pa2rab par5age par5d2i 3pare par5el p4a4r1i par4is pa2te pa5ter 5pathic p4ath pa5thy pa4tric pa1tr pav4 3pay 4p1b pd4 4pe. 3pe4a pear4l pe2a2r pe2c 2p2ed 3pede 3p4edi pe3d4i3a4 ped4ic p4ee pee4d pek4 pe4la pel2i4e4 pel2i pe4n2a2n pe1na p4enc pen4th pen1t pe5o2n p4era. per1a pera5b2l2 pe2ra4b p4erag p4er1i peri5st per2is per4mal per3m4 per1ma per2me5 p4ern p2er3o per3ti p4e5ru per1v pe2t pe5ten pe5tiz 4pf 4pg 4ph. phar5i ph2a2r ph4e3no phe2n ph4er ph4es. ph1es ph1ic 5ph2ie4 ph5ing 5phis1t2i 3phiz p4h2l4 3phob 3phone pho2n 5phoni pho4r 4p4h1s2 ph3t 5phu 1phy p2i3a pi2a2n4 pi4c2ie4 p2i1ci pi4cy p4id p5i1d2a pi3de 5pi2di 3piec p2ie4 pi3en pi4grap p2ig pi1gr pi3lo pi2n p4in. p4ind4 p4i1no 3p2i1o pio2n4 p3ith pi5tha pi2tu 2p3k2 1p2l2 3pla2n plas5t pl2i3a pli5er pl2ie4 4pl2ig pli4n ploi4 plu4m plu4m4b 4p1m 2p3n po4c 5pod. po5em po3et5 5po4g poin2 poi2 5poin1t poly5t po2ly po4ni po2n po4p 1p4or po4ry 1pos po2s1s p4ot po4ta 5poun pou2 4p1p ppa5ra p1pa pp2a2r p2pe p4p2ed p5pel p3pen p3per p3pe2t ppo5s2ite p1pos pr2 pray4e4 5pre1c2i pre5co pre3e2m pre4f5ac pre1f pre1fa pre4la pr1e3r4 p3re1s2e 3pr2e2ss pre5ten pre3v2 5pr2i4e4 prin4t3 pr2i4s pri2s3o p3ro1ca pr2oc prof5it pro2fi pro3l pros3e pro1t 2p1s2 p2se ps4h p4si1b 2p1t p2t5a4b p1ta p2te p2th p1ti3m ptu4r p1tu p4tw4 pub3 pue4 puf4 pu4l3c2 pu4m pu2n pur4r4 5p2us pu2t 5pute put3er pu3tr put4t1ed pu4t3t2 put4t1in p3w qu2 qua5v4 2que. 3quer 3quet 2rab ra3bi rach4e2 ra2ch r5a1c4l4 raf5fi ra2f ra4f1f4 ra2f4t r2ai2 ra4lo ram3et r2ami ra3ne5o ra2n ran4ge r2ang r4ani ra5no4 rap3er 3ra1phy rar5c r2a2r rare4 rar5e1f 4raril rar1i r2as ratio2n4 ra1t2io rau4t ra5vai2 ra2va rav3el ra5z2ie4 ra2z1i r1b r4bab r4bag rbi2 r2b3i4f r2bin r5b2ine rb5ing. rb4o r1c r2ce r1cen4 r3cha r2ch rch4er rche2 r4ci4b r1ci r2c4it rcum3 r4dal r1d2a rd2i r1d4i4a rdi4er rd2ie4 rd1in4 rd3ing 2re. re1a4l re3a2n re5ar1r4 re2a2r 5rea2v re4aw r5ebrat r2e1b re3br rec5ol1l re2col re1co re4c5ompe reco4m1p re4cre re1cr 2r2ed re1de re3dis1 r4edi red5it re4fac re1f re1fa re2fe re5fer. refer1 re3fi re4fy reg3is re5it rei2 re1l2i re5lu r4en4ta ren1t ren4te re1o re5pi2n re4posi re1po re1pos re1pu r1er4 r4er1i r2ero4 r4e5ru r4es. re4spi re1sp res4s5i4b r2e2ss res1si res2t re5s2ta2l res1ta r2e3st4r re4ter re4ti4z re3tri r4eu2 re5u1t2i rev2 re4val re1va rev3el r5ev5er. rev1er re5ve4r1s2 re5vert re5vi4l re1vi rev5olu re4wh r1f r3fu4 r4fy rg2 rg3er r3get r3g1ic rgi4n rg3ing r5gis r5git r1gl2 rgo4n2 r1go r3gu rh4 4rh. 4rhal r2i3a ria4b ri4ag r4ib rib3a ric5as5 ri1ca r4ice 4r2i1ci 5ri5c2id ri4c2ie4 r4i1co rid5er r2id ri3enc r2ie4 ri3en1t ri1er ri5et rig5a2n r2ig ri1ga 5r4igi ril3iz ril1i 5rima2n ri1ma rim5i 3ri1mo rim4pe ri4m1p r2i1na 5rina. r4in4d r2in4e rin4g r2i1o 5riph r2ip riph5e ri2p2l2 rip5lic r4iq r2is r4is. r2is4c r3is2h ris4p ri3ta3b ri1ta r5ited. r2ite ri2t1ed rit5er. rit5e4r1s2 r4i2t3ic ri1ti ri2tu rit5ur riv5el r2iv riv3et riv3i r3j r3ket rk4le rk1l rk4lin r1l rle4 r2led r4l2ig r4lis rl5is2h r3lo4 r1m rma5c r1ma r2me r3men rm5e4r1s2 rm3ing r4ming. r4m2io r3mit r4my r4n2a2r r1na r3nel r4n1er r5net r3ney r5nic r1nis4 r3n2it r3n2iv rno4 r4nou2 r3nu rob3l2 r2oc ro3cr ro4e ro1fe ro5fil ro2fi r2ok2 ro5k1er 5role. rom5e1te ro2me ro4met rom4i ro4m4p ron4al ro2n ro1n1a ron4e ro5n4is ron4ta ron1t 1room roo2 5root ro3pel rop3ic ror3i ro5ro ro2s5per ro2s4s ro4th2e r4oth ro4ty ro4va rov5el rox5 r1p r4pe4a r5pen1t rp5er. r3pe2t rp4h4 rp3ing rpi2n r3po r1r4 rre4c rre4f r4re1o rre4s2t rr2i4o rr2i4v rro2n4 rros4 rrys4 4rs2 r1sa2 rsa5ti rs4c r2se r3sec rse4cr r4s5er. rs3e4s r5se5v2 r1s2h r5sha r1si r4si4b rso2n3 r1so r1sp r5sw2 rta2ch4 r1ta r4tag r3t2e1b r3ten4d r1te5o r1ti r2t5i2b rt2i4d r4tier rt2ie4 r3t2ig rtil3i rtil4l r4ti1ly r4tist r4t2iv r3tri rtr2oph4 rt4s2h4 r4t1s2 ru3a ru3e4l ru3en ru4gl2 ru3i4n r2ui2 rum3p2l2 ru4m2p ru2n ru4nk5 run4ty run1t r5usc2 r2us ru2t1i5n r4u1t2i rv4e rvel4i r3ven rv5er. r5vest rv4e2s r3vey r3vic r3v2i4v r3vo r1w ry4c 5rynge ryn5g ry3t sa2 2s1ab 5sack1 sac3ri2 s3a2c1t 5sai2 sa4l2a2r4 s4a2l4m sa5lo sa4l4t 3sanc sa2n san4de s4and s1ap sa5ta 5sa3t2io sa2t3u sau4 sa5vor 5saw 4s5b scan4t5 s1ca sca2n sca4p scav5 s4ced 4s3cei2 s4ces s2ch2 s4cho2 3s4c2ie4 s1ci 5sc4in4d s2cin scle5 s1c4l4 s4cli scof4 s1co 4scopy5 scou1r5a scou2 s1cu 4s5d 4se. se4a seas4 sea5w se2c3o 3se2c1t 4s4ed se4d4e s5edl se2g se1g3r 5sei2 se1le 5se2l2f 5selv 4se1me se4mol se1mo sen5at se1na 4senc sen4d s5e2ned sen5g s5en1in 4sen4t1d sen1t 4sen2tl se2p3a3 4s1er. s4er1l s2er4o 4ser3vo s1e4s s4e5s2h ses5t 5se5um s4eu 5sev sev3en sew4i2 5sex 4s3f 2s3g s2h 2sh. sh1er 5shev sh1in sh3io 3sh2i4p sh2i2v5 sho4 sh5o2l2d sho2n3 shor4 short5 4sh1w si1b s5ic3c 3si2de. s2id 5side4s2 5si2di si5diz 4sig1n4a s2ig sil4e 4si1ly 2s1in s2i1na 5si2ne. s2ine s3ing 1s2io 5sio2n sio1n5a s4i2r si1r5a 1sis 3s2i1t2io si1ti 5si1u 1s2iv 5siz sk2 4ske s3ket sk5ine sk1i sk5in4g s1l2 s3lat s2le sl2ith5 sl1it 2s1m s3ma smal1l3 sma2n3 smel4 s5men 5s4m2ith smo2l5d4 s1mo s1n4 1so so4ce so2ft3 so4lab so1la so2l3d2 so3lic sol2i 5sol2v 3som 3s4on. so2n so1n1a4 son4g s4op 5soph1ic s2oph s5o3phiz s5o1phy sor5c sor5d 4sov so5vi 2s1pa 5sp4ai2 spa4n spen4d 2s5peo 2sper s2phe 3sph4er spho5 spil4 sp5ing spi2n 4s3p2i1o s4p1ly s1p2l2 s4po2n s1p4or4 4sp4ot squal4l squ2 s1r 2ss s1sa2 ssas3 s2s5c s3sel s5sen5g s4ses. ss1e4s s5set s1si s4s2ie4 ssi4er s4s5i1ly s4s1l2 ss4li s4s1n4 sspen4d4 ss2t ssu1r5a s1su ssu2r ss5w2 2st. s2tag s1ta s2ta2l stam4i 5st4and sta2n s4ta4p 5stat. s4t1ed stern5i s5t2ero ste2w ste1w5a s3th2e st2i s4ti. s5t2i1a s1tic 5s4tick1 s4t2ie4 s3tif2 st3ing s2t1in 5st4ir s1tle s2tl 5stock1 s1to sto2m3a 5stone sto2n s4top 3store st4r s4tra2d s1tra 5stra2tu s4tray s4tr2id 4stry 4st3w4 s2ty 1su su1al su4b3 su2g3 su5is s2ui2 suit3 s4ul su2m su1m3i su2n su2r 4sv sw2 4s1wo2 s4y 4sy1c 3syl syn5o sy5rin 1ta 3ta. 2tab ta5bles2 tab2l2 5tab5o5l1iz tabol2i 4t4a2ci ta5do ta2d 4ta2f4 tai5lo tai2 ta2l ta5la tal5en t2ale tal3i 4talk tal4lis tal1l tall2i ta5log ta5mo tan4de ta2n t4and 1tan1ta3 tan1t ta5per ta5p2l2 tar4a t2a2r 4tar1c 4tare ta3r2iz tar1i tas4e ta5s4y 4tat1ic ta4tur ta2tu taun4 tav4 2taw tax4is tax3i 2t1b 4tc t4ch tch5e4t tche2 4t1d 4te. te2ad4i tea2d1 4tea2t te1ce4 5te2c1t 2t1ed t4e5di 1tee teg4 te5ger4 te5gi 3tel. tel2i4 5te2l1s2 te2ma2 tem3at 3ten2a2n te1na 3tenc 3tend 4te1nes 1ten1t ten4tag ten1ta 1teo te4p te5pe ter3c 5ter3d 1ter1i ter5ies ter2ie4 ter3is teri5za1 5t4er3n2it ter5v 4tes. 4t2e2ss t3ess. teth5e 3t4eu 3tex 4tey 2t1f 4t1g 2th. tha2n4 th2e 4thea th3eas the5a2t the3is thei2 3the4t th5ic. th5i1ca 4th4il2 5th4i4nk2 4t4h1l4 th5ode 5thod3ic 4thoo2 thor5it tho5riz 2t4h1s2 1t2i1a ti4ab ti4a1to 2ti2b 4tick1 t4i1co t4ic1u 5ti2di t2id 3tien t2ie4 tif2 ti5fy 2t2ig 5tigu til2l5in4 til1l till2i 1tim 4ti4m1p tim5ul ti2mu 2t1in t2i1na 3ti2ne. t2ine 3t2ini 1t2io ti5oc tion5ee tio2n 5tiq ti3sa2 3t4ise ti2s4m ti5so tis4p 5tisti1ca tis1t2i tis1tic ti3tl ti4u 1t2iv ti1v4a 1tiz ti3za1 ti3ze4n ti2ze 2tl t5la tla2n4 3tle. 3tled 3tles. tles2 t5let. t5lo 4t1m tme4 2t1n2 1to to3b to5crat 4to2do4 2tof to2gr to5ic toi2 to2ma to4m4b to3my ton4a4l1i to2n to1n1a to3n2at 4tono 4tony to2ra to3r2ie4 tor5iz tos2 5tour tou2 4tout to3w2a2r 4t1p 1tra t2ra3b tra5ch tr4a2ci4 tra2c4it trac4te tra2c1t tr2as4 tra5ven trav5e2s5 tre5f tre4m trem5i 5tr2i3a tri5ces tr4ice 5tri3c2i1a t4r2i1ci 4tri4c3s2 2trim tr2i4v tro5m4i tron5i tro2n 4trony tro5phe tr2oph tro3sp tro3v tr2u5i2 tr2us4 4t1s2 t4sc ts2h4 t4sw2 4t3t2 t4tes t5to t1tu4 1tu tu1a tu3a2r tu4b4i tud2 4tue 4tuf4 5t2u3i2 3tum tu4nis tu1ni 2t3up. 3ture 5turi tur3is tur5o tu5ry 3t2us 4tv tw4 4t1wa twis4 twi2 4t1wo2 1ty 4tya 2tyl type3 ty5ph 4tz t2z4e 4uab uac4 ua5na ua2n uan4i uar5an1t u2a2r uara2n uar2d uar3i uar3t u1at uav4 ub4e u4bel u3ber u4b2ero u1b4i u4b5ing u3b4le. ub2l2 u3ca uci4b u1ci u2c4it ucle3 u1c4l4 u3cr u3cu u4cy ud5d4 ud3er ud5est udes2 ude1v4 u1dic ud3ied ud2ie4 ud3ies ud5is1 u5dit u4do2n u1do ud4si u2d1s2 u4du u4ene ue2n1s4 uen4te uen1t uer4il uer1i 3u1fa u3f4l2 ugh3e2n ug5in 2ui2 uil5iz uil1i ui4n u1ing uir4m u4ir ui1ta4 u2iv3 ui4v4er. u5j 4uk u1la ula5b u5lati ul2ch4 u4l1c2 5ulche2 ul3der u2ld ul2de ul4e u1len ul4gi u4l1g4 ul2i u5l2i1a ul3ing ul5is2h ul4l2a2r ul1l ul4li4b ull2i ul4lis 4u2l3m u1l4o 4u2l1s2 uls5e4s ul2se ul1ti u4lt ul1tra3 ul1tr 4ul1tu2 u3lu ul5ul ul5v u2m5ab u1ma um4bi u4m1b um4b1ly umb2l2 u1mi u4m3ing umor5o u1mo umo2r u4m2p un2at4 u1na u2ne un4er u1ni un4im u2n1in un5is2h un2i3v u2n3s4 un4sw2 un2t3a4b un1t un1ta un4ter. un4tes unu4 un5y u4n5z u4o4rs2 u5os u1ou2 u1pe upe4r5s2 u5p2i3a up3ing upi2n u3p2l2 u4p3p upport5 up1p4or up2t5i2b u2p1t up1tu4 u1ra 4ura. u4rag u4r2as ur4be ur1b ur1c4 ur1d ure5a2t ur4fer1 ur1f ur4fr u3rif uri4fic uri1fi ur1in u3r2i1o u1rit ur3iz ur2l url5ing. ur4no4 uros4 ur4pe ur1p ur4pi urs5er u4rs2 ur2se ur5tes ur3th2e ur1ti4 ur4t2ie4 u3ru 2us u5sa2d usa2 u5sa2n us4ap usc2 us3ci use5a u5s2i1a u3sic us4lin us1l2 us1p us5s1l2 u2ss us5tere us1t4r u2su usu2r4 u2ta4b u1ta u3tat 4u4te. 4utel 4uten uten4i 4u1t2i uti5l2iz util1i u3t2ine u2t1in ut3ing utio1n5a u1t2io utio2n u4tis 5u5tiz u4t1l u2t5of u1to uto5g uto5mat1ic uto2ma u5to2n u4tou2 u4t1s4 u3u uu4m u1v2 ux1u3 u2z4e 1va 5va. 2v1a4b vac5il v4a2ci vac3u vag4 va4ge va5l2i4e4 val1i val5o val1u va5mo va5niz va2n va5pi var5ied v2a2r var1i var2ie4 3vat 4ve. 4ved veg3 v3el. vel3l2i vel1l ve4lo v4e1ly ven3om v4eno v5enue v4erd 5v2e2re. v4erel v3eren ver5enc v4eres ver3ie4 ver1i vermi4n ver3m4 3ver2se ve4r1s2 ver3th v4e2s 4ves. ves4te ve4te vet3er ve4ty vi5al1i v2i1a vi2al 5vi2a2n 5vi2de. v2id 5vi2d1ed 4v3i1den 5vide4s2 5vi2di v3if vi5gn v2ig v4ik4 2vil 5v2il1it vil1i v3i3l2iz v1in 4vi4na v2inc v4in5d 4ving vi1o3l v2io v3io4r vi1ou2 v2i4p vi5ro v4ir vis3it vi3so vi3su 4vi1ti vit3r 4vi1ty 3v2iv 5vo. voi4 3v2ok vo4la v5ole 5vo4l2t 3vol2v vom5i vo2r5ab vo1ra vori4 vo4ry vo4ta 4vo1tee 4vv4 v4y w5ab2l2 2wac wa5ger wa2g5o wait5 wai2 w5al. wam4 war4t w2a2r was4t wa1te wa5ver w1b wea5r2ie4 we2a2r wear1i we4ath3 wea2t we4d4n4 weet3 wee5v wel4l w1er west3 w3ev whi4 wi2 wil2 wil2l5in4 wil1l will2i win4de w4ind win4g w4ir4 3w4ise w2ith3 wiz5 w4k wl4es2 wl3in w4no 1wo2 wom1 wo5v4en w5p wra4 wri4 wri1ta4 w3s2h ws4l2 ws4pe w5s4t 4wt wy4 x1a xac5e x4a2go xam3 x4ap xas5 x3c2 x1e xe4cu1to xe1cu xe3c4ut x2ed xer4i x2e5ro x1h xhi2 xh4il5 xhu4 x3i x2i5a xi5c xi5di x2id x4ime xi5m2iz xim1i x3o x4ob x3p xp4an4d x1pa xpa2n xpec1to5 xpe2c xpe2c1t x2p2e3d x1t2 x3ti x1u xu3a xx4 y5ac 3y2a2r4 y5at y1b y1c y2ce yc5er y3ch ych4e2 ycom4 y1co ycot4 y1d y5ee y1er y4er1f yes4 ye4t y5gi 4y3h y1i y3la ylla5b2l2 yl1l y3lo y5lu ymbol5 y4m1b yme4 ym1pa3 y4m1p yn3c4hr4 yn2ch yn5d yn5g yn5ic 5ynx y1o4 yo5d y4o5g yom4 yo5net yo2n y4o2n3s2 y4os y4p2ed yper5 yp3i y3po y4po4c yp2ta y2p1t y5pu yra5m yr5i3a y3ro yr4r4 ys4c y3s2e ys3i1ca y1s3io 3y1sis y4so y2ss4 ys1t ys3ta ysu2r4 y1su y3thin yt3ic y1w za1 z5a2b z2a2r2 4zb 2ze ze4n ze4p z1er z2e3ro zet4 2z1i z4il z4is 5zl 4zm 1zo zo4m zo5ol zoo2 zte4 4z1z2 z4zy .as9s8o9c8i8a8te. .as1so .asso1ci .asso3c2i1a .as9s8o9c8i8a8t8es. .de8c9l8i9n8a9t8i8on. .de1c4l4 .decl4i1na .declin2at .declina1t2io .declinatio2n .ob8l8i8g9a9t8o8ry. .ob2l2 .obl2ig .obli1ga .obliga1to .obligato1ry .ph8i8l9a8n9t8h8r8o8p8ic. .ph4il2 .phi1la .phila2n .philan1t .philant4hr4 .philanthrop3ic .pr8e8s8e8nt. .p3re1s2e .presen1t .pr8e8s8e8n8ts. .presen4t4s2 .pr8o8j8e8ct. .pro5j .pro1je .proje2c1t .pr8o8j8e8c8ts. .projec4t1s2 .re8c8i9p8r8o8c8i8ty. .re1c2i .rec2ip .recipr2 .recipr2oc .recipro1ci .recipro2c1it .reciproci1ty .re9c8o8g9n8i9z8a8n8ce. .re1co .re2cog .rec3ogniz .recog1ni .recogniza1 .recogniza2n .re8f9o8r9m8a9t8i8on. .re1f .re1fo .refo2r .refor1m .refor1ma .reforma1t2io .reformatio2n .re8t9r8i9b8u9t8i8on. .re3tri .retr4ib .retri3bu1t2io .retrib4u1t2i .retributio2n .ta9b8le. .2tab .tab2l2 liblouis-2.5.3/tables/pt-pt-g1.utb0000664000175000017500000001511712161041546013632 00000000000000# liblouis: Portuguese Grade 1 Braille Table # Created by Leon Ungier . # # Copyright (C) 2009 ViewPlus Technologies, Inc. www.viewplus.com and # JJB Software, Inc. www.jjb-software.com # # This file is part of liblouis. # liblouis is free software: you can redistribute it and/or modify it # under the terms of the Lesser GNU General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # liblouis 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 Lesser # GNU General Public License for more details. # You should have received a copy of the Lesser GNU General Public # License along with liblouis. If not, see # . locale Portugal include text_nabcc.dis #--------------------- All chars definitions ------------------------------ space \t 0 tab # 9 space \s 0 blank # 32 punctuation ! 235 exclamation mark 33 punctuation " 236 double quote 34 sign # 3456-13 number sign 35 sign $ 56 dollar 36 x0024 sign % 456-356 percent 37 sign & 12346 ampersand 38 punctuation ' 3 apostrophe 39 punctuation ( 126-3 left parenthesis 40 punctuation ) 6-345 right parenthesis 41 punctuation * 35 asterisk 42 math + 235 plus 43 punctuation , 2 coma 44 punctuation - 36 hyphen-minus 45 punctuation . 3 point 46 math / 6-2 solidus 47 include digits6Dots.uti punctuation : 25 colon 58 x003A punctuation ; 23 semicolon 59 x003B math < 246 60 x003C math = 2356 equal sign 61 x003D math > 135 62 x003E punctuation ? 26 63 x003F sign @ 156 commercial at 64 x0040 include latinLetterDef6Dots.uti punctuation [ 12356-3 left square bracket x005B sign \\ 5-3 reverse solidus x005C punctuation ] 6-23456 right square bracket x005D sign ^ 4 circumflex accent x005E sign _ 46-36 low line x005F sign ` 26 grave accent x0060 # a - z # 97 - 122 x0061 - x007A punctuation { 5-123 left curly bracket x007B sign | 456 vertical line x007C punctuation } 456-2 right curly bracket x007D sign ~ 5 tilde x007E sign \x0080 15-136-1235-135 x0080 space \X00A0 0 # no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 4-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 234-234 paragraph sign x00A7 sign © 6-14-135-1234-13456-1235-24-1245-125-2345 copyright x00A9 sign \x00AA 1 feminine ordinal indicator punctuation « 6-236 left-pointing double quotation mark x00AB sign ° 356 degree sign x00B0 sign ² 16-3456-12 superscript 2 sign x00B2 sign ³ 16-3456-14 superscript 3 sign x00B3 # sign \x00B4 35 acute accent sign \x00B4 35 acute accent sign \x00B5 46-134 # 181 µ micro sign x00B5 sign \x00B6 346 # ¶ pilcrow sign x00B6 sign ¹ 16-3456-1 superscript 1 sign x00B9 sign \x00BA 135 masculine ordinal indicator punctuation » 6-236 right-pointing double quotation mark x00BB sign ¼ 3456-2-145 vulgar fraction one quarter x00BC sign ½ 3456-2-12 vulgar fraction one half x00BD sign ¾ 3456-25-145 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 1246 a with grave x00C0 / 00E0 uplow Ãá 12356 A with acute x00C1 / 00E1 uplow Ââ 16 a with circumflex x00C2 / 00E2 uplow \x00C3\x00E3 345 a with tilde x00C3 / 00E3 uplow Ã…Ã¥ 16 A with ring above x00C5 / 00C4 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Çç 12346 letter c with cedilla x00C7 / 00E7 uplow \x00C8\x00E8 2346 e with grave è x00C8 / 00E8 uplow \x00C9\x00E9 123456 e with acute é x00C9 / 00E9 uplow \x00CA\x00EA 126 e with circumflex x00CA / 00EA uplow \x00CC\x00EC 146 i with grave x00CC / 00EC uplow \x00CD\x00ED 34 i with acute x00CD / 00ED uplow \x00D2\x00F2 2456 o with grave ò x00D2 / 00F2 uplow \x00D3\x00F3 346 o with acute ó x00D3 / 00F3 uplow \x00D4\x00F4 1456 o with circumflex ô x00D4 / 00F4 uplow \x00D5\x00F5 246 o with tilde x00D5 / 00F5 uplow Öö 246 O with diaeresis x00D6 / 00F6 uplow \X00DA\x00FA 23456 u with acute x00DA / 00FA uplow \x00DC\x00FC 1256 u with diaeresis x00FC uplow \x00D1\x00F1 12456 n with tilde math ÷ 256 division sign x00F7 math × 236 multiplication sign x00D7 # this is for compiler uplow \x0104\x0105 6 # a with ogonek uplow \x0118\x0119 3456 # the letter e with ogonek punctuation \x2010 36 # 8208 hyphen punctuation \x2011 36 # 8209 non-breaking hyphen punctuation \x2012 36 figure dash math \x2013 36 # 8211 en dash (smart minus sign) punctuation \x2013 36-36 # 8211 en dash (smart minus sign) punctuation \x2014 36-36 em dash sign \x2015 4-14 horizontal bar punctuation \x2018 56-236 # 8216 smart single left quotation mark punctuation \x2019 56-236 # 8217 smart single right quotation mark sign \x20AC 4-15 Euro sign x0080 punctuation \x201C 56-236 # 8220 smart opening double quote punctuation \x201D 56-236 # 8221 smart closing double quote punctuation \x201E 56-236 # 8222 smart double low quotation mark punctuation \x201F 56-236 # 8223 double high reverse quotation mark sign \x2022 246-135 bullet punctuation \x2026 35-26-35 # 8230 smart ellipsis sign \x2030 456-356-356 per mile sign sign \x2190 246-25 leftwards arrow sign \x2192 25-135 rightwards arrow sign \x2194 246-25-135 left right arrow sign \x2260 45-2356 not equal to #-------------- end defintions ------------------------------------------ capsign 46 # begcaps 46-46-136 # uncomment if you don't want capitalization begcaps 46-46 begital 35 begbold 35 begunder 35 endital 35 endbold 35 endunder 35 begcomp 5-2 endcomp 5-2 begnum ( 126 endnum ) 345 begnum [ 12356 endnum ] 23456 endnum \x00AA 1 endnum \x00BA 135 numsign 3456 midnum , 2 midnum . 3 midnum + 235-3456 midnum - 36-3456 midnum / 6-2-3456 midnum : 25-3456 endnum # 56-3456 repeated ... 3-3-3 points de suite repeated --- 36-36-36 repeated ___ 46-36 always \s--\s 36-36 tiret liblouis-2.5.3/tables/nl-BE.dis0000664000175000017500000000165612161041546013146 00000000000000# Licensed under LGPL. # Bert Frees display \x0020 0 display a 1 display , 2 display b 12 display . 3 display k 13 display ; 23 display l 123 display " 4 display c 14 display i 24 display f 124 display | 34 display m 134 display s 234 display p 1234 display ! 5 display e 15 display : 25 display h 125 display * 35 display o 135 display + 235 display r 1235 display > 45 display d 145 display j 245 display g 1245 display ` 345 display n 1345 display t 2345 display q 12345 display ' 6 display 1 16 display ? 26 display 2 126 display - 36 display u 136 display ( 236 display v 1236 display $ 46 display 3 146 display 9 246 display 6 1246 display 0 346 display x 1346 display ~ 2346 display & 12346 display < 56 display 5 156 display / 256 display 8 1256 display ) 356 display z 1356 display = 2356 display { 12356 display _ 456 display 4 1456 display w 2456 display 7 12456 display # 3456 display y 13456 display } 23456 display % 123456 liblouis-2.5.3/tables/hyph_fr_FR.dic0000664000175000017500000001745312161041546014261 00000000000000ISO8859-1 .a4 .ab3réa .ae3s4ch .amino1a2c .ana3s4tr .anti1a2 .anti1e2 .anti1s2 .anti1é2 .anti2enne .apo2s3ta .ar3dent. .ar3gent. .ar3pent. .as2ta .bai2se3main .bi1a2c .bi1a2t .bi1au .bi1u2 .bi2s1a2 .bio1a2 .ch4 .chè2vre3feuille .ci2s1alp .co1o2 .co2o3lie .com3ment. .con4 .cons4 .contre1s2c .contre3maître .cul4 .dacryo1a2 .di1a2cid .di1a2cé .di1a2mi .di1a2tom .di1ald .di1e2n .di2s3h .do3lent. .dy2s1a2 .dy2s1i2 .dy2s1o2 .dy2s1u2 .dy2s3 .dé1a2 .dé1io .dé1o2 .dé2s .dé2s1i2 .dé2s1oe0 .dé2s1u2n .dé2s1½0 .dé2s1é2 .dé3s2a3cr .dé3s2a3tell .dé3s2astr .dé3s2c .dé3s2ensib .dé3s2ert .dé3s2exu .dé3s2i3d .dé3s2i3gn .dé3s2i3li .dé3s2i3nen .dé3s2i3r .dé3s2invo .dé3s2ist .dé3s2o3dé .dé3s2o3l .dé3s2o3pil .dé3s2orm .dé3s2orp .dé3s2oufr .dé3s2p .dé3s2t .dé3s2é3gr .dés2a3m .e4 .en1a2 .en1o2 .eu2r1a2 .gem2ment. .i4 .in1a2 .in1e2 .in1i2 .in1o2 .in1s2tab .in1u2 .in1é2 .in2a3nit .in2augur .in2effab .in2ept .in2er .in2exora .in2i3miti .in2i3q .in2i3t .in2o3cul .in2ond .in2u3l .in2uit .in2é3lucta .in2é3narra .inte4r3 .intera2 .intere2 .interi2 .intero2 .inters2 .interu2 .interé2 .kh4 .la3tent. .ma2c3k .ma2l1a2dres .ma2l1a2dro .ma2l1a2v .ma2l1aisé .ma2l1ap .ma2l1en .ma2l1int .ma2l1o2d .ma2l1oc .ma2r1x .macro1s2c .milli1am .mono1a2 .mono1e2 .mono1i2 .mono1o2 .mono1s2 .mono1u2 .mono1é2 .mono1ï2dé .mé2g1oh .mé2s1es .mé2s1i .mé2s1u2s .mé2sa .mé3san .méta1s2ta .no2n1obs .o4 .on3guent. .oua1ou .ovi1s2c .pa2n1a2f .pa2n1a2mé .pa2n1a2ra .pa2n1is .pa2n1o2ph .pa2n1opt .pa2r1a2che .pa2r1a2chè .pa2r3hé .pa3rent. .pa3tent. .para1s2 .pe4r .pen2ta .per1a2 .per1e2 .per1i2 .per1o2 .per1u2 .per1é2 .ph4 .phalan3s2t .pluri1a .pon2tet .pos2t1in .pos2t1o2 .pos2t3h .pos2t3r .post1s2 .pro1s2cé .pro1é2 .prou3d2h .pré1a2 .pré1e2 .pré1i2 .pré1o2 .pré1s2 .pré1u2 .pré1é2 .pré2a3la .pré2au .psycho1a2n .pud1d2l .péri1os .péri1s2 .péri1u2 .péri2s3s .péri2s3ta .re1s2 .re2s3cap .re2s3cisi .re2s3ciso .re2s3cou .re2s3cri .re2s3pect .re2s3pir .re2s3plend .re2s3pons .re2s3quil .re2s3s .re2s3t .re3s4tab .re3s4tag .re3s4tand .re3s4tat .re3s4tim .re3s4tip .re3s4toc .re3s4top .re3s4tr .re3s4tu .re3s4ty .re3s4tén .re3s4tér .re4s5trein .re4s5trict .re4s5trin .res3sent. .ré1a2 .ré1e2 .ré1i2 .ré1o2 .ré1é2 .ré2a3le .ré2a3lis .ré2a3lit .ré2aux .ré2el .ré2er .ré2i3fi .ré2uss .ré2èr .rétro1a2 .réu2 .sar3ment. .sch4 .ser3ment. .seu2le .sh4 .sou3vent. .sta2g3n .stil3l .su2b1a2 .su2b1in .su2b1ur .su2b1é2 .su2b3limin .su2b3lin .su2b3lu .su2r1a2 .su2r1e2 .su2r1i2m .su2r1inf .su2r1int .su2r1of .su2r1ox .su2r1é2 .su2r3h .su3b2alt .su3b2é3r .su3r2a3t .su3r2eau .su3r2ell .su3r2et .ta3lent. .th4 .tri1a2c .tri1a2n .tri1a2t .tri1o2n .u4 .y4 .â4 .è4 .é4 .émi3nent. .ê4 .î4 .ô4 .û4 1a2nesthési 1alcool 1b2l 1b2r 1ba 1be 1bi 1bo 1bu 1by 1bâ 1bè 1bé 1bê 1bî 1bô 1bû 1c2h 1c2k 1c2l 1c2r 1ca 1ce 1ci 1co 1coe0 1cu 1cy 1c½0 1câ 1cè 1cé 1cê 1cî 1cô 1cû 1d2r 1da 1de 1di 1do 1du 1dy 1dâ 1dè 1dé 1dê 1dî 1dô 1dû 1f2l 1f2r 1fa 1fe 1fi 1fo 1fu 1fy 1fâ 1fè 1fé 1fê 1fî 1fô 1fû 1g2ha 1g2he 1g2hi 1g2ho 1g2hy 1g2l 1g2n 1g2r 1ga 1ge 1gi 1go 1gu 1gy 1gâ 1gè 1gé 1gê 1gî 1gô 1gû 1ha 1he 1hi 1ho 1hu 1hy 1hâ 1hè 1hé 1hê 1hî 1hô 1hû 1informat 1j 1k2h 1k2r 1ka 1ke 1ki 1ko 1ku 1ky 1kâ 1kè 1ké 1kê 1kî 1kô 1kû 1la 1le 1li 1lo 1lu 1ly 1là 1lâ 1lè 1lé 1lê 1lî 1lô 1lû 1m2nès 1m2némo 1m2nési 1ma 1me 1mi 1mo 1moe0 1mu 1my 1m½0 1mâ 1mè 1mé 1mê 1mî 1mô 1mû 1na 1ne 1ni 1no 1noe0 1nu 1ny 1n½0 1nâ 1nè 1né 1nê 1nî 1nô 1nû 1octet 1p2h 1p2l 1p2neu 1p2né 1p2r 1p2sych 1p2tèr 1p2tér 1pa 1pe 1pi 1po 1pu 1py 1pâ 1pè 1pé 1pê 1pî 1pô 1pû 1q 1r2h 1ra 1re 1ri 1ro 1ru 1ry 1râ 1rè 1ré 1rê 1rî 1rô 1rû 1s2caph 1s2ch 1s2clér 1s2cop 1s2h 1s2lav 1s2lov 1s2patia 1s2perm 1s2phèr 1s2phér 1s2piel 1s2piros 1s2por 1s2tandard 1s2tein 1s2tigm 1s2tock 1s2tomos 1s2troph 1s2tructu 1s2tyle 1sa 1se 1si 1so 1soe0 1su 1sy 1s½0 1sâ 1sè 1sé 1sê 1sî 1sô 1sû 1t2h 1t2r 1ta 1te 1ti 1to 1tu 1ty 1tà 1tâ 1tè 1té 1tê 1tî 1tô 1tû 1v2r 1va 1ve 1vi 1vo 1vu 1vy 1vâ 1vè 1vé 1vê 1vî 1vô 1vû 1w2r 1wa 1we 1wi 1wo 1wu 1za 1ze 1zi 1zo 1zu 1zy 1zè 1zé 1ç 1é2drie 1é2drique 1é2lectr 1é2lément 1é2nerg 2bent. 2blent. 2brent. 2cent. 2chb 2chent. 2chg 2chm 2chn 2chp 2chs 2cht 2chw 2ck3h 2ckb 2ckent. 2ckf 2ckg 2ckp 2cks 2ckt 2clent. 2crent. 2dent. 2dlent. 2drent. 2fent. 2flent. 2frent. 2gent. 2glent. 2gnent. 2grent. 2guent. 2jent. 2jk 2kent. 2lent. 2nent. 2pent. 2phent. 2phn 2phs 2pht 2plent. 2prent. 2quent. 2r3heur 2r3hydr 2rent. 2s3hom 2schs 2sent. 2shent. 2shm 2shr 2shs 2t3heur 2tent. 2thl 2thm 2thn 2ths 2trent. 2vent. 2vrent. 2went. 2xent. 2zent. 3d2hal 3d2houd 3ph2talé 3ph2tis 4be. 4bes. 4ble. 4bles. 4bre. 4bres. 4ce. 4ces. 4ch. 4che. 4ches. 4chle. 4chles. 4chre. 4chres. 4ck. 4cke. 4ckes. 4cle. 4cles. 4cre. 4cres. 4de. 4des. 4dre. 4dres. 4fe. 4fes. 4fle. 4fles. 4fre. 4fres. 4ge. 4ges. 4gle. 4gles. 4gne. 4gnes. 4gre. 4gres. 4gue. 4gues. 4he. 4hes. 4je. 4jes. 4ke. 4kes. 4kh. 4le. 4les. 4me. 4mes. 4ne. 4nes. 4pe. 4pes. 4ph. 4phe. 4phes. 4phle. 4phles. 4phre. 4phres. 4ple. 4ples. 4pre. 4pres. 4que. 4ques. 4re. 4res. 4rhe. 4rhes. 4sch. 4sche. 4sches. 4se. 4ses. 4sh. 4she. 4shes. 4te. 4tes. 4th. 4the. 4thes. 4thre. 4thres. 4tre. 4tres. 4ve. 4ves. 4vre. 4vres. 4we. 4wes. 4ze. 4zes. a1è2dre a2l1algi a2s3tro ab2h ab3sent. absti3nent. abî2ment. ac3cent. acquies4cent. ad2h ai2ment. amalga2ment. ani2ment. antifer3ment. apo2s3tr appa3rent. ar2ment. archi1é2pis armil5l as2ment. au2ment. avil4l bou2ment. boutil3l bru2ment. ca3ou3t2 capil3l carê2ment. cci3dent. ch2l ch2r chevil4l chien3dent. chlo2r3a2c chlo2r3é2t chro2ment. cil3l cla2ment. co1a2d co1acc co1acq co1ap co1ar co1assoc co1assur co1au co1ax co1ef co1en co1ex co1é2 co2nurb compé3tent. confi3dent. conni3vent. conti3nent. contin3gent. corpu3lent. cur3rent. cyril3l d1d2h d1s2 da2ment. di2s3cop dia2g3n diaphrag2ment. dili3gent. dissi3dent. distil3l déca3dent. détri3ment. e2n1i2vr e2s3ch e2s3cop entre3gent. er2ment. es3cent. esti2ment. eu1s2tat extra1 extra2c extra2i f1s2 fa2ment. fichu3ment. fir2ment. flam2ment. fritil3l fu2ment. fécu3lent. g1s2 gil3l gram2ment. grandilo3quent. hil3l hu2ment. hype4r1 hypera2 hypere2 hyperi2 hypero2 hypers2 hyperu2 hyperé2 hypo1a2 hypo1e2 hypo1i2 hypo1o2 hypo1s2 hypo1u2 hypo1é2 hémi1é hémo1p2t i1algi i1arthr i1oxy i1s2tat i1è2dre i2s3chia i2s3chio i2s3ché ibril3l il2l imma3nent. immi3nent. immis4cent. impo3tent. impu3dent. inci3dent. indi3gent. indo3lent. indul3gent. inno3cent. inso3lent. instil3l intelli3gent. inti2ment. io1a2ct is3cent. iva3lent. ja3cent. l1s2t l2ment. l3lion la2w3re lil3l llu2ment. m1s2 mi2ment. mil3l mil4let mit3tent. mon2t3réal monova3lent. moye2n1â2g munifi3cent. mécon3tent. n1x n3s2at. n3s2ats. nutri3ment. o1d2l o1ioni o1s2tas o1s2tat o1s2tim o1s2tom o1s2trad o1s2tratu o1s2triction o1s2téro o1è2dre o2b3long om2ment. ombud2s3 omni1s2 omnipo3tent. opu3lent. or2ment. oxy1a2 paléo1é2 papil3la papil3le papil3li papil3lom per3h perma3nent. perti3nent. ph2l ph2r photo1s2 piril3l plu2ment. po1astre poly1a2 poly1e2 poly1i2 poly1o2 poly1s2 poly1u2 poly1è2 poly1é2 polyva3lent. privatdo3cent. privatdo3zent. pro2s3tat proémi3nent. pru3dent. pré3sent. préémi3nent. pupil3l pusil3l pé1r2é2q pé2nul qua2ment. ra2ment. radio1a2 rai3ment. rcil4l re3lent. re3pent. reli2ment. ri2ment. rin3gent. rmil4l ru3lent. ryth2ment. ré3gent. réma3nent. résur3gent. réti3cent. semil4l ser3gent. ser3pent. sesqui1a2 slalo2ment. sporu4lent. stéréo1s2 su2ment. su3r2ah sub1s2 subli2ment. succu3lent. supe4r1 supero2 supers2 surémi3nent. t1t2l ta2ment. tachy1a2 tan3gent. tchin3t2 tempéra3ment. ter3gent. testa3ment. th2r thermo1s2 thril3l to2ment. tor3rent. tran2s1a2 tran2s1o2 tran2s1u2 tran2s3h tran2s3p tran3s2act tran3s2ats transpa3rent. tri3dent. trucu3lent. tu2ment. tung2s3 turbu3lent. télé1e2 télé1i2 télé1o2b télé1o2p télé1s2 u2s3tr ucil4l uevil4l uni1a2x uni1o2v uvil4l vacil4l vanil3lin vanil3lis veni2ment. ventripo3tent. vidi2ment. vil3l vol2t1amp vélo1s2ki wa2g3n xil3l y1algi y1asth y1s2tom â2ment. è2ment. é3cent. é3dent. é3quent. é3rent. éci2ment. écu2ment. éd2hi éli2ment. élo3quent. émil4l éni3tent. épi2s3cop épi3s4cope équipo3tent. équiva4lent. ô2ment. liblouis-2.5.3/tables/text_nabcc.dis0000664000175000017500000004323012161041546014355 00000000000000# This file is obsolete. Do not use! # liblouis: text.nabcc.dis # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # This is a description of the default text translation table used by BRLTTY. # It's based on the North American Braille Computer Code, but defines the full # Latin1 (ISO-8859-1) character set. # The 95 printable characters of the standard 7-bit US-ASCII character set # (32-126) are identical to their representations within the North American # Braille Computer Code (these are the only characters which the NABCC actually # defines). Characters from literary braille, symbols from The Nemeth Braille # Code for Mathematics and Science Notation, and a bit of human imagination # have all been combined to create an easy-to-remember, one-to-one mapping # between each character and its braille counterpart. All possible combinations # involving only the original 6 braille dots are used, but that only allows for # 64 out of the required 95 character representations. The presence or absence # of dot 7 is used to differentiate between pairs of characters which either # are very closely related in meaning or, in a few cases where a more intuitive # reason couldn't be found, have a very close logical relationship within the # US-ASCII code. Dot 8 isn't used at all. # The space and the 26 lowercase letters (a-z) are the same as in literary # braille: #Hex Dots Dec Char Description display \X0020 0 #32 space display \X0061 1 #97 a Latin small letter a display \X0062 12 #98 b Latin small letter b display \X0063 14 #99 c Latin small letter c display \X0064 145 #100 d Latin small letter d display \X0065 15 #101 e Latin small letter e display \X0066 124 #102 f Latin small letter f display \X0067 1245 #103 g Latin small letter g display \X0068 125 #104 h Latin small letter h display \X0069 24 #105 i Latin small letter i display \X006A 245 #106 j Latin small letter j display \X006B 13 #107 k Latin small letter k display \X006C 123 #108 l Latin small letter l display \X006D 134 #109 m Latin small letter m display \X006E 1345 #110 n Latin small letter n display \X006F 135 #111 o Latin small letter o display \X0070 1234 #112 p Latin small letter p display \X0071 12345 #113 q Latin small letter q display \X0072 1235 #114 r Latin small letter r display \X0073 234 #115 s Latin small letter s display \X0074 2345 #116 t Latin small letter t display \X0075 136 #117 u Latin small letter u display \X0076 1236 #118 v Latin small letter v display \X0077 2456 #119 w Latin small letter w display \X0078 1346 #120 x Latin small letter x display \X0079 13456 #121 y Latin small letter y display \X007A 1356 #122 z Latin small letter z # The 26 uppercase letters A-Z) are the same as their lowercase counterparts # except that dot7 is added: #Hex Dots Dec Char Description display \X0041 1 #65 A Latin capital letter a display \X0042 12 #66 B Latin capital letter b display \X0043 14 #67 C Latin capital letter c display \X0044 145 #68 D Latin capital letter d display \X0045 15 #69 E Latin capital letter e display \X0046 124 #70 F Latin capital letter f display \X0047 1245 #71 G Latin capital letter g display \X0048 125 #72 H Latin capital letter h display \X0049 24 #73 I Latin capital letter i display \X004A 245 #74 J Latin capital letter j display \X004B 13 #75 K Latin capital letter k display \X004C 123 #76 L Latin capital letter l display \X004D 134 #77 M Latin capital letter m display \X004E 1345 #78 N Latin capital letter n display \X004F 135 #79 O Latin capital letter o display \X0050 1234 #80 P Latin capital letter p display \X0051 12345 #81 Q Latin capital letter q display \X0052 1235 #82 R Latin capital letter r display \X0053 234 #83 S Latin capital letter s display \X0054 2345 #84 T Latin capital letter t display \X0055 136 #85 U Latin capital letter u display \X0056 1236 #86 V Latin capital letter v display \X0057 2456 #87 W Latin capital letter w display \X0058 1346 #88 X Latin capital letter x display \X0059 13456 #89 Y Latin capital letter y display \X005A 1356 #90 Z Latin capital letter z # The 10 decimal digits 0-9) are the same as in the Nemeth Code: #Hex Dots Dec Char Description display \X0030 356 #480digit zero display \X0031 2 #491digit one display \X0032 23 #502digit two display \X0033 25 #513digit three display \X0034 256 #524digit four display \X0035 26 #535digit five display \X0036 235 #546digit six display \X0037 2356 #557digit seven display \X0038 236 #568digit eight display \X0039 35 #579digit nine # Common symbols used within mathematical expressions by popular computer # programming languages are the same as in the Nemeth Code: #Hex Dots Dec Char Description display \X002E 46 #46.full stop display \X002B 346 #43+plus sign display \X002D 36 #45-hyphen-minus display \X002A 16 #42*asterisk display \X002F 34 #47/solidus display \X0028 12356 #40left parenthesis display \X0029 23456 #41)right parenthesis # With all of these major considerations having been taken into account, # convenient representations were still available, and are used, for some of # the remaining characters: #Hex Dots Dec Char Description display \X0026 12346 #38 & ampersand display \X0023 3456 #35 # number sign # The remaining characters are what they are. Dot 7 isn't used either within # the number block 32-63) or, with the exception of the DEL control character # 127), within the lowercase block 96-127). With the exception of the # underscore 95), dot 7 is used for every character within the uppercase block #64-95). Adding dot7 to any character within the lowercase block 96-127) # yields its corresponding character within the uppercase block 64-95) except # that removing dot7 from the DEL control character yields the underscore. #Hex Dots Dec Char Description display \X002C 6 #44 , comma display \X003B 56 #59 ; semicolon display \X003A 156 #58 : colon display \X0021 2346 #33 ! exclamation mark display \X003F 1456 #63 ? question mark display \X0022 5 #34 " quotation mark display \X0027 3 #39 ' apostrophe display \X0060 4 #96 ` grave accent display \X005E 457 #94 ^ circumflex accent display \X007E 45 #126 ~ tilde display \X005B 246 #91 [ left square bracket display \X005D 12456 #93 ] right square bracket display \X007B 256 #123 { left curly bracket display \X007D 12456 #125 } right curly bracket display \X003D 123456 #61 = equals sign display \X003C 126 #60 < less-than sign display \X003E 345 #62 > greater-than sign display \X0024 1246 #36 $ dollar sign display \X0025 146 #37 % percent sign display \X0040 47 #64 @ commercial at display \X007C 1256 # 124|vertical line display \X005C 12567 #92\reverse solidus display \X005F 456 #95_low line # Each of the characters within the basic control character block 0-31) is the # same as its corresponding character within both the uppercase block64-95) # and the lowercase block 96-127) except that dots7 and8 are both used. #Hex Dots Dec Char Description display \X0000 478 #0^@null display \X0001 178 #1^Astart of heading display \X0002 1278 #2^Bstart of text display \X0003 1478 #3^Cend of text display \X0004 14578 #4^Dend of transmission display \X0005 1578 #5^Eenquiry display \X0006 12478 #6^Facknowledge display \X0007 124578 #7^Gbell display \X0008 12578 #8^Hbackspace display \X0009 2478 #9^Ihorizontal tabulation display \X000A 24578 #10^Jline feed display \X000B 1378 #11^Kvertical tabulation display \X000C 12378 #12^Lform feed display \X000D 13478 #13^Mcarriage return display \X000E 134578 #14^Nshift out display \X000F 13578 #15^Oshift in display \X0010 123478 #16^Pdata link escape display \X0011 1234578 #17^Qdevice control one display \X0012 123578 #18^Rdevice control two display \X0013 23478 #19^Sdevice control three display \X0014 234578 #20^Tdevice control four display \X0015 13678 #21^Unegative acknowledge display \X0016 123678 #22^Vsynchronous idle display \X0017 245678 #23^Wend of transmission block display \X0018 134678 #24^Xcancel display \X0019 1345678 #25^Yend of medium display \X001A 135678 #26^Zsubstitute display \X001B 24678 #27^[escape display \X001C 125678 #28^\file separator display \X001D 1245678 #29^]group separator display \X001E 4578 #30^^record separator display \X001F 45678 #31^_unit separator # Each of the characters within the extended control character block 128-159) # is the same as its corresponding character within the basic control character # block 0-31) except that only dot8 is used. #Hex Dots Dec Char Description display \X0080 48 # 128~@ display \X0081 18 # 129~A display \X0082 128 # 130~Bbreak permitted here display \X0083 148 # 131~Cno break here display \X0084 1458 # 132~D display \X0085 158 # 133~Enext line display \X0086 1248 # 134~Fstart of selected area display \X0087 12458 # 135~Gend of selected area display \X0088 1258 # 136~Hcharacter tabulation set display \X0089 248 # 137~Icharacter tabulation with justification display \X008A 2458 # 138~Jline tabulation set display \X008B 138 # 139~Kpartial line down display \X008C 1238 # 140~Lpartial line up display \X008D 1348 # 141~Mreverse line feed display \X008E 13458 # 142~Nsingle shift two display \X008F 1358 # 143~Osingle shift three display \X0090 12348 # 144~Pdevice control string display \X0091 123458 # 145~Qprivate use one display \X0092 12358 # 146~Rprivate use two display \X0093 2348 # 147~Sset transmit state display \X0094 23458 # 148~Tcancel character display \X0095 1368 # 149~Umessage waiting display \X0096 12368 # 150~Vstart of guarded area display \X0097 24568 # 151~Wend of guarded area display \X0098 13468 # 152~Xstart of string display \X0099 134568 # 153~Y display \X009A 13568 # 154~Zsingle character introducer display \X009B 2468 # 155~[control sequence introducer display \X009C 12568 # 156~\string terminator display \X009D 124568 # 157~]operating system command display \X009E 458 # 158~^privacy message # Representations for the uppercase accented letters are drawn from the # remaining combinations which use both dots 7 and 8. The representation for a # lowercase accented letter is the same as its uppercase counterpart except # that dot 7 isn't used. This scheme retains the use of dot 7 as the modifier # for a capitalized letter. The only exception to these rules is that, due to # the nature of the Latin 1 character set, the German lowercase double-s is # treated as though it were an uppercase y-dieresis neither has an uppercase # definition). These representations have been gathered, as much as possible, # into logical groupings. # The 5 letters with a circumflex accent ^) use the [1-5] dot combinations: #Hex Dots Dec Char Description display \X009F 4568 # 159 ~_application program command display \X00A0 0 #160 no-break space display \X00A1 23467 #161 ¡ inverted exclamation mark display \X00A2 4 #162 ¢ cent sign display \X00A3 34567 # 163£pound sign display \X00A4 1467 # 164¤currency sign display \X00A5 123467 # 165Â¥yen sign display \X00A6 1567 # 166¦broken bar display \X00A7 357 # 167§section sign display \X00A8 57 # 168¨diaeresis display \X00A9 23567 # 169©copyright sign display \X00AA 8 # 170ªfeminine ordinal indicator display \X00AB 1267 # 171«left-pointing double angle quotation mark display \X00AC 2567 # 172¬not sign display \X00AD 367 # 173­soft hyphen display \X00AE 2367 # 174®registered sign display \X00AF 267 # 175¯macron display \X00B0 3567 # 176°degree sign display \X00C0 23578 # 192 À Latin capital letter a with grave display \X00C1 1678 # 193 à Latin capital letter a with acute display \X00C2 16 # 194  Latin capital letter a with circumflex display \X00C3 578 # 195à Latin capital letter a with tilde display \X00C4 1234678 # 196Ä Latin capital letter a with diaeresis display \X00C5 34578 # 197Ã… Latin capital letter a with ring above display \X00C6 378 # 198Æ Latin capital letter ae display \X00C7 34678 # 199Ç Latin capital letter c with cedilla display \X00C8 23567 # 200 È Latin capital letter e with grave display \X00C9 12678 # 201É Latin capital letter e with acute display \X00CA 2378 # 202 Ê Latin capital letter e with circumflex display \X00CB 12345678 # 203Ë Latin capital letter e with diaeresis display \X00CC 23678 # 204ÃŒ Latin capital letter i with grave display \X00CD 14678 # 205à Latin capital letter i with acute display \X00CE 2578 # 206 ÃŽ Latin capital letter i with circumflex display \X00CF 1235678 # 207à Latin capital letter i with diaeresis display \X00D0 678 # 208à Latin capital letter eth display \X00D1 4678 # 209Ñ Latin capital letter n with tilde display \X00D2 3578 # 210Ã’ Latin capital letter o with grave display \X00D3 145678 # 211Ó Latin capital letter o with acute display \X00D4 25678 # 212 Ô Latin capital letter o with circumflex display \X00D5 5678 # 213Õ Latin capital letter o with tilde display \X00D6 234678 # 214Ö Latin capital letter o with diaeresis display \X00D7 167 # 215×multiplication sign display \X00D8 3478 # 216Ø Latin capital letter o with stroke display \X00D9 35678 # 217Ù Latin capital letter u with grave display \X00DA 15678 # 218Ú Latin capital letter u with acute display \X00DB 2678 # 219 Û Latin capital letter u with circumflex display \X00DC 2345678 # 220Ü Latin capital letter u with diaeresis display \X00DD 124678 # 221à Latin capital letter y with acute display \X00DE 3678 # 222Þ Latin capital letter thorn display \X00DF 345678 # 223ß Latin small letter sharp s display \X00E0 2358 # 224à Latin small letter a with grave display \X00E1 168 # 225á Latin small letter a with acute display \X00E2 16 # 226 â Latin small letter a with circumflex display \X00E3 58 # 227ã Latin small letter a with tilde display \X00E4 123468 # 228ä Latin small letter a with diaeresis display \X00E5 3458 # 229Ã¥ Latin small letter a with ring above display \X00E6 38 # 230æ Latin small letter ae display \X00E7 3468 # 231ç Latin small letter c with cedilla display \X00E8 23568 # 232è Latin small letter e with grave display \X00E9 1268 # 233é Latin small letter e with acute display \X00EA 238 # 234 ê Latin small letter e with circumflex display \X00EB 1234568 # 235ë Latin small letter e with diaeresis display \X00EC 2368 # 236ì Latin small letter i with grave display \X00ED 1468 # 237í Latin small letter i with acute display \X00EE 258 # 238 î Latin small letter i with circumflex display \X00EF 123568 # 239ï Latin small letter i with diaeresis display \X00F0 68 # 240ð Latin small letter eth display \X00F1 468 # 241ñ Latin small letter n with tilde display \X00F2 358 # 242ò Latin small letter o with grave display \X00F3 14568 # 243ó Latin small letter o with acute display \X00F4 2568 # 244 ô Latin small letter o with circumflex display \X00F5 568 # 245õ Latin small letter o with tilde display \X00F6 23468 # 246ö Latin small letter o with diaeresis display \X00F7 347 # 247÷division sign display \X00F8 348 # 248ø Latin small letter o with stroke display \X00F9 3568 # 249ù Latin small letter u with grave display \X00FA 1568 # 250ú Latin small letter u with acute display \X00FB 268 # 251 û Latin small letter u with circumflex display \X00FC 234568 # 252ü Latin small letter u with diaeresis display \X00FD 12468 # 253ý Latin small letter y with acute display \X00FE 368 # 254þ Latin small letter thorn display \X00FF 34568 # 255ÿ Latin small letter y with diaeresis # Some characters are the same as other characters which they resemble but with # dot 7 added: #Hex Dots Dec Char Description display \X00BB 3457 # 187»right-pointing double angle quotation mark display \X00B9 27 # 185¹superscript one display \X00B2 237 # 178²superscript two display \X00B3 257 # 179³superscript three display \X00B1 3467 # 177±plus-minus sign display \X00D7 167 # 215×multiplication sign display \X00B7 467 # 183·middle dot display \X00BF 14567 # 191¿inverted question mark # A few more characters follow this same convention but they're relationships # to their base characters is a bit obscure: #Hex Dots Dec Char Description # Some characters are represented by the first letters of their names lowered # by one row of dots: #Hex Dots Dec Char Description display \X00B6 2357 # 182¶pilcrow sign # The three fraction characters use combinations of dots 1 and 4 which # progress from left to right as the value of the fraction increases) together # with dots 2,3,5,6,7: #Hex Dots Dec Char Description display \X00BC 123567 # 188¼vulgar fraction one quarter display \X00BD 1234567 # 189½vulgar fraction one half display \X00BE 234567 # 190¾vulgar fraction three quarters # Each of the three extended accent characters is the same as its conventional # compose character but with dot7 added: #Hex Dots Dec Char Description display \X00B4 37 # 180´acute accent display \X00B8 67 # 184¸cedilla # The two gender symbols are: #Hex Dots Dec Char Description display \X00BA 7 # 186ºmasculine ordinal indicator # The three remaining characters are: #Hex Dots Dec Char Description display \X00B5 567 # 181µmicro sign # The nonbreaking space is dots 7 and 8 because this presents a sequence of # nonbreaking spaces as a smooth low line segment. #Hex Dots Dec Char Description display \X007F 4567 # 127^?delete liblouis-2.5.3/tables/hyph_nb_NO.dic0000664000175000017500000055065212161041546014261 00000000000000ISO8859-1 .ad2 .ads2 .ak2 .akk8 .akter5e .al8 .alder2 .alle2 .all5sl .all6vi .als7ku .als5l .alt6a .alta3k .altar5 .alt1o .am4 .an6 .ana2 .anal4g .and4f .ang6 .ange2 .angs2 .ann4 .ante8 .anti7n .anti3s .ara2 .are4 .aren5s .areo3 .ar4l .ar6m .arn2 .arne2s .ar8r .art2 .arti8 .arve8le .as6 .ast2 .at2 .ato4 .ats2 .atter3 .att2g .aud8 .aus7k .auster5r .av2bu .av7lasting. .av7lastinga .av7lastinge .av7lastning. .av7lastninge .av3les .av7levering. .av7lytting. .av7lyttinga .av7lyttinge .av8l^^f8nn .av3na .av7renning. .av9renninga .av7renninge .av1ri .avs2 .av7sav .av9skrekkinga .av1sm .av6spenn .av3st^^e5 .av7vennings. .ba2 .bal4 .bane3s .barne7haga .barne7hage. .barne7hagen. .barne9hagene. .barne7hagens .barne7hager. .barne7have. .barne7haven. .barne9havene. .barne7havens .barne7haver .baro3m .be8 .bein5s .bel2 .ben3sk .ben3st .ber2 .berg7art. .berg7arta .berg7arte .bi3sti .ble2 .bok9handlan .bok7handlar. .bok9handlaran .bok9handlarar .bok9handlare .bok7handler. .bok7handlere .bok5la .bok3sk .bon2 .bo5pl .bo3sta .bot5l .brenne7vin. .brenne7vine .brots7v .brudd7s8 .br^^f8nns4 .bu7la .bu7p .bus6 .by7la .by3ru .by5r^^e5d. .by5r^^e5de .by7skriver. .by9skrivere. .by9skriveres .by7skrivern .car2 .ce4 .da2m .dar8 .data7basa .data7base. .data7basen .data5n .de2 .del3ei .dels4 .del5se .del8ta .der2 .de5ran .de4r5et .de3sen .de4u .d^^e92 .di6 .dia8 .die2 .ding7st .dis9kontinuitete .dol2 .dre8 .dus2 .dver5b .dyr8s .d^^f8r1s .d^^f85vi .ec8 .ed2 .edel1 .eft2 .efter5s .ege2 .eg5enhet .egg1s .ei8 .eids2 .eigar3 .ein4b .eine8fors .ein4m .eite4 .ek2 .eke2 .ekk2 .eks4h .el4b .eldre3 .ele2 .el6g .elg5n .elg5r .el2k .els4 .el8v .em2 .en2 .en3a .encefalo7 .enges5 .en7leder. .en3si .en3sp .en7str .en7sy .ent4 .en^^f8k1 .eple1 .er2 .es8 .est6 .et4 .ets8 .etter7ko .etter5sy .ett4p .ett6s .ev4 .eve4 .fa6 .fag1s2 .fast3s .fe2 .fe5dri .fel4 .felt3r .fem5a .fer2 .fest7spel. .fest9spela .fi2 .fia8 .fin3d .fisk7end .fjell5d .fjell5s .flat5o .fly1d .fly7plass. .fly9plassane .fly9plassar. .fly7plasse .fly3vi .for5ans .for7beredt .fore7bygge .fore9bygging. .fore9bygginge .fore3k .for9fjo .for7flytti .for5kal .for5kje .for4kj^^f8 .for5kv .formynder9ska .fors2 .for7tald .for5tetn .fra3fa .fram3e .fram3l .fram7m^^f8te. .fram9m^^f8tet. .fram5sk .fram5st^^f8 .fram9syning. .fram7syninga .fram3v .fra7si .fra5sk .fra7trekk. .fra7trekke .frem7gang. .frem7gange .frem5leg .frem7ma .frem7m^^f8te. .frem7m^^f8tet .frem7skriv .frem7sp .frem9stilling. .frem9stillinge .frem7stilt .frem5st^^f8 .fri7gj^^f8ring. .fri7gj^^f8ringe .fr^^e59hald. .fr^^e59halda .fr^^e59halde .fr^^e59halds. .fr^^e59v^^e6r. .fr^^e57v^^e6re .fugle3 .full7byrde .full9byrding. .full9byrdinga .full9byrdinge .full9byrdings. .full5e .f^^f8re9bygging. .f^^f8re9bygginga .f^^f8re9byggj .f^^f8re7l .f^^f8re9m^^e5l. .f^^f8re9m^^e5la .f^^f8re9m^^e5le .f^^f8re3s .ga4 .gangs2 .gang5sp .gar8 .ge2 .gel8 .gen3te .ges8 .gi2 .gift3s .gir1s .gje8 .gjen5dr .gjen3k .gjere7 .gj^^f8re3 .gle8 .gn6 .go6 .godt3g .gram4s .grav7ferda .grims6by .guds9t .gur8 .halv5de .halv3^^f8 .halv5^^e5r. .halv9^^e5ra .halv5^^e5re .hamne3 .hand7ball. .hand7ballen .hand5bo .hand7b^^f8 .hand7klee .hand5s8l .hand5ta .haust5o .hav1s .hjelpe9middele .hjelpe7midl .hoved7stad. .hoved7stade .hovud7stad. .hovud7stade .hull3s .hus9hald. .hus9halda .hus9halde .hus8leg .hus7mora .hus6val .h^^f8g7skola .h^^f8g7skole. .h^^f8g7skolen .h^^f8g7skoler. .h^^f8g9skolers .h^^f8g7skoles. .h^^f8g7skula .h^^f8g7skule. .h^^f8g9skulen. .h^^f8g7tid. .h^^f8g7tida .h^^f8g7tideli .h^^f8g7tiden .h^^f8y7skole. .h^^f8y7skolen .h^^f8y7skoler. .h^^f8y7skolers .h^^f8y7skoles. .h^^e5nd7ball. .h^^e5nd7ballen .h^^e5nd7balls. .h^^e5nd5bo .h^^e5nd5b^^f8 .h^^e5nd5s4l .h^^e5nd5ta .ial2 .ikke1 .il5b .il7g .il3leg .il7lit .ils8 .il6se .im6 .in3dep .in6g .in2kj .inn7deling. .inn7delinga .inn7delinge .inn5delt .inn7draging. .inn7draginga .inn9dragning. .inn9dragninge .inn5dri .inne3h .inne5l .inn2fe .inn5f^^f8r. .inn5f^^f8re .inn7f^^f8ring. .inn7f^^f8ringa .inn7f^^f8ringe .inn7f^^f8rsele .inn9f^^f8rsla .inn9f^^f8rsle. .inn5f^^f8rt .inn7gy .inn3he .inn3i .inn7kj^^f8p. .inn9kj^^f8pa .inn7kj^^f8pe .inn7kj^^f8pt .inn3kr .inn5lag .inn7leiing. .inn7leiinga .inn5l^^f8p. .inn9l^^f8pa .inn7l^^f8sning. .inn7l^^f8ysing. .inn9l^^f8ysinga .inns2 .inn7samle .inn7samling. .inn7samlinga .inn7samlinge .inn9setjing. .inn9setjinga .inn6sid .inn9skot. .inn9skota .inn9skote .inn3sm .inn7sparing. .inn7sparinga .inn7sparinge .inn5syn. .inn5syne .inte8 .in4tr .ir2 .is9ba .is4fjo .is1ka .is5ku .is3lag .is5leg .is3p .is1s6 .is3tap .is5tes .is7tj .is6ves .is5^^f8 .ja4 .jam5s .je2 .jel3^^f8 .jern7bana .jern7bane. .jern7banen. .jern7baner. .jern3s .jord7b^^e6re .jord3r .jour8 .ju8 .jul1a .jule1 .j^^e6r8 .j^^f88 .ka8 .kaki5 .kal2 .kapp3l .kaps8 .kart9legging. .kart9legginga .kart9legginge .kat4 .ke2 .kel4 .ki4 .kilo7meter. .kina1 .kinn5b .kje2 .kj^^f8nns5k .kj^^f8t5s .kne2bl .knip7pen .ko8 .kraft5v .kran7t .kring7kasta .kring9kasting. .kring9kastinga .kring9kastinge .kring9kastings. .krings4 .kro3v .kule5ri .kvi6 .ky8 .kyrkje9lyd. .kyrkje7lyda .kyrkje9lyde .k^^f83s .k^^e5t6 .la8 .lag7mann. .lag7manne .lan2 .land3a .land3r .land5sky .laup7s .laus3l .laus7^^f8yra .laus7^^f8yre. .laus9^^f8yren .lav7sk .le2 .ledd7gikt. .ledd9gikta .ledd9gikte .le4g .leg3do .lego3 .leike7t^^f8y. .leike9t^^f8ya. .leike7t^^f8ye .lein5s .les2 .le3sku .les7v .lete1 .leve3v .lig4 .liks2 .lik3st .lik7t^^e5 .linn5v .lo2 .lo8va .lov7givi .lov9gjeving. .lov9gjevinga .luft3s2 .lut3f .lut5v .lyd1s .lyn1k .lys7bilden .lys7bilder .lys7bildet .lys9bileta .lys7bilete .l^^e6r4art .l^^f8s1l .l^^e58 .ma2 .makt3s .man2 .mar4 .me8 .med1r .mer4d .mer4ku .metall5s .mi8 .mini3k .misleg5 .mne8 .mogleg7 .mord3s .mor2f .mor8t .mul5es .m^^f8r2k .m^^f8rk7l .m^^e52 .m^^e5l5lag. .m^^e5l9laga .m^^e5l5lage .m^^e5l1s .na2 .nar2k .nat4 .ne2 .ned7gang. .ned7ganga .ned7gange .ned5i .ned1l .ned5ra .ned7rusting. .ned9rustinga .ned9rustinge .ned9rustning. .ned9rustninge .ned1s6 .nel8 .ner4 .nest9leiar. .nest9leiare .nett7verk. .nett9verka .nett7verke .ni3gl .no2 .noen1 .ny3kle .ny5le .ny3sta .ny3tes .n^^e6r8v .n^^f8y8 .ofte6 .ok6 .olde5f .om3be .om9brekkinga .om7brekkinge .om9brekkings. .om3b^^e6 .om8fa .om8forma. .om6hu .om1i .om1l .om1o .om1p .oms8 .om3ska .om7sku .om8sna .om3sta .om7svi .om2t .om8v .on8 .ons2 .opp9bevaringa .opp7bo .opp3bu .opp3by .opp9byggings. .opp7el .opp5hen .opp7kj^^f8p. .opp7kj^^f8pa .opp7kj^^f8pe .opp3kr .opp5lat .opp5les .opp5livn .opp7l^^f8sning. .opp7l^^f8sninge .opp7l^^f8yse .opp9l^^f8ysing. .opp9l^^f8ysinga .opp4mod .opp7nevnt .opp7reisi .opp9reisninga .opp5rek .opp5ring .opp7ryddinga .opp7rykk. .opp9rykka .opp7rykke .opps2 .opp5setn .opp5sti .opp5sty .opp5st^^e5 .opp3sv .opp9teke. .opp9teken .opp5tel .opp9tening. .opp9teninga .opp7tjening. .opp7tjeninge .opp7tjent .opp3t^^f8 .opp7varming. .opp9varminga .opp7varminge .opp5vekk .opp7visi .opp7visning. .opp7visninga .opp7visninge .or2 .ord1b .ord7f^^f8rer. .ord7f^^f8rere .ord7f^^f8rern .ord1l .ord1s .org6 .os8 .ose2 .ove4 .oven1 .oven7t .over5de .over7dose. .over7dosen .over5leg .over7setter. .over7settere .over7settern .over9skot. .over9skota .over9skote .over7skott. .over9skotta .over7skotte .over7skrid .over7skudd. .over7skudde .over7slag. .over9slaga .over7slage .over7sy .over9tagelse. .over9tagelsen .over9tagelser .over9takelse. .over9takelsen .over7taking. .over7takinga .over5tar .over5te .over5tr .over5ve .over7v^^e5king. .over9v^^e5kinga .over7v^^e5kinge .over9v^^e5kning. .over9v^^e5kninge .ov5m .pa2 .pan8 .par5da .pe4 .pel2 .pen2g .pepar3 .per2 .pin8l .plan7leggj .ple2 .po6 .polo3g .por4 .prima5d .program9varen .ps2 .pur4 .pus8 .p^^e55driva .ra6 .ram8se .rand6kr .re2 .re5dal .redo9blas .reiar7l .rein9gjering. .rein9gjeringa .reins4k .re3ka .rekke5f .rekkje7f .re3lan .re8me .renn3s .re7part .res2 .rett7leiing. .rett7leiinga .ri8 .ro6l .roms4 .ror3k .rors5k .rot3s .ru2 .rune3s .r^^f8r5lei .r^^f8yr5l .r^^e5de7r .r^^e5d7gjevar. .r^^e5d7gjevara .r^^e5d9gjevare .r^^e5d9gjeving. .r^^e5d9gjevinga .r^^e5d7mann. .r^^e5d7manne .r^^e5d7manns. .r^^e58kas .r^^e57kl .r^^e53ste .r^^e59vara .r^^e55varen .r^^e55varer .sa2 .sak7kyndige .saman3 .sam5eie. .sam7eien .sam7eier. .sam5eiet .sammen5d .sammen5h .sammen5k .sammen5s .sand3t .sar8 .se4 .sed3v .sel2bu .sel2m .ser6 .si2 .sikk6 .sin8 .sje2 .sjuke5hj .sjuke7hus. .sjuke7husa. .sjuke7husen .sjuke7huset .sjuke9pleiar. .sjuke9pleiara .sjuke9pleiaren .sjuke9pleier. .sjuke9pleiere .sjuke9pleiern .sk6 .skar4 .skatt9legging. .skatt9legginga .skatt9legginge .ski1d .skille7t .skinn5s .skode9spel. .skode9spela. .skode9spelar. .skode9spelara .skode9spelaren .skode9spele .sko6g5u .skudd5s4 .skue9spiller. .skue9spillere .skue9spillern .slag3r .sle6 .sleg8gjer .sm^^f8r7br^^f8d. .sm^^f8r9br^^f8da .sm^^f8r7br^^f8de .sm^^e57ler .sn8 .sner4 .sn^^f83k .sn^^f83t .so2 .sofa1 .sommar5 .spe2 .spiel2 .sport4 .st6 .sta2 .stats6min .stats9minister. .stats9ministeren .stats7r^^e5d. .stats7r^^e5da .stats7r^^e5de .ste2i .ster8 .ste8v .stor5g .stor7mestere .stra6 .stre2 .styre7m .styres5m .st^^e5l1 .sus2 .svar3s .svei4 .syke7hus. .syke7husen .syke7huset .syke7pleier. .syke9pleiere .syke7pleiern .syns3p .syssel9setjing. .syssel9setjinga .syssel9sett. .syssel9setting. .syssel9settinge .ta2 .tak3ra .tak3sk .tak9sp .tal4l^^f8 .tals3m .tann7kreme .tann7lega .tann7lege. .tann7legen .tann7leger. .tann7l^^e6k .tar4 .te2 .te7bo .te3ka .tel4 .teppe7r .ter2 .te5si .ti3del .tids1 .tids7skrif .ti5f .ti4l .til2h .til5lagi .til5lan .til5sag .til7seg .til7str^^f8 .til5vek .til7ver .ti6m .ting7lysinga .ti2r .ti3tus .ti2^^e5rs .to1d .tog5ga .tokk8 .tol8 .topp5lag .topp3s .tor2 .to7rad .to5ste .to9to .tra2 .tre6skja .tre3sn .tri6 .trykk7sak. .trykk9saka .trykk7sake .ts2 .tun5t .tur2bo .t^^f8r2 .ude8 .ue8 .uke3l .ul2 .ule8s .ull3m .ull2v .under9haldning. .under9haldninga .under5la .under7lege. .under9skrifta .under7ste .under7t^^f8y. .under7t^^f8ye .unn8 .unna1 .ur6an .ur3g .ur1s .us2 .uta4f .ut5age .ute1r .ut4fo .ut3sid .utt4 .vakt3h .valg1 .valgs2 .val9kampar .val5me .val9tings. .van3h .van5m .vann5sp .vann7stand. .vare5ta .var6s .vat6 .ve6 .vedde7l^^f8p. .vedde9l^^f8pa .vedde7l^^f8pe .ved6hol .ved4ko .veg5gr .veg3l .veg1s2 .vei1p .vei1s .vei5val .vekt3s .vel1e .vel2h .vel3ov .vel5sk .vel7v .ven6 .ver2 .verd7setj .ver3h .verke9middel. .verke9middele .verke9midl .v^^ear1 .vi8 .vil8 .vinn6 .vin5tre. .virke9middele .vise5ri .vis4k .vis8p .vist8 .vitne5m .v^^e5k5enh .yr8v .ytre3 .^^e6re4s5a .^^f8l1 .^^f8ns4 .^^f8re3s .^^f8res7v .^^f8r4la .^^f8r8sk .^^f8r5sm .^^f8s8t .^^f8sten6f .^^f8st6l .^^f8ye3l .^^f8y2vi .^^e5k8 .^^e5l2 .^^e5ne6 .^^e5r8l .^^e5rs1k .^^e5rs7l .^^e5s7l .^^e5t6 aa2 a1ad a3aft a1aks aale6 a1am a1an a1ap aar2 a1av aba8 a1bak a1bass a7bea a1bed abel3t a5beo aber5r aber3s a1bev ab2i a1bild a1blok abo1b abo1g 1abon 5aborte a1bran a6brut 5absorb 3absorp a5bud a1buss a1byg a3byt a5b^^e6r a1b^^f8 8ac ace2b ack2b ack3o acon3 aco3s a7cupa acup1f a3dale ad3art a7dat ad1b ad4du ade1e a8dei ad3eig ade5is 3adekv ad5elv ade1p ade3ris ade1s ades4h ade7si ade3tal adetids5 ade5v ad2f 1adfer ad9fj 1adg ad7gj 2adg^^e5 ad7hu adia8 a3diks ad7inn adio1k adio1m adio3p adio1t adio3v 1adju 2adl ad9lis 1adm ad7m^^e5le a4dob 4ador ad7p ad7rel 1adres ads9amt ads7g ad4ski ads1l ad3slet ad3s8tr ad1t 1adv ad7val ad5van ad7v^^e6 ad7v^^e5 ad^^f8ds4 a5d^^f8m 4ae a1ef aefter8 a1ei a1ek ae6l a1enh a3ent a1ep a7eti a1ett aetter4 afa6 affi1d af4i af7inn a7flytte a9flytting. a7flyttinge 8afo a2fon afor9st 1afri af1sk aft5el aft1s2 af7yr a1f^^f8 4aga ag5art a6gassr agde2 ag1del ag1di ag1do 1agent ager5d ager7h ager3m age1s age7se ag2fo ag3fol ag7gam agg3h agg7la 1aggre agg1s2 ag1h agi2 ag5id a1gj ag8lege agleg8g agle5m ag1lit ag3mu agn4v a2go ag1or ag5ov agre6 ag5rek ag7retn a1gru ag1r^^e5 ags4ang ag3s4ei ag3ski ags4kul ag3stru ag5tid. agt1s ag1v a6har ahjelpe8 a2hy ai5art ai8fa ai7fe ai5fi ail7g ai8ma ai3mo aine8 ai5nep a1inn ain5o ai3p ais6e ai2sk ais1ko ai5s6v aiti6 ai3tie ai3to ai7^^f8 2ak. 6aka. aka6b 1akad 6akaf akar7d akar5m akar7p ak6au 2ake ake1h akel8e akel8i ake2lit akere5s aker1o aker7t ake1s akes8p ak9gi ak7hov aki8e 2a1kj ak2k ak5kant. ak7kante 6akke akk5erst akk3is 5akkor akk7ri ak9kun ak7lap ak7lau ak3lek ak1lis ak3lo ak3lu ak3ly ak5l^^e5 6akn a7kno ako2 a1kos ako5te akover5 akraft8 a1kred akro3be ak1ru aks5alt 6aksed aks5elv ak5sete. ak5sider. 5aksja 5aksje aks1k ak7sku 5akslin ak1sna aks1pe 2akss ak5stol ak7str^^f8m. ak1s^^f8 akt7r^^e5 akt6sa akt1se akt1sk akt6skr akt5s4la akt3str akt5s^^f8 1aktue a1kur 2akv ak3val ak3v^^e6 a5ky ak7^^f8l ala5be alands7t al1anl 1al2arm al5ar4r al1art a5larv al5asi 2alat ala7tr ala7tu a3laus al1av al1bo al1bud 1album al1by al1b^^f8 al1dag al7danse al3def al1del al1dem 3alder. 3aldere 7alderle 5alderlig 7alders. 2aldo al8dre al7due 2ale ale3f al8eik alekt5s al5emu ale2n al3enh al3entr ale1pe ale7rede. ale3ro ales7kr ale3str ale1te ale3vi al7fal al1fe al1fr al1f^^f8 2alg. al3gang al2gen 2alget al1gj alg1l 3algori al2gu al1h al8hen al3h^^f8 ali2 al1ind al1ins al1int ali6s alj5end alj^^f84 alj5^^f8v al2kam alk3s al3lab all5art all7b alleg6 al5leii 3allerg all5erst alle3s al5leti 1allia 5allie all3mak allopp6 all7re all4sin all2sti all2vit al1l^^e6 al1mak alme3st 2alo6 al1ob alo7gramme al1om2 al1ope al5ost alov4 al1ove a2lover al1pa al7pr al1ps als5aks als7ank al1sek al7sete al1sid als2ma als2men al9sni al1sok als7pu al1st als5tan al1sy 8alt. al1tal al8tar al3teg 5alterna alter5r alt5eta alt5ete al1tid al1tj al5uk al1und alv5aks 2alve alv9erm alv3m alv3ta a3lyd. a5lyde al3^^f8v al^^e54 al^^e5rs4 al7^^e5t 6am. ama8b ama5ka am3aks am5ald a3mann. a5manne a7manns. am5ass 3amat^^f8 ama3ve 1ambas amba1t ambe6 1ambis am3brud am5dale am1de am7driftsma am7driftsp 6ame. a1med ame5dr 2amei am7eieren a1meld ame7lin a1menn amens1 ament5arv ame3ret 1ameri am8e5u 2amf am8forl am5fr am9gi am1gj am5g^^e5 am8hu am2h^^f8 a1midd am2kj am2k^^f8 am5k^^e5 2aml am8len amle3s am4li am7lu 2amm am7mate am5mor 8amn. 8amna amn3s a1mod am2or amp3akt amp7ei am3plet amp1t am8p^^e5 am7sat amse8 am1sek am9sider am1ska am2ski am7skj am3sko am5skrit am3s8ku am1sl am1sp ams2r amster2 am5sto am9syn. am7syne 8amt. am7tv 2amv am7val am5vege am1ver 2an. an5aas anabo2 1analy anan9t 2anar an5art 8an7au an3ba an2be 1anbef an3byg anda7m an6dat 4ande. ande7p and1h and7j ando3f and3onk ando1s 6ands ands3tj and5ven 2ane ane1d ane5ga an7egg anel1d an5elv ane1m aner1s ane3sta an7etika an5etikk an3etis anett3v ane1v 1an8fal an9fald an9fallan an3fig an8forl an9forli ang3arm ang5de ang5enh ang5erme ang8fjo 5angiv ang7ov 3angrep ang3rid ang1ry angs2at ang3sid ang5sled angst9r^^e5 angs2tv angst5y ang3sva ang6t5re ang1va ani7b anin7f an1kat 2anki ank5ord ank1ra an6k^^f8 ank7^^e5 4anla an7lands. an9landsk. an9landske 3anledn an7lo an7l^^f8y an2m an6na ann1f ann4gi ann5gr ann7g^^e5 ann3l^^f8 1anno ann1r anns3ak ann5saml ann3sen anns7k^^e5 ann5son anns7u ann1tr ann1v ano8d anode7b 2anog anon3s an1ove an8p^^e5 an3rin 2ans. ans3aft an5sal 3ansaml an3sand 1ansat an2sc anse7d an5sels 6ansen anse1s anse3te 1ansik an2sj an8sja an3skap ans4k1l ans3ma ans5or anst6 6an7star 8ansti 3anstr an1sty an5sun 1ansv 2ansve 1antal ant3emi 3antenn ant7he anti5ge an3tog ant3ord an3tref 3antrek ant5ryg a1num an7val 1anven an1ver 1anvis an1^^e6 2a2n^^f8 a1o aom2 a5on a7op a3or aord8 a2os apar7s a3pass a1peng ap1h ap1id apir1k apir7r api1v a1pla ap7lei 6apol a4polis a7pom a5pott 1appar 2appar. 3appell app9esk app5g app7ho ap5plas app1s aps1 apse2s aps9f ap2st ap2su a7psy 8apu a7pud a5pun a8punktf ap8^^f8 a2p^^e5 6ar. 3arabi ar7aft ara5h ara7ka ar5aks ar3alt 8aran 8arar ar7arm ar5ass ar7aug arav8 ar7avh 2arba ar1bas ar3bed 4arbeh ar1bet 2arbil ar5bis 4ar3bj 2arbo ar7bob ar8bom ar7bot 2arbr ar1bre ar5br^^f8 2ar1bu ar4bu. 2ar1by 2ar1b^^f8 4arb^^e5 ar2c 4ard ar7dam ard3b ard7d ard9ei ard3l ard8stad ar7dyp ar7dyr ar5d^^f8m 8are. 1area 2areav are1d are1h ar3eig are1in a1reis are1le ar7elek are9lin ar7emn 2aren. 1arena a7renn are1p are1so are1sp are5sti are5tal are3tr ar3evn ar1f arg6i ar7giv ar1gl arg5s4tj 1argum ar7g^^e5 ar1ha ar5ho arhus8 2ari aria3k ari8b ari1fu ar5inns ar1int ari5p ari8sk ari1v ar1j arke3s arke2t ark6h 1arkit 1arkiv 4arkivk ar1kj ar7kje 8arkl ark5l^^f8f 6arko ar5kon arko3re ar9korta ar9korte 4arkp ark5ren ar6krigst ark3se ar1ku ark5ved ark7veg ar8k^^f8 ar5la. ar6lege. ar1lei ar5ly 8armi ar7mid ar7mot 4arms ar3mu ar1m^^e5 2arn arn7bana arn7bane. arn9banen. arn9baner. arne3k arne3p ar1nom arns3ti ar7n^^e6 ar3omb ar5oms ar1op ar1or ar7ost ar1ove ar1pl arp3ret arp1s2 1arra 2arrap ar1rek ar7rettsf ar3sak ars7d ars7hu ar9sit ar2skap ar3skar ar6skolee ars9kre ar3son ar1st ar3svei ar1sy 4ar3tak 8artal ar3tegn ar5tenest 8artets art8hu arti5b arti3gr art5isen 5artiu ar1tj art5la 8arto ar7tog art3op ar7tref ar3try art7ska art1t ar1tur ar5tyk ar1un ar5ur ar7utn ar7val ar2van arve3la ar3verd arve3st ar6vet ar5vil ar1vis ar7vit ar7^^e6 a5r^^f8r ar1^^f8y ar7^^f8y. ar9^^f8ys. a1r^^e5 ar7^^e5n ar7^^e5p ar5^^e5r ar^^e5rs6 a6r^^e5t as2 2as. asa5bl a1sam a1sang asan9s a7sau. as3bi as7dr as7d^^f8 ase1d as6el ase5lev a3sendi a3seng aser3s ases6 ase7st ase3tes ase5u as5fo as5gj as5hu as5h^^f8 1asiat asi5b a1sid a3sign a1sik asi3ko as7ind asin7k asi1r asi3v asje1g as7jun a3skat aske4pi ask6i a3skif askin3k a1skj as3kl a1skol as5kom as5kopi as5kur ask5^^f8y as5lag as3led as7lei as7lek as7middele as3om as3op as3ov 6aspirants as3pl as3pos as3re as7r^^f8 as9r^^e5 ass3alt ass7arv 4asse as4sk as9skapa ass5kis ass1kj ass1ku ass1l ass3n ass1p ass3pi ass1t as3sty 1assur ass1v 2ast. as7tak ast5enh as7terr ast1ho as7tid a1stj ast4kur ast5land. a5stof ast3sp as9tua a1sty as5t^^f8r ast3^^f8v as3ul a7sum as3va a3syk 4asyls a6sym as5^^e5 a6ta. at6a1f ata1i atak4 ata1ka ata1kr a4taks a9taks. atal8 a5tall ata9lov ata1m atar3m at7arv ata1se ata1t ata1ve at5avh at3b ate9ba a5tegn atek8 ate7lek at1emb ate7rat ate3rit ater1l ater1s ater1v ate3sl ate3sti at3ett 1at2fer at2fj at1g at8has at2hi at7hov 4ati a1tid atids5 a1til ati2r ati7r^^f8 3atlant 5atlas at4mon 3atmos atn6 at3ny a7tob ato1la a6tom atom3te aton1t ato1pa a3toppe ato1s atra6 a3trak at5rot a1trus at7r^^f8s at5r^^f8y 2ats at7sem at7sik at7skat ats5kra at7s8kul ats1p ats2r^^e5 at1sty ats3^^f8 1attac at1tal at8tap attel8 atte3le atten4h 3attent att2f att3fe att9la att7op att7ov att2p^^e5 att3rad att1re at5try att1s atts8k atts8l att8ve att4vi att1^^f8r a5tub atv6 at3van at9vara at1ve at1vir at^^f8r1r at^^f8r1s at7^^f8y at7^^e5r at7^^e5t au1ba au5bl aud3l aud7st auge5l aug5le aug5sta au5h 1auk aukeli3 auk7sl auk5st au5kve au7lam aum5b aum1f aum3l aum5r aum7s8k aum7sp aum3st a1und aurant5r aur2l aur4sk aur7sl aur3st aus9kj aus7sl aus6t aust7ise aust7ri aute8 aut5fa aut3k aut7le aut5m 1auto au3tre auv2tre av5ab a1vag av1alv av5anl 1avans av8arb av1art a1vass 5av2bi 1avd av3dan av1dy 2ave ave1d2 ave7kn a3veld aven3s aver9m ave1s ave7se ave5v 1avfa av3f^^f8l 1avg av4gas av2gj av3hu avi2 2avig avi3m 2avin a3vink av5int 2a1vir 3avis. 3avisa avis5an 1avise avis7h av7ising. av7isinge av7isings. avis1l avis1s av2ka 3avkas 9avls. av1lun av2l^^f8 av8l^^f8y 2avn av7pris. av5prise 1avreg 5avrekn av3rev av1sa av8sam av5sendel av5sendi avs2i av3sin av8ska avs4kj av2sk^^e5 av3sle av5sli 3avsn av1sp avs7s av1sti av5sto av1str av5su av1s2v 1avt 4avt. av7t^^e5 2a4vu 1avv av1^^f8rn 6av^^e5 av7^^e5l a5v^^e5r ay5la ay1sa ay9st a3yt a1^^f8 a3^^e5 b4a 2ba. ba9bu 1bac 4bach back5s 8backt b5add 1bade bade5b bade5l 4bado 2baj bake1l bak3end bak9ett bak5kana 4bakkere 6bakkn bak5kr bak3ro baks4 bak5siden bak7sk bak1sm bak3sp bak7sti bak3str 3bakt bak1ta bak7to bak1tr ba6l2 2bal. 1balan bal5f 2bali bal3in bal5kl bal8l ball1s8 8balt ban2 2ban. 4bandj 2band1l 4bandm 4bandp 6bandsu band5v 4bandyk 4baneb bane5l 7banemes 7banenes 4banenet 6baneo 6banep 9banes. 4bane1t bang5s 2bani 1bank 2bankb 4bankd 4bankg 6banki 2bankk bank1l bank1r bank1s 5banks. bank5t 3bann 6bao 2bar. bar3dis 2bare. bare5b 2barh 8bari bark7s 3barn. 3barna 6barnad 5barne barne3r barn8le barn2s 3barns. 8barnsd^^e5 3baro 3barr bar3ska bar7skr 2bart6 bar9tal. bar9tala bar5tend bar5tre. ba2s 1baser 4basereg 6baseru 5bas^^e9 bass6tr 2bat 3batal bat2t batt3f b7av 8baz 2b2b bb5arb bb1d bbe3f bbe3g bb1eie bb9eig bbe3k bbel3l bber5l bber5m bbe3s bbe4sk bbe7ta bbe7to bbe7tr bbe3v bb7h bb1l bb5op bb1s bb1t bb5utf bby3r be2 2be. be3an be3bi bed2 be3das 6bedingss beds5a be3ek be7ev 1beg4 1beh be3hu 2beh^^f8 beid2 beids7ty 9beinar. 4beinerl 4beinerr bein3f bein5g 3beint 4beisa 9beita 5beite. be3ka bekke5s bek3sv bek7t 6bel. 5belastn bel1d bel3eie bel9ein 6belen bel3gj bel7g^^e5 bel7leg bel1o 2bel1s2 4belteb belt5rom bel1v 1bely 1bel^^f8 bel3^^e5r be3m^^e5 be5nat 2bend bene2 8bene. bene5s ben2h 5ben2k 4bensb bens2i be3of be3pr 2ber. ber1da 2beren bere5p ber2g 2berg1o 6bergs4k 6berg3^^e5 ber5he ber3kj bern2 2bero be3rom 2berr ber3re berser4 ber5sk ber7sl ber3sp 2bert ber7tall. ber9talle ber9talls. bert2h ber1v 1bes8 2bes. 8bestillings 9bestillings. be4s^^f8 2bet. beta5e be3tid betre7s be3tru 2bets be5tus 7bety 5bevar. 7bevara 3bevare 7bevaring. 7bevaringe 7bevarings. 3bevart 3bevi be7^^e5t 6b1f 2bh b7he b1hu 2bia bi8bl 3bid8r bi5du bi5erv bif8 bi5ges bi2ho bi5i bi4je bi3kr bi1ku bi7k^^f8 2bilarb bil1b 2bildeb 2bildef bil5del. bil7dela bil5dele 6bildere 4bildeu 4bildi bil5du bil1d^^f8 bile2 bi3leg 2bilei bilet3t 2bil1f bil3g 8bilh bil7ha bi7line 2bil5k bil1la 7billa. 3bil6le bille4g bil3l^^f8 2bil1m 6bilnings 9bilnings. bil3n^^e6 bil1o 2bil1p 2bil1s bil3ska bil5st 2bil1t 2bilu bil1v bi7ly bi5m bime6 6bindarm 4binderm bin3f bin5st b3int bi3ny bio5d bio3e 5biol bio9p 5biotika. 5biotikae 5biotiku bi1p birke2l bi3ro bis2 bi2sam bi3sek bi9sn 4bispeg bisse4 7bitern bite6s bi7test 4bitf 2bito bi8tr bit9v 8biu bi7vo 1bjel bjer2 bj^^f8r4 2bj^^f8rg 6bj^^f8rnf 4bj^^f8rnj 6bj^^f8rnp 2bj^^f8rnv b1k bkjenne6teg bl2 bla4 1b6lad 9blada. 4bladar 8bladf 6bladg 2bladj 8bladk 8bladl 6bladst blan2 blande5b 5blank b2lek ble8m blem5av blem1b blem1s 8bler bler8a 4blikkp 4blikkt 5blind. 5blinde. 6blindel 7blindes. 7blindh 9blindi 9blinds 9blindt 6blivelses 7blivelses. blo6 blod1d 3blodi blod1r 8blodsd 2blodsh 6blodsl 2blokkl bly7v bl^^e51m 6bl^^e5sei b1m 2bn bne1 b2no b2o bo5ak boa5s bo8ban bob3ba bo1bo bob3s 6bob^^f8 6bodg bo5die bod8m bod7r bod7t bo8d^^f8 4boe. bo7ef bo3enh 2boerf 4boeri 4boerl 4boero 2boers 6boert 6boes bo1f bo4gi bogn7 3boik bo1j bo4ja 2bokak 2bokav 4bokd bok1et 2bokf 2bok1i 2bok1k 8bokl 2bokm 2bo4kn bo3kol bo3kos 2bokp 2bokr bok7ri 1boks 2boksad 4bok7sal 8boksb bokse5rin bok3sid 8boksl 6boksr 6bokss 4boksy 8bok1t 2boku 6bokv bol3eie 6boligi 4boligt bol1v 1bom bom2b 6bombel 2bombep bombe3s bom1s 6bon. bon3ato bon5f bon3gr bong7s bon3s2 3bonus bo3pli bor7dal 4bordb 3borde 4bordh 2bordsm 6bordt bore3s bo7rette bor6g 6borgh bor6l 5born2 4bor2r bort7et bort1s bort5v bor7v 8bosk bo2ska bo7ski bos6s bo1sty bo2st^^f8t 4bou bo1v bo8y 6boym 9boyse b5p br2 2brae brak3n brak1s 2bral 2brand 3brann. 7branna 3branne 4branng 1brans bra7vi 6breddet 6breddr breds8l bred5sp 6breiddr brei3s6 bre8ka 7brekking. 5brekn brek5s bre2m6 1brens 4brenta bres2 bre9sk bre3sp 3brett. 3brettk bre3van brev5in brev5r 2brevs bri2 brie2 brim8 6bringers 6bringert 4brog bro1l 3bror 4brork bro5sten. bro7stens. 6brotsf 7brotts. 8bruddl 2brudds 7brue 6brug 6brukerek 4brukerl 6brukers 8brukert bruks1 3bruks. 4bruksar 4bruksk 6bruksmet 2bruksp 2brukst bru3l 5brun bru5pl brure3 bru7te 4bruv bru7va bry8s 6brytings 7brytings. 6brytningsp 6br^^f8df 8br^^f8dk 6br^^f8dl 2br^^f8dsd 6br^^f8ko 8br^^f8kt br^^e53d br^^e51s 2bs b1sa bs2b b8sc bs2e bs3el bs8i bsk2 bs1of bs1s bst6 bste6 b5s4v b1s^^f8 bs2^^e5 8bt b9to b5tro b2u 8buari 8buars bu3be 6buc bu5dal 4budt bu3em bue5s 6bufe 6bug bu5ga 2bui 1buk 8bu7ki 8bukkl buk3l bu5ko buks6 6bukseh 1bull b5ung bunn5f bunn3l bunn1s bu1o bu1rei 2burg bur4l bur2m bu3ro burs2d bus2 bu7sat bus6e 4buser bu3ski busk9^^f8 5busta 6bustadi 6bustadt bu7stan bu5sty 2but. but1al but3b 2bute bu5tem b7utg 1buti 4butiv but3k but5l^^f8 but3p but3r but3s 2bu5v b1v b6vene by1ak by5al by1ant 8byap 2by1b by7dep 8byek 2by1ga 8byggerf 4byggerk 4byggerp 4byggerr 4byggers 4byggert 8byggeru 4byggery 6bygger^^e5 6bygningsk 4bygr by1g^^e5 6byh 8byi 6byj 2by1k2 by4kle 2byl by3leg by1li by7l^^e6 4by1m 6byn 2byp by1par by3po 3byr^^e5. 6byr^^e5b 6byr^^e5di 1byr^^e5e 2byr^^e5f 4byr^^e5g 2byr^^e5kj 6byr^^e5l 4byr^^e5t 4byr^^e5v 4bysa 6bysb by1se 8bysj by5ska by1sko by5sl by5so by7sp by5sto by7tal by5to by1tr 8byu 2by1v 6b^^e6k 8b^^e6re3s 4b^^e6rg 2b^^e6rh b^^e6r5is 8b^^e6rm 2b^^e6rs 5b^^e6rse 2b^^e6rt 2b^^f8d b^^f85da b^^f8l8 b^^f87lan 5b^^f8lge. 6b^^f8lgef 3b^^f8lgen 2b^^f8lges 4b^^f8lgjes 3b^^f8nd b^^f8n7o b^^f8r7d b^^f8r5p b^^f8r2s b^^f8rs5ti b^^f8rs1v 5b^^f8rsve 5b^^f8yi 1b^^e56 6b^^e5ndk 2b^^e5ndo 9b^^e5nds. 2b^^e5ndsk 8b^^e5ndu 4b^^e5nd3v b^^e5s3te 6b^^e5tb 7b^^e5tbyggi 4b^^e5td 4b^^e5th b^^e5t7j 4b^^e5tm 2b^^e5tp b^^e5t1r b^^e5t1t 8b^^e5t1v 2b^^e5t^^f8 ca2 ca8fe carne8 car1v ce1i 1cel cele2 2cellep 6cellet ce9ma cen6 cene1d cene5s cene1v ce2r cere6 certe4 ce7ru ces8 ce3sk cest1o ce1t ce1v c^^e96 c2h 3cham 3chip ch3st ch7ti ch1v cie2 cies9 cine2 cir4 4citytr c8k ck3art cke3l cke7s ckey1n ck1k ck5nu cko2 ck3r ck7tu 5clas c1m 1coc co1d co7f co7go cola1f con4r cor6 corn4 cover3v c1p cr8 6cre2 cros2 1cru cu8 3cub cud3 1cup. 9cupan 9cupar 1cupe cup1l cup3p cup1r cup1s cy8 8da. da8bel da3ber 2dad da3d^^f8 8dae 7dagb dag4f dag9lei da4gr 2dags 8dagsb dag5skol 4dagsl dags8leg dags3p dag3te da5g^^e5 da5he da3kas d8akser d9akser. d3aktig da5kv da2l 2dal. dal1b dal6by 4dalenu dale7s 2dals dals1l dal7v dame3l dame1s dame1t dam2p dan2 2dan. 8dand d3andel 8dane da9net danke2 d1anl 6danningsv 4dansf 2dansg 8dansm 8dant dan9til da9ny da3o 6dap 2dar d8ara d5arbeid. d7arbeids. dard5r dard1s8 dare5s dar9h dar7la d1arr dar1s dar7tal das8 8das. 6dase da5sei da9sko 1data. data1d data1l data1r data1s data3v 3datere 7datering. 7dateringe 7daterings. 3datert 7dat^^e9 d8ato 3dato. 7datoa 3datoe dato7g dat3sj dat3ti 3daud daud7v daugs3 d5aus d8austa d1av2 da7va da3vin da9v^^e5 d3bag d1bak d7ballene d5baller d5ballme d7bana d7band. d9banda d7bande d7bane. d7banen d9baner d1be dbet4 d1bi d1bl d3bor d7bot d5boys. d1bre d1bri d1bro d3bruk. d5bruka d3bruke d5bruksme d1bu d1by d7b^^e6r. d7b^^e6ra d5b^^f8n d5b^^f8y d1c 8dd dd5arm d1dat ddata2 dd1b d7deling. d7delinga d5delinge d7delings. ddel5l ddel3sv ddel5v dder5m dders8 dde6s^^f8 dde5ta dd2h d1dia dd8om d4doms dd1re d1dri ddriv2 dd2sala dds1l dds5s dds3tab dds7tak dd3ste d1du dd1v dd6va dd5^^f8y dd1^^e5r 8de. de3ak de1all 1debat de3bl 8debo de3bor de7by de3ch ded2 de9da dede6 de5dek de1del de1dr de5dun de1dy de1d^^f8 de1fer de1fes d7eff d1eft defter2 de7fu de7fy de1g de3ge d3egens d5egn de3gra de1h de2hav de3he deholde4 dei6 d1eie d6eierg 5deig. 3deigen deig5r d2e1in d5eini dek2 de5ke de3kin 1dekk 6dekkan 4dekkav 4dekkb dekke5l 4dekkf 6dekkp 2dekks de3kle 1dekn de5kob de3kom de6kor. de2kore de1kra deks5k de1kv de1k^^e5 de7lad de9laga de3lage del3d de5lenk d1elev del4hi delig4v de1lis de1liv del4kl del8le del9lev del1pe 2dels dels3at delse2 dels3ei del3sek del5sik dels3po dels3v delta7la del5ter del1tr delve8 de7l^^f8pen de5l^^f8ps. de1l^^e5 de1ma de7marks. de3mas de3mat de1mid de3mil de7min 3demni 1demok 1demon de3mor 1demp dem7po 3demr de1m^^e5 de5m^^e5l. de5m^^e5le 2den de7nak de3nas d5engen. de3nor de3not den1r dens5al dens3kj den3sky dens5p dens1t dents8 de1nu de3ny deo1b deo5la de3or deo1s de1pat de1pe8 d7eple de1pu de5ram der5av der3dag der1di de5retn de3rett der7fl der5f^^f8 der1gi der1j der1k der5lagt derleg6 der7legene der9legens der9leger der5legg der6legn der3lev 6derm der1mi der3net der5n^^e6 de5ror. de5rose der1r der5set der7skrift. der7skrifte der7skrifts. der3sl der9st^^f8 der8s^^f8k dert6 der5tem der5tim der7tv der5un de7rus derve8 der7v^^e6 de6r^^e5dsf 8des. de4saks de7saks. de7sel de1sen des3ers de5sif 1de2sig de8sin de1sj de1sk de8skiftt des9lan des2le de2sl^^f8s de3sno de9son des2p des7pl de3spr dess2 5dessert de3sta de7stel des7troe de3str^^e5 de7sty des3t^^e5 de5s8^^e5 8det. de1tak de5tarme de7teg 3deter de1ti de1tj de7tol de5tor de1tr det7s detter2 de1t^^f8 de1v de9var de4vil d7evn 8dex d^^e91 8d1f8 d2fag d3fag. d7faga d3fage d9fare d2farts dfe2 d3fi6 dfly2 d3fo d7f^^f8rers. d5f^^f8ring. d9f^^f8ringa d5f^^f8ringe d6f^^f8rings d7f^^f8rings. 8dg d1gat d5gav d7gin. d9ginen. d1gjer d9gjevan d9gjevings. d7gl d1gr dgrav6 dgr^^f8n8 d1gu d1g^^e5 d6g^^e5el d1ha d3har dhav6 d5hen d8het d9heva d1heve d1ho dholde6 d2hor d4hov d8huga d7hy d1h^^e5 8di. dia7bi 1diag di8ak 3diale dial6g di3anse dia1se diat3s di1b 7didakti dide8 die7k di3fa di3fe 1diffe di2fu di5fun dige6s dig5gr di5gren di3gru digs2 di5i dike6 di1kr 2diks 1dikt dik7v di7lin 2din di6na d1ind d2ing d3ingr ding9^^e5 dinn8 d5inns din3tr dio7f dio5li dio1re dio1s 3dipl 1dir di7rekn d3irs di4sc dis2i 3disip dis2k 5disket 5disk8o 1diskr dis5kun 5diskut dis2p dis5par 1dispo 3dispu dis8ta 7distansa 7distanse. 7distansen 7distanser. 1di2str di5tek di7val 1divis d1ja dje1d dje1m d1jent dje3s dje7va d1jo d1k2 d3kar d5kjed d5kjel d4kjo d5komf d7komma d6kraftan d6kraftp d7krav. d7krave d7lad d1lag d3lak d1lam d1lang d1lap d1lau d3lav d5ledd dle3f dle3gat d7leggings. d3legi d1lei d5le6ka dlem2 dlems3t dle3va dli7la d7lina d3liv d1lo d1lu d9lufts. d1ly d8lysb d1l^^e6 d1l^^f8 d4l^^f8f dl^^f8nns6 d1l^^e5 d1ma d4mannsf d1me d9med d1mo dmor3t d2my d1m^^e5 d9m^^e5l. d9m^^e5ls. dm^^e5l3se d6m^^e5lss dn8a d9nak dnatt4 d9nese d5niv d7no d9ny d1n^^e6 d1n^^f8 1dob do5ba 8dobbeh do9blan do3d^^f8 do7ef d3off d5ofr dog2 do5ger dogme5s do7ir dok2 8doks 1doku do5led do3list d2oljef doll4 do7lok do4l^^e6 1domin d1om8l d7omn d6omr^^e5des dom2s doms9a doms1k doms1l doms1p doms3te 3domsto doms3tr do6mu 8don. 8done don3f 7donin 6donnan don3se dont6 don3tu do3or d5oper do3pl do7po d1opp 6dor d1ord dord7b d1org dorg7s d5orm do3rop dor9st do1ru 1doser 9doses do7sl d7oste do7teg 7dotn do1tr 1dott do7t^^f8 d1ov4 d2overb 4dow d1p d6plana d6polk dpuls2 d3pum dp^^e58 dr2 d5raf 7dragningene 7dragninger 7dragnings. 6dragss dra4k 1drakt dral7s 1drap. 7drapa 1drape d1rapp 5draps drar7d drar5m 8dre. dre1ak dre6as 6dred drede6 dre3del dre7dr d3reds 9dreia. 9dreiar 3dreie drein7g 3dreini 6dreinings 9dreinings. d1reis 2drek d7rekk drekke7 dre1l^^f8 dre1m 5drepen dre7pri dre1sp dre5sti dre9tala dre9tale d1retn dre5to dre7tr drett8 dretts3 4drettso dre7val d2rif 4driftsf 1drikk 4drikkg drik7st d9rikt dring6 d5ringt drit7tr d6rocka drok8 d7rokk 2drom 1dronn d2ros dro7st d1rov6 9drua 3drue 3druk d1rul drulle4 d9rustningene d7rustninger d1rut d9rykka. d9rykket d3rykki d9rykks. d1rykn 5dryp 5drys dr^^f86 1dr^^f8m d1r^^f8r d7r^^f8t d1r^^e5d 1dr^^e5p 4ds ds1ad d3sak. d5saka d1sake ds1aks d9saks. d1sal ds3alf ds1an ds1ar ds1as d1sat d5saum ds5be ds2byt ds5dags. dse8 ds5ede ds1ef ds1ei ds3ela dsel5l dsels3a ds1em ds7enda d7sendi ds1eng d1senk ds1ep ds7erk ds5esk ds5est ds3eta d9sett. d7setting. d9settinga d9settings. ds1ev ds4falls ds2gi ds2gjev ds3ho ds1i ds2id d3side ds5ident d8sideo d1sik dsikte2 d9sir d2sjo ds5kab ds1kan ds3kar dskille4 ds9kin ds3kjen ds8kjo ds1ko d5skole ds6kraftt d7skrift. d9skrifta d5skrifte d6skrifts ds3krim ds3kro d7skr^^e5 d3skud ds3kum ds1kv ds3lag. ds3lage d2slags ds5lags. ds5lan ds7lau ds7lef ds1lei ds7lik ds5livsk d9s8lott. d5slyn ds5mannsl ds2mil ds8moder ds1n ds1o d7sog d7sok dsommar7d dsopp6 ds5os d7sot dsover7t ds1pa ds1pe d5spei d3spek d1spel d1spi ds4plank ds6plasst dspor4 ds5pot ds4prisu d5spur ds1s2 dssammen7s ds7se ds2skog ds2skr dst2 d2stad d8stak ds7takar. ds5taker. ds1tal d1stas d1stat d7stau d8steg d8steik ds3temp ds3tend ds3term d1stig d3stik d5stilli ds1tim ds1tin d7stof d1stor d7stover ds3trad ds1tre d1stri d8str^^f8mo d7stua d4stub ds1tun ds1tv d1sty d1st^^e5 ds1u d1sum ds5ut ds1v dsverd8 ds8verksi ds2vet d3svor ds8vot d1sy d5s^^e6 ds1^^f8 d1s^^f8m d7s^^f8rl 6dt d5takk d1tal dtals8m d1tan d1tap dtariff4 d7tarma d3tarme dt7by. dt7bygd. dt5bygde dt6b^^f8 d1teg dt5eid d6tekne d1tel d7terr dte2s dt6hu d1ti d2tids d5tids. dtil4 d1t8j dt1n d1tr d8trykkf d6trykkse d6trykksf dt1si dt1sk dt5sl dt3son dt1sp dt3sti dt9stoppar. dt6su dt3ti dt5tr d1tu d1ty d1t^^f8r due3s 5dugl 3dugn 3duk. 1duke 7duks. dum8p dums2 dunder8s 1duo d3upk d7urei dur8h duse8 dus3h dus3l dus5n dus5s4 6d1ut d7vanle dvann2 dvar8 d7vask d4vegp d6vegs d1vei d6vektt d7vel dver2 d5verge. d7verget d7verki dverne4 d6versd dve6s d1vesk d4vestk dvest7la d2vet d1vev d1vil dvin6 d7vina d3vine dvirke5m d6visjonsp d6visjonss d1vu d2v^^e6rsd d4v^^e6rsp d1v^^e5 dy7bl dy8fl 1dykk 4dykkeru 6dykkf dy7li 1dyn d5ynk dy2p dyp5r dyp1s dy6r 3dyr. 2dyral 6dyrau 8dyrav dyre1m 8dyrer 2dyrf 4dyr7h 3dyrkar 1dyrki 4dyr7kj dyr7l 8dyr5m 4dyrn 2dyro 6dyrp 2dyr1s 5dyrs. dyr3u dys8 3dyss d1yte d^^e6r5s 1d^^f8d d^^f8ds1 d^^f8ds7t d5^^f8kn d3^^f8ks 9d^^f8ma 7d^^f8mma 1d^^f8n d^^f8r3b d^^f8r1h d^^f8r3ka d5^^f8rke d^^f8r3kl d^^f8r3r 4d^^f8rsp d^^f8r3sti d^^f8r3te d3^^f8st. d7^^f8ste d5^^f8str 1d^^f8t 6d^^f8ves d7^^f8vl d1^^f8y. 7d^^f8yp 1d^^e5d d^^e59dyra. d^^e55dyre 1d^^e5p 3d^^e5rl d1^^e5rs e1ad e1af eakk2 e1akti ealba4 eal2br eal1ka eal5me eal6skolee eals5l eal5ti eal1v e3aman eam3ar e5amn e1an e1ap e1ar e2ara e8ars ear7sp eas7k e3asp e3ass eat2 e5atel e1att eau4 e5aug eauge8 e7aur e1av2 e9avl. e9avle e1b6 e3ball. e5ballen e7baller e2bankf e4bankl e4bankv e5barte e6beinar e4beins e9beins. ebe5mi e2bens ebens5k e8bere. eber7r eber1s e7besl ebet3s ebil3ei e4billa e2biln e8bilv ebispe4s ebo6k e6bokh e8boligo e4boligp e2bords e5bords. ebort4 e5bry e8bustadp e2buta ebygg8 e7byggings. e7byggje eby8s e2b^^e6rb e8b^^e6rk e4b^^f8. e3b^^f8rs. e5b^^f8rse e4b^^e5tf e8b^^e5tl e2b^^e5tr eca5 e6cha e1chi ec3l e3com ed4ag edag8s e5dags. e5dagsa e6dah e1dam e1dann e6dansi ed1arv edata8b ed1b ed9bru ed2b^^f8 ed5b^^f8k edde8la 3eddik ed1do edd5se edd7sk edd3sp ed8dyr e1deba ede2f ede3fo ed7ege ed1ei e3dekor e1del. e3dela e3delen e5deler e3delin edel2p e3dels. e1delt ede5mol eden7g e1dep e6depe e6depr eder7ho edes3l ed7ett ed7gangs. ed1ge ed1gi ed7gje ed1h edi2 edia5ter ed1id edig3g ed1in e1dip e7dis. e1div e5djup ed9kjend ed5komst. ed5komste ed1la ed6leggings ed1m e1dok edo5l e2d1op ed1or e1dos ed5p e3drau ed9roa edsammen5 ed9set. ed1sid ed1sj ed7ski eds4la ed7slags. ed7stadene ed7stader ed5stads. eds5trak e7dua e1due e9duf e1dukk e7dunk e7dup ed1ve ed3vo ed7v^^e6 e1dyk edy5s e3d^^f8d ed^^f8ds4 e5d^^f8mmen e3d8^^f8r eedo5 e1ef eefter2 e1e6g e1ei e5eini e9einings. e1ek e1el e1em e9endr e3ener e1eng e1enh e7enig e3enk e3ense eens9l e1ent ee2p e1erfa e1erk eer3u e3esk e1ess eet8 e3eta e3ete e1eti e3ett eetter2 e7ety e1eu e1ev ee5var e1fa e3fab e5fagu efals3 efe2 e9fe. ef7ea ef5ef e1fel e7felt. e1fem 1effek ef3fo ef3h 8e1fi e8filmm 6e1fl ef1leg e3fly efly4r e7fob e5foldig. e5foldige efon3n efor6 e3forh e9formasjons. e3fot e8f^^f4ra e1fr e5fronte efr^^e56v ef2s1p efs1s ef8sto ef6str 8eft. efta3s eft3f eft1s efyr8 e1f^^f8 e3f^^f8d e8f^^f8lgel e3f^^f8r e1gam e3gang. e5ganga e3gange e4gangs e5gangs. e3garn e9gassane e9gassar e3gasse eg7dag eg9del eg6ei e2gel ege3lis egen7o egen7r egen3si 3egensk ege1s eg4fr egg1d eg1gje egg1l egi3as e3gift. e9gifta e3gifte egi5sp e1gjen8 e3gjerd e1glad e4gladh e1gled egle4sa egle4spr e9glit e5glu e9gnag egn7da 7egoi e7gong. e5gonge e5gongs. e7grads. egrense6s e1gru eg7sal egs8am eg1sj egs2pa eg5stan eg2traf e3gub e3gud e3gum eg1ve e1g^^e5 e6g^^e5s e1hal ehalds5 e5ham. ehand4 e3hank e3has e5havenes e8haversk e3havn e1he e5heim. e9heims. e4helsep ehjelpe8 e5hug e1hul e2husf ehus1k e2husm e4hvalb ehval3f e7hy e1h^^e5 eh^^e5nd4 e4h^^e5ndsa e4h^^e5ndsk eiar5t ei1b eica3 e9id^^e9 6eidf e1idr eids3tj eids5to eier1a 3eierb 4eierd eier5k 6eieru eier3v ei1fi ei3fl eif3t eig2a 3eigara 5eigare 6eigarfore ei3gat eig6e 3eigedo eige5l 5eigensk eig5la ei8kas eike1r ei5kon ei1kr 2eil eil7bu eil5egg eil1f eil1g eil3k eil1m eil5op eil1p eil1s6 eil7st eil1ta eil7ten eil5tes eil9top eil3tri eil1v ei7l^^f8 e5imag eim5al eime3s eim9ett ei3mid eim1la eim5r eim7se eim5stad. ein5alt ein7dre e1indu ein5fil ein5fol ein9gjer. ein7gjo e2ini 6einings e3inkar ein5kl e1inn8 ein7nes ein3sen ein5sett ein7skr eins1l ein5stem ein7stra ein7stre e3inter ein3tr ein3u ein5^^f8 ei7or eip3s ei7pu ei8p^^e5 2eir eir9ak eir5k eir5l eir5m ei7rog eir3r eir1s eir5va eir7vel 4eis eis3aks eise3m ei5se8so ei1sj ei1ski ei8s1kj eis5ko eiso5a eis3se eis3tak eist8l ei7tei eite1r ei1tra eitt2b eit9^^f8 ei3vis ei7vo eiv3sp ei6^^e5 e1j ejul8 2e1ka ekams7 ekart6 e5karu ek7b ek2da eke6bl e1kee ek3ei eke8n eke1s ek3etab e1kil ekilo8 e7kim ekinn8 e5kiste e1kj e9kj^^f8nn. ekj^^f8p2 2ekk ekk9ist ekk3ord e6klasseo e1klo e3kly e3kl^^e6 e1kl^^f8 ek2ma ek7m^^e5 e1knek e1knu e5kny e7kn^^f8 e1ko e7kole e3komp e3kon e3kop ekord5b ekord3s ekor5m e4kostp eko5v 2ekr e5kraft. e7krafta. e5krafte e1krat e8kre. e3kred e1kren ekrets6 e5krev e1kri ekrins8 e1kro e2kru e7krus e3kr^^e5 ek5r^^e5d 1eksa eks2ak 6eksan 1eksem 2eksen eks2k eks3ka 1eksos 1eks2p eks7par ek2s2t 8eksta 6ekste ek7stel ekst5op 3ekstra ek3sty ekst3^^e5 ekt7arm ek3teg 5ektepar ekte5sta ekt3l 2ekto ektor7n ekts1p e1ku e3kup e2kus e7kvar. ek9vara ek5vare ek3ved e1kvin 1ekviv e3kvo e1kyll e3kyn e5kyt e1k^^f8 e5k^^e5l e1k^^e5p e3k^^e5r. e7k^^e5ra e5k^^e5re e5k^^e5rs. 2ela8 el5aften. elag2 el1ak e5lake e1lam 8elan e9landa e3lande e4lande. eland2m e1lang el1anl e1lap 8elar elar7m el7arti e3larv el5ato el7atr e1lau e4laupss e7laus el1avs el1b el5bel el1c eld1g eld7l eld8s7e el7dy e1led eledd8 ele7gal eleg7ha e1lei el3eier el7eigar e3lekto ele8leg 3e2lem e1leng el5enh elens3 ele5pe el7erg e3lerk ele3sen ele7sku ele5sl e8leva ele3vis e5l^^ea el7fanga el7fat el1fel el5fr el3fu el1f^^f8 el4ge elg1s2 el1hen el1hu el3h^^f8 e1lid 4elig e1liga e1lign e9lik. e3like6 e3likh e1likn e1lil el1ind e3line. e4linjes el3inte e9lista. e5liste. e3litu e1live el1ka elke5t el3kis el3kj el3kl el1kn el1ko el7kor el1ku el3kv 2ell ell6ar ell3by el6legi ell3eie elles7k elles5ti ell7f 7ellip ell1m ell5s8l ell3sn ell1sp ell5sv el1lys el7l^^e6g el3l^^f8s el3l^^e5 el1m el2mak elm6o elm2s el5n^^e6 el3n^^f8 e4lob e1lof e5logi e1lok e1lomm el5omn el1oms el1op el1or el1ost e3lovs. el3pad el3pal elpe1t el4prisu el8rak el9r^^f8 el3sag 2else el9setjings. el5setn el5sette el7settinga el9settingsforh el1sid els3kal 7elskan el3skje els7kor el5skot el3skud el6sk^^e5 els1la el5stad els5tim els1tj el1str el3st^^e5 el1sy els3^^f8k 2elt el1tal elt1d elte3g el5tent el1tra elt7r^^f8y el5tr^^e5 el1tur elt1v e3lua e1lue e3luf e5lug e3lukt el5ung e7lup e5lus elv1an el8vas elv5d el8v7erv el5vok el1v^^e6 e1ly el5ynd elys8b e1l^^e6 el^^e6r8 e8l^^e6rarfo e6l^^e6rerfo el9^^e6rv e6l^^e6t e1l^^f8f el3^^f8r e3l^^f8v el3^^f8y. el^^f8y7var el5^^e5ri e1l^^e5t ema1da ema2f e1mag 5e4malj e2mana e3mann. e5manns. e7mannsbol e6mannsfore e1mar em3arb e4mari e1mas e3maski e6maskinp ema7sku e7mat. e1mate em2au ema3uk 1embal 1embed 1embet em3bru 6emd em9del 4eme2 e1med2 em7ef e1meg e5mei e1mek e1mel e7mell em5els emen6b e8mene e1menn emer8k e1mes e7metrisk em7etter em1f em7gangene em7gangs. em9gi em5g^^e5 em1h e8middeli e6middels e2mik e1mil emilli8 2emin emi3tr 8emj em8kommelighets em1la emle4 emleie3 em7leie. em7leien em9leier em5mile em7m^^f8teti 8emnd e3mob e1moge emo1gr emo5ka e3mor. e1more emot4 e7moti emp2 empe7ri em5plan em2po empo1s em7sat ems3ju em5skre em5skrivi em7sku em7stille em9stillinga em9stillingene em9stillinger em9stillings. em7stor ems3u em1sy em7tal emte1g em6ten em6tre em8tr^^e5 em5tv e1mu e3mug e4mule em1v em8^^f8y em^^e5l2 e2m^^e5ls e3m^^e5ls. em1^^e5r 4en. e5nag en3ak enal2 en3all e1nam en3ant en3ass e4natts en1avi en1b en3dag en5dans end5arb ende7lag ende2l^^f8 ende3pa 7endepu endis3t 1endr 2endre en5drek end3set end5st endt5la end3v en1dy 2ene e6ne. ened4 e5neds en3egg e3nell e1nem en5eng 5energi. 7energibyr^^e5s 5energie 9energis 5energiv ener5st ene1se e3nesl ene5ten ene2tr e1nett en1f en3fl en4forl enfor5st en5gam 1engas 4engass enger3s enger5u enge7v eng7k eng5led eng3li engress6 engros3 engs4e engs2l eng5so engs2t eng5^^e5 en1ha 6enhj eni3fo 8enighets en1inn eni3str en1ka en6kar. en7kil en5kis en9kj^^f8p. en1kr en1ku en7ledere en7ledern en9leders en9lev en6l^^e6rt en1l^^f8 en5mo 4enn en9nag enn7d ennes5v enn5f enn7g ennis3m enn1k enn2o enn7r enns3l enn3t enn1v eno6f en3ok e3nomi en1op e1norg e1not en2p^^e5 en3rin en1ro 2ens 6ens. ens5af en9saka en5saken en1sam 3ensemb en5sent en1sl^^e5 en7sopt en5sort en7spra ens5tak ens7tal ens3tes enst4r en5svar ens3^^f8k ent3and en7tegn en5tenest ente7sta enti4k en5tild en1tje en3tog ent1or en3tref en4tro en5tro. en5troe ent3rol ent7r^^e5d. ent9r^^e5de 3entus en1t^^f8 en7ul e1num en5un en5ur en1va en3v^^e6 eny1b eny5s e1n^^e6 e1n^^f8t en3^^f8v e1n^^f8y e1o eo1bi eo1di eo5d^^f8 eo1fi eo5gram. eo5gramm eo1in e2o1k eo5kro e3oks e2ol e3olj eom8 eo1ma e3onk eons4d eo1o eo7pl eopp8 eo9pr eore8 e2ori eori5d eo5rom e2os eo7sek eo1sp eo7to eo1u eover2 ep4 e3pak e1pap e3pas e2pati e1ped e6pengeg eper4b e1perm eper3re epi2 1epid e1pik e3pine. e5pinen e7piner e1pinn 1episo e1pl e2ple e7pleia. e6pliktr epo2 e7pog 1epoke e5pop e3post eppen8 epp3h e5presi e4prisav e3pro e3pr^^f8 eps1k eps7lu eps1p eps1t e1psy e1pul e1pun e1pus e3putt. e9puttan e9puttar e3putte e1py e1p^^f8 ep^^e56 2er. era3bal e3rac e7radar e1radi era1el er1aft era5kar e1rake era7kl er1aks er1akt eral9t era3man e3ramp e8rand e7rangl er5apin er1apo er1arm e5rasane e5rasar e1rase era3sel e7rasi er1ass era3tr er5att er7aus erav2 era1ve er1avh er5avl e3ravn er1avs era3w er1b er3bat er3bin er8ble er5bruk. er7bruken er6byggings er3dale er5deler erdi1o erdi1s erdi1t er1d4r erds1t er1du er1dy er1d^^f8 8ere e1rea e1reda e7redd er1eff er3eft er3egen e3regu e1rei er1eie e7reka e3reke e1rekk er3ekte e1rela er1ele er1emn ere7mu er5enden er5enh e1renn e1re4p er3erf ere3sen er5ess. e9resta er3esti ere7st^^e5 er1eta e6retnings e3rett. erett4s e5retts. e8rettsd e6rettsh e5rettsl e8rettslei ere4tu e1revi er1evn e1revo er5fan 3erfari er1fe er5fj erfly3p er3fol 6erfr er7f^^f8t erg5elv ergi3f er7gj er1gl er4gravs er2grun er5grunn. erg1s er1gu er7gud er1g^^e5 er5hag er9ham er1han er1hei er1hen er1h^^e5 2eri e8ri. e1ribb eri3bl eri3del e5ridn e4rie eri5ent eri2fe erika5t e5rill eri1mi e5ringi e7ringj er3inns er1ins er1int eri3son eri5stil eri5sto e3ritua eriv8 eri3var eri5vi er5ju er1ka er2kar. erke2m erke8mi erke9midle erke5te erk7ett erke7ty er5kil er3kjev er1kla er3kle 1erkl^^e6 er1ko er2kop 2erkr er1k^^f8y er5lagsd er5lagsm er7lagss er3late er9latn er5latt. er5latte. er3legn er1lei erle9st er3lign er1lik er1lo er5mag er1mak er5mate er1med er3menn er3merk er1mes er1mid er1mor er1m^^e5 erna7la er1nas ern1d erne9bu er3nese er5nett. ern3sal ern3son ero2b 5erobr er1off e1rogn ero2i e1roll e1rom er5omk e3roms. er7ond er1op e5rop. e7ropa e5ropet er1or e3rore e7rosa 3erosj e1rot er1pl er3por er1pu er7rad er8ran er7rekt erre1l er3rent er5rog err7s er7rup er5r^^f8 6ers. er1sa er1sel er3send er5sete er5sett. er7settinge 4ersj er1ski er1skj er3skol er9skots. er9skotts. er3skre er5skriv er3skut er1sky er7slags. ers6led ers4mi ers3m^^e5 er5sne er1sni er3somm er7sot ers4ov er1spo er3spra er3stas 5erstatn er3sted er5stem er1sti ers3tro er2stun er1sty er3st^^e5 er1sun er1sv ers4ven er3synt er3s^^f8m er8ta. er3tab er8tals er3tap er3term erte1s ert2i4 er9tida er3till er1tit er1tj er5tje er3tog er5tol er5tom er1ton er1tr ert5rol ert7st ert1t er7tun er1tur er1ty er5t^^e5 eru8 erud3 e1rui er1uk er7ulk e3rump er1ung er1ur e3ruta e1rute er3utn er5vanne er5vett er1vil er1vol ervs1 er1v^^e6 er1w e3ryd e6ryddings e1ryg er1yr e1rys e1ryt e1r^^f8k er1^^f8l er3^^f8n er^^f8r2 e5r^^f8r. e5r^^f8ret e5r^^f8rs. e3r^^f8rsl e1r^^f8t er5^^f8y. er5^^f8ya e3r^^f8yst e1r^^e58 e8r^^e5. er^^e5d5m e9r^^e5ds. e8r^^e5dso er3^^e5le e2r1^^e5n er3^^e5p er1^^e5r er^^e5rs2 er3^^e5se er7^^e5ta e8r^^e5v 8es. e1sa es3aksj e6same. esammen4 e4sangf es3ant esar7re es7byl es4b^^f8. e9segl. e7seil e1sek e1sel esels6 e1seng e3seni e2sens e3sentr esentral6 e8sep e2sere e5serien e5serier es1erk eses2 ese3sl e9setj es8fagl^^e6ra es3fo e1sho e6sie e6sildf es1ill es1ins e1sje e4sjefst es3jor e1sju e7sj^^f88 e8ska. e7skard e3skei e1ski e6skillere e6skinnst e6skins eski8t e5skje. e8skjer. e7skli e3skole e4skolel e7skot es7krins. es7krinsa es9krinse e7skru e3skud es2ky eskyrkje6 es8lags e6slagsk eslags4m es5last es3lau es7lega e3slett es5ligg es1liv es5lun es7mid es1of e3soli e3somm e7sona. e1sone e3sorg. e9sorga. e5sorge es1ori e1sort e1sos e5spann. e7spanne es3part e2s3pas espe5dale e5spell e5spill. e7spilla e7spillen e5spillet es8planp espor2 e7sport. e7sporte e7sports. e3spray es1pun es3re esrett6 esr^^e5d5m es1sak es7sang ess3enk esse3p esse1s ess2he es8sin ess3ja es2skad es7skaden. es7skadene. es7skadenes es9skadens es7skader. es7skadet. es7sol es7son ess1pa ess7tem ess5tor ess9tua ess5tue ess1va 8est. e5stade esta8fo es7takt es9tal. e3stang e2stap e6star. e3start e1stat estav6 est5avs e7steins. es5temp e7steng e2stens est1ho est4hus es5tid e5stila e3stile 5estimat e2stiv e1stj es3tjen est2ka est8leg e1stof e1stok e3stol. e5stola e3stole e5stopp. est3ord es5trak es6trekn e8strekt es3trib est2spe est6spil e1stu es7tved e9styra. e6styrep e5styret 8est^^e5 e5sug e1sum e5sundag es7ut es3vars e5svek esverd8 e3svikt es7vis e1sy esyke3p e1s^^e6 e1s^^f8kn e5s^^f8m 8et. e6ta. e1tabe et6af eta2fo e7tagi etals8ma eta8n et5anen e3tange e5tant eta3o e7tapa 1etapp 3etasje e3task e5tast 1etat 6etati e5tato 2etatt et3aun eta5ve et3ba. et5ball. et5balla et5balle et7ballig et7balls. et7ballspi et7br et4b^^e5nds et7d e1tea ete2e e9tei e8tekne e1teks e1tel e1tem e5tenest e5teng e3teno e8tens e1tep ete3rad e5terap eter7v e1tett et1g eti2 e1tid e1til2 e1tim e6times e5tip etis2 e3ti^^e5 8etj et3j^^f8 8etl etnings5 2eto e1toa eto8f e5tog e1tolk eto7me e1top eto3re e2tos eto5t e5trad e1tref e2trel et3rest etre5v etro1s etro5v e4trygdl e1tr^^e5 8ets1 et2sc etse8m et8sl ets8leg etslov6 et1sol et1spi ets5v et2t ett3alt etter5ap etter5at 7etterk 3etterr ett3esk ett3f^^f8 2etti etti7a ett5led et8to etto5re ett3ref ett7rek et5try ett5sind etts3pa ett3spi ett8var ett2vis e1tu 3etui et3va et5verk e7tvist. e7tvista e5tviste e1tydi ety5f e6typi e7t^^f8m e3t^^f8n e1t^^f8r e7t^^f8s et4^^f8y e1t^^e5 eu2 e5ug e1uk euke4 e1ul eum2 e1un eunder8 e5uo eup5a 1eur 2eur. 4eure2 2euri euro5v e1ut eute8 e3uts ev3akti e2vaktl e4vaktt e9vald. e7valde e9valds. e1valg e4valgpr eval9k 1e2valu 2e3valut 1evang e1vann e2vanns evann7st ev6ans e2varea e4varee e4vareg e7varsl e1vas e3vedt e5vegen. eve9gl eve7gre e1vei e2veis e3veis. eve2n 3eventy eve3ny e1verd e4verds e7verds. e3verf e1verk e7verm e6vernr ever7p eve3sl eve3sta eve6ta eve7tek ev1g e3vilj evin2 e7vinen e7viner evin8k e1vir e1vite ev3k ev2m 6evnetapsp evn3s ev1ord e3vot ev7p ev1s ev2so evs8v ev9tal. ev9tala ev9tale e3vu e4v3un e5vyrk e1v^^e5p ey4bo e3yd ey5i ey1k ey1l ey1m e1yng e1yr ey1s e1yt e7yti ey1tr ey9v e1^^e6t e1^^f8 e1^^e5 e^^e5rs4v ^^e91a ^^e91b ^^e91d ^^e91f ^^e91h ^^e9hand6k ^^e91i ^^e91k ^^e91l ^^e98let ^^e91m ^^e9n3er ^^e97n^^e6 ^^e93o ^^e91p ^^e91s ^^e91v ^^e95^^e5 ^^e8re1d ^^e8re1k ^^e8re7m ^^e8re3ner ^^e8re3p ^^e8re3s 2fa. 1fab 2fabe fa2e 1fag fag1a fag1d fag5eti fag1g 2fagh fag1i 4faglin 6fagl^^e6reru 6fagp 3fags. 2fagse fag5sku 4fagso 2fagss 2fag1st 4fag1t 2fag1u 2fai fak8 6faksn fal2 fal9h 8falkh 6falkp 6falku 6fallsb 6fallsf falls3l 4fallsm 4falls3p 2fallss 8fall^^f8 4falo 1fam 2fane 5fangara 9fangare 7fangarf 3fanger 4fangerb 6fangerse fang6s fangs2t 5fangst. 7fangsta 5fangste fangst5ev 8fangstf 4fangstk 4fangstp 4fangstr 8fangsts 9fangsts. 2f3ank f3anl fann6 fan3sk fan6t fare3s 1farg farge3l far3mo far4st far4t2 1fart. 3farts. 3fart^^f8 1farv far8van 8farveg 2farvei fas8 1fast 8fati fav4 f5avh f1b f1d fe1a fe7ak fe9al. fe7ala fe7ale fe5ba fe1do fe5dy fe1d^^f8 fefter4 fe1g4 6fe3h 1fei 8feil1d feile2 feil5l 2fek 4fektera fekt9esk fe7lar 2feld 6felem 6felep 2fele1s 8felet fel1j felle2s fel7l^^e6 fel5ok fe2lovk fel7ste felt7a 3feltet 4feltm 2feltsv fem1d fem3p fem7s femti3 fem9tida fem1^^f8 fen2 6fene feng3h feng4s fen3l fe1p 6fera fe1ram ferd5skr 2fere fer3ers fe3rett 8fer^^e9 4fergep 1ferie 7ferj fer3l fer3ma 8fern fer5n^^e6 fer2r fers8 fer7skr fer1so fer3st fe1ru fe1si fe1sk 6fe1sp feste5rem 1festi fest3r 4festu fest9^^f8 fe3tol fet5or fe1tr fetter2 fett5j fett7s fe7ut fe7va fe7vei 4f2f f6fa ff5ak ff5arb ff2ba ffe1dr ffe5e ffe1m ffe5ras ffer7r ffe3se ffe1sl ffe9sto f8fi ffi7l ff5int ff7lag ff1n ff5res ff3ret ff3r^^f8 ff5ser ff5sl ff3so ff1t2 f5fug ff7ur ff5ut ffysio5 f1gr 2fi. fia1b fia5d fia7g fia3k fia1l fia7li fia7st 7fiber. 9fibere 4fiberp 2fibers 2fic 2fid 6fieldm fien4d fie2s fig4 fille5r fil2m 4filmd 2filmf 4filmk 8filmn 6filmpros 4filmr 3filo fil1s fil3v fin4a 7finala 5finale. 4finalem 5finalen 6finaleo 5finaler 4finalet 3finali 3finan 8finane 2finar fin5art 8finb 2find 2fine4 fin3f 4fingerr fin3gi 2fini 8fin2l finn2 finn3b 6finnelsesd fin3o 2f1ins2 fin3sl fin3ste fin3sti fin3tel finte5s 4fintr fin7ve 3fio fir2 fir4d fire1d fire3l fire3s fis8 2fise fisk7ad 2fiskan fisk7and 5fiskane fisk5art 4fiskels 4fisketr 6fiskf fisk3l 6fiskm 6fiskn 2fiskp 6fisksa 2fiskt fi1te fi3tim fitt3s fi7ty 1fj6 2fja fje2 f1jeg 7fjelle f7jen 2fjord5b 6fjordei 4fjordf 6fjordh 6fjordo 6fjordr 4fjordsm f3ju fj^^e6re3s fj^^f82 fj^^f8re7s fj^^f8s7k f1k fl2 fla2 8flabbp fla7be 3flagg 5flatem 2fleg f2le8i 7flekk. 3flekke 2flekt 8flere flett5v f1lev 5flid. 5flide 5flids. 3flidsf 7flidsutsalg flis3l flis7ta 9flit. 9flite 9flits. f9liv 1flo 8flodsl 4flodss flok8 flopp9s flor5m flos8 flu5b flue1s 1fly. 9fly1a 1flye 1flyg 5flyk fly1r fly1s fly1ti 4flytr 9flytt. 7flytta 9flytte. 9flytted 9flytter 9flyttes 9flyttet 7flyttings. 8flyttingsh 8flyttingsp 6flyttingsr 6flyttingst 7flyttn 4flyu f3l^^f8n fl^^f8y7s 1fl^^e5 f1m fmot4 fn8 1fo 2fo. 2fob fo5f fog8 2fogdem 6fogdk 2foi fol2 2fold fo3led 2folkb 8folkg 4folkh 6folkm 8folksn 6folkt 4fon. 6fondk 4fondsi 2fone 4foni 4fonk fon7l fon1s4 fon3tak fon1tr fon1v f1op fo2r2 fo5ram 3forb for3ban for5berg for4br 2ford. for5dan 8fordk 4fords fore3gi 9foreinings. 6foreldreg 7foreninge 7forenings. 6foreningsp 6foreningst 8forer fore2s for3ess fore4t for6far for3fo for7fra forg8 for8gru for8hal for7inn for5kan for8kj^^f8p for8lau for6lo for8l^^f8ys 6formannsj 6formar 8formasjons 5formate for6mo forne8 for7ra for7ro 4fors. for5san 3for8sen 6forsh for7song for8ste 7forsvars. 7forsvarsk 3fors^^f8 6fors^^f8rgerf 6fors^^f8rgerp 9fors^^f8rgjar. 9fors^^f8rgjare for7tala for5tale fort8e for5tek 5fortel for5tett for8ti fort8v for8^^e5re fos2 8fosa 2fose fo3sta foto1k foto3l foto5m foto7r fot1s fot5s6k fots8v fot1t f1ov 1f^^f4 3f^^f4r. 5f^^f4rbl 5f^^f4re 6f^^f4rp f1p fr2 fra8m fram5b fram5ma fram3p fram3se 5framsy fran2k fra9r8 fra7sep fra9si. fra7sp fra8v fre6 freds7l f6rek frem5b frem3se frem5si frem5sl f1rep f1rev 2friel 8frien fri2i fri7ne fri3p fris8 6fris. fri7sin fri5so fri3sp fri5stil 4fristl 6fristp fri1te fri9tera fri7tere fri5tim fri1v fro7f fron8 3front. fro8s6 fru3b 8frues 9frues. fru7g fru5l 6frum fru1t 6frydp 3fryk f1ryt fr^^f85b fr^^f83ka fr^^f85v fr^^e53r fr^^e57te 4fs f3sekr f7sendi f1sik f5skifte. f5skiftet f3sku f1sky fs3le fsne8 f1sp f1st fs7tan f1sy f7s^^f8 4ft fta7f ft1ak fta1la ft3alg ft1am fta3mi ft1anl ft1av2 ft1b fte1g ft5eini ft3enh ften2p ften1s ften3t fter3a fte3rik fte3rin ft5ett ft2fa ft5fart. ft5farte ft1g ft1h f7til ft3is ft1l ft1o ft2pu ft1r fts1 ft5sendi ft3seri ft3s2lan fts3le ft7snit ft8som ft5sort fts2por ft3spr^^f8 ft3sted ft1sto ft1t ft1u ft7vege ft6verkst ft1vi fu6 4fugl5art 8fugld 8fugl7eg 4fugll 8fuglr 4fuglv 1ful 6fulh full8pr 1funk funns1 fur8 fure8 furu3k f1v 1fy fy8k fyl8 2fym fyr3m fy5sa 2fyse 2fyt 2f^^e6 f^^e6r2 f^^e6re5s 1f^^f8d f^^f8de3k 8f^^f8dere f^^f8de1s 2f^^f8dta 4f^^f8dtm 6f^^f8dtp 2f1^^f8k f^^f8l2 1f^^f8le 6f^^f8lgjek 9f^^f8lings. 3f^^f8ls 7f^^f8ra. 4f^^f8rarf 8f^^f8rark 8f^^f8rarp f^^f8re2bu 5f^^f8rek 3f^^f8rem 2f^^f8rerb 4f^^f8rerek 2f^^f8rerf 4f^^f8rerp 6f^^f8reru 5f^^f8rest 6f^^f8ringse f^^f8r4la f^^f8r7sp f^^f8r6ti f^^e55t 8ga. 2gaa g2ab ga5bal ga3c ga9dj 4gae ga9ga ga3gu ga5h g1aks g5akt ga3led 1galle g1alli gal7me gal2o ga1mes gand2 ganda3t gan5do 8gane gan8g gang7j 2gangso 2gangs^^f8 gang5t g3ank g1anl gan5set 5gap. 3gape gap5l gap1s2 4gar. gara7f 5garant g1arb 1gard 2gardek 8gardel 6gardem 4gardet 8gardsg 4gardsk 4gardsm 6gardsv gar5es gar7la 6garnsfo gar1re gar7sa gar7tal g7artenes 3gartn gart7sla ga7ses ga5sp gas8s 1gass. gass5ett 6gassp ga5sto 6gatep gate3s 4gatesk 8gati ga5ton gat7s g2a8u 3gauk 8gaveb 8gaves 4gavet 4gavev g1avs gav6v g1b g2bar gbok5f g5bruk. g3bruke g7bruksmes g1c g1dag g7dags. g3dale g5dam g1dan gdar7 g9dat g4dekkj gde7kr gde1la gde7l^^f8p. gde5l^^f8pa gde7l^^f8pe gde1r gdere2 gde1s gd5m gd1or g1dr gd7v g1d^^f8 g8d^^f8y gd7^^f8ya 8ge. ge1a ge4ark ge5ba ge7ben ge2bret ge2bri 1ge2by ge1da gedag4 ge3del ge1dr ge1dy ge1d^^f8 ge1e ge1f ge5fa g5eft gefter4 ge1g g5egg ge1h gei2 g3eien g5eier. g3eiere g3eiern g7eiers g7eigar. ge1in 5geit geit3o geit3r ge1k8 g1eks ge1lag 3gelee gel6ei gel5ett 7gel^^e9 gel7fe gel7g gel7h gel3l ge1lo gels2 gelse2 gel3set gel5si gel3sta gel1t ge3lun gel1v gelve8 ge1l^^f8 ge1l^^e5 ge1ma ge7middele ge3midl g5emn ge5mu ge1m^^e5 gen1a gen8am gen7del gen1di gen5du gene8 1gener 5genera gen3eti gen1g6 gen5h^^e5 gen5k gen1l gen1n ge2no gen8ran gen3ri gen7sinn 4gensk gen7skj gens3l gen3sol gen5spl gen1st gen3tim gen1tr gen1v ge5ny geo2 3geog 3geolo 3geome ge9ope geo3st ge1p ge3pl 4ger. ger7al ger3b ger5d^^f8 gere2 ge1red ge1ref ge1reg ge5rekn ge7rese ge3rett ger1f ger3g ger3ho geri3d ge9rika ge3rike 1geril ger1k ger9ka ger5ko g9erma. ger5mal ger3mu 6gern gerne2 ger3neg ger3nem ge5roa ge5rope ger1p ger3res ger6retts ger3ri gers5af ger3sko ger3sku ger3skv ger3sl ger1st ger1ta ger7teg ger3to ger1v ge1r^^f8r ger3^^f8v 6ger^^e5 ge1se ge1sid ge3sig ge3sja ge1sk ges7kra ge1sl ge1so ge7son ge1sp ges7s gesta7bl ge1sto ge1str gest5rid ge1su ge6s5vik. ge1s^^f8 ges8^^e5 ge1tak ge1tal ge5tatt ge3tene ge1ti ge1tj ge1to ge1tr get5si getter6 ge3tv ge7ty ge3t^^f8 ge5vare. ge5varen ge5varer ge1ve gev4i ge3vid ge5vik 1gevin ge7vip ge1vis ge7vitne. ge9vitnet g5evn ge1vo 4gev^^e6rs gey2 g1f6 g9fam g9fjell. g9fjella g7fjells. gflod6 g7fora g5ford g9foreining. g7foreininga g7forening. g9foreninga g7forr g5foru 2gg gg8an gg5ask g3gat gg1av gg2ba gg4dr gg1ei gge5m g7geni gger3l gges2 gge6s5l gge1st gge5s^^e5 gg7hu gg5im ggje5st gg3lar gg6li. gg5n gg3rad gg7rek g5gri gg1sen gg5s4par gg1t gg3ur gg1ve g1g^^e5 g2hai g6hams g5hes g1ho g5hug g1hus. g7husa g1huse gi1b gi1de gi1ek gie8n gi5ett 1giga gi5gi gi9ki 7gikten. 3gild gi1le gime5tr gi1mi 6gin g1ind ginn6 g1inns gi3no g1ins g1int gi5om gi1op gi3pa gi1pl gire6 gir1k gir2l 3giro. 7giroa 3giroe 5giros giro1t gis2 gi1sa gi1sel gi3sem gi1sen gi7ska gi1spa 6gist giste6 git8 1gitar gite8 gi5til 7gitter. 5gittere 6givernu 2gja g1jak gjar7t 2gje. gje3da gje7l^^f8 8gjene 8gjengarm 6gjengerm 5gjennomg 1gjens g1jent 1gjenv gjer4 gjer9^^f8 gjes2 gje7tr 7gj^^e9 1gjo 2g1ju 7gj^^f8d g1k2 g7kad g3kak g3kal g5kampa g3kan g3kar g5kass g5kast. g3kaste g5kat gl2a8 glade2 g1lag 8gland glands4b g5lang gl3arte glar7va 9glase glas3k glas3m glas5p 8glassf 4glassr 6glasv 7glat g1lau gl1b g5leie g9lending. g7lendinga g9lendinge g9lendings. g1leng gler3b gler7n^^e6 gle1s gle1v gl7f gl3g 1glid 1glim g5lina g3line 8g1liv gl5l g3lok gl1s gl5ung gl1v gly2 g5lyd glyse6 g7lysing. g5lysinge g7lysings. g7lysning. g7lysninge g7lysnings. g3lyst g1l^^e6 g1l^^f8f g1l^^f8nn g6l^^f8ns g1l^^f8p g5l^^f8v gl^^f8y8 gl7^^f8y. gl^^e58 g5l^^e5n. g9l^^e5na g3l^^e5ne g7l^^e5ns. g1m gmanns5 g7manns. g4mannsk g7mark g2mat g5mat. g3mate gmer8 gme5tr gmo5s 8gn. gn1ak gn1by gn1d gn2da gn6e gne5k g8ner gner5k gner7s gne3sen gne1st gn1f gn1h gn7he gning6 gni7sk gn5j gn1k gn1la gn5op gn7ov gn1r gn3sa gn1se gn3ski gn7skj gn3sku gn1sky gn5sla gn5sor gns2pr gn5sta gn7str gn1t2 gn1v g1n^^e6 g1n^^f8 1god god3art g3odd 6godsan 6godsau 2godsb 6godseig 4godsf 8godsi 8godsk 2godss 4godst 8godsu g3off 8goi gol2 1golv gom8 go7metris gon3s gon5t g1op gopp4 g8ora3 g1ord gord7b go7rek g1org g7orm. g7orma g5orme g5orv go3se go1te go3tr gover8 g1p g2peng g5penger g2planp g6planr g6prisings gr2 gr8a2 g3rab g7rac 4gradas 8graderb graf5t gral3l gram5b gram1e gram3i gram3l 7grammof gram1s gram1t gran3h gran3le 3gransk gran7to gran5tr gran8v gras3a gras5b gras5k gras3l gras3t gratis3 9grau 4graverb 6graverh 6gravings grav7l 7gravs. grav5t 2grea g1reak g5reds 4gree g5refe 2greg g1reis gre6ka 2grendt 8grenings 9grenings. grenn6 6grensest g3rent 2greps1 gres8 g1rett grev2 grie2 grind5h gro7bo gros3m 1gross g5rui 3grunnl 7grunnsdj 3grup g1rut g8rut. 3gruv 1gry 2g1ryd g5ryg 8gryns 9gryns. 1gr^^f8 7gr^^f8d g5r^^f8r 4g5r^^f8v 6gr^^f8y gr7^^f8y. g1r^^e5d6 gr^^e55k gr^^e55tas gr^^e55v^^e6r. gr^^e55v^^e6re 8gs1 g5saga g3sak. g7saka. g3saken g9sal. g3sala g7sale gs4amt gs6ank g5sard g3sats gs2c gse2 g3sekr g7sekv gsels5a g3selsk gsels5t gs8ende. g1sent g1seri g7setel g7setj g1s2ett gs3f gs5g gs3h g5side. g5sint. g1sit g3sjel gsjord4m g3s2kall g5skif g5skilt g7s8kj^^e6 g3skot g5skriv g1skud g7skug g7skuld g3skyg g3skyt gslags4 g5slip g7slyn gs7mon g7snak g7snut g7sog g7s2ok g1soli gsomt5 g5son gs7ope gsopp2 g3sos g5spann g5spari g3spek g1spel g7spent. g7spente g1spi g8spila g6spile g3spur gsr^^f8r4 gs4r^^e5dsf gs3s2 g5stasj gs3tast g1stat g5stein g5stell g7stemd g3stemm g7stemt gs2ters gsti6 g5sti. g1stie g1stif g3stig g5stile gst7l gst7m g5stoff. g7stoffa. g9stoffen g7stoffer g5stoffet g5stol. g7stola g3stole g9stov g5strede g3strof g7stua g3styr g7st^^f8l gs8t^^e5 g1sum gs7vind g1syk g1syn g2s^^f8n g1ta gt8e g1tek g7tempoe g7tenn g1test gt7g g9tide. g7tidene g5tider g3tids. g1til g1tim g1tj gt1l g3tog g7top g1tr g7trafikk. g7trafikke g4trykks g9trykks. g3tr^^e5d. g5tr^^e5de gts8 gt7st gt7sv gt7t g1tu g9tu. gt5vanne g3tveit gt9vek g1ty g5t^^f8 gu4 4gua g5ub^^e5 gud5g gud7ska guds5l gud7son guds5tr g7ug 1gui g5ulk gull1m gul3o 1gulv gul7^^f8 8gume gunn4 8gutf 4guttf 2guttk 4guttl 5guv g7vak g3van g7vara. g3vare. g3varen g3varer g3vari g5varm gvedlike7 g1veg g5vel6 g3verd g5verk. g9verka g3verke g5verks. g7vet g9vev g1vi g2vik g5ving g5vise g1vo g1v^^e6 g5v^^f8 g1v^^e5 g5we gy6 1gym gym5s gyr8 g^^e6r7 g9^^e6t 2g^^f8 g3^^f8k g^^f8r5l g^^f8r1s g^^f8te2 g3^^f8v 5g^^f8ym g8^^f8yn g^^e51g g5^^e5k g^^e55m g3^^e5n g1^^e5p 1g^^e5rde 2g^^e5rdsk 6g^^e5rdsm 4g^^e5rdss 2g^^e5rdsv g3^^e5re g^^e5rs2d g^^e53st h2a2 2ha. 8haa 4hae 2haf6 ha3fi hage3b 7hagenes 7hagers 7hages. hai3so 1hakk hal4 6hal. 7halder 9haldnings. 8haldsf 6haldst hale5s 1halle hall2g 4hallp hall2s 3hals. 3halse hals1k 1halv halv7annet 2ham. ham6p ham3sk 3hand. 7handa handels5 7handels. 5handelsa 8handf 6handlerb 5hands. 5handsam 8handst 6haneh 4hansa 6hap har2 6harpel harse8 hart2 has8p 9hastighets. 9hastighetsn ha5su 1hat hat8l 1hau haust7la 8havars hav5d 9haverska 9haverske hav1g hav3k hav7lu 6havnf 4havnsj hav7ra 2havs hav7skj havs5l hav7u 2haw 2h1b 2hd h2e2 hed2 he3da heders5 1hefte 1heg4 hegg5s heia3r hei2m 3heima 5heimen 8heimo heim7p 6heimsb 8heimu he3ins 3heis heits5 1hekk hekk5s hekse7rin 1hel hel2b hel3ei hel9j hels2 4helsera helse5sl 4helsev hel3sp hel5ste hel3sv helt2 hel7tr hel7vi hem7l 1hemm hems8k hen2 6hengsk hens2 1hensy 3hente 1hen8v 7hep her2 heral4 her3do 2here her8f her8l 1herr 2herref herre3s 6hertugp hes2 heste5m 2het hets5t hev7arm 7hevingsme hevn3t 2hf h5gra h4h 1hi hi2a 2hib hie2 hiks8 hikste7l 2hild hill6 hings8 6hinnea 2hinneb 2hinnes 4hinnet 6hinnev 9hipn 6hire 2hisk his6s 3histo hiten8 8hiu hiv1s 1hj 7hja hjar2 hje2 3hjelp. 8hjelpk 4hjelpo 5hjelps. 4hjelpsk 4hjelpsp 4hjelpss hjem3o 3hjems. 4hjemsb 2hjemsp 9hjul. 9hjule 2hjuls 3hjuls. 6hl 2hm h3mal 2hn hn5str ho2 1hod 6hodem 4hodep hode3r hode1s ho7dy ho8f 1hog6 hogs8t ho3kj hol3b 6holderim 1holdi 6holdsu hol3f 5holmen. 7holmens hol1v hom6 homil7 hong2 1hon8o 1hop 2hopn hopp7lan hopp7s hopp1t 4hops 1hor hore1 7hori 3hor6m 6hort hor5u 3hos 4hos. 3hot hove2 3hoved hov2s 4how h1p 2hr 2hs hs6e 2ht h5tec h8to h1tr ht7te ht3tr ht7v hu2 4hu. 7huda 3hude hud1l hud5r hud1s8 hud7st hug8be hug7legg hugse5 hule7v 1hum 1hun 4hundb 2hundk 2hunds hunn5s hur4 hus1a 6husb hus3ei 6husfa 6husg hus3hi hus5j 2husk hus9kar hus1kj 8husl 4husn 4huso 4hus1p 2hus1s hus7tel hus3tra hus7ty hus1u 4husva 1hv6 hvale4 8hvalf hve8 hvem5 2hvilea 4hvilef 4hvilel 4hvilere 2hvites 6hvitf hvor3e hvor5l 1hy 8hyd. 8hyde hyl8 8hyln hyr4 1h^^e6 h^^e6r4l h^^e6r3m 1h^^f82 3h^^f8g 9h^^f8gd. 9h^^f8gda. 9h^^f8gde h^^f8g7en h^^f8g3l h^^f8gre1 h^^f8g7r^^f8 6h^^f8i 4h^^f8nsd 4h^^f8p h^^f8r6a 4h^^f8rh h^^f8s8 h^^f8st5la h^^f8st3^^f8 4h^^f8velp h^^f8y1ak h^^f8yere3 h^^f8y9ga h^^f8y1m h^^f8y6n h^^f8y7p h^^f8y1se h^^f8y7si h^^f8y3sl h^^f8y3so h^^f8y3ste h^^f8y1v h^^e52 h^^e53br h^^e5l2 9h^^e5na 1h^^e5ndb 5h^^e5nds. 6h^^e5ndsi h^^e5nd5skr 1h^^e5ndv h^^e5p7l 1h^^e5r h^^e5r5n h^^e5r7sp h^^e5r7st h^^e5r7t h^^e5r7v 7h^^e5t ia3del i1adj ia7fe ia3h ia1in ia2k ia3kas ia3kom i1aks i5akt ial1a ial1b ial7d ial9ein ial3eti ial3ett ial3g ial2hj ial3k ial1l4 ial1m ial1p ial1s6 ial1t ial1u ial1v i5ank i1anl i1anm iano1 i3ansl ia7n^^f8 i1arab i1arb iard5s iare2 iar7el ia3rep iar1s iar1tr iar3v ias5n iass6 ias7st ia7sv ia3tab i1att i1av2 ia1ver i4banku ib5br i1bed ibel1l ibel1t i7bem iber7m iber5r i1bev ible1s i3blo i1bo i1by i1b^^e6 i1b^^f8 ice1 8id. 8ida i9dag i5dam i1dann id6ar idar7m idar3t idat1t id7bo idd6a idde2l iddel3u id5do 2ide. 1idea 1idee i8deli id3elv i1demo ide2m^^e5 2iden iden3sv 5identif 5identit 1ideol ideo1v ide5po 8ider idere3s ider5la ider5ti ide1s ides8t 8idet ide1ta id8fa id5ga idi4 1idio i7distans i1div id7line id2n 1idol id5reg 9idrett. 7idretts. 2i3drev 2idri id3rum id2sa ids7ak ids1e ids1j ids1k id7skif ids6krafti ids1l ids5let ids7man ids2mar ids6rettsd ids1te ids1ti ids7tidsra ids3t^^f8 id2su id2s7^^f8 idt3ak idt7ei idt1g id2tre idt1v id5va id9ve id7vinkel. id9vinkele id8v^^e5 1idyl id7^^f8y 8ie ie1a ie7boers ie1d ie1e ie1fe i7eft iefter2 ie1g ie1h ie1i i1eie i3eig i5eini ie7kl ie1kr i1eks ie1la ielands4 ie1li i7elim ie7lu i3elv ie1l^^f8 ie3l^^e5 ie4l^^e5nsr ie1m i8ema iend2 ien3del i1enh ien2l ient1r ient5s ie3p ierar8 iere4 ie3red ie5ref ie1ret ie7retnings. i3erfar ier1h ier1l ier1m ier1re ier5ri ier3sko ier3sta ier2sv ier5to ie1run ie7r^^f8y ie1s ie4sele iet8 i3etabl ie5tal ie1teg ie3ten ie1ti ie1tj ie5to ie1tr ietter2 ie3tv ie3ty ie1v ie9vi i1fa i2fal i5fat ife8 i1finn i3fir i1fly i5folk iform2 ifrem6 if2t ift8leg ift5v i1f^^f8 2ig igang3 igar3m iga3r2u iga3sta ig3att ig2ba ige3b ig1eie igen8l ige3ret ig3eta ig5ett ig4fes ig1gj igg1s2 igg2t ig3gut igg6v igi6 ig5inn igjen6v i9gj^^f8r. i5gj^^f8re i9gj^^f8ringa i7gj^^f8rings. ig6na ig1om i8gon i2g8ra i7grat ig1r^^f8 ig1sa ig1s2j ig3sta ig3stem igs5tid ig1t ig9un igur7s ig7vara ig1ve i1g^^e5 i1ha i8hab i4hande i9handel. i7handele i1hen i1her iherre4 i7hes i5hev i1ho i9h^^e5nd. i7idrette i5il i6inntekts i1jak i1je ijerns3 ijord8 i1ju 2ik i7kaff ika1ma ikar5d i8kare ikar3r ikar3v ika1sa ika1sp ike1d ike2h ik9ei ike7lu iken8s ike3ret iker3l iker5o iker1s ike3si ike3sp ike5ti ik7f ik7hal i1kil iking3l ik5inn i8kirkes i1kj i6kjedep ik2k ik4ka ikk5arv ikk5att ikk7ent ikke1s ik3kis ikkje5l ik3kj^^f8 ik4kj^^f8p ikk5ord. ikk5orde ikk1re ikk1s ikks4v ikk3und i5kl^^e6 iko1b iko1f iko5i i7koll i4kone i7korta i5korte ik3rek ikro3k iks3h iks3kr iks5m^^e5l. iks9m^^e5la iks5m^^e5le iks5m^^e5ls. ik7sot iks1po ik7stad iks5tol iks1tr iks2tu ik7sur ik2s^^f8 ik5torn ikt3r i7kular i1kult ikum6 ik7vak i1k^^f8l ik9^^f8y. i5k^^e5p i3lab il9af i7lans. i3lanse i1lap il1art i7laus il7ban il3bat il7bog ild5ak ilds4f ild5sk ild1st il7d^^f8gns. i6lederk i6lederv ile3f i5leiar. i5leiara i7leiare il1eie il7eigar. i5leii ile1pe il3ern^^e6 ile1s4 il7fas il2flu il2forl il7gar il2go il2ha il1ind il3ir il1kar il6kar. ilke1 il2kje il9komma ilk7os ilk5s ille3ma ill7ender ille5sk il9lina ill3me ill6ra ill7sko ill1sp 1illus il3lyk il3lys ilme2 ilm5est il7mod ilm7y il5ogm ilo5gr ilo2k ilo5ka ilo5to ilot3u ilo5vi il3rei il5r^^e5 ils8e il7sei il2ska il3skj ils2m il1smu il2spi il3spra ils5son. il6stod il2st^^f8 il6svi il7tap il5tas il5tel il9tid. il7tids. il7tig ilt1n il3tor ilt5rett il1tu ilt7^^e5 i3luk il3un ilv2 il1va il3verk i7lynt i1l^^e6 il7^^e5ri ima3f ima1ga iman7f i1mann iman9t i1mark ima3so im5bo im5dale imedia3 imel8 i1meld ime3lis im5enh i1menn ime3ram i1mest i6mesterem im8et ime1ta i7meter. i5metern i5meters im3fe im3fr i4mis i7mj im9koma. im5koms im7lag imme8 im5mis imo7g im5ord im7ov 1im2p imsk5l ims5kr im7sku im5sme im5st^^f8 im5sy im5tal im4tre imt5v 6imu im5ve im7vis i3m^^e5 2in. 6ina in1ame in5arb ina9sp in5ass ina8t inat5ak 2in1b in5dam 1indek 3indeks inde3mi 4inder 3india ind5p 2indr in9driv ind1s ind7sk ind8sl ind1te in7dun 1indus 2ine ine8al. ine1d ine3ga in5egg in5eid ine1le ine7m^^e5 in7eng in9eska in7eske ines2s ine3sti inest7l ine3tab 1in2f in5fang in3fes in3fir in7fisk in7fli in3fly in3fors in7fri 2infy in3f^^f8 2ing. 2inga in4gen 2ingen. 3ingeni 2ingens inge3ru in3gev ing3fj in7gj^^f8 in3glas ingle7d ing5rep ings5om ing6st^^f8 ing5s^^e6 8ingu in1ho in9holds. ini1b ini3f ini3mas in1inn ini3p inis2 ini3ses 3initia in1jak 5injek in8kar. in1kj inkje2 in2kl ink7lag in3knu in3kol in1kr in1l 2inn. 2inna inn3ank inn2bo inn8bro inn5dra. inn7drad inn5drage inn5drar inn5dras inn5drat inn9dro 2inne. 2inned 2innen 2inner inner7sta inne3r^^f8 inne3se inne3si 2innet inn7ette inne3v inn3fan inn4fin 1inng 1innh 5innho 2inni 1innle inn2p^^e5 1innr 6inns. 1innsa inn9sal inn3sen inn5skri 7innsla inn1sn inn1s2v inn1s^^e5 1innt inn5tal inn8tek 9inntekts. inn8ti inn8verk inn4vid in5nyt 2ino ino1d ino5kl in7oks ino1ma ino5po ino1re ino1se ino5va in1r 2ins. 8insa in7saf in7sal in3sat in1sc in1sik in5sjo 4insk ins4kil inskild5 in3skj ins7kj^^f8t in7skor ins2kv ins8k^^f8 ins4le in8sleg in7sly in3s6ma in3sni in1so in8sole 1insp ins5par in7spel in3spil in9spo 2in1spr ins5r 3instal inst5ande 1insti 6in1sto 1instr 6insy 2int. 2inta in3tab in1tal 2inte. 5integ 5intel int3ess 2inti in9tid in1tol in7trek in9truk in7try in3ty in1t^^f8 in9ul in4ung 1inv in7van in3vare in7veis. 3inves 8invev in5vik in7v^^e6r i1n^^e6ri 8in^^f86 in3^^f8k i7n^^f8t 8io io1ak io1b io3dr i1off io3fr iofram7 io7ga io5gu io1i io1j iok8 iol2 io5lab iole4 io5led io7lei io3lev io1ly io1me i8omr^^e5des i5omsyn ion9d ion5erst ion1f ion1g ion1k ion5l ion1sa ion1se ion7sel ion3sum ion1t io1o io1pl i1opp8 io1rep ior3l ior1m io7rom ior1p ior1r ior1s ior1t ior1v ios2 io1sa io1se iosk3v io1st iote4 io1tel io8typ iover2 io1vi i1pak ipan3g i7papira ipe3m i7pep ipe3ta ip8k i4planp i1po ipp7b ipp9lau ipp7l^^e6 ipps1t ipp7sy i8pra ip5ru ips1a ip4sc ips3el ips1k ips1t i1put i3py i7p^^f8 2ir i2r4an i8rar ir3ark ira7vi ir1b ir3be ir2br ir5dalen ird5s ir1du i1reg ir3eie ir9eig ire3na ire7sk ire3tal ir1f irfall5 ir1h ir1ind irit8 irka7t irke1s8 ir1ko ir5lo ir7na ir3opp ir3p irs2 ir6skoles ir3tig ir9tr irts6 ir7ty ir9t^^f8 ir5uk irum7 ir9ume ir9verd. ir9verde ir9verdiavgift. ir9verdiavgifta ir9verdiavgifte i1r^^f8 i1r^^e5 ir7^^e5l ir7^^e5r i1sak isak8ky i1sam i7sang 3isbry is2do ise7f ise1g is1eie i1sekt is3elas is7eld is4eli ise5lit i1sels isen4s i1sent ise5pi iser5p iser3se iser7ti iser7ve ise1s is3ess ise7ten i3setn isfast7setj 3ishav is7hov i1sid i5sikk i1sikr i3sikt is5ild i7sim is1ind i5sjett 6isk is2kame iskar5n is8kas isk3els iske5ret isk7le i1skol is3kred is5kreme is5kro i1skul is3kv i3skyti i9skyttar. i7skytter. i7skyttere i7skyttern is7lak is1lap isl9^^f8y. is2m is3mel is3menn is3mid is3mil is3min is3mor is5mus is3my i1sm^^f8r 8isn is1no 1isol 6isold 5isomo is8ope isor7b iss5d is3sto 2ist i5stab is6tan i1stas i1stat istats8 istav4 ist5avb iste5da ist3ekt istel7l is5tema. ist7ho is5tilb i5stile is7tim is6tin ist5k ist1le ist7rett ist3rol istus3 i1sty is1v is5v^^e6 i1sy i2syr is1^^f8k 2it ita2 ital1a ital5ers i8tallsr ital3y i2tan itan7j itans8 itan7sv i1tap itar3t it3avl itekt3s it7elg ite7lis ite1m i5tenest i8tera i3terr ite1s itet4s5 it5g it6hu it2i iti1b itid8 iti1kv iti1le iti1sp iti1st iti1t itiv8 itivs5 i1tjen it7lei it1li it3lig it2m it3ma it5no ito5me ito5n itopp2 it5ord itor3m itor5s itor3v i3trad it5rim it7ros i7trust. i7tr^^e5la it5sand its3ei it5sku it7sta it4t itt3akt itt3art ittel5l itter5re itt5ett itte5v itt1o itts5in itt5skr itt3spi itt1v i7tub itur4 it1v it2y ity1t it^^e6r1 iu2 ium3b iumf5ar ium5l ium5m iumme4 ium5s6t i1un iur3l i1ut 2iva iv1aks ivakt8 i7vald. i1valg ival3l iv5ank ivan7s ivar5s ivar5te iv5ass ivat1r ivat1t iv8ban iv1d iv7eig i3veks ive9m iv5endels ive7ret i3verks i1vese ive3sta ive7t^^f8 ive1v iv1f iv1g iv5hen ivi4 ivid5r ivil3s i1vir iv5is. i3vitn iv5j iv1l^^f8 i3vold. i5volde iv3ord ivs1n iv1t iv3un iv1v iv7y iv^^e55d iv^^e51s iv^^e57t i5y iz7ak i5^^f8k i^^f8r1s i^^f8r1t i9^^f8ya i1^^e5 i^^e5rs7l i2^^e5rsp 6ja. ja1ak ja3ba jakke3s jakk1s ja1kr 4jaktf jam7h jam7la 5jamm jam1st jam7va 8jan j5anl jar2m 1jarn jarn1s jar3tv jas5b ja1so ja3sti ja5ta 1jaz j1b j7de j5di j4e je1a je3ak je7av je4bol je6b^^f8s je7dag je7dans je1do je1dr je3erv je1et 2jef jef3et je2fj jef5lag je6fondsa jef1re jef3tr je1fu je4f^^f8l 1jege je1gev je7gre je7gu je1h jeholde4 je1i jek2 je4kas je7ki je1kl je1kr je8kraftp jekt1a jekt1r jekt1s je1kv 2jel2 je1la jel5be jel8e je8leg je7lei jele5va je5lis je7liv je5lj jel9setj jelt2 je5lys je7l^^e6 je3l^^e5 je8mag je5manne je7middele je7midl jem3k je1mo jempe3d jem1r je1m^^e5 je1nas jen5dre jene8 je3ned jen5gang jen1gi jen1gj jen3gr jeng5sl jeng7t jenke1 jen4kj^^f8 jen3ko je1nor jen1r jen1s8k jens2l jen1sp jen5stod jen3str jen3st^^e5 3jenta. jen8tek jen1v jen1y je1pa je1pe je7pl je1po je7pu je3rad je1raf je5ran. jerde3p je1red je1reg je3rek je1rel je3rett jerk7l jer2m jer6pa jer2st jer2t jer3tak jer3tal jer5tra je1se je9sei je1sj je1sk je6skiftt je1sl je7sm je1so je1s2p je4stim je5str je7sve je1tak je1teg jet7l je1tra jet1ru je1try jet1s2 jett5and jett1o jett5p jett1s2 jett1v je7u je9vara. je9vare. je9varene je9varer jev5d jeve8s je9vet je9vid je2^^e5t j1f j1h ji2b ji5h j2im 2jis ji5^^f8 j1l j3mo 1job 5joc 6jok jok6k jokk9o 2jon jon7ne jons1 jonse6 jons3p jon7stad jon8st^^f8 jor4d jord7erv jord7is. jord9n jord1o jordre2 jord7skifte. jord9skiften jord9skifter. jord7skiftet jord3s8l jor7g jor4t jor7^^e5r. jos7l jos7s 1jou 2jout j1p j1r 8j1s j1t ju5arb 1jub ju7bo ju7b^^f8 2jud jue7ni 2ju8k juke4pe jul1l jul7m juls1t jul3v jup7s jup7^^e5 5jurid 3jurist ju9ro jur7t ju3ru 1jury 1jus ju7ser ju7s4o 8jut ju7ti j5v j^^e6r3d j^^e6r4m j2^^f8 j^^f81b j^^f8d2 3j^^f8dis j^^f8dsel5s j^^f81ef j^^f83eg j^^f87fla j^^f85fr j^^f81ga j^^f87go j^^f81gr j^^f81i j^^f83ka j^^f83ko j^^f83kr j^^f83kv j^^f89mar j^^f81me j^^f8nns8leg j^^f8nns5^^e5 j^^f81pl j^^f8p9sle j^^f8p7ste j^^f8rke5l j^^f8r2m j^^f81s j^^f8t5eta j^^f81ti j^^f81tr j^^f81va j^^f83verd j^^f85verk 2j^^e5 j^^e57d j^^e57s j^^e57ve 8ka. ka6an k8ab ka1br 2kad2 4kadetts 4kae ka3fa 3kafe kaffi1 ka9fr k5agi ka1gr ka1h kai3k ka7jo ka7kaf 1kake kake1l 4kaker^^f8 6kaket k1aks k1akti kala3pr kald7r kald1s2 kal2e kal5lag. kal7laga kal5lage kal5lags. 6kallb kal3lei 6kallings 6kallm kall6st kal1me 6kalottk 6kalotts kal1se kal7sv kal3ta kal1tr kalv5^^f8ya. kalv7^^f8yas 1kam 4kama 4kamb kam7be 6kamen kam9fa kam7k kam2p 3kamp. 6kampap 4kampare 3kampe 4kampm kamp1r 2kamps 2kanda 8kande k3andel 3kandid 8kane kan9fr kan2i 4kanik 2kanis k1anl kan7la k1anm kan5ma 7kanna 1kanne 5kansl kan5st 4kantf 8kantl 8kantp kant1s 4kantu 8kap. 1kapas 3kapell 2kapen 1kapit kapp4v 8kapra 6kaprerd ka6ra k3arab 1karak kar7ba k3arbei kar7br kar7dal 8kare. kare6l kar9h k1arki kar5ko k5arkt kar3lag kar5li 8karsh kar7sj kar3sko kar3sku 4karsl 8karsr kar2ste 8kartd 4karts 6karv karve8l kas5ev kass8 7kassa. kassa3m 6kasserek k1assi kasso1 kata2 7katas kate2t kat7ho 8katr ka1tra ka7tr^^e5 kat1s kat2t katte3r katt3f 6kattr katt5ri kat5y k7aur kaus5l kav8 kave8 k1b k7bad k8bara kbort6 k7bu k7by k5ce k1da k7de2 k1di k1domi k1dr k7du k1dy k1d^^f8 k7d^^e5 6ke. ke1a ke9al ke7bens. ke7blad. ke9blade ke3by ke1da ked4e ke7dei ke1dem ke1di ked8o ke1dom ke7dor ke1dr keds1 ke3dy ke1d^^f8 3keep ke3erm ke1f ke7fin ke9fl k5eft kefter8 ke2f^^f8lg ke1g ke1ha ke3hi ke7hov 6kei8 k1eig k7eik ke5il k4e1in keis2 ke1k4 ke7ka ke3ko k1eks k5ekt ke1la ke5la. kel2aks ke3lar kel5d kel7eik kel5el ke5lep ke1les kel1f kel3g ke1lis ke3liv kel1j kel5k kel1l kel2mod kel3ovn kel1p kelse2 kel5sete kel1s4l kel5smy kel1sp kel1st kel1s4v kel9uka kel5uke kel1v k7elv. k9elvs ke7l^^f8nne ke1l^^f8p ke3l^^f8y ke1l^^e5 ke1m ke3my 2ken ke1n8ap ke3nat ken3b ken3d^^f8 ke5nek ke1nev ken5gl ken5gr ken7j ken1k ken1l ken1r ken1s2 ken1te ken5tr k1entu ken1v ke5nyt ke1n^^f8 ke3on ke1p ke5per 2ker ker1d ke1red ke1reg ker5eid ker3ekt ke3reli ke5rem ke7rene ker3ert ker6es ke3rest ke3retn ke7retta ke5rette ke5retti ker9g ker1ho ke7rik. ke7rikt ke9rist. ke7riste ker3k ker7le ker1m ke7rose. ke7rosen ker1p ker1r ker3sko ker7steds. ker3sy ker7teg ker5ti ker3to ker1tv ker1t^^f8 ke3rus ker1v ke3r^^f8d ke3r^^f8r ke9r8^^f8ya ke7r^^f8ye 2kes kes3aks ke9samt ke1se kes7ei k7e8sel ke1sj ke1sk k9eska. k5eske kes7lege. kes7legen ke3slu ke1spi kes5se kes1sk ke1sta ke3sted ke3stei ke3stel ke3stem ke3sten ke9stilla ke5stille ke7stilling. ke7stillinga ke7stillinge ke7stillings. ke5stilt kes3tit ke5stoppe ke3stri ke3stru ke8str^^f8ms ke1sty ke1ta ke6tals ket3ban ke8te. ke9teg ke1tek ke3tenk ke3term ke1ti ke6tingsg ke1tj ke1to ke6to. ke1tra ke1tre ke1tri ke1tro ke1tru kets2 ket5sp ket5st ket8t kett7enh ketter6 kett3s ke7ty. ke9tya. ke7tye ke3tyn ke5t^^e6 ke5ur ke1v2 k1evj k3evn ke6voldsa ke2yt k1f k5f^^f8ring. k9f^^f8ringa k5f^^f8ringe k7f^^f8rings. k1ga k1ge2 kgen8 k3girot k9gj k1gl k3gre k3gri kgrunn4 k1gu k1g^^e5 2kh k5hag kh5ak k9hald. k5halda k9halde k9halds. k7hamn k3hande k5handlen k7handlern k7handlers k3hei kh3eks k3hett k4hon k1hu k1h^^e5 ki1ba ki5be ki3bi 2kif ki1g ki1h ki1i kik7h ki7kr kil6b 1kilde kille5st 6kilosf 2kilt ki1l^^f8 ki7l^^e5 kimo5l 8kina kine8 king5and king1t kin7h kin3ing kinn5l kinn5si kinn3tr 4kinof kino5s kino1v kin3se kin5si kin1sk k3insp kin7sta kin7ta k5inter kin3ti 1kio 2kiol 2kip kips1 1kir4 2kire ki5rem ki1ren 6kirkea 2kirkem 2kirkep 4kirkeru 9kirkes. 4kirkesy 6k5irs kise2 ki3ses ki1sko ki3smu ki1sp 7kista. ki3stav ki5str ki1tr ki1tu ki7t^^f8 2ki6v kiv5enh kiv1l kiv1s kj6 6kje. kjef8 kje5fe 2kjeg kje2l 1kjeld 4kjema 2kjemia 4kjemid 4kjemise 2kjemiv kjen4 1kjend kjenkje5 1kjens kje9ny 3kjerri 6kjerringf 8kje1s kje7te 1kjole 2kjor kjord8 3kj^^e6l 3kj^^e6rl kj^^f82 1kj^^f8k 6kj^^f8lings 2kj^^f8nns 5kj^^f8nns. 5kj^^f8ps. 6kj^^f8psb 8kj^^f8psr 8kj^^f8pss 6kj^^f8pstr 4kj^^f8psv 6kj^^f8ringsm 6kj^^f8ringsv 1kj^^f8rs kj^^f8t5r 5kj^^f8tt. 8kk kk1aft kk1ak kk5alt kk7and. kk3anda kk7anden kk5ang kk1arb kkar3m kk1art kk5au kk1av kk4ava kka7ve kk8bare kke3ho kke5hus. kke5huse kk1ei kk3elev kkel5t kke5rent kke3rit kke7rund kkes5s kke9stad kke1t^^f8 kke2vas kk1g kk1h k2ki kkilo9 kk1ind kk1inn6 kk1ins kk1int kk3jent kk3jern kkje3t kkje5ve kk1l kk8lak k4klubbm k8klubbs kk3m k2k1n k1kod kk1of kko3g kk3oml kk7oms kko7o kk1op kk5ordmes kko3va kk1ove kkover4 kk5ram kk5rei kk1ren kk3res kk3ro kk1run kk3rut kk1r^^f8 kk7r^^e5 kk7salt kk1se kks2ei kk1si kk1sj kk1sk kk2skan kk7sky kk1sla kks7las kk7sle kk7sl^^e5 kk7soms kk1spe kk1st kks5tak kkstein6 kks7va kk1sy kk1t2 kk1ut kk1v kkvass7 k2kvo kk5yr k5kys kk7yt k8k1^^f8 kk1^^e5 kk7^^e5s kl2 k3lab 9klaf k3lagt 4klak kla6m 1klang klan1l k7lans klar3v 1klas k6lass 9klassa 6klassef 6klassej 5klassen 4klassep 7klasses. 1klat k7lati k7laus. kle2b kle4d k8leda 2klee 2kleh k6leiv klen8 klepp7s 2kle8r k5lesa kles7j kle7skap kle3sn kles1s kles5v 8klia kli3b 4klimap k7lina. 1klip kli6s 4klokkek klon7al klor7g 1k8los k4lovk 1k2lu 4klubbei 4klubbes 4klubbf 8klubbk 8klubblan 4klubbr 4klubbsa 6klubbu 2kluf k7lug k3luk k3lun k5luth kly6 k5lyd k4l^^e6r. kl^^e6re4 2kl^^e6ri 5kl^^f8r k2l^^f8yv k1l^^e5n k1m k9mann. k7manne k7manns. k4mannsk k2m^^e5 km^^e5l8 kn2 kna4 8kna. 1k2nap 8kne. 5kneet kne8g kner6t k7neset kne5sta k5nett kn7f k2ni4 knis4 knisk1 1kniv kno8 5knop k7nor kn7s knus6 6knusea 7knusi k1n^^e6 2ko. ko1an ko7bre 8kodem 6kodes ko3d^^f8 1koef 8koen ko3es ko1fa 2kog kog2bru kogen6 kog5eng kog7sti ko7ik ko5kas ko3kat kokk8o kokko5s k1okku ko3kol 6koks ko1ku 7kol. 2kola kol6ban kol7dr 2kole kole1g kol7f 8kolg ko3lis kol5k 1kolon kol3p 4kols kolver5 ko7lyd 1ko2m2 2koma ko7mal 9komel 6komem ko3mil komi3se 4komit^^e9l 9kommele 9kommelighets. 6kommem 7kommente 6komo ko3mom 8komposisjons 9komposisjons. 4komr 2koms kom7sn 8komstk 4komsto 2komt 4ko3m^^e5 1k6on2 4kon. 4konek 6konet konge5v 7konj kono8m 6konsertt konsum5m 7kontinue 7kontinuitet. 9kontinuitets. 4kontokr 4kontol 2kontoo ko5om 6kop. kopar3 ko7pei ko3po 8kops 2kora 3kora. kor9bo 2kord k7orda. kord3d k3ordet kord1l k5ords. kords4^^f8 kore2 ko5rem kor7l korn1s kor8p 4korpa 4korpe 2korpo 4korpsm 1kor4r kor3san 3korse kor8s9l kors9n kor4str 1kort. kor8te 6kortings 7kortings. 4kortk 4kort5r kort5s 8kortt 8kortu 8kosa ko3sal ko7sau kose3dy 6koset 2kosi kos3kj 5kosmo ko1s2p 8koss kost7as 4kostb kost5ers 2kostf kost2h kost5j 2kost1l 6kostm 6kostprin 6kostu ko5s^^f8 ko5tal kot4i kot2t kott6st kot6v ko7ty ko5t^^f8 k7outa 2kov 2kow ko7^^e5 k1p kper8 k5pris. k3prise kr2 k3rad 4kraftav 8kraftba 8kraftber 6kraftbes 4kraftd 6kraftint 4kraftk 6kraftl 2kraftm 6krafto 6kraftpl 6kraftrese 8kraftte 2kraftu 4kral kram1b krampe5r 4krampes 6krampev kran1f 2krank 6krant 2krap k8rar 1krav kre2 8krede k1reg kre5h 8krek4 krem7b 5kremer k7renna k7renne. k5rennen k5renner 6k7reo 3kreps 4krepsh 4kret. k7retn 1krets 6kretst k3rett 5krevend 6krevingsse kri2 6krif 1krig 7krigs. 2krigsf 4krigsh 6krigsi 8krigsm 8krigsn 2krigsp 6krigsra 6krigstil krikk7a kring5sat krins7t 1kris 1krite 4kriv kro5br kro5de kro1f kro4ka krok5n kro3met krom7v 4kronem k4rop kro7pa kros2 kro5st krot8e kro5u k7ruh kru5ise krum3s k6russ kru3tr kry4 6k1ryg 1krys 6krysnings 9krysnings. 6kryssings 7kryssings. kr^^f8k8 k3r^^f8r k5r^^f8y 5kr^^e5k 2ks ks8advokatem ks6advokatf k2sakk k9saks. ksak5st k1salg k1saml ks1ant ks4banks k1sc ks5dags. ks4dro kse7dy ks1ei kse5lev ksel7v ksen7se kse3pa kse7ru kses8 kse7se kse1sk kse3sm k7seso kse3sp k9seta. kse5tar k7seten k7setj k7setten k6sf ks5he k5side. k5siden. ksi3gl k7sild ksil3le k2sin ks1ind ks1ins ks2je k4sjefst ksje1r ksje3v ks9kab ks9kak ks1kan k1ski k2skips ks5kir ks1kj k6skolere ks9ku. ks7kua ks1kv k1sky ks7kyr ksle3p k3slit ks3lo ks8mak ks2m^^e5 k7snit k5sno k7sn^^f8 ks7oa ks1or k7sort ks5pak k5spela k1spi ks5pio ks3pol ksport5r ksport5s k1spru ks3pu k3spy ks6rettsh ks9ro ks1s2 ks8tab ks3tal kstav3r kste2d k3stei ks3tele kste8p kst3ev ks9tima ks1tj kst1n ks3trad kstra3l kstra3s kstra3v kst5rekk k8stren kst3rom ks9trua k5str^^f8mm kst7s k5stuk k5stus k5st^^f8t k4st^^e5 k7sum ksus5p ks1v ks2veg k3s2vert k5svin k3synt k9s^^f8lve ks8^^e5rsa 2kt k8ta. kt7alf kta8n kt1ana ktan3ta kt5arr ktat3t k6tav8 kt5avh kt5avk kt3avl kt1b kt1d kte3b kte2fe kte3gr k5tekk kte5lev kt3elit kte1m kt7emn kt3enh kte2pa kter1s kter5v kt3eske kt5esti kt3eta kt5evn ktfor8s kt1g kt1ins ktis5t kt7ite ktiv1s k1tj kt7ju kt1l kt3ma kt6mei ktober5 kt3off kt7ofr kto5gram ktom6 kt7omf k3tonn kt1o8p ktopp8 ktor1m ktor1o ktor3s ktor1t kt1ov kt1re ktro3i ktro3st ktro3t kt7sak kt8same kts1an kts5ar kt1sek kt1sik kt1sj kt5skapsf kts4kv kt3sky kts1l kt5son kt7spari kt3spi kt1sto kt1sty kt1t kt2ta kt7taka kt5tall. kt7talle kt3tap k5tun kt7und ktur4ak ktur1v kt1ut kt1v k3tyk kt7yrk k5t^^e6 kt^^f8r1s kt7^^f8s kt1^^f8v kt3^^e5r ku7bj 2kud kudd3h 6kuf ku7fa 8kug k5ugr k3uk kule3v kul8i 1kul8l 8kullg 4kulls 8kulo 6kulturfo 2kul^^e6 kumenta5l kum5les kum3pla kum7pu ku5m^^f8 1kun 2kun. 6kundera 2kune 6k1ung 1kupo kur3on ku7rop kur2s 2kursel kurs1k kur3ste kurs1v ku5ru 1kur2v 8kus. kus8b kus3d kus5el ku7spe 2kuti kut7ry 2kut^^f8 ku3ven kv4 1kvali kvam3p k3vanne 7kvard 1kvart 8kvarteri 9kvartering. 9kvarteringa 9kvarteringe 9kvarterings. 2kvat kve6 kvei6 6kveitef k3vek 1k2vel 8kveldsd 4kveldsv 8kven k9vend. k9vende k5vendt. k5vendte k1verd k1verk 3k2vern k1ves kvik7v 9kvila 7kvile. kvin4 1kvinn k1virk kvis2 7kvist 6kvites 8kvitf kvit7snippa 2kviv 1kvo k7vok k3vol k1v^^e5 8ky. 8kya ky7da ky7de ky7di ky2fle 2kyg kygge3l ky5lig kylling7s kyl3s 5kyndig. 7kyndiges 7kyndighet. 7kyndighete 7kyndighets. k3yns ky2o ky2p kyr8 7kyrj 1kyrk 8kyrkjea 4kyrkjem 8kyrkjeo 6kyrkjep 6kyrkjeru 8kyrkjes 1kys2 8kys. ky9set ky3skr 6kyst1a 4kystf 8kystm kyst1r 2kyt6 kyte3s k1^^e6t 1k^^f8. 5k^^f82a 1k^^f8e k1^^f8k k^^f83kj k^^f85ku k1^^f8n k^^f8r7g k3^^f8rr k8^^f8yr k^^e56 k^^e57by k5^^e5ke 4k^^e5lb 4k^^e5lh 8k^^e5lp 4k^^e5l3s k^^e5r7h 7k^^e5rsm k^^e5r3u k^^e5r8v k7^^e5tt 2la. la7del. la7dele lade5m lad3f 6ladm lad5s lad3ve l7aftene l5aftens. 8lagen. 2lagg lag1le lag2man 8lagne 1lagr 8lagsa lag3san 6lagsbu 2lagsf 7lagsforhold. 9lagsforholde lag3sid 8lagsr 2lagss 5lagssk 2lagst la7gut la1ha lak2 l1aksj 2lakt l5aktiv 2lal l5aldersk l3aldr l1alk l1all l1alt 2lama lame3s 1lamp la8mu l1anal 5lancer 1landb landre2 4landsg land4sl lands5lo 6landso land3v 6l8ane lang3le langs2 lang6s5e lang3st lan7h 2lanl lan3m 8lansarb 7lansi lan3tim la2p lapp3l laps2 2lar l1arb lar9bu lar5de6 lar7di l7area l1arki lar1ko lark9ut lar1l lar7p lar3re lar7sa lar1sk la7sal las3b lase8 8la2sj lasje3f la8sk la5smi 4lastb 6lastf 7lastings. 4lastm 2last9s las3v la9tau late3m la7tings. lat3l lat2m la4tr lat3se lat5st 5lattes. latt3is latt5ra latt6u 8laukf 8laukp 8lauks 3lause. 1laust 4laut 2lav lav3al la9veg l3avh l3avl lav7l^^f8nne l7avr lb8 l5bakke. l5bakken l1bal l2banes l1bas l1be l3bedr l5best l3bev l1bi l1bl lbods5 l5bok lbo5la l6bords l1br lbrots7 l5bruk. l5bruke l1but l3byg l7byrda l1b^^e6 l4b^^e6rb l7b^^f8k l6ch l7cha l3cr l5dagst l7dale l1dam l1dann l3dans. l5dansen. l7dansens l3dass ldata8 ld1ban ld2bl ld1d l3defin lde5fo l7dekt l6deleg l5delen l3depa lde5pos l2der lder7a lde9rik lder1m lder5s6te l1desi lde1so lde3sti ld8far ld8fullh ld3hu l1dia l7dil l3dio l1dis l6dis. l4dog l1dok l7dorg l5dram ld8red ld7regn ldre1i ldre1p ldre1s l5dress l3driv ld1r^^f8 ld7sam ld7sent ld1sj ld6ska lds1ku lds1l lds3m lds2off lds5son. ld3stad lds1ti lds7to lds7tr ld8st^^f8 lds6vis. ld8tu7s l5duf l5dug l1dun ld1v l1dy 2le. le1al le1au lebo7sta le8b^^f8s le3dag le1dat led3b led4do 6leddsk 2lede. le2der 4lederb 4lederd 2lederf 4lederj leder3l 2lederm 8ledersa 6ledersp 4lederu leder3v 4lederva 6ledervi le1dis le1dom 2le1dr leds2 led1se led1sk led1t le1du 8le1dy le1d^^f8 le3d^^e5 le5erm le1fe l1eff 4le2fo lefon3t le3for l1eft lefter8 8leg. le3gals 1legem 7leges. 6leggelsesv 6leggerr 8legi. 3legit le5gitt le1gj le1gl le1gre 8legs2 leg5si leg3st le1gu le1h le2hamm lei2 4leiarb 6leiarj 8leiarm lei7dal l8eie. l4eiero l8eiet 4leietag 9leigen 9leiger. 5leiinge 7leiings. 8leiingsk leiks3 1leil l5eininga 1leir lei3sl 3lek. le6kam. lek3d 1leke 2lekj lekk7s le1kl le1kr le7kru 3leksik lekt5ord lekt9t 3lekty le1kv le3k^^e5 lel2 le1la l9eld le1le le8len l5elg le1lin le1lis le1lo l3elsk le1luk le1l^^f8 le5l^^e5 le1mak le5manne le4mark. le1mi l3emn le1mo lem5pels lems5^^f8 le3m^^e5l. le7m^^e5la le3m^^e5le 8len. 2lene 8le8ne1s len8f 1lengd le1nis 6leno len5r l3ensem lens2m le2nu leo8 le1pa lepe7l lep9enden le5pil le8pla. le1po lepp4s 2ler le1ram ler2br ler1d lere2 le7reden le7reder le7redet le1ref le1reg ler8ei le1rek ler2en le3reso le1ret ler3ga ler6ge ler7h ler3kj ler1l ler1m ler7net ler3pe ler7red 3lerret ler1s2 ler8tar ler7tel le1run le1rus ler1v le3ry le1r^^f8 ler5^^f8ye 6les. le2sand le7seglet le1sig le8sin le3sit le9skaps. les1kj les7kn les5nes 6lesningst le5spel le1spi less2 les3sek les5skan les5sko le1sta le3sted le3ste6i le7stel l3estim les5trek le3stri le3styr le5st^^e5 les7v^^e6 le3s^^f8r 8let. le1tak le1tal letann4 l3etas le3tit le1tj le1to le1tr let9rik 8lets let7se let9s8k letter6 lett3f lett7l lett1s le7ty le3t^^f8 8lev. 2leva 2level le3vid lev3m 1levn le7vok le3vol 2ley l9fag. l9faga l9fage l6fagk l7fagl l2faks l7fangar. l1far lfe2 l3feb l1fes lf3f lf5he l1fi l2fia l4fin. l8fis. lf3ja l1fl l4flys lfon8 l7fri. l9frie lft2 lf3tu l1fu lfyll4 l5f^^f8ret lg7af lg6am l1gass lg2ba lg1d lge2bra lge5land. lge7lands. lge9m lge5rik lger3s lger3un lge3st lge3va lg7g lg1h lgi8 l1gig lgjen4 l2gjo lg2kam lg1lo lg1ne8 l5gode. lg1ok lg1om l1gr lgre2 lgr9^^f8y lg1s2e lg1sty l1gu l7gul lg1v lg7^^f8y. l7g^^e5v l1ha l3han l9hef l1hei lheilag4 lhellig4 l1her l3hes l7hjelpa l5hjelpe l1ho lholds4 l7hug l2h^^f8 l1h^^e5 li2b 6libr 2lid. 1lidel lid5g lid6k l3idr l6idretts 8lids lie1te li2f li2g 4lig. lig1an lig7art lig3d 4lige lig3enh 4liggerm 6liggers 5liggja 2ligh lig3ha 8ligi lig1le 3lignen 6ligningsr lig1re 4ligs2 lig1se lig1si lig1sk lig3sti lig3str lig1s^^f8 li2k likk3o 5liknan likon3 likt5sk li3kve 3lik^^f8 lil6 l3ild 3lilj 8liljeb 6liljed lille4be 2lim lim7b li5metere li9metr lim5pi lims6 6lindh 8linef 9linefi lin1f lin5fa lin7fr 4ling ling3k ling5le4 lin9grad lings3l ling9stads. 1linj 4linjeb 8linjef 4linjep 4linjetr 6linjeu lin7kass lin7kle lin3ku l1inn lin7neg linn8h 3linni linn6k linn8l 7linsa 1l2inse l1inst lin6sy lin7^^f8 lion3s2l lion5sv lio3r li7os 2lip lipp2s3 lis2 6lis. 4liset 4lisk list5y liti1a liti1d liti3g liti3m 1lito lit6s lits7l 5litterat litt7s li2v 1liv. liv5eg liv3lin liv1re 2liv2s1 3livs. liv3sel 5livv l1jakt lja1l ljam6 lj5arb ljar5t lje1l lje1m l3jent ljer5m ljern8 lje1r^^f8 lje1s lje1te lje1vi lj1k 1l4jod 1ljos 8ljosb 6ljosp lj7ut lj^^f81d lj^^f81f lj^^f83k lj^^f81l lj^^f81m lj^^f81n lj^^f81p lj^^f81r lj^^f8r5d lj^^f8re2 lj^^f81t lk2a l1kab l5kampan l1kap l1kat lke7b lke3h lke6helsea lke1ri lk3ers lke4stad lkes5til lkes3v lke5vi lk5h l1kil l1kj l3kjed l9kjend lkj^^f8p4 l1kl l5klasse. l9klasser l7klu lk4n l1kod l1kol lko3met l8konte l9koplinga l1kor l1kos lko3t l1kr lk7rik lk7sn lk1st l1kur l1kv l1k^^f8 lk8^^e5 8ll ll6a7f ll1al ll1anl ll3ano ll3ansk llan3st ll7apa llarm2 llar7s ll3asp ll5aur l7laus llav8 ll1b ll2byr ll4b^^f8t ll1c ll1d8 llde2 ll7der ll2dos ll7dr lle7by lle7dal l1ledd lle5deb lle2d1r lled1s lle3f lle2he lle6ho ll7eig l7leit lle5ki lle1me l1lemp lle3m^^e5 ll7enden l8lens lle1pe ll3eple ll7erik ller3r ller5ta lles7arv lles3ei lle3sen lle3sla lles3se lle5tes lle6tu lle9t^^e6 lle3var lle5vek ll3even ll1f ll7fi ll9fo ll1g4 ll4gi ll9gj ll1hen ll5hu ll3h^^f8 l2lia l5libe l5like. ll1ind ll1int l7livn ll1j ll1k ll5marki ll1mat ll7mer ll1mes ll1mi ll1mo ll1n l1loj l5lokk ll7oks llom1 llo3man llom5fo llom5k ll1op ll1or llov6b ll1p ll2rei ll1sa lls3aks ll1se ll5sel lls5end ll1si ll7skapt ll1sku ll8sleg lls4lei ll3smy ll5sno ll7son ll1spe ll9spra ll1st ll1sy ll1t2 ll9tings. ll7ug ll7uka ll3uke ll1un ll1v l1lyd ll^^e6r6a l7l^^e6t ll7^^f8ks l3l^^f8nne l5l^^f8nni ll^^f8v4 ll7^^f8y. ll5^^f8ya ll1^^f8ye l3l^^f8yt l3l^^e5n ll1^^e5r ll3^^e5s l1mag l7makar. l7makara l9makare l7mani lm1anm lmann4 l3mann. l3manne l5manns. l6mannsf l4mannsk lm1arb l5mark. l5marka l5marks. l1mas l7mate lm1b lm1d l7mei lme2k lme7kl l1mel lme5la lm3els lmen1s lm5epo lme5tr lm1f lm1gr lm1h l1mid l1mil lm1ins lm5int lm9kr lm3l lm1m l5mog lm1p lm5r lm1s lms2p lm3st lm1t l1mul l3mun lm1v l4m^^f8. l1m^^e5 lm3^^e5r lna5b l1nav l1ned8 lne4g l7nek l1nem l1nett l4nis l7niss l7niv l1no l1nu l3ny lo1al lo5ara lo3art lo1bo lo5br 1lodd lod1h lod3k lod1l lod1se lod3sk lod3sm lod1sp lod7ste lod7s8v lod3t 3loft 3loggi log5m 3log2o lo1gu lo1h 3loja lo1je lok2 7lokala 3lokale 3lokket 8lokks 9lokks. 1lokom 6loks l3oksid lok5st 2lol lo1la lo1le lom2ald lombuds5 l5om6dr lo7metere lo7metern lom3in lom1l 8lomr lom5sto lo2m^^f8r lo7m^^e5 2lon lona3l long3r lo4ni lon8k lon7skj lo1pa lo3pia lo3po lopp7l^^f8 l1opp8n lopp6sa l6opt l1ord l8ordm lo3rett lorg5l lor7ka 3lort lor3ty lor5va lor5ve lo7r^^f8d lo9saf lo5sak lo5sid lo3sl lo1sp 6loss lo5stei los7tene lot6h 8lottet lo1un 1lov lo2va lover8 l5overi l3overs 8lovf 4lovn. 2lovne 4lovo 2lov1r 2lovs 6lovt l6par. l1pat lpe1a l1ped lpe5lek lp2i lpin1 lpin3f l1pl lplan4k l5plom l1po l8porta l4prist lp5sa lp8sam lps1t lp3tj l1pu l1p^^f8 lp^^e54 l1r lre2 l9reie l5rein. l7reina l3reine l5reis l3retn l5rette. l7rev l8ro. l7rom l6ror lros8 l2rot lr^^e5d4 l4r^^e5dss 8ls l5saf l3sagt l1sak l7sak. l3sake lsak5k l1sal l1s2am lsammen4 l1sang l5sann ls1ans l7sats l7sau. ls5dags. ls3elas ls3ele l1sels ls3elv lse1m l5sendi l3seng l1sent lse3p l5seria l3serie lse3ris l1serv lse8sh lses3kj lses5ku lses1l lses3pa lses1s lses3ti lses3tr lses3u l4set. l5sete. lse3ten l7settb l7settings. l7settingsme l5sex ls5f^^e6 ls3h l5side. l2sidi l1sikk l5sikker l3sikr l5sis l1sit l1sj ls3jakk lsje2 ls5kant l3skat lskatte6yd l1ski l7skj^^e6 lsk3l^^e6 ls3koa l1skol l8skoleb l1skr ls9krin lsk3und l1skut ls7kyr l1skyt ls1k^^e5p l7slagn ls1le ls3lin l1sluk l5slutt. l3smed. l7smeda l3smede ls3m^^e5 ls5nar l7sog ls5ond l3sone ls1or l3sort l1sos ls7ose l5sott. l7sotta l5sotte ls1pa l1spek l5spel ls1pen ls1per l1s6pi l9spj l3spore ls3pos l5spred lsr^^f8r6 ls1s2 l2stabs ls3tak l2s1tal l5stat. l7stata l3state l5stati l3stav lste4 l5stede. l6steinst ls5terr ls3tes ls7tilg ls5ting. ls5tinge ls7tings. l1sto l6sto. l3strei l1sty l5sub l3sui ls1un ls3vann l3svin. l9svina ls8vind l5svine lsyke8 l8s^^f8kjar ls5^^f8r 8lt l8ta. l3tabe ltal4 ltan5d^^f8 lt1anl lt1art ltat1o ltav2 lt3avk lt1b lt9be lt3c lt3dale l8te. l5team lte5gr lte3me lte3mo l3temp l5tenest lt5enh lte9ram lte5rasj lter5sk lt5erst lte9sam lt1g lt5ho l7thr lti7ka l1til lti3la lti3na l9tinget l2tings lt1ins lti7var lti3vi lt1ja l1tjen lt1l ltlands4 lt2mul lt1na lt7nev l1tog l1tol lt5opt lt7ost ltover4 l3trad lt7rem lt5rens l5trev l3triu lt1rol l5troste l1try lt9r^^f8d l8tr^^e5dt lt1s lts2m lt6spa lts8t lt2sv lt4s^^e5 lt1t lt1und ltur1u ltur1v lt5vanne lt1ve l1ty l1t^^f8 lt7^^f8l lt3^^f8v 4lud 2lufts l3ull lums8k lunder8 lunge3l lu8o lur2 l7urei l7urn 6lusk lus2s luss3t luta3l luta3r l7ut6k l1utr lut5ry lutt3at 8lutv 7luva 3luve 2lux 8lv lv7akti l1val lval9k l2vannf l2vanni l6vanns lvann8st l1varm lv5dale lv1di lv1dr lv1dy lved2 lve1da lve7dal lve5dr l1veg l5vegg l5veie. lve5is lve7la lve9rau l1verd lv3erkj l9verna lver5sk l3verv lve3str lv1fa lv1g lv1h l1vid l2vik l5vika l1vil lv9im lvirke8 l1vit lv1j lv3k lv1l lv2mo lv1n lvne6 lv9op lv5ov lv3p lv1r lvre4 lv1s2 lv7sk lv2ste lv9tak lv1v lv3^^e5p ly1ba ly5br lyd1d 9lyds. ly7ert 3lyft 8lyftarf ly2g lyge5v ly7glan ly1kj lyko8 ly7kv ly1l lymfe3 lynde8 lyn5il lyn3sk ly1pas 1lyri l7yrk 1lyset 2lysf 8lysk lys3kj lys5l 4lyso 6lysp lys1s lyte5r l7ytin ly1tr ly1v^^e5 4l^^e6n l^^e6re1s 2l^^e6rh 6l^^e6rk 8l^^e6rn l^^f82 4l^^f8fterf 4l^^f8kb 6l^^f8kf l1^^f8kn 6l^^f8kp l^^f8k5r 4l^^f8ks l5^^f8l 5l^^f8n. 5l^^f8na 3l^^f8ne 1l^^f8nn. 5l^^f8nna 3l^^f8nnen 3l^^f8nns. l^^f8nns3a 7l^^f8ns. l^^f8ns3t 7l^^f8nt 4l^^f8perk 4l^^f8pk 2l^^f8psb 8l^^f8pse 2l^^f8pss 2l^^f8r 3l^^f8rd l3^^f8rr 1l^^f8s 2l^^f8sb l^^f8s5ten l7^^f8vd l^^f8y2 8l^^f8y. 4l^^f8yd l^^f8yels5 2l^^f8yf 3l^^f8yp l^^f8ys2 l7^^f8ys. 3l^^f8ysa. 3l^^f8yse. l^^f8y5sl 1l^^f8yv 2l^^e5. l^^e52br l^^e53dr l^^e51f l^^e5g5la l^^e5g5s l^^e55h l^^e58he 2l^^e5i l^^e57j l^^e51k l^^e57la l^^e51ly l^^e58mann l^^e5m1s l^^e5ns1 l1^^e5pn l^^e5re8 l^^e55rev l^^e5rs7t l8^^e5s. l^^e5s2b l^^e51sk l^^e54skimm l^^e5s5l l^^e53str l^^e55su l^^e59tr l^^e55vi 8ma. 8maa ma1ar ma5bil. ma7bila ma3bile ma5br ma5dal mad4j mad7sk 2mae ma7fe ma5fil ma9fr^^e5 mag6 ma3gav 3magn 6magrings 7magrings. ma7g^^e5 ma1he mai3st 1maj 4mak. 8makararb 8makarg 8makera 2makerf 6makerk 2makerm maks5t makt1a m1akti 8maktk 2maktl 6maktsa 4maktsf 4maktsi 4maktss makt3st ma1kv mal5dag m7aldersk mal6di mal7eng 6malf mal7ge mal5k mal7le mal1l^^f8 mal7ma 8malmek mal7mo 6malmv 8maln mal1s m3alter mal9tru mal3u mal7va mal1ve mal7vo mal3^^e5 mam6 8mammaa 6mammab 6mammai 4mammam 6mammao 8mammas 4mammav 2man. m1anal mand5arb man3deb 4mane. mang2 9manga mangan3 1mange 5mangel m1angr mang3s m1anle m2ann 4mannf 8mannl 2mannsb 2mannsd 2mannse 2mannsg 6mannskn 4mannsko 4mannsku 2manns3l 2mannsm 4mannsni 2mannso manns3p 4mannspe 2mannsr 2mannss 4mannst 2mannsu 5mannt 2mans man5seri m6ant mant5rin mant1s 3manus ma1pa 8mar. 2mara 8mare ma5ret 2margs 7margs. m6arka 1marke 5marked. 9markeda 5markede 4markedk 5markeds. 6markedse 5marknad. 5marknade 6marknadk 9marknads. 2marks mar7la mar9ri mars2h 4marsjf 2marsjo mar3skj 7marx ma8r^^e5 ma3sel ma7sjok 1mass 4massef 4masset ma5stem ma3stra ma3tera mat6h 6matk mat1l 2mato mat5ras mat3res mat3ret mat9rom mat1s mat7tr 8mat^^f8 ma1un mav6 ma1va ma5verk 2mb m1barn mbe3a m5bekk mbe7ko mbe3kr m7bels mbe3m mbe3reg mberetter6 mberf^^f8re6 mbi1b mbi5ska m5bitt mbol3l m6bombes mbo3p m1brin m1bro m5brudd. m5brudde m5brudds. m7bruddsfo mbus3 m1by m1b^^f8 m8b^^f8t m2b^^e5nds m5cy 6md m2dal m1dat mde2 m3def m1di m1do m7drift. m7drifta m7drifte m7drifts. m7driftsme mds1 m5dy m1d^^f8 m2d^^f8m m8d^^f8y 2me. me7ak me5al 2meb me4backp me5be 2med. me7dag. me3dage 6medaljev me1dat 2med5b 4mede me3deb 2med3f med3gan med6hus. 5media. 8mediat me5dise 3medisi 1medl med3led 2medm me3dom me1dra med1s2 7medv med3va me7dyr me5d^^f8m me5es me5fi me3fo me2fro me1gi me1gj me1gla 6meglerk me1gr me1gu 2me1h mei8 m5eiere. m9eieres m5eiern m7eiers m8eig mein9h 9meister. 5meistere 9meisteren 6meistert 7meistr mek4 3mekani me5ki me5kj 2mekk 8meklark me1kn me3ko me1kr me9kri me3kro m1eks me1kv me1lag me5landsk mel4bu mel3dag 6meldy me8leis me1lek me4len mel5eng 2mel1f mel5ge mel6hu 2meli me5liten. 4melker 6melko 6melkt 2mell 5mellomr mel6l^^f8 6me7lov mel5st 4melt me5lun me3lur mel5ve me5l^^f8nne me5l^^f8nni me3l^^e5 me1m 8men. 2mene. men5fo 3mengd 4mengdev men3ho 1menig 5menin men5lagt. men5lagte men1le men4lig menn1l menn1s men5r 4mens men5sett men5skri men1sm men3sti men3sun men5svo mentum5 men1v 7meny meny7d men5^^e5 me3o me6os me3p 2mer. mer1d me3rekn me5rel me3rett mer1f 6mergc 6mergs 6mergt mer3h mer7j mer2kan mer8kas 2merkef 4merkep 4merkest 4merkesy 9merkings. mer7len mer9ly mer1m mer3net mer5os mer1p mer1r 6mers mers4b mer3ser mer7sin mer7sko mer3sla mer5sle mer1st mer9ste 2mert mer7tall. mer5talle mer7talls. mer7tallsf mer5tegn mer5tei mer1ti mer7to mer5und mer1va mer1vi me8r3^^f8 2mes. mes4a me5sad mes4h me1si me7sim me7sj mesjuke7pleia 4me1sk me1sl me7son me1s2p 3mess 4messel 4messo 4mesterb 7mesterens 4mesterk 7mestern 6mestero 6mesterse 4mestert 4mesterv me9sto me3str^^e5 me3sy me1s^^f8 2met. 4metalld 4metallf mete4 me1teg me5tek 6meterm 6metern^^e5 meter3s 5meters. 6meterst 6meters^^f8 me5til me1tin me1tj 7metn 1meto 5metod me3ton me7trak me3try 2mets met7sk met7st 1mett me5tv me1t^^f8 me1v me4verns 8mf m5fak m7fara m1fare m7farty m5fei mferds6 mf3f mfi5br m1fl m2flak m3fora m8forman m2formi m5fre mfrem2 m1fri m7fro mf7t m1f^^f8 m7gal m7gam m5garn. m7garne m1ge mgjen2 m2gjo m1go m5gra m1gru m1gu m9hef m5hel m1hen m5her m3hev m1hu m9hus 2mi. 8mia mi5art mi3ba mi3be mid3b 5middel. 7middels. mi7del m9id^^e9 mi7die mid5so mid5st 2mie mie5kv mi3ele mie9s mi1f 2mig mi9gj mi1i mik8 mi7ki mi3ku mi3led mile5v mi7lim mi5lin 1milj 3milj^^f8. 5milj^^f8a. 4milj^^f8an 3milj^^f8e 8milj^^f8om 6milj^^f8po 6milj^^f8prob 2milj^^f8t 4mils 7mils. mils7v 2mil^^e6 m1indu 4minep min5ers 2ming 7ministere. 9ministerens 7ministeres 7ministerne 4minnea 2minnef 2minneg 6minneh 4minnei 4minnek 4minnel 8minneo 4minnere 6minnesa 4minneti 2minnev 7minneverno m1inns 3minutt min3y mi7ov mi1p mi1re2 mis2 8mis. 3mis6b 2mise mi1sek mi1sel 6misjonsg 6misjonsk 2mis4k mi4ska mis4m mis3p miss3k miss7p mis3tro mis5tru 7misu 2mit4 8miu mi3va m5jern mje7v m1jo 5mj^^f84 8mj^^f8li 8mj^^f8lke mj^^f8s5t m1k m9kalli m6kj^^f8ringsk m2kle m5kledd m3kob m5kod m7kol m5komp m7komst. m7komste m3kon m3kor m2krin mkring3 8ml m5lak m8lap m7lau m8laups m9laups. m6lederku m4lederr m6leggings m7leggings. m8leiark m8leiarr mleie5tag m3leig m8leis mle3m m3leng ml6i m1lis m6lj m7lufts. m1ly m4lyd m1l^^f8 m7l^^f8y m1l^^e5 2mm2 m1mak mma5kl mma5m mmando7l m3mann mmar3sk mmar1t mma5str mme3dal mmedata4 mmed3g mme7ga mme1la mmel1l mmel5sp mmel1t mmen7g mmen1k mmen3tr mmer5d mme3reg mmer5kl mme3rus mmer3v mme1s mmesjuke5 mme1ta m9meter. m9metere mme3tre mme3ty mme1u m5mil. m5mila mmi3m mmut3s m2my m2m^^f8t m1m^^e5 8mn m1nav mnd5l mned4 mn7eid mne8n m8nes m1nett mne1v mn3g mn9se mn7ty 2moa 7mobila 5mobile mo1br mo8bu mo3dag mo5dalen. 3model 7moderle 1modu mo2f m1off mo5fob m5ofr mog8o m5ogs 6moh 2mok mole2 mom4 m7om. moms3^^f8 2mone 6monopolb 6monopold 6monopolu mon2r 3mont monte2 m1op mo3pl mopp8 1mora mor1br 3mord6e mord7r 5mords. 2morf mor7fed mor2ge 2morh m3orie 6morkr mor7l moro1m mor3p 3mors. mors3d mor3sel 6morsk mors7kj mor7sky 6morst 4mort 2moru 8mory mo1sek 4mosf moskva7 1mot motek8 mote7kl mote1s 4motord 2motorp mot7re mots2 mots8e mot5str mot1tr m7over. mover6by mover8h 2mp mp7bo mp3d mpe5e mpe5g mpe5k mpel5l mpe5lot mpe5rik mpe1s mpe3tr mpe5u mp1h mp7he mp3id mp1k m8pla. m5plassen mp3lei mp5lev mp3ly mpo7k mp3opp mpo5ri m5pose mp3p mp3rad m8prism mp7r^^f8r mp1s mpse6 mp2sj mp2ski mp1tr mp3ung mp1v m2p^^e5 m1rak m5ram m1reg m5rein. mrein5d m7reine m3risi m1ro mroms7 m7roms. m2r^^e5 2ms m7sag ms1ak m1sam ms1ar m1sc m7seii m1send m5senk m3sent ms3epl m9si. m7side. m3siden m9sie m3sif m1sik ms3jak ms3kab m3skad m5skaf m3skal ms8kas ms6kav m1skol ms1kor m7skrive mskue6 m3sky ms1lan m2slu m5snak m9sona m1sond m7sone. m7sonen m7soner m2sop m6spen ms1per m1s8pi ms1po mspreng4 ms9s2 m5stade ms7tak ms1tal m3stas m1stat m7stav. m3stave ms3team m5sted. m3stede m7steds. m9steg. m9stega m7stege m7stell. m9stelle msten8 m3stig m6stigi mstil4 m9stod ms5top mst5ord m1stru m1stu m1sty m2st^^f8 m3st^^f8r m3st^^e5 msun3da ms5van ms7v^^e6 m7syninge m9synings. m5synt m1syr m1s^^f8k ms5^^f8r ms1^^f8y m4s^^e5 m7tak m7tap mt6b mte1d mten1^^e5 m1tett mti7en. mtil8 m1tj m1to m1tr m6trenings m7tri m1tu m8tua m8tue mt5vanne mu2 m1ub mue9r mues1 2mug 2muk m9uka m1uke mul2 6mula mule6s mull2 mulls5 2mum 2mund munke2 munn8le munn1s munn7v 7murer. 7murere 7murern mur7k 6murn mur3p mur5sten. mur1v 1mus2 mus7h 3musi muske4 muss5l mus5te mus5u 4mus5v 2m1ut 6muy m5vanne mvann3s m9vara m9vare. m7varene m7varer. mveg5s6 mvekst6 m5verk. m3verke m9verks. m9vern. m9verne m1vo m2vu m3v^^e5pn 1my2 4myd mygg5a 2myk 9myntar. 7myntara 9myntare 7mynte myr7ka myr5l myr6la myr5u 1m^^e6l m^^e6r1 1m^^f82 3m^^f8b m^^f8kka5 m3^^f8kn 4m^^f8llep 3m^^f8n m^^f8ne9s m^^f8r7sm m^^f8r3^^f8 2m^^f8s 4m^^f8teb 2m^^f8ted 2m^^f8tef 6m^^f8teg 8m^^f8te3l 5m^^f8ten 6m^^f8tenem 8m^^f8teo m^^f8te1r 5m^^f8ter. 4m^^f8tere 5m^^f8tes. 4m^^f8teta 2m^^f8teu 2m^^f8tev 4m^^f8te^^e5 5m^^f8tt 2m^^f8y m3^^f8y. 2m^^e5. m^^e51a m^^e51bo m^^e55by. m^^e51b^^f8 m^^e57da m^^e55el m^^e57enh m^^e59er m^^e51f m^^e51g8 m^^e51h m^^e51i m^^e51j 1m^^e5k m^^e53ko m^^e51kr m^^e51kv m^^e53lak m^^e5l9gj 8m^^e5lsa 6m^^e5lso 4m^^e5lsp 8m^^e5lsu 1m^^e5lt m^^e53l^^f8p m^^e53l^^e5 m^^e57m 3m^^e5n m^^e5n5dal 4m^^e5nef 6m^^e5nena m^^e59nese m^^e51p m^^e5r5h m^^e51ro m^^e51ru m^^e51s 3m^^e5t m^^e53tas m^^e55tr 6m^^e5tt m^^e53t^^f8 m^^e55va m^^e51ve m^^e53vo 8na. na2a na7blo nabo1 na9by na3co na4d n1adop nads1 nad8sa nad7ski nad3ve na5el n1aff na7fr^^e5 n9aft nag3s2 na7h na5kri n1aks n1akt na8kv na9lag na7lands. na7landsk na7landsr nal1b nal3ei nal5epo nale1s nal3ett nal1g nal1k nal3led nal1li nall5s nal5ly nal1m nal3op nal1s2 nal1t nal8tr na1lur nal1v na2ly nal3^^f8 na3l^^e5r na5mel 1namn nam9r 8nan n1anal n3andak n6andels n7andels. nan7d^^f8rs. nan5f n1angr nan6h nan9ka nan7landsk n1anle nan9p nan7riks. nans1t na7o nape6 naps4 nap5sh n1arb nar1de nar7dr nar7ei na7riks. nar7kl narko3r nar7kv nar5la nar9lo nar5p nar5sin nar3sk nar7sl nar9sp nar5tim nar5^^f8 4nas. 4nasi 6nast 6nat. na3tag nat7h nato1k nat1sk 1natt 6nattingsd 6nattingsk 6nattingsp 8nattingssta 5natura 3naud naud5r nau3sk nau7sp nav6 n3avh navia5 3navig n3avk n1avl 1navn navn3s na7vo n1avs 1naz n5bad n5bak n3band n7banene. n7banens n2bar n3bark n1bas n3bat n1be n9bein. n9beina n7beine n9beins. nberr8 n5bes n1bi n1bj n1bl n1bo n6bow n5bre nbrenn6 n7bruk. n7bruker. n7brukere n7brukern n1bry n3bue. n3buen n7buer n1bus n9bya n7bye n7byl n1b^^f8 nce2s nch3ei n1cr 4nd nda7bi nda3f n4dagsk nd5alf n1dann nd9arbeida nd7arbeide ndar7l nd3art n7dataene n9datas nd1d4 n7defi nd1ei nd2eid nd2ek nde7kl nde1kr nde5land n6deli nde3lik n7delings. ndel2s ndel5v nde1me nde5o nde5rim n3deriv nder5k nder5lags nder3m nder5p nder3ve nde1s nde5ten nd2f^^f8ri nd1g nd9gj nd6go n3dim nd1int n1diok ndis3pr nditt5a nd1ju ndle3s nd5ligg nd1m n8dob ndoms3 nd1op ndo1st nd2pu n7draginge n9drai n5dram ndre2gr ndre5st nd3rett ndretts8 n5drift. n5drifta n5drifte n5drifts. nd2sam nd6sel nds5elv nds5ende nd7setj nd3sett nds3g nds3h nd9sid nd7sj^^f8 nd3skol nd7skot nd7skrev nd7skriv nds7kul nds7laga nd4sle nds3mi nd1son nd7spu nd1sta nd7stade nds7tak nds7tap nd1ste nd3stry nd4sv nds3vi nd8syn nd5tag nd3tei nd7tek nd5t^^f8 n7duka nd1ung ndus1k nd7veg nd1vo nd7v^^e6 ndy3l n1dyr ndy1s n1d^^f8m nd^^f8rs3l nd5^^f8ya 2ne. ne1a ne7ale ne8a9m ne6bakks 1nebb ne2ble ne6bu. ne7bui ne1da8 3nedb ne1deb ne1del neden2 neder2 3nedf 1nedg ne1dia 1nedl ned5la ned9let ne1dom ned5rev ned3riv 1nedru ned5rykk. ned1st ne3dyr ne7d^^e5r ne6eierf ne1ers ne1f n1eff ne8filmp n3eft nefter4 neg8 ne3gan ne1gar ne1gi ne1gj ne1gla ne1gr ne4gro ne1gu ne1han ne1ho ne1hu 2nei n1eie n6eierfor n1eig ne1in n3eini ne3ki ne1kl ne5kledd ne1kn ne5kom nekraft5v ne5kran ne1kv 2nel ne1la nelands6k ne7legg. ne5legge ne5leggi ne5lev ne1lis ne9liv 3nellik ne5lot nel3ovn nelse4 nelses3 nel5st ne1lu ne1l^^f8 ne3l^^e5s nem6 ne1ma ne4mati n3emb ne1mer ne1mi 6nemle 1nemn 4nemndsl ne1mo ne8mon 2nen ne1na nen5d^^f8rs. ne1net ne5nev nen5gan n3enhe nen1k nen7lands. nen7landsk nen1st nent5ei n1entr neon5s ne3or ne1p ne5pleia ne7pleier. ne7pleiere ne7pleiern ne1ram ne7rap ne1red ne5ref ne1rek ne3rent ne3rest ne1ret ne1rev n3erfar ner3f^^f8 nergi3k ne1rik ne3rim ne5rit neri9v ner7kn ner1ku ner3la ner6la. ner2le ner1m n1erob ne5rok ne1rol ner1r ner5si ner1sj ner3sko ner9stan ner9sten ner3tal ner1ti ner7tia nerve3s 1nerv^^f8 ne2r^^e5ds 2nes 7nesa. nes8er 3neset. ne3sett nes2i ne1sj nes4ka ne5skam ne3skar ne1skj ne1sko ne1skr ne1sku ne1sli ne3slu ne7sl^^f8 ne7sn^^f8 ne7son ne1s2p nessammen7 ne3stas ne6steins 3nestl ne1str ne5styre. ne7styrer. ne7styres. ne1st^^e5 ne1s2v nesyke4 ne3s^^f8k ne3s4^^e5 2net. 4neta ne3taks ne1tal n3etasj ne1teg ne1tek ne1tin ne1tj ne1to ne1tr net1st 4nettan netter4 4nettk nett3l 4nettr nett3st nett3su 5nettv ne7ty ne5t^^f8 ne5us nev5d ne1ved ne1vel nev2i ne5vins. ne7vip ne1vis ne7vitne. ne9vitnet 1nevnd 3nevro ne1v^^e6 ne1v^^e5 ne4yt n3fab n2fags n1fak nfall4 nfalls5 n7fals n7fann n5faring. n7faringa n7faringe n9farings. n5farte nfelt6 nfer8 n5fert n5fib n5fj n3flo n3flytt n6flyttings n5flyv n6folkar nfo7m n5forf n3forh nfor3l n6forn n3forr n2fos nfo3se n9f^^f3 n7fram8 nfrem8 n5fru n3fr^^f8 n1fu n3fy n7f^^f8ling. n7f^^f8linge n7f^^f8rd n7f^^f8ringer n6f^^f8rings n7f^^f8rings. 4ng ng8ad ng3af ng1ak ng3art n2gasj n1gass ng5ato ng2dri ng1dy nge3lan ngel3d nge5ligg ngel6to nge1mi nge1mo nge7no nge1s2 ng7fr ng1g ng1h ng7id n7giva ngjen4 n7gjera n5gjerd n9gjere n9gjerings. n1gjet n7gjev n2gjo ng2ka ng2kok ng3lei n3glemt ng1lis ng3lyse ng3l^^e5 ng5na ng5nem ng5net ng7ofr ngo7k ng7ond ng7ope ngo3sp n5grad. ng5rest ng1rev n1gru ng6salt ngs7elv ng4sj^^e5 ngs9mo ng5stad. ngst5ret ngst5rid ng6ta. ng7tor n3gud ng1und ng3vare ng3verk ng2vin ng2vis ng5vis. n1gyl ng1^^f8y n5g^^e5rd. n7g^^e5rds. n5hag n1han n1har n5has n1hav n7hek nhel8 n3hend n3hes n2hil n5hof n8holds n4holm n1hu n6hyr nia7d niande8p nid2 ni9del. ni7dele n5id^^e9 nid7g nie2s ni2f n3ifr ni3go ni7gr^^e5 ni1he ni2hi ni9j nijord9 nik1kj ni7kle nil6 ni3led ni7mar 2nin nin7al n1ind ning7la ning5o nin3gra ning9sake n1inj ninn8 n3innb n3inns n1ins n1int nions1 ni8os ni5ov 2nip nir8 ni3ri n2is ni5sem ni5serie ni3skj nisk3o ni7sol 2nist nist7h nist7l ni7su 2nit ni9tida ni5tiden ni3tim nitt2s nitts3t ni3tu ni1ub 1niv niv5ei 4nivo niv5r niv1s nivs8m ni6^^e5rsa nje7gr nje1m nje1s nje1t n5jor n3jui n3juv n5kada n1kal n7kallings. n1kap nkapp4 n3kasse nk2ba nk5eid nk3eie nkelt1 nk5enh nke3rad nke2rot nke1s8 nk1gr nk7ha nk5ho nki3d nkilo8 nk1inn n5kjed n7kjennele n3kjent n4kjer n1kjo n7kj^^f8l n5kj^^f8nn. n5kj^^f8nne n5kj^^f8per n7kj^^f8ring. n9kj^^f8ringa n7kj^^f8ringe n7kj^^f8rings. n3kj^^f8rt n7kj^^f8t. n9kj^^f8te n5kj^^f8tte nk1k2 n3klip nk1lok n5klor n3klub nk5ly n3kl^^e6 nk1l^^e5 nk7m n1kny n1ko n8koa n2koe n2ko7f nk5oks n2kol n7kole n3kolle n5konv nkor4 n4korts n5kraft. n9krafta. n5krafte n5kraftv nk1red n7krem. nk1ren nkring4 n5kru nk1si nk1s2k nk1sp nk1st nkt2h nkti4 nkt8le nkt1sk nkt5spe nkt3st n1kul n5kun n7kup n5kvit n2kvo n7k^^f8yrd n9k^^f8yring. n9k^^f8yringa n9k^^f8yrings. n9k^^f8yrt n1k^^e5 nlagt1 n7lak n3lam nland4 n3lande nlands7t n1lap n7lar n1las n1laus n5lav nle8 n5legenes n7legers n5leia n3leid n3leie n8leik nleis7 n1lek n1lem n2lende n1les n1lev n6li. n3lie n3lim n1lin n1lit n1liv n5lovs. n1lu n1ly n1l^^e6 n2l^^e6g n1l^^f8n n4l^^f8si n9l^^f8sninga n7l^^f8sninge n7l^^f8snings. n7l^^f8ysinge n9l^^f8ysings. n7l^^f8yst n1l^^e5 n1m n6malmg n6mari n3mes n7met n9mi n6monopola n3my 2nn nna5bo nn2ad nn1ak nn3alg nnan9sk n8nar nnar7k nn9bane. nn7banen nn9baner nn5bild nn2bit nn1bra nn1bri nn7bruke nn8bue nnd8 nn3dale nn1dam nn3dele nn5dj nn9drag. nn1dre nn7dr^^f8 nn1dy nn1d^^f8 nne8bor nne8bu nned2 nne1g nne1kr nne3lit nnel1l nnen1s nne2ps nne3r^^f8s nne1st nne1ve n5nevn nne3vo nn1fe nn7fek nn1fi nn1fla nnfor4 nn1fr nn7f^^f8rsel. nn9f^^f8rsels. nn9f^^f8rslen nn7f^^f8rsler. nn7gav nn1gi nn1gje nn1gl nn7gra nn3gro nn1her nn5hv n8ni. nni8b nnis1s nnis1t nn1j nn1ka nn1ki nn3kje nn1kl nn3ko nn3kran nn5kri nn1ku nn5kv nn5land. nn5lands. nn1len nn1lo nn2l^^e6k nn3l^^f8pe nn2l^^f8sn nn2m^^f8 nn3of nnom1i nnom5se nnom3sy nn1op nn1or nn7ord nn3pr nn5p^^e5. nn3rik nn5salg nn7sang nn2sc nns7enk nn3seri nns3es nn5sete nns1in nns5is nn1skj nn3s2kli nn5skrev nn5skriv nn5skue nn6sk^^e5 nns7las nn1slu nn3sof nn5sol nns1or nn5spare nn5spart nn3spei nns9s nnst6 nns5tab nns7taka nns3tal nn7stande nn7stands. nn3stei nns7telt nn5sten. nn9stens nn3ster nns3tes nn3stev nns7top nns3tre8 nns3tro nn3stru nns3tv nn1sty nns3var nns5vo nn7syns. nns1^^f8k nns2^^e5r nn1tau nn1teg nn8tei nn1tem nn3tet nn1ti nn5tjent nn1tr^^e5 nn3tu nn1t^^f8 nn5uen n1num nn1ut nn7val nn1var nn7ved nn3vei nn1ves nn3vis nn1vo nn2v^^e6 nn1yn n9n^^e6ring. n9n^^e6ringa n5n^^e6ringe n7n^^e6rings. nn7^^f8k nn1^^f8v nn1^^e5 no1ak noas3 2nob no5ba no5bet no1bi no1br nock5out. nock5oute no9ei no7fa n1off no1fi n7ofr no8ge no9gj no5in 2nok8 nole8 no3ler no9lev n6oljem no1lok nom5ba nom3bo no1met nom5gang. nom7ganga nom5gange nom7gangs. nom5gi nom5gri nom1g^^e5 nom9h nom3k nom3l nom7ma n7omn no3mon noms4 nom1sk nom1sl nom3sp nom7st nom3su nom1t nom1v non5d non3f non1sk non5t non7v no7o no3pl n1opp nopp2f nopp8k nopp7rei nopp6st 8nor. 8nora nor2d n7ord. nord6a5v n1orde nords4 3noreg 1norge n1orie 1n6orm norm2l^^f8 nor3sa nor5st nor5tr no1sal no7sit no1sj no5sp nostrati5 3not. 7nota. 8notati 8notatu not5b nover8d n5oversi n7overv now3 7n^^f3 n1p n6plateg n9plo n5posten. n5postens n5pre nr2 n1ra n8rar n1reg n9reisa n5reise. n5reisen n7reiser n1re2k nrekk6 n3rep n1res nre4t n7rev n5ringa n7ringi n1ris nro8 n7rod n1ru n1r^^f8 n1r^^e5 6ns ns1ad nsak1h nsak5r n7samla. n5samlet n7samlings. n5sann ns3ant n3sco ns9do nse9al nse6at nse3del ns3ege nse1la nse7lik nse7lin ns3elv nse3mer n6senk ns5enti nse1pa nse3po nser6t nses2 nse1sk nse1sn nse1sp nse1sv n9setjings. ns5eur nse5va ns3fi ns3h n7sigl n1sikk n1sikr nsin3dr n1sir ns3jak n7sjekking. n7sjekkinga n7sjekkinge nsje3v n7sjuk n1sj^^f8 n3skall nskap2 ns4kast n5skatt n5skau ns8ke n1skif n3skill ns5kjenn nskjenne8 n3skog n7skola n5skole. n5skolen n6skoleni n5skoler. n9skolers n9skoles. ns3kom ns3kor n9skots. ns5kraftp ns3kred n5skrek n5skrif ns7krin ns1kro n5skru ns4kue n7skula n7skule. n7skulen. ns3kuli ns1kv n7skyss ns1le ns1li n5slutt ns3mal ns5mann. ns5manne ns3men n8sm^^f8l ns1na n5s2nar ns3nas ns1ne nsned4 ns1no ns1of ns2ok ns3ond n3song nsopp8 nsor1p n9spara. n7sparingene ns1ped ns5pels ns1per n3spik ns7pris n4spr^^e5kk n6spr^^e5ko ns6rettsd ns1s2 nsse2 ns5si ns5tak. ns5taker. ns5taket n1stam nst3art n1stas nstats4 n1sted n3stemn n1stif nstil8 nstill2 ns3time nst5is. nst5ise ns1tj nst7k n5stoff. n9stoffa. n5stoffe n7stok n1stol nstre5ka nstre5m nstre7s n3strip ns6trygdl n1str^^e5 n9stua ns7tuk n2sug ns1uk n6sunda nsur7f n3sverg ns1vi n5sv^^e6 n1syk ns2^^e5p n5s^^e5pe 2nt n8ta. nta8gra n7takk n6talsf ntal5t n5tang nt1anl nt1app n5task nt4at nt1b nt3ba nt3d ntdata8 nte3del nte1e nte7ge nte3gi n5tegni nt5eini ntekt6 ntekts3 ntel8 nte7listen nte7lister. nt1emb nte2mis nt1enh n7tenk nt4er nte5rett nte5rike nter1k nter3sk nter3so nte3sk nte8skap ntet5s nte7tv nt2eu nt1gi nt9gj nt9g^^e5 n6tidsp nti7i nti5kas nti3kl ntil7be ntil8s ntil8v nti3met nti1so nti3sti nti3sto nti5ves n3tjene nt1la nt3lei nt5let nt3lign nt5lik nt3ly nt6mannsp nt1net nt1no n2togs n1tolk nt5om4f nt7omn nt1op n3toppe nto5rent ntor1m ntor3n ntor3t nt1ov nt7p ntre6s n5tril nt5sal nt1sat nt1se nt9set nt1si nt6sin nt1sj nt7sku nt7sla nt1sp nt8spo nt2spr nt1st nt8st^^f8tted nt6st^^f8tteo nt6st^^f8tter nt7svar nt5s^^f8 nt1t ntu8 nt7ub nt1un nt1utt nt1v nt7vi ntygge4 ntyr1s n8t^^f8k n3t^^e5k nt7^^e5r. nt5^^e5rs 4nu. 8nua nuar1 2nud 8nue nuft8 nul4 null5f 5numer 3numm 5numr 6n1un nu1o 8nup nu3pl 2nur2 2nus nus5h nus8kl nus3si nus7ta 2nut nut7eri n7utk n1vak n1valg nvann5sta n7vara n3vare. n5varen n3varer n3vask n1vat n3vege nver2 n1verd n6verdip n3verk. n3verke n5verks. n8verksh n2vernf n2vernl n4vernt n4vernu n1vev n1vid n1vin n6vin. n3vip n1vir n5vitne. n5vitner n5vitnet n1vok n1v^^f8 nyan2 8nyane ny3ank 8nyar ny1da ny4ga ny7gam ny3gi 1nyh ny4ha 1nyk ny3kj nykle7b ny3ko ny1la ny7l^^e6 ny6mar ny3pl ny1po ny7rak ny7rev ny5ri nys2 ny5sep ny5sil ny1sk ny1sl ny3sn ny7sp ny6stu ny5tek ny3tr 4nyttm 4nyttr 2nyttse ny1v ny8van ny4ve ny8ving n^^e6r5d n^^e6r9g 2n^^e6s n^^f85bi 1n^^f8d 4n^^f8dd n^^f8dde5 n^^f85dek n^^f8d1r n^^f8d3sk n^^f8d5sto n^^f89dun n^^f81f n^^f8g8 n^^f87gr 1n^^f8k 4n^^f8ks n^^f87m n^^f85p 4n^^f8r n^^f83ras n^^f8r1b n^^f8r1se n^^f81ry n^^f8s2 n^^f81sk 3n^^f8ste n8^^f8va n5^^f8y. n7^^f8ys. n^^f8y7st 1n^^f8yt n1^^e5k 1n^^e5l n^^e55lev 2n^^e5lsh 6n^^e5lsr n^^e5l3^^f8 7n^^e5m. 7n^^e5me 7n^^e5ms. n1^^e5p n9^^e5ret n3^^e5rig n3^^e5sen. n7^^e5sens n^^e55v^^e6 2oa o1af o7akt o3alde oal5g o1all o3alt o1am o1anl o3ant o1ap o5arbei oar5enh oar1m oar9n oar7p oar7v o1au o5av 2oba o8ba. o1ban o1beb obe5p 2obi obin6 o1bio 1obj 1oblig o7bl^^e5 o5bos 2obr o1bran o1bru 1obser 2o1bu o2bus 2o1by obyl7 2ob^^f8 o7b^^f8k o5b^^f8lger o3b^^f8r 2ob^^e5 o1ce 2od od2a oda9b o9dalens o1dam od3ap odata2 od7att8 od1b odd9ei odde5s 3odds odd7sp od2e ode3h odel8 ode3l^^f8 ode6mu oder1p ode3se od1g od5hu od3igl odis8 o5disp od2k od9kl od3ko od8lei od7m ods4ka od1skr od3sn od3stol ods1tr od1t^^f8 od1v od^^f8ds4 od1^^e5 2oe6 o1eie o1ek o1ele o5elv. o9elva o5elven. o5elvens o9elvs oen3a o5enc oencefalo8 oeng3d oeng7r oeng1s oeng3u o2er oer1p o7ett o5ev of4 2ofa o6fei ofe3st 9offera. 5offeret off5id 1offis 6offisersf 2ofi o6filmp o3fin o3fir o6fjordt 2ofo o9fol o5foru o9fos of2s 8oft 2ofy o1f^^f8 2og og7av og3da og7dy o7geb og2en ogen3r o1gev og9f ogge3ra ogg5j og1gr ogg7s og5ha og3he o8gig ogi1o ogi7str ogi3v o1gj og5jer og1la o7grav og1rei og7rik o1gru o8g5r^^f8 og7s8an og1s2e og1si og8sin og1sj og7s2kj og3sko og7skr og5sle og1sp og2sta ogs8tel ogs6ti og4s5tj og5s2tre ogst7ret ogs7ve og5sy og1t og1un og1v og9^^f8y. og7^^e5s 2oh o7handlar. o7handlara o9handlare ohans7son. ohol1m ohol7s o1hu oh^^f8re5 o5h^^e5 2oi o1idr oid5t oid7v o1im o1ind o1inn oinn6b oin1o oin5sl o1inst o5jak o1ju ok3aft ok1ak okal1k okal1v okan5i ok7ark ok1ef ok5eid ok7els ok2f^^f8ri ok1ho o5kine okinn3 o1kj okj^^f8p4 okk3and okkar5v okke3h okke1s ok3kje 3okkup o5klave ok7lei o3klin ok3lis o7klo o8klu. 2okn ok1no oko4 ok3oms ok1orm ok7ov o1kre o6kredittk o1kr^^e5 ok1sam oks6e ok5serie oks6i ok7spe okst2 oks4ta ok7sto okt2a 3oktan o1kult 8ol. ol5anl ol1ant olar5k olar1n ola7str o9lau olav6 ol1ba ol2be ol7bel ol3dag old6o ol1dri olds1t 4ole ole4boks ole1d ole3f ol9eig ole1in ole1m ol3ener ole1p o7lerk o1lerr ole1s ole1v oleverk7st ol1fa olf5i ol8fj ol3f^^f8 ol1gl ol8gro 2oli olin3t 1ol6j 6oljeme 2oljep olje1r 4oljet ol7kal ol7kana olke1s ol8kos olk5t ollen3s ol3lig oll1m ollom4 ol8l^^f8 ol5menn olme3s ol1mi olm2s ol6m5^^e5 2olo olo1f ol7os. olo5sa ol7ose olo7si olo5ver ol4porte ol3set ol2sik ol2sj ols8o ol3sti ols8v ol5sva ol6svik ol3tak ol1ti ol3ung olv5d ol6vei ol7vend olv4fi olv4to oly4h 1olym o1l^^e6 o1l^^f8 o1l^^e5 2om. 2oma o5maf o1mag o7maka om1ald omanns5 om1arb o1mark om3ars omar7^^f8 o5mask o8maskinb o6maskinp o5maso om5av ombe3la ombe3t om1bj om5bl 5ombod om3bruk 1ombu 1omb^^e6 om6b^^e5 om1d 2ome om1ek omen2 o5menn 1omfan om5farte om1fe om7fi om4forme om6fra om7fu 1omgre 2omh om1ha om2hy omi7g omi1mi om3ins o2mis om3je om2ko om2kved om1la om1lu om2l^^f8 om3l^^f8s 2omm ommar3k 3omm^^f8 5omn. 1omnen 2omo o5mobil. o1mome omor2 omo7se 1omr 2om1re om1rin 2omro 2om1ru 5omr^^e5 7omr^^e5des. 1omset 4omseta om1skr oms1tj oms1un 2omt. om2ta 1omtal om1ti om1var 1omven 8o2my om7yrk o6m^^f8k 2on on7ak on1anl on1app on1arv on1av on1b on3ba on8c on3dam on1dat onde5lag. onde7lags. onde1p onde5rest on7dro onel4 o8nes one9set one7sk one1te one1v on3f^^f8 ong1d onger2 onge5t onge7v^^e6 ong3ka ong7ly ong7stads ong3te ong5^^f8 on3h on3id on5ild oni1m on5inf oningsh^^f8g7 on1inn oni1o oni5p oni7so oni3ti oni3ve on1ka on1kj on3kra on1la on1led on1l^^f8 on1nu on7ord on1ove on1r ons1k ons1l ons1p ons5tas on2su ons3und ont4ak on7taler on9tau on3teg on1tj on1tog on7ul on5ur on7ut o5nyt o6n^^f8 on5^^f8d on3^^e5 2oo ool7a o1opp oose4 o1ov oover4 2op. 2opa opa3ka opan5d opar8d opa1v opel8 2open o5pent ope2r o7pero ope3s 2opet o1pil oping3s opi3r 2opl o6pla. o5plant o1plat 2o2p8o o3poen 2opp. 6oppa opp9al. opp9ale opp3art 1oppd 2oppe 1oppf 1oppg 1oppl opp3lau opp3lei op4pr opp3reg 1oppt 3oppv opp1^^e5 2opr o3pro op5r^^e5 o5psy 8opt. 8opte o1pub o3pus opy5 op^^e58 8or. or7add ora3gr or1aks or3ald or3alte or3angr or3arb or3att or2a3uk or1av 4orb or1bak or7bie or3bil or3bok or8brun or3byg 4orc 8ordd ord1ei 8ordel orde8p ord9epl order7l or8det 8ordfo ord5ise ord3it 2ordl^^f8 6ordningsr 2ordo 2ordp ord7se ord3skr ord3som 2ore ore9bygginga ore7b^^f8 ored6 ore9fu ore1h o5reim orein8 o3rekk ore5lan ore2sp orestan7 o7rett. o9retts. ore7ve ore3vis 6orf or3far or9fel or3fla 1orga 2orga. orge2 6orgen orgen3s or2gra or8g^^e5e or5hald or1hav or9holdt or7hu or8h^^e5 ori5b or5ibl 3orient 2oris6 ori7tab ori3ti ork2 or9kak 1orkes ork9h or3klu or7kl^^e6 or7kl^^f8 or8kna or3kon or3kr orks4 or3ku or3kva or8leg or1lev or7lin or1mag or1mak 4ormb orme8l or5merk or5mestr or3meta orm8len or3mor 8orms orm1un or8m^^e5t or3nev orn5k orno1s orn1si 4oro oro4f or7off oro7j or1op or5pan or3par or8ple or3pr or7rei 2ors ors5alt or8sand or7sans ors2d or3sei or8set or6sildf ors2k orsk5ei orsk9l or7skul or1sle ors5m^^e5l. ors9m^^e5la ors5m^^e5le ors5m^^e5ls. ors2o or1spo or5star or8stavn orste2 or7sten. or7stens. or9stev or1sti or7stilt ors5tro ors8va 2ort ort3and or8tat or4t1av orte7ig ort3erm ort6hvittb ort1l 3ortod ort1om ort3ori or3tra or8tran ort3res ort3r^^e5d ort5sek ort3skr orts5la ort1^^e5r orud3 orut9ane orut3be orut5f or3utr or5vak orve8l or5vilt. or3vin orv5s orv3t ory2f or9^^f8ker or9^^f8ket or7^^f8ki or5^^f8kn or7^^f8kt or5^^f8r or3^^f8v or5^^f8ye or7^^f8yg o5r^^e5d or3^^e5re os6bak o1seks ose6lei os2en osen9g oses2 ose7sl ose3sm o2sf osfor5f os2hi o1sig o1sil o5sjokk. o9sjokka o7sjokke osk3ei os4ki os9lig os2lo1 os5lu os2m o1smu os1n^^f8 os2o osom5b o1son os7ove os3pal oss6e osse5v oss3kj oss5ko oss9lag oss7tro ost3adr ost5egg ost2ei o5steine ost4el osterk7s ost4hum ost3leg ost7lei ost1om ost5op ostopp4 ost7ordra ost3ran os6tu o1styr o6styrem o5st^^f8tte. o5sui os8va os6vo o1sy 8ot ota2 ot7ald otal5f otal1l otal1s o1tap ot1arg ot9arm otat5s otav6 ot8bana ot3br ot6bu ote1d ot8ei ote2k otek5i otek1k otek7la otek3le otek5ten otel6 ote7lev otell7b ot5ende o5tenest ote5ram o5terape ote3ret otet7ri otet1s2 ot4fal ot1ga ot5gift. ot5gifte ot5g^^e5 ot4hy oti2 o1tid otid7d otika1 ot7iko o1til6 o1tj ot5jer ot9ly otn3f oto5a oto3b ot3off oto7gram otor1d otor3m otor1s oto1se ot2pu o1tran ot7red o5try ots7d otshus7 ot3sn ots8op ot7spe ot1spi ot7ste ot7sty ot1sva ot8ta ott5art ot7tegn ot8tek ott3l ot7tre otts1p ott3sti ott7v o1tur ot5va ot1ve ot7vek ot1vil ot7^^e5 2ou oul1 our2b our2m outan7 out4f out5k 2ova o3val ovan7f ov1arb o3varm ov5art ov7arv ov7da oved1 oved9d oveds2 oveis9 o5veis. o3veks ovekt6 ovel3k 4ove6n 8overb^^f8 over7dag 1overf 1overg o5verkn 7overko over7m 3overna overs2 8oversb 5oversik 8oversv 3overtr over5var ov3f ov3give ov5gjer ov7gl ov1gr ov7ha 2ovi o7vid o1vir 2ovj ov6le ov7lem ov1ly ov9ma 2ovni 6ovnsp 2ovo ov1or o3vot ov1ov ov1sa ov3sel ov5si ov7skr ov5sla ov1str ov7sun ov4syk ov3ta o7v^^e6 oy7l oys5l o1yt oy7tr 8oz o1^^f8 o1^^e5ri ^^f4r5b ^^f4r7ei ^^f4r5k ^^f4r7l ^^f4r5r ^^f4r3v ^^f4r7^^e5 2pa. 1padl pa1j 6pak. 8paka 2pake 1pakk 4pakkeb 2pakkek pakk7esl 1pala pal7ak paler8 pal8i 1pall pal5l^^f8 pal2m 2palmev p3alp 6palt pa5l^^f8 pam2 pa1me pa3mi pane2 6pane. 1panel pang3s 9panne. pans4 4panto pan5tu 3papir. 5papire 6papirei 4papirm papp5ri 1parad 5paraf 1parag 8parai 3param p1arb par8bu pare1a 4parek pare3m par3ess 1paret 6pari par2k 4parkd 1parla parm8 par5tal par4ti 3parti. 3partie 2partip 6partir 5partis. 1partn 4parto 6partp parts7 3party 8pas. 2pase 1pasie pas3k 8passarm pati3st 5patru p7attr pa1tu 1pau p1ba p7ber p1bi p1bl p1br pbrots6 p1buds p9budt p6byggings p5b^^f8 pd8 p1dan p7dateringa p1de p1di p5drev p5drift. p9drifta p5drifte p7drifts. p3driv p9dro p1dy p1d^^f8 2pe. 2pea 1pedag 4pedd 6pedi pe3dig ped5l pe2do pe3dom pedo7n pe7dre pe5dri pe3dy pe7d^^f8me. pe9d^^f8met pe5d^^f8mme. pe7d^^f8mmer. pe7d^^f8mmes pe5d^^f8mmet 8pee pe1f pe5fi pe9for pe4fos p5eft pe1g p5egg pe1h pe7ha pe5he pei4 pe1in pe1kl pekors6 pe1kr pe2ku pe5k^^e5 6pela pe5l4aks pe1lan pe5lat pel3d pel1g pe3lim pel5sei pels2i pel7skar pel5spa pel3st pels5v pe1lu pel1v pe1l^^f8 pe1ma p1emb pe1me pe1mo 2pen. pen1ar 4pende p5enden. 2pene 7penga penge3l 7pengen penge3r 5penger. pen7gl pen1gr 8penh pen5kj pen1l 4pens. 1pensj pen1sk pens6m pens8o 7pensu 2pent pen3til pe7os pe7pleia pe7pleier. pe7pleiere pe7pleiern pe1po pera3f pe1red pere5li pe5rense pe5resp per5esse 1perio per1j per3kj per5leg per5mo pe3ros 8perra 8perre perre6t per3sk per3sl 1perso 4perspi per3tal pert3r^^e5 pe1ry pe8r^^e5s 2pes pe1se pe1sj pe1sk p3eske pe1sl pe1sn pe1s2p 5pess pe1st pe1su pe1s2v 2pet pe1tal pe7tau pe8te. pe5ted pe1teg pet6i peti3m pe5tin pe1to pe1tra pe1tre pe3tri petro7g pets2 pet7sp pe3t^^f8 pe2u pe3un pe1v p5evn pe4v^^e6 8p^^e9 p1fan p1far p1fe pfi6 p1fig p1fis p1fl p6flys p2ford p1fr p1fu p2fy p3f^^f8lt p7f^^f8t p1ge p7gif pgjers7 p1gl p5gn p1gr p5gu p5g^^e5e 2ph p9haling. p7halinge p9halings. p3has phav2 p9hend p5hengi p5hengt p3hent p1hes p2hi phjelpe8 p3hul p2h^^f8r pia7se pi7b pide4 pi7fl pig8 p7igj 3pike 6piked 4pikee 8pikef 6pike3h 6pikek 4pikel 6pikem 6pikere 8pikev 7pil. pil5f pill5b pille5g pill2op 3pilo pil3sp pi1ma ping1r ping3sa ping7si pings4to p1inns pino8 pion1s 1pipe pipe3re 6pipes pir3b pir3d pir1g pir1m pir1s pir1v pis2 2piso piss6l piss5p 2pit2 pitte2 pi9ve pi7vi p1ja p5jern. p5jerne p9jerns 7pjusket pjut5 pk8 p1ka p1kje p7kjo p8kj^^f8pan p8kj^^f8pend p5kj^^f8pst p3kj^^f8pt p1kj^^f8r p9klo p1ko p3komi p1ku p1kv p3k^^f8 pl8 2p1lad 6planana 8plane. 2plang 6planh 1planl 6planmo 1plan3s 8plansa 6planteo 4plantil 4planu 4planv 6plassb 8plassel 7plassenes 7plassers 6plassl 6plassp 4plassv plat6 4platef plate3l 8platep p1led 3pleie. 4pleiel 4pleiem 3pleien 2pleiep 5pleiers. 9pleierska 7pleierske 8pleieru 5pleies 4pleis ple7ta 4pliktav 2pliktb 8pliktl 4plikto 2plikts 7plikts. 6pliktt 2plin p1list 2plit 2plo2 8plogk p1lok p3lue 7plur p1l^^f8f p1l^^f8n p3l^^f8per pl^^f8s7b p2l^^f8sn p7l^^f8snings. p9l^^f8ysa p9l^^f8ysings. p7l^^f8yst p1l^^e5 p1m p4mannsf p4mannsi p6mannska p2mer p3merke p3merki p2modi p3my p6m^^e5lings p7m^^e5lings. 6pn p3nevne p7nevning. p9nevninga p7nevninge p7nevnings. p7ny 8po. po5fl po2k 3poka pokal3l 2poke 1pol po3lag polde4f polde4m 2polek 2pol3f pol5m 6pol5p pol1v p7oms pong5s6 7ponn pon7tak pon7v pop1a po3pla p7opn pop3pla pop1s por5br p3ord p1org 3porn 4pornos por5p pors2g 8port^^e9 port3ro por3vek 4pos. 4poset pos3ett 1pos4t 6pot. po2te2 5potensi 2p2p p8pa pp3angr pp5ank pp3anl ppa3pe pp5arr pp3bel pp1do ppe7a ppe3di ppe5ge ppe3i ppe3ku ppe3lag ppe1mi pp9ender ppe5rad ppe5rest ppe5rett ppe3rit ppe1s ppe3tak pp3etas pp5ett pp3han pp8hel pp1id pp1il pp5im ppin4 pp7ir pp1j pp4kok pp2kom pp3last pple4 pp3lesi pp3lest pp5lett pp1na pp3nes pp3net pp1no pp1old pp1op pport3s pp5p pp3ra pp5red pp5reid pp1ren pp9ro. pp7rot pp1ru pp1r^^e5 pp1sak pp3san pp3sat pp1ses pp1sj pp1ska pp3skj pp3skre pps8leg pp1s2p pps3tem pp1stj pp5stra pp1stu pp1ti pp3tren pp1tu pp1ut pp3v^^e5 pp3^^f8s 1pr2 pra5b 8prag 3prak 8praka 6prake 6praktorb 2pran prangs4 pran1s prat8s 2pray pre2 2prede pre3des 2predn pre4fi pre8g p9reinsking. p7reinskinga p9reinskings. p5reise p5reist pre3kli 3prem pre5me 2pren pres2 2presj 4pressef 4presseu 4prestem 2prestm 4prests 5prests. 2pret pri2 2pring p3ringt 4prinsb 4prinsf 2prinsp 7prisings. pris1k pris1l pris1s pris1t 2prit 3privat pro2 8profer 2prog. 2proge 2progl prog7s p3roi 2pru p7rydding. p7ryddinge p7rydning. p7rykken p5rykki p5rykks. p5rykn p1ryt pr^^f8r4 pr^^f83s 4pr^^f8vea 2pr^^f8vek 6pr^^f8vere 5pr^^f8vet 2pr^^f8y 2pr^^e52 pr^^e5k1k 2ps. 8psa p1sam p1sc ps9d 2pse pse8d p3see p6s1el ps5elv ps5ely p4seriel p4series ps2fa ps3ho 2psi ps1kil p5skip. p9skipa p3skipe p7sko. p5skoe p7skrap p3skriv p3skru p3skry p1sky ps1le p9slo. p1s4l^^e5 ps6meglerf ps8meklarf ps6meklerf ps1n ps1o p4spin ps9ple ps3pro ps7pu ps5s2 pst2 p3stab p7stak ps7tal p5start. p5starte pstart4s p7starts. p7stas p3sted p9stein. p9steine p9steins. p1stig p1sto p4sto. p8str^^f8 p3styl p5st^^e5e p1sum p7sup ps2us ps1v 1psyko p1s^^f8k 2pt p3takt p1tal pt7ark pte8 p1teg p9tek. p9teki. p7teks p6tellings p7tellings. p9tenings. p5tenn p3tent pt3g pti8 p3tjene p9tjeninga p7tjenings. pt5n p5toa p2ton p3trav p1trek p6trenings p3tri p5tru p1try p1tr^^e5 pt5s pt7t ptus7t p5uka p3uke. p3uken pul2 pull8 1pum pumpe5r p1unde 8punktg 6punktm 8punktsv 8purd 2purt pur5u purve2 pus8s put8 3puten p5vak p3ved p1vei p6veiet p5vekst. p5veksten p9vekster p1ver p1vig p1vin p6vinnerc p3vise p7visnings. p7visningsl p7visningsp p3vist p1vo p1vu py8o pyr6r p7ys 1p^^e6 p^^f8r2r p1^^f8v 1p^^e5 2p^^e5. 7p^^e5a p^^e53an p^^e5d8 p^^e51dy p^^e54fa p^^e57fl p^^e58g p^^e52h p^^e51ka p^^e58kar p^^e51kl p^^e56kom p^^e51kr p^^e54mal p^^e51mo p5^^e5n p1^^e5pn p^^e5re4 p^^e5s4 p^^e58se p^^e55sli p^^e59so p^^e57sp p^^e52sy p^^e5t2 p^^e51te p^^e51tr p^^e51tv 5p^^e5vir que2 8ra. ra3ar 1rabat ra8bed ra3bela ra3bet 2rabi ra3dag 6radark ra6de 3radio. 7radioa 3radioe 8radioerf 6radiof radio5n 7radios. 5radiu r1adre rad3v 2rae ra4fei raffe3r ra1fra rag2m rags8e ra6he ra1hu 5raid 5rail. ra5int rak8h ra4ki 3rakki ra5kob ra3kop rak3re ra5kro raks4e rakt1r ral3ans ral1b ralde6 r3alge ral1k ral4kr ral3lag ral3led ral5lek ral1n ral3sp ra7lur ral1v ra3l^^e5 rama1l ram1ar rama1s ram3be ram1f ram7fo ram5ho ra1mil ram7kj ram3lei ram5meda ram1o ram3or ram1r ram9ster ram7sv ram7te ram4tr ram1ve r1anal r3andel rand9l rand3n rand7p r8ane 3ranet ran2g rang7sa rang3st rank6 8rankek ran5kj r1anl ran5la ran7lig r1anm rann5ett rann1s rann5t rans2 ranse5m ranse3r ran7sti 6rant ran3tri ra5n^^f8t rapi3r rapi7s ra2po ra5poe r5appl 1rappo ra3pu r1arb rare8 rar7el ra9renta ra5rente. ra5renten ra5renter ra1rep rar9he rar7ka rar5la r7arms. rar1s r1art rar7tim ra7sab ras3f 8rasistb ras5ma ra7son ra3spi ras7pr ras3st ra3stil ra1str ras5v ra3teno ra3tim ra3tog ra5tol rat9ro ra9tru rat7v ra7ty 1raud raude9 raus8 raust7la rav2fer ra7vil rav9k rav7lau rav3l^^f8 ra7vot rav1s rav7ski rb8 r3bak r6bale r1ban r6banes r2bar r3barb r3barn r7base r5batt r7bef r3bein r8beins r9beins. r3beit r1bek r1ben r5ben. r5bena rber3m r1bil r2bin r7bio r1bl r7bla r5ble r3bli r3bl^^e5 r1bok rbok8h r7bonde r2brit r4bukka r2bul r8bur r9byan r9byar r1bye r1byg r7byggings. rby5re r2bys r1b^^e6 r7b^^f8y r2b^^e5tf r7cross. r7crosse r3cup 4rd rda9fra rd5ak rdal6 rda3la rd7ald rdan9o rd1arb rd1arm rd1art r1dat rdata2 rda9ti rd1ba rd1bo rd8boksa rd1da rd1di rd5dr r1deb r3dekk r6deknings r7deknings. rde5lag rd7enh rdens3e rdens3l rden3ta rde5rik rd3erst rde7sp rde3sto rd7ett rd3fa rd4fei rd2f^^f8 rd1g rd1h rdhord5 rdi7d rdig7l rdig1s rdi3l r3dimen rdi7mi rd2in5f rdis2 rd5je rd2kap rd5led rd5mel rd7mi rd7mu r3dob rd5od r1dok rdom8 rd1op rdopp8 r7dosa r3dram rd3ras rd3rett r5drift. r9drifta r5drifte r7drifts. rd5rik. r5driver rd1rot r2dru rd3sam rd9set. rd5sette rd7settinge rd7skjed rds6kv rd3slu rds3mi rds7po rd5stad rds5tan rd5stem rds9tru rd1t rd8tv rd1und rd1v rd9vet rd9yt r5d^^f8g r2d^^f8l r1d^^f8r rd5^^f8sto rd3^^e5r 8re. 8rea. re3akti real5s 6reav re4banks re6barnsf re2bin re2bok3s re2byg re7bygd re5bygge. re5byggel re5bygger re5bygges 8red. 1redak re3def re3dele 4redero reder3s red8g 3redig re3dim re3dis re1don re1dre red3sku red8sla red7sled reds8tids 1redu red7va re7dy re1d^^f8 6ree ref2 re3fa re1fes 4reff re3fi 4refj re5formas 6reft 8reg. 1regel re3gene 1regi 1regj 2regjen 1regl re7gli re8gn 1regns 2re1gr 1regu re1gut re3hold re3hus. re7husa re3huse 2reid 2reie 2reig r3eige 5reinh 6reinsk rein6skj re7instru re3inv re6inva 6reirs 7reisning. 7reisninge 7reisnings. 6reistr re3kad re3kal re2kan re5kana rekk5v 3reklam re3klas re5kled re4konv 1rekor re5kra re3kref 1rekru 6reks rek7tas re1kva rel2 re3lab re1lag re9lak re5land. re5lands. 1relat re3lef re8lens rele8s r7elg re5lib re1lis rell4d relle5m relse4s r3elv re5l^^e5n re7l^^e5r r1emb re1me re7middele re3midl rem2m remmed3 re1mom re7mos rem1p rem3r rem^^e5ls5 8r8en. 6rena 6rend rende5l 2rene re5nek 3reness renest7 re5nev reng1l renn3h renn1l re3nor 4rens. 6rensknings 7rensknings. r7entit r1entr re3or re9part. re9parte 8repen re3pil re4pip re6planp re8pli 3repor re2pr 5represe 2rer re1rad re3ram re7rang re1rat rere6 re3red re3ref re1reg re3rent re3rese re1ret rer7ho re1rik rer3kj rer1l rer1m r1ern^^e6 re3ros rer1p rer1r rer1s rer1ti rer1v rer9^^f8y r2es 6res. re2sc res6e 3reserv re1set resi4 re1sif re5sik 5resiste re1skj re8skje. res3kod re8skrivi re1sku re1sla res2m res5man res3me re5smo re7spel. re9spela re9spele re5spille res2s 1ressu re5stak restats8 3restau re5steg. rest5erv 4restil re3stre re3stru re1sty 1resu 8resuk 2re1sun re1s^^f8 4ret. 2reta re9tal. re5tall. re5talle re5talls. re9tals. ret3art ret8h ret8i re5tj re5tol re9tom re1tra re1try 2rets ret5teat 4rettem 4rettsek rett6set 2rettsf 4rettsor 4rettsr^^e5 4rettst rett3ve re7tve re8t^^f8y rev3ark rev7enh re4vernf re4vernl reve3s 1revy 4revyi 2revyr 4revys 4revyt re4v^^e5p re6y4 re2^^e5rs 2rf r7fad r6fagl^^e6 rfag7sk r5fak r9fara r4fari r1fart r1fas r1fav r7fee r1fel r8fe7la r5fes r2fet r1fi r5fil r7fle r3fli r1flu r1fly r2flyse r3fl^^f8y rfor7bruka r5foren r1fr r6fra. rfram4 rfrem2 r5fro r3fry r9fr^^f8 r1fu r2fund r9fyl 8rg r1gal r7gap rg7arts. r5gassen r1gat r1gave rge7di rge7f rgen3tu r1geol rge3rik rge1st rge5sta rges5top rge1te rge5va rg1g rg1ha rg5hei rg7hu rgi5d rgi1l rgi1m rgi3nas rgi5net rgi1r rgi3sl rgi1te rgi3var rgi3ver r1gj rgjen6 rg3og rgon5d r1gr r5grad. r7grada r3grade r5grads. r5gran r7gravings. r3grei r7grem r3gren r7gro r5grunne r5grunns. rg7sal rg4sm rgs6till rgs8to rg6s7v rg5t r5gul r1g8ut rg7vek rg3ves r3g^^e5en rg4^^e5r rh8 r9hald. r5halda r7halde r7hall. r1ham rhand4 r7hau rhav2 r1have rhelse2 r5hert r1hes r3hin r3his rholds9v r7hor r1hov r1hu rh^^e5nd4 r9h^^e5nden. rh^^e5nds3 4ri. ri1ba ri1br ri3dale ri1dep r1idr ri3dri rids3 ri3du rie7kv ri7eld rient6r rie7rel 8riet ri3even 6ri^^e8 rifiser5b ri8fot ri5gat ri7gev 1rigg rigg1r 6rightt rig4m ri1gr ri1hu ri1in ri7j 1rikd 1rike. rik8i ri1kr riks5l riks3te riks3u rikt4 rikts3 ri3kur ri3lad ri7lansa ri7lau ril1da ri1led ri5lev ril4t ri1l^^f8 ri7mak ri3mask rime5la ri4mot. rim3se rin8am ri1nas r5inc rin5dale rine1s r2infa r2in8g ring1r 6rings ring9set. ring8spa ring6stad 6rinj rin5l rinn4b r1innf r3inn6k r1inst rins9te rinter4n rint5j rin3veg rio8 ri1of ri1op riot3r rio9v ri8pos ri1r ris9gj 5risiko. 5risikoe 5risikog 8risk 3risle 7risling. 9rislinga 7rislings. ris5om 9rista. ri5stad ri3sted rist3l ri3stra ris1u rite6 riti2 ri1til rit1s ritt3l ritt3st rit7un ri5tur ri5ur 1rival riv2d riv5ise ri6vo r3ivr ri^^f8r1a r5jag r1jak rje5l rje1m r1jent rje3s rje7ve r1jo r2jol rjord2 r7jul. r9jula r5jule r5juls. r5j^^f8 r7kaba r9kaf^^e9 r3kam r1kand r1kap r1karr r1kass rka9tr rk2ba rk7bi rke7f^^f8 rke3h rke3lu rke4midd rke3ram rke5ret rke3ris rkes3u rke2ty rk5ho r3kik r3kino r2kis rkje5lov r1kjo rk5jor r1kj^^f8 r8kj^^f8psf r3kj^^f8r rk1k2 r1klau rk1leg r1kli r1klo r3knek r3kno rko3ak rko2f rko1h rko3lan rko5li r5koll rk6op rko3pe r1korp r4kortb r8korto rko1sa rkose7le r1kr r3kra rk7ras rk5redd rk5rei r8kren rkrig6 rkring7kasta rk8ro rk8sam rks1i rk1sj rk7skol rk7skul rk4sky rks5l rk7sov rk3stas rks7tel rks5ten rks1ti rks3tol rk2str rk5str^^f8m. rk7sty rk3ta r6ku. r1kult rkum6 r1kur r4kursf rkus5m rkus3t r6kut r1kv r6kved r2kveg r2kver rk3^^f8l rk5^^f8y. r7k^^e5p rk3^^e5s r5lab r2lagsl r3lake r1lan rlands6ka r6landsp rlang6 r1lap r5larv r1las r2lati r1lau r7lav8 r1led r3leges r5legg. r3leggi r8leggjarar r3leia r5leie r1lek r1lepp rl5eri rles8 r1less r1let r3lever r5lev^^e9 rl2i r5liga. r3ligae rlig4d r3ligge r3ligni r5lind rling5s r1lis r1lit r1liv r7liv. r7live r1lok r9lovs. rl4sk rl3st r1lu r1lyk r1lys. rlys7k r1l^^e6 r1l^^f8 r4l^^f8d r7l^^f8f r4l^^f8nnso r1l^^e5 8rm rma5kl rma3mer rm1anl rm1arb r7marm r9maska r5maske r7maskin. r5maskine r5mass r8mast rm5av rm1b rm1d rmed2 r7medh rme3dr r7mekt r1meld r3melk r7melo r1meng rmer3l rme3se r7mester. r7mesters rm9f rm1g rm1h rm2hj r1mil rm3iv rm1je rm1l rm3len rm1m r3moen. r5moens r1mog r7monu rmor5s rmot2 rm1p rm1r rm1s rms8ko rm4sm rm3st^^f8 rm1ta rm1te rm1ti rmue4s r3mur r6muser r9muser. r6mut rm1v r5m^^f8d rm^^f8r8k rm^^e5l6 rm^^e5ls7 rm7^^e5ta rn1ak rn1art r7nasa r7nase rnat9r r3natu rna5tv rn1br rn1bu rn1by rn3dale rn1de r5neds rne1g rne5kre rne1l rne5m^^e5 rne3ran rne7ris rner5s rne1s rne3sk rne7stens. rn5etab rne3ten r7netts. rne5vr rn1f rn1g rn1h rn1j rn1k rn1l rn1n rnne6 rn5oks rn1oms r7non rn1op rn3ordn rn1ork rn1ov rnp^^e58 rn1r rn1sak rn1sam rn1se rn5sid rns1in rn1sj rn7ske rn3skol rn1skr rn7sku rns4leg rn7smi rn7spi rn3s2pr rn1st rns7tenes rn1t2 rn3ug r1num rnus1k rn7verka rn7verkn rn1vi rn5v^^e6 r1n^^f8l r5n^^f8t rn5^^f8v rn1^^e5r ro1ak ro8ban robe3s ro1bla 1roc 2rockb ro1da 7rodo ro5em ro3ent roff1l roff5ri ro4fl ro2fo ro7fot ro6fu ro2g rog1d rog1s2 roin7f ro1kar rok2k rokke3r rok5kl ro3kor rok7stav rok7v ro1leg rolf6 ro7lis ro9liv rol2l roll2d 8rollek 4ro2lo rol5se rol5t rom4an 2romb rome2 3rommet 6r7omn 6romo ro5mol 2romr 2roms rom7stor r7omsy rom2s4^^f8 rom3t ron9f roni8 ron3ko rons2 ron7su ron5tale. ron5talen ron5tes ro1nu ron3v ro7op ro2p ro5pip ropp8n ropp8r ropp4s ror1a ror1b ror1h ror1m ror3st ror1t 6rosef ro7sf^^e6 ro7sid rosje5ra rosje7ri ro8sk^^e5 r1oslo ro7spi ro3spo 8rossk ro5stein. ro7steins. rost7r^^f8 ro8st^^f8 ros9v 3rotas rot5ekte rote2s 4rotg rot7ord rot8sal rots2v 2rou ro5vak rove8 ro5vek rover6g rover8v ro7vev 7rovf rov7sm rov7so r5pakn r1pal r7pam r3pap r1par. r1para r1pare r1park r7partia. r1pas r1pat rpe5li r5pels. r7penn rpe7ret r1peri r1pers rpe6sk rpe4t r1pia r1pinn rp6j r6planarb r6pland r4planti r1po r2pola r8polo r2poo r2por r5pot r5pri rp1si rps7te rp3tr r7pub r1p^^f8 r2p^^e5 rp^^e56s r1rab rra1g r3raile r3rall r1rap r8rar rra3ro rr7br rr1d rr8e r1rea r7redn r1reg r7regn rre1h r1rei rre6lat rre3ma rre3mi r3renn r5rense r5rensi r1rep r6repl rre1ru rres4b rre7spe rre3spi r1ress rre9teg rre3tr r1rett r5retti r7retts. r4rettsb r4rettsk rre5u rre5vel rr1f rr1g rr3h rri4f r3riff r5rikes r5risi r7rislinge rr1k rr1l rr7la. rr1m rr5n r1rol r1rom r9roms. r9rosa r7rose r5rot. r7rote rr1s6 rr8ska rr6stoffi rr1t rr3un r9rus r1rut rr3v r9ryke r5rykk r1r^^f8 r1r^^e5 rr^^e5d3m rr9^^e5r 6rs rsa6 r8sald r7salg rsal7s rsaman8 r8sane rs3arv r1sat r7sate rs7bl r1sco rs7cu rs7d^^f8 r1sed rse2e rse8g rse8i r1sek r6sela rs7eld rse7li r5selska r6sel1t rs3elv r3semi r3seng r1sent rse6r r8ser. rser4b r3serie rs5erik r3serti r1ses r8ses. r7seso rs8ett r5sette. r9settelse. r9settelsen r9settelser r9settelses. r7setteren r7setters r5settes r7setting. r9settings. rse8va r2s3f rs2hu r1sid r7sig r3sikk r1sim rs1in rs8ing rsinn8 r3sitt r3sjans r3sjel rsj3or r7sjuk r6ska. rs7kaf r6ske rski2 r7ski. r1skif r7skip rskips4 rs3kir r5skjerm rsk1l^^e6 r1skod r7skola r5skole. r5skolen r6skoleo r5skoler r7skoles. r6skolest r4skoll rs3kom rs3kon rs3korp rskot4 rskots3 r7skottsvi r3skrib r6skrifts r6skrivings r9skrivings. rs3kro r5skudds^^e5 r1skue8 r7skula r7skule. r6skulee r9skulen r6skules rsk3und rsk3var r1skyt rsk7^^f8 r6slei r3slip r7slit rs4lovu rs5lun r1sl^^e5 rs2m rs3ma rs4make rs3me rs3mi r6s3mo rs3mu rs5m^^f8tep rs1no r8sn^^f8 r5sod r1sol rs1or rs5ord r3sort r7spel rs1pen rs1per r1spi rs3pot r1spu rs1s2 r1stab r3stadi r5stat. r3state r9statu r3stav rste2bo r4steds r5steg. rste2gr r9steig rste7ma rster2 rste5ra rste3re rst2i r5stif r5stilli rs3tit r1stj rs3tjen r1sto rstor8 r1str rs9tre. rs3trin r1stu r3stud r5styk rst8^^f8 r7sul rs8vak rsvar8 rsvars3 rs8verkst r5sy. r1syk r5synl r8synsa r7sys rsyssel8 rs2yt r9s^^e5. rs6^^e5k r1s2^^e5t rt5ad rta6g r9tagelsene r7tagelses. r5tagen r1tak. r7taka r7taken r3taket r7takinge r9takings. r7taks. r3takst r5talent rtall2 rtanke8 r5tann8 rt1art r3tatt. rtav6 rt1br rt5d^^f8 r1tea rte1e r8tegnings. rte1gr r1teks rte3lin rte3lis rt5elit rtel8l r3telt r1temp r7tena r1tenk r3tenn rtens5k rtent8 rten1^^e5 rter5ess rte5ris rte7ros rte6ta rte3ter rt1g r4th rt6has rt2hi rt3ho rti3ans r1tide rti9del r3tids. r5tidsra rtig3d rti5gj rtil8 rti1la r7tilh rti7lin rti3lis r1tilt rti1ma rtis4 rti3sek rt8iso rti3sp rti3str rti7tr rti1v rti8^^e5rsa rt1la rt9legg. rt5legge rt7leggj rt5lei rt1li rt5lig rt1off rt5om. rt7oper rt1ord r3tors rto3ta rt1ov r1tra r3traf r9trea r2tred rt3rei r5trekn r7trib rt3ris r2truf rt1rut rt1sal rt3see rt5sei rt1sel rt3sert rtshus5h rts8husha rt1sik rts5ja rt7ske rts6no rts1pa rt1spe rt1spi rt1sta rt1ste rt1sto rt1str rts5t^^f8y rts5unde rt1ta rt1te rt7til rt5tj rt1tr rt1tu rt8ug rt3und r1tup rtur2b r3turn rt1ut rt1v r8tyf r7typ rt5^^f8l 8rua ruar1 ru3bo 2rud rud6k rue1s ru7fl r7ugl ru7gr 6ruh ru7ha ru5is. ru3j ruks1l rul8 1rull r3ulv rum3al ru7m^^f8 5runde. 3runden runder8 6rundings 7rundings. rund1s 6runi run5kr runn5d runn9g runn3se runn7sla runn7spe runn7stan runn1t rus3b r7usik 7rusing. 7rusings. rus7j rus2m 5russ. rus4st 9rustings. 7rustnings. ru5sto 4rutese rut9g^^e5e 1ruti ru5til r1utk ruve7l ruv7is r1valg r5valp r3vals r5vannf rvann6h rvann8s r3vars r3vase r3vask rva5sta r6vatns rve7b r1vedl rve3dr r1vege rve1gl rve7gr r3veis. r8veise rve7kl r1veld rve3leg rvel9p rve3m rv3eng rve3nya rve3ret r1verk r3verne r6vernes rve9sta rvest7la r7vestlands rv1ha r1vika r6ving r1vinn r1vir rv2j r2vogns rvo5v rv6r r1vu rv3ung r7v^^e5kt r1v^^e5p r5v^^e5r ry7dal 7ryddings. 5rydninge 7rydnings. 6rygd ryll5is ry1me ryne1s 4ryr r1yrk ryrkes4 ry9ro ry7r^^f8 rys2 ry3tid 1rytm r3ytr r^^f88a 8r^^f8b 3r^^f8dm r^^f8d5rev r^^f8d1s r^^f8d7sa r^^f8g5s r^^f8k7la 4r^^f8kn r1^^f8kni r^^f8k1s 4r^^f8kterl 8r^^f8kteru r^^f8k1v 2r^^f8m r^^f8m1a r^^f8mme3d r^^f8m3r 2r^^f8n r^^f8nn7d r^^f8nn3s4k r^^f8ns4 r^^f8n7skj r^^f8n5sko r^^f8n5st r^^f8r5se r^^f8r7ti r^^f85san r^^f85sla 8r^^f8var^^f8 5r^^f8veri 5r^^f8vern r1^^f8y. 8r^^f8yh 7r^^f8yk r^^f8ykje5 r^^f8y6m 9r^^f8yr. 9r^^f8yra 9r^^f8yre 9r^^f8yrs. r^^f8y8sa r^^f8ys3k r^^e51b 3r^^e5dgi 5r^^e5dgjev 1r^^e5ds. 6r^^e5dsa 2r^^e5dsd 4r^^e5dse 8r^^e5dsf^^f8 8r^^e5dst 2r^^e5dsv r^^e54dyr r^^e55fe r^^e59g r^^e53kal r^^e51kj r^^e5k1n r^^e57koste r^^e5k1re r^^e5k1v 2r^^e5l r^^e5le1v r^^e5l3f r^^e51ly r^^e55mel 2r^^e5p 2r^^e5r 2r^^e5se r^^e57sel r^^e55si r^^e55skj r^^e51sn r^^e55sten. r^^e57stens. r^^e53tak r^^e55tj r^^e55tr r^^e55tu r^^e51ve r^^e55vi 8sa. s6aa sa3bok sa3by 2sac 2sad sa3dam sa5fis 3saft. saga3s 6sagm sag4mo 6sagnsb s1agr sag3s2 sa2h 2sai 4sakad sake4 8sakek sak7kr s8aks. s2aksa 6saksak sak7sal 6saksforei 8saksforkjempa sak9sid 2saksj 2sakskv saks7l sak4sp 6saksv 4s1akt2 s4ak5to s8al. 3salam sa3lap s1ald 2sal2f 8salgsd sal6h s8ali 6sall s1allo 2saln sa5lop sal2s1 8salsd sals5m 2salsp s5altr 1salv 6salverl sa1ly sa2m 8sam. 1s2am2a sam8b 5samban sam2d 6samef 7samei same5l 8sames 1sam2f 3samfu sam2k sam2l 5samled 1samm sam7male sam8na sam5pe sam7sa sam1se sam8spela sam8spele sam1st 2samt. 5samta sam8u sam6v 8san. s1ana s4and. sand6bu. 6sande. s3andel s7andl 6sandsf sand3s4t 2sane. 1sang. 2s1angr sangs2 san5j s9anke. s7anken 5sanki 2s1anl s1anm sann7sp 2sano s3anor san5os sans6 5sans. s1ansa s7ansi s3ansk s3ansl 2sansv 2sant santi6 s3anty s1anv 2s1a2p sa9pu 4sar s1arb s3arbe s1ark sar7la s1arm sarn6 sar7pe s1arr sar3ri sar5s s1art sar7tal sar7tid s5arv. 8sas s1asp s5ass 6sat. sa3tek 4satf 8s3atl sa7tre s7atsk 4satso s5attr s7aud 1saue s7aug sauge2 saugne2 1saus s1aut 2s1av2 s2ava 8s1b sbad8 s3bank. s3banke sbe6 s5bel sbi4 sbil8 s9bilda s5bilde. s4bj^^f8rns sbok8h sbort2 sbrotts8 s4byf s5bygd sb^^f87nes s2b^^e5nds 1sce2 2scel 6scer 1schn s7com scome6 3scre scup1f 2s1d sdag2 s6dah s2dal s9dala s3dale s5dam s3dat sdata4 sde2 s3dels. s3dok s3dre s3dri s9drifts. s5dr^^e5 s3du s7dyra. s3dyre 2se. se1a se2ate se2bal se9bens. se7b^^f8 s7ed. se1da sedag2 1sedd se1deb se3def se1dem se5dis 1sedl se1do se1dr se1du se1d^^f8 se2ei seer3s seer1t seer3v 2sef se1fe s1eff s1eft sefter2 se1fu seg2 se1ga 2sege8 se7gem s3egens 2segg seg7gj se1gi se1gj 5segm se1gr se1gu se5h 4seid s3eidet s3eie. seier2s s7eiet 2s1eig 1seil 4seilerf 6seilings 7seilings. 2sein se1ind s1eini se5inn se1ins se3int sek2 1sekk 2sekkt 8se1kl 4seko se5kor se1kra se7kref 5seks. seks2b 2seksp 1sekto sekt1s se2kut se3k^^e5 s2el 2sel. 2sela se1lab se3lad se1lag se3land sel3art s1elas sel7at 2selb sel1dr sele6f se7lega 2selem se3les s3elev 1selg 4selgerf 4selgerl 4selgerr sel7gj 4seli se1lis s3elit 1selj 6seljarf 6seljarl 6seljarr 2selk 2sell sel5las 2selm 2se1lo sel3p sel9set. sel9setje sel3sig s5elske sel9slag sel5spa sels3po 8sels^^f8 sel7tv sel7ur 2selv sel4v3ak sel5var sel2ve selv3ei se4lyt se1l^^f8 sem8 se1ma 2semb 6semd se7med se1mid 9semj s1emn se1mo se1m^^e5 6sen. 5sendara 7sendare sende3m 5sender. 5sendere 5senderne 7senders. 6sendings 7sendings. 2sendr sen3dre 3sendt 2sene s3energ se3nerv se7nese 2s1enh sen8ka s3enkj sen3l 3senne6 2sens. 7sensas sens5end sen3som sen5sta s2ent 6sent. sen3tal 4senterg 4senterl 4senterp 4sentert s5entrep 4sentu sen1v se3ny sen9^^e5r. sen9^^e5ra seo2 se3or se3part se5pe6 se7pil se7pip se1por se5pot se1pu 2ser. se1rak se1ram se1rap ser1d ser4e2 se1red se1ref se1reg se1rek se1rel 3serem se3rent se5reso se3rest se1ret 2s1erf 7seriane 5seriar 3serie. 5serieak 7series. se3rik 2serk ser3m 2sern ser7nev ser6pe ser1r 2sers 3sersja ser5ska ser7sku 8sert. ser5tal 8serte ser7teg 5sertif sert1s ser3un 3servic se5ry se1r^^f8 ses3aks se8sals ses7alt se1se 4se1si ses3kal ses3kan ses5kar se1sky ses6leg se7sna se4songe se1spi ses5pot sess3in 8se1st 6sesu se3s^^f8 8set. se3tak se1tal 2setat s2ete se1teg se1teo se3test 3setet 2seth 2se1ti se5tid s1etik s1etis se1tje 3setl se1to se1tr 4set4s setter4 s7etterm 4s5etters 6settingsr 8settk sett1s se1tv se7t^^f8 se3ut 2sev6 se1va se1ve se6verna se1vi s1evn se1vo se1vr se1v^^e6 s1f2 s5fab s4faller s9falls. s3fart. s3farte s3fas sfast4 sfattig5 s7fibr 2s3fj 8sfl s3fla s2fli sfly6 6sfo sfor5kv sform8 sforn^^e6r8 sfor8s 4s3fr sfram8 sfrem6 sfr^^e58 s2fus sf^^f8re8 2s1g sge2 s7givar. s9givarane s9givarar s9givare s5giver. s5givere s5givern s5givers. sgjen4 s5gjevar. s9gjevarane s9gjevarar s7gjevare s3gl sgrav8 s1h 4sha s7hai s5haldar shalds5 s9halds. shalv6 shand4 s9hap s7hat s3hau s5havs. 2she s3hes 2shi s3hj shjelpe6 s4hjelps s2ho sholde2 s3hop s3horn 3short 1show 6showv sh5s sh1t 8shu s3hy s3h^^e5 sh^^e5nd8 8si. 2sia sia5g sia3mi si2d 1sida. 2sidea side5l 4sident 4side7p 4sidesl 2s3idr s5idy si5eg sie2m sie2s sie4v 3sigar 1siger siger4s s3iglo 3signal 1sigr si2k6 sikk8artet sikk3el 2siko siko3d siko1p siko3s siko1v sikt8l sikts1 1s2ild 6sildfo si1leg 7siling. 7silinge 7silings. si5liv sil7ti 8sima s7imel si1met 5siml 8simo 1simul si8n sinal3 sin5fa sin7fl sing2f sin5gj 7singu s2ink s1inn2 1sinn. sinn8l s7inns sinn5str^^f8 2sins sin3sel sin3ska sinsk5e sin3sl s1int 7sinte. sin5tra sin7tre sin5vis sio5p si3ov 2sip 3sirk 4sirkels 8sirkulasjons 9sirkulasjons. 8sirkulerings 9sirkulerings. 2sis sis3ma sis1p sis5tal sis3til sis3tj si3tid 7sitje sit3s6 1situ siv1s s5jag sja8k 8sjane 7sjang 8sjar. sjar8l 6sje. 1sjef sje2far sjef3f sjef1i 4sjefl 4sjefm 2sjeg 7sjekkings. 4sjen s7jent 6sjer sje7rik sjern8 sjer1s sjer5v sje1s 8sjev sje1ve 1sjikt sj1k 2sjon 2sjor 8sjou 6sjov 2sjub sju5d sju7g 1sjuk s2j^^f8 sj^^f81d 1sj^^f8e 1sj^^f8i sj^^f83k sj^^f83la sj^^f87le 8sj^^f83n sj^^f81p sj^^f83ret sj^^f85sn 8sj^^f81t 6sj^^f8v sj^^f89ver 1sj^^e5 8sk. ska2 s3kabi 1skad 5skadd s5kaf^^e9 1skaft s8kag 1s2kal8a 2skalab 6skalat s5kalv 2skam 8skane s7kann 6skaperm 7skapin s1kapp 2skaps s6kard s1karr s1kart 5skarv 8s1kas s1kata s1kate s2katt 8skatterm s2kau 1skavl 2s2ke 6ske. sk1eid ske7ler sk3elev ske5lin ske3lu sken1g 5skept ske8rad ske1s2 ske2t3j ske3tr ske5tu 6skh sk3ha sk7hets sk2i 1ski. 7skia sk5ide 7skie 4skij 1skik 4skikkp 2skikku 4skillep 4skilles ski3me 3skimr s6kin skin1d skin3f 2sking 1skinn 6skinnsf 8skinnsg 8skinnsn 4skinnsp 6skinnss 6skinns^^f8 skin1v 8skio 1skip 6skipm 3skips. 4skipsfl 2skir 3skire skirke4g 7skiss 1skiv 9skjea 3skje4b 3skjee 2skjef 5skjelv. 7skjelva 5skjelve 3skjema 4skjemas s3kjemp 6skjens 5skjerm. 9skjerman 9skjermar 5skjerme 6skjert 1skjor 3skju 6skj^^e6rerk s1kj^^f8p s3kj^^f8ri 1skj^^f8t sk1k2 2s1kl sk5lak s8klei sk3lek s2klen sk9line sk3lit sk7luft. sk9lufta. sk7lufte sk2my s1knu 3skodd s5kodek 2skof 1skog 8skogb 8skogg skog1l skog5n 8skogr 8skogsf 2skogu 4skogv 4skoka 8skoleni s3koll 2skom s5komb 2skon s5koo sk3ord2 7skorpa 5skorpe 6skorpeb 2s1kos s2kot skotts5 s1kra2 s8kraftan s8kraftf s4kraftp s4krafts 3skral 8skrapars 8skraperl 6skrapers 8skrav 5skrede 4skredf s3kredi 2s1kref 9skrekk. 9skrekking. 7skrekkings. s3krem. s7krema sk6ri 5skride. 5skrider 5skrides 6skriftb 8skriftk 8skriftr 8skriftt 2skrig6 s8krinst 4skrip 9skritt. 9skritta 7skritte 7skritts. 7skrivar. 7skrivara 9skrivaren 9skruk skru7s skr^^e53s 2sk1s2 sk1t2 1skuf 8skuleo 3s4kulp 4s3kult skum5s 2skun 8s1kup s1kurs 2skutes 4skutet sku8v 4skvel 2s1kvi sky1b 7skylt 4skyr sky3re s3kyrk 1skyts 9skyttaran 9skyttarar. 9skyttaren 8skytterel 5skytterf s3k^^f8yr 1sk^^f8yt 1sk^^e5 3sk^^e5n 8sk^^e5ps 9sk^^e5ps. 4sk^^e5t sl4 sla8 8sla. s6lagsd s8lagsm s1lagt 1slakt 6slal^^e5mc 4slal^^e5mg 4slal^^e5mk 4slal^^e5mo 4slal^^e5ms 8slamt 6sland slands4k slands8m^^f8 8slar 6slast 2s1lau 8sle. s1led s7ledd s7lederb s5legek s7legene s9leger s1leia s3leie. s5leien. s5leiene. s9leienes s7leiens s5leier. s9leiga s7leige. s1leii s7lekk sle7ner 3sleng. 5slenge s2lep sles2 s1lese sle7st s2let s3leti sle5tu s1lev sle5var s6li. s8lia s1lib 8slig s5liga. s1lign slike6 s3likh s7likn s7liks slin8 s9lina s7line 5slips s1lis 5slit. 1slite s1live s7livsmes s6lo. slo1b slo1d slo1f slo1l slo1m slo1p slo1r 1slot slott4 7slottet s7lovs s7lua s1lue s3luf 4s1lug sluk5s s2lung 1slup s1ly 8slyd s2lyn 2slys s8lyss s3l^^e6 s1l^^f8 sl^^f8nns4v 2sl^^f8s. 3sl^^f8yf s1l^^e5n s2l^^e5nsr s6l^^e5r s4l^^e5tt s1m2 9smak. 3s2maken 2sman s5manns. s4mannsa s4mannsf s4mannsp s3marg 4s3mas 4smat smat3v sme2 8smedf 4s4medk s3meka s4mekt 1smell 3smelt 2smen s3merk 1smert 2smes sme7v s7middelet. s9middelets s3midl s6mil. s6mile s7ministers. s7ministr 3s4mink smislig6 smitt8 s3mj s6mo. s3mor. s3more smor1s s2mos. s3mot6 1s4mug 3smuld s6mule s2m^^f8r 1sm^^f8r. 1sm^^f8re sm^^f8r1s s7m^^f8ta s3m^^f8te. s2m^^f8tep s4m^^f8tes s3m^^f8tet sm^^e51d 8sm^^e5e sm^^e57ki sm^^e55lan sm^^e5le2 sm^^e59le. sm^^e5l7l sm^^e5ls3t sm^^e51r sm^^e5s2 sm^^e53ti sn2 3s6nab s2nak 7snap snar7v s1nas 4s1nat s1nav s6navns 6sne. s1ned sned8k 3snei sne4k s1nem 5sne8p sner2r s1nerv 2snes sne3sl snes7v 6s1net snett8v s1nev s2nevr snik3ko 3snil 5snipp. 3snippe s1niss s5niv s3nord2 s1nu 9snu. 3snud snu7pe s1ny s1n^^e6 sn^^e6r8 sn^^f8d2 sn^^f83dr sn^^f83l 1sn^^f8r sn^^f81s sn^^f87ve s7n^^e5 s1ob 4sod s3odo so2f sofa1s s1off s5offer. s9offers so5for so7ha so9he 5sokke s3oks sok5t sol5av 3s2old sol5dr sol2hei 4s7olj solje2 sol5ly sol5m solo1d solo1k solo3r sol1s 8solvenss sol7v^^e6 som2 8som. som7end s1omfa s7omg s1omk s1oml 7sommard 9sommars 5sommer. 5sommeren 7somren 5somrer s1oms s2omst 8somt 2son. 3sonat 4soneb son1f 6songf song1s2 2sonl son3ok 2son1s sons6k son1tr son7va s1o2p 3sopp. sopp8b 1soppe sopp6h sopp6n sopp8r so9pre sor3bu 2s1ord sord2b sor7del s8ordm sor7f s1orie sor1m sor5n sor7o sor1s sor9tid s2os 6s5osc 8sose 3sosial sos1p sot7s sot4t sotte4 s1ov sover2 8soverd sover5ko sover8l sover8sk sove3s sp4 spa2 s1pak 7spak. 7spaka 3spake 1spalt span2 s2pann s1pap 8spararf 4sparerf 5spares 7sparings. 6sparkm s1pas 2spe2a s2pei s2pek s2pel 6spelf 6spelse 6spelv s1peng 1s2penn 7spenning. 9spenninga 7spenninge 7spennings. 4spentl sper2 5sperre 1spesi 1spett 6spetteu s2pi 8spil. 6spillef 5spilleri 8spillerinns 7spillers. 8spilleru 6spillf 6spillingsu 2spillk 2spillm 5spillp 6spillt 4spillv 8spilth spinn7s 4s3pip spis3k 3spiss. 4spissf 8spissk s1pl 2spla 4sple 1splin s1poe s4pok 1spor. 4sporp 2sportf 2sportu 6sporu 2spos 9sprag 3spredn s2prei 3spreii s2prek 3sprekk 3s6pren 2spres 3spret s4prist s4prisv 4sprof 3sprog. 3sproge 7sprogli 1sprut 3spry 1spr^^e5 4spr^^e5kb 4spr^^e5kl^^e6 s1ps s1pub s1pul spuls2 2spun s8punkti 1spurv s1pus s1pyr 1s2p^^f8 7sp^^f8k sp5^^f8y 5s6p^^e5d 2s1r6 sre2 s7reg sregn8 s6rettsk s9ri s3rot. s5rota. srot5o s3rut s3r^^e5det sr^^e5d4m s3r^^e5ds. s2r^^e5dsm 8ss s7saf ssak8k s5salgs. s9sals. s1sam2 ss7amp s3sann ss8ar7m ss8bruks ss9bruks. s1sc ss2d ss3de ss3di ss7dro ss5dy ss3d^^f8 sse7ba sse3del ss4el ssel7st sse5lu ss5enden sse7rat sse1ro sses8 s4ses. sse3se sse1sl sse8son sse3sp sse7str s3setn ss8fj ss9fo ss6f^^f8rings ss9hel ss7hol ss4h^^f8g ssi6 ss1ind ss1inj ss1ins s1sit s1sj ssje2 ssjuk8 ssjuke6m s7skada s5skade. ss1kar ss1kof s9skog. s7skoge ss7kok ss6kraftr ss3kre s7skrifts sskue2 ss5k^^e5l s7sk^^e5p ss6lan ss1las ss1lo s3smit ss2m^^e5 s3sn^^f8 sso5ka ss5omb ss8ordr s1sp ss6pil ss6por ssr^^f8r7l ss7so s1st s4stelli ss3tras ss3tren ss4tr^^e5 ss3tus sst2v s4styref s1sy ssyk4 ssyke2m s5syn. s9syna s3syne s5syns. s5synsme ssyssel8 6st. 6sta. sta8ba 3stabi 7stabs. st2ad stad3a 6stadd 6stadh 3stadio 6stadm 6stadn 4stadsl 6stadsp 6stadv 3stafe sta5fl s5tager. s5tagere s5tagern s5tagers. 2stagp s7takara s9takare s5takere s5takern s5takers. s3takst 4stakt 8stal. 8s7tala 8stalb 8s1tale stal8l stals8m 1stamm 6stamningsl 6standsd 4standsi 8stane s2tang stan9o st3antr 8stap. 8s5tapa 8stape 3stapp sta9p^^e5 sta3ret 2starr 7starting. 9startinga 7startinge 7startings. 4startr s2tas stas7k 6stast s8tat 6statb sta7tin st3atla 2statn 5stats. sta6ve 5stavn. 7stavne 7stavns. sta5v^^e6 st1b st1d stdata8 8s8te. ste7dal. ste7dals. 4stede. ste2dig ste1dr 4stedsb 4stedsl s4tee st8eft ste7gi s1tegn ste1gr 9stegs. 5steik. 5steika 5steinb stein3d 4steinn 6steinsa 1stek. 3steken 5steki 2s5tekn s3tekst ste3lev ste3lis 4stellk 5stells 2stell^^e6 s5temae s2temm sten1a sten4be 2stend 3stenen 3stener 2stenes 1s8teng 6stengingst 8stengningstid. 8stengningstide s5tenken s3tenkn sten7r 6stensa stens5l 6stenst sten1^^e5 2steo 4step 2ster. ste7rid ste7rik. ste7riv 7sterk. 7sterkt 8sterm 2stero ster1p ster5so ste3run ster7val ster5ve 2stes ste8ses ste3sle ste3sta 8stet s3tett ste7t^^f8 2stf st3fe stf^^f8re5s 2st1g st5ga st2gir st4g^^e5r 6sth st9hald. st9halde st5hen 8stib 8s1tid s9tida s6tidd sti7del s3tiden s9tids. s4tidsg s2tie 1stift st9igj 8stigningss 4stikks 8stiko 1stil. sti4la 2stilb s1tild 8stilf stil7kj 4stilleg 9stillingsmes 2stils 5stils. 4stilta stil5trek 3stiml 1stimu sting8l sti9ni s2tinn8 1stip 3stir 2sti2s stis5s 2stit sti7tr s3titte sti4v sti8^^e5rsa 2stjen st7jent 1stjer 6stjerneo st5jev 8stju 8stk st5kant. st5kante st9ko st2kre 2stl st5lande st5lands. st6leders st3legg st3ligg st5lys st1l^^e5 st6l^^e5n st9me 4stn2 st1nev st1no st5ny s2to. 4stoffd 4stoffr 8stoffy 2s1tog s3toks stol3sk stom4 st1ope 7stoppara 9stoppare 6stopparn 5stoppere 5stoppern stopp6l sto8r stor8bi stor3mo stor1o stor1s st5os st5ou 3stova 3stove. 5stoven stover4 s5tradis s7trafi 5strand. 5strands. 4strans 8stras s6trau 3straum 8strauml s2tred st3reis 5strek. stre2ka 3streke st3rekl 2streni st5rente. stre3pa 8strer stri3f s6trim 2strin s3trinn stri1s s2trof s3troi 3strok st7rop. st7ropa st7rope 8strua 2strue 5struktu 2s1try6 8stryg 6str^^e6 1s2tr^^f8 9str^^f8ms. 2str^^f8r 2str^^f8s 6str^^f8t 2s3tr^^f8y st5r^^e5tt 2st1s2 stse2 st2set st9set. st2spi st1t6 s8tua 1s2tub 1stud 1s2tue 6stuem 6stueo 1stum 5stund s1tung6 2s1tur6 s6turbinan 4stust 4stut 8st1v st2ved s7tydes 2styg 1s2tyk 7style. 7stylen 2s1tyn 2s9typ 4styreg 3styren 5styreorg styrs1 2styv 1st^^f8 2st^^f8i 4s1t^^f8rk 6st^^f8tnings 9st^^f8tta 4st^^f8ttea 6st^^f8tteb 6st^^f8tteg 8st^^f8tteh 8st^^f8ttek 5st^^f8tten 6st^^f8tteti 6st^^f8tteu st8^^f8y 2st^^f8yet 2st^^f8yk 4st^^f8y1s s4t^^e5e 3st^^e5l 8st^^e5li su6 sual5e 1sub 6suba sub3o 5suff 1sug 1suk 8s9uka 2s1uke s5ukl sul2 1sulf s1ulik sult5r s1ulu sum5b sum4me sum5mel 6summerings 7summerings. sum3n sum1pl sum7s 1sund. 3sundet 4sundf sund5hei sund7l sund7r 1sunds 8sundsd 6sundsf s1ung 7sunnda sun3s 1sup s1urei sur2f 5surie 5suriu sur2p sur2s surs5k sur8^^f8 s3usi sus1l sus9n sus5ti 2s1ut suto7 s3uts 5s8vak. 1s8vake 7svakh s1val s4vall 7svam svan8 svann5st s3vant s7vanv s3varia svar2s s2vart svar5ta svart7s s1vas s1vat6 s1ve2 s9ve. s5veg. s3vege s6veif s4veii s2vein 1s2veis s4veiu svel8 3s2vens sver2 sverds4 sverd5sl s2verg s6verj sverk7sa 1sverm s8vernl 8sverv s2vev 8svikark 4svikav 2svikd 4svikl 4sviko 2sviks 3svikt. 5svikte s1vil svill4f s2vinde s2ving sving3s2 s1vink s1vir svirke6 2s1vis s3vitn s1vo s2vor s1vr s1vu 1svul 1s2v^^f8 2sv^^f8ps 9sv^^f8ps. 2s1v^^e5 1sydd syd2h 2sy2f sy2k 1sykd sykke2 6sykkelb 6sykkelf^^f8 4sykkelg 6sykkelkj 4sykkelp sykkel5s 4sykkelu syko7g 1sym s2yn2 1syndi 6synds3 syns1k syn5ten 5syra. 1syre 4syreb s1yrk 1sys sy5sa 4systemd sy9sto sy7stu 2s1yt sy6v 8sz s^^e6r3do s^^e6r2ku s^^e6r1m s^^e6rs8 s^^e6ter3 s1^^f8de s^^f85fl 4s^^f8kerb 4s^^f8kerm 6s^^f8kerse 4s^^f8kert 5s^^f8kja 9s^^f8kjar. 9s^^f8kjara 9s^^f8kjare 1s^^f8kk 1s^^f8kna s^^f8ks1 3s^^f8ksm^^e5 1s2^^f88l 7s^^f8lv. s^^f8lv5a 4s^^f8lvd 2s^^f8lvf 8s^^f8lvinnha 6s^^f8lvk 8s^^f8lvp 8s^^f8lvutsle s2^^f88m 1s^^f8n s^^f8nnan7 s^^f8nna5v 4s1^^f8ns s^^f8r5end s^^f8r9ett s^^f8r3f 6s^^f8rgerk s^^f8r2gj s^^f8r2l s^^f8r1s 1s2^^f8s 8s^^f8s. 1s^^f8t s1^^f8v 4s3^^f8y. s9^^f8ya 8s7^^f8ye 1s^^f8yl 8s^^f8yn 8s^^f8y7s s7^^f8ys. s1^^e5 7s^^e5d s^^e56g 6s^^e5k 1s^^e5l 9s^^e5pa s^^e5r9le 4s^^e5ro 2s^^e5rp s^^e5rs6v s^^e5r7^^f8 s^^e5s5t s^^e58v ta1a ta3ban 1tabb ta7bit 2tabler 7tablett. 7tabletta 5tablette ta5bok ta1br tabs3 ta8byg 2tad tad5d ta7deb tad3et ta1dis tad5la t5admi tad7ren tad7ret tad7se tad3spa tad1ve ta1el ta1fi t1aft 8tagerek tag8m 6ta1gr ta5gu ta1h ta8he ta1kat 6takerek tak5k6l tak3kon takk2s ta5kol tak2s 9taksering. 9takseringa 7takseringe 9takserings. t1aksj tak2t t3aktig t1akt^^f8 ta1ku 6talarb 2talb tal1d t3alder tale3g tal3eie ta8len tale1s talj5es 6talk tal5ka talle8 tal6lin tall3m tall8sa 6tallsb 6tallsn 4tallss 4tallsv tal6ly tal1m tal1op 6talsb tal1tr tal1v 2tam ta1ma tam3ban t1ambi tam3bo t4ame ta7mel ta5met tam1f tamin3s 5tamp tam1s t1anal tan9by 2tand t5andak tand2b tand9t tan7d^^f8rs. 8tane t5anel ta1net 2tanf tan5fr tan7f^^f8 t1angr tang9ra tang3s 1tank tankel4 5tankv^^e5 t1anle t1anm 1tann 7tann. 6tann7b 7tanne tann2ga tann1s tan7re 8tans tans7ka t3ansl tan7ste tan9til ta5om 1tap. 1tape 1taps 2tar. t6ara tar1ak ta3ram 6t1arb tarbeids5 tar7eli tar3ga tar5ge tar3h 1tarif t7ark. t5arke t1arki tar5ko tar1l 3tarm. tar3mak tar5mat 3tarmb 7tarms. 4tarmsk ta7rod ta1rom tar1s6 2tart t3artik tart3r tart3s tarve8 ta7r^^f8 ta1sa ta1sek tasi1f tasi5s ta1skr ta1sn ta1sp tas5st ta7sto ta1svi 2tat ta9tap ta7tes ta9til ta1tj tat3re tat7ri tats1 tatt2ho t3attr tat5tru tat5v 1tau. 1tauet t5aug tauge8 taugne8 taus5k t9austen. tau3v 1tavl tav8le t5avlin ta9vo 5tax ta9xy 2tb t9bad t3bak t3bana t5band. t7banda t5bande t7bands. t3bane. t3banen t5baner. t4banes t2bar t3barb t3bat t1be t1bi t7binds. t3bj t1bl t1bo tbok8h t1bu t7bya t5bye t1b^^e6 t1b^^f8 t4b^^f8lger t2b^^e5tei t2b^^e5tf t1ce 2td t5dag4 t7date t1de t3deb t7di tdis5ko t1do t1dr t6drifts t1du t1dyr t8dyrt td^^f8ds4 2te. tea2 te3ag te1ak te9al 8tean 8tear 1teat 6teatersj 4teatert te7av 2teb te5bl te2b^^f8r te1co 2ted te1da ted3ar te1deb te7de8f tede4g te3dele te1dem te3deri te1di ted3le te1do te3dre te7dri ted7sans ted5v te1dy te1d^^f8 te1ep te1et te1f te7fat te5fer te7fin tefly5p te9f^^f4 t1eft tefter2 te2f^^f8 te3gal te1gar te5gav tegen8 te1gev te1gj te1gla te9gli 7tegnings 8tegns te1gu te1h tei2 t1eie t8eie. t1eiga te7igr 1teikn tein1g tein1k te3inte te3kj 1tekke te1kl 1tekn 6teknikero 6teknologin te3kr t1ekse tek5sen tek3sk 8tekstb tekt9r te5k^^e5 2tel. te1la tel8ak tel5ar 4teld tel7da 2telen tel9gj 2teli te1liv tel2l te1lo 2tels telse2 telses3 t1elsk tel5so tel5st tel7sv tel7tid te1lu te1l^^f8 te1l^^e5 8tem. 9temaa te1man tem5dr te2ment te5merk te1mi tem5l 3tempo. tem1r 8tem9s tem5tes te3my te7m^^f8 te1m^^e5 8ten. ten8am ten5del ten5dre 4tene. te8nes 7tenestl ten7go t5enig 1tenki ten3led tenn5l tenn1s ten3re 2tens 8tens. tens5aker ten7sal ten5sat ten5sett ten7sje tent3in tent3le ten9tom tent3re ten7tru ten7ty ten1v te7ny ten5^^f8ks teo4 1teolo 3teore 1teori te1p 2tepa te7pet 2te9pl te3pos 1tepp te4prisv 2ter. ter4aksj 7terapi. 7terapie ter3c ter1d4 2tere2 te3red te1ref te5regn ter7eid ter1el ter3eng te5rent te3rest te5rette ter3eve 2ter1f terfly4p ter1g 6teri te3rikt teri2n te3risi teri3v 2terk ter5kj ter3kre ter1ku ter3lag ter5lati ter3len ter9let ter3lev ter1ma ter7mel term2i ter3nor te5ro. te5roa te3roe ter7ov ter5pels ter7rat ter7ris 3terror ter1se ter7se. ter9ses ter9si ter5skar ters4kl ter9skot. ter9skota ter9skote ter9skott. ter7skotte ter3skr ter3sku ter1sl ter1s4m ter1sp ters4pr ter1st ter1s^^f8 ter3tak ter3tal ter5tan ter5teg ter3tel ter5tenes ter3tid ter3tin ter7to ter3t^^f8 te8r9ul te1rus ter9vat ter5ved ter3vek ter3ves ter1vi ter7v^^e5 te1ry ter3^^f8v te9r^^e5. te2r^^e5s ter5^^e5s. tes2 6tes. tes4d te1se te1sh te1sid te1sik te5sin te1sj te1skj te1sko te1skr te1sku te5sky te1sla te5slu tes3l^^f8 te1sm te1sn te7so te1sp te3stad 7testam testats6m te3sted te5stei te5stel te3stem te3stig te3stil te1sto te1str te1sty te1sv te1s^^f8 te7s^^e5 2tet. te1tab te1tak te1tal tet5b te3tee te3teg te5tenk te3tes te1ti te3tid te1tj te1to te1tr 8tets tetter2 1tetth tet3til tett3sk te2t3^^e5 te1va te7van te1ve teverk5st te1vi 5tevl 2tevn te1vo te7vr te1v^^e6 te1v^^e5 2t1f tfag4k tfag5s t3fak tfar6 t7fe. t7fed t9fee t7fen t3fes t6filmsk t3flag t3fly tfor7fl t3forh tfor7kv tfor7k^^f8 tfor3tr t5fot t2f^^f4 tfram2 tfrem2 t3fu t7f^^f8dt t4f^^f8rerk t5gas tge2 t7get t1gl t1go t1gr t7gry t1gu t1ha t9halds. t5hau t1hef t1heim t5hem t5hof t5hog t5hou t1hu t6husm t1h^^e5 2ti. 2tia ti1ak ti1ap ti3ato ti1ba ti3br 2tic t7idee tide4m ti1de4p t5id^^e9 ti1dis ti1do 2tidsa 2tidsb 2tidsd 4tidse 2tidsf 2tidsk 2tidsl tids5ma 4tidsn 2tidso 5tidsperi 2tidsr 4tidssp 6tidsst tids1t 2tidste 4tidsu 2tidsv 4tids^^f8 ti1du tid3v tie2 ti1ef ti1ei ti1em ti6end ti1erk ti3esk ti5etn ti1ett 2tif ti5fa ti1fe ti3fil ti1fr t3ifra. tift4 ti1fu 2tig tig1l tigs2 tig7s^^f8 ti1h ti1i 2tik tika1b tika1d ti5karri tikks2 ti1ko ti1kr tik1t 2til. ti1lag 1tilb til2be til5da ti1led 1tilf 1tilh til7isi 1tilkn til2kom 3tilleg 4tillin til7line til3lu til3l^^e6 til3ma 7tiln 7tilor 1tilp 7tilr til2re 1tils til8sen til8set til3ska til4skad til5sti 6tilsynss 8tilt. 1tilta til1tv ti5luf 1tilv til2val til2ve ti9l^^f8 2timeb ti8meiste 4timel 4timeo 5timers. 4timesr tim5f ti1mil tim3s t1ind tinge4 ting5les 6tingst 2tingsv ti5nia t1inn tinn2b tinn6k 2tins tin3sl t3inst t1int tinter4 ti5ny ti5ok tion1s ti1or ti1ov ti1pa 2tipe ti1per ti3pi 1tips ti1ra ti1re ti1ro ti3ru 2tis ti3sat ti5sei ti1sem ti3sep tis8fa t3isfl ti3sir ti3sju ti3skan ti3skil ti4sl tiss6 ti1ta ti1ter ti3tes ti1ti ti1tj 1titl ti1to ti8tra tit3s 3tittel 8tiu 4tiv tiv3and tiv3art ti3ved ti3vid tiv1r tiv7si tiv3st ti3^^f8re 2tja t3jag t1jak 2tje. t1jeg 8tjel 7tjenstl 2tjer 2t1jo 8tjs tjue5t t5jug t3jun 1tjuv 7tj^^e6 2t1k8 t6kag t4kantg t9kants. tkilo1 t8kjennings t9kjennings. t5klar t4klu. t3komma t5kreft. t5krefte tkrig2 2tl4 tla8 t1lag t1lakk tlands7v t4lappi t3lau tl8e t1led t4lederk t7leders. tle6g t5legef t7legginger t6leggings t7leggings. tle2h t1lek t3lenk t1les t7leva t1lide t2lig t7liga t3ligge tlike8 t5lil t3lim t1lin t1lis t3lit t1liv t1lo t1lu t7luk t1l^^e6 t1l^^f8 t4l^^f8nnsg t8l^^f8ps tl7^^f8y. 2t1m t8malm t2mam tmann7l tmar6 tmed8 tme7dr t9meistere t6mestera tm^^e5l6 tm^^e5le8 2tn t7nag tnar9h tnar9m tnar7r tnar5v t1nas t7nat t1nav t5neg t5nek tne4r tner5g tner3v t7nese t1nett tn7ha t5nor tnord8 tn5sk t1nu t1n^^e6 t1n^^f8 tn7^^e5r to5ben to5bo to1die to7erm 2tof toff7si to1fi to7fri to3gar to5gat 8togg tog1l tog3m 4togsf tog3s2t t7ogv to1h to8han to6h^^e5 toil1 to1in tok6 2tokk tokk5end to7kos 9tokst 3tokt to5ku 8tol. tol5arm tol5b tol5d tole8l 2tolen to7lin to1lit 8tolku tol2l 3tolls tol3ma tol5tr to3mast 8tome to3merk to7meter. to7metere to7metr tom5gang. tom7gange tom7gi tom7kom tom5li tom3l^^f8 5tomm tom5p 2tomr t1omse t1omso tom1sp 6tomss tom1st 1tomt 2ton. ton1d tone1s tong1s2 2toni tons4 ton1sa ton3se ton3sp to1o to1pen to3pl t3opn to3pos 4toppd topp7da t1opph topp3hu topp5lage topp5lu 1toppm t6ora tor1ak tor3as tor1be tor7bi tor1bo tor1br tor5by. tor7bys. tor1da tor5dal tor9del tor3dep t1ordn t5ordre. t7ordren tor1ei tor7eks tor5ete tor1f 3torge 4torgt tor1g^^e5 tor3han tor5hen tor5ho tor1in tor1k 6torl tor1la 8torm tor5mann tor5menn tor7n^^f8 tor1pl tor1pu tor1r tors2 tor1sa tor1se tor7skrifts. tor1sp tor1st tort8 tor1ta tor1tj tor1to tor1tr tor7t^^f8 tor3t^^e5 tor7ut tor5vik. tor5viks tor5vis tor3vok tos2 to1sa tose4 toske4 to1sp t1ost. t3osten tostrati9 to1ti 3toto. 5totoe toto5r 5totos. 2tov to3verd tover2g t3overs tover7taki 2t1p t4priss t8punktf t9puta t5pute. t7puter t2p^^e5k tp^^e57t^^e5 tr4 6tra. 2trab tra5ban tra7bi t3radio 8traff 1trafi 6trafikkl 6trafikkp 7trafikkse tral3d tra5let tra3ma tra3mi tram2p tra3nas 4trand 1trans tran7ske tra7pa 8tra1r2 8tras. 6trat tra7tek tra5tre tra3tu t3reaks 2treb tre2bar tre7bens. tre3by tred4 t1reds 1treet 2trefe 4trefo t3refu 8tref^^f8 4t1reg tre5ha tre2hj trei2 8trek. 4treke 2trekks 6trekksr t3rekla tre3le tren4 1trena 8trenarf trend5s 3trener 6trenerf 1treni 7trenings. 4t1renn t9renta t7renten 8trep t1repe t5repres t1repu tre5sen t3reser tre1si tre7ska tre3sko tre1sl tre1so tre1sp tre5stem 2tresu tre3sv tre5ta tre7ti t1retn tre5to t5retted trev8 tre3vel tre3vin t3revol tre7vr 8tri. t8rib tri1be 2trid 8trie tri7ei trie2v t1rifl tri5gj t3rik. tri1la tri1mi trinn5sk 2trip 4tris tri1sp tri3var 5trives. tro1b tro5form tro3gl 8trok t1rom. t3roman tro1me 3trong tron1s tro5r 3tross 5trost. 6trostv 3truc 3trued 3truet 1trug 2trukt 6t1run 2trup t7ruta t1rute tru3v t8ryd 3trygd. 5trygda. 3trygde 6trygdend 5trygding 6trygdp 2tryke 4trykkbe 6trykkerf 6trykkerk 6trykkr 4trykksb 6trykksr 1tr^^e6 t3r^^f8d. t1r^^f8r6 5tr^^f8t 1tr^^f8ye 4tr^^f8ym t5r^^f8yr t3r^^e5det tr^^e5d5r t4r^^e5dsl t1r^^e5st 8ts t7sak. t9saka t1sake t1sam2 t7sama t6samek t1sang t1sats ts5b t1sc t8sch tse8en tse2k ts3ela ts2em t3semi ts4ende ts6endi t3sent ts1erk tser3o t1seso ts1ev ts7fa ts3h t5side. t3siden t5sif t3sikk t7sikr t8sindigheter tsinn8 t7sinnet ts1ins t1sit t1sj^^f8 t8ska. t1skaf t3skall ts1kan t5skapt ts1kar ts3kjed t3skjer t1skol ts3kren tsk5ru ts3kr^^f8 t3skue ts1kv ts9kvi ts7kyn ts1lan t5slav ts1lei ts2lot t1s8lu ts6mannsk tsmelte4 t5smit ts1n ts1of t9sommar. t9sommare t5sommers t3song ts1or tspe2 t7spenn t7spis ts6pliktr t1spor ts5pos ts1pot ts1pun t5spy ts1s2 tst2 t8stadf ts1tag ts1tak t2s1tal tstam6 t3star t5stas t5stat t3sted. t9steda ts6tenestem ts5term t7stig t4stilk ts3tin ts1tj t8sto. t1stof t7stopper. tstor8 ts7tre. ts9trea t1stri tstrids4 t5str^^f8mn t1stu ts3tv ts6t^^f8r t6st^^f8ttef t6st^^f8ttel t1sum ts1v ts4vernr t3s2vik t1sy ts^^e6r8 t7s^^f8d ts3^^f8kni 8tt tta9fr tt3ald ttale8l ttalls5 t7talls. tt8ane tt1ang ttann7k ttan9p ttar7p ttar7ta tt3arti ttar7v tt1b tt1d tte5b^^f8 tte3del tte3e tte7f^^f8 tteg8 tte3gi tte1gr tt9eig tte1in tte5la. ttele6 tte3leg tte4lege tt7elev tte3lis tte3lit tte1m tt3emn tte3na tte5nek tten3g tt3ense tten5sl tten1^^e5 tten6^^e5rsa tte3ram tte3reg tte5rett tte3rik tter2kr tter1p tter3un tte9set tte5tene tt2fe tt5fi tt5fj tt5fy tt2f^^f8 tt1g tt9gr tt1hen tt7her tt1ho tti3del t3tids. ttig3sk ttil2 tti5ni tt1ins tti5tr tti2^^e5rs tt1la tt7legg. tt5legge tt7leggj tt5leia tt7leid tt5leie tt1len tt7ler tt7lign tt3lik tt5ly tt1l^^e5 tt8m^^e6 tt1n tto7be t6tok tto7li tto1mi tto1na tt3oper tto1po tt1ord tto3ren tt3ori tto1s tto1t tto7u tto5vi tt2par t6trafi. t6trafikko tt1ram tt3rasj tt7rat ttre2 tt3rep tt1res tt1ret tt1rev tt3ris tt7rom tt5r^^f8 tt1sal tts9and tts1ar tt1se tt1sid tt1sig tt7sja tts3kje tt3skri tts1la tts9lags. tts1lo tt3sok tt3spel tt5spill. tt5spille tt1sta tt5stede tt7steds. tts3ten tt5still tts5tim tts3top tts3tra tts3tro tt1sty tt9svev tt7t tt1un tt1va tt7verken tt1vi t8types tt3^^f8l tt3^^f8v tt7^^f8yr tt1^^e5p tt3^^e5r. tt7^^e5ra tt1^^e5re 6tu. tu7bad 2tud tue1g tuer4 3tuf t3ugl 2tui t7uka t1uke 6tukts 2tum tum1f tum6s 6tund tunder8 4tungef tung3l tung9s tun3h 1tunn 8tuns tu9om tur7ant 7turbinane tur1d t7urei tur3gl tur1k tur1o tur3p tur1r tur1s2 tur1t tur3var tur7ven tur1^^f8 tus3h tus7ti tus3u 2tut t3utk t3utp t1utr tutt3ov tu7ved 5tv. t1vak t2vakts tval8k t9valsa t7valse 1tvang t4v5anl t5vare. t3varen t5varer t1ved8 t7veis. t3vekst tvekt8 t8verdip t6verg t5verks. t6verksa t5verksu tvert5 t7vev tvi7b tvi9klas tvil8i tvil8s tvi7sp t2vist 8t1vo tv1s t1v^^e6 t1v^^e5 t5v^^e5l t5wh 6tya ty5b ty2f tykk2p tykk3s 6tykn 2tyl t7yo 1typ 8typek 6typena type5r 2tyr tys2 1tysk 8t1yt 1tyv ty7vas tz5ly tz2s tz7v t^^e6r1d t^^e6r1l t^^e6r1n t^^e6r7s t^^f88ar t^^f88as t^^f82h t1^^f8k t^^f87kap 6t^^f8l t7^^f8let t^^f8n2 t5^^f8ns2 t^^f8r1as t^^f8r1l t^^f8r1p t^^f8r1se t^^f8r1t t5^^f8sten. t5^^f8stens 2t^^f8t t^^f8tt6 2t^^f8v t^^f8v5r 6t^^f8yf t^^f8y3gl t^^f8y1k t^^f8y1r 8t^^f8ys t^^f8y1v t^^e5l1s t9^^e5nda t3^^e5nde t7^^e5nding. t9^^e5ndinga t7^^e5ndinge t^^e53ne t1^^e5pn t^^e5r2 t1^^e5ret t1^^e5ri 1t^^e5rn 4t^^e5rns t^^e5rs1 t5^^e5rssk t^^e5rs6v t3^^e5sen t^^e53sk t^^e53st t3^^e5ta ua5ku ual3d ual5l ual7s u5anl u7au uav6 uav7bro 1uavh ub7alt ub7ant ub5ark u5bei u8ben uber8 ub5lem uble3s ublu5f ub7lun 2ubs ub5stru u9byggar. u9byggare 5ub^^e5tk ud7ba ud3b^^e6 ud2ei udele8 ude3p uder7^^f8 ude1s ude4vo ud7ga udie1r udio3g udio3v ud7ir udm^^e5l6s ud6rollei uds3g ud7skr ud2sta ud9stads. uds3tro ud5va ud7verje. udverjefri6 ud9vin. ud9vins. 7udy ud5^^e5s ue5a ue5dr ue5fu ue3ga ue3gj ue1h u7ei ue3ka ue6kj^^f8ttp ue1kl ue7kv uelsk6 ue7me uens2a ue7o ue1p uer8e ue5rent uer3ta ue1sk ue7sla ues1s ue8sto ues5tra uetter2 ue1v ue6^^e5rs u7fee u7fell uff2 uff5erm uffi8 ufra4 ufram8 ufrem4 uft1sp uft3sty ufull9e 2ug uga5la ug7av ug2by uge5r^^f8 uge1s ugg5l ugg3o ug7gr ug5h ug6ho u5gj ugjen4 ug7ly ugs2 ug7so ug9sterk ug5sva ugs5ve ug1t u5gud u2he 1uhel u1ho u9hu ui2 uid5s uine4 uinn2 uit2 uitt9s uja5s u7jor uk8a u5kaf u9kam u7kant ukar3d ukar3m ukar5s ukar3t ukar7v uk2b uk7egg uke2h 6ukem uker3l uker3st uker7t uker1u uke9sto u3kj 2ukk ukke3h ukken6s u5klem uk8n u3kno uk3og u3kor 2uks uks5h uks1k uks7m^^e5 uks1t uk3tal uktes8 ukt5esk uk8tj ukt1r ukt1sa ukt7s6l ukt3sor ukt1sp ukt5st ukt9s8v ukt3t u2ku uk3^^f8 uk5^^e5 u2l ul3aks ul3akt ula5ting. ula5tr u7lau ul2bra uld7skr ul5dy ul5d^^f8 ule3a ule6boks ule1d ule3f ule1gr ule7h ule1l ule1ma ule1p ule1s ulet4 6ul2f ul3far ulf5l ul9f^^f8 3ulikh uling3v ulin3t ul2k3v ull3arm ull3egg uller8 ull8es ulle7ste ull2f^^f8 ul8li ull5iv ull5os. ull7ose ull7pl ull1sk ull8skap ulls8m ull1so ull5sva ull2ti ull3ur u3lok ul5op ul8r^^f8te uls5l ul3spo ul2t ult3re ult1ri ultur3n 1uluk ulu3l ulv3u ulv5^^f8 1uly ulykke4s ul7^^e5l 2u2m uma5b u5mag um3av um1d um4du um1enh u3merk ume9st um8et um1fr um7g um7ha umi2 um7ja um5lag um3lo um7merk ummi1s ummi5t um5mu um9na um5ok um5ord ump7akt umpings4 um5r^^f8 ums1 ums5ne um1t um1v um6vas um8verks um8vern um^^f8r1s um^^e5te8 2un. un3alg un9b unche3 2und. und9br und2by und6e unde3p 7underligs 3unders 4unders. 3underv 4undet un8di und7im undre5ta 2unds unds3ka und7sl^^e5 und7sta und1v und7vi une1l un5eng une1se une1sk une7sto une1v un1f 1ungd 6ungef 8ungi ung1j ung7lo ung3ro ungs2 ung7sa ung1si 8ungt un5gu u2ni 1unif 1unio 3univ 2unk unke2o un2n unn7b unn9de unn5ers unn3erv unn3ga unn7hal unn1ho unn1k unn1le unn5li unn4lovg unn1r unn3sat unn5skud unn3spi unn5stof unn3sy unn1te unn1tr unn1v unn3yt un9n^^f8 un1os un1re 8uns2 un5so un5sp un7stat unste4 unst3el un1sv unta3l untry1 un5v^^e6 un5^^f8yd uo8 u1ob uom8 uop8 uopp8b uopp8v uor5k u5ov uover2 2u2p up3av up7b up5d uper1 upe3ta up3he up7lin uppe3te upp7lei up1se ups7ka up1ta up^^e52k up^^e58t ur3aft ur1ak8 ur6ant ur7arl urar7s ur3arv u7rasa u7rase ur5asp ur1av2 ur1b ur2ban urd5o ur5egg ur3eli ur1els ure8n ure7o ure5te uretts8lags 2ur1f ur3git ur1g^^e5 ur1h urhets4 uri8 ur1inn ur1ins ur1int ur2inv urke7s urk7ja urk7ny ur1ko urk1s urk3t ur1la ur9legen ur1les ur1m ur7mu ur1nas urne7v ur1nor urn1s ur1n^^e6 1uro. 7uroa 1uroe uro8l ur1or uro1s uro3sk uro6sta uro1vi ur3p^^e5 urre4f ur3rid urs3el ur3sil urs1l urs3tal ur5stein. ur7steina ur5steine ur7steins. ur7stens. urs3til urs5tru urs1va ur1sy urs1^^f8 ur8ta. urte5t urti4 ur7tid. ur9tida ur1tr urts2 ur1tu ur3t^^f8 uru5b uru5l urum5l uru5p uru7tr uru9ve ur3verd ur1vi urv5l urv3s ury3l ur1^^f8d ur5^^f8y ur5^^e5r usaman9 us5art us2ban us6ber us6drifts us2dy use6al us4eierf usel8 use7la usen5del us7endi usent9r user4 us5erm us6farv us2h us3hu us4i5d us1ind us5katt. us7katta us5katte uskel7s usk7lem us1ko us5kro us7kru u8sl us3lab us1leg us7lu us3l^^f8 us2man us5mann. us5manne us2mo us5mod us5m^^f8 us1ok us1or us1pa us5per us1po us7sak us9sal. us9sale us9salg. us7salge uss3h us1sk uss7kor uss3m^^f8 uss3ter us7s^^f8k ustad3f usta9fra us1tak us3tal u9stein. u7steina u7steine u9steins. us5tenest us7tenn us7term ust9ette ust3ho u5stig us1tj ust8man ust7ov ustri3d ustri3l ust5r^^f8d u6st^^f8ttem us1va us1vi us9^^f8re. us7^^f8ret ut2 4ut. 2uta uta8bo uta3de utad3r uta3f ut3alb uta1m ut7ani uta3po ut3arb uta1re2 uta5sk uta1st uta5u uta3v 1utb 6utbi ut3b^^f8 1utd 2ute 6ute. utebil8eierf ute1g ut7ei ut3eks ute3lig ute7me uten2f uten7sk uter5ess ute1s ute8va 1utf ut6far ut3fi utfor7de utfor3l 1utg 2uti utikk6u util2 ut7inn uti7ven 5utj ut3kj^^f8 1utl 4utleies ut8l^^f8y 1utny 2uto ut7oms uto3se 9utov ut8pu ut1rom 5utru u8tr^^f8 ut9r^^f8d ut7r^^e5 1uts2 4uts. 2ut7sei ut4sen ut3sil 5utsl 5ut4st ut3tag 1uttak ut5tei utter4f utt3f utt4ga utti8 utt5le 1uttry utt1sk utt5s4l utt3spu utt1st utt1v ut7un ut3ut 1utv ut3var ut8veg ut7^^f8k 1ut^^f8v ut5^^f8ya ut5^^e5r uum5p u1un uut8 uv7akt uved2 uve3ga u5vekk uver2 uve3st uv7f uv7j u1vo uv7ra uv7ry uv1s uv7ta uy8 u3^^f8y u3^^e5ri 8va. 6vaa va4b vad2m va6f va7je vak2 2vakh 1vaksi v3aksj vak5sti 1vakt 6vaktarb 2vaktf 2vakti 4vaktk vakt7r 7vakts. 4vaktsj^^e5 va1kul vak3v val4bor 9valden 4valel val2fa val8far val2g 4valgh 2valgl valg1r valg1u val4hal 2vali val3ko val5li val1o val5som val7tak val7tem val7va val5vi val7^^e5 va7mar v1anal vand8r vand5s 4vanere vane3t 2vang2 vangs7e van7la v6ann 1vann. vann3d van6ni vann1l 4vannm 9vanns. vann7sid vann5sla 5vannsm vann5spo van3r 1vansk van1sm van1st van1tr va4r 2var. v1arbe 2vard var7del 2varef 6vareo vare3p vare1s 2varet vare7v 6varin var7ko var8le 7varma 1varme 4varmene 4varmeu varm3h 7varmings. varn8 var7sen var7tid vas8 vasi7l vass5au vass3ka vass7^^f8 6vast vat5d vat1ei vat1l 1vatn vat1s v1av v1b v2bei v9beitet. v9beitets v4betali v7betaling. v9betalinga v7betalinge v7betalings. v7biter. v5bitere v7bitt v3bla v7brudds. v2bruks v6budsjettf v6budsjettp v3b^^e6 4vd v3dam v1dek v5delt v1dem vding3s2 v1dram v1dri v7dr^^e5 v1du v5dyra v3dyre v1d^^f8 8ve. ve1a ve7am ve7bens. ved1a ve3dag veder8 ved1g ved2kje ved4lagt ved1n ved1r ve1dri ved1s veds2p 4vedt. 3vedtak ved1v ved1^^e5 ve1f 1veg. 3vegane 3vegar veg7av vege2 8vegel ve5gem 1vegg vegg5s6 4vegings ve3gj veg1n ve3gra 3vegs. 8vegsk 8vegsr veg5v ve1h 1vei. 4veia 2veib 1veie v4eiert vei7fe v9eigan v7eigar. v7eigd vei3gr vei4g^^e5 vei3ka 3veiled 4veim vei1ne 6veinings 7veinings. 2veip 6vei5r 5veiski 6veisp vei5stan vei5stre 2veit veita7 vek4 6vek. 3veka. 1veke 2vekee ve7kla ve7kle ve7kr 9veksa 2vekstb 4vekstf vekst3r 7veksts. 4vekstt 1vekt vekt5an 2vekts 3vekts. 2vel. ve1lag vel3ass velde5l vel8ei ve3lev vel3gje ve3lis vel2k vel6le vel3lu ve5lot vels2 velse2 velses5 vel5set vel4si vel1sm vel5sp vel3ste vel3sti vel8te vel1tr vel5un ve3l^^f8 ve1ma vember5 ve1me ve1mi vem8l ve7m^^f8 ve7m^^e5 ven3gr ven2i ve5nis 1venle 1venn venne5t 6vennings ven9o ven5tre vent6s1 2venty ve3o ve1p ver5ak ver3dam verde5s 3verdi. 8verdid 3verdie 4verdif 8verdit ver3dom ve3red vere5l ver3eng ver5ess ver7ete ver7eti ve7retta ve5rette ve5retti 5verft ver1h ver6hall veri1a ve1rik ver4kan ver6kar 8verkef 6verkett 4verkf 4verki 2verkl 6verksei 5verksem 2verksj 6verksp 6verksv 3verkt 4verkti 4verkto ver5kul 8verl ver1la ver5legg ver7len ver8lever. ver4li ver2lis ver4lot 2verm ver1ma ver7mel ver1mo 1vern. 2vernak 7vernar. 7vernara 7vernare 4verne. 8vernen 3vernet 4verneta 2vernk 2vernm 3vernme 2vernor 5verns. 2vernsn 6vernsp vern3sy vern3v ve9ro. ver3par ver3rak ver2sa ver3san 8versi ver7skotten ver9skudda ver7skudden ver7skudds. ver1sp ver3sta ver5steg ver3str ver5s^^f8 ver3s^^e5 ver3tal ver5tas ver3teg ver5tent ver5tid. ve3rund ver5vant 6vervs ve9r^^f8ra ver1^^f8s ves4 6ves. ve3set ve3sig ve1sj 7veska. ve7skap 1veske ve1skj ve3skr ve5sky ve1sm ve1so ve1sp 6vestat vesta7v ve3sted vest7end 2vestla vest7land. vest7landsk. vest7landske vest3ov 6vestp 4vests ve1sty vet4 2vet. ve1ta ve9taka ve3teg 1veter vete4s3 ve1ti ve5tidsr ve5tis ve5tj ve1ton ve1tr 4vets vett3sk ve7tv ve1ty 1vev. ve1va 1vevet ve3vo ve5v^^e6 ve4^^e5rsa 1v^^ea 4v^^earsd vfalls3 v3fat v1fe v5fel v7ferd. v5ferde v5ferds. v1fi v4fiskek v1fl v1fr v1fu vg6 v3gal vgangstids7 v5ge8 v5giva v5gjeva v9gle v9gl^^f8 v7gn v1go v1gra v5grei v7grene v7greni v8gr^^f8 v5gy v9g^^e5a v9g^^e5d v5g^^e5e v5g^^e5r v9hef v3hei v3hent v7her v1hes v4hjelps v3holdt v3hus. v9husa v5husen v5huset v6hy v8h^^f8rs 4vi. via3k 6vic 5vidda vide2 vid3o vids8 vid1st vidt5r 1vif vig5ga 4viglerp vig6m vigre5 vigs2 vi8he vi8k 2vik. 2vikaro 6vikars vikar3t vik5d 3viki 8vik3o 6vik7r 2viks vik3sa vik7sl viks7t 4viku vi2l 2vil. 6vil1a 4vild 2vile vil4h 2vili vil1in 1vilk vill5an 6villel vill9ep vil5m vil1o 3viltet vim8 vi7merk 6vinb 1vind 4vindl vine9a vine7l vin3f 2vini vin3ka vin4lan 8vinnarc 6vinningsd v5inn6l v3inns 4vinsa 1vint vinter5n vinter5v 6vintheter 6vintringso 8vir. 4vira 2vire 6virkningsn 6virkningsp 1virks v3iro vir4v 6visel vise3m visen6 6visers vise9s 6visingsg vis1kj vis1kr vis3ma vis7mo 9visp. 7vispe vis5po vis5tr vis5tvi 1vitj vit5m 9vitna 7vitnen vit7o 3vitska 2vitt vit5un vit5^^f8y 2vj vje2 vje5m vjet1a vjet3t v1k v5kalk v3kam v3kap v2kl v3kli v9kom 6vl vla7b v1lag v3lak v3lang v7lap v7lasta v3laste v7lastnings. v3laus v1leg v8lega v1lei v3lese v8lesings v6lesningss vle3str v5levere v7leveringa v7leveringe v7leverings. v5levert vle9vo v7lik v1lis v1lo vls1 v9lyd v5lyk v5lytta v3lytte v7lyttings. v1l^^e6 v5l^^f8nned v1l^^e5 v1m v3mas vmed6 v6merkings v7mi v2mod v3mord. v5morda v3mot 2vn v5nakke vn5al vn3b vn1d^^f8 vne7b vne1d8 vne5h vne1s v3nett vne1v vn1f vn1g vn1l vn2li vns4b^^e5 vns5pa vn1st vn5sva vnt4 vn3ta vn5tu v1n^^e6 vn7^^f8r vo1al vo6ar voar5b voar5r v1of 1vog 2vognb 4vognfo 4vognk 4vognr 1vokal vokat3t 1vokse 4vokterb vol8 8vol. 8vola 6voldsf 4voldsl 8vole voli5tu 6vollm 4vols 1volum 7vom. 7vomm v5oms vond7si v1op vopp6 vor2 v1org vo3rop vor7si vor5u vot7s vover4 v1p v2pri vpuls4 vr6 1v4rak v1rea vre8b^^f8 v4redn v7redning. v7rednings. vre4fo v9renne v7rennings. v8renteb v4rentek v6rentep v6rentes v3rep vre7tr v7rett. v5retten v5retts. 1vrid 5vridn v1riv v1rom v3run v9rusinga v7rusinge v3rust v1r^^f8 v5r^^e5d. v9r^^e5da v3r^^e5de4 v5r^^e5dsm 8vs v7sali vs1ar vse6 vs3egg v1sei v7sein vs5eli v9sendar. v7sende. v7sendes v1sett vs1ev vsfar8 vs3h v5sies v9sile v7silt vs1in v9sit v3siv v1sj v2sjo v2skip v1skis v3skjer v1skj^^e6 v6skolef v6skolek v9skrei v7skrekka v5skrekke v9skrekkinge v7skrel v3skrev v5skrif vs7krit v5skru v3skr^^e5 v5skut vs1kv vslags4 vs1lan vs1le v8sna v4sn^^f8 vs3od vs5oms v9son vs1or v9spenne vs1s2 vs2syn vs6s5^^e5 v5stam v5sted. v7stende. v9stendet vste4s v1stu v2styre v5styre. v5styret v7st^^f8tnings. vs8ung vs1v vs9vern vs2vo v1sy v1s^^f8k v8s1^^f8y vs6^^e5r 6vt v5tall. v3talle v7talls. v3tap v5tast v1te v8ten v1ti v1tj v1to v1tr v7tre. v9trea v7tree v7trekks. vt7s v3tu v1tv v1ty v9t^^e6 v1t^^f8 vt5^^e5 vt8^^e5k vud1 vuds8 6vue 2vul2 6vung 1vur 4v1ut v1va vvann5s v1ve v6veke v5vilt. v1vir v1vis v6visnings v7visnings. v1vo v1vu v1v^^e6 vy7l vyre8 vy1s vy1t vy3v 6v^^e6relses 9v^^e6relses. v^^e6r1m 8v^^e6rss 1v^^e6s 1v^^e6t v3^^f8d v3^^f8l v3^^f8rke v3^^f8v v3^^f8y. v7^^f8yg 2v^^e5g 3v^^e5ge v^^e53h 9v^^e5ka 3v^^e5ke 6v^^e5kera 7v^^e5kings. 7v^^e5kingsmes 9v^^e5knings. v^^e5l5se 3v^^e5pen. 3v^^e5pene 5v^^e5pens. v3^^e5pni v^^e5r1d v^^e5r3h v1^^e5ri v3^^e5rl v^^e5r7n v^^e5r5sl v^^e5r1t v^^e5te8 v^^e5t3s v^^e5t7v v^^e5t7^^e5 v^^e53v wa4h wal4 walk5o wa1p 3watt. 7watte 7watts w5bu w5d we2 wel4 west2 w2f w5ho 6wic wi5f wik6 wil6 wis6 wk3r w1m wn5s work3 w5r w8s wur8 w7v wy2 x7b x8c x3fi x5g xi1se x7k x1l x5m xover4 x1p x3r xre8 x1s x3v ya7b 1yac ya7f yal6 y3anl y3anset y3anska y7ansl y9ap yar7ak y1arb y1ark y7arr y1art y1av y9bad y3ball. y5ballen y9balls. y1ban y5barb y3ben y1bi y1bj y1bo y5brott. y9brotta y7brotte y5bu y3bygd y3bygg. y9bygga. y3bygge y7bygging. y7bygginga y7bygginge y7byggings. y1dam yd5bok. yd7boka yd5boke yd1b^^f8 yd7enh yden1t yd1is yd5les yd3mu yd4ov yd5rem yd7rik yd1si yd1sp yd1st yd5to yd1un yd5v yd6vesto 6ye ye2b ye3br y9edl ye3ep y3ei yel2 ye1la yels3j yels3m ye2m ye5m^^e5 y2en yen1l yen1s y1erv ye3sta y1eta ye7tr ye3v y1f y7fir yfjell4 y5fjell. y5fjells. y8fla. y8flan y8flar y8fon y2fy yg4 ygd3al ygd1r ygd3y ygens6 yge7ret yge5v^^e6 ygge7v^^e6 ygg1s2 ygg7^^e5 y3gj y5glans. y7glanse y7glas. y1gr ygs2 y1gu y1ha y8has y7hendi y5hes y1hu y1inn y7je y5jo y1ju 2yk y1ka2 yke2h yke7hjem. yke7hjemm yke2pe yk2kam ykk5enh ykkes5tal ykk3l ykk5ni ykk2sk yk4kv ykle7s y3klub yko7li yko5mo yko1so yko1t y1kr yk1s y1ku yk1var y1k^^f8 y1lag y6lagi y7landsb y3lap y9lau yld9se yle3ga y3lei yl7h ylke2 ylkes7la ylkes9lags. yll5s yl1m yl7p yl1sa yl3sk yl5sl yl1sy yl1s^^f8 yl7ver y3lyt y3l^^f8 ym2 y1ma y5mann ymbol3t yme1de y1me2k yme9st y6misjons y7misjons. ym7l y7mod y1mor y4motorv ym3pr ym3sa y1mu y1m^^e5 y8m^^e5ned y4m^^e5nes yn7berr ynder5h ynder7skape 3yndl yne2k yn7eld ynergi2 y7nese yn9fe yn9fo yngs2 yng3sta yn3h yn3ned ynn3s2 ynn3ta ynn4^^f8 ynor8 yn7ord yns5eng yns5ins yn3sna yn7sn^^f8 yns1o yn7sod yns1t yns1u yns7v ynte7te yn3to ynt7so yn1tur yn1v y1o yopp4 y8os y1park y3part yp8e ype5k ype1le ype5m yper4b ype7ta yp3inn y5pist y3plan. y7plana y5planen y7planer ypp3s yp3r^^f8 yps6 yp1sk yp7tr y3pu yr5akt yr3al yr2an yr8ar yr7au yr7av yr1b yr3dr yre5dr yre2du yre3f yre1ga yre1h yre1in y3reis yre1k yre3ka y7rekk yre5le yre5mo yre3p yre5sc yre7si yre3sk yre5sl yre3s6p yre3ste yre7sti yre3str yre7ta yre1te yre1v yr1f yr3gl yr1h yr3inn yris8 yri7sp yr5ju yrk2 yr5kal yrke7m yrke2s yrkje5m yrkje5v yr9lande yr9leggjarar. yr1ly yr3mal yr3n^^e6 yro5g yro3me yr1op yr3or yr3p yrr6 yr5rik yr7set yr5sn yr5tid. yr7tida yrt7r yr7ty yr7t^^f8 y4rutes yr7utr yr1v yr2vi yr9v^^e5 y1ry y9r^^e5da y5r^^e5der yr^^e57s 2ys y5sal y1sam y1sang y5sats ys2bi y1sc yse4bu ys7ekte yse7rat y5serv yses6 yse7sk yse5sl y5sett ys7fo ysil5 y7skag ysk9au ysk3l^^e6 y7skriveren y7sku ysk5^^f8s y1son ys5or y5spent. y5spente ys3pis y3spo ys1pu yss3ei ysse7m yss5f yss3il yss5pe yss5tab y3stak y8star. y1stat y3stek yste2m ystem3o yster5t yst6go yst3ho ys7tjen yst1l yst5op yst1ru yst3s y9styra y5styre. y5styres. y5styret y5sva y1sy ys2^^e5t yt2 yt3ana yt7b^^e5 yt3d yte1d y1tegn yte3gr y6teknika yte3lis yte1m yte3na y1tenk y7tenn yte3ret yter3v yte5sk yt3f y1til yt7k yt3l y8tro y5trykk. y5trykke y5trykks. y5tr^^e5 yts3en yt5si yt3sk 2ytt yt7talen ytt4e ytter9end ytter5k ytte1s ytti9en. yt5tra ytt9v 2y1tu yt7v y1ty y1u yv3ak yvass7 yve2b yve7br y5vekk yvel6 y3verk y6vernr y1vert y1vir yv3s y1vu y7v^^e6r. y7v^^e6re ywood7 y5^^f8 y3^^e5p y7^^e5r. y9^^e5ra y3^^e5re y3^^e5s y7^^e5t za5es zam8 za5me za3re za3s z1b z6bu z1c ze8 zel6 z3ense zet6 z1f z1g z5hu zi7br zi3led z3int zis4 zi5sv zi1t z1k z1m zono7s zo3s z1p z5r z1s zte6 z1tr z1un z1ve zy8m zz3d zz3el zz3le ^^e6d5g ^^e66f ^^e6ge6b ^^e6le1d ^^e6l5j ^^e6ls8 ^^e62r ^^e6r1ak ^^e6r1at ^^e6r5av ^^e6r1b ^^e6r1di ^^e6r1dr ^^e6r1dy ^^e6re7by ^^e6r5eie. ^^e6r7eiet ^^e6r7eig ^^e6re1k ^^e6r7eld ^^e6re7li ^^e6re5m^^e5l. ^^e6re9m^^e5la ^^e6re5m^^e5le ^^e6re2nem ^^e6r3ener ^^e6re1p ^^e6res3s ^^e6re7ta ^^e6re7tr ^^e6re1v ^^e6r1f ^^e6r5ge ^^e6rgen6 ^^e6r1gu ^^e6r5g^^e5rd. ^^e6r5g^^e5rds. ^^e6r9ha ^^e6r7ho ^^e6r3il ^^e6r1int ^^e6r1j ^^e6r1k ^^e6r6ke ^^e6r3la ^^e6r9lem ^^e6r5ly ^^e6r1ma ^^e6r1med ^^e6r7mo ^^e6rne6 ^^e6r3no ^^e6r3n^^e6 ^^e6r1o ^^e6r8os ^^e6r1p ^^e6r1re ^^e6r1s ^^e6r8sel ^^e6r4s3il ^^e6r4s9l ^^e6r4sm ^^e6r2sp ^^e6r7sp^^f8 ^^e6r6s^^e5 ^^e6r1t ^^e6r9ta ^^e6r1u ^^e6r1v ^^e6r9veran ^^e6r2v^^e6 ^^e6r1^^f8 ^^e6r7^^f8l ^^e6r5^^e5 ^^e6t2 6^^e6te 1^^e6tt ^^e6v8 8^^f81a ^^f85anem ^^f89bad ^^f85ball. ^^f87balla ^^f85ballen ^^f87baller ^^f87balls ^^f8bel5l ^^f8bel5t ^^f81bo ^^f87brette ^^f87bri ^^f85br^^f8 ^^f81bu ^^f81by ^^f87b^^f8 ^^f8d1b ^^f8d9dei ^^f8d7dis ^^f8de5have ^^f8de3lan ^^f8de6me ^^f8de5ri ^^f8d3g ^^f8d1l ^^f8d2m ^^f8d3ma ^^f8d3mu ^^f8d1ra ^^f8d4red ^^f8dre5p ^^f8d5rest ^^f8d3ris ^^f8d2sa ^^f8d5sag ^^f8d2sc ^^f8ds7ek ^^f8d1si ^^f8ds7ke ^^f8ds2mu ^^f8ds5s ^^f8d5stilt ^^f8d5tek ^^f8d3to ^^f8d3und ^^f8d5ur ^^f8d1va ^^f8d5vin. ^^f8d5vins. ^^f81dy ^^f8d7^^f8 4^^f8e ^^f85e8p ^^f81eta ^^f81fak ^^f87fara ^^f81fare ^^f83farte ^^f81fe ^^f81fi ^^f86forsvars ^^f8ft5s ^^f85fugl. ^^f89fuglan ^^f89fuglar. ^^f83fugle ^^f81f^^f8 ^^f8g5al ^^f8gare9 ^^f81gev ^^f8g4fj ^^f8g7gra ^^f8g9hal ^^f8g7he ^^f81gi ^^f8gre7p ^^f8gs2 ^^f8g3se ^^f8g5sl ^^f8g7so ^^f8g7spa ^^f8g1te ^^f83gu ^^f85g^^e5 ^^f81h ^^f8i2 ^^f82is ^^f81j ^^f82k 8^^f8k. 6^^f8ka ^^f86kapteins ^^f84kartv ^^f85kav 2^^f8ke ^^f8k7eg ^^f8ker3t 4^^f8kj ^^f8kjenne6teg 2^^f8k2k ^^f8kk5r ^^f8kle5b 2^^f8kna 1^^f8ko ^^f83kont ^^f8k5opp6 ^^f84krig ^^f87krig. ^^f8k7ur. ^^f8k5ure ^^f87ky ^^f87k^^f8 ^^f83lag ^^f8la3h ^^f81lak ^^f8la7m ^^f85lapp. ^^f87lappa ^^f83lappe ^^f8l7do ^^f8l2e ^^f8le1s ^^f8le1v ^^f8lge5d ^^f8lgs4 ^^f85liv ^^f8lke1 ^^f8lle3s ^^f8l9ly ^^f8l8l^^e5 ^^f8l5mo ^^f81lo ^^f88lop ^^f86lovk ^^f8l7si ^^f8l5star ^^f83lu ^^f8l5van ^^f8lv7f ^^f8lv5o ^^f8lvr^^e5de7 ^^f8lv7^^f8 ^^f81l^^f8 ^^f87mak ^^f85mann. ^^f83manne ^^f85manns. ^^f87mannsme ^^f83mat. ^^f87mate ^^f8m1b ^^f8m3dr 1^^f8mfi ^^f8m3g ^^f8m7ha ^^f81mi ^^f8m1le ^^f8mpe5l ^^f8m1ski ^^f8m5sp ^^f8m3st ^^f8m8s^^f8 ^^f8m6to ^^f8m3v ^^f81m^^e5 ^^f8n7al ^^f8n2b ^^f8n3dale ^^f8nder3l ^^f8ne7m ^^f8nne9ro ^^f8nn1f ^^f8nn5it ^^f8nn5l^^f8 ^^f8nn7r ^^f8nns1e ^^f8nns5id ^^f8nns3ku ^^f8nns5le ^^f8nns7lip ^^f8nns5te ^^f8nns3ti ^^f8nn1t ^^f8nn1v ^^f8n7sak. ^^f8n9saka ^^f8n7sake ^^f8nsk4 ^^f8nt1a ^^f81o ^^f8over8 ^^f81pak ^^f8par7m ^^f8patte4 ^^f8pe5da ^^f8pe7i ^^f8pe5ru ^^f81po ^^f8ps1 ^^f8ps3f ^^f8ps8leg ^^f8p3sta ^^f8p^^e58 ^^f8r1af ^^f8r1ak ^^f8r1am ^^f8r3ant ^^f81rap ^^f8rar3v ^^f8ra2s ^^f8r5au ^^f8r7bas ^^f8r1be ^^f8r1bi ^^f8r1bo ^^f8r1by ^^f8r3dam ^^f8r3det ^^f8rd8s 4^^f8reb ^^f8re9bens. ^^f8r7edd ^^f8rede4 ^^f83redn ^^f85reds ^^f8re1f ^^f83reis ^^f8re6j ^^f8re5kl ^^f8r5ekt ^^f8re1le ^^f8re3mi ^^f82ren ^^f87renn ^^f8re5o ^^f8re1p ^^f8re3ri ^^f8re9set ^^f8re1sk ^^f8re3sti ^^f8re5sto ^^f8re3str ^^f8re6sv ^^f8re9ten ^^f8re5ter ^^f8re5tr ^^f8re1v ^^f8r1fa ^^f8r5fe. ^^f8r5fet ^^f8r9fi ^^f8r8fug ^^f8r9f^^f8 ^^f8r7gang ^^f8r3gl ^^f8rg7s8 ^^f8r7g^^e5 ^^f8r7ha ^^f8r3hold ^^f87rik ^^f8r9im ^^f8r1ind ^^f8r5int ^^f8rke6ret ^^f8rkes2 ^^f8r7kinn ^^f8r1ko ^^f8r7k^^f8 ^^f8r7legger. ^^f8r7leggere ^^f8r7leggern ^^f8r7lin ^^f8r1m ^^f8rn6e ^^f8r7nip ^^f8r7ny ^^f8r5n^^e6 ^^f8rn5^^f8 ^^f8r1o ^^f87r6ok ^^f8r2os ^^f8r7pi 4^^f8rretf ^^f8r7rik ^^f8rr3is ^^f8r2ska ^^f8r1ski ^^f8r2skog ^^f8rs9kr ^^f8rs6lev ^^f8rste4ha ^^f8rste5i ^^f8rs3tra ^^f8rti7a ^^f8rti9en. ^^f8rti9ni ^^f8r5tj ^^f8r1tr ^^f8rum5 ^^f8r1v ^^f8r6vel ^^f8r6v^^e6 ^^f8r^^f8st3a ^^f87r^^f8va ^^f85r^^f8ver. ^^f85r^^f8vere ^^f8r7^^e5n ^^f8r1^^e5p ^^f8s2ak ^^f81sc ^^f8ser3l ^^f8se5s ^^f8s2h ^^f8s3hu ^^f8s5lu ^^f86smelte ^^f82sn ^^f81s2p ^^f8ss2 ^^f8s5salg. ^^f8s5salge ^^f8s9sk ^^f8sta4f ^^f8st9eft ^^f8sten3s ^^f8ster4l ^^f8st9ett 1^^f8stl 6^^f8stlande ^^f8st2ma ^^f8st3of ^^f8st1ov ^^f8st6vo ^^f81sy ^^f84syket 6^^f8t ^^f8ta4 ^^f8t3ak ^^f8t5asa ^^f8ta5v ^^f8t5d ^^f8te1d ^^f8te5gi ^^f8te5gr ^^f8te5is ^^f8te9ko ^^f8te1le ^^f8te1s ^^f8te3se ^^f8t5g ^^f8t7leg ^^f8t1sa ^^f8ts8^^e5 ^^f8t2t ^^f8t5tal ^^f8t5tenn ^^f8tte3s ^^f8tt5eta ^^f8tt3ete ^^f8tt9ri ^^f8tt9s2 ^^f8t1v ^^f85u6 ^^f88vanns ^^f86vas ^^f8v2b ^^f8v7be ^^f87vege ^^f8ve3gr ^^f85veis. ^^f8vel7p ^^f8ven5st ^^f8ver6by. ^^f8ver2l ^^f85verner ^^f8ve1s ^^f8ve5ten ^^f85vett. ^^f87vette ^^f87vetts ^^f8v3f ^^f87vins ^^f81vir ^^f8virke8 2^^f8vn ^^f8v9o 8^^f8vr ^^f8v7rei ^^f8v1s8 2^^f81v^^e6 ^^f8y1b ^^f8y5ba ^^f8yd8i ^^f8y5dr ^^f8yds8 9^^f8yem ^^f8y2fje ^^f8y3gi ^^f8y4kl ^^f8y2ku 2^^f8yl ^^f8y5land. ^^f8y5lande ^^f8y7lands. ^^f8y5las ^^f8y7men 1^^f8yne. 3^^f8ynen ^^f8yns6 ^^f8y3o ^^f8y1pl ^^f8y5po ^^f8yre1 ^^f8y8res ^^f8yre6ty ^^f8y1rik ^^f8y7riv ^^f8yrs8l ^^f8y3r^^f8 1^^f8ys. 8^^f8ysa ^^f8y1skj ^^f8y7slet ^^f8ys5set ^^f8y7stem ^^f8y3sto ^^f8y7sty 8^^f8ysu ^^f8y3s^^e5 ^^f8yte1i ^^f8yte1s ^^f8yt5h ^^f8yt3s ^^f8yt5ten ^^f8y7t^^f8 8^^f8yv ^^f8y5v^^e6 ^^f81^^f8 ^^f83^^e5r ^^e51ak ^^e55al ^^e5ar7d ^^e5ar5t ^^e5ar7v ^^e51be ^^e5ber2 ^^e51bi4 ^^e57bj ^^e51bl ^^e51br ^^e5bro8 ^^e55bya ^^e51bye ^^e52b^^e5 ^^e53b^^e5t. ^^e59b^^e5tan ^^e59b^^e5tar. ^^e53b^^e5te 6^^e5d ^^e59dat ^^e5de3re ^^e5de7ri ^^e5de1s ^^e5d7l ^^e5d2ma ^^e5d6n ^^e59dregi ^^e57driver. ^^e55drivere ^^e57drivern ^^e5ds1 ^^e5d2sa ^^e5d5sek ^^e5ds8la ^^e5d9slag. ^^e5d9slaga ^^e5d9slage ^^e5d7s8leg ^^e5d7slo ^^e5d3sl^^e5 ^^e5d1s2n ^^e5d3s2pe ^^e5d1v ^^e55em 4^^e5f ^^e51fa ^^e53fla ^^e5fly3p ^^e59flytting. ^^e59flyttinga ^^e57fr^^f8 ^^e5f^^f8r3s 4^^e5g ^^e5g7ei ^^e5g1h ^^e55gj ^^e5g7le ^^e5g8mo ^^e5g9ne ^^e5g4p ^^e55gr^^e5 ^^e5g7st ^^e5gs7v ^^e51gu ^^e5g5^^f8 ^^e55has ^^e52hi ^^e5hl6 ^^e53hu ^^e57jern. ^^e57jerne 8^^e5ka ^^e59kak ^^e57kas ^^e5k7av ^^e5ke1l ^^e5ker7t ^^e5k1g ^^e5k3h ^^e51kj^^f8 ^^e5k1ku ^^e5k7line ^^e54kly ^^e5k1l^^e6 ^^e5ko6 ^^e53kopi ^^e55korn. ^^e55korne ^^e55kost. ^^e5k3r^^f8k ^^e5k1r^^e5d ^^e5k1s ^^e5k8s7l ^^e5ks8v ^^e5k1t4 ^^e55kul ^^e5k1und ^^e5kval3f 2^^e5l ^^e5l7au ^^e5l1b ^^e5l9bat ^^e5l9be ^^e5le7gr ^^e5l9eini ^^e5le8le ^^e5le1m ^^e55leng ^^e5l3enh ^^e5le5p ^^e5ler1r ^^e5le1st ^^e5le2su ^^e5le1te ^^e5l3fe ^^e5l5f^^f8re. ^^e5l7f^^f8ren ^^e5l7f^^f8rer ^^e5l7f^^f8ri ^^e5l5gi ^^e58li ^^e5l5j ^^e5l1k ^^e5l5lags. ^^e5l1ma ^^e5l7me ^^e5l7odl ^^e5l5or ^^e5l1p ^^e5l2ro ^^e5l1sc ^^e5ls5l ^^e5l2so ^^e5ls7tj ^^e5l9stri ^^e5l1ta ^^e5l1un ^^e5l1v ^^e5l5^^f8y. ^^e5l7^^f8yd ^^e5l^^e58 ^^e5l7^^e5k ^^e51ma ^^e5m1b ^^e51menn ^^e5m5la ^^e5m1om ^^e5m3p ^^e5m1r ^^e5m3st^^f8 ^^e5m7^^f8y ^^e51m^^e5 ^^e57nap ^^e5nde7m ^^e5nd7heving. ^^e5nd9hevinga ^^e5nd7hevinge ^^e5nd7hevings. 7^^e5ndings. ^^e5nd3j ^^e5nd1l ^^e5nd5ri ^^e5ned2 ^^e5ne7i ^^e53nekt ^^e5ne1s ^^e5n1f ^^e5n1g8 ^^e55nis ^^e5n3lat ^^e5n7le ^^e5n8leg ^^e5n5o ^^e57ny ^^e57n^^f8 ^^e54oljem ^^e57op ^^e55ov ^^e53pap ^^e5p2e ^^e5pe2n ^^e5pen3a ^^e5pen1d ^^e5pen1s ^^e5pe5s ^^e51pla ^^e5p7p ^^e5ps1 ^^e52p^^e55 ^^e5r7aktig. ^^e5r7aktige ^^e5r1bo ^^e5r5br ^^e5r1b^^f8 ^^e5rd1b ^^e5rd5f ^^e5rd3se ^^e5rd5str ^^e5r5du ^^e5r7dy ^^e55rei ^^e5re3k ^^e5re1l ^^e5re5m^^e5l. ^^e5re9m^^e5la ^^e5re5m^^e5le ^^e5re7pe ^^e5re5st ^^e5re3ta ^^e5re1v ^^e5r5f ^^e5r5ge ^^e5r5gy ^^e5r2h ^^e5ring2 ^^e5r1k ^^e5r3la ^^e5r7legg ^^e5r1ma ^^e5r5me ^^e5r7mi ^^e5r9m^^e5l. ^^e5r9m^^e5la ^^e5r9m^^e5le ^^e5r9m^^e5ls. ^^e5rn5s4 ^^e5r3on ^^e5r3op 2^^e5r1p ^^e5r1r 3^^e5rs. ^^e5rs5af 3^^e5rsak 2^^e5rsav ^^e5rse2 ^^e5rs3el ^^e5r1sem ^^e5r7sja ^^e5rs5ko ^^e5rs1p 2^^e5rsr 2^^e5rst ^^e5rs1ta ^^e5rs3tri ^^e5r2st^^f8 ^^e5rs1u ^^e5rs1v ^^e5r7sy ^^e5r3s4^^e5 ^^e5r1te ^^e5r1t^^f8 ^^e5r3uk ^^e53russe ^^e5r1v ^^e5r4vo ^^e5r3yr ^^e5r7yt 2^^e5s ^^e57saf ^^e5sa7l ^^e5s8ar ^^e5s7bo ^^e57segl ^^e5se1s8 ^^e5s4f ^^e5s2g ^^e5s2h ^^e54sildf ^^e51sj ^^e54skalap ^^e5ske7t ^^e53s8ki ^^e58skjer ^^e54skolep ^^e5s7kop ^^e51skr ^^e55skun ^^e5s2m ^^e5s5mo ^^e5s2n ^^e59sona ^^e53sone. ^^e53sonen ^^e55soner ^^e57spissa ^^e55spisse ^^e5s6sc ^^e5s1sid ^^e5ss3k ^^e5stein4 ^^e55stein. ^^e55steine ^^e57steins. ^^e51sti ^^e58stigi ^^e57stol ^^e53svar ^^e5s7v^^e6 ^^e51sy ^^e5taks7 ^^e5t5arm ^^e5t1b ^^e5t6bransjef ^^e5t1ei ^^e5te1s 3^^e5tfer ^^e5t2ferd ^^e5t1l ^^e5t7marks. ^^e5t5na ^^e51to ^^e5t7ov ^^e5t1re ^^e5t1ru ^^e5t7sal ^^e5t9sid ^^e5t1s6k ^^e5t5st ^^e5t5s^^f8 ^^e5tti9andr ^^e5tt3o ^^e5tt5s ^^e5t1tu ^^e5t1u ^^e5t6un ^^e53t2ur ^^e5t7ve ^^e59t^^e6 ^^e5t1^^f8v ^^e5t7^^f8y ^^e53u ^^e53vak ^^e55vare. ^^e5ve7g ^^e53vei ^^e5ver8 ^^e55vilt. ^^e5v5l ^^e5v5s ^^e57vy ^^e55v^^e6rs. ^^e59v^^e5 ^^e51^^f8 liblouis-2.5.3/tables/eurodefs.cti0000664000175000017500000000437412161041546014065 00000000000000# Attributes and dot patterns for the printable ASCII characters space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 5 # 33 punctuation " 4 # 34 sign # 3456 # 35 sign $ 46 # 36 sign % 123456 % 37 sign & 12346 # 38 punctuation ' 6 # 39 apostrophe punctuation ( 236 # 40 punctuation ) 356 # 41 sign * 35 # 42 asterisk math + 235 # 43 punctuation , 2 # 44 comma punctuation - 36 # 45 hyphen minus punctuation . 3 # 46 math / 256 # 47 include digits6DotsPlusDot6.uti punctuation : 25 # 58 punctuation ; 23 # 59 math < 56 # 60 math = 2356 # 61 math > 45 # 62 punctuation ? 26 # 63 sign @ 345 # 64 include latinLetterDef6Dots.uti punctuation [ 123567 # 91 sign \\ 347 # 92 backslash punctuation ] 234567 # 93 sign ^ 23467 # 94 circumflex accent sign _ 456 # 95 underscore sign ` 3458 # 96 grave accent # a - z # 97 - 122 punctuation { 12356 # 123 sign | 34 # 124 vertical line punctuation } 23456 # 125 math ~ 2346 # 126 space \X00A0 0 # no-break space sign \x00A2 4-14 # ¢ cents sign sign \x00A3 4-123 # £ pounds sign sign \x00A5 4-13456 # Â¥ yen sign sign \x00A7 356 # § section sign sign \x00A9 2356-46-14-2356 # 169 © copyright sign punctuation \x00Ad 36 # 173 soft hyphen sign \x00B0 4-356 # 176 ° degrees sign sign \x00B5 46-134 # 181 µ micro sign sign \x00B6 346 # ¶ pilcrow sign math \x00D7 4-236 # × multiplication sign math \x00F7 4-256 # ÷ division sign punctuation \x2010 36 # 8208 hyphen punctuation \x2013 56-36 # 8211 en dash punctuation \x2014 6-36 # 8212 em dash punctuation \x2018 6-236 # 8216 smart single left quotation mark punctuation \x2019 6-356 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis liblouis-2.5.3/tables/Es-Es-g1.utb0000664000175000017500000001134112161041546013475 00000000000000# Spanish Grade 1 Braille Table # Created June 9, 2005 by Leon Ungier . locale Spain include text_nabcc.dis #--------------------- All chars definitions ------------------------------ replace \x0097 space \x000a 0 space \t 0 tab # 9 space \s 0 blank # 32 punctuation ! 235 # 33 punctuation " 236 # 34 sign # 3456 # 35 sign $ 256 # 36 sign % 456 # 37 sign & 123456 # 38 punctuation ' 5 # 39 apostrophe punctuation ( 126 # 40 punctuation ) 345 # 41 sign * 35 # 42 math + 235 # 43 punctuation , 2 # 44 punctuation - 36 # 45 punctuation . 3 # 46 math / 34 # 47 include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B math < 56 less-than sign x003C math = 2356 equal sign x003D math > 45 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 4 commercial at x0040 include latinLetterDef6Dots.uti punctuation [ 12356 left square bracket x005B sign \\ 2 reverse solidus x005C punctuation ] 23456 right square bracket x005D sign ^ 5 circumflex accent x005E sign _ 6 low line x005F sign ` 45 grave accent x0060 # a - z # 97 - 122 x0061 - x007A punctuation { 246 left curly bracket x007B sign | 46 vertical line x007C punctuation } 12456 right curly bracket x007D sign ~ 256 tilde x007E sign \x0080 15-136-1235-135 x0080 space \X00A0 0 # no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 346 paragraph sign x00A7 sign © 6-14-135-1234-13456-1235-24-1245-125-2345 copyright x00A9 punctuation « 45-2356 left-pointing double quotation mark x00AB sign ° 4-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign \x00B5 46-134 # 181 µ micro sign x00B5 sign \x00B6 346 # ¶ pilcrow sign x00B6 sign ¹ 4-6-16 superscript 1 sign x00B9 punctuation » 2356-12 right-pointing double quotation mark x00BB sign ¼ 6-16-34-1456 vulgar fraction one quarter x00BC sign ½ 6-16-34-126 vulgar fraction one half x00BD sign ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 a with grave x00C0 / 00E0 uplow Ãá 12356 A with acute x00C1 / 00E1 uplow Ââ 16 a with circumflex x00C2 / 00E2 uplow \x00C3\x00E3 345 a with tilde x00C3 / 00E3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 16 A with ring above x00C5 / 00C4 uplow \x00C6\x00E6 345 ae x00C6 / 00E6 uplow Çç 12346 letter c with cedilla x00C7 / 00E7 uplow Éé 2346 E with acute x00C9 / 00E9 uplow \x00CA\x00EA 126 e with circumflex x00CA / 00EA uplow Ãí 34 i with acute x00CD / 00ED uplow \x00D1\x00F1 12456 N with tilde x00D1 / 00F1 uplow Óó 346 o with acute x00D3 / 00F3 uplow Ôô 1456 o with circumflex x00D4 / 00F4 uplow \x00D5\x00F5 246 o with tilde x00D5 / 00F5 uplow Öö 246 O with diaeresis x00D6 / 00F6 math × 236 multiplication sign x00D7 uplow \x00D8\x00F8 246 o with stroke x00D8 //00F8 # uplow Úú 46-23456 U with acute x00DA / 00FA uplow Úú 23456 U with acute x00DA / 00FA # uplow Üü 46-1256 U with diaeresis x00DC / 00FC uplow Üü 1256 U with diaeresis x00DC / 00FC math ÷ 256 division sign x00F7 punctuation \x2010 46 # 8208 hyphen punctuation \x2011 46 # 8209 non-breaking hyphen math \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 double high reverse quotation mark punctuation \x2026 256-256-256 # 8230 smart ellipsis #-------------- end defintions ------------------------------------------ capsign 46 begcaps 46-46 numsign 3456 midnum , 2 midnum . 3 midnum + 235 midnum - 36 midnum / 256 midnum : 25 midnum = 2356 endnum # 56-3456 repeated ... 3-3-3 points de suite repeated --- 36-36-36 repeated ___ 6-6-6 always \s--\s 36-36 tiret liblouis-2.5.3/tables/en-us-g2.ctb0000664000175000017500000006574212161041546013605 00000000000000# liblouis: English, U.S. Grade 2 (ABAE) table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com include en-us-g1.ctb # Braille indicators specific to Grade 2 letsign 56 noletsignafter . noletsignafter ' multind 56-6 letsign capsign # Contractions beginning with the letter a largesign a 1 largesign A 1 always aar 1-345 Aaron always aa 1-1 back-translation: maasai word about 1-12 word thereabouts 5-2346-1-12-234 word runabout 1235-136-1345-1-12 contraction ab sufword above 1-12-1236 contraction abv word according 1-14 contraction ac word accordingly 1-14-123-13456 contraction acly word across 1-14-1235 contraction acr always aed = always aer = Rosenlaer begword aforem 1-123456-15-134 aforementioned word aforesaid 1-123456-15-234-145 always afr 1-124-1235 always africa 1-124-1235-24-14-1 sufword after 1-124 contraction af always afternoon 1-124-1345 afternoons contraction afn sufword afterward 1-124-2456 contraction afw word again 1-1245 contraction ag word against 1-1245-34 always agery = midendword ally 6-13456 word almost 1-123-134 contraction alm word already 1-123-1235 contraction alr word also 1-123 contraction al word although 1-123-1456 word altogether 1-123-2345 contraction alt word always 1-123-2456 contraction alw midendword ance 46-15 largesign and 12346 always andar 12346-345 staodard midendword anda 12346-1 panda midword angh = Shanghai begword anted = always anterior 1-1345-2345-23456-24-135-1235 begword anter = begword aqued = aqueduct always ar 345 word aright 1-5-1235 word as 1356 contraction as always athe 1-2346 back-translation: lathe midendword ation 6-1345 midendword aunder 1-136-1345-145-12456 saunders begword auto = autofocus syllable away = # the letter b midword bb 23 midendword bble 12-3456 lowword be 23 begword be 23 begword bea 12-2 always beu = Beulah always bear 12-15-345 begword beatif 23-1-2345-24-124 begword beatit 23-1-2345-24-2345 begword beatr 23-1-2345-1235 Beatrice always beck 12-15-14-13 always bed 12-1246 begword beda 23-145-1 bedazzle begword bede 23-145-15 bedevil word bede 12-1246-15 bede (a name) begword bedi 23-145-24 bedizzened word bee 12-15-15 begword bee 12-15-15 always been 12-15-26 always beer 12-15-12456 word beg = begword begg 12-15-2356 word begs = begword bei = beijing sufword being 23-346 sufword belch 12-15-123-16 begword beld = Beldon begword belf = belfry, belfast begword belg = Belgium begword belk = Belkin always bell = begword belm = Belmont always belt = begword belw = belwether always ben 12-26 begword beni 12-26-24 begword benif 23-1345-24-124 benificient sufword benign 23-1345-24-1245-1345 benignity begword benov 23-1345-135-1236 benovolent begword benu 23-1345-136 benumbed begword ber 12-12456 begword bera 23-1235-1 berating begword bere 23-1235-15 bereft begword berea 23-1235-2 bereaved always beriberi 12-12456-24-12-12456-24 begword beri 23-1235-24 beribboned always best 12-15-34 sufword bestow 23-34-246 syllable beth 12-15-1456 Bethany always bethe 12-15-2346 Bethel (Hans) Bethe always bets = always bett = sufword bev = bevies begword bever 12-5-15 Beverly beverage always bio = midendword bious 12-24-1256-234 dubious always bottlen = bottlenosed joinword by 356 word because 23-14 word bec = sufword before 23-124 word behind 23-125 word behring 12-15-125-1235-346 word bel = begword beln = Belnick word below 23-123 word beneath 23-1345 sufword beside 23-234 sufword bess = Bessie word between 23-2345 word bet = word beyond 23-13456 word bey = always bleu = midendword ble 3456 midendword bleau 12-123-2-136 tableau syllable bleed 12-123-15-1246 nosebleed always bless 12-46-234 joblessness word blind 12-123 contraction bl begword blindf 12-123-124 blindfold word blindly 12-123-123-13456 word blindness 12-123-56-234 sufword blinds 12-123-234 blindsided always boat = boathook always braille 12-1235-123 contraction brl word but 12 # the letter c midword cch 14-16 always chs 16-234 dachshund always chloro 16-123-135-1235-135 begword cofac = cofactor always cofound 14-135-124-46-145 begword com 36 sufword common 36-134-135-1345 commonest begword con 25 sufword conceive 25-14-1236 sufword conceiving 25-14-1236-1245 always conch 14-135-1345-16 always cone 14-5-135 word cons 14-135-1345-234 sufword conundrum = sufword could 14-145 word could've 14-145-3-1236-15 contraction cd always cred 14-1235-1246 incredulous midword cc 25 word can 14 always cannot 456-14 always ch 16 syllable chand 16-12346 merchandise always character 5-16 always chemo 16-15-134-135 word child 16 prfword children 16-1345 sufword clever 14-123-5-15 cleverest # the letter d always daredevil 145-345-15-145-15-1236-24-123 always day 5-145 always dday 145-5-145 begword deact = deactivation begword deall = deallocate begword decarb 145-15-14-345-12 always deceive 145-14-1236 contraction dcv contraction dcvd contraction dcvr contraction dcvs always deceiving 145-14-1236-1245 contraction dcvg always declare 145-14-123 contraction dcl contraction dcld contraction dclr contraction dcls word declaring 145-14-123-1245 contraction dclg begword deref = dereferencing begword dereg = deregulation midword dd 256 begword dedic 145-1246-24-14 dedicated always dedu = nondeductible begword deno = denote always denom = begword denou 145-15-1345-1256 denounce begword denu = denunciation begword dera = derail begword deri 145-15-1235-24 begword dero = derogatory begword dino 145-35-135 dinoflagellate begword dis 256 word disc = word discs = always dish 145-24-146 begword disha 256-125-1 dishabile begword dishear 256-125-15-345 disheartened begword disho 256-125-135 dishonor begword dishone 256-125-5-135 dishonest sufword disk = sufword dispirit 145-24-456-234 dispirited begword disul = disulfide word do 145 syllable down 145-246-1345 facedown always edress = vinedresser syllable drum = kettledrum always edom = always reduc = always seduc = # syllable dun = # the letter e midword ea 2 midword eabil = interchangeability always eable 15-1-3456 endword eably = noticeably midendword eage = mileage midendword eager 2-1245-12456 meager always eally 15-6-13456 midendword eance 15-46-15 vengeance midendword eand 15-12346 meander always eation 15-6-1345 always ear 15-345 always ed 1246 begword edic = edict Benedict sufword edition 15-145-24-56-1345 editions syllable draw = word either 15-24 contraction ei word en = always en 26 always ename 15-5-1345 sufword enamel 26-1-134-15-123 enameled midendword ence 56-15 syllable neck = bottleneck midendword eness 15-56-234 closeness begword enor = enormous begword enou 15-1345-1256 lowword enough 26 word enough 26-1256-126 begword enu 15-1345-136 always er 12456 begword era = word eras 12456-1-234 begword erec = erect begword ero 15-1235-135 syllable room = storeroom begword eru = erupt always evert 15-1236-12456-2345 always nevertheless 1345-5-15-2346-46-234 always ever 5-15 midendword evere 15-1236-12456-15 Everest always evered 15-1236-12456-1246 word every 15 # the letter f midword ff 235 syllable ffold 235-135-123-145 scaffold always father 5-124 always fein 124-15-35 Feingold always first 124-34 always fever 124-15-1236-12456 always ffor 124-123456 largesign for 123456 begword fora 123456-1 foramen always fore 123456-15 begword forens 123456-26-234 forensic always forever 123456-5-15 forevermore syllable fold = syllable foot = word from 124 word friend 124-1235 word friends 124-1235-234 word friendless 124-1235-46-234 sufword friendship 124-1235-146-24-1234 sufword friendl 124-1235-123 contraction fr always fruity = midendword ful 56-123 always funder 124-136-1345-145-12456 # the letter g begword geo = geoengineering sufword geoff 1245-15-12356-124 Geoffrey midword gg 2356 always gh 126 endword gham = Langham midendword ghill = dunghill always ghz = (gigahertz) sufword gnome = gnomedb word go 1245 sufword good 1245-145 contraction gd always good-by 1245-145-36-12-13456 syllable grad = leningrad sufword great 1245-1235-2345 contraction grt # the letter h always had 456-125 always hadd 125-1-256 haddock sufword hade = hadean syllable hand 125-12346 word have 125 syllable hawk = syllable hawthorn 125-1-2456-1456-135-1235-1345 syllable head 125-2-145 syllable heart 125-15-345-2345 always hedgerow 125-1246-1245-15-1235-246 syllable herd 125-12456-145 goatherd always here 5-125 always hereafter 5-125-1-124 always hered 125-12456-1246 always heren 125-12456-26 midendword herence 125-12456-56-15 adherence always herer 125-12456-12456 always heres 125-12456-15-234 always heret 125-12456-15-2345 word heretofore 5-125-2345-135-123456-15 word herself 125-12456-124 word him 125-134 word His 6-236 word hm 125-3-134 sufword hmm = word himself 125-134-124 contraction hmf lowword his 236 syllable holm = syllable hood = syllable horn = syllable horse = horseradish syllable house 125-1256-234-15 syllable hydro = always hwh = # the letter i word I 24 midendword iever 24-15-1236-12456 word immediate 24-134-134 contraction imm word immediately 24-134-134-123-13456 contraction immly begword immuno = immunofluorescence lowword in 35 word in = always in 35 endword in' 35-3 begword incon 35-14-135-1345 incongruous midendword iness 24-56-234 midendword ing 346 midword inga 35-1245-1 nightingale always ingar 35-1245-345 Weingarten midendword ingent 346-26-2345 stringent midword ingenc 346-26-14 contingency midword ingen 35-1245-26 palingenesis (new birth) midword ingi 35-1245-24 meningitis midendword inging 346-346 bringing joinword into 35-235 always isinglass 24-234-35-1245-123-1-234-234 always isomer 24-234-135-134-12456 word it 1346 word it's 1346-3-234 word it'd 1346-3-145 word it'll 1346-3-123-123 word its 1346-234 contraction xs word itself 1346-124 contraction xf midendword ity 56-13456 # the letter j word just 245 # the letter k always knot = knothole always know 5-13 word knowledge 13 # the letter l always \s-\shis 36-36-125-24-234 always \s-\swas 36-36-2456-1-234 word housed 125-1256-234-1246 sufword land 123-12346 landowner midendword less 46-234 sufword letter 123-1235 contraction lr sufword newsletter 1345-15-2456-234-123-1235 word unlettered 136-1345-123-1235-1246 word like 123 always lineage 123-35-2-1245-15 sufword little 123-123 contraction ll sufword lone 123-5-135 lonely always loner 123-135-1345-12456 always lord 5-123 # the letter m always maha = always many 456-134 begword mccon 134-14-25 begword mc = always medic 134-1246-24-14 medicare midendword ment 56-2345 midword menth 134-26-1456 Blumenthal always mideast 134-24-145-15-1-34 word milling 134-24-123-123-346 always minestrone 134-35-15-34-1235-135-1345-15 always mishap = sufword mishear 134-24-234-125-15-345 misheard begword missh 134-24-234-146 misshapen begword misst 134-24-234-34 missstep word mistook = begword mistran = mistranslation sufword mistreat 134-24-234-2345-1235-2-2345 begword mistru = mistrust begword misty = mistyped word monetary 134-5-135-2345-345-13456 always mongoose = word more 134 always mother 5-134 always much 134-16 word must 134-34 word mustn 134-34-1345 word musty 134-34-13456 begword myo = myofibroblasts word myself 134-13456-124 contraction myf # the letter n always name 5-1345 midendword nament 1345-1-56-2345 tournament always namese = word near-by 1345-15-345-36-12-13456 prfword necessary 1345-15-14 unnecessary contraction nec word neither 1345-15-24 contraction nei midendword ness 56-234 always news = newsstand syllable nomad = seminomadic always nodded 1345-135-256-1246 for back-translation begword nonen 1345-135-1345-26 nonentity begword noness = nonessential word nonetheless 1345-5-135-2346-46-234 always noneq = always nonex = begword nong = nongraphical word noone 1345-135-5-135 begword nose = nosedive word nosed 1345-135-234-1246 word not 1345 word noways = word nowhere 1345-135-5-156 # the letter o word O 135 midword oed = Schroeder always oen = Phoenix midendword oence 135-26-14-15 electroencephalogram largesign of 12356 midendword ofar 135-124-345 insofar midendword ofa 12356-1 back-translation: sofa midword ofor 135-123456 midendword onea = Hasmonean always onesi = midendword oness 135-56-234 midendword oneer 135-1345-15-12456 midendword oned 135-1345-1246 always one 5-135 always oneal = peritoneal midendword oneless 5-135-46-234 tonelessly midendword onel = salmonella colonel always onem = phoneme midendword onement 5-135-56-2345 atonement midendword onent 135-1345-26-2345 midendword oneous 135-1345-15-1256-234 erroneous always oner 135-1345-12456 midendword onese = Cantonese, word oneself 5-135-124 midendword oness 135-56-234 Deaconess midendword onet = phonetics bayonet endword onez = Ordonez midendword ong 56-1245 always oon = sooner always osome = word ou = always ou 1256 midendword ound 46-145 midendword ount 46-2345 always ourselves 1256-1235-1236-234 word out 1256 always ought 5-1256 always ow 246 word o'clock 135-3-14 # the letter p prfword paid 1234-145 contraction pd always part 5-1234 begword parta 1234-345-2345-1 partake begword parthe 1234-345-2346 parthenon begword parth 1234-345-1456 parthian begword parto 1234-345-2345-135 begword parthen 1234-345-2346-1345 parthenon parthenogenesis word people 1234 always perceive 1234-12456-14-1236 always perceiving 1234-12456-14-1236-1245 always perhaps 1234-12456-125 begword photo = always pher 1234-125-12456 cyphered always pineapple 1234-35-15-1-1234-1234-123-15 syllable portion 1234-135-1235-56-1345 syllable port = porthole begword potho = pothole pothook begword pre = always preach 1234-1235-2-16 sufword predator 1234-1235-1246-1-2345-135-1235 always prof = word prof. 1234-1235-12356-256 begword proff 1234-1235-12356-124 proffer always profit 1234-1235-12356-24-2345 # the letter q always quick 12345-13 contraction qk word quite 12345 always question 5-12345 # the letter r sufword rafter 1235-1-124-2345-12456 word rather 1235 sufword raw = rawhide begword reab = reabsorbed always reac = always reach 1235-2-16 begword readj = readjust begword readm = readmit begword reaff 1235-15-1-235 sufword reagent 1235-15-1-1245-26-2345 begword reagg 1235-15-1-2356 reaggregated begword realig = realign begword rean = reanalyze, reanimate begword reapp = reappear begword reass 1235-15-1-234-234 begword reatt = reattach begword reau = reauthorization begword reaw = reawaken begword rede = begword redi = word redo = word redone 1235-15-145-5-135 begword redou 1235-15-145-1256 redouble redoubt always redu = always receive 1235-14-1236 contraction rcv contraction rcvd contraction rcvr contraction rcvs always receiving 1235-14-1236-1245 contraction rcvg begword redis = redistribute begword redr = redress word reichstag 1235-15-24-16-234-2345-1-1245 always rejoice 1235-245-14 contraction rjc contraction rjcd contraction rjcr contraction rjcs always rejoicing 1235-245-14-1245 contraction rjcg sufword renaming 1235-15-1345-1-134-346 renamings begword rene = begword renom = renominate begword renou 1235-15-1345-1256 renounce sufword renown 1235-15-1345-246-1345 renowned begword renu = renunciation begword rera = reradiate sufword reread 1235-15-1235-2-145 sufword rerun = reruns always rever 1235-15-1236-12456 always reveren 1235-5-15-26 irreverent always reverence 1235-5-15-56-15 irreverence sufword reverie 1235-5-15-24-15 begword ribof = begword ribon = always right 5-1235 # the letter s word said 234-145 contraction sd syllable screw = screwhole sufword sedan 234-1246-1-1345 begword seda = always sedu = always sent 234-26-2345 sentimental always sever 234-15-1236-12456 perseverance always several 234-5-15-1-123 severally word shall 146 word sh = always sh 146 always shaus = In German names sufword should 146-145 always shoulder 146-1256-123-145-12456 word singapore 234-346-1-1234-135-1235-15 midendword sion 46-1345 midword stak 234-2345-1-13 midendword stion 234-56-1345 word so 234 always some 5-234 midendword somed 234-135-134-1246 ransomed always somer 234-135-134-12456 somersault always spirit 456-234 midendword ssword 234-234-45-2456 crossword partword st 34 always sth 234-1456 always st. 34-256 always sthe 234-2346 word still 34 always stime 234-5-2345 midendword stown 234-2345-246-1345 Pickstown begword styro 34-13456-1235-135 styrofoam always ssh = always sst = word such 234-16 word sch = always sword = # the letter t word th = always th 1456 word that 2345 word this 1456 word thyself 1456-13456-124 word tiddledywinks 2345-24-256-123-15-145-13456-2456-35-13-234 always tnam = joinword to 235 word today 2345-145 contraction td word tomorrow 2345-134 contraction tm word tonight 2345-1345 contraction tn always turtledove = always thead 2345-125-2-145 always theast 1456-15-1-34 largesign the 2346 always thea 2346-1 theater word themselves 2346-134-1236-234 always their 456-2346 always thence 1456-56-15 always there 5-2346 midendword thereal 2346-1235-2-123 ethereal always thereen 2346-1235-15-26 smithereens word thereupon 5-2346-45-136 always thereafter 5-2346-1-124 always thered 2346-1235-1246 always therer 2346-1235-12456 always theres 2346-1235-15-234 theresa therese midendword tion 56-1345 always time 5-2345 midendword timed 1245-24-134-1246 midendword timer 2345-24-134-12456 midendword timet = altimeter word these 45-2346 always through 5-1456 always together 2345-1245-1235 contraction tgr word those 45-1456 begword trans = transtype # the letter u begword un = unameliorated begword unble = unblemished begword uncon = uncongenial begword undis = undisturbed begword uneas = unease begword uneat = uneaten sufword unful = unfulfilled begword unmen 136-1345-134-26 unmentioned begword unpre = unpredictable word upon 45-136 Dupont word us 136 always under 5-136 word unsaid 136-1345-234-145 # the letter v begword vaing 1236-1-35-1245 vainglory word very 1236 begword vice = viceroy # the letter w lowword was 356 word wh = always wh 156 midendword whart 2456-125-345-2345 Newhart word which 156 word will 2456 lowword were 2356 lowword Were 6-2356 for back-translation always where 5-156 word whereupon 5-156-45-136 word wherever 156-12456-5-15 largesign with 23456 always word 45-2456 word whose 45-156 always work 5-2456 sufword would 2456-145 word would've 2456-145-3-1236-15 contraction wd always world 456-2456 # the letter x # the letter y word you 13456 word you'd 13456-3-145 word you'll 13456-3-123-123 word you're 13456-3-1235-15 word you've 13456-3-1236-15 always young 5-13456 word your 13456-1235 contraction yr word yours 13456-1235-234 contraction yrs word yourself 13456-1235-124 contraction yrf word yourselves 13456-1235-1236-234 contraction yrvs # the letter z # Syst`eme International Prefixes begword proto = begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 # begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 begword anti = # begword endo 26-145-135 endow begword epi = begword extra = begword hyper 125-13456-1234-12456 begword hypo = begword infra 35-124-1235-1 begword inter 35-2345-12456 begword intra 35-2345-1235-1 begword iso = begword macro = begword meta = begword micro = begword mono = begword multi = begword patho 1234-1-1456-135 begword peri 1234-12456-24 begword poly = begword post 1234-135-34 begword pre = begword pseudo = begword retro = # begword semi = seminar begword sub = begword super 234-136-1234-12456 # begword tetra = begword trans = begword ultra = # begword uni = # other prefixes begword electro = begword neuro = begword psycho 1234-234-13456-16-135 endword in' = endword 'd 3-145 back-translation: = doesn't work endword 'm 3-134 endword 're 3-1235-15 endword 've 3-1236-15 endword 'll 3-123-123 endword 's 3-234 endword 't 3-2345 word 'em = always -com 36-14-135-134 endword -by = endword -to = pointed-to resource word abalone = sufword abecedarian 1-12-15-14-15-145-345-24-1-1345 midendword aean = begword aen = begword aftere 1-124-2345-12456-15 aftereffect begword afteri 1-124-2345-12456-24 afterimage sufword airedale = sufword anemone = sufword anteat = word antigone = word baloney = sufword bandog = sufword battledo = battledor battledome always bedragg 23-145-1235-1-2356 sufword beguine 12-15-1245-136-35-15 proper name sufword belittle 23-123-123 always benares 23-1345-345-15-234 begword benev 23-1345-15-1236 begword bene 12-26-15 always bering 12-12456-346 always bezel = syllable nomial = always boer = always burlingam = word caen = midendword lingian 123-346-24-1-1345 endword reagh 1235-2-126 castlereagh sufword cation 14-1-2345-24-135-1345 always chatham 16-1-2345-125-1-134 always cicerone 14-24-14-12456-135-1345-15 always blenz 12-123-26-1356 always enzym 26-1356-13456-134 always coname 14-135-5-1345 word conally 14-135-1345-6-13456 word conatus = word conestoga 25-15-34-135-1245-1 word coney = word conidium = endword zione = word cony = sufword deaconess 145-2-14-135-56-234 begword denation 145-15-1345-6-1345 syllable natur = always derogate 145-12456-135-1245-1-2345-15 always dinghy 145-35-126-13456 always doggone 145-135-1245-1245-5-135 always donee = word donegal = begword equidis = equidistant midendword thereally 2346-1235-15-6-13456 ethereally midendword enook = always eversion 15-1236-12456-46-1345 sufword falconet = sufword feringhee 124-12456-35-126-15-15 begword fired = firedamp firedrake always francene 124-1235-1-1345-14-26-15 contraction frs sufword froward 124-1235-135-2456-345-145 sufword garderobe 1245-345-145-15-1235-135-12-15 midendword ometer 135-134-15-2345-12456 gasometer always gastight 1245-1-234-2345-24-126-2345 word goering 1245-135-15-1235-346 word Goodwill = with a cap word Goody = with a cap word Goodyear 1245-135-135-145-13456-15-345 always genealog 1245-26-15-1-123-135-1245 syllable herd = goatherd begword conan = always thold = berthold always equino = syllable thill = anthill word conch 14-135-1345-16 word conches 14-135-1345-16-15-234 syllable urinary 136-1235-35-345-13456 always goddam = always oering 135-15-1235-346 always handsomer 125-12346-5-234-1235 always heartsease 125-15-345-2345-234-15-1-234-15 always hereford 125-12456-15-123456-145 always hereupon 5-125-45-136 endword sheimer 234-125-15-24-134-12456 always hermione 125-12456-134-24-135-1345-15 always hoity = always toity = midendword blence 12-123-56-15 midendword blend 12-123-26-145 syllable rubber 1235-136-23-12456 indiarubber begword indist 35-145-24-234-2345 indistinct begword inerad 35-15-1235-1-145 ineradicable begword ingl 35-1245-123 inglewood inglenook word iredell = begword irre = word jaconet = word jehad = word jihad = word konev = contraction lrs word limeade = always lineag 123-35-2-1245 contraction llr always littleton = proper noun always littlejohn = surname always letterman = surname always oweed 135-2456-15-1246 locoweed always lonesome 123-5-135-5-234 always maenad = always menhaden 134-26-125-1-145-26 midendword encephal 26-14-15-1234-125-1-123 sufword misoneism = sufword misterm 134-24-234-2345-12456-134 sufword mistitl = always misword 134-24-234-45-2456 word more'n = word nonesuch 1345-5-135-234-16 word noway = change entry of noways word nowise = sufword nuthatch 1345-136-2345-125-1-2345-16 begword oed = oedipus always oneida = word orangeade = begword out 1256-2345 outhaul endword full = overfull begword oleag = oleaginous always peritoneum 1234-12456-24-2345-135-1345-15-136-134 always peroneal 1234-12456-135-1345-2-123 always persephone 1234-12456-234-15-1234-125-135-1345-15 begword pinedr 1234-35-15-145-1235 pinedrop syllable root = pokeroot snakeroot always poleax = poleax sufword potherb 1234-123-2345-125-12456-12 sufword potsherd 1234-135-2345-146-12456-145 syllable hunter 125-136-1345-2345-12456 pothunter always praenom = always predecess 1234-1235-1246-15-14-15-234-234 always predicat 1234-1235-1246-24-14-1-2345 always prounion = endword edelic = psychedelic begword reaffor 1235-15-1-125-123456 reafforestation begword reappor = reapportion begword reavow 1235-15-1-1236-246 begword redac = redact begword rededic 1235-15-145-1246-24-14 rededicate always redingote 1235-1246-346-135-2345-15 begword renav = renavigated always renegad 1235-26-15-1245-1-145 always rerefin 1235-15-1235-15-124-35 begword resth = restharrow endword flery = riflery begword roped = ropedance always roustabout 1235-1256-34-1-12 word sadowa = always scattergood 234-14-1-2345-2345-12456-1245-145 word sever 234-5-15 word severs 234-5-15-234 word severed 234-5-15-1246 word severing 234-5-15-346 always severn 234-5-15-1345 midword sever 234-15-1236-12456 perseverance word several 234-5-15-1-123 severally always shofar 146-12356-345 always shoshone 146-135-146-135-1345-15 begword skeda = skedaddle always smitheren 234-134-24-2346-1235-26 proper name endword ouno = radiouno always sparerib 234-1234-345-15-1235-14-12 always speakeas 234-1234-2-13-15-1-234 begword spiken = spikenard syllable hound 125-46-145 loghound always stingar 34-346-345 always owork 135-5-2456 cowork stuccowork begword cowr = cowrote endword enaed 15-1345-1-1246 subpoenaed begword threenod 1456-1235-15-15-1345-135-145 threenode always tranship 2345-1235-1-1345-146-24-1234 begword trinar 2345-1235-24-1345-234 trinary trinaries always turnabout 2345-136-1235-1345-1-12 always dledee = always dledum = tweedledee and tweedledum always twould 2345-2456-145 begword unblea 136-1345-12-123-2 unbleach? begword unbless 136-1345-12-46-234 begword underog = begword underiv = always vicenar 1236-24-14-26-345 sufword violone = sufword wakerif = always wenceslaus 2456-26-14-15-234-123-1-136-234 word whereabouts 5-156-1-12-234 begword wired = wiredance always wiseacr = always you'n 13456-1256-3-1345 always zingaro 1356-346-345-135 always zwinglian 1356-2456-346-123-24-1-1345 sufword thorn 1456-135-1235-1345 word hearths 125-15-345-1456-234 word hearth 125-15-345-1456 always \s\x2013\s 36-36 # 8211 en dash always \s\x2014\s 36-36 # em dash # nobreak 6-46-56-e,6-46-56 # Problems handled with context context _$l["."]$l @256 U.S. context _$d["a"] @56-1 context _$d["A"] @56-1 # problems handled with multipass opcodes pass2 @36-36-36 @36-36 pass2 @6-236-3456 @3-3456 pass2 @6-56 @56-6 liblouis-2.5.3/tables/boxes.ctb0000664000175000017500000002414712161041546013362 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # This BRLTTY text subtable implements a portable representation of the box # drawing characters.aNo distinction is made between the three types of boxes: # light, heavy, and double. Characters with no vertical component (horizontal # edges) are represented by the four middle dots [2356]. Those with a vertical # component above the center (e.g. bottom corners) add the two top dots [14], # and those with a vertical component below the center (e.g. top corners) add # the two bottom dots [78]. This means, for example, that side edges and the # cross are represented by a full cell [12345678]. # For diagonals within boxes, the top-left and bottom-right dots [18] are used # to represent the line which descends toward the right, and the top-right and # bottom-left dots [47] are used to represent the line which ascends toward the # right. The X is represented by all four of these dots [1478]. # generated by ttbtest punctuation \x2500 2356 BOX DRAWINGS LIGHT HORIZONTAL punctuation \x2501 2356 BOX DRAWINGS HEAVY HORIZONTAL punctuation \x2502 12345678 BOX DRAWINGS LIGHT VERTICAL punctuation \x2503 12345678 BOX DRAWINGS HEAVY VERTICAL punctuation \x2504 2356 BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL punctuation \x2505 2356 BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL punctuation \x2506 12345678 BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL punctuation \x2507 12345678 BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL punctuation \x2508 2356 BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL punctuation \x2509 2356 BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL punctuation \x250a 12345678 BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL punctuation \x250b 12345678 BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL punctuation \x250c 235678 BOX DRAWINGS LIGHT DOWN AND RIGHT punctuation \x250d 235678 BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY punctuation \x250e 235678 BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT punctuation \x250f 235678 BOX DRAWINGS HEAVY DOWN AND RIGHT punctuation \x2510 235678 BOX DRAWINGS LIGHT DOWN AND LEFT punctuation \x2511 235678 BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY punctuation \x2512 235678 BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT punctuation \x2513 235678 BOX DRAWINGS HEAVY DOWN AND LEFT punctuation \x2514 123456 BOX DRAWINGS LIGHT UP AND RIGHT punctuation \x2515 123456 BOX DRAWINGS UP LIGHT AND RIGHT HEAVY punctuation \x2516 123456 BOX DRAWINGS UP HEAVY AND RIGHT LIGHT punctuation \x2517 123456 BOX DRAWINGS HEAVY UP AND RIGHT punctuation \x2518 123456 BOX DRAWINGS LIGHT UP AND LEFT punctuation \x2519 123456 BOX DRAWINGS UP LIGHT AND LEFT HEAVY punctuation \x251a 123456 BOX DRAWINGS UP HEAVY AND LEFT LIGHT punctuation \x251b 123456 BOX DRAWINGS HEAVY UP AND LEFT punctuation \x251c 12345678 BOX DRAWINGS LIGHT VERTICAL AND RIGHT punctuation \x251d 12345678 BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY punctuation \x251e 12345678 BOX DRAWINGS UP HEAVY AND RIGHT DOWN LIGHT punctuation \x251f 12345678 BOX DRAWINGS DOWN HEAVY AND RIGHT UP LIGHT punctuation \x2520 12345678 BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT punctuation \x2521 12345678 BOX DRAWINGS DOWN LIGHT AND RIGHT UP HEAVY punctuation \x2522 12345678 BOX DRAWINGS UP LIGHT AND RIGHT DOWN HEAVY punctuation \x2523 12345678 BOX DRAWINGS HEAVY VERTICAL AND RIGHT punctuation \x2524 12345678 BOX DRAWINGS LIGHT VERTICAL AND LEFT punctuation \x2525 12345678 BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY punctuation \x2526 12345678 BOX DRAWINGS UP HEAVY AND LEFT DOWN LIGHT punctuation \x2527 12345678 BOX DRAWINGS DOWN HEAVY AND LEFT UP LIGHT punctuation \x2528 12345678 BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT punctuation \x2529 12345678 BOX DRAWINGS DOWN LIGHT AND LEFT UP HEAVY punctuation \x252a 12345678 BOX DRAWINGS UP LIGHT AND LEFT DOWN HEAVY punctuation \x252b 12345678 BOX DRAWINGS HEAVY VERTICAL AND LEFT punctuation \x252c 235678 BOX DRAWINGS LIGHT DOWN AND HORIZONTAL punctuation \x252d 235678 BOX DRAWINGS LEFT HEAVY AND RIGHT DOWN LIGHT punctuation \x252e 235678 BOX DRAWINGS RIGHT HEAVY AND LEFT DOWN LIGHT punctuation \x252f 235678 BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY punctuation \x2530 235678 BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT punctuation \x2531 235678 BOX DRAWINGS RIGHT LIGHT AND LEFT DOWN HEAVY punctuation \x2532 235678 BOX DRAWINGS LEFT LIGHT AND RIGHT DOWN HEAVY punctuation \x2533 235678 BOX DRAWINGS HEAVY DOWN AND HORIZONTAL punctuation \x2534 123456 BOX DRAWINGS LIGHT UP AND HORIZONTAL punctuation \x2535 123456 BOX DRAWINGS LEFT HEAVY AND RIGHT UP LIGHT punctuation \x2536 123456 BOX DRAWINGS RIGHT HEAVY AND LEFT UP LIGHT punctuation \x2537 123456 BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY punctuation \x2538 123456 BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT punctuation \x2539 123456 BOX DRAWINGS RIGHT LIGHT AND LEFT UP HEAVY punctuation \x253a 123456 BOX DRAWINGS LEFT LIGHT AND RIGHT UP HEAVY punctuation \x253b 123456 BOX DRAWINGS HEAVY UP AND HORIZONTAL punctuation \x253c 12345678 BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL punctuation \x253d 12345678 BOX DRAWINGS LEFT HEAVY AND RIGHT VERTICAL LIGHT punctuation \x253e 12345678 BOX DRAWINGS RIGHT HEAVY AND LEFT VERTICAL LIGHT punctuation \x253f 12345678 BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY punctuation \x2540 12345678 BOX DRAWINGS UP HEAVY AND DOWN HORIZONTAL LIGHT punctuation \x2541 12345678 BOX DRAWINGS DOWN HEAVY AND UP HORIZONTAL LIGHT punctuation \x2542 12345678 BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT punctuation \x2543 12345678 BOX DRAWINGS LEFT UP HEAVY AND RIGHT DOWN LIGHT punctuation \x2544 12345678 BOX DRAWINGS RIGHT UP HEAVY AND LEFT DOWN LIGHT punctuation \x2545 12345678 BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT punctuation \x2546 12345678 BOX DRAWINGS RIGHT DOWN HEAVY AND LEFT UP LIGHT punctuation \x2547 12345678 BOX DRAWINGS DOWN LIGHT AND UP HORIZONTAL HEAVY punctuation \x2548 12345678 BOX DRAWINGS UP LIGHT AND DOWN HORIZONTAL HEAVY punctuation \x2549 12345678 BOX DRAWINGS RIGHT LIGHT AND LEFT VERTICAL HEAVY punctuation \x254a 12345678 BOX DRAWINGS LEFT LIGHT AND RIGHT VERTICAL HEAVY punctuation \x254b 12345678 BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL punctuation \x254c 2356 BOX DRAWINGS LIGHT DOUBLE DASH HORIZONTAL punctuation \x254d 2356 BOX DRAWINGS HEAVY DOUBLE DASH HORIZONTAL punctuation \x254e 12345678 BOX DRAWINGS LIGHT DOUBLE DASH VERTICAL punctuation \x254f 12345678 BOX DRAWINGS HEAVY DOUBLE DASH VERTICAL punctuation \x2550 2356 BOX DRAWINGS DOUBLE HORIZONTAL punctuation \x2551 12345678 BOX DRAWINGS DOUBLE VERTICAL punctuation \x2552 235678 BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE punctuation \x2553 235678 BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE punctuation \x2554 235678 BOX DRAWINGS DOUBLE DOWN AND RIGHT punctuation \x2555 235678 BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE punctuation \x2556 235678 BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE punctuation \x2557 235678 BOX DRAWINGS DOUBLE DOWN AND LEFT punctuation \x2558 123456 BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE punctuation \x2559 123456 BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE punctuation \x255a 123456 BOX DRAWINGS DOUBLE UP AND RIGHT punctuation \x255b 123456 BOX DRAWINGS UP SINGLE AND LEFT DOUBLE punctuation \x255c 123456 BOX DRAWINGS UP DOUBLE AND LEFT SINGLE punctuation \x255d 123456 BOX DRAWINGS DOUBLE UP AND LEFT punctuation \x255e 12345678 BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE punctuation \x255f 12345678 BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE punctuation \x2560 12345678 BOX DRAWINGS DOUBLE VERTICAL AND RIGHT punctuation \x2561 12345678 BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE punctuation \x2562 12345678 BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE punctuation \x2563 12345678 BOX DRAWINGS DOUBLE VERTICAL AND LEFT punctuation \x2564 235678 BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE punctuation \x2565 235678 BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE punctuation \x2566 235678 BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL punctuation \x2567 123456 BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE punctuation \x2568 123456 BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE punctuation \x2569 123456 BOX DRAWINGS DOUBLE UP AND HORIZONTAL punctuation \x256a 12345678 BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE punctuation \x256b 12345678 BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE punctuation \x256c 12345678 BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL punctuation \x256d 235678 BOX DRAWINGS LIGHT ARC DOWN AND RIGHT punctuation \x256e 235678 BOX DRAWINGS LIGHT ARC DOWN AND LEFT punctuation \x256f 123456 BOX DRAWINGS LIGHT ARC UP AND LEFT punctuation \x2570 123456 BOX DRAWINGS LIGHT ARC UP AND RIGHT punctuation \x2571 47 BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT punctuation \x2572 18 BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT punctuation \x2573 1478 BOX DRAWINGS LIGHT DIAGONAL CROSS punctuation \x2574 2356 BOX DRAWINGS LIGHT LEFT punctuation \x2575 123456 BOX DRAWINGS LIGHT UP punctuation \x2576 2356 BOX DRAWINGS LIGHT RIGHT punctuation \x2577 235678 BOX DRAWINGS LIGHT DOWN punctuation \x2578 2356 BOX DRAWINGS HEAVY LEFT punctuation \x2579 123456 BOX DRAWINGS HEAVY UP punctuation \x257a 2356 BOX DRAWINGS HEAVY RIGHT punctuation \x257b 235678 BOX DRAWINGS HEAVY DOWN punctuation \x257c 2356 BOX DRAWINGS LIGHT LEFT AND HEAVY RIGHT punctuation \x257d 12345678 BOX DRAWINGS LIGHT UP AND HEAVY DOWN punctuation \x257e 2356 BOX DRAWINGS HEAVY LEFT AND LIGHT RIGHT punctuation \x257f 12345678 BOX DRAWINGS HEAVY UP AND LIGHT DOWN liblouis-2.5.3/tables/en-us-compbrl.ctb0000664000175000017500000000217112161041546014716 00000000000000space \t 7 tab space \s 0 blank sign \x000a 78 newline space \x000d 0 carriage return include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation , 6 punctuation ; 56 punctuation : 156 punctuation . 46 punctuation ! 2346 punctuation " 5 punctuation ' 3 punctuation ( 12356 punctuation ) 23456 punctuation - 36 sign _ 456 math < 126 math = 123456 math > 345 sign % 146 math + 346 math ~ 45 sign ` 4 sign & 12346 sign $ 1246 punctuation ? 1456 punctuation { 246 punctuation [ 2467 punctuation } 12456 punctuation ] 124567 sign ^ 457 sign @ 47 sign # 3456 sign \\ 12567 sign | 1256 math / 34 sign * 16 comp6 A 456-1 comp6 B 456-12 comp6 C 456-14 comp6 D 456-145 comp6 E 456-15 comp6 F 456-124 comp6 G 456-1245 comp6 H 456-125 comp6 I 456-24 comp6 J 456-245 comp6 K 456-13 comp6 L 456-123 comp6 M 456-134 comp6 N 456-1345 comp6 O 456-135 comp6 P 456-1234 comp6 Q 456-12345 comp6 R 456-1235 comp6 S 456-234 comp6 T 456-2345 comp6 U 456-136 comp6 V 456-1236 comp6 W 456-2456 comp6 X 456-1346 comp6 Y 456-13456 comp6 Z 456-1356 comp6 _ 456-456 comp6 [ 246 comp6 ] 12456 comp6 { 456-246 comp6 } 456-12456 comp6 \\ 456-1256 comp6 \t 4 liblouis-2.5.3/tables/es-translation.cti0000664000175000017500000000315612161041546015211 00000000000000# # Copyright (C) 2010, 2011 by DocArch # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # ---------------------------------------------------------------------------------------------- # # Spanish Braille # Created and maintained by Bert Frees # with the assistance of Carles Sadurní Anguita # # ---------------------------------------------------------------------------------------------- # --------------------------------------- # Digits # --------------------------------------- include litdigits6Dots.uti # --------------------------------------- # Braille indicator opcodes # --------------------------------------- numsign 3456 capsign 46 begcaps 46-46 # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/fr-fr-g1.utb0000664000175000017500000000707312161041546013604 00000000000000# liblouis: French Grade 1 table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Définitions pour code braille français international unifié # Par Nicolas Pitre # Référence: http://www.inlb.qc.ca/apropos/c2003unificationdubraille.aspx # Uncontracted Unified French Table # ---------------------------------- include text_nabcc.dis space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \x00A0 0 space \s 0 blank # 32 include latinLetterDef6Dots.uti uplow Çç 12346 c cédille uplow Éé 123456 e accent aigu uplow Àà 12356 a accent grave uplow Èè 2346 e accent grave uplow Ùù 23456 u accent grave uplow Ââ 16 a accent circonflexe uplow Êê 126 e accent circonflexe uplow Îî 146 i accent circonflexe uplow Ôô 1456 o accent circonflexe uplow Ûû 156 u accent circonflexe uplow Ëë 1246 e tréma uplow Ãï 12456 i tréma uplow Üü 1256 u tréma # uplow oe 246 oe ligatur uplow \x0152\x0153 246 punctuation , 2 virgule punctuation ; 23 point-virgule punctuation : 25 deux-points punctuation . 256 point punctuation ? 26 point d'interrogation punctuation ! 235 point d'exclamation punctuation " 2356 guillemt punctuation ( 236 parenthèse ouvrante sign * 35 astérisque punctuation ) 356 parenthèse fermante punctuation ' 3 apostrophe math / 34 barre oblique sign @ 345 arobas sign % 346 pour cent punctuation - 36 trait d'union sign # 3456 dièse # override zero digit 0 3456 include digits6DotsPlusDot6.uti sign \x00A8 46 diaeresis sign math \x00F7 6-256 divisé par math + 6-235 plus math = 6-2356 égal math × 6-35 multiplié par math < 46-126 inférieur à math > 46-345 supérieur à sign © 5-14 copyright sign ° 5-135 degré sign & 5-123456 perluète (et commercial) sign ¢ 45-14 cent sign ¤ 45-15 euro sign £ 45-123 livre sign § 45-1234 paragraphe sign $ 4-234 dollar sign Â¥ 45-13456 yen punctuation « 45-2356 guillemet français ouvrant punctuation » 2356-12 guillemet français fermant punctuation [ 45-236 crochet droit ouvrant punctuation ] 356-12 crochet droit fermant punctuation { 6-236 accolade de gauche punctuation } 356-3 accolade de droite sign ¹ 4-6-16 exposant 1 sign ² 4-6-126 exposant 2 sign ³ 4-6-146 exposant 3 sign ¼ 6-16-34-1456 un quart sign ½ 6-16-34-126 un demi sign ¾ 6-126-34-1456 trois quarts capsign 46 indicateur de majuscule begcaps 46-46 succession de majuscules numsign 3456 préfixe pour les chiffres midnum \s 3 espace entre les chiffres midnum , 2 midnum . 256 midnum - 36 midnum + 346 plus midnum / 34 midnum : 25 sign \x00B7 56 sign \x00B8 45 endnum # 56-3456 sign _ 456 souligné repeated ... 3-3-3 points de suite repeated --- 36-36-36 repeated ___ 456-456-456 always \s--\s 36-36 tiret liblouis-2.5.3/tables/se-se.dis0000664000175000017500000003370612161041546013266 00000000000000# This file is obsolete. Do not use! # liblouis: Se-Se.dis # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # This is to used with Swedish translation tables. #Hex Dots Dec Char Description display \X0020 0 #32 space display \X0021 235 #33 ! exclamation mark display \X0022 56 #34 " quotation mark display \X0023 3456 #35 # number sign display \X0024 1246 #36 $ dollar sign display \X0025 146 #37 % percent sign # display \X0026 12346 #38 & ampersand display \X0026 346 #38 & ampersand display \X0027 5 #39 ' apostrophe display \X0028 236 #40 ( left parenthesis display \X0029 356 #41 ) right parenthesis display \X002A 35 #42 * asterisk display \X002B 256 #43 + plus sign display \X002C 2 #44 , comma display \X002D 36 #45 - hyphen-minus display \X002E 3 #46 . full stop display \X002F 34 #47 / solidus display \X0030 356 #480 digit zero display \X0031 2 #491 digit one display \X0032 126 #502 digit two display \X0033 146 #513 digit three display \X0034 1456 #524 digit four display \X0035 156 #535 digit five display \X0036 1246 #546 digit six display \X0037 12456 #557 digit seven display \X0038 236 #568 digit eight display \X0039 35 #579 digit nine display \X003A 25 #58 : colon display \X003B 23 #59 ; semicolon display \X003C 56 #60 < less-than sign # display \X003D 156 #61 = equals sign display \X003D 2356 #61 = equals sign # display \X003E 45 #62 > greater-than sign display \X003F 26 #63 ? question mark # display \X0040 4 #64 @ commercial at display \X0040 123567 #64 @ commercial at #Hex Dots Dec Char Description display \X0041 17 #65 A Latin capital letter a display \X0042 127 #66 B Latin capital letter b display \X0043 147 #67 C Latin capital letter c display \X0044 1457 #68 D Latin capital letter d display \X0045 157 #69 E Latin capital letter e display \X0046 1247 #70 F Latin capital letter f display \X0047 12457 #71 G Latin capital letter g display \X0048 1257 #72 H Latin capital letter h display \X0049 247 #73 I Latin capital letter i display \X004A 2457 #74 J Latin capital letter j display \X004B 137 #75 K Latin capital letter k display \X004C 1237 #76 L Latin capital letter l display \X004D 1347 #77 M Latin capital letter m display \X004E 13457 #78 N Latin capital letter n display \X004F 1357 #79 O Latin capital letter o display \X0050 12347 #80 P Latin capital letter p display \X0051 123457 #81 Q Latin capital letter q display \X0052 12357 #82 R Latin capital letter r display \X0053 2347 #83 S Latin capital letter s display \X0054 23457 #84 T Latin capital letter t display \X0055 1367 #85 U Latin capital letter u display \X0056 12367 #86 V Latin capital letter v display \X0057 24567 #87 W Latin capital letter w display \X0058 13467 #88 X Latin capital letter x display \X0059 134567 #89 Y Latin capital letter y display \X005A 13567 #90 Z Latin capital letter z display \X005B 12356 # 91 [ left square bracket display \X005C 347 # 92 \ reverse solidus display \X005D 23456 # 93 ] right square bracket display \X005E 4 # 94 ^ circumflex accent display \X005F 6 # 95 _ low line display \X0060 46 # 96 ` grave accent display \X0061 1 #97 a Latin small letter a display \X0062 12 #98 b Latin small letter b display \X0063 14 #99 c Latin small letter c display \X0064 145 #100 d Latin small letter d display \X0065 15 #101 e Latin small letter e display \X0066 124 #102 f Latin small letter f display \X0067 1245 #103 g Latin small letter g display \X0068 125 #104 h Latin small letter h display \X0069 24 #105 i Latin small letter i display \X006A 245 #106 j Latin small letter j display \X006B 13 #107 k Latin small letter k display \X006C 123 #108 l Latin small letter l display \X006D 134 #109 m Latin small letter m display \X006E 1345 #110 n Latin small letter n display \X006F 135 #111 o Latin small letter o display \X0070 1234 #112 p Latin small letter p display \X0071 12345 #113 q Latin small letter q display \X0072 1235 #114 r Latin small letter r display \X0073 234 #115 s Latin small letter s display \X0074 2345 #116 t Latin small letter t display \X0075 136 #117 u Latin small letter u display \X0076 1236 #118 v Latin small letter v display \X0077 2456 #119 w Latin small letter w display \X0078 1346 #120 x Latin small letter x display \X0079 13456 #121 y Latin small letter y display \X007A 1356 #122 z Latin small letter z display \X007B 12356 # 123 { left curly bracket display \X007C 456 # 124 | vertical line display \X007D 23456 # 125 } right curly bracket # display \X007E 2356 # 126 ~ tilde display \X007E 45 # 126 ~ tilde display \X007F 4 # 127 ^ ?delete #Hex Dots Dec Char Description display \X0080 48 # Eurosign display \X0081 18 # 129~A display \X0082 128 # 130~Bbreak permitted here display \X0083 148 # 131~Cno break here display \X0084 1458 # 132~D display \X0085 158 # 133~Enext line display \X0086 1248 # 134~Fstart of selected area display \X0087 12458 # 135~Gend of selected area display \X0088 1258 # 136~Hcharacter tabulation set display \X0089 248 # 137~Icharacter tabulation with justification display \X008A 2458 # 138~Jline tabulation set display \X008B 138 # 139~Kpartial line down display \X008C 1238 # 140~Lpartial line up display \X008D 1348 # 141~Mreverse line feed display \X008E 13458 # 142~Nsingle shift two display \X008F 1358 # 143~Osingle shift three display \X0090 12348 # 144~Pdevice control string display \X0091 123458 # 145~Qprivate use one display \X0092 12358 # 146~Rprivate use two display \X0093 2348 # 147~Sset transmit state display \X0094 23458 # 148~Tcancel character display \X0095 1368 # 149~Umessage waiting display \X0096 12368 # 150~Vstart of guarded area display \X0097 24568 # 151~Wend of guarded area display \X0098 13468 # 152~Xstart of string display \X0099 134568 # 153~Y display \X009A 13568 # 154~Zsingle character introducer display \X009B 2468 # 155~[control sequence introducer display \X009C 12568 # 156~\string terminator display \X009D 124568 # 157~]operating system command display \X009E 458 # 158~^privacy message display \X009F 4568 # 159 ~_application program command display \X00A0 0 #160 no-break space #Hex Dots Dec Char Description display \X0000 478 #0^@null display \X0001 178 #1^Astart of heading display \X0002 1278 #2^Bstart of text display \X0003 1478 #3^Cend of text display \X0004 14578 #4^Dend of transmission display \X0005 1578 #5^Eenquiry display \X0006 12478 #6^Facknowledge display \X0007 124578 #7^Gbell display \X0008 12578 #8^Hbackspace display \X0009 2478 #9^Ihorizontal tabulation display \X000A 24578 #10^Jline feed display \X000B 1378 #11^Kvertical tabulation display \X000C 12378 #12^Lform feed display \X000D 13478 #13^Mcarriage return display \X000E 134578 #14^Nshift out display \X000F 13578 #15^Oshift in display \X0010 123478 #16^Pdata link escape display \X0011 1234578 #17^Qdevice control one display \X0012 123578 #18^Rdevice control two display \X0013 23478 #19^Sdevice control three display \X0014 234578 #20^Tdevice control four display \X0015 13678 #21^Unegative acknowledge display \X0016 123678 #22^Vsynchronous idle display \X0017 245678 #23^Wend of transmission block #display \X0018 134678 #24^Xcancel display \X0019 1345678 #25^Yend of medium display \X001A 135678 #26^Zsubstitute display \X001B 24678 #27^[escape display \X001C 125678 #28^\file separator display \X001D 1245678 #29^]group separator display \X001E 4578 #30^^record separator display \X001F 45678 #31^_unit separator #Hex Dots Dec Char Description display \X00A1 23467 # 161 ¡ inverted exclamation mark display \X00A2 58 #162 ¢ cent sign display \X00A3 34567 # 163 £ pound sign display \X00A4 1467 # 164 ¤ currency sign display \X00A5 123467 # 165 Â¥ yen sign display \X00A6 1567 # 166 ¦ broken bar display \X00A7 346 # 167 § section sign display \X00A8 57 # 168 ¨ diaeresis display \X00A9 23567 # 169 © copyright sign display \X00AA 8 # 170 ª feminine ordinal indicator display \X00AB 1267 # 171 « left-pointing double angle quotation mark display \X00AC 2567 # 172 ¬ not sign display \X00AD 367 # 173 ­ soft hyphen display \X00AE 2367 # 174 ® registered sign display \X00AF 267 # 175 ¯ macron display \X00B0 3567 # 176 ° degree sign display \X00C0 23578 # 192 À Latin capital letter a with grave display \X00C1 1678 # 193 à Latin capital letter a with acute display \X00C2 1678 # 194  Latin capital letter a with circumflex display \X00C3 578 # 195à Latin capital letter a with tilde display \X00C4 1234678 # 196Ä Latin capital letter a with diaeresis display \X00C5 34578 # 197Ã… Latin capital letter a with ring above display \X00C6 378 # 198Æ Latin capital letter ae display \X00C7 34678 # 199Ç Latin capital letter c with cedilla display \X00C8 23567 # 200 È Latin capital letter e with grave display \X00C9 12678 # 201É Latin capital letter e with acute display \X00CA 2378 # 202 Ê Latin capital letter e with circumflex display \X00CB 12345678 # 203Ë Latin capital letter e with diaeresis display \X00CC 23678 # 204ÃŒ Latin capital letter i with grave display \X00CD 14678 # 205à Latin capital letter i with acute display \X00CE 2578 # 206 ÃŽ Latin capital letter i with circumflex display \X00CF 1235678 # 207à Latin capital letter i with diaeresis display \X00D0 678 # 208à Latin capital letter eth display \X00D1 4678 # 209Ñ Latin capital letter n with tilde display \X00D2 3578 # 210Ã’ Latin capital letter o with grave display \X00D3 145678 # 211Ó Latin capital letter o with acute display \X00D4 25678 # 212 Ô Latin capital letter o with circumflex display \X00D5 5678 # 213Õ Latin capital letter o with tilde display \X00D6 234678 # 214Ö Latin capital letter o with diaeresis display \X00D7 167 # 215×multiplication sign display \X00D8 3478 # 216Ø Latin capital letter o with stroke display \X00D9 35678 # 217Ù Latin capital letter u with grave display \X00DA 15678 # 218Ú Latin capital letter u with acute display \X00DB 2678 # 219 Û Latin capital letter u with circumflex display \X00DC 2345678 # 220Ü Latin capital letter u with diaeresis display \X00DD 124678 # 221à Latin capital letter y with acute display \X00DE 3678 # 222Þ Latin capital letter thorn display \X00DF 345678 # 223ß Latin small letter sharp s display \X00E0 2358 # 224à Latin small letter a with grave display \X00E1 168 # 225á Latin small letter a with acute display \X00E2 168 # 226 â Latin small letter a with circumflex display \X00E3 58 # 227ã Latin small letter a with tilde display \X00E4 345 # 228ä Latin small letter a with diaeresis display \X00E5 16 # 229Ã¥ Latin small letter a with ring above display \X00E6 38 # 230æ Latin small letter ae display \X00E7 3468 # 231ç Latin small letter c with cedilla display \X00E8 23568 # 232è Latin small letter e with grave display \X00E9 123456 # 233é Latin small letter e with acute display \X00EA 238 # 234 ê Latin small letter e with circumflex display \X00EB 1234568 # 235ë Latin small letter e with diaeresis display \X00EC 2368 # 236ì Latin small letter i with grave display \X00ED 1468 # 237í Latin small letter i with acute display \X00EE 258 # 238 î Latin small letter i with circumflex display \X00EF 123568 # 239ï Latin small letter i with diaeresis display \X00F0 68 # 240ð Latin small letter eth display \X00F1 468 # 241ñ Latin small letter n with tilde display \X00F2 358 # 242ò Latin small letter o with grave display \X00F3 14568 # 243ó Latin small letter o with acute display \X00F4 2568 # 244 ô Latin small letter o with circumflex display \X00F5 568 # 245õ Latin small letter o with tilde display \X00F6 246 # 246ö Latin small letter o with diaeresis display \X00F7 347 # 247÷division sign display \X00F8 348 # 248ø Latin small letter o with stroke display \X00F9 3568 # 249ù Latin small letter u with grave display \X00FA 1568 # 250ú Latin small letter u with acute display \X00FB 268 # 251 û Latin small letter u with circumflex display \X00FC 1256 # 252 ü Latin small letter u with diaeresis display \X00FD 12468 # 253ý Latin small letter y with acute display \X00FE 368 # 254þ Latin small letter thorn display \X00FF 34568 # 255ÿ Latin small letter y with diaeresis display \X00BB 3457 # 187»right-pointing double angle quotation mark display \X00B9 27 # 185¹superscript one display \X00B2 237 # 178²superscript two display \X00B3 257 # 179³superscript three display \X00B1 3467 # 177±plus-minus sign display \X00D7 167 # 215×multiplication sign display \X00B7 467 # 183·middle dot display \X00BF 14567 # 191¿inverted question mark display \X00B6 2357 # 182¶pilcrow sign #Hex Dots Dec Char Description display \X00BC 123567 # 188¼vulgar fraction one quarter display \X00BD 1234567 # 189½vulgar fraction one half display \X00BE 234567 # 190¾vulgar fraction three quarters # Each of the three extended accent characters is the same as its conventional # compose character but with dot7 added: #Hex Dots Dec Char Description display \X00B4 37 # 180´acute accent display \X00B8 67 # 184¸cedilla # The two gender symbols are: #Hex Dots Dec Char Description display \X00BA 7 # 186ºmasculine ordinal indicator # The three remaining characters are: #Hex Dots Dec Char Description display \X00B5 567 # 181µmicro sign # The nonbreaking space is dots 7 and 8 because this presents a sequence of # nonbreaking spaces as a smooth low line segment. #Hex Dots Dec Char Description liblouis-2.5.3/tables/wiskunde-chardefs.cti0000664000175000017500000003262512161041546015657 00000000000000# # Copyright (C) 2010, 2011 DocArch . # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Flemish Braille Math Code (a.k.a. Woluwe code) # Created and maintained by Bert Frees # See also: « Handleiding Braillesymbolen Wiskunde » # (Gilbert Notaert, Marc Suij en Emmanuel Vandekerkhove, G.on Woluwe, 1984) # # ---------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- include digits6Dots.uti space \x0020 0 SPACE punctuation \x0021 6-235 ! EXCLAMATION MARK punctuation \x0022 4-35-35 " QUOTATION MARK math \x0025 3456-245-356 % PERCENT SIGN punctuation \x0027 4-35 ' APOSTROPHE punctuation \x0028 126 ( LEFT PARENTHESIS punctuation \x0029 345 ) RIGHT PARENTHESIS math \x002B 235 + PLUS SIGN punctuation \x002C 6-2-0 , COMMA punctuation \x002D 36 - HYPHEN-MINUS math \x002E 236 . FULL STOP math \x002F 34 / SOLIDUS punctuation \x003A 6-25-0 : COLON punctuation \x003B 6-23-0 ; SEMICOLON math \x003C 246 < LESS-THAN SIGN math \x003D 2356 = EQUALS SIGN math \x003E 4-135 > GREATER-THAN SIGN punctuation \x003F 6-26 ? QUESTION MARK math \x007B 5-12356 { LEFT CURLY BRACKET math \x007D 5-23456 } RIGHT CURLY BRACKET math \x007E 26 ~ TILDE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- space \x00A0 a   NO-BREAK SPACE math \x00AF 36 ¯ MACRON sign \x00B0 34-356 ° DEGREE SIGN math \x00B1 235-36 ± PLUS-MINUS SIGN math \x00B2 34-23 ² SUPERSCRIPT TWO math \x00B3 34-25 ³ SUPERSCRIPT THREE math \x00B9 34-2 ¹ SUPERSCRIPT ONE math \x00BA 34-356 º MASCULINE ORDINAL INDICATOR math \x00BC 3456-1-256 ¼ VULGAR FRACTION ONE QUARTER math \x00BD 3456-1-23 ½ VULGAR FRACTION ONE HALF math \x00BE 3456-14-256 ¾ VULGAR FRACTION THREE QUARTERS letter \x00C2 46-1-45-346  LATIN CAPITAL LETTER A WITH CIRCUMFLEX letter \x00C3 46-1-45-26 à LATIN CAPITAL LETTER A WITH TILDE math \x00D7 236 × MULTIPLICATION SIGN letter \x00E2 1-45-346 â LATIN SMALL LETTER A WITH CIRCUMFLEX letter \x00E3 1-45-26 ã LATIN SMALL LETTER A WITH TILDE math \x00F7 256 ÷ DIVISION SIGN # ---------------------------------------------------------------------------------------------- # Unicode 0300..036F Combining Diacritical Marks # ---------------------------------------------------------------------------------------------- math \x0302 346 Ì‚ COMBINING CIRCUMFLEX ACCENT math \x0303 26 ̃ COMBINING TILDE math \x0304 36 Ì„ COMBINING MACRON # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- math \x2030 3456-245-356-356 ‰ PER MILLE SIGN math \x2032 4-35 ′ PRIME math \x2033 4-35-35 ″ DOUBLE PRIME math \x2034 4-35-35-35 ‴ TRIPLE PRIME math \x2070 34-356 â° SUPERSCRIPT ZERO math \x2074 34-256 â´ SUPERSCRIPT FOUR math \x2075 34-26 âµ SUPERSCRIPT FIVE math \x2076 34-235 â¶ SUPERSCRIPT SIX math \x2077 34-2356 â· SUPERSCRIPT SEVEN math \x2078 34-236 ⸠SUPERSCRIPT EIGHT math \x2079 34-35 â¹ SUPERSCRIPT NINE math \x207F 34-1345-156 â¿ SUPERSCRIPT LATIN SMALL LETTER N math \x2080 16-356 â‚€ SUBSCRIPT ZERO math \x2081 16-2 â‚ SUBSCRIPT ONE math \x2082 16-23 â‚‚ SUBSCRIPT TWO math \x2083 16-25 ₃ SUBSCRIPT THREE math \x2084 16-256 â‚„ SUBSCRIPT FOUR math \x2085 16-26 â‚… SUBSCRIPT FIVE math \x2086 16-235 ₆ SUBSCRIPT SIX math \x2087 16-2356 ₇ SUBSCRIPT SEVEN math \x2088 16-236 ₈ SUBSCRIPT EIGHT math \x2089 16-35 ₉ SUBSCRIPT NINE math \x2090 16-1-156 â‚ LATIN SUBSCRIPT SMALL LETTER A math \x2091 16-15-156 â‚‘ LATIN SUBSCRIPT SMALL LETTER E math \x2092 16-135-156 â‚’ LATIN SUBSCRIPT SMALL LETTER O math \x2093 16-1346-156 â‚“ LATIN SUBSCRIPT SMALL LETTER X # ---------------------------------------------------------------------------------------------- # Unicode 2100..214F Letterlike Symbols # ---------------------------------------------------------------------------------------------- math \x2102 4-14 â„‚ DOUBLE-STRUCK CAPITAL C math \x2115 4-1345 â„• DOUBLE-STRUCK CAPITAL N math \x211A 4-12345 ℚ DOUBLE-STRUCK CAPITAL Q math \x211C 12346-1235 ℜ BLACK-LETTER CAPITAL R math \x211D 4-1235 â„ DOUBLE-STRUCK CAPITAL R math \x2124 4-1356 ℤ DOUBLE-STRUCK CAPITAL Z # ---------------------------------------------------------------------------------------------- # Unicode 2190..21FF Arrows # ---------------------------------------------------------------------------------------------- math \x2190 2-25 ↠LEFTWARDS ARROW math \x2191 6-346 ↑ UPWARDS ARROW math \x2192 25-2 → RIGHTWARDS ARROW math \x2193 4-146 ↓ DOWNWARDS ARROW math \x2194 2-25-2 ↔ LEFT RIGHT ARROW math \x21D0 2-2356 ⇠LEFTWARDS DOUBLE ARROW math \x21D2 2356-2 ⇒ RIGHTWARDS DOUBLE ARROW math \x21D4 2-2356-2 ⇔ LEFT RIGHT DOUBLE ARROW # ---------------------------------------------------------------------------------------------- # Unicode 2200..22FF Mathematical Operators # ---------------------------------------------------------------------------------------------- math \x2200 12346-2 ∀ FOR ALL math \x2203 12346-26 ∃ THERE EXISTS math \x2205 12456-35 ∅ EMPTY SET math \x2208 4-15 ∈ ELEMENT OF math \x2209 35-4-15 ∉ NOT AN ELEMENT OF math \x220B 4-24 ∋ CONTAINS AS MEMBER math \x220C 35-4-24 ∌ DOES NOT CONTAIN AS MEMBER math \x220F 456-1234 ∠N-ARY PRODUCT math \x2211 456-234 ∑ N-ARY SUMMATION math \x2212 36 − MINUS SIGN math \x2215 34 ∕ DIVISION SLASH math \x2216 16 ∖ SET MINUS math \x2217 356 ∗ ASTERISK OPERATOR math \x221E 3456-123456 ∞ INFINITY math \x2221 12456-246 ∡ MEASURED ANGLE math \x2222 12456-246 ∢ SPHERICAL ANGLE math \x2223 1456 ∣ DIVIDES math \x2224 35-1456 ∤ DOES NOT DIVIDE math \x2225 34-34 ∥ PARALLEL TO math \x2226 35-34-34 ∦ NOT PARALLEL TO math \x2227 346 ∧ LOGICAL AND math \x2228 146 ∨ LOGICAL OR math \x2229 346 ∩ INTERSECTION math \x222A 146 ∪ UNION math \x222B 2346 ∫ INTEGRAL math \x222C 2346-2346 ∬ DOUBLE INTEGRAL math \x222D 2346-2346-2346 ∭ TRIPLE INTEGRAL math \x223C 26 ∼ TILDE OPERATOR math \x2243 26-2356 ≃ ASYMPTOTICALLY EQUAL TO math \x2248 26-26 ≈ ALMOST EQUAL TO math \x2260 35-2356 ≠ NOT EQUAL TO math \x2261 2356-2356 ≡ IDENTICAL TO math \x2264 246-2356 ≤ LESS-THAN OR EQUAL TO math \x2265 4-135-2356 ≥ GREATER-THAN OR EQUAL TO math \x2282 126 ⊂ SUBSET OF math \x2283 345 ⊃ SUPERSET OF math \x2284 35-126 ⊄ NOT A SUBSET OF math \x2285 35-345 ⊅ NOT A SUPERSET OF math \x2286 126-2356 ⊆ SUBSET OF OR EQUAL TO math \x2287 345-2356 ⊇ SUPERSET OF OR EQUAL TO math \x2288 35-126-2356 ⊈ NEITHER A SUBSET OF NOR EQUAL TO math \x2289 35-345-2356 ⊉ NEITHER A SUPERSET OF NOR EQUAL TO math \x22A5 3456-3 ⊥ UP TACK math \x22C5 236 â‹… DOT OPERATOR math \x22D5 34-34-2356 â‹• EQUAL AND PARALLEL TO # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/ckb-g1.ctb0000664000175000017500000000227012161041546013277 00000000000000# # Copyright (C) 2011 by Peter Engström # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # SORANI (KURDISH) # ================ # Author: Peter Engström # Company: Index Braille # --------------------------------------------------------------------------------------- include ckb-chardefs.cti include braille-patterns.cti include ckb-translation.cti # --------------------------------------------------------------------------------------- liblouis-2.5.3/tables/oriya.cti0000664000175000017500000000701112161041546013363 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0b01 3 ORIYA SIGN CANDRABINDU letter \x0b02 56 ORIYA SIGN ANUSVARA letter \x0b03 6 ORIYA SIGN VISARGA letter \x0b05 1 ORIYA LETTER A letter \x0b06 345 ORIYA LETTER AA letter \x0b07 24 ORIYA LETTER I letter \x0b08 35 ORIYA LETTER II letter \x0b09 136 ORIYA LETTER U letter \x0b0a 1256 ORIYA LETTER UU letter \x0b0f 15 ORIYA LETTER E letter \x0b10 34 ORIYA LETTER AI letter \x0b13 135 ORIYA LETTER O letter \x0b14 246 ORIYA LETTER AU letter \x0b15 13 ORIYA LETTER KA letter \x0b16 46 ORIYA LETTER KHA letter \x0b17 1234 ORIYA LETTER GA letter \x0b18 126 ORIYA LETTER GHA letter \x0b19 346 ORIYA LETTER NGA letter \x0b1a 14 ORIYA LETTER CA letter \x0b1b 16 ORIYA LETTER CHA letter \x0b1c 245 ORIYA LETTER JA letter \x0b1d 356 ORIYA LETTER JHA letter \x0b1e 25 ORIYA LETTER NYA letter \x0b1f 23456 ORIYA LETTER TTA letter \x0b20 2456 ORIYA LETTER TTHA letter \x0b21 1246 ORIYA LETTER DDA letter \x0b22 123456 ORIYA LETTER DDHA letter \x0b23 3456 ORIYA LETTER NNA letter \x0b24 2345 ORIYA LETTER TA letter \x0b25 1456 ORIYA LETTER THA letter \x0b26 145 ORIYA LETTER DA letter \x0b27 2346 ORIYA LETTER DHA letter \x0b28 1345 ORIYA LETTER NA letter \x0b2a 1234 ORIYA LETTER PA letter \x0b2b 235 ORIYA LETTER PHA letter \x0b2c 12 ORIYA LETTER BA letter \x0b2d 45 ORIYA LETTER BHA letter \x0b2e 134 ORIYA LETTER MA letter \x0b2f 13456 ORIYA LETTER YA letter \x0b30 1235 ORIYA LETTER RA letter \x0b32 123 ORIYA LETTER LA letter \x0b33 1237 ORIYA LETTER LLA letter \x0b35 1236 ORIYA LETTER VA letter \x0b36 146 ORIYA LETTER SHA letter \x0b37 12346 ORIYA LETTER SSA letter \x0b38 234 ORIYA LETTER SA letter \x0b39 125 ORIYA LETTER HA letter \x0b3d 2 ORIYA SIGN AVAGRAHA letter \x0b3e 345 ORIYA VOWEL SIGN AA letter \x0b3f 24 ORIYA VOWEL SIGN I letter \x0b40 35 ORIYA VOWEL SIGN II letter \x0b41 136 ORIYA VOWEL SIGN U letter \x0b42 1256 ORIYA VOWEL SIGN UU letter \x0b47 15 ORIYA VOWEL SIGN E letter \x0b48 34 ORIYA VOWEL SIGN AI letter \x0b4b 135 ORIYA VOWEL SIGN O letter \x0b4c 246 ORIYA VOWEL SIGN AU letter \x0b4d 4 ORIYA SIGN VIRAMA letter \x0b66 245 ORIYA DIGIT ZERO letter \x0b67 1 ORIYA DIGIT ONE letter \x0b68 12 ORIYA DIGIT TWO letter \x0b69 14 ORIYA DIGIT THREE letter \x0b6a 145 ORIYA DIGIT FOUR letter \x0b6b 15 ORIYA DIGIT FIVE letter \x0b6c 124 ORIYA DIGIT SIX letter \x0b6d 1245 ORIYA DIGIT SEVEN letter \x0b6e 125 ORIYA DIGIT EIGHT letter \x0b6f 24 ORIYA DIGIT NINE liblouis-2.5.3/tables/ru-litbrl.ctb0000664000175000017500000000777112161041546014162 00000000000000# liblouis: Russian literary text translation table # # Copyright (C) 2013 Igor B. Poretsky # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Display and character definitions: include ru-letters.dis include ru-chardefs.cti include chardefs.cti # Braille indicators: numsign 3456 number sign, just a dots operand # Emphasis indication signs: firstwordital 456 lastworditalafter 456 firstwordbold 34 lastwordboldafter 34 # The decimal digits: include litdigits6Dots.uti # Punctuations: decpoint , 2 prepunc " 236 postpunc " 356 postpunc ,\s 2 postpunc ;\s 23 hyphen - 36 always . 256 always , 2 always ; 23 always : 25 always ? 26 always ! 235 always ' 3 always ` 4 # Special symbols: always @ 4-1 always # 4-1345 always $ 4-145 always % 3456-245-356 always ^ 56-26 always & 6-12346 always * 35 always ( 126 always ) 345 always _ 6-25 always [ 6-12356 always ] 6-23456 always { 46-126 always } 46-345 always \\ 4-16 always | 456-3 always ~ 5-26 # mathematical symbols: always - 36 always + 0-235 always / 6-34 always < 0-25-246-0 always > 0-135-25-0 always = 0-2356 # Symbol classes for special rules below: class upperlatin ABCDEFGHIJKLMNOPQRSTUVWXYZ class lowerlatin abcdefghijklmnopqrstuvwxyz class uppercyrillic \x0401\x0410\x0411\x0412\x0413\x0414\x0415\x0416\x0417\x0418\x0419\x041A\x041B\x041C\x041D\x041E\x041F\x0420\x0421\x0422\x0423\x0424\x0425\x0426\x0427\x0428\x0429\x042A\x042B\x042C\x042D\x042E\x042F class lowercyrillic \x0430\x0431\x0432\x0433\x0434\x0435\x0436\x0437\x0438\x0439\x043A\x043B\x043C\x043D\x043E\x043F\x0440\x0441\x0442\x0443\x0444\x0445\x0446\x0447\x0448\x0449\x044A\x044B\x044C\x044D\x044E\x044F\x0451 class latin ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz class cyrillic \x0401\x0410\x0411\x0412\x0413\x0414\x0415\x0416\x0417\x0418\x0419\x041A\x041B\x041C\x041D\x041E\x041F\x0420\x0421\x0422\x0423\x0424\x0425\x0426\x0427\x0428\x0429\x042A\x042B\x042C\x042D\x042E\x042F\x0430\x0431\x0432\x0433\x0434\x0435\x0436\x0437\x0438\x0439\x043A\x043B\x043C\x043D\x043E\x043F\x0440\x0441\x0442\x0443\x0444\x0445\x0446\x0447\x0448\x0449\x044A\x044B\x044C\x044D\x044E\x044F\x0451 swapcd updigit 1234567890 1,12,14,145,15,124,1245,125,24,245 # Adjust spacing around dashes according to the Russian braille rules. context `["-\s"] @36 context [$s]"-"$s ? context [$d]"-" %updigit@0 # Mark cyrillic letters immediately following digits. context [$d]%uppercyrillic %updigit@45#1=0 context [$d]%lowercyrillic %updigit@5#1=0 # Mark lowercase latin letters where it is required. context !#1=0[]%cyrillic #1=0 context #1=1[$d]%lowerlatin %updigit@6 context !#1=1[]%lowerlatin #1=1@6 context !#1=1[]%upperlatin #1=1 # Make space before text following number with punctuation. context [$d","]$l %updigit@2-0 context [$d",\s"]$l %updigit@2-0 context [$d";"]$l %updigit@23-0 context [$d";\s"]$l %updigit@23-0 # Mark cyrillic letters immediately following latins. pass2 %lowerlatin[]%uppercyrillic @45#1=0 pass2 %lowerlatin[]%lowercyrillic @5#1=0 pass2 #1=1[]%uppercyrillic @45#1=0 pass2 #1=1[]%lowercyrillic @5#1=0 # Mark uppercase latin letters where it is appropriate. pass2 !%upperlatin *#1=0 pass2 !#1=1[]%upperlatin #1=1@46 # Format dialogs and direct speech according to the Russian braille tradition. pass3 `@36 *#1=1 pass3 @236 *#1=1 pass3 @356 *#1=0 pass3 #1=1@2@36@0 *#1=2 pass3 #1=1@26@36@0 *#1=2 pass3 #1=1@235@36@0 *#1=2 pass3 #1=2@2[@36@0] @0-36 pass3 #1=2@256[@36@0] @0-36 liblouis-2.5.3/tables/tr.ctb0000664000175000017500000001115712161041546012664 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Turkish # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 26 QUESTION MARK uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 357 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation \x00a0 0 NO-BREAK SPACE uppercase \x00c2 3457 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c7 167 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00ce 347 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS lowercase \x00e2 345 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e7 16 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00ee 34 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS uppercase \x011e 1267 LATIN CAPITAL LETTER G WITH BREVE lowercase \x011f 126 LATIN SMALL LETTER G WITH BREVE uppercase \x0130 247 LATIN CAPITAL LETTER I WITH DOT ABOVE lowercase \x0131 35 LATIN SMALL LETTER DOTLESS I uppercase \x015e 1467 LATIN CAPITAL LETTER S WITH CEDILLA lowercase \x015f 146 LATIN SMALL LETTER S WITH CEDILLA liblouis-2.5.3/tables/fr-2007.ctb0000664000175000017500000002535512161041546013241 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Unified French - 2007 # This is the 2007 unification of french computer braille tables, based on the # cp1252 character set # # http://www.avh.asso.fr/rubriques/infos_braille/table_braille_informatique.php # generated by ttbtest letter \x0000 123458 NULL letter \x0001 1234678 START OF HEADING letter \x0002 1258 START OF TEXT letter \x0003 123468 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 158 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 12458 BELL letter \x0008 12578 BACKSPACE space \t 124678 CHARACTER TABULATION space \n 24568 LINE FEED (LF) space \v 138 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 13458 SHIFT OUT letter \x000f 2368 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 12368 END OF MEDIUM letter \x001a 15678 SUBSTITUTE letter \x001b 125678 ESCAPE letter \x001c 14678 INFORMATION SEPARATOR FOUR letter \x001d 12678 INFORMATION SEPARATOR THREE letter \x001e 2357 INFORMATION SEPARATOR TWO letter \x001f 2367 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation # 34568 NUMBER SIGN punctuation $ 357 DOLLAR SIGN punctuation % 3468 PERCENT SIGN punctuation & 1234568 AMPERSAND punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 23578 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP punctuation / 34 SOLIDUS # override zero digit 0 3456 include digits6DotsPlusDot6.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 238 LESS-THAN SIGN punctuation = 235678 EQUALS SIGN punctuation > 567 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 345 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 23678 LEFT SQUARE BRACKET punctuation \\ 348 REVERSE SOLIDUS punctuation ] 35678 RIGHT SQUARE BRACKET punctuation ^ 4 CIRCUMFLEX ACCENT punctuation _ 578 LOW LINE punctuation ` 6 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 2378 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 5678 RIGHT CURLY BRACKET punctuation ~ 38 TILDE letter \x007f 1238 DELETE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 2358 INVERTED EXCLAMATION MARK punctuation \x00a2 1478 CENT SIGN punctuation \x00a3 237 POUND SIGN punctuation \x00a4 45 CURRENCY SIGN punctuation \x00a5 25678 YEN SIGN punctuation \x00a6 458 BROKEN BAR punctuation \x00a7 12348 SECTION SIGN punctuation \x00a8 46 DIAERESIS punctuation \x00a9 148 COPYRIGHT SIGN letter \x00aa 1678 FEMININE ORDINAL INDICATOR punctuation \x00ab 23568 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 2567 NOT SIGN punctuation \x00ad 78 SOFT HYPHEN punctuation \x00ae 12358 REGISTERED SIGN punctuation \x00af 1348 MACRON punctuation \x00b0 267 DEGREE SIGN punctuation \x00b1 3678 PLUS-MINUS SIGN punctuation \x00b2 457 SUPERSCRIPT TWO punctuation \x00b3 4567 SUPERSCRIPT THREE punctuation \x00b4 5 ACUTE ACCENT lowercase \x00b5 257 MICRO SIGN punctuation \x00b6 45678 PILCROW SIGN punctuation \x00b7 8 MIDDLE DOT punctuation \x00b8 456 CEDILLA punctuation \x00b9 47 SUPERSCRIPT ONE letter \x00ba 2678 MASCULINE ORDINAL INDICATOR punctuation \x00bb 23567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 1368 VULGAR FRACTION ONE QUARTER punctuation \x00bd 468 VULGAR FRACTION ONE HALF punctuation \x00be 13468 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 268 INVERTED QUESTION MARK uppercase \x00c0 123567 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 1235678 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 167 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 178 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 34567 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 27 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 3457 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 23467 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 2478 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 347 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 124567 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 1278 LATIN CAPITAL LETTER ETH uppercase \x00d1 134578 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 13578 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 3467 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 1378 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 24678 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 3578 MULTIPLICATION SIGN uppercase \x00d8 345678 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 234567 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 2345678 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 1345678 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 24578 LATIN CAPITAL LETTER THORN lowercase \x00df 2348 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 123568 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 168 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 18 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 34578 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 28 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 3458 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 1268 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 12468 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 248 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 3478 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 1468 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 124568 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 128 LATIN SMALL LETTER ETH lowercase \x00f1 1245678 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 1358 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 346 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 14568 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 4678 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 358 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2578 DIVISION SIGN lowercase \x00f8 568 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 234568 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 1568 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 12568 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 134568 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 2458 LATIN SMALL LETTER THORN lowercase \x00ff 2568 LATIN SMALL LETTER Y WITH DIAERESIS uppercase \x0152 2467 LATIN CAPITAL LIGATURE OE lowercase \x0153 2468 LATIN SMALL LIGATURE OE uppercase \x0160 234678 LATIN CAPITAL LETTER S WITH CARON lowercase \x0161 23468 LATIN SMALL LETTER S WITH CARON uppercase \x0178 145678 LATIN CAPITAL LETTER Y WITH DIAERESIS uppercase \x017d 135678 LATIN CAPITAL LETTER Z WITH CARON lowercase \x017e 13568 LATIN SMALL LETTER Z WITH CARON lowercase \x0192 1248 LATIN SMALL LETTER F WITH HOOK letter \x02c6 48 MODIFIER LETTER CIRCUMFLEX ACCENT punctuation \x02dc 467 SMALL TILDE sign \x20ac 1578 EURO SIGN sign \x2122 23458 TRADE MARK SIGN liblouis-2.5.3/tables/marburg_single_cell_defs.cti0000664000175000017500000000131312161041546017237 00000000000000# Define all single-cell characters needed. space \s 0 space \x000a 0 space \x000c 0 space \x000d 0 space \x001b 1b space \x00a0 a space \t 9 punctuation ! 5 punctuation " 4 sign # 3456 sign $ 46 sign % 123456 punctuation & 12346 punctuation ' 6 punctuation ( 236 punctuation ) 356 sign * 35 math + 235 punctuation , 2 punctuation - 36 punctuation . 3 math / 256 include digits6DotsPlusDot6.uti punctuation : 25 punctuation ; 23 math < 56 math = 2356 math > 45 punctuation ? 26 punctuation @ 3457 include latinLetterDef8Dots.uti punctuation [ 123567 punctuation \\ 347 punctuation ] 234567 math ^ 23467 punctuation _ 4567 sign ` 345 punctuation { 12356 sign | 34 punctuation } 23456 math ~ 2346 sign \x007f 456 liblouis-2.5.3/tables/marburg_unicode_defs.cti0000664000175000017500000003470612161041546016421 00000000000000# Unicode character definitions, usually multi-cell lowercase \x2113 4-123 SCRIPT SMALL 006C sign \x00B0 356 Degree math \x00B1 a-56-235-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN math \x0391 456-1 GREEK CAPITAL LETTER ALPHA 03B1 math \x0392 456-12 GREEK CAPITAL LETTER BETA 03B2 math \x0393 456-1245 GREEK CAPITAL LETTER GAMMA 03B3 math \x0394 456-145 GREEK CAPITAL LETTER DELTA 03B4 math \x0395 456-15 GREEK CAPITAL LETTER EPSILON 03B5 math \x0396 456-156 GREEK CAPITAL LETTER ZETA 03B6 math \x0397 456-126 GREEK CAPITAL LETTER ETA 03B7 math \x0398 456-1456 GREEK CAPITAL LETTER THETA 03B8 math \x0399 456-24 GREEK CAPITAL LETTER IOTA 03B9 math \x039A 456-13 GREEK CAPITAL LETTER KAPPA 03BA math \x039B 456-123 GREEK CAPITAL LETTER LAMDA math \x039C 456-134 GREEK CAPITAL LETTER MU 03BC math \x039D 456-1345 GREEK CAPITAL LETTER NU 03BD math \x039E 456-1346 GREEK CAPITAL LETTER XI 03BE math \x039F 456-135 GREEK CAPITAL LETTER OMICRON 03BF math \x03A0 456-1234 GREEK CAPITAL LETTER PI 03C0 math \x03A1 456-1235 GREEK CAPITAL LETTER RHO 03C1 math \x03A3 456-234 GREEK CAPITAL LETTER SIGMA 03C3 math \x03A4 456-136 GREEK CAPITAL LETTER TAU 03C4 math \x03A5 456-136 GREEK CAPITAL LETTER UPSILON 03C5 math \x03A6 456-124 GREEK CAPITAL LETTER PHI 03C6 math \x03A7 456-12346 GREEK CAPITAL LETTER CHI 03C7 math \x03A8 456-1246 GREEK CAPITAL LETTER PSI 03C8 math \x03A9 456-2456 GREEK CAPITAL LETTER OMEGA 03C9 math \x03B1 46-1 GREEK SMALL LETTER ALPHA 0391 0391 math \x03B2 46-12 GREEK SMALL LETTER BETA 0392 0392 math \x03B3 46-1245 GREEK SMALL LETTER GAMMA 0393 0393 math \x03B4 46-145 GREEK SMALL LETTER DELTA 0394 0394 math \x03B5 46-15 GREEK SMALL LETTER EPSILON 0395 0395 math \x03B6 46-156 GREEK SMALL LETTER ZETA 0396 0396 math \x03B7 46-236 GREEK SMALL LETTER ETA 0397 0397 math \x03B8 46-1456 GREEK SMALL LETTER THETA 0398 0398 math \x03B9 46-24 GREEK SMALL LETTER IOTA 0399 0399 math \x03BA 46-13 GREEK SMALL LETTER KAPPA 039A 039A math \x03BB 46-123 GREEK SMALL LETTER LAMDA GREEK math \x03BC 46-134 GREEK SMALL LETTER MU 039C 039C math \x03BD 46-1345 GREEK SMALL LETTER NU 039D 039D math \x03BE 46-1346 GREEK SMALL LETTER XI 039E 039E math \x03BF 46-135 GREEK SMALL LETTER OMICRON 039F 039F math \x03C0 46-1234 GREEK SMALL LETTER PI 03A0 03A0 math \x03C1 46-1235 GREEK SMALL LETTER RHO 03A1 03A1 math \x03C2 46-25 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3 math \x03C3 46-234 GREEK SMALL LETTER SIGMA 03A3 03A3 math \x03C4 46-2345 GREEK SMALL LETTER TAU 03A4 03A4 math \x03C5 46-136 GREEK SMALL LETTER UPSILON 03A5 03A5 math \x03C6 46-124 GREEK SMALL LETTER PHI 03A6 03A6 math \x03C7 46-12346 GREEK SMALL LETTER CHI 03A7 03A7 math \x03C8 46-125 GREEK SMALL LETTER PSI 03A8 03A8 math \x03C9 46-135 GREEK SMALL LETTER OMEGA 03A9 03A9 math \x03D5 46-124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI math \x2026 a-3-3-3 HORIZONTAL ELLIPSIS 002E 002E 002E math \x2032 4-35 PRIME math \x2033 3-3 DOUBLE PRIME 2032 2032 math \x2114 1256 B BAR SYMBOL math \x211D 4-6-1235 DOUBLE-STRUCK CAPITAL 0052 DOUBLE-STRUCK math \X212B 45-1 ANGSTROM SIGN math \X2190 a246-25 LEFTWARDS ARROW math \X2191 a-25-24 UPWARDS ARROW math \x2192 a-25-135 RIGHTWARDS ARROW math \X2193 a-25-36 DOWNWARDS ARROW math \X2194 a-246-25-135 LEFT RIGHT ARROW math \X2195 a-1246-126-146-246-25-25-135 UP DOWN ARROW math \X2196 a-1246-45-246-25-25 NORTH WEST ARROW math \X2197 a-1246-45-25-25-135 NORTH EAST ARROW math \X2198 a-1246-56-25-25-135 SOUTH EAST ARROW math \X2199 a-1246-56-246-25-25 SOUTH WEST ARROW math \X219A a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH STROKE math \X219B a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH STROKE math \X219C a-1246-246-35-25-26 LEFTWARDS WAVE ARROW math \X219D a-1246-35-25-26-135 RIGHTWARDS WAVE ARROW math \X219E a-1246-246-246-25-25 LEFTWARDS TWO HEADED ARROW math \X219F a-1246-126-25-25-135-135 UPWARDS TWO HEADED ARROW math \X21A0 a-1246-25-25-135-135 RIGHTWARDS TWO HEADED ARROW math \X21A1 a-1246-146-25-25-135-135 DOWNWARDS TWO HEADED ARROW math \X21A2 a-1246-246-25-25-6-13456 LEFTWARDS ARROW WITH TAIL math \X21A3 a-12456-12346-25-25-135 RIGHTWARDS ARROW WITH TAIL math \X21A4 a-1246-246-25-25-1256 LEFTWARDS ARROW FROM BAR math \X21A5 a-1246-126-1256-25-25-135 UPWARDS ARROW FROM BAR math \X21A6 a-1246-1256-25-25-135 RIGHTWARDS ARROW FROM BAR math \X21A7 a-1246-146-1256-25-25-135 DOWNWARDS ARROW FROM BAR math \X21A8 a-1246-246-25-1256-25-135 UP DOWN ARROW WITH BASE math \X21A9 a-1246-246-25-25-6-135 LEFTWARDS ARROW WITH HOOK math \X21AA a-12456-246-25-25-135 RIGHTWARDS ARROW WITH HOOK math \X21AB a-1246-246-25-25-46-16 LEFTWARDS ARROW WITH LOOP math \X21AC a-1246-46-16-25-25-135 RIGHTWARDS ARROW WITH LOOP math \X21AD a-1246-246-35-25-26-135 LEFT RIGHT WAVE ARROW math \X21AE a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH STROKE math \X21AF a-1246-146-35-26-35-1359 DOWNWARDS ZIGZAG ARROW math \X21B4 a-12456-1256-25-25-135 RIGHTWARDS ARROW WITH CORNER DOWNWARDS math \X21B5 a-1246-1456-1256-25-25-135 DOWNWARDS ARROW WITH CORNER LEFTWARDS math \X21B6 a-1246-26-35-135 ANTICLOCKWISE TOP SEMICIRCLE ARROW math \X21B7 a-1246-246-26-35 CLOCKWISE TOP SEMICIRCLE ARROW math \X21BA a-1246-26-35-135 ANTICLOCKWISE OPEN CIRCLE ARROW math \X21BB a-1246-246-26-35 CLOCKWISE OPEN CIRCLE ARROW math \X21BC a-1246-4-246-25-25 LEFTWARDS HARPOON WITH BARB UPWARDS math \X21BD a-12456-246-25-25 LEFTWARDS HARPOON WITH BARB DOWNWARDS math \X21BE a-1246-126-25-25-6-135 UPWARDS HARPOON WITH BARB RIGHTWARDS math \X21BF a-1246-126-25-25-4-135 UPWARDS HARPOON WITH BARB LEFTWARDS math \X21C0 a-1246-25-25-4-135 RIGHTWARDS HARPOON WITH BARB UPWARDS math \X21C1 a-1246-25-25-6-135 RIGHTWARDS HARPOON WITH BARB DOWNWARS math \X21C2 a-1246-246-25-25-4-135 DOWNWARDS HARPOON WITH BARB RIGHTWARDS math \X21C3 a-1246-146-25-25-6-135 DOWNWARDS HARPOON WITH BARB LEFTWARDS math \X21C4 1246-25-25-135-1246-246-25-25 RIGHTWARDS ARROW OVER LEFTWARDS ARROW math \X21C5 1246-126-25-25-135-5-1246-146-25-25-135 UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW math \X21C6 1246-246-25-25-1246-25-25-135 LEFTWARDS ARROW OVER RIGHTWARDS ARROW math \X21C7 1246-245-25-25-1246-245-25-25 LEFTWARDS PAIRED ARROWS math \X21C8 1246-126-25-25-135-5-1246-126-25-25-135 UPWARDS PAIRED ARROWS math \X21C9 1246-25-25-135-1246-25-25-135 RIGHTWARDS PAIRED ARROWS math \X21CA 1246-146-25-25-135-5-1246-146-25-25-135 DOWNWARDS PAIRED ARROWS math \X21CB 1246-4-246-25-25-1246-25-25-4-135 LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON math \X21CC 1246-25-25-4-135-1246-4-246-25-25 RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON math \X21CD a-1256-4-1246-246-246-25-25 LEFTWARDS DOUBLE ARROW WITH STROKE math \X21CE a-1256-4-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW WITH STROKE math \X21CF a-1256-4-1246-25-25-135-135 RIGHTWARDS DOUBLE ARROW WITH STROKE math \X21D0 a-246-246-25 LEFTWARDS DOUBLE ARROW math \X21D1 a-1246-126-25-25-135-135 UPWARDS DOUBLE ARROW math \X21D2 a-25-135-135 RIGHTWARDS DOUBLE ARROW math \X21D3 a-1246-126-25-25-135-135 DOWNWARDS DOUBLE ARROW math \X21D4 a-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW math \X21D5 a-1246-126-246-246-25-25-135-135 UP DOWN DOUBLE ARROW math \X21D6 a-1246-45-246-246-25-25 NORTH WEST DOUBLE ARROW math \X21D7 a-1246-45-25-25-135-135 NORTH EAST DOUBLE ARROW math \X21D8 a-1246-56-25-25-135-135 SOUTH EAST DOUBLE ARROW math \X21D9 a-1246-56-246-246-25-25 SOUTH WEST DOUBLE ARROW math \X21DA a-1246-246-246-246-25-25 LEFTWARDS TRIPLE ARROW math \X21DB a-1246-25-25-135-135-135 RIGHTWARDS TRIPLE ARROW math \X21DC a-1246-246-26-36-35-25-26 LEFTWARDS SQUIGGLE ARROW math \X21DD a-1246-26-36-35-25-26-135 RIGHTWARDS SQUIGGLE ARROW math \X21DE a-1256-1256-4-1246-126-25-25-135-12456 UPWARDS ARROW WITH DOUBLE STROKE math \X21DF a-1256-1256-4-1246-146-25-25-135-12456 DOWNWARDS ARROW WITH DOUBLE STROKE math \X21E0 a-1246-246-25-25 LEFTWARDS DASHED ARROW math \X21E1 a-1246-126-25-25-135 UPWARDS DASHED ARROW math \X21E2 a-1246-25-25-135 RIGHTWARDS DASHED ARROW math \X21E3 a-1246-146-25-25-135 DOWNWARDS DASHED ARROW math \X21E4 a-1246-1256-246-25-25 LEFTWARDS ARROW TO BAR math \X21E5 a-1246-25-25-135-1256 RIGHTWARDS ARROW TO BAR math \X21E6 a-1246-456-246-25-25 LEFTWARDS WHITE ARROW math \X21E7 a-1246-126-456-25-25-135 UPWARDS WHITE ARROW math \X21E8 a-1246-456-25-25-135 RIGHTWARDS WHITE ARROW math \X21E9 a-1246-146-456-25-25-135 DOWNWARDS WHITE ARROW math \X21F3 a-1246-126-456-246-25-25-135 UP DOWN WHITE ARROW math \X21F4 a-1246-25-25-135-46-16 RIGHT ARROW WITH SMALL CIRCLE math \X21F5 a-1246-146-25-25-135-5-1246-126-25-25-135 DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW math \X21F6 a-1246-25-25-135-1246-25-25-135-1246-25-25-135 THREE RIGHTWARDS ARROWS math \X21F7 a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH VERTICAL STROKE math \X21F8 a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH VERTICAL STROKE math \X21F9 a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH VERTICAL STROKE math \X21FA a-1256-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE math \X21FB a-1256-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE math \X21FC a-1256-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE math \X21FD a-1246-1256-25-25 LEFTWARDS OPEN-HEADED ARROW math \X21FE a-1246-25-25-1256 RIGHTWARDS OPEN-HEADED ARROW math \X21FF a-1246-1256-25-25-1256 LEFT RIGHT OPEN-HEADED ARROW math \x2200 1256-2 FOR ALL math \X2202 4-145 PARTIAL DIFFERENTIAL math \X2203 1256-26 THERE EXISTS math \X2204 34-4-123456 THERE DOES NOT EXIST math \X2205 1256-356 EMPTY SET math \X2207 456-356 NABLA math \x2208 1256-35 ELEMENT OF math \X2209 34-4-15 NOT AN ELEMENT OF math \X220B 1256-135 CONTAINS AS MEMBER math \X220C 35-1256-135 DOES NOT CONTAIN AS MEMBER math \X220D 4-26 SMALL CONTAINS AS MEMBER math \X220E a-123456-123456 END OF PROOF math \x2211 456-234 NRY SUMMATION math \x2212 a-56-36 MINUS SIGN math \X2217 4-3456 ASTERISK OPERATOR math \x2218 356 degrees sign math \X221D a-25-2356 PROPORTIONAL TO math \x221E 123456 INFINITY math \X221F 1246-246-46-1235-12456 RIGHT ANGLE math \X2220 1456-246 ANGLE math \X2221 1246-246-456-1246-1246-1-12456 MEASURED ANGLE math \X2222 1246-246-456-1246-1246-1-12456 Spherical ANGLE math \X2223 1256 DIVIDES math \X2224 34-1256 DOES NOT DIVIDE math \X2225 a-1246-123 PARALLEL TO math \X2226 a-34-1246-123 NOT PARALLEL TO math \X2229 1256-2356 INTERSECTION math \X222A 1256-235 UNION math \x222B 2346 INTEGRAL math \x222C 2346-2346 DOUBLE INTEGRAL math \x222D 2346-2346-2346 TRIPLE INTEGRAL math \X222E 2346-4-1246-14-12456 CONTOUR INTEGRAL math \X2232 2346-4-1246-246-26-35-12456 CLOCKWISE CONTOUR INTEGRAL math \X2233 2346-4-1246-26-35-135-12456 ANTICLOCKWISE CONTOUR INTEGRAL math \X2234 a-6-16 THEREFORE math \X2235 a-4-34 BECAUSE math \X2236 a-5-2 RATIO math \X2245 a-456-2356 APPROXIMATELY EQUAL TO math \X224D a-2356-2356 EQUIVALENT TO math \x2260 a-35-2356 NOT EQUAL TO math \x2261 a-456-123 IDENTICAL TO math \x2264 a-246-2356 LESS-THAN OR EQUAL TO math \x2265 a-135-2356 GREATER-THAN OR EQUAL TO GREATER THAN OR EQUAL TO math \X2266 a-246-456-2356 LESS-THAN OVER EQUAL TO math \X2267 a-46-2-46-13 GREATER-THAN OVER EQUAL TO math \X2268 a-246-35-2356 LESS-THAN BUT NOT EQUAL TO math \X2269 a-135-35-2356 GREATER-THAN BUT NOT EQUAL TO math \X226A a-246-246 MUCH LESS-THAN math \X226B a-135-135 MUCH GREATER-THAN math \X226D a-35-2356-2356 NOT EQUIVALENT TO math \X226E a-35-246 NOT LESS-THAN math \X226F a-35-135 NOT GREATER-THAN math \X2270 a-34-5-13-156 NEITHER LESS-THAN NOR EQUAL TO math \X2271 a-34-46-2-156 NEITHER GREATER-THAN NOR EQUAL TO math \X2272 a-246-2356-2356 LESS-THAN OR EQUIVALENT TO math \X2273 a-135-2356-2356 GREATER-THAN OR EQUIVALENT TO math \X2274 a-34-5-13-456-123 NEITHER LESS-THAN NOR EQUIVALENT TO math \X2275 a-34-46-2-456-123 NEITHER GREATER-THAN NOR EQUIVALENT TO math \X2276 a-5-13-46-2 LESS-THAN OR GREATER-THAN math \X2277 a-46-2-5-13 GREATER-THAN OR LESS-THAN math \X2278 a-34-5-13-46-2 NEITHER LESS-THAN NOR GREATER-THAN math \X2279 a-34-46-2-5-13 NEITHER GREATER-THAN NOR LESS-THAN math \X2282 456-5-13 SUBSET OF math \X2283 456-46-2 SUPERSET OF math \X2284 34-456-5-13 NOT A SUBSET OF math \X2285 34-456-46-2 NOT A SUPERSET OF math \X2286 456-5-13-156 SUBSET OF OR EQUAL TO math \X2287 46-2-156 SUPERSET OF OR EQUAL TO math \X2288 34-5-13-156 NEITHER A SUBSET OF NOR EQUAL TO math \X2289 34-46-2-156 NEITHER A SUPERSET OF NOR EQUAL TO math \X228A 456-5-13-34-46-13 SUBSET OF WITH NOT EQUAL TO math \X228B 456-46-2-34-46-13 SUPERSET OF WITH NOT EQUAL TO math \X2295 1246-14-456-1246-346-12456 CIRCLED PLUS math \X2296 1246-14-456-1246-36-12456 CIRCLED MINUS math \X2297 1246-14-456-1246-4-16-12456 CIRCLED TIMES math \X2298 1246-14-456-1246-456-34-12456 CIRCLED DIVISION SLASH math \X2299 1246-14-456-1246-16-12456 CIRCLED DOT OPERATOR math \X229B 1246-14-456-1246-4-3456-12456 CIRCLED ASTERISK OPERATOR math \X229C 1246-14-456-1246-46-13-12456 CIRCLED EQUALS math \X229D 1246-14-456-1246-36-36-12456 CIRCLED DASH math \X229E 1246-256-456-1246-346-12456 SQUARED PLUS math \X229F 1246-256-456-1246-36-12456 SQUARED MINUS math \X22A0 1246-256-456-1246-4-16-12456 SQUARED TIMES math \X22A1 1246-256-456-1246-16-12456 SQUARED DOT OPERATOR math \X22A5 a-3456-3 Perpendicular TO math \X22A5 a-34-1246-1234 not Perpendicular TO math \x22C5 56-3 dot operator math \X22DC a-2356-246 EQUAL TO OR LESS-THAN math \X22DD a-2356-135 EQUAL TO OR GREATER-THAN math \X22EE 126-3-3-3 VERTICAL ELLIPSIS math \X22EF 3-3-3 MIDLINE HORIZONTAL ELLIPSIS math \X22F0 45-3-3-3 UP RIGHT DIAGONAL ELLIPSIS math \X22F1 56-3-3-3 DOWN RIGHT DIAGONAL ELLIPSIS math \x2322 a-1246-1 arc math \X25A0 1246-456-12345 filled Square math \X25A1 1246-12345 Square math \X25AB 1246-456-1235 filled Rectangle math \X25AC 1246-1235 Rectangle math \X25B0 1246-456-1245 filled PARALLELOGRAM math \X25B1 1246-1245 PARALLELOGRAM math \X25B2 1246-456-145 Filled Triangle math \X25B3 1246-145 Triangle math \X25BC 456-46-1246 BLACK DOWN-POINTING TRIANGLE math \X25BD 46-1246 WHITE DOWN-POINTING TRIANGLE math \X25CA 1246-456-14 filled Circle math \X25CB 1246-25 Circle math \xf577 1246-135 contracted right arrow sign * 4-3456 ASTERISK OPERATOR sign \x009A a SINGLE CHARACTER INTRODUCER sign \x00A2 4-14 CENT SIGN sign \x00A7 4-6-234 SECTION SIGN sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN sign \x00B7 16 MIDDLE DOT sign \x00D7 a-56-236 MULTIPLICATION SIGN sign \X00F7 a-56-256 DIVISION SIGN sign \x2022 35-35 BULLET sign \X2215 456-34 DIVISION slash sign \x2715 a-56-236 MULTIPLICATION SIGN space \x2009 0 THIN SPACE 0020 space \x2061 0 FUNCTION APPLICATION liblouis-2.5.3/tables/de-de-g2.ctb0000664000175000017500000000513412161041546013521 00000000000000# liblouis: German Grade 2 Braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE KURZSCHRIFT - German Grade 2 Braille - Germany, Austria # # Version 2009-11-19 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include de-de-g0.utb letsign 6 # All exception rules which use the letter "ß" are added BEFORE # de-g2-core is included always raufuß 1235-16-124-136-6-2346 always raufüß 1235-16-124-1256-6-2346 always beruß 23-1235-136-6-2346 always beiß 12-146-6-2346 always beimaß 2-12-134-1-6-2346 always demgemäß 2-12356-12346-134-345-6-2346 word außerdem 16-6-2346-12456-2-12356 midendword emaß 15-134-1-6-2346 midendword emäßig 15-134-345-6-2346-45 always mußestund 134-136-6-2346-15-23456-256-145 always mußestünd 134-136-6-2346-15-23456-1256-1345-145 always mädesüß 134-345-145-15-234-1256-6-2346 begmidword außengeländ 16-6-2346-14-12346-123-345-1345-145 always genieß 12346-1345-346-6-2346 always genuß 12346-1345-136-6-2346 always steingeiß 23456-1246-1245-146-6-2346 always habergeiß 125-1-12-12456-1245-146-6-2346 always herreiß 125-12456-1235-146-6-2346 midendword ßion 6-2346-245 midendword ßions 6-2346-245-234 always müßig 134-1256-6-2346-45 always ß 6-2346 syllable stöß 23456-246-6-2346 midendword sspaß 234-234-1234-1-6-2346 midendword sstoß 234-23456-135-6-2346 midendword sstraß 234-23456-1235-1-6-2346 always jakobstraß 245-1-13-135-12-23456-1235-1-6-2346 always einfallstraß 1246-124-12345-23456-1235-1-6-2346 begmidword karlstraß 13-356-123-23456-1235-1-6-2346 always fahrtstraß 2-1235-2345-23456-1235-1-6-2346 always fahrtsträß 2-1235-2345-23456-1235-345-6-2346 always begrüßungstrunk 23-1245-1235-1256-6-2346-136-234-2345-1235-256-13 always beißt 12-146-6-2346-2345 include de-g2-core.cti liblouis-2.5.3/tables/marburg.ctb0000664000175000017500000001012312161041546013666 00000000000000# liblouis: Marburg maths Table for mathematics # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Updated 6-18-08 by Mike Sivill include marburg_single_cell_defs.cti include marburg_unicode_defs.cti # grouping definitions are character-definition rules grouping mrow \x0001\x0002 1e,2e grouping mfrac \x0003\x0004 3e,4e grouping brackets \x0005\x0006 126,345 # Braille indicators numsign 3456 capsign 6 begcaps 6-6 endcaps 6-3 singleletterital 4 singleletterbold 4 # litdigit opcodes must be in this table, not the single-cell table. include litdigits6Dots.uti # No letsign but endnum for letters a-j. endnum a 56-1 endnum b 56-12 endnum c 56-14 endnum d 56-145 endnum e 56-15 endnum f 56-124 endnum g 56-1245 endnum h 56-125 endnum i 56-24 endnum j 56-245 # Ordinary translation entries always = a-56-2356 always + a-56-235 always > a-135-a always < a-246-a always % 25-1234 always $ 256 always & 4-12346 always ~ 45-156 always ! 6-236 prepunc " 236 postpunc " 356 postpunc ' 3 always '' 36 always ''' 36-3 midnum , 3 postpunc , 6-2 always , 3 always # 35-2345 print number sign before number always ( 126 always ) 345 pass2 [{mrow]@126/@345}mrow ? pass2 @126[{mrow]/}mrow@345 ? decpoint . 2 always ... 3-3-3 hyphen - 36 postpunc . 6-256 postpunc ; 6-23 postpunc : 6-25 postpunc ? 6-236 endnum % 4-356 midnum * 4-16 repeated \s 0 repeated \x00a0 a # swap opcodes for replacement and testing. swapcd dropped 0123456789 356,2,23,25,456,26,235,2356,236,35 swapdd upnum 245,1,12,14,145,15,124,1245,125,24 0,0,0,0,0,0,0,0,0,0 swapdd lownum 356,2,23,25,256,26,235,2356,236,35 0,0,0,0,0,0,0,0,0,0 # now we start doing the real work # Correction rules correct {mrow$ld1-20[}mrow] ? correct "\eb"[{mrow]/}mrow"\ee" ? context "\eb"[]$l"\ee" @56 context "\eb"[]","$l"\ee" @56 context {mfrac$d1-10[]"@456-34"$d1-10}mfrac #1=1 # context []"@456-34"$d1-10}mfrac #1=1 context []"@346"$d1-10"@12456" #1=1 context []"@16"$d1-10"@12456" #1=1 # context []"@146"$d1-10 #1=1 context #1=1$d1-10 #1=0%dropped # exactdots opcodes for dot patterns in ukmaths.sem exactdots @126 exactdots @345 exactdots @123456 exactdots @346 exactdots @16 exactdots @23456 exactdots @34 exactdots @456-34 exactdots @12456 exactdots @146 # Function names and abbreviations word cos 1246-14 word grad 1246-1245 word cosh 1246-125-14 word sinh 1246-125-234 word tanh 1246-125-2345 word cosech 1246-125-126 word coth 1246-125-1256 word sech 1246-125-36 word log 1246-123 word sin 1246-234 word tan 1246-2345 word cosec 1246-126 word curl 1246-146 word div 1246-1456 word cot 1246-1256 word arccosh 1246-236-14 word arcsinh 1246-236-234 word arctanh 1246-236-2345 word arccosech 1246-236-126 word arccoth 1246-236-1256 word arcsech 1246-236-36 word sec 1246-36 word arccos 1246-4-14 word antilog 1246-4-123 word arcsin 1246-4-234 word arctan 1246-4-2345 word arccosec 1246-4-126 word arccot 1246-4-1256 word arcsec 1246-4-25 word colog 1246-45-123 # pass2 processing pass2 [@3456]%lownum1-10 ? pass2 [@456-34-3456]%lownum1-10 ? # pass3 processing pass3 @346%lownum1-10[@12456] ? pass3 @16[%lownum1-10]@12456 * pass3 {mfrac[@3456%upnum1-10%lownum1-10]}mfrac * liblouis-2.5.3/tables/gd.ctb0000664000175000017500000001231712161041546012630 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Gaelic # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 236 QUESTION MARK uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation \x00a0 0 NO-BREAK SPACE uppercase \x00c1 123467 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00cd 123567 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00d3 23467 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00da 234567 LATIN CAPITAL LETTER U WITH ACUTE lowercase \x00e1 12346 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ed 12356 LATIN SMALL LETTER I WITH ACUTE lowercase \x00f3 2346 LATIN SMALL LETTER O WITH ACUTE lowercase \x00fa 23456 LATIN SMALL LETTER U WITH ACUTE uppercase \x010a 1467 LATIN CAPITAL LETTER C WITH DOT ABOVE lowercase \x010b 146 LATIN SMALL LETTER C WITH DOT ABOVE uppercase \x0120 12467 LATIN CAPITAL LETTER G WITH DOT ABOVE lowercase \x0121 1246 LATIN SMALL LETTER G WITH DOT ABOVE uppercase \x1e02 1267 LATIN CAPITAL LETTER B WITH DOT ABOVE lowercase \x1e03 126 LATIN SMALL LETTER B WITH DOT ABOVE uppercase \x1e0a 14567 LATIN CAPITAL LETTER D WITH DOT ABOVE lowercase \x1e0b 1456 LATIN SMALL LETTER D WITH DOT ABOVE uppercase \x1e1e 1567 LATIN CAPITAL LETTER F WITH DOT ABOVE lowercase \x1e1f 156 LATIN SMALL LETTER F WITH DOT ABOVE uppercase \x1e40 124567 LATIN CAPITAL LETTER M WITH DOT ABOVE lowercase \x1e41 12456 LATIN SMALL LETTER M WITH DOT ABOVE uppercase \x1e56 12567 LATIN CAPITAL LETTER P WITH DOT ABOVE lowercase \x1e57 1256 LATIN SMALL LETTER P WITH DOT ABOVE uppercase \x1e60 2467 LATIN CAPITAL LETTER S WITH DOT ABOVE lowercase \x1e61 246 LATIN SMALL LETTER S WITH DOT ABOVE uppercase \x1e6a 24567 LATIN CAPITAL LETTER T WITH DOT ABOVE lowercase \x1e6b 2456 LATIN SMALL LETTER T WITH DOT ABOVE liblouis-2.5.3/tables/de-de-accents.cti0000664000175000017500000000541212161041546014637 00000000000000# liblouis: Letters with accents (without ä ö ü) - Germany, Austria # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Letters with accents (without ä ö ü) - Germany, Austria # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- uplow Àà 4-1 \x00C0 À LATIN LETTER A WITH GRAVE uplow Ãá 4-1 \x00C1 Á LATIN LETTER A WITH ACUTE uplow Ââ 4-1 \x00C2  LATIN LETTER A WITH CIRCUMFLEX uplow Ãã 4-1 \x00C3 à LATIN LETTER A WITH TILDE uplow Ã…Ã¥ 4-1 \x00C5 Å LATIN LETTER A WITH RING ABOVE uplow Ææ 1-15 \x00C6 Æ LATIN LETTER AE uplow Çç 4-14 \x00C7 Ç LATIN LETTER C WITH CEDILLA uplow Èè 4-15 \x00C8 È LATIN LETTER E WITH GRAVE uplow Éé 4-15 \x00C9 É LATIN LETTER E WITH ACUTE uplow Êê 4-15 \x00CA Ê LATIN LETTER E WITH CIRCUMFLEX uplow Ëë 4-15 \x00CB Ë LATIN LETTER E WITH DIAERESIS uplow Ìì 4-24 \x00CC Ì LATIN LETTER I WITH GRAVE uplow Ãí 4-24 \x00CD Í LATIN LETTER I WITH ACUTE uplow Îî 4-24 \x00CE Î LATIN LETTER I WITH CIRCUMFLEX uplow Ãï 4-24 \x00CF Ï LATIN LETTER I WITH DIAERESIS uplow Ãð 4-145 \x00D0 Ð LATIN LETTER ETH uplow Ññ 4-1345 \x00D1 Ñ LATIN LETTER N WITH TILDE uplow Òò 4-135 \x00D2 Ò LATIN LETTER O WITH GRAVE uplow Óó 4-135 \x00D3 Ó LATIN LETTER O WITH ACUTE uplow Ôô 4-135 \x00D4 Ô LATIN LETTER O WITH CIRCUMFLEX uplow Õõ 4-135 \x00D5 Õ LATIN LETTER O WITH TILDE uplow Øø 4-135 \x00D8 Ø LATIN LETTER O WITH STROKE uplow Ùù 4-136 \x00D9 Ù LATIN LETTER U WITH GRAVE uplow Úú 4-136 \x00DA Ú LATIN LETTER U WITH ACUTE uplow Ûû 4-136 \x00DB Û LATIN LETTER U WITH CIRCUMFLEX uplow Ãý 4-13456 \x00DD Ý LATIN LETTER Y WITH ACUTE uplow Þþ 4-2345 \x00DE Þ LATIN LETTER THORN lowercase ÿ 4-13456 \x00FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS uplow \x0152\x0153 135-15 Œ LATIN LIGATURE OE liblouis-2.5.3/tables/ukmaths_edit.ctb0000664000175000017500000000302012161041546014706 00000000000000# liblouis Table for Post-Translation Editing # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Updated 6-18-08 by Mike Sivill include ukmaths_single_cell_defs.cti math \x0001 56 math \x0002 45 math \x0003 56 math \x0004 45 repeated \s 0 always \ee\s`4 6-256 always \ee\s`1 6 always \ee\s`3 6-25 always \ee\s`2 6-23 always `7\s\eb 12356 always \ee\s`7 23456 always "\s 0 always \s,\s 6-0 # context "\eb"[]$l"\ee" @56 # context "\eb"[]","$l"\ee" @56 pass2 @1b-12 ? pass2 @1b-15 ? pass2 @1b-12-4-4 @4 liblouis-2.5.3/tables/ca-g1.ctb0000664000175000017500000000171212161041546013123 00000000000000# ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # Copyright (c) 2010 by DocArch . # ---------------------------------------------------------------------------------------------- # # Catalan Braille # Created and maintained by Bert Frees # with the assistance of Carles Sadurní Anguita # # ---------------------------------------------------------------------------------------------- include ca-chardefs.cti # --------------------------------------- # Digits # --------------------------------------- include litdigits6Dots.uti # --------------------------------------- # Braille indicator opcodes # --------------------------------------- numsign 3456 capsign 46 begcaps 46-46 # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/ru-letters.dis0000664000175000017500000000465412161041546014360 00000000000000# liblouis: Russian letters display codes # # Copyright (C) 2013 Igor B. Poretsky # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Uppercase cyrillic letters: display A 179 display B 1279 display C 1479 display D 14579 display E 1579 display F 12479 display G 124579 display H 12579 display I 2479 display J 24579 display K 1379 display L 12379 display M 13479 display N 134579 display O 13579 display P 123479 display Q 1234579 display R 123579 display S 23479 display T 234579 display U 13679 display W 245679 display X 134679 display Z 135679 display * 1679 display & 1234679 display : 15679 display ( 1235679 display ! 234679 display ) 2345679 display { 24679 display | 125679 display $ 124679 # Lowercase cyrillic letters: display A 19 display B 129 display C 149 display D 1459 display E 159 display F 1249 display G 12459 display H 1259 display I 249 display J 2459 display K 139 display L 1239 display M 1349 display N 13459 display O 1359 display P 12349 display Q 123459 display R 12359 display S 2349 display T 23459 display U 1369 display W 24569 display X 13469 display Z 13569 display * 169 display & 123469 display : 1569 display ( 123569 display ! 23469 display ) 234569 display { 2469 display | 12569 display $ 12469 # Use lowercase letters for representation of all latins. # This convention is taken to maintain distinguishes # between cyrillic and latin letters in resulting braille output. display a 17 display b 127 display c 147 display d 1457 display e 157 display f 1247 display g 12457 display h 1257 display i 247 display j 2457 display k 137 display l 1237 display m 1347 display n 13457 display o 1357 display p 12347 display q 123457 display r 12357 display s 2347 display t 23457 display u 1367 display v 12367 display w 24567 display x 13467 display y 134567 display z 13567 liblouis-2.5.3/tables/sa.ctb0000664000175000017500000000167512161041546012646 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Sanskrit include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/nemeth.ctb0000664000175000017500000001143212161041546013513 00000000000000# liblouis: Nemeth Table for mathematics # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Updated 6-18-08 by Mike Sivill include chardefs.cti All character definition opcodes include nemethdefs.cti # Braille indicators multind 56-6 letsign capsign capsign 6 begital 46 endital 46-46 begbold 456 endbold 456-456 begcomp 456-346 endcomp 456-156 # Letters are defined in en-chardefs # punctuation prepunc " 236 postpunc " 356 prepunc ' 6-236 postpunc ' 356-3 postpunc , 6 always , 6-a always # 35-2345 print number sign before number decpoint . 46 hyphen - 36 postpunc . 456-256 endnum . 456-256 always . 256 postpunc ; 456-23 postpunc : 456-25 always ! 12346 factorial always < a-5-13-a always = a-46-13-a always > a-46-2-a postpunc ? 456-236 endnum % 4-356 always ~~ 4-156-5-4-156 always ~ 4-156 always & 456-12346 midnum * 4-16 always [ 4-12356 always ] 4-23456 always { 46-12356 always } 46-23456 always @ 4-1 always \\ 456-16 always | 1256 always $ 4-234 repeated \s 0 context ["\X25A1"]$d @1246-256-5 context ["\X25A0"]$d @1246-456-256-5 always \x00b0 45-46-16 always \x00B1 346-36 # semantic character pairs always ^, 6 always ^; 56 always ^: 156 always ^. 46 always ^! 2346 always ^" 5 always ^' 3 always ^( 12356 always ^) 23456 always ^- 36 always ^_ 456 always ^< 126 always ^= 123456 always ^> 345 always ^% 146 always ^+ 346 always ^~ 45 always ^` 4 always ^& 12346 always ^$ 1246 always ^? 1456 always ^{ 246 always ^} 12456 always ^# 3456 always ^| 1256 always ^/ 34 always ^* 16 repeated ^1 a # Function names and abbreviations word acos 1-14-135-245-a word antilog 1-1345-2345-24-123-135-1234-a word arc 1-1235-14-a word arccos 1-1235-14-14-135-234-a word arg 1-1235-1245-a word asin 1-234-24-1235-a word atan 1-2345-1-135-a word colog 14-123-135-1245-a word cos 14-135-245-a word cosh 14-135-234-a word cot 14-135-2345-a word coth 14-135-2345-125-a word covers 14-135-1236-15-1235-245-a word csc 14-234-14-a word csch 14-234-14-125-a word erf 15-1235-124-a word inf 24-1345-124-a word ln 123-1345-a word log 123-135-1234-a word max 135-1-1346-a word min 134-24-1345-a word sec 234-15-14-a word sech 234-15-14-a word sin 234-24-1345-a word sinh 234-24-1345-125-a word tan 2345-1-1345-a word tanh 2345-1-135-125-a word vers 1236-15-1235-234-a # computer braille character sequences compbrl :// URLs compbrl www. compbrl .com compbrl .edu compbrl .gov compbrl .mil compbrl .net compbrl .org compbrl .doc compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip # pass 2 corrections # get rid of base-line ind. after subscripts pass2 @56[$d1-5]@5!$d * # insert another superscript ind. on doube superscripts pass2 @45[]$d@5-5 @45 #get rid of extra baseline inds. pass2 @5-5 @5 pass2 @5-0 @0 pass2 @5-a @a pass2 @5-1b-15 @1b-15 # get rid rid of superscript ind. on prime sign pass2 @45-3-5 @3 # Put 456 in mixed numbers pass2 $d[]@1456 @456 pass2 @456-1456!$s3-8[]@3456 @456 # Put number sign on numbers after spaces pass2 @a[]$d @3456 pass2 @0[]$d @3456 pass2 @1b-12[]$d @3456 pass2 @a-0 @a # fix anomaly with superscripts pass2 @45-0-5 @45 pass2 @45-5 @45 # Fix single letter and digit with overbar pass2 @5$l[@126-12456] @156 pass2 @5-6$l[@126-12456] @156 pass2 [@5]!$s@156 @a pass2 @46-a @456-256 # get rid of space for overscripts pass2 @126-a @126 pass2 @146-a @146 pass2 @0-146 @146 pass2 @a-146 @146 pass2 @a-12456 @12456 # fix complex fraction begin and end (not perfectly) pass2 @1456-1456 @6-1456-1456 pass2 @3456-3456 @3456-6-3456 # Fix lim with overbar sign pass2 @5-123-24-134-126-12456 @126-123-24-134 # Get rid of open paren before matrices pass2 @12356-4-6-12356 @4-6-12356 pass2 @1256-4-6-12356 @4-6-12356 # take off baseline ind. comma space pass2 [@5-6]!$l @6 pass2 @1b-12[]$d @3456 number sign before digit at beginning liblouis-2.5.3/tables/en_CA.ctb0000664000175000017500000001771612161041546013213 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - English (Canada) # Dave Mielke # This text table implements North American style English braille, the # additional letters of the French, German, and Italian alphabets, and # easy-to-remember representations for many common extra symbols. # generated by ttbtest letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 1578 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 24578 LINE FEED (LF) space \v 1378 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 13578 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 1345678 END OF MEDIUM letter \x001a 135678 SUBSTITUTE space \s 0 SPACE punctuation ! 2346 EXCLAMATION MARK punctuation " 5 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 1246 DOLLAR SIGN punctuation % 146 PERCENT SIGN punctuation & 12346 AMPERSAND punctuation ' 3 APOSTROPHE punctuation ( 12356 LEFT PARENTHESIS punctuation ) 23456 RIGHT PARENTHESIS punctuation * 16 ASTERISK punctuation + 346 PLUS SIGN punctuation , 6 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 46 FULL STOP punctuation / 34 SOLIDUS include loweredDigits6Dots.uti punctuation : 156 COLON punctuation ; 56 SEMICOLON punctuation < 126 LESS-THAN SIGN punctuation = 123456 EQUALS SIGN punctuation > 345 GREATER-THAN SIGN punctuation ? 1456 QUESTION MARK punctuation @ 47 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 2467 LEFT SQUARE BRACKET punctuation \\ 12567 REVERSE SOLIDUS punctuation ] 124567 RIGHT SQUARE BRACKET punctuation ^ 457 CIRCUMFLEX ACCENT punctuation _ 456 LOW LINE punctuation ` 4 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 246 LEFT CURLY BRACKET punctuation | 1256 VERTICAL LINE punctuation } 12456 RIGHT CURLY BRACKET punctuation ~ 45 TILDE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 23467 INVERTED EXCLAMATION MARK punctuation \x00a2 12467 CENT SIGN punctuation \x00a3 34567 POUND SIGN punctuation \x00a5 134568 YEN SIGN punctuation \x00a6 1256 BROKEN BAR punctuation \x00a7 2348 SECTION SIGN punctuation \x00a9 148 COPYRIGHT SIGN punctuation \x00ab 123567 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 13458 NOT SIGN punctuation \x00ad 36 SOFT HYPHEN punctuation \x00ae 12358 REGISTERED SIGN punctuation \x00b0 1458 DEGREE SIGN punctuation \x00b1 3467 PLUS-MINUS SIGN lowercase \x00b5 1348 MICRO SIGN punctuation \x00b6 12348 PILCROW SIGN punctuation \x00b7 467 MIDDLE DOT punctuation \x00bb 234567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bf 14567 INVERTED QUESTION MARK uppercase \x00c0 1235678 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c2 1678 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c4 34578 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c7 1234678 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 234678 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 12345678 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 12678 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 124678 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 3478 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00ce 14678 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 1245678 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d2 34678 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d4 145678 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d6 24678 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 167 MULTIPLICATION SIGN uppercase \x00d9 2345678 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00db 15678 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 125678 LATIN CAPITAL LETTER U WITH DIAERESIS lowercase \x00df 34568 LATIN SMALL LETTER SHARP S lowercase \x00e0 123568 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e2 168 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e4 3458 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e7 123468 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 23468 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 1234568 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 1268 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 12468 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 348 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ee 1468 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 124568 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f2 3468 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f4 14568 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f6 2468 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 347 DIVISION SIGN lowercase \x00f9 234568 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fb 1568 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 12568 LATIN SMALL LETTER U WITH DIAERESIS liblouis-2.5.3/tables/digits6DotsPlusDot6.uti0000664000175000017500000000036412161041546016072 00000000000000digit 0 346 digit 1 16 digit 2 126 digit 3 146 digit 4 1456 digit 5 156 digit 6 1246 digit 7 12456 digit 8 1256 digit 9 246 liblouis-2.5.3/tables/no-no.ctb0000664000175000017500000003333412161041546013266 00000000000000# File: no-no.ctb # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # This is to be used with Norwegian translation tables. # BRLTTY Text Translation Table - Norwegian (iso-8859-1), based on the # Offentlig Utvalg for Blindeskrift (Public Commission for Braille) # translation table for Windows 1252. # Updated January 2008. # display \X0000 4578 # 000 null # display \X0000 0 # 000 null sign \X0001 178 # 001 start of heading sign \X0002 1278 # 002 start of text sign \X0003 1478 # 003 end of text sign \X0004 14578 # 004 end of transmission sign \X0005 1578 # 005 enquiry sign \X0006 12478 # 006 acknowledge sign \X0007 124578 # 007 bell sign \X0008 12578 # 008 backspace sign \X0009 2478 # 009 horizontal tabulation sign \X000A 24578 # 010 line feed sign \X000B 1378 # 011 vertical tabulation sign \X000C 12378 # 012 form feed sign \X000D 13478 # 013 carriage return sign \X000E 134578 # 014 shift out sign \X000F 13578 # 015 shift in sign \X0010 123478 # 016 data link escape sign \X0011 1234578 # 017 device control one sign \X0012 123578 # 018 device control two sign \X0013 23478 # 019 device control three sign \X0014 234578 # 020 device control four sign \X0015 13678 # 021 negative acknowledge sign \X0016 123678 # 022 synchronous idle sign \X0017 245678 # 023 end of transmission block sign \X0018 134678 # 024 cancel sign \X0019 1345678 # 025 end of medium sign \X001A 135678 # 026 substitute sign \X001B 12348 # 027 escape sign \X001C 123458 # 028 file separator sign \X001D 1368 # 029 group separator sign \X001E 24568 # 030 record separator sign \X001F 13568 # 031 unit separator sign \X0020 0 # 032 space sign \X0021 235 # 033 exclamation mark sign \X0022 256 # 034 quotation mark sign \X0023 3456 # 035 number sign sign \X0024 25678 # 036 dollar sign sign \X0025 46 # 037 percent sign sign \X0026 578 # 038 ampersand sign \X0027 5 # 039 apostrophe sign \X0028 236 # 040 left parenthesis sign \X0029 356 # 041 right parenthesis sign \X002A 35 # 042 asterisk sign \X002B 2357 # 043 plus sign sign \X002C 2 # 044 comma sign \X002D 36 # 045 hyphen-minus sign \X002E 3 # 046 full stop sign \X002F 57 # 047 solidus sign \X0030 2458 # 048 digit zero sign \X0031 18 # 049 digit one sign \X0032 128 # 050 digit two sign \X0033 148 # 051 digit three sign \X0034 1458 # 052 digit four sign \X0035 158 # 053 digit five sign \X0036 1248 # 054 digit six sign \X0037 12458 # 055 digit seven sign \X0038 1258 # 056 digit eight sign \X0039 248 # 057 digit nine sign \X003A 25 # 058 colon sign \X003B 23 # 059 semicolon sign \X003C 358 # 060 less-than sign sign \X003D 2356 # 061 equals sign sign \X003E 267 # 062 greater-than sign sign \X003F 26 # 063 question mark sign \X0040 4 # 064 commercial at sign \X0041 17 # 065 latin capital letter a sign \X0042 127 # 066 latin capital letter b sign \X0043 147 # 067 latin capital letter c sign \X0044 1457 # 068 latin capital letter d sign \X0045 157 # 069 latin capital letter e sign \X0046 1247 # 070 latin capital letter f sign \X0047 12457 # 071 latin capital letter g sign \X0048 1257 # 072 latin capital letter h sign \X0049 247 # 073 latin capital letter i sign \X004A 2457 # 074 latin capital letter j sign \X004B 137 # 075 latin capital letter k sign \X004C 1237 # 076 latin capital letter l sign \X004D 1347 # 077 latin capital letter m sign \X004E 13457 # 078 latin capital letter n sign \X004F 1357 # 079 latin capital letter o sign \X0050 12347 # 080 latin capital letter p sign \X0051 123457 # 081 latin capital letter q sign \X0052 12357 # 082 latin capital letter r sign \X0053 2347 # 083 latin capital letter s sign \X0054 23457 # 084 latin capital letter t sign \X0055 1367 # 085 latin capital letter u sign \X0056 12367 # 086 latin capital letter v sign \X0057 24567 # 087 latin capital letter w sign \X0058 13467 # 088 latin capital letter x sign \X0059 134567 # 089 latin capital letter y sign \X005A 13567 # 090 latin capital letter z sign \X005B 23678 # 091 left square bracket sign \X005C 28 # 092 reverse solidus sign \X005D 35678 # 093 right square bracket sign \X005E 58 # 094 circumflex accent sign \X005F 456 # 095 low line sign \X0060 45 # 096 grave accent sign \X0061 1 # 097 latin small letter a sign \X0062 12 # 098 latin small letter b sign \X0063 14 # 099 latin small letter c sign \X0064 145 # 100 latin small letter d sign \X0065 15 # 101 latin small letter e sign \X0066 124 # 102 latin small letter f sign \X0067 1245 # 103 latin small letter g sign \X0068 125 # 104 latin small letter h sign \X0069 24 # 105 latin small letter i sign \X006A 245 # 106 latin small letter j sign \X006B 13 # 107 latin small letter k sign \X006C 123 # 108 latin small letter l sign \X006D 134 # 109 latin small letter m sign \X006E 1345 # 110 latin small letter n sign \X006F 135 # 111 latin small letter o sign \X0070 1234 # 112 latin small letter p sign \X0071 12345 # 113 latin small letter q sign \X0072 1235 # 114 latin small letter r sign \X0073 234 # 115 latin small letter s sign \X0074 2345 # 116 latin small letter t sign \X0075 136 # 117 latin small letter u sign \X0076 1236 # 118 latin small letter v sign \X0077 2456 # 119 latin small letter w sign \X0078 1346 # 120 latin small letter x sign \X0079 13456 # 121 latin small letter y sign \X007A 1356 # 122 latin small letter z sign \X007B 238 # 123 left curly bracket sign \X007C 56 # 124 vertical line sign \X007D 567 # 125 right curly bracket sign \X007E 38 # 126 tilde sign \X007F 3578 # 127 delete sign \X0080 2678 # 128 sign \X0081 13458 # 129 sign \X0082 67 # 130 break permitted here sign \X0083 45678 # 131 no break here sign \X0084 3567 # 132 sign \X0085 37 # 133 next line sign \X0086 47 # 134 start of selected area sign \X0087 457 # 135 end of selected area sign \X0088 468 # 136 character tabulation set sign \X0089 4568 # 137 character tabulation with justification sign \X008A 15678 # 138 line tabulation set sign \X008B 378 # 139 partial line down sign \X008C 12345678 # 140 partial line up sign \X008D 478 # 141 reverse line feed sign \X008E 234678 # 142 single shift two sign \X008F 2367 # 143 single shift three sign \X0090 2368 # 144 device control string sign \X0091 367 # 145 private use one sign \X0092 368 # 146 private use two sign \X0093 23567 # 147 set transmit state sign \X0094 23568 # 148 cancel character sign \X0095 3678 # 149 message waiting sign \X0096 68 # 150 start of guarded area sign \X0097 568 # 151 end of guarded area sign \X0098 2568 # 152 start of string sign \X0099 23458 # 153 sign \X009A 1568 # 154 single character introducer sign \X009B 678 # 155 control sequence introducer sign \X009C 1234568 # 156 string terminator sign \X009D 235678 # 157 operating system command sign \X009E 23468 # 158 privacy message sign \X009F 125678 # 159 application program command sign \X00A0 8 # 160 no-break space sign \X00A1 2358 # 161 inverted exclamation mark sign \X00A2 2578 # 162 cent sign sign \X00A3 1238 # 163 pound sign sign \X00A4 12368 # 164 currency sign sign \X00A5 134568 # 165 yen sign sign \X00A6 4567 # 166 broken bar sign \X00A7 4678 # 167 section sign sign \X00A8 258 # 168 diaeresis sign \X00A9 138 # 169 copyright sign sign \X00AA 278 # 170 feminine ordinal indicator sign \X00AB 2378 # 171 left-pointing double angle quotation mark sign \X00AC 357 # 172 not sign sign \X00AD 78 # 173 soft hyphen sign \X00AE 12358 # 174 registered sign sign \X00AF 458 # 175 macron sign \X00B0 3568 # 176 degree sign sign \X00B1 23578 # 177 plus-minus sign sign \X00B2 237 # 178 superscript two sign \X00B3 257 # 179 superscript three sign \X00B4 6 # 180 acute accent sign \X00B5 1348 # 181 micro sign sign \X00B6 467 # 182 pilcrow sign sign \X00B7 7 # 183 middle dot sign \X00B8 48 # 184 cedilla sign \X00B9 27 # 185 superscript one sign \X00BA 1358 # 186 masculine ordinal indicator sign \X00BB 5678 # 187 right-pointing double angle quotation mark sign \X00BC 34568 # 188 vulgar fraction one quarter sign \X00BD 34567 # 189 vulgar fraction one half sign \X00BE 345678 # 190 vulgar fraction three quarters sign \X00BF 268 # 191 inverted question mark sign \X00C0 1235678 # 192 latin capital letter a with grave sign \X00C1 123567 # 193 latin capital letter a with acute sign \X00C2 1678 # 194 latin capital letter a with circumflex sign \X00C3 12678 # 195 latin capital letter a with tilde sign \X00C4 34578 # 196 latin capital letter a with diaeresis sign \X00C5 167 # 197 latin capital letter a with ring above sign \X00C6 3457 # 198 latin capital letter ae sign \X00C7 1234678 # 199 latin capital letter c with cedilla sign \X00C8 23467 # 200 latin capital letter e with grave sign \X00C9 1234567 # 201 latin capital letter e with acute sign \X00CA 1267 # 202 latin capital letter e with circumflex sign \X00CB 12467 # 203 latin capital letter e with diaeresis sign \X00CC 3478 # 204 latin capital letter i with grave sign \X00CD 347 # 205 latin capital letter i with acute sign \X00CE 1467 # 206 latin capital letter i with circumflex sign \X00CF 124567 # 207 latin capital letter i with diaeresis sign \X00D0 145678 # 208 latin capital letter eth sign \X00D1 1245678 # 209 latin capital letter n with tilde sign \X00D2 34678 # 210 latin capital letter o with grave sign \X00D3 3467 # 211 latin capital letter o with acute sign \X00D4 14567 # 212 latin capital letter o with circumflex sign \X00D5 14678 # 213 latin capital letter o with tilde sign \X00D6 24678 # 214 latin capital letter o with diaeresis sign \X00D7 13468 # 215 multiplication sign sign \X00D8 2467 # 216 latin capital letter o with stroke sign \X00D9 2345678 # 217 latin capital letter u with grave sign \X00DA 234567 # 218 latin capital letter u with acute sign \X00DB 1567 # 219 latin capital letter u with circumflex sign \X00DC 12567 # 220 latin capital letter u with diaeresis sign \X00DD 123467 # 221 latin capital letter y with acute sign \X00DE 124678 # 222 latin capital letter thorn sign \X00DF 2348 # 223 latin small letter sharp s sign \X00E0 123568 # 224 latin small letter a with grave sign \X00E1 12356 # 225 latin small letter a with acute sign \X00E2 168 # 226 latin small letter a with circumflex sign \X00E3 1268 # 227 latin small letter a with tilde sign \X00E4 3458 # 228 latin small letter a with diaeresis sign \X00E5 16 # 229 latin small letter a with ring above sign \X00E6 345 # 230 latin small letter ae sign \X00E7 123468 # 231 latin small letter c with cedilla sign \X00E8 2346 # 232 latin small letter e with grave sign \X00E9 123456 # 233 latin small letter e with acute sign \X00EA 126 # 234 latin small letter e with circumflex sign \X00EB 1246 # 235 latin small letter e with diaeresis sign \X00EC 348 # 236 latin small letter i with grave sign \X00ED 34 # 237 latin small letter i with acute sign \X00EE 146 # 238 latin small letter i with circumflex sign \X00EF 12456 # 239 latin small letter i with diaeresis sign \X00F0 14568 # 240 latin small letter eth sign \X00F1 124568 # 241 latin small letter n with tilde sign \X00F2 3468 # 242 latin small letter o with grave sign \X00F3 346 # 243 latin small letter o with acute sign \X00F4 1456 # 244 latin small letter o with circumflex sign \X00F5 1468 # 245 latin small letter o with tilde sign \X00F6 2468 # 246 latin small letter o with diaeresis sign \X00F7 2567 # 247 division sign sign \X00F8 246 # 248 latin small letter o with stroke sign \X00F9 234568 # 249 latin small letter u with grave sign \X00FA 23456 # 250 latin small letter u with acute sign \X00FB 156 # 251 latin small letter u with circumflex sign \X00FC 1256 # 252 latin small letter u with diaeresis sign \X00FD 12346 # 253 latin small letter y with acute sign \X00FE 12468 # 254 latin small letter thorn sign \X00FF 12568 # 255 latin small letter y with diaeresis # Added 21.02.2012 sign \x20ac 2678 # Euro-tegn \200 sign \x201a 67 # Enkelt nedre anførselstegn \202 sign \x0192 45678 # Liten latinsk bokstav f med krok \203 sign \x200e 0 # left to right marker sign \x200f 0 # right to left marker sign \x201e 3567 # Dobbelt nedre anførselstegn \204 sign \x2026 37 # Horisontal ellipse (tre prikker) \205 sign \x2020 47 # Dagger \206 sign \x2021 457 # Dobbel dagger \207 sign \x02c6 468 # Liten cirkumfleks (over bokstav) \210 sign \x2030 4568 # Promille-tegn \211 sign \x0160 15678 # Stor latinsk bokstav S med caron \212 sign \x2039 378 # Enkelt anførselstegn med vinkelen mot venstre \213 sign \x0152 12345678 # Stor latinsk bokstav OE \214 sign \x017d 234678 # Stor latinsk bokstav Z med caron \216 sign \x2018 367 # Enkelt øvre anførselstegn \221 sign \x2019 368 # Enkelt øvre anførselstegn \222 sign \x201c 23567 # Dobbelt øvre anførselstegn \223 sign \x201d 23568 # Dobbelt øvre anførselstegn \224 sign \x2022 3678 # Kulepunkt \225 sign \x2013 68 # En dash (n-tankestrek) \226 sign \x2014 568 # Em dash (m-tankestrek) \227 sign \x02dc 2568 # Liten tilde (over bokstav) \230 sign \x2122 23458 # Trademark-tegn (varemerke) \231 sign \x0161 1568 # Liten latinsk bokstav s med caron \232 sign \x203a 678 # Enkelt anførselstegn med vinkelen mot høyre \233 sign \x0153 1234568 # Liten latinsk bokstav oe \234 sign \x017e 23468 # Liten latinsk bokstav z med caron \236 sign \x0178 125678 # Stor latinsk bokstav Y med trema \237 liblouis-2.5.3/tables/ckb-translation.cti0000664000175000017500000000644512161041546015345 00000000000000# # Copyright (C) 2011 by Peter Engström # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ----------------------------------------------------------------------------- # # SORANI (KURDISH) # ================ # Author: Peter Engström # Company: Index Braille # # Date: Note: # 2011-02-08 Renamed _translation_ar-g1.ctb and changed first line to access this file. # Peter Engström, Index Braille. # 2011-03-15 Updated by Peter Engström # # --------------------------------------------------------------------------------------- always \x0644\x0627 123-1 #[Peter Engström 2011-02-08] always \x0640\x0640\x0640\x064F 136 always \x0640\x0640\x0640\x064B 23 always \x0640\x0640\x0640\x064C 26 include countries.cti #undefined 123456 # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign capsign 6 begcaps 6-6 endcaps 6-3 begital 46 endital 46-46 begbold 456 endbold 456-456 begcomp 456-346 endcomp 456-156 # the decimal digits include litdigits6Dots.uti # Letters are defined in en-chardefs # punctuation prepunc ) 356 postpunc ( 236 prepunc " 236 #[Peter Engström 2011-03-15] postpunc " 236 #[Peter Engström 2011-03-15] prepunc ' 3 #[Peter Engström 2011-03-15] postpunc ' 3 #[Peter Engström 2011-03-15] word 'em = word 'tis = word 'twas = begnum # 3456 print number sign before number #[Peter Engström 2011-03-15] midnum , 46 postpunc , 46 decpoint . 46 midnum - 36 hyphen - 36 #capsnocont postpunc . 256 postpunc ; 5 #[Peter Engström 2011-03-15] midnum : 5-2 #[Peter Engström 2011-03-15] postpunc : 5-2 #[Peter Engström 2011-03-15] postpunc ! 235 midnum / 34 always / 34 #always < 0-135-0 #[Peter Engström 2011-03-15] # always > 0-246-0 postpunc ? 1456 #[Peter Engström 2011-03-15] endnum % 1234 #[Peter Engström 2011-03-15] midnum ^ 346 #[Peter Engström 2011-03-15] always ^ 45 #[Peter Engström 2011-03-15] always ~ 45 always & 12346 #[Peter Engström 2011-03-15] midnum * 16 #[Peter Engström 2011-03-15] always * 16 #[Peter Engström 2011-03-15] always [ 13456 #[Peter Engström 2011-03-15] always ] 12346 #[Peter Engström 2011-03-15] always { 135 #[Peter Engström 2011-03-15] always } 246 #[Peter Engström 2011-03-15] prepunc ` 6-236 always @ 4 always \\ 1256 #[Peter Engström 2011-03-15] always | 1245 always ... 3-3-3 always .\s.\s. 3-3-3 . . . always $ 1246 #[Peter Engström 2011-03-15] # special character sequences compbrl :// URLs compbrl www. compbrl .com compbrl .edu compbrl .gov compbrl .mil compbrl .net compbrl .org compbrl .doc compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip liblouis-2.5.3/tables/as.ctb0000664000175000017500000000167212161041546012643 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Assamese include bengali.cti include text_nabcc.dis liblouis-2.5.3/tables/no-no-generic.dis0000664000175000017500000003242112161041546014703 00000000000000# File: no-no-generic.dis # Useful for printing with embossers with German or Euro braille # braille tables. # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # This is to be used with Norwegian translation tables. # BRLTTY Text Translation Table - Generic Norwegian (iso-8859-1), with some # unofficial character representations to accommodate multilingual usage. # For example, numbers are represented with dot 6 rather than with dot 8. # display \X0000 4578 # 000 null # display \X0000 0 # 000 null display \X0001 178 # 001 start of heading display \X0002 1278 # 002 start of text display \X0003 1478 # 003 end of text display \X0004 14578 # 004 end of transmission display \X0005 1578 # 005 enquiry display \X0006 12478 # 006 acknowledge display \X0007 124578 # 007 bell display \X0008 12578 # 008 backspace # display \X0009 2478 # 009 horizontal tabulation # display \X000A 24578 # 010 line feed # display \X000B 1378 # 011 vertical tabulation # display \X000C 12378 # 012 form feed # display \X000D 13478 # 013 carriage return display \X000E 134578 # 014 shift out display \X000F 13578 # 015 shift in display \X0010 123478 # 016 data link escape display \X0011 1234578 # 017 device control one display \X0012 123578 # 018 device control two display \X0013 23478 # 019 device control three display \X0014 234578 # 020 device control four display \X0015 13678 # 021 negative acknowledge display \X0016 123678 # 022 synchronous idle display \X0017 245678 # 023 end of transmission block display \X0018 134678 # 024 cancel display \X0019 1345678 # 025 end of medium display \X001A 135678 # 026 substitute display \X001B 1235678 # 027 escape display \X001C 3478 # 028 file separator display \X001D 2345678 # 029 group separator display \X001E 234678 # 030 record separator display \X001F 45678 # 031 unit separator # display \X0020 0 # 032 space display \X0021 5 # exclamation mark display \X0022 4 # quotation mark display \X0023 3456 # 033 number sign display \X0024 46 # 034 dollar sign display \X0025 123456 # 035 percent sign display \X0026 12346 # 036 ampersand display \X0027 6 # 037 apostrophe display \X0028 236 # 038 left parenthesis display \X0029 356 # 039 right parenthesis display \X002A 35 # 040 asterisk display \X002B 235 # 041 plus sign display \X002C 2 # 042 comma display \X002D 36 # 043 hyphen-minus display \X002E 3 # 044 full stop display \X002F 256 # 045 solidus display \X0030 346 # 046 digit zero display \X0031 16 # 047 digit one display \X0032 126 # 048 digit two display \X0033 146 # 049 digit three display \X0034 1456 # 050 digit four display \X0035 156 # 051 digit five display \X0036 1246 # 052 digit six display \X0037 12456 # 053 digit seven display \X0038 1256 # 054 digit eight display \X0039 246 # 055 digit nine display \X003A 25 # 056 colon display \X003B 23 # 057 semicolon display \X003C 56 # 058 less-than sign display \X003D 2356 # 059 equals sign display \X003E 45 # 060 greater-than sign display \X003F 26 # 061 question mark display \X0040 3457 # 062 commercial at display \X0041 17 # 063 latin capital letter a display \X0042 127 # 064 latin capital letter b display \X0043 147 # 065 latin capital letter c display \X0044 1457 # 066 latin capital letter d display \X0045 157 # 067 latin capital letter e display \X0046 1247 # 068 latin capital letter f display \X0047 12457 # 069 latin capital letter g display \X0048 1257 # 070 latin capital letter h display \X0049 247 # 071 latin capital letter i display \X004A 2457 # 072 latin capital letter j display \X004B 137 # 073 latin capital letter k display \X004C 1237 # 074 latin capital letter l display \X004D 1347 # 075 latin capital letter m display \X004E 13457 # 076 latin capital letter n display \X004F 1357 # 077 latin capital letter o display \X0050 12347 # 078 latin capital letter p display \X0051 123457 # 079 latin capital letter q display \X0052 12357 # 080 latin capital letter r display \X0053 2347 # 081 latin capital letter s display \X0054 23457 # 082 latin capital letter t display \X0055 1367 # 083 latin capital letter u display \X0056 12367 # 084 latin capital letter v display \X0057 24567 # 085 latin capital letter w display \X0058 13467 # 086 latin capital letter x display \X0059 134567 # 087 latin capital letter y display \X005A 13567 # 088 latin capital letter z display \X005B 123567 # 089 left square bracket display \X005C 347 # 090 reverse solidus display \X005D 234567 # 091 right square bracket display \X005E 23467 # 092 circumflex accent display \X005F 456 # 093 low line display \X0060 345 # 094 grave accent display \X0061 1 # 095 latin small letter a display \X0062 12 # 096 latin small letter b display \X0063 14 # 097 latin small letter c display \X0064 145 # 098 latin small letter d display \X0065 15 # 099 latin small letter e display \X0066 124 # 100 latin small letter f display \X0067 1245 # 101 latin small letter g display \X0068 125 # 102 latin small letter h display \X0069 24 # 103 latin small letter i display \X006A 245 # 104 latin small letter j display \X006B 13 # 105 latin small letter k display \X006C 123 # 106 latin small letter l display \X006D 134 # 107 latin small letter m display \X006E 1345 # 108 latin small letter n display \X006F 135 # 109 latin small letter o display \X0070 1234 # 110 latin small letter p display \X0071 12345 # 111 latin small letter q display \X0072 1235 # 112 latin small letter r display \X0073 234 # 113 latin small letter s display \X0074 2345 # 114 latin small letter t display \X0075 136 # 115 latin small letter u display \X0076 1236 # 116 latin small letter v display \X0077 2456 # 117 latin small letter w display \X0078 1346 # 118 latin small letter x display \X0079 13456 # 119 latin small letter y display \X007A 1356 # 120 latin small letter z display \X007B 12356 # 121 left curly bracket display \X007C 34 # 122 vertical line display \X007D 23456 # 123 right curly bracket display \X007E 2346 # 124 tilde display \X007F 4568 # 125 delete display \X0080 2367 # 126 display \X0081 568 # 127 display \X0082 367 # 128 break permitted here display \X0083 23678 # 129 no break here display \X0084 235678 # 130 display \X0085 12458 # 131 next line display \X0086 1238 # 132 start of selected area display \X0087 1234567 # 133 end of selected area display \X0088 12345678 # 134 character tabulation set display \X0089 678 # 135 character tabulation with justification display \X008A 1234678 # 136 line tabulation set display \X008B 3568 # 137 partial line down display \X008C 15678 # 138 partial line up display \X008D 34678 # 139 reverse line feed display \X008E 78 # 140 single shift two display \X008F 2578 # 141 single shift three display \X0090 23567 # 142 device control string display \X0091 1348 # 143 private use one display \X0092 24568 # 144 private use two display \X0093 23468 # 145 set transmit state display \X0094 23578 # 146 cancel character display \X0095 4567 # 147 message waiting display \X0096 1234568 # 148 start of guarded area display \X0097 368 # 149 end of guarded area display \X0098 13568 # 150 start of string display \X0099 3678 # 151 display \X009A 345678 # 152 single character introducer display \X009B 578 # 153 control sequence introducer display \X009C 8 # 154 string terminator display \X009D 4678 # 155 operating system command display \X009E 13468 # 156 privacy message display \X009F 1248 # 157 application program command display \X00A0 478 # 158 no-break space display \X00A1 58 # 159 inverted exclamation mark display \X00A2 258 # 160 cent sign display \X00A3 34568 # 161 pound sign display \X00A4 34567 # 162 currency sign display \X00A5 145678 # 163 yen sign display \X00A6 348 # 164 broken bar display \X00A7 12368 # 165 section sign display \X00A8 7 # 166 diaeresis display \X00A9 148 # 167 copyright sign display \X00AA 37 # 168 feminine ordinal indicator display \X00AB 47 # 169 left-pointing double angle quotation mark display \X00AC 67 # 170 not sign display \X00AD 38 # 171 soft hyphen display \X00AE 12358 # 172 registered sign display \X00AF 23568 # 173 macron display \X00B0 1245678 # 174 degree sign display \X00B1 12348 # 175 plus-minus sign display \X00B2 3578 # 176 superscript two display \X00B3 14678 # 177 superscript three display \X00B4 124678 # 178 acute accent display \X00B5 12678 # 179 micro sign display \X00B6 123458 # 180 pilcrow sign display \X00B7 378 # 181 middle dot display \X00B8 35678 # 182 cedilla display \X00B9 5678 # 183 superscript one display \X00BA 68 # 184 masculine ordinal indicator display \X00BB 48 # 185 right-pointing double angle quotation mark display \X00BC 257 # 186 vulgar fraction one quarter display \X00BD 1458 # 187 vulgar fraction one half display \X00BE 13458 # 188 vulgar fraction three quarters display \X00BF 268 # 189 inverted question mark display \X00C0 57 # 190 latin capital letter a with grave display \X00C1 27 # 191 latin capital letter a with acute display \X00C2 167 # 192 latin capital letter a with circumflex display \X00C3 1467 # 193 latin capital letter a with tilde display \X00C4 567 # 194 latin capital letter a with diaeresis display \X00C5 1678 # 195 latin capital letter a with ring above display \X00C6 34578 # 196 latin capital letter ae display \X00C7 123467 # 197 latin capital letter c with cedilla display \X00C8 467 # 198 latin capital letter e with grave display \X00C9 2678 # 199 latin capital letter e with acute display \X00CA 1567 # 200 latin capital letter e with circumflex display \X00CB 12467 # 201 latin capital letter e with diaeresis display \X00CC 237 # 202 latin capital letter i with grave display \X00CD 2378 # 203 latin capital letter i with acute display \X00CE 457 # 204 latin capital letter i with circumflex display \X00CF 357 # 205 latin capital letter i with diaeresis display \X00D0 2567 # 206 latin capital letter eth display \X00D1 124567 # 207 latin capital letter n with tilde display \X00D2 267 # 208 latin capital letter o with grave display \X00D3 1267 # 209 latin capital letter o with acute display \X00D4 14567 # 210 latin capital letter o with circumflex display \X00D5 2357 # 211 latin capital letter o with tilde display \X00D6 2467 # 212 latin capital letter o with diaeresis display \X00D7 1258 # 213 multiplication sign display \X00D8 24678 # 214 latin capital letter o with stroke display \X00D9 125678 # 215 latin capital letter u with grave display \X00DA 278 # 216 latin capital letter u with acute display \X00DB 3467 # 217 latin capital letter u with circumflex display \X00DC 12567 # 218 latin capital letter u with diaeresis display \X00DD 25678 # 219 latin capital letter y with acute display \X00DE 23458 # 220 latin capital letter thorn display \X00DF 2348 # 221 latin small letter sharp s display \X00E0 123568 # 222 latin small letter a with grave display \X00E1 28 # 223 latin small letter a with acute display \X00E2 138 # 224 latin small letter a with circumflex display \X00E3 1468 # 225 latin small letter a with tilde display \X00E4 18 # 226 latin small letter a with diaeresis display \X00E5 168 # 227 latin small letter a with ring above display \X00E6 3458 # 228 latin small letter ae display \X00E7 123468 # 229 latin small letter c with cedilla display \X00E8 468 # 230 latin small letter e with grave display \X00E9 158 # 231 latin small letter e with acute display \X00EA 1568 # 232 latin small letter e with circumflex display \X00EB 12468 # 233 latin small letter e with diaeresis display \X00EC 238 # 234 latin small letter i with grave display \X00ED 128 # 235 latin small letter i with acute display \X00EE 458 # 236 latin small letter i with circumflex display \X00EF 248 # 237 latin small letter i with diaeresis display \X00F0 2568 # 238 latin small letter eth display \X00F1 124568 # 239 latin small letter n with tilde display \X00F2 1358 # 240 latin small letter o with grave display \X00F3 1268 # 241 latin small letter o with acute display \X00F4 14568 # 242 latin small letter o with circumflex display \X00F5 2358 # 243 latin small letter o with tilde display \X00F6 358 # 244 latin small letter o with diaeresis display \X00F7 2458 # 245 division sign display \X00F8 2468 # 246 latin small letter o with stroke display \X00F9 2368 # 247 latin small letter u with grave display \X00FA 1368 # 248 latin small letter u with acute display \X00FB 3468 # 249 latin small letter u with circumflex display \X00FC 12568 # 250 latin small letter u with diaeresis display \X00FD 134568 # 251 latin small letter y with acute display \X00FE 3567 # 252 latin small letter thorn display \X00FF 234568 # 253 latin small letter y with diaeresis liblouis-2.5.3/tables/de-eurobrl6u.dis0000664000175000017500000000405112161041546014554 00000000000000# liblouis: "Upshifted" German Eurobraille Display Table # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # "Upshifted" Version of EUROBRAILLE # # This "upshifted" version of de-eurobrl6.dis # is (sometimes) being used in Switzerland. # # Version 2009-11-19 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- display \s 0 display A 1 display B 12 display C 14 display D 145 display E 15 display F 124 display G 1245 display H 125 display I 24 display J 245 display K 13 display L 123 display M 134 display N 1345 display O 135 display P 1234 display Q 12345 display R 1235 display S 234 display T 2345 display U 136 display V 1236 display X 1346 display Y 13456 display Z 1356 display & 12346 display % 123456 display [ 12356 display ^ 2346 display ] 23456 display 1 16 display 2 126 display 3 146 display 4 1456 display 5 156 display 6 1246 display 7 12456 display 8 1256 display 9 246 display W 2456 display , 2 display ; 23 display : 25 display / 256 display ? 26 display + 235 display = 2356 display ( 236 display * 35 display ) 356 display . 3 display - 36 display \\ 34 display 0 346 display @ 345 display # 3456 display " 4 display ! 5 display > 45 display $ 46 display _ 456 display < 56 display ' 6 liblouis-2.5.3/tables/es-new.dis0000664000175000017500000001525512161041546013447 00000000000000# ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # Copyright (c) 2010 by DocArch . # ---------------------------------------------------------------------------------------------- display \x0020 0 # \x2800 display \x00A0 a display \x000A 1 # a \x2801 display \x002C 2 # , \x2802 display \x000B 12 # b \x2803 display \x002E 3 # . \x2804 display \x006B 13 # k \x2805 display \x003B 23 # ; \x2806 display \x006C 123 # l \x2807 display \x0027 4 # ' \x2808 display \x0063 14 # c \x2809 display \x0069 24 # i \x280A display \x0066 124 # f \x280B display \x00ED 34 # í \x280C display \x006D 134 # m \x280D display \x0073 234 # s \x280E display \x0070 1234 # p \x280F display \x0040 5 # @ \x2810 display \x000E 15 # e \x2811 display \x003A 25 # : \x2812 display \x0068 125 # h \x2813 display \x007D 35 # } \x2814 display \x006F 135 # o \x2815 display \x002B 235 # + \x2816 display \x0072 1235 # r \x2817 display \x005E 45 # ^ \x2818 display \x0064 145 # d \x2819 display \x006A 245 # j \x281A display \x0067 1245 # g \x281B display \x00CC 345 # ÃŒ \x281C display \x006E 1345 # n \x281D display \x0074 2345 # t \x281E display \x0071 12345 # q \x281F display \x005F 6 # _ \x2820 display \x0031 16 # 1 \x2821 display \x003F 26 # ? \x2822 display \x0032 126 # 2 \x2823 display \x002D 36 # - \x2824 display \x0075 136 # u \x2825 display \x003C 236 # < \x2826 display \x0076 1236 # v \x2827 display \x007B 46 # { \x2828 display \x0033 146 # 3 \x2829 display \x0039 246 # 9 \x282A display \x0036 1246 # 6 \x282B display \x00F3 346 # ó \x282C display \x0078 1346 # x \x282D display \x00E9 2346 # é \x282E display \x0026 12346 # & \x282F display \x0022 56 # " \x2830 display \x0005 156 # 5 \x2831 display \x002A 256 # * \x2832 display \x0008 1256 # 8 \x2833 display \x003E 356 # > \x2834 display \x007A 1356 # z \x2835 display \x003D 2356 # = \x2836 display \x00E1 12356 # á \x2837 display \x0025 456 # % \x2838 display \x0034 1456 # 4 \x2839 display \x0077 2456 # w \x283A display \x0037 12456 # 7 \x283B display \x0023 3456 # # \x283C display \x0079 13456 # y \x283D display \x00FA 23456 # ú \x283E display \x005C 123456 # \ \x283F display \x2840 7 display \x2841 17 display \x2842 27 display \x2843 127 display \x2844 37 display \x2845 137 display \x2846 237 display \x2847 1237 display \x2848 47 display \x2849 147 display \x284A 247 display \x284B 1247 display \x284C 347 display \x284D 1347 display \x284E 2347 display \x284F 12347 display \x2850 57 display \x2851 157 display \x2852 257 display \x2853 1257 display \x2854 357 display \x2855 1357 display \x2856 2357 display \x2857 12357 display \x2858 457 display \x2859 1457 display \x285A 2457 display \x285B 12457 display \x285C 3457 display \x285D 13457 display \x285E 23457 display \x285F 123457 display \x2860 67 display \x2861 167 display \x2862 267 display \x2863 1267 display \x2864 367 display \x2865 1367 display \x2866 2367 display \x2867 12367 display \x2868 467 display \x2869 1467 display \x286A 2467 display \x286B 12467 display \x286C 3467 display \x286D 13467 display \x286E 23467 display \x286F 123467 display \x2870 567 display \x2871 1567 display \x2872 2567 display \x2873 12567 display \x2874 3567 display \x2875 13567 display \x2876 23567 display \x2877 123567 display \x2878 4567 display \x2879 14567 display \x287A 24567 display \x287B 124567 display \x287C 34567 display \x287D 134567 display \x287E 234567 display \x287F 1234567 display \x2880 8 display \x2881 18 display \x2882 28 display \x2883 128 display \x2884 38 display \x2885 138 display \x2886 238 display \x2887 1238 display \x2888 48 display \x2889 148 display \x288A 248 display \x288B 1248 display \x288C 348 display \x288D 1348 display \x288E 2348 display \x288F 12348 display \x2890 58 display \x2891 158 display \x2892 258 display \x2893 1258 display \x2894 358 display \x2895 1358 display \x2896 2358 display \x2897 12358 display \x2898 458 display \x2899 1458 display \x289A 2458 display \x289B 12458 display \x289C 3458 display \x289D 13458 display \x289E 23458 display \x289F 123458 display \x28A0 68 display \x28A1 168 display \x28A2 268 display \x28A3 1268 display \x28A4 368 display \x28A5 1368 display \x28A6 2368 display \x28A7 12368 display \x28A8 468 display \x28A9 1468 display \x28AA 2468 display \x28AB 12468 display \x28AC 3468 display \x28AD 13468 display \x28AE 23468 display \x28AF 123468 display \x28B0 568 display \x28B1 1568 display \x28B2 2568 display \x28B3 12568 display \x28B4 3568 display \x28B5 13568 display \x28B6 23568 display \x28B7 123568 display \x28B8 4568 display \x28B9 14568 display \x28BA 24568 display \x28BB 124568 display \x28BC 34568 display \x28BD 134568 display \x28BE 234568 display \x28BF 1234568 display \x28C0 78 display \x28C1 178 display \x28C2 278 display \x28C3 1278 display \x28C4 378 display \x28C5 1378 display \x28C6 2378 display \x28C7 12378 display \x28C8 478 display \x28C9 1478 display \x28CA 2478 display \x28CB 12478 display \x28CC 3478 display \x28CD 13478 display \x28CE 23478 display \x28CF 123478 display \x28D0 578 display \x28D1 1578 display \x28D2 2578 display \x28D3 12578 display \x28D4 3578 display \x28D5 13578 display \x28D6 23578 display \x28D7 123578 display \x28D8 4578 display \x28D9 14578 display \x28DA 24578 display \x28DB 124578 display \x28DC 34578 display \x28DD 134578 display \x28DE 234578 display \x28DF 1234578 display \x28E0 678 display \x28E1 1678 display \x28E2 2678 display \x28E3 12678 display \x28E4 3678 display \x28E5 13678 display \x28E6 23678 display \x28E7 123678 display \x28E8 4678 display \x28E9 14678 display \x28EA 24678 display \x28EB 124678 display \x28EC 34678 display \x28ED 134678 display \x28EE 234678 display \x28EF 1234678 display \x28F0 5678 display \x28F1 15678 display \x28F2 25678 display \x28F3 125678 display \x28F4 35678 display \x28F5 135678 display \x28F6 235678 display \x28F7 1235678 display \x28F8 45678 display \x28F9 145678 display \x28FA 245678 display \x28FB 1245678 display \x28FC 345678 display \x28FD 1345678 display \x28FE 2345678 display \x28FF 12345678 # ----------------------------------------------------------------------------------------------liblouis-2.5.3/tables/ru-ru.dis0000664000175000017500000001643712161041546013326 00000000000000# Russian display codes # by Mike Sivill # # Based on the document from Mus�e national de l'Espéranto à Gray # "Maison pour tous", 19 rue Victor Hugo 70100 GRAY # esperanto-muzeo@wanadoo.fr # # Updated and corrected for LibLouis and 6-dot Braille by # Aaron Cannon # with kind assistance from the members of # The International league of Blind Esperantists (LIBE) # http://libe.narzan.com/ # July 7, 2012 # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . include braille-patterns.cti numsign 3456 number sign capsign 46 begcaps 46-46 endcaps 46-3 space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation ' 3 APOSTROPHE punctuation ( 2356 LEFT PARENTHESIS punctuation ) 2356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 26 QUESTION MARK punctuation " 236 prepunc " 236 postpunc " 356 include digits6Dots.uti # define w prior to the included definition so that it is overwridden. uplow Ww 23456 include latinLetterDef6Dots.uti uplow Ĉĉ 146 LATIN LETTER C WITH CIRCUMFLEX uplow ÄœÄ 12456 LATIN LETTER G WITH CIRCUMFLEX uplow Ĥĥ 1256 LATIN LETTER H WITH CIRCUMFLEX uplow Ĵĵ 2456 LATIN LETTER J WITH CIRCUMFLEX uplow ŜŠ2346 LATIN LETTER S WITH CIRCUMFLEX uplow Ŭŭ 346 LATIN LETTER U WITH BREVE punctuation \x00a0 0 NO-BREAK SPACE liblouis-2.5.3/tables/pt-pt-g2.ctb0000664000175000017500000005206712161041546013616 00000000000000# liblouis: Portuguese Grade 2 Braille Contraction Table # # Copyright (C) 2009 Carlos Ferreira # # This file is part of liblouis. # liblouis is free software: you can redistribute it and/or modify it # under the terms of the Lesser GNU General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # liblouis 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 Lesser # GNU General Public License for more details. # You should have received a copy of the Lesser GNU General Public # License along with liblouis. If not, see # . include pt-pt-g1.utb word actividade 1-2345-1236-145 word actividades 1-2345-1236-145-234 word agora 1245 midword airr 1-24-1235-1235 endword al 13 begmidword alb 13-12 begmidword alc 13-14 midword alcont 13-25-2345 begmidword ald 13-145 endword aldade 13-46-145 endword aldades 13-46-145-234 begmidword alf 13-124 begmidword alfr 13-16 begmidword alg 13-1245 word algum 1-1245 word alguma 1-1245-1 word algumas 1-1245-146 word alguns 1-1245-234 word aliás 1-12356 begmidword alj 13-245 begmidword alm 13-134 endword almente 13-56-134 midword aln 13-1345 begmidword alp 13-1234 begmidword alqu 13-12345 midword alr 13-1235 begmidword als 13-234 begmidword alt 13-2345 begmidword altr 13-356 begmidword alv 13-1236 begmidword alz 13-1356 begmidword alç 13-12346 word além 1-123456 begmidword amb 345-12 begmidword ambr 345-23 begmidword amp 345-1234 begmidword ampl 345-1246 midword ampr 345-235 begmidword anc 2-14 begmidword and 2-145 endword andade 2-46-145 endword andades 2-46-145-234 begmidword anf 2-124 begmidword anfr 2-16 begmidword ang 2-1245 begmidword angr 2-12456 begmidword anj 2-245 begmidword anqu 2-12345 begmidword ans 2-234 begmidword ant 2-2345 word ante 2456 begword ante 2456 endword ante 2456 word antes 2456-234 endword antes 2456-234 endword anticamente 2-5-2345-56-134 begmidword antr 2-356 begmidword anz 2-1356 midword anç 2-12346 word apenas 1-1234-1345 word aquela 1-12345-1 word aquelas 1-12345-146 word aquele 1-12345-15 word aqueles 1-12345-156 endword ar 4 midword arb 4-12 midword arc 4-14 midword ard 4-145 midword arf 4-124 midword arg 4-1245 endword arica 1-5-1235 endword aricamente 1-5-1235-56-134 endword aricas 1-5-1235-234 endword arico 1-4-1235 endword aricos 1-4-1235-234 midword arj 4-245 midword arl 4-123 midword arm 4-134 endword armente 4-56-134 midword arn 4-1345 midword arp 4-1234 midword arqu 4-12345 midword arr 4-1235 endword arrica 4-5-1235 endword arricas 4-5-1235-234 endword arrico 1-1235-4-1235 endword arricos 1-1235-4-1235-234 midword ars 4-234 midword art 4-2345 midword artr 4-356 midword arv 4-1236 midword arx 4-1346 midword arz 4-1356 midword arç 4-12346 word as 146 endword as 146 midword asb 146-12 begmidword asc 146-14 midword asconc 146-25-14 begword asd 146-145 begmidword asf 146-124 midword asg 146-1245 midword asl 146-123 begmidword asm 146-134 endword asmente 146-56-134 begmidword asn 146-1345 begmidword asp 146-1234 begmidword asqu 146-12345 begmidword ass 146-234 begmidword ast 146-2345 endword astica 146-5-2345 endword asticamente 146-5-2345-56-134 endword asticas 146-5-2345-234 endword astico 146-4-2345 begmidword astr 146-356 midword asç 146-12346 word através 1-356-1236 word base 12-15 word bases 12-156 word bem 12 word bens 12-234 begmidword br 23 word braille 23-123 word cada 14-145 word campo 14-135 word campos 14-13456 word capaz 14-1356 word capazes 14-1356-234 word casa 14-234-1 word casas 14-234-146 word caso 14-234 word casos 14-234-234 word cega 14-1245-1 word cegas 14-1245-146 word cego 14-1245 word cegos 14-1245-234 word coisa 14-1 word coisas 14-146 word com 14 word como 14-134 begmidword conc 25-14 begmidword cond 25-145 word condições 25-145-234 word condição 25-145 begmidword conf 25-124 begmidword confr 25-16 begmidword cong 25-1245 begmidword congr 25-12456 begmidword conj 25-245 begmidword conl 25-123 begword conn 25-1345 begmidword conqu 25-12345 begmidword cons 25-234 begmidword cont 25-2345 begmidword contr 25-356 begmidword conv 25-1236 word corpo 14-1234 word corpos 14-1234-234 endword dade 46-145 endword dades 46-145-234 word de 145 word depois 145-1234 word desde 145-145 word deseja 145-245-1 word desejas 145-245-146 word desejo 145-245 word desejos 145-245-234 begword dextr 145-1346-356 word diferente 145-124-1235-2345 word diferentes 145-124-1235-2345-234 word diferença 145-124-1235 word diferenças 145-124-1235-234 word dificuldade 145-124-145 word dificuldades 145-124-145-234 word difíceis 145-124-234 word difícil 145-124 word diversa 145-1236-1 word diversas 145-1236-146 word diverso 145-1236 word diversos 145-1236-234 word efeito 15-124 word efeitos 15-124-234 word eira 5-15 endword eira 5-15 endword eiramente 5-15-56-134 word eiras 5-15-234 endword eiras 5-15-234 endword eiro 4-15 endword eiros 4-15-234 word ele 123 word eles 123-234 endword em 256 begmidword emb 256-12 word embora 256-12 begmidword embr 256-23 begmidword emp 256-1234 begmidword empl 256-1246 begmidword empr 256-235 begmidword enc 26-14 begmidword encontr 26-25-356 word encontrem 26-25-356-15-134 begmidword end 26-145 begmidword enf 26-124 begmidword enfr 26-16 begmidword eng 26-1245 begmidword engr 26-12456 begmidword enj 26-245 begmidword enl 26-123 begmidword enqu 26-12345 word enquanto 26-12345-2345 begmidword enr 26-1235 always ens 26-234 begmidword ent 26-2345 endword entica 26-5-2345 endword enticamente 26-5-2345-56-134 endword enticas 26-5-2345-234 endword entico 26-4-2345 begmidword entr 26-356 word entre 26-15 word entrem 26-356-15-134 begmidword env 26-1236 begmidword enx 26-1346 begmidword enz 26-1356 midword enç 26-12346 midword erb 236-12 midword erc 236-14 midword ercont 236-25-2345 midword ercontr 236-25-356 midword erd 236-145 endword erdade 236-46-145 endword erdades 236-46-145-234 midword erf 236-124 midword erg 236-1245 endword erica 15-5-1235 endword ericamente 15-5-1235-56-134 endword ericas 15-5-1235-234 endword erico 15-4-1235 endword ericos 15-4-1235-234 midword erj 236-245 midword erl 236-123 midword erm 236-134 endword ermenta 236-5-134 endword ermentas 236-5-134-234 endword ermento 236-4-134 endword ermentos 236-4-134-234 midword ern 236-1345 midword erp 236-1234 midword erpl 236-1246 midword erpr 236-235 midword erqu 236-12345 midword err 236-1235 midword ers 236-234 midword ert 236-2345 midword erv 236-1236 midword erx 236-1346 midword erz 236-1356 midword erç 236-12346 endword es 156 begmidword esb 156-12 begmidword esbr 156-23 begmidword esc 156-14 midword esconc 156-25-14 begmidword escond 156-25-145 midword esconf 156-25-124 midword escong 156-25-1245 begmidword esconj 156-25-245 midword escons 156-25-234 midword escont 156-25-2345 midword escontr 156-25-356 midword esconv 156-25-1236 midword esd 156-145 begmidword esf 156-124 begmidword esfr 156-16 begmidword esg 156-1245 begmidword esgr 156-12456 begmidword esl 156-123 begmidword esm 156-134 endword esmente 156-56-134 midword esn 156-1345 begmidword esp 156-1234 word especiais 15-14-2346 word especial 15-14-123 word especialmente 15-14-123-134 begmidword espl 156-1246 begmidword espr 156-235 word espécie 15-14 word espécies 15-14-234 begmidword esqu 156-12345 begmidword ess 156-234 begmidword est 156-2345 word esta 15-1 word estas 15-146 word este 15-15 word estes 15-156 endword estica 156-5-2345 endword esticamente 156-5-2345-56-134 endword esticas 156-5-2345-234 endword estico 156-4-2345 endword esticos 156-4-2345-234 begmidword estr 156-356 begmidword esv 156-1236 midword esç 156-12346 endword eu 5 midword eub 5-12 midword euc 5-14 midword eud 5-145 midword euf 5-124 midword eug 5-1245 midword euj 5-245 midword eul 5-123 midword eum 5-134 midword eun 5-1345 midword eup 5-1234 midword euqu 5-12345 midword eur 5-1235 midendword eus 5-234 midword eut 5-2345 midword eutr 5-356 midword euv 5-1236 word evidência 15-1236-14 word evidências 15-1236-14-234 begword exc 1346-14 *1 word exemplo 15-1246 word exemplos 15-1246-234 begword exp 1346-1234 *2 word experiência 1346-1234-14 word experiências 1346-1234-14-234 begword expl 1346-1246 *3 begword expr 1346-235 *4 begmidword ext 1346-2345 begmidword extr 1346-356 word facto 124-2345 word factos 124-2345-234 word fica 5-124 endword fica 5-124 endword ficamente 5-124-56-134 word ficas 5-124-234 endword ficas 5-124-234 word fico 4-124 endword fico 4-124 endword ficos 4-124-234 word filha 124-125-1 word filhas 124-125-146 word filho 124-125 word filhos 124-125-234 word fim 124 word fins 124-234 word fora 124-1 word forma 124-134 word formas 124-134-234 word formações 124-134-12346-234 word formação 124-134-12346 word força 124-135 word forças 124-135-234 begmidword fr 16 midword frâ 124-1235-16 word fáceis 124-14-234 word fácil 124-14 word fundamentais 124-145-134-2345-2346 word fundamental 124-145-134-2345-123 endword gica 5-1245 endword gicamente 5-1245-56-134 endword gicas 5-1245-234 endword gico 4-1245 endword gicos 4-1245-234 word governa 1245-1236-1345-1 word governas 1245-1236-1345-146 word governo 1245-1236-1345 word governos 1245-1236-1345-234 begmidword gr 12456 word grupo 12456-1234 word grupos 12456-1234-234 word hoje 125-245 word homem 125-134 word homens 125-134-234 word ideia 24-145 word ideias 24-145-234 endword im 246 begmidword imb 246-12 begmidword imbr 246-23 word imediata 24-134-1 word imediatamente 24-134-134 word imediatas 24-134-146 word imediato 24-134 word imediatos 24-134-234 begmidword imp 246-1234 begmidword impl 246-1246 begmidword impr 246-235 begword inexc 24-1345-1346-14 begword inexp 24-1345-1346-1234 begword inexpl 24-1345-1346-1246 begword inexpr 24-1345-1346-235 begword inext 24-1345-1346-2345 begword inextr 24-1345-1346-356 endword ir 46 midword irb 46-12 midword irc 46-14 midword irg 46-1245 endword irica 24-5-1235 endword iricamente 24-5-1235-56-134 endword iricas 24-5-1235-234 endword irico 24-4-1235 endword iricos 24-4-1235-234 midword irl 46-123 midword irm 46-134 midword irn 46-1345 midword irp 46-1234 midword irr 46-1235 midword irs 46-234 midword irt 46-2345 midword irv 46-1236 endword is 2346 midword isb 2346-12 begmidword isc 2346-14 midword iscond 2346-25-145 midword iscons 2346-25-234 midword isf 2346-124 midword isfr 2346-16 midword isg 2346-1245 midword isj 2346-245 begmidword isl 2346-123 begmidword ism 2346-134 midword isn 2346-1345 midword isp 2346-1234 midword ispl 2346-1246 begmidword isqu 2346-12345 begmidword isr 2346-1235 begmidword iss 2346-234 begmidword ist 2346-2345 endword isticamente 2346-5-2345-56-134 word isto 24-2345 midword istr 2346-356 word jovem 245-1236 word jovens 245-1236-234 word já 245 word juízo 245-1356 word juízos 245-1356-234 word lado 123-145 word lados 123-145-234 midword lh 125 word lhe 125-15 word lhes 125-156 endword loga 5-123 endword logamente 5-123-56-134 endword logas 5-123-234 word logo 4-123 endword logo 4-123 endword logos 4-123-234 word longa 123-1245-1 word longas 123-1245-146 word longo 123-1245 word longos 123-1245-234 word lugar 123-1235 word lugares 123-1235-234 word maior 1235 word maiores 1235-234 word materiais 134-2345-1235-2346 word material 134-2345-1235-123 word matéria 134-2345-1235 word matérias 134-2345-1235-234 word me 134 word melhor 134-1235 word melhores 134-1235-234 word menos 134-1345 word menta 5-134 endword menta 5-134 endword mentas 5-134-234 word mente 56-134 endword mente 56-134 word mentes 56-134-234 endword mentes 56-134-234 word mento 4-134 endword mento 4-134 word mentos 4-134-234 endword mentos 4-134-234 word moda 134-145-1 word modas 134-145-146 word modo 134-145 word modos 134-145-234 word movimenta 134-1236-134-2345-1 word movimentas 134-1236-134-2345-146 word movimento 134-1236-134-2345 word movimentos 134-1236-134-2345-234 word muita 134-2345-1 word muitas 134-2345-146 word muito 134-2345 word muitos 134-2345-234 word mulher 134-125 word mulheres 134-125-234 word número 1345-1235 word números 1345-1235-234 word nada 1345-145 word nadas 1345-145-234 word naturais 1345-2345-2346 word natural 1345-2345-123 word natureza 1345-2345-1356 word naturezas 1345-2345-1356-234 word necessariamente 1345-14-1235-134 word necessidade 1345-14-145 word necessidades 1345-14-145-234 word necessária 1345-14-1235-1 word necessárias 1345-14-1235-146 word necessário 1345-14-1235 word necessários 1345-14-1235-234 word nenhum 1345-1345 word nenhuma 1345-1345-1 word nenhumas 1345-1345-146 word nenhuns 1345-1345-234 midword nh 2356 word nica 5-1345 endword nica 5-1345 endword nicamente 5-1345-56-134 word nicas 5-1345-234 endword nicas 5-1345-234 word nico 4-1345 endword nico 4-1345 word nicos 4-1345-234 endword nicos 4-1345-234 word não 1345 word nossa 1345-234-1 word nossas 1345-234-146 word nosso 1345-234 word nossos 1345-234-234 word nova 1345-1236-1 word novas 1345-1236-146 word novo 1345-1236 word novos 1345-1236-234 word numa 1345-134 word numas 1345-134-234 word nunca 1345-14 word objecta 135-245-2345-1 word objectas 135-245-2345-146 word objectiva 135-245-2345-1236-1 word objectivas 135-245-2345-1236-146 word objectivo 135-245-2345-1236 word objectivos 135-245-2345-1236-234 word objecto 135-245-2345 word objectos 135-245-2345-234 word observações 135-12-1236-12346-234 word observação 135-12-1236-12346 word onde 135-15 word opiniões 135-1234-234 word opinião 135-1234 endword or 56 midword orb 56-12 midword orc 56-14 midword ord 56-145 word ordem 135-145 word ordens 135-145-234 midword orf 56-124 midword org 56-1245 endword orica 135-5-1235 endword oricamente 135-5-1235-56-134 endword oricas 135-5-1235-234 endword orico 135-4-1235 endword oricos 135-4-1235-234 midword orj 56-245 midword orl 56-123 midword orm 56-134 endword ormenta 56-5-134 endword ormentas 56-5-134-234 endword ormento 56-4-134 endword ormentos 56-4-134-234 midword orn 56-1345 midword orp 56-1234 midword orqu 56-12345 midword orr 56-1235 midword ors 56-234 midword ort 56-2345 begmidword orv 56-1236 midword orz 56-1356 begmidword orç 56-12346 word os 13456 endword os 13456 begmidword osc 13456-14 midword osf 13456-124 begmidword osg 13456-1245 begmidword osl 13456-123 begmidword osm 13456-134 midword osn 13456-1345 midword osp 13456-1234 midword osqu 13456-12345 begmidword oss 13456-234 begmidword ost 13456-2345 endword ostica 13456-5-2345 endword osticamente 13456-5-2345-56-134 endword osticas 13456-5-2345-234 endword ostico 13456-4-2345 endword osticos 13456-4-2345-234 begmidword ostr 13456-356 begmidword osv 13456-1236 always ou 1256 word outra 1256-1 word outras 1256-146 word outro 1256-135 word outros 1256-13456 word palavra 1234-1 word palavras 1234-146 word papel 1234-1234 word papéis 1234-1234-234 word para 1234-1235 word parte 1234-15 word partes 1234-156 word pela 1234-123-1 word pelas 1234-123-146 word pelo 1234-123 word pelos 1234-123-234 word pensamento 1234-234-134-2345 word pensamentos 1234-234-134-2345-234 word pequena 1234-12345-1345-1 word pequenas 1234-12345-1345-146 word pequeno 1234-12345-1345 word pequenos 1234-12345-1345-234 begmidword pl 1246 word ponta 1234-2345-1 word pontas 1234-2345-146 word ponto 1234-2345 word pontos 1234-2345-234 word por 1234 word porque 1234-12345 word portanto 1234-2345-2345 word portugal 1234-2345-1245-123 word portuguesa 1234-2345-1245-1 word portuguesas 1234-2345-1245-146 word portugueses 1234-2345-1245-234 word português 1234-2345-1245 word porém 1234-134 word posições 1234-12346-234 word posição 1234-12346 word possibilidade 1234-12-145 word possibilidades 1234-12-145-234 word possíveis 1234-1236-2346 word possível 1234-1236-123 word pouca 1234-14-1 word poucas 1234-14-146 word pouco 1234-14 word poucos 1234-14-234 begmidword pr 235 word própria 235-235-1 word próprias 235-235-146 word próprio 235-235-135 word próprios 235-235-13456 begword prerr 235-15-1235-1235 word primeira 235-1235-1 word primeiras 235-1235-146 word primeiro 235-1235 word primeiros 235-1235-234 word principais 235-14-2346 word principal 235-14-123 word princípio 235-14 word princípios 235-14-234 word produções 235-145-12346-234 word produção 235-145-12346 word produto 235-145 word produtos 235-145-234 word projecta 235-245-2345-1 word projectas 235-245-2345-146 word projecto 235-245-2345 word projectos 235-245-2345-234 word propriedade 235-235-145 word propriedades 235-235-145-234 begword prorr 235-135-1235-1235 word que 12345 begmidword qu 12345 word qualquer 12345-12345 word quando 12345-145 word quanta 12345-2345-1 word quantas 12345-2345-146 word quantidade 12345-2345-145 word quantidades 12345-2345-145-234 word quanto 12345-2345 word quantos 12345-2345-234 word quase 12345-234 word quer 12345-1235 word razões 1235-1356-234 word razão 1235-1356 begword re 3 word realidade 1235-123-145 word realidades 1235-123-145-234 word realizações 1235-123-1356-12346-234 word realização 1235-123-1356-12346 word reencontrem 3-26-25-356-15-134 word reentrem 3-26-356-15-134 word relações 3-123-12346-234 word relação 3-123-12346 begword rend 1235-26-145 begword renqu 1235-26-12345 begword rent 1235-26-2345 begword resc 1235-156-14 begword resf 1235-156-124 begword resfr 1235-156-16 begword resg 1235-156-1245 begword resm 1235-156-134 begword resp 1235-156-1234 word respeita 1235-1234-2345-1 word respeitas 1235-1234-2345-146 word respeito 1235-1234-2345 word respeitos 1235-1234-2345-234 begword respl 1235-156-1246 begword resqu 1235-156-12345 begword ress 1235-156-234 begword rest 1235-156-2345 begword restr 1235-156-356 begword resv 1235-156-1236 begword reum 1235-5-134 word rica 5-1235 endword rica 5-1235 word ricamente 5-1235-56-134 endword ricamente 5-1235-56-134 word ricas 5-1235-234 endword ricas 5-1235-234 word rico 4-1235 endword rico 4-1235 word ricos 4-1235-234 endword ricos 4-1235-234 word se 234 word seguinte 234-1245-2345 word seguintes 234-1245-2345-234 word segunda 234-1245-1 word segundas 234-1245-146 word segundo 234-1245 word segundos 234-1245-234 word sempre 234-1234 word senhor 234-1235 word senhora 234-1235-1 word senhoras 234-1235-146 word senhores 234-1235-234 word sentida 234-2345-145-1 word sentidas 234-2345-145-146 word sentido 234-2345-145-135 word sentidos 234-2345-145-13456 begword sext 234-1346-2345 word simples 234-1246 word sistema 234-2345-134 word sistemas 234-2345-134-234 word sobretudo 234-2345 word sua 234-1 word suas 234-146 word século 234-14-123 word séculos 234-14-123-234 word sujeita 234-245-2345-1 word sujeitas 234-245-2345-146 word sujeito 234-245-2345 word sujeitos 234-245-2345-234 word talvez 2345-1236 word também 2345-12 word tanta 2345-2345-1 word tantas 2345-2345-146 word tanto 2345-2345 word tantos 2345-2345-234 word te 2345 word tempo 2345-1234 word tempos 2345-1234-234 begword text 2345-1346-2345 endword tica 5-2345 endword ticamente 5-2345-56-134 endword ticas 5-2345-234 endword tico 4-2345 endword ticos 4-2345-234 word toda 2345-145-1 word todas 2345-145-146 word todavia 2345-145-1236 word todo 2345-145 word todos 2345-145-234 begmidword tr 356 word trabalha 356-125-1 word trabalhas 356-125-146 word trabalho 356-125 word trabalhos 356-125-234 word trem 356-15-134 word um 136 word uma 136-1 word umas 136-146 word uns 136-234 endword urica 136-5-1235 endword uricamente 136-5-1235-56-134 endword uricas 136-5-1235-234 endword urico 136-4-1235 endword uricos 136-4-1235-234 endword urrica 136-1235-5-1235 endword urricas 136-1235-5-1235-234 endword urrico 136-1235-4-1235 endword urricos 136-1235-4-1235-234 word valor 1236-123 word valores 1236-123-234 word vantagem 1236-2345-1245 word vantagens 1236-2345-1245-234 word verdade 1236-145 word verdadeira 1236-145-1235-1 word verdadeiras 1236-145-1235-146 word verdadeiro 1236-145-1235 word verdadeiros 1236-145-1235-234 word verdades 1236-145-234 word vez 1236-1356 word vezes 1236-1356-234 word vida 1236-1 word vidas 1236-146 word vista 1236-2345-1 word vistas 1236-2345-146 word visto 1236-2345 word vistos 1236-2345-234 word écloga 123456-14-123-135-1245-1 word éclogas 123456-14-123-135-1245-146 word égloga 123456-1245-123-135-1245-1 word églogas 123456-1245-123-135-1245-146 endword éria 5-123456 endword érias 5-123456-234 endword érica 123456-5-1235 endword éricas 123456-5-1235-234 endword érico 123456-4-1235 endword éricos 123456-4-1235-234 endword ério 4-123456 endword érios 4-123456-234 word ária 5-12356 endword ária 5-12356 word árias 5-12356-234 endword árias 5-12356-234 endword árica 12356-5-1235 endword áricas 12356-5-1235-234 endword árico 12356-4-1235 endword áricos 12356-4-1235-234 endword ário 4-12356 endword ários 4-12356-234 word última 23456-2345-134-1 word últimas 23456-2345-134-146 word último 23456-2345-134 word últimos 23456-2345-134-234 endword úrica 23456-5-1235 endword úricas 23456-5-1235-234 endword úrico 23456-4-1235 endword úricos 23456-4-1235-234 endword ância 5-16 endword âncias 5-16-234 endword âncio 4-16 endword ência 5-126 endword ências 5-126-234 endword êncio 4-126 endword êncios 4-126-234 endword írica 34-5-1235 endword íricas 34-5-1235-234 endword írico 34-4-1235 endword íricos 34-4-1235-234 midendword ão 3456 endword ãos 3456-234 endword ória 5-346 endword órias 5-346-234 endword órica 346-5-1235 endword óricas 346-5-1235-234 endword órico 346-4-1235 endword óricos 346-4-1235-234 endword ório 4-346 endword órios 4-346-234 liblouis-2.5.3/tables/de-ch-g1.ctb0000664000175000017500000000217412161041546013523 00000000000000# liblouis: Swiss German Grade 1 Braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE VOLLSCHRIFT - German Grade 1 Braille - Switzerland # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include de-ch-g0.utb include de-g1-core.cti liblouis-2.5.3/tables/sv-1989.ctb0000664000175000017500000002135112161041546013274 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2009 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Swedish (1989 standard) # generated by ttbtest letter \x0000 0 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 1578 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 24578 LINE FEED (LF) space \v 1378 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 13578 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 1345678 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 34578 ESCAPE letter \x001c 24678 INFORMATION SEPARATOR FOUR letter \x001d 1678 INFORMATION SEPARATOR THREE letter \x001e 4578 INFORMATION SEPARATOR TWO letter \x001f 3678 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 56 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 256 DOLLAR SIGN punctuation % 4678 PERCENT SIGN punctuation & 346 AMPERSAND punctuation ' 5 APOSTROPHE punctuation ( 23678 LEFT PARENTHESIS punctuation ) 35678 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 2357 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 34 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 268 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 357 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 467 COMMERCIAL AT include latinLetterDef8Dots.uti punctuation [ 23578 LEFT SQUARE BRACKET punctuation \\ 4567 REVERSE SOLIDUS punctuation ] 25678 RIGHT SQUARE BRACKET punctuation ^ 457 CIRCUMFLEX ACCENT punctuation _ 78 LOW LINE punctuation ` 46 GRAVE ACCENT punctuation { 378 LEFT CURLY BRACKET punctuation | 8 VERTICAL LINE punctuation } 678 RIGHT CURLY BRACKET punctuation ~ 45 TILDE letter \x007f 4568 DELETE letter \x0080 8 letter \x0081 8 letter \x0082 8 BREAK PERMITTED HERE letter \x0083 8 NO BREAK HERE letter \x0084 8 letter \x0085 8 NEXT LINE (NEL) letter \x0086 8 START OF SELECTED AREA letter \x0087 8 END OF SELECTED AREA letter \x0088 8 CHARACTER TABULATION SET letter \x0089 8 CHARACTER TABULATION WITH JUSTIFICATION letter \x008a 8 LINE TABULATION SET letter \x008b 8 PARTIAL LINE FORWARD letter \x008c 8 PARTIAL LINE BACKWARD letter \x008d 8 REVERSE LINE FEED letter \x008e 8 SINGLE SHIFT TWO letter \x008f 8 SINGLE SHIFT THREE letter \x0090 8 DEVICE CONTROL STRING letter \x0091 8 PRIVATE USE ONE letter \x0092 8 PRIVATE USE TWO letter \x0093 8 SET TRANSMIT STATE letter \x0094 8 CANCEL CHARACTER letter \x0095 8 MESSAGE WAITING letter \x0096 8 START OF GUARDED AREA letter \x0097 8 END OF GUARDED AREA letter \x0098 8 START OF STRING letter \x0099 8 letter \x009a 8 SINGLE CHARACTER INTRODUCER letter \x009b 8 CONTROL SEQUENCE INTRODUCER letter \x009c 8 STRING TERMINATOR letter \x009d 8 OPERATING SYSTEM COMMAND letter \x009e 8 PRIVACY MESSAGE letter \x009f 8 APPLICATION PROGRAM COMMAND punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 8 INVERTED EXCLAMATION MARK punctuation \x00a2 8 CENT SIGN punctuation \x00a3 8 POUND SIGN punctuation \x00a4 8 CURRENCY SIGN punctuation \x00a5 8 YEN SIGN punctuation \x00a6 8 BROKEN BAR punctuation \x00a7 8 SECTION SIGN punctuation \x00a8 8 DIAERESIS punctuation \x00a9 8 COPYRIGHT SIGN letter \x00aa 8 FEMININE ORDINAL INDICATOR punctuation \x00ab 8 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 8 NOT SIGN punctuation \x00ad 8 SOFT HYPHEN punctuation \x00ae 8 REGISTERED SIGN punctuation \x00af 8 MACRON punctuation \x00b0 8 DEGREE SIGN punctuation \x00b1 8 PLUS-MINUS SIGN punctuation \x00b2 8 SUPERSCRIPT TWO punctuation \x00b3 8 SUPERSCRIPT THREE punctuation \x00b4 8 ACUTE ACCENT lowercase \x00b5 8 MICRO SIGN punctuation \x00b6 8 PILCROW SIGN punctuation \x00b7 8 MIDDLE DOT punctuation \x00b8 8 CEDILLA punctuation \x00b9 8 SUPERSCRIPT ONE letter \x00ba 8 MASCULINE ORDINAL INDICATOR punctuation \x00bb 8 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 8 VULGAR FRACTION ONE QUARTER punctuation \x00bd 8 VULGAR FRACTION ONE HALF punctuation \x00be 8 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 26 INVERTED QUESTION MARK uppercase \x00c0 8 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 8 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 8 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 8 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 3458 LATIN CAPITAL LETTER AE uppercase \x00c7 267 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 8 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 8 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 8 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 8 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 8 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 8 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 8 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 8 LATIN CAPITAL LETTER ETH uppercase \x00d1 1245678 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 8 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 14567 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 8 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 8 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 8 MULTIPLICATION SIGN uppercase \x00d8 2468 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 8 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 124567 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 8 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 123467 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 1246 LATIN CAPITAL LETTER THORN lowercase \x00df 8 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 12356 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 16 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 8 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 345 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 567 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 34 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 34 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 8 LATIN SMALL LETTER ETH lowercase \x00f1 12456 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 346 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 346 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 8 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 8 DIVISION SIGN lowercase \x00f8 358 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 23456 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 12346 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 12467 LATIN SMALL LETTER THORN lowercase \x00ff 8 LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/ru.ctb0000664000175000017500000002615612161041546012672 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Russian (koi8-r) # by Hans Schou and Dave Mielke # This is the Russian braille table. It is based on the KOI8-R character set # which to our knowledge is the most used in Russia. # As the Russian cyrillic definition conflicts with the latin definition, some # decisions had to be taken. Russians need to type both latin for the command # prompt and cyrillic while reading and writing documents and mail. # In the following, latin letters are quoted with apostrophes like in 'a', and # cyrillic letters are enclosed within brackets like in [a]. # Dot 1 in the cyrillic definition is the cyrillic letter which looks and # sounds like 'a'. The problem is that in the KOI8-R character set, there is # both a latin 'a' and a cyrillic [a]. In decimal, their character numbers are # 97 and 193 respectively. To handle conflicts like these, we have prioritized # which characters are most important to match the standard. # RULES: # 1. All cyrillic characters must follow the Russian standard. KOI8-R character # 193 [a] must be dot-1, and so on. # 2. Capital cyrillic letters have dot 7 on. # 3. The latin alphabet is implemented to follow the international standard # except it has dot 8 on. # 4. Capital latin letters have dots 7 and 8 on. # 5. Numbers are defined as in the American standard. This means dot-2 for # number '1', and so on. This will conflict with the cyrillic comma which is # also dot-2. # 4. Special characters like !"#¤%&/()=? follow the American standard if # possible. # 2. Control characters are often used on Linux. These are not very well # implemented. More work should be done. # Comments from Russians are very welcome as neither Hans Schou nor Dave Mielke # understand a single word in Russian. # generated by ttbtest letter \x0000 12345678 NULL letter \x0001 1678 START OF HEADING letter \x0002 124678 START OF TEXT letter \x0003 14678 END OF TEXT letter \x0004 1467 END OF TRANSMISSION letter \x0005 15678 ENQUIRY letter \x0006 2358 ACKNOWLEDGE letter \x0007 235678 BELL letter \x0008 378 BACKSPACE space \t 2468 CHARACTER TABULATION space \n 678 LINE FEED (LF) space \v 345678 LINE TABULATION space \f 12367 FORM FEED (FF) space \r 458 CARRIAGE RETURN (CR) letter \x000e 134567 SHIFT OUT letter \x000f 1235678 SHIFT IN letter \x0010 34568 DATA LINK ESCAPE letter \x0011 124568 DEVICE CONTROL ONE letter \x0012 23468 DEVICE CONTROL TWO letter \x0013 4578 DEVICE CONTROL THREE letter \x0014 3458 DEVICE CONTROL FOUR letter \x0015 23578 NEGATIVE ACKNOWLEDGE letter \x0016 1236 SYNCHRONOUS IDLE letter \x0017 25678 END OF TRANSMISSION BLOCK letter \x0018 3478 CANCEL letter \x0019 13456 END OF MEDIUM letter \x001a 4678 SUBSTITUTE letter \x001b 24678 ESCAPE letter \x001c 125678 INFORMATION SEPARATOR FOUR letter \x001d 1245678 INFORMATION SEPARATOR THREE letter \x001e 1234678 INFORMATION SEPARATOR TWO letter \x001f 45678 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 2357 EXCLAMATION MARK punctuation " 5 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 57 DOLLAR SIGN punctuation % 146 PERCENT SIGN punctuation & 2578 AMPERSAND punctuation ' 3 APOSTROPHE punctuation ( 478 LEFT PARENTHESIS punctuation ) 578 RIGHT PARENTHESIS punctuation * 12678 ASTERISK punctuation + 346 PLUS SIGN punctuation , 6 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 46 FULL STOP punctuation / 34 SOLIDUS include loweredDigits6Dots.uti punctuation : 237 COLON punctuation ; 56 SEMICOLON punctuation < 126 LESS-THAN SIGN punctuation = 123456 EQUALS SIGN punctuation > 345 GREATER-THAN SIGN punctuation ? 1456 QUESTION MARK punctuation @ 47 COMMERCIAL AT uppercase A 178 LATIN CAPITAL LETTER A uppercase B 1278 LATIN CAPITAL LETTER B uppercase C 1478 LATIN CAPITAL LETTER C uppercase D 14578 LATIN CAPITAL LETTER D uppercase E 1578 LATIN CAPITAL LETTER E uppercase F 12478 LATIN CAPITAL LETTER F uppercase G 124578 LATIN CAPITAL LETTER G uppercase H 12578 LATIN CAPITAL LETTER H uppercase I 2478 LATIN CAPITAL LETTER I uppercase J 24578 LATIN CAPITAL LETTER J uppercase K 1378 LATIN CAPITAL LETTER K uppercase L 12378 LATIN CAPITAL LETTER L uppercase M 13478 LATIN CAPITAL LETTER M uppercase N 134578 LATIN CAPITAL LETTER N uppercase O 13578 LATIN CAPITAL LETTER O uppercase P 123478 LATIN CAPITAL LETTER P uppercase Q 1234578 LATIN CAPITAL LETTER Q uppercase R 123578 LATIN CAPITAL LETTER R uppercase S 23478 LATIN CAPITAL LETTER S uppercase T 234578 LATIN CAPITAL LETTER T uppercase U 13678 LATIN CAPITAL LETTER U uppercase V 123678 LATIN CAPITAL LETTER V uppercase W 245678 LATIN CAPITAL LETTER W uppercase X 134678 LATIN CAPITAL LETTER X uppercase Y 1345678 LATIN CAPITAL LETTER Y uppercase Z 135678 LATIN CAPITAL LETTER Z punctuation [ 234678 LEFT SQUARE BRACKET punctuation \\ 3567 REVERSE SOLIDUS punctuation ] 124567 RIGHT SQUARE BRACKET punctuation ^ 457 CIRCUMFLEX ACCENT punctuation _ 456 LOW LINE punctuation ` 4 GRAVE ACCENT lowercase a 18 LATIN SMALL LETTER A lowercase b 128 LATIN SMALL LETTER B lowercase c 148 LATIN SMALL LETTER C lowercase d 1458 LATIN SMALL LETTER D lowercase e 158 LATIN SMALL LETTER E lowercase f 1248 LATIN SMALL LETTER F lowercase g 12458 LATIN SMALL LETTER G lowercase h 1258 LATIN SMALL LETTER H lowercase i 248 LATIN SMALL LETTER I lowercase j 2458 LATIN SMALL LETTER J lowercase k 138 LATIN SMALL LETTER K lowercase l 1238 LATIN SMALL LETTER L lowercase m 1348 LATIN SMALL LETTER M lowercase n 13458 LATIN SMALL LETTER N lowercase o 1358 LATIN SMALL LETTER O lowercase p 12348 LATIN SMALL LETTER P lowercase q 123458 LATIN SMALL LETTER Q lowercase r 12358 LATIN SMALL LETTER R lowercase s 2348 LATIN SMALL LETTER S lowercase t 23458 LATIN SMALL LETTER T lowercase u 1368 LATIN SMALL LETTER U lowercase v 12368 LATIN SMALL LETTER V lowercase w 24568 LATIN SMALL LETTER W lowercase x 13468 LATIN SMALL LETTER X lowercase y 134568 LATIN SMALL LETTER Y lowercase z 13568 LATIN SMALL LETTER Z punctuation { 23678 LEFT CURLY BRACKET punctuation | 34567 VERTICAL LINE punctuation } 12456 RIGHT CURLY BRACKET punctuation ~ 45 TILDE letter \x007f 4567 DELETE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a9 34678 COPYRIGHT SIGN punctuation \x00b0 23567 DEGREE SIGN punctuation \x00b2 268 SUPERSCRIPT TWO punctuation \x00b7 34578 MIDDLE DOT punctuation \x00f7 145678 DIVISION SIGN uppercase \x0401 167 CYRILLIC CAPITAL LETTER IO uppercase \x0410 17 CYRILLIC CAPITAL LETTER A uppercase \x0411 127 CYRILLIC CAPITAL LETTER BE uppercase \x0412 24567 CYRILLIC CAPITAL LETTER VE uppercase \x0413 12457 CYRILLIC CAPITAL LETTER GHE uppercase \x0414 1457 CYRILLIC CAPITAL LETTER DE uppercase \x0415 157 CYRILLIC CAPITAL LETTER IE uppercase \x0416 2457 CYRILLIC CAPITAL LETTER ZHE uppercase \x0417 13567 CYRILLIC CAPITAL LETTER ZE uppercase \x0418 247 CYRILLIC CAPITAL LETTER I uppercase \x0419 123467 CYRILLIC CAPITAL LETTER SHORT I uppercase \x041a 137 CYRILLIC CAPITAL LETTER KA uppercase \x041b 1237 CYRILLIC CAPITAL LETTER EL uppercase \x041c 1347 CYRILLIC CAPITAL LETTER EM uppercase \x041d 13457 CYRILLIC CAPITAL LETTER EN uppercase \x041e 1357 CYRILLIC CAPITAL LETTER O uppercase \x041f 12347 CYRILLIC CAPITAL LETTER PE uppercase \x0420 12357 CYRILLIC CAPITAL LETTER ER uppercase \x0421 2347 CYRILLIC CAPITAL LETTER ES uppercase \x0422 23457 CYRILLIC CAPITAL LETTER TE uppercase \x0423 1367 CYRILLIC CAPITAL LETTER U uppercase \x0424 1247 CYRILLIC CAPITAL LETTER EF uppercase \x0425 1257 CYRILLIC CAPITAL LETTER HA uppercase \x0426 147 CYRILLIC CAPITAL LETTER TSE uppercase \x0427 123457 CYRILLIC CAPITAL LETTER CHE uppercase \x0428 1567 CYRILLIC CAPITAL LETTER SHA uppercase \x0429 13467 CYRILLIC CAPITAL LETTER SHCHA uppercase \x042a 123567 CYRILLIC CAPITAL LETTER HARD SIGN uppercase \x042b 23467 CYRILLIC CAPITAL LETTER YERU uppercase \x042c 234567 CYRILLIC CAPITAL LETTER SOFT SIGN uppercase \x042d 2467 CYRILLIC CAPITAL LETTER E uppercase \x042e 12567 CYRILLIC CAPITAL LETTER YU uppercase \x042f 12467 CYRILLIC CAPITAL LETTER YA lowercase \x0430 1 CYRILLIC SMALL LETTER A lowercase \x0431 12 CYRILLIC SMALL LETTER BE lowercase \x0432 2456 CYRILLIC SMALL LETTER VE lowercase \x0433 1245 CYRILLIC SMALL LETTER GHE lowercase \x0434 145 CYRILLIC SMALL LETTER DE lowercase \x0435 15 CYRILLIC SMALL LETTER IE lowercase \x0436 245 CYRILLIC SMALL LETTER ZHE lowercase \x0437 1356 CYRILLIC SMALL LETTER ZE lowercase \x0438 24 CYRILLIC SMALL LETTER I lowercase \x0439 12346 CYRILLIC SMALL LETTER SHORT I lowercase \x043a 13 CYRILLIC SMALL LETTER KA lowercase \x043b 123 CYRILLIC SMALL LETTER EL lowercase \x043c 134 CYRILLIC SMALL LETTER EM lowercase \x043d 1345 CYRILLIC SMALL LETTER EN lowercase \x043e 135 CYRILLIC SMALL LETTER O lowercase \x043f 1234 CYRILLIC SMALL LETTER PE lowercase \x0440 1235 CYRILLIC SMALL LETTER ER lowercase \x0441 234 CYRILLIC SMALL LETTER ES lowercase \x0442 2345 CYRILLIC SMALL LETTER TE lowercase \x0443 136 CYRILLIC SMALL LETTER U lowercase \x0444 124 CYRILLIC SMALL LETTER EF lowercase \x0445 125 CYRILLIC SMALL LETTER HA lowercase \x0446 14 CYRILLIC SMALL LETTER TSE lowercase \x0447 12345 CYRILLIC SMALL LETTER CHE lowercase \x0448 156 CYRILLIC SMALL LETTER SHA lowercase \x0449 1346 CYRILLIC SMALL LETTER SHCHA lowercase \x044a 12356 CYRILLIC SMALL LETTER HARD SIGN lowercase \x044b 2346 CYRILLIC SMALL LETTER YERU lowercase \x044c 23456 CYRILLIC SMALL LETTER SOFT SIGN lowercase \x044d 246 CYRILLIC SMALL LETTER E lowercase \x044e 1256 CYRILLIC SMALL LETTER YU lowercase \x044f 1246 CYRILLIC SMALL LETTER YA lowercase \x0451 16 CYRILLIC SMALL LETTER IO uppercase \x0462 3457 CYRILLIC CAPITAL LETTER YAT lowercase \x0463 345 CYRILLIC SMALL LETTER YAT uppercase \x046a 2467 CYRILLIC CAPITAL LETTER BIG YUS lowercase \x046b 246 CYRILLIC SMALL LETTER BIG YUS punctuation \x2219 238 BULLET OPERATOR punctuation \x221a 568 SQUARE ROOT punctuation \x2248 358 ALMOST EQUAL TO punctuation \x2264 4568 LESS-THAN OR EQUAL TO punctuation \x2265 35678 GREATER-THAN OR EQUAL TO punctuation \x2320 2568 TOP HALF INTEGRAL punctuation \x2321 258 BOTTOM HALF INTEGRAL punctuation \x2580 348 UPPER HALF BLOCK punctuation \x2584 468 LOWER HALF BLOCK punctuation \x2588 68 FULL BLOCK punctuation \x258c 278 LEFT HALF BLOCK punctuation \x2590 2378 RIGHT HALF BLOCK punctuation \x2591 3578 LIGHT SHADE punctuation \x2592 267 MEDIUM SHADE punctuation \x2593 3568 DARK SHADE punctuation \x25a0 23568 BLACK SQUARE liblouis-2.5.3/tables/no-no-g1.ctb0000664000175000017500000000420412161041546013565 00000000000000# liblouis: Norwegian contracted braille, level 1. # Created June 9, 2005 by Leon Ungier with # help and guidance from Lars Bjørndal . # Modified Sep 30, 2005 by LU # Heavily overworked by lars@handytech.no, 2009. include no-no-g0.utb #------------------------------------------------------ # -------------- level 1 contractions ----------------- #------------------------------------------------------ endword ar 3456 word at 1 word ble 12 word de 1456 endword de 1456 word du 145 word eg 1245 word eller 15 word ellers 15-234 word en 126 endword en 126 word ende 126-1456 endword ende 126-1456 word er 156 endword er 156 word et 346 endword et 346 word etter 1356 begword etter 1356 word etterat 1356-1 word ettersom 1356-234 word etterpÃ¥ 1356-1234 word for 1246 # level 1 contractions endword for 1246 begword for 1246 word forat 1246-1 word forfra 1246-124 word forover 1246-1346 word forlike 1246-123 word forhold 12346 endword forhold 12346 begword forhold 12346 word forholdsvis 12346-1236 word fra 124 # level 1 contractions word før 246 word gjennom 12456 begword gjennom 12456 endword gjennom 12456 word gjennomfør 12456-246 word han 125 word hans 125-234 word har 1235 word hun 136 word hvor 2456 begword hvor 2456 word ikke 24-13 # level 1 contractions word ikkje 24-13-245 word jeg 245 word kan 13 word like 123 word mange 134 word med 146 word mye 13456 word nÃ¥r 1345 word og 14 # level 1 contractions word ogsÃ¥ 14-234 word oss 135 word over 1346 begword over 1346 word overfor 1346-1246 word overpÃ¥ 1346-1234 word overunder 1346-12345 word overfør 1346-246 word overvære 1346-345 word overvar 1346-3456 word pÃ¥ 1234 word som 234 word til 2345 word under 12345 begword under 12345 word underer 12345-345 word underet 12345-346 word underfra 12345-124 word undersom 12345-234 word undertil 12345-2345 word var 3456 word ved 1236 word være 345 # level 1 contractions letsign 56 noletsign i noletsign I noletsign Ã¥ noletsign Ã… #noletsignbefore '. noletsignafter :. # ------------------------------------------------------------------- liblouis-2.5.3/tables/Makefile.in0000664000175000017500000006315712161044154013617 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tables DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(tablesdir)" DATA = $(tables_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # generate the list of tables as follows: # $ ls | grep -v Makefile | grep -v README | grep -v maketablelist.sh | grep -v '.*~$' | sort | sed -e 's/$/ \\/' -e 's/^/\t/' | head --bytes=-2 table_files = \ ar-ar-g1.utb \ ar-fa.utb \ as.ctb \ awa.ctb \ bengali.cti \ bg.ctb \ bh.ctb \ bn.ctb \ bo.ctb \ boxes.ctb \ bra.ctb \ braille-patterns.cti \ ca-chardefs.cti \ ca-g1.ctb \ chardefs.cti \ chardefs-ueb.cti \ ckb-chardefs.cti \ ckb-g1.ctb \ ckb-translation.cti \ compress.cti \ controlchars.cti \ corrections.cti \ countries.cti \ cs-chardefs.cti \ cs-g1.ctb \ cs-translation.cti \ cy-cy-g1.utb \ cy-cy-g2.ctb \ Cz-Cz-g1.utb \ da-1252.ctb \ da.ctb \ da-dk.dis \ da-dk-g1.utb \ da-dk-g2.ctb \ da-lt.ctb \ de-ch-accents.cti \ de-chardefs6.cti \ de-chardefs8.cti \ de-chess.ctb \ de-ch-g0.utb \ de-ch-g1.ctb \ de-ch-g2.ctb \ de-de-accents.cti \ de-de-comp8.ctb \ de-de.dis \ de-de-g0.utb \ de-de-g1.ctb \ de-de-g2.ctb \ de-eurobrl6.dis \ de-eurobrl6u.dis \ de-g0-core.uti \ de-g1-core.cti \ de-g2-core.cti \ devanagari.cti \ digits6DotsPlusDot6.uti \ digits6Dots.uti \ digits8Dots.uti \ dra.ctb \ en_CA.ctb \ en-chess.ctb \ en-gb-comp8.ctb \ en-gb-g1.utb \ en-GB-g2.ctb \ en-ueb-g1.ctb \ en-ueb-g2.ctb \ en-us-brf.dis \ en-us-comp6.ctb \ en-us-comp8.ctb \ en-us-compbrl.ctb \ en-us-g1.ctb \ en-us-g2.ctb \ en-us-interline.ctb \ en-us-mathtext.ctb \ eo-g1.ctb \ eo-g1-x-system.ctb \ es-chardefs.cti \ Es-Es-G0.utb \ Es-Es-g1.utb \ es-g1.ctb \ es-new.dis \ es-old.dis \ es-translation.cti \ et.ctb \ et-g0.utb \ ethio-g1.ctb \ eurodefs.cti \ fi1.ctb \ fi2.ctb \ fi-fi-8dot.ctb \ fi-fi.ctb \ fr-2007.ctb \ fr-bfu-comp6.utb \ fr-bfu-comp8.utb \ fr-bfu-g2.ctb \ fr-ca-g1.utb \ Fr-Ca-g2.ctb \ fr-fr-g1.utb \ Fr-Fr-g2.ctb \ ga.ctb \ gd.ctb \ gon.ctb \ gr-bb.ctb \ gr-gr-g1.utb \ gu.ctb \ gujarati.cti \ gurmukhi.cti \ he.ctb \ hi.ctb \ hi-in-g1.utb \ hr.ctb \ hu-backtranslate-correction.dis \ hu-chardefs.cti \ hu-exceptionwords.cti \ hu-hu-comp8.ctb \ hu-hu-g1.ctb \ hy.ctb \ hyph_cs_CZ.dic \ hyph_da_DK.dic \ hyph_de_DE.dic \ hyph_en_US.dic \ hyph_eo.dic \ hyph_es_ES.dic \ hyph_fr_FR.dic \ hyph_hu_HU.dic \ hyph_it_IT.dic \ hyph_nb_NO.dic \ hyph_nl_NL.dic \ hyph_nn_NO.dic \ hyph_pl_PL.dic \ hyph_pt_PT.dic \ hyph_ru.dic \ hyph_sv_SE.dic \ is-chardefs6.cti \ is-chardefs8.cti \ is.ctb \ it-it-comp6.utb \ it-it-comp8.utb \ iu-ca-g1.ctb \ kannada.cti \ kha.ctb \ kn.ctb \ ko.cti \ ko-g1.ctb \ ko-g2.ctb \ kok.ctb \ kru.ctb \ latinLetterDef6Dots.uti \ latinLetterDef8Dots.uti \ litdigits6Dots.uti \ loweredDigits6Dots.uti \ loweredDigits8Dots.uti \ lt.ctb \ Lv-Lv-g1.utb \ malayalam.cti \ marburg.ctb \ marburg_edit.ctb \ marburg_single_cell_defs.cti \ marburg_unicode_defs.cti \ ml.ctb \ mni.ctb \ mr.ctb \ mt.ctb \ mun.ctb \ mwr.ctb \ ne.ctb \ nemeth.ctb \ nemethdefs.cti \ nemeth_edit.ctb \ new.ctb \ nl-BE-chardefs.cti \ nl-BE.dis \ nl-BE-g1.ctb \ nl-be-g1.utb \ nl-BE-translation.cti \ Nl-Nl-g1.utb \ no-no.ctb \ no-no.dis \ no-no-g0.utb \ no-no-g1.ctb \ no-no-g2.ctb \ no-no-g3.ctb \ no-no-generic.ctb \ no-no-generic.dis \ or.ctb \ oriya.cti \ pa.ctb \ pi.ctb \ Pl-Pl-g1.utb \ printables.cti \ pt-pt-comp8.ctb \ pt-pt-g1.utb \ pt-pt-g2.ctb \ ro.ctb \ ru-chardefs.cti \ ru-compbrl.ctb \ ru.ctb \ ru-letters.dis \ ru-litbrl.ctb \ ru-ru.dis \ ru-ru-g1.utb \ sa.ctb \ sat.ctb \ sd.ctb \ se-se.ctb \ se-se.dis \ Se-Se-g1.utb \ sk-sk-g1.utb \ sk-sk.utb \ sl-si-g1.utb \ spaces.ctb \ sr-chardefs.cti \ sr-g1.ctb \ sr-translation.cti \ sv-1989.ctb \ sv-1996.ctb \ ta.ctb \ tamil.cti \ ta-ta-g1.ctb \ te.ctb \ telugu.cti \ text_nabcc.dis \ tr.ctb \ UEBC-g1.utb \ UEBC-g2.ctb \ ukchardefs.cti \ ukmaths.ctb \ ukmaths_edit.ctb \ ukmaths_single_cell_defs.cti \ ukmaths_unicode_defs.cti \ unicodedefs.cti \ unicode.dis \ uni-text.dis \ us-table.dis \ vi.ctb \ wiskunde-chardefs.cti \ wiskunde.ctb \ wiskunde-translation.cti \ zh-hk.ctb \ zh-tw.ctb tablesdir = $(datadir)/liblouis/tables tables_DATA = $(table_files) EXTRA_DIST = $(table_files) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tables/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tables/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-tablesDATA: $(tables_DATA) @$(NORMAL_INSTALL) @list='$(tables_DATA)'; test -n "$(tablesdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(tablesdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(tablesdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(tablesdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(tablesdir)" || exit $$?; \ done uninstall-tablesDATA: @$(NORMAL_UNINSTALL) @list='$(tables_DATA)'; test -n "$(tablesdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(tablesdir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(tablesdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-tablesDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-tablesDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ install-tablesDATA installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-tablesDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tables/ru-chardefs.cti0000664000175000017500000000373512161041546014454 00000000000000# liblouis: Russian letters character definition table # # Copyright (C) 2013 Igor B. Poretsky # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # This table contains character definitions for unicode cyrillic letters. # All dot-patterns have dot 9 set to make them distinguishable from the latins. # Dot 7 indicates uppercase letters. uplow \x0410\x0430 179,19 uplow \x0411\x0431 1279,129 uplow \x0412\x0432 245679,24569 uplow \x0413\x0433 124579,12459 uplow \x0414\x0434 14579,1459 uplow \x0415\x0435 1579,159 uplow \x0416\x0436 24579,2459 uplow \x0417\x0437 135679,13569 uplow \x0418\x0438 2479,249 uplow \x0419\x0439 1234679,123469 uplow \x041A\x043A 1379,139 uplow \x041B\x043B 12379,1239 uplow \x041C\x043C 13479,1349 uplow \x041D\x043D 134579,13459 uplow \x041E\x043E 13579,1359 uplow \x041F\x043F 123479,12349 uplow \x0420\x0440 123579,12359 uplow \x0421\x0441 23479,2349 uplow \x0422\x0442 234579,23459 uplow \x0423\x0443 13679,1369 uplow \x0424\x0444 12479,1249 uplow \x0425\x0445 12579,1259 uplow \x0426\x0446 1479,149 uplow \x0427\x0447 1234579,123459 uplow \x0428\x0448 15679,1569 uplow \x0429\x0449 134679,13469 uplow \x042A\x044A 1235679,123569 uplow \x042B\x044B 234679,23469 uplow \x042C\x044C 2345679,234569 uplow \x042D\x044D 24679,2469 uplow \x042E\x044E 125679,12569 uplow \x042F\x044F 124679,12469 uplow \x0401\x0451 1679,169 liblouis-2.5.3/tables/ko-g1.ctb0000664000175000017500000005560112161041546013157 00000000000000# liblouis: Korean Grade 1 (Uncontracted) # # Based on the braille contraction table in BRLTTY # # Copyright (C) 1995-2012 by The BRLTTY Team. # # Samuel Thibault # # This is missing CHITUEUM*, CEONGCHIEUMSIOS, PANSIOS, YESIEUNG, RINHIEUH and # ARAEA for which I couldn't find documentation. Please contact me to fix # anything, as this table was generated from a C program. # # Copyright (C) 2012 by Mesar Hameed # Copyright (C) 2013 by Joseph Lee # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # Globals: include ko.cti # Rules specific to grade 1: # Case 1: Numbers followed by Korean characters: # There are seven Korean conscenant dots which may be confused with numberals. # In this case, a speace character (dot 0) is inserted between end of number(s) and Korean charaacters. after digit always 나 0-14-126 after digit always ë‚™ 0-14-126-1 after digit always 낚 0-14-126-1-1 after digit always ë‚› 0-14-126-1-3 after digit always 난 0-14-126-25 after digit always ë‚ 0-14-126-25-13 after digit always 낞 0-14-126-25-356 after digit always 낟 0-14-126-35 after digit always ë‚  0-14-126-2 after digit always ë‚¡ 0-14-126-2-1 after digit always ë‚¢ 0-14-126-2-26 after digit always ë‚£ 0-14-126-2-12 after digit always 낤 0-14-126-2-3 after digit always ë‚¥ 0-14-126-2-236 after digit always 낦 0-14-126-2-256 after digit always ë‚§ 0-14-126-2-356 after digit always 남 0-14-126-26 after digit always ë‚© 0-14-126-12 after digit always 낪 0-14-126-12-3 after digit always ë‚« 0-14-126-3 after digit always 났 0-14-126-34 after digit always ë‚­ 0-14-126-2356 after digit always ë‚® 0-14-126-13 after digit always 낯 0-14-126-23 after digit always ë‚° 0-14-126-235 after digit always 낱 0-14-126-236 after digit always 낲 0-14-126-256 after digit always 낳 0-14-126-356 after digit always 넉 0-14-234-1 after digit always 넊 0-14-234-1-1 after digit always ë„‹ 0-14-234-1-3 after digit always 넌 0-14-234-25 after digit always ë„ 0-14-234-25-13 after digit always 넎 0-14-234-25-356 after digit always ë„ 0-14-234-2 after digit always ë„‘ 0-14-234-2-1 after digit always ë„’ 0-14-234-2-26 after digit always ë„“ 0-14-234-2-12 after digit always ë„” 0-14-234-2-3 after digit always ë„• 0-14-234-2-236 after digit always ë„– 0-14-234-2-256 after digit always ë„— 0-14-234-2-356 after digit always ë…„ 0-14-156-25 after digit always ë…… 0-14-156-25-13 after digit always ë…† 0-14-156-25-356 after digit always ë…ˆ 0-14-156-2 after digit always ë…‰ 0-14-156-2-1 after digit always ë…Š 0-14-156-2-26 after digit always ë…‹ 0-14-156-2-12 after digit always ë…Œ 0-14-156-2-3 after digit always ë… 0-14-156-2-236 after digit always ë…Ž 0-14-156-2-256 after digit always ë… 0-14-156-2-356 after digit always ë…• 0-14-156-2356 after digit always ë…¹ 0-14-136-1 after digit always ë…º 0-14-136-1-1 after digit always ë…» 0-14-136-1-3 after digit always ë…¼ 0-14-136-25 after digit always ë…½ 0-14-136-25-13 after digit always ë…¾ 0-14-136-25-356 after digit always ë† 0-14-136-2356 after digit always 눈 0-14-134-25 after digit always 눉 0-14-134-25-13 after digit always 눊 0-14-134-25-356 after digit always 눌 0-14-134-2 after digit always ëˆ 0-14-134-2-1 after digit always 눎 0-14-134-2-26 after digit always ëˆ 0-14-134-2-12 after digit always ëˆ 0-14-134-2-3 after digit always 눑 0-14-134-2-236 after digit always 눒 0-14-134-2-256 after digit always 눓 0-14-134-2-356 after digit always 는 0-14-246-25 after digit always 늕 0-14-246-25-13 after digit always 늖 0-14-246-25-356 after digit always 늘 0-14-246-2 after digit always 늙 0-14-246-2-1 after digit always 늚 0-14-246-2-26 after digit always 늛 0-14-246-2-12 after digit always 늜 0-14-246-2-3 after digit always ëŠ 0-14-246-2-236 after digit always 늞 0-14-246-2-256 after digit always 늟 0-14-246-2-356 after digit always 닌 0-14-135-25 after digit always ë‹ 0-14-135-25-13 after digit always 닎 0-14-135-25-356 after digit always 다 0-24-126 after digit always ë‹¥ 0-24-126-1 after digit always 닦 0-24-126-1-1 after digit always ë‹§ 0-24-126-1-3 after digit always 단 0-24-126-25 after digit always ë‹© 0-24-126-25-13 after digit always 닪 0-24-126-25-356 after digit always ë‹« 0-24-126-35 after digit always 달 0-24-126-2 after digit always ë‹­ 0-24-126-2-1 after digit always ë‹® 0-24-126-2-26 after digit always 닯 0-24-126-2-12 after digit always ë‹° 0-24-126-2-3 after digit always 닱 0-24-126-2-236 after digit always 닲 0-24-126-2-256 after digit always 닳 0-24-126-2-356 after digit always ë‹´ 0-24-126-26 after digit always 답 0-24-126-12 after digit always ë‹¶ 0-24-126-12-3 after digit always ë‹· 0-24-126-3 after digit always 닸 0-24-126-34 after digit always 당 0-24-126-2356 after digit always 닺 0-24-126-13 after digit always ë‹» 0-24-126-23 after digit always 닼 0-24-126-235 after digit always 닽 0-24-126-236 after digit always 닾 0-24-126-256 after digit always ë‹¿ 0-24-126-356 after digit always ë• 0-24-234-1 after digit always ë– 0-24-234-1-1 after digit always ë— 0-24-234-1-3 after digit always ë˜ 0-24-234-25 after digit always ë™ 0-24-234-25-13 after digit always ëš 0-24-234-25-356 after digit always ëœ 0-24-234-2 after digit always ë 0-24-234-2-1 after digit always ëž 0-24-234-2-26 after digit always ëŸ 0-24-234-2-12 after digit always ë  0-24-234-2-3 after digit always ë¡ 0-24-234-2-236 after digit always ë¢ 0-24-234-2-256 after digit always ë£ 0-24-234-2-356 after digit always ëŽ 0-24-156-25 after digit always 뎑 0-24-156-25-13 after digit always 뎒 0-24-156-25-356 after digit always 뎔 0-24-156-2 after digit always 뎕 0-24-156-2-1 after digit always 뎖 0-24-156-2-26 after digit always 뎗 0-24-156-2-12 after digit always 뎘 0-24-156-2-3 after digit always 뎙 0-24-156-2-236 after digit always 뎚 0-24-156-2-256 after digit always 뎛 0-24-156-2-356 after digit always 뎡 0-24-156-2356 after digit always ë… 0-24-136-1 after digit always ë† 0-24-136-1-1 after digit always ë‡ 0-24-136-1-3 after digit always ëˆ 0-24-136-25 after digit always ë‰ 0-24-136-25-13 after digit always ëŠ 0-24-136-25-356 after digit always ë™ 0-24-136-2356 after digit always ë‘” 0-24-134-25 after digit always ë‘• 0-24-134-25-13 after digit always ë‘– 0-24-134-25-356 after digit always 둘 0-24-134-2 after digit always ë‘™ 0-24-134-2-1 after digit always 둚 0-24-134-2-26 after digit always ë‘› 0-24-134-2-12 after digit always 둜 0-24-134-2-3 after digit always ë‘ 0-24-134-2-236 after digit always 둞 0-24-134-2-256 after digit always 둟 0-24-134-2-356 after digit always ë“  0-24-246-25 after digit always ë“¡ 0-24-246-25-13 after digit always ë“¢ 0-24-246-25-356 after digit always 들 0-24-246-2 after digit always ë“¥ 0-24-246-2-1 after digit always 듦 0-24-246-2-26 after digit always ë“§ 0-24-246-2-12 after digit always 듨 0-24-246-2-3 after digit always ë“© 0-24-246-2-236 after digit always 듪 0-24-246-2-256 after digit always ë“« 0-24-246-2-356 after digit always 딘 0-24-135-25 after digit always ë”™ 0-24-135-25-13 after digit always 딚 0-24-135-25-356 after digit always 마 0-15-126 after digit always 막 0-15-126-1 after digit always ë§Š 0-15-126-1-1 after digit always ë§‹ 0-15-126-1-3 after digit always ë§Œ 0-15-126-25 after digit always ë§ 0-15-126-25-13 after digit always ë§Ž 0-15-126-25-356 after digit always ë§ 0-15-126-35 after digit always ë§ 0-15-126-2 after digit always ë§‘ 0-15-126-2-1 after digit always ë§’ 0-15-126-2-26 after digit always ë§“ 0-15-126-2-12 after digit always ë§” 0-15-126-2-3 after digit always ë§• 0-15-126-2-236 after digit always ë§– 0-15-126-2-256 after digit always ë§— 0-15-126-2-356 after digit always 맘 0-15-126-26 after digit always ë§™ 0-15-126-12 after digit always ë§š 0-15-126-12-3 after digit always ë§› 0-15-126-3 after digit always ë§œ 0-15-126-34 after digit always ë§ 0-15-126-2356 after digit always ë§ž 0-15-126-13 after digit always ë§Ÿ 0-15-126-23 after digit always ë§  0-15-126-235 after digit always ë§¡ 0-15-126-236 after digit always ë§¢ 0-15-126-256 after digit always ë§£ 0-15-126-356 after digit always 먹 0-15-234-1 after digit always 먺 0-15-234-1-1 after digit always 먻 0-15-234-1-3 after digit always 먼 0-15-234-25 after digit always 먽 0-15-234-25-13 after digit always 먾 0-15-234-25-356 after digit always ë©€ 0-15-234-2 after digit always ë© 0-15-234-2-1 after digit always ë©‚ 0-15-234-2-26 after digit always 멃 0-15-234-2-12 after digit always ë©„ 0-15-234-2-3 after digit always ë©… 0-15-234-2-236 after digit always 멆 0-15-234-2-256 after digit always 멇 0-15-234-2-356 after digit always ë©´ 0-15-156-25 after digit always 멵 0-15-156-25-13 after digit always ë©¶ 0-15-156-25-356 after digit always 멸 0-15-156-2 after digit always 멹 0-15-156-2-1 after digit always 멺 0-15-156-2-26 after digit always ë©» 0-15-156-2-12 after digit always 멼 0-15-156-2-3 after digit always 멽 0-15-156-2-236 after digit always 멾 0-15-156-2-256 after digit always ë©¿ 0-15-156-2-356 after digit always 명 0-15-156-2356 after digit always 목 0-15-136-1 after digit always 몪 0-15-136-1-1 after digit always 몫 0-15-136-1-3 after digit always 몬 0-15-136-25 after digit always 몭 0-15-136-25-13 after digit always 몮 0-15-136-25-356 after digit always 몽 0-15-136-2356 after digit always 문 0-15-134-25 after digit always 묹 0-15-134-25-13 after digit always 묺 0-15-134-25-356 after digit always 물 0-15-134-2 after digit always 묽 0-15-134-2-1 after digit always 묾 0-15-134-2-26 after digit always 묿 0-15-134-2-12 after digit always ë­€ 0-15-134-2-3 after digit always ë­ 0-15-134-2-236 after digit always ë­‚ 0-15-134-2-256 after digit always ë­ƒ 0-15-134-2-356 after digit always 믄 0-15-246-25 after digit always 믅 0-15-246-25-13 after digit always 믆 0-15-246-25-356 after digit always 믈 0-15-246-2 after digit always 믉 0-15-246-2-1 after digit always 믊 0-15-246-2-26 after digit always 믋 0-15-246-2-12 after digit always 믌 0-15-246-2-3 after digit always ë¯ 0-15-246-2-236 after digit always 믎 0-15-246-2-256 after digit always ë¯ 0-15-246-2-356 after digit always 민 0-15-135-25 after digit always 믽 0-15-135-25-13 after digit always 믾 0-15-135-25-356 after digit always ì¹´ 0-124-126 after digit always ì¹µ 0-124-126-1 after digit always ì¹¶ 0-124-126-1-1 after digit always ì¹· 0-124-126-1-3 after digit always 칸 0-124-126-25 after digit always ì¹¹ 0-124-126-25-13 after digit always 칺 0-124-126-25-356 after digit always ì¹» 0-124-126-35 after digit always ì¹¼ 0-124-126-2 after digit always ì¹½ 0-124-126-2-1 after digit always ì¹¾ 0-124-126-2-26 after digit always 칿 0-124-126-2-12 after digit always 캀 0-124-126-2-3 after digit always ìº 0-124-126-2-236 after digit always 캂 0-124-126-2-256 after digit always 캃 0-124-126-2-356 after digit always 캄 0-124-126-26 after digit always 캅 0-124-126-12 after digit always 캆 0-124-126-12-3 after digit always 캇 0-124-126-3 after digit always 캈 0-124-126-34 after digit always 캉 0-124-126-2356 after digit always 캊 0-124-126-13 after digit always 캋 0-124-126-23 after digit always 캌 0-124-126-235 after digit always ìº 0-124-126-236 after digit always 캎 0-124-126-256 after digit always ìº 0-124-126-356 after digit always 컥 0-124-234-1 after digit always 컦 0-124-234-1-1 after digit always ì»§ 0-124-234-1-3 after digit always 컨 0-124-234-25 after digit always 컩 0-124-234-25-13 after digit always 컪 0-124-234-25-356 after digit always 컬 0-124-234-2 after digit always ì»­ 0-124-234-2-1 after digit always ì»® 0-124-234-2-26 after digit always 컯 0-124-234-2-12 after digit always ì»° 0-124-234-2-3 after digit always ì»± 0-124-234-2-236 after digit always 컲 0-124-234-2-256 after digit always 컳 0-124-234-2-356 after digit always ì¼  0-124-156-25 after digit always 켡 0-124-156-25-13 after digit always ì¼¢ 0-124-156-25-356 after digit always 켤 0-124-156-2 after digit always ì¼¥ 0-124-156-2-1 after digit always 켦 0-124-156-2-26 after digit always ì¼§ 0-124-156-2-12 after digit always 켨 0-124-156-2-3 after digit always 켩 0-124-156-2-236 after digit always 켪 0-124-156-2-256 after digit always 켫 0-124-156-2-356 after digit always ì¼± 0-124-156-2356 after digit always 콕 0-124-136-1 after digit always ì½– 0-124-136-1-1 after digit always ì½— 0-124-136-1-3 after digit always 콘 0-124-136-25 after digit always ì½™ 0-124-136-25-13 after digit always 콚 0-124-136-25-356 after digit always 콩 0-124-136-2356 after digit always 쿤 0-124-134-25 after digit always ì¿¥ 0-124-134-25-13 after digit always 쿦 0-124-134-25-356 after digit always 쿨 0-124-134-2 after digit always ì¿© 0-124-134-2-1 after digit always 쿪 0-124-134-2-26 after digit always ì¿« 0-124-134-2-12 after digit always 쿬 0-124-134-2-3 after digit always ì¿­ 0-124-134-2-236 after digit always ì¿® 0-124-134-2-256 after digit always 쿯 0-124-134-2-356 after digit always í° 0-124-246-25 after digit always í± 0-124-246-25-13 after digit always í² 0-124-246-25-356 after digit always í´ 0-124-246-2 after digit always íµ 0-124-246-2-1 after digit always í¶ 0-124-246-2-26 after digit always í· 0-124-246-2-12 after digit always í¸ 0-124-246-2-3 after digit always í¹ 0-124-246-2-236 after digit always íº 0-124-246-2-256 after digit always í» 0-124-246-2-356 after digit always 킨 0-124-135-25 after digit always í‚© 0-124-135-25-13 after digit always 킪 0-124-135-25-356 after digit always 타 0-125-126 after digit always íƒ 0-125-126-1 after digit always 탂 0-125-126-1-1 after digit always 탃 0-125-126-1-3 after digit always 탄 0-125-126-25 after digit always 탅 0-125-126-25-13 after digit always 탆 0-125-126-25-356 after digit always 탇 0-125-126-35 after digit always 탈 0-125-126-2 after digit always 탉 0-125-126-2-1 after digit always 탊 0-125-126-2-26 after digit always 탋 0-125-126-2-12 after digit always 탌 0-125-126-2-3 after digit always íƒ 0-125-126-2-236 after digit always 탎 0-125-126-2-256 after digit always íƒ 0-125-126-2-356 after digit always íƒ 0-125-126-26 after digit always 탑 0-125-126-12 after digit always 탒 0-125-126-12-3 after digit always 탓 0-125-126-3 after digit always 탔 0-125-126-34 after digit always 탕 0-125-126-2356 after digit always 탖 0-125-126-13 after digit always 탗 0-125-126-23 after digit always 탘 0-125-126-235 after digit always 탙 0-125-126-236 after digit always 탚 0-125-126-256 after digit always 탛 0-125-126-356 after digit always 턱 0-125-234-1 after digit always 턲 0-125-234-1-1 after digit always 턳 0-125-234-1-3 after digit always í„´ 0-125-234-25 after digit always 턵 0-125-234-25-13 after digit always í„¶ 0-125-234-25-356 after digit always 털 0-125-234-2 after digit always 턹 0-125-234-2-1 after digit always 턺 0-125-234-2-26 after digit always í„» 0-125-234-2-12 after digit always 턼 0-125-234-2-3 after digit always 턽 0-125-234-2-236 after digit always 턾 0-125-234-2-256 after digit always í„¿ 0-125-234-2-356 after digit always í…¬ 0-125-156-25 after digit always í…­ 0-125-156-25-13 after digit always í…® 0-125-156-25-356 after digit always í…° 0-125-156-2 after digit always í…± 0-125-156-2-1 after digit always í…² 0-125-156-2-26 after digit always í…³ 0-125-156-2-12 after digit always í…´ 0-125-156-2-3 after digit always í…µ 0-125-156-2-236 after digit always í…¶ 0-125-156-2-256 after digit always í…· 0-125-156-2-356 after digit always í…½ 0-125-156-2356 after digit always 톡 0-125-136-1 after digit always 톢 0-125-136-1-1 after digit always 톣 0-125-136-1-3 after digit always 톤 0-125-136-25 after digit always 톥 0-125-136-25-13 after digit always 톦 0-125-136-25-356 after digit always 통 0-125-136-2356 after digit always 툰 0-125-134-25 after digit always 툱 0-125-134-25-13 after digit always 툲 0-125-134-25-356 after digit always 툴 0-125-134-2 after digit always 툵 0-125-134-2-1 after digit always 툶 0-125-134-2-26 after digit always 툷 0-125-134-2-12 after digit always 툸 0-125-134-2-3 after digit always 툹 0-125-134-2-236 after digit always 툺 0-125-134-2-256 after digit always 툻 0-125-134-2-356 after digit always 튼 0-125-246-25 after digit always 튽 0-125-246-25-13 after digit always 튾 0-125-246-25-356 after digit always í‹€ 0-125-246-2 after digit always í‹ 0-125-246-2-1 after digit always í‹‚ 0-125-246-2-26 after digit always 틃 0-125-246-2-12 after digit always í‹„ 0-125-246-2-3 after digit always í‹… 0-125-246-2-236 after digit always 틆 0-125-246-2-256 after digit always 틇 0-125-246-2-356 after digit always í‹´ 0-125-135-25 after digit always 틵 0-125-135-25-13 after digit always í‹¶ 0-125-135-25-356 after digit always 파 0-145-126 after digit always íŒ 0-145-126-1 after digit always 팎 0-145-126-1-1 after digit always íŒ 0-145-126-1-3 after digit always íŒ 0-145-126-25 after digit always 팑 0-145-126-25-13 after digit always 팒 0-145-126-25-356 after digit always 팓 0-145-126-35 after digit always 팔 0-145-126-2 after digit always 팕 0-145-126-2-1 after digit always 팖 0-145-126-2-26 after digit always 팗 0-145-126-2-12 after digit always 팘 0-145-126-2-3 after digit always 팙 0-145-126-2-236 after digit always 팚 0-145-126-2-256 after digit always 팛 0-145-126-2-356 after digit always 팜 0-145-126-26 after digit always íŒ 0-145-126-12 after digit always 팞 0-145-126-12-3 after digit always 팟 0-145-126-3 after digit always 팠 0-145-126-34 after digit always 팡 0-145-126-2356 after digit always 팢 0-145-126-13 after digit always 팣 0-145-126-23 after digit always 팤 0-145-126-235 after digit always 팥 0-145-126-236 after digit always 팦 0-145-126-256 after digit always 팧 0-145-126-356 after digit always í½ 0-145-234-1 after digit always í¾ 0-145-234-1-1 after digit always í¿ 0-145-234-1-3 after digit always 펀 0-145-234-25 after digit always íŽ 0-145-234-25-13 after digit always 펂 0-145-234-25-356 after digit always 펄 0-145-234-2 after digit always 펅 0-145-234-2-1 after digit always 펆 0-145-234-2-26 after digit always 펇 0-145-234-2-12 after digit always 펈 0-145-234-2-3 after digit always 펉 0-145-234-2-236 after digit always 펊 0-145-234-2-256 after digit always 펋 0-145-234-2-356 after digit always 편 0-145-156-25 after digit always 펹 0-145-156-25-13 after digit always 펺 0-145-156-25-356 after digit always 펼 0-145-156-2 after digit always 펽 0-145-156-2-1 after digit always 펾 0-145-156-2-26 after digit always 펿 0-145-156-2-12 after digit always í€ 0-145-156-2-3 after digit always í 0-145-156-2-236 after digit always í‚ 0-145-156-2-256 after digit always íƒ 0-145-156-2-356 after digit always í‰ 0-145-156-2356 after digit always í­ 0-145-136-1 after digit always í® 0-145-136-1-1 after digit always í¯ 0-145-136-1-3 after digit always í° 0-145-136-25 after digit always í± 0-145-136-25-13 after digit always í² 0-145-136-25-356 after digit always í 0-145-136-2356 after digit always 푼 0-145-134-25 after digit always 푽 0-145-134-25-13 after digit always 푾 0-145-134-25-356 after digit always í’€ 0-145-134-2 after digit always í’ 0-145-134-2-1 after digit always í’‚ 0-145-134-2-26 after digit always í’ƒ 0-145-134-2-12 after digit always í’„ 0-145-134-2-3 after digit always í’… 0-145-134-2-236 after digit always í’† 0-145-134-2-256 after digit always í’‡ 0-145-134-2-356 after digit always 픈 0-145-246-25 after digit always 픉 0-145-246-25-13 after digit always 픊 0-145-246-25-356 after digit always 플 0-145-246-2 after digit always í” 0-145-246-2-1 after digit always 픎 0-145-246-2-26 after digit always í” 0-145-246-2-12 after digit always í” 0-145-246-2-3 after digit always 픑 0-145-246-2-236 after digit always í”’ 0-145-246-2-256 after digit always 픓 0-145-246-2-356 after digit always í•€ 0-145-135-25 after digit always í• 0-145-135-25-13 after digit always í•‚ 0-145-135-25-356 after digit always 하 0-245-126 after digit always í•™ 0-245-126-1 after digit always 핚 0-245-126-1-1 after digit always í•› 0-245-126-1-3 after digit always 한 0-245-126-25 after digit always í• 0-245-126-25-13 after digit always 핞 0-245-126-25-356 after digit always 핟 0-245-126-35 after digit always í•  0-245-126-2 after digit always í•¡ 0-245-126-2-1 after digit always í•¢ 0-245-126-2-26 after digit always í•£ 0-245-126-2-12 after digit always 핤 0-245-126-2-3 after digit always í•¥ 0-245-126-2-236 after digit always 핦 0-245-126-2-256 after digit always í•§ 0-245-126-2-356 after digit always 함 0-245-126-26 after digit always í•© 0-245-126-12 after digit always 핪 0-245-126-12-3 after digit always í•« 0-245-126-3 after digit always 핬 0-245-126-34 after digit always í•­ 0-245-126-2356 after digit always í•® 0-245-126-13 after digit always 핯 0-245-126-23 after digit always í•° 0-245-126-235 after digit always 핱 0-245-126-236 after digit always 핲 0-245-126-256 after digit always 핳 0-245-126-356 after digit always í—‰ 0-245-234-1 after digit always í—Š 0-245-234-1-1 after digit always í—‹ 0-245-234-1-3 after digit always í—Œ 0-245-234-25 after digit always í— 0-245-234-25-13 after digit always í—Ž 0-245-234-25-356 after digit always í— 0-245-234-2 after digit always í—‘ 0-245-234-2-1 after digit always í—’ 0-245-234-2-26 after digit always í—“ 0-245-234-2-12 after digit always í—” 0-245-234-2-3 after digit always í—• 0-245-234-2-236 after digit always í—– 0-245-234-2-256 after digit always í—— 0-245-234-2-356 after digit always 현 0-245-156-25 after digit always 혅 0-245-156-25-13 after digit always 혆 0-245-156-25-356 after digit always 혈 0-245-156-2 after digit always 혉 0-245-156-2-1 after digit always 혊 0-245-156-2-26 after digit always 혋 0-245-156-2-12 after digit always 혌 0-245-156-2-3 after digit always í˜ 0-245-156-2-236 after digit always 혎 0-245-156-2-256 after digit always í˜ 0-245-156-2-356 after digit always 형 0-245-156-2356 after digit always 혹 0-245-136-1 after digit always 혺 0-245-136-1-1 after digit always 혻 0-245-136-1-3 after digit always 혼 0-245-136-25 after digit always 혽 0-245-136-25-13 after digit always 혾 0-245-136-25-356 after digit always í™ 0-245-136-2356 after digit always 훈 0-245-134-25 after digit always 훉 0-245-134-25-13 after digit always 훊 0-245-134-25-356 after digit always 훌 0-245-134-2 after digit always í› 0-245-134-2-1 after digit always 훎 0-245-134-2-26 after digit always í› 0-245-134-2-12 after digit always í› 0-245-134-2-3 after digit always 훑 0-245-134-2-236 after digit always í›’ 0-245-134-2-256 after digit always 훓 0-245-134-2-356 after digit always í” 0-245-246-25 after digit always í• 0-245-246-25-13 after digit always í– 0-245-246-25-356 after digit always í˜ 0-245-246-2 after digit always í™ 0-245-246-2-1 after digit always íš 0-245-246-2-26 after digit always í› 0-245-246-2-12 after digit always íœ 0-245-246-2-3 after digit always í 0-245-246-2-236 after digit always íž 0-245-246-2-256 after digit always íŸ 0-245-246-2-356 after digit always 힌 0-245-135-25 after digit always íž 0-245-135-25-13 after digit always 힎 0-245-135-25-356 # For grade 2 versions of these dots, see ko2.ctb. liblouis-2.5.3/tables/bo.ctb0000664000175000017500000001616612161041546012644 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2009 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Tibetan # # Samuel Thibault # # From "Braille without borders" # generated by ttbtest space \s 0 # SPACE punctuation ! 2358 # EXCLAMATION MARK punctuation " 23568 # QUOTATION MARK punctuation # 34568 # NUMBER SIGN punctuation $ 12468 # DOLLAR SIGN punctuation % 1468 # PERCENT SIGN punctuation & 23468 # AMPERSAND punctuation ' 3 # APOSTROPHE punctuation ( 2368 # LEFT PARENTHESIS punctuation ) 3568 # RIGHT PARENTHESIS punctuation * 358 # ASTERISK punctuation + 3468 # PLUS SIGN punctuation , 28 # COMMA punctuation - 36 # HYPHEN-MINUS punctuation . 2568 # FULL STOP punctuation / 348 # SOLIDUS include loweredDigits6Dots.uti punctuation : 258 # COLON punctuation ; 238 # SEMICOLON punctuation < 1268 # LESS-THAN SIGN punctuation = 1234568 # EQUALS SIGN punctuation > 3458 # GREATER-THAN SIGN punctuation ? 268 # QUESTION MARK punctuation @ 47 # COMMERCIAL AT uppercase A 178 # LATIN CAPITAL LETTER A uppercase B 1278 # LATIN CAPITAL LETTER B uppercase C 1478 # LATIN CAPITAL LETTER C uppercase D 14578 # LATIN CAPITAL LETTER D uppercase E 1578 # LATIN CAPITAL LETTER E uppercase F 12478 # LATIN CAPITAL LETTER F uppercase G 124578 # LATIN CAPITAL LETTER G uppercase H 12578 # LATIN CAPITAL LETTER H uppercase I 2478 # LATIN CAPITAL LETTER I uppercase J 24578 # LATIN CAPITAL LETTER J uppercase K 1378 # LATIN CAPITAL LETTER K uppercase L 12378 # LATIN CAPITAL LETTER L uppercase M 13478 # LATIN CAPITAL LETTER M uppercase N 134578 # LATIN CAPITAL LETTER N uppercase O 13578 # LATIN CAPITAL LETTER O uppercase P 123478 # LATIN CAPITAL LETTER P uppercase Q 1234578 # LATIN CAPITAL LETTER Q uppercase R 123578 # LATIN CAPITAL LETTER R uppercase S 23478 # LATIN CAPITAL LETTER S uppercase T 234578 # LATIN CAPITAL LETTER T uppercase U 13678 # LATIN CAPITAL LETTER U uppercase V 123678 # LATIN CAPITAL LETTER V uppercase W 245678 # LATIN CAPITAL LETTER W uppercase X 134678 # LATIN CAPITAL LETTER X uppercase Y 1345678 # LATIN CAPITAL LETTER Y uppercase Z 135678 # LATIN CAPITAL LETTER Z punctuation [ 123568 # LEFT SQUARE BRACKET punctuation \\ 168 # REVERSE SOLIDUS punctuation ] 234568 # RIGHT SQUARE BRACKET punctuation ^ 457 # CIRCUMFLEX ACCENT punctuation _ 456 # LOW LINE punctuation ` 4 # GRAVE ACCENT lowercase a 18 # LATIN SMALL LETTER A lowercase b 128 # LATIN SMALL LETTER B lowercase c 148 # LATIN SMALL LETTER C lowercase d 1458 # LATIN SMALL LETTER D lowercase e 158 # LATIN SMALL LETTER E lowercase f 1248 # LATIN SMALL LETTER F lowercase g 12458 # LATIN SMALL LETTER G lowercase h 1258 # LATIN SMALL LETTER H lowercase i 248 # LATIN SMALL LETTER I lowercase j 2458 # LATIN SMALL LETTER J lowercase k 138 # LATIN SMALL LETTER K lowercase l 1238 # LATIN SMALL LETTER L lowercase m 1348 # LATIN SMALL LETTER M lowercase n 13458 # LATIN SMALL LETTER N lowercase o 1358 # LATIN SMALL LETTER O lowercase p 12348 # LATIN SMALL LETTER P lowercase q 123458 # LATIN SMALL LETTER Q lowercase r 12358 # LATIN SMALL LETTER R lowercase s 2348 # LATIN SMALL LETTER S lowercase t 23458 # LATIN SMALL LETTER T lowercase u 1368 # LATIN SMALL LETTER U lowercase v 12368 # LATIN SMALL LETTER V lowercase w 24568 # LATIN SMALL LETTER W lowercase x 13468 # LATIN SMALL LETTER X lowercase y 134568 # LATIN SMALL LETTER Y lowercase z 13568 # LATIN SMALL LETTER Z punctuation { 23678 # LEFT CURLY BRACKET punctuation | 12568 # VERTICAL LINE punctuation } 35678 # RIGHT CURLY BRACKET punctuation ~ 45 # TILDE punctuation \x00a0 0 # NO-BREAK SPACE letter \x0f40 13 # TIBETAN LETTER KA letter \x0f41 14 # TIBETAN LETTER KHA letter \x0f42 1245 # TIBETAN LETTER GA letter \x0f44 2356 # TIBETAN LETTER NGA letter \x0f45 1456 # TIBETAN LETTER CA letter \x0f46 13456 # TIBETAN LETTER CHA letter \x0f47 12345 # TIBETAN LETTER JA letter \x0f49 345 # TIBETAN LETTER NYA letter \x0f4f 2345 # TIBETAN LETTER TA letter \x0f50 23456 # TIBETAN LETTER THA letter \x0f51 145 # TIBETAN LETTER DA letter \x0f53 1345 # TIBETAN LETTER NA letter \x0f54 1234 # TIBETAN LETTER PA letter \x0f55 12346 # TIBETAN LETTER PHA letter \x0f56 12 # TIBETAN LETTER BA letter \x0f58 134 # TIBETAN LETTER MA letter \x0f59 1346 # TIBETAN LETTER TSA letter \x0f5a 1356 # TIBETAN LETTER TSHA letter \x0f5b 123456 # TIBETAN LETTER DZA letter \x0f5d 2456 # TIBETAN LETTER WA letter \x0f5e 146 # TIBETAN LETTER ZHA letter \x0f5f 234 # TIBETAN LETTER ZA letter \x0f60 1246 # TIBETAN LETTER -A letter \x0f61 245 # TIBETAN LETTER YA letter \x0f62 1235 # TIBETAN LETTER RA letter \x0f63 123 # TIBETAN LETTER LA letter \x0f64 156 # TIBETAN LETTER SHA letter \x0f66 2346 # TIBETAN LETTER SA letter \x0f67 125 # TIBETAN LETTER HA letter \x0f68 1 # TIBETAN LETTER A letter \x0f90 13 # TIBETAN SUBJOINED LETTER KA letter \x0f91 14 # TIBETAN SUBJOINED LETTER KHA letter \x0f92 1245 # TIBETAN SUBJOINED LETTER GA letter \x0f94 2356 # TIBETAN SUBJOINED LETTER NGA letter \x0f95 1456 # TIBETAN SUBJOINED LETTER CA letter \x0f96 13456 # TIBETAN SUBJOINED LETTER CHA letter \x0f97 12345 # TIBETAN SUBJOINED LETTER JA letter \x0f99 345 # TIBETAN SUBJOINED LETTER NYA letter \x0f9f 2345 # TIBETAN SUBJOINED LETTER TA letter \x0fa0 23456 # TIBETAN SUBJOINED LETTER THA letter \x0fa1 145 # TIBETAN SUBJOINED LETTER DA letter \x0fa3 1345 # TIBETAN SUBJOINED LETTER NA letter \x0fa4 1234 # TIBETAN SUBJOINED LETTER PA letter \x0fa5 12346 # TIBETAN SUBJOINED LETTER PHA letter \x0fa6 12 # TIBETAN SUBJOINED LETTER BA letter \x0fa8 134 # TIBETAN SUBJOINED LETTER MA letter \x0fa9 1346 # TIBETAN SUBJOINED LETTER TSA letter \x0faa 1356 # TIBETAN SUBJOINED LETTER TSHA letter \x0fab 123456 # TIBETAN SUBJOINED LETTER DZA letter \x0fad 2456 # TIBETAN SUBJOINED LETTER WA letter \x0fae 146 # TIBETAN SUBJOINED LETTER ZHA letter \x0faf 234 # TIBETAN SUBJOINED LETTER ZA letter \x0fb0 1246 # TIBETAN SUBJOINED LETTER -A letter \x0fb1 245 # TIBETAN SUBJOINED LETTER YA letter \x0fb2 1235 # TIBETAN SUBJOINED LETTER RA letter \x0fb3 123 # TIBETAN SUBJOINED LETTER LA letter \x0fb4 156 # TIBETAN SUBJOINED LETTER SHA letter \x0fb6 2346 # TIBETAN SUBJOINED LETTER SA letter \x0fb7 125 # TIBETAN SUBJOINED LETTER HA letter \x0fb8 1 # TIBETAN SUBJOINED LETTER A space \x2002 0 # EN SPACE space \x2003 0 # EM SPACE space \x2004 0 # THREE-PER-EM SPACE space \x2005 0 # FOUR-PER-EM SPACE space \x2006 0 # SIX-PER-EM SPACE punctuation \x2007 0 # FIGURE SPACE space \x2008 0 # PUNCTUATION SPACE space \x2009 0 # THIN SPACE space \x200a 0 # HAIR SPACE punctuation \x202f 0 # NARROW NO-BREAK SPACE space \x205f 0 # MEDIUM MATHEMATICAL SPACE liblouis-2.5.3/tables/en-us-brf.dis0000664000175000017500000000317412161041546014044 00000000000000# liblouis: en-us-brf.dis # liblouis Output in standard brf format. # This is an example of the proper use of the display opcode. # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com display A 1 display B 12 display C 14 display D 145 display E 15 display F 124 display G 1245 display H 125 display I 24 display J 245 display K 13 display L 123 display M 134 display N 1345 display O 135 display P 1234 display Q 12345 display R 1235 display S 234 display T 2345 display U 136 display V 1236 display W 2456 display X 1346 display Y 13456 display Z 1356 display [ 246 display ] 12456 display _ 456 display \\ 1256 display @ 4 display ^ 45 liblouis-2.5.3/tables/hyph_es_ES.dic0000664000175000017500000001017112161041546014247 00000000000000ISO8859-1 1b2ra 1b2rá 1b2re 1b2ré 1b2ri 1b2rí 1b2ro 1b2ró 1b2ru 1b2rú 1b2la 1b2lá 1b2le 1b2lé 1b2li 1b2lí 1b2lo 1b2ló 1b2lu 1b2lú 1c2ra 1c2rá 1c2re 1c2ré 1c2ri 1c2rí 1c2ro 1c2ró 1c2ru 1c2rú 1c2la 1c2lá 1c2le 1c2lé 1c2li 1c2lí 1c2lo 1c2ló 1c2lu 1c2lú 1d2ra 1d2rá 1d2re 1d2ré 1d2ri 1d2rí 1d2ro 1d2ró 1d2ru 1d2rú 1f2ra 1d2rá 1d2re 1d2ré 1d2ri 1d2rí 1d2ro 1d2ró 1d2ru 1d2rú 1f2la 1f2lá 1f2le 1f2lé 1f2li 1f2lí 1f2lo 1f2ló 1f2lu 1f2lú 1f2ra 1f2rá 1f2re 1f2ré 1f2ri 1f2rí 1f2ro 1f2ró 1f2ru 1f2rú 1g2ra 1g2rá 1g2re 1g2ré 1g2ri 1g2rí 1g2ro 1g2ró 1g2ru 1g2rú 1g2la 1g2lá 1g2le 1g2lé 1g2li 1g2lí 1g2lo 1g2ló 1g2lu 1g2lú 1k2ra 1k2rá 1k2re 1k2ré 1k2ri 1k2rí 1k2ro 1k2ró 1k2ru 1k2rú 1l2la 1l2lá 1l2le 1l2lé 1l2li 1l2lí 1l2lo 1l2ló 1l2lu 1l2lú 1p2ra 1p2rá 1p2re 1p2ré 1p2ri 1p2rí 1p2ro 1p2ró 1p2ru 1p2rú 1p2la 1p2lá 1p2le 1p2lé 1p2li 1p2lí 1p2lo 1p2ló 1p2lu 1p2lú 1t2ra 1t2rá 1t2re 1t2ré 1t2ri 1t2rí 1t2ro 1t2ró 1t2ru 1t2rú 1r2ra 1r2rá 1r2re 1r2ré 1r2ri 1r2rí 1r2ro 1r2ró 1r2ru 1r2rú 1c2ha 1c2há 1c2he 1c2hé 1c2hi 1c2hí 1c2ho 1c2hó 1c2hu 1c2hú 1ba 1bá 1be 1bé 1bi 1bí 1bo 1bó 1bu 1bú 1bü 1ca 1cá 1ce 1cé 1ci 1cí 1co 1có 1cu 1cú 1cü 1da 1dá 1de 1dé 1di 1dí 1do 1dó 1du 1dú 1dü 1fa 1fá 1fe 1fé 1fi 1fí 1fo 1fó 1fu 1fú 1fü 1ga 1gá 1ge 1gé 1gi 1gí 1go 1gó 1gu 1gú 1gü 1ja 1já 1je 1jé 1ji 1jí 1jo 1jó 1ju 1jú 1jü 1ka 1ká 1ke 1ké 1ki 1kí 1ko 1kó 1ku 1kú 1kü 1la 1lá 1le 1lé 1li 1lí 1lo 1ló 1lu 1lú 1lü 1ma 1má 1me 1mé 1mi 1mí 1mo 1mó 1mu 1mú 1mü 1na 1ná 1ne 1né 1ni 1ní 1no 1nó 1nu 1nú 1nü 1ña 1ñá 1ñe 1ñé 1ñi 1ñí 1ño 1ñó 1ñu 1ñú 1ñü 1pa 1pá 1pe 1pé 1pi 1pí 1po 1pó 1pu 1pú 1pü 1qa 1qá 1qe 1qé 1qi 1qí 1qo 1qó 1qú 1qü 1ra 1rá 1re 1ré 1ri 1rí 1ro 1ró 1ru 1rú 1rü 1sa 1sá 1se 1sé 1si 1sí 1so 1só 1su 1sú 1sü 1ta 1tá 1te 1té 1ti 1tí 1to 1tó 1tu 1tú 1tü 1va 1vá 1ve 1vé 1vi 1ví 1vo 1vó 1vu 1vú 1vü 1wa 1wá 1we 1wé 1wi 1wí 1wo 1wó 1wu 1wú 1wü 1xa 1xá 1xe 1xé 1xi 1xí 1xo 1xó 1xu 1xú 1xü 1ya 1yá 1ye 1yé 1yi 1yí 1yo 1yó 1yu 1yú 1yü 1za 1zá 1ze 1zé 1zi 1zí 1zo 1zó 1zu 1zú 1zü h1b h1c h1d h1f h1g h1h h1j h1k h1l h1m h1n h1ñ h1p h1q h1r h1s h1t h1v h1w h1x h1y h1z 1ai 1au 1ei 1eu 1io 1ou 1ia 1ua 1ie 1ue 1oi 1uo 1ui 1iu 1ay 1ey 1oy a1a a1e a1o e1a e1e e1o o1a o1e o1o a1ha a1há á1ha a1he a1hé á1he a1ho a1hó á1ho e1ha e1há é1ha e1he e1hé é1he e1ho e1hó é1ho o1ha o1há ó1ha o1he o1hé ó1he o1ho o1hó ó1ho 1ahy 1ehy 1ohy 1iai 1iei 1uai 1uei 1uau 1iau 1uay 1uey 1guay 1gua 1güa 1gue 1güe 1gui 1güi 1guo 1güo 1bai 1cai 1dai 1fai 1gai 1jai 1kai 1lai 1mai 1nai 1ñai 1pai 1rai 1sai 1tai 1vai 1wai 1xai 1zai 1bau 1cau 1dau 1fau 1gau 1jau 1kau 1lau 1mau 1nau 1ñau 1pau 1rau 1sau 1tau 1vau 1wau 1xau 1zau 1bei 1cei 1dei 1fei 1gei 1jei 1kei 1lei 1mei 1nei 1ñei 1pei 1rei 1sei 1tei 1vei 1wei 1xei 1zei 1beu 1ceu 1deu 1feu 1geu 1jeu 1keu 1leu 1meu 1neu 1ñeu 1peu 1reu 1seu 1teu 1veu 1weu 1xeu 1zeu 1bio 1cio 1dio 1fio 1gio 1jio 1kio 1lio 1mio 1nio 1ñio 1pio 1rio 1sio 1tio 1vio 1wio 1xio 1zio 1bou 1cou 1dou 1fou 1gou 1jou 1kou 1lou 1mou 1nou 1ñou 1pou 1rou 1sou 1tou 1vou 1wou 1xou 1zou 1bia 1cia 1dia 1fia 1gia 1jia 1kia 1lia 1mia 1nia 1ñia 1pia 1ria 1sia 1tia 1via 1wia 1xia 1zia 1bua 1cua 1dua 1fua 1jua 1kua 1lua 1mua 1nua 1ñua 1pua 1qua 1rua 1sua 1tua 1vua 1wua 1xua 1zua 1bie 1cie 1die 1fie 1gie 1jie 1kie 1lie 1mie 1nie 1ñie 1pie 1rie 1sie 1tie 1vie 1wie 1xie 1zie 1bue 1cue 1due 1fue 1jue 1kue 1lue 1mue 1nue 1ñue 1pue 1que 1qué 1rue 1sue 1tue 1vue 1wue 1xue 1zue 1boi 1coi 1doi 1foi 1goi 1joi 1koi 1loi 1moi 1noi 1ñoi 1poi 1roi 1soi 1toi 1voi 1woi 1xoi 1zoi 1buo 1cuo 1duo 1fuo 1juo 1kuo 1luo 1muo 1nuo 1ñuo 1puo 1quo 1ruo 1suo 1tuo 1vuo 1wuo 1xuo 1zuo 1bui 1cui 1dui 1fui 1jui 1kui 1lui 1mui 1nui 1ñui 1pui 1qui 1rui 1sui 1tui 1vui 1wui 1xui 1zui 1biu 1ciu 1diu 1fiu 1giu 1jiu 1kiu 1liu 1miu 1niu 1ñiu 1piu 1riu 1siu 1tiu 1viu 1wiu 1xiu 1ziu 1bay 1cay 1day 1fay 1gay 1jay 1kay 1lay 1may 1nay 1ñay 1pay 1ray 1say 1tay 1vay 1way 1xay 1zay 1bey 1cey 1dey 1fey 1gey 1jey 1key 1ley 1mey 1ney 1ñey 1pey 1rey 1sey 1tey 1vey 1wey 1xey 1zey 1boy 1coy 1doy 1foy 1goy 1joy 1koy 1loy 1moy 1noy 1ñoy 1poy 1roy 1soy 1toy 1voy 1woy 1xoy 1zoy í1a a1í a1ú ú1a e1í í1e e1ú ú1e í1o o1í o1ú ú1o ú1i í1u quei quéi queí queu quéu queú quio quío quió quia quía quiá quie quíe quié guei guéi gueí gueu guéu gueú guio guío guió guia guía guiá guie guíe guié liblouis-2.5.3/tables/loweredDigits6Dots.uti0000664000175000017500000000016312161041546016010 00000000000000digit 0 356 digit 1 2 digit 2 23 digit 3 25 digit 4 256 digit 5 26 digit 6 235 digit 7 2356 digit 8 236 digit 9 35 liblouis-2.5.3/tables/de-g2-core.cti0000664000175000017500000137125612161041546014104 00000000000000# liblouis: German Grade 2 Braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE KURZSCHRIFT - German Grade 2 Braille # # Version 2009-12-04 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- # # Einschränkungen # --------------- # # - Optimiert für Neue Rechtschreibung # - Schweizer ss-Schreibung nicht berücksichtigt # # # Bekannte Probleme # ----------------- # # - Gross-/Kleinschreibung: caps begcaps endcaps ist nicht genug ... # es braucht Auszeichnung im Text. # # - Wortersatzzstrich am Ende: # - Bis jetzt nur die Lautgruppen vor -\s und -,\s. # - Ausformulierte Ausnahmen müssen damit nachgerüstet werden. # # Abzuklären # ---------- # # - "contraction" für Masseinheiten missbrauchen, erfordert eingeschaltetes # lettersign! # # class definitions class a a class b b class c c class d d class e e class er er class f f class h h class g g class i i class j j class k k class l l class m m class n n class r r class s s class t t class u u class z z class kpvw kpvw class konsonant bcdfghjklmnpqrstvwxyz # (4.1 Lautgruppenkürzungen) # Doppelvokale always frisbee 124-1235-24-234-12-15-15 always kaffee 13-1-124-124-15-15 always coffee 6-14-135-124-124-15-15 always toffee 2345-135-124-124-15-15 always dragee 145-1235-1-1245-15-15 always bungee 12-256-1245-15-15 always dorothee 145-26-135-2345-125-15-15 always cheese 1456-15-15-234-15 always pappmaschee 1234-1-1234-1234-134-1-156-15-15 always klischee 13-123-24-156-15-15 always yankee 6-13456-235-13-15-15 always gelee 1245-13456-15-15 always soufflee 234-135-136-124-124-123-15-15 always defilee 145-15-124-24-123-15-15 always klee 13-123-15-15 always renommee 1235-14-135-1346-15-15 always armee 356-134-15-15 always resümee 1235-123456-1256-134-15-15 always schnee 156-1345-15-15 always trainee 2345-1235-1-24-1345-15-15 always pralinee 1234-1235-1-123-35-15-15 always portmonee 1234-26-2345-134-135-1345-15-15 always kanapee 13-235-1-1234-15-15 always portepee 1234-26-236-1234-15-15 always separee 234-15-1234-356-15-15 always referee 1235-15-124-12456-15-15 always schikoree 156-24-13-26-15-15 always spree 234-1234-1235-15-15 always karree 13-356-1235-15-15 always porree 1234-26-1235-15-15 always püree 1234-1256-1235-15-15 always frikassee 124-1235-24-13-1-2346-15-15 always plissee 1234-123-24-2346-15-15 always varietee 1236-356-24-15-2345-15-15 always komitee 13-135-134-24-2345-15-15 always trustee 2345-1235-136-23456-15-15 always frottee 124-1235-135-2345-2345-15-15 always queen 6-12345-136-15-15-1345 always halloween 125-1-12345-135-2456-15-15-1345 always hawaii 125-1-2456-1-24-24 always ascii 1-234-6-14-24-24 always boom 12-135-135-134 always voodoo 1236-135-135-145-135-135 always yahoo 6-13456-1-125-135-135 always waterloo 2456-1-2345-12456-123-135-135 always shampoo 234-125-1-134-1234-135-135 always tattoo 2345-1-2345-2345-135-135 always daewoo 145-1-15-2456-135-135 always zoo 1356-135-135 # ABER (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word aber 1 always aber 2-1 always aberdeen 1-12-12456-145-15-15-1345 midword aberech 1-23-1235-15-1456 midendword abereich 1-23-1235-146-1456 midendword abericht 1-23-2-3456 begmidword aberkann 1-12-12456-13-235-1345 always aberkenn 1-12-12456-13-14-1345 begmidword abernt 1-12-12456-1345-2345 prfword abernte 1-12-12456-1345-236 prfword aberntest 1-12-12456-1345-236-23456 prfword aberntet 1-12-12456-1345-236-2345 prfword aberntete 1-12-12456-1345-236-236 prfword abernteten 1-12-12456-1345-236-2345-14 prfword aberntetest 1-12-12456-1345-236-236-23456 prfword aberntetet 1-12-12456-1345-236-236-2345 always aberrans 1-12-12456-1235-235-234 always aberratio 1-12-12456-1235-1-2345-24-135 always aberration 1-12-12456-1235-5-1345 always aberrier 1-12-12456-1235-346-1235 always aberzieh 1-12-12456-1356-346-125 always aaberg 1-1-12-12456-1245 always cabernet 6-14-1-12-12456-1345-15-2345 sufword faber 124-1-12-12456 midword gaber 1245-1-23-1235 always gaberecht 1245-1-23-1235-2345 sufword haber 125-1-12-12456 always schaber 156-1-12-12456 always makaber 134-1-13-1-12-12456 always kandelaber 13-235-145-13456-1-12-12456 always laber 123-1-12-12456 always annaberg 235-1345-1-12-12456-1245 always araber 356-1-12-12456 always graber 1245-1235-1-12-12456 always traber 2345-1235-1-12-12456 begmidword tabern 2345-1-12-12456-1345 always waber 2456-1-12-12456 # ACH (4.1 Lautgruppenkürzungen) midendword ach 56 endword achip 1-1456-24-1234 endword achips 1-1456-24-1234-234 begword aach 1-1-1456 prfword bachelor 12-1-1456-13456-135-1235 begmidword bachelor 12-1-1456-13456-26 always cach 6-14-1-1456 prfword each 15-1-1456 always beach 12-15-1-1456 always beacht 23-56-2345 prfword beachte 23-56-236 always beachtest 23-56-236-23456 always beachtet 23-56-236-2345 prfword beachtete 23-56-236-236 always teacher 2345-15-1-1456-12456 always teaching 2345-15-1-1456-35-1245 begmidword megach 134-15-1245-1-1456 always diachron 145-24-1-1456-1235-135-1345 always machia 134-1-1456-24-1 always machin 134-1-1456-35 always machis 134-1-1456-24-234 always nikomachisch 1345-24-13-135-134-56-24-156 always macho 134-1-1456-135 begmidword anachron 235-1-1456-1235-135-1345 always coach 6-14-135-1-1456 begword tetrach 2345-15-2345-1235-1-1456 midword tetrach 236-2345-1235-1-1456 always attach 1-2345-2345-1-1456 always blattachsel 12-123-1-2345-2345-56-234-13456 always detach 145-15-2345-1-1456 begmidword metach 134-15-2345-1-1456 begmidword gouach 1245-135-136-1-1456 # ÄHNLICH (4.4 Zweiformige Kürzungen) always ähnlich 345-456 # AL (4.1 Lautgruppenkürzungen) begmidword al 25 always al-\s 25-36-0 always al-,\s 25-36-2-0 always aal 1-1-123 begmidword chinaalk 1456-35-1-25-13 always dalag 145-1-123-1-1245 begmidword daläg 145-1-123-345-1245 prfword daläge 145-1-123-345-12346 always dalieg 145-1-123-346-1245 prfword daliege 145-1-123-346-12346 sufword deal 145-15-1-123 always dealer 145-15-1-123-12456 always idealer 24-145-15-25-12456 always health 125-15-1-123-2345-125 begmidword sofalehn 234-135-124-1-123-2356-1345 begmidword yogalehr 6-13456-135-1245-1-123-2356-1235 begmidword medialeit 134-15-145-24-1-123-146-2345 before l begmidword mafia 134-1-124-24-1 begmidword asialad 1-234-24-1-123-1-145 begmidword asialäd 1-234-24-1-123-345-145 begmidword asialink 1-234-24-1-123-35-13 midword vinzial 1236-35-1356-24-25 begmidword sojalezi 234-135-245-1-123-15-1356-24 before l begmidword zodiakal 1356-135-145-24-1-13-25 before l begmidword wodka 2456-135-145-13-1 begmidword biotikal 12-24-135-2345-24-13-1-123 before l begmidword mokka 134-135-13-13-1 before l begmidword vokal 1236-135-13-25 always tombola 2345-135-134-12-135-123-1 begmidword kanal 13-235-25 before l begmidword sauna 234-16-1345-1 before l begmidword pharma 1234-125-356-134-1 begmidword europalet 126-1235-135-1234-25-15-2345 begmidword europalig 126-1235-135-1234-1-123-45 always nappaleder 1345-1-1234-1234-1-123-15-145-12456 before l begmidword kamera 13-1-134-12456-1 always kameralia 13-1-134-12456-25-24-1 always kameralist 13-1-134-12456-25-24-23456 always kameralistisch 13-1-134-12456-25-5-156 begmidword paraling 1234-356-1-123-35-1245 begmidword paralymp 1234-356-1-123-6-13456-134-1234 before l begmidword tundra 2345-256-145-1235-1 begmidword supraleit 234-136-1234-1235-1-123-146-2345 before l begmidword ultra 136-123-2345-1235-1 before l begword extra 1346-2345-1235-1 before l midword extra 15-6-1346-2345-1235-1 before l begword prosa 12345-234-1 before l midword prosa 1234-1235-135-234-1 begmidword metaling 134-15-2345-1-123-35-1245 begmidword metalog 134-15-2345-1-123-135-1245 always rastalock 1235-1-23456-1-123-135-46 begmidword lavalamp 123-1-1236-1-123-1-134-1234 begmidword lavalämp 123-1-1236-1-123-345-134-1234 before l begmidword maya 134-1-6-13456-1 before l begmidword pizza 1234-24-1356-1356-1 # ALL (4.3.5 Einformige Kürzungen, nur mit Erweiterung) always all 1-12345 sufword alle 1-15 always alledem 1-15-2-12356 always allee 1-12345-15-15 # HOMONYM always alleen 1-12345-15-14 sufword allein 1-1246 endword allein 1-1246 endword alleine 1-1246-15 sufword allel 1-12345-13456 sufword allen 1-14 sufword allend 1-12345-14-145 sufword allem 1-12356 sufword allemal 1-15-134 always allemand 1-12345-12356-235-145 sufword aller 1-12456 sufword alleraller 1-12456-1-12456 sufword alleralleraller 1-12456-1-12456-1-12456 sufword zualler 2-1356-1-12456 sufword zualleraller 2-1356-1-12456-1-12456 begmidword herzaller 125-12456-1356-1-12456 sufword alles 1-123456 word allesamt 1-15-234-1-134-2345 always alleg 1-12345-15-1245 prfword allergen 1-12345-12456-1245-14 prfword allergene 1-12345-12456-1245-14-15 prfword allergenen 1-12345-12456-1245-14-14 prfword allergens 1-12345-12456-1245-14-234 always allergie 1-12345-12456-1245-346 always allergien 1-12345-12456-1245-24-14 always allergiker 1-12345-12456-1245-24-13-12456 always allergisch 1-12345-12456-1245-24-156 always allergolo 1-12345-12456-1245-135-123-135 always alley 1-12345-15-6-13456 # Alte Rechtschreibung always balleben 12-25-123-12-14 # Alte Rechtschreibung always ballehr 12-25-123-2356-1235 # Alte Rechtschreibung always ballizenz 12-25-123-24-1356-14-1356 begmidword modal 134-135-145-25 begmidword ideal 24-145-15-25 begmidword real 1235-15-25 begmidword regal 1235-15-1245-25 # Alte Rechtschreibung sufword schalloch 156-25-123-135-1456 # Alte Rechtschreibung sufword schallöch 156-25-123-246-1456 begmidword labial 123-1-12-24-25 begmidword radial 1235-1-145-24-25 begmidword kollegial 13-135-12345-15-1245-24-25 begmidword filial 124-24-123-24-25 begmidword kolonial 13-135-123-135-1345-24-25 begmidword gymnasial 1245-6-13456-134-1345-1-234-24-25 begmidword trivial 2345-1235-24-1236-24-25 begmidword axial 1-6-1346-24-25 begmidword glazial 1245-123-1-1356-24-25 begmidword spezial 234-1234-15-1356-24-25 begmidword fokal 124-135-13-25 begmidword formal 124-26-134-25 begmidword maximal 134-1-6-1346-24-134-25 begmidword minimal 134-35-24-134-25 begmidword normal 1345-26-134-25 begmidword final 124-35-25 begmidword kriminal 13-1235-24-134-35-25 begmidword kantonal 13-235-2345-135-1345-25 begmidword kommunal 13-1346-256-25 begmidword nominal 1345-135-134-35-25 begmidword original 26-45-35-25 begmidword personal 1234-1345-25 begmidword regional 1235-15-1245-24-135-1345-25 begmidword national 1345-5-1345-25 begmidword spinal 234-1234-35-25 begmidword terminal 2345-12456-134-35-25 begmidword astral 1-23456-1235-25 begmidword general 1245-14-12456-25 begmidword lateral 123-1-2345-12456-25 begmidword natural 1345-2345-25 begmidword spektral 234-1234-15-13-2345-1235-25 begmidword spiral 234-1234-24-1235-25 begmidword oral 26-25 midword orallür 26-1-12345-1256-1235 always korall 13-26-1-12345 begmidword moral 134-26-25 begmidword zentral 1356-14-2345-1235-25 begmidword zerebral 1356-12456-15-12-1235-25 begmidword integral 35-236-1245-1235-25 begmidword guttural 1245-136-2345-2345-136-1235-25 begmidword salleist 234-25-123-146-23456 begmidword dorsal 145-26-234-25 begmidword nasal 1345-1-234-25 begmidword universal 256-24-1236-12456-234-25 begmidword palatal 1234-25-1-2345-25 # Alte Rechtschreibung always metalleiter 134-15-2345-25-123-146-2345-12456 begmidword dental 145-14-2345-25 begmidword frontal 124-1235-135-1345-2345-25 begmidword horizontal 125-26-24-1356-135-1345-2345-25 begmidword okzipital 135-13-1356-24-1234-24-2345-25 begmidword dual 145-136-25 begmidword lingual 123-35-1245-136-25 begmidword sexual 234-15-6-1346-136-25 begmidword festival 124-15-23456-24-1236-25 # Alte Rechtschreibung begmidword schallehr 156-25-123-2356-1235 # Alte Rechtschreibung begmidword schalleit 156-25-123-146-2345 begmidword vokalläng 1236-135-13-25-5-123-1245 begmidword schmallipp 156-134-25-123-24-1234-1234 # alte Rechtschreibung begmidword kristalleuch 13-1235-24-23456-25-123-126-1456 # alte Rechtschreibung begmidword kristallüst 13-1235-24-23456-25-123-1256-23456 begmidword wallaus 2456-25-123-16-234 # ALS (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word als 146 # ALSO (4.4 Zweiformige Kürzungen) always also 1-135 always realsozial 1235-15-25-234-123 begmidword spezial 234-1234-15-1356-24-25 begmidword vokalsol 1236-135-13-25-234-135-123 begmidword kanalsohl 13-235-25-234-135-125-123 begmidword national 1345-5-1345-25 begmidword zentral 1356-14-2345-1235-25 begmidword kontinental 13-135-1345-2345-35-14-2345-25 begmidword talsohl 2345-25-234-135-125-123 begmidword orbital 26-12-24-2345-25 begmidword instrumental 35-23456-1235-136-134-14-2345-25 # AN (4.1 Lautgruppenkürzungen) word an 235 begmidword an 235 always an-\s 235-36-0 always an-,\s 235-36-2-0 always anistisch 235-5-156 always anation 1-1345-5-1345 always afrikaans 1-124-1235-24-13-1-1-1345-234 always saanen 234-1-1-1345-14 always emanation 12356-235-5-1345 always trepanation 2345-1235-15-1234-235-5-1345 always andromedanebel 235-145-1235-135-134-15-145-1-1345-15-12-13456 always daneben 145-1-1345-12 always danieden 145-1-1345-346-145-14 always danieder 145-1-1345-346-145-12456 always lambda 123-1-134-12-145-1 prfword bean 12-15-1-1345 prfword beans 12-15-1-1345-234 always clean 6-14-123-15-1-1345 always orleans 26-123-15-1-1345-234 always jean 245-15-1-1345 always peanut 1234-15-1-1345-136-2345 begmidword liganeu 123-45-1-1345-126 always liganiveau 123-45-1-1345-24-1236-15-16 begmidword alphanum 25-1234-125-1-1345-136-134 always olympia 135-123-6-13456-134-1234-24-1 always arekanuss 356-15-13-1-1345-136-2346 begmidword arekanüss 356-15-13-1-1345-1256-2346 begmidword amerikan 1-134-12456-24-13-235 always kolanuss 13-135-123-1-1345-136-2346 begmidword kolanüss 13-135-123-1-1345-1256-2346 begmidword supranation 234-136-1234-1235-1-1345-5-1345 begmidword supranatur 234-136-1234-1235-1-1345-2345 always intranet 35-2345-1235-1-1345-15-2345 always paranuss 1234-356-1-1345-136-2346 begmidword paranüss 1234-356-1-1345-1256-2346 # ANDER ÄNDER (4.3.6 Kommakürzungen) always ander 2-12456 always anders 2-12456-234 always änder 5-12456 always anderlecht 235-145-12456-123-15-1456-2345 sufword andersen 235-145-12456-234-14 always mäander 134-345-235-145-12456 always banderill 12-235-145-12456-24-12345 begmidword banderol 12-235-145-12456-135-123 always bänder 12-345-1345-145-12456 always abänder 1-12-5-12456 always erbänderung 12456-12-5-12456-136 always pfänder 1234-124-345-1345-145-12456 sufword leander 123-15-235-145-12456 always oleander 135-123-15-235-145-12456 begmidword neandert 1345-15-235-145-12456-2345 always ugander 136-1245-235-145-12456 always schänder 156-345-1345-145-12456 always koriander 13-26-24-235-145-12456 always kander 13-235-145-12456 prfword lander 123-235-145-12456 always landerdbeer 123-235-145-12456-145-12-15-15-1235 always landerecht 123-235-145-15-1235-2345 always salander 234-25-235-145-12456 always flandern 124-123-235-145-12456-1345 midendword llander 12345-235-145-12456 always länder 123-345-1345-145-12456 always geländer 12346-123-345-1345-145-12456 midendword lländer 12345-345-1345-145-12456 always landerwerb 123-235-145-12456-2456-12456-12 begmidword landerzieh 123-235-145-12456-1356-346-125 sufword olander 135-123-235-145-12456 always neulander 1345-126-123-235-145-12456 always manderscheid 134-235-145-12456-156-146-145 always salamander 234-25-1-134-235-145-12456 always anaximander 235-1-6-1346-24-134-235-145-12456 always commander 6-14-135-1346-235-145-12456 sufword expander 1346-1234-235-145-12456 midendword expander 15-6-1346-1234-235-145-12456 always ränder 1235-345-1345-145-12456 always temperatur 2345-12356-1234-12456-1-2345-136-1235 begmidword randerhol 1235-235-145-12456-125-135-123 begmidword randerschein 1235-235-145-12456-156-1246 always brander 12-1235-235-145-12456 begmidword branderreg 12-1235-235-145-12456-1235-15-1245 always palisander 1234-25-24-234-235-145-12456 sufword sander 234-235-145-12456 always cuandero 6-14-136-235-145-12456-135 always ruander 1235-136-235-145-12456 always vander 1236-235-145-12456 always wander 2456-235-145-12456 always gewänder 12346-2456-345-1345-145-12456 always alexander 25-15-6-1346-235-145-12456 always zander 1356-235-145-12456 # AR (4.1 Lautgruppenkürzungen) begmidword ar 356 always ar-\s 356-36-0 always ar-,\s 356-36-2-0 before r begmidword kuba 13-136-12-1 always amerika 1-134-12456-24-13-1 before r always afrika 1-124-1235-24-13-1 always granola 1245-1235-235-135-123-1 always panama 1234-235-1-134-1 always komma 13-1346-1 begmidword kommand 13-1346-235-145 always klima 13-123-24-134-1 always aroma 356-135-134-1 always china 1456-35-1 before r always henna 125-14-1345-1 always europa 126-1235-135-1234-1 sufword extra 1346-2345-1235-1 midendword extra 15-6-1346-2345-1235-1 always kamera 13-1-134-12456-1 always kassandra 13-1-2346-235-145-1235-1 sufword areligiös 1-1235-13456-45-24-246-234 midword areligiös 1-1235-13456-45-24-246-234 midendword areport 1-1235-15-1234-26-2345 midword arezep 1-1235-15-1356-15-1234 begword arhythm 1-1235-125-6-13456-2345-125-134 midword arhythm 1-1235-125-6-13456-2345-125-134 always aar 1-1-1235 always teneriffa 2345-14-12456-24-124-124-1 midword aarithmet 1-356-24-2345-125-134-15-2345 prfword aarmee 1-356-134-15-15 always aarmeen 1-356-134-15-14 begmidword barbaross 12-356-12-1-1235-135-2346 always learn 123-15-1-1235-1345 always clear 6-14-123-15-1-1235 always hearing 125-15-1-1235-35-1245 always pearl 1234-15-1-1235-123 begmidword shakespear 234-125-1-13-123456-1234-15-1-1235 always search 234-15-1-1235-1456 sufword sears 234-15-1-1235-234 always tearoom 2345-15-1-1235-135-135-134 always wear 2456-15-1-1235 before r begmidword sofa 234-135-124-1 always ligarund 123-45-1-1235-256-145 always diarahm 145-24-1-1235-1-125-134 begmidword diarähm 145-24-1-1235-345-125-134 begmidword mafiaroll 134-1-124-24-1-1235-135-12345 always inkareich 35-13-1-1235-146-1456 always board 12-135-1-1235-145 always roaring 1235-135-1-1235-35-1245 always infrarot 35-124-1235-1-1235-135-2345 prfword infrarote 35-124-1235-1-1235-135-236 begmidword toraroll 2345-26-1-1235-135-12345 begmidword thoraroll 2345-125-26-1-1235-135-12345 always hurraruf 125-136-1235-1235-1-1235-136-124 always ultrarot 136-123-2345-1235-1-1235-135-2345 prfword ultrarote 136-123-2345-1235-1-1235-135-236 always rosarot 1235-135-234-1-1235-135-2345 prfword rosarote 1235-135-234-1-1235-135-236 always metareflex 134-15-2345-1-1235-15-124-123-15-6-1346 before r begmidword manta 134-235-2345-1 before r begmidword magenta 134-1-1245-14-2345-1 begmidword costaric 6-14-135-23456-1-1235-24-6-14 # ARBEIT (4.4 Zweiformige Kürzungen) always arbeit 356-12 syllable beitrag 2-12-2345-1245 syllable beiträg 2-12-5-2345-1245 # -ATION (4.2.2 b) Nachsilbenkürzungen) midendword ation 5-1345 # -ATIV (4.2.2 b) Nachsilbenkürzungen) midendword ativ 5-1236 # AU (4.1 Lautgruppenkürzungen) word au 6-16 always au 16 always kapernaum 13-1-1234-12456-1345-1-136-134 always europa 126-1235-135-1234-1 before u begword extra 1346-2345-1235-1 before u midword extra 15-6-1346-2345-1235-1 always galauniform 1245-25-1-256-24-124-26-134 always intrauterin 35-2345-1235-1-136-2345-12456-35 always kamera 13-1-134-12456-1 always pharma 1234-125-356-134-1 # ÄU (4.1 Lautgruppenkürzungen) always äu 34 always skarabäus 234-13-356-1-12-345-136-234 always thaddäus 2345-125-1-145-145-345-136-234 always zebedäus 1356-15-23-145-345-136-234 midendword igäum 24-1245-345-136-134 always apogäum 1-1234-135-1245-345-136-134 always matthäus 134-1-2345-2345-125-345-136-234 always trochäus 2345-1235-135-1456-345-136-234 always jubiläum 245-136-12-24-123-345-136-134 always ptolemäus 1234-2345-135-123-12356-345-136-234 always bartimäus 12-356-2345-24-134-345-136-234 always bartholomäus 12-356-2345-125-135-123-135-134-345-136-234 always borromäus 12-26-1235-135-134-345-136-234 always athenäum 1-2345-125-14-345-136-134 always piräus 1234-24-1235-345-136-234 # AUCH (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word auch 34 # AUF (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word auf 16 always auf-\s 2-16-36-0 always auf 2-16 sufword bau 12-16 always baum 12-16-134 always baumaschin 12-16-134-156 always baumaterial 12-16-134-123 always abbau 1-12-12-16 always ackerbau 1-46-12456-12-16 always neubau 1345-126-12-16 syllable aufbau 2-16-12-16 always aufberei 2-16-23-1235-146 always kaufberei 13-16-124-23-1235-146 always laufberei 123-16-124-23-1235-146 always durchlauf 2-1456-123-16-124 prfword signal 234-45-1345-1-123 begmidword signal 234-45-1345-25 syllable aufbesser 2-16-234-234 syllable aufbewahr 2-16-23-2456-125 always aufgebot 2-16-12346-12-135-2345 prfword aufgebote 2-16-12346-12-135-236 syllable aufheb 2-16-125-15-12 syllable aufhäng 2-16-125-345-1345-1245 syllable aufhänge 2-16-125-345-1345-12346 syllable aufhängen 2-16-125-345-1345-1245-14 syllable aufhängenas 2-16-125-345-1345-12346-1345-1-234 syllable aufhänger 2-16-125-345-1345-1245-12456 syllable aufklär 2-16-13-123-345-1235 syllable aufkomm 2-16-13-1346 syllable auflauf 2-16-123-16-124 syllable aufläuf 2-16-123-34-124 syllable aufmach 2-16-134-56 syllable aufruf 2-16-1235-136-124 syllable aufruhr 2-16-1235-136-125-1235 syllable aufschrei 2-16-156-1235-146 syllable aufschreib 2-16-156-12 syllable daraufschreib 2-16-156-12 syllable umlaufschreiben 136-134-123-16-124-156-12-14 syllable aufschwung 2-16-156-2456-256-1245 syllable aufschwün 2-16-156-2456-1256-1345 syllable aufstieg 2-16-23456-346-1245 prfword aufstiege 2-16-23456-346-12346 syllable auftrag 2-16-2345-1245 syllable aufträg 2-16-5-2345-1245 syllable auftrags 2-16-2345-1245-234 syllable auftrieb 2-16-2345-1235-346-12 syllable anbau 235-12-16 always ärmel 345-1235-134-13456 begmidword wärmel 2456-345-1235-134-15-123 begword ausbau 34-12-16 midendword ausbau 16-234-12-16 always baufach 12-16-124-56 always baufähig 12-16-124-345-125-45 always baufällig 12-16-5-124-12345-45 always baufehler 12-16-124-2356-123-12456 always baufertig 12-16-124-45 always baufest 12-16-124-15-23456 begmidword baufinanzier 12-16-124-35-235-1356-346-1235 prfword baufinanzier 12-16-124-35-235-1356-24-12456 prfword baufinanziers 12-16-124-35-235-1356-24-12456-234 begmidword baufirm 12-16-124-24-1235-134 begmidword baufläch 12-16-124-123-345-1456 always bauflucht 12-16-124-123-136-1456-2345 begmidword bauförder 12-16-124-246-1235-145-12456 always bauform 12-16-124-26-134 begmidword bauforsch 12-16-124-26-156 begmidword baufort 12-16-124-26-2345 always baufrei 12-16-124-1235-146 begmidword bauführ 12-16-124-125 always beaufort 12-15-16-124-26-2345 always niveau 1345-24-1236-15-16 begmidword blaufarb 12-123-16-124-356-12 begmidword blaufärb 12-123-16-124-345-1235-12 begmidword blaufäul 12-123-16-124-34-123 begmidword blaufelch 12-123-16-124-13456-1456 begmidword blaufich 12-123-16-124-3456 always blaufilter 12-123-16-124-24-123-2345-12456 begmidword chauff 1456-16-124-124 syllable fuchs 124-136-1456-234 syllable füchs 124-1256-1456-234 always gaufürst 1245-16-124-1256-1235-23456 begmidword graufäul 1245-1235-16-124-34-123 always graufisch 1245-1235-16-124-24-156 always hauf 125-16-124 always nahauf 1345-1-125-2-16 always frühauf 124-1235-1256-125-2-16 begmidword stehauf 23456-2356-2-16 begmidword viehauf 1236-346-125-2-16 always kabeljau 13-1-12-13456-245-16 always kauf 13-16-124 always hypothek 125-6-13456-1234-135-2345-125-15-13 always klinik 13-123-35-24-13 always logistik 123-135-1245-24-23456-24-13 always mathematik 134-1-2345-125-12356-1-2345-24-13 always physik 1234-125-6-13456-234-24-13 begmidword grafikauf 1245-1235-1-124-24-13-2-16 begmidword graphikauf 1245-1235-1-1234-125-24-13-2-16 begmidword bankauf 12-235-13-2-16 begmidword schwenkauf 156-2456-14-13-2-16 begmidword denkaufga 145-14-13-2-16-1245-1 begmidword lenkauf 123-14-13-2-16 begmidword funkauf 124-256-13-2-16 begmidword parkauf 1234-356-13-2-16 begmidword werkauf 2456-12456-13-2-16 always knauf 13-1345-16-124 always lauf 123-16-124 always eilauftrag 146-123-2-16-2345-1245 always eilaufträg 146-123-2-16-5-2345-1245 always monopol 134-135-1345-135-1234-135-123 always stuhlauf 23456-136-125-123-2-16 always teilauf 2345-146-123-2-16 always umlauf 136-134-123-16-124 always schulauf 156-136-123-2-16 midendword laufbau 123-2-16-12-16 midendword laufnehm 123-2-16-1345-125 midendword laufnahm 123-2-16-1345-134 midendword laufbereitung 123-2-16-23-1235-146-2345-136 midendword laufklär 123-2-16-13-123-345-1235 always schallaufnehm 156-1-12345-2-16-1345-125 always plateauform 1234-123-1-2345-15-16-124-26-134 begmidword plateauförm 1234-123-1-2345-15-16-124-246-1235-134 begmidword schauf 156-16-124 begmidword geschauf 12346-156-16-124 always mischauf 134-24-156-2-16 always tischauf 2345-24-156-2-16 always frischauf 124-1235-24-156-2-16 always arschauf 356-156-2-16 always schnauf 156-1345-16-124 always geschnauf 12346-156-1345-16-124 # HOMONYM always rauf 1235-2-16 always raufaser 1235-16-124-1-234-12456 always raufbold 1235-16-124-12-135-123-145 prfword raufe 1235-16-124-15 prfword raufen 1235-16-124-14 always raufend 1235-16-124-14-145 prfword raufer 1235-16-124-12456 always rauferei 1235-16-124-12456-146 always raufhandel 1235-16-124-125-145-13456 always raufhändel 1235-16-124-5-125-145-13456 midendword rauflieger 1235-2-16-123-346-1245-12456 always rauflust 1235-16-124-123-136-23456 always raufrost 1235-16-124-1235-135-23456 prfword raufst 1235-16-124-23456 always rauft 1235-16-124-2345 always drauf 145-1235-2-16 after r midendword auftrag 2-16-2345-1245 after r midendword aufträg 2-16-5-2345-1245 always lackier 123-1-46-346-1235 always grammier 1245-1235-1-1346-346-1235 always reparatur 1235-15-1234-356-1-2345-136-1235 always gebühr 12346-12-1256-125-1235 always lehrauf 123-2356-1235-2-16 prfword raufte 1235-16-124-236 prfword rauftest 1235-16-124-236-23456 prfword rauftet 1235-16-124-236-2345 always raufutter 1235-16-124-136-2345-2345-12456 always raufuß 1235-16-124-136-2346 always raufüß 1235-16-124-1256-2346 begmidword wiederauf 346-145-2-16 always trauf 2345-1235-16-124 always sauf 234-16-124 always glasauf 1245-123-1-234-2-16 always standsauf 2-23456-234-2-16 always fondsauf 124-135-1345-145-234-2-16 always tagsauf 2345-1-1245-234-2-16 midword ungsauf 136-234-2-16 always reichsauf 1235-146-1456-234-2-16 always bereichsauf 23-1235-146-1456-234-2-16 midword ationsauf 5-1345-234-2-16 always stücksauf 23456-1256-46-234-2-16 always flussauf 124-123-136-2346-2-16 always budgetsauf 12-136-145-12346-2345-234-2-16 midword schaftsauf 156-234-2-16 always hausauf 125-16-234-2-16 always tauf 2345-16-124 always spätauf 234-1234-345-2345-2-16 always porträtauf 1234-26-2345-1235-345-2345-2-16 always etatauf 15-2345-1-2345-2-16 always privatauf 1234-1235-24-1236-1-2345-2-16 always stadtauf 23456-1-145-2345-2-16 always mietauf 134-346-2345-2-16 always magnetauf 134-1-1245-1345-15-2345-2-16 always budgetauf 12-136-145-12346-2345-2-16 always internetauf 35-2345-12456-1345-15-2345-2-16 always luftauf 123-136-124-2345-2-16 always machtauf 134-56-2345-2-16 always nachtauf 1345-56-2345-2-16 always schichtauf 156-3456-2345-2-16 always frachtauf 124-1235-56-2345-2-16 always dichtauf 145-3456-2345-2-16 begword lichtauf 123-3456-2345-2-16 midword lichtauf 456-2345-2-16 always portraitauf 1234-26-2345-1235-1-24-2345-2-16 always kreditauf 13-1235-15-145-24-2345-2-16 always aktauf 1-13-2345-2-16 always nacktauf 1345-1-46-2345-2-16 midword jektauf 245-15-13-2345-2-16 always direktauf 145-24-1235-15-13-2345-2-16 always marktauf 134-356-13-2345-2-16 always schaltauf 156-25-2345-2-16 always weltauf 2456-13456-2345-2-16 always momentauf 134-135-134-14-2345-2-16 always notauf 1345-135-2345-2-16 always brotauf 12-1235-135-2345-2-16 always startauf 23456-356-2345-2-16 always wertauf 2456-12456-2345-2-16 always fahrtauf 2-1235-2345-2-16 always portauf 1234-26-2345-2-16 always wortauf 2456-26-2345-2-16 always bettauf 23-2345-2345-2-16 always mattauf 134-1-2345-2345-2-16 always ballettauf 12-1-12345-15-2345-2345-2-16 syllable aufbau 2-16-12-16 syllable aufsicht 2-16-234-3456-2345 begmidword stauf 23456-16-124 midword staufbr 23456-2-16-12-1235 midword stauflös 23456-2-16-123-246-234 midendword staufseher 23456-2-16-234-2356-12456 midendword stauftrag 23456-2-16-2345-1245 midword staufträg 23456-2-16-5-2345-1245 begmidword gastauf 1245-1-23456-2-16 begmidword knastauf 13-1345-1-23456-2-16 begmidword kindstauf 13-35-145-234-2345-16-124 begmidword postauf 1234-135-23456-2-16 begmidword erstauf 12456-23456-2-16 begmidword wurstauf 2456-136-1235-23456-2-16 begmidword blutauf 12-123-136-2345-2-16 begword textauf 2345-15-6-1346-2345-2-16 midword textauf 236-6-1346-2345-2-16 # AUS- (4.2.1 Vorsilbenkürzungen) begword aus 34 word aus-\s 34-36-0 always auschwitz 16-156-2456-24-2345-1356 begmidword auspizi 16-234-1234-24-1356-24 sufword austen 16-23456-14 always auster 16-23456-12456 sufword austin 16-23456-35 begmidword austral 16-23456-1235-25 begmidword australi 16-23456-1235-25-24 always austria 16-23456-1235-24-1 always austrones 16-23456-1235-135-1345-123456 # BE (4.1 Lautgruppenkürzungen) word be 12-15 begmidword be 23 always be-\s 23-36-0 always be-,\s 23-36-2-0 sufword beagl 12-15-1-1245-123 always beamen 12-15-1-134-14 always beamer 12-15-1-134-12456 prfword gebeamt 12346-12-15-1-134-2345 always beatband 12-15-1-2345-12-235-145 always beatm 23-1-2345-134 always beatmusik 12-15-1-2345-134-13 begmidword beatri 23-1-2345-1235-24 before konsonant begmidword beat 12-15-1-2345 always offbeat 135-124-124-12-15-1-2345 midendword stoffbeatmung 23456-135-124-124-23-1-2345-134-136 always off-beat 135-124-124-36-12-15-1-2345 always computerbeat 6-14-135-134-1234-136-2345-12456-12-15-1-2345 prfword beau 12-15-16 always beaujolais 12-15-16-245-135-123-1-24-234 always beaulieu 12-15-16-123-24-126 prfword beaus 12-15-16-234 always beautiful 12-15-16-2345-24-124-136-123 always beauty 12-15-16-2345-6-13456 always farbecht 124-356-12-15-1456-2345 prfword farbechte 124-356-12-15-1456-236 always halbedel 125-25-12-15-145-13456 prfword bee 12-15-15 prfword beede 12-15-15-145-15 prfword beeden 12-15-15-145-14 always beef 12-15-15-124 always beelz 12-15-15-123-1356 always beep 12-15-15-1234 prfword beer 12-15-15-1235 prfword beere 12-15-15-1235-15 prfword beeren 12-15-15-1235-14 prfword beers 12-15-15-1235-234 prfword bees 12-15-15-234 always beet 12-15-15-2345 prfword beete 12-15-15-236 always beug 12-126-1245 always halbesel 125-25-12-123456-13456 prfword beuge 12-126-12346 always beugebeweg 12-126-12346-23-2456-1245 before h begmidword beuge 12-126-12346 before m begmidword beuge 12-126-12346 before s begmidword beuge 12-126-12346 always beul 12-126-123 always beuren 12-126-1235-14 begmidword beurr 12-126-1235-1235 always beute 12-126-236 always beutel 12-126-2345-13456 always beuten 12-126-2345-14 always beuter 12-126-2345-12456 always beutl 12-126-2345-123 always beutn 12-126-2345-1345 always beutung 12-126-2345-136 always beuschel 12-126-156-13456 always beuys 12-126-6-13456-234 always abbey 1-12-12-15-6-13456 always ribeyesteak 1235-24-12-15-6-13456-15-23456-15-1-13 midword bex 12-15-6-1346 always abebb 1-12-15-12-12 sufword abel 1-12-13456 always frisbee 124-1235-24-234-12-15-15 # BEh always behennuss 12-2356-14-1345-136-2346 always behennüss 12-2356-14-1345-1256-2346 always behmlot 12-2356-134-123-135-2345 always behr 12-2356-1235 prfword gabbeh 1245-1-12-12-15-125 begmidword gabbeh 1245-1-12-12-2356 # BEl prfword bel 12-13456 word bela 12-13456-1 always belami 12-13456-1-134-24 always belarus 12-13456-1-1235-136-234 always belarussisch 12-13456-1-1235-136-2346-24-156 always belcanto 12-13456-6-14-235-2345-135 always belchen 12-13456-1456-14 always belemnit 12-13456-12356-1345-24-2345 always belesprit 12-13456-123456-1234-1235-24-2345 always belfast 12-13456-124-1-23456 always belfer 12-13456-124-12456 begmidword belgi 12-13456-1245-24 always belgrad 12-13456-1245-1235-1-145 prfword belial 12-13456-24-1-123 begmidword belial 12-13456-24-25 prfword beliar 12-13456-24-1-1235 begmidword beliar 12-13456-24-356 begmidword belind 12-13456-35-145 begmidword beliz 12-13456-24-1356 always belkanto 12-13456-13-235-2345-135 midendword belloch 12-13456-123-135-1456 sufword belm 12-13456-134 endword beln 12-13456-1345 always belorussisch 12-13456-135-1235-136-2346-24-156 prfword belsazar 12-13456-234-1-1356-1-1235 begmidword belsazar 12-13456-234-1-1356-356 sufword belt 12-13456-2345 always beluga 12-13456-136-1245-1 always belutsch 12-13456-136-2345-156 begmidword belved 12-13456-1236-15-145 always belz 12-13456-1356 word abel 1-12-13456 midendword derabel 145-12456-1-12-13456 always miserabel 134-24-234-12456-1-12-13456 always babel 12-1-12-13456 midendword dabel 145-1-12-13456 always permeabel 1234-12456-134-15-1-12-13456 always fabel 124-1-12-13456 always gabel 1245-1-12-13456 before l begmidword eingabe 1246-1245-1-23 before l begmidword wiedergabe 346-145-1245-1-23 before l begword ausgabe 34-1245-1-23 before l midword ausgabe 16-234-1245-1-23 always variabel 1236-356-24-1-12-13456 always justiziabel 245-136-23456-24-1356-24-1-12-13456 always kabel 13-1-12-13456 always label 123-1-12-13456 begmidword flabellin 124-123-1-23-12345-35 midendword llabel 12345-1-12-13456 always blamabel 12-123-1-134-1-12-13456 always nabel 1345-1-12-13456 always inkunabel 35-13-256-1-12-13456 always annabell 235-1345-1-23-12345 always schnabel 156-1345-1-12-13456 always schnäbel 156-1345-345-12-13456 always palpabel 1234-25-1234-1-12-13456 always rabel 1235-1-12-13456 always parabel 1234-356-1-12-13456 always parabellum 1234-356-1-23-12345-136-134 always sabel 234-1-12-13456 always isabell 24-234-1-23-12345 always rosabell 1235-135-234-1-23-12345 always säbel 234-345-12-13456 always tabel 2345-1-12-13456 always tabell 2345-1-23-12345 always schwäbel 156-2456-345-12-13456 always babbel 12-1-12-12-13456 always kabbel 13-1-12-12-13456 always quabbel 6-12345-136-1-12-12-13456 always brabbel 12-1235-1-12-12-13456 always grabbel 1245-1235-1-12-12-13456 always schräbbel 156-1235-345-12-12-13456 always krabbel 13-1235-1-12-12-13456 always sabbel 234-1-12-12-13456 always wabbel 2456-1-12-12-13456 midendword ibbel 24-12-12-13456 always goebbels 1245-135-15-12-12-13456-234 midendword ubbel 136-12-12-13456 always bebel 23-12-13456 begword probebelast 12345-23-23-123-1-23456 always hebel 125-15-12-13456 always hebelist 125-15-23-123-24-23456 always giebel 1245-346-12-13456 always liebel 123-346-12-13456 always zwiebel 1356-2456-346-12-13456 always nebel 1345-15-12-13456 always feldwebel 124-13456-145-2456-15-12-13456 always bibel 12-24-12-13456 always deibel 145-146-12-13456 always weibel 2456-146-12-13456 always fibel 124-24-12-13456 always erigibel 12456-45-24-12-13456 always reagibel 1235-15-1-1245-24-12-13456 always fallibel 124-1-12345-24-12-13456 always disponibel 145-24-234-1234-135-1345-24-12-13456 always penibel 1234-14-24-12-13456 always sibel 234-24-12-13456 midendword tibel 2345-24-12-13456 always flexibel 124-123-15-6-1346-24-12-13456 always dezibel 145-15-1356-24-12-13456 always zibel 1356-24-12-13456 always falbel 124-25-12-13456 always praeambel 1234-1235-1-15-1-134-12-13456 always präambel 1234-1235-345-1-134-12-13456 always pschyrembel 1234-156-6-13456-1235-12356-12-13456 always zimbel 1356-24-134-12-13456 always obelisk 135-12-13456-24-234-13 always obelix 135-12-13456-24-6-1346 always gobelin 1245-135-12-13456-35 always hobel 125-135-12-13456 always kobel 13-135-12-13456 always möbel 134-246-12-13456 always nobel 1345-135-12-13456 always knobel 13-1345-135-12-13456 always pöbel 1234-246-12-13456 always zobel 1356-135-12-13456 always bärbel 12-345-1235-12-13456 always scherbel 156-12456-12-13456 always kerbel 13-12456-12-13456 always hyperbel 125-6-13456-1234-12456-12-13456 before l begmidword werbe 2456-12456-23 always schwerbeladen 156-2456-12456-23-123-1-145-14 always wirbel 2456-24-1235-12-13456 always zirbel 1356-24-1235-12-13456 always kurbel 13-136-1235-12-13456 always übel 1256-12-13456 always menübeleg 134-14-1256-23-123-15-1245 prfword menübelege 134-14-1256-23-123-15-12346 always hugendubel 125-136-1245-14-145-136-12-13456 always deubel 145-126-12-13456 always doubel 145-135-136-12-13456 always hubel 125-136-12-13456 always jubel 245-136-12-13456 always rubel 1235-136-12-13456 always rubella 1235-136-23-12345-1 # BEm endword bem 12-12356 always bemm 23-1346 always bemann 23-134-1345 always bemänn 23-5-134-1345 midendword bemaschin 23-134-156 midendword bematerial 23-134-123 always bemittel 23-134-2345 midendword bemöglich 23-134-456 midendword bemusik 23-134-13 midendword bemuss 23-134-2346 always bembel 12-12356-12-13456 midendword bemail 12-12356-1-24-123 midword bemaill 12-12356-1-24-12345 midword bemanz 12-12356-235-1356 midword bemball 12-12356-12-1-12345 midword bembarg 12-12356-12-356-1245 midendword bemblem 12-12356-12-123-12356 midendword bembryo 12-12356-12-1235-6-13456-135 midendword bement 12-12356-14-2345 midendword bemerit 12-12356-12456-24-2345 midword bemigr 12-12356-45-1245-1235 midendword beminent 12-12356-35-14-2345 endword beminente 12-12356-35-14-236 midendword bemission 12-12356-24-2346-245 midendword bemotion 12-12356-135-2345-245 midword bempath 12-12356-1234-1-2345-125 midendword bempfang 12-12356-1234-124-235-1245 midword bempfäng 12-12356-1234-124-345-1345-1245 midendword bempfehl 12-12356-1234-124-2356-123 midendword bempfind 12-12356-1234-124-35-145 midendword bempfund 12-12356-1234-124-256-145 midword bemphat 12-12356-1234-125-1-2345 endword bempor 12-12356-1234-135-1235 midword bempor 12-12356-1234-26 midendword bempör 12-12356-1234-246-1235 midendword bemsig 12-12356-234-45 midword bemul 12-12356-136-123 # BEn always ben 12-14 always benach 23-1345-56 always benag 23-1345-1-1245 always benahm 23-1345-134 always benäh 23-1345-345-125 always benähm 23-5-1345-134 midendword benähnlich 12-14-345-456 always benam 23-1345-1-134 always benann 23-1345-235-1345 always benarb 23-1345-356-12 sufword probenarbeit 12345-12-14-356-12 begmidword probenarbeit 1234-1235-135-12-14-356-12 always grubenarbeit 1245-1235-136-12-14-356-12 always benäss 23-1345-345-2346 always benebel 23-1345-15-12-13456 always benebel 23-1345-15-12-13456 always benebl 23-1345-15-12-123 always benehm 23-1345-125 always beneid 23-1345-146-145 always benenn 23-1345-14-1345 always benetz 23-1345-15-2345-1356 always benies 23-1345-346-234 always benimm 23-1345-24-1346 always benommen 23-1345-1346 always benot 23-1345-135-2345 always grubenotter 1245-1235-136-12-14-135-2345-2345-12456 always benöt 23-1345-246-2345 prfword benote 23-1345-135-236 always benotest 23-1345-135-236-23456 always benotet 23-1345-135-236-2345 prfword benotete 23-1345-135-236-236 prfword benotetet 23-1345-135-236-236-2345 always benotetest 23-1345-135-236-236-23456 midendword benötig 23-1345-246-2345-45 midendword benummer 23-1345-136-1346-12456 always benutz 23-1345-1356 always benütz 23-5-1345-1356 # BEr always ber 12-12456 always berand 23-1235-235-145 always berank 23-1235-235-13 always berann 23-1235-235-1345 always berapp 23-1235-1-1234-1234 always berat 23-1235-1-2345 always fieber 124-346-12-12456 always beration 12-12456-5-1345 always berät 23-1235-345-2345 prfword berate 23-1235-1-236 always beratet 23-1235-1-236-2345 always beratest 23-1235-1-236-23456 always beraub 23-1235-16-12 always beräuch 23-1235-34-1456 always beraum 23-1235-16-134 always beräum 23-1235-34-134 always berausch 23-1235-16-156 always berech 23-1235-15-1456 always berecht 23-1235-2345 always schwebereck 156-2456-15-23-1235-15-46 always bered 23-1235-15-145 always bereed 23-1235-15-15-145 always bereg 23-1235-15-1245 endword berei 12-12456-146 always berei 23-1235-146 always berein 23-1235-1246 endword bereien 12-12456-146-14 always alberei 25-12-12456-146 midendword albereich 25-23-1235-146-1456 always reiberei 1235-146-12-12456-146 always zauberei 1356-16-12-12456-146 always berenn 23-1235-14-1345 always berent 23-1235-14-1345-2345 endword berente 23-1235-14-1345-236 always berentet 23-1235-14-1345-236-2345 always berentest 23-1235-14-1345-236-23456 always bereu 23-1235-126 always sperber 234-1234-12456-12-12456 always bericht 23-2-3456 always beriech 23-1235-346-1456 always berieb 23-1235-346-12 always berief 23-1235-346-124 always beries 23-1235-346-234 always beriet 23-1235-346-2345 prfword beriete 23-1235-346-236 prfword berietest 23-1235-346-236-23456 prfword berietet 23-1235-346-236-2345 always bering 23-1235-35-1245 always oberingenieur 135-12-12456-35-1245-14-24-126-1235 always beringmeer 12-12456-35-1245-134-15-15-1235 always beringsee 12-12456-35-1245-234-15-15 always beringstr 12-12456-35-1245-23456-1235 always beritt 23-1235-24-2345-2345 always berüch 23-1235-1256-1456 always berück 23-1235-46 always berüsch 23-1235-1256-156 always beruf 23-1235-136-124 always beruh 23-1235-136-125 always berühm 23-1235-1256-125-134 always berühr 23-1235-1256-125-1235 always beruß 23-1235-136-2346 # BEs prfword bes 12-123456 always besch 23-156 always beschlag 23-156-1245 always beschläg 23-5-156-1245 always beschließ 23-156-2346 always beschleich 23-156-123-146-1456 always beschreib 23-156-12 always beschrieb 23-2-156 always beschrift 23-156-2345 always besetz 23-2-15 always besitz 23-2-24 always besoll 23-2-234 always best 23-23456 always bestimmung 23-23456-24-1346-136 always bestand 23-2-23456 always bestands 23-2-23456-234 always beständ 23-5-23456 always bestell 23-2-13456 sufword bestrich 23-23456-1235-3456 prfword besan 12-123456-1-1345 always besan 12-123456-235 always besang 23-234-235-1245 always besandung 23-234-235-145-136 always besann 23-234-235-1345 always besen 12-123456-14 midendword besendung 23-234-14-145-136 always beseng 23-234-14-1245 always besenginster 12-123456-14-1245-35-23456-12456 word besenge 23-234-14-12346 always beserl 12-123456-12456-123 always beskiden 12-123456-13-24-145-14 always bessarabi 23-2346-356-1-12-24 always bessemer 23-2346-12356-12456 always bessrung 23-2346-1235-136 always arabesk 356-1-12-123456-13 always arabesqu 356-1-12-123456-6-12345-136 always grabes 1245-1235-1-12-123456 always stabes 23456-1-12-123456 always diebes 145-346-12-123456 always liebes 123-346-12-123456 always siebes 234-346-12-123456 prfword triebes 2345-1235-346-12-123456 before s midword triebe 2345-1235-346-23 always leibes 123-146-12-123456 always weibes 2456-146-12-123456 always lobes 123-135-12-123456 always silo 234-24-123-135 word lobesam 123-135-23-2346 always lobest 123-135-23-23456 always klobesuch 13-123-135-23-234-136-1456 begmidword robespierr 1235-135-12-123456-1234-24-12456-1235 before s begmidword werbe 2456-12456-23 prfword werbes 2456-12456-12-123456 always raubes 1235-16-12-123456 always graubeschlag 1245-1235-16-23-156-1245 always staubes 23456-16-12-123456 # BEI (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word bei 12 always bei-\s 2-12-36-0 always bei 2-12 always beich 12-146-1456 always beier 12-146-12456 prfword beige 12-146-12346 always beigebraun 12-146-12346-12-1235-16-1345 always beigefarb 12-146-12346-124-356-12 prfword beigem 12-146-1245-12356 always beigen 12-146-1245-14 prfword beiger 12-146-1245-12456 prfword beiges 12-146-1245-123456 always beigt 12-146-1245-2345 always beigte 12-146-1245-236 always beigten 12-146-1245-2345-14 always beignet 12-146-1245-1345-15-2345 always beijing 23-24-245-35-1245 prfword beil 12-146-123 prfword beile 12-146-123-15 always beilen 12-146-123-14 always beiles 12-146-123-123456 before konsonant begmidword beil 12-146-123 always bein 12-1246 always beinah 2-12-1345-1-125 always beinam 2-12-1345-1-134 begmidword beinamput 12-1246-1-134-1234-136-2345 always beinhal 23-35-125-25 always beirr 23-24-1235-1235 always beirut 12-146-1235-136-2345 always beisel 12-146-234-13456 always treibeis 2345-1235-146-12-146-234 always stabeisen 23456-1-12-146-234-14 syllable beitrag 2-12-2345-1245 syllable beiträg 2-12-5-2345-1245 always beiß 12-146-2346 always beisl 12-146-234-123 always beitel 12-146-2345-13456 always beiz 12-146-1356 always beizu 2-12-2-1356 always herbei 125-12456-2-12 always reiherbeiz 1235-146-125-12456-12-146-1356 always beizahl 2-12-1356-123 always beizähl 2-12-5-1356-123 always beizäum 2-12-1356-34-134 always beizeit 2-12-1356-2345 always beizieh 2-12-1356-346-125 always beizu 2-12-2-1356 always beizung 12-146-1356-136 always schabeisen 156-1-12-146-234-14 always reibeisen 1235-146-12-146-234-14 always salbei 234-25-12-146 before i begmidword werbe 2456-12456-23 # BEID (4.4 Zweiformige Kürzungen) always beid 12-145 always beidräng 2-12-145-1235-345-1345-1245 endword beidränge 2-12-145-1235-345-1345-12346 always beidruck 2-12-145-46 always beidrück 2-12-5-145-46 always beidreh 2-12-145-1235-2356 always beidürf 2-12-2-145 # BEIM (4.4 Zweiformige Kürzungen) always beim 12-134 always beimann 2-12-134-1345 begmidword beimänn 2-12-5-134-1345 always beimaß 2-12-134-1-2346 always beimeng 2-12-134-14-1245 always beimenge 2-12-134-14-12346 always beimengen 2-12-134-14-1245-14 begmidword beimess 2-12-134-15-2346 always beimisch 2-12-134-24-156 begmidword beimiss 2-12-134-24-2346 always beimittel 2-12-134-2345 begmidword beimpf 23-24-134-1234-124 always farbeimer 124-356-12-146-134-12456 always vorbei 2-26-2-12 # BESONDER (4.3.5 Einformige Kürzungen, nur mit Erweiterung) word besonder 23-234-135-1345-145-12456 always besonder 23 begmidword werbesonder 2456-12456-23-234-135-1345-145-12456 # BESSER (4.4 Zweiformige Kürzungen) always besser 234-234 # BIS (4.4 Zweiformige Kürzungen) always bis 12-234 always bisam 12-24-234-1-134 always biscaya 12-24-234-6-14-1-6-13456-1 always bisch 12-24-156 always bise 12-24-234-15 always bisen 12-24-234-14 always bishop 12-24-234-125-135-1234 always bisimulation 12-24-234-24-134-136-123-5-1345 always bisk 12-24-234-13 always bism 12-24-234-134 midendword bismus 12-5-24 always bison 12-24-234-135-1345 always bisquit 12-24-234-6-12345-136-24-2345 always biss 12-24-2346 always biswind 12-24-234-2456-35-145 prfword abis 1-12-24-234 always abisolier 1-12-24-234-135-123-346-1235 always arabisier 356-1-12-24-234-346-1235 always cannabis 6-14-235-1345-1-12-24-234 always chabis 1456-1-12-24-234 always kabis 13-1-12-24-234 always nabisco 1345-1-12-24-234-6-14-135 always kohlrabis 13-135-125-123-1235-1-12-24-234 always trabis 2345-1235-1-12-24-234 always rabbis 1235-1-12-12-24-234 prfword ibis 24-12-24-234 always ibiss 24-12-24-2346 always alibis 25-24-12-24-234 always albis 25-12-24-234 always bambis 12-1-134-12-24-234 always kombi 13-135-134-12-24 always kombin 13-135-134-12-35 always nobis 1345-135-12-24-234 always snobismus 234-1345-135-12-5-24 always nairobis 1345-1-24-1235-135-12-24-234 word verbis 1236-12456-12-24-234 word corbis 6-14-26-12-24-234 word vorbis 1236-26-12-24-234 always kürbis 13-1256-1235-12-24-234 always kürbisse 13-1256-1235-12-24-2346-15 always kürbissen 13-1256-1235-12-24-2346-14 always kürbisses 13-1256-1235-12-24-2346-123456 always bubis 12-136-12-24-234 always kubisch 13-136-12-24-156 always kubismus 13-136-12-5-24 always anubis 235-136-12-24-234 always räbisch 1235-345-12-24-156 always azubis 1-1356-136-12-24-234 # BIST (4.4 Zweiformige Kürzungen) always bist 12-23456 midendword bistisch 12-5-156 always bistro 12-24-23456-1235-135 always bistum 12-234-2345-136-134 always bistüm 12-234-2345-1256-134 always arabist 356-1-12-24-23456 always snobistisch 234-1345-135-12-5-156 always kubist 13-136-12-24-23456 always kubistisch 13-136-12-5-156 # BLEIB (4.4 Zweiformige Kürzungen) always bleib 12-12 always bleibad 12-123-146-12-1-145 always bleibäd 12-123-146-12-345-145 always bleibelast 12-123-146-23-123-1-23456 always bleibenzin 12-123-146-12-14-1356-35 always bleiberecht 12-12-15-1235-2345 always bleibeschwer 12-123-146-23-156-2456-12456 always bleibüchs 12-123-146-12-1256-1456-234 # BLIND (4.4 Zweiformige Kürzungen) always blind 12-123 always halblind 125-25-12-123-35-145 # BRAUCH BRÄUCH (4.3.6 Kommakürzungen) always brauch 2-34 always bräuch 5-34 # BRIEF (4.4 Zweiformige Kürzungen) always brief 12-124 always briefing 12-1235-346-124-35-1245 prfword abrief 1-12-1235-346-124 prfword abriefen 1-12-1235-346-124-14 prfword abriefst 1-12-1235-346-124-23456 always schemabrief 156-12356-1-12-124 # BRING (4.4 Zweiformige Kürzungen) always bring 12-1245 begword abring 1-12-1235-35-1245 prfword abringe 1-12-1235-35-12346 always schraubring 156-1235-16-12-1235-35-1245 prfword schraubringe 156-1235-16-12-1235-35-12346 # C (4.1 Lautgruppenkürzungen) word c 6-14 always c 6-14 # Grossgeschriebene Wortanfänge erhalten sonst keinen Pt.6! context ["C"]$u @6-14 # CH (4.1 Lautgruppenkürzungen) word ch 6-1456 always ch 1456 # CHARAKTER (4.4 Zweiformige Kürzungen) syllable charakter 1456-13 # CK (4.1 Lautgruppenkürzungen) word ck 6-14-13 midendword ck 46 # DABEI (4.4 Zweiformige Kürzungen) always dabei 145-12 # DADURCH (4.4 Zweiformige Kürzungen) always dadurch 145-145 # DAFÜR (4.4 Zweiformige Kürzungen) always dafür 145-124 # DAGEGEN (4.4 Zweiformige Kürzungen) always dagegen 145-1245 # DAHER (4.4 Zweiformige Kürzungen) always daher 145-125 # DAMIT (4.4 Zweiformige Kürzungen) always damit 145-134 always adamit 1-145-1-134-24-2345 sufword propaganda 12345-1234-1-1245-235-145-1 midendword propaganda 1234-1235-135-1234-1-1245-235-145-1 # DANK (4.4 Zweiformige Kürzungen) always dank 145-13 always dankauf 145-235-13-16-124 always dankäuf 145-235-13-34-124 begmidword jordank 245-26-145-235-13 begmidword mordankl 134-26-145-235-13-123 # DAS (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word das 145 # DASS (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word dass 2346 # Alte Rechtschreibung word daß 2346 # DARAUF (4.4 Zweiformige Kürzungen) always darauf 145-16 # DARÜBER (4.4 Zweiformige Kürzungen) always darüber 145-1256 always radarüber 1235-1-145-356-2-1256 # DAVON (4.4 Zweiformige Kürzungen) always davon 145-1236 # DAZU (4.4 Zweiformige Kürzungen) always dazu 145-1356 begmidword dazubehal 145-1-2-1356-23-125-25 always dazubleib 145-1-2-1356-12-12 always dazuhab 145-1-2-1356-2-125 begmidword dazuhal 145-1-2-1356-125-25 begmidword dazulass 145-1-2-1356-2-123 # HOMONYM begmidword dazulieg 145-1-2-1356-123-346-1245 word dazumal 145-1-2-1356-134 # HOMONYM begmidword dazusitz 145-1-2-1356-2-24 # HOMONYM? always dazustehen 145-1-2-1356-23456-2356-14 always pandazucht 1234-235-145-1-1356-136-1456-2345 # DEM (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word dem 12356 word dem's 12356-6-234 always dementgegen 2-12356-14-2345-2-1245 always dementsprechend 2-12356-14-2345-2-2346-14-145 always demgegenüber 2-12356-1245-1256 always demgemäß 2-12356-12346-134-345-2346 always demjenig 2-12356-245-14-45 always demnach 2-12356-1345-56 always demnächst 2-12356-1345-23456 always demselb 2-12356-234-13456-12 always demzufolge 2-12356-2-1356-124-1245-15 word ehedem 15-125-15-2-12356 word alldem 1-12345-2-12356 word seitdem 234-146-2345-2-12356 word indem 35-2-12356 word außerdem 16-2346-12456-2-12356 word vordem 2-26-2-12356 word zudem 2-1356-2-12356 word trotzdem 2345-1356-2-12356 # DEMOKRAT (4.4 Zweiformige Kürzungen) always demokrat 145-2345 # DEN (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word den 15 word den's 15-6-234 # DENEN (4.4 Zweiformige Kürzungen) word denen 15-14 # DENN (4.4 Zweiformige Kürzungen) word denn 145-1345 word dennschon 145-1345-156-135-1345 # DER (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word der 1235 word der's 1235-6-234 # DES (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word des 3 always des-dur 145-123456-36-145-136-1235 # DESSEN (4.4 Zweiformige Kürzungen) always dessen 145-2346 always abendessen 1-12-14-145-15-2346-14 always landessend 123-235-145-123456-234-14-145 always stewardessen 23456-15-2456-356-145-15-2346-14 # DEUTSCH (4.4 Zweiformige Kürzungen) always deutsch 145-156 # DIE (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word die 346 word die's 346-6-234 # DIES (4.3.5 Einformige Kürzungen, nur mit Erweiterung) word dies 145-346-234 sufword dies 346 always diesig 145-346-234-45 always diesseitig 145-346-234-234-146-2345-45 always diesseits 145-346-234-234-146-2345-234 always diesbezüglich 145-346-234-23-1356-1256-1245-456 always diesel 145-346-234-13456 always diesjährig 145-346-234-5-245-1235-45 # Diese Schreibweise scheint's auch zu geben ... always diestelfink 145-346-23456-13456-124-35-13 always diesterweg 145-346-23456-12456-2456-15-1245 # DIR (4.4 Zweiformige Kürzungen) word dir 145-1235 word dir's 145-1235-6-234 # DOCH (4.4 Zweiformige Kürzungen) word doch 145-1456 # DRUCK DRÜCK (4.4 Zweiformige Kürzungen) always druck 145-46 always drück 5-145-46 begmidword bildrück 12-24-123-145-1235-46 begmidword goldrück 1245-135-123-145-1235-46 begmidword landrück 123-235-145-1235-46 begmidword handrück 125-145-1235-46 always rundrücken 1235-256-145-1235-46-14 midword zidrück 1356-24-145-1235-46 # DURCH (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word durch 1456 always durch-\s 2-1456-36-0 word durch's 1456-6-234 always durch 2-1456 # DÜRF (4.3.6 Kommakürzungen) always dürf 2-145 # EBENSO (4.4 Zweiformige Kürzungen) always ebenso 15-135 always ebensolch 15-12-14-234-1456 word eo 6-15-135 begmidword lebensord 123-12-14-234-26-145 begmidword nebensonn 1345-12-234-135-1345-1345 # EH (4.1 Lautgruppenkürzungen) midword eh 2356 endword eh'n 2356-6-1345 endword eh's 2356-6-234 endword eh-\s 2356-36-0 endword eh-,\s 2356-36-2-0 midendword ehaar 15-125-1-1-1235 midendword ehafen 15-125-1-124-14 midendword ehäfen 15-125-345-124-14 midendword ehalber 15-125-25-12-12456 midendword ehalter 15-125-25-2345-12456 midendword ehaltig 15-125-25-2345-45 midendword ehaltung 15-125-25-2345-136 midendword ehammer 15-125-1-1346-12456 midendword ehämmer 15-125-345-1346-12456 midendword ehand 15-125-145 midword ehänd 15-5-125-145 midendword ehaut 15-125-16-2345 midword ehäut 15-125-34-2345 endword ehäute 15-125-34-236 midword ehebamm 15-125-15-12-1-1346 midendword eheft 15-125-15-124-2345 endword ehefte 15-125-15-124-236 midword ehelf 15-125-13456-124 midword ehemm 15-125-15-1346 midendword eherd 15-125-12456-145 midword steherdrüs 23456-2356-12456-145-1235-1256-234 midword eherstell 15-125-12456-2-13456 midendword ehilf 15-125-24-123-124 midendword ehirt 15-125-24-1235-2345 endword ehirte 15-125-24-1235-236 midendword ehobel 15-125-135-12-13456 midendword ehoch 15-125-135-1456 midendword ehohl 15-125-135-125-123 midendword ehöhl 15-125-246-125-123 midendword eholz 15-125-135-123-1356 midendword ehölz 15-125-246-123-1356 midword ehospit 15-125-135-234-1234-24-2345 midendword ehospiz 15-125-135-234-1234-24-1356 midendword ehotel 15-125-135-2345-13456 midendword ehund 15-125-256-145 midendword ehunger 15-125-256-1245-12456 midendword ehyd 15-125-6-13456-145 midendword ehöchst 15-125-246-1456-23456 endword ehöhe 15-125-246-125-15 midendword ehöhen 15-125-246-125-14 midword ehünd 15-125-1256-1345-145 midword ehüt 15-125-1256-2345 endword ehüte 15-125-1256-236 before h begmidword bronce 12-1235-135-1345-6-14-15 midendword dehaus 145-15-125-16-234 always dehors 145-15-125-26-234 midword dehäus 145-15-125-34-234 before h begmidword gerade 12346-1235-1-145-15 always radehack 1235-1-145-15-125-1-46 before h begmidword bade 12-1-145-15 before h begmidword lade 123-1-145-15 before h begmidword jade 245-1-145-15 before h begmidword schmiede 156-134-346-145-15 before h begmidword siede 234-346-145-15 always wiedehopf 2456-346-145-15-125-135-1234-124 before h begmidword getreide 12346-2345-1235-146-145-15 always tidehub 2345-24-145-15-125-136-12 before h begmidword gemälde 12346-134-345-123-145-15 before h begmidword stände 5-23456-15 before h begmidword wende 2456-14-145-15 before h always gemeinde 12346-134-1246-145-15 before h begmidword gesinde 12346-234-145-15 before h begmidword hunde 125-256-145-15 before h begmidword freunde 124-145-15 before h begmidword mode 134-135-145-15 always rodehack 1235-135-145-15-125-1-46 before h begmidword pferde 1234-124-12456-145-15 begmidword sheeh 234-125-15-15-125 always seehahn 234-15-15-125-1-125-1345 begmidword seehähn 234-15-15-125-345-125-1345 begmidword seehall 234-15-15-125-1-12345 begmidword seehas 234-15-15-125-1-234 always seehecht 234-15-15-125-15-1456-2345 prfword seehechte 234-15-15-125-15-1456-236 always seehei 234-15-15-125-146 always seeheld 234-15-15-125-13456-145 always seeherr 234-15-15-1235-1235 always seeherrschaft 234-15-15-1235-1235-156-1-124-2345 always seehimmel 234-15-15-125-24-1346-13456 always seehügel 234-15-15-125-1256-1245-13456 always teehaub 2345-15-15-125-16-12 always teehaus 2345-15-15-125-16-234 begmidword teehäus 2345-15-15-125-34-234 before h begmidword trage 2345-1245-15 before h begmidword wache 2456-56-15 before h begmidword asche 1-156-15 before h begword ehe 15-125-15 before h begmidword mathe 134-1-2345-125-15 before h begmidword goethe 1245-135-15-2345-125-15 before h begmidword single 234-35-1245-123-15 before h begmidword kohle 13-135-125-123-15 before h begmidword vanille 1236-235-24-12345-15 before h begmidword reklame 1235-15-13-123-1-134-15 before h begmidword wärme 2456-345-1235-134-15 before h begmidword sahne 234-1-125-1345-15 before h begmidword schweine 156-2456-1246-15 before h begmidword katrine 13-1-2345-1235-35-15 before h begmidword inne 35-1345-15 always hinnehm 125-35-1345-125 prfword stonehenge 23456-135-1345-15-125-14-12346 always stoneheng 23456-135-1345-15-125-14-1245 always vorneher 2-26-1345-15-125-12456 before h begmidword aloe 25-135-15 always benzoeharz 12-14-1356-135-15-125-356-1356 always rehaklinik 1235-15-125-1-13-123-35-24-13 begmidword rehazentr 1235-15-125-1-1356-14-2345-1235 always sharehold 234-125-356-15-125-135-123-145 always warehaus 2456-356-15-125-16-234 begmidword warehäus 2456-356-15-125-34-234 before h begmidword säure 234-34-1235-15 before h begmidword käse 13-345-234-15 always nasehorn 1345-1-234-15-125-26-1345 always nasehörn 1345-1-234-15-125-246-1235-1345 before h begmidword speise 234-1234-146-234-15 before h begmidword gänse 1245-345-1345-234-15 before h begmidword löse 123-246-234-15 before h begmidword messe 134-15-2346-15 begmidword lausehark 123-16-234-15-125-356-13 before h begmidword gemüse 12346-134-1256-234-15 before h begmidword watte 2456-1-2345-236 before h begmidword gewichte 12346-2456-3456-236 before h begmidword brave 12-1235-1-1236-15 before h begmidword bronze 12-1235-135-1345-1356-15 begword itzeho 24-2345-1356-15-125-135 # EI (4.1 Lautgruppenkürzungen) word ei 6-146 always ei 146 midendword eideal 15-24-145-15-1-123 midendword eidee 15-24-145-15-15 begmidword schneideein 156-1345-146-145-15-1246 midendword eidentifi 15-24-145-14-2345-24-124-24 midendword eidentisch 15-24-145-14-2345-24-156 midendword eidentität 15-24-145-14-2345-5-345 midendword eideo 15-24-145-15-135 midendword eidyll 15-24-145-6-13456-12345 midword eignor 15-45-1345-26 midword eikon 15-24-13-135-1345 always reederei 1235-15-15-145-12456-146 always fischerei 124-24-156-12456-146 always molkerei 134-135-123-13-12456-146 always polizei 1234-135-123-24-1356-146 begmidword freikon 124-1235-146-13-135-1345 midword eille 15-24-12345-15 midword eilleus 15-24-12345-126-234 begmidword marseill 134-356-234-15-24-12345 midword eilloy 15-24-12345-135-6-13456 midword eillu 15-24-12345-136 midword eimag 15-24-134-1-1245 midendword eimbiss 15-24-134-12-24-2346 midword eimit 15-24-134-24-2345 always arzneimittel 356-1356-1345-146-134-2345 midword eimitgl 146-2-2345-1245-123 midword eimitt 146-134-24-2345-2345 midendword eimker 15-24-134-13-12456 midendword eimm 15-24-1346 midendword eimp 15-24-134-1234 always reimpaar 1235-146-134-1234-1-1-1235 midendword eion 15-24-135-1345 midendword eirr 15-24-1235-1235 before s begmidword eis 146-234 midword eisolat 15-24-234-135-123-1-2345 midendword eisolier 15-24-234-135-123-346-1235 midendword eiteration 15-24-2345-12456-1-2345-245 midendword eiterier 15-24-2345-12456-346-1235 always beinhalt 23-35-125-25-2345 prfword beinhalte 23-35-125-25-236 prfword beinhaltest 23-35-125-25-236-23456 prfword beinhaltet 23-35-125-25-236-2345 prfword beinhaltete 23-35-125-25-236-236 prfword beinhaltetem 23-35-125-25-236-2345-12356 prfword beinhalteten 23-35-125-25-236-2345-14 prfword beinhaltetes 23-35-125-25-236-2345-123456 prfword beinhalteter 23-35-125-25-236-2345-12456 prfword beinhaltetet 23-35-125-25-236-236-2345 prfword beinhaltetest 23-35-125-25-236-236-23456 word dei 145-15-24 always deifikation 145-15-24-124-24-13-5-1345 always deindividuation 145-15-35-145-24-1236-24-145-136-5-1345 always deismus 145-15-5-24 always deist 145-15-24-23456 always deistisch 145-15-5-156 always badeinsel 12-1-145-15-35-234-13456 sufword fidei 124-24-145-15-24 always codein 6-14-135-145-15-35 always kodein 13-135-145-15-35 midendword eeinsel 15-15-35-234-13456 always seeigel 234-15-15-45-13456 midendword seeisch 234-15-15-24-156 always sightseeing 234-24-1245-125-2345-234-15-15-35-1245 always coffein 6-14-135-124-124-15-35 always koffein 13-135-124-124-15-35 midendword geinhalt 12346-35-125-25-2345 endword geinhalte 12346-35-125-25-236 always diagnose 145-24-1-1245-1345-135-234-15 always diagnosen 145-24-1-1245-1345-135-234-14 always heim 125-146-134 begword eheinstitu 15-125-15-35-23456-24-2345-136 midword eheinstitu 2356-15-35-23456-24-2345-136 always geheim 12346-125-146-134 always theismus 2345-125-15-5-24 always theist 2345-125-15-24-23456 always theistisch 2345-125-15-5-156 always prometheisch 1234-1235-135-134-15-2345-125-15-24-156 always keim 13-146-134 before i begmidword kohle 13-135-125-123-15 always leim 123-146-134 always galilei 1245-25-24-123-15-24 always nuklein 1345-136-13-123-15-35 always acrolein 1-6-14-1235-135-123-15-24-1345 always akrolein 1-13-1235-135-123-15-35 before i begmidword wärme 2456-345-1235-134-15 midendword aneität 235-15-5-345 always äneis 345-1345-15-24-234 always aeneis 1-15-1345-15-24-234 sufword alineier 25-35-15-346-1235 always guineisch 1245-136-35-15-24-156 always boeing 12-135-15-35-1245 always nereid 1345-12456-15-24-145 always barriereinsel 12-356-1235-24-12456-15-35-234-13456 always kreier 13-1235-15-346-1235 always pythagoreisch 1234-6-13456-2345-125-1-1245-26-15-24-156 always epikureisch 15-1234-24-13-136-1235-15-24-156 always eritreisch 12456-24-2345-1235-15-24-156 always kureismus 13-136-1235-15-5-24 always kasein 13-1-234-15-35 before i begmidword kälte 13-345-123-236 sufword protein 12345-236-35 midendword protein 1234-1235-135-236-35 always weight 2456-15-24-1245-125-2345 always schweineigel 156-2456-1246-15-45-13456 # EIN (4.1 Lautgruppenkürzungen) always ein 1246 midendword eindex 15-35-145-15-6-1346 midword eindik 15-35-145-24-13 midendword eindio 15-35-145-24-135 midendword eindiz 15-35-145-24-1356 midword einduk 15-35-145-136-13 midword eindust 15-35-145-136-23456 midendword einduzier 15-35-145-136-1356-346-1235 midword eineff 15-35-15-124-124 midendword einfant 15-35-124-235-2345 midword einfark 15-35-124-356-13 midendword einfekt 15-35-124-15-13-2345 midendword einfektion 15-35-124-15-13-2345-245 midword einfer 15-35-124-12456 midword einfilt 15-35-124-24-123-2345 midendword einfinit 15-35-124-35-24-2345 midword einfiz 15-35-124-24-1356 midword einflat 15-35-124-123-1-2345 midendword einfo 15-35-124-135 midword einform 15-35-124-26-134 midendword einfusion 15-35-124-136-234-245 midendword eingenieur 15-35-1245-14-24-126-1235 midword einhab 15-35-2-125 midword einhala 15-35-125-25-1 midendword einhalier 15-35-125-25-123-346-1235 midword einhomo 15-35-125-135-134-135 endword einhuman 15-35-125-136-134-1-1345 midword einhuman 15-35-125-136-134-235 midword einhär 15-35-125-345-1235 midword einit 15-35-24-2345 midword einj 15-35-245 begmidword feinj 124-1246-245 midword einkarn 15-35-13-356-1345 midendword einkasso 15-35-13-1-2346-135 midword einklu 15-35-13-123-136 midword einkomp 15-35-13-135-134-1234 midword einkon 15-35-13-135-1345 midword einkonnt 1246-13-2345 midword einkub 15-35-13-136-12 midendword einland 15-35-123-235-145 midendword einnen 15-35-1345-14 midendword einner 15-35-1345-12456 begmidword feinnerv 124-1246-1345-12456-1236 midword einnov 15-35-1345-135-1236 midendword einnung 15-35-1345-136 midendword einput 15-35-1234-136-2345 midendword einschrift 15-35-156-2345 midendword einsekt 15-35-234-15-13-2345 midendword einserat 15-35-234-12456-1-2345 midendword einserent 15-35-234-12456-14-2345 midendword einserier 15-35-234-12456-346-1235 midendword einsert 15-35-234-12456-2345 midendword einsider 15-35-234-24-145-12456 midword einsign 15-35-234-45-1345 midword einsist 15-35-234-24-23456 midword einsolv 15-35-234-135-123-1236 midword einspekt 15-35-234-1234-15-13-2345 midword einspir 15-35-234-1234-24-1235 midword einspiz 15-35-234-1234-24-1356 midendword einstabil 15-35-23456-1-12-24-123 midendword einstall 15-35-23456-1-12345 midendword einstanz 15-35-23456-235-1356 midendword einstinkt 15-35-23456-35-13-2345 midword einstit 15-35-23456-24-2345 midword einstrum 15-35-23456-1235-136-134 always feinstrumpf 124-1246-23456-1235-136-134-1234-124 midword einsul 15-35-234-136-123 midword einszen 15-35-234-1356-14 midword eintegr 15-35-236-1245-1235 midword eintell 15-35-236-12345 midword eintend 15-35-2345-14-145 midword eintens 15-35-2345-14-234 midword eintent 15-35-2345-14-2345 midendword einter 15-35-2345-12456 word vereinter 36-1246-2345-12456 endword vereinter 1236-12456-1246-2345-12456 word vermeinter 36-134-1246-2345-12456 endword vermeinter 1236-12456-134-1246-2345-12456 word verneinter 36-1345-1246-2345-12456 endword verneinter 1236-12456-1345-1246-2345-12456 midendword einteress 15-2-35 midword eintol 15-35-2345-135-123 midword eintra 15-35-2345-1235-1 endword eintraust 1246-2345-1235-16-23456 endword eintraute 1246-2345-1235-16-236 midendword eintraut 1246-2345-1235-16-2345 always eintracht 1246-2345-1235-56-2345 always eintraf 1246-2345-1235-1-124 always eintrag 1246-2345-1245 always eintrat 1246-2345-1235-1-2345 always eintratest 1246-2345-1235-1-236-23456 always eintratet 1246-2345-1235-1-236-2345 midword eintrig 15-35-2345-1235-45 midendword eintro 15-35-2345-1235-135 always eintrock 1246-2345-1235-135-46 always eintromm 1246-2345-1235-135-1346 always eintropf 1246-2345-1235-135-1234-124 midword eintui 15-35-2345-136-24 midendword einvalid 15-35-1236-25-24-145 midendword einvasion 15-35-1236-1-234-245 midendword einvent 15-35-1236-14-2345 midendword einvert 15-35-1236-12456-2345 midendword einvest 15-35-1236-15-23456 always geeinter 12346-1246-2345-12456 always feinver 124-1246-1236-12456 always schein 156-1246 always rhein 1235-125-1246 always scheinver 156-1246-1236-12456 always klein 13-123-1246 always alleinver 1-1246-1236-12456 always allgemein 1-12345-12346-134-1246 always gemein 12346-134-1246 always khomeini 13-125-135-134-15-35-24 midendword vermein 1236-12456-134-1246 midendword vernein 1236-12456-1345-1246 always speinuss 234-1234-146-1345-136-2346 begmidword speinüss 234-1234-146-1345-1256-2346 always reinform 1235-1246-124-26-134 always reinschrift 1235-1246-156-2345 always freinahm 124-1235-146-1345-134 always freinehm 124-1235-146-1345-125 midendword vereinter 1236-12456-1246-2345-12456 always datein 145-1-2345-146-1345 always latein 123-1-2345-1246 before i begmidword geräte 12346-1235-345-236 always geräteinheit 12346-1235-345-2345-1246-125 always partei 1234-356-2345-146 always stein 23456-1246 always wein 2456-1246 # EINANDER (4.3.6 Kommakürzungen) always einander 2-1246 # EL (4.1 Lautgruppenkürzungen) word el 15-123 always el 13456 word elen 15-123-14 always eel 15-15-123 midendword eeland 15-15-123-235-145 midendword eeländ 15-15-123-345-1345-145 begmidword seelebewes 234-15-15-123-12-15-2456-123456 always eelili 15-15-123-24-123-24 always eelini 15-15-123-35-24 always ell 15-12345 # Alte Rechtschreibung begmidword helleuch 125-13456-123-126-1456 always eell 15-15-12345 always abaelard 1-12-1-15-123-356-145 before l begmidword lebe 123-12-15 always spacelab 234-1234-1-6-14-15-123-1-12 always graceland 1245-1235-1-6-14-15-123-235-145 always facelift 124-1-6-14-15-123-24-124-2345 before l begmidword service 234-12456-1236-24-6-14-15 before l begmidword bade 12-1-145-15 always erbadel 12456-12-1-145-13456 always stachel 23456-56-13456 always speichel 234-1234-146-1456-13456 always geradeleg 12346-1235-1-145-15-123-15-1245 endword delokal 145-15-123-135-13-1-123 begmidword delokal 145-15-123-135-13-25 before l begmidword rede 1235-15-145-15 before l begmidword schneide 156-1345-146-145-15 before l begmidword glasschneide 1245-123-1-234-156-1345-146-145-15 before l begmidword kreide 13-1235-146-145-15 before l begmidword melde 134-13456-145-15 before l always lande 123-235-145-15 before l begmidword gelände 12346-123-345-1345-145-15 before l always gemeinde 12346-134-1246-145-15 before l always hunde 125-256-145-15 always nadel 1345-1-145-13456 always badelaken 12-1-145-15-123-1-13-14 always badelatschen 12-1-145-15-123-1-2345-156-14 begmidword brigadeleit 12-1235-45-1-145-15-123-146-2345 always schädel 156-345-145-13456 begmidword ladelini 123-1-145-15-123-35-24 begmidword ladelist 123-1-145-15-123-24-23456 before l begmidword tadel 2345-1-145-13456 always zitadell 1356-24-2345-1-145-15-12345 always mortadell 134-26-2345-1-145-15-12345 always ladeluft 123-1-145-15-123-136-124-2345 always ladeluk 123-1-145-15-123-136-13 always schmiedelehr 156-134-346-145-15-123-2356-1235 prfword edelleute 15-145-13456-123-126-236 always edelleuten 15-145-13456-123-126-2345-14 begmidword edellupin 15-145-13456-123-136-1234-35 always heideland 125-146-145-15-123-235-145 begmidword heidelerch 125-146-145-15-123-12456-1456 begmidword heidelind 125-146-145-15-123-35-145 before l begmidword scheide 156-146-145-15 begmidword schneideleist 156-1345-146-145-15-123-146-23456 begmidword schneideline 156-1345-146-145-15-123-35-15 begmidword schneidelini 156-1345-146-145-15-123-35-24 always treidell 2345-1235-146-145-13456-123 before l begmidword getreide 12346-2345-1235-146-145-15 always getreidelt 12346-2345-1235-146-145-13456-2345 prfword getreidelte 12346-2345-1235-146-145-13456-236 always weideland 2456-146-145-15-123-235-145 always weideländ 2456-146-145-15-123-345-1345-145 always kandelaber 13-235-145-15-13456-1-12-12456 always pendel 1234-14-145-13456 always abendelang 1-12-14-145-15-123-1245 always jahrtausendelang 245-2345-15-123-1245 begmidword sendeleist 234-14-145-15-123-146-23456 begmidword sendeleit 234-14-145-15-123-146-2345 begmidword sendeliz 234-14-145-15-123-24-1356 always spindel 234-1234-35-145-13456 always bindelader 12-35-145-15-123-1-145-12456 always gewindelehr 12346-2456-35-145-15-123-2356-1235 always gewindeloch 12346-2456-35-145-15-123-135-1456 always gewindelöch 12346-2456-35-145-15-123-246-1456 always hundeleb 125-256-145-15-123-12 always hundelein 125-256-145-15-123-1246 always kundelehrer 13-256-145-15-123-2356-1235-12456 always grundeleg 1245-145-15-123-15-1245 prfword grundelege 1245-145-15-123-15-12346 always grundelieg 1245-145-15-123-346-1245 prfword grundeliege 1245-145-15-123-346-12346 always codelist 6-14-135-145-15-123-24-23456 always jodel 245-135-145-13456 always modeladen 134-135-145-15-123-1-145-14 always modeläden 134-135-145-15-123-345-145-14 begmidword modelaun 134-135-145-15-123-16-1345 prfword modelinie 134-135-145-15-123-35-24-15 always modelinien 134-135-145-15-123-35-24-14 always rodeland 1235-135-145-15-123-235-145 always trödel 2345-1235-246-145-13456 always pferdeläng 1234-124-12456-145-15-5-123-1245 always pferdeleib 1234-124-12456-145-15-123-146-12 prfword pferdeleine 1234-124-12456-145-15-123-1246-15 always pferdeleinen 1234-124-12456-145-15-123-1246-14 always pferdelieb 1234-124-12456-145-15-123-346-12 always pferdelotto 1234-124-12456-145-15-123-135-2345-2345-135 before l begmidword förde 124-246-1235-145-15 always bürdelast 12-1256-1235-145-15-123-1-23456 always würdelos 1256-15-123-135-234 before l begmidword nudel 1345-136-145-13456 always strudel 23456-1235-136-145-13456 always freudeleer 124-1235-126-145-15-123-15-15-1235 always freudelos 124-1235-126-145-15-123-135-234 begmidword gebäudeleit 12346-12-34-145-15-123-146-2345 midendword eelicht 15-15-456-2345 begmidword werbeelemen 2456-12456-23-13456-12356-14 begmidword ladeelektr 123-1-145-15-13456-15-13-2345-1235 begmidword codeelemen 6-14-135-145-15-13456-12356-14 always hundeelend 125-256-145-15-13456-14-145 begmidword kohleelektr 13-135-125-123-15-13456-15-13-2345-1235 begmidword masseelektr 134-1-2346-15-13456-15-13-2345-1235 begmidword werteelektr 2456-12456-236-13456-15-13-2345-1235 always tafelland 2345-1-124-13456-123-235-145 always tafelleim 2345-1-124-13456-123-146-134 always tafelleinen 2345-1-124-13456-123-1246-14 begmidword tafelleuch 2345-1-124-13456-123-126-1456 begmidword tafelländ 2345-1-124-13456-123-345-1345-145 always schwefel 156-2456-15-124-13456 always stiefel 23456-346-124-13456 always staffel 23456-1-124-124-13456 always trüffel 2345-1235-1256-124-124-13456 always zweifellos 1356-2456-146-124-13456-123-135-234 begmidword hilfelehr 125-24-123-124-15-123-2356-1235 begmidword hilfeleist 125-24-123-124-15-123-146-23456 begmidword hilfeliefer 125-24-123-124-15-123-346-124-12456 always gipfel 1245-24-1234-124-13456 always schaufel 156-16-124-13456 always hufeland 125-136-124-15-123-235-145 always hufeländ 125-136-124-15-123-345-1345-145 always legeleist 123-15-12346-123-146-23456 before l begmidword vorlege 2-26-123-15-12346 before l begmidword wege 2456-1245-15 before l begmidword steige 23456-146-12346 begmidword naheleg 1345-1-125-15-123-15-1245 prfword nahelege 1345-1-125-15-123-15-12346 begmidword nahelieg 1345-1-125-15-123-346-1245 prfword naheliege 1345-1-125-15-123-346-12346 always rachelust 1235-56-15-123-136-23456 begmidword rachelüst 1235-56-15-123-1256-23456 always knöchel 13-1345-246-1456-13456 always aschelump 1-156-15-123-136-134-1234 always schellack 156-13456-123-1-46 begmidword wäschelein 2456-345-156-15-123-1246 sufword eheleb 15-125-15-123-12 midword eheleb 2356-15-123-12 sufword eheleiblich 15-125-15-123-146-12-456 midendword eheleiblich 2356-15-123-146-12-456 word eheleute 15-125-15-123-126-236 midendword eheleute 2356-15-123-126-236 word eheleuten 15-125-15-123-126-2345-14 midendword eheleuten 2356-15-123-126-2345-14 sufword ehelich 15-125-15-456 midendword ehelich 2356-15-456 sufword ehelos 15-125-15-123-135-234 midendword ehelos 2356-15-123-135-234 always weihelied 2456-146-125-15-123-346-145 always hohelied 125-135-125-15-123-346-145 begmidword mathelehr 134-1-2345-125-15-123-2356-1235 before l begmidword goethe 1245-135-15-2345-125-15 always mühelos 134-1256-125-15-123-135-234 before l begmidword ruhe 1235-136-125-15 always jelieber 245-15-123-346-12-12456 always jelänger 245-15-5-123-1245-12456 before l begmidword lake 123-1-13-15 always makellos 134-1-13-13456-123-135-234 always fackel 124-1-46-13456 always sockel 234-135-46-13456 always spikeloch 234-1234-24-13-15-123-135-1456 always spikelöch 234-1234-24-13-15-123-246-1456 begmidword getränkelad 12346-2345-1235-345-1345-13-15-123-1-145 always bänkellied 12-345-1345-13-13456-123-346-145 before l begmidword geschenke 12346-156-14-13-15 always schenkel 156-14-13-13456 always dunkel 145-256-13-13456 always schnörkel 156-1345-246-1235-13-13456 always muskel 134-136-234-13-13456 always pökel 1234-246-13-13456 begmidword ensembleleist 14-234-12356-12-123-15-123-146-23456 always candlelight 6-14-235-145-123-15-123-24-1245-125-2345 before l begmidword kohle 13-135-125-123-15 always teilelager 2345-146-123-15-123-1-1245-12456 begmidword teilelist 2345-146-123-15-123-24-23456 always emaillelack 12356-1-24-12345-15-123-1-46 before l begmidword koschenille 13-135-156-14-24-12345-15 before l begmidword reklame 1235-15-13-123-1-134-15 always memelland 134-12356-13456-123-235-145 always memelländ 134-12356-13456-123-345-1345-145 always nahmelager 1345-134-15-123-1-1245-12456 always nahmelamp 1345-134-15-123-1-134-1234 always nahmeland 1345-134-15-123-235-145 always nahmelauf 1345-134-15-123-16-124 always nahmeleit 1345-134-15-123-146-2345 always nahmelicht 1345-134-15-456-2345 always nahmelini 1345-134-15-123-35-24 always nahmelist 1345-134-15-123-24-23456 always nahmeländ 1345-134-15-123-345-1345-145 always nahmeläuf 1345-134-15-123-34-124 always sammel 234-1-1346-13456 always homeland 125-135-134-15-123-235-145 always armeleute 356-134-15-123-126-236 before l begmidword ärmel 345-1235-134-13456 begmidword wärmelehr 2456-345-1235-134-15-123-2356-1235 begmidword wärmeleist 2456-345-1235-134-15-123-146-23456 begmidword wärmeleit 2456-345-1235-134-15-123-146-2345 before l begmidword quarantäne 6-12345-136-356-235-2345-345-1345-15 before l begmidword szene 234-1356-14-15 before l begmidword sahne 234-1-125-1345-15 before l begmidword saigne 234-1-24-1245-1345-15 always schweinelend 156-2456-1246-15-123-14-145 before l begmidword marine 134-356-35-15 always annelies 235-1345-15-123-346-234 begmidword annelieschen 235-1345-15-123-346-234-1456-14 always minnelied 134-35-1345-15-123-346-145 always tunnel 2345-256-1345-13456 begmidword hannelor 125-235-1345-15-123-26 begmidword marnelini 134-356-1345-15-123-35-24 always stapel 23456-1-1234-13456 begmidword pipelin 1234-24-1234-15-123-35 always ampel 1-134-1234-13456 always doppel 145-135-1234-1234-13456 always stoppel 23456-135-1234-1234-13456 always skrupel 234-13-1235-136-1234-13456 before l begmidword software 234-135-124-2345-2456-356-15 before l begmidword timbre 2345-24-134-12-1235-15 before l begmidword karriere 13-356-1235-24-12456-15 always schwerelos 156-2456-12456-15-123-135-234 always jahrelang 245-1235-15-123-1245 always ireland 24-1235-15-123-235-145 always wireless 2456-24-1235-15-123-15-2346 begmidword irrelei 24-1235-1235-15-123-146 begmidword säurelös 234-34-1235-15-123-246-234 before l begmidword türe 2345-1256-1235-15 before l begmidword venture 1236-14-2345-136-1235-15 before l begmidword basel 12-1-234-13456 before l begmidword striptease 23456-1235-24-1234-2345-15-1-234-15 always faseleber 124-1-234-13456-15-12-12456 always naselang 1345-1-234-15-123-1245 begmidword naseläng 1345-1-234-15-5-123-1245 always leselamp 123-123456-15-123-1-134-1234 always leselist 123-123456-15-123-24-23456 always diesellok 145-346-234-13456-123-135-13 always kiesel 13-346-234-13456 begmidword leselup 123-123456-15-123-136-1234 always leselämp 123-123456-15-123-345-134-1234 before l begmidword wechsel 2456-15-1456-234-13456 always chaiselong 1456-1-24-234-15-123-135-1345-1245 before l begmidword speise 234-1234-146-234-15 before l begmidword reise 1235-146-234-15 before l begmidword gänse 1245-345-1345-234-15 before l begmidword insel 35-234-13456 before l begmidword narkose 1345-356-13-135-234-15 always mosel 134-135-234-13456 before l begmidword presse 1234-1235-15-2346-15 begmidword masseleist 134-1-2346-15-123-146-23456 always masselos 134-1-2346-15-123-135-234 begmidword masseleit 134-1-2346-15-123-146-2345 begmidword messeleit 134-15-2346-15-123-146-2345 always rosselenker 1235-135-2346-15-123-14-13-12456 before l begmidword fessel 124-15-2346-13456 before l begmidword interesse 2-35-15 before l begmidword sessel 234-15-2346-13456 always rätsel 1235-345-2345-234-13456 always brauselimo 12-1235-16-234-15-123-24-134-135 always mauseloch 134-16-234-15-123-135-1456 begmidword mauselöch 134-16-234-15-123-246-1456 always kräusel 13-1235-34-234-13456 always käselaib 13-345-234-15-123-1-24-12 before l begmidword gemüse 12346-134-1256-234-15 before l begmidword analyse 235-25-6-13456-234-15 before l begmidword gäste 1245-345-23456-15 begmidword gutelaun 1245-136-236-123-16-1345 before l begmidword jahrhunderte 245-125-15 before l begmidword pleuel 1234-123-126-13456 always reuelos 1235-126-15-123-135-234 always cleveland 6-14-123-15-1236-15-123-235-145 always havelland 125-1-1236-13456-123-235-145 begmidword havelländ 125-1-1236-13456-123-345-1345-145 always shavelotion 234-125-1-1236-15-123-135-2345-245 before l begmidword reserve 1235-123456-12456-1236-15 always eyeliner 15-6-13456-15-123-35-12456 before l begmidword einzel 1246-1356-13456 always einzeller 1246-1356-15-12345-12456 always einzellig 1246-1356-15-12345-45 before l begmidword bronze 12-1235-135-1345-1356-15 always herzeleid 125-12456-1356-15-123-146-145 before l begmidword wurzel 2456-136-1235-1356-13456 before l begmidword kürzel 5-13-1356-13456 # EM (4.1 Lautgruppenkürzungen) word em 15-134 always em 12356 always emm 15-1346 after e midendword machen 134-56-14 after e midendword macher 134-56-12456 after e midendword mädchen 134-345-145-1456-14 after e midendword magazin 134-1-1245-1-1356-35 after e endword magnete 134-1-1245-1345-15-236 after e midendword magnet 134-1-1245-1345-15-2345 after e midword mähdresch 134-345-125-145-1235-15-156 after e endword mähne 134-345-125-1345-15 after e midendword mähnen 134-345-125-1345-14 after e midendword manager 134-235-1-1245-12456 after e midendword mangel 134-235-1245-13456 after e midendword mängel 134-345-1345-1245-13456 after e midendword manier 134-235-346-1235 after e midword manipul 134-235-24-1234-136-123 midendword emann 15-134-1345 midendword emänn 15-5-134-1345 after e midendword mantel 134-235-2345-13456 after e midendword mäntel 134-345-1345-2345-13456 after e midendword manöver 134-235-246-1236-12456 after e endword mappe 134-1-1234-1234-15 after e midendword mappen 134-1-1234-1234-14 after e midendword marie 134-356-346 after e midendword marien 134-356-24-14 after e midendword mark 134-356-13 after e midword märk 134-345-1235-13 after e midendword marsch 134-356-156 after e midword märsch 134-345-1235-156 after e midword maschin 134-156 after e midendword maserung 134-1-234-12456-136 after e endword maske 134-1-234-13-15 after e midendword masken 134-1-234-13-14 after e midendword maskottchen 134-1-234-13-135-2345-2345-1456-14 after e midendword maß 134-1-2346 after e endword masse 134-1-2346-15 after e midendword massen 134-1-2346-14 after e midendword mäßig 134-345-2346-45 after e midendword mast 134-1-23456 after e midword mäst 134-345-23456 after e midendword material 134-123 after e midendword matrix 134-1-2345-1235-24-6-1346 after e midendword matriz 134-1-2345-1235-24-1356 after e endword matte 134-1-2345-236 after e midendword matten 134-1-2345-2345-14 after e midendword mauer 134-16-12456 after e midendword mäuer 134-34-12456 after e midendword mechanismen 134-15-1456-235-24-234-134-14 after e midendword mechanismus 134-15-1456-235-5-24 after e midword medaill 134-15-145-1-24-12345 after e midendword medizin 134-15-145-24-1356-35 after e midendword mehl 134-2356-123 after e midendword meister 134-146-23456-12456 after e midendword melder 134-13456-145-12456 after e midendword meldung 134-13456-145-136 after e midendword melken 134-13456-13-14 after e midendword melker 134-13456-13-12456 after e midendword melodie 134-13456-135-145-346 after e midendword melodien 134-13456-135-145-24-14 after e midendword merkmal 134-12456-13-134 after e midendword messer 134-15-2346-12456 after e midendword messung 134-15-2346-136 after e midword method 134-15-2345-125-135-145 after e endword metzg 134-15-2345-1356-1245 after e midword metzg 134-15-2345-1356-1245 after e midendword mikro 134-24-13-1235-135 after e midendword minister 134-35-24-23456-12456 after e endword minute 134-35-136-236 after e midendword minuten 134-35-136-2345-14 after e midendword mischung 134-24-156-136 after e midendword mitarbeit 2-2345-356-12 after e midendword mitteil 2-2345-2345-146-123 after e midendword mittel 134-2345 after e midendword modell 134-135-145-15-12345 after e endword modi 134-135-145-24 after e midword modifi 134-135-145-24-124-24 after e midendword modul 134-135-145-136-123 after e midendword modus 134-135-145-136-234 after e midendword möglich 134-456 after e midendword moment 134-135-134-14-2345 after e endword momente 134-135-134-14-236 after e midendword monat 134-135-1345-1-2345 after e endword monate 134-135-1345-1-236 after e midendword moor 134-135-135-1235 after e endword mord 134-26-145 after e midendword mords 134-26-145-234 after e midendword mörder 134-246-1235-145-12456 after e midendword mörtel 134-246-1235-2345-13456 after e midendword motiv 134-135-2345-24-1236 after e endword motor 134-135-2345-135-1235 after e midword motor 134-135-2345-26 after e endword motte 134-135-2345-236 after e midendword motten 134-135-2345-2345-14 after e midendword motto 134-135-2345-2345-135 after e midendword müd 134-1256-145 after e midendword muffel 134-136-124-124-13456 after e midendword mühl 134-1256-125-123 after e midendword mund 134-256-145 after e midword münd 134-1256-1345-145 after e endword münz 134-1256-1345-1356 after e midword münz 134-1256-1345-1356 after e midendword museen 134-136-234-15-14 after e midendword museum 134-136-234-15-136-134 after e midendword musik 134-13 after e midendword muskel 134-136-234-13-13456 after e midendword muster 134-136-23456-12456 after e midendword mutter 134-136-2345-2345-12456 after e midendword mütter 134-1256-2345-2345-12456 after e endword mütze 134-1256-2345-1356-15 after e midendword mützen 134-1256-2345-1356-14 # In der Not ... midendword emachen 15-134-56-14 midendword emacher 15-134-56-12456 midendword emacht 15-134-56-2345 endword emachte 15-134-56-236 always emacho 15-134-1-1456-135 always emaschin 15-134-156 before m begmidword reggae 1235-15-1245-1245-1-15 always anaemia 235-1-15-134-24-1 before m begmidword werbe 2456-12456-23 before m begmidword geschiebe 12346-156-346-23 always lebemann 123-12-15-134-1345 begmidword lebemänn 123-12-15-5-134-1345 begmidword klebemod 13-123-15-23-134-135-145 before m begmidword peace 1234-15-1-6-14-15 always pacemaker 1234-1-6-14-15-134-1-13-12456 before m begmidword service 234-12456-1236-24-6-14-15 before m always renaissance 1235-14-1-24-2346-235-6-14-15 before m begmidword schmiede 156-134-346-145-15 before m begmidword rede 1235-15-145-15 always redempt 1235-15-145-12356-1234-2345 begmidword modemasch 134-135-145-15-134-1-156 always modemensch 134-135-145-15-134-14-156 before m begmidword streiche 23456-1235-146-1456-15 prfword streichem 23456-1235-146-1456-12356 sufword dematerial 145-15-134-123 midword demoorganis 145-12356-135-26-1245-235-24-234 before m begmidword bade 12-1-145-15 before m begmidword jade 245-1-145-15 before m always lade 123-1-145-15 before m begmidword selfmade 234-13456-124-134-1-145-15 begmidword rademach 1235-1-145-15-134-56 before m begmidword parade 1234-356-1-145-15 before m begmidword gerade 12346-1235-1-145-15 prfword geradem 12346-1235-1-145-12356 before m begmidword rede 1235-15-145-15 always vademecum 1236-1-145-15-134-15-6-14-136-134 endword demenge 145-15-134-14-12346 midendword demengen 145-15-134-14-1245-14 before m begmidword heide 125-146-145-15 before m begmidword scheide 156-146-145-15 before m begmidword schneide 156-1345-146-145-15 before m begmidword kreide 13-1235-146-145-15 before m begmidword getreide 12346-2345-1235-146-145-15 before m begmidword weide 2456-146-145-15 always tidemittel 2345-24-145-15-134-2345 before m begmidword gilde 1245-24-123-145-15 before m begmidword lande 123-235-145-15 before m begmidword gelände 12346-123-345-1345-145-15 before m begmidword sende 234-14-145-15 prfword sendem 234-14-145-12356 before m begmidword wende 2456-14-145-15 before m begmidword binde 12-35-145-15 before m begmidword gemeinde 12346-134-1246-145-15 always hindemith 125-35-145-15-134-24-2345-125 before m begmidword gesinde 12346-234-145-15 before m begmidword hunde 125-256-145-15 before m begmidword kunde 13-256-145-15 always modemach 134-135-145-15-134-56 always modemagazin 134-135-145-15-134-1-1245-1-1356-35 always modemark 134-135-145-15-134-356-13 always modemess 134-135-145-15-134-15-2346 before m begmidword garde 1245-356-145-15 before m begmidword pferde 1234-124-12456-145-15 before m always gebäude 12346-12-34-145-15 prfword freeman 124-1235-15-15-134-1-1345 begmidword freeman 124-1235-15-15-134-235 always reemtsma 1235-15-15-134-2345-234-134-1 before m always see 234-15-15 always freemail 124-1235-15-15-134-1-24-123 always agreement 1-1245-1235-15-15-134-14-2345 before m begmidword hilfe 125-24-123-124-15 before m begmidword sage 234-1245-15 before m begmidword wege 2456-1245-15 before m begmidword sprache 234-1234-15 always sprachempfind 234-1234-12356-1234-124-35-145 before m begmidword epoche 15-1234-135-1456-15 before m begmidword recherche 1235-15-1456-12456-1456-15 before m begmidword wäsche 2456-345-156-15 before m begmidword tusche 2345-136-156-15 before m begmidword watsche 2456-1-2345-156-15 before m begword ehe 15-125-15 sufword ehemalig 15-125-15-134-45 midendword ehemalig 2356-15-134-45 sufword ehemals 15-125-15-134-234 midendword ehemals 2356-15-134-234 before m always anleihe 235-123-146-125-15 before m always ruhe 1235-136-125-15 begmidword tantiem 2345-235-2345-24-12356 always jemals 245-15-134-234 before m begmidword anke 235-13-15 endword ankem 235-13-12356 before m begmidword getränke 12346-2345-1235-345-1345-13-15 before m always stärke 23456-345-1235-13-15 before m always ensemble 14-234-12356-12-123-15 always allemal 1-15-134 before m begmidword gentle 1245-14-2345-123-15 before m always spiele 2-346-15 always telemedien 2345-13456-15-134-15-145-24-14 always telemedium 2345-13456-15-134-15-145-24-136-134 always telemeter 2345-13456-15-134-15-2345-12456 always telemetrie 2345-13456-15-134-15-2345-1235-346 always telemetrisch 2345-13456-15-134-15-2345-1235-24-156 before m begmidword kohle 13-135-125-123-15 before m begmidword fälle 5-124-12345-15 always horlemann 125-26-123-15-134-235-1345 endword memenge 134-15-134-14-12346 midendword memengen 134-15-134-14-1245-14 before m begmidword reklame 1235-15-13-123-1-134-15 midendword nahmemensch 1345-134-15-134-14-156 always fememord 124-12356-15-134-26-145 always fememörder 124-12356-15-134-246-1235-145-12456 before m begmidword filme 124-24-123-134-15 begmidword filmempfind 124-24-123-134-12356-1234-124-35-145 before m begmidword wärme 2456-345-1235-134-15 always dänemark 145-345-1345-15-134-356-13 before m begmidword hygiene 125-6-13456-1245-24-14-15 prfword reinem 1235-1246-12356 before m begmidword reine 1235-1246-15 before m begmidword schweine 156-2456-1246-15 before m begmidword gabardine 1245-1-12-356-145-35-15 before m begmidword margarine 134-356-1245-356-35-15 before m begmidword marine 134-356-35-15 prfword marinem 134-356-35-12356 before m begmidword sohne 234-135-125-1345-15 before m begmidword söhne 234-246-125-1345-15 before m begmidword popeline 1234-135-1234-13456-35-15 before m begmidword online 135-1345-123-35-15 before m begmidword routine 1235-135-136-2345-35-15 before m begmidword sahne 234-1-125-1345-15 before m begmidword sühne 234-1256-125-1345-15 midword nemach 1345-15-134-56 endword nemenge 1345-15-134-14-12346 midendword nemengen 1345-15-134-14-1245-14 always annemarie 235-1345-15-134-356-346 before m begmidword wonne 2456-135-1345-1345-15 always grönemeyer 1245-1235-246-1345-15-134-15-6-13456-12456 always warnemünd 2456-356-1345-15-134-1256-1345-145 always remagen 1235-15-134-1-1245-14 always remake 1235-15-134-1-13-15 always remakes 1235-15-134-1-13-123456 always rematerial 1235-15-134-123 always remark 1235-15-134-356-13 before m begmidword hardware 125-356-145-2456-356-15 before m begmidword karriere 13-356-1235-24-12456-15 always genremaler 1245-14-1235-15-134-25-12456 before m begmidword genre 1245-14-1235-15 always entremet 14-2345-1235-15-134-15-2345 always outremont 135-136-2345-1235-15-134-135-1345-2345 before m begmidword ampere 1-134-1234-12456-15 begmidword irremach 24-1235-1235-15-134-56 before m begmidword säure 234-34-1235-15 before m begmidword gebläse 12346-12-123-345-234-15 begmidword kasemat 13-1-234-15-134-1-2345 before m begmidword käse 13-345-234-15 before m begmidword lese 123-123456-15 before m begmidword geräusche 12346-1235-34-156-15 begmidword geräuschempfind 12346-1235-34-156-12356-1234-124-35-145 before m begmidword speise 234-1234-146-234-15 before m begmidword reise 1235-146-234-15 prfword greisem 1245-1235-146-234-12356 before m begmidword gänse 1245-345-1345-234-15 before m always narkose 1345-356-13-135-234-15 before m begmidword löse 123-246-234-15 prfword lösem 123-246-234-12356 before m begword prognose 12345-1245-1345-135-234-15 before m midword prognose 1234-1235-135-1245-1345-135-234-15 begmidword rosemar 1235-135-234-15-134-356 before m always baisse 12-1-24-2346-15 before m always crosse 6-14-1235-135-2346-15 before m always hausse 125-16-2346-15 before m begmidword gehäuse 12346-125-34-234-15 before m begmidword läuse 123-34-234-15 always krauseminz 13-1235-16-234-15-134-35-1356 before m begmidword gemüse 12346-134-1256-234-15 before m begmidword schmuse 156-134-136-234-15 before m begmidword analyse 235-25-6-13456-234-15 always posemuckel 1234-135-234-15-134-136-46-13456 endword temal 236-134 always sitemap 234-24-236-134-1-1234 before m begmidword geschäfte 1245-124-15 before m begmidword kräfte 5-13-124-15 before m begmidword gerüchte 12346-1235-1256-1456-236 before m begword projekte 12345-245-15-13-236 before m midword projekte 1234-1235-135-245-15-13-236 before m always ernte 12456-1345-236 prfword erntem 12456-1345-2345-12356 always kerntem 13-12456-1345-2345-12356 begmidword lerntemp 123-12456-1345-2345-12356-1234 endword stemal 23456-15-134 before m begmidword watte 2456-1-2345-236 before m begmidword motte 134-135-2345-236 before m begmidword bräute 12-1235-34-236 before m begmidword leute 123-126-236 begmidword travemünd 2345-1235-1-1236-15-134-1256-1345-145 begmidword livemit 123-24-1236-15-2-2345 before m begmidword parallaxe 1234-356-1-12345-1-6-1346-15 before m begmidword vize 1236-24-1356-15 before m begmidword bronze 12-1235-135-1345-1356-15 before m begmidword katze 13-1-2345-1356-15 before m begmidword witze 2456-24-2345-1356-15 before m begmidword krätze 13-1235-345-2345-1356-15 before m begmidword butze 12-136-2345-1356-15 # EN (4.1 Lautgruppenkürzungen) word en 15-1345 always en 14 begmidword werbenach 2456-12456-23-1345-56 prfword gabename 1245-1-23-1345-1-134-15 always gabenamen 1245-1-23-1345-1-134-14 always beneath 23-1345-15-1-2345-125 always gabeneigung 1245-1-23-1345-146-1245-136 always werbeneuheit 2456-12456-23-1345-126-125 always habenichts 2-125-15-1345-234 sufword probenummer 12345-23-1345-136-1346-12456 midendword probenummer 1234-1235-135-23-1345-136-1346-12456 always werbenummer 2456-12456-23-1345-136-1346-12456 always servicenetz 234-12456-1236-24-6-14-15-1345-15-2345-1356 begmidword serviceniv 234-12456-1236-24-6-14-15-1345-24-1236 always denatur 145-15-1345-2345 always denazifiz 145-15-1345-1-1356-24-124-24-1356 always sendenetz 234-14-145-15-1345-15-2345-1356 always denerv 145-15-1345-12456-1236 begmidword badenix 12-1-145-15-1345-24-6-1346 always schmiedenagel 156-134-346-145-15-1345-1-1245-13456 begmidword heidenelk 125-146-145-15-1345-13456-13 begmidword weidenutz 2456-146-145-15-1345-1356 always meldenam 134-13456-145-15-1345-1-134 always meldenetz 134-13456-145-15-1345-15-2345-1356 always meldenot 134-13456-145-15-1345-135-2345 always hundenapf 125-256-145-15-1345-1-1234-124 begmidword hundenam 125-256-145-15-1345-1-134 always hundenarr 125-256-145-15-1345-356-1235 begmidword hundenärr 125-256-145-15-1345-345-1235-1235 begmidword hundenas 125-256-145-15-1345-1-234 always gemeindeneu 12346-134-1246-145-15-1345-126 always odenam 135-145-15-1345-1-134 always modenarr 134-135-145-15-1345-356-1235 always modenärr 134-135-145-15-1345-345-1235-1235 begmidword pferdenas 1234-124-12456-145-15-1345-1-234 always pferdenarr 1234-124-12456-145-15-1345-356-1235 begmidword pferdenärr 1234-124-12456-145-15-1345-345-1235-1235 always pferdenatur 1234-124-12456-145-15-1345-2345 always pferdenüster 1234-124-12456-145-15-1345-1256-23456-12456 always aberdeen 1-12-12456-145-15-15-1345 sufword eileen 146-123-15-15-1345 always spleen 234-1234-123-15-15-1345 always screen 234-6-14-1235-15-15-1345 always green 1245-1235-15-15-1345 always seenadel 234-15-15-1345-1-145-13456 always seeniveau 234-15-15-1345-24-1236-15-16 always teenager 2345-15-15-1345-1-1245-12456 prfword steen 23456-15-15-1345 prfword steens 23456-15-15-1345-234 always ideenarm 24-145-15-14-356-134 always seenartig 234-15-14-356-2345-45 begmidword ideenassozi 24-145-15-14-1-2346-135-1356-24 always ideenaustausch 24-145-15-14-16-234-2345-16-156 always colleen 6-14-135-12345-15-15-1345 prfword armeen 356-134-15-14 begmidword seenelk 234-15-15-1345-13456-13 begmidword peenemünd 1234-15-15-1345-15-134-1256-1345-145 always freenet 124-1235-15-15-1345-15-2345 sufword maureen 134-16-1235-15-15-1345 always seenot 234-15-15-1345-135-2345 begmidword seenöt 234-15-15-1345-246-2345 prfword seenöt 234-15-15-1345-246-236 begmidword seenymph 234-15-15-1345-6-13456-134-1234-125 always seenäh 234-15-15-1345-345-125 begmidword seenäh 234-15-15-1345-345-125 always teenie 2345-15-15-1345-346 always teeny 2345-15-15-1345-6-13456 begmidword hilfenahm 125-24-123-124-15-1345-134 always hilfeniveau 125-24-123-124-15-1345-24-1236-15-16 always zeigenadel 1356-146-12346-1345-1-145-13456 prfword hängenase 125-345-1345-12346-1345-1-234-15 always hängenasen 125-345-1345-12346-1345-1-234-14 always spionagenetz 234-1234-24-135-1345-1-12346-1345-15-2345-1356 always wegenetz 2456-1245-15-1345-15-2345-1356 always taugenichts 2345-16-12346-1345-234 always patschenass 1234-1-2345-156-15-1345-1-2346 word ehename 15-125-15-1345-1-134-15 endword ehename 2356-15-1345-1-134-15 always ehenamen 2356-15-1345-1-134-14 prfword mathenote 134-1-2345-125-15-1345-135-236 always mathenoten 134-1-2345-125-15-1345-135-2345-14 always leihenehmer 123-146-125-15-1345-125-12456 sufword siena 234-24-14-1 always sienesisch 234-24-14-123456-24-156 prfword theorieneutral 2345-125-15-26-346-1345-126-2345-1235-1-123 begmidword theorieneutral 2345-125-15-26-346-1345-126-2345-1235-25 always spuckenass 234-1234-136-46-15-1345-1-2346 always bottleneck 12-135-2345-2345-123-15-1345-15-46 always villeneuv 1236-24-12345-15-1345-126-1236 always telenovela 2345-13456-15-1345-135-1236-13456-1 always teilenummer 2345-146-123-15-1345-136-1346-12456 begmidword teilenam 2345-146-123-15-1345-1-134 always nahmeneigung 1345-134-15-1345-146-1245-136 always wärmenetz 2456-345-1235-134-15-1345-15-2345-1356 always wärmenetz 2456-345-1235-134-15-1345-15-2345-1356 begmidword schweinenier 156-2456-1246-15-1345-346-1235 always aknen 1-13-1345-15-1345 always phoenix 1234-125-135-15-1345-24-6-1346 always aren't 1-1235-15-1345-6-2345 before n begmidword hardware 125-356-145-2456-356-15 always renatur 1235-15-1345-2345 always schwerenot 156-2456-12456-15-1345-135-2345 always chiffrenummer 1456-24-124-124-1235-15-1345-136-1346-12456 before n begmidword softwarenutz 234-135-124-2345-2456-356-15-1345-1356 always schwerenöter 156-2456-12456-15-1345-246-2345-12456 begmidword kosenam 13-135-234-15-1345-1-134 begmidword glucosenach 1245-123-136-6-14-135-234-15-1345-56 begmidword morsenach 134-26-234-15-1345-56 begmidword messeneu 134-15-2346-15-1345-126 begmidword pressenach 1234-1235-15-2346-15-1345-56 always pressenotiz 1234-1235-15-2346-15-1345-135-2345-24-1356 before n always baisse 12-1-24-2346-15 always mäusenest 134-34-234-15-1345-15-23456 always usenet 136-234-15-1345-15-2345 begmidword städtenam 23456-345-145-236-1345-1-134 always kräftenach 5-13-124-15-1345-56 always gutenacht 1245-136-236-1345-56-2345 prfword haltenase 125-25-236-1345-1-234-15 always haltenasen 125-25-236-1345-1-234-14 always gütenorm 1245-1256-236-1345-26-134 always bytenummer 12-6-13456-236-1345-136-1346-12456 before n begmidword bronze 12-1235-135-1345-1356-15 prfword bronzen 12-1235-135-1345-1356-14 prfword bronzene 12-1235-135-1345-1356-14-15 prfword bronzenem 12-1235-135-1345-1356-14-12356 prfword bronzenen 12-1235-135-1345-1356-14-14 prfword bronzener 12-1235-135-1345-1356-14-12456 prfword bronzenes 12-1235-135-1345-1356-14-123456 # ENT- (4.2.1 Vorsilbenkürzungen) begword ent 2346 sufword entchen 14-2345-1456-14 word ente 14-236 always entelech 14-2345-13456-15-1456 always enten 14-2345-14 always hallentennis 125-1-12345-14-2345-14-1345-24-234 always rasentennis 1235-1-234-14-2345-14-1345-24-234 always frauentennis 124-1235-16-14-2345-14-1345-24-234 always entente 14-2345-14-236 always ententeil 14-2345-14-2345-146-123 always ententeich 14-2345-14-2345-146-1456 prfword enter 14-2345-12456 always enterbeil 14-2345-12456-12-146-123 always enterbrück 14-2345-12456-12-1235-1256-46 always enter- 14-2345-12456-36 always entere 14-2345-12456-15 always enterem 14-2345-12456-12356 always enteren 14-2345-12456-14 always enterer 14-2345-12456-12456 always enteres 14-2345-12456-123456 always enterhak 14-2345-12456-125-1-13 always enterich 14-2345-12456-3456 always enteritis 14-2345-12456-24-2345-24-234 always entermesser 14-2345-12456-134-15-2346-12456 always entern 14-2345-12456-1345 always entero 14-2345-12456-135 always enterogen 14-2345-12456-135-1245-14 always enterpris 14-2345-12456-1234-1235-24-234 always enterst 14-2345-12456-23456 always entert 14-2345-12456-2345 always entertain 14-2345-12456-2345-1-24-1345 always entertast 14-2345-12456-2345-1-23456 prfword enterte 14-2345-12456-236 prfword entertem 14-2345-12456-2345-12356 prfword enterten 14-2345-12456-2345-14 prfword enterter 14-2345-12456-2345-12456 prfword entertes 14-2345-12456-2345-123456 prfword entertest 14-2345-12456-236-23456 prfword entertet 14-2345-12456-236-2345 always enterung 14-2345-12456-136 always enthusia 14-2345-125-136-234-24-1 always enthymem 14-2345-125-6-13456-134-12356 always entität 14-2345-5-345 always entities 14-2345-24-2345-346-234 always entity 14-2345-24-2345-6-13456 always entlein 14-2345-123-1246 always entoderm 14-2345-135-145-12456-134 always entomo 14-2345-135-134-135 midendword entomori 14-2345-135-134-26-24 always entopisch 14-2345-135-1234-24-156 always entoptisch 14-2345-135-1234-2345-24-156 always entotisch 14-2345-135-2345-24-156 prfword entourage 14-2345-135-136-1235-1-12346 always entourag 14-2345-135-136-1235-1-1245 always entrec 14-2345-1235-15-6-14 always entrecht 2346-1235-2345 always zentrech 1356-14-2345-1235-15-1456 always entree 14-2345-1235-15-15 always entremet 14-2345-1235-15-134-15-2345 always entrepreneur 14-2345-1235-15-1234-1235-14-126-1235 always entresol 14-2345-1235-15-234-135-123 always entrevu 14-2345-1235-15-1236-136 always entrop 14-2345-1235-135-1234 # ER (4.1 Lautgruppenkürzungen) always er 12456 always aerobic 1-15-1235-135-12-24-6-14 before er begword ausgabe 34-1245-1-23 before er midword ausgabe 16-234-1245-1-23 before er midword gewölbe 12346-2456-246-123-23 before e begword probe 12345-23 before e midword probe 1234-1235-135-23 before er always gewebe 12346-2456-15-23 before er always sterbe 23456-12456-23 always sterberei 23456-12456-12-12456-146 before er always werbe 2456-12456-23 prfword werber 2456-12456-12-12456 always bewerber 23-2456-12456-12-12456 always erwerber 12456-2456-12456-12-12456 prfword werberin 2456-12456-12-12456-35 prfword werberinnen 2456-12456-12-12456-35-1345-14 always werberisch 2456-12456-12-12456-24-156 prfword werbern 2456-12456-12-12456-1345 prfword werbers 2456-12456-12-12456-234 prfword berundal 12-12456-256-145-1-123 begmidword berundal 12-12456-256-145-25 before e always bade 12-1-145-15 before er begmidword jade 245-1-145-15 before er always parade 1234-356-1-145-15 before er begmidword kreide 13-1235-146-145-15 before er midword ance 235-6-14-15 prfword ancer 235-6-14-12456 prfword ancera 235-6-14-12456-1 prfword ancers 235-6-14-12456-234 before er begmidword service 234-12456-1236-24-6-14-15 begmidword deregul 145-15-1235-15-1245-136-123 begmidword derangier 145-15-1235-235-1245-346-1235 before er always getreide 12346-2345-1235-146-145-15 before r always melde 134-13456-145-15 prfword melder 134-13456-145-12456 begmidword melderattrapp 134-13456-145-12456-1-2345-2345-1235-1-1234-1234 prfword meldern 134-13456-145-12456-1345 prfword melderin 134-13456-145-12456-35 prfword melderinnen 134-13456-145-12456-35-1345-14 prfword melders 134-13456-145-12456-234 before er always gemälde 12346-134-345-123-145-15 before e always lande 123-235-145-15 before e always mode 134-135-145-15 before er always gebäude 12346-12-34-145-15 always beer 12-15-15-1235 prfword beerbe 23-12456-12-15 always beerben 23-12456-12-14 always beerbst 23-12456-12-23456 always beerbt 23-12456-12-2345 prfword beerbte 23-12456-12-236 always beerbtest 23-12456-12-236-23456 always beerbung 23-12456-12-136 always beerdig 23-12456-145-45 always heferein 125-15-124-15-1235-1246 before er always hilfe 125-24-123-124-15 always beruferat 23-1235-136-124-15-1235-1-2345 before er begmidword trage 2345-1245-15 before er begmidword prestige 1234-1235-15-23456-45-15 always heer 125-15-15-1235 begmidword näheer 1345-345-125-15-12456 always cheer 1456-15-15-1235 before e always schwäche 156-2456-345-1456-15 before e always recherche 1235-15-1456-12456-1456-15 begmidword ascheroll 1-156-15-1235-135-12345 begmidword ascheröll 1-156-15-1235-246-12345 always wäscheraum 2456-345-156-15-1235-16-134 begmidword wäscheräum 2456-345-156-15-1235-34-134 always weheruf 2456-2356-15-1235-136-124 before e always anleihe 235-123-146-125-15 before er always mathe 134-1-2345-125-15 always stärkereg 23456-345-1235-13-15-1235-15-1245 always leer 123-15-15-1235 always galeer 1245-25-15-15-1235 always liebeleer 123-346-23-123-15-15-1235 before er begmidword kohle 13-135-125-123-15 prfword kohler 13-135-125-123-12456 before e always klee 13-123-15-15 before r begmidword koschenille 13-135-156-14-24-12345-15 always meer 134-15-15-1235 before er always nahme 1345-134-15 before e always wärme 2456-345-1235-134-15 always neer 1345-15-15-1235 before e always sahne 234-1-125-1345-15 always guineer 1245-136-35-15-12456 always peer 1234-15-15-1235 before e always grippe 1245-1235-24-1234-1234-15 always speer 234-1234-15-15-1235 begmidword haarerauf 125-1-1-1235-15-1235-16-124 before e always software 234-135-124-2345-2456-356-15 before er begmidword säure 234-34-1235-15 before er always see 234-15-15 before e always reise 1235-146-234-15 before er always diagnose 145-24-1-1245-1345-135-234-15 before e always presse 1234-1235-15-2346-15 before er always analyse 235-25-6-13456-234-15 before e always tee 2345-15-15 always teer 2345-15-15-1235 always haltering 125-25-236-1235-35-1245 prfword halteringe 125-25-236-1235-35-12346 always halteroll 125-25-236-1235-135-12345 before e always kälte 13-345-123-236 always kälteraum 13-345-123-236-1235-16-134 begmidword kälteräum 13-345-123-236-1235-34-134 before e always elite 13456-24-236 before e always ernte 12456-1345-236 before er begmidword getriebe 12346-2345-1235-346-23 before er begmidword schiebe 156-346-23 prfword schieber 156-346-12-12456 before konsonant begmidword schieber 156-346-12-12456 prfword schieberei 156-346-12-12456-146 prfword schiebereien 156-346-12-12456-146-14 before er begword probe 12345-23 before er midword probe 1234-1235-135-23 before er midword bleibe 12-12-15 always bleiber 12-12-12456 always bleibers 12-12-12456-234 before er midword gabe 1245-1-23 always haberecht 2-125-15-1235-2345 begmidword heberoll 125-15-23-1235-135-12345 begmidword kleberoll 13-123-15-23-1235-135-12345 before er begmidword parforce 1234-356-124-26-6-14-15 prfword laderampe 123-1-145-15-1235-1-134-1234-15 always laderampen 123-1-145-15-1235-1-134-1234-14 before er begmidword hunde 125-256-145-15 always thunder 2345-125-256-145-12456 always hundert 125-256-145-12456-2345 prfword hunderte 125-256-145-12456-236 before er begmidword gemeinde 12346-134-1246-145-15 always ständerat 5-23456-15-1235-1-2345 always ständerät 5-23456-15-1235-345-2345 always ständeräte 5-23456-15-1235-345-236 always heiderauch 125-146-145-15-1235-16-1456 midendword deraum 145-15-1235-16-134 midword deräum 145-15-1235-34-134 always derealisation 145-15-1235-15-25-24-234-5-1345 midendword derecht 145-15-1235-2345 always ständerecht 5-23456-15-1235-2345 midendword dereduktion 145-15-1235-15-145-136-13-2345-245 midword dereduzier 145-15-1235-15-145-136-1356-346-1235 midendword dereferenz 145-15-1235-15-124-12456-14-1356 midendword dereform 145-15-1235-15-124-26-134 after e midword regist 1235-15-1245-24-23456 midendword deregulation 145-15-1235-15-1245-136-123-5-1345 midendword deregulier 145-15-1235-15-1245-136-123-346-1235 prfword badereise 12-1-145-15-1235-146-234-15 always badereisen 12-1-145-15-1235-146-234-14 prfword laderunge 123-1-145-15-1235-256-12346 always laderungen 123-1-145-15-1235-256-1245-14 always siederohr 234-346-145-15-1235-135-125-1235 begmidword siederöhr 234-346-145-15-1235-246-125-1235 begmidword heiderös 125-146-145-15-1235-246-234 always weiderind 2456-146-145-15-1235-35-145 always händeringen 5-125-145-15-1235-35-1245-14 before er begmidword gelände 12346-123-345-1345-145-15 prfword geländer 12346-123-345-1345-145-12456 prfword geländern 12346-123-345-1345-145-12456-1345 always geländers 12346-123-345-1345-145-12456-234 begmidword geländerst 12346-123-345-1345-145-12456-23456 prfword sendereihe 234-14-145-15-1235-146-125-15 always sendereihen 234-14-145-15-1235-146-125-14 begmidword senderöhr 234-14-145-15-1235-246-125-1235 before er begmidword gewinde 12346-2456-35-145-15 begmidword moderedakt 134-135-145-15-1235-15-145-1-13-2345 begmidword modereis 134-135-145-15-1235-146-234 always moderessort 134-135-145-15-1235-15-2346-26-2345 always moderichtung 134-135-145-15-2-3456-136 before er begmidword garde 1245-356-145-15 prfword garderobe 1245-356-145-12456-135-12-15 begmidword garderobe 1245-356-145-12456-135-23 always garderoben 1245-356-145-12456-135-12-14 before er begmidword pferde 1234-124-12456-145-15 before er begmidword gebäude 12346-12-34-145-15 always engineer 14-1245-35-15-15-1235 always hilferuf 125-24-123-124-15-1235-136-124 always schärferelation 156-345-1235-124-15-1235-13456-5-1345 always spracherecht 234-1234-15-1235-2345 always ascheregen 1-156-15-1235-15-1245-14 begmidword wäscheroll 2456-345-156-15-1235-135-12345 sufword eherecht 15-125-15-1235-2345 midendword eherecht 2356-15-1235-2345 sufword eheregister 15-125-15-1235-15-1245-24-23456-12456 midendword eheregister 2356-15-1235-15-1245-24-23456-12456 sufword ehering 15-125-15-1235-35-1245 midendword ehering 2356-15-1235-35-1245 word eheringe 15-125-15-1235-35-12346 endword eheringe 2356-15-1235-35-12346 word eheroman 15-125-15-1235-135-134-1-1345 begword eheroman 15-125-15-1235-135-134-235 midword eheroman 2356-15-1235-135-134-235 endword eheroman 2356-15-1235-135-134-1-1345 begword eheromän 15-125-15-1235-135-134-345-1345 midword eheromän 2356-15-1235-135-134-345-1345 prfword weiherede 2456-146-125-15-1235-15-145-15 always weihereden 2456-146-125-15-1235-15-145-14 before er always ruhe 1235-136-125-15 prfword ruher 1235-136-125-12456 prfword ruhern 1235-136-125-12456-1345 prfword ruhers 1235-136-125-12456-234 before er begmidword knie 13-1345-346 always sacknier 234-1-46-1345-346-1235 always schocknier 156-135-46-1345-346-1235 always taljereep 2345-25-245-15-1235-15-15-1234 before er begmidword getränke 12346-2345-1235-345-1345-13-15 always stärkereaktion 23456-345-1235-13-15-1235-15-1-13-2345-245 always stärkereich 23456-345-1235-13-15-1235-146-1456 prfword primerate 1234-1235-24-134-15-1235-1-236 always primerates 1234-1235-24-134-15-1235-1-2345-123456 always nahmeregel 1345-134-15-1235-15-1245-13456 always homerun 125-135-134-15-1235-256 before er begmidword wärme 2456-345-1235-134-15 prfword wärmer 2456-345-1235-134-12456 prfword wärmere 2456-345-1235-134-12456-15 prfword wärmerem 2456-345-1235-134-12456-12356 prfword wärmeren 2456-345-1235-134-12456-14 prfword wärmerer 2456-345-1235-134-12456-12456 prfword wärmeres 2456-345-1235-134-12456-123456 prfword wärmerin 2456-345-1235-134-12456-35 # HOMONYM prfword wärmerinnen 2456-345-1235-134-12456-35-1345-14 prfword wärmern 2456-345-1235-134-12456-1345 prfword wärmers 2456-345-1235-134-12456-234 always schwärmer 156-2456-345-1235-134-12456 begmidword sahneroll 234-1-125-1345-15-1235-135-12345 prfword sühneritual 234-1256-125-1345-15-1235-24-2345-136-1-123 begmidword sühneritual 234-1256-125-1345-15-1235-24-2345-136-25 begmidword routinerech 1235-135-136-2345-35-15-1235-15-1456 before er begmidword schweine 156-2456-1246-15 always schweinerei 156-2456-1246-12456-146 before er begmidword sterne 23456-12456-1345-15 sufword moers 134-135-15-1235-234 always sparerib 234-1234-356-15-1235-24-12 always wareries 2456-356-15-1235-346-234 prfword wareroute 2456-356-15-1235-135-136-236 begmidword warerout 2456-356-15-1235-135-136-2345 always irrered 24-1235-1235-15-1235-15-145 always oxidasereaktion 135-6-1346-24-145-1-234-15-1235-15-1-13-2345-245 always käserest 13-345-234-15-1235-15-23456 begmidword käserind 13-345-234-15-1235-35-145 before er begmidword gebläse 12346-12-123-345-234-15 begmidword naserümpf 1345-1-234-15-1235-1256-134-1234-124 begmidword leseratt 123-123456-15-1235-1-2345-2345 prfword leseratte 123-123456-15-1235-1-2345-236 always leseraum 123-123456-15-1235-16-134 always leseregister 123-123456-15-1235-15-1245-24-23456-12456 prfword lesereise 123-123456-15-1235-146-234-15 always lesereisen 123-123456-15-1235-146-234-14 prfword leseringe 123-123456-15-1235-35-12346 always lesering 123-123456-15-1235-35-1245 begmidword leseräum 123-123456-15-1235-34-134 before er begmidword speise 234-1234-146-234-15 prfword speiser 234-1234-146-234-12456 prfword speisern 234-1234-146-234-12456-1345 prfword speisers 234-1234-146-234-12456-234 begmidword reiserech 1235-146-234-15-1235-15-1456 always reiseregel 1235-146-234-15-1235-15-1245-13456 always reisereport 1235-146-234-15-1235-15-1234-26-2345 prfword reiseroute 1235-146-234-15-1235-135-136-236 begmidword reiserout 1235-146-234-15-1235-135-136-2345 always reiseruf 1235-146-234-15-1235-136-124 before er begword narkose 1345-356-13-135-234-15 before er begword prognose 12345-1245-1345-135-234-15 before er midword prognose 1234-1235-135-1245-1345-135-234-15 always massereich 134-1-2346-15-1235-146-1456 always rasserein 1235-1-2346-15-1235-1246 always presserat 1234-1235-15-2346-15-1235-1-2345 begmidword presserät 1234-1235-15-2346-15-1235-345-2345 prfword presseräte 1234-1235-15-2346-15-1235-345-236 always presserecht 1234-1235-15-2346-15-1235-2345 begmidword presserefer 1234-1235-15-2346-15-1235-15-124-12456 begmidword presserezen 1234-1235-15-2346-15-1235-15-1356-14 always presserummel 1234-1235-15-2346-15-1235-136-1346-13456 always presserundschau 1234-1235-15-2346-15-1235-256-145-156-16 before er begmidword gehäuse 12346-125-34-234-15 prfword gehäuser 12346-125-34-234-12456 prfword gehäusern 12346-125-34-234-12456-1345 before er begmidword analyse 235-25-6-13456-234-15 prfword städtereise 23456-345-145-236-1235-146-234-15 always städtereisen 23456-345-145-236-1235-146-234-14 before er begmidword kräfte 5-13-124-15 before er begmidword früchte 124-1235-1256-1456-236 always halteriegel 125-25-236-1235-346-1245-13456 always halteriemen 125-25-236-1235-346-134-14 always haltering 125-25-236-1235-35-1245 prfword halteringe 125-25-236-1235-35-12346 always warteraum 2456-356-236-1235-16-134 begmidword warteräum 2456-356-236-1235-34-134 before er begmidword gäste 1245-345-23456-15 always pusterohr 1234-136-23456-15-1235-135-125-1235 begmidword pusteröhr 1234-136-23456-15-1235-246-125-1235 begmidword räteregier 1235-345-236-1235-1245 always räterepublik 1235-345-236-1235-13 begmidword treuerabat 2345-1235-126-15-1235-1-12-1-2345 before er always reserve 1235-123456-12456-1236-15 before er begmidword vize 1236-24-1356-15 before er begmidword hitze 125-24-2345-1356-15 prfword hitzer 125-24-2345-1356-12456 prfword hitzern 125-24-2345-1356-12456-1345 prfword hitzers 125-24-2345-1356-12456-234 before er begmidword grütze 1245-1235-1256-2345-1356-15 # ES (4.1 Lautgruppenkürzungen) always es 123456 midword esammel 15-234-1-1346-13456 midword esamml 15-234-1-1346-123 always esch 15-156 midendword eschrift 15-156-2345 midendword eshire 15-234-125-24-1235-15 midendword eshires 15-234-125-24-1235-123456 midendword eshow 15-234-125-135-2456 always ess 15-2346 always essch 123456-156 endword esschen 15-2346-1456-14 endword esschens 15-2346-1456-14-234 always est 15-23456 midendword estell 15-2-13456 midendword estund 15-23456-256-145 prfword caesar 6-14-1-15-234-1-1235 begmidword caesar 6-14-1-15-234-356 before s always sterbe 23456-12456-23 before s always service 234-12456-1236-24-6-14-15 prfword services 234-12456-1236-24-6-14-123456 before s always patience 1234-1-2345-24-14-6-14-15 before s always renaissance 1235-14-1-24-2346-235-6-14-15 begmidword desensibilis 145-15-234-14-234-24-12-24-123-24-234 begmidword despektier 145-15-234-1234-15-13-2345-346-1235 before s always bade 12-1-145-15 prfword bades 12-1-145-123456 prfword bades 12-1-145-123456 prfword badest 12-1-145-15-23456 always badestell 12-1-145-15-2-13456 begmidword badest 12-1-145-15-23456 before s begmidword jade 245-1-145-15 prfword jades 245-1-145-123456 before s always lade 123-1-145-15 prfword blades 12-123-1-145-123456 prfword glades 1245-123-1-145-123456 before s always gerade 12346-1235-1-145-15 always geradeswegs 12346-1235-1-145-123456-2456-1245-234 prfword gerades 12346-1235-1-145-123456 before s always parade 1234-356-1-145-15 before s always schmiede 156-134-346-145-15 prfword schmiedes 156-134-346-145-123456 before s always rede 1235-15-145-15 prfword redes 1235-15-145-123456 before s always getreide 12346-2345-1235-146-145-15 prfword getreides 12346-2345-1235-146-145-123456 before s always eingeweide 1246-12346-2456-146-145-15 before s always gemälde 12346-134-345-123-145-15 prfword gemäldes 12346-134-345-123-145-123456 before s always melde 134-13456-145-15 before s begmidword gelände 12346-123-345-1345-145-15 prfword geländes 12346-123-345-1345-145-123456 before s always stände 5-23456-15 before s always gemeinde 12346-134-1246-145-15 before s always gewinde 12346-2456-35-145-15 prfword gewindes 12346-2456-35-145-123456 before s always hunde 125-256-145-15 prfword hundes 125-256-145-123456 before s always sende 234-14-145-15 prfword sendes 234-14-145-123456 always börsendesaster 12-246-1235-234-14-145-123456-1-23456-12456 always rasend 1235-1-234-14-145 always lösend 123-246-234-14-145 before s always wende 2456-14-145-15 before s always mode 134-135-145-15 before s always garde 1245-356-145-15 before s always pferde 1234-124-12456-145-15 prfword pferdes 1234-124-12456-145-123456 before s always gebäude 12346-12-34-145-15 prfword gebäudes 12346-12-34-145-123456 endword ees 15-15-234 before s always lee 123-15-15 before s always klee 13-123-15-15 always meesenburg 134-15-15-234-14-12-136-1235-1245 always reesa 1235-15-15-234-1 before s always see 234-15-15 prfword sees 234-15-15-234 prfword gesees 12346-234-15-15-234 before s always tee 2345-15-15 before s always hilfe 125-24-123-124-15 before s always reife 1235-146-124-15 prfword reifes 1235-146-124-123456 before s always schärfe 156-345-1235-124-15 before s always lage 123-1-12346 prfword lages 123-1-1245-123456 before s always säge 5-234-1245-15 before s always präge 1234-1235-345-12346 always tragesack 2345-1245-15-234-1-46 begmidword tragesäck 2345-1245-15-234-345-46 always tragesitz 2345-1245-15-2-24 before s begmidword prestige 1234-1235-15-23456-45-15 prfword prestiges 1234-1235-15-23456-45-123456 before s always rache 1235-56-15 before s always wäsche 2456-345-156-15 before s always weihe 2456-146-125-15 before s always ruhe 1235-136-125-15 before s always regie 1235-15-1245-346 begmidword dankestele 145-13-123456-2345-13456-15 before s always ränke 1235-345-1345-13-15 prfword ränkes 1235-345-1345-13-123456 begmidword stinkesock 23456-35-13-15-234-135-46 before s always stärke 23456-345-1235-13-15 always bubblesort 12-136-12-12-123-15-234-26-2345 before s always ensemble 14-234-12356-12-123-15 prfword ensembles 14-234-12356-12-123-123456 before s always spiele 2-346-15 prfword spieles 2-346-123456 before s always tele 2345-13456-15 prfword teles 2345-13456-123456 before s always kohle 13-135-125-123-15 before s always file 124-24-123-15 prfword files 124-24-123-123456 before s begmidword galle 1245-1-12345-15 before s midword promille 1234-1235-135-134-24-12345-15 before s sufword promille 12345-134-24-12345-15 before s always vanille 1236-235-24-12345-15 before s always emaille 12356-1-24-12345-15 prfword emailles 12356-1-24-12345-123456 always stillesein 23456-24-12345-15-234-1246 before s always schule 156-136-123-15 before s always puzzle 1234-136-1356-1356-123-15 prfword puzzles 1234-136-1356-1356-123-123456 before s always reklame 1235-15-13-123-1-134-15 before s always creme 6-14-1235-12356-15 prfword cremes 6-14-1235-12356-123456 before s always wärme 2456-345-1235-134-15 always ganesh 1245-235-15-234-125 before s always hygiene 125-6-13456-1245-24-14-15 before s always szene 234-1356-14-15 before s always sahne 234-1-125-1345-15 before s always schweine 156-2456-1246-15 prfword schweines 156-2456-1246-123456 before s always online 135-1345-123-35-15 before s always marine 134-356-35-15 prfword marines 134-356-35-123456 before s always routine 1235-135-136-2345-35-15 prfword routines 1235-135-136-2345-35-123456 before s always wonne 2456-135-1345-1345-15 before s always quarantäne 6-12345-136-356-235-2345-345-1345-15 before s always pläne 1234-123-345-1345-15 before s always apnoe 1-1234-1345-135-15 before s always grippe 1245-1235-24-1234-1234-15 before s always hardware 125-356-145-2456-356-15 before s always software 234-135-124-2345-2456-356-15 before s always schmiere 156-134-346-1235-15 prfword schmieres 156-134-346-1235-123456 before s always karriere 13-356-1235-24-12456-15 prfword amperes 1-134-1234-12456-123456 before s begmidword ampere 1-134-1234-12456-15 before s always repertoire 1235-15-1234-12456-2345-135-24-1235-15 prfword repertoires 1235-15-1234-12456-2345-135-24-1235-123456 before s always satire 234-1-2345-24-1235-15 before s begmidword genre 1245-14-1235-15 prfword genres 1245-14-1235-123456 before s always folklore 124-135-123-13-123-26-15 before s always säure 234-34-1235-15 before s always lektüre 123-15-13-2345-1256-1235-15 before s always käse 13-345-234-15 prfword käses 13-345-234-123456 before s always lese 123-123456-15 before s always reise 1235-146-234-15 prfword reises 1235-146-234-123456 before s always speise 234-1234-146-234-15 before s always gänse 1245-345-1345-234-15 before s always diagnose 145-24-1-1245-1345-135-234-15 before s always narkose 1345-356-13-135-234-15 before s always glukose 1245-123-136-13-135-234-15 before s always hirse 125-24-1235-234-15 before s always baisse 12-1-24-2346-15 before s always hausse 125-16-2346-15 before s always masse 134-1-2346-15 before s always muße 134-136-2346-15 before s always gehäuse 12346-125-34-234-15 prfword gehäuses 12346-125-34-234-123456 before s always gemüse 12346-134-1256-234-15 prfword gemüses 12346-134-1256-234-123456 before s always dialyse 145-24-25-6-13456-234-15 before s always rate 1235-1-236 prfword rates 1235-1-2345-123456 before s always städte 23456-345-145-236 before s always kräfte 5-13-124-15 before s always mächte 134-345-1456-236 before s always rendite 1235-14-145-24-236 before s always punkte 1234-2345-15 prfword punktes 1234-2345-123456 before s always kälte 13-345-123-236 before s always argumente 356-1245-136-134-14-236 prfword argumentes 356-1245-136-134-14-2345-123456 endword erntes 12456-1345-2345-123456 before s always ernte 12456-1345-236 before s always warte 2456-356-236 prfword wartes 2456-356-2345-123456 before s always werte 2456-12456-236 prfword wertes 2456-12456-2345-123456 before s always gäste 1245-345-23456-15 before s always watte 2456-1-2345-236 before s always jute 245-136-236 before s always güte 1245-1256-236 before s always reserve 1235-123456-12456-1236-15 before s always gaze 1245-1-1356-15 begmidword pilzesuch 1234-24-123-1356-15-234-136-1456 begmidword sülzesala 234-1256-123-1356-15-234-25-1 before s always bronze 12-1235-135-1345-1356-15 before s always hitze 125-24-2345-1356-15 midendword ession 15-2346-245 always praesens 1234-1235-1-15-234-14-234 begmidword spaceshutt 234-1234-1-6-14-15-234-125-136-2345-2345 sufword desselb 145-123456-234-13456-12 always desensibilisier 145-15-234-14-234-24-12-24-123-24-234-346-1235 always arcadespiel 356-6-14-1-145-15-2-346 always balladesänger 12-1-12345-1-145-15-234-345-1345-1245-12456 always mädesüß 134-345-145-15-234-1256-2346 always redesign 1235-15-145-123456-24-1245-1345 always kleidespiegel 13-123-146-145-15-234-1234-346-1245-13456 begmidword schneidescher 156-1345-146-145-15-156-12456 begmidword scheidestund 156-146-145-15-23456-256-145 begmidword scheidestünd 156-146-145-15-23456-1256-1345-145 always waldes 2456-25-145-123456 always landes 123-235-145-123456 begmidword landesch 123-235-145-15-156 always landeschef 123-235-145-123456-1456-15-124 prfword landest 123-235-145-15-23456 always landesteg 123-235-145-15-23456-15-1245 begmidword landestell 123-235-145-15-2-13456 always standes 2-23456-123456 always standest 2-23456-15-23456 always ständest 5-23456-15-23456 always ständestaat 5-23456-15-23456-2345 always wendest 2456-14-145-15-23456 always kindes 13-35-145-123456 always bundes 12-256-145-123456 always codeschnipsel 6-14-135-145-15-156-1345-24-1234-234-13456 always codestück 6-14-135-145-15-23456-1256-46 always todes 2345-135-145-123456 begmidword freudestrahl 124-1235-126-145-15-23456-1235-1-125-123 prfword freesie 124-1235-15-15-234-24-15 begmidword bungeespr 12-256-1245-15-15-234-1234-1235 begmidword erdeess 12456-145-15-15-2346 always heesters 125-15-15-23456-12456-234 prfword hefesorte 125-15-124-15-234-26-236 always hefesorten 125-15-124-15-234-26-2345-14 prfword hefespore 125-15-124-15-234-1234-26-15 always hefesporen 125-15-124-15-234-1234-26-14 always hefestück 125-15-124-15-23456-1256-46 always rufesatz 1235-136-124-15-234-1356 always rufesätz 1235-136-124-15-5-234-1356 always sieges 234-346-1245-123456 always tages 2345-1-1245-123456 always tageschau 2345-1-12346-156-16 syllable geschädig 12346-156-345-145-45 begmidword sageschreib 234-1245-15-156-12 begmidword legesohl 123-15-12346-234-135-125-123 always hagestolz 125-1-12346-23456-135-123-1356 always wagestück 2456-1-12346-23456-1256-46 always nahestand 1345-1-125-15-2-23456 always cachespeicher 6-14-56-15-234-1234-146-1456-12456 midendword ehesach 2356-15-234-56 sufword ehesach 15-125-15-234-56 midword ehesakramen 2356-15-234-1-13-1235-1-134-14 begword ehesakramen 15-125-15-234-1-13-1235-1-134-14 begword eheschließ 15-125-15-156-2346 midword eheschließ 2356-15-156-2346 sufword ehesegen 15-125-15-234-15-1245-14 midendword ehesegen 2356-15-234-15-1245-14 begword ehesemin 15-125-15-234-12356-35 midword ehesemin 2356-15-234-12356-35 sufword ehestand 15-125-15-2-23456 midendword ehestand 2356-15-2-23456 begword eheständ 15-125-15-5-23456 midendword eheständ 2356-15-5-23456 always leiheschein 123-146-125-15-156-1246 always leiheschuld 123-146-125-15-156-136-123-145 always mathestund 134-1-2345-125-15-23456-256-145 always vlies 1236-123-346-234 always geniestreich 1245-14-346-23456-1235-146-1456 always spezies 234-1234-15-1356-24-123456 always troubleshoot 2345-1235-135-136-12-123-15-234-125-135-135-2345 always mühlespiel 134-1256-125-123-15-2-346 always teileseit 2345-146-123-15-234-146-2345 prfword teileseite 2345-146-123-15-234-146-236 always chilesalpeter 1456-24-123-15-234-25-1234-15-2345-12456 sufword achilles 1-1456-24-12345-123456 midword achilles 56-24-12345-123456 always güllesilo 1245-1256-12345-15-234-24-123-135 always moleskin 134-135-123-15-234-13-35 always solesalz 234-135-123-15-234-25-1356 always herkules 125-12456-13-136-123-123456 always stylesheet 23456-6-13456-123-15-234-125-15-15-2345 always frameset 124-1235-1-134-15-234-15-2345 always damespiel 145-1-134-15-2-346 always damestein 145-1-134-15-23456-1246 always ruhmes 1235-136-125-134-123456 always timesharing 2345-24-134-15-234-125-356-35-1245 always stammes 23456-1-1346-123456 always stammessen 23456-1-1346-15-2346-14 always messtechnik 134-15-2346-2345-13 always messtechnisch 134-15-2346-2345-156 always homespun 125-135-134-15-234-1234-256 always armesünder 356-134-15-234-1256-1345-145-12456 always möhnesee 134-246-125-1345-15-234-15-15 begmidword inlineskat 35-123-35-15-234-13-1-2345 always mannes 134-1345-123456 always sinnes 234-35-1345-123456 always wonnesam 2456-135-1345-1345-15-2346 always minnesang 134-35-1345-15-234-235-1245 begmidword juliennesupp 245-136-123-24-14-1345-15-234-136-1234-1234 always minnesänger 134-35-1345-15-234-345-1345-1245-12456 always lonesome 123-135-1345-15-234-135-134-15 always onestep 135-1345-15-23456-15-1234 always marneschlacht 134-356-1345-15-156-123-56-2345 always coesfeld 6-14-135-15-234-124-13456-145 always soest 234-135-15-23456 begmidword benzoesäur 12-14-1356-135-15-234-34-1235 always rippespeer 1235-24-1234-1234-15-234-1234-15-15-1235 always herpes 125-12456-1234-123456 always typesatz 2345-6-13456-1234-15-234-1356 always typeset 2345-6-13456-1234-15-234-15-2345 always typesetz 2345-6-13456-1234-15-2-15 always research 1235-15-234-15-1-1235-1456 prfword reset 1235-15-234-15-2345 begword reset 1235-15-234-15-2345 always resozial 1235-15-234-123 begmidword crescend 6-14-1235-15-234-6-14-14-145 always heeres 125-15-15-1235-123456 always meeres 134-15-15-1235-123456 always schweresinn 156-2456-12456-15-234-35-1345 always unseresteils 256-234-12456-123456-2345-146-123-234 always chiffreschrift 1456-24-124-124-1235-15-156-2345 always kongress 13-135-1345-1245-1235-15-2346 always jahres 245-1235-123456 begmidword shiresauc 234-125-24-1235-15-234-16-6-14 always empirestil 12356-1234-24-1235-15-23456-24-123 always toresschluss 2345-26-123456-156-123-136-2346 always preshave 1234-1235-15-234-125-1-1236-15 always presse 1234-1235-15-2346-15 prfword pressen 1234-1235-15-2346-14 prfword pressens 1234-1235-15-2346-14-234 always zypressen 1356-6-13456-1234-1235-15-2346-14 always pressend 1234-1235-15-2346-14-145 always pressengestell 1234-1235-15-2346-14-12346-2-13456 prfword presser 1234-1235-15-2346-12456 always erpresser 12456-1234-1235-15-2346-12456 always presserei 1234-1235-15-2346-12456-146 prfword pressern 1234-1235-15-2346-12456-1345 prfword pressers 1234-1235-15-2346-12456-234 endword presses 1234-1235-15-2346-123456 prfword pressest 1234-1235-15-2346-15-23456 always dürreschaden 145-1256-1235-1235-15-156-1-145-14 always dürreschäden 145-1256-1235-1235-15-156-345-145-14 always irresein 24-1235-1235-15-234-1246 always entresol 14-2345-1235-15-234-135-123 begmidword löseschalt 123-246-234-15-156-25-2345 always verseschmied 1236-12456-234-15-156-134-346-145 always sauseschritt 234-16-234-15-156-1235-24-2345-2345 begmidword löseschwell 123-246-234-15-156-2456-15-12345 before s begmidword messe 134-15-2346-15 before s begmidword klasse 13-123-1-2346-15 always reisessen 1235-146-234-15-2346-14 always hansestadt 125-235-234-15-23456-1-145-2345 begmidword hansestäd 125-235-234-15-23456-345-145 begmidword lösesumm 123-246-234-15-234-136-1346 always matestrauch 134-1-236-23456-1235-16-1456 always matesträucher 134-1-236-23456-1235-34-1456-12456 always diabetes 145-24-1-23-2345-123456 begmidword whitespac 2456-125-24-236-234-1234-1-6-14 prfword werteste 2456-12456-236-23456-15 prfword wertestem 2456-12456-236-23456-12356 prfword wertesten 2456-12456-236-23456-14 prfword wertester 2456-12456-236-23456-12456 prfword wertestes 2456-12456-236-23456-123456 always geistes 1245-146-23456-123456 always gottes 1245-135-2345-2345-123456 always noisetteschoko 1345-135-24-234-15-2345-236-156-135-13-135 always flötespiel 124-123-246-236-2-346 always treueschwur 2345-1235-126-15-156-2456-136-1235 always blues 12-123-136-15-234 always lovestory 123-135-1236-15-23456-26-6-13456 begmidword bayessch 12-1-6-13456-123456-156 always rallyesport 1235-1-12345-6-13456-15-234-1234-26-2345 sufword prozess 12345-1356-15-2346 sufword prozession 12345-1356-15-2346-245 midendword prozess 1234-1235-135-1356-15-2346 midendword prozession 1234-1235-135-1356-15-2346-245 always gesetzes 12346-2-15-123456 before s begmidword lakritze 123-1-13-1235-24-2345-1356-15 # ETWA (4.4 Zweiformige Kürzungen) always etwa 15-1 always sweetwater 234-2456-15-15-2345-2456-1-2345-12456 always mietwagen 134-346-2345-2456-1-1245-14 begmidword paketwaa 1234-1-13-15-2345-2456-1-1 always paketwagen 1234-1-13-15-2345-2456-1-1245-14 begmidword netwar 1345-15-2345-2456-356 begmidword wetwar 2456-15-2345-2456-356 always internet 35-2345-12456-1345-15-2345 # ETWAS (4.4 Zweiformige Kürzungen) always etwas 2345-2456 # EU (4.1 Lautgruppenkürzungen) word eu 15-136 always eu 126 midendword eunkosten 15-256-13-135-23456-14 always timaeus 2345-24-134-1-15-136-234 always glutaeus 1245-123-136-2345-1-15-136-234 always sterbeuhr 23456-12456-23-136-125-1235 before u begmidword werbe 2456-12456-23 always beunruhig 23-256-1235-136-125-45 always beurkund 23-136-1235-13-256-145 always beurlaub 23-136-1235-123-16-12 always beurteil 23-136-1235-2345-146-123 before u begmidword gewebe 12346-2456-15-23 before u begword probe 12345-23 before u midword probe 1234-1235-135-23 before u begmidword vice 1236-24-6-14-15 before u begmidword lyce 123-6-13456-6-14-15 always deus 145-15-136-234 before u begmidword lade 123-1-145-15 before u begmidword bade 12-1-145-15 always amadeus 1-134-1-145-15-136-234 before u begmidword parade 1234-356-1-145-15 sufword tedeum 2345-15-145-15-136-134 always tedeum 236-145-15-136-134 before u begmidword lande 123-235-145-15 before u begmidword ländeunter 123-345-1345-145-15 before u begmidword gemeinde 12346-134-1246-145-15 always gemeindeutsch 12346-134-1246-145-156 always spondeus 234-1234-135-1345-145-15-136-234 before u begmidword kunde 13-256-145-15 always codeum 6-14-135-145-15-136-134 always spreeufer 234-1234-1235-15-15-136-124-12456 always seeufer 234-15-15-136-124-12456 always seeum 234-15-15-136-134 always seeun 234-15-15-256 before u begmidword hilfe 125-24-123-124-15 before u begmidword beinahe 2-12-1345-1-125-15 always rechercheur 1235-15-1456-12456-1456-126-1235 before u begmidword recherche 1235-15-1456-12456-1456-15 before u begmidword ruhe 1235-136-125-15 before u begmidword leihe 123-146-125-15 always theurg 2345-125-15-136-1235-1245 midendword theus 2345-125-15-136-234 always makeup 134-1-13-15-136-1234 always bakkalaure 12-1-13-13-25-16-1235-15 before u begmidword stärke 23456-345-1235-13-15 always aleuten 25-15-136-2345-14 always aleutisch 25-15-136-2345-24-156 always nucleus 1345-136-6-14-123-15-136-234 before u begmidword kohle 13-135-125-123-15 always ileus 24-123-15-136-234 always nukleus 1345-136-13-123-15-136-234 always oleum 135-123-15-136-134 always linoleum 123-35-135-123-15-136-134 always petroleum 1234-15-2345-1235-135-123-15-136-134 always mausoleum 134-16-234-135-123-15-136-134 always herculaneum 125-12456-6-14-136-123-235-15-136-134 before u begmidword marine 134-356-35-15 before u begmidword routine 1235-135-136-2345-35-15 always marneufer 134-356-1345-15-136-124-12456 always oeuvre 246-136-1236-1235-15 before u begmidword ware 2456-356-15 before u begmidword reise 1235-146-234-15 always themseufer 2345-125-12356-234-15-136-124-12456 before u begmidword presse 1234-1235-15-2346-15 always colosseum 6-14-135-123-135-2346-15-136-134 always kolosseum 13-135-123-135-2346-15-136-134 always museum 134-136-234-15-136-134 before u begmidword gehäuse 12346-125-34-234-15 before u begmidword geräte 12346-1235-345-236 before u begmidword elite 13456-24-236 before u begmidword vize 1236-24-1356-15 always andrözeum 235-145-1235-246-1356-15-136-134 always lyzeum 123-6-13456-1356-15-136-134 # EX- (4.2.1 Vorsilbenkürzungen) word ex 15-6-1346 begword ex 1346 # FAHR FÄHR (4.3.6 Kommakürzungen) always fahr 2-1235 always fähr 5-1235 # FALL FÄLL (4.4 Zweiformige Kürzungen) always fall 124-12345 always fäll 5-124-12345 always fallib 124-1-12345-24-12 # -FALLS 4.2.1 a) Nachsilbenkürzungen word falls 124-12345-234 midendword falls 124 always fallschirm 124-12345-156-24-1235-134 always fallspezifisch 124-12345-234-1234-15-1356-24-124-24-156 always fallstatist 124-12345-23456-1-2345-24-23456 begmidword fallstr 124-12345-23456-1235 begmidword fallstudi 124-12345-23456-136-145-24 always fallsucht 124-12345-234-136-1456-2345 always fallsüchtig 124-12345-234-1256-1456-2345-45 always abfall 1-12-124-12345 always randfall 1235-235-145-124-12345 always mordfall 134-26-145-124-12345 always befall 23-124-12345 always schneefall 156-1345-15-15-124-12345 always pflegefall 1234-124-123-15-12346-124-12345 always garantiefall 1245-356-235-2345-346-124-12345 always kniefall 13-1345-346-124-12345 sufword ausnahmefall 34-1345-134-15-124-12345 always ausnahmefall 16-234-1345-134-15-124-12345 always härtefall 125-345-1235-236-124-12345 always wegfall 2456-1245-124-12345 always durchfall 2-1456-124-12345 always beifall 2-12-124-12345 always rückfall 1235-46-124-12345 always idealfall 24-145-15-25-124-12345 always spezialfall 234-1234-15-1356-24-25-124-12345 always normalfall 1345-26-134-25-124-12345 always kriminalfall 13-1235-24-134-35-25-124-12345 always eventualfall 15-1236-14-2345-136-25-124-12345 always regelfall 1235-15-1245-13456-124-12345 always spielfall 2-346-124-12345 always einzelfall 1246-1356-13456-124-12345 sufword problemfall 12345-12-123-12356-124-12345 always problemfall 1234-1235-135-12-123-12356-124-12345 sufword extremfall 1346-2345-1235-12356-124-12345 always extremfall 15-6-1346-2345-1235-12356-124-12345 always heimfall 125-146-134-124-12345 always anfall 235-124-12345 always sündenfall 234-1256-1345-145-14-124-12345 always regenfall 1235-15-1245-14-124-12345 always zwischenfall 1356-2456-124-12345 always krisenfall 13-1235-24-234-14-124-12345 always einfall 1246-124-12345 always rheinfall 1235-125-1246-124-12345 always tonfall 2345-135-1345-124-12345 always unfall 256-124-12345 always überfall 2-1256-124-12345 always sonderfall 234-135-1345-145-12456-124-12345 always fehlerfall 124-2356-123-12456-124-12345 always wasserfall 2456-1-2346-12456-124-12345 always musterfall 134-136-23456-12456-124-12345 always mauerfall 134-16-12456-124-12345 always trauerfall 2345-1235-16-12456-124-12345 sufword verfall 36-124-12345 always verfall 1236-12456-124-12345 always zerfall 1356-12456-124-12345 always vorfall 2-26-124-12345 always störfall 23456-246-1235-124-12345 always krebsfall 13-1235-15-12-234-124-12345 always todesfall 2345-135-145-123456-124-12345 always bedarfsfall 23-145-356-124-234-124-12345 always scheidungsfall 156-146-145-136-234-124-12345 always anwendungsfall 235-2456-14-145-136-234-124-12345 always wiederholungsfall 346-145-125-135-123-136-234-124-12345 always berechnungsfall 23-1235-15-1456-1345-136-234-124-12345 sufword versicherungsfall 36-234-3456-12456-136-234-124-12345 always versicherungsfall 1236-12456-234-3456-12456-136-234-124-12345 always sanierungsfall 234-235-346-1235-136-234-124-12345 always glücksfall 1245-46-234-124-12345 always unglücksfall 256-1245-46-234-124-12345 always zweifelsfall 1356-2456-146-124-13456-234-124-12345 always beispielsfall 2-12-2-346-234-124-12345 always schadensfall 156-1-145-14-234-124-12345 always rechtsfall 1235-2345-234-124-12345 always gerichtsfall 12346-2-3456-234-124-12345 always krankheitsfall 13-1235-235-13-125-234-124-12345 sufword ausfall 34-124-12345 always ausfall 16-234-124-12345 word ausfallstor 34-124-12345-234-2345-135-1235 begmidword ausfallstor 34-124-12345-234-2345-26 midword ausfallstor 16-234-124-12345-234-2345-26 endword ausfallstor 16-234-124-12345-234-2345-135-1235 always fluchtfall 124-123-136-1456-2345-124-12345 always kreditfall 13-1235-15-145-24-2345-124-12345 always streitfall 23456-1235-146-2345-124-12345 always konfliktfall 13-135-1345-124-123-24-13-2345-124-12345 always notfall 1345-135-2345-124-12345 prfword notfalls 1345-135-2345-124 ### Homonym always fortfall 124-26-2345-124-12345 always höchstfall 125-246-1456-23456-124-12345 sufword testfall 2345-15-23456-124-12345 always testfall 236-23456-124-12345 always ernstfall 12456-1345-23456-124-12345 sufword verlustfall 36-123-136-23456-124-12345 always verlustfall 1236-12456-123-136-23456-124-12345 always zufall 2-1356-124-12345 always präzedenzfall 1234-1235-345-1356-15-145-14-1356-124-12345 always grenzfall 1245-1235-14-1356-124-12345 # FERTIG (4.4 Zweiformige Kürzungen) always fertig 124-45 always kupfertiger 13-136-1234-124-12456-2345-45-12456 # FOLG (4.4 Zweiformige Kürzungen) always folg 124-1245 always folge 124-1245-15 always folgen 124-1245-14 before r begmidword folge 124-1245-15 prfword folger 124-1245-12456 midword folgerfrag 124-1245-12456-124-1235 midendword folgerklausel 124-1245-12456-13-123-16-234-13456 prfword folgere 124-1245-12456-15 always folgern 124-1245-12456-1345 always folgerin 124-1245-12456-35 midendword folgerpaar 124-1245-12456-1234-1-1-1235 always folgers 124-1245-12456-234 always folgerschaft 124-1245-12456-156 prfword folgerserie 124-1245-12456-234-12456-24-15 always folgerst 124-1245-12456-23456 always folgert 124-1245-12456-2345 prfword folgerte 124-1245-12456-236 prfword folgertet 124-1245-12456-236-2345 prfword folgertest 124-1245-12456-236-23456 always folgerung 124-1245-12456-136 always thronfolger 2345-125-1235-135-1345-124-1245-12456 sufword verfolger 36-124-1245-12456 prfword folges 124-1245-123456 prfword folgest 124-1245-15-23456 prfword folgst 124-1245-23456 # FRAG (4.4 Zweiformige Kürzungen) always frag 124-1235 always frage 124-1235-15 always fragen 124-1235-14 prfword frager 124-1235-12456 always fragerei 124-1235-12456-146 prfword fragern 124-1235-12456-1345 prfword fragers 124-1235-12456-234 always fragil 124-1235-1-1245-24-123 begmidword fragmen 124-1235-1-1245-134-14 begmidword suffraget 234-136-124-124-1235-1-12346-2345 # FREUND (4.4 Zweiformige Kürzungen) always freund 124-145 always freundes 124-145-123456 prfword freundest 124-145-15-23456 # FÜHR (4.4 Zweiformige Kürzungen) always führ 124-125 # FÜR (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word für 124 always für-\s 2-124-36-0 word für's 124-6-234 always für 2-124 always fürchte 124-1256-1235-1456-236 always fürchten 124-1256-1235-1456-2345-14 always fürchter 124-1256-1235-1456-2345-12456 always fürchtig 124-1256-1235-1456-2345-45 always fürchtung 124-1256-1235-1456-2345-136 always fürst 124-1256-1235-23456 # GANZ (4.4 Zweiformige Kürzungen) always ganz 1245-1356 always gänz 5-1245-1356 begmidword analoganzei 235-25-135-1245-235-1356-146 always arroganz 356-1235-135-1245-235-1356 always eleganz 13456-15-1245-235-1356 begmidword jogginganz 245-135-1245-1245-35-1245-235-1356 always organza 26-1245-235-1356-1 always vaganz 1236-1-1245-235-1356 # GE (4.1 Lautgruppenkürzungen) word ge 1245-15 always ge 12346 always bungee 12-256-1245-15-15 always dragee 145-1235-1-1245-15-15 always neglig 1345-15-1245-123-24-1245 begmidword flugech 124-123-136-1245-15-1456 begmidword fluger 124-123-136-1245-12456 always geysir 1245-15-6-13456-234-24-1235 before u begmidword folge 124-1245-15 before u begmidword sorge 234-26-12346 sufword vergeud 36-1245-126-145 midendword vergeud 1236-12456-1245-126-145 sufword ausgeufer 34-12346-136-124-12456 always ausgeufer 16-234-12346-136-124-12456 always geupdated 12346-136-1234-145-1-236-145 endword geur 1245-126-1235 always geurteil 12346-136-1235-2345-146-123 endword geure 1245-126-1235-15 endword geurs 1245-126-1235-234 endword geuze 1245-126-1356-15 midword gex 1245-15-6-1346 # GEh prfword geh 1245-15-125 midendword gehabend 1245-2356-1-12-14-145 begmidword gehanz 1245-2356-235-1356 always gehbahn 1245-2356-12-1-125-1345 prfword gehbar 1245-2356-12-1-1235 begmidword gehbar 1245-2356-12-356 always gehbelag 1245-2356-23-123-1-1245 begmidword gehbeläg 1245-2356-23-123-345-1245 always gehbehind 1245-2356-23-125-35-145 prfword gehe 1245-2356-15 always gehen 1245-2356-14 always gehenk 12346-125-14-13 begmidword legehenn 123-15-12346-125-14-1345 always geher 1245-2356-12456 always geherrsch 12346-1235-1235-156 always geherrschaft 12346-1235-1235-156-1-124-2345 before konsonant begmidword geh 1245-2356 always gehunfähig 1245-2356-256-124-345-125-45 always gehuni 1245-2356-256-24 always gehung 1245-2356-136 # GEi always gei 1245-146 begmidword geirr 12346-24-1235-1235 begmidword geimpf 12346-24-134-1234-124 begmidword folgeimpf 124-1245-15-24-134-1234-124 # GEin always gein 1245-1246 midword geinhal 12346-35-125-25 midword geinit 12346-35-24-2345 midword geinstit 12346-35-23456-24-2345 midword geinstrum 12346-35-23456-1235-136-134 midword geintens 12346-35-2345-14-234 midword geintent 12346-35-2345-14-2345 # GEl prfword gel 1245-13456 before konsonant begword gel 1245-13456 always gelatin 1245-13456-1-2345-35 always geln 1245-13456-1345 prfword gels 1245-13456-234 always gelchen 1245-13456-1456-14 always gelb 1245-13456-12 prfword gelbe 1245-13456-12-15 always geld 1245-13456-145 always gelee 1245-13456-15-15 prfword geleerte 12346-123-15-15-1235-236 always geleert 12346-123-15-15-1235-2345 after g midword elektr 13456-15-13-2345-1235 midword gelektr 1245-13456-15-13-2345-1235 syllable gelier 1245-13456-346-1235 always gell 12346-12345 always gelnhaus 1245-13456-1345-125-16-234 always gels 1245-13456-234 prfword gelst 1245-13456-23456 always gelt 1245-13456-2345 prfword gelte 1245-13456-236 prfword geltet 1245-13456-236-2345 always gelynch 12346-123-6-13456-1345-1456 always gelz 1245-13456-1356 before l midendword drainage 145-1235-1-24-1345-1-12346 before l midendword dränage 145-1235-345-1345-1-12346 always hagel 125-1-1245-13456 always nagel 1345-1-1245-13456 always nägel 1345-345-1245-13456 always wägel 2456-345-1245-13456 always zagel 1356-1-1245-13456 always egel 15-1245-13456 syllable gelübd 12346-123-1256-12-145 always badegelegen 12-1-145-15-1245-1245 always zugrundegeleg 2-1356-1245-145-15-12346-123-15-1245 always zugrundegelegen 2-1356-1245-145-15-1245-1245 always nahegeleg 1345-1-125-15-12346-123-15-1245 always nahegelegen 1345-1-125-15-1245-1245 always rachege 1235-56-15-12346 always rachegeist 1235-56-15-1245-146-23456 always treuege 2345-1235-126-15-12346 always treuegeld 2345-1235-126-15-1245-13456-145 begmidword messegeländ 134-15-2346-15-12346-123-345-1345-145 always schniegel 156-1345-346-1245-13456 always spiegel 234-1234-346-1245-13456 always riegel 1235-346-1245-13456 always siegel 234-346-1245-13456 always tiegel 2345-346-1245-13456 always wiegel 2456-346-1245-13456 always ziegel 1356-346-1245-13456 always kegel 13-15-1245-13456 always flegel 124-123-15-1245-13456 before l begmidword pflege 1234-124-123-15-12346 always schlegel 156-123-15-1245-13456 before l begmidword college 6-14-135-12345-15-12346 always pegel 1234-15-1245-13456 always regel 1235-15-1245-13456 begmidword irrege 24-1235-1235-15-12346 begmidword irregeh 24-1235-1235-15-1245-2356 always segel 234-15-1245-13456 always schmuggel 156-134-136-1245-1245-13456 always duschgel 145-136-156-1245-13456 always duschgelegenheit 145-136-156-1245-1245-125 sufword igel 24-1245-13456 midendword igel 45-13456 always eigel 146-1245-13456 always fejgel 124-15-245-1245-13456 before l begmidword zeige 1356-146-12346 before l begmidword freige 124-1235-146-12346 always freigelegen 124-1235-146-1245-1245 before l begmidword zweige 1356-2456-146-12346 always seeigel 234-15-15-45-13456 always angel 235-1245-13456 begmidword angelach 235-12346-123-56 begmidword angeläch 235-12346-123-345-1456 always angelager 235-12346-123-1-1245-12456 always angeland 235-12346-123-235-145 always angelang 235-12346-123-1245 always angelass 235-12346-2-123 always angelast 235-12346-123-1-23456 always angelatsch 235-12346-123-1-2345-156 always angelauf 235-12346-123-16-124 always angelautet 235-12346-123-16-236-2345 prfword angelautete 235-12346-123-16-236-236 always angeläutet 235-12346-123-34-236-2345 prfword angeläutete 235-12346-123-34-236-236 always angelegen 235-1245-1245 always angelegt 235-12346-123-15-1245-2345 prfword angelegte 235-12346-123-15-1245-236 always angelegtest 235-12346-123-15-1245-236-23456 begmidword angelehn 235-12346-123-2356-1345 begmidword angeleier 235-12346-123-146-12456 always angeleimt 235-12346-123-146-134-2345 prfword angeleimte 235-12346-123-146-134-236 always angeleint 235-12346-123-1246-2345 prfword angeleinte 235-12346-123-1246-236 always angeleitet 235-12346-123-146-236-2345 prfword angeleitete 235-12346-123-146-236-236 always angelenk 235-12346-123-14-13 always angelernt 235-12346-123-12456-1345-2345 prfword angelernte 235-12346-123-12456-1345-236 always angelesen 235-12346-123-123456-14 begmidword angeleuch 235-12346-123-126-1456 always evangeli 15-1236-235-1245-13456-24 always evangelistisch 15-1236-235-1245-13456-5-156 always angeliefert 235-12346-123-346-124-12456-2345 prfword angelieferte 235-12346-123-346-124-12456-236 always angelob 235-12346-123-135-12 always angelock 235-12346-123-135-46 always angelog 235-12346-123-135-1245 always angelötet 235-12346-123-246-236-2345 prfword angelötete 235-12346-123-246-236-236 always gängel 1245-345-1345-1245-13456 always mangel 134-235-1245-13456 always mängel 134-345-1345-1245-13456 always drängel 145-1235-345-1345-1245-13456 always stängel 23456-345-1345-1245-13456 always engel 14-1245-13456 always stuben 23456-136-12-14 always kirchen 13-24-1235-1456-14 always glocken 1245-123-135-46-14 always trocken 2345-1235-135-46-14 always offen 135-124-124-14 always schellen 156-15-12345-14 always rollen 1235-135-12345-14 always tengel 2345-14-1245-13456 begmidword totenge 2345-135-2345-14-12346 begmidword wüstenge 2456-1256-23456-14-12346 always kettengelenk 13-15-2345-2345-14-12346-123-14-13 always spitzen 234-1234-24-2345-1356-14 midword engelächt 14-12346-123-345-1456-2345 midword engeländ 14-12346-123-345-1345-145 always engelass 14-12346-2-123 always engelaut 14-12346-123-16-2345 prfword engelaute 14-12346-123-16-236 midendword engeleit 14-12346-123-146-2345 midendword engelenk 14-12346-123-14-13 midword engelern 14-12346-123-12456-1345 always bengel 12-14-1245-13456 prfword gemengelage 12346-134-14-12346-123-1-12346 prfword gemengelagen 12346-134-14-12346-123-1-1245-14 begmidword außengeländ 16-2346-14-12346-123-345-1345-145 always stengel 23456-14-1245-13456 always ingelheim 35-1245-13456-125-146-134 always schlingel 156-123-35-1245-13456 always klingel 13-123-35-1245-13456 always pingel 1234-35-1245-13456 always ringel 1235-35-1245-13456 always tingel 2345-35-1245-13456 always zingel 1356-35-1245-13456 always klüngel 13-123-1256-1345-1245-13456 always züngel 1356-1256-1345-1245-13456 always kogel 13-135-1245-13456 always mogel 134-135-1245-13456 always vogel 1236-135-1245-13456 always vögel 1236-246-1245-13456 always spargel 234-1234-356-1245-13456 always mergel 134-12456-1245-13456 always pergel 1234-12456-1245-13456 always orgel 26-1245-13456 before l midword fürsorge 2-124-234-26-12346 before l midword vorsorge 2-26-234-26-12346 always torgelegen 2345-26-1245-1245 always nörgel 1345-246-1235-1245-13456 always spörgel 234-1234-246-1235-1245-13456 always gurgel 1245-136-1235-1245-13456 always äugel 34-1245-13456 always bügel 12-1256-1245-13456 always hügel 125-1256-1245-13456 always gugel 1245-136-1245-13456 always kugel 13-136-1245-13456 always kügel 13-1256-1245-13456 always klügel 13-123-1256-1245-13456 always flügel 124-123-1256-1245-13456 always prügel 1234-1235-1256-1245-13456 always zügel 1356-1256-1245-13456 # GEm prfword gem 1245-12356 always gement 1245-12356-14-2345 always geminat 1245-12356-35-1-2345 always gemination 1245-12356-35-5-1345 always gemini 1245-12356-35-24 always geminier 1245-12356-35-346-1235 always trigeminus 2345-1235-24-1245-12356-35-136-234 always hegemon 125-15-1245-12356-135-1345 syllable gems 1245-12356-234 # GEn always gen 1245-14 always genabel 12346-1345-1-12-13456 prfword genadelte 12346-1345-1-145-13456-236 always genadelt 12346-1345-1-145-13456-2345 begmidword genäch 12346-1345-345-1456 begmidword genag 12346-1345-1-1245 begmidword genagent 1245-14-1-1245-14-2345 begmidword genäh 12346-1345-345-125 midendword genähnlich 1245-14-345-456 always genannt 12346-1345-235-1345-2345 prfword genannte 12346-1345-235-1345-236 always genanntest 12346-1345-235-1345-236-23456 begmidword genarb 12346-1345-356-12 midendword genarbeit 1245-14-356-12 begmidword genarr 12346-1345-356-1235 prfword genas 12346-1345-1-234 always genäs 12346-1345-345-234 always genäss 12346-1345-345-2346 always genäschig 12346-1345-345-156-45 always genascht 12346-1345-1-156-2345 prfword genaschte 12346-1345-1-156-236 prfword genasen 12346-1345-1-234-14 always genasführ 12346-1345-1-234-124-125 always genatur 12346-1345-2345 always genatürlich 12346-1345-456 always genau 12346-1345-16 always garagen 1245-356-1-1245-14 always lagenauf 123-1-1245-14-2-16 always lagenaus 123-1-1245-14-16-234 always magenauf 134-1-1245-14-2-16 always magenaus 134-1-1245-14-16-234 always regenauf 1235-15-1245-14-2-16 always regenaus 1235-15-1245-14-16-234 always eigenauf 146-1245-14-2-16 always eigenaus 146-1245-14-16-234 always felgenaus 124-13456-1245-14-16-234 always stangenauf 23456-235-1245-14-2-16 always stangenaus 23456-235-1245-14-16-234 always mengenauf 134-14-1245-14-2-16 always mengenaus 134-14-1245-14-16-234 always zwergen 1356-2456-12456-1245-14 always morgenauf 134-26-1245-14-2-16 always morgenaus 134-26-1245-14-16-234 always röntgen 1235-246-1345-2345-1245-14 always augenauf 16-1245-14-2-16 always augenaus 16-1245-14-16-234 always zeugen 1356-126-1245-14 always zeugeneid 1356-126-12346-1345-146-145 always geneckt 12346-1345-15-46-2345 prfword geneckte 12346-1345-15-46-236 always genehm 12346-1345-125 always geneidet 12346-1345-146-145-15-2345 prfword geneidete 12346-1345-146-145-15-236 always geneig 12346-1345-146-1245 always geneppt 12346-1345-15-1234-1234-2345 prfword geneppte 12346-1345-15-1234-1234-236 always generv 12346-1345-12456-1236 # HOMONYM sufword genes 1245-14-123456 # HOMONYM prfword genesen 12346-1345-123456-14 prfword genesene 12346-1345-123456-14-15 prfword genesenem 12346-1345-123456-14-12356 prfword genesenen 12346-1345-123456-14-14 prfword genesener 12346-1345-123456-14-12456 prfword genesenes 12346-1345-123456-14-123456 always genesend 12346-1345-123456-14-145 always genest 12346-1345-15-23456 always genesung 12346-1345-123456-136 always wiedergenes 346-145-12346-1345-123456 always wiedergenest 346-145-12346-1345-15-23456 always wiederzugenes 346-145-2-1356-12346-1345-123456 always genesis 1245-14-123456-24-234 always genesung 12346-1345-123456-136 always genick 12346-1345-24-46 word genien 1245-14-24-14 always geniesel 12346-1345-346-234-13456 prfword geniest 12346-1345-346-23456 always genieß 12346-1345-346-2346 always genietet 12346-1345-346-236-2345 prfword genietete 12346-1345-346-236-236 always genipp 12346-1345-24-1234-1234 always genistet 12346-1345-24-23456-15-2345 prfword genistete 12346-1345-24-23456-15-236 always genöl 12346-1345-246-123 always orangenöl 26-235-1245-14-246-123 always genommen 12346-1345-1346 always genopp 12346-1345-135-1234-1234 always genörgel 12346-1345-246-1235-1245-13456 always genordet 12346-1345-26-145-15-2345 prfword genordete 12346-1345-26-145-15-236 always genormt 12346-1345-26-134-2345 prfword genormte 12346-1345-26-134-236 always genötig 12346-1345-246-2345-45 syllable genoss 12346-1345-135-2346 syllable genöss 12346-1345-246-2346 always genuckel 12346-1345-136-46-13456 always genudel 12346-1345-136-145-13456 always genug 12346-1345-136-1245 always genüg 12346-1345-1256-1245 always genüge 12346-1345-1256-12346 always genügen 12346-1345-1256-1245-14 always genüchter 12346-1345-1256-1456-2345-12456 always genuschel 12346-1345-136-156-13456 always genuss 12346-1345-136-2346 # Alte Rechtschreibung always genuß 12346-1345-136-2346 syllable genüss 12346-1345-1256-2346 always genutz 12346-1345-1356 always genütz 12346-5-1345-1356 # GEr prfword ger 1245-12456 after g midendword erlaubnis 12456-123-16-12-1346 sufword gerd 1245-12456-145 prfword gere 1245-12456-15 prfword gerei 1245-12456-146 prfword gereien 1245-12456-146-14 prfword geren 1245-12456-14 always gers 1245-12456-234 always gersund 1245-12456-234-256-145 sufword gert 1245-12456-2345 word gerte 1245-12456-236 always gern 1245-12456-1345 midendword gerlich 1245-12456-456 always gerald 1245-12456-25-145 always gerani 1245-12456-235-24 always gerant 1245-12456-235-2345 always gerard 1245-12456-356-145 always gerb 1245-12456-12 midword gerbe 1245-12456-23 midendword gerberg 1245-12456-12-12456-1245 endword gerberge 1245-12456-12-12456-12346 prfword gerben 1245-12456-12-14 prfword gerber 1245-12456-12-12456 always gerbera 1245-12456-12-12456-1 always gerberei 1245-12456-12-12456-146 always gerberin 1245-12456-12-12456-35 prfword gerbern 1245-12456-12-12456-1345 prfword gerbers 1245-12456-12-12456-234 always gerbrück 1245-12456-12-1235-1256-46 always gerecht 12346-1235-2345 always folgerecht 124-1245-15-1235-2345 syllable gerfalk 1245-12456-124-25-13 midword gergeb 1245-12456-12346-12 always gerh 1245-12456-125 always prediger 1234-1235-15-145-45-12456 always geria 1245-12456-24-1 always niger 1345-45-12456 prfword gerie 1245-12456-346 prfword gerien 1245-12456-24-14 sufword gerier 1245-12456-346-1235 always suggerier 234-136-1245-1245-12456-346-1235 always sengerig 234-14-1245-12456-45 midendword ggerli 1245-1245-12456-123-24 syllable gerlind 1245-12456-123-35-145 always germ 1245-12456-134 always angermund 235-1245-12456-134-256-145 always igerm 45-12456-134 always gern 1245-12456-1345 word gero 1245-12456-135 word geros 1245-12456-135-234 always gerold 1245-12456-135-123-145 always gerolf 1245-12456-135-123-124 always geroni 1245-12456-135-1345-24 always geront 1245-12456-135-1345-2345 always gerr 1245-12456-1235 always skagerak 234-13-1-1245-12456-1-13 always skagerrak 234-13-1-1245-12456-1235-1-13 begmidword seegerrin 234-15-15-1245-12456-1235-35 always gershwin 1245-12456-234-125-2456-35 always gerst 1245-12456-23456 always gerstand 1245-12456-2-23456 always gerständ 1245-12456-5-23456 prfword gert 1245-12456-2345 always gertrud 1245-12456-2345-1235-136-145 prfword gerte 1245-12456-236 prfword gertest 1245-12456-236-23456 prfword gertet 1245-12456-236-2345 always gertel 1245-12456-2345-13456 endword gertem 1245-12456-2345-12356 endword gerten 1245-12456-2345-14 endword gerter 1245-12456-2345-12456 endword gertes 1245-12456-2345-123456 always gerten 1245-12456-2345-14 prfword gerts 1245-12456-2345-234 midendword gertrag 1245-12456-2345-1245 midword gerträg 1245-12456-5-2345-1245 syllable gerundi 1245-12456-256-145-24 midendword gerung 1245-12456-136 syllable gerusi 1245-12456-136-234-24 syllable gervasi 1245-12456-1236-1-234-24 syllable gerwig 1245-12456-2456-45 syllable gerwin 1245-12456-2456-35 always haager 125-1-1-1245-12456 always hager 125-1-1245-12456 always häger 125-345-1245-12456 always jäger 245-345-1245-12456 always lager 123-1-1245-12456 always lagerichtig 123-1-12346-2-3456-45 always lagereg 123-1-12346-1235-15-1245 always läger 123-345-1245-12456 always lageraum 123-1-12346-1235-16-134 always lageräum 123-1-12346-1235-34-134 before er begmidword anlage 235-123-1-12346 prfword anlagern 235-123-1-1245-12456-1345 always anlagert 235-123-1-1245-12456-2345 always anlagerst 235-123-1-1245-12456-23456 prfword anlagerte 235-123-1-1245-12456-236 always anlagerung 235-123-1-1245-12456-136 before er begmidword klage 13-123-1-12346 prfword klager 13-123-1-1245-12456 prfword klagern 13-123-1-1245-12456-1345 prfword klagers 13-123-1-1245-12456-234 always kläger 13-123-345-1245-12456 always einlieger 1246-123-346-1245-12456 always mager 134-1-1245-12456 always klimagerät 13-123-24-134-1-12346-1235-345-2345 prfword klimageräte 13-123-24-134-1-12346-1235-345-236 begmidword spermage 234-1234-12456-134-1-12346 always nager 1345-1-1245-12456 always manager 134-235-1-1245-12456 always drainagerohr 145-1235-1-24-1345-1-12346-1235-135-125-1235 always spionagering 234-1234-24-135-1345-1-12346-1235-35-1245 prfword spionageringe 234-1234-24-135-1345-1-12346-1235-35-12346 always spionageroman 234-1234-24-135-1345-1-12346-1235-135-134-1-1345 begmidword spionageroman 234-1234-24-135-1345-1-12346-1235-135-134-235 always teenager 2345-15-15-1345-1-1245-12456 always schräger 156-1235-345-1245-12456 always prager 1234-1235-1-1245-12456 always vager 1236-1-1245-12456 always schwager 156-2456-1-1245-12456 always schwäger 156-2456-345-1245-12456 always voyager 1236-135-6-13456-1-1245-12456 always cambridger 6-14-1-134-12-1235-24-145-1245-12456 always ludger 123-136-145-1245-12456 always feger 124-15-1245-12456 always heger 125-15-1245-12456 always hegereiter 125-15-12346-1235-146-2345-12456 syllable gerüch 12346-1235-1256-1456 always nahegerück 1345-1-125-15-12346-1235-46 always bieger 12-346-1245-12456 always flieger 124-123-346-1245-12456 always auflieger 2-16-123-346-1245-12456 always umlieger 136-134-123-346-1245-12456 always anlieger 235-123-346-1245-12456 always krieger 13-1235-346-1245-12456 always sieger 234-346-1245-12456 always schwieger 156-2456-346-1245-12456 always wieger 2456-346-1245-12456 always leger 123-15-1245-12456 prfword ablegeregal 1-12-123-15-12346-1235-15-1245-1-123 always ablegeregal 1-12-123-15-12346-1235-15-1245-25 always legerohr 123-15-12346-1235-135-125-1235 always legeröhr 123-15-12346-1235-246-125-1235 always neger 1345-15-1245-12456 always sühne 234-1256-125-1345-15 prfword sühnel 234-1256-125-1345-13456 always sühnen 234-1256-125-1345-14 always reger 1235-15-1245-12456 always integer 35-236-1245-12456 before er begmidword wege 2456-1245-15 prfword weger 2456-1245-12456 prfword wegern 2456-1245-12456-1345 prfword wegers 2456-1245-12456-234 always wegerung 2456-1245-12456-136 always norweger 1345-26-2456-15-1245-12456 always wegerecht 2456-1245-15-1235-2345 always bagger 12-1-1245-1245-12456 always jagger 245-1-1245-1245-12456 always egger 15-1245-1245-12456 always digger 145-45-1245-12456 always jigger 245-45-1245-12456 always nigger 1345-45-1245-12456 always trigger 2345-1235-45-1245-12456 always jogger 245-135-1245-1245-12456 always logger 123-135-1245-1245-12456 always debugger 145-15-12-136-1245-1245-12456 always fugger 124-136-1245-1245-12456 always feiger 124-146-1245-12456 always steiger 23456-146-1245-12456 always geiger 1245-146-1245-12456 always weiger 2456-146-1245-12456 always schweigerecht 156-2456-146-12346-1235-2345 always schwelger 156-2456-13456-1245-12456 always schwelgeruch 156-2456-13456-12346-1235-136-1456 always schwelgerüch 156-2456-13456-12346-1235-1256-1456 always zeiger 1356-146-1245-12456 always zeigeregister 1356-146-12346-1235-15-1245-24-23456-12456 always pilger 1234-24-123-1245-12456 always tilger 2345-24-123-1245-12456 always holger 125-135-123-1245-12456 begmidword mentholge 134-14-2345-125-135-123-12346 prfword anger 235-1245-12456 sufword angerdorf 235-1245-12456-145-26-124 sufword angerdörfer 235-1245-12456-145-246-1235-124-12456 prfword angern 235-1245-12456-1345 prfword angern 235-1245-12456-234 always fänger 124-345-1345-1245-12456 always gänger 1245-345-1345-1245-12456 always hanger 125-235-1245-12456 always hänger 125-345-1345-1245-12456 always hängereck 125-345-1345-12346-1235-15-46 always hängereg 125-345-1345-12346-1235-15-1245 always orangerie 26-235-1245-12456-346 always orangerien 26-235-1245-12456-24-14 always pranger 1234-1235-235-1245-12456 always sänger 234-345-1345-1245-12456 always tanger 2345-235-1245-12456 always vanger 1236-235-1245-12456 always wanger 2456-235-1245-12456 prfword enger 14-1245-12456 prfword engere 14-1245-12456-15 prfword engerem 14-1245-12456-12356 prfword engeren 14-1245-12456-14 prfword engerer 14-1245-12456-12456 prfword engeres 14-1245-12456-123456 always engerling 14-1245-12456-123-35-1245 prfword engerlinge 14-1245-12456-123-35-12346 always inger 35-1245-12456 midword ingerä 35-12346-1235-345 midendword ingeruch 35-12346-1235-136-1456 midword ingerüch 35-12346-1235-1256-1456 always kerosin 13-12456-135-234-35 always einge 1246-12346 before r begmidword hinge 125-35-12346 always vaihinger 1236-1-24-125-35-1245-12456 prfword eingehe 1246-1245-2356-15 always eingehen 1246-1245-2356-14 always eingehst 1246-1245-2356-23456 always eingeht 1246-1245-2356-2345 always eingehung 1246-1245-2356-136 always eingelb 1246-1245-13456-12 always koffeingehalt 13-135-124-124-15-35-12346-125-25-2345 always chemieingenieur 1456-12356-346-35-1245-14-24-126-1235 always softwareingenieur 234-135-124-2345-2456-356-15-35-1245-14-24-126-1235 always steingeiß 23456-1246-1245-146-2346 always weingeist 2456-1246-1245-146-23456 always termin 2345-12456-134-35 always hongkonger 125-135-1345-1245-13-135-1345-1245-12456 always hunger 125-256-1245-12456 always junger 245-256-1245-12456 always dünger 145-1256-1345-1245-12456 always jünger 245-1256-1345-1245-12456 always analoger 235-25-135-1245-12456 always homologer 125-135-134-135-123-135-1245-12456 always roger 1235-135-1245-12456 always mikro 134-24-13-1235-135 always elektro 13456-15-13-2345-1235-135 always büro 12-1256-1235-135 always dröger 145-1235-246-1245-12456 always zöger 1356-246-1245-12456 always arger 356-1245-12456 begmidword polar 1234-135-123-356 prfword nachbar 1345-56-12-1-1235 begmidword nachbar 1345-56-12-356 begmidword darge 145-356-12346 prfword formular 124-26-134-136-123-1-1235 begmidword formular 124-26-134-136-123-356 begmidword disziplinar 145-24-234-1356-24-1234-123-35-356 prfword sonar 234-135-1345-1-1235 begmidword sonar 234-135-1345-356 prfword altar 25-2345-1-1235 begmidword altar 25-2345-356 always faltarbeit 124-25-2345-356-12 always ärger 345-1235-1245-12456 always militär 134-24-123-24-2345-345-1235 always berger 12-12456-1245-12456 midendword bergeräusch 12-12456-12346-1235-34-156 always silber 234-24-123-12-12456 always oberge 135-12-12456-12346 begmidword obergerman 135-12-12456-1245-12456-134-235 always birger 12-24-1235-1245-12456 always sorger 234-26-1245-12456 always sorgerecht 234-26-12346-1235-2345 always burger 12-136-1235-1245-12456 always bürger 12-1256-1235-1245-12456 always würger 2456-1256-1235-1245-12456 always böttger 12-246-2345-2345-1245-12456 always sauger 234-16-1245-12456 always säuger 234-34-1245-12456 always beuger 12-126-1245-12456 always beugere 12-126-12346-1235-15 always zeuger 1356-126-1245-12456 always kluger 13-123-136-1245-12456 always klüger 13-123-1256-1245-12456 always pflüger 1234-124-123-1256-1245-12456 always trüger 2345-1235-1256-1245-12456 always krüger 13-1235-1256-1245-12456 prfword zuger 1356-136-1245-12456 always züger 1356-1256-1245-12456 always metzger 134-15-2345-1356-1245-12456 # GEs prfword ges 1245-123456 always sagesatz 234-1245-15-234-1356 always sagesätz 234-1245-15-5-234-1356 always tages 2345-1-1245-123456 always valuta 1236-25-136-2345-1 always montage 134-135-1345-2345-1-12346 prfword montagen 134-135-1345-2345-1-1245-14 always sieges 234-346-1245-123456 begword exeges 1346-15-1245-123456 midword exeges 15-6-1346-15-1245-123456 always ganges 1245-235-1245-123456 prfword contergan 6-14-135-1345-2345-12456-1245-1-1345 begmidword contergan 6-14-135-1345-2345-12456-1245-235 always organgesellschaft 26-1245-235-1245-156 always sanges 234-235-1245-123456 always vogesen 1236-135-1245-123456-14 always bergesh 12-12456-1245-123456-125 always gess 12346-2346 always gesag 12346-234-1245 always gesäbel 12346-234-345-12-13456 always gesäg 12346-5-234-1245 always gesatz 12346-234-1356 always gesätz 12346-5-234-1356 always geschlag 12346-156-1245 always geschläg 12346-5-156-1245 always geschlängel 12346-156-123-345-1345-1245-13456 always geschließ 12346-5-156-2346 always geschnurr 12346-156-1345-136-1235-1235 always geschreib 12346-156-12 always geschrieb 12346-2-156 always geschrift 12346-156-2345 always geschunden 12346-156-256-145-14 always gesetz 12346-2-15 always algesie 25-1245-123456-346 midendword gesima 1245-123456-24-134-1 always gesind 12346-234-145 always gesitz 12346-2-24 always gesoll 12346-2-234 always gest 12346-23456 always gestaat 12346-23456-2345 always gestand 12346-2-23456 always geständ 12346-5-23456 always gestion 12346-23456-245 begmidword gestund 12346-23456-256-145 always gesund 12346-234-256-145 begmidword gesünd 12346-234-1256-1345-145 word gesa 1245-123456-1 word gesas 1245-123456-1-234 word gese 1245-123456-15 word geses 1245-123456-123456 always gesozial 12346-234-123 midword gesprach 12346-234-1234 always gespräch 12346-5-234-1234 midendword gesprung 12346-234-1234-1235-256-1245 midword gesprüng 12346-234-1234-1235-1256-1345-1245 endword gesprünge 12346-234-1234-1235-1256-1345-12346 always gestell 12346-2-13456 # GEGEN (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word gegen 1245 always gegen-\s 2-1245-36-0 always gegen 2-1245 prfword gegend 12346-1245-14-145 prfword gegenden 12346-1245-14-145-14 midword gegenüg 12346-12346-1345-1256-1245 # GEGENÜBER (4.4 Zweiformige Kürzungen) always gegenüber 1245-1256 always gegenübertrag 2-1245-2-1256-2345-1245 always gegenüberträg 2-1245-2-1256-5-2345-1245 # GEGENWART GEGENWÄRT (4.4 Zweiformige Kürzungen) always gegenwart 1245-2456 always gegenwärt 5-1245-2456 # GELEGEN (4.4 Zweiformige Kürzungen) # HOMONYM always gelegen 1245-1245 # GESCHÄFT (4.4 Zweiformige Kürzungen) always geschäft 1245-124 # GESELLSCHAFT (4.4 Zweiformige Kürzungen) always gesellschaft 1245-156 always gesellschafts 1245-156-234 # GEWESEN (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word gewesen 12346 always gewesen 2-12346 always spionagewesen 234-1234-24-135-1345-1-12346-2456-123456-14 # GEWORDEN (4.4 Zweiformige Kürzungen) always geworden 12346-2456 # GIBT (4.4 Zweiformige Kürzungen) always gibt 1245-12 word gibt's 1245-12-6-234 # GLEICH (4.4 Zweiformige Kürzungen) always gleich 1245-1456 # GLÜCK (4.4 Zweiformige Kürzungen) always glück 1245-46 always unglück 256-1245-46 # GROß GRÖß (4.4 Zweiformige Kürzungen) always groß 1245-2346 always größ 5-1245-2346 # GRUND GRÜND (4.4 Zweiformige Kürzungen) always grund 1245-145 always gründ 5-1245-145 word grundig 1245-1235-256-145-45 always gründonnerstag 1245-1235-1256-1345-145-135-1345-1345-12456-234-2345-1-1245 always gründüng 1245-1235-1256-1345-145-1256-1345-1245 always joggingrund 245-135-1245-1245-35-1245-1235-256-145 # HAB HÄB (4.3.6 Kommakürzungen) always hab 2-125 always häb 5-125 always habakuk 125-1-12-1-13-136-13 always habanero 125-1-12-235-12456-135 always habergeiß 125-1-12-12456-1245-146-2346 sufword habermas 125-1-12-12456-134-1-234 always habsburg 125-1-12-234-12-136-1235-1245 sufword ahab 1-125-1-12 sufword cahab 6-14-1-125-1-12 sufword dhabi 145-125-1-12-24 always viehab 1236-346-125-1-12 always piranha 1234-24-1235-235-125-1 always rohab 1235-135-125-1-12 always alphabet 25-1234-125-1-23-2345 prfword alphabete 25-1234-125-1-23-236 always alphablock 25-1234-125-1-12-123-135-46 always rhabarber 1235-125-1-12-356-12-12456 always schuhab 156-136-125-1-12 always frühab 124-1235-1256-125-1-12 # HAFT HÄFT (4.4 Zweiformige Kürzungen) always haft 125-124 always häft 5-125-124 always behaft 23-125-124 sufword shaft 234-125-1-124-2345 # HAND HÄND (4.4 Zweiformige Kürzungen) always hand 125-145 always händ 5-125-145 word händels 125-345-1345-145-13456-234 word handke 125-235-145-13-15 word handkes 125-235-145-13-123456 midendword ehand 15-125-145 midword ehänd 15-5-125-145 midendword tehand 236-125-145 midword tehänd 236-5-125-145 sufword luchterhand 123-136-1456-2345-12456-125-235-145 # HAST (4.4 Zweiformige Kürzungen) always hast 125-23456 always hastings 125-1-23456-35-1245-234 always buddha 12-136-145-145-125-1 always alphastrahl 25-1234-125-1-23456-1235-1-125-123 # HAT (4.4 Zweiformige Kürzungen) always hat 125-2345 begmidword aliphat 25-24-1234-125-1-2345 prfword aliphate 25-24-1234-125-1-236 begmidword alphat 25-1234-125-1-2345 always daihatsu 145-1-24-125-1-2345-234-136 sufword hatch 125-1-2345-1456 always hatschi 125-1-2345-156-24 always hatz 125-1-2345-1356 always mahatma 134-1-125-1-2345-134-1 prfword phatisch 1234-125-1-2345-24-156 begmidword phatisch 1234-125-1-2345-24-156 always phosphat 1234-125-135-234-1234-125-1-2345 prfword phosphate 1234-125-135-234-1234-125-1-236 always shatoo 234-125-1-2345-135-135 sufword that 2345-125-1-2345 always triumphat 2345-1235-24-136-134-1234-125-1-2345 sufword verhatsch 36-125-1-2345-156 midendword verhatsch 1236-12456-125-1-2345-156 sufword what 2456-125-1-2345 # HATT (4.3.4 Einformige Kürzungen, alleinstehend, mit Endungen oder in Wortverbindungen) always hatt 125 always hattingen 125-1-2345-2345-35-1245-14 always hattrick 125-1-2345-2345-1235-24-46 begmidword trollhätt 2345-1235-135-12345-125-345-2345-2345 prfword manhattan 134-235-125-1-2345-2345-1-1345 begmidword manhattan 134-235-125-1-2345-2345-235 always shatterhand 234-125-1-2345-2345-12456-125-235-145 # HÄTT (4.3.4 Einformige Kürzungen, alleinstehend, mit Endungen oder in Wortverbindungen) always hätt 345 # HAUPT HÄUPT (4.4 Zweiformige Kürzungen) always haupt 125-1234 always häupt 5-125-1234 # -HEIT 4.2.1 a) Nachsilbenkürzungen midendword heit 125 midendword heits 125-234 always heiter 125-146-2345-12456 always hoheit 125-135-125-146-2345 # HERR (4.4 Zweiformige Kürzungen) always herr 1235-1235 always herrann 125-12456-1235-235-1345 always herräum 125-12456-1235-34-134 always herred 125-12456-1235-15-145 always herreich 125-12456-1235-146-1456 always herreis 125-12456-1235-146-234 always herreist 125-12456-1235-146-23456 always herreit 125-12456-1235-146-2345 endword herreite 125-12456-1235-146-236 always herreiß 125-12456-1235-146-2346 always herrenn 125-12456-1235-14-1345 always herricht 125-12456-2-3456 always herrief 125-12456-1235-346-124 always herrief 125-12456-1235-346-124 always herrliberg 125-12456-1235-123-24-12-12456-1245 always herroll 125-12456-1235-135-12345 always herruf 125-12456-1235-136-124 always herrück 125-12456-1235-46 always herrühr 125-12456-1235-1256-125-1235 always herrutsch 125-12456-1235-136-2345-156 always daherr 145-125-1235 always einherr 1246-125-12456-1235 always höherr 125-246-125-12456-1235 always sherry 234-125-12456-1235-6-13456 always äther 345-2345-125-12456 always luther 123-136-2345-125-12456 # HIER (4.4 Zweiformige Kürzungen) always hier 125-1235 always hierarch 125-24-12456-356-1456 always hiero 125-24-12456-135 always hierorts 125-1235-26-2345-234 always cahier 6-14-1-125-24-12456 midendword trahier 2345-1235-1-125-346-1235 midendword strahier 23456-1235-1-125-346-1235 sufword extrahier 1346-2345-1235-1-125-346-1235 midendword extrahier 15-6-1346-2345-1235-1-125-346-1235 always paraphier 1234-356-1-1234-125-346-1235 always graphier 1245-1235-1-1234-125-346-1235 always triumphier 2345-1235-24-136-134-1234-125-346-1235 always trophier 2345-1235-135-1234-125-346-1235 always strophier 23456-1235-135-1234-125-346-1235 always morphierel 134-26-1234-125-346-1235-13456 always thierr 2345-125-24-12456-1235 # HOFF HÖFF (4.4 Zweiformige Kürzungen) always hoff 124-124 always höff 5-124-124 always hoffenster 125-135-124-124-14-23456-12456 always hofflatter 125-135-124-124-123-1-2345-2345-12456 always hofflimmer 125-135-124-124-123-24-1346-12456 prfword hoffman 125-135-124-124-134-1-1345 begmidword hoffman 125-135-124-124-134-235 always hoffmann 125-135-124-124-134-235-1345 always hoffrei 125-135-124-124-1235-146 always hoffähig 125-135-124-124-345-125-45 always kerckhoff 13-12456-46-125-135-124-124 syllable öffnung 246-124-124-1345-136 always steinhoff 23456-1246-125-135-124-124 always drohoffesiv 145-1235-135-125-135-124-124-14-234-24-1236 always hülshoff 125-1256-123-234-125-135-124-124 # ICH (4.1 Lautgruppenkürzungen) word ich 3456 midendword ich 3456 word ich, 24-1456-2 word ich; 24-1456-23 word ich: 24-1456-25 word ich? 24-1456-26 word ich! 24-1456-235 word ich) 24-1456-2356 word ich" 24-1456-356 word ich« 24-1456-356 word ich» 24-1456-356 prfword dichlor 145-24-1456-123-135-1235 begmidword dichlor 145-24-1456-123-26 before c begmidword anti 235-2345-24 always lavichord 123-1-1236-24-1456-26-145 always comic 6-14-135-134-24-6-14 before c begmidword taxi 2345-1-6-1346-24 # IE (4.1 Lautgruppenkürzungen) midendword ie 346 # IEll midendword iell 24-15-12345 begmidword schiellies 156-346-123-123-346-234 always ziellaser 1356-346-123-123-1-234-12456 midendword ieuw 24-126-2456 midendword ieux 24-126-6-1346 always kiellini 13-346-123-123-35-24 always spiell 2-346-123 always stiell 23456-346-123-123 always zielland 1356-346-123-123-235-145 always zielländ 1356-346-123-123-345-1345-145 always ziellini 1356-346-123-123-35-24 always zielloch 1356-346-123-123-135-1456 always ziellöch 1356-346-123-123-246-1456 always ziellos 1356-346-123-123-135-234 # aIE always ai 1-24 always ainsel 1-35-234-13456 always aismus 1-5-24 always aistisch 1-5-156 always aität 1-5-345 always deltainsel 145-13456-2345-1-35-234-13456 # bIE always amphibi 1-134-1234-125-24-12-24 always adverbi 1-145-1236-12456-12-24 # HOMONYM word bien 12-24-14 sufword bien 12-346-1345 begword bienfai 12-24-14-124-1-24 midendword bien 12-24-14 prfword bienchen 12-346-1345-1456-14 prfword biene 12-346-1345-15 prfword bienen 12-346-1345-14 always bienn 12-24-14-1345 always skabies 234-13-1-12-24-123456 begmidword honigbien 125-135-1345-45-12-346-1345 begmidword mörtelbien 134-246-1235-2345-13456-12-346-1345 begmidword kolumbi 13-135-123-136-134-12-24 always kolumbin 13-135-123-136-134-12-35 begmidword wespenbien 2456-123456-1234-14-12-346-1345 begmidword hosenbien 125-135-234-14-12-346-1345 always snobiety 234-1345-135-12-24-15-2345-6-13456 always anaerobier 235-1-12456-135-12-24-12456 always garderobier 1245-356-145-12456-135-12-24-12456 begmidword killerbien 13-24-12345-12456-12-346-1345 begmidword mauerbien 134-16-12456-12-346-1345 begmidword trauerbien 2345-1235-16-12456-12-346-1345 begmidword feuerbien 124-126-12456-12-346-1345 begmidword arbeiterbien 356-12-12456-12-346-1345 begmidword futterbien 124-136-2345-2345-12456-12-346-1345 begmidword arbeitsbien 356-12-234-12-346-1345 always lesbier 123-123456-12-24-12456 begmidword trachtbien 2345-1235-56-2345-12-346-1345 begmidword nubi 1345-136-12-24 begmidword pelzbien 1234-13456-1356-12-346-1345 begmidword holzbien 125-135-123-1356-12-346-1345 # cIE always ciego 6-14-24-15-1245-135 always galici 1245-25-24-6-14-24 begmidword sufficien 234-136-124-124-24-6-14-24-14 always ancien 235-6-14-24-14 always ancier 235-6-14-24-12456 always lancier 123-235-6-14-346-1235 always balancier 12-25-235-6-14-346-1235 always nuancier 1345-136-235-6-14-346-1235 always avancier 1-1236-235-6-14-346-1235 always rencier 1235-14-6-14-24-12456 always ferencier 124-12456-14-6-14-24-12456 always concierge 6-14-135-1345-6-14-24-12456-12346 always socie 234-135-6-14-24-15 always scien 234-6-14-24-14 always saucier 234-16-6-14-24-12456 # dIE always diego 145-24-15-1245-135 always dielektr 145-24-13456-15-13-2345-1235 word dien 145-346-1345 midendword dien 145-24-14 prfword diene 145-346-1345-15 always dienen 145-346-1345-14 always diener 145-346-1345-12456 always dienlich 145-346-1345-456 always dienst 145-346-1345-23456 always dienstag 145-346-1345-234-2345-1-1245 prfword dienstage 145-346-1345-234-2345-1-12346 always dient 145-346-1345-2345 prfword diente 145-346-1345-236 always dientest 145-346-1345-236-23456 always dientet 145-346-1345-236-2345 always medien 134-15-145-24-14 word diet 145-24-15-2345 always diethyl 145-24-15-2345-125-6-13456-123 always barbadier 12-356-12-1-145-24-12456 always brigadier 12-1235-45-1-145-24-12456 always arkadier 356-13-1-145-24-12456 always kanadier 13-235-1-145-24-12456 always gradien 1245-1235-1-145-24-14 always bedien 23-145-346-1345 always gedient 12346-145-346-1345-2345 prfword gediente 12346-145-346-1345-236 begword expedien 1346-1234-15-145-24-14 midword expedien 15-6-1346-1234-15-145-24-14 always andien 235-145-346-1345 begmidword indientin 35-145-24-14-2345-35 always latifundi 123-1-2345-24-124-256-145-24 always burundier 12-136-1235-256-145-24-12456 always komödi 13-135-134-246-145-24 always tragödi 2345-1245-246-145-24 always tragödin 2345-1245-246-145-35 sufword verdien 36-145-346-1345 midendword verdien 1236-12456-145-346-1345 always kapverdier 13-1-1234-1236-12456-145-24-12456 prfword studie 23456-136-145-24-15 always studien 23456-136-145-24-14 always studier 23456-136-145-346-1235 prfword dieu 145-24-126 # eIE # fIE always fiesta 124-24-15-23456-1 endword grafien 1245-1235-1-124-24-14 always golfier 1245-135-123-124-24-12456 sufword profierfahr 12345-124-24-12456-2-1235 midword profierfahr 1234-1235-135-124-24-12456-2-1235 endword graphien 1245-1235-1-1234-125-24-14 # gIE midendword gien 1245-24-14 endword gieneutral 1245-346-1345-126-2345-1235-1-123 midword gieneutral 1245-346-1345-126-2345-1235-25 midendword gienetz 1245-346-1345-15-2345-1356 midendword gieniveau 1245-346-1345-24-1236-15-16 midendword gienutz 1245-346-1345-1356 midendword gienütz 1245-346-5-1345-1356 always magier 134-1-1245-24-12456 prfword orgie 26-1245-24-15 always orgien 26-1245-24-14 always georgi 12346-26-1245-24 # hIE always hierarch 125-24-12456-356-1456 always hierarchie 125-24-12456-356-1456-346 always hierarchien 125-24-12456-356-1456-24-14 always hieroglyph 125-24-12456-135-1245-123-6-13456-1234-125 always hieronymus 125-24-12456-135-1345-6-13456-134-136-234 always chien 1456-24-14 always schien 156-346-1345 always alighieri 25-45-125-24-12456-24 endword graphien 1245-1235-1-1234-125-24-14 always sophien 234-135-1234-125-24-14 prfword philosophien 1234-125-24-14 prfword thieu 2345-125-24-126 always pathien 1234-1-2345-125-24-14 begmidword forsythi 124-26-234-6-13456-2345-125-24 # iIE # jIE # kIE always bankier 12-235-13-24-12456 always kiew 13-24-15-2456 sufword skier 234-13-24-12456 always abfahrtsskier 1-12-2-1235-2345-234-234-13-24-12456 always laufskier 123-16-124-234-13-24-12456 always tourenskier 2345-135-136-1235-14-234-13-24-12456 always wasserskier 2456-1-2346-12456-234-13-24-12456 begmidword thraki 2345-125-1235-1-13-24 # lIE midendword lien 123-24-14 always lieutenant 123-24-126-2345-14-235-2345 sufword alien 25-24-14 endword alien 25-24-14 always alienhand 25-24-14-125-145 begword calien 6-14-25-24-14 word alalie 25-25-24-15 always regali 1235-15-1245-25-24 always personalien 1234-1345-25-24-14 always mineralien 134-35-12456-25-24-14 always pastoralien 1234-1-23456-26-25-24-14 always naturalien 1345-2345-25-24-14 begmidword versali 1236-12456-234-25-24 begmidword universalinstr 256-24-1236-12456-234-25-35-23456-1235 always universalismus 256-24-1236-12456-234-25-5-24 always universalistisch 256-24-1236-12456-234-25-5-156 always universalität 256-24-1236-12456-234-25-5-345 always realien 1235-15-25-24-14 always materialien 134-123-24-14 begmidword nationalien 1345-5-1345-25-24-14 begmidword zereali 1356-12456-15-25-24 always minerialien 134-35-12456-25-24-14 begmidword chemikali 1456-12356-24-13-25-24 begmidword somali 234-135-134-25-24 begmidword formali 124-26-134-25-24 always formalin 124-26-134-25-35 always formalismus 124-26-134-25-5-24 always formalistisch 124-26-134-25-5-156 always formalität 124-26-134-25-5-345 begmidword marginali 134-356-1245-35-25-24 always marginalität 134-356-1245-35-25-5-345 begmidword lappali 123-1-1234-1234-25-24 begmidword arali 356-25-24 always australi 16-23456-1235-25-24 always salieri 234-25-24-12456-24 always rosali 1235-135-234-25-24 always rosalind 1235-135-234-25-35-145 begmidword thessali 2345-125-15-2346-25-24 begmidword repressali 1235-15-1234-1235-15-2346-25-24 always italien 24-2345-25-24-14 always viktuali 1236-24-13-2345-136-25-24 always chevalier 1456-15-1236-25-24-12456 always richelieu 1235-3456-13456-24-126 prfword kamelie 13-1-134-13456-24-15 always kamelien 13-1-134-13456-24-14 always sommelier 234-135-1346-13456-24-12456 always bromeli 12-1235-135-134-13456-24 # HOMONYM always relief 1235-13456-24-15-124 always atelier 1-2345-13456-24-12456 always hotelier 125-135-2345-13456-24-12456 always pellier 1234-15-12345-24-12456 always interpellier 35-2345-12456-1234-15-12345-346-1235 always appellier 1-1234-1234-15-12345-346-1235 prfword dahlie 145-1-125-123-24-15 always dahlien 145-1-125-123-24-14 begmidword immobili 24-1346-135-12-24-123-24 always immobilität 24-1346-135-12-24-123-5-345 prfword lilie 123-24-123-24-15 always lilien 123-24-123-24-14 begmidword emili 12356-24-123-24 begmidword famili 124-1-134-24-123-24 always milieu 134-24-123-24-126 begmidword petersili 1234-15-2345-12456-234-24-123-24 begmidword ottili 135-2345-2345-24-123-24 always galli 1245-1-12345-24 always gallig 1245-1-12345-45 always collier 6-14-135-12345-24-12456 always kollier 13-135-12345-24-12456 always tokollier 2345-135-13-135-12345-346-1235 always banlieu 12-235-123-24-126 always gondolier 1245-135-1345-145-135-123-24-12456 prfword folie 124-135-123-24-15 always folien 124-135-123-24-14 begmidword magnoli 134-1-1245-1345-135-123-24 always anatoli 235-1-2345-135-123-24 always volier 1236-135-123-24-12456 always juliet 245-136-123-24-15-2345 begmidword apuli 1-1234-136-123-24 # mIE midendword mien 134-24-14 prfword miene 134-346-1345-15 always mienen 134-346-1345-14 always prämi 1234-1235-345-134-24 always prämier 1234-1235-345-134-346-1235 begmidword mesopotami 134-123456-135-1234-135-2345-1-134-24 midendword emien 12356-24-14 always akademien 1-13-1-145-12356-24-14 always premier 1234-1235-12356-24-12456 always krimieck 13-1235-24-134-24-15-46 begmidword mumi 134-136-134-24 # nIE midendword nien 1345-24-14 prfword niente 1345-24-14-236 prfword teniendo 2345-14-24-14-145-135 prfword teniente 2345-14-24-14-236 begmidword albani 25-12-235-24 begmidword jordani 245-26-145-235-24 always daniel 145-235-24-13456 begmidword ozeani 135-1356-15-235-24 always nathaniel 1345-1-2345-125-235-24-13456 begmidword bethani 23-2345-125-235-24 prfword manien 134-235-24-14 always germanien 1245-12456-134-235-24-14 always tasmani 2345-1-234-134-235-24 prfword kompanien 13-135-134-1234-235-24-14 begmidword spani 234-1234-235-24 always spaniel 234-1234-235-24-13456 always hispanismus 125-24-234-1234-235-5-24 begmidword akrani 1-13-1235-235-24 midendword akranich 1-13-1235-235-3456 begmidword orani 26-235-24 begmidword gerani 1245-12456-235-24 begmidword turani 2345-136-1235-235-24 begmidword tansani 2345-235-234-235-24 begmidword mauretani 134-16-1235-15-2345-235-24 begmidword aquitani 1-6-12345-136-24-2345-235-24 begmidword kastani 13-1-23456-235-24 begmidword silvani 234-24-123-1236-235-24 always ingenieur 35-1245-14-24-126-1235 always tschetscheni 2345-156-15-2345-156-14-24 always tschetschenin 2345-156-15-2345-156-14-35 always turkmeni 2345-136-1235-13-134-14-24 always armeni 356-134-14-24 always phrenien 1234-125-1235-14-24-14 midendword venience 1236-14-24-14-6-14-15 midendword venient 1236-14-24-14-2345 midendword venienz 1236-14-24-14-1356 always konvenier 13-135-1345-1236-14-346-1235 begmidword sloweni 234-123-135-2456-14-24 begmidword xeni 6-1346-14-24 begmidword insigni 35-234-45-1345-24 always carabinier 6-14-356-1-12-35-24-12456 always robini 1235-135-12-35-24 always jardinier 245-356-145-35-24-12456 begmidword sardini 234-356-145-35-24 begmidword finien 124-35-24-14 begmidword lini 123-35-24 begmidword pollini 1234-135-123-123-35-24 always apollinisch 1-1234-135-12345-35-24-156 word pollini 1234-135-12345-35-24 word pollinis 1234-135-12345-35-24-234 always linier 123-35-346-1235 midendword linig 123-35-45 always miniechs 134-35-24-15-1456-234 always minieis 134-35-24-146-234 prfword pinie 1234-35-24-15 always pinien 1234-35-24-14 begmidword abessini 1-23-2346-35-24 begmidword grusini 1245-1235-136-234-35-24 begmidword argentini 356-1245-14-2345-35-24 begmidword aktini 1-13-2345-35-24 always aktinin 1-13-2345-35-35 prfword routinier 1235-135-136-2345-35-24-12456 prfword routiniers 1235-135-136-2345-35-24-12456-234 prfword zinie 1356-35-24-15 always zinien 1356-35-24-14 prfword zinnie 1356-35-1345-24-15 always zinnien 1356-35-1345-24-14 always insomnien 35-234-135-134-1345-24-14 begmidword bonbonier 12-135-1345-12-135-1345-24-12456 begmidword bonbonnier 12-135-1345-12-135-1345-1345-24-12456 always saisonnier 234-1-24-234-135-1345-1345-24-12456 always chansonnier 1456-235-234-135-1345-1345-24-12456 begmidword kaledoni 13-25-15-145-135-1345-24 begmidword makedoni 134-1-13-15-145-135-1345-24 begmidword mazedoni 134-1-1356-15-145-135-1345-24 always chiffonier 1456-24-124-124-135-1345-24-12456 begmidword aragoni 356-1-1245-135-1345-24 always begoni 23-1245-135-1345-24 begmidword babyloni 12-1-12-6-13456-123-135-1345-24 begmidword kataloni 13-1-2345-25-135-1345-24 begmidword slawoni 234-123-1-2456-135-1345-24 always dernier 145-12456-1345-24-12456 begmidword indernier 35-145-12456-1345-346-1235 begmidword spendernier 234-1234-14-145-12456-1345-346-1235 begmidword wandernier 2456-235-145-12456-1345-346-1235 prfword hernie 125-12456-1345-24-15 always hernien 125-12456-1345-24-14 begmidword kaliforni 13-25-24-124-26-1345-24 always bosnien 12-135-234-1345-24-14 always bosnier 12-135-234-1345-24-12456 begmidword puni 1234-256-24 always harpunier 125-356-1234-256-346-1235 begmidword petuni 1234-15-2345-256-24 begmidword bithyni 12-24-2345-125-6-13456-1345-24 # oIE prfword boie 12-135-24-15 always boien 12-135-24-14 word foie 124-135-24-15 always voien 1236-135-24-14 # pIE word pie 1234-24-15 sufword piedra 1234-24-15-145-1235-1 always piemont 1234-24-15-134-135-1345-2345 midendword pien 1234-24-14 sufword piensa 1234-24-14-234-1 sufword piero 1234-24-12456-135 always pierre 1234-24-12456-1235-15 always pierres 1234-24-12456-1235-123456 always papier 1234-1-1234-346-1235 always pierrot 1234-24-12456-1235-135-2345 always kopier 13-135-1234-346-1235 prfword pies 1234-24-15-234 prfword hippies 125-24-1234-1234-346-234 prfword yuppies 6-13456-136-1234-1234-346-234 always pieta 1234-24-15-2345-1 always pietismus 1234-24-15-2345-5-24 always pietist 1234-24-15-2345-24-23456 always pietistisch 1234-24-15-2345-5-156 always pietro 1234-24-15-2345-1235-135 always pietät 1234-24-15-2345-345-2345 always piezo 1234-24-15-1356-135 always kneipier 13-1345-146-1234-24-12456 always olympier 135-123-6-13456-134-1234-24-12456 begmidword äthiopi 345-2345-125-24-135-1234-24 always croupier 6-14-1235-135-136-1234-24-12456 prfword rupie 1235-136-1234-24-15 always rupien 1235-136-1234-24-14 # qIE # rIE word rien 1235-24-14 midendword rien 1235-24-14 prfword arie 356-24-15 sufword ariel 356-24-13456 prfword arielle 356-24-15-12345-15 prfword arielles 356-24-15-12345-123456 always marie 134-356-346 prfword mariette 134-356-24-15-2345-236 always mariett 134-356-24-15-2345-2345 prfword parietal 1234-356-24-15-2345-1-123 always parietal 1234-356-24-15-2345-25 always havarie 125-1-1236-356-346 always arien 356-24-14 always marien 134-356-24-14 always havarien 125-1-1236-356-24-14 always arier 356-24-12456 always karier 13-356-346-1235 always karies 13-356-24-123456 always klarier 13-123-356-346-1235 always parier 1234-356-346-1235 always tarier 2345-356-346-1235 always ozetarier 135-1356-15-2345-356-24-12456 always rotarier 1235-135-2345-356-24-12456 always vegetarier 1236-15-12346-2345-356-24-12456 midendword letarier 123-15-2345-356-24-12456 always unitarier 256-24-2345-356-24-12456 always trinitarier 2345-1235-35-24-2345-356-24-12456 always parlamentarier 1234-356-123-1-134-14-2345-356-24-12456 begmidword variet 1236-356-24-15-2345 prfword variete 1236-356-24-15-236 always gabriel 1245-1-12-1235-24-13456 always erien 12456-24-14 always iberien 24-12-12456-24-14 always drogerien 145-1235-135-1245-12456-24-14 prfword serie 234-12456-24-15 always terien 2345-12456-24-14 begmidword algeri 25-1245-12456-24 prfword serie 234-12456-24-15 midendword onfiserie 135-1345-124-24-234-12456-346 prfword onfiserien 135-1345-124-24-234-12456-24-14 always chinoiserie 1456-35-135-24-234-12456-346 prfword chinoiserien 1456-35-135-24-234-12456-24-14 always inserier 35-234-12456-346-1235 always komparserie 13-135-134-1234-356-234-12456-346 prfword komparserien 13-135-134-1234-356-234-12456-24-14 always asserier 1-2346-12456-346-1235 always brasserie 12-1235-1-2346-12456-346 always tapisserie 2345-1-1234-24-2346-12456-346 prfword tapisserien 2345-1-1234-24-2346-12456-24-14 always patisserie 1234-1-2345-24-2346-12456-346 prfword patisserien 1234-1-2345-24-2346-12456-24-14 always karosserie 13-356-135-2346-12456-346 prfword karosserien 13-356-135-2346-12456-24-14 begmidword materi 134-1-2345-12456-24 begmidword bakteri 12-1-13-2345-12456-24 always interieur 35-2345-12456-24-126-1235 before e begmidword arteri 356-2345-12456-24 always grien 1245-1235-346-1345 begmidword sangrien 234-235-1245-1235-24-14 begmidword sibiri 234-24-12-24-1235-24 begmidword henriett 125-14-1235-24-15-2345-2345 prfword henriette 125-14-1235-24-15-2345-236 endword orien 26-24-14 always kategorien 13-1-236-1245-26-24-14 always kalorien 13-25-26-24-14 always theorie 2345-125-15-26-346 always theorien 2345-125-15-26-24-14 always orient 26-24-14-2345 begmidword glori 1245-123-26-24 always moriend 134-26-24-14-145 begmidword akzessori 1-13-1356-15-2346-26-24 begmidword histori 125-24-23456-26-24 always historismus 125-24-23456-26-5-24 begmidword zichori 1356-3456-26-24 begmidword tutorien 2345-136-2345-26-24-14 begword propriet 12345-1234-1235-24-15-2345 always propriet 1234-1235-135-1234-1235-24-15-2345 always carrier 6-14-356-1235-24-12456 always barrier 12-356-1235-24-12456 always harriet 125-356-1235-24-15-2345 always karrier 13-356-1235-24-12456 always perrier 1234-12456-1235-24-12456 always terrier 2345-12456-1235-24-12456 begmidword corrier 6-14-26-1235-24-12456 always triest 2345-1235-24-15-23456 always industrie 35-145-136-23456-1235-346 always industriell 35-145-136-23456-1235-24-15-12345 prfword industrien 35-145-136-23456-1235-24-14 always saurier 234-16-1235-24-12456 prfword furie 124-136-1235-24-15 always furien 124-136-1235-24-14 always furier 124-136-1235-346-1235 prfword injurie 35-245-136-1235-24-15 always injurien 35-245-136-1235-24-14 always injurier 35-245-136-1235-346-1235 prfword kurie 13-136-1235-24-15 always kurien 13-136-1235-24-14 always kurier 13-136-1235-346-1235 always dekurie 145-15-13-136-1235-24-15 prfword muriel 134-136-1235-24-13456 prfword muriels 134-136-1235-24-13456-234 always courier 6-14-135-136-1235-24-12456 begmidword zenturi 1356-14-2345-136-1235-24 always couturier 6-14-135-136-2345-136-1235-24-12456 begmidword kyri 13-6-13456-1235-24 always illyrier 24-12345-6-13456-1235-24-12456 begmidword syri 234-6-13456-1235-24 begmidword syrin 234-6-13456-1235-35 begmidword assyri 1-2346-6-13456-1235-24 # sIE midendword sien 234-24-14 begword sierr 234-24-12456-1235 always sierra 234-24-12456-1235-1 always sterilisier 23456-12456-24-123-24-234-346-1235 always siesta 234-24-15-23456-1 midendword sieur 234-24-126-1235 word messieurs 134-15-2346-24-126-1235-234 begmidword kaukasi 13-16-13-1-234-24 begmidword douglasi 145-135-136-1245-123-1-234-24 begmidword austrasi 16-23456-1235-1-234-24 begmidword eurasi 126-1235-1-234-24 midendword antasie 235-2345-1-234-346 endword antasien 235-2345-1-234-24-14 endword esien 123456-24-14 begmidword rhodesi 1235-125-135-145-123456-24 begmidword freesi 124-1235-15-15-234-24 begmidword schlesi 156-123-123456-24 always milesier 134-24-123-123456-24-12456 begmidword melanesi 134-13456-235-123456-24 begmidword indonesi 35-145-135-1345-123456-24 begmidword mikronesi 134-24-13-1235-135-1345-123456-24 begmidword tunesi 2345-256-123456-24 begmidword polynesi 1234-135-123-6-13456-1345-123456-24 always theresien 2345-125-12456-123456-24-14 begmidword fuchsi 124-136-1456-234-24 always fuchsig 124-136-1456-234-45 always chemisier 1456-12356-24-234-24-12456 always lavoisier 123-1-1236-135-24-234-24-12456 begmidword hortensi 125-26-2345-14-234-24 midendword ssien 2346-24-14 midendword messieur 134-15-2346-24-126-1235 always jurassier 245-136-1235-1-2346-24-12456 always patissier 1234-1-2345-24-2346-24-12456 always dossier 145-135-2346-24-12456 always dossierung 145-135-2346-346-1235-136 prfword haussier 125-16-2346-24-12456 prfword haussiers 125-16-2346-24-12456-234 always arkebusier 356-13-15-12-136-234-24-12456 always corbusier 6-14-26-12-136-234-24-12456 begmidword andalusi 235-145-25-136-234-24 always malaysier 134-25-1-6-13456-234-24-12456 # tIE midendword tien 2345-24-14 prfword tiende 2345-24-14-145-15 prfword tiende 2345-24-14-145-15 midendword atien 1-2345-24-14 prfword tiens 2345-24-14-234 prfword tient 2345-24-14-2345 always poitiers 1234-135-24-2345-24-12456-234 always chocolatier 1456-135-6-14-135-123-1-2345-24-12456 prfword demokratien 145-2345-24-14 always privatier 1234-1235-24-1236-1-2345-24-12456 always cafetier 6-14-1-124-15-2345-24-12456 always metier 134-15-2345-24-12456 begmidword helveti 125-13456-1236-15-2345-24 always helvetismus 125-13456-1236-15-2345-5-24 always helvetismen 125-13456-1236-15-2345-24-234-134-14 always pleitier 1234-123-146-2345-24-12456 always poitiers 1234-135-24-2345-24-12456-234 prfword aktie 1-13-2345-24-15 always aktien 1-13-2345-24-14 always paktier 1234-1-13-2345-346-1235 always traktier 2345-1235-1-13-2345-346-1235 always taktier 2345-1-13-2345-346-1235 always multi 134-136-123-2345-24 before e begmidword anti 235-2345-24 prfword antie 235-2345-346 always orkantief 26-13-235-2345-346-124 always hantier 125-235-2345-346-1235 always garantie 1245-356-235-2345-346 always garantien 1245-356-235-2345-24-14 sufword proviantier 12345-1236-24-235-2345-346-1235 midendword proviantier 1234-1235-135-1236-24-235-2345-346-1235 always kantier 13-235-2345-346-1235 always plantier 1234-123-235-2345-346-1235 always tantiem 2345-235-2345-24-12356 always cartier 6-14-356-2345-24-12456 # HOMONYM always portier 1234-26-2345-24-12456 prfword portierbar 1234-26-2345-346-1235-12-1-1235 begmidword portierbar 1234-26-2345-346-1235-12-356 # HOMONYM prfword portiere 1234-26-2345-346-1235-15 prfword portieren 1234-26-2345-346-1235-14 always portierend 1234-26-2345-346-1235-14-145 prfword portierst 1234-26-2345-346-1235-23456 always portiert 1234-26-2345-346-1235-2345 prfword portierte 1234-26-2345-346-1235-236 prfword portiertest 1234-26-2345-346-1235-236-23456 prfword portiertet 1234-26-2345-346-1235-236-2345 always portierung 1234-26-2345-346-1235-136 begmidword portierungsauf 1234-26-2345-346-1235-136-234-2-16 always deportier 145-15-1234-26-2345-346-1235 always kolportier 13-135-123-1234-26-2345-346-1235 always importier 24-134-1234-26-2345-346-1235 always apportier 1-1234-1234-26-2345-346-1235 sufword exportier 1346-1234-26-2345-346-1235 midendword exportier 15-6-1346-1234-26-2345-346-1235 always transportier 2345-1235-235-234-1234-26-2345-346-1235 midendword stien 23456-24-14 midendword estien 15-23456-24-14 prfword bestie 23-23456-24-15 always bestien 23-23456-24-14 begmidword hosti 125-135-23456-24 always hosting 125-135-23456-35-1245 always hostinter 125-135-23456-35-2345-12456 always bustier 12-136-23456-24-12456 always büfettier 12-1256-124-15-2345-2345-24-12456 always spaghettiess 234-1234-1-1245-125-15-2345-2345-24-15-2346 always gautier 1245-16-2345-24-12456 always bijoutier 12-24-245-135-136-2345-24-12456 always moutier 134-135-136-2345-24-12456 # uIE always quietismus 6-12345-136-24-15-2345-5-24 always quietistisch 6-12345-136-24-15-2345-5-156 always quieu 6-12345-136-24-126 always kolloqui 13-135-12345-135-6-12345-136-24 always requi 1235-15-6-12345-136-24 begmidword reliqui 1235-13456-24-6-12345-136-24 # vIE begmidword vienn 1236-24-14-1345 always viet 1236-24-15-2345 always view 1236-24-15-2456 always javier 245-1-1236-24-12456 begmidword skandinavi 234-13-235-145-35-1-1236-24 always xavier 6-1346-1-1236-24-12456 begmidword endivi 14-145-24-1236-24 begmidword bolivi 12-135-123-24-1236-24 always riviera 1235-24-1236-24-12456-1 always vivien 1236-24-1236-24-14 # wIE always jugoslawi 245-136-1245-135-234-123-1-2456-24 always jugoslawin 245-136-1245-135-234-123-1-2456-35 always moldawi 134-135-123-145-1-2456-24 # xIE always galaxien 1245-25-1-6-1346-24-14 always sexier 234-15-6-1346-24-12456 always sexiest 234-15-6-1346-24-15-23456 always paradoxien 1234-356-1-145-135-6-1346-24-14 begmidword gloxini 1245-123-135-6-1346-35-24 # yIE begmidword harpyi 125-356-1234-6-13456-24 # zIE midendword zien 1356-24-14 begmidword akazi 1-13-1-1356-24 begmidword grazi 1245-1235-1-1356-24 begmidword pistazi 1234-24-23456-1-1356-24 begmidword allochezi 1-12345-135-1456-15-1356-24 begmidword alopezi 25-135-1234-15-1356-24 always spezies 234-1234-15-1356-24-123456 begmidword phönizi 1234-125-246-1345-24-1356-24 always patrizier 1234-1-2345-1235-24-1356-24-12456 begmidword alkylanzi 25-13-6-13456-123-235-1356-24 begmidword koagulanzi 13-135-1-1245-136-123-235-1356-24 prfword finanzier 124-35-235-1356-24-12456 prfword finanziers 124-35-235-1356-24-12456-234 always soziet 234-135-1356-24-15-2345 # IG (4.1 Lautgruppenkürzungen) midendword ig 45 midendword igebiet 24-12346-12-346-2345 endword igebiete 24-12346-12-346-236 midword igebäud 24-12346-12-34-145 midendword igegner 24-12346-1245-1345-12456 midendword igehalt 24-12346-125-25-2345 midendword igeist 24-1245-146-23456 midword igeländ 24-12346-123-345-1345-145 endword igenre 24-1245-14-1235-15 endword igenres 24-1245-14-1235-123456 midendword igeschoss 24-12346-156-135-2346 midendword igeschäft 24-1245-124 midword igess 45-15-2346 midword igewerbe 24-12346-2456-12456-23 endword igewerbe 24-12346-2456-12456-12-15 midendword igewinn 24-12346-2456-35-1345 midword ignor 24-1245-1345-26 endword ignor 24-1245-1345-135-1235 midendword igold 24-1245-135-123-145 midendword igolf 24-1245-135-123-124 midword igrupp 24-1245-1235-136-1234-1234 midword igymn 24-1245-6-13456-134-1345 always aig 1-24-1245 always hai 125-1-24 always kaigebühr 13-1-24-12346-12-1256-125-1235 always sinai 234-35-1-24 always bonsai 12-135-1345-234-1-24 always alibi 25-24-12-24 always kombi 13-135-134-12-24 always digamma 145-24-1245-1-1346-1 word digest 145-24-1245-15-23456 always digestif 145-45-15-23456-24-124 begmidword digitiz 145-24-1245-24-2345-24-1356 always fight 124-24-1245-125-2345 before g begword profi 12345-124-24 before g midword profi 1234-1235-135-124-24 always rigigrat 1235-24-1245-24-1245-1235-1-2345 always high 125-24-1245-125 always khaki 13-125-1-13-24 always light 123-24-1245-125-2345 always align 1-123-24-1245-1345 always alignier 25-45-1345-346-1235 always alkaliglasur 25-13-1-123-24-1245-123-1-234-136-1235 always psaligraf 1234-234-25-24-1245-1235-1-124 always psaligraph 1234-234-25-24-1245-1235-1-1234-125 always negligee 1345-15-1245-123-24-1245-15-15 always kalligraf 13-1-12345-24-1245-1235-1-124 always kalligrafien 13-1-12345-24-1245-1235-1-124-24-14 always kalligraph 13-1-12345-24-1245-1235-1-1234-125 always milligramm 134-24-12345-24-1245-1235-1-1346 always mignon 134-24-1245-1345-135-1345 always talmiglanz 2345-25-134-24-1245-123-235-1356 always night 1345-24-1245-125-2345 always armani 356-134-235-24 always organigramm 26-1245-235-24-1245-1235-1-1346 always soignier 234-135-24-1245-1345-346-1235 always epigraf 15-1234-24-1245-1235-1-124 always epigramm 15-1234-24-1245-1235-1-1346 always epigraph 15-1234-24-1245-1235-1-1234-125 always champignon 1456-1-134-1234-24-1245-1345-135-1345 always right 1235-24-1245-125-2345 always rigips 1235-24-1245-24-1234-234 always lollobrigida 123-135-12345-135-12-1235-24-1245-24-145-1 always serigraf 234-12456-24-1245-1235-1-124 always serigraph 234-12456-24-1245-1235-1-1234-125 always aborigine 1-12-26-45-35-15 always aborigines 1-12-26-45-35-123456 always trigeminus 2345-1235-24-1245-12356-35-136-234 always sight 234-24-1245-125-2345 prfword sign 234-24-1245-1345 prfword signs 234-24-1245-1345-234 always design 145-123456-24-1245-1345 always designation 145-123456-45-1345-5-1345 always designat 145-123456-45-1345-1-2345 always designier 145-123456-45-1345-346-1235 always unsigned 256-234-24-1245-1345-15-145 begmidword gassigeh 1245-1-2346-24-1245-2356 always altigraf 25-2345-24-1245-1235-1-124 always altigraph 25-2345-24-1245-1235-1-1234-125 always antigen 235-2345-24-1245-14 always kantigen 13-235-2345-45-14 always grantigen 1245-1235-235-2345-45-14 always antigestalt 235-2345-24-12346-23456-25-2345 begmidword antiglob 235-2345-24-1245-123-135-12 begmidword antigrav 235-2345-24-1245-1235-1-1236 always zentigrad 1356-14-2345-24-1245-1235-1-145 always zentigramm 1356-14-2345-24-1245-1235-1-1346 always szintigraf 234-1356-35-2345-24-1245-1235-1-124 always szintigramm 234-1356-35-2345-24-1245-1235-1-1346 always szintigraph 234-1356-35-2345-24-1245-1235-1-1234-125 begmidword spontigrupp 234-1234-135-1345-2345-24-1245-1235-136-1234-1234 always antipasti 235-2345-24-1234-1-23456-24 always luigi 123-136-24-1245-24 prfword vignette 1236-24-1245-1345-15-2345-236 always vignetten 1236-24-1245-1345-15-2345-2345-14 always avignon 1-1236-24-1245-1345-135-1345 always savigny 234-1-1236-24-1245-1345-6-13456 always sauvignon 234-16-1236-24-1245-1345-135-1345 always dwight 145-2456-24-1245-125-2345 before g begmidword plexi 1234-123-15-6-1346-24 always dezigramm 145-15-1356-24-1245-1235-1-1346 # IHM (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word ihm 236 # IHN (4.4 Zweiformige Kürzungen) word ihn 24-125 word ihnen 24-125-14 # IHR (4.3.3 Einformige Kürzungen, alleinstehend oder am Wortanfang) sufword ihr 24 word ihr's 24-6-234 # IM (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word im 36 # IMMER (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word immer 1346 always immer 2-1346 always immersion 24-1346-12456-234-245 always dimmer 145-24-1346-12456 always schimmer 156-24-1346-12456 always limmer 123-24-1346-12456 always nimmer 1345-24-1346-12456 always trimmer 2345-1235-24-1346-12456 always simmer 234-24-1346-12456 always stimmer 23456-24-1346-12456 always bestimmer 23-23456-24-1346-12456 always wimmer 2456-24-1346-12456 always zimmer 1356-24-1346-12456 # IN (4.1 Lautgruppenkürzungen) always in 35 always cain 6-14-1-24-1345 always novocain 1345-135-1236-135-6-14-1-35 always bougain 12-135-136-1245-1-24-1345 begmidword bermudain 12-12456-134-136-145-1-35 always hain 125-1-24-1345 always mokka 134-135-13-13-1 always kain 13-1-24-1345 always kokain 13-135-13-1-35 always chamberlain 1456-1-134-12-12456-123-1-24-1345 always plain 1234-123-1-24-1345 always main 134-1-24-1345 always pharma 1234-125-356-134-1 always klima 13-123-24-134-1 begmidword bahama 12-1-125-1-134-1 always paint 1234-1-24-1345-2345 always rain 1235-1-24-1345 begmidword cholerain 1456-135-123-12456-1-35 begmidword kamerain 13-1-134-12456-1-35 begmidword ukrain 136-13-1235-1-35 begmidword kontrain 13-135-1345-2345-1235-1-35 always trainee 2345-1235-1-24-1345-15-15 always trainer 2345-1235-1-24-1345-12456 always rainier 1235-1-24-1345-24-12456 always drainier 145-1235-1-24-1345-346-1235 always trainier 2345-1235-1-24-1345-346-1235 always training 2345-1235-1-24-1345-35-1245 prfword saint 234-1-24-1345-2345 prfword sainte 234-1-24-1345-236 always tain 2345-1-24-1345 always mountain 134-135-136-1345-2345-1-24-1345 begmidword metain 134-15-2345-1-35 always stainless 23456-1-24-1345-123-15-2346 always twain 2345-2456-1-24-1345 prfword binational 12-24-1345-5-1345-1-123 always binational 12-24-1345-5-1345-25 begmidword gumminier 1245-136-1346-24-1345-346-1235 before n begmidword juli 245-136-123-24 before n begmidword juni 245-256-24 always cointreau 6-14-135-24-1345-2345-1235-15-16 always joint 245-135-24-1345-2345 always point 1234-135-24-1345-2345 prfword pointe 1234-135-35-236 always pointen 1234-135-35-2345-14 always pointier 1234-135-35-2345-346-1235 begmidword pointill 1234-135-35-2345-24-12345 always antoin 235-2345-135-24-1345 always allantoin 1-12345-235-2345-135-35 always multination 134-136-123-2345-24-1345-5-1345 always antinazi 235-2345-24-1345-1-1356-24 begmidword antineuralg 235-2345-24-1345-126-1235-25-1245 always antineutron 235-2345-24-1345-126-2345-1235-135-1345 always antinomie 235-2345-24-1345-135-134-346 always antinomien 235-2345-24-1345-135-134-24-14 begmidword antinukle 235-2345-24-1345-136-13-123-15 begmidword multinukle 134-136-123-2345-24-1345-136-13-123-15 always aschantinuss 1-156-235-2345-24-1345-136-2346 always aschantinüss 1-156-235-2345-24-1345-1256-2346 always mannequin 134-235-1345-15-6-12345-136-35 # INTERESS (4.3.6 Kommakürzungen) always interess 2-35 always hinteressen 125-35-2345-12456-15-2346-14 # -ION (4.2.2 b) Nachsilbenkürzungen) midendword tion 2345-245 midendword tions 2345-245-234 word sion 234-24-135-1345 midendword sion 234-245 midendword sions 234-245-234 midendword kursion 13-136-1235-234-245 midendword ession 15-2346-245 midendword essions 15-2346-245-234 midendword estion 15-23456-245 midendword estions 15-23456-245-234 midendword ssion 2346-245 midendword ssions 2346-245-234 midendword ßion 2346-245 midendword ßions 2346-245-234 midendword stion 23456-245 midendword stions 23456-245-234 always punktion 1234-2345-245 # IRGEND (4.4 Zweiformige Kürzungen) sufword irgend 24-1245 always irgendwas 24-1245-2456-1-234 # -ISMUS (4.2.2 b) Nachsilbenkürzungen) midendword ismus 5-24 always gratismuster 1245-1235-1-2345-24-234-134-136-23456-12456 always kürbismus 13-1256-1235-12-24-234-134-136-234 # IST (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word ist 23456 # -ISTISCH (4.2.2 b) Nachsilbenkürzungen) midendword istisch 5-156 always tischtennistisch 2345-24-156-2345-14-1345-24-234-2345-24-156 # -ITÄT (4.2.2 b) Nachsilbenkürzungen) midendword ität 5-345 midword itäts 5-345-234 # JAHR JÄHR (4.4 Zweiformige Kürzungen) always jahr 245-1235 always jähr 5-245-1235 # JAHRHUNDERT (4.4 Zweiformige Kürzungen) always jahrhundert 245-125 # JAHRTAUSEND (4.4 Zweiformige Kürzungen) always jahrtausend 245-2345 # JAHRZEHNT (4.4 Zweiformige Kürzungen) always jahrzehnt 245-1356 # JED (4.4 Zweiformige Kürzungen) begword jed 245-145 sufword jedi 245-15-145-24 # JEDOCH (4.4 Zweiformige Kürzungen) always jedoch 245-1456 # JETZIG (4.4 Zweiformige Kürzungen) always jetzig 245-45 # JETZT (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word jetzt 245 always jetzt 2-245 # KANN (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word kann 13 # KANNST (4.4 Zweiformige Kürzungen) always kannst 13-23456 # KAPITAL KAPITÄL (4.4 Zweiformige Kürzungen) always kapital 13-1234 always kapitalien 13-1234-24-14 always kapitäl 5-13-1234 # -KEIT 4.2.1 a) Nachsilbenkürzungen midendword keit 13 midendword keits 13-234 # KOMM KÖMM (4.4 Zweiformige Kürzungen) always komm 13-1346 always kömm 5-13-1346 # KÖNN (4.3.6 Kommakürzungen) always könn 2-13 # KONNT (4.4 Zweiformige Kürzungen) always konnt 13-2345 # KRAFT KRÄFT (4.4 Zweiformige Kürzungen) always kraft 13-124 always kräft 5-13-124 # KURZ KÜRZ (4.4 Zweiformige Kürzungen) always kurz 13-1356 always kürz 5-13-1356 always kurzeit 13-136-1235-1356-2345 begmidword kurzentr 13-136-1235-1356-14-2345-1235 # LANG LÄNG (4.4 Zweiformige Kürzungen) always lang 123-1245 always läng 5-123-1245 prfword langabe 123-235-1245-1-12-15 prfword angabe 235-1245-1-12-15 always langabe 123-235-1245-1-23 always angabe 235-1245-1-23 always langaben 123-235-1245-1-12-14 always angaben 235-1245-1-12-14 syllable angehörig 235-12346-125-246-1235-45 always längelang 5-123-1245-15-123-1245 syllable angelegenheit 235-1245-1245-125 syllable angleich 235-1245-1456 syllable angestell 235-12346-2-13456 syllable angebot 235-12346-12-135-2345 syllable angebote 235-12346-12-135-236 syllable angebotes 235-12346-12-135-2345-123456 syllable angeboten 235-12346-12-135-2345-14 always langenberg 123-235-1245-14-12-12456-1245 always langenfeld 123-235-1245-14-124-13456-145 always langenscheidt 123-235-1245-14-156-146-145-2345 always langerhans 123-235-1245-12456-125-235-234 always langnes 123-235-1245-1345-123456 always langobard 123-235-1245-135-12-356-145 always languag 123-235-1245-136-1-1245 prfword language 123-235-1245-136-1-12346 always langue 123-235-1245-136-15 always langues 123-235-1245-136-123456 always langust 123-235-1245-136-23456 always falange 124-25-235-12346 always falangist 124-25-235-1245-24-23456 always generalangriff 1245-14-12456-25-235-1245-1235-24-124-124 midendword tralang 2345-1235-1-123-1245 midendword traläng 2345-1235-1-5-123-1245 always frontalangriff 124-1235-135-1345-2345-25-235-1245-1235-24-124-124 always tagelang 2345-1-12346-123-1245 always michelangelo 134-3456-13456-235-1245-13456-135 always melang 134-13456-235-1245 prfword melange 134-13456-235-12346 always himmelangst 125-24-1346-13456-235-1245-23456 always himmelängst 125-24-1346-13456-345-1345-1245-23456 midendword telang 236-123-1245 always titelanga 2345-24-2345-13456-235-1245-1 midendword teläng 236-5-123-1245 always schlang 156-123-235-1245 prfword schlange 156-123-235-12346 begmidword schlangesteh 156-123-235-12346-23456-2356 always schläng 156-123-345-1345-1245 prfword schlänge 156-123-345-1345-12346 always eilangebo 146-123-235-12346-12-135 always klang 13-123-235-1245 always kläng 13-123-345-1345-1245 prfword klänge 13-123-345-1345-12346 always stinklang 23456-35-13-123-1245 syllable knöchel 13-1345-246-1456-13456 midendword tellang 2345-13456-123-1245 midendword telläng 2345-13456-5-123-1245 always stellangel 2-13456-235-1245-13456 syllable porzell 1234-26-1356-15-12345 sufword plang 1234-123-235-1245 prfword plange 1234-123-235-12346 syllable plangl 1234-123-235-1245-123 sufword slang 234-123-235-1245 always gebietsslang 12346-12-346-2345-234-234-123-235-1245 always werbeslang 2456-12456-23-234-123-235-1245 # LASS LÄSS (4.3.6 Kommakürzungen) always lass 2-123 always läss 5-123 # Alte Rechtschreibung always läß 5-123 always lassist 123-1-2346-24-23456 always rassistisch 1235-1-2346-5-156 always lassa 123-1-2346-1 always nachlass 1345-56-2-123 always lasso 123-1-2346-135 always thalasso 2345-125-25-1-2346-135 always blass 12-123-1-2346 # Alte Rechtschreibung always blaß 12-123-1-2346 always bläss 12-123-345-2346 # Alte Rechtschreibung always bläß 12-123-345-2346 always ablass 1-12-2-123 # Alte Rechtschreibung always ablaß 1-12-2-123 always abläss 1-12-5-123 # Alte Rechtschreibung always abläß 1-12-5-123 # Homonym always erblasser 12456-12-2-123-12456 always class 6-14-123-1-2346 always melass 134-13456-1-2346 always glassch 1245-123-1-234-156 always glasseid 1245-123-1-234-234-146-145 always glassp 1245-123-1-234-234-1234 always glasspiel 1245-123-1-234-2-346 always glasst 1245-123-1-234-23456 always weglasst 2456-1245-2-123-2345 always glasständ 1245-123-1-234-5-23456 always glasscheib 1245-123-1-234-156-146-12 always klasse 13-123-1-2346-15 always klassement 13-123-1-2346-12356-14-2345 always klassen 13-123-1-2346-14 always klasser 13-123-1-2346-12456 always klassig 13-123-1-2346-45 always klassik 13-123-1-2346-24-13 prfword klassier 13-123-1-2346-346-1235 begmidword klassier 13-123-1-2346-346-1235 always klassifikation 13-123-1-2346-24-124-24-13-5-1345 begmidword klassifikat 13-123-1-2346-24-124-24-13-1-2345 prfword klassifizier 13-123-1-2346-24-124-24-1356-346-1235 always klassifizier 13-123-1-2346-24-124-24-1356-346-1235 prfword klassisch 13-123-1-2346-24-156 always klassisch 13-123-1-2346-24-156 always klassiz 13-123-1-2346-24-1356 always klassler 13-123-1-2346-123-12456 always klässler 13-123-345-2346-123-12456 always klässer 13-123-345-2346-12456 always molass 134-135-123-1-2346 always atlasses 1-2345-123-1-2346-123456 # LÄSST (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word lässt 123 # Alte Rechtschreibung word läßt 123 # LEB (4.4 Zweiformige Kürzungen) always leb 123-12 always lebens 123-12-14-234 always leberecht 123-12-15-1235-2345 always leberegel 123-12-12456-15-1245-13456 always kalebass 13-25-15-12-1-2346 always tangentialeben 2345-235-1245-14-2345-24-25-15-12-14 always spinaleben 234-1234-35-25-15-12-14 always terminaleben 2345-12456-134-35-25-15-12-14 always transversaleben 2345-1235-235-234-1236-12456-234-25-15-12-14 always frontaleben 124-1235-135-1345-2345-25-15-12-14 always horizontaleben 125-26-24-1356-135-1345-2345-25-15-12-14 always individualeben 35-145-24-1236-24-145-136-25-15-12-14 always zieleben 1356-346-123-15-12-14 always faseleber 124-1-234-13456-15-12-12456 always telebank 2345-13456-15-12-235-13 always telebild 2345-13456-15-12-24-123-145 always telebox 2345-13456-15-12-135-6-1346 always telebrief 2345-13456-15-12-124 begmidword zelebr 1356-13456-15-12-1235 begmidword kohleb 13-135-125-123-15-12 begmidword kohlebe 13-135-125-123-15-23 begmidword kohlebei 13-135-125-123-15-2-12 always kohlebenzin 13-135-125-123-15-12-14-1356-35 always kohleberg 13-135-125-123-15-12-12456-1245 always phlebit 1234-125-123-15-12-24-2345 always ventileben 1236-14-2345-24-123-15-12-14 always stileben 23456-24-123-15-12-14 always kleb 13-123-15-12 begmidword klebe 13-123-15-23 always kleben 13-123-15-12-14 always kleber 13-123-15-12-12456 always huckleberry 125-136-46-123-15-12-12456-1235-6-13456 always solebad 234-135-123-15-12-1-145 always solebäd 234-135-123-15-12-345-145 always solebecken 234-135-123-15-23-46-14 begmidword plebej 1234-123-15-23-245 begmidword plebisz 1234-123-15-12-24-234-1356 always plebs 1234-123-15-12-234 before b begmidword triple 2345-1235-24-1234-123-15 always gorleben 1245-26-123-15-12-14 always fallersleben 124-1-12345-12456-234-123-15-12-14 before b begmidword turtle 2345-136-1235-2345-123-15 before b begmidword shuttle 234-125-136-2345-2345-123-15 # LEICHT (4.4 Zweiformige Kürzungen) always leicht 123-1456 always bleicht 12-123-146-1456-2345 always bleichte 12-123-146-1456-236 always bleichten 12-123-146-1456-2345-14 always bleichtem 12-123-146-1456-2345-12356 always bleichter 12-123-146-1456-2345-12456 always bleichtes 12-123-146-1456-2345-123456 always bleichtest 12-123-146-1456-236-23456 always halbleicht 125-25-12-123-1456 always schleicht 156-123-146-1456-2345 # LETZT (4.4 Zweiformige Kürzungen) always letzt 123-2345 always letztemal 123-2345-15-134 always schletzt 156-123-15-2345-1356-2345 prfword schletzte 156-123-15-2345-1356-236 always schletzten 156-123-15-2345-1356-2345-14 # LICH (4.1 Lautgruppenkürzungen) midendword lich 456 # LL (4.1 Lautgruppenkürzungen) midendword ll 12345 # Alte Rechtschreibung always modellösung 134-135-145-13456-123-246-234-136 always büffel 12-1256-124-124-13456 always schlängel 156-123-345-1345-1245-13456 always parallel 1234-356-1-12345-13456 always artikel 356-2345-24-13-13456 always henkelloch 125-14-13-13456-123-135-1456 begmidword henkellöch 125-14-13-13456-123-246-1456 always schunkel 156-256-13-13456 always bummel 12-136-1346-13456 always murmel 134-136-1235-134-13456 always kessel 13-15-2346-13456 always schüssel 156-1256-2346-13456 always schlüssel 156-123-1256-2346-13456 before l midword hl 125-123 before l begmidword fehl 124-2356-123 before l begmidword kehl 13-2356-123 always emaillack 12356-1-24-123-123-1-46 always krokodil 13-1235-135-13-135-145-24-123 before l begmidword heil 125-146-123 always seillinie 234-146-123-123-35-24-15 always seillinien 234-146-123-123-35-24-14 always seillitz 234-146-123-123-24-2345-1356 before l begmidword teil 2345-146-123 before l begmidword steil 23456-146-123 always bouteill 12-135-136-2345-15-24-12345 before l begword profil 12345-124-24-123 before l midword profil 1234-1235-135-124-24-123 always stilliegen 23456-24-123-123-346-1245-14 always stillos 23456-24-123-123-135-234 before l begmidword april 1-1234-1235-24-123 always ventil 1236-14-2345-24-123 before l begmidword zivil 1356-24-1236-24-123 before l begword exil 1346-24-123 before l midword exil 15-6-1346-24-123 before l begmidword öl 246-123 sufword böll 12-246-12345 always böller 12-246-12345-12456 always höll 125-246-12345 before l begmidword rohöl 1235-135-125-246-123 always schöllkraut 156-246-12345-13-1235-16-2345 always kölln 13-246-12345-1345 sufword möller 134-246-12345-12456 always schmölln 156-134-246-12345-1345 begword nöll 1345-246-12345 always knöll 13-1345-246-12345 always pollauf 1234-135-123-123-16-124 always polläuf 1234-135-123-123-34-124 always röll 1235-246-12345 always söller 234-246-12345-12456 always quöll 6-12345-136-246-12345 always zöll 1356-246-12345 before l begmidword symbol 234-6-13456-134-12-135-123 always wollust 2456-135-123-123-136-23456 begmidword wollüst 2456-135-123-123-1256-23456 before l begmidword heul 125-126-123 before l begmidword schul 156-136-123 # Alte Rechtschreibung always nulleiter 1345-136-123-123-146-2345-12456 always spüllappen 234-1234-1256-123-123-1-1234-1234-14 # -MAL 4.2.1 a) Nachsilbenkürzungen midendword mal 134 prfword malabar 134-25-1-12-1-1235 always malabar 134-25-1-12-356 always malabo 134-25-1-12-135 always malachi 134-25-56-24 always malad 134-25-1-145 always malaga 134-25-1-1245-1 always malai 134-25-1-24 always malaria 134-25-356-24-1 always malawi 134-25-1-2456-24 always malaxi 134-25-1-6-1346-24 always malay 134-25-1-6-13456 always malbuch 134-25-12-136-1456 always malbüch 134-25-12-1256-1456 always malediv 134-25-15-145-24-1236 always malefiz 134-25-15-124-24-1356 always malend 134-25-14-145 always maler 134-25-12456 always malesch 134-25-15-156 always malfarb 134-25-124-356-12 always einmalfarb 1246-134-124-356-12 always malfeld 134-25-124-13456-145 begmidword malfläch 134-25-124-123-345-1456 always malformation 134-25-124-26-134-5-1345 always malgrund 134-25-1245-145 always malheur 134-25-125-126-1235 begmidword malhonet 134-25-125-135-1345-15-2345 always mali 134-25-24 always malig 134-45 always malign 134-25-45-1345 always malin 134-25-35 always malinteress 134-25-2-35 always maliziös 134-25-24-1356-24-246-234 always malkarton 134-25-13-356-2345-135-1345 always malkast 134-25-13-1-23456 always malkunst 134-25-13-256-23456 always malkäst 134-25-13-345-23456 always malkünst 134-25-13-1256-1345-23456 begword mall 134-1-12345 prfword mall 134-1-12345 prfword malls 134-1-12345-234 prfword malm 134-25-134 prfword malms 134-25-134-234 always malmittel 134-25-134-2345 always malocchi 134-25-135-6-14-1456-24 always maloch 134-25-135-1456 always maloja 134-25-135-245-1 always malossol 134-25-135-2346-135-123 always malpinsel 134-25-1234-35-234-13456 always malposition 134-25-1234-135-234-24-2345-245 always malprogramm 134-25-1234-1235-135-1245-1235-1-1346 always malproper 134-25-1234-1235-135-1234-12456 always malrotation 134-25-1235-135-2345-5-1345 endword malst 134-25-23456 always malst 134-25-23456 begmidword malsäul 134-25-234-34-123 always malta 134-25-2345-1 prfword maltalente 134-25-2345-25-14-236 always maltalent 134-25-2345-25-14-2345 always einmaltarif 1246-134-2345-356-24-124 always maltechnik 134-25-2345-13 always maltechnisch 134-25-2345-156 always malter 134-25-2345-12456 always malteser 134-25-2345-123456-12456 always maltesisch 134-25-2345-123456-24-156 always malthus 134-25-2345-125-136-234 always maltos 134-25-2345-135-234 always malträtier 134-25-2345-1235-345-2345-346-1235 always malus 134-25-136-234 always malutensil 134-25-136-2345-14-234-24-123 always malvasier 134-25-1236-1-234-346-1235 always malve 134-25-1236-15 always malven 134-25-1236-14 always malverbot 134-25-1236-12456-12-135-2345 always malvin 134-25-1236-35 begmidword malwar 134-25-2456-356 always malweis 134-25-2-146 always neunmalweis 1345-126-1345-134-2-146 always malwerk 134-25-2456-12456-13 always malz 134-25-1356 midendword malzahl 134-1356-123 begmidword maläs 134-25-345-234 always alamala 25-1-134-25-1 always amalgam 1-134-25-1245-1-134 begword abmal 1-12-134-25 prfword bemal 23-134-1-123 always bemal 23-134-25 word gemal 1245-12356-1-123 begmidword gemal 1245-12356-25 prfword gemalt 12346-134-25-2345 always gemalt 12346-134-25-2345 prfword gemalte 12346-134-25-236 prfword würgemal 2456-1256-1235-12346-134-1-123 begmidword würgemal 2456-1256-1235-12346-134-25 always atemalkohol 1-2345-12356-25-13-135-125-135-123 begmidword guatemal 1245-136-1-2345-12356-25 begword aufmal 2-16-134-25 begmidword pragmalingu 1234-1235-1-1245-134-1-123-35-1245-136 prfword saugmal 234-16-1245-134-1-123 begmidword saugmal 234-16-1245-134-25 begmidword nachmal 1345-56-134-25 always nachmalig 1345-56-134-45 word nachmals 1345-56-134-234 prfword schmal 156-134-1-123 always schmal 156-134-25 always marshmallow 134-356-234-125-134-1-12345-135-2456 always himalaja 125-24-134-25-1-245-1 always himalaya 125-24-134-25-1-6-13456-1 prfword animal 235-24-134-1-123 always animal 235-24-134-25 prfword minimal 134-35-24-134-1-123 always minimal 134-35-24-134-25 prfword sexagesimal 234-15-6-1346-1-1245-123456-24-134-1-123 always sexagesimal 234-15-6-1346-1-1245-123456-24-134-25 prfword infinitesimal 35-124-35-24-2345-123456-24-134-1-123 always infinitesimal 35-124-35-24-2345-123456-24-134-25 prfword optimal 135-1234-2345-24-134-1-123 always optimal 135-1234-2345-24-134-25 prfword maximal 134-1-6-1346-24-134-1-123 always maximal 134-1-6-1346-24-134-25 prfword dezimal 145-15-1356-24-134-1-123 always dezimal 145-15-1356-24-134-25 begmidword vollmal 2-12345-134-25 sufword herummal 125-12456-136-134-134-25 begmidword anmal 235-134-25 sufword peitschenmal 1234-146-2345-156-14-134-25 begmidword schriftenmal 156-2345-14-134-25 always omalgie 135-134-25-1245-346 prfword anomal 235-135-134-1-123 always anomal 235-135-134-25 always anomalien 235-135-134-25-24-14 always chromalaun 1456-1235-135-134-25-16-1345 always somali 234-135-134-25-24 prfword autosomal 16-2345-135-234-135-134-1-123 begmidword autosomal 16-2345-135-234-135-134-25 begmidword pharmalab 1234-125-356-134-1-123-1-12 # HOMONYM word dermal 145-12456-134-1-123 # HOMONYM always dermal 145-12456-134-25 word dermaleinst 145-12456-134-1246-23456 # HOMONYM word dermalen 145-12456-134-14 always dermalig 145-12456-134-45 prfword übermal 2-1256-134-1-123 always übermal 2-1256-134-25 begmidword fingermal 124-35-1245-12456-134-25 prfword thermal 2345-125-12456-134-1-123 always thermal 2345-125-12456-134-25 prfword untermal 2-256-134-1-123 always untermal 2-256-134-25 begmidword pflasermal 1234-124-123-1-23456-12456-134-25 word vermal 36-134-1-123 sufword vermal 36-134-25 midword vermal 1236-12456-134-25 always zermalm 1356-12456-134-25-134 prfword formal 124-26-134-1-123 always formal 124-26-134-25 prfword normal 1345-26-134-1-123 begmidword normal 1345-26-134-25 prfword anormal 235-26-134-1-123 begmidword anormal 235-26-134-25 prfword paranormal 1234-356-1-1345-26-134-1-123 begmidword paranormal 1234-356-1-1345-26-134-25 begword ausmal 34-134-25 midword ausmal 16-234-134-25 always turmalin 2345-136-1235-134-25-35 always small 234-134-1-12345 begmidword wachsmal 2456-56-234-134-25 begmidword lautmal 123-16-2345-134-25 begmidword rumalber 1235-136-134-25-12-12456 begmidword aufzumal 2-16-2-1356-134-25 begword rumzumal 1235-136-134-2-1356-134-25 begword herumzumal 125-12456-136-134-2-1356-134-25 begmidword anzumal 235-2-1356-134-25 begword auszumal 34-2-1356-134-25 midword auszumal 16-234-2-1356-134-25 always herumalber 125-12456-136-134-25-12-12456 begmidword serumallerg 234-12456-136-134-1-12345-12456-1245 begmidword schwarzmal 156-2456-356-1356-134-25 # MAN (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word man 134 # MANN MÄNN (4.4 Zweiformige Kürzungen) always mann 134-1345 always männ 5-134-1345 always manna 134-235-1345-1 always mannequin 134-235-1345-15-6-12345-136-35 always mannesmann 134-235-1345-123456-134-235-1345 always mannheim 134-235-1345-125-146-134 always mannit 134-235-1345-24-2345 always mannomann 134-235-1345-135-134-235-1345 always mannus 134-235-1345-136-234 always hamann 125-1-134-235-1345 always lindemann 123-35-145-15-134-235-1345 always bangemann 12-235-12346-134-235-1345 always thiemann 2345-125-346-134-235-1345 always riemann 1235-346-134-235-1345 always alemann 25-15-134-235-1345 always telemann 2345-13456-15-134-235-1345 always dörlemann 145-246-1235-123-15-134-235-1345 always thienemann 2345-125-346-1345-15-134-235-1345 always heinemann 125-1246-15-134-235-1345 always hannemann 125-235-1345-15-134-235-1345 always spannemann 234-1234-235-1345-15-134-235-1345 always stresemann 23456-1235-123456-15-134-235-1345 always hoffmann 125-135-124-124-134-235-1345 always hofmannsthal 125-135-124-134-235-1345-234-2345-125-1-123 always bachmann 12-56-134-235-1345 always eichmann 146-1456-134-235-1345 always fleischmann 124-123-146-156-134-235-1345 always lehmann 123-2356-134-235-1345 always lohmann 123-135-125-134-235-1345 always luhmann 123-136-125-134-235-1345 always beckmann 23-46-134-235-1345 always bruckmann 12-1235-136-46-134-235-1345 always henkelmann 125-14-13-13456-134-235-1345 always brinkmann 12-1235-35-13-134-235-1345 always volkmann 1236-135-123-13-134-235-1345 always thälmann 2345-125-345-123-134-235-1345 always engelmann 14-1245-13456-134-235-1345 always fielmann 124-346-123-134-235-1345 always nickelmann 1345-24-46-13456-134-235-1345 always mümmelmann 134-1256-1346-13456-134-235-1345 always bühlmann 12-1256-125-123-134-235-1345 always ammann 1-134-134-1345 always dobermann 145-135-12-12456-134-235-1345 always hermann 125-12456-134-235-1345 always heiermann 125-146-12456-134-235-1345 # HOMONYM always ackermann 1-46-12456-134-235-1345 always eckermann 15-46-12456-134-235-1345 always neckermann 1345-15-46-12456-134-235-1345 always ballermann 12-1-12345-12456-134-235-1345 always mustermann 134-136-23456-12456-134-235-1345 always scheuermann 156-126-12456-134-235-1345 always drewermann 145-1235-15-2456-12456-134-235-1345 always normann 1345-26-134-235-1345 always schürmann 156-1256-1235-134-235-1345 always bertelsmann 12-12456-2345-13456-234-134-235-1345 always hartmann 125-356-2345-134-235-1345 always mettmann 134-15-2345-2345-134-235-1345 always naumann 1345-16-134-235-1345 always neumann 1345-126-134-235-1345 always schumann 156-136-134-235-1345 always schwarzmann 156-2456-356-1356-134-235-1345 # MASCHIN (4.4 Zweiformige Kürzungen) always maschin 134-156 always parmaschinken 1234-356-134-1-156-35-13-14 # MATERIAL (4.4 Zweiformige Kürzungen) always material 134-123 # MATERIELL (4.4 Zweiformige Kürzungen) always materiell 134-12345 # MEHR (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word mehr 2356 always mehr-\s 2-2356-36-0 always mehr 2-2356 # MIR (4.4 Zweiformige Kürzungen) always mir 134-1235 always mir's 134-1235-6-234 always mira 134-24-1235-1 always miranda 134-24-1235-235-145-1 sufword mirek 134-24-1235-15-13 always miriam 134-24-1235-24-1-134 always mirjam 134-24-1235-245-1-134 sufword mirka 134-24-1235-13-1 sufword mirko 134-24-1235-13-135 sufword miro 134-24-1235-135 prfword mirror 134-24-1235-1235-135-1235 begmidword mirror 134-24-1235-1235-26 always mirza 134-24-1235-1356-1 always pamir 1234-1-134-24-1235 always ramirez 1235-1-134-24-1235-15-1356 always samir 234-1-134-24-1235 prfword admiral 1-145-134-24-1235-1-123 begmidword admiral 1-145-134-24-1235-25 always admiräl 1-145-134-24-1235-345-123 always emir 12356-24-1235 always schmirgel 156-134-24-1235-1245-13456 begmidword schmirg 156-134-24-1235-1245 always kaschmir 13-1-156-134-24-1235 always vladimir 1236-123-1-145-24-134-24-1235 always wladimir 2456-123-1-145-24-134-24-1235 always kasimir 13-1-234-24-134-24-1235 always krimireih 13-1235-24-134-24-1235-146-125 always gummir 1245-136-1346-24-1235 always jaromir 245-356-135-134-24-1235 always dobromir 145-135-12-1235-135-134-24-1235 always dormir 145-26-134-24-1235 always smirno 234-134-24-1235-1345-135 always herumirr 125-12456-136-134-24-1235-1235 always taymir 2345-1-6-13456-134-24-1235 always izmir 24-1356-134-24-1235 # MIT (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word mit 2345 always mit-\s 2-2345-36-0 always mit 2-2345 word mitch 134-24-2345-1456 sufword mitchum 134-24-2345-1456-136-134 sufword mitchell 134-24-2345-1456-15-12345 begmidword mithr 134-24-2345-125-1235 always mitil 134-24-2345-24-123 always mitochond 134-24-2345-135-1456-135-1345-145 always mitos 134-24-2345-135-234 always mitra 134-24-2345-1235-1 always mitraill 134-24-2345-1235-1-24-12345 always mitrauch 2-2345-1235-16-1456 begword mitrida 134-24-2345-1235-24-145-1 always mitropa 134-24-2345-1235-135-1234-1 always mitsubishi 134-24-2345-234-136-12-24-234-125-24 always mitt 134-24-2345-2345 always mittag 134-24-2345-2345-1-1245 prfword mittage 134-24-2345-2345-1-12346 always mittanz 2-2345-2345-235-1356 always mittänz 2-2345-2345-345-1345-1356 always mittäter 2-2345-2345-345-2345-12456 prfword mitte 134-24-2345-236 always mitteil 2-2345-2345-146-123 always mitten 134-24-2345-2345-14 always mitter 134-24-2345-2345-12456 always mittet 134-24-2345-236-2345 always mittler 134-24-2345-2345-123-12456 always mittrag 2-2345-2345-1245 always mittrauer 2-2345-2345-1235-16-12456 always mittreu 2-2345-2345-1235-126 always mittrink 2-2345-2345-1235-35-13 always mittrug 2-2345-2345-1235-136-1245 always mittun 2-2345-2345-256 always mittäg 134-24-2345-2345-345-1245 word mitzi 134-24-2345-1356-24 word mitzis 134-24-2345-1356-24-234 begmidword amitos 1-134-24-2345-135-234 always amitotisch 1-134-24-2345-135-2345-24-156 always adamit 1-145-1-134-24-2345 always hamitisch 125-1-134-24-2345-24-156 always kalamit 13-25-1-134-24-2345 always kalamität 13-25-1-134-5-345 always salamitaktik 234-25-1-134-24-2345-1-13-2345-24-13 always salamitechnik 234-25-1-134-24-2345-13 always islamit 24-234-123-1-134-24-2345 always annamit 235-1345-1-134-24-2345 always dynamit 145-6-13456-1345-1-134-24-2345 always admittanz 1-145-134-24-2345-2345-235-1356 begmidword emitt 12356-24-2345-2345 always endemit 14-145-15-134-24-2345 always hindemith 125-35-145-15-134-24-2345-125 always remittend 1235-12356-24-2345-2345-14-145 always remittent 1235-12356-24-2345-2345-14-2345 always remittier 1235-12356-24-2345-2345-346-1235 always eremit 12456-12356-24-2345 sufword extremität 1346-2345-1235-12356-5-345 always extremität 15-6-1346-2345-1235-12356-5-345 endword semit 234-12356-24-2345 always semiten 234-12356-24-2345-14 always semitin 234-12356-24-2345-35 always semitisch 234-12356-24-2345-24-156 always semitismus 234-12356-24-2345-5-24 always semitist 234-12356-24-2345-24-23456 prfword philosemit 1234-125-24-123-135-234-12356-24-2345 begmidword philosemit 1234-125-24-123-135-234-12356-24-2345 always stalagmit 23456-25-1-1245-134-24-2345 always schmitt 156-134-24-2345-2345 prfword schmitte 156-134-24-2345-236 always schmittel 156-134-2345 always schmitz 156-134-24-2345-1356 always imitat 24-134-24-2345-1-2345 prfword imitate 24-134-24-2345-1-236 always imitation 24-134-24-2345-5-1345 always imitier 24-134-24-2345-346-1235 begmidword dimitr 145-24-134-24-2345-1235 always limit 123-24-134-24-2345 begmidword limit 123-24-134-24-2345 prfword limite 123-24-134-24-236 always limits 123-24-134-24-2345-234 always nimita 1345-24-134-24-2345-1 always primitiv 1234-1235-24-134-24-2345-24-1236 always legitimität 123-15-1245-24-2345-24-134-5-345 begmidword antimitoti 235-2345-24-134-24-2345-135-2345-24 always intimität 35-2345-24-134-5-345 always gummi 1245-136-1346-24 always gummier 1245-136-1346-346-1235 always sodomit 234-135-145-135-134-24-2345 always sodomitisch 234-135-145-135-134-24-2345-24-156 always sodomitisch 234-135-145-135-134-24-2345-24-156 always komitee 13-135-134-24-2345-15-15 always dolomit 145-135-123-135-134-24-2345 always bromit 12-1235-135-134-24-2345 always kompromittier 13-135-134-1234-1235-135-134-24-2345-2345-346-1235 always neurodermitis 1345-126-1235-135-145-12456-134-24-2345-24-234 sufword kermit 13-12456-134-24-2345 sufword permit 1234-12456-134-24-2345 prfword termite 2345-12456-134-24-236 always termiten 2345-12456-134-24-2345-14 always intermittier 35-2345-12456-134-24-2345-2345-346-1235 always dormitori 145-26-134-24-2345-26-24 always deformität 145-15-124-26-134-5-345 always uniformität 256-24-124-26-134-5-345 always konformität 13-135-1345-124-26-134-5-345 always abnormität 1-12-1345-26-134-5-345 sufword smith 234-134-24-2345-125 prfword smith 234-134-24-2345-125 prfword smiths 234-134-24-2345-125-234 sufword smitja 234-134-24-2345-245-1 always transmit 2345-1235-235-234-134-24-2345 always anonymität 235-135-1345-6-13456-134-5-345 always zmittag 1356-134-24-2345-2345-1-1245 always zmitzt 1356-134-24-2345-1356-2345 # MITTEL (4.4 Zweiformige Kürzungen) always mittel 134-2345 # MM (4.1 Lautgruppenkürzungen) midendword mm 1346 word mmh 134-134-125 word mmm 134-134-134 always mmmh 134-134-134-125 always mmmmh 134-134-134-134-125 before m always team 2345-15-1-134 always schrämmaschin 156-1235-345-134-134-156 always tandem 2345-235-145-12356 sufword problem 12345-12-123-12356 midendword problem 1234-1235-135-12-123-12356 always einemmal 1246-12356-134 before m always atem 1-2345-12356 always system 234-6-13456-23456-12356 before m always hm 125-134 word hmm 125-134-134 always hmmm 125-134-134-134 always hmmmm 125-134-134-134-134 before m midword ehm 2356-134 before m begmidword intim 35-2345-24-134 always immaterial 24-134-134-123 always immateriell 24-134-134-12345 before m begmidword heim 125-146-134 before m begmidword leim 123-146-134 before m begmidword lm 123-134 before m begmidword alm 25-134 before m begmidword elm 13456-134 always diplom 145-24-1234-123-135-134 always genommut 1245-14-135-134-134-136-2345 before m begmidword strom 23456-1235-135-134 before m begmidword atom 1-2345-135-134 before m begmidword rm 1235-134 before m begmidword arm 356-134 before m begmidword orm 26-134 before m begmidword aum 16-134 before m begmidword äum 34-134 before m begmidword ium 24-136-134 begmidword ummagn 136-134-134-1-1245-1345 always ummantel 136-134-134-235-2345-13456 always ummauer 136-134-134-16-12456 always ummeld 136-134-134-13456-145 always ummobil 136-134-134-135-12-24-123 begmidword ummöb 136-134-134-246-12 always ummodel 136-134-134-135-145-13456 always ummodell 136-134-134-135-145-15-12345 begmidword ummodl 136-134-134-135-145-123 always ummont 136-134-134-135-1345-2345 always ummünz 136-134-134-1256-1345-1356 before m begword rum 1235-136-134 prfword rumm 1235-136-1346 always rummel 1235-136-1346-13456 always rumml 1235-136-1346-123 prfword rumms 1235-136-1346-234 always rummy 1235-136-1346-6-13456 always krumm 13-1235-136-1346 always krummesser 13-1235-136-134-134-15-2346-12456 before m always herum 125-12456-136-134 begmidword herummal 125-12456-136-134-134-25 before m always konsum 13-135-1345-234-136-134 always vakuum 1236-1-13-136-136-134 always enzym 14-1356-6-13456-134 # MÖCHT (4.3.5 Einformige Kürzungen, nur mit Erweiterung) word möcht 134-246-1456-2345 always möcht's 134-246-1456-2345-6-234 always möcht 1456 # MÖG (4.3.6 Kommakürzungen) always mög 2-246 # MÖGLICH (4.4 Zweiformige Kürzungen) always möglich 134-456 # MUSIK (4.4 Zweiformige Kürzungen) always musik 134-13 always musikalien 134-13-25-24-14 # MUSS (4.4 Zweiformige Kürzungen) always muss 134-2346 # Alte Rechtschreibung always muß 134-2346 # Daher auch nötig: word muße 134-136-2346-15 always musselin 134-136-2346-13456-35 always mussolini 134-136-2346-135-123-35-24 always rhythmus 1235-125-6-13456-2345-125-134-136-234 always orgasmus 26-1245-1-234-134-136-234 always rasmussen 1235-1-234-134-136-2346-14 always humusschicht 125-136-134-136-234-156-3456-2345 # MÜSS (4.3.6 Kommakürzungen) always müss 2-134 # Alte Rechtschreibung always müß 2-134 always müßig 134-1256-2346-45 # NACHDEM (4.4 Zweiformige Kürzungen) always nachdem 1345-145 # NÄCHST (4.4 Zweiformige Kürzungen) always nächst 1345-23456 # NAHM (4.4 Zweiformige Kürzungen) always nahm 1345-134 always nähm 5-1345-134 always nähmaschin 1345-345-125-134-156 always nahme 1345-134-15 always nahmen 1345-134-14 # Ausnahmen bei nahmen? # NATUR (4.4 Zweiformige Kürzungen) always natur 1345-2345 begmidword natural 1345-2345-25 always signatur 234-45-1345-1-2345-136-1235 # NATÜRLICH (4.4 Zweiformige Kürzungen) always natürlich 1345-456 # NEBEN (4.4 Zweiformige Kürzungen) always neben 1345-12 always medianeben 134-15-145-24-235-15-12-14 always beckeneben 23-46-14-15-12-14 always bedieneben 23-145-346-1345-15-12-14 always dateneben 145-1-2345-14-15-12-14 always etageneben 15-2345-1-1245-14-15-12-14 sufword experteneben 1346-1234-12456-2345-14-15-12-14 midendword experteneben 15-6-1346-1234-12456-2345-14-15-12-14 always kosteneben 13-135-23456-14-15-12-14 always koordinateneben 13-135-26-145-35-1-2345-14-15-12-14 always küsteneben 13-1256-23456-14-15-12-14 always maschineneben 134-156-14-15-12-14 always platineneben 1234-123-1-2345-35-14-15-12-14 always zeicheneben 1356-146-1456-14-15-12-14 always rheineben 1235-125-1246-15-12-14 always brenneben 12-1235-14-1345-15-12-14 always uneben 256-15-12-14 # NEHM (4.4 Zweiformige Kürzungen) always nehm 1345-125 # NICHT (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word nicht 1345 always nicht-\s 2-1345-36-0 always nicht 2-1345 word nichte 1345-3456-236 word nichten 1345-3456-2345-14 endword ingsnichte 35-1245-234-1345-3456-236 endword ingsnichten 35-1245-234-1345-3456-2345-14 word großnichte 1245-2346-1345-3456-236 word großnichten 1245-2346-1345-3456-2345-14 # NICHTIG (4.4 Zweiformige Kürzungen) always nichtig 1345-45 # NICHTS (4.4 Zweiformige Kürzungen) always nichts 1345-234 always nichtschrumpf 2-1345-156-1235-136-134-1234-124 always nichtschwimm 2-1345-156-2456-24-1346 always nichtsein 2-1345-234-1246 always nichtselb 2-1345-234-13456-12 always nichtselbstständig 2-1345-234-23456-5-23456-45 always nichtsehen 2-1345-234-2356-14 always nichtsequentiell 2-1345-234-15-6-12345-136-14-2345-24-15-12345 always nichtsequenziell 2-1345-234-15-6-12345-136-14-1356-24-15-12345 always nichtsess 2-1345-234-15-2346 always nichtspezialisier 2-1345-234-1234-15-1356-24-25-24-234-346-1235 always nichtsportler 2-1345-234-1234-26-2345-123-12456 always nichtsprach 2-1345-234-1234 always nichtstaat 2-1345-23456-2345 # -NIS 4.2.1 a) Nachsilbenkürzungen midendword nis 1346 midendword nisation 1345-24-234-5-1345 always nisch 1345-24-156 begmidword minischlang 134-35-24-156-123-235-1245 prfword minischlange 134-35-24-156-123-235-12346 midendword nisier 1345-24-234-346-1235 midendword nismen 1345-24-234-134-14 always nist 1345-24-23456 always ergebnis 12456-12346-12-1346 midendword ängnis 345-1345-1245-1346 midendword ächtnis 345-1456-2345-1346 always kenntnis 13-14-1345-2345-1346 midword nistheor 1346-2345-125-15-26 always nistisch 1345-5-156 always inistisch 35-5-156 always anis 235-24-234 begmidword vaniss 1236-235-24-2346 begmidword pianissi 1234-24-235-24-2346-24 always änis 345-1345-24-234 always anisch 235-24-156 always änisch 345-1345-24-156 midendword anisier 235-24-234-346-1235 midendword anismen 235-24-234-134-14 midendword anismus 235-5-24 always anist 235-24-23456 begmidword organisat 26-1245-235-24-234-1-2345 always organisation 26-1245-235-24-234-5-1345 begmidword organisationsauf 26-1245-235-24-234-5-1345-234-2-16 always organisier 26-1245-235-24-234-346-1235 always mechanismus 134-15-1456-235-5-24 midendword enisch 14-24-156 midendword enismus 14-5-24 midword enisol 14-24-234-135-123 word benis 12-14-24-234 always denise 145-14-24-234-15 always denises 145-14-24-234-123456 midendword genisier 1245-14-24-234-346-1235 always hygienisch 125-6-13456-1245-24-14-24-156 always hygienisier 125-6-13456-1245-24-14-24-234-346-1235 always italienisch 24-2345-25-24-14-24-156 always hellenisier 125-15-12345-14-24-234-346-1235 always menisk 134-14-24-234-13 always penis 1234-14-24-234 endword enisch 14-24-156 endword enische 14-24-156-15 endword enischem 14-24-156-12356 endword enischen 14-24-156-14 endword enischer 14-24-156-12456 endword enisches 14-24-156-123456 always penisse 1234-14-24-2346-15 always penissen 1234-14-24-2346-14 always penisses 1234-14-24-2346-123456 begmidword serenissim 234-12456-14-24-2346-24-134 midendword inisch 35-24-156 midendword inisier 35-24-234-346-1235 midendword inismen 35-24-234-134-14 midendword inismus 35-5-24 midendword inist 35-24-23456 always puccinis 1234-136-6-14-6-14-35-24-234 always einisch 1246-24-156 always lateinisch 123-1-2345-1246-24-156 always steinisch 23456-1246-24-156 always finis 124-35-24-234 always bikinis 12-24-13-35-24-234 always fellinis 124-15-12345-35-24-234 always mussolinis 134-136-2346-135-123-35-24-234 always minist 134-35-24-23456 always reminiszenz 1235-12356-35-24-234-1356-14-1356 always paganinis 1234-1-1245-235-35-24-234 always abessinisch 1-23-2346-35-24-156 always rossinis 1235-135-2346-35-24-234 always martinis 134-356-2345-35-24-234 always lemniska 123-12356-1345-24-234-13-1 always annis 235-1345-24-234 always annisch 235-1345-24-156 always alemannisch 25-15-134-235-1345-24-156 always normannisch 1345-26-134-235-1345-24-156 always dennis 145-14-1345-24-234 always tennis 2345-14-1345-24-234 always ronnis 1235-135-1345-1345-24-234 word draconis 145-1235-1-6-14-135-1345-24-234 always berlusconis 12-12456-123-136-234-6-14-135-1345-24-234 always onismus 135-1345-5-24 always adonis 1-145-135-1345-24-234 always adonisch 1-145-135-1345-24-156 always mahagoni 134-1-125-1-1245-135-1345-24 always diakoniss 145-24-1-13-135-1345-24-2346 word monis 134-135-1345-24-234 always simonis 234-24-134-135-1345-24-234 prfword tonis 2345-135-1345-24-234 always tönisvorst 2345-246-1345-24-234-1236-26-23456 always garnison 1245-356-1345-24-234-135-1345 always vernissa 1236-12456-1345-24-2346-1 always modernismus 134-135-145-12456-1345-5-24 always firnis 124-24-1235-1345-24-234 always firnisse 124-24-1235-1345-24-2346-15 always firnissen 124-24-1235-1345-24-2346-14 always horniss 125-26-1345-24-2346 always unis 256-24-234 midendword unisch 256-24-156 midendword unismus 256-5-24 midendword unist 256-24-23456 midendword unistisch 256-5-156 always junis 245-256-24-234 always immunisier 24-1346-256-24-234-346-1235 always punisch 1234-256-24-156 always zynismus 1356-6-13456-1345-5-24 # NOCH (4.4 Zweiformige Kürzungen) always noch 1345-1456 always adrenochrom 1-145-1235-14-135-1456-1235-135-134 always knoch 13-1345-135-1456 always monochemo 134-135-1345-135-1456-12356-135 always monochrom 134-135-1345-135-1456-1235-135-134 always hornochs 125-26-1345-135-1456-234 # NOMMEN (4.4 Zweiformige Kürzungen) always nommen 1345-1346 # NOTWENDIG (4.4 Zweiformige Kürzungen) always notwendig 1345-2456 # NUR (4.4 Zweiformige Kürzungen) always nur 1345-1235 sufword nurejew 1345-136-1235-15-245-15-2456 sufword nurgon 1345-136-1235-1245-135-1345 midendword nurheb 1345-136-1235-125-15-12 midendword nurkund 1345-136-1235-13-256-145 midendword nurlaub 1345-136-1235-123-16-12 midendword nursach 1345-136-1235-234-56 midendword nursäch 1345-1235-234-345-1456 always nurse 1345-136-1235-234-15 prfword nurse 1345-136-1235-234-123456 midendword nursprung 1345-136-1235-234-1234-1235-256-1245 midendword nursprüng 1345-136-1235-234-1234-1235-1256-1345-1245 midendword nursäch 1345-136-1235-234-345-1456 midendword nurteil 1345-136-1235-2345-146-123 sufword nuruddin 1345-136-1235-136-145-145-35 always anura 235-136-1235-1 always anuren 235-136-1235-14 always anurie 235-136-1235-346 always anurien 235-136-1235-24-14 begmidword kanuregat 13-235-136-1235-15-1245-1-2345 begmidword kanurenn 13-235-136-1235-14-1345 midendword enurheb 14-136-1235-125-15-12 midendword enurkund 14-136-1235-13-256-145 midendword enurlaub 14-136-1235-123-16-12 midendword enursach 14-136-1235-234-56 midendword enursprung 14-136-1235-234-1234-1235-256-1245 midendword enursprüng 14-136-1235-234-1234-1235-1256-1345-1245 midendword enursäch 14-136-1235-234-345-1456 midendword enurteil 14-136-1235-2345-146-123 begmidword totenurn 2345-135-2345-14-136-1235-1345 always schnur 156-1345-136-1235 midendword inurie 35-136-1235-346 midendword inurien 35-136-1235-24-14 always knurr 13-1345-136-1235-1235 always baikonur 12-1-24-13-135-1345-136-1235 midendword tonurie 2345-135-1345-136-1235-346 midendword tonurien 2345-135-1345-136-1235-24-14 # NUTZ NÜTZ (4.4 Zweiformige Kürzungen) always nutz 1345-1356 always nütz 5-1345-1356 midendword anutz 1-1345-1356 midendword anütz 1-5-1345-1356 midendword enutz 15-1345-1356 midendword enütz 15-5-1345-1356 always benutz 23-1345-1356 always benütz 23-5-1345-1356 always genutz 12346-1345-1356 always genütz 12346-5-1345-1356 midendword inutz 24-1345-1356 midendword inütz 24-5-1345-1356 always einutz 146-1345-1356 always einütz 146-5-1345-1356 midendword unutz 136-1345-1356 midendword unütz 136-5-1345-1356 # ODER (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word oder 135 # ÖFFENTLICH (4.4 Zweiformige Kürzungen) always öffentlich 246-456 # OHNE (4.4 Zweiformige Kürzungen) always ohne 135-15 always bohn 12-135-125-1345 always hohn 125-135-125-1345 always john 245-135-125-1345 always lohn 123-135-125-1345 always mohn 134-135-125-1345 always rohn 1235-135-125-1345 always frohnatur 124-1235-135-125-1345-2345 always sohn 234-135-125-1345 always wohn 2456-135-125-1345 # OR (4.1 Lautgruppenkürzungen) begmidword or 26 endword or-\s 26-36-0 endword or-,\s 26-36-2-0 always kakao 13-1-13-1-135 always disco 145-24-234-6-14-135 always discount 145-24-234-6-14-135-136-1345-2345 always kommando 13-1346-235-145-135 always pseudo 1234-234-126-145-135 before r begmidword judo 245-136-145-135 begmidword deoroll 145-15-135-1235-135-12345 always video 1236-24-145-15-135 always rodeo 1235-135-145-15-135 always georelief 12346-135-1235-13456-24-15-124 prfword neoreal 1345-15-135-1235-15-1-123 begmidword neoreal 1345-15-135-1235-15-25 begmidword neorenaiss 1345-15-135-1235-14-1-24-2346 always stereo 23456-12456-15-135 always indigo 35-145-45-135 always kongo 13-135-1345-1245-135 always jericho 245-12456-3456-135 always bio 12-24-135 always radio 1235-1-145-24-135 always inforadio 35-124-135-1235-1-145-24-135 always audio 16-145-24-135 always studio 23456-136-145-24-135 always risiko 1235-24-234-24-13-135 always schoko 156-135-13-135 always disko 145-24-234-13-135 always hallo 125-1-12345-135 begmidword beloru 12-13456-135-1235-136 begmidword kloroll 13-123-135-1235-135-12345 always gallo 1245-1-12345-135 always solo 234-135-123-135 always chemo 1456-12356-135 always eskimo 123456-13-24-134-135 always thermo 2345-125-12456-134-135 always kino 13-35-135 always mono 134-135-1345-135 always porno 1234-26-1345-135 always oor 135-135-1235 begmidword koor 13-135-26 begmidword nanoor 1345-235-135-26 begword poritz 1234-135-1235-24-2345-1356 begmidword poros 1234-135-1235-135-234 begmidword porosität 1234-26-135-234-5-345 midword oporos 135-1234-26-135-234 always sapporo 234-1-1234-1234-26-135 always tempo 2345-12356-1234-135 always tempora 2345-12356-1234-26-1 prfword temporal 2345-12356-1234-26-1-123 begmidword temporal 2345-12356-1234-26-25 always temporär 2345-12356-1234-26-345-1235 always temporier 2345-12356-1234-26-346-1235 always rororo 1235-135-1235-135-1235-135 always libero 123-24-12-12456-135 always makro 134-1-13-1235-135 always mikro 134-24-13-1235-135 always repro 1235-15-1234-1235-135 always büro 12-1256-1235-135 always neuro 1345-126-1235-135 always veto 1236-15-2345-135 always foto 124-135-2345-135 always photo 1234-125-135-2345-135 always puerto 1234-136-12456-2345-135 always netto 1345-15-2345-2345-135 always brutto 12-1235-136-2345-2345-135 midword orhythm 135-1235-125-6-13456-2345-125-134 always auto 16-2345-135 prfword autor 16-2345-135-1235 before konsonant begmidword autor 16-2345-26 always autoren 16-2345-26-14 always autorennbahn 16-2345-135-1235-14-1345-12-1-125-1345 always autorennen 16-2345-135-1235-14-1345-14 always autorennfahr 16-2345-135-1235-14-1345-2-1235 always autorin 16-2345-26-35 always autorisation 16-2345-26-24-234-5-1345 always autorisier 16-2345-26-24-234-346-1235 always autoritär 16-2345-26-24-2345-345-1235 always autorität 16-2345-26-5-345 always autoritativ 16-2345-26-24-2345-5-1236 always autors 16-2345-26-234 always autorschaft 16-2345-26-156 always rätorom 1235-345-2345-135-1235-135-134 always bravo 12-1235-1-1236-135 # PARAGRAPH (4.4 Zweiformige Kürzungen) always paragraph 1234-1245 # PERSON (4.4 Zweiformige Kürzungen) always person 1234-1345 always persön 5-1234-1345 prfword personalie 1234-1345-25-24-15 always personalien 1234-1345-25-24-14 # PHILOSOPH (4.4 Zweiformige Kürzungen) always philosoph 1234-125 # PLATZ PLÄTZ (4.4 Zweiformige Kürzungen) always platz 1234-1356 always plätz 5-1234-1356 # PLÖTZLICH (4.4 Zweiformige Kürzungen) always plötzlich 1234-456 # POLITIK (4.4 Zweiformige Kürzungen) always politik 1234-13 # POLITISCH (4.4 Zweiformige Kürzungen) always politisch 1234-156 # PRO- (4.2.1 Vorsilbenkürzungen) begword pro 12345 sufword prokofjew 1234-1235-135-13-135-124-245-15-2456 always prometh 1234-1235-135-134-15-2345-125 sufword proust 1234-1235-135-136-23456 sufword protasius 1234-1235-135-2345-1-234-24-136-234 begmidword provenc 1234-1235-135-1236-14-6-14 begmidword provenz 1234-1235-135-1236-14-1356 # PUNKT PÜNKT (4.4 Zweiformige Kürzungen) always punkt 1234-2345 always pünkt 5-1234-2345 # Q (4.1 Lautgruppenkürzungen) word q 6-12345 always q 6-12345 # Grossgeschriebene Wortanfänge erhalten sonst keinen Pt.6! context ["Q"]$u @6-12345 # RECHT (4.4 Zweiformige Kürzungen) always recht 1235-2345 always rechts 1235-2345-234 always rechtschaffen 1235-2345-156-1-124-124-14 always rechtsetz 1235-2345-2-15 always rechtsprech 1235-2345-2-2346 begmidword rechtsteh 1235-2345-23456-2356 always rechtstell 1235-2345-2-13456 always rechtstutz 1235-2345-23456-136-2345-1356 always europarecht 126-1235-135-1234-1-1235-2345 always brecht 12-1235-15-1456-2345 prfword brechte 12-1235-15-1456-236 always schreibrecht 156-12-1235-2345 always halbrecht 125-25-12-1235-2345 # HOMNYM always erbrecht 12456-12-1235-2345 always zerbrecht 1356-12456-12-1235-15-1456-2345 always dordrecht 145-26-145-1235-15-1456-2345 midendword erecht 15-1235-2345 always berecht 23-1235-2345 always haberecht 2-125-15-1235-2345 always gerecht 12346-1235-2345 midendword ierecht 346-1235-2345 midendword terecht 236-1235-2345 always senkrecht 234-14-13-1235-2345 always vetorecht 1236-15-2345-135-1235-2345 always ruprecht 1235-136-1234-1235-15-1456-2345 always utrecht 136-2345-1235-15-1456-2345 # REGIER (4.4 Zweiformige Kürzungen) always regier 1235-1245 always regieraum 1235-15-1245-346-1235-16-134 always regieräum 1235-15-1245-346-1235-34-134 always segregier 234-15-1245-1235-15-1245-346-1235 always aggregier 1-1245-1245-1235-15-1245-346-1235 # REHABILIT (4.4 Zweiformige Kürzungen) always rehabilit 1235-12 # REPUBLIK (4.4 Zweiformige Kürzungen) always republik 1235-13 # RICHT (4.3.6 Kommakürzungen) always richt 2-3456 always bricht 12-1235-3456-2345 always abricht 1-12-2-3456 always schreibricht 156-12-2-3456 always halbricht 125-25-12-2-3456 always schubricht 156-136-12-2-3456 always crichton 6-14-1235-3456-2345-135-1345 always bericht 23-2-3456 always ericht 15-2-3456 always gericht 12346-2-3456 always kehricht 13-2356-1235-3456-2345 always röhricht 1235-246-125-1235-3456-2345 always töricht 2345-246-1235-3456-2345 prfword törichte 2345-246-1235-3456-236 always törichtest 2345-246-1235-3456-236-23456 always trichter 2345-1235-3456-2345-12456 prfword stricht 23456-1235-3456-2345 always maastricht 134-1-1-23456-1235-3456-2345 # RÜCK (4.4 Zweiformige Kürzungen) always rück 1235-46 always arück 1-1235-46 always brück 12-1235-1256-46 always abrück 1-12-1235-46 always osnabrück 135-234-1345-1-12-1235-1256-46 midendword erück 15-1235-46 always berück 23-1235-46 always gerück 12346-1235-46 always perück 1234-12456-1256-46 midendword terück 236-1235-46 begword frück 124-1235-1256-46 always krück 13-1235-1256-46 always druckrücken 145-46-1235-1256-46-14 always orück 135-1235-46 always herrück 125-12456-1235-46 always hunsrück 125-256-234-1235-1256-46 # SAG (4.4 Zweiformige Kürzungen) always sag 234-1245 always säg 5-234-1245 before l begmidword säge 5-234-1245-15 before m begmidword säge 5-234-1245-15 always sag's 234-1245-6-234 midendword sagent 234-1-1245-14-2345 always sägerest 5-234-1245-15-1235-15-23456 always sägerochen 5-234-1245-15-1235-135-1456-14 midword saggreg 234-1-1245-1245-1235-15-1245 always sägeunfall 5-234-1245-15-256-124-12345 begmidword sägeunfäll 5-234-1245-15-256-5-124-12345 always sagit 234-1-1245-24-2345 always sago 234-1-1245-135 always sagrada 234-1-1245-1235-1-145-1 always lasagn 123-1-234-1-1245-1345 midendword esagent 123456-1-1245-14-2345 always disagio 145-24-234-1-1245-24-135 always visag 1236-24-234-1-1245 prfword visage 1236-24-234-1-12346 always canossa 6-14-235-135-2346-1 always corsag 6-14-26-234-1-1245 prfword corsage 6-14-26-234-1-12346 always korsag 13-26-234-1-1245 prfword korsage 13-26-234-1-12346 always kanossa 13-235-135-2346-1 always assagai 1-2346-1-1245-1-24 always massage 134-1-2346-1-12346 always massagen 134-1-2346-1-1245-14 always passage 1234-1-2346-1-12346 always passagen 1234-1-2346-1-1245-14 always passagier 1234-1-2346-1-1245-346-1235 always messag 134-15-2346-1-1245 prfword message 134-15-2346-1-12346 always vernissag 1236-12456-1345-24-2346-1-1245 prfword vernissage 1236-12456-1345-24-2346-1-12346 midendword ausagier 16-234-1-1245-346-1235 # -SAM 4.2.1 a) Nachsilbenkürzungen midendword sam 2346 always samariter 234-1-134-356-24-2345-12456 always samarkand 234-1-134-356-13-235-145 always samba 234-1-134-12-1 always sambation 234-1-134-12-5-1345 always sambesi 234-1-134-12-123456-24 always sambia 234-1-134-12-24-1 always sambuc 234-1-134-12-136-6-14 always samisch 234-1-134-24-156 always samm 234-1-1346 midword sammach 2346-134-56 always samo 234-1-134-135 always sampl 234-1-134-1234-123 midword samplitud 234-1-134-1234-123-24-2345-136-145 always samson 234-1-134-234-135-1345 always samstag 234-1-134-234-2345-1-1245 prfword samstage 234-1-134-234-2345-1-12346 always samstäg 234-1-134-234-2345-345-1245 always samsung 234-1-134-234-256-1245 always samt 234-1-134-2345 sufword verlangsam 36-123-1245-2346 midword verlangsam 1236-12456-123-1245-2346 always samuel 234-1-134-136-13456 always samurai 234-1-134-136-1235-1-24 always betriebsam 23-2345-1235-346-12-2346 always rübsamen 1235-1256-12-234-1-134-14 always windsamen 2456-35-145-234-1-134-14 always fischmondsamen 124-24-156-134-135-1345-145-234-1-134-14 midendword esamt 123456-1-134-2345 always besam 23-234-1-134 always besamm 23-234-1-1346 always desambiguier 145-123456-1-134-12-45-136-346-1235 always gesamt 12346-234-1-134-2345 prfword gesamte 12346-234-1-134-236 begmidword heeresameis 125-15-15-1235-123456-1-134-146-234 sufword sesam 234-123456-1-134 always gemüsesamen 12346-134-1256-234-15-234-1-134-14 begmidword hanfsam 125-235-124-234-1-134 before m begmidword langsam 123-1245-2346 midendword ungsamt 136-234-1-134-2345 always lauchsamen 123-16-1456-234-1-134-14 always bisam 12-24-234-1-134 always kürbisamen 13-1256-1235-12-24-234-234-1-134-14 always chilisamen 1456-24-123-24-234-1-134-14 always balsam 12-25-234-1-134 before m begmidword salsa 234-25-234-1 always baumsamen 12-16-134-234-1-134-14 begword ansam 235-234-1-134 always ansamm 235-234-1-1346 always mensamahl 134-14-234-1-134-1-125-123 always blumensamen 12-123-136-134-14-234-1-134-14 always anemonensamen 235-12356-135-1345-14-234-1-134-14 always rasensamen 1235-1-234-14-234-1-134-14 always erbsensamen 12456-12-234-14-234-1-134-14 always finkensamen 124-35-13-14-234-1-134-14 always pflanzensamen 1234-124-123-235-1356-14-234-1-134-14 always pillensamen 1234-24-12345-14-234-1-134-14 always erbsensamen 12456-12-234-14-234-1-134-14 always tomatensamen 2345-135-134-1-2345-14-234-1-134-14 always blütensamen 12-123-1256-2345-14-234-1-134-14 always löwenzahnsamen 123-246-2456-14-1356-1-125-1345-234-1-134-14 always mohnsamen 134-135-125-1345-234-1-134-14 always leinsamen 123-1246-234-1-134-14 always mosambik 134-135-234-1-134-12-24-13 always posamentier 1234-135-234-1-134-14-2345-346-1235 always rosamund 1235-135-234-1-134-256-145 sufword osama 135-234-1-134-1 always brosam 12-1235-135-234-1-134 always nitrosamin 1345-24-2345-1235-135-234-1-134-35 always bärlappsamen 12-345-1235-123-1-1234-1234-234-1-134-14 sufword verkehrsam 36-13-2356-1235-234-1-134 midendword verkehrsam 1236-12456-13-2356-1235-234-1-134 always assam 1-2346-1-134 always grassamen 1245-1235-1-234-234-1-134-14 always flachssamen 124-123-56-234-234-1-134-14 always indossamen 35-145-135-2346-1-134-14 begmidword unratssamm 256-1235-1-2345-234-234-1-1346 always staatsamateur 23456-2345-234-1-134-1-2345-126-1235 midendword schaftsamt 156-234-1-134-2345 midendword sichtsamt 234-3456-2345-234-1-134-2345 always arbeitsam 356-12-2346 always arbeitsameis 356-12-234-1-134-146-234 always arbeitsamt 356-12-234-1-134-2345 begmidword bedecktsam 23-145-15-46-2345-234-1-134 begmidword nacktsam 1345-1-46-2345-234-1-134 sufword entsam 2346-234-1-134 always entsam 14-2345-234-1-134 midendword fahrtsamt 2-1235-2345-234-1-134-2345 always unkrautsamen 256-13-1235-16-2345-234-1-134-14 always usambara 136-234-1-134-12-356-1 # SATZ SÄTZ (4.4 Zweiformige Kürzungen) always satz 234-1356 always sätz 5-234-1356 always glasätzung 1245-123-1-234-345-2345-1356-136 # SCH (4.1 Lautgruppenkürzungen) word sch 6-156 always sch 156 midword schanc 234-1456-235-6-14 midword schao 234-1456-1-135 midendword scharakter 234-1456-13 midendword schef 234-1456-15-124 before f begmidword asche 1-156-15 before f begmidword wäsche 2456-345-156-15 before f begmidword fische 124-24-156-15 always scheffel 156-15-124-124-13456 always scheffl 156-15-124-124-123 always tuschefüll 2345-136-156-15-124-1256-12345 midendword schemie 234-1456-12356-346 midword schemik 234-1456-12356-134-24-13 always scherzando 234-1456-12456-1356-235-145-135 always scherzo 234-1456-12456-1356-135 midendword schirurg 234-1456-24-1235-136-1235-1245 always schlösschen 156-123-246-2346-1456-14 always schnäpschen 156-1345-345-1234-234-1456-14 always school 234-1456-135-135-123 midendword schromat 234-1456-1235-135-134-1-2345 midendword schromo 234-1456-1235-135-134-135 midendword schronik 234-1456-1235-135-1345-24-13 midword schrono 234-1456-1235-135-1345-135 midendword schüechli 234-1456-1256-15-1456-123-24 always maraschino 134-356-1-234-1456-35-135 begmidword eschatolo 123456-1456-1-2345-135-123-135 always radieschen 1235-1-145-346-234-1456-14 always lieschen 123-346-234-1456-14 always brieschen 12-1235-346-234-1456-14 always wieschen 2456-346-234-1456-14 endword folgschor 124-1245-234-1456-135-1235 midword folgschor 124-1245-234-1456-26 midword folgschör 124-1245-234-1456-246-1235 endword angschor 235-1245-234-1456-135-1235 midword angschor 235-1245-234-1456-26 midword angschör 235-1245-234-1456-246-1235 always lieblingschat 123-346-12-123-35-1245-234-1456-1-2345 midendword üchschen 1256-1456-234-1456-14 endword ungschor 136-234-1456-135-1235 midword ungschor 136-234-1456-26 midword ungschör 136-234-1456-246-1235 always ischia 24-234-1456-24-1 always ischämie 24-234-1456-345-134-346 always ischämien 24-234-1456-345-134-24-14 always maischip 134-1-24-234-1456-24-1234 always reischen 1235-146-234-1456-14 always mischief 134-24-234-1456-346-124 always prischen 1234-1235-24-234-1456-14 always hälschen 125-345-123-234-1456-14 prfword engelschor 14-1245-13456-234-1456-135-1235 always engelschor 14-1245-13456-234-1456-26 always engelschör 14-1245-13456-234-1456-246-1235 prfword teufelschor 2345-126-124-13456-234-1456-135-1235 always teufelschor 2345-126-124-13456-234-1456-26 always teufelschör 2345-126-124-13456-234-1456-246-1235 always hülschen 125-1256-123-234-1456-14 always gänschen 1245-345-1345-234-1456-14 always hänschen 125-345-1345-234-1456-14 endword enschor 14-234-1456-135-1235 midword enschor 14-234-1456-26 midword enschör 14-234-1456-246-1235 always möpschen 134-246-1234-234-1456-14 endword sschen 2346-1456-14 always bisschen 12-24-2346-1456-14 always fässchen 124-345-2346-1456-14 always gässchen 1245-345-2346-1456-14 always tässchen 2345-345-2346-1456-14 always klösschen 13-123-246-2346-1456-14 always flüsschen 124-123-1256-2346-1456-14 always küsschen 13-1256-2346-1456-14 always nüsschen 1345-1256-2346-1456-14 always heitscheck 125-234-1456-15-46 always kabäuschen 13-1-12-34-234-1456-14 always häuschen 125-34-234-1456-14 always läuschen 123-34-234-1456-14 always mäuschen 134-34-234-1456-14 always knäuschen 13-1345-34-234-1456-14 always päuschen 1234-34-234-1456-14 always bläschen 12-123-345-234-1456-14 always gläschen 1245-123-345-234-1456-14 always häschen 125-345-234-1456-14 always käschen 13-345-234-1456-14 always näschen 1345-345-234-1456-14 always väschen 1236-345-234-1456-14 always döschen 145-246-234-1456-14 always höschen 125-246-234-1456-14 always röschen 1235-246-234-1456-14 prfword fröschen 124-1235-246-156-14 always blüschen 12-123-1256-234-1456-14 # -SCHAFT 4.2.1 a) Nachsilbenkürzungen midendword schaft 156 midendword schafts 156-234 always gschaftl 1245-156-1-124-2345-123 always mahagonischaft 134-1-125-1-1245-135-1345-24-156-1-124-2345 always stiefelschaft 23456-346-124-13456-156-1-124-2345 always barschaft 12-356-156-1-124-2345 always nachbarschaft 1345-56-12-356-156 always speerschaft 234-1234-15-15-1235-156-1-124-2345 always herrschaft 1235-1235-156-1-124-2345 always herrschafts 1235-1235-156-1-124-2345-234 # SCHLAG SCHLÄG (4.4 Zweiformige Kürzungen) always schlag 156-1245 always schläg 5-156-1245 always flanschlager 124-123-235-156-123-1-1245-12456 # SCHLIEß (4.4 Zweiformige Kürzungen) syllable schließ 156-2346 # SCHON (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word schon 156 # SCHREIB (4.4 Zweiformige Kürzungen) syllable schreib 156-12 before m begmidword schreibe 156-12-15 before s begmidword schreibe 156-12-15 # SCHRIEB (4.3.6 Kommakürzungen) always schrieb 2-156 # SCHRIFT (4.4 Zweiformige Kürzungen) always schrift 156-2345 always schriftsteil 156-2345-234-2345-146-123 # SCHWIERIG (4.4 Zweiformige Kürzungen) always schwierig 156-45 # SEHR (4.4 Zweiformige Kürzungen) always sehr 234-1235 always sehrest 234-2356-1235-15-23456 always sehrind 234-2356-1235-35-145 always sehrohr 234-2356-1235-135-125-1235 always standesehr 2-23456-123456-2356-1235 begmidword fernseh 124-12456-1345-234-2356 midword dersehr 145-12456-234-2356-1235 midword iersehr 346-1235-234-2356-1235 always hausehr 125-16-234-2356-1235 # SEIN (4.3.3 Einformige Kürzungen, alleinstehend oder am Wortanfang) sufword sein 246 always seineufer 234-1246-15-136-124-12456 # SELBST (4.4 Zweiformige Kürzungen) always selbst 234-23456 # Alte Rechtschreibung always selbständig 234-13456-12-5-23456-45 # SETZ (4.3.6 Kommakürzungen) always setz 2-15 # SICH (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word sich 14 word sich's 14-6-234 # sind die apostrophierten 4.3 nötig?: auf's ist's etc. # SIE (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word sie 234 word sie's 234-6-234 # SIND (4.4 Zweiformige Kürzungen) always sind 234-145 always sindbad 234-35-145-12-1-145 midword sindefin 234-35-145-15-124-35 always sindelfin 234-35-145-13456-124-35 midendword sinder 234-35-145-12456 midendword sindern 234-35-145-12456-1345 midendword sinderin 234-35-145-12456-35 midendword sinderinnen 234-35-145-12456-35-1345-14 midendword sindex 234-35-145-15-6-1346 midendword sindik 234-35-145-24-13 midendword sindiz 234-35-145-24-1356 midword sindoss 234-35-145-135-2346 midword sindukt 234-35-145-136-13-2345 midendword sindustrie 234-35-145-136-23456-1235-346 midendword sindustrien 234-35-145-136-23456-1235-24-14 midword sindustri 234-35-145-136-23456-1235-24 # SITZ (4.3.6 Kommakürzungen) always sitz 2-24 always lausitz 123-16-234-24-2345-1356 # SO (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word so 1234 always sobald 2-1234-12-25-145 always sodann 2-1234-145-235-1345 always sodass 2-1234-145-1-2346 always soeben 2-1234-15-12-14 always sofern 2-1234-124-12456-1345 always sofort 2-1234-124-26-2345 prfword sogar 2-1234-1245-1-1235 always sogenannt 2-1234-12346-1345-235-1345-2345 prfword sogenannte 2-1234-12346-1345-235-1345-236 always sogleich 2-1234-1245-1456 always solang 2-1234-123-1245 always somit 2-1234-2-2345 always sonach 2-1234-1345-56 always sooft 2-1234-135-124-2345 always sosehr 2-1234-234-1235 always sosein 2-1234-234-1246 always soso 2-1234-2-1234 sufword soundso 2-1234-2-136-2-1234 always soviel 2-1234-1236-123 always soweit 2-1234-2456-2345 always sowenig 2-1234-2456-45 always sowie 2-1234-2-126 always sowieso 2-1234-2-126-2-1234 always sowohl 2-1234-2456-123 always sozusagen 2-1234-2-1356-234-1245-14 always allsogleich 1-12345-2-1234-1245-1456 always genauso 12346-1345-16-2-1234 always geradeso 12346-1235-1-145-15-2-1234 always wieso 2-126-2-1234 sufword umso 136-134-2-1234 always umsonst 136-134-234-135-1345-23456 always umsorg 136-134-234-26-1245 prfword umsorge 136-134-234-26-12346 always umsort 136-134-234-26-2345 # SOLCH (4.4 Zweiformige Kürzungen) always solch 234-1456 # SOLL (4.3.6 Kommakürzungen) always soll 2-234 # SONDERN (4.4 Zweiformige Kürzungen) always sondern 234-1345 begmidword sondernach 234-135-1345-145-12456-1345-56 always sondernummer 234-135-1345-145-12456-1345-136-1346-12456 always sondernutz 234-135-1345-145-12456-1345-1356 # SOZIAL (4.4 Zweiformige Kürzungen) always sozial 234-123 # SPIEL (4.3.6 Kommakürzungen) syllable spiel 2-346 # SPRACH SPRÄCH (4.4 Zweiformige Kürzungen) always sprach 234-1234 always spräch 5-234-1234 always spracheck 234-1234-1235-56-15-46 # SPRECH (4.3.6 Kommakürzungen) always sprech 2-2346 # ß (4.1 Lautgruppenkürzungen) always ß 2346 # SS (4.1 Lautgruppenkürzungen) midendword ss 2346 midword ssch 234-156 midendword sschnee 234-156-1345-15-15 midword sssch 2346-156 midendword ssschnee 2346-156-1345-15-15 midendword ssschnur 2346-156-1345-136-1235 midendword ssschrift 2346-156-2345 syllable saison 234-1-24-234-135-1345 syllable saitig 234-1-24-2345-45 syllable sakramen 234-1-13-1235-1-134-14 syllable sammellager 234-1-1346-13456-123-1-1245-12456 syllable sammlung 234-1-1346-123-136 syllable sammlungs 234-1-1346-123-136-234 syllable sanierung 234-235-346-1235-136 syllable sanktion 234-235-13-2345-245 syllable satellit 234-1-236-12345-24-2345 syllable sattel 234-1-2345-2345-13456 syllable savann 234-1-1236-235-1345 always segment 234-15-1245-134-14-2345 prfword segmente 234-15-1245-134-14-236 syllable sehnsuch 234-2356-1345-234-136-1456 syllable sehnsüch 234-2356-1345-234-1256-1456 syllable seidenmat 234-146-145-14-134-1-2345 syllable sekretari 234-15-13-1235-15-2345-356-24 syllable sekretär 234-15-13-1235-15-2345-345-1235 syllable sektierer 234-15-13-2345-346-1235-12456 syllable semester 234-12356-15-23456-12456 syllable semestrig 234-12356-15-23456-1235-45 syllable sepsis 234-15-1234-234-24-234 syllable sequenz 234-15-6-12345-136-14-1356 begmidword sexual 234-15-6-1346-136-25 syllable sexuell 234-15-6-1346-136-15-12345 syllable situation 234-24-2345-136-5-1345 syllable skizz 234-13-24-1356-1356 syllable sklave 234-13-123-1-1236-15 syllable sklaven 234-13-123-1-1236-14 syllable sklaverei 234-13-123-1-1236-12456-146 syllable skorbut 234-13-26-12-136-2345 syllable skrupel 234-13-1235-136-1234-13456 syllable software 234-135-124-2345-2456-356-15 syllable sohl 234-135-125-123 syllable soldat 234-135-123-145-1-2345 syllable solidarität 234-135-123-24-145-356-5-345 always solist 234-135-123-24-23456 always solistisch 234-135-123-5-156 syllable souverän 234-135-136-1236-12456-345-1345 syllable soziolo 234-135-1356-24-135-123-135 syllable sparkass 234-1234-356-13-1-2346 syllable spektakel 234-1234-15-13-2345-1-13-13456 always spektr 234-1234-15-13-2345-1235 syllable spekul 234-1234-15-13-136-123 syllable spezialität 234-1234-15-1356-24-25-5-345 syllable spezifi 234-1234-15-1356-24-124-24 syllable spezifität 234-1234-15-1356-24-124-5-345 syllable sphär 234-1234-125-345-1235 syllable splitter 234-1234-123-24-2345-2345-12456 syllable spricht 234-1234-1235-3456-2345 syllable stadien 23456-1-145-24-14 syllable stadion 23456-1-145-24-135-1345 syllable stadium 23456-1-145-24-136-134 syllable staffel 23456-1-124-124-13456 syllable stahl 23456-1-125-123 syllable statist 23456-1-2345-24-23456 syllable statistisch 23456-1-2345-5-156 syllable stausee 23456-16-234-15-15 syllable stauseen 23456-16-234-15-14 syllable stauung 23456-16-136 syllable stipendi 23456-24-1234-14-145-24 syllable stornierung 23456-26-1345-346-1235-136 syllable strahl 23456-1235-1-125-123 syllable strahlemann 23456-1235-1-125-123-15-134-1345 syllable struktur 23456-1235-136-13-2345-136-1235 syllable strähn 23456-1235-345-125-1345 syllable student 23456-136-145-14-2345 syllable städte 23456-345-145-236 syllable städten 23456-345-145-2345-14 syllable städter 23456-345-145-2345-12456 syllable stämm 23456-345-1346 syllable stärk 23456-345-1235-13 syllable stöck 23456-246-46 syllable störend 23456-246-1235-14-145 syllable störer 23456-246-1235-12456 syllable störung 23456-246-1235-136 syllable störungs 23456-246-1235-136-234 syllable stöß 23456-246-2346 syllable stünd 23456-1256-1345-145 always subjekt 234-136-12-245-15-13-2345 prfword subjekte 234-136-12-245-15-13-236 syllable subvention 234-136-12-1236-14-2345-245 syllable sylvani 234-6-13456-123-1236-235-24 syllable symbol 234-6-13456-134-12-135-123 syllable symptom 234-6-13456-134-1234-2345-135-134 syllable syndrom 234-6-13456-1345-145-1235-135-134 syllable synkre 234-6-13456-1345-13-1235-15 syllable synod 234-6-13456-1345-135-145 syllable system 234-6-13456-23456-12356 syllable szenarien 234-1356-14-356-24-14 syllable säckel 234-345-46-13456 syllable transfer 2345-1235-235-234-124-12456 midendword ssaal 234-234-1-1-123 always flussaal 124-123-136-2346-1-1-123 midendword ssach 234-234-56 begmidword missach 134-24-2346-56 always sissach 234-24-2346-56 always massachusetts 134-1-2346-56-136-234-15-2345-2345-234 begmidword sprossachs 234-1234-1235-135-2346-56-234 midendword ssaft 234-234-1-124-2345 endword ssage 234-234-1245-15 midendword ssagen 234-234-1245-14 midendword ssalat 234-234-25-1-2345 endword ssalate 234-234-25-1-236 endword ssalbe 234-234-25-12-15 midendword ssalben 234-234-25-12-14 midendword ssaldo 234-234-25-145-135 midendword ssalon 234-234-25-135-1345 midendword ssalut 234-234-25-136-2345 endword ssalute 234-234-25-136-236 midendword ssamen 234-234-1-134-14 midendword ssatir 234-234-1-2345-24-1235 midendword ssatz 234-234-1356 midendword ssätz 234-5-234-1356 midendword ssaum 234-234-16-134 midendword sschlag 234-156-1245 midendword sschläg 234-5-156-1245 midendword sschnur 234-156-1345-136-1235 midendword sschul 234-156-136-123 midword sschül 234-156-1256-123 midendword sschrift 234-156-2345 midendword ssee 234-234-15-15 always chaussee 1456-16-2346-15-15 prfword chausseen 1456-16-2346-15-14 always odyssee 135-145-6-13456-2346-15-15 prfword odysseen 135-145-6-13456-2346-15-14 midendword sseel 234-234-15-15-123 midendword sseen 234-234-15-14 before e begmidword baisse 12-1-24-2346-15 midendword ssegel 234-234-15-1245-13456 midendword ssehen 234-234-2356-14 midendword sseher 234-234-2356-12456 endword ssehne 234-234-2356-1345-15 midendword ssehnen 234-234-2356-1345-14 midendword sseide 234-234-146-145-15 midendword ssein 234-234-1246 always passein 1234-1-2346-1246 always hussein 125-136-2346-15-35 always schlussein 156-123-136-2346-1246 endword sseite 234-234-146-236 midendword sseiten 234-234-146-2345-14 midendword sseitig 234-234-146-2345-45 midendword sseits 234-234-146-2345-234 midword ssektor 234-234-15-13-2345-26 endword ssektor 234-234-15-13-2345-135-1235 midendword sselig 234-234-13456-45 always fisselig 124-24-2346-13456-45 always dusselig 145-136-2346-13456-45 always fusselig 124-136-2346-13456-45 always schusselig 156-136-2346-13456-45 always pusselig 1234-136-2346-13456-45 midword sseminar 234-234-12356-35-356 endword sseminar 234-234-12356-35-1-1235 midendword ssenat 234-234-14-1-2345 midendword ssender 234-234-14-145-12456 always peterssen 1234-15-2345-12456-234-234-14 always fassender 124-1-2346-14-145-12456 always prassender 1234-1235-1-2346-14-145-12456 always hassender 125-1-2346-14-145-12456 always schassender 156-1-2346-14-145-12456 always nässender 1345-345-2346-14-145-12456 always passender 1234-1-2346-14-145-12456 always hissender 125-24-2346-14-145-12456 always pissender 1234-24-2346-14-145-12456 always küssender 13-1256-2346-14-145-12456 always flussender 124-123-136-2346-14-145-12456 always missender 134-24-2346-14-145-12456 midendword ssendung 234-234-14-145-136 midendword ssenken 234-234-14-13-14 midendword ssenkung 234-234-14-13-136 midword ssensor 234-234-14-234-26 endword ssensor 234-234-14-234-135-1235 midendword sserie 234-234-12456-24-15 midendword sserien 234-234-12456-24-14 midendword sserver 234-234-12456-1236-12456 begmidword wasserver 2456-1-2346-12456-1236-12456 always gewässer 12346-2456-345-2346-12456 midendword ssetz 234-2-15 endword sseuche 234-234-126-1456-15 midendword sseuche 234-234-126-1456-14 midendword ssheriff 234-234-125-12456-24-124-124 midendword sshow 234-234-125-135-2456 midendword ssibirisch 234-234-24-12-24-1235-24-156 midendword ssicher 234-234-3456-12456 midendword ssicht 234-234-3456-2345 midendword ssiedlung 234-234-346-145-123-136 midendword ssieg 234-234-346-1245 endword ssiege 234-234-346-12346 midendword ssiegen 234-234-346-1245-14 midendword ssiegel 234-234-346-1245-13456 midword ssignal 234-234-45-1345-25 endword ssignal 234-234-45-1345-1-123 midendword ssignatur 234-234-45-1345-1-2345-136-1235 midendword ssilbig 234-234-24-123-12-45 midendword ssilvani 234-234-24-123-1236-235-24 midendword ssinn 234-234-35-1345 always insass 35-234-1-2346 always schloss 156-123-135-2346 always russin 1235-136-2346-35 always äbtissin 345-12-2345-24-2346-35 midendword ssinus 234-234-35-136-234 endword ssitte 234-234-24-2345-236 midendword ssitten 234-234-24-2345-2345-14 midendword ssitz 234-2-24 midendword sskala 234-234-13-25-1 midendword sskalen 234-234-13-25-14 midendword sskat 234-234-13-1-2345 midendword sskilauf 234-234-13-24-123-16-124 midendword sskript 234-234-13-1235-24-1234-2345 endword sskripte 234-234-13-1235-24-1234-236 endword ssocke 234-234-135-46-15 midendword ssockel 234-234-135-46-13456 midendword ssocken 234-234-135-46-14 endword ssode 234-234-135-145-15 midendword ssoden 234-234-135-145-14 midendword ssohn 234-234-135-125-1345 after konsonant midendword sson 234-234-135-1345 midendword ssonder 234-234-135-1345-145-12456 midendword ssondern 234-234-1345 endword ssonne 234-234-135-1345-1345-15 midendword ssonnen 234-234-135-1345-1345-14 endword ssorge 234-234-26-12346 midendword ssorgen 234-234-26-1245-14 midendword ssozial 234-234-123 midendword sspalt 234-234-1234-25-2345 endword sspalte 234-234-1234-25-236 endword sspange 234-234-1234-235-12346 midendword sspangen 234-234-1234-235-1245-14 midendword sspannung 234-234-1234-235-1345-136 midendword ssparen 234-234-1234-356-14 endword ssparte 234-234-1234-356-236 midendword ssparten 234-234-1234-356-2345-14 midendword sspatel 234-234-1234-1-2345-13456 midendword sspazier 234-234-1234-1-1356-346-1235 midendword sspaß 234-234-1234-1-2346 midendword sspeck 234-234-1234-15-46 midendword sspediteur 234-234-1234-15-145-24-2345-126-1235 midendword sspedition 234-234-1234-15-145-24-2345-245 midendword sspeed 234-234-1234-15-15-145 midendword sspeich 234-234-1234-146-1456 midendword sspeis 234-234-1234-146-234 endword sspende 234-234-1234-14-145-15 midendword sspenden 234-234-1234-14-145-14 midendword sspender 234-234-1234-14-145-12456 midendword ssperr 234-234-1234-12456-1235 midendword sspesen 234-234-1234-123456-14 midendword sspiegel 234-234-1234-346-1245-13456 midendword sspiel 234-2-346 midendword sspindel 234-234-1234-35-145-13456 midendword sspinn 234-234-1234-35-1345 midendword sspion 234-234-1234-24-135-1345 midword sspiral 234-234-1234-24-1235-25 midword sspital 234-234-1234-24-2345-25 endword sspital 234-234-1234-24-2345-1-123 midendword sspitz 234-234-1234-24-2345-1356 midendword ssport 234-234-1234-26-2345 always passport 1234-1-2346-1234-26-2345 midendword ssprach 234-234-1234 midendword sspring 234-234-1234-1235-35-1245 endword sspringe 234-234-1234-1235-35-12346 midendword ssprint 234-234-1234-1235-35-2345 midendword sspritz 234-234-1234-1235-24-2345-1356 midendword sspross 234-234-1234-1235-135-2346 midendword sspruch 234-234-1234-1235-136-1456 midendword ssprung 234-234-1234-1235-256-1245 midendword ssprüch 234-234-1234-1235-1256-1456 midword ssprüng 234-234-1234-1235-1256-1345-1245 endword ssprünge 234-234-1234-1235-1256-1345-12346 midendword sspur 234-234-1234-136-1235 midendword sspänner 234-234-1234-345-1345-1345-12456 midendword sspännig 234-234-1234-345-1345-1345-45 midendword sspül 234-234-1234-1256-123 midendword sspür 234-234-1234-1256-1235 before s begmidword steins 23456-1246-234 before s begmidword gesteins 12346-23456-1246-234 midword ations 5-1345-234 midword ationsauf 5-1345-234-2-16 always aronsstab 356-135-1345-234-23456-1-12 midendword rsstab 1235-234-23456-1-12 always sstachel 234-23456-56-13456 always sstapel 234-23456-1-1234-13456 midword ssst 2346-23456 midword ssstell 2346-2-13456 before s begmidword boots 12-135-135-2345-234 midendword sstaat 234-23456-2345 midendword sstabes 234-23456-1-12-123456 midendword sstabil 234-23456-1-12-24-123 midendword sstabs 234-23456-1-12-234 midendword sstadt 234-23456-1-145-2345 midendword sstäd 234-23456-345-145 midendword sstall 234-23456-1-12345 midendword sstamm 234-23456-1-1346 midendword sstamperl 234-23456-1-134-1234-12456-123 midendword sstand 234-2-23456 endword sstange 234-23456-235-12346 midendword sstangen 234-23456-235-1245-14 endword sstar 234-23456-1-1235 midendword sstars 234-23456-356-234 midendword sstark 234-23456-356-13 midendword sstarr 234-23456-356-1235 midendword sstart 234-23456-356-2345 midendword sstation 234-23456-5-1345 midendword sstatt 234-23456-1-2345-2345 endword sstatue 234-23456-1-2345-136-15 midendword sstatuen 234-23456-1-2345-136-14 midendword sstatus 234-23456-1-2345-136-234 midendword sstatut 234-23456-1-2345-136-2345 endword sstaude 234-23456-16-145-15 midendword sstauden 234-23456-16-145-14 midendword ssteak 234-23456-15-1-13 midendword sstehend 234-23456-2356-14-145 midendword ssteigern 234-23456-146-1245-12456-1345 midendword ssteigerung 234-23456-146-1245-12456-136 midendword sstein 234-23456-1246 endword sstele 234-23456-13456-15 midendword sstelen 234-23456-13456-14 endword sstelle 234-2-13456-15 midendword sstellen 234-2-13456-14 midendword sstellig 234-2-13456-45 midendword sstellreflex 234-2-13456-1235-15-124-123-15-6-1346 midendword sstellung 234-2-13456-136 midendword sstelz 234-23456-13456-1356 midendword sstempel 234-23456-12356-1234-13456 endword ssteppe 234-23456-15-1234-1234-15 midendword ssteppen 234-23456-15-1234-1234-14 endword ssterbe 234-23456-12456-12-15 midendword ssterben 234-23456-12456-12-14 midendword ssteril 234-23456-12456-24-123 midendword sstern 234-23456-12456-1345 midendword ssteuer 234-23456-126-12456 midendword sstich 234-23456-3456 midendword sstift 234-23456-24-124-2345 midendword sstil 234-23456-24-123 midendword sstill 234-23456-24-12345 midendword sstimm 234-23456-24-1346 midendword sstock 234-23456-135-46 midendword sstoff 234-23456-135-124-124 midendword sstollen 234-23456-135-12345-14 midendword sstolz 234-23456-135-123-1356 midendword sstop 234-23456-135-1234 midendword sstopp 234-23456-135-1234-1234 midendword sstory 234-23456-26-6-13456 midendword sstoß 234-23456-135-2346 midendword sstraf 234-23456-1235-1-124 midendword sstrand 234-23456-1235-235-145 midendword sstrang 234-23456-1235-235-1245 midendword sstrauch 234-23456-1235-16-1456 midendword sstraß 234-23456-1235-1-2346 midendword sstreb 234-23456-1235-15-12 endword sstrebe 234-23456-1235-15-12-15 endword sstreck 234-23456-1235-15-46 midendword sstreich 234-23456-1235-146-1456 midendword sstreif 234-23456-1235-146-124 midendword sstreik 234-23456-1235-146-13 midendword sstreit 234-23456-1235-146-2345 endword sstreite 234-23456-1235-146-236 midendword sstreuung 234-23456-1235-126-136 midendword sstrich 234-23456-1235-3456 midendword sstrichter 2346-2345-1235-3456-2345-12456 midendword sstroh 234-23456-1235-135-125 midendword sstrom 234-23456-1235-135-134 midendword sstroph 234-23456-1235-135-1234-125 midendword sstrotzend 234-23456-1235-135-2345-1356-14-145 endword sstube 234-23456-136-12-15 midendword sstuben 234-23456-136-12-14 endword sstufe 234-23456-136-124-15 midendword sstufen 234-23456-136-124-14 midendword sstuhl 234-23456-136-125-123 endword sstunde 234-23456-256-145-15 midendword sstunden 234-23456-256-145-14 midendword ssturm 234-23456-136-1235-134 midendword ssturz 234-23456-136-1235-1356 endword sstute 234-23456-136-236 midendword sstuten 234-23456-136-2345-14 midendword sstutz 234-23456-136-2345-1356 endword sstäbe 234-23456-345-12-15 midendword sstäben 234-23456-345-12-14 midendword sständ 234-5-23456 midendword sstück 234-23456-1256-46 midendword sstülp 234-23456-1256-123-1234 midendword sstürm 234-23456-1256-1235-134 midendword sstürz 234-23456-1256-1235-1356 midendword sstütz 234-23456-1256-2345-1356 endword ssuche 234-234-136-1456-15 midendword ssuchen 234-234-136-1456-14 midendword ssucher 234-234-136-1456-12456 midendword ssucht 234-234-136-1456-2345 midendword ssud 234-234-136-145 midendword ssumm 234-234-136-1346 midendword ssumpf 234-234-136-134-1234-124 endword ssuppe 234-234-136-1234-1234-15 midendword ssuppen 234-234-136-1234-1234-14 endword sszene 234-234-1356-14-15 midendword sszenen 234-234-1356-14-14 endword ssäfte 234-234-345-124-236 midendword ssäften 234-234-345-124-2345-14 endword ssäge 234-5-234-1245-15 midendword ssägemaschin 234-5-234-1245-15-134-156 midendword ssägen 234-5-234-1245-14 endword ssäle 234-234-345-123-15 midendword ssälen 234-234-345-123-14 endword ssätz 234-5-234-1356 midendword ssäufer 234-234-34-124-12456 midendword ssäuger 234-234-34-1245-12456 midendword ssäugetier 234-234-34-12346-2345-346-1235 endword ssäule 234-234-34-123-15 midendword ssäulen 234-234-34-123-14 midendword ssüchtig 234-234-1256-1456-2345-45 midendword ssünd 234-234-1256-1345-145 always dasselbe 145-1-234-234-13456-12-15 always dasselbig 145-1-234-234-13456-12-45 always abgas 1-12-1245-1-234 always niklas 1345-24-13-123-1-234 always nicklas 1345-24-46-123-1-234 prfword grassorte 1245-1235-1-234-234-26-236 begmidword grassort 1245-1235-1-234-234-26-2345 begmidword grasst 1245-1235-1-234-23456 before s begmidword diebs 145-346-12-234 always antriebs 235-2345-1235-346-12-234 prfword antriebst 235-2345-1235-346-12-23456 always betriebs 23-2345-1235-346-12-234 always betriebsetz 23-2345-1235-346-12-2-15 prfword betriebst 23-2345-1235-346-12-23456 begmidword betriebstätt 23-2345-1235-346-12-23456-345-2345-2345 prfword betriebstätte 23-2345-1235-346-12-23456-345-2345-236 always krebs 13-1235-15-12-234 sufword vertriebs 36-2345-1235-346-12-234 word vertriebst 36-2345-1235-346-12-23456 midendword vertriebs 1236-12456-2345-1235-346-12-234 endword vertriebst 1236-12456-2345-1235-346-12-23456 before s begmidword leibs 123-146-12-234 always weibs 2456-146-12-234 always kalbs 13-25-12-234 always jakobs 245-1-13-135-12-234 always jakobstraß 245-1-13-135-12-23456-1235-1-2346 always wettbewerbs 2456-15-2345-2345-23-2456-12456-12-234 always wettbewerbstell 2456-15-2345-2345-23-2456-12456-12-2-13456 always erwerbs 12456-2456-12456-12-234 always urlaubs 136-1235-123-16-12-234 always ericsson 12456-24-6-14-234-234-135-1345 always schieds 156-346-145-234 prfword schiedst 156-346-145-23456 always mitglieds 2-2345-1245-123-346-145-234 always mitgliedstaat 2-2345-1245-123-346-145-23456-2345 always mitgliedschaft 2-2345-1245-123-346-145-156 always herolds 125-12456-135-123-145-234 always heroldstab 125-12456-135-123-145-23456-1-12 always gedulds 12346-145-136-123-145-234 sufword auslands 34-123-235-145-234 midendword auslands 16-234-123-235-145-234 sufword auslandsch 34-123-235-145-156 midendword auslandsch 16-234-123-235-145-156 sufword auslandschef 34-123-235-145-234-1456-15-124 midendword auslandschef 16-234-123-235-145-234-1456-15-124 always inlands 35-123-235-145-234 always rolands 1235-135-123-235-145-234 always hunds 125-256-145-234 always hundschnell 125-256-145-156-1345-15-12345 always hundstock 125-256-145-23456-135-46 always mords 134-26-145-234 begmidword mordseri 134-26-145-234-12456-24 always mordsch 134-26-145-156 always pfunds 1234-124-256-145-234 always pfundsch 1234-124-256-145-156 sufword verbands 36-12-235-145-234 begword verbandsch 36-12-235-145-156 sufword verbandschef 36-12-235-145-234-1456-15-124 word verbandst 36-12-235-145-23456 sufword verbandstoff 36-12-235-145-23456-135-124-124 midendword verbands 1236-12456-12-235-145-234 midword verbandsch 1236-12456-12-235-145-156 midendword verbandschef 1236-12456-12-235-145-234-1456-15-124 endword verbands 1236-12456-12-235-145-23456 midendword verbandstoff 1236-12456-12-235-145-23456-135-124-124 before s begmidword lands 123-235-145-234 always leibes 123-146-12-123456 always diebes 145-346-12-123456 always liebes 123-346-12-123456 always waldes 2456-25-145-123456 always landes 123-235-145-123456 begmidword landestreif 123-235-145-15-23456-1235-146-124 always standes 2-23456-123456 always bundes 12-256-145-123456 always todes 2345-135-145-123456 always tages 2345-1-1245-123456 always metageschäft 134-15-2345-1-1245-124 always sieges 234-346-1245-123456 always kies 13-346-234 always kiest 13-346-23456 always vlies 1236-123-346-234 always spezies 234-1234-15-1356-24-123456 always achilles 1-1456-24-12345-123456 always herkules 125-12456-13-136-123-123456 always stammes 23456-1-1346-123456 always mannes 134-1345-123456 always sinnes 234-35-1345-123456 always herpes 125-12456-1234-123456 always heeres 125-15-15-1235-123456 always meeres 134-15-15-1235-123456 always jahres 245-1235-123456 always diabetes 145-24-1-23-2345-123456 always geistes 1245-146-23456-123456 always gottes 1245-135-2345-2345-123456 always gesetzes 12346-2-15-123456 always schiffs 156-24-124-124-234 always schiffschaukel 156-24-124-124-156-16-13-13456 begmidword schiffschrau 156-24-124-124-156-1235-16 prfword schiffst 156-24-124-124-23456 always griffs 1245-1235-24-124-124-234 always griffsch 1245-1235-24-124-124-156 always griffschrift 1245-1235-24-124-124-156-2345 always griffstück 1245-1235-24-124-124-23456-1256-46 always griffstutz 1245-1235-24-124-124-23456-136-2345-1356 prfword griffst 1245-1235-24-124-124-23456 always behelfs 23-125-13456-124-234 always hilfs 125-24-123-124-234 prfword hilfst 125-24-123-124-23456 always wolfs 2456-135-123-124-234 always bischofs 12-24-156-135-124-234 always friedhofs 124-1235-346-145-125-135-124-234 always friedhofstill 124-1235-346-145-125-135-124-23456-24-12345 always bahnhofs 12-1-125-1345-125-135-124-234 always bahnhofstr 12-1-125-1345-125-135-124-23456-1235 always bedarfs 23-145-356-124-234 prfword bedarfst 23-145-356-124-23456 sufword entwurfs 2346-2456-136-1235-124-234 midendword entwurfs 14-2345-2456-136-1235-124-234 always einkaufs 1246-13-16-124-234 prfword einkaufst 1246-13-16-124-23456 sufword verkaufs 36-13-16-124-234 word verkaufst 36-13-16-124-23456 sufword verkaufstand 36-13-16-124-2-23456 sufword verkaufständ 36-13-16-124-5-23456 midendword verkaufs 1236-12456-13-16-124-234 endword verkaufst 1236-12456-13-16-124-23456 midendword verkaufstand 1236-12456-13-16-124-2-23456 midendword verkaufständ 1236-12456-13-16-124-5-23456 always berufs 23-1235-136-124-234 prfword berufst 23-1235-136-124-23456 always durchschlags 2-1456-156-1245-234 sufword verlags 36-123-1-1245-234 midendword verlags 1236-12456-123-1-1245-234 always auftrags 2-16-2345-1245-234 prfword auftragst 2-16-2345-1245-23456 always auftragsch 2-16-2345-1245-156 always beitrags 2-12-2345-1245-234 always betrags 23-2345-1245-234 always ertrags 12456-2345-1245-234 always ertragsteiger 12456-2345-1245-23456-146-1245-12456 always ertragsteuer 12456-2345-1245-23456-126-12456 sufword vertrags 36-2345-1245-234 sufword vertragsch 36-2345-1245-156 sufword vertragschließ 36-2345-1245-156-2346 midendword vertrags 1236-12456-2345-1245-234 midendword vertragsch 1236-12456-2345-1245-156 midendword vertragschließ 1236-12456-2345-1245-156-2346 always vortrags 2-26-2345-1245-234 always alltags 1-12345-2345-1-1245-234 always halbtags 125-25-12-2345-1-1245-234 always montags 134-135-1345-2345-1-1245-234 always feiertags 124-146-12456-2345-1-1245-234 always mittags 134-24-2345-2345-1-1245-234 always mittagsch 134-24-2345-2345-1-1245-156 always festtags 124-15-23456-2345-1-1245-234 always ganztags 1245-1356-2345-1-1245-234 always sonntags 234-135-1345-1345-2345-1-1245-234 always kriegs 13-1235-346-1245-234 before a begmidword kriegst 13-1235-346-1245-234-2345 before r begmidword kriegst 13-1235-346-1245-234-2345 always kriegstüchtig 13-1235-346-1245-234-2345-1256-1456-2345-45 always kriegst 13-1235-346-1245-23456 always abstiegs 1-12-23456-346-1245-234 prfword abstiegst 1-12-23456-346-1245-23456 always aufstiegs 2-16-23456-346-1245-234 prfword aufstiegst 2-16-23456-346-1245-23456 always königs 13-246-1345-45-234 always königstein 13-246-1345-45-23456-1246 always erfolgs 12456-124-1245-234 always erfolgst 12456-124-1245-23456 always erfolgsträg 12456-124-1245-234-5-2345-1245 begmidword erfolgstrain 12456-124-1245-234-2345-1235-1-24-1345 always erfolgstyp 12456-124-1245-234-2345-6-13456-1234 always empfangs 12356-1234-124-235-1245-234 always gangs 1245-235-1245-234 always gangsch 1245-235-1245-156 begmidword gangschanc 1245-235-1245-234-1456-235-6-14 always gangsetz 1245-235-1245-2-15 prfword gangst 1245-235-1245-23456 always gangster 1245-235-1245-23456-12456 always anfangs 235-124-235-1245-234 always gesangs 12346-234-235-1245-234 always gesangschul 12346-234-235-1245-156-136-123 always gesangst 12346-234-235-1245-23456 always gesangstund 12346-234-235-1245-23456-256-145 always zwangs 1356-2456-235-1245-234 always zwangsch 1356-2456-235-1245-156 prfword zwangst 1356-2456-235-1245-23456 always lieblings 123-346-12-123-35-1245-234 always säuglings 234-34-1245-123-35-1245-234 always frühlings 124-1235-1256-125-123-35-1245-234 always zwillings 1356-2456-24-12345-35-1245-234 always lehrlings 123-2356-1235-123-35-1245-234 always schmetterlings 156-134-15-2345-2345-12456-123-35-1245-234 always flüchtlings 124-123-1256-1456-2345-123-35-1245-234 always trainings 2345-1235-1-24-1345-35-1245-234 always herings 125-12456-35-1245-234 always gebirgs 12346-12-24-1235-1245-234 always betrugs 23-2345-1235-136-1245-234 prfword betrugst 23-2345-1235-136-1245-23456 always bezugs 23-1356-136-1245-234 always bezugschein 23-1356-136-1245-156-1246 always einzugs 1246-1356-136-1245-234 always einzugsch 1246-1356-136-1245-156 always vorzugs 2-26-1356-136-1245-234 sufword entzugs 2346-1356-136-1245-234 midendword entzugs 14-2345-1356-136-1245-234 begmidword lachss 123-56-234-234 always flachs 124-123-56-234 always flachsch 124-123-56-156 always flachschaber 124-123-56-156-1-12-12456 always flachst 124-123-56-23456 always gesprächs 12346-5-234-1234-234 before s midword chs 1456-234 before s midword achs 56-234 always wachs 2456-56-234 always wachsam 2456-56-2346 always wachschiff 2456-56-156-24-124-124 always wachschlaf 2456-56-156-123-1-124 always wachschutz 2456-56-156-136-2345-1356 always wachssch 2456-56-234-156 prfword wachst 2456-56-23456 always wachstation 2456-56-23456-5-1345 prfword wachste 2456-56-23456-15 prfword wachstem 2456-56-23456-12356 prfword wachsten 2456-56-23456-14 prfword wachster 2456-56-23456-12456 prfword wachstes 2456-56-23456-123456 # HOMONYM always wachstub 2456-56-23456-136-12 always schwach 156-2456-56 always sechs 234-15-1456-234 prfword sechst 234-15-1456-23456 before konsonant begmidword sechst 234-15-1456-23456 prfword sechste 234-15-1456-23456-15 always sechstel 234-15-1456-23456-13456 prfword sechstem 234-15-1456-23456-12356 prfword sechsten 234-15-1456-23456-14 prfword sechstens 234-15-1456-23456-14-234 prfword sechster 234-15-1456-23456-12456 prfword sechstes 234-15-1456-23456-123456 sufword ausgleichs 34-1245-1456-234 midendword ausgleichs 16-234-1245-1456-234 sufword ausgleichsch 34-1245-1456-156 midendword ausgleichsch 16-234-1245-1456-156 begword ausgleichschanc 34-1245-1456-234-1456-235-6-14 midword ausgleichschanc 16-234-1245-1456-234-1456-235-6-14 sufword ausgleichst 34-1245-1456-23456 midendword ausgleichst 16-234-1245-1456-23456 word ausgleichstor 34-1245-1456-234-2345-135-1235 begword ausgleichstor 34-1245-1456-234-2345-26 midword ausgleichstor 16-234-1245-1456-234-2345-26 endword ausgleichstor 16-234-1245-1456-234-2345-135-1235 begword ausgleichstreff 34-1245-1456-234-2345-124 midword ausgleichstreff 16-234-1245-1456-234-2345-124 sufword vergleichs 36-1245-1456-234 word vergleichst 36-1245-1456-23456 midendword vergleichs 1236-12456-1245-1456-234 endword vergleichst 1236-12456-1245-1456-23456 always reichs 1235-146-1456-234 always streich 23456-1235-146-1456 prfword reichst 1235-146-1456-23456 prfword reichste 1235-146-1456-23456-15 prfword reichstem 1235-146-1456-23456-12356 prfword reichsten 1235-146-1456-23456-14 prfword reichster 1235-146-1456-23456-12456 prfword reichstes 1235-146-1456-23456-123456 always mönchs 134-246-1345-1456-234 always brauchs 2-34-234 prfword brauchst 2-34-23456 always brauchsteuer 2-34-23456-126-12456 always fuchs 124-136-1456-234 always fuchst 124-136-1456-23456 always fuchsteufel 124-136-1456-234-2345-126-124-13456 always aufbruchs 2-16-12-1235-136-1456-234 always aufbruchst 2-16-12-1235-136-1456-23456 sufword ausbruchs 34-12-1235-136-1456-234 begword ausbruchstell 34-12-1235-136-1456-2-13456 midendword ausbruchs 16-234-12-1235-136-1456-234 midword ausbruchstell 16-234-12-1235-136-2-13456 always einbruchs 1246-12-1235-136-1456-234 begmidword einbruchstell 1246-12-1235-136-1456-2-13456 always einbruchsch 1246-12-1235-136-1456-156 always geruchs 12346-1235-136-1456-234 sufword besuchs 23-234-136-1456-234 word besuchst 23-234-136-1456-23456 sufword versuchs 36-234-136-1456-234 word versuchst 36-234-136-1456-23456 midendword versuchs 1236-12456-234-136-1456-234 endword versuchs 1236-12456-234-136-1456-23456 always wuchs 2456-136-1456-234 prfword wuchst 2456-136-1456-23456 always relais 1235-13456-1-24-234 always mais 134-1-24-234 always maisch 134-1-24-156 always gleis 1245-123-146-234 prfword gleist 1245-123-146-23456 prfword gleiste 1245-123-146-23456-15 prfword gleistem 1245-123-146-23456-12356 prfword gleisten 1245-123-146-23456-14 prfword gleister 1245-123-146-23456-12456 prfword gleistes 1245-123-146-23456-123456 # HOMONYM prfword gleistest 1245-123-146-23456-15-23456 prfword gleistet 1245-123-146-23456-15-2345 always steigleistung 23456-146-1245-123-146-23456-136 always kreis 13-1235-146-234 prfword kreist 13-1235-146-23456 prfword kreiste 13-1235-146-23456-15 prfword kreistem 13-1235-146-23456-12356 prfword kreisten 13-1235-146-23456-14 prfword kreister 13-1235-146-23456-12456 prfword kreistes 13-1235-146-23456-123456 prfword kreistest 13-1235-146-23456-15-23456 prfword kreistet 13-1235-146-23456-15-2345 always kreisch 13-1235-146-156 always preis 1234-1235-146-234 prfword preist 1234-1235-146-23456 prfword preiste 1234-1235-146-23456-15 prfword preistem 1234-1235-146-23456-12356 prfword preisten 1234-1235-146-23456-14 prfword preister 1234-1235-146-23456-12456 prfword preistes 1234-1235-146-23456-123456 always anissamen 235-24-234-234-1-134-14 always johannis 245-135-125-235-1345-24-234 always tennis 2345-14-1345-24-234 always basis 12-1-234-24-234 always basisch 12-1-234-24-156 always gratis 1245-1235-1-2345-24-234 always praxis 1234-1235-1-6-1346-24-234 always geschmacks 12346-156-134-1-46-234 always geschmackstoff 12346-156-134-1-46-23456-135-124-124 always dreiecks 145-1235-146-15-46-234 always dreiecksch 145-1235-146-15-46-156 always augenblicks 16-1245-14-12-123-24-46-234 sufword ausdrucks 34-145-46-234 sufword ausdruckst 34-145-46-23456 midendword ausdrucks 16-234-145-46-234 midendword ausdruckst 16-234-145-46-23456 always glücks 1245-46-234 # HOMONYM always glücksam 1245-46-2346 prfword glückst 1245-46-23456 prfword glückstadt 1245-46-23456-1-145-2345 always unglücks 256-1245-46-234 prfword unglückst 256-1245-46-23456 always stücks 23456-1256-46-234 always stücksteuer 23456-1256-46-23456-126-12456 prfword stückst 23456-1256-46-23456 always bibliotheks 12-24-12-123-24-135-2345-125-15-13-234 always volks 1236-13-234 always links 123-35-13-234 prfword linkst 123-35-13-23456 prfword flinkste 124-123-35-13-23456-15 always flinkst 124-123-35-13-23456 always bezirks 23-1356-24-1235-13-234 always werks 2456-12456-13-234 always werksch 2456-12456-13-156 always werkschrift 2456-12456-13-156-2345 always gewerkschaft 12346-2456-12456-13-156 always gewerkschafts 12346-2456-12456-13-156-234 prfword werkst 2456-12456-13-23456 always werkstatt 2456-12456-13-23456-1-2345-2345 always werkstätt 2456-12456-13-23456-345-2345-2345 always werkstätte 2456-12456-13-23456-345-2345-236 always werkstätten 2456-12456-13-23456-345-2345-2345-14 always werkstein 2456-12456-13-23456-1246 always werkstell 2456-12456-13-2-13456 always werksteuer 2456-12456-13-23456-126-12456 always werkstoff 2456-12456-13-23456-135-124-124 always werkstoll 2456-12456-13-23456-135-12345 always werkstück 2456-12456-13-23456-1256-46 always hals 125-25-234 always halst 125-25-23456 begmidword halstabl 125-25-234-2345-1-12-123 always halstuch 125-25-234-2345-136-1456 begmidword halstüch 125-25-234-2345-1256-1456 always generals 1245-14-12456-25-234 always generalsch 1245-14-12456-25-156 always generalst 1245-14-12456-25-23456 always generalstaat 1245-14-12456-25-23456-2345 always generalstab 1245-14-12456-25-23456-1-12 always generalstäb 1245-14-12456-25-23456-345-12 always generalstand 1245-14-12456-25-2-23456 always generalständ 1245-14-12456-25-5-23456 always grals 1245-1235-25-234 always quartals 6-12345-136-356-2345-25-234 always karnevals 13-356-1345-15-1236-25-234 always adels 1-145-13456-234 prfword adelst 1-145-13456-23456 always handels 125-145-13456-234 always handelsch 125-145-13456-156 prfword handelst 125-145-13456-23456 always fels 124-13456-234 prfword ffelst 124-124-13456-23456 after f midendword elster 13456-23456-12456 always schwafel 156-2456-1-124-13456 always tafel 2345-1-124-13456 always täfel 2345-345-124-13456 always gaffel 1245-1-124-124-13456 always waffel 2456-1-124-124-13456 always löffel 123-246-124-124-13456 always pantoffel 1234-235-2345-135-124-124-13456 always kartoffel 13-356-2345-135-124-124-13456 always schnüffel 156-1345-1256-124-124-13456 prfword zweifelst 1356-2456-146-124-13456-23456 always tröpfel 2345-1235-246-1234-124-13456 always würfel 2456-1256-1235-124-13456 always apfelsch 1-1234-124-13456-156 always apfelst 1-1234-124-13456-23456 midendword äufelst 34-124-13456-23456 always himmels 125-24-1346-13456-234 prfword himmelst 125-24-1346-13456-23456 always himmelschlüssel 125-24-1346-13456-156-123-1256-2346-13456 always himmelschrei 125-24-1346-13456-156-1235-146 always himmelstreb 125-24-1346-13456-23456-1235-15-12 always himmelstürm 125-24-1346-13456-23456-1256-1235-134 always befehls 23-124-2356-123-234 always gefühls 12346-124-1256-125-123-234 always urteils 136-1235-2345-146-123-234 prfword urteilst 136-1235-2345-146-123-23456 always konzils 13-135-1345-1356-24-123-234 always beifalls 2-12-124-12345-234 always einfalls 1246-124-12345-234 always einfallstraß 1246-124-12345-23456-1235-1-2346 always zufalls 2-1356-124-12345-234 always marschalls 134-356-156-1-12345-234 always marschallstab 134-356-156-1-12345-23456-1-12 always karls 13-356-123-234 always karlstad 13-356-123-23456-1-145 begmidword karlstraß 13-356-123-23456-1235-1-2346 always impuls 24-134-1234-136-123-234 always brems 12-1235-12356-234 prfword bremst 12-1235-12356-23456 prfword bremste 12-1235-12356-23456-15 prfword bremstem 12-1235-12356-23456-12356 prfword bremsten 12-1235-12356-23456-14 prfword bremster 12-1235-12356-23456-12456 prfword bremstes 12-1235-12356-23456-123456 # HOMONYM prfword bremstest 12-1235-12356-23456-15-23456 prfword bremstet 12-1235-12356-23456-15-2345 always übernahms 2-1256-1345-134-234 prfword übernahmst 2-1256-1345-134-23456 always brahms 12-1235-1-125-134-234 always bims 12-24-134-234 always bimste 12-24-134-23456-15 always bimsten 12-24-134-23456-14 always gesims 12346-234-24-134-234 always gesimst 12346-234-24-134-23456 always jubiläums 245-136-12-24-123-345-136-134-234 always museums 134-136-234-15-136-134-234 always datums 145-1-2345-136-134-234 always eigentums 146-1245-14-2345-136-134-234 always präsidiums 1234-1235-345-234-24-145-24-136-134-234 always imperiums 24-134-1234-12456-24-136-134-234 always ministeriums 134-35-24-23456-12456-24-136-134-234 always jeans 245-15-1-1345-234 always trans 2345-1235-235-234 always transchier 2345-1235-235-156-346-1235 always sanssouci 234-235-234-234-135-136-6-14-24 always glaubens 1245-123-16-12-14-234 always schadens 156-1-145-14-234 always schadenstift 156-1-145-14-23456-24-124-2345 always friedens 124-1235-346-145-14-234 prfword friedenste 124-1235-346-145-14-23456-15 always friedenstell 124-1235-346-145-14-2-13456 prfword friedenstem 124-1235-346-145-14-23456-12356 prfword friedensten 124-1235-346-145-14-23456-14 prfword friedenster 124-1235-346-145-14-23456-12456 prfword friedenstes 124-1235-346-145-14-23456-123456 always friedenstift 124-1235-346-145-14-23456-24-124-2345 always kondens 13-135-1345-145-14-234 always ordens 26-145-14-234 always tangens 2345-235-1245-14-234 sufword vermögens 36-2-246-14-234 midendword vermögens 1236-12456-2-246-14-234 always darlehens 145-356-123-2356-14-234 always schreckens 156-1235-15-46-14-234 always schreckensch 156-1235-15-46-14-156 always schreckenstarr 156-1235-15-46-14-23456-356-1235 always willens 2456-12345-14-234 always namens 1345-1-134-14-234 always namensch 1345-1-134-14-156 always namenstempel 1345-1-134-14-23456-12356-1234-13456 always siemens 234-346-134-14-234 always unternehmens 2-256-1345-125-14-234 always einkommens 1246-13-1346-14-234 always einkommensteuer 1246-13-1346-14-23456-126-12456 sufword verfahrens 36-2-1235-14-234 midendword verfahrens 1236-12456-2-1235-14-234 always ermessens 12456-134-15-2346-14-234 always wissens 2456-2346-14-234 always wissenschaft 2456-2346-14-156 always wissenschaftsauf 2456-2346-14-156-234-2-16 always wissenstand 2456-2346-14-2-23456 sufword verhaltens 36-125-25-2345-14-234 word verhaltenste 36-125-25-2345-14-23456-15 word verhaltenstem 36-125-25-2345-14-23456-12356 word verhaltensten 36-125-25-2345-14-23456-14 word verhaltenster 36-125-25-2345-14-23456-12456 word verhaltenstes 36-125-25-2345-14-23456-123456 midendword verhaltens 1236-12456-125-25-2345-14-234 endword verhaltenste 1236-12456-125-25-2345-14-23456-15 endword verhaltenstem 1236-12456-125-25-2345-14-23456-12356 endword verhaltensten 1236-12456-125-25-2345-14-23456-14 endword verhaltenster 1236-12456-125-25-2345-14-23456-12456 endword verhaltenstes 1236-12456-125-25-2345-14-23456-123456 sufword vertrauens 36-2345-1235-16-14-234 midendword vertrauens 1236-12456-2345-1235-16-14-234 always herzens 125-12456-1356-14-234 sufword vereins 36-1246-234 sufword vereinsam 36-1246-2346 word vereinst 36-1246-23456 midendword vereins 1236-12456-1246-234 midendword vereinsam 1236-12456-1246-2346 endword vereinst 1236-12456-1246-23456 before s begmidword steins 23456-1246-234 always schweins 156-2456-1246-234 always zins 1356-35-234 always finanz 124-35-235-1356 always justiz 245-136-23456-24-1356 always magazin 134-1-1245-1-1356-35 always medizin 134-15-145-24-1356-35 always benzin 12-14-1356-35 always kratz 13-1235-1-2345-1356 prfword zinst 1356-35-23456 prfword zinste 1356-35-23456-15 prfword zinstem 1356-35-23456-12356 prfword zinsten 1356-35-23456-14 prfword zinster 1356-35-23456-12456 prfword zinstes 1356-35-23456-123456 prfword zinstest 1356-35-23456-15-23456 prfword zinstet 1356-35-23456-15-2345 before s begmidword manns 134-1345-234 always seemanns 234-15-15-134-1345-234 always seemannschaft 234-15-15-134-1345-156 always kaufmanns 13-16-124-134-1345-234 always kaufmannschaft 13-16-124-134-1345-156 always bergmanns 12-12456-1245-134-1345-234 before s midword ions 24-135-1345-234 always garnisons 1245-356-1345-24-234-135-1345-234 always kantons 13-235-2345-135-1345-234 before s begword kokos 13-135-13-135-234 always kosmos 13-135-234-134-135-234 before s begword los 123-135-234 always erlös 12456-123-246-234 always erlösch 12456-123-246-156 always erlöst 12456-123-246-23456 before s begmidword moos 134-135-135-234 always lotos 123-135-2345-135-234 always gips 1245-24-1234-234 always gipst 1245-24-1234-23456 always schnaps 156-1345-1-1234-234 always korps 13-26-1234-234 always alters 25-2345-12456-234 prfword alterst 25-2345-12456-23456 always halterschaft 125-25-2345-12456-156 always schalter 156-25-2345-12456 before s begmidword mars 134-356-234 always neujahrs 1345-126-245-1235-234 sufword verkehrs 36-13-2356-1235-234 word verkehrst 36-13-2356-1235-23456 midendword verkehrs 1236-12456-13-2356-1235-234 endword verkehrst 1236-12456-13-2356-1235-23456 always kurs 13-136-1235-234 always kurschatten 13-136-1235-156-1-2345-2345-14 prfword kurst 13-136-1235-23456 always kurstadt 13-136-1235-23456-1-145-2345 always kurstäd 13-136-1235-23456-345-145 always velours 1236-13456-135-136-1235-234 always merkur 134-12456-13-136-1235 always staats 23456-2345-234 always senats 234-14-1-2345-234 always monats 134-135-1345-1-2345-234 always rats 1235-1-2345-234 always heirats 125-146-1235-1-2345-234 always ratsam 1235-1-2345-2346 always ratsamt 1235-1-2345-234-1-134-2345 always ratsch 1235-1-2345-156 always ratschef 1235-1-2345-234-1456-15-124 always ratschlag 1235-1-2345-156-1245 always ratschläg 1235-1-2345-5-156-1245 always ratschluss 1235-1-2345-156-123-136-2346 always ratschlüss 1235-1-2345-156-123-1256-2346 always ratsitz 1235-1-2345-2-24 always ratsprach 1235-1-2345-234-1234 always ratstoff 1235-1-2345-23456-135-124-124 always ratstück 1235-1-2345-23456-1256-46 prfword tratst 2345-1235-1-2345-23456 midword itäts 1-2345-2345-14-2345-1-2345-234 always attentats 1-2345-2345-14-2345-1-2345-234 always pubertäts 1234-136-12-12456-2345-345-2345-234 always abts 1-12-2345-234 always gebiets 12346-12-346-2345-234 always miets 134-346-2345-234 always mietsch 134-346-2345-156 always mietst 134-346-2345-23456 always mietstand 134-346-2345-2-23456 always geschäfts 1245-124-234 always unterschrifts 2-256-156-2345-234 always unterschriftstempel 2-256-156-2345-23456-12356-1234-13456 always kunfts 13-256-124-2345-234 always kunftsch 13-256-124-2345-156 always kunftschanc 13-256-124-2345-234-1456-235-6-14 always wehrmachts 2456-2356-1235-134-56-2345-234 always fastnachts 124-1-23456-1345-56-2345-234 always weihnachts 2456-146-125-1345-56-2345-234 always gefechts 12346-124-15-1456-2345-234 always geschlechts 12346-156-123-15-1456-2345-234 always geschichts 12346-156-3456-2345-234 always gerichts 12346-2-3456-234 always unterrichts 2-256-2-3456-234 always unterrichtstoff 2-256-2-3456-23456-135-124-124 midword sichts 234-3456-2345-234 begmidword sichtsch 234-3456-2345-156 always gewichts 12346-2456-3456-2345-234 always zufluchts 2-1356-124-123-136-1456-2345-234 always arbeits 356-12-234 always abseits 1-12-234-146-2345-234 always hochzeits 125-135-1456-1356-2345-234 always gehalts 12346-125-25-2345-234 always inhalts 35-125-25-2345-234 always inhaltschwer 35-125-25-2345-156-2456-12456 always unterhalts 2-256-125-25-2345-234 always unterhaltsam 2-256-125-25-2345-2346 always haushalts 125-16-234-125-25-2345-234 always amts 1-134-2345-234 always kamtsch 13-1-134-2345-156 always parlaments 1234-356-123-1-134-14-2345-234 always temperaments 2345-12356-1234-12456-1-134-14-2345-234 always regiments 1235-15-1245-24-134-14-2345-234 always advents 1-145-1236-14-2345-234 always angebots 235-12346-12-135-2345-234 sufword verbots 36-12-135-2345-234 word verbotst 36-12-135-2345-23456 midendword verbots 1236-12456-12-135-2345-234 endword verbotst 1236-12456-12-135-2345-23456 always fahrts 2-1235-2345-234 always fahrtsch 2-1235-2345-156 always fahrtstraß 2-1235-2345-23456-1235-1-2346 always fahrtsträß 2-1235-2345-23456-1235-345-2346 always fahrtstreck 2-1235-2345-23456-1235-15-46 always fahrtstund 2-1235-2345-23456-256-145 always fahrtstag 2-1235-2345-234-2345-1-1245 prfword fahrtstage 2-1235-2345-234-2345-1-12346 always gegenwarts 1245-2456-234 always wirts 2456-24-1235-2345-234 always geburts 12346-12-136-1235-2345-234 prfword geburtstätte 12346-12-136-1235-2345-23456-345-2345-236 prfword geburtstätten 12346-12-136-1235-2345-23456-345-2345-2345-14 always kabinetts 13-1-12-35-15-2345-2345-234 always kabinettstück 13-1-12-35-15-2345-2345-23456-1256-46 always durchtritts 2-1456-2345-1235-24-2345-2345-234 always eintritts 1246-2345-1235-24-2345-2345-234 prfword eintrittst 1246-2345-1235-24-2345-2345-23456 sufword austritts 34-2345-1235-24-2345-2345-234 word austrittst 34-2345-1235-24-2345-2345-23456 midendword austritts 16-234-2345-1235-24-2345-2345-234 midendword austrittst 16-234-2345-1235-24-2345-2345-23456 always durchschnitts 2-1456-156-1345-24-2345-2345-234 always querschnitts 6-12345-136-12456-156-1345-24-2345-2345-234 always gemüts 12346-134-1256-2345-234 midendword aussag 16-234-234-1245 midendword aussaat 16-234-234-1-1-2345 midendword aussend 16-234-234-14-145 midword aussied 16-234-234-346-145 midword ausspar 16-234-234-1234-356 always haussegen 125-16-234-234-15-1245-14 begmidword haussipp 125-16-234-234-24-1234-1234 begmidword haussperlin 125-16-234-234-1234-12456-123-35 begmidword haussprech 125-16-234-2-2346 always hausstadt 125-16-234-23456-1-145-2345 begmidword hausstäd 125-16-234-23456-345-145 always hausstaub 125-16-234-23456-16-12 begmidword hausstreck 125-16-234-23456-1235-15-46 begmidword haussuch 125-16-234-234-136-1456 always hinaus 125-35-16-234 always unaus 256-16-234 before s begmidword raus 1235-16-234 always heraus 125-12456-16-234 always voraus 2-26-16-234 always bambus 12-1-134-12-136-234 always kubus 13-136-12-136-234 always arcus 356-6-14-136-234 always pyrrhus 1234-6-13456-1235-1235-125-136-234 always sozius 234-135-1356-24-136-234 always jus 245-136-234 always jusch 245-136-156 always just 245-136-23456 always sympathikus 234-6-13456-134-1234-1-2345-125-24-13-136-234 always arkus 356-13-136-234 always zirkus 1356-24-1235-13-136-234 prfword zirkusse 1356-24-1235-13-136-2346-15 always zirkussen 1356-24-1235-13-136-2346-14 always gallus 1245-1-12345-136-234 always phallus 1234-125-1-12345-136-234 always plus 1234-123-136-234 always pluster 1234-123-136-23456-12456 always rhythmus 1235-125-6-13456-2345-125-134-136-234 always orgasmus 26-1245-1-234-134-136-234 sufword tetanus 2345-15-2345-235-136-234 midendword tetanus 236-2345-235-136-234 always venus 1236-14-136-234 always konus 13-135-1345-136-234 always minus 134-35-136-234 always kosinus 13-135-234-35-136-234 always tonus 2345-135-1345-136-234 always taunus 2345-16-1345-136-234 always papyrus 1234-1-1234-6-13456-1235-136-234 always kasus 13-1-234-136-234 always status 23456-1-2345-136-234 always luxus 123-136-6-1346-136-234 always news 1345-15-2456-234 # ST (4.1 Lautgruppenkürzungen) word st 234-2345 always st 23456 syllable talkshow 2345-25-13-234-125-135-2456 syllable thorax 2345-125-26-1-6-1346 syllable trainings 2345-1235-1-24-1345-35-1245-234 word sta 234-2345-1 # HOMONYM midendword stabell 234-2345-1-23-12345 midendword stablet 234-2345-1-12-123-15-2345 midendword stabu 234-2345-1-12-136 midendword stafel 234-2345-1-124-13456 midendword stag 234-2345-1-1245 midendword stagegeld 234-2345-1-12346-1245-13456-145 endword stage 234-2345-1-12346 always stagnation 23456-1-1245-1345-5-1345 always stagnier 23456-1-1245-1345-346-1235 always stagsegel 23456-1-1245-234-15-1245-13456 midendword stakt 234-2345-1-13-2345 always herbst 125-12456-12-23456 endword stakte 234-2345-1-13-236 endword stalar 234-2345-25-1-1235 midword stalar 234-2345-25-356 midendword stalent 234-2345-25-14-2345 midendword staler 234-2345-25-12456 always standstanz 2-23456-234-2345-235-1356 midword stangent 234-2345-235-1245-14-2345 endword stangente 234-2345-235-1245-14-236 endword stanne 234-2345-235-1345-15 midendword stannen 234-2345-235-1345-14 midendword stapezier 234-2345-1-1234-15-1356-346-1235 sufword austarier 34-2345-356-346-1235 midendword starier 234-2345-356-346-1235 midendword starif 234-2345-356-24-124 endword stasche 234-2345-1-156-15 midendword staschen 234-2345-1-156-14 endword stasse 234-2345-1-2346-15 midendword stassen 234-2345-1-2346-14 endword staste 234-2345-1-23456-15 endword stasten 234-2345-1-23456-14 midendword statbestand 234-2345-1-2345-23-2-23456 midendword statbeständ 234-2345-1-2345-23-5-23456 midendword stätig 234-2345-345-2345-45 always bestätig 23-23456-345-2345-45 midendword stauglich 234-2345-16-1245-456 midendword staumel 234-2345-16-134-13456 midendword stausend 234-2345-16-234-14-145 endword staxe 234-2345-1-6-1346-15 midendword staxen 234-2345-1-6-1346-14 word ste 234-2345-15 midendword steam 234-2345-15-1-134 begword steam 23456-15-1-134 always steamen 23456-15-1-134-14 always steamer 23456-15-1-134-12456 always steamt 23456-15-1-134-2345 endword steamte 23456-15-1-134-236 midendword stechnik 234-2345-13 midendword stechnisch 234-2345-156 midendword stechnolog 234-236-1456-1345-135-123-135-1245 endword stechnologe 234-236-1456-1345-135-123-135-12346 midendword stee 234-2345-15-15 always steelband 23456-15-15-123-12-235-145 midendword steich 234-2345-146-1456 midword steilnahm 234-2345-146-123-1345-134 midendword eisteil 146-234-2345-146-123 midword steilnehm 234-2345-146-123-1345-125 midendword steils 234-2345-146-123-234 always steilst 23456-146-123-23456 midendword steilzeit 234-2345-146-123-1356-2345 midendword stelefon 234-2345-13456-15-124-135-1345 midendword stelegraf 234-2345-13456-15-1245-1235-1-124 midendword estelegraf 123456-2345-13456-15-1245-1235-1-124 midendword stelegramm 234-2345-13456-15-1245-1235-1-1346 midendword stemperatur 234-2345-12356-1234-12456-1-2345-136-1235 midendword stempo 234-2345-12356-1234-135 midendword stendenz 234-2345-14-145-14-1356 endword stensor 234-2345-14-234-135-1235 midword stensor 234-2345-14-234-26 midendword steppich 234-236-1234-1234-3456 midendword sterm 234-2345-12456-134 always läster 123-345-23456-12456 always pflaster 1234-124-123-1-23456-12456 always raster 1235-1-23456-12456 always priester 1234-1235-346-23456-12456 always meister 134-146-23456-12456 always geschwister 12346-156-2456-24-23456-12456 always fenster 124-14-23456-12456 always polster 1234-135-123-23456-12456 always oster 135-23456-12456 always östermalm 246-23456-12456-134-25-134 always kloster 13-123-135-23456-12456 always schuster 156-136-23456-12456 always flüster 124-123-1256-23456-12456 always muster 134-136-23456-12456 midword sterrass 234-2345-12456-1235-1-2346 midword sterrin 234-2345-12456-1235-35 midword sterritori 234-2345-12456-1235-24-2345-26-24 midendword ationstest 5-1345-234-236-23456 sufword aussteuer 34-23456-126-12456 midendword aussteuer 16-234-23456-126-12456 always auftragssteuerung 2-16-2345-1245-234-23456-126-12456-136 midendword niersteuerung 1345-346-1235-23456-126-12456-136 always baggersteuerung 12-1-1245-1245-12456-23456-126-12456-136 always bausteuerung 12-16-23456-126-12456-136 midendword steufel 234-2345-126-124-13456 midendword stext 234-236-6-1346-2345 endword stexte 234-236-6-1346-236 midword stheat 234-2345-125-15-1-2345 midendword stheke 234-2345-125-15-13-15 midendword stheken 234-2345-125-15-13-14 midendword sthema 234-2345-125-12356-1 midendword sthemen 234-2345-125-12356-14 midword stheni 234-2345-125-14-24 endword sthenie 234-2345-125-14-346 midword stheno 234-2345-125-14-135 midendword stheo 234-2345-125-15-135 midword stheor 234-2345-125-15-26 midword stherap 234-2345-125-12456-1-1234 midendword stherm 234-2345-125-12456-134 midendword sthese 234-2345-125-123456-15 midendword sthesen 234-2345-125-123456-14 midendword sthron 234-2345-125-1235-135-1345 midendword sticket 234-2345-24-46-15-2345 midendword stief 234-2345-346-124 always stief 23456-346-124 always stiefbruder 23456-346-124-12-1235-136-145-12456 always stiefbrüder 23456-346-124-12-1235-1256-145-12456 always stiefel 23456-346-124-13456 always stiefgeschwister 23456-346-124-12346-156-2456-24-23456-12456 always stiefkind 23456-346-124-13-35-145 always stiefmutter 23456-346-124-134-136-2345-2345-12456 always stiefmütter 23456-346-124-134-1256-2345-2345-12456 always stiefschwester 23456-346-124-156-2456-15-23456-12456 always stiefsohn 23456-346-124-234-135-125-1345 always stiefsöhn 23456-346-124-234-246-125-1345 always stieftochter 23456-346-124-2345-135-1456-2345-12456 always stieftöchter 23456-346-124-2345-246-1456-2345-12456 always stiefvater 23456-346-124-1236-1-2345-12456 always stiefväter 23456-346-124-1236-345-2345-12456 endword stilge 234-2345-24-123-12346 midendword stilgen 234-2345-24-123-1245-14 midendword stilger 234-2345-24-123-1245-12456 midendword stilgung 234-2345-24-123-1245-136 endword stinte 234-2345-35-236 midendword stinten 234-2345-35-2345-14 midendword stip 234-2345-24-1234 always stipend 23456-24-1234-14-145 always stippbesuch 23456-24-1234-1234-23-234-136-1456 always stippchen 23456-24-1234-1234-1456-14 always stippe 23456-24-1234-1234-15 always stippen 23456-24-1234-1234-14 always stippmilch 23456-24-1234-1234-134-24-123-1456 always stippvisi 23456-24-1234-1234-1236-24-234-24 always stipulation 23456-24-1234-136-123-5-1345 always stipulier 23456-24-1234-136-123-346-1235 midendword stitel 234-2345-24-2345-13456 midendword stiter 234-2345-24-2345-12456 midendword stoast 234-2345-135-1-23456 midendword stochter 234-2345-135-1456-2345-12456 midendword stod 234-2345-135-145 begmidword mastodon 134-1-23456-135-145-135-1345 midendword estod 123456-2345-135-145 midword stoleran 234-2345-135-123-12456-235 midendword stool 234-2345-135-135-123 midendword stopo 234-2345-135-1234-135 midendword storkel 234-2345-26-13-13456 midendword storte 234-2345-26-236 midendword storten 234-2345-26-2345-14 midendword stour 234-2345-135-136-1235 midendword stown 234-2345-135-2456-1345 midendword stracht 234-2345-1235-56-2345 midendword stradition 234-2345-1235-1-145-24-2345-245 midendword strag 234-2345-1245 midendword stragödi 234-2345-1245-246-145-24 midendword strain 234-2345-1235-1-24-1345 midword strak 234-2345-1235-1-13 midword stranch 234-2345-1235-235-1456 midendword strank 234-2345-1235-235-13 midendword strans 234-2345-1235-235-234 midendword stratsch 234-2345-1235-1-2345-156 midendword strauer 234-2345-1235-16-12456 midendword straum 234-2345-1235-16-134 midendword sträum 234-2345-1235-34-134 always gastraum 1245-1-23456-1235-16-134 begmidword gasträum 1245-1-23456-1235-34-134 always lastraum 123-1-23456-1235-16-134 begmidword lasträum 123-1-23456-1235-34-134 always kunst 13-256-23456 midendword ostraum 135-23456-1235-16-134 midendword osträum 135-23456-1235-34-134 midendword straurig 234-2345-1235-16-1235-45 midendword strauung 234-2345-1235-16-136 midendword streff 234-2345-124 midendword streib 234-2345-1235-146-12 midendword strend 234-2345-1235-14-145 endword strendite 23456-1235-14-145-24-236 midendword strenditen 23456-1235-14-145-24-2345-14 midword strenn 234-2345-1235-14-1345 midword streppe 234-2345-1235-15-1234-1234 midword stret 234-2345-1235-15-2345 endword strete 234-2345-1235-15-236 midendword stribun 234-2345-1235-24-12-256 midendword strieb 234-2345-1235-346-12 midendword striller 234-2345-1235-24-12345-12456 midendword strink 234-2345-1235-35-13 midendword strog 234-2345-1235-135-1245 always gastrogel 1245-1-23456-1235-135-1245-13456 always gastrogen 1245-1-23456-1235-135-1245-14 begmidword astrogl 1-23456-1235-135-1245-123 begmidword astrogn 1-23456-1235-135-1245-1345 always astrograf 1-23456-1235-135-1245-1235-1-124 always astrograph 1-23456-1235-135-1245-1235-1-1234-125 always östrogen 246-23456-1235-135-1245-14 midendword strommel 234-2345-1235-135-1346-13456 midword strompet 234-2345-1235-135-134-1234-15-2345 endword strompete 234-2345-1235-135-134-1234-15-236 midendword strompetet 234-2345-1235-135-134-1234-15-236-2345 endword strompetete 234-2345-1235-135-134-1234-15-236-236 midendword stropf 234-2345-1235-135-1234-124 midword strophä 234-2345-1235-135-1234-125-345 midendword stross 234-2345-1235-135-2346 midendword strost 234-2345-1235-135-23456 midword strot 234-2345-1235-135-2345 always rostrot 1235-135-23456-1235-135-2345 prfword rostrote 1235-135-23456-1235-135-236 midendword strug 234-2345-1235-136-1245 midendword struthahn 234-2345-1235-136-2345-125-1-125-1345 midword struthähn 234-2345-1235-136-2345-125-345-125-1345 midendword strächtig 234-2345-1235-345-1456-2345-45 midendword sträg 234-5-2345-1245 midword strän 234-2345-1235-345-1345 prfword strände 23456-1235-345-1345-145-15 always stränden 23456-1235-345-1345-145-14 always ostränder 135-23456-1235-345-1345-145-12456 prfword stränge 23456-1235-345-1345-12346 always strängen 23456-1235-345-1345-1245-14 always strängig 23456-1235-345-1345-1245-45 midendword sträum 234-2345-1235-34-134 midword sträum 234-2345-1235-34-134 endword strög 234-2345-1235-246-12346 midword strög 234-2345-1235-246-1245 midword ströpf 234-2345-1235-246-1234-124 midendword strüb 234-2345-1235-1256-12 midendword strümmer 234-2345-1235-1256-1346-12456 midword stuberk 234-2345-136-12-12456-13 midendword stuch 234-2345-136-1456 endword stumor 234-2345-136-134-135-1235 midword stumor 234-2345-136-134-26 midword sturbin 234-2345-136-1235-12-35 midendword sturbo 234-2345-136-1235-12-135 midword sturbul 234-2345-136-1235-12-136-123 midendword sturn 234-2345-136-1235-1345 midendword styp 234-2345-6-13456-1234 midendword styrann 234-2345-6-13456-1235-235-1345 midword stäfel 234-2345-345-124-13456 midendword stägig 234-2345-345-1245-45 midendword stäglich 234-2345-345-1245-456 midendword stäler 234-2345-345-123-12456 midword stänz 234-2345-345-1345-1356 midendword stäter 234-2345-345-2345-12456 midword stäusch 234-2345-34-156 midendword stöchter 234-2345-246-1456-2345-12456 midendword stöne 234-2345-246-1345-15 midendword stönen 234-2345-246-1345-14 midendword stöter 234-2345-246-2345-12456 midendword stötung 234-2345-246-2345-136 midword stüch 234-2345-1256-1456 always stücksteil 23456-1256-46-234-2345-146-123 midword stüft 234-2345-1256-124-2345 midword stüll 234-2345-1256-12345 midword stümel 234-2345-1256-134-13456 midendword stümlich 234-2345-1256-134-456 midendword stür 234-2345-1256-1235 always stürb 23456-1256-1235-12 always stürm 23456-1256-1235-134 always stürz 23456-1256-1235-1356 midendword stüte 234-2345-1256-236 midendword estüte 123456-2345-1256-236 prfword gestüte 12346-23456-1256-236 midendword stüten 234-2345-1256-2345-14 midendword estüten 123456-2345-1256-2345-14 prfword gestüten 12346-23456-1256-2345-14 always sthm 234-2345-125-134 always ästhesie 345-234-2345-125-123456-346 always ästhet 345-234-2345-125-15-2345 syllable abgas 1-12-1245-1-234 always gastank 1245-1-234-2345-235-13 always gästeelf 1245-345-23456-15-13456-124 always gasturm 1245-1-234-2345-136-1235-134 always gastürm 1245-1-234-2345-1256-1235-134 always kastagnet 13-1-23456-1-1245-1345-15-2345 always glasteil 1245-123-1-234-2345-146-123 always glastisch 1245-123-1-234-2345-24-156 always glasturm 1245-123-1-234-2345-136-1235-134 always glastürm 1245-123-1-234-2345-1256-1235-134 always mastermind 134-1-23456-12456-134-35-145 always anästh 235-345-234-2345-125 always pastagericht 1234-1-23456-1-12346-2-3456 always pastagrinsen 1234-1-23456-1-1245-1235-35-234-14 always frästisch 124-1235-345-234-2345-24-156 begmidword abstrak 1-12-23456-1235-1-13 always betriebsteil 23-2345-1235-346-12-234-2345-146-123 always betriebstreu 23-2345-1235-346-12-234-2345-1235-126 always krebstier 13-1235-15-12-234-2345-346-1235 always obstipation 135-12-23456-24-1234-5-1345 always wettbewerbsteil 2456-15-2345-2345-23-2456-12456-12-234-2345-146-123 always erwerbstätig 12456-2456-12456-12-234-2345-345-2345-45 always abschiedstrunk 1-12-156-346-145-234-2345-1235-256-13 always aidstest 1-24-145-234-236-23456 sufword verbandstisch 36-12-235-145-234-2345-24-156 midendword verbandstisch 1236-12456-12-235-145-234-2345-24-156 always kindstauf 13-35-145-234-2345-16-124 always kindstäuf 13-35-145-234-2345-34-124 always rindstalg 1235-35-145-234-2345-25-1245 always hundsteuer 125-256-145-234-2345-126-12456 always mordsteuer 134-26-145-234-2345-126-12456 always mordsteur 134-26-145-234-2345-126-1235 always esther 123456-2345-125-12456 always pestherd 1234-15-23456-125-12456-145 always aesthet 1-15-234-2345-125-15-2345 always liebestat 123-346-12-123456-2345-1-2345 always liebestoll 123-346-12-123456-2345-135-12345 always liebestrunk 123-346-12-123456-2345-1235-256-13 always landesteil 123-235-145-123456-2345-146-123 always bundestrupp 12-256-145-123456-2345-1235-136-1234-1234 always gestippt 12346-23456-24-1234-1234-2345 prfword gestippte 12346-23456-24-1234-1234-236 midendword gestüt 12346-23456-1256-2345 midendword gestüte 12346-23456-1256-236 always frühstücksteller 124-1235-1256-125-23456-1256-46-234-236-12345-12456 always tagesteller 2345-1-1245-123456-236-12345-12456 always siegestrunk 234-346-1245-123456-2345-1235-256-13 always ruhmestat 1235-136-125-134-123456-2345-1-2345 before t begmidword pommes 1234-135-1346-123456 always kirmestanz 13-24-1235-134-123456-2345-235-1356 always einesteils 1246-123456-2345-146-123-234 always heeresteil 125-15-15-1235-123456-2345-146-123 always meerestier 134-15-15-1235-123456-2345-346-1235 always gottestreu 1245-135-2345-2345-123456-2345-1235-126 begmidword westempor 2456-15-23456-12356-1234-26 always gesetzestreu 12346-2-15-123456-2345-1235-126 # HOMONYM always schiffstau 156-24-124-124-234-2345-16 always schiffstäuf 156-24-124-124-234-2345-34-124 prfword schiffstonnage 156-24-124-124-234-2345-135-1345-1345-1-12346 always schiffstonnage 156-24-124-124-234-2345-135-1345-1345-1-1245 always hilfstaucher 125-24-123-124-234-2345-16-1456-12456 always hilfstätig 125-24-123-124-234-2345-345-2345-45 always hilfstrupp 125-24-123-124-234-2345-1235-136-1234-1234 prfword hofstor 125-135-124-234-2345-135-1235 begmidword hofstor 125-135-124-234-2345-26 midendword kaufstresen 13-16-124-234-2345-1235-123456-14 midendword kaufstrick 13-16-124-234-2345-1235-24-46 midendword kaufstrip 13-16-124-234-2345-1235-24-1234 sufword verkaufstisch 36-13-16-124-234-2345-24-156 midendword verkaufstisch 1236-12456-13-16-124-234-2345-24-156 always berufstätig 23-1235-136-124-234-2345-345-2345-45 midendword gstresen 1245-234-2345-1235-15-234-15-1345 sufword vertragsteil 36-2345-1245-234-2345-146-123 midendword vertragsteil 1236-12456-2345-1245-234-2345-146-123 sufword vertragstreu 36-2345-1245-234-2345-1235-126 midendword vertragstreu 1236-12456-2345-1245-234-2345-1235-126 always tagstisch 2345-1-1245-234-2345-24-156 syllable alltags 1-12345-2345-1-1245-234 always mittagstrunk 134-24-2345-2345-1-1245-234-2345-1235-256-13 always kriegstalk 13-1235-346-1245-234-2345-25-13 always kriegstanz 13-1235-346-1245-234-2345-235-1356 always kriegsteil 13-1235-346-1245-234-2345-146-123 always kriegstheater 13-1235-346-1245-234-2345-125-15-1-2345-12456 always kriegsto 13-1235-346-1245-234-2345-135 always königstreu 13-246-1345-45-234-2345-1235-126 always anfangsteil 235-124-235-1245-234-2345-146-123 always empfangsteil 12356-1234-124-235-1245-234-2345-146-123 prfword längstal 5-123-1245-234-2345-1-123 always längstal 5-123-1245-234-2345-25 always zwangstauf 1356-2456-235-1245-234-2345-16-124 always zwangstäuf 1356-2456-235-1245-234-2345-34-124 always lieblingst 123-346-12-123-35-1245-234-2345 always zwillingsturm 1356-2456-24-12345-35-1245-234-2345-136-1235-134 always zwillingstürm 1356-2456-24-12345-35-1245-234-2345-1256-1235-134 always flüchtlingstreck 124-123-1256-1456-2345-123-35-1245-234-2345-1235-15-46 midendword ungstank 136-234-2345-235-13 midendword ungstat 136-234-2345-1-2345 midendword ungsteil 136-234-2345-146-123 midendword ungstisch 136-234-2345-24-156 midendword ungstresen 136-234-2345-1235-15-234-15-1345 midendword ungstreu 136-234-2345-1235-126 midendword ungstrick 136-234-2345-1235-24-46 midendword ungstrupp 136-234-2345-1235-136-1234-1234 midendword ungsturm 136-234-2345-136-1235-134 midendword ungstät 136-234-2345-345-2345 prfword brandungstor 12-1235-235-145-136-234-2345-135-1235 always brandungstor 12-1235-235-145-136-234-2345-26 always mündungstrichter 134-1256-1345-145-136-234-2345-1235-3456-2345-12456 always spannungston 234-1234-235-1345-136-234-2345-135-1345 always spannungstön 234-1234-235-1345-136-234-2345-246-1345 sufword versöhnungstrunk 36-234-246-125-1345-136-234-2345-1235-256-13 midendword versöhnungstrunk 1236-12456-234-246-125-1345-136-234-2345-1235-256-13 prfword führungstor 124-125-136-234-2345-135-1235 always führungstor 124-125-136-234-2345-26 always führungstrupp 124-125-136-234-2345-1235-136-1234-1234 always beobachtungstürm 23-135-12-56-2345-136-234-2345-1256-1235-134 always begrüßungstrunk 23-1245-1235-1256-2346-136-234-2345-1235-256-13 always zeitungstisch 1356-2345-136-234-2345-24-156 always gebirgstrupp 12346-12-24-1235-1245-234-2345-1235-136-1234-1234 always zugsteil 1356-136-1245-234-2345-146-123 always gesprächsteil 12346-5-234-1234-234-2345-146-123 always wachstum 2456-56-234-2345-136-134 always sechsteil 234-15-1456-234-2345-146-123 sufword ausgleichs 34-1245-1456-234 midword ausgleichs 16-234-1245-1456-234 always reichsteil 1235-146-1456-234-2345-146-123 always reichstrupp 1235-146-1456-234-2345-1235-136-1234-1234 always mönchstum 134-246-1345-1456-234-2345-136-134 prfword durchbruchstal 2-1456-12-1235-136-1456-234-2345-1-123 always durchbruchstal 2-1456-12-1235-136-1456-234-2345-25 prfword einbruchstal 1246-12-1235-136-1456-234-2345-1-123 always einbruchstal 1246-12-1235-136-1456-234-2345-25 sufword versuchstier 36-234-136-1456-234-2345-346-1235 midendword versuchstier 1236-12456-234-136-1456-234-2345-346-1235 always frühstücksteller 124-1235-1256-125-23456-1256-46-234-2345-15-12345-12456 always frühstückstisch 124-1235-1256-125-23456-1256-46-234-2345-24-156 always hephaistostempel 125-15-1234-125-1-24-23456-135-234-2345-12356-1234-13456 always distorsion 145-24-234-2345-26-234-245 always eistanz 146-234-2345-235-1356 begmidword eistort 146-234-2345-26-2345 prfword eistorte 146-234-2345-26-236 begmidword eistört 146-234-2345-246-1235-2345 always reisteig 1235-146-234-2345-146-1245 always reistopf 1235-146-234-2345-135-1234-124 always kreisteil 13-1235-146-234-2345-146-123 always beweisteil 23-2-146-2345-146-123 syllable geheimnis 12346-125-146-134-1346 always tischtennistisch 2345-24-156-2345-14-1345-24-234-2345-24-156 always bündnistreu 12-1256-1345-145-1346-2345-1235-126 always eucharistiefeier 126-1456-356-24-23456-346-124-146-12456 begmidword elvistoll 13456-1236-24-234-2345-135-12345 always backstage 12-1-46-23456-1-12346 always speckstipp 234-1234-15-46-23456-24-1234-1234 always fockstag 124-135-46-23456-1-1245 prfword glückstor 1245-46-234-2345-135-1235 always glückstor 1245-46-234-2345-26 sufword ausdruckstanz 34-145-46-234-2345-235-1356 always ausdruckstanz 16-234-145-46-234-2345-235-1356 always volkstanz 1236-13-234-2345-235-1356 always volkstänz 1236-13-234-2345-345-1345-1356 always volkstum 1236-13-234-2345-136-134 always bezirkstier 23-1356-24-1235-13-234-2345-346-1235 always karnevalstrubel 13-356-1345-15-1236-25-234-2345-1235-136-12-13456 always handelsteil 125-145-13456-234-2345-146-123 always himmelstanz 125-24-1346-13456-234-2345-235-1356 always himmelstempel 125-24-1346-13456-234-2345-12356-1234-13456 prfword himmelstor 125-24-1346-13456-234-2345-135-1235 always himmelstor 125-24-1346-13456-234-2345-26 syllable befehls 23-124-2356-123-234 prfword fallstor 124-12345-234-2345-135-1235 always fallstor 124-12345-234-2345-26 prfword hadrianstor 125-1-145-1235-24-235-234-2345-135-1235 always hadrianstor 125-1-145-1235-24-235-234-2345-26 always kapitänstisch 13-1-1234-24-2345-345-1345-234-2345-24-156 always friedenstaub 124-1235-346-145-14-234-2345-16-12 prfword friedenstaube 124-1235-346-145-14-234-2345-16-12-15 always friedenstrupp 124-1235-346-145-14-234-2345-1235-136-1234-1234 always kondenstopf 13-135-1345-145-14-234-2345-135-1234-124 always kondenstöpf 13-135-1345-145-14-234-2345-246-1234-124 sufword vermögensteil 36-2-246-14-234-2345-146-123 midendword vermögensteil 1236-12456-2-246-14-234-2345-146-123 always dienstagent 145-346-1345-23456-1-1245-14-2345 always schreckenstat 156-1235-15-46-14-234-2345-1-2345 always namensteil 1345-1-134-14-234-2345-146-123 always unternehmensteil 2-256-1345-125-14-234-2345-146-123 always willkommenstrunk 2456-12345-13-1346-14-234-2345-1235-256-13 always wissenstempel 2456-2346-14-234-2345-12356-1234-13456 always einstipp 1246-23456-24-1234-1234 always mannstoll 134-1345-234-2345-135-12345 always wahnsinnstat 2456-1-125-1345-234-35-1345-234-2345-1-2345 always wahnsinnstät 2456-1-125-1345-234-35-1345-234-2345-345-2345 always irrsinnstat 24-1235-1235-234-35-1345-234-2345-1-2345 always ionsteil 24-135-1345-234-2345-146-123 always ionstisch 24-135-1345-234-2345-24-156 midendword ionstreu 24-135-1345-234-2345-1235-126 always legionstrupp 123-15-1245-24-135-1345-234-2345-1235-136-1234-1234 always unionstrupp 256-24-135-1345-234-2345-1235-136-1234-1234 always invasionstrupp 35-1236-1-234-245-234-2345-1235-136-1234-1234 always formationstanz 124-26-134-5-1345-234-2345-235-1356 always rezitationston 1235-15-1356-24-2345-5-1345-234-2345-135-1345 always aktionstrupp 1-13-2345-245-234-2345-1235-136-1234-1234 always revolutionstrupp 1235-15-1236-135-123-136-2345-245-234-2345-1235-136-1234-1234 always ostagent 135-23456-1-1245-14-2345 always lostrab 123-135-234-2345-1235-1-12 always moostier 134-135-135-234-2345-346-1235 word pst 1234-234-2345 sufword verkehrsteil 36-13-2356-1235-234-2345-146-123 midendword verkehrsteil 1236-12456-13-2356-1235-234-2345-146-123 begword verkehrsto 36-13-2356-1235-234-2345-135 midword verkehrsto 1236-12456-13-2356-1235-234-2345-135 always kursteil 13-136-1235-234-2345-146-123 sufword ausstieg 34-23456-346-1245 midendword ausstieg 16-234-23456-346-1245 word ausstiege 34-23456-346-12346 endword ausstiege 16-234-23456-346-12346 always sstell 234-2-13456 always fasst 124-1-2346-2345 prfword fasste 124-1-2346-236 prfword fasstest 124-1-2346-236-23456 prfword fasstet 124-1-2346-236-2345 always hasst 125-1-2346-2345 always agulhasstrom 1-1245-136-123-125-1-234-23456-1235-135-134 prfword hasste 125-1-2346-236 always hasstest 125-1-2346-236-23456 always schasst 156-1-2346-2345 prfword schasste 156-1-2346-236 prfword schasstest 156-1-2346-236-23456 prfword schasstet 156-1-2346-236-2345 midendword blasst 12-123-1-2346-2345 endword blasste 12-123-1-2346-236 midendword blasstest 12-123-1-2346-236-23456 endword blasstet 12-123-1-2346-236-2345 always thomasst 2345-125-135-134-1-234-23456 always eidesstatt 146-145-123456-23456-1-2345-2345 always kongressteil 13-135-1345-1245-1235-15-2346-2345-146-123 word isst 24-2346-2345 always beißt 12-146-2346-2345 sufword vergisst 36-1245-24-2346-2345 always hisst 125-24-2346-2345 prfword hisste 125-24-2346-236 prfword hisstest 125-24-2346-236-23456 prfword hisstet 125-24-2346-236-2345 word wisst 2456-2346-2345 word psst 1234-234-234-2345 midendword ssst 234-234-234-2345 before s begmidword mess 134-15-2346 before s begmidword miss 134-24-2346 word pssst 1234-234-234-234-2345 word psssst 1234-234-234-234-234-2345 always gussteil 1245-136-2346-2345-146-123 always küsst 13-1256-2346-2345 prfword küsste 13-1256-2346-236 prfword küsstest 13-1256-2346-236-23456 prfword küsstet 13-1256-2346-236-2345 prfword flusstal 124-123-136-2346-2345-1-123 begmidword flusstal 124-123-136-2346-2345-25 always schlussteil 156-123-136-2346-2345-146-123 always wusst 2456-136-2346-2345 prfword wusste 2456-136-2346-236 always wusstest 2456-136-2346-236-23456 prfword wusstet 2456-136-2346-236-2345 always wüsst 2456-1256-2346-2345 prfword wüsste 2456-1256-2346-236 prfword wüsstest 2456-1256-2346-236-23456 prfword wüsstet 2456-1256-2346-236-2345 always ratstisch 1235-1-2345-234-2345-24-156 midendword itätstreu 5-345-234-2345-1235-126 always sanitätstrupp 234-235-5-345-234-2345-1235-136-1234-1234 always gebietsteil 12346-12-346-2345-234-2345-146-123 always gesellschaftstanz 1245-156-234-2345-235-1356 always schaftsteil 156-234-2345-146-123 midendword schaftstreu 156-234-2345-1235-126 always geschäftsteil 1245-124-234-2345-146-123 always anschriftsteil 235-156-2345-234-2345-146-123 prfword stiftstor 23456-24-124-2345-234-2345-135-1235 begmidword stiftstor 23456-24-124-2345-234-2345-26 midendword kunftstrick 13-256-124-2345-234-2345-1235-24-46 always machtsteil 134-56-2345-234-2345-146-123 always weihnachtsteller 2456-146-125-1345-56-2345-234-236-12345-12456 always weihnachtstisch 2456-146-125-1345-56-2345-234-2345-24-156 always gefechtsturm 12346-124-15-1456-2345-234-2345-136-1235-134 always geschlechtsteil 12346-156-123-15-1456-2345-234-2345-146-123 syllable gesichts 12346-234-3456-2345-234 always nichtstuer 1345-234-2345-136-12456 always nichtstun 1345-234-2345-256 sufword aussichtsturm 34-234-3456-2345-234-2345-136-1235-134 always aussichtsturm 16-234-234-3456-2345-234-2345-136-1235-134 begword aussichtstürm 34-234-3456-2345-234-2345-1256-1235-134 always aussichtstürm 16-234-234-3456-2345-234-2345-1256-1235-134 always arbeitsteil 356-12-234-2345-146-123 midendword heitstick 125-234-2345-24-46 midendword heitstrunk 125-234-2345-1235-256-13 always gewohnheitstier 12346-2456-135-125-1345-125-234-2345-346-1235 always sicherheitstrupp 234-3456-12456-125-234-2345-1235-136-1234-1234 always keitsteil 13-234-2345-146-123 midendword keitstreu 13-234-2345-1235-126 prfword abseitstor 1-12-234-146-2345-234-2345-135-1235 always abseitstor 1-12-234-146-2345-234-2345-26 always veitstanz 1236-146-2345-234-2345-235-1356 always veitstänz 1236-146-2345-234-2345-345-1345-1356 always amtston 1-134-2345-234-2345-135-1345 word auswärtstor 34-2456-2345-135-1235 begword auswärtstor 34-2456-2345-26 midword auswärtstor 16-234-2456-2345-26 endword auswärtstor 16-234-2456-2345-135-1235 always wirtstier 2456-24-1235-2345-234-2345-346-1235 always ortsteil 26-2345-234-2345-146-123 always geburtstaub 12346-12-136-1235-2345-234-2345-16-12 always kabinettstisch 13-1-12-35-15-2345-2345-234-2345-24-156 always blutstrunk 12-123-136-2345-234-2345-1235-256-13 sufword austausch 34-2345-16-156 always austausch 16-234-2345-16-156 sufword austeil 34-2345-146-123 always austeil 16-234-2345-146-123 sufword austob 34-2345-135-12 always austob 16-234-2345-135-12 word austobe 34-2345-135-12-15 midword austobe 16-234-2345-135-23 endword austobe 16-234-2345-135-12-15 word austoben 34-2345-135-12-14 midendword austoben 16-234-2345-135-12-14 sufword austoll 34-2345-135-12345 always austoll 16-234-2345-135-12345 sufword austonn 34-2345-135-1345-1345 always austonn 16-234-2345-135-1345-1345 midword stonn 234-2345-135-1345-1345 sufword austramp 34-2345-1235-1-134-1234 always austramp 16-234-2345-1235-1-134-1234 sufword austrat 34-2345-1235-1-2345 word austratet 34-2345-1235-1-236-2345 word austratest 34-2345-1235-1-236-23456 always austrat 16-234-2345-1235-1-2345 endword austratet 16-234-2345-1235-1-236-2345 endword austratest 16-234-2345-1235-1-236-23456 sufword austrick 34-2345-1235-24-46 always austrick 16-234-2345-1235-24-46 sufword austritt 34-2345-1235-24-2345-2345 always austritt 16-234-2345-1235-24-2345-2345 word austritte 34-2345-1235-24-2345-236 endword austritte 16-234-2345-1235-24-2345-236 sufword austrock 34-2345-1235-135-46 always austrock 16-234-2345-1235-135-46 sufword austun 34-2345-256 always austun 16-234-2345-256 sufword austupf 34-2345-136-1234-124 always austupf 16-234-2345-136-1234-124 sufword austusch 34-2345-136-156 always austusch 16-234-2345-136-156 always haustaub 125-16-234-2345-16-12 prfword haustaube 125-16-234-2345-16-12-15 always haustempel 125-16-234-2345-12356-1234-13456 always haustier 125-16-234-2345-346-1235 always haustisch 125-16-234-2345-24-156 prfword haustor 125-16-234-2345-135-1235 always haustor 125-16-234-2345-26 begmidword haustrepp 125-16-234-2345-1235-15-1234-1234 always haustrunk 125-16-234-2345-1235-256-13 always hausturm 125-16-234-2345-136-1235-134 always voraustrupp 2-26-16-234-2345-1235-136-1234-1234 always sausteil 234-16-23456-146-123 always moschustier 134-135-156-136-234-2345-346-1235 always juliusturm 245-136-123-24-136-234-2345-136-1235-134 always konfuziustempel 13-135-1345-124-136-1356-24-136-234-2345-12356-1234-13456 always adjustage 1-145-245-136-23456-1-12346 always kustode 13-136-23456-135-145-15 always kustoden 13-136-23456-135-145-14 always zirkustier 1356-24-1235-13-136-234-2345-346-1235 always kursusteil 13-136-1235-234-136-234-2345-146-123 before t begmidword dys 145-6-13456-234 always body 12-135-145-6-13456 always nystagmus 1345-6-13456-23456-1-1245-134-136-234 # STAAT (4.4 Zweiformige Kürzungen) always staat 23456-2345 # STAND STÄND (4.3.6 Kommakürzungen) always stand 2-23456 always ständ 5-23456 always stands 2-23456-234 always standschaft 2-23456-156 always standsetz 2-23456-2-15 always standsprach 2-23456-234-1234 always standsprung 2-23456-234-1234-1235-256-1245 prfword standst 2-23456-23456 always standstreif 2-23456-23456-1235-146-124 # STELL (4.3.6 Kommakürzungen) always stell 2-13456 always bruchstell 12-1235-136-1456-2-13456 # STETS (4.4 Zweiformige Kürzungen) always stets 23456-234 always stetson 23456-15-2345-234-135-1345 # TE (4.1 Lautgruppenkürzungen) midendword te 236 always teakbaum 2345-15-1-13-12-16-134 always teakholz 2345-15-1-13-125-135-123-1356 always teakhölz 2345-15-1-13-125-246-123-1356 always teakwald 2345-15-1-13-2456-25-145 always teakwäld 2345-15-1-13-2456-345-123-145 always team 2345-15-1-134 always tearoom 2345-15-1-1235-135-135-134 always teaser 2345-15-1-234-12456 endword teditor 2345-15-145-24-2345-135-1235 midword teditor 2345-15-145-24-2345-26 always tee 2345-15-15 always güteein 1245-1256-236-1246 midword teffek 2345-15-124-124-15-13 midword teffizien 2345-15-124-124-24-1356-24-14 midendword tehirn 236-125-24-1235-1345 midendword tei 2345-146 midendword tein 2345-1246 always jutein 245-136-236-35 midendword tekzem 2345-15-13-1356-12356 midword tepidem 2345-15-1234-24-145-12356 midword tepilep 2345-15-1234-24-123-15-1234 midword tepoch 2345-15-1234-135-1456 midendword tetat 2345-15-2345-1-2345 midendword tethik 2345-15-2345-125-24-13 midendword tethisch 2345-15-2345-125-24-156 always teuer 2345-126-12456 always teuf 2345-126-124 always teupitz 2345-126-1234-24-2345-1356 always teur 2345-126-1235 always teutoburg 2345-126-2345-135-12-136-1235-1245 always teuton 2345-126-2345-135-1345 midword tevaku 2345-15-1236-1-13-136 midword tevalu 2345-15-1236-25-136 midword tex 2345-15-6-1346 midword texan 236-6-1346-235 always latex 123-1-236-6-1346 midendword text 236-6-1346-2345 midendword textra 2345-15-6-1346-2345-1235-1 sufword textrand 2345-15-6-1346-2345-1235-235-145 midendword textrand 236-6-1346-2345-1235-235-145 endword texte 236-6-1346-236 midendword textet 236-6-1346-236-2345 endword textete 236-6-1346-236-236 midword texemp 2345-15-6-1346-12356-1234 midword texpand 2345-15-6-1346-1234-235-145 midendword texpansion 2345-15-6-1346-1234-235-234-245 midword texper 2345-15-6-1346-1234-12456 midword texplo 2345-15-6-1346-1234-123-135 midword texpor 2345-15-6-1346-1234-26 midendword texpress 2345-15-6-1346-1234-1235-15-2346 midendword texzess 2345-15-6-1346-1356-15-2346 always saateul 234-1-1-2345-126-123 midendword teau 2345-15-16 always raterund 1235-1-236-1235-256-145 before s begmidword karate 13-356-1-236 prfword karates 13-356-1-2345-123456 before a begmidword geräte 12346-1235-345-236 before a begmidword elite 13456-24-236 before a begmidword härte 125-345-1235-236 begmidword spinatess 234-1234-35-1-2345-15-2346 always geräteeigen 12346-1235-345-236-146-1245-14 begmidword geräteein 12346-1235-345-236-1246 begmidword geräteent 12346-1235-345-236-14-2345 always pentateuch 1234-14-2345-1-2345-126-1456 always cocteau 6-14-135-6-14-2345-15-16 begmidword kräfteein 5-13-124-15-1246 always beeftea 12-15-15-124-2345-15-1 always giftefeu 1245-24-124-2345-15-124-126 always duftessenz 145-136-124-2345-15-2346-14-1356 sufword achteck 1-1456-2345-15-46 always achteck 56-2345-15-46 always nachteul 1345-56-2345-126-123 sufword lichtecht 123-3456-2345-15-1456-2345 midendword lichtecht 456-2345-15-1456-2345 word lichtechte 123-3456-2345-15-1456-236 midendword lichtechte 456-2345-15-1456-236 always zuchteber 1356-136-1456-2345-15-12-12456 always drahtextension 145-1235-1-125-2345-15-6-1346-2345-14-234-245 begmidword eliteein 13456-24-236-1246 always eliteelf 13456-24-236-13456-124 begmidword friteus 124-1235-24-2345-126-234 always kakteen 13-1-13-236-14 always distrikteben 145-24-23456-1235-24-13-2345-15-12-14 begmidword halteein 125-25-236-1246 begmidword kälteein 13-345-123-236-1246 begmidword kälteempfind 13-345-123-236-12356-1234-124-35-145 begmidword kälteerzeug 13-345-123-236-12456-1356-126-1245 begmidword kälteex 13-345-123-236-15-6-1346 always zelteck 1356-13456-2345-15-46 always gesamtetat 12346-234-1-134-2345-15-2345-1-2345 always gesamtex 12346-234-1-134-2345-15-6-1346 always montezuma 134-135-1345-236-1356-136-134-1 begmidword ernteameis 12456-1345-236-1-134-146-234 begmidword ernteaus 12456-1345-236-16-234 begmidword ernteein 12456-1345-236-1246 begmidword ernteer 12456-1345-236-12456 always proteus 1234-1235-135-2345-126-234 always stripteas 23456-1235-24-1234-2345-15-1-234 always stripteus 23456-1235-24-1234-2345-126-234 begmidword dompteus 145-135-134-1234-2345-126-234 always hunderteck 125-256-145-12456-2345-15-46 begmidword werteein 2456-12456-236-1246 begmidword werteel 2456-12456-236-13456 always wertethik 2456-12456-2345-15-2345-125-24-13 always wertethisch 2456-12456-2345-15-2345-125-24-156 always fortexist 124-26-2345-15-6-1346-24-23456 begmidword portefeuill 1234-26-236-124-126-24-12345 always steelband 23456-15-15-123-12-235-145 begmidword gersteein 1245-12456-23456-15-1246 always glattechs 1245-123-1-2345-2345-15-1456-234 always bretteffekt 12-1235-15-2345-2345-15-124-124-15-13-2345 prfword bretteffekte 12-1235-15-2345-2345-15-124-124-15-13-236 begmidword balletteus 12-1-12345-15-2345-2345-126-234 begmidword wettess 2456-15-2345-2345-15-2346 always schnitteben 156-1345-24-2345-2345-15-12-14 begmidword fritteus 124-1235-24-2345-2345-126-234 always fauteuil 124-16-2345-126-24-123 begmidword leuteess 123-126-236-15-2346 always gutedel 1245-136-2345-15-145-13456 begmidword güteeigen 1245-1256-236-146-1245-14 always blutegel 12-123-136-2345-15-1245-13456 # TEh begmidword teh 2345-2356 before h begmidword geräte 12346-1235-345-236 begmidword geschäftehalber 1245-124-15-125 always rechtehand 1235-2345-15-125-145 always früchtehändler 124-1235-1256-1456-236-5-125-145-123-12456 before h begmidword white 2456-125-24-236 before h begmidword elite 13456-24-236 before h begmidword ernte 12456-1345-236 always remotehost 1235-12356-135-236-125-135-23456 before h begmidword warte 2456-356-236 before h begmidword gäste 1245-345-23456-15 begmidword restehauf 1235-15-23456-15-125-16-124 before h begmidword zugute 2-1356-1245-136-236 always hütehund 125-1256-236-125-256-145 always buxtehud 12-136-6-1346-236-125-136-145 begmidword ärztehon 345-1235-1356-236-125-135-1345 # TEl always tel 2345-13456 midendword telang 236-123-1245 midword teläng 236-5-123-1245 midword teleist 236-123-146-23456 midword teliefer 236-123-346-124-12456 midword telini 236-123-35-24 sufword tell 2345-15-12345 midendword tell 236-12345 midendword tellang 2345-13456-123-1245 midendword telläng 2345-13456-5-123-1245 midendword telliter 2345-13456-123-24-2345-12456 midendword tellos 2345-13456-123-135-234 begmidword kräftel 5-13-124-15-123 always wachtel 2456-56-2345-13456 always scheitel 156-146-2345-13456 before l begmidword seite 234-146-236 always whitelist 2456-125-24-236-123-24-23456 always kapitellang 13-1-1234-24-2345-13456-123-1245 always kapitelläng 13-1-1234-24-2345-13456-5-123-1245 always titel 2345-24-2345-13456 begmidword kältel 13-345-123-236-123 always mantel 134-235-2345-13456 always jahrzehntelang 245-1356-15-123-1245 always hotel 125-135-2345-13456 always hoteller 125-135-236-12345-12456 before l begmidword warte 2456-356-236 always jahrhundertelang 245-125-15-123-1245 before l begmidword werte 2456-12456-236 always gürtel 1245-1256-1235-2345-13456 always debattelos 145-15-12-1-2345-236-123-135-234 always sattel 234-1-2345-2345-13456 always schüttel 156-1256-2345-2345-13456 always beutelust 12-126-236-123-136-23456 always beutelüst 12-126-236-123-1256-23456 begmidword jutel 245-136-236-123 # TEm always tem 2345-12356 midword temanipul 236-134-235-24-1234-136-123 midendword temann 236-134-1345 midendword temänn 236-5-134-1345 midendword temaschin 236-134-156 midword temechan 236-134-15-1456-235 midendword temedizin 236-134-15-145-24-1356-35 midendword temess 236-134-15-2346 midendword temilieu 236-134-24-123-24-126 midendword temittel 236-134-2345 endword temmal 2345-12356-134 before m midendword apparate 1-1234-1234-356-1-236 before m midendword geräte 12346-1235-345-236 before m midendword geschäfte 1245-124-15 before m midendword kräfte 5-13-124-15 before m midendword rechte 1235-2345-15 prfword rechtem 1235-2345-12356 before m midendword gerüchte 12346-1235-1256-1456-236 always sitemap 234-24-236-134-1-1234 begmidword haltem 125-25-236-134 before m begmidword kälte 13-345-123-236 before m begmidword warte 2456-356-236 always portemonnaie 1234-26-236-134-135-1345-1345-1-24-15 prfword portemonnaies 1234-26-236-134-135-1345-1345-1-24-123456 before m begmidword gäste 1245-345-23456-15 before m begmidword leute 123-126-236 before m begmidword güte 1245-1256-236 prfword ärztem 345-1235-1356-2345-12356 before m begmidword ärzte 345-1235-1356-236 # TEn always ten 2345-14 endword tename 236-1345-1-134-15 midendword tenamen 236-1345-1-134-14 midendword tenummer 236-1345-136-1346-12456 always kräftenach 5-13-124-15-1345-56 begmidword seitenahm 234-146-236-1345-134 begmidword seitenehm 234-146-236-1345-125 always monteneg 134-135-1345-236-1345-15-1245 always gutenacht 1245-136-236-1345-56-2345 always gütenorm 1245-1256-236-1345-26-134 # TEr always ter 2345-12456 always räterepublik 1235-345-236-1235-13 before r midendword geräte 12346-1235-345-236 always städtereis 23456-345-145-236-1235-146-234 begmidword früchter 124-1235-1256-1456-236-1235 always halteraum 125-25-236-1235-16-134 always kältereg 13-345-123-236-1235-15-1245 always kälteresist 13-345-123-236-1235-123456-24-23456 always halteriegel 125-25-236-1235-346 always haltering 125-25-236-1235-35-1245 prfword halteringe 125-25-236-1235-35-12346 always halteräum 125-25-236-1235-34-134 always erntereif 12456-1345-236-1235-146-124 always warteraum 2456-356-236-1235-16-134 always warteräum 2456-356-236-1235-34-134 always werterechn 2456-12456-236-1235-15-1456-1345 before r begmidword gäste 1245-345-23456-15 always pusterohr 1234-136-23456-15-1235-135-125-1235 always pusteröhr 1234-136-23456-15-1235-246-125-1235 always beuterecht 12-126-236-1235-2345 always güteregelung 1245-1256-236-1235-15-1245-13456-136 begmidword ärzter 345-1235-1356-236-1235 # TEs always tes 2345-123456 midendword tesaal 236-234-1-1-123 midendword tesegen 236-234-15-1245-14 midendword teseil 236-234-146-123 endword teseite 236-234-146-236 midendword teseiten 236-234-146-2345-14 midendword teseriell 236-234-12456-24-15-12345 midendword tesetz 236-2-15 midendword tesiegel 236-234-346-1245-13456 endword tesignal 236-234-45-1345-1-123 midword tesignal 236-234-45-1345-25 midendword tesilo 236-234-24-123-135 midendword teskala 236-234-13-25-1 midendword teskalation 2345-123456-13-25-5-1345 midword tesoftwar 236-234-135-124-2345-2456-356 midendword tesoldat 236-234-135-123-145-1-2345 midendword tespannung 236-234-1234-235-1345-136 midword tespektr 236-234-1234-15-13-2345-1235 midendword tespezifisch 236-234-1234-15-1356-24-124-24-156 midendword tespiel 236-2-346 midendword tespray 236-234-1234-1235-1-6-13456 midendword tesystem 236-234-6-13456-23456-12356 endword tesäle 236-234-345-123-15 midendword tesälen 236-234-345-123-14 always ratesendung 1235-1-236-234-14-145-136 always kräftespiel 5-13-124-15-2-346 always rechtesystem 1235-2345-15-234-6-13456-23456-12356 always whitespac 2456-125-24-236-234-1234-1-6-14 always punktesamm 1234-2345-15-234-1-1346 always punktespiel 1234-2345-15-2-346 always punktesystem 1234-2345-15-234-6-13456-23456-12356 begmidword montesin 134-135-1345-236-234-35 always jutesack 245-136-236-234-1-46 always jutespinn 245-136-236-234-1234-35-1345 always jutesäck 245-136-236-234-345-46 # TEsch always tesch 236-156 midendword teschaft 236-156 midendword teschlag 236-156-1245 midendword teschlang 236-156-123-235-1245 endword teschlange 236-156-123-235-12346 midendword teschrift 236-156-2345 midendword teschwung 236-156-2456-256-1245 prfword weltesche 2456-13456-2345-15-156-15 prfword welteschen 2456-13456-2345-15-156-14 # TEss midendword tess 236-2346 sufword tess 2345-15-2346 always acetessig 1-6-14-15-2345-15-2346-45 prfword diabetesstar 145-24-1-23-2345-123456-23456-1-1235 always diabetesstar 145-24-1-23-2345-123456-23456-356 always nachtessen 1345-56-2345-15-2346-14 always fruchtessenz 124-1235-136-1456-2345-15-2346-14-1356 always quintessenz 6-12345-136-35-2345-15-2346-14-1356 always obstessig 135-12-23456-15-2346-45 always festessen 124-15-23456-15-2346-14 begmidword geistessch 1245-146-23456-123456-156 begmidword geistesst 1245-146-23456-123456-23456 # TEst sufword test 2345-15-23456 midendword test 236-23456 midendword testand 236-2-23456 midendword teständ 236-5-23456 midendword testell 236-2-13456 midendword testund 236-23456-256-145 midendword testünd 236-23456-1256-1345-145 always asphaltestrich 1-234-1234-125-25-2345-15-23456-1235-3456 always zementestrich 1356-12356-14-2345-15-23456-1235-3456 # TECHNIK (4.4 Zweiformige Kürzungen) syllable technik 2345-13 # TECHNISCH (4.4 Zweiformige Kürzungen) syllable technisch 2345-156 # TRAG (4.4 Zweiformige Kürzungen) always trag 2345-1245 always träg 5-2345-1245 sufword tetragon 2345-15-2345-1235-1-1245-135-1345 midendword tetragon 236-2345-1235-1-1245-135-1345 always arbitr 356-12-24-2345-1235 before g begmidword ultra 136-123-2345-1235-1 prfword astragal 1-23456-1235-1-1245-1-123 always astragal 1-23456-1235-1-1245-25 always estragon 15-23456-1235-1-1245-135-1345 before g begword extra 1346-2345-1235-1 before g midword extra 15-6-1346-2345-1235-1 # TREFF (4.4 Zweiformige Kürzungen) always treff 2345-124 # TROTZ (4.4 Zweiformige Kürzungen) always trotz 2345-1356 always trotzki 2345-1235-135-2345-1356-13-24 always trotzkismus 2345-1235-135-2345-1356-13-5-24 always trotzkistisch 2345-1235-135-2345-1356-13-5-156 always strotz 23456-1235-135-2345-1356 # ÜBER (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word über 1256 always über-\s 2-1256-36-0 word über'm 1256-6-134 word über'n 1256-6-1345 word über's 1256-6-234 always über 2-1256 always büberei 12-1256-12-12456-146 always trüber 2345-1235-1256-12-12456 sufword stüber 23456-1256-12-12456 prfword stüber 23456-1256-12-12456 # ÜBERHAUPT (4.4 Zweiformige Kürzungen) always überhaupt 1256-125 # ÜBRIG (4.4 Zweiformige Kürzungen) always übrig 1256-45 # UN (4.1 Lautgruppenkürzungen) word un 136-1345 always un-\s 256-36-0 always un 256 always un-\s 256-36-0 always un-,\s 256-36-2-0 sufword ausbaunummer 34-12-16-1345-136-1346-12456 midendword ausbaunummer 16-234-12-16-1345-136-1346-12456 always werbeun 2456-12456-23-256 always werbeunter 2456-12456-23-2-256 always reunier 1235-15-256-346-1235 always council 6-14-135-136-1345-6-14-24-123 always count 6-14-135-136-1345-2345 always mount 134-135-136-1345-2345 prfword mounte 134-135-136-1345-236 prfword mountest 134-135-136-1345-236-23456 always mountet 134-135-136-1345-236-2345 prfword mountete 134-135-136-1345-236-236 always mountetet 134-135-136-1345-236-236-2345 always mountetest 134-135-136-1345-236-236-23456 always thermounter 2345-125-12456-134-135-2-256 always tunichtgut 2345-136-2-1345-1245-136-2345 always bantuneger 12-235-2345-136-1345-15-1245-12456 always neuunter 1345-126-2-256 # UND (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word und 136 always und 2-136 always undank 256-145-13 always undatier 256-145-1-2345-346-1235 begmidword undefin 256-145-15-124-35 always undehn 256-145-2356-1345 always undekl 256-145-15-13-123 always undeklarier 256-145-15-13-123-356-346-1235 always undemokrat 256-145-2345 always undenk 256-145-14-13 always under 256-145-12456 always undestillier 256-145-15-23456-24-12345-346-1235 prfword undeutbar 256-145-126-2345-12-1-1235 begmidword undeutbar 256-145-126-2345-12-356 always undeutlich 256-145-126-2345-456 always undeutsch 256-145-156 always undezim 256-145-15-1356-24-134 always undialekt 256-145-24-25-15-13-2345 always undicht 256-145-3456-2345 prfword undichte 256-145-3456-236 always undichtest 256-145-3456-236-23456 always undifferenzier 256-145-24-124-124-12456-14-1356-346-1235 sufword undin 256-145-35 always unding 256-145-35-1245 prfword undinge 256-145-35-12346 always undiplomatisch 256-145-24-1234-123-135-134-1-2345-24-156 begmidword undiszi 256-145-24-234-1356-24 always undogmatisch 256-145-135-1245-134-1-2345-24-156 begmidword undokumentier 256-145-135-13-136-134-14-2345-346-1235 begmidword undotier 256-145-135-2345-346-1235 always undramatisch 256-145-1235-1-134-1-2345-24-156 always undulier 256-145-136-123-346-1235 always unduldsam 256-145-136-123-145-2346 always undurch 256-2-1456 always undynamisch 256-145-6-13456-1345-1-134-24-156 always bund 12-256-145 always secund 234-15-6-14-256-145 begmidword redundan 1235-15-145-256-145-235 always redundantwort 1235-15-145-2-136-235-2345-2456-26-2345 always dundee 145-256-145-15-15 always fund 124-256-145 always fünfund 124-1256-1345-124-2-136 sufword gund 1245-256-145 sufword gunda 1245-256-145-1 sufword gunde 1245-256-145-15 always gundel 1245-256-145-13456 always gunder 1245-256-145-12456 always gundula 1245-256-145-136-123-1 begmidword segund 234-15-1245-256-145 always kunigund 13-256-24-1245-256-145 always burgund 12-136-1235-1245-256-145 always hund 125-256-145 always schund 156-256-145 always kund 13-256-145 always lund 123-256-145 always kalundborg 13-25-256-145-12-26-1245 always alundum 25-256-145-136-134 always mund 134-256-145 always immund 24-1346-256-145 always bound 12-135-136-1345-145 always found 124-135-136-1345-145 sufword mound 134-135-136-1345-145 sufword pound 1234-135-136-1345-145 always round 1235-135-136-1345-145 always around 356-135-136-1345-145 always sound 234-135-136-1345-145 always spund 234-1234-256-145 always rund 1235-256-145 always korund 13-26-256-145 always vierund 1236-346-1235-2-136 always sund 234-256-145 midendword esund 15-234-256-145 always sechsund 234-15-1456-234-2-136 always stund 23456-256-145 always tund 2345-256-145 always tundurch 2345-256-2-1456 begword achtund 1-1456-2345-2-136 midendword achtund 56-2345-2-136 always kattun 13-1-2345-2345-256 always wund 2456-256-145 begword yund 6-13456-256-145 always hyundai 125-6-13456-256-145-1-24 # -UNG 4.2.1 a) Nachsilbenkürzungen midendword ung 136 midendword ungs 136-234 midword ungsauf 136-234-2-16 midendword ungstell 136-2-13456 begmidword ungeach 256-12346-56 always ungebunden 256-12346-12-256-145-14 always ungeheuer 256-12346-125-126-12456 always ungenau 256-12346-1345-16 always ungetüm 256-12346-2345-1256-134 always ungezogen 256-12346-1356-135-1245-14 always ungleich 256-1245-1456 always unglimpf 256-1245-123-24-134-1234-124 always ungültig 256-1245-1256-123-2345-45 begmidword braung 12-1235-16-1345-1245 begmidword braunge 12-1235-16-1345-12346 always braungelb 12-1235-16-1345-1245-13456-12 always bungalow 12-256-1245-25-135-2456 always bungee 12-256-1245-15-15 sufword dung 145-256-1245 always bedungen 23-145-256-1245-14 always pferdedung 1234-124-12456-145-15-145-256-1245 always gedungen 12346-145-256-1245-14 always schweinedung 156-2456-1246-15-145-256-1245 always schafdung 156-1-124-145-256-1245 always kuhdung 13-136-125-145-256-1245 always viehdung 1236-346-125-145-256-1245 always kameldung 13-1-134-13456-145-256-1245 always stalldung 23456-1-12345-145-256-1245 always ziegendung 1356-346-1245-14-145-256-1245 always elefantendung 13456-15-124-235-2345-14-145-256-1245 sufword verdungen 36-145-256-1245-14 always verdungen 1236-12456-145-256-1245-14 always fungier 124-256-1245-346-1235 always fungizid 124-256-1245-24-1356-24-145 syllable hunger 125-256-1245-12456 syllable hungrig 125-256-1245-1235-45 syllable hungry 125-256-1245-1235-6-13456 always dschungel 145-156-256-1245-13456 always jung 245-256-1245 prfword junge 245-256-12346 always jungem 245-256-1245-12356 always jungen 245-256-1245-14 always junger 245-256-1245-12456 always junges 245-256-1245-123456 always jungfer 245-256-1245-124-12456 prfword jungs 245-256-1245-234 sufword kung 13-256-1245 always kungel 13-256-1245-13456 prfword lunge 123-256-12346 sufword lungen 123-256-1245-14 always lungenmaschin 123-256-1245-14-134-156 always lunger 123-256-1245-12456 begmidword staublun 23456-16-12-123-256 always nibelung 1345-24-12-13456-256-1245 prfword nibelunge 1345-24-12-13456-256-12346 always gelungen 12346-123-256-1245-14 always schlungen 156-123-256-1245-14 always geschlungen 12346-156-123-256-1245-14 word exilungar 1346-24-123-256-1245-1-1235 begword exilungar 1346-24-123-256-1245-356 midword exilungar 15-6-1346-24-123-256-1245-356 endword exilungar 15-6-1346-24-123-256-1245-1-1235 always geklungen 12346-13-123-256-1245-14 always erklungen 12456-13-123-256-1245-14 sufword verklungen 36-13-123-256-1245-14 begmidword taucherlun 2345-16-1456-12456-123-256 always misslungen 134-24-2346-123-256-1245-14 begword mung 134-256-1245 always immun 24-1346-256 always immung 24-1346-136 prfword lounge 123-135-136-1345-12346 prfword lounges 123-135-136-1345-1245-123456 always young 6-13456-135-136-1345-1245 always pungier 1234-256-1245-346-1235 prfword runge 1235-256-12346 always rungentasch 1235-256-1245-14-2345-1-156 always rungenwagen 1235-256-1245-14-2456-1-1245-14 always drungen 145-1235-256-1245-14 always gerungen 12346-1235-256-1245-14 always steigerungen 23456-146-1245-12456-136-14 word verengerungen 36-14-1245-12456-136-14 midendword verengerungen 1236-12456-14-1245-12456-136-14 always sprung 234-1234-1235-256-1245 always errungen 12456-1235-256-1245-14 always zerrungen 1356-12456-1235-136-14 always sperrungen 234-1234-12456-1235-136-14 sufword entrungen 2346-1235-256-1245-14 always entrungen 14-2345-1235-256-1245-14 always wrungen 2456-1235-256-1245-14 sufword sung 234-256-1245 always besungen 23-234-256-1245-14 always gesungen 12346-234-256-1245-14 always samsung 234-1-134-234-256-1245 begword tungst 2345-256-1245-23456 always zuungunsten 2-1356-256-1245-256-23456-14 always schwung 156-2456-256-1245 always geschwung 12346-156-2456-256-1245 always zwungen 1356-2456-256-1245-14 prfword zunge 1356-256-12346 always zung 1356-136 sufword zungen 1356-256-1245-14 always landzungen 123-235-145-1356-256-1245-14 always pferdzungen 1234-124-12456-145-1356-256-1245-14 endword dezungen 145-15-1356-256-1245-14 always seezungen 234-15-15-1356-256-1245-14 always betonzungen 23-2345-135-1345-1356-256-1245-14 always flammenzungen 124-123-1-1346-14-1356-256-1245-14 always ochsenzungen 135-1456-234-14-1356-256-1245-14 always lästerzungen 123-345-23456-12456-1356-256-1245-14 midendword erzungen 12456-1356-256-1245-14 midendword sabberzungen 234-1-12-12-12456-1356-256-1245-14 always unterzungen 2-256-1356-256-1245-14 midendword eszungen 123456-1356-256-1245-14 midendword sszungen 2346-1356-256-1245-14 midendword szungen 234-1356-256-1245-14 always kreuzunglücklich 13-1235-126-1356-256-1245-46-456 midword zungs 1356-136-234 # UNTER (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word unter 256 always unter-\s 2-256-36-0 always unter 2-256 always gelaunter 12346-123-16-1345-2345-12456 always geraunter 12346-1235-16-1345-2345-12456 always bräunter 12-1235-34-1345-2345-12456 always staunter 23456-16-1345-2345-12456 always zäunter 1356-34-1345-2345-12456 always bunter 12-256-2345-12456 always siebunter 234-346-12-2-256 always schreibunter 156-12-2-256 begmidword farbunter 124-356-12-2-256 always erbuntertänig 12456-12-2-256-2345-345-1345-45 always subunter 234-136-12-2-256 always neunter 1345-126-1345-2345-12456 always routineunter 1235-135-136-2345-35-15-2-256 sufword gunter 1245-256-2345-12456 always hunter 125-256-2345-12456 always schuhunter 156-136-125-2-256 always kunterbun 13-256-2345-12456-12-256 always munter 134-256-2345-12456 always islamunter 24-234-123-1-134-2-256 always systemunter 234-6-13456-23456-12356-2-256 always heimunter 125-146-134-2-256 always geheimunter 12346-125-146-134-2-256 always filmunter 124-24-123-134-2-256 begword programmunter 12345-1245-1235-1-1346-2-256 midword programmunter 1234-1235-135-1245-1235-1-1346-2-256 always schwimmunter 156-2456-24-1346-2-256 always stromunter 23456-1235-135-134-2-256 always atomunter 1-2345-135-134-2-256 always schirmunter 156-24-1235-134-2-256 always counter 6-14-135-136-1345-2345-12456 after z midendword unter 2-256 always zunter 1356-2-256 # VER- (4.2.1 Vorsilbenkürzungen) begword ver 36 always -ver 36-1236-12456 always -verhältnis 36-1236-125 word vera 1236-12456-1 sufword veracruz 1236-12456-1-6-14-1235-136-1356 sufword veranda 1236-12456-235-145-1 sufword veranden 1236-12456-235-145-14 word veras 1236-12456-1-234 word verb 1236-12456-12 word verba 1236-12456-12-1 word verbal 1236-12456-12-1-123 begword verbal 1236-12456-12-25 begword verball 36-12-1-12345 sufword verbatim 1236-12456-12-1-2345-24-134 word verben 1236-12456-12-14 begword verbf 1236-12456-12-124 begword verbg 1236-12456-12-1245 word verbis 1236-12456-12-24-234 begword verbk 1236-12456-12-13 begword verbm 1236-12456-12-134 word verbs 1236-12456-12-234 begword verbstell 1236-12456-12-2-13456 word verbum 1236-12456-12-136-134 word verbums 1236-12456-12-136-134-234 begword verbw 1236-12456-12-2456 begword verbwieder 1236-12456-12-346-145 sufword verbzusatz 1236-12456-12-2-1356-234-1356 begword verbzusätz 1236-12456-12-2-1356-5-234-1356 sufword vercingetorix 1236-12456-6-14-35-12346-2345-26-24-6-1346 word verdi 1236-12456-145-24 sufword verdikt 1236-12456-145-24-13-2345 word verdikte 1236-12456-145-24-13-236 word verdis 1236-12456-145-24-234 word verdun 1236-12456-145-256 word verduns 1236-12456-145-256-234 sufword verena 1236-12456-14-1 sufword vergil 1236-12456-1245-24-123 sufword vergilb 36-1245-24-123-12 sufword vergilt 36-1245-24-123-2345 word vergine 1236-12456-1245-35-15 sufword verifikation 1236-12456-24-124-24-13-5-1345 sufword verifizier 1236-12456-24-124-24-1356-346-1235 sufword verita 1236-12456-24-2345-1 sufword verlain 1236-12456-123-1-24-1345 sufword vermeer 1236-12456-134-15-15-1235 sufword vermont 1236-12456-134-135-1345-2345 begword veron 1236-12456-135-1345 word vers 1236-12456-234 word versace 1236-12456-234-1-6-14-15 word versaces 1236-12456-234-1-6-14-123456 begword versaill 1236-12456-234-1-24-12345 word versal 1236-12456-234-1-123 begword versal 1236-12456-234-25 begword versalz 36-234-25-1356 always versanf 1236-12456-234-235-124 always versart 1236-12456-234-356-2345 begword versb 1236-12456-234-12 begword versd 1236-12456-234-145 word verse 1236-12456-234-15 begword versemach 1236-12456-234-15-134-56 word versen 1236-12456-234-14 word versepos 1236-12456-234-15-1234-135-234 word versepen 1236-12456-234-15-1234-14 begword verserzähl 1236-12456-234-12456-5-1356-123 word verses 1236-12456-234-123456 sufword verseschmied 1236-12456-234-15-156-134-346-145 begword versf 1236-12456-234-124 begword versier 1236-12456-234-346-1235 sufword version 1236-12456-234-245 begword versläng 1236-12456-234-5-123-1245 begword verslehr 1236-12456-234-123-2356-1235 begword versk 1236-12456-234-13 sufword versklav 36-234-13-123-1-1236 begword verskomödi 1236-12456-234-13-135-134-246-145-24 begword versm 1236-12456-234-134 begword versn 1236-12456-234-1345 begword versniff 36-234-1345-24-124-124 begword versnob 36-234-1345-135-12 sufword verspaar 1236-12456-234-1234-1-1-1235 word versroman 1236-12456-234-1235-135-134-1-1345 begword versroman 1236-12456-234-1235-135-134-235 sufword versspiel 1236-12456-234-2-346 word versus 1236-12456-234-136-234 always vertebrat 1236-12456-236-12-1235-1-2345 always vertigo 1236-12456-2345-24-1245-135 word vertikal 1236-12456-2345-24-13-1-123 begword vertikal 1236-12456-2345-24-13-25 word verum 1236-12456-136-134 word verve 1236-12456-1236-15 # VERHÄLTNIS (4.4 Zweiformige Kürzungen) always verhältnis 1236-125 # VIEL (4.4 Zweiformige Kürzungen) always viel 1236-123 # VIELLEICHT (4.4 Zweiformige Kürzungen) always vielleicht 1236-2345 # VOLK VÖLK (4.4 Zweiformige Kürzungen) always volk 1236-13 always völk 5-1236-13 word volker 1236-135-123-13-12456 word volkers 1236-135-123-13-12456-234 always volketswil 1236-135-123-13-15-2345-234-2456-24-123 sufword volkhard 1236-135-123-13-125-356-145 sufword volkmann 1236-135-123-13-134-235-1345 word volkmar 1236-135-123-13-134-1-1235 word volkmars 1236-135-123-13-134-356-234 # VOLL (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word voll 12345 always voll-\s 2-12345-36-0 always voll 2-12345 always völl 5-12345 always volley 1236-135-12345-15-6-13456 # VOM (4.4 Zweiformige Kürzungen) always vom 1236-134 word servomotor 234-12456-1236-135-134-135-2345-135-1235 begword servomotor 234-12456-1236-135-134-135-2345-26 always ovomalt 135-1236-135-134-25-2345 # VON (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word von 1236 always von-\s 2-1236-36-0 always von 2-1236 sufword avon 1-1236-135-1345 sufword savona 234-1-1236-135-1345-1 sufword devon 145-15-1236-135-1345 syllable yvonn 6-13456-1236-135-1345-1345 # VOR (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word vor 26 always vor-\s 2-26-36-0 always vor 2-26 always voraus 2-26-16-234 always favorisier 124-1-1236-26-24-234-346-1235 always favorit 124-1-1236-26-24-2345 word flavor 124-123-1-1236-135-1235 always flavor 124-123-1-1236-26 always bravoruf 12-1235-1-1236-135-1235-136-124 always ivorer 24-1236-26-12456 always ivory 24-1236-26-6-13456 begmidword herbivor 125-12456-12-24-1236-26 begword livorn 123-24-1236-26-1345 begword omnivor 135-134-1345-24-1236-26 begword karnivor 13-356-1345-24-1236-26 midword tivor 2345-24-1236-26 always yvorn 6-13456-1236-26-1345 # WAHR WÄHR (4.4 Zweiformige Kürzungen) always wahr 2456-125 always währ 5-2456-125 # WÄHREND (4.4 Zweiformige Kürzungen) always während 345-145 # WAR WÄR (4.3.3 Einformige Kürzungen, alleinstehend oder am Wortanfang) word war 356 word wär 5-356 word ware 356-15 word wäre 5-356-15 sufword waren 356-14 word wären 5-356-14 word wärest 5-356-15-23456 word wäret 5-356-15-2345 word warst 356-23456 word wärst 5-356-23456 word wärt 5-356-2345 word are 1-1235-15 word aren 1-1235-14 # -WÄRTS 4.2.1 a) Nachsilbenkürzungen midendword wärts 2456 # WAS (4.3.1 Einformige Wortkürzungen, nur alleinstehend) word was 2456 # WEG (4.4 Zweiformige Kürzungen) always weg 2456-1245 word wega 2456-15-1245-1 word wegas 2456-15-1245-1-234 before h midword wege 2456-1245-15 prfword weggen 2456-15-1245-1245-14 prfword weggens 2456-15-1245-1245-14-234 always schwegler 156-2456-15-1245-123-12456 always nimwegen 1345-24-134-2456-15-1245-14 always norwegen 1345-26-2456-15-1245-14 always norweger 1345-26-2456-15-1245-12456 always norwegisch 1345-26-2456-15-1245-24-156 always wegerich 2456-15-1245-12456-3456 # WEIT (4.4 Zweiformige Kürzungen) always weit 2456-2345 always schweitzer 156-2456-146-2345-1356-12456 always zweit 1356-2456-146-2345 always reizweiter 1235-146-1356-2456-2345-12456 always schweizweit 156-2456-146-1356-2456-2345 prfword zweite 1356-2456-146-236 always zweitemal 1356-2456-146-236-134 # WENIG (4.4 Zweiformige Kürzungen) always wenig 2456-45 # WENN (4.4 Zweiformige Kürzungen) always wenn 2456-1345 sufword wenner 2456-14-1345-12456 always schwenning 156-2456-14-1345-35-1245 always löwen 123-246-2456-14 # WESENTLICH (4.4 Zweiformige Kürzungen) always wesentlich 2456-456 # WEIS (4.3.6 Kommakürzungen) always weis 2-146 always weisel 2456-146-234-13456 always budweiser 12-136-145-2456-146-234-12456 always zweisait 1356-2456-146-234-1-24-2345 always zweisam 1356-2456-146-2346 always zweiseit 1356-2456-146-234-146-2345 always zweisemest 1356-2456-146-234-12356-15-23456 always zweisilb 1356-2456-146-234-24-123-12 always zweisch 1356-2456-146-156 begmidword zweisimm 1356-2456-146-234-24-1346 always zweisitz 1356-2456-146-2-24 always zweisprach 1356-2456-146-234-1234 always zweisp 1356-2456-146-234-1234 begmidword zweist 1356-2456-146-23456 prfword zweist 1356-2456-146-23456 always zweistand 1356-2456-146-2-23456 always zweiständ 1356-2456-146-5-23456 always zweistell 1356-2456-146-2-13456 always zweistund 1356-2456-146-23456-256-145 sufword entzwei 2346-1356-2456-146 always entzwei 14-2345-1356-2456-146 # WELCH (4.3.4 Einformige Kürzungen, alleinstehend, mit Endungen oder in Wortverbindungen) always welch 13456 # WERD (4.3.6 Kommakürzungen) always werd 2-2456 word werder 2456-12456-145-12456 word werdern 2456-12456-145-12456-1345 word werders 2456-12456-145-12456-234 begword schwerd 156-2456-12456-145 syllable beschwerd 23-156-2456-12456-145 always friedrichswerder 124-1235-346-145-1235-3456-234-2456-12456-145-12456 always hoyerswerda 125-135-6-13456-12456-234-2456-12456-145-1 # WIE (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word wie 126 word wie's 126-6-234 always wieso 2-126-2-1234 always wieviel 2-126-1236-123 always wieweit 2-126-2456-2345 always wiewohl 2-126-2456-123 always irgendwie 24-1245-2-126 always gleichwie 1245-1456-2-126 always inwiefern 35-2-126-124-12456-1345 always sowie 2-1234-2-126 always sowieso 2-1234-2-126-2-1234 always anderswie 2-12456-234-2-126 always sonstwie 234-135-1345-23456-2-126 # WIEDER (4.4 Zweiformige Kürzungen) always wieder 346-145 # WILL (4.4 Zweiformige Kürzungen) always will 2456-12345 always willard 2456-24-12345-356-145 always willebrand 2456-24-12345-15-12-1235-235-145 sufword willem 2456-24-12345-12356 word willi 2456-24-12345-24 always william 2456-24-12345-24-1-134 always willibald 2456-24-12345-24-12-25-145 sufword willie 2456-24-12345-346 word willis 2456-24-12345-24-234 word willy 2456-24-12345-6-13456 word willys 2456-24-12345-6-13456-234 always goodwill 1245-135-135-145-2456-24-12345 always schwill 156-2456-24-12345 begword swill 234-2456-24-12345 word zwille 1356-2456-24-12345-15 word zwillen 1356-2456-24-12345-14 always zwillich 1356-2456-24-12345-3456 prfword zwillinge 1356-2456-24-12345-35-12346 always zwilling 1356-2456-24-12345-35-1245 # WIR (4.4 Zweiformige Kürzungen) word wir 2456-1235 word wir's 2456-1235-6-234 # WIRD (4.4 Zweiformige Kürzungen) always wird 2456-145 # WIRK (4.4 Zweiformige Kürzungen) always wirk 2456-13 # WIRST (4.4 Zweiformige Kürzungen) always wirst 2456-23456 # WIRTSCHAFT (4.4 Zweiformige Kürzungen) always wirtschaft 2456-156 always wirtschafts 2456-156-234 # WISS (4.4 Zweiformige Kürzungen) always wiss 2456-2346 # Alte Rechtschreibung always wiß 2456-2346 sufword swiss 234-2456-24-2346 # WOHL (4.4 Zweiformige Kürzungen) always wohl 2456-123 sufword rowohlt 1235-135-2456-135-125-123-2345 sufword grotewohl 1245-1235-135-236-2456-135-125-123 # WOLL WÖLL (4.3.6 Kommakürzungen) always woll 2-135 always wöll 5-135 begmidword wollespinn 2-135-15-234-1234-35-1345 always wollust 2456-135-123-123-136-23456 always wollüst 2456-135-123-123-1256-23456 always schwoll 156-2456-135-12345 begmidword geschwoll 12346-156-2456-135-12345 always schwöll 156-2456-246-12345 begword zwoll 1356-2456-135-12345 # WORDEN (4.4 Zweiformige Kürzungen) always worden 135-14 # WURD (4.3.5 Einformige Kürzungen, nur mit Erweiterung) word wurd 2456-136-1235-145 begword wurd 136 begword innewurd 35-1345-15-136 # WÜRD (4.3.5 Einformige Kürzungen, nur mit Erweiterung) word würd 2456-1256-1235-145 always würd 1256 always würd's 1256-6-234 always würdig 2456-1256-1235-145-45 # X (4.1 Lautgruppenkürzungen) word x 6-1346 always x 6-1346 # Grossgeschriebene Wortanfänge erhalten sonst keinen Pt.6! context ["X"]$u @6-1346 # Y (4.1 Lautgruppenkürzungen) word y 6-13456 always y 6-13456 # Grossgeschriebene Wortanfänge erhalten sonst keinen Pt.6! context ["Y"]$u @6-13456 # ZAHL ZÄHL (4.4 Zweiformige Kürzungen) always zahl 1356-123 always zähl 5-1356-123 always zählebig 1356-345-125-123-12-45 always rübezahl 1235-1256-23-1356-1-125-123 # ZEIT (4.4 Zweiformige Kürzungen) always zeit 1356-2345 word zeiter 1356-146-2345-12456 word zeiters 1356-146-2345-12456-234 sufword prophezei 12345-1234-125-15-1356-146 midendword prophezei 1234-1235-135-1234-125-15-1356-146 # ZU (4.3.2 Einformige Kürzungen, alleinstehend oder in Wortverbindungen) word zu 1356 always zu-\s 2-1356-36-0 always zu 2-1356 prfword zuber 1356-136-12-12456 sufword zuberbühler 1356-136-12-12456-12-1256-125-123-12456 prfword zubers 1356-136-12-12456-234 always azubi 1-1356-136-12-24 always zucc 1356-136-6-14-6-14 always zucch 1356-136-6-14-1456 always zucht 1356-136-1456-2345 always zuck 1356-136-46 begmidword venezuel 1236-14-15-1356-136-13456 always salzuflen 234-25-1356-136-124-123-14 prfword zug 1356-136-1245 begmidword zugb 1356-136-1245-12 always zugrabauk 1356-136-1245-1235-1-12-16-13 begmidword zugreinig 1356-136-1245-1235-1246-45 begmidword herumzu 125-12456-136-134-2-1356 begmidword herumzupf 125-12456-136-134-1356-136-1234-124 always anzugärmel 235-1356-136-1245-345-1235-134-13456 always eilzug 146-123-1356-136-1245 always sattelzug 234-1-2345-2345-13456-1356-136-1245 always bevorzug 23-2-26-1356-136-1245 prfword bevorzuge 23-2-26-1356-136-12346 before s begmidword zugs 1356-136-1245-234 begmidword zugaukel 2-1356-1245-16-13-13456 begmidword zugeb 2-1356-12346-12 begmidword zugebet 2-1356-12346-23-2345 # HOMONYM begmidword zugreif 2-1356-1245-1235-146-124 prfword zugst 1356-136-1245-23456 always zugabteil 1356-136-1245-1-12-2345-146-123 always zugabfahr 1356-136-1245-1-12-2-1235 always zuganschluss 1356-136-1245-235-156-123-136-2346 always zuganschlüss 1356-136-1245-235-156-123-1256-2346 begmidword zugbalk 1356-136-1245-12-25-13 always zugband 1356-136-1245-12-235-145 begmidword zugbänd 1356-136-1245-12-345-1345-145 begmidword zugbr 1356-136-1245-12-1235 always zugbügel 1356-136-1245-12-1256-1245-13456 begmidword zugbe 1356-136-1245-23 before d begmidword zug 1356-136-1245 prfword zuge 1356-136-12346 begmidword zuge 2-1356-12346 always zugebunden 2-1356-12346-12-256-145-14 always zugegen 2-1356-2-1245 begmidword zugeh 2-1356-1245-2356 begmidword zugehab 2-1356-12346-2-125 begmidword zugehak 2-1356-12346-125-1-13 always zugehalten 2-1356-12346-125-25-2345-14 begmidword zugehämmer 2-1356-12346-125-345-1346-12456 begmidword zugehäng 2-1356-12346-125-345-1345-1245 begmidword zugehef 2-1356-12346-125-15-124 begmidword zugeheil 2-1356-12346-125-146-123 begmidword zugehopp 2-1356-12346-125-135-1234-1234 always zugehör 2-1356-12346-125-246-1235 begmidword zugehump 2-1356-12346-125-136-134-1234 begmidword zugent 1356-136-1245-14-2345 always lastzug 123-1-23456-1356-136-1245 begmidword zugemal 2-1356-12346-134-25 prfword zugehe 2-1356-1245-2356-15 prfword zugehen 2-1356-1245-2356-14 always zugehend 2-1356-1245-2356-14-145 prfword zugeher 2-1356-1245-2356-12456 always zugehfrau 2-1356-1245-2356-124-1235-16 prfword zugehst 2-1356-1245-2356-23456 prfword zugeht 2-1356-1245-2356-2345 prfword zugeinricht 1356-136-1245-1246-2-3456 prfword zuger 1356-136-1245-12456 sufword zugerin 1356-136-1245-12456-35 always zugerland 1356-136-1245-12456-123-235-145 begmidword zugerländ 1356-136-1245-12456-123-345-1345-145 always zugersee 1356-136-1245-12456-234-15-15 prfword zuges 1356-136-1245-123456 before f begmidword zug 1356-136-1245 before g begmidword zug 1356-136-1245 before h begmidword zug 1356-136-1245 before j begmidword zug 1356-136-1245 always zugig 1356-136-1245-45 before k begmidword zug 1356-136-1245 always zugkräft 1356-136-1245-5-13-124 always zuglang 1356-136-1245-123-1245 always zugläng 1356-136-1245-5-123-1245 always zuglast 1356-136-1245-123-1-23456 always zuglein 1356-136-1245-123-1246 always zugloch 1356-136-1245-123-135-1456 always zuglöch 1356-136-1245-123-246-1456 always zugluft 1356-136-1245-123-136-124-2345 before m begmidword zug 1356-136-1245 before n begmidword zug 1356-136-1245 always zugober 1356-136-1245-135-12-12456 always zugochs 1356-136-1245-135-1456-234 always zugraub 1356-136-1245-1235-16-12 always zugräub 1356-136-1245-1235-34-12 always zugrecht 1356-136-1245-1235-2345 always zugreis 1356-136-1245-1235-146-234 begmidword zugrestaur 1356-136-1245-1235-15-23456-16-1235 always zugroll 1356-136-1245-1235-135-12345 before s begmidword zug 1356-136-1245 before s begmidword zugs 1356-136-1245-234 before t begmidword zug 1356-136-1245 always bezug 23-1356-136-1245 always zugüber 1356-136-1245-2-1256 always zugunglück 1356-136-1245-256-1245-46 before kpvw begmidword zug 1356-136-1245 before z begmidword zug 1356-136-1245 after z midendword uhr 136-125-1235 always zuhr 1356-136-125-1235 always zuider 1356-136-24-145-12456 always suzuki 234-136-1356-136-13-24 always lapislazuli 123-1-1234-24-234-123-1-1356-136-123-24 always zull 1356-136-12345 always zulp 1356-136-123-1234 always zulu 1356-136-123-136 begmidword abzuluchs 1-12-2-1356-123-136-1456-234 begmidword abzulutsch 1-12-2-1356-123-136-2345-156 always zuluft 2-1356-123-136-124-2345 always zulugen 2-1356-123-136-1245-14 begmidword pelzum 1234-13456-1356-136-134 midendword zunabhängig 1356-256-1-12-125-345-1345-1245-45 always zunder 1356-256-145-12456 begmidword schmerzun 156-134-12456-1356-256 always zunft 1356-256-124-2345 # siehe -ung zunge # siehe -ung zungen always münzunion 134-1256-1345-1356-256-24-135-1345 always zupf 1356-136-1234-124 begmidword zupfeif 2-1356-1234-124-146-124 begmidword zupferch 2-1356-1234-124-12456-1456 begmidword zupflanz 2-1356-1234-124-123-235-1356 begmidword zupflüg 2-1356-1234-124-123-1256-1245 prfword zupflüge 2-1356-1234-124-123-1256-12346 begmidword zupfropf 2-1356-1234-124-1235-135-1234-124 begmidword putzutensi 1234-136-2345-1356-136-2345-14-234-24 always zutsch 1356-136-2345-156 always zuzel 1356-136-1356-13456 always frequenz 124-1235-15-6-12345-136-14-1356 # ZUM (4.4 Zweiformige Kürzungen) word zum 1356-134 always zumal 2-1356-134 word kurzum 13-1356-136-134 begmidword lizenzum 123-24-1356-14-1356-136-134 begmidword blitzum 12-123-24-2345-1356-136-134 begmidword schutzum 156-136-2345-1356-136-134 # ZUNÄCHST (4.4 Zweiformige Kürzungen) always zunächst 1356-1345 # ZUR (4.4 Zweiformige Kürzungen) word zur 1356-1235 always zurecht 2-1356-1235-2345 always zurr 1356-136-1235-1235 begmidword zurred 1356-1235-1235-15-145 begmidword zurruh 1356-1235-1235-136-125 begmidword zurruhesetz 1356-1235-1235-136-125-15-2-15 begmidword zurschau 1356-1235-156-16 begmidword zurver 1356-1235-1236-12456 word zurzeit 1356-1235-1356-2345 sufword azur 1-1356-136-1235 begmidword mazurk 134-1-1356-136-1235-13 begmidword karenzur 13-356-14-1356-136-1235 begmidword lizenzur 123-24-1356-14-1356-136-1235 begmidword kurzur 13-1356-136-1235 begmidword sturzursach 23456-136-1235-1356-136-1235-234-56 # ZURÜCK (4.4 Zweiformige Kürzungen) always zurück 1356-46 prfword zurücken 2-1356-1235-46-14 begmidword zurücken 2-1356-1235-46-14 begmidword zurückent 1356-46-14-2345 # ZUSAMMEN (4.4 Zweiformige Kürzungen) always zusammen 1356-234 # ZWISCHEN (4.4 Zweiformige Kürzungen) always zwischen 1356-2456 liblouis-2.5.3/tables/wiskunde.ctb0000664000175000017500000000261412161041546014066 00000000000000# # Copyright (C) 2010, 2011 DocArch . # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Flemish Braille Math Code (a.k.a. Woluwe code) # Created and maintained by Bert Frees # See also: « Handleiding Braillesymbolen Wiskunde » # (Gilbert Notaert, Marc Suij en Emmanuel Vandekerkhove, G.on Woluwe, 1984) # # ---------------------------------------------------------------------------------------------- include wiskunde-chardefs.cti include nl-BE-chardefs.cti include braille-patterns.cti include wiskunde-translation.cti # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/nl-BE-chardefs.cti0000664000175000017500000006074112161041546014723 00000000000000# # Copyright (C) 2010, 2011 by DocArch # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Dutch Braille (for Belgium and the Netherlands) # Created and maintained by Bert Frees # See also: « Braillestandaard voor algemeen gebruik in het Nederlandse taalgebied, # Van toepassing vanaf 1 september 2005 » # (Federatie Slechtzienden- en Blindenbelang en # Belgische Confederatie voor Blinden en Slechtzienden, 2005) # # ---------------------------------------------------------------------------------------------- # ============================================================================================== # SINGLE-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- include latinLetterDef6Dots.uti uplow \x00C0\x00E0 12356,12356 Àà LATIN CAPITAL LETTER A WITH GRAVE - LATIN SMALL LETTER A WITH GRAVE uplow \x00C1\x00E1 12356,12356 Ãá LATIN CAPITAL LETTER A WITH ACUTE - LATIN SMALL LETTER A WITH ACUTE uplow \x00C2\x00E2 16,16 Ââ LATIN CAPITAL LETTER A WITH CIRCUMFLEX - LATIN SMALL LETTER A WITH CIRCUMFLEX uplow \x00C3\x00E3 345,345 Ãã LATIN CAPITAL LETTER A WITH TILDE - LATIN SMALL LETTER A WITH TILDE uplow \x00C4\x00E4 345,345 Ää LATIN CAPITAL LETTER A WITH DIAERESIS - LATIN SMALL LETTER A WITH DIAERESIS uplow \x00C5\x00E5 345,345 Ã…Ã¥ LATIN CAPITAL LETTER A WITH RING ABOVE - LATIN SMALL LETTER A WITH RING ABOVE uplow \x00C6\x00E6 345,345 Ææ LATIN CAPITAL LETTER AE - LATIN SMALL LETTER AE uplow \x00C7\x00E7 12346,12346 Çç LATIN CAPITAL LETTER C WITH CEDILLA - LATIN SMALL LETTER C WITH CEDILLA uplow \x00C8\x00E8 2346,2346 Èè LATIN CAPITAL LETTER E WITH GRAVE - LATIN SMALL LETTER E WITH GRAVE uplow \x00C9\x00E9 123456,123456 Éé LATIN CAPITAL LETTER E WITH ACUTE - LATIN SMALL LETTER E WITH ACUTE uplow \x00CA\x00EA 126,126 Êê LATIN CAPITAL LETTER E WITH CIRCUMFLEX - LATIN SMALL LETTER E WITH CIRCUMFLEX uplow \x00CB\x00EB 1246,1246 Ëë LATIN CAPITAL LETTER E WITH DIAERESIS - LATIN SMALL LETTER E WITH DIAERESIS uplow \x00CC\x00EC 34,34 Ìì LATIN CAPITAL LETTER I WITH GRAVE - LATIN SMALL LETTER I WITH GRAVE uplow \x00CD\x00ED 34,34 Ãí LATIN CAPITAL LETTER I WITH ACUTE - LATIN SMALL LETTER I WITH ACUTE uplow \x00CE\x00EE 146,146 Îî LATIN CAPITAL LETTER I WITH CIRCUMFLEX - LATIN SMALL LETTER I WITH CIRCUMFLEX uplow \x00CF\x00EF 12456,12456 Ãï LATIN CAPITAL LETTER I WITH DIAERESIS - LATIN SMALL LETTER I WITH DIAERESIS uplow \x00D1\x00F1 12456,12456 Ññ LATIN CAPITAL LETTER N WITH TILDE - LATIN SMALL LETTER N WITH TILDE uplow \x00D2\x00F2 346,346 Òò LATIN CAPITAL LETTER O WITH GRAVE - LATIN SMALL LETTER O WITH GRAVE uplow \x00D3\x00F3 346,346 Óó LATIN CAPITAL LETTER O WITH ACUTE - LATIN SMALL LETTER O WITH ACUTE uplow \x00D4\x00F4 1456,1456 Ôô LATIN CAPITAL LETTER O WITH CIRCUMFLEX - LATIN SMALL LETTER O WITH CIRCUMFLEX uplow \x00D5\x00F5 246,246 Õõ LATIN CAPITAL LETTER O WITH TILDE - LATIN SMALL LETTER O WITH TILDE uplow \x00D6\x00F6 246,246 Öö LATIN CAPITAL LETTER O WITH DIAERESIS - LATIN SMALL LETTER O WITH DIAERESIS uplow \x00D9\x00F9 23456,23456 Ùù LATIN CAPITAL LETTER U WITH GRAVE - LATIN SMALL LETTER U WITH GRAVE uplow \x00DA\x00FA 23456,23456 Úú LATIN CAPITAL LETTER U WITH ACUTE - LATIN SMALL LETTER U WITH ACUTE uplow \x00DB\x00FB 156,156 Ûû LATIN CAPITAL LETTER U WITH CIRCUMFLEX - LATIN SMALL LETTER U WITH CIRCUMFLEX uplow \x00DC\x00FC 1256,1256 Üü LATIN CAPITAL LETTER U WITH DIAERESIS - LATIN SMALL LETTER U WITH DIAERESIS uplow \x1E9E\x00DF 2346,2346 ẞß LATIN CAPITAL LETTER SHARP S - LATIN SMALL LETTER SHARP S space \x0009 9 HORIZONTAL TABULATION space \x000A 0 LINE FEED space \x000C 0 FORM FEED space \x000D 0 CARRIAGE RETURN space \x001B 1b ESCAPE space \x0020 0 SPACE punctuation \x0021 235 ! EXCLAMATION MARK punctuation \x0022 2356 " QUOTATION MARK sign \x0024 145 $ DOLLAR SIGN sign \x0025 123456 % PERCENT SIGN sign \x0026 12346a & AMPERSAND punctuation \x0027 3 ' APOSTROPHE punctuation \x0028 236 ( LEFT PARENTHESIS punctuation \x0029 356 ) RIGHT PARENTHESIS sign \x002A 35 * ASTERISK math \x002B 235a + PLUS SIGN punctuation \x002C 2 , COMMA punctuation \x002D 36 - HYPHEN-MINUS punctuation \x002E 256 . FULL STOP math \x002F 34 / SOLIDUS include digits6Dots.uti punctuation \x003A 25 : COLON punctuation \x003B 23 ; SEMICOLON math \x003D 2356 = EQUALS SIGN punctuation \x003F 26 ? QUESTION MARK sign \x0040 345 @ COMMERCIAL AT punctuation \x005B 12356 [ LEFT SQUARE BRACKET punctuation \x005D 23456 ] RIGHT SQUARE BRACKET sign \x005E 34 ^ CIRCUMFLEX ACCENT sign \x005F 456 _ LOW LINE punctuation \x0060 3 ` GRAVE ACCENT punctuation \x007B 12356 { LEFT CURLY BRACKET punctuation \x007D 23456 } RIGHT CURLY BRACKET math \x007E 5-26 ~ TILDE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- sign \x0080 15 € - ANSI: EURO-CURRENCY SIGN - MACROMAN: A DIAERESIS punctuation \x0082 3 ‚ BREAK PERMITTED HERE - ANSI: SINGLE LOW-9 QUOTATION MARK - MACROMAN: C CEDILLA punctuation \x0084 2356 „ - ANSI: DOUBLE LOW-9 QUOTATION MARK - MACROMAN: N TILDE sign \x0086 235 † START OF SELECTED AREA - ANSI: DAGGER - MACROMAN: U DIAERESIS punctuation \x0088 34 ˆ CHARACTER TABULATION SET - ANSI: MODIFIER LETTER CIRCUMFLEX ACCENT - MACROMAN: A GRAVE punctuation \x008B 3 ‹ PARTIAL LINE FORWARD - ANSI: SINGLE LEFT-POINTING ANGLE QUOTATION MARK - MACROMAN: A TILDE punctuation \x0091 3 ‘ PRIVATE USE ONE - ANSI: LEFT SINGLE QUOTATION MARK - MACROMAN: E DIAERESIS punctuation \x0092 3 ’ PRIVATE USE TWO - ANSI: RIGHT SINGLE QUOTATION MARK - MACROMAN: I ACUTE punctuation \x0093 2356 “ SET TRANSMIT STATE - ANSI: LEFT DOUBLE QUOTATION MARK - MACROMAN: I GRAVE punctuation \x0094 2356 †CANCEL CHARACTER - ANSI: RIGHT DOUBLE QUOTATION MARK - MACROMAN: I CIRCUMFLEX sign \x0095 5-256 • MESSAGE WAITING - ANSI: BULLET - MACROMAN: I DIAERESIS punctuation \x0096 36 – START OF GUARDED AREA - ANSI: EN DASH - MACROMAN: N TILDE punctuation \x0097 36 — END OF GUARDED AREA - ANSI: EM DASH - MACROMAN: O ACUTE punctuation \x009B 3 › CONTROL SEQUENCE INTRODUCER - ANSI: SINGLE RIGHT-POINTING ANGLE QUOTATION MARK - MACROMAN: O TILDE space \x00A0 a   NO-BREAK SPACE punctuation \x00A1 235 ¡ INVERTED EXCLAMATION MARK sign \x00A2 14 ¢ CENT SIGN sign \x00A3 1234 £ POUND SIGN sign \x00A5 13456 Â¥ YEN SIGN sign \x00A7 346 § SECTION SIGN punctuation \x00AB 2356 « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00AD 367 ­ SOFT HYPHEN sign \x00B4 3 ´ ACUTE ACCENT punctuation \x00BB 2356 » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00BF 26 ¿ INVERTED QUESTION MARK math \x00D7 236 × MULTIPLICATION SIGN math \x00F7 256 ÷ DIVISION SIGN # ---------------------------------------------------------------------------------------------- # Unicode 0100..017F Latin Extended-A # ---------------------------------------------------------------------------------------------- uplow \x0191\x0192 124,124 Ƒƒ LATIN CAPITAL LETTER F WITH HOOK - LATIN SMALL LETTER F WITH HOOK # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2010 36 †HYPHEN punctuation \x2011 36 ‑ NON-BREAKING HYPHEN punctuation \x2013 36 – EN DASH punctuation \x2014 36 — EM DASH punctuation \x2018 3 ‘ LEFT SINGLE QUOTATION MARK punctuation \x2019 3 ’ RIGHT SINGLE QUOTATION MARK punctuation \x201C 2356 “ LEFT DOUBLE QUOTATION MARK punctuation \x201D 2356 †RIGHT DOUBLE QUOTATION MARK punctuation \x201E 2356 „ DOUBLE LOW-9 QUOTATION MARK punctuation \x201F 2356 ‟ DOUBLE HIGH-REVERSED-9 QUOTATION MARK sign \x2020 235 † DAGGER # ---------------------------------------------------------------------------------------------- # Unicode 20A0..20CF Currency Symbols # ---------------------------------------------------------------------------------------------- sign \x20AC 15 € EURO SIGN # ---------------------------------------------------------------------------------------------- # Unicode 2200..22FF Mathematical Operators # ---------------------------------------------------------------------------------------------- math \x2212 36 − MINUS SIGN math \x2215 34 ∕ DIVISION SLASH math \x2217 35 ∗ ASTERISK OPERATOR # ============================================================================================== # MULTI-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- sign \x0023 5-3456 # NUMBER SIGN math \x003C 5-246 < LESS-THAN SIGN math \x003E 5-135 > GREATER-THAN SIGN sign \x005C 5-16 \ REVERSE SOLIDUS math \x007E 5-26 ~ TILDE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- punctuation \x0085 256-256-256 … NEXT LINE (NEL) - ANSI: HORIZONTAL ELLIPSIS - MACROMAN: O DIAERESIS sign \x0089 123456-123456 ‰ CHARACTER TABULATION WITH JUSTIFICATION - ANSI: PER MILLE SIGN - MACROMAN: A CIRCUMFLEX sign \x0098 5-26 Ëœ START OF STRING - ANSI: SMALL TILDE - MACROMAN: O GRAVE sign \x0099 5-2345-134 â„¢ - ANSI: TRADE MARK SIGN - MACROMAN: O CIRCUMFLEX sign \x00A9 5-14 © COPYRIGHT SIGN sign \x00AE 5-1235 ® REGISTERED SIGN sign \x00B0 4-356 ° DEGREE SIGN math \x00B2 34-3456-12 ² SUPERSCRIPT TWO math \x00B3 34-3456-14 ³ SUPERSCRIPT THREE sign \x00B5 56-134 µ MICRO SIGN math \x00B7 5-256 · MIDDLE DOT sign \x00B9 34-3456-1 ¹ SUPERSCRIPT ONE sign \x00BA 4-356 º MASCULINE ORDINAL INDICATOR math \x00BC 3456-1-34-3456-145 ¼ VULGAR FRACTION ONE QUARTER math \x00BD 3456-1-34-3456-12 ½ VULGAR FRACTION ONE HALF math \x00BE 3456-14-34-3456-145 ¾ VULGAR FRACTION THREE QUARTERS # ---------------------------------------------------------------------------------------------- # Unicode 0370..03FF Greek and Coptic # ---------------------------------------------------------------------------------------------- letter \x0391 456-1 Α GREEK CAPITAL LETTER ALPHA letter \x0392 456-12 Î’ GREEK CAPITAL LETTER BETA letter \x0393 456-1245 Γ GREEK CAPITAL LETTER GAMMA letter \x0394 456-145 Δ GREEK CAPITAL LETTER DELTA letter \x0395 456-15 Ε GREEK CAPITAL LETTER EPSILON letter \x0396 456-1356 Ζ GREEK CAPITAL LETTER ZETA letter \x0397 456-345 Η GREEK CAPITAL LETTER ETA letter \x0398 456-1456 Θ GREEK CAPITAL LETTER THETA letter \x0399 456-24 Ι GREEK CAPITAL LETTER IOTA letter \x039A 456-13 Κ GREEK CAPITAL LETTER KAPPA letter \x039B 456-123 Λ GREEK CAPITAL LETTER LAMDA letter \x039C 456-134 Μ GREEK CAPITAL LETTER MU letter \x039D 456-1345 Î GREEK CAPITAL LETTER NU letter \x039E 456-1346 Ξ GREEK CAPITAL LETTER XI letter \x039F 456-135 Ο GREEK CAPITAL LETTER OMICRON letter \x03A0 456-1234 Π GREEK CAPITAL LETTER PI letter \x03A1 456-1235 Ρ GREEK CAPITAL LETTER RHO letter \x03A3 456-234 Σ GREEK CAPITAL LETTER SIGMA letter \x03A4 456-2345 Τ GREEK CAPITAL LETTER TAU letter \x03A5 456-13456 Î¥ GREEK CAPITAL LETTER UPSILON letter \x03A6 456-124 Φ GREEK CAPITAL LETTER PHI letter \x03A7 456-125 Χ GREEK CAPITAL LETTER CHI letter \x03A8 456-12346 Ψ GREEK CAPITAL LETTER PSI letter \x03A9 456-245 Ω GREEK CAPITAL LETTER OMEGA lowercase \x03B1 56-1 α GREEK SMALL LETTER ALPHA lowercase \x03B2 56-12 β GREEK SMALL LETTER BETA lowercase \x03B3 56-1245 γ GREEK SMALL LETTER GAMMA lowercase \x03B4 56-145 δ GREEK SMALL LETTER DELTA lowercase \x03B5 56-15 ε GREEK SMALL LETTER EPSILON lowercase \x03B6 56-1356 ζ GREEK SMALL LETTER ZETA lowercase \x03B7 56-345 η GREEK SMALL LETTER ETA lowercase \x03B8 56-1456 θ GREEK SMALL LETTER THETA lowercase \x03B9 56-24 ι GREEK SMALL LETTER IOTA lowercase \x03BA 56-13 κ GREEK SMALL LETTER KAPPA lowercase \x03BB 56-123 λ GREEK SMALL LETTER LAMDA lowercase \x03BC 56-134 μ GREEK SMALL LETTER MU lowercase \x03BD 56-1345 ν GREEK SMALL LETTER NU lowercase \x03BE 56-1346 ξ GREEK SMALL LETTER XI lowercase \x03BF 56-135 ο GREEK SMALL LETTER OMICRON lowercase \x03C0 56-1234 Ï€ GREEK SMALL LETTER PI lowercase \x03C1 56-1235 Ï GREEK SMALL LETTER RHO lowercase \x03C2 56-234 Ï‚ GREEK SMALL LETTER FINAL SIGMA lowercase \x03C3 56-234 σ GREEK SMALL LETTER SIGMA lowercase \x03C4 56-2345 Ï„ GREEK SMALL LETTER TAU lowercase \x03C5 56-13456 Ï… GREEK SMALL LETTER UPSILON lowercase \x03C6 56-124 φ GREEK SMALL LETTER PHI lowercase \x03C7 56-125 χ GREEK SMALL LETTER CHI lowercase \x03C8 56-12346 ψ GREEK SMALL LETTER PSI lowercase \x03C9 56-245 ω GREEK SMALL LETTER OMEGA lowercase \x03D5 56-124 Ï• GREEK PHI SYMBOL # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2026 256-256-256 … HORIZONTAL ELLIPSIS sign \x2030 123456-123456 ‰ PER MILLE SIGN # ---------------------------------------------------------------------------------------------- # Unicode 2070..209F Superscripts and Subscripts # ---------------------------------------------------------------------------------------------- math \x2070 34-3456-245 â° SUPERSCRIPT ZERO math \x2074 34-3456-145 â´ SUPERSCRIPT FOUR math \x2075 34-3456-15 âµ SUPERSCRIPT FIVE math \x2076 34-3456-124 â¶ SUPERSCRIPT SIX math \x2077 34-3456-1245 â· SUPERSCRIPT SEVEN math \x2078 34-3456-125 ⸠SUPERSCRIPT EIGHT math \x2079 34-3456-24 â¹ SUPERSCRIPT NINE math \x207F 34-1345 â¿ SUPERSCRIPT LATIN SMALL LETTER N math \x2080 16-356 â‚€ SUBSCRIPT ZERO math \x2081 16-2 â‚ SUBSCRIPT ONE math \x2082 16-23 â‚‚ SUBSCRIPT TWO math \x2083 16-25 ₃ SUBSCRIPT THREE math \x2084 16-256 â‚„ SUBSCRIPT FOUR math \x2085 16-26 â‚… SUBSCRIPT FIVE math \x2086 16-235 ₆ SUBSCRIPT SIX math \x2087 16-2356 ₇ SUBSCRIPT SEVEN math \x2088 16-236 ₈ SUBSCRIPT EIGHT math \x2089 16-35 ₉ SUBSCRIPT NINE math \x2090 16-1 â‚ LATIN SUBSCRIPT SMALL LETTER A math \x2091 16-15 â‚‘ LATIN SUBSCRIPT SMALL LETTER E math \x2092 16-135 â‚’ LATIN SUBSCRIPT SMALL LETTER O math \x2093 16-1346 â‚“ LATIN SUBSCRIPT SMALL LETTER X # ---------------------------------------------------------------------------------------------- # Unicode 2100..214F Letterlike Symbols # ---------------------------------------------------------------------------------------------- sign \x2122 5-2345-134 â„¢ TRADE MARK SIGN # ---------------------------------------------------------------------------------------------- # Unicode 2200..22FF Mathematical Operators # ---------------------------------------------------------------------------------------------- math \x2216 5-16 ∖ SET MINUS math \x2219 5-256 ∙ BULLET OPERATOR # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/de-de-g1.ctb0000664000175000017500000000217512161041546013522 00000000000000# liblouis: German Grade 1 Braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE VOLLSCHRIFT - German Grade 1 Braille - Germany, Austria # # Version 2009-11-19 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include de-de-g0.utb include de-g1-core.cti liblouis-2.5.3/tables/unicode.dis0000664000175000017500000001217012161041546013670 00000000000000# Licensed under LGPL. # This file will produce Unicode Braille output. # Use it as the first file in a table list. display \x2800 0 display \x2801 1 display \x2802 2 display \x2803 12 display \x2804 3 display \x2805 13 display \x2806 23 display \x2807 123 display \x2808 4 display \x2809 14 display \x280A 24 display \x280B 124 display \x280C 34 display \x280D 134 display \x280E 234 display \x280F 1234 display \x2810 5 display \x2811 15 display \x2812 25 display \x2813 125 display \x2814 35 display \x2815 135 display \x2816 235 display \x2817 1235 display \x2818 45 display \x2819 145 display \x281A 245 display \x281B 1245 display \x281C 345 display \x281D 1345 display \x281E 2345 display \x281F 12345 display \x2820 6 display \x2821 16 display \x2822 26 display \x2823 126 display \x2824 36 display \x2825 136 display \x2826 236 display \x2827 1236 display \x2828 46 display \x2829 146 display \x282A 246 display \x282B 1246 display \x282C 346 display \x282D 1346 display \x282E 2346 display \x282F 12346 display \x2830 56 display \x2831 156 display \x2832 256 display \x2833 1256 display \x2834 356 display \x2835 1356 display \x2836 2356 display \x2837 12356 display \x2838 456 display \x2839 1456 display \x283A 2456 display \x283B 12456 display \x283C 3456 display \x283D 13456 display \x283E 23456 display \x283F 123456 display \x2840 7 display \x2841 17 display \x2842 27 display \x2843 127 display \x2844 37 display \x2845 137 display \x2846 237 display \x2847 1237 display \x2848 47 display \x2849 147 display \x284A 247 display \x284B 1247 display \x284C 347 display \x284D 1347 display \x284E 2347 display \x284F 12347 display \x2850 57 display \x2851 157 display \x2852 257 display \x2853 1257 display \x2854 357 display \x2855 1357 display \x2856 2357 display \x2857 12357 display \x2858 457 display \x2859 1457 display \x285A 2457 display \x285B 12457 display \x285C 3457 display \x285D 13457 display \x285E 23457 display \x285F 123457 display \x2860 67 display \x2861 167 display \x2862 267 display \x2863 1267 display \x2864 367 display \x2865 1367 display \x2866 2367 display \x2867 12367 display \x2868 467 display \x2869 1467 display \x286A 2467 display \x286B 12467 display \x286C 3467 display \x286D 13467 display \x286E 23467 display \x286F 123467 display \x2870 567 display \x2871 1567 display \x2872 2567 display \x2873 12567 display \x2874 3567 display \x2875 13567 display \x2876 23567 display \x2877 123567 display \x2878 4567 display \x2879 14567 display \x287A 24567 display \x287B 124567 display \x287C 34567 display \x287D 134567 display \x287E 234567 display \x287F 1234567 display \x2880 8 display \x2881 18 display \x2882 28 display \x2883 128 display \x2884 38 display \x2885 138 display \x2886 238 display \x2887 1238 display \x2888 48 display \x2889 148 display \x288A 248 display \x288B 1248 display \x288C 348 display \x288D 1348 display \x288E 2348 display \x288F 12348 display \x2890 58 display \x2891 158 display \x2892 258 display \x2893 1258 display \x2894 358 display \x2895 1358 display \x2896 2358 display \x2897 12358 display \x2898 458 display \x2899 1458 display \x289A 2458 display \x289B 12458 display \x289C 3458 display \x289D 13458 display \x289E 23458 display \x289F 123458 display \x28A0 68 display \x28A1 168 display \x28A2 268 display \x28A3 1268 display \x28A4 368 display \x28A5 1368 display \x28A6 2368 display \x28A7 12368 display \x28A8 468 display \x28A9 1468 display \x28AA 2468 display \x28AB 12468 display \x28AC 3468 display \x28AD 13468 display \x28AE 23468 display \x28AF 123468 display \x28B0 568 display \x28B1 1568 display \x28B2 2568 display \x28B3 12568 display \x28B4 3568 display \x28B5 13568 display \x28B6 23568 display \x28B7 123568 display \x28B8 4568 display \x28B9 14568 display \x28BA 24568 display \x28BB 124568 display \x28BC 34568 display \x28BD 134568 display \x28BE 234568 display \x28BF 1234568 display \x28C0 78 display \x28C1 178 display \x28C2 278 display \x28C3 1278 display \x28C4 378 display \x28C5 1378 display \x28C6 2378 display \x28C7 12378 display \x28C8 478 display \x28C9 1478 display \x28CA 2478 display \x28CB 12478 display \x28CC 3478 display \x28CD 13478 display \x28CE 23478 display \x28CF 123478 display \x28D0 578 display \x28D1 1578 display \x28D2 2578 display \x28D3 12578 display \x28D4 3578 display \x28D5 13578 display \x28D6 23578 display \x28D7 123578 display \x28D8 4578 display \x28D9 14578 display \x28DA 24578 display \x28DB 124578 display \x28DC 34578 display \x28DD 134578 display \x28DE 234578 display \x28DF 1234578 display \x28E0 678 display \x28E1 1678 display \x28E2 2678 display \x28E3 12678 display \x28E4 3678 display \x28E5 13678 display \x28E6 23678 display \x28E7 123678 display \x28E8 4678 display \x28E9 14678 display \x28EA 24678 display \x28EB 124678 display \x28EC 34678 display \x28ED 134678 display \x28EE 234678 display \x28EF 1234678 display \x28F0 5678 display \x28F1 15678 display \x28F2 25678 display \x28F3 125678 display \x28F4 35678 display \x28F5 135678 display \x28F6 235678 display \x28F7 1235678 display \x28F8 45678 display \x28F9 145678 display \x28FA 245678 display \x28FB 1245678 display \x28FC 345678 display \x28FD 1345678 display \x28FE 2345678 display \x28FF 12345678 liblouis-2.5.3/tables/en-GB-g2.ctb0000664000175000017500000004302012161041546013427 00000000000000# liblouis: U.K. English Grade 2 Braille Contraction Table # Created by Tom Johnston . include en-gb-g1.utb # the letter a largesign a 1 always about 1-12 contraction ab always above 1-12-1236 contraction abv always according 1-14 contraction ac always across 1-14-1235 contraction acr always aed = #always aer = Rosenlaer begword aforem 1-123456-15-134 aforementioned word aforesaid 1-123456-15-234-145 always after 1-124 contraction af sufword afternoon 1-124-1345 afternoons contraction afn always afterward 1-124-2456 contraction afw word again 1-1245 contraction ag word against 1-1245-34 word agst = #endword gery = orangery midendword ally 6-13456 word almost 1-123-134 contraction alm word already 1-123-1235 contraction alr word also 1-123 contraction al word although 1-123-1456 word alth = word altogether 1-123-2345 contraction alt word always 1-123-2456 contraction alw midendword ance 46-15 largesign and 12346 midword angh = Shanghai begword aqued = aqueduct always ar 345 word aright 1-5-1235 word as 1356 contraction as midendword ation 6-1345 midendword aunder 1-136-1345-145-12456 saunders begword auto = autofocus # the letter b midword bb 23 midendword bble 12-3456 lowword be 23 begword be 23 begword bea 12-2 always bear 12-15-345 begword beatif 23-1-2345-24-124 begword beatit 23-1-2345-24-2345 begword beatr 12-2-2345-1235 Beatrice always beck 12-15-14-13 always bed 12-1246 begword beda 23-145-1 bedazzle begword bede 23-145-15 bedevil word bede 12-1246-15 bede (a name) begword bedi 23-145-24 bedizzened word bee 12-15-15 begword bee 12-15-15 always been 12-15-26 always beer 12-15-12456 word beg = begword begg 12-15-2356 word begs = begword bei = beijing sufword being 23-346 sufword belch 12-15-123-16 begword beld = Beldon begword belf = belfry, belfast begword belg = Belgium begword belk = Belkin always bell = begword belm = Belmont always belt = begword belw = belwether always ben 12-26 begword beni 12-26-24 begword benif 23-1345-24-124 benificient sufword benign 23-1345-24-1245-1345 benignity begword benov 23-1345-135-1236 benovolent begword benu 23-1345-136 benumbed begword ber 12-12456 begword bera 23-1235-1 berating begword bere 23-1235-15 bereft begword berea 23-1235-2 bereaved begword beri 23-1235-24 beribboned always best 12-15-34 sufword bestow 23-34-246 always beth 12-15-1456 Bethany always bethe 12-15-2346 Bethel (Hans) Bethe always bets = always bett = sufword bev = bevies begword bever 12-5-15 Beverly beverage always bio = midendword bious 12-24-1256-234 dubious joinword by 356 always because 23-14 word bec = always before 23-124 word bef = always behind 23-125 word behring 12-15-125-1235-346 word beh = word bel = begword beln = Belnick always below 23-123 always beneath 23-1345 always beside 23-234 word bes = sufword bess = Bessie always between 23-2345 word bet = always beyond 23-13456 word bey = midendword ble 3456 midendword bleau 12-123-2-136 tableau always bless 12-46-234 joblessness always blind 12-123 contraction bl always blinded 12-123-35-145-1246 sufword blinder 12-123-35-145-12456 word blinding 12-123-35-145-346 always braille 12-1235-123 contraction brl word but 12 # the letter c midword cc 25 midword cch 14-16 always chloro 16-123-135-1235-135 begword cofac = cofactor always cofound 14-135-124-46-145 begword com 36 # begword com 23478 sufword common 36-134-135-1345 commonest # sufword common 23478-134-135-1345 commonest begword con 25 sufword conceive 25-14-1236 word concv = word concvd = word concvr = word concvs = word concvst = word concvth = sufword conceiving 25-14-1236-1245 word concvg = always cone 14-5-135 word cons 14-135-1345-234 sufword conundrum = always could 14-145 contraction cd sufword coworker 14-135-5-2456-12456 midword cc 25 word can 14 always cannot 456-14 word ch = always ch 16 always character 5-16 always chemo 16-15-134-135 word child 16 always children 16-1345 word chn = sufword clever 14-123-5-15 cleverest # the letter d always day 5-145 begword deact = deactivation begword deall = deallocate begword decarb 145-15-14-345-12 always deceive 145-14-1236 contraction dcv contraction dcvd contraction dcvr contraction dcvs word dcvst = word dcvth = always deceiving 145-14-1236-1245 contraction dcvg always declare 145-14-123 contraction dcl contraction dcld contraction dclr contraction dcls word dclst = word dclth = always declaring 145-14-123-1245 contraction dclg begword deref = dereferencing begword dereg = deregulation midword dd 256 midendword dday 145-5-145 midday begword dedic 145-1246-24-14 dedicated begword dis 256 #sufword disc = discount disconsolate always dish 145-24-146 begword disha 256-125-1 dishabile begword dishear 256-125-15-345 disheartened begword disho 256-125-135 dishonor begword dishone 256-125-5-135 dishonest begword dising 256-35-1245 disingenuous sufword disk = sufword dispirit 145-24-456-234 dispirited begword disul = disulfide word do 145 word donegall = # the letter e midword ea 2 midword eabil = interchangeability #always eable 15-1-3456 #endword eably = noticeably #midendword eage = mileage #midendword eager 2-1245-12456 meager always eally 15-6-13456 midendword eance 15-46-15 vengeance midendword eand 15-12346 meander always eation 15-6-1345 always ear 15-345 always ed 1246 #always edic = edict Benedict #sufword edict = #sufword edition 15-145-24-56-1345 editions #midword edo 15-145-135 always edraw = word either 15-24 contraction ei word en = always en 26 always ename 15-5-1345 sufword enamel 26-1-134-15-123 enameled midendword ence 56-15 always eneck = bottleneck midendword eness 15-56-234 closeness endword enesse 15-56-234-15 #begword enor = enormous #begword enou 15-1345-1256 lowword enough 26 word enough 26-1256-126 #begword enu 15-1345-136 always er 12456 #begword era = #word eras 12456-1-234 #begword erec = erect #begword ero 15-1235-135 midendword eroom = storeroom #begword eru = erupt always ever 5-15 midendword evere 15-1236-12456-15 Everest always evered 15-1236-12456-1246 word every 15 # the letter f midword ff 235 always father 5-124 always fein 124-15-35 Feingold always first 124-34 word fst = #always fever 124-15-1236-12456 always ffor 124-123456 largesign for 123456 always fore 123456-15 begword forens 123456-26-234 forensic always forever 123456-5-15 forevermore always foot = word from 124 always friend 124-1235 contraction fr midendword ful 56-123 always funder 124-136-1345-145-12456 # the letter g begword geo = geoengineering sufword geoff 1245-15-12356-124 Geoffrey midword gg 2356 always gh 126 endword gham = Langham always ghead 1245-125-2-145 always gheart 1245-125-15-345-2345 midendword ghill = dunghill midendword ghorn = bighorn always ghouse 1245-125-1256-234-15 always ghz = (gigahertz) begword givea = giveaway sufword gnome = gnomedb word go 1245 always good 1245-145 contraction gd begword gos = goshawk word goshen 1245-135-146-26 always great 1245-1235-2345 contraction grt # the letter h always had 456-125 begword hadd 125-1-256 haddock sufword hade = hadean word have 125 always here 5-125 always hered 125-12456-1246 always heren 125-12456-26 midendword herence 125-12456-56-15 adherence always herer 125-12456-12456 always heres 125-12456-15-234 always heret 125-12456-15-2345 word heretofore 5-125-2345-135-123456-15 word herself 125-12456-124 word herf = word him 125-134 word hm 125-3-134 sufword hmm = word himself 125-134-124 contraction hmf lowword his 236 sufword horse = horseradish always hydro = # the letter i word i 24 midendword iever 24-15-1236-12456 always immediate 24-134-134 contraction imm begword immuno = immunofluorescence lowword in 35 word in = always in 35 #begword incon 35-14-135-1345 incongruous always iness 24-56-234 endword inesse 24-56-234-15 midendword ing 346 #midword inga 35-1245-1 nightingale always ingar 35-1245-345 Weingarten #midword ingen 35-1245-26 palingenesis (new birth) #midword ingi 35-1245-24 meningitis midendword inging 346-346 bringing joinword into 35-235 always isomer 24-234-135-134-12456 word it 1346 word its 1346-234 contraction xs word itself 1346-124 contraction xf midendword ity 56-13456 # the letter j word just 245 # the letter k always know 5-13 word knowledge 13 # the letter l midendword less 46-234 always letter 123-1235 contraction lr word like 123 word doolittle = always little 123-123 contraction ll sufword lone 123-5-135 lonely always lord 5-123 # the letter m always many 456-134 begword mc = always medic 134-1246-24-14 medicare midendword ment 56-2345 midword menth 134-26-1456 Blumenthal always mideast 134-24-145-15-1-34 word milling 134-24-123-123-346 begword mishand 134-24-234-125-12346 mishandled always mishap = sufword mishear 134-24-234-125-15-345 misheard begword missh 134-24-234-146 misshapen word mistook = begword mistran = mistranslation sufword mistreat 134-24-234-2345-1235-2-2345 begword mistru = mistrust begword misty = mistyped word monetary 134-5-135-2345-345-13456 word more 134 always mother 5-134 always much 134-16 word mch = word must 134-34 word mst = word mustn 134-34-1345 begword myo = myofibroblasts word myself 134-13456-124 contraction myf # the letter n always name 5-1345 always nament 1345-1-56-2345 tournament always namese = endnum nd 1345-145 always necessary 1345-15-14 contraction nec word neither 1345-15-24 contraction nei midendword ness 56-234 begword noness = nonessential word nonetheless 1345-5-135-2346-46-234 always nonex = begword nong = nongraphical word noone 1345-135-5-135 sufword nose = nosedive word not 1345 word noways = word nowhere 1345-135-5-156 # the letter o word O 135 always O 135 #midword oed = Schroeder #always oen = Phoenix midendword oence 135-26-14-15 electroencephalogram largesign of 12356 midendword ofar 135-124-345 insofar always ofold = twofold midword ofor 135-123456 always onesi = word anemone = word hermione 125-12456-134-24-135-1345-15 midendword oness 135-56-234 midendword onesse 135-56-234-15 midendword oneer 135-1345-15-12456 midendword oned 135-1345-1246 always one 5-135 midendword onel = salmonella colonel always onem = phoneme midendword onement 5-135-56-2345 atonement always onent 135-1345-26-2345 midendword oneous 135-1345-15-1256-234 erroneous always oner 135-1345-12456 midendword onese = Cantonese, word oneself 5-135-124 word onef = midendword oness 135-56-234 Deaconess midendword onet = phonetics bayonet endword onez = Ordonez midendword ong 56-1245 always oon = sooner #always osome = word ou = always ou 1256 midendword ound 46-145 midendword ount 46-2345 always ourselves 1256-1235-1236-234 word ourvs = word out 1256 always ought 5-1256 always ow 246 word o'clock 135-3-14 # the letter p always paid 1234-145 contraction pd always part 5-1234 begword parta 1234-345-2345-1 partake begword parto 1234-345-2345-135 word people 1234 always perceive 1234-12456-14-1236 word percv = word percvd = word percvr = word percvs = word percvst = word percvth = always perceiving 1234-12456-14-1236-1245 word percvg = always perhaps 1234-12456-125 word perh = always pher 1234-125-12456 cyphered begword potho = pothole pothook begword pred 1234-1235-1246 begword pre = always preach 1234-1235-2-16 sufword predator 1234-1235-1246-1-2345-135-1235 #always prof = #always profes 1234-1235-12356-15-234 unprofessional #sufword profile 1234-1235-12356-24-123-15 #begword proff 1234-1235-12356-124 proffer #always profit 1234-1235-12356-24-2345 # the letter q always quick 12345-13 contraction qk word quite 12345 always question 5-12345 # the letter r sufword rafter 1235-1-124-2345-12456 word rather 1235 sufword raw = rawhide endnum rd 1235-145 begword reab = reabsorbed always reac = always reach 1235-2-16 begword readj = readjust begword readm = readmit begword reaff 1235-15-1-235 always reagent 1235-15-1-1245-26-2345 begword reagg 1235-15-1-2356 reaggregated begword realig = realign begword rean = reanalyze, reanimate begword reapp = reappear begword reass 1235-15-1-234-234 begword reatt = reattach begword reau = reauthorization begword reaw = reawaken #begword rede = #begword redi = word redo = #word redone 1235-15-145-5-135 #begword redou 1235-15-145-1256 redouble redoubt #always redu = always receive 1235-14-1236 contraction rcv contraction rcvd contraction rcvr contraction rcvs word rcvst = word rcvth = always receiving 1235-14-1236-1245 contraction rcvg #begword redis = redistribute #begword redr = redress begword reduc 1235-1246-136-14 reduce begword redun 1235-1246-136-1345 redundant always rejoice 1235-245-14 contraction rjc contraction rjcd contraction rjcr contraction rjcs word rjcst = word rjcth = always rejoicing 1235-245-14-1245 contraction rjcg sufword renaming 1235-26-1-134-346 renamings #begword rene = sufword renegade 1235-26-15-1245-1-145-15 #begword renom = renominate #begword renou 1235-15-1345-1256 renounce #sufword renown 1235-15-1345-246-1345 renowned #begword renu = renunciation sufword reread 1235-15-1235-2-145 sufword rerun = reruns #always rever 1235-15-1236-12456 always reveren 1235-5-15-26 irreverent always reverence 1235-5-15-56-15 irreverence sufword reverie 1235-5-15-24-15 always right 5-1235 # the letter s endnum s = 40s (no letter sign) always s 234 always S 234 word said 234-145 contraction sd sufword saw = sawhorse sufword screw = screwhole #always sedu = always sent 234-26-2345 sentimental always sever 234-15-1236-12456 perseverance always several 234-5-15-1-123 severally word shall 146 word sh = always sh 146 always shaus = In German names always should 146-145 word shd = always shoulder 146-1256-123-145-12456 word singapore 234-346-1-1234-135-1235-15 midendword sion 46-1345 #midword stak 234-2345-1-13 midendword stion 234-56-1345 word so 234 always some 5-234 midendword somed 234-135-134-1246 ransomed always somer 234-135-134-12456 somersault always spirit 456-234 midendword ssword 234-234-45-2456 crossword endnum st 34 word st = always st 34 always sth 234-1456 always sthe 234-2346 midendword sthead 34-125-2-145 masthead always sthood 34-125-135-135-145 priesthood word still 34 always stime 234-5-2345 midendword stown 234-2345-246-1345 Pickstown #begword stringen 34-1235-35-1245-26 stringent stringency begword styro 34-13456-1235-135 styrofoam always shead 234-125-2-145 always sheart 124-125-15-345-2345 always shouse 234-125-1256-234-15 always ssh = always shood = word such 234-16 word sch = always sword = # the letter t endnum th 1456 word th = always th 1456 always thand 2345-125-12346 shorthand word that 2345 word this 1456 word thyself 1456-13456-124 word thyf = always tnam = joinword to 235 word today 2345-145 contraction td word tomorrow 2345-134 contraction tm word tonight 2345-1345 contraction tn always thead 2345-125-2-145 always theast 1456-15-1-34 always theart 2345-125-15-345-2345 always thouse 2345-125-1256-234-15 largesign the 2346 word themselves 2346-134-1236-234 word themvs 1456-15-134-1236-234 always their 456-2346 always thence 1456-56-15 always there 5-2346 midendword thereal 2346-1235-2-123 ethereal word thereupon 5-2346-45-136 always thered 2346-1235-1246 always therer 2346-1235-12456 always theres 2346-1235-15-234 theresa therese always thood = midendword tion 56-1345 always time 5-2345 midendword timed 1245-24-134-1246 midendword timer 2345-24-134-12456 midendword timet = altimeter word these 45-2346 always through 5-1456 always together 2345-1245-1235 contraction tgr word those 45-1456 begword trans = transtype # the letter u begword un = unameliorated begword unble = unblemished #begword undis = undisturbed #begword uneas = unease #begword uneat = uneaten sufword unful = unfulfilled begword unmen 136-1345-134-26 unmentioned word upon 45-136 Dupont word us 136 always under 5-136 word unsaid 136-1345-234-145 # the letter v begword vaing 1236-1-35-1245 vainglory word very 1236 begword vice = viceroy # the letter w lowword was 356 word wh = always wh 156 midendword whart 2456-125-345-2345 Newhart word which 156 midendword whouse 2456-125-1256-234-15 Newhouse word will 2456 lowword were 2356 always where 5-156 word whereupon 5-156-45-136 word wherever 156-12456-5-15 largesign with 23456 always word 45-2456 word whose 45-156 always work 5-2456 always would 2456-145 contraction wd always world 456-2456 # the letter x # the letter y word you 13456 always young 5-13456 word your 13456-1235 contraction yr word yours 13456-1235-234 contraction yrs word yourself 13456-1235-124 contraction yrf word yourselves 13456-1235-1236-234 contraction yrvs # the letter z # Système International Prefixes begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 # begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 begword anti = # begword endo 26-145-135 endow #begword epi = begword extra = begword hyper 125-13456-1234-12456 begword hypo = begword infra 35-124-1235-1 begword inter 35-2345-12456 begword intra 35-2345-1235-1 begword iso = begword macro = begword meta = begword micro = begword mono = begword multi = begword patho 1234-1-1456-135 begword peri 1234-12456-24 begword poly = begword post 1234-135-34 begword pre = begword pseudo = begword retro = # begword semi = seminar begword sub = begword super 234-136-1234-12456 begword tetra = begword trans = begword ultra = # begword uni = # other prefixes begword electro = begword neuro = begword psycho 1234-234-13456-16-135 liblouis-2.5.3/tables/sv-1996.ctb0000664000175000017500000001564112161041546013277 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2009 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Swedish (1996 standard) # This file contains the ISO-8859-1 compatible version of the Swedish 8-dot # braille standard as it was defined by the Swedish Braille Authority # (www.punktskriftsnamnden.se) on October 8, 1996. As of December 2005, this # is the most current braille standard in Sweden. space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 56 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 2358 DOLLAR SIGN punctuation % 4678 PERCENT SIGN punctuation & 3468 AMPERSAND punctuation ' 5 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 256 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 34 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 358 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 267 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 48 COMMERCIAL AT include latinLetterDef8Dots.uti punctuation [ 123568 LEFT SQUARE BRACKET punctuation \\ 168 REVERSE SOLIDUS punctuation ] 234568 RIGHT SQUARE BRACKET punctuation ^ 578 CIRCUMFLEX ACCENT punctuation _ 6 LOW LINE punctuation ` 46 GRAVE ACCENT punctuation { 23678 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 35678 RIGHT CURLY BRACKET punctuation ~ 268 TILDE punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 367 INVERTED EXCLAMATION MARK punctuation \x00a2 23468 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 2478 CURRENCY SIGN punctuation \x00a5 24678 YEN SIGN punctuation \x00a6 12678 BROKEN BAR punctuation \x00a7 346 SECTION SIGN punctuation \x00a8 3678 DIAERESIS punctuation \x00a9 14568 COPYRIGHT SIGN letter \x00aa 2345678 FEMININE ORDINAL INDICATOR punctuation \x00ab 2378 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 13458 NOT SIGN punctuation \x00ad 23568 SOFT HYPHEN punctuation \x00ae 12468 REGISTERED SIGN punctuation \x00af 1578 MACRON punctuation \x00b0 15678 DEGREE SIGN punctuation \x00b1 123468 PLUS-MINUS SIGN punctuation \x00b2 37 SUPERSCRIPT TWO punctuation \x00b3 2567 SUPERSCRIPT THREE punctuation \x00b4 258 ACUTE ACCENT lowercase \x00b5 13478 MICRO SIGN punctuation \x00b6 1267 PILCROW SIGN punctuation \x00b7 8 MIDDLE DOT punctuation \x00b8 12568 CEDILLA punctuation \x00b9 1468 SUPERSCRIPT ONE letter \x00ba 1358 MASCULINE ORDINAL INDICATOR punctuation \x00bb 5678 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 12358 VULGAR FRACTION ONE QUARTER punctuation \x00bd 1368 VULGAR FRACTION ONE HALF punctuation \x00be 3578 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 38 INVERTED QUESTION MARK uppercase \x00c0 1467 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 135678 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 24578 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 13578 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 34578 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 12378 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 1234567 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 68 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 27 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 457 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 1348 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 458 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 67 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 23467 LATIN CAPITAL LETTER ETH uppercase \x00d1 124567 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 123478 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 178 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 124578 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 23478 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 13468 MULTIPLICATION SIGN uppercase \x00d8 1567 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 14578 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 12578 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 245678 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 12478 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 1234678 LATIN CAPITAL LETTER THORN lowercase \x00df 1278 LATIN SMALL LETTER SHARP S lowercase \x00e0 12356 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 1235678 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 1678 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 13678 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 345 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 3458 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 2346 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 123456 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 3478 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 348 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 34678 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 3467 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 2348 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2568 DIVISION SIGN lowercase \x00f8 4578 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 23456 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 25678 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 34568 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 234578 LATIN SMALL LETTER THORN lowercase \x00ff 1268 LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/Nl-Nl-g1.utb0000664000175000017500000001354512161041546013511 00000000000000# liblouis: Dutch (netherlands) Grade 1 Braille Table # Created by Leon Ungier . # Compilation June 22, 2006 locale Netherlands include text_nabcc.dis space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 exclamation mark x0021 punctuation " 2356 double quote x0022 sign # 3456 number sign x0023 # sign $ 256-3456 dollar sign x0024 sign $ 145 dollar sign x0024 Suzanne's correction sign % 245-356 percent sign x0025 sign & 356 ampersand z0026 punctuation ' 3 apostrophe x0027 punctuation ( 236 left parenthesis x0028 punctuation ) 356 right parenthesis x0029 sign * 35 asterisk x002A math + 235 plus 002B punctuation , 2 coma 002C punctuation - 36 hyphen-minus 002D punctuation . 256 point 002E math / 34 solidus 002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B math < 5-246 less-than sign x003C math = 2356 equal sign x003D # math > 4-135 greater-than sign x003E math > 5-135 greater-than sign x003E Suzanne's correction punctuation ? 26 question mark x003F sign @ 345 commercial at x0040 include latinLetterDef6Dots.uti punctuation [ 12356 left square bracket x005B # sign \\ 2346 reverse solidus x005C # sign \\ 16 reverse solidus x005C Suzanne's correction sign \\ 5-16 reverse solidus x005C Suzanne's correction punctuation ] 23456 right square bracket x005D sign ^ 235 circumflex accent x005E sign _ 456 low line x005F sign ` 4 grave accent x0060 # a - z # 97 - 122 x0061-x007A # punctuation { 246 left curly bracket x007B punctuation { 5-12356 left parenthesis x007B # sign | 1256 vertical line x007C sign | 5-1456 vertical line x007C # punctuation } 12456 right curly bracket x007D punctuation } 5-23456 right curly bracket x007D # math ~ 25 tilde x007E sign ~ 5-26 tilde x007E # sign \x0080 15-136-1235-135 euro sign x0080 sign \x0080 15 euro sign x0080 Suzanne's correction punctuation \x0092 3 single right quotation mark x0092 space \X00A0 0 no-break space x00A0 sign ¢ 4-14 cent sign x00A2 # sign £ 123-3456 pound sign x00A3 sign £ 1234 pound sign x00A3 Suzanne's correction sign ¤ 45-15 currency sign x00A4 # sign Â¥ 45-13456 yen sign x00A5 sign Â¥ 13456 yen sign x00A5 Suzanne's correction sign § 346 paragraph sign x00A7 sign © 6-14-135-1234-13456-1235-24-1245-125-2345 copyright x00A9 sign « 45-2356 left-pointing double angle quotation mark x00AB sign ° 34-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign ¹ 4-6-16 superscript 1 sign x00B9 sign » 2356-12 right-pointing double angle quotation mark x00BB math ¼ 6-16-34-1456 vulgar fraction one quarter x00BC math ½ 6-16-34-126 vulgar fraction one half x00BD math ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 letter a with grave (à) x00C0 / 00E0 uplow Ãá 12356 letter a with acute x00C1 / 00E1 uplow Ââ 16 letter a with circumflex x00C2 / 00E2 uplow \x00C3\x00E3 345 letter a with tilde x00C3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 16 A with ring above x00C5 / 00E5 uplow Ææ 345 x00C6 / 00E6 uplow Çç 12346 letter c with cedilla x00C7 uplow Èè 2346 x00C8 uplow Éé 123456 small e with acute x00C9 uplow \x00CA\x00EA 126 e with circumflex (ê) x00CA uplow \x00DC\x00FC 1256 u with diaeresis uplow Ëë 1246 x00CB uplow Ññ 12456 N with tilde x00D1 uplow Öö 123456 O with diaeresis x00D6 math × 236 multiplication sign x00D7 letter ì 24 x00EC letter í 34 small i with acute x00ED letter î 146 x00EE letter ï 12456 x00EF letter ñ 12456 small n with tilde x00F1 letter ò 135 x00F2 letter ó 346 small o with acute x00F3 letter ô 1456 small o with circumflex x00F4 letter \x00F5 246 small o with tilde x00F5 letter ö 123456 small o with diaeresis x00F6 math ÷ 256 division sign x00F7 letter ù 12356 x00F9 letter ú 23456 small u with acute x00FA letter û 156 x00FB letter \x0192 124 small F with hook x0192 punctuation \x2010 36 # 8208 hyphen punctuation \x2011 46 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 256-256-256 # 8230 smart ellipsis sign \x00B7 56 # so the lines below compile sign \x00B8 45 # ibid sign \x2030 3456-245-356-356 # per mile sign # sign \x20AC 46-15-3456 # 8364 Euro sign sign \x20AC 15 euro sign x0080 Suzanne's correction prepunc " 236 postpunc " 356 capsign 46 begcaps 45 numsign 3456 midnum , 2 midnum . 3 midnum + 235 midnum - 36 midnum / 256 midnum : 25 midnum = 2356 endnum # 56-3456 repeated ... 3-3-3 repeated --- 36-36-36 repeated ___ 456-456-456 always \s--\s 36-36 tiret liblouis-2.5.3/tables/printables.cti0000664000175000017500000000362212161041546014407 00000000000000# liblouis English, U.S. (EBAE) character definitions table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Computer braille single-cell characters space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE include loweredDigits6Dots.uti include latinLetterDef6Dots.uti punctuation ( 12356 punctuation } 12456 punctuation ] 124567 punctuation ? 1456 punctuation : 156 punctuation ) 23456 punctuation ! 2346 punctuation { 246 punctuation [ 2467 punctuation ' 3 punctuation - 36 punctuation . 46 punctuation " 5 punctuation ; 56 punctuation , 6 sign & 12346 sign $ 1246 sign | 1256 sign \\ 12567 sign % 146 sign * 16 sign # 3456 punctuation ` 4 sign _ 456 sign ^ 457 sign @ 47 math = 123456 math < 126 math / 34 math > 345 math + 346 math ~ 45 liblouis-2.5.3/tables/no-no-g2.ctb0000664000175000017500000002425112161041546013572 00000000000000# liblouis: Norwegian contracted braille, level 2. # Created June 9, 2005 by Leon Ungier with # help and guidance from Lars Bjørndal . # Modified Sep 30, 2005 by LU # Heavily overworked by lars@handytech.no, 2009. include no-no-g1.ctb #------------------------------------------------------ # -------------- level 1 contractions ----------------- #------------------------------------------------------ endword ar 3456 word at 1 word ble 12 word de 1456 endword de 1456 word du 145 word eg 1245 word eller 15 word ellers 15-234 word en 126 endword en 126 word ende 126-1456 endword ende 126-1456 word er 156 endword er 156 word et 346 endword et 346 word etter 1356 begword etter 1356 word etterat 1356-1 word ettersom 1356-234 word etterpÃ¥ 1356-1234 word for 1246 # level 1 contractions endword for 1246 begword for 1246 word forat 1246-1 word forfra 1246-124 word forover 1246-1346 word forhold 12346 endword forhold 12346 begword forhold 12346 word forholdsvis 12346-1236 word fra 124 # level 1 contractions word fram 124-134 begword fram 124-134 word før 246 word gjennom 12456 begword gjennom 12456 endword gjennom 12456 word gjennomfør 12456-246 #word han 125 word hans 125-234 word har 1235 word hun 136 word hvor 2456 begword hvor 2456 word ikke 24-13 # level 1 contractions word ikkje 24-13-245 word jeg 245 word kan 13 word like 123 word mange 134 word med 146 word mye 13456 word nÃ¥r 1345 word og 14 # level 1 contractions word ogsÃ¥ 14-234 word oss 135 word over 1346 begword over 1346 word overfor 1346-1246 word overpÃ¥ 1346-1234 word overunder 1346-12345 word overfør 1346-246 word overvære 1346-345 word overvar 1346-3456 word pÃ¥ 1234 word som 234 word til 2345 word under 12345 begword under 12345 word underer 12345-345 word underet 12345-346 word underfra 12345-124 word undersom 12345-234 word undertil 12345-2345 word var 3456 word ved 1236 word være 345 # level 1 contractions # ------------------------------------------------------------------- # -------------- level 2 contractions ----------------- word aldri 1-24 word alle 1-15 word alles 1-15-234 word allerede 1-123-1235 word alltid 1-2345-145 word altfor 1-1246 word altsÃ¥ 1-16 word andre 1-12356 word andres 1-12356-234 begword andre 1-12356 word annen 1-126 begword annen 1-126 word annerledes 1-1345-1235 word annet 1-346 begword annet 1-346 word annleis 1-1345-123 endword ar 3456 endword arde 3456-1456 endword ars 3456-234 endword art 3456-2345 endword arte 3456-1256 endword arne 3456-2346 word begge 12-1245 word begges 12-1245-234 word blant 12-123 # level 2 contractions word blir 12-1235 word blitt 12-2345 word bruk 12-13 begword bruk 12-13 begword ubruk 136-12-13 endword bruk 12-13 # de # defined in level 1 contractions begword de 1456 begword ude 136-1456 endword des 1456-234 word deg 145-1245 # level 2 contractions word dem 145-134 word denne 145-2346 word dennes 145-2346-234 word der 23456 word derat 23456-1 word derblant 23456-12-123 word deriblant 23456-24-12-123 word deretter 23456-1356 word derfra 23456-124 word derfør 23456-246 word dergjennom 23456-12456 word derover 23456-1346 word derpÃ¥ 23456-1234 word dersom 23456-234 word dertil 23456-2345 word derunder 23456-12345 word derved 23456-1236 word deretter 23456-1356 begword der 23456 word dere 145-12356 word deres 145-12356-234 word desse 1456-234 word dessuten 145-234-136 word dessverre 145-234-1236 word dette 145-1256 word dettes 145-1256-234 word din 145-1345 word disse 145-234 word ditt 145-2345 word diverre 145-1236 word dykk 145-13 begword dykk 145-13 word eg 1245 # level 2 contractions # en # defined in level 1 word ens 126-234 # level 2 contractions endword ens 126-234 endword ent 126-2345 endword enne 126-2346 endword ende 126-1456 endword ente 126-1256 word enda 15-1 word ende 126-1456 word endes 126-1456-234 word enno 15-135 word ennÃ¥ 15-16 # er # defined in level 1 endword ers 156-234 # level 2 contractions endword ert 156-2345 endword erne 156-2346 endword erde 156-1456 endword erte 156-1256 # et # defined in level 1 endword ets 346-234 # level 2 contractions endword ett 346-2345 endword etne 346-2346 endword ette 346-1256 # word etter 1356 # defined in level 1 begword uetter 136-1356 word ettergjorde 1356-1245-245-1456 word ettergikk 1356-1245-13 word felles 124-123-234 begword felles 124-123-234 word fikk 124-13 # word for 1246 # defined in level 1 begword ufor 136-1246 # forhold 12346 # defined in level 1 begword uforhold 136-12346 word forholda 12346-1 endword forholda 12346-1 word forholdene 12346-15-2346 endword forholdene 12346-15-346 word forholdet 12346-346 endword forholdet 12346-346 # word forholdsvis 12346-1236 # defined in level 1 word forskjell 1246-14 endword forskjell 1246-14 begword forskjell 1246-14 word forskjellane 1246-14-1-2346 endword forskjellane 1246-14-1-2346 word forskjellene 1246-14-15-2346 endword forskjellene 1246-14-15-2346 word forskjellen 1246-14-126 endword forskjellen 1246-14-126 word forskjeller 1246-14-156 endword forskjeller 1246-14-156 word forskjellar 1246-14-3456 endword forskjellar 1246-14-3456 # word fra 124 # defined in level 1 word fulgte 124-1245-1256 word følg 124-1245 begword følg 124-1245 word følge 124-1245-15 begword følge 124-1245-15 endword følge 124-1245-15 word følgende 124-1245-126-1456 begword følgende 124-1245-126-1456 word først 124-234-2345 begword først 124-234-2345 word første 124-234-1256 begword første 124-234-1256 word fÃ¥tt 124-2345 word gang 1245-1245 # level 2 contractions begword gang 1245-1245 word gikk 1245-13 word gjekk 1245-245-13 # word gjennom 12456 begword ugjennom 136-12456 word gjennomgang 12456-1245-1245 word gjennomgikk 12456-1245-13 word gjorde 1245-245-1456 endword gjorde 1245-245-1456 word gjort 1245-245-2345 endword gjort 1245-245-2345 word gjør 1245-245 word hadde 125-1456 # level 2 contractions # word han 125 # word hans 125-234 # word har 1235 # already in level 1 word hatt 125-2345 word hennar 15-3456 word henne 15-15 word hennes 15-15-234 word heller 125-123-156 word helst 125-123 # word hun 136 # already in level 1 word hverandre 2456-1-12356 word hverandres 2456-1-12356-234 word hvilke 2456-13-15 word hvilken 2456-13-126 word hvilket 2456-13-346 word hvis 2456-234 word hvordan 2456-145 word hvoretter 2456-1356 word hvorfra 2456-124 word hvorledes 2456-123 word hvorpÃ¥ 2456-1234 word hvorved 2456-1236 word iallfall 24-1-124 # level 2 contractions word iblant 24-12-123 # word ikke 24-13 # already in level 1 word imidlertid 24-24 word inga 24-1 word ingen 24-15 word ingens 24-15-234 begword ingen 24-15 word ingenting 24-15-2345 word innenfor 24-1246 word innenfra 24-124 word kanskje 13-13 # level 2 contractions word komme 13-134 word kommer 13-134-156 word kommet 13-134-346 word korleis 13-234 word kunne 13-1345 word kunnet 13-1345-346 word kvarandre 1-1-12356 word kvarandres 1-1-12356-234 word kvifor 13-1246 word likedan 123-145 # level 2 contractions word likesom 123-234 word liketil 123-2345 word likevel 123-123 word liksom 123-13-234 # word mange 134 # defined in level 1 word manges 134-234 # word med 146 # defined in level 1 endword med 146 begword med 146 begword umed 136-146 word meg 134-1245 # level 2 contractions word meget 134-346 word mellom 134-123 endword mellom 134-123 begword mellom 134-123 word min 134-1345 word mitt 134-2345 word mye 13456 word mykje 134-13 word mÃ¥tta 134-2345-1 word mÃ¥tte 134-1256 word mÃ¥ttet 134-2345-346 word natur 1345-2345 begword natur 1345-2345 word unatur 136-1345-2345 begword unatur 136-1345-2345 word ne 2346 word nes 2346-234 endword ne 2346 endword nes 2346-234 word nedenfor 1345-1246 # level 2 contractions word nedenfra 1345-124 word neppe 1345-1234 word noen 1345-1345 begword noen 1345-1345 word noko 1345-13 word nokon 1345-13-1345 word nokre 1345-13-12356 # word nÃ¥r 1345 # word og 14 # defined in level 1 # word ogsÃ¥ # defined in level 1 # word oss # defined in level 1 word ovenfor 135-1246 word ovenfra 135-124 # word over 1346 # defined in level 1 word overgikk 1346-1245-13 word overgang 1346-1245-1245 word overs 1346-234 begword uover 136-1346 begword overgang 1346-1245-1245 word punkt 1234-13-2345 begword punkt 1234-13-2345 endword punkt 1234-13-2345 # word pÃ¥ 1234 # defined in level 1 word re 12356 word res 12356-234 endword re 12356 endword res 12356-234 word samme 234-134 # level 2 contractions word sammen 234-134-126 begword usammen 136-234-134-126 begword sammen 234-134-126 word seg 234-1245 word selv 234-1236 word sin 234-1345 word sitt 234-2345 word sjøl 234-245 word sjølv 234-245-1236 word sjølve 234-245-1236-15 begword sjølv 234-245-1236 begword usjølv 136-234-245-1236 word skal 123456 # level 2 contractions word skulla 123456-1 word skulle 123456-15 word skullet 123456-346 word snart 234-1235 word spørsmÃ¥l 234-1234-134 begword spørsmÃ¥l 234-1234-134 endword spørsmÃ¥l 234-1234-134 word takk 2345-13 # level 2 contractions begword utakk 136-2345-13 begword takk 2345-13 word tatt 2345-2345 word te 1256 endword te 1256 endword tes 1256-234 word tilbake 2345-12 begword tilbake 2345-12 word tilfeldig 2345-124-1245 begword tilfeldig 2345-124-1245 begword tilfell 2345-124 word tilgang 2345-1245-1245 begword tilgang 2345-1245-1245 word undergikk 12345-1245-13 word undergang 12345-1245-1245 # level 2 contractions begword undergang 12345-1245-1245 # level 2 contractions word utenfor 136-1246 word utenfra 136-124 word vil 1236-123 word ville 1236-123-15 word villet 1236-123-146 word viss 1236-234 word uviss 136-1236-234 begword uviss 136-1236-234 begword viss 1236-234 word vært 1236-2345 # ------------------------------------------------------ # Words with problems - should be converted this way: word det 145-346 word dets 145-346-234 word den 145-126 word dens 145-236-234 word dent 145-126-2345 word dente 145-126-1256 word dert 145-156-2345 word dett 145-346-2345 word fores 124-135-12356-234 word mede 134-15-1456 word noens 1345-135-126-234 liblouis-2.5.3/tables/devanagari.cti0000664000175000017500000001057212161041546014347 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0901 3 DEVANAGARI SIGN CANDRABINDU letter \x0902 56 DEVANAGARI SIGN ANUSVARA letter \x0903 6 DEVANAGARI SIGN VISARGA letter \x0905 1 DEVANAGARI LETTER A letter \x0906 345 DEVANAGARI LETTER AA letter \x0907 24 DEVANAGARI LETTER I letter \x0908 35 DEVANAGARI LETTER II letter \x0909 136 DEVANAGARI LETTER U letter \x090a 1256 DEVANAGARI LETTER UU letter \x090d 157 DEVANAGARI LETTER CANDRA E letter \x090e 347 DEVANAGARI LETTER SHORT E letter \x090f 15 DEVANAGARI LETTER E letter \x0910 34 DEVANAGARI LETTER AI letter \x0911 1357 DEVANAGARI LETTER CANDRA O letter \x0912 2467 DEVANAGARI LETTER SHORT O letter \x0913 135 DEVANAGARI LETTER O letter \x0914 246 DEVANAGARI LETTER AU letter \x0915 13 DEVANAGARI LETTER KA letter \x0916 46 DEVANAGARI LETTER KHA letter \x0917 1234 DEVANAGARI LETTER GA letter \x0918 126 DEVANAGARI LETTER GHA letter \x0919 346 DEVANAGARI LETTER NGA letter \x091a 14 DEVANAGARI LETTER CA letter \x091b 16 DEVANAGARI LETTER CHA letter \x091c 245 DEVANAGARI LETTER JA letter \x091d 356 DEVANAGARI LETTER JHA letter \x091e 25 DEVANAGARI LETTER NYA letter \x091f 23456 DEVANAGARI LETTER TTA letter \x0920 2456 DEVANAGARI LETTER TTHA letter \x0921 1246 DEVANAGARI LETTER DDA letter \x0922 123456 DEVANAGARI LETTER DDHA letter \x0923 3456 DEVANAGARI LETTER NNA letter \x0924 2345 DEVANAGARI LETTER TA letter \x0925 1456 DEVANAGARI LETTER THA letter \x0926 145 DEVANAGARI LETTER DA letter \x0927 2346 DEVANAGARI LETTER DHA letter \x0928 1345 DEVANAGARI LETTER NA letter \x0929 56 DEVANAGARI LETTER NNNA letter \x092a 1234 DEVANAGARI LETTER PA letter \x092b 235 DEVANAGARI LETTER PHA letter \x092c 12 DEVANAGARI LETTER BA letter \x092d 45 DEVANAGARI LETTER BHA letter \x092e 134 DEVANAGARI LETTER MA letter \x092f 13456 DEVANAGARI LETTER YA letter \x0930 1235 DEVANAGARI LETTER RA letter \x0931 12357 DEVANAGARI LETTER RRA letter \x0932 123 DEVANAGARI LETTER LA letter \x0933 1237 DEVANAGARI LETTER LLA letter \x0934 12378 DEVANAGARI LETTER LLLA letter \x0935 1236 DEVANAGARI LETTER VA letter \x0936 146 DEVANAGARI LETTER SHA letter \x0937 12346 DEVANAGARI LETTER SSA letter \x0938 234 DEVANAGARI LETTER SA letter \x0939 125 DEVANAGARI LETTER HA letter \x093d 2 DEVANAGARI SIGN AVAGRAHA letter \x093e 345 DEVANAGARI VOWEL SIGN AA letter \x093f 24 DEVANAGARI VOWEL SIGN I letter \x0940 35 DEVANAGARI VOWEL SIGN II letter \x0941 136 DEVANAGARI VOWEL SIGN U letter \x0942 1256 DEVANAGARI VOWEL SIGN UU letter \x0945 157 DEVANAGARI VOWEL SIGN CANDRA E letter \x0946 347 DEVANAGARI VOWEL SIGN SHORT E letter \x0947 15 DEVANAGARI VOWEL SIGN E letter \x0948 34 DEVANAGARI VOWEL SIGN AI letter \x0949 1357 DEVANAGARI VOWEL SIGN CANDRA O letter \x094a 2467 DEVANAGARI VOWEL SIGN SHORT O letter \x094b 135 DEVANAGARI VOWEL SIGN O letter \x094c 246 DEVANAGARI VOWEL SIGN AU letter \x094d 4 DEVANAGARI SIGN VIRAMA punctuation \x0964 256 DEVANAGARI DANDA letter \x0966 245 DEVANAGARI DIGIT ZERO letter \x0967 1 DEVANAGARI DIGIT ONE letter \x0968 12 DEVANAGARI DIGIT TWO letter \x0969 14 DEVANAGARI DIGIT THREE letter \x096a 145 DEVANAGARI DIGIT FOUR letter \x096b 15 DEVANAGARI DIGIT FIVE letter \x096c 124 DEVANAGARI DIGIT SIX letter \x096d 1245 DEVANAGARI DIGIT SEVEN letter \x096e 125 DEVANAGARI DIGIT EIGHT letter \x096f 24 DEVANAGARI DIGIT NINE liblouis-2.5.3/tables/bh.ctb0000664000175000017500000000167312161041546012632 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Bihari include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/hi.ctb0000664000175000017500000000167212161041546012640 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Hindi include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/sk-sk.utb0000664000175000017500000000271212161041546013306 00000000000000# liblouis: Slovak Braille Table # Created and maintained by Mike Sivill # #**** Display Codes include text_nabcc.dis #**** Character Definitions include eurodefs.cti # Numbers include litdigits6Dots.uti include latinLetterDef6Dots.uti uplow \x00C1\x00E1 16 uplow \x010C\x010D 146 c with caron uplow \x010E\x010F 1456 D with caron uplow \x00C9\x00E9 345 e with acute uplow \x00C4\x00E4 4 a with daeresis uplow \x00CD\x00ED 34 I with acute uplow \X0139\X013A 46 l with acute uplow \x013D\x013E 456 l with caron uplow \x0147\x0148 1246 n with caron uplow \x00D3\x00f3 246 O with acute uplow \X00D4\x00F4 23456 o with circumflex uplow \x0154\x0155 12356 r with acute uplow \x0160\x0161 156 s with caron uplow \x0164\x0165 1256 t with caron uplow \X00DA\X00FA 346 U WITH ACUTE uplow \x00DD\x00FD 12346 Y WITH ACUTE uplow \x017d\x017E 2346 z with caron #**** Braille Indicators numsign 3456 capsign 6 begcaps 6-6 # Punctuation punctuation ! 235 punctuation " 2356 punctuation ' 3 punctuation ( 236 punctuation ) 356 midnum * 35 math + 235 punctuation , 2 punctuation - 36 punctuation . 256 punctuation / 25 punctuation : 25 punctuation * 0-3 punctuation ; 23 math < 126 math > 345 math = 2356 punctuation ? 26 punctuation [ 6-236 punctuation ] 6-356 always \\ 3456-1256 punctuation { 5-236 punctuation } 5-356 always _ 456 always | 3456-123 always ~ 56-26 always # 56-3456 always $ 3456-1246 always & 3456-12346 always @ 3456-12456 always % 3456-1234 liblouis-2.5.3/tables/latinLetterDef6Dots.uti0000664000175000017500000000112312161041546016106 00000000000000# Latin letters a-z where capitals are defined as equivalent to the lowercase. # This table is usually used by 6 dot tables. To distinguish between # capitals and lowercase, the language table should make use of the # capsign and begcaps opcodes. uplow Aa 1 uplow Bb 12 uplow Cc 14 uplow Dd 145 uplow Ee 15 uplow Ff 124 uplow Gg 1245 uplow Hh 125 uplow Ii 24 uplow Jj 245 uplow Kk 13 uplow Ll 123 uplow Mm 134 uplow Nn 1345 uplow Oo 135 uplow Pp 1234 uplow Qq 12345 uplow Rr 1235 uplow Ss 234 uplow Tt 2345 uplow Uu 136 uplow Vv 1236 uplow Ww 2456 uplow Xx 1346 uplow Yy 13456 uplow Zz 1356 liblouis-2.5.3/tables/hyph_nn_NO.dic0000664000175000017500000055065212161041546014275 00000000000000ISO8859-1 .ad2 .ads2 .ak2 .akk8 .akter5e .al8 .alder2 .alle2 .all5sl .all6vi .als7ku .als5l .alt6a .alta3k .altar5 .alt1o .am4 .an6 .ana2 .anal4g .and4f .ang6 .ange2 .angs2 .ann4 .ante8 .anti7n .anti3s .ara2 .are4 .aren5s .areo3 .ar4l .ar6m .arn2 .arne2s .ar8r .art2 .arti8 .arve8le .as6 .ast2 .at2 .ato4 .ats2 .atter3 .att2g .aud8 .aus7k .auster5r .av2bu .av7lasting. .av7lastinga .av7lastinge .av7lastning. .av7lastninge .av3les .av7levering. .av7lytting. .av7lyttinga .av7lyttinge .av8l^^f8nn .av3na .av7renning. .av9renninga .av7renninge .av1ri .avs2 .av7sav .av9skrekkinga .av1sm .av6spenn .av3st^^e5 .av7vennings. .ba2 .bal4 .bane3s .barne7haga .barne7hage. .barne7hagen. .barne9hagene. .barne7hagens .barne7hager. .barne7have. .barne7haven. .barne9havene. .barne7havens .barne7haver .baro3m .be8 .bein5s .bel2 .ben3sk .ben3st .ber2 .berg7art. .berg7arta .berg7arte .bi3sti .ble2 .bok9handlan .bok7handlar. .bok9handlaran .bok9handlarar .bok9handlare .bok7handler. .bok7handlere .bok5la .bok3sk .bon2 .bo5pl .bo3sta .bot5l .brenne7vin. .brenne7vine .brots7v .brudd7s8 .br^^f8nns4 .bu7la .bu7p .bus6 .by7la .by3ru .by5r^^e5d. .by5r^^e5de .by7skriver. .by9skrivere. .by9skriveres .by7skrivern .car2 .ce4 .da2m .dar8 .data7basa .data7base. .data7basen .data5n .de2 .del3ei .dels4 .del5se .del8ta .der2 .de5ran .de4r5et .de3sen .de4u .d^^e92 .di6 .dia8 .die2 .ding7st .dis9kontinuitete .dol2 .dre8 .dus2 .dver5b .dyr8s .d^^f8r1s .d^^f85vi .ec8 .ed2 .edel1 .eft2 .efter5s .ege2 .eg5enhet .egg1s .ei8 .eids2 .eigar3 .ein4b .eine8fors .ein4m .eite4 .ek2 .eke2 .ekk2 .eks4h .el4b .eldre3 .ele2 .el6g .elg5n .elg5r .el2k .els4 .el8v .em2 .en2 .en3a .encefalo7 .enges5 .en7leder. .en3si .en3sp .en7str .en7sy .ent4 .en^^f8k1 .eple1 .er2 .es8 .est6 .et4 .ets8 .etter7ko .etter5sy .ett4p .ett6s .ev4 .eve4 .fa6 .fag1s2 .fast3s .fe2 .fe5dri .fel4 .felt3r .fem5a .fer2 .fest7spel. .fest9spela .fi2 .fia8 .fin3d .fisk7end .fjell5d .fjell5s .flat5o .fly1d .fly7plass. .fly9plassane .fly9plassar. .fly7plasse .fly3vi .for5ans .for7beredt .fore7bygge .fore9bygging. .fore9bygginge .fore3k .for9fjo .for7flytti .for5kal .for5kje .for4kj^^f8 .for5kv .formynder9ska .fors2 .for7tald .for5tetn .fra3fa .fram3e .fram3l .fram7m^^f8te. .fram9m^^f8tet. .fram5sk .fram5st^^f8 .fram9syning. .fram7syninga .fram3v .fra7si .fra5sk .fra7trekk. .fra7trekke .frem7gang. .frem7gange .frem5leg .frem7ma .frem7m^^f8te. .frem7m^^f8tet .frem7skriv .frem7sp .frem9stilling. .frem9stillinge .frem7stilt .frem5st^^f8 .fri7gj^^f8ring. .fri7gj^^f8ringe .fr^^e59hald. .fr^^e59halda .fr^^e59halde .fr^^e59halds. .fr^^e59v^^e6r. .fr^^e57v^^e6re .fugle3 .full7byrde .full9byrding. .full9byrdinga .full9byrdinge .full9byrdings. .full5e .f^^f8re9bygging. .f^^f8re9bygginga .f^^f8re9byggj .f^^f8re7l .f^^f8re9m^^e5l. .f^^f8re9m^^e5la .f^^f8re9m^^e5le .f^^f8re3s .ga4 .gangs2 .gang5sp .gar8 .ge2 .gel8 .gen3te .ges8 .gi2 .gift3s .gir1s .gje8 .gjen5dr .gjen3k .gjere7 .gj^^f8re3 .gle8 .gn6 .go6 .godt3g .gram4s .grav7ferda .grims6by .guds9t .gur8 .halv5de .halv3^^f8 .halv5^^e5r. .halv9^^e5ra .halv5^^e5re .hamne3 .hand7ball. .hand7ballen .hand5bo .hand7b^^f8 .hand7klee .hand5s8l .hand5ta .haust5o .hav1s .hjelpe9middele .hjelpe7midl .hoved7stad. .hoved7stade .hovud7stad. .hovud7stade .hull3s .hus9hald. .hus9halda .hus9halde .hus8leg .hus7mora .hus6val .h^^f8g7skola .h^^f8g7skole. .h^^f8g7skolen .h^^f8g7skoler. .h^^f8g9skolers .h^^f8g7skoles. .h^^f8g7skula .h^^f8g7skule. .h^^f8g9skulen. .h^^f8g7tid. .h^^f8g7tida .h^^f8g7tideli .h^^f8g7tiden .h^^f8y7skole. .h^^f8y7skolen .h^^f8y7skoler. .h^^f8y7skolers .h^^f8y7skoles. .h^^e5nd7ball. .h^^e5nd7ballen .h^^e5nd7balls. .h^^e5nd5bo .h^^e5nd5b^^f8 .h^^e5nd5s4l .h^^e5nd5ta .ial2 .ikke1 .il5b .il7g .il3leg .il7lit .ils8 .il6se .im6 .in3dep .in6g .in2kj .inn7deling. .inn7delinga .inn7delinge .inn5delt .inn7draging. .inn7draginga .inn9dragning. .inn9dragninge .inn5dri .inne3h .inne5l .inn2fe .inn5f^^f8r. .inn5f^^f8re .inn7f^^f8ring. .inn7f^^f8ringa .inn7f^^f8ringe .inn7f^^f8rsele .inn9f^^f8rsla .inn9f^^f8rsle. .inn5f^^f8rt .inn7gy .inn3he .inn3i .inn7kj^^f8p. .inn9kj^^f8pa .inn7kj^^f8pe .inn7kj^^f8pt .inn3kr .inn5lag .inn7leiing. .inn7leiinga .inn5l^^f8p. .inn9l^^f8pa .inn7l^^f8sning. .inn7l^^f8ysing. .inn9l^^f8ysinga .inns2 .inn7samle .inn7samling. .inn7samlinga .inn7samlinge .inn9setjing. .inn9setjinga .inn6sid .inn9skot. .inn9skota .inn9skote .inn3sm .inn7sparing. .inn7sparinga .inn7sparinge .inn5syn. .inn5syne .inte8 .in4tr .ir2 .is9ba .is4fjo .is1ka .is5ku .is3lag .is5leg .is3p .is1s6 .is3tap .is5tes .is7tj .is6ves .is5^^f8 .ja4 .jam5s .je2 .jel3^^f8 .jern7bana .jern7bane. .jern7banen. .jern7baner. .jern3s .jord7b^^e6re .jord3r .jour8 .ju8 .jul1a .jule1 .j^^e6r8 .j^^f88 .ka8 .kaki5 .kal2 .kapp3l .kaps8 .kart9legging. .kart9legginga .kart9legginge .kat4 .ke2 .kel4 .ki4 .kilo7meter. .kina1 .kinn5b .kje2 .kj^^f8nns5k .kj^^f8t5s .kne2bl .knip7pen .ko8 .kraft5v .kran7t .kring7kasta .kring9kasting. .kring9kastinga .kring9kastinge .kring9kastings. .krings4 .kro3v .kule5ri .kvi6 .ky8 .kyrkje9lyd. .kyrkje7lyda .kyrkje9lyde .k^^f83s .k^^e5t6 .la8 .lag7mann. .lag7manne .lan2 .land3a .land3r .land5sky .laup7s .laus3l .laus7^^f8yra .laus7^^f8yre. .laus9^^f8yren .lav7sk .le2 .ledd7gikt. .ledd9gikta .ledd9gikte .le4g .leg3do .lego3 .leike7t^^f8y. .leike9t^^f8ya. .leike7t^^f8ye .lein5s .les2 .le3sku .les7v .lete1 .leve3v .lig4 .liks2 .lik3st .lik7t^^e5 .linn5v .lo2 .lo8va .lov7givi .lov9gjeving. .lov9gjevinga .luft3s2 .lut3f .lut5v .lyd1s .lyn1k .lys7bilden .lys7bilder .lys7bildet .lys9bileta .lys7bilete .l^^e6r4art .l^^f8s1l .l^^e58 .ma2 .makt3s .man2 .mar4 .me8 .med1r .mer4d .mer4ku .metall5s .mi8 .mini3k .misleg5 .mne8 .mogleg7 .mord3s .mor2f .mor8t .mul5es .m^^f8r2k .m^^f8rk7l .m^^e52 .m^^e5l5lag. .m^^e5l9laga .m^^e5l5lage .m^^e5l1s .na2 .nar2k .nat4 .ne2 .ned7gang. .ned7ganga .ned7gange .ned5i .ned1l .ned5ra .ned7rusting. .ned9rustinga .ned9rustinge .ned9rustning. .ned9rustninge .ned1s6 .nel8 .ner4 .nest9leiar. .nest9leiare .nett7verk. .nett9verka .nett7verke .ni3gl .no2 .noen1 .ny3kle .ny5le .ny3sta .ny3tes .n^^e6r8v .n^^f8y8 .ofte6 .ok6 .olde5f .om3be .om9brekkinga .om7brekkinge .om9brekkings. .om3b^^e6 .om8fa .om8forma. .om6hu .om1i .om1l .om1o .om1p .oms8 .om3ska .om7sku .om8sna .om3sta .om7svi .om2t .om8v .on8 .ons2 .opp9bevaringa .opp7bo .opp3bu .opp3by .opp9byggings. .opp7el .opp5hen .opp7kj^^f8p. .opp7kj^^f8pa .opp7kj^^f8pe .opp3kr .opp5lat .opp5les .opp5livn .opp7l^^f8sning. .opp7l^^f8sninge .opp7l^^f8yse .opp9l^^f8ysing. .opp9l^^f8ysinga .opp4mod .opp7nevnt .opp7reisi .opp9reisninga .opp5rek .opp5ring .opp7ryddinga .opp7rykk. .opp9rykka .opp7rykke .opps2 .opp5setn .opp5sti .opp5sty .opp5st^^e5 .opp3sv .opp9teke. .opp9teken .opp5tel .opp9tening. .opp9teninga .opp7tjening. .opp7tjeninge .opp7tjent .opp3t^^f8 .opp7varming. .opp9varminga .opp7varminge .opp5vekk .opp7visi .opp7visning. .opp7visninga .opp7visninge .or2 .ord1b .ord7f^^f8rer. .ord7f^^f8rere .ord7f^^f8rern .ord1l .ord1s .org6 .os8 .ose2 .ove4 .oven1 .oven7t .over5de .over7dose. .over7dosen .over5leg .over7setter. .over7settere .over7settern .over9skot. .over9skota .over9skote .over7skott. .over9skotta .over7skotte .over7skrid .over7skudd. .over7skudde .over7slag. .over9slaga .over7slage .over7sy .over9tagelse. .over9tagelsen .over9tagelser .over9takelse. .over9takelsen .over7taking. .over7takinga .over5tar .over5te .over5tr .over5ve .over7v^^e5king. .over9v^^e5kinga .over7v^^e5kinge .over9v^^e5kning. .over9v^^e5kninge .ov5m .pa2 .pan8 .par5da .pe4 .pel2 .pen2g .pepar3 .per2 .pin8l .plan7leggj .ple2 .po6 .polo3g .por4 .prima5d .program9varen .ps2 .pur4 .pus8 .p^^e55driva .ra6 .ram8se .rand6kr .re2 .re5dal .redo9blas .reiar7l .rein9gjering. .rein9gjeringa .reins4k .re3ka .rekke5f .rekkje7f .re3lan .re8me .renn3s .re7part .res2 .rett7leiing. .rett7leiinga .ri8 .ro6l .roms4 .ror3k .rors5k .rot3s .ru2 .rune3s .r^^f8r5lei .r^^f8yr5l .r^^e5de7r .r^^e5d7gjevar. .r^^e5d7gjevara .r^^e5d9gjevare .r^^e5d9gjeving. .r^^e5d9gjevinga .r^^e5d7mann. .r^^e5d7manne .r^^e5d7manns. .r^^e58kas .r^^e57kl .r^^e53ste .r^^e59vara .r^^e55varen .r^^e55varer .sa2 .sak7kyndige .saman3 .sam5eie. .sam7eien .sam7eier. .sam5eiet .sammen5d .sammen5h .sammen5k .sammen5s .sand3t .sar8 .se4 .sed3v .sel2bu .sel2m .ser6 .si2 .sikk6 .sin8 .sje2 .sjuke5hj .sjuke7hus. .sjuke7husa. .sjuke7husen .sjuke7huset .sjuke9pleiar. .sjuke9pleiara .sjuke9pleiaren .sjuke9pleier. .sjuke9pleiere .sjuke9pleiern .sk6 .skar4 .skatt9legging. .skatt9legginga .skatt9legginge .ski1d .skille7t .skinn5s .skode9spel. .skode9spela. .skode9spelar. .skode9spelara .skode9spelaren .skode9spele .sko6g5u .skudd5s4 .skue9spiller. .skue9spillere .skue9spillern .slag3r .sle6 .sleg8gjer .sm^^f8r7br^^f8d. .sm^^f8r9br^^f8da .sm^^f8r7br^^f8de .sm^^e57ler .sn8 .sner4 .sn^^f83k .sn^^f83t .so2 .sofa1 .sommar5 .spe2 .spiel2 .sport4 .st6 .sta2 .stats6min .stats9minister. .stats9ministeren .stats7r^^e5d. .stats7r^^e5da .stats7r^^e5de .ste2i .ster8 .ste8v .stor5g .stor7mestere .stra6 .stre2 .styre7m .styres5m .st^^e5l1 .sus2 .svar3s .svei4 .syke7hus. .syke7husen .syke7huset .syke7pleier. .syke9pleiere .syke7pleiern .syns3p .syssel9setjing. .syssel9setjinga .syssel9sett. .syssel9setting. .syssel9settinge .ta2 .tak3ra .tak3sk .tak9sp .tal4l^^f8 .tals3m .tann7kreme .tann7lega .tann7lege. .tann7legen .tann7leger. .tann7l^^e6k .tar4 .te2 .te7bo .te3ka .tel4 .teppe7r .ter2 .te5si .ti3del .tids1 .tids7skrif .ti5f .ti4l .til2h .til5lagi .til5lan .til5sag .til7seg .til7str^^f8 .til5vek .til7ver .ti6m .ting7lysinga .ti2r .ti3tus .ti2^^e5rs .to1d .tog5ga .tokk8 .tol8 .topp5lag .topp3s .tor2 .to7rad .to5ste .to9to .tra2 .tre6skja .tre3sn .tri6 .trykk7sak. .trykk9saka .trykk7sake .ts2 .tun5t .tur2bo .t^^f8r2 .ude8 .ue8 .uke3l .ul2 .ule8s .ull3m .ull2v .under9haldning. .under9haldninga .under5la .under7lege. .under9skrifta .under7ste .under7t^^f8y. .under7t^^f8ye .unn8 .unna1 .ur6an .ur3g .ur1s .us2 .uta4f .ut5age .ute1r .ut4fo .ut3sid .utt4 .vakt3h .valg1 .valgs2 .val9kampar .val5me .val9tings. .van3h .van5m .vann5sp .vann7stand. .vare5ta .var6s .vat6 .ve6 .vedde7l^^f8p. .vedde9l^^f8pa .vedde7l^^f8pe .ved6hol .ved4ko .veg5gr .veg3l .veg1s2 .vei1p .vei1s .vei5val .vekt3s .vel1e .vel2h .vel3ov .vel5sk .vel7v .ven6 .ver2 .verd7setj .ver3h .verke9middel. .verke9middele .verke9midl .v^^ear1 .vi8 .vil8 .vinn6 .vin5tre. .virke9middele .vise5ri .vis4k .vis8p .vist8 .vitne5m .v^^e5k5enh .yr8v .ytre3 .^^e6re4s5a .^^f8l1 .^^f8ns4 .^^f8re3s .^^f8res7v .^^f8r4la .^^f8r8sk .^^f8r5sm .^^f8s8t .^^f8sten6f .^^f8st6l .^^f8ye3l .^^f8y2vi .^^e5k8 .^^e5l2 .^^e5ne6 .^^e5r8l .^^e5rs1k .^^e5rs7l .^^e5s7l .^^e5t6 aa2 a1ad a3aft a1aks aale6 a1am a1an a1ap aar2 a1av aba8 a1bak a1bass a7bea a1bed abel3t a5beo aber5r aber3s a1bev ab2i a1bild a1blok abo1b abo1g 1abon 5aborte a1bran a6brut 5absorb 3absorp a5bud a1buss a1byg a3byt a5b^^e6r a1b^^f8 8ac ace2b ack2b ack3o acon3 aco3s a7cupa acup1f a3dale ad3art a7dat ad1b ad4du ade1e a8dei ad3eig ade5is 3adekv ad5elv ade1p ade3ris ade1s ades4h ade7si ade3tal adetids5 ade5v ad2f 1adfer ad9fj 1adg ad7gj 2adg^^e5 ad7hu adia8 a3diks ad7inn adio1k adio1m adio3p adio1t adio3v 1adju 2adl ad9lis 1adm ad7m^^e5le a4dob 4ador ad7p ad7rel 1adres ads9amt ads7g ad4ski ads1l ad3slet ad3s8tr ad1t 1adv ad7val ad5van ad7v^^e6 ad7v^^e5 ad^^f8ds4 a5d^^f8m 4ae a1ef aefter8 a1ei a1ek ae6l a1enh a3ent a1ep a7eti a1ett aetter4 afa6 affi1d af4i af7inn a7flytte a9flytting. a7flyttinge 8afo a2fon afor9st 1afri af1sk aft5el aft1s2 af7yr a1f^^f8 4aga ag5art a6gassr agde2 ag1del ag1di ag1do 1agent ager5d ager7h ager3m age1s age7se ag2fo ag3fol ag7gam agg3h agg7la 1aggre agg1s2 ag1h agi2 ag5id a1gj ag8lege agleg8g agle5m ag1lit ag3mu agn4v a2go ag1or ag5ov agre6 ag5rek ag7retn a1gru ag1r^^e5 ags4ang ag3s4ei ag3ski ags4kul ag3stru ag5tid. agt1s ag1v a6har ahjelpe8 a2hy ai5art ai8fa ai7fe ai5fi ail7g ai8ma ai3mo aine8 ai5nep a1inn ain5o ai3p ais6e ai2sk ais1ko ai5s6v aiti6 ai3tie ai3to ai7^^f8 2ak. 6aka. aka6b 1akad 6akaf akar7d akar5m akar7p ak6au 2ake ake1h akel8e akel8i ake2lit akere5s aker1o aker7t ake1s akes8p ak9gi ak7hov aki8e 2a1kj ak2k ak5kant. ak7kante 6akke akk5erst akk3is 5akkor akk7ri ak9kun ak7lap ak7lau ak3lek ak1lis ak3lo ak3lu ak3ly ak5l^^e5 6akn a7kno ako2 a1kos ako5te akover5 akraft8 a1kred akro3be ak1ru aks5alt 6aksed aks5elv ak5sete. ak5sider. 5aksja 5aksje aks1k ak7sku 5akslin ak1sna aks1pe 2akss ak5stol ak7str^^f8m. ak1s^^f8 akt7r^^e5 akt6sa akt1se akt1sk akt6skr akt5s4la akt3str akt5s^^f8 1aktue a1kur 2akv ak3val ak3v^^e6 a5ky ak7^^f8l ala5be alands7t al1anl 1al2arm al5ar4r al1art a5larv al5asi 2alat ala7tr ala7tu a3laus al1av al1bo al1bud 1album al1by al1b^^f8 al1dag al7danse al3def al1del al1dem 3alder. 3aldere 7alderle 5alderlig 7alders. 2aldo al8dre al7due 2ale ale3f al8eik alekt5s al5emu ale2n al3enh al3entr ale1pe ale7rede. ale3ro ales7kr ale3str ale1te ale3vi al7fal al1fe al1fr al1f^^f8 2alg. al3gang al2gen 2alget al1gj alg1l 3algori al2gu al1h al8hen al3h^^f8 ali2 al1ind al1ins al1int ali6s alj5end alj^^f84 alj5^^f8v al2kam alk3s al3lab all5art all7b alleg6 al5leii 3allerg all5erst alle3s al5leti 1allia 5allie all3mak allopp6 all7re all4sin all2sti all2vit al1l^^e6 al1mak alme3st 2alo6 al1ob alo7gramme al1om2 al1ope al5ost alov4 al1ove a2lover al1pa al7pr al1ps als5aks als7ank al1sek al7sete al1sid als2ma als2men al9sni al1sok als7pu al1st als5tan al1sy 8alt. al1tal al8tar al3teg 5alterna alter5r alt5eta alt5ete al1tid al1tj al5uk al1und alv5aks 2alve alv9erm alv3m alv3ta a3lyd. a5lyde al3^^f8v al^^e54 al^^e5rs4 al7^^e5t 6am. ama8b ama5ka am3aks am5ald a3mann. a5manne a7manns. am5ass 3amat^^f8 ama3ve 1ambas amba1t ambe6 1ambis am3brud am5dale am1de am7driftsma am7driftsp 6ame. a1med ame5dr 2amei am7eieren a1meld ame7lin a1menn amens1 ament5arv ame3ret 1ameri am8e5u 2amf am8forl am5fr am9gi am1gj am5g^^e5 am8hu am2h^^f8 a1midd am2kj am2k^^f8 am5k^^e5 2aml am8len amle3s am4li am7lu 2amm am7mate am5mor 8amn. 8amna amn3s a1mod am2or amp3akt amp7ei am3plet amp1t am8p^^e5 am7sat amse8 am1sek am9sider am1ska am2ski am7skj am3sko am5skrit am3s8ku am1sl am1sp ams2r amster2 am5sto am9syn. am7syne 8amt. am7tv 2amv am7val am5vege am1ver 2an. an5aas anabo2 1analy anan9t 2anar an5art 8an7au an3ba an2be 1anbef an3byg anda7m an6dat 4ande. ande7p and1h and7j ando3f and3onk ando1s 6ands ands3tj and5ven 2ane ane1d ane5ga an7egg anel1d an5elv ane1m aner1s ane3sta an7etika an5etikk an3etis anett3v ane1v 1an8fal an9fald an9fallan an3fig an8forl an9forli ang3arm ang5de ang5enh ang5erme ang8fjo 5angiv ang7ov 3angrep ang3rid ang1ry angs2at ang3sid ang5sled angst9r^^e5 angs2tv angst5y ang3sva ang6t5re ang1va ani7b anin7f an1kat 2anki ank5ord ank1ra an6k^^f8 ank7^^e5 4anla an7lands. an9landsk. an9landske 3anledn an7lo an7l^^f8y an2m an6na ann1f ann4gi ann5gr ann7g^^e5 ann3l^^f8 1anno ann1r anns3ak ann5saml ann3sen anns7k^^e5 ann5son anns7u ann1tr ann1v ano8d anode7b 2anog anon3s an1ove an8p^^e5 an3rin 2ans. ans3aft an5sal 3ansaml an3sand 1ansat an2sc anse7d an5sels 6ansen anse1s anse3te 1ansik an2sj an8sja an3skap ans4k1l ans3ma ans5or anst6 6an7star 8ansti 3anstr an1sty an5sun 1ansv 2ansve 1antal ant3emi 3antenn ant7he anti5ge an3tog ant3ord an3tref 3antrek ant5ryg a1num an7val 1anven an1ver 1anvis an1^^e6 2a2n^^f8 a1o aom2 a5on a7op a3or aord8 a2os apar7s a3pass a1peng ap1h ap1id apir1k apir7r api1v a1pla ap7lei 6apol a4polis a7pom a5pott 1appar 2appar. 3appell app9esk app5g app7ho ap5plas app1s aps1 apse2s aps9f ap2st ap2su a7psy 8apu a7pud a5pun a8punktf ap8^^f8 a2p^^e5 6ar. 3arabi ar7aft ara5h ara7ka ar5aks ar3alt 8aran 8arar ar7arm ar5ass ar7aug arav8 ar7avh 2arba ar1bas ar3bed 4arbeh ar1bet 2arbil ar5bis 4ar3bj 2arbo ar7bob ar8bom ar7bot 2arbr ar1bre ar5br^^f8 2ar1bu ar4bu. 2ar1by 2ar1b^^f8 4arb^^e5 ar2c 4ard ar7dam ard3b ard7d ard9ei ard3l ard8stad ar7dyp ar7dyr ar5d^^f8m 8are. 1area 2areav are1d are1h ar3eig are1in a1reis are1le ar7elek are9lin ar7emn 2aren. 1arena a7renn are1p are1so are1sp are5sti are5tal are3tr ar3evn ar1f arg6i ar7giv ar1gl arg5s4tj 1argum ar7g^^e5 ar1ha ar5ho arhus8 2ari aria3k ari8b ari1fu ar5inns ar1int ari5p ari8sk ari1v ar1j arke3s arke2t ark6h 1arkit 1arkiv 4arkivk ar1kj ar7kje 8arkl ark5l^^f8f 6arko ar5kon arko3re ar9korta ar9korte 4arkp ark5ren ar6krigst ark3se ar1ku ark5ved ark7veg ar8k^^f8 ar5la. ar6lege. ar1lei ar5ly 8armi ar7mid ar7mot 4arms ar3mu ar1m^^e5 2arn arn7bana arn7bane. arn9banen. arn9baner. arne3k arne3p ar1nom arns3ti ar7n^^e6 ar3omb ar5oms ar1op ar1or ar7ost ar1ove ar1pl arp3ret arp1s2 1arra 2arrap ar1rek ar7rettsf ar3sak ars7d ars7hu ar9sit ar2skap ar3skar ar6skolee ars9kre ar3son ar1st ar3svei ar1sy 4ar3tak 8artal ar3tegn ar5tenest 8artets art8hu arti5b arti3gr art5isen 5artiu ar1tj art5la 8arto ar7tog art3op ar7tref ar3try art7ska art1t ar1tur ar5tyk ar1un ar5ur ar7utn ar7val ar2van arve3la ar3verd arve3st ar6vet ar5vil ar1vis ar7vit ar7^^e6 a5r^^f8r ar1^^f8y ar7^^f8y. ar9^^f8ys. a1r^^e5 ar7^^e5n ar7^^e5p ar5^^e5r ar^^e5rs6 a6r^^e5t as2 2as. asa5bl a1sam a1sang asan9s a7sau. as3bi as7dr as7d^^f8 ase1d as6el ase5lev a3sendi a3seng aser3s ases6 ase7st ase3tes ase5u as5fo as5gj as5hu as5h^^f8 1asiat asi5b a1sid a3sign a1sik asi3ko as7ind asin7k asi1r asi3v asje1g as7jun a3skat aske4pi ask6i a3skif askin3k a1skj as3kl a1skol as5kom as5kopi as5kur ask5^^f8y as5lag as3led as7lei as7lek as7middele as3om as3op as3ov 6aspirants as3pl as3pos as3re as7r^^f8 as9r^^e5 ass3alt ass7arv 4asse as4sk as9skapa ass5kis ass1kj ass1ku ass1l ass3n ass1p ass3pi ass1t as3sty 1assur ass1v 2ast. as7tak ast5enh as7terr ast1ho as7tid a1stj ast4kur ast5land. a5stof ast3sp as9tua a1sty as5t^^f8r ast3^^f8v as3ul a7sum as3va a3syk 4asyls a6sym as5^^e5 a6ta. at6a1f ata1i atak4 ata1ka ata1kr a4taks a9taks. atal8 a5tall ata9lov ata1m atar3m at7arv ata1se ata1t ata1ve at5avh at3b ate9ba a5tegn atek8 ate7lek at1emb ate7rat ate3rit ater1l ater1s ater1v ate3sl ate3sti at3ett 1at2fer at2fj at1g at8has at2hi at7hov 4ati a1tid atids5 a1til ati2r ati7r^^f8 3atlant 5atlas at4mon 3atmos atn6 at3ny a7tob ato1la a6tom atom3te aton1t ato1pa a3toppe ato1s atra6 a3trak at5rot a1trus at7r^^f8s at5r^^f8y 2ats at7sem at7sik at7skat ats5kra at7s8kul ats1p ats2r^^e5 at1sty ats3^^f8 1attac at1tal at8tap attel8 atte3le atten4h 3attent att2f att3fe att9la att7op att7ov att2p^^e5 att3rad att1re at5try att1s atts8k atts8l att8ve att4vi att1^^f8r a5tub atv6 at3van at9vara at1ve at1vir at^^f8r1r at^^f8r1s at7^^f8y at7^^e5r at7^^e5t au1ba au5bl aud3l aud7st auge5l aug5le aug5sta au5h 1auk aukeli3 auk7sl auk5st au5kve au7lam aum5b aum1f aum3l aum5r aum7s8k aum7sp aum3st a1und aurant5r aur2l aur4sk aur7sl aur3st aus9kj aus7sl aus6t aust7ise aust7ri aute8 aut5fa aut3k aut7le aut5m 1auto au3tre auv2tre av5ab a1vag av1alv av5anl 1avans av8arb av1art a1vass 5av2bi 1avd av3dan av1dy 2ave ave1d2 ave7kn a3veld aven3s aver9m ave1s ave7se ave5v 1avfa av3f^^f8l 1avg av4gas av2gj av3hu avi2 2avig avi3m 2avin a3vink av5int 2a1vir 3avis. 3avisa avis5an 1avise avis7h av7ising. av7isinge av7isings. avis1l avis1s av2ka 3avkas 9avls. av1lun av2l^^f8 av8l^^f8y 2avn av7pris. av5prise 1avreg 5avrekn av3rev av1sa av8sam av5sendel av5sendi avs2i av3sin av8ska avs4kj av2sk^^e5 av3sle av5sli 3avsn av1sp avs7s av1sti av5sto av1str av5su av1s2v 1avt 4avt. av7t^^e5 2a4vu 1avv av1^^f8rn 6av^^e5 av7^^e5l a5v^^e5r ay5la ay1sa ay9st a3yt a1^^f8 a3^^e5 b4a 2ba. ba9bu 1bac 4bach back5s 8backt b5add 1bade bade5b bade5l 4bado 2baj bake1l bak3end bak9ett bak5kana 4bakkere 6bakkn bak5kr bak3ro baks4 bak5siden bak7sk bak1sm bak3sp bak7sti bak3str 3bakt bak1ta bak7to bak1tr ba6l2 2bal. 1balan bal5f 2bali bal3in bal5kl bal8l ball1s8 8balt ban2 2ban. 4bandj 2band1l 4bandm 4bandp 6bandsu band5v 4bandyk 4baneb bane5l 7banemes 7banenes 4banenet 6baneo 6banep 9banes. 4bane1t bang5s 2bani 1bank 2bankb 4bankd 4bankg 6banki 2bankk bank1l bank1r bank1s 5banks. bank5t 3bann 6bao 2bar. bar3dis 2bare. bare5b 2barh 8bari bark7s 3barn. 3barna 6barnad 5barne barne3r barn8le barn2s 3barns. 8barnsd^^e5 3baro 3barr bar3ska bar7skr 2bart6 bar9tal. bar9tala bar5tend bar5tre. ba2s 1baser 4basereg 6baseru 5bas^^e9 bass6tr 2bat 3batal bat2t batt3f b7av 8baz 2b2b bb5arb bb1d bbe3f bbe3g bb1eie bb9eig bbe3k bbel3l bber5l bber5m bbe3s bbe4sk bbe7ta bbe7to bbe7tr bbe3v bb7h bb1l bb5op bb1s bb1t bb5utf bby3r be2 2be. be3an be3bi bed2 be3das 6bedingss beds5a be3ek be7ev 1beg4 1beh be3hu 2beh^^f8 beid2 beids7ty 9beinar. 4beinerl 4beinerr bein3f bein5g 3beint 4beisa 9beita 5beite. be3ka bekke5s bek3sv bek7t 6bel. 5belastn bel1d bel3eie bel9ein 6belen bel3gj bel7g^^e5 bel7leg bel1o 2bel1s2 4belteb belt5rom bel1v 1bely 1bel^^f8 bel3^^e5r be3m^^e5 be5nat 2bend bene2 8bene. bene5s ben2h 5ben2k 4bensb bens2i be3of be3pr 2ber. ber1da 2beren bere5p ber2g 2berg1o 6bergs4k 6berg3^^e5 ber5he ber3kj bern2 2bero be3rom 2berr ber3re berser4 ber5sk ber7sl ber3sp 2bert ber7tall. ber9talle ber9talls. bert2h ber1v 1bes8 2bes. 8bestillings 9bestillings. be4s^^f8 2bet. beta5e be3tid betre7s be3tru 2bets be5tus 7bety 5bevar. 7bevara 3bevare 7bevaring. 7bevaringe 7bevarings. 3bevart 3bevi be7^^e5t 6b1f 2bh b7he b1hu 2bia bi8bl 3bid8r bi5du bi5erv bif8 bi5ges bi2ho bi5i bi4je bi3kr bi1ku bi7k^^f8 2bilarb bil1b 2bildeb 2bildef bil5del. bil7dela bil5dele 6bildere 4bildeu 4bildi bil5du bil1d^^f8 bile2 bi3leg 2bilei bilet3t 2bil1f bil3g 8bilh bil7ha bi7line 2bil5k bil1la 7billa. 3bil6le bille4g bil3l^^f8 2bil1m 6bilnings 9bilnings. bil3n^^e6 bil1o 2bil1p 2bil1s bil3ska bil5st 2bil1t 2bilu bil1v bi7ly bi5m bime6 6bindarm 4binderm bin3f bin5st b3int bi3ny bio5d bio3e 5biol bio9p 5biotika. 5biotikae 5biotiku bi1p birke2l bi3ro bis2 bi2sam bi3sek bi9sn 4bispeg bisse4 7bitern bite6s bi7test 4bitf 2bito bi8tr bit9v 8biu bi7vo 1bjel bjer2 bj^^f8r4 2bj^^f8rg 6bj^^f8rnf 4bj^^f8rnj 6bj^^f8rnp 2bj^^f8rnv b1k bkjenne6teg bl2 bla4 1b6lad 9blada. 4bladar 8bladf 6bladg 2bladj 8bladk 8bladl 6bladst blan2 blande5b 5blank b2lek ble8m blem5av blem1b blem1s 8bler bler8a 4blikkp 4blikkt 5blind. 5blinde. 6blindel 7blindes. 7blindh 9blindi 9blinds 9blindt 6blivelses 7blivelses. blo6 blod1d 3blodi blod1r 8blodsd 2blodsh 6blodsl 2blokkl bly7v bl^^e51m 6bl^^e5sei b1m 2bn bne1 b2no b2o bo5ak boa5s bo8ban bob3ba bo1bo bob3s 6bob^^f8 6bodg bo5die bod8m bod7r bod7t bo8d^^f8 4boe. bo7ef bo3enh 2boerf 4boeri 4boerl 4boero 2boers 6boert 6boes bo1f bo4gi bogn7 3boik bo1j bo4ja 2bokak 2bokav 4bokd bok1et 2bokf 2bok1i 2bok1k 8bokl 2bokm 2bo4kn bo3kol bo3kos 2bokp 2bokr bok7ri 1boks 2boksad 4bok7sal 8boksb bokse5rin bok3sid 8boksl 6boksr 6bokss 4boksy 8bok1t 2boku 6bokv bol3eie 6boligi 4boligt bol1v 1bom bom2b 6bombel 2bombep bombe3s bom1s 6bon. bon3ato bon5f bon3gr bong7s bon3s2 3bonus bo3pli bor7dal 4bordb 3borde 4bordh 2bordsm 6bordt bore3s bo7rette bor6g 6borgh bor6l 5born2 4bor2r bort7et bort1s bort5v bor7v 8bosk bo2ska bo7ski bos6s bo1sty bo2st^^f8t 4bou bo1v bo8y 6boym 9boyse b5p br2 2brae brak3n brak1s 2bral 2brand 3brann. 7branna 3branne 4branng 1brans bra7vi 6breddet 6breddr breds8l bred5sp 6breiddr brei3s6 bre8ka 7brekking. 5brekn brek5s bre2m6 1brens 4brenta bres2 bre9sk bre3sp 3brett. 3brettk bre3van brev5in brev5r 2brevs bri2 brie2 brim8 6bringers 6bringert 4brog bro1l 3bror 4brork bro5sten. bro7stens. 6brotsf 7brotts. 8bruddl 2brudds 7brue 6brug 6brukerek 4brukerl 6brukers 8brukert bruks1 3bruks. 4bruksar 4bruksk 6bruksmet 2bruksp 2brukst bru3l 5brun bru5pl brure3 bru7te 4bruv bru7va bry8s 6brytings 7brytings. 6brytningsp 6br^^f8df 8br^^f8dk 6br^^f8dl 2br^^f8dsd 6br^^f8ko 8br^^f8kt br^^e53d br^^e51s 2bs b1sa bs2b b8sc bs2e bs3el bs8i bsk2 bs1of bs1s bst6 bste6 b5s4v b1s^^f8 bs2^^e5 8bt b9to b5tro b2u 8buari 8buars bu3be 6buc bu5dal 4budt bu3em bue5s 6bufe 6bug bu5ga 2bui 1buk 8bu7ki 8bukkl buk3l bu5ko buks6 6bukseh 1bull b5ung bunn5f bunn3l bunn1s bu1o bu1rei 2burg bur4l bur2m bu3ro burs2d bus2 bu7sat bus6e 4buser bu3ski busk9^^f8 5busta 6bustadi 6bustadt bu7stan bu5sty 2but. but1al but3b 2bute bu5tem b7utg 1buti 4butiv but3k but5l^^f8 but3p but3r but3s 2bu5v b1v b6vene by1ak by5al by1ant 8byap 2by1b by7dep 8byek 2by1ga 8byggerf 4byggerk 4byggerp 4byggerr 4byggers 4byggert 8byggeru 4byggery 6bygger^^e5 6bygningsk 4bygr by1g^^e5 6byh 8byi 6byj 2by1k2 by4kle 2byl by3leg by1li by7l^^e6 4by1m 6byn 2byp by1par by3po 3byr^^e5. 6byr^^e5b 6byr^^e5di 1byr^^e5e 2byr^^e5f 4byr^^e5g 2byr^^e5kj 6byr^^e5l 4byr^^e5t 4byr^^e5v 4bysa 6bysb by1se 8bysj by5ska by1sko by5sl by5so by7sp by5sto by7tal by5to by1tr 8byu 2by1v 6b^^e6k 8b^^e6re3s 4b^^e6rg 2b^^e6rh b^^e6r5is 8b^^e6rm 2b^^e6rs 5b^^e6rse 2b^^e6rt 2b^^f8d b^^f85da b^^f8l8 b^^f87lan 5b^^f8lge. 6b^^f8lgef 3b^^f8lgen 2b^^f8lges 4b^^f8lgjes 3b^^f8nd b^^f8n7o b^^f8r7d b^^f8r5p b^^f8r2s b^^f8rs5ti b^^f8rs1v 5b^^f8rsve 5b^^f8yi 1b^^e56 6b^^e5ndk 2b^^e5ndo 9b^^e5nds. 2b^^e5ndsk 8b^^e5ndu 4b^^e5nd3v b^^e5s3te 6b^^e5tb 7b^^e5tbyggi 4b^^e5td 4b^^e5th b^^e5t7j 4b^^e5tm 2b^^e5tp b^^e5t1r b^^e5t1t 8b^^e5t1v 2b^^e5t^^f8 ca2 ca8fe carne8 car1v ce1i 1cel cele2 2cellep 6cellet ce9ma cen6 cene1d cene5s cene1v ce2r cere6 certe4 ce7ru ces8 ce3sk cest1o ce1t ce1v c^^e96 c2h 3cham 3chip ch3st ch7ti ch1v cie2 cies9 cine2 cir4 4citytr c8k ck3art cke3l cke7s ckey1n ck1k ck5nu cko2 ck3r ck7tu 5clas c1m 1coc co1d co7f co7go cola1f con4r cor6 corn4 cover3v c1p cr8 6cre2 cros2 1cru cu8 3cub cud3 1cup. 9cupan 9cupar 1cupe cup1l cup3p cup1r cup1s cy8 8da. da8bel da3ber 2dad da3d^^f8 8dae 7dagb dag4f dag9lei da4gr 2dags 8dagsb dag5skol 4dagsl dags8leg dags3p dag3te da5g^^e5 da5he da3kas d8akser d9akser. d3aktig da5kv da2l 2dal. dal1b dal6by 4dalenu dale7s 2dals dals1l dal7v dame3l dame1s dame1t dam2p dan2 2dan. 8dand d3andel 8dane da9net danke2 d1anl 6danningsv 4dansf 2dansg 8dansm 8dant dan9til da9ny da3o 6dap 2dar d8ara d5arbeid. d7arbeids. dard5r dard1s8 dare5s dar9h dar7la d1arr dar1s dar7tal das8 8das. 6dase da5sei da9sko 1data. data1d data1l data1r data1s data3v 3datere 7datering. 7dateringe 7daterings. 3datert 7dat^^e9 d8ato 3dato. 7datoa 3datoe dato7g dat3sj dat3ti 3daud daud7v daugs3 d5aus d8austa d1av2 da7va da3vin da9v^^e5 d3bag d1bak d7ballene d5baller d5ballme d7bana d7band. d9banda d7bande d7bane. d7banen d9baner d1be dbet4 d1bi d1bl d3bor d7bot d5boys. d1bre d1bri d1bro d3bruk. d5bruka d3bruke d5bruksme d1bu d1by d7b^^e6r. d7b^^e6ra d5b^^f8n d5b^^f8y d1c 8dd dd5arm d1dat ddata2 dd1b d7deling. d7delinga d5delinge d7delings. ddel5l ddel3sv ddel5v dder5m dders8 dde6s^^f8 dde5ta dd2h d1dia dd8om d4doms dd1re d1dri ddriv2 dd2sala dds1l dds5s dds3tab dds7tak dd3ste d1du dd1v dd6va dd5^^f8y dd1^^e5r 8de. de3ak de1all 1debat de3bl 8debo de3bor de7by de3ch ded2 de9da dede6 de5dek de1del de1dr de5dun de1dy de1d^^f8 de1fer de1fes d7eff d1eft defter2 de7fu de7fy de1g de3ge d3egens d5egn de3gra de1h de2hav de3he deholde4 dei6 d1eie d6eierg 5deig. 3deigen deig5r d2e1in d5eini dek2 de5ke de3kin 1dekk 6dekkan 4dekkav 4dekkb dekke5l 4dekkf 6dekkp 2dekks de3kle 1dekn de5kob de3kom de6kor. de2kore de1kra deks5k de1kv de1k^^e5 de7lad de9laga de3lage del3d de5lenk d1elev del4hi delig4v de1lis de1liv del4kl del8le del9lev del1pe 2dels dels3at delse2 dels3ei del3sek del5sik dels3po dels3v delta7la del5ter del1tr delve8 de7l^^f8pen de5l^^f8ps. de1l^^e5 de1ma de7marks. de3mas de3mat de1mid de3mil de7min 3demni 1demok 1demon de3mor 1demp dem7po 3demr de1m^^e5 de5m^^e5l. de5m^^e5le 2den de7nak de3nas d5engen. de3nor de3not den1r dens5al dens3kj den3sky dens5p dens1t dents8 de1nu de3ny deo1b deo5la de3or deo1s de1pat de1pe8 d7eple de1pu de5ram der5av der3dag der1di de5retn de3rett der7fl der5f^^f8 der1gi der1j der1k der5lagt derleg6 der7legene der9legens der9leger der5legg der6legn der3lev 6derm der1mi der3net der5n^^e6 de5ror. de5rose der1r der5set der7skrift. der7skrifte der7skrifts. der3sl der9st^^f8 der8s^^f8k dert6 der5tem der5tim der7tv der5un de7rus derve8 der7v^^e6 de6r^^e5dsf 8des. de4saks de7saks. de7sel de1sen des3ers de5sif 1de2sig de8sin de1sj de1sk de8skiftt des9lan des2le de2sl^^f8s de3sno de9son des2p des7pl de3spr dess2 5dessert de3sta de7stel des7troe de3str^^e5 de7sty des3t^^e5 de5s8^^e5 8det. de1tak de5tarme de7teg 3deter de1ti de1tj de7tol de5tor de1tr det7s detter2 de1t^^f8 de1v de9var de4vil d7evn 8dex d^^e91 8d1f8 d2fag d3fag. d7faga d3fage d9fare d2farts dfe2 d3fi6 dfly2 d3fo d7f^^f8rers. d5f^^f8ring. d9f^^f8ringa d5f^^f8ringe d6f^^f8rings d7f^^f8rings. 8dg d1gat d5gav d7gin. d9ginen. d1gjer d9gjevan d9gjevings. d7gl d1gr dgrav6 dgr^^f8n8 d1gu d1g^^e5 d6g^^e5el d1ha d3har dhav6 d5hen d8het d9heva d1heve d1ho dholde6 d2hor d4hov d8huga d7hy d1h^^e5 8di. dia7bi 1diag di8ak 3diale dial6g di3anse dia1se diat3s di1b 7didakti dide8 die7k di3fa di3fe 1diffe di2fu di5fun dige6s dig5gr di5gren di3gru digs2 di5i dike6 di1kr 2diks 1dikt dik7v di7lin 2din di6na d1ind d2ing d3ingr ding9^^e5 dinn8 d5inns din3tr dio7f dio5li dio1re dio1s 3dipl 1dir di7rekn d3irs di4sc dis2i 3disip dis2k 5disket 5disk8o 1diskr dis5kun 5diskut dis2p dis5par 1dispo 3dispu dis8ta 7distansa 7distanse. 7distansen 7distanser. 1di2str di5tek di7val 1divis d1ja dje1d dje1m d1jent dje3s dje7va d1jo d1k2 d3kar d5kjed d5kjel d4kjo d5komf d7komma d6kraftan d6kraftp d7krav. d7krave d7lad d1lag d3lak d1lam d1lang d1lap d1lau d3lav d5ledd dle3f dle3gat d7leggings. d3legi d1lei d5le6ka dlem2 dlems3t dle3va dli7la d7lina d3liv d1lo d1lu d9lufts. d1ly d8lysb d1l^^e6 d1l^^f8 d4l^^f8f dl^^f8nns6 d1l^^e5 d1ma d4mannsf d1me d9med d1mo dmor3t d2my d1m^^e5 d9m^^e5l. d9m^^e5ls. dm^^e5l3se d6m^^e5lss dn8a d9nak dnatt4 d9nese d5niv d7no d9ny d1n^^e6 d1n^^f8 1dob do5ba 8dobbeh do9blan do3d^^f8 do7ef d3off d5ofr dog2 do5ger dogme5s do7ir dok2 8doks 1doku do5led do3list d2oljef doll4 do7lok do4l^^e6 1domin d1om8l d7omn d6omr^^e5des dom2s doms9a doms1k doms1l doms1p doms3te 3domsto doms3tr do6mu 8don. 8done don3f 7donin 6donnan don3se dont6 don3tu do3or d5oper do3pl do7po d1opp 6dor d1ord dord7b d1org dorg7s d5orm do3rop dor9st do1ru 1doser 9doses do7sl d7oste do7teg 7dotn do1tr 1dott do7t^^f8 d1ov4 d2overb 4dow d1p d6plana d6polk dpuls2 d3pum dp^^e58 dr2 d5raf 7dragningene 7dragninger 7dragnings. 6dragss dra4k 1drakt dral7s 1drap. 7drapa 1drape d1rapp 5draps drar7d drar5m 8dre. dre1ak dre6as 6dred drede6 dre3del dre7dr d3reds 9dreia. 9dreiar 3dreie drein7g 3dreini 6dreinings 9dreinings. d1reis 2drek d7rekk drekke7 dre1l^^f8 dre1m 5drepen dre7pri dre1sp dre5sti dre9tala dre9tale d1retn dre5to dre7tr drett8 dretts3 4drettso dre7val d2rif 4driftsf 1drikk 4drikkg drik7st d9rikt dring6 d5ringt drit7tr d6rocka drok8 d7rokk 2drom 1dronn d2ros dro7st d1rov6 9drua 3drue 3druk d1rul drulle4 d9rustningene d7rustninger d1rut d9rykka. d9rykket d3rykki d9rykks. d1rykn 5dryp 5drys dr^^f86 1dr^^f8m d1r^^f8r d7r^^f8t d1r^^e5d 1dr^^e5p 4ds ds1ad d3sak. d5saka d1sake ds1aks d9saks. d1sal ds3alf ds1an ds1ar ds1as d1sat d5saum ds5be ds2byt ds5dags. dse8 ds5ede ds1ef ds1ei ds3ela dsel5l dsels3a ds1em ds7enda d7sendi ds1eng d1senk ds1ep ds7erk ds5esk ds5est ds3eta d9sett. d7setting. d9settinga d9settings. ds1ev ds4falls ds2gi ds2gjev ds3ho ds1i ds2id d3side ds5ident d8sideo d1sik dsikte2 d9sir d2sjo ds5kab ds1kan ds3kar dskille4 ds9kin ds3kjen ds8kjo ds1ko d5skole ds6kraftt d7skrift. d9skrifta d5skrifte d6skrifts ds3krim ds3kro d7skr^^e5 d3skud ds3kum ds1kv ds3lag. ds3lage d2slags ds5lags. ds5lan ds7lau ds7lef ds1lei ds7lik ds5livsk d9s8lott. d5slyn ds5mannsl ds2mil ds8moder ds1n ds1o d7sog d7sok dsommar7d dsopp6 ds5os d7sot dsover7t ds1pa ds1pe d5spei d3spek d1spel d1spi ds4plank ds6plasst dspor4 ds5pot ds4prisu d5spur ds1s2 dssammen7s ds7se ds2skog ds2skr dst2 d2stad d8stak ds7takar. ds5taker. ds1tal d1stas d1stat d7stau d8steg d8steik ds3temp ds3tend ds3term d1stig d3stik d5stilli ds1tim ds1tin d7stof d1stor d7stover ds3trad ds1tre d1stri d8str^^f8mo d7stua d4stub ds1tun ds1tv d1sty d1st^^e5 ds1u d1sum ds5ut ds1v dsverd8 ds8verksi ds2vet d3svor ds8vot d1sy d5s^^e6 ds1^^f8 d1s^^f8m d7s^^f8rl 6dt d5takk d1tal dtals8m d1tan d1tap dtariff4 d7tarma d3tarme dt7by. dt7bygd. dt5bygde dt6b^^f8 d1teg dt5eid d6tekne d1tel d7terr dte2s dt6hu d1ti d2tids d5tids. dtil4 d1t8j dt1n d1tr d8trykkf d6trykkse d6trykksf dt1si dt1sk dt5sl dt3son dt1sp dt3sti dt9stoppar. dt6su dt3ti dt5tr d1tu d1ty d1t^^f8r due3s 5dugl 3dugn 3duk. 1duke 7duks. dum8p dums2 dunder8s 1duo d3upk d7urei dur8h duse8 dus3h dus3l dus5n dus5s4 6d1ut d7vanle dvann2 dvar8 d7vask d4vegp d6vegs d1vei d6vektt d7vel dver2 d5verge. d7verget d7verki dverne4 d6versd dve6s d1vesk d4vestk dvest7la d2vet d1vev d1vil dvin6 d7vina d3vine dvirke5m d6visjonsp d6visjonss d1vu d2v^^e6rsd d4v^^e6rsp d1v^^e5 dy7bl dy8fl 1dykk 4dykkeru 6dykkf dy7li 1dyn d5ynk dy2p dyp5r dyp1s dy6r 3dyr. 2dyral 6dyrau 8dyrav dyre1m 8dyrer 2dyrf 4dyr7h 3dyrkar 1dyrki 4dyr7kj dyr7l 8dyr5m 4dyrn 2dyro 6dyrp 2dyr1s 5dyrs. dyr3u dys8 3dyss d1yte d^^e6r5s 1d^^f8d d^^f8ds1 d^^f8ds7t d5^^f8kn d3^^f8ks 9d^^f8ma 7d^^f8mma 1d^^f8n d^^f8r3b d^^f8r1h d^^f8r3ka d5^^f8rke d^^f8r3kl d^^f8r3r 4d^^f8rsp d^^f8r3sti d^^f8r3te d3^^f8st. d7^^f8ste d5^^f8str 1d^^f8t 6d^^f8ves d7^^f8vl d1^^f8y. 7d^^f8yp 1d^^e5d d^^e59dyra. d^^e55dyre 1d^^e5p 3d^^e5rl d1^^e5rs e1ad e1af eakk2 e1akti ealba4 eal2br eal1ka eal5me eal6skolee eals5l eal5ti eal1v e3aman eam3ar e5amn e1an e1ap e1ar e2ara e8ars ear7sp eas7k e3asp e3ass eat2 e5atel e1att eau4 e5aug eauge8 e7aur e1av2 e9avl. e9avle e1b6 e3ball. e5ballen e7baller e2bankf e4bankl e4bankv e5barte e6beinar e4beins e9beins. ebe5mi e2bens ebens5k e8bere. eber7r eber1s e7besl ebet3s ebil3ei e4billa e2biln e8bilv ebispe4s ebo6k e6bokh e8boligo e4boligp e2bords e5bords. ebort4 e5bry e8bustadp e2buta ebygg8 e7byggings. e7byggje eby8s e2b^^e6rb e8b^^e6rk e4b^^f8. e3b^^f8rs. e5b^^f8rse e4b^^e5tf e8b^^e5tl e2b^^e5tr eca5 e6cha e1chi ec3l e3com ed4ag edag8s e5dags. e5dagsa e6dah e1dam e1dann e6dansi ed1arv edata8b ed1b ed9bru ed2b^^f8 ed5b^^f8k edde8la 3eddik ed1do edd5se edd7sk edd3sp ed8dyr e1deba ede2f ede3fo ed7ege ed1ei e3dekor e1del. e3dela e3delen e5deler e3delin edel2p e3dels. e1delt ede5mol eden7g e1dep e6depe e6depr eder7ho edes3l ed7ett ed7gangs. ed1ge ed1gi ed7gje ed1h edi2 edia5ter ed1id edig3g ed1in e1dip e7dis. e1div e5djup ed9kjend ed5komst. ed5komste ed1la ed6leggings ed1m e1dok edo5l e2d1op ed1or e1dos ed5p e3drau ed9roa edsammen5 ed9set. ed1sid ed1sj ed7ski eds4la ed7slags. ed7stadene ed7stader ed5stads. eds5trak e7dua e1due e9duf e1dukk e7dunk e7dup ed1ve ed3vo ed7v^^e6 e1dyk edy5s e3d^^f8d ed^^f8ds4 e5d^^f8mmen e3d8^^f8r eedo5 e1ef eefter2 e1e6g e1ei e5eini e9einings. e1ek e1el e1em e9endr e3ener e1eng e1enh e7enig e3enk e3ense eens9l e1ent ee2p e1erfa e1erk eer3u e3esk e1ess eet8 e3eta e3ete e1eti e3ett eetter2 e7ety e1eu e1ev ee5var e1fa e3fab e5fagu efals3 efe2 e9fe. ef7ea ef5ef e1fel e7felt. e1fem 1effek ef3fo ef3h 8e1fi e8filmm 6e1fl ef1leg e3fly efly4r e7fob e5foldig. e5foldige efon3n efor6 e3forh e9formasjons. e3fot e8f^^f4ra e1fr e5fronte efr^^e56v ef2s1p efs1s ef8sto ef6str 8eft. efta3s eft3f eft1s efyr8 e1f^^f8 e3f^^f8d e8f^^f8lgel e3f^^f8r e1gam e3gang. e5ganga e3gange e4gangs e5gangs. e3garn e9gassane e9gassar e3gasse eg7dag eg9del eg6ei e2gel ege3lis egen7o egen7r egen3si 3egensk ege1s eg4fr egg1d eg1gje egg1l egi3as e3gift. e9gifta e3gifte egi5sp e1gjen8 e3gjerd e1glad e4gladh e1gled egle4sa egle4spr e9glit e5glu e9gnag egn7da 7egoi e7gong. e5gonge e5gongs. e7grads. egrense6s e1gru eg7sal egs8am eg1sj egs2pa eg5stan eg2traf e3gub e3gud e3gum eg1ve e1g^^e5 e6g^^e5s e1hal ehalds5 e5ham. ehand4 e3hank e3has e5havenes e8haversk e3havn e1he e5heim. e9heims. e4helsep ehjelpe8 e5hug e1hul e2husf ehus1k e2husm e4hvalb ehval3f e7hy e1h^^e5 eh^^e5nd4 e4h^^e5ndsa e4h^^e5ndsk eiar5t ei1b eica3 e9id^^e9 6eidf e1idr eids3tj eids5to eier1a 3eierb 4eierd eier5k 6eieru eier3v ei1fi ei3fl eif3t eig2a 3eigara 5eigare 6eigarfore ei3gat eig6e 3eigedo eige5l 5eigensk eig5la ei8kas eike1r ei5kon ei1kr 2eil eil7bu eil5egg eil1f eil1g eil3k eil1m eil5op eil1p eil1s6 eil7st eil1ta eil7ten eil5tes eil9top eil3tri eil1v ei7l^^f8 e5imag eim5al eime3s eim9ett ei3mid eim1la eim5r eim7se eim5stad. ein5alt ein7dre e1indu ein5fil ein5fol ein9gjer. ein7gjo e2ini 6einings e3inkar ein5kl e1inn8 ein7nes ein3sen ein5sett ein7skr eins1l ein5stem ein7stra ein7stre e3inter ein3tr ein3u ein5^^f8 ei7or eip3s ei7pu ei8p^^e5 2eir eir9ak eir5k eir5l eir5m ei7rog eir3r eir1s eir5va eir7vel 4eis eis3aks eise3m ei5se8so ei1sj ei1ski ei8s1kj eis5ko eiso5a eis3se eis3tak eist8l ei7tei eite1r ei1tra eitt2b eit9^^f8 ei3vis ei7vo eiv3sp ei6^^e5 e1j ejul8 2e1ka ekams7 ekart6 e5karu ek7b ek2da eke6bl e1kee ek3ei eke8n eke1s ek3etab e1kil ekilo8 e7kim ekinn8 e5kiste e1kj e9kj^^f8nn. ekj^^f8p2 2ekk ekk9ist ekk3ord e6klasseo e1klo e3kly e3kl^^e6 e1kl^^f8 ek2ma ek7m^^e5 e1knek e1knu e5kny e7kn^^f8 e1ko e7kole e3komp e3kon e3kop ekord5b ekord3s ekor5m e4kostp eko5v 2ekr e5kraft. e7krafta. e5krafte e1krat e8kre. e3kred e1kren ekrets6 e5krev e1kri ekrins8 e1kro e2kru e7krus e3kr^^e5 ek5r^^e5d 1eksa eks2ak 6eksan 1eksem 2eksen eks2k eks3ka 1eksos 1eks2p eks7par ek2s2t 8eksta 6ekste ek7stel ekst5op 3ekstra ek3sty ekst3^^e5 ekt7arm ek3teg 5ektepar ekte5sta ekt3l 2ekto ektor7n ekts1p e1ku e3kup e2kus e7kvar. ek9vara ek5vare ek3ved e1kvin 1ekviv e3kvo e1kyll e3kyn e5kyt e1k^^f8 e5k^^e5l e1k^^e5p e3k^^e5r. e7k^^e5ra e5k^^e5re e5k^^e5rs. 2ela8 el5aften. elag2 el1ak e5lake e1lam 8elan e9landa e3lande e4lande. eland2m e1lang el1anl e1lap 8elar elar7m el7arti e3larv el5ato el7atr e1lau e4laupss e7laus el1avs el1b el5bel el1c eld1g eld7l eld8s7e el7dy e1led eledd8 ele7gal eleg7ha e1lei el3eier el7eigar e3lekto ele8leg 3e2lem e1leng el5enh elens3 ele5pe el7erg e3lerk ele3sen ele7sku ele5sl e8leva ele3vis e5l^^ea el7fanga el7fat el1fel el5fr el3fu el1f^^f8 el4ge elg1s2 el1hen el1hu el3h^^f8 e1lid 4elig e1liga e1lign e9lik. e3like6 e3likh e1likn e1lil el1ind e3line. e4linjes el3inte e9lista. e5liste. e3litu e1live el1ka elke5t el3kis el3kj el3kl el1kn el1ko el7kor el1ku el3kv 2ell ell6ar ell3by el6legi ell3eie elles7k elles5ti ell7f 7ellip ell1m ell5s8l ell3sn ell1sp ell5sv el1lys el7l^^e6g el3l^^f8s el3l^^e5 el1m el2mak elm6o elm2s el5n^^e6 el3n^^f8 e4lob e1lof e5logi e1lok e1lomm el5omn el1oms el1op el1or el1ost e3lovs. el3pad el3pal elpe1t el4prisu el8rak el9r^^f8 el3sag 2else el9setjings. el5setn el5sette el7settinga el9settingsforh el1sid els3kal 7elskan el3skje els7kor el5skot el3skud el6sk^^e5 els1la el5stad els5tim els1tj el1str el3st^^e5 el1sy els3^^f8k 2elt el1tal elt1d elte3g el5tent el1tra elt7r^^f8y el5tr^^e5 el1tur elt1v e3lua e1lue e3luf e5lug e3lukt el5ung e7lup e5lus elv1an el8vas elv5d el8v7erv el5vok el1v^^e6 e1ly el5ynd elys8b e1l^^e6 el^^e6r8 e8l^^e6rarfo e6l^^e6rerfo el9^^e6rv e6l^^e6t e1l^^f8f el3^^f8r e3l^^f8v el3^^f8y. el^^f8y7var el5^^e5ri e1l^^e5t ema1da ema2f e1mag 5e4malj e2mana e3mann. e5manns. e7mannsbol e6mannsfore e1mar em3arb e4mari e1mas e3maski e6maskinp ema7sku e7mat. e1mate em2au ema3uk 1embal 1embed 1embet em3bru 6emd em9del 4eme2 e1med2 em7ef e1meg e5mei e1mek e1mel e7mell em5els emen6b e8mene e1menn emer8k e1mes e7metrisk em7etter em1f em7gangene em7gangs. em9gi em5g^^e5 em1h e8middeli e6middels e2mik e1mil emilli8 2emin emi3tr 8emj em8kommelighets em1la emle4 emleie3 em7leie. em7leien em9leier em5mile em7m^^f8teti 8emnd e3mob e1moge emo1gr emo5ka e3mor. e1more emot4 e7moti emp2 empe7ri em5plan em2po empo1s em7sat ems3ju em5skre em5skrivi em7sku em7stille em9stillinga em9stillingene em9stillinger em9stillings. em7stor ems3u em1sy em7tal emte1g em6ten em6tre em8tr^^e5 em5tv e1mu e3mug e4mule em1v em8^^f8y em^^e5l2 e2m^^e5ls e3m^^e5ls. em1^^e5r 4en. e5nag en3ak enal2 en3all e1nam en3ant en3ass e4natts en1avi en1b en3dag en5dans end5arb ende7lag ende2l^^f8 ende3pa 7endepu endis3t 1endr 2endre en5drek end3set end5st endt5la end3v en1dy 2ene e6ne. ened4 e5neds en3egg e3nell e1nem en5eng 5energi. 7energibyr^^e5s 5energie 9energis 5energiv ener5st ene1se e3nesl ene5ten ene2tr e1nett en1f en3fl en4forl enfor5st en5gam 1engas 4engass enger3s enger5u enge7v eng7k eng5led eng3li engress6 engros3 engs4e engs2l eng5so engs2t eng5^^e5 en1ha 6enhj eni3fo 8enighets en1inn eni3str en1ka en6kar. en7kil en5kis en9kj^^f8p. en1kr en1ku en7ledere en7ledern en9leders en9lev en6l^^e6rt en1l^^f8 en5mo 4enn en9nag enn7d ennes5v enn5f enn7g ennis3m enn1k enn2o enn7r enns3l enn3t enn1v eno6f en3ok e3nomi en1op e1norg e1not en2p^^e5 en3rin en1ro 2ens 6ens. ens5af en9saka en5saken en1sam 3ensemb en5sent en1sl^^e5 en7sopt en5sort en7spra ens5tak ens7tal ens3tes enst4r en5svar ens3^^f8k ent3and en7tegn en5tenest ente7sta enti4k en5tild en1tje en3tog ent1or en3tref en4tro en5tro. en5troe ent3rol ent7r^^e5d. ent9r^^e5de 3entus en1t^^f8 en7ul e1num en5un en5ur en1va en3v^^e6 eny1b eny5s e1n^^e6 e1n^^f8t en3^^f8v e1n^^f8y e1o eo1bi eo1di eo5d^^f8 eo1fi eo5gram. eo5gramm eo1in e2o1k eo5kro e3oks e2ol e3olj eom8 eo1ma e3onk eons4d eo1o eo7pl eopp8 eo9pr eore8 e2ori eori5d eo5rom e2os eo7sek eo1sp eo7to eo1u eover2 ep4 e3pak e1pap e3pas e2pati e1ped e6pengeg eper4b e1perm eper3re epi2 1epid e1pik e3pine. e5pinen e7piner e1pinn 1episo e1pl e2ple e7pleia. e6pliktr epo2 e7pog 1epoke e5pop e3post eppen8 epp3h e5presi e4prisav e3pro e3pr^^f8 eps1k eps7lu eps1p eps1t e1psy e1pul e1pun e1pus e3putt. e9puttan e9puttar e3putte e1py e1p^^f8 ep^^e56 2er. era3bal e3rac e7radar e1radi era1el er1aft era5kar e1rake era7kl er1aks er1akt eral9t era3man e3ramp e8rand e7rangl er5apin er1apo er1arm e5rasane e5rasar e1rase era3sel e7rasi er1ass era3tr er5att er7aus erav2 era1ve er1avh er5avl e3ravn er1avs era3w er1b er3bat er3bin er8ble er5bruk. er7bruken er6byggings er3dale er5deler erdi1o erdi1s erdi1t er1d4r erds1t er1du er1dy er1d^^f8 8ere e1rea e1reda e7redd er1eff er3eft er3egen e3regu e1rei er1eie e7reka e3reke e1rekk er3ekte e1rela er1ele er1emn ere7mu er5enden er5enh e1renn e1re4p er3erf ere3sen er5ess. e9resta er3esti ere7st^^e5 er1eta e6retnings e3rett. erett4s e5retts. e8rettsd e6rettsh e5rettsl e8rettslei ere4tu e1revi er1evn e1revo er5fan 3erfari er1fe er5fj erfly3p er3fol 6erfr er7f^^f8t erg5elv ergi3f er7gj er1gl er4gravs er2grun er5grunn. erg1s er1gu er7gud er1g^^e5 er5hag er9ham er1han er1hei er1hen er1h^^e5 2eri e8ri. e1ribb eri3bl eri3del e5ridn e4rie eri5ent eri2fe erika5t e5rill eri1mi e5ringi e7ringj er3inns er1ins er1int eri3son eri5stil eri5sto e3ritua eriv8 eri3var eri5vi er5ju er1ka er2kar. erke2m erke8mi erke9midle erke5te erk7ett erke7ty er5kil er3kjev er1kla er3kle 1erkl^^e6 er1ko er2kop 2erkr er1k^^f8y er5lagsd er5lagsm er7lagss er3late er9latn er5latt. er5latte. er3legn er1lei erle9st er3lign er1lik er1lo er5mag er1mak er5mate er1med er3menn er3merk er1mes er1mid er1mor er1m^^e5 erna7la er1nas ern1d erne9bu er3nese er5nett. ern3sal ern3son ero2b 5erobr er1off e1rogn ero2i e1roll e1rom er5omk e3roms. er7ond er1op e5rop. e7ropa e5ropet er1or e3rore e7rosa 3erosj e1rot er1pl er3por er1pu er7rad er8ran er7rekt erre1l er3rent er5rog err7s er7rup er5r^^f8 6ers. er1sa er1sel er3send er5sete er5sett. er7settinge 4ersj er1ski er1skj er3skol er9skots. er9skotts. er3skre er5skriv er3skut er1sky er7slags. ers6led ers4mi ers3m^^e5 er5sne er1sni er3somm er7sot ers4ov er1spo er3spra er3stas 5erstatn er3sted er5stem er1sti ers3tro er2stun er1sty er3st^^e5 er1sun er1sv ers4ven er3synt er3s^^f8m er8ta. er3tab er8tals er3tap er3term erte1s ert2i4 er9tida er3till er1tit er1tj er5tje er3tog er5tol er5tom er1ton er1tr ert5rol ert7st ert1t er7tun er1tur er1ty er5t^^e5 eru8 erud3 e1rui er1uk er7ulk e3rump er1ung er1ur e3ruta e1rute er3utn er5vanne er5vett er1vil er1vol ervs1 er1v^^e6 er1w e3ryd e6ryddings e1ryg er1yr e1rys e1ryt e1r^^f8k er1^^f8l er3^^f8n er^^f8r2 e5r^^f8r. e5r^^f8ret e5r^^f8rs. e3r^^f8rsl e1r^^f8t er5^^f8y. er5^^f8ya e3r^^f8yst e1r^^e58 e8r^^e5. er^^e5d5m e9r^^e5ds. e8r^^e5dso er3^^e5le e2r1^^e5n er3^^e5p er1^^e5r er^^e5rs2 er3^^e5se er7^^e5ta e8r^^e5v 8es. e1sa es3aksj e6same. esammen4 e4sangf es3ant esar7re es7byl es4b^^f8. e9segl. e7seil e1sek e1sel esels6 e1seng e3seni e2sens e3sentr esentral6 e8sep e2sere e5serien e5serier es1erk eses2 ese3sl e9setj es8fagl^^e6ra es3fo e1sho e6sie e6sildf es1ill es1ins e1sje e4sjefst es3jor e1sju e7sj^^f88 e8ska. e7skard e3skei e1ski e6skillere e6skinnst e6skins eski8t e5skje. e8skjer. e7skli e3skole e4skolel e7skot es7krins. es7krinsa es9krinse e7skru e3skud es2ky eskyrkje6 es8lags e6slagsk eslags4m es5last es3lau es7lega e3slett es5ligg es1liv es5lun es7mid es1of e3soli e3somm e7sona. e1sone e3sorg. e9sorga. e5sorge es1ori e1sort e1sos e5spann. e7spanne es3part e2s3pas espe5dale e5spell e5spill. e7spilla e7spillen e5spillet es8planp espor2 e7sport. e7sporte e7sports. e3spray es1pun es3re esrett6 esr^^e5d5m es1sak es7sang ess3enk esse3p esse1s ess2he es8sin ess3ja es2skad es7skaden. es7skadene. es7skadenes es9skadens es7skader. es7skadet. es7sol es7son ess1pa ess7tem ess5tor ess9tua ess5tue ess1va 8est. e5stade esta8fo es7takt es9tal. e3stang e2stap e6star. e3start e1stat estav6 est5avs e7steins. es5temp e7steng e2stens est1ho est4hus es5tid e5stila e3stile 5estimat e2stiv e1stj es3tjen est2ka est8leg e1stof e1stok e3stol. e5stola e3stole e5stopp. est3ord es5trak es6trekn e8strekt es3trib est2spe est6spil e1stu es7tved e9styra. e6styrep e5styret 8est^^e5 e5sug e1sum e5sundag es7ut es3vars e5svek esverd8 e3svikt es7vis e1sy esyke3p e1s^^e6 e1s^^f8kn e5s^^f8m 8et. e6ta. e1tabe et6af eta2fo e7tagi etals8ma eta8n et5anen e3tange e5tant eta3o e7tapa 1etapp 3etasje e3task e5tast 1etat 6etati e5tato 2etatt et3aun eta5ve et3ba. et5ball. et5balla et5balle et7ballig et7balls. et7ballspi et7br et4b^^e5nds et7d e1tea ete2e e9tei e8tekne e1teks e1tel e1tem e5tenest e5teng e3teno e8tens e1tep ete3rad e5terap eter7v e1tett et1g eti2 e1tid e1til2 e1tim e6times e5tip etis2 e3ti^^e5 8etj et3j^^f8 8etl etnings5 2eto e1toa eto8f e5tog e1tolk eto7me e1top eto3re e2tos eto5t e5trad e1tref e2trel et3rest etre5v etro1s etro5v e4trygdl e1tr^^e5 8ets1 et2sc etse8m et8sl ets8leg etslov6 et1sol et1spi ets5v et2t ett3alt etter5ap etter5at 7etterk 3etterr ett3esk ett3f^^f8 2etti etti7a ett5led et8to etto5re ett3ref ett7rek et5try ett5sind etts3pa ett3spi ett8var ett2vis e1tu 3etui et3va et5verk e7tvist. e7tvista e5tviste e1tydi ety5f e6typi e7t^^f8m e3t^^f8n e1t^^f8r e7t^^f8s et4^^f8y e1t^^e5 eu2 e5ug e1uk euke4 e1ul eum2 e1un eunder8 e5uo eup5a 1eur 2eur. 4eure2 2euri euro5v e1ut eute8 e3uts ev3akti e2vaktl e4vaktt e9vald. e7valde e9valds. e1valg e4valgpr eval9k 1e2valu 2e3valut 1evang e1vann e2vanns evann7st ev6ans e2varea e4varee e4vareg e7varsl e1vas e3vedt e5vegen. eve9gl eve7gre e1vei e2veis e3veis. eve2n 3eventy eve3ny e1verd e4verds e7verds. e3verf e1verk e7verm e6vernr ever7p eve3sl eve3sta eve6ta eve7tek ev1g e3vilj evin2 e7vinen e7viner evin8k e1vir e1vite ev3k ev2m 6evnetapsp evn3s ev1ord e3vot ev7p ev1s ev2so evs8v ev9tal. ev9tala ev9tale e3vu e4v3un e5vyrk e1v^^e5p ey4bo e3yd ey5i ey1k ey1l ey1m e1yng e1yr ey1s e1yt e7yti ey1tr ey9v e1^^e6t e1^^f8 e1^^e5 e^^e5rs4v ^^e91a ^^e91b ^^e91d ^^e91f ^^e91h ^^e9hand6k ^^e91i ^^e91k ^^e91l ^^e98let ^^e91m ^^e9n3er ^^e97n^^e6 ^^e93o ^^e91p ^^e91s ^^e91v ^^e95^^e5 ^^e8re1d ^^e8re1k ^^e8re7m ^^e8re3ner ^^e8re3p ^^e8re3s 2fa. 1fab 2fabe fa2e 1fag fag1a fag1d fag5eti fag1g 2fagh fag1i 4faglin 6fagl^^e6reru 6fagp 3fags. 2fagse fag5sku 4fagso 2fagss 2fag1st 4fag1t 2fag1u 2fai fak8 6faksn fal2 fal9h 8falkh 6falkp 6falku 6fallsb 6fallsf falls3l 4fallsm 4falls3p 2fallss 8fall^^f8 4falo 1fam 2fane 5fangara 9fangare 7fangarf 3fanger 4fangerb 6fangerse fang6s fangs2t 5fangst. 7fangsta 5fangste fangst5ev 8fangstf 4fangstk 4fangstp 4fangstr 8fangsts 9fangsts. 2f3ank f3anl fann6 fan3sk fan6t fare3s 1farg farge3l far3mo far4st far4t2 1fart. 3farts. 3fart^^f8 1farv far8van 8farveg 2farvei fas8 1fast 8fati fav4 f5avh f1b f1d fe1a fe7ak fe9al. fe7ala fe7ale fe5ba fe1do fe5dy fe1d^^f8 fefter4 fe1g4 6fe3h 1fei 8feil1d feile2 feil5l 2fek 4fektera fekt9esk fe7lar 2feld 6felem 6felep 2fele1s 8felet fel1j felle2s fel7l^^e6 fel5ok fe2lovk fel7ste felt7a 3feltet 4feltm 2feltsv fem1d fem3p fem7s femti3 fem9tida fem1^^f8 fen2 6fene feng3h feng4s fen3l fe1p 6fera fe1ram ferd5skr 2fere fer3ers fe3rett 8fer^^e9 4fergep 1ferie 7ferj fer3l fer3ma 8fern fer5n^^e6 fer2r fers8 fer7skr fer1so fer3st fe1ru fe1si fe1sk 6fe1sp feste5rem 1festi fest3r 4festu fest9^^f8 fe3tol fet5or fe1tr fetter2 fett5j fett7s fe7ut fe7va fe7vei 4f2f f6fa ff5ak ff5arb ff2ba ffe1dr ffe5e ffe1m ffe5ras ffer7r ffe3se ffe1sl ffe9sto f8fi ffi7l ff5int ff7lag ff1n ff5res ff3ret ff3r^^f8 ff5ser ff5sl ff3so ff1t2 f5fug ff7ur ff5ut ffysio5 f1gr 2fi. fia1b fia5d fia7g fia3k fia1l fia7li fia7st 7fiber. 9fibere 4fiberp 2fibers 2fic 2fid 6fieldm fien4d fie2s fig4 fille5r fil2m 4filmd 2filmf 4filmk 8filmn 6filmpros 4filmr 3filo fil1s fil3v fin4a 7finala 5finale. 4finalem 5finalen 6finaleo 5finaler 4finalet 3finali 3finan 8finane 2finar fin5art 8finb 2find 2fine4 fin3f 4fingerr fin3gi 2fini 8fin2l finn2 finn3b 6finnelsesd fin3o 2f1ins2 fin3sl fin3ste fin3sti fin3tel finte5s 4fintr fin7ve 3fio fir2 fir4d fire1d fire3l fire3s fis8 2fise fisk7ad 2fiskan fisk7and 5fiskane fisk5art 4fiskels 4fisketr 6fiskf fisk3l 6fiskm 6fiskn 2fiskp 6fisksa 2fiskt fi1te fi3tim fitt3s fi7ty 1fj6 2fja fje2 f1jeg 7fjelle f7jen 2fjord5b 6fjordei 4fjordf 6fjordh 6fjordo 6fjordr 4fjordsm f3ju fj^^e6re3s fj^^f82 fj^^f8re7s fj^^f8s7k f1k fl2 fla2 8flabbp fla7be 3flagg 5flatem 2fleg f2le8i 7flekk. 3flekke 2flekt 8flere flett5v f1lev 5flid. 5flide 5flids. 3flidsf 7flidsutsalg flis3l flis7ta 9flit. 9flite 9flits. f9liv 1flo 8flodsl 4flodss flok8 flopp9s flor5m flos8 flu5b flue1s 1fly. 9fly1a 1flye 1flyg 5flyk fly1r fly1s fly1ti 4flytr 9flytt. 7flytta 9flytte. 9flytted 9flytter 9flyttes 9flyttet 7flyttings. 8flyttingsh 8flyttingsp 6flyttingsr 6flyttingst 7flyttn 4flyu f3l^^f8n fl^^f8y7s 1fl^^e5 f1m fmot4 fn8 1fo 2fo. 2fob fo5f fog8 2fogdem 6fogdk 2foi fol2 2fold fo3led 2folkb 8folkg 4folkh 6folkm 8folksn 6folkt 4fon. 6fondk 4fondsi 2fone 4foni 4fonk fon7l fon1s4 fon3tak fon1tr fon1v f1op fo2r2 fo5ram 3forb for3ban for5berg for4br 2ford. for5dan 8fordk 4fords fore3gi 9foreinings. 6foreldreg 7foreninge 7forenings. 6foreningsp 6foreningst 8forer fore2s for3ess fore4t for6far for3fo for7fra forg8 for8gru for8hal for7inn for5kan for8kj^^f8p for8lau for6lo for8l^^f8ys 6formannsj 6formar 8formasjons 5formate for6mo forne8 for7ra for7ro 4fors. for5san 3for8sen 6forsh for7song for8ste 7forsvars. 7forsvarsk 3fors^^f8 6fors^^f8rgerf 6fors^^f8rgerp 9fors^^f8rgjar. 9fors^^f8rgjare for7tala for5tale fort8e for5tek 5fortel for5tett for8ti fort8v for8^^e5re fos2 8fosa 2fose fo3sta foto1k foto3l foto5m foto7r fot1s fot5s6k fots8v fot1t f1ov 1f^^f4 3f^^f4r. 5f^^f4rbl 5f^^f4re 6f^^f4rp f1p fr2 fra8m fram5b fram5ma fram3p fram3se 5framsy fran2k fra9r8 fra7sep fra9si. fra7sp fra8v fre6 freds7l f6rek frem5b frem3se frem5si frem5sl f1rep f1rev 2friel 8frien fri2i fri7ne fri3p fris8 6fris. fri7sin fri5so fri3sp fri5stil 4fristl 6fristp fri1te fri9tera fri7tere fri5tim fri1v fro7f fron8 3front. fro8s6 fru3b 8frues 9frues. fru7g fru5l 6frum fru1t 6frydp 3fryk f1ryt fr^^f85b fr^^f83ka fr^^f85v fr^^e53r fr^^e57te 4fs f3sekr f7sendi f1sik f5skifte. f5skiftet f3sku f1sky fs3le fsne8 f1sp f1st fs7tan f1sy f7s^^f8 4ft fta7f ft1ak fta1la ft3alg ft1am fta3mi ft1anl ft1av2 ft1b fte1g ft5eini ft3enh ften2p ften1s ften3t fter3a fte3rik fte3rin ft5ett ft2fa ft5fart. ft5farte ft1g ft1h f7til ft3is ft1l ft1o ft2pu ft1r fts1 ft5sendi ft3seri ft3s2lan fts3le ft7snit ft8som ft5sort fts2por ft3spr^^f8 ft3sted ft1sto ft1t ft1u ft7vege ft6verkst ft1vi fu6 4fugl5art 8fugld 8fugl7eg 4fugll 8fuglr 4fuglv 1ful 6fulh full8pr 1funk funns1 fur8 fure8 furu3k f1v 1fy fy8k fyl8 2fym fyr3m fy5sa 2fyse 2fyt 2f^^e6 f^^e6r2 f^^e6re5s 1f^^f8d f^^f8de3k 8f^^f8dere f^^f8de1s 2f^^f8dta 4f^^f8dtm 6f^^f8dtp 2f1^^f8k f^^f8l2 1f^^f8le 6f^^f8lgjek 9f^^f8lings. 3f^^f8ls 7f^^f8ra. 4f^^f8rarf 8f^^f8rark 8f^^f8rarp f^^f8re2bu 5f^^f8rek 3f^^f8rem 2f^^f8rerb 4f^^f8rerek 2f^^f8rerf 4f^^f8rerp 6f^^f8reru 5f^^f8rest 6f^^f8ringse f^^f8r4la f^^f8r7sp f^^f8r6ti f^^e55t 8ga. 2gaa g2ab ga5bal ga3c ga9dj 4gae ga9ga ga3gu ga5h g1aks g5akt ga3led 1galle g1alli gal7me gal2o ga1mes gand2 ganda3t gan5do 8gane gan8g gang7j 2gangso 2gangs^^f8 gang5t g3ank g1anl gan5set 5gap. 3gape gap5l gap1s2 4gar. gara7f 5garant g1arb 1gard 2gardek 8gardel 6gardem 4gardet 8gardsg 4gardsk 4gardsm 6gardsv gar5es gar7la 6garnsfo gar1re gar7sa gar7tal g7artenes 3gartn gart7sla ga7ses ga5sp gas8s 1gass. gass5ett 6gassp ga5sto 6gatep gate3s 4gatesk 8gati ga5ton gat7s g2a8u 3gauk 8gaveb 8gaves 4gavet 4gavev g1avs gav6v g1b g2bar gbok5f g5bruk. g3bruke g7bruksmes g1c g1dag g7dags. g3dale g5dam g1dan gdar7 g9dat g4dekkj gde7kr gde1la gde7l^^f8p. gde5l^^f8pa gde7l^^f8pe gde1r gdere2 gde1s gd5m gd1or g1dr gd7v g1d^^f8 g8d^^f8y gd7^^f8ya 8ge. ge1a ge4ark ge5ba ge7ben ge2bret ge2bri 1ge2by ge1da gedag4 ge3del ge1dr ge1dy ge1d^^f8 ge1e ge1f ge5fa g5eft gefter4 ge1g g5egg ge1h gei2 g3eien g5eier. g3eiere g3eiern g7eiers g7eigar. ge1in 5geit geit3o geit3r ge1k8 g1eks ge1lag 3gelee gel6ei gel5ett 7gel^^e9 gel7fe gel7g gel7h gel3l ge1lo gels2 gelse2 gel3set gel5si gel3sta gel1t ge3lun gel1v gelve8 ge1l^^f8 ge1l^^e5 ge1ma ge7middele ge3midl g5emn ge5mu ge1m^^e5 gen1a gen8am gen7del gen1di gen5du gene8 1gener 5genera gen3eti gen1g6 gen5h^^e5 gen5k gen1l gen1n ge2no gen8ran gen3ri gen7sinn 4gensk gen7skj gens3l gen3sol gen5spl gen1st gen3tim gen1tr gen1v ge5ny geo2 3geog 3geolo 3geome ge9ope geo3st ge1p ge3pl 4ger. ger7al ger3b ger5d^^f8 gere2 ge1red ge1ref ge1reg ge5rekn ge7rese ge3rett ger1f ger3g ger3ho geri3d ge9rika ge3rike 1geril ger1k ger9ka ger5ko g9erma. ger5mal ger3mu 6gern gerne2 ger3neg ger3nem ge5roa ge5rope ger1p ger3res ger6retts ger3ri gers5af ger3sko ger3sku ger3skv ger3sl ger1st ger1ta ger7teg ger3to ger1v ge1r^^f8r ger3^^f8v 6ger^^e5 ge1se ge1sid ge3sig ge3sja ge1sk ges7kra ge1sl ge1so ge7son ge1sp ges7s gesta7bl ge1sto ge1str gest5rid ge1su ge6s5vik. ge1s^^f8 ges8^^e5 ge1tak ge1tal ge5tatt ge3tene ge1ti ge1tj ge1to ge1tr get5si getter6 ge3tv ge7ty ge3t^^f8 ge5vare. ge5varen ge5varer ge1ve gev4i ge3vid ge5vik 1gevin ge7vip ge1vis ge7vitne. ge9vitnet g5evn ge1vo 4gev^^e6rs gey2 g1f6 g9fam g9fjell. g9fjella g7fjells. gflod6 g7fora g5ford g9foreining. g7foreininga g7forening. g9foreninga g7forr g5foru 2gg gg8an gg5ask g3gat gg1av gg2ba gg4dr gg1ei gge5m g7geni gger3l gges2 gge6s5l gge1st gge5s^^e5 gg7hu gg5im ggje5st gg3lar gg6li. gg5n gg3rad gg7rek g5gri gg1sen gg5s4par gg1t gg3ur gg1ve g1g^^e5 g2hai g6hams g5hes g1ho g5hug g1hus. g7husa g1huse gi1b gi1de gi1ek gie8n gi5ett 1giga gi5gi gi9ki 7gikten. 3gild gi1le gime5tr gi1mi 6gin g1ind ginn6 g1inns gi3no g1ins g1int gi5om gi1op gi3pa gi1pl gire6 gir1k gir2l 3giro. 7giroa 3giroe 5giros giro1t gis2 gi1sa gi1sel gi3sem gi1sen gi7ska gi1spa 6gist giste6 git8 1gitar gite8 gi5til 7gitter. 5gittere 6givernu 2gja g1jak gjar7t 2gje. gje3da gje7l^^f8 8gjene 8gjengarm 6gjengerm 5gjennomg 1gjens g1jent 1gjenv gjer4 gjer9^^f8 gjes2 gje7tr 7gj^^e9 1gjo 2g1ju 7gj^^f8d g1k2 g7kad g3kak g3kal g5kampa g3kan g3kar g5kass g5kast. g3kaste g5kat gl2a8 glade2 g1lag 8gland glands4b g5lang gl3arte glar7va 9glase glas3k glas3m glas5p 8glassf 4glassr 6glasv 7glat g1lau gl1b g5leie g9lending. g7lendinga g9lendinge g9lendings. g1leng gler3b gler7n^^e6 gle1s gle1v gl7f gl3g 1glid 1glim g5lina g3line 8g1liv gl5l g3lok gl1s gl5ung gl1v gly2 g5lyd glyse6 g7lysing. g5lysinge g7lysings. g7lysning. g7lysninge g7lysnings. g3lyst g1l^^e6 g1l^^f8f g1l^^f8nn g6l^^f8ns g1l^^f8p g5l^^f8v gl^^f8y8 gl7^^f8y. gl^^e58 g5l^^e5n. g9l^^e5na g3l^^e5ne g7l^^e5ns. g1m gmanns5 g7manns. g4mannsk g7mark g2mat g5mat. g3mate gmer8 gme5tr gmo5s 8gn. gn1ak gn1by gn1d gn2da gn6e gne5k g8ner gner5k gner7s gne3sen gne1st gn1f gn1h gn7he gning6 gni7sk gn5j gn1k gn1la gn5op gn7ov gn1r gn3sa gn1se gn3ski gn7skj gn3sku gn1sky gn5sla gn5sor gns2pr gn5sta gn7str gn1t2 gn1v g1n^^e6 g1n^^f8 1god god3art g3odd 6godsan 6godsau 2godsb 6godseig 4godsf 8godsi 8godsk 2godss 4godst 8godsu g3off 8goi gol2 1golv gom8 go7metris gon3s gon5t g1op gopp4 g8ora3 g1ord gord7b go7rek g1org g7orm. g7orma g5orme g5orv go3se go1te go3tr gover8 g1p g2peng g5penger g2planp g6planr g6prisings gr2 gr8a2 g3rab g7rac 4gradas 8graderb graf5t gral3l gram5b gram1e gram3i gram3l 7grammof gram1s gram1t gran3h gran3le 3gransk gran7to gran5tr gran8v gras3a gras5b gras5k gras3l gras3t gratis3 9grau 4graverb 6graverh 6gravings grav7l 7gravs. grav5t 2grea g1reak g5reds 4gree g5refe 2greg g1reis gre6ka 2grendt 8grenings 9grenings. grenn6 6grensest g3rent 2greps1 gres8 g1rett grev2 grie2 grind5h gro7bo gros3m 1gross g5rui 3grunnl 7grunnsdj 3grup g1rut g8rut. 3gruv 1gry 2g1ryd g5ryg 8gryns 9gryns. 1gr^^f8 7gr^^f8d g5r^^f8r 4g5r^^f8v 6gr^^f8y gr7^^f8y. g1r^^e5d6 gr^^e55k gr^^e55tas gr^^e55v^^e6r. gr^^e55v^^e6re 8gs1 g5saga g3sak. g7saka. g3saken g9sal. g3sala g7sale gs4amt gs6ank g5sard g3sats gs2c gse2 g3sekr g7sekv gsels5a g3selsk gsels5t gs8ende. g1sent g1seri g7setel g7setj g1s2ett gs3f gs5g gs3h g5side. g5sint. g1sit g3sjel gsjord4m g3s2kall g5skif g5skilt g7s8kj^^e6 g3skot g5skriv g1skud g7skug g7skuld g3skyg g3skyt gslags4 g5slip g7slyn gs7mon g7snak g7snut g7sog g7s2ok g1soli gsomt5 g5son gs7ope gsopp2 g3sos g5spann g5spari g3spek g1spel g7spent. g7spente g1spi g8spila g6spile g3spur gsr^^f8r4 gs4r^^e5dsf gs3s2 g5stasj gs3tast g1stat g5stein g5stell g7stemd g3stemm g7stemt gs2ters gsti6 g5sti. g1stie g1stif g3stig g5stile gst7l gst7m g5stoff. g7stoffa. g9stoffen g7stoffer g5stoffet g5stol. g7stola g3stole g9stov g5strede g3strof g7stua g3styr g7st^^f8l gs8t^^e5 g1sum gs7vind g1syk g1syn g2s^^f8n g1ta gt8e g1tek g7tempoe g7tenn g1test gt7g g9tide. g7tidene g5tider g3tids. g1til g1tim g1tj gt1l g3tog g7top g1tr g7trafikk. g7trafikke g4trykks g9trykks. g3tr^^e5d. g5tr^^e5de gts8 gt7st gt7sv gt7t g1tu g9tu. gt5vanne g3tveit gt9vek g1ty g5t^^f8 gu4 4gua g5ub^^e5 gud5g gud7ska guds5l gud7son guds5tr g7ug 1gui g5ulk gull1m gul3o 1gulv gul7^^f8 8gume gunn4 8gutf 4guttf 2guttk 4guttl 5guv g7vak g3van g7vara. g3vare. g3varen g3varer g3vari g5varm gvedlike7 g1veg g5vel6 g3verd g5verk. g9verka g3verke g5verks. g7vet g9vev g1vi g2vik g5ving g5vise g1vo g1v^^e6 g5v^^f8 g1v^^e5 g5we gy6 1gym gym5s gyr8 g^^e6r7 g9^^e6t 2g^^f8 g3^^f8k g^^f8r5l g^^f8r1s g^^f8te2 g3^^f8v 5g^^f8ym g8^^f8yn g^^e51g g5^^e5k g^^e55m g3^^e5n g1^^e5p 1g^^e5rde 2g^^e5rdsk 6g^^e5rdsm 4g^^e5rdss 2g^^e5rdsv g3^^e5re g^^e5rs2d g^^e53st h2a2 2ha. 8haa 4hae 2haf6 ha3fi hage3b 7hagenes 7hagers 7hages. hai3so 1hakk hal4 6hal. 7halder 9haldnings. 8haldsf 6haldst hale5s 1halle hall2g 4hallp hall2s 3hals. 3halse hals1k 1halv halv7annet 2ham. ham6p ham3sk 3hand. 7handa handels5 7handels. 5handelsa 8handf 6handlerb 5hands. 5handsam 8handst 6haneh 4hansa 6hap har2 6harpel harse8 hart2 has8p 9hastighets. 9hastighetsn ha5su 1hat hat8l 1hau haust7la 8havars hav5d 9haverska 9haverske hav1g hav3k hav7lu 6havnf 4havnsj hav7ra 2havs hav7skj havs5l hav7u 2haw 2h1b 2hd h2e2 hed2 he3da heders5 1hefte 1heg4 hegg5s heia3r hei2m 3heima 5heimen 8heimo heim7p 6heimsb 8heimu he3ins 3heis heits5 1hekk hekk5s hekse7rin 1hel hel2b hel3ei hel9j hels2 4helsera helse5sl 4helsev hel3sp hel5ste hel3sv helt2 hel7tr hel7vi hem7l 1hemm hems8k hen2 6hengsk hens2 1hensy 3hente 1hen8v 7hep her2 heral4 her3do 2here her8f her8l 1herr 2herref herre3s 6hertugp hes2 heste5m 2het hets5t hev7arm 7hevingsme hevn3t 2hf h5gra h4h 1hi hi2a 2hib hie2 hiks8 hikste7l 2hild hill6 hings8 6hinnea 2hinneb 2hinnes 4hinnet 6hinnev 9hipn 6hire 2hisk his6s 3histo hiten8 8hiu hiv1s 1hj 7hja hjar2 hje2 3hjelp. 8hjelpk 4hjelpo 5hjelps. 4hjelpsk 4hjelpsp 4hjelpss hjem3o 3hjems. 4hjemsb 2hjemsp 9hjul. 9hjule 2hjuls 3hjuls. 6hl 2hm h3mal 2hn hn5str ho2 1hod 6hodem 4hodep hode3r hode1s ho7dy ho8f 1hog6 hogs8t ho3kj hol3b 6holderim 1holdi 6holdsu hol3f 5holmen. 7holmens hol1v hom6 homil7 hong2 1hon8o 1hop 2hopn hopp7lan hopp7s hopp1t 4hops 1hor hore1 7hori 3hor6m 6hort hor5u 3hos 4hos. 3hot hove2 3hoved hov2s 4how h1p 2hr 2hs hs6e 2ht h5tec h8to h1tr ht7te ht3tr ht7v hu2 4hu. 7huda 3hude hud1l hud5r hud1s8 hud7st hug8be hug7legg hugse5 hule7v 1hum 1hun 4hundb 2hundk 2hunds hunn5s hur4 hus1a 6husb hus3ei 6husfa 6husg hus3hi hus5j 2husk hus9kar hus1kj 8husl 4husn 4huso 4hus1p 2hus1s hus7tel hus3tra hus7ty hus1u 4husva 1hv6 hvale4 8hvalf hve8 hvem5 2hvilea 4hvilef 4hvilel 4hvilere 2hvites 6hvitf hvor3e hvor5l 1hy 8hyd. 8hyde hyl8 8hyln hyr4 1h^^e6 h^^e6r4l h^^e6r3m 1h^^f82 3h^^f8g 9h^^f8gd. 9h^^f8gda. 9h^^f8gde h^^f8g7en h^^f8g3l h^^f8gre1 h^^f8g7r^^f8 6h^^f8i 4h^^f8nsd 4h^^f8p h^^f8r6a 4h^^f8rh h^^f8s8 h^^f8st5la h^^f8st3^^f8 4h^^f8velp h^^f8y1ak h^^f8yere3 h^^f8y9ga h^^f8y1m h^^f8y6n h^^f8y7p h^^f8y1se h^^f8y7si h^^f8y3sl h^^f8y3so h^^f8y3ste h^^f8y1v h^^e52 h^^e53br h^^e5l2 9h^^e5na 1h^^e5ndb 5h^^e5nds. 6h^^e5ndsi h^^e5nd5skr 1h^^e5ndv h^^e5p7l 1h^^e5r h^^e5r5n h^^e5r7sp h^^e5r7st h^^e5r7t h^^e5r7v 7h^^e5t ia3del i1adj ia7fe ia3h ia1in ia2k ia3kas ia3kom i1aks i5akt ial1a ial1b ial7d ial9ein ial3eti ial3ett ial3g ial2hj ial3k ial1l4 ial1m ial1p ial1s6 ial1t ial1u ial1v i5ank i1anl i1anm iano1 i3ansl ia7n^^f8 i1arab i1arb iard5s iare2 iar7el ia3rep iar1s iar1tr iar3v ias5n iass6 ias7st ia7sv ia3tab i1att i1av2 ia1ver i4banku ib5br i1bed ibel1l ibel1t i7bem iber7m iber5r i1bev ible1s i3blo i1bo i1by i1b^^e6 i1b^^f8 ice1 8id. 8ida i9dag i5dam i1dann id6ar idar7m idar3t idat1t id7bo idd6a idde2l iddel3u id5do 2ide. 1idea 1idee i8deli id3elv i1demo ide2m^^e5 2iden iden3sv 5identif 5identit 1ideol ideo1v ide5po 8ider idere3s ider5la ider5ti ide1s ides8t 8idet ide1ta id8fa id5ga idi4 1idio i7distans i1div id7line id2n 1idol id5reg 9idrett. 7idretts. 2i3drev 2idri id3rum id2sa ids7ak ids1e ids1j ids1k id7skif ids6krafti ids1l ids5let ids7man ids2mar ids6rettsd ids1te ids1ti ids7tidsra ids3t^^f8 id2su id2s7^^f8 idt3ak idt7ei idt1g id2tre idt1v id5va id9ve id7vinkel. id9vinkele id8v^^e5 1idyl id7^^f8y 8ie ie1a ie7boers ie1d ie1e ie1fe i7eft iefter2 ie1g ie1h ie1i i1eie i3eig i5eini ie7kl ie1kr i1eks ie1la ielands4 ie1li i7elim ie7lu i3elv ie1l^^f8 ie3l^^e5 ie4l^^e5nsr ie1m i8ema iend2 ien3del i1enh ien2l ient1r ient5s ie3p ierar8 iere4 ie3red ie5ref ie1ret ie7retnings. i3erfar ier1h ier1l ier1m ier1re ier5ri ier3sko ier3sta ier2sv ier5to ie1run ie7r^^f8y ie1s ie4sele iet8 i3etabl ie5tal ie1teg ie3ten ie1ti ie1tj ie5to ie1tr ietter2 ie3tv ie3ty ie1v ie9vi i1fa i2fal i5fat ife8 i1finn i3fir i1fly i5folk iform2 ifrem6 if2t ift8leg ift5v i1f^^f8 2ig igang3 igar3m iga3r2u iga3sta ig3att ig2ba ige3b ig1eie igen8l ige3ret ig3eta ig5ett ig4fes ig1gj igg1s2 igg2t ig3gut igg6v igi6 ig5inn igjen6v i9gj^^f8r. i5gj^^f8re i9gj^^f8ringa i7gj^^f8rings. ig6na ig1om i8gon i2g8ra i7grat ig1r^^f8 ig1sa ig1s2j ig3sta ig3stem igs5tid ig1t ig9un igur7s ig7vara ig1ve i1g^^e5 i1ha i8hab i4hande i9handel. i7handele i1hen i1her iherre4 i7hes i5hev i1ho i9h^^e5nd. i7idrette i5il i6inntekts i1jak i1je ijerns3 ijord8 i1ju 2ik i7kaff ika1ma ikar5d i8kare ikar3r ikar3v ika1sa ika1sp ike1d ike2h ik9ei ike7lu iken8s ike3ret iker3l iker5o iker1s ike3si ike3sp ike5ti ik7f ik7hal i1kil iking3l ik5inn i8kirkes i1kj i6kjedep ik2k ik4ka ikk5arv ikk5att ikk7ent ikke1s ik3kis ikkje5l ik3kj^^f8 ik4kj^^f8p ikk5ord. ikk5orde ikk1re ikk1s ikks4v ikk3und i5kl^^e6 iko1b iko1f iko5i i7koll i4kone i7korta i5korte ik3rek ikro3k iks3h iks3kr iks5m^^e5l. iks9m^^e5la iks5m^^e5le iks5m^^e5ls. ik7sot iks1po ik7stad iks5tol iks1tr iks2tu ik7sur ik2s^^f8 ik5torn ikt3r i7kular i1kult ikum6 ik7vak i1k^^f8l ik9^^f8y. i5k^^e5p i3lab il9af i7lans. i3lanse i1lap il1art i7laus il7ban il3bat il7bog ild5ak ilds4f ild5sk ild1st il7d^^f8gns. i6lederk i6lederv ile3f i5leiar. i5leiara i7leiare il1eie il7eigar. i5leii ile1pe il3ern^^e6 ile1s4 il7fas il2flu il2forl il7gar il2go il2ha il1ind il3ir il1kar il6kar. ilke1 il2kje il9komma ilk7os ilk5s ille3ma ill7ender ille5sk il9lina ill3me ill6ra ill7sko ill1sp 1illus il3lyk il3lys ilme2 ilm5est il7mod ilm7y il5ogm ilo5gr ilo2k ilo5ka ilo5to ilot3u ilo5vi il3rei il5r^^e5 ils8e il7sei il2ska il3skj ils2m il1smu il2spi il3spra ils5son. il6stod il2st^^f8 il6svi il7tap il5tas il5tel il9tid. il7tids. il7tig ilt1n il3tor ilt5rett il1tu ilt7^^e5 i3luk il3un ilv2 il1va il3verk i7lynt i1l^^e6 il7^^e5ri ima3f ima1ga iman7f i1mann iman9t i1mark ima3so im5bo im5dale imedia3 imel8 i1meld ime3lis im5enh i1menn ime3ram i1mest i6mesterem im8et ime1ta i7meter. i5metern i5meters im3fe im3fr i4mis i7mj im9koma. im5koms im7lag imme8 im5mis imo7g im5ord im7ov 1im2p imsk5l ims5kr im7sku im5sme im5st^^f8 im5sy im5tal im4tre imt5v 6imu im5ve im7vis i3m^^e5 2in. 6ina in1ame in5arb ina9sp in5ass ina8t inat5ak 2in1b in5dam 1indek 3indeks inde3mi 4inder 3india ind5p 2indr in9driv ind1s ind7sk ind8sl ind1te in7dun 1indus 2ine ine8al. ine1d ine3ga in5egg in5eid ine1le ine7m^^e5 in7eng in9eska in7eske ines2s ine3sti inest7l ine3tab 1in2f in5fang in3fes in3fir in7fisk in7fli in3fly in3fors in7fri 2infy in3f^^f8 2ing. 2inga in4gen 2ingen. 3ingeni 2ingens inge3ru in3gev ing3fj in7gj^^f8 in3glas ingle7d ing5rep ings5om ing6st^^f8 ing5s^^e6 8ingu in1ho in9holds. ini1b ini3f ini3mas in1inn ini3p inis2 ini3ses 3initia in1jak 5injek in8kar. in1kj inkje2 in2kl ink7lag in3knu in3kol in1kr in1l 2inn. 2inna inn3ank inn2bo inn8bro inn5dra. inn7drad inn5drage inn5drar inn5dras inn5drat inn9dro 2inne. 2inned 2innen 2inner inner7sta inne3r^^f8 inne3se inne3si 2innet inn7ette inne3v inn3fan inn4fin 1inng 1innh 5innho 2inni 1innle inn2p^^e5 1innr 6inns. 1innsa inn9sal inn3sen inn5skri 7innsla inn1sn inn1s2v inn1s^^e5 1innt inn5tal inn8tek 9inntekts. inn8ti inn8verk inn4vid in5nyt 2ino ino1d ino5kl in7oks ino1ma ino5po ino1re ino1se ino5va in1r 2ins. 8insa in7saf in7sal in3sat in1sc in1sik in5sjo 4insk ins4kil inskild5 in3skj ins7kj^^f8t in7skor ins2kv ins8k^^f8 ins4le in8sleg in7sly in3s6ma in3sni in1so in8sole 1insp ins5par in7spel in3spil in9spo 2in1spr ins5r 3instal inst5ande 1insti 6in1sto 1instr 6insy 2int. 2inta in3tab in1tal 2inte. 5integ 5intel int3ess 2inti in9tid in1tol in7trek in9truk in7try in3ty in1t^^f8 in9ul in4ung 1inv in7van in3vare in7veis. 3inves 8invev in5vik in7v^^e6r i1n^^e6ri 8in^^f86 in3^^f8k i7n^^f8t 8io io1ak io1b io3dr i1off io3fr iofram7 io7ga io5gu io1i io1j iok8 iol2 io5lab iole4 io5led io7lei io3lev io1ly io1me i8omr^^e5des i5omsyn ion9d ion5erst ion1f ion1g ion1k ion5l ion1sa ion1se ion7sel ion3sum ion1t io1o io1pl i1opp8 io1rep ior3l ior1m io7rom ior1p ior1r ior1s ior1t ior1v ios2 io1sa io1se iosk3v io1st iote4 io1tel io8typ iover2 io1vi i1pak ipan3g i7papira ipe3m i7pep ipe3ta ip8k i4planp i1po ipp7b ipp9lau ipp7l^^e6 ipps1t ipp7sy i8pra ip5ru ips1a ip4sc ips3el ips1k ips1t i1put i3py i7p^^f8 2ir i2r4an i8rar ir3ark ira7vi ir1b ir3be ir2br ir5dalen ird5s ir1du i1reg ir3eie ir9eig ire3na ire7sk ire3tal ir1f irfall5 ir1h ir1ind irit8 irka7t irke1s8 ir1ko ir5lo ir7na ir3opp ir3p irs2 ir6skoles ir3tig ir9tr irts6 ir7ty ir9t^^f8 ir5uk irum7 ir9ume ir9verd. ir9verde ir9verdiavgift. ir9verdiavgifta ir9verdiavgifte i1r^^f8 i1r^^e5 ir7^^e5l ir7^^e5r i1sak isak8ky i1sam i7sang 3isbry is2do ise7f ise1g is1eie i1sekt is3elas is7eld is4eli ise5lit i1sels isen4s i1sent ise5pi iser5p iser3se iser7ti iser7ve ise1s is3ess ise7ten i3setn isfast7setj 3ishav is7hov i1sid i5sikk i1sikr i3sikt is5ild i7sim is1ind i5sjett 6isk is2kame iskar5n is8kas isk3els iske5ret isk7le i1skol is3kred is5kreme is5kro i1skul is3kv i3skyti i9skyttar. i7skytter. i7skyttere i7skyttern is7lak is1lap isl9^^f8y. is2m is3mel is3menn is3mid is3mil is3min is3mor is5mus is3my i1sm^^f8r 8isn is1no 1isol 6isold 5isomo is8ope isor7b iss5d is3sto 2ist i5stab is6tan i1stas i1stat istats8 istav4 ist5avb iste5da ist3ekt istel7l is5tema. ist7ho is5tilb i5stile is7tim is6tin ist5k ist1le ist7rett ist3rol istus3 i1sty is1v is5v^^e6 i1sy i2syr is1^^f8k 2it ita2 ital1a ital5ers i8tallsr ital3y i2tan itan7j itans8 itan7sv i1tap itar3t it3avl itekt3s it7elg ite7lis ite1m i5tenest i8tera i3terr ite1s itet4s5 it5g it6hu it2i iti1b itid8 iti1kv iti1le iti1sp iti1st iti1t itiv8 itivs5 i1tjen it7lei it1li it3lig it2m it3ma it5no ito5me ito5n itopp2 it5ord itor3m itor5s itor3v i3trad it5rim it7ros i7trust. i7tr^^e5la it5sand its3ei it5sku it7sta it4t itt3akt itt3art ittel5l itter5re itt5ett itte5v itt1o itts5in itt5skr itt3spi itt1v i7tub itur4 it1v it2y ity1t it^^e6r1 iu2 ium3b iumf5ar ium5l ium5m iumme4 ium5s6t i1un iur3l i1ut 2iva iv1aks ivakt8 i7vald. i1valg ival3l iv5ank ivan7s ivar5s ivar5te iv5ass ivat1r ivat1t iv8ban iv1d iv7eig i3veks ive9m iv5endels ive7ret i3verks i1vese ive3sta ive7t^^f8 ive1v iv1f iv1g iv5hen ivi4 ivid5r ivil3s i1vir iv5is. i3vitn iv5j iv1l^^f8 i3vold. i5volde iv3ord ivs1n iv1t iv3un iv1v iv7y iv^^e55d iv^^e51s iv^^e57t i5y iz7ak i5^^f8k i^^f8r1s i^^f8r1t i9^^f8ya i1^^e5 i^^e5rs7l i2^^e5rsp 6ja. ja1ak ja3ba jakke3s jakk1s ja1kr 4jaktf jam7h jam7la 5jamm jam1st jam7va 8jan j5anl jar2m 1jarn jarn1s jar3tv jas5b ja1so ja3sti ja5ta 1jaz j1b j7de j5di j4e je1a je3ak je7av je4bol je6b^^f8s je7dag je7dans je1do je1dr je3erv je1et 2jef jef3et je2fj jef5lag je6fondsa jef1re jef3tr je1fu je4f^^f8l 1jege je1gev je7gre je7gu je1h jeholde4 je1i jek2 je4kas je7ki je1kl je1kr je8kraftp jekt1a jekt1r jekt1s je1kv 2jel2 je1la jel5be jel8e je8leg je7lei jele5va je5lis je7liv je5lj jel9setj jelt2 je5lys je7l^^e6 je3l^^e5 je8mag je5manne je7middele je7midl jem3k je1mo jempe3d jem1r je1m^^e5 je1nas jen5dre jene8 je3ned jen5gang jen1gi jen1gj jen3gr jeng5sl jeng7t jenke1 jen4kj^^f8 jen3ko je1nor jen1r jen1s8k jens2l jen1sp jen5stod jen3str jen3st^^e5 3jenta. jen8tek jen1v jen1y je1pa je1pe je7pl je1po je7pu je3rad je1raf je5ran. jerde3p je1red je1reg je3rek je1rel je3rett jerk7l jer2m jer6pa jer2st jer2t jer3tak jer3tal jer5tra je1se je9sei je1sj je1sk je6skiftt je1sl je7sm je1so je1s2p je4stim je5str je7sve je1tak je1teg jet7l je1tra jet1ru je1try jet1s2 jett5and jett1o jett5p jett1s2 jett1v je7u je9vara. je9vare. je9varene je9varer jev5d jeve8s je9vet je9vid je2^^e5t j1f j1h ji2b ji5h j2im 2jis ji5^^f8 j1l j3mo 1job 5joc 6jok jok6k jokk9o 2jon jon7ne jons1 jonse6 jons3p jon7stad jon8st^^f8 jor4d jord7erv jord7is. jord9n jord1o jordre2 jord7skifte. jord9skiften jord9skifter. jord7skiftet jord3s8l jor7g jor4t jor7^^e5r. jos7l jos7s 1jou 2jout j1p j1r 8j1s j1t ju5arb 1jub ju7bo ju7b^^f8 2jud jue7ni 2ju8k juke4pe jul1l jul7m juls1t jul3v jup7s jup7^^e5 5jurid 3jurist ju9ro jur7t ju3ru 1jury 1jus ju7ser ju7s4o 8jut ju7ti j5v j^^e6r3d j^^e6r4m j2^^f8 j^^f81b j^^f8d2 3j^^f8dis j^^f8dsel5s j^^f81ef j^^f83eg j^^f87fla j^^f85fr j^^f81ga j^^f87go j^^f81gr j^^f81i j^^f83ka j^^f83ko j^^f83kr j^^f83kv j^^f89mar j^^f81me j^^f8nns8leg j^^f8nns5^^e5 j^^f81pl j^^f8p9sle j^^f8p7ste j^^f8rke5l j^^f8r2m j^^f81s j^^f8t5eta j^^f81ti j^^f81tr j^^f81va j^^f83verd j^^f85verk 2j^^e5 j^^e57d j^^e57s j^^e57ve 8ka. ka6an k8ab ka1br 2kad2 4kadetts 4kae ka3fa 3kafe kaffi1 ka9fr k5agi ka1gr ka1h kai3k ka7jo ka7kaf 1kake kake1l 4kaker^^f8 6kaket k1aks k1akti kala3pr kald7r kald1s2 kal2e kal5lag. kal7laga kal5lage kal5lags. 6kallb kal3lei 6kallings 6kallm kall6st kal1me 6kalottk 6kalotts kal1se kal7sv kal3ta kal1tr kalv5^^f8ya. kalv7^^f8yas 1kam 4kama 4kamb kam7be 6kamen kam9fa kam7k kam2p 3kamp. 6kampap 4kampare 3kampe 4kampm kamp1r 2kamps 2kanda 8kande k3andel 3kandid 8kane kan9fr kan2i 4kanik 2kanis k1anl kan7la k1anm kan5ma 7kanna 1kanne 5kansl kan5st 4kantf 8kantl 8kantp kant1s 4kantu 8kap. 1kapas 3kapell 2kapen 1kapit kapp4v 8kapra 6kaprerd ka6ra k3arab 1karak kar7ba k3arbei kar7br kar7dal 8kare. kare6l kar9h k1arki kar5ko k5arkt kar3lag kar5li 8karsh kar7sj kar3sko kar3sku 4karsl 8karsr kar2ste 8kartd 4karts 6karv karve8l kas5ev kass8 7kassa. kassa3m 6kasserek k1assi kasso1 kata2 7katas kate2t kat7ho 8katr ka1tra ka7tr^^e5 kat1s kat2t katte3r katt3f 6kattr katt5ri kat5y k7aur kaus5l kav8 kave8 k1b k7bad k8bara kbort6 k7bu k7by k5ce k1da k7de2 k1di k1domi k1dr k7du k1dy k1d^^f8 k7d^^e5 6ke. ke1a ke9al ke7bens. ke7blad. ke9blade ke3by ke1da ked4e ke7dei ke1dem ke1di ked8o ke1dom ke7dor ke1dr keds1 ke3dy ke1d^^f8 3keep ke3erm ke1f ke7fin ke9fl k5eft kefter8 ke2f^^f8lg ke1g ke1ha ke3hi ke7hov 6kei8 k1eig k7eik ke5il k4e1in keis2 ke1k4 ke7ka ke3ko k1eks k5ekt ke1la ke5la. kel2aks ke3lar kel5d kel7eik kel5el ke5lep ke1les kel1f kel3g ke1lis ke3liv kel1j kel5k kel1l kel2mod kel3ovn kel1p kelse2 kel5sete kel1s4l kel5smy kel1sp kel1st kel1s4v kel9uka kel5uke kel1v k7elv. k9elvs ke7l^^f8nne ke1l^^f8p ke3l^^f8y ke1l^^e5 ke1m ke3my 2ken ke1n8ap ke3nat ken3b ken3d^^f8 ke5nek ke1nev ken5gl ken5gr ken7j ken1k ken1l ken1r ken1s2 ken1te ken5tr k1entu ken1v ke5nyt ke1n^^f8 ke3on ke1p ke5per 2ker ker1d ke1red ke1reg ker5eid ker3ekt ke3reli ke5rem ke7rene ker3ert ker6es ke3rest ke3retn ke7retta ke5rette ke5retti ker9g ker1ho ke7rik. ke7rikt ke9rist. ke7riste ker3k ker7le ker1m ke7rose. ke7rosen ker1p ker1r ker3sko ker7steds. ker3sy ker7teg ker5ti ker3to ker1tv ker1t^^f8 ke3rus ker1v ke3r^^f8d ke3r^^f8r ke9r8^^f8ya ke7r^^f8ye 2kes kes3aks ke9samt ke1se kes7ei k7e8sel ke1sj ke1sk k9eska. k5eske kes7lege. kes7legen ke3slu ke1spi kes5se kes1sk ke1sta ke3sted ke3stei ke3stel ke3stem ke3sten ke9stilla ke5stille ke7stilling. ke7stillinga ke7stillinge ke7stillings. ke5stilt kes3tit ke5stoppe ke3stri ke3stru ke8str^^f8ms ke1sty ke1ta ke6tals ket3ban ke8te. ke9teg ke1tek ke3tenk ke3term ke1ti ke6tingsg ke1tj ke1to ke6to. ke1tra ke1tre ke1tri ke1tro ke1tru kets2 ket5sp ket5st ket8t kett7enh ketter6 kett3s ke7ty. ke9tya. ke7tye ke3tyn ke5t^^e6 ke5ur ke1v2 k1evj k3evn ke6voldsa ke2yt k1f k5f^^f8ring. k9f^^f8ringa k5f^^f8ringe k7f^^f8rings. k1ga k1ge2 kgen8 k3girot k9gj k1gl k3gre k3gri kgrunn4 k1gu k1g^^e5 2kh k5hag kh5ak k9hald. k5halda k9halde k9halds. k7hamn k3hande k5handlen k7handlern k7handlers k3hei kh3eks k3hett k4hon k1hu k1h^^e5 ki1ba ki5be ki3bi 2kif ki1g ki1h ki1i kik7h ki7kr kil6b 1kilde kille5st 6kilosf 2kilt ki1l^^f8 ki7l^^e5 kimo5l 8kina kine8 king5and king1t kin7h kin3ing kinn5l kinn5si kinn3tr 4kinof kino5s kino1v kin3se kin5si kin1sk k3insp kin7sta kin7ta k5inter kin3ti 1kio 2kiol 2kip kips1 1kir4 2kire ki5rem ki1ren 6kirkea 2kirkem 2kirkep 4kirkeru 9kirkes. 4kirkesy 6k5irs kise2 ki3ses ki1sko ki3smu ki1sp 7kista. ki3stav ki5str ki1tr ki1tu ki7t^^f8 2ki6v kiv5enh kiv1l kiv1s kj6 6kje. kjef8 kje5fe 2kjeg kje2l 1kjeld 4kjema 2kjemia 4kjemid 4kjemise 2kjemiv kjen4 1kjend kjenkje5 1kjens kje9ny 3kjerri 6kjerringf 8kje1s kje7te 1kjole 2kjor kjord8 3kj^^e6l 3kj^^e6rl kj^^f82 1kj^^f8k 6kj^^f8lings 2kj^^f8nns 5kj^^f8nns. 5kj^^f8ps. 6kj^^f8psb 8kj^^f8psr 8kj^^f8pss 6kj^^f8pstr 4kj^^f8psv 6kj^^f8ringsm 6kj^^f8ringsv 1kj^^f8rs kj^^f8t5r 5kj^^f8tt. 8kk kk1aft kk1ak kk5alt kk7and. kk3anda kk7anden kk5ang kk1arb kkar3m kk1art kk5au kk1av kk4ava kka7ve kk8bare kke3ho kke5hus. kke5huse kk1ei kk3elev kkel5t kke5rent kke3rit kke7rund kkes5s kke9stad kke1t^^f8 kke2vas kk1g kk1h k2ki kkilo9 kk1ind kk1inn6 kk1ins kk1int kk3jent kk3jern kkje3t kkje5ve kk1l kk8lak k4klubbm k8klubbs kk3m k2k1n k1kod kk1of kko3g kk3oml kk7oms kko7o kk1op kk5ordmes kko3va kk1ove kkover4 kk5ram kk5rei kk1ren kk3res kk3ro kk1run kk3rut kk1r^^f8 kk7r^^e5 kk7salt kk1se kks2ei kk1si kk1sj kk1sk kk2skan kk7sky kk1sla kks7las kk7sle kk7sl^^e5 kk7soms kk1spe kk1st kks5tak kkstein6 kks7va kk1sy kk1t2 kk1ut kk1v kkvass7 k2kvo kk5yr k5kys kk7yt k8k1^^f8 kk1^^e5 kk7^^e5s kl2 k3lab 9klaf k3lagt 4klak kla6m 1klang klan1l k7lans klar3v 1klas k6lass 9klassa 6klassef 6klassej 5klassen 4klassep 7klasses. 1klat k7lati k7laus. kle2b kle4d k8leda 2klee 2kleh k6leiv klen8 klepp7s 2kle8r k5lesa kles7j kle7skap kle3sn kles1s kles5v 8klia kli3b 4klimap k7lina. 1klip kli6s 4klokkek klon7al klor7g 1k8los k4lovk 1k2lu 4klubbei 4klubbes 4klubbf 8klubbk 8klubblan 4klubbr 4klubbsa 6klubbu 2kluf k7lug k3luk k3lun k5luth kly6 k5lyd k4l^^e6r. kl^^e6re4 2kl^^e6ri 5kl^^f8r k2l^^f8yv k1l^^e5n k1m k9mann. k7manne k7manns. k4mannsk k2m^^e5 km^^e5l8 kn2 kna4 8kna. 1k2nap 8kne. 5kneet kne8g kner6t k7neset kne5sta k5nett kn7f k2ni4 knis4 knisk1 1kniv kno8 5knop k7nor kn7s knus6 6knusea 7knusi k1n^^e6 2ko. ko1an ko7bre 8kodem 6kodes ko3d^^f8 1koef 8koen ko3es ko1fa 2kog kog2bru kogen6 kog5eng kog7sti ko7ik ko5kas ko3kat kokk8o kokko5s k1okku ko3kol 6koks ko1ku 7kol. 2kola kol6ban kol7dr 2kole kole1g kol7f 8kolg ko3lis kol5k 1kolon kol3p 4kols kolver5 ko7lyd 1ko2m2 2koma ko7mal 9komel 6komem ko3mil komi3se 4komit^^e9l 9kommele 9kommelighets. 6kommem 7kommente 6komo ko3mom 8komposisjons 9komposisjons. 4komr 2koms kom7sn 8komstk 4komsto 2komt 4ko3m^^e5 1k6on2 4kon. 4konek 6konet konge5v 7konj kono8m 6konsertt konsum5m 7kontinue 7kontinuitet. 9kontinuitets. 4kontokr 4kontol 2kontoo ko5om 6kop. kopar3 ko7pei ko3po 8kops 2kora 3kora. kor9bo 2kord k7orda. kord3d k3ordet kord1l k5ords. kords4^^f8 kore2 ko5rem kor7l korn1s kor8p 4korpa 4korpe 2korpo 4korpsm 1kor4r kor3san 3korse kor8s9l kors9n kor4str 1kort. kor8te 6kortings 7kortings. 4kortk 4kort5r kort5s 8kortt 8kortu 8kosa ko3sal ko7sau kose3dy 6koset 2kosi kos3kj 5kosmo ko1s2p 8koss kost7as 4kostb kost5ers 2kostf kost2h kost5j 2kost1l 6kostm 6kostprin 6kostu ko5s^^f8 ko5tal kot4i kot2t kott6st kot6v ko7ty ko5t^^f8 k7outa 2kov 2kow ko7^^e5 k1p kper8 k5pris. k3prise kr2 k3rad 4kraftav 8kraftba 8kraftber 6kraftbes 4kraftd 6kraftint 4kraftk 6kraftl 2kraftm 6krafto 6kraftpl 6kraftrese 8kraftte 2kraftu 4kral kram1b krampe5r 4krampes 6krampev kran1f 2krank 6krant 2krap k8rar 1krav kre2 8krede k1reg kre5h 8krek4 krem7b 5kremer k7renna k7renne. k5rennen k5renner 6k7reo 3kreps 4krepsh 4kret. k7retn 1krets 6kretst k3rett 5krevend 6krevingsse kri2 6krif 1krig 7krigs. 2krigsf 4krigsh 6krigsi 8krigsm 8krigsn 2krigsp 6krigsra 6krigstil krikk7a kring5sat krins7t 1kris 1krite 4kriv kro5br kro5de kro1f kro4ka krok5n kro3met krom7v 4kronem k4rop kro7pa kros2 kro5st krot8e kro5u k7ruh kru5ise krum3s k6russ kru3tr kry4 6k1ryg 1krys 6krysnings 9krysnings. 6kryssings 7kryssings. kr^^f8k8 k3r^^f8r k5r^^f8y 5kr^^e5k 2ks ks8advokatem ks6advokatf k2sakk k9saks. ksak5st k1salg k1saml ks1ant ks4banks k1sc ks5dags. ks4dro kse7dy ks1ei kse5lev ksel7v ksen7se kse3pa kse7ru kses8 kse7se kse1sk kse3sm k7seso kse3sp k9seta. kse5tar k7seten k7setj k7setten k6sf ks5he k5side. k5siden. ksi3gl k7sild ksil3le k2sin ks1ind ks1ins ks2je k4sjefst ksje1r ksje3v ks9kab ks9kak ks1kan k1ski k2skips ks5kir ks1kj k6skolere ks9ku. ks7kua ks1kv k1sky ks7kyr ksle3p k3slit ks3lo ks8mak ks2m^^e5 k7snit k5sno k7sn^^f8 ks7oa ks1or k7sort ks5pak k5spela k1spi ks5pio ks3pol ksport5r ksport5s k1spru ks3pu k3spy ks6rettsh ks9ro ks1s2 ks8tab ks3tal kstav3r kste2d k3stei ks3tele kste8p kst3ev ks9tima ks1tj kst1n ks3trad kstra3l kstra3s kstra3v kst5rekk k8stren kst3rom ks9trua k5str^^f8mm kst7s k5stuk k5stus k5st^^f8t k4st^^e5 k7sum ksus5p ks1v ks2veg k3s2vert k5svin k3synt k9s^^f8lve ks8^^e5rsa 2kt k8ta. kt7alf kta8n kt1ana ktan3ta kt5arr ktat3t k6tav8 kt5avh kt5avk kt3avl kt1b kt1d kte3b kte2fe kte3gr k5tekk kte5lev kt3elit kte1m kt7emn kt3enh kte2pa kter1s kter5v kt3eske kt5esti kt3eta kt5evn ktfor8s kt1g kt1ins ktis5t kt7ite ktiv1s k1tj kt7ju kt1l kt3ma kt6mei ktober5 kt3off kt7ofr kto5gram ktom6 kt7omf k3tonn kt1o8p ktopp8 ktor1m ktor1o ktor3s ktor1t kt1ov kt1re ktro3i ktro3st ktro3t kt7sak kt8same kts1an kts5ar kt1sek kt1sik kt1sj kt5skapsf kts4kv kt3sky kts1l kt5son kt7spari kt3spi kt1sto kt1sty kt1t kt2ta kt7taka kt5tall. kt7talle kt3tap k5tun kt7und ktur4ak ktur1v kt1ut kt1v k3tyk kt7yrk k5t^^e6 kt^^f8r1s kt7^^f8s kt1^^f8v kt3^^e5r ku7bj 2kud kudd3h 6kuf ku7fa 8kug k5ugr k3uk kule3v kul8i 1kul8l 8kullg 4kulls 8kulo 6kulturfo 2kul^^e6 kumenta5l kum5les kum3pla kum7pu ku5m^^f8 1kun 2kun. 6kundera 2kune 6k1ung 1kupo kur3on ku7rop kur2s 2kursel kurs1k kur3ste kurs1v ku5ru 1kur2v 8kus. kus8b kus3d kus5el ku7spe 2kuti kut7ry 2kut^^f8 ku3ven kv4 1kvali kvam3p k3vanne 7kvard 1kvart 8kvarteri 9kvartering. 9kvarteringa 9kvarteringe 9kvarterings. 2kvat kve6 kvei6 6kveitef k3vek 1k2vel 8kveldsd 4kveldsv 8kven k9vend. k9vende k5vendt. k5vendte k1verd k1verk 3k2vern k1ves kvik7v 9kvila 7kvile. kvin4 1kvinn k1virk kvis2 7kvist 6kvites 8kvitf kvit7snippa 2kviv 1kvo k7vok k3vol k1v^^e5 8ky. 8kya ky7da ky7de ky7di ky2fle 2kyg kygge3l ky5lig kylling7s kyl3s 5kyndig. 7kyndiges 7kyndighet. 7kyndighete 7kyndighets. k3yns ky2o ky2p kyr8 7kyrj 1kyrk 8kyrkjea 4kyrkjem 8kyrkjeo 6kyrkjep 6kyrkjeru 8kyrkjes 1kys2 8kys. ky9set ky3skr 6kyst1a 4kystf 8kystm kyst1r 2kyt6 kyte3s k1^^e6t 1k^^f8. 5k^^f82a 1k^^f8e k1^^f8k k^^f83kj k^^f85ku k1^^f8n k^^f8r7g k3^^f8rr k8^^f8yr k^^e56 k^^e57by k5^^e5ke 4k^^e5lb 4k^^e5lh 8k^^e5lp 4k^^e5l3s k^^e5r7h 7k^^e5rsm k^^e5r3u k^^e5r8v k7^^e5tt 2la. la7del. la7dele lade5m lad3f 6ladm lad5s lad3ve l7aftene l5aftens. 8lagen. 2lagg lag1le lag2man 8lagne 1lagr 8lagsa lag3san 6lagsbu 2lagsf 7lagsforhold. 9lagsforholde lag3sid 8lagsr 2lagss 5lagssk 2lagst la7gut la1ha lak2 l1aksj 2lakt l5aktiv 2lal l5aldersk l3aldr l1alk l1all l1alt 2lama lame3s 1lamp la8mu l1anal 5lancer 1landb landre2 4landsg land4sl lands5lo 6landso land3v 6l8ane lang3le langs2 lang6s5e lang3st lan7h 2lanl lan3m 8lansarb 7lansi lan3tim la2p lapp3l laps2 2lar l1arb lar9bu lar5de6 lar7di l7area l1arki lar1ko lark9ut lar1l lar7p lar3re lar7sa lar1sk la7sal las3b lase8 8la2sj lasje3f la8sk la5smi 4lastb 6lastf 7lastings. 4lastm 2last9s las3v la9tau late3m la7tings. lat3l lat2m la4tr lat3se lat5st 5lattes. latt3is latt5ra latt6u 8laukf 8laukp 8lauks 3lause. 1laust 4laut 2lav lav3al la9veg l3avh l3avl lav7l^^f8nne l7avr lb8 l5bakke. l5bakken l1bal l2banes l1bas l1be l3bedr l5best l3bev l1bi l1bl lbods5 l5bok lbo5la l6bords l1br lbrots7 l5bruk. l5bruke l1but l3byg l7byrda l1b^^e6 l4b^^e6rb l7b^^f8k l6ch l7cha l3cr l5dagst l7dale l1dam l1dann l3dans. l5dansen. l7dansens l3dass ldata8 ld1ban ld2bl ld1d l3defin lde5fo l7dekt l6deleg l5delen l3depa lde5pos l2der lder7a lde9rik lder1m lder5s6te l1desi lde1so lde3sti ld8far ld8fullh ld3hu l1dia l7dil l3dio l1dis l6dis. l4dog l1dok l7dorg l5dram ld8red ld7regn ldre1i ldre1p ldre1s l5dress l3driv ld1r^^f8 ld7sam ld7sent ld1sj ld6ska lds1ku lds1l lds3m lds2off lds5son. ld3stad lds1ti lds7to lds7tr ld8st^^f8 lds6vis. ld8tu7s l5duf l5dug l1dun ld1v l1dy 2le. le1al le1au lebo7sta le8b^^f8s le3dag le1dat led3b led4do 6leddsk 2lede. le2der 4lederb 4lederd 2lederf 4lederj leder3l 2lederm 8ledersa 6ledersp 4lederu leder3v 4lederva 6ledervi le1dis le1dom 2le1dr leds2 led1se led1sk led1t le1du 8le1dy le1d^^f8 le3d^^e5 le5erm le1fe l1eff 4le2fo lefon3t le3for l1eft lefter8 8leg. le3gals 1legem 7leges. 6leggelsesv 6leggerr 8legi. 3legit le5gitt le1gj le1gl le1gre 8legs2 leg5si leg3st le1gu le1h le2hamm lei2 4leiarb 6leiarj 8leiarm lei7dal l8eie. l4eiero l8eiet 4leietag 9leigen 9leiger. 5leiinge 7leiings. 8leiingsk leiks3 1leil l5eininga 1leir lei3sl 3lek. le6kam. lek3d 1leke 2lekj lekk7s le1kl le1kr le7kru 3leksik lekt5ord lekt9t 3lekty le1kv le3k^^e5 lel2 le1la l9eld le1le le8len l5elg le1lin le1lis le1lo l3elsk le1luk le1l^^f8 le5l^^e5 le1mak le5manne le4mark. le1mi l3emn le1mo lem5pels lems5^^f8 le3m^^e5l. le7m^^e5la le3m^^e5le 8len. 2lene 8le8ne1s len8f 1lengd le1nis 6leno len5r l3ensem lens2m le2nu leo8 le1pa lepe7l lep9enden le5pil le8pla. le1po lepp4s 2ler le1ram ler2br ler1d lere2 le7reden le7reder le7redet le1ref le1reg ler8ei le1rek ler2en le3reso le1ret ler3ga ler6ge ler7h ler3kj ler1l ler1m ler7net ler3pe ler7red 3lerret ler1s2 ler8tar ler7tel le1run le1rus ler1v le3ry le1r^^f8 ler5^^f8ye 6les. le2sand le7seglet le1sig le8sin le3sit le9skaps. les1kj les7kn les5nes 6lesningst le5spel le1spi less2 les3sek les5skan les5sko le1sta le3sted le3ste6i le7stel l3estim les5trek le3stri le3styr le5st^^e5 les7v^^e6 le3s^^f8r 8let. le1tak le1tal letann4 l3etas le3tit le1tj le1to le1tr let9rik 8lets let7se let9s8k letter6 lett3f lett7l lett1s le7ty le3t^^f8 8lev. 2leva 2level le3vid lev3m 1levn le7vok le3vol 2ley l9fag. l9faga l9fage l6fagk l7fagl l2faks l7fangar. l1far lfe2 l3feb l1fes lf3f lf5he l1fi l2fia l4fin. l8fis. lf3ja l1fl l4flys lfon8 l7fri. l9frie lft2 lf3tu l1fu lfyll4 l5f^^f8ret lg7af lg6am l1gass lg2ba lg1d lge2bra lge5land. lge7lands. lge9m lge5rik lger3s lger3un lge3st lge3va lg7g lg1h lgi8 l1gig lgjen4 l2gjo lg2kam lg1lo lg1ne8 l5gode. lg1ok lg1om l1gr lgre2 lgr9^^f8y lg1s2e lg1sty l1gu l7gul lg1v lg7^^f8y. l7g^^e5v l1ha l3han l9hef l1hei lheilag4 lhellig4 l1her l3hes l7hjelpa l5hjelpe l1ho lholds4 l7hug l2h^^f8 l1h^^e5 li2b 6libr 2lid. 1lidel lid5g lid6k l3idr l6idretts 8lids lie1te li2f li2g 4lig. lig1an lig7art lig3d 4lige lig3enh 4liggerm 6liggers 5liggja 2ligh lig3ha 8ligi lig1le 3lignen 6ligningsr lig1re 4ligs2 lig1se lig1si lig1sk lig3sti lig3str lig1s^^f8 li2k likk3o 5liknan likon3 likt5sk li3kve 3lik^^f8 lil6 l3ild 3lilj 8liljeb 6liljed lille4be 2lim lim7b li5metere li9metr lim5pi lims6 6lindh 8linef 9linefi lin1f lin5fa lin7fr 4ling ling3k ling5le4 lin9grad lings3l ling9stads. 1linj 4linjeb 8linjef 4linjep 4linjetr 6linjeu lin7kass lin7kle lin3ku l1inn lin7neg linn8h 3linni linn6k linn8l 7linsa 1l2inse l1inst lin6sy lin7^^f8 lion3s2l lion5sv lio3r li7os 2lip lipp2s3 lis2 6lis. 4liset 4lisk list5y liti1a liti1d liti3g liti3m 1lito lit6s lits7l 5litterat litt7s li2v 1liv. liv5eg liv3lin liv1re 2liv2s1 3livs. liv3sel 5livv l1jakt lja1l ljam6 lj5arb ljar5t lje1l lje1m l3jent ljer5m ljern8 lje1r^^f8 lje1s lje1te lje1vi lj1k 1l4jod 1ljos 8ljosb 6ljosp lj7ut lj^^f81d lj^^f81f lj^^f83k lj^^f81l lj^^f81m lj^^f81n lj^^f81p lj^^f81r lj^^f8r5d lj^^f8re2 lj^^f81t lk2a l1kab l5kampan l1kap l1kat lke7b lke3h lke6helsea lke1ri lk3ers lke4stad lkes5til lkes3v lke5vi lk5h l1kil l1kj l3kjed l9kjend lkj^^f8p4 l1kl l5klasse. l9klasser l7klu lk4n l1kod l1kol lko3met l8konte l9koplinga l1kor l1kos lko3t l1kr lk7rik lk7sn lk1st l1kur l1kv l1k^^f8 lk8^^e5 8ll ll6a7f ll1al ll1anl ll3ano ll3ansk llan3st ll7apa llarm2 llar7s ll3asp ll5aur l7laus llav8 ll1b ll2byr ll4b^^f8t ll1c ll1d8 llde2 ll7der ll2dos ll7dr lle7by lle7dal l1ledd lle5deb lle2d1r lled1s lle3f lle2he lle6ho ll7eig l7leit lle5ki lle1me l1lemp lle3m^^e5 ll7enden l8lens lle1pe ll3eple ll7erik ller3r ller5ta lles7arv lles3ei lle3sen lle3sla lles3se lle5tes lle6tu lle9t^^e6 lle3var lle5vek ll3even ll1f ll7fi ll9fo ll1g4 ll4gi ll9gj ll1hen ll5hu ll3h^^f8 l2lia l5libe l5like. ll1ind ll1int l7livn ll1j ll1k ll5marki ll1mat ll7mer ll1mes ll1mi ll1mo ll1n l1loj l5lokk ll7oks llom1 llo3man llom5fo llom5k ll1op ll1or llov6b ll1p ll2rei ll1sa lls3aks ll1se ll5sel lls5end ll1si ll7skapt ll1sku ll8sleg lls4lei ll3smy ll5sno ll7son ll1spe ll9spra ll1st ll1sy ll1t2 ll9tings. ll7ug ll7uka ll3uke ll1un ll1v l1lyd ll^^e6r6a l7l^^e6t ll7^^f8ks l3l^^f8nne l5l^^f8nni ll^^f8v4 ll7^^f8y. ll5^^f8ya ll1^^f8ye l3l^^f8yt l3l^^e5n ll1^^e5r ll3^^e5s l1mag l7makar. l7makara l9makare l7mani lm1anm lmann4 l3mann. l3manne l5manns. l6mannsf l4mannsk lm1arb l5mark. l5marka l5marks. l1mas l7mate lm1b lm1d l7mei lme2k lme7kl l1mel lme5la lm3els lmen1s lm5epo lme5tr lm1f lm1gr lm1h l1mid l1mil lm1ins lm5int lm9kr lm3l lm1m l5mog lm1p lm5r lm1s lms2p lm3st lm1t l1mul l3mun lm1v l4m^^f8. l1m^^e5 lm3^^e5r lna5b l1nav l1ned8 lne4g l7nek l1nem l1nett l4nis l7niss l7niv l1no l1nu l3ny lo1al lo5ara lo3art lo1bo lo5br 1lodd lod1h lod3k lod1l lod1se lod3sk lod3sm lod1sp lod7ste lod7s8v lod3t 3loft 3loggi log5m 3log2o lo1gu lo1h 3loja lo1je lok2 7lokala 3lokale 3lokket 8lokks 9lokks. 1lokom 6loks l3oksid lok5st 2lol lo1la lo1le lom2ald lombuds5 l5om6dr lo7metere lo7metern lom3in lom1l 8lomr lom5sto lo2m^^f8r lo7m^^e5 2lon lona3l long3r lo4ni lon8k lon7skj lo1pa lo3pia lo3po lopp7l^^f8 l1opp8n lopp6sa l6opt l1ord l8ordm lo3rett lorg5l lor7ka 3lort lor3ty lor5va lor5ve lo7r^^f8d lo9saf lo5sak lo5sid lo3sl lo1sp 6loss lo5stei los7tene lot6h 8lottet lo1un 1lov lo2va lover8 l5overi l3overs 8lovf 4lovn. 2lovne 4lovo 2lov1r 2lovs 6lovt l6par. l1pat lpe1a l1ped lpe5lek lp2i lpin1 lpin3f l1pl lplan4k l5plom l1po l8porta l4prist lp5sa lp8sam lps1t lp3tj l1pu l1p^^f8 lp^^e54 l1r lre2 l9reie l5rein. l7reina l3reine l5reis l3retn l5rette. l7rev l8ro. l7rom l6ror lros8 l2rot lr^^e5d4 l4r^^e5dss 8ls l5saf l3sagt l1sak l7sak. l3sake lsak5k l1sal l1s2am lsammen4 l1sang l5sann ls1ans l7sats l7sau. ls5dags. ls3elas ls3ele l1sels ls3elv lse1m l5sendi l3seng l1sent lse3p l5seria l3serie lse3ris l1serv lse8sh lses3kj lses5ku lses1l lses3pa lses1s lses3ti lses3tr lses3u l4set. l5sete. lse3ten l7settb l7settings. l7settingsme l5sex ls5f^^e6 ls3h l5side. l2sidi l1sikk l5sikker l3sikr l5sis l1sit l1sj ls3jakk lsje2 ls5kant l3skat lskatte6yd l1ski l7skj^^e6 lsk3l^^e6 ls3koa l1skol l8skoleb l1skr ls9krin lsk3und l1skut ls7kyr l1skyt ls1k^^e5p l7slagn ls1le ls3lin l1sluk l5slutt. l3smed. l7smeda l3smede ls3m^^e5 ls5nar l7sog ls5ond l3sone ls1or l3sort l1sos ls7ose l5sott. l7sotta l5sotte ls1pa l1spek l5spel ls1pen ls1per l1s6pi l9spj l3spore ls3pos l5spred lsr^^f8r6 ls1s2 l2stabs ls3tak l2s1tal l5stat. l7stata l3state l5stati l3stav lste4 l5stede. l6steinst ls5terr ls3tes ls7tilg ls5ting. ls5tinge ls7tings. l1sto l6sto. l3strei l1sty l5sub l3sui ls1un ls3vann l3svin. l9svina ls8vind l5svine lsyke8 l8s^^f8kjar ls5^^f8r 8lt l8ta. l3tabe ltal4 ltan5d^^f8 lt1anl lt1art ltat1o ltav2 lt3avk lt1b lt9be lt3c lt3dale l8te. l5team lte5gr lte3me lte3mo l3temp l5tenest lt5enh lte9ram lte5rasj lter5sk lt5erst lte9sam lt1g lt5ho l7thr lti7ka l1til lti3la lti3na l9tinget l2tings lt1ins lti7var lti3vi lt1ja l1tjen lt1l ltlands4 lt2mul lt1na lt7nev l1tog l1tol lt5opt lt7ost ltover4 l3trad lt7rem lt5rens l5trev l3triu lt1rol l5troste l1try lt9r^^f8d l8tr^^e5dt lt1s lts2m lt6spa lts8t lt2sv lt4s^^e5 lt1t lt1und ltur1u ltur1v lt5vanne lt1ve l1ty l1t^^f8 lt7^^f8l lt3^^f8v 4lud 2lufts l3ull lums8k lunder8 lunge3l lu8o lur2 l7urei l7urn 6lusk lus2s luss3t luta3l luta3r l7ut6k l1utr lut5ry lutt3at 8lutv 7luva 3luve 2lux 8lv lv7akti l1val lval9k l2vannf l2vanni l6vanns lvann8st l1varm lv5dale lv1di lv1dr lv1dy lved2 lve1da lve7dal lve5dr l1veg l5vegg l5veie. lve5is lve7la lve9rau l1verd lv3erkj l9verna lver5sk l3verv lve3str lv1fa lv1g lv1h l1vid l2vik l5vika l1vil lv9im lvirke8 l1vit lv1j lv3k lv1l lv2mo lv1n lvne6 lv9op lv5ov lv3p lv1r lvre4 lv1s2 lv7sk lv2ste lv9tak lv1v lv3^^e5p ly1ba ly5br lyd1d 9lyds. ly7ert 3lyft 8lyftarf ly2g lyge5v ly7glan ly1kj lyko8 ly7kv ly1l lymfe3 lynde8 lyn5il lyn3sk ly1pas 1lyri l7yrk 1lyset 2lysf 8lysk lys3kj lys5l 4lyso 6lysp lys1s lyte5r l7ytin ly1tr ly1v^^e5 4l^^e6n l^^e6re1s 2l^^e6rh 6l^^e6rk 8l^^e6rn l^^f82 4l^^f8fterf 4l^^f8kb 6l^^f8kf l1^^f8kn 6l^^f8kp l^^f8k5r 4l^^f8ks l5^^f8l 5l^^f8n. 5l^^f8na 3l^^f8ne 1l^^f8nn. 5l^^f8nna 3l^^f8nnen 3l^^f8nns. l^^f8nns3a 7l^^f8ns. l^^f8ns3t 7l^^f8nt 4l^^f8perk 4l^^f8pk 2l^^f8psb 8l^^f8pse 2l^^f8pss 2l^^f8r 3l^^f8rd l3^^f8rr 1l^^f8s 2l^^f8sb l^^f8s5ten l7^^f8vd l^^f8y2 8l^^f8y. 4l^^f8yd l^^f8yels5 2l^^f8yf 3l^^f8yp l^^f8ys2 l7^^f8ys. 3l^^f8ysa. 3l^^f8yse. l^^f8y5sl 1l^^f8yv 2l^^e5. l^^e52br l^^e53dr l^^e51f l^^e5g5la l^^e5g5s l^^e55h l^^e58he 2l^^e5i l^^e57j l^^e51k l^^e57la l^^e51ly l^^e58mann l^^e5m1s l^^e5ns1 l1^^e5pn l^^e5re8 l^^e55rev l^^e5rs7t l8^^e5s. l^^e5s2b l^^e51sk l^^e54skimm l^^e5s5l l^^e53str l^^e55su l^^e59tr l^^e55vi 8ma. 8maa ma1ar ma5bil. ma7bila ma3bile ma5br ma5dal mad4j mad7sk 2mae ma7fe ma5fil ma9fr^^e5 mag6 ma3gav 3magn 6magrings 7magrings. ma7g^^e5 ma1he mai3st 1maj 4mak. 8makararb 8makarg 8makera 2makerf 6makerk 2makerm maks5t makt1a m1akti 8maktk 2maktl 6maktsa 4maktsf 4maktsi 4maktss makt3st ma1kv mal5dag m7aldersk mal6di mal7eng 6malf mal7ge mal5k mal7le mal1l^^f8 mal7ma 8malmek mal7mo 6malmv 8maln mal1s m3alter mal9tru mal3u mal7va mal1ve mal7vo mal3^^e5 mam6 8mammaa 6mammab 6mammai 4mammam 6mammao 8mammas 4mammav 2man. m1anal mand5arb man3deb 4mane. mang2 9manga mangan3 1mange 5mangel m1angr mang3s m1anle m2ann 4mannf 8mannl 2mannsb 2mannsd 2mannse 2mannsg 6mannskn 4mannsko 4mannsku 2manns3l 2mannsm 4mannsni 2mannso manns3p 4mannspe 2mannsr 2mannss 4mannst 2mannsu 5mannt 2mans man5seri m6ant mant5rin mant1s 3manus ma1pa 8mar. 2mara 8mare ma5ret 2margs 7margs. m6arka 1marke 5marked. 9markeda 5markede 4markedk 5markeds. 6markedse 5marknad. 5marknade 6marknadk 9marknads. 2marks mar7la mar9ri mars2h 4marsjf 2marsjo mar3skj 7marx ma8r^^e5 ma3sel ma7sjok 1mass 4massef 4masset ma5stem ma3stra ma3tera mat6h 6matk mat1l 2mato mat5ras mat3res mat3ret mat9rom mat1s mat7tr 8mat^^f8 ma1un mav6 ma1va ma5verk 2mb m1barn mbe3a m5bekk mbe7ko mbe3kr m7bels mbe3m mbe3reg mberetter6 mberf^^f8re6 mbi1b mbi5ska m5bitt mbol3l m6bombes mbo3p m1brin m1bro m5brudd. m5brudde m5brudds. m7bruddsfo mbus3 m1by m1b^^f8 m8b^^f8t m2b^^e5nds m5cy 6md m2dal m1dat mde2 m3def m1di m1do m7drift. m7drifta m7drifte m7drifts. m7driftsme mds1 m5dy m1d^^f8 m2d^^f8m m8d^^f8y 2me. me7ak me5al 2meb me4backp me5be 2med. me7dag. me3dage 6medaljev me1dat 2med5b 4mede me3deb 2med3f med3gan med6hus. 5media. 8mediat me5dise 3medisi 1medl med3led 2medm me3dom me1dra med1s2 7medv med3va me7dyr me5d^^f8m me5es me5fi me3fo me2fro me1gi me1gj me1gla 6meglerk me1gr me1gu 2me1h mei8 m5eiere. m9eieres m5eiern m7eiers m8eig mein9h 9meister. 5meistere 9meisteren 6meistert 7meistr mek4 3mekani me5ki me5kj 2mekk 8meklark me1kn me3ko me1kr me9kri me3kro m1eks me1kv me1lag me5landsk mel4bu mel3dag 6meldy me8leis me1lek me4len mel5eng 2mel1f mel5ge mel6hu 2meli me5liten. 4melker 6melko 6melkt 2mell 5mellomr mel6l^^f8 6me7lov mel5st 4melt me5lun me3lur mel5ve me5l^^f8nne me5l^^f8nni me3l^^e5 me1m 8men. 2mene. men5fo 3mengd 4mengdev men3ho 1menig 5menin men5lagt. men5lagte men1le men4lig menn1l menn1s men5r 4mens men5sett men5skri men1sm men3sti men3sun men5svo mentum5 men1v 7meny meny7d men5^^e5 me3o me6os me3p 2mer. mer1d me3rekn me5rel me3rett mer1f 6mergc 6mergs 6mergt mer3h mer7j mer2kan mer8kas 2merkef 4merkep 4merkest 4merkesy 9merkings. mer7len mer9ly mer1m mer3net mer5os mer1p mer1r 6mers mers4b mer3ser mer7sin mer7sko mer3sla mer5sle mer1st mer9ste 2mert mer7tall. mer5talle mer7talls. mer7tallsf mer5tegn mer5tei mer1ti mer7to mer5und mer1va mer1vi me8r3^^f8 2mes. mes4a me5sad mes4h me1si me7sim me7sj mesjuke7pleia 4me1sk me1sl me7son me1s2p 3mess 4messel 4messo 4mesterb 7mesterens 4mesterk 7mestern 6mestero 6mesterse 4mestert 4mesterv me9sto me3str^^e5 me3sy me1s^^f8 2met. 4metalld 4metallf mete4 me1teg me5tek 6meterm 6metern^^e5 meter3s 5meters. 6meterst 6meters^^f8 me5til me1tin me1tj 7metn 1meto 5metod me3ton me7trak me3try 2mets met7sk met7st 1mett me5tv me1t^^f8 me1v me4verns 8mf m5fak m7fara m1fare m7farty m5fei mferds6 mf3f mfi5br m1fl m2flak m3fora m8forman m2formi m5fre mfrem2 m1fri m7fro mf7t m1f^^f8 m7gal m7gam m5garn. m7garne m1ge mgjen2 m2gjo m1go m5gra m1gru m1gu m9hef m5hel m1hen m5her m3hev m1hu m9hus 2mi. 8mia mi5art mi3ba mi3be mid3b 5middel. 7middels. mi7del m9id^^e9 mi7die mid5so mid5st 2mie mie5kv mi3ele mie9s mi1f 2mig mi9gj mi1i mik8 mi7ki mi3ku mi3led mile5v mi7lim mi5lin 1milj 3milj^^f8. 5milj^^f8a. 4milj^^f8an 3milj^^f8e 8milj^^f8om 6milj^^f8po 6milj^^f8prob 2milj^^f8t 4mils 7mils. mils7v 2mil^^e6 m1indu 4minep min5ers 2ming 7ministere. 9ministerens 7ministeres 7ministerne 4minnea 2minnef 2minneg 6minneh 4minnei 4minnek 4minnel 8minneo 4minnere 6minnesa 4minneti 2minnev 7minneverno m1inns 3minutt min3y mi7ov mi1p mi1re2 mis2 8mis. 3mis6b 2mise mi1sek mi1sel 6misjonsg 6misjonsk 2mis4k mi4ska mis4m mis3p miss3k miss7p mis3tro mis5tru 7misu 2mit4 8miu mi3va m5jern mje7v m1jo 5mj^^f84 8mj^^f8li 8mj^^f8lke mj^^f8s5t m1k m9kalli m6kj^^f8ringsk m2kle m5kledd m3kob m5kod m7kol m5komp m7komst. m7komste m3kon m3kor m2krin mkring3 8ml m5lak m8lap m7lau m8laups m9laups. m6lederku m4lederr m6leggings m7leggings. m8leiark m8leiarr mleie5tag m3leig m8leis mle3m m3leng ml6i m1lis m6lj m7lufts. m1ly m4lyd m1l^^f8 m7l^^f8y m1l^^e5 2mm2 m1mak mma5kl mma5m mmando7l m3mann mmar3sk mmar1t mma5str mme3dal mmedata4 mmed3g mme7ga mme1la mmel1l mmel5sp mmel1t mmen7g mmen1k mmen3tr mmer5d mme3reg mmer5kl mme3rus mmer3v mme1s mmesjuke5 mme1ta m9meter. m9metere mme3tre mme3ty mme1u m5mil. m5mila mmi3m mmut3s m2my m2m^^f8t m1m^^e5 8mn m1nav mnd5l mned4 mn7eid mne8n m8nes m1nett mne1v mn3g mn9se mn7ty 2moa 7mobila 5mobile mo1br mo8bu mo3dag mo5dalen. 3model 7moderle 1modu mo2f m1off mo5fob m5ofr mog8o m5ogs 6moh 2mok mole2 mom4 m7om. moms3^^f8 2mone 6monopolb 6monopold 6monopolu mon2r 3mont monte2 m1op mo3pl mopp8 1mora mor1br 3mord6e mord7r 5mords. 2morf mor7fed mor2ge 2morh m3orie 6morkr mor7l moro1m mor3p 3mors. mors3d mor3sel 6morsk mors7kj mor7sky 6morst 4mort 2moru 8mory mo1sek 4mosf moskva7 1mot motek8 mote7kl mote1s 4motord 2motorp mot7re mots2 mots8e mot5str mot1tr m7over. mover6by mover8h 2mp mp7bo mp3d mpe5e mpe5g mpe5k mpel5l mpe5lot mpe5rik mpe1s mpe3tr mpe5u mp1h mp7he mp3id mp1k m8pla. m5plassen mp3lei mp5lev mp3ly mpo7k mp3opp mpo5ri m5pose mp3p mp3rad m8prism mp7r^^f8r mp1s mpse6 mp2sj mp2ski mp1tr mp3ung mp1v m2p^^e5 m1rak m5ram m1reg m5rein. mrein5d m7reine m3risi m1ro mroms7 m7roms. m2r^^e5 2ms m7sag ms1ak m1sam ms1ar m1sc m7seii m1send m5senk m3sent ms3epl m9si. m7side. m3siden m9sie m3sif m1sik ms3jak ms3kab m3skad m5skaf m3skal ms8kas ms6kav m1skol ms1kor m7skrive mskue6 m3sky ms1lan m2slu m5snak m9sona m1sond m7sone. m7sonen m7soner m2sop m6spen ms1per m1s8pi ms1po mspreng4 ms9s2 m5stade ms7tak ms1tal m3stas m1stat m7stav. m3stave ms3team m5sted. m3stede m7steds. m9steg. m9stega m7stege m7stell. m9stelle msten8 m3stig m6stigi mstil4 m9stod ms5top mst5ord m1stru m1stu m1sty m2st^^f8 m3st^^f8r m3st^^e5 msun3da ms5van ms7v^^e6 m7syninge m9synings. m5synt m1syr m1s^^f8k ms5^^f8r ms1^^f8y m4s^^e5 m7tak m7tap mt6b mte1d mten1^^e5 m1tett mti7en. mtil8 m1tj m1to m1tr m6trenings m7tri m1tu m8tua m8tue mt5vanne mu2 m1ub mue9r mues1 2mug 2muk m9uka m1uke mul2 6mula mule6s mull2 mulls5 2mum 2mund munke2 munn8le munn1s munn7v 7murer. 7murere 7murern mur7k 6murn mur3p mur5sten. mur1v 1mus2 mus7h 3musi muske4 muss5l mus5te mus5u 4mus5v 2m1ut 6muy m5vanne mvann3s m9vara m9vare. m7varene m7varer. mveg5s6 mvekst6 m5verk. m3verke m9verks. m9vern. m9verne m1vo m2vu m3v^^e5pn 1my2 4myd mygg5a 2myk 9myntar. 7myntara 9myntare 7mynte myr7ka myr5l myr6la myr5u 1m^^e6l m^^e6r1 1m^^f82 3m^^f8b m^^f8kka5 m3^^f8kn 4m^^f8llep 3m^^f8n m^^f8ne9s m^^f8r7sm m^^f8r3^^f8 2m^^f8s 4m^^f8teb 2m^^f8ted 2m^^f8tef 6m^^f8teg 8m^^f8te3l 5m^^f8ten 6m^^f8tenem 8m^^f8teo m^^f8te1r 5m^^f8ter. 4m^^f8tere 5m^^f8tes. 4m^^f8teta 2m^^f8teu 2m^^f8tev 4m^^f8te^^e5 5m^^f8tt 2m^^f8y m3^^f8y. 2m^^e5. m^^e51a m^^e51bo m^^e55by. m^^e51b^^f8 m^^e57da m^^e55el m^^e57enh m^^e59er m^^e51f m^^e51g8 m^^e51h m^^e51i m^^e51j 1m^^e5k m^^e53ko m^^e51kr m^^e51kv m^^e53lak m^^e5l9gj 8m^^e5lsa 6m^^e5lso 4m^^e5lsp 8m^^e5lsu 1m^^e5lt m^^e53l^^f8p m^^e53l^^e5 m^^e57m 3m^^e5n m^^e5n5dal 4m^^e5nef 6m^^e5nena m^^e59nese m^^e51p m^^e5r5h m^^e51ro m^^e51ru m^^e51s 3m^^e5t m^^e53tas m^^e55tr 6m^^e5tt m^^e53t^^f8 m^^e55va m^^e51ve m^^e53vo 8na. na2a na7blo nabo1 na9by na3co na4d n1adop nads1 nad8sa nad7ski nad3ve na5el n1aff na7fr^^e5 n9aft nag3s2 na7h na5kri n1aks n1akt na8kv na9lag na7lands. na7landsk na7landsr nal1b nal3ei nal5epo nale1s nal3ett nal1g nal1k nal3led nal1li nall5s nal5ly nal1m nal3op nal1s2 nal1t nal8tr na1lur nal1v na2ly nal3^^f8 na3l^^e5r na5mel 1namn nam9r 8nan n1anal n3andak n6andels n7andels. nan7d^^f8rs. nan5f n1angr nan6h nan9ka nan7landsk n1anle nan9p nan7riks. nans1t na7o nape6 naps4 nap5sh n1arb nar1de nar7dr nar7ei na7riks. nar7kl narko3r nar7kv nar5la nar9lo nar5p nar5sin nar3sk nar7sl nar9sp nar5tim nar5^^f8 4nas. 4nasi 6nast 6nat. na3tag nat7h nato1k nat1sk 1natt 6nattingsd 6nattingsk 6nattingsp 8nattingssta 5natura 3naud naud5r nau3sk nau7sp nav6 n3avh navia5 3navig n3avk n1avl 1navn navn3s na7vo n1avs 1naz n5bad n5bak n3band n7banene. n7banens n2bar n3bark n1bas n3bat n1be n9bein. n9beina n7beine n9beins. nberr8 n5bes n1bi n1bj n1bl n1bo n6bow n5bre nbrenn6 n7bruk. n7bruker. n7brukere n7brukern n1bry n3bue. n3buen n7buer n1bus n9bya n7bye n7byl n1b^^f8 nce2s nch3ei n1cr 4nd nda7bi nda3f n4dagsk nd5alf n1dann nd9arbeida nd7arbeide ndar7l nd3art n7dataene n9datas nd1d4 n7defi nd1ei nd2eid nd2ek nde7kl nde1kr nde5land n6deli nde3lik n7delings. ndel2s ndel5v nde1me nde5o nde5rim n3deriv nder5k nder5lags nder3m nder5p nder3ve nde1s nde5ten nd2f^^f8ri nd1g nd9gj nd6go n3dim nd1int n1diok ndis3pr nditt5a nd1ju ndle3s nd5ligg nd1m n8dob ndoms3 nd1op ndo1st nd2pu n7draginge n9drai n5dram ndre2gr ndre5st nd3rett ndretts8 n5drift. n5drifta n5drifte n5drifts. nd2sam nd6sel nds5elv nds5ende nd7setj nd3sett nds3g nds3h nd9sid nd7sj^^f8 nd3skol nd7skot nd7skrev nd7skriv nds7kul nds7laga nd4sle nds3mi nd1son nd7spu nd1sta nd7stade nds7tak nds7tap nd1ste nd3stry nd4sv nds3vi nd8syn nd5tag nd3tei nd7tek nd5t^^f8 n7duka nd1ung ndus1k nd7veg nd1vo nd7v^^e6 ndy3l n1dyr ndy1s n1d^^f8m nd^^f8rs3l nd5^^f8ya 2ne. ne1a ne7ale ne8a9m ne6bakks 1nebb ne2ble ne6bu. ne7bui ne1da8 3nedb ne1deb ne1del neden2 neder2 3nedf 1nedg ne1dia 1nedl ned5la ned9let ne1dom ned5rev ned3riv 1nedru ned5rykk. ned1st ne3dyr ne7d^^e5r ne6eierf ne1ers ne1f n1eff ne8filmp n3eft nefter4 neg8 ne3gan ne1gar ne1gi ne1gj ne1gla ne1gr ne4gro ne1gu ne1han ne1ho ne1hu 2nei n1eie n6eierfor n1eig ne1in n3eini ne3ki ne1kl ne5kledd ne1kn ne5kom nekraft5v ne5kran ne1kv 2nel ne1la nelands6k ne7legg. ne5legge ne5leggi ne5lev ne1lis ne9liv 3nellik ne5lot nel3ovn nelse4 nelses3 nel5st ne1lu ne1l^^f8 ne3l^^e5s nem6 ne1ma ne4mati n3emb ne1mer ne1mi 6nemle 1nemn 4nemndsl ne1mo ne8mon 2nen ne1na nen5d^^f8rs. ne1net ne5nev nen5gan n3enhe nen1k nen7lands. nen7landsk nen1st nent5ei n1entr neon5s ne3or ne1p ne5pleia ne7pleier. ne7pleiere ne7pleiern ne1ram ne7rap ne1red ne5ref ne1rek ne3rent ne3rest ne1ret ne1rev n3erfar ner3f^^f8 nergi3k ne1rik ne3rim ne5rit neri9v ner7kn ner1ku ner3la ner6la. ner2le ner1m n1erob ne5rok ne1rol ner1r ner5si ner1sj ner3sko ner9stan ner9sten ner3tal ner1ti ner7tia nerve3s 1nerv^^f8 ne2r^^e5ds 2nes 7nesa. nes8er 3neset. ne3sett nes2i ne1sj nes4ka ne5skam ne3skar ne1skj ne1sko ne1skr ne1sku ne1sli ne3slu ne7sl^^f8 ne7sn^^f8 ne7son ne1s2p nessammen7 ne3stas ne6steins 3nestl ne1str ne5styre. ne7styrer. ne7styres. ne1st^^e5 ne1s2v nesyke4 ne3s^^f8k ne3s4^^e5 2net. 4neta ne3taks ne1tal n3etasj ne1teg ne1tek ne1tin ne1tj ne1to ne1tr net1st 4nettan netter4 4nettk nett3l 4nettr nett3st nett3su 5nettv ne7ty ne5t^^f8 ne5us nev5d ne1ved ne1vel nev2i ne5vins. ne7vip ne1vis ne7vitne. ne9vitnet 1nevnd 3nevro ne1v^^e6 ne1v^^e5 ne4yt n3fab n2fags n1fak nfall4 nfalls5 n7fals n7fann n5faring. n7faringa n7faringe n9farings. n5farte nfelt6 nfer8 n5fert n5fib n5fj n3flo n3flytt n6flyttings n5flyv n6folkar nfo7m n5forf n3forh nfor3l n6forn n3forr n2fos nfo3se n9f^^f3 n7fram8 nfrem8 n5fru n3fr^^f8 n1fu n3fy n7f^^f8ling. n7f^^f8linge n7f^^f8rd n7f^^f8ringer n6f^^f8rings n7f^^f8rings. 4ng ng8ad ng3af ng1ak ng3art n2gasj n1gass ng5ato ng2dri ng1dy nge3lan ngel3d nge5ligg ngel6to nge1mi nge1mo nge7no nge1s2 ng7fr ng1g ng1h ng7id n7giva ngjen4 n7gjera n5gjerd n9gjere n9gjerings. n1gjet n7gjev n2gjo ng2ka ng2kok ng3lei n3glemt ng1lis ng3lyse ng3l^^e5 ng5na ng5nem ng5net ng7ofr ngo7k ng7ond ng7ope ngo3sp n5grad. ng5rest ng1rev n1gru ng6salt ngs7elv ng4sj^^e5 ngs9mo ng5stad. ngst5ret ngst5rid ng6ta. ng7tor n3gud ng1und ng3vare ng3verk ng2vin ng2vis ng5vis. n1gyl ng1^^f8y n5g^^e5rd. n7g^^e5rds. n5hag n1han n1har n5has n1hav n7hek nhel8 n3hend n3hes n2hil n5hof n8holds n4holm n1hu n6hyr nia7d niande8p nid2 ni9del. ni7dele n5id^^e9 nid7g nie2s ni2f n3ifr ni3go ni7gr^^e5 ni1he ni2hi ni9j nijord9 nik1kj ni7kle nil6 ni3led ni7mar 2nin nin7al n1ind ning7la ning5o nin3gra ning9sake n1inj ninn8 n3innb n3inns n1ins n1int nions1 ni8os ni5ov 2nip nir8 ni3ri n2is ni5sem ni5serie ni3skj nisk3o ni7sol 2nist nist7h nist7l ni7su 2nit ni9tida ni5tiden ni3tim nitt2s nitts3t ni3tu ni1ub 1niv niv5ei 4nivo niv5r niv1s nivs8m ni6^^e5rsa nje7gr nje1m nje1s nje1t n5jor n3jui n3juv n5kada n1kal n7kallings. n1kap nkapp4 n3kasse nk2ba nk5eid nk3eie nkelt1 nk5enh nke3rad nke2rot nke1s8 nk1gr nk7ha nk5ho nki3d nkilo8 nk1inn n5kjed n7kjennele n3kjent n4kjer n1kjo n7kj^^f8l n5kj^^f8nn. n5kj^^f8nne n5kj^^f8per n7kj^^f8ring. n9kj^^f8ringa n7kj^^f8ringe n7kj^^f8rings. n3kj^^f8rt n7kj^^f8t. n9kj^^f8te n5kj^^f8tte nk1k2 n3klip nk1lok n5klor n3klub nk5ly n3kl^^e6 nk1l^^e5 nk7m n1kny n1ko n8koa n2koe n2ko7f nk5oks n2kol n7kole n3kolle n5konv nkor4 n4korts n5kraft. n9krafta. n5krafte n5kraftv nk1red n7krem. nk1ren nkring4 n5kru nk1si nk1s2k nk1sp nk1st nkt2h nkti4 nkt8le nkt1sk nkt5spe nkt3st n1kul n5kun n7kup n5kvit n2kvo n7k^^f8yrd n9k^^f8yring. n9k^^f8yringa n9k^^f8yrings. n9k^^f8yrt n1k^^e5 nlagt1 n7lak n3lam nland4 n3lande nlands7t n1lap n7lar n1las n1laus n5lav nle8 n5legenes n7legers n5leia n3leid n3leie n8leik nleis7 n1lek n1lem n2lende n1les n1lev n6li. n3lie n3lim n1lin n1lit n1liv n5lovs. n1lu n1ly n1l^^e6 n2l^^e6g n1l^^f8n n4l^^f8si n9l^^f8sninga n7l^^f8sninge n7l^^f8snings. n7l^^f8ysinge n9l^^f8ysings. n7l^^f8yst n1l^^e5 n1m n6malmg n6mari n3mes n7met n9mi n6monopola n3my 2nn nna5bo nn2ad nn1ak nn3alg nnan9sk n8nar nnar7k nn9bane. nn7banen nn9baner nn5bild nn2bit nn1bra nn1bri nn7bruke nn8bue nnd8 nn3dale nn1dam nn3dele nn5dj nn9drag. nn1dre nn7dr^^f8 nn1dy nn1d^^f8 nne8bor nne8bu nned2 nne1g nne1kr nne3lit nnel1l nnen1s nne2ps nne3r^^f8s nne1st nne1ve n5nevn nne3vo nn1fe nn7fek nn1fi nn1fla nnfor4 nn1fr nn7f^^f8rsel. nn9f^^f8rsels. nn9f^^f8rslen nn7f^^f8rsler. nn7gav nn1gi nn1gje nn1gl nn7gra nn3gro nn1her nn5hv n8ni. nni8b nnis1s nnis1t nn1j nn1ka nn1ki nn3kje nn1kl nn3ko nn3kran nn5kri nn1ku nn5kv nn5land. nn5lands. nn1len nn1lo nn2l^^e6k nn3l^^f8pe nn2l^^f8sn nn2m^^f8 nn3of nnom1i nnom5se nnom3sy nn1op nn1or nn7ord nn3pr nn5p^^e5. nn3rik nn5salg nn7sang nn2sc nns7enk nn3seri nns3es nn5sete nns1in nns5is nn1skj nn3s2kli nn5skrev nn5skriv nn5skue nn6sk^^e5 nns7las nn1slu nn3sof nn5sol nns1or nn5spare nn5spart nn3spei nns9s nnst6 nns5tab nns7taka nns3tal nn7stande nn7stands. nn3stei nns7telt nn5sten. nn9stens nn3ster nns3tes nn3stev nns7top nns3tre8 nns3tro nn3stru nns3tv nn1sty nns3var nns5vo nn7syns. nns1^^f8k nns2^^e5r nn1tau nn1teg nn8tei nn1tem nn3tet nn1ti nn5tjent nn1tr^^e5 nn3tu nn1t^^f8 nn5uen n1num nn1ut nn7val nn1var nn7ved nn3vei nn1ves nn3vis nn1vo nn2v^^e6 nn1yn n9n^^e6ring. n9n^^e6ringa n5n^^e6ringe n7n^^e6rings. nn7^^f8k nn1^^f8v nn1^^e5 no1ak noas3 2nob no5ba no5bet no1bi no1br nock5out. nock5oute no9ei no7fa n1off no1fi n7ofr no8ge no9gj no5in 2nok8 nole8 no3ler no9lev n6oljem no1lok nom5ba nom3bo no1met nom5gang. nom7ganga nom5gange nom7gangs. nom5gi nom5gri nom1g^^e5 nom9h nom3k nom3l nom7ma n7omn no3mon noms4 nom1sk nom1sl nom3sp nom7st nom3su nom1t nom1v non5d non3f non1sk non5t non7v no7o no3pl n1opp nopp2f nopp8k nopp7rei nopp6st 8nor. 8nora nor2d n7ord. nord6a5v n1orde nords4 3noreg 1norge n1orie 1n6orm norm2l^^f8 nor3sa nor5st nor5tr no1sal no7sit no1sj no5sp nostrati5 3not. 7nota. 8notati 8notatu not5b nover8d n5oversi n7overv now3 7n^^f3 n1p n6plateg n9plo n5posten. n5postens n5pre nr2 n1ra n8rar n1reg n9reisa n5reise. n5reisen n7reiser n1re2k nrekk6 n3rep n1res nre4t n7rev n5ringa n7ringi n1ris nro8 n7rod n1ru n1r^^f8 n1r^^e5 6ns ns1ad nsak1h nsak5r n7samla. n5samlet n7samlings. n5sann ns3ant n3sco ns9do nse9al nse6at nse3del ns3ege nse1la nse7lik nse7lin ns3elv nse3mer n6senk ns5enti nse1pa nse3po nser6t nses2 nse1sk nse1sn nse1sp nse1sv n9setjings. ns5eur nse5va ns3fi ns3h n7sigl n1sikk n1sikr nsin3dr n1sir ns3jak n7sjekking. n7sjekkinga n7sjekkinge nsje3v n7sjuk n1sj^^f8 n3skall nskap2 ns4kast n5skatt n5skau ns8ke n1skif n3skill ns5kjenn nskjenne8 n3skog n7skola n5skole. n5skolen n6skoleni n5skoler. n9skolers n9skoles. ns3kom ns3kor n9skots. ns5kraftp ns3kred n5skrek n5skrif ns7krin ns1kro n5skru ns4kue n7skula n7skule. n7skulen. ns3kuli ns1kv n7skyss ns1le ns1li n5slutt ns3mal ns5mann. ns5manne ns3men n8sm^^f8l ns1na n5s2nar ns3nas ns1ne nsned4 ns1no ns1of ns2ok ns3ond n3song nsopp8 nsor1p n9spara. n7sparingene ns1ped ns5pels ns1per n3spik ns7pris n4spr^^e5kk n6spr^^e5ko ns6rettsd ns1s2 nsse2 ns5si ns5tak. ns5taker. ns5taket n1stam nst3art n1stas nstats4 n1sted n3stemn n1stif nstil8 nstill2 ns3time nst5is. nst5ise ns1tj nst7k n5stoff. n9stoffa. n5stoffe n7stok n1stol nstre5ka nstre5m nstre7s n3strip ns6trygdl n1str^^e5 n9stua ns7tuk n2sug ns1uk n6sunda nsur7f n3sverg ns1vi n5sv^^e6 n1syk ns2^^e5p n5s^^e5pe 2nt n8ta. nta8gra n7takk n6talsf ntal5t n5tang nt1anl nt1app n5task nt4at nt1b nt3ba nt3d ntdata8 nte3del nte1e nte7ge nte3gi n5tegni nt5eini ntekt6 ntekts3 ntel8 nte7listen nte7lister. nt1emb nte2mis nt1enh n7tenk nt4er nte5rett nte5rike nter1k nter3sk nter3so nte3sk nte8skap ntet5s nte7tv nt2eu nt1gi nt9gj nt9g^^e5 n6tidsp nti7i nti5kas nti3kl ntil7be ntil8s ntil8v nti3met nti1so nti3sti nti3sto nti5ves n3tjene nt1la nt3lei nt5let nt3lign nt5lik nt3ly nt6mannsp nt1net nt1no n2togs n1tolk nt5om4f nt7omn nt1op n3toppe nto5rent ntor1m ntor3n ntor3t nt1ov nt7p ntre6s n5tril nt5sal nt1sat nt1se nt9set nt1si nt6sin nt1sj nt7sku nt7sla nt1sp nt8spo nt2spr nt1st nt8st^^f8tted nt6st^^f8tteo nt6st^^f8tter nt7svar nt5s^^f8 nt1t ntu8 nt7ub nt1un nt1utt nt1v nt7vi ntygge4 ntyr1s n8t^^f8k n3t^^e5k nt7^^e5r. nt5^^e5rs 4nu. 8nua nuar1 2nud 8nue nuft8 nul4 null5f 5numer 3numm 5numr 6n1un nu1o 8nup nu3pl 2nur2 2nus nus5h nus8kl nus3si nus7ta 2nut nut7eri n7utk n1vak n1valg nvann5sta n7vara n3vare. n5varen n3varer n3vask n1vat n3vege nver2 n1verd n6verdip n3verk. n3verke n5verks. n8verksh n2vernf n2vernl n4vernt n4vernu n1vev n1vid n1vin n6vin. n3vip n1vir n5vitne. n5vitner n5vitnet n1vok n1v^^f8 nyan2 8nyane ny3ank 8nyar ny1da ny4ga ny7gam ny3gi 1nyh ny4ha 1nyk ny3kj nykle7b ny3ko ny1la ny7l^^e6 ny6mar ny3pl ny1po ny7rak ny7rev ny5ri nys2 ny5sep ny5sil ny1sk ny1sl ny3sn ny7sp ny6stu ny5tek ny3tr 4nyttm 4nyttr 2nyttse ny1v ny8van ny4ve ny8ving n^^e6r5d n^^e6r9g 2n^^e6s n^^f85bi 1n^^f8d 4n^^f8dd n^^f8dde5 n^^f85dek n^^f8d1r n^^f8d3sk n^^f8d5sto n^^f89dun n^^f81f n^^f8g8 n^^f87gr 1n^^f8k 4n^^f8ks n^^f87m n^^f85p 4n^^f8r n^^f83ras n^^f8r1b n^^f8r1se n^^f81ry n^^f8s2 n^^f81sk 3n^^f8ste n8^^f8va n5^^f8y. n7^^f8ys. n^^f8y7st 1n^^f8yt n1^^e5k 1n^^e5l n^^e55lev 2n^^e5lsh 6n^^e5lsr n^^e5l3^^f8 7n^^e5m. 7n^^e5me 7n^^e5ms. n1^^e5p n9^^e5ret n3^^e5rig n3^^e5sen. n7^^e5sens n^^e55v^^e6 2oa o1af o7akt o3alde oal5g o1all o3alt o1am o1anl o3ant o1ap o5arbei oar5enh oar1m oar9n oar7p oar7v o1au o5av 2oba o8ba. o1ban o1beb obe5p 2obi obin6 o1bio 1obj 1oblig o7bl^^e5 o5bos 2obr o1bran o1bru 1obser 2o1bu o2bus 2o1by obyl7 2ob^^f8 o7b^^f8k o5b^^f8lger o3b^^f8r 2ob^^e5 o1ce 2od od2a oda9b o9dalens o1dam od3ap odata2 od7att8 od1b odd9ei odde5s 3odds odd7sp od2e ode3h odel8 ode3l^^f8 ode6mu oder1p ode3se od1g od5hu od3igl odis8 o5disp od2k od9kl od3ko od8lei od7m ods4ka od1skr od3sn od3stol ods1tr od1t^^f8 od1v od^^f8ds4 od1^^e5 2oe6 o1eie o1ek o1ele o5elv. o9elva o5elven. o5elvens o9elvs oen3a o5enc oencefalo8 oeng3d oeng7r oeng1s oeng3u o2er oer1p o7ett o5ev of4 2ofa o6fei ofe3st 9offera. 5offeret off5id 1offis 6offisersf 2ofi o6filmp o3fin o3fir o6fjordt 2ofo o9fol o5foru o9fos of2s 8oft 2ofy o1f^^f8 2og og7av og3da og7dy o7geb og2en ogen3r o1gev og9f ogge3ra ogg5j og1gr ogg7s og5ha og3he o8gig ogi1o ogi7str ogi3v o1gj og5jer og1la o7grav og1rei og7rik o1gru o8g5r^^f8 og7s8an og1s2e og1si og8sin og1sj og7s2kj og3sko og7skr og5sle og1sp og2sta ogs8tel ogs6ti og4s5tj og5s2tre ogst7ret ogs7ve og5sy og1t og1un og1v og9^^f8y. og7^^e5s 2oh o7handlar. o7handlara o9handlare ohans7son. ohol1m ohol7s o1hu oh^^f8re5 o5h^^e5 2oi o1idr oid5t oid7v o1im o1ind o1inn oinn6b oin1o oin5sl o1inst o5jak o1ju ok3aft ok1ak okal1k okal1v okan5i ok7ark ok1ef ok5eid ok7els ok2f^^f8ri ok1ho o5kine okinn3 o1kj okj^^f8p4 okk3and okkar5v okke3h okke1s ok3kje 3okkup o5klave ok7lei o3klin ok3lis o7klo o8klu. 2okn ok1no oko4 ok3oms ok1orm ok7ov o1kre o6kredittk o1kr^^e5 ok1sam oks6e ok5serie oks6i ok7spe okst2 oks4ta ok7sto okt2a 3oktan o1kult 8ol. ol5anl ol1ant olar5k olar1n ola7str o9lau olav6 ol1ba ol2be ol7bel ol3dag old6o ol1dri olds1t 4ole ole4boks ole1d ole3f ol9eig ole1in ole1m ol3ener ole1p o7lerk o1lerr ole1s ole1v oleverk7st ol1fa olf5i ol8fj ol3f^^f8 ol1gl ol8gro 2oli olin3t 1ol6j 6oljeme 2oljep olje1r 4oljet ol7kal ol7kana olke1s ol8kos olk5t ollen3s ol3lig oll1m ollom4 ol8l^^f8 ol5menn olme3s ol1mi olm2s ol6m5^^e5 2olo olo1f ol7os. olo5sa ol7ose olo7si olo5ver ol4porte ol3set ol2sik ol2sj ols8o ol3sti ols8v ol5sva ol6svik ol3tak ol1ti ol3ung olv5d ol6vei ol7vend olv4fi olv4to oly4h 1olym o1l^^e6 o1l^^f8 o1l^^e5 2om. 2oma o5maf o1mag o7maka om1ald omanns5 om1arb o1mark om3ars omar7^^f8 o5mask o8maskinb o6maskinp o5maso om5av ombe3la ombe3t om1bj om5bl 5ombod om3bruk 1ombu 1omb^^e6 om6b^^e5 om1d 2ome om1ek omen2 o5menn 1omfan om5farte om1fe om7fi om4forme om6fra om7fu 1omgre 2omh om1ha om2hy omi7g omi1mi om3ins o2mis om3je om2ko om2kved om1la om1lu om2l^^f8 om3l^^f8s 2omm ommar3k 3omm^^f8 5omn. 1omnen 2omo o5mobil. o1mome omor2 omo7se 1omr 2om1re om1rin 2omro 2om1ru 5omr^^e5 7omr^^e5des. 1omset 4omseta om1skr oms1tj oms1un 2omt. om2ta 1omtal om1ti om1var 1omven 8o2my om7yrk o6m^^f8k 2on on7ak on1anl on1app on1arv on1av on1b on3ba on8c on3dam on1dat onde5lag. onde7lags. onde1p onde5rest on7dro onel4 o8nes one9set one7sk one1te one1v on3f^^f8 ong1d onger2 onge5t onge7v^^e6 ong3ka ong7ly ong7stads ong3te ong5^^f8 on3h on3id on5ild oni1m on5inf oningsh^^f8g7 on1inn oni1o oni5p oni7so oni3ti oni3ve on1ka on1kj on3kra on1la on1led on1l^^f8 on1nu on7ord on1ove on1r ons1k ons1l ons1p ons5tas on2su ons3und ont4ak on7taler on9tau on3teg on1tj on1tog on7ul on5ur on7ut o5nyt o6n^^f8 on5^^f8d on3^^e5 2oo ool7a o1opp oose4 o1ov oover4 2op. 2opa opa3ka opan5d opar8d opa1v opel8 2open o5pent ope2r o7pero ope3s 2opet o1pil oping3s opi3r 2opl o6pla. o5plant o1plat 2o2p8o o3poen 2opp. 6oppa opp9al. opp9ale opp3art 1oppd 2oppe 1oppf 1oppg 1oppl opp3lau opp3lei op4pr opp3reg 1oppt 3oppv opp1^^e5 2opr o3pro op5r^^e5 o5psy 8opt. 8opte o1pub o3pus opy5 op^^e58 8or. or7add ora3gr or1aks or3ald or3alte or3angr or3arb or3att or2a3uk or1av 4orb or1bak or7bie or3bil or3bok or8brun or3byg 4orc 8ordd ord1ei 8ordel orde8p ord9epl order7l or8det 8ordfo ord5ise ord3it 2ordl^^f8 6ordningsr 2ordo 2ordp ord7se ord3skr ord3som 2ore ore9bygginga ore7b^^f8 ored6 ore9fu ore1h o5reim orein8 o3rekk ore5lan ore2sp orestan7 o7rett. o9retts. ore7ve ore3vis 6orf or3far or9fel or3fla 1orga 2orga. orge2 6orgen orgen3s or2gra or8g^^e5e or5hald or1hav or9holdt or7hu or8h^^e5 ori5b or5ibl 3orient 2oris6 ori7tab ori3ti ork2 or9kak 1orkes ork9h or3klu or7kl^^e6 or7kl^^f8 or8kna or3kon or3kr orks4 or3ku or3kva or8leg or1lev or7lin or1mag or1mak 4ormb orme8l or5merk or5mestr or3meta orm8len or3mor 8orms orm1un or8m^^e5t or3nev orn5k orno1s orn1si 4oro oro4f or7off oro7j or1op or5pan or3par or8ple or3pr or7rei 2ors ors5alt or8sand or7sans ors2d or3sei or8set or6sildf ors2k orsk5ei orsk9l or7skul or1sle ors5m^^e5l. ors9m^^e5la ors5m^^e5le ors5m^^e5ls. ors2o or1spo or5star or8stavn orste2 or7sten. or7stens. or9stev or1sti or7stilt ors5tro ors8va 2ort ort3and or8tat or4t1av orte7ig ort3erm ort6hvittb ort1l 3ortod ort1om ort3ori or3tra or8tran ort3res ort3r^^e5d ort5sek ort3skr orts5la ort1^^e5r orud3 orut9ane orut3be orut5f or3utr or5vak orve8l or5vilt. or3vin orv5s orv3t ory2f or9^^f8ker or9^^f8ket or7^^f8ki or5^^f8kn or7^^f8kt or5^^f8r or3^^f8v or5^^f8ye or7^^f8yg o5r^^e5d or3^^e5re os6bak o1seks ose6lei os2en osen9g oses2 ose7sl ose3sm o2sf osfor5f os2hi o1sig o1sil o5sjokk. o9sjokka o7sjokke osk3ei os4ki os9lig os2lo1 os5lu os2m o1smu os1n^^f8 os2o osom5b o1son os7ove os3pal oss6e osse5v oss3kj oss5ko oss9lag oss7tro ost3adr ost5egg ost2ei o5steine ost4el osterk7s ost4hum ost3leg ost7lei ost1om ost5op ostopp4 ost7ordra ost3ran os6tu o1styr o6styrem o5st^^f8tte. o5sui os8va os6vo o1sy 8ot ota2 ot7ald otal5f otal1l otal1s o1tap ot1arg ot9arm otat5s otav6 ot8bana ot3br ot6bu ote1d ot8ei ote2k otek5i otek1k otek7la otek3le otek5ten otel6 ote7lev otell7b ot5ende o5tenest ote5ram o5terape ote3ret otet7ri otet1s2 ot4fal ot1ga ot5gift. ot5gifte ot5g^^e5 ot4hy oti2 o1tid otid7d otika1 ot7iko o1til6 o1tj ot5jer ot9ly otn3f oto5a oto3b ot3off oto7gram otor1d otor3m otor1s oto1se ot2pu o1tran ot7red o5try ots7d otshus7 ot3sn ots8op ot7spe ot1spi ot7ste ot7sty ot1sva ot8ta ott5art ot7tegn ot8tek ott3l ot7tre otts1p ott3sti ott7v o1tur ot5va ot1ve ot7vek ot1vil ot7^^e5 2ou oul1 our2b our2m outan7 out4f out5k 2ova o3val ovan7f ov1arb o3varm ov5art ov7arv ov7da oved1 oved9d oveds2 oveis9 o5veis. o3veks ovekt6 ovel3k 4ove6n 8overb^^f8 over7dag 1overf 1overg o5verkn 7overko over7m 3overna overs2 8oversb 5oversik 8oversv 3overtr over5var ov3f ov3give ov5gjer ov7gl ov1gr ov7ha 2ovi o7vid o1vir 2ovj ov6le ov7lem ov1ly ov9ma 2ovni 6ovnsp 2ovo ov1or o3vot ov1ov ov1sa ov3sel ov5si ov7skr ov5sla ov1str ov7sun ov4syk ov3ta o7v^^e6 oy7l oys5l o1yt oy7tr 8oz o1^^f8 o1^^e5ri ^^f4r5b ^^f4r7ei ^^f4r5k ^^f4r7l ^^f4r5r ^^f4r3v ^^f4r7^^e5 2pa. 1padl pa1j 6pak. 8paka 2pake 1pakk 4pakkeb 2pakkek pakk7esl 1pala pal7ak paler8 pal8i 1pall pal5l^^f8 pal2m 2palmev p3alp 6palt pa5l^^f8 pam2 pa1me pa3mi pane2 6pane. 1panel pang3s 9panne. pans4 4panto pan5tu 3papir. 5papire 6papirei 4papirm papp5ri 1parad 5paraf 1parag 8parai 3param p1arb par8bu pare1a 4parek pare3m par3ess 1paret 6pari par2k 4parkd 1parla parm8 par5tal par4ti 3parti. 3partie 2partip 6partir 5partis. 1partn 4parto 6partp parts7 3party 8pas. 2pase 1pasie pas3k 8passarm pati3st 5patru p7attr pa1tu 1pau p1ba p7ber p1bi p1bl p1br pbrots6 p1buds p9budt p6byggings p5b^^f8 pd8 p1dan p7dateringa p1de p1di p5drev p5drift. p9drifta p5drifte p7drifts. p3driv p9dro p1dy p1d^^f8 2pe. 2pea 1pedag 4pedd 6pedi pe3dig ped5l pe2do pe3dom pedo7n pe7dre pe5dri pe3dy pe7d^^f8me. pe9d^^f8met pe5d^^f8mme. pe7d^^f8mmer. pe7d^^f8mmes pe5d^^f8mmet 8pee pe1f pe5fi pe9for pe4fos p5eft pe1g p5egg pe1h pe7ha pe5he pei4 pe1in pe1kl pekors6 pe1kr pe2ku pe5k^^e5 6pela pe5l4aks pe1lan pe5lat pel3d pel1g pe3lim pel5sei pels2i pel7skar pel5spa pel3st pels5v pe1lu pel1v pe1l^^f8 pe1ma p1emb pe1me pe1mo 2pen. pen1ar 4pende p5enden. 2pene 7penga penge3l 7pengen penge3r 5penger. pen7gl pen1gr 8penh pen5kj pen1l 4pens. 1pensj pen1sk pens6m pens8o 7pensu 2pent pen3til pe7os pe7pleia pe7pleier. pe7pleiere pe7pleiern pe1po pera3f pe1red pere5li pe5rense pe5resp per5esse 1perio per1j per3kj per5leg per5mo pe3ros 8perra 8perre perre6t per3sk per3sl 1perso 4perspi per3tal pert3r^^e5 pe1ry pe8r^^e5s 2pes pe1se pe1sj pe1sk p3eske pe1sl pe1sn pe1s2p 5pess pe1st pe1su pe1s2v 2pet pe1tal pe7tau pe8te. pe5ted pe1teg pet6i peti3m pe5tin pe1to pe1tra pe1tre pe3tri petro7g pets2 pet7sp pe3t^^f8 pe2u pe3un pe1v p5evn pe4v^^e6 8p^^e9 p1fan p1far p1fe pfi6 p1fig p1fis p1fl p6flys p2ford p1fr p1fu p2fy p3f^^f8lt p7f^^f8t p1ge p7gif pgjers7 p1gl p5gn p1gr p5gu p5g^^e5e 2ph p9haling. p7halinge p9halings. p3has phav2 p9hend p5hengi p5hengt p3hent p1hes p2hi phjelpe8 p3hul p2h^^f8r pia7se pi7b pide4 pi7fl pig8 p7igj 3pike 6piked 4pikee 8pikef 6pike3h 6pikek 4pikel 6pikem 6pikere 8pikev 7pil. pil5f pill5b pille5g pill2op 3pilo pil3sp pi1ma ping1r ping3sa ping7si pings4to p1inns pino8 pion1s 1pipe pipe3re 6pipes pir3b pir3d pir1g pir1m pir1s pir1v pis2 2piso piss6l piss5p 2pit2 pitte2 pi9ve pi7vi p1ja p5jern. p5jerne p9jerns 7pjusket pjut5 pk8 p1ka p1kje p7kjo p8kj^^f8pan p8kj^^f8pend p5kj^^f8pst p3kj^^f8pt p1kj^^f8r p9klo p1ko p3komi p1ku p1kv p3k^^f8 pl8 2p1lad 6planana 8plane. 2plang 6planh 1planl 6planmo 1plan3s 8plansa 6planteo 4plantil 4planu 4planv 6plassb 8plassel 7plassenes 7plassers 6plassl 6plassp 4plassv plat6 4platef plate3l 8platep p1led 3pleie. 4pleiel 4pleiem 3pleien 2pleiep 5pleiers. 9pleierska 7pleierske 8pleieru 5pleies 4pleis ple7ta 4pliktav 2pliktb 8pliktl 4plikto 2plikts 7plikts. 6pliktt 2plin p1list 2plit 2plo2 8plogk p1lok p3lue 7plur p1l^^f8f p1l^^f8n p3l^^f8per pl^^f8s7b p2l^^f8sn p7l^^f8snings. p9l^^f8ysa p9l^^f8ysings. p7l^^f8yst p1l^^e5 p1m p4mannsf p4mannsi p6mannska p2mer p3merke p3merki p2modi p3my p6m^^e5lings p7m^^e5lings. 6pn p3nevne p7nevning. p9nevninga p7nevninge p7nevnings. p7ny 8po. po5fl po2k 3poka pokal3l 2poke 1pol po3lag polde4f polde4m 2polek 2pol3f pol5m 6pol5p pol1v p7oms pong5s6 7ponn pon7tak pon7v pop1a po3pla p7opn pop3pla pop1s por5br p3ord p1org 3porn 4pornos por5p pors2g 8port^^e9 port3ro por3vek 4pos. 4poset pos3ett 1pos4t 6pot. po2te2 5potensi 2p2p p8pa pp3angr pp5ank pp3anl ppa3pe pp5arr pp3bel pp1do ppe7a ppe3di ppe5ge ppe3i ppe3ku ppe3lag ppe1mi pp9ender ppe5rad ppe5rest ppe5rett ppe3rit ppe1s ppe3tak pp3etas pp5ett pp3han pp8hel pp1id pp1il pp5im ppin4 pp7ir pp1j pp4kok pp2kom pp3last pple4 pp3lesi pp3lest pp5lett pp1na pp3nes pp3net pp1no pp1old pp1op pport3s pp5p pp3ra pp5red pp5reid pp1ren pp9ro. pp7rot pp1ru pp1r^^e5 pp1sak pp3san pp3sat pp1ses pp1sj pp1ska pp3skj pp3skre pps8leg pp1s2p pps3tem pp1stj pp5stra pp1stu pp1ti pp3tren pp1tu pp1ut pp3v^^e5 pp3^^f8s 1pr2 pra5b 8prag 3prak 8praka 6prake 6praktorb 2pran prangs4 pran1s prat8s 2pray pre2 2prede pre3des 2predn pre4fi pre8g p9reinsking. p7reinskinga p9reinskings. p5reise p5reist pre3kli 3prem pre5me 2pren pres2 2presj 4pressef 4presseu 4prestem 2prestm 4prests 5prests. 2pret pri2 2pring p3ringt 4prinsb 4prinsf 2prinsp 7prisings. pris1k pris1l pris1s pris1t 2prit 3privat pro2 8profer 2prog. 2proge 2progl prog7s p3roi 2pru p7rydding. p7ryddinge p7rydning. p7rykken p5rykki p5rykks. p5rykn p1ryt pr^^f8r4 pr^^f83s 4pr^^f8vea 2pr^^f8vek 6pr^^f8vere 5pr^^f8vet 2pr^^f8y 2pr^^e52 pr^^e5k1k 2ps. 8psa p1sam p1sc ps9d 2pse pse8d p3see p6s1el ps5elv ps5ely p4seriel p4series ps2fa ps3ho 2psi ps1kil p5skip. p9skipa p3skipe p7sko. p5skoe p7skrap p3skriv p3skru p3skry p1sky ps1le p9slo. p1s4l^^e5 ps6meglerf ps8meklarf ps6meklerf ps1n ps1o p4spin ps9ple ps3pro ps7pu ps5s2 pst2 p3stab p7stak ps7tal p5start. p5starte pstart4s p7starts. p7stas p3sted p9stein. p9steine p9steins. p1stig p1sto p4sto. p8str^^f8 p3styl p5st^^e5e p1sum p7sup ps2us ps1v 1psyko p1s^^f8k 2pt p3takt p1tal pt7ark pte8 p1teg p9tek. p9teki. p7teks p6tellings p7tellings. p9tenings. p5tenn p3tent pt3g pti8 p3tjene p9tjeninga p7tjenings. pt5n p5toa p2ton p3trav p1trek p6trenings p3tri p5tru p1try p1tr^^e5 pt5s pt7t ptus7t p5uka p3uke. p3uken pul2 pull8 1pum pumpe5r p1unde 8punktg 6punktm 8punktsv 8purd 2purt pur5u purve2 pus8s put8 3puten p5vak p3ved p1vei p6veiet p5vekst. p5veksten p9vekster p1ver p1vig p1vin p6vinnerc p3vise p7visnings. p7visningsl p7visningsp p3vist p1vo p1vu py8o pyr6r p7ys 1p^^e6 p^^f8r2r p1^^f8v 1p^^e5 2p^^e5. 7p^^e5a p^^e53an p^^e5d8 p^^e51dy p^^e54fa p^^e57fl p^^e58g p^^e52h p^^e51ka p^^e58kar p^^e51kl p^^e56kom p^^e51kr p^^e54mal p^^e51mo p5^^e5n p1^^e5pn p^^e5re4 p^^e5s4 p^^e58se p^^e55sli p^^e59so p^^e57sp p^^e52sy p^^e5t2 p^^e51te p^^e51tr p^^e51tv 5p^^e5vir que2 8ra. ra3ar 1rabat ra8bed ra3bela ra3bet 2rabi ra3dag 6radark ra6de 3radio. 7radioa 3radioe 8radioerf 6radiof radio5n 7radios. 5radiu r1adre rad3v 2rae ra4fei raffe3r ra1fra rag2m rags8e ra6he ra1hu 5raid 5rail. ra5int rak8h ra4ki 3rakki ra5kob ra3kop rak3re ra5kro raks4e rakt1r ral3ans ral1b ralde6 r3alge ral1k ral4kr ral3lag ral3led ral5lek ral1n ral3sp ra7lur ral1v ra3l^^e5 rama1l ram1ar rama1s ram3be ram1f ram7fo ram5ho ra1mil ram7kj ram3lei ram5meda ram1o ram3or ram1r ram9ster ram7sv ram7te ram4tr ram1ve r1anal r3andel rand9l rand3n rand7p r8ane 3ranet ran2g rang7sa rang3st rank6 8rankek ran5kj r1anl ran5la ran7lig r1anm rann5ett rann1s rann5t rans2 ranse5m ranse3r ran7sti 6rant ran3tri ra5n^^f8t rapi3r rapi7s ra2po ra5poe r5appl 1rappo ra3pu r1arb rare8 rar7el ra9renta ra5rente. ra5renten ra5renter ra1rep rar9he rar7ka rar5la r7arms. rar1s r1art rar7tim ra7sab ras3f 8rasistb ras5ma ra7son ra3spi ras7pr ras3st ra3stil ra1str ras5v ra3teno ra3tim ra3tog ra5tol rat9ro ra9tru rat7v ra7ty 1raud raude9 raus8 raust7la rav2fer ra7vil rav9k rav7lau rav3l^^f8 ra7vot rav1s rav7ski rb8 r3bak r6bale r1ban r6banes r2bar r3barb r3barn r7base r5batt r7bef r3bein r8beins r9beins. r3beit r1bek r1ben r5ben. r5bena rber3m r1bil r2bin r7bio r1bl r7bla r5ble r3bli r3bl^^e5 r1bok rbok8h r7bonde r2brit r4bukka r2bul r8bur r9byan r9byar r1bye r1byg r7byggings. rby5re r2bys r1b^^e6 r7b^^f8y r2b^^e5tf r7cross. r7crosse r3cup 4rd rda9fra rd5ak rdal6 rda3la rd7ald rdan9o rd1arb rd1arm rd1art r1dat rdata2 rda9ti rd1ba rd1bo rd8boksa rd1da rd1di rd5dr r1deb r3dekk r6deknings r7deknings. rde5lag rd7enh rdens3e rdens3l rden3ta rde5rik rd3erst rde7sp rde3sto rd7ett rd3fa rd4fei rd2f^^f8 rd1g rd1h rdhord5 rdi7d rdig7l rdig1s rdi3l r3dimen rdi7mi rd2in5f rdis2 rd5je rd2kap rd5led rd5mel rd7mi rd7mu r3dob rd5od r1dok rdom8 rd1op rdopp8 r7dosa r3dram rd3ras rd3rett r5drift. r9drifta r5drifte r7drifts. rd5rik. r5driver rd1rot r2dru rd3sam rd9set. rd5sette rd7settinge rd7skjed rds6kv rd3slu rds3mi rds7po rd5stad rds5tan rd5stem rds9tru rd1t rd8tv rd1und rd1v rd9vet rd9yt r5d^^f8g r2d^^f8l r1d^^f8r rd5^^f8sto rd3^^e5r 8re. 8rea. re3akti real5s 6reav re4banks re6barnsf re2bin re2bok3s re2byg re7bygd re5bygge. re5byggel re5bygger re5bygges 8red. 1redak re3def re3dele 4redero reder3s red8g 3redig re3dim re3dis re1don re1dre red3sku red8sla red7sled reds8tids 1redu red7va re7dy re1d^^f8 6ree ref2 re3fa re1fes 4reff re3fi 4refj re5formas 6reft 8reg. 1regel re3gene 1regi 1regj 2regjen 1regl re7gli re8gn 1regns 2re1gr 1regu re1gut re3hold re3hus. re7husa re3huse 2reid 2reie 2reig r3eige 5reinh 6reinsk rein6skj re7instru re3inv re6inva 6reirs 7reisning. 7reisninge 7reisnings. 6reistr re3kad re3kal re2kan re5kana rekk5v 3reklam re3klas re5kled re4konv 1rekor re5kra re3kref 1rekru 6reks rek7tas re1kva rel2 re3lab re1lag re9lak re5land. re5lands. 1relat re3lef re8lens rele8s r7elg re5lib re1lis rell4d relle5m relse4s r3elv re5l^^e5n re7l^^e5r r1emb re1me re7middele re3midl rem2m remmed3 re1mom re7mos rem1p rem3r rem^^e5ls5 8r8en. 6rena 6rend rende5l 2rene re5nek 3reness renest7 re5nev reng1l renn3h renn1l re3nor 4rens. 6rensknings 7rensknings. r7entit r1entr re3or re9part. re9parte 8repen re3pil re4pip re6planp re8pli 3repor re2pr 5represe 2rer re1rad re3ram re7rang re1rat rere6 re3red re3ref re1reg re3rent re3rese re1ret rer7ho re1rik rer3kj rer1l rer1m r1ern^^e6 re3ros rer1p rer1r rer1s rer1ti rer1v rer9^^f8y r2es 6res. re2sc res6e 3reserv re1set resi4 re1sif re5sik 5resiste re1skj re8skje. res3kod re8skrivi re1sku re1sla res2m res5man res3me re5smo re7spel. re9spela re9spele re5spille res2s 1ressu re5stak restats8 3restau re5steg. rest5erv 4restil re3stre re3stru re1sty 1resu 8resuk 2re1sun re1s^^f8 4ret. 2reta re9tal. re5tall. re5talle re5talls. re9tals. ret3art ret8h ret8i re5tj re5tol re9tom re1tra re1try 2rets ret5teat 4rettem 4rettsek rett6set 2rettsf 4rettsor 4rettsr^^e5 4rettst rett3ve re7tve re8t^^f8y rev3ark rev7enh re4vernf re4vernl reve3s 1revy 4revyi 2revyr 4revys 4revyt re4v^^e5p re6y4 re2^^e5rs 2rf r7fad r6fagl^^e6 rfag7sk r5fak r9fara r4fari r1fart r1fas r1fav r7fee r1fel r8fe7la r5fes r2fet r1fi r5fil r7fle r3fli r1flu r1fly r2flyse r3fl^^f8y rfor7bruka r5foren r1fr r6fra. rfram4 rfrem2 r5fro r3fry r9fr^^f8 r1fu r2fund r9fyl 8rg r1gal r7gap rg7arts. r5gassen r1gat r1gave rge7di rge7f rgen3tu r1geol rge3rik rge1st rge5sta rges5top rge1te rge5va rg1g rg1ha rg5hei rg7hu rgi5d rgi1l rgi1m rgi3nas rgi5net rgi1r rgi3sl rgi1te rgi3var rgi3ver r1gj rgjen6 rg3og rgon5d r1gr r5grad. r7grada r3grade r5grads. r5gran r7gravings. r3grei r7grem r3gren r7gro r5grunne r5grunns. rg7sal rg4sm rgs6till rgs8to rg6s7v rg5t r5gul r1g8ut rg7vek rg3ves r3g^^e5en rg4^^e5r rh8 r9hald. r5halda r7halde r7hall. r1ham rhand4 r7hau rhav2 r1have rhelse2 r5hert r1hes r3hin r3his rholds9v r7hor r1hov r1hu rh^^e5nd4 r9h^^e5nden. rh^^e5nds3 4ri. ri1ba ri1br ri3dale ri1dep r1idr ri3dri rids3 ri3du rie7kv ri7eld rient6r rie7rel 8riet ri3even 6ri^^e8 rifiser5b ri8fot ri5gat ri7gev 1rigg rigg1r 6rightt rig4m ri1gr ri1hu ri1in ri7j 1rikd 1rike. rik8i ri1kr riks5l riks3te riks3u rikt4 rikts3 ri3kur ri3lad ri7lansa ri7lau ril1da ri1led ri5lev ril4t ri1l^^f8 ri7mak ri3mask rime5la ri4mot. rim3se rin8am ri1nas r5inc rin5dale rine1s r2infa r2in8g ring1r 6rings ring9set. ring8spa ring6stad 6rinj rin5l rinn4b r1innf r3inn6k r1inst rins9te rinter4n rint5j rin3veg rio8 ri1of ri1op riot3r rio9v ri8pos ri1r ris9gj 5risiko. 5risikoe 5risikog 8risk 3risle 7risling. 9rislinga 7rislings. ris5om 9rista. ri5stad ri3sted rist3l ri3stra ris1u rite6 riti2 ri1til rit1s ritt3l ritt3st rit7un ri5tur ri5ur 1rival riv2d riv5ise ri6vo r3ivr ri^^f8r1a r5jag r1jak rje5l rje1m r1jent rje3s rje7ve r1jo r2jol rjord2 r7jul. r9jula r5jule r5juls. r5j^^f8 r7kaba r9kaf^^e9 r3kam r1kand r1kap r1karr r1kass rka9tr rk2ba rk7bi rke7f^^f8 rke3h rke3lu rke4midd rke3ram rke5ret rke3ris rkes3u rke2ty rk5ho r3kik r3kino r2kis rkje5lov r1kjo rk5jor r1kj^^f8 r8kj^^f8psf r3kj^^f8r rk1k2 r1klau rk1leg r1kli r1klo r3knek r3kno rko3ak rko2f rko1h rko3lan rko5li r5koll rk6op rko3pe r1korp r4kortb r8korto rko1sa rkose7le r1kr r3kra rk7ras rk5redd rk5rei r8kren rkrig6 rkring7kasta rk8ro rk8sam rks1i rk1sj rk7skol rk7skul rk4sky rks5l rk7sov rk3stas rks7tel rks5ten rks1ti rks3tol rk2str rk5str^^f8m. rk7sty rk3ta r6ku. r1kult rkum6 r1kur r4kursf rkus5m rkus3t r6kut r1kv r6kved r2kveg r2kver rk3^^f8l rk5^^f8y. r7k^^e5p rk3^^e5s r5lab r2lagsl r3lake r1lan rlands6ka r6landsp rlang6 r1lap r5larv r1las r2lati r1lau r7lav8 r1led r3leges r5legg. r3leggi r8leggjarar r3leia r5leie r1lek r1lepp rl5eri rles8 r1less r1let r3lever r5lev^^e9 rl2i r5liga. r3ligae rlig4d r3ligge r3ligni r5lind rling5s r1lis r1lit r1liv r7liv. r7live r1lok r9lovs. rl4sk rl3st r1lu r1lyk r1lys. rlys7k r1l^^e6 r1l^^f8 r4l^^f8d r7l^^f8f r4l^^f8nnso r1l^^e5 8rm rma5kl rma3mer rm1anl rm1arb r7marm r9maska r5maske r7maskin. r5maskine r5mass r8mast rm5av rm1b rm1d rmed2 r7medh rme3dr r7mekt r1meld r3melk r7melo r1meng rmer3l rme3se r7mester. r7mesters rm9f rm1g rm1h rm2hj r1mil rm3iv rm1je rm1l rm3len rm1m r3moen. r5moens r1mog r7monu rmor5s rmot2 rm1p rm1r rm1s rms8ko rm4sm rm3st^^f8 rm1ta rm1te rm1ti rmue4s r3mur r6muser r9muser. r6mut rm1v r5m^^f8d rm^^f8r8k rm^^e5l6 rm^^e5ls7 rm7^^e5ta rn1ak rn1art r7nasa r7nase rnat9r r3natu rna5tv rn1br rn1bu rn1by rn3dale rn1de r5neds rne1g rne5kre rne1l rne5m^^e5 rne3ran rne7ris rner5s rne1s rne3sk rne7stens. rn5etab rne3ten r7netts. rne5vr rn1f rn1g rn1h rn1j rn1k rn1l rn1n rnne6 rn5oks rn1oms r7non rn1op rn3ordn rn1ork rn1ov rnp^^e58 rn1r rn1sak rn1sam rn1se rn5sid rns1in rn1sj rn7ske rn3skol rn1skr rn7sku rns4leg rn7smi rn7spi rn3s2pr rn1st rns7tenes rn1t2 rn3ug r1num rnus1k rn7verka rn7verkn rn1vi rn5v^^e6 r1n^^f8l r5n^^f8t rn5^^f8v rn1^^e5r ro1ak ro8ban robe3s ro1bla 1roc 2rockb ro1da 7rodo ro5em ro3ent roff1l roff5ri ro4fl ro2fo ro7fot ro6fu ro2g rog1d rog1s2 roin7f ro1kar rok2k rokke3r rok5kl ro3kor rok7stav rok7v ro1leg rolf6 ro7lis ro9liv rol2l roll2d 8rollek 4ro2lo rol5se rol5t rom4an 2romb rome2 3rommet 6r7omn 6romo ro5mol 2romr 2roms rom7stor r7omsy rom2s4^^f8 rom3t ron9f roni8 ron3ko rons2 ron7su ron5tale. ron5talen ron5tes ro1nu ron3v ro7op ro2p ro5pip ropp8n ropp8r ropp4s ror1a ror1b ror1h ror1m ror3st ror1t 6rosef ro7sf^^e6 ro7sid rosje5ra rosje7ri ro8sk^^e5 r1oslo ro7spi ro3spo 8rossk ro5stein. ro7steins. rost7r^^f8 ro8st^^f8 ros9v 3rotas rot5ekte rote2s 4rotg rot7ord rot8sal rots2v 2rou ro5vak rove8 ro5vek rover6g rover8v ro7vev 7rovf rov7sm rov7so r5pakn r1pal r7pam r3pap r1par. r1para r1pare r1park r7partia. r1pas r1pat rpe5li r5pels. r7penn rpe7ret r1peri r1pers rpe6sk rpe4t r1pia r1pinn rp6j r6planarb r6pland r4planti r1po r2pola r8polo r2poo r2por r5pot r5pri rp1si rps7te rp3tr r7pub r1p^^f8 r2p^^e5 rp^^e56s r1rab rra1g r3raile r3rall r1rap r8rar rra3ro rr7br rr1d rr8e r1rea r7redn r1reg r7regn rre1h r1rei rre6lat rre3ma rre3mi r3renn r5rense r5rensi r1rep r6repl rre1ru rres4b rre7spe rre3spi r1ress rre9teg rre3tr r1rett r5retti r7retts. r4rettsb r4rettsk rre5u rre5vel rr1f rr1g rr3h rri4f r3riff r5rikes r5risi r7rislinge rr1k rr1l rr7la. rr1m rr5n r1rol r1rom r9roms. r9rosa r7rose r5rot. r7rote rr1s6 rr8ska rr6stoffi rr1t rr3un r9rus r1rut rr3v r9ryke r5rykk r1r^^f8 r1r^^e5 rr^^e5d3m rr9^^e5r 6rs rsa6 r8sald r7salg rsal7s rsaman8 r8sane rs3arv r1sat r7sate rs7bl r1sco rs7cu rs7d^^f8 r1sed rse2e rse8g rse8i r1sek r6sela rs7eld rse7li r5selska r6sel1t rs3elv r3semi r3seng r1sent rse6r r8ser. rser4b r3serie rs5erik r3serti r1ses r8ses. r7seso rs8ett r5sette. r9settelse. r9settelsen r9settelser r9settelses. r7setteren r7setters r5settes r7setting. r9settings. rse8va r2s3f rs2hu r1sid r7sig r3sikk r1sim rs1in rs8ing rsinn8 r3sitt r3sjans r3sjel rsj3or r7sjuk r6ska. rs7kaf r6ske rski2 r7ski. r1skif r7skip rskips4 rs3kir r5skjerm rsk1l^^e6 r1skod r7skola r5skole. r5skolen r6skoleo r5skoler r7skoles. r6skolest r4skoll rs3kom rs3kon rs3korp rskot4 rskots3 r7skottsvi r3skrib r6skrifts r6skrivings r9skrivings. rs3kro r5skudds^^e5 r1skue8 r7skula r7skule. r6skulee r9skulen r6skules rsk3und rsk3var r1skyt rsk7^^f8 r6slei r3slip r7slit rs4lovu rs5lun r1sl^^e5 rs2m rs3ma rs4make rs3me rs3mi r6s3mo rs3mu rs5m^^f8tep rs1no r8sn^^f8 r5sod r1sol rs1or rs5ord r3sort r7spel rs1pen rs1per r1spi rs3pot r1spu rs1s2 r1stab r3stadi r5stat. r3state r9statu r3stav rste2bo r4steds r5steg. rste2gr r9steig rste7ma rster2 rste5ra rste3re rst2i r5stif r5stilli rs3tit r1stj rs3tjen r1sto rstor8 r1str rs9tre. rs3trin r1stu r3stud r5styk rst8^^f8 r7sul rs8vak rsvar8 rsvars3 rs8verkst r5sy. r1syk r5synl r8synsa r7sys rsyssel8 rs2yt r9s^^e5. rs6^^e5k r1s2^^e5t rt5ad rta6g r9tagelsene r7tagelses. r5tagen r1tak. r7taka r7taken r3taket r7takinge r9takings. r7taks. r3takst r5talent rtall2 rtanke8 r5tann8 rt1art r3tatt. rtav6 rt1br rt5d^^f8 r1tea rte1e r8tegnings. rte1gr r1teks rte3lin rte3lis rt5elit rtel8l r3telt r1temp r7tena r1tenk r3tenn rtens5k rtent8 rten1^^e5 rter5ess rte5ris rte7ros rte6ta rte3ter rt1g r4th rt6has rt2hi rt3ho rti3ans r1tide rti9del r3tids. r5tidsra rtig3d rti5gj rtil8 rti1la r7tilh rti7lin rti3lis r1tilt rti1ma rtis4 rti3sek rt8iso rti3sp rti3str rti7tr rti1v rti8^^e5rsa rt1la rt9legg. rt5legge rt7leggj rt5lei rt1li rt5lig rt1off rt5om. rt7oper rt1ord r3tors rto3ta rt1ov r1tra r3traf r9trea r2tred rt3rei r5trekn r7trib rt3ris r2truf rt1rut rt1sal rt3see rt5sei rt1sel rt3sert rtshus5h rts8husha rt1sik rts5ja rt7ske rts6no rts1pa rt1spe rt1spi rt1sta rt1ste rt1sto rt1str rts5t^^f8y rts5unde rt1ta rt1te rt7til rt5tj rt1tr rt1tu rt8ug rt3und r1tup rtur2b r3turn rt1ut rt1v r8tyf r7typ rt5^^f8l 8rua ruar1 ru3bo 2rud rud6k rue1s ru7fl r7ugl ru7gr 6ruh ru7ha ru5is. ru3j ruks1l rul8 1rull r3ulv rum3al ru7m^^f8 5runde. 3runden runder8 6rundings 7rundings. rund1s 6runi run5kr runn5d runn9g runn3se runn7sla runn7spe runn7stan runn1t rus3b r7usik 7rusing. 7rusings. rus7j rus2m 5russ. rus4st 9rustings. 7rustnings. ru5sto 4rutese rut9g^^e5e 1ruti ru5til r1utk ruve7l ruv7is r1valg r5valp r3vals r5vannf rvann6h rvann8s r3vars r3vase r3vask rva5sta r6vatns rve7b r1vedl rve3dr r1vege rve1gl rve7gr r3veis. r8veise rve7kl r1veld rve3leg rvel9p rve3m rv3eng rve3nya rve3ret r1verk r3verne r6vernes rve9sta rvest7la r7vestlands rv1ha r1vika r6ving r1vinn r1vir rv2j r2vogns rvo5v rv6r r1vu rv3ung r7v^^e5kt r1v^^e5p r5v^^e5r ry7dal 7ryddings. 5rydninge 7rydnings. 6rygd ryll5is ry1me ryne1s 4ryr r1yrk ryrkes4 ry9ro ry7r^^f8 rys2 ry3tid 1rytm r3ytr r^^f88a 8r^^f8b 3r^^f8dm r^^f8d5rev r^^f8d1s r^^f8d7sa r^^f8g5s r^^f8k7la 4r^^f8kn r1^^f8kni r^^f8k1s 4r^^f8kterl 8r^^f8kteru r^^f8k1v 2r^^f8m r^^f8m1a r^^f8mme3d r^^f8m3r 2r^^f8n r^^f8nn7d r^^f8nn3s4k r^^f8ns4 r^^f8n7skj r^^f8n5sko r^^f8n5st r^^f8r5se r^^f8r7ti r^^f85san r^^f85sla 8r^^f8var^^f8 5r^^f8veri 5r^^f8vern r1^^f8y. 8r^^f8yh 7r^^f8yk r^^f8ykje5 r^^f8y6m 9r^^f8yr. 9r^^f8yra 9r^^f8yre 9r^^f8yrs. r^^f8y8sa r^^f8ys3k r^^e51b 3r^^e5dgi 5r^^e5dgjev 1r^^e5ds. 6r^^e5dsa 2r^^e5dsd 4r^^e5dse 8r^^e5dsf^^f8 8r^^e5dst 2r^^e5dsv r^^e54dyr r^^e55fe r^^e59g r^^e53kal r^^e51kj r^^e5k1n r^^e57koste r^^e5k1re r^^e5k1v 2r^^e5l r^^e5le1v r^^e5l3f r^^e51ly r^^e55mel 2r^^e5p 2r^^e5r 2r^^e5se r^^e57sel r^^e55si r^^e55skj r^^e51sn r^^e55sten. r^^e57stens. r^^e53tak r^^e55tj r^^e55tr r^^e55tu r^^e51ve r^^e55vi 8sa. s6aa sa3bok sa3by 2sac 2sad sa3dam sa5fis 3saft. saga3s 6sagm sag4mo 6sagnsb s1agr sag3s2 sa2h 2sai 4sakad sake4 8sakek sak7kr s8aks. s2aksa 6saksak sak7sal 6saksforei 8saksforkjempa sak9sid 2saksj 2sakskv saks7l sak4sp 6saksv 4s1akt2 s4ak5to s8al. 3salam sa3lap s1ald 2sal2f 8salgsd sal6h s8ali 6sall s1allo 2saln sa5lop sal2s1 8salsd sals5m 2salsp s5altr 1salv 6salverl sa1ly sa2m 8sam. 1s2am2a sam8b 5samban sam2d 6samef 7samei same5l 8sames 1sam2f 3samfu sam2k sam2l 5samled 1samm sam7male sam8na sam5pe sam7sa sam1se sam8spela sam8spele sam1st 2samt. 5samta sam8u sam6v 8san. s1ana s4and. sand6bu. 6sande. s3andel s7andl 6sandsf sand3s4t 2sane. 1sang. 2s1angr sangs2 san5j s9anke. s7anken 5sanki 2s1anl s1anm sann7sp 2sano s3anor san5os sans6 5sans. s1ansa s7ansi s3ansk s3ansl 2sansv 2sant santi6 s3anty s1anv 2s1a2p sa9pu 4sar s1arb s3arbe s1ark sar7la s1arm sarn6 sar7pe s1arr sar3ri sar5s s1art sar7tal sar7tid s5arv. 8sas s1asp s5ass 6sat. sa3tek 4satf 8s3atl sa7tre s7atsk 4satso s5attr s7aud 1saue s7aug sauge2 saugne2 1saus s1aut 2s1av2 s2ava 8s1b sbad8 s3bank. s3banke sbe6 s5bel sbi4 sbil8 s9bilda s5bilde. s4bj^^f8rns sbok8h sbort2 sbrotts8 s4byf s5bygd sb^^f87nes s2b^^e5nds 1sce2 2scel 6scer 1schn s7com scome6 3scre scup1f 2s1d sdag2 s6dah s2dal s9dala s3dale s5dam s3dat sdata4 sde2 s3dels. s3dok s3dre s3dri s9drifts. s5dr^^e5 s3du s7dyra. s3dyre 2se. se1a se2ate se2bal se9bens. se7b^^f8 s7ed. se1da sedag2 1sedd se1deb se3def se1dem se5dis 1sedl se1do se1dr se1du se1d^^f8 se2ei seer3s seer1t seer3v 2sef se1fe s1eff s1eft sefter2 se1fu seg2 se1ga 2sege8 se7gem s3egens 2segg seg7gj se1gi se1gj 5segm se1gr se1gu se5h 4seid s3eidet s3eie. seier2s s7eiet 2s1eig 1seil 4seilerf 6seilings 7seilings. 2sein se1ind s1eini se5inn se1ins se3int sek2 1sekk 2sekkt 8se1kl 4seko se5kor se1kra se7kref 5seks. seks2b 2seksp 1sekto sekt1s se2kut se3k^^e5 s2el 2sel. 2sela se1lab se3lad se1lag se3land sel3art s1elas sel7at 2selb sel1dr sele6f se7lega 2selem se3les s3elev 1selg 4selgerf 4selgerl 4selgerr sel7gj 4seli se1lis s3elit 1selj 6seljarf 6seljarl 6seljarr 2selk 2sell sel5las 2selm 2se1lo sel3p sel9set. sel9setje sel3sig s5elske sel9slag sel5spa sels3po 8sels^^f8 sel7tv sel7ur 2selv sel4v3ak sel5var sel2ve selv3ei se4lyt se1l^^f8 sem8 se1ma 2semb 6semd se7med se1mid 9semj s1emn se1mo se1m^^e5 6sen. 5sendara 7sendare sende3m 5sender. 5sendere 5senderne 7senders. 6sendings 7sendings. 2sendr sen3dre 3sendt 2sene s3energ se3nerv se7nese 2s1enh sen8ka s3enkj sen3l 3senne6 2sens. 7sensas sens5end sen3som sen5sta s2ent 6sent. sen3tal 4senterg 4senterl 4senterp 4sentert s5entrep 4sentu sen1v se3ny sen9^^e5r. sen9^^e5ra seo2 se3or se3part se5pe6 se7pil se7pip se1por se5pot se1pu 2ser. se1rak se1ram se1rap ser1d ser4e2 se1red se1ref se1reg se1rek se1rel 3serem se3rent se5reso se3rest se1ret 2s1erf 7seriane 5seriar 3serie. 5serieak 7series. se3rik 2serk ser3m 2sern ser7nev ser6pe ser1r 2sers 3sersja ser5ska ser7sku 8sert. ser5tal 8serte ser7teg 5sertif sert1s ser3un 3servic se5ry se1r^^f8 ses3aks se8sals ses7alt se1se 4se1si ses3kal ses3kan ses5kar se1sky ses6leg se7sna se4songe se1spi ses5pot sess3in 8se1st 6sesu se3s^^f8 8set. se3tak se1tal 2setat s2ete se1teg se1teo se3test 3setet 2seth 2se1ti se5tid s1etik s1etis se1tje 3setl se1to se1tr 4set4s setter4 s7etterm 4s5etters 6settingsr 8settk sett1s se1tv se7t^^f8 se3ut 2sev6 se1va se1ve se6verna se1vi s1evn se1vo se1vr se1v^^e6 s1f2 s5fab s4faller s9falls. s3fart. s3farte s3fas sfast4 sfattig5 s7fibr 2s3fj 8sfl s3fla s2fli sfly6 6sfo sfor5kv sform8 sforn^^e6r8 sfor8s 4s3fr sfram8 sfrem6 sfr^^e58 s2fus sf^^f8re8 2s1g sge2 s7givar. s9givarane s9givarar s9givare s5giver. s5givere s5givern s5givers. sgjen4 s5gjevar. s9gjevarane s9gjevarar s7gjevare s3gl sgrav8 s1h 4sha s7hai s5haldar shalds5 s9halds. shalv6 shand4 s9hap s7hat s3hau s5havs. 2she s3hes 2shi s3hj shjelpe6 s4hjelps s2ho sholde2 s3hop s3horn 3short 1show 6showv sh5s sh1t 8shu s3hy s3h^^e5 sh^^e5nd8 8si. 2sia sia5g sia3mi si2d 1sida. 2sidea side5l 4sident 4side7p 4sidesl 2s3idr s5idy si5eg sie2m sie2s sie4v 3sigar 1siger siger4s s3iglo 3signal 1sigr si2k6 sikk8artet sikk3el 2siko siko3d siko1p siko3s siko1v sikt8l sikts1 1s2ild 6sildfo si1leg 7siling. 7silinge 7silings. si5liv sil7ti 8sima s7imel si1met 5siml 8simo 1simul si8n sinal3 sin5fa sin7fl sing2f sin5gj 7singu s2ink s1inn2 1sinn. sinn8l s7inns sinn5str^^f8 2sins sin3sel sin3ska sinsk5e sin3sl s1int 7sinte. sin5tra sin7tre sin5vis sio5p si3ov 2sip 3sirk 4sirkels 8sirkulasjons 9sirkulasjons. 8sirkulerings 9sirkulerings. 2sis sis3ma sis1p sis5tal sis3til sis3tj si3tid 7sitje sit3s6 1situ siv1s s5jag sja8k 8sjane 7sjang 8sjar. sjar8l 6sje. 1sjef sje2far sjef3f sjef1i 4sjefl 4sjefm 2sjeg 7sjekkings. 4sjen s7jent 6sjer sje7rik sjern8 sjer1s sjer5v sje1s 8sjev sje1ve 1sjikt sj1k 2sjon 2sjor 8sjou 6sjov 2sjub sju5d sju7g 1sjuk s2j^^f8 sj^^f81d 1sj^^f8e 1sj^^f8i sj^^f83k sj^^f83la sj^^f87le 8sj^^f83n sj^^f81p sj^^f83ret sj^^f85sn 8sj^^f81t 6sj^^f8v sj^^f89ver 1sj^^e5 8sk. ska2 s3kabi 1skad 5skadd s5kaf^^e9 1skaft s8kag 1s2kal8a 2skalab 6skalat s5kalv 2skam 8skane s7kann 6skaperm 7skapin s1kapp 2skaps s6kard s1karr s1kart 5skarv 8s1kas s1kata s1kate s2katt 8skatterm s2kau 1skavl 2s2ke 6ske. sk1eid ske7ler sk3elev ske5lin ske3lu sken1g 5skept ske8rad ske1s2 ske2t3j ske3tr ske5tu 6skh sk3ha sk7hets sk2i 1ski. 7skia sk5ide 7skie 4skij 1skik 4skikkp 2skikku 4skillep 4skilles ski3me 3skimr s6kin skin1d skin3f 2sking 1skinn 6skinnsf 8skinnsg 8skinnsn 4skinnsp 6skinnss 6skinns^^f8 skin1v 8skio 1skip 6skipm 3skips. 4skipsfl 2skir 3skire skirke4g 7skiss 1skiv 9skjea 3skje4b 3skjee 2skjef 5skjelv. 7skjelva 5skjelve 3skjema 4skjemas s3kjemp 6skjens 5skjerm. 9skjerman 9skjermar 5skjerme 6skjert 1skjor 3skju 6skj^^e6rerk s1kj^^f8p s3kj^^f8ri 1skj^^f8t sk1k2 2s1kl sk5lak s8klei sk3lek s2klen sk9line sk3lit sk7luft. sk9lufta. sk7lufte sk2my s1knu 3skodd s5kodek 2skof 1skog 8skogb 8skogg skog1l skog5n 8skogr 8skogsf 2skogu 4skogv 4skoka 8skoleni s3koll 2skom s5komb 2skon s5koo sk3ord2 7skorpa 5skorpe 6skorpeb 2s1kos s2kot skotts5 s1kra2 s8kraftan s8kraftf s4kraftp s4krafts 3skral 8skrapars 8skraperl 6skrapers 8skrav 5skrede 4skredf s3kredi 2s1kref 9skrekk. 9skrekking. 7skrekkings. s3krem. s7krema sk6ri 5skride. 5skrider 5skrides 6skriftb 8skriftk 8skriftr 8skriftt 2skrig6 s8krinst 4skrip 9skritt. 9skritta 7skritte 7skritts. 7skrivar. 7skrivara 9skrivaren 9skruk skru7s skr^^e53s 2sk1s2 sk1t2 1skuf 8skuleo 3s4kulp 4s3kult skum5s 2skun 8s1kup s1kurs 2skutes 4skutet sku8v 4skvel 2s1kvi sky1b 7skylt 4skyr sky3re s3kyrk 1skyts 9skyttaran 9skyttarar. 9skyttaren 8skytterel 5skytterf s3k^^f8yr 1sk^^f8yt 1sk^^e5 3sk^^e5n 8sk^^e5ps 9sk^^e5ps. 4sk^^e5t sl4 sla8 8sla. s6lagsd s8lagsm s1lagt 1slakt 6slal^^e5mc 4slal^^e5mg 4slal^^e5mk 4slal^^e5mo 4slal^^e5ms 8slamt 6sland slands4k slands8m^^f8 8slar 6slast 2s1lau 8sle. s1led s7ledd s7lederb s5legek s7legene s9leger s1leia s3leie. s5leien. s5leiene. s9leienes s7leiens s5leier. s9leiga s7leige. s1leii s7lekk sle7ner 3sleng. 5slenge s2lep sles2 s1lese sle7st s2let s3leti sle5tu s1lev sle5var s6li. s8lia s1lib 8slig s5liga. s1lign slike6 s3likh s7likn s7liks slin8 s9lina s7line 5slips s1lis 5slit. 1slite s1live s7livsmes s6lo. slo1b slo1d slo1f slo1l slo1m slo1p slo1r 1slot slott4 7slottet s7lovs s7lua s1lue s3luf 4s1lug sluk5s s2lung 1slup s1ly 8slyd s2lyn 2slys s8lyss s3l^^e6 s1l^^f8 sl^^f8nns4v 2sl^^f8s. 3sl^^f8yf s1l^^e5n s2l^^e5nsr s6l^^e5r s4l^^e5tt s1m2 9smak. 3s2maken 2sman s5manns. s4mannsa s4mannsf s4mannsp s3marg 4s3mas 4smat smat3v sme2 8smedf 4s4medk s3meka s4mekt 1smell 3smelt 2smen s3merk 1smert 2smes sme7v s7middelet. s9middelets s3midl s6mil. s6mile s7ministers. s7ministr 3s4mink smislig6 smitt8 s3mj s6mo. s3mor. s3more smor1s s2mos. s3mot6 1s4mug 3smuld s6mule s2m^^f8r 1sm^^f8r. 1sm^^f8re sm^^f8r1s s7m^^f8ta s3m^^f8te. s2m^^f8tep s4m^^f8tes s3m^^f8tet sm^^e51d 8sm^^e5e sm^^e57ki sm^^e55lan sm^^e5le2 sm^^e59le. sm^^e5l7l sm^^e5ls3t sm^^e51r sm^^e5s2 sm^^e53ti sn2 3s6nab s2nak 7snap snar7v s1nas 4s1nat s1nav s6navns 6sne. s1ned sned8k 3snei sne4k s1nem 5sne8p sner2r s1nerv 2snes sne3sl snes7v 6s1net snett8v s1nev s2nevr snik3ko 3snil 5snipp. 3snippe s1niss s5niv s3nord2 s1nu 9snu. 3snud snu7pe s1ny s1n^^e6 sn^^e6r8 sn^^f8d2 sn^^f83dr sn^^f83l 1sn^^f8r sn^^f81s sn^^f87ve s7n^^e5 s1ob 4sod s3odo so2f sofa1s s1off s5offer. s9offers so5for so7ha so9he 5sokke s3oks sok5t sol5av 3s2old sol5dr sol2hei 4s7olj solje2 sol5ly sol5m solo1d solo1k solo3r sol1s 8solvenss sol7v^^e6 som2 8som. som7end s1omfa s7omg s1omk s1oml 7sommard 9sommars 5sommer. 5sommeren 7somren 5somrer s1oms s2omst 8somt 2son. 3sonat 4soneb son1f 6songf song1s2 2sonl son3ok 2son1s sons6k son1tr son7va s1o2p 3sopp. sopp8b 1soppe sopp6h sopp6n sopp8r so9pre sor3bu 2s1ord sord2b sor7del s8ordm sor7f s1orie sor1m sor5n sor7o sor1s sor9tid s2os 6s5osc 8sose 3sosial sos1p sot7s sot4t sotte4 s1ov sover2 8soverd sover5ko sover8l sover8sk sove3s sp4 spa2 s1pak 7spak. 7spaka 3spake 1spalt span2 s2pann s1pap 8spararf 4sparerf 5spares 7sparings. 6sparkm s1pas 2spe2a s2pei s2pek s2pel 6spelf 6spelse 6spelv s1peng 1s2penn 7spenning. 9spenninga 7spenninge 7spennings. 4spentl sper2 5sperre 1spesi 1spett 6spetteu s2pi 8spil. 6spillef 5spilleri 8spillerinns 7spillers. 8spilleru 6spillf 6spillingsu 2spillk 2spillm 5spillp 6spillt 4spillv 8spilth spinn7s 4s3pip spis3k 3spiss. 4spissf 8spissk s1pl 2spla 4sple 1splin s1poe s4pok 1spor. 4sporp 2sportf 2sportu 6sporu 2spos 9sprag 3spredn s2prei 3spreii s2prek 3sprekk 3s6pren 2spres 3spret s4prist s4prisv 4sprof 3sprog. 3sproge 7sprogli 1sprut 3spry 1spr^^e5 4spr^^e5kb 4spr^^e5kl^^e6 s1ps s1pub s1pul spuls2 2spun s8punkti 1spurv s1pus s1pyr 1s2p^^f8 7sp^^f8k sp5^^f8y 5s6p^^e5d 2s1r6 sre2 s7reg sregn8 s6rettsk s9ri s3rot. s5rota. srot5o s3rut s3r^^e5det sr^^e5d4m s3r^^e5ds. s2r^^e5dsm 8ss s7saf ssak8k s5salgs. s9sals. s1sam2 ss7amp s3sann ss8ar7m ss8bruks ss9bruks. s1sc ss2d ss3de ss3di ss7dro ss5dy ss3d^^f8 sse7ba sse3del ss4el ssel7st sse5lu ss5enden sse7rat sse1ro sses8 s4ses. sse3se sse1sl sse8son sse3sp sse7str s3setn ss8fj ss9fo ss6f^^f8rings ss9hel ss7hol ss4h^^f8g ssi6 ss1ind ss1inj ss1ins s1sit s1sj ssje2 ssjuk8 ssjuke6m s7skada s5skade. ss1kar ss1kof s9skog. s7skoge ss7kok ss6kraftr ss3kre s7skrifts sskue2 ss5k^^e5l s7sk^^e5p ss6lan ss1las ss1lo s3smit ss2m^^e5 s3sn^^f8 sso5ka ss5omb ss8ordr s1sp ss6pil ss6por ssr^^f8r7l ss7so s1st s4stelli ss3tras ss3tren ss4tr^^e5 ss3tus sst2v s4styref s1sy ssyk4 ssyke2m s5syn. s9syna s3syne s5syns. s5synsme ssyssel8 6st. 6sta. sta8ba 3stabi 7stabs. st2ad stad3a 6stadd 6stadh 3stadio 6stadm 6stadn 4stadsl 6stadsp 6stadv 3stafe sta5fl s5tager. s5tagere s5tagern s5tagers. 2stagp s7takara s9takare s5takere s5takern s5takers. s3takst 4stakt 8stal. 8s7tala 8stalb 8s1tale stal8l stals8m 1stamm 6stamningsl 6standsd 4standsi 8stane s2tang stan9o st3antr 8stap. 8s5tapa 8stape 3stapp sta9p^^e5 sta3ret 2starr 7starting. 9startinga 7startinge 7startings. 4startr s2tas stas7k 6stast s8tat 6statb sta7tin st3atla 2statn 5stats. sta6ve 5stavn. 7stavne 7stavns. sta5v^^e6 st1b st1d stdata8 8s8te. ste7dal. ste7dals. 4stede. ste2dig ste1dr 4stedsb 4stedsl s4tee st8eft ste7gi s1tegn ste1gr 9stegs. 5steik. 5steika 5steinb stein3d 4steinn 6steinsa 1stek. 3steken 5steki 2s5tekn s3tekst ste3lev ste3lis 4stellk 5stells 2stell^^e6 s5temae s2temm sten1a sten4be 2stend 3stenen 3stener 2stenes 1s8teng 6stengingst 8stengningstid. 8stengningstide s5tenken s3tenkn sten7r 6stensa stens5l 6stenst sten1^^e5 2steo 4step 2ster. ste7rid ste7rik. ste7riv 7sterk. 7sterkt 8sterm 2stero ster1p ster5so ste3run ster7val ster5ve 2stes ste8ses ste3sle ste3sta 8stet s3tett ste7t^^f8 2stf st3fe stf^^f8re5s 2st1g st5ga st2gir st4g^^e5r 6sth st9hald. st9halde st5hen 8stib 8s1tid s9tida s6tidd sti7del s3tiden s9tids. s4tidsg s2tie 1stift st9igj 8stigningss 4stikks 8stiko 1stil. sti4la 2stilb s1tild 8stilf stil7kj 4stilleg 9stillingsmes 2stils 5stils. 4stilta stil5trek 3stiml 1stimu sting8l sti9ni s2tinn8 1stip 3stir 2sti2s stis5s 2stit sti7tr s3titte sti4v sti8^^e5rsa 2stjen st7jent 1stjer 6stjerneo st5jev 8stju 8stk st5kant. st5kante st9ko st2kre 2stl st5lande st5lands. st6leders st3legg st3ligg st5lys st1l^^e5 st6l^^e5n st9me 4stn2 st1nev st1no st5ny s2to. 4stoffd 4stoffr 8stoffy 2s1tog s3toks stol3sk stom4 st1ope 7stoppara 9stoppare 6stopparn 5stoppere 5stoppern stopp6l sto8r stor8bi stor3mo stor1o stor1s st5os st5ou 3stova 3stove. 5stoven stover4 s5tradis s7trafi 5strand. 5strands. 4strans 8stras s6trau 3straum 8strauml s2tred st3reis 5strek. stre2ka 3streke st3rekl 2streni st5rente. stre3pa 8strer stri3f s6trim 2strin s3trinn stri1s s2trof s3troi 3strok st7rop. st7ropa st7rope 8strua 2strue 5struktu 2s1try6 8stryg 6str^^e6 1s2tr^^f8 9str^^f8ms. 2str^^f8r 2str^^f8s 6str^^f8t 2s3tr^^f8y st5r^^e5tt 2st1s2 stse2 st2set st9set. st2spi st1t6 s8tua 1s2tub 1stud 1s2tue 6stuem 6stueo 1stum 5stund s1tung6 2s1tur6 s6turbinan 4stust 4stut 8st1v st2ved s7tydes 2styg 1s2tyk 7style. 7stylen 2s1tyn 2s9typ 4styreg 3styren 5styreorg styrs1 2styv 1st^^f8 2st^^f8i 4s1t^^f8rk 6st^^f8tnings 9st^^f8tta 4st^^f8ttea 6st^^f8tteb 6st^^f8tteg 8st^^f8tteh 8st^^f8ttek 5st^^f8tten 6st^^f8tteti 6st^^f8tteu st8^^f8y 2st^^f8yet 2st^^f8yk 4st^^f8y1s s4t^^e5e 3st^^e5l 8st^^e5li su6 sual5e 1sub 6suba sub3o 5suff 1sug 1suk 8s9uka 2s1uke s5ukl sul2 1sulf s1ulik sult5r s1ulu sum5b sum4me sum5mel 6summerings 7summerings. sum3n sum1pl sum7s 1sund. 3sundet 4sundf sund5hei sund7l sund7r 1sunds 8sundsd 6sundsf s1ung 7sunnda sun3s 1sup s1urei sur2f 5surie 5suriu sur2p sur2s surs5k sur8^^f8 s3usi sus1l sus9n sus5ti 2s1ut suto7 s3uts 5s8vak. 1s8vake 7svakh s1val s4vall 7svam svan8 svann5st s3vant s7vanv s3varia svar2s s2vart svar5ta svart7s s1vas s1vat6 s1ve2 s9ve. s5veg. s3vege s6veif s4veii s2vein 1s2veis s4veiu svel8 3s2vens sver2 sverds4 sverd5sl s2verg s6verj sverk7sa 1sverm s8vernl 8sverv s2vev 8svikark 4svikav 2svikd 4svikl 4sviko 2sviks 3svikt. 5svikte s1vil svill4f s2vinde s2ving sving3s2 s1vink s1vir svirke6 2s1vis s3vitn s1vo s2vor s1vr s1vu 1svul 1s2v^^f8 2sv^^f8ps 9sv^^f8ps. 2s1v^^e5 1sydd syd2h 2sy2f sy2k 1sykd sykke2 6sykkelb 6sykkelf^^f8 4sykkelg 6sykkelkj 4sykkelp sykkel5s 4sykkelu syko7g 1sym s2yn2 1syndi 6synds3 syns1k syn5ten 5syra. 1syre 4syreb s1yrk 1sys sy5sa 4systemd sy9sto sy7stu 2s1yt sy6v 8sz s^^e6r3do s^^e6r2ku s^^e6r1m s^^e6rs8 s^^e6ter3 s1^^f8de s^^f85fl 4s^^f8kerb 4s^^f8kerm 6s^^f8kerse 4s^^f8kert 5s^^f8kja 9s^^f8kjar. 9s^^f8kjara 9s^^f8kjare 1s^^f8kk 1s^^f8kna s^^f8ks1 3s^^f8ksm^^e5 1s2^^f88l 7s^^f8lv. s^^f8lv5a 4s^^f8lvd 2s^^f8lvf 8s^^f8lvinnha 6s^^f8lvk 8s^^f8lvp 8s^^f8lvutsle s2^^f88m 1s^^f8n s^^f8nnan7 s^^f8nna5v 4s1^^f8ns s^^f8r5end s^^f8r9ett s^^f8r3f 6s^^f8rgerk s^^f8r2gj s^^f8r2l s^^f8r1s 1s2^^f8s 8s^^f8s. 1s^^f8t s1^^f8v 4s3^^f8y. s9^^f8ya 8s7^^f8ye 1s^^f8yl 8s^^f8yn 8s^^f8y7s s7^^f8ys. s1^^e5 7s^^e5d s^^e56g 6s^^e5k 1s^^e5l 9s^^e5pa s^^e5r9le 4s^^e5ro 2s^^e5rp s^^e5rs6v s^^e5r7^^f8 s^^e5s5t s^^e58v ta1a ta3ban 1tabb ta7bit 2tabler 7tablett. 7tabletta 5tablette ta5bok ta1br tabs3 ta8byg 2tad tad5d ta7deb tad3et ta1dis tad5la t5admi tad7ren tad7ret tad7se tad3spa tad1ve ta1el ta1fi t1aft 8tagerek tag8m 6ta1gr ta5gu ta1h ta8he ta1kat 6takerek tak5k6l tak3kon takk2s ta5kol tak2s 9taksering. 9takseringa 7takseringe 9takserings. t1aksj tak2t t3aktig t1akt^^f8 ta1ku 6talarb 2talb tal1d t3alder tale3g tal3eie ta8len tale1s talj5es 6talk tal5ka talle8 tal6lin tall3m tall8sa 6tallsb 6tallsn 4tallss 4tallsv tal6ly tal1m tal1op 6talsb tal1tr tal1v 2tam ta1ma tam3ban t1ambi tam3bo t4ame ta7mel ta5met tam1f tamin3s 5tamp tam1s t1anal tan9by 2tand t5andak tand2b tand9t tan7d^^f8rs. 8tane t5anel ta1net 2tanf tan5fr tan7f^^f8 t1angr tang9ra tang3s 1tank tankel4 5tankv^^e5 t1anle t1anm 1tann 7tann. 6tann7b 7tanne tann2ga tann1s tan7re 8tans tans7ka t3ansl tan7ste tan9til ta5om 1tap. 1tape 1taps 2tar. t6ara tar1ak ta3ram 6t1arb tarbeids5 tar7eli tar3ga tar5ge tar3h 1tarif t7ark. t5arke t1arki tar5ko tar1l 3tarm. tar3mak tar5mat 3tarmb 7tarms. 4tarmsk ta7rod ta1rom tar1s6 2tart t3artik tart3r tart3s tarve8 ta7r^^f8 ta1sa ta1sek tasi1f tasi5s ta1skr ta1sn ta1sp tas5st ta7sto ta1svi 2tat ta9tap ta7tes ta9til ta1tj tat3re tat7ri tats1 tatt2ho t3attr tat5tru tat5v 1tau. 1tauet t5aug tauge8 taugne8 taus5k t9austen. tau3v 1tavl tav8le t5avlin ta9vo 5tax ta9xy 2tb t9bad t3bak t3bana t5band. t7banda t5bande t7bands. t3bane. t3banen t5baner. t4banes t2bar t3barb t3bat t1be t1bi t7binds. t3bj t1bl t1bo tbok8h t1bu t7bya t5bye t1b^^e6 t1b^^f8 t4b^^f8lger t2b^^e5tei t2b^^e5tf t1ce 2td t5dag4 t7date t1de t3deb t7di tdis5ko t1do t1dr t6drifts t1du t1dyr t8dyrt td^^f8ds4 2te. tea2 te3ag te1ak te9al 8tean 8tear 1teat 6teatersj 4teatert te7av 2teb te5bl te2b^^f8r te1co 2ted te1da ted3ar te1deb te7de8f tede4g te3dele te1dem te3deri te1di ted3le te1do te3dre te7dri ted7sans ted5v te1dy te1d^^f8 te1ep te1et te1f te7fat te5fer te7fin tefly5p te9f^^f4 t1eft tefter2 te2f^^f8 te3gal te1gar te5gav tegen8 te1gev te1gj te1gla te9gli 7tegnings 8tegns te1gu te1h tei2 t1eie t8eie. t1eiga te7igr 1teikn tein1g tein1k te3inte te3kj 1tekke te1kl 1tekn 6teknikero 6teknologin te3kr t1ekse tek5sen tek3sk 8tekstb tekt9r te5k^^e5 2tel. te1la tel8ak tel5ar 4teld tel7da 2telen tel9gj 2teli te1liv tel2l te1lo 2tels telse2 telses3 t1elsk tel5so tel5st tel7sv tel7tid te1lu te1l^^f8 te1l^^e5 8tem. 9temaa te1man tem5dr te2ment te5merk te1mi tem5l 3tempo. tem1r 8tem9s tem5tes te3my te7m^^f8 te1m^^e5 8ten. ten8am ten5del ten5dre 4tene. te8nes 7tenestl ten7go t5enig 1tenki ten3led tenn5l tenn1s ten3re 2tens 8tens. tens5aker ten7sal ten5sat ten5sett ten7sje tent3in tent3le ten9tom tent3re ten7tru ten7ty ten1v te7ny ten5^^f8ks teo4 1teolo 3teore 1teori te1p 2tepa te7pet 2te9pl te3pos 1tepp te4prisv 2ter. ter4aksj 7terapi. 7terapie ter3c ter1d4 2tere2 te3red te1ref te5regn ter7eid ter1el ter3eng te5rent te3rest te5rette ter3eve 2ter1f terfly4p ter1g 6teri te3rikt teri2n te3risi teri3v 2terk ter5kj ter3kre ter1ku ter3lag ter5lati ter3len ter9let ter3lev ter1ma ter7mel term2i ter3nor te5ro. te5roa te3roe ter7ov ter5pels ter7rat ter7ris 3terror ter1se ter7se. ter9ses ter9si ter5skar ters4kl ter9skot. ter9skota ter9skote ter9skott. ter7skotte ter3skr ter3sku ter1sl ter1s4m ter1sp ters4pr ter1st ter1s^^f8 ter3tak ter3tal ter5tan ter5teg ter3tel ter5tenes ter3tid ter3tin ter7to ter3t^^f8 te8r9ul te1rus ter9vat ter5ved ter3vek ter3ves ter1vi ter7v^^e5 te1ry ter3^^f8v te9r^^e5. te2r^^e5s ter5^^e5s. tes2 6tes. tes4d te1se te1sh te1sid te1sik te5sin te1sj te1skj te1sko te1skr te1sku te5sky te1sla te5slu tes3l^^f8 te1sm te1sn te7so te1sp te3stad 7testam testats6m te3sted te5stei te5stel te3stem te3stig te3stil te1sto te1str te1sty te1sv te1s^^f8 te7s^^e5 2tet. te1tab te1tak te1tal tet5b te3tee te3teg te5tenk te3tes te1ti te3tid te1tj te1to te1tr 8tets tetter2 1tetth tet3til tett3sk te2t3^^e5 te1va te7van te1ve teverk5st te1vi 5tevl 2tevn te1vo te7vr te1v^^e6 te1v^^e5 2t1f tfag4k tfag5s t3fak tfar6 t7fe. t7fed t9fee t7fen t3fes t6filmsk t3flag t3fly tfor7fl t3forh tfor7kv tfor7k^^f8 tfor3tr t5fot t2f^^f4 tfram2 tfrem2 t3fu t7f^^f8dt t4f^^f8rerk t5gas tge2 t7get t1gl t1go t1gr t7gry t1gu t1ha t9halds. t5hau t1hef t1heim t5hem t5hof t5hog t5hou t1hu t6husm t1h^^e5 2ti. 2tia ti1ak ti1ap ti3ato ti1ba ti3br 2tic t7idee tide4m ti1de4p t5id^^e9 ti1dis ti1do 2tidsa 2tidsb 2tidsd 4tidse 2tidsf 2tidsk 2tidsl tids5ma 4tidsn 2tidso 5tidsperi 2tidsr 4tidssp 6tidsst tids1t 2tidste 4tidsu 2tidsv 4tids^^f8 ti1du tid3v tie2 ti1ef ti1ei ti1em ti6end ti1erk ti3esk ti5etn ti1ett 2tif ti5fa ti1fe ti3fil ti1fr t3ifra. tift4 ti1fu 2tig tig1l tigs2 tig7s^^f8 ti1h ti1i 2tik tika1b tika1d ti5karri tikks2 ti1ko ti1kr tik1t 2til. ti1lag 1tilb til2be til5da ti1led 1tilf 1tilh til7isi 1tilkn til2kom 3tilleg 4tillin til7line til3lu til3l^^e6 til3ma 7tiln 7tilor 1tilp 7tilr til2re 1tils til8sen til8set til3ska til4skad til5sti 6tilsynss 8tilt. 1tilta til1tv ti5luf 1tilv til2val til2ve ti9l^^f8 2timeb ti8meiste 4timel 4timeo 5timers. 4timesr tim5f ti1mil tim3s t1ind tinge4 ting5les 6tingst 2tingsv ti5nia t1inn tinn2b tinn6k 2tins tin3sl t3inst t1int tinter4 ti5ny ti5ok tion1s ti1or ti1ov ti1pa 2tipe ti1per ti3pi 1tips ti1ra ti1re ti1ro ti3ru 2tis ti3sat ti5sei ti1sem ti3sep tis8fa t3isfl ti3sir ti3sju ti3skan ti3skil ti4sl tiss6 ti1ta ti1ter ti3tes ti1ti ti1tj 1titl ti1to ti8tra tit3s 3tittel 8tiu 4tiv tiv3and tiv3art ti3ved ti3vid tiv1r tiv7si tiv3st ti3^^f8re 2tja t3jag t1jak 2tje. t1jeg 8tjel 7tjenstl 2tjer 2t1jo 8tjs tjue5t t5jug t3jun 1tjuv 7tj^^e6 2t1k8 t6kag t4kantg t9kants. tkilo1 t8kjennings t9kjennings. t5klar t4klu. t3komma t5kreft. t5krefte tkrig2 2tl4 tla8 t1lag t1lakk tlands7v t4lappi t3lau tl8e t1led t4lederk t7leders. tle6g t5legef t7legginger t6leggings t7leggings. tle2h t1lek t3lenk t1les t7leva t1lide t2lig t7liga t3ligge tlike8 t5lil t3lim t1lin t1lis t3lit t1liv t1lo t1lu t7luk t1l^^e6 t1l^^f8 t4l^^f8nnsg t8l^^f8ps tl7^^f8y. 2t1m t8malm t2mam tmann7l tmar6 tmed8 tme7dr t9meistere t6mestera tm^^e5l6 tm^^e5le8 2tn t7nag tnar9h tnar9m tnar7r tnar5v t1nas t7nat t1nav t5neg t5nek tne4r tner5g tner3v t7nese t1nett tn7ha t5nor tnord8 tn5sk t1nu t1n^^e6 t1n^^f8 tn7^^e5r to5ben to5bo to1die to7erm 2tof toff7si to1fi to7fri to3gar to5gat 8togg tog1l tog3m 4togsf tog3s2t t7ogv to1h to8han to6h^^e5 toil1 to1in tok6 2tokk tokk5end to7kos 9tokst 3tokt to5ku 8tol. tol5arm tol5b tol5d tole8l 2tolen to7lin to1lit 8tolku tol2l 3tolls tol3ma tol5tr to3mast 8tome to3merk to7meter. to7metere to7metr tom5gang. tom7gange tom7gi tom7kom tom5li tom3l^^f8 5tomm tom5p 2tomr t1omse t1omso tom1sp 6tomss tom1st 1tomt 2ton. ton1d tone1s tong1s2 2toni tons4 ton1sa ton3se ton3sp to1o to1pen to3pl t3opn to3pos 4toppd topp7da t1opph topp3hu topp5lage topp5lu 1toppm t6ora tor1ak tor3as tor1be tor7bi tor1bo tor1br tor5by. tor7bys. tor1da tor5dal tor9del tor3dep t1ordn t5ordre. t7ordren tor1ei tor7eks tor5ete tor1f 3torge 4torgt tor1g^^e5 tor3han tor5hen tor5ho tor1in tor1k 6torl tor1la 8torm tor5mann tor5menn tor7n^^f8 tor1pl tor1pu tor1r tors2 tor1sa tor1se tor7skrifts. tor1sp tor1st tort8 tor1ta tor1tj tor1to tor1tr tor7t^^f8 tor3t^^e5 tor7ut tor5vik. tor5viks tor5vis tor3vok tos2 to1sa tose4 toske4 to1sp t1ost. t3osten tostrati9 to1ti 3toto. 5totoe toto5r 5totos. 2tov to3verd tover2g t3overs tover7taki 2t1p t4priss t8punktf t9puta t5pute. t7puter t2p^^e5k tp^^e57t^^e5 tr4 6tra. 2trab tra5ban tra7bi t3radio 8traff 1trafi 6trafikkl 6trafikkp 7trafikkse tral3d tra5let tra3ma tra3mi tram2p tra3nas 4trand 1trans tran7ske tra7pa 8tra1r2 8tras. 6trat tra7tek tra5tre tra3tu t3reaks 2treb tre2bar tre7bens. tre3by tred4 t1reds 1treet 2trefe 4trefo t3refu 8tref^^f8 4t1reg tre5ha tre2hj trei2 8trek. 4treke 2trekks 6trekksr t3rekla tre3le tren4 1trena 8trenarf trend5s 3trener 6trenerf 1treni 7trenings. 4t1renn t9renta t7renten 8trep t1repe t5repres t1repu tre5sen t3reser tre1si tre7ska tre3sko tre1sl tre1so tre1sp tre5stem 2tresu tre3sv tre5ta tre7ti t1retn tre5to t5retted trev8 tre3vel tre3vin t3revol tre7vr 8tri. t8rib tri1be 2trid 8trie tri7ei trie2v t1rifl tri5gj t3rik. tri1la tri1mi trinn5sk 2trip 4tris tri1sp tri3var 5trives. tro1b tro5form tro3gl 8trok t1rom. t3roman tro1me 3trong tron1s tro5r 3tross 5trost. 6trostv 3truc 3trued 3truet 1trug 2trukt 6t1run 2trup t7ruta t1rute tru3v t8ryd 3trygd. 5trygda. 3trygde 6trygdend 5trygding 6trygdp 2tryke 4trykkbe 6trykkerf 6trykkerk 6trykkr 4trykksb 6trykksr 1tr^^e6 t3r^^f8d. t1r^^f8r6 5tr^^f8t 1tr^^f8ye 4tr^^f8ym t5r^^f8yr t3r^^e5det tr^^e5d5r t4r^^e5dsl t1r^^e5st 8ts t7sak. t9saka t1sake t1sam2 t7sama t6samek t1sang t1sats ts5b t1sc t8sch tse8en tse2k ts3ela ts2em t3semi ts4ende ts6endi t3sent ts1erk tser3o t1seso ts1ev ts7fa ts3h t5side. t3siden t5sif t3sikk t7sikr t8sindigheter tsinn8 t7sinnet ts1ins t1sit t1sj^^f8 t8ska. t1skaf t3skall ts1kan t5skapt ts1kar ts3kjed t3skjer t1skol ts3kren tsk5ru ts3kr^^f8 t3skue ts1kv ts9kvi ts7kyn ts1lan t5slav ts1lei ts2lot t1s8lu ts6mannsk tsmelte4 t5smit ts1n ts1of t9sommar. t9sommare t5sommers t3song ts1or tspe2 t7spenn t7spis ts6pliktr t1spor ts5pos ts1pot ts1pun t5spy ts1s2 tst2 t8stadf ts1tag ts1tak t2s1tal tstam6 t3star t5stas t5stat t3sted. t9steda ts6tenestem ts5term t7stig t4stilk ts3tin ts1tj t8sto. t1stof t7stopper. tstor8 ts7tre. ts9trea t1stri tstrids4 t5str^^f8mn t1stu ts3tv ts6t^^f8r t6st^^f8ttef t6st^^f8ttel t1sum ts1v ts4vernr t3s2vik t1sy ts^^e6r8 t7s^^f8d ts3^^f8kni 8tt tta9fr tt3ald ttale8l ttalls5 t7talls. tt8ane tt1ang ttann7k ttan9p ttar7p ttar7ta tt3arti ttar7v tt1b tt1d tte5b^^f8 tte3del tte3e tte7f^^f8 tteg8 tte3gi tte1gr tt9eig tte1in tte5la. ttele6 tte3leg tte4lege tt7elev tte3lis tte3lit tte1m tt3emn tte3na tte5nek tten3g tt3ense tten5sl tten1^^e5 tten6^^e5rsa tte3ram tte3reg tte5rett tte3rik tter2kr tter1p tter3un tte9set tte5tene tt2fe tt5fi tt5fj tt5fy tt2f^^f8 tt1g tt9gr tt1hen tt7her tt1ho tti3del t3tids. ttig3sk ttil2 tti5ni tt1ins tti5tr tti2^^e5rs tt1la tt7legg. tt5legge tt7leggj tt5leia tt7leid tt5leie tt1len tt7ler tt7lign tt3lik tt5ly tt1l^^e5 tt8m^^e6 tt1n tto7be t6tok tto7li tto1mi tto1na tt3oper tto1po tt1ord tto3ren tt3ori tto1s tto1t tto7u tto5vi tt2par t6trafi. t6trafikko tt1ram tt3rasj tt7rat ttre2 tt3rep tt1res tt1ret tt1rev tt3ris tt7rom tt5r^^f8 tt1sal tts9and tts1ar tt1se tt1sid tt1sig tt7sja tts3kje tt3skri tts1la tts9lags. tts1lo tt3sok tt3spel tt5spill. tt5spille tt1sta tt5stede tt7steds. tts3ten tt5still tts5tim tts3top tts3tra tts3tro tt1sty tt9svev tt7t tt1un tt1va tt7verken tt1vi t8types tt3^^f8l tt3^^f8v tt7^^f8yr tt1^^e5p tt3^^e5r. tt7^^e5ra tt1^^e5re 6tu. tu7bad 2tud tue1g tuer4 3tuf t3ugl 2tui t7uka t1uke 6tukts 2tum tum1f tum6s 6tund tunder8 4tungef tung3l tung9s tun3h 1tunn 8tuns tu9om tur7ant 7turbinane tur1d t7urei tur3gl tur1k tur1o tur3p tur1r tur1s2 tur1t tur3var tur7ven tur1^^f8 tus3h tus7ti tus3u 2tut t3utk t3utp t1utr tutt3ov tu7ved 5tv. t1vak t2vakts tval8k t9valsa t7valse 1tvang t4v5anl t5vare. t3varen t5varer t1ved8 t7veis. t3vekst tvekt8 t8verdip t6verg t5verks. t6verksa t5verksu tvert5 t7vev tvi7b tvi9klas tvil8i tvil8s tvi7sp t2vist 8t1vo tv1s t1v^^e6 t1v^^e5 t5v^^e5l t5wh 6tya ty5b ty2f tykk2p tykk3s 6tykn 2tyl t7yo 1typ 8typek 6typena type5r 2tyr tys2 1tysk 8t1yt 1tyv ty7vas tz5ly tz2s tz7v t^^e6r1d t^^e6r1l t^^e6r1n t^^e6r7s t^^f88ar t^^f88as t^^f82h t1^^f8k t^^f87kap 6t^^f8l t7^^f8let t^^f8n2 t5^^f8ns2 t^^f8r1as t^^f8r1l t^^f8r1p t^^f8r1se t^^f8r1t t5^^f8sten. t5^^f8stens 2t^^f8t t^^f8tt6 2t^^f8v t^^f8v5r 6t^^f8yf t^^f8y3gl t^^f8y1k t^^f8y1r 8t^^f8ys t^^f8y1v t^^e5l1s t9^^e5nda t3^^e5nde t7^^e5nding. t9^^e5ndinga t7^^e5ndinge t^^e53ne t1^^e5pn t^^e5r2 t1^^e5ret t1^^e5ri 1t^^e5rn 4t^^e5rns t^^e5rs1 t5^^e5rssk t^^e5rs6v t3^^e5sen t^^e53sk t^^e53st t3^^e5ta ua5ku ual3d ual5l ual7s u5anl u7au uav6 uav7bro 1uavh ub7alt ub7ant ub5ark u5bei u8ben uber8 ub5lem uble3s ublu5f ub7lun 2ubs ub5stru u9byggar. u9byggare 5ub^^e5tk ud7ba ud3b^^e6 ud2ei udele8 ude3p uder7^^f8 ude1s ude4vo ud7ga udie1r udio3g udio3v ud7ir udm^^e5l6s ud6rollei uds3g ud7skr ud2sta ud9stads. uds3tro ud5va ud7verje. udverjefri6 ud9vin. ud9vins. 7udy ud5^^e5s ue5a ue5dr ue5fu ue3ga ue3gj ue1h u7ei ue3ka ue6kj^^f8ttp ue1kl ue7kv uelsk6 ue7me uens2a ue7o ue1p uer8e ue5rent uer3ta ue1sk ue7sla ues1s ue8sto ues5tra uetter2 ue1v ue6^^e5rs u7fee u7fell uff2 uff5erm uffi8 ufra4 ufram8 ufrem4 uft1sp uft3sty ufull9e 2ug uga5la ug7av ug2by uge5r^^f8 uge1s ugg5l ugg3o ug7gr ug5h ug6ho u5gj ugjen4 ug7ly ugs2 ug7so ug9sterk ug5sva ugs5ve ug1t u5gud u2he 1uhel u1ho u9hu ui2 uid5s uine4 uinn2 uit2 uitt9s uja5s u7jor uk8a u5kaf u9kam u7kant ukar3d ukar3m ukar5s ukar3t ukar7v uk2b uk7egg uke2h 6ukem uker3l uker3st uker7t uker1u uke9sto u3kj 2ukk ukke3h ukken6s u5klem uk8n u3kno uk3og u3kor 2uks uks5h uks1k uks7m^^e5 uks1t uk3tal uktes8 ukt5esk uk8tj ukt1r ukt1sa ukt7s6l ukt3sor ukt1sp ukt5st ukt9s8v ukt3t u2ku uk3^^f8 uk5^^e5 u2l ul3aks ul3akt ula5ting. ula5tr u7lau ul2bra uld7skr ul5dy ul5d^^f8 ule3a ule6boks ule1d ule3f ule1gr ule7h ule1l ule1ma ule1p ule1s ulet4 6ul2f ul3far ulf5l ul9f^^f8 3ulikh uling3v ulin3t ul2k3v ull3arm ull3egg uller8 ull8es ulle7ste ull2f^^f8 ul8li ull5iv ull5os. ull7ose ull7pl ull1sk ull8skap ulls8m ull1so ull5sva ull2ti ull3ur u3lok ul5op ul8r^^f8te uls5l ul3spo ul2t ult3re ult1ri ultur3n 1uluk ulu3l ulv3u ulv5^^f8 1uly ulykke4s ul7^^e5l 2u2m uma5b u5mag um3av um1d um4du um1enh u3merk ume9st um8et um1fr um7g um7ha umi2 um7ja um5lag um3lo um7merk ummi1s ummi5t um5mu um9na um5ok um5ord ump7akt umpings4 um5r^^f8 ums1 ums5ne um1t um1v um6vas um8verks um8vern um^^f8r1s um^^e5te8 2un. un3alg un9b unche3 2und. und9br und2by und6e unde3p 7underligs 3unders 4unders. 3underv 4undet un8di und7im undre5ta 2unds unds3ka und7sl^^e5 und7sta und1v und7vi une1l un5eng une1se une1sk une7sto une1v un1f 1ungd 6ungef 8ungi ung1j ung7lo ung3ro ungs2 ung7sa ung1si 8ungt un5gu u2ni 1unif 1unio 3univ 2unk unke2o un2n unn7b unn9de unn5ers unn3erv unn3ga unn7hal unn1ho unn1k unn1le unn5li unn4lovg unn1r unn3sat unn5skud unn3spi unn5stof unn3sy unn1te unn1tr unn1v unn3yt un9n^^f8 un1os un1re 8uns2 un5so un5sp un7stat unste4 unst3el un1sv unta3l untry1 un5v^^e6 un5^^f8yd uo8 u1ob uom8 uop8 uopp8b uopp8v uor5k u5ov uover2 2u2p up3av up7b up5d uper1 upe3ta up3he up7lin uppe3te upp7lei up1se ups7ka up1ta up^^e52k up^^e58t ur3aft ur1ak8 ur6ant ur7arl urar7s ur3arv u7rasa u7rase ur5asp ur1av2 ur1b ur2ban urd5o ur5egg ur3eli ur1els ure8n ure7o ure5te uretts8lags 2ur1f ur3git ur1g^^e5 ur1h urhets4 uri8 ur1inn ur1ins ur1int ur2inv urke7s urk7ja urk7ny ur1ko urk1s urk3t ur1la ur9legen ur1les ur1m ur7mu ur1nas urne7v ur1nor urn1s ur1n^^e6 1uro. 7uroa 1uroe uro8l ur1or uro1s uro3sk uro6sta uro1vi ur3p^^e5 urre4f ur3rid urs3el ur3sil urs1l urs3tal ur5stein. ur7steina ur5steine ur7steins. ur7stens. urs3til urs5tru urs1va ur1sy urs1^^f8 ur8ta. urte5t urti4 ur7tid. ur9tida ur1tr urts2 ur1tu ur3t^^f8 uru5b uru5l urum5l uru5p uru7tr uru9ve ur3verd ur1vi urv5l urv3s ury3l ur1^^f8d ur5^^f8y ur5^^e5r usaman9 us5art us2ban us6ber us6drifts us2dy use6al us4eierf usel8 use7la usen5del us7endi usent9r user4 us5erm us6farv us2h us3hu us4i5d us1ind us5katt. us7katta us5katte uskel7s usk7lem us1ko us5kro us7kru u8sl us3lab us1leg us7lu us3l^^f8 us2man us5mann. us5manne us2mo us5mod us5m^^f8 us1ok us1or us1pa us5per us1po us7sak us9sal. us9sale us9salg. us7salge uss3h us1sk uss7kor uss3m^^f8 uss3ter us7s^^f8k ustad3f usta9fra us1tak us3tal u9stein. u7steina u7steine u9steins. us5tenest us7tenn us7term ust9ette ust3ho u5stig us1tj ust8man ust7ov ustri3d ustri3l ust5r^^f8d u6st^^f8ttem us1va us1vi us9^^f8re. us7^^f8ret ut2 4ut. 2uta uta8bo uta3de utad3r uta3f ut3alb uta1m ut7ani uta3po ut3arb uta1re2 uta5sk uta1st uta5u uta3v 1utb 6utbi ut3b^^f8 1utd 2ute 6ute. utebil8eierf ute1g ut7ei ut3eks ute3lig ute7me uten2f uten7sk uter5ess ute1s ute8va 1utf ut6far ut3fi utfor7de utfor3l 1utg 2uti utikk6u util2 ut7inn uti7ven 5utj ut3kj^^f8 1utl 4utleies ut8l^^f8y 1utny 2uto ut7oms uto3se 9utov ut8pu ut1rom 5utru u8tr^^f8 ut9r^^f8d ut7r^^e5 1uts2 4uts. 2ut7sei ut4sen ut3sil 5utsl 5ut4st ut3tag 1uttak ut5tei utter4f utt3f utt4ga utti8 utt5le 1uttry utt1sk utt5s4l utt3spu utt1st utt1v ut7un ut3ut 1utv ut3var ut8veg ut7^^f8k 1ut^^f8v ut5^^f8ya ut5^^e5r uum5p u1un uut8 uv7akt uved2 uve3ga u5vekk uver2 uve3st uv7f uv7j u1vo uv7ra uv7ry uv1s uv7ta uy8 u3^^f8y u3^^e5ri 8va. 6vaa va4b vad2m va6f va7je vak2 2vakh 1vaksi v3aksj vak5sti 1vakt 6vaktarb 2vaktf 2vakti 4vaktk vakt7r 7vakts. 4vaktsj^^e5 va1kul vak3v val4bor 9valden 4valel val2fa val8far val2g 4valgh 2valgl valg1r valg1u val4hal 2vali val3ko val5li val1o val5som val7tak val7tem val7va val5vi val7^^e5 va7mar v1anal vand8r vand5s 4vanere vane3t 2vang2 vangs7e van7la v6ann 1vann. vann3d van6ni vann1l 4vannm 9vanns. vann7sid vann5sla 5vannsm vann5spo van3r 1vansk van1sm van1st van1tr va4r 2var. v1arbe 2vard var7del 2varef 6vareo vare3p vare1s 2varet vare7v 6varin var7ko var8le 7varma 1varme 4varmene 4varmeu varm3h 7varmings. varn8 var7sen var7tid vas8 vasi7l vass5au vass3ka vass7^^f8 6vast vat5d vat1ei vat1l 1vatn vat1s v1av v1b v2bei v9beitet. v9beitets v4betali v7betaling. v9betalinga v7betalinge v7betalings. v7biter. v5bitere v7bitt v3bla v7brudds. v2bruks v6budsjettf v6budsjettp v3b^^e6 4vd v3dam v1dek v5delt v1dem vding3s2 v1dram v1dri v7dr^^e5 v1du v5dyra v3dyre v1d^^f8 8ve. ve1a ve7am ve7bens. ved1a ve3dag veder8 ved1g ved2kje ved4lagt ved1n ved1r ve1dri ved1s veds2p 4vedt. 3vedtak ved1v ved1^^e5 ve1f 1veg. 3vegane 3vegar veg7av vege2 8vegel ve5gem 1vegg vegg5s6 4vegings ve3gj veg1n ve3gra 3vegs. 8vegsk 8vegsr veg5v ve1h 1vei. 4veia 2veib 1veie v4eiert vei7fe v9eigan v7eigar. v7eigd vei3gr vei4g^^e5 vei3ka 3veiled 4veim vei1ne 6veinings 7veinings. 2veip 6vei5r 5veiski 6veisp vei5stan vei5stre 2veit veita7 vek4 6vek. 3veka. 1veke 2vekee ve7kla ve7kle ve7kr 9veksa 2vekstb 4vekstf vekst3r 7veksts. 4vekstt 1vekt vekt5an 2vekts 3vekts. 2vel. ve1lag vel3ass velde5l vel8ei ve3lev vel3gje ve3lis vel2k vel6le vel3lu ve5lot vels2 velse2 velses5 vel5set vel4si vel1sm vel5sp vel3ste vel3sti vel8te vel1tr vel5un ve3l^^f8 ve1ma vember5 ve1me ve1mi vem8l ve7m^^f8 ve7m^^e5 ven3gr ven2i ve5nis 1venle 1venn venne5t 6vennings ven9o ven5tre vent6s1 2venty ve3o ve1p ver5ak ver3dam verde5s 3verdi. 8verdid 3verdie 4verdif 8verdit ver3dom ve3red vere5l ver3eng ver5ess ver7ete ver7eti ve7retta ve5rette ve5retti 5verft ver1h ver6hall veri1a ve1rik ver4kan ver6kar 8verkef 6verkett 4verkf 4verki 2verkl 6verksei 5verksem 2verksj 6verksp 6verksv 3verkt 4verkti 4verkto ver5kul 8verl ver1la ver5legg ver7len ver8lever. ver4li ver2lis ver4lot 2verm ver1ma ver7mel ver1mo 1vern. 2vernak 7vernar. 7vernara 7vernare 4verne. 8vernen 3vernet 4verneta 2vernk 2vernm 3vernme 2vernor 5verns. 2vernsn 6vernsp vern3sy vern3v ve9ro. ver3par ver3rak ver2sa ver3san 8versi ver7skotten ver9skudda ver7skudden ver7skudds. ver1sp ver3sta ver5steg ver3str ver5s^^f8 ver3s^^e5 ver3tal ver5tas ver3teg ver5tent ver5tid. ve3rund ver5vant 6vervs ve9r^^f8ra ver1^^f8s ves4 6ves. ve3set ve3sig ve1sj 7veska. ve7skap 1veske ve1skj ve3skr ve5sky ve1sm ve1so ve1sp 6vestat vesta7v ve3sted vest7end 2vestla vest7land. vest7landsk. vest7landske vest3ov 6vestp 4vests ve1sty vet4 2vet. ve1ta ve9taka ve3teg 1veter vete4s3 ve1ti ve5tidsr ve5tis ve5tj ve1ton ve1tr 4vets vett3sk ve7tv ve1ty 1vev. ve1va 1vevet ve3vo ve5v^^e6 ve4^^e5rsa 1v^^ea 4v^^earsd vfalls3 v3fat v1fe v5fel v7ferd. v5ferde v5ferds. v1fi v4fiskek v1fl v1fr v1fu vg6 v3gal vgangstids7 v5ge8 v5giva v5gjeva v9gle v9gl^^f8 v7gn v1go v1gra v5grei v7grene v7greni v8gr^^f8 v5gy v9g^^e5a v9g^^e5d v5g^^e5e v5g^^e5r v9hef v3hei v3hent v7her v1hes v4hjelps v3holdt v3hus. v9husa v5husen v5huset v6hy v8h^^f8rs 4vi. via3k 6vic 5vidda vide2 vid3o vids8 vid1st vidt5r 1vif vig5ga 4viglerp vig6m vigre5 vigs2 vi8he vi8k 2vik. 2vikaro 6vikars vikar3t vik5d 3viki 8vik3o 6vik7r 2viks vik3sa vik7sl viks7t 4viku vi2l 2vil. 6vil1a 4vild 2vile vil4h 2vili vil1in 1vilk vill5an 6villel vill9ep vil5m vil1o 3viltet vim8 vi7merk 6vinb 1vind 4vindl vine9a vine7l vin3f 2vini vin3ka vin4lan 8vinnarc 6vinningsd v5inn6l v3inns 4vinsa 1vint vinter5n vinter5v 6vintheter 6vintringso 8vir. 4vira 2vire 6virkningsn 6virkningsp 1virks v3iro vir4v 6visel vise3m visen6 6visers vise9s 6visingsg vis1kj vis1kr vis3ma vis7mo 9visp. 7vispe vis5po vis5tr vis5tvi 1vitj vit5m 9vitna 7vitnen vit7o 3vitska 2vitt vit5un vit5^^f8y 2vj vje2 vje5m vjet1a vjet3t v1k v5kalk v3kam v3kap v2kl v3kli v9kom 6vl vla7b v1lag v3lak v3lang v7lap v7lasta v3laste v7lastnings. v3laus v1leg v8lega v1lei v3lese v8lesings v6lesningss vle3str v5levere v7leveringa v7leveringe v7leverings. v5levert vle9vo v7lik v1lis v1lo vls1 v9lyd v5lyk v5lytta v3lytte v7lyttings. v1l^^e6 v5l^^f8nned v1l^^e5 v1m v3mas vmed6 v6merkings v7mi v2mod v3mord. v5morda v3mot 2vn v5nakke vn5al vn3b vn1d^^f8 vne7b vne1d8 vne5h vne1s v3nett vne1v vn1f vn1g vn1l vn2li vns4b^^e5 vns5pa vn1st vn5sva vnt4 vn3ta vn5tu v1n^^e6 vn7^^f8r vo1al vo6ar voar5b voar5r v1of 1vog 2vognb 4vognfo 4vognk 4vognr 1vokal vokat3t 1vokse 4vokterb vol8 8vol. 8vola 6voldsf 4voldsl 8vole voli5tu 6vollm 4vols 1volum 7vom. 7vomm v5oms vond7si v1op vopp6 vor2 v1org vo3rop vor7si vor5u vot7s vover4 v1p v2pri vpuls4 vr6 1v4rak v1rea vre8b^^f8 v4redn v7redning. v7rednings. vre4fo v9renne v7rennings. v8renteb v4rentek v6rentep v6rentes v3rep vre7tr v7rett. v5retten v5retts. 1vrid 5vridn v1riv v1rom v3run v9rusinga v7rusinge v3rust v1r^^f8 v5r^^e5d. v9r^^e5da v3r^^e5de4 v5r^^e5dsm 8vs v7sali vs1ar vse6 vs3egg v1sei v7sein vs5eli v9sendar. v7sende. v7sendes v1sett vs1ev vsfar8 vs3h v5sies v9sile v7silt vs1in v9sit v3siv v1sj v2sjo v2skip v1skis v3skjer v1skj^^e6 v6skolef v6skolek v9skrei v7skrekka v5skrekke v9skrekkinge v7skrel v3skrev v5skrif vs7krit v5skru v3skr^^e5 v5skut vs1kv vslags4 vs1lan vs1le v8sna v4sn^^f8 vs3od vs5oms v9son vs1or v9spenne vs1s2 vs2syn vs6s5^^e5 v5stam v5sted. v7stende. v9stendet vste4s v1stu v2styre v5styre. v5styret v7st^^f8tnings. vs8ung vs1v vs9vern vs2vo v1sy v1s^^f8k v8s1^^f8y vs6^^e5r 6vt v5tall. v3talle v7talls. v3tap v5tast v1te v8ten v1ti v1tj v1to v1tr v7tre. v9trea v7tree v7trekks. vt7s v3tu v1tv v1ty v9t^^e6 v1t^^f8 vt5^^e5 vt8^^e5k vud1 vuds8 6vue 2vul2 6vung 1vur 4v1ut v1va vvann5s v1ve v6veke v5vilt. v1vir v1vis v6visnings v7visnings. v1vo v1vu v1v^^e6 vy7l vyre8 vy1s vy1t vy3v 6v^^e6relses 9v^^e6relses. v^^e6r1m 8v^^e6rss 1v^^e6s 1v^^e6t v3^^f8d v3^^f8l v3^^f8rke v3^^f8v v3^^f8y. v7^^f8yg 2v^^e5g 3v^^e5ge v^^e53h 9v^^e5ka 3v^^e5ke 6v^^e5kera 7v^^e5kings. 7v^^e5kingsmes 9v^^e5knings. v^^e5l5se 3v^^e5pen. 3v^^e5pene 5v^^e5pens. v3^^e5pni v^^e5r1d v^^e5r3h v1^^e5ri v3^^e5rl v^^e5r7n v^^e5r5sl v^^e5r1t v^^e5te8 v^^e5t3s v^^e5t7v v^^e5t7^^e5 v^^e53v wa4h wal4 walk5o wa1p 3watt. 7watte 7watts w5bu w5d we2 wel4 west2 w2f w5ho 6wic wi5f wik6 wil6 wis6 wk3r w1m wn5s work3 w5r w8s wur8 w7v wy2 x7b x8c x3fi x5g xi1se x7k x1l x5m xover4 x1p x3r xre8 x1s x3v ya7b 1yac ya7f yal6 y3anl y3anset y3anska y7ansl y9ap yar7ak y1arb y1ark y7arr y1art y1av y9bad y3ball. y5ballen y9balls. y1ban y5barb y3ben y1bi y1bj y1bo y5brott. y9brotta y7brotte y5bu y3bygd y3bygg. y9bygga. y3bygge y7bygging. y7bygginga y7bygginge y7byggings. y1dam yd5bok. yd7boka yd5boke yd1b^^f8 yd7enh yden1t yd1is yd5les yd3mu yd4ov yd5rem yd7rik yd1si yd1sp yd1st yd5to yd1un yd5v yd6vesto 6ye ye2b ye3br y9edl ye3ep y3ei yel2 ye1la yels3j yels3m ye2m ye5m^^e5 y2en yen1l yen1s y1erv ye3sta y1eta ye7tr ye3v y1f y7fir yfjell4 y5fjell. y5fjells. y8fla. y8flan y8flar y8fon y2fy yg4 ygd3al ygd1r ygd3y ygens6 yge7ret yge5v^^e6 ygge7v^^e6 ygg1s2 ygg7^^e5 y3gj y5glans. y7glanse y7glas. y1gr ygs2 y1gu y1ha y8has y7hendi y5hes y1hu y1inn y7je y5jo y1ju 2yk y1ka2 yke2h yke7hjem. yke7hjemm yke2pe yk2kam ykk5enh ykkes5tal ykk3l ykk5ni ykk2sk yk4kv ykle7s y3klub yko7li yko5mo yko1so yko1t y1kr yk1s y1ku yk1var y1k^^f8 y1lag y6lagi y7landsb y3lap y9lau yld9se yle3ga y3lei yl7h ylke2 ylkes7la ylkes9lags. yll5s yl1m yl7p yl1sa yl3sk yl5sl yl1sy yl1s^^f8 yl7ver y3lyt y3l^^f8 ym2 y1ma y5mann ymbol3t yme1de y1me2k yme9st y6misjons y7misjons. ym7l y7mod y1mor y4motorv ym3pr ym3sa y1mu y1m^^e5 y8m^^e5ned y4m^^e5nes yn7berr ynder5h ynder7skape 3yndl yne2k yn7eld ynergi2 y7nese yn9fe yn9fo yngs2 yng3sta yn3h yn3ned ynn3s2 ynn3ta ynn4^^f8 ynor8 yn7ord yns5eng yns5ins yn3sna yn7sn^^f8 yns1o yn7sod yns1t yns1u yns7v ynte7te yn3to ynt7so yn1tur yn1v y1o yopp4 y8os y1park y3part yp8e ype5k ype1le ype5m yper4b ype7ta yp3inn y5pist y3plan. y7plana y5planen y7planer ypp3s yp3r^^f8 yps6 yp1sk yp7tr y3pu yr5akt yr3al yr2an yr8ar yr7au yr7av yr1b yr3dr yre5dr yre2du yre3f yre1ga yre1h yre1in y3reis yre1k yre3ka y7rekk yre5le yre5mo yre3p yre5sc yre7si yre3sk yre5sl yre3s6p yre3ste yre7sti yre3str yre7ta yre1te yre1v yr1f yr3gl yr1h yr3inn yris8 yri7sp yr5ju yrk2 yr5kal yrke7m yrke2s yrkje5m yrkje5v yr9lande yr9leggjarar. yr1ly yr3mal yr3n^^e6 yro5g yro3me yr1op yr3or yr3p yrr6 yr5rik yr7set yr5sn yr5tid. yr7tida yrt7r yr7ty yr7t^^f8 y4rutes yr7utr yr1v yr2vi yr9v^^e5 y1ry y9r^^e5da y5r^^e5der yr^^e57s 2ys y5sal y1sam y1sang y5sats ys2bi y1sc yse4bu ys7ekte yse7rat y5serv yses6 yse7sk yse5sl y5sett ys7fo ysil5 y7skag ysk9au ysk3l^^e6 y7skriveren y7sku ysk5^^f8s y1son ys5or y5spent. y5spente ys3pis y3spo ys1pu yss3ei ysse7m yss5f yss3il yss5pe yss5tab y3stak y8star. y1stat y3stek yste2m ystem3o yster5t yst6go yst3ho ys7tjen yst1l yst5op yst1ru yst3s y9styra y5styre. y5styres. y5styret y5sva y1sy ys2^^e5t yt2 yt3ana yt7b^^e5 yt3d yte1d y1tegn yte3gr y6teknika yte3lis yte1m yte3na y1tenk y7tenn yte3ret yter3v yte5sk yt3f y1til yt7k yt3l y8tro y5trykk. y5trykke y5trykks. y5tr^^e5 yts3en yt5si yt3sk 2ytt yt7talen ytt4e ytter9end ytter5k ytte1s ytti9en. yt5tra ytt9v 2y1tu yt7v y1ty y1u yv3ak yvass7 yve2b yve7br y5vekk yvel6 y3verk y6vernr y1vert y1vir yv3s y1vu y7v^^e6r. y7v^^e6re ywood7 y5^^f8 y3^^e5p y7^^e5r. y9^^e5ra y3^^e5re y3^^e5s y7^^e5t za5es zam8 za5me za3re za3s z1b z6bu z1c ze8 zel6 z3ense zet6 z1f z1g z5hu zi7br zi3led z3int zis4 zi5sv zi1t z1k z1m zono7s zo3s z1p z5r z1s zte6 z1tr z1un z1ve zy8m zz3d zz3el zz3le ^^e6d5g ^^e66f ^^e6ge6b ^^e6le1d ^^e6l5j ^^e6ls8 ^^e62r ^^e6r1ak ^^e6r1at ^^e6r5av ^^e6r1b ^^e6r1di ^^e6r1dr ^^e6r1dy ^^e6re7by ^^e6r5eie. ^^e6r7eiet ^^e6r7eig ^^e6re1k ^^e6r7eld ^^e6re7li ^^e6re5m^^e5l. ^^e6re9m^^e5la ^^e6re5m^^e5le ^^e6re2nem ^^e6r3ener ^^e6re1p ^^e6res3s ^^e6re7ta ^^e6re7tr ^^e6re1v ^^e6r1f ^^e6r5ge ^^e6rgen6 ^^e6r1gu ^^e6r5g^^e5rd. ^^e6r5g^^e5rds. ^^e6r9ha ^^e6r7ho ^^e6r3il ^^e6r1int ^^e6r1j ^^e6r1k ^^e6r6ke ^^e6r3la ^^e6r9lem ^^e6r5ly ^^e6r1ma ^^e6r1med ^^e6r7mo ^^e6rne6 ^^e6r3no ^^e6r3n^^e6 ^^e6r1o ^^e6r8os ^^e6r1p ^^e6r1re ^^e6r1s ^^e6r8sel ^^e6r4s3il ^^e6r4s9l ^^e6r4sm ^^e6r2sp ^^e6r7sp^^f8 ^^e6r6s^^e5 ^^e6r1t ^^e6r9ta ^^e6r1u ^^e6r1v ^^e6r9veran ^^e6r2v^^e6 ^^e6r1^^f8 ^^e6r7^^f8l ^^e6r5^^e5 ^^e6t2 6^^e6te 1^^e6tt ^^e6v8 8^^f81a ^^f85anem ^^f89bad ^^f85ball. ^^f87balla ^^f85ballen ^^f87baller ^^f87balls ^^f8bel5l ^^f8bel5t ^^f81bo ^^f87brette ^^f87bri ^^f85br^^f8 ^^f81bu ^^f81by ^^f87b^^f8 ^^f8d1b ^^f8d9dei ^^f8d7dis ^^f8de5have ^^f8de3lan ^^f8de6me ^^f8de5ri ^^f8d3g ^^f8d1l ^^f8d2m ^^f8d3ma ^^f8d3mu ^^f8d1ra ^^f8d4red ^^f8dre5p ^^f8d5rest ^^f8d3ris ^^f8d2sa ^^f8d5sag ^^f8d2sc ^^f8ds7ek ^^f8d1si ^^f8ds7ke ^^f8ds2mu ^^f8ds5s ^^f8d5stilt ^^f8d5tek ^^f8d3to ^^f8d3und ^^f8d5ur ^^f8d1va ^^f8d5vin. ^^f8d5vins. ^^f81dy ^^f8d7^^f8 4^^f8e ^^f85e8p ^^f81eta ^^f81fak ^^f87fara ^^f81fare ^^f83farte ^^f81fe ^^f81fi ^^f86forsvars ^^f8ft5s ^^f85fugl. ^^f89fuglan ^^f89fuglar. ^^f83fugle ^^f81f^^f8 ^^f8g5al ^^f8gare9 ^^f81gev ^^f8g4fj ^^f8g7gra ^^f8g9hal ^^f8g7he ^^f81gi ^^f8gre7p ^^f8gs2 ^^f8g3se ^^f8g5sl ^^f8g7so ^^f8g7spa ^^f8g1te ^^f83gu ^^f85g^^e5 ^^f81h ^^f8i2 ^^f82is ^^f81j ^^f82k 8^^f8k. 6^^f8ka ^^f86kapteins ^^f84kartv ^^f85kav 2^^f8ke ^^f8k7eg ^^f8ker3t 4^^f8kj ^^f8kjenne6teg 2^^f8k2k ^^f8kk5r ^^f8kle5b 2^^f8kna 1^^f8ko ^^f83kont ^^f8k5opp6 ^^f84krig ^^f87krig. ^^f8k7ur. ^^f8k5ure ^^f87ky ^^f87k^^f8 ^^f83lag ^^f8la3h ^^f81lak ^^f8la7m ^^f85lapp. ^^f87lappa ^^f83lappe ^^f8l7do ^^f8l2e ^^f8le1s ^^f8le1v ^^f8lge5d ^^f8lgs4 ^^f85liv ^^f8lke1 ^^f8lle3s ^^f8l9ly ^^f8l8l^^e5 ^^f8l5mo ^^f81lo ^^f88lop ^^f86lovk ^^f8l7si ^^f8l5star ^^f83lu ^^f8l5van ^^f8lv7f ^^f8lv5o ^^f8lvr^^e5de7 ^^f8lv7^^f8 ^^f81l^^f8 ^^f87mak ^^f85mann. ^^f83manne ^^f85manns. ^^f87mannsme ^^f83mat. ^^f87mate ^^f8m1b ^^f8m3dr 1^^f8mfi ^^f8m3g ^^f8m7ha ^^f81mi ^^f8m1le ^^f8mpe5l ^^f8m1ski ^^f8m5sp ^^f8m3st ^^f8m8s^^f8 ^^f8m6to ^^f8m3v ^^f81m^^e5 ^^f8n7al ^^f8n2b ^^f8n3dale ^^f8nder3l ^^f8ne7m ^^f8nne9ro ^^f8nn1f ^^f8nn5it ^^f8nn5l^^f8 ^^f8nn7r ^^f8nns1e ^^f8nns5id ^^f8nns3ku ^^f8nns5le ^^f8nns7lip ^^f8nns5te ^^f8nns3ti ^^f8nn1t ^^f8nn1v ^^f8n7sak. ^^f8n9saka ^^f8n7sake ^^f8nsk4 ^^f8nt1a ^^f81o ^^f8over8 ^^f81pak ^^f8par7m ^^f8patte4 ^^f8pe5da ^^f8pe7i ^^f8pe5ru ^^f81po ^^f8ps1 ^^f8ps3f ^^f8ps8leg ^^f8p3sta ^^f8p^^e58 ^^f8r1af ^^f8r1ak ^^f8r1am ^^f8r3ant ^^f81rap ^^f8rar3v ^^f8ra2s ^^f8r5au ^^f8r7bas ^^f8r1be ^^f8r1bi ^^f8r1bo ^^f8r1by ^^f8r3dam ^^f8r3det ^^f8rd8s 4^^f8reb ^^f8re9bens. ^^f8r7edd ^^f8rede4 ^^f83redn ^^f85reds ^^f8re1f ^^f83reis ^^f8re6j ^^f8re5kl ^^f8r5ekt ^^f8re1le ^^f8re3mi ^^f82ren ^^f87renn ^^f8re5o ^^f8re1p ^^f8re3ri ^^f8re9set ^^f8re1sk ^^f8re3sti ^^f8re5sto ^^f8re3str ^^f8re6sv ^^f8re9ten ^^f8re5ter ^^f8re5tr ^^f8re1v ^^f8r1fa ^^f8r5fe. ^^f8r5fet ^^f8r9fi ^^f8r8fug ^^f8r9f^^f8 ^^f8r7gang ^^f8r3gl ^^f8rg7s8 ^^f8r7g^^e5 ^^f8r7ha ^^f8r3hold ^^f87rik ^^f8r9im ^^f8r1ind ^^f8r5int ^^f8rke6ret ^^f8rkes2 ^^f8r7kinn ^^f8r1ko ^^f8r7k^^f8 ^^f8r7legger. ^^f8r7leggere ^^f8r7leggern ^^f8r7lin ^^f8r1m ^^f8rn6e ^^f8r7nip ^^f8r7ny ^^f8r5n^^e6 ^^f8rn5^^f8 ^^f8r1o ^^f87r6ok ^^f8r2os ^^f8r7pi 4^^f8rretf ^^f8r7rik ^^f8rr3is ^^f8r2ska ^^f8r1ski ^^f8r2skog ^^f8rs9kr ^^f8rs6lev ^^f8rste4ha ^^f8rste5i ^^f8rs3tra ^^f8rti7a ^^f8rti9en. ^^f8rti9ni ^^f8r5tj ^^f8r1tr ^^f8rum5 ^^f8r1v ^^f8r6vel ^^f8r6v^^e6 ^^f8r^^f8st3a ^^f87r^^f8va ^^f85r^^f8ver. ^^f85r^^f8vere ^^f8r7^^e5n ^^f8r1^^e5p ^^f8s2ak ^^f81sc ^^f8ser3l ^^f8se5s ^^f8s2h ^^f8s3hu ^^f8s5lu ^^f86smelte ^^f82sn ^^f81s2p ^^f8ss2 ^^f8s5salg. ^^f8s5salge ^^f8s9sk ^^f8sta4f ^^f8st9eft ^^f8sten3s ^^f8ster4l ^^f8st9ett 1^^f8stl 6^^f8stlande ^^f8st2ma ^^f8st3of ^^f8st1ov ^^f8st6vo ^^f81sy ^^f84syket 6^^f8t ^^f8ta4 ^^f8t3ak ^^f8t5asa ^^f8ta5v ^^f8t5d ^^f8te1d ^^f8te5gi ^^f8te5gr ^^f8te5is ^^f8te9ko ^^f8te1le ^^f8te1s ^^f8te3se ^^f8t5g ^^f8t7leg ^^f8t1sa ^^f8ts8^^e5 ^^f8t2t ^^f8t5tal ^^f8t5tenn ^^f8tte3s ^^f8tt5eta ^^f8tt3ete ^^f8tt9ri ^^f8tt9s2 ^^f8t1v ^^f85u6 ^^f88vanns ^^f86vas ^^f8v2b ^^f8v7be ^^f87vege ^^f8ve3gr ^^f85veis. ^^f8vel7p ^^f8ven5st ^^f8ver6by. ^^f8ver2l ^^f85verner ^^f8ve1s ^^f8ve5ten ^^f85vett. ^^f87vette ^^f87vetts ^^f8v3f ^^f87vins ^^f81vir ^^f8virke8 2^^f8vn ^^f8v9o 8^^f8vr ^^f8v7rei ^^f8v1s8 2^^f81v^^e6 ^^f8y1b ^^f8y5ba ^^f8yd8i ^^f8y5dr ^^f8yds8 9^^f8yem ^^f8y2fje ^^f8y3gi ^^f8y4kl ^^f8y2ku 2^^f8yl ^^f8y5land. ^^f8y5lande ^^f8y7lands. ^^f8y5las ^^f8y7men 1^^f8yne. 3^^f8ynen ^^f8yns6 ^^f8y3o ^^f8y1pl ^^f8y5po ^^f8yre1 ^^f8y8res ^^f8yre6ty ^^f8y1rik ^^f8y7riv ^^f8yrs8l ^^f8y3r^^f8 1^^f8ys. 8^^f8ysa ^^f8y1skj ^^f8y7slet ^^f8ys5set ^^f8y7stem ^^f8y3sto ^^f8y7sty 8^^f8ysu ^^f8y3s^^e5 ^^f8yte1i ^^f8yte1s ^^f8yt5h ^^f8yt3s ^^f8yt5ten ^^f8y7t^^f8 8^^f8yv ^^f8y5v^^e6 ^^f81^^f8 ^^f83^^e5r ^^e51ak ^^e55al ^^e5ar7d ^^e5ar5t ^^e5ar7v ^^e51be ^^e5ber2 ^^e51bi4 ^^e57bj ^^e51bl ^^e51br ^^e5bro8 ^^e55bya ^^e51bye ^^e52b^^e5 ^^e53b^^e5t. ^^e59b^^e5tan ^^e59b^^e5tar. ^^e53b^^e5te 6^^e5d ^^e59dat ^^e5de3re ^^e5de7ri ^^e5de1s ^^e5d7l ^^e5d2ma ^^e5d6n ^^e59dregi ^^e57driver. ^^e55drivere ^^e57drivern ^^e5ds1 ^^e5d2sa ^^e5d5sek ^^e5ds8la ^^e5d9slag. ^^e5d9slaga ^^e5d9slage ^^e5d7s8leg ^^e5d7slo ^^e5d3sl^^e5 ^^e5d1s2n ^^e5d3s2pe ^^e5d1v ^^e55em 4^^e5f ^^e51fa ^^e53fla ^^e5fly3p ^^e59flytting. ^^e59flyttinga ^^e57fr^^f8 ^^e5f^^f8r3s 4^^e5g ^^e5g7ei ^^e5g1h ^^e55gj ^^e5g7le ^^e5g8mo ^^e5g9ne ^^e5g4p ^^e55gr^^e5 ^^e5g7st ^^e5gs7v ^^e51gu ^^e5g5^^f8 ^^e55has ^^e52hi ^^e5hl6 ^^e53hu ^^e57jern. ^^e57jerne 8^^e5ka ^^e59kak ^^e57kas ^^e5k7av ^^e5ke1l ^^e5ker7t ^^e5k1g ^^e5k3h ^^e51kj^^f8 ^^e5k1ku ^^e5k7line ^^e54kly ^^e5k1l^^e6 ^^e5ko6 ^^e53kopi ^^e55korn. ^^e55korne ^^e55kost. ^^e5k3r^^f8k ^^e5k1r^^e5d ^^e5k1s ^^e5k8s7l ^^e5ks8v ^^e5k1t4 ^^e55kul ^^e5k1und ^^e5kval3f 2^^e5l ^^e5l7au ^^e5l1b ^^e5l9bat ^^e5l9be ^^e5le7gr ^^e5l9eini ^^e5le8le ^^e5le1m ^^e55leng ^^e5l3enh ^^e5le5p ^^e5ler1r ^^e5le1st ^^e5le2su ^^e5le1te ^^e5l3fe ^^e5l5f^^f8re. ^^e5l7f^^f8ren ^^e5l7f^^f8rer ^^e5l7f^^f8ri ^^e5l5gi ^^e58li ^^e5l5j ^^e5l1k ^^e5l5lags. ^^e5l1ma ^^e5l7me ^^e5l7odl ^^e5l5or ^^e5l1p ^^e5l2ro ^^e5l1sc ^^e5ls5l ^^e5l2so ^^e5ls7tj ^^e5l9stri ^^e5l1ta ^^e5l1un ^^e5l1v ^^e5l5^^f8y. ^^e5l7^^f8yd ^^e5l^^e58 ^^e5l7^^e5k ^^e51ma ^^e5m1b ^^e51menn ^^e5m5la ^^e5m1om ^^e5m3p ^^e5m1r ^^e5m3st^^f8 ^^e5m7^^f8y ^^e51m^^e5 ^^e57nap ^^e5nde7m ^^e5nd7heving. ^^e5nd9hevinga ^^e5nd7hevinge ^^e5nd7hevings. 7^^e5ndings. ^^e5nd3j ^^e5nd1l ^^e5nd5ri ^^e5ned2 ^^e5ne7i ^^e53nekt ^^e5ne1s ^^e5n1f ^^e5n1g8 ^^e55nis ^^e5n3lat ^^e5n7le ^^e5n8leg ^^e5n5o ^^e57ny ^^e57n^^f8 ^^e54oljem ^^e57op ^^e55ov ^^e53pap ^^e5p2e ^^e5pe2n ^^e5pen3a ^^e5pen1d ^^e5pen1s ^^e5pe5s ^^e51pla ^^e5p7p ^^e5ps1 ^^e52p^^e55 ^^e5r7aktig. ^^e5r7aktige ^^e5r1bo ^^e5r5br ^^e5r1b^^f8 ^^e5rd1b ^^e5rd5f ^^e5rd3se ^^e5rd5str ^^e5r5du ^^e5r7dy ^^e55rei ^^e5re3k ^^e5re1l ^^e5re5m^^e5l. ^^e5re9m^^e5la ^^e5re5m^^e5le ^^e5re7pe ^^e5re5st ^^e5re3ta ^^e5re1v ^^e5r5f ^^e5r5ge ^^e5r5gy ^^e5r2h ^^e5ring2 ^^e5r1k ^^e5r3la ^^e5r7legg ^^e5r1ma ^^e5r5me ^^e5r7mi ^^e5r9m^^e5l. ^^e5r9m^^e5la ^^e5r9m^^e5le ^^e5r9m^^e5ls. ^^e5rn5s4 ^^e5r3on ^^e5r3op 2^^e5r1p ^^e5r1r 3^^e5rs. ^^e5rs5af 3^^e5rsak 2^^e5rsav ^^e5rse2 ^^e5rs3el ^^e5r1sem ^^e5r7sja ^^e5rs5ko ^^e5rs1p 2^^e5rsr 2^^e5rst ^^e5rs1ta ^^e5rs3tri ^^e5r2st^^f8 ^^e5rs1u ^^e5rs1v ^^e5r7sy ^^e5r3s4^^e5 ^^e5r1te ^^e5r1t^^f8 ^^e5r3uk ^^e53russe ^^e5r1v ^^e5r4vo ^^e5r3yr ^^e5r7yt 2^^e5s ^^e57saf ^^e5sa7l ^^e5s8ar ^^e5s7bo ^^e57segl ^^e5se1s8 ^^e5s4f ^^e5s2g ^^e5s2h ^^e54sildf ^^e51sj ^^e54skalap ^^e5ske7t ^^e53s8ki ^^e58skjer ^^e54skolep ^^e5s7kop ^^e51skr ^^e55skun ^^e5s2m ^^e5s5mo ^^e5s2n ^^e59sona ^^e53sone. ^^e53sonen ^^e55soner ^^e57spissa ^^e55spisse ^^e5s6sc ^^e5s1sid ^^e5ss3k ^^e5stein4 ^^e55stein. ^^e55steine ^^e57steins. ^^e51sti ^^e58stigi ^^e57stol ^^e53svar ^^e5s7v^^e6 ^^e51sy ^^e5taks7 ^^e5t5arm ^^e5t1b ^^e5t6bransjef ^^e5t1ei ^^e5te1s 3^^e5tfer ^^e5t2ferd ^^e5t1l ^^e5t7marks. ^^e5t5na ^^e51to ^^e5t7ov ^^e5t1re ^^e5t1ru ^^e5t7sal ^^e5t9sid ^^e5t1s6k ^^e5t5st ^^e5t5s^^f8 ^^e5tti9andr ^^e5tt3o ^^e5tt5s ^^e5t1tu ^^e5t1u ^^e5t6un ^^e53t2ur ^^e5t7ve ^^e59t^^e6 ^^e5t1^^f8v ^^e5t7^^f8y ^^e53u ^^e53vak ^^e55vare. ^^e5ve7g ^^e53vei ^^e5ver8 ^^e55vilt. ^^e5v5l ^^e5v5s ^^e57vy ^^e55v^^e6rs. ^^e59v^^e5 ^^e51^^f8 liblouis-2.5.3/tables/da-dk-g2.ctb0000664000175000017500000001262712161041546013530 00000000000000# liblouis: Danish, grade 2 table # # Copyright (C) 2013 by Mesar Hameed , Bue Vester-Andersen # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the Lesser GNU General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis 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 Lesser # GNU General Public License for more details. # # You should have received a copy of the Lesser GNU General Public # License along with liblouis. If not, see # . # # April 21, 1997: Danske Punktskriftnævn - 1993 # Danish table (with the danish braille authority's 1993 braille code changes) lowercase é 6-123456 lowercase è 6-2346 lowercase q 6-12345 lowercase w 6-2456 lowercase x 6-1346 lowercase z 6-1356 include da-dk-g1.utb # letter a word af 356 word aldrig 1-35 word alle 1256 word allerede 1-123-1235 word alligevel 1-123-1236 word altid 1-2345-145 word altsâ 1-16 word altsÃ¥ 1-16 word at 1 # letter b word blevet 12-2345 word blive 12-3456 word bliver 12 # letter d word derefter 23456-1356 word deres 256 word derfor 23456-124 word derigennem 23456-24-12456 word dermed 23456-134 word derned 23456-1246 word derop 23456-135 word derover 23456-1346 word derpâ 23456-1234 word derpÃ¥ 23456-1234 word dersom 23456-234 word dertil 23456-2345 word derunder 23456-12345 word derved 23456-1236 word din 145-1345 word disse 145-234 word dit 145-2345 word du 145 # letter e word efter 1356 word eller 15 word endnu 15-136 # letter f word fik 124-13 word fordi 124-145 word forskellige 124-123456-15 word forskelligt 124-123456-2345 word forskellig 124-123456 word for 145 word fra 235 word förste 124-1356-15 word först 124-1356 word för 246 word første 145-1356-15 word først 124-1356 word før 12456 # letter g word ganske 1245-123456 word gennem 12456 word gik 1245-13 word gör 1245 word gør 1245 # letter h word ham 236 word hans 13456-234 word han 13456 word har 125 word havde 125-1456 word have 125-3456 word helt 125-2345 word hendes 125-234 word hende 125-145 word hun 136 word hvad 2456 word hvis 2456-234 word hvordan 34-1 word hvorefter 34-1356 word hvorfor 34-124 word hvorigennem 34-24-12456 word hvorledes 34-15 word hvormed 34-134 word hvornâr 34-1345 word hvornÃ¥r 34-1345 word hvorover 34-1346 word hvorpâ 34-1234 word hvorpÃ¥ 34-1234 word hvortil 34-2345 word hvorunder 34-12345 word hvorved 34-1236 # letter i word igennemi 24-12456 word igen 35 word ikke 24-13 word imidlertid 24-24 # letter j word jeg 245 # letter k word kan 13 word kommer 13-156 word kommet 13-346 word komme 13-146 word kom 13-134 word kunne 13-1246 # letter l word ligesom 123-234 word lige 123 word lille 123-123 # letter m word mange 134-12456 word med 134 word megen 146-126 word meget 146-346 word mellem 146-134 word men 146 word min 146-1345 word mit 134-2345 word mâske 134-123456 word mâtte 134-1256 word mâske 134-123456 word mâtte 134-1256 # letter n word naturligvis 1345-2345-1236 word ned 1246 word nogen 1345-1345 word noget 1345-2345 word nogle 1345-123-15 word nâr 1345 word nÃ¥r 1345 # letter o word ogsâ 14-16 word ogsÃ¥ 14-16 word og 25 word omkring 135-134-13 word op 135 word over 1346 begword over 135-1236-156 # letter p word pâ 1234 word pÃ¥ 1234 # letter r word ret 12356 word rigtige 1235-12456 word rigtigt 1235-2345 word rigtig 1235 # letter s word sagde 234-1456 word sammen 234-134 word samme 234-146 word selvfölgelig 234-1236-124 word selvfølgelig 234-1236-124 word selv 234-1236 word sidste 234-1356-15 word sidst 234-1356 word sin 234-1345 word sit 234-2345 word skal 123456 word skulle 123456-123-15 word snart 234-1235 word som 234 word sâdan 16-1 word sâledes 16-15 word sâ 16 word sâdan 16-1 word sâledes 16-15 word sâ 16 # letter t word tid 2345-145 word tilbage 2345-12 word til 2345 # letter u word under 12345 # letter v word var 36 begword vea = begword veb = begword vec = begword veden 3456-12346 begword veder 3456-23456 begword vedet 3456-2346 begword vede 3456-1456 word ved 1236 begword ved = begword veen 3456-126 begword veer 3456-156 begword veet 3456-346 begword vee = begword vef = begword vege 3456-12456 begword veg 123456 begword vehvor 3456-34 begword veig 1236-15-35 begword vei = begword vejene 3456-245-15-1246 begword vej = word ville 1236-123-15 word vil 1236-123 word været 1236-2345 word være 345 word været 1236-2345 word være 345 nocross de 1456 nocross den 12346 nocross der 23456 nocross det 2346 nocross en 126 nocross ende 126-1456 nocross er 156 nocross et 346 nocross ge 12456 nocross gen 1245-126 nocross ger 1245-156 nocross get 1245-346 nocross hv 2456 nocross ig 35 nocross me 146 nocross men 134-126 nocross mer 134-156 nocross met 134-346 nocross nd 12345 nocross ne 1246 nocross nen 1345-126 nocross ner 1345-156 nocross net 1345-346 nocross or 1346 nocross re 12356 nocross ren 1235-126 nocross rend 12356-12345 nocross rer 1235-156 nocross ret 1235-346 nocross sk 123456 nocross st 1356 nocross te 1256 nocross ten 2345-126 nocross ter 2345-156 nocross tet 2345-346 nocross ve 3456 nocross ven 1236-126 nocross vet 1236-346 nocross ver 1236-156 nocross vere 3456-12356 nocross verst 1236-156-1356 include hyph_da_DK.dic liblouis-2.5.3/tables/fi2.ctb0000664000175000017500000002643512161041546012724 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Finnish (iso-8859-1) # This is a modification of the Finnesh table which makes better use of the # 8-dot system. # generated by ttbtest letter \x0000 478 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 1578 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 24578 LINE FEED (LF) space \v 1378 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 13578 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 1345678 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 12678 ESCAPE letter \x001c 125678 INFORMATION SEPARATOR FOUR letter \x001d 3578 INFORMATION SEPARATOR THREE letter \x001e 278 INFORMATION SEPARATOR TWO letter \x001f 578 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 56 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 1246 DOLLAR SIGN punctuation % 146 PERCENT SIGN punctuation & 12346 AMPERSAND punctuation ' 5 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 2357 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 34 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 1238 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 4567 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 47 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 12356 LEFT SQUARE BRACKET punctuation \\ 1268 REVERSE SOLIDUS punctuation ] 23456 RIGHT SQUARE BRACKET punctuation ^ 457 CIRCUMFLEX ACCENT punctuation _ 78 LOW LINE punctuation ` 4 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 123567 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 234568 RIGHT CURLY BRACKET punctuation ~ 45 TILDE letter \x007f 12348 DELETE letter \x0080 2367 letter \x0081 1256 letter \x0082 123456 BREAK PERMITTED HERE letter \x0083 23678 NO BREAK HERE letter \x0084 345 letter \x0085 23458 NEXT LINE (NEL) letter \x0086 16 START OF SELECTED AREA letter \x0087 1234567 END OF SELECTED AREA letter \x0088 12345678 CHARACTER TABULATION SET letter \x0089 678 CHARACTER TABULATION WITH JUSTIFICATION letter \x008a 123458 LINE TABULATION SET letter \x008b 3568 PARTIAL LINE FORWARD letter \x008c 458 PARTIAL LINE BACKWARD letter \x008d 4567 REVERSE LINE FEED letter \x008e 3457 SINGLE SHIFT TWO letter \x008f 167 SINGLE SHIFT THREE letter \x0090 1234567 DEVICE CONTROL STRING letter \x0091 1348 PRIVATE USE ONE letter \x0092 12568 PRIVATE USE TWO letter \x0093 3567 SET TRANSMIT STATE letter \x0094 246 CANCEL CHARACTER letter \x0095 67 MESSAGE WAITING letter \x0096 1234568 START OF GUARDED AREA letter \x0097 368 END OF GUARDED AREA letter \x0098 24568 START OF STRING letter \x0099 2467 letter \x009a 12567 SINGLE CHARACTER INTRODUCER letter \x009b 47 CONTROL SEQUENCE INTRODUCER letter \x009c 7 STRING TERMINATOR letter \x009d 457 OPERATING SYSTEM COMMAND letter \x009e 13468 PRIVACY MESSAGE letter \x009f 13458 APPLICATION PROGRAM COMMAND punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 2358 INVERTED EXCLAMATION MARK punctuation \x00a2 13568 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 1578 CURRENCY SIGN punctuation \x00a5 1368 YEN SIGN punctuation \x00a6 468 BROKEN BAR punctuation \x00a7 4678 SECTION SIGN punctuation \x00a8 258 DIAERESIS punctuation \x00a9 138 COPYRIGHT SIGN letter \x00aa 478 FEMININE ORDINAL INDICATOR punctuation \x00ab 2378 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 357 NOT SIGN punctuation \x00ad 8 SOFT HYPHEN punctuation \x00ae 12358 REGISTERED SIGN punctuation \x00af 23568 MACRON punctuation \x00b0 568 DEGREE SIGN punctuation \x00b1 38 PLUS-MINUS SIGN punctuation \x00b2 237 SUPERSCRIPT TWO punctuation \x00b3 257 SUPERSCRIPT THREE punctuation \x00b4 48 ACUTE ACCENT lowercase \x00b5 2368 MICRO SIGN punctuation \x00b6 467 PILCROW SIGN punctuation \x00b7 378 MIDDLE DOT punctuation \x00b8 35678 CEDILLA punctuation \x00b9 27 SUPERSCRIPT ONE letter \x00ba 1358 MASCULINE ORDINAL INDICATOR punctuation \x00bb 5678 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 34568 VULGAR FRACTION ONE QUARTER punctuation \x00bd 34567 VULGAR FRACTION ONE HALF punctuation \x00be 345678 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 268 INVERTED QUESTION MARK uppercase \x00c0 1235678 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 123567 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 1678 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 14678 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 34578 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 234678 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 23467 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 3478 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 347 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 124567 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 15678 LATIN CAPITAL LETTER ETH uppercase \x00d1 1245678 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 34678 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 3467 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 145678 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 37 MULTIPLICATION SIGN uppercase \x00d8 24678 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 2345678 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 234567 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 1234678 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 12468 LATIN CAPITAL LETTER THORN lowercase \x00df 2348 LATIN SMALL LETTER SHARP S lowercase \x00e0 123568 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 12356 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 16 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 1468 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 345 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 3458 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 23468 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 2346 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 348 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 34 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 1568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 3468 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 346 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 14568 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2567 DIVISION SIGN lowercase \x00f8 2468 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 234568 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 23456 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 123468 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 124678 LATIN SMALL LETTER THORN lowercase \x00ff 134568 LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/mun.ctb0000664000175000017500000000166712161041546013043 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Munda include bengali.cti include text_nabcc.dis liblouis-2.5.3/tables/de-chess.ctb0000664000175000017500000000276712161041546013741 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # This text subtable defines braille representations for the chess figures in # terms of the letters that are used for them in the German language. # See: http://en.wikipedia.org/wiki/Chess_symbols_in_Unicode # generated by ttbtest punctuation \x2654 137 WHITE CHESS KING punctuation \x2655 1457 WHITE CHESS QUEEN punctuation \x2656 23457 WHITE CHESS ROOK punctuation \x2657 1237 WHITE CHESS BISHOP punctuation \x2658 2347 WHITE CHESS KNIGHT punctuation \x2659 127 WHITE CHESS PAWN punctuation \x265a 13 BLACK CHESS KING punctuation \x265b 145 BLACK CHESS QUEEN punctuation \x265c 2345 BLACK CHESS ROOK punctuation \x265d 123 BLACK CHESS BISHOP punctuation \x265e 234 BLACK CHESS KNIGHT punctuation \x265f 12 BLACK CHESS PAWN liblouis-2.5.3/tables/corrections.cti0000664000175000017500000000116312161041546014574 00000000000000# liblouis: corrections table # licenced under the LGPL # Append this table to others to correct scannos, etc. repeated ____ 456-456-456-456 repeated ---- 36-36-36-36 repeated .... 3-3-3-3 sign \x0094 5 correct "\x0094" "\"" correct "\x00a0" "\s" correct "\x000a" "\s" space \x00ad 0 correct "\x00ad" ? correct "\x2019" "'" space \x0097 0 correct "\x0097" "\s" correct "(\s" "(" correct "\s)" ")" correct "cornf" "comf" correct "cornm" "comm" correct "cornp" "comp" correct $p["-"] "\s-\s" correct "..." * correct "\s," "," correct "\s." "." correct "\s?" "?" correct "-\"" "--\"" correct [".\s\""]$s ".\"" correct "-"$s ? liblouis-2.5.3/tables/vi.ctb0000664000175000017500000002636112161041546012660 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Vietnamese (iso-8859-1) # generated by ttbtest letter \x0000 478 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 1578 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 24578 LINE FEED (LF) space \v 1378 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 13578 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 1345678 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 24678 ESCAPE letter \x001c 125678 INFORMATION SEPARATOR FOUR letter \x001d 1245678 INFORMATION SEPARATOR THREE letter \x001e 4578 INFORMATION SEPARATOR TWO letter \x001f 45678 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 678 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 345 DOLLAR SIGN punctuation % 246 PERCENT SIGN punctuation & 3468 AMPERSAND punctuation ' 3 APOSTROPHE punctuation ( 123567 LEFT PARENTHESIS punctuation ) 234567 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 346 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP punctuation / 34 SOLIDUS include loweredDigits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 236 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 356 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 47 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 13567 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 123568 LEFT SQUARE BRACKET punctuation \\ 168 REVERSE SOLIDUS punctuation ] 234568 RIGHT SQUARE BRACKET punctuation ^ 457 CIRCUMFLEX ACCENT punctuation _ 4567 LOW LINE punctuation ` 4 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 1356 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 1235678 LEFT CURLY BRACKET punctuation | 4568 VERTICAL LINE punctuation } 2345678 RIGHT CURLY BRACKET punctuation ~ 45 TILDE letter \x007f 456 DELETE letter \x0080 48 letter \x0081 18 letter \x0082 128 BREAK PERMITTED HERE letter \x0083 148 NO BREAK HERE letter \x0084 1458 letter \x0085 158 NEXT LINE (NEL) letter \x0086 1248 START OF SELECTED AREA letter \x0087 12458 END OF SELECTED AREA letter \x0088 1258 CHARACTER TABULATION SET letter \x0089 248 CHARACTER TABULATION WITH JUSTIFICATION letter \x008a 2458 LINE TABULATION SET letter \x008b 138 PARTIAL LINE FORWARD letter \x008c 1238 PARTIAL LINE BACKWARD letter \x008d 1348 REVERSE LINE FEED letter \x008e 13458 SINGLE SHIFT TWO letter \x008f 1358 SINGLE SHIFT THREE letter \x0090 12348 DEVICE CONTROL STRING letter \x0091 123458 PRIVATE USE ONE letter \x0092 12358 PRIVATE USE TWO letter \x0093 2348 SET TRANSMIT STATE letter \x0094 23458 CANCEL CHARACTER letter \x0095 1368 MESSAGE WAITING letter \x0096 12368 START OF GUARDED AREA letter \x0097 24568 END OF GUARDED AREA letter \x0098 13468 START OF STRING letter \x0099 134568 letter \x009a 13568 SINGLE CHARACTER INTRODUCER letter \x009b 2468 CONTROL SEQUENCE INTRODUCER letter \x009c 12568 STRING TERMINATOR letter \x009d 124568 OPERATING SYSTEM COMMAND letter \x009e 458 PRIVACY MESSAGE letter \x009f 4568 APPLICATION PROGRAM COMMAND punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 12345678 INVERTED EXCLAMATION MARK punctuation \x00a2 12345678 CENT SIGN punctuation \x00a3 12345678 POUND SIGN punctuation \x00a4 12345678 CURRENCY SIGN punctuation \x00a5 12345678 YEN SIGN punctuation \x00a6 12345678 BROKEN BAR punctuation \x00a7 12345678 SECTION SIGN punctuation \x00a8 12345678 DIAERESIS punctuation \x00a9 147 COPYRIGHT SIGN letter \x00aa 12345678 FEMININE ORDINAL INDICATOR punctuation \x00ab 2367 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 12345678 NOT SIGN punctuation \x00ad 12345678 SOFT HYPHEN punctuation \x00ae 12347 REGISTERED SIGN punctuation \x00af 12345678 MACRON punctuation \x00b0 12345678 DEGREE SIGN punctuation \x00b1 12345678 PLUS-MINUS SIGN punctuation \x00b2 12345678 SUPERSCRIPT TWO punctuation \x00b3 12345678 SUPERSCRIPT THREE punctuation \x00b4 12345678 ACUTE ACCENT lowercase \x00b5 12345678 MICRO SIGN punctuation \x00b6 12345678 PILCROW SIGN punctuation \x00b7 35 MIDDLE DOT punctuation \x00b8 12345678 CEDILLA punctuation \x00b9 12345678 SUPERSCRIPT ONE letter \x00ba 12345678 MASCULINE ORDINAL INDICATOR punctuation \x00bb 3567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 12345678 VULGAR FRACTION ONE QUARTER punctuation \x00bd 12345678 VULGAR FRACTION ONE HALF punctuation \x00be 12345678 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 12345678 INVERTED QUESTION MARK uppercase \x00c0 567 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 357 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 7 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 367 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 67 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 267 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 267 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 568 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 358 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 8 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 68 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 567 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 357 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1234567 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 6 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 12345678 LATIN CAPITAL LETTER ETH uppercase \x00d1 1457 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 67 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 367 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 2467 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 36 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 12567 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 35 MULTIPLICATION SIGN uppercase \x00d8 56 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 35 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 268 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 26 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 368 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 134567 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 12345678 LATIN CAPITAL LETTER THORN lowercase \x00df 234 LATIN SMALL LETTER SHARP S lowercase \x00e0 567 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 357 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 7 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 367 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 67 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 267 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 26 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 568 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 358 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 8 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 68 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 56 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 35 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 123456 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 6 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 12345678 LATIN SMALL LETTER ETH lowercase \x00f1 145 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 6 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 36 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 246 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 36 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 1256 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 34 DIVISION SIGN lowercase \x00f8 56 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 35 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 268 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 26 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 368 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 13456 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 12345678 LATIN SMALL LETTER THORN lowercase \x00ff 13456 LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/chardefs.cti0000664000175000017500000002004412161041546014020 00000000000000# liblouis: English, U.S. (EBAE) character definitions table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com # Computer braille single-cell characters space \s 0 blank space \t 9 tab space \x000a 0 newline space \x000c 0 space \x000d 0 carriage return space \x001b 1b escape character for html back-translation space \x00A0 a NO-BREAK SPACE 0020 NON-BREAKING SPACE include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation ( 12356 punctuation } 12456 punctuation ] 124567 punctuation ? 1456 punctuation : 156 punctuation ) 23456 punctuation ! 2346 punctuation { 246 punctuation [ 2467 punctuation ' 3 punctuation - 36 punctuation . 46 punctuation " 5 punctuation ; 56 punctuation , 6 sign & 12346 sign $ 1246 sign | 1256 sign \\ 12567 sign % 146 sign * 16 sign # 3456 punctuation ` 4 sign _ 456 sign ^ 457 sign @ 47 math = 123456 math < 126 math / 34 math > 345 math + 346 math ~ 45 # Accented letters lowercase \x00DF 4-234 LATIN SMALL LETTER SHARP S German lowercase \x00E0 4-1 LATIN SMALL LETTER A WITH GRAVE 0061 0300 LATIN lowercase \x00E1 4-1 LATIN SMALL LETTER A WITH ACUTE 0061 0301 LATIN lowercase \x00E2 4-1 LATIN SMALL LETTER A WITH CIRCUMFLEX 0061 0302 lowercase \x00E3 4-1 LATIN SMALL LETTER A WITH TILDE 0061 0303 LATIN lowercase \x00E4 4-1 LATIN SMALL LETTER A WITH DIAERESIS 0061 0308 LATIN lowercase \x00E5 4-1 LATIN SMALL LETTER A WITH RING ABOVE 0061 030A lowercase \x00E6 4-1 LATIN SMALL LETTER AE LATIN SMALL LETTER A E ash * lowercase \x00E7 4-14 LATIN SMALL LETTER C WITH CEDILLA 0063 0327 LATIN lowercase \x00E8 4-15 LATIN SMALL LETTER E WITH GRAVE 0065 0300 LATIN lowercase \x00E9 4-15 LATIN SMALL LETTER E WITH ACUTE 0065 0301 LATIN lowercase \x00EA 4-15 LATIN SMALL LETTER E WITH CIRCUMFLEX 0065 0302 lowercase \x00EB 4-15 LATIN SMALL LETTER E WITH DIAERESIS 0065 0308 lowercase \x00EC 4-24 LATIN SMALL LETTER I WITH GRAVE 0069 0300 LATIN lowercase \x00ED 4-24 LATIN SMALL LETTER I WITH ACUTE 0069 0301 LATIN lowercase \x00EE 4-24 LATIN SMALL LETTER I WITH CIRCUMFLEX 0069 0302 lowercase \x00EF 4-24 LATIN SMALL LETTER I WITH DIAERESIS 0069 0308 lowercase \x00F0 4-15 LATIN SMALL LETTER ETH Icelandic 00D0 00D0 lowercase \x00F1 4-1345 LATIN SMALL LETTER N WITH TILDE 006E 0303 LATIN lowercase \x00F2 4-135 LATIN SMALL LETTER O WITH GRAVE 006F 0300 LATIN lowercase \x00F3 4-135 LATIN SMALL LETTER O WITH ACUTE 006F 0301 LATIN lowercase \x00F4 4-135 LATIN SMALL LETTER O WITH CIRCUMFLEX 006F 0302 lowercase \x00F5 4-135 LATIN SMALL LETTER O WITH TILDE 006F 0303 LATIN lowercase \x00F6 4-135 LATIN SMALL LETTER O WITH DIAERESIS 006F 0308 lowercase \x00F8 4-135 LATIN SMALL LETTER O WITH STROKE LATIN SMALL lowercase \x00F9 4-136 LATIN SMALL LETTER U WITH GRAVE 0075 0300 LATIN lowercase \x00FA 4-136 LATIN SMALL LETTER U WITH ACUTE 0075 0301 LATIN lowercase \x00FB 4-136 LATIN SMALL LETTER U WITH CIRCUMFLEX 0075 0302 lowercase \x00FC 4-136 LATIN SMALL LETTER U WITH DIAERESIS 0075 0308 lowercase \x00FD 4-13456 LATIN SMALL LETTER Y WITH ACUTE 0079 0301 LATIN lowercase \x00FE 4-2345 LATIN SMALL LETTER THORN Icelandic 00DE 00DE lowercase \x00FF 4-13456 LATIN SMALL LETTER Y WITH DIAERESIS 0079 0308 uppercase \x00C0 4-1 LATIN CAPITAL LETTER A WITH GRAVE 0041 0300 LATIN uppercase \x00C1 4-1 LATIN CAPITAL LETTER A WITH ACUTE 0041 0301 LATIN uppercase \x00C2 4-1 LATIN CAPITAL LETTER A WITH CIRCUMFLEX 0041 0302 uppercase \x00C3 4-1 LATIN CAPITAL LETTER A WITH TILDE 0041 0303 LATIN uppercase \x00C4 4-1 LATIN CAPITAL LETTER A WITH DIAERESIS 0041 0308 uppercase \x00C5 4-1 LATIN CAPITAL LETTER A WITH RING ABOVE 0041 030A uppercase \x00C6 4-1 LATIN CAPITAL LETTER AE LATIN CAPITAL LETTER A E uppercase \x00C7 4-14 LATIN CAPITAL LETTER C WITH CEDILLA 0043 0327 uppercase \x00C8 4-15 LATIN CAPITAL LETTER E WITH GRAVE 0045 0300 LATIN uppercase \x00C9 4-15 LATIN CAPITAL LETTER E WITH ACUTE 0045 0301 LATIN uppercase \x00CA 4-15 LATIN CAPITAL LETTER E WITH CIRCUMFLEX 0045 0302 uppercase \x00CB 4-15 LATIN CAPITAL LETTER E WITH DIAERESIS 0045 0308 uppercase \x00CC 4-24 LATIN CAPITAL LETTER I WITH GRAVE 0049 0300 LATIN uppercase \x00CD 4-24 LATIN CAPITAL LETTER I WITH ACUTE 0049 0301 LATIN uppercase \x00CE 4-24 LATIN CAPITAL LETTER I WITH CIRCUMFLEX 0049 0302 uppercase \x00CF 4-24 LATIN CAPITAL LETTER I WITH DIAERESIS 0049 0308 uppercase \x00D0 4-15 LATIN CAPITAL LETTER ETH Icelandic 00F0 uppercase \x00D1 4-1345 LATIN CAPITAL LETTER N WITH TILDE 004E 0303 uppercase \x00D2 4-135 LATIN CAPITAL LETTER O WITH GRAVE 004F 0300 LATIN uppercase \x00D3 4-135 LATIN CAPITAL LETTER O WITH ACUTE 004F 0301 LATIN uppercase \x00D4 4-135 LATIN CAPITAL LETTER O WITH CIRCUMFLEX 004F 0302 uppercase \x00D6 4-135 LATIN CAPITAL LETTER O WITH DIAERESIS 004F 0308 uppercase \x00D8 4-135 LATIN CAPITAL LETTER O WITH STROKE LATIN CAPITAL uppercase \x00D9 4-136 LATIN CAPITAL LETTER U WITH GRAVE 0055 0300 LATIN uppercase \x00DA 4-136 LATIN CAPITAL LETTER U WITH ACUTE 0055 0301 LATIN uppercase \x00DB 4-136 LATIN CAPITAL LETTER U WITH CIRCUMFLEX 0055 0302 uppercase \x00DC 4-136 LATIN CAPITAL LETTER U WITH DIAERESIS 0055 0308 uppercase \x00DD 4-13456 LATIN CAPITAL LETTER Y WITH ACUTE 0059 0301 uppercase \x00DE 4-2345 LATIN CAPITAL LETTER THORN Icelandic 00FE # Miscellaneous math \x00B1 346-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN math \x00B7 4-16 MIDDLE DOT math \x00BC 1456-2-34-256-3456 VULGAR FRACTION ONE QUARTER No 0031 2044 math \x00BD 1456-2-34-23-3456 VULGAR FRACTION ONE HALF No 0031 2044 0032 math \x00BE 1456-25-34-23-3456 VULGAR FRACTION THREE QUARTERS No 0033 math \x00D7 16 MULTIPLICATION SIGN math \x00F7 4-34 DIVISION SIGN punctuation \x0092 3 punctuation \x0097 36-36 punctuation \x00A1 235 INVERTED EXCLAMATION MARK punctuation \x00ad 36 punctuation \x00BF 236 INVERTED QUESTION MARK punctuation \x2011 36 punctuation \x2013 36-36 punctuation \x2014 36-36 punctuation \x2018 6-236 punctuation \x2019 3 punctuation \x2019 356-3 punctuation \x201c 236 punctuation \x201d 356 punctuation \x2026 3 sign \x2122 45-2345 trademark sign sign \x00A2 4-14 CENT SIGN sign \x00A3 3456 POUND SIGN sign \x00A4 1246 CURRENCY SIGN sign \x00A7 4-234 SECTION SIGN sign \x00A9 45-14 COPYRIGHT SIGN sign \x00AE 45-1235 REGISTERED SIGN REGISTERED TRADE MARK SIGN sign \x00B0 56-145-1245 DEGREE SIGN sign \x00B4 b4 ACUTE ACCENT 0020 0301 SPACING ACUTE sign \x00B5 46-134 MICRO SIGN 03BC 039C 039C # sign \x00A5 YEN SIGN punctuation \x00A6 456-1256 BROKEN BAR BROKEN VERTICAL BAR punctuation \x0093 236 punctuation \x0094 356 punctuation \x0096 36 # sign \x00A8 DIAERESIS 0020 0308 SPACING DIAERESIS # sign \x00AA FEMININE ORDINAL INDICATOR 0061 # punctuation \x00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK LEFT # sign \x00AC NOT SIGN # sign \x00AF MACRON 0020 0304 SPACING MACRON # math \x00B2 SUPERSCRIPT TWO 0032 2 2 SUPERSCRIPT DIGIT TWO # math \x00B3 SUPERSCRIPT THREE 0033 3 3 SUPERSCRIPT DIGIT THREE # sign \x00B6 PILCROW SIGN PARAGRAPH SIGN # sign \x00B8 CEDILLA 0020 0327 SPACING CEDILLA # math \x00B9 SUPERSCRIPT ONE 0031 1 1 SUPERSCRIPT DIGIT ONE # sign \x00BA MASCULINE ORDINAL INDICATOR 006F # punctuation \x00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK Pf Y liblouis-2.5.3/tables/digits6Dots.uti0000664000175000017500000000016312161041546014466 00000000000000digit 0 245 digit 1 1 digit 2 12 digit 3 14 digit 4 145 digit 5 15 digit 6 124 digit 7 1245 digit 8 125 digit 9 24 liblouis-2.5.3/tables/hyph_cs_CZ.dic0000664000175000017500000005235712161041546014266 00000000000000UTF-8 .a2 .a4da .a4de .a4di .a4do .a4dé .a4kl .a4ko .a4kr .a4ku .ale3x .a4ra .a4re .a4ri .a4ro .a4ry .a4rá .a4sa .a4se .a4so .as3t3 .a4sy .a4ta .a4te .at3l .a4to .a4tr .a4ty .a4ve .b2 .c2 .ch2 .cyk3 .d2 .dez3 .d4na .dne4 .dneÅ¡4k .d4ny .dos4 .d4ve .d4vÄ› .d4ví .e2 .e4ch .e4ko .es3k .es3t .e4ve .f4ri .g2 .h2 .h4le .h4ne .i2 .i4na .i4ni .i4no .is3l .j2 .j4ak .je4dl .j4se .j4zd .jád4 .k2 .k4li .k4ly .kří3d .l2 .le4gr .li3kv .m2 .mi3st4 .moud3 .na3Ä4 .ne3c .neÄ4 .ne3Å¡ .ni2t .no4s3t .n4vp .ná1 .nář4k .o2 .o4bé .ode3 .od3l .od3rá .o4ka .o4ko .o4na .o4ne .o4ni .o4no .o4nu .o4ny .o4nÄ› .o4ní .o4pe .o4po .o4se .o4sl .os4to .os3t3r .os4tÄ› .ot3rá .ot3v .o4tí .o4tÅ™ .ovÄ›4t .o4za .oz3do .o4zi .o4zo .o4zu .o4Å¡k .o4Å¡l .o4ži .p2 .pa4re .pa3tÅ™ .polk4l .po3Ä4 .p4ro .p4rý .p4se .pu3b .r2 .rej4 .re3s .ro4k .roze3 .roz3r .ru4dl .s2 .s4ch .s4ci .sem4 .se3pn .s4ke .sk4l .s4ká .s4le .s4na .s4ny .s4pe .s4po .st2 .s4tá .s4ži .t2 .u2 .u4ba .u4be .u4bi .u4bo .u4de .u4di .u4do .u4du .u4dí .uh4n .uj4m .u4ko .u4ku .ul4h .u4ma .u4me .u4mi .u4mu .u4ne .u4ni .u4pa .u4pe .u4pi .up4n .u4po .u4pu .u4pá .u4pÄ› .u4pí .u4ra .u4ro .u4rá .us2 .u4so .u4st .u4sy .u4sí .ut2 .u4vi .u4ze .u4Äe .u4Äi .u4Äí .u4Å¡e .u4Å¡i .u4Å¡k .uÅ¡4t .u4ší .u4ži .už4n .u4žo .u4ží .v2 .va4dl .v4po .vy3 .v4zá .vý1 .v4ži .y4or .y4ve .z2 .za3 .zao3s .zar2 .zaÄ2 .zd2 .z4di .z4dr .z4ky .z4mn .z4no .z4nu .z4nÄ› .z4ní .z4pe .z4po .z4tÅ™ .z4ve .z4vi .Ä2 .Ä4te .é2 .í2 .ó2 .Å¡2 .Å¡e3t .Å¡4ka .Å¡4ke .Å¡4ky .Å¡4Å¥o .Å¡4ťá .ú2 .ú4dů .ž2 a1 2a. aa3t2 ab3lon ab4lý ab3ri ab4sb ab2st ac4ci a2d a3da a3de a3di ad2la a4dli a4dlá a4dlé ad4me ad4mu a3do ado4s a3d3ra ad3ri a3drž a3du a4duž 3a3dva ad3vo a3dy a3dá a3dé a3dÄ› a3dí ad4úz ad4úř a3dů a3dý ae4vi afi2a a2g a3ga ag4fa a3go ag3ro a3gu a3gá ah4li ah3v a2i a3in ai4re a3iv a2jd a2jm aj4me aj2o a2k a3ke a3ki a3kl ak4ni a3ko a3kr a3ku a3ky a3ká a3ké a3kó a3ků a3ký al4fb al4kl al4tz al3ží am4bd am4kl am4nu amo3s am4ži a4nae a4name an4dt ane4sk aneu4 an4sc an4sg an4sl an4sm an2sp an4sv an4tÄ an4žh ao4ed ao4hm ao4stÅ™ ao4tÄ ap4r. a4pso ap3t a4pÅ™. a2r a3ra ar4dw a3re a4rer ar4gl a3ri ar4kh a3ro a4rox ar3st a3ru ar2va a3ry a3rá a3ró ar3Å¡2 ar4Å¡r a3rů arůs3 a3rý a2s a3sa a3se a3sh a3sin as3ná a3so as3pi as4tat a4stk as4tm a4stru. as3tv a3su a3sv a3sy a3sá a3sé a3sí a3sů a2t a3ta at4ch a3te a3ti a4tio at4kl at3lo a3to a3tr at3re at3ron at3rov a4tru at4rá at4th a3tu a3tv a3ty a3tá a3té a3tÄ› a3tí a3tó at1Å™ a4tří. a3tů a3tý a2u au4gs a3uj auj4m aus3t a3uÄ 2av av3d av4d. av3lo a4vlu a4vlí av3t av4ti 2ay ay4on az3k az3la az4lé az3ni a3zp a2Ä a3Äa a3Äe a3Äi a3Äl aÄ4má a3Äo a3Äu a3Äá a3Äí a3Äů a2ň a3ňo a3ňu aÅ™e4k a3ří a4Å¡pl a4Å¡py a2Å¥ aú3t 2b. 3ba. ba4br ba4chr ba3ka ba4se 2b1c b1d be4ef be4et bej4m be3p beu4r be2z3 beze3 b1h 1bi bi2b3 bis3 bist4 bi4tr b1j 2bk 3bl. bl4bl b2lem b2les 3blk b4lán b2lém b1m 2bn 1bo bo4et bo4jm bo4ok bo4tr bou3s bo4Å¡k b2ral b2ran 2bri b4rodit b4rou broz4 b2ru b3ru. b3rub b2rán 2b1s2 bs3tr 2b1t btáh4 bu2c bu4en 3by. bys3 by4sm by4tÄ by4zn b2z 1bá 2b1Ä bé4rc 1bÄ›. bÄ›3ta 1bí 3bín bí4rc 2bň b3Å™a b3Å™e. bÅ™e4s b1ří 2bÅ¡2 2c. 1ca cad4l ca4es 2cc 1ce cech4 ced4l celo3 ce4ns ce4ov ce4ps cer4v ce2u 2ch. 1cha 4chalg 3che 4che. 2chl ch4ly ch4mb 2ch3n 2cht 4chte 1chu ch4u. 1chy 1chá 2chÅ™ 1ci cien4c cik4l 2ck2 c4ket ckte4rý 2cl c3la c3lé 2cn 1co co4at co4mm co4žp c2p 2ct c2ti ctis4 ct4la ct2n c3tv c2tÄ› cuk1 1c2v cy2 1cá 1cí cí4pl 2cň 1ců 2d. 1da da3d da4jÅ¡ da4kl da4tr d1b d2ba 4dbat. d2bá 2d1c dch4l 3dch4n d1d dd4ha 1de de4bre de3hn de3jd dej4mo de3kl de3kv de2na de2oz de3sl de4sm de4so de2sp des4t de3str de1x de4xt de2z de3zn dez3o de3Ät de4žp 2d1h 1di di4gg 4dind dis3k di4so d1j dj4us 2dk d3kv 3dl. d1la d4lab d4lak d3li 1dln d2lou d3lou. d2lu d3luÄ d4láž d1lé 2d1lí d2lů d1m 1dmd dmýš4 2dn 1do 4dobl 4doboj dob4rat do3by do3bÄ› do3bý do1d 4do4dd 4do4dj dod4n do3h doj4m 4dokn 4doly do3mn domoh4 do3p do4pc dop4n dor2v do1s dos4p dos4tiv do3t do3uk do3uÄ do3z2 doz4n do3Ä 4do4Än doÄ4t do4žp 4dran d4rap d1re d4ren 3drobn d3ros d3rou d3roÅ¡ dr4sc d3ruÅ¡ d3ré d3rý d4rýv 2d1s2 ds4ků ds4po d1t d3tl d3tÅ™ 1du dum3Å™ du3na du3p du4pn 2dur du3si du4í. d2v d4vac d3ve d3vl d3vr d3vy d3vá d3vÄ› d3ví 1dy dy4su d3zb d3zd d3zn 1dá 2d1Ä 1dé 1dÄ› 3dÄ›j 1dí 2dň d1Å™a dÅ™e4k d4Å™ep dÅ™e4pn d4Å™ev d1ří d2řít 2dÅ¡2 d3Å¡k d3Å¡t 1dů 3dů. dů3s 1dý d2ž2 2e. e1a ea3dr e2ar e1b eb4er ebez2 eb4li e2bÅ™ e4ch. e3chl. e4chm e3cho e2chr e3chv e4chÅ¥ ed4be ed4kv ed1l ed2ma e3dmn ed3v ed4ří e1e ee4th ee3xi eg4gi e1ha e1he ehno4 eh4nÄ› e1ho e1hr e1hu e1hy e1há e1hý e1i eilus3 ej3ag e3jas e1je e3jed ej3ele e3jez ej3in e3jis ej1m ej3mo e3jmu ej1o ej1u eju3st ej3v e2k e3ka e3ke e4kly e3ko e3kr e3ku e3ky e3ká e3ké e3kó e3kÅ™ e3ků e1la e4lau el4dv e1le e1lo e1lu e1ly el4ze e1lá e1lé e1lí e1ml e4mlí emo3k e1mr e1my e3má e1mÄ› e1mí e3mÅ™ e3mů e1mý em3že en4dv enitos4 en4sc en4si ent3r e1o eo3by eoch3r eod3l eo4du e4ole eo1s eo2st eo4tÅ™ eo3z eo4zb eo4zd eoÅ¡e3 epa3t e2pl e4pni ep2no e4pný epoÄ3t epro4zÅ™ ep4tl ep4tm ep4tn e4ptu epy3 2er e1ra er4a. e1re e1ri e1ro er3s er4s. er4sn e1ru e1ry e1rá e1ré e1rů e1rý e1s e4sag e2sce e4sin esi4s e2sk es4k. e4s4kn es3ku. es3ky es3ké e2sl e4s3li e4sly es2m e4sp. es4pe e2st e4st. e4ste es3tiž es4tol e4strou es3tán e1t e4tki e4tkr e4tli e4tly et3ri et3ro et3rů et1Å™ et4ún e1u eu3b eu3ct eu3d eu3k eu3m eu4m. eu3n eu3p eu3r eu4r. e4ura eu4ras eu4rg eu3s2 eu3t e4u4t. eu4tra eu4ts eu3v eu3z eu3ž e3vd eve4Å¡ e3v2k e4vsk evy3 evyjad4 evypá4t evy4Äk evÄ›4tr ex4ta e3xu ey4or ey4ov ezaos3 ez4ap ez4bo ez3de ez3dov ez3du ez4dÄ› e3ze ez4ed2 ez4ej ez4el ez4er ez4es ez4ez ez4eÅ¡ ezis4 ez4it ez4le ez4ná ez4nÄ› ez4py ez2t ez4ác ez4áh ez4Äe e3zí e3zÅ™ ez4Å™e e1á eÄ4kat e1Ät eÄ4te e4Äti e4Ätí e2ň e3ňo e3ňu e3ňá e3ón e1Å™ eÅ™e4k eÅ™4ku e3ří e2Å¡ e3Å¡e e3Å¡i e4Å¡ka e3Å¡l eÅ¡4lá e3Å¡o eÅ¡4to eÅ¡tíh4 e3ší eú1 eúmy4 eú3n eú3p eú3t eú3Ä ežíš4 1f 2f. fe4in fene4 fe4ue fi4em fi4fl f2l f3lí fló4r fm4no 2fn 2fr f4ran f4ras 3frek f1ri 2fs fs4te 2ft fu4ch 2fé f2ú 1g 2g. ga4uÄ ge2s ghou4 3gic 3gin gi4ím g4lom 2g1m 2gn g4noi g4nos go1 go4hm 3graf gu4el gu4it gu3m gu4m. gus4t gu3v 2h. ha4ag ha4ar ha4bl ha4br ha3dl ha4dla ha4ke has3t hatos4 ha4yd h2b h2c 2hd he4br he4id hej4s he2s he2u he3x hi4an hi3er hi4gh hi4re 2hk 4hla. h4led h3len 2hli 4h3lo. h3lob h3lop h3lov h3luj 2h1ly 4hlá. h4lás h3lí. 4hlík 2hlý h2m 2h2n h3ne h4ned h3niv h4noj 3hnÄ›d 3hodin ho3str hos4tÄ› 4hove 4hovna 4hovny 4hovná 4hovnÄ› h2r hra4p 2h1t h4tin h2tÄ› h4tít hu4ch hu3mo hu4tň 2h2v hyd1 hy4do hy4ps hys3 hy2t3r hy4zd h1Ä 2hň hÅ™2 hÅ™4by hý4bl h2ž 2i. i1a ia3d ia3g2 i4al. ias4t ia4tr i1b ib2l i2b1r i1ch i4chž i1d id4ge id2l id4lo. i4dlý i1em i1en i1et if1r ig4ne i1h i2hl i3hl. i4hli ih3n ih4na i3im i1j ijed4 ij4me ij4mi i2kl ik3le ik3lo. ik3m ik4ry i4kve ik4úř i1l il4ba iliÄ4n i4lnu ilu3 i1m i4mla i4mly i4mun i2n i3na ina3d in4cm in4dl i3ne 3infe in4gh in4gp in4gs in4gt i3ni i3no i3nu i3ny i3ná i3né i3nÄ› i3ní in4Å¡p i3nů i3ný i1o io4sk i2ps i1r iro4s i1sa is3c is4ch is4k. is3ka is3ke is3ko. is3kr is3ku is3kv is3ky i3slav is3lo is3lé is3pl is3po is1t is4tal is4tat is4th ist3v is3tí i1sy i3sá i1t it1r it4rh it4rp it4se it4su i2tv i1um iv3d i1x ix4td i3zp iz1r i1á i1Äl iÄ3t iÄ4tl iÄ4to i2Ä i1é ié4re. i1íc i1ím i1ó i1Å™ iÅ™4kl iÅ™4Äe i2Å¡ i3Å¡e i3Å¡i iÅ¡3k iÅ¡4kr iÅ¡4kv i3Å¡o iÅ¡4to i3Å¡u i3šá i3ší i2ž i3ža i3že i3ži i3žo i3žu i3žá 2j. ja2b2 jac4k ja4cq ja3d ja3g j3akt j1b2 jbyst3 2j1c j2d j3dob j3dok j3dos j3dr j3dá jd4ří j3dů jech4 j3ef j3ex jez3dí jg4ra 2j1h 1ji ji4ch jih3l ji4mž j4ina jis3k jit4ro ji2zv j1j 2jk j3kv 2j1l j2m j3ma j3mi jmou3d 2jmí 2jn jne3 j1ob j1od jod2Å™ j1oh j1op j4ora j1os jo3sv j2ov j3ovl j1o3z2 2jp jpor4 jpo4zv jpříz4 2j1r 2j1s2 j4sem j4si. j4sk. js4ko js4ká j4s4ků j4s4me j3sn j4sou. j4souc js4po j4s4te 2j1t j3tl ju4an ju3na ju3p j1us ju3sp ju3t ju4t. ju3v ju4xt ju3z j1už ju3ži 2jv2 j3vd j3vn 2jz j3zb j3zd j3zk j3zn j3zp jád2r 2j1Ä 2jÄ 1jí j3Å¡t jÅ¡4ti j3šť 2jú1 jú3n jú3Ä jú3ž 2jž 1k 2k. ka4bl ka4ch ka3dl 3kaj ka3ka 3kami 3kanÄ› ka2p3l ka2p3r ka2ps ka4pv ka2pÅ™ kas3t kast3r 3kat ka4uÄ 3kav 3kaÄ 3kaÅ™ kaÅ¡3l ka4Å¡p 2k1c k2d k2e ke4bl ke3jo ke4pr ke4ps 3ket 2kf 2kk k2l 3kl. 4k3la. k3lej 4k3li. k4lib k3lic 4kliÄka 4klo. k3los 2k3ly k3lá. k3lé k3ló k3lý 2k2m k3mÄ› 2kn kna4s ko3by 3kof ko4jm ko2pÅ™ ko4sk ko2t3v kous3k 3kov ko3zá 4kroa k3rob k3rof kr2s kr4ú. 2ks 2k1t kt2r kuch4 ku4fÅ™ ku4hr 3kuj ku3se ku3si ku3su ku4th ku3v 2k2v k4vrň 3kyn ky2pr kyp3Å™ ky4zn 3kác ká4pl 3kár 3kář 2kÄ k2ň k2Å™2 k3Å™ej kÅ¡4ti 3ků. 2l. 1la. la4br lab4s la3ka la4nq la4ps 4la3si la4vÅ¡ la4y. la2zm 2l1b 2l1c 2l1d ld4ne le4ad le4au lech3t leh3n le2i 1lej le3jo 4lejÅ¡k 1lel 4lench lepa3d lepo4s le4pr le4ps le4sc le4sm le4sv let4li let3m le2tr le4tÄ le4uk le4vh le4vk le3xi lez3n 2lf 2lg 2lh 3lhan 1li li4az li4bl li4bv li4dm lind4 3lio li4tň li4vr 2liž 2lj 2lk l4kat l2kl lk4nu 2ll 2l1m 2ln l4nul lo3br lo4id lo4is 1los lo3sp lo3stÅ™ lo3sv lo2tr lo4tÅ™ lo4u. lo3z loz4d lo4Å¡k 2lp l2pÄ› 2l1s2 l4sla ls3n lst4n l4stí 2l1t lt4ra lt4ru lt4ry lu4id lu4j. lu4k. lu4lk lu4m. lu4mn lu3pr lu3va lu3vl lu3vy lu3ví 2lv 2lz 1lá. lá4jÅ¡ lá4vÅ¡ 2l1Ä 1lé. 1lík lí4pl lí4zn 1líř 2lň 2lÅ¡2 l3Å¡t l4Å¡tý 1lů 1lý lý2t 2l2ž 2m. 1ma maj4s ma4kl ma4kr 4mald mas3k mat3r ma4tra ma4vÅ¡ maz3l 2m1b 2m1c 2m1d2 m2dl 1me 3me. me4go me4is met3re me3x mezi3s 2mf mh4le 1mi mid3l mik3r mi4xt 2mk2 3m2kl mk4la mk4li m2l 4mla. 2mle ml3h ml4h. 2mli ml4sc ml4sk 4mlu. 2mn m3na mna4s m4noh m3nos m4noz 3množ m3ná m3né m4néz m3nÄ›j m3ný 1mo mod3r mo2hl mo2k mo2s mo4s. mot3Å™ 4mout moza4 mo3zÅ™ moú3 2mp m4plo mpo4s m2ps mp4se mp2t mr2s 2m1s2 m4stl 2m1t 1mu mu4fl mu3n mu4n. mu4nd mu4nn mu4ns mu4nÅ¡ 2muÅ¡ 2mv mys3lo my4Å¡k 2mz 3má. málo3 má2s 2mÄ m2Äe mí1c mí4rň 2m2Å¡ mÅ¡4Äi mÅ¡3Å¥ mÅ¡4Å¥an. 3mů. 3mý. m2ž 1n 2n. 3na. na3ch na4do na4em na3h na4h. na3jd na3ka nam4ne na3p2 na3s2 na4s. nat2 na3tl na3tÅ™ na3z naz4k na4zÅ¡ na4Ä. na3Å¡ naž4n 2nb 2n1c n4chc 2n1d nd4hi ndo4t nd2re nd4ri nd4ří ne1d ne4gl ne1h ne3h4n ne2j nej3t nej3u ne3kl ne4kro ne3kv ne4m. ne3p ne3s2 ne4s. nes4le ne4ss 4nesti ne3tl net4r ne3ud ne3v2 ne4v. ne3z nez4n ne3Å¡k ne3šť 2nf n3fr 2ng ng1l ng4la ng4le ng4lí n4gro ng4vi nik4t ni4mr ni4mž 3nio 3nisk 2nitÅ™ n1j 2nk 2n1l 2nn no3b2 no4bs no3hn no4hs no4ir no4mž no4sky no3sm no3str not4r no3z no4zd no4Å¡k 2nož 2n1s2 n2sa ns3ak ns4ko n4soc ns3po nst4ra 2n1t nte4r3a nt4lem nt4r. nt3ru nt3rá 2nub nu4gg 3ny. 2nz 3nák ná3s2 ná4s. 2n1Ä 2nÄ 2nív 2níž 2nó 2nÅ¡2 n3Å¡t nÅ¡4Å¥o nů2 2nž 2o. o1a oang4 o1ba o1be obe3j obe3s obe3z ob1l ob1r ob4rň o1bu obys4 ob3z o3bé ob3Å™ez o1c o4chl o2chr oc4ke oc4ko o4ct. oct3n ocy3 oc4ún od3b odej4m ode3p ode3s od1l o4doc odos4 odo4tk od3ra od4ran od3rů o3drž od3v od1Å™ o1e2 oe3g oe3ti o2fl ofrek4 og2 o3gn o1h oh4ne o1i oi4ce o4int o1j o4jar oje4dl o4jmi o4jmov o4jmu o4jmů oj2o o4juz 2oka ok2te o1l ol4gl ol4to o1m om4kl om2n o2n o3na ona4s o3ne o3ni o3no ont4ra o3nu o3ny o3ná onář4ka o3nÄ› o3ní o3nů o3ný o1o oo4hÅ™ oote2 opoÄ3t opro4s o2ps o4ptu opá4t o4pÅ™. opÅ™ej4 opÅ™e4jm o1ra o4rae or4dm o1re o1ri o1ro or3st o1ru or4vá o1ry o1rá o3ré o1rů orůs3 o3rý o1sa o4sai ose4s osi4d o1sk o4s3ke o4sku osk3v o4ská o4ský o1sl os4la os4li os4lý os3mo os4mu o4st. o4stg o4stm os4tor os3trů o4sté o4stÅ¡ o4stý o1sy o1t ot4kl o4tlý oto3s ot3ro ot3ví o3tí o3tÅ™ ot3Å™i o2u ou3bÄ› ou3dÄ› ou4fl ou4il ou4is ou4k. ou3ka o4ukl ou3kr ou3ká ou3m oup3n oupo4 ou4s. ou3sa ou3se ou4sk ou3sm ou4tv ou3v ou4vl ou4vn ouz3d o4uÄk ou3ži ovi4dla o4vsk ovy2p o2vÅ¡t o1x o2z o3za oz1b oz4d. oz3dá oz3dÄ› oz3dí o3ze oze3d2 ozer4 oz1h o3zi oz3j oz3k oz4ko oz1l oz3m o4zn. o3zo oz3p oz4py oz4pÄ› oz4pí oz3ro oz3ru oz3rů oz3t o3zu o4zut oz3vr oz3vá o3zí o3zů ozů4s o1Ä oÄ2k oÄ4ka o2ň o3ňa o3ňo o1Å™ oÅ™i2s o3Å¡k o4Å¡ku o4Å¡ky o3Å¡l oÅ¡4lá oÅ¡4mo oÅ¡4ti oÅ¡4Å¥u o3žl ož4mo 1p 2p. pa4ed pa4es pa4kl pa3si pa4t. pat4ri 2p1c pe4al pede4 pe4ig pe4np peri3 pes3t3 pe4tra 3peÄ pi4kr pi4pl 2pk p2kl p2l 3pl. 4p3la. pl3h pl4h. 4p3li. 4plo. 2pn p2nu po1b2 po3c2 3pod podbÄ›4h pod4nes po3dru po3drá po3h poly3 po3m2 po4mp po4ol po3p po4p. po4pm po1s2 pos4p post4r po3t2 po4t. po4tn po3uk po3uÄ po3už 3po3v po3z2 po4zd poÄ2 po3Äk poÄ3te po3ří po4Å¡v 2pp 4pra. pra3st pr2c pro1 prob2 pro3p pro3t4 pro3z pr2s 4prán prů3 pse4s 2p1sk p4sut 2pt p4tej p4ter p4tev pt4ri p3tu p4tá. pu4dl pu4tr pyt3l pá1 pá2c pád3l pá4nv pá4sl 2pÄ pé4rh 2pÅ™. pÅ™e3h pÅ™e3j pÅ™e3t4 pÅ™e3z pÅ™e3Ä2 pÅ™i3 pÅ™ih4 2pÅ¡ pÅ¡4ti 2pÅ¥ qu2 2r. 1ra. ra4br ra4em ra4es ra4ff ra4hl ra4hm ra4jg ra4jÅ¡ 2rak ra4nh ra3si rast4r ra4vv ra4wl ra4y. ra4yo ra4Äm 4raži r1b r2bl r1c rca3 r3cha r3cho rc4ki r1d r4dla rdo2s re4ad re4au red4r re4et re3kl re3kvi re4mr re2sb res3l retis4 ret4r re4um r1ha r3hl. rh3n r1ho r3hu r1há ri4bb 1ric ric4ku ri4dg ri4dr ri4fl ri4gh ri4zm 2rk r2kl r1l 2r1m r4mio 2rn rna4vÅ¡ rn4dr ro4ad ro3by rod2l ro3d4r 3rofy ro3h ro4h. ro4jb ro4kÅ¡ rom3n romy4s ropát4 ro2sb ro4skv ro4sky ro3sv ro3ti ro3tl ro4tÄ ro3vd rovÄ›4t 3rový roz3d roz3n ro4zo roz3v ro3zá ro4Äp rpa3d 2rr rr4ha rr4ho 2r1s r2st r4stu rs3tvÄ› rs3tvý 2r1t r2th r4trá rt4sm rtu3 r2t3v rt4zu 1ru. ru3se ru3si rus3k ru3ži 3rvaní r1x 1ry. rych3 ryd2 rys3ky rys3t ry4zk ry4zn ry4í. ry4Å¡k 2rz rz3d rz3l rád4l rá4dž 1rák rá3ri 1rář r1Ä 4rÄitý. rÄ3t 3ré. 2ró 2rÅ¡ rÅ¡4ní rů4m. růs3ta rů4v. 3rý. rý4zn 2s. sa4pf sa4pr sas3k s2b2 s2c s3ca s3ce. sch2 sch4l sch4n 3schop s3ci sci4e s3cí s2d 1se se4au se3h se4ig se4il sej4m se4ku 3sel se3lh 3sem ser4va se3s2 ses4k se4ss se4stra se4stru se4stÅ™ set2 se3tk se3tÅ™ se4ur se3z se3Ät 2sf s3fo 3sfé s3fú 1si 3sic 3sif si4fl sig4no 3sik si3ste 3sit s2j s3ju s2k 4skac s4kak 4skam s4kok 2skon skos4 4skot sk4ra sk4ru sk4ry 4skve sk4vo s3kán s3ků 3sl. 4s3la. s4lav s3le. s4led s3lem s3len s3let s4lib s4liÄi 3sln 4s3lo. s2ly s3ly. s1lí s2ma s4mek s2mo 2sn s2na s3nat s2ne s3ne. sn4tl s2ná s3ná. s4níd 1so sob4l so3br so4sk so4tv sou3h sou3s souz4 so4Å¡k s2p s4pol spro4s 1sr 2ss ss4sr 2st. 4sta. s3taj s2tan st4at 4stec s4tep st4er s4tero s4tich 2stil s4tink 4stit. 4stiÄ st3lo 2stn 4sto. s4tona 4stou. 4str. 4stram s4trik 4strn 4strác 4stupni s2tv st4ve 3ství 4sty. s4tyl 3styÅ¡ s2tá 4stá. s3tář 4stÄ›. s4tÄ›d 3stÄ›h s2tÄ›r s2těž s1tí 2stí. s3tÅ™ej 1su su4ba su4bo suma4 su3ve s2v sy3c sych3r sy4nes sá2d 3sáh sá2kl 2s2Ä s3Äi 1sé 1sí 2sň 2sÅ¥ s3Å¥o 1sů s2ž 2t. 1ta. ta2bl tac4tvo t2a3d 1taj ta4jf ta4jg 4talt 4tand 3tanÄ› t1ao 2tark tast4 ta3str ta4Äk 2t1b 2t1c 1te 3te. te4ak te4fl te4in 4teném teob4 tep3l ters4 tes3ta te4tr te4uc te4ur te4ut 2tf 2tg 1ti ti4gr 2tih ti3kl tin4g ti4pl ti3sl tis4tr ti4tr 2titu tiz4r 4tizí tiú3 2tiž 2tk2 t4kal 4t2kan t4kat t2kl tk4la tk4li 4tknÄ› t2ká 2tl 3tl. 4tla. t1le tles3 3tlm t3lo. t4lou tlu3 tlu4s t1ly t1lé 2tm t2ma 2tn t3ní 1to to4as to3b tob4l to3dr to4hm to4ir 2toj tol4s to4ol 4top. 4topt 4topu 2torn 2toup 2tp t3rant t4rea t4ref tre4t 4tric. trip4 t4rit t4rog t3rol tro4sk t4rou 4trouh 4troň. 4trun t4rus 4t4ruž t3ráln 4tráš 2trÄ t3rům t3rův 2trý 2t1s ts4ko ts2t 2t1t tt4ch tt4ri 1tu. tu4ff 1tuj tu4lk 2tup tu4r. tu3ry tu4s. tu4Å¥. tu3ži t2v 2tve 2t3vi t4vinn t4viÅ¡ t4výc 1ty. ty4gÅ™ ty2la ty4Å™e ty4Å™h ty4Å™j ty4Å™o ty4Å™r ty4řú 3tá. tá4fl t2Ä t3Äi 2tÄí 1té té2bl 3tém 1tÄ› tÄ›3d4l 2tÄ›h 2tÄ›nn 2tÄ›p 1tíc 4tíc. 4tíce 1tím 2tín 2tír 2tÅ™ t4Å™eb tÅ™eh3n t2Å™el t2Å™ic t3Å™il tÅ™4ti t1Å™u t2řá 3třáb tří4s 2tÅ¡ t3Å¡t tÅ¡4ti 1tů 1tý. 1tým 1týř 3týš u1 2u. u2at u2b u3ba u3be u3bi u3bo ubs4t u3bu u3bá u3bí. u3bů uc4tí 2u2d u3de u3di u3do u3dru u3du u3dy u3dí ue4fa 2uf u2hl uh3lá uh3no u2in u2jm u2k u3ka. uk4aj uk4al uk4at u3ke uk3la uk3le u3ko u3ku u3ky uk4á. u3ků ul4fa ul1h ul4pí u2m u3ma u3me u3mi um4pl um4ru u3mu u3má 3umÅ™ u2n un4dl u3ne u3no u3nu u3nÄ› u3ní u3nů un4žr u2p u3pa u3pe upe2r3 u3pi u3pln u3pu u3py u3pá u3pÄ› u3pí u3pů u2r u3ra u3re u3ri 2u3ro u3ru u3ry. u3rá 1urÄ u3rů u2s us3ky us3ká us3ké us3ký us1l us2lo u3so u4ste u4sty u4sté u4stÄ› u3stÅ™ u4stÅ¡ u4stý u3su. u3sy u3sá u3sí u3sů u4tro u4trá u2v u3vi u3vu u2z u3ze u3zi uz1l u3zo u3zu u3zí u2Ä u3Äa u3Äe u3Äi u3Äo uÄ3t u3Äu u3Äá u3Äí u2Ä u2ň u2Å¡ u3Å¡e u3Å¡i uÅ¡4kl u3Å¡o uÅ¡3tí u3Å¡u u3šá u3ší u2ž u3že u3žo u3žu u3žá u3ží 1v 2v. va3dl va4jÅ¥ va4kl 2v1b 2v1c v2ch 2v2d v4dal v3di v4dÄ›k v4dÄ›Ä ve3dle ve3jd 3ven ve2p ve3ps vep3Å™ ves3l ve4sm ves4p ve3sta ve3t4Å™ ve2z3m vi4ch vide2 vi4dr vi4et vi4kr vi2tr 2vk v2kr v2l 2v3la. 4vle. 4vlem 2vlo 2vm 2vn v4nad vo3b vo4ic vo4ja vo4jb vo4jd vo4jj vo4jm vo4jÅ™ vo2s vo4tÅ™ vou3 vous2 v2p vr2c vr2dl 4vrny v1ro vr4st vrst3v vrs4tvÄ› 2vs2 v1sk v3stv 2v2t vy3c vy3d2 vy4dra vyp2 vy3s2 vy4sn vys4t vy3t vy3Ä vyÄ4k vyÅ¡2 vy4Å¡. vy4Å¡m vy4šš vy4žl v2z2 vz4no vz4né vz4nÄ› vz4ní vá3ri 2v2Ä v3Äá v3Äí v4Äír vÄ›4cm vÄ›3t4a více3 ví4hat 3vín 2vň 2vří v3řín v2Å¡2 vÅ¡e3s v3Å¡tí. 3výs vý3t 3vý3z v2ž2 wa4fd 3war wa4re we2 2x. xand4 2xf xisk4 2xn 3xov x1t xt4ra xy4sm y1 y2a y2bl yb3ri y2ch y4chr y2d1l yd4lá y2dr yd4y. y2e y2gr y3hn yh4ne yj4ma yj4me y2kl yk3la y3klop yk4ly ymané4 ym4kl yna4s y3ni ype4r yp4si yp4tá y2pÅ™ yr2v y2s y3sa y3se y3si ys3lu y3sm y3so y3sp ys2t ys3te yst4r y3su y3sv y3sy y3sá y3sé y3sí yt4me yu3ž y3vs yvÄ›4t y3zb y3zd y3zk y3zn yz4nÄ› yz4ní y3zp yz4po yÄ2k y2ň yÅ™3b yÅ™k4n yÅ™4Äe y3ří y2Å¡ y3Å¡e y3Å¡i y3Å¡k yÅ¡1l y3Å¡o y3Å¡p y3Å¡u y3ší yž2 y3žd 1z 2z. zab2l za4bs za4dk za3dl za4dn za3h za3i za3j za4jk za3k za4kt zal4k zam4n za3p2 za3s2 zat2 za3tl zat4r za4ut za3z zaz4n za4zÅ¡ za4Ä. za3Å¡ zaÅ¡4k za4Å¡s 2zb zban4 z2by zbys4 2z1c 2z2d z3di zdnÄ›4ní z4doba z4dobný zd4re zd4ví z2e ze3h ze3p2 4zerot ze3s2 zes4p zet2 zev2 ze3vn ze3z ze4z. 2z2f z1há z4ine z2j z3jí 2z2k z3ka. z3ky z3ké z3ků z3ký 2zl 3zl. zlhos4 zlik3 z3ly. z2m2 2zme z3mn z3my z4mÄ›n 2z2n 3znak z4nal z3ne. z3nic z3no z3nu z3ny z3né z3nÄ› z4nÄ›l z3ní z4nít z4nív z3ný zo4tr zo4Å¡k 2z2p z3pt z4pát 3zrak 2z1s2 2zt ztros3 z4trá z3tÅ™ 3zu. zu3mo zu3mÄ› zu3mí zu3Å¡ z2v zva4d z3vaÅ™ z3vi zvik4 zv4nÄ› z3vod z3voj z4von zv4ro z4ván z4vÄ›s z3víj 3zy. 2zz zá1 záh2 zá4kl. 3záp zá3s2 zá3z záš2 2zÄ z3Äl 2zň z2Å™ zÅ™ej3 z3Å™ez z3Å™eÅ¡ 2zÅ¡2 z3Å¡k zÅ¡4ka z3Å¡t 2z2ú1 zú3Ä zú3ž zů3s á1b á2bl áb4ry á4bÅ™. á3cho ác3ti3 á1d á2dl ádo4s ádos4ti ád1Å™ á1ha á3he áh1l á3hl. áh3n á1ho á1hr á1há á1j á4jmu áj4mů á4kli ák4ni á1la á1le á1lo á1lu á1ly á3lé á1lí á3my á3mé á1mÄ› á3mí á3mý áne4v á1ra á1re ár2m á1ro á1ru á3rů á1s á2sc á2s3k ás4k. ás4kl ás4kn á2sla ás4ly á2sm ás4po á2st át3k át1r á1tu á1ty á1tí á3tý áv4si áv4sí áz3k áz3ni ázni4c áz4vi á2ň á1Å™ ář4ke ář4ků á2Å¡ á3Å¡e á3ší 2Ä. 1Äa Äa4br 2Äb 2Ä1c 1Äe 3Äe. Äe1c Äes3k 1Äi 2Äk Ä3ka. Ä3ko Ä3ku Ä3ky 2Ä1m 2Än Ä2ne 1Äo Ä2p 2Äs Ä1sk Äs4la Äs4sr 2Ä2t Ä4tené. Ä4tený Ät4la Ä4tový. 3Ätv 4ÄtÄ›n Ä3tí 1Äu 1Äá 1Äí Äís3l 1Äů 2Ä. 1Äa 1Äo Äs4te 2Ä1t 3Äuj é1 é2d é3di é3do é2f é3fo éf1r é2kl é2l é2m é3ma é3me é3mi é3mo é3mu é3mů 4ére. é2s é2t é3ta é3to é3tá é2Å¡ é2ž Ä›1c Ä›d3r Ä›3ha Ä›3he Ä›3hl. Ä›h3lo Ä›h3n Ä›1ho Ä›3hu Ä›3hů Ä›3ja Ä›1je Ä›1jo Ä›3jů Ä›4klé Ä›3k2t Ä›1l Ä›1ra Ä›ra3d Ä›1re Ä›1ro Ä›r3s Ä›rs4t Ä›1ru Ä›1ry Ä›1rů Ä›s3k Ä›s3n Ä›t1a3 Ä›t4ac Ä›t1l Ä›1tr Ä›t3ra Ä›4traj Ä›t3v Ä›1tí Ä›t3ří Ä›2v Ä›3va Ä›3ve Ä›3vl Ä›3vo Ä›3vu Ä›3vá Ä›v3Ä Ä›2z Ä›3ze Ä›3zi Ä›z3n Ä›3zo Ä›3zí Ä›1Å™ Ä›2Å¡ Ä›3Å¡e Ä›3Å¡i Ä›3Å¡o Ä›3Å¡u Ä›3šá Ä›3ší ěš3Å¥ ěš4Å¥s Ä›2Å¥ Ä›3Å¥o Ä›2ž Ä›3že Ä›3ži Ä›3žo Ä›3žu Ä›3ží í1b íb3Å™ í3cho ích4t íd1l í1h í2hl íh3n í1j íjed4 íj4mů í2kr í1l í1má í3mé í1mÄ› í1r í1sa í2s3k ís4kl ís4kn ís4l. ís3le ís4ln ísáh2 í1t ít3k í3t3Å™e íz3da íz3de íz3k í3zna í3z3ni í3znÄ›n í2ň í1Å™ í2Å¡ í3Å¡e í3Å¡i í3Å¡o í3ší 1ň 2ň. 2ňa ňa3d 2ňk 2ňm 3ňov ň1s 2ň1t ó1 ó2z ó3za ó3zi ó3zo ó3zy 2Å™. Å™a4pl Å™a4Äm 2Å™2b 2Å™c 2Å™d Å™e3ch Å™e4dob Å™e1h Å™e3jd Å™e3kl Å™e3kv Å™e4kří Å™eo4r Å™e3p2 Å™e4p. Å™e4pk Å™e4pÄ Å™er4v 2Å™es Å™e3ska Å™e3sko Å™e2sp Å™es3po Å™e4sr Å™e3sta Å™e3stu Å™e3stá Å™e3stÅ™ Å™e3tl Å™et4Å™ Å™e3zd Å™e3zk 4Å™ezl Å™e3Ät Å™i1 Å™ia3 Å™i3h Å™i4h. Å™i4hn Å™i4jÄ Å™i4l. Å™i4lb Å™il2n 4Å™ine Å™is2 3Å™i4t. Å™i4v. Å™i4vk Å™i4vn Å™i3z Å™iÄ4t Å™i3Å™ Å™i4Å¡. 2Å™k Å™2kl Å™k4la Å™k4li Å™k4ly Å™k4no 2Å™1l 2Å™1m 2Å™n 1Å™o 2Å™ou 2Å™2p 2Å™1s Å™s4to 2Å™1t Å™2v 2Å™z řá4pl řá2sl 2Å™1Ä 2říd ří4kÅ™ ří1s 2řš Å™3Å¡t řš4ti 1Å¡ 2Å¡. Å¡ab3 Å¡a4vl 2Å¡1c Å¡ej4d Å¡ep3t Å¡i4mr 2Å¡2k Å¡3ka Å¡3ke Å¡3k3li 4Å¡3kou 4Å¡kov 3Å¡kr Å¡k4ro Å¡3ku. Å¡3ky 2Å¡l Å¡2la Å¡2li Å¡3liv Å¡2lo Å¡lá2 Å¡2lé Å¡2lý 2Å¡1m Å¡mi4d 2Å¡n Å¡2p 2Å¡1s 2Å¡t Å¡4tip Å¡t4ka Å¡t4kl Å¡4tÄ›k Å¡2tÄ›s Å¡4tÄ›v Å¡4típ Å¡2v ší3d Å¡2ň Å¡3ší 2Å¡2Å¥ Å¡3Å¥o Å¡3Å¥u Å¡3ťá 1Å¥ 2Å¥. 3Å¥al 2Å¥k 2Å¥m 2Å¥t ťáÄ4k 1ú ú2c2 ú2d új4ma ú2k ú2l ú2n ú2p ú2t út4ko ú2v ú2z úz3k ú2Ä 3úÄe úře4z úš4ti ú2ž ů1b ů1c ů1hl ů3jd ů4jmový ů1le ů1my ů1mÄ› ů1ra ůr4va ůr4vy ů1s2 ů2st ůs3te ůs3tán ůt2 ů3tkl ů2v ů3va ů3vo ů3vÄ› ů2z ů3zo ů2ž ů3že ů3ži ů3žo ý1b ý3cho ý1d ýd4la ý1h ý1j ý1l ý1ml ý1mÄ› ý2n ý3no ýpo3Ä4 ý1r ý1s2 ý2sk ý1t ýt4ku ýt4ky ý1u ý4vli ý3zk ý3zn ý4zvu ýÄ4nÄ› ý1Å™ ýš3l 1ž 2ž. ža3d ža4tv 3žaÄ 2ž1b 2ž1c 2ž1d že2b3 žeh3n že4ml že4zg ži4dl ži4jm 3žil ži2vl 2žk žk4ni 2žl ž4lic 3žlo 2ž1m 2žn žon2 2ž1s2 2ž1t ž2v žá4br žá4nr 2Å¾Ä Å¾Ã­4zn 2žň 2žš žš4ti žš4tÄ› liblouis-2.5.3/tables/Lv-Lv-g1.utb0000664000175000017500000001701112161041546013521 00000000000000# liblouis: Latvian Grade 1 Braille Table # Created & maintained by Leon Ungier . include text_nabcc.dis # ----------- define all chars -------------------------------------- space \t 0 tab # 9 space \x000A 0 space \x000D 0 space \s 0 blank # 32 punctuation ! 235 exclamation sign x0021 punctuation " 356 double quote x0022 sign # 3456 number sign x0023 sign $ 4-256 dollar sign x0024 sign % 25-1234 percent sign x0025 sign & 4-12346 ampersand z0026 punctuation ' 3 apostrophe x0027 punctuation ( 2356 left parenthesis x0028 punctuation ) 2356 right parenthesis x0029 sign * 35-35 asterisk x002A math + 56-235 plus 002B punctuation , 6 coma 002C punctuation - 36-36 hyphen-minus 002D punctuation . 256 point 002E math / 34 solidus 002F include digits6Dots.uti punctuation : 25 colon x003A punctuation ; 23 semicolon x003B punctuation < 126 less-than sign x003C math = 123456 equal sign x003D math > 345 greater-than sign x003E punctuation ? 26 question mark x003F sign @ 3456-12456 commercial at x0040 uplow \x0100\x0101 16 letter A with macron uplow \x010C\x010D 146 letter C with caron uplow \x0112\x0113 156 letter E with macron uplow \x0122\x0123 12456 letter g with cedilla uplow \x012A\x012B 246 letter I with macron uplow \x0136\x0137 136 letter K with cedilla uplow \x013B\x013C 1236 letter L with cedilla uplow \x0145\x0146 13456 Letter N with cedilla uplow \x014C\x014D 1356 letter O with macron uplow \x0156\x0157 16-12346 letter T with cedilla uplow \x0160\x0161 2346 letter S with caron uplow \x016A\x016B 346 letter U with macron uplow \x017D\x017E 3456 letter Z with caron # define the dot combinations that are different from the default. # placed before the include to take precedence. uplow Uu 34 letter U *** Different from other langs *** uplow Vv 2456 letter V *** Different from other langs *** uplow Zz 345 letter Z *** Different from other langs *** include latinLetterDef6Dots.uti punctuation [ 6-2356 left square bracket x005B sign \\ 3456-1256 reverse solidus x005C punctuation ] 356-3 right square bracket x005D sign ^ 45 circumflex accent x005E sign _ 6-36 low line x005F sign ` 45-4 grave accent x0060 # a - z # 97 - 122 x0061-x007A punctuation { 45-236 left curly bracket x007B sign | 456 vertical line x007C punctuation } 45-356 right curly bracket x007D math ~ 5 tilde x007E sign \x0080 15-136-1235-135 x0080 space \X00A0 0 no-break space x00A0 sign ¢ 4-14 cent sign x00A2 sign £ 45-123 pound sign x00A3 sign ¤ 45-15 currency sign x00A4 sign Â¥ 45-13456 yen sign x00A5 sign § 346 section sign x00A7 sign © 2356-6-14-2356 copyright x00A9 punctuation « 45-2356 left-pointing double angle quotation x00AB punctuation \x00AD 36 soft hyphen sign ° 4-356 degree sign x00B0 sign ² 4-6-126 superscript 2 sign x00B2 sign ³ 4-6-146 superscript 3 sign x00B3 sign µ 46-134 micro sign x00B5 sign ¶ 4-1234-345 pilcrow sign (paragraph) x00B6 sign ¹ 1-27 superscript 1 sign x00B9 punctuation » 2356-12 right-pointing double angle quotation x00BB math ¼ 6-16-34-1456 vulgar fraction one quarter x00BC math ½ 6-16-34-126 vulgar fraction one half x00BD math ¾ 6-126-34-1456 vulgar fraction 3 quarters x00BE uplow \x00C0\x00E0 12356 letter a with grave x00C0 / 00E0 uplow \x00C1\x00E1 16 letter a with acute x00E1 uplow \x00C2\x00E2 16 letter a with circumflex x00E2 uplow \x00C3\x00E3 126 letter a with tilde x00E3 uplow Ää 345 A with diaeresis x00C4 / 00E4 uplow Ã…Ã¥ 16 A with ring above x00C5 / 00E5 uplow \x00C6\x00E6 6-345 ae x00C6 uplow Çç 12346 letter c with cedilla x00C7 / 00E7 uplow Èè 2346 e with grave x00C8 / 00E8 uplow \x00C9\x00E9 345 e with acute x00E9 uplow \x00CA\x00EA 126 e with circumflex x00EA uplow \x00CB\x00EB 1246 e with diaeresis x00EB uplow \x00CD\x00ED 34 i with acute x00ED uplow \x00CE\x00EE 146 i with circumflex x00EE uplow \x00CF\x00EF 12456 i with diaeresis x00CF / 00EF uplow \x00D3\x00F3 246 O with acute x00D3 / 00F3 uplow \x00D4\x00F4 1456 o with circumflex x00F4 uplow \x00D5\x00F5 246 o with tilde x00F5 uplow Öö 246 O with diaeresis x00D6 / 00F6 math × 236 multiplication sign x00D7 uplow \x00D8\x00F8 246 o with stroke x00D8 / 00F8 math ÷ 256 division sign x00F7 uplow \x00DA\x00FA 346 u with acute x00DA / 00FA uplow \x00DB\x00FB 156 u with circumflex x00FB uplow \x00DC\x00FC 1256 u with diaeresis x00FC uplow \x00DD\x00FD 12346 y with acute x00DD / 00FD # the letter a with ogonek ----------------------------------- uplow \x0104\x0105 16 # the letter c with acute uplow \x0106\x0107 146 uplow \x010C\x010D 146 C with caron uplow \x010E\x010F 1456 D with caron # the letter e with ogonek uplow \x0118\x0119 156 uplow \x011A\x011B 126 E with caron # the letter l with stroke uplow \x0141\x0142 126 # the letter n with acute uplow \x0143\x0144 1456 uplow \x0147\x0148 1246 N with caron uplow \x0158\x0159 2456 R with caron # the letter s with acute uplow \x015A\x015B 246 uplow \x0160\x0161 156 S with caron uplow \x0164\x0165 1256 T with caron uplow \x016C\x016D 23456 U with breve uplow \x016E\x016F 23456 U with ring above # the letter z with acute uplow \x0179\x017A 2346 # the letter z with dot above uplow \x017B\x017C 12346 uplow \x017D\x017E 2346 Z with caron punctuation \x2010 36 # 8208 hyphen punctuation \x2011 36 # 8209 non-breaking hyphen punctuation \x2013 36 # 8211 smart minus sign punctuation \x2018 3 # 8216 smart single left quotation mark punctuation \x2019 3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 3-3-3 # 8230 smart ellipsis # ------------------------------------------------------ capsign 6 # single capital letter indicator begcaps 6-6 # a block of consecutive capital letters indicator numsign 3456 # number sign, just one operand midnum , 6 midnum . 256 midnum + 235 midnum - 36 midnum / 256 midnum : 25 midnum = 2356 # endnum # 56-3456 prepunc " 236 postpunc " 356 prepunc ' 6-236 postpunc ' 356-3 postpunc '' 356 postpunc ''' 356-3-356 repeated *** 16-16-16 prepunc `` 236 prepunc ` 6-236 repeated --- 36-36-36 repeated ::: 25-25-25 repeated ~~~ 156-156-156 always \s-\s 36-36 always \s-\scom 36-36-14-135-134 always ... 3-3-3 always .\s.\s. 3-3-3 . . . always \s­\s 36-36 # special character sequences literal :// URLs literal www. literal .com literal .edu literal .gov literal .mil literal .net literal .org literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip liblouis-2.5.3/tables/Fr-Ca-g2.ctb0000664000175000017500000014016412161041546013436 00000000000000# liblouis: Canadian French grade 2 Table ############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # Auteur: # # Nicolas Pitre # # Référence: # # Index de l'abrégé orthographique français étendu, lecture et écriture # Révision 1993 # Service de production Braille, Institut Nazareth et Louis-Braille # Longueuil (Québec) # Contracted Unified French Table # -------------------------------- include fr-ca-g1.utb ### ### 1. Assemblages de lettres représentés par un seul symbole, ### et finales représentées par deux ou trois symboles; ### letsign 6 class voy aeiouyéàèùâêîôûëïüAEIOUYÉÀÈÙÂÊËïü class con bcçdfghjklmnpqrstvwxzBCÇDFGHJKLMNPQRSTVWXZ class bmp bmpBMP endword able 45 always ai 34 endword ait 146 before con always an 2 endword ant 1456 before con always ar 4 endword ar 4 endword ation 16 always au 13 always bl 45 before voy always br 23 always ch 12356 before voy always cl 146 before con begword com 36 before con always con 25 before voy always cr 25 before con begword dis 256 before voy always dr 1456 endword elle 456 before con always em 345 before con always en 26 endword en 26 endword ent 126 before con midword er 236 endword er 236 begword es 156 endword es 156 word eu 15-136 always eu 5 before con always eur 46 endword eur 46 before con always ex 1346 endword ez 1356 before voy always fl 126 before voy always fr 16 before voy always gl 345 always gn 2356 before voy always gr 12456 always ien 256 always ieu 6 before bmp begword im 246 always in 35 always ion 3456 endword ition 246 before voy after voy always ll 456 always oi 23456 before con always om 2456 endword om 2456 before con always on 346 endword on 346 before con always or 56 endword or 56 always ou 1256 before con always our 12346 endword our 12346 before voy always pl 1246 before voy always pr 235 before con always pro 235 always qu 12345 endword que 12345 before con begword re 3 before voy after voy always ss 2346 before voy always tr 356 before con begword trans 356 before voy after voy always tt 2456 before con always ui 23 endword ablement 45-134 endword bilité 12-123-2345 endword bilités 12-123-2345-234 endword ellement 456-134 endword logie 123-1245 endword quement 12345-134 endword quements 12345-134-234 endword tement 2345-134 endword tements 2345-134-234 endword ttement 2345-2345-134 endword ttements 2345-2345-134-234 endword vement 1236-134 endword vements 1236-134-234 before con always ain 1-35 endword ain 1-35 before con always oin 135-35 endword oin 135-35 before con begword recom 3-36 before con begword redis 3-256 before con begword retrans 3-356 before con begword incom 35-36 before con begword indis 35-256 before con begword intrans 35-356 begword ines 35-156 prfword tient 2345-256-2345 prfword vient 1236-256-2345 endword ient 24-126 word balbutient 12-1-123-12-136-2345-24-126 word initient 35-24-2345-24-126 word dévient 145-123456-1236-24-126 word envient 1235-26-1236-24-126 sufword bleu 45-15-136 before con always brui 12-1235-23 endword clait 14-123-146 before voy always concr 14-346-25 endword drant 145-1235-1456 always drô 145-1235-1456 endword en? 15-1345-26 always ien. 24-26-256 before voy always propr 235-135-235 before con begword ren 1235-26 always ssè 234-234-2346 word (en 236-15-1345 word (la 236-123-1 ### ### 2. Mots représentés par un seul symbole ### word a 1 word à 12356 word ai 34 word au 13 word aux 13-1346 word bien 12 word biens 12-234 word ce 14 word celui 36 word cet 146 word dans 1456 word de 145 word dès 256 word du 236 word elle 1356 word elles 1356-234 word en 26 word est 156 word et 23456 word été 2356 word étés 2356-234 word faire 124 word grand 12456 word grands 12456-234 word il 24 word ils 24-234 word je 245 word la 3 word le 123 word les 345 word lui 3456 word mais 1346 word me 134 word même 126 word mêmes 126-234 word ne 1345 word nous 135 word on 346 word ou 1256 word par 1234 word plus 1246 word pour 12346 word puis 235 word que 12345 word qui 1245 word quoi 123456 word rien 1235 word riens 1235-234 word sans 2346 word se 234 word si 35 word son 246 word sons 246-234 word sous 356 word sur 125 word te 2345 word tous 2456 word tout 16 word un 136 word uns 136-234 word vous 1236 word y 13456 begword c' 14-3 begword d' 145-3 begword j' 245-3 begword l' 123-3 begword m' 134-3 begword n' 1345-3 begword s' 234-3 begword t' 2345-3 ### ### 3. Mots représentés par deux ou plusieurs symboles ### word absolu 1-12 word absolus 1-12-234 word absolue 1-12-15 word absolues 1-12-156 word absolument 1-12-134 word action 1-3456 word actions 1-3456-234 word actionnaire 1-3456-1235 word actionnaires 1-3456-1235-234 word affaire 1-124-124 word affaires 1-124-124-234 word afin 1-124 word ailleurs 34-136 word ainsi 1-24 word alors 1-123 word amour 1-134 word amours 1-134-234 word amoureuse 1-134-234-15 word amoureuses 1-134-234-156 word amoureusement 1-134-234-134 word amoureux 1-134-1346 word apparemment 1-1234-134 word apparence 1-1234-14 word apparences 1-1234-14-234 word apparent 1-1234 word apparents 1-1234-234 word apparente 1-1234-15 word apparentes 1-1234-156 word après 1-235 word assez 1-1356 word atentif 1-2345-124 word atentifs 1-2345-124-234 word attention 1-2345 word attentions 1-2345-234 word attentive 1-2345-1236 word attentives 1-2345-1236-234 word attentivement 1-2345-1236-134 word aucun 13-14 word aucune 13-1345 word aucunement 13-1345-134 word auparavant 13-1234 word auprès 13-235 word auquel 13-12345-123 word aussi 13-234 word aussitôt 13-2345 word autour 13-1235 word autre 13-356 word autres 13-356-234 word autrefois 13-124 word autrement 13-356-134 word auxquelles 13-1346-12345-123-123-234 word auxquels 13-1346-12345-123-234 word avance 1-1236-14 word avances 1-1236-14-234 word avancement 1-1236-14-134 word avant 1-1236 word avantage 1-1236-1245 word avantages 1-1236-1245-234 word avantageuse 1-1236-1245-234-15 word avantageuses 1-1236-1245-234-156 word avantageusement 1-1236-1245-234-134 word avantageux 1-1236-1245-1346 word avec 1-14 word avoir 1-1235 word avoirs 1-1235-234 word ayant 1-13456 word beaucoup 12-14 word besogne 12-2356 word besognes 12-2356-234 word besogneuse 12-2356-234-15 word besogneuses 12-2356-234-156 word besogneux 12-2356-1346 word besoin 12-35 word besoins 12-35-234 word bête 12-126 word bêtes 12-126-234 word bêtement 12-126-134 word bienfaisance 12-124-14 word bienfaisances 12-124-14-234 word bienfait 12-124 word bienfaits 12-124-234 word bienfaiteur 12-124-46 word bienfaiteurs 12-124-46-234 word bientôt 12-2345 word bienveillance 12-1236-14 word bienveillances 12-1236-14-234 word bienveillant 12-1236 word bienveillants 12-1236-234 word bienveillante 12-1236-15 word bienveillantes 12-1236-156 word bizarre 12-1356 word bizarres 12-1356-234 word bizarrement 12-1356-134 word bonheur 12-125 word bonheurs 12-125-234 word bonjour 12-245 word bonjours 12-245-234 word bonne 12-1345 word bonnes 12-1345-234 word bonnement 12-1345-134 word bonté 12-135 word bontés 12-135-234 word boulevard 12-145 word boulevards 12-145-234 word braille 23-123 word branchage 23-12356-1245 word branchages 23-12356-1245-234 word branche 23-12356 word branches 23-12356-234 word branchement 23-12356-134 word branchements 23-12356-134-234 word brave 23-1236 word braves 23-1236-234 word bravement 23-1236-134 word bruit 23-2345 word bruits 23-2345-234 word brusque 23-12345 word brusques 23-12345-234 word brusquement 23-12345-134 word budget 12-1245 word budgets 12-1245-234 word budgétaire 12-1245-1235 word budgétaires 12-1245-1235-234 word caractère 14-2346 word caractères 14-2346-234 word caractéristique 14-123456-12345 word caractéristiques 14-123456-12345-234 word ceci 14-14 word cela 14-1 word celle 14-123 word celles 14-123-234 word celui-ci 36-36-14-24 word celui-là 36-36-123-12356 word cependant 14-1234 word certain 14-35 word certains 14-35-234 word certaine 14-1345 word certaines 14-1345-234 word certainement 14-1345-134 word certes 14-236 word certitude 14-236-145 word certitudes 14-236-145-234 word ces 14-234 word cette 14-2345 word ceux 14-1346 word chacun 12356-14 word chacune 12356-1345 word chagrin 12356-12456 word chagrins 12356-12456-234 word chaleur 12356-123 word chaleurs 12356-123-234 word chaleureuse 12356-123-234-15 word chaleureuses 12356-123-234-156 word chaleureusement 12356-123-234-134 word chaleureux 12356-123-1346 word champ 12356-1234 word champs 12356-1234-234 word change 12356-1245 word changes 12356-1245-234 word changement 12356-1245-134 word changeur 12356-1245-46 word changeurs 12356-1245-46-234 word chaque 12356-12345 word charitable 12356-2345-45 word charitables 12356-2345-45-234 word charitablement 12356-2345-45-134 word charité 12356-2345 word charités 12356-2345-234 word chaud 12356-145 word chauds 12356-145-234 word chaude 12356-145-15 word chaudes 12356-145-156 word chaudement 12356-145-134 word chemin 12356-134 word chemins 12356-134-234 word chère 12356-2346 word chères 12356-2346-234 word chèrement 12356-2346-134 word chez 12356-1356 word chiffrage 12356-124-1245 word chiffrages 12356-124-1245-234 word chiffre 12356-124 word chiffres 12356-124-234 word choeur 12356-1235 word choeurs 12356-1235-234 word choix 12356-1346 word chose 12356-234 word choses 12356-234-234 word circonstance 14-25-14 word circonstances 14-25-14-234 word circonstanciel 14-25-14-123 word circonstanciels 14-25-14-123-234 word circonstancielle 14-25-14-123-123 word circonstancielles 14-25-14-123-123-234 word civil 14-1236 word civils 14-1236-234 word civile 14-1236-15 word civiles 14-1236-156 word civilement 14-1236-134 word civilisation 14-1236-16 word civilisations 14-1236-16-234 word civilité 14-1236-2345 word civilités 14-1236-2345-234 word coeur 14-1235 word coeurs 14-1235-234 word combien 14-12 word comme 14-134 word commencement 36-134 word commencements 36-134-234 word comment 14-26 word commentaire 14-26-1235 word commentaires 14-26-1235-234 word commentateur 14-26-46 word commentateurs 14-26-46-234 word commun 36-1345 word communs 36-1345-234 word commune 36-1345-15 word communes 36-1345-156 word communal 36-1345-123 word communale 36-1345-123-15 word communales 36-1345-123-156 word communautaire 36-1345-2345-1235 word communautaires 36-1345-2345-1235-234 word communauté 36-1345-2345 word communautés 36-1345-2345-234 word communaux 36-1345-1346 word communément 36-1345-134 word communion 36-1345-3456 word communions 36-1345-3456-234 word complément 36-1246-134 word compléments 36-1246-134-234 word complémentaire 36-1246-134-1235 word complémentaires 36-1246-134-1235-234 word complet 36-1246 word complets 36-1246-234 word complète 36-2345 word complètes 36-2345-234 word complètement 36-2345-134 word conclusion 25-14 word conclusions 25-14-234 word condition 25-145 word conditions 25-145-234 word conditionnel 25-145-123 word conditionnels 25-145-123-234 word conditionnelle 25-145-123-123 word conditionnelles 25-145-123-123-234 word conditionnellement 25-145-123-134 word confiance 25-124-14 word confiant 25-124 word congrès 25-12456 word connaissance 25-1345-14 word connaissances 25-1345-14-234 word connaître 25-1345 word consciemment 25-234-134 word conscience 25-234-14 word consciences 25-234-14-234 word consciencieuse 25-234-14-234-15 word consciencieuses 25-234-14-234-156 word consciencieusement 25-234-14-234-134 word consciencieux 25-234-14-1346 word conscient 25-234 word conscients 25-234-234 word consciente 25-234-15 word conscientes 25-234-156 word conséquemment 14-12345-134 word conséquence 14-12345-14 word conséquences 14-12345-14-234 word conséquent 14-12345 word conséquents 14-12345-234 word conséquente 14-12345-15 word conséquentes 14-12345-156 word considérable 14-145 word considérables 14-145-234 word considérablement 14-145-134 word considération 14-145-16 word considérations 14-145-16-234 word contraire 14-356 word contraires 14-356-234 word contrairement 14-356-134 word conversation 25-1236 word conversations 25-1236-234 word côté 14-1456 word côtés 14-1456-234 word couple 14-1246 word couples 14-1246-234 word courage 14-1245 word courageuse 14-1245-234-15 word courageuses 14-1245-234-156 word courageusement 14-1245-234-134 word courageux 14-1245-1346 word danger 145-1245 word dangers 145-1245-234 word dangeureuse 145-1245-234-15 word dangeureuses 145-1245-234-156 word dangeureusement 145-1245-234-134 word dangeureux 145-1245-1346 word davantage 145-1 word debout 145-12 word dedans 145-145 word degré 145-12456 word degrés 145-12456-234 word dehors 145-125 word déjà 145-245 word demain 145-134 word depuis 145-1234 word dernier 145-1345 word derniers 145-1345-234 word dernière 145-1235 word dernières 145-1235-234 word dernièrement 145-1235-134 word derrière 145-236 word derrières 145-236-234 word des 145-234 word désormais 145-34 word desquels 145-234-12345-123-234 word desquelles 145-234-12345-123-123-234 word destin 145-35 word destins 145-35-234 word destinataire 145-35-1235 word destinataires 145-35-1235-234 word destination 145-35-16 word destinations 145-35-16-234 word devant 145-1236 word devants 145-1236-234 word différemment 145-345-134 word différence 145-26-14 word différences 145-26-14-234 word différent 145-26 word différents 145-26-234 word différente 145-26-15 word différentes 145-26-156 word difficile 145-124 word difficiles 145-124-234 word difficilement 145-124-134 word difficulté 145-124-2345 word difficultés 145-124-2345-234 word digne 145-2356 word dignes 145-2356-234 word dignement 145-2356-134 word dignitaire 145-2356-2345-1235 word dignitaires 145-2356-2345-1235-234 word dignité 145-2356-2345 word discours 256-14 word dispositif 256-1234-124 word dispositifs 256-1234-124-234 word disposition 256-1234 word dispositions 256-1234-234 word distance 256-2345-14 word distances 256-2345-14-234 word distant 256-2345 word distants 256-2345-234 word distante 256-2345-15 word distantes 256-2345-156 word donc 145-14 word dont 145-2345 word douleur 145-123 word douleurs 145-123-234 word douloureuse 145-123-234-15 word douloureuses 145-123-234-156 word douloureusement 145-123-234-134 word douloureux 145-123-1346 word doute 145-1256 word doutes 145-1256-234 word duquel 145-12345-123 word effectif 15-124-124 word effectifs 15-124-124-234 word effective 15-124-1236 word effectives 15-124-1236-234 word effectivement 15-124-1236-134 word effet 15-124 word effets 15-124-234 word égal 123456-1245 word égale 123456-1245-15 word égales 123456-1245-156 word également 123456-1245-134 word égalitaire 123456-1245-2345-1235 word égalitaires 123456-1245-2345-1235-234 word égalité 123456-1245-2345 word égalités 123456-1245-2345-234 word égaux 123456-1245-1346 word élément 123456-123 word éléments 123456-123-234 word élémentaire 123456-123-1235 word élémentaires 123456-123-1235-234 word encore 26-14 word endroit 26-145 word endroits 26-145-234 word énergie 123456-1345 word énergies 123456-1345-234 word énergique 123456-1345-12345 word énergiques 123456-1345-12345-234 word énergiquement 123456-1345-12345-134 word enfin 26-124 word ennui 26-1345 word ennuis 26-1345-234 word ennuyeuse 26-1345-234-15 word ennuyeuses 26-1345-234-156 word ennuyeux 26-1345-1346 word enquête 26-12345 word enquêtes 26-12345-234 word enquêteur 26-12345-46 word enquêteurs 26-12345-46-234 word enquêteuse 26-12345-234-15 word enquêteuses 26-12345-234-156 word ensemble 26-345 word ensembles 26-345-234 word ensuite 26-234 word entier 26-2345 word entiers 26-2345-234 word entière 26-1235 word entières 26-1235-234 word entièrement 26-1235-134 word environ 26-1236 word espèce 156-1234 word espèces 156-1234-234 word espérance 156-1235-14 word espérances 156-1235-14-234 word espoir 156-1235 word espoirs 156-1235-234 word esprit 15-235 word esprits 15-235-234 word essentiel 156-123 word essentiels 156-123-234 word essentielle 156-123-123 word essentielles 156-123-123-234 word essentiellement 156-123-134 word étant 123456-2345 word être 126-356 word êtres 126-356-234 word événement 123456-1236 word événements 123456-1236-234 word éventualité 123456-1236-123-2345 word éventualités 123456-1236-123-2345-234 word éventuel 123456-1236-123 word éventuels 123456-1236-123-234 word éventuelle 123456-1236-123-123 word éventuelles 123456-1236-123-123-234 word éventuellement 123456-1236-123-134 word excellemment 1346-123-134 word excellence 1346-123-14 word excellences 1346-123-14-234 word excellent 1346-123 word excellents 1346-123-234 word excellente 1346-123-15 word excellentes 1346-123-156 word excès 1346-14 word excessif 1346-14-124 word excessifs 1346-14-124-234 word excessive 1346-14-1236 word excessives 1346-14-1236-234 word excessivement 1346-14-1236-134 word exercice 1346-236 word exercices 1346-236-234 word expérience 1346-1234 word expériences 1346-1234-234 word expérimental 1346-1234-123 word expérimentale 1346-1234-123-15 word expérimentales 1346-1234-123-156 word expérimentallement 1346-1234-123-134 word expérimentateur 1346-1234-46 word expérimentateurs 1346-1234-46-234 word expérimentation 1346-1234-16 word expérimentations 1346-1234-16-234 word expérimentaux 1346-1234-1346 word explicable 1346-1246-45 word explicables 1346-1246-45-234 word explicatif 1346-1246-124 word explicatifs 1346-1246-124-234 word explication 1346-1246 word explications 1346-1246-234 word explicative 1346-1246-1236 word explicatives 1346-1246-1236-234 word expressif 1346-235-124 word expressifs 1346-235-124-234 word expression 1346-235 word expressions 1346-235-234 word expressive 1346-235-1236 word expressives 1346-235-1236-234 word expressivement 1346-235-1236-134 word extérieur 1346-2345 word extérieurs 1346-2345-234 word extérieure 1346-2345-15 word extérieures 1346-2345-156 word extérieurement 1346-2345-134 word extrême 1346-356 word extrêmes 1346-356-234 word extrêmement 1346-356-134 word extrémité 1346-356-2345 word extrémités 1346-356-2345-234 word facile 124-14 word faciles 124-14-234 word facilement 124-14-134 word facilité 124-14-2345 word facilités 124-14-2345-234 word faubourg 124-12 word faubourgs 124-12-234 word faut 124-2345 word faute 124-2345-15 word fautes 124-2345-15-234 word fautif 124-2345-124 word fautifs 124-2345-124-234 word fautive 124-2345-1236 word fautives 124-2345-1236-234 word faveur 124-1236 word faveurs 124-1236-234 word favorable 124-1236-45 word favorables 124-1236-45-234 word favorablement 124-1236-45-134 word féminin 124-134-35 word féminins 124-134-35-234 word féminine 124-134-1345 word féminines 124-134-1345-234 word femme 124-134 word femmes 124-134-234 word fête 124-126 word fêtes 124-126-234 word fidèle 124-145 word fidèles 124-145-234 word fidèlement 124-145-134 word fidélité 124-145-2345 word fidélités 124-145-2345-234 word figuratif 124-1245-124 word figuratifs 124-1245-124-234 word figuration 124-1245-16 word figurations 124-1245-16-234 word figurative 124-1245-1236 word figuratives 124-1245-1236-234 word figure 124-1245 word figures 124-1245-234 word fille 124-123 word filles 124-123-234 word fils 124-234 word fonction 124-346 word fonctions 124-346-234 word fonctionnaire 124-346-1235 word fonctionnaires 124-346-1235-234 word fonctionnel 124-346-123 word fonctionnels 124-346-123-234 word fonctionnelle 124-346-123-123 word fonctionnelles 124-346-123-123-234 word fonctionnement 124-346-134 word fonctionnements 124-346-134-234 word force 124-135 word forces 124-135-234 word forcément 124-135-134 word fortune 124-1345 word fortunes 124-1345-234 word fraternel 124-1235-123 word fraternels 124-1235-123-234 word fraternelle 124-1235-123-123 word fraternelles 124-1235-123-123-234 word fraternellement 124-1235-123-134 word fraternisation 124-1235-16 word fraternisations 124-1235-16-234 word fraternité 124-1235-2345 word fraternités 124-1235-2345-234 word fréquemment 124-12345-134 word fréquence 124-12345-14 word fréquences 124-12345-14-234 word fréquent 124-12345 word fréquents 124-12345-234 word fréquente 124-12345-15 word fréquentes 124-12345-156 word fréquentation 124-12345-16 word fréquentations 124-12345-16-234 word frère 124-1235 word frères 124-1235-234 word garde 1245-145 word gardes 1245-145-234 word général 1245-1345 word générale 1245-1345-15 word générales 1245-1345-156 word généralement 1245-1345-134 word généralisation 1245-1345-16 word généralisations 1245-1345-16-234 word généralité 1245-1345-2345 word généralités 1245-1345-2345-234 word généraux 1245-1345-1346 word généreuse 1245-234-15 word généreuses 1245-234-156 word généreusement 1245-234-134 word généreux 1245-1346 word générosité 1245-234-2345 word générosités 1245-234-2345-234 word gloire 1245-1235 word gloires 1245-1235-234 word glorieuse 1245-1235-234-15 word glorieuses 1245-1235-234-156 word glorieusement 1245-1235-234-134 word glorieux 1245-1235-1346 word gouvernement 1245-1236 word gouvernements 1245-1236-234 word gouvernemental 1245-1236-123 word gouvernementale 1245-1236-123-15 word gouvernementales 1245-1236-123-156 word gouvernementaux 1245-1236-1346 word gouverneur 1245-1236-46 word gouverneurs 1245-1236-46-234 word grâce 12456-14 word grâces 12456-14-234 word gracieuse 12456-14-234-15 word gracieuses 12456-14-234-156 word gracieusement 12456-14-234-134 word gracieux 12456-14-1346 word grande 12456-145 word grandes 12456-145-234 word grandement 12456-145-134 word grandeur 12456-46 word grandeurs 12456-46-234 word grave 12456-1236 word graves 12456-1236-234 word gravement 12456-1236-134 word gravitation 12456-1236-2345-16 word gravitations 12456-1236-2345-16-234 word gravité 12456-1236-2345 word gravités 12456-1236-2345-234 word groupe 12456-1234 word groupes 12456-1234-234 word groupement 12456-1234-134 word groupements 12456-1234-134-234 word guère 1245-2346 word guerre 1245-236 word guerres 1245-236-234 word habitude 125-12 word habitudes 125-12-234 word habituel 125-12-123 word habituels 125-12-123-234 word habituelle 125-12-123-123 word habituelles 125-12-123-123-234 word habituellement 125-12-123-134 word hasard 125-145 word hasards 125-145-234 word hasardeuse 125-145-234-15 word hasardeuses 125-145-234-156 word hasardeux 125-145-1346 word hélas 125-123 word heure 125-1235 word heures 125-1235-234 word heureuse 125-234-15 word heureuses 125-234-156 word heureusement 125-234-134 word heureux 125-1346 word hier 125-236 word histoire 125-2345 word histoires 125-2345-234 word historique 125-2345-12345 word historiques 125-2345-12345-234 word historiquement 125-2345-12345-134 word hiver 125-1236 word hivers 125-1236-234 word hivernal 125-1236-123 word hivernaux 125-1236-1346 word hommage 125-1245 word hommages 125-1245-234 word homme 125-134 word hommes 125-134-234 word honnête 125-126 word honnêtes 125-126-234 word honnêtement 125-126-134 word honnêteté 125-126-2345 word honnêtetés 125-126-2345-234 word honneur 125-1345 word honneurs 125-1345-234 word honorabilité 125-1345-12-123-2345 word honorabilités 125-1345-12-123-2345-234 word honorable 125-1345-45 word honorables 125-1345-45-234 word honorablement 125-1345-45-134 word honoraire 125-1345-1235 word honoraires 125-1345-1235-234 word horaire 125-1235-1235 word horaires 125-1235-1235-234 word horizon 125-1356 word horizons 125-1356-234 word horizontal 125-1356-123 word horizontale 125-1356-123-15 word horizontales 125-1356-123-156 word horizontalement 125-1356-123-134 word horizontalité 125-1356-123-2345 word horizontalités 125-1356-123-2345-234 word horizontaux 125-1356-1346 word hypothèse 125-1234 word hypothèses 125-1234-234 word hypothétique 125-1234-12345 word hypothétiques 125-1234-12345-234 word hypothétiquement 125-1234-12345-134 word humain 125-134-35 word humains 125-134-35-234 word humaine 125-134-1345 word humaines 125-134-1345-234 word humainement 125-134-1345-134 word humanitaire 125-134-1345-2345-1235 word humanitaires 125-134-1345-2345-1235-234 word humanité 125-134-1345-2345 word humanités 125-134-1345-2345-234 word idéal 24-145-123 word idéale 24-145-123-15 word idéales 24-145-123-156 word idéalement 24-145-123-134 word idéaux 24-145-1346 word idée 24-145 word idées 24-145-234 word image 24-1245 word images 24-1245-234 word imaginable 24-1245-45 word imaginables 24-1245-45-234 word imaginaire 24-1245-1235 word imaginaires 24-1245-1235-234 word imagination 24-1245-16 word immédiat 24-134 word immédiats 24-134-234 word immédiate 24-134-15 word immédiates 24-134-156 word immédiatement 24-134-134 word impression 246-235 word impressions 246-235-234 word impressionnable 246-235-45 word impressionnables 246-235-45-234 word inférieur 35-124 word inférieurs 35-124-234 word inférieure 35-124-15 word inférieures 35-124-156 word inférieurement 35-124-134 word infériorité 35-124-2345 word infériorités 35-124-2345-234 word inquiet 35-12345 word inquiets 35-12345-234 word inquiète 35-2346 word inquiètes 35-2346-234 word inquiétude 35-12345-145 word inquiétudes 35-12345-145-234 word intelligemment 35-1245-134 word intelligence 35-1245-14 word intelligent 35-1245 word intelligents 35-1245-234 word intelligente 35-1245-15 word intelligentes 35-1245-156 word intérieur 35-2345 word intérieurs 35-2345-234 word intérieure 35-2345-15 word intérieures 35-2345-156 word intérieurement 35-2345-134 word jadis 245-145 word jamais 245-134 word jeune 245-1345 word jeunes 245-1345-234 word jour 245-1235 word jours 245-1235-234 word journal 245-1235-123 word journaux 245-1235-1346 word joyeuse 245-234-15 word joyeuses 245-234-156 word joyeusement 245-234-134 word joyeux 245-1346 word juge 245-1245 word juges 245-1245-234 word jugement 245-1245-134 word jugements 245-1245-134-234 word jusque 245-12345 word juste 245-2345 word justes 245-2345-234 word justement 245-2345-134 word justice 245-14 word laquelle 123-123-123 word lecture 123-1235 word lectures 123-1235-234 word lequel 123-123 word lesquelles 123-123-123-234 word lesquels 123-123-234 word lettre 123-356 word lettres 123-356-234 word libéral 123-12-123 word libérale 123-12-123-15 word libérales 123-12-123-156 word libéralement 123-12-123-134 word libéralité 123-12-123-2345 word libéralités 123-12-123-2345-234 word libérateur 123-12-46 word libérateurs 123-12-46-234 word libération 123-12-16 word libérations 123-12-16-234 word libéraux 123-12-1346 word liberté 123-12-2345 word libertés 123-12-2345-234 word libre 123-12 word libres 123-12-234 word librement 123-12-134 word ligne 123-2356 word lignes 123-2356-234 word livre 123-1236 word livres 123-1236-234 word logique 123-1245-12345 word logiques 123-1245-12345-234 word logiquement 123-1245-12345-134 word loin 123-1345 word loins 123-1345-234 word lointain 123-1345-35 word lointains 123-1345-35-234 word lointaine 123-1345-1345 word lointaines 123-1345-1345-234 word longtemps 123-2345 word lorsque 123-12345 word lourd 123-145 word lourds 123-145-234 word lourde 123-145-15 word lourdes 123-145-156 word lourdement 123-145-134 word lourdeur 123-145-46 word lourdeurs 123-145-46-234 word lumière 123-134 word lumières 123-134-234 word lumineuse 123-134-234-15 word lumineuses 123-134-234-156 word lumineusement 123-134-234-134 word lumineux 123-134-1346 word luminosité 123-134-234-2345 word luminosités 123-134-234-2345-234 word madame 134-145 word mademoiselle 134-134 word magnificence 134-2356-14 word magnificences 134-2356-14-234 word magnifique 134-2356 word magnifiques 134-2356-234 word magnifiquement 134-2356-134 word maintenant 134-2345 word malgré 134-12456 word malheur 134-125 word malheurs 134-125-234 word malheureuse 134-125-234-15 word malheureuses 134-125-234-156 word malheureusement 134-125-234-134 word malheureux 134-125-1346 word manière 134-1345 word manières 134-1345-234 word mauvais 134-1236 word mauvaise 134-1236-15 word mauvaises 134-1236-156 word meilleur 134-123 word meilleurs 134-123-234 word meilleure 134-123-15 word meilleures 134-123-156 word merci 134-14 word mère 134-2346 word mères 134-2346-234 word mes 134-234 word mesdames 134-145-234 word mesdemoiselles 134-134-234 word messieurs 134-1235-234 word mettre 134-356 word mieux 134-1346 word mission 134-3456 word missions 134-3456-234 word missionnaire 134-3456-1235 word missionnaires 134-3456-1235-234 word mobile 134-12 word mobiles 134-12-234 word mobilisation 134-12-16 word mobilisations 134-12-16-234 word mobilité 134-12-2345 word mobilités 134-12-2345-234 word moins 134-35 word moment 134-26 word moments 134-26-234 word momentanément 134-26-134 word monsieur 134-1235 word multiple 134-1246 word multiples 134-1246-234 word multiplicateur 134-1246-46 word multiplicateurs 134-1246-46-234 word multiplication 134-1246-16 word multiplications 134-1246-16-234 word multiplicité 134-1246-2345 word multiplicités 134-1246-2345-234 word musique 134-12345 word musiques 134-12345-234 word mystère 134-13456 word mystères 134-13456-234 word mystérieuse 134-13456-234-15 word mystérieuses 134-13456-234-156 word mystérieusement 134-13456-234-134 word mystérieux 134-13456-1346 word naguère 1345-1245 word nation 1345-16 word nations 1345-16-234 word national 1345-16-123 word nationale 1345-16-123-15 word nationales 1345-16-123-156 word nationalité 1345-16-123-2345 word nationalités 1345-16-123-2345-234 word nationaux 1345-16-1346 word nature 1345-2345 word natures 1345-2345-234 word naturel 1345-2345-123 word naturels 1345-2345-123-234 word naturelle 1345-2345-123-123 word naturelles 1345-2345-123-123-234 word naturellement 1345-2345-123-134 word néanmoins 1345-134 word nécessaire 1345-14 word nécessaires 1345-14-234 word nécessairement 1345-14-134 word nécessité 1345-14-2345 word nécessités 1345-14-2345-234 word nécessiteuse 1345-14-2345-234-15 word nécessiteuses 1345-14-2345-234-156 word nécessiteux 1345-14-2345-1346 word nombre 1345-12 word nombres 1345-12-234 word nombreuse 1345-12-234-15 word nombreuses 1345-12-234-156 word nombreux 1345-12-1346 word nos 1345-234 word notre 1345-356 word nôtre 1345-1456 word nôtres 1345-1456-234 word nouveau 1345-1236 word nouveaux 1345-1236-1346 word nouveauté 1345-1236-2345 word nouveautés 1345-1236-2345-234 word nouvel 1345-123 word nouvelle 1345-123-123 word nouvelles 1345-123-123-234 word nouvellement 1345-123-134 word objectif 135-245-124 word objectifs 135-245-124-234 word objection 135-245-3456 word objections 135-245-3456-234 word objective 135-245-1236 word objectives 135-245-1236-234 word objectivement 135-245-1236-134 word objectivité 135-245-1236-2345 word objectivités 135-245-1236-2345-234 word objet 135-245 word objets 135-245-234 word observateur 135-12-46 word observateurs 135-12-46-234 word observation 135-12 word observations 135-12-234 word occasion 135-14 word occasions 135-14-234 word occasionnel 135-14-123 word occasionnels 135-14-123-234 word occasionnelle 135-14-123-123 word occasionnelles 135-14-123-123-234 word occasionnellement 135-14-123-134 word oeuvre 246-1236 word oeuvres 246-1236-234 word office 135-124 word offices 135-124-234 word officiel 135-124-123 word officiels 135-124-123-234 word officielle 135-124-123-123 word officielles 135-124-123-123-234 word officiellement 135-124-123-134 word officieuse 135-124-234-15 word officieuses 135-124-234-156 word officieusement 135-124-234-134 word officieux 135-124-1346 word opinion 135-1234 word opinions 135-1234-234 word ordinaire 56-145 word ordinaires 56-145-234 word ordinairement 56-145-134 word originaire 135-1245-1235 word originaires 135-1245-1235-234 word originairement 135-1245-1235-134 word original 135-1245-123 word originale 135-1245-123-15 word originales 135-1245-123-156 word originalement 135-1245-123-134 word originalité 135-1245-123-2345 word originalités 135-1245-123-2345-234 word originaux 135-1245-1346 word origine 135-1245 word origines 135-1245-234 word outrage 1256-356-1245 word outrages 1256-356-1245-234 word outrageuse 1256-356-1245-234-15 word outrageuses 1256-356-1245-234-156 word outrageusement 1256-356-1245-234-134 word outrageux 1256-356-1245-1346 word outre 1256-356 word ouvrage 1256-1245 word ouvrages 1256-1245-234 word ouvrier 1256-1236 word ouvriers 1256-1236-234 word ouvrière 1256-2346 word ouvrières 1256-2346-234 word parfois 1234-124 word parmi 1234-134 word parole 1234-1235 word paroles 1234-1235-234 word particularité 1234-1235-123-2345 word particularités 1234-1235-123-2345-234 word particulier 1234-123 word particuliers 1234-123-234 word particulière 1234-123-1235 word particulières 1234-123-1235-234 word particulièrement 1234-123-1235-134 word partout 1234-1 word pas 1234-234 word pauvre 1234-1236 word pauvres 1234-1236-234 word pauvrement 1234-1236-134 word pauvreté 1234-1236-2345 word pauvretés 1234-1236-2345-234 word pendant 1234-145 word pensée 1234-26 word pensées 1234-26-234 word pensif 1234-26-124 word pensifs 1234-26-124-234 word pensive 1234-26-1236 word pensives 1234-26-1236-234 word pensivement 1234-26-1236-134 word père 1234-2346 word pères 1234-2346-234 word personnage 1234-1345-1245 word personnages 1234-1345-1245-234 word personnalité 1234-1345-123-2345 word personnalités 1234-1345-123-2345-234 word personne 1234-1345 word personnes 1234-1345-234 word personnel 1234-1345-123 word personnels 1234-1345-123-234 word personnelle 1234-1345-123-123 word personnelles 1234-1345-123-123-234 word personnellement 1234-1345-123-134 word petit 1234-15 word petits 1234-15-234 word petite 1234-15-15 word petites 1234-15-156 word peuple 1234-1246 word peuples 1234-1246-234 word peuplement 1234-1246-134 word peuplements 1234-1246-134-234 word place 1246-14 word places 1246-14-234 word placement 1246-14-134 word placements 1246-14-134-234 word plaisir 1246-1235 word plaisirs 1246-1235-234 word plusieurs 1246-234 word plutôt 1246-2345 word point 1234-2345 word points 1234-2345-234 word pointe 1234-2345-15 word pointes 1234-2345-15-234 word populaire 1234-1234-1235 word populaires 1234-1234-1235-234 word populairement 1234-1234-1235-134 word popularité 1234-1234-1235-2345 word popularités 1234-1234-1235-2345-234 word population 1234-1234 word populations 1234-1234-234 word populeuse 1234-1234-234-15 word populeuses 1234-1234-234-156 word populeux 1234-1234-1346 word possibilité 1234-12-2345 word possibilités 1234-12-2345-234 word possible 1234-12 word possibles 1234-12-234 word pourquoi 1234-23456 word pourtant 1234-135 word praticable 235-2345-45 word praticables 235-2345-45-234 word pratique 235-2345 word pratiques 235-2345-234 word pratiquement 235-2345-134 word premier 235-134 word premiers 235-134-234 word première 235-1235 word premières 235-1235-234 word premièrement 235-1235-134 word près 235-234 word presque 235-12345 word preuve 235-1236 word preuves 235-1236-234 word primitif 235-134-124 word primitifs 235-134-124-234 word primitive 235-134-1236 word primitives 235-134-1236-234 word primitivement 235-134-1236-134 word principal 235-14-123 word principale 235-14-123-15 word principales 235-14-123-156 word principalement 235-14-123-134 word principaux 235-14-1346 word principe 235-14 word principes 235-14-234 word prix 235-1346 word probabilité 235-12-2345 word probabilités 235-12-2345-234 word probable 235-12 word probables 235-12-234 word probablement 235-12-134 word prochain 235-12356 word prochains 235-12356-234 word prochaine 235-1345 word prochaines 235-1345-234 word prochainement 235-1345-134 word producteur 235-145-46 word producteurs 235-145-46-234 word productif 235-145-124 word productifs 235-145-124-234 word production 235-145-3456 word productions 235-145-3456-234 word productive 235-145-1236 word productives 235-145-1236-234 word productivement 235-145-1236-134 word productivité 235-145-1236-2345 word productivités 235-145-1236-2345-234 word produit 235-145 word produits 235-145-234 word profit 235-124 word profits 235-124-234 word profitable 235-124-45 word profitables 235-124-45-234 word profiteur 235-124-46 word profiteurs 235-124-46-234 word profiteuse 235-124-234-15 word profiteuses 235-124-234-156 word progrès 235-12456 word progressif 235-12456-124 word progressifs 235-12456-124-234 word progression 235-12456-3456 word progressions 235-12456-3456-234 word progressive 235-12456-1236 word progressives 235-12456-1236-234 word progressivement 235-12456-1236-134 word projecteur 235-245-46 word projecteurs 235-245-46-234 word projection 235-245-3456 word projections 235-245-3456-234 word projet 235-245 word projets 235-245-234 word proportion 235-1234 word proportions 235-1234-234 word proportionnalité 235-1234-123-2345 word proportionnalités 235-1234-123-2345-234 word proportionnel 235-1234-123 word proportionnels 235-1234-123-234 word proportionnelle 235-1234-123-123 word proportionnelles 235-1234-123-123-234 word proportionnellement 235-1234-123-134 word proposition 235-246 word propositions 235-246-234 word puisque 1234-12345 word puissance 1234-14 word puissances 1234-14-234 word qualitatif 12345-123-2345-124 word qualitatifs 12345-123-2345-124-234 word qualitative 12345-123-2345-1236 word qualitatives 12345-123-2345-1236-234 word qualitativement 12345-123-2345-1236-134 word qualité 12345-123-2345 word qualités 12345-123-2345-234 word quand 12345-145 word quant 12345-2345 word quantitatif 12345-2345-2345-124 word quantitatifs 12345-2345-2345-124-234 word quantitative 12345-2345-2345-1236 word quantitatives 12345-2345-2345-1236-234 word quantitativement 12345-2345-2345-1236-134 word quantité 12345-2345-2345 word quantités 12345-2345-2345-234 word quel 12345-123 word quels 12345-123-234 word quelle 12345-123-123 word quelles 12345-123-123-234 word quelconque 12345-14 word quelconques 12345-14-234 word quelque 12345-12345 word quelques 12345-12345-234 word quelquefois 12345-124 word question 12345-3456 word questions 12345-3456-234 word questionnaire 12345-3456-1235 word questionnaires 12345-3456-1235-234 word quiconque 12345-346 word quoique 12345-15 word raison 1235-346 word raisons 1235-346-234 word raisonnable 1235-346-45 word raisonnables 1235-346-45-234 word raisonnablement 1235-346-45-134 word raisonnement 1235-346-134 word raisonnements 1235-346-134-234 word rapport 1235-1234 word rapports 1235-1234-234 word rapporteur 1235-1234-46 word rapporteurs 1235-1234-46-234 word rare 1235-1235 word rares 1235-1235-234 word rarement 1235-1235-134 word rareté 1235-1235-2345 word raretés 1235-1235-2345-234 word réalisable 1235-123-45 word réalisables 1235-123-45-234 word réalisateur 1235-123-46 word réalisateurs 1235-123-46-234 word réalisation 1235-123-16 word réalisations 1235-123-16-234 word réalité 1235-123-2345 word réalités 1235-123-2345-234 word réel 1235-123 word réels 1235-123-234 word réelle 1235-123-123 word réelles 1235-123-123-234 word réellement 1235-123-134 word réflexion 1235-124 word réflexions 1235-124-234 word regard 1235-1245 word regards 1235-1245-234 word regret 1235-12456 word regrets 1235-12456-234 word regrettable 1235-12456-45 word regrettables 1235-12456-45-234 word relatif 1235-2345-124 word relatifs 1235-2345-124-234 word relation 1235-2345 word relations 1235-2345-234 word relative 1235-2345-1236 word relatives 1235-2345-1236-234 word relativement 1235-2345-1236-134 word relativité 1235-2345-1236-2345 word relativités 1235-2345-1236-2345-234 word remarquable 1235-12345-45 word remarquables 1235-12345-45-234 word remarquablement 1235-12345-45-134 word remarque 1235-12345 word remarques 1235-12345-234 word remerciement 1235-134 word remerciements 1235-134-234 word renseignement 1235-26 word renseignements 1235-26-234 word rêve 1235-126 word rêves 1235-126-234 word rêveur 1235-126-46 word rêveurs 1235-126-46-234 word rêveuse 1235-126-234-15 word rêveuses 1235-126-234-156 word rêveusement 1235-126-234-134 word rôle 1235-1456 word rôles 1235-1456-234 word route 1235-1256 word routes 1235-1256-234 word rythme 1235-13456 word rythmes 1235-13456-234 word rythmique 1235-13456-12345 word rythmiques 1235-13456-12345-234 word rythmiquement 1235-13456-12345-134 word séculaire 234-14-1235 word séculaires 234-14-1235-234 word séculairement 234-14-1235-134 word seigneur 234-2356 word seigneurs 234-2356-234 word semblable 234-12 word semblables 234-12-234 word semblablement 234-12-134 word sentiment 234-2345-134 word sentiments 234-2345-134-234 word sentimental 234-2345-134-123 word sentimentale 234-2345-134-123-15 word sentimentales 234-2345-134-123-156 word sentimentalement 234-2345-134-123-134 word sentimentalité 234-2345-134-123-2345 word sentimentalités 234-2345-134-123-2345-234 word sentimentaux 234-2345-134-1346 word ses 234-234 word seul 234-123 word seuls 234-123-234 word seule 234-123-15 word seules 234-123-156 word seulement 234-123-134 word siècle 234-14 word siècles 234-14-234 word simple 234-1246 word simples 234-1246-234 word simplement 234-1246-134 word simplicité 234-1246-2345 word simplicités 234-1246-2345-234 word simplification 234-1246-16 word simplifications 234-1246-16-234 word soeur 234-1235 word soeurs 234-1235-234 word soin 234-35 word soins 234-35-234 word solitaire 234-123-1235 word solitaires 234-123-1235-234 word solitairement 234-123-1235-134 word solitude 234-123-145 word solitudes 234-123-145-234 word sommaire 234-2456-1235 word sommaires 234-2456-1235-234 word sommairement 234-2456-1235-134 word somme 234-2456 word sommes 234-2456-234 word sont 234-2345 word sorte 234-135 word sortes 234-135-234 word soudain 234-145 word soudains 234-145-234 word soudaine 234-1345 word soudaines 234-1345-234 word soudainement 234-1345-134 word soudaineté 234-1345-2345 word soudainetés 234-1345-2345-234 word souffrance 234-124-14 word souffrances 234-124-14-234 word souffrant 234-124 word souffrants 234-124-234 word souffrante 234-124-15 word souffrantes 234-124-156 word souvent 234-1236 word subjectif 234-245-124 word subjectifs 234-245-124-234 word subjective 234-245-1236 word subjectives 234-245-1236-234 word subjectivement 234-245-1236-134 word subjectivité 234-245-1236-2345 word subjectivités 234-245-1236-2345-234 word sujet 234-245 word sujets 234-245-234 word sujétion 234-245-3456 word sujétions 234-245-3456-234 word supérieur 234-1234 word supérieurs 234-1234-234 word supérieure 234-1234-15 word supérieures 234-1234-156 word supérieurement 234-1234-134 word supériorité 234-1234-2345 word supériorités 234-1234-2345-234 word surtout 234-2345 word systématique 234-13456-12345 word systématiques 234-13456-12345-234 word systématiquement 234-13456-12345-134 word système 234-13456 word systèmes 234-13456-234 word tel 2345-123 word tels 2345-123-234 word telle 2345-123-123 word telles 2345-123-123-234 word tellement 2345-123-134 word temporaire 2345-1234-1235 word temporaires 2345-1234-1235-234 word temporairement 2345-1234-1235-134 word temporel 2345-1234-123 word temporels 2345-1234-123-234 word temporelle 2345-1234-123-123 word temporelles 2345-1234-123-123-234 word temps 2345-1234 word tenir 2345-1345 word terre 2345-1235 word terres 2345-1235-234 word tes 2345-234 word tête 2345-126 word têtes 2345-126-234 word théorie 2345-125 word théories 2345-125-234 word théorique 2345-125-12345 word théoriques 2345-125-12345-234 word théoriquement 2345-125-12345-134 word titre 2345-356 word titres 2345-356-234 word toujours 2345-245 word toute 2345-2345 word toutes 2345-2345-234 word toutefois 2345-124 word tragique 356-1245 word tragiques 356-1245-234 word tragiquement 356-1245-134 word trajet 356-245 word trajets 356-245-234 word tranquille 356-12345 word tranquilles 356-12345-234 word tranquillement 356-12345-134 word tranquillité 356-12345-2345 word tranquillités 356-12345-2345-234 word travail 356-123 word travailleur 356-123-46 word travailleurs 356-123-46-234 word travailleuse 356-123-234-15 word travailleuses 356-123-234-156 word travaux 356-1346 word travers 356-1236 word très 356-234 word trop 356-1234 word type 2345-13456 word types 2345-13456-234 word typique 2345-13456-12345 word typiques 2345-13456-12345-234 word typiquement 2345-13456-12345-134 word une 136-1345 word unes 136-1345-234 word unique 136-12345 word uniques 136-12345-234 word uniquement 136-12345-134 word unitaire 136-1345-2345-1235 word unitaires 136-1345-2345-1235-234 word unité 136-1345-2345 word unités 136-1345-2345-234 word univers 136-1236 word universalité 136-1236-123-2345 word universalités 136-1236-123-2345-234 word universel 136-1236-123 word universels 136-1236-123-234 word universelle 136-1236-123-123 word universelles 136-1236-123-123-234 word universellement 136-1236-123-134 word universitaire 136-1236-2345-1235 word universitaires 136-1236-2345-1235-234 word université 136-1236-2345 word universités 136-1236-2345-234 word usage 136-1245 word usages 136-1245-234 word utile 136-123 word utiles 136-123-234 word utilement 136-123-134 word utilisable 136-123-45 word utilisables 136-123-45-234 word utilisateur 136-123-46 word utilisateurs 136-123-46-234 word utilisation 136-123-16 word utilisations 136-123-16-234 word utilitaire 136-123-2345-1235 word utilitaires 136-123-2345-1235-234 word utilité 136-123-2345 word utilités 136-123-2345-234 word valeur 1236-46 word valeurs 1236-46-234 word venir 1236-1345 word véritable 1236-1235 word véritables 1236-1235-234 word véritablement 1236-1235-134 word vérité 1236-123456 word vérités 1236-123456-234 word vieux 1236-1346 word vif 1236-124 word vifs 1236-124-234 word vive 1236-1236 word vives 1236-1236-234 word vivement 1236-1236-134 word voici 1236-14 word voilà 1236-123 word volontaire 1236-135-1235 word volontaires 1236-135-1235-234 word volontairement 1236-135-1235-134 word volonté 1236-135 word volontés 1236-135-234 word volontiers 1236-346 word vos 1236-234 word votre 1236-356 word vôtre 1236-1456 word vôtres 1236-1456-234 word voyage 1236-1245 word voyages 1236-1245-234 word voyageur 1236-1245-46 word voyageurs 1236-1245-46-234 word voyageuse 1236-1245-234-15 word voyageuses 1236-1245-234-156 word vraiment 1236-134 ### ### 4. Locutions ### word à\scause 12356-456-14 word à\smesure 12356-456-134 word à\speine 12356-456-1234 word à\speu\sprès 12356-456-1234-456-235 word à\sprésent 12356-456-235 word à\stravers 12356-456-356 word au\scontraire 13-456-14 word au-dessous 13-36-1256 word au-dessus 13-36-145 word aujourd'hui 13-3-125 word autant\sque 13-456-12345 word autre\schose 13-456-12356 word autre\spart 13-456-1234 word c'est-à-dire 14-3-15-36-12356-36-145 word d'abord 145-3-1 word de\ssuite 145-456-234 word en\smesure 26-456-134 word en\sréalité 26-456-1235 word et\scétera 15-456-14 word la\splupart 123-456-1246 word non\sseulement 1345-456-234 word parce\sque 1234-456-12345 word par\sconséquent 1234-456-14 word par-dessous 1234-36-1256 word par-dessus 1234-36-145 word par\sexemple 1234-456-15 word par\ssuite 1234-456-234 word peu\sà\speu 1234-456-12356-456-1234 word peut-être 1234-36-126 word plus\stard 1246-456-2345 word plus\stôt 1246-456-1456 word pour\sainsi\sdire 1234-456-1-456-145 word quelque\schose 12345-456-12356 word quelque\spart 12345-456-1234 word quelque\stemps 12345-456-2345 word sans\scesse 234-456-14 word sans\sdoute 234-456-145 word tandis\sque 2345-456-12345 word tour\sà\stour 2345-456-12356-456-2345 word tout\sà\scoup 16-456-12356-456-14 word tout\sà\sfait 16-456-12356-456-124 word très\sbien 356-456-12 word vis-à-vis 1236-36-12356-36-1236 sufword jusqu' 245-12345-3 sufword lorsqu' 123-12345-3 sufword parce\squ' 1234-456-12345-3 liblouis-2.5.3/tables/en-ueb-g2.ctb0000664000175000017500000005524312161041546013724 00000000000000# liblouis: Unified English Braille Code (Grade 2) # #Based on U.S. English Grade 2 braille. #Modified by Joseph Lee #Used for testing purposes. # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com include en-ueb-g1.ctb # Braille indicators specific to Grade 2 letsign 56 noletsignafter . noletsignafter ' multind 56-6 letsign capsign # Contractions beginning with the letter a word a 1 word A 1 always aar 1-345 Aaron always aa 1-1 back-translation: maasai word about 1-12 word thereabouts 5-2346-1-12-234 word runabout 1235-136-1345-1-12 contraction ab sufword above 1-12-1236 contraction abv word according 1-14 contraction ac word accordingly 1-14-123-13456 contraction acly word across 1-14-1235 contraction acr begword aforem 1-123456-15-134 aforementioned word aforesaid 1-123456-15-234-145 always afr 1-124-1235 sufword after 1-124 contraction af always afternoon 1-124-1345 afternoons contraction afn sufword afterward 1-124-2456 contraction afw word again 1-1245 contraction ag word against 1-1245-34 word almost 1-123-134 contraction alm word already 1-123-1235 contraction alr word also 1-123 contraction al word although 1-123-1456 word altogether 1-123-2345 contraction alt word alth = word always 1-123-2456 contraction alw midendword ance 46-15 always and 12346 always andar 12346-345 standard midendword anda 12346-1 panda midword angh = Shanghai always anterior 1-1345-2345-12456-24-135-1235 always ar 345 word aright 1-5-1235 word as 1356 contraction as always athe 1-2346 back-translation: lathe midendword aunder 1-136-1345-145-12456 saunders begword auto = autofocus syllable away = # the letter b midword bb 23 lowword be 23 begword be 23 begword bea 12-2 always beu = Beulah always bear 12-15-345 begword beatif 23-1-2345-24-124 begword beatit 23-1-2345-24-2345 begword beatr 23-1-2345-1235 Beatrice always beck 12-15-14-13 always bed 12-1246 begword beda 23-145-1 bedazzle begword bede 23-145-15 bedevil word bede 12-1246-15 bede (a name) begword bedi 23-145-24 bedizzened word bee 12-15-15 begword bee 12-15-15 always been 12-15-26 always beer 12-15-12456 word beg = begword begg 12-15-2356 word begs = begword bei = beijing sufword being 23-346 sufword belch 12-15-123-16 begword beld = Beldon begword belf = belfry, belfast begword belg = Belgium begword belk = Belkin always bell = begword belm = Belmont always belt = begword belw = belwether always ben 12-26 begword beni 23-1345-24 begword benu 23-1345-136 benumbed begword ber 12-12456 begword bera 23-1235-1 berating begword bere 23-1235-15 bereft begword berea 23-1235-2 bereaved always beriberi 12-12456-24-12-12456-24 begword beri 23-1235-24 beribboned always best 12-15-34 sufword bestow 23-34-246 syllable beth 12-15-1456 Bethany always bethe 12-15-2346 Bethel (Hans) Bethe always bets = always bett = sufword bev = bevies begword bever 12-5-15 Beverly beverage always bio = midendword bious 12-24-1256-234 dubious always bottlen = bottlenosed word because 23-14 word bec = begword bedra 23-145-1235-1 sufword before 23-124 word beh = word behind 23-125 word behring 12-15-125-1235-346 word bel = begword beln = Belnick word below 23-123 word beneath 23-1345 sufword beside 23-234 word bes = sufword bess = Bessie word between 23-2345 word bet = word beyond 23-13456 word bey = always bless 12-46-234 joblessness word blind 12-123 contraction bl begword blindf 12-123-124 blindfold word blindly 12-123-123-13456 word blindness 12-123-56-234 sufword blinds 12-123-234 blindsided always boat = boathook always braille 12-1235-123 contraction brl word but 12 # the letter c midword cch 14-16 always chs 16-234 dachshund always chloro 16-123-135-1235-135 begword cofac = cofactor always cofound 14-135-124-46-145 begword con 25 sufword conceive 25-14-1236 sufword conceiving 25-14-1236-1245 always conch 14-135-1345-16 always cone 14-5-135 sufword could 14-145 word could've 14-145-3-1236-15 contraction cd always cred 14-1235-1246 incredulous midword cc 25 word can 14 always cannot 456-14 word ch = always ch 16 syllable chand 16-12346 merchandise always character 5-16 always chemo 16-15-134-135 word child 16 prfword children 16-1345 sufword clever 14-123-5-15 cleverest sufword coworker 14-135-5-2456-12456 # the letter d always daredevil 145-345-15-145-15-1236-24-123 always day 5-145 begword deact = deactivation begword deall = deallocate begword decarb 145-15-14-345-12 always deceive 145-14-1236 contraction dcv contraction dcvd contraction dcvr contraction dcvs always deceiving 145-14-1236-1245 contraction dcvg always declare 145-14-123 contraction dcl contraction dcld contraction dclr contraction dcls word declaring 145-14-123-1245 contraction dclg begword dino 145-35-135 dinoflagellate begword dis 256 word disc = word discs = always dish 145-24-146 begword disha 256-125-1 dishabile begword dishear 256-125-15-345 disheartened begword disho 256-125-135 dishonor begword dishone 256-125-5-135 dishonest sufword disk = sufword dispirit 145-24-456-234 dispirited begword disul = disulfide word do 145 syllable down 145-246-1345 facedown always edress = vinedresser syllable drum = kettledrum # the letter e midendword eance 15-46-15 vengeance midendword eand 15-12346 meander always ear 15-345 always ed 1246 word either 15-24 midword ea 2 contraction ei word en = always en 26 always ename 15-5-1345 sufword enamel 26-1-134-15-123 enameled midendword ence 56-15 syllable neck = bottleneck midendword eness 15-56-234 closeness lowword enough 26 word enough 26-1256-126 always er 12456 word anteroom 1-1345-2345-12456-135-135-134 syllable room = storeroom always evert 15-1236-12456-2345 always nevertheless 1345-5-15-2346-46-234 always ever 5-15 word every 15 # the letter f midword ff 235 syllable ffold 235-135-123-145 scaffold always father 5-124 always fein 124-15-35 Feingold always first 124-34 always ffor 124-123456 always for 123456 begword fora 123456-1 foramen always fore 123456-15 begword forens 123456-26-234 forensic always forever 123456-5-15 forevermore syllable fold = syllable foot = word from 124 word friend 124-1235 word friends 124-1235-234 word friendless 124-1235-46-234 sufword friendship 124-1235-146-24-1234 sufword friendl 124-1235-123 contraction fr midendword ful 56-123 # the letter g midword gg 2356 always gh 126 always ghead 1245-125-2-145 always gheart 1245-125-15-345-2345 midendword ghill = dunghill midendword ghorn = bighorn always ghouse 1245-125-1256-234-15 always ghz = (gigahertz) begword givea = giveaway sufword gnome = gnomedb word go 1245 sufword good 1245-145 always feelgood 124-15-15-123-1245-145 contraction gd always good-by 1245-145-36-12-13456 syllable grad = leningrad sufword great 1245-1235-2345 contraction grt # the letter h always had 456-125 sufword hade = hadean syllable hand 125-12346 word have 125 syllable hawk = syllable hawthorn 125-1-2456-1456-135-1235-1345 syllable head 125-2-145 syllable heart 125-15-345-2345 always hedgerow 125-1246-1245-15-1235-246 syllable herd 125-12456-145 goatherd always here 5-125 always hereafter 5-125-1-124 always hered 125-12456-1246 always heren 125-12456-26 midendword herence 125-12456-56-15 adherence always herer 125-12456-12456 always heres 125-12456-15-234 always heret 125-12456-15-2345 word heretofore 5-125-2345-135-123456-15 word herf = word herself 125-12456-124 word him 125-134 word His 6-236 word hm 56-125-134 sufword hmm = word himself 125-134-124 contraction hmf lowword his 236 syllable holm = syllable hood = syllable horn = syllable horse = horseradish syllable house 125-1256-234-15 syllable hydro = always hwh = # the letter i word I 24 midendword iever 24-15-1236-12456 word immediate 24-134-134 contraction imm word immediately 24-134-134-123-13456 contraction immly begword immuno = immunofluorescence lowword in 35 always in 35 endword in' 35-3 midendword iness 24-56-234 midendword ing 346 always ingar 35-1245-345 Weingarten midendword ingent 346-26-2345 stringent midword ingenc 346-26-14 contingency midword ingen 35-1245-26 palingenesis (new birth) always isinglass 24-234-35-1245-123-1-234-234 always isomer 24-234-135-134-12456 word it 1346 word it's 1346-3-234 word it'd 1346-3-145 word it'll 1346-3-123-123 word its 1346-234 contraction xs word itself 1346-124 # the letter j word just 245 # the letter k always knot = knothole always know 5-13 word knowledge 13 # the letter l always \s-\shis 6-36-125-24-234 always \s-\swas 36-36-2456-1-234 word housed 125-1256-234-1246 midendword less 46-234 sufword letter 123-1235 contraction lr sufword newsletter 1345-15-2456-234-123-1235 word unlettered 136-1345-123-1235-1246 word like 123 always lineage 123-35-2-1245-15 sufword little 123-123 contraction ll sufword lone 123-5-135 lonely always loner 123-135-1345-12456 always lord 5-123 # the letter m always maha = always many 456-134 begword mccon 134-14-25 begword mc = word mch = always medic 134-1246-24-14 medicare midendword ment 56-2345 midword menth 134-26-1456 Blumenthal word milling 134-24-123-123-346 always minestrone 134-35-15-34-1235-135-1345-15 begword mishand 134-24-234-125-12346 mishandled always mishap = sufword mishear 134-24-234-125-15-345 misheard begword missh 134-24-234-146 misshapen begword misst 134-24-234-34 missstep sufword mistreat 134-24-234-2345-1235-2-2345 word monetary 134-5-135-2345-345-13456 word more 134 always mother 5-134 always much 134-16 word mst = word must 134-34 word mustn 134-34-1345 word musty 134-34-13456 begword myo = myofibroblasts word myself 134-13456-124 contraction myf # the letter n always name 5-1345 midendword nament 1345-1-56-2345 tournament always namese = word near-by 1345-15-345-36-12-13456 prfword necessary 1345-15-14 unnecessary contraction nec word neither 1345-15-24 contraction nei midendword ness 56-234 syllable nomad = seminomadic begword nonen 1345-135-1345-26 nonentity begword noness = nonessential word nonetheless 1345-5-135-2346-46-234 always noneq = always nonex = begword nong = nongraphical word noone 1345-135-5-135 begword nose = nosedive word nosed 1345-135-234-1246 word not 1345 word noways = word nowhere 1345-135-5-156 # the letter o word O 135 midendword oence 135-26-14-15 electroencephalogram always of 12356 midendword ofar 135-124-345 insofar always ofold = twofold midword ofor 135-123456 midword onea 135-1345-2 Hasmonean endword onea = word onef = always onesi = midendword oness 135-56-234 midendword oneer 135-1345-15-12456 midendword oned 135-1345-1246 always one 5-135 midendword oneless 5-135-46-234 tonelessly midendword onel = salmonella colonel always onem = phoneme midendword onement 5-135-56-2345 atonement midendword onent 135-1345-26-2345 midendword oneous 135-1345-15-1256-234 erroneous always oner 135-1345-12456 midendword onese = Cantonese, word oneself 5-135-124 midendword onet = phonetics bayonet endword onez = Ordonez midendword ong 56-1245 always oon = sooner word ou = always ou 1256 midendword ound 46-145 midendword ount 46-2345 always ourselves 1256-1235-1236-234 word ourvs = word out 1256 always ought 5-1256 always ow 246 # the letter p prfword paid 1234-145 contraction pd always part 5-1234 begword parthe 1234-345-2346 parthenon begword parth 1234-345-1456 parthian begword parthen 1234-345-2346-1345 parthenon parthenogenesis word people 1234 always perceive 1234-12456-14-1236 always perceiving 1234-12456-14-1236-1245 word percvg = word perh = always perhaps 1234-12456-125 begword photo = always pher 1234-125-12456 cyphered always pineapple 1234-35-15-1-1234-1234-123-15 syllable portion 1234-135-1235-56-1345 syllable port = porthole begword potho = pothole pothook begword pre = always preach 1234-1235-2-16 sufword predator 1234-1235-1246-1-2345-135-1235 sufword pren 1234-1235-26 # the letter q always quick 12345-13 contraction qk word quite 12345 always question 5-12345 # the letter r sufword rafter 1235-1-124-2345-12456 word rather 1235 sufword raw = rawhide begword reab = reabsorbed always reac = always reach 1235-2-16 begword readj = readjust begword readm = readmit begword reaff 1235-15-1-235 sufword reagent 1235-15-1-1245-26-2345 begword reagg 1235-15-1-2356 reaggregated begword realig = realign begword rean = reanalyze, reanimate begword reapp = reappear begword reass 1235-15-1-234-234 begword reatt = reattach begword reau = reauthorization begword reaw = reawaken always receive 1235-14-1236 contraction rcv contraction rcvd contraction rcvr contraction rcvs always receiving 1235-14-1236-1245 contraction rcvg word reichstag 1235-15-24-16-234-2345-1-1245 always rejoice 1235-245-14 contraction rjc contraction rjcd contraction rjcr contraction rjcs always rejoicing 1235-245-14-1245 contraction rjcg begword reverb 1235-15-1236-12456-12 begword ribof = always right 5-1235 # the letter s word said 234-145 contraction sd begword saw = sawhorse syllable screw = screwhole always sent 234-26-2345 sentimental always sever 234-15-1236-12456 perseverance sufword asseverate 234-5-15-1-2345-15 sufword several 234-5-15-1-123 severally word shall 146 word sh = always sh 146 always shaus = In German names sufword should 146-145 word shd = midendword sheart 124-125-15-345-2345 midendword shood = always shoulder 146-1256-123-145-12456 midendword shouse 234-125-1256-234-15 begword mistak 134-24-34-1-13 word singapore 234-346-1-1234-135-1235-15 midendword sion 46-1345 midword stak 234-2345-1-13 midendword stion 234-56-1345 word so 234 always some 5-234 midendword somed 234-135-134-1246 ransomed begword somer 234-135-134-12456 somersault always spirit 456-234 partword st 34 always sth 234-1456 always sthood 34-125-135-135-145 priesthood always sthe 234-2346 word still 34 always stime 234-5-2345 midendword stown 234-2345-246-1345 Pickstown begword styro 34-13456-1235-135 styrofoam always ssh = always sst = word such 234-16 word sch = # the letter t word th = always th 1456 word that 2345 word this 1456 word thyself 1456-13456-124 word thyf = always theart 2345-125-15-345-2345 sweetheart always motheat 1456-2-2345 motheaten always thouse 2345-125-1256-234-15 always theret 2346-1235-15-2345 always thood = word tiddledywinks 2345-24-145-145-123-15-145-13456-2456-35-13-234 always tnam = word today 2345-145 contraction td word tomorrow 2345-134 contraction tm word tonight 2345-1345 contraction tn always turtledove = midendword thead 2345-125-2-145 always theast 1456-2-34 always the 2346 always thea 2346-1 theater word themselves 2346-134-1236-234 always their 456-2346 always thence 1456-56-15 always there 5-2346 midendword thereal 2346-1235-2-123 ethereal always thereen 2346-1235-15-26 smithereens word thereupon 5-2346-45-136 always thereafter 5-2346-1-124 always thered 2346-1235-1246 always therer 2346-1235-12456 always theres 2346-1235-15-234 theresa therese midendword tion 56-1345 always time 5-2345 midendword timet = altimeter word these 45-2346 always through 5-1456 always together 2345-1245-1235 contraction tgr word those 45-1456 begword trans = transtype # the letter u begword un = unameliorated begword unmen 136-1345-134-26 unmentioned word upon 45-136 Dupont word us 136 always under 5-136 word unsaid 136-1345-234-145 # the letter v begword vaing 1236-1-35-1245 vainglory word very 1236 begword vice = viceroy # the letter w lowword was 356 word wh = always wh 156 midendword whart 2456-125-345-2345 Newhart word which 156 word will 2456 lowword were 2356 lowword Were 6-2356 for back-translation always where 5-156 word whereupon 5-156-45-136 word wherever 156-12456-5-15 always with 23456 always word 45-2456 word whose 45-156 always work 5-2456 sufword would 2456-145 word would've 2456-145-3-1236-15 contraction wd always world 456-2456 # the letter x # the letter y word you 13456 word you'd 13456-3-145 word you'll 13456-3-123-123 word you're 13456-3-1235-15 word you've 13456-3-1236-15 always young 5-13456 word your 13456-1235 contraction yr word yours 13456-1235-234 contraction yrs word yourself 13456-1235-124 contraction yrf word yourselves 13456-1235-1236-234 contraction yrvs # the letter z # Syst`eme International Prefixes begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 # begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 begword epi = begword extra = begword hyper 125-13456-1234-12456 begword hypo = begword infra 35-124-1235-1 begword inter 35-2345-12456 begword intra 35-2345-1235-1 begword iso = begword macro = begword meta = begword micro = begword mono = begword multi = begword patho 1234-1-1456-135 begword peri 1234-12456-24 begword poly = begword post 1234-135-34 begword pre = begword pseudo = begword retro = begword super 234-136-1234-12456 begword trans = begword ultra = # other prefixes begword benefic 23-1345-15-124-24-14 beneficent begword electro = begword psycho 1234-234-13456-16-135 endword 'd 3-145 back-translation: = doesn't work endword 'm 3-134 endword 're 3-1235-15 endword 've 3-1236-15 endword 'll 3-123-123 endword 's 3-234 endword 't 3-2345 word 'em = word abalone = begword aftere 1-124-2345-12456-15 aftereffect begword afteri 1-124-2345-12456-24 afterimage sufword airedale = sufword anemone = word antigone = sufword bandog = sufword battledo = battledor battledome always bedragg 23-145-1235-1-2356 sufword beguine 12-15-1245-136-35-15 proper name sufword belittle 23-123-123 always benares 23-1345-345-15-234 begword benev 23-1345-15-1236 begword bene 12-26-15 always bering 12-12456-346 always bezel = syllable nomial = midendword lingian 123-346-24-1-1345 endword reagh 1235-2-126 castlereagh sufword cation 14-1-2345-24-135-1345 always cicerone 14-24-14-12456-135-1345-15 always blenz 12-123-26-1356 always enzym 26-1356-13456-134 always coname 14-135-5-1345 word conatus = word conestoga 25-15-34-135-1245-1 word conidium = endword zione = word cony = sufword deaconess 145-2-14-135-56-234 begword denation 145-15-1345-1-56-1345 syllable natur = always derogate 145-12456-135-1245-1-2345-15 always donee = word donegal = midendword thereally 2346-1235-2-123-123-13456 ethereally midendword enook = always eversion 15-1236-12456-46-1345 sufword falconet = sufword feringhee 124-12456-35-126-15-15 begword fired = firedamp firedrake contraction frs sufword garderobe 1245-345-145-15-1235-135-12-15 midendword ometer 135-134-15-2345-12456 gasometer always gastight 1245-1-234-2345-24-126-2345 word Goodwill = with a cap word Goody = with a cap word Goodyear 1245-135-135-145-13456-15-345 syllable herd = goatherd begword conan = always thold = berthold syllable thill = anthill word conch 14-135-1345-16 word conches 14-135-1345-16-15-234 syllable urinary 136-1235-35-345-13456 always handsomer 125-12346-5-234-1235 always hereford 125-12456-15-123456-145 always hereupon 5-125-45-136 endword sheimer 234-125-15-24-134-12456 always hermione 125-12456-134-24-135-1345-15 syllable rubber 1235-136-23-12456 indiarubber begword inerad 35-15-1235-1-145 ineradicable begword ingl 35-1245-123 inglewood inglenook word jaconet = word jehad = word jihad = word konev = contraction lrs word limeade = always lineag 123-35-2-1245 contraction llr always littleton = proper noun always littlejohn = surname always letterman = surname always oweed 135-2456-15-1246 locoweed always lonesome 123-5-135-5-234 always menhaden 134-26-125-1-145-26 midendword encephal 26-14-15-1234-125-1-123 sufword misoneism = word more'n = word nonesuch 1345-5-135-234-16 word noway = change entry of noways word nowise = sufword nuthatch 1345-136-2345-125-1-2345-16 always oneida = word orangeade = begword out 1256-2345 outhaul always peritoneum 1234-12456-24-2345-135-1345-15-136-134 always peroneal 1234-12456-135-1345-2-123 always persephone 1234-12456-234-15-1234-125-135-1345-15 begword pinedr 1234-35-15-145-1235 pinedrop syllable root = pokeroot snakeroot always poleax = poleax sufword potherb 1234-123-2345-125-12456-12 sufword potsherd 1234-135-2345-146-12456-145 syllable hunter 125-136-1345-2345-12456 pothunter always predecess 1234-1235-1246-15-14-15-234-234 always predicat 1234-1235-1246-24-14-1-2345 always prounion = begword reaffor 1235-15-1-125-123456 reafforestation begword reappor = reapportion begword reavow 1235-15-1-1236-246 always redingote 1235-1246-346-135-2345-15 always renegad 1235-26-15-1245-1-145 begword resth 1235-15-34-125 restharrow word restharrow 1235-15-34-125-1-1235-1235-246 begword roped = ropedance always roustabout 1235-1256-34-1-12 word sadowa = always scattergood 234-14-1-2345-2345-12456-1245-145 word sever 234-5-15 word severs 234-5-15-234 word severed 234-5-15-1246 word severing 234-5-15-346 always severn 234-5-15-1345 midword sever 234-15-1236-12456 perseverance word several 234-5-15-1-123 severally always shofar 146-12356-345 always shoshone 146-135-146-135-1345-15 always smitheren 234-134-24-2346-1235-26 proper name endword ouno = radiouno always sparerib 234-1234-345-15-1235-14-12 begword spiken = spikenard syllable hound 125-46-145 loghound always stingar 34-346-345 always owork 135-5-2456 cowork stuccowork begword cowr = cowrote always tranship 2345-1235-1-1345-146-24-1234 always turnabout 2345-136-1235-1345-1-12 always dledee = always dledum = tweedledee and tweedledum always twould 2345-2456-145 begword underog = begword underiv = always vicenar 1236-24-14-26-345 sufword violone = sufword wakerif = word whereabouts 5-156-1-12-234 begword wired = wiredance always wiseacr = always you'n 13456-1256-3-1345 always zingaro 1356-346-345-135 always zwinglian 1356-2456-346-123-24-1-1345 sufword thorn 1456-135-1235-1345 word hearths 125-15-345-1456-234 word hearth 125-15-345-1456 always \s\x2013\s 36-36 # 8211 en dash always \s\x2014\s 36-36 # em dash # nobreak 6-46-56-e,6-46-56 # Problems handled with context context _$l["."]$l @256 U.S. context _$d["a"] @56-1 context _$d["A"] @56-1 # problems handled with multipass opcodes pass2 @36-36-36 @36-36 pass2 @6-236-3456 @3-3456 pass2 @6-56 @56-6 liblouis-2.5.3/tables/hyph_pt_PT.dic0000664000175000017500000000241012161041546014274 00000000000000ISO8859-1 .ex1e4m3p2l2o. 1b2l 1b2r 1ba 1be 1bi 1bo 1bu 1bá 1bâ 1bã 1bé 1bí 1bó 1bú 1bê 1bõ 1c2h 1c2l 1c2r 1ca 1ce 1ci 1co 1cu 1cá 1câ 1cã 1cé 1cí 1có 1cú 1cê 1cõ 1ça 1çe 1çi 1ço 1çu 1çá 1çâ 1çã 1çé 1çí 1çó 1çú 1çê 1çõ 1d2l 1d2r 1da 1de 1di 1do 1du 1dá 1dâ 1dã 1dé 1dí 1dó 1dú 1dê 1dõ 1f2l 1f2r 1fa 1fe 1fi 1fo 1fu 1fá 1fâ 1fã 1fé 1fí 1fó 1fú 1fê 1fõ 1g2l 1g2r 1ga 1ge 1gi 1go 1gu 1gu4a 1gu4e 1gu4i 1gu4o 1gá 1gâ 1gã 1gé 1gí 1gó 1gú 1gê 1gõ 1ja 1je 1ji 1jo 1ju 1já 1jâ 1jã 1jé 1jí 1jó 1jú 1jê 1jõ 1k2l 1k2r 1ka 1ke 1ki 1ko 1ku 1ká 1kâ 1kã 1ké 1kí 1kó 1kú 1kê 1kõ 1l2h 1la 1le 1li 1lo 1lu 1lá 1lâ 1lã 1lé 1lí 1ló 1lú 1lê 1lõ 1ma 1me 1mi 1mo 1mu 1má 1mâ 1mã 1mé 1mí 1mó 1mú 1mê 1mõ 1n2h 1na 1ne 1ni 1no 1nu 1ná 1nâ 1nã 1né 1ní 1nó 1nú 1nê 1nõ 1p2l 1p2r 1pa 1pe 1pi 1po 1pu 1pá 1pâ 1pã 1pé 1pí 1pó 1pú 1pê 1põ 1qu4a 1qu4e 1qu4i 1qu4o 1ra 1re 1ri 1ro 1ru 1rá 1râ 1rã 1ré 1rí 1ró 1rú 1rê 1rõ 1sa 1se 1si 1so 1su 1sá 1sâ 1sã 1sé 1sí 1só 1sú 1sê 1sõ 1t2l 1t2r 1ta 1te 1ti 1to 1tu 1tá 1tâ 1tã 1té 1tí 1tó 1tú 1tê 1tõ 1v2l 1v2r 1va 1ve 1vi 1vo 1vu 1vá 1vâ 1vã 1vé 1ví 1vó 1vú 1vê 1võ 1w2l 1w2r 1xa 1xe 1xi 1xo 1xu 1xá 1xâ 1xã 1xé 1xí 1xó 1xú 1xê 1xõ 1za 1ze 1zi 1zo 1zu 1zá 1zâ 1zã 1zé 1zí 1zó 1zú 1zê 1zõ a3a a3e a3o c3c e3a e3e e3o i3a i3e i3i i3o i3â i3ê i3ô o3a o3e o3o r3r s3s u3a u3e u3o u3u liblouis-2.5.3/tables/ukmaths_single_cell_defs.cti0000664000175000017500000000131312161041546017254 00000000000000# Define all single-cell characters needed. space \s 0 space \x000a 0 space \x000c 0 space \x000d 0 space \x001b 1b space \x00a0 a space \t 9 punctuation ! 5 punctuation " 4 sign # 3456 sign $ 46 sign % 123456 punctuation & 12346 punctuation ' 6 punctuation ( 236 punctuation ) 356 sign * 35 math + 235 punctuation , 2 punctuation - 36 punctuation . 3 math / 256 include digits6DotsPlusDot6.uti punctuation : 25 punctuation ; 23 math < 56 math = 2356 math > 45 punctuation ? 26 punctuation @ 3457 include latinLetterDef8Dots.uti punctuation [ 123567 punctuation \\ 347 punctuation ] 234567 math ^ 23467 punctuation _ 4567 sign ` 345 punctuation { 12356 sign | 34 punctuation } 23456 math ~ 2346 sign \x007f 456 liblouis-2.5.3/tables/fi-fi.ctb0000664000175000017500000001632012161041546013226 00000000000000# liblouis: Finnish 8 dot braille table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # Created by Code Factory S.L. include text_nabcc.dis letter \x0002 1278 letter \x0003 1478 letter \x0004 14578 letter \x0005 2678 letter \x0006 12478 letter \x0007 124578 letter \x0008 12578 letter \x0009 3578 letter \x000A 24578 letter \x000B 1378 letter \x000C 12378 letter \x000D 13478 letter \x000E 134578 letter \x000F 23678 letter \x0010 123478 letter \x0011 1234578 letter \x0012 123578 letter \x0013 23478 letter \x0014 234578 letter \x0015 35678 letter \x0016 123678 letter \x0017 245678 letter \x0018 134678 letter \x0019 1345678 letter \x001A 135678 letter \x001B 345678 letter \x001C 12345678 letter \x001D 4678 letter \x001E 4578 letter \x001F 67 letter \x0020 0 space \x00a0 0 #space \t 0-0 #space \s 0 # non Capital characters letter a 1 letter b 12 letter c 14 letter d 145 letter e 15 letter f 124 letter g 1245 letter h 125 letter i 24 letter j 245 letter k 13 letter l 123 letter m 134 letter n 1345 letter o 135 letter p 1234 letter q 12345 letter r 1235 letter s 234 letter t 2345 letter u 136 letter v 1236 letter w 2456 letter x 1346 letter y 13456 letter z 1356 # capital characters letter A 17 letter B 127 letter C 147 letter D 1457 letter E 157 letter F 1247 letter G 12457 letter H 1257 letter I 247 letter J 2457 letter K 137 letter L 1237 letter M 1347 letter N 13457 letter O 1357 letter P 12347 letter Q 123457 letter R 12357 letter S 2347 letter T 23457 letter U 1367 letter V 12367 letter W 24567 letter X 13467 letter Y 134567 letter Z 13567 # the decimal digits include digits8Dots.uti # punctuations punctuation ! 256 punctuation " 56 letter \x0023 3456 letter $ 2346 punctuation % 1456 punctuation & 12346 punctuation ' 5 punctuation ( 236 punctuation ) 356 punctuation * 35 punctuation + 235 punctuation , 2 letter - 36 punctuation . 3 letter / 34 punctuation : 25 punctuation ; 23 punctuation < 126 punctuation = 2356 punctuation > 156 punctuation ? 26 letter @ 4 punctuation [ 12356 letter \x005C 168 # escape for \ punctuation ] 23456 letter ^ 457 letter _ 346 letter ` 1234568 punctuation { 1246 punctuation | 456 punctuation } 12456 letter ~ 45 letter \x007f 7 #Hex Dots Dec Char Description letter \X00C2 24578 # 194 Latin capital letter a with circumflex letter \X00CA 1267 # 202Ê Latin capital letter e with circumflex letter \X00CE 1467 # 206ÃŽ Latin capital letter i with circumflex letter \X00D4 14567 # 212Ô Latin capital letter o with circumflex letter \X00DB 1567 # 219Û Latin capital letter u with circumflex letter \X00E2 1678 # 226â Latin small letter a with circumflex letter \X00EA 12678 # 234ê Latin small letter e with circumflex letter \X00EE 14678 # 238î Latin small letter i with circumflex letter \X00F4 145678 # 244ô Latin small letter o with circumflex letter \X00FB 15678 # 251û Latin small letter u with circumflex # The 5 letters with a grave accent `) use the [6-0] dot combinations: #Hex Dots Dec Char Description letter \X00C0 235678 # 192À Latin capital letter a with grave letter \X00C8 3578 # 200È Latin capital letter e with grave letter \X00CC 57 # 204ÃŒ Latin capital letter i with grave letter \X00D2 578 # 210Ã’ Latin capital letter o with grave letter \X00D9 35678 # 217Ù Latin capital letter u with grave letter \X00E0 123568 # 224à Latin small letter a with grave letter \X00E8 23468 # 232è Latin small letter e with grave letter \X00EC 348 # 236ì Latin small letter i with grave letter \X00F2 3468 # 242ò Latin small letter o with grave letter \X00F9 234568 # 249ù Latin small letter u with grave # The6 letters with an acute accent ') use the [a-f] dot combinations with # dots 3 and 6 added: #Hex Dots Dec Char Description letter \X00C1 28 # 193à Latin capital letter a with acute letter \X00C9 1234567 # 201É Latin capital letter e with acute letter \X00CD 258 # 205à Latin capital letter i with acute letter \X00D3 267 # 211Ó Latin capital letter o with acute letter \X00DA 268 # 218Ú Latin capital letter u with acute letter \X00DD 3568 # 221à Latin capital letter y with acute letter \X00E1 168 # 225á Latin small letter a with acute letter \X00E9 123456 # 233é Latin small letter e with acute letter \X00ED 2478 # 237í Latin small letter i with acute letter \X00F3 13578 # 243ó Latin small letter o with acute letter \X00FA 13678 # 250ú Latin small letter u with acute letter \X00FD 24568 # 253ý Latin small letter y with acute # The 6 letters with a dieresis accent ") use the [f-j] dot combinations with # dots 3 and 6 added, and the number sign because it fits the sequence # reasonably well): #Hex Dots Dec Char Description letter \X00C4 3457 # 196Ä Latin capital letter a with diaeresis letter \X00CB 2358 # 203Ë Latin capital letter e with diaeresis letter \X00CF 23568 # 207à Latin capital letter i with diaeresis letter \X00D6 2467 # 214Ö Latin capital letter o with diaeresis letter \X00DC 12567 # 220Ü Latin capital letter u with diaeresis letter \X00E4 345 # 228ä Latin small letter a with diaeresis letter \X00EB 12468 # 235ë Latin small letter e with diaeresis letter \X00EF 124568 # 239ï Latin small letter i with diaeresis letter \X00F6 246 # 246ö Latin small letter o with diaeresis letter \X00FC 1256 # 252ü Latin small letter u with diaeresis letter \X00FF 134568 # 255ÿ Latin small letter y with diaeresis # There is no uppercase y-dieresis in the Latin 1 character set. The German # lowercase double-s, which also doesn't have an uppercase counterpart in the # Latin 1 character set, uses its representation: #Hex Dots Dec Char Description letter \X00DF 34568 # 223ß Latin small letter sharp s # The remaining accented letters are: #Hex Dots Dec Char Description letter \X00C3 3467 # 195à Latin capital letter a with tilde letter \X00D1 2567 # 209Ñ Latin capital letter n with tilde letter \X00D5 267 # 213Õ Latin capital letter o with tilde letter \X00C5 167 # 197Ã… Latin capital letter a with ring above letter \X00C7 1578 # 199Ç Latin capital letter c with cedilla letter \X00D8 1567 # 216Ø Latin capital letter o with stroke letter \X00C6 47 # 198Æ Latin capital letter ae letter \X00D0 3567 # 208à Latin capital letter eth letter \X00DE 2357 # 222Þ Latin capital letter thorn letter \X00E3 13678 # 227ã Latin small letter a with tilde letter \X00F1 13458 # 241ñ Latin small letter n with tilde letter \X00F5 1358 # 245õ Latin small letter o with tilde letter \X00E5 16 # 229Ã¥ Latin small letter a with ring above letter \X00E7 1234678 # 231ç Latin small letter c with cedilla letter \X00F8 24678 # 248ø Latin small letter o with stroke letter \X00E6 34578 # 230æ Latin small letter ae letter \X00F0 23458 # 240ð Latin small letter eth letter \X00FE 12348 # 254þ Latin small letter thorn liblouis-2.5.3/tables/bengali.cti0000664000175000017500000000710612161041546013646 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0981 3 BENGALI SIGN CANDRABINDU letter \x0982 56 BENGALI SIGN ANUSVARA letter \x0983 6 BENGALI SIGN VISARGA letter \x0985 1 BENGALI LETTER A letter \x0986 345 BENGALI LETTER AA letter \x0987 24 BENGALI LETTER I letter \x0988 35 BENGALI LETTER II letter \x0989 136 BENGALI LETTER U letter \x098a 1256 BENGALI LETTER UU letter \x098f 15 BENGALI LETTER E letter \x0990 34 BENGALI LETTER AI letter \x0993 135 BENGALI LETTER O letter \x0994 246 BENGALI LETTER AU letter \x0995 13 BENGALI LETTER KA letter \x0996 46 BENGALI LETTER KHA letter \x0997 1234 BENGALI LETTER GA letter \x0998 126 BENGALI LETTER GHA letter \x0999 346 BENGALI LETTER NGA letter \x099a 14 BENGALI LETTER CA letter \x099b 16 BENGALI LETTER CHA letter \x099c 245 BENGALI LETTER JA letter \x099d 356 BENGALI LETTER JHA letter \x099e 25 BENGALI LETTER NYA letter \x099f 23456 BENGALI LETTER TTA letter \x09a0 2456 BENGALI LETTER TTHA letter \x09a1 1246 BENGALI LETTER DDA letter \x09a2 123456 BENGALI LETTER DDHA letter \x09a3 3456 BENGALI LETTER NNA letter \x09a4 2345 BENGALI LETTER TA letter \x09a5 1456 BENGALI LETTER THA letter \x09a6 145 BENGALI LETTER DA letter \x09a7 2346 BENGALI LETTER DHA letter \x09a8 1345 BENGALI LETTER NA letter \x09aa 1234 BENGALI LETTER PA letter \x09ab 235 BENGALI LETTER PHA letter \x09ac 12 BENGALI LETTER BA letter \x09ad 45 BENGALI LETTER BHA letter \x09ae 134 BENGALI LETTER MA letter \x09af 13456 BENGALI LETTER YA letter \x09b0 1235 BENGALI LETTER RA letter \x09b2 123 BENGALI LETTER LA letter \x09b6 146 BENGALI LETTER SHA letter \x09b7 12346 BENGALI LETTER SSA letter \x09b8 234 BENGALI LETTER SA letter \x09b9 125 BENGALI LETTER HA letter \x09bd 2 BENGALI SIGN AVAGRAHA letter \x09be 345 BENGALI VOWEL SIGN AA letter \x09bf 24 BENGALI VOWEL SIGN I letter \x09c0 35 BENGALI VOWEL SIGN II letter \x09c1 136 BENGALI VOWEL SIGN U letter \x09c2 1256 BENGALI VOWEL SIGN UU letter \x09c7 15 BENGALI VOWEL SIGN E letter \x09c8 34 BENGALI VOWEL SIGN AI letter \x09cb 135 BENGALI VOWEL SIGN O letter \x09cc 246 BENGALI VOWEL SIGN AU letter \x09cd 4 BENGALI SIGN VIRAMA letter \x09e6 245 BENGALI DIGIT ZERO letter \x09e7 1 BENGALI DIGIT ONE letter \x09e8 12 BENGALI DIGIT TWO letter \x09e9 14 BENGALI DIGIT THREE letter \x09ea 145 BENGALI DIGIT FOUR letter \x09eb 15 BENGALI DIGIT FIVE letter \x09ec 124 BENGALI DIGIT SIX letter \x09ed 1245 BENGALI DIGIT SEVEN letter \x09ee 125 BENGALI DIGIT EIGHT letter \x09ef 24 BENGALI DIGIT NINE liblouis-2.5.3/tables/hy.ctb0000664000175000017500000001253012161041546012653 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Armenian # # Samuel Thibault # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation ' 3 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 236 QUESTION MARK punctuation \x00a0 0 NO-BREAK SPACE uppercase \x0531 17 ARMENIAN CAPITAL LETTER AYB uppercase \x0532 12347 ARMENIAN CAPITAL LETTER BEN uppercase \x0533 123457 ARMENIAN CAPITAL LETTER GIM uppercase \x0534 14567 ARMENIAN CAPITAL LETTER DA uppercase \x0535 134567 ARMENIAN CAPITAL LETTER ECH uppercase \x0536 13567 ARMENIAN CAPITAL LETTER ZA uppercase \x0537 157 ARMENIAN CAPITAL LETTER EH uppercase \x0538 1367 ARMENIAN CAPITAL LETTER ET uppercase \x0539 23457 ARMENIAN CAPITAL LETTER TO uppercase \x053a 3457 ARMENIAN CAPITAL LETTER ZHE uppercase \x053b 247 ARMENIAN CAPITAL LETTER INI uppercase \x053c 1237 ARMENIAN CAPITAL LETTER LIWN uppercase \x053d 13467 ARMENIAN CAPITAL LETTER XEH uppercase \x053e 347 ARMENIAN CAPITAL LETTER CA uppercase \x053f 12457 ARMENIAN CAPITAL LETTER KEN uppercase \x0540 1257 ARMENIAN CAPITAL LETTER HO uppercase \x0541 3467 ARMENIAN CAPITAL LETTER JA uppercase \x0542 1267 ARMENIAN CAPITAL LETTER GHAD uppercase \x0543 2457 ARMENIAN CAPITAL LETTER CHEH uppercase \x0544 1347 ARMENIAN CAPITAL LETTER MEN uppercase \x0545 1567 ARMENIAN CAPITAL LETTER YI uppercase \x0546 13457 ARMENIAN CAPITAL LETTER NOW uppercase \x0547 1467 ARMENIAN CAPITAL LETTER SHA uppercase \x0548 2467 ARMENIAN CAPITAL LETTER VO uppercase \x0549 167 ARMENIAN CAPITAL LETTER CHA uppercase \x054a 127 ARMENIAN CAPITAL LETTER PEH uppercase \x054b 147 ARMENIAN CAPITAL LETTER JHEH uppercase \x054c 124567 ARMENIAN CAPITAL LETTER RA uppercase \x054d 2347 ARMENIAN CAPITAL LETTER SEH uppercase \x054e 12367 ARMENIAN CAPITAL LETTER VEW uppercase \x054f 1457 ARMENIAN CAPITAL LETTER TIWN uppercase \x0550 12357 ARMENIAN CAPITAL LETTER REH uppercase \x0551 23467 ARMENIAN CAPITAL LETTER CO uppercase \x0552 24567 ARMENIAN CAPITAL LETTER YIWN uppercase \x0553 12467 ARMENIAN CAPITAL LETTER PIWR uppercase \x0554 137 ARMENIAN CAPITAL LETTER KEH uppercase \x0555 1357 ARMENIAN CAPITAL LETTER OH uppercase \x0556 1247 ARMENIAN CAPITAL LETTER FEH punctuation \x055d 6 ARMENIAN COMMA lowercase \x0561 1 ARMENIAN SMALL LETTER AYB lowercase \x0562 1234 ARMENIAN SMALL LETTER BEN lowercase \x0563 12345 ARMENIAN SMALL LETTER GIM lowercase \x0564 1456 ARMENIAN SMALL LETTER DA lowercase \x0565 13456 ARMENIAN SMALL LETTER ECH lowercase \x0566 1356 ARMENIAN SMALL LETTER ZA lowercase \x0567 15 ARMENIAN SMALL LETTER EH lowercase \x0568 136 ARMENIAN SMALL LETTER ET lowercase \x0569 2345 ARMENIAN SMALL LETTER TO lowercase \x056a 345 ARMENIAN SMALL LETTER ZHE lowercase \x056b 24 ARMENIAN SMALL LETTER INI lowercase \x056c 123 ARMENIAN SMALL LETTER LIWN lowercase \x056d 1346 ARMENIAN SMALL LETTER XEH lowercase \x056e 34 ARMENIAN SMALL LETTER CA lowercase \x056f 1245 ARMENIAN SMALL LETTER KEN lowercase \x0570 125 ARMENIAN SMALL LETTER HO lowercase \x0571 346 ARMENIAN SMALL LETTER JA lowercase \x0572 126 ARMENIAN SMALL LETTER GHAD lowercase \x0573 245 ARMENIAN SMALL LETTER CHEH lowercase \x0574 134 ARMENIAN SMALL LETTER MEN lowercase \x0575 156 ARMENIAN SMALL LETTER YI lowercase \x0576 1345 ARMENIAN SMALL LETTER NOW lowercase \x0577 146 ARMENIAN SMALL LETTER SHA lowercase \x0578 246 ARMENIAN SMALL LETTER VO lowercase \x0579 16 ARMENIAN SMALL LETTER CHA lowercase \x057a 12 ARMENIAN SMALL LETTER PEH lowercase \x057b 14 ARMENIAN SMALL LETTER JHEH lowercase \x057c 12456 ARMENIAN SMALL LETTER RA lowercase \x057d 234 ARMENIAN SMALL LETTER SEH lowercase \x057e 1236 ARMENIAN SMALL LETTER VEW lowercase \x057f 145 ARMENIAN SMALL LETTER TIWN lowercase \x0580 1235 ARMENIAN SMALL LETTER REH lowercase \x0581 2346 ARMENIAN SMALL LETTER CO lowercase \x0582 2456 ARMENIAN SMALL LETTER YIWN lowercase \x0583 1246 ARMENIAN SMALL LETTER PIWR lowercase \x0584 13 ARMENIAN SMALL LETTER KEH lowercase \x0585 135 ARMENIAN SMALL LETTER OH lowercase \x0586 124 ARMENIAN SMALL LETTER FEH letter \x0587 12346 ARMENIAN SMALL LIGATURE ECH YIWN liblouis-2.5.3/tables/UEBC-g1.utb0000664000175000017500000002067712161041546013313 00000000000000# liblouis: Unified English Braille Grade 1 Table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by Tom Johnston, Tom.Johnston@accessibilityconsulting.co.uk # include text_nabcc.dis All display opcodes include ukchardefs.cti All character definition opcodes # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign letsign 56 capsign 6 begcaps 6-6 #begphasecaps 6-6-6 endcaps 6-3 begital 46-2356 endital 46-3 begbold 45-2356 endbold 45-3 #begnocont 56-56-56 #endnocont 56-3 # the decimal digits include litdigits6Dots.uti # Letters are defined in chardefs.cti #single letter words largesign a 1 largesign A 1 word I 24 word o 135 word O 135 # punctuation prepunc " 236 postpunc " 356 always " 6-2356 prepunc ' 6-236 postpunc ' 6-356 postpunc '' 356 postpunc ''' 356-3-356 always ' 3 endword 'd 3-145 word 'em 3-15-134 endword 'll 3-123-123 endword 'm 3-134 endword 're 3-1235-15 endword 's 3-234 endword 't 3-2345 word 'tis 3-2345-24-234 word 'twas 3-2345-2456-1-234 endword 've 3-1236-15 always , 2 midnum . 256 decpoint . 256 always . 256 always ; 23 always : 25 always ! 235 always # 456-1456 midnum / 34-3456 always / 456-34 always ? 236 always % 46-356 always ^ 4-26 always ~ 4-35 always & 4-12346 midnum * 5-236-3456 always * 5-35 repeated *** 5-35-5-35-5-35 always ( 5-126 always ) 5-345 always [ 46-126 always ] 46-345 always { 456-126 always } 456-345 always -com = endword -to = pointed-to resource endword -by = used-by always _ 46-36 prepunc `` 236 prepunc ` 6-236 always ` 46-16 always @ 4-1 always \\ 456-16 always | 456-1256 repeated --- 6-36-6-36-6-36 repeated ___ 46-36-46-36-46-36 repeated ::: 25-25-25 repeated === 5-2356-5-2356-5-2356 repeated ~~~ 4-35-4-35-4-35 always \s-\s 6-36 always \s-\scom 6-36-14-135-134 always ... 256-256-256 always .\s.\s. 256-256-256 . . . always \x2026 256-256-256 # 8230 MS Word smart ellipsis # the hyphen # always ­ 36 repeated ­­­ 36-36-36 always \s­\s 36-36 # accented letters uplow \x00C0\x00E0 1 # a with grave uplow \x00C1\x00E1 1 # a with acute uplow \x00C2\x00E2 1 # a with circumflex uplow \x00C3\x00E3 1 # a with tilde uplow \x00C4\x00E4 1 # a with dieresis uplow \x00C5\x00E5 1 # a with ring above uplow \x00C6\x00E6 1 # letter ae uplow \x00C7\x00E7 14 # c with cedilla uplow \x00C8\x00E8 15 # e with grave uplow \x00C9\x00E9 15 # e with acute uplow \x00CA\x00EA 15 # e with circumflex uplow \x00CB\x00EB 15 # e with dieresis uplow \x00CC\x00EC 24 # i with grave above uplow \x00CD\x00ED 24 # i with acute above uplow \x00CE\x00EE 24 # i with circumflex uplow \x00CF\x00EF 24 # i with dieresis uplow \x00D0\x00F0 15 # letter eth uplow \x00D1\x00F1 1345 # n with tilde uplow \x00D2\x00F2 135 # o with grave above uplow \x00D3\x00F3 135 # o with acute above uplow \x00D4\x00F4 135 # o with circumflex uplow \x00D5\x00F5 135 # o with tilde uplow \x00D6\x00F6 135 # o with dieresis # \x00D7 × multiplication sign ---------------------- uplow \x00D8\x00F8 135 # o with stroke uplow \x00D9\x00F9 136 # u with grave above uplow \x00DA\x00FA 136 # u with acute above uplow \x00DB\x00FB 136 # u with circumflex above uplow \x00DC\x00FC 136 # u with dieeresis uplow \x00DD\x00FD 13456 # y with acute above uplow \x00DE\x00FE 2345 # letter thorn letter \x00DF 2346 # small sharp s uplow \x0174\x0175 2456 w with circumflex uplow \x0176\x0177 13456 # y with circumflex uplow \x0178\x00ff 13456 # y with diaeresis uplow \x1ef2\x1ef3 13456 # y with grave largesign \x00C0 45-16-1 [C0] upper a grave largesign \x00E0 45-16-1 [E0] lower a grave largesign \x00C1 45-34-1 [C1] upper a acute largesign \x00E1 45-34-1 [E1] lower a acute largesign \x00C2 45-146-1 [C2] upper a circumflex largesign \x00E2 45-146-1 [E2] lower a circumflex largesign \x00C3 45-12456-1 [C3] upper a tilde largesign \x00E3 45-12456-1 [E3] lower a tilde largesign \x00C4 45-25-1 [C4] upper a dieresis largesign \x00E4 45-25-1 [E4] lower a dieresis largesign \x00C5 45-1246-1 [C5] upper a ring largesign \x00E5 45-1246-1 [E5] lower a ring largesign \x00C6 1-45-235-15 [C6] upper ae largesign \x00E6 1-45-235-15 [E6] lower ae largesign \x00C7 45-12346-14 [C7] upper c cedilla largesign \x00E7 45-12346-14 [E7] lower c cedilla largesign \x00C8 45-16-15 [C8] upper e grave largesign \x00E8 45-16-15 [E8] lower e grave largesign \x00C9 45-34-15 [C9] upper e acute largesign \x00E9 45-34-15 [E9] lower e acute largesign \x00CA 45-146-15 [CA] upper e circumflex largesign \x00EA 45-146-15 [EA] lower e circumflex largesign \x00CB 45-25-15 [CB] upper e dieresis largesign \x00EB 45-25-15 [EB] lower e dieresis largesign \x00CC 45-16-24 [CC] upper i grave largesign \x00EC 45-16-24 [EC] lower i grave largesign \x00CD 45-34-24 [CD] upper i acute largesign \x00ED 45-34-24 [ED] lower i acute largesign \x00CE 45-146-24 [CE] upper i circumflex largesign \x00EE 45-146-24 [EE] lower i circumflex largesign \x00CF 45-25-24 [CF] upper i dieresis largesign \x00EF 45-25-24 [EF] lower i dieresis #largesign \x00D0 4-15 [D0] upper eth #largesign \x00F0 4-15 [F0] lower eth largesign \x00D1 45-12456-1345 [D1] upper n tilde largesign \x00F1 45-12456-1345 [F1] lower n tilde largesign \x00D2 45-16-135 [D2] upper o grave largesign \x00F2 45-16-135 [F2] lower o grave largesign \x00D3 45-34-135 [D3] upper o acute largesign \x00F3 45-34-135 [F3] lower o acute largesign \x00D4 45-146-135 [D4] upper o circumflex largesign \x00F4 45-146-135 [F4] lower o circumflex largesign \x00D5 45-12456-135 [D5] upper o tilde largesign \x00F5 45-12456-135 [F5] lower o tilde largesign \x00D6 45-25-135 [D6] upper o dieresis largesign \x00F6 45-25-135 [F6] lower o dieresis #largesign \x00D8 4-135 [D8] upper o slash #largesign \x00f8 4-135 [F8] lower o slash largesign \x00D9 45-16-136 [D9] upper u grave largesign \x00F9 45-16-136 [F9] lower u grave largesign \x00DA 45-25-136 [DA] upper u acute largesign \x00FA 45-25-136 [FA] lower u acute largesign \x00DB 45-146-136 [DB] upper u circumflex largesign \x00FB 45-146-136 [FB] lower u circumflex largesign \x00DC 45-25-136 [DC] upper u dieresis largesign \x00FC 45-25-136 [FC] lower u dieresis largesign \x00DD 45-34-13456 [DD] upper y acute largesign \x00FD 45-34-13456 [FD] lower y acute #largesign \x00DE 4-2345 [DE] upper t horn #largesign \x00FE 4-2345 [FE] lower t horn largesign \x00DF 234-234 (DF) lower ss largesign \x0174 45-146-2456 lower w circumflex largesign \x0175 45-146-2456 upper w circumflex largesign \x0176 45-146-13456 upper y circumflex largesign \x0177 45-146-13456 lower y circumflex largesign \x0178 45-26-13456 upper y dieresis largesign \x00FF 45-25-13456 lower y dieresis #largesign \x1EF2 4-16-13456 upper y with grave #largesign \x1EF3 45-16-13456 lower y with grave # always \x2010 36 # 8208 hyphen hyphen \x2010 36 # 8208 hyphen # always \x2011 46 # 8209 non-breaking hyphen punctuation \x2011 36 # 8209 non-breaking hyphen always \x2013 5-36 # 8211 smart minus sign always \x201C 45-236 # 8220 smart opening double quote always \x201D 45-356 # 8221 smart closing double quote always \x201E 236 # 8222 smart double low quotation mark always \x201F 356 # 8223 smart double high reverse quotation mark # mathematical symbols decpoint . 256 always < 4-126 always = 5-2356 midnum = 5-2356-3456 always > 4-345 always + 5-235 midnum + 5-235-3456 midnum - 36-3456 always - 36 always × 5-236 midnum × 5-236-3456 midnum ÷ 5-34-3456 division sign always ÷ 5-34 # other special characters always © 45-14 copyright sign ™ 45-2345 trademark sign ® 45-1235 registered always ¶ 45-1234 paragraph always § 45-234 section always ° 45-245 degrees always £ 4-123 pounds always $ 4-234 always ¢ 4-14 cents sign € 4-15 euro always € 4-15 euro always Â¥ 4-13456 yen always µ 46-134 mu liblouis-2.5.3/tables/kha.ctb0000664000175000017500000000166712161041546013007 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Khasi include bengali.cti include text_nabcc.dis liblouis-2.5.3/tables/is-chardefs8.cti0000664000175000017500000005137212161041546014531 00000000000000# liblouis: Character definitions for Icelandic tables # # Copyright (C) 2009 INIB (Iceland National Institute for the Blind) # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # This computer braille table is based on the IceBraille standard, v1.0. # Version 2010-09-02 # Birkir Gunnarsson, birkir@midstod.is # Special thanks to Ben Van Popel for help with drafting the standard. #------------------------------------------------------------------------------- # 48-34578 \x0000 � [NULL] # 48-178 \x0001  [START OF HEADING] # 48-1278 \x0002  [START OF TEXT] # 48-1478 \x0003  [END OF TEXT] # 48-14578 \x0004  [END OF TRANSMISSION] # 48-1578 \x0005  [ENQUIRY] # 48-12478 \x0006  [ACKNOWLEDGE] # 48-124578 \x0007  [BELL] # 48-12578 \x0008  [BACKSPACE] # 48-2478 \x0009 [CHARACTER TABULATION] # 48-24578 \x000A [LINE FEED (LF)] # 48-1378 \x000B [LINE TABULATION] # 48-12378 \x000C [FORM FEED (FF)] # 48-13478 \x000D [CARRIAGE RETURN (CR)] # 48-134578 \x000E  [SHIFT OUT] # 48-13578 \x000F  [SHIFT IN] # 48-123478 \x0010  [DATA LINK ESCAPE] # 48-1234578 \x0011  [DEVICE CONTROL ONE] # 48-123578 \x0012  [DEVICE CONTROL TWO] # 48-23478 \x0013  [DEVICE CONTROL THREE] # 48-234578 \x0014  [DEVICE CONTROL FOUR] # 48-13678 \x0015  [NEGATIVE ACKNOWLEDGE] # 48-123678 \x0016  [SYNCHRONOUS IDLE] # 48-245678 \x0017  [END OF TRANSMISSION BLOCK] # 48-134678 \x0018  [CANCEL] # 48-1345678 \x0019  [END OF MEDIUM] # 48-135678 \x001A  [SUBSTITUTE] # 48-1235678 \x001B  [ESCAPE] # 48-3478 \x001C  [INFORMATION SEPARATOR FOUR] # 48-2345678 \x001D  [INFORMATION SEPARATOR THREE] # 48-234678 \x001E  [INFORMATION SEPARATOR TWO] # 48-45678 \x001F  [INFORMATION SEPARATOR ONE] space \s 0 \x0020 SPACE punctuation ! 2357 \x0021 ! EXCLAMATION MARK punctuation " 56 \x0022 " QUOTATION MARK sign # 3456 \x0023 # NUMBER SIGN sign $ 14578 \x0024 $ DOLLAR SIGN sign % 46 \x0025 % PERCENT SIGN sign & 123468 \x0026 & AMPERSAND punctuation ' 5 \x0027 ' APOSTROPHE APOSTROPHE-QUOTE punctuation ( 236 \x0028 ( LEFT PARENTHESIS punctuation ) 356 \x0029 ) RIGHT PARENTHESIS sign * 35 \x002A * ASTERISK math + 235 \x002B + PLUS SIGN punctuation , 2 \x002C , COMMA punctuation - 36 \x002D - HYPHEN-MINUS punctuation . 3 \x002E . FULL STOP PERIOD punctuation / 34 \x002F / SOLIDUS SLASH include digits8Dots.uti punctuation : 25 \x003A : COLON punctuation ; 23 \x003B ; SEMICOLON math < 358 \x003C < LESS-THAN SIGN math = 2356 \x003D = EQUALS SIGN math > 267 \x003E > GREATER-THAN SIGN punctuation ? 26 \x003F ? QUESTION MARK sign @ 123456 \x0040 @ COMMERCIAL AT uppercase A 17 \x0041 A LATIN CAPITAL LETTER A uppercase B 127 \x0042 B LATIN CAPITAL LETTER B uppercase C 147 \x0043 C LATIN CAPITAL LETTER C uppercase D 1457 \x0044 D LATIN CAPITAL LETTER D uppercase E 157 \x0045 E LATIN CAPITAL LETTER E uppercase F 1247 \x0046 F LATIN CAPITAL LETTER F uppercase G 12457 \x0047 G LATIN CAPITAL LETTER G uppercase H 1257 \x0048 H LATIN CAPITAL LETTER H uppercase I 247 \x0049 I LATIN CAPITAL LETTER I uppercase J 2457 \x004A J LATIN CAPITAL LETTER J uppercase K 137 \x004B K LATIN CAPITAL LETTER K uppercase L 1237 \x004C L LATIN CAPITAL LETTER L uppercase M 1347 \x004D M LATIN CAPITAL LETTER M uppercase N 13457 \x004E N LATIN CAPITAL LETTER N uppercase O 1357 \x004F O LATIN CAPITAL LETTER O uppercase P 12347 \x0050 P LATIN CAPITAL LETTER P uppercase Q 123457 \x0051 Q LATIN CAPITAL LETTER Q uppercase R 12357 \x0052 R LATIN CAPITAL LETTER R uppercase S 2347 \x0053 S LATIN CAPITAL LETTER S uppercase T 23457 \x0054 T LATIN CAPITAL LETTER T uppercase U 1367 \x0055 U LATIN CAPITAL LETTER U uppercase V 12367 \x0056 V LATIN CAPITAL LETTER V uppercase W 24567 \x0057 W LATIN CAPITAL LETTER W uppercase X 13467 \x0058 X LATIN CAPITAL LETTER X uppercase Y 134567 \x0059 Y LATIN CAPITAL LETTER Y uppercase Z 13567 \x005A Z LATIN CAPITAL LETTER Z punctuation [ 12356 \x005B [ LEFT SQUARE BRACKET sign \\ 347 \x005C \ REVERSE SOLIDUS punctuation ] 23456 \x005D ] RIGHT SQUARE BRACKET sign ^ 346 \x005E ^ CIRCUMFLEX ACCENT / Caret sign _ 3678 \x005F _ LOW LINE sign ` 4 \x0060 ` GRAVE ACCENT lowercase a 1 \x0061 a LATIN SMALL LETTER A lowercase b 12 \x0062 a LATIN SMALL LETTER B lowercase c 14 \x0063 a LATIN SMALL LETTER C lowercase d 145 \x0064 a LATIN SMALL LETTER D lowercase e 15 \x0065 a LATIN SMALL LETTER E lowercase f 124 \x0066 a LATIN SMALL LETTER F lowercase g 1245 \x0067 a LATIN SMALL LETTER G lowercase h 125 \x0068 a LATIN SMALL LETTER H lowercase i 24 \x0069 a LATIN SMALL LETTER I lowercase j 245 \x006A a LATIN SMALL LETTER J lowercase k 13 \x006B a LATIN SMALL LETTER K lowercase l 123 \x006C a LATIN SMALL LETTER L lowercase m 134 \x006D a LATIN SMALL LETTER M lowercase n 1345 \x006E a LATIN SMALL LETTER N lowercase o 135 \x006F o LATIN SMALL LETTER O lowercase p 1234 \x0070 p LATIN SMALL LETTER P lowercase q 12345 \x0071 q LATIN SMALL LETTER Q lowercase r 1235 \x0072 r LATIN SMALL LETTER R lowercase s 234 \x0073 s LATIN SMALL LETTER S lowercase t 2345 \x0074 t LATIN SMALL LETTER T lowercase u 136 \x0075 u LATIN SMALL LETTER U lowercase v 1236 \x0076 v LATIN SMALL LETTER V lowercase w 2456 \x0077 w LATIN SMALL LETTER W lowercase x 1346 \x0078 x LATIN SMALL LETTER X lowercase y 13456 \x0079 y LATIN SMALL LETTER Y lowercase z 1356 \x007A z LATIN SMALL LETTER Z punctuation { 123567 \x007B { LEFT CURLY BRACKET sign | 456 \x007C | VERTICAL LINE punctuation } 234568 \x007D } RIGHT CURLY BRACKET sign ~ 45 \x007E ~ TILDE sign \x007F 7 \x007F  [DELETE] # Between here and the commented out part, I am using Windows 1252 numbering, the commented out section does not seem to match # however the unicode should match the symbols described sign \x20AC 1578 \x20AC &128 [Euros] sign \x0192 58 \x0192 ƒ [florin] sign \x2026 6 \x2026 … [elipsis] sign \x2020 2358 \x2020 † [Single Dagger] sign \x2021 23578 \x2021 ‡ [Double Dagger] sign \x2030 4678 \x2030 ‰ [Per Mil] sign \x0152 13578 \x0152 Œ [OE] punctuation \x201C 237 \x201C “ [Open Double Quote] punctuation \x201D 458 \x201D ” [Close Double Quote] sign \x2022 37 \x2022 • [Bullet] sign \x2013 368 \x2013 – [en-dash] sign \x2014 367 \x2014 — [em-dash] sign \x2122 234578 \x2122 ™ [Trademark] # 457 \x0080 € # 8 \x0081  # 3678 \x0082 ‚ [BREAK PERMITTED HERE] # 78 \x0083 ƒ [NO BREAK HERE] # 1268 \x0084 „ # 238 \x0085 … [NEXT LINE (NEL)] # 1248 \x0086 † [START OF SELECTED AREA] # 12458 \x0087 ‡ [END OF SELECTED AREA] # 378 \x0088 ˆ [CHARACTER TABULATION SET] # 248 \x0089 ‰ [CHARACTER TABULATION WITH JUSTIFICATION] # 678 \x008A Š [LINE TABULATION SET] # 27 \x008B ‹ [PARTIAL LINE FORWARD] # 237 \x008C Œ [PARTIAL LINE BACKWARD] # 257 \x008D  [REVERSE LINE FEED] # 12567 \x008E Ž [SINGLE SHIFT TWO] # 12467 \x008F  [SINGLE SHIFT THREE] # 124678 \x0090  [DEVICE CONTROL STRING] # 23567 \x0091 ‘ [PRIVATE USE ONE] # 2367 \x0092 ’ [PRIVATE USE TWO] # 138 \x0093 “ [SET TRANSMIT STATE] # 1238 \x0094 ” [CANCEL CHARACTER] # 278 \x0095 • [MESSAGE WAITING] # 2378 \x0096 – [START OF GUARDED AREA] # 13568 \x0097 — [END OF GUARDED AREA] # 2578 \x0098 ˜ [START OF STRING] # 1245678 \x0099 ™ # 2678 \x009A š [SINGLE CHARACTER INTRODUCER] # 123458 \x009B › [CONTROL SEQUENCE INTRODUCER] # 67 \x009C œ [STRING TERMINATOR] # 124567 \x009D  [OPERATING SYSTEM COMMAND] # 235678 \x009E ž [PRIVACY MESSAGE] # 12345678 \x009F Ÿ [APPLICATION PROGRAM COMMAND] space \x00a0 0 \x00A0   NO-BREAK SPACE punctuation ¡ 3568 \x00A1 ¡ INVERTED EXCLAMATION MARK sign ¢ 2578 \x00A2 ¢ CENT SIGN sign £ 123478 \x00A3 £ POUND SIGN sign ¤ 134678 \x00A4 ¤ CURRENCY SIGN sign Â¥ 1345678 \x00A5 ¥ YEN SIGN sign ¦ 3478 \x00A6 ¦ BROKEN BAR sign § 2348 \x00A7 § SECTION SIGN sign ¨ 578 \x00A8 ¨ DIAERESIS sign © 1478 \x00A9 © COPYRIGHT SIGN sign ª 234678 \x00AA ª FEMININE ORDINAL INDICATOR punctuation « 57 \x00AB « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK sign ¬ 34567 \x00AC ¬ NOT SIGN sign ­ 378 \x00AD ­ SOFT HYPHEN sign ® 123578 \x00AE ® REGISTERED SIGN sign ¯ 23567 \x00AF ¯ MACRON sign ° 256 \x00B0 ° DEGREE SIGN math ± 123458 \x00B1 ± PLUS-MINUS SIGN sign ² 238 \x00B2 ² SUPERSCRIPT TWO sign ³ 258 \x00B3 ³ SUPERSCRIPT THREE sign ´ 468 \x00B4 ´ ACUTE ACCENT sign µ 23678 \x00B5 µ MICRO SIGN sign ¶ 345678 \x00B6 ¶ PILCROW SIGN sign · 38 \x00B7 · MIDDLE DOT sign ¸ 245678 \x00B8 ¸ CEDILLA sign ¹ 28 \x00B9 ¹ SUPERSCRIPT ONE sign º 12345678 \x00BA º MASCULINE ORDINAL INDICATOR punctuation » 567 \x00BB » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK math ¼ 13458 \x00BC ¼ VULGAR FRACTION ONE QUARTER math ½ 458 \x00BD ½ VULGAR FRACTION ONE HALF math ¾ 34568 \x00BE ¾ VULGAR FRACTION THREE QUARTERS punctuation ¿ 67 \x00BF ¿ INVERTED QUESTION MARK uppercase À 13678 \x00C0 À LATIN CAPITAL LETTER A WITH GRAVE uppercase à 167 \x00C1 Á LATIN CAPITAL LETTER A WITH ACUTE #IA uppercase  1678 \x00C2  LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase à 14678 \x00C3 à LATIN CAPITAL LETTER A WITH TILDE uppercase Ä 34578 \x00C4 Ä LATIN CAPITAL LETTER A WITH DIAERESIS uppercase Ã… 1235678 \x00C5 Å LATIN CAPITAL LETTER A WITH RING ABOVE uppercase Æ 3457 \x00C6 Æ LATIN CAPITAL LETTER AE #IA uppercase Ç 125678 \x00C7 Ç LATIN CAPITAL LETTER C WITH CEDILLA uppercase È 478 \x00C8 È LATIN CAPITAL LETTER E WITH GRAVE uppercase É 23467 \x00C9 É LATIN CAPITAL LETTER E WITH ACUTE #IA uppercase Ê 1234567 \x00CA Ê LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase Ë 35678 \x00CB Ë LATIN CAPITAL LETTER E WITH DIAERESIS uppercase ÃŒ 15678 \x00CC Ì LATIN CAPITAL LETTER I WITH GRAVE uppercase à 1267 \x00CD Í LATIN CAPITAL LETTER I WITH ACUTE #IA uppercase ÃŽ 1467 \x00CE Î LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase à 12678 \x00CF Ï LATIN CAPITAL LETTER I WITH DIAERESIS uppercase à 1567 \x00D0 Ð LATIN CAPITAL LETTER ETH #IA uppercase Ñ 1245678 \x00D1 Ñ LATIN CAPITAL LETTER N WITH TILDE uppercase Ã’ 124678 \x00D2 Ò LATIN CAPITAL LETTER O WITH GRAVE uppercase Ó 14567 \x00D3 Ó LATIN CAPITAL LETTER O WITH ACUTE #IA uppercase Ô 34678 \x00D4 Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase Õ 145678 \x00D5 Õ LATIN CAPITAL LETTER O WITH TILDE uppercase Ö 2467 \x00D6 Ö LATIN CAPITAL LETTER O WITH DIAERESIS #IA math × 13468 \x00D7 × MULTIPLICATION SIGN uppercase Ø 24678 \x00D8 Ø LATIN CAPITAL LETTER O WITH STROKE uppercase Ù 234567 \x00D9 Ù LATIN CAPITAL LETTER U WITH GRAVE uppercase Ú 124567 \x00DA Ú LATIN CAPITAL LETTER U WITH ACUTE #IA uppercase Û 348 \x00DB Û LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase Ü 12567 \x00DC Ü LATIN CAPITAL LETTER U WITH DIAERESIS uppercase à 123467 \x00DD Ý LATIN CAPITAL LETTER Y WITH ACUTE #IA uppercase Þ 12467 \x00DE Þ LATIN CAPITAL LETTER THORN #IA lowercase ß 23468 \x00DF ß LATIN SMALL LETTER SHARP S lowercase à 1378 \x00E0 à LATIN SMALL LETTER A WITH GRAVE lowercase á 16 \x00E1 á LATIN SMALL LETTER A WITH ACUTE #IA lowercase â 168 \x00E2 â LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase ã 1468 \x00E3 ã LATIN SMALL LETTER A WITH TILDE lowercase ä 3458 \x00E4 ä LATIN SMALL LETTER A WITH DIAERESIS lowercase Ã¥ 123568 \x00E5 å LATIN SMALL LETTER A WITH RING ABOVE lowercase æ 345 \x00E6 æ LATIN SMALL LETTER AE #IA lowercase ç 1348 \x00E7 ç LATIN SMALL LETTER C WITH CEDILLA lowercase è 23568 \x00E8 è LATIN SMALL LETTER E WITH GRAVE lowercase é 2346 \x00E9 é LATIN SMALL LETTER E WITH ACUTE #IA lowercase ê 1268 \x00EA ê LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase ë 138 \x00EB ë LATIN SMALL LETTER E WITH DIAERESIS lowercase ì 1568 \x00EC ì LATIN SMALL LETTER I WITH GRAVE lowercase í 126 \x00ED í LATIN SMALL LETTER I WITH ACUTE #IA lowercase î 24578 \x00EE î LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase ï 12568 \x00EF ï LATIN SMALL LETTER I WITH DIAERESIS lowercase ð 156 \x00F0 ð LATIN SMALL LETTER ETH lowercase ñ 124568 \x00F1 ñ LATIN SMALL LETTER N WITH TILDE lowercase ò 12468 \x00F2 ò LATIN SMALL LETTER O WITH GRAVE lowercase ó 1456 \x00F3 ó LATIN SMALL LETTER O WITH ACUTE #IA lowercase ô 3468 \x00F4 ô LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase õ 14568 \x00F5 õ LATIN SMALL LETTER O WITH TILDE lowercase ö 246 \x00F6 ö LATIN SMALL LETTER O WITH DIAERESIS math ÷ 1256 \x00F7 ÷ DIVISION SIGN lowercase ø 2468 \x00F8 ø LATIN SMALL LETTER O WITH STROKE lowercase ù 2368 \x00F9 ù LATIN SMALL LETTER U WITH GRAVE lowercase ú 12456 \x00FA ú LATIN SMALL LETTER U WITH ACUTE #IA lowercase û 12348 \x00FB û LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase ü 12568 \x00FC ü LATIN SMALL LETTER U WITH DIAERESIS lowercase ý 12346 \x00FD ý LATIN SMALL LETTER Y WITH ACUTE #IA lowercase þ 1246 \x00FE þ LATIN SMALL LETTER THORN #IA lowercase ÿ 234568 \x00FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/gon.ctb0000664000175000017500000000171512161041546013021 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Gondi include devanagari.cti include telugu.cti include text_nabcc.dis liblouis-2.5.3/tables/kn.ctb0000664000175000017500000000167112161041546012647 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Kannada include kannada.cti include text_nabcc.dis liblouis-2.5.3/tables/ro.ctb0000664000175000017500000001166612161041546012664 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Romanian # # Samuel Thibault # # Updated by Stefan Moisei # # This table is based on the Unesco report on the progress of unification of # braille writing « L'ÉCRITURE BRAILLE DANS LE MONDE », by Sir Clutha # MACKENZIE: http://unesdoc.unesco.org/images/0013/001352/135251fo.pdf # The document is dated 1954, so this table may be quite outdated. # generated by ttbtest space \s 0 SPACE punctuation ~ 45 TILDE punctuation | 4568 VERTICAL LINE punctuation _ 456 LOW LINE punctuation [ 12356 LEFT SQUARE BRACKET punctuation \\ 176 REVERSE SOLIDUS punctuation ] 23456 RIGHT SQUARE BRAKET punctuation @ 47 COMMERCIAL AT punctuation = 2356 EQUALS SIGN punctuation # 3456 NUMBER SIGN punctuation / 34 SOLIDUS punctuation * 26 ASTERISK punctuation + 235 PLUS SIGN punctuation % 356 PERCENT SIGN punctuation ! 235 EXCLAMATION MARK punctuation " 2356 QUOTATION MARK punctuation \x201e 236 LEFT QUOTE punctuation \x201d 356 RIGHT QUOTE punctuation ' 3 APOSTROPHE punctuation ( 126 LEFT PARENTHESIS punctuation ) 345 RIGHT PARENTHESIS punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 256 FULL STOP include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation ? 26 QUESTION MARK uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation \x00a0 0 NO-BREAK SPACE uppercase \x00c2 1267 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX lowercase \x00e2 126 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX uppercase \x0102 167 LATIN CAPITAL LETTER A WITH BREVE lowercase \x0103 16 LATIN SMALL LETTER A WITH BREVE uppercase \x015e 1567 LATIN CAPITAL LETTER S WITH CEDILLA lowercase \x015f 156 LATIN SMALL LETTER S WITH CEDILLA uppercase \x0162 2467 LATIN CAPITAL LETTER T WITH CEDILLA lowercase \x0163 246 LATIN SMALL LETTER T WITH CEDILLA uppercase \x0218 1567 LATIN CAPITAL LETTER S WITH COMMA BELOW lowercase \x0219 156 LATIN CAPITAL LETTER S WITH COMMA BELOW uppercase \x021a 2467 LATIN CAPITAL LETTER T WITH COMMA BELOW lowercase \x021b 246 LATIN SMALL LETTER T WITH COMMA BELLOW liblouis-2.5.3/tables/de-g0-core.uti0000664000175000017500000001574012161041546014114 00000000000000# liblouis: German grade 0 braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE BASISSCHRIFT - German grade 0 braille # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include countries.cti # --- Braille indicator opcodes ------------------------------------------------ # letsign 6 # capsign 46 begcaps 45 endcaps 6 numsign 3456 # --- Emphasis opcodes --------------------------------------------------------- lastworditalbefore 456 lastworditalafter 6-3 lenitalphrase 1 firstletterital 6-456 lastletterital 6-3 singleletterital 456 lastwordboldbefore 456 lastwordboldafter 6-3 lenboldphrase 1 firstletterbold 6-456 lastletterbold 6-3 singleletterbold 456 lastwordunderbefore 456 lastwordunderafter 6-3 lenunderphrase 1 firstletterunder 6-456 lastletterunder 6-3 singleletterunder 456 begcomp 6-46 # endcomp 6-3 # Omitted here (only to be used when longer than one word) # --- Special Symbol Opcodes --------------------------------------------------- hyphen - 36 # --- Special Processing Opcodes ----------------------------------------------- capsnocont # --- Translation opcodes ------------------------------------------------------ # Mehrfach-Leerschläge eliminieren midnum , 2 Komma endnum ; 6-23 Strichpunkt endnum : 6-25 endnum ? 6-26 Fragezeichen endnum ! 6-235 Ausrufezeichen always ! 235 midword ( 6-2356 Runde Klammer auf midnum ( 6-2356-3456 endnum ( 6-2356 always ( 2356 midword ) 6-2356 Runde Klammer zu midnum ) 6-2356-3456 endnum ) 6-2356 always ) 2356 prepunc " 236 Anführungszeichen am Anfang prepunc « 236 prepunc » 236 endnum " 6-356 Anführungszeichen am Ende postpunc " 356 postpunc » 356 postpunc « 356 midnum . 3 Punkt always .\s.\s. 3-3-3 midnum ' 3 Apostroph (Gliederung grosser Zahlen) always ** 6-35-35 Anmerkungssternchen always *** 6-35-35-35 prepunc \x2039 6-236 Halbes Anführungszeichen am Anfang prepunc \x203a 6-236 prepunc \x2018 6-236 prepunc \x2019 6-236 postpunc \x2039 6-356 Halbes Anführungszeichen am Ende postpunc \x203a 6-356 postpunc \x2018 6-356 postpunc \x2019 6-356 always \x2192 0-25-25-135-0 Pfeil nach rechts always \x2190 0-246-25-25-0 Pfeil nach links always \x2194 0-246-25-25-135-0 Pfeil nach links und rechts always & 5-136 Et-Zeichen include litdigits6Dots.uti midnum ' 3 endnum a 6-1 endnum b 6-12 endnum c 6-14 endnum d 6-145 endnum e 6-15 endnum f 6-124 endnum g 6-1245 endnum h 6-125 endnum i 6-24 endnum j 6-245 always % 3456-245-356 Prozent always \s% 3456-245-356 always \s\x2030 3456-245-356-356 Promille 0/00 always \s\x2031 3456-245-356-356-356 0/000 always \s° 4-356 Grad always \s\x2032 4-35 Winkelminute always \s\x2033 4-35-35 Winkelsekunde begnum § 346 Paragrafzeichen joinnum § 346 endnum .-- 3-36-36 endnum ,-- 2-36-36 always \s-\s 6-36-0 Gedankenstrich always \s-- 6-36 always -- 6-36 Streckenstrich always \s\x2013 6-36 EN DASH always \s\x2014 6-36 EM DASH always / 5-2 Schrägstrich always | 0-456-123-0 Senkrechter Strich joinnum £ 4-123 Pfund joinnum $ 4-234 Dollar always $ 4-234 Dollar joinnum ¢ 4-14 Cent joinnum Â¥ 4-13456 Yen joinnum Fr. 124-1235-3 Franken !!! TUT NICHT !!! joinnum Fr 124-1235 joinnum F 124 # Plus: midnum \s+\s 0-4-235-3456 midnum \s+ 0-4-235-3456 midnum + 0-4-235-3456 always + 4-235 # Minus: begnum \s- 0-4-36-3456 always \s- 0-6-36 midnum \s\x2212\s 0-4-36-3456 midnum \s\x2212 0-4-36-3456 midnum \x2212 0-4-36-3456 always \x2212 4-36 # Plus Minus: midnum \s±\s 0-4-235-36-3456 midnum \s± 0-4-235-36-3456 midnum ± 0-4-235-36-3456 always ± 4-235-36 # Gleich: midnum \s=\s 0-4-2356-3456 midnum \s= 0-4-2356-3456 midnum = 0-4-2356-3456 always = 4-2356 # Ungleich: midnum \s\x2260\s 0-4-35-2356-3456 midnum \s\x2260 0-4-35-2356-3456 midnum \x2260 0-4-35-2356-3456 always \x2260 4-35-2356 # Identisch gleich: midnum \s\x2261\s 0-4-2356-2356-3456 midnum \s\x2261 0-4-2356-2356-3456 midnum \x2261 0-4-2356-2356-3456 always \x2261 4-2356-2356 # Äquivalent: midnum \s\x2259\s 0-4-26-3456 midnum \s\x2259 0-4-26-3456 midnum \x2259 0-4-26-3456 always \x2259 4-26 # Ungefähr gleich: midnum \s\x2245\s 0-4-26-26-3456 midnum \s\x2245 0-4-26-26-3456 midnum \x2245 0-4-26-26-3456 always \x2245 4-26-26 # Mal(-Kreuz): midnum \s×\s 0-4-236-3456 midnum \s× 0-4-236-3456 midnum × 0-4-236-3456 always × 4-236 # Mal(-Stern): midnum \s\x2217\s 3-3456 midnum \s\x2217 3-3456 midnum \x2217 3-3456 midnum \s*\s 3-3456 midnum \s* 3-3456 midnum * 3-3456 # Anmerkungssternchen: always * 6-35 # Mal(-Punkt): midnum \s\x22c5\s 3-3456 midnum \s\x22c5 3-3456 midnum \x22c5 3-3456 # Mal(-Stern): midnum \s\x22c6\s 3-3456 midnum \s\x22c6 3-3456 midnum \x22c6 3-3456 # Doppelpunkt (dividiert durch, verhält sich zu): midnum \s:\s 4-25-3456 midnum \s: 4-25-3456 midnum : 4-25-3456 midnum \s÷\s 0-4-25-3456 midnum \s÷ 0-4-25-3456 midnum ÷ 0-4-25-3456 always ÷ 4-25 midnum \s\x2215\s 0-4-25-3456 midnum \s\x2215 0-4-25-3456 midnum \x2215 0-4-25-3456 always \x2215 4-25 # Proportional: midnum \s~\s 0-4-25-25-3456 midnum \s~ 0-4-25-25-3456 midnum ~ 0-4-25-25-3456 always ~ 4-25-25 midnum \s\x223C\s 0-4-25-25-3456 midnum \s\x223C 0-4-25-25-3456 midnum \x223C 0-4-25-25-3456 always \x223C 4-25-25 # Kleiner als: midnum \s<\s 0-4-246-3-3456 midnum \s< 0-4-246-3-3456 midnum < 0-4-246-3-3456 always < 4-246-3 # Kleiner oder gleich: midnum \s\x2264\s 0-4-246-2356-3456 midnum \s\x2264 0-4-246-2356-3456 midnum \x2264 0-4-246-2356-3456 always \x2264 4-246-2356 midnum \s\x2266\s 0-4-246-2356-3456 midnum \s\x2266 0-4-246-2356-3456 midnum \x2266 0-4-246-2356-3456 always \x2266 4-246-2356 # Grösser als: midnum \s>\s 0-4-135-2-3456 midnum \s> 0-4-135-2-3456 midnum > 0-4-135-2-3456 always > 4-135-2 # Grösser oder gleich: midnum \s\x2265\s 0-4-135-2356-3456 midnum \s\x2265 0-4-135-2356-3456 midnum \x2265 0-4-135-2356-3456 always \x2265 4-135-2356 midnum \s\x2267\s 0-4-135-2356-3456 midnum \s\x2267 0-4-135-2356-3456 midnum \x2267 0-4-135-2356-3456 always \x2267 4-135-2356 # special character sequences literal :// URLs literal www. literal @ Mail-address literal .com literal .edu literal .gov literal .mil literal .net literal .org literal .doc literal .htm literal .html literal .tex literal .txt literal .gif literal .jpg literal .png literal .wav literal .tar literal .zip liblouis-2.5.3/tables/is.ctb0000664000175000017500000001341212161041546012646 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - 8-dot Icelandic # # originally written by: Samuel Thibault # Updated and maintained by Birkir R. Gunnarsson birkir@midstod.is # last updated February 16th, 2012 # Table now compliant with the official IceBraille specifications # which can be found at http://www.midstod.is/Pages/239 space \s 0 SPACE punctuation ! 2357 EXCLAMATION MARK punctuation " 56 QUOTATION MARK sign # 3456 number sign sign $ 14578 dollar sign sign % 46 per cent sign & 123468 ampersand punctuation ' 5 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS sign * 35 asterisk math + 235 plus sign punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP math / 34 slash include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON math < 358 less than math = 2356 equals math > 267 greater than punctuation ? 26 ? questionmark sign @ 123456 at sign punctuation [ 12356 left bracket sign \\ 347 backslash punctuation ] 23456 right bracket sign ^ 346 caret/superscript symbol sign _ 3678 hyphen/underline punctuation { 123567 left brace sign | 4568 vertical bar punctuation } 234568 right brace # misc. punctuation and math symbols, less frequently used sign \X2026 6 elipsis punctuation \X201E 2378 open quotation symbol, used in Icelandic quotes sign ~ 457 tilde math ` 4 math ° 256 degrees sign ¨ 38 dieresis sign \X2022 37 bullet punctuation \x2014 367 em dash punctuation \X2013 368 en dash, long dash sign © 1478 copyright sign \X2122 234578 trademark sign ® 123578 registerred sign \X20AC 1578 Euro symbol sign \x00A3 123478 pound sign sign \X00AB 2578 cents sign \x00A5 1345678 yen math \X00B1 123568 plus or minus math \x00F7 2367 divided by # English alphabet, Icelandic uses all of these though c, w and z are not used in the Icelandic language uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z # punctuation \x00a0 0 NO-BREAK SPACE # letters specific to Icelandic (though part of the Windows 1252 set) uppercase \x00c1 167 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c6 3457 LATIN CAPITAL LETTER AE uppercase \x00c9 23467 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00cd 1267 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00d0 1567 LATIN CAPITAL LETTER ETH uppercase \x00d3 14567 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS uppercase \x00da 124567 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00dd 123467 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 12467 LATIN CAPITAL LETTER THORN lowercase \x00e1 16 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e6 345 LATIN SMALL LETTER AE lowercase \x00e9 2346 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ed 126 LATIN SMALL LETTER I WITH ACUTE lowercase \x00f0 156 LATIN SMALL LETTER ETH lowercase \x00f3 1456 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS lowercase \x00fa 12456 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fd 12346 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 1246 LATIN SMALL LETTER THORN liblouis-2.5.3/tables/en-ueb-g1.ctb0000664000175000017500000002010312161041546013706 00000000000000# liblouis: Unified English Braille Code (Grade 1) # #Based on English U.S. Grade 1 #Modified by Joseph Lee #Used to display symbols, Unicode chars and other symbols used throughout uEB code. # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com include en-ueb-chardefs.uti UEB specific char defs. # Braille indicators numsign 3456 number sign, just a dots operand capsign 6 begcaps 6-6 endcaps 6-3 firstwordital 46-46 lastworditalbefore 46 lenitalphrase 4 firstletterital 46-3 lastletterital 46-36 singleletterital 46-25 firstwordbold 456-456 lastwordboldbefore 456 lenboldphrase 4 begcomp 456-346 endcomp 456-156 # literary forms of the decimal digits include litdigits6Dots.uti # Letters are defined in chardefs-ueb.cti # punctuation prepunc ( 5-126 word ( 5-126 always ( 5-126 postpunc ) 5-345 word ) 5-345 always ) 5-345 prepunc " 236 postpunc " 356 word " 5-236 prepunc ` 56-6-356 prepunc ' 3 postpunc ' 3 word ' 3 word 'em = word 'tis = word 'twas = begnum # 456-1456 print number sign before number midnum , 2 postpunc , 2 word , 2 decpoint . 256 midnum - 36 hyphen - 36 always \s--\s 36-36 always \s-\s 36 midnum \x00ad 36 postpunc . 256 word . 256 postpunc ; 23 word ; 23 midnum : 25 postpunc : 25 always : 25 postpunc ! 235 always ! 235 midnum / 456-34 always / 456-34 always // 456-34-456-34 always < 4-126 always = 5-2356 always > 4-345 always + 5-235 postpunc ? 236 word ? 56-236 endnum st 34 endnum nd 1345-145 endnum rd 1235-145 endnum 's 3-234 endnum th 1456 endnum 's 3-234 always % 46-356 midnum ^ 4-26 always ^ 4-26 always ~ 4-35 always & 4-12346 midnum * 5-35 always * 5-35 prepunc [ 46-126 word [ 46-126 always [ 46-126 postpunc ] 46-345 word ] 46-345 always ] 46-345 prepunc { 456-126 word { 456-126 always { 456-126 postpunc } 456-345 word } 456-345 always } 456-345 always @ 4 always \\ 456-16 always | 456-1256 always \s-\s 36 always ..." 256-256-256-356 always ... 256-256-256 always ...' 256-256-256-3 repeated .... 0 repeated ____ 46-36 repeated ---- 36 always .\s.\s." 256-256-256-356 always .\s.\s. 256-256-256 . . . begnum $ 4-234 nofor begnum $ 256-3456 always $ 4-234 # Note for self, John, Mesar or Ken: Investigate dollar sign usage based on context. #UEB and Unicode: # Symbols (Rulebook Appendix B): # Grouped them according to types of symbols. #Unicode series 1: Greek and Latin alphabets. #Unicode series 2: General punctuation for documents and formatting. #Unicode series 3: world currencies. #Unicode series 4: symbols used in geometry, set theory and calculus. #Unicode series 5: superscripts and subscripts, electron shells and bonding and other chemistry symbols, engineering and advanced mathematical operators #Unicode series 6: Symbols used by transcribers. #Unicode series 7: Misc items, such as shapes, typeforms and fractional parts. #Unicode series 1: Greek and Latin scripts # Organized according to increasing hex values. Uplow opcode was used since these have uppercase and lowercase forms. # Greek: uplow Αα 46-1 Alpha uplow Ββ 46-12 Beta uplow Γγ 46-1245 Gamma uplow Δδ 46-145 Delta uplow Εε 46-15 Epsilon uplow Ζζ 46-1356 Zeta uplow Ηη 46-156 Eta uplow Θθ 46-1456 Theta uplow Ιι 46-24 Iota uplow Κκ 46-13 Kappa uplow Λλ 46-123 Lamda uplow Μμ 46-134 Mu uplow Îν 46-1345 Nu uplow Ξξ 46-1346 Xi uplow Οο 46-135 Omicron uplow Ππ 46-1234 Pi uplow Î¡Ï 46-1235 Rho uplow Σσ 46-234 Sigma uplow Ττ 46-2345 Tau uplow Υυ 46-136 Upsilon uplow Φφ 46-124 Phi uplow Χχ 46-12346 Chi uplow Ψψ 46-13456 Psi uplow Ωω 46-2456 Omega #Èœ #Þ #à #Ç· #ÅŠ #Unicode series 2: General punctuation used in literary, documentation and formatting (3.8). #These mostly concerns documents, such as daggers, bullets and so forth. #Most were declared in en-ueb-chardefs.uti. G1 declares some specialist symbols. sign † 4-6-1456 Dagger sign ‡ 4-6-12456 Double dagger sign • 456-256 Bullet #Unicode series 3: World currencies (3) #Currency signs except dollar, which has been declared above (in increasing Unicode value). #Use sign opcode for now. sign ¢ 4-13 Cents sign € 4-15 Euro sign â‚£ 4-124 Franc always £ 4-123 Pound (use always, as pound has been declared somewhere) sign ₦ 4-1345 Naira sign Â¥ 4-13456 Yen # Unicode series 4: mathematical operators (Rule 11) # Organized by subject area with increasing Unicode value. # Algebras, geometry and other elemental symbols: # Superscripts and subscripts (11.4): sign â° 35-3456-245 Superscript 0 # And others - try using a combination of classes and swap. # Exponents and roots: sign √ 5-146 Square root # algebra and other applications: sign − 5-36 Minus sign (not hyphen) sign ∘ 5-356 Hollow dot (ring operator) sign â‹… 5-256 Multiplication dot (sometimes associated with calculus) # Geometry (11, 14): sign ° 45-245 Degrees sign sign ∠ 456-246 Angle sign ∡ 46-456-246 Measured angle sign ∥ 3456-456 Parallel to sign ∷ 25-25 Proportion sign ≑ 46-5-2356 Geometrically equal sign ⊥ 3456-36 Perpendicular sign ⊾ 3456-456-246 Right arcc angle # Calculus, vectors, matrices and other symbols (11): sign ′ 2356 Prime (derivative) sign ″ 2356-2356 Double prime (second derivative) sign ∂ 4-145 Partial derivative (curly D) sign ∇ 45-145 Nabla sign ∞ 3456-123456 Infinity sign ∫ 2346 Integral sign ∮ 4-2346 Closed line integral # Set theory and other advanced symbols: sign ∀ 4-1 For all (inverted A) sign ∃ 45-26 There exists sign ∅ 4-245 Null set sign ∈ 45-15 Is an element of sign ∋ 4-45-15 Contains as an element sign ∓ 456-36 Minus-or-plus sign ∠456-5-2356 Is proportional to sign ∧ 4-236 Logical and sign ∨ 4-235 Logical or sign ∩ 46-236 set intersection sign ∪ 46-235 Set union sign ∴ 6-16 Therefore sign ∵ 4-34 Because (since) sign ≃ 456-35 Approximately equal to sign ≅ 5-456-35 Forces (approximately) sign ≈ 45-35 Approximately equal to sign ≠45-5-2356 Difference between sign ≡ 456-123456 Equivalent to sign ≤ 456-4-126 Less than or equal to sign ≥ 456-4-345 Greater than or equal to sign ≪ 46-4-126 Much less than sign ≫ 46-4-345 Much greater than sign ⊂ 45-126 Is a subset of sign ⊃ 45-345 Is a superset of sign ⊆ 456-45-126 Contained in or equal to sign ⊇ 456-45-345 Contains or equal to sign ⊊ 46-45-126 Proper subset sign ⊋ 46-45-345 Proper superset sign ⊣ 4-456-25 Reverse assertion sign ⊦ 456-25 Assertion (is a theorem) sign ⊨ 45-456-25 Is valid (true) sign ⊲ 4-456-126 Is a normal subgroup of sign ⊳ 4-456-345 Is not a normal subgroup of sign ⊴ 456-456-126 Is normal subgroup or equal sign ⊵ 456-456-345 Is not normal subgroup or equal # Unicode series 5: chemistry, engineering and advanced mathematics # Organized by fields with increasing Unicode value. # Chemistry: # Engineering: # Programming and other symbols: # Unicode series 6: Transcriber's notes and symbols # Unicode series 7: miscellaneous symbols # Symbols which doesn't fit any categories above, including arrows, shapes and others. # Organized by Unicode values. # special character sequences compbrl :// URLs compbrl () compbrl www. compbrl :: compbrl .com compbrl .edu compbrl .gov compbrl .ini compbrl .mil compbrl .net compbrl .org compbrl .doc compbrl .xml compbrl .xsl compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip context "\e"$a * always \\_ 56 letter sign before Roman page numbers pass2 @56-56 @56 pass2 @3-56 @3 liblouis-2.5.3/tables/kru.ctb0000664000175000017500000000167312161041546013042 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Kurukh include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/en-us-interline.ctb0000664000175000017500000006666012161041546015266 00000000000000# liblouis: U.S. English Grade 1 table # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2006 # ViewPlus Technologies, Inc. www.viewplus.com # and # JJB Software, Inc. www.jjb-software.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@jjb-software.com include chardefs.cti All character definition opcodes # Braille indicators numsign 3456 number sign, just a dots operand multind 56-6 letsign capsign capsign 6 begcaps 6-6 endcaps 6-3 firstwordital 46-46 lastworditalbefore 46 lenitalphrase 4 firstletterital 46-3 lastletterital 46-36 singleletterital 46-25 firstwordbold 456-456 lastwordboldbefore 456 lenboldphrase 4 begcomp 456-346 endcomp 456-156 # the decimal digits include litdigits6Dots.uti # Letters are defined in en-chardefs # punctuation prepunc ( 2356 postpunc ) 2356 prepunc " 236 postpunc " 356 prepunc ` 6-236 prepunc ' 6-236 postpunc ' 356-3 word 'em = word 'tis = word 'twas = begnum # 1345-135-256 print number sign before number midnum , 2 postpunc , 2 decpoint . 46 midnum - 36 hyphen - 36 postpunc . 256 postpunc ; 23 midnum : 25 postpunc : 25 postpunc ! 235 midnum / 34 always / 456-34 always < 5-13 always = 46-13 always > 46-2 postpunc ? 236 endnum st 34 endnum nd 1345-145 endnum rd 1235-145 endnum s 234 endnum th 1456 endnum 's 3-234 endnum % 4-25-1234 midnum ^ 45 always ^ 456-126 always ~ 4-156 always & 4-12346 midnum * 4-16 always * 35-35 prepunc [ 6-2356 postpunc ] 2356-3 prepunc { 56-2356 postpunc } 2356-23 prepunc ` 6-236 always @ 4-1 always \\ 4-1256 always | 456-1256 always ..." 3-3-3-356 always ... 3-3-3 begnum $ 256-3456 # special character sequences compbrl :// URLs compbrl () compbrl www. compbrl :: compbrl .com compbrl .edu compbrl .gov compbrl .ini compbrl .mil compbrl .net compbrl .org compbrl .doc compbrl .htm compbrl .html compbrl .tex compbrl .txt compbrl .gif compbrl .jpg compbrl .png compbrl .wav compbrl .tar compbrl .zip letsign 56 # the letter a largesign a 1 largesign A 1 always aar 1-345 Aaron always aa 1-1 back-translation: maasai word about 1-12 word thereabouts 5-2346-1-12-234 word runabout 1235-136-1345-1-12 contraction ab sufword above 1-12-1236 contraction abv word according 1-14 contraction ac word accordingly 1-14-123-13456 contraction acly word across 1-14-1235 contraction acr always aed = always aer = Rosenlaer begword aforem 1-123456-15-134 aforementioned word aforesaid 1-123456-15-234-145 sufword after 1-124 contraction af always afternoon 1-124-1345 afternoons contraction afn sufword afterward 1-124-2456 contraction afw word again 1-1245 contraction ag word against 1-1245-34 always agery = midendword ally 6-13456 word almost 1-123-134 contraction alm word already 1-123-1235 contraction alr word also 1-123 contraction al word although 1-123-1456 word altogether 1-123-2345 contraction alt word always 1-123-2456 contraction alw midendword ance 46-15 largesign and 12346 always andar 12346-345 staodard midendword anda 12346-1 panda midword angh = Shanghai begword anted = always anterior 1-1345-2345-23456-24-135-1235 begword anter = begword aqued = aqueduct always ar 345 word aright 1-5-1235 word as 1356 contraction as always athe 1-2346 back-translation: lathe midendword ation 6-1345 midendword aunder 1-136-1345-145-12456 saunders begword auto = autofocus syllable away = # the letter b midword bb 23 midendword bble 12-3456 lowword be 23 begword be 23 begword bea 12-2 always bear 12-15-345 begword beatif 23-1-2345-24-124 begword beatit 23-1-2345-24-2345 begword beatr 23-1-2345-1235 Beatrice always beck 12-15-14-13 always bed 12-1246 begword beda 23-145-1 bedazzle begword bede 23-145-15 bedevil word bede 12-1246-15 bede (a name) begword bedi 23-145-24 bedizzened word bee 12-15-15 begword bee 12-15-15 always been 12-15-26 always beer 12-15-12456 word beg = begword begg 12-15-2356 word begs = begword bei = beijing sufword being 23-346 sufword belch 12-15-123-16 begword beld = Beldon begword belf = belfry, belfast begword belg = Belgium begword belk = Belkin always bell = begword belm = Belmont always belt = begword belw = belwether always ben 12-26 begword beni 12-26-24 begword benif 23-1345-24-124 benificient sufword benign 23-1345-24-1245-1345 benignity begword benov 23-1345-135-1236 benovolent begword benu 23-1345-136 benumbed begword ber 12-12456 begword bera 23-1235-1 berating begword bere 23-1235-15 bereft begword berea 23-1235-2 bereaved begword beri 23-1235-24 beribboned always best 12-15-34 sufword bestow 23-34-246 word bethel 12-15-2346-123 syllable beth 12-15-1456 Bethany always bethe 12-15-2346 Bethel (Hans) Bethe always bets = always bett = sufword bev = bevies begword bever 12-5-15 Beverly beverage always bio = midendword bious 12-24-1256-234 dubious always bottlen = bottlenosed joinword by 356 word because 23-14 word bec = sufword before 23-124 sufword behind 23-125 word behring 12-15-125-1235-346 word bel = begword beln = Belnick word below 23-123 word beneath 23-1345 sufword beside 23-234 sufword bess = Bessie word between 23-2345 word bet = word beyond 23-13456 word bey = always bleu = midendword ble 3456 midendword bleau 12-123-2-136 tableau syllable bleed 12-123-15-1246 nosebleed always bless 12-46-234 joblessness word blind 12-123 contraction bl begword blindf 12-123-124 blindfold word blindly 12-123-123-13456 word blindness 12-123-56-234 sufword blinds 12-123-234 blindsided always braille 12-1235-123 contraction brl word but 12 # the letter c midword cch 14-16 always chloro 16-123-135-1235-135 begword cofac = cofactor always cofound 14-135-124-46-145 begword com 36 sufword common 36-134-135-1345 commonest begword con 25 sufword conceive 25-14-1236 sufword conceiving 25-14-1236-1245 always conch 14-135-1345-16 always cone 14-5-135 word cons 14-135-1345-234 sufword conundrum = sufword could 14-145 word could've 14-145-3-1236-15 contraction cd always cred 14-1235-1246 incredulous midword cc 25 word can 14 always cannot 456-14 always ch 16 syllable chand 16-12346 merchandise always character 5-16 always chemo 16-15-134-135 word child 16 always children 16-1345 sufword clever 14-123-5-15 cleverest # the letter d always daredevil 145-345-15-145-15-1236-24-123 always day 5-145 always dday 145-5-145 begword deact = deactivation begword deall = deallocate begword decarb 145-15-14-345-12 always deceive 145-14-1236 contraction dcv contraction dcvd contraction dcvr contraction dcvs always deceiving 145-14-1236-1245 contraction dcvg always declare 145-14-123 contraction dcl contraction dcld contraction dclr contraction dcls word declaring 145-14-123-1245 contraction dclg begword deref = dereferencing begword dereg = deregulation midword dd 256 begword dedic 145-1246-24-14 dedicated always dedu = nondeductible begword deno = denote always denom = begword denou 145-15-1345-1256 denounce begword denu = denunciation begword dera = derail begword deri 145-15-1235-24 begword dero = derogatory begword dinu 145-24-1345-136 begword dis 256 word disc = word discs = always dish 145-24-146 begword disha 256-125-1 dishabile begword dishear 256-125-15-345 disheartened begword disho 256-125-135 dishonor begword dishone 256-125-5-135 dishonest sufword disk = sufword dispirit 145-24-456-234 dispirited begword disul = disulfide word do 145 syllable down 145-246-1345 facedown syllable drum = kettledrum always edom = always reduc = always seduc = # syllable dun = # the letter e midword ea 2 midword eabil = interchangeability always eable 15-1-3456 endword eably = noticeably midendword eage = mileage midendword eager 2-1245-12456 meager always eally 15-6-13456 midendword eance 15-46-15 vengeance midendword eand 15-12346 meander always eation 15-6-1345 always ear 15-345 always ed 1246 begword edic = edict Benedict sufword edition 15-145-24-56-1345 editions syllable draw = word either 15-24 contraction ei word en = always en 26 always ename 15-5-1345 sufword enamel 26-1-134-15-123 enameled midendword ence 56-15 syllable neck = bottleneck midendword eness 15-56-234 closeness begword enor = enormous begword enou 15-1345-1256 lowword enough 26 word enough 26-1256-126 begword enu 15-1345-136 always er 12456 begword era = word eras 12456-1-234 begword erec = erect begword ero 15-1235-135 syllable room = storeroom begword eru = erupt always ever 5-15 midendword evere 15-1236-12456-15 Everest always evered 15-1236-12456-1246 word every 15 # the letter f midword ff 235 syllable ffold 235-135-123-145 scaffold always father 5-124 always fein 124-15-35 Feingold always first 124-34 always fever 124-15-1236-12456 always ffor 124-123456 largesign for 123456 begword fora 123456-1 foramen always fore 123456-15 begword forens 123456-26-234 forensic always forever 123456-5-15 forevermore syllable fold = syllable foot = word from 124 word friend 124-1235 word friends 124-1235-234 word friendless 124-1235-46-234 sufword friendship 124-1235-146-24-1234 sufword friendl 124-1235-123 contraction fr midendword ful 56-123 always funder 124-136-1345-145-12456 # the letter g begword geo = geoengineering sufword geoff 1245-15-12356-124 Geoffrey midword gg 2356 always gh 126 endword gham = Langham midendword ghill = dunghill always ghz = (gigahertz) sufword gnome = gnomedb word go 1245 sufword good 1245-145 contraction gd always good-by 1245-145-36-12-13456 syllable grad = leningrad sufword great 1245-1235-2345 contraction grt # the letter h always had 456-125 always hadd 125-1-256 haddock sufword hade = hadean syllable hand 125-12346 word have 125 syllable hawk = syllable hawthorn 125-1-2456-1456-135-1235-1345 syllable head 125-2-145 syllable heart 125-15-345-2345 always hedgerow 125-1246-1245-15-1235-246 syllable herd 125-12456-145 goatherd always here 5-125 always hereafter 5-125-1-124 always hered 125-12456-1246 always heren 125-12456-26 midendword herence 125-12456-56-15 adherence always herer 125-12456-12456 always heres 125-12456-15-234 always heret 125-12456-15-2345 word heretofore 5-125-2345-135-123456-15 word herself 125-12456-124 word him 125-134 word His 6-236 word hm 125-3-134 sufword hmm = word himself 125-134-124 contraction hmf lowword his 236 syllable hood = syllable horn = syllable horse = horseradish syllable house 125-1256-234-15 syllable hydro = # the letter i word I 24 midendword iever 24-15-1236-12456 word immediate 24-134-134 contraction imm word immediately 24-134-134-123-13456 contraction immly begword immuno = immunofluorescence lowword in 35 word in = always in 35 endword in' 35-3 begword incon 35-14-135-1345 incongruous midendword iness 24-56-234 midendword ing 346 midword inga 35-1245-1 nightingale always ingar 35-1245-345 Weingarten midendword ingent 346-26-2345 stringent midword ingenc 346-26-14 contingency midword ingen 35-1245-26 palingenesis (new birth) midword ingi 35-1245-24 meningitis midendword inging 346-346 bringing joinword into 35-235 always isinglass 24-234-35-1245-123-1-234-234 always isomer 24-234-135-134-12456 word it 1346 word it's 1346-3-234 word it'd 1346-3-145 word it'll 1346-3-123-123 word its 1346-234 contraction xs word itself 1346-124 contraction xf midendword ity 56-13456 # the letter j word just 245 # the letter k always know 5-13 word knowledge 13 # the letter l always \s-\shis 36-36-125-24-234 always \s-\swas 36-36-2456-24-234 word housed 125-1256-234-1246 sufword land 123-12346 landowner midendword less 46-234 sufword letter 123-1235 contraction lr sufword newsletter 1345-15-2456-234-123-1235 word unlettered 136-1345-123-1235-1246 word like 123 sufword little 123-123 contraction ll sufword lone 123-5-135 lonely always loner 123-135-1345-12456 always lord 5-123 # the letter m always maha = always many 456-134 begword mccon 134-14-25 begword mc = always medic 134-1246-24-14 medicare midendword ment 56-2345 midword menth 134-26-1456 Blumenthal always mideast 134-24-145-15-1-34 word milling 134-24-123-123-346 always minestrone 134-35-15-34-1235-135-1345-15 always mishap = sufword mishear 134-24-234-125-15-345 misheard begword missh 134-24-234-146 misshapen word mistook = begword mistran = mistranslation sufword mistreat 134-24-234-2345-1235-2-2345 begword mistru = mistrust begword misty = mistyped word monetary 134-5-135-2345-345-13456 always mongoose = word more 134 always mother 5-134 always much 134-16 word must 134-34 word mustn 134-34-1345 word musty 134-34-13456 begword myo = myofibroblasts word myself 134-13456-124 contraction myf # the letter n always name 5-1345 midendword nament 1345-1-56-2345 tournament always namese = word near-by 1345-15-345-36-12-13456 prfword necessary 1345-15-14 unnecessary contraction nec word neither 1345-15-24 contraction nei midendword ness 56-234 begword nonen 1345-135-1345-26 nonentity begword noness = nonessential word nonetheless 1345-5-135-2346-46-234 always nonex = begword nong = nongraphical word noone 1345-135-5-135 begword nose = nosedive word nosed 1345-135-234-1246 word not 1345 word noways = word nowhere 1345-135-5-156 # the letter o word O 135 midword oed = Schroeder always oen = Phoenix midendword oence 135-26-14-15 electroencephalogram largesign of 12356 midendword ofar 135-124-345 insofar midendword ofa 12356-1 back-translation: sofa midword ofor 135-123456 always onesi = midendword oness 135-56-234 midendword oneer 135-1345-15-12456 midendword oned 135-1345-1246 always one 5-135 always oneal = peritoneal midendword oneless 5-135-46-234 tonelessly midendword onel = salmonella colonel always onem = phoneme midendword onement 5-135-56-2345 atonement midendword onent 135-1345-26-2345 midendword oneous 135-1345-15-1256-234 erroneous always oner 135-1345-12456 midendword onese = Cantonese, word oneself 5-135-124 midendword oness 135-56-234 Deaconess midendword onet = phonetics bayonet endword onez = Ordonez midendword ong 56-1245 always oon = sooner always osome = word ou = always ou 1256 midendword ound 46-145 midendword ount 46-2345 always ourselves 1256-1235-1236-234 word out 1256 always ought 5-1256 always ow 246 word o'clock 135-3-14 # the letter p always paid 1234-145 contraction pd always part 5-1234 begword parta 1234-345-2345-1 partake begword parto 1234-345-2345-135 begword parthen 1234-345-2346-1345 parthenon parthenogenesis word people 1234 always perceive 1234-12456-14-1236 always perceiving 1234-12456-14-1236-1245 always perhaps 1234-12456-125 begword photo = always pher 1234-125-12456 cyphered always pineapple 1234-35-1234-1234-123-15 syllable portion 1234-135-1235-56-1345 syllable port = porthole begword potho = pothole pothook begword pre = always preach 1234-1235-2-16 sufword predator 1234-1235-1246-1-2345-135-1235 always prof = word prof. 1234-1235-12356-256 begword proff 1234-1235-12356-124 proffer always profit 1234-1235-12356-24-2345 # the letter q always quick 12345-13 contraction qk word quite 12345 always question 5-12345 # the letter r sufword rafter 1235-1-124-2345-12456 word rather 1235 sufword raw = rawhide begword reab = reabsorbed always reac = always reach 1235-2-16 begword readj = readjust begword readm = readmit begword reaff 1235-15-1-235 sufword reagent 1235-15-1-1245-26-2345 begword reagg 1235-15-1-2356 reaggregated begword realig = realign begword rean = reanalyze, reanimate begword reapp = reappear begword reass 1235-15-1-234-234 begword reatt = reattach begword reau = reauthorization begword reaw = reawaken begword rede = begword redi = word redo = word redone 1235-15-145-5-135 begword redou 1235-15-145-1256 redouble redoubt always redu = always receive 1235-14-1236 contraction rcv contraction rcvd contraction rcvr contraction rcvs always receiving 1235-14-1236-1245 contraction rcvg begword redis = redistribute begword redr = redress word reichstag 1235-15-24-16-234-2345-1-1245 always rejoice 1235-245-14 contraction rjc contraction rjcd contraction rjcr contraction rjcs always rejoicing 1235-245-14-1245 contraction rjcg sufword renaming 1235-15-1345-1-134-346 renamings begword rene = begword renom = renominate begword renou 1235-15-1345-1256 renounce sufword renown 1235-15-1345-246-1345 renowned begword renu = renunciation begword rera = reradiate sufword reread 1235-15-1235-2-145 sufword rerun = reruns always rever 1235-15-1236-12456 always reveren 1235-5-15-26 irreverent always reverence 1235-5-15-56-15 irreverence sufword reverie 1235-5-15-24-15 begword ribof = begword ribon = always right 5-1235 # the letter s word said 234-145 contraction sd syllable screw = screwhole begword seda = always sedu = always sent 234-26-2345 sentimental always sever 234-15-1236-12456 perseverance always several 234-5-15-1-123 severally word shall 146 word sh = always sh 146 always shaus = In German names sufword should 146-145 always shoulder 146-1256-123-145-12456 word singapore 234-346-1-1234-135-1235-15 midendword sion 46-1345 midword stak 234-2345-1-13 midendword stion 234-56-1345 word so 234 always some 5-234 midendword somed 234-135-134-1246 ransomed always somer 234-135-134-12456 somersault always spirit 456-234 midendword ssword 234-234-45-2456 crossword partword st 34 always sth 234-1456 always sthe 234-2346 word still 34 always stime 234-5-2345 midendword stown 234-2345-246-1345 Pickstown begword styro 34-13456-1235-135 styrofoam always ssh = word such 234-16 word sch = always sword = # the letter t word th = always th 1456 word that 2345 word this 1456 word thyself 1456-13456-124 word tiddledywinks 2345-24-256-123-15-145-13456-2456-35-13-234 always tnam = joinword to 235 word today 2345-145 contraction td word tomorrow 2345-134 contraction tm word tonight 2345-1345 contraction tn always thead 2345-125-2-145 always theast 1456-15-1-34 largesign the 2346 always thea 2346-1 theater word themselves 2346-134-1236-234 always their 456-2346 always thence 1456-56-15 always there 5-2346 midendword thereal 2346-1235-2-123 ethereal word thereupon 5-2346-45-136 always thereafter 5-2346-1-124 always thered 2346-1235-1246 always therer 2346-1235-12456 always theres 2346-1235-15-234 theresa therese midendword tion 56-1345 always time 5-2345 midendword timed 1245-24-134-1246 midendword timer 2345-24-134-12456 midendword timet = altimeter word these 45-2346 always through 5-1456 word together 2345-1245-1235 contraction tgr word those 45-1456 begword trans = transtype # the letter u begword un = unameliorated begword unble = unblemished begword uncon = uncongenial begword undis = undisturbed begword uneas = unease begword uneat = uneaten sufword unful = unfulfilled begword unmen 136-1345-134-26 unmentioned word upon 45-136 Dupont word us 136 always under 5-136 word unsaid 136-1345-234-145 # the letter v begword vaing 1236-1-35-1245 vainglory word very 1236 begword vice = viceroy # the letter w lowword was 356 word wh = always wh 156 midendword whart 2456-125-345-2345 Newhart word which 156 word will 2456 lowword were 2356 lowword Were 6-2356 for back-translation always where 5-156 word whereupon 5-156-45-136 word wherever 156-12456-5-15 largesign with 23456 always word 45-2456 word whose 45-156 always work 5-2456 sufword would 2456-145 word would've 2456-145-3-1236-15 contraction wd always world 456-2456 # the letter x # the letter y word you 13456 word you'd 13456-3-145 word you'll 13456-3-123-123 word you're 13456-3-1235-15 word you've 13456-3-1236-15 always young 5-13456 word your 13456-1235 contraction yr word yours 13456-1235-234 contraction yrs word yourself 13456-1235-124 contraction yrf word yourselves 13456-1235-1236-234 contraction yrvs # the letter z # Système International Prefixes begword yotta 13456-135-2345-2345-1 10^24 begword zetta 1356-15-2345-2345-1 10^21 # begword exa 15-1346-1 10^18 begword peta 1234-15-2345-1 10^15 begword tera 2345-12456-1 10^12 begword giga 1245-24-1245-1 10^9 begword mega 134-15-1245-1 10^6 begword kilo 13-24-123-135 10^3 begword hecto 125-15-14-2345-135 10^2 begword deca 145-15-14-1 10^1 begword deci 145-15-14-24 10^-1 begword centi 14-26-2345-24 10^-2 begword milli 134-24-123-123-24 10^-3 begword micro 134-24-14-1235-135 10^-6 begword nano 1345-1-1345-135 10^-9 begword pico 1234-24-14-135 10^-12 begword femto 124-15-134-2345-135 10^-15 begword atto 1-2345-2345-135 10^-18 begword zepto 1356-15-1234-2345-135 10^-21 begword yocto 13456-135-14-2345-135 10^-24 begword anti = # begword endo 26-145-135 endow begword epi = begword extra = begword hyper 125-13456-1234-12456 begword hypo = begword infra 35-124-1235-1 begword inter 35-2345-12456 begword intra 35-2345-1235-1 begword iso = begword macro = begword meta = begword micro = begword mono = begword multi = begword patho 1234-1-1456-135 begword peri 1234-12456-24 begword poly = begword post 1234-135-34 begword pre = begword pseudo = begword retro = # begword semi = seminar begword sub = begword super 234-136-1234-12456 # begword tetra = begword trans = begword ultra = # begword uni = # other prefixes begword electro = begword neuro = begword psycho 1234-234-13456-16-135 endword s' 234-3 endword in' = endword 'd 3-145 back-translation: = doesn't work endword 'm 3-134 endword 're 3-1235-15 endword 've 3-1236-15 endword 'll 3-123-123 endword 's 3-234 endword 't 3-2345 word 'em = always -com 36-14-135-134 endword -to = pointed-to resource word abalone = sufword abecedarian 1-12-15-14-15-145-345-24-1-1345 midendword aean = begword aen = begword aftere 1-124-2345-12456-15 aftereffect begword afteri 1-124-2345-12456-24 afterimage sufword airedale = sufword anemone = sufword anteat = word antigone = word baloney = sufword bandog = sufword battledo = battledor battledome always bedragg 23-145-1235-1-2356 sufword beguine 12-15-1245-136-35-15 proper name sufword belittle 23-123-123 always benares 23-1345-345-15-234 begword benev 23-1345-15-1236 begword bene 12-26-15 always bering 12-12456-346 always bezel = syllable nomial = always boer = always burlingam = word caen = midendword lingian 123-346-24-1-1345 endword reagh 1235-2-126 castlereagh sufword cation 14-1-2345-24-135-1345 always chatham 16-1-2345-125-1-134 always cicerone 14-24-14-12456-135-1345-15 always blenz 12-123-26-1356 always enzym 26-1356-134 always coname 14-135-5-1345 word conally 14-135-1345-6-13456 word conatus = word conestoga 25-15-34-135-1245-1 word coney = word conidium = endword zione = word cony = sufword deaconess 145-2-14-135-56-234 begword denation 145-15-1345-6-1345 syllable natur = always derogate 145-12456-135-1245-1-2345-15 always dinghy 145-35-126-13456 always doggone 145-135-1245-1245-5-135 always donee = word donegal = begword equidis = equidistant midendword thereally 2346-1235-15-6-13456 ethereally midendword enook = always eversion 15-1236-12456-46-1345 sufword falconet = sufword feringhee 124-12456-35-126-15-15 begword fired = firedamp firedrake always francene 124-1235-1-1345-14-26-15 contraction frs sufword froward 124-1235-135-2456-345-145 sufword garderobe 1245-345-145-15-1235-135-12-15 midendword ometer 135-134-15-2345-12456 gasometer always gastight 1245-1-234-2345-24-126-2345 word goering 1245-135-15-1235-346 word Goodwill = with a cap word Goody = with a cap word Goodyear 1245-135-135-145-13456-15-345 always genealog 1245-26-15-1-123-135-1245 syllable herd = goatherd begword conan = always thold = berthold always equino = syllable thill = anthill word conch 14-135-1345-16 word conches 14-135-1345-16-15-234 syllable urinary 136-1235-35-345-13456 always goddam = always oering 135-15-1235-346 always handsomer 125-12346-5-234-1235 always heartsease 125-15-345-2345-234-15-1-234-15 always hereford 125-12456-15-123456-145 always hereupon 5-125-45-136 endword sheimer 234-125-15-24-134-12456 always hermione 125-12456-134-24-135-1345-15 always hoity = always toity = midendword blence 12-123-56-15 midendword blend 12-123-26-145 syllable rubber 1235-136-23-12456 indiarubber begword indist 35-145-24-234-2345 indistinct begword inerad 35-15-1235-1-145 ineradicable begword ingl 35-1245-123 inglewood inglenook word iredell = begword irre = word jaconet = word jehad = word jihad = word konev = contraction lrs word limeade = always lineag 123-35-2-1245 contraction llr always littleton = proper noun always littlejohn = surname always letterman = surname always oweed 135-2456-15-1246 locoweed always lonesome 123-5-135-5-234 always maenad = always menhaden 134-26-125-1-145-26 midendword encephal 26-14-15-1234-125-1-123 sufword misoneism = sufword misterm 134-24-234-2345-12456-134 sufword mistitl = always misword 134-24-234-45-2456 word more'n = word nonesuch 1345-5-135-234-16 word noway = change entry of noways word nowise = sufword nuthatch 1345-136-2345-125-1-2345-16 begword oed = oedipus always oneida = word orangeade = begword out 1256-2345 outhaul endword full = overfull begword oleag = oleaginous always peritoneum 1234-12456-24-2345-135-1345-15-136-134 always peroneal 1234-12456-135-1345-2-123 always persephone 1234-12456-234-15-1234-125-135-1345-15 begword pinedr 1234-35-15-145-1235 pinedrop syllable root = pokeroot snakeroot always poleax = poleax sufword potherb 1234-123-2345-125-12456-12 sufword potsherd 1234-135-2345-146-12456-145 syllable hunter 125-136-1345-2345-12456 pothunter always praenom = always predecess 1234-1235-15-14-15-234-234 always predicat 1234-1235-1246-24-14-1-2345 always prounion = endword edelic = psychedelic begword reaffor 1235-15-1-125-123456 reafforestation begword reappor = reapportion begword reavow 1235-15-1-1236-246 begword redac = redact begword rededic 1235-15-145-1246-24-14 rededicate always redingote 1235-1246-346-135-2345-15 begword renav = renavigated always renegad 1235-26-15-1245-1-145 always rerefin 1235-15-1235-15-124-35 begword resth = restharrow endword flery = riflery begword roped = ropedance always roustabout 1235-1256-34-1-12 word sadowa = always scattergood 234-14-1-2345-2345-12456-1245-145 word sever 234-5-15 word severs 234-5-15-234 word severed 234-5-15-1246 word severing 234-5-15-346 always severn 234-5-15-1345 midword sever 234-15-1236-12456 perseverance word several 234-5-15-1-123 severally always shofar 146-12356-345 always shoshone 146-135-146-135-1345-15 begword skeda = skedaddle always smitheren 234-134-24-2346-1235-26 proper name endword ouno = radiouno always sparerib 234-1234-345-15-1235-14-12 always speakeas 234-1234-2-13-15-1-234 begword spiken = spikenard syllable hound 125-46-145 loghound always stingar 34-346-345 always owork 135-5-2456 cowork stuccowork begword cowr = cowrote endword enaed 15-1345-1-1246 subpoenaed begword threenod 1456-1235-15-15-1345-135-145 threenode always tranship 2345-1235-1-1345-146-24-1234 begword trinar 2345-1235-24-1345-234 trinary trinaries always turnabout 2345-136-1235-1345-1-12 always dledee = always dledum = tweedledee and tweedledum always twould 2345-2456-145 begword unblea 136-1345-12-123-2 unbleach? begword unbless 136-1345-12-46-234 begword underog = begword underiv = always vicenar 1236-24-14-26-345 sufword violone = sufword wakerif = always wenceslaus 2456-26-14-15-234-123-1-136-234 word whereabouts 5-156-1-12-234 begword wired = wiredance always wiseacr = always you'n 13456-1256-3-1345 always zingaro 1356-346-345-135 always zwinglian 1356-2456-346-123-24-1-1345 sufword thorn 1456-135-1235-1345 word hearths 125-15-345-1456-234 word hearth 125-15-345-1456 # Problems handled with context context _$l["."]$l @256 U.S. context _$d["a"] @56-1 always --- 36-36-36 liblouis-2.5.3/tables/hu-chardefs.cti0000664000175000017500000002770412161041546014444 00000000000000# liblouis: Hungarian Grade 1 table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2011 by the BRLTTY Team # # Copyright (C) 2011-2012, IT Foundation for the Visually Impaired - Hungary. Homepage: www.infoalap.hu # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by Attila Hammer hammer.attila@infoalap.hu" # # If you found bugs with hungarian grade1 table, report it with following address: # Attila Hammer 45 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation [ 123567 LEFT SQUARE BRACKET punctuation \\ 347 REVERSE SOLIDUS punctuation ] 234567 RIGHT SQUARE BRACKET punctuation ~ 2346 TILDE punctuation ^ 2346 CIRCUMFLEX ACCENT letter  456 punctuation _ 6-36 punctuation _ 456 #95 _ LOW LINE punctuation ` 345 GRAVE ACCENT #Accented letters uplow Ãá 4 LATIN SMALL LETTER A WITH ACUTE uplow Éé 16 LATIN SMALL LETTER E WITH ACUTE uplow Ãí 34 LATIN SMALL LETTER I WITH ACUTE uplow Óó 246 LATIN SMALL LETTER O WITH ACUTE uplow Úú 346 LATIN SMALL LETTER U WITH ACUTE uplow Üü 12356 LATIN SMALL LETTER U WITH DIAERESIS uplow ÅÅ‘ 12456 LATIN SMALL LETTER O WITH DOUBLE ACUTE uplow Űű 23456 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE uplow Öö 12345 uplow Õõ 12456 lowercase û 23456 uplow Zz 126 punctuation & 5-12346 letter q 12346 punctuation { 12356 LEFT CURLY BRACKET punctuation | 34 VERTICAL LINE punctuation } 23456 RIGHT CURLY BRACKET punctuation " 4 QUOTATION MARK include latinLetterDef6Dots.uti include digits6DotsPlusDot6.uti space   0 EN SPACE space   0 EM SPACE space   0 THREE-PER-EM SPACE space   0 FOUR-PER-EM SPACE space   0 SIX-PER-EM SPACE punctuation   0 FIGURE SPACE space   0 PUNCTUATION SPACE space   0 THIN SPACE space   0 HAIR SPACE punctuation   0 NARROW NO-BREAK SPACE space ⟠0 MEDIUM MATHEMATICAL SPACE punctuation ─ 2356 BOX DRAWINGS LIGHT HORIZONTAL punctuation â” 2356 BOX DRAWINGS HEAVY HORIZONTAL punctuation │ 123456 BOX DRAWINGS LIGHT VERTICAL punctuation ┃ 123456 BOX DRAWINGS HEAVY VERTICAL punctuation ┄ 2356 BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL punctuation â”… 2356 BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL punctuation ┆ 123456 BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL punctuation ┇ 123456 BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL punctuation ┈ 2356 BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL punctuation ┉ 2356 BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL punctuation ┊ 123456 BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL punctuation ┋ 123456 BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL punctuation ┌ 2356 BOX DRAWINGS LIGHT DOWN AND RIGHT punctuation â” 2356 BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY punctuation ┎ 2356 BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT punctuation â” 2356 BOX DRAWINGS HEAVY DOWN AND RIGHT punctuation â” 2356 BOX DRAWINGS LIGHT DOWN AND LEFT punctuation ┑ 2356 BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY punctuation â”’ 23567 BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT punctuation ┓ 2356 BOX DRAWINGS HEAVY DOWN AND LEFT punctuation â”” 123456 BOX DRAWINGS LIGHT UP AND RIGHT punctuation ┕ 123456 BOX DRAWINGS UP LIGHT AND RIGHT HEAVY punctuation â”– 123456 BOX DRAWINGS UP HEAVY AND RIGHT LIGHT punctuation â”— 123456 BOX DRAWINGS HEAVY UP AND RIGHT punctuation ┘ 123456 BOX DRAWINGS LIGHT UP AND LEFT punctuation â”™ 123456 BOX DRAWINGS UP LIGHT AND LEFT HEAVY punctuation ┚ 123456 BOX DRAWINGS UP HEAVY AND LEFT LIGHT punctuation â”› 123456 BOX DRAWINGS HEAVY UP AND LEFT punctuation ├ 123456 BOX DRAWINGS LIGHT VERTICAL AND RIGHT punctuation â” 123456 BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY punctuation ┞ 123456 BOX DRAWINGS UP HEAVY AND RIGHT DOWN LIGHT punctuation ┟ 123456 BOX DRAWINGS DOWN HEAVY AND RIGHT UP LIGHT punctuation â”  123456 BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT punctuation ┡ 123456 BOX DRAWINGS DOWN LIGHT AND RIGHT UP HEAVY punctuation ┢ 123456 BOX DRAWINGS UP LIGHT AND RIGHT DOWN HEAVY punctuation ┣ 123456 BOX DRAWINGS HEAVY VERTICAL AND RIGHT punctuation ┤ 123456 BOX DRAWINGS LIGHT VERTICAL AND LEFT punctuation ┥ 123456 BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY punctuation ┦ 123456 BOX DRAWINGS UP HEAVY AND LEFT DOWN LIGHT punctuation â”§ 123456 BOX DRAWINGS DOWN HEAVY AND LEFT UP LIGHT punctuation ┨ 123456 BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT punctuation ┩ 123456 BOX DRAWINGS DOWN LIGHT AND LEFT UP HEAVY punctuation ┪ 123456 BOX DRAWINGS UP LIGHT AND LEFT DOWN HEAVY punctuation ┫ 123456 BOX DRAWINGS HEAVY VERTICAL AND LEFT punctuation ┬ 2356 BOX DRAWINGS LIGHT DOWN AND HORIZONTAL punctuation â”­ 2356 BOX DRAWINGS LEFT HEAVY AND RIGHT DOWN LIGHT punctuation â”® 2356 BOX DRAWINGS RIGHT HEAVY AND LEFT DOWN LIGHT punctuation ┯ 2356 BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY punctuation â”° 2356 BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT punctuation â”± 2356 BOX DRAWINGS RIGHT LIGHT AND LEFT DOWN HEAVY punctuation ┲ 2356 BOX DRAWINGS LEFT LIGHT AND RIGHT DOWN HEAVY punctuation ┳ 2356 BOX DRAWINGS HEAVY DOWN AND HORIZONTAL punctuation â”´ 123456 BOX DRAWINGS LIGHT UP AND HORIZONTAL punctuation ┵ 123456 BOX DRAWINGS LEFT HEAVY AND RIGHT UP LIGHT punctuation â”¶ 123456 BOX DRAWINGS RIGHT HEAVY AND LEFT UP LIGHT punctuation â”· 123456 BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY punctuation ┸ 123456 BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT punctuation ┹ 123456 BOX DRAWINGS RIGHT LIGHT AND LEFT UP HEAVY punctuation ┺ 123456 BOX DRAWINGS LEFT LIGHT AND RIGHT UP HEAVY punctuation â”» 123456 BOX DRAWINGS HEAVY UP AND HORIZONTAL punctuation ┼ 123456 BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL punctuation ┽ 123456 BOX DRAWINGS LEFT HEAVY AND RIGHT VERTICAL LIGHT punctuation ┾ 123456 BOX DRAWINGS RIGHT HEAVY AND LEFT VERTICAL LIGHT punctuation ┿ 123456 BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY punctuation â•€ 123456 BOX DRAWINGS UP HEAVY AND DOWN HORIZONTAL LIGHT punctuation â• 123456 BOX DRAWINGS DOWN HEAVY AND UP HORIZONTAL LIGHT punctuation â•‚ 123456 BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT punctuation ╃ 123456 BOX DRAWINGS LEFT UP HEAVY AND RIGHT DOWN LIGHT punctuation â•„ 123456 BOX DRAWINGS RIGHT UP HEAVY AND LEFT DOWN LIGHT punctuation â•… 123456 BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT punctuation ╆ 123456 BOX DRAWINGS RIGHT DOWN HEAVY AND LEFT UP LIGHT punctuation ╇ 123456 BOX DRAWINGS DOWN LIGHT AND UP HORIZONTAL HEAVY punctuation ╈ 123456 BOX DRAWINGS UP LIGHT AND DOWN HORIZONTAL HEAVY punctuation ╉ 123456 BOX DRAWINGS RIGHT LIGHT AND LEFT VERTICAL HEAVY punctuation ╊ 123456 BOX DRAWINGS LEFT LIGHT AND RIGHT VERTICAL HEAVY punctuation â•‹ 123456 BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL punctuation ╌ 2356 BOX DRAWINGS LIGHT DOUBLE DASH HORIZONTAL punctuation â• 2356 BOX DRAWINGS HEAVY DOUBLE DASH HORIZONTAL punctuation ╎ 123456 BOX DRAWINGS LIGHT DOUBLE DASH VERTICAL punctuation â• 123456 BOX DRAWINGS HEAVY DOUBLE DASH VERTICAL punctuation â• 2356 BOX DRAWINGS DOUBLE HORIZONTAL punctuation â•‘ 123456 BOX DRAWINGS DOUBLE VERTICAL punctuation â•’ 2356 BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE punctuation â•“ 2356 BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE punctuation â•” 2356 BOX DRAWINGS DOUBLE DOWN AND RIGHT punctuation â•• 2356 BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE punctuation â•– 2356 BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE punctuation â•— 2356 BOX DRAWINGS DOUBLE DOWN AND LEFT punctuation ╘ 123456 BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE punctuation â•™ 123456 BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE punctuation ╚ 123456 BOX DRAWINGS DOUBLE UP AND RIGHT punctuation â•› 123456 BOX DRAWINGS UP SINGLE AND LEFT DOUBLE punctuation ╜ 123456 BOX DRAWINGS UP DOUBLE AND LEFT SINGLE punctuation â• 123456 BOX DRAWINGS DOUBLE UP AND LEFT punctuation ╞ 123456 BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE punctuation ╟ 123456 BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE punctuation â•  123456 BOX DRAWINGS DOUBLE VERTICAL AND RIGHT punctuation â•¡ 123456 BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE punctuation â•¢ 123456 BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE punctuation â•£ 123456 BOX DRAWINGS DOUBLE VERTICAL AND LEFT punctuation ╤ 2356 BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE punctuation â•¥ 2356 BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE punctuation ╦ 2356 BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL punctuation â•§ 123456 BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE punctuation ╨ 123456 BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE punctuation â•© 123456 BOX DRAWINGS DOUBLE UP AND HORIZONTAL punctuation ╪ 123456 BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE punctuation â•« 123456 BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE punctuation ╬ 123456 BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL punctuation â•­ 2356 BOX DRAWINGS LIGHT ARC DOWN AND RIGHT punctuation â•® 2356 BOX DRAWINGS LIGHT ARC DOWN AND LEFT punctuation ╯ 123456 BOX DRAWINGS LIGHT ARC UP AND LEFT punctuation â•° 123456 BOX DRAWINGS LIGHT ARC UP AND RIGHT punctuation ╱ 47 BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT punctuation ╲ 18 BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT punctuation ╳ 14 BOX DRAWINGS LIGHT DIAGONAL CROSS punctuation â•´ 2356 BOX DRAWINGS LIGHT LEFT punctuation ╵ 123456 BOX DRAWINGS LIGHT UP punctuation â•¶ 2356 BOX DRAWINGS LIGHT RIGHT punctuation â•· 2356 BOX DRAWINGS LIGHT DOWN #punctuation % 2356 BOX DRAWINGS HEAVY LEFT punctuation ╹ 123456 BOX DRAWINGS HEAVY UP punctuation ╺ 2356 BOX DRAWINGS HEAVY RIGHT punctuation â•» 2356 BOX DRAWINGS HEAVY DOWN punctuation ╼ 2356 BOX DRAWINGS LIGHT LEFT AND HEAVY RIGHT punctuation ╽ 123456 BOX DRAWINGS LIGHT UP AND HEAVY DOWN punctuation ╾ 2356 BOX DRAWINGS HEAVY LEFT AND LIGHT RIGHT punctuation â•¿ 123456 BOX DRAWINGS HEAVY UP AND LIGHT DOWN punctuation – 36 punctuation … 3-3-3 punctuation « 26 punctuation » 26 punctuation ‘ 23567 punctuation ’ 47 punctuation ‚ 26 punctuation “ 236 punctuation †356 punctuation „ 1268 sign • 26 punctuation Å› 26 letter ź 134568 punctuation — 36-36 lowercase ä 26 punctuation · 3 MIDDLE DOT punctuation § 3456-1236 punctuation Â… 3-3-3 letter ç 14 letter þ 245 letter ø 12345 letter ë 12345 punctuation º 0 punctuation \x001e 36 If I replace this sequence with normal unicode character, lou_checktable present an error message letter è 15 letter ê 15 uppercase Æ 4-1 LATIN CAPITAL LETTER AE LATIN CAPITAL LETTER A E sign € 56-15 letter ff 0 letter ï¬ 0 letter fl 0 letter ffi 0 letter ffl 0 letter Å£ 0 letter ÅŸ 0 letter Å™ 1235 letter à 4 letter ñ 1345 liblouis-2.5.3/tables/en-us-comp8.ctb0000664000175000017500000000127712161041546014314 00000000000000# liblouis: U.S. English 8 dot Computer braille table space \t 9 tab space \s 0 blank space \x00a0 a unbreakable space sign \x000a 78 newline space \x000d 0 carriage return include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation , 6 punctuation ; 56 punctuation : 156 punctuation . 46 punctuation ! 2346 punctuation " 5 punctuation ' 3 punctuation ( 12356 punctuation ) 23456 punctuation - 36 sign _ 456 math < 126 math = 123456 math > 345 sign % 146 math + 346 math ~ 45 sign ` 4 sign & 12346 sign $ 1246 punctuation ? 1456 punctuation { 246 punctuation [ 2467 punctuation } 12456 punctuation ] 124567 sign ^ 457 sign @ 47 sign # 3456 sign \\ 12567 sign | 1256 math / 34 sign * 16 liblouis-2.5.3/tables/de-de.dis0000664000175000017500000003350412161041546013224 00000000000000# This file is obsolete. Do not use! # liblouis: de-de.dis # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # This is to beused with German translation tables. #Hex Dots Dec Char Description display \X0020 0 #32 space display \X0021 5 #33 ! exclamation mark display \X0022 4 #34 " quotation mark display \X0023 3456 #35 # number sign display \X0024 46 #36 $ dollar sign display \X0025 123456 #37 % percent sign display \X0026 12346 #38 & ampersand display \X0027 6 #39 ' apostrophe display \X0028 236 #40 ( left parenthesis display \X0029 356 #41 ) right parenthesis display \X002A 35 #42 * asterisk display \X002B 235 #43 + plus sign display \X002C 2 #44 , comma display \X002D 36 #45 - hyphen-minus display \X002E 3 #46 . full stop display \X002F 256 #47 / solidus display \X0030 346 #480 digit zero display \X0031 16 #491 digit one display \X0032 126 #502 digit two display \X0033 146 #513 digit three display \X0034 1456 #524 digit four display \X0035 156 #535 digit five display \X0036 1246 #546 digit six display \X0037 12456 #557 digit seven display \X0038 1256 #568 digit eight display \X0039 246 #579 digit nine display \X003A 25 #58 : colon display \X003B 23 #59 ; semicolon display \X003C 56 #60 < less-than sign # display \X003D 156 #61 = equals sign display \X003D 2356 #61 = equals sign display \X003E 45 #62 > greater-than sign display \X003F 26 #63 ? question mark display \X0040 345 #64 @ commercial at #Hex Dots Dec Char Description display \X0041 17 #65 A Latin capital letter a display \X0042 127 #66 B Latin capital letter b display \X0043 147 #67 C Latin capital letter c display \X0044 1457 #68 D Latin capital letter d display \X0045 157 #69 E Latin capital letter e display \X0046 1247 #70 F Latin capital letter f display \X0047 12457 #71 G Latin capital letter g display \X0048 1257 #72 H Latin capital letter h display \X0049 247 #73 I Latin capital letter i display \X004A 2457 #74 J Latin capital letter j display \X004B 137 #75 K Latin capital letter k display \X004C 1237 #76 L Latin capital letter l display \X004D 1347 #77 M Latin capital letter m display \X004E 13457 #78 N Latin capital letter n display \X004F 1357 #79 O Latin capital letter o display \X0050 12347 #80 P Latin capital letter p display \X0051 123457 #81 Q Latin capital letter q display \X0052 12357 #82 R Latin capital letter r display \X0053 2347 #83 S Latin capital letter s display \X0054 23457 #84 T Latin capital letter t display \X0055 1367 #85 U Latin capital letter u display \X0056 12367 #86 V Latin capital letter v display \X0057 24567 #87 W Latin capital letter w display \X0058 13467 #88 X Latin capital letter x display \X0059 134567 #89 Y Latin capital letter y display \X005A 13567 #90 Z Latin capital letter z display \X005B 12356 # 91 [ left square bracket display \X005C 347 # 92 \ reverse solidus display \X005D 23456 # 93 ] right square bracket display \X005E 2346 # 94 ^ circumflex accent display \X005F 456 # 95 _ low line display \X0060 345 # 96 ` grave accent display \X0061 1 #97 a Latin small letter a display \X0062 12 #98 b Latin small letter b display \X0063 14 #99 c Latin small letter c display \X0064 145 #100 d Latin small letter d display \X0065 15 #101 e Latin small letter e display \X0066 124 #102 f Latin small letter f display \X0067 1245 #103 g Latin small letter g display \X0068 125 #104 h Latin small letter h display \X0069 24 #105 i Latin small letter i display \X006A 245 #106 j Latin small letter j display \X006B 13 #107 k Latin small letter k display \X006C 123 #108 l Latin small letter l display \X006D 134 #109 m Latin small letter m display \X006E 1345 #110 n Latin small letter n display \X006F 135 #111 o Latin small letter o display \X0070 1234 #112 p Latin small letter p display \X0071 12345 #113 q Latin small letter q display \X0072 1235 #114 r Latin small letter r display \X0073 234 #115 s Latin small letter s display \X0074 2345 #116 t Latin small letter t display \X0075 136 #117 u Latin small letter u display \X0076 1236 #118 v Latin small letter v display \X0077 2456 #119 w Latin small letter w display \X0078 1346 #120 x Latin small letter x display \X0079 13456 #121 y Latin small letter y display \X007A 1356 #122 z Latin small letter z display \X007B 12356 # 123 { left curly bracket display \X007C 34 # 124 | vertical line display \X007D 23456 # 125 } right curly bracket display \X007E 2356 # 126 ~ tilde display \X007F 4568 # 127 ^ ?delete #Hex Dots Dec Char Description display \X0080 48 # 128~@ display \X0081 18 # 129~A display \X0082 128 # 130~Bbreak permitted here display \X0083 148 # 131~Cno break here display \X0084 1458 # 132~D display \X0085 158 # 133~Enext line display \X0086 1248 # 134~Fstart of selected area display \X0087 12458 # 135~Gend of selected area display \X0088 1258 # 136~Hcharacter tabulation set display \X0089 248 # 137~Icharacter tabulation with justification display \X008A 2458 # 138~Jline tabulation set display \X008B 138 # 139~Kpartial line down display \X008C 1238 # 140~Lpartial line up display \X008D 1348 # 141~Mreverse line feed display \X008E 13458 # 142~Nsingle shift two display \X008F 1358 # 143~Osingle shift three display \X0090 12348 # 144~Pdevice control string display \X0091 123458 # 145~Qprivate use one display \X0092 12358 # 146~Rprivate use two display \X0093 2348 # 147~Sset transmit state display \X0094 23458 # 148~Tcancel character display \X0095 1368 # 149~Umessage waiting display \X0096 12368 # 150~Vstart of guarded area display \X0097 24568 # 151~Wend of guarded area display \X0098 13468 # 152~Xstart of string display \X0099 134568 # 153~Y display \X009A 13568 # 154~Zsingle character introducer display \X009B 2468 # 155~[control sequence introducer display \X009C 12568 # 156~\string terminator display \X009D 124568 # 157~]operating system command display \X009E 458 # 158~^privacy message display \X009F 4568 # 159 ~_application program command display \X00A0 0 #160 no-break space #Hex Dots Dec Char Description display \X0000 478 #0^@null display \X0001 178 #1^Astart of heading display \X0002 1278 #2^Bstart of text display \X0003 1478 #3^Cend of text display \X0004 14578 #4^Dend of transmission display \X0005 1578 #5^Eenquiry display \X0006 12478 #6^Facknowledge display \X0007 124578 #7^Gbell display \X0008 12578 #8^Hbackspace display \X0009 2478 #9^Ihorizontal tabulation display \X000A 24578 #10^Jline feed display \X000B 1378 #11^Kvertical tabulation display \X000C 12378 #12^Lform feed display \X000D 13478 #13^Mcarriage return display \X000E 134578 #14^Nshift out display \X000F 13578 #15^Oshift in display \X0010 123478 #16^Pdata link escape display \X0011 1234578 #17^Qdevice control one display \X0012 123578 #18^Rdevice control two display \X0013 23478 #19^Sdevice control three display \X0014 234578 #20^Tdevice control four display \X0015 13678 #21^Unegative acknowledge display \X0016 123678 #22^Vsynchronous idle display \X0017 245678 #23^Wend of transmission block display \X0018 134678 #24^Xcancel display \X0019 1345678 #25^Yend of medium display \X001A 135678 #26^Zsubstitute display \X001B 24678 #27^[escape display \X001C 125678 #28^\file separator display \X001D 1245678 #29^]group separator display \X001E 4578 #30^^record separator display \X001F 45678 #31^_unit separator #Hex Dots Dec Char Description display \X00A1 23467 # 161 ¡ inverted exclamation mark display \X00A2 58 #162 ¢ cent sign display \X00A3 34567 # 163 £ pound sign display \X00A4 1467 # 164 ¤ currency sign display \X00A5 123467 # 165 Â¥ yen sign display \X00A6 1567 # 166 ¦ broken bar display \X00A7 357 # 167 § section sign display \X00A8 57 # 168 ¨ diaeresis display \X00A9 23567 # 169 © copyright sign display \X00AA 8 # 170 ª feminine ordinal indicator display \X00AB 1267 # 171 « left-pointing double angle quotation mark display \X00AC 2567 # 172 ¬ not sign display \X00AD 367 # 173 ­ soft hyphen display \X00AE 2367 # 174 ® registered sign display \X00AF 267 # 175 ¯ macron display \X00B0 3567 # 176 ° degree sign display \X00C0 23578 # 192 À Latin capital letter a with grave display \X00C1 1678 # 193 à Latin capital letter a with acute display \X00C2 16 # 194  Latin capital letter a with circumflex display \X00C3 578 # 195à Latin capital letter a with tilde display \X00C4 1234678 # 196Ä Latin capital letter a with diaeresis display \X00C5 34578 # 197Ã… Latin capital letter a with ring above display \X00C6 378 # 198Æ Latin capital letter ae display \X00C7 34678 # 199Ç Latin capital letter c with cedilla display \X00C8 23567 # 200 È Latin capital letter e with grave display \X00C9 12678 # 201É Latin capital letter e with acute display \X00CA 2378 # 202 Ê Latin capital letter e with circumflex display \X00CB 12345678 # 203Ë Latin capital letter e with diaeresis display \X00CC 23678 # 204ÃŒ Latin capital letter i with grave display \X00CD 14678 # 205à Latin capital letter i with acute display \X00CE 2578 # 206 ÃŽ Latin capital letter i with circumflex display \X00CF 1235678 # 207à Latin capital letter i with diaeresis display \X00D0 678 # 208à Latin capital letter eth display \X00D1 4678 # 209Ñ Latin capital letter n with tilde display \X00D2 3578 # 210Ã’ Latin capital letter o with grave display \X00D3 145678 # 211Ó Latin capital letter o with acute display \X00D4 25678 # 212 Ô Latin capital letter o with circumflex display \X00D5 5678 # 213Õ Latin capital letter o with tilde display \X00D6 234678 # 214Ö Latin capital letter o with diaeresis display \X00D7 167 # 215×multiplication sign display \X00D8 3478 # 216Ø Latin capital letter o with stroke display \X00D9 35678 # 217Ù Latin capital letter u with grave display \X00DA 15678 # 218Ú Latin capital letter u with acute display \X00DB 2678 # 219 Û Latin capital letter u with circumflex display \X00DC 2345678 # 220Ü Latin capital letter u with diaeresis display \X00DD 124678 # 221à Latin capital letter y with acute display \X00DE 3678 # 222Þ Latin capital letter thorn display \X00DF 345678 # 223ß Latin small letter sharp s display \X00E0 2358 # 224à Latin small letter a with grave display \X00E1 168 # 225á Latin small letter a with acute display \X00E2 16 # 226 â Latin small letter a with circumflex display \X00E3 58 # 227ã Latin small letter a with tilde display \X00E4 123468 # 228ä Latin small letter a with diaeresis display \X00E5 3458 # 229Ã¥ Latin small letter a with ring above display \X00E6 38 # 230æ Latin small letter ae display \X00E7 3468 # 231ç Latin small letter c with cedilla display \X00E8 23568 # 232è Latin small letter e with grave display \X00E9 1268 # 233é Latin small letter e with acute display \X00EA 238 # 234 ê Latin small letter e with circumflex display \X00EB 1234568 # 235ë Latin small letter e with diaeresis display \X00EC 2368 # 236ì Latin small letter i with grave display \X00ED 1468 # 237í Latin small letter i with acute display \X00EE 258 # 238 î Latin small letter i with circumflex display \X00EF 123568 # 239ï Latin small letter i with diaeresis display \X00F0 68 # 240ð Latin small letter eth display \X00F1 468 # 241ñ Latin small letter n with tilde display \X00F2 358 # 242ò Latin small letter o with grave display \X00F3 14568 # 243ó Latin small letter o with acute display \X00F4 2568 # 244 ô Latin small letter o with circumflex display \X00F5 568 # 245õ Latin small letter o with tilde display \X00F6 23468 # 246ö Latin small letter o with diaeresis display \X00F7 347 # 247÷division sign display \X00F8 348 # 248ø Latin small letter o with stroke display \X00F9 3568 # 249ù Latin small letter u with grave display \X00FA 1568 # 250ú Latin small letter u with acute display \X00FB 268 # 251 û Latin small letter u with circumflex display \X00FC 234568 # 252ü Latin small letter u with diaeresis display \X00FD 12468 # 253ý Latin small letter y with acute display \X00FE 368 # 254þ Latin small letter thorn display \X00FF 34568 # 255ÿ Latin small letter y with diaeresis display \X00BB 3457 # 187»right-pointing double angle quotation mark display \X00B9 27 # 185¹superscript one display \X00B2 237 # 178²superscript two display \X00B3 257 # 179³superscript three display \X00B1 3467 # 177±plus-minus sign display \X00D7 167 # 215×multiplication sign display \X00B7 467 # 183·middle dot display \X00BF 14567 # 191¿inverted question mark display \X00B6 2357 # 182¶pilcrow sign #Hex Dots Dec Char Description display \X00BC 123567 # 188¼vulgar fraction one quarter display \X00BD 1234567 # 189½vulgar fraction one half display \X00BE 234567 # 190¾vulgar fraction three quarters # Each of the three extended accent characters is the same as its conventional # compose character but with dot7 added: #Hex Dots Dec Char Description display \X00B4 37 # 180´acute accent display \X00B8 67 # 184¸cedilla # The two gender symbols are: #Hex Dots Dec Char Description display \X00BA 7 # 186ºmasculine ordinal indicator # The three remaining characters are: #Hex Dots Dec Char Description display \X00B5 567 # 181µmicro sign # The nonbreaking space is dots 7 and 8 because this presents a sequence of # nonbreaking spaces as a smooth low line segment. #Hex Dots Dec Char Description liblouis-2.5.3/tables/latinLetterDef8Dots.uti0000664000175000017500000000110112161041546016104 00000000000000# Latin letters a-z with dot 7 as capital indicator. # Usually included to form a 8 dots table. uplow Aa 17,1 uplow Bb 127,12 uplow Cc 147,14 uplow Dd 1457,145 uplow Ee 157,15 uplow Ff 1247,124 uplow Gg 12457,1245 uplow Hh 1257,125 uplow Ii 247,24 uplow Jj 2457,245 uplow Kk 137,13 uplow Ll 1237,123 uplow Mm 1347,134 uplow Nn 13457,1345 uplow Oo 1357,135 uplow Pp 12347,1234 uplow Qq 123457,12345 uplow Rr 12357,1235 uplow Ss 2347,234 uplow Tt 23457,2345 uplow Uu 1367,136 uplow Vv 12367,1236 uplow Ww 24567,2456 uplow Xx 13467,1346 uplow Yy 134567,13456 uplow Zz 13567,1356 liblouis-2.5.3/tables/de-chardefs6.cti0000664000175000017500000003405112161041546014477 00000000000000# liblouis: Character definitions for german tables # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Character definitions for german tables # # Version 2009-11-19 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- # ===== BASIC LATIN - 0000-007F ================================================ space \x0009 0 #9 [CHARACTER TABULATION] space \x000A 0 #10 [LINE FEED (LF)] space \x000C 0 #12 [FORM FEED (FF)] space \x000D 0 #13 [CARRIAGE RETURN (CR)] space \x0020 0 #32 SPACE punctuation \x0021 5 #33 ! EXCLAMATION MARK punctuation \x0022 4 #34 " QUOTATION MARK sign \x0023 3456 #35 # NUMBER SIGN sign \x0024 46 #36 $ DOLLAR SIGN sign \x0025 123456 #37 % PERCENT SIGN sign \x0026 12346 #38 & AMPERSAND punctuation \x0027 6 #39 ' APOSTROPHE APOSTROPHE-QUOTE punctuation \x0028 236 #40 ( LEFT PARENTHESIS punctuation \x0029 356 #41 ) RIGHT PARENTHESIS sign \x002A 35 #42 * ASTERISK math \x002B 235 #43 + PLUS SIGN punctuation \x002C 2 #44 , COMMA punctuation \x002D 36 #45 - HYPHEN-MINUS punctuation \x002E 3 #46 . FULL STOP PERIOD sign \x002F 256 #47 / SOLIDUS SLASH include digits6DotsPlusDot6.uti punctuation \x003A 25 #58 : COLON punctuation \x003B 23 #59 ; SEMICOLON math \x003C 56 #60 < LESS-THAN SIGN math \x003D 2356 #61 = EQUALS SIGN math \x003E 45 #62 > GREATER-THAN SIGN punctuation \x003F 26 #63 ? QUESTION MARK include latinLetterDef6Dots.uti sign \x0060 345 #96 ` GRAVE ACCENT punctuation \x007B 12356 #123 { LEFT CURLY BRACKET sign \x007C 34 #124 | VERTICAL LINE punctuation \x007D 23456 #125 } RIGHT CURLY BRACKET sign \x007E 2346 #126 ~ TILDE sign \x007F 456 #127 [DELETE] sign \x0040 4-345 #64 @ COMMERCIAL AT punctuation \x005B 6-2356 #91 [ LEFT SQUARE BRACKET sign \x005C 4-34 #92 \ REVERSE SOLIDUS punctuation \x005D 6-2356 #93 ] RIGHT SQUARE BRACKET sign \x005E 4-2346 #94 ^ CIRCUMFLEX ACCENT sign \x005F 4-456 #95 _ LOW LINE # ===== LATIN-1 SUPPLEMENT: 0080-00FF ========================================== space \x00A0 0 #160 NO-BREAK SPACE punctuation \x00A1 0 #161 ¡ INVERTED EXCLAMATION MARK sign \x00A2 4-14 #162 ¢ CENT SIGN sign \x00A3 4-123 #163 £ POUND SIGN sign \x00A4 0 #164 ¤ CURRENCY SIGN sign \x00A5 4-13456 #165 Â¥ YEN SIGN sign \x00A6 0-456-123-0 #166 ¦ BROKEN BAR sign \x00A7 4-346 #167 § SECTION SIGN sign \x00A8 0 #168 ¨ DIAERESIS sign \x00A9 2356-45-14-2356 #169 © COPYRIGHT SIGN lowercase \x00AA 1 #170 ª FEMININE ORDINAL INDICATOR punctuation \x00AB 236 #171 « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK sign \x00AC 0 #172 ¬ NOT SIGN sign \x00AD 0 #173 ­ SOFT HYPHEN sign \x00AE 2356-45-1235-2356 #174 ® REGISTERED SIGN sign \x00AF 0 #175 ¯ MACRON sign \x00B0 4-356 #176 ° DEGREE SIGN math \x00B1 235-36 #177 ± PLUS-MINUS SIGN sign \x00B2 0 #178 ² SUPERSCRIPT TWO sign \x00B3 0 #179 ³ SUPERSCRIPT THREE sign \x00B4 0 #180 ´ ACUTE ACCENT sign \x00B5 56-134 #181 µ MICRO SIGN sign \x00B6 0 #182 ¶ PILCROW SIGN sign \x00B7 0 #183 · MIDDLE DOT sign \x00B8 0 #184 ¸ CEDILLA sign \x00B9 0 #185 ¹ SUPERSCRIPT ONE lowercase \x00BA 135 #186 º MASCULINE ORDINAL INDICATOR punctuation \x00BB 356 #187 » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK math \x00BC 3456-1-256 #188 ¼ VULGAR FRACTION ONE QUARTER math \x00BD 3456-1-23 #189 ½ VULGAR FRACTION ONE HALF math \x00BE 3456-14-256 #190 ¾ VULGAR FRACTION THREE QUARTERS punctuation \x00BF 0 #191 ¿ INVERTED QUESTION MARK uplow \x00C4\x00E4 345 #196 #228 Ää LATIN CAPITAL LETTER A WITH DIAERESIS uplow \x00D6\x00F6 246 #214 #246 Öö LATIN CAPITAL LETTER O WITH DIAERESIS math \x00D7 236 #215 × MULTIPLICATION SIGN uplow \x00DC\x00FC 1256 #220 #252 Üü LATIN CAPITAL LETTER U WITH DIAERESIS lowercase \x00DF 2346 #223 ß LATIN SMALL LETTER SHARP S math \x00F7 0 #247 ÷ DIVISION SIGN # ===== GENERAL PUNCTUATION: 2000-206F ========================================= punctuation \x2013 6-36 #8211 EN DASH punctuation \x2014 6-36 #8212 EM DASH punctuation \x2018 6-236 #8216 LEFT SINGLE QUOTATION MARK punctuation \x2019 6-356 #8217 RIGHT SINGLE QUOTATION MARK punctuation \x201A 6-236 #8218 SINGLE LOW-9 QUOTATION MARK punctuation \x201B 6-356 #8219 SINGLE HIGH-REVERSED-9 QUOTATION MARK punctuation \x201C 236 #8220 LEFT DOUBLE QUOTATION MARK punctuation \x201D 356 #8221 RIGHT DOUBLE QUOTATION MARK punctuation \x201E 236 #8222 DOUBLE LOW-9 QUOTATION MARK punctuation \x201F 356 #8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK sign \x2030 3456-245-356-356 #8240 PER MILLE SIGN sign \x2031 3456-245-356-356-356 #8241 PER TEN THOUSAND SIGN sign \x2032 4-35 #8242 PRIME sign \x2033 4-35-35 #8243 DOUBLE PRIME punctuation \x2039 6-236 SINGLE LEFT-POINTING ANGLE QUOTATION MARK punctuation \x203a 6-356 SINGLE RIGHT-POINTING ANGLE QUOTATION MARK # ===== CURRENCY SYMBOLS: 20A0-20CF ============================================ sign \x20A0 4-15 EURO-CURRENCY SIGN # ===== NUMBER FORMS: 2150-218F ================================================ math \x2153 3456-1-25 VULGAR FRACTION ONE THIRD math \x2154 3456-12-23 VULGAR FRACTION TWO THIRDS math \x2155 3456-1-26 VULGAR FRACTION ONE FIFTH math \x2156 3456-12-26 VULGAR FRACTION TWO FIFTHS math \x2157 3456-14-26 VULGAR FRACTION THREE FIFTHS math \x2158 3456-145-26 VULGAR FRACTION FOUR FIFTHS math \x2159 3456-1-235 VULGAR FRACTION ONE SIXTH math \x215a 3456-15-235 VULGAR FRACTION FIVE SIXTHS math \x215b 3456-1-236 VULGAR FRACTION ONE EIGHTH math \x215c 3456-14-236 VULGAR FRACTION THREE EIGHTHS math \x215d 3456-15-236 VULGAR FRACTION FIVE EIGHTHS math \x215e 3456-1245-236 VULGAR FRACTION SEVEN EIGHTHS # ===== ARROWS: 2190-21FF ====================================================== sign \x2190 0-246-25-25-0 LEFTWARDS ARROW sign \x2192 0-25-25-135-0 RIGHTWARDS ARROW sign \x2194 0-246-25-25-135-0 LEFT RIGHT ARROW # ===== MATHEMATICAL OPERATORS: 2200-22FF ====================================== math \x2212 36 #8722 MINUS SIGN math \x2215 25 #8725 DIVISION SLASH math \x2217 35 #8727 ASTERISK OPERATOR math \x223C 25-25 #8764 TILDE OPERATOR math \x2245 26-26 #8773 APPROXIMATELY EQUAL TO math \x2259 26 #8793 ESTIMATES math \x2260 35-2356 #8800 NOT EQUAL TO math \x2261 2356-2356 #8801 IDENTICAL TO math \x2264 246-2356 #8804 LESS-THAN OR EQUAL TO math \x2265 135-2356 #8805 GREATER-THAN OR EQUAL TO math \x2266 246-2356 #8806 LESS-THAN OVER EQUAL TO math \x2267 135-2356 #8807 GREATER-THAN OVER EQUAL TO math \x22c5 3 #8901 DOT OPERATOR math \x22c6 3 #8902 STAR OPERATOR # ===== BRAILLE PATTERNS: 2800-28FF ============================================ space \x2800 0 #10240 BRAILLE PATTERN BLANK sign \x2801 1 #10241 BRAILLE PATTERN DOTS-1 sign \x2802 2 #10242 BRAILLE PATTERN DOTS-2 sign \x2803 12 #10243 BRAILLE PATTERN DOTS-12 sign \x2804 3 #10244 BRAILLE PATTERN DOTS-3 sign \x2805 13 #10245 BRAILLE PATTERN DOTS-13 sign \x2806 23 #10246 BRAILLE PATTERN DOTS-23 sign \x2807 123 #10247 BRAILLE PATTERN DOTS-123 sign \x2808 4 #10248 BRAILLE PATTERN DOTS-4 sign \x2809 14 #10249 BRAILLE PATTERN DOTS-14 sign \x280a 24 #10250 BRAILLE PATTERN DOTS-24 sign \x280b 124 #10251 BRAILLE PATTERN DOTS-124 sign \x280c 34 #10252 BRAILLE PATTERN DOTS-34 sign \x280d 134 #10253 BRAILLE PATTERN DOTS-134 sign \x280e 234 #10254 BRAILLE PATTERN DOTS-234 sign \x280f 1234 #10255 BRAILLE PATTERN DOTS-1234 sign \x2810 5 #10256 BRAILLE PATTERN DOTS-5 sign \x2811 15 #10257 BRAILLE PATTERN DOTS-15 sign \x2812 25 #10258 BRAILLE PATTERN DOTS-25 sign \x2813 125 #10259 BRAILLE PATTERN DOTS-125 sign \x2814 35 #10260 BRAILLE PATTERN DOTS-35 sign \x2815 135 #10261 BRAILLE PATTERN DOTS-135 sign \x2816 235 #10262 BRAILLE PATTERN DOTS-235 sign \x2817 1235 #10263 BRAILLE PATTERN DOTS-1235 sign \x2818 45 #10264 BRAILLE PATTERN DOTS-45 sign \x2819 145 #10265 BRAILLE PATTERN DOTS-145 sign \x281a 245 #10266 BRAILLE PATTERN DOTS-245 sign \x281b 1245 #10267 BRAILLE PATTERN DOTS-1245 sign \x281c 345 #10268 BRAILLE PATTERN DOTS-345 sign \x281d 1345 #10269 BRAILLE PATTERN DOTS-1345 sign \x281e 2345 #10270 BRAILLE PATTERN DOTS-2345 sign \x281f 12345 #10271 BRAILLE PATTERN DOTS-12345 sign \x2820 6 #10272 BRAILLE PATTERN DOTS-6 sign \x2821 16 #10273 BRAILLE PATTERN DOTS-16 sign \x2822 26 #10274 BRAILLE PATTERN DOTS-26 sign \x2823 126 #10275 BRAILLE PATTERN DOTS-126 sign \x2824 36 #10276 BRAILLE PATTERN DOTS-36 sign \x2825 136 #10277 BRAILLE PATTERN DOTS-136 sign \x2826 236 #10278 BRAILLE PATTERN DOTS-236 sign \x2827 1236 #10279 BRAILLE PATTERN DOTS-1236 sign \x2828 46 #10280 BRAILLE PATTERN DOTS-46 sign \x2829 146 #10281 BRAILLE PATTERN DOTS-146 sign \x282a 246 #10282 BRAILLE PATTERN DOTS-246 sign \x282b 1246 #10283 BRAILLE PATTERN DOTS-1246 sign \x282c 346 #10284 BRAILLE PATTERN DOTS-346 sign \x282d 1346 #10285 BRAILLE PATTERN DOTS-1346 sign \x282e 2346 #10286 BRAILLE PATTERN DOTS-2346 sign \x282f 12346 #10287 BRAILLE PATTERN DOTS-12346 sign \x2830 56 #10288 BRAILLE PATTERN DOTS-56 sign \x2831 156 #10289 BRAILLE PATTERN DOTS-156 sign \x2832 256 #10290 BRAILLE PATTERN DOTS-256 sign \x2833 1256 #10291 BRAILLE PATTERN DOTS-1256 sign \x2834 356 #10292 BRAILLE PATTERN DOTS-356 sign \x2835 1356 #10293 BRAILLE PATTERN DOTS-1356 sign \x2836 2356 #10294 BRAILLE PATTERN DOTS-2356 sign \x2837 12356 #10295 BRAILLE PATTERN DOTS-12356 sign \x2838 456 #10296 BRAILLE PATTERN DOTS-456 sign \x2839 1456 #10297 BRAILLE PATTERN DOTS-1456 sign \x283a 2456 #10298 BRAILLE PATTERN DOTS-2456 sign \x283b 12456 #10299 BRAILLE PATTERN DOTS-12456 sign \x283c 3456 #10300 BRAILLE PATTERN DOTS-3456 sign \x283d 13456 #10301 BRAILLE PATTERN DOTS-13456 sign \x283e 23456 #10302 BRAILLE PATTERN DOTS-23456 sign \x283f 123456 #10303 BRAILLE PATTERN DOTS-123456 liblouis-2.5.3/tables/gurmukhi.cti0000664000175000017500000000720612161041546014101 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0a01 3 GURMUKHI SIGN ADAK BINDI letter \x0a02 56 GURMUKHI SIGN BINDI letter \x0a03 6 GURMUKHI SIGN VISARGA letter \x0a05 1 GURMUKHI LETTER A letter \x0a06 345 GURMUKHI LETTER AA letter \x0a07 24 GURMUKHI LETTER I letter \x0a08 35 GURMUKHI LETTER II letter \x0a09 136 GURMUKHI LETTER U letter \x0a0a 1256 GURMUKHI LETTER UU letter \x0a0f 15 GURMUKHI LETTER EE letter \x0a10 34 GURMUKHI LETTER AI letter \x0a13 135 GURMUKHI LETTER OO letter \x0a14 246 GURMUKHI LETTER AU letter \x0a15 13 GURMUKHI LETTER KA letter \x0a16 46 GURMUKHI LETTER KHA letter \x0a17 1234 GURMUKHI LETTER GA letter \x0a18 126 GURMUKHI LETTER GHA letter \x0a19 346 GURMUKHI LETTER NGA letter \x0a1a 14 GURMUKHI LETTER CA letter \x0a1b 16 GURMUKHI LETTER CHA letter \x0a1c 245 GURMUKHI LETTER JA letter \x0a1d 356 GURMUKHI LETTER JHA letter \x0a1e 25 GURMUKHI LETTER NYA letter \x0a1f 23456 GURMUKHI LETTER TTA letter \x0a20 2456 GURMUKHI LETTER TTHA letter \x0a21 1246 GURMUKHI LETTER DDA letter \x0a22 123456 GURMUKHI LETTER DDHA letter \x0a23 3456 GURMUKHI LETTER NNA letter \x0a24 2345 GURMUKHI LETTER TA letter \x0a25 1456 GURMUKHI LETTER THA letter \x0a26 145 GURMUKHI LETTER DA letter \x0a27 2346 GURMUKHI LETTER DHA letter \x0a28 1345 GURMUKHI LETTER NA letter \x0a2a 1234 GURMUKHI LETTER PA letter \x0a2b 235 GURMUKHI LETTER PHA letter \x0a2c 12 GURMUKHI LETTER BA letter \x0a2d 45 GURMUKHI LETTER BHA letter \x0a2e 134 GURMUKHI LETTER MA letter \x0a2f 13456 GURMUKHI LETTER YA letter \x0a30 1235 GURMUKHI LETTER RA letter \x0a32 123 GURMUKHI LETTER LA letter \x0a33 1237 GURMUKHI LETTER LLA letter \x0a35 1236 GURMUKHI LETTER VA letter \x0a36 146 GURMUKHI LETTER SHA letter \x0a38 234 GURMUKHI LETTER SA letter \x0a39 125 GURMUKHI LETTER HA letter \x0a3e 345 GURMUKHI VOWEL SIGN AA letter \x0a3f 24 GURMUKHI VOWEL SIGN I letter \x0a40 35 GURMUKHI VOWEL SIGN II letter \x0a41 136 GURMUKHI VOWEL SIGN U letter \x0a42 1256 GURMUKHI VOWEL SIGN UU letter \x0a47 15 GURMUKHI VOWEL SIGN EE letter \x0a48 34 GURMUKHI VOWEL SIGN AI letter \x0a4b 135 GURMUKHI VOWEL SIGN OO letter \x0a4c 246 GURMUKHI VOWEL SIGN AU letter \x0a4d 4 GURMUKHI SIGN VIRAMA letter \x0a66 245 GURMUKHI DIGIT ZERO letter \x0a67 1 GURMUKHI DIGIT ONE letter \x0a68 12 GURMUKHI DIGIT TWO letter \x0a69 14 GURMUKHI DIGIT THREE letter \x0a6a 145 GURMUKHI DIGIT FOUR letter \x0a6b 15 GURMUKHI DIGIT FIVE letter \x0a6c 124 GURMUKHI DIGIT SIX letter \x0a6d 1245 GURMUKHI DIGIT SEVEN letter \x0a6e 125 GURMUKHI DIGIT EIGHT letter \x0a6f 24 GURMUKHI DIGIT NINE liblouis-2.5.3/tables/de-g1-core.cti0000664000175000017500000021761512161041546014100 00000000000000# liblouis: German grade 1 braille # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # DEUTSCHE VOLLSCHRIFT - German Grade 1 Braille # # Version 11-17-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- class i i class u u # AU always au 16 always kapernaum 13-1-1234-12456-1345-1-136-134 always propaganda 1234-1235-135-1234-1-1245-1-1345-145-1 always europa 126-1235-135-1234-1 before u begmidword extra 15-1346-2345-1235-1 always galauniform 1245-1-123-1-136-1345-24-124-135-1235-134 before u begmidword intra 24-1345-2345-1235-1 always kamera 13-1-134-15-1235-1 always pharma 1234-125-1-1235-134-1 # ÄU always äu 34 always skarabäus 234-13-1-1235-1-12-345-136-234 always thaddäus 2345-125-1-145-145-345-136-234 midendword igäum 24-1245-345-136-134 always apogäum 1-1234-135-1245-345-136-134 always trochäus 2345-1235-135-1456-345-136-234 always matthäus 134-1-2345-2345-125-345-136-234 always jubiläum 245-136-12-24-123-345-136-134 always ptolemäus 1234-2345-135-123-15-134-345-136-234 always bartimäus 12-1-1235-2345-24-134-345-136-234 always bartholomäus 12-1-1235-2345-125-135-123-135-134-345-136-234 always borromäus 12-135-1235-1235-135-134-345-136-234 always athenäum 1-2345-125-15-1345-345-136-134 always piräus 1234-24-1235-345-136-234 # CH always ch 1456 # EI always ei 146 midendword eideal 15-24-145-15-1-123 midendword eidee 15-24-145-15-15 begmidword getreidee 1245-15-2345-1235-146-145-15-15 begmidword getreideein 1245-15-2345-1235-146-145-15-146-1345 begmidword schneideein 156-1345-146-145-15-146-1345 midendword eidentifi 15-24-145-15-1345-2345-24-124-24 midendword eidentisch 15-24-145-15-1345-2345-24-156 midendword eidentität 15-24-145-15-1345-2345-24-2345-345-2345 midendword eideo 15-24-145-15-135 midendword eidyll 15-24-145-13456-123-123 midendword eignor 15-24-1245-1345-135-1235 midword eikon 15-24-13-135-1345 always reederei 1235-15-15-145-15-1235-146 always fischerei 124-24-156-15-1235-146 always molkerei 134-135-123-13-15-1235-146 always datei 145-1-2345-146 always polizei 1234-135-123-24-1356-146 begmidword freikon 124-1235-146-13-135-1345 begmidword parteikon 1234-1-1235-2345-146-13-135-1345 midendword eille 15-24-123-123-15 begmidword teillei 2345-146-123-123-146 midword eilleus 15-24-123-123-126-234 begmidword marseill 134-1-1235-234-15-24-123-123 midendword eilloy 15-24-123-123-135-13456 midendword eillu 15-24-123-123-136 midendword eimag 15-24-134-1-1245 always geheim 1245-15-125-146-134 midendword eimbiss 15-24-134-12-24-234-234 midendword eimit 15-24-134-24-2345 always arzneimittel 1-1235-1356-1345-146-134-24-2345-2345-15-123 always eimitgl 146-134-24-2345-1245-123 always eimitt 146-134-24-2345-2345 midendword eimker 15-24-134-13-15-1235 midendword eimm 15-24-134-134 always leim 123-146-134 always heim 125-146-134 midendword eimp 15-24-134-1234 always keim 13-146-134 always reimpaar 1235-146-134-1234-1-1-1235 # MACHNOCH: von G2: alle "EIN" abgleichen midendword eindex 15-24-1345-145-15-1346 midendword eindik 15-24-1345-145-24-13 midendword eindio 15-24-1345-145-24-135 midendword eindiz 15-24-1345-145-24-1356 midendword einduk 15-24-1345-145-136-13 midendword eindust 15-24-1345-145-136-23456 midendword einduzier 15-24-1345-145-136-1356-346-1235 midword eineff 15-24-1345-15-124-124 midendword einfant 15-24-1345-124-1-1345-2345 midword einfark 15-24-1345-124-1-1235-13 midendword einfekt 15-24-1345-124-15-13-2345 midendword einfektion 15-24-1345-124-15-13-2345-24-135-1345 midword einfer 15-24-1345-124-15-1235 midword einfilt 15-24-1345-124-24-123-2345 midendword einfinit 15-24-1345-124-24-1345-24-2345 midword einfiz 15-24-1345-124-24-1356 midword einflat 15-24-1345-124-123-1-2345 midendword einfo 15-24-1345-124-135 always klein 13-123-146-1345 always schein 156-146-1345 always reinform 1235-146-1345-124-135-1235-134 midendword einfusion 15-24-1345-124-136-234-24-135-1345 midendword einhab 15-24-1345-125-1-12 midendword einhala 15-24-1345-125-1-123-1 midendword einhalier 15-24-1345-125-1-123-346-1235 midendword einhär 15-24-1345-125-345-1235 midendword einhomo 15-24-1345-125-135-134-135 midendword einhuman 15-24-1345-125-136-134-1-1345 midendword einit 15-24-1345-24-2345 midendword einj 15-24-1345-245 begmidword feinj 124-146-1345-245 midendword einkarn 15-24-1345-13-1-1235-1345 midendword einkasso 15-24-1345-13-1-234-234-135 midendword einklu 15-24-1345-13-123-136 midendword einkomp 15-24-1345-13-135-134-1234 midendword einkon 15-24-1345-13-135-1345 always wein 2456-146-1345 midendword einkub 15-24-1345-13-136-12 midendword einland 15-24-1345-123-1-1345-145 always stein 23456-146-1345 always rhein 1235-125-146-1345 midendword einnen 15-24-1345-1345-15-1345 midendword einner 15-24-1345-1345-15-1235 begmidword beinnerv 12-146-1345-1345-15-1235-1236 begmidword feinnerv 124-146-1345-1345-15-1235-1236 midendword einnov 15-24-1345-1345-135-1236 midendword einnung 15-24-1345-1345-136-1345-1245 midendword einput 15-24-1345-1234-136-2345 midendword einschrift 15-24-1345-156-1235-24-124-2345 always latein 123-1-2345-146-1345 always reinschrift 1235-146-1345-156-1235-24-124-2345 midendword einsekt 15-24-1345-234-15-13-2345 midendword einserat 15-24-1345-234-15-1235-1-2345 midendword einserent 15-24-1345-234-15-1235-15-1345-2345 midendword einserier 15-24-1345-234-15-1235-346-1235 midendword einsert 15-24-1345-234-15-1235-2345 midendword einsider 15-24-1345-234-24-145-15-1235 midendword einsign 15-24-1345-234-24-1245-1345 midendword einsist 15-24-1345-234-24-23456 midendword einsolv 15-24-1345-234-135-123-1236 midendword einspekt 15-24-1345-234-1234-15-13-2345 midendword einspir 15-24-1345-234-1234-24-1235 midendword einspiz 15-24-1345-234-1234-24-1356 midendword einstabil 15-24-1345-23456-1-12-24-123 midendword einstall 15-24-1345-23456-1-123-123 midendword einstanz 15-24-1345-23456-1-1345-1356 midendword einstinkt 15-24-1345-23456-24-1345-13-2345 midendword einstit 15-24-1345-23456-24-2345 midendword einstrument 15-24-1345-23456-1235-136-134-15-1345-2345 always feinstrumpf 124-146-1345-23456-1235-136-134-1234-124 midendword einsul 15-24-1345-234-136-123 midendword einszen 15-24-1345-234-1356-15-1345 midendword eintegr 15-24-1345-2345-15-1245-1235 midendword eintell 15-24-1345-2345-15-123-123 midendword eintend 15-24-1345-2345-15-1345-145 always allgemein 1-123-123-1245-15-134-146-1345 midendword eintens 15-24-1345-2345-15-1345-234 midendword eintent 15-24-1345-2345-15-1345-2345 midendword einter 15-24-1345-2345-15-1235 always gemein 1245-15-134-146-1345 always geeinter 1245-15-146-1345-2345-15-1235 always vereinter 1236-15-1235-146-1345-2345-15-1235 always vermeinter 1236-15-1235-134-146-1345-2345-15-1235 always verneinter 1236-15-1235-1345-146-1345-2345-15-1235 midendword eintol 15-24-1345-2345-135-123 midendword eintra 15-24-1345-2345-1235-1 always eintracht 146-1345-2345-1235-1-1456-2345 always eintraf 146-1345-2345-1235-1-124 always eintrag 146-1345-2345-1235-1-1245 always eintrat 146-1345-2345-1235-1-2345 always eintraust 146-1345-2345-1235-16-23456 always eintraut 146-1345-2345-1235-16-2345 midendword eintrig 15-24-1345-2345-1235-24-1245 midendword eintro 15-24-1345-2345-1235-135 always eintrock 146-1345-2345-1235-135-14-13 always eintromm 146-1345-2345-1235-135-134-134 always eintropf 146-1345-2345-1235-135-1234-124 midendword eintui 15-24-1345-2345-136-24 midendword einvalid 15-24-1345-1236-1-123-24-145 midendword einvasion 15-24-1345-1236-1-234-24-135-1345 midendword einvent 15-24-1345-1236-15-1345-2345 midendword einvert 15-24-1345-1236-15-1235-2345 always alleinver 1-123-123-146-1345-1236-15-1235 always feinver 124-146-1345-1236-15-1235 always scheinver 156-146-1345-1236-15-1235 always rhein 1235-125-146-1345 midendword einvest 15-24-1345-1236-15-23456 midendword eion 15-24-135-1345 midendword eirr 15-24-1235-1235 midendword eisolat 15-24-234-135-123-1-2345 midendword eisolier 15-24-234-135-123-346-1235 midendword eiterier 15-24-2345-15-1235-346-1235 midendword eiterat 15-24-2345-15-1235-1-2345 always beijing 12-15-24-245-24-1345-1245 begmidword beimpf 12-15-24-134-1234-124 always beinhalt 12-15-24-1345-125-1-123-2345 always beirr 12-15-24-1235-1235 always deifikation 145-15-24-124-24-13-1-2345-24-135-1345 always deindividuation 145-15-24-1345-145-24-1236-24-145-136-1-2345-24-135-1345 always deist 145-15-24-23456 always badeinsel 12-1-145-15-24-1345-234-15-123 sufword fidei 124-24-145-15-24 always codein 14-135-145-15-24-1345 always kodein 13-135-145-15-24-1345 midendword deist 145-15-24-23456 midendword deistisch 145-15-24-23456-24-156 always schnee 156-1345-15-15 always seeigel 234-15-15-24-1245-15-123 always sightseeing 234-24-1245-125-2345-234-15-15-24-1345-1245 midendword eeinsel 15-15-24-1345-234-15-123 midendword seeisch 234-15-15-24-156 always coffein 14-135-124-124-15-24-1345 always koffein 13-135-124-124-15-24-1345 midendword geinhalt 1245-15-24-1345-125-1-123-2345 begmidword geirr 1245-15-24-1235-1235 begmidword geimpf 1245-15-24-134-1234-124 always eheinstitut 15-125-15-24-1345-23456-24-2345-136-2345 always prometheisch 1234-1235-135-134-15-2345-125-15-24-156 always theismus 2345-125-15-24-234-134-136-234 always theist 2345-125-15-24-23456 before i begmidword kohle 13-135-125-123-15 always leim 123-146-134 always galilei 1245-1-123-24-123-15-24 always nuklein 1345-136-13-123-15-24-1345 always acrolein 1-14-1235-135-123-15-24-1345 always akrolein 1-13-1235-135-123-15-24-1345 before i begmidword wärme 2456-345-1235-134-15 always schweineigel 156-2456-146-1345-15-24-1245-15-123 always äneis 345-1345-15-24-234 always aeneis 1-15-1345-15-24-234 midendword aneität 1-1345-15-24-2345-345-2345 sufword alineier 1-123-24-1345-15-346-1235 always guineisch 1245-136-24-1345-15-24-156 always boeing 12-135-15-24-1345-1245 always nereide 1345-15-1235-15-24-145-15 always kreier 13-1235-15-346-1235 always pythagoreisch 1234-13456-2345-125-1-1245-135-1235-15-24-156 always epikureisch 15-1234-24-13-136-1235-15-24-156 always eritreisch 15-1235-24-2345-1235-15-24-156 always kureismus 13-136-1235-15-24-234-134-136-234 always diagnose 145-24-1-1245-1345-135-234-15 always kasein 13-1-234-15-24-1345 before i begmidword kälte 13-345-123-2345-15 always protein 1234-1235-135-2345-15-24-1345 always weight 2456-15-24-1245-125-2345 # EU always eu 126 midendword eunkosten 15-136-1345-13-135-23456-15-1345 always beunruhig 12-15-136-1345-1235-136-125-24-1245 always beurkund 12-15-136-1235-13-136-1345-145 always beurlaub 12-15-136-1235-123-16-12 always beurteil 12-15-136-1235-2345-146-123 before u begmidword gewebe 1245-15-2456-15-12-15 before u begmidword probe 1234-1235-135-12-15 before u begmidword werbe 2456-15-1235-12-15 always sterbeuhr 23456-15-1235-12-15-136-125-1235 before u begmidword vice 1236-24-14-15 before u begmidword lyce 123-13456-14-15 always deus 145-15-136-234 always amadeus 1-134-1-145-15-136-234 before u begmidword bade 12-1-145-15 before u begmidword bade 12-1-145-15 before u begmidword lade 123-1-145-15 before u begmidword parade 1234-1-1235-1-145-15 always tedeum 2345-15-145-15-136-134 before u begmidword code 14-135-145-15 always gemeindeum 1245-15-134-146-1345-145-15-136-134 always kundeunter 13-136-1345-145-15-136-1345-2345-15-1235 always landeunter 123-1-1345-145-15-136-1345-2345-15-1235 always spondeus 234-1234-135-1345-145-15-136-234 always tedeum 2345-15-145-15-136-134 always armeeun 1-1235-134-15-15-136-1345 always peeun 1234-15-15-136-1345 always seeufer 234-15-15-136-124-15-1235 always seeum 234-15-15-136-134 always seeun 234-15-15-136-1345 always spreeufer 234-1234-1235-15-15-136-124-15-1235 before u begmidword hilfe 125-24-123-124-15 always ausgeufert 16-234-1245-15-136-124-15-1235-2345 always folgeunter 124-135-123-1245-15-136-1345-2345-15-1235 always geupdated 1245-15-136-1234-145-1-2345-15-145 always geurteil 1245-15-136-1235-2345-146-123 always sorgeunter 234-135-1235-1245-15-136-1345-2345-15-1235 always rechercheur 1235-15-1456-15-1235-1456-126-1235 before u begmidword recherche 1235-15-1456-15-1235-1456-15 before u begmidword beinahe 12-146-1345-1-125-15 before u begmidword leihe 123-146-125-15 before u begmidword ruhe 1235-136-125-15 before u begmidword stärke 23456-345-1235-13-15 always makeup 134-1-13-15-136-1234 always bakkalaure 12-1-13-13-1-123-16-1235-15 always aleuten 1-123-15-136-2345-15-1345 always aleutisch 1-123-15-136-2345-24-156 always nucleus 1345-136-14-123-15-136-234 before u begmidword kohle 13-135-125-123-15 always ileus 24-123-15-136-234 always nukleus 1345-136-13-123-15-136-234 always oleum 135-123-15-136-134 always linoleum 123-24-1345-135-123-15-136-134 always mausoleum 134-16-234-135-123-15-136-134 always petroleum 1234-15-2345-1235-135-123-15-136-134 always herculaneum 125-15-1235-14-136-123-1-1345-15-136-134 before u begmidword marine 134-1-1235-24-1345-15 before u begmidword routine 1235-135-136-2345-24-1345-15 always marneufer 134-1-1235-1345-15-136-124-15-1235 always oeuvre 246-136-1236-1235-15 always bakkalaure 12-1-13-13-1-123-16-1235-15 before u begmidword ware 2456-1-1235-15 before u begmidword reise 1235-146-234-15 before u begmidword presse 1234-1235-15-2346-15 always colosseum 14-135-123-135-234-234-15-136-134 always kolosseum 13-135-123-135-234-234-15-136-134 always presseun 1234-1235-15-234-234-15-136-1345 before u begmidword gehäuse 1245-15-125-34-234-15 always museum 134-136-234-15-136-134 before u begmidword geräte 1245-15-1235-345-2345-15 before u begmidword elite 15-123-24-2345-15 always andrözeum 1-1345-145-1235-246-1356-15-136-134 always lyzeum 123-13456-1356-15-136-134 before u begmidword vize 1236-24-1356-15 # IE midendword ie 346 midendword iell 24-15-123-123 always haie 125-1-24-15 always schanghai 156-1-1345-1245-125-1-24 always shanghai 234-125-1-1345-1245-125-1-24 always lakaien 123-1-13-1-24-15-1345 always tokaier 2345-135-13-1-24-15-1235 always laie 123-1-24-15 always malaie 134-1-123-1-24-15 always maien 134-1-24-15-1345 always maier 134-1-24-15-1235 always monnaie 134-135-1345-1345-1-24-15 word bien 12-24-15-1345 begword bien 12-346-1345 midendword bien 12-24-15-1345 always bienn 12-24-15-1345-1345 always skabies 234-13-1-12-24-15-234 always honigbien 125-135-1345-24-1245-12-346-1345 always mörtelbien 134-246-1235-2345-15-123-12-346-1345 always kolumbier 13-135-123-136-134-12-24-15-1235 always hosenbien 125-135-234-15-1345-12-346-1345 always wespenbien 2456-15-234-1234-15-1345-12-346-1345 always garderobier 1245-1-1235-145-15-1235-135-12-24-15-1235 always adverbi 1-145-1236-15-1235-12-24 always arbeiterbien 1-1235-12-146-2345-15-1235-12-346-1345 always feuerbien 124-126-15-1235-12-346-1345 always futterbien 124-136-2345-2345-15-1235-12-346-1345 always mauerbien 134-16-15-1235-12-346-1345 always trauerbien 2345-1235-16-15-1235-12-346-1345 always arbeitsbien 1-1235-12-146-2345-234-12-346-1345 always lesbier 123-15-234-12-24-15-1235 always trachtbien 2345-1235-1-1456-2345-12-346-1345 always nubier 1345-136-12-24-15-1235 always holzbien 125-135-123-1356-12-346-1345 always pelzbien 1234-15-123-1356-12-346-1345 # cie always ciego 14-24-15-1245-135 always ancien 1-1345-14-24-15-1345 always ancier 1-1345-14-24-15-1235 always lancier 123-1-1345-14-346-1235 always nuancier 1345-136-1-1345-14-346-1235 always avancier 1-1236-1-1345-14-346-1235 always rencier 1235-15-1345-14-24-15-1235 always concierge 14-135-1345-14-24-15-1235-1245-15 always societas 234-135-14-24-15-2345-1-234 always society 234-135-14-24-15-2345-13456 always science 234-14-24-15-1345-14-15 always sciento 234-14-24-15-1345-2345-135 always saucier 234-16-14-24-15-1235 always diego 145-24-15-1245-135 always dielektr 145-24-15-123-15-13-2345-1235 word dien 145-346-1345 midendword dien 145-24-15-1345 always diene 145-346-1345-15 always medien 134-15-145-24-15-1345 always dienlich 145-346-1345-123-24-1456 always dienst 145-346-1345-23456 always dienstag 145-346-1345-234-2345-1-1245 always dient 145-346-1345-2345 # dier word diet 145-24-15-2345 always diethyl 145-24-15-2345-125-13456-123 prfword dieu 145-24-126 always adieu 1-145-24-126 always barbadier 12-1-1235-12-1-145-24-15-1235 always brigadier 12-1235-24-1245-1-145-24-15-1235 always arkadier 1-1235-13-1-145-24-15-1235 always kanadier 13-1-1345-1-145-24-15-1235 always gradient 1245-1235-1-145-24-15-1345-2345 always bedien 12-15-145-346-1345 always gedient 1245-15-145-346-1345-2345 always expedient 15-1346-1234-15-145-24-15-1345-2345 always andien 1-1345-145-346-1345 always burundier 12-136-1235-136-1345-145-24-15-1235 always komödie 13-135-134-246-145-24-15 always tragödie 2345-1235-1-1245-246-145-24-15 always verdien 1236-15-1235-145-346-1345 always kapverdier 13-1-1234-1236-15-1235-145-24-15-1235 always studie 23456-136-145-24-15 always studier 23456-136-145-346-1235 always fierant 124-24-15-1235-1-1345-2345 always fiesta 124-24-15-234-2345-1 endword grafien 1245-1235-1-124-24-15-1345 midendword schauffier 234-1456-16-124-124-346-1235 always identifier 24-145-15-1345-2345-24-124-24-15-1235 always profierfahr 1234-1235-135-124-24-15-1235-124-1-125-1235 midendword gien 1245-24-15-1345 always gieneutral 1245-346-1345-126-2345-1235-1-123 always gieniveau 1245-346-1345-24-1236-15-16 always magier 134-1-1245-24-15-1235 always belgier 12-15-123-1245-24-15-1235 always orgie 135-1235-1245-24-15 always georgier 1245-15-135-1235-1245-24-15-1235 always hierarch 125-24-15-1235-1-1235-1456 always hierarchie 125-24-15-1235-1-1235-1456-346 always hierarchien 125-24-15-1235-1-1235-1456-24-15-1345 always hieroglyph 125-24-15-1235-135-1245-123-13456-1234-125 always hieronymus 125-24-15-1235-135-1345-13456-134-136-234 always chien 1456-24-15-1345 always alighieri 1-123-24-1245-125-24-15-1235-24 endword graphien 1245-1235-1-1234-125-24-15-1345 prfword philosophien 1234-125-24-123-135-234-135-1234-125-24-15-1345 # thie always thierry 2345-125-24-15-1235-1235-13456 always pathien 1234-1-2345-125-24-15-1345 always forsythie 124-135-1235-234-13456-2345-125-24-15 always kiellini 13-346-123-123-24-1345-24 always kiew 13-24-15-2456 always thrakien 2345-125-1235-1-13-24-15-1345 always bankier 12-1-1345-13-24-15-1235 sufword skier 234-13-24-15-1235 always abfahrtsskier 1-12-124-1-125-1235-2345-234-234-13-24-15-1235 always laufskier 123-16-124-234-13-24-15-1235 always tourenskier 2345-135-136-1235-15-1345-234-13-24-15-1235 always wasserskier 2456-1-234-234-15-1235-234-13-24-15-1235 # lier midendword lien 123-24-15-1345 always lieutenant 123-24-126-2345-15-1345-1-1345-2345 # alie always zerealie 1356-15-1235-15-1-123-24-15 always chemikalie 1456-15-134-24-13-1-123-24-15 always somalier 234-135-134-1-123-24-15-1235 always formalie 124-135-1235-134-1-123-24-15 always marginalie 134-1-1235-1245-24-1345-1-123-24-15 always lappalie 123-1-1234-1234-1-123-24-15 always aralie 1-1235-1-123-24-15 always salier 234-1-123-24-15-1235 always nasalier 1345-1-234-1-123-346-1235 always drangsalier 145-1235-1-1345-1245-234-1-123-346-1235 always repressalie 1235-15-1234-1235-15-234-234-1-123-24-15 always australier 16-23456-1235-1-123-24-15-1235 always chevalier 1456-15-1236-1-123-24-15-1235 always richelieu 1235-24-1456-15-123-24-126 always kamelie 13-1-134-15-123-24-15 always sommelier 234-135-134-134-15-123-24-15-1235 always relief 1235-15-123-24-15-124 always atelier 1-2345-15-123-24-15-1235 always hotelier 125-135-2345-15-123-24-15-1235 always dahlie 145-1-125-123-24-15 always immobili 24-134-134-135-12-24-123-24 always lilie 123-24-123-24-15 always milieu 134-24-123-24-126 always famili 124-1-134-24-123-24 always emilie 15-134-24-123-24-15 always leutemilieu 123-126-2345-15-134-24-123-24-126 always petersilie 1234-15-2345-15-1235-234-24-123-24-15 always ottilie 135-2345-2345-24-123-24-15 always gallier 1245-1-123-123-24-15-1235 always montpellier 134-135-1345-2345-1234-15-123-123-24-15-1235 always collier 14-135-123-123-24-15-1235 always kollier 13-135-123-123-24-15-1235 always protokollier 1234-1235-135-2345-135-13-135-123-123-346-1235 always gondolier 1245-135-1345-145-135-123-24-15-1235 always folie 124-135-123-24-15 always moliere 134-135-123-24-15-1235-15 midendword emolier 15-134-135-123-346-1235 always magnolie 134-1-1245-1345-135-123-24-15 always voliere 1236-135-123-24-15-1235-15 always julier 245-136-123-24-15-1235 always juliet 245-136-123-24-15-2345 always apulier 1-1234-136-123-24-15-1235 midendword mien 134-24-15-1345 always miene 134-346-1345-15 always mienerkl 134-24-15-1345-15-1235-13-123 always mesopotami 134-15-234-135-1234-135-2345-1-134-24 always prämie 1234-1235-345-134-24-15 always prämier 1234-1235-345-134-346-1235 always premier 1234-1235-15-134-24-15-1235 always krimieck 13-1235-24-134-24-15-14-13 always mumie 134-136-134-24-15 midendword nien 1345-24-15-1345 # nier always daniel 145-1-1345-24-15-123 always jordanier 245-135-1235-145-1-1345-24-15-1235 always tasmani 2345-1-234-134-1-1345-24 always spaniel 234-1234-1-1345-24-15-123 always spanier 234-1234-1-1345-24-15-1235 always geranie 1245-15-1235-1-1345-24-15 always akranier 1-13-1235-1-1345-24-15-1235 always oranier 135-1235-1-1345-24-15-1235 always turanier 2345-136-1235-1-1345-24-15-1235 always tansanier 2345-1-1345-234-1-1345-24-15-1235 always mauretanier 134-16-1235-15-2345-1-1345-24-15-1235 always kastanie 13-1-23456-1-1345-24-15 syllable ingenieur 24-1345-1245-15-1345-24-126-1235 always armenier 1-1235-134-15-1345-24-15-1235 always slowenier 234-123-135-2456-15-1345-24-15-1235 always xenie 1346-15-1345-24-15 always insignie 24-1345-234-24-1245-1345-24-15 always carabinier 14-1-1235-1-12-24-1345-24-15-1235 always robinie 1235-135-12-24-1345-24-15 always jardinier 245-1-1235-145-24-1345-24-15-1235 always sardinier 234-1-1235-145-24-1345-24-15-1235 always linie 123-24-1345-24-15 always linier 123-24-1345-346-1235 always miniechs 134-24-1345-24-15-1456-234 always minieisen 134-24-1345-24-146-234-15-1345 always pinie 1234-24-1345-24-15 always abessinier 1-12-15-234-234-24-1345-24-15-1235 always grusinier 1245-1235-136-234-24-1345-24-15-1235 always aktinie 1-13-2345-24-1345-24-15 always argentinier 1-1235-1245-15-1345-2345-24-1345-24-15-1235 prfword routinier 1235-135-136-2345-24-1345-24-15-1235 always routiniers 1235-135-136-2345-24-1345-24-15-1235-234 always gloxinie 1245-123-135-1346-24-1345-24-15 always insomnien 24-1345-234-135-134-1345-24-15-1345 always zinnie 1356-24-1345-1345-24-15 always bonbonniere 12-135-1345-12-135-1345-1345-24-15-1235-15 always saisonnier 234-1-24-234-135-1345-1345-24-15-1235 always chansonnier 1456-1-1345-234-135-1345-1345-24-15-1235 always kaledonier 13-1-123-15-145-135-1345-24-15-1235 always makedonier 134-1-13-15-145-135-1345-24-15-1235 always mazedonier 134-1-1356-15-145-135-1345-24-15-1235 always begonie 12-15-1245-135-1345-24-15 always aragonier 1-1235-1-1245-135-1345-24-15-1235 always babylonier 12-1-12-13456-123-135-1345-24-15-1235 always katalonier 13-1-2345-1-123-135-1345-24-15-1235 always slawonier 234-123-1-2456-135-1345-24-15-1235 always dernier 145-15-1235-1345-24-15-1235 always kinderniere 13-24-1345-145-15-1235-1345-346-1235-15 always rinderniere 1235-24-1345-145-15-1235-1345-346-1235-15 always spenderniere 234-1234-15-1345-145-15-1235-1345-346-1235-15 always wanderniere 2456-1-1345-145-15-1235-1345-346-1235-15 prfword hernie 125-15-1235-1345-24-15 always hernien 125-15-1235-1345-24-15-1345 always kalifornier 13-1-123-24-124-135-1235-1345-24-15-1235 always bosnier 12-135-234-1345-24-15-1235 always punier 1234-136-1345-24-15-1235 always harpunier 125-1-1235-1234-136-1345-346-1235 always petunie 1234-15-2345-136-1345-24-15 always bithynier 12-24-2345-125-13456-1345-24-15-1235 # pie word pie 1234-24-15 word pies 1234-24-15-234 always piemont 1234-24-15-134-135-1345-2345 midendword pien 1234-24-15-1345 always pieta 1234-24-15-2345-1 always pietät 1234-24-15-2345-345-2345 always pietismus 1234-24-15-2345-24-234-134-136-234 always pietist 1234-24-15-2345-24-23456 always piezo 1234-24-15-1356-135 # pier always pierre 1234-24-15-1235-1235-15 always kopier 13-135-1234-346-1235 always pierrot 1234-24-15-1235-1235-135-2345 always pietro 1234-24-15-2345-1235-135 always kneipier 13-1345-146-1234-24-15-1235 always olympier 135-123-13456-134-1234-24-15-1235 always äthiopier 345-2345-125-24-135-1234-24-15-1235 always spiell 234-1234-346-123-123 always rupie 1235-136-1234-24-15 always croupier 14-1235-135-136-1234-24-15-1235 sufword arie 1-1235-24-15 always karies 13-1-1235-24-15-234 always araukarie 1-1235-16-13-1-1235-24-15 always opernarie 135-1234-15-1235-1345-1-1235-24-15 always kanari 13-1-1345-1-1235-24 always sopranarie 234-135-1234-1235-1-1345-1-1235-24-15 always soloarie 234-135-123-135-1-1235-24-15 always parietal 1234-1-1235-24-15-2345-1-123 always tenorarie 2345-15-1345-135-1235-1-1235-24-15 always bravourarie 12-1235-1-1236-135-136-1235-1-1235-24-15 always bassarie 12-1-234-234-1-1235-24-15 always altarie 1-123-2345-1-1235-24-15 always balzarie 12-1-123-1356-1-1235-24-15 always gabriel 1245-1-12-1235-24-15-123 always materie 134-1-2345-15-1235-24-15 always arterie 1-1235-2345-15-1235-24-15 always bakterie 12-1-13-2345-15-1235-24-15 always henriette 125-15-1345-1235-24-15-2345-2345-15 always kyrie 13-13456-1235-24-15 # orie always zichorie 1356-24-1456-135-1235-24-15 always glorie 1245-123-135-1235-24-15 always akzessorietät 1-13-1356-15-234-234-135-1235-24-15-2345-345-2345 always historie 125-24-23456-135-1235-24-15 always propriet 1234-1235-135-1234-1235-24-15-2345 midendword rien 1235-24-15-1345 # rier always agrarier 1-1245-1235-1-1235-24-15-1235 sufword arier 1-1235-24-15-1235 sufword ariern 1-1235-24-15-1235-1345 sufword ariers 1-1235-24-15-1235-234 always vegetarier 1236-15-1245-15-2345-1-1235-24-15-1235 always proletarier 1234-1235-135-123-15-2345-1-1235-24-15-1235 always nichtarier 1345-24-1456-2345-1-1235-24-15-1235 always trinitarier 2345-1235-24-1345-24-2345-1-1235-24-15-1235 always unitarier 136-1345-24-2345-1-1235-24-15-1235 always parlamentarier 1234-1-1235-123-1-134-15-1345-2345-1-1235-24-15-1235 always rotarier 1235-135-2345-1-1235-24-15-1235 always variet 1236-1-1235-24-15-2345 always algerier 1-123-1245-15-1235-24-15-1235 always serie 234-15-1235-24-15 always chinoiserie 1456-24-1345-135-24-234-15-1235-346 prfword chinoiserien 1456-24-1345-135-24-234-15-1235-24-15-1345 always onfiserie 135-1345-124-24-234-15-1235-346 endword onfiserien 135-1345-124-24-234-15-1235-24-15-1345 always inserier 24-1345-234-15-1235-346-1235 always komparserie 13-135-134-1234-1-1235-234-15-1235-346 prfword komparserien 13-135-134-1234-1-1235-234-15-1235-24-15-1345 always asserier 1-234-234-15-1235-346-1235 always brasserie 12-1235-1-234-234-15-1235-346 always patisserie 1234-1-2345-24-234-234-15-1235-346 prfword patisserien 1234-1-2345-24-234-234-15-1235-24-15-1345 always tapisserie 2345-1-1234-24-234-234-15-1235-346 prfword tapisserien 2345-1-1234-24-234-234-15-1235-24-15-1345 always karosserie 13-1-1235-135-234-234-15-1235-346 prfword karosserien 13-1-1235-135-234-234-15-1235-24-15-1345 always interieur 24-1345-2345-15-1235-24-126-1235 always grien 1245-1235-346-1345 always sibirier 234-24-12-24-1235-24-15-1235 always theorieneutral 2345-125-15-135-1235-346-1345-126-2345-1235-1-123 always barriere 12-1-1235-1235-24-15-1235-15 always harriet 125-1-1235-1235-24-15-2345 always karriere 13-1-1235-1235-24-15-1235-15 always karrierist 13-1-1235-1235-24-15-1235-24-23456 always perrier 1234-15-1235-1235-24-15-1235 always terrier 2345-15-1235-1235-24-15-1235 always triest 2345-1235-24-15-23456 always industrienation 24-1345-145-136-23456-1235-346-1345-1-2345-24-135-1345 always industrienetz 24-1345-145-136-23456-1235-346-1345-15-2345-1356 # urie always furie 124-136-1235-24-15 always furier 124-136-1235-346-1235 always saurier 234-16-1235-24-15-1235 begmidword thesaurier 2345-125-15-234-16-1235-346-1235 always injurie 24-1345-245-136-1235-24-15 always injurier 24-1345-245-136-1235-346-1235 always dekurie 145-15-13-136-1235-24-15 always kurie 13-136-1235-24-15 always kurier 13-136-1235-346-1235 always courier 14-135-136-1235-24-15-1235 always zenturie 1356-15-1345-2345-136-1235-24-15 always couturier 14-135-136-2345-136-1235-24-15-1235 always illyrier 24-123-123-13456-1235-24-15-1235 always syrier 234-13456-1235-24-15-1235 always sien 234-24-15-1345 # sier always sierra 234-24-15-1235-1235-1 midendword sierraum 234-346-1235-1235-16-134 always dosier 145-135-234-346-1235 always siesta 234-24-15-23456-1 always kaukasier 13-16-13-1-234-24-15-1235 always douglasie 145-135-136-1245-123-1-234-24-15 always austrasier 16-23456-1235-1-234-24-15-1235 always eurasier 126-1235-1-234-24-15-1235 always antasienam 1-1345-2345-1-234-346-1345-1-134 always rhodesier 1235-125-135-145-15-234-24-15-1235 always freesie 124-1235-15-15-234-24-15 always schlesier 156-123-15-234-24-15-1235 always milesier 134-24-123-15-234-24-15-1235 always melanesier 134-15-123-1-1345-15-234-24-15-1235 always indonesier 24-1345-145-135-1345-15-234-24-15-1235 always tunesier 2345-136-1345-15-234-24-15-1235 always polynesier 1234-135-123-13456-1345-15-234-24-15-1235 always fuchsie 124-136-1456-234-24-15 always lavoisier 123-1-1236-135-24-234-24-15-1235 always monsieur 134-135-1345-234-24-126-1235 always monsieur 134-135-1345-234-24-126-1235 always hortensie 125-135-1235-2345-15-1345-234-24-15 always jurassier 245-136-1235-1-234-234-24-15-1235 always messieurs 134-15-234-234-24-126-1235-234 always patissier 1234-1-2345-24-234-234-24-15-1235 always dossier 145-135-234-234-24-15-1235 always dossierung 145-135-234-234-346-1235-136-1345-1245 always indossier 24-1345-145-135-234-234-346-1235 prfword haussier 125-16-234-234-24-15-1235 prfword haussiers 125-16-234-234-24-15-1235-234 always arkebusier 1-1235-13-15-12-136-234-24-15-1235 always corbusier 14-135-1235-12-136-234-24-15-1235 always andalusier 1-1345-145-1-123-136-234-24-15-1235 always malaysier 134-1-123-1-13456-234-24-15-1235 midendword tien 2345-24-15-1345 # tier midendword atien 1-2345-24-15-1345 always chocolatier 1456-135-14-135-123-1-2345-24-15-1235 always privatier 1234-1235-24-1236-1-2345-24-15-1235 always cafetier 14-1-124-15-2345-24-15-1235 always metier 134-15-2345-24-15-1235 always helvetier 125-15-123-1236-15-2345-24-15-1235 always pleitier 1234-123-146-2345-24-15-1235 always aktie 1-13-2345-24-15 always paktier 1234-1-13-2345-346-1235 always traktier 2345-1235-1-13-2345-346-1235 always taktier 2345-1-13-2345-346-1235 always multie 134-136-123-2345-24-15 always antiessen 1-1345-2345-24-15-234-234-15-1345 always antieuropäisch 1-1345-2345-24-126-1235-135-1234-345-24-156 always tantieme 2345-1-1345-2345-24-15-134-15 always cartier 14-1-1235-2345-24-15-1235 always portier 1234-135-1235-2345-24-15-1235 always portieren 1234-135-1235-2345-346-1235 always portierbar 1234-135-1235-2345-346-1235-12-1-1235 prfword portierst 1234-135-1235-2345-346-1235-23456 always portierung 1234-135-1235-2345-346-1235-136-1345-1245 always deportier 145-15-1234-135-1235-2345-346-1235 always apportier 1-1234-1234-135-1235-2345-346-1235 always exportier 15-1346-1234-135-1235-2345-346-1235 always importier 24-134-1234-135-1235-2345-346-1235 always kolportier 13-135-123-1234-135-1235-2345-346-1235 always transportier 2345-1235-1-1345-234-1234-135-1235-2345-346-1235 always stiellappen 23456-346-123-123-1-1234-1234-15-1345 always stiellos 23456-346-123-123-135-234 midendword stien 23456-24-15-1345 always bestie 12-15-23456-24-15 always bestiefel 12-15-23456-346-124-15-123 always bestieg 12-15-23456-346-1245 always bestiehl 12-15-23456-346-125-123 always bestieß 12-15-23456-346-2346 always hostie 125-135-23456-24-15 always bustier 12-136-23456-24-15-1235 always büfettier 12-1256-124-15-2345-2345-24-15-1235 always spaghettiess 234-1234-1-1245-125-15-2345-2345-24-15-234-234 always gautier 1245-16-2345-24-15-1235 always bijoutier 12-24-245-135-136-2345-24-15-1235 # quie always quietismus 12345-136-24-15-2345-24-234-134-136-234 always quietistisch 12345-136-24-15-2345-24-23456-24-156 always requiem 1235-15-12345-136-24-15-134 always reliquie 1235-15-123-24-12345-136-24-15 always kolloquie 13-135-123-123-135-12345-136-24-15 always montesquieu 134-135-1345-2345-15-234-12345-136-24-126 always vielleicht 1236-346-123-123-146-1456-2345 # vier always viet 1236-24-15-2345 always view 1236-24-15-2456 always skandinavi 234-13-1-1345-145-24-1345-1-1236-24 always endivi 15-1345-145-24-1236-24 always bolivi 12-135-123-24-1236-24 always riviera 1235-24-1236-24-15-1235-1 always moldawi 134-135-123-145-1-2456-24 always jugoslawi 245-136-1245-135-234-123-1-2456-24 always galaxien 1245-1-123-1-1346-24-15-1345 always sexier 234-15-1346-24-15-1235 always sexiest 234-15-1346-24-15-23456 always paradoxien 1234-1-1235-1-145-135-1346-24-15-1345 always harpyie 125-1-1235-1234-13456-24-15 always zielland 1356-346-123-123-1-1345-145 always ziellini 1356-346-123-123-24-1345-24 always zielloch 1356-346-123-123-135-1456 always ziellos 1356-346-123-123-135-234 # zie midendword zien 1356-24-15-1345 always akazie 1-13-1-1356-24-15 always grazie 1245-1235-1-1356-24-15 always pistazie 1234-24-23456-1-1356-24-15 always allochezie 1-123-123-135-1456-15-1356-24-15 always spezies 234-1234-15-1356-24-15-234 always alopezie 1-123-135-1234-15-1356-24-15 prfword finanzier 124-24-1345-1-1345-1356-24-15-1235 prfword finanziers 124-24-1345-1-1345-1356-24-15-1235-234 always phönizier 1234-125-246-1345-24-1356-24-15-1235 always patrizier 1234-1-2345-1235-24-1356-24-15-1235 always antikoagulanzie 1-1345-2345-24-13-135-1-1245-136-123-1-1345-1356-24-15 always alkylanzie 1-123-13-13456-123-1-1345-1356-24-15 always soziet 234-135-1356-24-15-2345 # SCH always sch 156 always auscheck 16-234-1456-15-14-13 always auscheckig 16-156-15-14-13-24-1245 always bisschen 12-24-234-234-1456-15-1345 always bläschen 12-123-345-234-1456-15-1345 always blüschen 12-123-1256-234-1456-15-1345 always brieschen 12-1235-346-234-1456-15-1345 always döschen 145-246-234-1456-15-1345 always eschatolog 15-234-1456-1-2345-135-123-135-1245 always fässchen 124-345-234-234-1456-15-1345 always flüsschen 124-123-1256-234-234-1456-15-1345 always gänschen 1245-345-1345-234-1456-15-1345 always gässchen 1245-345-234-234-1456-15-1345 always gläschen 1245-123-345-234-1456-15-1345 always häschen 125-345-234-1456-15-1345 always hälschen 125-345-123-234-1456-15-1345 always hänschen 125-345-1345-234-1456-15-1345 always häuschen 125-34-234-1456-15-1345 always heitscheck 125-146-2345-234-1456-15-14-13 always höschen 125-246-234-1456-15-1345 always hülschen 125-1256-123-234-1456-15-1345 always ischämie 24-234-1456-345-134-346 always ischämien 24-234-1456-345-134-24-15-1345 always ischia 24-234-1456-24-1 always kabäuschen 13-1-12-34-234-1456-15-1345 always käschen 13-345-234-1456-15-1345 always klösschen 13-123-246-234-234-1456-15-1345 always küsschen 13-1256-234-234-1456-15-1345 always läuschen 123-34-234-1456-15-1345 always lieblingschat 123-346-12-123-24-1345-1245-234-1456-1-2345 always lieschen 123-346-234-1456-15-1345 always maischip 134-1-24-234-1456-24-1234 always mäuschen 134-34-234-1456-15-1345 always möpschen 134-246-1234-234-1456-15-1345 always maraschino 134-1-1235-1-234-1456-24-1345-135 always mischief 134-24-234-1456-346-124 always näschen 1345-345-234-1456-15-1345 always nüsschen 1345-1256-234-234-1456-15-1345 always engelschor 15-1345-1245-15-123-234-1456-135-1235 always engelschör 15-1345-1245-15-123-234-1456-246-1235 midendword enschor 15-1345-234-1456-135-1235 midendword enschör 15-1345-234-1456-246-1235 midendword ngschor 1345-1245-234-1456-135-1235 midendword ngschör 1345-1245-234-1456-246-1235 always prischen 1234-1235-24-234-1456-15-1345 always radieschen 1235-1-145-346-234-1456-15-1345 always reischen 1235-146-234-1456-15-1345 always kreischen 13-1235-146-156-15-1345 always röschen 1235-246-234-1456-15-1345 always fröschen 124-1235-246-156-15-1345 midendword schance 234-1456-1-1345-14-15 midendword schao 234-1456-1-135 midendword scharakter 234-1456-1-1235-1-13-2345-15-1235 midendword schef 234-1456-15-124 always scheffel 156-15-124-124-15-123 always scheffle 156-15-124-124-123-15 always wäsche 2456-345-156-15 always tusche 2345-136-156-15 always retuscheur 1235-15-2345-136-156-126-1235 midendword schemie 234-1456-15-134-346 midendword schemiker 234-1456-15-134-24-13-15-1235 midendword schemikalie 234-1456-15-134-24-13-1-123-24-15 always scherzo 234-1456-15-1235-1356-135 always scherzando 234-1456-15-1235-1356-1-1345-145-135 always schlösschen 156-123-246-234-234-1456-15-1345 midendword schirurg 234-1456-24-1235-136-1235-1245 always schnäpschen 156-1345-345-1234-234-1456-15-1345 always school 234-1456-135-135-123 midendword schromat 234-1456-1235-135-134-1-2345 midendword schromo 234-1456-1235-135-134-135 midendword schronik 234-1456-1235-135-1345-24-13 midendword schüechli 234-1456-1256-15-1456-123-24 midendword üchschen 1256-1456-234-1456-15-1345 always tässchen 2345-345-234-234-1456-15-1345 always väschen 1236-345-234-1456-15-1345 always wieschen 2456-346-234-1456-15-1345 # ST always st 23456 syllable abgas 1-12-1245-1-234 always abschiedstrunk 1-12-156-346-145-234-2345-1235-136-1345-13 always abschlussteil 1-12-156-123-136-234-234-2345-146-123 always abseitstor 1-12-234-146-2345-234-2345-135-1235 always adressteil 1-145-1235-15-234-234-2345-146-123 always aesthet 1-15-234-2345-125-15-2345 always aidstest 1-24-145-234-2345-15-23456 always aktionstrupp 1-13-2345-24-135-1345-234-2345-1235-136-1234-1234 syllable alltags 1-123-123-2345-1-1245-234 always amtston 1-134-2345-234-2345-135-1345 always anfangsteil 1-1345-124-1-1345-1245-234-2345-146-123 always angsträum 1-1345-1245-23456-1235-34-134 always anschlussteil 1-1345-156-123-136-234-234-2345-146-123 always anschriftsteil 1-1345-156-1235-24-124-2345-234-2345-146-123 always anästh 1-1345-345-234-2345-125 begmidword arbeitst 1-1235-12-146-2345-234-2345 word asst 1-234-234-2345 always gasstrom 1245-1-234-23456-1235-135-134 always augiasstall 16-1245-24-1-234-23456-1-123-123 always ästhesie 345-234-2345-125-15-234-346 always ästhet 345-234-2345-125-15-2345 always asthma 1-234-2345-125-134-1 always asthmo 1-234-2345-125-134-135 always ausdruckstanz 16-234-145-1235-136-14-13-234-2345-1-1345-1356 always ausgleichstor 16-234-1245-123-146-1456-234-2345-135-1235 always aussichtsturm 16-234-234-24-1456-2345-234-2345-136-1235-134 always austast 16-234-2345-1-23456 always austeil 16-234-2345-146-123 always austobe 16-234-2345-135-12-15 always austobst 16-234-2345-135-12-23456 always austobt 16-234-2345-135-12-2345 always austollen 16-234-2345-135-123-123-15-1345 always abbaustollen 1-12-12-16-23456-135-123-123-15-1345 always austonn 16-234-2345-135-1345-1345 always austrampel 16-234-2345-1235-1-134-1234-15-123 always austrample 16-234-2345-1235-1-134-1234-123-15 always austrat 16-234-2345-1235-1-2345 always austrick 16-234-2345-1235-24-14-13 always austritt 16-234-2345-1235-24-2345-2345 always austrock 16-234-2345-1235-135-14-13 always austun 16-234-2345-136-1345 always austupf 16-234-2345-136-1234-124 always austusch 16-234-2345-136-156 always auswärtstor 16-234-2456-345-1235-2345-234-2345-135-1235 always basst 12-1-234-234-2345 syllable befehls 12-15-124-15-125-123-234 always befehlsteil 12-15-124-15-125-123-234-2345-146-123 always befleisst 12-15-124-123-146-234-234-2345 always begrüßungstrunk 12-15-1245-1235-1256-2346-136-1345-1245-234-2345-1235-136-1345-13 always beisst 12-146-234-234-2345 always besasst 12-15-234-1-234-234-2345 always betriebsteil 12-15-2345-1235-346-12-234-2345-146-123 always betriebstreu 12-15-2345-1235-346-12-234-2345-1235-126 always beweisteil 12-15-2456-146-234-2345-146-123 always bezirkstier 12-15-1356-24-1235-13-234-2345-346-1235 midendword blasst 12-123-1-234-234-2345 always blutstrunk 12-123-136-2345-234-2345-1235-136-1345-13 always blösst 12-123-246-234-234-2345 always brandungstor 12-1235-1-1345-145-136-1345-1245-234-2345-135-1235 always bundestrupp 12-136-1345-145-15-234-2345-1235-136-1234-1234 always bündnistreu 12-1256-1345-145-1345-24-234-2345-1235-126 always büsst 12-1256-234-234-2345 always dasasst 145-1-234-1-234-234-2345 always distorsion 145-24-234-2345-135-1235-234-24-135-1345 always durchbruchstal 145-136-1235-1456-12-1235-136-1456-234-2345-1-123 always dystonie 145-13456-234-2345-135-1345-346 always einbruchstal 146-1345-12-1235-136-1456-234-2345-1-123 always einesteils 146-1345-15-234-2345-146-123-234 always eingangstor 146-1345-1245-1-1345-1245-234-2345-135-1235 always eistanz 146-234-2345-1-1345-1356 always eistorte 146-234-2345-135-1235-2345-15 always eistört 146-234-2345-246-1235-2345 always elvistoll 15-123-1236-24-234-2345-135-123-123 always empfangsteil 15-134-1234-124-1-1345-1245-234-2345-146-123 always esther 15-234-2345-125-15-1235 always pestherd 1234-15-23456-125-15-1235-145 always fallstor 124-1-123-123-234-2345-135-1235 syllable fasst 124-1-234-234-2345 always flusstal 124-123-136-234-234-2345-1-123 always flösst 124-123-246-234-234-2345 always flüchtlingstreck 124-123-1256-1456-2345-123-24-1345-1245-234-2345-1235-15-14-13 always formationstanz 124-135-1235-134-1-2345-24-135-1345-234-2345-1-1345-1356 always frasst 124-1235-1-234-234-2345 always friedenstaube 124-1235-346-145-15-1345-234-2345-16-12-15 always friedenstrupp 124-1235-346-145-15-1345-234-2345-1235-136-1234-1234 always frästisch 124-1235-345-234-2345-24-156 always frühstücksteller 124-1235-1256-125-23456-1256-14-13-234-2345-15-123-123-15-1235 always frühstückstisch 124-1235-1256-125-23456-1256-14-13-234-2345-24-156 always fusst 124-136-234-234-2345 always führungstor 124-1256-125-1235-136-1345-1245-234-2345-135-1235 always führungstrupp 124-1256-125-1235-136-1345-1245-234-2345-1235-136-1234-1234 always gangsteil 1245-1-1345-1245-234-2345-146-123 always gangston 1245-1-1345-1245-234-2345-135-1345 always gastank 1245-1-234-2345-1-1345-13 always gasturm 1245-1-234-2345-136-1235-134 always gebietsteil 1245-15-12-346-2345-234-2345-146-123 always gebirgstrupp 1245-15-12-24-1235-1245-234-2345-1235-136-1234-1234 always geburtstaub 1245-15-12-136-1235-2345-234-2345-16-12 always gefechtsturm 1245-15-124-15-1456-2345-234-2345-136-1235-134 syllable geheimnis 1245-15-125-146-134-1345-24-234 always geschlechtsteil 1245-15-156-123-15-1456-2345-234-2345-146-123 always geschäftsteil 1245-15-156-345-124-2345-234-2345-146-123 always gesellschaftstanz 1245-15-234-15-123-123-156-1-124-2345-234-2345-1-1345-1356 always gesetzestreu 1245-15-234-15-2345-1356-15-234-2345-1235-126 syllable gesichts 1245-15-234-24-1456-2345-234 always gespasst 1245-15-234-1234-1-234-234-2345 always gesprächsteil 1245-15-234-1234-1235-345-1456-234-2345-146-123 always gesüsst 1245-15-234-1256-234-234-2345 always gewohnheitstier 1245-15-2456-135-125-1345-125-146-2345-234-2345-346-1235 always glasteil 1245-123-1-234-2345-146-123 always glastisch 1245-123-1-234-2345-24-156 always glasturm 1245-123-1-234-2345-136-1235-134 always glückstor 1245-123-1256-14-13-234-2345-135-1235 always gottestreu 1245-135-2345-2345-15-234-2345-1235-126 always grosst 1245-1235-135-234-234-2345 always grösst 1245-1235-246-234-234-2345 always grüsst 1245-1235-1256-234-234-2345 always gussteil 1245-136-234-234-2345-146-123 always hadrianstor 125-1-145-1235-24-1-1345-234-2345-135-1235 always handelsteil 125-1-1345-145-15-123-234-2345-146-123 syllable hasst 125-1-234-234-2345 always haustaube 125-16-234-2345-16-12-15 always haustempel 125-16-234-2345-15-134-1234-15-123 always haustier 125-16-234-2345-346-1235 always haustor 125-16-234-2345-135-1235 always haustrunk 125-16-234-2345-1235-136-1345-13 always hausturm 125-16-234-2345-136-1235-134 always heeresteil 125-15-15-1235-15-234-2345-146-123 always heisst 125-146-234-234-2345 always heitstick 125-146-2345-234-2345-24-14-13 midendword heitstrunk 125-146-2345-234-2345-1235-136-1345-13 always hephaistostempel 125-15-1234-125-1-24-23456-135-234-2345-15-134-1234-15-123 always hilfstaucher 125-24-123-124-234-2345-16-1456-15-1235 always hilfstrupp 125-24-123-124-234-2345-1235-136-1234-1234 always himmelstanz 125-24-134-134-15-123-234-2345-1-1345-1356 always himmelstempel 125-24-134-134-15-123-234-2345-15-134-1234-15-123 always himmelstor 125-24-134-134-15-123-234-2345-135-1235 always hisst 125-24-234-234-2345 always hofstor 125-135-124-234-2345-135-1235 always hundsteuer 125-136-1345-145-234-2345-126-15-1235 always iesst 346-234-234-2345 always vliesst 1236-123-346-234-23456 always invasionstrupp 24-1345-1236-1-234-24-135-1345-234-2345-1235-136-1234-1234 always ionsteil 24-135-1345-234-2345-146-123 always ionstisch 24-135-1345-234-2345-24-156 midendword ionstreu 24-135-1345-234-2345-1235-126 always irrsinnstat 24-1235-1235-234-24-1345-1345-234-2345-1-2345 word isst 24-234-234-2345 begmidword isthm 24-234-2345-125-134 midendword itätstreu 24-2345-345-2345-234-2345-1235-126 always juliusturm 245-136-123-24-136-234-2345-136-1235-134 always kabinettstisch 13-1-12-24-1345-15-2345-2345-234-2345-24-156 always kaffeehaustisch 13-1-124-124-15-15-125-16-234-2345-24-156 always kapitänstisch 13-1-1234-24-2345-345-1345-234-2345-24-156 always karnevalstrubel 13-1-1235-1345-15-1236-1-123-234-2345-1235-136-12-15-123 midendword kaufstresen 13-16-124-234-2345-1235-15-234-15-1345 midendword kaufstrick 13-16-124-234-2345-1235-24-14-13 midendword kaufstrip 13-16-124-234-2345-1235-24-1234 always keitsteil 13-146-2345-234-2345-146-123 midendword keitstreu 13-146-2345-234-2345-1235-126 always kindstaufe 13-24-1345-145-234-2345-16-124-15 always kindstäuf 13-24-1345-145-234-2345-34-124 always kirmestanz 13-24-1235-134-15-234-2345-1-1345-1356 always kondenstopf 13-135-1345-145-15-1345-234-2345-135-1234-124 always konfuziustempel 13-135-1345-124-136-1356-24-136-234-2345-15-134-1234-15-123 always kongressteil 13-135-1345-1245-1235-15-234-234-2345-146-123 always krebstier 13-1235-15-12-234-2345-346-1235 always kreisteil 13-1235-146-234-2345-146-123 always kriegstalk 13-1235-346-1245-234-2345-1-123-13 always kriegstanz 13-1235-346-1245-234-2345-1-1345-1356 always kriegsteil 13-1235-346-1245-234-2345-146-123 always kriegsto 13-1235-346-1245-234-2345-135 midendword kunftstrick 13-136-1345-124-2345-234-2345-1235-24-14-13 always kursteil 13-136-1235-234-2345-146-123 always kursusteil 13-136-1235-234-136-234-2345-146-123 always königstiger 13-246-1345-24-1245-234-2345-24-1245-15-1235 always königstreu 13-246-1345-24-1245-234-2345-1235-126 always küsst 13-1256-234-234-2345 always landesteil 123-1-1345-145-15-234-2345-146-123 syllable lasst 123-1-234-234-2345 syllable glasst 1245-123-1-234-23456 always legionstrupp 123-15-1245-24-135-1345-234-2345-1235-136-1234-1234 always liebestat 123-346-12-15-234-2345-1-2345 always liebestoll 123-346-12-15-234-2345-135-123-123 always liebestrunk 123-346-12-15-234-2345-1235-136-1345-13 always lieblingst 123-346-12-123-24-1345-1245-234-2345 always lostrab 123-135-234-2345-1235-1-12 always längstal 123-345-1345-1245-234-2345-1-123 always machtsteil 134-1-1456-2345-234-2345-146-123 begmidword maisst 134-1-24-234-23456 always mannstoll 134-1-1345-1345-234-2345-135-123-123 always masst 134-1-234-234-2345 always thomasst 2345-125-135-134-1-234-23456 always meerestier 134-15-15-1235-15-234-2345-346-1235 always mittagstrunk 134-24-2345-2345-1-1245-234-2345-1235-136-1345-13 always moostier 134-135-135-234-2345-346-1235 always mordsteuer 134-135-1235-145-234-2345-126-15-1235 always mordsteure 134-135-1235-145-234-2345-126-1235-15 always moschustier 134-135-156-136-234-2345-346-1235 always musst 134-136-234-234-2345 always mönchstum 134-246-1345-1456-234-2345-136-134 always mündungstrichter 134-1256-1345-145-136-1345-1245-234-2345-1235-24-1456-2345-15-1235 always müsst 134-1256-234-234-2345 always namensteil 1345-1-134-15-1345-234-2345-146-123 midendword ngstresen 1345-1245-234-2345-1235-15-234-15-1345 always nichtstuer 1345-24-1456-2345-234-2345-136-15-1235 always nichtstun 1345-24-1456-2345-234-2345-136-1345 always ortsteil 135-1235-2345-234-2345-146-123 syllable passt 1234-1-234-234-2345 syllable prasst 1234-1235-1-234-234-2345 word psssst 1234-234-234-234-234-2345 word pssst 1234-234-234-234-2345 word psst 1234-234-234-2345 word pst 1234-234-2345 always ratstisch 1235-1-2345-234-2345-24-156 always reichsteil 1235-146-1456-234-2345-146-123 always reichstrupp 1235-146-1456-234-2345-1235-136-1234-1234 always reisst 1235-146-234-234-2345 always reisstroh 1235-146-234-23456-1235-135-125 begmidword kreisst 13-1235-146-234-23456 always preisst 1234-1235-146-234-23456 always reisteig 1235-146-234-2345-146-1245 always reistopf 1235-146-234-2345-135-1234-124 always revolutionstrupp 1235-15-1236-135-123-136-2345-24-135-1345-234-2345-1235-136-1234-1234 always rezitationston 1235-15-1356-24-2345-1-2345-24-135-1345-234-2345-135-1345 syllable rhythmus 1235-125-13456-2345-125-134-136-234 always ruhmestat 1235-136-125-134-15-234-2345-1-2345 always sanitätstrupp 234-1-1345-24-2345-345-2345-234-2345-1235-136-1234-1234 always sasst 234-1-234-234-2345 always schaftsteil 156-1-124-2345-234-2345-146-123 midendword schaftstreu 156-1-124-2345-234-2345-1235-126 syllable schasst 156-1-234-234-2345 always scheisst 156-146-234-234-2345 always schiffstaufe 156-24-124-124-234-2345-16-124-15 always schiffstonnage 156-24-124-124-234-2345-135-1345-1345-1-1245-15 always schiffstäuf 156-24-124-124-234-2345-34-124 always schleisst 156-123-146-234-234-2345 always schleisst 156-123-146-234-234-2345 always schlussteil 156-123-136-234-234-2345-146-123 always schmeisst 156-134-146-234-234-2345 always schosstier 156-135-234-234-2345-346-1235 always schreckenstat 156-1235-15-14-13-15-1345-234-2345-1-2345 always sechsteil 234-15-1456-234-2345-146-123 always sicherheitstrupp 234-24-1456-15-1235-125-146-2345-234-2345-1235-136-1234-1234 always siegestrunk 234-346-1245-15-234-2345-1235-136-1345-13 always spannungston 234-1234-1-1345-1345-136-1345-1245-234-2345-135-1345 always spasst 234-1234-1-234-234-2345 always spleisst 234-1234-123-146-234-234-2345 always asst 1-234-234-2345 begmidword grasst 1245-1235-1-234-23456 always ässt 345-234-234-2345 always lässt 123-345-234-234-2345 always nässt 1345-345-234-234-2345 always esst 15-234-234-2345 begmidword grabesst 1245-1235-1-12-15-234-23456 begmidword liebesst 123-346-12-15-234-23456 begmidword todesst 2345-135-145-15-234-23456 begmidword siegesst 234-346-1245-15-234-23456 begmidword leibesst 123-146-12-15-234-23456 begmidword eidesst 146-145-15-234-23456 begmidword landesst 123-1-1345-145-15-234-23456 begmidword kindesst 13-24-1345-145-15-234-23456 begmidword bundesst 12-136-1345-145-15-234-23456 begmidword tagesst 2345-1-1245-15-234-23456 begmidword mannesst 134-1-1345-1345-15-234-23456 begmidword sinnesst 234-24-1345-1345-15-234-23456 begmidword heeresst 125-15-15-1235-15-234-23456 begmidword meeresst 134-15-15-1235-15-234-23456 midword stesst 23456-15-234-23456 begmidword gottesst 1245-135-2345-2345-15-234-23456 always isst 24-234-234-2345 midword nisst 1345-24-234-23456 always relais 1235-15-123-1-24-234 always basis 12-1-234-24-234 always basisch 12-1-234-24-156 always praxis 1234-1235-1-1346-24-234 always osst 135-234-234-2345 begmidword losst 123-135-234-23456 always schloss 156-123-135-234-234 always usst 136-234-234-2345 begmidword busst 12-136-234-23456 begmidword tonusst 2345-135-1345-136-234-23456 always luxus 123-136-1346-136-234 midendword ssst 234-234-23456 always sstell 234-23456-15-123-123 word st 234-2345 always st 23456 word sta 234-2345-1 midendword stabelle 234-2345-1-12-15-123-123-15 midendword stablett 234-2345-1-12-123-15-2345-2345 midendword stabu 234-2345-1-12-136 midendword stafel 234-2345-1-124-15-123 midendword stag 234-2345-1-1245 midendword stagstisch 234-2345-1-1245-234-2345-24-156 always adjustage 1-145-245-136-23456-1-1245-15 always backstage 12-1-14-13-23456-1-1245-15 always fockstag 124-135-14-13-23456-1-1245 always gestagen 1245-15-23456-1-1245-15-1345 always dienstagent 145-346-1345-23456-1-1245-15-1345-2345 always kastagnet 13-1-23456-1-1245-1345-15-2345 always nystagmus 1345-13456-23456-1-1245-134-136-234 always ostagent 135-23456-1-1245-15-1345-2345 always pastagericht 1234-1-23456-1-1245-15-1235-24-1456-2345 always pastagrinsen 1234-1-23456-1-1245-1235-24-1345-234-15-1345 always stagnation 23456-1-1245-1345-1-2345-24-135-1345 always stagnier 23456-1-1245-1345-346-1235 always stagsegel 23456-1-1245-234-15-1245-15-123 midendword stakt 234-2345-1-13-2345 always herbstakt 125-15-1235-12-23456-1-13-2345 always gestakt 1245-15-23456-1-13-2345 always festakt 124-15-23456-1-13-2345 always testakt 2345-15-23456-1-13-2345 midendword stalar 234-2345-1-123-1-1235 midendword stalent 234-2345-1-123-15-1345-2345 midendword staler 234-2345-1-123-15-1235 midendword stalg 234-2345-1-123-1245 always nostalg 1345-135-23456-1-123-1245 always standstanz 23456-1-1345-145-234-2345-1-1345-1356 midendword stangente 234-2345-1-1345-1245-15-1345-2345-15 midendword stanne 234-2345-1-1345-1345-15 midendword stapezier 234-2345-1-1234-15-1356-346-1235 midendword starier 234-2345-1-1235-346-1235 midendword starif 234-2345-1-1235-24-124 midendword stasche 234-2345-1-156-15 midendword stasse 234-2345-1-234-234-15 begmidword forstasse 124-135-1235-23456-1-234-234-15 midendword staste 234-2345-1-23456-15 midendword statbestand 234-2345-1-2345-12-15-23456-1-1345-145 midendword statbeständ 234-2345-1-2345-12-15-23456-345-1345-145 midendword stätig 234-2345-345-2345-24-1245 always bestätig 12-15-23456-345-2345-24-1245 midendword stauglich 234-2345-16-1245-123-24-1456 midendword staumel 234-2345-16-134-15-123 midendword stausch 234-2345-16-156 midendword stausend 234-2345-16-234-15-1345-145 midendword staxe 234-2345-1-1346-15 word ste 234-2345-15 midendword steam 234-2345-15-1-134 begword steam 23456-15-1-134 always steamen 23456-15-1-134-15-1345 always steamer 23456-15-1-134-15-1235 always steamt 23456-15-1-134-2345 midendword stechnik 234-2345-15-1456-1345-24-13 midendword stechnisch 234-2345-15-1456-1345-24-156 midendword stechnolog 234-2345-15-1456-1345-135-123-135-1245 endword stechnologien 234-2345-15-1456-1345-135-123-135-1245-24-15-1345 midendword stee 234-2345-15-15 always gästeelf 1245-345-23456-15-15-123-124 always steelband 23456-15-15-123-12-1-1345-145 always westempore 2456-15-23456-15-134-1234-135-1235-15 always gersteein 1245-15-1235-23456-15-146-1345 always trustee 2345-1235-136-23456-15-15 midendword steich 234-2345-146-1456 midendword steils 234-2345-146-123-234 always steilst 23456-146-123-23456 midendword steilzeit 234-2345-146-123-1356-146-2345 midendword stelefon 234-2345-15-123-15-124-135-1345 midendword stelegraf 234-2345-15-123-15-1245-1235-1-124 midendword stelegramm 234-2345-15-123-15-1245-1235-1-134-134 midendword stemperatur 234-2345-15-134-1234-15-1235-1-2345-136-1235 midendword stempo 234-2345-15-134-1234-135 midendword stendenz 234-2345-15-1345-145-15-1345-1356 midendword stensor 234-2345-15-1345-234-135-1235 midendword steppich 234-2345-15-1234-1234-24-1456 midendword sterm 234-2345-15-1235-134 begmidword lästerm 123-345-23456-15-1235-134 always pflaster 1234-124-123-1-23456-15-1235 always mastermind 134-1-23456-15-1235-134-24-1345-145 always raster 1235-1-23456-15-1235 always selbst 234-15-123-12-23456 always orchester 135-1235-1456-15-23456-15-1235 always schwester 156-2456-15-23456-15-1235 always gangster 1245-1-1345-1245-23456-15-1235 always meister 134-146-23456-15-1235 always minister 134-24-1345-24-23456-15-1235 always ministerien 134-24-1345-24-23456-15-1235-24-15-1345 always geschwister 1245-15-156-2456-24-23456-15-1235 always polster 1234-135-123-23456-15-1235 always fenster 124-15-1345-23456-15-1235 begmidword osterm 135-23456-15-1235-134 always klostermuseum 13-123-135-23456-15-1235-134-136-234-15-136-134 always schuster 156-136-23456-15-1235 always muster 134-136-23456-15-1235 midendword sterrass 234-2345-15-1235-1235-1-234-234 midendword sterrine 234-2345-15-1235-1235-24-1345-15 midendword sterritori 234-2345-15-1235-1235-24-2345-135-1235-24 midendword stest 234-2345-15-23456 always leastest 123-15-1-23456-15-23456 always fastest 124-1-23456-15-23456 always vergastest 1236-15-1235-1245-1-23456-15-23456 always hastest 125-1-23456-15-23456 always lastest 123-1-23456-15-23456 always mästest 134-345-23456-15-23456 always toastest 2345-135-1-23456-15-23456 always rastest 1235-1-23456-15-23456 always tastest 2345-1-23456-15-23456 always schubstest 156-136-12-23456-15-23456 always festest 124-15-23456-15-23456 always pestest 1234-15-23456-15-23456 always niestest 1345-346-23456-15-23456 always testest 2345-15-23456-15-23456 always westest 2456-15-23456-15-23456 always waistest 2456-1-24-23456-15-23456 always eistest 146-23456-15-23456 always listest 123-24-23456-15-23456 always mistest 134-24-23456-15-23456 word nistest 1345-24-23456-15-23456 always einnistest 146-1345-1345-24-23456-15-23456 always fristest 124-1235-24-23456-15-23456 always tristest 2345-1235-24-23456-15-23456 always reistest 1235-146-23456-15-23456 always speistest 234-1234-146-23456-15-23456 always halstest 125-1-123-23456-15-23456 always bremstest 12-1235-15-134-23456-15-23456 always heimstest 125-146-134-23456-15-23456 always bumstest 12-136-134-23456-15-23456 always grinstest 1245-1235-24-1345-23456-15-23456 always zinstest 1356-24-1345-23456-15-23456 always ernstest 15-1235-1345-23456-15-23456 always dunstest 145-136-1345-23456-15-23456 always kostest 13-135-23456-15-23456 always lostest 123-135-23456-15-23456 always mostest 134-135-23456-15-23456 always postest 1234-135-23456-15-23456 always rostest 1235-135-23456-15-23456 midendword östest 246-23456-15-23456 always wüstest 2456-1256-23456-15-23456 always tapstest 2345-1-1234-23456-15-23456 always knipstest 13-1345-24-1234-23456-15-23456 always beschwipstest 12-15-156-2456-24-1234-23456-15-23456 always rülpstest 1235-1256-123-1234-23456-15-23456 always hopstest 125-135-1234-23456-15-23456 always stupstest 23456-136-1234-23456-15-23456 always berstest 12-15-1235-23456-15-23456 always forstest 124-135-1235-23456-15-23456 always bürstest 12-1256-1235-23456-15-23456 always durstest 145-136-1235-23456-15-23456 always dürstest 145-1256-1235-23456-15-23456 always wurstest 2456-136-1235-23456-15-23456 always haustest 125-16-23456-15-23456 always laustest 123-16-23456-15-23456 always maustest 134-16-23456-15-23456 always paustest 1234-16-23456-15-23456 always raustest 1235-16-23456-15-23456 always saustest 234-16-23456-15-23456 always robustest 1235-135-12-136-23456-15-23456 always schleustest 156-123-126-23456-15-23456 always hustest 125-136-23456-15-23456 always schmustest 156-134-136-23456-15-23456 always pustest 1234-136-23456-15-23456 always krustest 13-1235-136-23456-15-23456 always rüstest 1235-1256-23456-15-23456 always wüstest 2456-1256-23456-15-23456 # ... macht zu viele Fehler ... #midendword steuerung 234-2345-126-15-1235-136-1345-1245 #always grundsteuerung 1245-1235-136-1345-145-23456-126-15-1235-136-1345-1245 #always besteuerung 12-15-23456-126-15-1235-136-1345-1245 #always legesteuerung 123-15-1245-15-23456-126-15-1235-136-1345-1245 #always logsteuerung 123-135-1245-23456-126-15-1235-136-1345-1245 #always knopfsteuerung 13-1345-135-1234-124-23456-126-15-1235-136-1345-1245 #always laufsteuerung 123-16-124-23456-126-15-1235-136-1345-1245 #always zeugsteuerung 1356-126-1245-23456-126-15-1235-136-1345-1245 #always gabensteuerung 1245-1-12-15-1345-23456-126-15-1235-136-1345-1245 #always lagensteuerung 123-1-1245-15-1345-23456-126-15-1235-136-1345-1245 #always globalsteuerung 1245-123-135-12-1-123-23456-126-15-1235-136-1345-1245 #always digitalsteuerung 145-24-1245-24-2345-1-123-23456-126-15-1235-136-1345-1245 #always nadelsteuerung 1345-1-145-15-123-23456-126-15-1235-136-1345-1245 #always ampelsteuerung 1-134-1234-15-123-23456-126-15-1235-136-1345-1245 #always doppelsteuerung 145-135-1234-1234-15-123-23456-126-15-1235-136-1345-1245 #always einzelsteuerung 146-1345-1356-15-123-23456-126-15-1235-136-1345-1245 #always fehlsteuerung 124-15-125-123-23456-126-15-1235-136-1345-1245 #always ansteuerung 1-1345-23456-126-15-1235-136-1345-1245 #midendword itätensteuerung 24-2345-345-2345-15-1345-23456-126-15-1235-136-1345-1245 #always einsteuerung 146-1345-23456-126-15-1235-136-1345-1245 #always fernsteuerung 124-15-1235-1345-23456-126-15-1235-136-1345-1245 #always autosteuerung 16-2345-135-23456-126-15-1235-136-1345-1245 #always legersteuerung 123-15-1245-15-1235-23456-126-15-1235-136-1345-1245 #always baggersteuerung 12-1-1245-1245-15-1235-23456-126-15-1235-136-1345-1245 #always betoniersteuerung 12-15-2345-135-1345-346-1235-23456-126-15-1235-136-1345-1245 #always computersteuerung 14-135-134-1234-136-2345-15-1235-23456-126-15-1235-136-1345-1245 #always cursorsteuerung 14-136-1235-234-135-1235-23456-126-15-1235-136-1345-1245 #midendword ssteuerung 234-23456-126-15-1235-136-1345-1245 #always tragsst 2345-1235-1-1245-234-23456 #always tragsstudie 2345-1235-1-1245-234-23456-136-145-24-15 #always aussteuerung 16-234-23456-126-15-1235-136-1345-1245 #always bitsteuerung 12-24-2345-23456-126-15-1235-136-1345-1245 #always bausteuerung 12-16-23456-126-15-1235-136-1345-1245 midendword steufel 234-2345-126-124-15-123 midendword stext 234-2345-15-1346-2345 always mannsthal 134-1-1345-1345-234-2345-125-1-123 midendword stheat 234-2345-125-15-1-2345 midendword sthema 234-2345-125-15-134-1 midendword sthemen 234-2345-125-15-134-15-1345 midword stheni 234-2345-125-15-1345-24 endword sthenie 234-2345-125-15-1345-346 midword stheno 234-2345-125-15-1345-135 midendword stheo 234-2345-125-15-135 midendword stherap 234-2345-125-15-1235-1-1234 endword stherapien 234-2345-125-15-1235-1-1234-24-15-1345 midendword stherm 234-2345-125-15-1235-134 midendword sthese 234-2345-125-15-234-15 midendword sthron 234-2345-125-1235-135-1345 midendword sticket 234-2345-24-14-13-15-2345 midendword stief 234-2345-346-124 always stief 23456-346-124 always stiefel 23456-346-124-15-123 always eucharistiefeier 126-1456-1-1235-24-23456-346-124-146-15-1235 always stiefbruder 23456-346-124-12-1235-136-145-15-1235 always stiefbrüder 23456-346-124-12-1235-1256-145-15-1235 always stiefgeschwister 23456-346-124-1245-15-156-2456-24-23456-15-1235 always stiefkind 23456-346-124-13-24-1345-145 always stiefmutter 23456-346-124-134-136-2345-2345-15-1235 always stiefmütter 23456-346-124-134-1256-2345-2345-15-1235 always stiefschwester 23456-346-124-156-2456-15-23456-15-1235 always stiefsohn 23456-346-124-234-135-125-1345 always stiefsöhne 23456-346-124-234-246-125-1345-15 always stieftochter 23456-346-124-2345-135-1456-2345-15-1235 always stieftöchter 23456-346-124-2345-246-1456-2345-15-1235 always stiefvater 23456-346-124-1236-1-2345-15-1235 always stiefväter 23456-346-124-1236-345-2345-15-1235 midendword stilgen 234-2345-24-123-1245-15-1345 midendword stilgung 234-2345-24-123-1245-136-1345-1245 midendword stinte 234-2345-24-1345-2345-15 begmidword tastinter 2345-1-23456-24-1345-2345-15-1235 begmidword hostinter 125-135-23456-24-1345-2345-15-1235 always höchst 125-246-1456-23456 always kunst 13-136-1345-23456 begmidword ostintegr 135-23456-24-1345-2345-15-1245-1235 begmidword westintegr 2456-15-23456-24-1345-2345-15-1245-1235 midendword stip 234-2345-24-1234 always stipendi 23456-24-1234-15-1345-145-24 always einstipp 146-1345-23456-24-1234-1234 always gestippt 1245-15-23456-24-1234-1234-2345 always obstipation 135-12-23456-24-1234-1-2345-24-135-1345 always speckstippe 234-1234-15-14-13-23456-24-1234-1234-15 always stippbesuch 23456-24-1234-1234-12-15-234-136-1456 always stippchen 23456-24-1234-1234-1456-15-1345 always stippe 23456-24-1234-1234-15 always stippmilch 23456-24-1234-1234-134-24-123-1456 always stippvisite 23456-24-1234-1234-1236-24-234-24-2345-15 always stipulation 23456-24-1234-136-123-1-2345-24-135-1345 always stipulier 23456-24-1234-136-123-346-1235 midendword stitel 234-2345-24-2345-15-123 midendword stiter 234-2345-24-2345-15-1235 midendword stoast 234-2345-135-1-23456 midendword stochter 234-2345-135-1456-2345-15-1235 midendword stod 234-2345-135-145 always kustode 13-136-23456-135-145-15 midendword stoleran 234-2345-135-123-15-1235-1-1345 midendword stool 234-2345-135-135-123 midendword stopo 234-2345-135-1234-135 midendword storkel 234-2345-135-1235-13-15-123 midendword storte 234-2345-135-1235-2345-15 always stosst 23456-135-234-234-2345 midendword stour 234-2345-135-136-1235 midendword stracht 234-2345-1235-1-1456-2345 midendword stradition 234-2345-1235-1-145-24-2345-24-135-1345 midendword strag 234-2345-1235-1-1245 always estragon 15-23456-1235-1-1245-135-1345 always stragödie 234-2345-1235-1-1245-246-145-24-15 midendword strain 234-2345-1235-1-24-1345 midendword strakt 234-2345-1235-1-13-2345 always abstrakt 1-12-23456-1235-1-13-2345 midendword stranch 234-2345-1235-1-1345-1456 midendword strank 234-2345-1235-1-1345-13 midendword strans 234-2345-1235-1-1345-234 midendword strauer 234-2345-1235-16-15-1235 midendword straum 234-2345-1235-16-134 always gastraum 1245-1-23456-1235-16-134 always lastraum 123-1-23456-1235-16-134 always testraum 2345-15-23456-1235-16-134 always ostraum 135-23456-1235-16-134 midendword straurig 234-2345-1235-16-1235-24-1245 midendword strauung 234-2345-1235-16-136-1345-1245 midendword streff 234-2345-1235-15-124-124 midendword streib 234-2345-1235-146-12 midendword strend 234-2345-1235-15-1345-145 midendword strendite 23456-1235-15-1345-145-24-2345-15 midendword strenn 234-2345-1235-15-1345-1345 begmidword testrenn 2345-15-23456-1235-15-1345-1345 midendword streppe 234-2345-1235-15-1234-1234-15 midendword strete 234-2345-1235-15-2345-15 midendword stribun 234-2345-1235-24-12-136-1345 midendword strieb 234-2345-1235-346-12 always industrie 24-1345-145-136-23456-1235-346 prfword industrien 24-1345-145-136-23456-1235-24-15-1345 always industriell 24-1345-145-136-23456-1235-24-15-123-123 midendword striller 234-2345-1235-24-123-123-15-1235 midendword strink 234-2345-1235-24-1345-13 midendword strog 234-2345-1235-135-1245 always astrog 1-23456-1235-135-1245 always östrogen 246-23456-1235-135-1245-15-1345 midendword strommel 234-2345-1235-135-134-134-15-123 midendword strompete 234-2345-1235-135-134-1234-15-2345-15 midendword stropf 234-2345-1235-135-1234-124 midendword strophäe 234-2345-1235-135-1234-125-345-15 midendword stross 234-2345-1235-135-234-234 midendword strost 234-2345-1235-135-23456 midendword strott 234-2345-1235-135-2345-2345 midendword strug 234-2345-1235-136-1245 midendword struthahn 234-2345-1235-136-2345-125-1-125-1345 midendword strächtig 234-2345-1235-345-1456-2345-24-1245 midendword sträg 234-2345-1235-345-1245 midendword sträne 234-2345-1235-345-1345-15 midendword sträume 234-2345-1235-34-134-15 midendword strög 234-2345-1235-246-1245 midendword ströpf 234-2345-1235-246-1234-124 midendword strüb 234-2345-1235-1256-12 midendword strümmer 234-2345-1235-1256-134-134-15-1235 midendword stuberkul 234-2345-136-12-15-1235-13-136-123 midendword stuch 234-2345-136-1456 midendword stumor 234-2345-136-134-135-1235 midendword stür 234-2345-1256-1235 always stürm 23456-1256-1235-134 always glastürm 1245-123-1-234-2345-1256-1235-134 always gastürm 1245-1-234-2345-1256-1235-134 always aussichtstürm 16-234-234-24-1456-2345-234-2345-1256-1235-134 always beobachtungstürm 12-15-135-12-1-1456-2345-136-1345-1245-234-2345-1256-1235-134 always zwillingstürm 1356-2456-24-123-123-24-1345-1245-234-2345-1256-1235-134 always stürz 23456-1256-1235-1356 always erstürb 15-1235-23456-1256-1235-12 midendword sturbine 234-2345-136-1235-12-24-1345-15 midendword sturbo 234-2345-136-1235-12-135 midendword sturbul 234-2345-136-1235-12-136-123 midendword sturn 234-2345-136-1235-1345 midendword styp 234-2345-13456-1234 midendword styrann 234-2345-13456-1235-1-1345-1345 midendword stäfel 234-2345-345-124-15-123 midendword stäfeln 234-2345-345-124-15-123-1345 midendword stägig 234-2345-345-1245-24-1245 midendword stäglich 234-2345-345-1245-123-24-1456 midendword stäler 234-2345-345-123-15-1235 midendword stänz 234-2345-345-1345-1356 midendword stäter 234-2345-345-2345-15-1235 midendword stäusch 234-2345-34-156 midendword stöchter 234-2345-246-1456-2345-15-1235 midendword stöchter 234-2345-246-1456-2345-15-1235 midendword stöne 234-2345-246-1345-15 always störungstrupp 23456-246-1235-136-1345-1245-234-2345-1235-136-1234-1234 always stösst 23456-246-234-234-2345 midendword stöter 234-2345-246-2345-15-1235 midendword stötung 234-2345-246-2345-136-1345-1245 midendword stüch 234-2345-1256-1456 always stücksteil 23456-1256-14-13-234-2345-146-123 midendword stüft 234-2345-1256-124-2345 midendword stülle 234-2345-1256-123-123-15 midendword stümelei 234-2345-1256-134-15-123-146 midendword stümlich 234-2345-1256-134-123-24-1456 always gestüte 1245-15-23456-1256-2345-15 always eistüte 146-234-2345-1256-2345-15 always kaufstüte 13-16-124-234-2345-1256-2345-15 always süsst 234-1256-234-234-2345 always süsst 234-1256-234-234-2345 always tagesteller 2345-1-1245-15-234-2345-15-123-123-15-1235 always tagsteller 2345-1-1245-234-2345-15-123-123-15-1235 always tagstisch 2345-1-1245-234-2345-24-156 syllable talkshow 2345-1-123-13-234-125-135-2456 syllable thorax 2345-125-135-1235-1-1346 always tischtennistisch 2345-24-156-2345-15-1345-1345-24-234-2345-24-156 syllable trainings 2345-1235-1-24-1345-24-1345-1245-234 always überasst 1256-12-15-1235-1-234-234-2345 always ungstank 136-1345-1245-234-2345-1-1345-13 always ungstat 136-1345-1245-234-2345-1-2345 always ungsteil 136-1345-1245-234-2345-146-123 always ungstisch 136-1345-1245-234-2345-24-156 midendword ungstreu 136-1345-1245-234-2345-1235-126 always ungstrick 136-1345-1245-234-2345-1235-24-14-13 always ungstrupp 136-1345-1245-234-2345-1235-136-1234-1234 always ungsturm 136-1345-1245-234-2345-136-1235-134 always unionstrupp 136-1345-24-135-1345-234-2345-1235-136-1234-1234 always unternehmensteil 136-1345-2345-15-1235-1345-15-125-134-15-1345-234-2345-146-123 always veitstanz 1236-146-2345-234-2345-1-1345-1356 always verbandstisch 1236-15-1235-12-1-1345-145-234-2345-24-156 always vergasst 1236-15-1235-1245-1-234-234-2345 always vergisst 1236-15-1235-1245-24-234-234-2345 always verkaufstisch 1236-15-1235-13-16-124-234-2345-24-156 always verkehrsteil 1236-15-1235-13-15-125-1235-234-2345-146-123 always verkehrsto 1236-15-1235-13-15-125-1235-234-2345-135 always vermasst 1236-15-1235-134-1-234-234-2345 always vermögensteil 1236-15-1235-134-246-1245-15-1345-234-2345-146-123 always verrusst 1236-15-1235-1235-136-234-234-2345 always verspasst 1236-15-1235-234-1234-1-234-234-2345 always versuchstier 1236-15-1235-234-136-1456-234-2345-346-1235 always versöhnungstrunk 1236-15-1235-234-246-125-1345-136-1345-1245-234-2345-1235-136-1345-13 always vertragsteil 1236-15-1235-2345-1235-1-1245-234-2345-146-123 always vertragstreu 1236-15-1235-2345-1235-1-1245-234-2345-1235-126 always volkstanz 1236-135-123-13-234-2345-1-1345-1356 always volkstum 1236-135-123-13-234-2345-136-134 always voraustrupp 1236-135-1235-16-234-2345-1235-136-1234-1234 always wachstum 2456-1-1456-234-2345-136-134 always wahnsinnstat 2456-1-125-1345-234-24-1345-1345-234-2345-1-2345 always weihnachtsteller 2456-146-125-1345-1-1456-2345-234-2345-15-123-123-15-1235 always weihnachtstisch 2456-146-125-1345-1-1456-2345-234-2345-24-156 always weisst 2456-146-234-234-2345 always beweis 12-15-2456-146-234 prfword beweist 12-15-2456-146-23456 always wettbewerbsteil 2456-15-2345-2345-12-15-2456-15-1235-12-234-2345-146-123 always willkommenstrunk 2456-24-123-123-13-135-134-134-15-1345-234-2345-1235-136-1345-13 always wirtshaustisch 2456-24-1235-2345-234-125-16-234-2345-24-156 always wirtstier 2456-24-1235-2345-234-2345-346-1235 always wissenstempel 2456-24-234-234-15-1345-234-2345-15-134-1234-15-123 word wisst 2456-24-234-234-2345 always wusst 2456-136-234-234-2345 always wüsst 2456-1256-234-234-2345 always zeitungstisch 1356-146-2345-136-1345-1245-234-2345-24-156 always zirkustier 1356-24-1235-13-136-234-2345-346-1235 always zugsteil 1356-136-1245-234-2345-146-123 always zwangstaufe 1356-2456-1-1345-1245-234-2345-16-124-15 always zwangstäuf 1356-2456-1-1345-1245-234-2345-34-124 always zwillingsturm 1356-2456-24-123-123-24-1345-1245-234-2345-136-1235-134 liblouis-2.5.3/tables/tamil.cti0000664000175000017500000000632112161041546013351 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # This table is built and maintained by Leon Ungier # with help and guidance from Mohammed R. Ramadan # # Converted to liblouis table by Samuel Thibault # generated by ttbtest letter \x0b82 56 TAMIL SIGN ANUSVARA letter \x0b83 6 TAMIL SIGN VISARGA letter \x0b85 1 TAMIL LETTER A letter \x0b86 345 TAMIL LETTER AA letter \x0b87 24 TAMIL LETTER I letter \x0b88 35 TAMIL LETTER II letter \x0b89 136 TAMIL LETTER U letter \x0b8a 1256 TAMIL LETTER UU letter \x0b8e 347 TAMIL LETTER E letter \x0b8f 15 TAMIL LETTER EE letter \x0b90 34 TAMIL LETTER AI letter \x0b92 2467 TAMIL LETTER O letter \x0b93 135 TAMIL LETTER OO letter \x0b94 246 TAMIL LETTER AU letter \x0b95 13 TAMIL LETTER KA letter \x0b99 346 TAMIL LETTER NGA letter \x0b9a 14 TAMIL LETTER CA letter \x0b9c 245 TAMIL LETTER JA letter \x0b9e 25 TAMIL LETTER NYA letter \x0b9f 23456 TAMIL LETTER TTA letter \x0ba3 3456 TAMIL LETTER NNA letter \x0ba4 2345 TAMIL LETTER TA letter \x0ba8 1345 TAMIL LETTER NA letter \x0ba9 56 TAMIL LETTER NNNA letter \x0baa 1234 TAMIL LETTER PA letter \x0bae 134 TAMIL LETTER MA letter \x0baf 13456 TAMIL LETTER YA letter \x0bb0 1235 TAMIL LETTER RA letter \x0bb1 12357 TAMIL LETTER RRA letter \x0bb2 123 TAMIL LETTER LA letter \x0bb3 1237 TAMIL LETTER LLA letter \x0bb4 12378 TAMIL LETTER LLLA letter \x0bb5 1236 TAMIL LETTER VA letter \x0bb6 146 TAMIL LETTER SHA letter \x0bb7 12346 TAMIL LETTER SSA letter \x0bb8 234 TAMIL LETTER SA letter \x0bb9 125 TAMIL LETTER HA letter \x0bbe 345 TAMIL VOWEL SIGN AA letter \x0bbf 24 TAMIL VOWEL SIGN I letter \x0bc0 35 TAMIL VOWEL SIGN II letter \x0bc1 136 TAMIL VOWEL SIGN U letter \x0bc2 1256 TAMIL VOWEL SIGN UU letter \x0bc6 347 TAMIL VOWEL SIGN E letter \x0bc7 15 TAMIL VOWEL SIGN EE letter \x0bc8 34 TAMIL VOWEL SIGN AI letter \x0bca 2467 TAMIL VOWEL SIGN O letter \x0bcb 135 TAMIL VOWEL SIGN OO letter \x0bcc 246 TAMIL VOWEL SIGN AU letter \x0bcd 4 TAMIL SIGN VIRAMA letter \x0be6 245 TAMIL DIGIT ZERO letter \x0be7 1 TAMIL DIGIT ONE letter \x0be8 12 TAMIL DIGIT TWO letter \x0be9 14 TAMIL DIGIT THREE letter \x0bea 145 TAMIL DIGIT FOUR letter \x0beb 15 TAMIL DIGIT FIVE letter \x0bec 124 TAMIL DIGIT SIX letter \x0bed 1245 TAMIL DIGIT SEVEN letter \x0bee 125 TAMIL DIGIT EIGHT letter \x0bef 24 TAMIL DIGIT NINE liblouis-2.5.3/tables/it-it-comp8.utb0000664000175000017500000006621412161041546014337 00000000000000# liblouis: Italiano 8 punti # Copyright (C) 2011 by Caterina Avoledo # Copyright (C) 2012 by Simone Dal Maso # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #--------------------- All chars definitions ------------------------------ space \x0000 34578 #NULL space \x0001 178 #Start of heading space \x0002 1278 #Start of text space \x0003 1478 #End of text space \x0004 14578 #End of transmission space \x0005 1578 #Enquiry space \x0006 12478 #Acknowledge space \x0007 124578 #Bell space \x0008 12578 #Backspace #space \x0009 2478 space \t 0 #Tab \x0009 space \x000A 24578 #Line feed space \x000B 1378 #Line tabulation space \x000C 12378 #Form feed space \x000D 13478 #Carriage return space \x000E 134578 #Shift out space \x000F 13578 #Shift in space \x0010 123478 #Data link escape space \x0011 1234578 #Device control one space \x0012 123578 #Device control two space \x0013 23478 #Device control three space \x0014 234578 #Device control four space \x0015 13678 #Negative acknoledgement space \x0016 123678 #Synchronous idle space \x0017 245678 #End of transmission block space \x0018 134678 #Cancel space \x0019 1345678 #End of medium space \x001A 135678 #Substitute space \x001B 1235678 #Escape space \x001C 3478 #Information separator four space \x001D 2345678 #Information separator three space \x001E 234678 #Information separator two space \x001F 45678 #Information separator one space \s 0 #blank 32 punctuation ! 5 #33 punctuation " 4 #34 sign # 3456 #35 sign $ 46 #36 sign % 123456 #37 sign & 12346 #38 punctuation ' 6 #39 punctuation ( 236 #40 punctuation ) 356 #41 punctuation * 35 #42 sign + 235 #43 punctuation , 2 #44 punctuation - 36 #45 the hyphen-minus punctuation . 3 #46 sign / 256 #47 include digits6DotsPlusDot6.uti punctuation : 25 #colon x003A punctuation ; 23 #semicolon x003B math < 56 #x003C math = 2356 #equal sign x003D math > 45 #x003E punctuation ? 26 #x003F sign @ 3457 #commercial at x0040 include latinLetterDef8Dots.uti punctuation [ 123567 #91 sign \\ 347 #92 punctuation ] 234567 #93 sign ^ 23467 #94 sign _ 4567 #underscore 95 sign ` 345 #96 # a - z 97 - 122 x0061 - x007A punctuation { 12356 #123 sign | 34 #124 punctuation } 23456 #125 sign ~ 2346 #126 sign \x007F 456 #Delete #--- Unicode latin #sign \x0080 8 #Control #From \x0080 to \x009F control characters space \x00A0 0 #no-break space punctuation \x00A1 367 #Inverted exclamation mark sign \x00A2 58 #cent sign sign \x00A3 467 #pound sign sign \x00A4 4678 #¤ currency sign x00A4 sign \x00A5 468 #Â¥ yen sign x00A5 sign \x00A6 158 #Broken bar sign \x00A7 357 #§ paragraph sign x00A7 sign \x00A8 48 #Diaeresis sign sign \x00A9 123468 #© copyright x00A9 sign \x00AA 1258 #Feminine ordinal indicator punctuation \x00AB 5678 # « #left-pointing double quotation mark x00AB sign \x00AC 25678 #Not sign sign \x00AD 368 #Soft hyphen sign \x00AE 12358 #Registered sign sign \x00AF 458 #Macron sign sign \x00B0 4568 #° degree sign x00B0 sign \x00B1 23578 #Plus-Minus sign sign \x00B2 128 #² #superscript 2 sign x00B2 sign \x00B3 148 #³superscript 3 sign x00B3 sign \x00B4 568 #acute accent sign \x00B5 1348 #µ micro sign x00B5 sign \x00B6 1458 #¶ pilcrow sign x00B6 punctuation \x00B7 37 #Middle dot sign \x00B8 68 #Cedilla sign \x00B9 18 #¹ superscript 1 sign x00B9 sign \x00BA 2458 #Masculine ordinal indicator punctuation \x00BB 4578 #»right-pointing double quotation mark x00BB sign \x00BC 1368 #¼ vulgar fraction one quarter x00BC sign \x00BD 12368 #½vulgar fraction one half x00BD sign \x00BE 13468 #¾ vulgar fraction 3 quarters x00BE punctuation \x00BF 38 #Inverted question mark uppercase \x00C0 23678 #A with grave above uppercase \x00C1 28 #A with acute above uppercase \x00C2 167 #A with Circumflex uppercase \x00C3 3467 #A with tilde uppercase \x00C4 567 #A with diaeresis uppercase \x00C5 34567 #A with ring above uppercase \x00C6 47 #AE uppercase \x00C7 123467 #C with cedilla uppercase \x00C8 3578 #E with grave above uppercase \x00C9 1234567 #E with acute above uppercase \x00CA 1267 #E with circumflex uppercase \x00CB 2358 #E with diaeresis uppercase \x00CC 57 #I with grave above uppercase \x00CD 258 #I with acute uppercase \x00CE 1467 #I with circumflex uppercase \x00CF 23568 #I with diaeresis uppercase \x00D0 3567 #ETH uppercase \x00D1 2567 #N with tilde uppercase \x00D2 578 #O with grave uppercase \x00D3 2568 #O with acute uppercase \x00D4 14567 #O with circumflex uppercase \x00D5 267 #O with tilde uppercase \x00D6 358 #O with diaeresis math \x00D7 23468 #Multiplication sign \x00d7 uppercase \x00D8 2467 #O with stroke uppercase \x00D9 35678 #U with grave above uppercase \x00DA 268 #U with acute above uppercase \x00DB 1567 #U with circumflex uppercase \x00DC 2368 #U with diaeresis uppercase \x00DD 3568 #Y with acute uppercase \x00DE 2357 #THORN uppercase \x00DF 34568 #sharp s lowercase \x00E0 123568 #a with grave lowercase \x00E1 168 #a with acute lowercase \x00E2 1678 #a with circumflex lowercase \x00E3 34678 #a with tilde lowercase \x00E4 3458 #a with diaeresis lowercase \x00E5 345678 #a with ring above lowercase \x00E6 478 #ae lowercase \x00E7 1234678 #c with cedilla lowercase \x00E8 23468 #e with grave lowercase \x00E9 1234568 #e with acute lowercase \x00EA 12678 #e with circumflex lowercase \x00EB 12468 #e with diaeresis lowercase \x00EC 348 #i with grave above lowercase \x00ED 1468 #i withacute lowercase \x00EE 14678 #i with circumflex lowercase \x00EF 124568 #i with diaeresis lowercase \x00F0 23458 #eth lowercase \x00F1 13458 #n with tilde lowercase \x00F2 3468 #o with grave above lowercase \x00F3 14568 #o with acute lowercase \x00F4 145678 #o with circumflex lowercase \x00F5 1358 #o with tilde lowercase \x00F6 2468 #o with diaeresis math \x00F7 125678 #division sign x00f7 lowercase \x00F8 24678 #o with stroke lowercase \x00F9 234567 #u with grave above lowercase \x00FA 1568 #u with acute above lowercase \x00FB 15678 #u with circumflex lowercase \x00FC 12568 #u with diaeresis lowercase \x00FD 24568 #y with acute lowercase \x00FE 12348 #thorn lowercase \x00FF 134568 #y with diaeresis #--- Unicode Multilingual uppercase \x0100 1678 #A with macron lowercase \x0101 168 #a with macron uppercase \x0102 1235678 #A with breve lowercase \x0103 123568 #a with breve uppercase \x0104 134568 #A with ogonek lowercase \x0105 168 #a with ogonek uppercase \x0106 14678 #C with acute lowercase \x0107 1468 #c with acute uppercase \x0108 14678 #C with circumflex lowercase \x0109 1468 #c with circumflex #uppercase \x010A 0 #C with dot above #lowercase \x010B #c with dot above uppercase \x010C 14678 #C with caron lowercase \x010D 1468 #c with caron #uppercase \x010E #D with caron #lowercase \x010F #d with caron uppercase \x0110 145678 #D with stroke lowercase \x0111 14568 #d with stroke uppercase \x0112 15678 #E with macron lowercase \x0113 1568 #e with macron uppercase \x0118 12678 #E with ogonek lowercase \x0119 1268 #e with ogonek uppercase \x011C 1245678 #G with circumflex lowercase \x011D 124568 #g with circumflex uppercase \x0141 134568 #L with stroke lowercase \x0142 1568 #l with stroke uppercase \x0143 145678 #N with acute lowercase \x0144 14568 #n with acute uppercase \x0145 1345678 #N with cedilla lowercase \x0146 134568 #n with cedilla uppercase \x0150 1245678 #O with double acute lowercase \x0151 124568 #o with double acute uppercase \x0152 237 #ligature OE lowercase \x0153 467 #ligature oe uppercase \x0156 1235678 #R with cedilla lowercase \x0157 123568 #r with cedilla lowercase \x0159 2456 #r with caron uppercase \x015A 134568 #S with acute lowercase \x015B 134568 #s with acute uppercase \x015C 234678 #S with circumflex lowercase \x015D 23468 #s with cirumflex uppercase \x015E 134568 #S with cedilla lowercase \x015F 123468 #s with cedilla uppercase \x0160 678 #S with caron lowercase \x0161 1568 #s withcaron uppercase \x0162 24678 #T with cedilla lowercase \x0163 23458 #t with cedilla uppercase \x0164 125678 #T with caron lowercase \x0165 1256 #t with caron uppercase \x016A 34678 #U wtih macron lowercase \x016B 3468 #u with macron uppercase \x016C 34678 #U with breve lowercase \x016D 3468 #u with breve lowercase \x016F 23456 #u with ring above uppercase \x0170 2345678 #U with double acute lowercase \x0171 234568 #u with double acute uppercase \x0178 12345678 #Y with diaeresis uppercase \x0179 134568 #Z with acute lowercase \x017A 134568 #z with acute uppercase \x017B 134568 #Z with dot above lowercase \x017C 123468 #z with dot above uppercase \x017D 12567 #Z with caron lowercase \x017E 2346 #z with caron lowercase \x0192 78 #f with hook lowercase \x025C 13567 #reversed open e sign \x02C6 378 #circumflex accent sign \x02C7 134568 #caron sign \x02D8 134568 #breve sign \x02D9 5 #dot above sign \x02DB 134568 #ogonek sign \x02DC 2578 #small tilde #--- Unicode Special Symbols space \x2002 0 #EN space space \x2003 0 #EM space space \x2004 0 #THREE-PER-EM SPACE space \x2005 0 #FOUR-PER-EM SPACE space \x2006 0 #SIX-PER-EM SPACE punctuation \x2007 0 #FIGURE SPACE space \x2008 0 #PUNCTUATION SPACE space \x2009 0 #THIN SPACE space \x200A 0 #HAIR SPACE sign \x2011 36 #Non-breaking hyphen sign \x2013 368 #En dash sign \x2014 36 #EM dash sign \x2015 36 #Horizontal bar sign \x2017 36 #Double low line sign \x2018 6 #Left single quotation mark sign \x2019 6 #Right single quotation mark sign \x201A 3678 #Single low-9 quotation mark sign \x201C 4 #Left double quotation mark sign \x201D 4 #Right double quotation mark sign \x201E 1268 #Double low-9 quotation mark sign \x2020 134568 #Dagger sign \x2021 12458 #Double dagger sign \x2022 35 #Bullet sign \x2026 238 #Horizontal ellipsis punctuation \x202F 0 #NARROW NO-BREAK SPACE sign \x2030 1345678 #Per mille sign sign \x2039 27 #Single left-pointing quotation mark sign \x203A 23567 #Single right-pointing quotation mark space \x205F 0 #MEDIUM MATHEMATICAL SPACE sign \x207F 13467 #Superscript n sign \x20AC 457 #Euro sign sign \x20AF 145678 #Drachma sign sign \x2116 3456 #Number sign sign \x2122 1245678 #Trade mark sign math \x2219 48 #Bullet operator math \x221A 1467 #Square root math \x221E 234678 #Infinity math \x2229 578 #Intersection math \x2248 3578 #Almost equal to math \x2261 23568 #Identical to math \x2264 568 #Less-than or equal to math \x2265 458 #Greater-than or equal to sign \x2310 14567 #Reversed not sign math \x2320 347 #Top half integral math \x2321 1567 #Bottom half integral sign \x2500 67 #Box drawings light horizontal sign \x2502 237 #Box drawings light horizontal sign \x250C 257 #Box drawings light down and right sign \x2510 278 #Box drawings light down and left sign \x2514 378 #Box drawings light up and right sign \x2518 678 #Box drawings light up and left sign \x251C 2367 #Box drawings light vertical and right sign \x2524 13568 #Box drawings light vertical and left sign \x252C 138 #Box drawings light down and horizontal sign \x2534 27 #Box drawings light up and horizontal sign \x2550 2578 #Box drawings double horizontal sign \x2551 1234568 #Box drawings double vertical sign \x2552 123468 #Box drawings down single and right double sign \x2553 1358 #Box drawings down double and right single sign \x2554 23567 #Box drawings double down and right sign \x2555 148 #Box drawings down single and left double sign \x2556 368 #Box drawings down double and left single sign \x2557 12458 #Box drawings double down left sign \x2558 248 #Box drawings up single and right double sign \x2559 1238 #Box drawings up double and right single sign \x255A 2378 #Box drawings double up and right sign \x255B 34678 #Box drawings up single and left double sign \x255C 4678 #Box drawings up double and left single sign \x255D 2678 #Box drawings double up and left sign \x255E 68 #Box drawings vertical single and right double sign \x255F 257 #Box drawings vertical double and right single sign \x2560 1248 #Box drawings vertical double and right sign \x2561 268 #Box drawings vertical single and left double sign \x2562 24568 #Box drawings vertical double and left single sign \x2563 123567 #Box drawings double vertical and left sign \x2564 3467 #Box drawings down single and horizontal double sign \x2565 28 #Box drawings down double and horizontal single sign \x2566 123458 #Box drawings double down and horizontal sign \x2567 167 #Box drawings up single and horizontal double sign \x2568 57 #Box drawings up double and horizontal single sign \x2569 8 #Box drawings double up and horizontal sign \x256A 3567 #Box drawings vertical single and horizontal double sign \x256B 12358 #Box drawings vertical double and horizontal single sign \x256C 5678 #Box drawings double vertical and horizontal sign \x2580 234567 #Upper half block sign \x2584 1267 #Lower half block sign \x2588 12345678 #Full block sign \x258C 23678 #Left half block sign \x2590 35678 #Right half block sign \x2591 78 #Light shade sign \x2592 3678 #Medium shade sign \x2593 235678 #Dark shade sign \x25A0 1234567 #Black square sign \x25AA 5678 #black small square sign \x25B6 456-135 #Black right-pointing triangle sign \x25CF 35 #Black circle sign \x25E6 35 #White bullet sign \x2665 56-146 #heart sign \x2713 3678 #check mark sign \x2714 235678 #Heavy check mark sign \x2794 25-25-135 #right arrow sign \x2190 25-25-246 #left arrow sign \x2192 25-25-246 #left arrow sign \x25B7 456-135 #white right-pointing triangle sign \xF0B7 35 #bullet sign \xFB00 124-124 #latin small ligature #--- Unicode Greek sign \x0374 3456 #GREEK UPPER NUMERAL SIGN Dexia keraia sign \x0375 5678 #GREEK LOWER NUMERAL SIGN Aristeri keraia punctuation \x037E 26 #GREEK QUESTION MARK sign \x0384 4 #GREEK TONOS sign \x0385 45 #GREEK DIALYTIKA TONOS uppercase \x0386 34578 #Greek letter alpha with tonos sign \x0387 746 #GREEK ANO TELEIA uppercase \x0388 124678 #Greek letter epsilon with tonos uppercase \x0389 12345678 #Greek letter eta with tonos uppercase \x038A 1245678 #Greel letter iota with sonos uppercase \x038C 24678 #Greek letter omicron with tonos uppercase \x038E 125678 #Greek letter upsilon with tonos uppercase \x038F 24578 #Greek letter omega with tonos lowercase \x0390 248 #GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS uppercase \x0391 178 #GREEK CAPITAL LETTER ALPHA uppercase \x0392 1278 #GREEK CAPITAL LETTER BETA uppercase \x0393 124578 #GREEK CAPITAL LETTER GAMMA uppercase \x0394 14578 #GREEK CAPITAL LETTER DELTA uppercase \x0395 1578 #GREEK CAPITAL LETTER EPSILON uppercase \x0396 135678 #GREEK CAPITAL LETTER ZETA uppercase \x0397 15678 #GREEK CAPITAL LETTER ETA uppercase \x0398 145678 #GREEK CAPITAL LETTER THETA uppercase \x0399 248 #GREEK CAPITAL LETTER IOTA uppercase \x039A 1378 #GREEK CAPITAL LETTER KAPPA uppercase \x039B 12378 #GREEK CAPITAL LETTER LAMDA uppercase \x039C 13478 #GREEK CAPITAL LETTER MU uppercase \x039D 134578 #GREEK CAPITAL LETTER NU uppercase \x039E 134678 #GREEK CAPITAL LETTER XI uppercase \x039F 13578 #GREEK CAPITAL LETTER OMICRON uppercase \x03A0 123478 #GREEK CAPITAL LETTER PI uppercase \x03A1 123578 #GREEK CAPITAL LETTER RHO uppercase \x03A3 23478 #GREEK CAPITAL LETTER SIGMA uppercase \x03A4 234578 #GREEK CAPITAL LETTER TAU uppercase \x03A5 13678 #GREEK CAPITAL LETTER UPSILON uppercase \x03A6 12478 #GREEK CAPITAL LETTER PHI uppercase \x03A7 1234678 #GREEK CAPITAL LETTER CHI uppercase \x03A8 1345678 #GREEK CAPITAL LETTER PSI uppercase \x03A9 245678 #GREEK CAPITAL LETTER OMEGA uppercase \x03AA 2478 #GREEK CAPITAL LETTER IOTA WITH DIALYTIKA uppercase \x03AB 1345678 #GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA lowercase \x03AC 3458 #Greek letter alpha with tonos lowercase \x03AD 12468 #Greek letter epsilon with tonos lowercase \x03AE 1234568 #Greek letter eta with tonos lowercase \x03AF 124568 #Greel letter iota with sonos lowercase \x03B0 134568 #GREEK SMALL LETTER UPSILON WITH DIALYTIKA lowercase \x03B1 18 #GREEK SMALL LETTER ALPHA lowercase \x03B2 128 #GREEK SMALL LETTER BETA lowercase \x03B3 12458 #GREEK SMALL LETTER GAMMA lowercase \x03B4 1458 #GREEK SMALL LETTER DELTA lowercase \x03B5 158 #GREEK SMALL LETTER EPSILON lowercase \x03B6 13568 #GREEK SMALL LETTER ZETA lowercase \x03B7 1568 #GREEK SMALL LETTER ETA lowercase \x03B8 14568 #GREEK SMALL LETTER THETA lowercase \x03B9 248 #GREEK SMALL LETTER IOTA lowercase \x03BA 138 #GREEK SMALL LETTER KAPPA lowercase \x03BB 1238 #GREEK SMALL LETTER LAMDA lowercase \x03BC 1348 #GREEK SMALL LETTER MU lowercase \x03BD 13458 #GREEK SMALL LETTER NU lowercase \x03BE 13468 #GREEK SMALL LETTER XI lowercase \x03BF 1358 #GREEK SMALL LETTER OMICRON lowercase \x03C0 12348 #GREEK SMALL LETTER PI lowercase \x03C1 12358 #GREEK SMALL LETTER RHO lowercase \x03C2 2348 #GREEK SMALL LETTER FINAL SIGMA lowercase \x03C3 2348 #GREEK SMALL LETTER FINAL SIGMA lowercase \x03C4 23458 #GREEK SMALL LETTER TAU lowercase \x03C5 1368 #GREEK SMALL LETTER UPSILON lowercase \x03C6 1248 #GREEK SMALL LETTER PHI lowercase \x03C7 123468 #GREEK SMALL LETTER CHI lowercase \x03C8 13456 #GREEK SMALL LETTER PSI lowercase \x03C9 24568 #GREEK SMALL LETTER OMEGA lowercase \x03CA 348 #GREEK SMALL LETTER IOTA WITH DIALYTIKA lowercase \x03CB 234568 #GREEK SMALL LETTER UPSILON WITH DIALYTIKA lowercase \x03CC 2468 #Greek letter omicron with tonos lowercase \x03CD 12568 #Greek letter upsilon with tonos lowercase \x03CE 2458 #Greek letter omega with tonos sign \x03D0 1278 #GREEK BETA SYMBOL sign \x03D1 145678 #GREEK THETA SYMBOL letter \x03D2 12368 #GREEK UPSILON WITH HOOK SYMBOL letter \x03D3 23456 #GREEK UPSILON WITH ACUTE AND HOOK SYMBOL letter \x03D4 1368 #GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL sign \x03D5 12478 #GREEK PHI SYMBOL sign \x03D6 123478 #GREEK PI SYMBOL sign \x03D7 12346 #GREEK KAI SYMBOL uppercase \x03D8 1234578 #GREEK LETTER ARCHAIC KOPPA lowercase \x03D9 123458 #GREEK SMALL LETTER ARCHAIC KOPPA uppercase \x03DA 123678 #GREEK CAPITAL LETTER STIGMA lowercase \x03DB 12368 #GREEK SMALL LETTER STIGMA uppercase \x03DC 145678 #GREEK CAPITAL LETTER DIGAMMA lowercase \x03DD 12368 #GREEK SMALL LETTER DIGAMMA uppercase \x03DE 1234578 #GREEK CAPITAL LETTER KOPPA lowercase \x03DF 123458 #GREEK SMALL LETTER KOPPA uppercase \x03E0 234678 #GREEK CAPITAL LETTER SAMPI lowercase \x03E1 23468 #GREEK SMALL LETTER SAMPI sign \x03F0 1234578 #GREEK KAPPA SYMBOL sign \x03F1 123578 #GREEK RHO SYMBOL sign \x03F2 23478 #GREEK LUNATE SIGMA SYMBOL sign \x03F4 145678 #GREEK CAPITAL THETA SYMBOL sign \x03F5 1578 #GREEK LUNATE EPSILON SYMBOL uppercase \x03FA 234678 #GREEK CAPITAL LETTER SAN lowercase \x03FB 23468 #GREEK SMALL LETTER SAN #--- Unicode Cyrillic uppercase \x0401 1678 #CYRILLIC CAPITAL LETTER IO uppercase \x0404 34578 #CYRILLIC CAPITAL LETTER UKRAINIAN IE uppercase \x0406 1345678 #CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I uppercase \x0407 145678 #CYRILLIC CAPITAL LETTER YI uppercase \x0410 178 #CYRILLIC CAPITAL LETTER A uppercase \x0411 1278 #CYRILLIC CAPITAL LETTER BE uppercase \x0412 245678 #CYRILLIC CAPITAL LETTER VE uppercase \x0413 124578 #CYRILLIC CAPITAL LETTER GHE uppercase \x0414 14578 #CYRILLIC CAPITAL LETTER DE uppercase \x0415 157 #CYRILLIC CAPITAL LETTER IE uppercase \x0416 24578 #CYRILLIC CAPITAL LETTER ZHE uppercase \x0417 135678 #CYRILLIC CAPITAL LETTER ZE uppercase \x0418 2478 #CYRILLIC CAPITAL LETTER I uppercase \x0419 1234678 #CYRILLIC CAPITAL LETTER SHORT I uppercase \x041A 1378 #CYRILLIC CAPITAL LETTER KA uppercase \x041B 12378 #CYRILLIC CAPITAL LETTER EL uppercase \x041C 13478 #CYRILLIC CAPITAL LETTER EM uppercase \x041D 134578 #CYRILLIC CAPITAL LETTER EN uppercase \x041E 13578 #CYRILLIC CAPITAL LETTER O uppercase \x041F 123478 #CYRILLIC CAPITAL LETTER PE uppercase \x0420 123578 #CYRILLIC CAPITAL LETTER ER uppercase \x0421 23478 #CYRILLIC CAPITAL LETTER ES uppercase \x0422 234578 #CYRILLIC CAPITAL LETTER TE uppercase \x0423 13678 #CYRILLIC CAPITAL LETTER U uppercase \x0424 12478 #CYRILLIC CAPITAL LETTER EF uppercase \x0425 12578 #CYRILLIC CAPITAL LETTER HA uppercase \x0426 1478 #CYRILLIC CAPITAL LETTER TSE uppercase \x0427 1234578 #CYRILLIC CAPITAL LETTER CHE uppercase \x0428 15678 #CYRILLIC CAPITAL LETTER SHA uppercase \x0429 134678 #CYRILLIC CAPITAL LETTER SHCHA uppercase \x042A 1235678 #CYRILLIC CAPITAL LETTER HARD SIGN uppercase \x042B 234678 #CYRILLIC CAPITAL LETTER YERU uppercase \x042C 2345678 #CYRILLIC CAPITAL LETTER SOFT SIGN uppercase \x042D 24678 #CYRILLIC CAPITAL LETTER E uppercase \x042E 125678 #CYRILLIC CAPITAL LETTER YU uppercase \x042F 124678 #CYRILLIC CAPITAL LETTER YA lowercase \x0430 18 #CYRILLIC SMALL LETTER A lowercase \x0431 128 #CYRILLIC SMALL LETTER BE lowercase \x0432 24568 #CYRILLIC SMALL LETTER VE lowercase \x0433 12458 #CYRILLIC SMALL LETTER GHE lowercase \x0434 1458 #CYRILLIC SMALL LETTER DE lowercase \x0435 158 #CYRILLIC SMALL LETTER IE lowercase \x0436 2458 #CYRILLIC SMALL LETTER ZHE lowercase \x0437 13568 #CYRILLIC SMALL LETTER ZE lowercase \x0438 248 #CYRILLIC SMALL LETTER I lowercase \x0439 123468 #CYRILLIC SMALL LETTER SHORT I lowercase \x043A 138 #CYRILLIC SMALL LETTER KA lowercase \x043B 1238 #CYRILLIC SMALL LETTER EL lowercase \x043C 1348 #CYRILLIC SMALL LETTER EM lowercase \x043D 13458 #CYRILLIC SMALL LETTER EN lowercase \x043E 1358 #CYRILLIC SMALL LETTER O lowercase \x043F 12348 #CYRILLIC SMALL LETTER PE lowercase \x0440 12358 #CYRILLIC SMALL LETTER ER lowercase \x0441 2348 #CYRILLIC SMALL LETTER ES lowercase \x0442 23458 #CYRILLIC SMALL LETTER TE lowercase \x0443 1368 #CYRILLIC SMALL LETTER U lowercase \x0444 1248 #CYRILLIC SMALL LETTER EF lowercase \x0445 1258 #CYRILLIC SMALL LETTER HA lowercase \x0446 148 #CYRILLIC SMALL LETTER TSE lowercase \x0447 123458 #CYRILLIC SMALL LETTER CHE lowercase \x0448 1568 #CYRILLIC SMALL LETTER SHA lowercase \x0449 13468 #CYRILLIC SMALL LETTER SHCHA lowercase \x044A 123568 #CYRILLIC SMALL LETTER HARD SIGN lowercase \x044B 23468 #CYRILLIC SMALL LETTER YERU lowercase \x044C 234568 #CYRILLIC SMALL LETTER SOFT SIGN lowercase \x044D 2468 #CYRILLIC SMALL LETTER E lowercase \x044E 12568 #CYRILLIC SMALL LETTER YU lowercase \x044F 12468 #CYRILLIC SMALL LETTER YA lowercase \x0451 168 #CYRILLIC SMALL LETTER IO lowercase \x0452 1468 #CYRILLIC SMALL LETTER DJE Serbocroatian lowercase \x0454 3458 #CYRILLIC SMALL LETTER UKRAINIAN IE lowercase \x0455 12368 #CYRILLIC SMALL LETTER DZE lowercase \x0456 134568 #CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I lowercase \x0457 14568 #CYRILLIC SMALL LETTER YI lowercase \x0458 3458 #CYRILLIC SMALL LETTER JE lowercase \x0459 1268 #CYRILLIC SMALL LETTER LJE lowercase \x045A 12468 #CYRILLIC SMALL LETTER NJE lowercase \x045B 1468 #CYRILLIC SMALL LETTER TSHE Serbocroatian lowercase \x045E 3468 #CYRILLIC SMALL LETTER SHORT U uppercase \x0462 3457 #CYRILLIC CAPITAL LETTER YAT lowercase \x0463 3458 #CYRILLIC SMALL LETTER YAT lowercase \x0467 18 #CYRILLIC SMALL LETTER LITTLE YUS uppercase \x046A 2467 #CYRILLIC CAPITAL LETTER BIG YUS lowercase \x046B 124568 #CYRILLIC SMALL LETTER BIG YUS lowercase \x0479 3468 #CYRILLIC SMALL LETTER UK DIGRAPH sign \x0484 478 #CYRILLIC NON-SPACING PALATALIZATION uppercase \x0490 1245678 #CYRILLIC CAPITAL LETTER GHE WITH UPTURN lowercase \x0491 124568 #CYRILLIC SMALL LETTER GHE WITH UPTURN lowercase \x04A3 13458 #CYRILLIC SMALL LETTER EN WITH DESCENDER lowercase \x04AF 12568 #CYRILLIC SMALL LETTER STRAIGHT U lowercase \x04BB 128 #CYRILLIC SMALL LETTER SHHA lowercase \x04D9 2468 #CYRILLIC SMALL LETTER SCHWA #---- Hebrew Unicode punctuation \x05B0 3 #HEBREW POINT SHEVA punctuation \x05B1 26 #HEBREW POINT HATAF SEGOL punctuation \x05B2 25 #HEBREW POINT HATAF PATAH punctuation \x05B3 345 #HEBREW POINT HATAF QAMATS punctuation \x05B4 24 #HEBREW POINT HIRIQ punctuation \x05B5 34 #HEBREW POINT TSERE punctuation \x05B6 15 #HEBREW POINT SEGOL punctuation \x05B7 14 #HEBREW POINT PATAH punctuation \x05B8 126 #HEBREW POINT QAMATS punctuation \x05B9 135 #HEBREW POINT HOLAM punctuation \x05BB 136 #HEBREW POINT QUBUTS punctuation \x05BC 5 #HEBREW POINT DAGESH OR MAPIQ punctuation \x05BD 4 #HEBREW POINT METEG punctuation \x05C1 1568 #HEBREW POINT SHIN DOT punctuation \x05C2 2348 #HEBREW POINT SIN DOT letter \x05D0 1 #HEBREW LETTER ALEF letter \x05D1 1236 #HEBREW LETTER BET letter \x05D2 1245 #HEBREW LETTER GIMEL letter \x05D3 145 #HEBREW LETTER DALET letter \x05D4 125 #HEBREW LETTER HE letter \x05D5 2456 #HEBREW LETTER VAV letter \x05D6 1356 #HEBREW LETTER ZAYIN letter \x05D7 1346 #HEBREW LETTER HET letter \x05D8 2345 #HEBREW LETTER TET letter \x05D9 245 #HEBREW LETTER YOD letter \x05DA 16 #HEBREW LETTER FINAL KAF letter \x05DB 16 #HEBREW LETTER KAF letter \x05DC 123 #HEBREW LETTER LAMED letter \x05DD 134 #HEBREW LETTER FINAL MEM letter \x05DE 134 #HEBREW LETTER MEM letter \x05DF 1345 #HEBREW LETTER FINAL NUN letter \x05E0 1345 #HEBREW LETTER NUN letter \x05E1 234 #HEBREW LETTER SAMEKH letter \x05E2 1246 #HEBREW LETTER AYIN letter \x05E3 124 #HEBREW LETTER FINAL PE letter \x05E4 124 #HEBREW LETTER PE letter \x05E5 2346 #HEBREW LETTER FINAL TSADI letter \x05E6 2346 #HEBREW LETTER TSADI letter \x05E7 12345 #HEBREW LETTER QOF letter \x05E8 1235 #HEBREW LETTER RESH letter \x05E9 146 #HEBREW LETTER SHIN letter \x05EA 1456 #HEBREW LETTER TAV letter \xFB1D 35 #HEBREW LETTER YOD WITH HIRIQ letter \xFB2A 146 #HEBREW LETTER SHIN WITH SHIN DOT letter \xFB2B 156 #HEBREW LETTER SHIN WITH SIN DOT letter \xFB31 12 #HEBREW LETTER BET WITH DAGESH letter \xFB35 346 #HEBREW LETTER VAV WITH DAGESH letter \xFB3A 13 #HEBREW LETTER FINAL KAF WITH DAGESH letter \xFB3B 13 #HEBREW LETTER KAF WITH DAGESH letter \xFB43 1234 #HEBREW LETTER FINAL PE WITH DAGESH letter \xFB44 1234 #HEBREW LETTER PE WITH DAGESH letter \xFB4A 1256 #HEBREW LETTER TAV WITH DAGESH #---- Special Signs sign \xFEFF 0 #Zero width no-break Space include braille-patterns.cti liblouis-2.5.3/tables/en-us-comp6.ctb0000664000175000017500000000225612161041546014310 00000000000000# liblouis: U.S. English 6 dot computer braille table space \t 7 tab space \s 0 blank sign \x000a 78 newline space \x000d 0 carriage return include loweredDigits6Dots.uti include latinLetterDef8Dots.uti punctuation , 6 punctuation ; 56 punctuation : 156 punctuation . 46 punctuation ! 2346 punctuation " 5 punctuation ' 3 punctuation ( 12356 punctuation ) 23456 punctuation - 36 sign _ 456 math < 126 math = 123456 math > 345 sign % 146 math + 346 math ~ 45 sign ` 4 sign & 12346 sign $ 1246 punctuation ? 1456 punctuation { 246 punctuation [ 2467 punctuation } 12456 punctuation ] 124567 sign ^ 457 sign @ 47 sign # 3456 sign \\ 12567 sign | 1256 math / 34 sign * 16 comp6 A 456-1 comp6 B 456-12 comp6 C 456-14 comp6 D 456-145 comp6 E 456-15 comp6 F 456-124 comp6 G 456-1245 comp6 H 456-125 comp6 I 456-24 comp6 J 456-245 comp6 K 456-13 comp6 L 456-123 comp6 M 456-134 comp6 N 456-1345 comp6 O 456-135 comp6 P 456-1234 comp6 Q 456-12345 comp6 R 456-1235 comp6 S 456-234 comp6 T 456-2345 comp6 U 456-136 comp6 V 456-1236 comp6 W 456-2456 comp6 X 456-1346 comp6 Y 456-13456 comp6 Z 456-1356 comp6 _ 456-456 comp6 [ 246 comp6 ] 12456 comp6 { 456-246 comp6 } 456-12456 comp6 \\ 456-1256 comp6 \t 4 liblouis-2.5.3/tables/bra.ctb0000664000175000017500000000167112161041546013003 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Braj include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/de-chardefs8.cti0000664000175000017500000004703412161041546014506 00000000000000# liblouis: Character definitions for german tables # # Copyright (C) 2009 SBS Schweizerische Bibliothek für Blinde und Sehbehinderte # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # EUROBRAILLE # This computer braille table is widely # being used in german speaking parts of europe # # Version 2009-11-19 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- # 34578 \x0000 � [NULL] # 178 \x0001  [START OF HEADING] # 1278 \x0002  [START OF TEXT] # 1478 \x0003  [END OF TEXT] # 14578 \x0004  [END OF TRANSMISSION] # 1578 \x0005  [ENQUIRY] # 12478 \x0006  [ACKNOWLEDGE] # 124578 \x0007  [BELL] # 12578 \x0008  [BACKSPACE] # 2478 \x0009 [CHARACTER TABULATION] # 24578 \x000A [LINE FEED (LF)] # 1378 \x000B [LINE TABULATION] # 12378 \x000C [FORM FEED (FF)] # 13478 \x000D [CARRIAGE RETURN (CR)] # 134578 \x000E  [SHIFT OUT] # 13578 \x000F  [SHIFT IN] # 123478 \x0010  [DATA LINK ESCAPE] # 1234578 \x0011  [DEVICE CONTROL ONE] # 123578 \x0012  [DEVICE CONTROL TWO] # 23478 \x0013  [DEVICE CONTROL THREE] # 234578 \x0014  [DEVICE CONTROL FOUR] # 13678 \x0015  [NEGATIVE ACKNOWLEDGE] # 123678 \x0016  [SYNCHRONOUS IDLE] # 245678 \x0017  [END OF TRANSMISSION BLOCK] # 134678 \x0018  [CANCEL] # 1345678 \x0019  [END OF MEDIUM] # 135678 \x001A  [SUBSTITUTE] # 1235678 \x001B  [ESCAPE] # 3478 \x001C  [INFORMATION SEPARATOR FOUR] # 2345678 \x001D  [INFORMATION SEPARATOR THREE] # 234678 \x001E  [INFORMATION SEPARATOR TWO] # 45678 \x001F  [INFORMATION SEPARATOR ONE] space \s 0 \x0020 SPACE punctuation ! 5 \x0021 ! EXCLAMATION MARK punctuation " 4 \x0022 " QUOTATION MARK sign # 3456 \x0023 # NUMBER SIGN sign $ 46 \x0024 $ DOLLAR SIGN sign % 123456 \x0025 % PERCENT SIGN sign & 12346 \x0026 & AMPERSAND punctuation ' 6 \x0027 ' APOSTROPHE APOSTROPHE-QUOTE punctuation ( 236 \x0028 ( LEFT PARENTHESIS punctuation ) 356 \x0029 ) RIGHT PARENTHESIS sign * 35 \x002A * ASTERISK math + 235 \x002B + PLUS SIGN punctuation , 2 \x002C , COMMA punctuation - 36 \x002D - HYPHEN-MINUS punctuation . 3 \x002E . FULL STOP PERIOD punctuation / 256 \x002F / SOLIDUS SLASH include digits6DotsPlusDot6.uti punctuation : 25 \x003A : COLON punctuation ; 23 \x003B ; SEMICOLON math < 56 \x003C < LESS-THAN SIGN math = 2356 \x003D = EQUALS SIGN math > 45 \x003E > GREATER-THAN SIGN punctuation ? 26 \x003F ? QUESTION MARK sign @ 3457 \x0040 @ COMMERCIAL AT uppercase A 17 \x0041 A LATIN CAPITAL LETTER A uppercase B 127 \x0042 B LATIN CAPITAL LETTER B uppercase C 147 \x0043 C LATIN CAPITAL LETTER C uppercase D 1457 \x0044 D LATIN CAPITAL LETTER D uppercase E 157 \x0045 E LATIN CAPITAL LETTER E uppercase F 1247 \x0046 F LATIN CAPITAL LETTER F uppercase G 12457 \x0047 G LATIN CAPITAL LETTER G uppercase H 1257 \x0048 H LATIN CAPITAL LETTER H uppercase I 247 \x0049 I LATIN CAPITAL LETTER I uppercase J 2457 \x004A J LATIN CAPITAL LETTER J uppercase K 137 \x004B K LATIN CAPITAL LETTER K uppercase L 1237 \x004C L LATIN CAPITAL LETTER L uppercase M 1347 \x004D M LATIN CAPITAL LETTER M uppercase N 13457 \x004E N LATIN CAPITAL LETTER N uppercase O 1357 \x004F O LATIN CAPITAL LETTER O uppercase P 12347 \x0050 P LATIN CAPITAL LETTER P uppercase Q 123457 \x0051 Q LATIN CAPITAL LETTER Q uppercase R 12357 \x0052 R LATIN CAPITAL LETTER R uppercase S 2347 \x0053 S LATIN CAPITAL LETTER S uppercase T 23457 \x0054 T LATIN CAPITAL LETTER T uppercase U 1367 \x0055 U LATIN CAPITAL LETTER U uppercase V 12367 \x0056 V LATIN CAPITAL LETTER V uppercase W 24567 \x0057 W LATIN CAPITAL LETTER W uppercase X 13467 \x0058 X LATIN CAPITAL LETTER X uppercase Y 134567 \x0059 Y LATIN CAPITAL LETTER Y uppercase Z 13567 \x005A Z LATIN CAPITAL LETTER Z punctuation [ 123567 \x005B [ LEFT SQUARE BRACKET sign \\ 347 \x005C \ REVERSE SOLIDUS punctuation ] 234567 \x005D ] RIGHT SQUARE BRACKET sign ^ 23467 \x005E ^ CIRCUMFLEX ACCENT sign _ 4567 \x005F _ LOW LINE sign ` 345 \x0060 ` GRAVE ACCENT lowercase a 1 \x0061 a LATIN SMALL LETTER A lowercase b 12 \x0062 a LATIN SMALL LETTER B lowercase c 14 \x0063 a LATIN SMALL LETTER C lowercase d 145 \x0064 a LATIN SMALL LETTER D lowercase e 15 \x0065 a LATIN SMALL LETTER E lowercase f 124 \x0066 a LATIN SMALL LETTER F lowercase g 1245 \x0067 a LATIN SMALL LETTER G lowercase h 125 \x0068 a LATIN SMALL LETTER H lowercase i 24 \x0069 a LATIN SMALL LETTER I lowercase j 245 \x006A a LATIN SMALL LETTER J lowercase k 13 \x006B a LATIN SMALL LETTER K lowercase l 123 \x006C a LATIN SMALL LETTER L lowercase m 134 \x006D a LATIN SMALL LETTER M lowercase n 1345 \x006E a LATIN SMALL LETTER N lowercase o 135 \x006F o LATIN SMALL LETTER O lowercase p 1234 \x0070 p LATIN SMALL LETTER P lowercase q 12345 \x0071 q LATIN SMALL LETTER Q lowercase r 1235 \x0072 r LATIN SMALL LETTER R lowercase s 234 \x0073 s LATIN SMALL LETTER S lowercase t 2345 \x0074 t LATIN SMALL LETTER T lowercase u 136 \x0075 u LATIN SMALL LETTER U lowercase v 1236 \x0076 v LATIN SMALL LETTER V lowercase w 2456 \x0077 w LATIN SMALL LETTER W lowercase x 1346 \x0078 x LATIN SMALL LETTER X lowercase y 13456 \x0079 y LATIN SMALL LETTER Y lowercase z 1356 \x007A z LATIN SMALL LETTER Z punctuation { 12356 \x007B { LEFT CURLY BRACKET sign | 34 \x007C | VERTICAL LINE punctuation } 23456 \x007D } RIGHT CURLY BRACKET sign ~ 2346 \x007E ~ TILDE sign \x007F 456 \x007F  [DELETE] # 457 \x0080 € # 8 \x0081  # 3678 \x0082 ‚ [BREAK PERMITTED HERE] # 78 \x0083 ƒ [NO BREAK HERE] # 1268 \x0084 „ # 238 \x0085 … [NEXT LINE (NEL)] # 1248 \x0086 † [START OF SELECTED AREA] # 12458 \x0087 ‡ [END OF SELECTED AREA] # 378 \x0088 ˆ [CHARACTER TABULATION SET] # 248 \x0089 ‰ [CHARACTER TABULATION WITH JUSTIFICATION] # 678 \x008A Š [LINE TABULATION SET] # 27 \x008B ‹ [PARTIAL LINE FORWARD] # 237 \x008C Œ [PARTIAL LINE BACKWARD] # 257 \x008D  [REVERSE LINE FEED] # 12567 \x008E Ž [SINGLE SHIFT TWO] # 12467 \x008F  [SINGLE SHIFT THREE] # 124678 \x0090  [DEVICE CONTROL STRING] # 23567 \x0091 ‘ [PRIVATE USE ONE] # 2367 \x0092 ’ [PRIVATE USE TWO] # 138 \x0093 “ [SET TRANSMIT STATE] # 1238 \x0094 ” [CANCEL CHARACTER] # 278 \x0095 • [MESSAGE WAITING] # 2378 \x0096 – [START OF GUARDED AREA] # 13568 \x0097 — [END OF GUARDED AREA] # 2578 \x0098 ˜ [START OF STRING] # 1245678 \x0099 ™ # 2678 \x009A š [SINGLE CHARACTER INTRODUCER] # 123458 \x009B › [CONTROL SEQUENCE INTRODUCER] # 67 \x009C œ [STRING TERMINATOR] # 124567 \x009D  [OPERATING SYSTEM COMMAND] # 235678 \x009E ž [PRIVACY MESSAGE] # 12345678 \x009F Ÿ [APPLICATION PROGRAM COMMAND] space \x00a0 7 \x00A0   NO-BREAK SPACE punctuation ¡ 367 \x00A1 ¡ INVERTED EXCLAMATION MARK sign ¢ 58 \x00A2 ¢ CENT SIGN sign £ 467 \x00A3 £ POUND SIGN sign ¤ 4678 \x00A4 ¤ CURRENCY SIGN sign Â¥ 468 \x00A5 ¥ YEN SIGN sign ¦ 158 \x00A6 ¦ BROKEN BAR sign § 357 \x00A7 § SECTION SIGN sign ¨ 48 \x00A8 ¨ DIAERESIS sign © 123468 \x00A9 © COPYRIGHT SIGN sign ª 1258 \x00AA ª FEMININE ORDINAL INDICATOR punctuation « 5678 \x00AB « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK sign ¬ 25678 \x00AC ¬ NOT SIGN sign ­ 368 \x00AD ­ SOFT HYPHEN sign ® 12358 \x00AE ® REGISTERED SIGN sign ¯ 458 \x00AF ¯ MACRON sign ° 4568 \x00B0 ° DEGREE SIGN math ± 23578 \x00B1 ± PLUS-MINUS SIGN sign ² 128 \x00B2 ² SUPERSCRIPT TWO sign ³ 148 \x00B3 ³ SUPERSCRIPT THREE sign ´ 568 \x00B4 ´ ACUTE ACCENT sign µ 1348 \x00B5 µ MICRO SIGN sign ¶ 1458 \x00B6 ¶ PILCROW SIGN sign · 37 \x00B7 · MIDDLE DOT sign ¸ 68 \x00B8 ¸ CEDILLA sign ¹ 18 \x00B9 ¹ SUPERSCRIPT ONE sign º 2458 \x00BA º MASCULINE ORDINAL INDICATOR punctuation » 4578 \x00BB » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK math ¼ 1368 \x00BC ¼ VULGAR FRACTION ONE QUARTER math ½ 12368 \x00BD ½ VULGAR FRACTION ONE HALF math ¾ 13468 \x00BE ¾ VULGAR FRACTION THREE QUARTERS punctuation ¿ 38 \x00BF ¿ INVERTED QUESTION MARK uppercase À 23678 \x00C0 À LATIN CAPITAL LETTER A WITH GRAVE uppercase à 28 \x00C1 Á LATIN CAPITAL LETTER A WITH ACUTE uppercase  167 \x00C2  LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase à 3467 \x00C3 à LATIN CAPITAL LETTER A WITH TILDE uppercase Ä 567 \x00C4 Ä LATIN CAPITAL LETTER A WITH DIAERESIS uppercase Ã… 34567 \x00C5 Å LATIN CAPITAL LETTER A WITH RING ABOVE uppercase Æ 47 \x00C6 Æ LATIN CAPITAL LETTER AE uppercase Ç 123467 \x00C7 Ç LATIN CAPITAL LETTER C WITH CEDILLA uppercase È 3578 \x00C8 È LATIN CAPITAL LETTER E WITH GRAVE uppercase É 1234567 \x00C9 É LATIN CAPITAL LETTER E WITH ACUTE uppercase Ê 1267 \x00CA Ê LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase Ë 2358 \x00CB Ë LATIN CAPITAL LETTER E WITH DIAERESIS uppercase ÃŒ 57 \x00CC Ì LATIN CAPITAL LETTER I WITH GRAVE uppercase à 258 \x00CD Í LATIN CAPITAL LETTER I WITH ACUTE uppercase ÃŽ 1467 \x00CE Î LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase à 23568 \x00CF Ï LATIN CAPITAL LETTER I WITH DIAERESIS uppercase à 3567 \x00D0 Ð LATIN CAPITAL LETTER ETH uppercase Ñ 2567 \x00D1 Ñ LATIN CAPITAL LETTER N WITH TILDE uppercase Ã’ 578 \x00D2 Ò LATIN CAPITAL LETTER O WITH GRAVE uppercase Ó 2568 \x00D3 Ó LATIN CAPITAL LETTER O WITH ACUTE uppercase Ô 14567 \x00D4 Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase Õ 267 \x00D5 Õ LATIN CAPITAL LETTER O WITH TILDE uppercase Ö 358 \x00D6 Ö LATIN CAPITAL LETTER O WITH DIAERESIS math × 2348 \x00D7 × MULTIPLICATION SIGN uppercase Ø 2467 \x00D8 Ø LATIN CAPITAL LETTER O WITH STROKE uppercase Ù 35678 \x00D9 Ù LATIN CAPITAL LETTER U WITH GRAVE uppercase Ú 268 \x00DA Ú LATIN CAPITAL LETTER U WITH ACUTE uppercase Û 1567 \x00DB Û LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase Ü 2368 \x00DC Ü LATIN CAPITAL LETTER U WITH DIAERESIS uppercase à 3568 \x00DD Ý LATIN CAPITAL LETTER Y WITH ACUTE uppercase Þ 2357 \x00DE Þ LATIN CAPITAL LETTER THORN lowercase ß 34568 \x00DF ß LATIN SMALL LETTER SHARP S lowercase à 123568 \x00E0 à LATIN SMALL LETTER A WITH GRAVE lowercase á 168 \x00E1 á LATIN SMALL LETTER A WITH ACUTE lowercase â 1678 \x00E2 â LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase ã 34678 \x00E3 ã LATIN SMALL LETTER A WITH TILDE lowercase ä 3458 \x00E4 ä LATIN SMALL LETTER A WITH DIAERESIS lowercase Ã¥ 345678 \x00E5 å LATIN SMALL LETTER A WITH RING ABOVE lowercase æ 478 \x00E6 æ LATIN SMALL LETTER AE lowercase ç 1234678 \x00E7 ç LATIN SMALL LETTER C WITH CEDILLA lowercase è 23468 \x00E8 è LATIN SMALL LETTER E WITH GRAVE lowercase é 1234568 \x00E9 é LATIN SMALL LETTER E WITH ACUTE lowercase ê 12678 \x00EA ê LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase ë 12468 \x00EB ë LATIN SMALL LETTER E WITH DIAERESIS lowercase ì 348 \x00EC ì LATIN SMALL LETTER I WITH GRAVE lowercase í 1468 \x00ED í LATIN SMALL LETTER I WITH ACUTE lowercase î 14678 \x00EE î LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase ï 124568 \x00EF ï LATIN SMALL LETTER I WITH DIAERESIS lowercase ð 23458 \x00F0 ð LATIN SMALL LETTER ETH lowercase ñ 13458 \x00F1 ñ LATIN SMALL LETTER N WITH TILDE lowercase ò 3468 \x00F2 ò LATIN SMALL LETTER O WITH GRAVE lowercase ó 14568 \x00F3 ó LATIN SMALL LETTER O WITH ACUTE lowercase ô 145678 \x00F4 ô LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase õ 1358 \x00F5 õ LATIN SMALL LETTER O WITH TILDE lowercase ö 2468 \x00F6 ö LATIN SMALL LETTER O WITH DIAERESIS math ÷ 125678 \x00F7 ÷ DIVISION SIGN lowercase ø 24678 \x00F8 ø LATIN SMALL LETTER O WITH STROKE lowercase ù 234568 \x00F9 ù LATIN SMALL LETTER U WITH GRAVE lowercase ú 1568 \x00FA ú LATIN SMALL LETTER U WITH ACUTE lowercase û 15678 \x00FB û LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase ü 12568 \x00FC ü LATIN SMALL LETTER U WITH DIAERESIS lowercase ý 24568 \x00FD ý LATIN SMALL LETTER Y WITH ACUTE lowercase þ 12348 \x00FE þ LATIN SMALL LETTER THORN lowercase ÿ 134568 \x00FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/hyph_eo.dic0000664000175000017500000002465312161041546013666 00000000000000UTF-8 % Du vokaloj disigas silabon % a-a a-e a-i a-o a-u % e-a e-e e-i e-o e-u % i-a i-e i-i i-o i-u % o-a o-e o-i o-o o-u % u-a u-e u-i u-o u-u a1a a1e a1i a1o a1u e1a e1e e1i e1o e1u i1a i1e i1i i1o i1u o1a o1e o1i o1o o1u u1a u1e u1i u1o u1u % Konsonanto + vokalo disigas la silabon antaÅ­ la konsonanto % -ba -be -bi -bo -bu % -ca -ce -ci -co -cu % -ĉa -ĉe -ĉi -ĉo -ĉu % -da -de -di -do -du % -fa -fe -fi -fo -fu % -ga -ge -gi -go -gu % -Äa -Äe -Äi -Äo -Äu % -ha -he -hi -ho -hu % -Ä¥a -Ä¥e -Ä¥i -Ä¥o -Ä¥u % -ja -je -ji -jo -ju % -ĵa -ĵe -ĵi -ĵo -ĵu % -ka -ke -ki -ko -ku % -la -le -li -lo -lu % -ma -me -mi -mo -mu % -na -ne -ni -no -nu % -pa -pe -pi -po -pu % -ra -re -ri -ro -ru % -sa -se -si -so -su % -Åa -Åe -Åi -Åo -Åu % -ta -te -ti -to -tu % -Å­a -Å­e -Å­i -Å­o -Å­u % -va -ve -vi -vo -vu % -za -ze -zi -zo -zu 1ba 1be 1bi 1bo 1bu 1ca 1ce 1ci 1co 1cu 1ĉa 1ĉe 1ĉi 1ĉo 1ĉu 1da 1de 1di 1do 1du 1fa 1fe 1fi 1fo 1fu 1ga 1ge 1gi 1go 1gu 1Äa 1Äe 1Äi 1Äo 1Äu 1ha 1he 1hi 1ho 1hu 1Ä¥a 1Ä¥e 1Ä¥i 1Ä¥o 1Ä¥u 1ja 1je 1ji 1jo 1ju 1ĵa 1ĵe 1ĵi 1ĵo 1ĵu 1ka 1ke 1ki 1ko 1ku 1la 1le 1li 1lo 1lu 1ma 1me 1mi 1mo 1mu 1na 1ne 1ni 1no 1nu 1pa 1pe 1pi 1po 1pu 1ra 1re 1ri 1ro 1ru 1sa 1se 1si 1so 1su 1Åa 1Åe 1Åi 1Åo 1Åu 1ta 1te 1ti 1to 1tu 1Å­a 1Å­e 1Å­i 1Å­o 1Å­u 1va 1ve 1vi 1vo 1vu 1za 1ze 1zi 1zo 1zu % La jenaj konsonantoj kunigitaj agas kvazaÅ­ unu sola sono % -fra -fre -fri -fro -fru % -kra -kre -kri -kro -kru % -pra -pre -pri -pro -pru % -tra -tre -tri -tro -tru % -vra -vre -vri -vro -vru % -gra -gre -gri -gro -gru % -bra -bre -bri -bro -bru % -dra -dre -dri -dro -dru % -fla -fle -fli -flo -flu % -kla -kle -kli -klo -klu % -pla -ple -pli -plo -plu % -tla -tle -tli -tlo -tlu % -vla -vle -vli -vlo -vlu % -gla -gle -gli -glo -glu % -bla -ble -bli -blo -blu % -kna -kne -kni -kno -knu % -gna -gne -gni -gno -gnu % -ksa -kse -ksi -kso -ksu % -psa -pse -psi -pso -psu % -kva -kve -kvi -kvo -kvu % -gva -gve -gvi -gvo -gvu % -kÅ­a -kÅ­e -kÅ­i -kÅ­o -kÅ­u % -gÅ­a -gÅ­e -gÅ­i -gÅ­o -gÅ­u % -ĉja -ĉje -ĉji -ĉjo -ĉju % -nja -nje -nji -njo -nju 1fra 1fre 1fri 1fro 1fru 1kra 1kre 1kri 1kro 1kru 1pra 1pre 1pri 1pro 1pru 1tra 1tre 1tri 1tro 1tru 1vra 1vre 1vri 1vro 1vru 1gra 1gre 1gri 1gro 1gru 1bra 1bre 1bri 1bro 1bru 1dra 1dre 1dri 1dro 1dru 1fla 1fle 1fli 1flo 1flu 1kla 1kle 1kli 1klo 1klu 1pla 1ple 1pli 1plo 1plu 1tla 1tle 1tli 1tlo 1tlu 1vla 1vle 1vli 1vlo 1vlu 1gla 1gle 1gli 1glo 1glu 1bla 1ble 1bli 1blo 1blu 1kna 1kne 1kni 1kno 1knu 1gna 1gne 1gni 1gno 1gnu 1ksa 1kse 1ksi 1kso 1ksu 1psa 1pse 1psi 1pso 1psu 1kva 1kve 1kvi 1kvo 1kvu 1gva 1gve 1gvi 1gvo 1gvu 1kÅ­a 1kÅ­e 1kÅ­i 1kÅ­o 1kÅ­u 1gÅ­a 1gÅ­e 1gÅ­i 1gÅ­o 1gÅ­u 1ĉja 1ĉje 1ĉji 1ĉjo 1ĉju 1nja 1nje 1nji 1njo 1nju % Nun, la kombinoj komencantaj per S kaj Åœ % -sca -sce -sci -sco -scu % -sfa -sfe -sfi -sfo -sfu % -sja -sje -sji -sjo -sju % -Åja -Åje -Åji -Åjo -Åju % -ska -ske -ski -sko -sku % -Åka -Åke -Åki -Åko -Åku % -skla -skle -skli -sklo -sklu % -skra -skre -skri -skro -skru % -skva -skve -skvi -skvo -skvu % -skÅ­a -skÅ­e -skÅ­i -skÅ­o -skÅ­u % -sla -sle -sli -slo -slu % -Åla -Åle -Åli -Ålo -Ålu % -sma -sme -smi -smo -smu % -Åma -Åme -Åmi -Åmo -Åmu % -sna -sne -sni -sno -snu % -Åna -Åne -Åni -Åno -Ånu % -spa -spe -spi -spo -spu % -Åpa -Åpe -Åpi -Åpo -Åpu % -spla -sple -spli -splo -splu % -Åpla -Åple -Åpli -Åplo -Åplu % -spra -spre -spri -spro -spru % -Åpra -Åpre -Åpri -Åpro -Åpru % -sra -sre -sri -sro -sru % -Åra -Åre -Åri -Åro -Åru % -sta -ste -sti -sto -stu % -Åta -Åte -Åti -Åto -Åtu % -stra -stre -stri -stro -stru % -Åtra -Åtre -Åtri -Åtro -Åtru % -sva -sve -svi -svo -svu % -Åva -Åve -Åvi -Åvo -Åvu 1sca 1sce 1sci 1sco 1scu 1sfa 1sfe 1sfi 1sfo 1sfu 1sja 1sje 1sji 1sjo 1sju 1Åja 1Åje 1Åji 1Åjo 1Åju 1ska 1ske 1ski 1sko 1sku 1Åka 1Åke 1Åki 1Åko 1Åku 1skla 1skle 1skli 1sklo 1sklu 1skra 1skre 1skri 1skro 1skru 1skva 1skve 1skvi 1skvo 1skvu 1skÅ­a 1skÅ­e 1skÅ­i 1skÅ­o 1skÅ­u 1sla 1sle 1sli 1slo 1slu 1Åla 1Åle 1Åli 1Ålo 1Ålu 1sma 1sme 1smi 1smo 1smu 1Åma 1Åme 1Åmi 1Åmo 1Åmu 1sna 1sne 1sni 1sno 1snu 1Åna 1Åne 1Åni 1Åno 1Ånu 1spa 1spe 1spi 1spo 1spu 1Åpa 1Åpe 1Åpi 1Åpo 1Åpu 1spla 1sple 1spli 1splo 1splu 1Åpla 1Åple 1Åpli 1Åplo 1Åplu 1spra 1spre 1spri 1spro 1spru 1Åpra 1Åpre 1Åpri 1Åpro 1Åpru 1sra 1sre 1sri 1sro 1sru 1Åra 1Åre 1Åri 1Åro 1Åru 1sta 1ste 1sti 1sto 1stu 1Åta 1Åte 1Åti 1Åto 1Åtu 1stra 1stre 1stri 1stro 1stru 1Åtra 1Åtre 1Åtri 1Åtro 1Åtru 1sva 1sve 1svi 1svo 1svu 1Åva 1Åve 1Åvi 1Åvo 1Åvu % Sed, se antaÅ­ S aÅ­ Åœ venas vokalo aÅ­ [k,p,t,b,d,n,j,Å­], S aÅ­ Åœ restas apud ili % as-c as-f as-j aÅ-j as-k aÅ-k as-kl as-kr as-kv as-kÅ­ as-l aÅ-l as-m aÅ-m as-n aÅ-n as-p aÅ-p as-pl aÅ-pl as-pr aÅ-pr as-r aÅ-r as-t aÅ-t as-tr aÅ-tr as-v aÅ-v % es-c es-f es-j eÅ-j es-k eÅ-k es-kl es-kr es-kv es-kÅ­ es-l eÅ-l es-m eÅ-m es-n eÅ-n es-p eÅ-p es-pl eÅ-pl es-pr eÅ-pr es-r eÅ-r es-t eÅ-t es-tr eÅ-tr es-v eÅ-v % is-c is-f is-j iÅ-j is-k iÅ-k is-kl is-kr is-kv is-kÅ­ is-l iÅ-l is-m iÅ-m is-n iÅ-n is-p iÅ-p is-pl iÅ-pl is-pr iÅ-pr is-r iÅ-r is-t iÅ-t is-tr iÅ-tr is-v iÅ-v % os-c os-f os-j oÅ-j os-k oÅ-k os-kl os-kr os-kv os-kÅ­ os-l oÅ-l os-m oÅ-m os-n oÅ-n os-p oÅ-p os-pl oÅ-pl os-pr oÅ-pr os-r oÅ-r os-t oÅ-t os-tr oÅ-tr os-v oÅ-v % us-c us-f us-j uÅ-j us-k uÅ-k us-kl us-kr us-kv us-kÅ­ us-l uÅ-l us-m uÅ-m us-n uÅ-n us-p uÅ-p us-pl uÅ-pl us-pr uÅ-pr us-r uÅ-r us-t uÅ-t us-tr uÅ-tr us-v uÅ-v % ks-c ks-f ks-j kÅ-j ks-k kÅ-k ks-kl ks-kr ks-kv ks-kÅ­ ks-l kÅ-l ks-m kÅ-m ks-n kÅ-n ks-p kÅ-p ks-pl kÅ-pl ks-pr kÅ-pr ks-r kÅ-r ks-t kÅ-t ks-tr kÅ-tr ks-v kÅ-v % ps-c ps-f ps-j pÅ-j ps-k pÅ-k ps-kl ps-kr ps-kv ps-kÅ­ ps-l pÅ-l ps-m pÅ-m ps-n pÅ-n ps-p pÅ-p ps-pl pÅ-pl ps-pr pÅ-pr ps-r pÅ-r ps-t pÅ-t ps-tr pÅ-tr ps-v pÅ-v % ts-c ts-f ts-j tÅ-j ts-k tÅ-k ts-kl ts-kr ts-kv ts-kÅ­ ts-l tÅ-l ts-m tÅ-m ts-n tÅ-n ts-p tÅ-p ts-pl tÅ-pl ts-pr tÅ-pr ts-r tÅ-r ts-t tÅ-t ts-tr tÅ-tr ts-v tÅ-v % bs-c bs-f bs-j bÅ-j bs-k bÅ-k bs-kl bs-kr bs-kv bs-kÅ­ bs-l bÅ-l bs-m bÅ-m bs-n bÅ-n bs-p bÅ-p bs-pl bÅ-pl bs-pr bÅ-pr bs-r bÅ-r bs-t bÅ-t bs-tr bÅ-tr bs-v bÅ-v % ds-c ds-f ds-j dÅ-j ds-k dÅ-k ds-kl ds-kr ds-kv ds-kÅ­ ds-l dÅ-l ds-m dÅ-m ds-n dÅ-n ds-p dÅ-p ds-pl dÅ-pl ds-pr dÅ-pr ds-r dÅ-r ds-t dÅ-t ds-tr dÅ-tr ds-v dÅ-v % ns-c ns-f ns-j nÅ-j ns-k nÅ-k ns-kl ns-kr ns-kv ns-kÅ­ ns-l nÅ-l ns-m nÅ-m ns-n nÅ-n ns-p nÅ-p ns-pl nÅ-pl ns-pr nÅ-pr ns-r nÅ-r ns-t nÅ-t ns-tr nÅ-tr ns-v nÅ-v % js-c js-f js-j jÅ-j js-k jÅ-k js-kl js-kr js-kv js-kÅ­ js-l jÅ-l js-m jÅ-m js-n jÅ-n js-p jÅ-p js-pl jÅ-pl js-pr jÅ-pr js-r jÅ-r js-t jÅ-t js-tr jÅ-tr js-v jÅ-v % Å­s-c Å­s-f Å­s-j Å­Å-j Å­s-k Å­Å-k Å­s-kl Å­s-kr Å­s-kv Å­s-kÅ­ Å­s-l Å­Å-l Å­s-m Å­Å-m Å­s-n Å­Å-n Å­s-p Å­Å-p Å­s-pl Å­Å-pl Å­s-pr Å­Å-pr Å­s-r Å­Å-r Å­s-t Å­Å-t Å­s-tr Å­Å-tr Å­s-v Å­Å-v a2s1c a2s1f a2s1j a2Å1j a2s1k a2Å1k a2s1kl a2s1kr a2s1kv a2s1kÅ­ a2s1l a2Å1l a2s1m a2Å1m a2s1n a2Å1n a2s1p a2Å1p a2s1pl a2Å1pl a2s1pr a2Å1pr a2s1r a2Å1r a2s1t a2Å1t a2s1tr a2Å1tr a2s1v a2Å1v e2s1c e2s1f e2s1j e2Å1j e2s1k e2Å1k e2s1kl e2s1kr e2s1kv e2s1kÅ­ e2s1l e2Å1l e2s1m e2Å1m e2s1n e2Å1n e2s1p e2Å1p e2s1pl e2Å1pl e2s1pr e2Å1pr e2s1r e2Å1r e2s1t e2Å1t e2s1tr e2Å1tr e2s1v e2Å1v i2s1c i2s1f i2s1j i2Å1j i2s1k i2Å1k i2s1kl i2s1kr i2s1kv i2s1kÅ­ i2s1l i2Å1l i2s1m i2Å1m i2s1n i2Å1n i2s1p i2Å1p i2s1pl i2Å1pl i2s1pr i2Å1pr i2s1r i2Å1r i2s1t i2Å1t i2s1tr i2Å1tr i2s1v i2Å1v o2s1c o2s1f o2s1j o2Å1j o2s1k o2Å1k o2s1kl o2s1kr o2s1kv o2s1kÅ­ o2s1l o2Å1l o2s1m o2Å1m o2s1n o2Å1n o2s1p o2Å1p o2s1pl o2Å1pl o2s1pr o2Å1pr o2s1r o2Å1r o2s1t o2Å1t o2s1tr o2Å1tr o2s1v o2Å1v u2s1c u2s1f u2s1j u2Å1j u2s1k u2Å1k u2s1kl u2s1kr u2s1kv u2s1kÅ­ u2s1l u2Å1l u2s1m u2Å1m u2s1n u2Å1n u2s1p u2Å1p u2s1pl u2Å1pl u2s1pr u2Å1pr u2s1r u2Å1r u2s1t u2Å1t u2s1tr u2Å1tr u2s1v u2Å1v k2s1c k2s1f k2s1j k2Å1j k2s1k k2Å1k k2s1kl k2s1kr k2s1kv k2s1kÅ­ k2s1l k2Å1l k2s1m k2Å1m k2s1n k2Å1n k2s1p k2Å1p k2s1pl k2Å1pl k2s1pr k2Å1pr k2s1r k2Å1r k2s1t k2Å1t k2s1tr k2Å1tr k2s1v k2Å1v p2s1c p2s1f p2s1j p2Å1j p2s1k p2Å1k p2s1kl p2s1kr p2s1kv p2s1kÅ­ p2s1l p2Å1l p2s1m p2Å1m p2s1n p2Å1n p2s1p p2Å1p p2s1pl p2Å1pl p2s1pr p2Å1pr p2s1r p2Å1r p2s1t p2Å1t p2s1tr p2Å1tr p2s1v p2Å1v t2s1c t2s1f t2s1j t2Å1j t2s1k t2Å1k t2s1kl t2s1kr t2s1kv t2s1kÅ­ t2s1l t2Å1l t2s1m t2Å1m t2s1n t2Å1n t2s1p t2Å1p t2s1pl t2Å1pl t2s1pr t2Å1pr t2s1r t2Å1r t2s1t t2Å1t t2s1tr t2Å1tr t2s1v t2Å1v b2s1c b2s1f b2s1j b2Å1j b2s1k b2Å1k b2s1kl b2s1kr b2s1kv b2s1kÅ­ b2s1l b2Å1l b2s1m b2Å1m b2s1n b2Å1n b2s1p b2Å1p b2s1pl b2Å1pl b2s1pr b2Å1pr b2s1r b2Å1r b2s1t b2Å1t b2s1tr b2Å1tr b2s1v b2Å1v d2s1c d2s1f d2s1j d2Å1j d2s1k d2Å1k d2s1kl d2s1kr d2s1kv d2s1kÅ­ d2s1l d2Å1l d2s1m d2Å1m d2s1n d2Å1n d2s1p d2Å1p d2s1pl d2Å1pl d2s1pr d2Å1pr d2s1r d2Å1r d2s1t d2Å1t d2s1tr d2Å1tr d2s1v d2Å1v n2s1c n2s1f n2s1j n2Å1j n2s1k n2Å1k n2s1kl n2s1kr n2s1kv n2s1kÅ­ n2s1l n2Å1l n2s1m n2Å1m n2s1n n2Å1n n2s1p n2Å1p n2s1pl n2Å1pl n2s1pr n2Å1pr n2s1r n2Å1r n2s1t n2Å1t n2s1tr n2Å1tr n2s1v n2Å1v j2s1c j2s1f j2s1j j2Å1j j2s1k j2Å1k j2s1kl j2s1kr j2s1kv j2s1kÅ­ j2s1l j2Å1l j2s1m j2Å1m j2s1n j2Å1n j2s1p j2Å1p j2s1pl j2Å1pl j2s1pr j2Å1pr j2s1r j2Å1r j2s1t j2Å1t j2s1tr j2Å1tr j2s1v j2Å1v Å­2s1c Å­2s1f Å­2s1j Å­2Å1j Å­2s1k Å­2Å1k Å­2s1kl Å­2s1kr Å­2s1kv Å­2s1kÅ­ Å­2s1l Å­2Å1l Å­2s1m Å­2Å1m Å­2s1n Å­2Å1n Å­2s1p Å­2Å1p Å­2s1pl Å­2Å1pl Å­2s1pr Å­2Å1pr Å­2s1r Å­2Å1r Å­2s1t Å­2Å1t Å­2s1tr Å­2Å1tr Å­2s1v Å­2Å1v % Esceptoj 3p2neÅ­ hi3p2n 3ka2p3n liblouis-2.5.3/tables/no-no.dis0000664000175000017500000003163712161041546013301 00000000000000# File: no-no.dis # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com . # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # This is to be used with Norwegian translation tables. # BRLTTY Text Translation Table - Norwegian (iso-8859-1), based on the # Offentlig Utvalg for Blindeskrift (Public Commission for Braille) # translation table for Windows 1252. # Updated January 2008. # display \X0000 4578 # 000 null # display \X0000 0 # 000 null display \X0001 178 # 001 start of heading display \X0002 1278 # 002 start of text display \X0003 1478 # 003 end of text display \X0004 14578 # 004 end of transmission display \X0005 1578 # 005 enquiry display \X0006 12478 # 006 acknowledge display \X0007 124578 # 007 bell display \X0008 12578 # 008 backspace # display \X0009 2478 # 009 horizontal tabulation # display \X000A 24578 # 010 line feed # display \X000B 1378 # 011 vertical tabulation # display \X000C 12378 # 012 form feed # display \X000D 13478 # 013 carriage return display \X000E 134578 # 014 shift out display \X000F 13578 # 015 shift in display \X0010 123478 # 016 data link escape display \X0011 1234578 # 017 device control one display \X0012 123578 # 018 device control two display \X0013 23478 # 019 device control three display \X0014 234578 # 020 device control four display \X0015 13678 # 021 negative acknowledge display \X0016 123678 # 022 synchronous idle display \X0017 245678 # 023 end of transmission block display \X0018 134678 # 024 cancel display \X0019 1345678 # 025 end of medium display \X001A 135678 # 026 substitute # display \X001B 12348 # 027 escape display \X001C 123458 # 028 file separator display \X001D 1368 # 029 group separator display \X001E 24568 # 030 record separator display \X001F 13568 # 031 unit separator # display \X0020 0 # 032 space display \X0021 235 # 033 exclamation mark display \X0022 256 # 034 quotation mark display \X0023 3456 # 035 number sign display \X0024 25678 # 036 dollar sign display \X0025 46 # 037 percent sign display \X0026 578 # 038 ampersand display \X0027 5 # 039 apostrophe display \X0028 236 # 040 left parenthesis display \X0029 356 # 041 right parenthesis display \X002A 35 # 042 asterisk display \X002B 2357 # 043 plus sign display \X002C 2 # 044 comma display \X002D 36 # 045 hyphen-minus display \X002E 3 # 046 full stop display \X002F 57 # 047 solidus display \X0030 2458 # 048 digit zero display \X0031 18 # 049 digit one display \X0032 128 # 050 digit two display \X0033 148 # 051 digit three display \X0034 1458 # 052 digit four display \X0035 158 # 053 digit five display \X0036 1248 # 054 digit six display \X0037 12458 # 055 digit seven display \X0038 1258 # 056 digit eight display \X0039 248 # 057 digit nine display \X003A 25 # 058 colon display \X003B 23 # 059 semicolon display \X003C 358 # 060 less-than sign display \X003D 2356 # 061 equals sign display \X003E 267 # 062 greater-than sign display \X003F 26 # 063 question mark display \X0040 4 # 064 commercial at display \X0041 17 # 065 latin capital letter a display \X0042 127 # 066 latin capital letter b display \X0043 147 # 067 latin capital letter c display \X0044 1457 # 068 latin capital letter d display \X0045 157 # 069 latin capital letter e display \X0046 1247 # 070 latin capital letter f display \X0047 12457 # 071 latin capital letter g display \X0048 1257 # 072 latin capital letter h display \X0049 247 # 073 latin capital letter i display \X004A 2457 # 074 latin capital letter j display \X004B 137 # 075 latin capital letter k display \X004C 1237 # 076 latin capital letter l display \X004D 1347 # 077 latin capital letter m display \X004E 13457 # 078 latin capital letter n display \X004F 1357 # 079 latin capital letter o display \X0050 12347 # 080 latin capital letter p display \X0051 123457 # 081 latin capital letter q display \X0052 12357 # 082 latin capital letter r display \X0053 2347 # 083 latin capital letter s display \X0054 23457 # 084 latin capital letter t display \X0055 1367 # 085 latin capital letter u display \X0056 12367 # 086 latin capital letter v display \X0057 24567 # 087 latin capital letter w display \X0058 13467 # 088 latin capital letter x display \X0059 134567 # 089 latin capital letter y display \X005A 13567 # 090 latin capital letter z display \X005B 23678 # 091 left square bracket display \X005C 28 # 092 reverse solidus display \X005D 35678 # 093 right square bracket display \X005E 58 # 094 circumflex accent display \X005F 456 # 095 low line display \X0060 45 # 096 grave accent display \X0061 1 # 097 latin small letter a display \X0062 12 # 098 latin small letter b display \X0063 14 # 099 latin small letter c display \X0064 145 # 100 latin small letter d display \X0065 15 # 101 latin small letter e display \X0066 124 # 102 latin small letter f display \X0067 1245 # 103 latin small letter g display \X0068 125 # 104 latin small letter h display \X0069 24 # 105 latin small letter i display \X006A 245 # 106 latin small letter j display \X006B 13 # 107 latin small letter k display \X006C 123 # 108 latin small letter l display \X006D 134 # 109 latin small letter m display \X006E 1345 # 110 latin small letter n display \X006F 135 # 111 latin small letter o display \X0070 1234 # 112 latin small letter p display \X0071 12345 # 113 latin small letter q display \X0072 1235 # 114 latin small letter r display \X0073 234 # 115 latin small letter s display \X0074 2345 # 116 latin small letter t display \X0075 136 # 117 latin small letter u display \X0076 1236 # 118 latin small letter v display \X0077 2456 # 119 latin small letter w display \X0078 1346 # 120 latin small letter x display \X0079 13456 # 121 latin small letter y display \X007A 1356 # 122 latin small letter z display \X007B 238 # 123 left curly bracket display \X007C 56 # 124 vertical line display \X007D 567 # 125 right curly bracket display \X007E 38 # 126 tilde display \X007F 3578 # 127 delete display \X0080 2678 # 128 display \X0081 13458 # 129 display \X0082 67 # 130 break permitted here display \X0083 45678 # 131 no break here display \X0084 3567 # 132 display \X0085 37 # 133 next line display \X0086 47 # 134 start of selected area display \X0087 457 # 135 end of selected area display \X0088 468 # 136 character tabulation set display \X0089 4568 # 137 character tabulation with justification display \X008A 15678 # 138 line tabulation set display \X008B 378 # 139 partial line down display \X008C 12345678 # 140 partial line up display \X008D 478 # 141 reverse line feed display \X008E 234678 # 142 single shift two display \X008F 2367 # 143 single shift three display \X0090 2368 # 144 device control string display \X0091 367 # 145 private use one display \X0092 368 # 146 private use two display \X0093 23567 # 147 set transmit state display \X0094 23568 # 148 cancel character display \X0095 3678 # 149 message waiting display \X0096 68 # 150 start of guarded area display \X0097 568 # 151 end of guarded area display \X0098 2568 # 152 start of string display \X0099 23458 # 153 display \X009A 1568 # 154 single character introducer display \X009B 678 # 155 control sequence introducer display \X009C 1234568 # 156 string terminator display \X009D 235678 # 157 operating system command display \X009E 23468 # 158 privacy message display \X009F 125678 # 159 application program command display \X00A0 8 # 160 no-break space display \X00A1 2358 # 161 inverted exclamation mark display \X00A2 2578 # 162 cent sign display \X00A3 1238 # 163 pound sign display \X00A4 12368 # 164 currency sign display \X00A5 134568 # 165 yen sign display \X00A6 4567 # 166 broken bar display \X00A7 4678 # 167 section sign display \X00A8 258 # 168 diaeresis display \X00A9 138 # 169 copyright sign display \X00AA 278 # 170 feminine ordinal indicator display \X00AB 2378 # 171 left-pointing double angle quotation mark display \X00AC 357 # 172 not sign display \X00AD 78 # 173 soft hyphen display \X00AE 12358 # 174 registered sign display \X00AF 458 # 175 macron display \X00B0 3568 # 176 degree sign display \X00B1 23578 # 177 plus-minus sign display \X00B2 237 # 178 superscript two display \X00B3 257 # 179 superscript three display \X00B4 6 # 180 acute accent display \X00B5 1348 # 181 micro sign display \X00B6 467 # 182 pilcrow sign display \X00B7 7 # 183 middle dot display \X00B8 48 # 184 cedilla display \X00B9 27 # 185 superscript one display \X00BA 1358 # 186 masculine ordinal indicator display \X00BB 5678 # 187 right-pointing double angle quotation mark display \X00BC 34568 # 188 vulgar fraction one quarter display \X00BD 34567 # 189 vulgar fraction one half display \X00BE 345678 # 190 vulgar fraction three quarters display \X00BF 268 # 191 inverted question mark display \X00C0 1235678 # 192 latin capital letter a with grave display \X00C1 123567 # 193 latin capital letter a with acute display \X00C2 1678 # 194 latin capital letter a with circumflex display \X00C3 12678 # 195 latin capital letter a with tilde display \X00C4 34578 # 196 latin capital letter a with diaeresis display \X00C5 167 # 197 latin capital letter a with ring above display \X00C6 3457 # 198 latin capital letter ae display \X00C7 1234678 # 199 latin capital letter c with cedilla display \X00C8 23467 # 200 latin capital letter e with grave display \X00C9 1234567 # 201 latin capital letter e with acute display \X00CA 1267 # 202 latin capital letter e with circumflex display \X00CB 12467 # 203 latin capital letter e with diaeresis display \X00CC 3478 # 204 latin capital letter i with grave display \X00CD 347 # 205 latin capital letter i with acute display \X00CE 1467 # 206 latin capital letter i with circumflex display \X00CF 124567 # 207 latin capital letter i with diaeresis display \X00D0 145678 # 208 latin capital letter eth display \X00D1 1245678 # 209 latin capital letter n with tilde display \X00D2 34678 # 210 latin capital letter o with grave display \X00D3 3467 # 211 latin capital letter o with acute display \X00D4 14567 # 212 latin capital letter o with circumflex display \X00D5 14678 # 213 latin capital letter o with tilde display \X00D6 24678 # 214 latin capital letter o with diaeresis display \X00D7 13468 # 215 multiplication sign display \X00D8 2467 # 216 latin capital letter o with stroke display \X00D9 2345678 # 217 latin capital letter u with grave display \X00DA 234567 # 218 latin capital letter u with acute display \X00DB 1567 # 219 latin capital letter u with circumflex display \X00DC 12567 # 220 latin capital letter u with diaeresis display \X00DD 123467 # 221 latin capital letter y with acute display \X00DE 124678 # 222 latin capital letter thorn display \X00DF 2348 # 223 latin small letter sharp s display \X00E0 123568 # 224 latin small letter a with grave display \X00E1 12356 # 225 latin small letter a with acute display \X00E2 168 # 226 latin small letter a with circumflex display \X00E3 1268 # 227 latin small letter a with tilde display \X00E4 3458 # 228 latin small letter a with diaeresis display \X00E5 16 # 229 latin small letter a with ring above display \X00E6 345 # 230 latin small letter ae display \X00E7 123468 # 231 latin small letter c with cedilla display \X00E8 2346 # 232 latin small letter e with grave display \X00E9 123456 # 233 latin small letter e with acute display \X00EA 126 # 234 latin small letter e with circumflex display \X00EB 1246 # 235 latin small letter e with diaeresis display \X00EC 348 # 236 latin small letter i with grave display \X00ED 34 # 237 latin small letter i with acute display \X00EE 146 # 238 latin small letter i with circumflex display \X00EF 12456 # 239 latin small letter i with diaeresis display \X00F0 14568 # 240 latin small letter eth display \X00F1 124568 # 241 latin small letter n with tilde display \X00F2 3468 # 242 latin small letter o with grave display \X00F3 346 # 243 latin small letter o with acute display \X00F4 1456 # 244 latin small letter o with circumflex display \X00F5 1468 # 245 latin small letter o with tilde display \X00F6 2468 # 246 latin small letter o with diaeresis display \X00F7 2567 # 247 division sign display \X00F8 246 # 248 latin small letter o with stroke display \X00F9 234568 # 249 latin small letter u with grave display \X00FA 23456 # 250 latin small letter u with acute display \X00FB 156 # 251 latin small letter u with circumflex display \X00FC 1256 # 252 latin small letter u with diaeresis display \X00FD 12346 # 253 latin small letter y with acute display \X00FE 12468 # 254 latin small letter thorn display \X00FF 12568 # 255 latin small letter y with diaeresis liblouis-2.5.3/tables/kok.ctb0000664000175000017500000000167412161041546013026 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Konkani include devanagari.cti include text_nabcc.dis liblouis-2.5.3/tables/da-dk.dis0000664000175000017500000001645312161041546013232 00000000000000# Danish 8-dot Computer Braille Table # by Mike Sivill - #**** Display Codes display \s 0 display \x0000 8 # space marker display \x0001 178 display \x0002 1278 display \x0003 1478 display \x0004 14578 display \x0005 24568 display \x0006 12478 display \x0007 124578 display \x0008 12578 display \x0009 2478 display \x000A 678 display \x000B 1368 display \x000C 12378 display \x000D 257 display \x000E 134578 display \x000F 12358 display \x0010 123478 display \x0011 1234578 display \x0012 13568 display \x0013 4578 display \x0014 268 display \x0015 13678 display \x0016 278 display \x0017 3578 display \x0018 78 display \x0019 68 display \x001A 135678 display \x001B 2678 display \x001C 45678 display \x001D 12368 display \x001E 1234678 display \x001F 235678 display \x0020 2356 display \x0021 235 # ! display \x0022 2356 # Quote marks display \x0023 34568 # Number hash mark display \x0024 25678 # $ display \x0025 24578 display \x0026 123468 display \x0027 4 # Apostrophe display \x0028 2368 # left paren display \x0029 3568 # right paren display \x002A 35 # * display \x002B 2358 # + display \x002C 2 # , display \x002D 368 # - display \x002E 3 # . display \x002F 348 # / display \x0030 2458 # zero display \x0031 18 # one display \x0032 128 # two display \x0033 148 # three display \x0034 1458 $ four display \x0035 168 $ five display \x0036 1248 # six display \x0037 12458 # seven display \x0038 125 # eight display \x0039 24 # nine display \x003A 25 # colon display \x003B 23 # semicolon display \x003C 358 # less than display \x003D 23568 # equals display \x003E 267 # greater than display \x003F 26 # question mark display \x0040 478 # at sign display \x0041 17 # A display \x0042 127 # B display \x0043 147 # C display \x0044 145 # D display \x0045 157 # E display \x0046 1247 # F display \x0047 12457 # G display \x0048 1257 # H display \x0049 247 # I display \x004A 2457 # J display \x004B 137 # K display \x004C 1237 # L display \x004D 1347 # M display \x004E 13457 # N display \x004F 1357 # O display \x0050 12347 # P display \x0051 123457 # Q display \x0052 12357 # R display \x0053 2347 # S display \x0054 23457 # T display \x0055 1367 # U display \x0056 12367 # V display \x0057 24567 # W display \x0058 13467 # X display \x0059 134567 # Y display \x005A 13567 # Z display \x005B 23678 # left bracket display \x005C 347 # backslash display \x005D 35678 # right bracket display \x005E 12348 # caret display \x005F 3678 # underline display \x0060 5 # grave accent display \x0061 1 # a display \x0062 12 # b display \x0063 14 # c display \x0064 145 # d display \x0065 15 # e display \x0066 124 # f display \x0067 1245 # g display \x0068 125 # h display \x0069 24 # i display \x006A 245 # j display \x006B 13 # k display \x006C 123 # l display \x006D 134 # m display \x006E 1345 # n display \x006F 135 # o display \x0070 1234 # p display \x0071 12345 # q display \x0072 1235 # r display \x0073 234 # s display \x0074 2345 # t display \x0075 136 # u display \x0076 1236 # v display \x0077 2456 # w display \x0078 1346 # x display \x0079 13456 # y display \x007A 1345 # z display \x007B 123678 # left brace display \x007C 4568 # vertical bar display \x007D 345678 # right brace display \x007E 467 # tilde display \x007F 7 # del display \x20AC 1578 # euros display \x201A 457 # unknown display \x0192 58 # florin display \x201E 2378 # unknown display \x2026 6 # elipsis display \x2020 2357 # single dagger display \x2021 23578 # double dagger display \x02C6 5678 # unknown display \x2030 245678 # unknown display \x0260 23478 # unknown display \x2039 456 # unknown display \x0152 13578 # OE display \x017D 3467 # unknown display \x2018 47 # unknown apostrophe? display \x2019 48 # unknown apostrophe? display \x201C 237 # open double quote display \x201D 568 # close double quote display \x2022 37 # bullet display \x2013 36 # en dash display \x2014 367 # em dash display \x20DC 46 # tilde? display \x2122 234578 # trademark display \x0161 2348 # unknown display \x203A 4567 # unknown display \x0153 1358 # oe display \x017E 346 # unknown display \x0178 2345678 # unknown display \x00A0 0 # space display \x00A1 256 # inverted exclaim display \x00A2 2578 # cent sign display \x00A3 1238 # pounds sterling display \x00A4 2367 # ham (ng) display \x00A5 67 # yen display \x00A6 3478 # broken bar display \x00A7 578 # section display \x00A8 56 # diamond bullet display \x00A9 134678 # copyright display \x00AA 234678 # superscript a display \x00AB 57 # left double angle bracket display \x00AC 34567 # optional hyphen display \x00AD 378 # unknown display \x00AE 123567 # registered display \x00AF 23567 # macron display \x00B0 356 # degrees display \x00B1 123458 # plus or minus display \x00B2 238 # superscript 2 display \x00B3 258 # superscript 3 display \x00B4 468 # unknown display \x00B5 236 # greek letter mu display \x00B6 1234568 # paragraph display \x00B7 38 # space marker display \x00B8 4678 # cedilla display \x00B9 28 # superscript 1 display \x00bA 12345678 # degrees display \x00bB 567 # right double angle bracket display \x00bC 13458 # one-fourth display \x00bD 458 # one-half display \x00bE 3456 # three-fourths display \x00bF 34 # inverted question display \x00C0 123567 # a grave display \x00C1 1235678 # a acute display \x00C2 1678 # a circumflex display \x00C3 14678 # a tilde display \x00C4 34578 # a umlaut display \x00C5 167 # A display \x00C6 3457 # AE display \x00C7 123467 # c cedilla display \x00C8 23467 # e grave display \x00C9 1234567 # e acute display \x00CA 1267 # e circumflex display \x00CB 12467 # e umlaut display \x00CC 15678 # i grave display \x00CD 12678 # i acute display \x00CE 1467 # i circumflex display \x00CF 124567 # i umlaut display \x00D0 1345678 # eth display \x00D1 1245678 # any display \x00D2 124678 # o grave display \x00D3 34678 # o acute display \x00D4 14567 # o circumflex display \x00D5 145678 # o tilde display \x00D6 24678 # o umlaut display \x00D7 13468 # times display \x00D8 2467 # O display \x00D9 234567 # u grave display \x00DA 125678 # u acute display \x00DB 1567 # u circumflex display \x00DC 12567 # u umlaut display \x00DD 13478 # y acute display \x00DE 1378 # arrow bullet display \x00DF 23468 # s-zet display \x00E0 12356 # lc a grave display \x00E1 123568 # lc a acute display \x00E2 168 # lc a circumflex display \x00E3 1468 # lc a tilde display \x00E4 3458 # lc a umlaut display \x00E5 16 # lc a display \x00E6 345 # lc ae display \x00E7 12346 # lc c cedilla display \x00E8 2346 # lc e grave display \x00E9 123456 # lc e acute display \x00EA 126 # lc e circumflex display \x00EB 1246 # lc e umlaut display \x00EC 1568 # lc i grave display \x00ED 1268 # lc i acute display \x00EE 146 # lc i circumflex display \x00EF 12456 # lc i umlaut display \x00F0 134568 # lc eth display \x00F1 124568 # lc any display \x00F2 12468 # lc o grave display \x00F3 3468 # lc o acute display \x00F4 1456 # lc o circumflex display \x00F5 14568 # lc o tilde display \x00F6 2468 # lc o umlaut display \x00F7 2568 # divided by display \x00F8 246 # lc o display \x00F9 23456 # lc u grave display \x00FA 12568 # lc u acute display \x00FB 156 # lc u circumflex display \x00FC 1256 # lc u umlaut display \x00FD 1348 # y acute display \x00FE 138 # thorn display \x00FF 234568 # unknown display \x0081 45 # unknown display \x008D 3567 # unknown display \x008F 27 # Oplosningstegn display \x0090 357 # unknown liblouis-2.5.3/tables/ru-ru-g1.utb0000664000175000017500000002301112161041546013630 00000000000000# Russian Braille Table for TSS # by Mike Sivill #include text_nabcc.dis All display opcodes include ru-ru.dis All display opcodes #replace text_nabcc.dis Yuemei Sun 03/12/08 # ----------- define all chars -------------------------------------- space \t 0 space \x000A 0 space \x000D 0 space \s 0 blank replace \x0007 punctuation ! 2346 # 33 punctuation " 5 # 34 sign # 3456 # 35 sign $ 1246 # 36 sign % 146 # 37 sign & 12346 # 38 punctuation ' 3 # 39 apostrophe punctuation ( 12356 # 40 punctuation ) 23456 # 41 sign * 16 # 42 math + 346 # 43 punctuation , 6 # 44 punctuation - 36 # 45 punctuation . 46 # 46 math / 34 # 47 punctuation \x00AB 236 punctuation \x00BB 356 include loweredDigits6Dots.uti punctuation : 156 # 58 punctuation ; 56 # 59 math < 126 # 60 math = 123456 # 61 math > 345 # 62 punctuation ? 1456 # 63 sign @ 47 # 64 # The Alphabet uplow \x0410\x0430 1 uplow \x0411\x0431 12 uplow \x0412\x0432 2456 uplow \x0413\x0433 1245 uplow \x0414\x0434 145 uplow \x0415\x0435 15 uplow \x0416\x0436 245 uplow \x0417\x0437 1356 uplow \x0418\x0438 24 uplow \x0419\x0439 12346 uplow \x041A\x043A 13 uplow \x041B\x043B 123 uplow \x041C\x043C 134 uplow \x041D\x043D 1345 uplow \x041E\x043E 135 uplow \x041F\x043F 1234 uplow \x0420\x0440 1235 uplow \x0421\x0441 234 uplow \x0422\x0442 2345 uplow \x0423\x0443 136 uplow \x0424\x0444 124 uplow \x0425\x0445 125 uplow \x0426\x0446 14 uplow \x0427\x0447 12345 uplow \x0428\x0448 156 uplow \x0429\x0449 1346 uplow \x042A\x044A 12356 uplow \x042B\x044B 2346 uplow \x042C\x044C 23456 uplow \x042D\x044D 246 uplow \x042E\x044E 1256 uplow \x042F\x044F 1246 uplow \x0401\x0451 16 punctuation [ 2467 # 91 sign \\ 12567 # 92 punctuation ] 124567 # 93 sign ^ 457 # 94 circumflex accent sign _ 456 # 95 underscore sign ` 4 # 96 grave accent # a - z # 97 - 122 punctuation { 246 # 123 sign | 1256 # 124 punctuation } 12456 # 125 math ~ 45 # 126 space \X00A0 0 # 160 no-break space sign \x00A2 4-14 # 162 ¢ cents sign sign \x00A3 4-123 # 163 £ pounds sign sign \x00A5 4-13456 # 165 Â¥ yen sign sign § 4-234-3 # 167 section sign \x00A7 sign \x00A9 2356-6-14-2356 # 169 © copyright sign sign \x00AE 2356-6-1235-2356 # Registered sign \X2116 1345 NUMERO SIGN punctuation \x00Ad 36 # 173 soft hyphen sign \x00B0 356 degrees sign \x00B4 4 always \x00B4 4 # acute accent sign sign \x00B5 2-134 # micro sign, (mu) sign \x00B6 4-1234-345 # 182 ¶ pilcrow sign math \x00D7 56-236 # 215 × multiplication sign math \x00F7 56-256 # 247 ÷ division sign punctuation \x2010 36 # 8208 hyphen punctuation \x2011 23478 # 8209 non-breaking hyphen punctuation \x2013 36-36 # 8211 en dash punctuation \x2014 36-36 # em dash punctuation \x2018 6-236 # 8216 smart single left quotation mark punctuation \x2019 356-3 # 8217 smart single right quotation mark punctuation \x201C 236 # 8220 smart opening double quote punctuation \x201D 356 # 8221 smart closing double quote punctuation \x201E 236 # 8222 smart double low quotation mark punctuation \x201F 356 # 8223 smart double high reverse quotation mark punctuation \x2026 256-256-256 # 8230 smart ellipsis sign \x20AC 4-15 # 8364 Euro sign anywhere else # --------------------------- end definitions --------------------------------- # Braille indicators numsign 3456 number sign, just a dots operand capsign 45 begital 456 firstwordital 456 # the decimal digits include litdigits6Dots.uti # Letters are defined in en-chardefs include chardefs.cti # accented letters uplow \x00C0\x00E0 1 # a with grave uplow \x00C1\x00E1 1 # a with acute uplow \x00C2\x00E2 1 # a with circumflex uplow \x00C3\x00E3 1 # a with tilde uplow \x00C4\x00E4 1 # a with dieresis uplow \x00C5\x00E5 1 # a with ring above uplow \x00C6\x00E6 1 # letter ae uplow \x00C7\x00E7 14 # c with cedilla uplow \x00C8\x00E8 15 # e with grave uplow \x00C9\x00E9 15 # e with acute uplow \x00CA\x00EA 15 # e with circumflex uplow \x00CB\x00EB 15 # e with dieresis uplow \x00CC\x00EC 24 # i with grave above uplow \x00CD\x00ED 24 # i with acute above uplow \x00CE\x00EE 24 # i with circumflex uplow \x00CF\x00EF 24 # i with dieresis uplow \x00D0\x00F0 15 # letter eth uplow \x00D1\x00F1 1345 # n with tilde uplow \x00D2\x00F2 135 # o with grave above uplow \x00D3\x00F3 135 # o with acute above uplow \x00D4\x00F4 135 # o with circumflex uplow \x00D5\x00F5 135 # o with tilde uplow \x00D6\x00F6 135 # o with dieresis # \x00D7 × multiplication sign ---------------------- uplow \x00D8\x00F8 135 # o with stroke uplow \x00D9\x00F9 136 # u with grave above uplow \x00DA\x00FA 136 # u with acute above uplow \x00DB\x00FB 136 # u with circumflex above uplow \x00DC\x00FC 136 # u with dieeresis uplow \x00DD\x00FD 13456 # y with acute above uplow \x00DE\x00FE 4-1456 # letter thorn letter \x00DF 2346 # small sharp s uplow \x0174\x0175 4-2456 w with circumflex uplow \x0176\x0177 4-13456 # y with circumflex uplow \x0178\x00ff 4-13456 # y with diaeresis uplow \x1ef2\x1ef3 4-13456 # y with grave largesign \x00C0 4-1 [C0] upper a grave largesign \x00E0 4-1 [E0] lower a grave largesign \x00C1 4-1 [C1] upper a acute largesign \x00E1 4-1 [E1] lower a acute largesign \x00C2 4-1 [C2] upper a circumflex largesign \x00E2 4-1 [E2] lower a circumflex largesign \x00C3 4-1 [C3] upper a tilde largesign \x00E3 4-1 [E3] lower a tilde largesign \x00C4 4-1 [C4] upper a dieresis largesign \x00E4 4-1 [E4] lower a dieresis largesign \x00C5 4-1 [C5] upper a ring largesign \x00E5 4-1 [E5] lower a ring largesign \x00C6 1-15 [C6] upper ae largesign \x00E6 1-15 [E6] lower ae largesign \x00C7 4-14 [C7] upper c cedilla largesign \x00E7 4-14 [E7] lower c cedilla largesign \x00C8 4-15 [C8] upper e grave largesign \x00E8 4-15 [E8] lower e grave largesign \x00C9 4-15 [C9] upper e acute largesign \x00E9 4-15 [E9] lower e acute largesign \x00CA 4-15 [CA] upper e circumflex largesign \x00EA 4-15 [EA] lower e circumflex largesign \x00CB 4-15 [CB] upper e dieresis largesign \x00EB 4-15 [EB] lower e dieresis largesign \x00CC 4-24 [CC] upper i grave largesign \x00EC 4-24 [EC] lower i grave largesign \x00CD 4-24 [CD] upper i acute largesign \x00ED 4-24 [ED] lower i acute largesign \x00CE 4-24 [CE] upper i circumflex largesign \x00EE 4-24 [EE] lower i circumflex largesign \x00CF 4-24 [CF] upper i dieresis largesign \x00EF 4-24 [EF] lower i dieresis largesign \x00D0 4-15 [D0] upper eth largesign \x00F0 4-15 [F0] lower eth largesign \x00D1 4-1345 [D1] upper n tilde largesign \x00F1 4-1345 [F1] lower n tilde largesign \x00D2 4-135 [D2] upper o grave largesign \x00F2 4-135 [F2] lower o grave largesign \x00D3 4-135 [D3] upper o acute largesign \x00F3 4-135 [F3] lower o acute largesign \x00D4 4-135 [D4] upper o circumflex largesign \x00F4 4-135 [F4] lower o circumflex largesign \x00D5 4-135 [D5] upper o tilde largesign \x00F5 4-135 [F5] lower o tilde largesign \x00D6 4-135 [D6] upper o dieresis largesign \x00F6 4-135 [F6] lower o dieresis largesign \x00D8 4-135 [D8] upper o slash largesign \x00f8 4-135 [F8] lower o slash largesign \x00D9 4-136 [D9] upper u grave largesign \x00F9 4-136 [F9] lower u grave largesign \x00DA 4-136 [DA] upper u acute largesign \x00FA 4-136 [FA] lower u acute largesign \x00DB 4-136 [DB] upper u circumflex largesign \x00FB 4-136 [FB] lower u circumflex largesign \x00DC 4-136 [DC] upper u dieresis largesign \x00FC 4-136 [FC] lower u dieresis largesign \x00DD 4-13456 [DD] upper y acute largesign \x00FD 4-13456 [FD] lower y acute largesign \x00DE 4-2345 [DE] upper t horn largesign \x00FE 4-2345 [FE] lower t horn largesign \x00DF 234-234 (DF) lower ss largesign \x0174 4-2456 lower w circumflex largesign \x0175 4-2456 upper w circumflex largesign \x0176 4-13456 upper y circumflex largesign \x0177 4-13456 lower y circumflex largesign \x0178 4-13456 upper y with dieresis largesign \x00FF 4-13456 lower y with dieresis largesign \x1EF2 4-13456 upper y with grave largesign \x1EF3 4-13456 lower y with grave # punctuation punctuation \x2013 36-36 # 8211 en dash punctuation \x2014 36-36 # em dash prepunc ( 126 postpunc ) 345 begword ` 6-236 prepunc " 236 postpunc " 356 always \x00AB 236 (opening quotation mark) always \x00BB 356 (closing quotation mark) prepunc ' 6-236 postpunc ' 356-3 word 'em = word 'tis = word 'twas = begnum # 1345 print number sign before number begnum ° 145-1245 degrees sign endnum ° 56-145-1245 ;dg degrees sign begnum \x20AC 15 # euro sign at beginning of number endnum \x20AC 4-15 # euro sign atend of number postpunc , 2 hyphen - 36 #capsnocont postpunc . 256 postpunc ; 23 postpunc : 25 postpunc ! 235 always / 34 always < 5-13 always > 46-2 postpunc ? 26 midnum + 0-235-3456 always + 235 endnum % 3456-245-356 always ^ 4 always ~ 12456 always & 12346 always * 35 midword \x2019 3 # stupid smart apostrophe always [ 45 always ] 3456 always { 46 always } 6 prepunc ` 6-236 always @ 146 always \\ 456-16 always | 456 always ... 256-256-256 always .\s.\s. 256-256-256 . . . always $ 256-3456 # special character sequences sign \x00BD 3456-1-34-12 # 1/2 fraction sign \x00BC 3456-1-34-145 # 1/4 fraction sign \x00BE 3456-14-34-145 # 3/4 fraction liblouis-2.5.3/tables/fi-fi-8dot.ctb0000664000175000017500000001633712161041546014112 00000000000000# liblouis: Finnish 8 dot braille table # # Based on the braille contraction modules in BRLTTY # # Original copyright (C) 1995-2004 by The BRLTTY Team. # All rights reserved. # # liblouis copyright 2004 by # ViewPlus Technologies, inc., www.viewplustech.com # and # Computers to Help People, Inc., www.chpi.org # All rights reserved. # # liblouis comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Maintained by John J. Boyer, director@chpi.org, www.chpi.org # # Created by Code Factory S.L. include text_nabcc.dis letter \x0002 1278 letter \x0003 1478 letter \x0004 14578 letter \x0005 2678 letter \x0006 12478 letter \x0007 124578 letter \x0008 12578 letter \x0009 3578 letter \x000A 24578 letter \x000B 1378 letter \x000C 12378 letter \x000D 13478 letter \x000E 134578 letter \x000F 23678 letter \x0010 123478 letter \x0011 1234578 letter \x0012 123578 letter \x0013 23478 letter \x0014 234578 letter \x0015 35678 letter \x0016 123678 letter \x0017 245678 letter \x0018 134678 letter \x0019 1345678 letter \x001A 135678 letter \x001B 345678 letter \x001C 12345678 letter \x001D 4678 letter \x001E 4578 letter \x001F 67 letter \x0020 0 space \x00a0 0 #space \t 0-0 #space \s 0 # non Capital characters letter a 1 letter b 12 letter c 14 letter d 145 letter e 15 letter f 124 letter g 1245 letter h 125 letter i 24 letter j 245 letter k 13 letter l 123 letter m 134 letter n 1345 letter o 135 letter p 1234 letter q 12345 letter r 1235 letter s 234 letter t 2345 letter u 136 letter v 1236 letter w 2456 letter x 1346 letter y 13456 letter z 1356 # capital characters letter A 17 letter B 127 letter C 147 letter D 1457 letter E 157 letter F 1247 letter G 12457 letter H 1257 letter I 247 letter J 2457 letter K 137 letter L 1237 letter M 1347 letter N 13457 letter O 1357 letter P 12347 letter Q 123457 letter R 12357 letter S 2347 letter T 23457 letter U 1367 letter V 12367 letter W 24567 letter X 13467 letter Y 134567 letter Z 13567 # the decimal digits include digits8Dots.uti # punctuations punctuation ! 256 punctuation " 56 letter \x0023 3456 letter $ 2346 punctuation % 1456 punctuation & 12346 punctuation ' 5 punctuation ( 236 punctuation ) 356 punctuation * 35 punctuation + 235 punctuation , 2 letter - 36 punctuation . 3 letter / 34 punctuation : 25 punctuation ; 23 punctuation < 126 punctuation = 2356 punctuation > 156 punctuation ? 26 letter @ 4 punctuation [ 12356 letter \x005C 146 # escape for \ punctuation ] 23456 letter ^ 457 letter _ 346 letter ` 1234568 punctuation { 1246 punctuation | 456 punctuation } 12456 letter ~ 45 letter \x007f 7 #Hex Dots Dec Char Description letter \X00C2 24578 # 194 Latin capital letter a with circumflex letter \X00CA 1267 # 202Ê Latin capital letter e with circumflex letter \X00CE 1467 # 206ÃŽ Latin capital letter i with circumflex letter \X00D4 14567 # 212Ô Latin capital letter o with circumflex letter \X00DB 1567 # 219Û Latin capital letter u with circumflex letter \X00E2 1678 # 226â Latin small letter a with circumflex letter \X00EA 12678 # 234ê Latin small letter e with circumflex letter \X00EE 14678 # 238î Latin small letter i with circumflex letter \X00F4 145678 # 244ô Latin small letter o with circumflex letter \X00FB 15678 # 251û Latin small letter u with circumflex # The 5 letters with a grave accent `) use the [6-0] dot combinations: #Hex Dots Dec Char Description letter \X00C0 235678 # 192À Latin capital letter a with grave letter \X00C8 3578 # 200È Latin capital letter e with grave letter \X00CC 57 # 204ÃŒ Latin capital letter i with grave letter \X00D2 578 # 210Ã’ Latin capital letter o with grave letter \X00D9 35678 # 217Ù Latin capital letter u with grave letter \X00E0 123568 # 224à Latin small letter a with grave letter \X00E8 23468 # 232è Latin small letter e with grave letter \X00EC 348 # 236ì Latin small letter i with grave letter \X00F2 3468 # 242ò Latin small letter o with grave letter \X00F9 234568 # 249ù Latin small letter u with grave # The6 letters with an acute accent ') use the [a-f] dot combinations with # dots 3 and 6 added: #Hex Dots Dec Char Description letter \X00C1 28 # 193à Latin capital letter a with acute letter \X00C9 1234567 # 201É Latin capital letter e with acute letter \X00CD 258 # 205à Latin capital letter i with acute letter \X00D3 267 # 211Ó Latin capital letter o with acute letter \X00DA 268 # 218Ú Latin capital letter u with acute letter \X00DD 3568 # 221à Latin capital letter y with acute letter \X00E1 168 # 225á Latin small letter a with acute letter \X00E9 123456 # 233é Latin small letter e with acute letter \X00ED 2478 # 237í Latin small letter i with acute letter \X00F3 13578 # 243ó Latin small letter o with acute letter \X00FA 13678 # 250ú Latin small letter u with acute letter \X00FD 24568 # 253ý Latin small letter y with acute # The 6 letters with a dieresis accent ") use the [f-j] dot combinations with # dots 3 and 6 added, and the number sign because it fits the sequence # reasonably well): #Hex Dots Dec Char Description letter \X00C4 3457 # 196Ä Latin capital letter a with diaeresis letter \X00CB 2358 # 203Ë Latin capital letter e with diaeresis letter \X00CF 23568 # 207à Latin capital letter i with diaeresis letter \X00D6 2467 # 214Ö Latin capital letter o with diaeresis letter \X00DC 12567 # 220Ü Latin capital letter u with diaeresis letter \X00E4 345 # 228ä Latin small letter a with diaeresis letter \X00EB 12468 # 235ë Latin small letter e with diaeresis letter \X00EF 124568 # 239ï Latin small letter i with diaeresis letter \X00F6 246 # 246ö Latin small letter o with diaeresis letter \X00FC 1256 # 252ü Latin small letter u with diaeresis letter \X00FF 134568 # 255ÿ Latin small letter y with diaeresis # There is no uppercase y-dieresis in the Latin 1 character set. The German # lowercase double-s, which also doesn't have an uppercase counterpart in the # Latin 1 character set, uses its representation: #Hex Dots Dec Char Description letter \X00DF 34568 # 223ß Latin small letter sharp s # The remaining accented letters are: #Hex Dots Dec Char Description letter \X00C3 3467 # 195à Latin capital letter a with tilde letter \X00D1 2567 # 209Ñ Latin capital letter n with tilde letter \X00D5 267 # 213Õ Latin capital letter o with tilde letter \X00C5 167 # 197Ã… Latin capital letter a with ring above letter \X00C7 1578 # 199Ç Latin capital letter c with cedilla letter \X00D8 1567 # 216Ø Latin capital letter o with stroke letter \X00C6 47 # 198Æ Latin capital letter ae letter \X00D0 3567 # 208à Latin capital letter eth letter \X00DE 2357 # 222Þ Latin capital letter thorn letter \X00E3 13678 # 227ã Latin small letter a with tilde letter \X00F1 13458 # 241ñ Latin small letter n with tilde letter \X00F5 1358 # 245õ Latin small letter o with tilde letter \X00E5 16 # 229Ã¥ Latin small letter a with ring above letter \X00E7 1234678 # 231ç Latin small letter c with cedilla letter \X00F8 24678 # 248ø Latin small letter o with stroke letter \X00E6 34578 # 230æ Latin small letter ae letter \X00F0 23458 # 240ð Latin small letter eth letter \X00FE 12348 # 254þ Latin small letter thorn sign \X25CF 35 liblouis-2.5.3/tables/ru-compbrl.ctb0000664000175000017500000000634312161041546014322 00000000000000# liblouis: Russian translation table for program sources # # Copyright (C) 2013 Igor B. Poretsky # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # This table is not a computer braille in usual sense. # It is intended for producing printable braille representation # of a program source text, especially when it contains # Russian comments or literals. Use it as an alternative # literary braille table. # Display and character definitions: include ru-letters.dis include ru-chardefs.cti include chardefs.cti # Braille indicators: numsign 3456 number sign, just a dots operand capsign 46 begcaps 56 endcaps 6 # The decimal digits: include litdigits6Dots.uti # Punctuations: decpoint . 256 prepunc " 236 postpunc " 356 hyphen - 36 always . 256 always , 2 always ; 6-23 always : 25 always ? 6-26 always ! 6-235 always ' 3 always ` 4 # Special symbols: always @ 4-1 always # 4-1345 always $ 4-145 always % 3456-356 always ^ 56-26 always & 6-12346 always * 23 always ( 126 always ) 345 always _ 6-25 always [ 12356 always ] 23456 always { 46-126 always } 46-345 always \\ 4-16 always | 456-3 always ~ 26 # mathematical symbols: always - 36 always + 235 always / 6-34 always < 4-246 always > 4-135 always = 2356 # Symbol classes for special rules below: class upperlatin ABCDEFGHIJKLMNOPQRSTUVWXYZ class lowerlatin abcdefghijklmnopqrstuvwxyz class uppercyrillic \x0401\x0410\x0411\x0412\x0413\x0414\x0415\x0416\x0417\x0418\x0419\x041A\x041B\x041C\x041D\x041E\x041F\x0420\x0421\x0422\x0423\x0424\x0425\x0426\x0427\x0428\x0429\x042A\x042B\x042C\x042D\x042E\x042F class lowercyrillic \x0430\x0431\x0432\x0433\x0434\x0435\x0436\x0437\x0438\x0439\x043A\x043B\x043C\x043D\x043E\x043F\x0440\x0441\x0442\x0443\x0444\x0445\x0446\x0447\x0448\x0449\x044A\x044B\x044C\x044D\x044E\x044F\x0451 class latin ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz class cyrillic \x0401\x0410\x0411\x0412\x0413\x0414\x0415\x0416\x0417\x0418\x0419\x041A\x041B\x041C\x041D\x041E\x041F\x0420\x0421\x0422\x0423\x0424\x0425\x0426\x0427\x0428\x0429\x042A\x042B\x042C\x042D\x042E\x042F\x0430\x0431\x0432\x0433\x0434\x0435\x0436\x0437\x0438\x0439\x043A\x043B\x043C\x043D\x043E\x043F\x0440\x0441\x0442\x0443\x0444\x0445\x0446\x0447\x0448\x0449\x044A\x044B\x044C\x044D\x044E\x044F\x0451 swapcd updigit 1234567890 1,12,14,145,15,124,1245,125,24,245 # Mark letters immediately following digits. context [$d]%lowerlatin %updigit@6 context [$d]%lowercyrillic %updigit@5 context [$d"."]%lowerlatin %updigit@256@6 context [$d"."]%lowercyrillic %updigit@256@5 # Fix cyrillic letter marks. pass2 [@46]%cyrillic @45 pass2 [@56]%cyrillic @456 pass2 [@6]%cyrillic @5 liblouis-2.5.3/tables/countries.cti0000664000175000017500000001446512161041546014266 00000000000000############################################################################### # BRLTTY - A background process providing access to the Linux console (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2004 by The BRLTTY Team. All rights reserved. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU General Public License, as published by the Free Software # Foundation. Please see the file COPYING for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # show any "word" which contains a country code in 8-dot computer braille. compbrl .ad Andorra compbrl .ae United Arab Emirates compbrl .af Afghanistan compbrl .ag Antigua and Barbuda compbrl .ai Anguilla compbrl .al Albania compbrl .am Armenia compbrl .an Netherlands Antilles compbrl .ao Angola compbrl .aq Antarctica compbrl .ar Argentina compbrl .as American Samoa compbrl .at Austria compbrl .au Australia compbrl .aw Aruba compbrl .az Azerbaijan compbrl .ba Bosnia-Herzegovina compbrl .bb Barbados compbrl .bd Bangladesh compbrl .be Belgium compbrl .bf Burkina Faso compbrl .bg Bulgaria compbrl .bh Bahrain compbrl .bi Burundi compbrl .bj Benin compbrl .bm Bermuda compbrl .bn Brunei Darussalam compbrl .bo Bolivia compbrl .br Brazil compbrl .bs Bahamas compbrl .bt Bhutan compbrl .bv Bouvet Island compbrl .bw Botswana compbrl .by Belarus compbrl .bz Belize compbrl .ca Canada compbrl .cc Cocos (Keeling) Islands compbrl .cd The Democratic Republic of The Congo compbrl .cf Central African Republic compbrl .cg Congo compbrl .ch Switzerland compbrl .ci Ivory Coast compbrl .ck Cook Islands compbrl .cl Chile compbrl .cm Cameroon compbrl .cn China compbrl .co Colombia compbrl .cr Costa Rica compbrl .cu Cuba compbrl .cv Cape Verde compbrl .cx Christmas Island compbrl .cy Cyprus compbrl .cz Czech Republic compbrl .de Germany compbrl .dj Djibouti compbrl .dk Denmark compbrl .dm Dominica compbrl .do Dominican Republic compbrl .dz Algeria compbrl .ec Ecuador compbrl .ee Estonia compbrl .eg Egypt compbrl .eh Western Sahara compbrl .er Eritrea compbrl .es Spain compbrl .et Ethiopia compbrl .fi Finland compbrl .fj Fiji compbrl .fk Falkland Islands (Malvinas) compbrl .fm Micronesia compbrl .fo Faroe Islands compbrl .fr France compbrl .ga Gabon compbrl .gb United Kingdom compbrl .gd Grenada compbrl .ge Georgia compbrl .gf French Guiana compbrl .gh Ghana compbrl .gi Gibraltar compbrl .gl Greenland compbrl .gm Gambia compbrl .gn Guinea compbrl .gp Guadeloupe (Fr.) compbrl .gq Equatorial Guinea compbrl .gr Greece compbrl .gs South Georgia And The South Sandwich Islands compbrl .gt Guatemala compbrl .gu Guam (U.S.) compbrl .gw Guinea-Bissau compbrl .gy Guyana compbrl .hk Hong Kong compbrl .hm Heard Island And Mcdonald Islands compbrl .hn Honduras compbrl .hr Croatia compbrl .ht Haiti compbrl .hu Hungary compbrl .id Indonesia compbrl .ie Ireland compbrl .il Israel compbrl .im Isle of Man compbrl .in India compbrl .io British Indian Ocean Territory compbrl .iq Iraq compbrl .ir Iran compbrl .is Iceland compbrl .it Italy compbrl .jm Jamaica compbrl .jo Jordan compbrl .jp Japan compbrl .ke Kenya compbrl .kg Kyrgyzstan compbrl .kh Cambodia compbrl .ki Kiribati compbrl .km Comoros compbrl .kn Saint Kitts and Nevis compbrl .kp Korea (North) compbrl .kr Korea (South) compbrl .kw Kuwait compbrl .ky Cayman Islands compbrl .kz Kazakstan compbrl .la Lao People's Democratic Republic compbrl .lb Lebanon compbrl .lc Saint Lucia compbrl .li Liechtenstein compbrl .lk Sri Lanka compbrl .lr Liberia compbrl .ls Lesotho compbrl .lt Lithuania compbrl .lu Luxembourg compbrl .lv Latvia compbrl .ly Libyan Arab Jamahiriya compbrl .ma Morocco compbrl .mc Monaco compbrl .md Moldova compbrl .mg Madagascar compbrl .mh Marshall Islands compbrl .mk Macedonia compbrl .ml Mali compbrl .mm Myanmar compbrl .mn Mongolia compbrl .mo Macau compbrl .mp Northern Mariana Islands compbrl .mq Martinique compbrl .mr Mauritania compbrl .ms Montserrat compbrl .mt Malta compbrl .mu Mauritius compbrl .mv Maldives compbrl .mw Malawi compbrl .mx Mexico compbrl .my Malaysia compbrl .mz Mozambique compbrl .na Namibia compbrl .nc New Caledonia (Fr.) compbrl .ne Niger compbrl .nf Norfolk Island compbrl .ng Nigeria compbrl .ni Nicaragua compbrl .nl Netherlands compbrl .no Norway compbrl .np Nepal compbrl .nr Nauru compbrl .nu Niue compbrl .nz New Zealand compbrl .om Oman compbrl .pa Panama compbrl .pe Peru compbrl .pf Polynesia (Fr.) compbrl .pg Papua New Guinea compbrl .ph Philippines compbrl .pk Pakistan compbrl .pl Poland compbrl .pm Saint Pierre and Miquelon compbrl .pn Pitcairn compbrl .pr Puerto Rico (U.S.) compbrl .ps Palestinian Territory, Occupied compbrl .pt Portugal compbrl .pw Palau compbrl .py Paraguay compbrl .qa Qatar compbrl .re Reunion (Fr.) compbrl .ro Romania compbrl .ru Russia compbrl .rw Rwanda compbrl .sa Saudi Arabia compbrl .sb Solomon Islands compbrl .sc Seychelles compbrl .sd Sudan compbrl .se Sweden compbrl .sg Singapore compbrl .sh Saint Helena compbrl .si Slovenia compbrl .sj Svalbard and Jan Mayen compbrl .sk Slovakia compbrl .sl Sierra Leone compbrl .sm San Marino compbrl .sn Senegal compbrl .so Somalia compbrl .sr Suriname compbrl .st Sao Tome And Principe compbrl .su U.S.S.R. compbrl .sv El Salvador compbrl .sy Syrian Arab Republic compbrl .sz Swaziland compbrl .tc Turks And Caicos Islands compbrl .td Chad compbrl .tf French Southern Territories compbrl .tg Togo compbrl .th Thailand compbrl .tj Tajikistan compbrl .tk Tokelau compbrl .tm Turkmenistan compbrl .tn Tunisia compbrl .to Tonga compbrl .tp East Timor compbrl .tr Turkey compbrl .tt Trinidad and Tobago compbrl .tv Tuvalu compbrl .tw Taiwan compbrl .tz Tanzania compbrl .ua Ukraine compbrl .ug Uganda compbrl .uk United Kingdom compbrl .um United States Minor Outlying Islands compbrl .us United States compbrl .uy Uruguay compbrl .uz Uzbekistan compbrl .va Holy See (Vatican City State) compbrl .vc St. Vincent and the Grenadines compbrl .ve Venezuela compbrl .vg Virgin Islands, British compbrl .vi Virgin Islands, U.S. compbrl .vn Vietnam compbrl .vu Vanuatu compbrl .wf Wallis and Futuna compbrl .ws Samoa compbrl .ye Yemen compbrl .yt Mayotte compbrl .yu Yugoslavia compbrl .za South Africa compbrl .zm Zambia compbrl .zw Zimbabwe liblouis-2.5.3/tables/nl-BE-g1.ctb0000664000175000017500000000276212161041546013443 00000000000000# # Copyright (C) 2010, 2011 by DocArch # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ------------------------------------------------------------------------------- # # Dutch Braille (for Belgium and the Netherlands) # Created and maintained by Bert Frees # See also: « Braillestandaard voor algemeen gebruik in het Nederlandse taalgebied, # Van toepassing vanaf 1 september 2005 » # (Federatie Slechtzienden- en Blindenbelang en # Belgische Confederatie voor Blinden en Slechtzienden, 2005) # # ---------------------------------------------------------------------------------------------- include nl-BE-chardefs.cti include braille-patterns.cti include nl-BE-translation.cti # --------------------------------------------------------------------------------------- liblouis-2.5.3/tables/wiskunde-translation.cti0000664000175000017500000001563512161041546016440 00000000000000# # Copyright (C) 2010, 2011 DocArch . # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # #------------------------------------------------------------------------------- # # Flemish Braille Math Code (a.k.a. Woluwe code) # Created and maintained by Bert Frees # See also: « Handleiding Braillesymbolen Wiskunde » # (Gilbert Notaert, Marc Suij en Emmanuel Vandekerkhove, G.on Woluwe, 1984) # # ---------------------------------------------------------------------------------------------- include litdigits6Dots.uti numsign 3456 capsign 46 begcaps 45 midnum , 2 midnum . 3 repeated \x0020 0 repeated \x00A0 a class uppergreek \x0391\x0392\x0393\x0394\x0395\x0396\x0397\x0398\x0399\x039A\x039B\x039C\x039D\x039E\x039F\x03A0\x03A1\x03A3\x03A4\x03A5\x03A6\x03A7\x03A8\x03A9 class lowergreek \x03B1\x03B2\x03B3\x03B4\x03B5\x03B6\x03B7\x03B8\x03B9\x03BA\x03BB\x03BC\x03BD\x03BE\x03BF\x03C0\x03C1\x03C2\x03C3\x03C4\x03C5\x03C6\x03C7\x03C8\x03C9\x03D5 class operationkeyspace \x002B\x002D\x002E\x003D\x007E\x00B1\x00D7\x00F7\x2190\x2191\x2192\x2193\x2194\x21D0\x21D2\x21D4\x2209\x220C\x2212\x2217\x2223\x2224\x2226\x2243\x2248\x2260\x2261\x2284\x2285\x2288\x2289\x22C5 class operationkey \x002F\x003C\x2215\x2216\x2225\x2227\x2228\x2229\x222A\x2264\x2282\x2283\x2286\x2287\x22A5\x22D5 class operationnokey \x003E\x00AF\x0302\x0303\x0304\x2191\x2193\x2208\x220B\x2265 # class relation class digitletter abcdefghij swapcd dropped 0123456789 356,2,23,25,256,26,235,2356,236,35 swapdd upnum 245,1,12,14,145,15,124,1245,125,24 0,0,0,0,0,0,0,0,0,0 swapdd lownum 356,2,23,25,256,26,235,2356,236,35 0,0,0,0,0,0,0,0,0,0 exactdots @0 exactdots @123456 exactdots @1256 exactdots @1456 exactdots @23 exactdots @5 exactdots @56 # Overgang van functie naar letter context "sin"["\es"]%uppergreek ? context "cos"["\es"]%uppergreek ? context "log"["\es"]%uppergreek ? context "tan"["\es"]%uppergreek ? context "tg"["\es"]%uppergreek ? context "sin"["\es"]%lowergreek ? context "cos"["\es"]%lowergreek ? context "log"["\es"]%lowergreek ? context "tan"["\es"]%lowergreek ? context "tg"["\es"]%lowergreek ? context "sin"["\es"]$l @6 context "cos"["\es"]$l @6 context "log"["\es"]$l @6 context "tan"["\es"]$l @6 context "tg"["\es"]$l @6 # Overgang tussen twee lettergedeeltes context %uppergreek["\es"]$u @6 context %lowergreek["\es"]$u @6 context $l["\es"]%uppergreek ? context $l["\es"]%lowergreek ? context $l["\es"]$l ? # Overgang tussen coefficient en lettergedeelte waarbij verwarring kan ontstaan context $d["\es"]%digitletter @6 context $d[]%digitletter @6 # Niet-wiskundige tekst context ["\et"]$p ? context ["\et"] @0 # Wortelvormen context ["\ev"] @146 # Lege exponenten en indices context ["\ei\e^r\en\ex"] ? context ["\ei\e^c\en\ex"] ? context ["\ei\e^l\en\ex"] ? context ["\ei\e_r\en\ex"] ? context ["\ei\e_c\en\ex"] ? context ["\ei\e_l\en\ex"] ? context ["\en"] ? # Gezakte cijfers, exponenten, indices & breuken context "\ef\es"$d."\ed\es"[$d.]"\ex" %dropped # noemer van natuurlijke breuk in gezakte cijfers context "\e^r\es"[$d.]"\ex" %dropped # natuurlijke exponenten en indices in gezakte cijfers context "\e^c\es"[$d.]"\ex" %dropped context "\e^l\es"[$d.]"\ex" %dropped context "\e_r\es"[$d.]"\ex" %dropped context "\e_c\es"[$d.]"\ex" %dropped context "\e_l\es"[$d.]"\ex" %dropped context ["\ei"]"\e^r\es"%operationkeyspace"\ex" ? # accenten, bewerkings- en relatietekens als index midden of rechts boven context ["\ei"]"\e^r\es"%operationkey"\ex" ? context ["\ei"]"\e^r\es"%operationnokey"\ex" ? context ["\ei"]"\e^c\es"%operationkeyspace"\ex" ? context ["\ei"]"\e^c\es"%operationkey"\ex" ? context ["\ei"]"\e^c\es"%operationnokey"\ex" ? context "\e^r\es"%operationkeyspace["\ex"] ? # verwijder sluiter context "\e^r\es"%operationkey["\ex"] ? context "\e^r\es"%operationnokey["\ex"] ? context "\e^c\es"%operationkeyspace["\ex"] ? context "\e^c\es"%operationkey["\ex"] ? context "\e^c\es"%operationnokey["\ex"] ? context "\es"[]%operationkeyspace @5 # sleutel voor bewerkingstekens context "\es"[]%operationkey @5 context ["\ef"] @5@23 # begin van breuk pass2 %upnum.[@1b-145-1b-234]%lownum. ? # verwijder breukstreep pass3 [@1b-124-1b-234]%upnum.%lownum. @3456 # herstel cijferteken van teller pass3 @1b-145 @1256 # breukstreep \ed pass3 @1b-124 ? # \ef pass3 @1b-234 ? # \es pass3 @1b-24-1b-34-1235 @34 # \ei\e^r pass3 @1b-24-1b-34-14 @456@34 # \ei\e^c pass3 @1b-24-1b-34-123 @3456@34 # \ei\e^l pass3 @1b-24-1b-456-1235 @16 # \ei\e_r pass3 @1b-24-1b-456-14 @456@16 # \ei\e_c pass3 @1b-24-1b-456-123 @3456@16 # \ei\e_l pass3 @1b-24 ? # \ei pass3 @1b-34-1235 @4 # \e^r pass3 @1b-34-14 @45 # \e^c pass3 %lownum.[@1b-1346] ? # verwijder sluiter na gezakte cijfers pass4 @1b-1346 @156 # sluiter \ex # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/eo-g1-x-system.ctb0000664000175000017500000000424112161041546014732 00000000000000# liblouis braille Table - Esperanto X System # Created by Aaron Cannon # April 14, 2013 # # This file extends the Esperanto table with support for the X System. # The X system is a means of writing the accented letters of Esperanto # C-Circumflex, G-Circumflex, H-Circumflex, J-Circumflex, S-Circumflex, # and U-Breve on systems where Unicode is either not available or not # practical. It is especially common among blind Esperantists, as until # recently, screen readers did not support reading the unicode # characters that Esperanto uses. # # In short, in the x-system, an X is written after each letter with an # accent. I.E. "cx, gx, hx, jx, sx or ux". # # This system is not generally ambiguous because the Esperanto alphabet # does not contain the letter X. # # The H-system originally proposed by L. L. Zamenhof is rarely used # because it is ambiguous, as H is part of the Esperanto alphabet, and # in that system, U-circumflex is not marked at all. # # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . include eo-g1.ctb correct "cx" "ĉ" correct "cX" "ĉ" correct "Cx" "Ĉ" correct "CX" "Ĉ" correct "gx" "Ä" correct "gX" "Ä" correct "Gx" "Äœ" correct "GX" "Äœ" correct "hx" "Ä¥" correct "hX" "Ä¥" correct "Hx" "Ĥ" correct "HX" "Ĥ" correct "jx" "ĵ" correct "jX" "ĵ" correct "Jx" "Ä´" correct "JX" "Ä´" correct "sx" "Å" correct "sX" "Å" correct "Sx" "Åœ" correct "SX" "Åœ" correct "ux" "Å­" correct "uX" "Å­" correct "Ux" "Ŭ" correct "UX" "Ŭ" liblouis-2.5.3/tables/ta-ta-g1.ctb0000664000175000017500000000762612161041546013560 00000000000000# Copyright (C) 2012 Braille Section Team, Anna Centenary Library, Chennai # Shankar # Copyright (C) 2012 Mesar Hameed , DINAKAR T.D. # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . include text_nabcc.dis include braille-patterns.cti # unicode braille. punctuation \x2018 236 #left single quote punctuation \x2019 356 #right single quote punctuation \x201c 6-236 #left quote punctuation \x201d 356-3 #right quote include en-us-g1.ctb sign \x0b82 56 # TAMIL SIGN ANUSVARA sign \x0b83 6 # TAMIL SIGN VISARGA sign \x0b85 1 # TAMIL sign A sign \x0b86 345 # TAMIL sign AA sign \x0b87 24 # TAMIL sign I sign \x0b88 35 # TAMIL sign II sign \x0b89 136 # TAMIL sign U sign \x0b8a 1256 # TAMIL sign UU sign \x0b8e 26 # TAMIL sign E sign \x0b8f 15 # TAMIL sign EE sign \x0b90 34 # TAMIL sign AI sign \x0b92 1346 # TAMIL sign O letter \x0b93 135 # TAMIL sign OO letter \x0b94 246 # TAMIL sign AU letter \x0b95 13 # TAMIL sign KA letter \x0b99 346 # TAMIL sign NGA letter \x0b9a 14 # TAMIL sign CA letter \x0b9c 245 # TAMIL sign JA letter \x0b9e 25 # TAMIL sign NYA letter \x0b9f 23456 # TAMIL sign TTA letter \x0ba3 3456 # TAMIL sign NNA letter \x0ba4 2345 # TAMIL sign TA letter \x0ba8 1345 # TAMIL sign NA letter \x0ba9 56 # TAMIL sign NNNA letter \x0baa 1234 # TAMIL sign PA letter \x0bae 134 # TAMIL sign MA letter \x0baf 13456 # TAMIL sign YA letter \x0bb0 1235 # TAMIL sign RA sign \x0bb1 12456 # TAMIL sign RRA sign \x0bb2 123 # TAMIL sign LA sign \x0bb3 456 # TAMIL sign LLA sign \x0bb4 12356 # TAMIL sign LLLA sign \x0bb5 1236 # TAMIL sign VA sign \x0bb6 146 # TAMIL sign SHA sign \x0bb7 12346 # TAMIL sign SSA sign \x0bb8 234 # TAMIL sign SA sign \x0bb9 125 # TAMIL sign HA sign \x0bbe 345 # TAMIL VOWEL SIGN AA sign \x0bbf 24 # TAMIL VOWEL SIGN I sign \x0bc0 35 # TAMIL VOWEL SIGN II sign \x0bc1 136 # TAMIL VOWEL SIGN U sign \x0bc2 1256 # TAMIL VOWEL SIGN UU sign \x0bc6 26 # TAMIL VOWEL SIGN E sign \x0bc7 15 # TAMIL VOWEL SIGN EE sign \x0bc8 34 # TAMIL VOWEL SIGN AI sign \x0bca 1346 # TAMIL VOWEL SIGN O sign \x0bcb 135 # TAMIL VOWEL SIGN OO sign \x0bcc 246 # TAMIL VOWEL SIGN AU sign \x0bcd 4 # TAMIL SIGN VIRAMA sign \x0be6 245 # TAMIL DIGIT ZERO sign \x0be7 1 # TAMIL DIGIT ONE sign \x0be8 12 # TAMIL DIGIT TWO sign \x0be9 14 # TAMIL DIGIT THREE sign \x0bea 145 # TAMIL DIGIT FOUR sign \x0beb 15 # TAMIL DIGIT FIVE sign \x0bec 124 # TAMIL DIGIT SIX sign \x0bed 1245 # TAMIL DIGIT SEVEN sign \x0bee 125 # TAMIL DIGIT EIGHT sign \x0bef 24 # TAMIL DIGIT NINE #-------- # half characters always \x0b95\x0bcd 4-13 always \x0b99\x0bcd 4-346 always \x0b9a\x0bcd 4-14 always \x0b9e\x0bcd 4-25 always \x0b9f\x0bcd 4-23456 always \x0ba3\x0bcd 4-3456 always \x0ba4\x0bcd 4-2345 always \x0ba8\x0bcd 4-1345 always \x0baa\x0bcd 4-1234 always \x0bae\x0bcd 4-134 always \x0baf\x0bcd 4-13456 always \x0bb0\x0bcd 4-1235 always \x0bb2\x0bcd 4-123 always \x0bb5\x0bcd 4-1236 always \x0bb4\x0bcd 4-12356 always \x0bb3\x0bcd 4-456 always \x0bb1\x0bcd 4-12456 always \x0ba9\x0bcd 4-56 always \x0b9c\x0bcd 4-245 always \x0bb7\x0bcd 4-12346 always \x0bb8\x0bcd 4-234 always \x0bb9\x0bcd 4-125 # words and partwords # sri word \x0bb8\x0bcd\x0bb0\x0bc0 234 always \x0b95\x0bcd\x0bb7 12345 #ksh always \x0b95\x0bcd\x0bb7\x0bcd 4-12345 #ksh with varama liblouis-2.5.3/tables/es-chardefs.cti0000664000175000017500000003416212161041546014433 00000000000000# # Copyright (C) 2010, 2011 by DocArch # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ---------------------------------------------------------------------------------------------- # odt2braille - Braille authoring in OpenOffice.org. # ---------------------------------------------------------------------------------------------- # # Spanish Braille # Created and maintained by Bert Frees # with the assistance of Carles Sadurní Anguita # # ---------------------------------------------------------------------------------------------- # ============================================================================================== # SINGLE-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- include latinLetterDef6Dots.uti uplow \x00C1\x00E1 12356,12356 Ãá LATIN CAPITAL LETTER A WITH ACUTE - LATIN SMALL LETTER A WITH ACUTE uplow \x00C9\x00E9 2346,2346 Éé LATIN CAPITAL LETTER E WITH ACUTE - LATIN SMALL LETTER E WITH ACUTE uplow \x00CD\x00ED 34,34 Ãí LATIN CAPITAL LETTER I WITH ACUTE - LATIN SMALL LETTER I WITH ACUTE uplow \x00D1\x00F1 12456,12456 Ññ LATIN CAPITAL LETTER N WITH TILDE - LATIN SMALL LETTER N WITH TILDE uplow \x00D3\x00F3 346,346 Óó LATIN CAPITAL LETTER O WITH ACUTE - LATIN SMALL LETTER O WITH ACUTE uplow \x00DA\x00FA 23456,23456 Úú LATIN CAPITAL LETTER U WITH ACUTE - LATIN SMALL LETTER U WITH ACUTE uplow \x00DC\x00FC 1256,1256 Üü LATIN CAPITAL LETTER U WITH DIAERESIS - LATIN SMALL LETTER U WITH DIAERESIS space \x0009 9 HORIZONTAL TABULATION space \x000A 0 LINE FEED space \x000C 0 FORM FEED space \x000D 0 CARRIAGE RETURN space \x001B 1b ESCAPE space \x0020 0 SPACE punctuation \x0021 256 ! EXCLAMATION MARK punctuation \x0022 236 " QUOTATION MARK punctuation \x0027 3 ' APOSTROPHE punctuation \x0028 126 ( LEFT PARENTHESIS punctuation \x0029 345 ) RIGHT PARENTHESIS sign \x002A 35 * ASTERISK math \x002B 235 + PLUS SIGN punctuation \x002C 2 , COMMA punctuation \x002D 36 - HYPHEN-MINUS punctuation \x002E 3 . FULL STOP include loweredDigits6Dots.uti punctuation \x003A 25 : COLON punctuation \x003B 23 ; SEMICOLON math \x003C 246 < LESS-THAN SIGN math \x003D 2356 = EQUALS SIGN math \x003E 135 > GREATER-THAN SIGN punctuation \x003F 26 ? QUESTION MARK punctuation \x005B 12356 [ LEFT SQUARE BRACKET punctuation \x005D 23456 ] RIGHT SQUARE BRACKET sign \x007C 456 | VERTICAL LINE # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- punctuation \x0082 2 ‚ BREAK PERMITTED HERE - ANSI: SINGLE LOW-9 QUOTATION MARK - MACROMAN: C CEDILLA punctuation \x0084 236 „ - ANSI: DOUBLE LOW-9 QUOTATION MARK - MACROMAN: N TILDE punctuation \x0093 236 “ SET TRANSMIT STATE - ANSI: LEFT DOUBLE QUOTATION MARK - MACROMAN: I GRAVE punctuation \x0094 236 †CANCEL CHARACTER - ANSI: RIGHT DOUBLE QUOTATION MARK - MACROMAN: I CIRCUMFLEX punctuation \x0096 36 – START OF GUARDED AREA - ANSI: EN DASH - MACROMAN: N TILDE space \x00A0 a   NO-BREAK SPACE punctuation \x00A1 235 ¡ INVERTED EXCLAMATION MARK punctuation \x00AB 236 « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00AD 36 ­ SOFT HYPHEN sign \x00B8 2 ¸ CEDILLA punctuation \x00BB 236 » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00BF 26 ¿ INVERTED QUESTION MARK math \x00D7 236 × MULTIPLICATION SIGN math \x00F7 256 ÷ DIVISION SIGN # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2010 36 †HYPHEN punctuation \x2011 36 ‑ NON-BREAKING HYPHEN punctuation \x2012 36 ‒ FIGURE DASH punctuation \x2013 36 – EN DASH punctuation \x2018 236 ‘ LEFT SINGLE QUOTATION MARK punctuation \x2019 236 ’ RIGHT SINGLE QUOTATION MARK punctuation \x201A 236 ‚ SINGLE LOW-9 QUOTATION MARK punctuation \x201B 236 ‛ SINGLE HIGH-REVERSED-9 QUOTATION MARK punctuation \x201C 236 “ LEFT DOUBLE QUOTATION MARK punctuation \x201D 236 †RIGHT DOUBLE QUOTATION MARK punctuation \x201E 236 „ DOUBLE LOW-9 QUOTATION MARK punctuation \x201F 236 ‟ DOUBLE HIGH-REVERSED-9 QUOTATION MARK punctuation \x2043 36 ⃠HYPHEN BULLET # ============================================================================================== # MULTI-CELL # ============================================================================================== # ---------------------------------------------------------------------------------------------- # Unicode 0000..007F C0 Controls and Basic Latin # ---------------------------------------------------------------------------------------------- sign \x0024 345-234 $ DOLLAR SIGN math \x0025 456-356 % PERCENT SIGN sign \x0026 6-12346 & AMPERSAND math \x002F 6-2 / SOLIDUS sign \x0040 56-16 @ COMMERCIAL AT sign \x005C 5-3 \ REVERSE SOLIDUS math \x007B 5-123 { LEFT CURLY BRACKET math \x007D 456-2 } RIGHT CURLY BRACKET # ---------------------------------------------------------------------------------------------- # Unicode 0080..00FF C1 Controls and Latin-1 Supplement # ---------------------------------------------------------------------------------------------- sign \x0080 456-15 € - ANSI: EURO-CURRENCY SIGN - MACROMAN: A DIAERESIS punctuation \x0085 3-3-3 … NEXT LINE (NEL) - ANSI: HORIZONTAL ELLIPSIS - MACROMAN: O DIAERESIS sign \x0089 456-356-356 ‰ CHARACTER TABULATION WITH JUSTIFICATION - ANSI: PER MILLE SIGN - MACROMAN: A CIRCUMFLEX punctuation \x0097 36-36 — END OF GUARDED AREA - ANSI: EM DASH - MACROMAN: O ACUTE sign \x00A2 45-14 ¢ CENT SIGN sign \x00A3 5-2346 £ POUND SIGN sign \x00A5 456-13456 Â¥ YEN SIGN sign \x00A9 126-46-14-345 © COPYRIGHT SIGN sign \x00AA 56-16 ª FEMININE ORDINAL INDICATOR sign \x00AE 126-46-1235-345 ® REGISTERED SIGN math \x00B1 235-25-36 ± PLUS-MINUS SIGN sign \x00B2 16-3456-12 ² SUPERSCRIPT TWO sign \x00B3 16-3456-14 ³ SUPERSCRIPT THREE sign \x00B5 4-134 µ MICRO SIGN math \x00BC 1456-2-145 ¼ VULGAR FRACTION ONE QUARTER math \x00BD 1456-2-12 ½ VULGAR FRACTION ONE HALF math \x00BE 1456-25-145 ¾ VULGAR FRACTION THREE QUARTERS # ---------------------------------------------------------------------------------------------- # Unicode 0370..03FF Greek and Coptic # ---------------------------------------------------------------------------------------------- lowercase \x03B1 4-1 α GREEK SMALL LETTER ALPHA lowercase \x03B2 4-12 β GREEK SMALL LETTER BETA lowercase \x03B3 4-1245 γ GREEK SMALL LETTER GAMMA lowercase \x03B4 4-145 δ GREEK SMALL LETTER DELTA lowercase \x03B5 4-15 ε GREEK SMALL LETTER EPSILON lowercase \x03B6 4-1356 ζ GREEK SMALL LETTER ZETA lowercase \x03B7 4-156 η GREEK SMALL LETTER ETA lowercase \x03B8 4-1456 θ GREEK SMALL LETTER THETA lowercase \x03B9 4-24 ι GREEK SMALL LETTER IOTA lowercase \x03BA 4-13 κ GREEK SMALL LETTER KAPPA lowercase \x03BB 4-123 λ GREEK SMALL LETTER LAMDA lowercase \x03BC 4-134 μ GREEK SMALL LETTER MU lowercase \x03BD 4-1345 ν GREEK SMALL LETTER NU lowercase \x03BE 4-1346 ξ GREEK SMALL LETTER XI lowercase \x03BF 4-135 ο GREEK SMALL LETTER OMICRON lowercase \x03C0 4-1234 Ï€ GREEK SMALL LETTER PI lowercase \x03C1 4-1235 Ï GREEK SMALL LETTER RHO lowercase \x03C2 4-234 Ï‚ GREEK SMALL LETTER FINAL SIGMA lowercase \x03C3 4-234 σ GREEK SMALL LETTER SIGMA lowercase \x03C4 4-2345 Ï„ GREEK SMALL LETTER TAU lowercase \x03C5 4-136 Ï… GREEK SMALL LETTER UPSILON lowercase \x03C6 4-124 φ GREEK SMALL LETTER PHI lowercase \x03C7 4-12346 χ GREEK SMALL LETTER CHI lowercase \x03C8 4-13456 ψ GREEK SMALL LETTER PSI lowercase \x03C9 4-2456 ω GREEK SMALL LETTER OMEGA # ---------------------------------------------------------------------------------------------- # Unicode 2000..206F General Punctuation # ---------------------------------------------------------------------------------------------- punctuation \x2014 36-36 — EM DASH punctuation \x2015 36-36 ― HORIZONTAL BAR punctuation \x2026 3-3-3 … HORIZONTAL ELLIPSIS # ---------------------------------------------------------------------------------------------- # Unicode 20A0..20CF Currency Symbols # ---------------------------------------------------------------------------------------------- sign \x20AC 456-15 € EURO SIGN # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/nl-BE-translation.cti0000664000175000017500000001132612161041546015475 00000000000000# # Copyright (C) 2010, 2011 by DocArch # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # # ------------------------------------------------------------------------------- # # Dutch Braille (for Belgium and the Netherlands) # Created and maintained by Bert Frees # See also: « Braillestandaard voor algemeen gebruik in het Nederlandse taalgebied, # Van toepassing vanaf 1 september 2005 » # (Federatie Slechtzienden- en Blindenbelang en # Belgische Confederatie voor Blinden en Slechtzienden, 2005) # # ---------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------- # Emphasis opcodes # ---------------------------------------------------------------------------------------------- # cursief lenitalphrase 3 italsign 456 begital 456 endital 6 firstwordital 456-456 # vet lenboldphrase 3 boldsign 456 begbold 456 endbold 6 firstwordbold 456-456 # onderstreept lenunderphrase 3 undersign 456 begunder 456 endunder 6 firstwordunder 456-456 # ---------------------------------------------------------------------------------------------- # Special symbol opcodes # ---------------------------------------------------------------------------------------------- decpoint \x002C 2 decpoint \x002E 256 hyphen \x002D 36 # ---------------------------------------------------------------------------------------------- # Translation opcodes # ---------------------------------------------------------------------------------------------- # paragraafteken § begword \x00A7 346-0 midword \x00A7 0-346-0 endword \x00A7 0-346 # percent % # promille endnum \x0025 0-123456 endnum \x2030 0-123456-123456 # is-gelijk-teken = begword \x003D 2356-0 midword \x003D 0-2356 endword \x003D 0-2356-0 # plusteken + begword \x002B 235-0 endnum \x002B 5-235 # gedeeld-door-teken ÷ begword \x00F7 256-0 midword \x00F7 0-256-0 endword \x00F7 0-256 # maalteken × begword \x00D7 236-0 midword \x00D7 0-236-0 endword \x00D7 0-236 # euroteken # dollarteken $ # pondteken £ # yenteken Â¥ noback joinnum \x20AC 15 noback joinnum \x0024 145 noback joinnum \x00A3 1234 noback joinnum \x00A5 13456 # Eén context ["E"]"\x00E9" @123456 # ---------------------------------------------------------------------------------------------- # Various # ---------------------------------------------------------------------------------------------- # romeinse cijfers in paginanummering replace \\_ # herstelteken als getal gevolgd wordt door letters a tot j class digitletter abcdefghij context $d[]%digitletter @6 context $d"."[]%digitletter @6 context $d","[]%digitletter @6 # hoofdletters & tekens die permanent hoofdletterteken niet afsluiten class uppersign -+&.' context $U[]$u @6 context $U%uppersign.[]$u @6 pass2 [@46]$U%uppersign.@46 @45 pass2 [@46]$U%uppersign.@45 @45 pass3 @45$xl.[]@45 @1b # $xl = %uppersign or $l (letter) pass3 @45$xl.[@46] ? pass3 @46$U[@6] ? pass3 @46$U%uppersign.[@6] ? pass4 [@1b-45] ? pass4 [@6]@6 ? # plus + # ampersand & class plusamp +& class noplusamp -.' pass4 $zl[]%plusamp @5 # $zl = %noplusamp or $l (letter) pass4 $zl[]%plusamp @5 pass4 [@235a]%plusamp @235-5 pass4 [@12346a]%plusamp @12346-5 pass4 [@235a] @235 pass4 [@12346a] @12346 # ---------------------------------------------------------------------------------------------- # Braille indicator opcodes # ---------------------------------------------------------------------------------------------- numsign 3456 capsign 46 begcaps 45 endcaps 6 # ---------------------------------------------------------------------------------------------- liblouis-2.5.3/tables/controlchars.cti0000664000175000017500000000225212161041546014743 00000000000000# liblouis: some control characters # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by # The BRLTTY Team # # Copyright (C) 2004, 2005, 2013 # ViewPlus Technologies, Inc. www.viewplus.com # and # Abilitiessoft, Inc. www.abilitiessoft.com # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by John J. Boyer john.boyer@abilitiessoft.com space \x000a a1 newline space \x000c a2 forms feed space \x000d a3 carriage return liblouis-2.5.3/tables/fi1.ctb0000664000175000017500000002641412161041546012720 00000000000000############################################################################### # BRLTTY - A background process providing access to the console screen (when in # text mode) for a blind person using a refreshable braille display. # # Copyright (C) 1995-2008 by The BRLTTY Developers. # # BRLTTY comes with ABSOLUTELY NO WARRANTY. # # This is free software, placed under the terms of the # GNU Lesser General Public License, as published by the Free Software # Foundation; either version 2.1 of the License, or (at your option) any # later version. Please see the file LICENSE-LGPL for details. # # Web Page: http://mielke.cc/brltty/ # # This software is maintained by Dave Mielke . ############################################################################### # BRLTTY Text Table - Finnish (iso-8859-1) # This table is very close to the official Finnish six dotbraille character set. # generated by ttbtest letter \x0000 478 NULL letter \x0001 178 START OF HEADING letter \x0002 1278 START OF TEXT letter \x0003 1478 END OF TEXT letter \x0004 14578 END OF TRANSMISSION letter \x0005 1578 ENQUIRY letter \x0006 12478 ACKNOWLEDGE letter \x0007 124578 BELL letter \x0008 12578 BACKSPACE space \t 2478 CHARACTER TABULATION space \n 24578 LINE FEED (LF) space \v 1378 LINE TABULATION space \f 12378 FORM FEED (FF) space \r 13478 CARRIAGE RETURN (CR) letter \x000e 134578 SHIFT OUT letter \x000f 13578 SHIFT IN letter \x0010 123478 DATA LINK ESCAPE letter \x0011 1234578 DEVICE CONTROL ONE letter \x0012 123578 DEVICE CONTROL TWO letter \x0013 23478 DEVICE CONTROL THREE letter \x0014 234578 DEVICE CONTROL FOUR letter \x0015 13678 NEGATIVE ACKNOWLEDGE letter \x0016 123678 SYNCHRONOUS IDLE letter \x0017 245678 END OF TRANSMISSION BLOCK letter \x0018 134678 CANCEL letter \x0019 1345678 END OF MEDIUM letter \x001a 135678 SUBSTITUTE letter \x001b 12678 ESCAPE letter \x001c 125678 INFORMATION SEPARATOR FOUR letter \x001d 3578 INFORMATION SEPARATOR THREE letter \x001e 278 INFORMATION SEPARATOR TWO letter \x001f 578 INFORMATION SEPARATOR ONE space \s 0 SPACE punctuation ! 256 EXCLAMATION MARK punctuation " 56 QUOTATION MARK punctuation # 3456 NUMBER SIGN punctuation $ 2346 DOLLAR SIGN punctuation % 1456 PERCENT SIGN punctuation & 12346 AMPERSAND punctuation ' 5 APOSTROPHE punctuation ( 236 LEFT PARENTHESIS punctuation ) 356 RIGHT PARENTHESIS punctuation * 35 ASTERISK punctuation + 235 PLUS SIGN punctuation , 2 COMMA punctuation - 36 HYPHEN-MINUS punctuation . 3 FULL STOP punctuation / 34 SOLIDUS include digits8Dots.uti punctuation : 25 COLON punctuation ; 23 SEMICOLON punctuation < 126 LESS-THAN SIGN punctuation = 2356 EQUALS SIGN punctuation > 156 GREATER-THAN SIGN punctuation ? 26 QUESTION MARK punctuation @ 4 COMMERCIAL AT uppercase A 17 LATIN CAPITAL LETTER A uppercase B 127 LATIN CAPITAL LETTER B uppercase C 147 LATIN CAPITAL LETTER C uppercase D 1457 LATIN CAPITAL LETTER D uppercase E 157 LATIN CAPITAL LETTER E uppercase F 1247 LATIN CAPITAL LETTER F uppercase G 12457 LATIN CAPITAL LETTER G uppercase H 1257 LATIN CAPITAL LETTER H uppercase I 247 LATIN CAPITAL LETTER I uppercase J 2457 LATIN CAPITAL LETTER J uppercase K 137 LATIN CAPITAL LETTER K uppercase L 1237 LATIN CAPITAL LETTER L uppercase M 1347 LATIN CAPITAL LETTER M uppercase N 13457 LATIN CAPITAL LETTER N uppercase O 1357 LATIN CAPITAL LETTER O uppercase P 12347 LATIN CAPITAL LETTER P uppercase Q 123457 LATIN CAPITAL LETTER Q uppercase R 12357 LATIN CAPITAL LETTER R uppercase S 2347 LATIN CAPITAL LETTER S uppercase T 23457 LATIN CAPITAL LETTER T uppercase U 1367 LATIN CAPITAL LETTER U uppercase V 12367 LATIN CAPITAL LETTER V uppercase W 24567 LATIN CAPITAL LETTER W uppercase X 13467 LATIN CAPITAL LETTER X uppercase Y 134567 LATIN CAPITAL LETTER Y uppercase Z 13567 LATIN CAPITAL LETTER Z punctuation [ 12356 LEFT SQUARE BRACKET punctuation \\ 146 REVERSE SOLIDUS punctuation ] 23456 RIGHT SQUARE BRACKET punctuation ^ 457 CIRCUMFLEX ACCENT punctuation _ 346 LOW LINE punctuation ` 47 GRAVE ACCENT lowercase a 1 LATIN SMALL LETTER A lowercase b 12 LATIN SMALL LETTER B lowercase c 14 LATIN SMALL LETTER C lowercase d 145 LATIN SMALL LETTER D lowercase e 15 LATIN SMALL LETTER E lowercase f 124 LATIN SMALL LETTER F lowercase g 1245 LATIN SMALL LETTER G lowercase h 125 LATIN SMALL LETTER H lowercase i 24 LATIN SMALL LETTER I lowercase j 245 LATIN SMALL LETTER J lowercase k 13 LATIN SMALL LETTER K lowercase l 123 LATIN SMALL LETTER L lowercase m 134 LATIN SMALL LETTER M lowercase n 1345 LATIN SMALL LETTER N lowercase o 135 LATIN SMALL LETTER O lowercase p 1234 LATIN SMALL LETTER P lowercase q 12345 LATIN SMALL LETTER Q lowercase r 1235 LATIN SMALL LETTER R lowercase s 234 LATIN SMALL LETTER S lowercase t 2345 LATIN SMALL LETTER T lowercase u 136 LATIN SMALL LETTER U lowercase v 1236 LATIN SMALL LETTER V lowercase w 2456 LATIN SMALL LETTER W lowercase x 1346 LATIN SMALL LETTER X lowercase y 13456 LATIN SMALL LETTER Y lowercase z 1356 LATIN SMALL LETTER Z punctuation { 1246 LEFT CURLY BRACKET punctuation | 456 VERTICAL LINE punctuation } 12456 RIGHT CURLY BRACKET punctuation ~ 45 TILDE letter \x007f 12348 DELETE letter \x0080 2367 letter \x0081 1256 letter \x0082 123456 BREAK PERMITTED HERE letter \x0083 23678 NO BREAK HERE letter \x0084 345 letter \x0085 23458 NEXT LINE (NEL) letter \x0086 16 START OF SELECTED AREA letter \x0087 1234567 END OF SELECTED AREA letter \x0088 12345678 CHARACTER TABULATION SET letter \x0089 678 CHARACTER TABULATION WITH JUSTIFICATION letter \x008a 123458 LINE TABULATION SET letter \x008b 3568 PARTIAL LINE FORWARD letter \x008c 458 PARTIAL LINE BACKWARD letter \x008d 4567 REVERSE LINE FEED letter \x008e 3457 SINGLE SHIFT TWO letter \x008f 167 SINGLE SHIFT THREE letter \x0090 1234567 DEVICE CONTROL STRING letter \x0091 1348 PRIVATE USE ONE letter \x0092 12568 PRIVATE USE TWO letter \x0093 3567 SET TRANSMIT STATE letter \x0094 246 CANCEL CHARACTER letter \x0095 67 MESSAGE WAITING letter \x0096 1234568 START OF GUARDED AREA letter \x0097 368 END OF GUARDED AREA letter \x0098 24568 START OF STRING letter \x0099 2467 letter \x009a 12567 SINGLE CHARACTER INTRODUCER letter \x009b 47 CONTROL SEQUENCE INTRODUCER letter \x009c 7 STRING TERMINATOR letter \x009d 457 OPERATING SYSTEM COMMAND letter \x009e 13468 PRIVACY MESSAGE letter \x009f 13458 APPLICATION PROGRAM COMMAND punctuation \x00a0 0 NO-BREAK SPACE punctuation \x00a1 2358 INVERTED EXCLAMATION MARK punctuation \x00a2 13568 CENT SIGN punctuation \x00a3 1238 POUND SIGN punctuation \x00a4 1578 CURRENCY SIGN punctuation \x00a5 1368 YEN SIGN punctuation \x00a6 468 BROKEN BAR punctuation \x00a7 4678 SECTION SIGN punctuation \x00a8 258 DIAERESIS punctuation \x00a9 138 COPYRIGHT SIGN letter \x00aa 478 FEMININE ORDINAL INDICATOR punctuation \x00ab 2378 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00ac 357 NOT SIGN punctuation \x00ad 8 SOFT HYPHEN punctuation \x00ae 12358 REGISTERED SIGN punctuation \x00af 23568 MACRON punctuation \x00b0 568 DEGREE SIGN punctuation \x00b1 38 PLUS-MINUS SIGN punctuation \x00b2 237 SUPERSCRIPT TWO punctuation \x00b3 257 SUPERSCRIPT THREE punctuation \x00b4 48 ACUTE ACCENT lowercase \x00b5 2368 MICRO SIGN punctuation \x00b6 467 PILCROW SIGN punctuation \x00b7 378 MIDDLE DOT punctuation \x00b8 35678 CEDILLA punctuation \x00b9 27 SUPERSCRIPT ONE letter \x00ba 1358 MASCULINE ORDINAL INDICATOR punctuation \x00bb 5678 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK punctuation \x00bc 34568 VULGAR FRACTION ONE QUARTER punctuation \x00bd 34567 VULGAR FRACTION ONE HALF punctuation \x00be 345678 VULGAR FRACTION THREE QUARTERS punctuation \x00bf 268 INVERTED QUESTION MARK uppercase \x00c0 1235678 LATIN CAPITAL LETTER A WITH GRAVE uppercase \x00c1 123567 LATIN CAPITAL LETTER A WITH ACUTE uppercase \x00c2 1678 LATIN CAPITAL LETTER A WITH CIRCUMFLEX uppercase \x00c3 14678 LATIN CAPITAL LETTER A WITH TILDE uppercase \x00c4 3457 LATIN CAPITAL LETTER A WITH DIAERESIS uppercase \x00c5 167 LATIN CAPITAL LETTER A WITH RING ABOVE uppercase \x00c6 34578 LATIN CAPITAL LETTER AE uppercase \x00c7 123467 LATIN CAPITAL LETTER C WITH CEDILLA uppercase \x00c8 234678 LATIN CAPITAL LETTER E WITH GRAVE uppercase \x00c9 23467 LATIN CAPITAL LETTER E WITH ACUTE uppercase \x00ca 1267 LATIN CAPITAL LETTER E WITH CIRCUMFLEX uppercase \x00cb 12467 LATIN CAPITAL LETTER E WITH DIAERESIS uppercase \x00cc 3478 LATIN CAPITAL LETTER I WITH GRAVE uppercase \x00cd 347 LATIN CAPITAL LETTER I WITH ACUTE uppercase \x00ce 1467 LATIN CAPITAL LETTER I WITH CIRCUMFLEX uppercase \x00cf 124567 LATIN CAPITAL LETTER I WITH DIAERESIS uppercase \x00d0 15678 LATIN CAPITAL LETTER ETH uppercase \x00d1 1245678 LATIN CAPITAL LETTER N WITH TILDE uppercase \x00d2 34678 LATIN CAPITAL LETTER O WITH GRAVE uppercase \x00d3 3467 LATIN CAPITAL LETTER O WITH ACUTE uppercase \x00d4 14567 LATIN CAPITAL LETTER O WITH CIRCUMFLEX uppercase \x00d5 145678 LATIN CAPITAL LETTER O WITH TILDE uppercase \x00d6 2467 LATIN CAPITAL LETTER O WITH DIAERESIS punctuation \x00d7 37 MULTIPLICATION SIGN uppercase \x00d8 24678 LATIN CAPITAL LETTER O WITH STROKE uppercase \x00d9 2345678 LATIN CAPITAL LETTER U WITH GRAVE uppercase \x00da 234567 LATIN CAPITAL LETTER U WITH ACUTE uppercase \x00db 1567 LATIN CAPITAL LETTER U WITH CIRCUMFLEX uppercase \x00dc 12567 LATIN CAPITAL LETTER U WITH DIAERESIS uppercase \x00dd 1234678 LATIN CAPITAL LETTER Y WITH ACUTE uppercase \x00de 12468 LATIN CAPITAL LETTER THORN lowercase \x00df 2348 LATIN SMALL LETTER SHARP S lowercase \x00e0 123568 LATIN SMALL LETTER A WITH GRAVE lowercase \x00e1 12356 LATIN SMALL LETTER A WITH ACUTE lowercase \x00e2 16 LATIN SMALL LETTER A WITH CIRCUMFLEX lowercase \x00e3 1468 LATIN SMALL LETTER A WITH TILDE lowercase \x00e4 345 LATIN SMALL LETTER A WITH DIAERESIS lowercase \x00e5 16 LATIN SMALL LETTER A WITH RING ABOVE lowercase \x00e6 3458 LATIN SMALL LETTER AE lowercase \x00e7 12346 LATIN SMALL LETTER C WITH CEDILLA lowercase \x00e8 23468 LATIN SMALL LETTER E WITH GRAVE lowercase \x00e9 2346 LATIN SMALL LETTER E WITH ACUTE lowercase \x00ea 126 LATIN SMALL LETTER E WITH CIRCUMFLEX lowercase \x00eb 1246 LATIN SMALL LETTER E WITH DIAERESIS lowercase \x00ec 348 LATIN SMALL LETTER I WITH GRAVE lowercase \x00ed 34 LATIN SMALL LETTER I WITH ACUTE lowercase \x00ee 146 LATIN SMALL LETTER I WITH CIRCUMFLEX lowercase \x00ef 12456 LATIN SMALL LETTER I WITH DIAERESIS lowercase \x00f0 1568 LATIN SMALL LETTER ETH lowercase \x00f1 124568 LATIN SMALL LETTER N WITH TILDE lowercase \x00f2 3468 LATIN SMALL LETTER O WITH GRAVE lowercase \x00f3 346 LATIN SMALL LETTER O WITH ACUTE lowercase \x00f4 1456 LATIN SMALL LETTER O WITH CIRCUMFLEX lowercase \x00f5 14568 LATIN SMALL LETTER O WITH TILDE lowercase \x00f6 246 LATIN SMALL LETTER O WITH DIAERESIS punctuation \x00f7 2567 DIVISION SIGN lowercase \x00f8 2468 LATIN SMALL LETTER O WITH STROKE lowercase \x00f9 234568 LATIN SMALL LETTER U WITH GRAVE lowercase \x00fa 23456 LATIN SMALL LETTER U WITH ACUTE lowercase \x00fb 156 LATIN SMALL LETTER U WITH CIRCUMFLEX lowercase \x00fc 1256 LATIN SMALL LETTER U WITH DIAERESIS lowercase \x00fd 123468 LATIN SMALL LETTER Y WITH ACUTE lowercase \x00fe 124678 LATIN SMALL LETTER THORN lowercase \x00ff 134568 LATIN SMALL LETTER Y WITH DIAERESIS liblouis-2.5.3/tables/ta.ctb0000664000175000017500000000166512161041546012646 00000000000000# Copyright (C) 2010 Leon Ungier , # Copyright (C) 2010 Mohammed R. Ramadan # Copyright (C) 2010 Samuel Thibault # # This file is part of liblouis. # # liblouis is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # liblouis is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with liblouis. If not, see # . # Table for Tamil include tamil.cti include text_nabcc.dis liblouis-2.5.3/tables/hu-exceptionwords.cti0000664000175000017500000022611312161041546015735 00000000000000# liblouis: Hungarian Grade 1 table # # Based on the Linux screenreader BRLTTY, copyright (C) 1999-2011 by the BRLTTY Team # # Copyright (C) 2011-2012, IT Foundation for the Visually Impaired - Hungary. Homepage: www.infoalap.hu # All rights reserved # # This file is free software; you can redistribute it and/or modify it # under the terms of the Lesser or Library GNU General Public License # as published by the # Free Software Foundation; either version 3, or (at your option) any # later version. # # This file 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 # Library GNU General Public License for more details. # # You should have received a copy of the Library GNU General Public # License along with this program; see the file COPYING. If not, write # to # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # Maintained by Attila Hammer hammer.attila@infoalap.hu" # # If you found bugs with hungarian grade1 table, report it with following address: # Attila Hammer . # #------------------------------------------------------------------------------- # # DEUTSCHE BASISSCHRIFT - German Grade 0 Braille - Germany, Austria # # Version 11-18-09 # christian.waldvogel@sbszh.ch # #------------------------------------------------------------------------------- include de-eurobrl6.dis include de-chardefs6.cti include de-de-accents.cti include de-g0-core.uti liblouis-2.5.3/liblouis.pc.in0000664000175000017500000000043312161041523013034 00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ tablesdir=${prefix}/share/liblouis/tables Name: liblouis Description: a braille translator and back-translator Version: @VERSION@ Requires: Libs: -L${libdir} -llouis Cflags: -I${includedir}/liblouis liblouis-2.5.3/man/0000775000175000017500000000000012161044235011117 500000000000000liblouis-2.5.3/man/Makefile.am0000664000175000017500000000442512161041546013102 00000000000000# Only build man pages if configure found the HELP2MAN tool if HAVE_HELP2MAN man_MANS = \ lou_allround.1 \ lou_checkhyphens.1 \ lou_checktable.1 \ lou_debug.1 \ lou_translate.1 \ lou_trace.1 endif CLEANFILES = $(man_MANS) # The man pages depend on the --help strings and the version number. common_mandeps = $(top_srcdir)/configure.ac # We are not distributing the man pages otherwise we would need rules # such as below. The user will have to install help2man if they want # man pages. # lou_allround.1: $(top_srcdir)/tools/lou_allround.c $(common_mandeps) # cd ../liblouis && $(MAKE) $(AM_MAKEFLAGS) liblouis.la # cd ../gnulib && $(MAKE) $(AM_MAKEFLAGS) libgnu.la # cd ../tools && $(MAKE) $(AM_MAKEFLAGS) lou_allround$(EXEEXT) # $(HELP2MAN) ../tools/lou_allround$(EXEEXT) --info-page=$(PACKAGE) --output=$@ # Depend on the source, not the binary; we don't need to regenerate the # binary when any source file changes, only the main one. lou_allround.1: $(top_srcdir)/tools/lou_allround.c $(common_mandeps) $(HELP2MAN) ../tools/lou_allround$(EXEEXT) --info-page=$(PACKAGE) \ --name="Test every capability of the liblouis library" \ --output=$@ lou_checkhyphens.1: $(top_srcdir)/tools/lou_checkhyphens.c $(common_mandeps) $(HELP2MAN) ../tools/lou_checkhyphens$(EXEEXT) --info-page=$(PACKAGE) \ --name="Check the accuracy of hyphenation in liblouis Braille translation tables" \ --output=$@ lou_checktable.1: $(top_srcdir)/tools/lou_checktable.c $(common_mandeps) $(HELP2MAN) ../tools/lou_checktable$(EXEEXT) --info-page=$(PACKAGE) \ --name="Test a liblouis Braille translation table" \ --output=$@ lou_debug.1: $(top_srcdir)/tools/lou_debug.c $(common_mandeps) $(HELP2MAN) ../tools/lou_debug$(EXEEXT) --info-page=$(PACKAGE) \ --name="A debugger for liblouis Braille translation tables" \ --output=$@ lou_translate.1: $(top_srcdir)/tools/lou_translate.c $(common_mandeps) $(HELP2MAN) ../tools/lou_translate$(EXEEXT) --info-page=$(PACKAGE) \ --name="A Braille translator for large scale testing of liblouis Braille translation tables" \ --output=$@ lou_trace.1: $(top_srcdir)/tools/lou_trace.c $(common_mandeps) $(HELP2MAN) ../tools/lou_trace$(EXEEXT) --info-page=$(PACKAGE) \ --name="A tool to list all the rules that were used for a Braille translation" \ --output=$@ liblouis-2.5.3/man/Makefile.in0000664000175000017500000006303012161044153013105 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = man DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(man_MANS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # Only build man pages if configure found the HELP2MAN tool @HAVE_HELP2MAN_TRUE@man_MANS = \ @HAVE_HELP2MAN_TRUE@ lou_allround.1 \ @HAVE_HELP2MAN_TRUE@ lou_checkhyphens.1 \ @HAVE_HELP2MAN_TRUE@ lou_checktable.1 \ @HAVE_HELP2MAN_TRUE@ lou_debug.1 \ @HAVE_HELP2MAN_TRUE@ lou_translate.1 \ @HAVE_HELP2MAN_TRUE@ lou_trace.1 CLEANFILES = $(man_MANS) # The man pages depend on the --help strings and the version number. common_mandeps = $(top_srcdir)/configure.ac all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu man/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu man/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @list='$(MANS)'; if test -n "$$list"; then \ list=`for p in $$list; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ if test -n "$$list" && \ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ echo " typically \`make maintainer-clean' will remove them" >&2; \ exit 1; \ else :; fi; \ else :; fi @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(MANS) installdirs: for dir in "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-man1 \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-man uninstall-man1 # We are not distributing the man pages otherwise we would need rules # such as below. The user will have to install help2man if they want # man pages. # lou_allround.1: $(top_srcdir)/tools/lou_allround.c $(common_mandeps) # cd ../liblouis && $(MAKE) $(AM_MAKEFLAGS) liblouis.la # cd ../gnulib && $(MAKE) $(AM_MAKEFLAGS) libgnu.la # cd ../tools && $(MAKE) $(AM_MAKEFLAGS) lou_allround$(EXEEXT) # $(HELP2MAN) ../tools/lou_allround$(EXEEXT) --info-page=$(PACKAGE) --output=$@ # Depend on the source, not the binary; we don't need to regenerate the # binary when any source file changes, only the main one. lou_allround.1: $(top_srcdir)/tools/lou_allround.c $(common_mandeps) $(HELP2MAN) ../tools/lou_allround$(EXEEXT) --info-page=$(PACKAGE) \ --name="Test every capability of the liblouis library" \ --output=$@ lou_checkhyphens.1: $(top_srcdir)/tools/lou_checkhyphens.c $(common_mandeps) $(HELP2MAN) ../tools/lou_checkhyphens$(EXEEXT) --info-page=$(PACKAGE) \ --name="Check the accuracy of hyphenation in liblouis Braille translation tables" \ --output=$@ lou_checktable.1: $(top_srcdir)/tools/lou_checktable.c $(common_mandeps) $(HELP2MAN) ../tools/lou_checktable$(EXEEXT) --info-page=$(PACKAGE) \ --name="Test a liblouis Braille translation table" \ --output=$@ lou_debug.1: $(top_srcdir)/tools/lou_debug.c $(common_mandeps) $(HELP2MAN) ../tools/lou_debug$(EXEEXT) --info-page=$(PACKAGE) \ --name="A debugger for liblouis Braille translation tables" \ --output=$@ lou_translate.1: $(top_srcdir)/tools/lou_translate.c $(common_mandeps) $(HELP2MAN) ../tools/lou_translate$(EXEEXT) --info-page=$(PACKAGE) \ --name="A Braille translator for large scale testing of liblouis Braille translation tables" \ --output=$@ lou_trace.1: $(top_srcdir)/tools/lou_trace.c $(common_mandeps) $(HELP2MAN) ../tools/lou_trace$(EXEEXT) --info-page=$(PACKAGE) \ --name="A tool to list all the rules that were used for a Braille translation" \ --output=$@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/python/0000775000175000017500000000000012161044235011665 500000000000000liblouis-2.5.3/python/Makefile.am0000664000175000017500000000005712161041522013637 00000000000000SUBDIRS = louis EXTRA_DIST = setup.py README liblouis-2.5.3/python/README0000664000175000017500000000123012161041522012455 00000000000000Liblouis Python ctypes bindings These bindings allow you to use liblouis from within Python. The package is called "louis". See the documentation included in the module for usage instructions. These bindings use ctypes to access the liblouis shared library. The liblouis shared library needs to be located in the library search path. In most cases, if liblouis has been installed in a standard location on your system, this is already the case and the bindings will work without any additional steps. A standard distutils setup.py script is provided for installation tasks. To install this package for system wide use, run (as root): python setup.py install liblouis-2.5.3/python/setup.py0000664000175000017500000000113612161041522013314 00000000000000r"""Python bindings for liblouis """ from distutils.core import setup import louis classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Programming Language :: Python', 'Topic :: Text Processing :: Linguistic', ] setup(name="louis", description=__doc__, download_url = "http://code.google.com/p/liblouis/", license="LGPLv2.2", classifiers=classifiers, version=louis.version().split(',')[0].split('-',1)[-1], packages=["louis"]) liblouis-2.5.3/python/Makefile.in0000664000175000017500000006464512161044153013670 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = python DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = louis EXTRA_DIST = setup.py README all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu python/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu python/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/python/louis/0000775000175000017500000000000012161044235013020 500000000000000liblouis-2.5.3/python/louis/Makefile.am0000664000175000017500000000031112161041522014763 00000000000000EXTRA_DIST = __init__.py.in CLEANFILES = __init__.py __init__.pyc all: source ../../liblouis/liblouis.la ; \ sed "s/###LIBLOUIS_SONAME###/$$dlname/" \ < $(srcdir)/__init__.py.in \ > __init__.py liblouis-2.5.3/python/louis/__init__.py.in0000664000175000017500000003057612161041522015465 00000000000000# Liblouis Python ctypes bindings # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. """Liblouis Python ctypes bindings These bindings allow you to use the liblouis braille translator and back-translator library from within Python. This documentation is only a Python helper. Please see the liblouis documentation for more information. Most of these functions take a C{tableList} argument which specifies a list of translation tables to use. Please see the liblouis documentation concerning the C{tableList} parameter to the C{lou_translateString} function for information about how liblouis searches for these tables. @author: Michael Curran @author: James Teh @author: Eitan Isaacson @author: Michael Whapples """ from ctypes import * import struct import atexit import sys # Some general utility functions def _createTablesString(tablesList): """Creates a tables string for liblouis calls""" return b",".join([x.encode("ASCII") if isinstance(x, str) else bytes(x) for x in tablesList]) createStr = None if sys.version_info[0] == 2: createStr = lambda x: unicode(x) else: createStr = lambda x: str(x) #{ Module Configuration #: Specifies the number by which the input length should be multiplied #: to calculate the maximum output length. #: @type: int # This default will handle the case where every input character is # undefined in the translation table. outlenMultiplier = 4 + sizeof(c_wchar) * 2 #} try: # Native win32 _loader = windll except NameError: # Unix/Cygwin _loader = cdll liblouis = _loader["###LIBLOUIS_SONAME###"] atexit.register(liblouis.lou_free) liblouis.lou_version.restype = c_char_p liblouis.lou_translateString.argtypes = ( c_char_p, c_wchar_p, POINTER(c_int), c_wchar_p, POINTER(c_int), POINTER(c_char), POINTER(c_char), c_int) liblouis.lou_translate.argtypes = ( c_char_p, c_wchar_p, POINTER(c_int), c_wchar_p, POINTER(c_int), POINTER(c_char), POINTER(c_char), POINTER(c_int), POINTER(c_int), POINTER(c_int), c_int) liblouis.lou_backTranslateString.argtypes = ( c_char_p, c_wchar_p, POINTER(c_int), c_wchar_p, POINTER(c_int), POINTER(c_char), POINTER(c_char), c_int) liblouis.lou_backTranslate.argtypes = ( c_char_p, c_wchar_p, POINTER(c_int), c_wchar_p, POINTER(c_int), POINTER(c_char), POINTER(c_char), POINTER(c_int), POINTER(c_int), POINTER(c_int), c_int) liblouis.lou_hyphenate.argtypes = ( c_char_p, c_wchar_p, c_int, POINTER(c_char), c_int) liblouis.lou_compileString.argtypes = (c_char_p, c_char_p) def version(): """Obtain version information for liblouis. @return: The version of liblouis, plus other information, such as the release date and perhaps notable changes. @rtype: str """ return liblouis.lou_version().decode("ASCII") def translate(tableList, inbuf, typeform=None,cursorPos=0, mode=0): """Translate a string of characters, providing position information. @param tableList: A list of translation tables. @type tableList: list of str @param inbuf: The string to translate. @type inbuf: str @param typeform: A list of typeform constants indicating the typeform for each position in inbuf, C{None} for no typeform information. @type typeform: list of int @param cursorPos: The position of the cursor in inbuf. @type cursorPos: int @param mode: The translation mode; add multiple values for a combined mode. @type mode: int @return: A tuple of: the translated string, a list of input positions for each position in the output, a list of output positions for each position in the input, and the position of the cursor in the output. @rtype: (str, list of int, list of int, int) @raise RuntimeError: If a complete translation could not be done. @see: lou_translate in the liblouis documentation """ tablesString = _createTablesString(tableList) inbuf = createStr(inbuf) inlen = c_int(len(inbuf)) outlen = c_int(inlen.value*outlenMultiplier) outbuf = create_unicode_buffer(outlen.value) typeformbuf = None if typeform: typeformbuf = create_string_buffer(struct.pack('B'*len(typeform),*typeform), size=outlen.value) inPos = (c_int*outlen.value)() outPos = (c_int*inlen.value)() cursorPos = c_int(cursorPos) if not liblouis.lou_translate(tablesString, inbuf, byref(inlen), outbuf, byref(outlen), typeformbuf, None, outPos, inPos, byref(cursorPos), mode): raise RuntimeError("can't translate: tables %s, inbuf %s, typeform %s, cursorPos %s, mode %s"%(tableList, inbuf, typeform, cursorPos, mode)) if isinstance(typeform, list): typeform[:] = typeformbuf.value return outbuf.value, inPos[:outlen.value], outPos[:inlen.value], cursorPos.value def translateString(tableList, inbuf, typeform = None, mode = 0): """Translate a string of characters. @param tableList: A list of translation tables. @type tableList: list of str @param inbuf: The string to translate. @type inbuf: str @param typeform: A list of typeform constants indicating the typeform for each position in inbuf, C{None} for no typeform information. @type typeform: list of int @param mode: The translation mode; add multiple values for a combined mode. @type mode: int @return: The translated string. @rtype: str @raise RuntimeError: If a complete translation could not be done. @see: lou_translateString in the liblouis documentation """ tablesString = _createTablesString(tableList) inbuf = createStr(inbuf) inlen = c_int(len(inbuf)) outlen = c_int(inlen.value*outlenMultiplier) outbuf = create_unicode_buffer(outlen.value) typeformbuf = None if typeform: typeformbuf = create_string_buffer(struct.pack('B'*len(typeform),*typeform), size=outlen.value) if not liblouis.lou_translateString(tablesString, inbuf, byref(inlen), outbuf, byref(outlen), typeformbuf, None, mode): raise RuntimeError("can't translate: tables %s, inbuf %s, typeform %s, mode %s"%(tableList, inbuf, typeform, mode)) if isinstance(typeform, list): typeform[:] = typeformbuf.value return outbuf.value def backTranslate(tableList, inbuf, typeform=None, cursorPos=0, mode=0): """Back translates a string of characters, providing position information. @param tableList: A list of translation tables. @type tableList: list of str @param inbuf: Braille to back translate. @type inbuf: str @param typeform: List where typeform constants will be placed. @type typeform: list @param cursorPos: Position of cursor. @type cursorPos: int @param mode: Translation mode. @type mode: int @return: A tuple: A string of the back translation, a list of input positions for each position in the output, a list of the output positions for each position in the input and the position of the cursor in the output. @rtype: (str, list of int, list of int, int) @raises RuntimeError: If back translation could not be completed. @see: lou_backTranslate in the liblouis documentation. """ tablestring = _createTablesString(tableList) inbuf = createStr(inbuf) inlen = c_int(len(inbuf)) outlen = c_int(inlen.value * outlenMultiplier) outbuf = create_unicode_buffer(outlen.value) typeformbuf = None if isinstance(typeform, list): typeformbuf = create_string_buffer(outlen.value) inPos = (c_int*outlen.value)() outPos = (c_int*inlen.value)() cursorPos = c_int(cursorPos) if not liblouis.lou_backTranslate(tablestring, inbuf, byref(inlen), outbuf, byref(outlen), typeformbuf, None, outPos, inPos, byref(cursorPos), mode): raise RuntimeError("Can't back translate tableList %s, inbuf %s, typeform %s, cursorPos %d, mode %d" % (tableList, inbuf, typeform, cursorPos, mode)) if isinstance(typeform, list): typeform[:] = typeformbuf.value return outbuf.value, inPos[:outlen.value], outPos[:inlen.value], cursorPos.value def backTranslateString(tableList, inbuf, typeform=None, mode=0): """Back translate from Braille. @param tableList: A list of translation tables. @type tableList: list of str @param inbuf: The Braille to back translate. @type inbuf: str @param typeform: List for typeform constants to be put in. If you don't want typeform data then give None @type typeform: list @param mode: The translation mode @type mode: int @return: The back translation of inbuf. @rtype: str @raises RuntimeError: If a full back translation could not be done. @see: lou_backTranslateString in the liblouis documentation. """ tablestring = _createTablesString(tableList) inbuf = createStr(inbuf) inlen = c_int(len(inbuf)) outlen = c_int(inlen.value * outlenMultiplier) outbuf = create_unicode_buffer(outlen.value) typeformbuf = None if isinstance(typeform, list): typeformbuf = create_string_buffer(outlen.value) if not liblouis.lou_backTranslateString(tablestring, inbuf, byref(inlen), outbuf, byref(outlen), typeformbuf, None, mode): raise RuntimeError("Can't back translate tables %s, inbuf %s, mode %d" %(tablestring, inbuf, mode)) if isinstance(typeform, list): typeform[:] = typeformbuf.value[:outlen.value] return outbuf.value def hyphenate(tableList, inbuf, mode=0): """Get information for hyphenation. @param tableList: A list of translation tables and hyphenation dictionaries. @type tableList: list of str @param inbuf: The text to get hyphenation information about. This should be a single word and leading/trailing whitespace and punctuation is ignored. @type inbuf: str @param mode: Lets liblouis know if inbuf is plain text or Braille. Set to 0 for text and anyother value for Braille. @type mode: int @return: A string with '1' at the beginning of every syllable and '0' elsewhere. @rtype: str @raises RuntimeError: If hyphenation data could not be produced. @see: lou_hyphenate in the liblouis documentation. """ tablesString = _createTablesString(tableList) inbuf = createStr(inbuf) inlen = c_int(len(inbuf)) hyphen_string = create_string_buffer(inlen.value + 1) if not liblouis.lou_hyphenate(tablesString, inbuf, inlen, hyphen_string, mode): raise RuntimeError("Can't hyphenate tables %s, inbuf %s, mode %d" %(tablesString, inbuf, mode)) return hyphen_string.value.decode("ASCII") def compileString(tableList, inString): """Compile a table entry on the fly at run-time. @param tableList: A list of translation tables. @type tableList: list of str @param inString: The table entry to be added. @type inString: str @raise RuntimeError: If compilation of the entry failed. @see: lou_compileString in the liblouis documentation """ tablesString = _createTablesString(tableList) inBytes = inString.encode("ASCII") if isinstance(inString, str) else bytes(inString) if not liblouis.lou_compileString(tablesString, inString): raise RuntimeError("Can't compile entry: tables %s, inString %s" % (tableList, inString)) #{ Typeforms plain_text = 0 italic = 1 underline = 2 bold = 4 computer_braille = 8 #{ Translation modes noContractions = 1 compbrlAtCursor = 2 dotsIO = 4 comp8Dots = 8 pass1Only = 16 compbrlLeftCursor = 32 otherTrans = 64 ucBrl = 128 #} if __name__ == '__main__': # Just some common tests. print(version()) print(translate([b'../tables/en-us-g2.ctb'], 'Hello world!', cursorPos=5)) liblouis-2.5.3/python/louis/Makefile.in0000664000175000017500000004717212161044154015020 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = python/louis DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = __init__.py.in CLEANFILES = __init__.py __init__.pyc all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu python/louis/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu python/louis/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am all: source ../../liblouis/liblouis.la ; \ sed "s/###LIBLOUIS_SONAME###/$$dlname/" \ < $(srcdir)/__init__.py.in \ > __init__.py # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/configure.ac0000664000175000017500000000715512161043124012556 00000000000000# Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(liblouis, 2.5.3, john.boyer@abilitiessoft.com) AC_CONFIG_SRCDIR([liblouis/lou_backTranslateString.c]) AM_CONFIG_HEADER(liblouis/config.h) dnl backwards compatibility for autoconf <= 2.64 dnl PACKAGE_URL should be the fifth argument of AC_INIT m4_define([AC_PACKAGE_URL], [http://code.google.com/p/liblouis/]) AC_DEFINE(PACKAGE_URL, "AC_PACKAGE_URL", [Package URL]) AC_SUBST(PACKAGE_URL, AC_PACKAGE_URL) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) #AM_INIT_AUTOMAKE([color-tests]) # Checks for programs. AC_PROG_CC # gnulib gl_EARLY gl_INIT # make sure we have a decent malloc and realloc gl_FUNC_MALLOC_GNU if test $REPLACE_MALLOC = 1; then AC_LIBOBJ([malloc]) fi gl_MODULE_INDICATOR([malloc-gnu]) gl_FUNC_REALLOC_GNU if test $REPLACE_REALLOC = 1; then AC_LIBOBJ([realloc]) fi gl_MODULE_INDICATOR([realloc-gnu]) # Checks for more programs. AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET # Checks for libraries. # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stddef.h stdlib.h string.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST # Checks for library functions. AC_FUNC_MEMCMP AC_FUNC_VPRINTF AC_CHECK_FUNCS([memset]) # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. AH_TOP([ #ifndef LOUISCFG_H #define LOUISCFG_H ]) AH_BOTTOM([ #endif /*LOUISCFG_H*/ ]) # increment if the interface has additions, changes, removals. LIBLOUIS_CURRENT=5 # increment any time the source changes; set to # 0 if you increment CURRENT LIBLOUIS_REVISION=3 # increment if any interfaces have been added; set to 0 # if any interfaces have been changed or removed. removal has # precedence over adding, so set to 0 if both happened. LIBLOUIS_AGE=3 AC_SUBST(LIBLOUIS_CURRENT) AC_SUBST(LIBLOUIS_REVISION) AC_SUBST(LIBLOUIS_AGE) AC_ISC_POSIX AC_HEADER_STDC AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL # GNU help2man creates man pages from --help output; in many cases, # this is sufficient, and obviates the need to maintain man pages # separately. However, some developers do not have it so we do not # make its use mandatory. if test "x$cross_compiling" = xyes; then AC_MSG_WARN([cannot generate manual pages while cross compiling]) else AC_CHECK_PROG([HELP2MAN], [help2man], [help2man]) fi AM_CONDITIONAL([HAVE_HELP2MAN], [test x$HELP2MAN = xhelp2man]) # Check if we have Python installed AM_PATH_PYTHON([2.6],, [:]) AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :]) AC_PATH_PROG(PKG_CONFIG, pkg-config) AC_ARG_ENABLE(ucs4, AC_HELP_STRING(--enable-ucs4, Enable 4 byte-wide characters.), [], [enable_ucs4=no]) AC_MSG_CHECKING([whether 4 byte-wide characters should be supported]) AC_MSG_RESULT($enable_ucs4) case "$enable_ucs4" in yes) WIDECHAR_TYPE='unsigned int';; *) WIDECHAR_TYPE='unsigned short int';; esac AC_SUBST(WIDECHAR_TYPE) AM_CONDITIONAL([HAVE_UCS4], [test x$enable_ucs4 = xyes]) case $host in *mingw* | *cygwin*) CFLAGS="$CFLAGS -Wl,--add-stdcall-alias" ;; esac AC_CONFIG_FILES([ Makefile doc/Makefile man/Makefile liblouis/Makefile liblouis/liblouis.h windows/Makefile windows/include/Makefile tables/Makefile liblouis.pc tests/Makefile tests/tables/Makefile tests/tables/moreTables/Makefile tests/doctests/Makefile tests/harness/Makefile tests/harnessSources/Makefile python/Makefile python/louis/Makefile tools/Makefile gnulib/Makefile m4/Makefile]) AC_OUTPUT liblouis-2.5.3/ChangeLog0000664000175000017500000014324312161043453012046 000000000000002013-06-21 Christian Egli * configure.ac: Update release number 2013-06-10 Joseph Lee * tables/en-ueb-g1.ctb: * tables/en-ueb-chardefs.uti: latest additions to Unified English Braille. 2013-06-06 Christian Egli * tables/Makefile.am (table_files): * liblouis/compileTranslationTable.c (doLang2table): (compileTranslationTable): Remove the lang2table feature. It was never used, undocumented and contains an out-of-bounds access bug. See also http://www.freelists.org/post/liblouis-liblouisxml/PATCH-FW-Outofbounds-access-in-doLang2Table 2013-06-03 Christian Egli * tests/hash_collision.c: * tests/Makefile.am (XFAIL_TESTS): Mark the hash_collision test as a known failure. * liblouis/compileTranslationTable.c (allocateSpaceInTable): When the table needs more space it is reallocated. Unfortunately not all references to the table (such as the tableChain) are updated. This is now fixed. * tests/tables/large.ctb: * tests/tables/Makefile.am: * HACKING: Added a new section about profiling and some test table that can be used for profiling. 2013-05-28 Christian Egli * tests/hash_collision.c: * tests/tables/empty.ctb: * tests/tables/Makefile.am: * tests/Makefile.am: Add a new test to benchmark the hash algorithm. 2013-01-28 Igor B. Poretsky * tables/ru-litbrl.ctb: * tables/ru-letters.dis: * tables/ru-compbrl.ctb: * tables/ru-chardefs.cti: * tables/Makefile.am (table_files): Add new russian tables. * tables/hyph_ru.dic: Added russian hyphenation dictionary. * tables/it-it-comp6.utb: A little fix for Italian table. 2013-01-28 Knut Arne Bjørndal * tables/no-no-g0.utb: Fixes for Emphasis marks in the norwegian braille table. 2013-01-25 Christian Egli * tables/no-no-g0.utb: Corrections for double angle quotation mark. Thanks to Knut Arne Bjørndal for the patch. 2013-01-24 Christian Egli * tools/lou_trace.c: Fix warnings and run through indent. 2013-01-24 David Reynolds * tables/en-gb-comp8.ctb: Add the British pound sign. 2013-01-21 David Reynolds * tables/en-gb-comp8.ctb: Added a table for U.K. English 8 dot Computer braille. 2013-01-21 Joseph Lee * tables/en-ueb-g2.ctb: Improvements based on Leona's requested changes. 2013-01-17 Joseph Lee * tables/en-ueb-g2.ctb: Changed some entries thanks to the document that Leona provided. 2013-01-11 Christian Egli * liblouis/Makefile.am: * gnulib/Makefile.am: * configure.ac: * HACKING: Use the malloc and realloc modules from gnulib to enable cross compilation to windows using mingw. 2013-01-09 Christian Egli * tables/ko.ctb: Fixes for the Korean tables by Joseph Lee. 2013-01-04 Christian Egli * gnulib/sys/*.h: * gnulib/m4/*.m4 * gnulib/*.h: * gnulib/*.c: * gnulib/Makefile.am: * build-aux/snippet/*.h: Upgrade to gnulib v0.0-7794-g964bbc2 * tables/en-ueb-g2.ctb: excludes entries that are not needed, thanks to Joseph Lee. * tables/Makefile.am (table_files): * tables/ko.ctb: * tables/ko-g2.ctb: * tables/ko-g1.ctb: Added Korean tables by Joseph Lee. * tests/check_all_tables.pl: Ignore zip files. 2012-12-21 Christian Egli * tests/check_all_tables.pl: Exclude backup, patch, diff and txt files from the table tests. 2012-12-20 Christian Egli * tables/Makefile.am (table_files): * tables/ru-ru-comp8: Remove ru-ru-comp8 table as it fails and is a duplicate of ru.ctb * tests/check_all_tables.pl: Check all files by default and exclude only known exceptions, e.g. Makefiles, shell scripts, etc. 2012-12-19 Christian Egli * gnulib/m4/unistd_h.m4: * gnulib/m4/gnulib-comp.m4: * gnulib/m4/extern-inline.m4: * gnulib/unistd.in.h: * gnulib/unistd.c: * gnulib/Makefile.am (libgnu_la_SOURCES): * build-aux/snippet/warn-on-use.h: Upgrade to newest gnulib * tests/brl_checks.c (convert_typeform): Make it compile under C89. * tools/lou_translate.c (print_help): * tools/lou_trace.c (print_help): * tools/lou_debug.c (print_help): * tools/lou_checktable.c (print_help): * tools/lou_checkhyphens.c (print_help): * tools/lou_allround.c (print_help): Update the usage message to show that more than one table can be specified. 2012-12-18 Christian Egli * tests/tables/Makefile.am (EXTRA_DIST): Add all test tables. 2012-12-17 Christian Egli * NEWS: Added all new features to the NEWS entry for this release. * doc/liblouis.texi: Add documentation for the lou_trace program. * tools/lou_trace.c: Add copyright information. (print_script): Fixes to the printing of context rules. * liblouis/lou_translateString.c (checkMultCaps): (noCompbrlAhead): Fix the valgrind warnings properly without adding a regression. (translateString): Make sure appliedRules are also updated for the context opcode. 2012-12-17 Hammer Attila * tests/harnessSources/hu-hu-g1_harness_source.txt: * tests/harnessSources/hu-hu-g1-hyph_harness_source.txt: * tests/harness/hu-hu-g1_harness.txt: * tests/harness/hu-hu-g1-hyph_harness.txt: * tables/hu-exceptionwords.cti: Bug fix and tests for the Hungarian grade 1 table. 2012-12-14 Christian Egli * tests/typeform.c: Added a comment about the purpose of this file, as it isn't really a test * tests/brl_checks.h: * tests/brl_checks.c (convert_typeform): Add the new function to the header file. 2012-12-13 Christian Egli * tests/typeform.c: * tests/en_gb_g1_italics.c: * tests/brl_checks.c: * liblouis/compileTranslationTable.c: Fix compiler warnings, like unused variables, macro redefinition, comparison between signed and unsigned integer expressions, etc. * configure.ac: * NEWS: Update for release 2.5.2 2012-12-13 Paul Wood * tables/en-GB-g2.ctb: Fix a regression with the 'com' contraction. 2012-12-10 Christian Egli * tables/ukchardefs.cti: Fixes provided by Paul Paul Wood. 2012-12-07 Paul Wood * tables/en-GB-g2.ctb: Corrections to the g2 table. 2012-12-06 Christian Egli * tables/ko.ctb: * tables/Makefile.am (table_files): Add a table for Korean provided by Joseph Lee 2012-12-04 Christian Egli * liblouis/Makefile.am (AM_ETAGSFLAGS): The langmap option only works if you use ctags. Newer versions of etags (i.e. emacs 24 and up) seem to generate proper TAGS files even for *.ci files, so this option can be removed. 2012-12-03 Christian Egli * liblouis/lou_translateString.c (lou_dotsToChar): Fix some valgrind warnings about invalid reads, i.e. do some array bound checking. 2012-12-03 Joseph Lee * tables/Makefile.am (table_files): * tables/en-ueb-g1.ctb: * tables/en-ueb-g2.ctb: Added ueb tables 2012-10-02 Christian Egli * gnulib: Update gnulib 2012-09-21 Christian Egli * tables/it-it-comp8.utb: More fixes to the italian table. Thanks to Simone Dal Maso 2012-09-06 Christian Egli * tests/Makefile.am (check_PROGRAMS): * tests/brl_checks.c: * tests/brl_checks.h: * tests/pass1Only.c: Added a test case for the reported memory problem with pass1Only. 2012-09-05 Christian Egli * tests/runHarness.py (test_allCases): Add some code to enable the harness to return the result of the tests. Disable it for now as there are still some tables that fail that we cannot fix before release. * tables/de-de-comp8.ctb: Added more unicode definitions. Thanks to Aliminator83@gmail.com. 2012-09-04 Christian Egli * tests/check_all_tables.pl: * tests/check_endless_loop.pl: * tests/multiple_table_path.pl: When doing VPATH builds (such as in `make distcheck`) the binary for lou_checktable is not found. Just use a relative path to find it. 2012-07-10 Christian Egli * doc/liblouis.texi (How to Write Translation Tables): Document the fact that translation tables can now be in UTF-8. (Top): Document the doctests. (How to Write Translation Tables): Add some minimal documentation about the doctests 2012-06-28 Christian Egli * doc/liblouis.texi (Miscellaneous Opcodes): Enhance the documentation on the display opcode 2012-06-14 Christian Egli * liblouis/lou_translateString.c (hyphenate): Fix a buffer overrun. 2012-06-07 Christian Egli * liblouis/compileTranslationTable.c (compilePassOpcode): Increase the number of chars matched in a $a. expression from 32 to 0xffff. * doc/liblouis.texi (The Context and Multipass Opcodes): Document the fact that context $a. matches are limited to 0xffff * python/louis/__init__.py.in (hyphenate): Now that we know that hyphens array should be inlen+1 adapt the Python bindings accordingly. * doc/liblouis.texi (lou_hyphenate): Fix a documentation bug with lou_hyphenate. The length of the hyphens array should be inlen+1. * tests/Makefile.am (check_PROGRAMS): * tests/brl_checks.c (check_hyphenation): * tests/brl_checks.h: * tests/hyphenate.c (main): Add a test program hyphenation. 2012-06-01 Christian Egli * tests/Makefile.am: * tests/repeated.c: * tests/squash_space.c: * tests/tables/Makefile.am: * tests/tables/repeated.utb: * tests/tables/repeated_with_correct.utb: * tests/tables/squash_space_with_context_1.utb: * tests/tables/squash_space_with_context_2.utb: * tests/tables/squash_space_with_correct.utb: * tests/tables/squash_space_with_repeated.utb: More tests for squashing white space. It looks like I found some bugs after all. * tests/brl_checks.c (check_translation): Also print the input string and delimit the strings with single quotes to better see white space. * TODO: Added a TODO file to note things that could/should be done. * tables/de-de-comp8.ctb: Add Symbols such as double quotes, dashes to the German computer braille table. Thanks to Aliminator83@gmail.com 2012-05-31 Christian Egli * tests/Makefile.am: * tests/repeated.c: * tests/tables/Makefile.am: * tests/tables/repeated.utb: * tests/tables/repeated_with_correct.utb: Added a test for the repeated opcode. Rumors had it that it was buggy, but it does what it is supposed to. * doc/liblouis.texi (The correct Opcode): Remove the comment about input and output positions being incorrect. This bug has been fixed. 2012-05-30 Christian Egli * tests/tables/letterDefTest_uppercase.ctb: * tests/tables/letterDefTest_uplow.ctb: * tests/tables/letterDefTest_lowercase.ctb: * tests/tables/letterDefTest_letter.ctb: * tests/letterDefTest.c (main): Convert the test so that it returns the result of the test. Also use the \xhhhh notation for unicode so that it works with the c based test framework. 2012-05-11 Christian Egli * liblouis/compileTranslationTable.c (doLang2table): Remove an unused variable that was reported by -Wall (getALine): Properly initialize a variable. This issue was reported by Valgrind. 2012-05-07 Christian Egli * tests/brl_checks.c (check_translation): Enhance to be able to handle \xhhhh encoded strings like the rest of liblouis. This is to support unicode based test cases. * tests/uplow_with_unicode.c: * tests/tables/uplow_with_unicode.ctb: * tests/tables/lowercase_with_unicode.ctb: * tests/Makefile.am (uplow_with_unicode_SOURCES): Add a test for the problem with lowercase and unicode. 2012-04-20 Christian Egli * tables/nl-BE.dis: * tables/Makefile.am (table_files): * tests/doctests/Makefile.am: * tests/doctests/nl-BE-g1.ctb_test.txt: Added a doctest for the dutch tables 2012-04-18 Christian Egli * tests/pass2_outpos.c: * tests/pass2_inpos.c: Rename test to reflect what it really tests. * tests/Makefile.am: * tests/brl_checks.h: * tests/brl_checks.c (check_inpos): * tests/inpos_compbrl.c: Rename check_outpos to check_inpos to reflect the true intention of the function. 2012-04-17 Christian Egli * tests/doctests/en-GB-g2.ctb_test.txt: * tests/check_doctests.py (TestHelper): Add a test helper to simplify the writing of doctests. * tests/tables/moreTables/include.utb: * tests/Makefile.am (TESTS_ENVIRONMENT): * tests/multiple_table_path.pl: Added some tests for the improved LOUIS_TABLEPATH functionality. 2012-04-13 Christian Egli * tests/Makefile.am: * tests/tables/pass2.ctb: * tests/pass2_outpos.c: Add a test for the problem with pass2 and outpos. * tests/brl_checks.h: * tests/brl_checks.c (check_outpos): * tests/inpos_compbrl.c (main): Enhance so that output position can be checked for different tables. 2012-03-23 Christian Egli * tests/tables/pass2.ctb: * tests/tables/Makefile.am: * tests/pass2.c: * tests/Makefile.am: Add a test to show the regression with the pass2 opcode. * tests/brl_checks.c (check_translation): Make the printing of test results more robust (against out of bound errors). 2012-03-21 Christian Egli * tests/Makefile.am (TESTS_ENVIRONMENT): Set the env variables so that the libraries and executables from the source directories are used instead of the installed ones. 2012-03-20 Christian Egli * configure.ac: * tests/Makefile.am: Only enable the Python based tests if configured with ucs4. 2012-03-02 Mesar Hameed * configure.ac: * doc/liblouis.texi: * tests/Makefile.am: * tests/harness/Makefile.am: * tests/harness/__init__.py: * tests/harness/en-GB-g2_harness.py: * tests/runHarness.py: Add a test harness, i.e. an infrastructure to be able to do table tests in a simple and concise syntax. 2012-03-01 Christian Egli * configure.ac: * python/louis/Makefile.am: * tests/Makefile.am: * tests/check_doctests.py: * tests/doctests/Makefile.am: * tests/doctests/en-GB-g2.ctb_test.txt: Check for Python in configure and if there is a Python interpreter enable some Python based doctests. 2012-02-27 Mesar Hameed * python/louis/__init__.py.in: Expose the constants otherTrans and ucBrl in the python bindings. 2012-02-22 Christian Egli * configure.ac: Update version number * tables/ta-ta-g1.ctb: Added a new tamil table by Mesar Hameed * tables/no-no.ctb: Additions to the Norwegian braille tables thanks to David Hole. 2012-02-21 Juan Carlos Buño Suárez * tables/Es-Es-G0.utb: add support for the letter Ñ to the Spanish table. 2012-02-20 Birkir Gunnarsson * tables/is.ctb: Updates and additions to Icelandic 8-dot braille table. 2012-02-06 Christian Egli * tables/Es-Es-G0.utb: Added Spanish grade0 table provided by José Enrique Fernández del Campo and Juan Carlos Buño Suárez. 2012-02-01 Christian Egli * tables/pt-pt-g1.utb: Added improvements to Portuguese table by Rui Batista . * tables/hyph_cs_CZ.dic: * tables/Makefile.am (table_files): Added hyphenation table for Czech provided by Jan Halousek 2012-01-09 Christian Egli * tables/ar-ar-g1.utb: Added updates to Generic Arabic table by Mesar Hameed 2011-08-19 Bert Frees * tables/cs-chardefs.cti: * tables/cs-g1.ctb: * tables/cs-translation.ctb: Improved translation tables for Czech braille. Credit goes to Jan Halousek 2011-08-08 Michel Such * tables/fr-bfu-comp8.utb: * tables/fr-bfu-comp6.utb: Updated French tables. 2011-06-28 Christian Egli * tables/Makefile.am (table_files): Added the table provided by Mesar Hameed to the build process. 2011-06-28 Mesar Hameed * tables/ar-fa.utb: Added a table for Arabic Farsi. * tables/ar-ar-g1.utb: Enhance the Generic Arabic Grade 1 table 2011-06-24 Christian Egli * windows/Makefile.nmake: Rename the Makefile to Makefile.nmake to make sure it's not overwritten by autoconf * windows/Makefile.am (SUBDIRS): Add the include sub dir 2011-06-17 Christian Egli * tests/Makefile.am (en_gb_g1_italics_SOURCES): * tests/en_gb_g1_italics.c (main): Add a test case for italics with the en-gb-g1.utb table. 2011-05-30 Stefan Moisei * tables/ro.ctb: Updates to Romanian table. 2011-05-25 Christian Egli * tests/brl_checks.c (check_translation): Print the outbuf using a dedicated function. The normal printf with the %ls modifier doesn't work as outbuf is not really of type wchar_t. Now the received output is correctly printed in the test cases. 2011-05-18 Christian Egli * tables/braille-patterns.cti: Fix a problem with the definition of Unicode character U+2800. This issue was brought up on the list by James Teh. 2011-05-18 Michel Such * tables/fr-bfu-comp8.utb: Some fixes for french tables. 2011-05-09 Christian Egli * NEWS: * configure.ac: Changed the version number. 2011-05-03 Coscell Kao * tables/zh-tw.ctb: Update the Chinese braille table. 2011-04-26 Christian Egli * tables/ar-ar-g1.utb (math): Integrate a patch by Mesar Hameed , some white space and encoding cleanup. 2011-04-15 Peter Engström * tables/sr-chardefs.cti: * tables/sr-g1.ctb: * tables/sr-translation.ctb: * tables/Makefile.am (table_files): Added braille tables for Serbian * tables/gez-chardefs.cti: * tables/gez-g1.ctb: * tables/gez-translation.ctb: * tables/Makefile.am (table_files): Added braille tables for Ethiopic * tables/ckb-chardefs.cti: * tables/ckb-g1.ctb: * tables/ckb-translation.ctb: * tables/Makefile.am (table_files): Added braille tables for Sorani (Kurdish) 2011-04-15 Bert Frees * tables/es-chardefs.cti: * tables/es-g1.ctb: * tables/es-translation.ctb: * tables/Makefile.am (table_files): Improvements to the Spanish Braille tables. * tables/nl-BE-translation.ctb: * tables/nl-BE-g1.ctb: * tables/Makefile.am (table_files): Improvements to the Dutch Braille tables. * tables/braille-patterns.cti: * tables/nl-BE-chardefs.cti: * tables/wiskunde-chardefs.cti: * tables/wiskunde-translation.ctb: * tables/wiskunde.ctb: * tables/Makefile.am (table_files): Improvements to the Flemish Braille Math Code tables. 2011-04-15 Christian Egli * tests/check_all_tables.pl: Make sure translation tables which are just meant to be included such as *-translation.ctb are not checked. 2011-04-08 Coscell Kao * tables/zh-tw.ctb: Improvements to the Chinese braille table 2011-03-30 Christian Egli * tests/multiple_table_path.pl: Make sure the test also run in a VPATH build, i.e. in make distcheck. 2011-03-28 Christian Egli * tables/Makefile.am (table_files): Added a new swedish table provided by Samuel Thibault. * doc/liblouis.texi (Deprecated Opcodes): Added a section on deprecated opcodes. 2011-03-21 Christian Egli * contrib/liblouis.spec: Removed spec file as it is now maintained in Fedora. 2011-03-03 Christian Egli * tables/it-it-g1.utb2: Added an updated italian 8 dot table provided by Caterina Avoledo 2010-12-16 Christian Egli * tests/check_all_tables: Removed * tests/check_all_tables.pl: Port the check_all_tables shell script to perl and add a timeout to handle the endless loop problem when checking all the tables. 2010-12-09 Bert Frees * tables/nl-BE.cti: * tables/nl-BE-g1.ctb: modified the Dutch tables a bit, for improved back-translation and hyphenation. 2010-12-09 Lars Bjørndal * tables/no-no-g0.utb: * tables/no-no-g1.utb: * tables/no-no-g2.utb: * tables/no-no-g3.utb: Added slightly modified versions of Norwegian braille tables. 2010-12-07 Christian Egli * tests/tables/loop.ctb: * tests/tables/Makefile.am: * tests/check_endless_loop.pl: * tests/Makefile.am: * configure.ac: Add a new test case which exhibits an endless loop in the table compiler if you configure with --enable-ucs4. * tables/is-chardefs6.cti: Fix a problem with undefined dot patterns. 2010-12-07 Bert Frees * tables/wiskunde_edit.cti: * tables/wiskunde.cti: * tables/wiskunde.ctb: * tables/nl-BE.cti: * tables/nl-BE-g1.ctb: Added Dutch tables provided by Bert Frees 2010-11-26 Christian Egli * doc/liblouis.texi (Translation Opcodes): Fix typos and add an example for the usage of joinnum. (The Context and Multipass Opcodes): Added some clarification on the workings of the multipass opcode that was posted to the mailing list by Bert Frees. (The Context and Multipass Opcodes): beautify the table of characters that can be used for attribute strings. 2010-11-18 Christian Egli * tables/is-chardefs8.cti: Add table for computer braille based on the IceBraille standard, v1.0 by Birkir Gunnarsson, birkir@midstod.is 2010-11-12 Christian Egli * tables/Makefile.am (table_files): * tables/es-old.dis: * tables/es-new.dis: * tables/es-g1.ctb: * tables/es-chardefs.cti: * tables/ca-g1.ctb: * tables/ca-chardefs.cti: Added Spanish tables made by Bert Frees . 2010-09-27 Christian Egli * tables/Makefile.am (table_files): Integrate the new indian tables. (table_files): Integrate the new Icelandic table. 2010-09-27 Birkir Gunnarsson * tables/is-chardefs6.cti: Added support for Icelandic 6-dot. 2010-09-27 Samuel Thibault * tables/as.ctb: * tables/awa.ctb: * tables/bengali.cti: * tables/bh.ctb: * tables/bn.ctb: * tables/bra.ctb: * tables/devanagari.cti: * tables/dra.ctb: * tables/gon.ctb: * tables/gu.ctb: * tables/gujarati.cti: * tables/gurmukhi.cti: * tables/hi.ctb: * tables/kannada.cti: * tables/kha.ctb: * tables/kn.ctb: * tables/kok.ctb: * tables/kru.ctb: * tables/malayalam.cti: * tables/ml.ctb: * tables/mni.ctb: * tables/mr.ctb: * tables/mun.ctb: * tables/mwr.ctb: * tables/ne.ctb: * tables/new.ctb: * tables/or.ctb: * tables/oriya.cti: * tables/pa.ctb: * tables/pi.ctb: * tables/sa.ctb: * tables/sat.ctb: * tables/sd.ctb: * tables/ta.ctb: * tables/tamil.cti: * tables/te.ctb: * tables/telugu.cti: Added quite a few indian tables. 2010-08-27 Christian Egli * NEWS: Added NEWS entry for release 2.1.1 2010-08-23 Christian Egli * tests/lastworditalafter.c (main): Handle two tests more elegantly. * tests/brl_checks.c (check_translation): Make the testing code robust against NULL values in the typeform parameter. * tests/Makefile.am (check_PROGRAMS): Add lastworditalafter to check_PROGRAMS. 2010-08-23 James Teh * NEWS: Small corrections. Also, include issue numbers with their associated changes. 2010-08-19 Christian Egli * tests/Makefile.am (XFAIL_TESTS): Move lastworditalafter to XFAIL_TESTS as they currently fail * NEWS: Added News items for release 1.9.0, 2.0.0 and 2.1.0 2010-08-06 James Teh * liblouis/lou_translateString.c: Fix the output cursorPos when the compbrlAtCursor mode is enabled and the characters around the cursor translate to multiple braille cells, such as in the Chinese braille tables. 2010-08-05 James Teh * python/louis/__init__.py.in: Allow the user to configure the maximum output length by specifying a number by which the input length is multiplied using the outlenMultiplier module variable. The default will handle the case where every input character is undefined in the translation table. Previously, this was hard-coded to 2, which was insufficient in some cases. Rename tran_tables argument to tableList in all functions to be consistent with liblouis itself. 2010-08-04 James Teh * python/louis/__init__.py.in: Corrections/clarifications to docstrings. Add compbrlLeftCursor mode constant. Add compileString function which wraps lou_compileString. 2010-08-03 James Teh * liblouis/lou_translateString.c: Fix the input/output position arrays for characters in the input which are undefined in the translation table. 2010-07-21 James Teh * python/setup.py: Remove unnecessary imports, allowing this to run in Python 2.7. (issue 12) 2010-04-15 Christian Egli * tests/brl_checks.h: * tests/brl_checks.c (check_translation): Add a function for checking a translation against an expected result. * tests/lastworditalafter.c (main): Add a test for handling of italics using an English and a German table * tests/Makefile.am (lastworditalafter_SOURCES): Added the lastworditalafter test to the check programs 2010-02-12 Michael Whapples * python/louis/__init__.py.in: Added python function louis.backTranslate to wrap lou_backTranslate. Has same calling as louis.translate but again with the slightly different meanings as described in liblouis documentation for lou_backTranslate. Also made some minor error corrections in docstrings. 2010-02-12 Michael Whapples * python/louis/__init__.py.in: Added louis.backTranslateString to wrap lou_backTranslateString in python. Calling is similar to that for louis.translateString. You should be aware of the possible different use of typeform in lou_translateString and lou_backTranslateString. 2010-02-11 Michael Whapples * python/louis/__init__.py.in: Added support for python to recieve typeform data back from louis.translate and louis.translateString. For both of these the data will be placed in the typeform list handed in to the function. If you don't want this to happen then don't use a list (eg. use a tuple). 2010-02-11 Michael Whapples * python/louis/__init__.py.in: Added louis.hyphenate to allow access from python to the lou_hyphenate function. Its definition is def hyphenate(tran_tables, inbuf, mode=0) Where tran_tables is a list like for the translate functions, inbuf is the text or Braille to hyphenate and mode says if inbuf is to be treated as text or Braille. It returns the hyphenation data in a string. 2010-02-04 James Teh * python/louis/__init__.py.in: lou_translate* writes output information in typeform, so allocate enough bytes for it. Fixes possible buffer overruns and resultant crashes. 2010-01-07 Christian Egli * liblouis/compileTranslationTable.c (compileError): Change the format of table checking error messages to a format similar to the one used in gcc. 2009-11-30 Carlos Ferreira * tables/Pt-Pt-g1.utb: * tables/pt-pt-g2.ctb: Added tables for Portuguese grade 1 and 2. 2009-11-30 Mike Sivill * tables/da-dk-g2.ctb: Added tables for Danish grade 2. 2009-11-23 John J. Boyer * Release 1.8.0: See NEWS for new features 2009-11-20 Christian Waldvogel * tables/de-ch-accents.cti: * tables/de-ch-g0.utb: * tables/de-ch-g1.ctb: * tables/de-ch-g2.ctb: * tables/de-chardefs6.cti: * tables/de-chardefs8.cti: * tables/de-de-accents.cti: * tables/de-de-g0.utb: * tables/de-de-g1.ctb: * tables/de-de-g2.ctb: * tables/de-eurobrl6.dis: * tables/de-eurobrl6u.dis: * tables/de-g0-core.utb: * tables/de-g1-core.ctb: * tables/de-g2-core.ctb: * tests/check_all_tables: Added German grade 2 and Swiss German grade 0, 1 and 2. 2009-11-18 Christian Egli * doc/liblouis.texi (lou_checkhyphens): Document the --help and --version options that all the tools support now. Also document the lou_checkhyphens tool. 2009-11-12 Christian Egli * liblouis/liblouis.h.in (widechar): * liblouis/liblouis.h (widechar): * configure.ac: No longer include config.h in liblouis.h. Instead define the type of widechar in configure and generate liblouis.h based on the options given to configure and liblouis.h.in. 2009-11-05 Christian Egli * COPYING: * COPYING.LIB: * README: Explain that the library is licensed under LGPL and the tools under GPL. * HACKING: Mention the use of gnulib and explain how to update it. 2009-11-02 Christian Egli * tables/Makefile.am (table_files): * tables/sv-1996.ctb: * tables/sv-1989.ctb: Added two more tables for Swedish that were ported from brltty by Samuel Thibault. 2009-10-16 Christian Egli * tests/table_test_corpuses/README: * tests/table_test_corpuses/Makefile.am: * tests/table_test_corpuses/test_de-de-g0.utb: * tests/table_test_corpuses/test_en-us-g2.ctb: * tests/check_tables_against_corpus.pl: * tests/Makefile.am: Added a framework for corpus based table tests. 2009-10-13 Christian Egli * man/Makefile.am: When generating the man pages at distribution time you need to make sure that all the libraries and all the tools are built. This makes the Makefile complex for no good reason (since John doesn't have help2man anyway). So the man pages are not distributed now. If a user wants man pages they have to install help2man. 2009-10-09 Christian Egli * Makefile.am: * configure.ac: * tools/lou_allround.c: * tools/lou_checkhyphens.c: * tools/lou_checktable.c: * tools/lou_debug.c: * tools/lou_translate.c: Integrate gnulib (modules getopt, progname and version-etc) and use it to add --help and --version options to all the tools. Due to an (apparent) restriction in progname I also changed the config header to (standard) "config.h" instead of "louiscfg.h". * man/Makefile.am (man_MANS): Automatically generate man pages for all the tools if help2man is installed. 2009-10-08 Christian Egli * tools/lou_allround.c: * tools/lou_checkhyphens.c: * tools/lou_checktable.c: * tools/lou_debug.c: * tools/lou_translate.c: Change the license of the tools to GPL. 2009-09-18 Christian Egli * tests/Makefile.am: Define the test scripts with check_SCRIPTS and make sure they are distributed. 2009-08-24 Christian Egli * tests/Makefile.am: Re-enable the present_progressive test but mark it as "expected failure" so that the test suite still passes. * tests/present_progressive.c: Add a description as to what this test is trying to check. Thanks Jamie for the explanation. 2009-08-21 Christian Egli * tests/Makefile.am: Comment out the present_progressive test completely so autogen.sh no longer complains. 2009-08-19 Mike Sivill * tables/da.ctb: * tables/da-dk-g1.utb: Bug fixes for the Danish tables 2009-08-19 Christian Egli * tests/Makefile.am (check_PROGRAMS): disable the present_progressive test. * tables/Makefile.list, tables/Makefile.skel: removed as functionality is now provided by maketablelist.sh * tables/maketablelist.sh: renamed from tables/maketablelist 2009-08-12 Christian Egli * tests/check_all_tables (TABLES): No longer check include tables that are not valid on their own. 2009-08-11 John J. Boyer * Updated edit tables for UK maths and Marburg to give more readable output. 2009-08-03 John J. Boyer * Added new tables for Marburg maths. 2009-07-29 John J. Boyer * Added replaceGrouping function 2009-07-28 Christian Egli * tables/Makefile.am: Remove some spurious files from the list of tables. 2009-07-28 John J. Boyer * Alpha release of UK Maths tables 2009-07-17 Lars Bjørndal * contrib/liblouis.spec: Added rpm spec file. 2009-07-13 John J. Boyer * Merged compileTranslationTable.c and lou_translateString.c with code for non-nemeth math back into trunk 2009-07-06 Christian Egli * tables/Makefile.am (table_files): Bring the list of tables up to date. 2009-07-03 Christian Egli * tests/Makefile.am (TESTS_ENVIRONMENT): Set the environment so that the tests also pass when building in a separate directory and in particular for the `distcheck' rule. * tests/brl_checks.c (TRANTAB): Since the Makefile sets the LOUIS_TABLEPATH we no longer need to specify the path to the table. * tests/check_all_tables: Use LOUIS_TABLEPATH to find the tables. * tables/sk-sk.utb: Fix errors that were reported by lou_checktable. 2009-07-03 James Teh * configure.ac: Include the version suffix in the dll name for Windows again (don't add -avoid-version). * python/Makefile.am: * python/louis/__init__.py.in: Use the precise name of the library that the bindings were built with. This ensures the correct ABI and allows the bindings to work on systems which do not use the .so extension. 2009-07-02 Christian Egli * doc/liblouis.texi (How to Write Translation Tables): Fix the prefix for characters operand. It is \y for 5 digits and \z for 8 digits. 2009-07-02 Samuel Thibault * tables/spaces.ctb: * tables/ru.ctb: * tables/gd.ctb: * tables/en-chess.ctb: * tables/fr-2007.ctb: * tables/boxes.ctb: * tables/de-chess.ctb: Fixed problems with 5-digit character operands in tables. 2009-07-01 Christian Egli * tests/check_all_tables: Added a test that invokes lou_checktable on all tables. * tests/Makefile.am (TESTS): Add the check_all_tables test to the list of tests. 2009-06-12 John J. Boyer * Added lou_checkhyphens tool for checking hyphenation tables and the performance of the lou_hyphenate function. Did bugfixes in lou_hyphenate. More to come. 2009-05-19 John J. Boyer * Added noback and nofor opcode prefixes * Documentation in liblouis.texi, etc. 2009-04-22 John J. Boyer * Added repword opcode with documentation 2009-03-24 John J. Boyer * Added ability to specify first four user-defined classes in multipass opcodes. * Updated documentation with table of multipass attributes 2009-03-19 John J. Boyer * Fixed bug with French back-translation. 2009-03-12 John J. Boyer * doc/Makefile.am: datarootdir may not be correct. 2009-03-09 Christian Egli * doc/Makefile.am (doc_DATA): Use the default location for docdir. Thanks to Lars Bjørndal for the report. 2009-03-04 John J. Boyer * New Norwegian tables * Release 1.6.0 2009-02-26 John J. Boyer * Removed egregiously bad German Grade 2 taale. 2009-02-23 (2) John J. Boyer * doc/louis.texi: Correcting and updating documentation 2009-02-20 (2) John J. Boyer * Moved mac-osx-10.5 directory to liblouisxml 2009-02-20 John J. Boyer * Added the directory mac-osx-10.5 and its files for building liblouis and liblouisxml on the Mac. 2009-02-19 Christian Egli * tables/hyph_nl_NL.dic: * tables/cy-cy-g1.utb: The svn:eol-style says these files are LF, however they contain CRs. So when doing a svn cat you'll get an error saying "svn: Inconsistent line ending style". I fixed this with dos2unix. 2009-02-18 John J. Boyer * Changing e-mail, website and company name to abilitiessoft. 2009-02-17 John J. Boyer * Added Russian Tables and correct Danish tables from ViewPlus 2009-02-16 John J. Boyer * Documented exactdots opcode. 2009-02-15 John J. Boyer * compileTranslationTable.c: Fined automatic path finding. Moved getProgramPath there from paths.c in liblouisxml, and made it exportable as lou_getProgramPath * liblouis.h: added lou_getProgramPath for Windows only. 2009-02-14 James Teh * liblouis/compileTranslationTable.c: * liblouis/liblouis.h: * liblouis/lou_backTranslateString.c: * liblouis/lou_translateString.c: Use stdcall calling convention if building for Windows. * configure.ac: If building for Windows, pass --add-stdcall-alias to the linker so that non-decorated function aliases are generated for the stdcall exported functions. * python/louis/__init__.py: Update to work with stdcall under Windows. 2009-02-14 Eitan Isaacson * liblouis/compileTranslationTable.c (getFullTablePath): Added a new table search path function. * liblouis/Makefile.am: Define a macro with the installed tables directory TABLESDIR. 2009-02-09 John J. Boyer * Latest French tables. 2009-02-09 Christian Egli * doc/liblouis.texi (Programming with liblouis): Move the programming section to the back and rename to emphasize more on the user instead of the programmer. * doc/liblouis-guide.texi: rename it to liblouis.texi. 2009-02-03 John J. Boyer * Implement exactdots opcode 2009-01-22 Christian Egli * doc/liblouis-guide.texi (The Context and Multipass Opcodes): Document the problem with correct and multipass opcodes and input and output positions. 2009-01-21 James Teh * tables/UEBC-g1.ctb: Some fixes to the UEBC grade 1 table. 2009-01-20 James Teh * python/louis/__init__.py: Add pass1Only mode. 2009-01-20 (2) John J. Boyer * Implemented pass1Only mode bit * Can now set pass1Only in lou_allround 2009-01-20 John J. Boyer * Change version in configure.ac to 1.5.2 2009-01-20 James Teh * liblouis/lou_translateString.c: Fix the bug whereby the next character in the input was skipped if doing compbrlAtCursor and the first character of the word was a capital letter. * liblouis/compileTranslationTable.c: lou_version() now returns PACKAGE_VERSION as defined in louiscfg.h. * configure.ac: Include -avoid-version in LDFLAGS if the host is mingw or cygwin so that the version suffix is not included in the dll filename. 2009-01-19 Christian Egli * doc/liblouis-guide.texi (Top): Added some minimal docu for the Python bindings. 2009-01-19 Eitan Isaacson * Makefile.am: * configure.ac: * python/Makefile.am: * python/louis/Makefile.am: Added Python bindings to autotooled distribution. * python/README: Unset executable flag. 2009-01-19 James Teh * liblouis/lou_translateString.c: Fix issues when compbrlAtCursor is set, input is being removed due to a "repeated" opcode and cursorPos lies within the repeated input. 2009-01-18 James Teh * liblouis/lou_translateString.c: When contracting or expanding in the output, map all positions of the input to the first position of the output and all positions of the output to the first position of the input. Mapping to subsequent positions of a contraction doesn't make sense, as the contraction only makes sense as a whole. 2009-01-15 Eitan Isaacson * python/setup.py: * python/louis/__init__.py: Added Python bindings. 2009-01-15 John J. Boyer * Version 1.5.1: bugfix * liblouis/lou_translateString.c: fixed multi-word phrases * tools/lou_debug.c : fixed bug in character display * liblouis/compileTranslationTable.c : fixed bug in findOpcodeName 2009-01-14 James Teh * liblouis/lou_translateString.c: Fix the inpos array values for the case where a rule has an output length which is larger than its input length. For example, using UEBC, given the input "#", the output will be "_?". The array mapping from output to input (inpos) previously specified [0, 1], which is incorrect; there is no character at index 1 in the input. The correct result is now returned; i.e. [0, 0]. 2009-01-12 John J. Boyer * Fixed problem with French Braille * Completed lou_debug tool * Added hooks in compileTranslationTable.c for lou_debug * Updated louis.h with hook prototypes and documentation * Changed version number to 1.5.0 2009-01-08 Christian Egli * doc/Makefile.am (AM_MAKEINFOHTMLFLAGS): Generate the html as one big page. 2008-12-20 Eitan Isaacson * ChangeLog: * configure.ac: * doc/Makefile.am: * doc/liblouis-guide.texi: * doc/version.texi: * liblouis/lou_translateString.c: * liblouis/louiscfg.h.in: * tables/Cz-Cz-g1.utb: * tables/Fr-Ca-g2.ctb: * tables/Fr-Fr-g2.ctb: * tables/Lv-Lv-g1.utb: * tables/Makefile.am: * tables/Nl-Nl-g1.utb: * tables/No-No-g0.utb: * tables/No-No-g1.ctb: * tables/No-No-g2.ctb: * tables/No-No-g3.ctb: * tables/Pl-Pl-g1.utb: * tables/Pt-Pt-g1.utb: * tables/Se-Se-g1.utb: * tables/UEBC-g1.utb: * tables/UEBC-g2.ctb: * tables/ar-ar-g1.utb: * tables/bg.ctb: * tables/boxes.ctb: * tables/cy-cy-g1.utb: * tables/cy-cy-g2.ctb: * tables/da-1252.ctb: * tables/da-lt.ctb: * tables/da.ctb: * tables/de-chess.ctb: * tables/de-de-g0.utb: * tables/de-de-g1.ctb: * tables/de-de-g2.ctb: * tables/de-de.dis: * tables/en-GB-g2.ctb: * tables/en-chess.ctb: * tables/en-gb-g1.utb: * tables/en-us-brf.dis: * tables/en-us-comp6.ctb: * tables/en-us-comp8.ctb: * tables/en-us-g1.utb: * tables/en-us-g2.ctb: * tables/en-us-interline.ctb: * tables/en_CA.ctb: * tables/eo.ctb: * tables/et.ctb: * tables/eurodefs.cti: * tables/fi-fi-8dot.ctb: * tables/fi-fi.ctb: * tables/fi1.ctb: * tables/fi2.ctb: * tables/fr-2007.ctb: * tables/fr-bfu-comp6.utb: * tables/fr-bfu-comp8.utb: * tables/fr-ca-g1.utb: * tables/fr-fr-g1.utb: * tables/gd.ctb: * tables/gr-bb.ctb: * tables/gr-gr-g1.utb: * tables/hi-in-g1.utb: * tables/hr.ctb: * tables/hy.ctb: * tables/hyph_de_DE.dic: * tables/hyph_it_IT.dic: * tables/hyph_nl_NL.dic: * tables/hyph_no_NO.dic: * tables/is.ctb: * tables/it-it-g1.utb: * tables/it-it-g1.utb2: * tables/lt.ctb: * tables/nemeth_edit.ctb: * tables/nl-be-g1.utb: * tables/no-gen.dis: * tables/no-no.dis: * tables/ro.ctb: * tables/ru.ctb: * tables/se-se.dis: * tables/sk-sk-g1.utb: * tables/sk-sk.utb: * tables/spaces.ctb: * tables/text_nabcc.dis: * tables/tr.ctb: * tables/ukchardefs.cti: * tables/uni-text.dis: * tables/vi.ctb: * tables/zh-tw.ctb: * tools/Makefile.am: * tools/lou_checktable.c: * tools/lou_debug.c: * configure.in: * doc/liblouis-guide.html: * doc/liblouis-guide.txt: Merge with 1.4.0, and John's autotools. 2008-11-12 Christian Egli * doc/liblouis-guide.texi: Added the guide in texinfo * doc/Makefile.am (.texi.txt): Integrate the texinfo guide in the build system. 2008-06-16 John J. Boyer * Release liblouis-1.3.8 * Competed conversion to Gnu autotools that Eitan Isaacson started. 2008-05-29 John J. Boyer * Release liblouis-1.3.71 * Bugs with compbrlAtCursor and returned inlen have been fixed. * lou_allround has a new heature to test returned lengths. * Bugs with nocont opcode fixed. 2008-05-12 John J. Boyer * Release liblouis-1.3.7 * The moretables directory has been renamed to tables. * Documentation has been moved to the docs directory. * Only the programs allround, checktable and translate are now supported. * The names of these programs have been changed to lou_allround, lou_checktable and lou_translate * A few bugs have been fixed. 2008-03-31 John J. Boyer * Release 1.3.6 * The moretables directory now contains the latest versions of both the translation and hyphenation tables. * The COPYING file has been changed to reflct the change from GPL to LGPL. 2008-01-29 Eitan Isaacson * configure.in: Bumped to new version. * tools/Makefile.am: Changed tool names * tools/allround.c: * tools/basicround.c: * tools/checktable.c: * tools/dotsround.c: * tools/roundtrip.c: * tools/testback.c: * tools/translate.c: * tools/lou_allround.c: * tools/lou_basicround.c: * tools/lou_checktable.c: * tools/lou_dotsround.c: * tools/lou_roundtrip.c: * tools/lou_testback.c: * tools/lou_translate.c: Prefixed all binaries with lou_. 2008-01-23 Eitan Isaacson * configure.in: * doc/liblouis-guide.html: * doc/liblouis-guide.txt: * liblouis/lou_backTranslateString.c: * liblouis/lou_translateString.c: * tables/chardefs.cti: * tables/en-us-g2.ctb: * tools/allround.c: John's 1.3.51 release. * liblouis/lou_translateString.c: * tools/Makefile.am: * tools/allround.c: Jonh's 1.3.42 release. 2008-01-17 Eitan Isaacson * configure.in: Tagged version 1.3.5. * configure.in: Removed unsupported/Makefile.am * tables/Makefile.am: Removed unsupported subdir. * tables/unsupported: Removed. * liblouis.pc.in: Added a variable called 'tablesdir'. * tables/Cz-Cz-g1.utb: * tables/Es-Es-g1.utb: * tables/Fr-Ca-g2.ctb: * tables/Fr-Fr-g2.ctb: * tables/Lv-Lv-g1.utb: * tables/Makefile.am: * tables/Nl-Nl-g1.utb: * tables/No-No-g0.utb: * tables/No-No-g1.ctb: * tables/No-No-g2.ctb: * tables/No-No-g3.ctb: * tables/Pl-Pl-g1.utb: * tables/Pt-Pt-g1.utb: * tables/README: * tables/Se-Se-g1.utb: * tables/UEBC-g1.utb: * tables/UEBC-g2.ctb: * tables/ar-ar-g1.utb: * tables/cy-cy-g1.utb: * tables/cy-cy-g2.ctb: * tables/de-de-g0.utb: * tables/de-de-g1.ctb: * tables/de-de-g2.ctb: * tables/de-de.dis: * tables/en-GB-g2.ctb: * tables/en-gb-g1.utb: * tables/en-us-g1.utb: * tables/errors: * tables/eurodefs.cti: * tables/fr-ca-g1.utb: * tables/fr-fr-g1.utb: * tables/gr-gr-g1.utb: * tables/hi-in-g1.utb: * tables/hyph_de_DE.dic: * tables/hyph_en_US.dic: * tables/hyph_es_ES.dic: * tables/hyph_fr_FR.dic: * tables/hyph_it_IT.dic: * tables/hyph_nl_NL.dic: * tables/hyph_no_NO.dic: * tables/hyph_pl_PL.dic: * tables/hyph_pt_PT.dic: * tables/hyph_sv_SE.dic: * tables/it-it-g1.utb: * tables/nl-be-g1.utb: * tables/no-no.dis: * tables/se-se.dis: * tables/text_nabcc.dis: * tables/ukchardefs.cti: * tables/uni-text.dis: * tables/unsupported: * tables/unsupported/Cz-Cz-g1.utb: * tables/unsupported/Es-Es-g1.utb: * tables/unsupported/Fr-Ca-g2.ctb: * tables/unsupported/Fr-Fr-g2.ctb: * tables/unsupported/Lv-Lv-g1.utb: * tables/unsupported/Makefile.am: * tables/unsupported/Nl-Nl-g1.utb: * tables/unsupported/No-No-g0.utb: * tables/unsupported/No-No-g1.ctb: * tables/unsupported/No-No-g2.ctb: * tables/unsupported/No-No-g3.ctb: * tables/unsupported/Pl-Pl-g1.utb: * tables/unsupported/Pt-Pt-g1.utb: * tables/unsupported/README: * tables/unsupported/Se-Se-g1.utb: * tables/unsupported/UEBC-g1.utb: * tables/unsupported/UEBC-g2.ctb: * tables/unsupported/ar-ar-g1.utb: * tables/unsupported/chardefs.cti: * tables/unsupported/countries.cti: * tables/unsupported/cy-cy-g1.utb: * tables/unsupported/cy-cy-g2.ctb: * tables/unsupported/de-de-g0.utb: * tables/unsupported/de-de-g1.ctb: * tables/unsupported/de-de-g2.ctb: * tables/unsupported/de-de.dis: * tables/unsupported/en-GB-g2.ctb: * tables/unsupported/en-gb-g1.utb: * tables/unsupported/en-us-g1.utb: * tables/unsupported/en-us-g2.ctb: * tables/unsupported/errors: * tables/unsupported/eurodefs.cti: * tables/unsupported/fr-ca-g1.utb: * tables/unsupported/fr-fr-g1.utb: * tables/unsupported/gr-gr-g1.utb: * tables/unsupported/hi-in-g1.utb: * tables/unsupported/hyph_de_DE.dic: * tables/unsupported/hyph_en_US.dic: * tables/unsupported/hyph_es_ES.dic: * tables/unsupported/hyph_fr_FR.dic: * tables/unsupported/hyph_it_IT.dic: * tables/unsupported/hyph_nl_NL.dic: * tables/unsupported/hyph_no_NO.dic: * tables/unsupported/hyph_pl_PL.dic: * tables/unsupported/hyph_pt_PT.dic: * tables/unsupported/hyph_sv_SE.dic: * tables/unsupported/it-it-g1.utb: * tables/unsupported/nl-be-g1.utb: * tables/unsupported/no-no.dis: * tables/unsupported/se-se.dis: * tables/unsupported/text_nabcc.dis: * tables/unsupported/ukchardefs.cti: * tables/unsupported/uni-text.dis: Flattened tables directory, all tables not live in basedir/tables. 2008-01-16 Eitan Isaacson * README: * doc/liblouis-guide.html: * doc/liblouis-guide.txt: * liblouis/compileTranslationTable.c: * liblouis/lou_backTranslateString.c: * liblouis/lou_translateString.c: * tables/chardefs.cti: John's changes. * configure.in: Bumped to version 1.3.41. * liblouis/liblouis.h: Added an include to louiscfg.h for character width. * configure.in: Added --enable-ucs4 for 4 byte wide characters. * liblouis/Makefile.am: Added louiscfg.h for installation. 2008-01-03 Eitan Isaacson * configure.in: First autotooled version. liblouis-2.5.3/aclocal.m40000664000175000017500000012763612161044151012140 00000000000000# generated automatically by aclocal 1.11.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, # Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.6], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.6])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, # 2010, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, # 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- # Adds support for distributing Python modules and packages. To # install modules, copy them to $(pythondir), using the python_PYTHON # automake variable. To install a package with the same name as the # automake package, install to $(pkgpythondir), or use the # pkgpython_PYTHON automake variable. # # The variables $(pyexecdir) and $(pkgpyexecdir) are provided as # locations to install python extension modules (shared libraries). # Another macro is required to find the appropriate flags to compile # extension modules. # # If your package is configured with a different prefix to python, # users will have to add the install directory to the PYTHONPATH # environment variable, or create a .pth file (see the python # documentation for details). # # If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will # cause an error if the version of python installed on the system # doesn't meet the requirement. MINIMUM-VERSION should consist of # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python python2 python3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. if test -z "$PYTHON"; then AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) fi am_display_PYTHON=python ], [ dnl A version check is needed. if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. AC_MSG_CHECKING([whether $PYTHON version >= $1]) AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], [AC_MSG_RESULT(yes)], [AC_MSG_ERROR(too old)]) am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. AC_CACHE_CHECK([for a Python interpreter with version >= $1], [am_cv_pathless_PYTHON],[ for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do test "$am_cv_pathless_PYTHON" = none && break AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) done]) # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) fi am_display_PYTHON=$am_cv_pathless_PYTHON fi ]) if test "$PYTHON" = :; then dnl Run any user-specified action, or abort. m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) else dnl Query Python for its version number. Getting [:3] seems to be dnl the best way to do this; it's what "site.py" does in the standard dnl library. AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) dnl Use the values of $prefix and $exec_prefix for the corresponding dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made dnl distinct variables so they can be overridden if need be. However, dnl general consensus is that you shouldn't need this ability. AC_SUBST([PYTHON_PREFIX], ['${prefix}']) AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) dnl At times (like when building shared libraries) you may want dnl to know which OS platform Python thinks this is. AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) dnl Set up 4 directories: dnl pythondir -- where to install python scripts. This is the dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pythondir], [$am_cv_python_pythondir]) dnl pkgpythondir -- $PACKAGE directory under pythondir. Was dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is dnl more consistent with the rest of automake. AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) dnl Run any user-specified action. $2 fi ]) # AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # --------------------------------------------------------------------------- # Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. # Run ACTION-IF-FALSE otherwise. # This test uses sys.hexversion instead of the string equivalent (first # word of sys.version), in order to cope with versions such as 2.2c1. # This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([gnulib/m4/00gnulib.m4]) m4_include([gnulib/m4/extensions.m4]) m4_include([gnulib/m4/extern-inline.m4]) m4_include([gnulib/m4/getopt.m4]) m4_include([gnulib/m4/gnulib-common.m4]) m4_include([gnulib/m4/gnulib-comp.m4]) m4_include([gnulib/m4/include_next.m4]) m4_include([gnulib/m4/malloc.m4]) m4_include([gnulib/m4/nocrash.m4]) m4_include([gnulib/m4/off_t.m4]) m4_include([gnulib/m4/onceonly.m4]) m4_include([gnulib/m4/realloc.m4]) m4_include([gnulib/m4/ssize_t.m4]) m4_include([gnulib/m4/stdarg.m4]) m4_include([gnulib/m4/stddef_h.m4]) m4_include([gnulib/m4/stdlib_h.m4]) m4_include([gnulib/m4/sys_types_h.m4]) m4_include([gnulib/m4/unistd_h.m4]) m4_include([gnulib/m4/version-etc.m4]) m4_include([gnulib/m4/warn-on-use.m4]) m4_include([gnulib/m4/wchar_t.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) liblouis-2.5.3/Makefile.in0000664000175000017500000010545412161044154012342 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/liblouis.pc.in \ $(top_srcdir)/configure AUTHORS COPYING COPYING.LIB ChangeLog \ INSTALL NEWS TODO build-aux/config.guess build-aux/config.sub \ build-aux/depcomp build-aux/install-sh build-aux/ltmain.sh \ build-aux/mdate-sh build-aux/missing build-aux/texinfo.tex ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = liblouis.pc CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(pkgconfigdir)" DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = gnulib liblouis tools tables doc man tests python m4 windows ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = liblouis.pc EXTRA_DIST = liblouis.pc README.windows HACKING all: all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): liblouis.pc: $(top_builddir)/config.status $(srcdir)/liblouis.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod u+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgconfigDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \ dist-zip distcheck distclean distclean-generic \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-pkgconfigDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-pkgconfigDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/liblouis/0000775000175000017500000000000012161044234012165 500000000000000liblouis-2.5.3/liblouis/transcommon.ci0000664000175000017500000006570112161041522014770 00000000000000/* This file contains code common to the translator and back-translator. * It is included immediately after the headr files. */ /* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com All rights reserved This file is free software; you can redistribute it and/or modify it under the terms of the Lesser or Library GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file 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 Library GNU General Public License for more details. You should have received a copy of the Library GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Maintained by John J. Boyer john.boyer@abilitiessoft.com */ /*additional bits in typebuf*/ #define capsemph 0x8000 #define EMPHASIS 0x000f #define STARTWORD 0x4000 #define FIRSTWORD 0x2000 #define SYLLABLEMARKS 0x00c0 #define INTERNALMARKS 0xff00 static const TranslationTableHeader *table; static int src, srcmax; static int dest, destmax; static int mode; static int currentPass = 1; static const widechar *currentInput; static widechar *passbuf1 = NULL; static widechar *passbuf2 = NULL; static widechar *currentOutput; static int *prevSrcMapping = NULL; static int *srcMapping = NULL; static unsigned short *typebuf = NULL; static unsigned char *srcSpacing = NULL; static unsigned char *destSpacing = NULL; static int haveEmphasis = 0; static TranslationTableOpcode transOpcode; static TranslationTableOpcode prevTransOpcode; static const TranslationTableRule *transRule; static int transCharslen; static int checkAttr (const widechar c, const TranslationTableCharacterAttributes a, int nm); static int putCharacter (widechar c); static int makeCorrections (void); static int passDoTest (void); static int passDoAction (void); static int passVariables[NUMVAR]; static int passCharDots; static int passSrc; static widechar const *passInstructions; static int passIC; /*Instruction counter */ static int startMatch; static int endMatch; static int startReplace; static int endReplace; static int realInlen; static int srcIncremented; static int *outputPositions; static int *inputPositions; static int cursorPosition; static int cursorStatus; static const TranslationTableRule **appliedRules; static int maxAppliedRules; static int appliedRulesCount; static TranslationTableCharacter * findCharOrDots (widechar c, int m) { /*Look up character or dot pattern in the appropriate * table. */ static TranslationTableCharacter noChar = { 0, 0, 0, CTC_Space, 32, 32, 32 }; static TranslationTableCharacter noDots = { 0, 0, 0, CTC_Space, B16, B16, B16 }; TranslationTableCharacter *notFound; TranslationTableCharacter *character; TranslationTableOffset bucket; unsigned long int makeHash = (unsigned long int) c % HASHNUM; if (m == 0) { bucket = table->characters[makeHash]; notFound = &noChar; } else { bucket = table->dots[makeHash]; notFound = &noDots; } while (bucket) { character = (TranslationTableCharacter *) & table->ruleArea[bucket]; if (character->realchar == c) return character; bucket = character->next; } notFound->realchar = notFound->uppercase = notFound->lowercase = c; return notFound; } static int checkAttr (const widechar c, const TranslationTableCharacterAttributes a, int m) { static widechar prevc = 0; static TranslationTableCharacterAttributes preva = 0; if (c != prevc) { preva = (findCharOrDots (c, m))->attributes; prevc = c; } return ((preva & a) ? 1 : 0); } static int findAttribOrSwapRules (void) { int save_transCharslen = transCharslen; const TranslationTableRule *save_transRule = transRule; TranslationTableOpcode save_transOpcode = transOpcode; TranslationTableOffset ruleOffset; ruleOffset = table->attribOrSwapRules[currentPass]; transCharslen = 0; while (ruleOffset) { transRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; transOpcode = transRule->opcode; if (passDoTest ()) return 1; ruleOffset = transRule->charsnext; } transCharslen = save_transCharslen; transRule = save_transRule; transOpcode = save_transOpcode; return 0; } static int compareChars (const widechar * address1, const widechar * address2, int count, int m) { int k; if (!count) return 0; for (k = 0; k < count; k++) if ((findCharOrDots (address1[k], m))->lowercase != (findCharOrDots (address2[k], m))->lowercase) return 0; return 1; } static int makeCorrections (void) { int k; if (!table->corrections) return 1; src = 0; dest = 0; srcIncremented = 1; for (k = 0; k < NUMVAR; k++) passVariables[k] = 0; while (src < srcmax) { int length = srcmax - src; const TranslationTableCharacter *character = findCharOrDots (currentInput[src], 0); const TranslationTableCharacter *character2; int tryThis = 0; if (!findAttribOrSwapRules ()) while (tryThis < 3) { TranslationTableOffset ruleOffset = 0; unsigned long int makeHash = 0; switch (tryThis) { case 0: if (!(length >= 2)) break; makeHash = (unsigned long int) character->lowercase << 8; character2 = findCharOrDots (currentInput[src + 1], 0); makeHash += (unsigned long int) character2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = character->otherRules; break; case 2: /*No rule found */ transOpcode = CTO_Always; ruleOffset = 0; break; } while (ruleOffset) { transRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; transOpcode = transRule->opcode; transCharslen = transRule->charslen; if (tryThis == 1 || (transCharslen <= length && compareChars (&transRule-> charsdots[0], ¤tInput[src], transCharslen, 0))) { if (srcIncremented && transOpcode == CTO_Correct && passDoTest ()) { tryThis = 4; break; } } ruleOffset = transRule->charsnext; } tryThis++; } srcIncremented = 1; switch (transOpcode) { case CTO_Always: if (dest >= destmax) goto failure; srcMapping[dest] = prevSrcMapping[src]; currentOutput[dest++] = currentInput[src++]; break; case CTO_Correct: if (appliedRules != NULL && appliedRulesCount < maxAppliedRules) appliedRules[appliedRulesCount++] = transRule; if (!passDoAction ()) goto failure; if (endReplace == src) srcIncremented = 0; src = endReplace; break; default: break; } } { // We have to transform typebuf accordingly int pos; unsigned short *typebuf_temp; if ((typebuf_temp = malloc (dest * sizeof (unsigned short))) == NULL) outOfMemory (); for (pos = 0; pos < dest; pos++) typebuf_temp[pos] = typebuf[srcMapping[pos]]; memcpy (typebuf, typebuf_temp, dest * sizeof (unsigned short)); free (typebuf_temp); } failure: realInlen = src; return 1; } static int matchcurrentInput (void) { int k; int kk = passSrc; for (k = passIC + 2; k < passIC + 2 + passInstructions[passIC + 1]; k++) if (currentInput[kk] == ENDSEGMENT || passInstructions[k] != currentInput[kk++]) return 0; return 1; } static int swapTest (int swapIC, int *callSrc) { int curLen; int curTest; int curSrc = *callSrc; TranslationTableOffset swapRuleOffset; TranslationTableRule *swapRule; swapRuleOffset = (passInstructions[swapIC + 1] << 16) | passInstructions[swapIC + 2]; swapRule = (TranslationTableRule *) & table->ruleArea[swapRuleOffset]; for (curLen = 0; curLen < passInstructions[swapIC + 3]; curLen++) { if (swapRule->opcode == CTO_SwapDd) { for (curTest = 1; curTest < swapRule->charslen; curTest += 2) { if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; } } else { for (curTest = 0; curTest < swapRule->charslen; curTest++) { if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; } } if (curTest >= swapRule->charslen) return 0; curSrc++; } if (passInstructions[swapIC + 3] == passInstructions[swapIC + 4]) { *callSrc = curSrc; return 1; } while (curLen < passInstructions[swapIC + 4]) { if (swapRule->opcode == CTO_SwapDd) { for (curTest = 1; curTest < swapRule->charslen; curTest += 2) { if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; } } else { for (curTest = 0; curTest < swapRule->charslen; curTest++) { if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; } } if (curTest >= swapRule->charslen) { *callSrc = curSrc; return 1; } curSrc++; curLen++; } *callSrc = curSrc; return 1; } static int swapReplace (int start, int end) { TranslationTableOffset swapRuleOffset; TranslationTableRule *swapRule; widechar *replacements; int curRep; int curPos; int curTest; int curSrc; swapRuleOffset = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; swapRule = (TranslationTableRule *) & table->ruleArea[swapRuleOffset]; replacements = &swapRule->charsdots[swapRule->charslen]; for (curSrc = start; curSrc < end; curSrc++) { for (curTest = 0; curTest < swapRule->charslen; curTest++) if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; if (curTest == swapRule->charslen) continue; curPos = 0; for (curRep = 0; curRep < curTest; curRep++) if (swapRule->opcode == CTO_SwapCc) curPos++; else curPos += replacements[curPos]; if (swapRule->opcode == CTO_SwapCc) { if ((dest + 1) >= srcmax) return 0; srcMapping[dest] = prevSrcMapping[curSrc]; currentOutput[dest++] = replacements[curPos]; } else { int k; if ((dest + replacements[curPos] - 1) >= destmax) return 0; for (k = dest + replacements[curPos] - 1; k >= dest; --k) srcMapping[k] = prevSrcMapping[curSrc]; memcpy (¤tOutput[dest], &replacements[curPos + 1], (replacements[curPos]) * CHARSIZE); dest += replacements[curPos] - 1; } } return 1; } static TranslationTableRule *groupingRule; static widechar groupingOp; static int replaceGrouping (void) { widechar startCharDots = groupingRule->charsdots[2 * passCharDots]; widechar endCharDots = groupingRule->charsdots[2 * passCharDots + 1]; widechar *curin = (widechar *) currentInput; int curPos; int level = 0; TranslationTableOffset replaceOffset = passInstructions[passIC + 1] << 16 | (passInstructions[passIC + 2] & 0xff); TranslationTableRule *replaceRule = (TranslationTableRule *) & table->ruleArea[replaceOffset]; widechar replaceStart = replaceRule->charsdots[2 * passCharDots]; widechar replaceEnd = replaceRule->charsdots[2 * passCharDots + 1]; if (groupingOp == pass_groupstart) { curin[startReplace] = replaceStart; for (curPos = startReplace + 1; curPos < srcmax; curPos++) { if (currentInput[curPos] == startCharDots) level--; if (currentInput[curPos] == endCharDots) level++; if (level == 1) break; } if (curPos == srcmax) return 0; curin[curPos] = replaceEnd; } else { if (transOpcode == CTO_Context) { startCharDots = groupingRule->charsdots[2]; endCharDots = groupingRule->charsdots[3]; replaceStart = replaceRule->charsdots[2]; replaceEnd = replaceRule->charsdots[3]; } currentOutput[dest] = replaceEnd; for (curPos = dest - 1; curPos >= 0; curPos--) { if (currentOutput[curPos] == endCharDots) level--; if (currentOutput[curPos] == startCharDots) level++; if (level == 1) break; } if (curPos < 0) return 0; currentOutput[curPos] = replaceStart; dest++; } return 1; } static int removeGrouping (void) { widechar startCharDots = groupingRule->charsdots[2 * passCharDots]; widechar endCharDots = groupingRule->charsdots[2 * passCharDots + 1]; widechar *curin = (widechar *) currentInput; int curPos; int level = 0; if (groupingOp == pass_groupstart) { for (curPos = startReplace + 1; curPos < srcmax; curPos++) { if (currentInput[curPos] == startCharDots) level--; if (currentInput[curPos] == endCharDots) level++; if (level == 1) break; } if (curPos == srcmax) return 0; curPos++; for (; curPos < srcmax; curPos++) curin[curPos - 1] = curin[curPos]; srcmax--; } else { for (curPos = dest - 1; curPos >= 0; curPos--) { if (currentOutput[curPos] == endCharDots) level--; if (currentOutput[curPos] == startCharDots) level++; if (level == 1) break; } if (curPos < 0) return 0; curPos++; for (; curPos < dest; curPos++) currentOutput[curPos - 1] = currentOutput[curPos]; dest--; } return 1; } static int searchIC; static int searchSrc; static int doPassSearch (void) { int level = 0; int k, kk; int not = 0; TranslationTableOffset ruleOffset; TranslationTableRule *rule; TranslationTableCharacterAttributes attributes; int stepper = passSrc; while (stepper < srcmax) { searchIC = passIC + 1; searchSrc = stepper; while (searchIC < transRule->dotslen) { int itsTrue = 1; if (searchSrc > srcmax) return 0; switch (passInstructions[searchIC]) { case pass_lookback: searchSrc -= passInstructions[searchIC + 1]; if (searchSrc < 0) searchSrc = 0; searchIC += 2; break; case pass_not: not = 1; searchIC++; continue; case pass_string: case pass_dots: kk = searchSrc; for (k = searchIC + 2; k < searchIC + 2 + passInstructions[searchIC + 1]; k++) if (currentInput[kk] == ENDSEGMENT || passInstructions[k] != currentInput[kk++]) { itsTrue = 0; break; } searchSrc += passInstructions[searchIC + 1]; searchIC += passInstructions[searchIC + 1] + 2; break; case pass_startReplace: searchIC++; break; case pass_endReplace: searchIC++; break; case pass_attributes: attributes = (passInstructions[searchIC + 1] << 16) | passInstructions[searchIC + 2]; for (k = 0; k < passInstructions[searchIC + 3]; k++) { if (currentInput[searchSrc] == ENDSEGMENT) itsTrue = 0; else itsTrue = (((findCharOrDots (currentInput[searchSrc++], passCharDots)-> attributes & attributes)) ? 1 : 0); if (!itsTrue) break; } if (itsTrue) { for (k = passInstructions[searchIC + 3]; k < passInstructions[searchIC + 4]; k++) { if (currentInput[searchSrc] == ENDSEGMENT) { itsTrue = 0; break; } if (! (findCharOrDots (currentInput[searchSrc], passCharDots)-> attributes & attributes)) break; searchSrc++; } } searchIC += 5; break; case pass_groupstart: case pass_groupend: ruleOffset = (passInstructions[searchIC + 1] << 16) | passInstructions[searchIC + 2]; rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (passInstructions[searchIC] == pass_groupstart) itsTrue = (currentInput[searchSrc] == rule->charsdots[2 * passCharDots]) ? 1 : 0; else itsTrue = (currentInput[searchSrc] == rule->charsdots[2 * passCharDots + 1]) ? 1 : 0; if (groupingRule != NULL && groupingOp == pass_groupstart && rule == groupingRule) { if (currentInput[searchSrc] == rule->charsdots[2 * passCharDots]) level--; else if (currentInput[searchSrc] == rule->charsdots[2 * passCharDots + 1]) level++; } searchSrc++; searchIC += 3; break; case pass_swap: itsTrue = swapTest (searchIC, &searchSrc); searchIC += 5; break; case pass_eq: if (passVariables[passInstructions[searchIC + 1]] != passInstructions[searchIC + 2]) itsTrue = 0; searchIC += 3; break; case pass_lt: if (passVariables[passInstructions[searchIC + 1]] >= passInstructions[searchIC + 2]) itsTrue = 0; searchIC += 3; break; case pass_gt: if (passVariables[passInstructions[searchIC + 1]] <= passInstructions[searchIC + 2]) itsTrue = 0; searchIC += 3; break; case pass_lteq: if (passVariables[passInstructions[searchIC + 1]] > passInstructions[searchIC + 2]) itsTrue = 0; searchIC += 3; break; case pass_gteq: if (passVariables[passInstructions[searchIC + 1]] < passInstructions[searchIC + 2]) itsTrue = 0; searchIC += 3; break; case pass_endTest: if (itsTrue) { if ((groupingRule && level == 1) || !groupingRule) return 1; } searchIC = transRule->dotslen; break; default: break; } if ((!not && !itsTrue) || (not && itsTrue)) break; not = 0; } stepper++; } return 0; } static int passDoTest (void) { int k; int not = 0; TranslationTableOffset ruleOffset; TranslationTableRule *rule; TranslationTableCharacterAttributes attributes; groupingRule = NULL; passSrc = src; passInstructions = &transRule->charsdots[transCharslen]; passIC = 0; startMatch = endMatch = passSrc; startReplace = endReplace = -1; if (transOpcode == CTO_Context || transOpcode == CTO_Correct) passCharDots = 0; else passCharDots = 1; while (passIC < transRule->dotslen) { int itsTrue = 1; if (passSrc > srcmax) return 0; switch (passInstructions[passIC]) { case pass_first: if (passSrc != 0) itsTrue = 0; passIC++; break; case pass_last: if (passSrc != srcmax) itsTrue = 0; passIC++; break; case pass_lookback: passSrc -= passInstructions[passIC + 1]; if (passSrc < 0) passSrc = 0; passIC += 2; break; case pass_not: not = 1; passIC++; continue; case pass_string: case pass_dots: itsTrue = matchcurrentInput (); passSrc += passInstructions[passIC + 1]; passIC += passInstructions[passIC + 1] + 2; break; case pass_startReplace: startReplace = passSrc; passIC++; break; case pass_endReplace: endReplace = passSrc; passIC++; break; case pass_attributes: attributes = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; for (k = 0; k < passInstructions[passIC + 3]; k++) { if (currentInput[passSrc] == ENDSEGMENT) itsTrue = 0; else itsTrue = (((findCharOrDots (currentInput[passSrc++], passCharDots)-> attributes & attributes)) ? 1 : 0); if (!itsTrue) break; } if (itsTrue) { for (k = passInstructions[passIC + 3]; k < passInstructions[passIC + 4]; k++) { if (currentInput[passSrc] == ENDSEGMENT) { itsTrue = 0; break; } else if (! (findCharOrDots (currentInput[passSrc], passCharDots)-> attributes & attributes)) break; passSrc++; } } passIC += 5; break; case pass_groupstart: case pass_groupend: ruleOffset = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (passIC == 0 || (passIC > 0 && passInstructions[passIC - 1] == pass_startReplace)) { groupingRule = rule; groupingOp = passInstructions[passIC]; } if (passInstructions[passIC] == pass_groupstart) itsTrue = (currentInput[passSrc] == rule->charsdots[2 * passCharDots]) ? 1 : 0; else itsTrue = (currentInput[passSrc] == rule->charsdots[2 * passCharDots + 1]) ? 1 : 0; passSrc++; passIC += 3; break; case pass_swap: itsTrue = swapTest (passIC, &passSrc); passIC += 5; break; case pass_eq: if (passVariables[passInstructions[passIC + 1]] != passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_lt: if (passVariables[passInstructions[passIC + 1]] >= passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_gt: if (passVariables[passInstructions[passIC + 1]] <= passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_lteq: if (passVariables[passInstructions[passIC + 1]] > passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_gteq: if (passVariables[passInstructions[passIC + 1]] < passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_search: itsTrue = doPassSearch (); if ((!not && !itsTrue) || (not && itsTrue)) return 0; passIC = searchIC; passSrc = searchSrc; case pass_endTest: passIC++; endMatch = passSrc; if (startReplace == -1) { startReplace = startMatch; endReplace = endMatch; } return 1; break; default: return 0; } if ((!not && !itsTrue) || (not && itsTrue)) return 0; not = 0; } return 0; } static int passDoAction (void) { int k; TranslationTableOffset ruleOffset; TranslationTableRule *rule; if ((dest + startReplace - startMatch) > destmax) return 0; if (transOpcode != CTO_Context) memmove (&srcMapping[dest], &prevSrcMapping[startMatch], (startReplace - startMatch) * sizeof (int)); for (k = startMatch; k < startReplace; k++) if (transOpcode == CTO_Context) { if (!putCharacter (currentInput[k])) return 0; } else currentOutput[dest++] = currentInput[k]; while (passIC < transRule->dotslen) switch (passInstructions[passIC]) { case pass_string: case pass_dots: if ((dest + passInstructions[passIC + 1]) > destmax) return 0; for (k = 0; k < passInstructions[passIC + 1]; ++k) srcMapping[dest + k] = prevSrcMapping[startReplace]; memcpy (¤tOutput[dest], &passInstructions[passIC + 2], passInstructions[passIC + 1] * CHARSIZE); dest += passInstructions[passIC + 1]; passIC += passInstructions[passIC + 1] + 2; break; case pass_eq: passVariables[passInstructions[passIC + 1]] = passInstructions[passIC + 2]; passIC += 3; break; case pass_hyphen: passVariables[passInstructions[passIC + 1]]--; if (passVariables[passInstructions[passIC + 1]] < 0) passVariables[passInstructions[passIC + 1]] = 0; passIC += 2; break; case pass_plus: passVariables[passInstructions[passIC + 1]]++; passIC += 2; break; case pass_groupstart: ruleOffset = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; srcMapping[dest] = prevSrcMapping[startMatch]; currentOutput[dest++] = rule->charsdots[2 * passCharDots]; passIC += 3; break; case pass_groupend: ruleOffset = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; srcMapping[dest] = prevSrcMapping[startMatch]; currentOutput[dest++] = rule->charsdots[2 * passCharDots + 1]; passIC += 3; break; case pass_swap: if (!swapReplace (startReplace, endReplace)) return 0; passIC += 3; break; case pass_groupreplace: if (!groupingRule || !replaceGrouping ()) return 0; passIC += 3; break; case pass_omit: if (groupingRule) removeGrouping (); passIC++; break; case pass_copy: dest -= startReplace - startMatch; k = endReplace - startReplace; if ((dest + k) > destmax) return 0; memmove (&srcMapping[dest], &prevSrcMapping[startReplace], k * sizeof (int)); memcpy (¤tOutput[dest], ¤tInput[startReplace], k * CHARSIZE); dest += k; passIC++; endReplace = passSrc; break; default: return 0; } return 1; } static int checkDots (void) { int k; int kk = src; for (k = 0; k < transCharslen; k++) if (transRule->charsdots[k] != currentInput[kk++]) return 0; return 1; } static void passSelectRule (void) { int length = srcmax - src; const TranslationTableCharacter *dots; const TranslationTableCharacter *dots2; int tryThis; TranslationTableOffset ruleOffset = 0; unsigned long int makeHash = 0; if (findAttribOrSwapRules ()) return; dots = findCharOrDots (currentInput[src], 1); for (tryThis = 0; tryThis < 3; tryThis++) { switch (tryThis) { case 0: if (!(length >= 2)) break; /*Hash function optimized for forward translation */ makeHash = (unsigned long int) dots->lowercase << 8; dots2 = findCharOrDots (currentInput[src + 1], 1); makeHash += (unsigned long int) dots2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = dots->otherRules; break; case 2: /*No rule found */ transOpcode = CTO_Always; return; break; } while (ruleOffset) { transRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; transOpcode = transRule->opcode; transCharslen = transRule->charslen; if (tryThis == 1 || ((transCharslen <= length) && checkDots ())) switch (transOpcode) { /*check validity of this Translation */ case CTO_Pass2: if (currentPass != 2 || !srcIncremented) break; if (!passDoTest ()) break; return; case CTO_Pass3: if (currentPass != 3 || !srcIncremented) break; if (!passDoTest ()) break; return; case CTO_Pass4: if (currentPass != 4 || !srcIncremented) break; if (!passDoTest ()) break; return; default: break; } ruleOffset = transRule->charsnext; } } return; } static int translatePass (void) { int k; prevTransOpcode = CTO_None; src = dest = 0; srcIncremented = 1; for (k = 0; k < NUMVAR; k++) passVariables[k] = 0; while (src < srcmax) { /*the main multipass translation loop */ passSelectRule (); srcIncremented = 1; switch (transOpcode) { case CTO_Context: case CTO_Pass2: case CTO_Pass3: case CTO_Pass4: if (appliedRules != NULL && appliedRulesCount < maxAppliedRules) appliedRules[appliedRulesCount++] = transRule; if (!passDoAction ()) goto failure; if (endReplace == src) srcIncremented = 0; src = endReplace; break; case CTO_Always: if ((dest + 1) > destmax) goto failure; srcMapping[dest] = prevSrcMapping[src]; currentOutput[dest++] = currentInput[src++]; break; default: goto failure; } } srcMapping[dest] = prevSrcMapping[src]; failure:if (src < srcmax) { while (checkAttr (currentInput[src], CTC_Space, 1)) if (++src == srcmax) break; } return 1; } liblouis-2.5.3/liblouis/wrappers.c0000664000175000017500000000677712161041522014132 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . Maintained by John J. Boyer john.boyer@abilitiessoft.com */ #include #include #include #include "louis.h" static int ignoreCaseComp (const char *str1, const char *str2, int length) { /* Replaces strncasecmp, which some compilers don't support */ int k; for (k = 0; k < length; k++) if ((str1[k] | 32) != (str2[k] | 32)) break; if (k != length) return 1; return 0; } static int findAction (const char **actions, const char *action) { int actionLength = strlen (action); int k; for (k = 0; actions[k]; k += 2) if (actionLength == strlen (actions[k]) && ignoreCaseComp (actions[k], action, actionLength) == 0) break; if (actions[k] == NULL) return -1; return atoi (actions[k + 1]); } static char * findColon (char *transSpec) { int k; for (k = 0; transSpec[k]; k++) if (transSpec[k] == ':') { transSpec[k] = 0; return &transSpec[k + 1]; } return NULL; } static const char *translators[] = { "korean", "1", "japanese", "2", "german", "3", NULL }; int other_translate (const char *trantab, const widechar * inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode) { char transSpec[MAXSTRING]; char *afterColon; int action; strcpy (transSpec, trantab); afterColon = findColon (transSpec); action = findAction (translators, transSpec); switch (action) { case -1: lou_logPrint ("There is no translator called '%s'", transSpec); return 0; case 1: return 1; case 2: return 1; case 3: return 1; default: return 0; } return 0; } int other_backTranslate (const char *trantab, const widechar * inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode) { char transSpec[MAXSTRING]; char *afterColon; int action; strcpy (transSpec, trantab); afterColon = findColon (transSpec); action = findAction (translators, transSpec); switch (action) { case -1: lou_logPrint ("There is no translator called '%s'", transSpec); return 0; case 1: return 1; case 2: return 1; case 3: return 1; default: return 0; } return 0; } int other_charToDots (const char *trantab, const widechar * inbuf, widechar * outbuf, int length, int mode) { return 0; } int other_dotsToChar (const char *trantab, widechar * inbuf, widechar * outbuf, int length, int mode) { return 0; } liblouis-2.5.3/liblouis/compileTranslationTable.c0000664000175000017500000037536312161041522017106 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com All rights reserved This file is free software; you can redistribute it and/or modify it under the terms of the Lesser or Library GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file 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 Library GNU General Public License for more details. You should have received a copy of the Library GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Maintained by John J. Boyer john.boyer@jjb-software.com */ #include #include #include #include #include #include //#include #include "louis.h" #include "config.h" #define QUOTESUB 28 /*Stand-in for double quotes in strings */ /* Contributed by Michel Such static void * reallocWrapper (void *address, size_t size) { if (!(address = realloc (address, size)) && size) outOfMemory (); return address; } static char * strdupWrapper (const char *string) { char *address = strdup (string); if (!address) outOfMemory (); return address; } char *EXPORT_CALL lou_getProgramPath () { char *path = NULL; HMODULE handle; if ((handle = GetModuleHandle (NULL))) { size_t size = 0X80; char *buffer = NULL; while (1) { buffer = reallocWrapper (buffer, size <<= 1); { DWORD length = GetModuleFileName (handle, buffer, size); if (!length) { printf ("GetModuleFileName\n"); exit (3); 3; } if (length < size) { buffer[length] = 0; path = strdupWrapper (buffer); while (length > 0) if (path[--length] == '\\') break; strncpy (path, path, length + 1); path[length + 1] = '\0'; break; } } } free (buffer); } else { printf ("GetModuleHandle\n"); exit (3); } return path; } #define PATH_SEP ';' #define DIR_SEP '\\' #else #define PATH_SEP ':' #define DIR_SEP '/' #endif /* End of MS contribution */ void outOfMemory () { fprintf (stderr, "liblouis: Insufficient memory\n"); exit (3); } /* The folowing variables and functions make it possible to specify the * path on which all tables for liblouis and all files for liblouisutdml, * in their proper directories, will be found. */ static char dataPath[MAXSTRING]; static char *dataPathPtr; char *EXPORT_CALL lou_setDataPath (char *path) { dataPathPtr = NULL; if (path == NULL) return NULL; strcpy (dataPath, path); dataPathPtr = dataPath; return dataPathPtr; } char *EXPORT_CALL lou_getDataPath () { return dataPathPtr; } /* End of dataPath code.*/ static char tablePath[MAXSTRING]; static FILE *logFile = NULL; static char initialLogFileName[256]; void EXPORT_CALL lou_logFile (const char *fileName) { if (fileName == NULL || fileName[0] == 0) return; if (initialLogFileName[0] == 0) strcpy (initialLogFileName, fileName); logFile = fopen (fileName, "wb"); if (logFile == NULL && initialLogFileName[0] != 0) logFile = fopen (initialLogFileName, "wb"); if (logFile == NULL) { fprintf (stderr, "Cannot open log file %s\n", fileName); logFile = stderr; } } void EXPORT_CALL lou_logPrint (char *format, ...) { #ifndef __SYMBIAN32__ va_list argp; if (format == NULL) return; if (logFile == NULL && initialLogFileName[0] != 0) logFile = fopen (initialLogFileName, "wb"); if (logFile == NULL) logFile = stderr; va_start (argp, format); vfprintf (logFile, format, argp); fprintf (logFile, "\n"); va_end (argp); #endif } void EXPORT_CALL lou_logEnd () { if (logFile != NULL) fclose (logFile); logFile = NULL; } static int eqasc2uni (const unsigned char *a, const widechar * b, const int len) { int k; for (k = 0; k < len; k++) if ((widechar) a[k] != b[k]) return 0; return 1; } typedef struct { widechar length; widechar chars[MAXSTRING]; } CharsString; static int errorCount; static int warningCount; static TranslationTableHeader *table; static TranslationTableOffset tableSize; static TranslationTableOffset tableUsed; typedef struct { void *next; void *table; int tableListLength; char tableList[1]; } ChainEntry; static ChainEntry *tableChain = NULL; static const char *characterClassNames[] = { "space", "letter", "digit", "punctuation", "uppercase", "lowercase", "math", "sign", "litdigit", NULL }; struct CharacterClass { struct CharacterClass *next; TranslationTableCharacterAttributes attribute; widechar length; widechar name[1]; }; static struct CharacterClass *characterClasses; static TranslationTableCharacterAttributes characterClassAttribute; static const char *opcodeNames[CTO_None] = { "include", "locale", "undefined", "capsign", "begcaps", "lenbegcaps", "endcaps", "firstwordcaps", "lastwordbeforecaps", "lastwordaftercaps", "lencapsphrase", "letsign", "noletsignbefore", "noletsign", "noletsignafter", "numsign", "firstwordital", "italsign", "lastworditalbefore", "lastworditalafter", "begital", "firstletterital", "endital", "lastletterital", "singleletterital", "italword", "lenitalphrase", "firstwordbold", "boldsign", "lastwordboldbefore", "lastwordboldafter", "begbold", "firstletterbold", "endbold", "lastletterbold", "singleletterbold", "boldword", "lenboldphrase", "firstwordunder", "undersign", "lastwordunderbefore", "lastwordunderafter", "begunder", "firstletterunder", "endunder", "lastletterunder", "singleletterunder", "underword", "lenunderphrase", "begcomp", "compbegemph1", "compendemph1", "compbegemph2", "compendemph2", "compbegemph3", "compendemph3", "compcapsign", "compbegcaps", "compendcaps", "endcomp", "multind", "compdots", "comp6", "class", "after", "before", "noback", "nofor", "swapcc", "swapcd", "swapdd", "space", "digit", "punctuation", "math", "sign", "letter", "uppercase", "lowercase", "grouping", "uplow", "litdigit", "display", "replace", "context", "correct", "pass2", "pass3", "pass4", "repeated", "repword", "capsnocont", "always", "exactdots", "nocross", "syllable", "nocont", "compbrl", "literal", "largesign", "word", "partword", "joinnum", "joinword", "lowword", "contraction", "sufword", "prfword", "begword", "begmidword", "midword", "midendword", "endword", "prepunc", "postpunc", "begnum", "midnum", "endnum", "decpoint", "hyphen", "nobreak" }; static short opcodeLengths[CTO_None] = { 0 }; typedef enum { noEncoding, bigEndian, littleEndian, ascii8 } EncodingType; typedef struct { const char *fileName; FILE *in; int lineNumber; EncodingType encoding; int status; int linelen; int linepos; int checkencoding[2]; widechar line[MAXSTRING]; } FileInfo; static char scratchBuf[MAXSTRING]; char * showString (widechar const *chars, int length) { /*Translate a string of characters to the encoding used in character * operands */ int charPos; int bufPos = 0; scratchBuf[bufPos++] = '\''; for (charPos = 0; charPos < length; charPos++) { if (chars[charPos] >= 32 && chars[charPos] < 127) scratchBuf[bufPos++] = (char) chars[charPos]; else { char hexbuf[20]; int hexLength; char escapeLetter; int leadingZeros; int hexPos; hexLength = sprintf (hexbuf, "%x", chars[charPos]); switch (hexLength) { case 1: case 2: case 3: case 4: escapeLetter = 'x'; leadingZeros = 4 - hexLength; break; case 5: escapeLetter = 'y'; leadingZeros = 0; break; case 6: case 7: case 8: escapeLetter = 'z'; leadingZeros = 8 - hexLength; break; default: escapeLetter = '?'; leadingZeros = 0; break; } if ((bufPos + leadingZeros + hexLength + 4) >= sizeof (scratchBuf)) break; scratchBuf[bufPos++] = '\\'; scratchBuf[bufPos++] = escapeLetter; for (hexPos = 0; hexPos < leadingZeros; hexPos++) scratchBuf[bufPos++] = '0'; for (hexPos = 0; hexPos < hexLength; hexPos++) scratchBuf[bufPos++] = hexbuf[hexPos]; } } scratchBuf[bufPos++] = '\''; scratchBuf[bufPos] = 0; return scratchBuf; } char * showDots (widechar const *dots, int length) { /* Translate a sequence of dots to the encoding used in dots operands. */ int bufPos = 0; int dotsPos; for (dotsPos = 0; bufPos < sizeof (scratchBuf) && dotsPos < length; dotsPos++) { if ((dots[dotsPos] & B1)) scratchBuf[bufPos++] = '1'; if ((dots[dotsPos] & B2)) scratchBuf[bufPos++] = '2'; if ((dots[dotsPos] & B3)) scratchBuf[bufPos++] = '3'; if ((dots[dotsPos] & B4)) scratchBuf[bufPos++] = '4'; if ((dots[dotsPos] & B5)) scratchBuf[bufPos++] = '5'; if ((dots[dotsPos] & B6)) scratchBuf[bufPos++] = '6'; if ((dots[dotsPos] & B7)) scratchBuf[bufPos++] = '7'; if ((dots[dotsPos] & B8)) scratchBuf[bufPos++] = '8'; if ((dots[dotsPos] & B9)) scratchBuf[bufPos++] = '9'; if ((dots[dotsPos] & B10)) scratchBuf[bufPos++] = 'A'; if ((dots[dotsPos] & B11)) scratchBuf[bufPos++] = 'B'; if ((dots[dotsPos] & B12)) scratchBuf[bufPos++] = 'C'; if ((dots[dotsPos] & B13)) scratchBuf[bufPos++] = 'D'; if ((dots[dotsPos] & B14)) scratchBuf[bufPos++] = 'E'; if ((dots[dotsPos] & B15)) scratchBuf[bufPos++] = 'F'; if ((dots[dotsPos] == B16)) scratchBuf[bufPos++] = '0'; if (dotsPos != length - 1) scratchBuf[bufPos++] = '-'; } scratchBuf[bufPos] = 0; return &scratchBuf[0]; } char * showAttributes (TranslationTableCharacterAttributes a) { /* Show attributes using the letters used after the $ in multipass * opcodes. */ int bufPos = 0; if ((a & CTC_Space)) scratchBuf[bufPos++] = 's'; if ((a & CTC_Letter)) scratchBuf[bufPos++] = 'l'; if ((a & CTC_Digit)) scratchBuf[bufPos++] = 'd'; if ((a & CTC_Punctuation)) scratchBuf[bufPos++] = 'p'; if ((a & CTC_UpperCase)) scratchBuf[bufPos++] = 'U'; if ((a & CTC_LowerCase)) scratchBuf[bufPos++] = 'u'; if ((a & CTC_Math)) scratchBuf[bufPos++] = 'm'; if ((a & CTC_Sign)) scratchBuf[bufPos++] = 'S'; if ((a & CTC_LitDigit)) scratchBuf[bufPos++] = 'D'; if ((a & CTC_Class1)) scratchBuf[bufPos++] = 'w'; if ((a & CTC_Class2)) scratchBuf[bufPos++] = 'x'; if ((a & CTC_Class3)) scratchBuf[bufPos++] = 'y'; if ((a & CTC_Class4)) scratchBuf[bufPos++] = 'z'; scratchBuf[bufPos] = 0; return scratchBuf; } static void compileError (FileInfo * nested, char *format, ...); static int getAChar (FileInfo * nested) { /*Read a big endian, little *ndian or ASCII 8 file and convert it to * 16- or 32-bit unsigned integers */ int ch1 = 0, ch2 = 0; widechar character; if (nested->encoding == ascii8) if (nested->status == 2) { nested->status++; return nested->checkencoding[1]; } while ((ch1 = fgetc (nested->in)) != EOF) { if (nested->status < 2) nested->checkencoding[nested->status] = ch1; nested->status++; if (nested->status == 2) { if (nested->checkencoding[0] == 0xfe && nested->checkencoding[1] == 0xff) nested->encoding = bigEndian; else if (nested->checkencoding[0] == 0xff && nested->checkencoding[1] == 0xfe) nested->encoding = littleEndian; else if (nested->checkencoding[0] < 128 && nested->checkencoding[1] < 128) { nested->encoding = ascii8; return nested->checkencoding[0]; } else { compileError (nested, "encoding is neither big-endian, little-endian nor ASCII 8."); ch1 = EOF; break;; } continue; } switch (nested->encoding) { case noEncoding: break; case ascii8: return ch1; break; case bigEndian: ch2 = fgetc (nested->in); if (ch2 == EOF) break; character = (ch1 << 8) | ch2; return (int) character; break; case littleEndian: ch2 = fgetc (nested->in); if (ch2 == EOF) break; character = (ch2 << 8) | ch1; return (int) character; break; } if (ch1 == EOF || ch2 == EOF) break; } return EOF; } static int getALine (FileInfo * nested) { /*Read a line of widechar's from an input file */ int ch; int pch = 0; nested->linelen = 0; while ((ch = getAChar (nested)) != EOF) { if (ch == 13) continue; if (pch == '\\' && ch == 10) { nested->linelen--; continue; } if (ch == 10 || nested->linelen >= MAXSTRING) break; nested->line[nested->linelen++] = (widechar) ch; pch = ch; } nested->line[nested->linelen] = 0; nested->linepos = 0; if (ch == EOF) return 0; nested->lineNumber++; return 1; } static int lastToken; static int getToken (FileInfo * nested, CharsString * result, const char *description) { /*Find the next string of contiguous non-whitespace characters. If this * is the last token on the line, return 2 instead of 1. */ while (nested->line[nested->linepos] && nested->line[nested->linepos] <= 32) nested->linepos++; result->length = 0; while (nested->line[nested->linepos] && nested->line[nested->linepos] > 32) { int maxlen = MAXSTRING; if (result->length >= maxlen) { compileError (nested, "more than %d characters (bytes)", maxlen); return 0; } else result->chars[result->length++] = nested->line[nested->linepos++]; } if (!result->length) { /* Not enough tokens */ if (description) compileError (nested, "%s not specified.", description); return 0; } result->chars[result->length] = 0; while (nested->line[nested->linepos] && nested->line[nested->linepos] <= 32) nested->linepos++; if (nested->line[nested->linepos] == 0) { lastToken = 1; return 2; } else { lastToken = 0; return 1; } } static void compileError (FileInfo * nested, char *format, ...) { #ifndef __SYMBIAN32__ char buffer[MAXSTRING]; va_list arguments; va_start (arguments, format); #ifdef _WIN32 _vsnprintf (buffer, sizeof (buffer), format, arguments); #else vsnprintf (buffer, sizeof (buffer), format, arguments); #endif va_end (arguments); if (nested) lou_logPrint ("%s:%d: error: %s", nested->fileName, nested->lineNumber, buffer); else lou_logPrint ("error: %s", buffer); errorCount++; #endif } static void compileWarning (FileInfo * nested, char *format, ...) { #ifndef __SYMBIAN32__ char buffer[MAXSTRING]; va_list arguments; va_start (arguments, format); #ifdef _WIN32 _vsnprintf (buffer, sizeof (buffer), format, arguments); #else vsnprintf (buffer, sizeof (buffer), format, arguments); #endif va_end (arguments); if (nested) lou_logPrint ("%s:%d: warning: %s", nested->fileName, nested->lineNumber, buffer); else lou_logPrint ("warning: %s", buffer); warningCount++; #endif } static int allocateSpaceInTable (FileInfo * nested, TranslationTableOffset * offset, int count) { /* allocate memory for translation table and expand previously allocated * memory if necessary */ int spaceNeeded = ((count + OFFSETSIZE - 1) / OFFSETSIZE) * OFFSETSIZE; TranslationTableOffset size = tableUsed + spaceNeeded; if (size > tableSize) { void *newTable; size += (size / OFFSETSIZE); newTable = realloc (table, size); if (!newTable) { compileError (nested, "Not enough memory for translation table."); outOfMemory (); } memset (((unsigned char *) newTable) + tableSize, 0, size - tableSize); /* update references to the old table */ { ChainEntry *entry; for (entry = tableChain; entry != NULL; entry = entry->next) if (entry->table == table) entry->table = (TranslationTableHeader *) newTable; } table = (TranslationTableHeader *) newTable; tableSize = size; } if (offset != NULL) { *offset = (tableUsed - sizeof (*table)) / OFFSETSIZE; tableUsed += spaceNeeded; } return 1; } static int reserveSpaceInTable (FileInfo * nested, int count) { return (allocateSpaceInTable (nested, NULL, count)); } static int allocateHeader (FileInfo * nested) { /*Allocate memory for the table header and a guess on the number of * rules */ const TranslationTableOffset startSize = 2 * sizeof (*table); if (table) return 1; tableUsed = sizeof (*table) + OFFSETSIZE; /*So no offset is ever zero */ if (!(table = malloc (startSize))) { compileError (nested, "Not enough memory"); if (table != NULL) free (table); table = NULL; outOfMemory (); } memset (table, 0, startSize); tableSize = startSize; return 1; } int stringHash (const widechar * c) { /*hash function for strings */ unsigned long int makeHash = (((unsigned long int) c[0] << 8) + (unsigned long int) c[1]) % HASHNUM; return (int) makeHash; } int charHash (widechar c) { unsigned long int makeHash = (unsigned long int) c % HASHNUM; return (int) makeHash; } static TranslationTableCharacter * compile_findCharOrDots (widechar c, int m) { /*Look up a character or dot pattern. If m is 0 look up a character, * otherwise look up a dot pattern. Although the algorithms are almost * identical, different tables are needed for characters and dots because * of the possibility of conflicts.*/ TranslationTableCharacter *character; TranslationTableOffset bucket; unsigned long int makeHash = (unsigned long int) c % HASHNUM; if (m == 0) bucket = table->characters[makeHash]; else bucket = table->dots[makeHash]; while (bucket) { character = (TranslationTableCharacter *) & table->ruleArea[bucket]; if (character->realchar == c) return character; bucket = character->next; } return NULL; } static TranslationTableCharacter noChar = { 0, 0, 0, CTC_Space, 32, 32, 32 }; static TranslationTableCharacter noDots = { 0, 0, 0, CTC_Space, B16, B16, B16 }; static char *unknownDots (widechar dots); static TranslationTableCharacter * definedCharOrDots (FileInfo * nested, widechar c, int m) { TranslationTableCharacter *notFound; TranslationTableCharacter *charOrDots = compile_findCharOrDots (c, m); if (charOrDots) return charOrDots; if (m == 0) { notFound = &noChar; compileError (nested, "character %s should be defined at this point but is not", showString (&c, 1)); } else { notFound = &noDots; compileError (nested, "cell %s should be defined at this point but is not", unknownDots (c)); } return notFound; } static TranslationTableCharacter * addCharOrDots (FileInfo * nested, widechar c, int m) { /*See if a character or dot pattern is in the appropriate table. If not, * insert it. In either * case, return a pointer to it. */ TranslationTableOffset bucket; TranslationTableCharacter *character; TranslationTableCharacter *oldchar; TranslationTableOffset offset; unsigned long int makeHash; if ((character = compile_findCharOrDots (c, m))) return character; if (!allocateSpaceInTable (nested, &offset, sizeof (*character))) return NULL; character = (TranslationTableCharacter *) & table->ruleArea[offset]; memset (character, 0, sizeof (*character)); character->realchar = c; makeHash = (unsigned long int) c % HASHNUM; if (m == 0) bucket = table->characters[makeHash]; else bucket = table->dots[makeHash]; if (!bucket) { if (m == 0) table->characters[makeHash] = offset; else table->dots[makeHash] = offset; } else { oldchar = (TranslationTableCharacter *) & table->ruleArea[bucket]; while (oldchar->next) oldchar = (TranslationTableCharacter *) & table->ruleArea[oldchar->next]; oldchar->next = offset; } return character; } static CharOrDots * getCharOrDots (widechar c, int m) { CharOrDots *cdPtr; TranslationTableOffset bucket; unsigned long int makeHash = (unsigned long int) c % HASHNUM; if (m == 0) bucket = table->charToDots[makeHash]; else bucket = table->dotsToChar[makeHash]; while (bucket) { cdPtr = (CharOrDots *) & table->ruleArea[bucket]; if (cdPtr->lookFor == c) return cdPtr; bucket = cdPtr->next; } return NULL; } widechar getDotsForChar (widechar c) { CharOrDots *cdPtr = getCharOrDots (c, 0); if (cdPtr) return cdPtr->found; return B16; } widechar getCharFromDots (widechar d) { CharOrDots *cdPtr = getCharOrDots (d, 1); if (cdPtr) return cdPtr->found; return ' '; } static int putCharAndDots (FileInfo * nested, widechar c, widechar d) { TranslationTableOffset bucket; CharOrDots *cdPtr; CharOrDots *oldcdPtr = NULL; TranslationTableOffset offset; unsigned long int makeHash; if (!(cdPtr = getCharOrDots (c, 0))) { if (!allocateSpaceInTable (nested, &offset, sizeof (*cdPtr))) return 0; cdPtr = (CharOrDots *) & table->ruleArea[offset]; cdPtr->next = 0; cdPtr->lookFor = c; cdPtr->found = d; makeHash = (unsigned long int) c % HASHNUM; bucket = table->charToDots[makeHash]; if (!bucket) table->charToDots[makeHash] = offset; else { oldcdPtr = (CharOrDots *) & table->ruleArea[bucket]; while (oldcdPtr->next) oldcdPtr = (CharOrDots *) & table->ruleArea[oldcdPtr->next]; oldcdPtr->next = offset; } } if (!(cdPtr = getCharOrDots (d, 1))) { if (!allocateSpaceInTable (nested, &offset, sizeof (*cdPtr))) return 0; cdPtr = (CharOrDots *) & table->ruleArea[offset]; cdPtr->next = 0; cdPtr->lookFor = d; cdPtr->found = c; makeHash = (unsigned long int) d % HASHNUM; bucket = table->dotsToChar[makeHash]; if (!bucket) table->dotsToChar[makeHash] = offset; else { oldcdPtr = (CharOrDots *) & table->ruleArea[bucket]; while (oldcdPtr->next) oldcdPtr = (CharOrDots *) & table->ruleArea[oldcdPtr->next]; oldcdPtr->next = offset; } } return 1; } static char * unknownDots (widechar dots) { /*Print out dot numbers */ static char buffer[20]; int k = 1; buffer[0] = '\\'; if ((dots & B1)) buffer[k++] = '1'; if ((dots & B2)) buffer[k++] = '2'; if ((dots & B3)) buffer[k++] = '3'; if ((dots & B4)) buffer[k++] = '4'; if ((dots & B5)) buffer[k++] = '5'; if ((dots & B6)) buffer[k++] = '6'; if ((dots & B7)) buffer[k++] = '7'; if ((dots & B8)) buffer[k++] = '8'; if ((dots & B9)) buffer[k++] = '9'; if ((dots & B10)) buffer[k++] = 'A'; if ((dots & B11)) buffer[k++] = 'B'; if ((dots & B12)) buffer[k++] = 'C'; if ((dots & B13)) buffer[k++] = 'D'; if ((dots & B14)) buffer[k++] = 'E'; if ((dots & B15)) buffer[k++] = 'F'; buffer[k++] = '/'; buffer[k] = 0; return buffer; } static TranslationTableOffset newRuleOffset = 0; static TranslationTableRule *newRule = NULL; static int charactersDefined (FileInfo * nested) { /*Check that all characters are defined by character-definition * opcodes*/ int noErrors = 1; int k; if ((newRule->opcode >= CTO_Space && newRule->opcode <= CTO_LitDigit) || newRule->opcode == CTO_SwapDd || newRule->opcode == CTO_Replace || newRule->opcode == CTO_MultInd || newRule->opcode == CTO_Repeated || ((newRule->opcode >= CTO_Context && newRule->opcode <= CTO_Pass4) && newRule->opcode != CTO_Correct)) return 1; for (k = 0; k < newRule->charslen; k++) if (!compile_findCharOrDots (newRule->charsdots[k], 0)) { compileError (nested, "Character %s is not defined", showString (&newRule->charsdots[k], 1)); noErrors = 0; } if (!(newRule->opcode == CTO_Correct || newRule->opcode == CTO_NoBreak || newRule->opcode == CTO_SwapCc || newRule->opcode == CTO_SwapCd)) { for (k = newRule->charslen; k < newRule->charslen + newRule->dotslen; k++) if (!compile_findCharOrDots (newRule->charsdots[k], 1)) { compileError (nested, "Dot pattern %s is not defined.", unknownDots (newRule->charsdots[k])); noErrors = 0; } } return noErrors; } static int noback = 0; static int nofor = 0; /*The following functions are called by addRule to handle various * cases.*/ static void add_0_single (FileInfo * nested) { /*direction = 0, newRule->charslen = 1*/ TranslationTableRule *currentRule; TranslationTableOffset *currentOffsetPtr; TranslationTableCharacter *character; int m = 0; if (newRule->opcode == CTO_CompDots || newRule->opcode == CTO_Comp6) return; if (newRule->opcode >= CTO_Pass2 && newRule->opcode <= CTO_Pass4) m = 1; character = definedCharOrDots (nested, newRule->charsdots[0], m); if (m != 1 && character->attributes & CTC_Letter && (newRule->opcode == CTO_WholeWord || newRule->opcode == CTO_LargeSign)) { if (table->noLetsignCount < LETSIGNSIZE) table->noLetsign[table->noLetsignCount++] = newRule->charsdots[0]; } if (newRule->opcode >= CTO_Space && newRule->opcode < CTO_UpLow) character->definitionRule = newRuleOffset; currentOffsetPtr = &character->otherRules; while (*currentOffsetPtr) { currentRule = (TranslationTableRule *) & table->ruleArea[*currentOffsetPtr]; if (currentRule->charslen == 0) break; if (currentRule->opcode >= CTO_Space && currentRule->opcode < CTO_UpLow) if (!(newRule->opcode >= CTO_Space && newRule->opcode < CTO_UpLow)) break; currentOffsetPtr = ¤tRule->charsnext; } newRule->charsnext = *currentOffsetPtr; *currentOffsetPtr = newRuleOffset; } static void add_0_multiple () { /*direction = 0 newRule->charslen > 1*/ TranslationTableRule *currentRule = NULL; TranslationTableOffset *currentOffsetPtr = &table->forRules[stringHash (&newRule->charsdots[0])]; while (*currentOffsetPtr) { currentRule = (TranslationTableRule *) & table->ruleArea[*currentOffsetPtr]; if (newRule->charslen > currentRule->charslen) break; if (newRule->charslen == currentRule->charslen) if ((currentRule->opcode == CTO_Always) && (newRule->opcode != CTO_Always)) break; currentOffsetPtr = ¤tRule->charsnext; } newRule->charsnext = *currentOffsetPtr; *currentOffsetPtr = newRuleOffset; } static void add_1_single (FileInfo * nested) { /*direction = 1, newRule->dotslen = 1*/ TranslationTableRule *currentRule; TranslationTableOffset *currentOffsetPtr; TranslationTableCharacter *dots; if (newRule->opcode == CTO_NoBreak || newRule->opcode == CTO_SwapCc || (newRule->opcode >= CTO_Context && newRule->opcode <= CTO_Pass4) || newRule->opcode == CTO_Repeated || (newRule->opcode == CTO_Always && newRule->charslen == 1)) return; /*too ambiguous */ dots = definedCharOrDots (nested, newRule->charsdots[newRule->charslen], 1); if (newRule->opcode >= CTO_Space && newRule->opcode < CTO_UpLow) dots->definitionRule = newRuleOffset; currentOffsetPtr = &dots->otherRules; while (*currentOffsetPtr) { currentRule = (TranslationTableRule *) & table->ruleArea[*currentOffsetPtr]; if (newRule->charslen > currentRule->charslen || currentRule->dotslen == 0) break; if (currentRule->opcode >= CTO_Space && currentRule->opcode < CTO_UpLow) if (!(newRule->opcode >= CTO_Space && newRule->opcode < CTO_UpLow)) break; currentOffsetPtr = ¤tRule->dotsnext; } newRule->dotsnext = *currentOffsetPtr; *currentOffsetPtr = newRuleOffset; } static void add_1_multiple () { /*direction = 1, newRule->dotslen > 1*/ TranslationTableRule *currentRule = NULL; TranslationTableOffset *currentOffsetPtr = &table->backRules[stringHash (&newRule-> charsdots [newRule-> charslen])]; if (newRule->opcode == CTO_NoBreak || newRule->opcode == CTO_SwapCc || (newRule->opcode >= CTO_Context && newRule->opcode <= CTO_Pass4)) return; while (*currentOffsetPtr) { int currentLength; int newLength; currentRule = (TranslationTableRule *) & table->ruleArea[*currentOffsetPtr]; currentLength = currentRule->dotslen + currentRule->charslen; newLength = newRule->dotslen + newRule->charslen; if (newLength > currentLength) break; if (currentLength == newLength) if ((currentRule->opcode == CTO_Always) && (newRule->opcode != CTO_Always)) break; currentOffsetPtr = ¤tRule->dotsnext; } newRule->dotsnext = *currentOffsetPtr; *currentOffsetPtr = newRuleOffset; } static void makeRuleChain (TranslationTableOffset * offsetPtr) { TranslationTableRule *currentRule; while (*offsetPtr) { currentRule = (TranslationTableRule *) & table->ruleArea[*offsetPtr]; offsetPtr = ¤tRule->charsnext; } newRule->charsnext = *offsetPtr; *offsetPtr = newRuleOffset; } static int addPassRule (FileInfo * nested) { TranslationTableOffset *offsetPtr; switch (newRule->opcode) { case CTO_Correct: offsetPtr = &table->attribOrSwapRules[0]; break; case CTO_Context: offsetPtr = &table->attribOrSwapRules[1]; break; case CTO_Pass2: offsetPtr = &table->attribOrSwapRules[2]; break; case CTO_Pass3: offsetPtr = &table->attribOrSwapRules[3]; break; case CTO_Pass4: offsetPtr = &table->attribOrSwapRules[4]; break; default: return 0; } makeRuleChain (offsetPtr); return 1; } static int addRule (FileInfo * nested, TranslationTableOpcode opcode, CharsString * ruleChars, CharsString * ruleDots, TranslationTableCharacterAttributes after, TranslationTableCharacterAttributes before) { /*Add a rule to the table, using the hash function to find the start of * chains and chaining both the chars and dots strings */ int ruleSize = sizeof (TranslationTableRule) - (DEFAULTRULESIZE * CHARSIZE); int direction = 0; /*0 = forward translation; 1 = bacward */ if (ruleChars) ruleSize += CHARSIZE * ruleChars->length; if (ruleDots) ruleSize += CHARSIZE * ruleDots->length; if (!allocateSpaceInTable (nested, &newRuleOffset, ruleSize)) return 0; newRule = (TranslationTableRule *) & table->ruleArea[newRuleOffset]; newRule->opcode = opcode; newRule->after = after; newRule->before = before; if (ruleChars) memcpy (&newRule->charsdots[0], &ruleChars->chars[0], CHARSIZE * (newRule->charslen = ruleChars->length)); else newRule->charslen = 0; if (ruleDots) memcpy (&newRule->charsdots[newRule->charslen], &ruleDots->chars[0], CHARSIZE * (newRule->dotslen = ruleDots->length)); else newRule->dotslen = 0; if (!charactersDefined (nested)) return 0; /*link new rule into table. */ if (opcode == CTO_SwapCc || opcode == CTO_SwapCd || opcode == CTO_SwapDd) return 1; if (opcode >= CTO_Context && opcode <= CTO_Pass4 && newRule->charslen == 0) return addPassRule (nested); if (newRule->charslen == 0 || nofor) direction = 1; while (direction < 2) { if (direction == 0 && newRule->charslen == 1) add_0_single (nested); else if (direction == 0 && newRule->charslen > 1) add_0_multiple (); else if (direction == 1 && newRule->dotslen == 1 && !noback) add_1_single (nested); else if (direction == 1 && newRule->dotslen > 1 && !noback) add_1_multiple (); else { } direction++; if (newRule->dotslen == 0) direction = 2; } return 1; } static const struct CharacterClass * findCharacterClass (const CharsString * name) { /*Find a character class, whether predefined or user-defined */ const struct CharacterClass *class = characterClasses; while (class) { if ((name->length == class->length) && (memcmp (&name->chars[0], class->name, CHARSIZE * name->length) == 0)) return class; class = class->next; } return NULL; } static struct CharacterClass * addCharacterClass (FileInfo * nested, const widechar * name, int length) { /*Define a character class, Whether predefined or user-defined */ struct CharacterClass *class; if (characterClassAttribute) { if (!(class = malloc (sizeof (*class) + CHARSIZE * (length - 1)))) outOfMemory (); else { memset (class, 0, sizeof (*class)); memcpy (class->name, name, CHARSIZE * (class->length = length)); class->attribute = characterClassAttribute; characterClassAttribute <<= 1; class->next = characterClasses; characterClasses = class; return class; } } compileError (nested, "character class table overflow."); return NULL; } static void deallocateCharacterClasses () { while (characterClasses) { struct CharacterClass *class = characterClasses; characterClasses = characterClasses->next; if (class) free (class); } } static int allocateCharacterClasses () { /*Allocate memory for predifined character classes */ int k = 0; characterClasses = NULL; characterClassAttribute = 1; while (characterClassNames[k]) { widechar wname[MAXSTRING]; int length = strlen (characterClassNames[k]); int kk; for (kk = 0; kk < length; kk++) wname[kk] = (widechar) characterClassNames[k][kk]; if (!addCharacterClass (NULL, wname, length)) { deallocateCharacterClasses (); return 0; } k++; } return 1; } static TranslationTableOpcode getOpcode (FileInfo * nested, const CharsString * token) { static TranslationTableOpcode lastOpcode = 0; TranslationTableOpcode opcode = lastOpcode; do { if (token->length == opcodeLengths[opcode]) if (eqasc2uni ((unsigned char *) opcodeNames[opcode], &token->chars[0], token->length)) { lastOpcode = opcode; return opcode; } opcode++; if (opcode >= CTO_None) opcode = 0; } while (opcode != lastOpcode); compileError (nested, "opcode %s not defined.", showString (&token->chars[0], token->length)); return CTO_None; } TranslationTableOpcode findOpcodeNumber (const char *toFind) { /* Used by tools such as lou_debug */ static TranslationTableOpcode lastOpcode = 0; TranslationTableOpcode opcode = lastOpcode; int length = strlen (toFind); do { if (length == opcodeLengths[opcode] && strcasecmp (toFind, opcodeNames[opcode]) == 0) { lastOpcode = opcode; return opcode; } opcode++; if (opcode >= CTO_None) opcode = 0; } while (opcode != lastOpcode); return CTO_None; } const char * findOpcodeName (TranslationTableOpcode opcode) { /* Used by tools such as lou_debug */ if (opcode < 0 || opcode >= CTO_None) { sprintf (scratchBuf, "%d", opcode); return scratchBuf; } return opcodeNames[opcode]; } static widechar hexValue (FileInfo * nested, const widechar * digits, int length) { int k; unsigned int binaryValue = 0; for (k = 0; k < length; k++) { unsigned int hexDigit = 0; if (digits[k] >= '0' && digits[k] <= '9') hexDigit = digits[k] - '0'; else if (digits[k] >= 'a' && digits[k] <= 'f') hexDigit = digits[k] - 'a' + 10; else if (digits[k] >= 'A' && digits[k] <= 'F') hexDigit = digits[k] - 'A' + 10; else { compileError (nested, "invalid %d-digit hexadecimal number", length); return (widechar) 0xffffffff; } binaryValue |= hexDigit << (4 * (length - 1 - k)); } return (widechar) binaryValue; } #define MAXBYTES 7 static int first0Bit[MAXBYTES] = { 0x80, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC, 0XFE }; static int parseChars (FileInfo * nested, CharsString * result, CharsString * token) { int in = 0; int out = 0; int lastOutSize = 0; int lastIn; unsigned int ch = 0; int numBytes = 0; unsigned int utf32 = 0; int k; while (in < token->length) { ch = token->chars[in++] & 0xff; if (ch < 128) { if (ch == '\\') { /* escape sequence */ switch (ch = token->chars[in]) { case '\\': break; case 'e': ch = 0x1b; break; case 'f': ch = 12; break; case 'n': ch = 10; break; case 'r': ch = 13; break; case 's': ch = ' '; break; case 't': ch = 9; break; case 'v': ch = 22; break; case 'w': ch = ENDSEGMENT; break; case 34: ch = QUOTESUB; break; case 'X': case 'x': if (token->length - in > 4) { ch = hexValue (nested, &token->chars[in + 1], 4); in += 4; } break; case 'y': case 'Y': if (CHARSIZE == 2) { not32: compileError (nested, "liblouis has not been compiled for 32-bit Unicode"); break; } if (token->length - in > 5) { ch = hexValue (nested, &token->chars[in + 1], 5); in += 5; } break; case 'z': case 'Z': if (CHARSIZE == 2) goto not32; if (token->length - in > 8) { ch = hexValue (nested, &token->chars[in + 1], 8); in += 8; } break; default: compileError (nested, "invalid escape sequence '\\%c'", ch); break; } in++; } result->chars[out++] = (widechar) ch; if (out >= MAXSTRING) { result->length = out; return 1; } continue; } lastOutSize = out; lastIn = in; for (numBytes = MAXBYTES - 1; numBytes >= 0; numBytes--) if (ch >= first0Bit[numBytes]) break; utf32 = ch & (0XFF - first0Bit[numBytes]); for (k = 0; k < numBytes; k++) { if (in >= MAXSTRING) break; if (token->chars[in] < 128 || (token->chars[in] & 0x0040)) { compileWarning (nested, "invalid UTF-8. Assuming Latin-1."); result->chars[out++] = token->chars[lastIn]; in = lastIn + 1; continue; } utf32 = (utf32 << 6) + (token->chars[in++] & 0x3f); } if (CHARSIZE == 2 && utf32 > 0xffff) utf32 = 0xffff; result->chars[out++] = (widechar) utf32; if (out >= MAXSTRING) { result->length = lastOutSize; return 1; } } result->length = out; return 1; } int extParseChars (const char *inString, widechar * outString) { /* Parse external character strings */ CharsString wideIn; CharsString result; int k; for (k = 0; inString[k] && k < MAXSTRING; k++) wideIn.chars[k] = inString[k]; wideIn.chars[k] = 0; wideIn.length = k; parseChars (NULL, &result, &wideIn); if (errorCount) { errorCount = 0; return 0; } for (k = 0; k < result.length; k++) outString[k] = result.chars[k]; return result.length; } static int parseDots (FileInfo * nested, CharsString * cells, const CharsString * token) { /*get dot patterns */ widechar cell = 0; /*assembly place for dots */ int cellCount = 0; int index; int start = 0; for (index = 0; index < token->length; index++) { int started = index != start; widechar character = token->chars[index]; switch (character) { /*or dots to make up Braille cell */ { int dot; case '1': dot = B1; goto haveDot; case '2': dot = B2; goto haveDot; case '3': dot = B3; goto haveDot; case '4': dot = B4; goto haveDot; case '5': dot = B5; goto haveDot; case '6': dot = B6; goto haveDot; case '7': dot = B7; goto haveDot; case '8': dot = B8; goto haveDot; case '9': dot = B9; goto haveDot; case 'a': case 'A': dot = B10; goto haveDot; case 'b': case 'B': dot = B11; goto haveDot; case 'c': case 'C': dot = B12; goto haveDot; case 'd': case 'D': dot = B13; goto haveDot; case 'e': case 'E': dot = B14; goto haveDot; case 'f': case 'F': dot = B15; haveDot: if (started && !cell) goto invalid; if (cell & dot) { compileError (nested, "dot specified more than once."); return 0; } cell |= dot; break; } case '0': /*blank */ if (started) goto invalid; break; case '-': /*got all dots for this cell */ if (!started) { compileError (nested, "missing cell specification."); return 0; } cells->chars[cellCount++] = cell | B16; cell = 0; start = index + 1; break; default: invalid: compileError (nested, "invalid dot number %s.", showString (&character, 1)); return 0; } } if (index == start) { compileError (nested, "missing cell specification."); return 0; } cells->chars[cellCount++] = cell | B16; /*last cell */ cells->length = cellCount; return 1; } int extParseDots (const char *inString, widechar * outString) { /* Parse external dot patterns */ CharsString wideIn; CharsString result; int k; for (k = 0; inString[k] && k < MAXSTRING; k++) wideIn.chars[k] = inString[k]; wideIn.chars[k] = 0; wideIn.length = k; parseDots (NULL, &result, &wideIn); if (errorCount) { errorCount = 0; return 0; } for (k = 0; k < result.length; k++) outString[k] = result.chars[k]; outString[k] = 0; return result.length; } static int getCharacters (FileInfo * nested, CharsString * characters) { /*Get ruleChars string */ CharsString token; if (getToken (nested, &token, "characters")) if (parseChars (nested, characters, &token)) return 1; return 0; } static int getRuleCharsText (FileInfo * nested, CharsString * ruleChars) { CharsString token; if (getToken (nested, &token, "Characters operand")) if (parseChars (nested, ruleChars, &token)) return 1; return 0; } static int getRuleDotsText (FileInfo * nested, CharsString * ruleDots) { CharsString token; if (getToken (nested, &token, "characters")) if (parseChars (nested, ruleDots, &token)) return 1; return 0; } static int getRuleDotsPattern (FileInfo * nested, CharsString * ruleDots) { /*Interpret the dets operand */ CharsString token; if (getToken (nested, &token, "Dots operand")) { if (token.length == 1 && token.chars[0] == '=') { ruleDots->length = 0; return 1; } if (parseDots (nested, ruleDots, &token)) return 1; } return 0; } static int getCharacterClass (FileInfo * nested, const struct CharacterClass **class) { CharsString token; if (getToken (nested, &token, "character class name")) { if ((*class = findCharacterClass (&token))) return 1; compileError (nested, "character class not defined."); } return 0; } static int compileFile (const char *fileName); static int includeFile (FileInfo * nested, CharsString * includedFile) { /*Implement include opcode*/ int k; char includeThis[MAXSTRING]; for (k = 0; k < includedFile->length; k++) includeThis[k] = (char) includedFile->chars[k]; includeThis[k] = 0; return compileFile (includeThis); } struct RuleName { struct RuleName *next; TranslationTableOffset ruleOffset; widechar length; widechar name[1]; }; static struct RuleName *ruleNames = NULL; static TranslationTableOffset findRuleName (const CharsString * name) { const struct RuleName *nameRule = ruleNames; while (nameRule) { if ((name->length == nameRule->length) && (memcmp (&name->chars[0], nameRule->name, CHARSIZE * name->length) == 0)) return nameRule->ruleOffset; nameRule = nameRule->next; } return 0; } static int addRuleName (FileInfo * nested, CharsString * name) { int k; struct RuleName *nameRule; if (!(nameRule = malloc (sizeof (*nameRule) + CHARSIZE * (name->length - 1)))) { compileError (nested, "not enough memory"); outOfMemory (); } memset (nameRule, 0, sizeof (*nameRule)); for (k = 0; k < name->length; k++) { TranslationTableCharacter *ch = definedCharOrDots (nested, name->chars[k], 0); if (!(ch->attributes & CTC_Letter)) { compileError (nested, "a name may contain only letters"); return 0; } nameRule->name[k] = name->chars[k]; } nameRule->length = name->length; nameRule->ruleOffset = newRuleOffset; nameRule->next = ruleNames; ruleNames = nameRule; return 1; } static void deallocateRuleNames () { while (ruleNames) { struct RuleName *nameRule = ruleNames; ruleNames = ruleNames->next; if (nameRule) free (nameRule); } } static int compileSwapDots (FileInfo * nested, CharsString * source, CharsString * dest) { int k = 0; int kk = 0; CharsString dotsSource; CharsString dotsDest; dest->length = 0; dotsSource.length = 0; while (k <= source->length) { if (source->chars[k] != ',' && k != source->length) dotsSource.chars[dotsSource.length++] = source->chars[k]; else { if (!parseDots (nested, &dotsDest, &dotsSource)) return 0; dest->chars[dest->length++] = dotsDest.length + 1; for (kk = 0; kk < dotsDest.length; kk++) dest->chars[dest->length++] = dotsDest.chars[kk]; dotsSource.length = 0; } k++; } return 1; } static int compileSwap (FileInfo * nested, TranslationTableOpcode opcode) { CharsString ruleChars; CharsString ruleDots; CharsString name; CharsString matches; CharsString replacements; if (!getToken (nested, &name, "name operand")) return 0; if (!getToken (nested, &matches, "matches operand")) return 0; if (!getToken (nested, &replacements, "replacements operand")) return 0; if (opcode == CTO_SwapCc || opcode == CTO_SwapCd) { if (!parseChars (nested, &ruleChars, &matches)) return 0; } else { if (!compileSwapDots (nested, &matches, &ruleChars)) return 0; } if (opcode == CTO_SwapCc) { if (!parseChars (nested, &ruleDots, &replacements)) return 0; } else { if (!compileSwapDots (nested, &replacements, &ruleDots)) return 0; } if (!addRule (nested, opcode, &ruleChars, &ruleDots, 0, 0)) return 0; if (!addRuleName (nested, &name)) return 0; return 1; } static int getNumber (widechar * source, widechar * dest) { /*Convert a string of wide character digits to an integer*/ int k = 0; *dest = 0; while (source[k] >= '0' && source[k] <= '9') *dest = 10 * *dest + (source[k++] - '0'); return k; } /* Start of multipass compiler*/ static CharsString passRuleChars; static CharsString passRuleDots; static CharsString passHoldString; static CharsString passLine; static int passLinepos; static int passPrevLinepos; static widechar passHoldNumber; static widechar passEmphasis; static TranslationTableCharacterAttributes passAttributes; static FileInfo *passNested; static TranslationTableOpcode passOpcode; static widechar *passInstructions; static int passIC; static int passGetAttributes () { int more = 1; passAttributes = 0; while (more) { switch (passLine.chars[passLinepos]) { case pass_any: passAttributes = 0xffffffff; break; case pass_digit: passAttributes |= CTC_Digit; break; case pass_litDigit: passAttributes |= CTC_LitDigit; break; case pass_letter: passAttributes |= CTC_Letter; break; case pass_math: passAttributes |= CTC_Math; break; case pass_punctuation: passAttributes |= CTC_Punctuation; break; case pass_sign: passAttributes |= CTC_Sign; break; case pass_space: passAttributes |= CTC_Space; break; case pass_uppercase: passAttributes |= CTC_UpperCase; break; case pass_lowercase: passAttributes |= CTC_LowerCase; break; case pass_class1: passAttributes |= CTC_Class1; break; case pass_class2: passAttributes |= CTC_Class2; break; case pass_class3: passAttributes |= CTC_Class3; break; case pass_class4: passAttributes |= CTC_Class4; break; default: more = 0; break; } if (more) passLinepos++; } if (!passAttributes) { compileError (passNested, "Missing attribute"); passLinepos--; return 0; } return 1; } static int passGetEmphasis () { int more = 1; passLinepos++; passEmphasis = 0; while (more) { switch (passLine.chars[passLinepos]) { case 'i': passEmphasis |= italic; break; case 'b': passEmphasis |= bold; break; case 'u': passEmphasis |= underline; break; case 'c': passEmphasis |= computer_braille; break; default: more = 0; break; } if (more) passLinepos++; } if (!passEmphasis) { compileError (passNested, "emphasis indicators expected"); passLinepos--; return 0; } return 1; } static int passGetDots () { CharsString collectDots; collectDots.length = 0; while (passLinepos < passLine.length && (passLine.chars[passLinepos] == '-' || (passLine.chars[passLinepos] >= '0' && passLine. chars[passLinepos] <= '9') || ((passLine. chars[passLinepos] | 32) >= 'a' && (passLine. chars[passLinepos] | 32) <= 'f'))) collectDots.chars[collectDots.length++] = passLine.chars[passLinepos++]; if (!parseDots (passNested, &passHoldString, &collectDots)) return 0; return 1; } static int passGetString () { passHoldString.length = 0; while (1) { if (!passLine.chars[passLinepos]) { compileError (passNested, "unterminated string"); return 0; } if (passLine.chars[passLinepos] == 34) break; if (passLine.chars[passLinepos] == QUOTESUB) passHoldString.chars[passHoldString.length++] = 34; else passHoldString.chars[passHoldString.length++] = passLine.chars[passLinepos]; passLinepos++; } passHoldString.chars[passHoldString.length] = 0; passLinepos++; return 1; } static int passGetNumber () { /*Convert a string of wide character digits to an integer */ passHoldNumber = 0; while (passLine.chars[passLinepos] >= '0' && passLine.chars[passLinepos] <= '9') passHoldNumber = 10 * passHoldNumber + (passLine.chars[passLinepos++] - '0'); return 1; } static int passGetName () { TranslationTableCharacterAttributes attr; passHoldString.length = 0; do { attr = definedCharOrDots (passNested, passLine.chars[passLinepos], 0)->attributes; if (passHoldString.length == 0) { if (!(attr & CTC_Letter)) { passLinepos++; continue; } } if (!(attr & CTC_Letter)) break; passHoldString.chars[passHoldString.length++] = passLine.chars[passLinepos]; passLinepos++; } while (passLinepos < passLine.length); return 1; } static int passIsKeyword (const char *token) { int k; int length = strlen (token); int ch = passLine.chars[passLinepos + length + 1]; if (((ch | 32) >= 'a' && (ch | 32) <= 'z') || (ch >= '0' && ch <= '9')) return 0; for (k = 0; k < length && passLine.chars[passLinepos + k + 1] == (widechar) token[k]; k++); if (k == length) { passLinepos += length + 1; return 1; } return 0; } struct PassName { struct PassName *next; int varnum; widechar length; widechar name[1]; }; static struct PassName *passNames = NULL; static int passFindName (const CharsString * name) { const struct PassName *curname = passNames; CharsString augmentedName; for (augmentedName.length = 0; augmentedName.length < name->length; augmentedName.length++) augmentedName.chars[augmentedName.length] = name->chars[augmentedName.length]; augmentedName.chars[augmentedName.length++] = passOpcode; while (curname) { if ((augmentedName.length == curname->length) && (memcmp (&augmentedName.chars[0], curname->name, CHARSIZE * name->length) == 0)) return curname->varnum; curname = curname->next; } compileError (passNested, "name not found"); return 0; } static int passAddName (CharsString * name, int var) { int k; struct PassName *curname; CharsString augmentedName; for (augmentedName.length = 0; augmentedName.length < name->length; augmentedName.length++) augmentedName. chars[augmentedName.length] = name->chars[augmentedName.length]; augmentedName.chars[augmentedName.length++] = passOpcode; if (! (curname = malloc (sizeof (*curname) + CHARSIZE * (augmentedName.length - 1)))) { outOfMemory (); } memset (curname, 0, sizeof (*curname)); for (k = 0; k < augmentedName.length; k++) { curname->name[k] = augmentedName.chars[k]; } curname->length = augmentedName.length; curname->varnum = var; curname->next = passNames; passNames = curname; return 1; } static pass_Codes passGetScriptToken () { while (passLinepos < passLine.length) { passPrevLinepos = passLinepos; switch (passLine.chars[passLinepos]) { case '\"': passLinepos++; if (passGetString ()) return pass_string; return pass_invalidToken; case '@': passLinepos++; if (passGetDots ()) return pass_dots; return pass_invalidToken; case '#': /*comment */ passLinepos = passLine.length + 1; return pass_noMoreTokens; case '!': if (passLine.chars[passLinepos + 1] == '=') { passLinepos += 2; return pass_noteq; } passLinepos++; return pass_not; case '-': passLinepos++; return pass_hyphen; case '=': passLinepos++; return pass_eq; case '<': passLinepos++; if (passLine.chars[passLinepos] == '=') { passLinepos++; return pass_lteq; } return pass_lt; case '>': passLinepos++; if (passLine.chars[passLinepos] == '=') { passLinepos++; return pass_gteq; } return pass_gt; case '+': passLinepos++; return pass_plus; case '(': passLinepos++; return pass_leftParen; case ')': passLinepos++; return pass_rightParen; case ',': passLinepos++; return pass_comma; case '&': if (passLine.chars[passLinepos = 1] == '&') { passLinepos += 2; return pass_and; } return pass_invalidToken; case '|': if (passLine.chars[passLinepos + 1] == '|') { passLinepos += 2; return pass_or; } return pass_invalidToken; case 'a': if (passIsKeyword ("ttr")) return pass_attributes; passGetName (); return pass_nameFound; case 'b': if (passIsKeyword ("ack")) return pass_lookback; if (passIsKeyword ("ool")) return pass_boolean; passGetName (); return pass_nameFound; case 'c': if (passIsKeyword ("lass")) return pass_class; passGetName (); return pass_nameFound; case 'd': if (passIsKeyword ("ef")) return pass_define; passGetName (); return pass_nameFound; case 'e': if (passIsKeyword ("mph")) return pass_emphasis; passGetName (); return pass_nameFound; case 'f': if (passIsKeyword ("ind")) return pass_search; if (passIsKeyword ("irst")) return pass_first; passGetName (); return pass_nameFound; case 'g': if (passIsKeyword ("roup")) return pass_group; passGetName (); return pass_nameFound; case 'i': if (passIsKeyword ("f")) return pass_if; passGetName (); return pass_nameFound; case 'l': if (passIsKeyword ("ast")) return pass_last; passGetName (); return pass_nameFound; case 'm': if (passIsKeyword ("ark")) return pass_mark; passGetName (); return pass_nameFound; case 'r': if (passIsKeyword ("epgroup")) return pass_repGroup; if (passIsKeyword ("epcopy")) return pass_copy; if (passIsKeyword ("epomit")) return pass_omit; if (passIsKeyword ("ep")) return pass_replace; passGetName (); return pass_nameFound; case 's': if (passIsKeyword ("cript")) return pass_script; if (passIsKeyword ("wap")) return pass_swap; passGetName (); return pass_nameFound; case 't': if (passIsKeyword ("hen")) return pass_then; passGetName (); return pass_nameFound; default: if (passLine.chars[passLinepos] <= 32) { passLinepos++; break; } if (passLine.chars[passLinepos] >= '0' && passLine.chars[passLinepos] <= '9') { passGetNumber (); return pass_numberFound; } else { if (!passGetName ()) return pass_invalidToken; else return pass_nameFound; } } } return pass_noMoreTokens; } static int passIsLeftParen () { pass_Codes passCode = passGetScriptToken (); if (passCode != pass_leftParen) { compileError (passNested, "'(' expected"); return 0; } return 1; } static int passIsName () { pass_Codes passCode = passGetScriptToken (); if (passCode != pass_nameFound) { compileError (passNested, "a name expected"); return 0; } return 1; } static int passIsComma () { pass_Codes passCode = passGetScriptToken (); if (passCode != pass_comma) { compileError (passNested, "',' expected"); return 0; } return 1; } static int passIsNumber () { pass_Codes passCode = passGetScriptToken (); if (passCode != pass_numberFound) { compileError (passNested, "a number expected"); return 0; } return 1; } static int passIsRightParen () { pass_Codes passCode = passGetScriptToken (); if (passCode != pass_rightParen) { compileError (passNested, "')' expected"); return 0; } return 1; } static int passGetRange () { pass_Codes passCode = passGetScriptToken (); if (!(passCode == pass_comma || passCode == pass_rightParen)) { compileError (passNested, "invalid range"); return 0; } if (passCode == pass_rightParen) { passInstructions[passIC++] = 1; passInstructions[passIC++] = 1; return 1; } if (!passIsNumber ()) return 0; passInstructions[passIC++] = passHoldNumber; passCode = passGetScriptToken (); if (!(passCode == pass_comma || passCode == pass_rightParen)) { compileError (passNested, "invalid range"); return 0; } if (passCode == pass_rightParen) { passInstructions[passIC++] = passHoldNumber; return 1; } if (!passIsNumber ()) return 0; passInstructions[passIC++] = passHoldNumber; if (!passIsRightParen ()) return 0; return 1; } static int passInsertAttributes () { passInstructions[passIC++] = pass_attributes; passInstructions[passIC++] = passAttributes >> 16; passInstructions[passIC++] = passAttributes & 0xffff; if (!passGetRange ()) return 0; return 1; } static int compilePassOpcode (FileInfo * nested, TranslationTableOpcode opcode) { /*Compile the operands of a pass opcode */ TranslationTableCharacterAttributes after = 0; TranslationTableCharacterAttributes before = 0; widechar passSubOp; const struct CharacterClass *class; TranslationTableOffset ruleOffset = 0; TranslationTableRule *rule = NULL; int k; int kk = 0; pass_Codes passCode; int endTest = 0; int isScript = 1; passInstructions = passRuleDots.chars; passIC = 0; /*Instruction counter */ passRuleChars.length = 0; passNested = nested; passOpcode = opcode; /* passHoldString and passLine are static variables declared * previously.*/ passLinepos = 0; passHoldString.length = 0; for (k = nested->linepos; k < nested->linelen; k++) passHoldString.chars[passHoldString.length++] = nested->line[k]; if (!eqasc2uni ((unsigned char *) "script", passHoldString.chars, 6)) { isScript = 0; #define SEPCHAR 0x0001 for (k = 0; k < passHoldString.length && passHoldString.chars[k] > 32; k++); if (k < passHoldString.length) passHoldString.chars[k] = SEPCHAR; else { compileError (passNested, "Invalid multipass operands"); return 0; } } parseChars (passNested, &passLine, &passHoldString); if (isScript) { int more = 1; passCode = passGetScriptToken (); if (passCode != pass_script) { compileError (passNested, "Invalid multipass statement"); return 0; } /* Declaratives */ while (more) { passCode = passGetScriptToken (); switch (passCode) { case pass_define: if (!passIsLeftParen ()) return 0; if (!passIsName ()) return 0; if (!passIsComma ()) return 0; if (!passIsNumber ()) return 0; if (!passIsRightParen ()) return 0; passAddName (&passHoldString, passHoldNumber); break; case pass_if: more = 0; break; default: compileError (passNested, "invalid definition in declarative part"); return 0; } } /* if part */ more = 1; while (more) { passCode = passGetScriptToken (); passSubOp = passCode; switch (passCode) { case pass_not: passInstructions[passIC++] = pass_not; break; case pass_first: passInstructions[passIC++] = pass_first; break; case pass_last: passInstructions[passIC++] = pass_last; break; case pass_search: passInstructions[passIC++] = pass_search; break; case pass_string: if (opcode != CTO_Context && opcode != CTO_Correct) { compileError (passNested, "Character strings can only be used with the context and correct opcodes."); return 0; } passInstructions[passIC++] = pass_string; goto ifDoCharsDots; case pass_dots: if (passOpcode == CTO_Correct || passOpcode == CTO_Context) { compileError (passNested, "dot patterns cannot be specified in the if part\ of the correct or context opcodes"); return 0; } passInstructions[passIC++] = pass_dots; ifDoCharsDots: passInstructions[passIC++] = passHoldString.length; for (kk = 0; kk < passHoldString.length; kk++) passInstructions[passIC++] = passHoldString.chars[kk]; break; case pass_attributes: if (!passIsLeftParen ()) return 0; if (!passGetAttributes ()) return 0; if (!passInsertAttributes ()) return 0; break; case pass_emphasis: if (!passIsLeftParen ()) return 0; if (!passGetEmphasis ()) return 0; /*Right parenthis handled by subfunctiion */ break; case pass_lookback: passInstructions[passIC++] = pass_lookback; passCode = passGetScriptToken (); if (passCode != pass_leftParen) { passInstructions[passIC++] = 1; passLinepos = passPrevLinepos; break; } if (!passIsNumber ()) return 0; if (!passIsRightParen ()) return 0; passInstructions[passIC] = passHoldNumber; break; case pass_group: if (!passIsLeftParen ()) return 0; break; case pass_mark: passInstructions[passIC++] = pass_startReplace; passInstructions[passIC++] = pass_endReplace; break; case pass_replace: passInstructions[passIC++] = pass_startReplace; if (!passIsLeftParen ()) return 0; break; case pass_rightParen: passInstructions[passIC++] = pass_endReplace; break; case pass_groupstart: case pass_groupend: if (!passIsLeftParen ()) return 0; if (!passGetName ()) return 0; if (!passIsRightParen ()) return 0; ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && rule->opcode == CTO_Grouping) { passInstructions[passIC++] = passSubOp; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; break; } else { compileError (passNested, "%s is not a grouping name", showString (&passHoldString.chars[0], passHoldString.length)); return 0; } break; case pass_class: if (!passIsLeftParen ()) return 0; if (!passGetName ()) return 0; if (!passIsRightParen ()) return 0; if (!(class = findCharacterClass (&passHoldString))) return 0; passAttributes = class->attribute; passInsertAttributes (); break; case pass_swap: ruleOffset = findRuleName (&passHoldString); if (!passIsLeftParen ()) return 0; if (!passGetName ()) return 0; if (!passIsRightParen ()) return 0; ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && (rule->opcode == CTO_SwapCc || rule->opcode == CTO_SwapCd || rule->opcode == CTO_SwapDd)) { passInstructions[passIC++] = pass_swap; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; if (!passGetRange ()) return 0; break; } compileError (passNested, "%s is not a swap name.", showString (&passHoldString.chars[0], passHoldString.length)); return 0; case pass_nameFound: passHoldNumber = passFindName (&passHoldString); passCode = passGetScriptToken (); if (!(passCode == pass_eq || passCode == pass_lt || passCode == pass_gt || passCode == pass_noteq || passCode == pass_lteq || passCode == pass_gteq)) { compileError (nested, "invalid comparison operator in if part"); return 0; } passInstructions[passIC++] = passCode; passInstructions[passIC++] = passHoldNumber; if (!passIsNumber ()) return 0; passInstructions[passIC++] = passHoldNumber; break; case pass_then: passInstructions[passIC++] = pass_endTest; more = 0; break; default: compileError (passNested, "invalid choice in if part"); return 0; } } /* then part */ more = 1; while (more) { passCode = passGetScriptToken (); passSubOp = passCode; switch (passCode) { case pass_string: if (opcode != CTO_Correct) { compileError (passNested, "Character strings can only be used in the then part with the correct opcode."); return 0; } passInstructions[passIC++] = pass_string; goto thenDoCharsDots; case pass_dots: if (opcode == CTO_Correct) { compileError (passNested, "Dot patterns cannot be used with the correct opcode."); return 0; } passInstructions[passIC++] = pass_dots; thenDoCharsDots: passInstructions[passIC++] = passHoldString.length; for (kk = 0; kk < passHoldString.length; kk++) passInstructions[passIC++] = passHoldString.chars[kk]; break; case pass_nameFound: passHoldNumber = passFindName (&passHoldString); passCode = passGetScriptToken (); if (!(passCode == pass_plus || passCode == pass_hyphen || passCode == pass_eq)) { compileError (nested, "Invalid variable operator in then part"); return 0; } passInstructions[passIC++] = passCode; passInstructions[passIC++] = passHoldNumber; if (!passIsNumber ()) return 0; passInstructions[passIC++] = passHoldNumber; break; case pass_copy: passInstructions[passIC++] = pass_copy; break; case pass_omit: passInstructions[passIC++] = pass_omit; break; case pass_swap: ruleOffset = findRuleName (&passHoldString); if (!passIsLeftParen ()) return 0; if (!passGetName ()) return 0; if (!passIsRightParen ()) return 0; ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && (rule->opcode == CTO_SwapCc || rule->opcode == CTO_SwapCd || rule->opcode == CTO_SwapDd)) { passInstructions[passIC++] = pass_swap; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; if (!passGetRange ()) return 0; break; } compileError (passNested, "%s is not a swap name.", showString (&passHoldString.chars[0], passHoldString.length)); return 0; case pass_noMoreTokens: more = 0; break; default: compileError (passNested, "invalid action in then part"); return 0; } } } else { /* Older machine-language-like "assembler". */ /*Compile test part */ for (k = 0; k < passLine.length && passLine.chars[k] != SEPCHAR; k++); endTest = k; passLine.chars[endTest] = pass_endTest; passLinepos = 0; while (passLinepos <= endTest) { switch ((passSubOp = passLine.chars[passLinepos])) { case pass_lookback: passInstructions[passIC++] = pass_lookback; passLinepos++; passGetNumber (); if (passHoldNumber == 0) passHoldNumber = 1; passInstructions[passIC++] = passHoldNumber; break; case pass_not: passInstructions[passIC++] = pass_not; passLinepos++; break; case pass_first: passInstructions[passIC++] = pass_first; passLinepos++; break; case pass_last: passInstructions[passIC++] = pass_last; passLinepos++; break; case pass_search: passInstructions[passIC++] = pass_search; passLinepos++; break; case pass_string: if (opcode != CTO_Context && opcode != CTO_Correct) { compileError (passNested, "Character strings can only be used with the context and correct opcodes."); return 0; } passLinepos++; passInstructions[passIC++] = pass_string; passGetString (); goto testDoCharsDots; case pass_dots: passLinepos++; passInstructions[passIC++] = pass_dots; passGetDots (); testDoCharsDots: if (passHoldString.length == 0) return 0; passInstructions[passIC++] = passHoldString.length; for (kk = 0; kk < passHoldString.length; kk++) passInstructions[passIC++] = passHoldString.chars[kk]; break; case pass_startReplace: passInstructions[passIC++] = pass_startReplace; passLinepos++; break; case pass_endReplace: passInstructions[passIC++] = pass_endReplace; passLinepos++; break; case pass_variable: passLinepos++; passGetNumber (); switch (passLine.chars[passLinepos]) { case pass_eq: passInstructions[passIC++] = pass_eq; goto doComp; case pass_lt: if (passLine.chars[passLinepos + 1] == pass_eq) { passLinepos++; passInstructions[passIC++] = pass_lteq; } else passInstructions[passIC++] = pass_lt; goto doComp; case pass_gt: if (passLine.chars[passLinepos + 1] == pass_eq) { passLinepos++; passInstructions[passIC++] = pass_gteq; } else passInstructions[passIC++] = pass_gt; doComp: passInstructions[passIC++] = passHoldNumber; passLinepos++; passGetNumber (); passInstructions[passIC++] = passHoldNumber; break; default: compileError (passNested, "incorrect comparison operator"); return 0; } break; case pass_attributes: passLinepos++; passGetAttributes (); insertAttributes: passInstructions[passIC++] = pass_attributes; passInstructions[passIC++] = passAttributes >> 16; passInstructions[passIC++] = passAttributes & 0xffff; getRange: if (passLine.chars[passLinepos] == pass_until) { passLinepos++; passInstructions[passIC++] = 1; passInstructions[passIC++] = 0xffff; break; } passGetNumber (); if (passHoldNumber == 0) { passHoldNumber = passInstructions[passIC++] = 1; passInstructions[passIC++] = 1; /*This is not an error */ break; } passInstructions[passIC++] = passHoldNumber; if (passLine.chars[passLinepos] != pass_hyphen) { passInstructions[passIC++] = passHoldNumber; break; } passLinepos++; passGetNumber (); if (passHoldNumber == 0) { compileError (passNested, "invalid range"); return 0; } passInstructions[passIC++] = passHoldNumber; break; case pass_groupstart: case pass_groupend: passLinepos++; passGetName (); ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && rule->opcode == CTO_Grouping) { passInstructions[passIC++] = passSubOp; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; break; } else { compileError (passNested, "%s is not a grouping name", showString (&passHoldString.chars[0], passHoldString.length)); return 0; } break; case pass_swap: passGetName (); if ((class = findCharacterClass (&passHoldString))) { passAttributes = class->attribute; goto insertAttributes; } ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && (rule->opcode == CTO_SwapCc || rule->opcode == CTO_SwapCd || rule->opcode == CTO_SwapDd)) { passInstructions[passIC++] = pass_swap; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; goto getRange; } compileError (passNested, "%s is neither a class name nor a swap name.", showString (&passHoldString.chars[0], passHoldString.length)); return 0; case pass_endTest: passInstructions[passIC++] = pass_endTest; passLinepos++; break; default: compileError (passNested, "incorrect operator '%c ' in test part", passLine.chars[passLinepos]); return 0; } } /*Compile action part */ /* Compile action part */ while (passLinepos < passLine.length && passLine.chars[passLinepos] <= 32) passLinepos++; while (passLinepos < passLine.length && passLine.chars[passLinepos] > 32) { switch ((passSubOp = passLine.chars[passLinepos])) { case pass_string: if (opcode != CTO_Correct) { compileError (passNested, "Character strings can only be used with the ccorrect opcode."); return 0; } passLinepos++; passInstructions[passIC++] = pass_string; passGetString (); goto actionDoCharsDots; case pass_dots: if (opcode == CTO_Correct) { compileError (passNested, "Dot patterns cannot be used with the correct opcode."); return 0; } passLinepos++; passGetDots (); passInstructions[passIC++] = pass_dots; actionDoCharsDots: if (passHoldString.length == 0) return 0; passInstructions[passIC++] = passHoldString.length; for (kk = 0; kk < passHoldString.length; kk++) passInstructions[passIC++] = passHoldString.chars[kk]; break; case pass_variable: passLinepos++; passGetNumber (); switch (passLine.chars[passLinepos]) { case pass_eq: passInstructions[passIC++] = pass_eq; passInstructions[passIC++] = passHoldNumber; passLinepos++; passGetNumber (); passInstructions[passIC++] = passHoldNumber; break; case pass_plus: case pass_hyphen: passInstructions[passIC++] = passLine.chars[passLinepos]; passInstructions[passIC++] = passHoldNumber; break; default: compileError (passNested, "incorrect variable operator in action part"); return 0; } break; case pass_copy: passInstructions[passIC++] = pass_copy; passLinepos++; break; case pass_omit: passInstructions[passIC++] = pass_omit; passLinepos++; break; case pass_groupreplace: case pass_groupstart: case pass_groupend: passLinepos++; passGetName (); ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && rule->opcode == CTO_Grouping) { passInstructions[passIC++] = passSubOp; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; break; } compileError (passNested, "%s is not a grouping name", showString (&passHoldString.chars[0], passHoldString.length)); return 0; case pass_swap: passLinepos++; passGetName (); ruleOffset = findRuleName (&passHoldString); if (ruleOffset) rule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (rule && (rule->opcode == CTO_SwapCc || rule->opcode == CTO_SwapCd || rule->opcode == CTO_SwapDd)) { passInstructions[passIC++] = pass_swap; passInstructions[passIC++] = ruleOffset >> 16; passInstructions[passIC++] = ruleOffset & 0xffff; break; } compileError (passNested, "%s is not a swap name.", showString (&passHoldString.chars[0], passHoldString.length)); return 0; break; default: compileError (passNested, "incorrect operator in action part"); return 0; } } } /*Analyze and add rule */ passRuleDots.length = passIC; passIC = 0; while (passIC < passRuleDots.length) { int start = 0; switch (passInstructions[passIC]) { case pass_string: case pass_dots: case pass_attributes: case pass_swap: start = 1; break; case pass_groupstart: case pass_groupend: start = 1; break; case pass_eq: case pass_lt: case pass_gt: case pass_lteq: case pass_gteq: passIC += 3; break; case pass_lookback: passIC += 2; break; case pass_not: case pass_startReplace: case pass_endReplace: case pass_first: passIC++; break; default: compileError (passNested, "Test/if part must contain characters, dots, attributes or class \ swap."); return 0; } if (start) break; } switch (passInstructions[passIC]) { case pass_string: case pass_dots: for (k = 0; k < passInstructions[passIC + 1]; k++) passRuleChars.chars[k] = passInstructions[passIC + 2 + k]; passRuleChars.length = k; after = before = 0; break; case pass_attributes: case pass_groupstart: case pass_groupend: case pass_swap: after = passRuleDots.length; before = 0; break; default: break; } if (!addRule (passNested, opcode, &passRuleChars, &passRuleDots, after, before)) return 0; return 1; } /* End of multipass compiler */ static int compileBrailleIndicator (FileInfo * nested, char *ermsg, TranslationTableOpcode opcode, TranslationTableOffset * rule) { CharsString token; CharsString cells; if (getToken (nested, &token, ermsg)) if (parseDots (nested, &cells, &token)) if (!addRule (nested, opcode, NULL, &cells, 0, 0)) return 0; *rule = newRuleOffset; return 1; } static int compileNumber (FileInfo * nested) { CharsString token; widechar dest; if (!getToken (nested, &token, "number")) return 0; getNumber (&token.chars[0], &dest); if (!(dest > 0)) { compileError (nested, "a nonzero positive number is required"); return 0; } return dest; } static int compileGrouping (FileInfo * nested) { int k; CharsString name; CharsString groupChars; CharsString groupDots; CharsString dotsParsed; TranslationTableCharacter *charsDotsPtr; widechar endChar; widechar endDots; if (!getToken (nested, &name, "name operand")) return 0; if (!getRuleCharsText (nested, &groupChars)) return 0; if (!getToken (nested, &groupDots, "dots operand")) return 0; for (k = 0; k < groupDots.length && groupDots.chars[k] != ','; k++); if (k == groupDots.length) { compileError (nested, "Dots operand must consist of two cells separated by a comma"); return 0; } groupDots.chars[k] = '-'; if (!parseDots (nested, &dotsParsed, &groupDots)) return 0; if (groupChars.length != 2 || dotsParsed.length != 2) { compileError (nested, "two Unicode characters and two cells separated by a comma are needed."); return 0; } charsDotsPtr = addCharOrDots (nested, groupChars.chars[0], 0); charsDotsPtr->attributes |= CTC_Math; charsDotsPtr->uppercase = charsDotsPtr->realchar; charsDotsPtr->lowercase = charsDotsPtr->realchar; charsDotsPtr = addCharOrDots (nested, groupChars.chars[1], 0); charsDotsPtr->attributes |= CTC_Math; charsDotsPtr->uppercase = charsDotsPtr->realchar; charsDotsPtr->lowercase = charsDotsPtr->realchar; charsDotsPtr = addCharOrDots (nested, dotsParsed.chars[0], 1); charsDotsPtr->attributes |= CTC_Math; charsDotsPtr->uppercase = charsDotsPtr->realchar; charsDotsPtr->lowercase = charsDotsPtr->realchar; charsDotsPtr = addCharOrDots (nested, dotsParsed.chars[1], 1); charsDotsPtr->attributes |= CTC_Math; charsDotsPtr->uppercase = charsDotsPtr->realchar; charsDotsPtr->lowercase = charsDotsPtr->realchar; if (!addRule (nested, CTO_Grouping, &groupChars, &dotsParsed, 0, 0)) return 0; if (!addRuleName (nested, &name)) return 0; putCharAndDots (nested, groupChars.chars[0], dotsParsed.chars[0]); putCharAndDots (nested, groupChars.chars[1], dotsParsed.chars[1]); endChar = groupChars.chars[1]; endDots = dotsParsed.chars[1]; groupChars.length = dotsParsed.length = 1; if (!addRule (nested, CTO_Math, &groupChars, &dotsParsed, 0, 0)) return 0; groupChars.chars[0] = endChar; dotsParsed.chars[0] = endDots; if (!addRule (nested, CTO_Math, &groupChars, &dotsParsed, 0, 0)) return 0; return 1; } static int compileUplow (FileInfo * nested) { int k; TranslationTableCharacter *upperChar; TranslationTableCharacter *lowerChar; TranslationTableCharacter *upperCell = NULL; TranslationTableCharacter *lowerCell = NULL; CharsString ruleChars; CharsString ruleDots; CharsString upperDots; CharsString lowerDots; int haveLowerDots = 0; TranslationTableCharacterAttributes attr; if (!getRuleCharsText (nested, &ruleChars)) return 0; if (!getToken (nested, &ruleDots, "dots operand")) return 0; for (k = 0; k < ruleDots.length && ruleDots.chars[k] != ','; k++); if (k == ruleDots.length) { if (!parseDots (nested, &upperDots, &ruleDots)) return 0; lowerDots.length = upperDots.length; for (k = 0; k < upperDots.length; k++) lowerDots.chars[k] = upperDots.chars[k]; lowerDots.chars[k] = 0; } else { haveLowerDots = ruleDots.length; ruleDots.length = k; if (!parseDots (nested, &upperDots, &ruleDots)) return 0; ruleDots.length = 0; k++; for (; k < haveLowerDots; k++) ruleDots.chars[ruleDots.length++] = ruleDots.chars[k]; if (!parseDots (nested, &lowerDots, &ruleDots)) return 0; } if (ruleChars.length != 2 || upperDots.length < 1) { compileError (nested, "Exactly two Unicode characters and at least one cell are required."); return 0; } if (haveLowerDots && lowerDots.length < 1) { compileError (nested, "at least one cell is required after the comma."); return 0; } upperChar = addCharOrDots (nested, ruleChars.chars[0], 0); upperChar->attributes |= CTC_Letter | CTC_UpperCase; upperChar->uppercase = ruleChars.chars[0]; upperChar->lowercase = ruleChars.chars[1]; lowerChar = addCharOrDots (nested, ruleChars.chars[1], 0); lowerChar->attributes |= CTC_Letter | CTC_LowerCase; lowerChar->uppercase = ruleChars.chars[0]; lowerChar->lowercase = ruleChars.chars[1]; for (k = 0; k < upperDots.length; k++) if (!compile_findCharOrDots (upperDots.chars[k], 1)) { attr = CTC_Letter | CTC_UpperCase; upperCell = addCharOrDots (nested, upperDots.chars[k], 1); if (upperDots.length != 1) attr = CTC_Space; upperCell->attributes |= attr; upperCell->uppercase = upperCell->realchar; } if (haveLowerDots) { for (k = 0; k < lowerDots.length; k++) if (!compile_findCharOrDots (lowerDots.chars[k], 1)) { attr = CTC_Letter | CTC_LowerCase; lowerCell = addCharOrDots (nested, lowerDots.chars[k], 1); if (lowerDots.length != 1) attr = CTC_Space; lowerCell->attributes |= attr; lowerCell->lowercase = lowerCell->realchar; } } else if (upperCell != NULL && upperDots.length == 1) upperCell->attributes |= CTC_LowerCase; if (lowerDots.length == 1) putCharAndDots (nested, ruleChars.chars[1], lowerDots.chars[0]); if (upperCell != NULL) upperCell->lowercase = lowerDots.chars[0]; if (lowerCell != NULL) lowerCell->uppercase = upperDots.chars[0]; if (upperDots.length == 1) putCharAndDots (nested, ruleChars.chars[0], upperDots.chars[0]); ruleChars.length = 1; ruleChars.chars[2] = ruleChars.chars[0]; ruleChars.chars[0] = ruleChars.chars[1]; if (!addRule (nested, CTO_LowerCase, &ruleChars, &lowerDots, 0, 0)) return 0; ruleChars.chars[0] = ruleChars.chars[2]; if (!addRule (nested, CTO_UpperCase, &ruleChars, &upperDots, 0, 0)) return 0; return 1; } /*Functions for compiling hyphenation tables*/ typedef struct /*hyphenation dictionary: finite state machine */ { int numStates; HyphenationState *states; } HyphenDict; #define DEFAULTSTATE 0xffff #define HYPHENHASHSIZE 8191 typedef struct { void *next; CharsString *key; int val; } HyphenHashEntry; typedef struct { HyphenHashEntry *entries[HYPHENHASHSIZE]; } HyphenHashTab; /* a hash function from ASU - adapted from Gtk+ */ static unsigned int hyphenStringHash (const CharsString * s) { int k; unsigned int h = 0, g; for (k = 0; k < s->length; k++) { h = (h << 4) + s->chars[k]; if ((g = h & 0xf0000000)) { h = h ^ (g >> 24); h = h ^ g; } } return h; } static HyphenHashTab * hyphenHashNew () { HyphenHashTab *hashTab; if (!(hashTab = malloc (sizeof (HyphenHashTab)))) outOfMemory (); memset (hashTab, 0, sizeof (HyphenHashTab)); return hashTab; } static void hyphenHashFree (HyphenHashTab * hashTab) { int i; HyphenHashEntry *e, *next; for (i = 0; i < HYPHENHASHSIZE; i++) for (e = hashTab->entries[i]; e; e = next) { next = e->next; free (e->key); free (e); } free (hashTab); } /* assumes that key is not already present! */ static void hyphenHashInsert (HyphenHashTab * hashTab, const CharsString * key, int val) { int i, j; HyphenHashEntry *e; i = hyphenStringHash (key) % HYPHENHASHSIZE; if (!(e = malloc (sizeof (HyphenHashEntry)))) outOfMemory (); e->next = hashTab->entries[i]; e->key = malloc ((key->length + 1) * CHARSIZE); if (!e->key) outOfMemory (); e->key->length = key->length; for (j = 0; j < key->length; j++) e->key->chars[j] = key->chars[j]; e->val = val; hashTab->entries[i] = e; } /* return val if found, otherwise DEFAULTSTATE */ static int hyphenHashLookup (HyphenHashTab * hashTab, const CharsString * key) { int i, j; HyphenHashEntry *e; if (key->length == 0) return 0; i = hyphenStringHash (key) % HYPHENHASHSIZE; for (e = hashTab->entries[i]; e; e = e->next) { if (key->length != e->key->length) continue; for (j = 0; j < key->length; j++) if (key->chars[j] != e->key->chars[j]) break; if (j == key->length) return e->val; } return DEFAULTSTATE; } static int hyphenGetNewState (HyphenDict * dict, HyphenHashTab * hashTab, const CharsString * string) { hyphenHashInsert (hashTab, string, dict->numStates); /* predicate is true if dict->numStates is a power of two */ if (!(dict->numStates & (dict->numStates - 1))) dict->states = realloc (dict->states, (dict->numStates << 1) * sizeof (HyphenationState)); if (!dict->states) outOfMemory (); dict->states[dict->numStates].hyphenPattern = 0; dict->states[dict->numStates].fallbackState = DEFAULTSTATE; dict->states[dict->numStates].numTrans = 0; dict->states[dict->numStates].trans.pointer = NULL; return dict->numStates++; } /* add a transition from state1 to state2 through ch - assumes that the transition does not already exist */ static void hyphenAddTrans (HyphenDict * dict, int state1, int state2, widechar ch) { int numTrans; numTrans = dict->states[state1].numTrans; if (numTrans == 0) dict->states[state1].trans.pointer = malloc (sizeof (HyphenationTrans)); else if (!(numTrans & (numTrans - 1))) dict->states[state1].trans.pointer = realloc (dict->states[state1].trans.pointer, (numTrans << 1) * sizeof (HyphenationTrans)); dict->states[state1].trans.pointer[numTrans].ch = ch; dict->states[state1].trans.pointer[numTrans].newState = state2; dict->states[state1].numTrans++; } static int compileHyphenation (FileInfo * nested, CharsString * encoding) { CharsString hyph; HyphenationTrans *holdPointer; HyphenHashTab *hashTab; CharsString word; char pattern[MAXSTRING]; unsigned int stateNum = 0, lastState = 0; int i, j, k = encoding->length; widechar ch; int found; HyphenHashEntry *e; HyphenDict dict; TranslationTableOffset holdOffset; /*Set aside enough space for hyphenation states and transitions in * translation table. Must be done before anything else*/ reserveSpaceInTable (nested, 250000); hashTab = hyphenHashNew (); dict.numStates = 1; dict.states = malloc (sizeof (HyphenationState)); if (!dict.states) outOfMemory (); dict.states[0].hyphenPattern = 0; dict.states[0].fallbackState = DEFAULTSTATE; dict.states[0].numTrans = 0; dict.states[0].trans.pointer = NULL; do { if (encoding->chars[0] == 'I') { if (!getToken (nested, &hyph, NULL)) continue; } else { /*UTF-8 */ if (!getToken (nested, &word, NULL)) continue; parseChars (nested, &hyph, &word); } if (hyph.length == 0 || hyph.chars[0] == '#' || hyph.chars[0] == '%' || hyph.chars[0] == '<') continue; /*comment */ for (i = 0; i < hyph.length; i++) definedCharOrDots (nested, hyph.chars[i], 0); j = 0; pattern[j] = '0'; for (i = 0; i < hyph.length; i++) { if (hyph.chars[i] >= '0' && hyph.chars[i] <= '9') pattern[j] = (char) hyph.chars[i]; else { word.chars[j] = hyph.chars[i]; pattern[++j] = '0'; } } word.chars[j] = 0; word.length = j; pattern[j + 1] = 0; for (i = 0; pattern[i] == '0'; i++); found = hyphenHashLookup (hashTab, &word); if (found != DEFAULTSTATE) stateNum = found; else stateNum = hyphenGetNewState (&dict, hashTab, &word); k = j + 2 - i; if (k > 0) { allocateSpaceInTable (nested, &dict.states[stateNum].hyphenPattern, k); memcpy (&table->ruleArea[dict.states[stateNum].hyphenPattern], &pattern[i], k); } /* now, put in the prefix transitions */ while (found == DEFAULTSTATE) { lastState = stateNum; ch = word.chars[word.length-- - 1]; found = hyphenHashLookup (hashTab, &word); if (found != DEFAULTSTATE) stateNum = found; else stateNum = hyphenGetNewState (&dict, hashTab, &word); hyphenAddTrans (&dict, stateNum, lastState, ch); } } while (getALine (nested)); /* put in the fallback states */ for (i = 0; i < HYPHENHASHSIZE; i++) { for (e = hashTab->entries[i]; e; e = e->next) { for (j = 1; j <= e->key->length; j++) { word.length = 0; for (k = j; k < e->key->length; k++) word.chars[word.length++] = e->key->chars[k]; stateNum = hyphenHashLookup (hashTab, &word); if (stateNum != DEFAULTSTATE) break; } if (e->val) dict.states[e->val].fallbackState = stateNum; } } hyphenHashFree (hashTab); /*Transfer hyphenation information to table*/ for (i = 0; i < dict.numStates; i++) { if (dict.states[i].numTrans == 0) dict.states[i].trans.offset = 0; else { holdPointer = dict.states[i].trans.pointer; allocateSpaceInTable (nested, &dict.states[i].trans.offset, dict.states[i].numTrans * sizeof (HyphenationTrans)); memcpy (&table->ruleArea[dict.states[i].trans.offset], holdPointer, dict.states[i].numTrans * sizeof (HyphenationTrans)); free (holdPointer); } } allocateSpaceInTable (nested, &holdOffset, dict.numStates * sizeof (HyphenationState)); table->hyphenStatesArray = holdOffset; /* Prevents segmentajion fault if table is reallocated */ memcpy (&table->ruleArea[table->hyphenStatesArray], &dict.states[0], dict.numStates * sizeof (HyphenationState)); free (dict.states); return 1; } static int compileNoBreak (FileInfo * nested) { int k; CharsString ruleDots; CharsString otherDots; CharsString dotsBefore; CharsString dotsAfter; int haveDotsAfter = 0; if (!getToken (nested, &ruleDots, "dots operand")) return 0; for (k = 0; k < ruleDots.length && ruleDots.chars[k] != ','; k++); if (k == ruleDots.length) { if (!parseDots (nested, &dotsBefore, &ruleDots)) return 0; dotsAfter.length = dotsBefore.length; for (k = 0; k < dotsBefore.length; k++) dotsAfter.chars[k] = dotsBefore.chars[k]; dotsAfter.chars[k] = 0; } else { haveDotsAfter = ruleDots.length; ruleDots.length = k; if (!parseDots (nested, &dotsBefore, &ruleDots)) return 0; otherDots.length = 0; k++; for (; k < haveDotsAfter; k++) otherDots.chars[otherDots.length++] = ruleDots.chars[k]; if (!parseDots (nested, &dotsAfter, &otherDots)) return 0; } for (k = 0; k < dotsBefore.length; k++) dotsBefore.chars[k] = getCharFromDots (dotsBefore.chars[k]); for (k = 0; k < dotsAfter.length; k++) dotsAfter.chars[k] = getCharFromDots (dotsAfter.chars[k]); if (!addRule (nested, CTO_NoBreak, &dotsBefore, &dotsAfter, 0, 0)) return 0; table->noBreak = newRuleOffset; return 1; } static int compileCharDef (FileInfo * nested, TranslationTableOpcode opcode, TranslationTableCharacterAttributes attributes) { CharsString ruleChars; CharsString ruleDots; TranslationTableCharacter *character; TranslationTableCharacter *cell; TranslationTableCharacter *otherCell; TranslationTableCharacterAttributes attr; int k; if (!getRuleCharsText (nested, &ruleChars)) return 0; if (attributes & (CTC_UpperCase | CTC_LowerCase)) attributes |= CTC_Letter; if (!getRuleDotsPattern (nested, &ruleDots)) return 0; if (ruleChars.length != 1 || ruleDots.length < 1) { compileError (nested, "Exactly one Unicode character and at least one cell are required."); return 0; } character = addCharOrDots (nested, ruleChars.chars[0], 0); character->attributes |= attributes; character->uppercase = character->lowercase = character->realchar; cell = compile_findCharOrDots (ruleDots.chars[0], 1); if (ruleDots.length == 1 && cell) cell->attributes |= attributes; else { for (k = 0; k < ruleDots.length; k++) { if (!compile_findCharOrDots (ruleDots.chars[k], 1)) { attr = attributes; otherCell = addCharOrDots (nested, ruleDots.chars[k], 1); if (ruleDots.length != 1) attr = CTC_Space; otherCell->attributes |= attr; otherCell->uppercase = otherCell->lowercase = otherCell->realchar; } } } if (!addRule (nested, opcode, &ruleChars, &ruleDots, 0, 0)) return 0; if (ruleDots.length == 1) putCharAndDots (nested, ruleChars.chars[0], ruleDots.chars[0]); return 1; } static int compileRule (FileInfo * nested) { int ok = 1; CharsString token; TranslationTableOpcode opcode; CharsString ruleChars; CharsString ruleDots; CharsString cells; CharsString scratchPad; TranslationTableCharacterAttributes after = 0; TranslationTableCharacterAttributes before = 0; int k; noback = nofor = 0; doOpcode: if (!getToken (nested, &token, NULL)) return 1; /*blank line */ if (token.chars[0] == '#' || token.chars[0] == '<') return 1; /*comment */ if (nested->lineNumber == 1 && (eqasc2uni ((unsigned char *) "ISO", token.chars, 3) || eqasc2uni ((unsigned char *) "UTF-8", token.chars, 5))) { compileHyphenation (nested, &token); return 1; } opcode = getOpcode (nested, &token); switch (opcode) { /*Carry out operations */ case CTO_None: break; case CTO_IncludeFile: { CharsString includedFile; if (getToken (nested, &token, "include file name")) if (parseChars (nested, &includedFile, &token)) if (!includeFile (nested, &includedFile)) ok = 0; break; } case CTO_Locale: break; case CTO_Undefined: ok = compileBrailleIndicator (nested, "undefined character opcode", CTO_Undefined, &table->undefined); break; case CTO_CapitalSign: ok = compileBrailleIndicator (nested, "capital sign", CTO_CapitalRule, &table->capitalSign); break; case CTO_BeginCapitalSign: ok = compileBrailleIndicator (nested, "begin capital sign", CTO_BeginCapitalRule, &table->beginCapitalSign); break; case CTO_LenBegcaps: ok = table->lenBeginCaps = compileNumber (nested); break; case CTO_EndCapitalSign: ok = compileBrailleIndicator (nested, "end capitals sign", CTO_EndCapitalRule, &table->endCapitalSign); break; case CTO_FirstWordCaps: ok = compileBrailleIndicator (nested, "first word capital sign", CTO_FirstWordCapsRule, &table->firstWordCaps); break; case CTO_LastWordCapsBefore: ok = compileBrailleIndicator (nested, "capital sign before last word", CTO_LastWordCapsBeforeRule, &table->lastWordCapsBefore); break; case CTO_LastWordCapsAfter: ok = compileBrailleIndicator (nested, "capital sign after last word", CTO_LastWordCapsAfterRule, &table->lastWordCapsAfter); break; case CTO_LenCapsPhrase: ok = table->lenCapsPhrase = compileNumber (nested); break; case CTO_LetterSign: ok = compileBrailleIndicator (nested, "letter sign", CTO_LetterRule, &table->letterSign); break; case CTO_NoLetsignBefore: if (getRuleCharsText (nested, &ruleChars)) { if ((table->noLetsignBeforeCount + ruleChars.length) > LETSIGNSIZE) { compileError (nested, "More than %d characters", LETSIGNSIZE); ok = 0; break; } for (k = 0; k < ruleChars.length; k++) table->noLetsignBefore[table->noLetsignBeforeCount++] = ruleChars.chars[k]; } break; case CTO_NoLetsign: if (getRuleCharsText (nested, &ruleChars)) { if ((table->noLetsignCount + ruleChars.length) > LETSIGNSIZE) { compileError (nested, "More than %d characters", LETSIGNSIZE); ok = 0; break; } for (k = 0; k < ruleChars.length; k++) table->noLetsign[table->noLetsignCount++] = ruleChars.chars[k]; } break; case CTO_NoLetsignAfter: if (getRuleCharsText (nested, &ruleChars)) { if ((table->noLetsignAfterCount + ruleChars.length) > LETSIGNSIZE) { compileError (nested, "More than %d characters", LETSIGNSIZE); ok = 0; break; } for (k = 0; k < ruleChars.length; k++) table->noLetsignAfter[table->noLetsignAfterCount++] = ruleChars.chars[k]; } break; case CTO_NumberSign: ok = compileBrailleIndicator (nested, "number sign", CTO_NumberRule, &table->numberSign); break; case CTO_FirstWordItal: ok = compileBrailleIndicator (nested, "first word italic", CTO_FirstWordItalRule, &table->firstWordItal); break; case CTO_ItalSign: case CTO_LastWordItalBefore: ok = compileBrailleIndicator (nested, "first word italic before", CTO_LastWordItalBeforeRule, &table->lastWordItalBefore); break; case CTO_LastWordItalAfter: ok = compileBrailleIndicator (nested, "last word italic after", CTO_LastWordItalAfterRule, &table->lastWordItalAfter); break; case CTO_BegItal: case CTO_FirstLetterItal: ok = compileBrailleIndicator (nested, "first letter italic", CTO_FirstLetterItalRule, &table->firstLetterItal); break; case CTO_EndItal: case CTO_LastLetterItal: ok = compileBrailleIndicator (nested, "last letter italic", CTO_LastLetterItalRule, &table->lastLetterItal); break; case CTO_SingleLetterItal: ok = compileBrailleIndicator (nested, "single letter italic", CTO_SingleLetterItalRule, &table->singleLetterItal); break; case CTO_ItalWord: ok = compileBrailleIndicator (nested, "italic word", CTO_ItalWordRule, &table->italWord); break; case CTO_LenItalPhrase: ok = table->lenItalPhrase = compileNumber (nested); break; case CTO_FirstWordBold: ok = compileBrailleIndicator (nested, "first word bold", CTO_FirstWordBoldRule, &table->firstWordBold); break; case CTO_BoldSign: case CTO_LastWordBoldBefore: ok = compileBrailleIndicator (nested, "last word bold before", CTO_LastWordBoldBeforeRule, &table->lastWordBoldBefore); break; case CTO_LastWordBoldAfter: ok = compileBrailleIndicator (nested, "last word bold after", CTO_LastWordBoldAfterRule, &table->lastWordBoldAfter); break; case CTO_BegBold: case CTO_FirstLetterBold: ok = compileBrailleIndicator (nested, "first letter bold", CTO_FirstLetterBoldRule, &table->firstLetterBold); break; case CTO_EndBold: case CTO_LastLetterBold: ok = compileBrailleIndicator (nested, "last letter bold", CTO_LastLetterBoldRule, &table->lastLetterBold); break; case CTO_SingleLetterBold: ok = compileBrailleIndicator (nested, "single letter bold", CTO_SingleLetterBoldRule, &table->singleLetterBold); break; case CTO_BoldWord: ok = compileBrailleIndicator (nested, "bold word", CTO_BoldWordRule, &table->boldWord); break; case CTO_LenBoldPhrase: ok = table->lenBoldPhrase = compileNumber (nested); break; case CTO_FirstWordUnder: ok = compileBrailleIndicator (nested, "first word underline", CTO_FirstWordUnderRule, &table->firstWordUnder); break; case CTO_UnderSign: case CTO_LastWordUnderBefore: ok = compileBrailleIndicator (nested, "last word underline before", CTO_LastWordUnderBeforeRule, &table->lastWordUnderBefore); break; case CTO_LastWordUnderAfter: ok = compileBrailleIndicator (nested, "last word underline after", CTO_LastWordUnderAfterRule, &table->lastWordUnderAfter); break; case CTO_BegUnder: case CTO_FirstLetterUnder: ok = compileBrailleIndicator (nested, "first letter underline", CTO_FirstLetterUnderRule, &table->firstLetterUnder); break; case CTO_EndUnder: case CTO_LastLetterUnder: ok = compileBrailleIndicator (nested, "last letter underline", CTO_LastLetterUnderRule, &table->lastLetterUnder); break; case CTO_SingleLetterUnder: ok = compileBrailleIndicator (nested, "single letter underline", CTO_SingleLetterUnderRule, &table->singleLetterUnder); break; case CTO_UnderWord: ok = compileBrailleIndicator (nested, "underlined word", CTO_UnderWordRule, &table->underWord); break; case CTO_LenUnderPhrase: ok = table->lenUnderPhrase = compileNumber (nested); break; case CTO_BegComp: ok = compileBrailleIndicator (nested, "begin computer braille", CTO_BegCompRule, &table->begComp); break; case CTO_EndComp: ok = compileBrailleIndicator (nested, "end computer braslle", CTO_EndCompRule, &table->endComp); break; case CTO_Syllable: table->syllables = 1; case CTO_Always: case CTO_NoCross: case CTO_LargeSign: case CTO_WholeWord: case CTO_PartWord: case CTO_JoinNum: case CTO_JoinableWord: case CTO_LowWord: case CTO_SuffixableWord: case CTO_PrefixableWord: case CTO_BegWord: case CTO_BegMidWord: case CTO_MidWord: case CTO_MidEndWord: case CTO_EndWord: case CTO_PrePunc: case CTO_PostPunc: case CTO_BegNum: case CTO_MidNum: case CTO_EndNum: case CTO_Repeated: case CTO_RepWord: if (getRuleCharsText (nested, &ruleChars)) if (getRuleDotsPattern (nested, &ruleDots)) if (!addRule (nested, opcode, &ruleChars, &ruleDots, after, before)) ok = 0; break; case CTO_CompDots: case CTO_Comp6: if (!getRuleCharsText (nested, &ruleChars)) return 0; if (ruleChars.length != 1 || ruleChars.chars[0] > 255) { compileError (nested, "first operand must be 1 character and < 256"); return 0; } if (!getRuleDotsPattern (nested, &ruleDots)) return 0; if (!addRule (nested, opcode, &ruleChars, &ruleDots, after, before)) ok = 0; table->compdotsPattern[ruleChars.chars[0]] = newRuleOffset; break; case CTO_ExactDots: if (!getRuleCharsText (nested, &ruleChars)) return 0; if (ruleChars.chars[0] != '@') { compileError (nested, "The operand must begin with an at sign (@)"); return 0; } for (k = 1; k < ruleChars.length; k++) scratchPad.chars[k - 1] = ruleChars.chars[k]; scratchPad.length = ruleChars.length - 1; if (!parseDots (nested, &ruleDots, &scratchPad)) return 0; if (!addRule (nested, opcode, &ruleChars, &ruleDots, before, after)) ok = 0; break; case CTO_CapsNoCont: ruleChars.length = 1; ruleChars.chars[0] = 'a'; if (!addRule (nested, CTO_CapsNoContRule, &ruleChars, NULL, after, before)) ok = 0; table->capsNoCont = newRuleOffset; break; case CTO_Replace: if (getRuleCharsText (nested, &ruleChars)) { if (lastToken) ruleDots.length = ruleDots.chars[0] = 0; else { getRuleDotsText (nested, &ruleDots); if (ruleDots.chars[0] == '#') ruleDots.length = ruleDots.chars[0] = 0; else if (ruleDots.chars[0] == '\\' && ruleDots.chars[1] == '#') memcpy (&ruleDots.chars[0], &ruleDots.chars[1], ruleDots.length-- * CHARSIZE); } } for (k = 0; k < ruleChars.length; k++) addCharOrDots (nested, ruleChars.chars[k], 0); for (k = 0; k < ruleDots.length; k++) addCharOrDots (nested, ruleDots.chars[k], 0); if (!addRule (nested, opcode, &ruleChars, &ruleDots, after, before)) ok = 0; break; case CTO_Pass2: if (table->numPasses < 2) table->numPasses = 2; goto doPass; case CTO_Pass3: if (table->numPasses < 3) table->numPasses = 3; goto doPass; case CTO_Pass4: if (table->numPasses < 4) table->numPasses = 4; doPass: case CTO_Context: if (!compilePassOpcode (nested, opcode)) ok = 0; break; case CTO_Correct: if (!compilePassOpcode (nested, opcode)) ok = 0; table->corrections = 1; break; case CTO_Contraction: case CTO_NoCont: case CTO_CompBrl: case CTO_Literal: if (getRuleCharsText (nested, &ruleChars)) if (!addRule (nested, opcode, &ruleChars, NULL, after, before)) ok = 0; break; case CTO_MultInd: { int lastToken; ruleChars.length = 0; if (getToken (nested, &token, "multiple braille indicators") && parseDots (nested, &cells, &token)) { while ((lastToken = getToken (nested, &token, "multind opcodes"))) { opcode = getOpcode (nested, &token); if (opcode >= CTO_CapitalSign && opcode < CTO_MultInd) ruleChars.chars[ruleChars.length++] = (widechar) opcode; else { compileError (nested, "Not a braille indicator opcode."); ok = 0; } if (lastToken == 2) break; } } else ok = 0; if (!addRule (nested, CTO_MultInd, &ruleChars, &cells, after, before)) ok = 0; break; } case CTO_Class: { CharsString characters; const struct CharacterClass *class; if (!characterClasses) { if (!allocateCharacterClasses ()) ok = 0; } if (getToken (nested, &token, "character class name")) { if ((class = findCharacterClass (&token))) { compileError (nested, "character class already defined."); } else if ((class = addCharacterClass (nested, &token.chars[0], token.length))) { if (getCharacters (nested, &characters)) { int index; for (index = 0; index < characters.length; ++index) { TranslationTableRule *defRule; TranslationTableCharacter *character = definedCharOrDots (nested, characters.chars[index], 0); character->attributes |= class->attribute; defRule = (TranslationTableRule *) & table->ruleArea[character->definitionRule]; if (defRule->dotslen == 1) { character = definedCharOrDots (nested, defRule->charsdots[defRule->charslen], 1); character->attributes |= class->attribute; } } } } } break; } { TranslationTableCharacterAttributes *attributes; const struct CharacterClass *class; case CTO_After: attributes = &after; goto doClass; case CTO_Before: attributes = &before; doClass: if (!characterClasses) { if (!allocateCharacterClasses ()) ok = 0; } if (getCharacterClass (nested, &class)) { *attributes |= class->attribute; goto doOpcode; } break; } case CTO_NoBack: noback = 1; goto doOpcode; case CTO_NoFor: nofor = 1; goto doOpcode; case CTO_SwapCc: case CTO_SwapCd: case CTO_SwapDd: if (!compileSwap (nested, opcode)) ok = 0; break; case CTO_Hyphen: case CTO_DecPoint: if (getRuleCharsText (nested, &ruleChars)) if (getRuleDotsPattern (nested, &ruleDots)) { if (ruleChars.length != 1 || ruleDots.length < 1) { compileError (nested, "One Unicode character and at least one cell are required."); ok = 0; } if (!addRule (nested, opcode, &ruleChars, &ruleDots, after, before)) ok = 0; } break; case CTO_Space: compileCharDef (nested, opcode, CTC_Space); break; case CTO_Digit: compileCharDef (nested, opcode, CTC_Digit); break; case CTO_LitDigit: compileCharDef (nested, opcode, CTC_LitDigit); break; case CTO_Punctuation: compileCharDef (nested, opcode, CTC_Punctuation); break; case CTO_Math: compileCharDef (nested, opcode, CTC_Math); break; case CTO_Sign: compileCharDef (nested, opcode, CTC_Sign); break; case CTO_Letter: compileCharDef (nested, opcode, CTC_Letter); break; case CTO_UpperCase: compileCharDef (nested, opcode, CTC_UpperCase); break; case CTO_LowerCase: compileCharDef (nested, opcode, CTC_LowerCase); break; case CTO_NoBreak: ok = compileNoBreak (nested); break; case CTO_Grouping: ok = compileGrouping (nested); break; case CTO_UpLow: ok = compileUplow (nested); break; case CTO_Display: if (getRuleCharsText (nested, &ruleChars)) if (getRuleDotsPattern (nested, &ruleDots)) { if (ruleChars.length != 1 || ruleDots.length != 1) { compileError (nested, "Exactly one character and one cell are required."); ok = 0; } putCharAndDots (nested, ruleChars.chars[0], ruleDots.chars[0]); } break; default: compileError (nested, "unimplemented opcode."); break; } return ok; } int EXPORT_CALL lou_readCharFromFile (const char *fileName, int *mode) { /*Read a character from a file, whether big-endian, little-endian or * ASCII8*/ int ch; static FileInfo nested; if (fileName == NULL) return 0; if (*mode == 1) { *mode = 0; nested.fileName = fileName; nested.encoding = noEncoding; nested.status = 0; nested.lineNumber = 0; if (!(nested.in = fopen (nested.fileName, "r"))) { lou_logPrint ("Cannot open file '%s'", nested.fileName); *mode = 1; return EOF; } } if (nested.in == NULL) { *mode = 1; return EOF; } ch = getAChar (&nested); if (ch == EOF) { fclose (nested.in); nested.in = NULL; *mode = 1; } return ch; } static int fileCount = 0; static FILE * findTable (const char *tableName) { /* Search paths for tables */ FILE *tableFile; char *pathList; char pathEnd[2]; char trialPath[MAXSTRING]; if (tableName == NULL || tableName[0] == 0) return NULL; strcpy (trialPath, tablePath); strcat (trialPath, tableName); if ((tableFile = fopen (trialPath, "rb"))) return tableFile; pathEnd[0] = DIR_SEP; pathEnd[1] = 0; /* See if table is on environment path LOUIS_TABLEPATH */ pathList = getenv ("LOUIS_TABLEPATH"); if (pathList) while (1) { int k; int listLength; int currentListPos = 0; listLength = strlen (pathList); for (k = 0; k < listLength; k++) if (pathList[k] == ',') break; if (k == listLength || k == 0) { /* Only one file */ strcpy (trialPath, pathList); strcat (trialPath, pathEnd); strcat (trialPath, tableName); if ((tableFile = fopen (trialPath, "rb"))) break; } else { /* Compile a list of files */ strncpy (trialPath, pathList, k); trialPath[k] = 0; strcat (trialPath, pathEnd); strcat (trialPath, tableName); currentListPos = k + 1; if ((tableFile = fopen (trialPath, "rb"))) break; while (currentListPos < listLength) { for (k = currentListPos; k < listLength; k++) if (pathList[k] == ',') break; strncpy (trialPath, &pathList[currentListPos], k - currentListPos); trialPath[k - currentListPos] = 0; strcat (trialPath, pathEnd); strcat (trialPath, tableName); if ((tableFile = fopen (trialPath, "rb"))) currentListPos = k + 1; break; } } break; } if (tableFile) return tableFile; /* See if table in current directory or on a path in * the table name*/ if ((tableFile = fopen (tableName, "rb"))) return tableFile; /* See if table on dataPath. */ pathList = lou_getDataPath (); if (pathList) { strcpy (trialPath, pathList); strcat (trialPath, pathEnd); #ifdef _WIN32 strcat (trialPath, "liblouis\\tables\\"); #else strcat (trialPath, "liblouis/tables/"); #endif strcat (trialPath, tableName); if ((tableFile = fopen (trialPath, "rb"))) return tableFile; } /* See if table on installed or program path. */ #ifdef _WIN32 strcpy (trialPath, lou_getProgramPath ()); strcat (trialPath, "\\share\\liblouss\\tables\\"); #else strcpy (trialPath, TABLESDIR); strcat (trialPath, pathEnd); #endif strcat (trialPath, tableName); if ((tableFile = fopen (trialPath, "rb"))) return tableFile; return NULL; } static int compileFile (const char *fileName) { /*Compile a table file */ FileInfo nested; fileCount++; nested.fileName = fileName; nested.encoding = noEncoding; nested.status = 0; nested.lineNumber = 0; if ((nested.in = findTable (fileName))) { while (getALine (&nested)) compileRule (&nested); fclose (nested.in); } else { if (fileCount > 1) lou_logPrint ("Cannot open table '%s'", nested.fileName); errorCount++; return 0; } return 1; } static int compileString (const char *inString) { /* This function can be used to make changes to tables on the fly. */ int k; FileInfo nested; if (inString == NULL) return 0; nested.fileName = inString; nested.encoding = noEncoding; nested.lineNumber = 1; nested.status = 0; nested.linepos = 0; for (k = 0; inString[k]; k++) nested.line[k] = inString[k]; nested.line[k] = 0; return compileRule (&nested); } static int makeDoubleRule (TranslationTableOpcode opcode, TranslationTableOffset * singleRule, TranslationTableOffset * doubleRule) { CharsString dots; TranslationTableRule *rule; if (!*singleRule || *doubleRule) return 1; rule = (TranslationTableRule *) & table->ruleArea[*singleRule]; memcpy (dots.chars, &rule->charsdots[0], rule->dotslen * CHARSIZE); memcpy (&dots.chars[rule->dotslen], &rule->charsdots[0], rule->dotslen * CHARSIZE); dots.length = 2 * rule->dotslen; if (!addRule (NULL, opcode, NULL, &dots, 0, 0)) return 0; *doubleRule = newRuleOffset; return 1; } static int setDefaults () { if (!table->lenBeginCaps) table->lenBeginCaps = 2; makeDoubleRule (CTO_FirstWordItal, &table->lastWordItalBefore, &table->firstWordItal); if (!table->lenItalPhrase) table->lenItalPhrase = 4; makeDoubleRule (CTO_FirstWordBold, &table->lastWordBoldBefore, &table->firstWordBold); if (!table->lenBoldPhrase) table->lenBoldPhrase = 4; makeDoubleRule (CTO_FirstWordUnder, &table->lastWordUnderBefore, &table->firstWordUnder); if (!table->lenUnderPhrase) table->lenUnderPhrase = 4; if (table->numPasses == 0) table->numPasses = 1; return 1; } static void * compileTranslationTable (const char *tableList) { /*compile source tables into a table in memory */ int k; char mainTable[MAXSTRING]; char subTable[MAXSTRING]; int listLength; int currentListPos = 0; errorCount = 0; warningCount = 0; fileCount = 0; table = NULL; characterClasses = NULL; ruleNames = NULL; if (tableList == NULL) return NULL; if (!opcodeLengths[0]) { TranslationTableOpcode opcode; for (opcode = 0; opcode < CTO_None; opcode++) opcodeLengths[opcode] = strlen (opcodeNames[opcode]); } allocateHeader (NULL); /*Compile things that are necesary for the proper operation of liblouis or liblouisxml or liblouisutdml */ compileString ("space \\s 0"); compileString ("noback sign \\x0000 0"); compileString ("space \\x00a0 a unbreakable space"); compileString ("space \\x001b 1b escape"); compileString ("punctuation \\xffff 123456789abcdef ENDSEGMENT"); listLength = strlen (tableList); for (k = currentListPos; k < listLength; k++) if (tableList[k] == ',') break; if (k == listLength) { /* Only one file */ strcpy (tablePath, tableList); for (k = strlen (tablePath); k >= 0; k--) if (tablePath[k] == '\\' || tablePath[k] == '/') break; strcpy (mainTable, &tablePath[k + 1]); tablePath[++k] = 0; if (!compileFile (mainTable)) goto cleanup; } else { /* Compile a list of files */ currentListPos = k + 1; strncpy (tablePath, tableList, k); tablePath[k] = 0; for (k = strlen (tablePath); k >= 0; k--) if (tablePath[k] == '\\' || tablePath[k] == '/') break; strcpy (mainTable, &tablePath[k + 1]); tablePath[++k] = 0; if (!compileFile (mainTable)) goto cleanup; while (currentListPos < listLength) { for (k = currentListPos; k < listLength; k++) if (tableList[k] == ',') break; strncpy (subTable, &tableList[currentListPos], k - currentListPos); subTable[k - currentListPos] = 0; if (!compileFile (subTable)) goto cleanup; currentListPos = k + 1; } } /*Clean up after compiling files*/ cleanup: if (characterClasses) deallocateCharacterClasses (); if (ruleNames) deallocateRuleNames (); if (warningCount) lou_logPrint ("%d warnings issued", warningCount); if (!errorCount) { setDefaults (); table->tableSize = tableSize; table->bytesUsed = tableUsed; } else { if (!(errorCount == 1 && fileCount == 1)) lou_logPrint ("%d errors found.", errorCount); if (table) free (table); table = NULL; } return (void *) table; } static ChainEntry *lastTrans = NULL; static void * getTable (const char *tableList) { /*Keep track of which tables have already been compiled */ int tableListLen; ChainEntry *currentEntry = NULL; ChainEntry *lastEntry = NULL; void *newTable; if (tableList == NULL || *tableList == 0) return NULL; errorCount = fileCount = 0; tableListLen = strlen (tableList); /*See if this is the last table used. */ if (lastTrans != NULL) if (tableListLen == lastTrans->tableListLength && (memcmp (&lastTrans-> tableList [0], tableList, tableListLen)) == 0) return (table = lastTrans->table); /*See if Table has already been compiled*/ currentEntry = tableChain; while (currentEntry != NULL) { if (tableListLen == currentEntry->tableListLength && (memcmp (¤tEntry-> tableList [0], tableList, tableListLen)) == 0) { lastTrans = currentEntry; return (table = currentEntry->table); } lastEntry = currentEntry; currentEntry = currentEntry->next; } if ((newTable = compileTranslationTable (tableList))) { /*Add a new entry to the table chain. */ int entrySize = sizeof (ChainEntry) + tableListLen; ChainEntry *newEntry = malloc (entrySize); if (!newEntry) outOfMemory (); if (tableChain == NULL) tableChain = newEntry; else lastEntry->next = newEntry; newEntry->next = NULL; newEntry->table = newTable; newEntry->tableListLength = tableListLen; memcpy (&newEntry->tableList[0], tableList, tableListLen); lastTrans = newEntry; return newEntry->table; } return NULL; } char * getLastTableList () { if (lastTrans == NULL) return NULL; strncpy (scratchBuf, lastTrans->tableList, lastTrans->tableListLength); scratchBuf[lastTrans->tableListLength] = 0; return scratchBuf; } void *EXPORT_CALL lou_getTable (const char *tableList) { /* Search paths for tables and keep track of compiled tables. */ void *table = NULL; char *pathList; char pathEnd[2]; char trialPath[MAXSTRING]; if (tableList == NULL || tableList[0] == 0) return NULL; errorCount = fileCount = 0; pathEnd[0] = DIR_SEP; pathEnd[1] = 0; /* See if table is on environment path LOUIS_TABLEPATH */ pathList = getenv ("LOUIS_TABLEPATH"); if (pathList) while (1) { int k; int listLength; int currentListPos = 0; listLength = strlen (pathList); for (k = 0; k < listLength; k++) if (pathList[k] == ',') break; if (k == listLength || k == 0) { /* Only one file */ strcpy (trialPath, pathList); strcat (trialPath, pathEnd); strcat (trialPath, tableList); table = getTable (trialPath); if (table) break; } else { /* Compile a list of files */ strncpy (trialPath, pathList, k); trialPath[k] = 0; strcat (trialPath, pathEnd); strcat (trialPath, tableList); currentListPos = k + 1; table = getTable (trialPath); if (table) break; while (currentListPos < listLength) { for (k = currentListPos; k < listLength; k++) if (pathList[k] == ',') break; strncpy (trialPath, &pathList[currentListPos], k - currentListPos); trialPath[k - currentListPos] = 0; strcat (trialPath, pathEnd); strcat (trialPath, tableList); table = getTable (trialPath); currentListPos = k + 1; if (table) break; } } break; } if (!table) { /* See if table in current directory or on a path in * the table name*/ if (errorCount > 0 && (!(errorCount == 1 && fileCount == 1))) return NULL; table = getTable (tableList); } if (!table) { /* See if table on dataPath. */ if (errorCount > 0 && (!(errorCount == 1 && fileCount == 1))) return NULL; pathList = lou_getDataPath (); if (pathList) { strcpy (trialPath, pathList); strcat (trialPath, pathEnd); #ifdef _WIN32 strcat (trialPath, "liblouis\\tables\\"); #else strcat (trialPath, "liblouis/tables/"); #endif strcat (trialPath, tableList); table = getTable (trialPath); } } if (!table) { /* See if table on installed or program path. */ if (errorCount > 0 && (!(errorCount == 1 && fileCount == 1))) return NULL; #ifdef _WIN32 strcpy (trialPath, lou_getProgramPath ()); strcat (trialPath, "\\share\\liblouss\\tables\\"); #else strcpy (trialPath, TABLESDIR); strcat (trialPath, pathEnd); #endif strcat (trialPath, tableList); table = getTable (trialPath); } if (!table) lou_logPrint ("%s could not be found", tableList); return table; } static unsigned char *destSpacing = NULL; static int sizeDestSpacing = 0; static unsigned short *typebuf = NULL; static int sizeTypebuf = 0; static widechar *passbuf1 = NULL; static int sizePassbuf1 = 0; static widechar *passbuf2 = NULL; static int sizePassbuf2 = 0; static int *srcMapping = NULL; static int *prevSrcMapping = NULL; static int sizeSrcMapping = 0; static int sizePrevSrcMapping = 0; void * liblouis_allocMem (AllocBuf buffer, int srcmax, int destmax) { if (srcmax < 1024) srcmax = 1024; if (destmax < 1024) destmax = 1024; switch (buffer) { case alloc_typebuf: if (destmax > sizeTypebuf) { if (typebuf != NULL) free (typebuf); typebuf = malloc ((destmax + 4) * sizeof (unsigned short)); if (!typebuf) outOfMemory (); sizeTypebuf = destmax; } return typebuf; case alloc_destSpacing: if (destmax > sizeDestSpacing) { if (destSpacing != NULL) free (destSpacing); destSpacing = malloc (destmax + 4); if (!destSpacing) outOfMemory (); sizeDestSpacing = destmax; } return destSpacing; case alloc_passbuf1: if (destmax > sizePassbuf1) { if (passbuf1 != NULL) free (passbuf1); passbuf1 = malloc ((destmax + 4) * CHARSIZE); if (!passbuf1) outOfMemory (); sizePassbuf1 = destmax; } return passbuf1; case alloc_passbuf2: if (destmax > sizePassbuf2) { if (passbuf2 != NULL) free (passbuf2); passbuf2 = malloc ((destmax + 4) * CHARSIZE); if (!passbuf2) outOfMemory (); sizePassbuf2 = destmax; } return passbuf2; case alloc_srcMapping: { int mapSize; if (srcmax >= destmax) mapSize = srcmax; else mapSize = destmax; if (mapSize > sizeSrcMapping) { if (srcMapping != NULL) free (srcMapping); srcMapping = malloc ((mapSize + 4) * sizeof (int)); if (!srcMapping) outOfMemory (); sizeSrcMapping = mapSize; } } return srcMapping; case alloc_prevSrcMapping: { int mapSize; if (srcmax >= destmax) mapSize = srcmax; else mapSize = destmax; if (mapSize > sizePrevSrcMapping) { if (prevSrcMapping != NULL) free (prevSrcMapping); prevSrcMapping = malloc ((mapSize + 4) * sizeof (int)); if (!prevSrcMapping) outOfMemory (); sizePrevSrcMapping = mapSize; } } return prevSrcMapping; default: return NULL; } } void EXPORT_CALL lou_free () { ChainEntry *currentEntry; ChainEntry *previousEntry; if (logFile != NULL) fclose (logFile); if (tableChain != NULL) { currentEntry = tableChain; while (currentEntry) { free (currentEntry->table); previousEntry = currentEntry; currentEntry = currentEntry->next; free (previousEntry); } tableChain = NULL; lastTrans = NULL; } if (typebuf != NULL) free (typebuf); typebuf = NULL; sizeTypebuf = 0; if (destSpacing != NULL) free (destSpacing); destSpacing = NULL; sizeDestSpacing = 0; if (passbuf1 != NULL) free (passbuf1); passbuf1 = NULL; sizePassbuf1 = 0; if (passbuf2 != NULL) free (passbuf2); passbuf2 = NULL; sizePassbuf2 = 0; if (srcMapping != NULL) free (srcMapping); srcMapping = NULL; sizeSrcMapping = 0; if (prevSrcMapping != NULL) free (prevSrcMapping); prevSrcMapping = NULL; sizePrevSrcMapping = 0; opcodeLengths[0] = 0; } char *EXPORT_CALL lou_version () { static char *version = PACKAGE_VERSION; return version; } int EXPORT_CALL lou_charSize () { return CHARSIZE; } int EXPORT_CALL lou_compileString (const char *tableList, const char *inString) { if (!lou_getTable (tableList)) return 0; return compileString (inString); } /** * This procedure provides a target for cals that serve as breakpoints * for gdb. */ /* char *EXPORT_CALL lou_getTablePaths () { static char paths[MAXSTRING]; char *pathList; strcpy (paths, tablePath); strcat (paths, ","); pathList = getenv ("LOUIS_TABLEPATH"); if (pathList) { strcat (paths, pathList); strcat (paths, ","); } pathList = getcwd (scratchBuf, MAXSTRING); if (pathList) { strcat (paths, pathList); strcat (paths, ","); } pathList = lou_getDataPath (); if (pathList) { strcat (paths, pathList); strcat (paths, ","); } #ifdef _WIN32 strcpy (paths, lou_getProgramPath ()); strcat (paths, "\\share\\liblouss\\tables\\"); #else strcpy (paths, TABLESDIR); #endif return paths; } */ void debugHook () { char *hook = "debug hook"; printf ("%s\n", hook); } liblouis-2.5.3/liblouis/Makefile.am0000664000175000017500000000073512161041522014143 00000000000000liblouisincludedir = $(includedir)/liblouis liblouisinclude_HEADERS = \ liblouis.h \ louis.h lib_LTLIBRARIES = liblouis.la AM_CPPFLAGS = -DTABLESDIR=\""$(datadir)"/liblouis/tables\" liblouis_la_LDFLAGS = \ -version-info $(LIBLOUIS_CURRENT):$(LIBLOUIS_REVISION):$(LIBLOUIS_AGE) -no-undefined \ $(LTLIBINTL) liblouis_la_SOURCES = \ lou_backTranslateString.c \ compileTranslationTable.c \ louis.h \ liblouis.h \ lou_translateString.c \ transcommon.ci \ wrappers.c liblouis-2.5.3/liblouis/liblouis.h.in0000664000175000017500000001210712161041522014503 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . Maintained by John J. Boyer john.boyer@abilitiessoft.com */ #ifndef __LIBLOUIS_H_ #define __LIBLOUIS_H_ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define widechar @WIDECHAR_TYPE@ #ifdef _WIN32 #define EXPORT_CALL __stdcall char * EXPORT_CALL lou_getProgramPath (); #else #define EXPORT_CALL #endif typedef enum { plain_text = 0, italic = 1, underline = 2, bold = 4, computer_braille = 8 } typeforms; #define comp_emph_1 italic #define comp_emph_2 underline #define comp_emph_3 bold typedef enum { noContractions = 1, compbrlAtCursor = 2, dotsIO = 4, comp8Dots = 8, pass1Only = 16, compbrlLeftCursor = 32, otherTrans = 64, ucBrl = 128 } translationModes; char * EXPORT_CALL lou_version (); int EXPORT_CALL lou_charSize (); /* Return the size of widechar */ int EXPORT_CALL lou_translateString (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode); int EXPORT_CALL lou_translate (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); int EXPORT_CALL lou_translatePrehyphenated (const char* tableList, const widechar* inbuf, int* inlen, widechar* outbuf, int* outlen, char* typeform, char* spacing, int* outputPos, int* inputPos, int* cursorPos, char* inputHyphens, char* outputHyphens, int mode); int EXPORT_CALL lou_hyphenate (const char *tableList, const widechar *inbuf, int inlen, char *hyphens, int mode); int EXPORT_CALL lou_dotsToChar (const char *tableList, widechar *inbuf, widechar *outbuf, int length, int mode); int EXPORT_CALL lou_charToDots (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int mode); int EXPORT_CALL lou_backTranslateString (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode); int EXPORT_CALL lou_backTranslate (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); void EXPORT_CALL lou_logPrint (char *format, ...); /* prints error messages to a file */ void EXPORT_CALL lou_logFile (const char *filename); /* Specifies the name of the file to be used by lou_logPrint. If it is * not used, this file is stderr*/ int EXPORT_CALL lou_readCharFromFile (const char *fileName, int *mode); /*Read a character from a file, whether big-encian, little-endian or * ASCII8, and return it as an integer. EOF at end of file. Mode = 1 on * first call, any other value thereafter*/ void EXPORT_CALL lou_logEnd (); /* Closes the log file so it can be read by other functions. */ void * EXPORT_CALL lou_getTable (const char *tableList); /* This function checks a table for errors. If none are found it loads * the table into memory and returns a pointer to it. if errors are found * it returns a null pointer. It is called by lou_translateString and * lou_backTranslateString and also by functions in liblouisxml */ int EXPORT_CALL lou_compileString (const char *tableList, const char *inString); char * EXPORT_CALL lou_setDataPath (char *path); /* Set the path used for searching for tables and liblouisutdml files. * Overrides the installation path. */ char * EXPORT_CALL lou_getDataPath (); /* Get the path set in the previous function. */ // char EXPORT_CALL * lou_getTablePaths (); /* Get a list of paths actually used in seraching for tables*/ void EXPORT_CALL lou_free (); /* This function should be called at the end of * the application to free all memory allocated by liblouis. */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /*LibLOUIS_H_ */ liblouis-2.5.3/liblouis/lou_backTranslateString.c0000664000175000017500000011635312161041522017103 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com All rights reserved This file is free software; you can redistribute it and/or modify it under the terms of the Lesser or Library GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file 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 Library GNU General Public License for more details. You should have received a copy of the Library GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Maintained by John J. Boyer john.boyer@jjb-software.com */ #include #include #include #include "louis.h" static const TranslationTableHeader *table; /*translation table */ static int src, srcmax; static int dest, destmax; static int mode; static int currentPass = 1; static widechar *currentInput; static widechar *passbuf1 = NULL; static widechar *passbuf2 = NULL; static widechar *currentOutput; static unsigned char *typebuf = NULL; static int *srcMapping = NULL; static char *spacebuf; static int backTranslateString (void); static int makeCorrections (void); static int translatePass (void); static int *outputPositions; static int *inputPositions; static int cursorPosition; static int cursorStatus; int EXPORT_CALL lou_backTranslateString (const char *tableList, const widechar * inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int modex) { return lou_backTranslate (tableList, inbuf, inlen, outbuf, outlen, typeform, spacing, NULL, NULL, NULL, modex); } int EXPORT_CALL lou_backTranslate (const char *tableList, const widechar * inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int modex) { int k; int goodTrans = 1; if (tableList == NULL || inbuf == NULL || inlen == NULL || outbuf == NULL || outlen == NULL) return 0; if ((modex & otherTrans)) return other_backTranslate (tableList, inbuf, inlen, outbuf, outlen, typeform, spacing, outputPos, inputPos, cursorPos, modex); table = lou_getTable (tableList); if (table == NULL) return 0; srcmax = 0; while (srcmax < *inlen && inbuf[srcmax]) srcmax++; destmax = *outlen; typebuf = (unsigned char *) typeform; spacebuf = spacing; outputPositions = outputPos; if (outputPos != NULL) for (k = 0; k < srcmax; k++) outputPos[k] = -1; inputPositions = inputPos; if (cursorPos != NULL) cursorPosition = *cursorPos; else cursorPosition = -1; cursorStatus = 0; mode = modex; if (!(passbuf1 = liblouis_allocMem (alloc_passbuf1, srcmax, destmax))) return 0; if (typebuf != NULL) memset (typebuf, '0', destmax); if (spacebuf != NULL) memset (spacebuf, '*', destmax); for (k = 0; k < srcmax; k++) if ((mode & dotsIO)) passbuf1[k] = inbuf[k] | 0x8000; else passbuf1[k] = getDotsForChar (inbuf[k]); passbuf1[srcmax] = getDotsForChar (' '); if (!(srcMapping = liblouis_allocMem (alloc_srcMapping, srcmax, destmax))) return 0; for (k = 0; k <= srcmax; k++) srcMapping[k] = k; srcMapping[srcmax] = srcmax; currentInput = passbuf1; if ((!(mode & pass1Only)) && (table->numPasses > 1 || table->corrections)) { if (!(passbuf2 = liblouis_allocMem (alloc_passbuf2, srcmax, destmax))) return 0; } currentPass = table->numPasses; if ((mode & pass1Only)) { currentOutput = outbuf; goodTrans = backTranslateString (); } else switch (table->numPasses + (table->corrections << 3)) { case 1: currentOutput = outbuf; goodTrans = backTranslateString (); break; case 2: currentOutput = passbuf2; goodTrans = translatePass (); if (!goodTrans) break; currentPass--; srcmax = dest; currentInput = passbuf2; currentOutput = outbuf; goodTrans = backTranslateString (); break; case 3: currentOutput = passbuf2; goodTrans = translatePass (); if (!goodTrans) break; currentPass--; srcmax = dest; currentInput = passbuf2; currentOutput = passbuf1; goodTrans = translatePass (); if (!goodTrans) break; currentInput = passbuf1; currentOutput = outbuf; currentPass--; srcmax = src; goodTrans = backTranslateString (); break; case 4: currentOutput = passbuf2; goodTrans = translatePass (); if (!goodTrans) break; currentPass--; srcmax = dest; currentInput = passbuf2; currentOutput = passbuf1; goodTrans = translatePass (); if (!goodTrans) break; currentInput = passbuf1; currentOutput = passbuf2; srcmax = dest; currentPass--; goodTrans = translatePass (); if (!goodTrans) break; currentInput = passbuf2; currentOutput = outbuf; currentPass--; srcmax = dest; goodTrans = backTranslateString (); break; case 9: currentOutput = passbuf2; goodTrans = backTranslateString (); if (!goodTrans) break; currentInput = passbuf2; currentOutput = outbuf; currentPass--; srcmax = dest; goodTrans = makeCorrections (); break; case 10: currentOutput = passbuf2; goodTrans = translatePass (); if (!goodTrans) break; currentPass--; srcmax = dest; currentInput = passbuf2; currentOutput = passbuf1; goodTrans = backTranslateString (); if (!goodTrans) break; currentInput = passbuf1; currentOutput = outbuf; currentPass--; srcmax = dest; goodTrans = makeCorrections (); break; case 11: currentOutput = passbuf2; goodTrans = translatePass (); if (!goodTrans) break; currentPass--; srcmax = dest; currentInput = passbuf2; currentOutput = passbuf1; goodTrans = translatePass (); if (!goodTrans) break; currentInput = passbuf1; currentOutput = passbuf2; currentPass--; srcmax = dest; goodTrans = backTranslateString (); if (!goodTrans) break; currentInput = passbuf2; currentOutput = outbuf; currentPass--; srcmax = dest; goodTrans = makeCorrections (); break; case 12: currentOutput = passbuf2; goodTrans = translatePass (); if (!goodTrans) break; currentPass--; srcmax = dest; currentInput = passbuf2; currentOutput = passbuf1; goodTrans = translatePass (); if (!goodTrans) break; currentInput = passbuf1; currentOutput = passbuf2; srcmax = dest; currentPass--; goodTrans = translatePass (); if (!goodTrans) break; currentInput = passbuf2; currentOutput = passbuf1; currentPass--; srcmax = dest; goodTrans = backTranslateString (); if (!goodTrans) break; currentInput = passbuf1; currentOutput = outbuf; currentPass--; srcmax = dest; goodTrans = makeCorrections (); break; default: break; } if (src < *inlen) *inlen = srcMapping[src]; *outlen = dest; if (outputPos != NULL) { int lastpos = 0; for (k = 0; k < *inlen; k++) if (outputPos[k] == -1) outputPos[k] = lastpos; else lastpos = outputPos[k]; } if (cursorPos != NULL) *cursorPos = cursorPosition; return goodTrans; } static char currentTypeform = plain_text; static int nextUpper = 0; static int allUpper = 0; static int itsANumber = 0; static int itsALetter = 0; static int itsCompbrl = 0; static int currentCharslen; static int currentDotslen; /*length of current find string */ static int previousSrc; static TranslationTableOpcode currentOpcode; static TranslationTableOpcode previousOpcode; static const TranslationTableRule *currentRule; /*pointer to current rule in table */ static TranslationTableCharacter * back_findCharOrDots (widechar c, int m) { /*Look up character or dot pattern in the appropriate * table. */ static TranslationTableCharacter noChar = { 0, 0, 0, CTC_Space, 32, 32, 32 }; static TranslationTableCharacter noDots = { 0, 0, 0, CTC_Space, B16, B16, B16 }; TranslationTableCharacter *notFound; TranslationTableCharacter *character; TranslationTableOffset bucket; unsigned long int makeHash = (unsigned long int) c % HASHNUM; if (m == 0) { bucket = table->characters[makeHash]; notFound = &noChar; } else { bucket = table->dots[makeHash]; notFound = &noDots; } while (bucket) { character = (TranslationTableCharacter *) & table->ruleArea[bucket]; if (character->realchar == c) return character; bucket = character->next; } notFound->realchar = notFound->uppercase = notFound->lowercase = c; return notFound; } static int checkAttr (const widechar c, const TranslationTableCharacterAttributes a, int m) { static widechar prevc = 0; static TranslationTableCharacterAttributes preva = 0; if (c != prevc) { preva = (back_findCharOrDots (c, m))->attributes; prevc = c; } return ((preva & a) ? 1 : 0); } static int compareDots (const widechar * address1, const widechar * address2, int count) { int k; if (!count) return 0; for (k = 0; k < count; k++) if (address1[k] != address2[k]) return 0; return 1; } static widechar before, after; static TranslationTableCharacterAttributes beforeAttributes; static TranslationTableCharacterAttributes afterAttributes; static void back_setBefore (void) { before = (dest == 0) ? ' ' : currentOutput[dest - 1]; beforeAttributes = (back_findCharOrDots (before, 0))->attributes; } static void back_setAfter (int length) { after = (src + length < srcmax) ? currentInput[src + length] : ' '; afterAttributes = (back_findCharOrDots (after, 1))->attributes; } static int isBegWord (void) { /*See if this is really the beginning of a word. Look at what has * already been translated. */ int k; if (dest == 0) return 1; for (k = dest - 1; k >= 0; k--) { const TranslationTableCharacter *ch = back_findCharOrDots (currentOutput[k], 0); if (ch->attributes & CTC_Space) break; if (ch->attributes & (CTC_Letter | CTC_Digit | CTC_Math | CTC_Sign)) return 0; } return 1; } static int isEndWord (void) { /*See if this is really the end of a word. */ int k; const TranslationTableCharacter *dots; TranslationTableOffset testRuleOffset; TranslationTableRule *testRule; for (k = src + currentDotslen; k < srcmax; k++) { int postpuncFound = 0; int TranslationFound = 0; dots = back_findCharOrDots (currentInput[k], 1); testRuleOffset = dots->otherRules; if (dots->attributes & CTC_Space) break; if (dots->attributes & CTC_Letter) return 0; while (testRuleOffset) { testRule = (TranslationTableRule *) & table->ruleArea[testRuleOffset]; if (testRule->charslen > 1) TranslationFound = 1; if (testRule->opcode == CTO_PostPunc) postpuncFound = 1; if (testRule->opcode == CTO_Hyphen) return 1; testRuleOffset = testRule->dotsnext; } if (TranslationFound && !postpuncFound) return 0; } return 1; } static int findBrailleIndicatorRule (TranslationTableOffset offset) { if (!offset) return 0; currentRule = (TranslationTableRule *) & table->ruleArea[offset]; currentOpcode = currentRule->opcode; currentDotslen = currentRule->dotslen; return 1; } static int doingMultind = 0; static const TranslationTableRule *multindRule; static int handleMultind (void) { /*Handle multille braille indicators*/ int found = 0; if (!doingMultind) return 0; switch (multindRule->charsdots[multindRule->charslen - doingMultind]) { case CTO_CapitalSign: found = findBrailleIndicatorRule (table->capitalSign); break; case CTO_BeginCapitalSign: found = findBrailleIndicatorRule (table->beginCapitalSign); break; case CTO_EndCapitalSign: found = findBrailleIndicatorRule (table->endCapitalSign); break; case CTO_LetterSign: found = findBrailleIndicatorRule (table->letterSign); break; case CTO_NumberSign: found = findBrailleIndicatorRule (table->numberSign); break; case CTO_LastWordItalBefore: found = findBrailleIndicatorRule (table->lastWordItalBefore); break; case CTO_BegItal: found = findBrailleIndicatorRule (table->firstLetterItal); break; case CTO_LastLetterItal: found = findBrailleIndicatorRule (table->lastLetterItal); break; case CTO_LastWordBoldBefore: found = findBrailleIndicatorRule (table->lastWordBoldBefore); break; case CTO_FirstLetterBold: found = findBrailleIndicatorRule (table->firstLetterBold); break; case CTO_LastLetterBold: found = findBrailleIndicatorRule (table->lastLetterBold); break; case CTO_LastWordUnderBefore: found = findBrailleIndicatorRule (table->lastWordUnderBefore); break; case CTO_FirstLetterUnder: found = findBrailleIndicatorRule (table->firstLetterUnder); break; case CTO_EndUnder: found = findBrailleIndicatorRule (table->lastLetterUnder); break; case CTO_BegComp: found = findBrailleIndicatorRule (table->begComp); break; case CTO_EndComp: found = findBrailleIndicatorRule (table->endComp); break; default: found = 0; break; } doingMultind--; return found; } static int passVariables[NUMVAR]; static int passSrc; static const widechar *passInstructions; static int passIC; /*Instruction counter */ static int startMatch; static int endMatch; static int startReplace; static int endReplace; static int back_passDoTest (void); static int back_passDoAction (void); static int findAttribOrSwapRules (void) { TranslationTableOffset ruleOffset; if (src == previousSrc) return 0; ruleOffset = table->attribOrSwapRules[currentPass]; currentCharslen = 0; while (ruleOffset) { currentRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; currentOpcode = currentRule->opcode; if (back_passDoTest ()) return 1; ruleOffset = currentRule->charsnext; } return 0; } static void back_selectRule (void) { /*check for valid back-translations */ int length = srcmax - src; TranslationTableOffset ruleOffset = 0; static TranslationTableRule pseudoRule = { 0 }; unsigned long int makeHash = 0; const TranslationTableCharacter *dots = back_findCharOrDots (currentInput[src], 1); int tryThis; if (handleMultind ()) return; for (tryThis = 0; tryThis < 3; tryThis++) { switch (tryThis) { case 0: if (length < 2 || (itsANumber && (dots->attributes & CTC_LitDigit))) break; /*Hash function optimized for backward translation */ makeHash = (unsigned long int) dots->lowercase << 8; makeHash += (unsigned long int) (back_findCharOrDots (currentInput[src + 1], 1))->lowercase; makeHash %= HASHNUM; ruleOffset = table->backRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = dots->otherRules; if (itsANumber) { while (ruleOffset) { currentRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; if (currentRule->opcode == CTO_LitDigit) { currentOpcode = currentRule->opcode; currentDotslen = currentRule->dotslen; return; } ruleOffset = currentRule->dotsnext; } ruleOffset = dots->otherRules; } break; case 2: /*No rule found */ currentRule = &pseudoRule; currentOpcode = pseudoRule.opcode = CTO_None; currentDotslen = pseudoRule.dotslen = 1; pseudoRule.charsdots[0] = currentInput[src]; pseudoRule.charslen = 0; return; break; } while (ruleOffset) { currentRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; currentOpcode = currentRule->opcode; currentDotslen = currentRule->dotslen; if (((currentDotslen <= length) && compareDots (¤tInput[src], ¤tRule->charsdots[currentRule->charslen], currentDotslen))) { /* check this rule */ back_setAfter (currentDotslen); if ((!currentRule->after || (beforeAttributes & currentRule->after)) && (!currentRule->before || (afterAttributes & currentRule->before))) { switch (currentOpcode) { /*check validity of this Translation */ case CTO_Space: case CTO_Digit: case CTO_Letter: case CTO_UpperCase: case CTO_LowerCase: case CTO_Punctuation: case CTO_Math: case CTO_Sign: case CTO_Always: case CTO_ExactDots: case CTO_NoCross: case CTO_Repeated: case CTO_Replace: case CTO_Hyphen: return; case CTO_LitDigit: if (itsANumber) return; break; case CTO_CapitalRule: case CTO_BeginCapitalRule: case CTO_EndCapitalRule: case CTO_FirstLetterItalRule: case CTO_LastLetterItalRule: case CTO_LastWordBoldBeforeRule: case CTO_LastLetterBoldRule: case CTO_FirstLetterUnderRule: case CTO_LastLetterUnderRule: case CTO_NumberRule: case CTO_BegCompRule: case CTO_EndCompRule: return; case CTO_LetterRule: if (!(beforeAttributes & CTC_Letter) && (afterAttributes & CTC_Letter)) return; break; case CTO_MultInd: doingMultind = currentDotslen; multindRule = currentRule; if (handleMultind ()) return; break; case CTO_LargeSign: return; case CTO_WholeWord: if (itsALetter) break; case CTO_Contraction: if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && ((afterAttributes & CTC_Space) || isEndWord ())) return; break; case CTO_LowWord: if ((beforeAttributes & CTC_Space) && (afterAttributes & CTC_Space) && (previousOpcode != CTO_JoinableWord)) return; break; case CTO_JoinNum: case CTO_JoinableWord: if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && !((afterAttributes & CTC_Space))) return; break; case CTO_SuffixableWord: if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && ((afterAttributes & (CTC_Space | CTC_Letter)) || isEndWord ())) return; break; case CTO_PrefixableWord: if ((beforeAttributes & (CTC_Space | CTC_Letter | CTC_Punctuation)) && isEndWord ()) return; break; case CTO_BegWord: if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && (!isEndWord ())) return; break; case CTO_BegMidWord: if ((beforeAttributes & (CTC_Letter | CTC_Space | CTC_Punctuation)) && (!isEndWord ())) return; break; case CTO_PartWord: if (beforeAttributes & CTC_Letter || !isEndWord ()) return; break; case CTO_MidWord: if (beforeAttributes & CTC_Letter && !isEndWord ()) return; break; case CTO_MidEndWord: if ((beforeAttributes & CTC_Letter)) return; break; case CTO_EndWord: if ((beforeAttributes & CTC_Letter) && isEndWord ()) return; break; case CTO_BegNum: if (beforeAttributes & (CTC_Space | CTC_Punctuation) && (afterAttributes & (CTC_LitDigit | CTC_Sign))) return; break; case CTO_MidNum: if (beforeAttributes & CTC_Digit && afterAttributes & CTC_LitDigit) return; break; case CTO_EndNum: if (itsANumber && !(afterAttributes & CTC_LitDigit)) return; break; case CTO_DecPoint: if (afterAttributes & (CTC_Digit | CTC_LitDigit)) return; break; case CTO_PrePunc: if (isBegWord ()) return; break; case CTO_PostPunc: if (isEndWord ()) return; break; default: break; } } } /*Done with checking this rule */ ruleOffset = currentRule->dotsnext; } } } static int putchars (const widechar * chars, int count) { int k = 0; if (!count || (dest + count) > destmax) return 0; if (nextUpper) { currentOutput[dest++] = (back_findCharOrDots (chars[k++], 0))->uppercase; nextUpper = 0; } if (!allUpper) { memcpy (¤tOutput[dest], &chars[k], CHARSIZE * (count - k)); dest += count - k; } else for (; k < count; k++) currentOutput[dest++] = (back_findCharOrDots (chars[k], 0))->uppercase; return 1; } static int back_updatePositions (const widechar * outChars, int inLength, int outLength) { int k; if ((dest + outLength) > destmax || (src + inLength) > srcmax) return 0; if (!cursorStatus && cursorPosition >= src && cursorPosition < (src + inLength)) { cursorPosition = dest + outLength / 2; cursorStatus = 1; } if (inputPositions != NULL || outputPositions != NULL) { if (outLength <= inLength) { for (k = 0; k < outLength; k++) { if (inputPositions != NULL) inputPositions[dest + k] = srcMapping[src + k]; if (outputPositions != NULL) outputPositions[srcMapping[src + k]] = dest + k; } for (k = outLength; k < inLength; k++) if (outputPositions != NULL) outputPositions[srcMapping[src + k]] = dest + outLength - 1; } else { for (k = 0; k < inLength; k++) { if (inputPositions != NULL) inputPositions[dest + k] = srcMapping[src + k]; if (outputPositions != NULL) outputPositions[srcMapping[src + k]] = dest + k; } for (k = inLength; k < outLength; k++) if (inputPositions != NULL) inputPositions[dest + k] = srcMapping[src + inLength - 1]; } } return putchars (outChars, outLength); } static int undefinedDots (widechar dots) { /*Print out dot numbers */ widechar buffer[20]; int k = 1; buffer[0] = '\\'; if ((dots & B1)) buffer[k++] = '1'; if ((dots & B2)) buffer[k++] = '2'; if ((dots & B3)) buffer[k++] = '3'; if ((dots & B4)) buffer[k++] = '4'; if ((dots & B5)) buffer[k++] = '5'; if ((dots & B6)) buffer[k++] = '6'; if ((dots & B7)) buffer[k++] = '7'; if ((dots & B8)) buffer[k++] = '8'; if ((dots & B9)) buffer[k++] = '9'; if ((dots & B10)) buffer[k++] = 'A'; if ((dots & B11)) buffer[k++] = 'B'; if ((dots & B12)) buffer[k++] = 'C'; if ((dots & B13)) buffer[k++] = 'D'; if ((dots & B14)) buffer[k++] = 'E'; if ((dots & B15)) buffer[k++] = 'F'; buffer[k++] = '/'; if ((dest + k) > destmax) return 0; memcpy (¤tOutput[dest], buffer, k * CHARSIZE); dest += k; return 1; } static int putCharacter (widechar dots) { /*Output character(s) corresponding to a Unicode braille Character*/ TranslationTableOffset offset = (back_findCharOrDots (dots, 0))->definitionRule; if (offset) { widechar c; const TranslationTableRule *rule = (TranslationTableRule *) & table->ruleArea[offset]; if (rule->charslen) return back_updatePositions (&rule->charsdots[0], rule->dotslen, rule->charslen); c = getCharFromDots (dots); return back_updatePositions (&c, 1, 1); } return undefinedDots (dots); } static int putCharacters (const widechar * characters, int count) { int k; for (k = 0; k < count; k++) if (!putCharacter (characters[k])) return 0; return 1; } static int insertSpace (void) { widechar c = ' '; if (!back_updatePositions (&c, 1, 1)) return 0; if (spacebuf) spacebuf[dest - 1] = '1'; return 1; } static int compareChars (const widechar * address1, const widechar * address2, int count, int m) { int k; if (!count) return 0; for (k = 0; k < count; k++) if ((back_findCharOrDots (address1[k], m))->lowercase != (back_findCharOrDots (address2[k], m))->lowercase) return 0; return 1; } static int makeCorrections (void) { int k; if (!table->corrections) return 1; src = 0; dest = 0; for (k = 0; k < NUMVAR; k++) passVariables[k] = 0; while (src < srcmax) { int length = srcmax - src; const TranslationTableCharacter *character = back_findCharOrDots (currentInput[src], 0); const TranslationTableCharacter *character2; int tryThis = 0; if (!findAttribOrSwapRules ()) while (tryThis < 3) { TranslationTableOffset ruleOffset = 0; unsigned long int makeHash = 0; switch (tryThis) { case 0: if (!(length >= 2)) break; makeHash = (unsigned long int) character->lowercase << 8; character2 = back_findCharOrDots (currentInput[src + 1], 0); makeHash += (unsigned long int) character2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = character->otherRules; break; case 2: /*No rule found */ currentOpcode = CTO_Always; ruleOffset = 0; break; } while (ruleOffset) { currentRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; currentOpcode = currentRule->opcode; currentCharslen = currentRule->charslen; if (tryThis == 1 || (currentCharslen <= length && compareChars (¤tRule-> charsdots[0], ¤tInput[src], currentCharslen, 0))) { if (currentOpcode == CTO_Correct && back_passDoTest ()) { tryThis = 4; break; } } ruleOffset = currentRule->charsnext; } tryThis++; } switch (currentOpcode) { case CTO_Always: if (dest >= destmax) goto failure; srcMapping[dest] = srcMapping[src]; currentOutput[dest++] = currentInput[src++]; break; case CTO_Correct: if (!back_passDoAction ()) goto failure; src = endReplace; break; default: break; } } failure: return 1; } static int backTranslateString (void) { /*Back translation */ int srcword = 0; int destword = 0; /* last word translated */ nextUpper = allUpper = itsANumber = itsALetter = itsCompbrl = 0; previousOpcode = CTO_None; src = dest = 0; while (src < srcmax) { /*the main translation loop */ back_setBefore (); back_selectRule (); /* processing before replacement */ switch (currentOpcode) { case CTO_Hyphen: if (isEndWord ()) itsANumber = 0; break; case CTO_LargeSign: if (previousOpcode == CTO_LargeSign) if (!insertSpace ()) goto failure; break; case CTO_CapitalRule: nextUpper = 1; src += currentDotslen; continue; break; case CTO_BeginCapitalRule: allUpper = 1; src += currentDotslen; continue; break; case CTO_EndCapitalRule: allUpper = 0; src += currentDotslen; continue; break; case CTO_LetterRule: itsALetter = 1; itsANumber = 0; src += currentDotslen; continue; break; case CTO_NumberRule: itsANumber = 1; src += currentDotslen; continue; break; case CTO_FirstLetterItalRule: currentTypeform = italic; src += currentDotslen; continue; break; case CTO_LastLetterItalRule: currentTypeform = plain_text; src += currentDotslen; continue; break; case CTO_FirstLetterBoldRule: currentTypeform = bold; src += currentDotslen; continue; break; case CTO_LastLetterBoldRule: currentTypeform = plain_text; src += currentDotslen; continue; break; case CTO_FirstLetterUnderRule: currentTypeform = underline; src += currentDotslen; continue; break; case CTO_LastLetterUnderRule: currentTypeform = plain_text; src += currentDotslen; continue; break; case CTO_BegCompRule: itsCompbrl = 1; currentTypeform = computer_braille; src += currentDotslen; continue; break; case CTO_EndCompRule: itsCompbrl = 0; currentTypeform = plain_text; src += currentDotslen; continue; break; default: break; } /* replacement processing */ switch (currentOpcode) { case CTO_Replace: src += currentDotslen; if (!putCharacters (¤tRule->charsdots[0], currentRule->charslen)) goto failure; break; case CTO_None: if (!undefinedDots (currentInput[src])) goto failure; src++; break; case CTO_BegNum: itsANumber = 1; goto insertChars; case CTO_EndNum: itsANumber = 0; goto insertChars; case CTO_Space: itsANumber = allUpper = nextUpper = 0; default: insertChars: if (currentRule->charslen) { if (!back_updatePositions (¤tRule->charsdots[0], currentRule->dotslen, currentRule->charslen)) goto failure; src += currentDotslen; } else { int srclim = src + currentDotslen; while (1) { if (!putCharacter (currentInput[src])) goto failure; if (++src == srclim) break; } } } /* processing after replacement */ switch (currentOpcode) { case CTO_JoinNum: case CTO_JoinableWord: if (!insertSpace ()) goto failure; break; default: break; } if (((src > 0) && checkAttr (currentInput[src - 1], CTC_Space, 1) && (currentOpcode != CTO_JoinableWord))) { srcword = src; destword = dest; } if ((currentOpcode >= CTO_Always && currentOpcode <= CTO_None) || (currentOpcode >= CTO_Digit && currentOpcode <= CTO_LitDigit)) previousOpcode = currentOpcode; } /*end of translation loop */ failure: if (destword != 0 && src < srcmax && !checkAttr (currentInput[src], CTC_Space, 1)) { src = srcword; dest = destword; } if (src < srcmax) { while (checkAttr (currentInput[src], CTC_Space, 1)) if (++src == srcmax) break; } return 1; } /*translation completed */ /*Multipass translation*/ static int matchcurrentInput (void) { int k; int kk = passSrc; for (k = passIC + 2; k < passIC + 2 + passInstructions[passIC + 1]; k++) if (passInstructions[k] != currentInput[kk++]) return 0; return 1; } static int back_swapTest (void) { int curLen; int curTest; int curSrc = passSrc; TranslationTableOffset swapRuleOffset; TranslationTableRule *swapRule; swapRuleOffset = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; swapRule = (TranslationTableRule *) & table->ruleArea[swapRuleOffset]; for (curLen = 0; curLen < passInstructions[passIC] + 3; curLen++) { for (curTest = 0; curTest < swapRule->charslen; curTest++) { if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; } if (curTest == swapRule->charslen) return 0; curSrc++; } if (passInstructions[passIC + 2] == passInstructions[passIC + 3]) { passSrc = curSrc; return 1; } while (curLen < passInstructions[passIC + 4]) { for (curTest = 0; curTest < swapRule->charslen; curTest++) { if (currentInput[curSrc] != swapRule->charsdots[curTest]) break; } if (curTest < swapRule->charslen) if (curTest < swapRule->charslen) { passSrc = curSrc; return 1; } curSrc++; curLen++; } passSrc = curSrc; return 1; } static int back_swapReplace (int startSrc, int maxLen) { TranslationTableOffset swapRuleOffset; TranslationTableRule *swapRule; widechar *replacements; int curRep; int curPos; int lastPos = 0; int lastRep = 0; int curTest; int curSrc = startSrc; swapRuleOffset = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; swapRule = (TranslationTableRule *) & table->ruleArea[swapRuleOffset]; replacements = &swapRule->charsdots[swapRule->charslen]; while (curSrc < maxLen) { for (curTest = 0; curTest < swapRule->charslen; curTest++) { if (currentInput[curSrc] == swapRule->charsdots[curTest]) break; } if (curTest == swapRule->charslen) return curSrc; if (curTest >= lastRep) { curPos = lastPos; curRep = lastRep; } else { curPos = 0; curRep = 0; } while (curPos < swapRule->dotslen) { if (curRep == curTest) { int k; if ((dest + replacements[curPos] - 1) >= destmax) return 0; for (k = dest + replacements[curPos] - 2; k >= dest; --k) srcMapping[k] = srcMapping[curSrc]; memcpy (¤tOutput[dest], &replacements[curPos + 1], (replacements[curPos] - 1) * CHARSIZE); dest += replacements[curPos] - 1; lastPos = curPos; lastRep = curRep; break; } curRep++; curPos += replacements[curPos]; } curSrc++; } return curSrc; } static int back_passDoTest () { int k; int m; int not = 0; TranslationTableCharacterAttributes attributes; passSrc = src; passInstructions = ¤tRule->charsdots[currentCharslen]; passIC = 0; startMatch = passSrc; startReplace = -1; if (currentOpcode == CTO_Correct) m = 0; else m = 1; while (passIC < currentRule->dotslen) { int itsTrue = 1; if (passSrc > srcmax) return 0; switch (passInstructions[passIC]) { case pass_first: if (passSrc != 0) itsTrue = 0; passIC++; break; case pass_last: if (passSrc != (srcmax - 1)) itsTrue = 0; passIC++; break; case pass_lookback: passSrc -= passInstructions[passIC + 1]; if (passSrc < -1) passSrc = -1; passIC += 2; break; case pass_not: not = 1; passIC++; continue; case pass_string: case pass_dots: itsTrue = matchcurrentInput (); passSrc += passInstructions[passIC + 1]; passIC += passInstructions[passIC + 1] + 2; break; case pass_startReplace: startReplace = passSrc; passIC++; break; case pass_endReplace: endReplace = passSrc; passIC++; break; case pass_attributes: attributes = (passInstructions[passIC + 1] << 16) | passInstructions[passIC + 2]; for (k = 0; k < passInstructions[passIC + 3]; k++) itsTrue = (((back_findCharOrDots (currentInput[passSrc++], m)-> attributes & attributes)) ? 1 : 0); if (itsTrue) for (k = passInstructions[passIC + 3]; k < passInstructions[passIC + 4]; k++) { if (! (back_findCharOrDots (currentInput[passSrc], 1)-> attributes & attributes)) break; passSrc++; } passIC += 5; break; case pass_swap: itsTrue = back_swapTest (); passIC += 5; break; case pass_eq: if (passVariables[passInstructions[passIC + 1]] != passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_lt: if (passVariables[passInstructions[passIC + 1]] >= passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_gt: if (passVariables[passInstructions[passIC + 1]] <= passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_lteq: if (passVariables[passInstructions[passIC + 1]] > passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_gteq: if (passVariables[passInstructions[passIC + 1]] < passInstructions[passIC + 2]) itsTrue = 0; passIC += 3; break; case pass_endTest: passIC++; endMatch = passSrc; if (startReplace == -1) { startReplace = startMatch; endReplace = endMatch; } return 1; break; default: return 0; } if ((!not && !itsTrue) || (not && itsTrue)) return 0; not = 0; } return 1; } static int back_passDoAction (void) { int k; if ((dest + startReplace - startMatch) > destmax) return 0; memmove (&srcMapping[dest], &srcMapping[startMatch], (startReplace - startMatch) * sizeof (int)); for (k = startMatch; k < startReplace; k++) currentOutput[dest++] = currentInput[k]; while (passIC < currentRule->dotslen) switch (passInstructions[passIC]) { case pass_string: case pass_dots: if ((dest + passInstructions[passIC + 1]) > destmax) return 0; for (k = 0; k < passInstructions[passIC + 1]; ++k) srcMapping[dest + k] = startMatch; memcpy (¤tOutput[dest], &passInstructions[passIC + 2], passInstructions[passIC + 1] * CHARSIZE); dest += passInstructions[passIC + 1]; passIC += passInstructions[passIC + 1] + 2; break; case pass_eq: passVariables[passInstructions[passIC + 1]] = passInstructions[passIC + 2]; passIC += 3; break; case pass_hyphen: passVariables[passInstructions[passIC + 1]]--; if (passVariables[passInstructions[passIC + 1]] < 0) passVariables[passInstructions[passIC + 1]] = 0; passIC += 2; break; case pass_plus: passVariables[passInstructions[passIC + 1]]++; passIC += 2; break; case pass_swap: if (!back_swapReplace (startReplace, endReplace - startReplace)) return 0; passIC += 3; break; case pass_omit: passIC++; break; case pass_copy: dest -= startReplace - startMatch; k = endReplace - startReplace; if ((dest + k) > destmax) return 0; memmove (&srcMapping[dest], &srcMapping[startReplace], k * sizeof (int)); memcpy (¤tOutput[dest], ¤tInput[startReplace], k * CHARSIZE); dest += k; passIC++; endReplace = passSrc; break; default: return 0; } return 1; } static int checkDots (void) { int k; int kk = src; for (k = 0; k < currentCharslen; k++) if (currentRule->charsdots[k] != currentInput[kk++]) return 0; return 1; } static void for_passSelectRule (void) { int length = srcmax - src; const TranslationTableCharacter *dots; const TranslationTableCharacter *dots2; int tryThis; TranslationTableOffset ruleOffset = 0; unsigned long int makeHash = 0; if (findAttribOrSwapRules ()) return; dots = back_findCharOrDots (currentInput[src], 1); for (tryThis = 0; tryThis < 3; tryThis++) { switch (tryThis) { case 0: if (!(length >= 2)) break; /*Hash function optimized for forward translation */ makeHash = (unsigned long int) dots->lowercase << 8; dots2 = back_findCharOrDots (currentInput[src + 1], 1); makeHash += (unsigned long int) dots2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = dots->otherRules; break; case 2: /*No rule found */ currentOpcode = CTO_Always; return; break; } while (ruleOffset) { currentRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; currentOpcode = currentRule->opcode; currentCharslen = currentRule->charslen; if (tryThis == 1 || ((currentCharslen <= length) && checkDots ())) /* check this rule */ switch (currentOpcode) { /*check validity of this Translation */ case CTO_Pass2: if (currentPass != 2) break; if (!back_passDoTest ()) break; return; case CTO_Pass3: if (currentPass != 3) break; if (!back_passDoTest ()) break; return; case CTO_Pass4: if (currentPass != 4) break; if (!back_passDoTest ()) break; return; default: break; } ruleOffset = currentRule->charsnext; } } return; } static int translatePass (void) { int k; previousOpcode = CTO_None; src = dest = 0; for (k = 0; k < NUMVAR; k++) passVariables[k] = 0; while (src < srcmax) { /*the main multipass translation loop */ for_passSelectRule (); switch (currentOpcode) { case CTO_Pass2: case CTO_Pass3: case CTO_Pass4: if (!back_passDoAction ()) goto failure; src = endReplace; break; case CTO_Always: if ((dest + 1) > destmax) goto failure; srcMapping[dest] = srcMapping[src]; currentOutput[dest++] = currentInput[src++]; break; default: goto failure; } } srcMapping[dest] = srcMapping[src]; failure: if (src < srcmax) { while (checkAttr (currentInput[src], CTC_Space, 1)) if (++src == srcmax) break; } return 1; } liblouis-2.5.3/liblouis/liblouis.h0000664000175000017500000001211212161044163014076 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . Maintained by John J. Boyer john.boyer@abilitiessoft.com */ #ifndef __LIBLOUIS_H_ #define __LIBLOUIS_H_ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define widechar unsigned short int #ifdef _WIN32 #define EXPORT_CALL __stdcall char * EXPORT_CALL lou_getProgramPath (); #else #define EXPORT_CALL #endif typedef enum { plain_text = 0, italic = 1, underline = 2, bold = 4, computer_braille = 8 } typeforms; #define comp_emph_1 italic #define comp_emph_2 underline #define comp_emph_3 bold typedef enum { noContractions = 1, compbrlAtCursor = 2, dotsIO = 4, comp8Dots = 8, pass1Only = 16, compbrlLeftCursor = 32, otherTrans = 64, ucBrl = 128 } translationModes; char * EXPORT_CALL lou_version (); int EXPORT_CALL lou_charSize (); /* Return the size of widechar */ int EXPORT_CALL lou_translateString (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode); int EXPORT_CALL lou_translate (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); int EXPORT_CALL lou_translatePrehyphenated (const char* tableList, const widechar* inbuf, int* inlen, widechar* outbuf, int* outlen, char* typeform, char* spacing, int* outputPos, int* inputPos, int* cursorPos, char* inputHyphens, char* outputHyphens, int mode); int EXPORT_CALL lou_hyphenate (const char *tableList, const widechar *inbuf, int inlen, char *hyphens, int mode); int EXPORT_CALL lou_dotsToChar (const char *tableList, widechar *inbuf, widechar *outbuf, int length, int mode); int EXPORT_CALL lou_charToDots (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int mode); int EXPORT_CALL lou_backTranslateString (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode); int EXPORT_CALL lou_backTranslate (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); void EXPORT_CALL lou_logPrint (char *format, ...); /* prints error messages to a file */ void EXPORT_CALL lou_logFile (const char *filename); /* Specifies the name of the file to be used by lou_logPrint. If it is * not used, this file is stderr*/ int EXPORT_CALL lou_readCharFromFile (const char *fileName, int *mode); /*Read a character from a file, whether big-encian, little-endian or * ASCII8, and return it as an integer. EOF at end of file. Mode = 1 on * first call, any other value thereafter*/ void EXPORT_CALL lou_logEnd (); /* Closes the log file so it can be read by other functions. */ void * EXPORT_CALL lou_getTable (const char *tableList); /* This function checks a table for errors. If none are found it loads * the table into memory and returns a pointer to it. if errors are found * it returns a null pointer. It is called by lou_translateString and * lou_backTranslateString and also by functions in liblouisxml */ int EXPORT_CALL lou_compileString (const char *tableList, const char *inString); char * EXPORT_CALL lou_setDataPath (char *path); /* Set the path used for searching for tables and liblouisutdml files. * Overrides the installation path. */ char * EXPORT_CALL lou_getDataPath (); /* Get the path set in the previous function. */ // char EXPORT_CALL * lou_getTablePaths (); /* Get a list of paths actually used in seraching for tables*/ void EXPORT_CALL lou_free (); /* This function should be called at the end of * the application to free all memory allocated by liblouis. */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /*LibLOUIS_H_ */ liblouis-2.5.3/liblouis/Makefile.in0000664000175000017500000007201012161044153014152 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = liblouis DIST_COMMON = $(liblouisinclude_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/liblouis.h.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = liblouis.h CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" \ "$(DESTDIR)$(liblouisincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) liblouis_la_LIBADD = am_liblouis_la_OBJECTS = lou_backTranslateString.lo \ compileTranslationTable.lo lou_translateString.lo wrappers.lo liblouis_la_OBJECTS = $(am_liblouis_la_OBJECTS) liblouis_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(liblouis_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(liblouis_la_SOURCES) DIST_SOURCES = $(liblouis_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(liblouisinclude_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ liblouisincludedir = $(includedir)/liblouis liblouisinclude_HEADERS = \ liblouis.h \ louis.h lib_LTLIBRARIES = liblouis.la AM_CPPFLAGS = -DTABLESDIR=\""$(datadir)"/liblouis/tables\" liblouis_la_LDFLAGS = \ -version-info $(LIBLOUIS_CURRENT):$(LIBLOUIS_REVISION):$(LIBLOUIS_AGE) -no-undefined \ $(LTLIBINTL) liblouis_la_SOURCES = \ lou_backTranslateString.c \ compileTranslationTable.c \ louis.h \ liblouis.h \ lou_translateString.c \ transcommon.ci \ wrappers.c all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu liblouis/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu liblouis/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status liblouis/config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 liblouis.h: $(top_builddir)/config.status $(srcdir)/liblouis.h.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done liblouis.la: $(liblouis_la_OBJECTS) $(liblouis_la_DEPENDENCIES) $(EXTRA_liblouis_la_DEPENDENCIES) $(liblouis_la_LINK) -rpath $(libdir) $(liblouis_la_OBJECTS) $(liblouis_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compileTranslationTable.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_backTranslateString.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_translateString.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wrappers.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-liblouisincludeHEADERS: $(liblouisinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(liblouisinclude_HEADERS)'; test -n "$(liblouisincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(liblouisincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(liblouisincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(liblouisincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(liblouisincludedir)" || exit $$?; \ done uninstall-liblouisincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(liblouisinclude_HEADERS)'; test -n "$(liblouisincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(liblouisincludedir)'; $(am__uninstall_files_from_dir) ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) config.h installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(liblouisincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-liblouisincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libLTLIBRARIES \ uninstall-liblouisincludeHEADERS .MAKE: all install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-hdr \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libLTLIBRARIES \ install-liblouisincludeHEADERS install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-libLTLIBRARIES \ uninstall-liblouisincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/liblouis/config.h.in0000664000175000017500000004134312161044153014135 00000000000000/* liblouis/config.h.in. Generated from configure.ac by autoheader. */ #ifndef LOUISCFG_H #define LOUISCFG_H /* Define to a C preprocessor expression that evaluates to 1 or 0, depending whether the gnulib module malloc-gnu shall be considered present. */ #undef GNULIB_MALLOC_GNU /* Define to a C preprocessor expression that evaluates to 1 or 0, depending whether the gnulib module realloc-gnu shall be considered present. */ #undef GNULIB_REALLOC_GNU /* Define to 1 when the gnulib module getopt-gnu should be tested. */ #undef GNULIB_TEST_GETOPT_GNU /* Define to 1 when the gnulib module malloc-posix should be tested. */ #undef GNULIB_TEST_MALLOC_POSIX /* Define to 1 when the gnulib module realloc-posix should be tested. */ #undef GNULIB_TEST_REALLOC_POSIX /* Define to 1 if you have the declaration of `getenv', and to 0 if you don't. */ #undef HAVE_DECL_GETENV /* Define to 1 if you have the declaration of `program_invocation_name', and to 0 if you don't. */ #undef HAVE_DECL_PROGRAM_INVOCATION_NAME /* Define to 1 if you have the declaration of `program_invocation_short_name', and to 0 if you don't. */ #undef HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ #undef HAVE_DOPRNT /* Define to 1 if you have the header file. */ #undef HAVE_GETOPT_H /* Define to 1 if you have the `getopt_long_only' function. */ #undef HAVE_GETOPT_LONG_ONLY /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if your system has a GNU libc compatible 'malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC_GNU /* Define if the 'malloc' function is POSIX compliant. */ #undef HAVE_MALLOC_POSIX /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET /* Define to 1 if atoll is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ATOLL /* Define to 1 if canonicalize_file_name is declared even after undefining macros. */ #undef HAVE_RAW_DECL_CANONICALIZE_FILE_NAME /* Define to 1 if chdir is declared even after undefining macros. */ #undef HAVE_RAW_DECL_CHDIR /* Define to 1 if chown is declared even after undefining macros. */ #undef HAVE_RAW_DECL_CHOWN /* Define to 1 if dup is declared even after undefining macros. */ #undef HAVE_RAW_DECL_DUP /* Define to 1 if dup2 is declared even after undefining macros. */ #undef HAVE_RAW_DECL_DUP2 /* Define to 1 if dup3 is declared even after undefining macros. */ #undef HAVE_RAW_DECL_DUP3 /* Define to 1 if endusershell is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ENDUSERSHELL /* Define to 1 if environ is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ENVIRON /* Define to 1 if euidaccess is declared even after undefining macros. */ #undef HAVE_RAW_DECL_EUIDACCESS /* Define to 1 if faccessat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FACCESSAT /* Define to 1 if fchdir is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FCHDIR /* Define to 1 if fchownat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FCHOWNAT /* Define to 1 if fdatasync is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FDATASYNC /* Define to 1 if fsync is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FSYNC /* Define to 1 if ftruncate is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FTRUNCATE /* Define to 1 if getcwd is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETCWD /* Define to 1 if getdomainname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETDOMAINNAME /* Define to 1 if getdtablesize is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETDTABLESIZE /* Define to 1 if getgroups is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETGROUPS /* Define to 1 if gethostname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETHOSTNAME /* Define to 1 if getloadavg is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETLOADAVG /* Define to 1 if getlogin is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETLOGIN /* Define to 1 if getlogin_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETLOGIN_R /* Define to 1 if getpagesize is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETPAGESIZE /* Define to 1 if getsubopt is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETSUBOPT /* Define to 1 if getusershell is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETUSERSHELL /* Define to 1 if grantpt is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GRANTPT /* Define to 1 if group_member is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GROUP_MEMBER /* Define to 1 if initstate is declared even after undefining macros. */ #undef HAVE_RAW_DECL_INITSTATE /* Define to 1 if initstate_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_INITSTATE_R /* Define to 1 if isatty is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ISATTY /* Define to 1 if lchown is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LCHOWN /* Define to 1 if link is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LINK /* Define to 1 if linkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LINKAT /* Define to 1 if lseek is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LSEEK /* Define to 1 if mkdtemp is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MKDTEMP /* Define to 1 if mkostemp is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MKOSTEMP /* Define to 1 if mkostemps is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MKOSTEMPS /* Define to 1 if mkstemp is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MKSTEMP /* Define to 1 if mkstemps is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MKSTEMPS /* Define to 1 if pipe is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PIPE /* Define to 1 if pipe2 is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PIPE2 /* Define to 1 if posix_openpt is declared even after undefining macros. */ #undef HAVE_RAW_DECL_POSIX_OPENPT /* Define to 1 if pread is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PREAD /* Define to 1 if ptsname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PTSNAME /* Define to 1 if ptsname_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PTSNAME_R /* Define to 1 if pwrite is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PWRITE /* Define to 1 if random is declared even after undefining macros. */ #undef HAVE_RAW_DECL_RANDOM /* Define to 1 if random_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_RANDOM_R /* Define to 1 if readlink is declared even after undefining macros. */ #undef HAVE_RAW_DECL_READLINK /* Define to 1 if readlinkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_READLINKAT /* Define to 1 if realpath is declared even after undefining macros. */ #undef HAVE_RAW_DECL_REALPATH /* Define to 1 if rmdir is declared even after undefining macros. */ #undef HAVE_RAW_DECL_RMDIR /* Define to 1 if rpmatch is declared even after undefining macros. */ #undef HAVE_RAW_DECL_RPMATCH /* Define to 1 if setenv is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETENV /* Define to 1 if sethostname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETHOSTNAME /* Define to 1 if setstate is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETSTATE /* Define to 1 if setstate_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETSTATE_R /* Define to 1 if setusershell is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETUSERSHELL /* Define to 1 if sleep is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SLEEP /* Define to 1 if srandom is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SRANDOM /* Define to 1 if srandom_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SRANDOM_R /* Define to 1 if strtod is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRTOD /* Define to 1 if strtoll is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRTOLL /* Define to 1 if strtoull is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRTOULL /* Define to 1 if symlink is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SYMLINK /* Define to 1 if symlinkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SYMLINKAT /* Define to 1 if ttyname_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_TTYNAME_R /* Define to 1 if unlink is declared even after undefining macros. */ #undef HAVE_RAW_DECL_UNLINK /* Define to 1 if unlinkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_UNLINKAT /* Define to 1 if unlockpt is declared even after undefining macros. */ #undef HAVE_RAW_DECL_UNLOCKPT /* Define to 1 if unsetenv is declared even after undefining macros. */ #undef HAVE_RAW_DECL_UNSETENV /* Define to 1 if usleep is declared even after undefining macros. */ #undef HAVE_RAW_DECL_USLEEP /* Define to 1 if _Exit is declared even after undefining macros. */ #undef HAVE_RAW_DECL__EXIT /* Define to 1 if your system has a GNU libc compatible 'realloc' function, and to 0 otherwise. */ #undef HAVE_REALLOC_GNU /* Define if the 'realloc' function is POSIX compliant. */ #undef HAVE_REALLOC_POSIX /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the `vprintf' function. */ #undef HAVE_VPRINTF /* Define if you have the 'wchar_t' type. */ #undef HAVE_WCHAR_T /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* String identifying the packager of this software */ #undef PACKAGE_PACKAGER /* Packager info for bug reports (URL/e-mail/...) */ #undef PACKAGE_PACKAGER_BUG_REPORTS /* Packager-specific version information */ #undef PACKAGE_PACKAGER_VERSION /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Package URL */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to 1 if on MINIX. */ #undef _MINIX /* The _Noreturn keyword of C11. */ #if ! (defined _Noreturn \ || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__)) # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ || 0x5110 <= __SUNPRO_C) # define _Noreturn __attribute__ ((__noreturn__)) # elif defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn # endif #endif /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for 'stat' and other things to work. */ #undef _POSIX_SOURCE /* Define to 500 only on HP-UX. */ #undef _XOPEN_SOURCE /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable general extensions on Mac OS X. */ #ifndef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Define to rpl_ if the getopt replacement functions and variables should be used. */ #undef __GETOPT_PREFIX /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* _GL_INLINE is a portable alternative to ISO C99 plain 'inline'. _GL_EXTERN_INLINE is a portable alternative to 'extern inline'. _GL_INLINE_HEADER_BEGIN contains useful stuff to put in an include file, before uses of _GL_INLINE. It suppresses GCC's bogus "no previous prototype for 'FOO'" diagnostic, when FOO is an inline function in the header; see . _GL_INLINE_HEADER_END contains useful stuff to put in the same include file, after uses of _GL_INLINE. Suppress the use of extern inline on Apple's platforms, as Libc-825.25 (2012-09-19) is incompatible with it; see . Perhaps Apple will fix this some day. */ #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : 199901L <= __STDC_VERSION__) \ && !defined __APPLE__) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline #elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __APPLE__ # if __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif /* A replacement for va_copy, if needed. */ #define gl_va_copy(a,b) ((a) = (b)) /* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. __APPLE__ && __MACH__ test for Mac OS X. __APPLE_CC__ tests for the Apple compiler and its version. __STDC_VERSION__ tests for the C99 mode. */ #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ # define __GNUC_STDC_INLINE__ 1 #endif /* Define to `int' if does not define. */ #undef mode_t /* Define to `int' if does not define. */ #undef pid_t /* Define as a signed type of the same size as size_t. */ #undef ssize_t /* Define as a marker that can be attached to declarations that might not be used. This helps to reduce warnings, such as from GCC -Wunused-parameter. */ #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) # define _GL_UNUSED __attribute__ ((__unused__)) #else # define _GL_UNUSED #endif /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name is a misnomer outside of parameter lists. */ #define _UNUSED_PARAMETER_ _GL_UNUSED /* The __pure__ attribute was added in gcc 2.96. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__)) #else # define _GL_ATTRIBUTE_PURE /* empty */ #endif /* The __const__ attribute was added in gcc 2.95. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__)) #else # define _GL_ATTRIBUTE_CONST /* empty */ #endif /* Define as a macro for copying va_list variables. */ #undef va_copy #endif /*LOUISCFG_H*/ liblouis-2.5.3/liblouis/louis.h0000664000175000017500000004024412161041522013412 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com All rights reserved This file is free software; you can redistribute it and/or modify it under the terms of the Lesser or Library GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file 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 Library GNU General Public License for more details. You should have received a copy of the Library GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Maintained by John J. Boyer john.boyer@jjb-software.com */ #ifndef __LOUIS_H_ #define __LOUIS_H_ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #include "liblouis.h" #ifdef _WIN32 #define strcasecmp _stricmp #endif #define NUMSWAPS 50 #define NUMVAR 50 #define LETSIGNSIZE 128 #define CHARSIZE sizeof(widechar) #define DEFAULTRULESIZE 50 #define ENDSEGMENT 0xffff /*Definitions of braille dots*/ #define B1 0X01 #define B2 0X02 #define B3 0X04 #define B4 0X08 #define B5 0X10 #define B6 0X20 #define B7 0X40 #define B8 0X80 #define B9 0X100 #define B10 0X200 #define B11 0X400 #define B12 0X800 #define B13 0X1000 #define B14 0X2000 #define B15 0X4000 #define B16 0X8000 /*HASHNUM must be prime */ #define HASHNUM 1123 #define MAXSTRING 512 typedef unsigned int TranslationTableOffset; #define OFFSETSIZE sizeof (TranslationTableOffset) typedef enum { CTC_Space = 0X01, CTC_Letter = 0X02, CTC_Digit = 0X04, CTC_Punctuation = 0X08, CTC_UpperCase = 0X10, CTC_LowerCase = 0X20, CTC_Math = 0X40, CTC_Sign = 0X80, CTC_LitDigit = 0X100, CTC_Class1 = 0X200, CTC_Class2 = 0X400, CTC_Class3 = 0X800, CTC_Class4 = 0X1000 } TranslationTableCharacterAttribute; typedef enum { pass_first = '`', pass_last = '~', pass_lookback = '_', pass_string = '\"', pass_dots = '@', pass_omit = '?', pass_startReplace = '[', pass_endReplace = ']', pass_startGroup = '{', pass_endGroup = '}', pass_variable = '#', pass_not = '!', pass_search = '/', pass_any = 'a', pass_digit = 'd', pass_litDigit = 'D', pass_letter = 'l', pass_math = 'm', pass_punctuation = 'p', pass_sign = 'S', pass_space = 's', pass_uppercase = 'U', pass_lowercase = 'u', pass_class1 = 'w', pass_class2 = 'x', pass_class3 = 'y', pass_class4 = 'z', pass_attributes = '$', pass_groupstart = '{', pass_groupend = '}', pass_groupreplace = ';', pass_swap = '%', pass_hyphen = '-', pass_until = '.', pass_eq = '=', pass_lt = '<', pass_gt = '>', pass_endTest = 32, pass_plus = '+', pass_copy = '*', pass_leftParen = '(', pass_rightParen = ')', pass_comma = ',', pass_lteq = 130, pass_gteq = 131, pass_invalidToken = 132, pass_noteq = 133, pass_and = 134, pass_or = 135, pass_nameFound = 136, pass_numberFound = 137, pass_boolean = 138, pass_class = 139, pass_define = 140, pass_emphasis = 141, pass_group = 142, pass_mark = 143, pass_repGroup = 143, pass_script = 144, pass_noMoreTokens = 145, pass_replace = 146, pass_if = 147, pass_then = 148, pass_all = 255 } pass_Codes; typedef unsigned int TranslationTableCharacterAttributes; typedef struct { TranslationTableOffset next; widechar lookFor; widechar found; } CharOrDots; typedef struct { TranslationTableOffset next; TranslationTableOffset definitionRule; TranslationTableOffset otherRules; TranslationTableCharacterAttributes attributes; widechar realchar; widechar uppercase; widechar lowercase; #if UNICODEBITS == 16 widechar padding; #endif } TranslationTableCharacter; typedef enum { /*Op codes */ CTO_IncludeFile, CTO_Locale, /*Deprecated, do not use */ CTO_Undefined, CTO_CapitalSign, CTO_BeginCapitalSign, CTO_LenBegcaps, CTO_EndCapitalSign, CTO_FirstWordCaps, CTO_LastWordCapsBefore, CTO_LastWordCapsAfter, CTO_LenCapsPhrase, CTO_LetterSign, CTO_NoLetsignBefore, CTO_NoLetsign, CTO_NoLetsignAfter, CTO_NumberSign, CTO_FirstWordItal, CTO_ItalSign, CTO_LastWordItalBefore, CTO_LastWordItalAfter, CTO_BegItal, CTO_FirstLetterItal, CTO_EndItal, CTO_LastLetterItal, CTO_SingleLetterItal, CTO_ItalWord, CTO_LenItalPhrase, CTO_FirstWordBold, CTO_BoldSign, CTO_LastWordBoldBefore, CTO_LastWordBoldAfter, CTO_BegBold, CTO_FirstLetterBold, CTO_EndBold, CTO_LastLetterBold, CTO_SingleLetterBold, CTO_BoldWord, CTO_LenBoldPhrase, CTO_FirstWordUnder, CTO_UnderSign, CTO_LastWordUnderBefore, CTO_LastWordUnderAfter, CTO_BegUnder, CTO_FirstLetterUnder, CTO_EndUnder, CTO_LastLetterUnder, CTO_SingleLetterUnder, CTO_UnderWord, CTO_LenUnderPhrase, CTO_BegComp, CTO_CompBegEmph1, CTO_CompEndEmph1, CTO_CompBegEmph2, CTO_CompEndEmph2, CTO_CompBegEmph3, CTO_CompEndEmph3, CTO_CompCapSign, CTO_CompBegCaps, CTO_CompEndCaps, CTO_EndComp, CTO_MultInd, CTO_CompDots, CTO_Comp6, CTO_Class, /*define a character class */ CTO_After, /*only match if after character in class */ CTO_Before, /*only match if before character in class 30 */ CTO_NoBack, CTO_NoFor, CTO_SwapCc, CTO_SwapCd, CTO_SwapDd, CTO_Space, CTO_Digit, CTO_Punctuation, CTO_Math, CTO_Sign, CTO_Letter, CTO_UpperCase, CTO_LowerCase, CTO_Grouping, CTO_UpLow, CTO_LitDigit, CTO_Display, CTO_Replace, CTO_Context, CTO_Correct, CTO_Pass2, CTO_Pass3, CTO_Pass4, CTO_Repeated, CTO_RepWord, CTO_CapsNoCont, CTO_Always, CTO_ExactDots, CTO_NoCross, CTO_Syllable, CTO_NoCont, CTO_CompBrl, CTO_Literal, CTO_LargeSign, CTO_WholeWord, CTO_PartWord, CTO_JoinNum, CTO_JoinableWord, CTO_LowWord, CTO_Contraction, CTO_SuffixableWord, /*whole word or beginning of word */ CTO_PrefixableWord, /*whole word or end of word */ CTO_BegWord, /*beginning of word only */ CTO_BegMidWord, /*beginning or middle of word */ CTO_MidWord, /*middle of word only 20 */ CTO_MidEndWord, /*middle or end of word */ CTO_EndWord, /*end of word only */ CTO_PrePunc, /*punctuation in string at beginning of word */ CTO_PostPunc, /*punctuation in string at end of word */ CTO_BegNum, /*beginning of number */ CTO_MidNum, /*middle of number, e.g., decimal point */ CTO_EndNum, /*end of number */ CTO_DecPoint, CTO_Hyphen, CTO_NoBreak, CTO_None, /*Internal opcodes */ CTO_CapitalRule, CTO_BeginCapitalRule, CTO_EndCapitalRule, CTO_FirstWordCapsRule, CTO_LastWordCapsBeforeRule, CTO_LastWordCapsAfterRule, CTO_LetterRule, CTO_NumberRule, CTO_FirstWordItalRule, CTO_LastWordItalBeforeRule, CTO_LastWordItalAfterRule, CTO_FirstLetterItalRule, CTO_LastLetterItalRule, CTO_SingleLetterItalRule, CTO_ItalWordRule, CTO_FirstWordBoldRule, CTO_LastWordBoldBeforeRule, CTO_LastWordBoldAfterRule, CTO_FirstLetterBoldRule, CTO_LastLetterBoldRule, CTO_SingleLetterBoldRule, CTO_BoldWordRule, CTO_FirstWordUnderRule, CTO_LastWordUnderBeforeRule, CTO_LastWordUnderAfterRule, CTO_FirstLetterUnderRule, CTO_LastLetterUnderRule, CTO_SingleLetterUnderRule, CTO_UnderWordRule, CTO_BegCompRule, CTO_CompBegEmph1Rule, CTO_CompEndEmph1Rule, CTO_CompBegEmph2Rule, CTO_CompEndEmrh2Rule, CTO_CompBegEmph3Rule, CTO_CompEndEmph3Rule, CTO_CompCapSignRule, CTO_CompBegCapsRule, CTO_CompEndCapsRule, CTO_EndCompRule, CTO_CapsNoContRule, CTO_All } TranslationTableOpcode; typedef struct { TranslationTableOffset charsnext; /*next chars entry */ TranslationTableOffset dotsnext; /*next dots entry */ TranslationTableCharacterAttributes after; /*character types which must foollow */ TranslationTableCharacterAttributes before; /*character types which must precede */ TranslationTableOpcode opcode; /*rule for testing validity of replacement */ short charslen; /*length of string to be replaced */ short dotslen; /*length of replacement string */ widechar charsdots[DEFAULTRULESIZE]; /*find and replacement strings */ } TranslationTableRule; typedef struct /*state transition */ { widechar ch; widechar newState; } HyphenationTrans; typedef union { HyphenationTrans *pointer; TranslationTableOffset offset; } PointOff; typedef struct /*one state */ { PointOff trans; TranslationTableOffset hyphenPattern; widechar fallbackState; widechar numTrans; } HyphenationState; /*Translation table header */ typedef struct { /*translation table */ int capsNoCont; int numPasses; int corrections; int syllables; TranslationTableOffset tableSize; TranslationTableOffset bytesUsed; TranslationTableOffset noBreak; TranslationTableOffset undefined; TranslationTableOffset letterSign; TranslationTableOffset numberSign; /*Do not change the order of the following emphasis rule pointers! */ TranslationTableOffset firstWordItal; TranslationTableOffset lastWordItalBefore; TranslationTableOffset lastWordItalAfter; TranslationTableOffset firstLetterItal; TranslationTableOffset lastLetterItal; TranslationTableOffset singleLetterItal; TranslationTableOffset italWord; TranslationTableOffset lenItalPhrase; TranslationTableOffset firstWordBold; TranslationTableOffset lastWordBoldBefore; TranslationTableOffset lastWordBoldAfter; TranslationTableOffset firstLetterBold; TranslationTableOffset lastLetterBold; TranslationTableOffset singleLetterBold; TranslationTableOffset boldWord; TranslationTableOffset lenBoldPhrase; TranslationTableOffset firstWordUnder; TranslationTableOffset lastWordUnderBefore; TranslationTableOffset lastWordUnderAfter; TranslationTableOffset firstLetterUnder; TranslationTableOffset lastLetterUnder; TranslationTableOffset singleLetterUnder; TranslationTableOffset underWord; TranslationTableOffset lenUnderPhrase; TranslationTableOffset firstWordCaps; TranslationTableOffset lastWordCapsBefore; TranslationTableOffset lastWordCapsAfter; TranslationTableOffset beginCapitalSign; TranslationTableOffset endCapitalSign; /*end capitals sign */ TranslationTableOffset capitalSign; TranslationTableOffset CapsWord; TranslationTableOffset lenCapsPhrase; /* End of ordered emphasis rule poiinters */ TranslationTableOffset lenBeginCaps; TranslationTableOffset begComp; TranslationTableOffset compBegEmph1; TranslationTableOffset compEndEmph1; TranslationTableOffset compBegEmph2; TranslationTableOffset compEndEmph2; TranslationTableOffset compBegEmph3; TranslationTableOffset compEndEmph3; TranslationTableOffset compCapSign; TranslationTableOffset compBegCaps; TranslationTableOffset compEndCaps; TranslationTableOffset endComp; TranslationTableOffset hyphenStatesArray; widechar noLetsignBefore[LETSIGNSIZE]; int noLetsignBeforeCount; widechar noLetsign[LETSIGNSIZE]; int noLetsignCount; widechar noLetsignAfter[LETSIGNSIZE]; int noLetsignAfterCount; TranslationTableOffset characters[HASHNUM]; /*Character definitions */ TranslationTableOffset dots[HASHNUM]; /*Dot definitions */ TranslationTableOffset charToDots[HASHNUM]; TranslationTableOffset dotsToChar[HASHNUM]; TranslationTableOffset compdotsPattern[256]; TranslationTableOffset swapDefinitions[NUMSWAPS]; TranslationTableOffset attribOrSwapRules[5]; TranslationTableOffset forRules[HASHNUM]; /*chains of forward rules */ TranslationTableOffset backRules[HASHNUM]; /*Chains of backward rules */ TranslationTableOffset ruleArea[1]; /*Space for storing all rules and values */ } TranslationTableHeader; typedef enum { alloc_typebuf, alloc_destSpacing, alloc_passbuf1, alloc_passbuf2, alloc_srcMapping, alloc_prevSrcMapping } AllocBuf; /* The following function definitions are hooks into * compileTranslationTable.c. Some are used by other library modules. * Others are used by tools like lou_allround.c and lou_debug.c. */ widechar getDotsForChar (widechar c); /* Returns the single-cell dot pattern corresponding to a character. */ widechar getCharFromDots (widechar d); /* Returns the character corresponding to a single-cell dot pattern. */ void *liblouis_allocMem (AllocBuf buffer, int srcmax, int destmax); /* used by lou_translateString.c and lou_backTranslateString.c ONLY to * allocate memory for internal buffers. */ void *get_table (const char *name); /* Checks tables for errors and compiles shem. returns a pointer to the * table. */ int stringHash (const widechar * c); /* Hash function for character strings */ int charHash (widechar c); /* Hash function for single characters */ char *showString (widechar const *chars, int length); /* Returns a string in the same format as the characters operand in * opcodes */ char *showDots (widechar const *dots, int length); /* Returns a character string in the format of the dots operand */ char *showAttributes (TranslationTableCharacterAttributes a); /* Returns a character string where the attributes are indicated by the * attribute letters used in multipass opcodes */ TranslationTableOpcode findOpcodeNumber (const char *tofind); /* Returns the number of the opcode in the string toFind */ const char *findOpcodeName (TranslationTableOpcode opcode); /* Returns the name of the opcode associated with an opcode number*/ int extParseChars (const char *inString, widechar * outString); /* Takes a character string and produces a sequence of wide characters. * Opposite of showString. * Returns the length of the widechar sequence. */ int extParseDots (const char *inString, widechar * outString); /* Takes a character string and produces a sequence of wide characters * containing dot patterns. Opposite of showDots. * Returns the length of the widechar sequence. */ int other_translate (const char *trantab, const widechar * inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); /*Call wrappers for other translators */ int other_backTranslate (const char *trantab, const widechar * inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); /*Call wrappers for other back-translators.*/ int other_dotsToChar (const char *trantab, widechar * inbuf, widechar * outbuf, int length, int mode); int other_charToDots (const char *trantab, const widechar * inbuf, widechar * outbuf, int length, int mode); int trace_translate (const char* tableList, const widechar* inbuf, int* inlen, widechar* outbuf, int* outlen, char* typeform, char* spacing, int* outputPos, int* inputPos, int* cursorPos, const TranslationTableRule** rules, int* rulesLen, int mode); char * getLastTableList(); void debugHook (); /* Can be inserted in code to be used as a breakpoint in gdb */ void outOfMemory (); /* Priknts an out-of-memory message and exits*/ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __LOUIS_H */ liblouis-2.5.3/liblouis/lou_translateString.c0000664000175000017500000015671212161041522016325 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com All rights reserved This file is free software; you can redistribute it and/or modify it under the terms of the Lesser or Library GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This file 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 Library GNU General Public License for more details. You should have received a copy of the Library GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Maintained by John J. Boyer john.boyer@jjb-software.com */ #include #include #include #include "louis.h" #include "transcommon.ci" #define MIN(a,b) (((a)<(b))?(a):(b)) static int translateString (); static int compbrlStart = 0; static int compbrlEnd = 0; int EXPORT_CALL lou_translateString (const char *tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode) { return lou_translate (tableList, inbufx, inlen, outbuf, outlen, typeform, spacing, NULL, NULL, NULL, mode); } int EXPORT_CALL lou_translate (const char *tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int modex) { return trace_translate (tableList, inbufx, inlen, outbuf, outlen, typeform, spacing, outputPos, inputPos, cursorPos, NULL, NULL, modex); } int trace_translate (const char *tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, const TranslationTableRule ** rules, int *rulesLen, int modex) { int k; int goodTrans = 1; if (tableList == NULL || inbufx == NULL || inlen == NULL || outbuf == NULL || outlen == NULL) return 0; if ((modex & otherTrans)) return other_translate (tableList, inbufx, inlen, outbuf, outlen, typeform, spacing, outputPos, inputPos, cursorPos, modex); table = lou_getTable (tableList); if (table == NULL || *inlen < 0 || *outlen < 0) return 0; currentInput = (widechar *) inbufx; srcmax = 0; while (srcmax < *inlen && currentInput[srcmax]) srcmax++; destmax = *outlen; haveEmphasis = 0; if (!(typebuf = liblouis_allocMem (alloc_typebuf, srcmax, destmax))) return 0; if (typeform != NULL) { for (k = 0; k < srcmax; k++) if ((typebuf[k] = typeform[k] & EMPHASIS)) haveEmphasis = 1; } else memset (typebuf, 0, srcmax * sizeof (unsigned short)); if (!(spacing == NULL || *spacing == 'X')) srcSpacing = (unsigned char *) spacing; outputPositions = outputPos; if (outputPos != NULL) for (k = 0; k < srcmax; k++) outputPos[k] = -1; inputPositions = inputPos; mode = modex; if (cursorPos != NULL && *cursorPos >= 0) { cursorStatus = 0; cursorPosition = *cursorPos; if ((mode & (compbrlAtCursor | compbrlLeftCursor))) { compbrlStart = cursorPosition; if (checkAttr (currentInput[compbrlStart], CTC_Space, 0)) compbrlEnd = compbrlStart + 1; else { while (compbrlStart >= 0 && !checkAttr (currentInput[compbrlStart], CTC_Space, 0)) compbrlStart--; compbrlStart++; compbrlEnd = cursorPosition; if (!(mode & compbrlLeftCursor)) while (compbrlEnd < srcmax && !checkAttr (currentInput[compbrlEnd], CTC_Space, 0)) compbrlEnd++; } } } else { cursorPosition = -1; cursorStatus = 1; /*so it won't check cursor position */ } if (!(passbuf1 = liblouis_allocMem (alloc_passbuf1, srcmax, destmax))) return 0; if (!(srcMapping = liblouis_allocMem (alloc_srcMapping, srcmax, destmax))) return 0; if (! (prevSrcMapping = liblouis_allocMem (alloc_prevSrcMapping, srcmax, destmax))) return 0; for (k = 0; k <= srcmax; k++) srcMapping[k] = k; srcMapping[srcmax] = srcmax; if ((!(mode & pass1Only)) && (table->numPasses > 1 || table->corrections)) { if (!(passbuf2 = liblouis_allocMem (alloc_passbuf2, srcmax, destmax))) return 0; } if (srcSpacing != NULL) { if (!(destSpacing = liblouis_allocMem (alloc_destSpacing, srcmax, destmax))) goodTrans = 0; else memset (destSpacing, '*', destmax); } appliedRulesCount = 0; if (rules != NULL && rulesLen != NULL) { appliedRules = rules; maxAppliedRules = *rulesLen; } else { appliedRules = NULL; maxAppliedRules = 0; } currentPass = 0; if ((mode & pass1Only)) { currentOutput = passbuf1; memcpy (prevSrcMapping, srcMapping, destmax * sizeof (int)); goodTrans = translateString (); currentPass = 5; /*Certainly > table->numPasses */ } while (currentPass <= table->numPasses && goodTrans) { memcpy (prevSrcMapping, srcMapping, destmax * sizeof (int)); switch (currentPass) { case 0: if (table->corrections) { currentOutput = passbuf2; goodTrans = makeCorrections (); currentInput = passbuf2; srcmax = dest; } break; case 1: currentOutput = passbuf1; goodTrans = translateString (); break; case 2: srcmax = dest; currentInput = passbuf1; currentOutput = passbuf2; goodTrans = translatePass (); break; case 3: srcmax = dest; currentInput = passbuf2; currentOutput = passbuf1; goodTrans = translatePass (); break; case 4: srcmax = dest; currentInput = passbuf1; currentOutput = passbuf2; goodTrans = translatePass (); break; default: break; } currentPass++; } if (goodTrans) { for (k = 0; k < dest; k++) { if (typeform != NULL) { if ((currentOutput[k] & (B7 | B8))) typeform[k] = '8'; else typeform[k] = '0'; } if ((mode & dotsIO)) { if ((mode & ucBrl)) outbuf[k] = ((currentOutput[k] & 0xff) | 0x2800); else outbuf[k] = currentOutput[k]; } else outbuf[k] = getCharFromDots (currentOutput[k]); } *inlen = realInlen; *outlen = dest; if (inputPositions != NULL) memcpy (inputPositions, srcMapping, destmax * sizeof (int)); if (outputPos != NULL) { int lastpos = 0; for (k = 0; k < *inlen; k++) if (outputPos[k] == -1) outputPos[k] = lastpos; else lastpos = outputPos[k]; } } if (destSpacing != NULL) { memcpy (srcSpacing, destSpacing, srcmax); srcSpacing[srcmax] = 0; } if (cursorPos != NULL && *cursorPos != -1) { if (outputPos != NULL) *cursorPos = outputPos[*cursorPos]; else *cursorPos = cursorPosition; } if (rulesLen != NULL) *rulesLen = appliedRulesCount; return goodTrans; } int EXPORT_CALL lou_translatePrehyphenated (const char *tableList, const widechar * inbufx, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, char *inputHyphens, char *outputHyphens, int modex) { int rv = 1; int *alloc_inputPos = NULL; if (inputHyphens != NULL) { if (outputHyphens == NULL) return 0; if (inputPos == NULL) { if ((alloc_inputPos = malloc (*outlen * sizeof (int))) == NULL) outOfMemory (); inputPos = alloc_inputPos; } } if (lou_translate (tableList, inbufx, inlen, outbuf, outlen, typeform, spacing, outputPos, inputPos, cursorPos, modex)) { if (inputHyphens != NULL) { int inpos = 0; int outpos; for (outpos = 0; outpos < *outlen; outpos++) { int new_inpos = inputPos[outpos]; if (new_inpos < inpos) { rv = 0; break; } if (new_inpos > inpos) outputHyphens[outpos] = inputHyphens[new_inpos]; else outputHyphens[outpos] = '0'; inpos = new_inpos; } } } if (alloc_inputPos != NULL) free (alloc_inputPos); return rv; } static TranslationTableOpcode indicOpcode; static const TranslationTableRule *indicRule; static int dontContract = 0; static int doCompbrl (); static int hyphenate (const widechar * word, int wordSize, char *hyphens) { widechar *prepWord; int i, k, limit; int stateNum; widechar ch; HyphenationState *statesArray = (HyphenationState *) & table->ruleArea[table->hyphenStatesArray]; HyphenationState *currentState; HyphenationTrans *transitionsArray; char *hyphenPattern; int patternOffset; if (!table->hyphenStatesArray || (wordSize + 3) > MAXSTRING) return 0; prepWord = (widechar *) calloc(wordSize+3, sizeof(widechar)); /* prepWord is of the format ".hello." * hyphens is the length of the word "hello" "00000" */ prepWord[0] = '.'; for (i = 0; i < wordSize; i++) { prepWord[i+1] = (findCharOrDots (word[i], 0))->lowercase; hyphens[i] = '0'; } prepWord[wordSize+1] = '.'; /* now, run the finite state machine */ stateNum = 0; // we need to walk all of ".hello." for (i = 0; i < wordSize+2; i++) { ch = prepWord[i]; while (1) { if (stateNum == 0xffff) { stateNum = 0; goto nextLetter; } currentState = &statesArray[stateNum]; if (currentState->trans.offset) { transitionsArray = (HyphenationTrans *) & table->ruleArea[currentState->trans.offset]; for (k = 0; k < currentState->numTrans; k++) { if (transitionsArray[k].ch == ch) { stateNum = transitionsArray[k].newState; goto stateFound; } } } stateNum = currentState->fallbackState; } stateFound: currentState = &statesArray[stateNum]; if (currentState->hyphenPattern) { hyphenPattern = (char *) &table->ruleArea[currentState->hyphenPattern]; patternOffset = i+1 - strlen(hyphenPattern); /* Need to ensure that we don't overrun hyphens, * in some cases hyphenPattern is longer than the remaining letters, * and if we write out all of it we would have overshot our buffer. */ limit = MIN(strlen(hyphenPattern), wordSize-patternOffset); for (k = 0; k destmax || (src + inLength) > srcmax) return 0; memcpy (¤tOutput[dest], outChars, outLength * CHARSIZE); if (!cursorStatus) { if ((mode & (compbrlAtCursor | compbrlLeftCursor))) { if (src >= compbrlStart) { cursorStatus = 2; return (doCompTrans (compbrlStart, compbrlEnd)); } } else if (cursorPosition >= src && cursorPosition < (src + inLength)) { cursorPosition = dest; cursorStatus = 1; } else if (currentInput[cursorPosition] == 0 && cursorPosition == (src + inLength)) { cursorPosition = dest + outLength / 2 + 1; cursorStatus = 1; } } else if (cursorStatus == 2 && cursorPosition == src) cursorPosition = dest; if (inputPositions != NULL || outputPositions != NULL) { if (outLength <= inLength) { for (k = 0; k < outLength; k++) { if (inputPositions != NULL) srcMapping[dest + k] = prevSrcMapping[src]; if (outputPositions != NULL) outputPositions[prevSrcMapping[src + k]] = dest; } for (k = outLength; k < inLength; k++) if (outputPositions != NULL) outputPositions[prevSrcMapping[src + k]] = dest; } else { for (k = 0; k < inLength; k++) { if (inputPositions != NULL) srcMapping[dest + k] = prevSrcMapping[src]; if (outputPositions != NULL) outputPositions[prevSrcMapping[src + k]] = dest; } for (k = inLength; k < outLength; k++) if (inputPositions != NULL) srcMapping[dest + k] = prevSrcMapping[src]; } } dest += outLength; return 1; } static int syllableBreak () { int wordStart=0; int wordEnd=0; int wordSize=0; int k=0; char *hyphens = NULL; for (wordStart = src; wordStart >= 0; wordStart--) if (!((findCharOrDots (currentInput[wordStart], 0))->attributes & CTC_Letter)) { wordStart++; break; } if (wordStart < 0) wordStart = 0; for (wordEnd = src; wordEnd < srcmax; wordEnd++) if (!((findCharOrDots (currentInput[wordEnd], 0))->attributes & CTC_Letter)) { wordEnd--; break; } if (wordEnd == srcmax) wordEnd--; /* At this stage wordStart is the 0 based index of the first letter in the word, * wordEnd is the 0 based index of the last letter in the word. * example: "hello" wordstart=0, wordEnd=4. */ wordSize=wordEnd-wordStart+1; hyphens = (char *) calloc(wordSize+1, sizeof(char)); if (!hyphenate (¤tInput[wordStart], wordSize, hyphens)) { free(hyphens); return 0; } for (k = src - wordStart+1; k < (src - wordStart + transCharslen); k++) if (hyphens[k] & 1) { free(hyphens); return 1; } free(hyphens); return 0; } static TranslationTableCharacter *curCharDef; static widechar before, after; static TranslationTableCharacterAttributes beforeAttributes; static TranslationTableCharacterAttributes afterAttributes; static void setBefore () { if (src >= 2 && currentInput[src - 1] == ENDSEGMENT) before = currentInput[src - 2]; else before = (src == 0) ? ' ' : currentInput[src - 1]; beforeAttributes = (findCharOrDots (before, 0))->attributes; } static void setAfter (int length) { if ((src + length + 2) < srcmax && currentInput[src + 1] == ENDSEGMENT) after = currentInput[src + 2]; else after = (src + length < srcmax) ? currentInput[src + length] : ' '; afterAttributes = (findCharOrDots (after, 0))->attributes; } static int prevTypeform = plain_text; static int prevSrc = 0; static TranslationTableRule pseudoRule = { 0 }; static int brailleIndicatorDefined (TranslationTableOffset offset) { if (!offset) return 0; indicRule = (TranslationTableRule *) & table->ruleArea[offset]; indicOpcode = indicRule->opcode; return 1; } static typeforms prevType = plain_text; static typeforms curType = plain_text; typedef enum { firstWord, lastWordBefore, lastWordAfter, firstLetter, lastLetter, singleLetter, word, lenPhrase } emphCodes; static int wordsMarked = 0; static int finishEmphasis = 0; static int wordCount = 0; static int lastWord = 0; static int startType = -1; static int endType = 0; static void markWords (const TranslationTableOffset * offset) { /*Mark the beginnings of words*/ int numWords = 0; int k; wordsMarked = 1; numWords = offset[lenPhrase]; if (!numWords) numWords = 4; if (wordCount < numWords) { for (k = src; k < endType; k++) if (!checkAttr (currentInput[k - 1], CTC_Letter | CTC_Digit, 0) && checkAttr (currentInput[k], CTC_Digit | CTC_Letter, 0)) typebuf[k] |= STARTWORD; } else { int firstWord = 1; int lastWord = src; for (k = src; k < endType; k++) { if (!checkAttr (currentInput[k - 1], CTC_Letter | CTC_Digit, 0) && checkAttr (currentInput[k], CTC_Digit | CTC_Letter, 0)) { if (firstWord) { typebuf[k] |= FIRSTWORD; firstWord = 0; } else lastWord = k; } } typebuf[lastWord] |= STARTWORD; } } static int insertIndicators () { /*Insert italic, bold, etc. indicators before words*/ int typeMark; int ruleFound = 0; if (!wordsMarked || !haveEmphasis) return 1; typeMark = typebuf[src] & (STARTWORD | FIRSTWORD); if (!typeMark) return 1; switch (typebuf[src] & EMPHASIS) { case italic: if ((typeMark & FIRSTWORD)) ruleFound = brailleIndicatorDefined (table->firstWordItal); else ruleFound = brailleIndicatorDefined (table->lastWordItalBefore); break; case bold: if ((typeMark & FIRSTWORD)) ruleFound = brailleIndicatorDefined (table->firstWordBold); else ruleFound = brailleIndicatorDefined (table->lastWordBoldBefore); break; case underline: if ((typeMark & FIRSTWORD)) ruleFound = brailleIndicatorDefined (table->firstWordUnder); else ruleFound = brailleIndicatorDefined (table->lastWordUnderBefore); break; default: ruleFound = 0; break; } if (ruleFound) { if (!for_updatePositions (&indicRule->charsdots[0], 0, indicRule->dotslen)) return 0; } return 1; } static int validMatch () { /*Analyze the typeform parameter and also check for capitalization*/ TranslationTableCharacter *currentInputChar; TranslationTableCharacter *ruleChar; TranslationTableCharacterAttributes prevAttr = 0; int k; int kk = 0; unsigned short mask = 0; if (!transCharslen) return 0; switch (transOpcode) { case CTO_WholeWord: case CTO_PrefixableWord: case CTO_SuffixableWord: case CTO_JoinableWord: case CTO_LowWord: mask = EMPHASIS | capsemph; break; default: mask = EMPHASIS | SYLLABLEMARKS | INTERNALMARKS | capsemph; break; } for (k = src; k < src + transCharslen; k++) { if (currentInput[k] == ENDSEGMENT) { if (k == src && transCharslen == 1) return 1; else return 0; } currentInputChar = findCharOrDots (currentInput[k], 0); if (k == src) prevAttr = currentInputChar->attributes; ruleChar = findCharOrDots (transRule->charsdots[kk++], 0); if ((currentInputChar->lowercase != ruleChar->lowercase)) return 0; if (typebuf != NULL && (typebuf[src] & capsemph) == 0 && (typebuf[k] & mask) != (typebuf[src] & mask)) return 0; if (currentInputChar->attributes != CTC_Letter) { if (k != (src + 1) && (prevAttr & CTC_Letter) && (currentInputChar->attributes & CTC_Letter) && ((currentInputChar-> attributes & (CTC_LowerCase | CTC_UpperCase | CTC_Letter)) != (prevAttr & (CTC_LowerCase | CTC_UpperCase | CTC_Letter)))) return 0; } prevAttr = currentInputChar->attributes; } return 1; } static int checkMultCaps () { int k; for (k = 0; k < table->lenBeginCaps; k++) if (k >= srcmax - src || !checkAttr (currentInput[src + k], CTC_UpperCase, 0)) return 0; return 1; } static int prevPrevType = 0; static int nextType = 0; static TranslationTableCharacterAttributes prevPrevAttr = 0; static int beginEmphasis (const TranslationTableOffset * offset) { if (src != startType) { wordCount = finishEmphasis = wordsMarked = 0; startType = lastWord = src; for (endType = src; endType < srcmax; endType++) { if ((typebuf[endType] & EMPHASIS) != curType) break; if (checkAttr (currentInput[endType - 1], CTC_Space, 0) && !checkAttr (currentInput[endType], CTC_Space, 0)) { lastWord = endType; wordCount++; } } } if ((beforeAttributes & CTC_Letter) && (endType - startType) == 1 && brailleIndicatorDefined (offset[singleLetter])) return 1; else if ((beforeAttributes & CTC_Letter) && brailleIndicatorDefined (offset[firstLetter])) return 1; else if (brailleIndicatorDefined (offset[lastWordBefore])) { markWords (offset); return 0; } else return (brailleIndicatorDefined (offset[firstWord])); return 0; } static int endEmphasis (const TranslationTableOffset * offset) { if (wordsMarked) return 0; if (prevPrevType != prevType && nextType != prevType && brailleIndicatorDefined (offset[singleLetter])) return 0; else if ((finishEmphasis || (src < srcmax && ((findCharOrDots (currentInput[src + 1], 0))->attributes & CTC_Letter))) && brailleIndicatorDefined (offset[lastLetter])) return 1; else return (brailleIndicatorDefined (offset[lastWordAfter])); return 0; } static int doCompEmph () { int endEmph; for (endEmph = src; (typebuf[endEmph] & computer_braille) && endEmph <= srcmax; endEmph++); return doCompTrans (src, endEmph); } static int insertBrailleIndicators (int finish) { /*Insert braille indicators such as italic, bold, capital, * letter, number, etc.*/ typedef enum { checkNothing, checkBeginTypeform, checkEndTypeform, checkNumber, checkLetter, checkBeginMultCaps, checkEndMultCaps, checkSingleCap, checkAll } checkThis; checkThis checkWhat = checkNothing; int ok = 0; int k; if (finish == 2) { while (dest > 0 && (currentOutput[dest - 1] == 0 || currentOutput[dest - 1] == B16)) dest--; finishEmphasis = 1; prevType = prevPrevType; curType = plain_text; checkWhat = checkEndTypeform; } else { if (src == prevSrc && !finish) return 1; if (src != prevSrc) { if (haveEmphasis && src < srcmax) nextType = typebuf[src + 1] & EMPHASIS; else nextType = plain_text; if (src > 2) { if (haveEmphasis) prevPrevType = typebuf[src - 2] & EMPHASIS; else prevPrevType = plain_text; prevPrevAttr = (findCharOrDots (currentInput[src - 2], 0))->attributes; } else { prevPrevType = plain_text; prevPrevAttr = CTC_Space; } if (haveEmphasis && (typebuf[src] & EMPHASIS) != prevTypeform) { prevType = prevTypeform & EMPHASIS; curType = typebuf[src] & EMPHASIS; checkWhat = checkEndTypeform; } else if (!finish) checkWhat = checkNothing; else checkWhat = checkNumber; } if (finish == 1) checkWhat = checkNumber; } do { ok = 0; switch (checkWhat) { case checkNothing: ok = 0; break; case checkBeginTypeform: if (haveEmphasis) switch (curType) { case plain_text: ok = 0; break; case italic: ok = beginEmphasis (&table->firstWordItal); curType = 0; break; case bold: ok = beginEmphasis (&table->firstWordBold); curType = 0; break; case underline: ok = beginEmphasis (&table->firstWordUnder); curType = 0; break; case computer_braille: ok = 0; doCompEmph (); curType = 0; break; case italic + underline: ok = beginEmphasis (&table->firstWordUnder); curType -= underline; break; case italic + bold: ok = beginEmphasis (&table->firstWordBold); curType -= bold; break; case italic + computer_braille: ok = 0; doCompEmph (); curType -= computer_braille; break; case underline + bold: beginEmphasis (&table->firstWordBold); curType -= bold; break; case underline + computer_braille: ok = 0; doCompEmph (); curType -= computer_braille; break; case bold + computer_braille: ok = 0; doCompEmph (); curType -= computer_braille; break; default: ok = 0; curType = 0; break; } if (!curType) { if (!finish) checkWhat = checkNothing; else checkWhat = checkNumber; } break; case checkEndTypeform: if (haveEmphasis) switch (prevType) { case plain_text: ok = 0; break; case italic: ok = endEmphasis (&table->firstWordItal); prevType = 0; break; case bold: ok = endEmphasis (&table->firstWordBold); prevType = 0; break; case underline: ok = endEmphasis (&table->firstWordUnder); prevType = 0; break; case computer_braille: ok = 0; prevType = 0; break; case italic + underline: ok = endEmphasis (&table->firstWordUnder); prevType -= underline; break; case italic + bold: ok = endEmphasis (&table->firstWordBold); prevType -= bold; break; case italic + computer_braille: ok = 1; prevType -= computer_braille; break; case underline + bold: ok = endEmphasis (&table->firstWordBold); prevType -= bold; break; case underline + computer_braille: ok = 0; prevType -= computer_braille; break; case bold + computer_braille: ok = endEmphasis (&table->firstWordBold); prevType -= bold; break; default: ok = 0; prevType = 0; break; } if (!prevType) { checkWhat = checkBeginTypeform; prevTypeform = typebuf[src] & EMPHASIS; } break; case checkNumber: if (brailleIndicatorDefined (table->numberSign) && checkAttr (currentInput[src], CTC_Digit, 0) && (prevTransOpcode == CTO_ExactDots || !(beforeAttributes & CTC_Digit)) && prevTransOpcode != CTO_MidNum) { ok = 1; checkWhat = checkNothing; } else checkWhat = checkLetter; break; case checkLetter: if (!brailleIndicatorDefined (table->letterSign)) { ok = 0; checkWhat = checkBeginMultCaps; break; } if (transOpcode == CTO_Contraction) { ok = 1; checkWhat = checkBeginMultCaps; break; } if ((checkAttr (currentInput[src], CTC_Letter, 0) && !(beforeAttributes & CTC_Letter)) && (!checkAttr (currentInput[src + 1], CTC_Letter, 0) || (beforeAttributes & CTC_Digit))) { ok = 1; if (src > 0) for (k = 0; k < table->noLetsignBeforeCount; k++) if (currentInput[src - 1] == table->noLetsignBefore[k]) { ok = 0; break; } for (k = 0; k < table->noLetsignCount; k++) if (currentInput[src] == table->noLetsign[k]) { ok = 0; break; } if ((src + 1) < srcmax) for (k = 0; k < table->noLetsignAfterCount; k++) if (currentInput[src + 1] == table->noLetsignAfter[k]) { ok = 0; break; } } checkWhat = checkBeginMultCaps; break; case checkBeginMultCaps: if (brailleIndicatorDefined (table->beginCapitalSign) && !(beforeAttributes & CTC_UpperCase) && checkMultCaps ()) { ok = 1; if (table->capsNoCont) dontContract = 1; checkWhat = checkNothing; } else checkWhat = checkSingleCap; break; case checkEndMultCaps: if (brailleIndicatorDefined (table->endCapitalSign) && (prevPrevAttr & CTC_UpperCase) && (beforeAttributes & CTC_UpperCase) && checkAttr (currentInput[src], CTC_LowerCase, 0)) { ok = 1; if (table->capsNoCont) dontContract = 0; } checkWhat = checkNothing; break; case checkSingleCap: if (brailleIndicatorDefined (table->capitalSign) && src < srcmax && checkAttr (currentInput[src], CTC_UpperCase, 0) && (!(beforeAttributes & CTC_UpperCase) || table->beginCapitalSign == 0)) { ok = 1; checkWhat = checkNothing; } checkWhat = checkEndMultCaps; break; default: ok = 0; checkWhat = checkNothing; break; } if (ok && indicRule != NULL) { if (!for_updatePositions (&indicRule->charsdots[0], 0, indicRule->dotslen)) return 0; if (cursorStatus == 2) checkWhat = checkNothing; } } while (checkWhat != checkNothing); finishEmphasis = 0; return 1; } static int onlyLettersBehind () { /* Actually, spaces, then letters */ int k; if (!(beforeAttributes & CTC_Space)) return 0; for (k = src - 2; k >= 0; k--) { TranslationTableCharacterAttributes attr = (findCharOrDots (currentInput[k], 0))->attributes; if ((attr & CTC_Space)) continue; if ((attr & CTC_Letter)) return 1; else return 0; } return 1; } static int onlyLettersAhead () { /* Actullly, spaces, then letters */ int k; if (!(afterAttributes & CTC_Space)) return 0; for (k = src + transCharslen + 1; k < srcmax; k++) { TranslationTableCharacterAttributes attr = (findCharOrDots (currentInput[k], 0))->attributes; if ((attr & CTC_Space)) continue; if ((attr & (CTC_Letter | CTC_LitDigit))) return 1; else return 0; } return 0; } static int noCompbrlAhead () { int start = src + transCharslen; int end; int curSrc; if (start >= srcmax) return 1; while (start < srcmax && checkAttr (currentInput[start], CTC_Space, 0)) start++; if (start == srcmax || (transOpcode == CTO_JoinableWord && (!checkAttr (currentInput [start], CTC_Letter | CTC_Digit, 0) || !checkAttr (currentInput [start - 1], CTC_Space, 0)))) return 1; end = start; while (end < srcmax && !checkAttr (currentInput[end], CTC_Space, 0)) end++; if ((mode & (compbrlAtCursor | compbrlLeftCursor)) && cursorPosition >= start && cursorPosition < end) return 0; /* Look ahead for rules with CTO_CompBrl */ for (curSrc = start; curSrc < end; curSrc++) { int length = srcmax - curSrc; int tryThis; const TranslationTableCharacter *character1; const TranslationTableCharacter *character2; int k; character1 = findCharOrDots (currentInput[curSrc], 0); for (tryThis = 0; tryThis < 2; tryThis++) { TranslationTableOffset ruleOffset = 0; TranslationTableRule *testRule; unsigned long int makeHash = 0; switch (tryThis) { case 0: if (!(length >= 2)) break; /*Hash function optimized for forward translation */ makeHash = (unsigned long int) character1->lowercase << 8; character2 = findCharOrDots (currentInput[curSrc + 1], 0); makeHash += (unsigned long int) character2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = character1->otherRules; break; } while (ruleOffset) { testRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; for (k = 0; k < testRule->charslen; k++) { character1 = findCharOrDots (testRule->charsdots[k], 0); character2 = findCharOrDots (currentInput[curSrc + k], 0); if (character1->lowercase != character2->lowercase) break; } if (tryThis == 1 || k == testRule->charslen) { if (testRule->opcode == CTO_CompBrl || testRule->opcode == CTO_Literal) return 0; } ruleOffset = testRule->charsnext; } } } return 1; } static widechar const *repwordStart; static int repwordLength; static int isRepeatedWord () { int start; if (src == 0 || !checkAttr (currentInput[src - 1], CTC_Letter, 0)) return 0; if ((src + transCharslen) >= srcmax || !checkAttr (currentInput[src + transCharslen], CTC_Letter, 0)) return 0; for (start = src - 2; start >= 0 && checkAttr (currentInput[start], CTC_Letter, 0); start--); start++; repwordStart = ¤tInput[start]; repwordLength = src - start; if (compareChars (repwordStart, ¤tInput[src + transCharslen], repwordLength, 0)) return 1; return 0; } static void for_selectRule () { /*check for valid Translations. Return value is in transRule. */ int length = srcmax - src; int tryThis; const TranslationTableCharacter *character2; int k; curCharDef = findCharOrDots (currentInput[src], 0); for (tryThis = 0; tryThis < 3; tryThis++) { TranslationTableOffset ruleOffset = 0; unsigned long int makeHash = 0; switch (tryThis) { case 0: if (!(length >= 2)) break; /*Hash function optimized for forward translation */ makeHash = (unsigned long int) curCharDef->lowercase << 8; character2 = findCharOrDots (currentInput[src + 1], 0); makeHash += (unsigned long int) character2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = curCharDef->otherRules; break; case 2: /*No rule found */ transRule = &pseudoRule; transOpcode = pseudoRule.opcode = CTO_None; transCharslen = pseudoRule.charslen = 1; pseudoRule.charsdots[0] = currentInput[src]; pseudoRule.dotslen = 0; return; break; } while (ruleOffset) { transRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; transOpcode = transRule->opcode; transCharslen = transRule->charslen; if (tryThis == 1 || ((transCharslen <= length) && validMatch ())) { /* check this rule */ setAfter (transCharslen); if ((!transRule->after || (beforeAttributes & transRule->after)) && (!transRule->before || (afterAttributes & transRule->before))) switch (transOpcode) { /*check validity of this Translation */ case CTO_Space: case CTO_Letter: case CTO_UpperCase: case CTO_LowerCase: case CTO_Digit: case CTO_LitDigit: case CTO_Punctuation: case CTO_Math: case CTO_Sign: case CTO_Hyphen: case CTO_Replace: case CTO_CompBrl: case CTO_Literal: return; case CTO_Repeated: if ((mode & (compbrlAtCursor | compbrlLeftCursor)) && src >= compbrlStart && src <= compbrlEnd) break; return; case CTO_RepWord: if (dontContract || (mode & noContractions)) break; if (isRepeatedWord ()) return; break; case CTO_NoCont: if (dontContract || (mode & noContractions)) break; return; case CTO_Syllable: transOpcode = CTO_Always; case CTO_Always: if (dontContract || (mode & noContractions)) break; return; case CTO_ExactDots: return; case CTO_NoCross: if (syllableBreak ()) break; return; case CTO_Context: if (!srcIncremented || !passDoTest ()) break; return; case CTO_LargeSign: if (dontContract || (mode & noContractions)) break; if (!((beforeAttributes & (CTC_Space | CTC_Punctuation)) || onlyLettersBehind ()) || !((afterAttributes & CTC_Space) || prevTransOpcode == CTO_LargeSign) || (afterAttributes & CTC_Letter) || !noCompbrlAhead ()) transOpcode = CTO_Always; return; case CTO_WholeWord: if (dontContract || (mode & noContractions)) break; case CTO_Contraction: if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && (afterAttributes & (CTC_Space | CTC_Punctuation))) return; break; case CTO_PartWord: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & CTC_Letter) || (afterAttributes & CTC_Letter)) return; break; case CTO_JoinNum: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && (afterAttributes & CTC_Space) && (dest + transRule->dotslen < destmax)) { int cursrc = src + transCharslen + 1; while (cursrc < srcmax) { if (!checkAttr (currentInput[cursrc], CTC_Space, 0)) { if (checkAttr (currentInput[cursrc], CTC_Digit, 0)) return; break; } cursrc++; } } break; case CTO_LowWord: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & CTC_Space) && (afterAttributes & CTC_Space) && (prevTransOpcode != CTO_JoinableWord)) return; break; case CTO_JoinableWord: if (dontContract || (mode & noContractions)) break; if (beforeAttributes & (CTC_Space | CTC_Punctuation) && onlyLettersAhead () && noCompbrlAhead ()) return; break; case CTO_SuffixableWord: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && (afterAttributes & (CTC_Space | CTC_Letter | CTC_Punctuation))) return; break; case CTO_PrefixableWord: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & (CTC_Space | CTC_Letter | CTC_Punctuation)) && (afterAttributes & (CTC_Space | CTC_Punctuation))) return; break; case CTO_BegWord: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & (CTC_Space | CTC_Punctuation)) && (afterAttributes & CTC_Letter)) return; break; case CTO_BegMidWord: if (dontContract || (mode & noContractions)) break; if ((beforeAttributes & (CTC_Letter | CTC_Space | CTC_Punctuation)) && (afterAttributes & CTC_Letter)) return; break; case CTO_MidWord: if (dontContract || (mode & noContractions)) break; if (beforeAttributes & CTC_Letter && afterAttributes & CTC_Letter) return; break; case CTO_MidEndWord: if (dontContract || (mode & noContractions)) break; if (beforeAttributes & CTC_Letter && afterAttributes & (CTC_Letter | CTC_Space | CTC_Punctuation)) return; break; case CTO_EndWord: if (dontContract || (mode & noContractions)) break; if (beforeAttributes & CTC_Letter && afterAttributes & (CTC_Space | CTC_Punctuation)) return; break; case CTO_BegNum: if (beforeAttributes & (CTC_Space | CTC_Punctuation) && afterAttributes & CTC_Digit) return; break; case CTO_MidNum: if (prevTransOpcode != CTO_ExactDots && beforeAttributes & CTC_Digit && afterAttributes & CTC_Digit) return; break; case CTO_EndNum: if (beforeAttributes & CTC_Digit && prevTransOpcode != CTO_ExactDots) return; break; case CTO_DecPoint: if (!(afterAttributes & CTC_Digit)) break; if (beforeAttributes & CTC_Digit) transOpcode = CTO_MidNum; return; case CTO_PrePunc: if (!checkAttr (currentInput[src], CTC_Punctuation, 0) || (src > 0 && checkAttr (currentInput[src - 1], CTC_Letter, 0))) break; for (k = src + transCharslen; k < srcmax; k++) { if (checkAttr (currentInput[k], (CTC_Letter | CTC_Digit), 0)) return; if (checkAttr (currentInput[k], CTC_Space, 0)) break; } break; case CTO_PostPunc: if (!checkAttr (currentInput[src], CTC_Punctuation, 0) || (src < (srcmax - 1) && checkAttr (currentInput[src + 1], CTC_Letter, 0))) break; for (k = src; k >= 0; k--) { if (checkAttr (currentInput[k], (CTC_Letter | CTC_Digit), 0)) return; if (checkAttr (currentInput[k], CTC_Space, 0)) break; } break; default: break; } } /*Done with checking this rule */ ruleOffset = transRule->charsnext; } } } static int undefinedCharacter (widechar c) { /*Display an undefined character in the output buffer*/ int k; char *display; if (table->undefined) { TranslationTableRule *transRule = (TranslationTableRule *) & table->ruleArea[table->undefined]; if (!for_updatePositions (&transRule->charsdots[transRule->charslen], transRule->charslen, transRule->dotslen)) return 0; return 1; } display = showString (&c, 1); if ((dest + strlen (display)) > destmax) return 0; if (outputPositions != NULL) outputPositions[prevSrcMapping[src]] = dest; for (k = 0; k < strlen (display); k++) { if (inputPositions != NULL) srcMapping[dest] = prevSrcMapping[src]; currentOutput[dest++] = getDotsForChar (display[k]); } return 1; } static int putCharacter (widechar character) { /*Insert the dots equivalent of a character into the output buffer */ TranslationTableCharacter *chardef; TranslationTableOffset offset; if (cursorStatus == 2) return 1; chardef = (findCharOrDots (character, 0)); if ((chardef->attributes & CTC_Letter) && (chardef->attributes & CTC_UpperCase)) chardef = findCharOrDots (chardef->lowercase, 0); offset = chardef->definitionRule; if (offset) { const TranslationTableRule *rule = (TranslationTableRule *) & table->ruleArea[offset]; if (rule->dotslen) return for_updatePositions (&rule->charsdots[1], 1, rule->dotslen); { widechar d = getDotsForChar (character); return for_updatePositions (&d, 1, 1); } } return undefinedCharacter (character); } static int putCharacters (const widechar * characters, int count) { /*Insert the dot equivalents of a series of characters in the output * buffer */ int k; for (k = 0; k < count; k++) if (!putCharacter (characters[k])) return 0; return 1; } static int doCompbrl () { /*Handle strings containing substrings defined by the compbrl opcode*/ int stringEnd; if (checkAttr (currentInput[src], CTC_Space, 0)) return 1; if (destword) { src = srcword; dest = destword; } else { src = 0; dest = 0; } for (stringEnd = src; stringEnd < srcmax; stringEnd++) if (checkAttr (currentInput[stringEnd], CTC_Space, 0)) break; return (doCompTrans (src, stringEnd)); } static int putCompChar (widechar character) { /*Insert the dots equivalent of a character into the output buffer */ TranslationTableOffset offset = (findCharOrDots (character, 0))->definitionRule; if (offset) { const TranslationTableRule *rule = (TranslationTableRule *) & table->ruleArea[offset]; if (rule->dotslen) return for_updatePositions (&rule->charsdots[1], 1, rule->dotslen); { widechar d = getDotsForChar (character); return for_updatePositions (&d, 1, 1); } } return undefinedCharacter (character); } static int doCompTrans (int start, int end) { int k; if (cursorStatus != 2 && brailleIndicatorDefined (table->begComp)) if (!for_updatePositions (&indicRule->charsdots[0], 0, indicRule->dotslen)) return 0; for (k = start; k < end; k++) { TranslationTableOffset compdots = 0; src = k; if (currentInput[k] < 256) compdots = table->compdotsPattern[currentInput[k]]; if (compdots != 0) { transRule = (TranslationTableRule *) & table->ruleArea[compdots]; if (!for_updatePositions (&transRule->charsdots[transRule->charslen], transRule->charslen, transRule->dotslen)) return 0; } else if (!putCompChar (currentInput[k])) return 0; } if (cursorStatus != 2 && brailleIndicatorDefined (table->endComp)) if (!for_updatePositions (&indicRule->charsdots[0], 0, indicRule->dotslen)) return 0; src = end; return 1; } static int doNocont () { /*Handle strings containing substrings defined by the nocont opcode*/ if (checkAttr (currentInput[src], CTC_Space, 0) || dontContract || (mode & noContractions)) return 1; if (destword) { src = srcword; dest = destword; } else { src = 0; dest = 0; } dontContract = 1; return 1; } static int markSyllables () { int k; int syllableMarker = 0; int currentMark = 0; if (typebuf == NULL || !table->syllables) return 1; src = 0; while (src < srcmax) { /*the main multipass translation loop */ int length = srcmax - src; const TranslationTableCharacter *character = findCharOrDots (currentInput[src], 0); const TranslationTableCharacter *character2; int tryThis = 0; while (tryThis < 3) { TranslationTableOffset ruleOffset = 0; unsigned long int makeHash = 0; switch (tryThis) { case 0: if (!(length >= 2)) break; makeHash = (unsigned long int) character->lowercase << 8; character2 = findCharOrDots (currentInput[src + 1], 0); makeHash += (unsigned long int) character2->lowercase; makeHash %= HASHNUM; ruleOffset = table->forRules[makeHash]; break; case 1: if (!(length >= 1)) break; length = 1; ruleOffset = character->otherRules; break; case 2: /*No rule found */ transOpcode = CTO_Always; ruleOffset = 0; break; } while (ruleOffset) { transRule = (TranslationTableRule *) & table->ruleArea[ruleOffset]; transOpcode = transRule->opcode; transCharslen = transRule->charslen; if (tryThis == 1 || (transCharslen <= length && compareChars (&transRule-> charsdots[0], ¤tInput[src], transCharslen, 0))) { if (transOpcode == CTO_Syllable) { tryThis = 4; break; } } ruleOffset = transRule->charsnext; } tryThis++; } switch (transOpcode) { case CTO_Always: if (src >= srcmax) return 0; if (typebuf != NULL) typebuf[src++] |= currentMark; break; case CTO_Syllable: syllableMarker++; if (syllableMarker > 3) syllableMarker = 1; currentMark = syllableMarker << 6; /*The syllable marker is bita 6 and 7 of typebuf. */ if ((src + transCharslen) > srcmax) return 0; for (k = 0; k < transCharslen; k++) typebuf[src++] |= currentMark; break; default: break; } } return 1; } static int translateString () { /*Main translation routine */ int k; markSyllables (); srcword = 0; destword = 0; /* last word translated */ dontContract = 0; prevTransOpcode = CTO_None; wordsMarked = 0; prevType = prevPrevType = curType = nextType = prevTypeform = plain_text; startType = prevSrc = -1; src = dest = 0; srcIncremented = 1; for (k = 0; k < NUMVAR; k++) passVariables[k] = 0; if (typebuf && table->capitalSign) for (k = 0; k < srcmax; k++) if (checkAttr (currentInput[k], CTC_UpperCase, 0)) typebuf[k] |= capsemph; while (src < srcmax) { /*the main translation loop */ setBefore (); if (!insertBrailleIndicators (0)) goto failure; if (src >= srcmax) break; if (!insertIndicators ()) goto failure; for_selectRule (); if (appliedRules != NULL && appliedRulesCount < maxAppliedRules) appliedRules[appliedRulesCount++] = transRule; srcIncremented = 1; prevSrc = src; switch (transOpcode) /*Rules that pre-empt context and swap */ { case CTO_CompBrl: case CTO_Literal: if (!doCompbrl ()) goto failure; continue; default: break; } if (!insertBrailleIndicators (1)) goto failure; if (transOpcode == CTO_Context || findAttribOrSwapRules ()) switch (transOpcode) { case CTO_Context: if (appliedRules != NULL && appliedRulesCount < maxAppliedRules) appliedRules[appliedRulesCount++] = transRule; if (!passDoAction ()) goto failure; if (endReplace == src) srcIncremented = 0; src = endReplace; continue; default: break; } /*Processing before replacement*/ switch (transOpcode) { case CTO_EndNum: if (table->letterSign && checkAttr (currentInput[src], CTC_Letter, 0)) dest--; break; case CTO_Repeated: case CTO_Space: dontContract = 0; break; case CTO_LargeSign: if (prevTransOpcode == CTO_LargeSign) if (dest > 0 && checkAttr (currentOutput[dest - 1], CTC_Space, 1)) dest--; break; case CTO_DecPoint: if (table->numberSign) { TranslationTableRule *numRule = (TranslationTableRule *) & table->ruleArea[table->numberSign]; if (!for_updatePositions (&numRule->charsdots[numRule->charslen], numRule->charslen, numRule->dotslen)) goto failure; } transOpcode = CTO_MidNum; break; case CTO_NoCont: if (!dontContract) doNocont (); continue; default: break; } /*end of action */ /* replacement processing */ switch (transOpcode) { case CTO_Replace: src += transCharslen; if (!putCharacters (&transRule->charsdots[transCharslen], transRule->dotslen)) goto failure; break; case CTO_None: if (!undefinedCharacter (currentInput[src])) goto failure; src++; break; case CTO_UpperCase: /* Only needs special handling if not within compbrl and *the table defines a capital sign. */ if (! (mode & (compbrlAtCursor | compbrlLeftCursor) && src >= compbrlStart && src <= compbrlEnd) && (transRule->dotslen == 1 && table->capitalSign)) { putCharacter (curCharDef->lowercase); src++; break; } default: if (cursorStatus == 2) cursorStatus = 1; else { if (transRule->dotslen) { if (!for_updatePositions (&transRule->charsdots[transCharslen], transCharslen, transRule->dotslen)) goto failure; } else { for (k = 0; k < transCharslen; k++) { if (!putCharacter (currentInput[src])) goto failure; src++; } } if (cursorStatus == 2) cursorStatus = 1; else if (transRule->dotslen) src += transCharslen; } break; } /* processing after replacement */ switch (transOpcode) { case CTO_Repeated: { /* Skip repeated characters. */ int srclim = srcmax - transCharslen; if (mode & (compbrlAtCursor | compbrlLeftCursor) && compbrlStart < srclim) /* Don't skip characters from compbrlStart onwards. */ srclim = compbrlStart - 1; while ((src <= srclim) && compareChars (&transRule->charsdots[0], ¤tInput[src], transCharslen, 0)) { /* Map skipped input positions to the previous output position. */ if (outputPositions != NULL) { int tcc; for (tcc = 0; tcc < transCharslen; tcc++) outputPositions[prevSrcMapping[src + tcc]] = dest - 1; } if (!cursorStatus && src <= cursorPosition && cursorPosition < src + transCharslen) { cursorStatus = 1; cursorPosition = dest - 1; } src += transCharslen; } break; } case CTO_RepWord: { /* Skip repeated characters. */ int srclim = srcmax - transCharslen; if (mode & (compbrlAtCursor | compbrlLeftCursor) && compbrlStart < srclim) /* Don't skip characters from compbrlStart onwards. */ srclim = compbrlStart - 1; while ((src <= srclim) && compareChars (repwordStart, ¤tInput[src], repwordLength, 0)) { /* Map skipped input positions to the previous output position. */ if (outputPositions != NULL) { int tcc; for (tcc = 0; tcc < transCharslen; tcc++) outputPositions[prevSrcMapping[src + tcc]] = dest - 1; } if (!cursorStatus && src <= cursorPosition && cursorPosition < src + transCharslen) { cursorStatus = 1; cursorPosition = dest - 1; } src += repwordLength + transCharslen; } src -= transCharslen; break; } case CTO_JoinNum: case CTO_JoinableWord: while ((src < srcmax) && checkAttr (currentInput[src], CTC_Space, 0)) src++; break; default: break; } if (((src > 0) && checkAttr (currentInput[src - 1], CTC_Space, 0) && (transOpcode != CTO_JoinableWord))) { srcword = src; destword = dest; } if (srcSpacing != NULL && srcSpacing[src] >= '0' && srcSpacing[src] <= '9') destSpacing[dest] = srcSpacing[src]; if ((transOpcode >= CTO_Always && transOpcode <= CTO_None) || (transOpcode >= CTO_Digit && transOpcode <= CTO_LitDigit)) prevTransOpcode = transOpcode; } /*end of translation loop */ if (haveEmphasis && !wordsMarked && prevPrevType != plain_text) insertBrailleIndicators (2); failure: if (destword != 0 && src < srcmax && !checkAttr (currentInput[src], CTC_Space, 0)) { src = srcword; dest = destword; } if (src < srcmax) { while (checkAttr (currentInput[src], CTC_Space, 0)) if (++src == srcmax) break; } realInlen = src; return 1; } /*first pass translation completed */ int EXPORT_CALL lou_hyphenate (const char *tableList, const widechar * inbuf, int inlen, char *hyphens, int mode) { #define HYPHSTRING 100 widechar workingBuffer[HYPHSTRING]; int k, kk; int wordStart; int wordEnd; table = lou_getTable (tableList); if (table == NULL || inbuf == NULL || hyphens == NULL || table->hyphenStatesArray == 0 || inlen >= HYPHSTRING) return 0; if (mode != 0) { k = inlen; kk = HYPHSTRING; if (!lou_backTranslate (tableList, inbuf, &k, &workingBuffer[0], &kk, NULL, NULL, NULL, NULL, NULL, 0)) return 0; } else { memcpy (&workingBuffer[0], inbuf, CHARSIZE * inlen); kk = inlen; } for (wordStart = 0; wordStart < kk; wordStart++) if (((findCharOrDots (workingBuffer[wordStart], 0))->attributes & CTC_Letter)) break; if (wordStart == kk) return 0; for (wordEnd = kk - 1; wordEnd >= 0; wordEnd--) if (((findCharOrDots (workingBuffer[wordEnd], 0))->attributes & CTC_Letter)) break; for (k = wordStart; k <= wordEnd; k++) { TranslationTableCharacter *c = findCharOrDots (workingBuffer[k], 0); if (!(c->attributes & CTC_Letter)) return 0; } if (!hyphenate (&workingBuffer[wordStart], wordEnd - wordStart + 1, &hyphens[wordStart])) return 0; for (k = 0; k <= wordStart; k++) hyphens[k] = '0'; if (mode != 0) { widechar workingBuffer2[HYPHSTRING]; int outputPos[HYPHSTRING]; char hyphens2[HYPHSTRING]; kk = wordEnd - wordStart + 1; k = HYPHSTRING; if (!lou_translate (tableList, &workingBuffer[wordStart], &kk, &workingBuffer2[0], &k, NULL, NULL, &outputPos[0], NULL, NULL, 0)) return 0; for (kk = 0; kk < k; kk++) { int hyphPos = outputPos[kk]; if (hyphPos > k || hyphPos < 0) break; if (hyphens[wordStart + kk] & 1) hyphens2[hyphPos] = '1'; else hyphens2[hyphPos] = '0'; } for (kk = wordStart; kk < wordStart + k; kk++) if (!table->noBreak || hyphens2[kk] == '0') hyphens[kk] = hyphens2[kk]; else { TranslationTableRule *noBreakRule = (TranslationTableRule *) & table->ruleArea[table->noBreak]; int kkk; if (kk > 0) for (kkk = 0; kkk < noBreakRule->charslen; kkk++) if (workingBuffer2[kk - 1] == noBreakRule->charsdots[kkk]) { hyphens[kk] = '0'; break; } for (kkk = 0; kkk < noBreakRule->dotslen; kkk++); if (workingBuffer2[kk] == noBreakRule->charsdots[noBreakRule->charslen + kkk]) { hyphens[kk] = '0'; break; } } } for (k = 0; k < inlen; k++) if (hyphens[k] & 1) hyphens[k] = '1'; else hyphens[k] = '0'; hyphens[inlen] = 0; return 1; } int EXPORT_CALL lou_dotsToChar (const char *tableList, widechar * inbuf, widechar * outbuf, int length, int mode) { int k; widechar dots; if (tableList == NULL || inbuf == NULL || outbuf == NULL) return 0; if ((mode & otherTrans)) return other_dotsToChar (tableList, inbuf, outbuf, length, mode); table = lou_getTable (tableList); if (table == NULL || length <= 0) return 0; for (k = 0; k < length; k++) { dots = inbuf[k]; if (!(dots & B16) && (dots & 0xff00) == 0x2800) /*Unicode braille */ dots = (dots & 0x00ff) | B16; outbuf[k] = getCharFromDots (dots); } return 1; } int EXPORT_CALL lou_charToDots (const char *tableList, const widechar * inbuf, widechar * outbuf, int length, int mode) { int k; if (tableList == NULL || inbuf == NULL || outbuf == NULL) return 0; if ((mode & otherTrans)) return other_charToDots (tableList, inbuf, outbuf, length, mode); table = lou_getTable (tableList); if (table == NULL || length <= 0) return 0; for (k = 0; k < length; k++) if ((mode & ucBrl)) outbuf[k] = ((getDotsForChar (inbuf[k]) & 0xff) | 0x2800); else outbuf[k] = getDotsForChar (inbuf[k]); return 1; } liblouis-2.5.3/windows/0000775000175000017500000000000012161044235012036 500000000000000liblouis-2.5.3/windows/Makefile.nmake0000775000175000017500000000243512161041523014514 00000000000000# Make liblouis.dll and liblouis.lib # Do not edit this file. Make changes in configure.mk !include configure.mk SRCDIR = ..\liblouis CC = cl.exe CFLAGS = /nologo /O2 /W1 /c CFLAGS = $(CFLAGS) /Iinclude HEADERS = $(SRCDIR)\louis.h include\liblouis.h include\config.h DLLFLAGS = /dll /nologo /DEF:liblouis.def /OUT:liblouis-2.dll OBJ = compileTranslationTable.obj lou_translateString.obj \ lou_backTranslateString.obj wrappers.obj !if "$(UCS)" == "2" CFLAGS = $(CFLAGS) /DWIDECHAR_TYPE="unsigned short int" CFLAGS = $(CFLAGS) /DUNICODEBITS=16 !else CFLAGS = $(CFLAGS) /DWIDECHAR_TYPE="unsigned int" CFLAGS = $(CFLAGS) /DUNICODEBITS=32 !endif all: liblouis-2.lib liblouis.def link $(DLLFLAGS) $(OBJ) liblouis-2.lib: $(OBJ) lib /nologo $(OBJ) /out:liblouis-2.lib compileTranslationTable.obj: $(SRCDIR)\compileTranslationTable.c \ $(HEADERS) $(CC) $(CFLAGS) $(SRCDIR)\compileTranslationTable.c lou_translateString.obj: $(SRCDIR)\lou_translateString.c $(HEADERS) $(CC) $(CFLAGS) $(SRCDIR)\lou_translateString.c lou_backTranslateString.obj: $(SRCDIR)\lou_backTranslateString.c \ $(HEADERS) $(CC) $(CFLAGS) $(SRCDIR)\lou_backTranslateString.c wrappers.obj: $(SRCDIR)\wrappers.c $(HEADERS) $(CC) $(CFLAGS) $(SRCDIR)\wrappers.c liblouis-2.5.3/windows/Makefile.am0000664000175000017500000000012312161041523014003 00000000000000SUBDIRS = include EXTRA_DIST = \ configure.mk \ Makefile.nmake \ liblouis.def liblouis-2.5.3/windows/liblouis.def0000664000175000017500000000076312161041523014263 00000000000000LIBRARY liblouis EXPORTS lou_getProgramPath lou_version lou_charSize lou_translateString lou_translate lou_hyphenate lou_dotsToChar lou_charToDots lou_backTranslateString lou_backTranslate lou_logPrint lou_logFile lou_logEnd lou_compileString lou_setDataPath lou_getTable lou_getDataPath lou_free getDotsForChar getCharFromDots showString showDots showAttributes findOpcodeNumber findOpcodeName extParseChars extParseDots getLastTableList liblouis-2.5.3/windows/include/0000775000175000017500000000000012161044235013461 500000000000000liblouis-2.5.3/windows/include/Makefile.am0000664000175000017500000000005012161041523015425 00000000000000EXTRA_DIST = \ liblouis.h \ config.h liblouis-2.5.3/windows/include/liblouis.h0000664000175000017500000001074212161041523015375 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com liblouis is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. liblouis is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . Maintained by John J. Boyer john.boyer@abilitiessoft.com */ #ifndef __LIBLOUIS_H_ #define __LIBLOUIS_H_ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define widechar WIDECHAR_TYPE #ifdef _WIN32 #define EXPORT_CALL __stdcall char * EXPORT_CALL lou_getProgramPath (void); #else #define EXPORT_CALL #endif typedef enum { plain_text = 0, italic = 1, underline = 2, bold = 4, computer_braille = 8 } typeforms; #define comp_emph_1 italic #define comp_emph_2 underline #define comp_emph_3 bold typedef enum { noContractions = 1, compbrlAtCursor = 2, dotsIO = 4, comp8Dots = 8, pass1Only = 16, compbrlLeftCursor = 32, otherTrans = 64, ucBrl = 128 } translationModes; char * EXPORT_CALL lou_version (void); int EXPORT_CALL lou_charSize (void); /* Return the size of widechar */ int EXPORT_CALL lou_translateString (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode); int EXPORT_CALL lou_translate (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); int EXPORT_CALL lou_hyphenate (const char *tableList, const widechar *inbuf, int inlen, char *hyphens, int mode); int EXPORT_CALL lou_dotsToChar (const char *tableList, widechar *inbuf, widechar *outbuf, int length, int mode); int EXPORT_CALL lou_charToDots (const char *tableList, const widechar *inbuf, widechar *outbuf, int length, int mode); int EXPORT_CALL lou_backTranslateString (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int mode); int EXPORT_CALL lou_backTranslate (const char *tableList, const widechar *inbuf, int *inlen, widechar * outbuf, int *outlen, char *typeform, char *spacing, int *outputPos, int *inputPos, int *cursorPos, int mode); void EXPORT_CALL lou_logPrint (char *format, ...); /* prints error messages to a file */ void EXPORT_CALL lou_logFile (const char *filename); /* Specifies the name of the file to be used by lou_logPrint. If it is * not used, this file is stderr*/ int EXPORT_CALL lou_readCharFromFile (const char *fileName, int *mode); /*Read a character from a file, whether big-encian, little-endian or * ASCII8, and return it as an integer. EOF at end of file. Mode = 1 on * first call, any other value thereafter*/ void EXPORT_CALL lou_logEnd (void); /* Closes the log file so it can be read by other functions. */ void * EXPORT_CALL lou_getTable (const char *tableList); /* This function checks a table for errors. If none are found it loads * the table into memory and returns a pointer to it. if errors are found * it returns a null pointer. It is called by lou_translateString and * lou_backTranslateString and also by functions in liblouisxml */ int EXPORT_CALL lou_compileString (const char *tableList, const char *inString); char * EXPORT_CALL lou_setDataPath (char *path); char * EXPORT_CALL lou_getDataPath (void); void EXPORT_CALL lou_free (void); /* This function should be called at the end of * the application to free all memory allocated by liblouis. */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /*LibLOUIS_H_ */ liblouis-2.5.3/windows/include/Makefile.in0000664000175000017500000004666112161044154015463 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = windows/include DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ liblouis.h \ config.h all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu windows/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu windows/include/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/windows/include/config.h0000664000175000017500000000005412161041523015013 00000000000000#define PACKAGE_VERSION "liblouis-2.5.2" liblouis-2.5.3/windows/Makefile.in0000664000175000017500000006470612161044154014040 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = windows DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = include EXTRA_DIST = \ configure.mk \ Makefile.nmake \ liblouis.def all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu windows/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu windows/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/windows/configure.mk0000664000175000017500000000001112161041523014255 00000000000000UCS=2 liblouis-2.5.3/tests/0000775000175000017500000000000012161044235011506 500000000000000liblouis-2.5.3/tests/harness/0000775000175000017500000000000012161044235013151 500000000000000liblouis-2.5.3/tests/harness/iu-ca-g1_harness.txt0000664000175000017500000000455012161041534016663 00000000000000{ "tables": [ "unicode.dis", "iu-ca-g1.ctb" ], "tests": [ { "data": [ { "input": "á áƒ á… áŠ", "output": "â ¸â °â  â ¸â ˜â  â ¸â •â  â ¸â ªâ " }, { "input": "ᯠᱠ᳠Ḡᑉ", "output": "â ¸â °â  â ¸â ˜â  â ¸â •â  â ¸â ªâ  â ¸â " }, { "input": "ᑌ ᑎ á‘ á‘• ᑦ", "output": "⠸⠰⠞ ⠸⠘⠞ ⠸⠕⠞ ⠸⠪⠞ ⠸⠞" }, { "input": "á‘« á‘­ ᑯ ᑲ á’ƒ", "output": "⠸⠰⠅ ⠸⠘⠅ ⠸⠕⠅ ⠸⠪⠅ ⠸⠅" }, { "input": "á’‰ á’‹ á’ á’ á’¡", "output": "⠸⠰⠛ ⠸⠘⠛ ⠸⠕⠛ ⠸⠪⠛ ⠸⠛" }, { "input": "á’£ á’¥ á’§ á’ª á’»", "output": "â ¸â °â  â ¸â ˜â  â ¸â •â  â ¸â ªâ  â ¸â " }, { "input": "á“€ á“‚ á“„ ᓇ á“", "output": "â ¸â °â  â ¸â ˜â  â ¸â •â  â ¸â ªâ  â ¸â " }, { "input": "á“­ ᓯ ᓱ á“´ á”…", "output": "⠸⠰⠎ ⠸⠘⠎ ⠸⠕⠎ ⠸⠪⠎ ⠸⠎" }, { "input": "á““ á“• á“— ᓚ ᓪ", "output": "⠸⠰⠇ ⠸⠘⠇ ⠸⠕⠇ ⠸⠪⠇ ⠸⠇" }, { "input": "ᔦ ᔨ ᔪ á”­ ᔾ", "output": "⠸⠰⠚ ⠸⠘⠚ ⠸⠕⠚ ⠸⠪⠚ ⠸⠚" }, { "input": "á•“ á•• á•— á•™ á•", "output": "⠸⠰⠋ ⠸⠘⠋ ⠸⠕⠋ ⠸⠪⠋ ⠸⠋" }, { "input": "á•‚ ᕆ ᕈ á•‹ á•", "output": "⠸⠰⠗ ⠸⠘⠗ ⠸⠕⠗ ⠸⠪⠗ ⠸⠗" }, { "input": "ᙯ á•¿ á– á–ƒ á–…", "output": "⠸⠰⠟ ⠸⠘⠟ ⠸⠕⠟ ⠸⠪⠟ ⠸⠟" }, { "input": "á– á–‘ á–“ áŠá–•", "output": "⠸⠘⠑ ⠸⠕⠑ ⠸⠪⠑ â ªâ â ‘" }, { "input": "á™± ᙳ ᙵ áŠá––", "output": "⠸⠘⠙ ⠸⠕⠙ ⠸⠪⠙ â ªâ â ™" }, { "input": "á–  á–¢ á–¤ áŠá–¦", "output": "⠸⠘⠊ ⠸⠕⠊ ⠸⠪⠊ â ªâ â Š" }, { "input": "á•¼áƒ á•¼á… á•¼áŠ '", "output": "â ˜â “â  â •â “â  â ªâ “â  â ¸â  â ´" } ], "flags": { "outputUniBrl": true } } ] }liblouis-2.5.3/tests/harness/Makefile.am0000664000175000017500000000221212161042554015124 00000000000000EXTRA_DIST = \ en-gb-g1_harness.txt \ en-GB-g2_harness.txt \ en-ueb-g2-dictionary_harness.txt \ en-us-g2-dictionary_harness.txt \ ethio-g1_harness.txt \ hu-hu-comp8_harness.txt \ hu-hu-g1_harness.txt \ hu-hu-g1-hyph_harness.txt \ iu-ca-g1_harness.txt \ letterDefTest_harness.txt \ nocross_harness.txt \ ta-ta-g1_harness.txt HARNESS_DIR = $(top_srcdir)/tests/harness harness_ENVIRONMENT = \ HARNESS_DIR=$(HARNESS_DIR) \ LOUIS_TABLEPATH=$(top_srcdir)/tables,$(top_srcdir)/tests/tables,$(top_srcdir)/tests/tables/moreTables \ PYTHONPATH=$(HARNESS_DIR):$(top_srcdir)/python:$$PYTHONPATH \ LD_LIBRARY_PATH=$(top_srcdir)/liblouis/.libs:$$LD_LIBRARY_PATH \ PATH=$(top_srcdir)/tools:$$PATH if HAVE_PYTHON if HAVE_UCS4 runall runAll: @$(harness_ENVIRONMENT) ./runHarness.py $(EXTRA_DIST): @$(harness_ENVIRONMENT) ./runHarness.py $@ else runall runAll: @echo Please configure with --enable-ucs4 endif else runall runAll: @echo Python is required to run the harness tests. endif check: @true .PHONY: $(EXTRA_DIST) runall runAll liblouis-2.5.3/tests/harness/ethio-g1_harness.txt0000664000175000017500000000242312161041534016772 00000000000000{ "tables": [ "unicode.dis", "ethio-g1.ctb" ], "tests": [ { "data": [ { "input": "ኢትዮá’ክ áŠá‹°áˆŽá‰½áŠ• በኮáˆá’ተር ላይ ታይᕠለማድረጠተችáˆáˆá¢", "output": "⠷⠊⠞⠽⠕⠟⠊⠅ â ‹â Šâ ™â ¢â ‡â •â ¡â  â ƒâ ¢â …â •â â Ÿâ Šâ žâ ¢â — â ‡â â ½ â žâ â ½â  ⠇⠢â â â ™â —⠢⠛ ⠞⠢⠡⠇⠭⠇⠲" }, { "input": "á‹á‹­áŠáˆ¥á‹áˆ«áŠ• በኤንጺዲኤ አማካáŠáŠá‰µ የአማርኛ ትáŒáˆªáŠ› áŠá‹°áˆŽá‰½áŠ• በብሬሠማንበብ እና መáƒá ይችላሉá¢", "output": "⠳⠢⠽â â ¢â ¹â ºâ —â â  ⠃⠢⠷⠑â â ®â Šâ ™â Šâ ·â ‘ â ·â ¢â â â …â â ¬â â ¢â ž ⠽⠢⠷⠢â â â —â ¬â  â žâ ›â —â Šâ ¬â  â ‹â Šâ ™â ¢â ‡â •â ¡â  â ƒâ ¢â ƒâ —â ‘â ‡ â â â â ƒâ ¢â ƒ â ·â â  â â ¢â ¯â â ‹ ⠽⠡⠇â â ‡â ¥â ²" }, { "input": "ተዘጋጀ በዶክተር ታáˆáˆ© በላይá¢", "output": "⠞⠢⠵⠢⠛â â šâ ¢ ⠃⠢⠙⠕⠅⠞⠢⠗ â žâ â â —â ¥ ⠃⠢⠇â â ½â ²" }, { "input": "áˆáˆáˆŒ 1 2012", "output": "⠣⠢â â ‡â ‘ â ¼â  â ¼â ƒâ šâ â ƒ" } ], "flags": { "outputUniBrl": true } } ] }liblouis-2.5.3/tests/harness/en-ueb-g2-dictionary_harness.txt0000664000175000017500002270300212161041534021206 00000000000000{ "tables": [ "unicode.dis", "en-ueb-g2.ctb" ], "tests": [ { "data": [ { "input": "A", "output": "â  â " }, { "input": "AOL", "output": "â  â  â â •â ‡" }, { "input": "Aachen", "output": "â  â â â ¡â ¢" }, { "input": "Aaliyah", "output": "â  â â â ‡â Šâ ½â â “" }, { "input": "Aaron", "output": "â  â â œâ •â " }, { "input": "Abbas", "output": "â  â â †â â Ž" }, { "input": "Abbasid", "output": "â  â â †â â Žâ Šâ ™" }, { "input": "Abbott", "output": "â  â â †â •â žâ ž" }, { "input": "Abby", "output": "â  â â †â ½" }, { "input": "Abdul", "output": "â  â â ƒâ ™â ¥â ‡" }, { "input": "Abe", "output": "â  â â ƒâ ‘" }, { "input": "Abel", "output": "â  â â ƒâ ‘â ‡" }, { "input": "Abelard", "output": "â  â â ƒâ ‘⠇⠜⠙" }, { "input": "Abelson", "output": "â  â â ƒâ ‘⠇⠎⠕â " }, { "input": "Aberdeen", "output": "â  â â ƒâ »â ™â ‘â ¢" }, { "input": "Abernathy", "output": "â  â â ƒâ »â â â ¹â ½" }, { "input": "Abidjan", "output": "â  â â ƒâ Šâ ™â šâ â " }, { "input": "Abigail", "output": "â  â â ƒâ Šâ ›â â Šâ ‡" }, { "input": "Abilene", "output": "â  â â ƒâ Šâ ‡â ¢â ‘" }, { "input": "Abner", "output": "â  â â ƒâ â »" }, { "input": "Abraham", "output": "â  â â ƒâ —â â “â â " }, { "input": "Abram", "output": "â  â â ƒâ —â â " }, { "input": "Abrams", "output": "â  â â ƒâ —â â â Ž" }, { "input": "Absalom", "output": "â  â â ƒâ Žâ â ‡â •â " }, { "input": "Abuja", "output": "â  â â ƒâ ¥â šâ " }, { "input": "Abyssinia", "output": "â  â â ƒâ ½â Žâ Žâ ”â Šâ " }, { "input": "Abyssinian", "output": "â  â â ƒâ ½â Žâ Žâ ”â Šâ â " }, { "input": "Ac", "output": "â °â  â â ‰" }, { "input": "Acadia", "output": "â  â â ‰â â ™â Šâ " }, { "input": "Acapulco", "output": "â  â â ‰â â â ¥â ‡â ‰â •" }, { "input": "Accenture", "output": "â  â â ’⠢⠞⠥⠗⠑" }, { "input": "Accra", "output": "â  â â ’â —â " }, { "input": "Acevedo", "output": "â  â â ‰â ‘â §â «â •" }, { "input": "Achaean", "output": "â  â â ¡â â ‚â " }, { "input": "Achebe", "output": "â  â â ¡â ‘⠃⠑" }, { "input": "Achernar", "output": "â  â â ¡â »â â œ" }, { "input": "Acheson", "output": "â  â â ¡â ‘â Žâ •â " }, { "input": "Achilles", "output": "â  â â ¡â Šâ ‡â ‡â ‘â Ž" }, { "input": "Aconcagua", "output": "â  â â ‰â •â â ‰â â ›â ¥â " }, { "input": "Acosta", "output": "â  â â ‰â •â Œâ " }, { "input": "Acropolis", "output": "â  â â ‰â —â •â â •⠇⠊⠎" }, { "input": "Acrux", "output": "â  â â ‰â —⠥⠭" }, { "input": "Actaeon", "output": "â  â â ‰â žâ â ‘â •â " }, { "input": "Acton", "output": "â  â â ‰â žâ •â " }, { "input": "Acts", "output": "â  â â ‰â žâ Ž" }, { "input": "Acuff", "output": "â  â â ‰â ¥â ‹â ‹" }, { "input": "Ada", "output": "â  â â ™â " }, { "input": "Adam", "output": "â  â â ™â â " }, { "input": "Adams", "output": "â  â â ™â â â Ž" }, { "input": "Adan", "output": "â  â â ™â â " }, { "input": "Adana", "output": "â  â â ™â â â " }, { "input": "Adar", "output": "â  â â ™â œ" }, { "input": "Addams", "output": "â  â â ™â ™â â â Ž" }, { "input": "Adderley", "output": "â  â â ™â ™â »â ‡â ‘â ½" }, { "input": "Addie", "output": "â  â â ™â ™â Šâ ‘" }, { "input": "Addison", "output": "â  â â ™â ™â Šâ Žâ •â " }, { "input": "Adela", "output": "â  â â ™â ‘â ‡â " }, { "input": "Adelaide", "output": "â  â â ™â ‘â ‡â â Šâ ™â ‘" }, { "input": "Adele", "output": "â  â â ™â ‘⠇⠑" }, { "input": "Adeline", "output": "â  â â ™â ‘⠇⠔⠑" }, { "input": "Aden", "output": "â  â â ™â ¢" }, { "input": "Adenauer", "output": "â  â â ™â ¢â â ¥â »" }, { "input": "Adhara", "output": "â  â â ™â “â œâ " }, { "input": "Adidas", "output": "â  â â ™â Šâ ™â â Ž" }, { "input": "Adirondack", "output": "â  â â ™â Šâ —â •â â ™â â ‰â …" }, { "input": "Adirondacks", "output": "â  â â ™â Šâ —â •â â ™â â ‰â …â Ž" }, { "input": "Adkins", "output": "â  â â ™â …⠔⠎" }, { "input": "Adler", "output": "â  â â ™â ‡â »" }, { "input": "Adolf", "output": "â  â â ™â •⠇⠋" }, { "input": "Adolfo", "output": "â  â â ™â •⠇⠋⠕" }, { "input": "Adolph", "output": "â  â â ™â •â ‡â â “" }, { "input": "Adonis", "output": "â  â â ™â •â â Šâ Ž" }, { "input": "Adonises", "output": "â  â â ™â •â â Šâ Žâ ‘â Ž" }, { "input": "Adrian", "output": "â  â â ™â —â Šâ â " }, { "input": "Adriana", "output": "â  â â ™â —â Šâ â â " }, { "input": "Adriatic", "output": "â  â â ™â —â Šâ â žâ Šâ ‰" }, { "input": "Adrienne", "output": "â  â â ™â —â Šâ ¢â â ‘" }, { "input": "Advent", "output": "â  â â ™â §â ¢â ž" }, { "input": "Adventist", "output": "â  â â ™â §â ¢â žâ Šâ Œ" }, { "input": "Advents", "output": "â  â â ™â §â ¢â žâ Ž" }, { "input": "Advil", "output": "â  â â ™â §â Šâ ‡" }, { "input": "Aegean", "output": "â  â â ‘⠛⠂â " }, { "input": "Aelfric", "output": "â  â â ‘⠇⠋⠗⠊⠉" }, { "input": "Aeneas", "output": "â  â â ¢â ‚â Ž" }, { "input": "Aeneid", "output": "â  â â ¢â ‘â Šâ ™" }, { "input": "Aeolus", "output": "â  â â ‘⠕⠇⠥⠎" }, { "input": "Aeroflot", "output": "â  â â »â •⠋⠇⠕⠞" }, { "input": "Aeschylus", "output": "â  â â ‘⠎⠡⠽⠇⠥⠎" }, { "input": "Aesculapius", "output": "â  â â ‘⠎⠉⠥⠇â â â Šâ ¥â Ž" }, { "input": "Aesop", "output": "â  â â ‘â Žâ •â " }, { "input": "Afghan", "output": "â  â â ‹â £â â " }, { "input": "Afghanistan", "output": "â  â â ‹â £â â â Šâ Œâ â " }, { "input": "Afghans", "output": "â  â â ‹â £â â â Ž" }, { "input": "Africa", "output": "â  â â ‹â —â Šâ ‰â " }, { "input": "African", "output": "â  â â ‹â —â Šâ ‰â â " }, { "input": "Africans", "output": "â  â â ‹â —â Šâ ‰â â â Ž" }, { "input": "Afrikaans", "output": "â  â â ‹â —â Šâ …â â â â Ž" }, { "input": "Afrikaner", "output": "â  â â ‹â —â Šâ …â â â »" }, { "input": "Afrikaners", "output": "â  â â ‹â —â Šâ …â â â »â Ž" }, { "input": "Afro", "output": "â  â â ‹â —â •" }, { "input": "Afrocentrism", "output": "â  â â ‹â —⠕⠉⠢⠞⠗⠊⠎â " }, { "input": "Afros", "output": "â  â â ‹â —â •â Ž" }, { "input": "Ag", "output": "â °â  â â ›" }, { "input": "Agamemnon", "output": "â  â â ›â â â ‘â â â •â " }, { "input": "Agassi", "output": "â  â â ›â â Žâ Žâ Š" }, { "input": "Agassiz", "output": "â  â â ›â â Žâ Žâ Šâ µ" }, { "input": "Agatha", "output": "â  â â ›â â ¹â " }, { "input": "Aggie", "output": "â  â â ¶â Šâ ‘" }, { "input": "Aglaia", "output": "â  â â ›â ‡â â Šâ " }, { "input": "Agnes", "output": "â  â â ›â â ‘â Ž" }, { "input": "Agnew", "output": "â  â â ›â â ‘â º" }, { "input": "Agni", "output": "â  â â ›â â Š" }, { "input": "Agra", "output": "â  â â ›â —â " }, { "input": "Agricola", "output": "â  â â ›â —⠊⠉⠕⠇â " }, { "input": "Agrippa", "output": "â  â â ›â —â Šâ â â " }, { "input": "Agrippina", "output": "â  â â ›â —â Šâ â â ”â " }, { "input": "Aguilar", "output": "â  â â ›â ¥â Šâ ‡â œ" }, { "input": "Aguinaldo", "output": "â  â â ›â ¥â ”â â ‡â ™â •" }, { "input": "Aguirre", "output": "â  â â ›â ¥â Šâ —â —â ‘" }, { "input": "Agustin", "output": "â  â â ›â ¥â Œâ ”" }, { "input": "Ahab", "output": "â  â â “â â ƒ" }, { "input": "Ahmad", "output": "â  â â “â â â ™" }, { "input": "Ahmadabad", "output": "â  â â “â â â ™â â ƒâ â ™" }, { "input": "Ahmadinejad", "output": "â  â â “â â â ™â ”â ‘â šâ â ™" }, { "input": "Ahmed", "output": "â  â â “â â «" }, { "input": "Ahriman", "output": "â  â â “â —â Šâ â â " }, { "input": "Aida", "output": "â  â â Šâ ™â " }, { "input": "Aiken", "output": "â  â â Šâ …â ¢" }, { "input": "Aileen", "output": "â  â â Šâ ‡â ‘â ¢" }, { "input": "Aimee", "output": "â  â â Šâ â ‘â ‘" }, { "input": "Ainu", "output": "â  â â ”â ¥" }, { "input": "Airedale", "output": "â  â â Šâ —â ‘â ™â â ‡â ‘" }, { "input": "Airedales", "output": "â  â â Šâ —â ‘â ™â â ‡â ‘â Ž" }, { "input": "Aisha", "output": "â  â â Šâ ©â " }, { "input": "Ajax", "output": "â  â â šâ â ­" }, { "input": "Akbar", "output": "â  â â …⠃⠜" }, { "input": "Akhmatova", "output": "â  â â …â “â â â žâ •â §â " }, { "input": "Akihito", "output": "â  â â …â Šâ “â Šâ žâ •" }, { "input": "Akita", "output": "â  â â …â Šâ žâ " }, { "input": "Akiva", "output": "â  â â …â Šâ §â " }, { "input": "Akkad", "output": "â  â â …â …â â ™" }, { "input": "Akron", "output": "â  â â …â —â •â " }, { "input": "Al", "output": "â °â  â â ‡" }, { "input": "Ala", "output": "â  â â ‡â " }, { "input": "Alabama", "output": "â  â â ‡â â ƒâ â â " }, { "input": "Alabaman", "output": "â  â â ‡â â ƒâ â â â " }, { "input": "Alabamans", "output": "â  â â ‡â â ƒâ â â â â Ž" }, { "input": "Alabamian", "output": "â  â â ‡â â ƒâ â â Šâ â " }, { "input": "Alabamians", "output": "â  â â ‡â â ƒâ â â Šâ â â Ž" }, { "input": "Aladdin", "output": "â  â â ‡â â ™â ™â ”" }, { "input": "Alamo", "output": "â  â â ‡â â â •" }, { "input": "Alamogordo", "output": "â  â â ‡â â â •⠛⠕⠗⠙⠕" }, { "input": "Alan", "output": "â  â â ‡â â " }, { "input": "Alana", "output": "â  â â ‡â â â " }, { "input": "Alar", "output": "â  â â ‡â œ" }, { "input": "Alaric", "output": "â  â â ‡â œâ Šâ ‰" }, { "input": "Alaska", "output": "â  â â ‡â â Žâ …â " }, { "input": "Alaskan", "output": "â  â â ‡â â Žâ …â â " }, { "input": "Alaskans", "output": "â  â â ‡â â Žâ …â â â Ž" }, { "input": "Alba", "output": "â  â â ‡â ƒâ " }, { "input": "Albania", "output": "â  â â ‡â ƒâ â â Šâ " }, { "input": "Albanian", "output": "â  â â ‡â ƒâ â â Šâ â " }, { "input": "Albanians", "output": "â  â â ‡â ƒâ â â Šâ â â Ž" }, { "input": "Albany", "output": "â  â â ‡â ƒâ â â ½" }, { "input": "Albee", "output": "â  â â ‡â ƒâ ‘â ‘" }, { "input": "Alberio", "output": "â  â â ‡â ƒâ »â Šâ •" }, { "input": "Albert", "output": "â  â â ‡â ƒâ »â ž" }, { "input": "Alberta", "output": "â  â â ‡â ƒâ »â žâ " }, { "input": "Alberto", "output": "â  â â ‡â ƒâ »â žâ •" }, { "input": "Albigensian", "output": "â  â â ‡â ƒâ Šâ ›â ¢â Žâ Šâ â " }, { "input": "Albion", "output": "â  â â ‡â ƒâ Šâ •â " }, { "input": "Albireo", "output": "â  â â ‡â ƒâ Šâ —â ‘â •" }, { "input": "Albuquerque", "output": "â  â â ‡â ƒâ ¥â Ÿâ ¥â »â Ÿâ ¥â ‘" }, { "input": "Alcatraz", "output": "â  â â ‡â ‰â â žâ —â â µ" }, { "input": "Alcestis", "output": "â  â â ‡â ‰â ‘⠌⠊⠎" }, { "input": "Alcibiades", "output": "â  â â ‡â ‰â Šâ ƒâ Šâ â ™â ‘â Ž" }, { "input": "Alcindor", "output": "â  â â ‡â ‰â ”⠙⠕⠗" }, { "input": "Alcmena", "output": "â  â â ‡â ‰â â ¢â " }, { "input": "Alcoa", "output": "â  â â ‡â ‰â •â " }, { "input": "Alcott", "output": "â  â â ‡â ‰â •â žâ ž" }, { "input": "Alcuin", "output": "â  â â ‡â ‰â ¥â ”" }, { "input": "Alcyone", "output": "â  â â ‡â ‰â ½â •â â ‘" }, { "input": "Aldan", "output": "â  â â ‡â ™â â " }, { "input": "Aldebaran", "output": "â  â â ‡â ™â ‘⠃⠜â â " }, { "input": "Alden", "output": "â  â â ‡â ™â ¢" }, { "input": "Alderamin", "output": "â  â â ‡â ™â »â â â ”" }, { "input": "Aldo", "output": "â  â â ‡â ™â •" }, { "input": "Aldrin", "output": "â  â â ‡â ™â —â ”" }, { "input": "Alec", "output": "â  â â ‡â ‘â ‰" }, { "input": "Aleichem", "output": "â  â â ‡â ‘â Šâ ¡â ‘â " }, { "input": "Alejandra", "output": "â  â â ‡â ‘⠚⠯⠗â " }, { "input": "Alejandro", "output": "â  â â ‡â ‘⠚⠯⠗⠕" }, { "input": "Alembert", "output": "â  â â ‡â ‘â â ƒâ »â ž" }, { "input": "Aleppo", "output": "â  â â ‡â ‘â â â •" }, { "input": "Aleut", "output": "â  â â ‡â ‘⠥⠞" }, { "input": "Aleutian", "output": "â  â â ‡â ‘⠥⠞⠊â â " }, { "input": "Alex", "output": "â  â â ‡â ‘â ­" }, { "input": "Alexander", "output": "â  â â ‡â ‘⠭⠯⠻" }, { "input": "Alexandra", "output": "â  â â ‡â ‘⠭⠯⠗â " }, { "input": "Alexandria", "output": "â  â â ‡â ‘⠭⠯⠗⠊â " }, { "input": "Alexei", "output": "â  â â ‡â ‘â ­â ‘â Š" }, { "input": "Alexis", "output": "â  â â ‡â ‘â ­â Šâ Ž" }, { "input": "Alfonso", "output": "â  â â ‡â ‹â •â â Žâ •" }, { "input": "Alfonzo", "output": "â  â â ‡â ‹â •â â µâ •" }, { "input": "Alford", "output": "â  â â ‡â ¿â ™" }, { "input": "Alfred", "output": "â  â â ‡â ‹â —â «" }, { "input": "Alfreda", "output": "â  â â ‡â ‹â —â «â " }, { "input": "Alfredo", "output": "â  â â ‡â ‹â —â «â •" }, { "input": "Algenib", "output": "â  â â ‡â ›â ¢â Šâ ƒ" }, { "input": "Alger", "output": "â  â â ‡â ›â »" }, { "input": "Algeria", "output": "â  â â ‡â ›â »â Šâ " }, { "input": "Algerian", "output": "â  â â ‡â ›â »â Šâ â " }, { "input": "Algerians", "output": "â  â â ‡â ›â »â Šâ â â Ž" }, { "input": "Algieba", "output": "â  â â ‡â ›â Šâ ‘â ƒâ " }, { "input": "Algiers", "output": "â  â â ‡â ›â Šâ »â Ž" }, { "input": "Algol", "output": "â  â â ‡â ›â •â ‡" }, { "input": "Algonquian", "output": "â  â â ‡â ›â •â â Ÿâ ¥â Šâ â " }, { "input": "Algonquians", "output": "â  â â ‡â ›â •â â Ÿâ ¥â Šâ â â Ž" }, { "input": "Algonquin", "output": "â  â â ‡â ›â •â â Ÿâ ¥â ”" }, { "input": "Alhambra", "output": "â  â â ‡â “â â â ƒâ —â " }, { "input": "Alhena", "output": "â  â â ‡â “â ¢â " }, { "input": "Ali", "output": "â  â â ‡â Š" }, { "input": "Alice", "output": "â  â â ‡â Šâ ‰â ‘" }, { "input": "Alicia", "output": "â  â â ‡â Šâ ‰â Šâ " }, { "input": "Alighieri", "output": "â  â â ‡â Šâ £â Šâ »â Š" }, { "input": "Aline", "output": "â  â â ‡â ”â ‘" }, { "input": "Alioth", "output": "â  â â ‡â Šâ •â ¹" }, { "input": "Alisa", "output": "â  â â ‡â Šâ Žâ " }, { "input": "Alisha", "output": "â  â â ‡â Šâ ©â " }, { "input": "Alison", "output": "â  â â ‡â Šâ Žâ •â " }, { "input": "Alissa", "output": "â  â â ‡â Šâ Žâ Žâ " }, { "input": "Alistair", "output": "â  â â ‡â Šâ Œâ â Šâ —" }, { "input": "Alkaid", "output": "â  â â ‡â …â â Šâ ™" }, { "input": "Allah", "output": "â  â â ‡â ‡â â “" }, { "input": "Allahabad", "output": "â  â â ‡â ‡â â “â â ƒâ â ™" }, { "input": "Allan", "output": "â  â â ‡â ‡â â " }, { "input": "Alleghenies", "output": "â  â â ‡â ‡â ‘⠣⠢⠊⠑⠎" }, { "input": "Allegheny", "output": "â  â â ‡â ‡â ‘⠣⠢⠽" }, { "input": "Allegra", "output": "â  â â ‡â ‡â ‘⠛⠗â " }, { "input": "Allen", "output": "â  â â ‡â ‡â ¢" }, { "input": "Allende", "output": "â  â â ‡â ‡â ¢â ™â ‘" }, { "input": "Allentown", "output": "â  â â ‡â ‡â ¢â žâ ªâ " }, { "input": "Allie", "output": "â  â â ‡â ‡â Šâ ‘" }, { "input": "Allison", "output": "â  â â ‡â ‡â Šâ Žâ •â " }, { "input": "Allstate", "output": "â  â â ‡â ‡â Œâ â žâ ‘" }, { "input": "Allyson", "output": "â  â â ‡â ‡â ½â Žâ •â " }, { "input": "Alma", "output": "â  â â ‡â â " }, { "input": "Almach", "output": "â  â â ‡â â â ¡" }, { "input": "Almaty", "output": "â  â â ‡â â â žâ ½" }, { "input": "Almighty", "output": "â  â â ‡â â Šâ £â žâ ½" }, { "input": "Almohad", "output": "â  â â ‡â â •⠸⠓" }, { "input": "Almoravid", "output": "â  â â ‡â â •â —â â §â Šâ ™" }, { "input": "Alnilam", "output": "â  â â ‡â â Šâ ‡â â " }, { "input": "Alnitak", "output": "â  â â ‡â â Šâ žâ â …" }, { "input": "Alonzo", "output": "â  â â ‡â •â â µâ •" }, { "input": "Alpert", "output": "â  â â ‡â â »â ž" }, { "input": "Alphard", "output": "â  â â ‡â â “⠜⠙" }, { "input": "Alphecca", "output": "â  â â ‡â â “â ‘â ’â " }, { "input": "Alpheratz", "output": "â  â â ‡â â “â »â â žâ µ" }, { "input": "Alphonse", "output": "â  â â ‡â â “â •â â Žâ ‘" }, { "input": "Alphonso", "output": "â  â â ‡â â “â •â â Žâ •" }, { "input": "Alpine", "output": "â  â â ‡â â ”â ‘" }, { "input": "Alpo", "output": "â  â â ‡â â •" }, { "input": "Alps", "output": "â  â â ‡â â Ž" }, { "input": "Alsace", "output": "â  â â ‡â Žâ â ‰â ‘" }, { "input": "Alsatian", "output": "â  â â ‡â Žâ â žâ Šâ â " }, { "input": "Alsop", "output": "â  â â ‡â Žâ •â " }, { "input": "Alston", "output": "â  â â ‡â Œâ •â " }, { "input": "Alta", "output": "â  â â ‡â žâ " }, { "input": "Altai", "output": "â  â â ‡â žâ â Š" }, { "input": "Altaic", "output": "â  â â ‡â žâ â Šâ ‰" }, { "input": "Altair", "output": "â  â â ‡â žâ â Šâ —" }, { "input": "Altamira", "output": "â  â â ‡â žâ â â Šâ —â " }, { "input": "Althea", "output": "â  â â ‡â ®â " }, { "input": "Altiplano", "output": "â  â â ‡â žâ Šâ â ‡â â â •" }, { "input": "Altman", "output": "â  â â ‡â žâ â â " }, { "input": "Altoids", "output": "â  â â ‡â žâ •⠊⠙⠎" }, { "input": "Alton", "output": "â  â â ‡â žâ •â " }, { "input": "Aludra", "output": "â  â â ‡â ¥â ™â —â " }, { "input": "Alva", "output": "â  â â ‡â §â " }, { "input": "Alvarado", "output": "â  â â ‡â §â œâ â ™â •" }, { "input": "Alvarez", "output": "â  â â ‡â §â œâ ‘â µ" }, { "input": "Alvaro", "output": "â  â â ‡â §â œâ •" }, { "input": "Alvin", "output": "â  â â ‡â §â ”" }, { "input": "Alyce", "output": "â  â â ‡â ½â ‰â ‘" }, { "input": "Alyson", "output": "â  â â ‡â ½â Žâ •â " }, { "input": "Alyssa", "output": "â  â â ‡â ½â Žâ Žâ " }, { "input": "Alzheimer", "output": "â  â â ‡â µâ “â ‘â Šâ â »" }, { "input": "Am", "output": "â  â â " }, { "input": "Amadeus", "output": "â  â â â â ™â ‘⠥⠎" }, { "input": "Amado", "output": "â  â â â â ™â •" }, { "input": "Amalia", "output": "â  â â â â ‡â Šâ " }, { "input": "Amanda", "output": "â  â â â ¯â " }, { "input": "Amarillo", "output": "â  â â â œâ Šâ ‡â ‡â •" }, { "input": "Amaru", "output": "â  â â â œâ ¥" }, { "input": "Amaterasu", "output": "â  â â â â žâ »â â Žâ ¥" }, { "input": "Amati", "output": "â  â â â â žâ Š" }, { "input": "Amazon", "output": "â  â â â â µâ •â " }, { "input": "Amazons", "output": "â  â â â â µâ •â â Ž" }, { "input": "Amber", "output": "â  â â â ƒâ »" }, { "input": "Amelia", "output": "â  â â â ‘⠇⠊â " }, { "input": "Amenhotep", "output": "â  â â â ¢â “â •â žâ ‘â " }, { "input": "Amerasian", "output": "â  â â â »â â Žâ Šâ â " }, { "input": "America", "output": "â  â â â »â Šâ ‰â " }, { "input": "American", "output": "â  â â â »â Šâ ‰â â " }, { "input": "Americana", "output": "â  â â â »â Šâ ‰â â â " }, { "input": "Americanism", "output": "â  â â â »â Šâ ‰â â â Šâ Žâ " }, { "input": "Americanisms", "output": "â  â â â »â Šâ ‰â â â Šâ Žâ â Ž" }, { "input": "Americanization", "output": "â  â â â »â Šâ ‰â â â Šâ µâ â °â " }, { "input": "Americanizations", "output": "â  â â â »â Šâ ‰â â â Šâ µâ â °â â Ž" }, { "input": "Americanize", "output": "â  â â â »â Šâ ‰â â â Šâ µâ ‘" }, { "input": "Americanized", "output": "â  â â â »â Šâ ‰â â â Šâ µâ «" }, { "input": "Americanizes", "output": "â  â â â »â Šâ ‰â â â Šâ µâ ‘â Ž" }, { "input": "Americanizing", "output": "â  â â â »â Šâ ‰â â â Šâ µâ ¬" }, { "input": "Americans", "output": "â  â â â »â Šâ ‰â â â Ž" }, { "input": "Americas", "output": "â  â â â »â Šâ ‰â â Ž" }, { "input": "Amerind", "output": "â  â â â »â ”â ™" }, { "input": "Amerindian", "output": "â  â â â »â ”⠙⠊â â " }, { "input": "Amerindians", "output": "â  â â â »â ”⠙⠊â â â Ž" }, { "input": "Amerinds", "output": "â  â â â »â ”⠙⠎" }, { "input": "Ameslan", "output": "â  â â â ‘â Žâ ‡â â " }, { "input": "Amharic", "output": "â  â â â “⠜⠊⠉" }, { "input": "Amherst", "output": "â  â â â “⠻⠌" }, { "input": "Amie", "output": "â  â â â Šâ ‘" }, { "input": "Amiga", "output": "â  â â â Šâ ›â " }, { "input": "Amish", "output": "â  â â â Šâ ©" }, { "input": "Amman", "output": "â  â â â â â " }, { "input": "Amoco", "output": "â  â â â •⠉⠕" }, { "input": "Amos", "output": "â  â â â •â Ž" }, { "input": "Amparo", "output": "â  â â â â œâ •" }, { "input": "Ampere", "output": "â  â â â â »â ‘" }, { "input": "Amritsar", "output": "â  â â â —â Šâ žâ Žâ œ" }, { "input": "Amsterdam", "output": "â  â â â Œâ »â ™â â " }, { "input": "Amtrak", "output": "â  â â â žâ —â â …" }, { "input": "Amundsen", "output": "â  â â â ¥â â ™â Žâ ¢" }, { "input": "Amur", "output": "â  â â â ¥â —" }, { "input": "Amway", "output": "â  â â â ºâ â ½" }, { "input": "Amy", "output": "â  â â â ½" }, { "input": "Ana", "output": "â  â â â " }, { "input": "Anabaptist", "output": "â  â â â â ƒâ â â žâ Šâ Œ" }, { "input": "Anabel", "output": "â  â â â â ƒâ ‘â ‡" }, { "input": "Anacin", "output": "â  â â â â ‰â ”" }, { "input": "Anacreon", "output": "â  â â â â ‰â —â ‘â •â " }, { "input": "Anaheim", "output": "â  â â â â “â ‘â Šâ " }, { "input": "Analects", "output": "â  â â â â ‡â ‘⠉⠞⠎" }, { "input": "Ananias", "output": "â  â â â â â Šâ â Ž" }, { "input": "Anasazi", "output": "â  â â â â Žâ â µâ Š" }, { "input": "Anastasia", "output": "â  â â â â Œâ â Žâ Šâ " }, { "input": "Anatole", "output": "â  â â â â žâ •⠇⠑" }, { "input": "Anatolia", "output": "â  â â â â žâ •⠇⠊â " }, { "input": "Anatolian", "output": "â  â â â â žâ •⠇⠊â â " }, { "input": "Anaxagoras", "output": "â  â â â â ­â â ›â •â —â â Ž" }, { "input": "Anchorage", "output": "â  â â â ¡â •â —â â ›â ‘" }, { "input": "Andalusia", "output": "â  â ¯â â ‡â ¥â Žâ Šâ " }, { "input": "Andalusian", "output": "â  â ¯â â ‡â ¥â Žâ Šâ â " }, { "input": "Andaman", "output": "â  â ¯â â â â " }, { "input": "Andean", "output": "⠠⠯⠂â " }, { "input": "Andersen", "output": "⠠⠯⠻⠎⠢" }, { "input": "Anderson", "output": "⠠⠯⠻⠎⠕â " }, { "input": "Andes", "output": "⠠⠯⠑⠎" }, { "input": "Andorra", "output": "⠠⠯⠕⠗⠗â " }, { "input": "Andre", "output": "⠠⠯⠗⠑" }, { "input": "Andrea", "output": "⠠⠯⠗⠑â " }, { "input": "Andrei", "output": "⠠⠯⠗⠑⠊" }, { "input": "Andres", "output": "⠠⠯⠗⠑⠎" }, { "input": "Andretti", "output": "⠠⠯⠗⠑⠞⠞⠊" }, { "input": "Andrew", "output": "⠠⠯⠗⠑⠺" }, { "input": "Andrews", "output": "⠠⠯⠗⠑⠺⠎" }, { "input": "Andrianampoinimerina", "output": "⠠⠯⠗⠊â â â â â â •⠔⠊â â »â ”â " }, { "input": "Android", "output": "⠠⠯⠗⠕⠊⠙" }, { "input": "Andromache", "output": "⠠⠯⠗⠕â â â ¡â ‘" }, { "input": "Andromeda", "output": "⠠⠯⠗⠕â â «â " }, { "input": "Andropov", "output": "⠠⠯⠗⠕â â •â §" }, { "input": "Andy", "output": "⠠⠯⠽" }, { "input": "Angara", "output": "â  â â â ›â œâ " }, { "input": "Angel", "output": "â  â â â ›â ‘â ‡" }, { "input": "Angela", "output": "â  â â â ›â ‘â ‡â " }, { "input": "Angelia", "output": "â  â â â ›â ‘⠇⠊â " }, { "input": "Angelica", "output": "â  â â â ›â ‘⠇⠊⠉â " }, { "input": "Angelico", "output": "â  â â â ›â ‘⠇⠊⠉⠕" }, { "input": "Angelina", "output": "â  â â â ›â ‘⠇⠔â " }, { "input": "Angeline", "output": "â  â â â ›â ‘⠇⠔⠑" }, { "input": "Angelique", "output": "â  â â â ›â ‘⠇⠊⠟⠥⠑" }, { "input": "Angelita", "output": "â  â â â ›â ‘⠇⠊⠞â " }, { "input": "Angelo", "output": "â  â â â ›â ‘⠇⠕" }, { "input": "Angelou", "output": "â  â â â ›â ‘⠇⠳" }, { "input": "Angevin", "output": "â  â â â ›â ‘â §â ”" }, { "input": "Angie", "output": "â  â â â ›â Šâ ‘" }, { "input": "Angkor", "output": "â  â â â ›â …â •â —" }, { "input": "Anglia", "output": "â  â â â ›â ‡â Šâ " }, { "input": "Anglican", "output": "â  â â â ›â ‡â Šâ ‰â â " }, { "input": "Anglicanism", "output": "â  â â â ›â ‡â Šâ ‰â â â Šâ Žâ " }, { "input": "Anglicanisms", "output": "â  â â â ›â ‡â Šâ ‰â â â Šâ Žâ â Ž" }, { "input": "Anglicans", "output": "â  â â â ›â ‡â Šâ ‰â â â Ž" }, { "input": "Anglicize", "output": "â  â â â ›â ‡â Šâ ‰â Šâ µâ ‘" }, { "input": "Anglo", "output": "â  â â â ›â ‡â •" }, { "input": "Anglophile", "output": "â  â â â ›â ‡â •â â “⠊⠇⠑" }, { "input": "Angola", "output": "â  â â â ›â •â ‡â " }, { "input": "Angolan", "output": "â  â â â ›â •â ‡â â " }, { "input": "Angolans", "output": "â  â â â ›â •â ‡â â â Ž" }, { "input": "Angora", "output": "â  â â â ›â •â —â " }, { "input": "Angoras", "output": "â  â â â ›â •â —â â Ž" }, { "input": "Anguilla", "output": "â  â â â ›â ¥â Šâ ‡â ‡â " }, { "input": "Angus", "output": "â  â â â ›â ¥â Ž" }, { "input": "Aniakchak", "output": "â  â â â Šâ â …â ¡â â …" }, { "input": "Anibal", "output": "â  â â â Šâ ƒâ â ‡" }, { "input": "Anita", "output": "â  â â â Šâ žâ " }, { "input": "Ankara", "output": "â  â â â …â œâ " }, { "input": "Ann", "output": "â  â â â " }, { "input": "Anna", "output": "â  â â â â " }, { "input": "Annabel", "output": "â  â â â â â ƒâ ‘â ‡" }, { "input": "Annabelle", "output": "â  â â â â â ƒâ ‘⠇⠇⠑" }, { "input": "Annam", "output": "â  â â â â â " }, { "input": "Annapolis", "output": "â  â â â â â â •⠇⠊⠎" }, { "input": "Annapurna", "output": "â  â â â â â â ¥â —â â " }, { "input": "Anne", "output": "â  â â â â ‘" }, { "input": "Annette", "output": "â  â â â â ‘â žâ žâ ‘" }, { "input": "Annie", "output": "â  â â â â Šâ ‘" }, { "input": "Annmarie", "output": "â  â â â â â œâ Šâ ‘" }, { "input": "Anouilh", "output": "â  â â â ³â Šâ ‡â “" }, { "input": "Anselm", "output": "â  â â â Žâ ‘â ‡â " }, { "input": "Anselmo", "output": "â  â â â Žâ ‘â ‡â â •" }, { "input": "Anshan", "output": "â  â â â ©â â " }, { "input": "Antaeus", "output": "â  â â â žâ â ‘⠥⠎" }, { "input": "Antananarivo", "output": "â  â â â žâ â â â â œâ Šâ §â •" }, { "input": "Antarctic", "output": "â  â â â žâ œâ ‰â žâ Šâ ‰" }, { "input": "Antarctica", "output": "â  â â â žâ œâ ‰â žâ Šâ ‰â " }, { "input": "Antares", "output": "â  â â â žâ œâ ‘â Ž" }, { "input": "Anthony", "output": "â  â â â ¹â •â â ½" }, { "input": "Antichrist", "output": "â  â â â žâ Šâ ¡â —â Šâ Œ" }, { "input": "Antichrists", "output": "â  â â â žâ Šâ ¡â —⠊⠌⠎" }, { "input": "Antietam", "output": "â  â â â žâ Šâ ‘â žâ â " }, { "input": "Antigone", "output": "â  â â â žâ Šâ ›â •â â ‘" }, { "input": "Antigua", "output": "â  â â â žâ Šâ ›â ¥â " }, { "input": "Antilles", "output": "â  â â â žâ Šâ ‡â ‡â ‘â Ž" }, { "input": "Antioch", "output": "â  â â â žâ Šâ •â ¡" }, { "input": "Antipas", "output": "â  â â â žâ Šâ â â Ž" }, { "input": "Antofagasta", "output": "â  â â â žâ ·â â ›â â Œâ " }, { "input": "Antoine", "output": "â  â â â žâ •⠔⠑" }, { "input": "Antoinette", "output": "â  â â â žâ •⠔⠑⠞⠞⠑" }, { "input": "Anton", "output": "â  â â â žâ •â " }, { "input": "Antone", "output": "â  â â â žâ â •" }, { "input": "Antonia", "output": "â  â â â žâ •â â Šâ " }, { "input": "Antoninus", "output": "â  â â â žâ •â â ”⠥⠎" }, { "input": "Antonio", "output": "â  â â â žâ •â â Šâ •" }, { "input": "Antonius", "output": "â  â â â žâ •â â Šâ ¥â Ž" }, { "input": "Antony", "output": "â  â â â žâ •â â ½" }, { "input": "Antwan", "output": "â  â â â žâ ºâ â " }, { "input": "Antwerp", "output": "â  â â â žâ ºâ »â " }, { "input": "Anubis", "output": "â  â â â ¥â ƒâ Šâ Ž" }, { "input": "Anzac", "output": "â  â â â µâ â ‰" }, { "input": "Apache", "output": "â  â â â â ¡â ‘" }, { "input": "Apaches", "output": "â  â â â â ¡â ‘â Ž" }, { "input": "Apalachicola", "output": "â  â â â â ‡â â ¡â Šâ ‰â •â ‡â " }, { "input": "Apennines", "output": "â  â â â ¢â â ”â ‘â Ž" }, { "input": "Aphrodite", "output": "â  â â â “⠗⠕⠙⠊⠞⠑" }, { "input": "Apia", "output": "â  â â â Šâ " }, { "input": "Apocrypha", "output": "â  â â â •⠉⠗⠽â â “â " }, { "input": "Apollinaire", "output": "â  â â â •⠇⠇⠔â â Šâ —â ‘" }, { "input": "Apollo", "output": "â  â â â •⠇⠇⠕" }, { "input": "Apollonian", "output": "â  â â â •⠇⠇⠕â â Šâ â " }, { "input": "Apollos", "output": "â  â â â •⠇⠇⠕⠎" }, { "input": "Appalachia", "output": "â  â â â â â ‡â â ¡â Šâ " }, { "input": "Appalachian", "output": "â  â â â â â ‡â â ¡â Šâ â " }, { "input": "Appalachians", "output": "â  â â â â â ‡â â ¡â Šâ â â Ž" }, { "input": "Appaloosa", "output": "â  â â â â â ‡â •â •â Žâ " }, { "input": "Apple", "output": "â  â â â â ‡â ‘" }, { "input": "Appleseed", "output": "â  â â â â ‡â ‘â Žâ ‘â «" }, { "input": "Appleton", "output": "â  â â â â ‡â ‘â žâ •â " }, { "input": "Appomattox", "output": "â  â â â â •â â â žâ žâ •â ­" }, { "input": "Apr", "output": "â  â â â —" }, { "input": "April", "output": "â  â â â —â Šâ ‡" }, { "input": "Aprils", "output": "â  â â â —⠊⠇⠎" }, { "input": "Apuleius", "output": "â  â â â ¥â ‡â ‘⠊⠥⠎" }, { "input": "Aquafresh", "output": "â  â â Ÿâ ¥â â ‹â —â ‘â ©" }, { "input": "Aquarius", "output": "â  â â Ÿâ ¥â œâ Šâ ¥â Ž" }, { "input": "Aquariuses", "output": "â  â â Ÿâ ¥â œâ Šâ ¥â Žâ ‘â Ž" }, { "input": "Aquila", "output": "â  â â Ÿâ ¥â Šâ ‡â " }, { "input": "Aquinas", "output": "â  â â Ÿâ ¥â ”â â Ž" }, { "input": "Aquino", "output": "â  â â Ÿâ ¥â ”â •" }, { "input": "Aquitaine", "output": "â  â â Ÿâ ¥â Šâ žâ â ”â ‘" }, { "input": "Ar", "output": "â  â â —" }, { "input": "Ara", "output": "â  â œâ " }, { "input": "Arab", "output": "â  â œâ â ƒ" }, { "input": "Arabia", "output": "â  â œâ â ƒâ Šâ " }, { "input": "Arabian", "output": "â  â œâ â ƒâ Šâ â " }, { "input": "Arabians", "output": "â  â œâ â ƒâ Šâ â â Ž" }, { "input": "Arabic", "output": "â  â œâ â ƒâ Šâ ‰" }, { "input": "Arabs", "output": "â  â œâ â ƒâ Ž" }, { "input": "Araby", "output": "â  â œâ â ƒâ ½" }, { "input": "Araceli", "output": "â  â œâ â ‰â ‘⠇⠊" }, { "input": "Arafat", "output": "â  â œâ â ‹â â ž" }, { "input": "Araguaya", "output": "â  â œâ â ›â ¥â â ½â " }, { "input": "Aral", "output": "â  â œâ â ‡" }, { "input": "Aramaic", "output": "â  â œâ â â â Šâ ‰" }, { "input": "Aramco", "output": "â  â œâ â â ‰â •" }, { "input": "Arapaho", "output": "â  â œâ â â â “â •" }, { "input": "Ararat", "output": "⠠⠜⠜â â ž" }, { "input": "Araucanian", "output": "â  â œâ â ¥â ‰â â â Šâ â " }, { "input": "Arawak", "output": "â  â œâ â ºâ â …" }, { "input": "Arawakan", "output": "â  â œâ â ºâ â …â â " }, { "input": "Arbitron", "output": "⠠⠜⠃⠊⠞⠗⠕â " }, { "input": "Arcadia", "output": "⠠⠜⠉â â ™â Šâ " }, { "input": "Arcadian", "output": "⠠⠜⠉â â ™â Šâ â " }, { "input": "Archean", "output": "⠠⠜⠡⠂â " }, { "input": "Archibald", "output": "⠠⠜⠡⠊⠃â â ‡â ™" }, { "input": "Archie", "output": "⠠⠜⠡⠊⠑" }, { "input": "Archimedes", "output": "⠠⠜⠡⠊â â «â ‘â Ž" }, { "input": "Arctic", "output": "⠠⠜⠉⠞⠊⠉" }, { "input": "Arcturus", "output": "⠠⠜⠉⠞⠥⠗⠥⠎" }, { "input": "Arden", "output": "⠠⠜⠙⠢" }, { "input": "Arequipa", "output": "⠠⠜⠑⠟⠥⠊â â " }, { "input": "Ares", "output": "⠠⠜⠑⠎" }, { "input": "Argentina", "output": "⠠⠜⠛⠢⠞⠔â " }, { "input": "Argentine", "output": "⠠⠜⠛⠢⠞⠔⠑" }, { "input": "Argentinian", "output": "⠠⠜⠛⠢⠞⠔⠊â â " }, { "input": "Argentinians", "output": "⠠⠜⠛⠢⠞⠔⠊â â â Ž" }, { "input": "Argo", "output": "⠠⠜⠛⠕" }, { "input": "Argonaut", "output": "⠠⠜⠛⠕â â â ¥â ž" }, { "input": "Argonne", "output": "⠠⠜⠛⠕â â â ‘" }, { "input": "Argos", "output": "⠠⠜⠛⠕⠎" }, { "input": "Argus", "output": "⠠⠜⠛⠥⠎" }, { "input": "Ariadne", "output": "⠠⠜⠊â â ™â â ‘" }, { "input": "Arianism", "output": "⠠⠜⠊â â â Šâ Žâ " }, { "input": "Ariel", "output": "⠠⠜⠊⠑⠇" }, { "input": "Aries", "output": "⠠⠜⠊⠑⠎" }, { "input": "Arieses", "output": "⠠⠜⠊⠑⠎⠑⠎" }, { "input": "Ariosto", "output": "⠠⠜⠊⠕⠌⠕" }, { "input": "Aristarchus", "output": "⠠⠜⠊⠌⠜⠡⠥⠎" }, { "input": "Aristides", "output": "⠠⠜⠊⠌⠊⠙⠑⠎" }, { "input": "Aristophanes", "output": "⠠⠜⠊⠌⠕â â “â â â ‘â Ž" }, { "input": "Aristotelian", "output": "⠠⠜⠊⠌⠕⠞⠑⠇⠊â â " }, { "input": "Aristotle", "output": "⠠⠜⠊⠌⠕⠞⠇⠑" }, { "input": "Arius", "output": "⠠⠜⠊⠥⠎" }, { "input": "Ariz", "output": "⠠⠜⠊⠵" }, { "input": "Arizona", "output": "⠠⠜⠊⠵⠕â â " }, { "input": "Arizonan", "output": "⠠⠜⠊⠵⠕â â â " }, { "input": "Arizonans", "output": "⠠⠜⠊⠵⠕â â â â Ž" }, { "input": "Arizonian", "output": "⠠⠜⠊⠵⠕â â Šâ â " }, { "input": "Arizonians", "output": "⠠⠜⠊⠵⠕â â Šâ â â Ž" }, { "input": "Arjuna", "output": "⠠⠜⠚⠥â â " }, { "input": "Ark", "output": "⠠⠜⠅" }, { "input": "Arkansan", "output": "⠠⠜⠅â â â Žâ â " }, { "input": "Arkansas", "output": "⠠⠜⠅â â â Žâ â Ž" }, { "input": "Arkhangelsk", "output": "⠠⠜⠅⠓â â â ›â ‘⠇⠎⠅" }, { "input": "Arkwright", "output": "⠠⠜⠅⠺â â —" }, { "input": "Arlene", "output": "⠠⠜⠇⠢⠑" }, { "input": "Arline", "output": "⠠⠜⠇⠔⠑" }, { "input": "Arlington", "output": "⠠⠜⠇⠬⠞⠕â " }, { "input": "Armageddon", "output": "â  â œâ â â ›â «â ™â •â " }, { "input": "Armageddons", "output": "â  â œâ â â ›â «â ™â •â â Ž" }, { "input": "Armagnac", "output": "â  â œâ â â ›â â â ‰" }, { "input": "Armand", "output": "â  â œâ â ¯" }, { "input": "Armando", "output": "â  â œâ â ¯â •" }, { "input": "Armani", "output": "â  â œâ â â â Š" }, { "input": "Armenia", "output": "â  â œâ â ¢â Šâ " }, { "input": "Armenian", "output": "â  â œâ â ¢â Šâ â " }, { "input": "Armenians", "output": "â  â œâ â ¢â Šâ â â Ž" }, { "input": "Arminius", "output": "â  â œâ â ”⠊⠥⠎" }, { "input": "Armonk", "output": "â  â œâ â •â â …" }, { "input": "Armour", "output": "â  â œâ â ³â —" }, { "input": "Armstrong", "output": "â  â œâ â Œâ —â °â ›" }, { "input": "Arneb", "output": "â  â œâ â ‘â ƒ" }, { "input": "Arnhem", "output": "â  â œâ â “â ‘â " }, { "input": "Arno", "output": "â  â œâ â •" }, { "input": "Arnold", "output": "â  â œâ â •⠇⠙" }, { "input": "Arnulfo", "output": "â  â œâ â ¥â ‡â ‹â •" }, { "input": "Aron", "output": "⠠⠜⠕â " }, { "input": "Arrhenius", "output": "⠠⠜⠗⠓⠢⠊⠥⠎" }, { "input": "Arron", "output": "⠠⠜⠗⠕â " }, { "input": "Art", "output": "⠠⠜⠞" }, { "input": "Artaxerxes", "output": "⠠⠜⠞â â ­â »â ­â ‘â Ž" }, { "input": "Artemis", "output": "⠠⠜⠞⠑â â Šâ Ž" }, { "input": "Arthur", "output": "⠠⠜⠹⠥⠗" }, { "input": "Arthurian", "output": "⠠⠜⠹⠥⠗⠊â â " }, { "input": "Artie", "output": "⠠⠜⠞⠊⠑" }, { "input": "Arturo", "output": "⠠⠜⠞⠥⠗⠕" }, { "input": "Aruba", "output": "⠠⠜⠥⠃â " }, { "input": "Aryan", "output": "⠠⠜⠽â â " }, { "input": "Aryans", "output": "⠠⠜⠽â â â Ž" }, { "input": "As", "output": "â  â µ" }, { "input": "Asama", "output": "â  â â Žâ â â " }, { "input": "Ascella", "output": "â  â â Žâ ‰â ‘⠇⠇â " }, { "input": "Asgard", "output": "â  â â Žâ ›â œâ ™" }, { "input": "Ashanti", "output": "â  â â ©â â â žâ Š" }, { "input": "Ashcroft", "output": "â  â â ©â ‰â —â ·â ž" }, { "input": "Ashe", "output": "â  â â ©â ‘" }, { "input": "Ashikaga", "output": "â  â â ©â Šâ …â â ›â " }, { "input": "Ashkenazim", "output": "â  â â ©â …â ¢â â µâ Šâ " }, { "input": "Ashkhabad", "output": "â  â â ©â …â “â â ƒâ â ™" }, { "input": "Ashlee", "output": "â  â â ©â ‡â ‘â ‘" }, { "input": "Ashley", "output": "â  â â ©â ‡â ‘â ½" }, { "input": "Ashmolean", "output": "â  â â ©â â •⠇⠂â " }, { "input": "Ashurbanipal", "output": "â  â â ©â ¥â —â ƒâ â â Šâ â â ‡" }, { "input": "Asia", "output": "â  â â Žâ Šâ " }, { "input": "Asian", "output": "â  â â Žâ Šâ â " }, { "input": "Asians", "output": "â  â â Žâ Šâ â â Ž" }, { "input": "Asiatic", "output": "â  â â Žâ Šâ â žâ Šâ ‰" }, { "input": "Asiatics", "output": "â  â â Žâ Šâ â žâ Šâ ‰â Ž" }, { "input": "Asimov", "output": "â  â â Žâ Šâ â •â §" }, { "input": "Asmara", "output": "â  â â Žâ â œâ " }, { "input": "Asoka", "output": "â  â â Žâ •â …â " }, { "input": "Aspell", "output": "â  â â Žâ â ‘⠇⠇" }, { "input": "Aspen", "output": "â  â â Žâ â ¢" }, { "input": "Aspidiske", "output": "â  â â Žâ â Šâ ™â Šâ Žâ …â ‘" }, { "input": "Asquith", "output": "â  â â Žâ Ÿâ ¥â Šâ ¹" }, { "input": "Assad", "output": "â  â â Žâ Žâ â ™" }, { "input": "Assam", "output": "â  â â Žâ Žâ â " }, { "input": "Assamese", "output": "â  â â Žâ Žâ â â ‘â Žâ ‘" }, { "input": "Assisi", "output": "â  â â Žâ Žâ Šâ Žâ Š" }, { "input": "Assyria", "output": "â  â â Žâ Žâ ½â —â Šâ " }, { "input": "Assyrian", "output": "â  â â Žâ Žâ ½â —â Šâ â " }, { "input": "Assyrians", "output": "â  â â Žâ Žâ ½â —â Šâ â â Ž" }, { "input": "Astaire", "output": "â  â â Œâ â Šâ —â ‘" }, { "input": "Astana", "output": "â  â â Œâ â â " }, { "input": "Astarte", "output": "â  â â Œâ œâ žâ ‘" }, { "input": "Aston", "output": "â  â â Œâ •â " }, { "input": "Astor", "output": "â  â â Œâ •â —" }, { "input": "Astoria", "output": "â  â â Œâ •â —â Šâ " }, { "input": "Astrakhan", "output": "â  â â Œâ —â â …â “â â " }, { "input": "AstroTurf", "output": "â  â â Œâ —⠕⠠⠞⠥⠗⠋" }, { "input": "Asturias", "output": "â  â â Œâ ¥â —â Šâ â Ž" }, { "input": "Asunción", "output": "â  â â Žâ ¥â â ‰â Šâ  â ˜â »â â ¡â ¼â ‰â " }, { "input": "Aswan", "output": "â  â â Žâ ºâ â " }, { "input": "At", "output": "â  â â ž" }, { "input": "Atacama", "output": "â  â â žâ â ‰â â â " }, { "input": "Atahualpa", "output": "â  â â žâ â “â ¥â â ‡â â " }, { "input": "Atalanta", "output": "â  â â žâ â ‡â â â žâ " }, { "input": "Atari", "output": "â  â â žâ œâ Š" }, { "input": "Atatürk", "output": "â  â â žâ â žâ  â ˜â »â â ¼â â Œâ ™â —â …" }, { "input": "Athabasca", "output": "â  â â ¹â â ƒâ â Žâ ‰â " }, { "input": "Athabascan", "output": "â  â â ¹â â ƒâ â Žâ ‰â â " }, { "input": "Athena", "output": "â  â â ®â â " }, { "input": "Athenian", "output": "â  â â ®â â Šâ â " }, { "input": "Athenians", "output": "â  â â ®â â Šâ â â Ž" }, { "input": "Athens", "output": "â  â â ®â â Ž" }, { "input": "Atkins", "output": "â  â â žâ …⠔⠎" }, { "input": "Atkinson", "output": "â  â â žâ …⠔⠎⠕â " }, { "input": "Atlanta", "output": "â  â â žâ ‡â â â žâ " }, { "input": "Atlantes", "output": "â  â â žâ ‡â â â žâ ‘â Ž" }, { "input": "Atlantic", "output": "â  â â žâ ‡â â â žâ Šâ ‰" }, { "input": "Atlantis", "output": "â  â â žâ ‡â â â žâ Šâ Ž" }, { "input": "Atlas", "output": "â  â â žâ ‡â â Ž" }, { "input": "Atlases", "output": "â  â â žâ ‡â â Žâ ‘â Ž" }, { "input": "Atman", "output": "â  â â žâ â â " }, { "input": "Atreus", "output": "â  â â žâ —⠑⠥⠎" }, { "input": "Atria", "output": "â  â â žâ —â Šâ " }, { "input": "Atropos", "output": "â  â â žâ —â •â â •â Ž" }, { "input": "Ats", "output": "â  â â žâ Ž" }, { "input": "Attic", "output": "â  â â žâ žâ Šâ ‰" }, { "input": "Attica", "output": "â  â â žâ žâ Šâ ‰â " }, { "input": "Attila", "output": "â  â â žâ žâ Šâ ‡â " }, { "input": "Attlee", "output": "â  â â žâ žâ ‡â ‘â ‘" }, { "input": "Attucks", "output": "â  â â žâ žâ ¥â ‰â …â Ž" }, { "input": "Atwood", "output": "â  â â žâ ºâ •â •â ™" }, { "input": "Au", "output": "â  â â ¥" }, { "input": "Aubrey", "output": "â  â â ¥â ƒâ —â ‘â ½" }, { "input": "Auckland", "output": "â  â â ¥â ‰â …⠇⠯" }, { "input": "Auden", "output": "â  â â ¥â ™â ¢" }, { "input": "Audi", "output": "â  â â ¥â ™â Š" }, { "input": "Audion", "output": "â  â â ¥â ™â Šâ •â " }, { "input": "Audra", "output": "â  â â ¥â ™â —â " }, { "input": "Audrey", "output": "â  â â ¥â ™â —â ‘â ½" }, { "input": "Audubon", "output": "â  â â ¥â ™â ¥â ƒâ •â " }, { "input": "Aug", "output": "â  â â ¥â ›" }, { "input": "Augean", "output": "â  â â ¥â ›â ‚â " }, { "input": "Augsburg", "output": "â  â â ¥â ›â Žâ ƒâ ¥â —â ›" }, { "input": "August", "output": "â  â â ¥â ›â ¥â Œ" }, { "input": "Augusta", "output": "â  â â ¥â ›â ¥â Œâ " }, { "input": "Augustan", "output": "â  â â ¥â ›â ¥â Œâ â " }, { "input": "Augustine", "output": "â  â â ¥â ›â ¥â Œâ ”â ‘" }, { "input": "Augusts", "output": "â  â â ¥â ›â ¥â Œâ Ž" }, { "input": "Augustus", "output": "â  â â ¥â ›â ¥â Œâ ¥â Ž" }, { "input": "Aurangzeb", "output": "â  â â ¥â —â â â ›â µâ ‘â ƒ" }, { "input": "Aurelia", "output": "â  â â ¥â —⠑⠇⠊â " }, { "input": "Aurelio", "output": "â  â â ¥â —⠑⠇⠊⠕" }, { "input": "Aurelius", "output": "â  â â ¥â —⠑⠇⠊⠥⠎" }, { "input": "Aureomycin", "output": "â  â â ¥â —â ‘â •â â ½â ‰â ”" }, { "input": "Auriga", "output": "â  â â ¥â —â Šâ ›â " }, { "input": "Aurora", "output": "â  â â ¥â —â •â —â " }, { "input": "Auschwitz", "output": "â  â â ¥â Žâ ¡â ºâ Šâ žâ µ" }, { "input": "Aussie", "output": "â  â â ¥â Žâ Žâ Šâ ‘" }, { "input": "Aussies", "output": "â  â â ¥â Žâ Žâ Šâ ‘â Ž" }, { "input": "Austen", "output": "â  â â ¥â Œâ ¢" }, { "input": "Austerlitz", "output": "â  â â ¥â Œâ »â ‡â Šâ žâ µ" }, { "input": "Austin", "output": "â  â â ¥â Œâ ”" }, { "input": "Austins", "output": "â  â â ¥â Œâ ”â Ž" }, { "input": "Australasia", "output": "â  â â ¥â Œâ —â â ‡â â Žâ Šâ " }, { "input": "Australia", "output": "â  â â ¥â Œâ —â â ‡â Šâ " }, { "input": "Australian", "output": "â  â â ¥â Œâ —â â ‡â Šâ â " }, { "input": "Australians", "output": "â  â â ¥â Œâ —â â ‡â Šâ â â Ž" }, { "input": "Australoid", "output": "â  â â ¥â Œâ —â â ‡â •â Šâ ™" }, { "input": "Australopithecus", "output": "â  â â ¥â Œâ —â â ‡â •â â Šâ ®â ‰â ¥â Ž" }, { "input": "Austria", "output": "â  â â ¥â Œâ —â Šâ " }, { "input": "Austrian", "output": "â  â â ¥â Œâ —â Šâ â " }, { "input": "Austrians", "output": "â  â â ¥â Œâ —â Šâ â â Ž" }, { "input": "Austronesian", "output": "â  â â ¥â Œâ —â •â â ‘â Žâ Šâ â " }, { "input": "Autumn", "output": "â  â â ¥â žâ ¥â â " }, { "input": "Av", "output": "â  â â §" }, { "input": "Ava", "output": "â  â â §â " }, { "input": "Avalon", "output": "â  â â §â â ‡â •â " }, { "input": "Ave", "output": "â  â â §â ‘" }, { "input": "Aventine", "output": "â  â â §â ¢â žâ ”â ‘" }, { "input": "Avernus", "output": "â  â â §â »â â ¥â Ž" }, { "input": "Averroes", "output": "â  â â §â »â —â •â ‘â Ž" }, { "input": "Avery", "output": "â  â â §â »â ½" }, { "input": "Avesta", "output": "â  â â §â ‘â Œâ " }, { "input": "Avicenna", "output": "â  â â §â Šâ ‰â ¢â â " }, { "input": "Avignon", "output": "â  â â §â Šâ ›â â •â " }, { "input": "Avila", "output": "â  â â §â Šâ ‡â " }, { "input": "Avior", "output": "â  â â §â Šâ •â —" }, { "input": "Avis", "output": "â  â â §â Šâ Ž" }, { "input": "Avogadro", "output": "â  â â §â •â ›â â ™â —â •" }, { "input": "Avon", "output": "â  â â §â •â " }, { "input": "Axum", "output": "â  â â ­â ¥â " }, { "input": "Ayala", "output": "â  â â ½â â ‡â " }, { "input": "Ayers", "output": "â  â â ½â »â Ž" }, { "input": "Aymara", "output": "â  â â ½â â œâ " }, { "input": "Ayrshire", "output": "â  â â ½â —â ©â Šâ —â ‘" }, { "input": "Ayurveda", "output": "â  â â ½â ¥â —â §â «â " }, { "input": "Ayyubid", "output": "â  â â ½â ½â ¥â ƒâ Šâ ™" }, { "input": "Azana", "output": "â  â â µâ â â " }, { "input": "Azania", "output": "â  â â µâ â â Šâ " }, { "input": "Azazel", "output": "â  â â µâ â µâ ‘â ‡" }, { "input": "Azerbaijan", "output": "â  â â µâ »â ƒâ â Šâ šâ â " }, { "input": "Azerbaijani", "output": "â  â â µâ »â ƒâ â Šâ šâ â â Š" }, { "input": "Azores", "output": "â  â â µâ •â —â ‘â Ž" }, { "input": "Azov", "output": "â  â â µâ •â §" }, { "input": "Aztec", "output": "â  â â µâ žâ ‘â ‰" }, { "input": "Aztecan", "output": "â  â â µâ žâ ‘â ‰â â " }, { "input": "Aztecs", "output": "â  â â µâ žâ ‘⠉⠎" }, { "input": "Aztlan", "output": "â  â â µâ žâ ‡â â " }, { "input": "B", "output": "â °â  â ƒ" }, { "input": "BMW", "output": "â  â  â ƒâ â º" }, { "input": "Ba", "output": "â  â ƒâ " }, { "input": "Baal", "output": "â  â ƒâ â â ‡" }, { "input": "Baath", "output": "â  â ƒâ â â ¹" }, { "input": "Baathist", "output": "â  â ƒâ â â ¹â Šâ Œ" }, { "input": "Babar", "output": "â  â ƒâ â ƒâ œ" }, { "input": "Babbage", "output": "â  â ƒâ â †â â ›â ‘" }, { "input": "Babbitt", "output": "â  â ƒâ â †â Šâ žâ ž" }, { "input": "Babel", "output": "â  â ƒâ â ƒâ ‘â ‡" }, { "input": "Babels", "output": "â  â ƒâ â ƒâ ‘⠇⠎" }, { "input": "Babur", "output": "â  â ƒâ â ƒâ ¥â —" }, { "input": "Babylon", "output": "â  â ƒâ â ƒâ ½â ‡â •â " }, { "input": "Babylonian", "output": "â  â ƒâ â ƒâ ½â ‡â •â â Šâ â " }, { "input": "Babylons", "output": "â  â ƒâ â ƒâ ½â ‡â •â â Ž" }, { "input": "Bacall", "output": "â  â ƒâ â ‰â â ‡â ‡" }, { "input": "Bacardi", "output": "â  â ƒâ â ‰â œâ ™â Š" }, { "input": "Bacchanalia", "output": "â  â ƒâ â ‰â ¡â â â â ‡â Šâ " }, { "input": "Bacchus", "output": "â  â ƒâ â ‰â ¡â ¥â Ž" }, { "input": "Bach", "output": "â  â ƒâ â ¡" }, { "input": "Backus", "output": "â  â ƒâ â ‰â …⠥⠎" }, { "input": "Bacon", "output": "â  â ƒâ â ‰â •â " }, { "input": "Bactria", "output": "â  â ƒâ â ‰â žâ —â Šâ " }, { "input": "Baden", "output": "â  â ƒâ â ™â ¢" }, { "input": "Badlands", "output": "â  â ƒâ â ™â ‡â ¯â Ž" }, { "input": "Baedeker", "output": "â  â ƒâ â «â ‘â …â »" }, { "input": "Baez", "output": "â  â ƒâ â ‘â µ" }, { "input": "Baffin", "output": "â  â ƒâ â –â ”" }, { "input": "Baggies", "output": "â  â ƒâ â ¶â Šâ ‘â Ž" }, { "input": "Baghdad", "output": "â  â ƒâ â £â ™â â ™" }, { "input": "Baguio", "output": "â  â ƒâ â ›â ¥â Šâ •" }, { "input": "Bahama", "output": "â  â ƒâ â “â â â " }, { "input": "Bahamas", "output": "â  â ƒâ â “â â â â Ž" }, { "input": "Bahamian", "output": "â  â ƒâ â “â â â Šâ â " }, { "input": "Bahamians", "output": "â  â ƒâ â “â â â Šâ â â Ž" }, { "input": "Bahia", "output": "â  â ƒâ â “â Šâ " }, { "input": "Bahrain", "output": "â  â ƒâ â “â —â â ”" }, { "input": "Baikal", "output": "â  â ƒâ â Šâ …â â ‡" }, { "input": "Bailey", "output": "â  â ƒâ â Šâ ‡â ‘â ½" }, { "input": "Baird", "output": "â  â ƒâ â Šâ —â ™" }, { "input": "Bakelite", "output": "â  â ƒâ â …⠑⠇⠊⠞⠑" }, { "input": "Baker", "output": "â  â ƒâ â …â »" }, { "input": "Bakersfield", "output": "â  â ƒâ â …⠻⠎⠋⠊⠑⠇⠙" }, { "input": "Baku", "output": "â  â ƒâ â …â ¥" }, { "input": "Bakunin", "output": "â  â ƒâ â …â ¥â â ”" }, { "input": "Balanchine", "output": "â  â ƒâ â ‡â â â ¡â ”â ‘" }, { "input": "Balaton", "output": "â  â ƒâ â ‡â â žâ •â " }, { "input": "Balboa", "output": "â  â ƒâ â ‡â ƒâ •â " }, { "input": "Balder", "output": "â  â ƒâ â ‡â ™â »" }, { "input": "Baldwin", "output": "â  â ƒâ â ‡â ™â ºâ ”" }, { "input": "Balearic", "output": "â  â ƒâ â ‡â ‘⠜⠊⠉" }, { "input": "Balfour", "output": "â  â ƒâ â ‡â ‹â ³â —" }, { "input": "Bali", "output": "â  â ƒâ â ‡â Š" }, { "input": "Balinese", "output": "â  â ƒâ â ‡â ”â ‘â Žâ ‘" }, { "input": "Balkan", "output": "â  â ƒâ â ‡â …â â " }, { "input": "Balkans", "output": "â  â ƒâ â ‡â …â â â Ž" }, { "input": "Balkhash", "output": "â  â ƒâ â ‡â …â “â â ©" }, { "input": "Ball", "output": "â  â ƒâ â ‡â ‡" }, { "input": "Ballard", "output": "â  â ƒâ â ‡â ‡â œâ ™" }, { "input": "Balthazar", "output": "â  â ƒâ â ‡â ¹â â µâ œ" }, { "input": "Baltic", "output": "â  â ƒâ â ‡â žâ Šâ ‰" }, { "input": "Baltimore", "output": "â  â ƒâ â ‡â žâ Šâ â •â —â ‘" }, { "input": "Baluchistan", "output": "â  â ƒâ â ‡â ¥â ¡â Šâ Œâ â " }, { "input": "Balzac", "output": "â  â ƒâ â ‡â µâ â ‰" }, { "input": "Bamako", "output": "â  â ƒâ â â â …â •" }, { "input": "Bambi", "output": "â  â ƒâ â â ƒâ Š" }, { "input": "Banach", "output": "â  â ƒâ â â â ¡" }, { "input": "Bancroft", "output": "â  â ƒâ â â ‰â —â ·â ž" }, { "input": "Bandung", "output": "⠠⠃⠯⠥â â ›" }, { "input": "Bangalore", "output": "â  â ƒâ â â ›â â ‡â •â —â ‘" }, { "input": "Bangkok", "output": "â  â ƒâ â â ›â …â •â …" }, { "input": "Bangladesh", "output": "â  â ƒâ â â ›â ‡â â ™â ‘â ©" }, { "input": "Bangladeshi", "output": "â  â ƒâ â â ›â ‡â â ™â ‘â ©â Š" }, { "input": "Bangladeshis", "output": "â  â ƒâ â â ›â ‡â â ™â ‘â ©â Šâ Ž" }, { "input": "Bangor", "output": "â  â ƒâ â â ›â •â —" }, { "input": "Bangui", "output": "â  â ƒâ â â ›â ¥â Š" }, { "input": "Banjarmasin", "output": "â  â ƒâ â â šâ œâ â â Žâ ”" }, { "input": "Banjul", "output": "â  â ƒâ â â šâ ¥â ‡" }, { "input": "Banks", "output": "â  â ƒâ â â …â Ž" }, { "input": "Banneker", "output": "â  â ƒâ â â â ‘â …â »" }, { "input": "Bannister", "output": "â  â ƒâ â â â Šâ Œâ »" }, { "input": "Banting", "output": "â  â ƒâ â â žâ ¬" }, { "input": "Bantu", "output": "â  â ƒâ â â žâ ¥" }, { "input": "Bantus", "output": "â  â ƒâ â â žâ ¥â Ž" }, { "input": "Baotou", "output": "â  â ƒâ â •â žâ ³" }, { "input": "Baptist", "output": "â  â ƒâ â â žâ Šâ Œ" }, { "input": "Baptiste", "output": "â  â ƒâ â â žâ Šâ Œâ ‘" }, { "input": "Baptists", "output": "â  â ƒâ â â žâ Šâ Œâ Ž" }, { "input": "Barabbas", "output": "⠠⠃⠜â â †â â Ž" }, { "input": "Barack", "output": "⠠⠃⠜â â ‰â …" }, { "input": "Barbadian", "output": "⠠⠃⠜⠃â â ™â Šâ â " }, { "input": "Barbadians", "output": "⠠⠃⠜⠃â â ™â Šâ â â Ž" }, { "input": "Barbados", "output": "⠠⠃⠜⠃â â ™â •â Ž" }, { "input": "Barbara", "output": "⠠⠃⠜⠃⠜â " }, { "input": "Barbarella", "output": "⠠⠃⠜⠃⠜⠑⠇⠇â " }, { "input": "Barbarossa", "output": "⠠⠃⠜⠃⠜⠕⠎⠎â " }, { "input": "Barbary", "output": "⠠⠃⠜⠃⠜⠽" }, { "input": "Barber", "output": "⠠⠃⠜⠃⠻" }, { "input": "Barbie", "output": "⠠⠃⠜⠃⠊⠑" }, { "input": "Barbour", "output": "⠠⠃⠜⠃⠳⠗" }, { "input": "Barbra", "output": "⠠⠃⠜⠃⠗â " }, { "input": "Barbuda", "output": "⠠⠃⠜⠃⠥⠙â " }, { "input": "Barcelona", "output": "⠠⠃⠜⠉⠑⠇⠕â â " }, { "input": "Barclay", "output": "⠠⠃⠜⠉⠇â â ½" }, { "input": "Bardeen", "output": "⠠⠃⠜⠙⠑⠢" }, { "input": "Barents", "output": "⠠⠃⠜⠢⠞⠎" }, { "input": "Barker", "output": "⠠⠃⠜⠅⠻" }, { "input": "Barkley", "output": "⠠⠃⠜⠅⠇⠑⠽" }, { "input": "Barlow", "output": "⠠⠃⠜⠇⠪" }, { "input": "Barnabas", "output": "⠠⠃⠜â â â ƒâ â Ž" }, { "input": "Barnaby", "output": "⠠⠃⠜â â â ƒâ ½" }, { "input": "Barnard", "output": "⠠⠃⠜â â œâ ™" }, { "input": "Barnaul", "output": "⠠⠃⠜â â â ¥â ‡" }, { "input": "Barnes", "output": "⠠⠃⠜â â ‘â Ž" }, { "input": "Barnett", "output": "⠠⠃⠜â â ‘â žâ ž" }, { "input": "Barney", "output": "⠠⠃⠜â â ‘â ½" }, { "input": "Barnum", "output": "⠠⠃⠜â â ¥â " }, { "input": "Baroda", "output": "⠠⠃⠜⠕⠙â " }, { "input": "Barquisimeto", "output": "⠠⠃⠜⠟⠥⠊⠎⠊â â ‘â žâ •" }, { "input": "Barr", "output": "⠠⠃⠜⠗" }, { "input": "Barranquilla", "output": "⠠⠃⠜⠗â â â Ÿâ ¥â Šâ ‡â ‡â " }, { "input": "Barrera", "output": "⠠⠃⠜⠗⠻â " }, { "input": "Barrett", "output": "⠠⠃⠜⠗⠑⠞⠞" }, { "input": "Barrie", "output": "⠠⠃⠜⠗⠊⠑" }, { "input": "Barron", "output": "⠠⠃⠜⠗⠕â " }, { "input": "Barry", "output": "⠠⠃⠜⠗⠽" }, { "input": "Barrymore", "output": "⠠⠃⠜⠗⠽â â •â —â ‘" }, { "input": "Bart", "output": "⠠⠃⠜⠞" }, { "input": "Barth", "output": "⠠⠃⠜⠹" }, { "input": "Bartholdi", "output": "⠠⠃⠜⠞⠓⠕⠇⠙⠊" }, { "input": "Bartholomew", "output": "⠠⠃⠜⠹⠕⠇⠕â â ‘â º" }, { "input": "Bartlett", "output": "⠠⠃⠜⠞⠇⠑⠞⠞" }, { "input": "Barton", "output": "⠠⠃⠜⠞⠕â " }, { "input": "Bartók", "output": "⠠⠃⠜⠞⠠⠘⠻â â ¡â ¼â ‰â …" }, { "input": "Baruch", "output": "⠠⠃⠜⠥⠡" }, { "input": "Baryshnikov", "output": "⠠⠃⠜⠽⠩â â Šâ …â •â §" }, { "input": "Basel", "output": "â  â ƒâ â Žâ ‘â ‡" }, { "input": "Basho", "output": "â  â ƒâ â ©â •" }, { "input": "Basie", "output": "â  â ƒâ â Žâ Šâ ‘" }, { "input": "Basil", "output": "â  â ƒâ â Žâ Šâ ‡" }, { "input": "Basque", "output": "â  â ƒâ â Žâ Ÿâ ¥â ‘" }, { "input": "Basques", "output": "â  â ƒâ â Žâ Ÿâ ¥â ‘â Ž" }, { "input": "Basra", "output": "â  â ƒâ â Žâ —â " }, { "input": "Bass", "output": "â  â ƒâ â Žâ Ž" }, { "input": "Basseterre", "output": "â  â ƒâ â Žâ Žâ ‘⠞⠻⠗⠑" }, { "input": "Bastille", "output": "â  â ƒâ â Œâ Šâ ‡â ‡â ‘" }, { "input": "Bataan", "output": "â  â ƒâ â žâ â â " }, { "input": "Bates", "output": "â  â ƒâ â žâ ‘â Ž" }, { "input": "Bathsheba", "output": "â  â ƒâ â ¹â ©â ‘â ƒâ " }, { "input": "Batista", "output": "â  â ƒâ â žâ Šâ Œâ " }, { "input": "Batman", "output": "â  â ƒâ â žâ â â " }, { "input": "Battle", "output": "â  â ƒâ â žâ žâ ‡â ‘" }, { "input": "Batu", "output": "â  â ƒâ â žâ ¥" }, { "input": "Baudelaire", "output": "â  â ƒâ â ¥â ™â ‘â ‡â â Šâ —â ‘" }, { "input": "Baudouin", "output": "â  â ƒâ â ¥â ™â ³â ”" }, { "input": "Bauer", "output": "â  â ƒâ â ¥â »" }, { "input": "Bauhaus", "output": "â  â ƒâ â ¥â “â â ¥â Ž" }, { "input": "Baum", "output": "â  â ƒâ â ¥â " }, { "input": "Bavaria", "output": "â  â ƒâ â §â œâ Šâ " }, { "input": "Bavarian", "output": "â  â ƒâ â §â œâ Šâ â " }, { "input": "Baxter", "output": "â  â ƒâ â ­â žâ »" }, { "input": "Bayer", "output": "â  â ƒâ â ½â »" }, { "input": "Bayes", "output": "â  â ƒâ â ½â ‘â Ž" }, { "input": "Bayesian", "output": "â  â ƒâ â ½â ‘â Žâ Šâ â " }, { "input": "Bayeux", "output": "â  â ƒâ â ½â ‘⠥⠭" }, { "input": "Baylor", "output": "â  â ƒâ â ½â ‡â •â —" }, { "input": "Bayonne", "output": "â  â ƒâ â ½â •â â â ‘" }, { "input": "Bayreuth", "output": "â  â ƒâ â ½â —⠑⠥⠹" }, { "input": "Baywatch", "output": "â  â ƒâ â ½â ºâ â žâ ¡" }, { "input": "Be", "output": "â  â †" }, { "input": "Beach", "output": "⠠⠃⠂⠡" }, { "input": "Beadle", "output": "⠠⠃⠂⠙⠇⠑" }, { "input": "Bean", "output": "⠠⠃⠂â " }, { "input": "Beard", "output": "⠠⠃⠑⠜⠙" }, { "input": "Beardmore", "output": "⠠⠃⠑⠜⠙â â •â —â ‘" }, { "input": "Beardsley", "output": "⠠⠃⠑⠜⠙⠎⠇⠑⠽" }, { "input": "Bearnaise", "output": "⠠⠃⠑⠜â â â Šâ Žâ ‘" }, { "input": "Beasley", "output": "⠠⠃⠂⠎⠇⠑⠽" }, { "input": "Beatlemania", "output": "⠠⠃⠂⠞⠇⠑â â â â Šâ " }, { "input": "Beatles", "output": "⠠⠃⠂⠞⠇⠑⠎" }, { "input": "Beatrice", "output": "⠠⠃⠂⠞⠗⠊⠉⠑" }, { "input": "Beatrix", "output": "⠠⠃⠂⠞⠗⠊⠭" }, { "input": "Beatriz", "output": "⠠⠃⠂⠞⠗⠊⠵" }, { "input": "Beau", "output": "⠠⠃⠂⠥" }, { "input": "Beaufort", "output": "⠠⠃⠂⠥⠿⠞" }, { "input": "Beaujolais", "output": "⠠⠃⠂⠥⠚⠕⠇â â Šâ Ž" }, { "input": "Beaumarchais", "output": "⠠⠃⠂⠥â â œâ ¡â â Šâ Ž" }, { "input": "Beaumont", "output": "⠠⠃⠂⠥â â •â â ž" }, { "input": "Beauregard", "output": "⠠⠃⠂⠥⠗⠑⠛⠜⠙" }, { "input": "Beauvoir", "output": "⠠⠃⠂⠥⠧⠕⠊⠗" }, { "input": "Bechtel", "output": "⠠⠃⠑⠡⠞⠑⠇" }, { "input": "Beck", "output": "⠠⠃⠑⠉⠅" }, { "input": "Becker", "output": "⠠⠃⠑⠉⠅⠻" }, { "input": "Becket", "output": "⠠⠃⠑⠉⠅⠑⠞" }, { "input": "Beckett", "output": "⠠⠃⠑⠉⠅⠑⠞⠞" }, { "input": "Becky", "output": "⠠⠃⠑⠉⠅⠽" }, { "input": "Becquerel", "output": "⠠⠃⠑⠉⠟⠥⠻⠑⠇" }, { "input": "Bede", "output": "⠠⠃⠫⠑" }, { "input": "Bedouin", "output": "⠠⠃⠫⠳⠔" }, { "input": "Bedouins", "output": "⠠⠃⠫⠳⠔⠎" }, { "input": "Beebe", "output": "⠠⠃⠑⠑⠃⠑" }, { "input": "Beecher", "output": "⠠⠃⠑⠑⠡⠻" }, { "input": "Beefaroni", "output": "⠠⠃⠑⠑⠋⠜⠕â â Š" }, { "input": "Beelzebub", "output": "⠠⠆⠑⠇⠵⠑⠃⠥⠃" }, { "input": "Beerbohm", "output": "⠠⠃⠑⠻⠃⠕⠓â " }, { "input": "Beethoven", "output": "⠠⠃⠑⠑⠞⠓⠕⠧⠢" }, { "input": "Beeton", "output": "⠠⠃⠑⠑⠞⠕â " }, { "input": "Begin", "output": "⠠⠆⠛⠔" }, { "input": "Behan", "output": "⠠⠃⠑⠓â â " }, { "input": "Behring", "output": "⠠⠆⠓⠗⠬" }, { "input": "Beiderbecke", "output": "⠠⠃⠑⠊⠙⠻⠃⠑⠉⠅⠑" }, { "input": "Beijing", "output": "⠠⠃⠑⠊⠚⠬" }, { "input": "Beirut", "output": "⠠⠃⠑⠊⠗⠥⠞" }, { "input": "Bekesy", "output": "⠠⠃⠑⠅⠑⠎⠽" }, { "input": "Bela", "output": "⠠⠃⠑⠇â " }, { "input": "Belarus", "output": "⠠⠆⠇⠜⠥⠎" }, { "input": "Belau", "output": "⠠⠆⠇â â ¥" }, { "input": "Belem", "output": "⠠⠆⠇⠑â " }, { "input": "Belfast", "output": "⠠⠃⠑⠇⠋â â Œ" }, { "input": "Belgian", "output": "⠠⠃⠑⠇⠛⠊â â " }, { "input": "Belgians", "output": "⠠⠃⠑⠇⠛⠊â â â Ž" }, { "input": "Belgium", "output": "⠠⠃⠑⠇⠛⠊⠥â " }, { "input": "Belgrade", "output": "⠠⠃⠑⠇⠛⠗â â ™â ‘" }, { "input": "Belinda", "output": "⠠⠆⠇⠔⠙â " }, { "input": "Belize", "output": "⠠⠆⠇⠊⠵⠑" }, { "input": "Bell", "output": "⠠⠃⠑⠇⠇" }, { "input": "Bella", "output": "⠠⠃⠑⠇⠇â " }, { "input": "Bellamy", "output": "⠠⠃⠑⠇⠇â â â ½" }, { "input": "Bellatrix", "output": "⠠⠃⠑⠇⠇â â žâ —â Šâ ­" }, { "input": "Belleek", "output": "⠠⠃⠑⠇⠇⠑⠑⠅" }, { "input": "Bellini", "output": "⠠⠃⠑⠇⠇⠔⠊" }, { "input": "Bellow", "output": "⠠⠃⠑⠇⠇⠪" }, { "input": "Belmont", "output": "⠠⠃⠑⠇â â •â â ž" }, { "input": "Belmopan", "output": "⠠⠃⠑⠇â â •â â â " }, { "input": "Belshazzar", "output": "⠠⠃⠑⠇⠩â â µâ µâ œ" }, { "input": "Beltane", "output": "⠠⠃⠑⠇⠞â â â ‘" }, { "input": "Belushi", "output": "⠠⠆⠇⠥⠩⠊" }, { "input": "Ben", "output": "⠠⠃⠢" }, { "input": "Benacerraf", "output": "â  â †â â â ‰â »â —â â ‹" }, { "input": "Benares", "output": "â  â †â â œâ ‘â Ž" }, { "input": "Benchley", "output": "⠠⠃⠢⠡⠇⠑⠽" }, { "input": "Bender", "output": "⠠⠃⠢⠙⠻" }, { "input": "Bendix", "output": "⠠⠃⠢⠙⠊⠭" }, { "input": "Benedict", "output": "⠠⠃⠢⠫⠊⠉⠞" }, { "input": "Benedictine", "output": "⠠⠃⠢⠫⠊⠉⠞⠔⠑" }, { "input": "Benelux", "output": "⠠⠃⠢⠑⠇⠥⠭" }, { "input": "Benet", "output": "⠠⠃⠢⠑⠞" }, { "input": "Benetton", "output": "⠠⠃⠢⠑⠞⠞⠕â " }, { "input": "Bengal", "output": "⠠⠃⠢⠛â â ‡" }, { "input": "Bengali", "output": "⠠⠃⠢⠛â â ‡â Š" }, { "input": "Benghazi", "output": "⠠⠃⠢⠣â â µâ Š" }, { "input": "Benin", "output": "⠠⠃⠢⠔" }, { "input": "Benita", "output": "⠠⠃⠢⠊⠞â " }, { "input": "Benito", "output": "â  â †â â Šâ žâ •" }, { "input": "Benjamin", "output": "⠠⠃⠢⠚â â â ”" }, { "input": "Bennett", "output": "⠠⠃⠢â â ‘â žâ ž" }, { "input": "Bennie", "output": "⠠⠃⠢â â Šâ ‘" }, { "input": "Benny", "output": "⠠⠃⠢â â ½" }, { "input": "Benson", "output": "⠠⠃⠢⠎⠕â " }, { "input": "Bentham", "output": "⠠⠃⠢⠹â â " }, { "input": "Bentley", "output": "⠠⠃⠢⠞⠇⠑⠽" }, { "input": "Benton", "output": "⠠⠃⠢⠞⠕â " }, { "input": "Benz", "output": "⠠⠃⠢⠵" }, { "input": "Benzedrine", "output": "⠠⠃⠢⠵⠫⠗⠔⠑" }, { "input": "Beowulf", "output": "⠠⠃⠑⠪⠥⠇⠋" }, { "input": "Berber", "output": "⠠⠃⠻⠃⠻" }, { "input": "Berbers", "output": "⠠⠃⠻⠃⠻⠎" }, { "input": "Berenice", "output": "⠠⠃⠻⠢⠊⠉⠑" }, { "input": "Beretta", "output": "⠠⠃⠻⠑⠞⠞â " }, { "input": "Berg", "output": "⠠⠃⠻⠛" }, { "input": "Bergen", "output": "⠠⠃⠻⠛⠢" }, { "input": "Berger", "output": "⠠⠃⠻⠛⠻" }, { "input": "Bergerac", "output": "⠠⠃⠻⠛⠻â â ‰" }, { "input": "Bergman", "output": "⠠⠃⠻⠛â â â " }, { "input": "Bergson", "output": "⠠⠃⠻⠛⠎⠕â " }, { "input": "Beria", "output": "⠠⠃⠻⠊â " }, { "input": "Bering", "output": "⠠⠃⠻⠬" }, { "input": "Berkeley", "output": "⠠⠃⠻⠅⠑⠇⠑⠽" }, { "input": "Berkshire", "output": "⠠⠃⠻⠅⠩⠊⠗⠑" }, { "input": "Berkshires", "output": "⠠⠃⠻⠅⠩⠊⠗⠑⠎" }, { "input": "Berle", "output": "⠠⠃⠻⠇⠑" }, { "input": "Berlin", "output": "⠠⠃⠻⠇⠔" }, { "input": "Berliner", "output": "⠠⠃⠻⠇⠔⠻" }, { "input": "Berlins", "output": "⠠⠃⠻⠇⠔⠎" }, { "input": "Berlioz", "output": "⠠⠃⠻⠇⠊⠕⠵" }, { "input": "Berlitz", "output": "⠠⠃⠻⠇⠊⠞⠵" }, { "input": "Bermuda", "output": "⠠⠃⠻â â ¥â ™â " }, { "input": "Bermudas", "output": "⠠⠃⠻â â ¥â ™â â Ž" }, { "input": "Bern", "output": "⠠⠃⠻â " }, { "input": "Bernadette", "output": "⠠⠃⠻â â â ™â ‘â žâ žâ ‘" }, { "input": "Bernadine", "output": "⠠⠃⠻â â â ™â ”â ‘" }, { "input": "Bernanke", "output": "⠠⠃⠻â â â â …â ‘" }, { "input": "Bernard", "output": "⠠⠃⠻â â œâ ™" }, { "input": "Bernardo", "output": "⠠⠃⠻â â œâ ™â •" }, { "input": "Bernays", "output": "⠠⠃⠻â â â ½â Ž" }, { "input": "Bernbach", "output": "⠠⠃⠻â â ƒâ â ¡" }, { "input": "Berne", "output": "⠠⠃⠻â â ‘" }, { "input": "Bernhardt", "output": "⠠⠃⠻â â “⠜⠙⠞" }, { "input": "Bernice", "output": "⠠⠃⠻â â Šâ ‰â ‘" }, { "input": "Bernie", "output": "⠠⠃⠻â â Šâ ‘" }, { "input": "Bernini", "output": "⠠⠃⠻â â ”â Š" }, { "input": "Bernoulli", "output": "⠠⠃⠻â â ³â ‡â ‡â Š" }, { "input": "Bernstein", "output": "⠠⠃⠻â â Œâ ‘â ”" }, { "input": "Berra", "output": "⠠⠃⠻⠗â " }, { "input": "Berry", "output": "⠠⠃⠻⠗⠽" }, { "input": "Bert", "output": "⠠⠃⠻⠞" }, { "input": "Berta", "output": "⠠⠃⠻⠞â " }, { "input": "Bertelsmann", "output": "⠠⠃⠻⠞⠑⠇⠎â â â â " }, { "input": "Bertha", "output": "⠠⠃⠻⠹â " }, { "input": "Bertie", "output": "⠠⠃⠻⠞⠊⠑" }, { "input": "Bertillon", "output": "⠠⠃⠻⠞⠊⠇⠇⠕â " }, { "input": "Bertram", "output": "⠠⠃⠻⠞⠗â â " }, { "input": "Bertrand", "output": "⠠⠃⠻⠞⠗⠯" }, { "input": "Beryl", "output": "⠠⠃⠻⠽⠇" }, { "input": "Berzelius", "output": "⠠⠃⠻⠵⠑⠇⠊⠥⠎" }, { "input": "Bess", "output": "⠠⠃⠑⠎⠎" }, { "input": "Bessel", "output": "⠠⠃⠑⠎⠎⠑⠇" }, { "input": "Bessemer", "output": "⠠⠃⠑⠎⠎⠑â â »" }, { "input": "Bessie", "output": "⠠⠃⠑⠎⠎⠊⠑" }, { "input": "Best", "output": "⠠⠃⠑⠌" }, { "input": "Betelgeuse", "output": "⠠⠆⠞⠑⠇⠛⠑⠥⠎⠑" }, { "input": "Beth", "output": "⠠⠃⠑⠹" }, { "input": "Bethany", "output": "⠠⠃⠑⠹â â â ½" }, { "input": "Bethe", "output": "⠠⠃⠑⠮" }, { "input": "Bethesda", "output": "⠠⠃⠑⠮⠎⠙â " }, { "input": "Bethlehem", "output": "⠠⠃⠑⠹⠇⠑⠓⠑â " }, { "input": "Bethune", "output": "⠠⠃⠑⠹⠥â â ‘" }, { "input": "Betsy", "output": "⠠⠆⠞⠎⠽" }, { "input": "Bette", "output": "⠠⠃⠑⠞⠞⠑" }, { "input": "Bettie", "output": "⠠⠃⠑⠞⠞⠊⠑" }, { "input": "Betty", "output": "⠠⠃⠑⠞⠞⠽" }, { "input": "Bettye", "output": "⠠⠃⠑⠞⠞⠽⠑" }, { "input": "Beulah", "output": "⠠⠃⠑⠥⠇â â “" }, { "input": "Beverley", "output": "â  â ƒâ â ‘⠇⠑⠽" }, { "input": "Beverly", "output": "â  â ƒâ â ‘⠇⠽" }, { "input": "Beyer", "output": "⠠⠃⠑⠽⠻" }, { "input": "Bhopal", "output": "⠠⠃⠓⠕â â â ‡" }, { "input": "Bhutan", "output": "⠠⠃⠓⠥⠞â â " }, { "input": "Bhutto", "output": "⠠⠃⠓⠥⠞⠞⠕" }, { "input": "Bi", "output": "⠠⠃⠊" }, { "input": "Bialystok", "output": "⠠⠃⠊â â ‡â ½â Œâ •â …" }, { "input": "Bianca", "output": "⠠⠃⠊â â â ‰â " }, { "input": "Bib", "output": "⠠⠃⠊⠃" }, { "input": "Bible", "output": "⠠⠃⠊⠃⠇⠑" }, { "input": "Bibles", "output": "⠠⠃⠊⠃⠇⠑⠎" }, { "input": "Biblical", "output": "⠠⠃⠊⠃⠇⠊⠉â â ‡" }, { "input": "Bic", "output": "⠠⠃⠊⠉" }, { "input": "Biddle", "output": "⠠⠃⠊⠙⠙⠇⠑" }, { "input": "Biden", "output": "⠠⠃⠊⠙⠢" }, { "input": "Bierce", "output": "⠠⠃⠊⠻⠉⠑" }, { "input": "Bigfoot", "output": "⠠⠃⠊⠛⠋⠕⠕⠞" }, { "input": "Biggles", "output": "⠠⠃⠊⠶⠇⠑⠎" }, { "input": "Biko", "output": "⠠⠃⠊⠅⠕" }, { "input": "Bilbao", "output": "⠠⠃⠊⠇⠃â â •" }, { "input": "Bilbo", "output": "⠠⠃⠊⠇⠃⠕" }, { "input": "Bill", "output": "⠠⠃⠊⠇⠇" }, { "input": "Billie", "output": "⠠⠃⠊⠇⠇⠊⠑" }, { "input": "Billings", "output": "⠠⠃⠊⠇⠇⠬⠎" }, { "input": "Billy", "output": "⠠⠃⠊⠇⠇⠽" }, { "input": "Bimini", "output": "⠠⠃⠊â â ”â Š" }, { "input": "Bioko", "output": "⠠⠃⠊⠕⠅⠕" }, { "input": "Bird", "output": "⠠⠃⠊⠗⠙" }, { "input": "Birdseye", "output": "⠠⠃⠊⠗⠙⠎⠑⠽⠑" }, { "input": "Birkenstock", "output": "⠠⠃⠊⠗⠅⠢⠌⠕⠉⠅" }, { "input": "Birmingham", "output": "⠠⠃⠊⠗â â ¬â “â â " }, { "input": "Biro", "output": "⠠⠃⠊⠗⠕" }, { "input": "Biscay", "output": "⠠⠃⠊⠎⠉â â ½" }, { "input": "Biscayne", "output": "⠠⠃⠊⠎⠉â â ½â â ‘" }, { "input": "Bishkek", "output": "⠠⠃⠊⠩⠅⠑⠅" }, { "input": "Bishop", "output": "⠠⠃⠊⠩⠕â " }, { "input": "Bismarck", "output": "⠠⠃⠊⠎â â œâ ‰â …" }, { "input": "Bismark", "output": "⠠⠃⠊⠎â â œâ …" }, { "input": "Bisquick", "output": "⠠⠃⠊⠎⠟⠥⠊⠉⠅" }, { "input": "Bissau", "output": "⠠⠃⠊⠎⠎â â ¥" }, { "input": "Bizet", "output": "⠠⠃⠊⠵⠑⠞" }, { "input": "Bjerknes", "output": "⠠⠃⠚⠻⠅â â ‘â Ž" }, { "input": "Bjork", "output": "⠠⠃⠚⠕⠗⠅" }, { "input": "Bk", "output": "⠠⠃⠅" }, { "input": "Black", "output": "⠠⠃⠇â â ‰â …" }, { "input": "Blackbeard", "output": "⠠⠃⠇â â ‰â …⠃⠑⠜⠙" }, { "input": "Blackburn", "output": "⠠⠃⠇â â ‰â …⠃⠥⠗â " }, { "input": "Blackfoot", "output": "⠠⠃⠇â â ‰â …â ‹â •â •â ž" }, { "input": "Blacks", "output": "⠠⠃⠇â â ‰â …â Ž" }, { "input": "Blackshirt", "output": "⠠⠃⠇â â ‰â …â ©â Šâ —â ž" }, { "input": "Blackstone", "output": "⠠⠃⠇â â ‰â …â Œâ â •" }, { "input": "Blackwell", "output": "⠠⠃⠇â â ‰â …⠺⠑⠇⠇" }, { "input": "Blaine", "output": "⠠⠃⠇â â ”â ‘" }, { "input": "Blair", "output": "⠠⠃⠇â â Šâ —" }, { "input": "Blake", "output": "⠠⠃⠇â â …â ‘" }, { "input": "Blanca", "output": "⠠⠃⠇â â â ‰â " }, { "input": "Blanchard", "output": "⠠⠃⠇â â â ¡â œâ ™" }, { "input": "Blanche", "output": "⠠⠃⠇â â â ¡â ‘" }, { "input": "Blankenship", "output": "⠠⠃⠇â â â …⠢⠩⠊â " }, { "input": "Blantyre", "output": "⠠⠃⠇â â â žâ ½â —â ‘" }, { "input": "Blatz", "output": "⠠⠃⠇â â žâ µ" }, { "input": "Blavatsky", "output": "⠠⠃⠇â â §â â žâ Žâ …â ½" }, { "input": "Blenheim", "output": "⠠⠃⠇⠢⠓⠑⠊â " }, { "input": "Blevins", "output": "⠠⠃⠇⠑⠧⠔⠎" }, { "input": "Bligh", "output": "⠠⠃⠇⠊⠣" }, { "input": "Bloch", "output": "⠠⠃⠇⠕⠡" }, { "input": "Blockbuster", "output": "⠠⠃⠇⠕⠉⠅⠃⠥⠌⠻" }, { "input": "Bloemfontein", "output": "⠠⠃⠇⠕⠑â â ‹â •â â žâ ‘â ”" }, { "input": "Blondel", "output": "⠠⠃⠇⠕â â ™â ‘â ‡" }, { "input": "Blondie", "output": "⠠⠃⠇⠕â â ™â Šâ ‘" }, { "input": "Bloom", "output": "⠠⠃⠇⠕⠕â " }, { "input": "Bloomer", "output": "⠠⠃⠇⠕⠕â â »" }, { "input": "Bloomfield", "output": "⠠⠃⠇⠕⠕â â ‹â Šâ ‘⠇⠙" }, { "input": "Bloomingdale", "output": "⠠⠃⠇⠕⠕â â ¬â ™â â ‡â ‘" }, { "input": "Bloomsbury", "output": "⠠⠃⠇⠕⠕â â Žâ ƒâ ¥â —â ½" }, { "input": "Blu", "output": "⠠⠃⠇⠥" }, { "input": "Blucher", "output": "⠠⠃⠇⠥⠡⠻" }, { "input": "Bluebeard", "output": "⠠⠃⠇⠥⠑⠃⠑⠜⠙" }, { "input": "Bluetooth", "output": "⠠⠃⠇⠥⠑⠞⠕⠕⠹" }, { "input": "Blvd", "output": "⠰⠠⠃⠇⠧⠙" }, { "input": "Blythe", "output": "⠠⠃⠇⠽⠮" }, { "input": "Boas", "output": "⠠⠃⠕â â Ž" }, { "input": "Bob", "output": "⠠⠃⠕⠃" }, { "input": "Bobbi", "output": "⠠⠃⠕⠆⠊" }, { "input": "Bobbie", "output": "⠠⠃⠕⠆⠊⠑" }, { "input": "Bobbitt", "output": "⠠⠃⠕⠆⠊⠞⠞" }, { "input": "Bobby", "output": "⠠⠃⠕⠆⠽" }, { "input": "Boccaccio", "output": "⠠⠃⠕⠒â â ’â Šâ •" }, { "input": "Bodhidharma", "output": "⠠⠃⠕⠙⠓⠊⠙⠓⠜â â " }, { "input": "Bodhisattva", "output": "⠠⠃⠕⠙⠓⠊⠎â â žâ žâ §â " }, { "input": "Boeing", "output": "⠠⠃⠕⠑⠬" }, { "input": "Boeotia", "output": "⠠⠃⠕⠑⠕⠞⠊â " }, { "input": "Boeotian", "output": "⠠⠃⠕⠑⠕⠞⠊â â " }, { "input": "Boer", "output": "⠠⠃⠕⠻" }, { "input": "Boers", "output": "⠠⠃⠕⠻⠎" }, { "input": "Boethius", "output": "⠠⠃⠕⠑⠹⠊⠥⠎" }, { "input": "Bogart", "output": "⠠⠃⠕⠛⠜⠞" }, { "input": "Bogotá", "output": "⠠⠃⠕⠛⠕⠞⠠⠘⠻â â ˜â °â –" }, { "input": "Bohemia", "output": "⠠⠃⠕⠓⠑â â Šâ " }, { "input": "Bohemian", "output": "⠠⠃⠕⠓⠑â â Šâ â " }, { "input": "Bohemians", "output": "⠠⠃⠕⠓⠑â â Šâ â â Ž" }, { "input": "Bohr", "output": "⠠⠃⠕⠓⠗" }, { "input": "Boise", "output": "⠠⠃⠕⠊⠎⠑" }, { "input": "Bojangles", "output": "⠠⠃⠕⠚â â â ›â ‡â ‘â Ž" }, { "input": "Boleyn", "output": "⠠⠃⠕⠇⠑⠽â " }, { "input": "Bolivar", "output": "⠠⠃⠕⠇⠊⠧⠜" }, { "input": "Bolivia", "output": "⠠⠃⠕⠇⠊⠧⠊â " }, { "input": "Bolivian", "output": "⠠⠃⠕⠇⠊⠧⠊â â " }, { "input": "Bolivians", "output": "⠠⠃⠕⠇⠊⠧⠊â â â Ž" }, { "input": "Bollywood", "output": "⠠⠃⠕⠇⠇⠽⠺⠕⠕⠙" }, { "input": "Bologna", "output": "⠠⠃⠕⠇⠕⠛â â " }, { "input": "Bolshevik", "output": "⠠⠃⠕⠇⠩⠑⠧⠊⠅" }, { "input": "Bolsheviks", "output": "⠠⠃⠕⠇⠩⠑⠧⠊⠅⠎" }, { "input": "Bolshevism", "output": "⠠⠃⠕⠇⠩⠑⠧⠊⠎â " }, { "input": "Bolshevist", "output": "⠠⠃⠕⠇⠩⠑⠧⠊⠌" }, { "input": "Bolshoi", "output": "⠠⠃⠕⠇⠩⠕⠊" }, { "input": "Bolton", "output": "⠠⠃⠕⠇⠞⠕â " }, { "input": "Boltzmann", "output": "⠠⠃⠕⠇⠞⠵â â â â " }, { "input": "Bombay", "output": "⠠⠃⠕â â ƒâ â ½" }, { "input": "Bonaparte", "output": "⠠⠃⠕â â â â â ‘" }, { "input": "Bonaventure", "output": "⠠⠃⠕â â â §â ¢â žâ ¥â —â ‘" }, { "input": "Bond", "output": "⠠⠃⠕â â ™" }, { "input": "Bonhoeffer", "output": "⠠⠃⠕â â “â •â ‘â –â »" }, { "input": "Boniface", "output": "⠠⠃⠕â â Šâ ‹â â ‰â ‘" }, { "input": "Bonita", "output": "⠠⠃⠕â â Šâ žâ " }, { "input": "Bonn", "output": "⠠⠃⠕â â " }, { "input": "Bonner", "output": "⠠⠃⠕â â â »" }, { "input": "Bonneville", "output": "⠠⠃⠕â â â ‘⠧⠊⠇⠇⠑" }, { "input": "Bonnie", "output": "⠠⠃⠕â â â Šâ ‘" }, { "input": "Bono", "output": "⠠⠃⠕â â •" }, { "input": "Booker", "output": "⠠⠃⠕⠕⠅⠻" }, { "input": "Boole", "output": "⠠⠃⠕⠕⠇⠑" }, { "input": "Boolean", "output": "⠠⠃⠕⠕⠇⠂â " }, { "input": "Boone", "output": "⠠⠃⠕⠕â â ‘" }, { "input": "Booth", "output": "⠠⠃⠕⠕⠹" }, { "input": "Bordeaux", "output": "⠠⠃⠕⠗⠙⠂⠥⠭" }, { "input": "Borden", "output": "⠠⠃⠕⠗⠙⠢" }, { "input": "Bordon", "output": "⠠⠃⠕⠗⠙⠕â " }, { "input": "Boreas", "output": "⠠⠃⠕⠗⠑â â Ž" }, { "input": "Borg", "output": "⠠⠃⠕⠗⠛" }, { "input": "Borges", "output": "⠠⠃⠕⠗⠛⠑⠎" }, { "input": "Borgia", "output": "⠠⠃⠕⠗⠛⠊â " }, { "input": "Borglum", "output": "⠠⠃⠕⠗⠛⠇⠥â " }, { "input": "Boris", "output": "⠠⠃⠕⠗⠊⠎" }, { "input": "Bork", "output": "⠠⠃⠕⠗⠅" }, { "input": "Borlaug", "output": "⠠⠃⠕⠗⠇â â ¥â ›" }, { "input": "Born", "output": "⠠⠃⠕⠗â " }, { "input": "Borneo", "output": "⠠⠃⠕⠗â â ‘â •" }, { "input": "Borobudur", "output": "⠠⠃⠕⠗⠕⠃⠥⠙⠥⠗" }, { "input": "Borodin", "output": "⠠⠃⠕⠗⠕⠙⠔" }, { "input": "Boru", "output": "⠠⠃⠕⠗⠥" }, { "input": "Bosch", "output": "⠠⠃⠕⠎⠡" }, { "input": "Bose", "output": "⠠⠃⠕⠎⠑" }, { "input": "Bosnia", "output": "⠠⠃⠕⠎â â Šâ " }, { "input": "Bosporus", "output": "⠠⠃⠕⠎â â •⠗⠥⠎" }, { "input": "Boston", "output": "⠠⠃⠕⠌⠕â " }, { "input": "Bostonian", "output": "⠠⠃⠕⠌⠕â â Šâ â " }, { "input": "Bostons", "output": "⠠⠃⠕⠌⠕â â Ž" }, { "input": "Boswell", "output": "⠠⠃⠕⠎⠺⠑⠇⠇" }, { "input": "Botswana", "output": "⠠⠃⠕⠞⠎⠺â â â " }, { "input": "Botticelli", "output": "⠠⠃⠕⠞⠞⠊⠉⠑⠇⠇⠊" }, { "input": "Boulder", "output": "⠠⠃⠳⠇⠙⠻" }, { "input": "Boulez", "output": "⠠⠃⠳⠇⠑⠵" }, { "input": "Bourbaki", "output": "⠠⠃⠳⠗⠃â â …â Š" }, { "input": "Bourbon", "output": "⠠⠃⠳⠗⠃⠕â " }, { "input": "Bournemouth", "output": "⠠⠃⠳⠗â â ‘â â ³â ¹" }, { "input": "Bovary", "output": "⠠⠃⠕⠧⠜⠽" }, { "input": "Bowditch", "output": "⠠⠃⠪⠙⠊⠞⠡" }, { "input": "Bowell", "output": "⠠⠃⠪⠑⠇⠇" }, { "input": "Bowen", "output": "⠠⠃⠪⠢" }, { "input": "Bowers", "output": "⠠⠃⠪⠻⠎" }, { "input": "Bowery", "output": "⠠⠃⠪⠻⠽" }, { "input": "Bowie", "output": "⠠⠃⠪⠊⠑" }, { "input": "Bowman", "output": "⠠⠃⠪â â â " }, { "input": "Boyd", "output": "⠠⠃⠕⠽⠙" }, { "input": "Boyer", "output": "⠠⠃⠕⠽⠻" }, { "input": "Boyle", "output": "⠠⠃⠕⠽⠇⠑" }, { "input": "Boötes", "output": "⠠⠃⠕⠠⠘⠻â â ˜â â žâ ‘â Ž" }, { "input": "Br", "output": "⠠⠃⠗" }, { "input": "Brad", "output": "⠠⠃⠗â â ™" }, { "input": "Bradbury", "output": "⠠⠃⠗â â ™â ƒâ ¥â —â ½" }, { "input": "Braddock", "output": "⠠⠃⠗â â ™â ™â •⠉⠅" }, { "input": "Bradford", "output": "⠠⠃⠗â â ™â ¿â ™" }, { "input": "Bradley", "output": "⠠⠃⠗â â ™â ‡â ‘â ½" }, { "input": "Bradly", "output": "⠠⠃⠗â â ™â ‡â ½" }, { "input": "Bradshaw", "output": "⠠⠃⠗â â ™â ©â â º" }, { "input": "Bradstreet", "output": "⠠⠃⠗â â ™â Œâ —â ‘â ‘â ž" }, { "input": "Brady", "output": "⠠⠃⠗â â ™â ½" }, { "input": "Bragg", "output": "⠠⠃⠗â â ›â ›" }, { "input": "Brahe", "output": "⠠⠃⠗â â “â ‘" }, { "input": "Brahma", "output": "⠠⠃⠗â â “â â " }, { "input": "Brahmagupta", "output": "⠠⠃⠗â â “â â â ›â ¥â â žâ " }, { "input": "Brahman", "output": "⠠⠃⠗â â “â â â " }, { "input": "Brahmanism", "output": "⠠⠃⠗â â “â â â â Šâ Žâ " }, { "input": "Brahmanisms", "output": "⠠⠃⠗â â “â â â â Šâ Žâ â Ž" }, { "input": "Brahmans", "output": "⠠⠃⠗â â “â â â â Ž" }, { "input": "Brahmaputra", "output": "⠠⠃⠗â â “â â â â ¥â žâ —â " }, { "input": "Brahmas", "output": "⠠⠃⠗â â “â â â Ž" }, { "input": "Brahmin", "output": "⠠⠃⠗â â “â â ”" }, { "input": "Brahmins", "output": "⠠⠃⠗â â “â â ”â Ž" }, { "input": "Brahms", "output": "⠠⠃⠗â â “â â Ž" }, { "input": "Braille", "output": "⠠⠃⠗⠇" }, { "input": "Brailles", "output": "⠠⠃⠗⠇⠎" }, { "input": "Brain", "output": "⠠⠃⠗â â ”" }, { "input": "Brampton", "output": "⠠⠃⠗â â â â žâ •â " }, { "input": "Bran", "output": "⠠⠃⠗â â " }, { "input": "Branch", "output": "⠠⠃⠗â â â ¡" }, { "input": "Brandeis", "output": "⠠⠃⠗⠯⠑⠊⠎" }, { "input": "Branden", "output": "⠠⠃⠗⠯⠢" }, { "input": "Brandenburg", "output": "⠠⠃⠗⠯⠢⠃⠥⠗⠛" }, { "input": "Brandi", "output": "⠠⠃⠗⠯⠊" }, { "input": "Brandie", "output": "⠠⠃⠗⠯⠊⠑" }, { "input": "Brando", "output": "⠠⠃⠗⠯⠕" }, { "input": "Brandon", "output": "⠠⠃⠗⠯⠕â " }, { "input": "Brandt", "output": "⠠⠃⠗⠯⠞" }, { "input": "Brandy", "output": "⠠⠃⠗⠯⠽" }, { "input": "Brant", "output": "⠠⠃⠗â â â ž" }, { "input": "Braque", "output": "⠠⠃⠗â â Ÿâ ¥â ‘" }, { "input": "Brasilia", "output": "⠠⠃⠗â â Žâ Šâ ‡â Šâ " }, { "input": "Bratislava", "output": "⠠⠃⠗â â žâ Šâ Žâ ‡â â §â " }, { "input": "Brattain", "output": "⠠⠃⠗â â žâ žâ â ”" }, { "input": "Bray", "output": "⠠⠃⠗â â ½" }, { "input": "Brazil", "output": "⠠⠃⠗â â µâ Šâ ‡" }, { "input": "Brazilian", "output": "⠠⠃⠗â â µâ Šâ ‡â Šâ â " }, { "input": "Brazilians", "output": "⠠⠃⠗â â µâ Šâ ‡â Šâ â â Ž" }, { "input": "Brazos", "output": "⠠⠃⠗â â µâ •â Ž" }, { "input": "Brazzaville", "output": "⠠⠃⠗â â µâ µâ â §â Šâ ‡â ‡â ‘" }, { "input": "Breakspear", "output": "⠠⠃⠗⠂⠅⠎â â ‘â œ" }, { "input": "Brecht", "output": "⠠⠃⠗⠑⠡⠞" }, { "input": "Breckenridge", "output": "⠠⠃⠗⠑⠉⠅⠢⠗⠊⠙⠛⠑" }, { "input": "Bremen", "output": "⠠⠃⠗⠑â â ¢" }, { "input": "Brenda", "output": "⠠⠃⠗⠢⠙â " }, { "input": "Brendan", "output": "⠠⠃⠗⠢⠙â â " }, { "input": "Brennan", "output": "⠠⠃⠗⠢â â â " }, { "input": "Brenner", "output": "⠠⠃⠗⠢â â »" }, { "input": "Brent", "output": "⠠⠃⠗⠢⠞" }, { "input": "Brenton", "output": "⠠⠃⠗⠢⠞⠕â " }, { "input": "Brest", "output": "⠠⠃⠗⠑⠌" }, { "input": "Bret", "output": "⠠⠃⠗⠑⠞" }, { "input": "Breton", "output": "⠠⠃⠗⠑⠞⠕â " }, { "input": "Brett", "output": "⠠⠃⠗⠑⠞⠞" }, { "input": "Brewer", "output": "⠠⠃⠗⠑⠺⠻" }, { "input": "Brewster", "output": "⠠⠃⠗⠑⠺⠌⠻" }, { "input": "Brezhnev", "output": "⠠⠃⠗⠑⠵⠓â â ‘â §" }, { "input": "Brian", "output": "⠠⠃⠗⠊â â " }, { "input": "Briana", "output": "⠠⠃⠗⠊â â â " }, { "input": "Brianna", "output": "⠠⠃⠗⠊â â â â " }, { "input": "Brice", "output": "⠠⠃⠗⠊⠉⠑" }, { "input": "Bridalveil", "output": "⠠⠃⠗⠊⠙â â ‡â §â ‘â Šâ ‡" }, { "input": "Bridgeport", "output": "⠠⠃⠗⠊⠙⠛⠑â â •â —â ž" }, { "input": "Bridger", "output": "⠠⠃⠗⠊⠙⠛⠻" }, { "input": "Bridges", "output": "⠠⠃⠗⠊⠙⠛⠑⠎" }, { "input": "Bridget", "output": "⠠⠃⠗⠊⠙⠛⠑⠞" }, { "input": "Bridgetown", "output": "⠠⠃⠗⠊⠙⠛⠑⠞⠪â " }, { "input": "Bridgett", "output": "⠠⠃⠗⠊⠙⠛⠑⠞⠞" }, { "input": "Bridgette", "output": "⠠⠃⠗⠊⠙⠛⠑⠞⠞⠑" }, { "input": "Bridgman", "output": "⠠⠃⠗⠊⠙⠛â â â " }, { "input": "Brie", "output": "⠠⠃⠗⠊⠑" }, { "input": "Brigadoon", "output": "⠠⠃⠗⠊⠛â â ™â •â •â " }, { "input": "Briggs", "output": "⠠⠃⠗⠊⠶⠎" }, { "input": "Brigham", "output": "⠠⠃⠗⠊⠣â â " }, { "input": "Bright", "output": "â  â ƒâ â —" }, { "input": "Brighton", "output": "â  â ƒâ â —â •â " }, { "input": "Brigid", "output": "⠠⠃⠗⠊⠛⠊⠙" }, { "input": "Brigitte", "output": "⠠⠃⠗⠊⠛⠊⠞⠞⠑" }, { "input": "Brillo", "output": "⠠⠃⠗⠊⠇⠇⠕" }, { "input": "Brinkley", "output": "⠠⠃⠗⠔⠅⠇⠑⠽" }, { "input": "Brisbane", "output": "⠠⠃⠗⠊⠎⠃â â â ‘" }, { "input": "Bristol", "output": "⠠⠃⠗⠊⠌⠕⠇" }, { "input": "Brit", "output": "⠠⠃⠗⠊⠞" }, { "input": "Britain", "output": "⠠⠃⠗⠊⠞â â ”" }, { "input": "Britannia", "output": "⠠⠃⠗⠊⠞â â â â Šâ " }, { "input": "Britannic", "output": "⠠⠃⠗⠊⠞â â â â Šâ ‰" }, { "input": "Britannica", "output": "⠠⠃⠗⠊⠞â â â â Šâ ‰â " }, { "input": "British", "output": "⠠⠃⠗⠊⠞⠊⠩" }, { "input": "Britisher", "output": "⠠⠃⠗⠊⠞⠊⠩⠻" }, { "input": "Britney", "output": "⠠⠃⠗⠊⠞â â ‘â ½" }, { "input": "Briton", "output": "⠠⠃⠗⠊⠞⠕â " }, { "input": "Britons", "output": "⠠⠃⠗⠊⠞⠕â â Ž" }, { "input": "Brits", "output": "⠠⠃⠗⠊⠞⠎" }, { "input": "Britt", "output": "⠠⠃⠗⠊⠞⠞" }, { "input": "Brittany", "output": "⠠⠃⠗⠊⠞⠞â â â ½" }, { "input": "Britten", "output": "⠠⠃⠗⠊⠞⠞⠢" }, { "input": "Brittney", "output": "⠠⠃⠗⠊⠞⠞â â ‘â ½" }, { "input": "Brno", "output": "⠠⠃⠗â â •" }, { "input": "Broadway", "output": "⠠⠃⠗⠕â â ™â ºâ â ½" }, { "input": "Broadways", "output": "⠠⠃⠗⠕â â ™â ºâ â ½â Ž" }, { "input": "Brobdingnag", "output": "⠠⠃⠗⠕⠃⠙⠬â â â ›" }, { "input": "Brobdingnagian", "output": "⠠⠃⠗⠕⠃⠙⠬â â â ›â Šâ â " }, { "input": "Brock", "output": "⠠⠃⠗⠕⠉⠅" }, { "input": "Brokaw", "output": "⠠⠃⠗⠕⠅â â º" }, { "input": "Bronson", "output": "⠠⠃⠗⠕â â Žâ •â " }, { "input": "Bronte", "output": "⠠⠃⠗⠕â â žâ ‘" }, { "input": "Bronx", "output": "⠠⠃⠗⠕â â ­" }, { "input": "Brooke", "output": "⠠⠃⠗⠕⠕⠅⠑" }, { "input": "Brooklyn", "output": "⠠⠃⠗⠕⠕⠅⠇⠽â " }, { "input": "Brooks", "output": "⠠⠃⠗⠕⠕⠅⠎" }, { "input": "Brown", "output": "⠠⠃⠗⠪â " }, { "input": "Browne", "output": "⠠⠃⠗⠪â â ‘" }, { "input": "Brownian", "output": "⠠⠃⠗⠪â â Šâ â " }, { "input": "Brownie", "output": "⠠⠃⠗⠪â â Šâ ‘" }, { "input": "Brownies", "output": "⠠⠃⠗⠪â â Šâ ‘â Ž" }, { "input": "Browning", "output": "⠠⠃⠗⠪â â ¬" }, { "input": "Brownshirt", "output": "⠠⠃⠗⠪â â ©â Šâ —â ž" }, { "input": "Brownsville", "output": "⠠⠃⠗⠪â â Žâ §â Šâ ‡â ‡â ‘" }, { "input": "Brubeck", "output": "⠠⠃⠗⠥⠃⠑⠉⠅" }, { "input": "Bruce", "output": "⠠⠃⠗⠥⠉⠑" }, { "input": "Bruckner", "output": "⠠⠃⠗⠥⠉⠅â â »" }, { "input": "Brueghel", "output": "⠠⠃⠗⠥⠑⠣⠑⠇" }, { "input": "Brummel", "output": "⠠⠃⠗⠥â â â ‘â ‡" }, { "input": "Brunei", "output": "⠠⠃⠗⠥â â ‘â Š" }, { "input": "Brunelleschi", "output": "⠠⠃⠗⠥â â ‘⠇⠇⠑⠎⠡⠊" }, { "input": "Brunhilde", "output": "⠠⠃⠗⠥â â “⠊⠇⠙⠑" }, { "input": "Bruno", "output": "⠠⠃⠗⠥â â •" }, { "input": "Brunswick", "output": "⠠⠃⠗⠥â â Žâ ºâ Šâ ‰â …" }, { "input": "Brussels", "output": "⠠⠃⠗⠥⠎⠎⠑⠇⠎" }, { "input": "Brut", "output": "⠠⠃⠗⠥⠞" }, { "input": "Brutus", "output": "⠠⠃⠗⠥⠞⠥⠎" }, { "input": "Bryan", "output": "⠠⠃⠗⠽â â " }, { "input": "Bryant", "output": "⠠⠃⠗⠽â â â ž" }, { "input": "Bryce", "output": "⠠⠃⠗⠽⠉⠑" }, { "input": "Brynner", "output": "⠠⠃⠗⠽â â â »" }, { "input": "Bryon", "output": "⠠⠃⠗⠽⠕â " }, { "input": "Brzezinski", "output": "⠠⠃⠗⠵⠑⠵⠔⠎⠅⠊" }, { "input": "Btu", "output": "⠠⠃⠞⠥" }, { "input": "Buber", "output": "⠠⠃⠥⠃⠻" }, { "input": "Buchanan", "output": "⠠⠃⠥⠡â â â â " }, { "input": "Bucharest", "output": "⠠⠃⠥⠡⠜⠑⠌" }, { "input": "Buchenwald", "output": "⠠⠃⠥⠡⠢⠺â â ‡â ™" }, { "input": "Buchwald", "output": "⠠⠃⠥⠡⠺â â ‡â ™" }, { "input": "Buck", "output": "⠠⠃⠥⠉⠅" }, { "input": "Buckingham", "output": "⠠⠃⠥⠉⠅⠬⠓â â " }, { "input": "Buckley", "output": "⠠⠃⠥⠉⠅⠇⠑⠽" }, { "input": "Buckner", "output": "⠠⠃⠥⠉⠅â â »" }, { "input": "Bud", "output": "⠠⠃⠥⠙" }, { "input": "Budapest", "output": "⠠⠃⠥⠙â â â ‘â Œ" }, { "input": "Buddha", "output": "⠠⠃⠥⠙⠙⠓â " }, { "input": "Buddhas", "output": "⠠⠃⠥⠙⠙⠓â â Ž" }, { "input": "Buddhism", "output": "⠠⠃⠥⠙⠙⠓⠊⠎â " }, { "input": "Buddhisms", "output": "⠠⠃⠥⠙⠙⠓⠊⠎â â Ž" }, { "input": "Buddhist", "output": "⠠⠃⠥⠙⠙⠓⠊⠌" }, { "input": "Buddhists", "output": "⠠⠃⠥⠙⠙⠓⠊⠌⠎" }, { "input": "Buddy", "output": "⠠⠃⠥⠙⠙⠽" }, { "input": "Budweiser", "output": "⠠⠃⠥⠙⠺⠑⠊⠎⠻" }, { "input": "Buffalo", "output": "⠠⠃⠥⠖â â ‡â •" }, { "input": "Buffy", "output": "⠠⠃⠥⠖⠽" }, { "input": "Buford", "output": "⠠⠃⠥⠿⠙" }, { "input": "Bugatti", "output": "⠠⠃⠥⠛â â žâ žâ Š" }, { "input": "Bugzilla", "output": "⠠⠃⠥⠛⠵⠊⠇⠇â " }, { "input": "Buick", "output": "⠠⠃⠥⠊⠉⠅" }, { "input": "Bujumbura", "output": "⠠⠃⠥⠚⠥â â ƒâ ¥â —â " }, { "input": "Bukhara", "output": "⠠⠃⠥⠅⠓⠜â " }, { "input": "Bukharin", "output": "⠠⠃⠥⠅⠓⠜⠔" }, { "input": "Bulawayo", "output": "⠠⠃⠥⠇â â ºâ â ½â •" }, { "input": "Bulfinch", "output": "⠠⠃⠥⠇⠋⠔⠡" }, { "input": "Bulganin", "output": "⠠⠃⠥⠇⠛â â â ”" }, { "input": "Bulgar", "output": "⠠⠃⠥⠇⠛⠜" }, { "input": "Bulgari", "output": "⠠⠃⠥⠇⠛⠜⠊" }, { "input": "Bulgaria", "output": "⠠⠃⠥⠇⠛⠜⠊â " }, { "input": "Bulgarian", "output": "⠠⠃⠥⠇⠛⠜⠊â â " }, { "input": "Bulgarians", "output": "⠠⠃⠥⠇⠛⠜⠊â â â Ž" }, { "input": "Bullock", "output": "⠠⠃⠥⠇⠇⠕⠉⠅" }, { "input": "Bullwinkle", "output": "⠠⠃⠥⠇⠇⠺⠔⠅⠇⠑" }, { "input": "Bultmann", "output": "⠠⠃⠥⠇⠞â â â â " }, { "input": "Bumppo", "output": "⠠⠃⠥â â â â •" }, { "input": "Bunche", "output": "⠠⠃⠥â â ¡â ‘" }, { "input": "Bundesbank", "output": "⠠⠃⠥â â ™â ‘â Žâ ƒâ â â …" }, { "input": "Bundestag", "output": "⠠⠃⠥â â ™â ‘â Žâ žâ â ›" }, { "input": "Bunin", "output": "⠠⠃⠥â â ”" }, { "input": "Bunker", "output": "⠠⠃⠥â â …â »" }, { "input": "Bunsen", "output": "⠠⠃⠥â â Žâ ¢" }, { "input": "Bunyan", "output": "⠠⠃⠥â â ½â â " }, { "input": "Burbank", "output": "⠠⠃⠥⠗⠃â â â …" }, { "input": "Burberry", "output": "⠠⠃⠥⠗⠃⠻⠗⠽" }, { "input": "Burch", "output": "⠠⠃⠥⠗⠡" }, { "input": "Burger", "output": "⠠⠃⠥⠗⠛⠻" }, { "input": "Burgess", "output": "⠠⠃⠥⠗⠛⠑⠎⠎" }, { "input": "Burgoyne", "output": "⠠⠃⠥⠗⠛⠕⠽â â ‘" }, { "input": "Burgundian", "output": "⠠⠃⠥⠗⠛⠥â â ™â Šâ â " }, { "input": "Burgundies", "output": "⠠⠃⠥⠗⠛⠥â â ™â Šâ ‘â Ž" }, { "input": "Burgundy", "output": "⠠⠃⠥⠗⠛⠥â â ™â ½" }, { "input": "Burke", "output": "⠠⠃⠥⠗⠅⠑" }, { "input": "Burks", "output": "⠠⠃⠥⠗⠅⠎" }, { "input": "Burl", "output": "⠠⠃⠥⠗⠇" }, { "input": "Burma", "output": "⠠⠃⠥⠗â â " }, { "input": "Burmese", "output": "⠠⠃⠥⠗â â ‘â Žâ ‘" }, { "input": "Burnett", "output": "⠠⠃⠥⠗â â ‘â žâ ž" }, { "input": "Burns", "output": "⠠⠃⠥⠗â â Ž" }, { "input": "Burnside", "output": "⠠⠃⠥⠗â â Žâ Šâ ™â ‘" }, { "input": "Burr", "output": "⠠⠃⠥⠗⠗" }, { "input": "Burris", "output": "⠠⠃⠥⠗⠗⠊⠎" }, { "input": "Burroughs", "output": "⠠⠃⠥⠗⠗⠳⠣⠎" }, { "input": "Bursa", "output": "⠠⠃⠥⠗⠎â " }, { "input": "Burt", "output": "⠠⠃⠥⠗⠞" }, { "input": "Burton", "output": "⠠⠃⠥⠗⠞⠕â " }, { "input": "Burundi", "output": "⠠⠃⠥⠗⠥â â ™â Š" }, { "input": "Busch", "output": "⠠⠃⠥⠎⠡" }, { "input": "Bush", "output": "⠠⠃⠥⠩" }, { "input": "Bushido", "output": "⠠⠃⠥⠩⠊⠙⠕" }, { "input": "Bushnell", "output": "⠠⠃⠥⠩â â ‘⠇⠇" }, { "input": "Butler", "output": "⠠⠃⠥⠞⠇⠻" }, { "input": "Butterfingers", "output": "⠠⠃⠥⠞⠞⠻⠋⠬⠻⠎" }, { "input": "Buxtehude", "output": "⠠⠃⠥⠭⠞⠑⠓⠥⠙⠑" }, { "input": "Buñuel", "output": "⠠⠃⠥⠠⠘⠻â â ¸â –⠥⠑⠇" }, { "input": "Byblos", "output": "⠠⠃⠽⠃⠇⠕⠎" }, { "input": "Byelorussia", "output": "⠠⠃⠽⠑⠇⠕⠗⠥⠎⠎⠊â " }, { "input": "Byers", "output": "⠠⠃⠽⠻⠎" }, { "input": "Byrd", "output": "⠠⠃⠽⠗⠙" }, { "input": "Byron", "output": "⠠⠃⠽⠗⠕â " }, { "input": "Byronic", "output": "⠠⠃⠽⠗⠕â â Šâ ‰" }, { "input": "Byzantine", "output": "⠠⠃⠽⠵â â â žâ ”â ‘" }, { "input": "Byzantines", "output": "⠠⠃⠽⠵â â â žâ ”â ‘â Ž" }, { "input": "Byzantium", "output": "⠠⠃⠽⠵â â â žâ Šâ ¥â " }, { "input": "C", "output": "â °â  â ‰" }, { "input": "Ca", "output": "â  â ‰â " }, { "input": "Cabernet", "output": "â  â ‰â â ƒâ »â â ‘â ž" }, { "input": "Cabinet", "output": "â  â ‰â â ƒâ ”â ‘â ž" }, { "input": "Cabot", "output": "â  â ‰â â ƒâ •â ž" }, { "input": "Cabral", "output": "â  â ‰â â ƒâ —â â ‡" }, { "input": "Cabrera", "output": "â  â ‰â â ƒâ —â »â " }, { "input": "Cabrini", "output": "â  â ‰â â ƒâ —⠔⠊" }, { "input": "Cadillac", "output": "â  â ‰â â ™â Šâ ‡â ‡â â ‰" }, { "input": "Cadiz", "output": "â  â ‰â â ™â Šâ µ" }, { "input": "Caedmon", "output": "â  â ‰â â «â â •â " }, { "input": "Caerphilly", "output": "â  â ‰â â »â â “⠊⠇⠇⠽" }, { "input": "Caesar", "output": "â  â ‰â â ‘â Žâ œ" }, { "input": "Caesarean", "output": "â  â ‰â â ‘⠎⠜⠂â " }, { "input": "Caesars", "output": "â  â ‰â â ‘⠎⠜⠎" }, { "input": "Cage", "output": "â  â ‰â â ›â ‘" }, { "input": "Cagney", "output": "â  â ‰â â ›â â ‘â ½" }, { "input": "Cahokia", "output": "â  â ‰â â “â •â …â Šâ " }, { "input": "Caiaphas", "output": "â  â ‰â â Šâ â â “â â Ž" }, { "input": "Cain", "output": "â  â ‰â â ”" }, { "input": "Cains", "output": "â  â ‰â â ”â Ž" }, { "input": "Cairo", "output": "â  â ‰â â Šâ —â •" }, { "input": "Caitlin", "output": "â  â ‰â â Šâ žâ ‡â ”" }, { "input": "Cajun", "output": "â  â ‰â â šâ ¥â " }, { "input": "Cajuns", "output": "â  â ‰â â šâ ¥â â Ž" }, { "input": "Cal", "output": "â  â ‰â â ‡" }, { "input": "Calais", "output": "â  â ‰â â ‡â â Šâ Ž" }, { "input": "Calcutta", "output": "â  â ‰â â ‡â ‰â ¥â žâ žâ " }, { "input": "Calder", "output": "â  â ‰â â ‡â ™â »" }, { "input": "Calderon", "output": "â  â ‰â â ‡â ™â »â •â " }, { "input": "Caldwell", "output": "â  â ‰â â ‡â ™â ºâ ‘⠇⠇" }, { "input": "Caleb", "output": "â  â ‰â â ‡â ‘â ƒ" }, { "input": "Caledonia", "output": "â  â ‰â â ‡â «â •â â Šâ " }, { "input": "Calgary", "output": "â  â ‰â â ‡â ›â œâ ½" }, { "input": "Calhoun", "output": "â  â ‰â â ‡â “â ³â " }, { "input": "Cali", "output": "â  â ‰â â ‡â Š" }, { "input": "Caliban", "output": "â  â ‰â â ‡â Šâ ƒâ â " }, { "input": "California", "output": "â  â ‰â â ‡â Šâ ¿â â Šâ " }, { "input": "Californian", "output": "â  â ‰â â ‡â Šâ ¿â â Šâ â " }, { "input": "Californians", "output": "â  â ‰â â ‡â Šâ ¿â â Šâ â â Ž" }, { "input": "Caligula", "output": "â  â ‰â â ‡â Šâ ›â ¥â ‡â " }, { "input": "Callaghan", "output": "â  â ‰â â ‡â ‡â â £â â " }, { "input": "Callahan", "output": "â  â ‰â â ‡â ‡â â “â â " }, { "input": "Callao", "output": "â  â ‰â â ‡â ‡â â •" }, { "input": "Callas", "output": "â  â ‰â â ‡â ‡â â Ž" }, { "input": "Callie", "output": "â  â ‰â â ‡â ‡â Šâ ‘" }, { "input": "Calliope", "output": "â  â ‰â â ‡â ‡â Šâ •â â ‘" }, { "input": "Callisto", "output": "â  â ‰â â ‡â ‡â Šâ Œâ •" }, { "input": "Caloocan", "output": "â  â ‰â â ‡â •â •â ‰â â " }, { "input": "Calvary", "output": "â  â ‰â â ‡â §â œâ ½" }, { "input": "Calvert", "output": "â  â ‰â â ‡â §â »â ž" }, { "input": "Calvin", "output": "â  â ‰â â ‡â §â ”" }, { "input": "Calvinism", "output": "â  â ‰â â ‡â §â ”â Šâ Žâ " }, { "input": "Calvinisms", "output": "â  â ‰â â ‡â §â ”â Šâ Žâ â Ž" }, { "input": "Calvinist", "output": "â  â ‰â â ‡â §â ”â Šâ Œ" }, { "input": "Calvinistic", "output": "â  â ‰â â ‡â §â ”⠊⠌⠊⠉" }, { "input": "Calvinists", "output": "â  â ‰â â ‡â §â ”⠊⠌⠎" }, { "input": "Camacho", "output": "â  â ‰â â â â ¡â •" }, { "input": "Cambodia", "output": "â  â ‰â â â ƒâ •⠙⠊â " }, { "input": "Cambodian", "output": "â  â ‰â â â ƒâ •⠙⠊â â " }, { "input": "Cambodians", "output": "â  â ‰â â â ƒâ •⠙⠊â â â Ž" }, { "input": "Cambrian", "output": "â  â ‰â â â ƒâ —â Šâ â " }, { "input": "Cambridge", "output": "â  â ‰â â â ƒâ —⠊⠙⠛⠑" }, { "input": "Camel", "output": "â  â ‰â â â ‘â ‡" }, { "input": "Camelopardalis", "output": "â  â ‰â â â ‘⠇⠕â â œâ ™â â ‡â Šâ Ž" }, { "input": "Camelot", "output": "â  â ‰â â â ‘⠇⠕⠞" }, { "input": "Camembert", "output": "â  â ‰â â â ‘â â ƒâ »â ž" }, { "input": "Camemberts", "output": "â  â ‰â â â ‘â â ƒâ »â žâ Ž" }, { "input": "Cameron", "output": "â  â ‰â â â »â •â " }, { "input": "Cameroon", "output": "â  â ‰â â â »â •â •â " }, { "input": "Cameroons", "output": "â  â ‰â â â »â •â •â â Ž" }, { "input": "Camilla", "output": "â  â ‰â â â Šâ ‡â ‡â " }, { "input": "Camille", "output": "â  â ‰â â â Šâ ‡â ‡â ‘" }, { "input": "Camoens", "output": "â  â ‰â â â •⠢⠎" }, { "input": "Campanella", "output": "â  â ‰â â â â â â ‘⠇⠇â " }, { "input": "Campbell", "output": "â  â ‰â â â â ƒâ ‘⠇⠇" }, { "input": "Campinas", "output": "â  â ‰â â â â ”â â Ž" }, { "input": "Campos", "output": "â  â ‰â â â â •â Ž" }, { "input": "Camry", "output": "â  â ‰â â â —â ½" }, { "input": "Camus", "output": "â  â ‰â â â ¥â Ž" }, { "input": "Canaan", "output": "â  â ‰â â â â â " }, { "input": "Canada", "output": "â  â ‰â â â â ™â " }, { "input": "Canadian", "output": "â  â ‰â â â â ™â Šâ â " }, { "input": "Canadians", "output": "â  â ‰â â â â ™â Šâ â â Ž" }, { "input": "Canaletto", "output": "â  â ‰â â â â ‡â ‘â žâ žâ •" }, { "input": "Canaries", "output": "â  â ‰â â â œâ Šâ ‘â Ž" }, { "input": "Canaveral", "output": "â  â ‰â â â â §â »â â ‡" }, { "input": "Canberra", "output": "â  â ‰â â â ƒâ »â —â " }, { "input": "Cancer", "output": "⠠⠉⠨⠑⠗" }, { "input": "Cancers", "output": "⠠⠉⠨⠑⠗⠎" }, { "input": "Cancun", "output": "â  â ‰â â â ‰â ¥â " }, { "input": "Candace", "output": "⠠⠉⠯â â ‰â ‘" }, { "input": "Candice", "output": "⠠⠉⠯⠊⠉⠑" }, { "input": "Candide", "output": "⠠⠉⠯⠊⠙⠑" }, { "input": "Candy", "output": "⠠⠉⠯⠽" }, { "input": "Cannes", "output": "â  â ‰â â â â ‘â Ž" }, { "input": "Cannon", "output": "â  â ‰â â â â •â " }, { "input": "Canon", "output": "â  â ‰â â â •â " }, { "input": "Canopus", "output": "â  â ‰â â â •â â ¥â Ž" }, { "input": "Cantabrigian", "output": "â  â ‰â â â žâ â ƒâ —⠊⠛⠊â â " }, { "input": "Canterbury", "output": "â  â ‰â â â žâ »â ƒâ ¥â —â ½" }, { "input": "Canton", "output": "â  â ‰â â â žâ •â " }, { "input": "Cantonese", "output": "â  â ‰â â â žâ •â â ‘â Žâ ‘" }, { "input": "Cantor", "output": "â  â ‰â â â žâ •â —" }, { "input": "Cantrell", "output": "â  â ‰â â â žâ —⠑⠇⠇" }, { "input": "Cantu", "output": "â  â ‰â â â žâ ¥" }, { "input": "Canute", "output": "â  â ‰â â â ¥â žâ ‘" }, { "input": "Capablanca", "output": "â  â ‰â â â â ƒâ ‡â â â ‰â " }, { "input": "Capek", "output": "â  â ‰â â â ‘â …" }, { "input": "Capella", "output": "â  â ‰â â â ‘⠇⠇â " }, { "input": "Capet", "output": "â  â ‰â â â ‘â ž" }, { "input": "Capetian", "output": "â  â ‰â â â ‘â žâ Šâ â " }, { "input": "Capetown", "output": "â  â ‰â â â ‘â žâ ªâ " }, { "input": "Caph", "output": "â  â ‰â â â “" }, { "input": "Capistrano", "output": "â  â ‰â â â Šâ Œâ —â â â •" }, { "input": "Capitol", "output": "â  â ‰â â â Šâ žâ •â ‡" }, { "input": "Capitoline", "output": "â  â ‰â â â Šâ žâ •⠇⠔⠑" }, { "input": "Capitols", "output": "â  â ‰â â â Šâ žâ •⠇⠎" }, { "input": "Capone", "output": "â  â ‰â â â â •" }, { "input": "Capote", "output": "â  â ‰â â â •â žâ ‘" }, { "input": "Capra", "output": "â  â ‰â â â —â " }, { "input": "Capri", "output": "â  â ‰â â â —â Š" }, { "input": "Capricorn", "output": "â  â ‰â â â —⠊⠉⠕⠗â " }, { "input": "Capricorns", "output": "â  â ‰â â â —⠊⠉⠕⠗â â Ž" }, { "input": "Capt", "output": "â  â ‰â â â ž" }, { "input": "Capuchin", "output": "â  â ‰â â â ¥â ¡â ”" }, { "input": "Capulet", "output": "â  â ‰â â â ¥â ‡â ‘â ž" }, { "input": "Cara", "output": "⠠⠉⠜â " }, { "input": "Caracalla", "output": "⠠⠉⠜â â ‰â â ‡â ‡â " }, { "input": "Caracas", "output": "⠠⠉⠜â â ‰â â Ž" }, { "input": "Caravaggio", "output": "⠠⠉⠜â â §â â ¶â Šâ •" }, { "input": "Carboloy", "output": "⠠⠉⠜⠃⠕⠇⠕⠽" }, { "input": "Carboniferous", "output": "⠠⠉⠜⠃⠕â â Šâ ‹â »â ³â Ž" }, { "input": "Carborundum", "output": "⠠⠉⠜⠃⠕⠗⠥â â ™â ¥â " }, { "input": "Cardenas", "output": "⠠⠉⠜⠙⠢â â Ž" }, { "input": "Cardiff", "output": "⠠⠉⠜⠙⠊⠋⠋" }, { "input": "Cardin", "output": "⠠⠉⠜⠙⠔" }, { "input": "Cardozo", "output": "⠠⠉⠜⠙⠕⠵⠕" }, { "input": "Carey", "output": "⠠⠉⠜⠑⠽" }, { "input": "Carib", "output": "⠠⠉⠜⠊⠃" }, { "input": "Caribbean", "output": "⠠⠉⠜⠊⠆⠂â " }, { "input": "Caribbeans", "output": "⠠⠉⠜⠊⠆⠂â â Ž" }, { "input": "Carina", "output": "⠠⠉⠜⠔â " }, { "input": "Carissa", "output": "⠠⠉⠜⠊⠎⠎â " }, { "input": "Carl", "output": "⠠⠉⠜⠇" }, { "input": "Carla", "output": "⠠⠉⠜⠇â " }, { "input": "Carlene", "output": "⠠⠉⠜⠇⠢⠑" }, { "input": "Carlin", "output": "⠠⠉⠜⠇⠔" }, { "input": "Carlo", "output": "⠠⠉⠜⠇⠕" }, { "input": "Carlos", "output": "⠠⠉⠜⠇⠕⠎" }, { "input": "Carlsbad", "output": "⠠⠉⠜⠇⠎⠃â â ™" }, { "input": "Carlson", "output": "⠠⠉⠜⠇⠎⠕â " }, { "input": "Carlton", "output": "⠠⠉⠜⠇⠞⠕â " }, { "input": "Carly", "output": "⠠⠉⠜⠇⠽" }, { "input": "Carlyle", "output": "⠠⠉⠜⠇⠽⠇⠑" }, { "input": "Carmela", "output": "⠠⠉⠜â â ‘â ‡â " }, { "input": "Carmella", "output": "⠠⠉⠜â â ‘⠇⠇â " }, { "input": "Carmelo", "output": "⠠⠉⠜â â ‘⠇⠕" }, { "input": "Carmen", "output": "⠠⠉⠜â â ¢" }, { "input": "Carmichael", "output": "⠠⠉⠜â â Šâ ¡â â ‘â ‡" }, { "input": "Carmine", "output": "⠠⠉⠜â â ”â ‘" }, { "input": "Carnap", "output": "⠠⠉⠜â â â " }, { "input": "Carnation", "output": "⠠⠉⠜â â â °â " }, { "input": "Carnegie", "output": "⠠⠉⠜â â ‘⠛⠊⠑" }, { "input": "Carney", "output": "⠠⠉⠜â â ‘â ½" }, { "input": "Carnot", "output": "⠠⠉⠜â â •â ž" }, { "input": "Carol", "output": "⠠⠉⠜⠕⠇" }, { "input": "Carole", "output": "⠠⠉⠜⠕⠇⠑" }, { "input": "Carolina", "output": "⠠⠉⠜⠕⠇⠔â " }, { "input": "Caroline", "output": "⠠⠉⠜⠕⠇⠔⠑" }, { "input": "Carolingian", "output": "⠠⠉⠜⠕⠇⠬⠊â â " }, { "input": "Carolinian", "output": "⠠⠉⠜⠕⠇⠔⠊â â " }, { "input": "Carolyn", "output": "⠠⠉⠜⠕⠇⠽â " }, { "input": "Carpathian", "output": "⠠⠉⠜â â â ¹â Šâ â " }, { "input": "Carpathians", "output": "⠠⠉⠜â â â ¹â Šâ â â Ž" }, { "input": "Carpenter", "output": "⠠⠉⠜â â ¢â žâ »" }, { "input": "Carr", "output": "⠠⠉⠜⠗" }, { "input": "Carranza", "output": "⠠⠉⠜⠗â â â µâ " }, { "input": "Carrie", "output": "⠠⠉⠜⠗⠊⠑" }, { "input": "Carrier", "output": "⠠⠉⠜⠗⠊⠻" }, { "input": "Carrillo", "output": "⠠⠉⠜⠗⠊⠇⠇⠕" }, { "input": "Carroll", "output": "⠠⠉⠜⠗⠕⠇⠇" }, { "input": "Carson", "output": "⠠⠉⠜⠎⠕â " }, { "input": "Carter", "output": "⠠⠉⠜⠞⠻" }, { "input": "Cartesian", "output": "⠠⠉⠜⠞⠑⠎⠊â â " }, { "input": "Carthage", "output": "⠠⠉⠜⠹â â ›â ‘" }, { "input": "Carthaginian", "output": "⠠⠉⠜⠹â â ›â ”â Šâ â " }, { "input": "Cartier", "output": "⠠⠉⠜⠞⠊⠻" }, { "input": "Cartwright", "output": "⠠⠉⠜⠞⠺â â —" }, { "input": "Caruso", "output": "⠠⠉⠜⠥⠎⠕" }, { "input": "Carver", "output": "⠠⠉⠜⠧⠻" }, { "input": "Cary", "output": "⠠⠉⠜⠽" }, { "input": "Casablanca", "output": "â  â ‰â â Žâ â ƒâ ‡â â â ‰â " }, { "input": "Casals", "output": "â  â ‰â â Žâ â ‡â Ž" }, { "input": "Casandra", "output": "â  â ‰â â Žâ ¯â —â " }, { "input": "Casanova", "output": "â  â ‰â â Žâ â â •â §â " }, { "input": "Casanovas", "output": "â  â ‰â â Žâ â â •â §â â Ž" }, { "input": "Cascades", "output": "â  â ‰â â Žâ ‰â â ™â ‘â Ž" }, { "input": "Case", "output": "â  â ‰â â Žâ ‘" }, { "input": "Casey", "output": "â  â ‰â â Žâ ‘â ½" }, { "input": "Cash", "output": "â  â ‰â â ©" }, { "input": "Casio", "output": "â  â ‰â â Žâ Šâ •" }, { "input": "Caspar", "output": "â  â ‰â â Žâ â œ" }, { "input": "Caspian", "output": "â  â ‰â â Žâ â Šâ â " }, { "input": "Cassandra", "output": "â  â ‰â â Žâ Žâ ¯â —â " }, { "input": "Cassatt", "output": "â  â ‰â â Žâ Žâ â žâ ž" }, { "input": "Cassie", "output": "â  â ‰â â Žâ Žâ Šâ ‘" }, { "input": "Cassiopeia", "output": "â  â ‰â â Žâ Žâ Šâ •â â ‘â Šâ " }, { "input": "Cassius", "output": "â  â ‰â â Žâ Žâ Šâ ¥â Ž" }, { "input": "Castaneda", "output": "â  â ‰â â Œâ â â «â " }, { "input": "Castillo", "output": "â  â ‰â â Œâ Šâ ‡â ‡â •" }, { "input": "Castlereagh", "output": "â  â ‰â â Œâ ‡â ‘â —â ‚â £" }, { "input": "Castor", "output": "â  â ‰â â Œâ •â —" }, { "input": "Castries", "output": "â  â ‰â â Œâ —â Šâ ‘â Ž" }, { "input": "Castro", "output": "â  â ‰â â Œâ —â •" }, { "input": "Catalan", "output": "â  â ‰â â žâ â ‡â â " }, { "input": "Catalina", "output": "â  â ‰â â žâ â ‡â ”â " }, { "input": "Catalonia", "output": "â  â ‰â â žâ â ‡â •â â Šâ " }, { "input": "Catawba", "output": "â  â ‰â â žâ â ºâ ƒâ " }, { "input": "Caterpillar", "output": "â  â ‰â â žâ »â â Šâ ‡â ‡â œ" }, { "input": "Cathay", "output": "â  â ‰â â ¹â â ½" }, { "input": "Cather", "output": "â  â ‰â â ®â —" }, { "input": "Catherine", "output": "â  â ‰â â ®â —⠔⠑" }, { "input": "Cathleen", "output": "â  â ‰â â ¹â ‡â ‘â ¢" }, { "input": "Catholic", "output": "â  â ‰â â ¹â •⠇⠊⠉" }, { "input": "Catholicism", "output": "â  â ‰â â ¹â •⠇⠊⠉⠊⠎â " }, { "input": "Catholicisms", "output": "â  â ‰â â ¹â •⠇⠊⠉⠊⠎â â Ž" }, { "input": "Catholics", "output": "â  â ‰â â ¹â •⠇⠊⠉⠎" }, { "input": "Cathryn", "output": "â  â ‰â â ¹â —â ½â " }, { "input": "Cathy", "output": "â  â ‰â â ¹â ½" }, { "input": "Catiline", "output": "â  â ‰â â žâ Šâ ‡â ”â ‘" }, { "input": "Cato", "output": "â  â ‰â â žâ •" }, { "input": "Catskill", "output": "â  â ‰â â žâ Žâ …⠊⠇⠇" }, { "input": "Catskills", "output": "â  â ‰â â žâ Žâ …⠊⠇⠇⠎" }, { "input": "Catt", "output": "â  â ‰â â žâ ž" }, { "input": "Catullus", "output": "â  â ‰â â žâ ¥â ‡â ‡â ¥â Ž" }, { "input": "Caucasian", "output": "â  â ‰â â ¥â ‰â â Žâ Šâ â " }, { "input": "Caucasians", "output": "â  â ‰â â ¥â ‰â â Žâ Šâ â â Ž" }, { "input": "Caucasoid", "output": "â  â ‰â â ¥â ‰â â Žâ •â Šâ ™" }, { "input": "Caucasus", "output": "â  â ‰â â ¥â ‰â â Žâ ¥â Ž" }, { "input": "Cauchy", "output": "â  â ‰â â ¥â ¡â ½" }, { "input": "Cavendish", "output": "â  â ‰â â §â ¢â ™â Šâ ©" }, { "input": "Cavour", "output": "â  â ‰â â §â ³â —" }, { "input": "Caxton", "output": "â  â ‰â â ­â žâ •â " }, { "input": "Cayenne", "output": "â  â ‰â â ½â ¢â â ‘" }, { "input": "Cayman", "output": "â  â ‰â â ½â â â " }, { "input": "Cayuga", "output": "â  â ‰â â ½â ¥â ›â " }, { "input": "Cd", "output": "⠰⠠⠉⠙" }, { "input": "Ceausescu", "output": "⠠⠉⠂⠥⠎⠑⠎⠉⠥" }, { "input": "Cebu", "output": "⠠⠉⠑⠃⠥" }, { "input": "Cebuano", "output": "⠠⠉⠑⠃⠥â â â •" }, { "input": "Cecelia", "output": "⠠⠉⠑⠉⠑⠇⠊â " }, { "input": "Cecil", "output": "⠠⠉⠑⠉⠊⠇" }, { "input": "Cecile", "output": "⠠⠉⠑⠉⠊⠇⠑" }, { "input": "Cecilia", "output": "⠠⠉⠑⠉⠊⠇⠊â " }, { "input": "Cecily", "output": "⠠⠉⠑⠉⠊⠇⠽" }, { "input": "Cedric", "output": "⠠⠉⠫⠗⠊⠉" }, { "input": "Celebes", "output": "⠠⠉⠑⠇⠑⠃⠑⠎" }, { "input": "Celeste", "output": "⠠⠉⠑⠇⠑⠌⠑" }, { "input": "Celia", "output": "⠠⠉⠑⠇⠊â " }, { "input": "Celina", "output": "⠠⠉⠑⠇⠔â " }, { "input": "Cellini", "output": "⠠⠉⠑⠇⠇⠔⠊" }, { "input": "Celsius", "output": "⠠⠉⠑⠇⠎⠊⠥⠎" }, { "input": "Celt", "output": "⠠⠉⠑⠇⠞" }, { "input": "Celtic", "output": "⠠⠉⠑⠇⠞⠊⠉" }, { "input": "Celtics", "output": "⠠⠉⠑⠇⠞⠊⠉⠎" }, { "input": "Celts", "output": "⠠⠉⠑⠇⠞⠎" }, { "input": "Cenozoic", "output": "⠠⠉⠢⠕⠵⠕⠊⠉" }, { "input": "Centaurus", "output": "⠠⠉⠢⠞â â ¥â —⠥⠎" }, { "input": "Centigrade", "output": "⠠⠉⠢⠞⠊⠛⠗â â ™â ‘" }, { "input": "Cepheid", "output": "⠠⠉⠑â â “â ‘â Šâ ™" }, { "input": "Cepheus", "output": "⠠⠉⠑â â “⠑⠥⠎" }, { "input": "Cerberus", "output": "⠠⠉⠻⠃⠻⠥⠎" }, { "input": "Cerenkov", "output": "⠠⠉⠻⠢⠅⠕⠧" }, { "input": "Ceres", "output": "⠠⠉⠻⠑⠎" }, { "input": "Cerf", "output": "⠠⠉⠻⠋" }, { "input": "Cervantes", "output": "⠠⠉⠻⠧â â â žâ ‘â Ž" }, { "input": "Cesar", "output": "⠠⠉⠑⠎⠜" }, { "input": "Cesarean", "output": "⠠⠉⠑⠎⠜⠂â " }, { "input": "Cessna", "output": "⠠⠉⠑⠎⠎â â " }, { "input": "Cetus", "output": "⠠⠉⠑⠞⠥⠎" }, { "input": "Ceylon", "output": "⠠⠉⠑⠽⠇⠕â " }, { "input": "Cezanne", "output": "⠠⠉⠑⠵â â â â ‘" }, { "input": "Cf", "output": "⠠⠉⠋" }, { "input": "Chablis", "output": "â  â ¡â â ƒâ ‡â Šâ Ž" }, { "input": "Chad", "output": "â  â ¡â â ™" }, { "input": "Chadwick", "output": "â  â ¡â â ™â ºâ Šâ ‰â …" }, { "input": "Chagall", "output": "â  â ¡â â ›â â ‡â ‡" }, { "input": "Chaitanya", "output": "â  â ¡â â Šâ žâ â â ½â " }, { "input": "Chaitin", "output": "â  â ¡â â Šâ žâ ”" }, { "input": "Chaldean", "output": "â  â ¡â â ‡â ™â ‚â " }, { "input": "Challenger", "output": "â  â ¡â â ‡â ‡â ¢â ›â »" }, { "input": "Chamberlain", "output": "â  â ¡â â â ƒâ »â ‡â â ”" }, { "input": "Chambers", "output": "â  â ¡â â â ƒâ »â Ž" }, { "input": "Champlain", "output": "â  â ¡â â â â ‡â â ”" }, { "input": "Champollion", "output": "â  â ¡â â â â •⠇⠇⠊⠕â " }, { "input": "Chan", "output": "â  â ¡â â " }, { "input": "Chance", "output": "⠠⠡⠨⠑" }, { "input": "Chancellorsville", "output": "⠠⠡⠨⠑⠇⠇⠕⠗⠎⠧⠊⠇⠇⠑" }, { "input": "Chandigarh", "output": "⠠⠡⠯⠊⠛⠜⠓" }, { "input": "Chandler", "output": "⠠⠡⠯⠇⠻" }, { "input": "Chandon", "output": "⠠⠡⠯⠕â " }, { "input": "Chandra", "output": "⠠⠡⠯⠗â " }, { "input": "Chandragupta", "output": "⠠⠡⠯⠗â â ›â ¥â â žâ " }, { "input": "Chandrasekhar", "output": "⠠⠡⠯⠗â â Žâ ‘â …â “â œ" }, { "input": "Chanel", "output": "â  â ¡â â â ‘â ‡" }, { "input": "Chaney", "output": "â  â ¡â â â ‘â ½" }, { "input": "Chang", "output": "â  â ¡â â â ›" }, { "input": "Changchun", "output": "â  â ¡â â â ›â ¡â ¥â " }, { "input": "Changsha", "output": "â  â ¡â â â ›â ©â " }, { "input": "Chantilly", "output": "â  â ¡â â â žâ Šâ ‡â ‡â ½" }, { "input": "Chanukah", "output": "â  â ¡â â â ¥â …â â “" }, { "input": "Chanukahs", "output": "â  â ¡â â â ¥â …â â “â Ž" }, { "input": "Chaplin", "output": "â  â ¡â â â ‡â ”" }, { "input": "Chapman", "output": "â  â ¡â â â â â " }, { "input": "Chappaquiddick", "output": "â  â ¡â â â â â Ÿâ ¥â Šâ ™â ™â Šâ ‰â …" }, { "input": "Chapultepec", "output": "â  â ¡â â â ¥â ‡â žâ ‘â â ‘â ‰" }, { "input": "Charbray", "output": "⠠⠡⠜⠃⠗â â ½" }, { "input": "Chardonnay", "output": "⠠⠡⠜⠙⠕â â â â ½" }, { "input": "Charity", "output": "⠠⠡⠜⠰⠽" }, { "input": "Charlemagne", "output": "⠠⠡⠜⠇⠑â â â ›â â ‘" }, { "input": "Charlene", "output": "⠠⠡⠜⠇⠢⠑" }, { "input": "Charles", "output": "⠠⠡⠜⠇⠑⠎" }, { "input": "Charleston", "output": "⠠⠡⠜⠇⠑⠌⠕â " }, { "input": "Charlestons", "output": "⠠⠡⠜⠇⠑⠌⠕â â Ž" }, { "input": "Charley", "output": "⠠⠡⠜⠇⠑⠽" }, { "input": "Charlie", "output": "⠠⠡⠜⠇⠊⠑" }, { "input": "Charlotte", "output": "⠠⠡⠜⠇⠕⠞⠞⠑" }, { "input": "Charlottetown", "output": "⠠⠡⠜⠇⠕⠞⠞⠑⠞⠪â " }, { "input": "Charmaine", "output": "â  â ¡â œâ â â ”â ‘" }, { "input": "Charmin", "output": "â  â ¡â œâ â ”" }, { "input": "Charolais", "output": "⠠⠡⠜⠕⠇â â Šâ Ž" }, { "input": "Charon", "output": "⠠⠡⠜⠕â " }, { "input": "Chartism", "output": "⠠⠡⠜⠞⠊⠎â " }, { "input": "Chartres", "output": "⠠⠡⠜⠞⠗⠑⠎" }, { "input": "Charybdis", "output": "⠠⠡⠜⠽⠃⠙⠊⠎" }, { "input": "Chase", "output": "â  â ¡â â Žâ ‘" }, { "input": "Chasity", "output": "â  â ¡â â Žâ °â ½" }, { "input": "Chateaubriand", "output": "â  â ¡â â žâ ‚⠥⠃⠗⠊⠯" }, { "input": "Chattahoochee", "output": "â  â ¡â â žâ žâ â “â •â •â ¡â ‘â ‘" }, { "input": "Chattanooga", "output": "â  â ¡â â žâ žâ â â •â •â ›â " }, { "input": "Chatterley", "output": "â  â ¡â â žâ žâ »â ‡â ‘â ½" }, { "input": "Chatterton", "output": "â  â ¡â â žâ žâ »â žâ •â " }, { "input": "Chaucer", "output": "â  â ¡â â ¥â ‰â »" }, { "input": "Chauncey", "output": "â  â ¡â â ¥â â ‰â ‘â ½" }, { "input": "Chautauqua", "output": "â  â ¡â â ¥â žâ â ¥â Ÿâ ¥â " }, { "input": "Chavez", "output": "â  â ¡â â §â ‘â µ" }, { "input": "Chayefsky", "output": "â  â ¡â â ½â ‘â ‹â Žâ …â ½" }, { "input": "Che", "output": "â  â ¡â ‘" }, { "input": "Chechen", "output": "â  â ¡â ‘â ¡â ¢" }, { "input": "Chechnya", "output": "â  â ¡â ‘â ¡â â ½â " }, { "input": "Cheddar", "output": "⠠⠡⠫⠙⠜" }, { "input": "Cheer", "output": "â  â ¡â ‘â »" }, { "input": "Cheerios", "output": "⠠⠡⠑⠻⠊⠕⠎" }, { "input": "Cheetos", "output": "â  â ¡â ‘â ‘â žâ •â Ž" }, { "input": "Cheever", "output": "â  â ¡â ‘â ‘â §â »" }, { "input": "Chekhov", "output": "â  â ¡â ‘â …â “â •â §" }, { "input": "Chelsea", "output": "⠠⠡⠑⠇⠎⠑â " }, { "input": "Chelyabinsk", "output": "⠠⠡⠑⠇⠽â â ƒâ ”â Žâ …" }, { "input": "Chen", "output": "â  â ¡â ¢" }, { "input": "Cheney", "output": "⠠⠡⠢⠑⠽" }, { "input": "Chengdu", "output": "⠠⠡⠢⠛⠙⠥" }, { "input": "Chennai", "output": "â  â ¡â ¢â â â Š" }, { "input": "Cheops", "output": "â  â ¡â ‘â •â â Ž" }, { "input": "Cheri", "output": "⠠⠡⠻⠊" }, { "input": "Cherie", "output": "⠠⠡⠻⠊⠑" }, { "input": "Chernenko", "output": "â  â ¡â »â â ¢â …â •" }, { "input": "Chernobyl", "output": "â  â ¡â »â â •⠃⠽⠇" }, { "input": "Chernomyrdin", "output": "â  â ¡â »â â •â â ½â —⠙⠔" }, { "input": "Cherokee", "output": "⠠⠡⠻⠕⠅⠑⠑" }, { "input": "Cherokees", "output": "⠠⠡⠻⠕⠅⠑⠑⠎" }, { "input": "Cherry", "output": "⠠⠡⠻⠗⠽" }, { "input": "Cheryl", "output": "⠠⠡⠻⠽⠇" }, { "input": "Chesapeake", "output": "â  â ¡â ‘â Žâ â â ‚â …â ‘" }, { "input": "Cheshire", "output": "â  â ¡â ‘â ©â Šâ —â ‘" }, { "input": "Chester", "output": "⠠⠡⠑⠌⠻" }, { "input": "Chesterfield", "output": "⠠⠡⠑⠌⠻⠋⠊⠑⠇⠙" }, { "input": "Chesterton", "output": "⠠⠡⠑⠌⠻⠞⠕â " }, { "input": "Chevalier", "output": "â  â ¡â ‘â §â â ‡â Šâ »" }, { "input": "Cheviot", "output": "â  â ¡â ‘â §â Šâ •â ž" }, { "input": "Chevrolet", "output": "⠠⠡⠑⠧⠗⠕⠇⠑⠞" }, { "input": "Chevron", "output": "â  â ¡â ‘â §â —â •â " }, { "input": "Chevy", "output": "â  â ¡â ‘â §â ½" }, { "input": "Cheyenne", "output": "⠠⠡⠑⠽⠢â â ‘" }, { "input": "Cheyennes", "output": "⠠⠡⠑⠽⠢â â ‘â Ž" }, { "input": "Chi", "output": "â  â ¡â Š" }, { "input": "Chianti", "output": "â  â ¡â Šâ â â žâ Š" }, { "input": "Chiantis", "output": "â  â ¡â Šâ â â žâ Šâ Ž" }, { "input": "Chiba", "output": "â  â ¡â Šâ ƒâ " }, { "input": "Chibcha", "output": "⠠⠡⠊⠃⠡â " }, { "input": "Chicago", "output": "â  â ¡â Šâ ‰â â ›â •" }, { "input": "Chicagoan", "output": "â  â ¡â Šâ ‰â â ›â •â â " }, { "input": "Chicana", "output": "â  â ¡â Šâ ‰â â â " }, { "input": "Chicano", "output": "â  â ¡â Šâ ‰â â â •" }, { "input": "Chickasaw", "output": "⠠⠡⠊⠉⠅â â Žâ â º" }, { "input": "Chiclets", "output": "⠠⠡⠊⠉⠇⠑⠞⠎" }, { "input": "Chihuahua", "output": "â  â ¡â Šâ “â ¥â â “â ¥â " }, { "input": "Chihuahuas", "output": "â  â ¡â Šâ “â ¥â â “â ¥â â Ž" }, { "input": "Chile", "output": "⠠⠡⠊⠇⠑" }, { "input": "Chilean", "output": "⠠⠡⠊⠇⠂â " }, { "input": "Chileans", "output": "⠠⠡⠊⠇⠂â â Ž" }, { "input": "Chimborazo", "output": "â  â ¡â Šâ â ƒâ •â —â â µâ •" }, { "input": "Chimera", "output": "â  â ¡â Šâ â »â " }, { "input": "Chimu", "output": "â  â ¡â Šâ â ¥" }, { "input": "China", "output": "â  â ¡â ”â " }, { "input": "Chinatown", "output": "â  â ¡â ”â â žâ ªâ " }, { "input": "Chinese", "output": "⠠⠡⠔⠑⠎⠑" }, { "input": "Chinook", "output": "⠠⠡⠔⠕⠕⠅" }, { "input": "Chinooks", "output": "⠠⠡⠔⠕⠕⠅⠎" }, { "input": "Chipewyan", "output": "â  â ¡â Šâ â ‘⠺⠽â â " }, { "input": "Chippendale", "output": "â  â ¡â Šâ â â ¢â ™â â ‡â ‘" }, { "input": "Chippewa", "output": "â  â ¡â Šâ â â ‘â ºâ " }, { "input": "Chiquita", "output": "⠠⠡⠊⠟⠥⠊⠞â " }, { "input": "Chirico", "output": "⠠⠡⠊⠗⠊⠉⠕" }, { "input": "Chisholm", "output": "â  â ¡â Šâ Žâ “â •â ‡â " }, { "input": "Chisinau", "output": "â  â ¡â Šâ Žâ ”â â ¥" }, { "input": "Chittagong", "output": "â  â ¡â Šâ žâ žâ â ›â °â ›" }, { "input": "Chivas", "output": "â  â ¡â Šâ §â â Ž" }, { "input": "Chloe", "output": "⠠⠡⠇⠕⠑" }, { "input": "Choctaw", "output": "⠠⠡⠕⠉⠞â â º" }, { "input": "Chomsky", "output": "â  â ¡â •â â Žâ …â ½" }, { "input": "Chongqing", "output": "⠠⠡⠰⠛⠟⠬" }, { "input": "Chopin", "output": "â  â ¡â •â â ”" }, { "input": "Chopra", "output": "â  â ¡â •â â —â " }, { "input": "Chou", "output": "â  â ¡â ³" }, { "input": "Chretien", "output": "â  â ¡â —â ‘â žâ Šâ ¢" }, { "input": "Chris", "output": "â  â ¡â —â Šâ Ž" }, { "input": "Christ", "output": "â  â ¡â —â Šâ Œ" }, { "input": "Christa", "output": "â  â ¡â —â Šâ Œâ " }, { "input": "Christchurch", "output": "⠠⠡⠗⠊⠌⠡⠥⠗⠡" }, { "input": "Christendom", "output": "⠠⠡⠗⠊⠌⠢⠙⠕â " }, { "input": "Christendoms", "output": "⠠⠡⠗⠊⠌⠢⠙⠕â â Ž" }, { "input": "Christensen", "output": "⠠⠡⠗⠊⠌⠢⠎⠢" }, { "input": "Christi", "output": "⠠⠡⠗⠊⠌⠊" }, { "input": "Christian", "output": "⠠⠡⠗⠊⠌⠊â â " }, { "input": "Christianities", "output": "⠠⠡⠗⠊⠌⠊â â â Šâ žâ Šâ ‘â Ž" }, { "input": "Christianity", "output": "⠠⠡⠗⠊⠌⠊â â â °â ½" }, { "input": "Christians", "output": "⠠⠡⠗⠊⠌⠊â â â Ž" }, { "input": "Christie", "output": "⠠⠡⠗⠊⠌⠊⠑" }, { "input": "Christina", "output": "⠠⠡⠗⠊⠌⠔â " }, { "input": "Christine", "output": "⠠⠡⠗⠊⠌⠔⠑" }, { "input": "Christmas", "output": "â  â ¡â —â Šâ Œâ â â Ž" }, { "input": "Christmases", "output": "â  â ¡â —â Šâ Œâ â â Žâ ‘â Ž" }, { "input": "Christoper", "output": "⠠⠡⠗⠊⠌⠕â â »" }, { "input": "Christopher", "output": "⠠⠡⠗⠊⠌⠕â â “â »" }, { "input": "Christs", "output": "⠠⠡⠗⠊⠌⠎" }, { "input": "Christy", "output": "⠠⠡⠗⠊⠌⠽" }, { "input": "Chrysler", "output": "⠠⠡⠗⠽⠎⠇⠻" }, { "input": "Chrysostom", "output": "⠠⠡⠗⠽⠎⠕⠌⠕â " }, { "input": "Chrystal", "output": "⠠⠡⠗⠽⠌â â ‡" }, { "input": "Chuck", "output": "⠠⠡⠥⠉⠅" }, { "input": "Chukchi", "output": "⠠⠡⠥⠅⠡⠊" }, { "input": "Chumash", "output": "â  â ¡â ¥â â â ©" }, { "input": "Chung", "output": "â  â ¡â ¥â â ›" }, { "input": "Chungking", "output": "â  â ¡â ¥â â ›â …â ¬" }, { "input": "Church", "output": "⠠⠡⠥⠗⠡" }, { "input": "Churchill", "output": "⠠⠡⠥⠗⠡⠊⠇⠇" }, { "input": "Churriguera", "output": "⠠⠡⠥⠗⠗⠊⠛⠥⠻â " }, { "input": "Chuvash", "output": "⠠⠡⠥⠧â â ©" }, { "input": "Ci", "output": "⠠⠉⠊" }, { "input": "Cicero", "output": "⠠⠉⠊⠉⠻⠕" }, { "input": "Cid", "output": "⠠⠉⠊⠙" }, { "input": "Cimabue", "output": "⠠⠉⠊â â â ƒâ ¥â ‘" }, { "input": "Cincinnati", "output": "⠠⠉⠔⠉⠔â â â žâ Š" }, { "input": "Cinderella", "output": "⠠⠉⠔⠙⠻⠑⠇⠇â " }, { "input": "Cinderellas", "output": "⠠⠉⠔⠙⠻⠑⠇⠇â â Ž" }, { "input": "Cindy", "output": "⠠⠉⠔⠙⠽" }, { "input": "CinemaScope", "output": "⠠⠉⠔⠑â â â  â Žâ ‰â •â â ‘" }, { "input": "Cinerama", "output": "⠠⠉⠔⠻â â â " }, { "input": "Cipro", "output": "⠠⠉⠊â â —â •" }, { "input": "Circe", "output": "⠠⠉⠊⠗⠉⠑" }, { "input": "Cisco", "output": "⠠⠉⠊⠎⠉⠕" }, { "input": "Citibank", "output": "⠠⠉⠊⠞⠊⠃â â â …" }, { "input": "Citigroup", "output": "⠠⠉⠊⠞⠊⠛⠗⠳â " }, { "input": "Citroen", "output": "⠠⠉⠊⠞⠗⠕⠢" }, { "input": "Cl", "output": "⠠⠉⠇" }, { "input": "Claiborne", "output": "⠠⠉⠇â â Šâ ƒâ •â —â â ‘" }, { "input": "Clair", "output": "⠠⠉⠇â â Šâ —" }, { "input": "Claire", "output": "⠠⠉⠇â â Šâ —â ‘" }, { "input": "Clairol", "output": "⠠⠉⠇â â Šâ —â •â ‡" }, { "input": "Clancy", "output": "⠠⠉⠇â â â ‰â ½" }, { "input": "Clapeyron", "output": "⠠⠉⠇â â â ‘⠽⠗⠕â " }, { "input": "Clapton", "output": "⠠⠉⠇â â â žâ •â " }, { "input": "Clara", "output": "⠠⠉⠇⠜â " }, { "input": "Clare", "output": "⠠⠉⠇⠜⠑" }, { "input": "Clarence", "output": "⠠⠉⠇⠜⠰⠑" }, { "input": "Clarendon", "output": "⠠⠉⠇⠜⠢⠙⠕â " }, { "input": "Clarice", "output": "⠠⠉⠇⠜⠊⠉⠑" }, { "input": "Clarissa", "output": "⠠⠉⠇⠜⠊⠎⠎â " }, { "input": "Clark", "output": "⠠⠉⠇⠜⠅" }, { "input": "Clarke", "output": "⠠⠉⠇⠜⠅⠑" }, { "input": "Claude", "output": "⠠⠉⠇â â ¥â ™â ‘" }, { "input": "Claudette", "output": "⠠⠉⠇â â ¥â ™â ‘â žâ žâ ‘" }, { "input": "Claudia", "output": "⠠⠉⠇â â ¥â ™â Šâ " }, { "input": "Claudine", "output": "⠠⠉⠇â â ¥â ™â ”â ‘" }, { "input": "Claudio", "output": "⠠⠉⠇â â ¥â ™â Šâ •" }, { "input": "Claudius", "output": "⠠⠉⠇â â ¥â ™â Šâ ¥â Ž" }, { "input": "Claus", "output": "⠠⠉⠇â â ¥â Ž" }, { "input": "Clausewitz", "output": "⠠⠉⠇â â ¥â Žâ ‘⠺⠊⠞⠵" }, { "input": "Clausius", "output": "⠠⠉⠇â â ¥â Žâ Šâ ¥â Ž" }, { "input": "Clay", "output": "⠠⠉⠇â â ½" }, { "input": "Clayton", "output": "⠠⠉⠇â â ½â žâ •â " }, { "input": "Clearasil", "output": "⠠⠉⠇⠑⠜â â Žâ Šâ ‡" }, { "input": "Clem", "output": "⠠⠉⠇⠑â " }, { "input": "Clemenceau", "output": "⠠⠉⠇⠑â â °â ‘â â ¥" }, { "input": "Clemens", "output": "⠠⠉⠇⠑â â ¢â Ž" }, { "input": "Clement", "output": "⠠⠉⠇⠑⠰⠞" }, { "input": "Clementine", "output": "⠠⠉⠇⠑⠰⠞⠔⠑" }, { "input": "Clements", "output": "⠠⠉⠇⠑⠰⠞⠎" }, { "input": "Clemons", "output": "⠠⠉⠇⠑â â •â â Ž" }, { "input": "Clemson", "output": "⠠⠉⠇⠑â â Žâ •â " }, { "input": "Cleo", "output": "⠠⠉⠇⠑⠕" }, { "input": "Cleopatra", "output": "⠠⠉⠇⠑⠕â â â žâ —â " }, { "input": "Cleveland", "output": "⠠⠉⠇⠑⠧⠑⠇⠯" }, { "input": "Cliburn", "output": "⠠⠉⠇⠊⠃⠥⠗â " }, { "input": "Cliff", "output": "⠠⠉⠇⠊⠋⠋" }, { "input": "Clifford", "output": "⠠⠉⠇⠊⠋⠿⠙" }, { "input": "Clifton", "output": "⠠⠉⠇⠊⠋⠞⠕â " }, { "input": "Cline", "output": "⠠⠉⠇⠔⠑" }, { "input": "Clint", "output": "⠠⠉⠇⠔⠞" }, { "input": "Clinton", "output": "⠠⠉⠇⠔⠞⠕â " }, { "input": "Clio", "output": "⠠⠉⠇⠊⠕" }, { "input": "Clive", "output": "⠠⠉⠇⠊⠧⠑" }, { "input": "Clorets", "output": "⠠⠉⠇⠕⠗⠑⠞⠎" }, { "input": "Clorox", "output": "⠠⠉⠇⠕⠗⠕⠭" }, { "input": "Clotho", "output": "⠠⠉⠇⠕⠹⠕" }, { "input": "Clouseau", "output": "⠠⠉⠇⠳⠎⠂⠥" }, { "input": "Clovis", "output": "⠠⠉⠇⠕⠧⠊⠎" }, { "input": "Clyde", "output": "⠠⠉⠇⠽⠙⠑" }, { "input": "Clydesdale", "output": "⠠⠉⠇⠽⠙⠑⠎⠙â â ‡â ‘" }, { "input": "Clytemnestra", "output": "⠠⠉⠇⠽⠞⠑â â â ‘⠌⠗â " }, { "input": "Cm", "output": "â  â ‰â " }, { "input": "Co", "output": "⠠⠉⠕" }, { "input": "Cobain", "output": "⠠⠉⠕⠃â â ”" }, { "input": "Cobb", "output": "⠠⠉⠕⠃⠃" }, { "input": "Cochabamba", "output": "⠠⠉⠕⠡â â ƒâ â â ƒâ " }, { "input": "Cochin", "output": "⠠⠉⠕⠡⠔" }, { "input": "Cochise", "output": "⠠⠉⠕⠡⠊⠎⠑" }, { "input": "Cochran", "output": "⠠⠉⠕⠡⠗â â " }, { "input": "Cockney", "output": "⠠⠉⠕⠉⠅â â ‘â ½" }, { "input": "Cocteau", "output": "⠠⠉⠕⠉⠞⠂⠥" }, { "input": "Cody", "output": "⠠⠉⠕⠙⠽" }, { "input": "Coffey", "output": "⠠⠉⠷⠋⠑⠽" }, { "input": "Cognac", "output": "⠠⠉⠕⠛â â â ‰" }, { "input": "Cohan", "output": "⠠⠉⠕⠓â â " }, { "input": "Cohen", "output": "⠠⠉⠕⠓⠢" }, { "input": "Coimbatore", "output": "⠠⠉⠕⠊â â ƒâ â žâ •â —â ‘" }, { "input": "Cointreau", "output": "⠠⠉⠕⠔⠞⠗⠂⠥" }, { "input": "Coke", "output": "⠠⠉⠕⠅⠑" }, { "input": "Cokes", "output": "⠠⠉⠕⠅⠑⠎" }, { "input": "Col", "output": "⠠⠉⠕⠇" }, { "input": "Colbert", "output": "⠠⠉⠕⠇⠃⠻⠞" }, { "input": "Colby", "output": "⠠⠉⠕⠇⠃⠽" }, { "input": "Cole", "output": "⠠⠉⠕⠇⠑" }, { "input": "Coleen", "output": "⠠⠉⠕⠇⠑⠢" }, { "input": "Coleman", "output": "⠠⠉⠕⠇⠑â â â " }, { "input": "Coleridge", "output": "⠠⠉⠕⠇⠻⠊⠙⠛⠑" }, { "input": "Colette", "output": "⠠⠉⠕⠇⠑⠞⠞⠑" }, { "input": "Colfax", "output": "⠠⠉⠕⠇⠋â â ­" }, { "input": "Colgate", "output": "⠠⠉⠕⠇⠛â â žâ ‘" }, { "input": "Colin", "output": "⠠⠉⠕⠇⠔" }, { "input": "Colleen", "output": "⠠⠉⠕⠇⠇⠑⠢" }, { "input": "Collier", "output": "⠠⠉⠕⠇⠇⠊⠻" }, { "input": "Collin", "output": "⠠⠉⠕⠇⠇⠔" }, { "input": "Collins", "output": "⠠⠉⠕⠇⠇⠔⠎" }, { "input": "Colo", "output": "⠠⠉⠕⠇⠕" }, { "input": "Cologne", "output": "⠠⠉⠕⠇⠕⠛â â ‘" }, { "input": "Colombia", "output": "⠠⠉⠕⠇⠕â â ƒâ Šâ " }, { "input": "Colombian", "output": "⠠⠉⠕⠇⠕â â ƒâ Šâ â " }, { "input": "Colombians", "output": "⠠⠉⠕⠇⠕â â ƒâ Šâ â â Ž" }, { "input": "Colombo", "output": "⠠⠉⠕⠇⠕â â ƒâ •" }, { "input": "Colon", "output": "⠠⠉⠕⠇⠕â " }, { "input": "Colorado", "output": "⠠⠉⠕⠇⠕⠗â â ™â •" }, { "input": "Colosseum", "output": "⠠⠉⠕⠇⠕⠎⠎⠑⠥â " }, { "input": "Colt", "output": "⠠⠉⠕⠇⠞" }, { "input": "Coltrane", "output": "⠠⠉⠕⠇⠞⠗â â â ‘" }, { "input": "Columbia", "output": "⠠⠉⠕⠇⠥â â ƒâ Šâ " }, { "input": "Columbine", "output": "⠠⠉⠕⠇⠥â â ƒâ ”â ‘" }, { "input": "Columbus", "output": "⠠⠉⠕⠇⠥â â ƒâ ¥â Ž" }, { "input": "Com", "output": "⠠⠉⠕â " }, { "input": "Comanche", "output": "⠠⠉⠕â â â â ¡â ‘" }, { "input": "Comanches", "output": "⠠⠉⠕â â â â ¡â ‘â Ž" }, { "input": "Combs", "output": "⠠⠉⠕â â ƒâ Ž" }, { "input": "Comintern", "output": "⠠⠉⠕â â ”â žâ »â " }, { "input": "Commons", "output": "⠠⠉⠕â â â •â â Ž" }, { "input": "Commonwealth", "output": "⠠⠉⠕â â â •â â ºâ ‚⠇⠹" }, { "input": "Communion", "output": "⠠⠉⠕â â â ¥â â Šâ •â " }, { "input": "Communions", "output": "⠠⠉⠕â â â ¥â â Šâ •â â Ž" }, { "input": "Communism", "output": "⠠⠉⠕â â â ¥â â Šâ Žâ " }, { "input": "Communist", "output": "⠠⠉⠕â â â ¥â â Šâ Œ" }, { "input": "Communists", "output": "⠠⠉⠕â â â ¥â â Šâ Œâ Ž" }, { "input": "Como", "output": "⠠⠉⠕â â •" }, { "input": "Comoros", "output": "⠠⠉⠕â â •â —â •â Ž" }, { "input": "Compaq", "output": "⠠⠉⠕â â â â Ÿ" }, { "input": "Compton", "output": "⠠⠉⠕â â â žâ •â " }, { "input": "CompuServe", "output": "⠠⠉⠕â â â ¥â  â Žâ »â §â ‘" }, { "input": "Comte", "output": "⠠⠉⠕â â žâ ‘" }, { "input": "Conakry", "output": "⠠⠉⠕â â â …â —â ½" }, { "input": "Conan", "output": "⠠⠉⠕â â â " }, { "input": "Concepción", "output": "⠠⠒⠉⠑â â ‰â Šâ  â ˜â »â â ¡â ¼â ‰â " }, { "input": "Concetta", "output": "⠠⠒⠉⠑⠞⠞â " }, { "input": "Concord", "output": "⠠⠒⠉⠕⠗⠙" }, { "input": "Concorde", "output": "⠠⠒⠉⠕⠗⠙⠑" }, { "input": "Concords", "output": "⠠⠒⠉⠕⠗⠙⠎" }, { "input": "Condillac", "output": "⠠⠒⠙⠊⠇⠇â â ‰" }, { "input": "Condorcet", "output": "⠠⠒⠙⠕⠗⠉⠑⠞" }, { "input": "Conestoga", "output": "⠠⠒⠑⠌⠕⠛â " }, { "input": "Confederacy", "output": "â  â ’â ‹â «â »â â ‰â ½" }, { "input": "Confederate", "output": "â  â ’â ‹â «â »â â žâ ‘" }, { "input": "Confederates", "output": "â  â ’â ‹â «â »â â žâ ‘â Ž" }, { "input": "Confucian", "output": "⠠⠒⠋⠥⠉⠊â â " }, { "input": "Confucianism", "output": "⠠⠒⠋⠥⠉⠊â â â Šâ Žâ " }, { "input": "Confucianisms", "output": "⠠⠒⠋⠥⠉⠊â â â Šâ Žâ â Ž" }, { "input": "Confucians", "output": "⠠⠒⠋⠥⠉⠊â â â Ž" }, { "input": "Confucius", "output": "⠠⠒⠋⠥⠉⠊⠥⠎" }, { "input": "Cong", "output": "⠠⠉⠰⠛" }, { "input": "Congo", "output": "⠠⠒⠛⠕" }, { "input": "Congolese", "output": "⠠⠒⠛⠕⠇⠑⠎⠑" }, { "input": "Congregationalist", "output": "⠠⠒⠛⠗⠑⠛â â °â â â ‡â Šâ Œ" }, { "input": "Congregationalists", "output": "⠠⠒⠛⠗⠑⠛â â °â â â ‡â Šâ Œâ Ž" }, { "input": "Congress", "output": "⠠⠒⠛⠗⠑⠎⠎" }, { "input": "Congresses", "output": "⠠⠒⠛⠗⠑⠎⠎⠑⠎" }, { "input": "Congreve", "output": "⠠⠒⠛⠗⠑⠧⠑" }, { "input": "Conley", "output": "⠠⠒⠇⠑⠽" }, { "input": "Conn", "output": "â  â ’â " }, { "input": "Connecticut", "output": "â  â ’â â ‘⠉⠞⠊⠉⠥⠞" }, { "input": "Connemara", "output": "â  â ’â â ‘â â œâ " }, { "input": "Conner", "output": "â  â ’â â »" }, { "input": "Connery", "output": "â  â ’â â »â ½" }, { "input": "Connie", "output": "â  â ’â â Šâ ‘" }, { "input": "Connolly", "output": "â  â ’â â •⠇⠇⠽" }, { "input": "Connors", "output": "â  â ’â â •â —â Ž" }, { "input": "Conrad", "output": "â  â ’â —â â ™" }, { "input": "Conrail", "output": "â  â ’â —â â Šâ ‡" }, { "input": "Constable", "output": "â  â ’â Œâ â ƒâ ‡â ‘" }, { "input": "Constance", "output": "⠠⠒⠌⠨⠑" }, { "input": "Constantine", "output": "â  â ’â Œâ â â žâ ”â ‘" }, { "input": "Constantinople", "output": "â  â ’â Œâ â â žâ ”â •â â ‡â ‘" }, { "input": "Constitution", "output": "⠠⠒⠌⠊⠞⠥⠰â " }, { "input": "Consuelo", "output": "⠠⠒⠎⠥⠑⠇⠕" }, { "input": "Continent", "output": "⠠⠒⠞⠔⠢⠞" }, { "input": "Continental", "output": "⠠⠒⠞⠔⠢⠞â â ‡" }, { "input": "Contreras", "output": "â  â ’â žâ —â »â â Ž" }, { "input": "Conway", "output": "â  â ’â ºâ â ½" }, { "input": "Cook", "output": "⠠⠉⠕⠕⠅" }, { "input": "Cooke", "output": "⠠⠉⠕⠕⠅⠑" }, { "input": "Cooley", "output": "⠠⠉⠕⠕⠇⠑⠽" }, { "input": "Coolidge", "output": "⠠⠉⠕⠕⠇⠊⠙⠛⠑" }, { "input": "Cooper", "output": "⠠⠉⠕⠕â â »" }, { "input": "Cooperstown", "output": "⠠⠉⠕⠕â â »â Žâ žâ ªâ " }, { "input": "Coors", "output": "⠠⠉⠕⠕⠗⠎" }, { "input": "Copacabana", "output": "⠠⠉⠕â â â ‰â â ƒâ â â " }, { "input": "Copeland", "output": "⠠⠉⠕â â ‘⠇⠯" }, { "input": "Copenhagen", "output": "⠠⠉⠕â â ¢â “â â ›â ¢" }, { "input": "Copernican", "output": "⠠⠉⠕â â »â â Šâ ‰â â " }, { "input": "Copernicus", "output": "⠠⠉⠕â â »â â Šâ ‰â ¥â Ž" }, { "input": "Copland", "output": "⠠⠉⠕â â ‡â ¯" }, { "input": "Copley", "output": "⠠⠉⠕â â ‡â ‘â ½" }, { "input": "Copperfield", "output": "⠠⠉⠕â â â »â ‹â Šâ ‘⠇⠙" }, { "input": "Coppertone", "output": "⠠⠉⠕â â â »â žâ â •" }, { "input": "Coppola", "output": "⠠⠉⠕â â â •â ‡â " }, { "input": "Coptic", "output": "⠠⠉⠕â â žâ Šâ ‰" }, { "input": "Cora", "output": "⠠⠉⠕⠗â " }, { "input": "Cordelia", "output": "⠠⠉⠕⠗⠙⠑⠇⠊â " }, { "input": "Cordilleras", "output": "⠠⠉⠕⠗⠙⠊⠇⠇⠻â â Ž" }, { "input": "Cordoba", "output": "⠠⠉⠕⠗⠙⠕⠃â " }, { "input": "Corey", "output": "⠠⠉⠕⠗⠑⠽" }, { "input": "Corfu", "output": "⠠⠉⠕⠗⠋⠥" }, { "input": "Corina", "output": "⠠⠉⠕⠗⠔â " }, { "input": "Corine", "output": "⠠⠉⠕⠗⠔⠑" }, { "input": "Corinne", "output": "⠠⠉⠕⠗⠔â â ‘" }, { "input": "Corinth", "output": "⠠⠉⠕⠗⠔⠹" }, { "input": "Corinthian", "output": "⠠⠉⠕⠗⠔⠹⠊â â " }, { "input": "Corinthians", "output": "⠠⠉⠕⠗⠔⠹⠊â â â Ž" }, { "input": "Coriolanus", "output": "⠠⠉⠕⠗⠊⠕⠇â â â ¥â Ž" }, { "input": "Coriolis", "output": "⠠⠉⠕⠗⠊⠕⠇⠊⠎" }, { "input": "Corleone", "output": "⠠⠉⠕⠗⠇⠑â â •" }, { "input": "Cormack", "output": "⠠⠉⠕⠗â â â ‰â …" }, { "input": "Corneille", "output": "⠠⠉⠕⠗â â ‘⠊⠇⠇⠑" }, { "input": "Cornelia", "output": "⠠⠉⠕⠗â â ‘⠇⠊â " }, { "input": "Cornelius", "output": "⠠⠉⠕⠗â â ‘⠇⠊⠥⠎" }, { "input": "Cornell", "output": "⠠⠉⠕⠗â â ‘⠇⠇" }, { "input": "Corning", "output": "⠠⠉⠕⠗â â ¬" }, { "input": "Cornish", "output": "⠠⠉⠕⠗â â Šâ ©" }, { "input": "Cornwall", "output": "⠠⠉⠕⠗â â ºâ â ‡â ‡" }, { "input": "Cornwallis", "output": "⠠⠉⠕⠗â â ºâ â ‡â ‡â Šâ Ž" }, { "input": "Coronado", "output": "⠠⠉⠕⠗⠕â â â ™â •" }, { "input": "Corot", "output": "⠠⠉⠕⠗⠕⠞" }, { "input": "Correggio", "output": "⠠⠉⠕⠗⠗⠑⠶⠊⠕" }, { "input": "Corrine", "output": "⠠⠉⠕⠗⠗⠔⠑" }, { "input": "Corsica", "output": "⠠⠉⠕⠗⠎⠊⠉â " }, { "input": "Corsican", "output": "⠠⠉⠕⠗⠎⠊⠉â â " }, { "input": "Cortes", "output": "⠠⠉⠕⠗⠞⠑⠎" }, { "input": "Corteses", "output": "⠠⠉⠕⠗⠞⠑⠎⠑⠎" }, { "input": "Cortez", "output": "⠠⠉⠕⠗⠞⠑⠵" }, { "input": "Cortland", "output": "⠠⠉⠕⠗⠞⠇⠯" }, { "input": "Corvallis", "output": "⠠⠉⠕⠗⠧â â ‡â ‡â Šâ Ž" }, { "input": "Corvette", "output": "⠠⠉⠕⠗⠧⠑⠞⠞⠑" }, { "input": "Corvus", "output": "⠠⠉⠕⠗⠧⠥⠎" }, { "input": "Cory", "output": "⠠⠉⠕⠗⠽" }, { "input": "Cosby", "output": "⠠⠉⠕⠎⠃⠽" }, { "input": "Cossack", "output": "⠠⠉⠕⠎⠎â â ‰â …" }, { "input": "Costco", "output": "⠠⠉⠕⠌⠉⠕" }, { "input": "Costello", "output": "⠠⠉⠕⠌⠑⠇⠇⠕" }, { "input": "Costner", "output": "⠠⠉⠕⠌â â »" }, { "input": "Cote", "output": "⠠⠉⠕⠞⠑" }, { "input": "Cotonou", "output": "⠠⠉⠕⠞⠕â â ³" }, { "input": "Cotopaxi", "output": "⠠⠉⠕⠞⠕â â â ­â Š" }, { "input": "Cotswold", "output": "⠠⠉⠕⠞⠎⠺⠕⠇⠙" }, { "input": "Cotton", "output": "⠠⠉⠕⠞⠞⠕â " }, { "input": "Coulomb", "output": "⠠⠉⠳⠇⠕â â ƒ" }, { "input": "Coulter", "output": "⠠⠉⠳⠇⠞⠻" }, { "input": "Couperin", "output": "⠠⠉⠳â â »â ”" }, { "input": "Courbet", "output": "⠠⠉⠳⠗⠃⠑⠞" }, { "input": "Courtney", "output": "⠠⠉⠳⠗⠞â â ‘â ½" }, { "input": "Cousteau", "output": "⠠⠉⠳⠌⠂⠥" }, { "input": "Coventries", "output": "⠠⠉⠕⠧⠢⠞⠗⠊⠑⠎" }, { "input": "Coventry", "output": "⠠⠉⠕⠧⠢⠞⠗⠽" }, { "input": "Coward", "output": "⠠⠉⠪⠜⠙" }, { "input": "Cowley", "output": "⠠⠉⠪⠇⠑⠽" }, { "input": "Cowper", "output": "⠠⠉⠪â â »" }, { "input": "Cox", "output": "⠠⠉⠕⠭" }, { "input": "Coy", "output": "⠠⠉⠕⠽" }, { "input": "Cozumel", "output": "⠠⠉⠕⠵⠥â â ‘â ‡" }, { "input": "Cr", "output": "⠠⠉⠗" }, { "input": "Crabbe", "output": "⠠⠉⠗â â †â ‘" }, { "input": "Craft", "output": "⠠⠉⠗â â ‹â ž" }, { "input": "Craig", "output": "⠠⠉⠗â â Šâ ›" }, { "input": "Cranach", "output": "⠠⠉⠗â â â â ¡" }, { "input": "Crane", "output": "⠠⠉⠗â â â ‘" }, { "input": "Cranmer", "output": "⠠⠉⠗â â â â »" }, { "input": "Crater", "output": "⠠⠉⠗â â žâ »" }, { "input": "Crawford", "output": "⠠⠉⠗â â ºâ ¿â ™" }, { "input": "Cray", "output": "⠠⠉⠗â â ½" }, { "input": "Crayola", "output": "⠠⠉⠗â â ½â •â ‡â " }, { "input": "Creation", "output": "⠠⠉⠗⠂⠰â " }, { "input": "Creator", "output": "⠠⠉⠗⠂⠞⠕⠗" }, { "input": "Crecy", "output": "⠠⠉⠗⠑⠉⠽" }, { "input": "Cree", "output": "⠠⠉⠗⠑⠑" }, { "input": "Creek", "output": "⠠⠉⠗⠑⠑⠅" }, { "input": "Creighton", "output": "⠠⠉⠗⠑⠊⠣⠞⠕â " }, { "input": "Creole", "output": "⠠⠉⠗⠑⠕⠇⠑" }, { "input": "Creoles", "output": "⠠⠉⠗⠑⠕⠇⠑⠎" }, { "input": "Creon", "output": "⠠⠉⠗⠑⠕â " }, { "input": "Crest", "output": "⠠⠉⠗⠑⠌" }, { "input": "Cretaceous", "output": "⠠⠉⠗⠑⠞â â ‰â ‘⠳⠎" }, { "input": "Cretan", "output": "⠠⠉⠗⠑⠞â â " }, { "input": "Crete", "output": "⠠⠉⠗⠑⠞⠑" }, { "input": "Crichton", "output": "⠠⠉⠗⠊⠡⠞⠕â " }, { "input": "Crick", "output": "⠠⠉⠗⠊⠉⠅" }, { "input": "Crimea", "output": "⠠⠉⠗⠊â â ‘â " }, { "input": "Crimean", "output": "⠠⠉⠗⠊â â ‚â " }, { "input": "Criollo", "output": "⠠⠉⠗⠊⠕⠇⠇⠕" }, { "input": "Crisco", "output": "⠠⠉⠗⠊⠎⠉⠕" }, { "input": "Cristina", "output": "⠠⠉⠗⠊⠌⠔â " }, { "input": "Croat", "output": "⠠⠉⠗⠕â â ž" }, { "input": "Croatia", "output": "⠠⠉⠗⠕â â žâ Šâ " }, { "input": "Croatian", "output": "⠠⠉⠗⠕â â žâ Šâ â " }, { "input": "Croatians", "output": "⠠⠉⠗⠕â â žâ Šâ â â Ž" }, { "input": "Croats", "output": "⠠⠉⠗⠕â â žâ Ž" }, { "input": "Croce", "output": "⠠⠉⠗⠕⠉⠑" }, { "input": "Crockett", "output": "⠠⠉⠗⠕⠉⠅⠑⠞⠞" }, { "input": "Croesus", "output": "⠠⠉⠗⠕⠑⠎⠥⠎" }, { "input": "Cromwell", "output": "⠠⠉⠗⠕â â ºâ ‘⠇⠇" }, { "input": "Cromwellian", "output": "⠠⠉⠗⠕â â ºâ ‘⠇⠇⠊â â " }, { "input": "Cronin", "output": "⠠⠉⠗⠕â â ”" }, { "input": "Cronkite", "output": "⠠⠉⠗⠕â â …â Šâ žâ ‘" }, { "input": "Cronus", "output": "⠠⠉⠗⠕â â ¥â Ž" }, { "input": "Crookes", "output": "⠠⠉⠗⠕⠕⠅⠑⠎" }, { "input": "Crosby", "output": "⠠⠉⠗⠕⠎⠃⠽" }, { "input": "Cross", "output": "⠠⠉⠗⠕⠎⠎" }, { "input": "Crowley", "output": "⠠⠉⠗⠪⠇⠑⠽" }, { "input": "Cruikshank", "output": "⠠⠉⠗⠥⠊⠅⠩â â â …" }, { "input": "Cruise", "output": "⠠⠉⠗⠥⠊⠎⠑" }, { "input": "Crusades", "output": "⠠⠉⠗⠥⠎â â ™â ‘â Ž" }, { "input": "Crusoe", "output": "⠠⠉⠗⠥⠎⠕⠑" }, { "input": "Crux", "output": "⠠⠉⠗⠥⠭" }, { "input": "Cruz", "output": "⠠⠉⠗⠥⠵" }, { "input": "Cryptozoic", "output": "⠠⠉⠗⠽â â žâ •⠵⠕⠊⠉" }, { "input": "Crystal", "output": "⠠⠉⠗⠽⠌â â ‡" }, { "input": "Cs", "output": "⠠⠉⠎" }, { "input": "Csonka", "output": "⠠⠉⠎⠕â â …â " }, { "input": "Ctesiphon", "output": "⠠⠉⠞⠑⠎⠊â â “â •â " }, { "input": "Cthulhu", "output": "⠠⠉⠹⠥⠇⠓⠥" }, { "input": "Cu", "output": "⠠⠉⠥" }, { "input": "Cuba", "output": "⠠⠉⠥⠃â " }, { "input": "Cuban", "output": "⠠⠉⠥⠃â â " }, { "input": "Cubans", "output": "⠠⠉⠥⠃â â â Ž" }, { "input": "Cuchulain", "output": "⠠⠉⠥⠡⠥⠇â â ”" }, { "input": "Cuisinart", "output": "⠠⠉⠥⠊⠎⠔⠜⠞" }, { "input": "Culbertson", "output": "⠠⠉⠥⠇⠃⠻⠞⠎⠕â " }, { "input": "Cullen", "output": "⠠⠉⠥⠇⠇⠢" }, { "input": "Cumberland", "output": "⠠⠉⠥â â ƒâ »â ‡â ¯" }, { "input": "Cummings", "output": "⠠⠉⠥â â â ¬â Ž" }, { "input": "Cunard", "output": "⠠⠉⠥â â œâ ™" }, { "input": "Cunningham", "output": "⠠⠉⠥â â â ¬â “â â " }, { "input": "Cupid", "output": "⠠⠉⠥â â Šâ ™" }, { "input": "Curacao", "output": "⠠⠉⠥⠗â â ‰â â •" }, { "input": "Curie", "output": "⠠⠉⠥⠗⠊⠑" }, { "input": "Curitiba", "output": "⠠⠉⠥⠗⠊⠞⠊⠃â " }, { "input": "Currier", "output": "⠠⠉⠥⠗⠗⠊⠻" }, { "input": "Curry", "output": "⠠⠉⠥⠗⠗⠽" }, { "input": "Curt", "output": "⠠⠉⠥⠗⠞" }, { "input": "Curtis", "output": "⠠⠉⠥⠗⠞⠊⠎" }, { "input": "Custer", "output": "⠠⠉⠥⠌⠻" }, { "input": "Cuvier", "output": "⠠⠉⠥⠧⠊⠻" }, { "input": "Cuzco", "output": "⠠⠉⠥⠵⠉⠕" }, { "input": "Cybele", "output": "⠠⠉⠽⠃⠑⠇⠑" }, { "input": "Cyclades", "output": "⠠⠉⠽⠉⠇â â ™â ‘â Ž" }, { "input": "Cyclops", "output": "⠠⠉⠽⠉⠇⠕â â Ž" }, { "input": "Cygnus", "output": "⠠⠉⠽⠛â â ¥â Ž" }, { "input": "Cymbeline", "output": "⠠⠉⠽â â ƒâ ‘⠇⠔⠑" }, { "input": "Cynthia", "output": "⠠⠉⠽â â ¹â Šâ " }, { "input": "Cyprian", "output": "⠠⠉⠽â â —â Šâ â " }, { "input": "Cypriot", "output": "⠠⠉⠽â â —â Šâ •â ž" }, { "input": "Cypriots", "output": "⠠⠉⠽â â —â Šâ •â žâ Ž" }, { "input": "Cyprus", "output": "⠠⠉⠽â â —⠥⠎" }, { "input": "Cyrano", "output": "⠠⠉⠽⠗â â â •" }, { "input": "Cyril", "output": "⠠⠉⠽⠗⠊⠇" }, { "input": "Cyrillic", "output": "⠠⠉⠽⠗⠊⠇⠇⠊⠉" }, { "input": "Cyrus", "output": "⠠⠉⠽⠗⠥⠎" }, { "input": "Czech", "output": "⠠⠉⠵⠑⠡" }, { "input": "Czechoslovakia", "output": "⠠⠉⠵⠑⠡⠕⠎⠇⠕⠧â â …â Šâ " }, { "input": "Czechoslovakian", "output": "⠠⠉⠵⠑⠡⠕⠎⠇⠕⠧â â …â Šâ â " }, { "input": "Czechoslovakians", "output": "⠠⠉⠵⠑⠡⠕⠎⠇⠕⠧â â …â Šâ â â Ž" }, { "input": "Czechs", "output": "⠠⠉⠵⠑⠡⠎" }, { "input": "Czerny", "output": "⠠⠉⠵⠻â â ½" }, { "input": "D", "output": "â °â  â ™" }, { "input": "Dacca", "output": "â  â ™â â ’â " }, { "input": "Dachau", "output": "â  â ™â â ¡â â ¥" }, { "input": "Dacron", "output": "â  â ™â â ‰â —â •â " }, { "input": "Dacrons", "output": "â  â ™â â ‰â —â •â â Ž" }, { "input": "Dada", "output": "â  â ™â â ™â " }, { "input": "Dadaism", "output": "â  â ™â â ™â â Šâ Žâ " }, { "input": "Daedalus", "output": "â  â ™â â «â â ‡â ¥â Ž" }, { "input": "Daguerre", "output": "â  â ™â â ›â ¥â »â —â ‘" }, { "input": "Dagwood", "output": "â  â ™â â ›â ºâ •â •â ™" }, { "input": "Dahomey", "output": "â  â ™â â “â •â â ‘â ½" }, { "input": "Daimler", "output": "â  â ™â â Šâ â ‡â »" }, { "input": "Daisy", "output": "â  â ™â â Šâ Žâ ½" }, { "input": "Dakar", "output": "â  â ™â â …â œ" }, { "input": "Dakota", "output": "â  â ™â â …â •â žâ " }, { "input": "Dakotan", "output": "â  â ™â â …â •â žâ â " }, { "input": "Dakotas", "output": "â  â ™â â …â •â žâ â Ž" }, { "input": "Dale", "output": "â  â ™â â ‡â ‘" }, { "input": "Daley", "output": "â  â ™â â ‡â ‘â ½" }, { "input": "Dali", "output": "â  â ™â â ‡â Š" }, { "input": "Dalian", "output": "â  â ™â â ‡â Šâ â " }, { "input": "Dallas", "output": "â  â ™â â ‡â ‡â â Ž" }, { "input": "Dalmatian", "output": "â  â ™â â ‡â â â žâ Šâ â " }, { "input": "Dalmatians", "output": "â  â ™â â ‡â â â žâ Šâ â â Ž" }, { "input": "Dalton", "output": "â  â ™â â ‡â žâ •â " }, { "input": "Damascus", "output": "â  â ™â â â â Žâ ‰â ¥â Ž" }, { "input": "Damian", "output": "â  â ™â â â Šâ â " }, { "input": "Damien", "output": "â  â ™â â â Šâ ¢" }, { "input": "Damion", "output": "â  â ™â â â Šâ •â " }, { "input": "Damocles", "output": "â  â ™â â â •⠉⠇⠑⠎" }, { "input": "Damon", "output": "â  â ™â â â •â " }, { "input": "Dan", "output": "â  â ™â â " }, { "input": "Dana", "output": "â  â ™â â â " }, { "input": "Dane", "output": "â  â ™â â â ‘" }, { "input": "Danelaw", "output": "â  â ™â â â ‘â ‡â â º" }, { "input": "Danes", "output": "â  â ™â â â ‘â Ž" }, { "input": "Dangerfield", "output": "â  â ™â â â ›â »â ‹â Šâ ‘⠇⠙" }, { "input": "Danial", "output": "â  â ™â â â Šâ â ‡" }, { "input": "Daniel", "output": "â  â ™â â â Šâ ‘â ‡" }, { "input": "Danielle", "output": "â  â ™â â â Šâ ‘⠇⠇⠑" }, { "input": "Daniels", "output": "â  â ™â â â Šâ ‘⠇⠎" }, { "input": "Danish", "output": "â  â ™â â â Šâ ©" }, { "input": "Dannie", "output": "â  â ™â â â â Šâ ‘" }, { "input": "Danny", "output": "â  â ™â â â â ½" }, { "input": "Danone", "output": "â  â ™â â â â •" }, { "input": "Dante", "output": "â  â ™â â â žâ ‘" }, { "input": "Danton", "output": "â  â ™â â â žâ •â " }, { "input": "Danube", "output": "â  â ™â â â ¥â ƒâ ‘" }, { "input": "Danubian", "output": "â  â ™â â â ¥â ƒâ Šâ â " }, { "input": "Daphne", "output": "â  â ™â â â “â â ‘" }, { "input": "Darby", "output": "⠠⠙⠜⠃⠽" }, { "input": "Darcy", "output": "⠠⠙⠜⠉⠽" }, { "input": "Dardanelles", "output": "⠠⠙⠜⠙â â â ‘⠇⠇⠑⠎" }, { "input": "Dare", "output": "⠠⠙⠜⠑" }, { "input": "Daren", "output": "⠠⠙⠜⠢" }, { "input": "Darfur", "output": "⠠⠙⠜⠋⠥⠗" }, { "input": "Darin", "output": "⠠⠙⠜⠔" }, { "input": "Dario", "output": "⠠⠙⠜⠊⠕" }, { "input": "Darius", "output": "⠠⠙⠜⠊⠥⠎" }, { "input": "Darjeeling", "output": "⠠⠙⠜⠚⠑⠑⠇⠬" }, { "input": "Darla", "output": "⠠⠙⠜⠇â " }, { "input": "Darlene", "output": "⠠⠙⠜⠇⠢⠑" }, { "input": "Darling", "output": "⠠⠙⠜⠇⠬" }, { "input": "Darnell", "output": "⠠⠙⠜â â ‘⠇⠇" }, { "input": "Darrel", "output": "⠠⠙⠜⠗⠑⠇" }, { "input": "Darrell", "output": "⠠⠙⠜⠗⠑⠇⠇" }, { "input": "Darren", "output": "⠠⠙⠜⠗⠢" }, { "input": "Darrin", "output": "⠠⠙⠜⠗⠔" }, { "input": "Darrow", "output": "⠠⠙⠜⠗⠪" }, { "input": "Darryl", "output": "⠠⠙⠜⠗⠽⠇" }, { "input": "Darth", "output": "⠠⠙⠜⠹" }, { "input": "Dartmoor", "output": "⠠⠙⠜⠞â â •â •â —" }, { "input": "Dartmouth", "output": "⠠⠙⠜⠞â â ³â ¹" }, { "input": "Darvon", "output": "⠠⠙⠜⠧⠕â " }, { "input": "Darwin", "output": "⠠⠙⠜⠺⠔" }, { "input": "Darwinian", "output": "⠠⠙⠜⠺⠔⠊â â " }, { "input": "Darwinism", "output": "⠠⠙⠜⠺⠔⠊⠎â " }, { "input": "Daryl", "output": "⠠⠙⠜⠽⠇" }, { "input": "Daugherty", "output": "â  â ™â â ¥â £â »â žâ ½" }, { "input": "Daumier", "output": "â  â ™â â ¥â â Šâ »" }, { "input": "Davao", "output": "â  â ™â â §â â •" }, { "input": "Dave", "output": "â  â ™â â §â ‘" }, { "input": "Davenport", "output": "â  â ™â â §â ¢â â •â —â ž" }, { "input": "David", "output": "â  â ™â â §â Šâ ™" }, { "input": "Davids", "output": "â  â ™â â §â Šâ ™â Ž" }, { "input": "Davidson", "output": "â  â ™â â §â Šâ ™â Žâ •â " }, { "input": "Davies", "output": "â  â ™â â §â Šâ ‘â Ž" }, { "input": "Davis", "output": "â  â ™â â §â Šâ Ž" }, { "input": "Davy", "output": "â  â ™â â §â ½" }, { "input": "Dawes", "output": "â  â ™â â ºâ ‘â Ž" }, { "input": "Dawn", "output": "â  â ™â â ºâ " }, { "input": "Dawson", "output": "â  â ™â â ºâ Žâ •â " }, { "input": "Day", "output": "â  â â ™" }, { "input": "Dayton", "output": "â  â â ™â žâ •â " }, { "input": "DeGeneres", "output": "⠠⠙⠑⠠⠛⠢⠻⠑⠎" }, { "input": "Deadhead", "output": "⠠⠙⠂⠙⠓⠂⠙" }, { "input": "Dean", "output": "⠠⠙⠂â " }, { "input": "Deana", "output": "⠠⠙⠂â â " }, { "input": "Deandre", "output": "⠠⠙⠂â â ™â —â ‘" }, { "input": "Deann", "output": "⠠⠙⠂â â " }, { "input": "Deanna", "output": "⠠⠙⠑â â â â " }, { "input": "Deanne", "output": "⠠⠙⠂â â â ‘" }, { "input": "Debbie", "output": "⠠⠙⠑⠆⠊⠑" }, { "input": "Debby", "output": "⠠⠙⠑⠆⠽" }, { "input": "Debian", "output": "⠠⠙⠑⠃⠊â â " }, { "input": "Debora", "output": "⠠⠙⠑⠃⠕⠗â " }, { "input": "Deborah", "output": "⠠⠙⠑⠃⠕⠗â â “" }, { "input": "Debouillet", "output": "⠠⠙⠑⠃⠳⠊⠇⠇⠑⠞" }, { "input": "Debra", "output": "⠠⠙⠑⠃⠗â " }, { "input": "Debs", "output": "⠠⠙⠑⠃⠎" }, { "input": "Debussy", "output": "⠠⠙⠑⠃⠥⠎⠎⠽" }, { "input": "Dec", "output": "⠠⠙⠑⠉" }, { "input": "Decalogue", "output": "⠠⠙⠑⠉â â ‡â •⠛⠥⠑" }, { "input": "Decatur", "output": "⠠⠙⠑⠉â â žâ ¥â —" }, { "input": "Decca", "output": "⠠⠙⠑⠒â " }, { "input": "Deccan", "output": "⠠⠙⠑⠒â â " }, { "input": "December", "output": "⠠⠙⠑⠉⠑â â ƒâ »" }, { "input": "Decembers", "output": "⠠⠙⠑⠉⠑â â ƒâ »â Ž" }, { "input": "Decker", "output": "⠠⠙⠑⠉⠅⠻" }, { "input": "Dedekind", "output": "⠠⠙⠫⠑⠅⠔⠙" }, { "input": "Dee", "output": "⠠⠙⠑⠑" }, { "input": "Deena", "output": "⠠⠙⠑⠢â " }, { "input": "Deere", "output": "⠠⠙⠑⠻⠑" }, { "input": "Defoe", "output": "⠠⠙⠑⠋⠕⠑" }, { "input": "Degas", "output": "⠠⠙⠑⠛â â Ž" }, { "input": "Deidre", "output": "⠠⠙⠑⠊⠙⠗⠑" }, { "input": "Deimos", "output": "⠠⠙⠑⠊â â •â Ž" }, { "input": "Deirdre", "output": "⠠⠙⠑⠊⠗⠙⠗⠑" }, { "input": "Deity", "output": "⠠⠙⠑⠰⠽" }, { "input": "Dejesus", "output": "⠠⠙⠑⠚⠑⠎⠥⠎" }, { "input": "Del", "output": "⠠⠙⠑⠇" }, { "input": "Delacroix", "output": "⠠⠙⠑⠇â â ‰â —â •â Šâ ­" }, { "input": "Delacruz", "output": "⠠⠙⠑⠇â â ‰â —⠥⠵" }, { "input": "Delaney", "output": "⠠⠙⠑⠇â â â ‘â ½" }, { "input": "Delano", "output": "⠠⠙⠑⠇â â â •" }, { "input": "Delaware", "output": "⠠⠙⠑⠇â â ºâ œâ ‘" }, { "input": "Delawarean", "output": "⠠⠙⠑⠇â â ºâ œâ ‚â " }, { "input": "Delawareans", "output": "⠠⠙⠑⠇â â ºâ œâ ‚â â Ž" }, { "input": "Delawares", "output": "⠠⠙⠑⠇â â ºâ œâ ‘â Ž" }, { "input": "Delbert", "output": "⠠⠙⠑⠇⠃⠻⠞" }, { "input": "Deleon", "output": "⠠⠙⠑⠇⠑⠕â " }, { "input": "Delgado", "output": "⠠⠙⠑⠇⠛â â ™â •" }, { "input": "Delhi", "output": "⠠⠙⠑⠇⠓⠊" }, { "input": "Delia", "output": "⠠⠙⠑⠇⠊â " }, { "input": "Delibes", "output": "⠠⠙⠑⠇⠊⠃⠑⠎" }, { "input": "Delicious", "output": "⠠⠙⠑⠇⠊⠉⠊⠳⠎" }, { "input": "Delilah", "output": "⠠⠙⠑⠇⠊⠇â â “" }, { "input": "Delius", "output": "⠠⠙⠑⠇⠊⠥⠎" }, { "input": "Dell", "output": "⠠⠙⠑⠇⠇" }, { "input": "Della", "output": "⠠⠙⠑⠇⠇â " }, { "input": "Delmar", "output": "⠠⠙⠑⠇â â œ" }, { "input": "Delmarva", "output": "⠠⠙⠑⠇â â œâ §â " }, { "input": "Delmer", "output": "⠠⠙⠑⠇â â »" }, { "input": "Delmonico", "output": "⠠⠙⠑⠇â â •â â Šâ ‰â •" }, { "input": "Delores", "output": "⠠⠙⠑⠇⠕⠗⠑⠎" }, { "input": "Deloris", "output": "⠠⠙⠑⠇⠕⠗⠊⠎" }, { "input": "Delphi", "output": "⠠⠙⠑⠇â â “â Š" }, { "input": "Delphic", "output": "⠠⠙⠑⠇â â “â Šâ ‰" }, { "input": "Delphinus", "output": "⠠⠙⠑⠇â â “⠔⠥⠎" }, { "input": "Delta", "output": "⠠⠙⠑⠇⠞â " }, { "input": "Dem", "output": "⠠⠙⠑â " }, { "input": "Demavend", "output": "⠠⠙⠑â â â §â ¢â ™" }, { "input": "Demerol", "output": "⠠⠙⠑â â »â •â ‡" }, { "input": "Demeter", "output": "⠠⠙⠑â â ‘â žâ »" }, { "input": "Demetrius", "output": "⠠⠙⠑â â ‘⠞⠗⠊⠥⠎" }, { "input": "Deming", "output": "⠠⠙⠑â â ¬" }, { "input": "Democrat", "output": "⠠⠙⠑â â •⠉⠗â â ž" }, { "input": "Democratic", "output": "⠠⠙⠑â â •⠉⠗â â žâ Šâ ‰" }, { "input": "Democrats", "output": "⠠⠙⠑â â •⠉⠗â â žâ Ž" }, { "input": "Democritus", "output": "⠠⠙⠑â â •⠉⠗⠊⠞⠥⠎" }, { "input": "Demosthenes", "output": "⠠⠙⠑â â •â Žâ ®â â ‘â Ž" }, { "input": "Dempsey", "output": "⠠⠙⠑â â â Žâ ‘â ½" }, { "input": "Dena", "output": "⠠⠙⠢â " }, { "input": "Deneb", "output": "⠠⠙⠢⠑⠃" }, { "input": "Denebola", "output": "⠠⠙⠢⠑⠃⠕⠇â " }, { "input": "Deng", "output": "⠠⠙⠢⠛" }, { "input": "Denis", "output": "⠠⠙⠢⠊⠎" }, { "input": "Denise", "output": "⠠⠙⠢⠊⠎⠑" }, { "input": "Denmark", "output": "⠠⠙⠢â â œâ …" }, { "input": "Dennis", "output": "⠠⠙⠢â â Šâ Ž" }, { "input": "Denny", "output": "⠠⠙⠢â â ½" }, { "input": "Denver", "output": "⠠⠙⠢⠧⠻" }, { "input": "Deon", "output": "⠠⠙⠑⠕â " }, { "input": "Depp", "output": "⠠⠙⠑â â " }, { "input": "Derby", "output": "⠠⠙⠻⠃⠽" }, { "input": "Derek", "output": "⠠⠙⠻⠑⠅" }, { "input": "Derick", "output": "⠠⠙⠻⠊⠉⠅" }, { "input": "Derrick", "output": "⠠⠙⠻⠗⠊⠉⠅" }, { "input": "Derrida", "output": "⠠⠙⠻⠗⠊⠙â " }, { "input": "Descartes", "output": "⠠⠙⠑⠎⠉⠜⠞⠑⠎" }, { "input": "Desdemona", "output": "⠠⠙⠑⠎⠙⠑â â •â â " }, { "input": "Desiree", "output": "⠠⠙⠑⠎⠊⠗⠑⠑" }, { "input": "Desmond", "output": "⠠⠙⠑⠎â â •â â ™" }, { "input": "Detroit", "output": "⠠⠙⠑⠞⠗⠕⠊⠞" }, { "input": "Deuteronomy", "output": "⠠⠙⠑⠥⠞⠻⠕â â •â â ½" }, { "input": "Devanagari", "output": "⠠⠙⠑⠧â â â â ›â œâ Š" }, { "input": "Devi", "output": "⠠⠙⠑⠧⠊" }, { "input": "Devin", "output": "⠠⠙⠑⠧⠔" }, { "input": "Devon", "output": "⠠⠙⠑⠧⠕â " }, { "input": "Devonian", "output": "⠠⠙⠑⠧⠕â â Šâ â " }, { "input": "Dewar", "output": "⠠⠙⠑⠺⠜" }, { "input": "Dewayne", "output": "⠠⠙⠑⠺â â ½â â ‘" }, { "input": "Dewey", "output": "⠠⠙⠑⠺⠑⠽" }, { "input": "Dewitt", "output": "⠠⠙⠑⠺⠊⠞⠞" }, { "input": "Dexedrine", "output": "⠠⠙⠑⠭⠫⠗⠔⠑" }, { "input": "Dexter", "output": "⠠⠙⠑⠭⠞⠻" }, { "input": "Dhaka", "output": "⠠⠙⠓â â …â " }, { "input": "Dhaulagiri", "output": "⠠⠙⠓â â ¥â ‡â â ›â Šâ —â Š" }, { "input": "Di", "output": "⠠⠙⠊" }, { "input": "DiCaprio", "output": "⠠⠙⠊⠠⠉â â â —â Šâ •" }, { "input": "DiMaggio", "output": "⠠⠙⠊⠠â â â ¶â Šâ •" }, { "input": "Diaghilev", "output": "⠠⠙⠊â â £â Šâ ‡â ‘â §" }, { "input": "Dial", "output": "⠠⠙⠊â â ‡" }, { "input": "Diana", "output": "⠠⠙⠊â â â " }, { "input": "Diane", "output": "⠠⠙⠊â â â ‘" }, { "input": "Diann", "output": "⠠⠙⠊â â â " }, { "input": "Dianna", "output": "⠠⠙⠊â â â â " }, { "input": "Dianne", "output": "⠠⠙⠊â â â â ‘" }, { "input": "Diaspora", "output": "⠠⠙⠊â â Žâ â •â —â " }, { "input": "Diaz", "output": "⠠⠙⠊â â µ" }, { "input": "Dick", "output": "⠠⠙⠊⠉⠅" }, { "input": "Dickens", "output": "⠠⠙⠊⠉⠅⠢⠎" }, { "input": "Dickerson", "output": "⠠⠙⠊⠉⠅⠻⠎⠕â " }, { "input": "Dickinson", "output": "⠠⠙⠊⠉⠅⠔⠎⠕â " }, { "input": "Dickson", "output": "⠠⠙⠊⠉⠅⠎⠕â " }, { "input": "Dictaphone", "output": "⠠⠙⠊⠉⠞â â â “â â •" }, { "input": "Diderot", "output": "⠠⠙⠊⠙⠻⠕⠞" }, { "input": "Dido", "output": "⠠⠙⠊⠙⠕" }, { "input": "Didrikson", "output": "⠠⠙⠊⠙⠗⠊⠅⠎⠕â " }, { "input": "Diefenbaker", "output": "⠠⠙⠊⠑⠋⠢⠃â â …â »" }, { "input": "Diego", "output": "⠠⠙⠊⠑⠛⠕" }, { "input": "Diem", "output": "⠠⠙⠊⠑â " }, { "input": "Diesel", "output": "⠠⠙⠊⠑⠎⠑⠇" }, { "input": "Dietrich", "output": "⠠⠙⠊⠑⠞⠗⠊⠡" }, { "input": "Dijkstra", "output": "⠠⠙⠊⠚⠅⠌⠗â " }, { "input": "Dijon", "output": "⠠⠙⠊⠚⠕â " }, { "input": "Dilbert", "output": "⠠⠙⠊⠇⠃⠻⠞" }, { "input": "Dillard", "output": "⠠⠙⠊⠇⠇⠜⠙" }, { "input": "Dillinger", "output": "⠠⠙⠊⠇⠇⠬⠻" }, { "input": "Dillon", "output": "⠠⠙⠊⠇⠇⠕â " }, { "input": "Dina", "output": "⠠⠙⠔â " }, { "input": "Dinah", "output": "⠠⠙⠔â â “" }, { "input": "Dino", "output": "⠠⠙⠔⠕" }, { "input": "Diocletian", "output": "⠠⠙⠊⠕⠉⠇⠑⠞⠊â â " }, { "input": "Diogenes", "output": "⠠⠙⠊⠕⠛⠢⠑⠎" }, { "input": "Dion", "output": "⠠⠙⠊⠕â " }, { "input": "Dionne", "output": "⠠⠙⠊⠕â â â ‘" }, { "input": "Dionysian", "output": "⠠⠙⠊⠕â â ½â Žâ Šâ â " }, { "input": "Dionysus", "output": "⠠⠙⠊⠕â â ½â Žâ ¥â Ž" }, { "input": "Diophantine", "output": "⠠⠙⠊⠕â â “â â â žâ ”â ‘" }, { "input": "Dior", "output": "⠠⠙⠊⠕⠗" }, { "input": "Dipper", "output": "⠠⠙⠊â â â »" }, { "input": "Dirac", "output": "⠠⠙⠊⠗â â ‰" }, { "input": "Dirichlet", "output": "⠠⠙⠊⠗⠊⠡⠇⠑⠞" }, { "input": "Dirk", "output": "⠠⠙⠊⠗⠅" }, { "input": "Dis", "output": "⠠⠙⠊⠎" }, { "input": "Disney", "output": "â  â ²â â ‘â ½" }, { "input": "Disneyland", "output": "â  â ²â â ‘⠽⠇⠯" }, { "input": "Disraeli", "output": "⠠⠲⠗â â ‘⠇⠊" }, { "input": "Diwali", "output": "⠠⠙⠊⠺â â ‡â Š" }, { "input": "Dix", "output": "⠠⠙⠊⠭" }, { "input": "Dixie", "output": "⠠⠙⠊⠭⠊⠑" }, { "input": "Dixiecrat", "output": "⠠⠙⠊⠭⠊⠑⠉⠗â â ž" }, { "input": "Dixieland", "output": "⠠⠙⠊⠭⠊⠑⠇⠯" }, { "input": "Dixielands", "output": "⠠⠙⠊⠭⠊⠑⠇⠯⠎" }, { "input": "Dixon", "output": "⠠⠙⠊⠭⠕â " }, { "input": "Djakarta", "output": "⠠⠙⠚â â …⠜⠞â " }, { "input": "Djibouti", "output": "⠠⠙⠚⠊⠃⠳⠞⠊" }, { "input": "Dmitri", "output": "â  â ™â â Šâ žâ —â Š" }, { "input": "Dnepropetrovsk", "output": "â  â ™â â ‘â â —â •â â ‘â žâ —â •â §â Žâ …" }, { "input": "Dnieper", "output": "â  â ™â â Šâ ‘â â »" }, { "input": "Dniester", "output": "â  â ™â â Šâ ‘⠌⠻" }, { "input": "Dobbin", "output": "⠠⠙⠕⠆⠔" }, { "input": "Doberman", "output": "⠠⠙⠕⠃⠻â â â " }, { "input": "Dobro", "output": "⠠⠙⠕⠃⠗⠕" }, { "input": "Doctor", "output": "⠠⠙⠕⠉⠞⠕⠗" }, { "input": "Doctorow", "output": "⠠⠙⠕⠉⠞⠕⠗⠪" }, { "input": "Dodge", "output": "⠠⠙⠕⠙⠛⠑" }, { "input": "Dodgson", "output": "⠠⠙⠕⠙⠛⠎⠕â " }, { "input": "Dodoma", "output": "⠠⠙⠕⠙⠕â â " }, { "input": "Dodson", "output": "⠠⠙⠕⠙⠎⠕â " }, { "input": "Doe", "output": "⠠⠙⠕⠑" }, { "input": "Doha", "output": "⠠⠙⠕⠓â " }, { "input": "Dolby", "output": "⠠⠙⠕⠇⠃⠽" }, { "input": "Dole", "output": "⠠⠙⠕⠇⠑" }, { "input": "Dollie", "output": "⠠⠙⠕⠇⠇⠊⠑" }, { "input": "Dolly", "output": "⠠⠙⠕⠇⠇⠽" }, { "input": "Dolores", "output": "⠠⠙⠕⠇⠕⠗⠑⠎" }, { "input": "Domesday", "output": "⠠⠙⠕â â ‘â Žâ â ™" }, { "input": "Domingo", "output": "⠠⠙⠕â â ¬â •" }, { "input": "Dominguez", "output": "⠠⠙⠕â â ¬â ¥â ‘â µ" }, { "input": "Dominic", "output": "⠠⠙⠕â â ”â Šâ ‰" }, { "input": "Dominica", "output": "⠠⠙⠕â â ”â Šâ ‰â " }, { "input": "Dominican", "output": "⠠⠙⠕â â ”â Šâ ‰â â " }, { "input": "Dominicans", "output": "⠠⠙⠕â â ”â Šâ ‰â â â Ž" }, { "input": "Dominick", "output": "⠠⠙⠕â â ”⠊⠉⠅" }, { "input": "Dominique", "output": "⠠⠙⠕â â ”⠊⠟⠥⠑" }, { "input": "Domitian", "output": "⠠⠙⠕â â Šâ žâ Šâ â " }, { "input": "Don", "output": "⠠⠙⠕â " }, { "input": "Dona", "output": "⠠⠙⠕â â " }, { "input": "Donahue", "output": "⠠⠙⠕â â â “⠥⠑" }, { "input": "Donald", "output": "⠠⠙⠕â â â ‡â ™" }, { "input": "Donaldson", "output": "⠠⠙⠕â â â ‡â ™â Žâ •â " }, { "input": "Donatello", "output": "⠠⠙⠕â â â žâ ‘⠇⠇⠕" }, { "input": "Donetsk", "output": "â  â ™â â •â žâ Žâ …" }, { "input": "Donizetti", "output": "⠠⠙⠕â â Šâ µâ ‘â žâ žâ Š" }, { "input": "Donn", "output": "⠠⠙⠕â â " }, { "input": "Donna", "output": "⠠⠙⠕â â â " }, { "input": "Donne", "output": "⠠⠙⠕â â â ‘" }, { "input": "Donnell", "output": "⠠⠙⠕â â â ‘⠇⠇" }, { "input": "Donner", "output": "⠠⠙⠕â â â »" }, { "input": "Donnie", "output": "⠠⠙⠕â â â Šâ ‘" }, { "input": "Donny", "output": "⠠⠙⠕â â â ½" }, { "input": "Donovan", "output": "⠠⠙⠕â â •â §â â " }, { "input": "Dooley", "output": "⠠⠙⠕⠕⠇⠑⠽" }, { "input": "Doolittle", "output": "⠠⠙⠕⠕⠇⠊⠞⠞⠇⠑" }, { "input": "Doonesbury", "output": "⠠⠙⠕⠕â â ‘⠎⠃⠥⠗⠽" }, { "input": "Doppler", "output": "⠠⠙⠕â â â ‡â »" }, { "input": "Dora", "output": "⠠⠙⠕⠗â " }, { "input": "Dorcas", "output": "⠠⠙⠕⠗⠉â â Ž" }, { "input": "Doreen", "output": "⠠⠙⠕⠗⠑⠢" }, { "input": "Dorian", "output": "⠠⠙⠕⠗⠊â â " }, { "input": "Doric", "output": "⠠⠙⠕⠗⠊⠉" }, { "input": "Doris", "output": "⠠⠙⠕⠗⠊⠎" }, { "input": "Doritos", "output": "⠠⠙⠕⠗⠊⠞⠕⠎" }, { "input": "Dorothea", "output": "⠠⠙⠕⠗⠕⠮â " }, { "input": "Dorothy", "output": "⠠⠙⠕⠗⠕⠹⠽" }, { "input": "Dorset", "output": "⠠⠙⠕⠗⠎⠑⠞" }, { "input": "Dorsey", "output": "⠠⠙⠕⠗⠎⠑⠽" }, { "input": "Dorthy", "output": "⠠⠙⠕⠗⠹⠽" }, { "input": "Dortmund", "output": "⠠⠙⠕⠗⠞â â ¥â â ™" }, { "input": "Dostoevsky", "output": "⠠⠙⠕⠌⠕⠑⠧⠎⠅⠽" }, { "input": "Dot", "output": "⠠⠙⠕⠞" }, { "input": "Dotson", "output": "⠠⠙⠕⠞⠎⠕â " }, { "input": "Douala", "output": "⠠⠙⠳â â ‡â " }, { "input": "Douay", "output": "⠠⠙⠳â â ½" }, { "input": "Doubleday", "output": "⠠⠙⠳⠃⠇⠫â â ½" }, { "input": "Doug", "output": "⠠⠙⠳⠛" }, { "input": "Douglas", "output": "⠠⠙⠳⠛⠇â â Ž" }, { "input": "Douglass", "output": "⠠⠙⠳⠛⠇â â Žâ Ž" }, { "input": "Douro", "output": "⠠⠙⠳⠗⠕" }, { "input": "Dover", "output": "⠠⠙⠕⠧⠻" }, { "input": "Dow", "output": "⠠⠙⠪" }, { "input": "Downs", "output": "⠠⠙⠪â â Ž" }, { "input": "Downy", "output": "⠠⠙⠪â â ½" }, { "input": "Doyle", "output": "⠠⠙⠕⠽⠇⠑" }, { "input": "Dr", "output": "⠠⠙⠗" }, { "input": "Draco", "output": "⠠⠙⠗â â ‰â •" }, { "input": "Draconian", "output": "⠠⠙⠗â â ‰â •â â Šâ â " }, { "input": "Dracula", "output": "⠠⠙⠗â â ‰â ¥â ‡â " }, { "input": "Drake", "output": "⠠⠙⠗â â …â ‘" }, { "input": "Dramamine", "output": "⠠⠙⠗â â â â â ”â ‘" }, { "input": "Drambuie", "output": "⠠⠙⠗â â â ƒâ ¥â Šâ ‘" }, { "input": "Drano", "output": "⠠⠙⠗â â â •" }, { "input": "Dravidian", "output": "⠠⠙⠗â â §â Šâ ™â Šâ â " }, { "input": "Dreiser", "output": "⠠⠙⠗⠑⠊⠎⠻" }, { "input": "Dresden", "output": "⠠⠙⠗⠑⠎⠙⠢" }, { "input": "Drew", "output": "⠠⠙⠗⠑⠺" }, { "input": "Dreyfus", "output": "⠠⠙⠗⠑⠽⠋⠥⠎" }, { "input": "Dristan", "output": "⠠⠙⠗⠊⠌â â " }, { "input": "Drudge", "output": "⠠⠙⠗⠥⠙⠛⠑" }, { "input": "Druid", "output": "⠠⠙⠗⠥⠊⠙" }, { "input": "Dryden", "output": "⠠⠙⠗⠽⠙⠢" }, { "input": "Dschubba", "output": "⠠⠙⠎⠡⠥⠆â " }, { "input": "DuPont", "output": "⠠⠙⠥⠠â â •â â ž" }, { "input": "Duane", "output": "⠠⠙⠥â â â ‘" }, { "input": "Dubai", "output": "⠠⠙⠥⠃â â Š" }, { "input": "Dubcek", "output": "⠠⠙⠥⠃⠉⠑⠅" }, { "input": "Dubhe", "output": "⠠⠙⠥⠃⠓⠑" }, { "input": "Dublin", "output": "⠠⠙⠥⠃⠇⠔" }, { "input": "Dubrovnik", "output": "⠠⠙⠥⠃⠗⠕⠧â â Šâ …" }, { "input": "Duchamp", "output": "⠠⠙⠥⠡â â â " }, { "input": "Dudley", "output": "⠠⠙⠥⠙⠇⠑⠽" }, { "input": "Duffy", "output": "⠠⠙⠥⠖⠽" }, { "input": "Duisburg", "output": "⠠⠙⠥⠊⠎⠃⠥⠗⠛" }, { "input": "Duke", "output": "⠠⠙⠥⠅⠑" }, { "input": "Dulles", "output": "⠠⠙⠥⠇⠇⠑⠎" }, { "input": "Duluth", "output": "⠠⠙⠥⠇⠥⠹" }, { "input": "Dumas", "output": "⠠⠙⠥â â â Ž" }, { "input": "Dumbledore", "output": "⠠⠙⠥â â ƒâ ‡â ‘⠙⠕⠗⠑" }, { "input": "Dumbo", "output": "⠠⠙⠥â â ƒâ •" }, { "input": "Dumpster", "output": "⠠⠙⠥â â â Œâ »" }, { "input": "Dunant", "output": "⠠⠙⠥â â â â ž" }, { "input": "Dunbar", "output": "⠠⠙⠥â â ƒâ œ" }, { "input": "Duncan", "output": "⠠⠙⠥â â ‰â â " }, { "input": "Dunedin", "output": "⠠⠙⠥â â «â ”" }, { "input": "Dunkirk", "output": "⠠⠙⠥â â …â Šâ —â …" }, { "input": "Dunlap", "output": "⠠⠙⠥â â ‡â â " }, { "input": "Dunn", "output": "⠠⠙⠥â â " }, { "input": "Dunne", "output": "⠠⠙⠥â â â ‘" }, { "input": "Duracell", "output": "⠠⠙⠥⠗â â ‰â ‘⠇⠇" }, { "input": "Duran", "output": "⠠⠙⠥⠗â â " }, { "input": "Durant", "output": "⠠⠙⠥⠗â â â ž" }, { "input": "Durante", "output": "⠠⠙⠥⠗â â â žâ ‘" }, { "input": "Durban", "output": "⠠⠙⠥⠗⠃â â " }, { "input": "Durex", "output": "⠠⠙⠥⠗⠑⠭" }, { "input": "Durham", "output": "⠠⠙⠥⠗⠓â â " }, { "input": "Durhams", "output": "⠠⠙⠥⠗⠓â â â Ž" }, { "input": "Durkheim", "output": "⠠⠙⠥⠗⠅⠓⠑⠊â " }, { "input": "Duroc", "output": "⠠⠙⠥⠗⠕⠉" }, { "input": "Durocher", "output": "⠠⠙⠥⠗⠕⠡⠻" }, { "input": "Duse", "output": "⠠⠙⠥⠎⠑" }, { "input": "Dushanbe", "output": "⠠⠙⠥⠩â â â ƒâ ‘" }, { "input": "Dustbuster", "output": "⠠⠙⠥⠌⠃⠥⠌⠻" }, { "input": "Dustin", "output": "⠠⠙⠥⠌⠔" }, { "input": "Dusty", "output": "⠠⠙⠥⠌⠽" }, { "input": "Dutch", "output": "⠠⠙⠥⠞⠡" }, { "input": "Dutchman", "output": "⠠⠙⠥⠞⠡â â â " }, { "input": "Dutchmen", "output": "⠠⠙⠥⠞⠡â â ¢" }, { "input": "Duvalier", "output": "⠠⠙⠥⠧â â ‡â Šâ »" }, { "input": "Dvina", "output": "⠠⠙⠧⠔â " }, { "input": "Dvorák", "output": "⠠⠙⠧⠕⠗⠠⠘⠻â â ˜â °â –â …" }, { "input": "Dwayne", "output": "⠠⠙⠺â â ½â â ‘" }, { "input": "Dwight", "output": "⠠⠙⠺⠊⠣⠞" }, { "input": "Dyer", "output": "⠠⠙⠽⠻" }, { "input": "Dylan", "output": "⠠⠙⠽⠇â â " }, { "input": "Dyson", "output": "⠠⠙⠽⠎⠕â " }, { "input": "Dzerzhinsky", "output": "⠠⠙⠵⠻⠵⠓⠔⠎⠅⠽" }, { "input": "Dzungaria", "output": "⠠⠙⠵⠥â â ›â œâ Šâ " }, { "input": "Dürer", "output": "⠠⠠⠙⠘⠻â â ¼â â Œâ ™â —â ‘â —" }, { "input": "Düsseldorf", "output": "⠠⠠⠙⠘⠻â â ¼â â Œâ ™â Žâ Žâ ‘⠇⠙⠕⠗⠋" }, { "input": "E", "output": "â °â  â ‘" }, { "input": "ECMAScript", "output": "â  â  â ‘â ‰â â â Žâ  â „⠉⠗⠊â â ž" }, { "input": "Eakins", "output": "â  â ‘â â …⠔⠎" }, { "input": "Earhart", "output": "⠠⠑⠜⠓⠜⠞" }, { "input": "Earl", "output": "⠠⠑⠜⠇" }, { "input": "Earle", "output": "⠠⠑⠜⠇⠑" }, { "input": "Earlene", "output": "⠠⠑⠜⠇⠢⠑" }, { "input": "Earline", "output": "⠠⠑⠜⠇⠔⠑" }, { "input": "Earnest", "output": "â  â ‘â œâ â ‘â Œ" }, { "input": "Earnestine", "output": "â  â ‘â œâ â ‘⠌⠔⠑" }, { "input": "Earnhardt", "output": "â  â ‘â œâ â “⠜⠙⠞" }, { "input": "Earp", "output": "â  â ‘â œâ " }, { "input": "Earth", "output": "⠠⠑⠜⠹" }, { "input": "East", "output": "â  â ‘â â Œ" }, { "input": "Easter", "output": "â  â ‘â â Œâ »" }, { "input": "Eastern", "output": "â  â ‘â â Œâ »â " }, { "input": "Easterner", "output": "â  â ‘â â Œâ »â â »" }, { "input": "Easters", "output": "â  â ‘â â Œâ »â Ž" }, { "input": "Eastman", "output": "â  â ‘â â Œâ â â " }, { "input": "Easts", "output": "â  â ‘â â Œâ Ž" }, { "input": "Eastwood", "output": "â  â ‘â â Œâ ºâ •â •â ™" }, { "input": "Eaton", "output": "â  â ‘â â žâ •â " }, { "input": "Eben", "output": "⠠⠑⠃⠢" }, { "input": "Ebeneezer", "output": "⠠⠑⠃⠢⠑⠑⠵⠻" }, { "input": "Ebert", "output": "⠠⠑⠃⠻⠞" }, { "input": "Ebola", "output": "⠠⠑⠃⠕⠇â " }, { "input": "Ebonics", "output": "⠠⠑⠃⠕â â Šâ ‰â Ž" }, { "input": "Ebony", "output": "⠠⠑⠃⠕â â ½" }, { "input": "Ebro", "output": "⠠⠑⠃⠗⠕" }, { "input": "Ecclesiastes", "output": "⠠⠑⠒⠇⠑⠎⠊â â Œâ ‘â Ž" }, { "input": "Eco", "output": "⠠⠑⠉⠕" }, { "input": "Ecuador", "output": "⠠⠑⠉⠥â â ™â •â —" }, { "input": "Ecuadoran", "output": "⠠⠑⠉⠥â â ™â •â —â â " }, { "input": "Ecuadorans", "output": "⠠⠑⠉⠥â â ™â •â —â â â Ž" }, { "input": "Ecuadorian", "output": "⠠⠑⠉⠥â â ™â •â —â Šâ â " }, { "input": "Ecuadorians", "output": "⠠⠑⠉⠥â â ™â •â —â Šâ â â Ž" }, { "input": "Ed", "output": "â  â «" }, { "input": "Edam", "output": "â  â «â â " }, { "input": "Edams", "output": "â  â «â â â Ž" }, { "input": "Edda", "output": "â  â «â ™â " }, { "input": "Eddie", "output": "⠠⠫⠙⠊⠑" }, { "input": "Eddington", "output": "⠠⠫⠙⠬⠞⠕â " }, { "input": "Eddy", "output": "⠠⠫⠙⠽" }, { "input": "Eden", "output": "â  â «â ¢" }, { "input": "Edens", "output": "⠠⠫⠢⠎" }, { "input": "Edgar", "output": "⠠⠫⠛⠜" }, { "input": "Edgardo", "output": "⠠⠫⠛⠜⠙⠕" }, { "input": "Edinburgh", "output": "⠠⠫⠔⠃⠥⠗⠣" }, { "input": "Edison", "output": "â  â «â Šâ Žâ •â " }, { "input": "Edith", "output": "â  â «â Šâ ¹" }, { "input": "Edmond", "output": "â  â «â â •â â ™" }, { "input": "Edmonton", "output": "â  â «â â •â â žâ •â " }, { "input": "Edmund", "output": "â  â «â â ¥â â ™" }, { "input": "Edna", "output": "â  â «â â " }, { "input": "Edsel", "output": "â  â «â Žâ ‘â ‡" }, { "input": "Eduardo", "output": "⠠⠫⠥⠜⠙⠕" }, { "input": "Edward", "output": "⠠⠫⠺⠜⠙" }, { "input": "Edwardian", "output": "⠠⠫⠺⠜⠙⠊â â " }, { "input": "Edwardo", "output": "⠠⠫⠺⠜⠙⠕" }, { "input": "Edwards", "output": "⠠⠫⠺⠜⠙⠎" }, { "input": "Edwin", "output": "⠠⠫⠺⠔" }, { "input": "Edwina", "output": "⠠⠫⠺⠔â " }, { "input": "Eeyore", "output": "⠠⠑⠑⠽⠕⠗⠑" }, { "input": "Effie", "output": "â  â ‘â –â Šâ ‘" }, { "input": "Efrain", "output": "â  â ‘â ‹â —â â ”" }, { "input": "Efren", "output": "â  â ‘â ‹â —â ¢" }, { "input": "Eggo", "output": "â  â ‘â ¶â •" }, { "input": "Egypt", "output": "⠠⠑⠛⠽â â ž" }, { "input": "Egyptian", "output": "⠠⠑⠛⠽â â žâ Šâ â " }, { "input": "Egyptians", "output": "⠠⠑⠛⠽â â žâ Šâ â â Ž" }, { "input": "Egyptology", "output": "⠠⠑⠛⠽â â žâ •⠇⠕⠛⠽" }, { "input": "Ehrenberg", "output": "⠠⠑⠓⠗⠢⠃⠻⠛" }, { "input": "Ehrlich", "output": "⠠⠑⠓⠗⠇⠊⠡" }, { "input": "Eichmann", "output": "â  â ‘â Šâ ¡â â â â " }, { "input": "Eiffel", "output": "â  â ‘â Šâ –â ‘â ‡" }, { "input": "Eileen", "output": "⠠⠑⠊⠇⠑⠢" }, { "input": "Einstein", "output": "⠠⠑⠔⠌⠑⠔" }, { "input": "Einsteins", "output": "⠠⠑⠔⠌⠑⠔⠎" }, { "input": "Eire", "output": "â  â ‘â Šâ —â ‘" }, { "input": "Eisenhower", "output": "⠠⠑⠊⠎⠢⠓⠪⠻" }, { "input": "Eisenstein", "output": "⠠⠑⠊⠎⠢⠌⠑⠔" }, { "input": "Eisner", "output": "â  â ‘â Šâ Žâ â »" }, { "input": "Elaine", "output": "â  â ‘â ‡â â ”â ‘" }, { "input": "Elam", "output": "â  â ‘â ‡â â " }, { "input": "Elanor", "output": "â  â ‘â ‡â â â •â —" }, { "input": "Elastoplast", "output": "â  â ‘â ‡â â Œâ •â â ‡â â Œ" }, { "input": "Elba", "output": "⠠⠑⠇⠃â " }, { "input": "Elbe", "output": "⠠⠑⠇⠃⠑" }, { "input": "Elbert", "output": "⠠⠑⠇⠃⠻⠞" }, { "input": "Elbrus", "output": "⠠⠑⠇⠃⠗⠥⠎" }, { "input": "Eldon", "output": "⠠⠑⠇⠙⠕â " }, { "input": "Eleanor", "output": "⠠⠑⠇⠂â â •â —" }, { "input": "Eleazar", "output": "⠠⠑⠇⠂⠵⠜" }, { "input": "Electra", "output": "⠠⠑⠇⠑⠉⠞⠗â " }, { "input": "Elena", "output": "⠠⠑⠇⠢â " }, { "input": "Elgar", "output": "⠠⠑⠇⠛⠜" }, { "input": "Eli", "output": "⠠⠑⠇⠊" }, { "input": "Elias", "output": "⠠⠑⠇⠊â â Ž" }, { "input": "Elijah", "output": "⠠⠑⠇⠊⠚â â “" }, { "input": "Elinor", "output": "⠠⠑⠇⠔⠕⠗" }, { "input": "Eliot", "output": "⠠⠑⠇⠊⠕⠞" }, { "input": "Elisa", "output": "⠠⠑⠇⠊⠎â " }, { "input": "Elisabeth", "output": "⠠⠑⠇⠊⠎â â ƒâ ‘â ¹" }, { "input": "Elise", "output": "⠠⠑⠇⠊⠎⠑" }, { "input": "Eliseo", "output": "⠠⠑⠇⠊⠎⠑⠕" }, { "input": "Elisha", "output": "⠠⠑⠇⠊⠩â " }, { "input": "Eliza", "output": "⠠⠑⠇⠊⠵â " }, { "input": "Elizabeth", "output": "⠠⠑⠇⠊⠵â â ƒâ ‘â ¹" }, { "input": "Elizabethan", "output": "⠠⠑⠇⠊⠵â â ƒâ ‘â ¹â â " }, { "input": "Elizabethans", "output": "⠠⠑⠇⠊⠵â â ƒâ ‘â ¹â â â Ž" }, { "input": "Ella", "output": "⠠⠑⠇⠇â " }, { "input": "Ellen", "output": "⠠⠑⠇⠇⠢" }, { "input": "Ellesmere", "output": "⠠⠑⠇⠇⠑⠎â â »â ‘" }, { "input": "Ellie", "output": "⠠⠑⠇⠇⠊⠑" }, { "input": "Ellington", "output": "⠠⠑⠇⠇⠬⠞⠕â " }, { "input": "Elliot", "output": "⠠⠑⠇⠇⠊⠕⠞" }, { "input": "Elliott", "output": "⠠⠑⠇⠇⠊⠕⠞⠞" }, { "input": "Ellis", "output": "⠠⠑⠇⠇⠊⠎" }, { "input": "Ellison", "output": "⠠⠑⠇⠇⠊⠎⠕â " }, { "input": "Elma", "output": "â  â ‘â ‡â â " }, { "input": "Elmer", "output": "â  â ‘â ‡â â »" }, { "input": "Elmo", "output": "â  â ‘â ‡â â •" }, { "input": "Elnath", "output": "â  â ‘â ‡â â â ¹" }, { "input": "Elnora", "output": "â  â ‘â ‡â â •â —â " }, { "input": "Elohim", "output": "⠠⠑⠇⠕⠓⠊â " }, { "input": "Eloise", "output": "⠠⠑⠇⠕⠊⠎⠑" }, { "input": "Eloy", "output": "⠠⠑⠇⠕⠽" }, { "input": "Elroy", "output": "⠠⠑⠇⠗⠕⠽" }, { "input": "Elsa", "output": "⠠⠑⠇⠎â " }, { "input": "Elsie", "output": "⠠⠑⠇⠎⠊⠑" }, { "input": "Elsinore", "output": "⠠⠑⠇⠎⠔⠕⠗⠑" }, { "input": "Eltanin", "output": "⠠⠑⠇⠞â â â ”" }, { "input": "Elton", "output": "⠠⠑⠇⠞⠕â " }, { "input": "Elul", "output": "⠠⠑⠇⠥⠇" }, { "input": "Elva", "output": "⠠⠑⠇⠧â " }, { "input": "Elvia", "output": "⠠⠑⠇⠧⠊â " }, { "input": "Elvin", "output": "⠠⠑⠇⠧⠔" }, { "input": "Elvira", "output": "⠠⠑⠇⠧⠊⠗â " }, { "input": "Elvis", "output": "⠠⠑⠇⠧⠊⠎" }, { "input": "Elway", "output": "⠠⠑⠇⠺â â ½" }, { "input": "Elwood", "output": "⠠⠑⠇⠺⠕⠕⠙" }, { "input": "Elysian", "output": "⠠⠑⠇⠽⠎⠊â â " }, { "input": "Elysium", "output": "⠠⠑⠇⠽⠎⠊⠥â " }, { "input": "Elysiums", "output": "⠠⠑⠇⠽⠎⠊⠥â â Ž" }, { "input": "Elysée", "output": "⠠⠑⠇⠽⠎⠠⠘⠻â â ˜â ‰â ‘" }, { "input": "Emacs", "output": "â  â ‘â â â ‰â Ž" }, { "input": "Emanuel", "output": "â  â ‘â â â â ¥â ‘â ‡" }, { "input": "Emerson", "output": "â  â ‘â â »â Žâ •â " }, { "input": "Emery", "output": "â  â ‘â â »â ½" }, { "input": "Emil", "output": "â  â ‘â â Šâ ‡" }, { "input": "Emile", "output": "â  â ‘â â Šâ ‡â ‘" }, { "input": "Emilia", "output": "â  â ‘â â Šâ ‡â Šâ " }, { "input": "Emilio", "output": "â  â ‘â â Šâ ‡â Šâ •" }, { "input": "Emily", "output": "â  â ‘â â Šâ ‡â ½" }, { "input": "Eminem", "output": "â  â ‘â â ”â ‘â " }, { "input": "Emma", "output": "â  â ‘â â â " }, { "input": "Emmanuel", "output": "â  â ‘â â â â â ¥â ‘â ‡" }, { "input": "Emmett", "output": "â  â ‘â â â ‘â žâ ž" }, { "input": "Emmy", "output": "â  â ‘â â â ½" }, { "input": "Emory", "output": "â  â ‘â â •â —â ½" }, { "input": "Encarta", "output": "⠠⠢⠉⠜⠞â " }, { "input": "Endymion", "output": "⠠⠢⠙⠽â â Šâ •â " }, { "input": "Eng", "output": "⠠⠢⠛" }, { "input": "Engels", "output": "⠠⠢⠛⠑⠇⠎" }, { "input": "England", "output": "⠠⠢⠛⠇⠯" }, { "input": "English", "output": "⠠⠢⠛⠇⠊⠩" }, { "input": "Englisher", "output": "⠠⠢⠛⠇⠊⠩⠻" }, { "input": "Englishes", "output": "⠠⠢⠛⠇⠊⠩⠑⠎" }, { "input": "Englishman", "output": "⠠⠢⠛⠇⠊⠩â â â " }, { "input": "Englishmen", "output": "⠠⠢⠛⠇⠊⠩â â ¢" }, { "input": "Englishwoman", "output": "⠠⠢⠛⠇⠊⠩⠺⠕â â â " }, { "input": "Englishwomen", "output": "⠠⠢⠛⠇⠊⠩⠺⠕â â ¢" }, { "input": "Enid", "output": "⠠⠢⠊⠙" }, { "input": "Enif", "output": "⠠⠢⠊⠋" }, { "input": "Eniwetok", "output": "⠠⠢⠊⠺⠑⠞⠕⠅" }, { "input": "Enkidu", "output": "⠠⠢⠅⠊⠙⠥" }, { "input": "Enoch", "output": "⠠⠢⠕⠡" }, { "input": "Enos", "output": "⠠⠢⠕⠎" }, { "input": "Enrico", "output": "⠠⠢⠗⠊⠉⠕" }, { "input": "Enrique", "output": "⠠⠢⠗⠊⠟⠥⠑" }, { "input": "Enron", "output": "⠠⠢⠗⠕â " }, { "input": "Enterprise", "output": "⠠⠢⠞⠻â â —â Šâ Žâ ‘" }, { "input": "Eocene", "output": "⠠⠑⠕⠉⠢⠑" }, { "input": "Epcot", "output": "â  â ‘â â ‰â •â ž" }, { "input": "Ephesian", "output": "â  â ‘â â “â ‘â Žâ Šâ â " }, { "input": "Ephesus", "output": "â  â ‘â â “⠑⠎⠥⠎" }, { "input": "Ephraim", "output": "â  â ‘â â “â —â â Šâ " }, { "input": "Epictetus", "output": "â  â ‘â â Šâ ‰â žâ ‘⠞⠥⠎" }, { "input": "Epicurean", "output": "â  â ‘â â Šâ ‰â ¥â —â ‚â " }, { "input": "Epicurus", "output": "â  â ‘â â Šâ ‰â ¥â —⠥⠎" }, { "input": "Epimethius", "output": "â  â ‘â â Šâ â ‘⠹⠊⠥⠎" }, { "input": "Epiphanies", "output": "â  â ‘â â Šâ â “â â â Šâ ‘â Ž" }, { "input": "Epiphany", "output": "â  â ‘â â Šâ â “â â â ½" }, { "input": "Episcopal", "output": "â  â ‘â â Šâ Žâ ‰â •â â â ‡" }, { "input": "Episcopalian", "output": "â  â ‘â â Šâ Žâ ‰â •â â â ‡â Šâ â " }, { "input": "Episcopalians", "output": "â  â ‘â â Šâ Žâ ‰â •â â â ‡â Šâ â â Ž" }, { "input": "Epsom", "output": "â  â ‘â â Žâ •â " }, { "input": "Epson", "output": "â  â ‘â â Žâ •â " }, { "input": "Epstein", "output": "â  â ‘â â Œâ ‘â ”" }, { "input": "Equuleus", "output": "⠠⠑⠟⠥⠥⠇⠑⠥⠎" }, { "input": "Er", "output": "â  â »" }, { "input": "Erasmus", "output": "â  â »â â Žâ â ¥â Ž" }, { "input": "Erato", "output": "â  â »â â žâ •" }, { "input": "Eratosthenes", "output": "â  â »â â žâ •â Žâ ®â â ‘â Ž" }, { "input": "Erebus", "output": "⠠⠻⠑⠃⠥⠎" }, { "input": "Erector", "output": "⠠⠻⠑⠉⠞⠕⠗" }, { "input": "Erewhon", "output": "⠠⠻⠑⠱⠕â " }, { "input": "Erhard", "output": "⠠⠻⠓⠜⠙" }, { "input": "Eric", "output": "⠠⠻⠊⠉" }, { "input": "Erica", "output": "⠠⠻⠊⠉â " }, { "input": "Erich", "output": "⠠⠻⠊⠡" }, { "input": "Erick", "output": "⠠⠻⠊⠉⠅" }, { "input": "Ericka", "output": "⠠⠻⠊⠉⠅â " }, { "input": "Erickson", "output": "⠠⠻⠊⠉⠅⠎⠕â " }, { "input": "Ericson", "output": "⠠⠻⠊⠉⠎⠕â " }, { "input": "Ericsson", "output": "⠠⠻⠊⠉⠎⠎⠕â " }, { "input": "Eridanus", "output": "⠠⠻⠊⠙â â â ¥â Ž" }, { "input": "Erie", "output": "⠠⠻⠊⠑" }, { "input": "Erik", "output": "⠠⠻⠊⠅" }, { "input": "Erika", "output": "⠠⠻⠊⠅â " }, { "input": "Erin", "output": "⠠⠻⠔" }, { "input": "Eris", "output": "⠠⠻⠊⠎" }, { "input": "Eritrea", "output": "⠠⠻⠊⠞⠗⠑â " }, { "input": "Erlenmeyer", "output": "⠠⠻⠇⠢â â ‘⠽⠻" }, { "input": "Erma", "output": "â  â »â â " }, { "input": "Erna", "output": "â  â »â â " }, { "input": "Ernest", "output": "â  â »â â ‘â Œ" }, { "input": "Ernestine", "output": "â  â »â â ‘⠌⠔⠑" }, { "input": "Ernesto", "output": "â  â »â â ‘⠌⠕" }, { "input": "Ernie", "output": "â  â »â â Šâ ‘" }, { "input": "Ernst", "output": "â  â »â â Œ" }, { "input": "Eros", "output": "⠠⠻⠕⠎" }, { "input": "Eroses", "output": "⠠⠻⠕⠎⠑⠎" }, { "input": "Errol", "output": "⠠⠻⠗⠕⠇" }, { "input": "Erse", "output": "⠠⠻⠎⠑" }, { "input": "ErvIn", "output": "⠠⠻⠧⠠⠔" }, { "input": "Erwin", "output": "⠠⠻⠺⠔" }, { "input": "Es", "output": "â  â ‘â Ž" }, { "input": "Esau", "output": "â  â ‘â Žâ â ¥" }, { "input": "Escher", "output": "â  â ‘â Žâ ¡â »" }, { "input": "Escherichia", "output": "⠠⠑⠎⠡⠻⠊⠡⠊â " }, { "input": "Eskimo", "output": "â  â ‘â Žâ …â Šâ â •" }, { "input": "Eskimos", "output": "â  â ‘â Žâ …â Šâ â •â Ž" }, { "input": "Esmeralda", "output": "â  â ‘â Žâ â »â â ‡â ™â " }, { "input": "Esperanto", "output": "â  â ‘â Žâ â »â â â žâ •" }, { "input": "Esperanza", "output": "â  â ‘â Žâ â »â â â µâ " }, { "input": "Espinoza", "output": "â  â ‘â Žâ â ”â •â µâ " }, { "input": "Esq", "output": "â  â ‘â Žâ Ÿ" }, { "input": "Essen", "output": "â  â ‘â Žâ Žâ ¢" }, { "input": "Essene", "output": "⠠⠑⠎⠎⠢⠑" }, { "input": "Essequibo", "output": "⠠⠑⠎⠎⠑⠟⠥⠊⠃⠕" }, { "input": "Essex", "output": "â  â ‘â Žâ Žâ ‘â ­" }, { "input": "Essie", "output": "â  â ‘â Žâ Žâ Šâ ‘" }, { "input": "Establishment", "output": "â  â ‘â Œâ â ƒâ ‡â Šâ ©â °â ž" }, { "input": "Esteban", "output": "⠠⠑⠌⠑⠃â â " }, { "input": "Estela", "output": "⠠⠑⠌⠑⠇â " }, { "input": "Estella", "output": "⠠⠑⠌⠑⠇⠇â " }, { "input": "Estelle", "output": "⠠⠑⠌⠑⠇⠇⠑" }, { "input": "Ester", "output": "⠠⠑⠌⠻" }, { "input": "Esterházy", "output": "⠠⠑⠌⠻⠓⠠⠘⠻â â ˜â °â –⠵⠽" }, { "input": "Estes", "output": "⠠⠑⠌⠑⠎" }, { "input": "Esther", "output": "⠠⠑⠎⠮⠗" }, { "input": "Estonia", "output": "⠠⠑⠌⠕â â Šâ " }, { "input": "Estonian", "output": "⠠⠑⠌⠕â â Šâ â " }, { "input": "Estonians", "output": "⠠⠑⠌⠕â â Šâ â â Ž" }, { "input": "Estrada", "output": "⠠⠑⠌⠗â â ™â " }, { "input": "Ethan", "output": "â  â ‘â ¹â â " }, { "input": "Ethel", "output": "⠠⠑⠮⠇" }, { "input": "Ethelred", "output": "⠠⠑⠮⠇⠗⠫" }, { "input": "Ethernet", "output": "⠠⠑⠮⠗â â ‘â ž" }, { "input": "Ethiopia", "output": "⠠⠑⠹⠊⠕â â Šâ " }, { "input": "Ethiopian", "output": "⠠⠑⠹⠊⠕â â Šâ â " }, { "input": "Ethiopians", "output": "⠠⠑⠹⠊⠕â â Šâ â â Ž" }, { "input": "Etna", "output": "â  â ‘â žâ â " }, { "input": "Eton", "output": "â  â ‘â žâ •â " }, { "input": "Etruria", "output": "⠠⠑⠞⠗⠥⠗⠊â " }, { "input": "Etruscan", "output": "⠠⠑⠞⠗⠥⠎⠉â â " }, { "input": "Etta", "output": "â  â ‘â žâ žâ " }, { "input": "Eu", "output": "â  â ‘â ¥" }, { "input": "Eucharist", "output": "⠠⠑⠥⠡⠜⠊⠌" }, { "input": "Eucharistic", "output": "⠠⠑⠥⠡⠜⠊⠌⠊⠉" }, { "input": "Eucharists", "output": "⠠⠑⠥⠡⠜⠊⠌⠎" }, { "input": "Euclid", "output": "⠠⠑⠥⠉⠇⠊⠙" }, { "input": "Euclidean", "output": "⠠⠑⠥⠉⠇⠊⠙⠂â " }, { "input": "Eugene", "output": "⠠⠑⠥⠛⠢⠑" }, { "input": "Eugenia", "output": "⠠⠑⠥⠛⠢⠊â " }, { "input": "Eugenie", "output": "⠠⠑⠥⠛⠢⠊⠑" }, { "input": "Eugenio", "output": "⠠⠑⠥⠛⠢⠊⠕" }, { "input": "Eula", "output": "⠠⠑⠥⠇â " }, { "input": "Euler", "output": "⠠⠑⠥⠇⠻" }, { "input": "Eumenides", "output": "â  â ‘â ¥â â ¢â Šâ ™â ‘â Ž" }, { "input": "Eunice", "output": "â  â ‘â ¥â â Šâ ‰â ‘" }, { "input": "Euphrates", "output": "â  â ‘â ¥â â “â —â â žâ ‘â Ž" }, { "input": "Eurasia", "output": "⠠⠑⠥⠗â â Žâ Šâ " }, { "input": "Eurasian", "output": "⠠⠑⠥⠗â â Žâ Šâ â " }, { "input": "Eurasians", "output": "⠠⠑⠥⠗â â Žâ Šâ â â Ž" }, { "input": "Euripides", "output": "⠠⠑⠥⠗⠊â â Šâ ™â ‘â Ž" }, { "input": "Eurodollar", "output": "⠠⠑⠥⠗⠕⠙⠕⠇⠇⠜" }, { "input": "Eurodollars", "output": "⠠⠑⠥⠗⠕⠙⠕⠇⠇⠜⠎" }, { "input": "Europa", "output": "⠠⠑⠥⠗⠕â â " }, { "input": "Europe", "output": "⠠⠑⠥⠗⠕â â ‘" }, { "input": "European", "output": "⠠⠑⠥⠗⠕â â ‚â " }, { "input": "Europeans", "output": "⠠⠑⠥⠗⠕â â ‚â â Ž" }, { "input": "Eurydice", "output": "⠠⠑⠥⠗⠽⠙⠊⠉⠑" }, { "input": "Eustachian", "output": "⠠⠑⠥⠌â â ¡â Šâ â " }, { "input": "Euterpe", "output": "⠠⠑⠥⠞⠻â â ‘" }, { "input": "Eva", "output": "â  â ‘â §â " }, { "input": "Evan", "output": "â  â ‘â §â â " }, { "input": "Evangelina", "output": "â  â ‘â §â â â ›â ‘⠇⠔â " }, { "input": "Evangeline", "output": "â  â ‘â §â â â ›â ‘⠇⠔⠑" }, { "input": "Evans", "output": "â  â ‘â §â â â Ž" }, { "input": "Evansville", "output": "â  â ‘â §â â â Žâ §â Šâ ‡â ‡â ‘" }, { "input": "Eve", "output": "â  â ‘â §â ‘" }, { "input": "Evelyn", "output": "⠠⠑⠧⠑⠇⠽â " }, { "input": "Evenki", "output": "⠠⠑⠧⠢⠅⠊" }, { "input": "EverReady", "output": "â  â â ‘⠠⠗⠂⠙⠽" }, { "input": "Everest", "output": "â  â â ‘â ‘â Œ" }, { "input": "Everett", "output": "â  â â ‘â ‘â žâ ž" }, { "input": "Everette", "output": "â  â â ‘â ‘â žâ žâ ‘" }, { "input": "Everglades", "output": "â  â â ‘⠛⠇â â ™â ‘â Ž" }, { "input": "Evert", "output": "⠠⠑⠧⠻⠞" }, { "input": "Evian", "output": "â  â ‘â §â Šâ â " }, { "input": "Evita", "output": "â  â ‘â §â Šâ žâ " }, { "input": "Ewing", "output": "⠠⠑⠺⠬" }, { "input": "Excalibur", "output": "â  â ‘â ­â ‰â â ‡â Šâ ƒâ ¥â —" }, { "input": "Excedrin", "output": "⠠⠑⠭⠉⠫⠗⠔" }, { "input": "Excellencies", "output": "⠠⠑⠭⠉⠑⠇⠇⠢⠉⠊⠑⠎" }, { "input": "Excellency", "output": "⠠⠑⠭⠉⠑⠇⠇⠢⠉⠽" }, { "input": "Exercycle", "output": "⠠⠑⠭⠻⠉⠽⠉⠇⠑" }, { "input": "Exocet", "output": "⠠⠑⠭⠕⠉⠑⠞" }, { "input": "Exodus", "output": "⠠⠑⠭⠕⠙⠥⠎" }, { "input": "Exxon", "output": "â  â ‘â ­â ­â •â " }, { "input": "Eyck", "output": "⠠⠑⠽⠉⠅" }, { "input": "Eyre", "output": "⠠⠑⠽⠗⠑" }, { "input": "Eysenck", "output": "⠠⠑⠽⠎⠢⠉⠅" }, { "input": "Ezekiel", "output": "⠠⠑⠵⠑⠅⠊⠑⠇" }, { "input": "Ezra", "output": "⠠⠑⠵⠗â " }, { "input": "F", "output": "â °â  â ‹" }, { "input": "FDR", "output": "⠠⠠⠋⠙⠗" }, { "input": "FNMA", "output": "â  â  â ‹â â â " }, { "input": "Fabergé", "output": "â  â ‹â â ƒâ »â ›â  â ˜â »â â ˜â ‰" }, { "input": "Fabian", "output": "â  â ‹â â ƒâ Šâ â " }, { "input": "Facebook", "output": "â  â ‹â â ‰â ‘⠃⠕⠕⠅" }, { "input": "Faeroe", "output": "â  â ‹â â »â •â ‘" }, { "input": "Fafnir", "output": "â  â ‹â â ‹â â Šâ —" }, { "input": "Fagin", "output": "â  â ‹â â ›â ”" }, { "input": "Fahd", "output": "â  â ‹â â “â ™" }, { "input": "Fahrenheit", "output": "â  â ‹â â “⠗⠢⠓⠑⠊⠞" }, { "input": "Fairbanks", "output": "â  â ‹â â Šâ —â ƒâ â â …â Ž" }, { "input": "Faisal", "output": "â  â ‹â â Šâ Žâ â ‡" }, { "input": "Faisalabad", "output": "â  â ‹â â Šâ Žâ â ‡â â ƒâ â ™" }, { "input": "Faith", "output": "â  â ‹â â Šâ ¹" }, { "input": "Falasha", "output": "â  â ‹â â ‡â â ©â " }, { "input": "Falkland", "output": "â  â ‹â â ‡â …⠇⠯" }, { "input": "Falklands", "output": "â  â ‹â â ‡â …⠇⠯⠎" }, { "input": "Fallopian", "output": "â  â ‹â â ‡â ‡â •â â Šâ â " }, { "input": "Falstaff", "output": "â  â ‹â â ‡â Œâ â ‹â ‹" }, { "input": "Falwell", "output": "â  â ‹â â ‡â ºâ ‘⠇⠇" }, { "input": "Fannie", "output": "â  â ‹â â â â Šâ ‘" }, { "input": "Fanny", "output": "â  â ‹â â â â ½" }, { "input": "Faraday", "output": "â  â ‹â œâ â â ™" }, { "input": "Fargo", "output": "⠠⠋⠜⠛⠕" }, { "input": "Farley", "output": "⠠⠋⠜⠇⠑⠽" }, { "input": "Farmer", "output": "â  â ‹â œâ â »" }, { "input": "Farragut", "output": "⠠⠋⠜⠗â â ›â ¥â ž" }, { "input": "Farrakhan", "output": "⠠⠋⠜⠗â â …â “â â " }, { "input": "Farrell", "output": "⠠⠋⠜⠗⠑⠇⠇" }, { "input": "Farrow", "output": "⠠⠋⠜⠗⠪" }, { "input": "Farsi", "output": "⠠⠋⠜⠎⠊" }, { "input": "Fassbinder", "output": "â  â ‹â â Žâ Žâ ƒâ ”⠙⠻" }, { "input": "Fatah", "output": "â  â ‹â â žâ â “" }, { "input": "Fates", "output": "â  â ‹â â žâ ‘â Ž" }, { "input": "Father", "output": "â  â â ‹" }, { "input": "Fathers", "output": "â  â â ‹â Ž" }, { "input": "Fatima", "output": "â  â ‹â â žâ Šâ â " }, { "input": "Fatimid", "output": "â  â ‹â â žâ Šâ â Šâ ™" }, { "input": "Faulkner", "output": "â  â ‹â â ¥â ‡â …â â »" }, { "input": "Faulknerian", "output": "â  â ‹â â ¥â ‡â …â â »â Šâ â " }, { "input": "Fauntleroy", "output": "â  â ‹â â ¥â â žâ ‡â »â •â ½" }, { "input": "Faust", "output": "â  â ‹â â ¥â Œ" }, { "input": "Faustian", "output": "â  â ‹â â ¥â Œâ Šâ â " }, { "input": "Faustino", "output": "â  â ‹â â ¥â Œâ ”â •" }, { "input": "Faustus", "output": "â  â ‹â â ¥â Œâ ¥â Ž" }, { "input": "Fawkes", "output": "â  â ‹â â ºâ …â ‘â Ž" }, { "input": "Fay", "output": "â  â ‹â â ½" }, { "input": "Faye", "output": "â  â ‹â â ½â ‘" }, { "input": "Fe", "output": "â  â ‹â ‘" }, { "input": "Feb", "output": "â  â ‹â ‘â ƒ" }, { "input": "Februaries", "output": "⠠⠋⠑⠃⠗⠥⠜⠊⠑⠎" }, { "input": "February", "output": "⠠⠋⠑⠃⠗⠥⠜⠽" }, { "input": "Fed", "output": "â  â ‹â «" }, { "input": "FedEx", "output": "â  â ‹â «â  â ‘â ­" }, { "input": "Federalist", "output": "â  â ‹â «â »â â ‡â Šâ Œ" }, { "input": "Federico", "output": "⠠⠋⠫⠻⠊⠉⠕" }, { "input": "Feds", "output": "â  â ‹â «â Ž" }, { "input": "Felecia", "output": "⠠⠋⠑⠇⠑⠉⠊â " }, { "input": "Felice", "output": "⠠⠋⠑⠇⠊⠉⠑" }, { "input": "Felicia", "output": "⠠⠋⠑⠇⠊⠉⠊â " }, { "input": "Felicity", "output": "⠠⠋⠑⠇⠊⠉⠰⠽" }, { "input": "Felipe", "output": "⠠⠋⠑⠇⠊â â ‘" }, { "input": "Felix", "output": "⠠⠋⠑⠇⠊⠭" }, { "input": "Fellini", "output": "⠠⠋⠑⠇⠇⠔⠊" }, { "input": "Fenian", "output": "⠠⠋⠢⠊â â " }, { "input": "Ferber", "output": "⠠⠋⠻⠃⠻" }, { "input": "Ferdinand", "output": "⠠⠋⠻⠙⠔⠯" }, { "input": "Fergus", "output": "⠠⠋⠻⠛⠥⠎" }, { "input": "Ferguson", "output": "⠠⠋⠻⠛⠥⠎⠕â " }, { "input": "Ferlinghetti", "output": "⠠⠋⠻⠇⠬⠓⠑⠞⠞⠊" }, { "input": "Fermat", "output": "â  â ‹â »â â â ž" }, { "input": "Fermi", "output": "â  â ‹â »â â Š" }, { "input": "Fern", "output": "â  â ‹â »â " }, { "input": "Fernandez", "output": "â  â ‹â »â â ¯â ‘â µ" }, { "input": "Fernando", "output": "â  â ‹â »â â ¯â •" }, { "input": "Ferrari", "output": "⠠⠋⠻⠗⠜⠊" }, { "input": "Ferraro", "output": "⠠⠋⠻⠗⠜⠕" }, { "input": "Ferrell", "output": "⠠⠋⠻⠗⠑⠇⠇" }, { "input": "Ferris", "output": "⠠⠋⠻⠗⠊⠎" }, { "input": "Feynman", "output": "â  â ‹â ‘â ½â â â â " }, { "input": "Fez", "output": "â  â ‹â ‘â µ" }, { "input": "Fiat", "output": "â  â ‹â Šâ â ž" }, { "input": "Fiberglas", "output": "⠠⠋⠊⠃⠻⠛⠇â â Ž" }, { "input": "Fibonacci", "output": "⠠⠋⠊⠃⠕â â â ’â Š" }, { "input": "Fichte", "output": "â  â ‹â Šâ ¡â žâ ‘" }, { "input": "Fidel", "output": "⠠⠋⠊⠙⠑⠇" }, { "input": "Fido", "output": "⠠⠋⠊⠙⠕" }, { "input": "Fielding", "output": "⠠⠋⠊⠑⠇⠙⠬" }, { "input": "Fields", "output": "⠠⠋⠊⠑⠇⠙⠎" }, { "input": "Figaro", "output": "⠠⠋⠊⠛⠜⠕" }, { "input": "Figueroa", "output": "⠠⠋⠊⠛⠥⠻⠕â " }, { "input": "Fiji", "output": "â  â ‹â Šâ šâ Š" }, { "input": "Fijian", "output": "â  â ‹â Šâ šâ Šâ â " }, { "input": "Fijians", "output": "â  â ‹â Šâ šâ Šâ â â Ž" }, { "input": "Filipino", "output": "⠠⠋⠊⠇⠊â â ”â •" }, { "input": "Filipinos", "output": "⠠⠋⠊⠇⠊â â ”â •â Ž" }, { "input": "Fillmore", "output": "⠠⠋⠊⠇⠇â â •â —â ‘" }, { "input": "Filofax", "output": "⠠⠋⠊⠇⠕⠋â â ­" }, { "input": "Finch", "output": "⠠⠋⠔⠡" }, { "input": "Finland", "output": "⠠⠋⠔⠇⠯" }, { "input": "Finley", "output": "⠠⠋⠔⠇⠑⠽" }, { "input": "Finn", "output": "â  â ‹â ”â " }, { "input": "Finnbogadottir", "output": "â  â ‹â ”â â ƒâ •â ›â â ™â •â žâ žâ Šâ —" }, { "input": "Finnegan", "output": "â  â ‹â ”â â ‘â ›â â " }, { "input": "Finnish", "output": "â  â ‹â ”â â Šâ ©" }, { "input": "Finns", "output": "â  â ‹â ”â â Ž" }, { "input": "Fiona", "output": "â  â ‹â Šâ •â â " }, { "input": "Firefox", "output": "â  â ‹â Šâ —â ‘â ‹â •â ­" }, { "input": "Firestone", "output": "â  â ‹â Šâ —â ‘â Œâ â •" }, { "input": "Fischer", "output": "â  â ‹â Šâ Žâ ¡â »" }, { "input": "Fisher", "output": "â  â ‹â Šâ ©â »" }, { "input": "Fisk", "output": "â  â ‹â Šâ Žâ …" }, { "input": "Fitch", "output": "â  â ‹â Šâ žâ ¡" }, { "input": "Fitzgerald", "output": "⠠⠋⠊⠞⠵⠛⠻â â ‡â ™" }, { "input": "Fitzpatrick", "output": "â  â ‹â Šâ žâ µâ â â žâ —⠊⠉⠅" }, { "input": "Fitzroy", "output": "⠠⠋⠊⠞⠵⠗⠕⠽" }, { "input": "Fizeau", "output": "⠠⠋⠊⠵⠂⠥" }, { "input": "Fla", "output": "â  â ‹â ‡â " }, { "input": "Flanagan", "output": "â  â ‹â ‡â â â â ›â â " }, { "input": "Flanders", "output": "⠠⠋⠇⠯⠻⠎" }, { "input": "Flatt", "output": "â  â ‹â ‡â â žâ ž" }, { "input": "Flaubert", "output": "â  â ‹â ‡â â ¥â ƒâ »â ž" }, { "input": "Fleischer", "output": "⠠⠋⠇⠑⠊⠎⠡⠻" }, { "input": "Fleming", "output": "⠠⠋⠇⠑â â ¬" }, { "input": "Flemish", "output": "⠠⠋⠇⠑â â Šâ ©" }, { "input": "Fletcher", "output": "⠠⠋⠇⠑⠞⠡⠻" }, { "input": "Flint", "output": "⠠⠋⠇⠔⠞" }, { "input": "Flintstones", "output": "⠠⠋⠇⠔⠞⠌â â •â Ž" }, { "input": "Flo", "output": "⠠⠋⠇⠕" }, { "input": "Flora", "output": "⠠⠋⠇⠕⠗â " }, { "input": "Florence", "output": "⠠⠋⠇⠕⠗⠰⠑" }, { "input": "Florentine", "output": "⠠⠋⠇⠕⠗⠢⠞⠔⠑" }, { "input": "Flores", "output": "⠠⠋⠇⠕⠗⠑⠎" }, { "input": "Florida", "output": "⠠⠋⠇⠕⠗⠊⠙â " }, { "input": "Floridan", "output": "⠠⠋⠇⠕⠗⠊⠙â â " }, { "input": "Florine", "output": "⠠⠋⠇⠕⠗⠔⠑" }, { "input": "Florsheim", "output": "⠠⠋⠇⠕⠗⠎⠓⠑⠊â " }, { "input": "Flory", "output": "⠠⠋⠇⠕⠗⠽" }, { "input": "Flossie", "output": "⠠⠋⠇⠕⠎⠎⠊⠑" }, { "input": "Flowers", "output": "⠠⠋⠇⠪⠻⠎" }, { "input": "Floyd", "output": "⠠⠋⠇⠕⠽⠙" }, { "input": "Flynn", "output": "⠠⠋⠇⠽â â " }, { "input": "Fm", "output": "â  â ‹â " }, { "input": "Foch", "output": "â  â ‹â •â ¡" }, { "input": "Fokker", "output": "â  â ‹â •â …â …â »" }, { "input": "Foley", "output": "⠠⠋⠕⠇⠑⠽" }, { "input": "Folgers", "output": "⠠⠋⠕⠇⠛⠻⠎" }, { "input": "Folsom", "output": "⠠⠋⠕⠇⠎⠕â " }, { "input": "Fomalhaut", "output": "â  â ‹â •â â â ‡â “â â ¥â ž" }, { "input": "Fonda", "output": "â  â ‹â •â â ™â " }, { "input": "Foosball", "output": "â  â ‹â •â •â Žâ ƒâ â ‡â ‡" }, { "input": "Forbes", "output": "⠠⠿⠃⠑⠎" }, { "input": "Ford", "output": "â  â ¿â ™" }, { "input": "Foreman", "output": "â  â ¿â ‘â â â " }, { "input": "Forest", "output": "â  â ¿â ‘â Œ" }, { "input": "Forester", "output": "⠠⠿⠑⠌⠻" }, { "input": "Formica", "output": "â  â ¿â â Šâ ‰â " }, { "input": "Formicas", "output": "â  â ¿â â Šâ ‰â â Ž" }, { "input": "Formosa", "output": "â  â ¿â â •â Žâ " }, { "input": "Formosan", "output": "â  â ¿â â •â Žâ â " }, { "input": "Forrest", "output": "â  â ¿â —â ‘â Œ" }, { "input": "Forster", "output": "⠠⠿⠌⠻" }, { "input": "Fortaleza", "output": "â  â ¿â žâ â ‡â ‘â µâ " }, { "input": "Fosse", "output": "â  â ‹â •â Žâ Žâ ‘" }, { "input": "Foster", "output": "⠠⠋⠕⠌⠻" }, { "input": "Fotomat", "output": "â  â ‹â •â žâ •â â â ž" }, { "input": "Foucault", "output": "⠠⠋⠳⠉â â ¥â ‡â ž" }, { "input": "Fourier", "output": "⠠⠋⠳⠗⠊⠻" }, { "input": "Fourneyron", "output": "⠠⠋⠳⠗â â ‘⠽⠗⠕â " }, { "input": "Fowler", "output": "⠠⠋⠪⠇⠻" }, { "input": "Fox", "output": "â  â ‹â •â ­" }, { "input": "Fr", "output": "â °â  â ‹â —" }, { "input": "Fragonard", "output": "â  â ‹â —â â ›â •â â œâ ™" }, { "input": "Fran", "output": "â  â ‹â —â â " }, { "input": "France", "output": "⠠⠋⠗⠨⠑" }, { "input": "Frances", "output": "⠠⠋⠗⠨⠑⠎" }, { "input": "Francesca", "output": "⠠⠋⠗⠨⠑⠎⠉â " }, { "input": "Francine", "output": "â  â ‹â —â â â ‰â ”â ‘" }, { "input": "Francis", "output": "â  â ‹â —â â â ‰â Šâ Ž" }, { "input": "Francisca", "output": "â  â ‹â —â â â ‰â Šâ Žâ ‰â " }, { "input": "Franciscan", "output": "â  â ‹â —â â â ‰â Šâ Žâ ‰â â " }, { "input": "Francisco", "output": "â  â ‹â —â â â ‰â Šâ Žâ ‰â •" }, { "input": "Franck", "output": "â  â ‹â —â â â ‰â …" }, { "input": "Franco", "output": "â  â ‹â —â â â ‰â •" }, { "input": "Francois", "output": "â  â ‹â —â â â ‰â •â Šâ Ž" }, { "input": "Francoise", "output": "â  â ‹â —â â â ‰â •â Šâ Žâ ‘" }, { "input": "Franglais", "output": "â  â ‹â —â â â ›â ‡â â Šâ Ž" }, { "input": "Frank", "output": "â  â ‹â —â â â …" }, { "input": "Frankel", "output": "â  â ‹â —â â â …â ‘â ‡" }, { "input": "Frankenstein", "output": "â  â ‹â —â â â …⠢⠌⠑⠔" }, { "input": "Frankfort", "output": "â  â ‹â —â â â …â ¿â ž" }, { "input": "Frankfurt", "output": "â  â ‹â —â â â …⠋⠥⠗⠞" }, { "input": "Frankfurter", "output": "â  â ‹â —â â â …⠋⠥⠗⠞⠻" }, { "input": "Frankie", "output": "â  â ‹â —â â â …â Šâ ‘" }, { "input": "Franklin", "output": "â  â ‹â —â â â …⠇⠔" }, { "input": "Franks", "output": "â  â ‹â —â â â …â Ž" }, { "input": "Franny", "output": "â  â ‹â —â â â â ½" }, { "input": "Franz", "output": "â  â ‹â —â â â µ" }, { "input": "Fraser", "output": "â  â ‹â —â â Žâ »" }, { "input": "Frazier", "output": "â  â ‹â —â â µâ Šâ »" }, { "input": "Fred", "output": "â  â ‹â —â «" }, { "input": "Freda", "output": "â  â ‹â —â «â " }, { "input": "Freddie", "output": "⠠⠋⠗⠫⠙⠊⠑" }, { "input": "Freddy", "output": "⠠⠋⠗⠫⠙⠽" }, { "input": "Frederic", "output": "⠠⠋⠗⠫⠻⠊⠉" }, { "input": "Frederick", "output": "⠠⠋⠗⠫⠻⠊⠉⠅" }, { "input": "Fredericton", "output": "⠠⠋⠗⠫⠻⠊⠉⠞⠕â " }, { "input": "Fredric", "output": "â  â ‹â —â «â —â Šâ ‰" }, { "input": "Fredrick", "output": "⠠⠋⠗⠫⠗⠊⠉⠅" }, { "input": "Freeman", "output": "â  â ‹â —â ‘â ‘â â â " }, { "input": "Freemason", "output": "â  â ‹â —â ‘â ‘â â â Žâ •â " }, { "input": "Freemasonries", "output": "â  â ‹â —â ‘â ‘â â â Žâ •â â —â Šâ ‘â Ž" }, { "input": "Freemasonry", "output": "â  â ‹â —â ‘â ‘â â â Žâ •â â —â ½" }, { "input": "Freemasons", "output": "â  â ‹â —â ‘â ‘â â â Žâ •â â Ž" }, { "input": "Freetown", "output": "â  â ‹â —â ‘â ‘â žâ ªâ " }, { "input": "Freida", "output": "â  â ‹â —â ‘â Šâ ™â " }, { "input": "Fremont", "output": "â  â ‹â —â ‘â â •â â ž" }, { "input": "French", "output": "⠠⠋⠗⠢⠡" }, { "input": "Frenches", "output": "⠠⠋⠗⠢⠡⠑⠎" }, { "input": "Frenchman", "output": "⠠⠋⠗⠢⠡â â â " }, { "input": "Frenchmen", "output": "⠠⠋⠗⠢⠡â â ¢" }, { "input": "Frenchwoman", "output": "⠠⠋⠗⠢⠡⠺⠕â â â " }, { "input": "Frenchwomen", "output": "⠠⠋⠗⠢⠡⠺⠕â â ¢" }, { "input": "Freon", "output": "â  â ‹â —â ‘â •â " }, { "input": "Fresnel", "output": "â  â ‹â —â ‘â Žâ â ‘â ‡" }, { "input": "Fresno", "output": "â  â ‹â —â ‘â Žâ â •" }, { "input": "Freud", "output": "⠠⠋⠗⠑⠥⠙" }, { "input": "Freudian", "output": "⠠⠋⠗⠑⠥⠙⠊â â " }, { "input": "Frey", "output": "â  â ‹â —â ‘â ½" }, { "input": "Freya", "output": "â  â ‹â —â ‘â ½â " }, { "input": "Fri", "output": "â  â ‹â —â Š" }, { "input": "Friday", "output": "â  â ‹â —â Šâ â ™" }, { "input": "Fridays", "output": "â  â ‹â —â Šâ â ™â Ž" }, { "input": "Frieda", "output": "â  â ‹â —â Šâ «â " }, { "input": "Friedan", "output": "â  â ‹â —â Šâ «â â " }, { "input": "Friedman", "output": "â  â ‹â —â Šâ «â â â " }, { "input": "Frigga", "output": "â  â ‹â —â Šâ ¶â " }, { "input": "Frigidaire", "output": "⠠⠋⠗⠊⠛⠊⠙â â Šâ —â ‘" }, { "input": "Frisbee", "output": "⠠⠋⠗⠊⠎⠃⠑⠑" }, { "input": "Frisco", "output": "⠠⠋⠗⠊⠎⠉⠕" }, { "input": "Frisian", "output": "â  â ‹â —â Šâ Žâ Šâ â " }, { "input": "Frito", "output": "â  â ‹â —â Šâ žâ •" }, { "input": "Fritz", "output": "â  â ‹â —â Šâ žâ µ" }, { "input": "Frobisher", "output": "⠠⠋⠗⠕⠃⠊⠩⠻" }, { "input": "Froissart", "output": "⠠⠋⠗⠕⠊⠎⠎⠜⠞" }, { "input": "Fromm", "output": "â  â ‹â —â •â â " }, { "input": "Fronde", "output": "â  â ‹â —â •â â ™â ‘" }, { "input": "Frontenac", "output": "â  â ‹â —â •â â žâ ¢â â ‰" }, { "input": "Frost", "output": "â  â ‹â —â •â Œ" }, { "input": "Frostbelt", "output": "⠠⠋⠗⠕⠌⠃⠑⠇⠞" }, { "input": "Fry", "output": "â  â ‹â —â ½" }, { "input": "Frye", "output": "⠠⠋⠗⠽⠑" }, { "input": "Fuchs", "output": "⠠⠋⠥⠡⠎" }, { "input": "Fuentes", "output": "⠠⠋⠥⠢⠞⠑⠎" }, { "input": "Fugger", "output": "⠠⠋⠥⠶⠻" }, { "input": "Fuji", "output": "⠠⠋⠥⠚⠊" }, { "input": "Fujitsu", "output": "⠠⠋⠥⠚⠊⠞⠎⠥" }, { "input": "Fujiwara", "output": "⠠⠋⠥⠚⠊⠺⠜â " }, { "input": "Fukuoka", "output": "⠠⠋⠥⠅⠥⠕⠅â " }, { "input": "Fulani", "output": "⠠⠋⠥⠇â â â Š" }, { "input": "Fulbright", "output": "⠠⠋⠥⠇⠃â â —" }, { "input": "Fuller", "output": "⠠⠋⠥⠇⠇⠻" }, { "input": "Fulton", "output": "⠠⠋⠥⠇⠞⠕â " }, { "input": "Funafuti", "output": "â  â ‹â ¥â â â ‹â ¥â žâ Š" }, { "input": "Fundy", "output": "â  â ‹â ¥â â ™â ½" }, { "input": "Furtwängler", "output": "⠠⠋⠥⠗⠞⠺⠠⠘⠻â â ¡â ˆâ Žâ â ›â ‡â »" }, { "input": "Fushun", "output": "⠠⠋⠥⠩⠥â " }, { "input": "Fuzhou", "output": "⠠⠋⠥⠵⠓⠳" }, { "input": "Fuzzbuster", "output": "⠠⠋⠥⠵⠵⠃⠥⠌⠻" }, { "input": "G", "output": "â °â  â ›" }, { "input": "GE", "output": "⠠⠠⠛⠑" }, { "input": "GTE", "output": "⠠⠠⠛⠞⠑" }, { "input": "Ga", "output": "â  â ›â " }, { "input": "Gable", "output": "â  â ›â â ƒâ ‡â ‘" }, { "input": "Gabon", "output": "â  â ›â â ƒâ •â " }, { "input": "Gaborone", "output": "â  â ›â â ƒâ •â —â â •" }, { "input": "Gabriel", "output": "â  â ›â â ƒâ —â Šâ ‘â ‡" }, { "input": "Gabriela", "output": "â  â ›â â ƒâ —â Šâ ‘â ‡â " }, { "input": "Gabrielle", "output": "â  â ›â â ƒâ —⠊⠑⠇⠇⠑" }, { "input": "Gacrux", "output": "â  â ›â â ‰â —⠥⠭" }, { "input": "Gadsden", "output": "â  â ›â â ™â Žâ ™â ¢" }, { "input": "Gaea", "output": "â  â ›â â ‘â " }, { "input": "Gael", "output": "â  â ›â â ‘â ‡" }, { "input": "Gaelic", "output": "â  â ›â â ‘⠇⠊⠉" }, { "input": "Gagarin", "output": "â  â ›â â ›â œâ ”" }, { "input": "Gage", "output": "â  â ›â â ›â ‘" }, { "input": "Gail", "output": "â  â ›â â Šâ ‡" }, { "input": "Gaiman", "output": "â  â ›â â Šâ â â " }, { "input": "Gaines", "output": "â  â ›â â ”â ‘â Ž" }, { "input": "Gainsborough", "output": "â  â ›â â ”⠎⠃⠕⠗⠳⠣" }, { "input": "Galahad", "output": "â  â ›â â ‡â â ¸â “" }, { "input": "Galahads", "output": "â  â ›â â ‡â â ¸â “â Ž" }, { "input": "Galapagos", "output": "â  â ›â â ‡â â â â ›â •â Ž" }, { "input": "Galatea", "output": "â  â ›â â ‡â â žâ ‘â " }, { "input": "Galatia", "output": "â  â ›â â ‡â â žâ Šâ " }, { "input": "Galatians", "output": "â  â ›â â ‡â â žâ Šâ â â Ž" }, { "input": "Galbraith", "output": "â  â ›â â ‡â ƒâ —â â Šâ ¹" }, { "input": "Gale", "output": "â  â ›â â ‡â ‘" }, { "input": "Galen", "output": "â  â ›â â ‡â ¢" }, { "input": "Galibi", "output": "â  â ›â â ‡â Šâ ƒâ Š" }, { "input": "Galilean", "output": "â  â ›â â ‡â Šâ ‡â ‚â " }, { "input": "Galilee", "output": "â  â ›â â ‡â Šâ ‡â ‘â ‘" }, { "input": "Galileo", "output": "â  â ›â â ‡â Šâ ‡â ‘â •" }, { "input": "Gall", "output": "â  â ›â â ‡â ‡" }, { "input": "Gallagher", "output": "â  â ›â â ‡â ‡â â £â »" }, { "input": "Gallegos", "output": "â  â ›â â ‡â ‡â ‘⠛⠕⠎" }, { "input": "Gallic", "output": "â  â ›â â ‡â ‡â Šâ ‰" }, { "input": "Gallo", "output": "â  â ›â â ‡â ‡â •" }, { "input": "Galloway", "output": "â  â ›â â ‡â ‡â ªâ â ½" }, { "input": "Gallup", "output": "â  â ›â â ‡â ‡â ¥â " }, { "input": "Galois", "output": "â  â ›â â ‡â •â Šâ Ž" }, { "input": "Galsworthy", "output": "â  â ›â â ‡â Žâ ºâ •⠗⠹⠽" }, { "input": "Galvani", "output": "â  â ›â â ‡â §â â â Š" }, { "input": "Galveston", "output": "â  â ›â â ‡â §â ‘⠌⠕â " }, { "input": "Gamay", "output": "â  â ›â â â â ½" }, { "input": "Gambia", "output": "â  â ›â â â ƒâ Šâ " }, { "input": "Gamble", "output": "â  â ›â â â ƒâ ‡â ‘" }, { "input": "Gamow", "output": "â  â ›â â â ª" }, { "input": "Gandhi", "output": "⠠⠛⠯⠓⠊" }, { "input": "Gandhian", "output": "⠠⠛⠯⠓⠊â â " }, { "input": "Ganesha", "output": "â  â ›â â â ‘â ©â " }, { "input": "Ganges", "output": "â  â ›â â â ›â ‘â Ž" }, { "input": "Gangtok", "output": "â  â ›â â â ›â žâ •â …" }, { "input": "Gantry", "output": "â  â ›â â â žâ —â ½" }, { "input": "Ganymede", "output": "â  â ›â â â ½â â «â ‘" }, { "input": "Gap", "output": "â  â ›â â " }, { "input": "Garbo", "output": "⠠⠛⠜⠃⠕" }, { "input": "Garcia", "output": "⠠⠛⠜⠉⠊â " }, { "input": "Gardner", "output": "⠠⠛⠜⠙â â »" }, { "input": "Gareth", "output": "⠠⠛⠜⠑⠹" }, { "input": "Garfield", "output": "⠠⠛⠜⠋⠊⠑⠇⠙" }, { "input": "Garfunkel", "output": "⠠⠛⠜⠋⠥â â …â ‘â ‡" }, { "input": "Gargantua", "output": "⠠⠛⠜⠛â â â žâ ¥â " }, { "input": "Garibaldi", "output": "⠠⠛⠜⠊⠃â â ‡â ™â Š" }, { "input": "Garland", "output": "⠠⠛⠜⠇⠯" }, { "input": "Garner", "output": "⠠⠛⠜â â »" }, { "input": "Garrett", "output": "⠠⠛⠜⠗⠑⠞⠞" }, { "input": "Garrick", "output": "⠠⠛⠜⠗⠊⠉⠅" }, { "input": "Garrison", "output": "⠠⠛⠜⠗⠊⠎⠕â " }, { "input": "Garry", "output": "⠠⠛⠜⠗⠽" }, { "input": "Garth", "output": "⠠⠛⠜⠹" }, { "input": "Garvey", "output": "⠠⠛⠜⠧⠑⠽" }, { "input": "Gary", "output": "⠠⠛⠜⠽" }, { "input": "Garza", "output": "⠠⠛⠜⠵â " }, { "input": "Gascony", "output": "â  â ›â â Žâ ‰â •â â ½" }, { "input": "Gasser", "output": "â  â ›â â Žâ Žâ »" }, { "input": "Gates", "output": "â  â ›â â žâ ‘â Ž" }, { "input": "Gatling", "output": "â  â ›â â žâ ‡â ¬" }, { "input": "Gatorade", "output": "â  â ›â â žâ •â —â â ™â ‘" }, { "input": "Gatsby", "output": "â  â ›â â žâ Žâ ƒâ ½" }, { "input": "Gatun", "output": "â  â ›â â žâ ¥â " }, { "input": "Gauguin", "output": "â  â ›â â ¥â ›â ¥â ”" }, { "input": "Gaul", "output": "â  â ›â â ¥â ‡" }, { "input": "Gauls", "output": "â  â ›â â ¥â ‡â Ž" }, { "input": "Gauss", "output": "â  â ›â â ¥â Žâ Ž" }, { "input": "Gaussian", "output": "â  â ›â â ¥â Žâ Žâ Šâ â " }, { "input": "Gautama", "output": "â  â ›â â ¥â žâ â â " }, { "input": "Gautier", "output": "â  â ›â â ¥â žâ Šâ »" }, { "input": "Gavin", "output": "â  â ›â â §â ”" }, { "input": "Gawain", "output": "â  â ›â â ºâ â ”" }, { "input": "Gay", "output": "â  â ›â â ½" }, { "input": "Gayle", "output": "â  â ›â â ½â ‡â ‘" }, { "input": "Gaza", "output": "â  â ›â â µâ " }, { "input": "Gaziantep", "output": "â  â ›â â µâ Šâ â â žâ ‘â " }, { "input": "Gd", "output": "⠰⠠⠛⠙" }, { "input": "Gdansk", "output": "⠠⠛⠙â â â Žâ …" }, { "input": "Ge", "output": "⠠⠛⠑" }, { "input": "Geffen", "output": "⠠⠛⠑⠖⠢" }, { "input": "Gehenna", "output": "⠠⠛⠑⠓⠢â â " }, { "input": "Gehrig", "output": "⠠⠛⠑⠓⠗⠊⠛" }, { "input": "Geiger", "output": "⠠⠛⠑⠊⠛⠻" }, { "input": "Gelbvieh", "output": "⠠⠛⠑⠇⠃⠧⠊⠑⠓" }, { "input": "Geller", "output": "⠠⠛⠑⠇⠇⠻" }, { "input": "Gemini", "output": "⠠⠛⠑â â ”â Š" }, { "input": "Geminis", "output": "⠠⠛⠑â â ”â Šâ Ž" }, { "input": "Gen", "output": "⠠⠛⠢" }, { "input": "Gena", "output": "⠠⠛⠢â " }, { "input": "Genaro", "output": "⠠⠛⠢⠜⠕" }, { "input": "Gene", "output": "⠠⠛⠢⠑" }, { "input": "Genesis", "output": "⠠⠛⠢⠑⠎⠊⠎" }, { "input": "Genet", "output": "⠠⠛⠢⠑⠞" }, { "input": "Geneva", "output": "⠠⠛⠢⠑⠧â " }, { "input": "Genevieve", "output": "⠠⠛⠢⠑⠧⠊⠑⠧⠑" }, { "input": "Genghis", "output": "⠠⠛⠢⠣⠊⠎" }, { "input": "Genoa", "output": "⠠⠛⠢⠕â " }, { "input": "Genoas", "output": "⠠⠛⠢⠕â â Ž" }, { "input": "Gentoo", "output": "⠠⠛⠢⠞⠕⠕" }, { "input": "Gentry", "output": "⠠⠛⠢⠞⠗⠽" }, { "input": "Geo", "output": "⠠⠛⠑⠕" }, { "input": "Geoffrey", "output": "⠠⠛⠑⠷⠋⠗⠑⠽" }, { "input": "George", "output": "⠠⠛⠑⠕⠗⠛⠑" }, { "input": "Georges", "output": "⠠⠛⠑⠕⠗⠛⠑⠎" }, { "input": "Georgetown", "output": "⠠⠛⠑⠕⠗⠛⠑⠞⠪â " }, { "input": "Georgette", "output": "⠠⠛⠑⠕⠗⠛⠑⠞⠞⠑" }, { "input": "Georgia", "output": "⠠⠛⠑⠕⠗⠛⠊â " }, { "input": "Georgian", "output": "⠠⠛⠑⠕⠗⠛⠊â â " }, { "input": "Georgians", "output": "⠠⠛⠑⠕⠗⠛⠊â â â Ž" }, { "input": "Georgina", "output": "⠠⠛⠑⠕⠗⠛⠔â " }, { "input": "Ger", "output": "⠠⠛⠻" }, { "input": "Gerald", "output": "⠠⠛⠻â â ‡â ™" }, { "input": "Geraldine", "output": "⠠⠛⠻â â ‡â ™â ”â ‘" }, { "input": "Gerard", "output": "⠠⠛⠻⠜⠙" }, { "input": "Gerardo", "output": "⠠⠛⠻⠜⠙⠕" }, { "input": "Gerber", "output": "⠠⠛⠻⠃⠻" }, { "input": "Gere", "output": "⠠⠛⠻⠑" }, { "input": "Geritol", "output": "⠠⠛⠻⠊⠞⠕⠇" }, { "input": "German", "output": "⠠⠛⠻â â â " }, { "input": "Germanic", "output": "⠠⠛⠻â â â â Šâ ‰" }, { "input": "Germans", "output": "⠠⠛⠻â â â â Ž" }, { "input": "Germany", "output": "⠠⠛⠻⠸â " }, { "input": "Geronimo", "output": "⠠⠛⠻⠕â â Šâ â •" }, { "input": "Gerry", "output": "⠠⠛⠻⠗⠽" }, { "input": "Gershwin", "output": "⠠⠛⠻⠩⠺⠔" }, { "input": "Gertrude", "output": "⠠⠛⠻⠞⠗⠥⠙⠑" }, { "input": "Gestapo", "output": "⠠⠛⠑⠌â â â •" }, { "input": "Gestapos", "output": "⠠⠛⠑⠌â â â •â Ž" }, { "input": "Gethsemane", "output": "⠠⠛⠑⠹⠎⠑â â â â ‘" }, { "input": "Getty", "output": "⠠⠛⠑⠞⠞⠽" }, { "input": "Gettysburg", "output": "⠠⠛⠑⠞⠞⠽⠎⠃⠥⠗⠛" }, { "input": "Gewürztraminer", "output": "⠠⠛⠑⠺⠠⠘⠻â â ¼â â Œâ ™â —⠵⠞⠗â â â Šâ â ‘â —" }, { "input": "Ghana", "output": "â  â £â â â " }, { "input": "Ghanaian", "output": "â  â £â â â â Šâ â " }, { "input": "Ghanian", "output": "â  â £â â â Šâ â " }, { "input": "Ghanians", "output": "â  â £â â â Šâ â â Ž" }, { "input": "Ghats", "output": "â  â £â â žâ Ž" }, { "input": "Ghazvanid", "output": "â  â £â â µâ §â â â Šâ ™" }, { "input": "Ghent", "output": "⠠⠣⠢⠞" }, { "input": "Ghibelline", "output": "⠠⠣⠊⠃⠑⠇⠇⠔⠑" }, { "input": "Giacometti", "output": "⠠⠛⠊â â ‰â •â â ‘â žâ žâ Š" }, { "input": "Giannini", "output": "⠠⠛⠊â â â â ”â Š" }, { "input": "Giauque", "output": "⠠⠛⠊â â ¥â Ÿâ ¥â ‘" }, { "input": "Gibbon", "output": "⠠⠛⠊⠆⠕â " }, { "input": "Gibbs", "output": "⠠⠛⠊⠆⠎" }, { "input": "Gibraltar", "output": "⠠⠛⠊⠃⠗â â ‡â žâ œ" }, { "input": "Gibraltars", "output": "⠠⠛⠊⠃⠗â â ‡â žâ œâ Ž" }, { "input": "Gibson", "output": "⠠⠛⠊⠃⠎⠕â " }, { "input": "Gide", "output": "⠠⠛⠊⠙⠑" }, { "input": "Gideon", "output": "⠠⠛⠊⠙⠑⠕â " }, { "input": "Gielgud", "output": "⠠⠛⠊⠑⠇⠛⠥⠙" }, { "input": "Gienah", "output": "⠠⠛⠊⠢â â “" }, { "input": "Gil", "output": "⠠⠛⠊⠇" }, { "input": "Gila", "output": "⠠⠛⠊⠇â " }, { "input": "Gilbert", "output": "⠠⠛⠊⠇⠃⠻⠞" }, { "input": "Gilberto", "output": "⠠⠛⠊⠇⠃⠻⠞⠕" }, { "input": "Gilchrist", "output": "⠠⠛⠊⠇⠡⠗⠊⠌" }, { "input": "Gilda", "output": "⠠⠛⠊⠇⠙â " }, { "input": "Gilead", "output": "⠠⠛⠊⠇⠑â â ™" }, { "input": "Giles", "output": "⠠⠛⠊⠇⠑⠎" }, { "input": "Gilgamesh", "output": "⠠⠛⠊⠇⠛â â â ‘â ©" }, { "input": "Gill", "output": "⠠⠛⠊⠇⠇" }, { "input": "Gillespie", "output": "⠠⠛⠊⠇⠇⠑⠎â â Šâ ‘" }, { "input": "Gillette", "output": "⠠⠛⠊⠇⠇⠑⠞⠞⠑" }, { "input": "Gilliam", "output": "⠠⠛⠊⠇⠇⠊â â " }, { "input": "Gillian", "output": "⠠⠛⠊⠇⠇⠊â â " }, { "input": "Gilligan", "output": "⠠⠛⠊⠇⠇⠊⠛â â " }, { "input": "Gilmore", "output": "⠠⠛⠊⠇â â •â —â ‘" }, { "input": "Gina", "output": "⠠⠛⠔â " }, { "input": "Ginger", "output": "⠠⠛⠬⠻" }, { "input": "Gingrich", "output": "⠠⠛⠬⠗⠊⠡" }, { "input": "Ginny", "output": "⠠⠛⠔â â ½" }, { "input": "Gino", "output": "⠠⠛⠔⠕" }, { "input": "Ginsberg", "output": "⠠⠛⠔⠎⠃⠻⠛" }, { "input": "Ginsburg", "output": "⠠⠛⠔⠎⠃⠥⠗⠛" }, { "input": "Ginsu", "output": "⠠⠛⠔⠎⠥" }, { "input": "Giorgione", "output": "⠠⠛⠊⠕⠗⠛⠊⠕â â ‘" }, { "input": "Giotto", "output": "⠠⠛⠊⠕⠞⠞⠕" }, { "input": "Giovanni", "output": "⠠⠛⠊⠕⠧â â â â Š" }, { "input": "Gipsies", "output": "⠠⠛⠊â â Žâ Šâ ‘â Ž" }, { "input": "Gipsy", "output": "⠠⠛⠊â â Žâ ½" }, { "input": "Giraudoux", "output": "⠠⠛⠊⠗â â ¥â ™â ³â ­" }, { "input": "Giselle", "output": "⠠⠛⠊⠎⠑⠇⠇⠑" }, { "input": "Gish", "output": "⠠⠛⠊⠩" }, { "input": "Giuliani", "output": "⠠⠛⠊⠥⠇⠊â â â Š" }, { "input": "Giuseppe", "output": "⠠⠛⠊⠥⠎⠑â â â ‘" }, { "input": "Giza", "output": "⠠⠛⠊⠵â " }, { "input": "Gladstone", "output": "⠠⠛⠇â â ™â Œâ â •" }, { "input": "Gladstones", "output": "⠠⠛⠇â â ™â Œâ â •â Ž" }, { "input": "Gladys", "output": "⠠⠛⠇â â ™â ½â Ž" }, { "input": "Glaser", "output": "⠠⠛⠇â â Žâ »" }, { "input": "Glasgow", "output": "⠠⠛⠇â â Žâ ›â ª" }, { "input": "Glass", "output": "⠠⠛⠇â â Žâ Ž" }, { "input": "Glastonbury", "output": "⠠⠛⠇â â Œâ •â â ƒâ ¥â —â ½" }, { "input": "Glaswegian", "output": "⠠⠛⠇â â Žâ ºâ ‘⠛⠊â â " }, { "input": "Glaxo", "output": "⠠⠛⠇â â ­â •" }, { "input": "Gleason", "output": "⠠⠛⠇⠂⠎⠕â " }, { "input": "Glen", "output": "⠠⠛⠇⠢" }, { "input": "Glenda", "output": "⠠⠛⠇⠢⠙â " }, { "input": "Glendale", "output": "⠠⠛⠇⠢⠙â â ‡â ‘" }, { "input": "Glenlivet", "output": "⠠⠛⠇⠢⠇⠊⠧⠑⠞" }, { "input": "Glenn", "output": "⠠⠛⠇⠢â " }, { "input": "Glenna", "output": "⠠⠛⠇⠢â â " }, { "input": "Gloria", "output": "⠠⠛⠇⠕⠗⠊â " }, { "input": "Gloucester", "output": "⠠⠛⠇⠳⠉⠑⠌⠻" }, { "input": "Glover", "output": "⠠⠛⠇⠕⠧⠻" }, { "input": "Gnostic", "output": "â  â ›â â •⠌⠊⠉" }, { "input": "Gnosticism", "output": "â  â ›â â •⠌⠊⠉⠊⠎â " }, { "input": "Goa", "output": "⠠⠛⠕â " }, { "input": "Gobi", "output": "⠠⠛⠕⠃⠊" }, { "input": "God", "output": "⠠⠛⠕⠙" }, { "input": "Goddard", "output": "⠠⠛⠕⠙⠙⠜⠙" }, { "input": "Godiva", "output": "⠠⠛⠕⠙⠊⠧â " }, { "input": "Godot", "output": "⠠⠛⠕⠙⠕⠞" }, { "input": "Godthaab", "output": "⠠⠛⠕⠙⠹â â â ƒ" }, { "input": "Godunov", "output": "⠠⠛⠕⠙⠥â â •â §" }, { "input": "Godzilla", "output": "⠠⠛⠕⠙⠵⠊⠇⠇â " }, { "input": "Goebbels", "output": "⠠⠛⠕⠑⠆⠑⠇⠎" }, { "input": "Goering", "output": "⠠⠛⠕⠻⠬" }, { "input": "Goethals", "output": "⠠⠛⠕⠑⠹â â ‡â Ž" }, { "input": "Goethe", "output": "⠠⠛⠕⠑⠮" }, { "input": "Goff", "output": "⠠⠛⠷⠋" }, { "input": "Gog", "output": "⠠⠛⠕⠛" }, { "input": "Gogol", "output": "⠠⠛⠕⠛⠕⠇" }, { "input": "Goiania", "output": "⠠⠛⠕⠊â â â Šâ " }, { "input": "Golan", "output": "⠠⠛⠕⠇â â " }, { "input": "Golconda", "output": "⠠⠛⠕⠇⠉⠕â â ™â " }, { "input": "Golda", "output": "⠠⠛⠕⠇⠙â " }, { "input": "Goldberg", "output": "⠠⠛⠕⠇⠙⠃⠻⠛" }, { "input": "Golden", "output": "⠠⠛⠕⠇⠙⠢" }, { "input": "Goldie", "output": "⠠⠛⠕⠇⠙⠊⠑" }, { "input": "Goldilocks", "output": "⠠⠛⠕⠇⠙⠊⠇⠕⠉⠅⠎" }, { "input": "Golding", "output": "⠠⠛⠕⠇⠙⠬" }, { "input": "Goldman", "output": "⠠⠛⠕⠇⠙â â â " }, { "input": "Goldsmith", "output": "⠠⠛⠕⠇⠙⠎â â Šâ ¹" }, { "input": "Goldwater", "output": "⠠⠛⠕⠇⠙⠺â â žâ »" }, { "input": "Goldwyn", "output": "⠠⠛⠕⠇⠙⠺⠽â " }, { "input": "Golgi", "output": "⠠⠛⠕⠇⠛⠊" }, { "input": "Golgotha", "output": "⠠⠛⠕⠇⠛⠕⠹â " }, { "input": "Goliath", "output": "⠠⠛⠕⠇⠊â â ¹" }, { "input": "Gomez", "output": "⠠⠛⠕â â ‘â µ" }, { "input": "Gomorrah", "output": "⠠⠛⠕â â •â —â —â â “" }, { "input": "Gompers", "output": "⠠⠛⠕â â â »â Ž" }, { "input": "Gomulka", "output": "⠠⠛⠕â â ¥â ‡â …â " }, { "input": "Gondwanaland", "output": "⠠⠛⠕â â ™â ºâ â â â ‡â ¯" }, { "input": "Gonzales", "output": "⠠⠛⠕â â µâ â ‡â ‘â Ž" }, { "input": "Gonzalez", "output": "⠠⠛⠕â â µâ â ‡â ‘â µ" }, { "input": "Gonzalo", "output": "⠠⠛⠕â â µâ â ‡â •" }, { "input": "Good", "output": "⠠⠛⠙" }, { "input": "Goodall", "output": "⠠⠛⠕⠕⠙â â ‡â ‡" }, { "input": "Goodman", "output": "⠠⠛⠙â â â " }, { "input": "Goodrich", "output": "⠠⠛⠙⠗⠊⠡" }, { "input": "Goodwill", "output": "⠠⠛⠙⠺⠊⠇⠇" }, { "input": "Goodwin", "output": "⠠⠛⠙⠺⠔" }, { "input": "Goodyear", "output": "⠠⠛⠙⠽⠑⠜" }, { "input": "Google", "output": "⠠⠛⠕⠕⠛⠇⠑" }, { "input": "Goolagong", "output": "⠠⠛⠕⠕⠇â â ›â °â ›" }, { "input": "Gopher", "output": "⠠⠛⠕â â “â »" }, { "input": "Gorbachev", "output": "⠠⠛⠕⠗⠃â â ¡â ‘â §" }, { "input": "Gordian", "output": "⠠⠛⠕⠗⠙⠊â â " }, { "input": "Gordimer", "output": "⠠⠛⠕⠗⠙⠊â â »" }, { "input": "Gordon", "output": "⠠⠛⠕⠗⠙⠕â " }, { "input": "Gore", "output": "⠠⠛⠕⠗⠑" }, { "input": "Goren", "output": "⠠⠛⠕⠗⠢" }, { "input": "Gorey", "output": "⠠⠛⠕⠗⠑⠽" }, { "input": "Gorgas", "output": "⠠⠛⠕⠗⠛â â Ž" }, { "input": "Gorgonzola", "output": "⠠⠛⠕⠗⠛⠕â â µâ •â ‡â " }, { "input": "Gorky", "output": "⠠⠛⠕⠗⠅⠽" }, { "input": "Gospel", "output": "⠠⠛⠕⠎â â ‘â ‡" }, { "input": "Gospels", "output": "⠠⠛⠕⠎â â ‘⠇⠎" }, { "input": "Goth", "output": "⠠⠛⠕⠹" }, { "input": "Gotham", "output": "⠠⠛⠕⠹â â " }, { "input": "Gothic", "output": "⠠⠛⠕⠹⠊⠉" }, { "input": "Gothics", "output": "⠠⠛⠕⠹⠊⠉⠎" }, { "input": "Goths", "output": "⠠⠛⠕⠹⠎" }, { "input": "Gouda", "output": "⠠⠛⠳⠙â " }, { "input": "Goudas", "output": "⠠⠛⠳⠙â â Ž" }, { "input": "Gould", "output": "⠠⠛⠳⠇⠙" }, { "input": "Gounod", "output": "⠠⠛⠳â â •â ™" }, { "input": "Goya", "output": "⠠⠛⠕⠽â " }, { "input": "Grable", "output": "⠠⠛⠗â â ƒâ ‡â ‘" }, { "input": "Gracchus", "output": "⠠⠛⠗â â ‰â ¡â ¥â Ž" }, { "input": "Grace", "output": "⠠⠛⠗â â ‰â ‘" }, { "input": "Graceland", "output": "⠠⠛⠗â â ‰â ‘⠇⠯" }, { "input": "Gracie", "output": "⠠⠛⠗â â ‰â Šâ ‘" }, { "input": "Graciela", "output": "⠠⠛⠗â â ‰â Šâ ‘â ‡â " }, { "input": "Grady", "output": "⠠⠛⠗â â ™â ½" }, { "input": "Graffias", "output": "⠠⠛⠗â â –â Šâ â Ž" }, { "input": "Grafton", "output": "⠠⠛⠗â â ‹â žâ •â " }, { "input": "Graham", "output": "⠠⠛⠗â â “â â " }, { "input": "Grahame", "output": "⠠⠛⠗â â “â â â ‘" }, { "input": "Grail", "output": "⠠⠛⠗â â Šâ ‡" }, { "input": "Grammy", "output": "⠠⠛⠗â â â â ½" }, { "input": "Grampians", "output": "⠠⠛⠗â â â â Šâ â â Ž" }, { "input": "Granada", "output": "⠠⠛⠗â â â â ™â " }, { "input": "Grant", "output": "⠠⠛⠗â â â ž" }, { "input": "Grass", "output": "⠠⠛⠗â â Žâ Ž" }, { "input": "Graves", "output": "⠠⠛⠗â â §â ‘â Ž" }, { "input": "Gray", "output": "⠠⠛⠗â â ½" }, { "input": "Grecian", "output": "⠠⠛⠗⠑⠉⠊â â " }, { "input": "Greece", "output": "⠠⠛⠗⠑⠑⠉⠑" }, { "input": "Greek", "output": "⠠⠛⠗⠑⠑⠅" }, { "input": "Greeks", "output": "⠠⠛⠗⠑⠑⠅⠎" }, { "input": "Greeley", "output": "⠠⠛⠗⠑⠑⠇⠑⠽" }, { "input": "Green", "output": "⠠⠛⠗⠑⠢" }, { "input": "Greene", "output": "⠠⠛⠗⠑⠢⠑" }, { "input": "Greenland", "output": "⠠⠛⠗⠑⠢⠇⠯" }, { "input": "Greenpeace", "output": "⠠⠛⠗⠑⠢â â ‚⠉⠑" }, { "input": "Greensboro", "output": "⠠⠛⠗⠑⠢⠎⠃⠕⠗⠕" }, { "input": "Greensleeves", "output": "⠠⠛⠗⠑⠢⠎⠇⠑⠑⠧⠑⠎" }, { "input": "Greenspan", "output": "⠠⠛⠗⠑⠢⠎â â â " }, { "input": "Greenwich", "output": "⠠⠛⠗⠑⠢⠺⠊⠡" }, { "input": "Greer", "output": "⠠⠛⠗⠑⠻" }, { "input": "Greg", "output": "⠠⠛⠗⠑⠛" }, { "input": "Gregg", "output": "⠠⠛⠗⠑⠛⠛" }, { "input": "Gregorian", "output": "⠠⠛⠗⠑⠛⠕⠗⠊â â " }, { "input": "Gregorio", "output": "⠠⠛⠗⠑⠛⠕⠗⠊⠕" }, { "input": "Gregory", "output": "⠠⠛⠗⠑⠛⠕⠗⠽" }, { "input": "Grenada", "output": "⠠⠛⠗⠢â â ™â " }, { "input": "Grenadines", "output": "⠠⠛⠗⠢â â ™â ”â ‘â Ž" }, { "input": "Grendel", "output": "⠠⠛⠗⠢⠙⠑⠇" }, { "input": "Grenoble", "output": "⠠⠛⠗⠢⠕⠃⠇⠑" }, { "input": "Gresham", "output": "⠠⠛⠗⠑⠩â â " }, { "input": "Greta", "output": "⠠⠛⠗⠑⠞â " }, { "input": "Gretchen", "output": "⠠⠛⠗⠑⠞⠡⠢" }, { "input": "Gretel", "output": "⠠⠛⠗⠑⠞⠑⠇" }, { "input": "Gretzky", "output": "⠠⠛⠗⠑⠞⠵⠅⠽" }, { "input": "Grey", "output": "⠠⠛⠗⠑⠽" }, { "input": "Grieg", "output": "⠠⠛⠗⠊⠑⠛" }, { "input": "Griffin", "output": "⠠⠛⠗⠊⠖⠔" }, { "input": "Griffith", "output": "⠠⠛⠗⠊⠖⠊⠹" }, { "input": "Grimes", "output": "⠠⠛⠗⠊â â ‘â Ž" }, { "input": "Grimm", "output": "⠠⠛⠗⠊â â " }, { "input": "Grinch", "output": "⠠⠛⠗⠔⠡" }, { "input": "Gris", "output": "⠠⠛⠗⠊⠎" }, { "input": "Gromyko", "output": "⠠⠛⠗⠕â â ½â …â •" }, { "input": "Gropius", "output": "⠠⠛⠗⠕â â Šâ ¥â Ž" }, { "input": "Gross", "output": "⠠⠛⠗⠕⠎⠎" }, { "input": "Grosz", "output": "⠠⠛⠗⠕⠎⠵" }, { "input": "Grotius", "output": "⠠⠛⠗⠕⠞⠊⠥⠎" }, { "input": "Grover", "output": "⠠⠛⠗⠕⠧⠻" }, { "input": "Grumman", "output": "⠠⠛⠗⠥â â â â " }, { "input": "Grundy", "output": "⠠⠛⠗⠥â â ™â ½" }, { "input": "Grus", "output": "⠠⠛⠗⠥⠎" }, { "input": "Gruyeres", "output": "⠠⠛⠗⠥⠽⠻⠑⠎" }, { "input": "Gruyère", "output": "⠠⠛⠗⠥⠽⠠⠘⠻â â ¡â â £â —â ‘" }, { "input": "Grünewald", "output": "⠠⠛⠗⠠⠘⠻â â ¼â â Œâ ™â â ‘â ºâ â ‡â ™" }, { "input": "Guadalajara", "output": "⠠⠛⠥â â ™â â ‡â â šâ œâ " }, { "input": "Guadalcanal", "output": "⠠⠛⠥â â ™â â ‡â ‰â â â â ‡" }, { "input": "Guadalquivir", "output": "⠠⠛⠥â â ™â â ‡â Ÿâ ¥â Šâ §â Šâ —" }, { "input": "Guadalupe", "output": "⠠⠛⠥â â ™â â ‡â ¥â â ‘" }, { "input": "Guadeloupe", "output": "⠠⠛⠥â â ™â ‘⠇⠳â â ‘" }, { "input": "Guallatiri", "output": "⠠⠛⠥â â ‡â ‡â â žâ Šâ —â Š" }, { "input": "Guam", "output": "⠠⠛⠥â â " }, { "input": "Guangzhou", "output": "⠠⠛⠥â â â ›â µâ “â ³" }, { "input": "Guantanamo", "output": "⠠⠛⠥â â â žâ â â â â •" }, { "input": "Guarani", "output": "⠠⠛⠥⠜â â â Š" }, { "input": "Guarnieri", "output": "⠠⠛⠥⠜â â Šâ »â Š" }, { "input": "Guatemala", "output": "⠠⠛⠥â â žâ ‘â â â ‡â " }, { "input": "Guatemalan", "output": "⠠⠛⠥â â žâ ‘â â â ‡â â " }, { "input": "Guatemalans", "output": "⠠⠛⠥â â žâ ‘â â â ‡â â â Ž" }, { "input": "Guayaquil", "output": "⠠⠛⠥â â ½â â Ÿâ ¥â Šâ ‡" }, { "input": "Gucci", "output": "⠠⠛⠥⠒⠊" }, { "input": "Guelph", "output": "⠠⠛⠥⠑⠇â â “" }, { "input": "Guernsey", "output": "⠠⠛⠥⠻â â Žâ ‘â ½" }, { "input": "Guernseys", "output": "⠠⠛⠥⠻â â Žâ ‘⠽⠎" }, { "input": "Guerra", "output": "⠠⠛⠥⠻⠗â " }, { "input": "Guerrero", "output": "⠠⠛⠥⠻⠗⠻⠕" }, { "input": "Guevara", "output": "⠠⠛⠥⠑⠧⠜â " }, { "input": "Guggenheim", "output": "⠠⠛⠥⠶⠢⠓⠑⠊â " }, { "input": "Guiana", "output": "⠠⠛⠥⠊â â â " }, { "input": "Guillermo", "output": "⠠⠛⠥⠊⠇⠇⠻â â •" }, { "input": "Guinea", "output": "⠠⠛⠥⠔⠑â " }, { "input": "Guinean", "output": "⠠⠛⠥⠔⠂â " }, { "input": "Guineans", "output": "⠠⠛⠥⠔⠂â â Ž" }, { "input": "Guinevere", "output": "⠠⠛⠥⠔⠑⠧⠻⠑" }, { "input": "Guinness", "output": "⠠⠛⠥⠔⠰⠎" }, { "input": "Guiyang", "output": "⠠⠛⠥⠊⠽â â â ›" }, { "input": "Guizot", "output": "⠠⠛⠥⠊⠵⠕⠞" }, { "input": "Gujarat", "output": "⠠⠛⠥⠚⠜â â ž" }, { "input": "Gujarati", "output": "⠠⠛⠥⠚⠜â â žâ Š" }, { "input": "Gujranwala", "output": "⠠⠛⠥⠚⠗â â â ºâ â ‡â " }, { "input": "Gullah", "output": "⠠⠛⠥⠇⠇â â “" }, { "input": "Gulliver", "output": "⠠⠛⠥⠇⠇⠊⠧⠻" }, { "input": "Gumbel", "output": "⠠⠛⠥â â ƒâ ‘â ‡" }, { "input": "Gunther", "output": "⠠⠛⠥â â ®â —" }, { "input": "Guofeng", "output": "⠠⠛⠥⠷⠢⠛" }, { "input": "Gupta", "output": "⠠⠛⠥â â žâ " }, { "input": "Gurkha", "output": "⠠⠛⠥⠗⠅⠓â " }, { "input": "Gus", "output": "⠠⠛⠥⠎" }, { "input": "Gustav", "output": "⠠⠛⠥⠌â â §" }, { "input": "Gustavo", "output": "⠠⠛⠥⠌â â §â •" }, { "input": "Gustavus", "output": "⠠⠛⠥⠌â â §â ¥â Ž" }, { "input": "Gutenberg", "output": "⠠⠛⠥⠞⠢⠃⠻⠛" }, { "input": "Guthrie", "output": "⠠⠛⠥⠹⠗⠊⠑" }, { "input": "Gutierrez", "output": "⠠⠛⠥⠞⠊⠻⠗⠑⠵" }, { "input": "Guy", "output": "⠠⠛⠥⠽" }, { "input": "Guyana", "output": "⠠⠛⠥⠽â â â " }, { "input": "Guyanese", "output": "⠠⠛⠥⠽â â â ‘â Žâ ‘" }, { "input": "Guzman", "output": "⠠⠛⠥⠵â â â " }, { "input": "Gwalior", "output": "⠠⠛⠺â â ‡â Šâ •â —" }, { "input": "Gwen", "output": "⠠⠛⠺⠢" }, { "input": "Gwendoline", "output": "⠠⠛⠺⠢⠙⠕⠇⠔⠑" }, { "input": "Gwendolyn", "output": "⠠⠛⠺⠢⠙⠕⠇⠽â " }, { "input": "Gwyn", "output": "⠠⠛⠺⠽â " }, { "input": "Gypsies", "output": "⠠⠛⠽â â Žâ Šâ ‘â Ž" }, { "input": "Gypsy", "output": "⠠⠛⠽â â Žâ ½" }, { "input": "Gödel", "output": "⠠⠠⠛⠘⠻â â ˜â â ™â ‘â ‡" }, { "input": "Göteborg", "output": "⠠⠠⠛⠘⠻â â ˜â â žâ ‘⠃⠕⠗⠛" }, { "input": "H", "output": "â °â  â “" }, { "input": "HSBC", "output": "⠠⠠⠓⠎⠃⠉" }, { "input": "Haas", "output": "â  â “â â â Ž" }, { "input": "Habakkuk", "output": "â  â “â â ƒâ â …⠅⠥⠅" }, { "input": "Haber", "output": "â  â “â â ƒâ »" }, { "input": "Hadar", "output": "⠠⠸⠓⠜" }, { "input": "Hades", "output": "â  â “â â ™â ‘â Ž" }, { "input": "Hadrian", "output": "â  â “â â ™â —â Šâ â " }, { "input": "Hafiz", "output": "â  â “â â ‹â Šâ µ" }, { "input": "Hagar", "output": "â  â “â â ›â œ" }, { "input": "Haggai", "output": "â  â “â â ¶â â Š" }, { "input": "Hagiographa", "output": "â  â “â â ›â Šâ •⠛⠗â â â “â " }, { "input": "Hague", "output": "â  â “â â ›â ¥â ‘" }, { "input": "Hahn", "output": "â  â “â â “â " }, { "input": "Haifa", "output": "â  â “â â Šâ ‹â " }, { "input": "Haiphong", "output": "â  â “â â Šâ â “â °â ›" }, { "input": "Haiti", "output": "â  â “â â Šâ žâ Š" }, { "input": "Haitian", "output": "â  â “â â Šâ žâ Šâ â " }, { "input": "Haitians", "output": "â  â “â â Šâ žâ Šâ â â Ž" }, { "input": "Hakka", "output": "â  â “â â …â …â " }, { "input": "Hakluyt", "output": "â  â “â â …⠇⠥⠽⠞" }, { "input": "Hal", "output": "â  â “â â ‡" }, { "input": "Haldane", "output": "â  â “â â ‡â ™â â â ‘" }, { "input": "Hale", "output": "â  â “â â ‡â ‘" }, { "input": "Haleakala", "output": "â  â “â â ‡â ‚â …â â ‡â " }, { "input": "Haley", "output": "â  â “â â ‡â ‘â ½" }, { "input": "Halifax", "output": "â  â “â â ‡â Šâ ‹â â ­" }, { "input": "Hall", "output": "â  â “â â ‡â ‡" }, { "input": "Halley", "output": "â  â “â â ‡â ‡â ‘â ½" }, { "input": "Halliburton", "output": "â  â “â â ‡â ‡â Šâ ƒâ ¥â —â žâ •â " }, { "input": "Hallie", "output": "â  â “â â ‡â ‡â Šâ ‘" }, { "input": "Hallmark", "output": "â  â “â â ‡â ‡â â œâ …" }, { "input": "Halloween", "output": "â  â “â â ‡â ‡â ªâ ‘â ¢" }, { "input": "Halloweens", "output": "â  â “â â ‡â ‡â ªâ ‘⠢⠎" }, { "input": "Hallstatt", "output": "â  â “â â ‡â ‡â Œâ â žâ ž" }, { "input": "Halon", "output": "â  â “â â ‡â •â " }, { "input": "Hals", "output": "â  â “â â ‡â Ž" }, { "input": "Halsey", "output": "â  â “â â ‡â Žâ ‘â ½" }, { "input": "Ham", "output": "â  â “â â " }, { "input": "Haman", "output": "â  â “â â â â " }, { "input": "Hamburg", "output": "â  â “â â â ƒâ ¥â —â ›" }, { "input": "Hamburgs", "output": "â  â “â â â ƒâ ¥â —⠛⠎" }, { "input": "Hamhung", "output": "â  â “â â â “â ¥â â ›" }, { "input": "Hamilcar", "output": "â  â “â â â Šâ ‡â ‰â œ" }, { "input": "Hamill", "output": "â  â “â â â Šâ ‡â ‡" }, { "input": "Hamilton", "output": "â  â “â â â Šâ ‡â žâ •â " }, { "input": "Hamiltonian", "output": "â  â “â â â Šâ ‡â žâ •â â Šâ â " }, { "input": "Hamitic", "output": "â  â “â â â Šâ žâ Šâ ‰" }, { "input": "Hamlet", "output": "â  â “â â â ‡â ‘â ž" }, { "input": "Hamlin", "output": "â  â “â â â ‡â ”" }, { "input": "Hammarskjold", "output": "â  â “â â â â œâ Žâ …⠚⠕⠇⠙" }, { "input": "Hammerstein", "output": "â  â “â â â â »â Œâ ‘â ”" }, { "input": "Hammett", "output": "â  â “â â â â ‘â žâ ž" }, { "input": "Hammond", "output": "â  â “â â â â •â â ™" }, { "input": "Hammurabi", "output": "â  â “â â â â ¥â —â â ƒâ Š" }, { "input": "Hampshire", "output": "â  â “â â â â ©â Šâ —â ‘" }, { "input": "Hampton", "output": "â  â “â â â â žâ •â " }, { "input": "Hamsun", "output": "â  â “â â â Žâ ¥â " }, { "input": "Han", "output": "â  â “â â " }, { "input": "Hancock", "output": "â  â “â â â ‰â •⠉⠅" }, { "input": "Handel", "output": "⠠⠓⠯⠑⠇" }, { "input": "Handy", "output": "⠠⠓⠯⠽" }, { "input": "Haney", "output": "â  â “â â â ‘â ½" }, { "input": "Hangul", "output": "â  â “â â â ›â ¥â ‡" }, { "input": "Hangzhou", "output": "â  â “â â â ›â µâ “â ³" }, { "input": "Hank", "output": "â  â “â â â …" }, { "input": "Hanna", "output": "â  â “â â â â " }, { "input": "Hannah", "output": "â  â “â â â â â “" }, { "input": "Hannibal", "output": "â  â “â â â â Šâ ƒâ â ‡" }, { "input": "Hanoi", "output": "â  â “â â â •â Š" }, { "input": "Hanover", "output": "â  â “â â â •â §â »" }, { "input": "Hanoverian", "output": "â  â “â â â •⠧⠻⠊â â " }, { "input": "Hans", "output": "â  â “â â â Ž" }, { "input": "Hansel", "output": "â  â “â â â Žâ ‘â ‡" }, { "input": "Hansen", "output": "â  â “â â â Žâ ¢" }, { "input": "Hanson", "output": "â  â “â â â Žâ •â " }, { "input": "Hanukkah", "output": "â  â “â â â ¥â …â …â â “" }, { "input": "Hanukkahs", "output": "â  â “â â â ¥â …â …â â “â Ž" }, { "input": "Hapsburg", "output": "â  â “â â â Žâ ƒâ ¥â —â ›" }, { "input": "Harare", "output": "⠠⠓⠜⠜⠑" }, { "input": "Harbin", "output": "⠠⠓⠜⠃⠔" }, { "input": "Hardin", "output": "⠠⠓⠜⠙⠔" }, { "input": "Harding", "output": "⠠⠓⠜⠙⠬" }, { "input": "Hardy", "output": "⠠⠓⠜⠙⠽" }, { "input": "Hargreaves", "output": "⠠⠓⠜⠛⠗⠂⠧⠑⠎" }, { "input": "Harlan", "output": "⠠⠓⠜⠇â â " }, { "input": "Harlem", "output": "⠠⠓⠜⠇⠑â " }, { "input": "Harlequin", "output": "⠠⠓⠜⠇⠑⠟⠥⠔" }, { "input": "Harley", "output": "⠠⠓⠜⠇⠑⠽" }, { "input": "Harlow", "output": "⠠⠓⠜⠇⠪" }, { "input": "Harmon", "output": "â  â “â œâ â •â " }, { "input": "Harold", "output": "⠠⠓⠜⠕⠇⠙" }, { "input": "Harper", "output": "â  â “â œâ â »" }, { "input": "Harrell", "output": "⠠⠓⠜⠗⠑⠇⠇" }, { "input": "Harriet", "output": "⠠⠓⠜⠗⠊⠑⠞" }, { "input": "Harriett", "output": "⠠⠓⠜⠗⠊⠑⠞⠞" }, { "input": "Harrington", "output": "⠠⠓⠜⠗⠬⠞⠕â " }, { "input": "Harris", "output": "⠠⠓⠜⠗⠊⠎" }, { "input": "Harrisburg", "output": "⠠⠓⠜⠗⠊⠎⠃⠥⠗⠛" }, { "input": "Harrison", "output": "⠠⠓⠜⠗⠊⠎⠕â " }, { "input": "Harrods", "output": "⠠⠓⠜⠗⠕⠙⠎" }, { "input": "Harry", "output": "⠠⠓⠜⠗⠽" }, { "input": "Hart", "output": "⠠⠓⠜⠞" }, { "input": "Harte", "output": "⠠⠓⠜⠞⠑" }, { "input": "Hartford", "output": "⠠⠓⠜⠞⠿⠙" }, { "input": "Hartline", "output": "⠠⠓⠜⠞⠇⠔⠑" }, { "input": "Hartman", "output": "⠠⠓⠜⠞â â â " }, { "input": "Harvard", "output": "⠠⠓⠜⠧⠜⠙" }, { "input": "Harvey", "output": "⠠⠓⠜⠧⠑⠽" }, { "input": "Hasbro", "output": "â  â “â â Žâ ƒâ —â •" }, { "input": "Hasidim", "output": "â  â “â â Žâ Šâ ™â Šâ " }, { "input": "Hastings", "output": "â  â “â â Œâ ¬â Ž" }, { "input": "Hatfield", "output": "â  â “â â žâ ‹â Šâ ‘⠇⠙" }, { "input": "Hathaway", "output": "â  â “â â ¹â â ºâ â ½" }, { "input": "Hatsheput", "output": "â  â “â â žâ ©â ‘â â ¥â ž" }, { "input": "Hatteras", "output": "â  â “â â žâ žâ »â â Ž" }, { "input": "Hattie", "output": "â  â “â â žâ žâ Šâ ‘" }, { "input": "Hauptmann", "output": "â  â “â â ¥â â žâ â â â " }, { "input": "Hausa", "output": "â  â “â â ¥â Žâ " }, { "input": "Hausdorff", "output": "â  â “â â ¥â Žâ ™â •â —â ‹â ‹" }, { "input": "Havana", "output": "â  â “â â §â â â " }, { "input": "Havanas", "output": "â  â “â â §â â â â Ž" }, { "input": "Havarti", "output": "â  â “â â §â œâ žâ Š" }, { "input": "Havel", "output": "â  â “â â §â ‘â ‡" }, { "input": "Havoline", "output": "â  â “â â §â •⠇⠔⠑" }, { "input": "Hawaii", "output": "â  â “â â ºâ â Šâ Š" }, { "input": "Hawaiian", "output": "â  â “â â ºâ â Šâ Šâ â " }, { "input": "Hawaiians", "output": "â  â “â â ºâ â Šâ Šâ â â Ž" }, { "input": "Hawking", "output": "â  â “â â ºâ …â ¬" }, { "input": "Hawkins", "output": "â  â “â â ºâ …⠔⠎" }, { "input": "Hawthorne", "output": "â  â “â â ºâ ¹â •â —â â ‘" }, { "input": "Hay", "output": "â  â “â â ½" }, { "input": "Hayden", "output": "â  â “â â ½â ™â ¢" }, { "input": "Haydn", "output": "â  â “â â ½â ™â " }, { "input": "Hayes", "output": "â  â “â â ½â ‘â Ž" }, { "input": "Haynes", "output": "â  â “â â ½â â ‘â Ž" }, { "input": "Hays", "output": "â  â “â â ½â Ž" }, { "input": "Haywood", "output": "â  â “â â ½â ºâ •â •â ™" }, { "input": "Hayworth", "output": "â  â “â â ½â ºâ •â —â ¹" }, { "input": "Hazel", "output": "â  â “â â µâ ‘â ‡" }, { "input": "Hazlitt", "output": "â  â “â â µâ ‡â Šâ žâ ž" }, { "input": "He", "output": "â  â “â ‘" }, { "input": "Head", "output": "â  â “â ‚â ™" }, { "input": "Hearst", "output": "⠠⠓⠑⠜⠌" }, { "input": "Heath", "output": "â  â “â ‚â ¹" }, { "input": "Heather", "output": "⠠⠓⠂⠮⠗" }, { "input": "Heaviside", "output": "⠠⠓⠂⠧⠊⠎⠊⠙⠑" }, { "input": "Hebe", "output": "⠠⠓⠑⠃⠑" }, { "input": "Hebert", "output": "⠠⠓⠑⠃⠻⠞" }, { "input": "Hebraic", "output": "⠠⠓⠑⠃⠗â â Šâ ‰" }, { "input": "Hebrew", "output": "⠠⠓⠑⠃⠗⠑⠺" }, { "input": "Hebrews", "output": "⠠⠓⠑⠃⠗⠑⠺⠎" }, { "input": "Hebrides", "output": "⠠⠓⠑⠃⠗⠊⠙⠑⠎" }, { "input": "Hecate", "output": "â  â “â ‘â ‰â â žâ ‘" }, { "input": "Hector", "output": "⠠⠓⠑⠉⠞⠕⠗" }, { "input": "Hecuba", "output": "⠠⠓⠑⠉⠥⠃â " }, { "input": "Heep", "output": "â  â “â ‘â ‘â " }, { "input": "Hefner", "output": "â  â “â ‘â ‹â â »" }, { "input": "Hegel", "output": "⠠⠓⠑⠛⠑⠇" }, { "input": "Hegelian", "output": "⠠⠓⠑⠛⠑⠇⠊â â " }, { "input": "Hegira", "output": "⠠⠓⠑⠛⠊⠗â " }, { "input": "Heidegger", "output": "⠠⠓⠑⠊⠙⠑⠶⠻" }, { "input": "Heidelberg", "output": "⠠⠓⠑⠊⠙⠑⠇⠃⠻⠛" }, { "input": "Heidi", "output": "⠠⠓⠑⠊⠙⠊" }, { "input": "Heifetz", "output": "â  â “â ‘â Šâ ‹â ‘â žâ µ" }, { "input": "Heimlich", "output": "â  â “â ‘â Šâ â ‡â Šâ ¡" }, { "input": "Heine", "output": "⠠⠓⠑⠔⠑" }, { "input": "Heineken", "output": "⠠⠓⠑⠔⠑⠅⠢" }, { "input": "Heinlein", "output": "⠠⠓⠑⠔⠇⠑⠔" }, { "input": "Heinrich", "output": "⠠⠓⠑⠔⠗⠊⠡" }, { "input": "Heinz", "output": "⠠⠓⠑⠔⠵" }, { "input": "Heisenberg", "output": "⠠⠓⠑⠊⠎⠢⠃⠻⠛" }, { "input": "Heisman", "output": "â  â “â ‘â Šâ Žâ â â " }, { "input": "Helen", "output": "⠠⠓⠑⠇⠢" }, { "input": "Helena", "output": "⠠⠓⠑⠇⠢â " }, { "input": "Helene", "output": "⠠⠓⠑⠇⠢⠑" }, { "input": "Helga", "output": "⠠⠓⠑⠇⠛â " }, { "input": "Helicon", "output": "⠠⠓⠑⠇⠊⠉⠕â " }, { "input": "Heliopolis", "output": "⠠⠓⠑⠇⠊⠕â â •⠇⠊⠎" }, { "input": "Helios", "output": "⠠⠓⠑⠇⠊⠕⠎" }, { "input": "Hell", "output": "⠠⠓⠑⠇⠇" }, { "input": "Hellenic", "output": "⠠⠓⠑⠇⠇⠢⠊⠉" }, { "input": "Hellenism", "output": "⠠⠓⠑⠇⠇⠢⠊⠎â " }, { "input": "Hellenisms", "output": "⠠⠓⠑⠇⠇⠢⠊⠎â â Ž" }, { "input": "Hellenistic", "output": "⠠⠓⠑⠇⠇⠢⠊⠌⠊⠉" }, { "input": "Hellenization", "output": "⠠⠓⠑⠇⠇⠢⠊⠵â â °â " }, { "input": "Hellenize", "output": "⠠⠓⠑⠇⠇⠢⠊⠵⠑" }, { "input": "Heller", "output": "⠠⠓⠑⠇⠇⠻" }, { "input": "Hellespont", "output": "⠠⠓⠑⠇⠇⠑⠎â â •â â ž" }, { "input": "Hellman", "output": "⠠⠓⠑⠇⠇â â â " }, { "input": "Hells", "output": "⠠⠓⠑⠇⠇⠎" }, { "input": "Helmholtz", "output": "â  â “â ‘â ‡â â “⠕⠇⠞⠵" }, { "input": "Helsinki", "output": "⠠⠓⠑⠇⠎⠔⠅⠊" }, { "input": "Helvetius", "output": "⠠⠓⠑⠇⠧⠑⠞⠊⠥⠎" }, { "input": "Hemingway", "output": "â  â “â ‘â â ¬â ºâ â ½" }, { "input": "Hench", "output": "⠠⠓⠢⠡" }, { "input": "Henderson", "output": "⠠⠓⠢⠙⠻⠎⠕â " }, { "input": "Hendricks", "output": "⠠⠓⠢⠙⠗⠊⠉⠅⠎" }, { "input": "Hendrix", "output": "⠠⠓⠢⠙⠗⠊⠭" }, { "input": "Henley", "output": "⠠⠓⠢⠇⠑⠽" }, { "input": "Hennessy", "output": "⠠⠓⠢⠰⠎⠽" }, { "input": "Henri", "output": "⠠⠓⠢⠗⠊" }, { "input": "Henrietta", "output": "⠠⠓⠢⠗⠊⠑⠞⠞â " }, { "input": "Henry", "output": "⠠⠓⠢⠗⠽" }, { "input": "Hensley", "output": "⠠⠓⠢⠎⠇⠑⠽" }, { "input": "Henson", "output": "⠠⠓⠢⠎⠕â " }, { "input": "Hepburn", "output": "â  â “â ‘â â ƒâ ¥â —â " }, { "input": "Hephaestus", "output": "â  â “â ‘â â “â â ‘⠌⠥⠎" }, { "input": "Hepplewhite", "output": "â  â “â ‘â â â ‡â ‘⠱⠊⠞⠑" }, { "input": "Hera", "output": "â  â “â »â " }, { "input": "Heraclitus", "output": "â  â “â »â â ‰â ‡â Šâ žâ ¥â Ž" }, { "input": "Herbart", "output": "⠠⠓⠻⠃⠜⠞" }, { "input": "Herbert", "output": "⠠⠓⠻⠃⠻⠞" }, { "input": "Herculaneum", "output": "⠠⠓⠻⠉⠥⠇â â â ‘â ¥â " }, { "input": "Hercules", "output": "⠠⠓⠻⠉⠥⠇⠑⠎" }, { "input": "Herder", "output": "⠠⠓⠻⠙⠻" }, { "input": "Hereford", "output": "⠠⠓⠻⠑⠿⠙" }, { "input": "Herero", "output": "⠠⠓⠻⠻⠕" }, { "input": "Heriberto", "output": "⠠⠓⠻⠊⠃⠻⠞⠕" }, { "input": "Herman", "output": "â  â “â »â â â " }, { "input": "Hermaphroditus", "output": "â  â “â »â â â â “⠗⠕⠙⠊⠞⠥⠎" }, { "input": "Hermes", "output": "â  â “â »â â ‘â Ž" }, { "input": "Herminia", "output": "â  â “â »â â ”â Šâ " }, { "input": "Hermitage", "output": "â  â “â »â â Šâ žâ â ›â ‘" }, { "input": "Hermite", "output": "â  â “â »â â Šâ žâ ‘" }, { "input": "Hermosillo", "output": "â  â “â »â â •⠎⠊⠇⠇⠕" }, { "input": "Hernandez", "output": "â  â “â »â â ¯â ‘â µ" }, { "input": "Herod", "output": "⠠⠓⠻⠕⠙" }, { "input": "Herodotus", "output": "⠠⠓⠻⠕⠙⠕⠞⠥⠎" }, { "input": "Herrera", "output": "⠠⠓⠻⠗⠻â " }, { "input": "Herrick", "output": "⠠⠓⠻⠗⠊⠉⠅" }, { "input": "Herring", "output": "⠠⠓⠻⠗⠬" }, { "input": "Herschel", "output": "⠠⠓⠻⠎⠡⠑⠇" }, { "input": "Hersey", "output": "⠠⠓⠻⠎⠑⠽" }, { "input": "Hershel", "output": "⠠⠓⠻⠩⠑⠇" }, { "input": "Hershey", "output": "⠠⠓⠻⠩⠑⠽" }, { "input": "Hertz", "output": "⠠⠓⠻⠞⠵" }, { "input": "Hertzsprung", "output": "⠠⠓⠻⠞⠵⠎â â —â ¥â â ›" }, { "input": "Herzegovina", "output": "⠠⠓⠻⠵⠑⠛⠕⠧⠔â " }, { "input": "Herzl", "output": "⠠⠓⠻⠵⠇" }, { "input": "Heshvan", "output": "â  â “â ‘â ©â §â â " }, { "input": "Hesiod", "output": "â  â “â ‘â Žâ Šâ •â ™" }, { "input": "Hesperus", "output": "â  â “â ‘â Žâ â »â ¥â Ž" }, { "input": "Hess", "output": "â  â “â ‘â Žâ Ž" }, { "input": "Hesse", "output": "â  â “â ‘â Žâ Žâ ‘" }, { "input": "Hessian", "output": "â  â “â ‘â Žâ Žâ Šâ â " }, { "input": "Hester", "output": "⠠⠓⠑⠌⠻" }, { "input": "Heston", "output": "⠠⠓⠑⠌⠕â " }, { "input": "Hettie", "output": "â  â “â ‘â žâ žâ Šâ ‘" }, { "input": "Hewitt", "output": "⠠⠓⠑⠺⠊⠞⠞" }, { "input": "Hewlett", "output": "⠠⠓⠑⠺⠇⠑⠞⠞" }, { "input": "Heyerdahl", "output": "⠠⠓⠑⠽⠻⠙â â “â ‡" }, { "input": "Heywood", "output": "⠠⠓⠑⠽⠺⠕⠕⠙" }, { "input": "Hezbollah", "output": "⠠⠓⠑⠵⠃⠕⠇⠇â â “" }, { "input": "Hezekiah", "output": "⠠⠓⠑⠵⠑⠅⠊â â “" }, { "input": "Hf", "output": "â  â “â ‹" }, { "input": "Hg", "output": "â  â “â ›" }, { "input": "Hialeah", "output": "â  â “â Šâ â ‡â ‚â “" }, { "input": "Hiawatha", "output": "â  â “â Šâ â ºâ â ¹â " }, { "input": "Hibernia", "output": "⠠⠓⠊⠃⠻â â Šâ " }, { "input": "Hickman", "output": "⠠⠓⠊⠉⠅â â â " }, { "input": "Hickok", "output": "⠠⠓⠊⠉⠅⠕⠅" }, { "input": "Hicks", "output": "⠠⠓⠊⠉⠅⠎" }, { "input": "Hieronymus", "output": "⠠⠓⠊⠻⠕â â ½â â ¥â Ž" }, { "input": "Higgins", "output": "⠠⠓⠊⠶⠔⠎" }, { "input": "Highlander", "output": "⠠⠓⠊⠣⠇⠯⠻" }, { "input": "Highlanders", "output": "⠠⠓⠊⠣⠇⠯⠻⠎" }, { "input": "Highness", "output": "⠠⠓⠊⠣⠰⠎" }, { "input": "Hilario", "output": "⠠⠓⠊⠇⠜⠊⠕" }, { "input": "Hilary", "output": "⠠⠓⠊⠇⠜⠽" }, { "input": "Hilbert", "output": "⠠⠓⠊⠇⠃⠻⠞" }, { "input": "Hilda", "output": "⠠⠓⠊⠇⠙â " }, { "input": "Hildebrand", "output": "⠠⠓⠊⠇⠙⠑⠃⠗⠯" }, { "input": "Hilfiger", "output": "⠠⠓⠊⠇⠋⠊⠛⠻" }, { "input": "Hill", "output": "⠠⠓⠊⠇⠇" }, { "input": "Hillary", "output": "⠠⠓⠊⠇⠇⠜⠽" }, { "input": "Hillel", "output": "⠠⠓⠊⠇⠇⠑⠇" }, { "input": "Hilton", "output": "⠠⠓⠊⠇⠞⠕â " }, { "input": "Himalaya", "output": "â  â “â Šâ â â ‡â â ½â " }, { "input": "Himalayas", "output": "â  â “â Šâ â â ‡â â ½â â Ž" }, { "input": "Himmler", "output": "â  â “â Šâ â â ‡â »" }, { "input": "Hinayana", "output": "â  â “â ”â â ½â â â " }, { "input": "Hindemith", "output": "⠠⠓⠔⠙⠑â â Šâ ¹" }, { "input": "Hindenburg", "output": "⠠⠓⠔⠙⠢⠃⠥⠗⠛" }, { "input": "Hindi", "output": "⠠⠓⠔⠙⠊" }, { "input": "Hindu", "output": "⠠⠓⠔⠙⠥" }, { "input": "Hinduism", "output": "⠠⠓⠔⠙⠥⠊⠎â " }, { "input": "Hinduisms", "output": "⠠⠓⠔⠙⠥⠊⠎â â Ž" }, { "input": "Hindus", "output": "⠠⠓⠔⠙⠥⠎" }, { "input": "Hindustan", "output": "⠠⠓⠔⠙⠥⠌â â " }, { "input": "Hindustani", "output": "⠠⠓⠔⠙⠥⠌â â â Š" }, { "input": "Hines", "output": "⠠⠓⠔⠑⠎" }, { "input": "Hinton", "output": "⠠⠓⠔⠞⠕â " }, { "input": "Hipparchus", "output": "â  â “â Šâ â â œâ ¡â ¥â Ž" }, { "input": "Hippocrates", "output": "â  â “â Šâ â â •⠉⠗â â žâ ‘â Ž" }, { "input": "Hippocratic", "output": "â  â “â Šâ â â •⠉⠗â â žâ Šâ ‰" }, { "input": "Hiram", "output": "â  â “â Šâ —â â " }, { "input": "Hirobumi", "output": "⠠⠓⠊⠗⠕⠃⠥â â Š" }, { "input": "Hirohito", "output": "â  â “â Šâ —â •â “â Šâ žâ •" }, { "input": "Hiroshima", "output": "â  â “â Šâ —â •â ©â Šâ â " }, { "input": "Hispanic", "output": "â  â “â Šâ Žâ â â â Šâ ‰" }, { "input": "Hispanics", "output": "â  â “â Šâ Žâ â â â Šâ ‰â Ž" }, { "input": "Hispaniola", "output": "â  â “â Šâ Žâ â â â Šâ •â ‡â " }, { "input": "Hiss", "output": "â  â “â Šâ Žâ Ž" }, { "input": "Hitachi", "output": "â  â “â Šâ žâ â ¡â Š" }, { "input": "Hitchcock", "output": "⠠⠓⠊⠞⠡⠉⠕⠉⠅" }, { "input": "Hitler", "output": "⠠⠓⠊⠞⠇⠻" }, { "input": "Hitlers", "output": "⠠⠓⠊⠞⠇⠻⠎" }, { "input": "Hittite", "output": "â  â “â Šâ žâ žâ Šâ žâ ‘" }, { "input": "Hmong", "output": "â  â “â â °â ›" }, { "input": "Ho", "output": "â  â “â •" }, { "input": "Hobart", "output": "⠠⠓⠕⠃⠜⠞" }, { "input": "Hobbes", "output": "⠠⠓⠕⠆⠑⠎" }, { "input": "Hobbs", "output": "⠠⠓⠕⠆⠎" }, { "input": "Hockney", "output": "⠠⠓⠕⠉⠅â â ‘â ½" }, { "input": "Hodge", "output": "⠠⠓⠕⠙⠛⠑" }, { "input": "Hodges", "output": "⠠⠓⠕⠙⠛⠑⠎" }, { "input": "Hodgkin", "output": "⠠⠓⠕⠙⠛⠅⠔" }, { "input": "Hoff", "output": "â  â “â ·â ‹" }, { "input": "Hoffa", "output": "â  â “â ·â ‹â " }, { "input": "Hoffman", "output": "â  â “â ·â ‹â â â " }, { "input": "Hofstadter", "output": "â  â “â ·â Œâ â ™â žâ »" }, { "input": "Hogan", "output": "â  â “â •â ›â â " }, { "input": "Hogarth", "output": "⠠⠓⠕⠛⠜⠹" }, { "input": "Hogwarts", "output": "⠠⠓⠕⠛⠺⠜⠞⠎" }, { "input": "Hohenlohe", "output": "⠠⠓⠕⠓⠢⠇⠕⠓⠑" }, { "input": "Hohenstaufen", "output": "⠠⠓⠕⠓⠢⠌â â ¥â ‹â ¢" }, { "input": "Hohenzollern", "output": "⠠⠓⠕⠓⠢⠵⠕⠇⠇⠻â " }, { "input": "Hohhot", "output": "â  â “â •â “â “â •â ž" }, { "input": "Hohokam", "output": "â  â “â •â “â •â …â â " }, { "input": "Hokkaido", "output": "â  â “â •â …â …â â Šâ ™â •" }, { "input": "Hokusai", "output": "⠠⠓⠕⠅⠥⠎â â Š" }, { "input": "Holbein", "output": "⠠⠓⠕⠇⠃⠑⠔" }, { "input": "Holcomb", "output": "⠠⠓⠕⠇⠉⠕â â ƒ" }, { "input": "Holden", "output": "⠠⠓⠕⠇⠙⠢" }, { "input": "Holder", "output": "⠠⠓⠕⠇⠙⠻" }, { "input": "Holiday", "output": "⠠⠓⠕⠇⠊â â ™" }, { "input": "Holland", "output": "⠠⠓⠕⠇⠇⠯" }, { "input": "Hollands", "output": "⠠⠓⠕⠇⠇⠯⠎" }, { "input": "Hollerith", "output": "⠠⠓⠕⠇⠇⠻⠊⠹" }, { "input": "Holley", "output": "⠠⠓⠕⠇⠇⠑⠽" }, { "input": "Hollie", "output": "⠠⠓⠕⠇⠇⠊⠑" }, { "input": "Hollis", "output": "⠠⠓⠕⠇⠇⠊⠎" }, { "input": "Holloway", "output": "⠠⠓⠕⠇⠇⠪â â ½" }, { "input": "Holly", "output": "⠠⠓⠕⠇⠇⠽" }, { "input": "Hollywood", "output": "⠠⠓⠕⠇⠇⠽⠺⠕⠕⠙" }, { "input": "Holman", "output": "â  â “â •â ‡â â â " }, { "input": "Holmes", "output": "â  â “â •â ‡â â ‘â Ž" }, { "input": "Holocaust", "output": "⠠⠓⠕⠇⠕⠉â â ¥â Œ" }, { "input": "Holocene", "output": "⠠⠓⠕⠇⠕⠉⠢⠑" }, { "input": "Holst", "output": "⠠⠓⠕⠇⠌" }, { "input": "Holstein", "output": "⠠⠓⠕⠇⠌⠑⠔" }, { "input": "Holsteins", "output": "⠠⠓⠕⠇⠌⠑⠔⠎" }, { "input": "Holt", "output": "⠠⠓⠕⠇⠞" }, { "input": "Homer", "output": "â  â “â •â â »" }, { "input": "Homeric", "output": "â  â “â •â â »â Šâ ‰" }, { "input": "Hon", "output": "â  â “â •â " }, { "input": "Honda", "output": "â  â “â •â â ™â " }, { "input": "Honduran", "output": "â  â “â •â â ™â ¥â —â â " }, { "input": "Hondurans", "output": "â  â “â •â â ™â ¥â —â â â Ž" }, { "input": "Honduras", "output": "â  â “â •â â ™â ¥â —â â Ž" }, { "input": "Honecker", "output": "â  â “â •â â ‘⠉⠅⠻" }, { "input": "Honeywell", "output": "â  â “â â •⠽⠺⠑⠇⠇" }, { "input": "Honiara", "output": "â  â “â •â â Šâ œâ " }, { "input": "Honolulu", "output": "â  â “â •â â •⠇⠥⠇⠥" }, { "input": "Honshu", "output": "â  â “â •â â ©â ¥" }, { "input": "Hood", "output": "â  â “â •â •â ™" }, { "input": "Hooke", "output": "â  â “â •â •â …â ‘" }, { "input": "Hooker", "output": "â  â “â •â •â …â »" }, { "input": "Hooper", "output": "â  â “â •â •â â »" }, { "input": "Hoosier", "output": "â  â “â •â •â Žâ Šâ »" }, { "input": "Hooters", "output": "⠠⠓⠕⠕⠞⠻⠎" }, { "input": "Hoover", "output": "â  â “â •â •â §â »" }, { "input": "Hoovers", "output": "⠠⠓⠕⠕⠧⠻⠎" }, { "input": "Hope", "output": "â  â “â •â â ‘" }, { "input": "Hopewell", "output": "â  â “â •â â ‘⠺⠑⠇⠇" }, { "input": "Hopi", "output": "â  â “â •â â Š" }, { "input": "Hopkins", "output": "â  â “â •â â …⠔⠎" }, { "input": "Hopper", "output": "â  â “â •â â â »" }, { "input": "Horace", "output": "â  â “â •â —â â ‰â ‘" }, { "input": "Horacio", "output": "â  â “â •â —â â ‰â Šâ •" }, { "input": "Horatio", "output": "â  â “â •â —â â žâ Šâ •" }, { "input": "Hormel", "output": "â  â “â •â —â â ‘â ‡" }, { "input": "Hormuz", "output": "â  â “â •â —â â ¥â µ" }, { "input": "Horn", "output": "â  â “â •â —â " }, { "input": "Hornblower", "output": "â  â “â •â —â â ƒâ ‡â ªâ »" }, { "input": "Horne", "output": "â  â “â •â —â â ‘" }, { "input": "Horowitz", "output": "⠠⠓⠕⠗⠪⠊⠞⠵" }, { "input": "Horthy", "output": "⠠⠓⠕⠗⠹⠽" }, { "input": "Horton", "output": "â  â “â •â —â žâ •â " }, { "input": "Horus", "output": "⠠⠓⠕⠗⠥⠎" }, { "input": "Hosea", "output": "â  â “â •â Žâ ‘â " }, { "input": "Hotpoint", "output": "â  â “â •â žâ â •⠔⠞" }, { "input": "Hottentot", "output": "⠠⠓⠕⠞⠞⠢⠞⠕⠞" }, { "input": "Houdini", "output": "⠠⠓⠳⠙⠔⠊" }, { "input": "House", "output": "⠠⠓⠳⠎⠑" }, { "input": "Housman", "output": "⠠⠓⠳⠎â â â " }, { "input": "Houston", "output": "⠠⠓⠳⠌⠕â " }, { "input": "Houyhnhnm", "output": "⠠⠓⠳⠽⠓â â “â â " }, { "input": "Hovhaness", "output": "â  â “â •â §â “â â °â Ž" }, { "input": "Howard", "output": "⠠⠓⠪⠜⠙" }, { "input": "Howe", "output": "⠠⠓⠪⠑" }, { "input": "Howell", "output": "⠠⠓⠪⠑⠇⠇" }, { "input": "Howells", "output": "⠠⠓⠪⠑⠇⠇⠎" }, { "input": "Hoyle", "output": "⠠⠓⠕⠽⠇⠑" }, { "input": "Hrothgar", "output": "⠠⠓⠗⠕⠹⠛⠜" }, { "input": "Huang", "output": "â  â “â ¥â â â ›" }, { "input": "Hubbard", "output": "⠠⠓⠥⠆⠜⠙" }, { "input": "Hubble", "output": "⠠⠓⠥⠆⠇⠑" }, { "input": "Huber", "output": "⠠⠓⠥⠃⠻" }, { "input": "Hubert", "output": "⠠⠓⠥⠃⠻⠞" }, { "input": "Huck", "output": "⠠⠓⠥⠉⠅" }, { "input": "Hudson", "output": "⠠⠓⠥⠙⠎⠕â " }, { "input": "Huerta", "output": "⠠⠓⠥⠻⠞â " }, { "input": "Huey", "output": "⠠⠓⠥⠑⠽" }, { "input": "Huff", "output": "⠠⠓⠥⠋⠋" }, { "input": "Huffman", "output": "⠠⠓⠥⠖â â â " }, { "input": "Huggins", "output": "⠠⠓⠥⠶⠔⠎" }, { "input": "Hugh", "output": "⠠⠓⠥⠣" }, { "input": "Hughes", "output": "⠠⠓⠥⠣⠑⠎" }, { "input": "Hugo", "output": "⠠⠓⠥⠛⠕" }, { "input": "Huguenot", "output": "⠠⠓⠥⠛⠥⠢⠕⠞" }, { "input": "Huguenots", "output": "⠠⠓⠥⠛⠥⠢⠕⠞⠎" }, { "input": "Hui", "output": "⠠⠓⠥⠊" }, { "input": "Huitzilopotchli", "output": "⠠⠓⠥⠊⠞⠵⠊⠇⠕â â •⠞⠡⠇⠊" }, { "input": "Hull", "output": "⠠⠓⠥⠇⠇" }, { "input": "Humberto", "output": "â  â “â ¥â â ƒâ »â žâ •" }, { "input": "Humboldt", "output": "â  â “â ¥â â ƒâ •⠇⠙⠞" }, { "input": "Hume", "output": "â  â “â ¥â â ‘" }, { "input": "Hummer", "output": "â  â “â ¥â â â »" }, { "input": "Humphrey", "output": "â  â “â ¥â â â “â —â ‘â ½" }, { "input": "Humvee", "output": "â  â “â ¥â â §â ‘â ‘" }, { "input": "Hun", "output": "â  â “â ¥â " }, { "input": "Hung", "output": "â  â “â ¥â â ›" }, { "input": "Hungarian", "output": "â  â “â ¥â â ›â œâ Šâ â " }, { "input": "Hungarians", "output": "â  â “â ¥â â ›â œâ Šâ â â Ž" }, { "input": "Hungary", "output": "â  â “â ¥â â ›â œâ ½" }, { "input": "Huns", "output": "â  â “â ¥â â Ž" }, { "input": "Hunspell", "output": "â  â “â ¥â â Žâ â ‘⠇⠇" }, { "input": "Hunt", "output": "â  â “â ¥â â ž" }, { "input": "Hunter", "output": "â  â “â ¥â â žâ »" }, { "input": "Huntington", "output": "â  â “â ¥â â žâ ¬â žâ •â " }, { "input": "Huntley", "output": "â  â “â ¥â â žâ ‡â ‘â ½" }, { "input": "Huntsville", "output": "â  â “â ¥â â žâ Žâ §â Šâ ‡â ‡â ‘" }, { "input": "Hurley", "output": "⠠⠓⠥⠗⠇⠑⠽" }, { "input": "Huron", "output": "⠠⠓⠥⠗⠕â " }, { "input": "Hurst", "output": "⠠⠓⠥⠗⠌" }, { "input": "Hus", "output": "⠠⠓⠥⠎" }, { "input": "Hussein", "output": "⠠⠓⠥⠎⠎⠑⠔" }, { "input": "Husserl", "output": "⠠⠓⠥⠎⠎⠻⠇" }, { "input": "Hussite", "output": "⠠⠓⠥⠎⠎⠊⠞⠑" }, { "input": "Huston", "output": "⠠⠓⠥⠌⠕â " }, { "input": "Hutchinson", "output": "⠠⠓⠥⠞⠡⠔⠎⠕â " }, { "input": "Hutton", "output": "⠠⠓⠥⠞⠞⠕â " }, { "input": "Hutu", "output": "⠠⠓⠥⠞⠥" }, { "input": "Huxley", "output": "⠠⠓⠥⠭⠇⠑⠽" }, { "input": "Huygens", "output": "⠠⠓⠥⠽⠛⠢⠎" }, { "input": "Hyades", "output": "â  â “â ½â â ™â ‘â Ž" }, { "input": "Hyde", "output": "⠠⠓⠽⠙⠑" }, { "input": "Hyderabad", "output": "⠠⠓⠽⠙⠻â â ƒâ â ™" }, { "input": "Hydra", "output": "⠠⠓⠽⠙⠗â " }, { "input": "Hymen", "output": "â  â “â ½â â ¢" }, { "input": "Hyperion", "output": "â  â “â ½â â »â Šâ •â " }, { "input": "Hyundai", "output": "⠠⠓⠽⠥â â ™â â Š" }, { "input": "Hz", "output": "â  â “â µ" }, { "input": "Héloise", "output": "⠠⠠⠓⠘⠻â â ˜â ‰â ‡â •â Šâ Žâ ‘" }, { "input": "I", "output": "â  â Š" }, { "input": "IBM", "output": "â  â  â Šâ ƒâ " }, { "input": "ING", "output": "⠠⠠⠔⠛" }, { "input": "Iaccoca", "output": "â  â Šâ â ’â •â ‰â " }, { "input": "Iago", "output": "â  â Šâ â ›â •" }, { "input": "Ian", "output": "â  â Šâ â " }, { "input": "Iapetus", "output": "â  â Šâ â â ‘⠞⠥⠎" }, { "input": "Ibadan", "output": "â  â Šâ ƒâ â ™â â " }, { "input": "Iberia", "output": "⠠⠊⠃⠻⠊â " }, { "input": "Iberian", "output": "⠠⠊⠃⠻⠊â â " }, { "input": "Ibiza", "output": "⠠⠊⠃⠊⠵â " }, { "input": "Iblis", "output": "⠠⠊⠃⠇⠊⠎" }, { "input": "Ibo", "output": "⠠⠊⠃⠕" }, { "input": "Ibsen", "output": "⠠⠊⠃⠎⠢" }, { "input": "Icahn", "output": "â  â Šâ ‰â â “â " }, { "input": "Icarus", "output": "⠠⠊⠉⠜⠥⠎" }, { "input": "Iceland", "output": "⠠⠊⠉⠑⠇⠯" }, { "input": "Icelander", "output": "⠠⠊⠉⠑⠇⠯⠻" }, { "input": "Icelanders", "output": "⠠⠊⠉⠑⠇⠯⠻⠎" }, { "input": "Icelandic", "output": "⠠⠊⠉⠑⠇⠯⠊⠉" }, { "input": "Ida", "output": "â  â Šâ ™â " }, { "input": "Idaho", "output": "â  â Šâ ™â â “â •" }, { "input": "Idahoan", "output": "â  â Šâ ™â â “â •â â " }, { "input": "Idahoans", "output": "â  â Šâ ™â â “â •â â â Ž" }, { "input": "Idahoes", "output": "â  â Šâ ™â â “â •â ‘â Ž" }, { "input": "Idahos", "output": "â  â Šâ ™â â “â •â Ž" }, { "input": "Ieyasu", "output": "â  â Šâ ‘â ½â â Žâ ¥" }, { "input": "Ignacio", "output": "â  â Šâ ›â â â ‰â Šâ •" }, { "input": "Ignatius", "output": "â  â Šâ ›â â â žâ Šâ ¥â Ž" }, { "input": "Igor", "output": "⠠⠊⠛⠕⠗" }, { "input": "Iguassu", "output": "⠠⠊⠛⠥â â Žâ Žâ ¥" }, { "input": "Ijssel", "output": "â  â Šâ šâ Žâ Žâ ‘â ‡" }, { "input": "Ijsselmeer", "output": "â  â Šâ šâ Žâ Žâ ‘â ‡â â ‘â »" }, { "input": "Ike", "output": "â  â Šâ …â ‘" }, { "input": "Ikea", "output": "â  â Šâ …â ‘â " }, { "input": "Ikhnaton", "output": "â  â Šâ …â “â â â žâ •â " }, { "input": "Ila", "output": "â  â Šâ ‡â " }, { "input": "Ilene", "output": "⠠⠊⠇⠢⠑" }, { "input": "Iliad", "output": "⠠⠊⠇⠊â â ™" }, { "input": "Ill", "output": "⠠⠊⠇⠇" }, { "input": "Illinois", "output": "⠠⠊⠇⠇⠔⠕⠊⠎" }, { "input": "Illuminati", "output": "⠠⠊⠇⠇⠥â â ”â â žâ Š" }, { "input": "Ilyushin", "output": "⠠⠊⠇⠽⠥⠩⠔" }, { "input": "Imelda", "output": "â  â Šâ â ‘⠇⠙â " }, { "input": "Imhotep", "output": "â  â Šâ â “â •â žâ ‘â " }, { "input": "Imodium", "output": "â  â Šâ â •⠙⠊⠥â " }, { "input": "Imogene", "output": "â  â Šâ â •⠛⠢⠑" }, { "input": "Imus", "output": "â  â Šâ â ¥â Ž" }, { "input": "In", "output": "â  â ”" }, { "input": "Ina", "output": "â  â ”â " }, { "input": "Inc", "output": "⠠⠔⠉" }, { "input": "Inca", "output": "⠠⠔⠉â " }, { "input": "Incas", "output": "⠠⠔⠉â â Ž" }, { "input": "Inchon", "output": "⠠⠔⠡⠕â " }, { "input": "Ind", "output": "⠠⠔⠙" }, { "input": "Independence", "output": "⠠⠔⠙⠑â â ¢â ™â °â ‘" }, { "input": "India", "output": "⠠⠔⠙⠊â " }, { "input": "Indian", "output": "⠠⠔⠙⠊â â " }, { "input": "Indiana", "output": "⠠⠔⠙⠊â â â " }, { "input": "Indianan", "output": "⠠⠔⠙⠊â â â â " }, { "input": "Indianans", "output": "⠠⠔⠙⠊â â â â â Ž" }, { "input": "Indianapolis", "output": "⠠⠔⠙⠊â â â â â •⠇⠊⠎" }, { "input": "Indians", "output": "⠠⠔⠙⠊â â â Ž" }, { "input": "Indies", "output": "⠠⠔⠙⠊⠑⠎" }, { "input": "Indira", "output": "⠠⠔⠙⠊⠗â " }, { "input": "Indochina", "output": "⠠⠔⠙⠕⠡⠔â " }, { "input": "Indochinese", "output": "⠠⠔⠙⠕⠡⠔⠑⠎⠑" }, { "input": "Indonesia", "output": "⠠⠔⠙⠕â â ‘â Žâ Šâ " }, { "input": "Indonesian", "output": "⠠⠔⠙⠕â â ‘â Žâ Šâ â " }, { "input": "Indonesians", "output": "⠠⠔⠙⠕â â ‘â Žâ Šâ â â Ž" }, { "input": "Indore", "output": "⠠⠔⠙⠕⠗⠑" }, { "input": "Indra", "output": "⠠⠔⠙⠗â " }, { "input": "Indus", "output": "⠠⠔⠙⠥⠎" }, { "input": "Indy", "output": "⠠⠔⠙⠽" }, { "input": "Ines", "output": "⠠⠔⠑⠎" }, { "input": "Inez", "output": "⠠⠔⠑⠵" }, { "input": "Inge", "output": "⠠⠔⠛⠑" }, { "input": "Inglewood", "output": "⠠⠔⠛⠇⠑⠺⠕⠕⠙" }, { "input": "Ingram", "output": "⠠⠔⠛⠗â â " }, { "input": "Ingres", "output": "⠠⠔⠛⠗⠑⠎" }, { "input": "Ingrid", "output": "⠠⠔⠛⠗⠊⠙" }, { "input": "Innocent", "output": "â  â ”â â •⠉⠢⠞" }, { "input": "Inonu", "output": "⠠⠔⠕â â ¥" }, { "input": "Inquisition", "output": "⠠⠔⠟⠥⠊⠎⠊⠰â " }, { "input": "Instamatic", "output": "⠠⠔⠌â â â â žâ Šâ ‰" }, { "input": "Intel", "output": "⠠⠔⠞⠑⠇" }, { "input": "Intelsat", "output": "⠠⠔⠞⠑⠇⠎â â ž" }, { "input": "Internationale", "output": "⠠⠔⠞⠻â â â °â â â ‡â ‘" }, { "input": "Internet", "output": "⠠⠔⠞⠻â â ‘â ž" }, { "input": "Interpol", "output": "⠠⠔⠞⠻â â •â ‡" }, { "input": "Inuit", "output": "⠠⠔⠥⠊⠞" }, { "input": "Inuits", "output": "⠠⠔⠥⠊⠞⠎" }, { "input": "Inuktitut", "output": "⠠⠔⠥⠅⠞⠊⠞⠥⠞" }, { "input": "Invar", "output": "⠠⠔⠧⠜" }, { "input": "Io", "output": "â  â Šâ •" }, { "input": "Ionesco", "output": "â  â Šâ •â â ‘⠎⠉⠕" }, { "input": "Ionian", "output": "â  â Šâ •â â Šâ â " }, { "input": "Ionic", "output": "â  â Šâ •â â Šâ ‰" }, { "input": "Ionics", "output": "â  â Šâ •â â Šâ ‰â Ž" }, { "input": "Iowa", "output": "â  â Šâ ªâ " }, { "input": "Iowan", "output": "â  â Šâ ªâ â " }, { "input": "Iowans", "output": "â  â Šâ ªâ â â Ž" }, { "input": "Iowas", "output": "â  â Šâ ªâ â Ž" }, { "input": "Iphigenia", "output": "â  â Šâ â “⠊⠛⠢⠊â " }, { "input": "Iqaluit", "output": "â  â Šâ Ÿâ â ‡â ¥â Šâ ž" }, { "input": "Iqbal", "output": "â  â Šâ Ÿâ ƒâ â ‡" }, { "input": "Iquitos", "output": "⠠⠊⠟⠥⠊⠞⠕⠎" }, { "input": "Ir", "output": "â  â Šâ —" }, { "input": "Ira", "output": "â  â Šâ —â " }, { "input": "Iran", "output": "â  â Šâ —â â " }, { "input": "Iranian", "output": "â  â Šâ —â â â Šâ â " }, { "input": "Iranians", "output": "â  â Šâ —â â â Šâ â â Ž" }, { "input": "Iraq", "output": "â  â Šâ —â â Ÿ" }, { "input": "Iraqi", "output": "â  â Šâ —â â Ÿâ Š" }, { "input": "Iraqis", "output": "â  â Šâ —â â Ÿâ Šâ Ž" }, { "input": "Ireland", "output": "⠠⠊⠗⠑⠇⠯" }, { "input": "Irene", "output": "⠠⠊⠗⠢⠑" }, { "input": "Iris", "output": "â  â Šâ —â Šâ Ž" }, { "input": "Irish", "output": "â  â Šâ —â Šâ ©" }, { "input": "Irisher", "output": "â  â Šâ —â Šâ ©â »" }, { "input": "Irishman", "output": "â  â Šâ —â Šâ ©â â â " }, { "input": "Irishmen", "output": "â  â Šâ —â Šâ ©â â ¢" }, { "input": "Irishwoman", "output": "⠠⠊⠗⠊⠩⠺⠕â â â " }, { "input": "Irishwomen", "output": "⠠⠊⠗⠊⠩⠺⠕â â ¢" }, { "input": "Irkutsk", "output": "⠠⠊⠗⠅⠥⠞⠎⠅" }, { "input": "Irma", "output": "â  â Šâ —â â " }, { "input": "Iroquoian", "output": "⠠⠊⠗⠕⠟⠥⠕⠊â â " }, { "input": "Iroquois", "output": "⠠⠊⠗⠕⠟⠥⠕⠊⠎" }, { "input": "Irrawaddy", "output": "â  â Šâ —â —â â ºâ â ™â ™â ½" }, { "input": "Irtish", "output": "â  â Šâ —â žâ Šâ ©" }, { "input": "Irvin", "output": "â  â Šâ —â §â ”" }, { "input": "Irving", "output": "â  â Šâ —â §â ¬" }, { "input": "Irwin", "output": "⠠⠊⠗⠺⠔" }, { "input": "Isaac", "output": "â  â Šâ Žâ â â ‰" }, { "input": "Isabel", "output": "â  â Šâ Žâ â ƒâ ‘â ‡" }, { "input": "Isabella", "output": "â  â Šâ Žâ â ƒâ ‘⠇⠇â " }, { "input": "Isabelle", "output": "â  â Šâ Žâ â ƒâ ‘⠇⠇⠑" }, { "input": "Isaiah", "output": "â  â Šâ Žâ â Šâ â “" }, { "input": "Iscariot", "output": "⠠⠊⠎⠉⠜⠊⠕⠞" }, { "input": "Isfahan", "output": "â  â Šâ Žâ ‹â â “â â " }, { "input": "Isherwood", "output": "⠠⠊⠩⠻⠺⠕⠕⠙" }, { "input": "Ishim", "output": "â  â Šâ ©â Šâ " }, { "input": "Ishmael", "output": "â  â Šâ ©â â â ‘â ‡" }, { "input": "Ishtar", "output": "â  â Šâ ©â žâ œ" }, { "input": "Isiah", "output": "â  â Šâ Žâ Šâ â “" }, { "input": "Isidro", "output": "⠠⠊⠎⠊⠙⠗⠕" }, { "input": "Isis", "output": "â  â Šâ Žâ Šâ Ž" }, { "input": "Islam", "output": "â  â Šâ Žâ ‡â â " }, { "input": "Islamabad", "output": "â  â Šâ Žâ ‡â â â â ƒâ â ™" }, { "input": "Islamic", "output": "â  â Šâ Žâ ‡â â â Šâ ‰" }, { "input": "Islamism", "output": "â  â Šâ Žâ ‡â â â Šâ Žâ " }, { "input": "Islamist", "output": "â  â Šâ Žâ ‡â â â Šâ Œ" }, { "input": "Islams", "output": "â  â Šâ Žâ ‡â â â Ž" }, { "input": "Ismael", "output": "â  â Šâ Žâ â â ‘â ‡" }, { "input": "Ismail", "output": "â  â Šâ Žâ â â Šâ ‡" }, { "input": "Isolde", "output": "⠠⠊⠎⠕⠇⠙⠑" }, { "input": "Ispell", "output": "â  â Šâ Žâ â ‘⠇⠇" }, { "input": "Israel", "output": "â  â Šâ Žâ —â â ‘â ‡" }, { "input": "Israeli", "output": "â  â Šâ Žâ —â â ‘⠇⠊" }, { "input": "Israelis", "output": "â  â Šâ Žâ —â â ‘⠇⠊⠎" }, { "input": "Israelite", "output": "â  â Šâ Žâ —â â ‘⠇⠊⠞⠑" }, { "input": "Israels", "output": "â  â Šâ Žâ —â â ‘⠇⠎" }, { "input": "Issac", "output": "â  â Šâ Žâ Žâ â ‰" }, { "input": "Issachar", "output": "â  â Šâ Žâ Žâ â ¡â œ" }, { "input": "Istanbul", "output": "â  â Šâ Œâ â â ƒâ ¥â ‡" }, { "input": "Isuzu", "output": "⠠⠊⠎⠥⠵⠥" }, { "input": "It", "output": "â  â ­" }, { "input": "Itaipu", "output": "â  â Šâ žâ â Šâ â ¥" }, { "input": "Italian", "output": "â  â Šâ žâ â ‡â Šâ â " }, { "input": "Italians", "output": "â  â Šâ žâ â ‡â Šâ â â Ž" }, { "input": "Italy", "output": "â  â Šâ žâ â ‡â ½" }, { "input": "Itasca", "output": "â  â Šâ žâ â Žâ ‰â " }, { "input": "Ithaca", "output": "â  â Šâ ¹â â ‰â " }, { "input": "Ithacan", "output": "â  â Šâ ¹â â ‰â â " }, { "input": "Ito", "output": "â  â Šâ žâ •" }, { "input": "Iva", "output": "â  â Šâ §â " }, { "input": "Ivan", "output": "â  â Šâ §â â " }, { "input": "Ivanhoe", "output": "â  â Šâ §â â â “â •â ‘" }, { "input": "Ives", "output": "â  â Šâ §â ‘â Ž" }, { "input": "Ivory", "output": "â  â Šâ §â •â —â ½" }, { "input": "Ivy", "output": "â  â Šâ §â ½" }, { "input": "Iyar", "output": "⠠⠊⠽⠜" }, { "input": "Izaak", "output": "â  â Šâ µâ â â …" }, { "input": "Izanagi", "output": "â  â Šâ µâ â â â ›â Š" }, { "input": "Izanami", "output": "â  â Šâ µâ â â â â Š" }, { "input": "Izhevsk", "output": "⠠⠊⠵⠓⠑⠧⠎⠅" }, { "input": "Izmir", "output": "â  â Šâ µâ â Šâ —" }, { "input": "Izod", "output": "⠠⠊⠵⠕⠙" }, { "input": "Izvestia", "output": "⠠⠊⠵⠧⠑⠌⠊â " }, { "input": "J", "output": "â °â  â š" }, { "input": "JFK", "output": "â  â  â šâ ‹â …" }, { "input": "Jack", "output": "â  â šâ â ‰â …" }, { "input": "Jackie", "output": "â  â šâ â ‰â …â Šâ ‘" }, { "input": "Jacklyn", "output": "â  â šâ â ‰â …⠇⠽â " }, { "input": "Jackson", "output": "â  â šâ â ‰â …â Žâ •â " }, { "input": "Jacksonian", "output": "â  â šâ â ‰â …â Žâ •â â Šâ â " }, { "input": "Jacksonville", "output": "â  â šâ â ‰â …â Žâ •â â §â Šâ ‡â ‡â ‘" }, { "input": "Jacky", "output": "â  â šâ â ‰â …â ½" }, { "input": "Jaclyn", "output": "â  â šâ â ‰â ‡â ½â " }, { "input": "Jacob", "output": "â  â šâ â ‰â •â ƒ" }, { "input": "Jacobean", "output": "â  â šâ â ‰â •⠃⠂â " }, { "input": "Jacobi", "output": "â  â šâ â ‰â •⠃⠊" }, { "input": "Jacobin", "output": "â  â šâ â ‰â •⠃⠔" }, { "input": "Jacobite", "output": "â  â šâ â ‰â •⠃⠊⠞⠑" }, { "input": "Jacobs", "output": "â  â šâ â ‰â •⠃⠎" }, { "input": "Jacobson", "output": "â  â šâ â ‰â •⠃⠎⠕â " }, { "input": "Jacquard", "output": "â  â šâ â ‰â Ÿâ ¥â œâ ™" }, { "input": "Jacqueline", "output": "â  â šâ â ‰â Ÿâ ¥â ‘⠇⠔⠑" }, { "input": "Jacquelyn", "output": "â  â šâ â ‰â Ÿâ ¥â ‘⠇⠽â " }, { "input": "Jacques", "output": "â  â šâ â ‰â Ÿâ ¥â ‘â Ž" }, { "input": "Jacuzzi", "output": "â  â šâ â ‰â ¥â µâ µâ Š" }, { "input": "Jagger", "output": "â  â šâ â ¶â »" }, { "input": "Jagiellon", "output": "â  â šâ â ›â Šâ ‘⠇⠇⠕â " }, { "input": "Jaguar", "output": "â  â šâ â ›â ¥â œ" }, { "input": "Jahangir", "output": "â  â šâ â “â â â ›â Šâ —" }, { "input": "Jaime", "output": "â  â šâ â Šâ â ‘" }, { "input": "Jain", "output": "â  â šâ â ”" }, { "input": "Jainism", "output": "â  â šâ â ”â Šâ Žâ " }, { "input": "Jaipur", "output": "â  â šâ â Šâ â ¥â —" }, { "input": "Jakarta", "output": "â  â šâ â …⠜⠞â " }, { "input": "Jake", "output": "â  â šâ â …â ‘" }, { "input": "Jamaal", "output": "â  â šâ â â â â ‡" }, { "input": "Jamaica", "output": "â  â šâ â â â Šâ ‰â " }, { "input": "Jamaican", "output": "â  â šâ â â â Šâ ‰â â " }, { "input": "Jamaicans", "output": "â  â šâ â â â Šâ ‰â â â Ž" }, { "input": "Jamal", "output": "â  â šâ â â â ‡" }, { "input": "Jamar", "output": "â  â šâ â â œ" }, { "input": "Jame", "output": "â  â šâ â â ‘" }, { "input": "Jamel", "output": "â  â šâ â â ‘â ‡" }, { "input": "James", "output": "â  â šâ â â ‘â Ž" }, { "input": "Jamestown", "output": "â  â šâ â â ‘â Žâ žâ ªâ " }, { "input": "Jami", "output": "â  â šâ â â Š" }, { "input": "Jamie", "output": "â  â šâ â â Šâ ‘" }, { "input": "Jan", "output": "â  â šâ â " }, { "input": "Jana", "output": "â  â šâ â â " }, { "input": "Janacek", "output": "â  â šâ â â â ‰â ‘â …" }, { "input": "Jane", "output": "â  â šâ â â ‘" }, { "input": "Janell", "output": "â  â šâ â â ‘⠇⠇" }, { "input": "Janelle", "output": "â  â šâ â â ‘⠇⠇⠑" }, { "input": "Janet", "output": "â  â šâ â â ‘â ž" }, { "input": "Janette", "output": "â  â šâ â â ‘â žâ žâ ‘" }, { "input": "Janice", "output": "â  â šâ â â Šâ ‰â ‘" }, { "input": "Janie", "output": "â  â šâ â â Šâ ‘" }, { "input": "Janine", "output": "â  â šâ â â ”â ‘" }, { "input": "Janis", "output": "â  â šâ â â Šâ Ž" }, { "input": "Janissary", "output": "â  â šâ â â Šâ Žâ Žâ œâ ½" }, { "input": "Janjaweed", "output": "â  â šâ â â šâ â ºâ ‘â «" }, { "input": "Janna", "output": "â  â šâ â â â " }, { "input": "Jannie", "output": "â  â šâ â â â Šâ ‘" }, { "input": "Jansen", "output": "â  â šâ â â Žâ ¢" }, { "input": "Jansenist", "output": "â  â šâ â â Žâ ¢â Šâ Œ" }, { "input": "Januaries", "output": "â  â šâ â â ¥â œâ Šâ ‘â Ž" }, { "input": "January", "output": "â  â šâ â â ¥â œâ ½" }, { "input": "Janus", "output": "â  â šâ â â ¥â Ž" }, { "input": "Japan", "output": "â  â šâ â â â " }, { "input": "Japanese", "output": "â  â šâ â â â â ‘â Žâ ‘" }, { "input": "Japaneses", "output": "â  â šâ â â â â ‘â Žâ ‘â Ž" }, { "input": "Japura", "output": "â  â šâ â â ¥â —â " }, { "input": "Jared", "output": "⠠⠚⠜⠫" }, { "input": "Jarlsberg", "output": "⠠⠚⠜⠇⠎⠃⠻⠛" }, { "input": "Jarred", "output": "⠠⠚⠜⠗⠫" }, { "input": "Jarrett", "output": "⠠⠚⠜⠗⠑⠞⠞" }, { "input": "Jarrod", "output": "⠠⠚⠜⠗⠕⠙" }, { "input": "Jarvis", "output": "⠠⠚⠜⠧⠊⠎" }, { "input": "Jasmine", "output": "â  â šâ â Žâ â ”â ‘" }, { "input": "Jason", "output": "â  â šâ â Žâ •â " }, { "input": "Jasper", "output": "â  â šâ â Žâ â »" }, { "input": "Jataka", "output": "â  â šâ â žâ â …â " }, { "input": "Java", "output": "â  â šâ â §â " }, { "input": "JavaScript", "output": "â  â šâ â §â â  â Žâ ‰â —â Šâ â ž" }, { "input": "Javanese", "output": "â  â šâ â §â â â ‘â Žâ ‘" }, { "input": "Javas", "output": "â  â šâ â §â â Ž" }, { "input": "Javier", "output": "â  â šâ â §â Šâ »" }, { "input": "Jaxartes", "output": "â  â šâ â ­â œâ žâ ‘â Ž" }, { "input": "Jay", "output": "â  â šâ â ½" }, { "input": "Jayapura", "output": "â  â šâ â ½â â â ¥â —â " }, { "input": "Jayawardene", "output": "â  â šâ â ½â â ºâ œâ ™â ¢â ‘" }, { "input": "Jaycee", "output": "â  â šâ â ½â ‰â ‘â ‘" }, { "input": "Jaycees", "output": "â  â šâ â ½â ‰â ‘â ‘â Ž" }, { "input": "Jayne", "output": "â  â šâ â ½â â ‘" }, { "input": "Jayson", "output": "â  â šâ â ½â Žâ •â " }, { "input": "Jean", "output": "â  â šâ ‚â " }, { "input": "Jeanette", "output": "â  â šâ ‚â â ‘â žâ žâ ‘" }, { "input": "Jeanie", "output": "â  â šâ ‚â â Šâ ‘" }, { "input": "Jeanine", "output": "â  â šâ ‚â â ”â ‘" }, { "input": "Jeanne", "output": "â  â šâ ‚â â â ‘" }, { "input": "Jeannette", "output": "â  â šâ ‚â â â ‘â žâ žâ ‘" }, { "input": "Jeannie", "output": "â  â šâ ‚â â â Šâ ‘" }, { "input": "Jeannine", "output": "â  â šâ ‚â â â ”â ‘" }, { "input": "Jed", "output": "â  â šâ «" }, { "input": "Jedi", "output": "â  â šâ «â Š" }, { "input": "Jeep", "output": "â  â šâ ‘â ‘â " }, { "input": "Jeeves", "output": "â  â šâ ‘â ‘â §â ‘â Ž" }, { "input": "Jeff", "output": "â  â šâ ‘â ‹â ‹" }, { "input": "Jefferey", "output": "⠠⠚⠑⠖⠻⠑⠽" }, { "input": "Jefferson", "output": "⠠⠚⠑⠖⠻⠎⠕â " }, { "input": "Jeffersonian", "output": "⠠⠚⠑⠖⠻⠎⠕â â Šâ â " }, { "input": "Jeffery", "output": "⠠⠚⠑⠖⠻⠽" }, { "input": "Jeffrey", "output": "â  â šâ ‘â –â —â ‘â ½" }, { "input": "Jeffry", "output": "â  â šâ ‘â –â —â ½" }, { "input": "Jehoshaphat", "output": "â  â šâ ‘â “â •â ©â â â “â â ž" }, { "input": "Jehovah", "output": "â  â šâ ‘â “â •â §â â “" }, { "input": "Jekyll", "output": "⠠⠚⠑⠅⠽⠇⠇" }, { "input": "Jenifer", "output": "⠠⠚⠢⠊⠋⠻" }, { "input": "Jenkins", "output": "⠠⠚⠢⠅⠔⠎" }, { "input": "Jenna", "output": "â  â šâ ¢â â " }, { "input": "Jenner", "output": "â  â šâ ¢â â »" }, { "input": "Jennie", "output": "â  â šâ ¢â â Šâ ‘" }, { "input": "Jennifer", "output": "â  â šâ ¢â â Šâ ‹â »" }, { "input": "Jennings", "output": "â  â šâ ¢â â ¬â Ž" }, { "input": "Jenny", "output": "â  â šâ ¢â â ½" }, { "input": "Jensen", "output": "⠠⠚⠢⠎⠢" }, { "input": "Jephthah", "output": "â  â šâ ‘â â “â ¹â â “" }, { "input": "Jerald", "output": "â  â šâ »â â ‡â ™" }, { "input": "Jeremiah", "output": "⠠⠚⠻⠑â â Šâ â “" }, { "input": "Jeremiahs", "output": "⠠⠚⠻⠑â â Šâ â “â Ž" }, { "input": "Jeremy", "output": "⠠⠚⠻⠑â â ½" }, { "input": "Jeri", "output": "⠠⠚⠻⠊" }, { "input": "Jericho", "output": "⠠⠚⠻⠊⠡⠕" }, { "input": "Jermaine", "output": "â  â šâ »â â â ”â ‘" }, { "input": "Jeroboam", "output": "⠠⠚⠻⠕⠃⠕â â " }, { "input": "Jerold", "output": "⠠⠚⠻⠕⠇⠙" }, { "input": "Jerome", "output": "⠠⠚⠻⠕â â ‘" }, { "input": "Jerri", "output": "⠠⠚⠻⠗⠊" }, { "input": "Jerrod", "output": "⠠⠚⠻⠗⠕⠙" }, { "input": "Jerrold", "output": "⠠⠚⠻⠗⠕⠇⠙" }, { "input": "Jerry", "output": "⠠⠚⠻⠗⠽" }, { "input": "Jersey", "output": "⠠⠚⠻⠎⠑⠽" }, { "input": "Jerseys", "output": "⠠⠚⠻⠎⠑⠽⠎" }, { "input": "Jerusalem", "output": "⠠⠚⠻⠥⠎â â ‡â ‘â " }, { "input": "Jess", "output": "â  â šâ ‘â Žâ Ž" }, { "input": "Jesse", "output": "â  â šâ ‘â Žâ Žâ ‘" }, { "input": "Jessica", "output": "â  â šâ ‘â Žâ Žâ Šâ ‰â " }, { "input": "Jessie", "output": "â  â šâ ‘â Žâ Žâ Šâ ‘" }, { "input": "Jesuit", "output": "⠠⠚⠑⠎⠥⠊⠞" }, { "input": "Jesuits", "output": "⠠⠚⠑⠎⠥⠊⠞⠎" }, { "input": "Jesus", "output": "⠠⠚⠑⠎⠥⠎" }, { "input": "Jetway", "output": "â  â šâ ‘â žâ ºâ â ½" }, { "input": "Jew", "output": "â  â šâ ‘â º" }, { "input": "Jewel", "output": "⠠⠚⠑⠺⠑⠇" }, { "input": "Jewell", "output": "⠠⠚⠑⠺⠑⠇⠇" }, { "input": "Jewish", "output": "⠠⠚⠑⠺⠊⠩" }, { "input": "Jewishness", "output": "⠠⠚⠑⠺⠊⠩⠰⠎" }, { "input": "Jewry", "output": "⠠⠚⠑⠺⠗⠽" }, { "input": "Jews", "output": "⠠⠚⠑⠺⠎" }, { "input": "Jezebel", "output": "⠠⠚⠑⠵⠑⠃⠑⠇" }, { "input": "Jezebels", "output": "⠠⠚⠑⠵⠑⠃⠑⠇⠎" }, { "input": "Jidda", "output": "⠠⠚⠊⠙⠙â " }, { "input": "Jilin", "output": "⠠⠚⠊⠇⠔" }, { "input": "Jill", "output": "⠠⠚⠊⠇⠇" }, { "input": "Jillian", "output": "⠠⠚⠊⠇⠇⠊â â " }, { "input": "Jim", "output": "â  â šâ Šâ " }, { "input": "Jimenez", "output": "â  â šâ Šâ â ¢â ‘â µ" }, { "input": "Jimmie", "output": "â  â šâ Šâ â â Šâ ‘" }, { "input": "Jimmy", "output": "â  â šâ Šâ â â ½" }, { "input": "Jinan", "output": "â  â šâ ”â â " }, { "input": "Jinnah", "output": "â  â šâ ”â â â “" }, { "input": "Jinny", "output": "â  â šâ ”â â ½" }, { "input": "Jivaro", "output": "⠠⠚⠊⠧⠜⠕" }, { "input": "Jo", "output": "â  â šâ •" }, { "input": "Joan", "output": "â  â šâ •â â " }, { "input": "Joann", "output": "â  â šâ •â â â " }, { "input": "Joanna", "output": "â  â šâ •â â â â " }, { "input": "Joanne", "output": "â  â šâ •â â â â ‘" }, { "input": "Joaquin", "output": "â  â šâ •â â Ÿâ ¥â ”" }, { "input": "Job", "output": "â  â šâ •â ƒ" }, { "input": "Jobs", "output": "⠠⠚⠕⠃⠎" }, { "input": "Jocasta", "output": "â  â šâ •â ‰â â Œâ " }, { "input": "Jocelyn", "output": "⠠⠚⠕⠉⠑⠇⠽â " }, { "input": "Jock", "output": "⠠⠚⠕⠉⠅" }, { "input": "Jockey", "output": "⠠⠚⠕⠉⠅⠑⠽" }, { "input": "Jodi", "output": "⠠⠚⠕⠙⠊" }, { "input": "Jodie", "output": "⠠⠚⠕⠙⠊⠑" }, { "input": "Jody", "output": "⠠⠚⠕⠙⠽" }, { "input": "Joe", "output": "â  â šâ •â ‘" }, { "input": "Joel", "output": "â  â šâ •â ‘â ‡" }, { "input": "Joesph", "output": "â  â šâ •â ‘â Žâ â “" }, { "input": "Joey", "output": "â  â šâ •â ‘â ½" }, { "input": "Jogjakarta", "output": "⠠⠚⠕⠛⠚â â …⠜⠞â " }, { "input": "Johann", "output": "â  â šâ •â “â â â " }, { "input": "Johanna", "output": "â  â šâ •â “â â â â " }, { "input": "Johannes", "output": "â  â šâ •â “â â â â ‘â Ž" }, { "input": "Johannesburg", "output": "â  â šâ •â “â â â â ‘⠎⠃⠥⠗⠛" }, { "input": "John", "output": "â  â šâ •â “â " }, { "input": "Johnathan", "output": "â  â šâ •â “â â â ¹â â " }, { "input": "Johnathon", "output": "â  â šâ •â “â â â ¹â •â " }, { "input": "Johnie", "output": "â  â šâ •â “â â Šâ ‘" }, { "input": "Johnnie", "output": "â  â šâ •â “â â â Šâ ‘" }, { "input": "Johnny", "output": "â  â šâ •â “â â â ½" }, { "input": "Johns", "output": "â  â šâ •â “â â Ž" }, { "input": "Johnson", "output": "â  â šâ •â “â â Žâ •â " }, { "input": "Johnston", "output": "â  â šâ •â “â â Œâ •â " }, { "input": "Jolene", "output": "⠠⠚⠕⠇⠢⠑" }, { "input": "Joliet", "output": "⠠⠚⠕⠇⠊⠑⠞" }, { "input": "Jolson", "output": "⠠⠚⠕⠇⠎⠕â " }, { "input": "Jon", "output": "â  â šâ •â " }, { "input": "Jonah", "output": "â  â šâ •â â â “" }, { "input": "Jonahs", "output": "â  â šâ •â â â “â Ž" }, { "input": "Jonas", "output": "â  â šâ •â â â Ž" }, { "input": "Jonathan", "output": "â  â šâ •â â â ¹â â " }, { "input": "Jonathon", "output": "â  â šâ •â â â ¹â •â " }, { "input": "Jones", "output": "â  â šâ â •â Ž" }, { "input": "Joni", "output": "â  â šâ •â â Š" }, { "input": "Jonson", "output": "â  â šâ •â â Žâ •â " }, { "input": "Joplin", "output": "â  â šâ •â â ‡â ”" }, { "input": "Jordan", "output": "â  â šâ •â —â ™â â " }, { "input": "Jordanian", "output": "â  â šâ •â —â ™â â â Šâ â " }, { "input": "Jordanians", "output": "â  â šâ •â —â ™â â â Šâ â â Ž" }, { "input": "Jorge", "output": "⠠⠚⠕⠗⠛⠑" }, { "input": "Jose", "output": "â  â šâ •â Žâ ‘" }, { "input": "Josef", "output": "â  â šâ •â Žâ ‘â ‹" }, { "input": "Josefa", "output": "â  â šâ •â Žâ ‘â ‹â " }, { "input": "Josefina", "output": "â  â šâ •â Žâ ‘â ‹â ”â " }, { "input": "Joseph", "output": "â  â šâ •â Žâ ‘â â “" }, { "input": "Josephine", "output": "â  â šâ •â Žâ ‘â â “⠔⠑" }, { "input": "Josephs", "output": "â  â šâ •â Žâ ‘â â “â Ž" }, { "input": "Josephson", "output": "â  â šâ •â Žâ ‘â â “â Žâ •â " }, { "input": "Josephus", "output": "â  â šâ •â Žâ ‘â â “⠥⠎" }, { "input": "Josh", "output": "â  â šâ •â ©" }, { "input": "Joshua", "output": "â  â šâ •â ©â ¥â " }, { "input": "Josiah", "output": "â  â šâ •â Žâ Šâ â “" }, { "input": "Josie", "output": "â  â šâ •â Žâ Šâ ‘" }, { "input": "Josue", "output": "⠠⠚⠕⠎⠥⠑" }, { "input": "Joule", "output": "⠠⠚⠳⠇⠑" }, { "input": "Jove", "output": "â  â šâ •â §â ‘" }, { "input": "Jovian", "output": "â  â šâ •â §â Šâ â " }, { "input": "Joy", "output": "â  â šâ •â ½" }, { "input": "Joyce", "output": "⠠⠚⠕⠽⠉⠑" }, { "input": "Joycean", "output": "⠠⠚⠕⠽⠉⠂â " }, { "input": "Joyner", "output": "â  â šâ •â ½â â »" }, { "input": "Jr", "output": "â  â šâ —" }, { "input": "Juan", "output": "â  â šâ ¥â â " }, { "input": "Juana", "output": "â  â šâ ¥â â â " }, { "input": "Juanita", "output": "â  â šâ ¥â â â Šâ žâ " }, { "input": "Juarez", "output": "⠠⠚⠥⠜⠑⠵" }, { "input": "Jubal", "output": "⠠⠚⠥⠃â â ‡" }, { "input": "Judah", "output": "⠠⠚⠥⠙â â “" }, { "input": "Judaic", "output": "⠠⠚⠥⠙â â Šâ ‰" }, { "input": "Judaism", "output": "⠠⠚⠥⠙â â Šâ Žâ " }, { "input": "Judaisms", "output": "⠠⠚⠥⠙â â Šâ Žâ â Ž" }, { "input": "Judas", "output": "⠠⠚⠥⠙â â Ž" }, { "input": "Judases", "output": "⠠⠚⠥⠙â â Žâ ‘â Ž" }, { "input": "Judd", "output": "⠠⠚⠥⠙⠙" }, { "input": "Jude", "output": "⠠⠚⠥⠙⠑" }, { "input": "Judea", "output": "⠠⠚⠥⠙⠑â " }, { "input": "Judith", "output": "⠠⠚⠥⠙⠊⠹" }, { "input": "Judson", "output": "⠠⠚⠥⠙⠎⠕â " }, { "input": "Judy", "output": "⠠⠚⠥⠙⠽" }, { "input": "Juggernaut", "output": "⠠⠚⠥⠶⠻â â â ¥â ž" }, { "input": "Jul", "output": "⠠⠚⠥⠇" }, { "input": "Jules", "output": "⠠⠚⠥⠇⠑⠎" }, { "input": "Julia", "output": "⠠⠚⠥⠇⠊â " }, { "input": "Julian", "output": "⠠⠚⠥⠇⠊â â " }, { "input": "Juliana", "output": "⠠⠚⠥⠇⠊â â â " }, { "input": "Julianne", "output": "⠠⠚⠥⠇⠊â â â â ‘" }, { "input": "Julie", "output": "⠠⠚⠥⠇⠊⠑" }, { "input": "Julies", "output": "⠠⠚⠥⠇⠊⠑⠎" }, { "input": "Juliet", "output": "⠠⠚⠥⠇⠊⠑⠞" }, { "input": "Juliette", "output": "⠠⠚⠥⠇⠊⠑⠞⠞⠑" }, { "input": "Julio", "output": "⠠⠚⠥⠇⠊⠕" }, { "input": "Julius", "output": "⠠⠚⠥⠇⠊⠥⠎" }, { "input": "Julliard", "output": "⠠⠚⠥⠇⠇⠊⠜⠙" }, { "input": "July", "output": "⠠⠚⠥⠇⠽" }, { "input": "Jun", "output": "â  â šâ ¥â " }, { "input": "June", "output": "â  â šâ ¥â â ‘" }, { "input": "Juneau", "output": "â  â šâ ¥â â ‚â ¥" }, { "input": "Junes", "output": "â  â šâ ¥â â ‘â Ž" }, { "input": "Jung", "output": "â  â šâ ¥â â ›" }, { "input": "Jungfrau", "output": "â  â šâ ¥â â ›â ‹â —â â ¥" }, { "input": "Jungian", "output": "â  â šâ ¥â â ›â Šâ â " }, { "input": "Junior", "output": "â  â šâ ¥â â Šâ •â —" }, { "input": "Juniors", "output": "â  â šâ ¥â â Šâ •â —â Ž" }, { "input": "Juno", "output": "â  â šâ ¥â â •" }, { "input": "Jupiter", "output": "â  â šâ ¥â â Šâ žâ »" }, { "input": "Jurassic", "output": "⠠⠚⠥⠗â â Žâ Žâ Šâ ‰" }, { "input": "Jurua", "output": "⠠⠚⠥⠗⠥â " }, { "input": "Justice", "output": "⠠⠚⠥⠌⠊⠉⠑" }, { "input": "Justin", "output": "⠠⠚⠥⠌⠔" }, { "input": "Justine", "output": "⠠⠚⠥⠌⠔⠑" }, { "input": "Justinian", "output": "⠠⠚⠥⠌⠔⠊â â " }, { "input": "Jutland", "output": "⠠⠚⠥⠞⠇⠯" }, { "input": "Juvenal", "output": "⠠⠚⠥⠧⠢â â ‡" }, { "input": "K", "output": "â °â  â …" }, { "input": "KFC", "output": "â  â  â …â ‹â ‰" }, { "input": "Kaaba", "output": "â  â …â â â ƒâ " }, { "input": "Kabul", "output": "â  â …â â ƒâ ¥â ‡" }, { "input": "Kafka", "output": "â  â …â â ‹â …â " }, { "input": "Kafkaesque", "output": "â  â …â â ‹â …â â ‘⠎⠟⠥⠑" }, { "input": "Kagoshima", "output": "â  â …â â ›â •â ©â Šâ â " }, { "input": "Kahlua", "output": "â  â …â â “⠇⠥â " }, { "input": "Kaifeng", "output": "â  â …â â Šâ ‹â ¢â ›" }, { "input": "Kaiser", "output": "â  â …â â Šâ Žâ »" }, { "input": "Kaitlin", "output": "â  â …â â Šâ žâ ‡â ”" }, { "input": "Kalahari", "output": "â  â …â â ‡â â “⠜⠊" }, { "input": "Kalamazoo", "output": "â  â …â â ‡â â â â µâ •â •" }, { "input": "Kalashnikov", "output": "â  â …â â ‡â â ©â â Šâ …â •â §" }, { "input": "Kalb", "output": "â  â …â â ‡â ƒ" }, { "input": "Kalevala", "output": "â  â …â â ‡â ‘â §â â ‡â " }, { "input": "Kalgoorlie", "output": "â  â …â â ‡â ›â •⠕⠗⠇⠊⠑" }, { "input": "Kali", "output": "â  â …â â ‡â Š" }, { "input": "Kalmyk", "output": "â  â …â â ‡â â ½â …" }, { "input": "Kama", "output": "â  â …â â â " }, { "input": "Kamchatka", "output": "â  â …â â â ¡â â žâ …â " }, { "input": "Kamehameha", "output": "â  â …â â â ‘â “â â â ‘â “â " }, { "input": "Kampala", "output": "â  â …â â â â â ‡â " }, { "input": "Kampuchea", "output": "â  â …â â â â ¥â ¡â ‘â " }, { "input": "Kanchenjunga", "output": "â  â …â â â ¡â ¢â šâ ¥â â ›â " }, { "input": "Kandahar", "output": "â  â …â ¯â â “â œ" }, { "input": "Kandinsky", "output": "⠠⠅⠯⠔⠎⠅⠽" }, { "input": "Kane", "output": "â  â …â â â ‘" }, { "input": "Kannada", "output": "â  â …â â â â â ™â " }, { "input": "Kano", "output": "â  â …â â â •" }, { "input": "Kanpur", "output": "â  â …â â â â ¥â —" }, { "input": "Kans", "output": "â  â …â â â Ž" }, { "input": "Kansan", "output": "â  â …â â â Žâ â " }, { "input": "Kansans", "output": "â  â …â â â Žâ â â Ž" }, { "input": "Kansas", "output": "â  â …â â â Žâ â Ž" }, { "input": "Kant", "output": "â  â …â â â ž" }, { "input": "Kantian", "output": "â  â …â â â žâ Šâ â " }, { "input": "Kaohsiung", "output": "â  â …â â •â “â Žâ Šâ ¥â â ›" }, { "input": "Kaposi", "output": "â  â …â â â •â Žâ Š" }, { "input": "Kara", "output": "â  â …â œâ " }, { "input": "Karachi", "output": "â  â …â œâ â ¡â Š" }, { "input": "Karaganda", "output": "â  â …â œâ â ›â ¯â " }, { "input": "Karakorum", "output": "â  â …â œâ â …â •â —â ¥â " }, { "input": "Karamazov", "output": "â  â …â œâ â â â µâ •â §" }, { "input": "Kareem", "output": "⠠⠅⠜⠑⠑â " }, { "input": "Karen", "output": "⠠⠅⠜⠢" }, { "input": "Karenina", "output": "⠠⠅⠜⠢⠔â " }, { "input": "Kari", "output": "⠠⠅⠜⠊" }, { "input": "Karin", "output": "⠠⠅⠜⠔" }, { "input": "Karina", "output": "⠠⠅⠜⠔â " }, { "input": "Karl", "output": "⠠⠅⠜⠇" }, { "input": "Karla", "output": "⠠⠅⠜⠇â " }, { "input": "Karloff", "output": "⠠⠅⠜⠇⠷⠋" }, { "input": "Karo", "output": "⠠⠅⠜⠕" }, { "input": "Karol", "output": "⠠⠅⠜⠕⠇" }, { "input": "Karroo", "output": "⠠⠅⠜⠗⠕⠕" }, { "input": "Karyn", "output": "⠠⠅⠜⠽â " }, { "input": "Kasai", "output": "â  â …â â Žâ â Š" }, { "input": "Kasey", "output": "â  â …â â Žâ ‘â ½" }, { "input": "Kashmir", "output": "â  â …â â ©â â Šâ —" }, { "input": "Kasparov", "output": "â  â …â â Žâ â œâ •â §" }, { "input": "Kate", "output": "â  â …â â žâ ‘" }, { "input": "Katelyn", "output": "â  â …â â žâ ‘⠇⠽â " }, { "input": "Katharine", "output": "â  â …â â ¹â œâ ”â ‘" }, { "input": "Katherine", "output": "â  â …â â ®â —⠔⠑" }, { "input": "Katheryn", "output": "â  â …â â ®â —â ½â " }, { "input": "Kathiawar", "output": "â  â …â â ¹â Šâ â ºâ œ" }, { "input": "Kathie", "output": "â  â …â â ¹â Šâ ‘" }, { "input": "Kathleen", "output": "â  â …â â ¹â ‡â ‘â ¢" }, { "input": "Kathrine", "output": "â  â …â â ¹â —⠔⠑" }, { "input": "Kathryn", "output": "â  â …â â ¹â —â ½â " }, { "input": "Kathy", "output": "â  â …â â ¹â ½" }, { "input": "Katie", "output": "â  â …â â žâ Šâ ‘" }, { "input": "Katina", "output": "â  â …â â žâ ”â " }, { "input": "Katmai", "output": "â  â …â â žâ â â Š" }, { "input": "Katmandu", "output": "â  â …â â žâ â ¯â ¥" }, { "input": "Katowice", "output": "â  â …â â žâ ªâ Šâ ‰â ‘" }, { "input": "Katrina", "output": "â  â …â â žâ —â ”â " }, { "input": "Katy", "output": "â  â …â â žâ ½" }, { "input": "Kauai", "output": "â  â …â â ¥â â Š" }, { "input": "Kaufman", "output": "â  â …â â ¥â ‹â â â " }, { "input": "Kaunas", "output": "â  â …â â ¥â â â Ž" }, { "input": "Kaunda", "output": "â  â …â â ¥â â ™â " }, { "input": "Kawabata", "output": "â  â …â â ºâ â ƒâ â žâ " }, { "input": "Kawasaki", "output": "â  â …â â ºâ â Žâ â …â Š" }, { "input": "Kay", "output": "â  â …â â ½" }, { "input": "Kaye", "output": "â  â …â â ½â ‘" }, { "input": "Kayla", "output": "â  â …â â ½â ‡â " }, { "input": "Kazakh", "output": "â  â …â â µâ â …â “" }, { "input": "Kazakhstan", "output": "â  â …â â µâ â …â “â Œâ â " }, { "input": "Kazan", "output": "â  â …â â µâ â " }, { "input": "Kazantzakis", "output": "â  â …â â µâ â â žâ µâ â …â Šâ Ž" }, { "input": "Keaton", "output": "â  â …â ‚â žâ •â " }, { "input": "Keats", "output": "â  â …â ‚â žâ Ž" }, { "input": "Keck", "output": "⠠⠅⠑⠉⠅" }, { "input": "Keenan", "output": "â  â …â ‘â ¢â â " }, { "input": "Keewatin", "output": "â  â …â ‘â ‘â ºâ â žâ ”" }, { "input": "Keillor", "output": "⠠⠅⠑⠊⠇⠇⠕⠗" }, { "input": "Keisha", "output": "â  â …â ‘â Šâ ©â " }, { "input": "Keith", "output": "â  â …â ‘â Šâ ¹" }, { "input": "Keller", "output": "⠠⠅⠑⠇⠇⠻" }, { "input": "Kelley", "output": "⠠⠅⠑⠇⠇⠑⠽" }, { "input": "Kelli", "output": "⠠⠅⠑⠇⠇⠊" }, { "input": "Kellie", "output": "⠠⠅⠑⠇⠇⠊⠑" }, { "input": "Kellogg", "output": "⠠⠅⠑⠇⠇⠕⠛⠛" }, { "input": "Kelly", "output": "⠠⠅⠑⠇⠇⠽" }, { "input": "Kelsey", "output": "⠠⠅⠑⠇⠎⠑⠽" }, { "input": "Kelvin", "output": "⠠⠅⠑⠇⠧⠔" }, { "input": "Kemerovo", "output": "â  â …â ‘â â »â •â §â •" }, { "input": "Kemp", "output": "â  â …â ‘â â " }, { "input": "Kempis", "output": "â  â …â ‘â â â Šâ Ž" }, { "input": "Ken", "output": "â  â …â ¢" }, { "input": "Kendall", "output": "⠠⠅⠢⠙â â ‡â ‡" }, { "input": "Kendra", "output": "⠠⠅⠢⠙⠗â " }, { "input": "Kendrick", "output": "⠠⠅⠢⠙⠗⠊⠉⠅" }, { "input": "Kenmore", "output": "â  â …â ¢â â •â —â ‘" }, { "input": "Kennan", "output": "â  â …â ¢â â â " }, { "input": "Kennedy", "output": "â  â …â ¢â â «â ½" }, { "input": "Kenneth", "output": "â  â …â ¢â â ‘â ¹" }, { "input": "Kennith", "output": "â  â …â ¢â â Šâ ¹" }, { "input": "Kenny", "output": "â  â …â ¢â â ½" }, { "input": "Kent", "output": "⠠⠅⠢⠞" }, { "input": "Kenton", "output": "⠠⠅⠢⠞⠕â " }, { "input": "Kentuckian", "output": "⠠⠅⠢⠞⠥⠉⠅⠊â â " }, { "input": "Kentuckians", "output": "⠠⠅⠢⠞⠥⠉⠅⠊â â â Ž" }, { "input": "Kentucky", "output": "⠠⠅⠢⠞⠥⠉⠅⠽" }, { "input": "Kenya", "output": "⠠⠅⠢⠽â " }, { "input": "Kenyan", "output": "⠠⠅⠢⠽â â " }, { "input": "Kenyans", "output": "⠠⠅⠢⠽â â â Ž" }, { "input": "Kenyatta", "output": "⠠⠅⠢⠽â â žâ žâ " }, { "input": "Kenyon", "output": "⠠⠅⠢⠽⠕â " }, { "input": "Keogh", "output": "â  â …â ‘â •â £" }, { "input": "Keokuk", "output": "⠠⠅⠑⠕⠅⠥⠅" }, { "input": "Kepler", "output": "â  â …â ‘â â ‡â »" }, { "input": "Kerensky", "output": "⠠⠅⠻⠢⠎⠅⠽" }, { "input": "Keri", "output": "⠠⠅⠻⠊" }, { "input": "Kermit", "output": "â  â …â »â â Šâ ž" }, { "input": "Kern", "output": "â  â …â »â " }, { "input": "Kerouac", "output": "⠠⠅⠻⠳â â ‰" }, { "input": "Kerr", "output": "⠠⠅⠻⠗" }, { "input": "Kerri", "output": "⠠⠅⠻⠗⠊" }, { "input": "Kerry", "output": "⠠⠅⠻⠗⠽" }, { "input": "Kettering", "output": "⠠⠅⠑⠞⠞⠻⠬" }, { "input": "Keven", "output": "â  â …â ‘â §â ¢" }, { "input": "Kevin", "output": "â  â …â ‘â §â ”" }, { "input": "Kevlar", "output": "⠠⠅⠑⠧⠇⠜" }, { "input": "Kevorkian", "output": "â  â …â ‘â §â •â —â …â Šâ â " }, { "input": "Kewpie", "output": "â  â …â ‘â ºâ â Šâ ‘" }, { "input": "Key", "output": "â  â …â ‘â ½" }, { "input": "Keynes", "output": "â  â …â ‘â ½â â ‘â Ž" }, { "input": "Keynesian", "output": "â  â …â ‘â ½â â ‘â Žâ Šâ â " }, { "input": "Khabarovsk", "output": "â  â …â “â â ƒâ œâ •â §â Žâ …" }, { "input": "Khachaturian", "output": "â  â …â “â â ¡â â žâ ¥â —â Šâ â " }, { "input": "Khalid", "output": "â  â …â “â â ‡â Šâ ™" }, { "input": "Khan", "output": "â  â …â “â â " }, { "input": "Kharkov", "output": "⠠⠅⠓⠜⠅⠕⠧" }, { "input": "Khartoum", "output": "⠠⠅⠓⠜⠞⠳â " }, { "input": "Khayyam", "output": "â  â …â “â â ½â ½â â " }, { "input": "Khazar", "output": "â  â …â “â â µâ œ" }, { "input": "Khmer", "output": "â  â …â “â â »" }, { "input": "Khoikhoi", "output": "â  â …â “â •â Šâ …â “â •â Š" }, { "input": "Khoisan", "output": "â  â …â “â •â Šâ Žâ â " }, { "input": "Khomeini", "output": "â  â …â “â •â â ‘⠔⠊" }, { "input": "Khorana", "output": "â  â …â “â •â —â â â " }, { "input": "Khrushchev", "output": "⠠⠅⠓⠗⠥⠩⠡⠑⠧" }, { "input": "Khufu", "output": "⠠⠅⠓⠥⠋⠥" }, { "input": "Khulna", "output": "⠠⠅⠓⠥⠇â â " }, { "input": "Khwarizmi", "output": "⠠⠅⠓⠺⠜⠊⠵â â Š" }, { "input": "Khyber", "output": "⠠⠅⠓⠽⠃⠻" }, { "input": "Kickapoo", "output": "⠠⠅⠊⠉⠅â â â •â •" }, { "input": "Kidd", "output": "⠠⠅⠊⠙⠙" }, { "input": "Kiel", "output": "â  â …â Šâ ‘â ‡" }, { "input": "Kierkegaard", "output": "⠠⠅⠊⠻⠅⠑⠛â â œâ ™" }, { "input": "Kieth", "output": "â  â …â Šâ ‘â ¹" }, { "input": "Kiev", "output": "â  â …â Šâ ‘â §" }, { "input": "Kigali", "output": "â  â …â Šâ ›â â ‡â Š" }, { "input": "Kikuyu", "output": "⠠⠅⠊⠅⠥⠽⠥" }, { "input": "Kilauea", "output": "â  â …â Šâ ‡â â ¥â ‘â " }, { "input": "Kilimanjaro", "output": "⠠⠅⠊⠇⠊â â â â šâ œâ •" }, { "input": "Kilroy", "output": "⠠⠅⠊⠇⠗⠕⠽" }, { "input": "Kim", "output": "â  â …â Šâ " }, { "input": "Kimberley", "output": "â  â …â Šâ â ƒâ »â ‡â ‘â ½" }, { "input": "Kimberly", "output": "â  â …â Šâ â ƒâ »â ‡â ½" }, { "input": "King", "output": "â  â …â ¬" }, { "input": "Kingston", "output": "⠠⠅⠬⠌⠕â " }, { "input": "Kingstown", "output": "⠠⠅⠬⠎⠞⠪â " }, { "input": "Kinney", "output": "â  â …â ”â â ‘â ½" }, { "input": "Kinsey", "output": "⠠⠅⠔⠎⠑⠽" }, { "input": "Kinshasa", "output": "⠠⠅⠔⠩â â Žâ " }, { "input": "Kiowa", "output": "â  â …â Šâ ªâ " }, { "input": "Kip", "output": "â  â …â Šâ " }, { "input": "Kipling", "output": "â  â …â Šâ â ‡â ¬" }, { "input": "Kirby", "output": "⠠⠅⠊⠗⠃⠽" }, { "input": "Kirchhoff", "output": "â  â …â Šâ —â ¡â “â ·â ‹" }, { "input": "Kirchner", "output": "â  â …â Šâ —â ¡â â »" }, { "input": "Kirghistan", "output": "⠠⠅⠊⠗⠣⠊⠌â â " }, { "input": "Kirghiz", "output": "⠠⠅⠊⠗⠣⠊⠵" }, { "input": "Kiribati", "output": "â  â …â Šâ —â Šâ ƒâ â žâ Š" }, { "input": "Kirinyaga", "output": "⠠⠅⠊⠗⠔⠽â â ›â " }, { "input": "Kirk", "output": "â  â …â Šâ —â …" }, { "input": "Kirkland", "output": "⠠⠅⠊⠗⠅⠇⠯" }, { "input": "Kirkpatrick", "output": "â  â …â Šâ —â …â â â žâ —⠊⠉⠅" }, { "input": "Kirov", "output": "â  â …â Šâ —â •â §" }, { "input": "Kirsten", "output": "⠠⠅⠊⠗⠌⠢" }, { "input": "Kisangani", "output": "â  â …â Šâ Žâ â â ›â â â Š" }, { "input": "Kishinev", "output": "⠠⠅⠊⠩⠔⠑⠧" }, { "input": "Kislev", "output": "⠠⠅⠊⠎⠇⠑⠧" }, { "input": "Kissinger", "output": "⠠⠅⠊⠎⠎⠬⠻" }, { "input": "Kit", "output": "â  â …â Šâ ž" }, { "input": "Kitakyushu", "output": "â  â …â Šâ žâ â …⠽⠥⠩⠥" }, { "input": "Kitchener", "output": "⠠⠅⠊⠞⠡⠢⠻" }, { "input": "Kitty", "output": "â  â …â Šâ žâ žâ ½" }, { "input": "Kiwanis", "output": "â  â …â Šâ ºâ â â Šâ Ž" }, { "input": "Klan", "output": "â  â …â ‡â â " }, { "input": "Klansman", "output": "â  â …â ‡â â â Žâ â â " }, { "input": "Klaus", "output": "â  â …â ‡â â ¥â Ž" }, { "input": "Klee", "output": "⠠⠅⠇⠑⠑" }, { "input": "Kleenex", "output": "⠠⠅⠇⠑⠢⠑⠭" }, { "input": "Kleenexes", "output": "⠠⠅⠇⠑⠢⠑⠭⠑⠎" }, { "input": "Klein", "output": "⠠⠅⠇⠑⠔" }, { "input": "Klimt", "output": "⠠⠅⠇⠊â â ž" }, { "input": "Kline", "output": "⠠⠅⠇⠔⠑" }, { "input": "Klingon", "output": "⠠⠅⠇⠬⠕â " }, { "input": "Klondike", "output": "⠠⠅⠇⠕â â ™â Šâ …â ‘" }, { "input": "Klondikes", "output": "⠠⠅⠇⠕â â ™â Šâ …â ‘â Ž" }, { "input": "Kmart", "output": "â  â …â â œâ ž" }, { "input": "Knapp", "output": "â  â …â â â â " }, { "input": "Knesset", "output": "â  â …â °â Žâ ‘â ž" }, { "input": "Kngwarreye", "output": "â  â …â â ›â ºâ œâ —⠑⠽⠑" }, { "input": "Knickerbocker", "output": "â  â …â â Šâ ‰â …⠻⠃⠕⠉⠅⠻" }, { "input": "Knievel", "output": "â  â …â â Šâ ‘â §â ‘â ‡" }, { "input": "Knight", "output": "â  â …â â Šâ £â ž" }, { "input": "Knopf", "output": "â  â …â â •â â ‹" }, { "input": "Knossos", "output": "â  â …â â •â Žâ Žâ •â Ž" }, { "input": "Knowles", "output": "â  â â …⠇⠑⠎" }, { "input": "Knox", "output": "â  â …â â •â ­" }, { "input": "Knoxville", "output": "â  â …â â •⠭⠧⠊⠇⠇⠑" }, { "input": "Knudsen", "output": "â  â …â â ¥â ™â Žâ ¢" }, { "input": "Knuth", "output": "â  â …â â ¥â ¹" }, { "input": "Kobe", "output": "⠠⠅⠕⠃⠑" }, { "input": "Koch", "output": "â  â …â •â ¡" }, { "input": "Kochab", "output": "â  â …â •â ¡â â ƒ" }, { "input": "Kodachrome", "output": "â  â …â •â ™â â ¡â —â •â â ‘" }, { "input": "Kodak", "output": "â  â …â •â ™â â …" }, { "input": "Kodaly", "output": "â  â …â •â ™â â ‡â ½" }, { "input": "Kodiak", "output": "⠠⠅⠕⠙⠊â â …" }, { "input": "Koestler", "output": "⠠⠅⠕⠑⠌⠇⠻" }, { "input": "Kohinoor", "output": "⠠⠅⠕⠓⠔⠕⠕⠗" }, { "input": "Kohl", "output": "â  â …â •â “â ‡" }, { "input": "Koizumi", "output": "⠠⠅⠕⠊⠵⠥â â Š" }, { "input": "Kojak", "output": "â  â …â •â šâ â …" }, { "input": "Kolyma", "output": "⠠⠅⠕⠇⠽â â " }, { "input": "Kommunizma", "output": "â  â …â •â â â ¥â â Šâ µâ â " }, { "input": "Kong", "output": "â  â …â °â ›" }, { "input": "Kongo", "output": "⠠⠅⠰⠛⠕" }, { "input": "Konrad", "output": "â  â …â •â â —â â ™" }, { "input": "Koontz", "output": "â  â …â •â •â â žâ µ" }, { "input": "Koppel", "output": "â  â …â •â â â ‘â ‡" }, { "input": "Koran", "output": "â  â …â •â —â â " }, { "input": "Korans", "output": "â  â …â •â —â â â Ž" }, { "input": "Korea", "output": "â  â …â •â —â ‘â " }, { "input": "Korean", "output": "â  â …â •â —â ‚â " }, { "input": "Koreans", "output": "â  â …â •â —â ‚â â Ž" }, { "input": "Kornberg", "output": "â  â …â •â —â â ƒâ »â ›" }, { "input": "Kory", "output": "â  â …â •â —â ½" }, { "input": "Korzybski", "output": "⠠⠅⠕⠗⠵⠽⠃⠎⠅⠊" }, { "input": "Kosciusko", "output": "⠠⠅⠕⠎⠉⠊⠥⠎⠅⠕" }, { "input": "Kossuth", "output": "⠠⠅⠕⠎⠎⠥⠹" }, { "input": "Kosygin", "output": "⠠⠅⠕⠎⠽⠛⠔" }, { "input": "Koufax", "output": "⠠⠅⠳⠋â â ­" }, { "input": "Kowloon", "output": "⠠⠅⠪⠇⠕⠕â " }, { "input": "Kr", "output": "â  â …â —" }, { "input": "Kraft", "output": "â  â …â —â â ‹â ž" }, { "input": "Krakatoa", "output": "â  â …â —â â …â â žâ •â " }, { "input": "Krakow", "output": "â  â …â —â â …â ª" }, { "input": "Kramer", "output": "â  â …â —â â â »" }, { "input": "Krasnodar", "output": "â  â …â —â â Žâ â •⠙⠜" }, { "input": "Krasnoyarsk", "output": "â  â …â —â â Žâ â •⠽⠜⠎⠅" }, { "input": "Krebs", "output": "⠠⠅⠗⠑⠃⠎" }, { "input": "Kremlin", "output": "â  â …â —â ‘â â ‡â ”" }, { "input": "Kremlinologist", "output": "â  â …â —â ‘â â ‡â ”⠕⠇⠕⠛⠊⠌" }, { "input": "Kresge", "output": "⠠⠅⠗⠑⠎⠛⠑" }, { "input": "Kringle", "output": "⠠⠅⠗⠬⠇⠑" }, { "input": "Kris", "output": "â  â …â —â Šâ Ž" }, { "input": "Krishna", "output": "â  â …â —â Šâ ©â â " }, { "input": "Krishnamurti", "output": "â  â …â —â Šâ ©â â â â ¥â —â žâ Š" }, { "input": "Krista", "output": "â  â …â —â Šâ Œâ " }, { "input": "Kristen", "output": "⠠⠅⠗⠊⠌⠢" }, { "input": "Kristi", "output": "⠠⠅⠗⠊⠌⠊" }, { "input": "Kristie", "output": "⠠⠅⠗⠊⠌⠊⠑" }, { "input": "Kristin", "output": "⠠⠅⠗⠊⠌⠔" }, { "input": "Kristina", "output": "⠠⠅⠗⠊⠌⠔â " }, { "input": "Kristine", "output": "⠠⠅⠗⠊⠌⠔⠑" }, { "input": "Kristopher", "output": "⠠⠅⠗⠊⠌⠕â â “â »" }, { "input": "Kristy", "output": "⠠⠅⠗⠊⠌⠽" }, { "input": "Kroc", "output": "â  â …â —â •â ‰" }, { "input": "Kroger", "output": "⠠⠅⠗⠕⠛⠻" }, { "input": "Kronecker", "output": "â  â …â —â •â â ‘⠉⠅⠻" }, { "input": "Kropotkin", "output": "â  â …â —â •â â •â žâ …â ”" }, { "input": "Kruger", "output": "⠠⠅⠗⠥⠛⠻" }, { "input": "Krugerrand", "output": "⠠⠅⠗⠥⠛⠻⠗⠯" }, { "input": "Krupp", "output": "â  â …â —â ¥â â " }, { "input": "Krystal", "output": "⠠⠅⠗⠽⠌â â ‡" }, { "input": "Kshatriya", "output": "â  â …â ©â â žâ —â Šâ ½â " }, { "input": "Kublai", "output": "⠠⠅⠥⠃⠇â â Š" }, { "input": "Kubrick", "output": "⠠⠅⠥⠃⠗⠊⠉⠅" }, { "input": "Kuhn", "output": "⠠⠅⠥⠓â " }, { "input": "Kuibyshev", "output": "⠠⠅⠥⠊⠃⠽⠩⠑⠧" }, { "input": "Kulthumm", "output": "⠠⠅⠥⠇⠹⠥â â " }, { "input": "Kunming", "output": "â  â …â ¥â â â ¬" }, { "input": "Kuomintang", "output": "⠠⠅⠥⠕â â ”â žâ â â ›" }, { "input": "Kurd", "output": "⠠⠅⠥⠗⠙" }, { "input": "Kurdish", "output": "⠠⠅⠥⠗⠙⠊⠩" }, { "input": "Kurdistan", "output": "⠠⠅⠥⠗⠙⠊⠌â â " }, { "input": "Kurile", "output": "⠠⠅⠥⠗⠊⠇⠑" }, { "input": "Kurosawa", "output": "⠠⠅⠥⠗⠕⠎â â ºâ " }, { "input": "Kurt", "output": "⠠⠅⠥⠗⠞" }, { "input": "Kurtis", "output": "⠠⠅⠥⠗⠞⠊⠎" }, { "input": "Kusch", "output": "⠠⠅⠥⠎⠡" }, { "input": "Kutuzov", "output": "⠠⠅⠥⠞⠥⠵⠕⠧" }, { "input": "Kuwait", "output": "⠠⠅⠥⠺â â Šâ ž" }, { "input": "Kuwaiti", "output": "⠠⠅⠥⠺â â Šâ žâ Š" }, { "input": "Kuwaitis", "output": "⠠⠅⠥⠺â â Šâ žâ Šâ Ž" }, { "input": "Kuznets", "output": "⠠⠅⠥⠵â â ‘â žâ Ž" }, { "input": "Kuznetsk", "output": "⠠⠅⠥⠵â â ‘â žâ Žâ …" }, { "input": "Kwakiutl", "output": "â  â …â ºâ â …⠊⠥⠞⠇" }, { "input": "Kwan", "output": "â  â …â ºâ â " }, { "input": "Kwangju", "output": "â  â …â ºâ â â ›â šâ ¥" }, { "input": "Kwanzaa", "output": "â  â …â ºâ â â µâ â " }, { "input": "Kwanzaas", "output": "â  â …â ºâ â â µâ â â Ž" }, { "input": "Kyle", "output": "⠠⠅⠽⠇⠑" }, { "input": "Kyoto", "output": "⠠⠅⠽⠕⠞⠕" }, { "input": "Kyrgyzstan", "output": "⠠⠅⠽⠗⠛⠽⠵⠌â â " }, { "input": "Kyushu", "output": "⠠⠅⠽⠥⠩⠥" }, { "input": "Köln", "output": "⠠⠠⠅⠘⠻â â ˜â â ‡â " }, { "input": "L", "output": "â °â  â ‡" }, { "input": "LBJ", "output": "⠠⠠⠇⠃⠚" }, { "input": "La", "output": "â  â ‡â " }, { "input": "Laban", "output": "â  â ‡â â ƒâ â " }, { "input": "Labrador", "output": "â  â ‡â â ƒâ —â â ™â •â —" }, { "input": "Labradors", "output": "â  â ‡â â ƒâ —â â ™â •â —â Ž" }, { "input": "Lacey", "output": "â  â ‡â â ‰â ‘â ½" }, { "input": "Lachesis", "output": "â  â ‡â â ¡â ‘â Žâ Šâ Ž" }, { "input": "Lacy", "output": "â  â ‡â â ‰â ½" }, { "input": "Ladoga", "output": "â  â ‡â â ™â •â ›â " }, { "input": "Ladonna", "output": "â  â ‡â â ™â •â â â " }, { "input": "Lafayette", "output": "â  â ‡â â ‹â â ½â ‘â žâ žâ ‘" }, { "input": "Lafitte", "output": "â  â ‡â â ‹â Šâ žâ žâ ‘" }, { "input": "Lagos", "output": "â  â ‡â â ›â •â Ž" }, { "input": "Lagrange", "output": "â  â ‡â â ›â —â â â ›â ‘" }, { "input": "Lagrangian", "output": "â  â ‡â â ›â —â â â ›â Šâ â " }, { "input": "Lahore", "output": "â  â ‡â â “â •â —â ‘" }, { "input": "Laius", "output": "â  â ‡â â Šâ ¥â Ž" }, { "input": "Lajos", "output": "â  â ‡â â šâ •â Ž" }, { "input": "Lakeisha", "output": "â  â ‡â â …â ‘â Šâ ©â " }, { "input": "Lakewood", "output": "â  â ‡â â …⠑⠺⠕⠕⠙" }, { "input": "Lakisha", "output": "â  â ‡â â …â Šâ ©â " }, { "input": "Lakota", "output": "â  â ‡â â …â •â žâ " }, { "input": "Lakshmi", "output": "â  â ‡â â …â ©â â Š" }, { "input": "Lamar", "output": "â  â ‡â â â œ" }, { "input": "Lamarck", "output": "â  â ‡â â â œâ ‰â …" }, { "input": "Lamaze", "output": "â  â ‡â â â â µâ ‘" }, { "input": "Lamb", "output": "â  â ‡â â â ƒ" }, { "input": "Lambert", "output": "â  â ‡â â â ƒâ »â ž" }, { "input": "Lamborghini", "output": "â  â ‡â â â ƒâ •⠗⠣⠔⠊" }, { "input": "Lambrusco", "output": "â  â ‡â â â ƒâ —⠥⠎⠉⠕" }, { "input": "Lamont", "output": "â  â ‡â â â •â â ž" }, { "input": "Lana", "output": "â  â ‡â â â " }, { "input": "Lanai", "output": "â  â ‡â â â â Š" }, { "input": "Lancashire", "output": "â  â ‡â â â ‰â â ©â Šâ —â ‘" }, { "input": "Lancaster", "output": "â  â ‡â â â ‰â â Œâ »" }, { "input": "Lance", "output": "⠠⠇⠨⠑" }, { "input": "Lancelot", "output": "⠠⠇⠨⠑⠇⠕⠞" }, { "input": "Land", "output": "⠠⠇⠯" }, { "input": "Landon", "output": "⠠⠇⠯⠕â " }, { "input": "Landry", "output": "⠠⠇⠯⠗⠽" }, { "input": "Landsat", "output": "⠠⠇⠯⠎â â ž" }, { "input": "Landsteiner", "output": "⠠⠇⠯⠌⠑⠔⠻" }, { "input": "Lane", "output": "â  â ‡â â â ‘" }, { "input": "Lang", "output": "â  â ‡â â â ›" }, { "input": "Langerhans", "output": "â  â ‡â â â ›â »â “â â â Ž" }, { "input": "Langland", "output": "â  â ‡â â â ›â ‡â ¯" }, { "input": "Langley", "output": "â  â ‡â â â ›â ‡â ‘â ½" }, { "input": "Langmuir", "output": "â  â ‡â â â ›â â ¥â Šâ —" }, { "input": "Lanny", "output": "â  â ‡â â â â ½" }, { "input": "Lansing", "output": "â  â ‡â â â Žâ ¬" }, { "input": "Lanzhou", "output": "â  â ‡â â â µâ “â ³" }, { "input": "Lao", "output": "â  â ‡â â •" }, { "input": "Laocoon", "output": "â  â ‡â â •⠉⠕⠕â " }, { "input": "Laos", "output": "â  â ‡â â •â Ž" }, { "input": "Laotian", "output": "â  â ‡â â •â žâ Šâ â " }, { "input": "Laotians", "output": "â  â ‡â â •â žâ Šâ â â Ž" }, { "input": "Laplace", "output": "â  â ‡â â â ‡â â ‰â ‘" }, { "input": "Lapland", "output": "â  â ‡â â â ‡â ¯" }, { "input": "Lapp", "output": "â  â ‡â â â " }, { "input": "Lapps", "output": "â  â ‡â â â â Ž" }, { "input": "Lara", "output": "⠠⠇⠜â " }, { "input": "Laramie", "output": "⠠⠇⠜â â â Šâ ‘" }, { "input": "Lardner", "output": "⠠⠇⠜⠙â â »" }, { "input": "Laredo", "output": "⠠⠇⠜⠫⠕" }, { "input": "Larousse", "output": "⠠⠇⠜⠳⠎⠎⠑" }, { "input": "Larry", "output": "⠠⠇⠜⠗⠽" }, { "input": "Lars", "output": "⠠⠇⠜⠎" }, { "input": "Larsen", "output": "⠠⠇⠜⠎⠢" }, { "input": "Larson", "output": "⠠⠇⠜⠎⠕â " }, { "input": "Lascaux", "output": "â  â ‡â â Žâ ‰â â ¥â ­" }, { "input": "Lassa", "output": "â  â ‡â â Žâ Žâ " }, { "input": "Lassen", "output": "â  â ‡â â Žâ Žâ ¢" }, { "input": "Lassie", "output": "â  â ‡â â Žâ Žâ Šâ ‘" }, { "input": "Latasha", "output": "â  â ‡â â žâ â ©â " }, { "input": "Lateran", "output": "â  â ‡â â žâ »â â " }, { "input": "Latin", "output": "â  â ‡â â žâ ”" }, { "input": "Latina", "output": "â  â ‡â â žâ ”â " }, { "input": "Latiner", "output": "â  â ‡â â žâ ”â »" }, { "input": "Latino", "output": "â  â ‡â â žâ ”â •" }, { "input": "Latinos", "output": "â  â ‡â â žâ ”â •â Ž" }, { "input": "Latins", "output": "â  â ‡â â žâ ”â Ž" }, { "input": "Latisha", "output": "â  â ‡â â žâ Šâ ©â " }, { "input": "Latonya", "output": "â  â ‡â â žâ •â â ½â " }, { "input": "Latoya", "output": "â  â ‡â â žâ •â ½â " }, { "input": "Latrobe", "output": "â  â ‡â â žâ —⠕⠃⠑" }, { "input": "Latvia", "output": "â  â ‡â â žâ §â Šâ " }, { "input": "Latvian", "output": "â  â ‡â â žâ §â Šâ â " }, { "input": "Latvians", "output": "â  â ‡â â žâ §â Šâ â â Ž" }, { "input": "Laud", "output": "â  â ‡â â ¥â ™" }, { "input": "Lauder", "output": "â  â ‡â â ¥â ™â »" }, { "input": "Laue", "output": "â  â ‡â â ¥â ‘" }, { "input": "Laundromat", "output": "â  â ‡â â ¥â â ™â —â •â â â ž" }, { "input": "Laura", "output": "â  â ‡â â ¥â —â " }, { "input": "Laurasia", "output": "â  â ‡â â ¥â —â â Žâ Šâ " }, { "input": "Laurel", "output": "â  â ‡â â ¥â —â ‘â ‡" }, { "input": "Lauren", "output": "â  â ‡â â ¥â —â ¢" }, { "input": "Laurence", "output": "â  â ‡â â ¥â —â °â ‘" }, { "input": "Laurent", "output": "â  â ‡â â ¥â —⠢⠞" }, { "input": "Lauri", "output": "â  â ‡â â ¥â —â Š" }, { "input": "Laurie", "output": "â  â ‡â â ¥â —â Šâ ‘" }, { "input": "Laval", "output": "â  â ‡â â §â â ‡" }, { "input": "Lavern", "output": "â  â ‡â â §â »â " }, { "input": "Laverne", "output": "â  â ‡â â §â »â â ‘" }, { "input": "Lavoisier", "output": "â  â ‡â â §â •â Šâ Žâ Šâ »" }, { "input": "Lavonne", "output": "â  â ‡â â §â •â â â ‘" }, { "input": "Lawanda", "output": "â  â ‡â â ºâ ¯â " }, { "input": "Lawrence", "output": "â  â ‡â â ºâ —â °â ‘" }, { "input": "Lawson", "output": "â  â ‡â â ºâ Žâ •â " }, { "input": "Layamon", "output": "â  â ‡â â ½â â â •â " }, { "input": "Layla", "output": "â  â ‡â â ½â ‡â " }, { "input": "Lazaro", "output": "â  â ‡â â µâ œâ •" }, { "input": "Lazarus", "output": "â  â ‡â â µâ œâ ¥â Ž" }, { "input": "Le", "output": "⠠⠇⠑" }, { "input": "Lea", "output": "⠠⠇⠑â " }, { "input": "Leach", "output": "⠠⠇⠂⠡" }, { "input": "Leadbelly", "output": "⠠⠇⠂⠙⠃⠑⠇⠇⠽" }, { "input": "Leah", "output": "⠠⠇⠑â â “" }, { "input": "Leakey", "output": "⠠⠇⠂⠅⠑⠽" }, { "input": "Lean", "output": "⠠⠇⠂â " }, { "input": "Leander", "output": "⠠⠇⠑⠯⠻" }, { "input": "Leann", "output": "⠠⠇⠑â â â " }, { "input": "Leanna", "output": "⠠⠇⠑â â â â " }, { "input": "Leanne", "output": "⠠⠇⠑â â â â ‘" }, { "input": "Lear", "output": "⠠⠇⠑⠜" }, { "input": "Learjet", "output": "⠠⠇⠑⠜⠚⠑⠞" }, { "input": "Leary", "output": "⠠⠇⠑⠜⠽" }, { "input": "Leavenworth", "output": "⠠⠇⠂⠧⠢⠺⠕⠗⠹" }, { "input": "Lebanese", "output": "⠠⠇⠑⠃â â â ‘â Žâ ‘" }, { "input": "Lebanon", "output": "⠠⠇⠑⠃â â â •â " }, { "input": "Lebesgue", "output": "⠠⠇⠑⠃⠑⠎⠛⠥⠑" }, { "input": "Leblanc", "output": "⠠⠇⠑⠃⠇â â â ‰" }, { "input": "Leda", "output": "⠠⠇⠫â " }, { "input": "Lederberg", "output": "⠠⠇⠫⠻⠃⠻⠛" }, { "input": "Lee", "output": "⠠⠇⠑⠑" }, { "input": "Leeds", "output": "⠠⠇⠑⠫⠎" }, { "input": "Leeuwenhoek", "output": "⠠⠇⠑⠑⠥⠺⠢⠓⠕⠑⠅" }, { "input": "Leeward", "output": "⠠⠇⠑⠑⠺⠜⠙" }, { "input": "Left", "output": "⠠⠇⠑⠋⠞" }, { "input": "Legendre", "output": "⠠⠇⠑⠛⠢⠙⠗⠑" }, { "input": "Leger", "output": "⠠⠇⠑⠛⠻" }, { "input": "Leghorn", "output": "⠠⠇⠑⠣⠕⠗â " }, { "input": "Lego", "output": "⠠⠇⠑⠛⠕" }, { "input": "Legree", "output": "⠠⠇⠑⠛⠗⠑⠑" }, { "input": "Lehman", "output": "⠠⠇⠑⠓â â â " }, { "input": "Leibniz", "output": "⠠⠇⠑⠊⠃â â Šâ µ" }, { "input": "Leicester", "output": "⠠⠇⠑⠊⠉⠑⠌⠻" }, { "input": "Leiden", "output": "⠠⠇⠑⠊⠙⠢" }, { "input": "Leif", "output": "⠠⠇⠑⠊⠋" }, { "input": "Leigh", "output": "⠠⠇⠑⠊⠣" }, { "input": "Leila", "output": "⠠⠇⠑⠊⠇â " }, { "input": "Leipzig", "output": "⠠⠇⠑⠊â â µâ Šâ ›" }, { "input": "Lela", "output": "⠠⠇⠑⠇â " }, { "input": "Leland", "output": "⠠⠇⠑⠇⠯" }, { "input": "Lelia", "output": "⠠⠇⠑⠇⠊â " }, { "input": "Lemaitre", "output": "⠠⠇⠑â â â Šâ žâ —â ‘" }, { "input": "Lemuel", "output": "⠠⠇⠑â â ¥â ‘â ‡" }, { "input": "Lemuria", "output": "⠠⠇⠑â â ¥â —â Šâ " }, { "input": "Len", "output": "⠠⠇⠢" }, { "input": "Lena", "output": "⠠⠇⠢â " }, { "input": "Lenard", "output": "⠠⠇⠢⠜⠙" }, { "input": "Lenin", "output": "⠠⠇⠢⠔" }, { "input": "Leningrad", "output": "⠠⠇⠢⠔⠛⠗â â ™" }, { "input": "Leninism", "output": "⠠⠇⠢⠔⠊⠎â " }, { "input": "Leninist", "output": "⠠⠇⠢⠔⠊⠌" }, { "input": "Lennon", "output": "⠠⠇⠢â â •â " }, { "input": "Lenny", "output": "⠠⠇⠢â â ½" }, { "input": "Leno", "output": "⠠⠇⠢⠕" }, { "input": "Lenoir", "output": "⠠⠇⠢⠕⠊⠗" }, { "input": "Lenora", "output": "⠠⠇⠢⠕⠗â " }, { "input": "Lenore", "output": "⠠⠇⠢⠕⠗⠑" }, { "input": "Lent", "output": "⠠⠇⠢⠞" }, { "input": "Lenten", "output": "⠠⠇⠢⠞⠢" }, { "input": "Lents", "output": "⠠⠇⠢⠞⠎" }, { "input": "Leo", "output": "⠠⠇⠑⠕" }, { "input": "Leola", "output": "⠠⠇⠑⠕⠇â " }, { "input": "Leon", "output": "⠠⠇⠑⠕â " }, { "input": "Leona", "output": "⠠⠇⠑⠕â â " }, { "input": "Leonard", "output": "⠠⠇⠑⠕â â œâ ™" }, { "input": "Leonardo", "output": "⠠⠇⠑⠕â â œâ ™â •" }, { "input": "Leoncavallo", "output": "⠠⠇⠑⠕â â ‰â â §â â ‡â ‡â •" }, { "input": "Leonel", "output": "⠠⠇⠑⠕â â ‘â ‡" }, { "input": "Leonid", "output": "⠠⠇⠑⠕â â Šâ ™" }, { "input": "Leonidas", "output": "⠠⠇⠑⠕â â Šâ ™â â Ž" }, { "input": "Leonor", "output": "⠠⠇⠑⠕â â •â —" }, { "input": "Leopold", "output": "⠠⠇⠑⠕â â •⠇⠙" }, { "input": "Leopoldo", "output": "⠠⠇⠑⠕â â •⠇⠙⠕" }, { "input": "Leos", "output": "⠠⠇⠑⠕⠎" }, { "input": "Lepidus", "output": "⠠⠇⠑â â Šâ ™â ¥â Ž" }, { "input": "Lepke", "output": "⠠⠇⠑â â …â ‘" }, { "input": "Lepus", "output": "⠠⠇⠑â â ¥â Ž" }, { "input": "Lerner", "output": "⠠⠇⠻â â »" }, { "input": "Leroy", "output": "⠠⠇⠻⠕⠽" }, { "input": "Les", "output": "⠠⠇⠑⠎" }, { "input": "Lesa", "output": "⠠⠇⠑⠎â " }, { "input": "Lesley", "output": "⠠⠇⠑⠎⠇⠑⠽" }, { "input": "Leslie", "output": "⠠⠇⠑⠎⠇⠊⠑" }, { "input": "Lesotho", "output": "⠠⠇⠑⠎⠕⠹⠕" }, { "input": "Lesseps", "output": "⠠⠇⠑⠎⠎⠑â â Ž" }, { "input": "Lessie", "output": "⠠⠇⠑⠎⠎⠊⠑" }, { "input": "Lester", "output": "⠠⠇⠑⠌⠻" }, { "input": "Lestrade", "output": "⠠⠇⠑⠌⠗â â ™â ‘" }, { "input": "Leta", "output": "⠠⠇⠑⠞â " }, { "input": "Letha", "output": "⠠⠇⠑⠹â " }, { "input": "Lethe", "output": "⠠⠇⠑⠮" }, { "input": "Leticia", "output": "⠠⠇⠑⠞⠊⠉⠊â " }, { "input": "Letitia", "output": "⠠⠇⠑⠞⠊⠞⠊â " }, { "input": "Letterman", "output": "⠠⠇⠗â â â " }, { "input": "Levant", "output": "⠠⠇⠑⠧â â â ž" }, { "input": "Levesque", "output": "⠠⠇⠑⠧⠑⠎⠟⠥⠑" }, { "input": "Levi", "output": "⠠⠇⠑⠧⠊" }, { "input": "Leviathan", "output": "⠠⠇⠑⠧⠊â â ¹â â " }, { "input": "Levine", "output": "⠠⠇⠑⠧⠔⠑" }, { "input": "Leviticus", "output": "⠠⠇⠑⠧⠊⠞⠊⠉⠥⠎" }, { "input": "Levitt", "output": "⠠⠇⠑⠧⠊⠞⠞" }, { "input": "Levy", "output": "⠠⠇⠑⠧⠽" }, { "input": "Lew", "output": "⠠⠇⠑⠺" }, { "input": "Lewinsky", "output": "⠠⠇⠑⠺⠔⠎⠅⠽" }, { "input": "Lewis", "output": "⠠⠇⠑⠺⠊⠎" }, { "input": "Lexington", "output": "⠠⠇⠑⠭⠬⠞⠕â " }, { "input": "Lexus", "output": "⠠⠇⠑⠭⠥⠎" }, { "input": "Lhasa", "output": "⠠⠇⠓â â Žâ " }, { "input": "Lhotse", "output": "⠠⠇⠓⠕⠞⠎⠑" }, { "input": "Li", "output": "⠠⠇⠊" }, { "input": "Libby", "output": "⠠⠇⠊⠆⠽" }, { "input": "Liberace", "output": "⠠⠇⠊⠃⠻â â ‰â ‘" }, { "input": "Liberia", "output": "⠠⠇⠊⠃⠻⠊â " }, { "input": "Liberian", "output": "⠠⠇⠊⠃⠻⠊â â " }, { "input": "Liberians", "output": "⠠⠇⠊⠃⠻⠊â â â Ž" }, { "input": "Libra", "output": "⠠⠇⠊⠃⠗â " }, { "input": "Libras", "output": "⠠⠇⠊⠃⠗â â Ž" }, { "input": "Libreville", "output": "⠠⠇⠊⠃⠗⠑⠧⠊⠇⠇⠑" }, { "input": "Librium", "output": "⠠⠇⠊⠃⠗⠊⠥â " }, { "input": "Libya", "output": "⠠⠇⠊⠃⠽â " }, { "input": "Libyan", "output": "⠠⠇⠊⠃⠽â â " }, { "input": "Libyans", "output": "⠠⠇⠊⠃⠽â â â Ž" }, { "input": "Lichtenstein", "output": "⠠⠇⠊⠡⠞⠢⠌⠑⠔" }, { "input": "Lidia", "output": "⠠⠇⠊⠙⠊â " }, { "input": "Lie", "output": "⠠⠇⠊⠑" }, { "input": "Lieberman", "output": "⠠⠇⠊⠑⠃⠻â â â " }, { "input": "Liebfraumilch", "output": "⠠⠇⠊⠑⠃⠋⠗â â ¥â â Šâ ‡â ¡" }, { "input": "Liechtenstein", "output": "⠠⠇⠊⠑⠡⠞⠢⠌⠑⠔" }, { "input": "Liege", "output": "⠠⠇⠊⠑⠛⠑" }, { "input": "Lila", "output": "⠠⠇⠊⠇â " }, { "input": "Lilia", "output": "⠠⠇⠊⠇⠊â " }, { "input": "Lilian", "output": "⠠⠇⠊⠇⠊â â " }, { "input": "Liliana", "output": "⠠⠇⠊⠇⠊â â â " }, { "input": "Lilith", "output": "⠠⠇⠊⠇⠊⠹" }, { "input": "Liliuokalani", "output": "⠠⠇⠊⠇⠊⠥⠕⠅â â ‡â â â Š" }, { "input": "Lille", "output": "⠠⠇⠊⠇⠇⠑" }, { "input": "Lillian", "output": "⠠⠇⠊⠇⠇⠊â â " }, { "input": "Lillie", "output": "⠠⠇⠊⠇⠇⠊⠑" }, { "input": "Lilliput", "output": "⠠⠇⠊⠇⠇⠊â â ¥â ž" }, { "input": "Lilliputian", "output": "⠠⠇⠊⠇⠇⠊â â ¥â žâ Šâ â " }, { "input": "Lilliputians", "output": "⠠⠇⠊⠇⠇⠊â â ¥â žâ Šâ â â Ž" }, { "input": "Lilly", "output": "⠠⠇⠊⠇⠇⠽" }, { "input": "Lilongwe", "output": "⠠⠇⠊⠇⠰⠛⠺⠑" }, { "input": "Lily", "output": "⠠⠇⠊⠇⠽" }, { "input": "Lima", "output": "⠠⠇⠊â â " }, { "input": "Limbaugh", "output": "⠠⠇⠊â â ƒâ â ¥â £" }, { "input": "Limburger", "output": "⠠⠇⠊â â ƒâ ¥â —⠛⠻" }, { "input": "Limoges", "output": "⠠⠇⠊â â •⠛⠑⠎" }, { "input": "Limousin", "output": "⠠⠇⠊â â ³â Žâ ”" }, { "input": "Limpopo", "output": "⠠⠇⠊â â â •â â •" }, { "input": "Lin", "output": "⠠⠇⠔" }, { "input": "Lina", "output": "⠠⠇⠔â " }, { "input": "Lincoln", "output": "⠠⠇⠔⠉⠕⠇â " }, { "input": "Lincolns", "output": "⠠⠇⠔⠉⠕⠇â â Ž" }, { "input": "Lind", "output": "⠠⠇⠔⠙" }, { "input": "Linda", "output": "⠠⠇⠔⠙â " }, { "input": "Lindbergh", "output": "⠠⠇⠔⠙⠃⠻⠣" }, { "input": "Lindsay", "output": "⠠⠇⠔⠙⠎â â ½" }, { "input": "Lindsey", "output": "⠠⠇⠔⠙⠎⠑⠽" }, { "input": "Lindy", "output": "⠠⠇⠔⠙⠽" }, { "input": "Linnaeus", "output": "⠠⠇⠔â â â ‘⠥⠎" }, { "input": "Linotype", "output": "⠠⠇⠔⠕⠞⠽â â ‘" }, { "input": "Linton", "output": "⠠⠇⠔⠞⠕â " }, { "input": "Linus", "output": "⠠⠇⠔⠥⠎" }, { "input": "Linux", "output": "⠠⠇⠔⠥⠭" }, { "input": "Linwood", "output": "⠠⠇⠔⠺⠕⠕⠙" }, { "input": "Lionel", "output": "⠠⠇⠊⠕â â ‘â ‡" }, { "input": "Lipizzaner", "output": "⠠⠇⠊â â Šâ µâ µâ â â »" }, { "input": "Lippi", "output": "⠠⠇⠊â â â Š" }, { "input": "Lippmann", "output": "⠠⠇⠊â â â â â â " }, { "input": "Lipscomb", "output": "⠠⠇⠊â â Žâ ‰â •â â ƒ" }, { "input": "Lipton", "output": "⠠⠇⠊â â žâ •â " }, { "input": "Lisa", "output": "⠠⠇⠊⠎â " }, { "input": "Lisbon", "output": "⠠⠇⠊⠎⠃⠕â " }, { "input": "Lissajous", "output": "⠠⠇⠊⠎⠎â â šâ ³â Ž" }, { "input": "Lister", "output": "⠠⠇⠊⠌⠻" }, { "input": "Listerine", "output": "⠠⠇⠊⠌⠻⠔⠑" }, { "input": "Liston", "output": "⠠⠇⠊⠌⠕â " }, { "input": "Liszt", "output": "⠠⠇⠊⠎⠵⠞" }, { "input": "Lithuania", "output": "⠠⠇⠊⠹⠥â â â Šâ " }, { "input": "Lithuanian", "output": "⠠⠇⠊⠹⠥â â â Šâ â " }, { "input": "Lithuanians", "output": "⠠⠇⠊⠹⠥â â â Šâ â â Ž" }, { "input": "Little", "output": "⠠⠇⠇" }, { "input": "Litton", "output": "⠠⠇⠊⠞⠞⠕â " }, { "input": "Liverpool", "output": "⠠⠇⠊⠧⠻â â •â •â ‡" }, { "input": "Liverpudlian", "output": "⠠⠇⠊⠧⠻â â ¥â ™â ‡â Šâ â " }, { "input": "Livia", "output": "⠠⠇⠊⠧⠊â " }, { "input": "Livingston", "output": "⠠⠇⠊⠧⠬⠌⠕â " }, { "input": "Livingstone", "output": "⠠⠇⠊⠧⠬⠌â â •" }, { "input": "Livonia", "output": "⠠⠇⠊⠧⠕â â Šâ " }, { "input": "Livy", "output": "⠠⠇⠊⠧⠽" }, { "input": "Liz", "output": "⠠⠇⠊⠵" }, { "input": "Liza", "output": "⠠⠇⠊⠵â " }, { "input": "Lizzie", "output": "⠠⠇⠊⠵⠵⠊⠑" }, { "input": "Lizzy", "output": "⠠⠇⠊⠵⠵⠽" }, { "input": "Ljubljana", "output": "⠠⠇⠚⠥⠃⠇⠚â â â " }, { "input": "Llewellyn", "output": "⠠⠇⠇⠑⠺⠑⠇⠇⠽â " }, { "input": "Lloyd", "output": "⠠⠇⠇⠕⠽⠙" }, { "input": "Ln", "output": "â  â ‡â " }, { "input": "Loafer", "output": "⠠⠇⠕â â ‹â »" }, { "input": "Loafers", "output": "⠠⠇⠕â â ‹â »â Ž" }, { "input": "Lobachevsky", "output": "⠠⠇⠕⠃â â ¡â ‘â §â Žâ …â ½" }, { "input": "Lochinvar", "output": "⠠⠇⠕⠡⠔⠧⠜" }, { "input": "Locke", "output": "⠠⠇⠕⠉⠅⠑" }, { "input": "Lockean", "output": "⠠⠇⠕⠉⠅⠂â " }, { "input": "Lockheed", "output": "⠠⠇⠕⠉⠅⠓⠑⠫" }, { "input": "Lockwood", "output": "⠠⠇⠕⠉⠅⠺⠕⠕⠙" }, { "input": "Lodge", "output": "⠠⠇⠕⠙⠛⠑" }, { "input": "Lodz", "output": "⠠⠇⠕⠙⠵" }, { "input": "Loewe", "output": "⠠⠇⠕⠑⠺⠑" }, { "input": "Loewi", "output": "⠠⠇⠕⠑⠺⠊" }, { "input": "Loews", "output": "⠠⠇⠕⠑⠺⠎" }, { "input": "Logan", "output": "⠠⠇⠕⠛â â " }, { "input": "Lohengrin", "output": "⠠⠇⠕⠓⠢⠛⠗⠔" }, { "input": "Loire", "output": "⠠⠇⠕⠊⠗⠑" }, { "input": "Lois", "output": "⠠⠇⠕⠊⠎" }, { "input": "Loki", "output": "⠠⠇⠕⠅⠊" }, { "input": "Lola", "output": "⠠⠇⠕⠇â " }, { "input": "Lolita", "output": "⠠⠇⠕⠇⠊⠞â " }, { "input": "Lollard", "output": "⠠⠇⠕⠇⠇⠜⠙" }, { "input": "Lollobrigida", "output": "⠠⠇⠕⠇⠇⠕⠃⠗⠊⠛⠊⠙â " }, { "input": "Lombard", "output": "⠠⠇⠕â â ƒâ œâ ™" }, { "input": "Lombardi", "output": "⠠⠇⠕â â ƒâ œâ ™â Š" }, { "input": "Lombardy", "output": "⠠⠇⠕â â ƒâ œâ ™â ½" }, { "input": "Lome", "output": "⠠⠇⠕â â ‘" }, { "input": "Lon", "output": "⠠⠇⠕â " }, { "input": "London", "output": "⠠⠇⠕â â ™â •â " }, { "input": "Londoner", "output": "⠠⠇⠕â â ™â •â â »" }, { "input": "Long", "output": "⠠⠇⠰⠛" }, { "input": "Longfellow", "output": "⠠⠇⠰⠛⠋⠑⠇⠇⠪" }, { "input": "Longstreet", "output": "⠠⠇⠰⠛⠌⠗⠑⠑⠞" }, { "input": "Lonnie", "output": "⠠⠇⠕â â â Šâ ‘" }, { "input": "Lopez", "output": "⠠⠇⠕â â ‘â µ" }, { "input": "Lora", "output": "⠠⠇⠕⠗â " }, { "input": "Loraine", "output": "⠠⠇⠕⠗â â ”â ‘" }, { "input": "Lord", "output": "â  â â ‡" }, { "input": "Lords", "output": "â  â â ‡â Ž" }, { "input": "Lorelei", "output": "⠠⠇⠕⠗⠑⠇⠑⠊" }, { "input": "Loren", "output": "⠠⠇⠕⠗⠢" }, { "input": "Lorena", "output": "⠠⠇⠕⠗⠢â " }, { "input": "Lorene", "output": "⠠⠇⠕⠗⠢⠑" }, { "input": "Lorentz", "output": "⠠⠇⠕⠗⠢⠞⠵" }, { "input": "Lorenz", "output": "⠠⠇⠕⠗⠢⠵" }, { "input": "Lorenzo", "output": "⠠⠇⠕⠗⠢⠵⠕" }, { "input": "Loretta", "output": "⠠⠇⠕⠗⠑⠞⠞â " }, { "input": "Lori", "output": "⠠⠇⠕⠗⠊" }, { "input": "Lorie", "output": "⠠⠇⠕⠗⠊⠑" }, { "input": "Lorna", "output": "⠠⠇⠕⠗â â " }, { "input": "Lorraine", "output": "⠠⠇⠕⠗⠗â â ”â ‘" }, { "input": "Lorre", "output": "⠠⠇⠕⠗⠗⠑" }, { "input": "Lorrie", "output": "⠠⠇⠕⠗⠗⠊⠑" }, { "input": "Lot", "output": "⠠⠇⠕⠞" }, { "input": "Lothario", "output": "⠠⠇⠕⠹⠜⠊⠕" }, { "input": "Lott", "output": "⠠⠇⠕⠞⠞" }, { "input": "Lottie", "output": "⠠⠇⠕⠞⠞⠊⠑" }, { "input": "Lou", "output": "⠠⠇⠳" }, { "input": "Louella", "output": "⠠⠇⠳⠑⠇⠇â " }, { "input": "Louie", "output": "⠠⠇⠳⠊⠑" }, { "input": "Louis", "output": "⠠⠇⠳⠊⠎" }, { "input": "Louisa", "output": "⠠⠇⠳⠊⠎â " }, { "input": "Louise", "output": "⠠⠇⠳⠊⠎⠑" }, { "input": "Louisiana", "output": "⠠⠇⠳⠊⠎⠊â â â " }, { "input": "Louisianan", "output": "⠠⠇⠳⠊⠎⠊â â â â " }, { "input": "Louisianans", "output": "⠠⠇⠳⠊⠎⠊â â â â â Ž" }, { "input": "Louisianian", "output": "⠠⠇⠳⠊⠎⠊â â â Šâ â " }, { "input": "Louisianians", "output": "⠠⠇⠳⠊⠎⠊â â â Šâ â â Ž" }, { "input": "Louisville", "output": "⠠⠇⠳⠊⠎⠧⠊⠇⠇⠑" }, { "input": "Lourdes", "output": "⠠⠇⠳⠗⠙⠑⠎" }, { "input": "Louvre", "output": "⠠⠇⠳⠧⠗⠑" }, { "input": "Love", "output": "⠠⠇⠕⠧⠑" }, { "input": "Lovecraft", "output": "⠠⠇⠕⠧⠑⠉⠗â â ‹â ž" }, { "input": "Lovelace", "output": "⠠⠇⠕⠧⠑⠇â â ‰â ‘" }, { "input": "Lowe", "output": "⠠⠇⠪⠑" }, { "input": "Lowell", "output": "⠠⠇⠪⠑⠇⠇" }, { "input": "Lowenbrau", "output": "⠠⠇⠪⠢⠃⠗â â ¥" }, { "input": "Lowery", "output": "⠠⠇⠪⠻⠽" }, { "input": "Loyang", "output": "⠠⠇⠕⠽â â â ›" }, { "input": "Loyd", "output": "⠠⠇⠕⠽⠙" }, { "input": "Loyola", "output": "⠠⠇⠕⠽⠕⠇â " }, { "input": "Lr", "output": "⠰⠠⠇⠗" }, { "input": "Lt", "output": "⠠⠇⠞" }, { "input": "Ltd", "output": "⠠⠇⠞⠙" }, { "input": "Lu", "output": "⠠⠇⠥" }, { "input": "Luanda", "output": "⠠⠇⠥⠯â " }, { "input": "Luann", "output": "⠠⠇⠥â â â " }, { "input": "Lubavitcher", "output": "⠠⠇⠥⠃â â §â Šâ žâ ¡â »" }, { "input": "Lubbock", "output": "⠠⠇⠥⠆⠕⠉⠅" }, { "input": "Lubumbashi", "output": "⠠⠇⠥⠃⠥â â ƒâ â ©â Š" }, { "input": "Lucas", "output": "⠠⠇⠥⠉â â Ž" }, { "input": "Luce", "output": "⠠⠇⠥⠉⠑" }, { "input": "Lucia", "output": "⠠⠇⠥⠉⠊â " }, { "input": "Lucian", "output": "⠠⠇⠥⠉⠊â â " }, { "input": "Luciano", "output": "⠠⠇⠥⠉⠊â â â •" }, { "input": "Lucien", "output": "⠠⠇⠥⠉⠊⠢" }, { "input": "Lucifer", "output": "⠠⠇⠥⠉⠊⠋⠻" }, { "input": "Lucile", "output": "⠠⠇⠥⠉⠊⠇⠑" }, { "input": "Lucille", "output": "⠠⠇⠥⠉⠊⠇⠇⠑" }, { "input": "Lucinda", "output": "⠠⠇⠥⠉⠔⠙â " }, { "input": "Lucio", "output": "⠠⠇⠥⠉⠊⠕" }, { "input": "Lucite", "output": "⠠⠇⠥⠉⠊⠞⠑" }, { "input": "Lucius", "output": "⠠⠇⠥⠉⠊⠥⠎" }, { "input": "Lucknow", "output": "⠠⠇⠥⠉⠅â â ª" }, { "input": "Lucretia", "output": "⠠⠇⠥⠉⠗⠑⠞⠊â " }, { "input": "Lucretius", "output": "⠠⠇⠥⠉⠗⠑⠞⠊⠥⠎" }, { "input": "Lucy", "output": "⠠⠇⠥⠉⠽" }, { "input": "Luddite", "output": "⠠⠇⠥⠙⠙⠊⠞⠑" }, { "input": "Ludhiana", "output": "⠠⠇⠥⠙⠓⠊â â â " }, { "input": "Ludwig", "output": "⠠⠇⠥⠙⠺⠊⠛" }, { "input": "Luella", "output": "⠠⠇⠥⠑⠇⠇â " }, { "input": "Lufthansa", "output": "⠠⠇⠥⠋⠞⠓â â â Žâ " }, { "input": "Luftwaffe", "output": "⠠⠇⠥⠋⠞⠺â â –â ‘" }, { "input": "Luger", "output": "⠠⠇⠥⠛⠻" }, { "input": "Lugosi", "output": "⠠⠇⠥⠛⠕⠎⠊" }, { "input": "Luigi", "output": "⠠⠇⠥⠊⠛⠊" }, { "input": "Luis", "output": "⠠⠇⠥⠊⠎" }, { "input": "Luisa", "output": "⠠⠇⠥⠊⠎â " }, { "input": "Luke", "output": "⠠⠇⠥⠅⠑" }, { "input": "Lula", "output": "⠠⠇⠥⠇â " }, { "input": "Lully", "output": "⠠⠇⠥⠇⠇⠽" }, { "input": "Lulu", "output": "⠠⠇⠥⠇⠥" }, { "input": "Lumière", "output": "⠠⠇⠥â â Šâ  â ˜â »â â ¡â â £â —â ‘" }, { "input": "Luna", "output": "⠠⠇⠥â â " }, { "input": "Lupe", "output": "⠠⠇⠥â â ‘" }, { "input": "Lupercalia", "output": "⠠⠇⠥â â »â ‰â â ‡â Šâ " }, { "input": "Lupus", "output": "⠠⠇⠥â â ¥â Ž" }, { "input": "Luria", "output": "⠠⠇⠥⠗⠊â " }, { "input": "Lusaka", "output": "⠠⠇⠥⠎â â …â " }, { "input": "Lusitania", "output": "⠠⠇⠥⠎⠊⠞â â â Šâ " }, { "input": "Luther", "output": "⠠⠇⠥⠮⠗" }, { "input": "Lutheran", "output": "⠠⠇⠥⠮⠗â â " }, { "input": "Lutheranism", "output": "⠠⠇⠥⠮⠗â â â Šâ Žâ " }, { "input": "Lutherans", "output": "⠠⠇⠥⠮⠗â â â Ž" }, { "input": "Luvs", "output": "⠠⠇⠥⠧⠎" }, { "input": "Luxembourg", "output": "⠠⠇⠥⠭⠑â â ƒâ ³â —â ›" }, { "input": "Luxembourger", "output": "⠠⠇⠥⠭⠑â â ƒâ ³â —⠛⠻" }, { "input": "Luxembourgers", "output": "⠠⠇⠥⠭⠑â â ƒâ ³â —⠛⠻⠎" }, { "input": "Luz", "output": "⠠⠇⠥⠵" }, { "input": "Luzon", "output": "⠠⠇⠥⠵⠕â " }, { "input": "Lvov", "output": "⠠⠇⠧⠕⠧" }, { "input": "LyX", "output": "⠠⠇⠽⠠⠭" }, { "input": "Lycra", "output": "⠠⠇⠽⠉⠗â " }, { "input": "Lycurgus", "output": "⠠⠇⠽⠉⠥⠗⠛⠥⠎" }, { "input": "Lydia", "output": "⠠⠇⠽⠙⠊â " }, { "input": "Lyell", "output": "⠠⠇⠽⠑⠇⠇" }, { "input": "Lyle", "output": "⠠⠇⠽⠇⠑" }, { "input": "Lyly", "output": "⠠⠇⠽⠇⠽" }, { "input": "Lyman", "output": "⠠⠇⠽â â â " }, { "input": "Lyme", "output": "⠠⠇⠽â â ‘" }, { "input": "Lynch", "output": "⠠⠇⠽â â ¡" }, { "input": "Lynda", "output": "⠠⠇⠽â â ™â " }, { "input": "Lyndon", "output": "⠠⠇⠽â â ™â •â " }, { "input": "Lynette", "output": "⠠⠇⠽â â ‘â žâ žâ ‘" }, { "input": "Lynn", "output": "⠠⠇⠽â â " }, { "input": "Lynne", "output": "⠠⠇⠽â â â ‘" }, { "input": "Lynnette", "output": "⠠⠇⠽â â â ‘â žâ žâ ‘" }, { "input": "Lyon", "output": "⠠⠇⠽⠕â " }, { "input": "Lyons", "output": "⠠⠇⠽⠕â â Ž" }, { "input": "Lyra", "output": "⠠⠇⠽⠗â " }, { "input": "Lysenko", "output": "⠠⠇⠽⠎⠢⠅⠕" }, { "input": "Lysistrata", "output": "⠠⠇⠽⠎⠊⠌⠗â â žâ " }, { "input": "Lysol", "output": "⠠⠇⠽⠎⠕⠇" }, { "input": "M", "output": "â °â  â " }, { "input": "MCI", "output": "â  â  â â ‰â Š" }, { "input": "MGM", "output": "â  â  â â ›â " }, { "input": "MHz", "output": "â  â â  â “â µ" }, { "input": "MIT", "output": "â  â  â â Šâ ž" }, { "input": "Maalox", "output": "â  â â â â ‡â •â ­" }, { "input": "Mabel", "output": "â  â â â ƒâ ‘â ‡" }, { "input": "Mable", "output": "â  â â â ƒâ ‡â ‘" }, { "input": "Mac", "output": "â  â â â ‰" }, { "input": "MacArthur", "output": "â  â â â ‰â  â œâ ¹â ¥â —" }, { "input": "MacBride", "output": "â  â â â ‰â  â ƒâ —⠊⠙⠑" }, { "input": "MacDonald", "output": "â  â â â ‰â  â ™â •â â â ‡â ™" }, { "input": "MacLeish", "output": "â  â â â ‰â  â ‡â ‘â Šâ ©" }, { "input": "Macao", "output": "â  â â â ‰â â •" }, { "input": "Macaulay", "output": "â  â â â ‰â â ¥â ‡â â ½" }, { "input": "Macbeth", "output": "â  â â â ‰â ƒâ ‘â ¹" }, { "input": "Maccabeus", "output": "â  â â â ’â â ƒâ ‘⠥⠎" }, { "input": "Mace", "output": "â  â â â ‰â ‘" }, { "input": "Macedon", "output": "â  â â â ‰â «â •â " }, { "input": "Macedonia", "output": "â  â â â ‰â «â •â â Šâ " }, { "input": "Macedonian", "output": "â  â â â ‰â «â •â â Šâ â " }, { "input": "Macedonians", "output": "â  â â â ‰â «â •â â Šâ â â Ž" }, { "input": "Mach", "output": "â  â â â ¡" }, { "input": "Machiavelli", "output": "â  â â â ¡â Šâ â §â ‘⠇⠇⠊" }, { "input": "Machiavellian", "output": "â  â â â ¡â Šâ â §â ‘⠇⠇⠊â â " }, { "input": "Macias", "output": "â  â â â ‰â Šâ â Ž" }, { "input": "Macintosh", "output": "â  â â â ‰â ”â žâ •â ©" }, { "input": "Mack", "output": "â  â â â ‰â …" }, { "input": "Mackenzie", "output": "â  â â â ‰â …⠢⠵⠊⠑" }, { "input": "Mackinac", "output": "â  â â â ‰â …â ”â â ‰" }, { "input": "Mackinaw", "output": "â  â â â ‰â …â ”â â º" }, { "input": "Macmillan", "output": "â  â â â ‰â â Šâ ‡â ‡â â " }, { "input": "Macon", "output": "â  â â â ‰â •â " }, { "input": "Macumba", "output": "â  â â â ‰â ¥â â ƒâ " }, { "input": "Macy", "output": "â  â â â ‰â ½" }, { "input": "Madagascan", "output": "â  â â â ™â â ›â â Žâ ‰â â " }, { "input": "Madagascans", "output": "â  â â â ™â â ›â â Žâ ‰â â â Ž" }, { "input": "Madagascar", "output": "â  â â â ™â â ›â â Žâ ‰â œ" }, { "input": "Madden", "output": "â  â â â ™â ™â ¢" }, { "input": "Maddox", "output": "â  â â â ™â ™â •â ­" }, { "input": "Madeira", "output": "â  â â â ™â ‘â Šâ —â " }, { "input": "Madeiras", "output": "â  â â â ™â ‘â Šâ —â â Ž" }, { "input": "Madeleine", "output": "â  â â â ™â ‘⠇⠑⠔⠑" }, { "input": "Madeline", "output": "â  â â â ™â ‘⠇⠔⠑" }, { "input": "Madelyn", "output": "â  â â â ™â ‘⠇⠽â " }, { "input": "Madge", "output": "â  â â â ™â ›â ‘" }, { "input": "Madison", "output": "â  â â â ™â Šâ Žâ •â " }, { "input": "Madonna", "output": "â  â â â ™â •â â â " }, { "input": "Madonnas", "output": "â  â â â ™â •â â â â Ž" }, { "input": "Madras", "output": "â  â â â ™â —â â Ž" }, { "input": "Madrid", "output": "â  â â â ™â —â Šâ ™" }, { "input": "Madurai", "output": "â  â â â ™â ¥â —â â Š" }, { "input": "Mae", "output": "â  â â â ‘" }, { "input": "Maeterlinck", "output": "â  â â â ‘⠞⠻⠇⠔⠉⠅" }, { "input": "Mafia", "output": "â  â â â ‹â Šâ " }, { "input": "Mafias", "output": "â  â â â ‹â Šâ â Ž" }, { "input": "Mafioso", "output": "â  â â â ‹â Šâ •â Žâ •" }, { "input": "Magdalena", "output": "â  â â â ›â ™â â ‡â ¢â " }, { "input": "Magdalene", "output": "â  â â â ›â ™â â ‡â ¢â ‘" }, { "input": "Magellan", "output": "â  â â â ›â ‘⠇⠇â â " }, { "input": "Magellanic", "output": "â  â â â ›â ‘⠇⠇â â â Šâ ‰" }, { "input": "Maggie", "output": "â  â â â ¶â Šâ ‘" }, { "input": "Maghreb", "output": "â  â â â £â —â ‘â ƒ" }, { "input": "Magi", "output": "â  â â â ›â Š" }, { "input": "Maginot", "output": "â  â â â ›â ”â •â ž" }, { "input": "Magnitogorsk", "output": "â  â â â ›â â Šâ žâ •⠛⠕⠗⠎⠅" }, { "input": "Magog", "output": "â  â â â ›â •â ›" }, { "input": "Magoo", "output": "â  â â â ›â •â •" }, { "input": "Magritte", "output": "â  â â â ›â —â Šâ žâ žâ ‘" }, { "input": "Magsaysay", "output": "â  â â â ›â Žâ â ½â Žâ â ½" }, { "input": "Magyar", "output": "â  â â â ›â ½â œ" }, { "input": "Magyars", "output": "â  â â â ›â ½â œâ Ž" }, { "input": "Mahabharata", "output": "â  â â â “â â ƒâ “â œâ â žâ " }, { "input": "Maharashtra", "output": "â  â â â “â œâ â ©â žâ —â " }, { "input": "Mahavira", "output": "â  â â â “â â §â Šâ —â " }, { "input": "Mahayana", "output": "â  â â â “â â ½â â â " }, { "input": "Mahayanist", "output": "â  â â â “â â ½â â â Šâ Œ" }, { "input": "Mahdi", "output": "â  â â â “⠙⠊" }, { "input": "Mahfouz", "output": "â  â â â “⠋⠳⠵" }, { "input": "Mahican", "output": "â  â â â “â Šâ ‰â â " }, { "input": "Mahicans", "output": "â  â â â “â Šâ ‰â â â Ž" }, { "input": "Mahler", "output": "â  â â â “⠇⠻" }, { "input": "Mai", "output": "â  â â â Š" }, { "input": "Maidenform", "output": "â  â â â Šâ ™â ¢â ¿â " }, { "input": "Maigret", "output": "â  â â â Šâ ›â —â ‘â ž" }, { "input": "Mailer", "output": "â  â â â Šâ ‡â »" }, { "input": "Maillol", "output": "â  â â â Šâ ‡â ‡â •â ‡" }, { "input": "Maiman", "output": "â  â â â Šâ â â " }, { "input": "Maimonides", "output": "â  â â â Šâ â •â â Šâ ™â ‘â Ž" }, { "input": "Maine", "output": "â  â â â ”â ‘" }, { "input": "Maisie", "output": "â  â â â Šâ Žâ Šâ ‘" }, { "input": "Maitreya", "output": "â  â â â Šâ žâ —â ‘â ½â " }, { "input": "Maj", "output": "â  â â â š" }, { "input": "Major", "output": "â  â â â šâ •â —" }, { "input": "Majorca", "output": "â  â â â šâ •â —â ‰â " }, { "input": "Majuro", "output": "â  â â â šâ ¥â —â •" }, { "input": "Makarios", "output": "â  â â â …⠜⠊⠕⠎" }, { "input": "Malabar", "output": "â  â â â ‡â â ƒâ œ" }, { "input": "Malabo", "output": "â  â â â ‡â â ƒâ •" }, { "input": "Malacca", "output": "â  â â â ‡â â ’â " }, { "input": "Malachi", "output": "â  â â â ‡â â ¡â Š" }, { "input": "Malagasy", "output": "â  â â â ‡â â ›â â Žâ ½" }, { "input": "Malamud", "output": "â  â â â ‡â â â ¥â ™" }, { "input": "Malaprop", "output": "â  â â â ‡â â â —â •â " }, { "input": "Malawi", "output": "â  â â â ‡â â ºâ Š" }, { "input": "Malay", "output": "â  â â â ‡â â ½" }, { "input": "Malayalam", "output": "â  â â â ‡â â ½â â ‡â â " }, { "input": "Malayan", "output": "â  â â â ‡â â ½â â " }, { "input": "Malays", "output": "â  â â â ‡â â ½â Ž" }, { "input": "Malaysia", "output": "â  â â â ‡â â ½â Žâ Šâ " }, { "input": "Malaysian", "output": "â  â â â ‡â â ½â Žâ Šâ â " }, { "input": "Malaysians", "output": "â  â â â ‡â â ½â Žâ Šâ â â Ž" }, { "input": "Malcolm", "output": "â  â â â ‡â ‰â •â ‡â " }, { "input": "Maldive", "output": "â  â â â ‡â ™â Šâ §â ‘" }, { "input": "Maldives", "output": "â  â â â ‡â ™â Šâ §â ‘â Ž" }, { "input": "Maldivian", "output": "â  â â â ‡â ™â Šâ §â Šâ â " }, { "input": "Maldivians", "output": "â  â â â ‡â ™â Šâ §â Šâ â â Ž" }, { "input": "Maldonado", "output": "â  â â â ‡â ™â •â â â ™â •" }, { "input": "Male", "output": "â  â â â ‡â ‘" }, { "input": "Mali", "output": "â  â â â ‡â Š" }, { "input": "Malian", "output": "â  â â â ‡â Šâ â " }, { "input": "Malians", "output": "â  â â â ‡â Šâ â â Ž" }, { "input": "Malibu", "output": "â  â â â ‡â Šâ ƒâ ¥" }, { "input": "Malinda", "output": "â  â â â ‡â ”â ™â " }, { "input": "Malinowski", "output": "â  â â â ‡â ”⠪⠎⠅⠊" }, { "input": "Mallarmé", "output": "â  â â â ‡â ‡â œâ â  â ˜â »â â ˜â ‰" }, { "input": "Mallomars", "output": "â  â â â ‡â ‡â •â â œâ Ž" }, { "input": "Mallory", "output": "â  â â â ‡â ‡â •â —â ½" }, { "input": "Malone", "output": "â  â â â ‡â â •" }, { "input": "Malory", "output": "â  â â â ‡â •â —â ½" }, { "input": "Malplaquet", "output": "â  â â â ‡â â ‡â â Ÿâ ¥â ‘â ž" }, { "input": "Malraux", "output": "â  â â â ‡â —â â ¥â ­" }, { "input": "Malta", "output": "â  â â â ‡â žâ " }, { "input": "Maltese", "output": "â  â â â ‡â žâ ‘â Žâ ‘" }, { "input": "Malthus", "output": "â  â â â ‡â ¹â ¥â Ž" }, { "input": "Malthusian", "output": "â  â â â ‡â ¹â ¥â Žâ Šâ â " }, { "input": "Mameluke", "output": "â  â â â â ‘⠇⠥⠅⠑" }, { "input": "Mamet", "output": "â  â â â â ‘â ž" }, { "input": "Mamie", "output": "â  â â â â Šâ ‘" }, { "input": "Mammon", "output": "â  â â â â â •â " }, { "input": "Mamore", "output": "â  â â â â •â —â ‘" }, { "input": "Man", "output": "â  â â â " }, { "input": "Managua", "output": "â  â â â â â ›â ¥â " }, { "input": "Manama", "output": "â  â â â â â â " }, { "input": "Manasseh", "output": "â  â â â â â Žâ Žâ ‘â “" }, { "input": "Manaus", "output": "â  â â â â â ¥â Ž" }, { "input": "Manchester", "output": "â  â â â â ¡â ‘⠌⠻" }, { "input": "Manchu", "output": "â  â â â â ¡â ¥" }, { "input": "Manchuria", "output": "â  â â â â ¡â ¥â —â Šâ " }, { "input": "Manchurian", "output": "â  â â â â ¡â ¥â —â Šâ â " }, { "input": "Mancini", "output": "â  â â â â ‰â ”â Š" }, { "input": "Mandalay", "output": "â  â â ¯â â ‡â â ½" }, { "input": "Mandarin", "output": "â  â â ¯â œâ ”" }, { "input": "Mandela", "output": "â  â â ¯â ‘â ‡â " }, { "input": "Mandelbrot", "output": "â  â â ¯â ‘⠇⠃⠗⠕⠞" }, { "input": "Mandingo", "output": "â  â â ¯â ¬â •" }, { "input": "Mandrell", "output": "â  â â ¯â —⠑⠇⠇" }, { "input": "Mandy", "output": "â  â â ¯â ½" }, { "input": "Manet", "output": "â  â â â â ‘â ž" }, { "input": "Manfred", "output": "â  â â â â ‹â —â «" }, { "input": "Manhattan", "output": "â  â â â â “â â žâ žâ â " }, { "input": "Manhattans", "output": "â  â â â â “â â žâ žâ â â Ž" }, { "input": "Mani", "output": "â  â â â â Š" }, { "input": "Manichean", "output": "â  â â â â Šâ ¡â ‚â " }, { "input": "Manila", "output": "â  â â â â Šâ ‡â " }, { "input": "Manilas", "output": "â  â â â â Šâ ‡â â Ž" }, { "input": "Manilla", "output": "â  â â â â Šâ ‡â ‡â " }, { "input": "Manitoba", "output": "â  â â â â Šâ žâ •â ƒâ " }, { "input": "Manitoulin", "output": "â  â â â â Šâ žâ ³â ‡â ”" }, { "input": "Manley", "output": "â  â â â â ‡â ‘â ½" }, { "input": "Mann", "output": "â  â â â â " }, { "input": "Mannheim", "output": "â  â â â â â “â ‘â Šâ " }, { "input": "Manning", "output": "â  â â â â â ¬" }, { "input": "Mansfield", "output": "â  â â â â Žâ ‹â Šâ ‘⠇⠙" }, { "input": "Manson", "output": "â  â â â â Žâ •â " }, { "input": "Mantegna", "output": "â  â â â â žâ ‘â ›â â " }, { "input": "Mantle", "output": "â  â â â â žâ ‡â ‘" }, { "input": "Manuel", "output": "â  â â â â ¥â ‘â ‡" }, { "input": "Manuela", "output": "â  â â â â ¥â ‘â ‡â " }, { "input": "Manx", "output": "â  â â â â ­" }, { "input": "Mao", "output": "â  â â â •" }, { "input": "Maoism", "output": "â  â â â •â Šâ Žâ " }, { "input": "Maoisms", "output": "â  â â â •â Šâ Žâ â Ž" }, { "input": "Maoist", "output": "â  â â â •â Šâ Œ" }, { "input": "Maoists", "output": "â  â â â •⠊⠌⠎" }, { "input": "Maori", "output": "â  â â â •â —â Š" }, { "input": "Maoris", "output": "â  â â â •â —â Šâ Ž" }, { "input": "Mapplethorpe", "output": "â  â â â â â ‡â ‘⠹⠕⠗â â ‘" }, { "input": "Maputo", "output": "â  â â â â ¥â žâ •" }, { "input": "Mar", "output": "â  â â œ" }, { "input": "Mara", "output": "â  â â œâ " }, { "input": "Maracaibo", "output": "â  â â œâ â ‰â â Šâ ƒâ •" }, { "input": "Marat", "output": "â  â â œâ â ž" }, { "input": "Maratha", "output": "â  â â œâ â ¹â " }, { "input": "Marathi", "output": "â  â â œâ â ¹â Š" }, { "input": "Marathon", "output": "â  â â œâ â ¹â •â " }, { "input": "Marc", "output": "â  â â œâ ‰" }, { "input": "Marceau", "output": "â  â â œâ ‰â ‚â ¥" }, { "input": "Marcel", "output": "â  â â œâ ‰â ‘â ‡" }, { "input": "Marcelino", "output": "â  â â œâ ‰â ‘⠇⠔⠕" }, { "input": "Marcella", "output": "â  â â œâ ‰â ‘⠇⠇â " }, { "input": "Marcelo", "output": "â  â â œâ ‰â ‘⠇⠕" }, { "input": "March", "output": "â  â â œâ ¡" }, { "input": "Marches", "output": "â  â â œâ ¡â ‘â Ž" }, { "input": "Marci", "output": "â  â â œâ ‰â Š" }, { "input": "Marcia", "output": "â  â â œâ ‰â Šâ " }, { "input": "Marciano", "output": "â  â â œâ ‰â Šâ â â •" }, { "input": "Marcie", "output": "â  â â œâ ‰â Šâ ‘" }, { "input": "Marco", "output": "â  â â œâ ‰â •" }, { "input": "Marconi", "output": "â  â â œâ ‰â •â â Š" }, { "input": "Marcos", "output": "â  â â œâ ‰â •â Ž" }, { "input": "Marcus", "output": "â  â â œâ ‰â ¥â Ž" }, { "input": "Marcy", "output": "â  â â œâ ‰â ½" }, { "input": "Marduk", "output": "â  â â œâ ™â ¥â …" }, { "input": "Margaret", "output": "â  â â œâ ›â œâ ‘â ž" }, { "input": "Margarita", "output": "â  â â œâ ›â œâ Šâ žâ " }, { "input": "Margarito", "output": "â  â â œâ ›â œâ Šâ žâ •" }, { "input": "Marge", "output": "â  â â œâ ›â ‘" }, { "input": "Margery", "output": "â  â â œâ ›â »â ½" }, { "input": "Margie", "output": "â  â â œâ ›â Šâ ‘" }, { "input": "Margo", "output": "â  â â œâ ›â •" }, { "input": "Margret", "output": "â  â â œâ ›â —â ‘â ž" }, { "input": "Margrethe", "output": "â  â â œâ ›â —â ‘â ®" }, { "input": "Marguerite", "output": "â  â â œâ ›â ¥â »â Šâ žâ ‘" }, { "input": "Mari", "output": "â  â â œâ Š" }, { "input": "Maria", "output": "â  â â œâ Šâ " }, { "input": "Marian", "output": "â  â â œâ Šâ â " }, { "input": "Mariana", "output": "â  â â œâ Šâ â â " }, { "input": "Marianas", "output": "â  â â œâ Šâ â â â Ž" }, { "input": "Marianne", "output": "â  â â œâ Šâ â â â ‘" }, { "input": "Mariano", "output": "â  â â œâ Šâ â â •" }, { "input": "Maribel", "output": "â  â â œâ Šâ ƒâ ‘â ‡" }, { "input": "Maricela", "output": "â  â â œâ Šâ ‰â ‘â ‡â " }, { "input": "Marie", "output": "â  â â œâ Šâ ‘" }, { "input": "Marietta", "output": "â  â â œâ Šâ ‘â žâ žâ " }, { "input": "Marilyn", "output": "â  â â œâ Šâ ‡â ½â " }, { "input": "Marin", "output": "â  â â œâ ”" }, { "input": "Marina", "output": "â  â â œâ ”â " }, { "input": "Marine", "output": "â  â â œâ ”â ‘" }, { "input": "Marines", "output": "â  â â œâ ”â ‘â Ž" }, { "input": "Mario", "output": "â  â â œâ Šâ •" }, { "input": "Marion", "output": "â  â â œâ Šâ •â " }, { "input": "Maris", "output": "â  â â œâ Šâ Ž" }, { "input": "Marisa", "output": "â  â â œâ Šâ Žâ " }, { "input": "Marisol", "output": "â  â â œâ Šâ Žâ •â ‡" }, { "input": "Marissa", "output": "â  â â œâ Šâ Žâ Žâ " }, { "input": "Maritain", "output": "â  â â œâ Šâ žâ â ”" }, { "input": "Maritza", "output": "â  â â œâ Šâ žâ µâ " }, { "input": "Marius", "output": "â  â â œâ Šâ ¥â Ž" }, { "input": "Marjorie", "output": "â  â â œâ šâ •â —â Šâ ‘" }, { "input": "Marjory", "output": "â  â â œâ šâ •â —â ½" }, { "input": "Mark", "output": "â  â â œâ …" }, { "input": "Markab", "output": "â  â â œâ …â â ƒ" }, { "input": "Markham", "output": "â  â â œâ …â “â â " }, { "input": "Markov", "output": "â  â â œâ …â •â §" }, { "input": "Marks", "output": "â  â â œâ …â Ž" }, { "input": "Marla", "output": "â  â â œâ ‡â " }, { "input": "Marlboro", "output": "â  â â œâ ‡â ƒâ •â —â •" }, { "input": "Marlborough", "output": "â  â â œâ ‡â ƒâ •⠗⠳⠣" }, { "input": "Marlene", "output": "â  â â œâ ‡â ¢â ‘" }, { "input": "Marley", "output": "â  â â œâ ‡â ‘â ½" }, { "input": "Marlin", "output": "â  â â œâ ‡â ”" }, { "input": "Marlon", "output": "â  â â œâ ‡â •â " }, { "input": "Marlowe", "output": "â  â â œâ ‡â ªâ ‘" }, { "input": "Marmara", "output": "â  â â œâ â œâ " }, { "input": "Marne", "output": "â  â â œâ â ‘" }, { "input": "Maronite", "output": "â  â â œâ •â â Šâ žâ ‘" }, { "input": "Marple", "output": "â  â â œâ â ‡â ‘" }, { "input": "Marquesas", "output": "â  â â œâ Ÿâ ¥â ‘â Žâ â Ž" }, { "input": "Marquette", "output": "â  â â œâ Ÿâ ¥â ‘â žâ žâ ‘" }, { "input": "Marquez", "output": "â  â â œâ Ÿâ ¥â ‘â µ" }, { "input": "Marquis", "output": "â  â â œâ Ÿâ ¥â Šâ Ž" }, { "input": "Marquita", "output": "â  â â œâ Ÿâ ¥â Šâ žâ " }, { "input": "Marrakesh", "output": "â  â â œâ —â â …â ‘â ©" }, { "input": "Marriott", "output": "â  â â œâ —â Šâ •â žâ ž" }, { "input": "Mars", "output": "â  â â œâ Ž" }, { "input": "Marsala", "output": "â  â â œâ Žâ â ‡â " }, { "input": "Marseillaise", "output": "â  â â œâ Žâ ‘⠊⠇⠇â â Šâ Žâ ‘" }, { "input": "Marseilles", "output": "â  â â œâ Žâ ‘⠊⠇⠇⠑⠎" }, { "input": "Marsh", "output": "â  â â œâ ©" }, { "input": "Marsha", "output": "â  â â œâ ©â " }, { "input": "Marshall", "output": "â  â â œâ ©â â ‡â ‡" }, { "input": "Marta", "output": "â  â â œâ žâ " }, { "input": "Martel", "output": "â  â â œâ žâ ‘â ‡" }, { "input": "Martha", "output": "â  â â œâ ¹â " }, { "input": "Martial", "output": "â  â â œâ žâ Šâ â ‡" }, { "input": "Martian", "output": "â  â â œâ žâ Šâ â " }, { "input": "Martians", "output": "â  â â œâ žâ Šâ â â Ž" }, { "input": "Martin", "output": "â  â â œâ žâ ”" }, { "input": "Martina", "output": "â  â â œâ žâ ”â " }, { "input": "Martinez", "output": "â  â â œâ žâ ”â ‘â µ" }, { "input": "Martinique", "output": "â  â â œâ žâ ”⠊⠟⠥⠑" }, { "input": "Marty", "output": "â  â â œâ žâ ½" }, { "input": "Marva", "output": "â  â â œâ §â " }, { "input": "Marvell", "output": "â  â â œâ §â ‘⠇⠇" }, { "input": "Marvin", "output": "â  â â œâ §â ”" }, { "input": "Marx", "output": "â  â â œâ ­" }, { "input": "Marxism", "output": "â  â â œâ ­â Šâ Žâ " }, { "input": "Marxisms", "output": "â  â â œâ ­â Šâ Žâ â Ž" }, { "input": "Marxist", "output": "â  â â œâ ­â Šâ Œ" }, { "input": "Marxists", "output": "â  â â œâ ­â Šâ Œâ Ž" }, { "input": "Mary", "output": "â  â â œâ ½" }, { "input": "Maryann", "output": "â  â â œâ ½â â â " }, { "input": "Maryanne", "output": "â  â â œâ ½â â â â ‘" }, { "input": "Maryellen", "output": "â  â â œâ ½â ‘⠇⠇⠢" }, { "input": "Maryland", "output": "â  â â œâ ½â ‡â ¯" }, { "input": "Marylander", "output": "â  â â œâ ½â ‡â ¯â »" }, { "input": "Marylou", "output": "â  â â œâ ½â ‡â ³" }, { "input": "Masada", "output": "â  â â â Žâ â ™â " }, { "input": "Masai", "output": "â  â â â Žâ â Š" }, { "input": "Masaryk", "output": "â  â â â Žâ œâ ½â …" }, { "input": "Mascagni", "output": "â  â â â Žâ ‰â â ›â â Š" }, { "input": "Masefield", "output": "â  â â â Žâ ‘⠋⠊⠑⠇⠙" }, { "input": "Maserati", "output": "â  â â â Žâ »â â žâ Š" }, { "input": "Maseru", "output": "â  â â â Žâ »â ¥" }, { "input": "Mashhad", "output": "â  â â â ©â ¸â “" }, { "input": "Mason", "output": "â  â â â Žâ •â " }, { "input": "Masonic", "output": "â  â â â Žâ •â â Šâ ‰" }, { "input": "Masonite", "output": "â  â â â Žâ •â â Šâ žâ ‘" }, { "input": "Masons", "output": "â  â â â Žâ •â â Ž" }, { "input": "Mass", "output": "â  â â â Žâ Ž" }, { "input": "Massachusetts", "output": "â  â â â Žâ Žâ â ¡â ¥â Žâ ‘â žâ žâ Ž" }, { "input": "Massasoit", "output": "â  â â â Žâ Žâ â Žâ •â Šâ ž" }, { "input": "Massenet", "output": "â  â â â Žâ Žâ ¢â ‘â ž" }, { "input": "Masses", "output": "â  â â â Žâ Žâ ‘â Ž" }, { "input": "Massey", "output": "â  â â â Žâ Žâ ‘â ½" }, { "input": "MasterCard", "output": "â  â â â Œâ »â  â ‰â œâ ™" }, { "input": "Masters", "output": "â  â â â Œâ »â Ž" }, { "input": "Mather", "output": "â  â â â ®â —" }, { "input": "Mathew", "output": "â  â â â ®â º" }, { "input": "Mathews", "output": "â  â â â ®â ºâ Ž" }, { "input": "Mathewson", "output": "â  â â â ®â ºâ Žâ •â " }, { "input": "Mathias", "output": "â  â â â ¹â Šâ â Ž" }, { "input": "Mathis", "output": "â  â â â ¹â Šâ Ž" }, { "input": "Matilda", "output": "â  â â â žâ Šâ ‡â ™â " }, { "input": "Matisse", "output": "â  â â â žâ Šâ Žâ Žâ ‘" }, { "input": "Matt", "output": "â  â â â žâ ž" }, { "input": "Mattel", "output": "â  â â â žâ žâ ‘â ‡" }, { "input": "Matterhorn", "output": "â  â â â žâ žâ »â “â •â —â " }, { "input": "Matthew", "output": "â  â â â žâ ®â º" }, { "input": "Matthews", "output": "â  â â â žâ ®â ºâ Ž" }, { "input": "Matthias", "output": "â  â â â žâ ¹â Šâ â Ž" }, { "input": "Mattie", "output": "â  â â â žâ žâ Šâ ‘" }, { "input": "Maud", "output": "â  â â â ¥â ™" }, { "input": "Maude", "output": "â  â â â ¥â ™â ‘" }, { "input": "Maugham", "output": "â  â â â ¥â £â â " }, { "input": "Maui", "output": "â  â â â ¥â Š" }, { "input": "Maupassant", "output": "â  â â â ¥â â â Žâ Žâ â â ž" }, { "input": "Maura", "output": "â  â â â ¥â —â " }, { "input": "Maureen", "output": "â  â â â ¥â —â ‘â ¢" }, { "input": "Mauriac", "output": "â  â â â ¥â —â Šâ â ‰" }, { "input": "Maurice", "output": "â  â â â ¥â —⠊⠉⠑" }, { "input": "Mauricio", "output": "â  â â â ¥â —⠊⠉⠊⠕" }, { "input": "Maurine", "output": "â  â â â ¥â —⠔⠑" }, { "input": "Mauritania", "output": "â  â â â ¥â —â Šâ žâ â â Šâ " }, { "input": "Mauritius", "output": "â  â â â ¥â —⠊⠞⠊⠥⠎" }, { "input": "Mauro", "output": "â  â â â ¥â —â •" }, { "input": "Maurois", "output": "â  â â â ¥â —â •â Šâ Ž" }, { "input": "Mauryan", "output": "â  â â â ¥â —â ½â â " }, { "input": "Mauser", "output": "â  â â â ¥â Žâ »" }, { "input": "Mavis", "output": "â  â â â §â Šâ Ž" }, { "input": "Max", "output": "â  â â â ­" }, { "input": "Maximilian", "output": "â  â â â ­â Šâ â Šâ ‡â Šâ â " }, { "input": "Maxine", "output": "â  â â â ­â ”â ‘" }, { "input": "Maxwell", "output": "â  â â â ­â ºâ ‘⠇⠇" }, { "input": "May", "output": "â  â â â ½" }, { "input": "Maya", "output": "â  â â â ½â " }, { "input": "Mayan", "output": "â  â â â ½â â " }, { "input": "Mayans", "output": "â  â â â ½â â â Ž" }, { "input": "Mayas", "output": "â  â â â ½â â Ž" }, { "input": "Mayer", "output": "â  â â â ½â »" }, { "input": "Mayfair", "output": "â  â â â ½â ‹â â Šâ —" }, { "input": "Mayflower", "output": "â  â â â ½â ‹â ‡â ªâ »" }, { "input": "Maynard", "output": "â  â â â ½â â œâ ™" }, { "input": "Mayo", "output": "â  â â â ½â •" }, { "input": "Mayra", "output": "â  â â â ½â —â " }, { "input": "Mays", "output": "â  â â â ½â Ž" }, { "input": "Maytag", "output": "â  â â â ½â žâ â ›" }, { "input": "Mazama", "output": "â  â â â µâ â â " }, { "input": "Mazarin", "output": "â  â â â µâ œâ ”" }, { "input": "Mazatlan", "output": "â  â â â µâ â žâ ‡â â " }, { "input": "Mazda", "output": "â  â â â µâ ™â " }, { "input": "Mazola", "output": "â  â â â µâ •â ‡â " }, { "input": "Mazzini", "output": "â  â â â µâ µâ ”â Š" }, { "input": "Mb", "output": "â  â â ƒ" }, { "input": "Mbabane", "output": "â  â â ƒâ â ƒâ â â ‘" }, { "input": "Mbini", "output": "â  â â ƒâ ”â Š" }, { "input": "McAdam", "output": "â  â â ‰â  â â ™â â " }, { "input": "McBride", "output": "â  â â ‰â  â ƒâ —⠊⠙⠑" }, { "input": "McCain", "output": "â  â â ‰â  â ‰â â ”" }, { "input": "McCall", "output": "â  â â ‰â  â ‰â â ‡â ‡" }, { "input": "McCarthy", "output": "â  â â ‰â  â ‰â œâ ¹â ½" }, { "input": "McCarthyism", "output": "â  â â ‰â  â ‰â œâ ¹â ½â Šâ Žâ " }, { "input": "McCartney", "output": "â  â â ‰â  â ‰â œâ žâ â ‘â ½" }, { "input": "McCarty", "output": "â  â â ‰â  â ‰â œâ žâ ½" }, { "input": "McClain", "output": "â  â â ‰â  â ‰â ‡â â ”" }, { "input": "McClellan", "output": "â  â â ‰â  â ‰â ‡â ‘⠇⠇â â " }, { "input": "McClure", "output": "â  â â ‰â  â ‰â ‡â ¥â —â ‘" }, { "input": "McConnell", "output": "â  â â ‰â  â ‰â •â â â ‘⠇⠇" }, { "input": "McCormick", "output": "â  â â ‰â  â ‰â •â —â â Šâ ‰â …" }, { "input": "McCoy", "output": "â  â â ‰â  â ‰â •â ½" }, { "input": "McCray", "output": "â  â â ‰â  â ‰â —â â ½" }, { "input": "McCullough", "output": "â  â â ‰â  â ‰â ¥â ‡â ‡â ³â £" }, { "input": "McDaniel", "output": "â  â â ‰â  â ™â â â Šâ ‘â ‡" }, { "input": "McDonald", "output": "â  â â ‰â  â ™â •â â â ‡â ™" }, { "input": "McDonnell", "output": "â  â â ‰â  â ™â •â â â ‘⠇⠇" }, { "input": "McDowell", "output": "â  â â ‰â  â ™â ªâ ‘⠇⠇" }, { "input": "McEnroe", "output": "â  â â ‰â  â ¢â —â •â ‘" }, { "input": "McFadden", "output": "â  â â ‰â  â ‹â â ™â ™â ¢" }, { "input": "McFarland", "output": "â  â â ‰â  â ‹â œâ ‡â ¯" }, { "input": "McGee", "output": "â  â â ‰â  â ›â ‘â ‘" }, { "input": "McGovern", "output": "â  â â ‰â  â ›â •â §â »â " }, { "input": "McGowan", "output": "â  â â ‰â  â ›â ªâ â " }, { "input": "McGuffey", "output": "â  â â ‰â  â ›â ¥â –â ‘â ½" }, { "input": "McGuire", "output": "â  â â ‰â  â ›â ¥â Šâ —â ‘" }, { "input": "McIntosh", "output": "â  â â ‰â  â ”â žâ •â ©" }, { "input": "McIntyre", "output": "â  â â ‰â  â ”⠞⠽⠗⠑" }, { "input": "McKay", "output": "â  â â ‰â  â …â â ½" }, { "input": "McKee", "output": "â  â â ‰â  â …â ‘â ‘" }, { "input": "McKenzie", "output": "â  â â ‰â  â …⠢⠵⠊⠑" }, { "input": "McKinley", "output": "â  â â ‰â  â …⠔⠇⠑⠽" }, { "input": "McKinney", "output": "â  â â ‰â  â …â ”â â ‘â ½" }, { "input": "McKnight", "output": "â  â â ‰â  â …â â Šâ £â ž" }, { "input": "McLaughlin", "output": "â  â â ‰â  â ‡â â ¥â £â ‡â ”" }, { "input": "McLean", "output": "â  â â ‰â  â ‡â ‚â " }, { "input": "McLeod", "output": "â  â â ‰â  â ‡â ‘â •â ™" }, { "input": "McLuhan", "output": "â  â â ‰â  â ‡â ¥â “â â " }, { "input": "McMahon", "output": "â  â â ‰â  â â â “â •â " }, { "input": "McMillan", "output": "â  â â ‰â  â â Šâ ‡â ‡â â " }, { "input": "McNamara", "output": "â  â â ‰â  â â â â œâ " }, { "input": "McNaughton", "output": "â  â â ‰â  â â â ¥â £â žâ •â " }, { "input": "McNeil", "output": "â  â â ‰â  â â ‘â Šâ ‡" }, { "input": "McPherson", "output": "â  â â ‰â  â â “⠻⠎⠕â " }, { "input": "McQueen", "output": "â  â â ‰â  â Ÿâ ¥â ‘â ¢" }, { "input": "McVeigh", "output": "â  â â ‰â  â §â ‘â Šâ £" }, { "input": "Md", "output": "â  â â ™" }, { "input": "Mead", "output": "â  â â ‚â ™" }, { "input": "Meade", "output": "â  â â ‚⠙⠑" }, { "input": "Meadows", "output": "â  â â ‚⠙⠪⠎" }, { "input": "Meagan", "output": "â  â â ‚â ›â â " }, { "input": "Meany", "output": "â  â â ‚â â ½" }, { "input": "Mecca", "output": "â  â â ‘â ’â " }, { "input": "Meccas", "output": "â  â â ‘â ’â â Ž" }, { "input": "Medan", "output": "â  â â «â â " }, { "input": "Medea", "output": "â  â â «â ‘â " }, { "input": "Medellin", "output": "â  â â «â ‘⠇⠇⠔" }, { "input": "Media", "output": "â  â â «â Šâ " }, { "input": "Medicaid", "output": "â  â â «â Šâ ‰â â Šâ ™" }, { "input": "Medicaids", "output": "â  â â «â Šâ ‰â â Šâ ™â Ž" }, { "input": "Medicare", "output": "â  â â «â Šâ ‰â œâ ‘" }, { "input": "Medicares", "output": "â  â â «â Šâ ‰â œâ ‘â Ž" }, { "input": "Medici", "output": "â  â â «â Šâ ‰â Š" }, { "input": "Medina", "output": "â  â â «â ”â " }, { "input": "Mediterranean", "output": "â  â â «â Šâ žâ »â —â â â ‚â " }, { "input": "Mediterraneans", "output": "â  â â «â Šâ žâ »â —â â â ‚â â Ž" }, { "input": "Medusa", "output": "â  â â «â ¥â Žâ " }, { "input": "Meg", "output": "â  â â ‘â ›" }, { "input": "Megan", "output": "â  â â ‘â ›â â " }, { "input": "Meghan", "output": "â  â â ‘â £â â " }, { "input": "Meier", "output": "â  â â ‘â Šâ »" }, { "input": "Meighen", "output": "â  â â ‘⠊⠣⠢" }, { "input": "Meiji", "output": "â  â â ‘â Šâ šâ Š" }, { "input": "Meir", "output": "â  â â ‘â Šâ —" }, { "input": "Mejia", "output": "â  â â ‘â šâ Šâ " }, { "input": "Mekong", "output": "â  â â ‘â …â °â ›" }, { "input": "Mel", "output": "â  â â ‘â ‡" }, { "input": "Melanesia", "output": "â  â â ‘â ‡â â â ‘â Žâ Šâ " }, { "input": "Melanesian", "output": "â  â â ‘â ‡â â â ‘â Žâ Šâ â " }, { "input": "Melanie", "output": "â  â â ‘â ‡â â â Šâ ‘" }, { "input": "Melba", "output": "â  â â ‘⠇⠃â " }, { "input": "Melbourne", "output": "â  â â ‘⠇⠃⠳⠗â â ‘" }, { "input": "Melchior", "output": "â  â â ‘⠇⠡⠊⠕⠗" }, { "input": "Melchizedek", "output": "â  â â ‘⠇⠡⠊⠵⠫⠑⠅" }, { "input": "Melendez", "output": "â  â â ‘⠇⠢⠙⠑⠵" }, { "input": "Melinda", "output": "â  â â ‘⠇⠔⠙â " }, { "input": "Melisa", "output": "â  â â ‘⠇⠊⠎â " }, { "input": "Melisande", "output": "â  â â ‘⠇⠊⠎⠯⠑" }, { "input": "Melissa", "output": "â  â â ‘⠇⠊⠎⠎â " }, { "input": "Mellon", "output": "â  â â ‘⠇⠇⠕â " }, { "input": "Melody", "output": "â  â â ‘⠇⠕⠙⠽" }, { "input": "Melpomene", "output": "â  â â ‘â ‡â â •â â ¢â ‘" }, { "input": "Melton", "output": "â  â â ‘⠇⠞⠕â " }, { "input": "Melva", "output": "â  â â ‘⠇⠧â " }, { "input": "Melville", "output": "â  â â ‘⠇⠧⠊⠇⠇⠑" }, { "input": "Melvin", "output": "â  â â ‘⠇⠧⠔" }, { "input": "Memling", "output": "â  â â ‘â â ‡â ¬" }, { "input": "Memphis", "output": "â  â â ‘â â â “â Šâ Ž" }, { "input": "Menander", "output": "â  â â ¢â ¯â »" }, { "input": "Mencius", "output": "â  â â ¢â ‰â Šâ ¥â Ž" }, { "input": "Mencken", "output": "â  â â ¢â ‰â …â ¢" }, { "input": "Mendel", "output": "â  â â ¢â ™â ‘â ‡" }, { "input": "Mendeleev", "output": "â  â â ¢â ™â ‘⠇⠑⠑⠧" }, { "input": "Mendelian", "output": "â  â â ¢â ™â ‘⠇⠊â â " }, { "input": "Mendelssohn", "output": "â  â â ¢â ™â ‘⠇⠎⠎⠕⠓â " }, { "input": "Mendez", "output": "â  â â ¢â ™â ‘â µ" }, { "input": "Mendocino", "output": "â  â â ¢â ™â •⠉⠔⠕" }, { "input": "Mendoza", "output": "â  â â ¢â ™â •â µâ " }, { "input": "Menelaus", "output": "â  â â ¢â ‘â ‡â â ¥â Ž" }, { "input": "Menelik", "output": "â  â â ¢â ‘⠇⠊⠅" }, { "input": "Menes", "output": "â  â â ¢â ‘â Ž" }, { "input": "Menkalinan", "output": "â  â â ¢â …â â ‡â ”â â " }, { "input": "Menkar", "output": "â  â â ¢â …â œ" }, { "input": "Menkent", "output": "â  â â ¢â …⠢⠞" }, { "input": "Mennen", "output": "â  â â ¢â â ¢" }, { "input": "Mennonite", "output": "â  â â ¢â â •â â Šâ žâ ‘" }, { "input": "Mennonites", "output": "â  â â ¢â â •â â Šâ žâ ‘â Ž" }, { "input": "Menominee", "output": "â  â â ¢â •â â ”â ‘â ‘" }, { "input": "Menotti", "output": "â  â â ¢â •â žâ žâ Š" }, { "input": "Mensa", "output": "â  â â ¢â Žâ " }, { "input": "Mentholatum", "output": "â  â â ¢â ¹â •â ‡â â žâ ¥â " }, { "input": "Menuhin", "output": "â  â â ¢â ¥â “â ”" }, { "input": "Menzies", "output": "â  â â ¢â µâ Šâ ‘â Ž" }, { "input": "Mephistopheles", "output": "â  â â ‘â â “⠊⠌⠕â â “⠑⠇⠑⠎" }, { "input": "Merak", "output": "â  â â »â â …" }, { "input": "Mercado", "output": "â  â â »â ‰â â ™â •" }, { "input": "Mercator", "output": "â  â â »â ‰â â žâ •â —" }, { "input": "Mercedes", "output": "â  â â »â ‰â «â ‘â Ž" }, { "input": "Mercer", "output": "â  â â »â ‰â »" }, { "input": "Mercia", "output": "â  â â »â ‰â Šâ " }, { "input": "Merck", "output": "â  â â »â ‰â …" }, { "input": "Mercuries", "output": "â  â â »â ‰â ¥â —â Šâ ‘â Ž" }, { "input": "Mercurochrome", "output": "â  â â »â ‰â ¥â —â •â ¡â —â •â â ‘" }, { "input": "Mercury", "output": "â  â â »â ‰â ¥â —â ½" }, { "input": "Meredith", "output": "â  â â »â «â Šâ ¹" }, { "input": "Merino", "output": "â  â â »â ”â •" }, { "input": "Merle", "output": "â  â â »â ‡â ‘" }, { "input": "Merlin", "output": "â  â â »â ‡â ”" }, { "input": "Merlot", "output": "â  â â »â ‡â •â ž" }, { "input": "Merovingian", "output": "â  â â »â •⠧⠬⠊â â " }, { "input": "Merriam", "output": "â  â â »â —â Šâ â " }, { "input": "Merrick", "output": "â  â â »â —⠊⠉⠅" }, { "input": "Merrill", "output": "â  â â »â —⠊⠇⠇" }, { "input": "Merrimack", "output": "â  â â »â —â Šâ â â ‰â …" }, { "input": "Merritt", "output": "â  â â »â —â Šâ žâ ž" }, { "input": "Merthiolate", "output": "â  â â »â ¹â Šâ •â ‡â â žâ ‘" }, { "input": "Merton", "output": "â  â â »â žâ •â " }, { "input": "Mervin", "output": "â  â â »â §â ”" }, { "input": "Mesa", "output": "â  â â ‘â Žâ " }, { "input": "Mesabi", "output": "â  â â ‘â Žâ â ƒâ Š" }, { "input": "Mesmer", "output": "â  â â ‘â Žâ â »" }, { "input": "Mesolithic", "output": "â  â â ‘⠎⠕⠇⠊⠹⠊⠉" }, { "input": "Mesopotamia", "output": "â  â â ‘â Žâ •â â •â žâ â â Šâ " }, { "input": "Mesozoic", "output": "â  â â ‘⠎⠕⠵⠕⠊⠉" }, { "input": "Messerschmidt", "output": "â  â â ‘⠎⠎⠻⠎⠡â â Šâ ™â ž" }, { "input": "Messiaen", "output": "â  â â ‘â Žâ Žâ Šâ â ¢" }, { "input": "Messiah", "output": "â  â â ‘â Žâ Žâ Šâ â “" }, { "input": "Messiahs", "output": "â  â â ‘â Žâ Žâ Šâ â “â Ž" }, { "input": "Messianic", "output": "â  â â ‘â Žâ Žâ Šâ â â Šâ ‰" }, { "input": "Metallica", "output": "â  â â ‘â žâ â ‡â ‡â Šâ ‰â " }, { "input": "Metamucil", "output": "â  â â ‘â žâ â â ¥â ‰â Šâ ‡" }, { "input": "Methodism", "output": "â  â â ‘⠹⠕⠙⠊⠎â " }, { "input": "Methodisms", "output": "â  â â ‘⠹⠕⠙⠊⠎â â Ž" }, { "input": "Methodist", "output": "â  â â ‘⠹⠕⠙⠊⠌" }, { "input": "Methodists", "output": "â  â â ‘⠹⠕⠙⠊⠌⠎" }, { "input": "Methuselah", "output": "â  â â ‘⠹⠥⠎⠑⠇â â “" }, { "input": "Metternich", "output": "â  â â ‘â žâ žâ »â â Šâ ¡" }, { "input": "Meuse", "output": "â  â â ‘⠥⠎⠑" }, { "input": "Mexicali", "output": "â  â â ‘â ­â Šâ ‰â â ‡â Š" }, { "input": "Mexican", "output": "â  â â ‘â ­â Šâ ‰â â " }, { "input": "Mexicans", "output": "â  â â ‘â ­â Šâ ‰â â â Ž" }, { "input": "Mexico", "output": "â  â â ‘⠭⠊⠉⠕" }, { "input": "Meyer", "output": "â  â â ‘⠽⠻" }, { "input": "Meyerbeer", "output": "â  â â ‘⠽⠻⠃⠑⠻" }, { "input": "Meyers", "output": "â  â â ‘⠽⠻⠎" }, { "input": "Mfume", "output": "â  â â ‹â ¥â â ‘" }, { "input": "Mg", "output": "â  â â ›" }, { "input": "MiG", "output": "â  â â Šâ  â ›" }, { "input": "Mia", "output": "â  â â Šâ " }, { "input": "Miami", "output": "â  â â Šâ â â Š" }, { "input": "Miamis", "output": "â  â â Šâ â â Šâ Ž" }, { "input": "Miaplacidus", "output": "â  â â Šâ â â ‡â â ‰â Šâ ™â ¥â Ž" }, { "input": "Micah", "output": "â  â â Šâ ‰â â “" }, { "input": "Micawber", "output": "â  â â Šâ ‰â â ºâ ƒâ »" }, { "input": "Mich", "output": "â  â â Šâ ¡" }, { "input": "Michael", "output": "â  â â Šâ ¡â â ‘â ‡" }, { "input": "Micheal", "output": "â  â â Šâ ¡â ‚â ‡" }, { "input": "Michel", "output": "â  â â Šâ ¡â ‘â ‡" }, { "input": "Michelangelo", "output": "â  â â Šâ ¡â ‘â ‡â â â ›â ‘⠇⠕" }, { "input": "Michele", "output": "â  â â Šâ ¡â ‘⠇⠑" }, { "input": "Michelin", "output": "â  â â Šâ ¡â ‘⠇⠔" }, { "input": "Michelle", "output": "â  â â Šâ ¡â ‘⠇⠇⠑" }, { "input": "Michelob", "output": "â  â â Šâ ¡â ‘⠇⠕⠃" }, { "input": "Michelson", "output": "â  â â Šâ ¡â ‘⠇⠎⠕â " }, { "input": "Michigan", "output": "â  â â Šâ ¡â Šâ ›â â " }, { "input": "Michigander", "output": "â  â â Šâ ¡â Šâ ›â ¯â »" }, { "input": "Michiganders", "output": "â  â â Šâ ¡â Šâ ›â ¯â »â Ž" }, { "input": "Mick", "output": "â  â â Šâ ‰â …" }, { "input": "Mickey", "output": "â  â â Šâ ‰â …â ‘â ½" }, { "input": "Mickie", "output": "â  â â Šâ ‰â …â Šâ ‘" }, { "input": "Micky", "output": "â  â â Šâ ‰â …â ½" }, { "input": "Micmac", "output": "â  â â Šâ ‰â â â ‰" }, { "input": "Micronesia", "output": "â  â â Šâ ‰â —â •â â ‘â Žâ Šâ " }, { "input": "Micronesian", "output": "â  â â Šâ ‰â —â •â â ‘â Žâ Šâ â " }, { "input": "Microsoft", "output": "â  â â Šâ ‰â —â •â Žâ ·â ž" }, { "input": "Midas", "output": "â  â â Šâ ™â â Ž" }, { "input": "Middleton", "output": "â  â â Šâ ™â ™â ‡â ‘â žâ •â " }, { "input": "Midland", "output": "â  â â Šâ ™â ‡â ¯" }, { "input": "Midway", "output": "â  â â Šâ ™â ºâ â ½" }, { "input": "Midwest", "output": "â  â â Šâ ™â ºâ ‘â Œ" }, { "input": "Midwestern", "output": "â  â â Šâ ™â ºâ ‘⠌⠻â " }, { "input": "Miguel", "output": "â  â â Šâ ›â ¥â ‘â ‡" }, { "input": "Mike", "output": "â  â â Šâ …â ‘" }, { "input": "Mikhail", "output": "â  â â Šâ …â “â â Šâ ‡" }, { "input": "Mikoyan", "output": "â  â â Šâ …â •â ½â â " }, { "input": "Milagros", "output": "â  â â Šâ ‡â â ›â —â •â Ž" }, { "input": "Milan", "output": "â  â â Šâ ‡â â " }, { "input": "Mildred", "output": "â  â â Šâ ‡â ™â —â «" }, { "input": "Miles", "output": "â  â â Šâ ‡â ‘â Ž" }, { "input": "Milford", "output": "â  â â Šâ ‡â ¿â ™" }, { "input": "Milken", "output": "â  â â Šâ ‡â …â ¢" }, { "input": "Mill", "output": "â  â â Šâ ‡â ‡" }, { "input": "Millard", "output": "â  â â Šâ ‡â ‡â œâ ™" }, { "input": "Millay", "output": "â  â â Šâ ‡â ‡â â ½" }, { "input": "Miller", "output": "â  â â Šâ ‡â ‡â »" }, { "input": "Millet", "output": "â  â â Šâ ‡â ‡â ‘â ž" }, { "input": "Millicent", "output": "â  â â Šâ ‡â ‡â Šâ ‰â ¢â ž" }, { "input": "Millie", "output": "â  â â Šâ ‡â ‡â Šâ ‘" }, { "input": "Millikan", "output": "â  â â Šâ ‡â ‡â Šâ …â â " }, { "input": "Mills", "output": "â  â â Šâ ‡â ‡â Ž" }, { "input": "Milne", "output": "â  â â Šâ ‡â â ‘" }, { "input": "Milo", "output": "â  â â Šâ ‡â •" }, { "input": "Milosevic", "output": "â  â â Šâ ‡â •â Žâ ‘â §â Šâ ‰" }, { "input": "Milquetoast", "output": "â  â â Šâ ‡â Ÿâ ¥â ‘â žâ •â â Œ" }, { "input": "Miltiades", "output": "â  â â Šâ ‡â žâ Šâ â ™â ‘â Ž" }, { "input": "Milton", "output": "â  â â Šâ ‡â žâ •â " }, { "input": "Miltonic", "output": "â  â â Šâ ‡â žâ •â â Šâ ‰" }, { "input": "Miltown", "output": "â  â â Šâ ‡â žâ ªâ " }, { "input": "Milwaukee", "output": "â  â â Šâ ‡â ºâ â ¥â …â ‘â ‘" }, { "input": "Mimi", "output": "â  â â Šâ â Š" }, { "input": "Mimosa", "output": "â  â â Šâ â •â Žâ " }, { "input": "Min", "output": "â  â â ”" }, { "input": "Minamoto", "output": "â  â â ”â â â •â žâ •" }, { "input": "Mindanao", "output": "â  â â ”â ™â â â â •" }, { "input": "Mindoro", "output": "â  â â ”⠙⠕⠗⠕" }, { "input": "Mindy", "output": "â  â â ”⠙⠽" }, { "input": "Minerva", "output": "â  â â ”⠻⠧â " }, { "input": "Ming", "output": "â  â â ¬" }, { "input": "Mingus", "output": "â  â â ¬â ¥â Ž" }, { "input": "Minn", "output": "â  â â ”â " }, { "input": "Minneapolis", "output": "â  â â ”â â ‚â â •⠇⠊⠎" }, { "input": "Minnelli", "output": "â  â â ”â â ‘⠇⠇⠊" }, { "input": "Minnesota", "output": "â  â â ”â â ‘â Žâ •â žâ " }, { "input": "Minnesotan", "output": "â  â â ”â â ‘â Žâ •â žâ â " }, { "input": "Minnesotans", "output": "â  â â ”â â ‘â Žâ •â žâ â â Ž" }, { "input": "Minnie", "output": "â  â â ”â â Šâ ‘" }, { "input": "Minoan", "output": "â  â â ”â •â â " }, { "input": "Minoans", "output": "â  â â ”â •â â â Ž" }, { "input": "Minolta", "output": "â  â â ”⠕⠇⠞â " }, { "input": "Minos", "output": "â  â â ”â •â Ž" }, { "input": "Minot", "output": "â  â â ”â •â ž" }, { "input": "Minotaur", "output": "â  â â ”â •â žâ â ¥â —" }, { "input": "Minsk", "output": "â  â â ”â Žâ …" }, { "input": "Minsky", "output": "â  â â ”â Žâ …â ½" }, { "input": "Mintaka", "output": "â  â â ”â žâ â …â " }, { "input": "Minuit", "output": "â  â â ”⠥⠊⠞" }, { "input": "Miocene", "output": "â  â â Šâ •⠉⠢⠑" }, { "input": "Mir", "output": "â  â â Šâ —" }, { "input": "Mira", "output": "â  â â Šâ —â " }, { "input": "Mirabeau", "output": "â  â â Šâ —â â ƒâ ‚â ¥" }, { "input": "Mirach", "output": "â  â â Šâ —â â ¡" }, { "input": "Miranda", "output": "â  â â Šâ —â ¯â " }, { "input": "Mirfak", "output": "â  â â Šâ —â ‹â â …" }, { "input": "Miriam", "output": "â  â â Šâ —â Šâ â " }, { "input": "Miro", "output": "â  â â Šâ —â •" }, { "input": "Mirzam", "output": "â  â â Šâ —â µâ â " }, { "input": "Miskito", "output": "â  â â Šâ Žâ …â Šâ žâ •" }, { "input": "Miss", "output": "â  â â Šâ Žâ Ž" }, { "input": "Mississauga", "output": "â  â â Šâ Žâ Žâ Šâ Žâ Žâ â ¥â ›â " }, { "input": "Mississippi", "output": "â  â â Šâ Žâ Žâ Šâ Žâ Žâ Šâ â â Š" }, { "input": "Mississippian", "output": "â  â â Šâ Žâ Žâ Šâ Žâ Žâ Šâ â â Šâ â " }, { "input": "Mississippians", "output": "â  â â Šâ Žâ Žâ Šâ Žâ Žâ Šâ â â Šâ â â Ž" }, { "input": "Missouri", "output": "â  â â Šâ Žâ Žâ ³â —â Š" }, { "input": "Missourian", "output": "â  â â Šâ Žâ Žâ ³â —â Šâ â " }, { "input": "Missourians", "output": "â  â â Šâ Žâ Žâ ³â —â Šâ â â Ž" }, { "input": "Missy", "output": "â  â â Šâ Žâ Žâ ½" }, { "input": "Mistassini", "output": "â  â â Šâ Œâ â Žâ Žâ ”â Š" }, { "input": "Mister", "output": "â  â â Šâ Œâ »" }, { "input": "Misty", "output": "â  â â Šâ Œâ ½" }, { "input": "Mitch", "output": "â  â â Šâ žâ ¡" }, { "input": "Mitchel", "output": "â  â â Šâ žâ ¡â ‘â ‡" }, { "input": "Mitchell", "output": "â  â â Šâ žâ ¡â ‘⠇⠇" }, { "input": "Mitford", "output": "â  â â Šâ žâ ¿â ™" }, { "input": "Mithra", "output": "â  â â Šâ ¹â —â " }, { "input": "Mithridates", "output": "â  â â Šâ ¹â —â Šâ ™â â žâ ‘â Ž" }, { "input": "Mitsubishi", "output": "â  â â Šâ žâ Žâ ¥â ƒâ Šâ ©â Š" }, { "input": "Mitterrand", "output": "â  â â Šâ žâ žâ »â —â ¯" }, { "input": "Mitty", "output": "â  â â Šâ žâ žâ ½" }, { "input": "Mitzi", "output": "â  â â Šâ žâ µâ Š" }, { "input": "Mixtec", "output": "â  â â Šâ ­â žâ ‘â ‰" }, { "input": "Mizar", "output": "â  â â Šâ µâ œ" }, { "input": "Mn", "output": "â  â â " }, { "input": "Mnemosyne", "output": "â  â â â ‘â â •â Žâ ½â â ‘" }, { "input": "Mo", "output": "â  â â •" }, { "input": "Mobil", "output": "â  â â •⠃⠊⠇" }, { "input": "Mobile", "output": "â  â â •⠃⠊⠇⠑" }, { "input": "Mobutu", "output": "â  â â •⠃⠥⠞⠥" }, { "input": "Modesto", "output": "â  â â •⠙⠑⠌⠕" }, { "input": "Modigliani", "output": "â  â â •⠙⠊⠛⠇⠊â â â Š" }, { "input": "Moe", "output": "â  â â •â ‘" }, { "input": "Moet", "output": "â  â â •â ‘â ž" }, { "input": "Mogadishu", "output": "â  â â •â ›â â ™â Šâ ©â ¥" }, { "input": "Mohacs", "output": "â  â â •â “â â ‰â Ž" }, { "input": "Mohamed", "output": "â  â â •â “â â â «" }, { "input": "Mohammad", "output": "â  â â •â “â â â â â ™" }, { "input": "Mohammed", "output": "â  â â •â “â â â â «" }, { "input": "Mohammedan", "output": "â  â â •â “â â â â «â â " }, { "input": "Mohammedanism", "output": "â  â â •â “â â â â «â â â Šâ Žâ " }, { "input": "Mohammedanisms", "output": "â  â â •â “â â â â «â â â Šâ Žâ â Ž" }, { "input": "Mohammedans", "output": "â  â â •â “â â â â «â â â Ž" }, { "input": "Mohawk", "output": "â  â â •â “â â ºâ …" }, { "input": "Mohawks", "output": "â  â â •â “â â ºâ …â Ž" }, { "input": "Mohican", "output": "â  â â •â “â Šâ ‰â â " }, { "input": "Mohicans", "output": "â  â â •â “â Šâ ‰â â â Ž" }, { "input": "Moho", "output": "â  â â •â “â •" }, { "input": "Mohorovicic", "output": "â  â â •⠓⠕⠗⠕⠧⠊⠉⠊⠉" }, { "input": "Moira", "output": "â  â â •â Šâ —â " }, { "input": "Moises", "output": "â  â â •â Šâ Žâ ‘â Ž" }, { "input": "Moiseyev", "output": "â  â â •⠊⠎⠑⠽⠑⠧" }, { "input": "Mojave", "output": "â  â â •â šâ â §â ‘" }, { "input": "Moldavia", "output": "â  â â •⠇⠙â â §â Šâ " }, { "input": "Moldova", "output": "â  â â •⠇⠙⠕⠧â " }, { "input": "Moliere", "output": "â  â â •⠇⠊⠻⠑" }, { "input": "Molina", "output": "â  â â •⠇⠔â " }, { "input": "Moll", "output": "â  â â •⠇⠇" }, { "input": "Mollie", "output": "â  â â •⠇⠇⠊⠑" }, { "input": "Molly", "output": "â  â â •⠇⠇⠽" }, { "input": "Molnar", "output": "â  â â •â ‡â â œ" }, { "input": "Moloch", "output": "â  â â •⠇⠕⠡" }, { "input": "Molokai", "output": "â  â â •⠇⠕⠅â â Š" }, { "input": "Molotov", "output": "â  â â •⠇⠕⠞⠕⠧" }, { "input": "Moluccas", "output": "â  â â •⠇⠥⠒â â Ž" }, { "input": "Mombasa", "output": "â  â â •â â ƒâ â Žâ " }, { "input": "Mon", "output": "â  â â •â " }, { "input": "Mona", "output": "â  â â •â â " }, { "input": "Monaco", "output": "â  â â •â â â ‰â •" }, { "input": "Mondale", "output": "â  â â •â â ™â â ‡â ‘" }, { "input": "Monday", "output": "â  â â •â â â ™" }, { "input": "Mondays", "output": "â  â â •â â â ™â Ž" }, { "input": "Mondrian", "output": "â  â â •â â ™â —â Šâ â " }, { "input": "Monera", "output": "â  â â •â â »â " }, { "input": "Monet", "output": "â  â â •â â ‘â ž" }, { "input": "Mongol", "output": "â  â â °â ›â •â ‡" }, { "input": "Mongolia", "output": "â  â â °â ›â •⠇⠊â " }, { "input": "Mongolian", "output": "â  â â °â ›â •⠇⠊â â " }, { "input": "Mongolians", "output": "â  â â °â ›â •⠇⠊â â â Ž" }, { "input": "Mongoloid", "output": "â  â â °â ›â •⠇⠕⠊⠙" }, { "input": "Mongols", "output": "â  â â °â ›â •⠇⠎" }, { "input": "Monica", "output": "â  â â •â â Šâ ‰â " }, { "input": "Monique", "output": "â  â â •â â Šâ Ÿâ ¥â ‘" }, { "input": "Monk", "output": "â  â â •â â …" }, { "input": "Monmouth", "output": "â  â â •â â â ³â ¹" }, { "input": "Monongahela", "output": "â  â â •â â °â ›â â “â ‘â ‡â " }, { "input": "Monroe", "output": "â  â â •â â —â •â ‘" }, { "input": "Monrovia", "output": "â  â â •â â —â •â §â Šâ " }, { "input": "Mons", "output": "â  â â •â â Ž" }, { "input": "Monsanto", "output": "â  â â •â â Žâ â â žâ •" }, { "input": "Mont", "output": "â  â â •â â ž" }, { "input": "Montague", "output": "â  â â •â â žâ â ›â ¥â ‘" }, { "input": "Montaigne", "output": "â  â â •â â žâ â Šâ ›â â ‘" }, { "input": "Montana", "output": "â  â â •â â žâ â â " }, { "input": "Montanan", "output": "â  â â •â â žâ â â â " }, { "input": "Montanans", "output": "â  â â •â â žâ â â â â Ž" }, { "input": "Montcalm", "output": "â  â â •â â žâ ‰â â ‡â " }, { "input": "Monte", "output": "â  â â •â â žâ ‘" }, { "input": "Montenegrin", "output": "â  â â •â â žâ ¢â ‘⠛⠗⠔" }, { "input": "Montenegro", "output": "â  â â •â â žâ ¢â ‘⠛⠗⠕" }, { "input": "Monterrey", "output": "â  â â •â â žâ »â —â ‘â ½" }, { "input": "Montesquieu", "output": "â  â â •â â žâ ‘⠎⠟⠥⠊⠑⠥" }, { "input": "Montessori", "output": "â  â â •â â žâ ‘â Žâ Žâ •â —â Š" }, { "input": "Monteverdi", "output": "â  â â •â â žâ ‘⠧⠻⠙⠊" }, { "input": "Montevideo", "output": "â  â â •â â žâ ‘⠧⠊⠙⠑⠕" }, { "input": "Montezuma", "output": "â  â â •â â žâ ‘⠵⠥â â " }, { "input": "Montgolfier", "output": "â  â â •â â žâ ›â •⠇⠋⠊⠻" }, { "input": "Montgomery", "output": "â  â â •â â žâ ›â •â â »â ½" }, { "input": "Monticello", "output": "â  â â •â â žâ Šâ ‰â ‘⠇⠇⠕" }, { "input": "Montoya", "output": "â  â â •â â žâ •â ½â " }, { "input": "Montpelier", "output": "â  â â •â â žâ â ‘⠇⠊⠻" }, { "input": "Montrachet", "output": "â  â â •â â žâ —â â ¡â ‘â ž" }, { "input": "Montreal", "output": "â  â â •â â žâ —â ‚â ‡" }, { "input": "Montserrat", "output": "â  â â •â â žâ Žâ »â —â â ž" }, { "input": "Monty", "output": "â  â â •â â žâ ½" }, { "input": "Moody", "output": "â  â â •⠕⠙⠽" }, { "input": "Moog", "output": "â  â â •â •â ›" }, { "input": "Moon", "output": "â  â â •â •â " }, { "input": "Mooney", "output": "â  â â •â •â â ‘â ½" }, { "input": "Moor", "output": "â  â â •â •â —" }, { "input": "Moore", "output": "â  â â •â •â —â ‘" }, { "input": "Moorish", "output": "â  â â •â •â —â Šâ ©" }, { "input": "Moors", "output": "â  â â •â •â —â Ž" }, { "input": "Morales", "output": "â  â â •â —â â ‡â ‘â Ž" }, { "input": "Moran", "output": "â  â â •â —â â " }, { "input": "Moravia", "output": "â  â â •â —â â §â Šâ " }, { "input": "Moravian", "output": "â  â â •â —â â §â Šâ â " }, { "input": "Mordred", "output": "â  â â •⠗⠙⠗⠫" }, { "input": "More", "output": "â  â " }, { "input": "Moreno", "output": "â  â â •⠗⠢⠕" }, { "input": "Morgan", "output": "â  â â •â —â ›â â " }, { "input": "Moriarty", "output": "â  â â •⠗⠊⠜⠞⠽" }, { "input": "Morin", "output": "â  â â •â —â ”" }, { "input": "Morison", "output": "â  â â •â —â Šâ Žâ •â " }, { "input": "Morita", "output": "â  â â •â —â Šâ žâ " }, { "input": "Morley", "output": "â  â â •⠗⠇⠑⠽" }, { "input": "Mormon", "output": "â  â â •â —â â •â " }, { "input": "Mormonism", "output": "â  â â •â —â â •â â Šâ Žâ " }, { "input": "Mormonisms", "output": "â  â â •â —â â •â â Šâ Žâ â Ž" }, { "input": "Mormons", "output": "â  â â •â —â â •â â Ž" }, { "input": "Moro", "output": "â  â â •â —â •" }, { "input": "Moroccan", "output": "â  â â •â —â •â ’â â " }, { "input": "Moroccans", "output": "â  â â •â —â •â ’â â â Ž" }, { "input": "Morocco", "output": "â  â â •â —â •â ’â •" }, { "input": "Moroni", "output": "â  â â •â —â •â â Š" }, { "input": "Morpheus", "output": "â  â â •â —â â “⠑⠥⠎" }, { "input": "Morphy", "output": "â  â â •â —â â “â ½" }, { "input": "Morris", "output": "â  â â •â —â —â Šâ Ž" }, { "input": "Morrison", "output": "â  â â •â —â —â Šâ Žâ •â " }, { "input": "Morrow", "output": "â  â â •â —â —â ª" }, { "input": "Morse", "output": "â  â â •â —â Žâ ‘" }, { "input": "Mort", "output": "â  â â •â —â ž" }, { "input": "Mortimer", "output": "â  â â •â —â žâ Šâ â »" }, { "input": "Morton", "output": "â  â â •â —â žâ •â " }, { "input": "Mosaic", "output": "â  â â •â Žâ â Šâ ‰" }, { "input": "Moscow", "output": "â  â â •⠎⠉⠪" }, { "input": "Moseley", "output": "â  â â •⠎⠑⠇⠑⠽" }, { "input": "Moselle", "output": "â  â â •⠎⠑⠇⠇⠑" }, { "input": "Moses", "output": "â  â â •â Žâ ‘â Ž" }, { "input": "Moslem", "output": "â  â â •⠎⠇⠑â " }, { "input": "Moslems", "output": "â  â â •⠎⠇⠑â â Ž" }, { "input": "Mosley", "output": "â  â â •⠎⠇⠑⠽" }, { "input": "Moss", "output": "â  â â •â Žâ Ž" }, { "input": "Mosul", "output": "â  â â •⠎⠥⠇" }, { "input": "Motorola", "output": "â  â â •â žâ •â —â •â ‡â " }, { "input": "Motown", "output": "â  â â •â žâ ªâ " }, { "input": "Motrin", "output": "â  â â •â žâ —â ”" }, { "input": "Mott", "output": "â  â â •â žâ ž" }, { "input": "Mount", "output": "â  â â ¨â ž" }, { "input": "Mountbatten", "output": "â  â â ¨â žâ ƒâ â žâ žâ ¢" }, { "input": "Mountie", "output": "â  â â ¨â žâ Šâ ‘" }, { "input": "Mounties", "output": "â  â â ¨â žâ Šâ ‘â Ž" }, { "input": "Moussorgsky", "output": "â  â â ³â Žâ Žâ •⠗⠛⠎⠅⠽" }, { "input": "Mouthe", "output": "â  â â ³â ®" }, { "input": "Mouton", "output": "â  â â ³â žâ •â " }, { "input": "Mowgli", "output": "â  â â ªâ ›â ‡â Š" }, { "input": "Mozambican", "output": "â  â â •â µâ â â ƒâ Šâ ‰â â " }, { "input": "Mozambicans", "output": "â  â â •â µâ â â ƒâ Šâ ‰â â â Ž" }, { "input": "Mozambique", "output": "â  â â •â µâ â â ƒâ Šâ Ÿâ ¥â ‘" }, { "input": "Mozart", "output": "â  â â •⠵⠜⠞" }, { "input": "Mozilla", "output": "â  â â •⠵⠊⠇⠇â " }, { "input": "Mr", "output": "â  â â —" }, { "input": "Mrs", "output": "â  â â —â Ž" }, { "input": "Ms", "output": "â  â â Ž" }, { "input": "Mt", "output": "â  â â ž" }, { "input": "Muawiya", "output": "â  â â ¥â â ºâ Šâ ½â " }, { "input": "Mubarak", "output": "â  â â ¥â ƒâ œâ â …" }, { "input": "Mueller", "output": "â  â â ¥â ‘⠇⠇⠻" }, { "input": "Muenster", "output": "â  â â ¥â ¢â Œâ »" }, { "input": "Mugabe", "output": "â  â â ¥â ›â â ƒâ ‘" }, { "input": "Muhammad", "output": "â  â â ¥â “â â â â â ™" }, { "input": "Muhammadan", "output": "â  â â ¥â “â â â â â ™â â " }, { "input": "Muhammadanism", "output": "â  â â ¥â “â â â â â ™â â â Šâ Žâ " }, { "input": "Muhammadanisms", "output": "â  â â ¥â “â â â â â ™â â â Šâ Žâ â Ž" }, { "input": "Muhammadans", "output": "â  â â ¥â “â â â â â ™â â â Ž" }, { "input": "Muir", "output": "â  â â ¥â Šâ —" }, { "input": "Mujib", "output": "â  â â ¥â šâ Šâ ƒ" }, { "input": "Mulder", "output": "â  â â ¥â ‡â ™â »" }, { "input": "Mullen", "output": "â  â â ¥â ‡â ‡â ¢" }, { "input": "Muller", "output": "â  â â ¥â ‡â ‡â »" }, { "input": "Mulligan", "output": "â  â â ¥â ‡â ‡â Šâ ›â â " }, { "input": "Mullikan", "output": "â  â â ¥â ‡â ‡â Šâ …â â " }, { "input": "Mullins", "output": "â  â â ¥â ‡â ‡â ”â Ž" }, { "input": "Mulroney", "output": "â  â â ¥â ‡â —â â •â ½" }, { "input": "Multan", "output": "â  â â ¥â ‡â žâ â " }, { "input": "Mumbai", "output": "â  â â ¥â â ƒâ â Š" }, { "input": "Mumford", "output": "â  â â ¥â â ¿â ™" }, { "input": "Munch", "output": "â  â â ¥â â ¡" }, { "input": "Munich", "output": "â  â â ¥â â Šâ ¡" }, { "input": "Munoz", "output": "â  â â ¥â â •â µ" }, { "input": "Munro", "output": "â  â â ¥â â —â •" }, { "input": "Muppet", "output": "â  â â ¥â â â ‘â ž" }, { "input": "Murasaki", "output": "â  â â ¥â —â â Žâ â …â Š" }, { "input": "Murat", "output": "â  â â ¥â —â â ž" }, { "input": "Murchison", "output": "â  â â ¥â —â ¡â Šâ Žâ •â " }, { "input": "Murdoch", "output": "â  â â ¥â —⠙⠕⠡" }, { "input": "Muriel", "output": "â  â â ¥â —â Šâ ‘â ‡" }, { "input": "Murillo", "output": "â  â â ¥â —⠊⠇⠇⠕" }, { "input": "Murine", "output": "â  â â ¥â —⠔⠑" }, { "input": "Murmansk", "output": "â  â â ¥â —â â â â Žâ …" }, { "input": "Murphy", "output": "â  â â ¥â —â â “â ½" }, { "input": "Murray", "output": "â  â â ¥â —â —â â ½" }, { "input": "Murrow", "output": "â  â â ¥â —â —â ª" }, { "input": "Murrumbidgee", "output": "â  â â ¥â —â —â ¥â â ƒâ Šâ ™â ›â ‘â ‘" }, { "input": "Muscat", "output": "â  â â ¥â Žâ ‰â â ž" }, { "input": "Muscovite", "output": "â  â â ¥â Žâ ‰â •â §â Šâ žâ ‘" }, { "input": "Muscovy", "output": "â  â â ¥â Žâ ‰â •â §â ½" }, { "input": "Muse", "output": "â  â â ¥â Žâ ‘" }, { "input": "Musharraf", "output": "â  â â ¥â ©â œâ —â â ‹" }, { "input": "Musial", "output": "â  â â ¥â Žâ Šâ â ‡" }, { "input": "Muskogee", "output": "â  â â ¥â Žâ …⠕⠛⠑⠑" }, { "input": "Muslim", "output": "â  â â ¥â Žâ ‡â Šâ " }, { "input": "Muslims", "output": "â  â â ¥â Žâ ‡â Šâ â Ž" }, { "input": "Mussolini", "output": "â  â â ¥â Žâ Žâ •⠇⠔⠊" }, { "input": "Mussorgsky", "output": "â  â â ¥â Žâ Žâ •⠗⠛⠎⠅⠽" }, { "input": "Mutsuhito", "output": "â  â â ¥â žâ Žâ ¥â “â Šâ žâ •" }, { "input": "Muzak", "output": "â  â â ¥â µâ â …" }, { "input": "MySpace", "output": "â  â â ½â  â Žâ â â ‰â ‘" }, { "input": "Myanmar", "output": "â  â â ½â â â â œ" }, { "input": "Mycenae", "output": "â  â â ½â ‰â ¢â â ‘" }, { "input": "Mycenaean", "output": "â  â â ½â ‰â ¢â â ‚â " }, { "input": "Myers", "output": "â  â â ½â »â Ž" }, { "input": "Mylar", "output": "â  â â ½â ‡â œ" }, { "input": "Mylars", "output": "â  â â ½â ‡â œâ Ž" }, { "input": "Myles", "output": "â  â â ½â ‡â ‘â Ž" }, { "input": "Myra", "output": "â  â â ½â —â " }, { "input": "Myrdal", "output": "â  â â ½â —â ™â â ‡" }, { "input": "Myrna", "output": "â  â â ½â —â â " }, { "input": "Myron", "output": "â  â â ½â —â •â " }, { "input": "Myrtle", "output": "â  â â ½â —⠞⠇⠑" }, { "input": "Mysore", "output": "â  â â ½â Žâ •â —â ‘" }, { "input": "Myst", "output": "â  â â ½â Œ" }, { "input": "Münchhausen", "output": "â  â  â â ˜â »â â ¼â â Œâ ™â â ‰â “â “â â ¥â Žâ ‘â " }, { "input": "N", "output": "â °â  â " }, { "input": "NASCAR", "output": "â  â  â â â Žâ ‰â œ" }, { "input": "NORAD", "output": "â  â  â â •â —â â ™" }, { "input": "Na", "output": "â  â â " }, { "input": "Nabisco", "output": "â  â â â ƒâ Šâ Žâ ‰â •" }, { "input": "Nabokov", "output": "â  â â â ƒâ •â …â •â §" }, { "input": "Nader", "output": "â  â â â ™â »" }, { "input": "Nadia", "output": "â  â â â ™â Šâ " }, { "input": "Nadine", "output": "â  â â â ™â ”â ‘" }, { "input": "Nagasaki", "output": "â  â â â ›â â Žâ â …â Š" }, { "input": "Nagoya", "output": "â  â â â ›â •â ½â " }, { "input": "Nagpur", "output": "â  â â â ›â â ¥â —" }, { "input": "Nagy", "output": "â  â â â ›â ½" }, { "input": "Nahuatl", "output": "â  â â â “â ¥â â žâ ‡" }, { "input": "Nahum", "output": "â  â â â “â ¥â " }, { "input": "Naipaul", "output": "â  â â â Šâ â â ¥â ‡" }, { "input": "Nair", "output": "â  â â â Šâ —" }, { "input": "Nairobi", "output": "â  â â â Šâ —⠕⠃⠊" }, { "input": "Naismith", "output": "â  â â â Šâ Žâ â Šâ ¹" }, { "input": "Nam", "output": "â  â â â " }, { "input": "Namath", "output": "â  â â â â â ¹" }, { "input": "Namibia", "output": "â  â â â â Šâ ƒâ Šâ " }, { "input": "Namibian", "output": "â  â â â â Šâ ƒâ Šâ â " }, { "input": "Namibians", "output": "â  â â â â Šâ ƒâ Šâ â â Ž" }, { "input": "Nan", "output": "â  â â â " }, { "input": "Nanak", "output": "â  â â â â â …" }, { "input": "Nanchang", "output": "â  â â â â ¡â â â ›" }, { "input": "Nancy", "output": "â  â â â â ‰â ½" }, { "input": "Nanette", "output": "â  â â â â ‘â žâ žâ ‘" }, { "input": "Nanjing", "output": "â  â â â â šâ ¬" }, { "input": "Nanking", "output": "â  â â â â …â ¬" }, { "input": "Nankings", "output": "â  â â â â …⠬⠎" }, { "input": "Nannie", "output": "â  â â â â â Šâ ‘" }, { "input": "Nanook", "output": "â  â â â â •â •â …" }, { "input": "Nansen", "output": "â  â â â â Žâ ¢" }, { "input": "Nantes", "output": "â  â â â â žâ ‘â Ž" }, { "input": "Nantucket", "output": "â  â â â â žâ ¥â ‰â …â ‘â ž" }, { "input": "Naomi", "output": "â  â â â •â â Š" }, { "input": "Naphtali", "output": "â  â â â â “â žâ â ‡â Š" }, { "input": "Napier", "output": "â  â â â â Šâ »" }, { "input": "Naples", "output": "â  â â â â ‡â ‘â Ž" }, { "input": "Napoleon", "output": "â  â â â â •⠇⠑⠕â " }, { "input": "Napoleonic", "output": "â  â â â â •⠇⠑⠕â â Šâ ‰" }, { "input": "Napster", "output": "â  â â â â Œâ »" }, { "input": "Narcissus", "output": "â  â â œâ ‰â Šâ Žâ Žâ ¥â Ž" }, { "input": "Narmada", "output": "â  â â œâ â â ™â " }, { "input": "Narnia", "output": "â  â â œâ â Šâ " }, { "input": "Narragansett", "output": "â  â â œâ —â â ›â â â Žâ ‘â žâ ž" }, { "input": "Nash", "output": "â  â â â ©" }, { "input": "Nashua", "output": "â  â â â ©â ¥â " }, { "input": "Nashville", "output": "â  â â â ©â §â Šâ ‡â ‡â ‘" }, { "input": "Nassau", "output": "â  â â â Žâ Žâ â ¥" }, { "input": "Nasser", "output": "â  â â â Žâ Žâ »" }, { "input": "Nat", "output": "â  â â â ž" }, { "input": "Natalia", "output": "â  â â â žâ â ‡â Šâ " }, { "input": "Natalie", "output": "â  â â â žâ â ‡â Šâ ‘" }, { "input": "Natasha", "output": "â  â â â žâ â ©â " }, { "input": "Natchez", "output": "â  â â â žâ ¡â ‘â µ" }, { "input": "Nate", "output": "â  â â â žâ ‘" }, { "input": "Nathan", "output": "â  â â â ¹â â " }, { "input": "Nathaniel", "output": "â  â â â ¹â â â Šâ ‘â ‡" }, { "input": "Nathans", "output": "â  â â â ¹â â â Ž" }, { "input": "Nation", "output": "â  â â â °â " }, { "input": "Nationwide", "output": "â  â â â °â â ºâ Šâ ™â ‘" }, { "input": "Naugahyde", "output": "â  â â â ¥â ›â â “⠽⠙⠑" }, { "input": "Nauru", "output": "â  â â â ¥â —â ¥" }, { "input": "Nautilus", "output": "â  â â â ¥â žâ Šâ ‡â ¥â Ž" }, { "input": "Navaho", "output": "â  â â â §â â “â •" }, { "input": "Navahoes", "output": "â  â â â §â â “â •â ‘â Ž" }, { "input": "Navahos", "output": "â  â â â §â â “â •â Ž" }, { "input": "Navajo", "output": "â  â â â §â â šâ •" }, { "input": "Navajoes", "output": "â  â â â §â â šâ •â ‘â Ž" }, { "input": "Navajos", "output": "â  â â â §â â šâ •â Ž" }, { "input": "Navarre", "output": "â  â â â §â œâ —â ‘" }, { "input": "Navarro", "output": "â  â â â §â œâ —â •" }, { "input": "Navratilova", "output": "â  â â â §â —â â žâ Šâ ‡â •â §â " }, { "input": "Nazarene", "output": "â  â â â µâ œâ ¢â ‘" }, { "input": "Nazareth", "output": "â  â â â µâ œâ ‘â ¹" }, { "input": "Nazca", "output": "â  â â â µâ ‰â " }, { "input": "Nazi", "output": "â  â â â µâ Š" }, { "input": "Naziism", "output": "â  â â â µâ Šâ Šâ Žâ " }, { "input": "Naziisms", "output": "â  â â â µâ Šâ Šâ Žâ â Ž" }, { "input": "Nazis", "output": "â  â â â µâ Šâ Ž" }, { "input": "Nazism", "output": "â  â â â µâ Šâ Žâ " }, { "input": "Nazisms", "output": "â  â â â µâ Šâ Žâ â Ž" }, { "input": "Nb", "output": "â  â â ƒ" }, { "input": "Nd", "output": "â  â â ™" }, { "input": "Ndjamena", "output": "â  â â ™â šâ â â ¢â " }, { "input": "Ne", "output": "â  â â ‘" }, { "input": "Neal", "output": "â  â â ‚â ‡" }, { "input": "Neanderthal", "output": "â  â â ‘⠯⠻⠹â â ‡" }, { "input": "Neanderthals", "output": "â  â â ‘⠯⠻⠹â â ‡â Ž" }, { "input": "Neapolitan", "output": "â  â â ‚â â •⠇⠊⠞â â " }, { "input": "Nebraska", "output": "â  â â ‘⠃⠗â â Žâ …â " }, { "input": "Nebraskan", "output": "â  â â ‘⠃⠗â â Žâ …â â " }, { "input": "Nebraskans", "output": "â  â â ‘⠃⠗â â Žâ …â â â Ž" }, { "input": "Nebuchadnezzar", "output": "â  â â ‘⠃⠥⠡â â ™â â ‘⠵⠵⠜" }, { "input": "Ned", "output": "â  â â «" }, { "input": "Nefertiti", "output": "â  â â ‘⠋⠻⠞⠊⠞⠊" }, { "input": "Negev", "output": "â  â â ‘⠛⠑⠧" }, { "input": "Negro", "output": "â  â â ‘⠛⠗⠕" }, { "input": "Negroes", "output": "â  â â ‘⠛⠗⠕⠑⠎" }, { "input": "Negroid", "output": "â  â â ‘⠛⠗⠕⠊⠙" }, { "input": "Negroids", "output": "â  â â ‘⠛⠗⠕⠊⠙⠎" }, { "input": "Negros", "output": "â  â â ‘⠛⠗⠕⠎" }, { "input": "Nehemiah", "output": "â  â â ‘â “â ‘â â Šâ â “" }, { "input": "Nehru", "output": "â  â â ‘â “â —â ¥" }, { "input": "Neil", "output": "â  â â ‘â Šâ ‡" }, { "input": "Nelda", "output": "â  â â ‘⠇⠙â " }, { "input": "Nell", "output": "â  â â ‘⠇⠇" }, { "input": "Nellie", "output": "â  â â ‘⠇⠇⠊⠑" }, { "input": "Nelly", "output": "â  â â ‘⠇⠇⠽" }, { "input": "Nelsen", "output": "â  â â ‘⠇⠎⠢" }, { "input": "Nelson", "output": "â  â â ‘⠇⠎⠕â " }, { "input": "Nembutal", "output": "â  â â ‘â â ƒâ ¥â žâ â ‡" }, { "input": "Nemesis", "output": "â  â â ‘â â ‘â Žâ Šâ Ž" }, { "input": "Neogene", "output": "â  â â ‘⠕⠛⠢⠑" }, { "input": "Neolithic", "output": "â  â â ‘⠕⠇⠊⠹⠊⠉" }, { "input": "Nepal", "output": "â  â â ‘â â â ‡" }, { "input": "Nepalese", "output": "â  â â ‘â â â ‡â ‘â Žâ ‘" }, { "input": "Nepali", "output": "â  â â ‘â â â ‡â Š" }, { "input": "Neptune", "output": "â  â â ‘â â žâ ¥â â ‘" }, { "input": "Nereid", "output": "â  â â »â ‘â Šâ ™" }, { "input": "Nerf", "output": "â  â â »â ‹" }, { "input": "Nero", "output": "â  â â »â •" }, { "input": "Neruda", "output": "â  â â »â ¥â ™â " }, { "input": "Nescafe", "output": "â  â â ‘â Žâ ‰â â ‹â ‘" }, { "input": "Nesselrode", "output": "â  â â ‘⠎⠎⠑⠇⠗⠕⠙⠑" }, { "input": "Nestle", "output": "â  â â ‘⠌⠇⠑" }, { "input": "Nestor", "output": "â  â â ‘⠌⠕⠗" }, { "input": "Nestorius", "output": "â  â â ‘⠌⠕⠗⠊⠥⠎" }, { "input": "Netflix", "output": "â  â â ‘⠞⠋⠇⠊⠭" }, { "input": "Netherlander", "output": "â  â â ‘⠮⠗⠇⠯⠻" }, { "input": "Netherlanders", "output": "â  â â ‘⠮⠗⠇⠯⠻⠎" }, { "input": "Netherlands", "output": "â  â â ‘⠮⠗⠇⠯⠎" }, { "input": "Netscape", "output": "â  â â ‘â žâ Žâ ‰â â â ‘" }, { "input": "Nettie", "output": "â  â â ‘â žâ žâ Šâ ‘" }, { "input": "Netzahualcoyotl", "output": "â  â â ‘â žâ µâ â “â ¥â â ‡â ‰â •⠽⠕⠞⠇" }, { "input": "Nev", "output": "â  â â ‘â §" }, { "input": "Neva", "output": "â  â â ‘â §â " }, { "input": "Nevada", "output": "â  â â ‘â §â â ™â " }, { "input": "Nevadan", "output": "â  â â ‘â §â â ™â â " }, { "input": "Nevadans", "output": "â  â â ‘â §â â ™â â â Ž" }, { "input": "Nevis", "output": "â  â â ‘â §â Šâ Ž" }, { "input": "Nevsky", "output": "â  â â ‘â §â Žâ …â ½" }, { "input": "Newark", "output": "â  â â ‘⠺⠜⠅" }, { "input": "Newcastle", "output": "â  â â ‘⠺⠉â â Œâ ‡â ‘" }, { "input": "Newfoundland", "output": "â  â â ‘⠺⠋⠨⠙⠇⠯" }, { "input": "Newfoundlands", "output": "â  â â ‘⠺⠋⠨⠙⠇⠯⠎" }, { "input": "Newman", "output": "â  â â ‘â ºâ â â " }, { "input": "Newport", "output": "â  â â ‘â ºâ â •â —â ž" }, { "input": "Newsweek", "output": "â  â â ‘⠺⠎⠺⠑⠑⠅" }, { "input": "Newton", "output": "â  â â ‘⠺⠞⠕â " }, { "input": "Newtonian", "output": "â  â â ‘⠺⠞⠕â â Šâ â " }, { "input": "Nexis", "output": "â  â â ‘â ­â Šâ Ž" }, { "input": "Ngaliema", "output": "â  â â ›â â ‡â Šâ ‘â â " }, { "input": "Nguyen", "output": "â  â â ›â ¥â ½â ¢" }, { "input": "Ni", "output": "â  â â Š" }, { "input": "Niagara", "output": "â  â â Šâ â ›â œâ " }, { "input": "Niamey", "output": "â  â â Šâ â â ‘â ½" }, { "input": "Nibelung", "output": "â  â â Šâ ƒâ ‘⠇⠥â â ›" }, { "input": "Nicaea", "output": "â  â â Šâ ‰â â ‘â " }, { "input": "Nicaragua", "output": "â  â â Šâ ‰â œâ â ›â ¥â " }, { "input": "Nicaraguan", "output": "â  â â Šâ ‰â œâ â ›â ¥â â " }, { "input": "Nicaraguans", "output": "â  â â Šâ ‰â œâ â ›â ¥â â â Ž" }, { "input": "Niccolo", "output": "â  â â Šâ ’⠕⠇⠕" }, { "input": "Nice", "output": "â  â â Šâ ‰â ‘" }, { "input": "Nicene", "output": "â  â â Šâ ‰â ¢â ‘" }, { "input": "Nichiren", "output": "â  â â Šâ ¡â Šâ —â ¢" }, { "input": "Nicholas", "output": "â  â â Šâ ¡â •â ‡â â Ž" }, { "input": "Nichole", "output": "â  â â Šâ ¡â •⠇⠑" }, { "input": "Nichols", "output": "â  â â Šâ ¡â •⠇⠎" }, { "input": "Nicholson", "output": "â  â â Šâ ¡â •⠇⠎⠕â " }, { "input": "Nick", "output": "â  â â Šâ ‰â …" }, { "input": "Nickelodeon", "output": "â  â â Šâ ‰â …⠑⠇⠕⠙⠑⠕â " }, { "input": "Nicklaus", "output": "â  â â Šâ ‰â …â ‡â â ¥â Ž" }, { "input": "Nickolas", "output": "â  â â Šâ ‰â …â •â ‡â â Ž" }, { "input": "Nicobar", "output": "â  â â Šâ ‰â •⠃⠜" }, { "input": "Nicodemus", "output": "â  â â Šâ ‰â •⠙⠑â â ¥â Ž" }, { "input": "Nicola", "output": "â  â â Šâ ‰â •â ‡â " }, { "input": "Nicolas", "output": "â  â â Šâ ‰â •â ‡â â Ž" }, { "input": "Nicole", "output": "â  â â Šâ ‰â •⠇⠑" }, { "input": "Nicosia", "output": "â  â â Šâ ‰â •â Žâ Šâ " }, { "input": "Niebuhr", "output": "â  â â Šâ ‘⠃⠥⠓⠗" }, { "input": "Nielsen", "output": "â  â â Šâ ‘⠇⠎⠢" }, { "input": "Nietzsche", "output": "â  â â Šâ ‘⠞⠵⠎⠡⠑" }, { "input": "Nieves", "output": "â  â â Šâ ‘â §â ‘â Ž" }, { "input": "Nigel", "output": "â  â â Šâ ›â ‘â ‡" }, { "input": "Niger", "output": "â  â â Šâ ›â »" }, { "input": "Nigeria", "output": "â  â â Šâ ›â »â Šâ " }, { "input": "Nigerian", "output": "â  â â Šâ ›â »â Šâ â " }, { "input": "Nigerians", "output": "â  â â Šâ ›â »â Šâ â â Ž" }, { "input": "Nightingale", "output": "â  â â Šâ £â žâ ¬â â ‡â ‘" }, { "input": "Nijinsky", "output": "â  â â Šâ šâ ”â Žâ …â ½" }, { "input": "Nike", "output": "â  â â Šâ …â ‘" }, { "input": "Nikita", "output": "â  â â Šâ …â Šâ žâ " }, { "input": "Nikkei", "output": "â  â â Šâ …â …â ‘â Š" }, { "input": "Nikki", "output": "â  â â Šâ …â …â Š" }, { "input": "Nikolai", "output": "â  â â Šâ …â •â ‡â â Š" }, { "input": "Nikolayev", "output": "â  â â Šâ …â •â ‡â â ½â ‘â §" }, { "input": "Nikon", "output": "â  â â Šâ …â •â " }, { "input": "Nile", "output": "â  â â Šâ ‡â ‘" }, { "input": "Nimitz", "output": "â  â â Šâ â Šâ žâ µ" }, { "input": "Nimrod", "output": "â  â â Šâ â —â •â ™" }, { "input": "Nina", "output": "â  â â ”â " }, { "input": "Nineveh", "output": "â  â â ”â ‘â §â ‘â “" }, { "input": "Nintendo", "output": "â  â â ”⠞⠢⠙⠕" }, { "input": "Niobe", "output": "â  â â Šâ •⠃⠑" }, { "input": "Nippon", "output": "â  â â Šâ â â •â " }, { "input": "Nirenberg", "output": "â  â â Šâ —⠢⠃⠻⠛" }, { "input": "Nirvana", "output": "â  â â Šâ —â §â â â " }, { "input": "Nisan", "output": "â  â â Šâ Žâ â " }, { "input": "Nisei", "output": "â  â â Šâ Žâ ‘â Š" }, { "input": "Nissan", "output": "â  â â Šâ Žâ Žâ â " }, { "input": "Nita", "output": "â  â â Šâ žâ " }, { "input": "Nivea", "output": "â  â â Šâ §â ‘â " }, { "input": "Nixon", "output": "â  â â Šâ ­â •â " }, { "input": "Nkrumah", "output": "â  â â …â —â ¥â â â “" }, { "input": "NoDoz", "output": "â  â â •⠠⠙⠕⠵" }, { "input": "Noah", "output": "â  â â •â â “" }, { "input": "Nobel", "output": "â  â â •⠃⠑⠇" }, { "input": "Nobelist", "output": "â  â â •⠃⠑⠇⠊⠌" }, { "input": "Nobelists", "output": "â  â â •⠃⠑⠇⠊⠌⠎" }, { "input": "Noble", "output": "â  â â •⠃⠇⠑" }, { "input": "Noe", "output": "â  â â •â ‘" }, { "input": "Noel", "output": "â  â â •â ‘â ‡" }, { "input": "Noelle", "output": "â  â â •⠑⠇⠇⠑" }, { "input": "Noels", "output": "â  â â •⠑⠇⠎" }, { "input": "Noemi", "output": "â  â â •â ‘â â Š" }, { "input": "Noh", "output": "â  â â •â “" }, { "input": "Nokia", "output": "â  â â •â …â Šâ " }, { "input": "Nola", "output": "â  â â •â ‡â " }, { "input": "Nolan", "output": "â  â â •â ‡â â " }, { "input": "Nome", "output": "â  â â •â â ‘" }, { "input": "Nona", "output": "â  â â •â â " }, { "input": "Nootka", "output": "â  â â •â •â žâ …â " }, { "input": "Nora", "output": "â  â â •â —â " }, { "input": "Norbert", "output": "â  â â •⠗⠃⠻⠞" }, { "input": "Norberto", "output": "â  â â •⠗⠃⠻⠞⠕" }, { "input": "Nordic", "output": "â  â â •⠗⠙⠊⠉" }, { "input": "Nordics", "output": "â  â â •⠗⠙⠊⠉⠎" }, { "input": "Noreen", "output": "â  â â •â —â ‘â ¢" }, { "input": "Norfolk", "output": "â  â â •⠗⠋⠕⠇⠅" }, { "input": "Noriega", "output": "â  â â •â —â Šâ ‘â ›â " }, { "input": "Norma", "output": "â  â â •â —â â " }, { "input": "Norman", "output": "â  â â •â —â â â " }, { "input": "Normand", "output": "â  â â •â —â â ¯" }, { "input": "Normandy", "output": "â  â â •â —â â ¯â ½" }, { "input": "Normans", "output": "â  â â •â —â â â â Ž" }, { "input": "Norplant", "output": "â  â â •â —â â ‡â â â ž" }, { "input": "Norris", "output": "â  â â •â —â —â Šâ Ž" }, { "input": "Norse", "output": "â  â â •â —â Žâ ‘" }, { "input": "Norseman", "output": "â  â â •â —â Žâ ‘â â â " }, { "input": "Norsemen", "output": "â  â â •â —â Žâ ‘â â ¢" }, { "input": "North", "output": "â  â â •â —â ¹" }, { "input": "Northampton", "output": "â  â â •â —â ¹â â â â žâ •â " }, { "input": "Northeast", "output": "â  â â •⠗⠹⠂⠌" }, { "input": "Northeasts", "output": "â  â â •⠗⠹⠂⠌⠎" }, { "input": "Northerner", "output": "â  â â •⠗⠮⠗â â »" }, { "input": "Northrop", "output": "â  â â •⠗⠹⠗⠕â " }, { "input": "Northrup", "output": "â  â â •⠗⠹⠗⠥â " }, { "input": "Norths", "output": "â  â â •⠗⠹⠎" }, { "input": "Northwest", "output": "â  â â •⠗⠹⠺⠑⠌" }, { "input": "Northwests", "output": "â  â â •⠗⠹⠺⠑⠌⠎" }, { "input": "Norton", "output": "â  â â •â —â žâ •â " }, { "input": "Norway", "output": "â  â â •â —â ºâ â ½" }, { "input": "Norwegian", "output": "â  â â •⠗⠺⠑⠛⠊â â " }, { "input": "Norwegians", "output": "â  â â •⠗⠺⠑⠛⠊â â â Ž" }, { "input": "Norwich", "output": "â  â â •⠗⠺⠊⠡" }, { "input": "Nosferatu", "output": "â  â â •â Žâ ‹â »â â žâ ¥" }, { "input": "Nostradamus", "output": "â  â â •⠌⠗â â ™â â â ¥â Ž" }, { "input": "Nottingham", "output": "â  â â •⠞⠞⠬⠓â â " }, { "input": "Nouakchott", "output": "â  â â ³â â …â ¡â •â žâ ž" }, { "input": "Noumea", "output": "â  â â ³â â ‘â " }, { "input": "Nov", "output": "â  â â •â §" }, { "input": "Nova", "output": "â  â â •â §â " }, { "input": "Novartis", "output": "â  â â •⠧⠜⠞⠊⠎" }, { "input": "November", "output": "â  â â •â §â ‘â â ƒâ »" }, { "input": "Novembers", "output": "â  â â •â §â ‘â â ƒâ »â Ž" }, { "input": "Novgorod", "output": "â  â â •⠧⠛⠕⠗⠕⠙" }, { "input": "Novocain", "output": "â  â â •â §â •â ‰â â ”" }, { "input": "Novocaine", "output": "â  â â •â §â •â ‰â â ”â ‘" }, { "input": "Novokuznetsk", "output": "â  â â •⠧⠕⠅⠥⠵â â ‘â žâ Žâ …" }, { "input": "Novosibirsk", "output": "â  â â •⠧⠕⠎⠊⠃⠊⠗⠎⠅" }, { "input": "Noxzema", "output": "â  â â •⠭⠵⠑â â " }, { "input": "Noyce", "output": "â  â â •⠽⠉⠑" }, { "input": "Noyes", "output": "â  â â •⠽⠑⠎" }, { "input": "Np", "output": "â  â â " }, { "input": "Nubia", "output": "â  â â ¥â ƒâ Šâ " }, { "input": "Nubian", "output": "â  â â ¥â ƒâ Šâ â " }, { "input": "Nukualofa", "output": "â  â â ¥â …â ¥â â ‡â ·â " }, { "input": "Numbers", "output": "â  â â ¥â â ƒâ »â Ž" }, { "input": "Nunavut", "output": "â  â â ¥â â â §â ¥â ž" }, { "input": "Nunez", "output": "â  â â ¥â â ‘â µ" }, { "input": "Nunki", "output": "â  â â ¥â â …â Š" }, { "input": "Nuremberg", "output": "â  â â ¥â —â ‘â â ƒâ »â ›" }, { "input": "Nureyev", "output": "â  â â ¥â —⠑⠽⠑⠧" }, { "input": "NutraSweet", "output": "â  â â ¥â žâ —â â  â Žâ ºâ ‘â ‘â ž" }, { "input": "NyQuil", "output": "â  â â ½â  â Ÿâ ¥â Šâ ‡" }, { "input": "Nyasa", "output": "â  â â ½â â Žâ " }, { "input": "Nyerere", "output": "â  â â ½â »â »â ‘" }, { "input": "O", "output": "â  â •" }, { "input": "OHSA", "output": "â  â  â •â “â Žâ " }, { "input": "OK", "output": "â  â  â •â …" }, { "input": "OKs", "output": "â  â  â •â …â  â „â Ž" }, { "input": "Oahu", "output": "â  â •â â “â ¥" }, { "input": "Oakland", "output": "â  â •â â …⠇⠯" }, { "input": "Oakley", "output": "â  â •â â …⠇⠑⠽" }, { "input": "Oates", "output": "â  â •â â žâ ‘â Ž" }, { "input": "Oaxaca", "output": "â  â •â â ­â â ‰â " }, { "input": "Ob", "output": "â  â •â ƒ" }, { "input": "Obadiah", "output": "â  â •â ƒâ â ™â Šâ â “" }, { "input": "Obama", "output": "â  â •â ƒâ â â " }, { "input": "Oberlin", "output": "⠠⠕⠃⠻⠇⠔" }, { "input": "Oberon", "output": "⠠⠕⠃⠻⠕â " }, { "input": "Occam", "output": "â  â •â ’â â " }, { "input": "Occident", "output": "⠠⠕⠒⠊⠙⠢⠞" }, { "input": "Occidental", "output": "⠠⠕⠒⠊⠙⠢⠞â â ‡" }, { "input": "Occidentals", "output": "⠠⠕⠒⠊⠙⠢⠞â â ‡â Ž" }, { "input": "Oceania", "output": "⠠⠕⠉⠂â â Šâ " }, { "input": "Oceanus", "output": "⠠⠕⠉⠂â â ¥â Ž" }, { "input": "Ochoa", "output": "â  â •â ¡â •â " }, { "input": "Oct", "output": "⠠⠕⠉⠞" }, { "input": "Octavia", "output": "⠠⠕⠉⠞â â §â Šâ " }, { "input": "Octavio", "output": "⠠⠕⠉⠞â â §â Šâ •" }, { "input": "October", "output": "⠠⠕⠉⠞⠕⠃⠻" }, { "input": "Octobers", "output": "⠠⠕⠉⠞⠕⠃⠻⠎" }, { "input": "Odell", "output": "⠠⠕⠙⠑⠇⠇" }, { "input": "Oder", "output": "⠠⠕⠙⠻" }, { "input": "Odessa", "output": "⠠⠕⠙⠑⠎⠎â " }, { "input": "Odets", "output": "⠠⠕⠙⠑⠞⠎" }, { "input": "Odin", "output": "⠠⠕⠙⠔" }, { "input": "Odis", "output": "⠠⠕⠙⠊⠎" }, { "input": "Odom", "output": "⠠⠕⠙⠕â " }, { "input": "Odysseus", "output": "⠠⠕⠙⠽⠎⠎⠑⠥⠎" }, { "input": "Odyssey", "output": "⠠⠕⠙⠽⠎⠎⠑⠽" }, { "input": "Oedipal", "output": "â  â •â «â Šâ â â ‡" }, { "input": "Oedipus", "output": "â  â •â «â Šâ â ¥â Ž" }, { "input": "Oersted", "output": "⠠⠕⠻⠌⠫" }, { "input": "Ofelia", "output": "⠠⠷⠑⠇⠊â " }, { "input": "Offenbach", "output": "⠠⠷⠋⠢⠃â â ¡" }, { "input": "OfficeMax", "output": "⠠⠷⠋⠊⠉⠑⠠â â â ­" }, { "input": "Ogbomosho", "output": "⠠⠕⠛⠃⠕â â •â ©â •" }, { "input": "Ogden", "output": "⠠⠕⠛⠙⠢" }, { "input": "Ogilvy", "output": "⠠⠕⠛⠊⠇⠧⠽" }, { "input": "Oglethorpe", "output": "⠠⠕⠛⠇⠑⠹⠕⠗â â ‘" }, { "input": "Ohio", "output": "â  â •â “â Šâ •" }, { "input": "Ohioan", "output": "â  â •â “â Šâ •â â " }, { "input": "Ohioans", "output": "â  â •â “â Šâ •â â â Ž" }, { "input": "Oise", "output": "â  â •â Šâ Žâ ‘" }, { "input": "Ojibwa", "output": "⠠⠕⠚⠊⠃⠺â " }, { "input": "Ojibwas", "output": "⠠⠕⠚⠊⠃⠺â â Ž" }, { "input": "Okeechobee", "output": "⠠⠕⠅⠑⠑⠡⠕⠃⠑⠑" }, { "input": "Okefenokee", "output": "⠠⠕⠅⠑⠋⠢⠕⠅⠑⠑" }, { "input": "Okhotsk", "output": "â  â •â …â “â •â žâ Žâ …" }, { "input": "Okinawa", "output": "â  â •â …â ”â â ºâ " }, { "input": "Okla", "output": "â  â •â …â ‡â " }, { "input": "Oklahoma", "output": "â  â •â …â ‡â â “â •â â " }, { "input": "Oklahoman", "output": "â  â •â …â ‡â â “â •â â â " }, { "input": "Oktoberfest", "output": "⠠⠕⠅⠞⠕⠃⠻⠋⠑⠌" }, { "input": "Ola", "output": "â  â •â ‡â " }, { "input": "Olaf", "output": "â  â •â ‡â â ‹" }, { "input": "Olajuwon", "output": "â  â •â ‡â â šâ ¥â ºâ •â " }, { "input": "Olav", "output": "â  â •â ‡â â §" }, { "input": "Oldenburg", "output": "⠠⠕⠇⠙⠢⠃⠥⠗⠛" }, { "input": "Oldfield", "output": "⠠⠕⠇⠙⠋⠊⠑⠇⠙" }, { "input": "Oldsmobile", "output": "⠠⠕⠇⠙⠎â â •⠃⠊⠇⠑" }, { "input": "Olduvai", "output": "⠠⠕⠇⠙⠥⠧â â Š" }, { "input": "Olen", "output": "⠠⠕⠇⠢" }, { "input": "Olenek", "output": "⠠⠕⠇⠢⠑⠅" }, { "input": "Olga", "output": "⠠⠕⠇⠛â " }, { "input": "Oligocene", "output": "⠠⠕⠇⠊⠛⠕⠉⠢⠑" }, { "input": "Olin", "output": "⠠⠕⠇⠔" }, { "input": "Olive", "output": "⠠⠕⠇⠊⠧⠑" }, { "input": "Oliver", "output": "⠠⠕⠇⠊⠧⠻" }, { "input": "Olivetti", "output": "⠠⠕⠇⠊⠧⠑⠞⠞⠊" }, { "input": "Olivia", "output": "⠠⠕⠇⠊⠧⠊â " }, { "input": "Olivier", "output": "⠠⠕⠇⠊⠧⠊⠻" }, { "input": "Ollie", "output": "⠠⠕⠇⠇⠊⠑" }, { "input": "Olmec", "output": "â  â •â ‡â â ‘â ‰" }, { "input": "Olmsted", "output": "â  â •â ‡â â Œâ «" }, { "input": "Olsen", "output": "⠠⠕⠇⠎⠢" }, { "input": "Olson", "output": "⠠⠕⠇⠎⠕â " }, { "input": "Olympia", "output": "⠠⠕⠇⠽â â â Šâ " }, { "input": "Olympiad", "output": "⠠⠕⠇⠽â â â Šâ â ™" }, { "input": "Olympiads", "output": "⠠⠕⠇⠽â â â Šâ â ™â Ž" }, { "input": "Olympian", "output": "⠠⠕⠇⠽â â â Šâ â " }, { "input": "Olympians", "output": "⠠⠕⠇⠽â â â Šâ â â Ž" }, { "input": "Olympias", "output": "⠠⠕⠇⠽â â â Šâ â Ž" }, { "input": "Olympic", "output": "⠠⠕⠇⠽â â â Šâ ‰" }, { "input": "Olympics", "output": "⠠⠕⠇⠽â â â Šâ ‰â Ž" }, { "input": "Olympus", "output": "⠠⠕⠇⠽â â â ¥â Ž" }, { "input": "Omaha", "output": "â  â •â â â “â " }, { "input": "Omahas", "output": "â  â •â â â “â â Ž" }, { "input": "Oman", "output": "â  â •â â â " }, { "input": "Omar", "output": "â  â •â â œ" }, { "input": "Omayyad", "output": "â  â •â â â ½â ½â â ™" }, { "input": "Omdurman", "output": "â  â •â â ™â ¥â —â â â " }, { "input": "Omsk", "output": "â  â •â â Žâ …" }, { "input": "Onassis", "output": "â  â •â â â Žâ Žâ Šâ Ž" }, { "input": "Oneal", "output": "â  â •â â ‚â ‡" }, { "input": "Onega", "output": "â  â •â â ‘â ›â " }, { "input": "Onegin", "output": "â  â •â â ‘⠛⠔" }, { "input": "Oneida", "output": "â  â •â â ‘â Šâ ™â " }, { "input": "Onion", "output": "â  â •â â Šâ •â " }, { "input": "Ono", "output": "â  â •â â •" }, { "input": "Onondaga", "output": "â  â •â â •â â ™â â ›â " }, { "input": "Onsager", "output": "â  â •â â Žâ â ›â »" }, { "input": "Ontario", "output": "â  â •â â žâ œâ Šâ •" }, { "input": "Oort", "output": "â  â •â •â —â ž" }, { "input": "Opal", "output": "â  â •â â â ‡" }, { "input": "Opel", "output": "â  â •â â ‘â ‡" }, { "input": "Ophelia", "output": "â  â •â â “⠑⠇⠊â " }, { "input": "Ophiuchus", "output": "â  â •â â “⠊⠥⠡⠥⠎" }, { "input": "Oppenheimer", "output": "â  â •â â â ¢â “â ‘â Šâ â »" }, { "input": "Oprah", "output": "â  â •â â —â â “" }, { "input": "Ora", "output": "â  â •â —â " }, { "input": "Oracle", "output": "â  â •â —â â ‰â ‡â ‘" }, { "input": "Oran", "output": "â  â •â —â â " }, { "input": "Orange", "output": "â  â •â —â â â ›â ‘" }, { "input": "Oranjestad", "output": "â  â •â —â â â šâ ‘â Œâ â ™" }, { "input": "Orbison", "output": "⠠⠕⠗⠃⠊⠎⠕â " }, { "input": "Ordovician", "output": "⠠⠕⠗⠙⠕⠧⠊⠉⠊â â " }, { "input": "Oregon", "output": "⠠⠕⠗⠑⠛⠕â " }, { "input": "Oregonian", "output": "⠠⠕⠗⠑⠛⠕â â Šâ â " }, { "input": "Oregonians", "output": "⠠⠕⠗⠑⠛⠕â â Šâ â â Ž" }, { "input": "Oreo", "output": "â  â •â —â ‘â •" }, { "input": "Orestes", "output": "⠠⠕⠗⠑⠌⠑⠎" }, { "input": "Orient", "output": "⠠⠕⠗⠊⠢⠞" }, { "input": "Oriental", "output": "⠠⠕⠗⠊⠢⠞â â ‡" }, { "input": "Orientals", "output": "⠠⠕⠗⠊⠢⠞â â ‡â Ž" }, { "input": "Orin", "output": "â  â •â —â ”" }, { "input": "Orinoco", "output": "⠠⠕⠗⠔⠕⠉⠕" }, { "input": "Orion", "output": "â  â •â —â Šâ •â " }, { "input": "Oriya", "output": "â  â •â —â Šâ ½â " }, { "input": "Orizaba", "output": "â  â •â —â Šâ µâ â ƒâ " }, { "input": "Orkney", "output": "â  â •â —â …â â ‘â ½" }, { "input": "Orlando", "output": "⠠⠕⠗⠇⠯⠕" }, { "input": "Orleans", "output": "⠠⠕⠗⠇⠂â â Ž" }, { "input": "Orlon", "output": "⠠⠕⠗⠇⠕â " }, { "input": "Orlons", "output": "⠠⠕⠗⠇⠕â â Ž" }, { "input": "Orly", "output": "⠠⠕⠗⠇⠽" }, { "input": "Orpheus", "output": "â  â •â —â â “⠑⠥⠎" }, { "input": "Orphic", "output": "â  â •â —â â “â Šâ ‰" }, { "input": "Orr", "output": "â  â •â —â —" }, { "input": "Ortega", "output": "â  â •â —â žâ ‘â ›â " }, { "input": "Ortiz", "output": "â  â •â —â žâ Šâ µ" }, { "input": "Orval", "output": "â  â •â —â §â â ‡" }, { "input": "Orville", "output": "⠠⠕⠗⠧⠊⠇⠇⠑" }, { "input": "Orwell", "output": "⠠⠕⠗⠺⠑⠇⠇" }, { "input": "Orwellian", "output": "⠠⠕⠗⠺⠑⠇⠇⠊â â " }, { "input": "Os", "output": "â  â •â Ž" }, { "input": "Osage", "output": "â  â •â Žâ â ›â ‘" }, { "input": "Osaka", "output": "â  â •â Žâ â …â " }, { "input": "Osbert", "output": "⠠⠕⠎⠃⠻⠞" }, { "input": "Osborn", "output": "⠠⠕⠎⠃⠕⠗â " }, { "input": "Osborne", "output": "⠠⠕⠎⠃⠕⠗â â ‘" }, { "input": "Oscar", "output": "⠠⠕⠎⠉⠜" }, { "input": "Oscars", "output": "⠠⠕⠎⠉⠜⠎" }, { "input": "Osceola", "output": "⠠⠕⠎⠉⠑⠕⠇â " }, { "input": "Osgood", "output": "⠠⠕⠎⠛⠕⠕⠙" }, { "input": "Oshawa", "output": "â  â •â ©â â ºâ " }, { "input": "Oshkosh", "output": "â  â •â ©â …â •â ©" }, { "input": "Osiris", "output": "â  â •â Žâ Šâ —â Šâ Ž" }, { "input": "Oslo", "output": "⠠⠕⠎⠇⠕" }, { "input": "Osman", "output": "â  â •â Žâ â â " }, { "input": "Ostrogoth", "output": "⠠⠕⠌⠗⠕⠛⠕⠹" }, { "input": "Ostwald", "output": "⠠⠕⠌⠺â â ‡â ™" }, { "input": "Osvaldo", "output": "â  â •â Žâ §â â ‡â ™â •" }, { "input": "Oswald", "output": "â  â •â Žâ ºâ â ‡â ™" }, { "input": "Othello", "output": "⠠⠕⠮⠇⠇⠕" }, { "input": "Otis", "output": "â  â •â žâ Šâ Ž" }, { "input": "Ottawa", "output": "â  â •â žâ žâ â ºâ " }, { "input": "Ottawas", "output": "â  â •â žâ žâ â ºâ â Ž" }, { "input": "Otto", "output": "â  â •â žâ žâ •" }, { "input": "Ottoman", "output": "â  â •â žâ žâ •â â â " }, { "input": "Ouagadougou", "output": "â  â ³â â ›â â ™â ³â ›â ³" }, { "input": "Ouija", "output": "⠠⠳⠊⠚â " }, { "input": "Ovid", "output": "â  â •â §â Šâ ™" }, { "input": "Owen", "output": "⠠⠪⠢" }, { "input": "Owens", "output": "⠠⠪⠢⠎" }, { "input": "Oxford", "output": "â  â •â ­â ¿â ™" }, { "input": "Oxfords", "output": "⠠⠕⠭⠿⠙⠎" }, { "input": "Oxnard", "output": "â  â •â ­â â œâ ™" }, { "input": "Oxonian", "output": "â  â •â ­â •â â Šâ â " }, { "input": "Oxus", "output": "⠠⠕⠭⠥⠎" }, { "input": "Oxycontin", "output": "⠠⠕⠭⠽⠉⠕â â žâ ”" }, { "input": "Oz", "output": "â  â •â µ" }, { "input": "Ozark", "output": "⠠⠕⠵⠜⠅" }, { "input": "Ozarks", "output": "⠠⠕⠵⠜⠅⠎" }, { "input": "Ozymandias", "output": "⠠⠕⠵⠽â â ¯â Šâ â Ž" }, { "input": "Ozzie", "output": "⠠⠕⠵⠵⠊⠑" }, { "input": "P", "output": "â °â  â " }, { "input": "Pa", "output": "â  â â " }, { "input": "Paar", "output": "â  â â â œ" }, { "input": "Pablo", "output": "â  â â â ƒâ ‡â •" }, { "input": "Pablum", "output": "â  â â â ƒâ ‡â ¥â " }, { "input": "Pabst", "output": "â  â â â ƒâ Œ" }, { "input": "Pace", "output": "â  â â â ‰â ‘" }, { "input": "Pacheco", "output": "â  â â â ¡â ‘⠉⠕" }, { "input": "Pacific", "output": "â  â â â ‰â Šâ ‹â Šâ ‰" }, { "input": "Pacino", "output": "â  â â â ‰â ”â •" }, { "input": "Packard", "output": "â  â â â ‰â …⠜⠙" }, { "input": "Paderewski", "output": "â  â â â ™â »â ‘⠺⠎⠅⠊" }, { "input": "Padilla", "output": "â  â â â ™â Šâ ‡â ‡â " }, { "input": "Paganini", "output": "â  â â â ›â â â ”â Š" }, { "input": "Page", "output": "â  â â â ›â ‘" }, { "input": "Paglia", "output": "â  â â â ›â ‡â Šâ " }, { "input": "Pahlavi", "output": "â  â â â “â ‡â â §â Š" }, { "input": "Paige", "output": "â  â â â Šâ ›â ‘" }, { "input": "Paine", "output": "â  â â â ”â ‘" }, { "input": "Pakistan", "output": "â  â â â …â Šâ Œâ â " }, { "input": "Pakistani", "output": "â  â â â …â Šâ Œâ â â Š" }, { "input": "Pakistanis", "output": "â  â â â …â Šâ Œâ â â Šâ Ž" }, { "input": "Palau", "output": "â  â â â ‡â â ¥" }, { "input": "Palembang", "output": "â  â â â ‡â ‘â â ƒâ â â ›" }, { "input": "Paleocene", "output": "â  â â â ‡â ‘⠕⠉⠢⠑" }, { "input": "Paleogene", "output": "â  â â â ‡â ‘⠕⠛⠢⠑" }, { "input": "Paleolithic", "output": "â  â â â ‡â ‘⠕⠇⠊⠹⠊⠉" }, { "input": "Paleozoic", "output": "â  â â â ‡â ‘⠕⠵⠕⠊⠉" }, { "input": "Palermo", "output": "â  â â â ‡â »â â •" }, { "input": "Palestine", "output": "â  â â â ‡â ‘⠌⠔⠑" }, { "input": "Palestinian", "output": "â  â â â ‡â ‘⠌⠔⠊â â " }, { "input": "Palestinians", "output": "â  â â â ‡â ‘⠌⠔⠊â â â Ž" }, { "input": "Palestrina", "output": "â  â â â ‡â ‘⠌⠗⠔â " }, { "input": "Paley", "output": "â  â â â ‡â ‘â ½" }, { "input": "Palikir", "output": "â  â â â ‡â Šâ …â Šâ —" }, { "input": "Palisades", "output": "â  â â â ‡â Šâ Žâ â ™â ‘â Ž" }, { "input": "Palladio", "output": "â  â â â ‡â ‡â â ™â Šâ •" }, { "input": "Palmer", "output": "â  â â â ‡â â »" }, { "input": "Palmerston", "output": "â  â â â ‡â â »â Œâ •â " }, { "input": "Palmolive", "output": "â  â â â ‡â â •⠇⠊⠧⠑" }, { "input": "Palmyra", "output": "â  â â â ‡â â ½â —â " }, { "input": "Palomar", "output": "â  â â â ‡â •â â œ" }, { "input": "Pam", "output": "â  â â â " }, { "input": "Pamela", "output": "â  â â â â ‘â ‡â " }, { "input": "Pamirs", "output": "â  â â â â Šâ —â Ž" }, { "input": "Pampers", "output": "â  â â â â â »â Ž" }, { "input": "Pan", "output": "â  â â â " }, { "input": "Panama", "output": "â  â â â â â â " }, { "input": "Panamanian", "output": "â  â â â â â â â â Šâ â " }, { "input": "Panamanians", "output": "â  â â â â â â â â Šâ â â Ž" }, { "input": "Panamas", "output": "â  â â â â â â â Ž" }, { "input": "Panasonic", "output": "â  â â â â â Žâ •â â Šâ ‰" }, { "input": "Pandora", "output": "â  â â ¯â •â —â " }, { "input": "Pangaea", "output": "â  â â â â ›â â ‘â " }, { "input": "Pankhurst", "output": "â  â â â â …⠓⠥⠗⠌" }, { "input": "Panmunjom", "output": "â  â â â â â ¥â â šâ •â " }, { "input": "Pansy", "output": "â  â â â â Žâ ½" }, { "input": "Pantagruel", "output": "â  â â â â žâ â ›â —⠥⠑⠇" }, { "input": "Pantaloon", "output": "â  â â â â žâ â ‡â •â •â " }, { "input": "Pantheon", "output": "â  â â â â ®â •â " }, { "input": "Panza", "output": "â  â â â â µâ " }, { "input": "Paracelsus", "output": "â  â â œâ â ‰â ‘⠇⠎⠥⠎" }, { "input": "Paraclete", "output": "â  â â œâ â ‰â ‡â ‘â žâ ‘" }, { "input": "Paradise", "output": "â  â â œâ â ™â Šâ Žâ ‘" }, { "input": "Paraguay", "output": "â  â â œâ â ›â ¥â â ½" }, { "input": "Paraguayan", "output": "â  â â œâ â ›â ¥â â ½â â " }, { "input": "Paraguayans", "output": "â  â â œâ â ›â ¥â â ½â â â Ž" }, { "input": "Paramaribo", "output": "â  â â œâ â â œâ Šâ ƒâ •" }, { "input": "Paramount", "output": "â  â â œâ â â ¨â ž" }, { "input": "Paraná", "output": "â  â â œâ â â  â ˜â »â â ˜â °â –" }, { "input": "Parcheesi", "output": "â  â â œâ ¡â ‘â ‘â Žâ Š" }, { "input": "Pareto", "output": "â  â â œâ ‘â žâ •" }, { "input": "Paris", "output": "â  â â œâ Šâ Ž" }, { "input": "Parisian", "output": "â  â â œâ Šâ Žâ Šâ â " }, { "input": "Parisians", "output": "â  â â œâ Šâ Žâ Šâ â â Ž" }, { "input": "Park", "output": "â  â â œâ …" }, { "input": "Parker", "output": "â  â â œâ …â »" }, { "input": "Parkinson", "output": "â  â â œâ …⠔⠎⠕â " }, { "input": "Parkman", "output": "â  â â œâ …â â â " }, { "input": "Parks", "output": "â  â â œâ …â Ž" }, { "input": "Parliament", "output": "â  â â œâ ‡â Šâ â °â ž" }, { "input": "Parmesan", "output": "â  â â œâ â ‘â Žâ â " }, { "input": "Parmesans", "output": "â  â â œâ â ‘â Žâ â â Ž" }, { "input": "Parnassus", "output": "â  â â œâ â â Žâ Žâ ¥â Ž" }, { "input": "Parnell", "output": "â  â â œâ â ‘⠇⠇" }, { "input": "Parr", "output": "â  â â œâ —" }, { "input": "Parrish", "output": "â  â â œâ —â Šâ ©" }, { "input": "Parsi", "output": "â  â â œâ Žâ Š" }, { "input": "Parsifal", "output": "â  â â œâ Žâ Šâ ‹â â ‡" }, { "input": "Parsons", "output": "â  â â œâ Žâ •â â Ž" }, { "input": "Parthenon", "output": "â  â â œâ ®â â •â " }, { "input": "Parthia", "output": "â  â â œâ ¹â Šâ " }, { "input": "Pasadena", "output": "â  â â â Žâ â ™â ¢â " }, { "input": "Pascal", "output": "â  â â â Žâ ‰â â ‡" }, { "input": "Pasquale", "output": "â  â â â Žâ Ÿâ ¥â â ‡â ‘" }, { "input": "Passion", "output": "â  â â â Žâ ¨â " }, { "input": "Passions", "output": "â  â â â Žâ ¨â â Ž" }, { "input": "Passover", "output": "â  â â â Žâ Žâ •â §â »" }, { "input": "Passovers", "output": "â  â â â Žâ Žâ •⠧⠻⠎" }, { "input": "Pasternak", "output": "â  â â â Œâ »â â â …" }, { "input": "Pasteur", "output": "â  â â â Œâ ‘⠥⠗" }, { "input": "Pat", "output": "â  â â â ž" }, { "input": "Patagonia", "output": "â  â â â žâ â ›â •â â Šâ " }, { "input": "Patagonian", "output": "â  â â â žâ â ›â •â â Šâ â " }, { "input": "Pate", "output": "â  â â â žâ ‘" }, { "input": "Patel", "output": "â  â â â žâ ‘â ‡" }, { "input": "Paterson", "output": "â  â â â žâ »â Žâ •â " }, { "input": "Patna", "output": "â  â â â žâ â " }, { "input": "Patrica", "output": "â  â â â žâ —â Šâ ‰â " }, { "input": "Patrice", "output": "â  â â â žâ —⠊⠉⠑" }, { "input": "Patricia", "output": "â  â â â žâ —⠊⠉⠊â " }, { "input": "Patrick", "output": "â  â â â žâ —⠊⠉⠅" }, { "input": "Patsy", "output": "â  â â â žâ Žâ ½" }, { "input": "Patterson", "output": "â  â â â žâ žâ »â Žâ •â " }, { "input": "Patti", "output": "â  â â â žâ žâ Š" }, { "input": "Patton", "output": "â  â â â žâ žâ •â " }, { "input": "Patty", "output": "â  â â â žâ žâ ½" }, { "input": "Paul", "output": "â  â â â ¥â ‡" }, { "input": "Paula", "output": "â  â â â ¥â ‡â " }, { "input": "Paulette", "output": "â  â â â ¥â ‡â ‘â žâ žâ ‘" }, { "input": "Pauli", "output": "â  â â â ¥â ‡â Š" }, { "input": "Pauline", "output": "â  â â â ¥â ‡â ”â ‘" }, { "input": "Pauling", "output": "â  â â â ¥â ‡â ¬" }, { "input": "Pavarotti", "output": "â  â â â §â œâ •â žâ žâ Š" }, { "input": "Pavlov", "output": "â  â â â §â ‡â •â §" }, { "input": "Pavlova", "output": "â  â â â §â ‡â •â §â " }, { "input": "Pavlovian", "output": "â  â â â §â ‡â •â §â Šâ â " }, { "input": "Pawnee", "output": "â  â â â ºâ â ‘â ‘" }, { "input": "PayPal", "output": "â  â â â ½â  â â â ‡" }, { "input": "Payne", "output": "â  â â â ½â â ‘" }, { "input": "Paypal", "output": "â  â â â ½â â â ‡" }, { "input": "Pb", "output": "â  â â ƒ" }, { "input": "Pd", "output": "â °â  â â ™" }, { "input": "Peabody", "output": "â  â â ‚⠃⠕⠙⠽" }, { "input": "Peace", "output": "â  â â ‚⠉⠑" }, { "input": "Peale", "output": "â  â â ‚⠇⠑" }, { "input": "Pearl", "output": "â  â â ‘⠜⠇" }, { "input": "Pearlie", "output": "â  â â ‘⠜⠇⠊⠑" }, { "input": "Pearson", "output": "â  â â ‘⠜⠎⠕â " }, { "input": "Peary", "output": "â  â â ‘⠜⠽" }, { "input": "Pechora", "output": "â  â â ‘â ¡â •â —â " }, { "input": "Peck", "output": "â  â â ‘⠉⠅" }, { "input": "Peckinpah", "output": "â  â â ‘⠉⠅⠔â â â “" }, { "input": "Pecos", "output": "â  â â ‘⠉⠕⠎" }, { "input": "Pedro", "output": "â  â â «â —â •" }, { "input": "Peel", "output": "â  â â ‘â ‘â ‡" }, { "input": "Peg", "output": "â  â â ‘â ›" }, { "input": "Pegasus", "output": "â  â â ‘â ›â â Žâ ¥â Ž" }, { "input": "Pegasuses", "output": "â  â â ‘â ›â â Žâ ¥â Žâ ‘â Ž" }, { "input": "Peggy", "output": "â  â â ‘â ¶â ½" }, { "input": "Pei", "output": "â  â â ‘â Š" }, { "input": "Peiping", "output": "â  â â ‘â Šâ â ¬" }, { "input": "Pekinese", "output": "â  â â ‘⠅⠔⠑⠎⠑" }, { "input": "Pekineses", "output": "â  â â ‘⠅⠔⠑⠎⠑⠎" }, { "input": "Peking", "output": "â  â â ‘â …â ¬" }, { "input": "Pekingese", "output": "â  â â ‘⠅⠬⠑⠎⠑" }, { "input": "Pekingeses", "output": "â  â â ‘⠅⠬⠑⠎⠑⠎" }, { "input": "Pekings", "output": "â  â â ‘⠅⠬⠎" }, { "input": "Pele", "output": "â  â â ‘⠇⠑" }, { "input": "Pelee", "output": "â  â â ‘⠇⠑⠑" }, { "input": "Peloponnese", "output": "â  â â ‘⠇⠕â â •â â â ‘â Žâ ‘" }, { "input": "Pembroke", "output": "â  â â ‘â â ƒâ —â •â …â ‘" }, { "input": "Pena", "output": "â  â â ¢â " }, { "input": "Penderecki", "output": "â  â â ¢â ™â »â ‘⠉⠅⠊" }, { "input": "Penelope", "output": "â  â â ¢â ‘⠇⠕â â ‘" }, { "input": "Penn", "output": "â  â â ¢â " }, { "input": "Penney", "output": "â  â â ¢â â ‘â ½" }, { "input": "Pennington", "output": "â  â â ¢â â ¬â žâ •â " }, { "input": "Pennsylvania", "output": "â  â â ¢â â Žâ ½â ‡â §â â â Šâ " }, { "input": "Pennsylvanian", "output": "â  â â ¢â â Žâ ½â ‡â §â â â Šâ â " }, { "input": "Pennsylvanians", "output": "â  â â ¢â â Žâ ½â ‡â §â â â Šâ â â Ž" }, { "input": "Penny", "output": "â  â â ¢â â ½" }, { "input": "Pennzoil", "output": "â  â â ¢â â µâ •â Šâ ‡" }, { "input": "Pensacola", "output": "â  â â ¢â Žâ â ‰â •â ‡â " }, { "input": "Pentagon", "output": "â  â â ¢â žâ â ›â •â " }, { "input": "Pentateuch", "output": "â  â â ¢â žâ â žâ ‘⠥⠡" }, { "input": "Pentax", "output": "â  â â ¢â žâ â ­" }, { "input": "Pentecost", "output": "â  â â ¢â žâ ‘⠉⠕⠌" }, { "input": "Pentecostal", "output": "â  â â ¢â žâ ‘⠉⠕⠌â â ‡" }, { "input": "Pentecostals", "output": "â  â â ¢â žâ ‘⠉⠕⠌â â ‡â Ž" }, { "input": "Pentecosts", "output": "â  â â ¢â žâ ‘⠉⠕⠌⠎" }, { "input": "Pentium", "output": "â  â â ¢â žâ Šâ ¥â " }, { "input": "Peoria", "output": "â  â â ‘â •â —â Šâ " }, { "input": "Pepin", "output": "â  â â ‘â â ”" }, { "input": "Pepsi", "output": "â  â â ‘â â Žâ Š" }, { "input": "Pepys", "output": "â  â â ‘â â ½â Ž" }, { "input": "Pequot", "output": "â  â â ‘⠟⠥⠕⠞" }, { "input": "Percheron", "output": "â  â â »â ¡â »â •â " }, { "input": "Percival", "output": "â  â â »â ‰â Šâ §â â ‡" }, { "input": "Percy", "output": "â  â â »â ‰â ½" }, { "input": "Perelman", "output": "â  â â »â ‘â ‡â â â " }, { "input": "Perez", "output": "â  â â »â ‘â µ" }, { "input": "Periclean", "output": "â  â â »â Šâ ‰â ‡â ‚â " }, { "input": "Pericles", "output": "â  â â »â Šâ ‰â ‡â ‘â Ž" }, { "input": "Perkins", "output": "â  â â »â …⠔⠎" }, { "input": "Perl", "output": "â  â â »â ‡" }, { "input": "Perm", "output": "â  â â »â " }, { "input": "Permalloy", "output": "â  â â »â â â ‡â ‡â •â ½" }, { "input": "Permian", "output": "â  â â »â â Šâ â " }, { "input": "Pernod", "output": "â  â â »â â •â ™" }, { "input": "Peron", "output": "â  â â »â •â " }, { "input": "Perot", "output": "â  â â »â •â ž" }, { "input": "Perrier", "output": "â  â â »â —â Šâ »" }, { "input": "Perry", "output": "â  â â »â —â ½" }, { "input": "Perseid", "output": "â  â â »â Žâ ‘â Šâ ™" }, { "input": "Persephone", "output": "â  â â »â Žâ ‘â â “â •â â ‘" }, { "input": "Persepolis", "output": "â  â â »â Žâ ‘â â •⠇⠊⠎" }, { "input": "Perseus", "output": "â  â â »â Žâ ‘⠥⠎" }, { "input": "Pershing", "output": "â  â â »â ©â ¬" }, { "input": "Persia", "output": "â  â â »â Žâ Šâ " }, { "input": "Persian", "output": "â  â â »â Žâ Šâ â " }, { "input": "Persians", "output": "â  â â »â Žâ Šâ â â Ž" }, { "input": "Perth", "output": "â  â â »â ¹" }, { "input": "Peru", "output": "â  â â »â ¥" }, { "input": "Peruvian", "output": "â  â â »â ¥â §â Šâ â " }, { "input": "Peruvians", "output": "â  â â »â ¥â §â Šâ â â Ž" }, { "input": "Peshawar", "output": "â  â â ‘â ©â â ºâ œ" }, { "input": "Pete", "output": "â  â â ‘â žâ ‘" }, { "input": "Peter", "output": "â  â â ‘â žâ »" }, { "input": "Peters", "output": "â  â â ‘⠞⠻⠎" }, { "input": "Petersen", "output": "â  â â ‘⠞⠻⠎⠢" }, { "input": "Peterson", "output": "â  â â ‘⠞⠻⠎⠕â " }, { "input": "Petra", "output": "â  â â ‘â žâ —â " }, { "input": "Petrarch", "output": "â  â â ‘⠞⠗⠜⠡" }, { "input": "Petty", "output": "â  â â ‘â žâ žâ ½" }, { "input": "Peugeot", "output": "â  â â ‘⠥⠛⠑⠕⠞" }, { "input": "Pfizer", "output": "â  â â ‹â Šâ µâ »" }, { "input": "PhD", "output": "â  â â “â  â ™" }, { "input": "Phaedra", "output": "â  â â “â â «â —â " }, { "input": "Phaethon", "output": "â  â â “â â ‘⠹⠕â " }, { "input": "Phanerozoic", "output": "â  â â “â â â »â •⠵⠕⠊⠉" }, { "input": "Pharaoh", "output": "â  â â “â œâ â •â “" }, { "input": "Pharaohs", "output": "â  â â “â œâ â •â “â Ž" }, { "input": "Pharisee", "output": "â  â â “⠜⠊⠎⠑⠑" }, { "input": "Pharisees", "output": "â  â â “⠜⠊⠎⠑⠑⠎" }, { "input": "Phekda", "output": "â  â â “â ‘â …â ™â " }, { "input": "Phelps", "output": "â  â â “â ‘â ‡â â Ž" }, { "input": "Phidias", "output": "â  â â “⠊⠙⠊â â Ž" }, { "input": "Phil", "output": "â  â â “â Šâ ‡" }, { "input": "Philadelphia", "output": "â  â â “â Šâ ‡â â ™â ‘â ‡â â “â Šâ " }, { "input": "Philby", "output": "â  â â “⠊⠇⠃⠽" }, { "input": "Philip", "output": "â  â â “⠊⠇⠊â " }, { "input": "Philippe", "output": "â  â â “⠊⠇⠊â â â ‘" }, { "input": "Philippians", "output": "â  â â “⠊⠇⠊â â â Šâ â â Ž" }, { "input": "Philippine", "output": "â  â â “⠊⠇⠊â â â ”â ‘" }, { "input": "Philippines", "output": "â  â â “⠊⠇⠊â â â ”â ‘â Ž" }, { "input": "Philips", "output": "â  â â “⠊⠇⠊â â Ž" }, { "input": "Philistine", "output": "â  â â “⠊⠇⠊⠌⠔⠑" }, { "input": "Phillip", "output": "â  â â “⠊⠇⠇⠊â " }, { "input": "Phillipa", "output": "â  â â “⠊⠇⠇⠊â â " }, { "input": "Phillips", "output": "â  â â “⠊⠇⠇⠊â â Ž" }, { "input": "Philly", "output": "â  â â “⠊⠇⠇⠽" }, { "input": "Phipps", "output": "â  â â “â Šâ â â Ž" }, { "input": "Phobos", "output": "â  â â “⠕⠃⠕⠎" }, { "input": "Phoebe", "output": "â  â â “⠕⠑⠃⠑" }, { "input": "Phoenicia", "output": "â  â â “⠕⠢⠊⠉⠊â " }, { "input": "Phoenix", "output": "â  â â “⠕⠢⠊⠭" }, { "input": "Photostat", "output": "â  â â “â •â žâ •â Œâ â ž" }, { "input": "Photostats", "output": "â  â â “â •â žâ •â Œâ â žâ Ž" }, { "input": "Photostatted", "output": "â  â â “â •â žâ •â Œâ â žâ žâ «" }, { "input": "Photostatting", "output": "â  â â “â •â žâ •â Œâ â žâ žâ ¬" }, { "input": "Phrygia", "output": "â  â â “⠗⠽⠛⠊â " }, { "input": "Phyllis", "output": "â  â â “⠽⠇⠇⠊⠎" }, { "input": "Piaf", "output": "â  â â Šâ â ‹" }, { "input": "Piaget", "output": "â  â â Šâ â ›â ‘â ž" }, { "input": "Pianola", "output": "â  â â Šâ â â •â ‡â " }, { "input": "Picasso", "output": "â  â â Šâ ‰â â Žâ Žâ •" }, { "input": "Piccadilly", "output": "â  â â Šâ ’â â ™â Šâ ‡â ‡â ½" }, { "input": "Pickering", "output": "â  â â Šâ ‰â …⠻⠬" }, { "input": "Pickett", "output": "â  â â Šâ ‰â …â ‘â žâ ž" }, { "input": "Pickford", "output": "â  â â Šâ ‰â …â ¿â ™" }, { "input": "Pickwick", "output": "â  â â Šâ ‰â …⠺⠊⠉⠅" }, { "input": "Pict", "output": "â  â â Šâ ‰â ž" }, { "input": "Piedmont", "output": "â  â â Šâ «â â •â â ž" }, { "input": "Pierce", "output": "â  â â Šâ »â ‰â ‘" }, { "input": "Pierre", "output": "â  â â Šâ »â —â ‘" }, { "input": "Pierrot", "output": "â  â â Šâ »â —â •â ž" }, { "input": "Pigmies", "output": "â  â â Šâ ›â â Šâ ‘â Ž" }, { "input": "Pigmy", "output": "â  â â Šâ ›â â ½" }, { "input": "Pike", "output": "â  â â Šâ …â ‘" }, { "input": "Pilate", "output": "â  â â Šâ ‡â â žâ ‘" }, { "input": "Pilates", "output": "â  â â Šâ ‡â â žâ ‘â Ž" }, { "input": "Pilcomayo", "output": "â  â â Šâ ‡â ‰â •â â â ½â •" }, { "input": "Pilgrim", "output": "â  â â Šâ ‡â ›â —â Šâ " }, { "input": "Pillsbury", "output": "â  â â Šâ ‡â ‡â Žâ ƒâ ¥â —â ½" }, { "input": "Pinatubo", "output": "â  â â ”â â žâ ¥â ƒâ •" }, { "input": "Pincus", "output": "â  â â ”⠉⠥⠎" }, { "input": "Pindar", "output": "â  â â ”⠙⠜" }, { "input": "Pinkerton", "output": "â  â â ”⠅⠻⠞⠕â " }, { "input": "Pinocchio", "output": "â  â â ”⠕⠉⠡⠊⠕" }, { "input": "Pinochet", "output": "â  â â ”â •â ¡â ‘â ž" }, { "input": "Pinter", "output": "â  â â ”â žâ »" }, { "input": "Pippin", "output": "â  â â Šâ â â ”" }, { "input": "Piraeus", "output": "â  â â Šâ —â â ‘⠥⠎" }, { "input": "Pirandello", "output": "â  â â Šâ —⠯⠑⠇⠇⠕" }, { "input": "Pisa", "output": "â  â â Šâ Žâ " }, { "input": "Pisces", "output": "â  â â Šâ Žâ ‰â ‘â Ž" }, { "input": "Pisistratus", "output": "â  â â Šâ Žâ Šâ Œâ —â â žâ ¥â Ž" }, { "input": "Pissaro", "output": "â  â â Šâ Žâ Žâ œâ •" }, { "input": "Pitcairn", "output": "â  â â Šâ žâ ‰â â Šâ —â " }, { "input": "Pitt", "output": "â  â â Šâ žâ ž" }, { "input": "Pittman", "output": "â  â â Šâ žâ žâ â â " }, { "input": "Pitts", "output": "â  â â Šâ žâ žâ Ž" }, { "input": "Pittsburgh", "output": "â  â â Šâ žâ žâ Žâ ƒâ ¥â —â £" }, { "input": "Pius", "output": "â  â â Šâ ¥â Ž" }, { "input": "Pizarro", "output": "â  â â Šâ µâ œâ —â •" }, { "input": "Pkwy", "output": "â  â â …⠺⠽" }, { "input": "Pl", "output": "â  â â ‡" }, { "input": "Planck", "output": "â  â â ‡â â â ‰â …" }, { "input": "Plantagenet", "output": "â  â â ‡â â â žâ â ›â ¢â ‘â ž" }, { "input": "Plasticine", "output": "â  â â ‡â â Œâ Šâ ‰â ”â ‘" }, { "input": "Plataea", "output": "â  â â ‡â â žâ â ‘â " }, { "input": "Plath", "output": "â  â â ‡â â ¹" }, { "input": "Plato", "output": "â  â â ‡â â žâ •" }, { "input": "Platonic", "output": "â  â â ‡â â žâ •â â Šâ ‰" }, { "input": "Platonism", "output": "â  â â ‡â â žâ •â â Šâ Žâ " }, { "input": "Platonist", "output": "â  â â ‡â â žâ •â â Šâ Œ" }, { "input": "Platte", "output": "â  â â ‡â â žâ žâ ‘" }, { "input": "Plautus", "output": "â  â â ‡â â ¥â žâ ¥â Ž" }, { "input": "PlayStation", "output": "â  â â ‡â â ½â  â Œâ â °â " }, { "input": "Playboy", "output": "â  â â ‡â â ½â ƒâ •â ½" }, { "input": "Playtex", "output": "â  â â ‡â â ½â žâ ‘â ­" }, { "input": "Pleiades", "output": "â  â â ‡â ‘â Šâ â ™â ‘â Ž" }, { "input": "Pleistocene", "output": "â  â â ‡â ‘⠊⠌⠕⠉⠢⠑" }, { "input": "Plexiglas", "output": "â  â â ‡â ‘⠭⠊⠛⠇â â Ž" }, { "input": "Plexiglases", "output": "â  â â ‡â ‘⠭⠊⠛⠇â â Žâ ‘â Ž" }, { "input": "Pliny", "output": "â  â â ‡â ”â ½" }, { "input": "Pliocene", "output": "â  â â ‡â Šâ •⠉⠢⠑" }, { "input": "Plutarch", "output": "â  â â ‡â ¥â žâ œâ ¡" }, { "input": "Pluto", "output": "â  â â ‡â ¥â žâ •" }, { "input": "Plymouth", "output": "â  â â ‡â ½â â ³â ¹" }, { "input": "Pm", "output": "â  â â " }, { "input": "Po", "output": "â  â â •" }, { "input": "Pocahontas", "output": "â  â â •â ‰â â “â •â â žâ â Ž" }, { "input": "Pocono", "output": "â  â â •⠉⠕â â •" }, { "input": "Poconos", "output": "â  â â •⠉⠕â â •â Ž" }, { "input": "Podgorica", "output": "â  â â •⠙⠛⠕⠗⠊⠉â " }, { "input": "Podhoretz", "output": "â  â â •⠙⠓⠕⠗⠑⠞⠵" }, { "input": "Podunk", "output": "â  â â •⠙⠥â â …" }, { "input": "Poe", "output": "â  â â •â ‘" }, { "input": "Pogo", "output": "â  â â •⠛⠕" }, { "input": "Poincaré", "output": "â  â â •⠔⠉⠜⠠⠘⠻â â ˜â ‰" }, { "input": "Poiret", "output": "â  â â •â Šâ —â ‘â ž" }, { "input": "Poirot", "output": "â  â â •â Šâ —â •â ž" }, { "input": "Poisson", "output": "â  â â •â Šâ Žâ Žâ •â " }, { "input": "Poitier", "output": "â  â â •â Šâ žâ Šâ »" }, { "input": "Pokémon", "output": "â  â â •⠅⠠⠘⠻â â ˜â ‰â â •â " }, { "input": "Poland", "output": "â  â â •⠇⠯" }, { "input": "Polanski", "output": "â  â â •â ‡â â â Žâ …â Š" }, { "input": "Polaris", "output": "â  â â •⠇⠜⠊⠎" }, { "input": "Polaroid", "output": "â  â â •⠇⠜⠕⠊⠙" }, { "input": "Polaroids", "output": "â  â â •⠇⠜⠕⠊⠙⠎" }, { "input": "Pole", "output": "â  â â •⠇⠑" }, { "input": "Poles", "output": "â  â â •⠇⠑⠎" }, { "input": "Polish", "output": "â  â â •⠇⠊⠩" }, { "input": "Politburo", "output": "â  â â •⠇⠊⠞⠃⠥⠗⠕" }, { "input": "Polk", "output": "â  â â •⠇⠅" }, { "input": "Pollard", "output": "â  â â •⠇⠇⠜⠙" }, { "input": "Pollock", "output": "â  â â •⠇⠇⠕⠉⠅" }, { "input": "Pollux", "output": "â  â â •⠇⠇⠥⠭" }, { "input": "Polly", "output": "â  â â •⠇⠇⠽" }, { "input": "Pollyanna", "output": "â  â â •⠇⠇⠽â â â â " }, { "input": "Polo", "output": "â  â â •⠇⠕" }, { "input": "Poltava", "output": "â  â â •⠇⠞â â §â " }, { "input": "Polyhymnia", "output": "â  â â •⠇⠽⠓⠽â â â Šâ " }, { "input": "Polynesia", "output": "â  â â •⠇⠽â â ‘â Žâ Šâ " }, { "input": "Polynesian", "output": "â  â â •⠇⠽â â ‘â Žâ Šâ â " }, { "input": "Polynesians", "output": "â  â â •⠇⠽â â ‘â Žâ Šâ â â Ž" }, { "input": "Polyphemus", "output": "â  â â •⠇⠽â â “â ‘â â ¥â Ž" }, { "input": "Pomerania", "output": "â  â â •â â »â â â Šâ " }, { "input": "Pomeranian", "output": "â  â â •â â »â â â Šâ â " }, { "input": "Pomona", "output": "â  â â •â â •â â " }, { "input": "Pompadour", "output": "â  â â •â â â â ™â ³â —" }, { "input": "Pompeii", "output": "â  â â •â â â ‘â Šâ Š" }, { "input": "Pompey", "output": "â  â â •â â â ‘â ½" }, { "input": "Ponce", "output": "â  â â •â â ‰â ‘" }, { "input": "Pontchartrain", "output": "â  â â •â â žâ ¡â œâ žâ —â â ”" }, { "input": "Pontiac", "output": "â  â â •â â žâ Šâ â ‰" }, { "input": "Pontianak", "output": "â  â â •â â žâ Šâ â â â …" }, { "input": "Pooh", "output": "â  â â •â •â “" }, { "input": "Poole", "output": "â  â â •⠕⠇⠑" }, { "input": "Poona", "output": "â  â â •â •â â " }, { "input": "Pope", "output": "â  â â •â â ‘" }, { "input": "Popeye", "output": "â  â â •â â ‘⠽⠑" }, { "input": "Popocatepetl", "output": "â  â â •â â •â ‰â â žâ ‘â â ‘â žâ ‡" }, { "input": "Popper", "output": "â  â â •â â â »" }, { "input": "Poppins", "output": "â  â â •â â â ”â Ž" }, { "input": "Popsicle", "output": "â  â â •â â Žâ Šâ ‰â ‡â ‘" }, { "input": "Porfirio", "output": "â  â â •â —â ‹â Šâ —â Šâ •" }, { "input": "Porrima", "output": "â  â â •â —â —â Šâ â " }, { "input": "Porsche", "output": "â  â â •â —â Žâ ¡â ‘" }, { "input": "Porter", "output": "â  â â •â —â žâ »" }, { "input": "Portia", "output": "â  â â •â —â žâ Šâ " }, { "input": "Portland", "output": "â  â â •⠗⠞⠇⠯" }, { "input": "Portsmouth", "output": "â  â â •â —â žâ Žâ â ³â ¹" }, { "input": "Portugal", "output": "â  â â •⠗⠞⠥⠛â â ‡" }, { "input": "Portuguese", "output": "â  â â •⠗⠞⠥⠛⠥⠑⠎⠑" }, { "input": "Poseidon", "output": "â  â â •⠎⠑⠊⠙⠕â " }, { "input": "Post", "output": "â  â â •â Œ" }, { "input": "Potemkin", "output": "â  â â •â žâ ‘â â …â ”" }, { "input": "Potomac", "output": "â  â â •â žâ •â â â ‰" }, { "input": "Potsdam", "output": "â  â â •â žâ Žâ ™â â " }, { "input": "Pottawatomie", "output": "â  â â •â žâ žâ â ºâ â žâ •â â Šâ ‘" }, { "input": "Potter", "output": "â  â â •â žâ žâ »" }, { "input": "Potts", "output": "â  â â •â žâ žâ Ž" }, { "input": "Pound", "output": "â  â â ¨â ™" }, { "input": "Poussin", "output": "â  â â ³â Žâ Žâ ”" }, { "input": "Powell", "output": "â  â â ªâ ‘⠇⠇" }, { "input": "PowerPoint", "output": "â  â â ªâ »â  â â •⠔⠞" }, { "input": "Powers", "output": "â  â â ªâ »â Ž" }, { "input": "Powhatan", "output": "â  â â ªâ “â â žâ â " }, { "input": "Poznan", "output": "â  â â •â µâ â â " }, { "input": "Prada", "output": "â  â â —â â ™â " }, { "input": "Prado", "output": "â  â â —â â ™â •" }, { "input": "Praetorian", "output": "â  â â —â â ‘â žâ •â —â Šâ â " }, { "input": "Prague", "output": "â  â â —â â ›â ¥â ‘" }, { "input": "Praia", "output": "â  â â —â â Šâ " }, { "input": "Prakrit", "output": "â  â â —â â …â —â Šâ ž" }, { "input": "Pratchett", "output": "â  â â —â â žâ ¡â ‘â žâ ž" }, { "input": "Pratt", "output": "â  â â —â â žâ ž" }, { "input": "Pravda", "output": "â  â â —â â §â ™â " }, { "input": "Praxiteles", "output": "â  â â —â â ­â Šâ žâ ‘⠇⠑⠎" }, { "input": "Preakness", "output": "â  â â —â ‚â …â °â Ž" }, { "input": "Precambrian", "output": "â  â â —â ‘â ‰â â â ƒâ —â Šâ â " }, { "input": "Preminger", "output": "â  â â —â ‘â â ¬â »" }, { "input": "Premyslid", "output": "â  â â —â ‘â â ½â Žâ ‡â Šâ ™" }, { "input": "Prensa", "output": "â  â â —⠢⠎â " }, { "input": "Prentice", "output": "â  â â —⠢⠞⠊⠉⠑" }, { "input": "Pres", "output": "â  â â —â ‘â Ž" }, { "input": "Presbyterian", "output": "â  â â —⠑⠎⠃⠽⠞⠻⠊â â " }, { "input": "Presbyterianism", "output": "â  â â —⠑⠎⠃⠽⠞⠻⠊â â â Šâ Žâ " }, { "input": "Presbyterians", "output": "â  â â —⠑⠎⠃⠽⠞⠻⠊â â â Ž" }, { "input": "Prescott", "output": "â  â â —⠑⠎⠉⠕⠞⠞" }, { "input": "President", "output": "â  â â —⠑⠎⠊⠙⠢⠞" }, { "input": "Presidents", "output": "â  â â —⠑⠎⠊⠙⠢⠞⠎" }, { "input": "Presley", "output": "â  â â —⠑⠎⠇⠑⠽" }, { "input": "Preston", "output": "â  â â —⠑⠌⠕â " }, { "input": "Pretoria", "output": "â  â â —â ‘â žâ •â —â Šâ " }, { "input": "Priam", "output": "â  â â —â Šâ â " }, { "input": "Pribilof", "output": "â  â â —⠊⠃⠊⠇⠷" }, { "input": "Price", "output": "â  â â —⠊⠉⠑" }, { "input": "Priestley", "output": "â  â â —⠊⠑⠌⠇⠑⠽" }, { "input": "Prince", "output": "â  â â —⠔⠉⠑" }, { "input": "Princeton", "output": "â  â â —⠔⠉⠑⠞⠕â " }, { "input": "Principe", "output": "â  â â —⠔⠉⠊â â ‘" }, { "input": "Priscilla", "output": "â  â â —⠊⠎⠉⠊⠇⠇â " }, { "input": "Prius", "output": "â  â â —⠊⠥⠎" }, { "input": "Procrustean", "output": "â  â â —⠕⠉⠗⠥⠌⠂â " }, { "input": "Procrustes", "output": "â  â â —⠕⠉⠗⠥⠌⠑⠎" }, { "input": "Procter", "output": "â  â â —⠕⠉⠞⠻" }, { "input": "Procyon", "output": "â  â â —⠕⠉⠽⠕â " }, { "input": "Prof", "output": "â  â â —â ·" }, { "input": "Prohibition", "output": "â  â â —⠕⠓⠊⠃⠊⠰â " }, { "input": "Prokofiev", "output": "â  â â —â •â …â ·â Šâ ‘â §" }, { "input": "Promethean", "output": "â  â â —â •â â ‘â ®â â " }, { "input": "Prometheus", "output": "â  â â —â •â â ‘⠮⠥⠎" }, { "input": "Proserpine", "output": "â  â â —â •â Žâ »â â ”â ‘" }, { "input": "Protagoras", "output": "â  â â —â •â žâ â ›â •â —â â Ž" }, { "input": "Proterozoic", "output": "â  â â —⠕⠞⠻⠕⠵⠕⠊⠉" }, { "input": "Protestant", "output": "â  â â —â •â žâ ‘â Œâ â â ž" }, { "input": "Protestantism", "output": "â  â â —â •â žâ ‘â Œâ â â žâ Šâ Žâ " }, { "input": "Protestantisms", "output": "â  â â —â •â žâ ‘â Œâ â â žâ Šâ Žâ â Ž" }, { "input": "Protestants", "output": "â  â â —â •â žâ ‘â Œâ â â žâ Ž" }, { "input": "Proteus", "output": "â  â â —⠕⠞⠑⠥⠎" }, { "input": "Proudhon", "output": "â  â â —⠳⠙⠓⠕â " }, { "input": "Proust", "output": "â  â â —⠳⠌" }, { "input": "Provencals", "output": "â  â â —⠕⠧⠢⠉â â ‡â Ž" }, { "input": "Provence", "output": "â  â â —â •â §â °â ‘" }, { "input": "Provençal", "output": "â  â â —⠕⠧⠢⠠⠘⠻â â ˜â Žâ â ‡" }, { "input": "Proverbs", "output": "â  â â —⠕⠧⠻⠃⠎" }, { "input": "Providence", "output": "â  â â —⠕⠧⠊⠙⠰⠑" }, { "input": "Providences", "output": "â  â â —⠕⠧⠊⠙⠰⠑⠎" }, { "input": "Provo", "output": "â  â â —â •â §â •" }, { "input": "Prozac", "output": "â  â â —â •â µâ â ‰" }, { "input": "Prudence", "output": "â  â â —⠥⠙⠰⠑" }, { "input": "Prudential", "output": "â  â â —⠥⠙⠢⠞⠊â â ‡" }, { "input": "Pruitt", "output": "â  â â —⠥⠊⠞⠞" }, { "input": "Prussia", "output": "â  â â —⠥⠎⠎⠊â " }, { "input": "Prussian", "output": "â  â â —⠥⠎⠎⠊â â " }, { "input": "Prut", "output": "â  â â —⠥⠞" }, { "input": "Pryor", "output": "â  â â —⠽⠕⠗" }, { "input": "Psalms", "output": "â  â â Žâ â ‡â â Ž" }, { "input": "Psalter", "output": "â  â â Žâ â ‡â žâ »" }, { "input": "Psalters", "output": "â  â â Žâ â ‡â žâ »â Ž" }, { "input": "Psyche", "output": "â  â â Žâ ½â ¡â ‘" }, { "input": "Pt", "output": "â  â â ž" }, { "input": "Ptah", "output": "â  â â žâ â “" }, { "input": "Ptolemaic", "output": "â  â â žâ •⠇⠑â â â Šâ ‰" }, { "input": "Ptolemies", "output": "â  â â žâ •⠇⠑â â Šâ ‘â Ž" }, { "input": "Ptolemy", "output": "â  â â žâ •⠇⠑â â ½" }, { "input": "Pu", "output": "â  â â ¥" }, { "input": "Puccini", "output": "â  â â ¥â ’⠔⠊" }, { "input": "Puck", "output": "â  â â ¥â ‰â …" }, { "input": "Puckett", "output": "â  â â ¥â ‰â …â ‘â žâ ž" }, { "input": "Puebla", "output": "â  â â ¥â ‘⠃⠇â " }, { "input": "Pueblo", "output": "â  â â ¥â ‘⠃⠇⠕" }, { "input": "Puget", "output": "â  â â ¥â ›â ‘â ž" }, { "input": "Pugh", "output": "â  â â ¥â £" }, { "input": "Pulaski", "output": "â  â â ¥â ‡â â Žâ …â Š" }, { "input": "Pulitzer", "output": "â  â â ¥â ‡â Šâ žâ µâ »" }, { "input": "Pullman", "output": "â  â â ¥â ‡â ‡â â â " }, { "input": "Pullmans", "output": "â  â â ¥â ‡â ‡â â â â Ž" }, { "input": "Punch", "output": "â  â â ¥â â ¡" }, { "input": "Punic", "output": "â  â â ¥â â Šâ ‰" }, { "input": "Punjab", "output": "â  â â ¥â â šâ â ƒ" }, { "input": "Punjabi", "output": "â  â â ¥â â šâ â ƒâ Š" }, { "input": "Purana", "output": "â  â â ¥â —â â â " }, { "input": "Purcell", "output": "â  â â ¥â —⠉⠑⠇⠇" }, { "input": "Purdue", "output": "â  â â ¥â —⠙⠥⠑" }, { "input": "Purim", "output": "â  â â ¥â —â Šâ " }, { "input": "Purims", "output": "â  â â ¥â —â Šâ â Ž" }, { "input": "Purina", "output": "â  â â ¥â —â ”â " }, { "input": "Puritan", "output": "â  â â ¥â —â Šâ žâ â " }, { "input": "Puritanism", "output": "â  â â ¥â —â Šâ žâ â â Šâ Žâ " }, { "input": "Puritanisms", "output": "â  â â ¥â —â Šâ žâ â â Šâ Žâ â Ž" }, { "input": "Purus", "output": "â  â â ¥â —⠥⠎" }, { "input": "Pusan", "output": "â  â â ¥â Žâ â " }, { "input": "Pusey", "output": "â  â â ¥â Žâ ‘â ½" }, { "input": "Pushkin", "output": "â  â â ¥â ©â …â ”" }, { "input": "Pushtu", "output": "â  â â ¥â ©â žâ ¥" }, { "input": "Putin", "output": "â  â â ¥â žâ ”" }, { "input": "Putnam", "output": "â  â â ¥â žâ â â " }, { "input": "Puzo", "output": "â  â â ¥â µâ •" }, { "input": "Pygmalion", "output": "â  â â ½â ›â â â ‡â Šâ •â " }, { "input": "Pygmies", "output": "â  â â ½â ›â â Šâ ‘â Ž" }, { "input": "Pygmy", "output": "â  â â ½â ›â â ½" }, { "input": "Pyle", "output": "â  â â ½â ‡â ‘" }, { "input": "Pym", "output": "â  â â ½â " }, { "input": "Pynchon", "output": "â  â â ½â â ¡â •â " }, { "input": "Pyongyang", "output": "â  â â ½â °â ›â ½â â â ›" }, { "input": "Pyotr", "output": "â  â â ½â •â žâ —" }, { "input": "Pyrenees", "output": "â  â â ½â —⠢⠑⠑⠎" }, { "input": "Pyrex", "output": "â  â â ½â —â ‘â ­" }, { "input": "Pyrexes", "output": "â  â â ½â —â ‘â ­â ‘â Ž" }, { "input": "Pyrrhic", "output": "â  â â ½â —â —â “â Šâ ‰" }, { "input": "Pythagoras", "output": "â  â â ½â ¹â â ›â •â —â â Ž" }, { "input": "Pythagorean", "output": "â  â â ½â ¹â â ›â •â —â ‚â " }, { "input": "Pythias", "output": "â  â â ½â ¹â Šâ â Ž" }, { "input": "Python", "output": "â  â â ½â ¹â •â " }, { "input": "Pétain", "output": "â  â  â â ˜â »â â ˜â ‰â žâ â ”" }, { "input": "Pôrto", "output": "â  â  â â ˜â »â â ¡â ¼â ™â —â žâ •" }, { "input": "Q", "output": "â °â  â Ÿ" }, { "input": "Qaddafi", "output": "â  â Ÿâ â ™â ™â â ‹â Š" }, { "input": "Qantas", "output": "â  â Ÿâ â â žâ â Ž" }, { "input": "Qatar", "output": "â  â Ÿâ â žâ œ" }, { "input": "Qingdao", "output": "⠠⠟⠬⠙â â •" }, { "input": "Qiqihar", "output": "â  â Ÿâ Šâ Ÿâ Šâ “â œ" }, { "input": "Qom", "output": "â  â Ÿâ •â " }, { "input": "Quaalude", "output": "â  â Ÿâ ¥â â â ‡â ¥â ™â ‘" }, { "input": "Quaker", "output": "â  â Ÿâ ¥â â …â »" }, { "input": "Quakers", "output": "â  â Ÿâ ¥â â …⠻⠎" }, { "input": "Quaoar", "output": "â  â Ÿâ ¥â â •â œ" }, { "input": "Quasimodo", "output": "â  â Ÿâ ¥â â Žâ Šâ â •⠙⠕" }, { "input": "Quaternary", "output": "â  â Ÿâ ¥â â žâ »â â œâ ½" }, { "input": "Quayle", "output": "â  â Ÿâ ¥â â ½â ‡â ‘" }, { "input": "Quebec", "output": "⠠⠟⠥⠑⠃⠑⠉" }, { "input": "Quechua", "output": "⠠⠟⠥⠑⠡⠥â " }, { "input": "Queen", "output": "⠠⠟⠥⠑⠢" }, { "input": "Queens", "output": "⠠⠟⠥⠑⠢⠎" }, { "input": "Queensland", "output": "⠠⠟⠥⠑⠢⠎⠇⠯" }, { "input": "Quentin", "output": "⠠⠟⠥⠢⠞⠔" }, { "input": "Quetzalcoatl", "output": "⠠⠟⠥⠑⠞⠵â â ‡â ‰â •â â žâ ‡" }, { "input": "Quezon", "output": "⠠⠟⠥⠑⠵⠕â " }, { "input": "Quincy", "output": "⠠⠟⠥⠔⠉⠽" }, { "input": "Quinn", "output": "⠠⠟⠥⠔â " }, { "input": "Quintilian", "output": "⠠⠟⠥⠔⠞⠊⠇⠊â â " }, { "input": "Quinton", "output": "⠠⠟⠥⠔⠞⠕â " }, { "input": "Quirinal", "output": "⠠⠟⠥⠊⠗⠔â â ‡" }, { "input": "Quisling", "output": "⠠⠟⠥⠊⠎⠇⠬" }, { "input": "Quito", "output": "⠠⠟⠥⠊⠞⠕" }, { "input": "Quixote", "output": "⠠⠟⠥⠊⠭⠕⠞⠑" }, { "input": "Quixotism", "output": "⠠⠟⠥⠊⠭⠕⠞⠊⠎â " }, { "input": "Qumran", "output": "â  â Ÿâ ¥â â —â â " }, { "input": "Quonset", "output": "⠠⠟⠥⠕â â Žâ ‘â ž" }, { "input": "Québecois", "output": "⠠⠟⠥⠠⠘⠻â â ˜â ‰â ƒâ ‘⠉⠕⠊⠎" }, { "input": "R", "output": "â °â  â —" }, { "input": "RCA", "output": "â  â  â —â ‰â " }, { "input": "Ra", "output": "â  â —â " }, { "input": "Rabat", "output": "â  â —â â ƒâ â ž" }, { "input": "Rabelais", "output": "â  â —â â ƒâ ‘â ‡â â Šâ Ž" }, { "input": "Rabelaisian", "output": "â  â —â â ƒâ ‘â ‡â â Šâ Žâ Šâ â " }, { "input": "Rabin", "output": "â  â —â â ƒâ ”" }, { "input": "Rachael", "output": "â  â —â â ¡â â ‘â ‡" }, { "input": "Rachel", "output": "â  â —â â ¡â ‘â ‡" }, { "input": "Rachelle", "output": "â  â —â â ¡â ‘⠇⠇⠑" }, { "input": "Rachmaninoff", "output": "â  â —â â ¡â â â â ”â ·â ‹" }, { "input": "Racine", "output": "â  â —â â ‰â ”â ‘" }, { "input": "Radcliffe", "output": "â  â —â â ™â ‰â ‡â Šâ –â ‘" }, { "input": "Rae", "output": "â  â —â â ‘" }, { "input": "Rafael", "output": "â  â —â â ‹â â ‘â ‡" }, { "input": "Raffles", "output": "â  â —â â –⠇⠑⠎" }, { "input": "Ragnarök", "output": "â  â —â â ›â â œâ  â ˜â »â â ˜â â …" }, { "input": "Rainier", "output": "â  â —â â ”â Šâ »" }, { "input": "Raleigh", "output": "â  â —â â ‡â ‘â Šâ £" }, { "input": "Ralph", "output": "â  â —â â ‡â â “" }, { "input": "Rama", "output": "â  â —â â â " }, { "input": "Ramada", "output": "â  â —â â â â ™â " }, { "input": "Ramadan", "output": "â  â —â â â â ™â â " }, { "input": "Ramadans", "output": "â  â —â â â â ™â â â Ž" }, { "input": "Ramakrishna", "output": "â  â —â â â â …â —â Šâ ©â â " }, { "input": "Ramanujan", "output": "â  â —â â â â â ¥â šâ â " }, { "input": "Ramayana", "output": "â  â —â â â â ½â â â " }, { "input": "Rambo", "output": "â  â —â â â ƒâ •" }, { "input": "Ramirez", "output": "â  â —â â â Šâ —â ‘â µ" }, { "input": "Ramiro", "output": "â  â —â â â Šâ —â •" }, { "input": "Ramon", "output": "â  â —â â â •â " }, { "input": "Ramona", "output": "â  â —â â â •â â " }, { "input": "Ramos", "output": "â  â —â â â •â Ž" }, { "input": "Ramsay", "output": "â  â —â â â Žâ â ½" }, { "input": "Ramses", "output": "â  â —â â â Žâ ‘â Ž" }, { "input": "Ramsey", "output": "â  â —â â â Žâ ‘â ½" }, { "input": "Rand", "output": "â  â —â ¯" }, { "input": "Randal", "output": "â  â —â ¯â â ‡" }, { "input": "Randall", "output": "â  â —â ¯â â ‡â ‡" }, { "input": "Randell", "output": "⠠⠗⠯⠑⠇⠇" }, { "input": "Randi", "output": "⠠⠗⠯⠊" }, { "input": "Randolph", "output": "⠠⠗⠯⠕⠇â â “" }, { "input": "Randy", "output": "⠠⠗⠯⠽" }, { "input": "Rangoon", "output": "â  â —â â â ›â •â •â " }, { "input": "Rankin", "output": "â  â —â â â …â ”" }, { "input": "Rankine", "output": "â  â —â â â …⠔⠑" }, { "input": "Raoul", "output": "â  â —â â ³â ‡" }, { "input": "Raphael", "output": "â  â —â â â “â â ‘â ‡" }, { "input": "Rapunzel", "output": "â  â —â â â ¥â â µâ ‘â ‡" }, { "input": "Raquel", "output": "â  â —â â Ÿâ ¥â ‘â ‡" }, { "input": "Rasalgethi", "output": "â  â —â â Žâ â ‡â ›â ‘⠹⠊" }, { "input": "Rasalhague", "output": "â  â —â â Žâ â ‡â “â â ›â ¥â ‘" }, { "input": "Rasmussen", "output": "â  â —â â Žâ â ¥â Žâ Žâ ¢" }, { "input": "Rasputin", "output": "â  â —â â Žâ â ¥â žâ ”" }, { "input": "Rastaban", "output": "â  â —â â Œâ â ƒâ â " }, { "input": "Rastafarian", "output": "â  â —â â Œâ â ‹â œâ Šâ â " }, { "input": "Rather", "output": "â  â —" }, { "input": "Ratliff", "output": "â  â —â â žâ ‡â Šâ ‹â ‹" }, { "input": "Raul", "output": "â  â —â â ¥â ‡" }, { "input": "Ravel", "output": "â  â —â â §â ‘â ‡" }, { "input": "Rawalpindi", "output": "â  â —â â ºâ â ‡â â ”⠙⠊" }, { "input": "Ray", "output": "â  â —â â ½" }, { "input": "RayBan", "output": "â  â —â â ½â  â ƒâ â " }, { "input": "Rayburn", "output": "â  â —â â ½â ƒâ ¥â —â " }, { "input": "Rayleigh", "output": "â  â —â â ½â ‡â ‘â Šâ £" }, { "input": "Raymond", "output": "â  â —â â ½â â •â â ™" }, { "input": "Raymundo", "output": "â  â —â â ½â â ¥â â ™â •" }, { "input": "Rb", "output": "â  â —â ƒ" }, { "input": "Rd", "output": "â  â —â ™" }, { "input": "Re", "output": "â  â —â ‘" }, { "input": "Reagan", "output": "â  â —â ‚â ›â â " }, { "input": "Reaganomics", "output": "â  â —â ‚â ›â â â •â â Šâ ‰â Ž" }, { "input": "Realtor", "output": "⠠⠗⠂⠇⠞⠕⠗" }, { "input": "Reasoner", "output": "â  â —â ‚â Žâ •â â »" }, { "input": "Reba", "output": "â  â —â ‘â ƒâ " }, { "input": "Rebecca", "output": "⠠⠗⠑⠃⠑⠒â " }, { "input": "Rebekah", "output": "⠠⠗⠑⠃⠑⠅â â “" }, { "input": "Recife", "output": "⠠⠗⠑⠉⠊⠋⠑" }, { "input": "Red", "output": "â  â —â «" }, { "input": "Redford", "output": "â  â —â «â ¿â ™" }, { "input": "Redgrave", "output": "⠠⠗⠫⠛⠗â â §â ‘" }, { "input": "Redmond", "output": "â  â —â «â â •â â ™" }, { "input": "Reebok", "output": "⠠⠗⠑⠑⠃⠕⠅" }, { "input": "Reed", "output": "â  â —â ‘â «" }, { "input": "Reese", "output": "â  â —â ‘â ‘â Žâ ‘" }, { "input": "Reeves", "output": "â  â —â ‘â ‘â §â ‘â Ž" }, { "input": "Refugio", "output": "⠠⠗⠑⠋⠥⠛⠊⠕" }, { "input": "Reggie", "output": "â  â —â ‘â ¶â Šâ ‘" }, { "input": "Regina", "output": "⠠⠗⠑⠛⠔â " }, { "input": "Reginae", "output": "⠠⠗⠑⠛⠔â â ‘" }, { "input": "Reginald", "output": "⠠⠗⠑⠛⠔â â ‡â ™" }, { "input": "Regor", "output": "⠠⠗⠑⠛⠕⠗" }, { "input": "Regulus", "output": "⠠⠗⠑⠛⠥⠇⠥⠎" }, { "input": "Rehnquist", "output": "â  â —â ‘â “â â Ÿâ ¥â Šâ Œ" }, { "input": "Reich", "output": "â  â —â ‘â Šâ ¡" }, { "input": "Reichstag", "output": "â  â —â ‘â Šâ ¡â Žâ žâ â ›" }, { "input": "Reid", "output": "â  â —â ‘â Šâ ™" }, { "input": "Reilly", "output": "⠠⠗⠑⠊⠇⠇⠽" }, { "input": "Reinaldo", "output": "â  â —â ‘â ”â â ‡â ™â •" }, { "input": "Reinhardt", "output": "⠠⠗⠑⠔⠓⠜⠙⠞" }, { "input": "Reinhold", "output": "⠠⠗⠑⠔⠓⠕⠇⠙" }, { "input": "Remarque", "output": "â  â —â ‘â â œâ Ÿâ ¥â ‘" }, { "input": "Rembrandt", "output": "â  â —â ‘â â ƒâ —⠯⠞" }, { "input": "Remington", "output": "â  â —â ‘â â ¬â žâ •â " }, { "input": "Remus", "output": "â  â —â ‘â â ¥â Ž" }, { "input": "Rena", "output": "â  â —â ¢â " }, { "input": "Renaissance", "output": "â  â —â ¢â â Šâ Žâ Žâ ¨â ‘" }, { "input": "Renaissances", "output": "â  â —â ¢â â Šâ Žâ Žâ ¨â ‘â Ž" }, { "input": "Renault", "output": "â  â —â ¢â â ¥â ‡â ž" }, { "input": "Rene", "output": "⠠⠗⠢⠑" }, { "input": "Renee", "output": "⠠⠗⠢⠑⠑" }, { "input": "Reno", "output": "⠠⠗⠢⠕" }, { "input": "Renoir", "output": "⠠⠗⠢⠕⠊⠗" }, { "input": "Rep", "output": "â  â —â ‘â " }, { "input": "Representative", "output": "â  â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘" }, { "input": "Republican", "output": "â  â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â " }, { "input": "Republicans", "output": "â  â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â Ž" }, { "input": "Resurrection", "output": "⠠⠗⠑⠎⠥⠗⠗⠑⠉⠰â " }, { "input": "Reuben", "output": "⠠⠗⠑⠥⠃⠢" }, { "input": "Reunion", "output": "â  â —â ‘â ¥â â Šâ •â " }, { "input": "Reuters", "output": "⠠⠗⠑⠥⠞⠻⠎" }, { "input": "Reuther", "output": "⠠⠗⠑⠥⠮⠗" }, { "input": "Rev", "output": "â  â —â ‘â §" }, { "input": "Reva", "output": "â  â —â ‘â §â " }, { "input": "Revelations", "output": "â  â —â ‘â §â ‘â ‡â â °â â Ž" }, { "input": "Revere", "output": "⠠⠗⠑⠧⠻⠑" }, { "input": "Reverend", "output": "â  â —â â ‘⠢⠙" }, { "input": "Revlon", "output": "⠠⠗⠑⠧⠇⠕â " }, { "input": "Rex", "output": "â  â —â ‘â ­" }, { "input": "Reyes", "output": "⠠⠗⠑⠽⠑⠎" }, { "input": "Reykjavik", "output": "⠠⠗⠑⠽⠅⠚â â §â Šâ …" }, { "input": "Reyna", "output": "â  â —â ‘â ½â â " }, { "input": "Reynaldo", "output": "â  â —â ‘â ½â â â ‡â ™â •" }, { "input": "Reynolds", "output": "â  â —â ‘â ½â â •⠇⠙⠎" }, { "input": "Rh", "output": "â  â —â “" }, { "input": "Rhea", "output": "â  â —â “â ‘â " }, { "input": "Rhee", "output": "â  â —â “â ‘â ‘" }, { "input": "Rheingau", "output": "â  â —â “â ‘â ¬â â ¥" }, { "input": "Rhenish", "output": "⠠⠗⠓⠢⠊⠩" }, { "input": "Rhiannon", "output": "â  â —â “â Šâ â â â •â " }, { "input": "Rhine", "output": "⠠⠗⠓⠔⠑" }, { "input": "Rhineland", "output": "⠠⠗⠓⠔⠑⠇⠯" }, { "input": "Rhoda", "output": "â  â —â “â •â ™â " }, { "input": "Rhode", "output": "⠠⠗⠓⠕⠙⠑" }, { "input": "Rhodes", "output": "⠠⠗⠓⠕⠙⠑⠎" }, { "input": "Rhodesia", "output": "⠠⠗⠓⠕⠙⠑⠎⠊â " }, { "input": "Rhonda", "output": "â  â —â “â •â â ™â " }, { "input": "Rhone", "output": "â  â —â “â â •" }, { "input": "Ribbentrop", "output": "⠠⠗⠊⠆⠢⠞⠗⠕â " }, { "input": "Ricardo", "output": "⠠⠗⠊⠉⠜⠙⠕" }, { "input": "Rice", "output": "⠠⠗⠊⠉⠑" }, { "input": "Rich", "output": "â  â —â Šâ ¡" }, { "input": "Richard", "output": "⠠⠗⠊⠡⠜⠙" }, { "input": "Richards", "output": "⠠⠗⠊⠡⠜⠙⠎" }, { "input": "Richardson", "output": "⠠⠗⠊⠡⠜⠙⠎⠕â " }, { "input": "Richelieu", "output": "⠠⠗⠊⠡⠑⠇⠊⠑⠥" }, { "input": "Richie", "output": "â  â —â Šâ ¡â Šâ ‘" }, { "input": "Richmond", "output": "â  â —â Šâ ¡â â •â â ™" }, { "input": "Richter", "output": "â  â —â Šâ ¡â žâ »" }, { "input": "Richthofen", "output": "â  â —â Šâ ¡â žâ “â ·â ¢" }, { "input": "Rick", "output": "⠠⠗⠊⠉⠅" }, { "input": "Rickenbacker", "output": "⠠⠗⠊⠉⠅⠢⠃â â ‰â …â »" }, { "input": "Rickey", "output": "⠠⠗⠊⠉⠅⠑⠽" }, { "input": "Rickie", "output": "⠠⠗⠊⠉⠅⠊⠑" }, { "input": "Rickover", "output": "⠠⠗⠊⠉⠅⠕⠧⠻" }, { "input": "Ricky", "output": "⠠⠗⠊⠉⠅⠽" }, { "input": "Rico", "output": "⠠⠗⠊⠉⠕" }, { "input": "Riddle", "output": "⠠⠗⠊⠙⠙⠇⠑" }, { "input": "Ride", "output": "⠠⠗⠊⠙⠑" }, { "input": "Riefenstahl", "output": "⠠⠗⠊⠑⠋⠢⠌â â “â ‡" }, { "input": "Riel", "output": "â  â —â Šâ ‘â ‡" }, { "input": "Riemann", "output": "â  â —â Šâ ‘â â â â " }, { "input": "Riesling", "output": "⠠⠗⠊⠑⠎⠇⠬" }, { "input": "Riga", "output": "â  â —â Šâ ›â " }, { "input": "Rigel", "output": "⠠⠗⠊⠛⠑⠇" }, { "input": "Riggs", "output": "â  â —â Šâ ¶â Ž" }, { "input": "Rigoberto", "output": "⠠⠗⠊⠛⠕⠃⠻⠞⠕" }, { "input": "Rigoletto", "output": "⠠⠗⠊⠛⠕⠇⠑⠞⠞⠕" }, { "input": "Riley", "output": "⠠⠗⠊⠇⠑⠽" }, { "input": "Rilke", "output": "⠠⠗⠊⠇⠅⠑" }, { "input": "Rimbaud", "output": "â  â —â Šâ â ƒâ â ¥â ™" }, { "input": "Ringling", "output": "⠠⠗⠬⠇⠬" }, { "input": "Ringo", "output": "⠠⠗⠬⠕" }, { "input": "Rio", "output": "â  â —â Šâ •" }, { "input": "Rios", "output": "â  â —â Šâ •â Ž" }, { "input": "Ripley", "output": "â  â —â Šâ â ‡â ‘â ½" }, { "input": "Risorgimento", "output": "⠠⠗⠊⠎⠕⠗⠛⠊⠰⠞⠕" }, { "input": "Rita", "output": "â  â —â Šâ žâ " }, { "input": "Ritalin", "output": "â  â —â Šâ žâ â ‡â ”" }, { "input": "Ritz", "output": "â  â —â Šâ žâ µ" }, { "input": "Rivas", "output": "â  â —â Šâ §â â Ž" }, { "input": "Rivera", "output": "â  â —â Šâ §â »â " }, { "input": "Rivers", "output": "⠠⠗⠊⠧⠻⠎" }, { "input": "Riverside", "output": "⠠⠗⠊⠧⠻⠎⠊⠙⠑" }, { "input": "Riviera", "output": "â  â —â Šâ §â Šâ »â " }, { "input": "Rivieras", "output": "â  â —â Šâ §â Šâ »â â Ž" }, { "input": "Riyadh", "output": "â  â —â Šâ ½â â ™â “" }, { "input": "Rizal", "output": "â  â —â Šâ µâ â ‡" }, { "input": "Rn", "output": "â  â —â " }, { "input": "Roach", "output": "â  â —â •â â ¡" }, { "input": "Rob", "output": "â  â —â •â ƒ" }, { "input": "Robbie", "output": "⠠⠗⠕⠆⠊⠑" }, { "input": "Robbin", "output": "⠠⠗⠕⠆⠔" }, { "input": "Robbins", "output": "⠠⠗⠕⠆⠔⠎" }, { "input": "Robby", "output": "⠠⠗⠕⠆⠽" }, { "input": "Roberson", "output": "⠠⠗⠕⠃⠻⠎⠕â " }, { "input": "Robert", "output": "⠠⠗⠕⠃⠻⠞" }, { "input": "Roberta", "output": "⠠⠗⠕⠃⠻⠞â " }, { "input": "Roberto", "output": "⠠⠗⠕⠃⠻⠞⠕" }, { "input": "Roberts", "output": "⠠⠗⠕⠃⠻⠞⠎" }, { "input": "Robertson", "output": "⠠⠗⠕⠃⠻⠞⠎⠕â " }, { "input": "Robeson", "output": "⠠⠗⠕⠃⠑⠎⠕â " }, { "input": "Robespierre", "output": "⠠⠗⠕⠃⠑⠎â â Šâ »â —â ‘" }, { "input": "Robin", "output": "⠠⠗⠕⠃⠔" }, { "input": "Robinson", "output": "⠠⠗⠕⠃⠔⠎⠕â " }, { "input": "Robitussin", "output": "⠠⠗⠕⠃⠊⠞⠥⠎⠎⠔" }, { "input": "Robles", "output": "⠠⠗⠕⠃⠇⠑⠎" }, { "input": "Robson", "output": "⠠⠗⠕⠃⠎⠕â " }, { "input": "Robt", "output": "⠠⠗⠕⠃⠞" }, { "input": "Robyn", "output": "⠠⠗⠕⠃⠽â " }, { "input": "Rocco", "output": "â  â —â •â ’â •" }, { "input": "Rocha", "output": "â  â —â •â ¡â " }, { "input": "Rochambeau", "output": "â  â —â •â ¡â â â ƒâ ‚â ¥" }, { "input": "Roche", "output": "â  â —â •â ¡â ‘" }, { "input": "Rochelle", "output": "⠠⠗⠕⠡⠑⠇⠇⠑" }, { "input": "Rochester", "output": "⠠⠗⠕⠡⠑⠌⠻" }, { "input": "Rock", "output": "⠠⠗⠕⠉⠅" }, { "input": "Rockefeller", "output": "⠠⠗⠕⠉⠅⠑⠋⠑⠇⠇⠻" }, { "input": "Rockford", "output": "⠠⠗⠕⠉⠅⠿⠙" }, { "input": "Rockies", "output": "⠠⠗⠕⠉⠅⠊⠑⠎" }, { "input": "Rockne", "output": "⠠⠗⠕⠉⠅â â ‘" }, { "input": "Rockwell", "output": "⠠⠗⠕⠉⠅⠺⠑⠇⠇" }, { "input": "Rocky", "output": "⠠⠗⠕⠉⠅⠽" }, { "input": "Rod", "output": "â  â —â •â ™" }, { "input": "Roddenberry", "output": "⠠⠗⠕⠙⠙⠢⠃⠻⠗⠽" }, { "input": "Roderick", "output": "⠠⠗⠕⠙⠻⠊⠉⠅" }, { "input": "Rodger", "output": "⠠⠗⠕⠙⠛⠻" }, { "input": "Rodgers", "output": "⠠⠗⠕⠙⠛⠻⠎" }, { "input": "Rodin", "output": "⠠⠗⠕⠙⠔" }, { "input": "Rodney", "output": "â  â —â •â ™â â ‘â ½" }, { "input": "Rodolfo", "output": "⠠⠗⠕⠙⠕⠇⠋⠕" }, { "input": "Rodrick", "output": "⠠⠗⠕⠙⠗⠊⠉⠅" }, { "input": "Rodrigo", "output": "⠠⠗⠕⠙⠗⠊⠛⠕" }, { "input": "Rodriguez", "output": "⠠⠗⠕⠙⠗⠊⠛⠥⠑⠵" }, { "input": "Rodriquez", "output": "⠠⠗⠕⠙⠗⠊⠟⠥⠑⠵" }, { "input": "Roeg", "output": "â  â —â •â ‘â ›" }, { "input": "Roentgen", "output": "⠠⠗⠕⠢⠞⠛⠢" }, { "input": "Rogelio", "output": "⠠⠗⠕⠛⠑⠇⠊⠕" }, { "input": "Roger", "output": "⠠⠗⠕⠛⠻" }, { "input": "Rogers", "output": "⠠⠗⠕⠛⠻⠎" }, { "input": "Roget", "output": "⠠⠗⠕⠛⠑⠞" }, { "input": "Rojas", "output": "â  â —â •â šâ â Ž" }, { "input": "Roku", "output": "â  â —â •â …â ¥" }, { "input": "Rolaids", "output": "â  â —â •â ‡â â Šâ ™â Ž" }, { "input": "Roland", "output": "⠠⠗⠕⠇⠯" }, { "input": "Rolando", "output": "⠠⠗⠕⠇⠯⠕" }, { "input": "Rolex", "output": "⠠⠗⠕⠇⠑⠭" }, { "input": "Rolland", "output": "⠠⠗⠕⠇⠇⠯" }, { "input": "Rollerblade", "output": "⠠⠗⠕⠇⠇⠻⠃⠇â â ™â ‘" }, { "input": "Rollins", "output": "⠠⠗⠕⠇⠇⠔⠎" }, { "input": "Rolodex", "output": "⠠⠗⠕⠇⠕⠙⠑⠭" }, { "input": "Rolvaag", "output": "⠠⠗⠕⠇⠧â â â ›" }, { "input": "Roman", "output": "â  â —â •â â â " }, { "input": "Romanesque", "output": "â  â —â •â â â â ‘⠎⠟⠥⠑" }, { "input": "Romania", "output": "â  â —â •â â â â Šâ " }, { "input": "Romanian", "output": "â  â —â •â â â â Šâ â " }, { "input": "Romanians", "output": "â  â —â •â â â â Šâ â â Ž" }, { "input": "Romanies", "output": "â  â —â •â â â â Šâ ‘â Ž" }, { "input": "Romano", "output": "â  â —â •â â â â •" }, { "input": "Romanov", "output": "â  â —â •â â â â •â §" }, { "input": "Romans", "output": "â  â —â •â â â â Ž" }, { "input": "Romansh", "output": "â  â —â •â â â â ©" }, { "input": "Romanticism", "output": "â  â —â •â â â â žâ Šâ ‰â Šâ Žâ " }, { "input": "Romany", "output": "â  â —â •â ¸â " }, { "input": "Rome", "output": "â  â —â •â â ‘" }, { "input": "Romeo", "output": "â  â —â •â â ‘â •" }, { "input": "Romero", "output": "â  â —â •â â »â •" }, { "input": "Romes", "output": "â  â —â •â â ‘â Ž" }, { "input": "Rommel", "output": "â  â —â •â â â ‘â ‡" }, { "input": "Romney", "output": "â  â —â •â â â ‘â ½" }, { "input": "Romulus", "output": "â  â —â •â â ¥â ‡â ¥â Ž" }, { "input": "Ron", "output": "â  â —â •â " }, { "input": "Ronald", "output": "â  â —â •â â â ‡â ™" }, { "input": "Ronda", "output": "â  â —â •â â ™â " }, { "input": "Ronnie", "output": "â  â —â •â â â Šâ ‘" }, { "input": "Ronny", "output": "â  â —â •â â â ½" }, { "input": "Ronstadt", "output": "â  â —â •â â Œâ â ™â ž" }, { "input": "Rooney", "output": "â  â —â •â •â â ‘â ½" }, { "input": "Roosevelt", "output": "⠠⠗⠕⠕⠎⠑⠧⠑⠇⠞" }, { "input": "Root", "output": "â  â —â •â •â ž" }, { "input": "Roquefort", "output": "⠠⠗⠕⠟⠥⠑⠿⠞" }, { "input": "Roqueforts", "output": "⠠⠗⠕⠟⠥⠑⠿⠞⠎" }, { "input": "Rorschach", "output": "â  â —â •â —â Žâ ¡â â ¡" }, { "input": "Rory", "output": "â  â —â •â —â ½" }, { "input": "Rosa", "output": "â  â —â •â Žâ " }, { "input": "Rosales", "output": "â  â —â •â Žâ â ‡â ‘â Ž" }, { "input": "Rosalie", "output": "â  â —â •â Žâ â ‡â Šâ ‘" }, { "input": "Rosalind", "output": "â  â —â •â Žâ â ‡â ”â ™" }, { "input": "Rosalinda", "output": "â  â —â •â Žâ â ‡â ”â ™â " }, { "input": "Rosalyn", "output": "â  â —â •â Žâ â ‡â ½â " }, { "input": "Rosanna", "output": "â  â —â •â Žâ â â â " }, { "input": "Rosanne", "output": "â  â —â •â Žâ â â â ‘" }, { "input": "Rosario", "output": "⠠⠗⠕⠎⠜⠊⠕" }, { "input": "Roscoe", "output": "⠠⠗⠕⠎⠉⠕⠑" }, { "input": "Rose", "output": "â  â —â •â Žâ ‘" }, { "input": "Roseann", "output": "â  â —â •â Žâ ‘â â â " }, { "input": "Roseau", "output": "â  â —â •â Žâ ‚â ¥" }, { "input": "Rosecrans", "output": "⠠⠗⠕⠎⠑⠉⠗â â â Ž" }, { "input": "Rosella", "output": "⠠⠗⠕⠎⠑⠇⠇â " }, { "input": "Rosemarie", "output": "â  â —â •â Žâ ‘â â œâ Šâ ‘" }, { "input": "Rosemary", "output": "â  â —â •â Žâ ‘â â œâ ½" }, { "input": "Rosenberg", "output": "⠠⠗⠕⠎⠢⠃⠻⠛" }, { "input": "Rosendo", "output": "⠠⠗⠕⠎⠢⠙⠕" }, { "input": "Rosenzweig", "output": "⠠⠗⠕⠎⠢⠵⠺⠑⠊⠛" }, { "input": "Rosetta", "output": "â  â —â •â Žâ ‘â žâ žâ " }, { "input": "Rosicrucian", "output": "⠠⠗⠕⠎⠊⠉⠗⠥⠉⠊â â " }, { "input": "Rosie", "output": "â  â —â •â Žâ Šâ ‘" }, { "input": "Roslyn", "output": "⠠⠗⠕⠎⠇⠽â " }, { "input": "Ross", "output": "â  â —â •â Žâ Ž" }, { "input": "Rossetti", "output": "â  â —â •â Žâ Žâ ‘â žâ žâ Š" }, { "input": "Rossini", "output": "⠠⠗⠕⠎⠎⠔⠊" }, { "input": "Rostand", "output": "⠠⠗⠕⠌⠯" }, { "input": "Rostov", "output": "⠠⠗⠕⠌⠕⠧" }, { "input": "Rostropovich", "output": "⠠⠗⠕⠌⠗⠕â â •â §â Šâ ¡" }, { "input": "Roswell", "output": "⠠⠗⠕⠎⠺⠑⠇⠇" }, { "input": "Rotarian", "output": "⠠⠗⠕⠞⠜⠊â â " }, { "input": "Roth", "output": "â  â —â •â ¹" }, { "input": "Rothko", "output": "⠠⠗⠕⠹⠅⠕" }, { "input": "Rothschild", "output": "⠠⠗⠕⠹⠎⠡⠊⠇⠙" }, { "input": "Rotterdam", "output": "⠠⠗⠕⠞⠞⠻⠙â â " }, { "input": "Rottweiler", "output": "⠠⠗⠕⠞⠞⠺⠑⠊⠇⠻" }, { "input": "Rouault", "output": "â  â —â ³â â ¥â ‡â ž" }, { "input": "Roumania", "output": "â  â —â ³â â â â Šâ " }, { "input": "Rourke", "output": "⠠⠗⠳⠗⠅⠑" }, { "input": "Rousseau", "output": "⠠⠗⠳⠎⠎⠂⠥" }, { "input": "Rove", "output": "â  â —â •â §â ‘" }, { "input": "Rover", "output": "â  â —â •â §â »" }, { "input": "Rowe", "output": "⠠⠗⠪⠑" }, { "input": "Rowena", "output": "⠠⠗⠪⠢â " }, { "input": "Rowland", "output": "⠠⠗⠪⠇⠯" }, { "input": "Rowling", "output": "⠠⠗⠪⠇⠬" }, { "input": "Roxanne", "output": "â  â —â •â ­â â â â ‘" }, { "input": "Roxie", "output": "â  â —â •â ­â Šâ ‘" }, { "input": "Roxy", "output": "â  â —â •â ­â ½" }, { "input": "Roy", "output": "â  â —â •â ½" }, { "input": "Royal", "output": "â  â —â •â ½â â ‡" }, { "input": "Royce", "output": "⠠⠗⠕⠽⠉⠑" }, { "input": "Rozelle", "output": "⠠⠗⠕⠵⠑⠇⠇⠑" }, { "input": "Rte", "output": "â  â —â žâ ‘" }, { "input": "Ru", "output": "â  â —â ¥" }, { "input": "Rubaiyat", "output": "⠠⠗⠥⠃â â Šâ ½â â ž" }, { "input": "Rubbermaid", "output": "⠠⠗⠥⠆⠻â â â Šâ ™" }, { "input": "Ruben", "output": "⠠⠗⠥⠃⠢" }, { "input": "Rubens", "output": "⠠⠗⠥⠃⠢⠎" }, { "input": "Rubicon", "output": "⠠⠗⠥⠃⠊⠉⠕â " }, { "input": "Rubik", "output": "⠠⠗⠥⠃⠊⠅" }, { "input": "Rubin", "output": "⠠⠗⠥⠃⠔" }, { "input": "Rubinstein", "output": "⠠⠗⠥⠃⠔⠌⠑⠔" }, { "input": "Ruby", "output": "⠠⠗⠥⠃⠽" }, { "input": "Ruchbah", "output": "⠠⠗⠥⠡⠃â â “" }, { "input": "Rudolf", "output": "⠠⠗⠥⠙⠕⠇⠋" }, { "input": "Rudolph", "output": "⠠⠗⠥⠙⠕⠇â â “" }, { "input": "Rudy", "output": "⠠⠗⠥⠙⠽" }, { "input": "Rudyard", "output": "⠠⠗⠥⠙⠽⠜⠙" }, { "input": "Rufus", "output": "⠠⠗⠥⠋⠥⠎" }, { "input": "Ruhr", "output": "⠠⠗⠥⠓⠗" }, { "input": "Ruiz", "output": "⠠⠗⠥⠊⠵" }, { "input": "Rukeyser", "output": "⠠⠗⠥⠅⠑⠽⠎⠻" }, { "input": "Rumania", "output": "â  â —â ¥â â â â Šâ " }, { "input": "Rumpelstiltskin", "output": "â  â —â ¥â â â ‘⠇⠌⠊⠇⠞⠎⠅⠔" }, { "input": "Rumsfeld", "output": "â  â —â ¥â â Žâ ‹â ‘⠇⠙" }, { "input": "Runnymede", "output": "â  â —â ¥â â â ½â â «â ‘" }, { "input": "Runyon", "output": "â  â —â ¥â â ½â •â " }, { "input": "Rupert", "output": "â  â —â ¥â â »â ž" }, { "input": "Rush", "output": "⠠⠗⠥⠩" }, { "input": "Rushdie", "output": "⠠⠗⠥⠩⠙⠊⠑" }, { "input": "Rushmore", "output": "⠠⠗⠥⠩â â •â —â ‘" }, { "input": "Ruskin", "output": "⠠⠗⠥⠎⠅⠔" }, { "input": "Russ", "output": "⠠⠗⠥⠎⠎" }, { "input": "Russel", "output": "⠠⠗⠥⠎⠎⠑⠇" }, { "input": "Russell", "output": "⠠⠗⠥⠎⠎⠑⠇⠇" }, { "input": "Russia", "output": "⠠⠗⠥⠎⠎⠊â " }, { "input": "Russian", "output": "⠠⠗⠥⠎⠎⠊â â " }, { "input": "Russians", "output": "⠠⠗⠥⠎⠎⠊â â â Ž" }, { "input": "Russo", "output": "⠠⠗⠥⠎⠎⠕" }, { "input": "Rustbelt", "output": "⠠⠗⠥⠌⠃⠑⠇⠞" }, { "input": "Rusty", "output": "⠠⠗⠥⠌⠽" }, { "input": "Rutan", "output": "⠠⠗⠥⠞â â " }, { "input": "Rutgers", "output": "⠠⠗⠥⠞⠛⠻⠎" }, { "input": "Ruth", "output": "⠠⠗⠥⠹" }, { "input": "Rutherford", "output": "⠠⠗⠥⠮⠗⠿⠙" }, { "input": "Ruthie", "output": "⠠⠗⠥⠹⠊⠑" }, { "input": "Rutledge", "output": "⠠⠗⠥⠞⠇⠫⠛⠑" }, { "input": "Rwanda", "output": "⠠⠗⠺⠯â " }, { "input": "Rwandan", "output": "⠠⠗⠺⠯â â " }, { "input": "Rwandans", "output": "⠠⠗⠺⠯â â â Ž" }, { "input": "Rwandas", "output": "⠠⠗⠺⠯â â Ž" }, { "input": "Rx", "output": "â  â —â ­" }, { "input": "Ryan", "output": "â  â —â ½â â " }, { "input": "Rydberg", "output": "⠠⠗⠽⠙⠃⠻⠛" }, { "input": "Ryder", "output": "⠠⠗⠽⠙⠻" }, { "input": "Ryukyu", "output": "⠠⠗⠽⠥⠅⠽⠥" }, { "input": "S", "output": "â °â  â Ž" }, { "input": "SAP", "output": "â  â  â Žâ â " }, { "input": "SARS", "output": "⠠⠠⠎⠜⠎" }, { "input": "Saab", "output": "â  â Žâ â â ƒ" }, { "input": "Saar", "output": "â  â Žâ â œ" }, { "input": "Saarinen", "output": "â  â Žâ â œâ ”â ¢" }, { "input": "Saatchi", "output": "â  â Žâ â â žâ ¡â Š" }, { "input": "Sabbath", "output": "â  â Žâ â †â â ¹" }, { "input": "Sabbaths", "output": "â  â Žâ â †â â ¹â Ž" }, { "input": "Sabik", "output": "â  â Žâ â ƒâ Šâ …" }, { "input": "Sabin", "output": "â  â Žâ â ƒâ ”" }, { "input": "Sabina", "output": "â  â Žâ â ƒâ ”â " }, { "input": "Sabine", "output": "â  â Žâ â ƒâ ”â ‘" }, { "input": "Sabre", "output": "â  â Žâ â ƒâ —â ‘" }, { "input": "Sabrina", "output": "â  â Žâ â ƒâ —â ”â " }, { "input": "Sacajawea", "output": "â  â Žâ â ‰â â šâ â ºâ ‘â " }, { "input": "Sacco", "output": "â  â Žâ â ’â •" }, { "input": "Sachs", "output": "â  â Žâ â ¡â Ž" }, { "input": "Sacramento", "output": "â  â Žâ â ‰â —â â °â žâ •" }, { "input": "Sadat", "output": "â  â Žâ â ™â â ž" }, { "input": "Saddam", "output": "â  â Žâ â ™â ™â â " }, { "input": "Sadducee", "output": "â  â Žâ â ™â ™â ¥â ‰â ‘â ‘" }, { "input": "Sade", "output": "â  â Žâ â ™â ‘" }, { "input": "Sadie", "output": "â  â Žâ â ™â Šâ ‘" }, { "input": "Sadr", "output": "â  â Žâ â ™â —" }, { "input": "Safavid", "output": "â  â Žâ â ‹â â §â Šâ ™" }, { "input": "Safeway", "output": "â  â Žâ â ‹â ‘â ºâ â ½" }, { "input": "Sagan", "output": "â  â Žâ â ›â â " }, { "input": "Saginaw", "output": "â  â Žâ â ›â ”â â º" }, { "input": "Sagittarius", "output": "â  â Žâ â ›â Šâ žâ žâ œâ Šâ ¥â Ž" }, { "input": "Sagittariuses", "output": "â  â Žâ â ›â Šâ žâ žâ œâ Šâ ¥â Žâ ‘â Ž" }, { "input": "Sahara", "output": "â  â Žâ â “â œâ " }, { "input": "Sahel", "output": "â  â Žâ â “â ‘â ‡" }, { "input": "Saigon", "output": "â  â Žâ â Šâ ›â •â " }, { "input": "Saiph", "output": "â  â Žâ â Šâ â “" }, { "input": "Sakai", "output": "â  â Žâ â …â â Š" }, { "input": "Sakha", "output": "â  â Žâ â …â “â " }, { "input": "Sakhalin", "output": "â  â Žâ â …â “â â ‡â ”" }, { "input": "Sakharov", "output": "â  â Žâ â …⠓⠜⠕⠧" }, { "input": "Saki", "output": "â  â Žâ â …â Š" }, { "input": "Saks", "output": "â  â Žâ â …â Ž" }, { "input": "Sal", "output": "â  â Žâ â ‡" }, { "input": "Saladin", "output": "â  â Žâ â ‡â â ™â ”" }, { "input": "Salado", "output": "â  â Žâ â ‡â â ™â •" }, { "input": "Salamis", "output": "â  â Žâ â ‡â â â Šâ Ž" }, { "input": "Salas", "output": "â  â Žâ â ‡â â Ž" }, { "input": "Salazar", "output": "â  â Žâ â ‡â â µâ œ" }, { "input": "Salem", "output": "â  â Žâ â ‡â ‘â " }, { "input": "Salerno", "output": "â  â Žâ â ‡â »â â •" }, { "input": "Salinas", "output": "â  â Žâ â ‡â ”â â Ž" }, { "input": "Salinger", "output": "â  â Žâ â ‡â ¬â »" }, { "input": "Salisbury", "output": "â  â Žâ â ‡â Šâ Žâ ƒâ ¥â —â ½" }, { "input": "Salish", "output": "â  â Žâ â ‡â Šâ ©" }, { "input": "Salk", "output": "â  â Žâ â ‡â …" }, { "input": "Sallie", "output": "â  â Žâ â ‡â ‡â Šâ ‘" }, { "input": "Sallust", "output": "â  â Žâ â ‡â ‡â ¥â Œ" }, { "input": "Sally", "output": "â  â Žâ â ‡â ‡â ½" }, { "input": "Salome", "output": "â  â Žâ â ‡â •â â ‘" }, { "input": "Salton", "output": "â  â Žâ â ‡â žâ •â " }, { "input": "Salvador", "output": "â  â Žâ â ‡â §â â ™â •â —" }, { "input": "Salvadoran", "output": "â  â Žâ â ‡â §â â ™â •â —â â " }, { "input": "Salvadorans", "output": "â  â Žâ â ‡â §â â ™â •â —â â â Ž" }, { "input": "Salvadorian", "output": "â  â Žâ â ‡â §â â ™â •â —â Šâ â " }, { "input": "Salvadorians", "output": "â  â Žâ â ‡â §â â ™â •â —â Šâ â â Ž" }, { "input": "Salvatore", "output": "â  â Žâ â ‡â §â â žâ •â —â ‘" }, { "input": "Salween", "output": "â  â Žâ â ‡â ºâ ‘â ¢" }, { "input": "Salyut", "output": "â  â Žâ â ‡â ½â ¥â ž" }, { "input": "Sam", "output": "â  â Žâ â " }, { "input": "Samantha", "output": "â  â Žâ â â â â ¹â " }, { "input": "Samar", "output": "â  â Žâ â â œ" }, { "input": "Samara", "output": "â  â Žâ â â œâ " }, { "input": "Samaritan", "output": "â  â Žâ â â œâ Šâ žâ â " }, { "input": "Samaritans", "output": "â  â Žâ â â œâ Šâ žâ â â Ž" }, { "input": "Samarkand", "output": "â  â Žâ â â œâ …â ¯" }, { "input": "Sammie", "output": "â  â Žâ â â â Šâ ‘" }, { "input": "Sammy", "output": "â  â Žâ â â â ½" }, { "input": "Samoa", "output": "â  â Žâ â â •â " }, { "input": "Samoan", "output": "â  â Žâ â â •â â " }, { "input": "Samoset", "output": "â  â Žâ â â •â Žâ ‘â ž" }, { "input": "Samoyed", "output": "â  â Žâ â â •⠽⠫" }, { "input": "Sampson", "output": "â  â Žâ â â â Žâ •â " }, { "input": "Samson", "output": "â  â Žâ â â Žâ •â " }, { "input": "Samsonite", "output": "â  â Žâ â â Žâ •â â Šâ žâ ‘" }, { "input": "Samsung", "output": "â  â Žâ â â Žâ ¥â â ›" }, { "input": "Samuel", "output": "â  â Žâ â â ¥â ‘â ‡" }, { "input": "Samuelson", "output": "â  â Žâ â â ¥â ‘⠇⠎⠕â " }, { "input": "San", "output": "â  â Žâ â " }, { "input": "Sana", "output": "â  â Žâ â â " }, { "input": "Sanchez", "output": "â  â Žâ â â ¡â ‘â µ" }, { "input": "Sancho", "output": "â  â Žâ â â ¡â •" }, { "input": "Sand", "output": "â  â Žâ ¯" }, { "input": "Sandburg", "output": "⠠⠎⠯⠃⠥⠗⠛" }, { "input": "Sanders", "output": "⠠⠎⠯⠻⠎" }, { "input": "Sandinista", "output": "⠠⠎⠯⠔⠊⠌â " }, { "input": "Sandoval", "output": "⠠⠎⠯⠕⠧â â ‡" }, { "input": "Sandra", "output": "⠠⠎⠯⠗â " }, { "input": "Sandy", "output": "⠠⠎⠯⠽" }, { "input": "Sanford", "output": "â  â Žâ â â ¿â ™" }, { "input": "Sanforized", "output": "â  â Žâ â â ¿â Šâ µâ «" }, { "input": "Sang", "output": "â  â Žâ â â ›" }, { "input": "Sanger", "output": "â  â Žâ â â ›â »" }, { "input": "Sanhedrin", "output": "â  â Žâ â â “â «â —â ”" }, { "input": "Sanka", "output": "â  â Žâ â â …â " }, { "input": "Sankara", "output": "â  â Žâ â â …â œâ " }, { "input": "Sanskrit", "output": "â  â Žâ â â Žâ …â —â Šâ ž" }, { "input": "Santa", "output": "â  â Žâ â â žâ " }, { "input": "Santana", "output": "â  â Žâ â â žâ â â " }, { "input": "Santayana", "output": "â  â Žâ â â žâ â ½â â â " }, { "input": "Santeria", "output": "â  â Žâ â â žâ »â Šâ " }, { "input": "Santiago", "output": "â  â Žâ â â žâ Šâ â ›â •" }, { "input": "Santos", "output": "â  â Žâ â â žâ •â Ž" }, { "input": "Sappho", "output": "â  â Žâ â â â “â •" }, { "input": "Sapporo", "output": "â  â Žâ â â â •â —â •" }, { "input": "Sara", "output": "â  â Žâ œâ " }, { "input": "Saracen", "output": "â  â Žâ œâ â ‰â ¢" }, { "input": "Saracens", "output": "â  â Žâ œâ â ‰â ¢â Ž" }, { "input": "Saragossa", "output": "â  â Žâ œâ â ›â •â Žâ Žâ " }, { "input": "Sarah", "output": "â  â Žâ œâ â “" }, { "input": "Sarajevo", "output": "â  â Žâ œâ â šâ ‘â §â •" }, { "input": "Saran", "output": "â  â Žâ œâ â " }, { "input": "Sarasota", "output": "â  â Žâ œâ â Žâ •â žâ " }, { "input": "Saratov", "output": "â  â Žâ œâ â žâ •â §" }, { "input": "Sarawak", "output": "â  â Žâ œâ â ºâ â …" }, { "input": "Sardinia", "output": "⠠⠎⠜⠙⠔⠊â " }, { "input": "Sargasso", "output": "⠠⠎⠜⠛â â Žâ Žâ •" }, { "input": "Sargent", "output": "⠠⠎⠜⠛⠢⠞" }, { "input": "Sargon", "output": "⠠⠎⠜⠛⠕â " }, { "input": "Sarnoff", "output": "â  â Žâ œâ â ·â ‹" }, { "input": "Saroyan", "output": "⠠⠎⠜⠕⠽â â " }, { "input": "Sarto", "output": "⠠⠎⠜⠞⠕" }, { "input": "Sartre", "output": "⠠⠎⠜⠞⠗⠑" }, { "input": "Sasha", "output": "â  â Žâ â ©â " }, { "input": "Saskatchewan", "output": "â  â Žâ â Žâ …â â žâ ¡â ‘â ºâ â " }, { "input": "Saskatoon", "output": "â  â Žâ â Žâ …â â žâ •â •â " }, { "input": "Sasquatch", "output": "â  â Žâ â Žâ Ÿâ ¥â â žâ ¡" }, { "input": "Sassanian", "output": "â  â Žâ â Žâ Žâ â â Šâ â " }, { "input": "Sassoon", "output": "â  â Žâ â Žâ Žâ •â •â " }, { "input": "Sat", "output": "â  â Žâ â ž" }, { "input": "Satan", "output": "â  â Žâ â žâ â " }, { "input": "Satanism", "output": "â  â Žâ â žâ â â Šâ Žâ " }, { "input": "Satanist", "output": "â  â Žâ â žâ â â Šâ Œ" }, { "input": "Saturday", "output": "â  â Žâ â žâ ¥â —â â ™" }, { "input": "Saturdays", "output": "â  â Žâ â žâ ¥â —â â ™â Ž" }, { "input": "Saturn", "output": "â  â Žâ â žâ ¥â —â " }, { "input": "Saturnalia", "output": "â  â Žâ â žâ ¥â —â â â ‡â Šâ " }, { "input": "Saudi", "output": "â  â Žâ â ¥â ™â Š" }, { "input": "Saudis", "output": "â  â Žâ â ¥â ™â Šâ Ž" }, { "input": "Saul", "output": "â  â Žâ â ¥â ‡" }, { "input": "Saunders", "output": "â  â Žâ â ¥â â ™â »â Ž" }, { "input": "Saundra", "output": "â  â Žâ â ¥â â ™â —â " }, { "input": "Saussure", "output": "â  â Žâ â ¥â Žâ Žâ ¥â —â ‘" }, { "input": "Sauterne", "output": "â  â Žâ â ¥â žâ »â â ‘" }, { "input": "Savage", "output": "â  â Žâ â §â â ›â ‘" }, { "input": "Savannah", "output": "â  â Žâ â §â â â â â “" }, { "input": "Savior", "output": "â  â Žâ â §â Šâ •â —" }, { "input": "Savonarola", "output": "â  â Žâ â §â •â â œâ •â ‡â " }, { "input": "Savoy", "output": "â  â Žâ â §â •â ½" }, { "input": "Savoyard", "output": "â  â Žâ â §â •⠽⠜⠙" }, { "input": "Sawyer", "output": "â  â Žâ â ºâ ½â »" }, { "input": "Saxon", "output": "â  â Žâ â ­â •â " }, { "input": "Saxons", "output": "â  â Žâ â ­â •â â Ž" }, { "input": "Saxony", "output": "â  â Žâ â ­â •â â ½" }, { "input": "Sayers", "output": "â  â Žâ â ½â »â Ž" }, { "input": "Sb", "output": "â  â Žâ ƒ" }, { "input": "Sc", "output": "â  â Žâ ‰" }, { "input": "Scandinavia", "output": "⠠⠎⠉⠯⠔â â §â Šâ " }, { "input": "Scandinavian", "output": "⠠⠎⠉⠯⠔â â §â Šâ â " }, { "input": "Scandinavians", "output": "⠠⠎⠉⠯⠔â â §â Šâ â â Ž" }, { "input": "Scaramouch", "output": "⠠⠎⠉⠜â â â ³â ¡" }, { "input": "Scarborough", "output": "⠠⠎⠉⠜⠃⠕⠗⠳⠣" }, { "input": "Scarlatti", "output": "⠠⠎⠉⠜⠇â â žâ žâ Š" }, { "input": "Scheat", "output": "â  â Žâ ¡â ‚â ž" }, { "input": "Schedar", "output": "â  â Žâ ¡â «â œ" }, { "input": "Scheherazade", "output": "â  â Žâ ¡â ‘â “â »â â µâ â ™â ‘" }, { "input": "Schelling", "output": "⠠⠎⠡⠑⠇⠇⠬" }, { "input": "Schenectady", "output": "⠠⠎⠡⠢⠑⠉⠞â â ™â ½" }, { "input": "Schiaparelli", "output": "â  â Žâ ¡â Šâ â â œâ ‘⠇⠇⠊" }, { "input": "Schick", "output": "⠠⠎⠡⠊⠉⠅" }, { "input": "Schiller", "output": "⠠⠎⠡⠊⠇⠇⠻" }, { "input": "Schindler", "output": "⠠⠎⠡⠔⠙⠇⠻" }, { "input": "Schlesinger", "output": "⠠⠎⠡⠇⠑⠎⠬⠻" }, { "input": "Schliemann", "output": "⠠⠎⠡⠇⠊⠑â â â â " }, { "input": "Schlitz", "output": "⠠⠎⠡⠇⠊⠞⠵" }, { "input": "Schmidt", "output": "â  â Žâ ¡â â Šâ ™â ž" }, { "input": "Schnabel", "output": "â  â Žâ ¡â â â ƒâ ‘â ‡" }, { "input": "Schnauzer", "output": "â  â Žâ ¡â â â ¥â µâ »" }, { "input": "Schneider", "output": "â  â Žâ ¡â â ‘⠊⠙⠻" }, { "input": "Schoenberg", "output": "⠠⠎⠡⠕⠢⠃⠻⠛" }, { "input": "Schopenhauer", "output": "â  â Žâ ¡â •â â ¢â “â â ¥â »" }, { "input": "Schrieffer", "output": "â  â Žâ ¡â —â Šâ ‘â –â »" }, { "input": "Schroeder", "output": "â  â Žâ ¡â —â •â «â »" }, { "input": "Schrödinger", "output": "⠠⠎⠡⠗⠠⠘⠻â â ˜â â ™â ¬â »" }, { "input": "Schubert", "output": "⠠⠎⠡⠥⠃⠻⠞" }, { "input": "Schultz", "output": "⠠⠎⠡⠥⠇⠞⠵" }, { "input": "Schulz", "output": "⠠⠎⠡⠥⠇⠵" }, { "input": "Schumann", "output": "â  â Žâ ¡â ¥â â â â " }, { "input": "Schumpeter", "output": "â  â Žâ ¡â ¥â â â ‘â žâ »" }, { "input": "Schuyler", "output": "⠠⠎⠡⠥⠽⠇⠻" }, { "input": "Schuylkill", "output": "⠠⠎⠡⠥⠽⠇⠅⠊⠇⠇" }, { "input": "Schwartz", "output": "⠠⠎⠡⠺⠜⠞⠵" }, { "input": "Schwarzenegger", "output": "⠠⠎⠡⠺⠜⠵⠢⠑⠶⠻" }, { "input": "Schwarzkopf", "output": "⠠⠎⠡⠺⠜⠵⠅⠕â â ‹" }, { "input": "Schweitzer", "output": "⠠⠎⠡⠺⠑⠊⠞⠵⠻" }, { "input": "Schweppes", "output": "⠠⠎⠡⠺⠑â â â ‘â Ž" }, { "input": "Schwinger", "output": "⠠⠎⠡⠺⠬⠻" }, { "input": "Schwinn", "output": "⠠⠎⠡⠺⠔â " }, { "input": "Scientology", "output": "⠠⠎⠉⠊⠢⠞⠕⠇⠕⠛⠽" }, { "input": "Scipio", "output": "⠠⠎⠉⠊â â Šâ •" }, { "input": "Scopes", "output": "⠠⠎⠉⠕â â ‘â Ž" }, { "input": "Scorpio", "output": "⠠⠎⠉⠕⠗â â Šâ •" }, { "input": "Scorpios", "output": "⠠⠎⠉⠕⠗â â Šâ •â Ž" }, { "input": "Scorpius", "output": "⠠⠎⠉⠕⠗â â Šâ ¥â Ž" }, { "input": "Scorsese", "output": "⠠⠎⠉⠕⠗⠎⠑⠎⠑" }, { "input": "Scot", "output": "⠠⠎⠉⠕⠞" }, { "input": "Scotch", "output": "⠠⠎⠉⠕⠞⠡" }, { "input": "Scotches", "output": "⠠⠎⠉⠕⠞⠡⠑⠎" }, { "input": "Scotchman", "output": "⠠⠎⠉⠕⠞⠡â â â " }, { "input": "Scotchmen", "output": "⠠⠎⠉⠕⠞⠡â â ¢" }, { "input": "Scotland", "output": "⠠⠎⠉⠕⠞⠇⠯" }, { "input": "Scots", "output": "⠠⠎⠉⠕⠞⠎" }, { "input": "Scotsman", "output": "⠠⠎⠉⠕⠞⠎â â â " }, { "input": "Scotsmen", "output": "⠠⠎⠉⠕⠞⠎â â ¢" }, { "input": "Scotswoman", "output": "⠠⠎⠉⠕⠞⠎⠺⠕â â â " }, { "input": "Scotswomen", "output": "⠠⠎⠉⠕⠞⠎⠺⠕â â ¢" }, { "input": "Scott", "output": "⠠⠎⠉⠕⠞⠞" }, { "input": "Scottie", "output": "⠠⠎⠉⠕⠞⠞⠊⠑" }, { "input": "Scottish", "output": "⠠⠎⠉⠕⠞⠞⠊⠩" }, { "input": "Scottsdale", "output": "⠠⠎⠉⠕⠞⠞⠎⠙â â ‡â ‘" }, { "input": "Scotty", "output": "⠠⠎⠉⠕⠞⠞⠽" }, { "input": "Scrabble", "output": "⠠⠎⠉⠗â â †â ‡â ‘" }, { "input": "Scranton", "output": "⠠⠎⠉⠗â â â žâ •â " }, { "input": "Scriabin", "output": "⠠⠎⠉⠗⠊â â ƒâ ”" }, { "input": "Scribner", "output": "⠠⠎⠉⠗⠊⠃â â »" }, { "input": "Scripture", "output": "⠠⠎⠉⠗⠊â â žâ ¥â —â ‘" }, { "input": "Scriptures", "output": "⠠⠎⠉⠗⠊â â žâ ¥â —â ‘â Ž" }, { "input": "Scrooge", "output": "⠠⠎⠉⠗⠕⠕⠛⠑" }, { "input": "Scruggs", "output": "⠠⠎⠉⠗⠥⠶⠎" }, { "input": "Scud", "output": "⠠⠎⠉⠥⠙" }, { "input": "Sculley", "output": "⠠⠎⠉⠥⠇⠇⠑⠽" }, { "input": "Scylla", "output": "⠠⠎⠉⠽⠇⠇â " }, { "input": "Scythia", "output": "⠠⠎⠉⠽⠹⠊â " }, { "input": "Scythian", "output": "⠠⠎⠉⠽⠹⠊â â " }, { "input": "Se", "output": "â  â Žâ ‘" }, { "input": "Seaborg", "output": "⠠⠎⠂⠃⠕⠗⠛" }, { "input": "Seagram", "output": "⠠⠎⠂⠛⠗â â " }, { "input": "Sean", "output": "â  â Žâ ‚â " }, { "input": "Sears", "output": "⠠⠎⠑⠜⠎" }, { "input": "Seattle", "output": "⠠⠎⠂⠞⠞⠇⠑" }, { "input": "Sebastian", "output": "â  â Žâ ‘â ƒâ â Œâ Šâ â " }, { "input": "Sec", "output": "â  â Žâ ‘â ‰" }, { "input": "Seconal", "output": "⠠⠎⠑⠉⠕â â â ‡" }, { "input": "Secretariat", "output": "⠠⠎⠑⠉⠗⠑⠞⠜⠊â â ž" }, { "input": "Secretary", "output": "⠠⠎⠑⠉⠗⠑⠞⠜⠽" }, { "input": "Seder", "output": "â  â Žâ «â »" }, { "input": "Seders", "output": "⠠⠎⠫⠻⠎" }, { "input": "Sedna", "output": "â  â Žâ «â â " }, { "input": "Seebeck", "output": "⠠⠎⠑⠑⠃⠑⠉⠅" }, { "input": "Sega", "output": "â  â Žâ ‘â ›â " }, { "input": "Segovia", "output": "⠠⠎⠑⠛⠕⠧⠊â " }, { "input": "Segre", "output": "⠠⠎⠑⠛⠗⠑" }, { "input": "Segundo", "output": "⠠⠎⠑⠛⠥â â ™â •" }, { "input": "Seiko", "output": "â  â Žâ ‘â Šâ …â •" }, { "input": "Seine", "output": "⠠⠎⠑⠔⠑" }, { "input": "Seinfeld", "output": "⠠⠎⠑⠔⠋⠑⠇⠙" }, { "input": "Sejong", "output": "â  â Žâ ‘â šâ °â ›" }, { "input": "Selassie", "output": "â  â Žâ ‘â ‡â â Žâ Žâ Šâ ‘" }, { "input": "Selectric", "output": "⠠⠎⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "Selena", "output": "⠠⠎⠑⠇⠢â " }, { "input": "Seleucid", "output": "⠠⠎⠑⠇⠑⠥⠉⠊⠙" }, { "input": "Seleucus", "output": "⠠⠎⠑⠇⠑⠥⠉⠥⠎" }, { "input": "Selim", "output": "⠠⠎⠑⠇⠊â " }, { "input": "Seljuk", "output": "⠠⠎⠑⠇⠚⠥⠅" }, { "input": "Selkirk", "output": "⠠⠎⠑⠇⠅⠊⠗⠅" }, { "input": "Sellers", "output": "⠠⠎⠑⠇⠇⠻⠎" }, { "input": "Selma", "output": "â  â Žâ ‘â ‡â â " }, { "input": "Selznick", "output": "⠠⠎⠑⠇⠵â â Šâ ‰â …" }, { "input": "Semarang", "output": "â  â Žâ ‘â â œâ â â ›" }, { "input": "Seminole", "output": "â  â Žâ ‘â â ”⠕⠇⠑" }, { "input": "Seminoles", "output": "â  â Žâ ‘â â ”⠕⠇⠑⠎" }, { "input": "Semiramis", "output": "â  â Žâ ‘â â Šâ —â â â Šâ Ž" }, { "input": "Semite", "output": "â  â Žâ ‘â â Šâ žâ ‘" }, { "input": "Semites", "output": "â  â Žâ ‘â â Šâ žâ ‘â Ž" }, { "input": "Semitic", "output": "â  â Žâ ‘â â Šâ žâ Šâ ‰" }, { "input": "Semitics", "output": "â  â Žâ ‘â â Šâ žâ Šâ ‰â Ž" }, { "input": "Semtex", "output": "â  â Žâ ‘â â žâ ‘â ­" }, { "input": "Sen", "output": "â  â Žâ ¢" }, { "input": "Senate", "output": "â  â Žâ ¢â â žâ ‘" }, { "input": "Senates", "output": "â  â Žâ ¢â â žâ ‘â Ž" }, { "input": "Senator", "output": "â  â Žâ ¢â â žâ •â —" }, { "input": "Sendai", "output": "⠠⠎⠢⠙â â Š" }, { "input": "Seneca", "output": "⠠⠎⠢⠑⠉â " }, { "input": "Senecas", "output": "⠠⠎⠢⠑⠉â â Ž" }, { "input": "Senegal", "output": "⠠⠎⠢⠑⠛â â ‡" }, { "input": "Senegalese", "output": "⠠⠎⠢⠑⠛â â ‡â ‘â Žâ ‘" }, { "input": "Senghor", "output": "⠠⠎⠢⠛⠓⠕⠗" }, { "input": "Senior", "output": "⠠⠎⠢⠊⠕⠗" }, { "input": "Sennacherib", "output": "â  â Žâ ¢â â â ¡â »â Šâ ƒ" }, { "input": "Sennett", "output": "â  â Žâ ¢â â ‘â žâ ž" }, { "input": "Sensurround", "output": "⠠⠎⠢⠎⠥⠗⠗⠨⠙" }, { "input": "Seoul", "output": "⠠⠎⠑⠳⠇" }, { "input": "Sephardi", "output": "â  â Žâ ‘â â “⠜⠙⠊" }, { "input": "Sepoy", "output": "â  â Žâ ‘â â •â ½" }, { "input": "Sept", "output": "â  â Žâ ‘â â ž" }, { "input": "September", "output": "â  â Žâ ‘â â žâ ‘â â ƒâ »" }, { "input": "Septembers", "output": "â  â Žâ ‘â â žâ ‘â â ƒâ »â Ž" }, { "input": "Septuagint", "output": "â  â Žâ ‘â â žâ ¥â â ›â ”â ž" }, { "input": "Septuagints", "output": "â  â Žâ ‘â â žâ ¥â â ›â ”â žâ Ž" }, { "input": "Sequoya", "output": "⠠⠎⠑⠟⠥⠕⠽â " }, { "input": "Serb", "output": "⠠⠎⠻⠃" }, { "input": "Serbia", "output": "⠠⠎⠻⠃⠊â " }, { "input": "Serbian", "output": "⠠⠎⠻⠃⠊â â " }, { "input": "Serbians", "output": "⠠⠎⠻⠃⠊â â â Ž" }, { "input": "Serbs", "output": "⠠⠎⠻⠃⠎" }, { "input": "Serena", "output": "⠠⠎⠻⠢â " }, { "input": "Serengeti", "output": "⠠⠎⠻⠢⠛⠑⠞⠊" }, { "input": "Sergei", "output": "⠠⠎⠻⠛⠑⠊" }, { "input": "Sergio", "output": "⠠⠎⠻⠛⠊⠕" }, { "input": "Serpens", "output": "â  â Žâ »â â ¢â Ž" }, { "input": "Serra", "output": "⠠⠎⠻⠗â " }, { "input": "Serrano", "output": "⠠⠎⠻⠗â â â •" }, { "input": "Set", "output": "â  â Žâ ‘â ž" }, { "input": "Seth", "output": "â  â Žâ ‘â ¹" }, { "input": "Seton", "output": "â  â Žâ ‘â žâ •â " }, { "input": "Seurat", "output": "⠠⠎⠑⠥⠗â â ž" }, { "input": "Seuss", "output": "⠠⠎⠑⠥⠎⠎" }, { "input": "Sevastopol", "output": "â  â Žâ ‘â §â â Œâ •â â •â ‡" }, { "input": "Severn", "output": "â  â Žâ â ‘â " }, { "input": "Severus", "output": "⠠⠎⠑⠧⠻⠥⠎" }, { "input": "Seville", "output": "⠠⠎⠑⠧⠊⠇⠇⠑" }, { "input": "Seward", "output": "⠠⠎⠑⠺⠜⠙" }, { "input": "Sextans", "output": "â  â Žâ ‘â ­â žâ â â Ž" }, { "input": "Sexton", "output": "â  â Žâ ‘â ­â žâ •â " }, { "input": "Seychelles", "output": "⠠⠎⠑⠽⠡⠑⠇⠇⠑⠎" }, { "input": "Seyfert", "output": "⠠⠎⠑⠽⠋⠻⠞" }, { "input": "Seymour", "output": "â  â Žâ ‘â ½â â ³â —" }, { "input": "Sgt", "output": "⠠⠎⠛⠞" }, { "input": "Shackleton", "output": "â  â ©â â ‰â …⠇⠑⠞⠕â " }, { "input": "Shaffer", "output": "â  â ©â â –â »" }, { "input": "Shaka", "output": "â  â ©â â …â " }, { "input": "Shakespeare", "output": "â  â ©â â …â ‘â Žâ â ‘⠜⠑" }, { "input": "Shakespearean", "output": "â  â ©â â …â ‘â Žâ â ‘⠜⠑â â " }, { "input": "Shana", "output": "â  â ©â â â " }, { "input": "Shane", "output": "â  â ©â â â ‘" }, { "input": "Shanghai", "output": "â  â ©â â â ›â “â â Š" }, { "input": "Shankara", "output": "â  â ©â â â …â œâ " }, { "input": "Shanna", "output": "â  â ©â â â â " }, { "input": "Shannon", "output": "â  â ©â â â â •â " }, { "input": "Shantung", "output": "â  â ©â â â žâ ¥â â ›" }, { "input": "Shapiro", "output": "â  â ©â â â Šâ —â •" }, { "input": "Shari", "output": "⠠⠩⠜⠊" }, { "input": "Sharif", "output": "⠠⠩⠜⠊⠋" }, { "input": "Sharlene", "output": "⠠⠩⠜⠇⠢⠑" }, { "input": "Sharon", "output": "⠠⠩⠜⠕â " }, { "input": "Sharp", "output": "â  â ©â œâ " }, { "input": "Sharpe", "output": "â  â ©â œâ â ‘" }, { "input": "Sharron", "output": "⠠⠩⠜⠗⠕â " }, { "input": "Shasta", "output": "â  â ©â â Œâ " }, { "input": "Shaula", "output": "â  â ©â â ¥â ‡â " }, { "input": "Shaun", "output": "â  â ©â â ¥â " }, { "input": "Shauna", "output": "â  â ©â â ¥â â " }, { "input": "Shavian", "output": "â  â ©â â §â Šâ â " }, { "input": "Shavuot", "output": "â  â ©â â §â ¥â •â ž" }, { "input": "Shaw", "output": "â  â ©â â º" }, { "input": "Shawn", "output": "â  â ©â â ºâ " }, { "input": "Shawna", "output": "â  â ©â â ºâ â " }, { "input": "Shawnee", "output": "â  â ©â â ºâ â ‘â ‘" }, { "input": "Shcharansky", "output": "â  â ©â ¡â œâ â â Žâ …â ½" }, { "input": "Shea", "output": "â  â ©â ‘â " }, { "input": "Sheba", "output": "â  â ©â ‘â ƒâ " }, { "input": "Shebeli", "output": "⠠⠩⠑⠃⠑⠇⠊" }, { "input": "Sheena", "output": "â  â ©â ‘â ¢â " }, { "input": "Sheetrock", "output": "⠠⠩⠑⠑⠞⠗⠕⠉⠅" }, { "input": "Sheffield", "output": "⠠⠩⠑⠖⠊⠑⠇⠙" }, { "input": "Sheila", "output": "â  â ©â ‘â Šâ ‡â " }, { "input": "Shelby", "output": "⠠⠩⠑⠇⠃⠽" }, { "input": "Sheldon", "output": "⠠⠩⠑⠇⠙⠕â " }, { "input": "Shelia", "output": "⠠⠩⠑⠇⠊â " }, { "input": "Shell", "output": "⠠⠩⠑⠇⠇" }, { "input": "Shelley", "output": "⠠⠩⠑⠇⠇⠑⠽" }, { "input": "Shelly", "output": "⠠⠩⠑⠇⠇⠽" }, { "input": "Shelton", "output": "⠠⠩⠑⠇⠞⠕â " }, { "input": "Shenandoah", "output": "⠠⠩⠢⠯⠕â â “" }, { "input": "Shenyang", "output": "⠠⠩⠢⠽â â â ›" }, { "input": "Sheol", "output": "â  â ©â ‘â •â ‡" }, { "input": "Shepard", "output": "â  â ©â ‘â â œâ ™" }, { "input": "Shepherd", "output": "â  â ©â ‘â â “⠻⠙" }, { "input": "Sheppard", "output": "â  â ©â ‘â â â œâ ™" }, { "input": "Sheratan", "output": "â  â ©â »â â žâ â " }, { "input": "Sheraton", "output": "â  â ©â »â â žâ •â " }, { "input": "Sheree", "output": "⠠⠩⠻⠑⠑" }, { "input": "Sheri", "output": "⠠⠩⠻⠊" }, { "input": "Sheridan", "output": "⠠⠩⠻⠊⠙â â " }, { "input": "Sherlock", "output": "⠠⠩⠻⠇⠕⠉⠅" }, { "input": "Sherman", "output": "â  â ©â »â â â " }, { "input": "Sherpa", "output": "â  â ©â »â â " }, { "input": "Sherri", "output": "⠠⠩⠻⠗⠊" }, { "input": "Sherrie", "output": "⠠⠩⠻⠗⠊⠑" }, { "input": "Sherry", "output": "⠠⠩⠻⠗⠽" }, { "input": "Sherwood", "output": "⠠⠩⠻⠺⠕⠕⠙" }, { "input": "Sheryl", "output": "⠠⠩⠻⠽⠇" }, { "input": "Shetland", "output": "⠠⠩⠑⠞⠇⠯" }, { "input": "Shetlands", "output": "⠠⠩⠑⠞⠇⠯⠎" }, { "input": "Shevardnadze", "output": "⠠⠩⠑⠧⠜⠙â â â ™â µâ ‘" }, { "input": "Shevat", "output": "â  â ©â ‘â §â â ž" }, { "input": "Shields", "output": "⠠⠩⠊⠑⠇⠙⠎" }, { "input": "Shijiazhuang", "output": "â  â ©â Šâ šâ Šâ â µâ “â ¥â â â ›" }, { "input": "Shikoku", "output": "â  â ©â Šâ …â •â …â ¥" }, { "input": "Shillong", "output": "⠠⠩⠊⠇⠇⠰⠛" }, { "input": "Shiloh", "output": "⠠⠩⠊⠇⠕⠓" }, { "input": "Shinto", "output": "⠠⠩⠔⠞⠕" }, { "input": "Shintoism", "output": "⠠⠩⠔⠞⠕⠊⠎â " }, { "input": "Shintoisms", "output": "⠠⠩⠔⠞⠕⠊⠎â â Ž" }, { "input": "Shintos", "output": "⠠⠩⠔⠞⠕⠎" }, { "input": "Shiraz", "output": "â  â ©â Šâ —â â µ" }, { "input": "Shirley", "output": "⠠⠩⠊⠗⠇⠑⠽" }, { "input": "Shiva", "output": "â  â ©â Šâ §â " }, { "input": "Shockley", "output": "⠠⠩⠕⠉⠅⠇⠑⠽" }, { "input": "Short", "output": "â  â ©â •â —â ž" }, { "input": "Shorthorn", "output": "â  â ©â •â —â žâ “â •â —â " }, { "input": "Shoshone", "output": "â  â ©â •â ©â •â â ‘" }, { "input": "Shostakovitch", "output": "â  â ©â •â Œâ â …â •â §â Šâ žâ ¡" }, { "input": "Shrek", "output": "â  â ©â —â ‘â …" }, { "input": "Shreveport", "output": "â  â ©â —â ‘â §â ‘â â •â —â ž" }, { "input": "Shriner", "output": "⠠⠩⠗⠔⠻" }, { "input": "Shropshire", "output": "â  â ©â —â •â â ©â Šâ —â ‘" }, { "input": "Shula", "output": "⠠⠩⠥⠇â " }, { "input": "Shylock", "output": "⠠⠩⠽⠇⠕⠉⠅" }, { "input": "Shylockian", "output": "⠠⠩⠽⠇⠕⠉⠅⠊â â " }, { "input": "Si", "output": "â  â Žâ Š" }, { "input": "Siam", "output": "â  â Žâ Šâ â " }, { "input": "Siamese", "output": "â  â Žâ Šâ â â ‘â Žâ ‘" }, { "input": "Sian", "output": "â  â Žâ Šâ â " }, { "input": "Sibelius", "output": "⠠⠎⠊⠃⠑⠇⠊⠥⠎" }, { "input": "Siberia", "output": "⠠⠎⠊⠃⠻⠊â " }, { "input": "Siberian", "output": "⠠⠎⠊⠃⠻⠊â â " }, { "input": "Sibyl", "output": "⠠⠎⠊⠃⠽⠇" }, { "input": "Sicilian", "output": "⠠⠎⠊⠉⠊⠇⠊â â " }, { "input": "Sicilians", "output": "⠠⠎⠊⠉⠊⠇⠊â â â Ž" }, { "input": "Sicily", "output": "⠠⠎⠊⠉⠊⠇⠽" }, { "input": "Sid", "output": "â  â Žâ Šâ ™" }, { "input": "Siddhartha", "output": "⠠⠎⠊⠙⠙⠓⠜⠹â " }, { "input": "Sidney", "output": "â  â Žâ Šâ ™â â ‘â ½" }, { "input": "Siegfried", "output": "⠠⠎⠊⠑⠛⠋⠗⠊⠫" }, { "input": "Siemens", "output": "â  â Žâ Šâ ‘â â ¢â Ž" }, { "input": "Sierpinski", "output": "â  â Žâ Šâ »â â ”â Žâ …â Š" }, { "input": "Sigismund", "output": "⠠⠎⠊⠛⠊⠎â â ¥â â ™" }, { "input": "Sigmund", "output": "â  â Žâ Šâ ›â â ¥â â ™" }, { "input": "Sigurd", "output": "⠠⠎⠊⠛⠥⠗⠙" }, { "input": "Sihanouk", "output": "â  â Žâ Šâ “â â â ³â …" }, { "input": "Sikh", "output": "â  â Žâ Šâ …â “" }, { "input": "Sikhism", "output": "â  â Žâ Šâ …â “â Šâ Žâ " }, { "input": "Sikhs", "output": "â  â Žâ Šâ …â “â Ž" }, { "input": "Sikkim", "output": "â  â Žâ Šâ …â …â Šâ " }, { "input": "Sikkimese", "output": "â  â Žâ Šâ …â …â Šâ â ‘â Žâ ‘" }, { "input": "Sikorsky", "output": "â  â Žâ Šâ …â •â —â Žâ …â ½" }, { "input": "Silas", "output": "â  â Žâ Šâ ‡â â Ž" }, { "input": "Silurian", "output": "⠠⠎⠊⠇⠥⠗⠊â â " }, { "input": "Silva", "output": "⠠⠎⠊⠇⠧â " }, { "input": "Silvia", "output": "⠠⠎⠊⠇⠧⠊â " }, { "input": "Simenon", "output": "â  â Žâ Šâ â ¢â •â " }, { "input": "Simmental", "output": "â  â Žâ Šâ â °â žâ â ‡" }, { "input": "Simmons", "output": "â  â Žâ Šâ â â •â â Ž" }, { "input": "Simon", "output": "â  â Žâ Šâ â •â " }, { "input": "Simone", "output": "â  â Žâ Šâ â â •" }, { "input": "Simpson", "output": "â  â Žâ Šâ â â Žâ •â " }, { "input": "Simpsons", "output": "â  â Žâ Šâ â â Žâ •â â Ž" }, { "input": "Sims", "output": "â  â Žâ Šâ â Ž" }, { "input": "Sinai", "output": "â  â Žâ ”â â Š" }, { "input": "Sinatra", "output": "â  â Žâ ”â â žâ —â " }, { "input": "Sinclair", "output": "⠠⠎⠔⠉⠇â â Šâ —" }, { "input": "Sindbad", "output": "⠠⠎⠔⠙⠃â â ™" }, { "input": "Sindhi", "output": "⠠⠎⠔⠙⠓⠊" }, { "input": "Singapore", "output": "â  â Žâ ¬â â â •â —â ‘" }, { "input": "Singer", "output": "⠠⠎⠬⠻" }, { "input": "Singh", "output": "⠠⠎⠬⠓" }, { "input": "Singleton", "output": "⠠⠎⠬⠇⠑⠞⠕â " }, { "input": "Sinhalese", "output": "⠠⠎⠔⠓â â ‡â ‘â Žâ ‘" }, { "input": "Sinkiang", "output": "⠠⠎⠔⠅⠊â â â ›" }, { "input": "Sioux", "output": "⠠⠎⠊⠳⠭" }, { "input": "Sirius", "output": "⠠⠎⠊⠗⠊⠥⠎" }, { "input": "Sister", "output": "⠠⠎⠊⠌⠻" }, { "input": "Sisters", "output": "⠠⠎⠊⠌⠻⠎" }, { "input": "Sistine", "output": "⠠⠎⠊⠌⠔⠑" }, { "input": "Sisyphean", "output": "â  â Žâ Šâ Žâ ½â â “â ‚â " }, { "input": "Sisyphus", "output": "â  â Žâ Šâ Žâ ½â â “⠥⠎" }, { "input": "Siva", "output": "â  â Žâ Šâ §â " }, { "input": "Sivan", "output": "â  â Žâ Šâ §â â " }, { "input": "Sjaelland", "output": "â  â Žâ šâ â ‘⠇⠇⠯" }, { "input": "Skinner", "output": "â  â Žâ …â ”â â »" }, { "input": "Skippy", "output": "â  â Žâ …â Šâ â â ½" }, { "input": "Skopje", "output": "â  â Žâ …â •â â šâ ‘" }, { "input": "Skye", "output": "⠠⠎⠅⠽⠑" }, { "input": "Skylab", "output": "⠠⠎⠅⠽⠇â â ƒ" }, { "input": "Skype", "output": "â  â Žâ …â ½â â ‘" }, { "input": "Slackware", "output": "â  â Žâ ‡â â ‰â …⠺⠜⠑" }, { "input": "Slashdot", "output": "â  â Žâ ‡â â ©â ™â •â ž" }, { "input": "Slater", "output": "â  â Žâ ‡â â žâ »" }, { "input": "Slav", "output": "â  â Žâ ‡â â §" }, { "input": "Slavic", "output": "â  â Žâ ‡â â §â Šâ ‰" }, { "input": "Slavonic", "output": "â  â Žâ ‡â â §â •â â Šâ ‰" }, { "input": "Slavs", "output": "â  â Žâ ‡â â §â Ž" }, { "input": "Slinky", "output": "⠠⠎⠇⠔⠅⠽" }, { "input": "Sloan", "output": "⠠⠎⠇⠕â â " }, { "input": "Sloane", "output": "⠠⠎⠇⠕â â â ‘" }, { "input": "Slocum", "output": "⠠⠎⠇⠕⠉⠥â " }, { "input": "Slovak", "output": "⠠⠎⠇⠕⠧â â …" }, { "input": "Slovakia", "output": "⠠⠎⠇⠕⠧â â …â Šâ " }, { "input": "Slovakian", "output": "⠠⠎⠇⠕⠧â â …â Šâ â " }, { "input": "Slovaks", "output": "⠠⠎⠇⠕⠧â â …â Ž" }, { "input": "Slovenia", "output": "⠠⠎⠇⠕⠧⠢⠊â " }, { "input": "Slovenian", "output": "⠠⠎⠇⠕⠧⠢⠊â â " }, { "input": "Slovenians", "output": "⠠⠎⠇⠕⠧⠢⠊â â â Ž" }, { "input": "Slurpee", "output": "⠠⠎⠇⠥⠗â â ‘â ‘" }, { "input": "Sm", "output": "â  â Žâ " }, { "input": "Small", "output": "â  â Žâ â â ‡â ‡" }, { "input": "Smetana", "output": "â  â Žâ â ‘â žâ â â " }, { "input": "Smirnoff", "output": "â  â Žâ â Šâ —â â ·â ‹" }, { "input": "Smith", "output": "â  â Žâ â Šâ ¹" }, { "input": "Smithson", "output": "â  â Žâ â Šâ ¹â Žâ •â " }, { "input": "Smithsonian", "output": "â  â Žâ â Šâ ¹â Žâ •â â Šâ â " }, { "input": "Smokey", "output": "â  â Žâ â •â …â ‘â ½" }, { "input": "Smolensk", "output": "â  â Žâ â •⠇⠢⠎⠅" }, { "input": "Smollett", "output": "â  â Žâ â •⠇⠇⠑⠞⠞" }, { "input": "Smuts", "output": "â  â Žâ â ¥â žâ Ž" }, { "input": "Sn", "output": "â  â Žâ " }, { "input": "Snake", "output": "â  â Žâ â â …â ‘" }, { "input": "Snapple", "output": "â  â Žâ â â â â ‡â ‘" }, { "input": "Snead", "output": "â  â Žâ â ‚â ™" }, { "input": "Snell", "output": "â  â Žâ â ‘⠇⠇" }, { "input": "Snickers", "output": "â  â Žâ â Šâ ‰â …⠻⠎" }, { "input": "Snider", "output": "â  â Žâ â Šâ ™â »" }, { "input": "Snoopy", "output": "â  â Žâ â •â •â â ½" }, { "input": "Snow", "output": "â  â Žâ â ª" }, { "input": "Snowbelt", "output": "â  â Žâ â ªâ ƒâ ‘⠇⠞" }, { "input": "Snyder", "output": "â  â Žâ â ½â ™â »" }, { "input": "Soave", "output": "â  â Žâ •â â §â ‘" }, { "input": "Socorro", "output": "⠠⠎⠕⠉⠕⠗⠗⠕" }, { "input": "Socrates", "output": "⠠⠎⠕⠉⠗â â žâ ‘â Ž" }, { "input": "Socratic", "output": "⠠⠎⠕⠉⠗â â žâ Šâ ‰" }, { "input": "Soddy", "output": "⠠⠎⠕⠙⠙⠽" }, { "input": "Sodom", "output": "⠠⠎⠕⠙⠕â " }, { "input": "Sofia", "output": "â  â Žâ ·â Šâ " }, { "input": "Soho", "output": "â  â Žâ •â “â •" }, { "input": "Sol", "output": "â  â Žâ •â ‡" }, { "input": "Solis", "output": "⠠⠎⠕⠇⠊⠎" }, { "input": "Solomon", "output": "⠠⠎⠕⠇⠕â â •â " }, { "input": "Solon", "output": "⠠⠎⠕⠇⠕â " }, { "input": "Solzhenitsyn", "output": "⠠⠎⠕⠇⠵⠓⠢⠊⠞⠎⠽â " }, { "input": "Somali", "output": "â  â Žâ •â â â ‡â Š" }, { "input": "Somalia", "output": "â  â Žâ •â â â ‡â Šâ " }, { "input": "Somalian", "output": "â  â Žâ •â â â ‡â Šâ â " }, { "input": "Somalians", "output": "â  â Žâ •â â â ‡â Šâ â â Ž" }, { "input": "Somalis", "output": "â  â Žâ •â â â ‡â Šâ Ž" }, { "input": "Somme", "output": "â  â Žâ •â â â ‘" }, { "input": "Somoza", "output": "â  â Žâ •â â •â µâ " }, { "input": "Son", "output": "â  â Žâ •â " }, { "input": "Sondheim", "output": "â  â Žâ •â â ™â “â ‘â Šâ " }, { "input": "Sondra", "output": "â  â Žâ •â â ™â —â " }, { "input": "Songhai", "output": "â  â Žâ •â â £â â Š" }, { "input": "Songhua", "output": "⠠⠎⠰⠛⠓⠥â " }, { "input": "Sonia", "output": "â  â Žâ •â â Šâ " }, { "input": "Sonja", "output": "â  â Žâ •â â šâ " }, { "input": "Sonny", "output": "â  â Žâ •â â â ½" }, { "input": "Sontag", "output": "â  â Žâ •â â žâ â ›" }, { "input": "Sony", "output": "â  â Žâ •â â ½" }, { "input": "Sonya", "output": "â  â Žâ •â â ½â " }, { "input": "Sophia", "output": "â  â Žâ •â â “â Šâ " }, { "input": "Sophie", "output": "â  â Žâ •â â “â Šâ ‘" }, { "input": "Sophoclean", "output": "â  â Žâ •â â “⠕⠉⠇⠂â " }, { "input": "Sophocles", "output": "â  â Žâ •â â “⠕⠉⠇⠑⠎" }, { "input": "Sopwith", "output": "â  â Žâ •â â ¾" }, { "input": "Sorbonne", "output": "⠠⠎⠕⠗⠃⠕â â â ‘" }, { "input": "Sosa", "output": "â  â Žâ •â Žâ " }, { "input": "Soto", "output": "â  â Žâ •â žâ •" }, { "input": "Souphanouvong", "output": "â  â Žâ ³â â “â â â ³â §â °â ›" }, { "input": "Sousa", "output": "⠠⠎⠳⠎â " }, { "input": "South", "output": "⠠⠎⠳⠹" }, { "input": "Southampton", "output": "⠠⠎⠳⠹â â â â žâ •â " }, { "input": "Southeast", "output": "⠠⠎⠳⠹⠂⠌" }, { "input": "Southeasts", "output": "⠠⠎⠳⠹⠂⠌⠎" }, { "input": "Southerner", "output": "⠠⠎⠳⠮⠗â â »" }, { "input": "Southerners", "output": "⠠⠎⠳⠮⠗â â »â Ž" }, { "input": "Southey", "output": "⠠⠎⠳⠮⠽" }, { "input": "Souths", "output": "⠠⠎⠳⠹⠎" }, { "input": "Southwest", "output": "⠠⠎⠳⠹⠺⠑⠌" }, { "input": "Southwests", "output": "⠠⠎⠳⠹⠺⠑⠌⠎" }, { "input": "Soviet", "output": "â  â Žâ •â §â Šâ ‘â ž" }, { "input": "Soweto", "output": "⠠⠎⠪⠑⠞⠕" }, { "input": "Soyinka", "output": "⠠⠎⠕⠽⠔⠅â " }, { "input": "Soyuz", "output": "⠠⠎⠕⠽⠥⠵" }, { "input": "Spaatz", "output": "â  â Žâ â â â žâ µ" }, { "input": "Spackle", "output": "â  â Žâ â â ‰â …⠇⠑" }, { "input": "Spahn", "output": "â  â Žâ â â “â " }, { "input": "Spain", "output": "â  â Žâ â â ”" }, { "input": "Spam", "output": "â  â Žâ â â " }, { "input": "Spaniard", "output": "â  â Žâ â â â Šâ œâ ™" }, { "input": "Spaniards", "output": "â  â Žâ â â â Šâ œâ ™â Ž" }, { "input": "Spanish", "output": "â  â Žâ â â â Šâ ©" }, { "input": "Sparks", "output": "â  â Žâ â œâ …â Ž" }, { "input": "Sparta", "output": "â  â Žâ â â " }, { "input": "Spartacus", "output": "â  â Žâ â â â ‰â ¥â Ž" }, { "input": "Spartan", "output": "â  â Žâ â â â " }, { "input": "Spartans", "output": "â  â Žâ â â â â Ž" }, { "input": "Spears", "output": "â  â Žâ â ‘⠜⠎" }, { "input": "Speer", "output": "â  â Žâ â ‘â »" }, { "input": "Spence", "output": "â  â Žâ â °â ‘" }, { "input": "Spencer", "output": "â  â Žâ â °â ‘â —" }, { "input": "Spencerian", "output": "â  â Žâ â °â ‘â —â Šâ â " }, { "input": "Spengler", "output": "â  â Žâ â ¢â ›â ‡â »" }, { "input": "Spenglerian", "output": "â  â Žâ â ¢â ›â ‡â »â Šâ â " }, { "input": "Spenser", "output": "â  â Žâ â ¢â Žâ »" }, { "input": "Spenserian", "output": "â  â Žâ â ¢â Žâ »â Šâ â " }, { "input": "Sperry", "output": "â  â Žâ â »â —â ½" }, { "input": "Sphinx", "output": "â  â Žâ â “⠔⠭" }, { "input": "Spica", "output": "â  â Žâ â Šâ ‰â " }, { "input": "Spielberg", "output": "â  â Žâ â Šâ ‘⠇⠃⠻⠛" }, { "input": "Spillane", "output": "â  â Žâ â Šâ ‡â ‡â â â ‘" }, { "input": "Spinoza", "output": "â  â Žâ â ”â •â µâ " }, { "input": "Spinx", "output": "â  â Žâ â ”â ­" }, { "input": "Spiro", "output": "â  â Žâ â Šâ —â •" }, { "input": "Spirograph", "output": "â  â Žâ â Šâ —⠕⠛⠗â â â “" }, { "input": "Spitsbergen", "output": "â  â Žâ â Šâ žâ Žâ ƒâ »â ›â ¢" }, { "input": "Spitz", "output": "â  â Žâ â Šâ žâ µ" }, { "input": "Spock", "output": "â  â Žâ â •⠉⠅" }, { "input": "Spokane", "output": "â  â Žâ â •â …â â â ‘" }, { "input": "Springfield", "output": "â  â Žâ â —⠬⠋⠊⠑⠇⠙" }, { "input": "Springsteen", "output": "â  â Žâ â —⠬⠌⠑⠢" }, { "input": "Sprint", "output": "â  â Žâ â —⠔⠞" }, { "input": "Sprite", "output": "â  â Žâ â —â Šâ žâ ‘" }, { "input": "Sputnik", "output": "â  â Žâ â ¥â žâ â Šâ …" }, { "input": "Sq", "output": "â  â Žâ Ÿ" }, { "input": "Squanto", "output": "â  â Žâ Ÿâ ¥â â â žâ •" }, { "input": "Squibb", "output": "⠠⠎⠟⠥⠊⠃⠃" }, { "input": "Sr", "output": "â  â Žâ —" }, { "input": "Srinagar", "output": "â  â Žâ —â ”â â ›â œ" }, { "input": "Srivijaya", "output": "â  â Žâ —â Šâ §â Šâ šâ â ½â " }, { "input": "St", "output": "â  â Žâ ž" }, { "input": "Stacey", "output": "â  â Œâ â ‰â ‘â ½" }, { "input": "Staci", "output": "â  â Œâ â ‰â Š" }, { "input": "Stacie", "output": "â  â Œâ â ‰â Šâ ‘" }, { "input": "Stacy", "output": "â  â Œâ â ‰â ½" }, { "input": "Stael", "output": "â  â Œâ â ‘â ‡" }, { "input": "Stafford", "output": "â  â Œâ â ‹â ¿â ™" }, { "input": "StairMaster", "output": "â  â Œâ â Šâ —â  â â â Œâ »" }, { "input": "Stalin", "output": "â  â Œâ â ‡â ”" }, { "input": "Stalingrad", "output": "â  â Œâ â ‡â ”⠛⠗â â ™" }, { "input": "Stalinist", "output": "â  â Œâ â ‡â ”â Šâ Œ" }, { "input": "Stallone", "output": "â  â Œâ â ‡â ‡â â •" }, { "input": "Stamford", "output": "â  â Œâ â â ¿â ™" }, { "input": "Stan", "output": "â  â Œâ â " }, { "input": "Standish", "output": "⠠⠌⠯⠊⠩" }, { "input": "Stanford", "output": "â  â Œâ â â ¿â ™" }, { "input": "Stanislavsky", "output": "â  â Œâ â â Šâ Žâ ‡â â §â Žâ …â ½" }, { "input": "Stanley", "output": "â  â Œâ â â ‡â ‘â ½" }, { "input": "Stanton", "output": "â  â Œâ â â žâ •â " }, { "input": "Staples", "output": "â  â Œâ â â ‡â ‘â Ž" }, { "input": "Starbucks", "output": "⠠⠌⠜⠃⠥⠉⠅⠎" }, { "input": "Stark", "output": "⠠⠌⠜⠅" }, { "input": "Starkey", "output": "⠠⠌⠜⠅⠑⠽" }, { "input": "Starr", "output": "⠠⠌⠜⠗" }, { "input": "Staten", "output": "â  â Œâ â žâ ¢" }, { "input": "Staubach", "output": "â  â Œâ â ¥â ƒâ â ¡" }, { "input": "Steadicam", "output": "⠠⠌⠂⠙⠊⠉â â " }, { "input": "Steele", "output": "⠠⠌⠑⠑⠇⠑" }, { "input": "Stefan", "output": "⠠⠌⠑⠋â â " }, { "input": "Stefanie", "output": "⠠⠌⠑⠋â â â Šâ ‘" }, { "input": "Stein", "output": "⠠⠌⠑⠔" }, { "input": "Steinbeck", "output": "⠠⠌⠑⠔⠃⠑⠉⠅" }, { "input": "Steinem", "output": "⠠⠌⠑⠔⠑â " }, { "input": "Steiner", "output": "⠠⠌⠑⠔⠻" }, { "input": "Steinmetz", "output": "⠠⠌⠑⠔â â ‘â žâ µ" }, { "input": "Steinway", "output": "⠠⠌⠑⠔⠺â â ½" }, { "input": "Stella", "output": "⠠⠌⠑⠇⠇â " }, { "input": "Stendhal", "output": "⠠⠌⠢⠙⠓â â ‡" }, { "input": "Stengel", "output": "⠠⠌⠢⠛⠑⠇" }, { "input": "Stephan", "output": "⠠⠌⠑â â “â â " }, { "input": "Stephanie", "output": "⠠⠌⠑â â “â â â Šâ ‘" }, { "input": "Stephen", "output": "⠠⠌⠑â â “â ¢" }, { "input": "Stephens", "output": "⠠⠌⠑â â “⠢⠎" }, { "input": "Stephenson", "output": "⠠⠌⠑â â “⠢⠎⠕â " }, { "input": "Sterling", "output": "⠠⠌⠻⠇⠬" }, { "input": "Stern", "output": "⠠⠌⠻â " }, { "input": "Sterne", "output": "⠠⠌⠻â â ‘" }, { "input": "Sterno", "output": "⠠⠌⠻â â •" }, { "input": "Stetson", "output": "⠠⠌⠑⠞⠎⠕â " }, { "input": "Steuben", "output": "⠠⠌⠑⠥⠃⠢" }, { "input": "Steve", "output": "⠠⠌⠑⠧⠑" }, { "input": "Steven", "output": "⠠⠌⠑⠧⠢" }, { "input": "Stevens", "output": "⠠⠌⠑⠧⠢⠎" }, { "input": "Stevenson", "output": "⠠⠌⠑⠧⠢⠎⠕â " }, { "input": "Stevie", "output": "⠠⠌⠑⠧⠊⠑" }, { "input": "Stewart", "output": "⠠⠌⠑⠺⠜⠞" }, { "input": "Stieglitz", "output": "⠠⠌⠊⠑⠛⠇⠊⠞⠵" }, { "input": "Stilton", "output": "⠠⠌⠊⠇⠞⠕â " }, { "input": "Stimson", "output": "⠠⠌⠊â â Žâ •â " }, { "input": "Stine", "output": "⠠⠌⠔⠑" }, { "input": "Stirling", "output": "⠠⠌⠊⠗⠇⠬" }, { "input": "Stockhausen", "output": "⠠⠌⠕⠉⠅⠓â â ¥â Žâ ¢" }, { "input": "Stockholm", "output": "⠠⠌⠕⠉⠅⠓⠕⠇â " }, { "input": "Stockton", "output": "⠠⠌⠕⠉⠅⠞⠕â " }, { "input": "Stoic", "output": "⠠⠌⠕⠊⠉" }, { "input": "Stoicism", "output": "⠠⠌⠕⠊⠉⠊⠎â " }, { "input": "Stokes", "output": "⠠⠌⠕⠅⠑⠎" }, { "input": "Stolichnaya", "output": "⠠⠌⠕⠇⠊⠡â â â ½â " }, { "input": "Stolypin", "output": "⠠⠌⠕⠇⠽â â ”" }, { "input": "Stone", "output": "â  â Œâ â •" }, { "input": "Stonehenge", "output": "â  â Œâ â •⠓⠢⠛⠑" }, { "input": "Stoppard", "output": "⠠⠌⠕â â â œâ ™" }, { "input": "Stout", "output": "⠠⠌⠳⠞" }, { "input": "Stowe", "output": "⠠⠌⠪⠑" }, { "input": "Strabo", "output": "⠠⠌⠗â â ƒâ •" }, { "input": "Stradivarius", "output": "⠠⠌⠗â â ™â Šâ §â œâ Šâ ¥â Ž" }, { "input": "Strasbourg", "output": "⠠⠌⠗â â Žâ ƒâ ³â —â ›" }, { "input": "Strauss", "output": "⠠⠌⠗â â ¥â Žâ Ž" }, { "input": "Stravinsky", "output": "⠠⠌⠗â â §â ”â Žâ …â ½" }, { "input": "Streisand", "output": "⠠⠌⠗⠑⠊⠎⠯" }, { "input": "Strickland", "output": "⠠⠌⠗⠊⠉⠅⠇⠯" }, { "input": "Strindberg", "output": "⠠⠌⠗⠔⠙⠃⠻⠛" }, { "input": "Stromboli", "output": "⠠⠌⠗⠕â â ƒâ •⠇⠊" }, { "input": "Strong", "output": "⠠⠌⠗⠰⠛" }, { "input": "Stu", "output": "⠠⠌⠥" }, { "input": "Stuart", "output": "⠠⠌⠥⠜⠞" }, { "input": "Stuarts", "output": "⠠⠌⠥⠜⠞⠎" }, { "input": "Studebaker", "output": "⠠⠌⠥⠙⠑⠃â â …â »" }, { "input": "Stuttgart", "output": "⠠⠌⠥⠞⠞⠛⠜⠞" }, { "input": "Stuyvesant", "output": "⠠⠌⠥⠽⠧⠑⠎â â â ž" }, { "input": "Stygian", "output": "⠠⠌⠽⠛⠊â â " }, { "input": "Styrofoam", "output": "⠠⠌⠽⠗⠕⠋⠕â â " }, { "input": "Styrofoams", "output": "⠠⠌⠽⠗⠕⠋⠕â â â Ž" }, { "input": "Styron", "output": "⠠⠌⠽⠗⠕â " }, { "input": "Styx", "output": "⠠⠌⠽⠭" }, { "input": "Suarez", "output": "⠠⠎⠥⠜⠑⠵" }, { "input": "Subaru", "output": "⠠⠎⠥⠃⠜⠥" }, { "input": "Sucre", "output": "⠠⠎⠥⠉⠗⠑" }, { "input": "Sucrets", "output": "⠠⠎⠥⠉⠗⠑⠞⠎" }, { "input": "Sudan", "output": "⠠⠎⠥⠙â â " }, { "input": "Sudanese", "output": "⠠⠎⠥⠙â â â ‘â Žâ ‘" }, { "input": "Sudetenland", "output": "⠠⠎⠥⠙⠑⠞⠢⠇⠯" }, { "input": "Sudoku", "output": "⠠⠎⠥⠙⠕⠅⠥" }, { "input": "Sudra", "output": "⠠⠎⠥⠙⠗â " }, { "input": "Sue", "output": "⠠⠎⠥⠑" }, { "input": "Suetonius", "output": "⠠⠎⠥⠑⠞⠕â â Šâ ¥â Ž" }, { "input": "Suez", "output": "⠠⠎⠥⠑⠵" }, { "input": "Suffolk", "output": "⠠⠎⠥⠖⠕⠇⠅" }, { "input": "Sufi", "output": "⠠⠎⠥⠋⠊" }, { "input": "Sufism", "output": "⠠⠎⠥⠋⠊⠎â " }, { "input": "Suharto", "output": "⠠⠎⠥⠓⠜⠞⠕" }, { "input": "Sui", "output": "⠠⠎⠥⠊" }, { "input": "Sukarno", "output": "⠠⠎⠥⠅⠜â â •" }, { "input": "Sukkot", "output": "⠠⠎⠥⠅⠅⠕⠞" }, { "input": "Sukkoth", "output": "⠠⠎⠥⠅⠅⠕⠹" }, { "input": "Sukkoths", "output": "⠠⠎⠥⠅⠅⠕⠹⠎" }, { "input": "Sulawesi", "output": "⠠⠎⠥⠇â â ºâ ‘â Žâ Š" }, { "input": "Suleiman", "output": "⠠⠎⠥⠇⠑⠊â â â " }, { "input": "Sulla", "output": "⠠⠎⠥⠇⠇â " }, { "input": "Sullivan", "output": "⠠⠎⠥⠇⠇⠊⠧â â " }, { "input": "Sumatra", "output": "â  â Žâ ¥â â â žâ —â " }, { "input": "Sumeria", "output": "â  â Žâ ¥â â »â Šâ " }, { "input": "Sumerian", "output": "â  â Žâ ¥â â »â Šâ â " }, { "input": "Summer", "output": "â  â Žâ ¥â â â »" }, { "input": "Summers", "output": "â  â Žâ ¥â â â »â Ž" }, { "input": "Sumner", "output": "â  â Žâ ¥â â â »" }, { "input": "Sumter", "output": "â  â Žâ ¥â â žâ »" }, { "input": "Sun", "output": "â  â Žâ ¥â " }, { "input": "Sunbeam", "output": "â  â Žâ ¥â â ƒâ ‚â " }, { "input": "Sunbelt", "output": "â  â Žâ ¥â â ƒâ ‘⠇⠞" }, { "input": "Sundanese", "output": "â  â Žâ ¥â â ™â â â ‘â Žâ ‘" }, { "input": "Sundas", "output": "â  â Žâ ¥â â ™â â Ž" }, { "input": "Sunday", "output": "â  â Žâ ¥â â â ™" }, { "input": "Sundays", "output": "â  â Žâ ¥â â â ™â Ž" }, { "input": "Sung", "output": "â  â Žâ ¥â â ›" }, { "input": "Sunkist", "output": "â  â Žâ ¥â â …â Šâ Œ" }, { "input": "Sunni", "output": "â  â Žâ ¥â â â Š" }, { "input": "Sunnyvale", "output": "â  â Žâ ¥â â â ½â §â â ‡â ‘" }, { "input": "Superbowl", "output": "â  â Žâ ¥â â »â ƒâ ªâ ‡" }, { "input": "Superfund", "output": "â  â Žâ ¥â â »â ‹â ¥â â ™" }, { "input": "Superglue", "output": "â  â Žâ ¥â â »â ›â ‡â ¥â ‘" }, { "input": "Superior", "output": "â  â Žâ ¥â â »â Šâ •â —" }, { "input": "Superman", "output": "â  â Žâ ¥â â »â â â " }, { "input": "Surabaya", "output": "⠠⠎⠥⠗â â ƒâ â ½â " }, { "input": "Surat", "output": "⠠⠎⠥⠗â â ž" }, { "input": "Surinam", "output": "⠠⠎⠥⠗⠔â â " }, { "input": "Suriname", "output": "⠠⠎⠥⠗⠔â â â ‘" }, { "input": "Surya", "output": "⠠⠎⠥⠗⠽â " }, { "input": "Susan", "output": "⠠⠎⠥⠎â â " }, { "input": "Susana", "output": "⠠⠎⠥⠎â â â " }, { "input": "Susanna", "output": "⠠⠎⠥⠎â â â â " }, { "input": "Susanne", "output": "⠠⠎⠥⠎â â â â ‘" }, { "input": "Susie", "output": "⠠⠎⠥⠎⠊⠑" }, { "input": "Susquehanna", "output": "⠠⠎⠥⠎⠟⠥⠑⠓â â â â " }, { "input": "Sussex", "output": "⠠⠎⠥⠎⠎⠑⠭" }, { "input": "Sutherland", "output": "⠠⠎⠥⠮⠗⠇⠯" }, { "input": "Sutton", "output": "⠠⠎⠥⠞⠞⠕â " }, { "input": "Suva", "output": "⠠⠎⠥⠧â " }, { "input": "Suwanee", "output": "⠠⠎⠥⠺â â â ‘â ‘" }, { "input": "Suzanne", "output": "⠠⠎⠥⠵â â â â ‘" }, { "input": "Suzette", "output": "⠠⠎⠥⠵⠑⠞⠞⠑" }, { "input": "Suzhou", "output": "⠠⠎⠥⠵⠓⠳" }, { "input": "Suzuki", "output": "⠠⠎⠥⠵⠥⠅⠊" }, { "input": "Suzy", "output": "⠠⠎⠥⠵⠽" }, { "input": "Svalbard", "output": "â  â Žâ §â â ‡â ƒâ œâ ™" }, { "input": "Sven", "output": "â  â Žâ §â ¢" }, { "input": "Svengali", "output": "⠠⠎⠧⠢⠛â â ‡â Š" }, { "input": "Swahili", "output": "â  â Žâ ºâ â “⠊⠇⠊" }, { "input": "Swahilis", "output": "â  â Žâ ºâ â “⠊⠇⠊⠎" }, { "input": "Swammerdam", "output": "â  â Žâ ºâ â â â »â ™â â " }, { "input": "Swanee", "output": "â  â Žâ ºâ â â ‘â ‘" }, { "input": "Swansea", "output": "â  â Žâ ºâ â â Žâ ‘â " }, { "input": "Swanson", "output": "â  â Žâ ºâ â â Žâ •â " }, { "input": "Swazi", "output": "â  â Žâ ºâ â µâ Š" }, { "input": "Swaziland", "output": "â  â Žâ ºâ â µâ Šâ ‡â ¯" }, { "input": "Swede", "output": "⠠⠎⠺⠫⠑" }, { "input": "Sweden", "output": "⠠⠎⠺⠫⠢" }, { "input": "Swedenborg", "output": "⠠⠎⠺⠫⠢⠃⠕⠗⠛" }, { "input": "Swedes", "output": "⠠⠎⠺⠫⠑⠎" }, { "input": "Swedish", "output": "⠠⠎⠺⠫⠊⠩" }, { "input": "Sweeney", "output": "⠠⠎⠺⠑⠢⠑⠽" }, { "input": "Sweet", "output": "⠠⠎⠺⠑⠑⠞" }, { "input": "Swift", "output": "⠠⠎⠺⠊⠋⠞" }, { "input": "Swinburne", "output": "⠠⠎⠺⠔⠃⠥⠗â â ‘" }, { "input": "Swiss", "output": "⠠⠎⠺⠊⠎⠎" }, { "input": "Swissair", "output": "⠠⠎⠺⠊⠎⠎â â Šâ —" }, { "input": "Swisses", "output": "⠠⠎⠺⠊⠎⠎⠑⠎" }, { "input": "Switzerland", "output": "⠠⠎⠺⠊⠞⠵⠻⠇⠯" }, { "input": "Sybil", "output": "⠠⠎⠽⠃⠊⠇" }, { "input": "Sydney", "output": "⠠⠎⠽⠙â â ‘â ½" }, { "input": "Sykes", "output": "⠠⠎⠽⠅⠑⠎" }, { "input": "Sylvester", "output": "⠠⠎⠽⠇⠧⠑⠌⠻" }, { "input": "Sylvia", "output": "⠠⠎⠽⠇⠧⠊â " }, { "input": "Sylvie", "output": "⠠⠎⠽⠇⠧⠊⠑" }, { "input": "Synge", "output": "â  â Žâ ½â â ›â ‘" }, { "input": "Syracuse", "output": "⠠⠎⠽⠗â â ‰â ¥â Žâ ‘" }, { "input": "Syria", "output": "⠠⠎⠽⠗⠊â " }, { "input": "Syriac", "output": "⠠⠎⠽⠗⠊â â ‰" }, { "input": "Syrian", "output": "⠠⠎⠽⠗⠊â â " }, { "input": "Syrians", "output": "⠠⠎⠽⠗⠊â â â Ž" }, { "input": "Szechuan", "output": "⠠⠎⠵⠑⠡⠥â â " }, { "input": "Szilard", "output": "⠠⠎⠵⠊⠇⠜⠙" }, { "input": "Szymborska", "output": "⠠⠎⠵⠽â â ƒâ •â —â Žâ …â " }, { "input": "Sèvres", "output": "⠠⠠⠎⠘⠻â â ¡â â £â §â —â ‘â Ž" }, { "input": "T", "output": "â °â  â ž" }, { "input": "TWA", "output": "â  â  â žâ ºâ " }, { "input": "Ta", "output": "â  â žâ " }, { "input": "Tabasco", "output": "â  â žâ â ƒâ â Žâ ‰â •" }, { "input": "Tabatha", "output": "â  â žâ â ƒâ â ¹â " }, { "input": "Tabitha", "output": "â  â žâ â ƒâ Šâ ¹â " }, { "input": "Tabriz", "output": "â  â žâ â ƒâ —â Šâ µ" }, { "input": "Tacitus", "output": "â  â žâ â ‰â Šâ žâ ¥â Ž" }, { "input": "Tacoma", "output": "â  â žâ â ‰â •â â " }, { "input": "Tad", "output": "â  â žâ â ™" }, { "input": "Tadzhik", "output": "â  â žâ â ™â µâ “â Šâ …" }, { "input": "Tadzhikistan", "output": "â  â žâ â ™â µâ “â Šâ …â Šâ Œâ â " }, { "input": "Taegu", "output": "â  â žâ â ‘⠛⠥" }, { "input": "Taejon", "output": "â  â žâ â ‘â šâ •â " }, { "input": "Taft", "output": "â  â žâ â ‹â ž" }, { "input": "Tagalog", "output": "â  â žâ â ›â â ‡â •â ›" }, { "input": "Tagore", "output": "â  â žâ â ›â •â —â ‘" }, { "input": "Tagus", "output": "â  â žâ â ›â ¥â Ž" }, { "input": "Tahiti", "output": "â  â žâ â “â Šâ žâ Š" }, { "input": "Tahitian", "output": "â  â žâ â “â Šâ žâ Šâ â " }, { "input": "Tahitians", "output": "â  â žâ â “â Šâ žâ Šâ â â Ž" }, { "input": "Tahoe", "output": "â  â žâ â “â •â ‘" }, { "input": "Taichung", "output": "â  â žâ â Šâ ¡â ¥â â ›" }, { "input": "Taine", "output": "â  â žâ â ”â ‘" }, { "input": "Taipei", "output": "â  â žâ â Šâ â ‘â Š" }, { "input": "Taiping", "output": "â  â žâ â Šâ â ¬" }, { "input": "Taiwan", "output": "â  â žâ â Šâ ºâ â " }, { "input": "Taiwanese", "output": "â  â žâ â Šâ ºâ â â ‘â Žâ ‘" }, { "input": "Taiyuan", "output": "â  â žâ â Šâ ½â ¥â â " }, { "input": "Tajikistan", "output": "â  â žâ â šâ Šâ …â Šâ Œâ â " }, { "input": "Taklamakan", "output": "â  â žâ â …â ‡â â â â …â â " }, { "input": "Talbot", "output": "â  â žâ â ‡â ƒâ •â ž" }, { "input": "Taliban", "output": "â  â žâ â ‡â Šâ ƒâ â " }, { "input": "Taliesin", "output": "â  â žâ â ‡â Šâ ‘â Žâ ”" }, { "input": "Tallahassee", "output": "â  â žâ â ‡â ‡â â “â â Žâ Žâ ‘â ‘" }, { "input": "Tallchief", "output": "â  â žâ â ‡â ‡â ¡â Šâ ‘â ‹" }, { "input": "Talley", "output": "â  â žâ â ‡â ‡â ‘â ½" }, { "input": "Talleyrand", "output": "â  â žâ â ‡â ‡â ‘⠽⠗⠯" }, { "input": "Tallinn", "output": "â  â žâ â ‡â ‡â ”â " }, { "input": "Talmud", "output": "â  â žâ â ‡â â ¥â ™" }, { "input": "Talmudic", "output": "â  â žâ â ‡â â ¥â ™â Šâ ‰" }, { "input": "Talmuds", "output": "â  â žâ â ‡â â ¥â ™â Ž" }, { "input": "Tamara", "output": "â  â žâ â â œâ " }, { "input": "Tameka", "output": "â  â žâ â â ‘â …â " }, { "input": "Tamera", "output": "â  â žâ â â »â " }, { "input": "Tamerlane", "output": "â  â žâ â â »â ‡â â â ‘" }, { "input": "Tami", "output": "â  â žâ â â Š" }, { "input": "Tamika", "output": "â  â žâ â â Šâ …â " }, { "input": "Tamil", "output": "â  â žâ â â Šâ ‡" }, { "input": "Tammany", "output": "â  â žâ â â ¸â " }, { "input": "Tammi", "output": "â  â žâ â â â Š" }, { "input": "Tammie", "output": "â  â žâ â â â Šâ ‘" }, { "input": "Tammuz", "output": "â  â žâ â â â ¥â µ" }, { "input": "Tammy", "output": "â  â žâ â â â ½" }, { "input": "Tampa", "output": "â  â žâ â â â " }, { "input": "Tampax", "output": "â  â žâ â â â â ­" }, { "input": "Tamra", "output": "â  â žâ â â —â " }, { "input": "Tamworth", "output": "â  â žâ â â ºâ •â —â ¹" }, { "input": "Tancred", "output": "â  â žâ â â ‰â —â «" }, { "input": "Taney", "output": "â  â žâ â â ‘â ½" }, { "input": "Tanganyika", "output": "â  â žâ â â ›â â â ½â Šâ …â " }, { "input": "Tangiers", "output": "â  â žâ â â ›â Šâ »â Ž" }, { "input": "Tangshan", "output": "â  â žâ â â ›â ©â â " }, { "input": "Tania", "output": "â  â žâ â â Šâ " }, { "input": "Tanisha", "output": "â  â žâ â â Šâ ©â " }, { "input": "Tanner", "output": "â  â žâ â â â »" }, { "input": "Tannhäuser", "output": "â  â žâ â â â “⠠⠘⠻â â ¡â ˆâ Žâ ¥â Žâ »" }, { "input": "Tantalus", "output": "â  â žâ â â žâ â ‡â ¥â Ž" }, { "input": "Tanya", "output": "â  â žâ â â ½â " }, { "input": "Tanzania", "output": "â  â žâ â â µâ â â Šâ " }, { "input": "Tanzanian", "output": "â  â žâ â â µâ â â Šâ â " }, { "input": "Tanzanians", "output": "â  â žâ â â µâ â â Šâ â â Ž" }, { "input": "Tao", "output": "â  â žâ â •" }, { "input": "Taoism", "output": "â  â žâ â •â Šâ Žâ " }, { "input": "Taoisms", "output": "â  â žâ â •â Šâ Žâ â Ž" }, { "input": "Taoist", "output": "â  â žâ â •â Šâ Œ" }, { "input": "Taoists", "output": "â  â žâ â •⠊⠌⠎" }, { "input": "Tara", "output": "â  â žâ œâ " }, { "input": "Tarantino", "output": "â  â žâ œâ â â žâ ”â •" }, { "input": "Tarawa", "output": "â  â žâ œâ â ºâ " }, { "input": "Tarazed", "output": "â  â žâ œâ â µâ «" }, { "input": "Tarbell", "output": "⠠⠞⠜⠃⠑⠇⠇" }, { "input": "Target", "output": "⠠⠞⠜⠛⠑⠞" }, { "input": "Tarim", "output": "⠠⠞⠜⠊â " }, { "input": "Tarkenton", "output": "⠠⠞⠜⠅⠢⠞⠕â " }, { "input": "Tarkington", "output": "⠠⠞⠜⠅⠬⠞⠕â " }, { "input": "Tartar", "output": "⠠⠞⠜⠞⠜" }, { "input": "Tartars", "output": "⠠⠞⠜⠞⠜⠎" }, { "input": "Tartary", "output": "⠠⠞⠜⠞⠜⠽" }, { "input": "Tartuffe", "output": "⠠⠞⠜⠞⠥⠖⠑" }, { "input": "Tarzan", "output": "⠠⠞⠜⠵â â " }, { "input": "Tasha", "output": "â  â žâ â ©â " }, { "input": "Tashkent", "output": "â  â žâ â ©â …⠢⠞" }, { "input": "Tasman", "output": "â  â žâ â Žâ â â " }, { "input": "Tasmania", "output": "â  â žâ â Žâ â â â Šâ " }, { "input": "Tasmanian", "output": "â  â žâ â Žâ â â â Šâ â " }, { "input": "Tass", "output": "â  â žâ â Žâ Ž" }, { "input": "Tatar", "output": "â  â žâ â žâ œ" }, { "input": "Tatars", "output": "â  â žâ â žâ œâ Ž" }, { "input": "Tate", "output": "â  â žâ â žâ ‘" }, { "input": "Tatum", "output": "â  â žâ â žâ ¥â " }, { "input": "Taurus", "output": "â  â žâ â ¥â —⠥⠎" }, { "input": "Tauruses", "output": "â  â žâ â ¥â —⠥⠎⠑⠎" }, { "input": "Tawney", "output": "â  â žâ â ºâ â ‘â ½" }, { "input": "Taylor", "output": "â  â žâ â ½â ‡â •â —" }, { "input": "Tb", "output": "â  â žâ ƒ" }, { "input": "Tbilisi", "output": "⠠⠞⠃⠊⠇⠊⠎⠊" }, { "input": "Tc", "output": "â  â žâ ‰" }, { "input": "Tchaikovsky", "output": "â  â žâ ¡â â Šâ …â •â §â Žâ …â ½" }, { "input": "Teasdale", "output": "â  â žâ ‚â Žâ ™â â ‡â ‘" }, { "input": "Technicolor", "output": "â  â žâ ‘â ¡â â Šâ ‰â •⠇⠕⠗" }, { "input": "Tecumseh", "output": "⠠⠞⠑⠉⠥â â Žâ ‘â “" }, { "input": "Ted", "output": "â  â žâ «" }, { "input": "Teddy", "output": "⠠⠞⠫⠙⠽" }, { "input": "Teflon", "output": "⠠⠞⠑⠋⠇⠕â " }, { "input": "Teflons", "output": "⠠⠞⠑⠋⠇⠕â â Ž" }, { "input": "Tegucigalpa", "output": "⠠⠞⠑⠛⠥⠉⠊⠛â â ‡â â " }, { "input": "Teheran", "output": "â  â žâ ‘â “â »â â " }, { "input": "Tehran", "output": "â  â žâ ‘â “â —â â " }, { "input": "TelePrompter", "output": "⠠⠞⠑⠇⠑⠠â â —â •â â â žâ »" }, { "input": "Telemachus", "output": "⠠⠞⠑⠇⠑â â â ¡â ¥â Ž" }, { "input": "Telemann", "output": "⠠⠞⠑⠇⠑â â â â " }, { "input": "Teletype", "output": "⠠⠞⠑⠇⠑⠞⠽â â ‘" }, { "input": "Tell", "output": "⠠⠞⠑⠇⠇" }, { "input": "Teller", "output": "⠠⠞⠑⠇⠇⠻" }, { "input": "Telugu", "output": "⠠⠞⠑⠇⠥⠛⠥" }, { "input": "Tempe", "output": "â  â žâ ‘â â â ‘" }, { "input": "Templar", "output": "â  â žâ ‘â â â ‡â œ" }, { "input": "Tennessee", "output": "⠠⠞⠢⠰⠎⠑⠑" }, { "input": "Tennyson", "output": "â  â žâ ¢â â ½â Žâ •â " }, { "input": "Tenochtitlan", "output": "⠠⠞⠢⠕⠡⠞⠊⠞⠇â â " }, { "input": "Teotihuacan", "output": "â  â žâ ‘â •â žâ Šâ “â ¥â â ‰â â " }, { "input": "Terence", "output": "⠠⠞⠻⠰⠑" }, { "input": "Teresa", "output": "⠠⠞⠻⠑⠎â " }, { "input": "Tereshkova", "output": "⠠⠞⠻⠑⠩⠅⠕⠧â " }, { "input": "Teri", "output": "⠠⠞⠻⠊" }, { "input": "Terkel", "output": "⠠⠞⠻⠅⠑⠇" }, { "input": "Terpsichore", "output": "â  â žâ »â â Žâ Šâ ¡â •â —â ‘" }, { "input": "Terr", "output": "⠠⠞⠻⠗" }, { "input": "Terra", "output": "⠠⠞⠻⠗â " }, { "input": "Terran", "output": "⠠⠞⠻⠗â â " }, { "input": "Terrance", "output": "⠠⠞⠻⠗⠨⠑" }, { "input": "Terrell", "output": "⠠⠞⠻⠗⠑⠇⠇" }, { "input": "Terrence", "output": "⠠⠞⠻⠗⠰⠑" }, { "input": "Terri", "output": "⠠⠞⠻⠗⠊" }, { "input": "Terrie", "output": "⠠⠞⠻⠗⠊⠑" }, { "input": "Terry", "output": "⠠⠞⠻⠗⠽" }, { "input": "Tertiary", "output": "⠠⠞⠻⠞⠊⠜⠽" }, { "input": "Tesla", "output": "â  â žâ ‘â Žâ ‡â " }, { "input": "Tess", "output": "â  â žâ ‘â Žâ Ž" }, { "input": "Tessa", "output": "â  â žâ ‘â Žâ Žâ " }, { "input": "Tessie", "output": "â  â žâ ‘â Žâ Žâ Šâ ‘" }, { "input": "Tet", "output": "â  â žâ ‘â ž" }, { "input": "Tethys", "output": "⠠⠞⠑⠹⠽⠎" }, { "input": "Tetons", "output": "â  â žâ ‘â žâ •â â Ž" }, { "input": "Teutonic", "output": "⠠⠞⠑⠥⠞⠕â â Šâ ‰" }, { "input": "Tevet", "output": "â  â žâ ‘â §â ‘â ž" }, { "input": "Tex", "output": "â  â žâ ‘â ­" }, { "input": "Texaco", "output": "â  â žâ ‘â ­â â ‰â •" }, { "input": "Texan", "output": "â  â žâ ‘â ­â â " }, { "input": "Texans", "output": "â  â žâ ‘â ­â â â Ž" }, { "input": "Texas", "output": "â  â žâ ‘â ­â â Ž" }, { "input": "Th", "output": "â  â žâ “" }, { "input": "Thackeray", "output": "â  â ¹â â ‰â …â »â â ½" }, { "input": "Thad", "output": "â  â ¹â â ™" }, { "input": "Thaddeus", "output": "â  â ¹â â ™â ™â ‘⠥⠎" }, { "input": "Thai", "output": "â  â ¹â â Š" }, { "input": "Thailand", "output": "â  â ¹â â Šâ ‡â ¯" }, { "input": "Thais", "output": "â  â ¹â â Šâ Ž" }, { "input": "Thales", "output": "â  â ¹â â ‡â ‘â Ž" }, { "input": "Thalia", "output": "â  â ¹â â ‡â Šâ " }, { "input": "Thames", "output": "â  â ¹â â â ‘â Ž" }, { "input": "Thanh", "output": "â  â ¹â â â “" }, { "input": "Thanksgiving", "output": "â  â ¹â â â …⠎⠛⠊⠧⠬" }, { "input": "Thanksgivings", "output": "â  â ¹â â â …⠎⠛⠊⠧⠬⠎" }, { "input": "Thant", "output": "â  â ¹â â â ž" }, { "input": "Thar", "output": "⠠⠹⠜" }, { "input": "Tharp", "output": "⠠⠹⠜â " }, { "input": "Thatcher", "output": "â  â ¹â â žâ ¡â »" }, { "input": "Thea", "output": "â  â ®â " }, { "input": "Thebes", "output": "⠠⠮⠃⠑⠎" }, { "input": "Theiler", "output": "⠠⠮⠊⠇⠻" }, { "input": "Thelma", "output": "⠠⠮⠇â â " }, { "input": "Themistocles", "output": "â  â ®â â Šâ Œâ •⠉⠇⠑⠎" }, { "input": "Theocritus", "output": "⠠⠮⠕⠉⠗⠊⠞⠥⠎" }, { "input": "Theodora", "output": "⠠⠮⠕⠙⠕⠗â " }, { "input": "Theodore", "output": "⠠⠮⠕⠙⠕⠗⠑" }, { "input": "Theodoric", "output": "⠠⠮⠕⠙⠕⠗⠊⠉" }, { "input": "Theodosius", "output": "⠠⠮⠕⠙⠕⠎⠊⠥⠎" }, { "input": "Theosophy", "output": "⠠⠮⠕⠎⠕â â “â ½" }, { "input": "Theravada", "output": "⠠⠮⠗â â §â â ™â " }, { "input": "Theresa", "output": "⠠⠮⠗⠑⠎â " }, { "input": "Therese", "output": "⠠⠮⠗⠑⠎⠑" }, { "input": "Thermopylae", "output": "⠠⠮⠗â â •â â ½â ‡â â ‘" }, { "input": "Thermos", "output": "⠠⠮⠗â â •â Ž" }, { "input": "Theron", "output": "⠠⠮⠗⠕â " }, { "input": "Theseus", "output": "⠠⠮⠎⠑⠥⠎" }, { "input": "Thespian", "output": "⠠⠮⠎â â Šâ â " }, { "input": "Thespis", "output": "⠠⠮⠎â â Šâ Ž" }, { "input": "Thessalonian", "output": "⠠⠮⠎⠎â â ‡â •â â Šâ â " }, { "input": "Thessaloníki", "output": "⠠⠮⠎⠎â â ‡â •â â  â ˜â »â â ¡â ¤â …â Š" }, { "input": "Thessaly", "output": "⠠⠮⠎⠎â â ‡â ½" }, { "input": "Thieu", "output": "⠠⠹⠊⠑⠥" }, { "input": "Thimbu", "output": "⠠⠹⠊â â ƒâ ¥" }, { "input": "Thomas", "output": "⠠⠹⠕â â â Ž" }, { "input": "Thomism", "output": "⠠⠹⠕â â Šâ Žâ " }, { "input": "Thomistic", "output": "⠠⠹⠕â â Šâ Œâ Šâ ‰" }, { "input": "Thompson", "output": "⠠⠹⠕â â â Žâ •â " }, { "input": "Thomson", "output": "⠠⠹⠕â â Žâ •â " }, { "input": "Thor", "output": "⠠⠹⠕⠗" }, { "input": "Thorazine", "output": "⠠⠹⠕⠗â â µâ ”â ‘" }, { "input": "Thoreau", "output": "⠠⠹⠕⠗⠂⠥" }, { "input": "Thornton", "output": "⠠⠹⠕⠗â â žâ •â " }, { "input": "Thoroughbred", "output": "⠠⠹⠕⠗⠳⠣⠃⠗⠫" }, { "input": "Thorpe", "output": "⠠⠹⠕⠗â â ‘" }, { "input": "Thoth", "output": "⠠⠹⠕⠹" }, { "input": "Thrace", "output": "⠠⠹⠗â â ‰â ‘" }, { "input": "Thracian", "output": "⠠⠹⠗â â ‰â Šâ â " }, { "input": "Thucydides", "output": "⠠⠹⠥⠉⠽⠙⠊⠙⠑⠎" }, { "input": "Thule", "output": "⠠⠹⠥⠇⠑" }, { "input": "Thunderbird", "output": "â  â ¹â â ¥â ƒâ Šâ —â ™" }, { "input": "Thur", "output": "⠠⠹⠥⠗" }, { "input": "Thurber", "output": "⠠⠹⠥⠗⠃⠻" }, { "input": "Thurman", "output": "⠠⠹⠥⠗â â â " }, { "input": "Thurmond", "output": "⠠⠹⠥⠗â â •â â ™" }, { "input": "Thurs", "output": "⠠⠹⠥⠗⠎" }, { "input": "Thursday", "output": "⠠⠹⠥⠗⠎â â ™" }, { "input": "Thursdays", "output": "⠠⠹⠥⠗⠎â â ™â Ž" }, { "input": "Thutmose", "output": "⠠⠹⠥⠞â â •â Žâ ‘" }, { "input": "Ti", "output": "â  â žâ Š" }, { "input": "Tia", "output": "â  â žâ Šâ " }, { "input": "Tianjin", "output": "â  â žâ Šâ â â šâ ”" }, { "input": "Tiber", "output": "⠠⠞⠊⠃⠻" }, { "input": "Tiberius", "output": "⠠⠞⠊⠃⠻⠊⠥⠎" }, { "input": "Tibet", "output": "⠠⠞⠊⠃⠑⠞" }, { "input": "Tibetan", "output": "⠠⠞⠊⠃⠑⠞â â " }, { "input": "Tibetans", "output": "⠠⠞⠊⠃⠑⠞â â â Ž" }, { "input": "Ticketmaster", "output": "⠠⠞⠊⠉⠅⠑⠞â â â Œâ »" }, { "input": "Ticonderoga", "output": "⠠⠞⠊⠉⠕â â ™â »â •â ›â " }, { "input": "Tide", "output": "⠠⠞⠊⠙⠑" }, { "input": "Tienanmen", "output": "â  â žâ Šâ ¢â â â â ¢" }, { "input": "Tientsin", "output": "⠠⠞⠊⠢⠞⠎⠔" }, { "input": "Tiffany", "output": "â  â žâ Šâ –â â â ½" }, { "input": "Tigris", "output": "⠠⠞⠊⠛⠗⠊⠎" }, { "input": "Tijuana", "output": "â  â žâ Šâ šâ ¥â â â " }, { "input": "Tillich", "output": "⠠⠞⠊⠇⠇⠊⠡" }, { "input": "Tillman", "output": "⠠⠞⠊⠇⠇â â â " }, { "input": "Tilsit", "output": "⠠⠞⠊⠇⠎⠊⠞" }, { "input": "Tim", "output": "â  â žâ Šâ " }, { "input": "Timbuktu", "output": "â  â žâ Šâ â ƒâ ¥â …â žâ ¥" }, { "input": "Timex", "output": "â  â â žâ ­" }, { "input": "Timmy", "output": "â  â žâ Šâ â â ½" }, { "input": "Timon", "output": "â  â žâ Šâ â •â " }, { "input": "Timor", "output": "â  â žâ Šâ â •â —" }, { "input": "Timothy", "output": "â  â žâ Šâ â •⠹⠽" }, { "input": "Timur", "output": "â  â žâ Šâ â ¥â —" }, { "input": "Timurid", "output": "â  â žâ Šâ â ¥â —â Šâ ™" }, { "input": "Tina", "output": "â  â žâ ”â " }, { "input": "Ting", "output": "â  â žâ ¬" }, { "input": "Tinkerbell", "output": "⠠⠞⠔⠅⠻⠃⠑⠇⠇" }, { "input": "Tinkertoy", "output": "⠠⠞⠔⠅⠻⠞⠕⠽" }, { "input": "Tinseltown", "output": "⠠⠞⠔⠎⠑⠇⠞⠪â " }, { "input": "Tintoretto", "output": "⠠⠞⠔⠞⠕⠗⠑⠞⠞⠕" }, { "input": "Tippecanoe", "output": "â  â žâ Šâ â â ‘â ‰â â â •â ‘" }, { "input": "Tipperary", "output": "â  â žâ Šâ â â »â œâ ½" }, { "input": "Tirana", "output": "â  â žâ Šâ —â â â " }, { "input": "Tiresias", "output": "â  â žâ Šâ —â ‘â Žâ Šâ â Ž" }, { "input": "Tisha", "output": "â  â žâ Šâ ©â " }, { "input": "Tishri", "output": "â  â žâ Šâ ©â —â Š" }, { "input": "Titan", "output": "â  â žâ Šâ žâ â " }, { "input": "Titania", "output": "â  â žâ Šâ žâ â â Šâ " }, { "input": "Titanic", "output": "â  â žâ Šâ žâ â â Šâ ‰" }, { "input": "Titian", "output": "â  â žâ Šâ žâ Šâ â " }, { "input": "Titicaca", "output": "â  â žâ Šâ žâ Šâ ‰â â ‰â " }, { "input": "Tito", "output": "â  â žâ Šâ žâ •" }, { "input": "Titus", "output": "⠠⠞⠊⠞⠥⠎" }, { "input": "Tl", "output": "â  â žâ ‡" }, { "input": "Tlaloc", "output": "â  â žâ ‡â â ‡â •â ‰" }, { "input": "Tlingit", "output": "⠠⠞⠇⠬⠊⠞" }, { "input": "Tm", "output": "â °â  â žâ " }, { "input": "Tobago", "output": "â  â žâ •â ƒâ â ›â •" }, { "input": "Toby", "output": "⠠⠞⠕⠃⠽" }, { "input": "Tocantins", "output": "â  â žâ •â ‰â â â žâ ”â Ž" }, { "input": "Tocqueville", "output": "⠠⠞⠕⠉⠟⠥⠑⠧⠊⠇⠇⠑" }, { "input": "Tod", "output": "â  â žâ •â ™" }, { "input": "Todd", "output": "⠠⠞⠕⠙⠙" }, { "input": "Togo", "output": "⠠⠞⠕⠛⠕" }, { "input": "Tojo", "output": "â  â žâ •â šâ •" }, { "input": "Tokay", "output": "â  â žâ •â …â â ½" }, { "input": "Tokugawa", "output": "⠠⠞⠕⠅⠥⠛â â ºâ " }, { "input": "Tokyo", "output": "⠠⠞⠕⠅⠽⠕" }, { "input": "Toledo", "output": "⠠⠞⠕⠇⠫⠕" }, { "input": "Toledos", "output": "⠠⠞⠕⠇⠫⠕⠎" }, { "input": "Tolkien", "output": "⠠⠞⠕⠇⠅⠊⠢" }, { "input": "Tolstoy", "output": "⠠⠞⠕⠇⠌⠕⠽" }, { "input": "Toltec", "output": "⠠⠞⠕⠇⠞⠑⠉" }, { "input": "Tolyatti", "output": "⠠⠞⠕⠇⠽â â žâ žâ Š" }, { "input": "Tom", "output": "â  â žâ •â " }, { "input": "Tomas", "output": "â  â žâ •â â â Ž" }, { "input": "Tombaugh", "output": "â  â žâ •â â ƒâ â ¥â £" }, { "input": "Tomlin", "output": "â  â žâ •â â ‡â ”" }, { "input": "Tommie", "output": "â  â žâ •â â â Šâ ‘" }, { "input": "Tommy", "output": "â  â žâ •â â â ½" }, { "input": "Tompkins", "output": "â  â žâ •â â â …⠔⠎" }, { "input": "Tomsk", "output": "â  â žâ •â â Žâ …" }, { "input": "Tonga", "output": "â  â žâ °â ›â " }, { "input": "Tongan", "output": "â  â žâ °â ›â â " }, { "input": "Tongans", "output": "â  â žâ °â ›â â â Ž" }, { "input": "Toni", "output": "â  â žâ •â â Š" }, { "input": "Tonia", "output": "â  â žâ •â â Šâ " }, { "input": "Tonto", "output": "â  â žâ •â â žâ •" }, { "input": "Tony", "output": "â  â žâ •â â ½" }, { "input": "Tonya", "output": "â  â žâ •â â ½â " }, { "input": "Topeka", "output": "â  â žâ •â â ‘â …â " }, { "input": "Topsy", "output": "â  â žâ •â â Žâ ½" }, { "input": "Torah", "output": "â  â žâ •â —â â “" }, { "input": "Torahs", "output": "â  â žâ •â —â â “â Ž" }, { "input": "Tories", "output": "â  â žâ •â —â Šâ ‘â Ž" }, { "input": "Toronto", "output": "â  â žâ •â —â •â â žâ •" }, { "input": "Torquemada", "output": "⠠⠞⠕⠗⠟⠥⠑â â â ™â " }, { "input": "Torrance", "output": "⠠⠞⠕⠗⠗⠨⠑" }, { "input": "Torrens", "output": "⠠⠞⠕⠗⠗⠢⠎" }, { "input": "Torres", "output": "â  â žâ •â —â —â ‘â Ž" }, { "input": "Torricelli", "output": "⠠⠞⠕⠗⠗⠊⠉⠑⠇⠇⠊" }, { "input": "Tortola", "output": "â  â žâ •â —â žâ •â ‡â " }, { "input": "Tortuga", "output": "⠠⠞⠕⠗⠞⠥⠛â " }, { "input": "Torvalds", "output": "â  â žâ •â —â §â â ‡â ™â Ž" }, { "input": "Tory", "output": "â  â žâ •â —â ½" }, { "input": "Tosca", "output": "â  â žâ •â Žâ ‰â " }, { "input": "Toscanini", "output": "â  â žâ •â Žâ ‰â â â ”â Š" }, { "input": "Toshiba", "output": "â  â žâ •â ©â Šâ ƒâ " }, { "input": "Toto", "output": "â  â žâ •â žâ •" }, { "input": "Toulouse", "output": "⠠⠞⠳⠇⠳⠎⠑" }, { "input": "Townes", "output": "â  â žâ ªâ â ‘â Ž" }, { "input": "Townsend", "output": "â  â žâ ªâ â Žâ ¢â ™" }, { "input": "Toynbee", "output": "â  â žâ •â ½â â ƒâ ‘â ‘" }, { "input": "Toyoda", "output": "⠠⠞⠕⠽⠕⠙â " }, { "input": "Toyota", "output": "⠠⠞⠕⠽⠕⠞â " }, { "input": "Tracey", "output": "â  â žâ —â â ‰â ‘â ½" }, { "input": "Traci", "output": "â  â žâ —â â ‰â Š" }, { "input": "Tracie", "output": "â  â žâ —â â ‰â Šâ ‘" }, { "input": "Tracy", "output": "â  â žâ —â â ‰â ½" }, { "input": "Trafalgar", "output": "â  â žâ —â â ‹â â ‡â ›â œ" }, { "input": "Trailways", "output": "â  â žâ —â â Šâ ‡â ºâ â ½â Ž" }, { "input": "Trajan", "output": "â  â žâ —â â šâ â " }, { "input": "Tran", "output": "â  â žâ —â â " }, { "input": "Transcaucasia", "output": "â  â žâ —â â â Žâ ‰â â ¥â ‰â â Žâ Šâ " }, { "input": "Transvaal", "output": "â  â žâ —â â â Žâ §â â â ‡" }, { "input": "Transylvania", "output": "â  â žâ —â â â Žâ ½â ‡â §â â â Šâ " }, { "input": "Trappist", "output": "â  â žâ —â â â â Šâ Œ" }, { "input": "Travis", "output": "â  â žâ —â â §â Šâ Ž" }, { "input": "Travolta", "output": "â  â žâ —â â §â •⠇⠞â " }, { "input": "Treblinka", "output": "⠠⠞⠗⠑⠃⠇⠔⠅â " }, { "input": "Trekkie", "output": "â  â žâ —â ‘â …â …â Šâ ‘" }, { "input": "Trent", "output": "⠠⠞⠗⠢⠞" }, { "input": "Trenton", "output": "⠠⠞⠗⠢⠞⠕â " }, { "input": "Trevelyan", "output": "⠠⠞⠗⠑⠧⠑⠇⠽â â " }, { "input": "Trevino", "output": "⠠⠞⠗⠑⠧⠔⠕" }, { "input": "Trevor", "output": "â  â žâ —â ‘â §â •â —" }, { "input": "Trey", "output": "â  â žâ —â ‘â ½" }, { "input": "Triangulum", "output": "â  â žâ —â Šâ â â ›â ¥â ‡â ¥â " }, { "input": "Triassic", "output": "â  â žâ —â Šâ â Žâ Žâ Šâ ‰" }, { "input": "Tricia", "output": "⠠⠞⠗⠊⠉⠊â " }, { "input": "Trident", "output": "⠠⠞⠗⠊⠙⠢⠞" }, { "input": "Trieste", "output": "⠠⠞⠗⠊⠑⠌⠑" }, { "input": "Trimurti", "output": "â  â žâ —â Šâ â ¥â —â žâ Š" }, { "input": "Trina", "output": "â  â žâ —â ”â " }, { "input": "Trinidad", "output": "⠠⠞⠗⠔⠊⠙â â ™" }, { "input": "Trinities", "output": "⠠⠞⠗⠔⠊⠞⠊⠑⠎" }, { "input": "Trinity", "output": "⠠⠞⠗⠔⠰⠽" }, { "input": "Tripitaka", "output": "â  â žâ —â Šâ â Šâ žâ â …â " }, { "input": "Tripoli", "output": "â  â žâ —â Šâ â •⠇⠊" }, { "input": "Trippe", "output": "â  â žâ —â Šâ â â ‘" }, { "input": "Trisha", "output": "â  â žâ —â Šâ ©â " }, { "input": "Tristan", "output": "â  â žâ —â Šâ Œâ â " }, { "input": "Triton", "output": "â  â žâ —â Šâ žâ •â " }, { "input": "Trobriand", "output": "⠠⠞⠗⠕⠃⠗⠊⠯" }, { "input": "Trojan", "output": "â  â žâ —â •â šâ â " }, { "input": "Trojans", "output": "â  â žâ —â •â šâ â â Ž" }, { "input": "Trollope", "output": "⠠⠞⠗⠕⠇⠇⠕â â ‘" }, { "input": "Trondheim", "output": "â  â žâ —â •â â ™â “â ‘â Šâ " }, { "input": "Tropicana", "output": "â  â žâ —â •â â Šâ ‰â â â " }, { "input": "Trotsky", "output": "â  â žâ —â •â žâ Žâ …â ½" }, { "input": "Troy", "output": "â  â žâ —â •â ½" }, { "input": "Troyes", "output": "⠠⠞⠗⠕⠽⠑⠎" }, { "input": "Truckee", "output": "⠠⠞⠗⠥⠉⠅⠑⠑" }, { "input": "Trudeau", "output": "⠠⠞⠗⠥⠙⠂⠥" }, { "input": "Trudy", "output": "⠠⠞⠗⠥⠙⠽" }, { "input": "Truffaut", "output": "⠠⠞⠗⠥⠖â â ¥â ž" }, { "input": "Trujillo", "output": "⠠⠞⠗⠥⠚⠊⠇⠇⠕" }, { "input": "Truman", "output": "â  â žâ —â ¥â â â " }, { "input": "Trumbull", "output": "â  â žâ —â ¥â â ƒâ ¥â ‡â ‡" }, { "input": "Trump", "output": "â  â žâ —â ¥â â " }, { "input": "Truth", "output": "⠠⠞⠗⠥⠹" }, { "input": "Tsimshian", "output": "â  â žâ Žâ Šâ â ©â Šâ â " }, { "input": "Tsingtao", "output": "⠠⠞⠎⠬⠞â â •" }, { "input": "Tsiolkovsky", "output": "⠠⠞⠎⠊⠕⠇⠅⠕⠧⠎⠅⠽" }, { "input": "Tsitsihar", "output": "â  â žâ Žâ Šâ žâ Žâ Šâ “â œ" }, { "input": "Tsongkhapa", "output": "⠠⠞⠎⠰⠛⠅⠓â â â " }, { "input": "Tswana", "output": "â  â žâ Žâ ºâ â â " }, { "input": "Tuamotu", "output": "â  â žâ ¥â â â •â žâ ¥" }, { "input": "Tuareg", "output": "⠠⠞⠥⠜⠑⠛" }, { "input": "Tubman", "output": "⠠⠞⠥⠃â â â " }, { "input": "Tucker", "output": "⠠⠞⠥⠉⠅⠻" }, { "input": "Tucson", "output": "⠠⠞⠥⠉⠎⠕â " }, { "input": "Tucuman", "output": "⠠⠞⠥⠉⠥â â â " }, { "input": "Tudor", "output": "⠠⠞⠥⠙⠕⠗" }, { "input": "Tues", "output": "⠠⠞⠥⠑⠎" }, { "input": "Tuesday", "output": "⠠⠞⠥⠑⠎â â ™" }, { "input": "Tuesdays", "output": "⠠⠞⠥⠑⠎â â ™â Ž" }, { "input": "Tulane", "output": "⠠⠞⠥⠇â â â ‘" }, { "input": "Tull", "output": "⠠⠞⠥⠇⠇" }, { "input": "Tulsa", "output": "⠠⠞⠥⠇⠎â " }, { "input": "Tulsidas", "output": "⠠⠞⠥⠇⠎⠊⠙â â Ž" }, { "input": "Tums", "output": "â  â žâ ¥â â Ž" }, { "input": "Tungus", "output": "â  â žâ ¥â â ›â ¥â Ž" }, { "input": "Tunguska", "output": "â  â žâ ¥â â ›â ¥â Žâ …â " }, { "input": "Tunis", "output": "â  â žâ ¥â â Šâ Ž" }, { "input": "Tunisia", "output": "â  â žâ ¥â â Šâ Žâ Šâ " }, { "input": "Tunisian", "output": "â  â žâ ¥â â Šâ Žâ Šâ â " }, { "input": "Tunisians", "output": "â  â žâ ¥â â Šâ Žâ Šâ â â Ž" }, { "input": "Tunney", "output": "â  â žâ ¥â â â ‘â ½" }, { "input": "Tupi", "output": "â  â žâ ¥â â Š" }, { "input": "Tupperware", "output": "â  â žâ ¥â â â »â ºâ œâ ‘" }, { "input": "Tupungato", "output": "â  â žâ ¥â â ¥â â ›â â žâ •" }, { "input": "Turgenev", "output": "⠠⠞⠥⠗⠛⠢⠑⠧" }, { "input": "Turin", "output": "⠠⠞⠥⠗⠔" }, { "input": "Turing", "output": "⠠⠞⠥⠗⠬" }, { "input": "Turk", "output": "⠠⠞⠥⠗⠅" }, { "input": "Turkestan", "output": "⠠⠞⠥⠗⠅⠑⠌â â " }, { "input": "Turkey", "output": "⠠⠞⠥⠗⠅⠑⠽" }, { "input": "Turkish", "output": "⠠⠞⠥⠗⠅⠊⠩" }, { "input": "Turkmenistan", "output": "⠠⠞⠥⠗⠅â â ¢â Šâ Œâ â " }, { "input": "Turks", "output": "⠠⠞⠥⠗⠅⠎" }, { "input": "Turner", "output": "⠠⠞⠥⠗â â »" }, { "input": "Turpin", "output": "⠠⠞⠥⠗â â ”" }, { "input": "Tuscaloosa", "output": "⠠⠞⠥⠎⠉â â ‡â •â •â Žâ " }, { "input": "Tuscan", "output": "⠠⠞⠥⠎⠉â â " }, { "input": "Tuscany", "output": "⠠⠞⠥⠎⠉â â â ½" }, { "input": "Tuscarora", "output": "⠠⠞⠥⠎⠉⠜⠕⠗â " }, { "input": "Tuscon", "output": "⠠⠞⠥⠎⠉⠕â " }, { "input": "Tuskegee", "output": "⠠⠞⠥⠎⠅⠑⠛⠑⠑" }, { "input": "Tussaud", "output": "⠠⠞⠥⠎⠎â â ¥â ™" }, { "input": "Tut", "output": "⠠⠞⠥⠞" }, { "input": "Tutankhamen", "output": "⠠⠞⠥⠞â â â …â “â â â ¢" }, { "input": "Tutsi", "output": "⠠⠞⠥⠞⠎⠊" }, { "input": "Tutu", "output": "⠠⠞⠥⠞⠥" }, { "input": "Tuvalu", "output": "⠠⠞⠥⠧â â ‡â ¥" }, { "input": "Twain", "output": "â  â žâ ºâ â ”" }, { "input": "Tweed", "output": "⠠⠞⠺⠑⠫" }, { "input": "Tweedledee", "output": "⠠⠞⠺⠑⠫⠇⠑⠙⠑⠑" }, { "input": "Tweedledum", "output": "⠠⠞⠺⠑⠫⠇⠑⠙⠥â " }, { "input": "Twila", "output": "⠠⠞⠺⠊⠇â " }, { "input": "Twinkies", "output": "⠠⠞⠺⠔⠅⠊⠑⠎" }, { "input": "Twitter", "output": "⠠⠞⠺⠊⠞⠞⠻" }, { "input": "Twizzlers", "output": "⠠⠞⠺⠊⠵⠵⠇⠻⠎" }, { "input": "Ty", "output": "â  â žâ ½" }, { "input": "Tycho", "output": "⠠⠞⠽⠡⠕" }, { "input": "Tylenol", "output": "⠠⠞⠽⠇⠢⠕⠇" }, { "input": "Tyler", "output": "⠠⠞⠽⠇⠻" }, { "input": "Tyndale", "output": "â  â žâ ½â â ™â â ‡â ‘" }, { "input": "Tyndall", "output": "â  â žâ ½â â ™â â ‡â ‡" }, { "input": "Tyre", "output": "⠠⠞⠽⠗⠑" }, { "input": "Tyree", "output": "⠠⠞⠽⠗⠑⠑" }, { "input": "Tyrone", "output": "⠠⠞⠽⠗â â •" }, { "input": "Tyson", "output": "⠠⠞⠽⠎⠕â " }, { "input": "U", "output": "â °â  â ¥" }, { "input": "UBS", "output": "⠠⠠⠥⠃⠎" }, { "input": "UCLA", "output": "⠠⠠⠥⠉⠇â " }, { "input": "Ubangi", "output": "⠠⠥⠃â â â ›â Š" }, { "input": "Ubuntu", "output": "⠠⠥⠃⠥â â žâ ¥" }, { "input": "Ucayali", "output": "⠠⠥⠉â â ½â â ‡â Š" }, { "input": "Uccello", "output": "⠠⠥⠒⠑⠇⠇⠕" }, { "input": "Udall", "output": "⠠⠥⠙â â ‡â ‡" }, { "input": "Ufa", "output": "⠠⠥⠋â " }, { "input": "Uganda", "output": "⠠⠥⠛⠯â " }, { "input": "Ugandan", "output": "⠠⠥⠛⠯â â " }, { "input": "Ugandans", "output": "⠠⠥⠛⠯â â â Ž" }, { "input": "Uighur", "output": "⠠⠥⠊⠣⠥⠗" }, { "input": "Ujungpandang", "output": "⠠⠥⠚⠥â â ›â â ¯â â â ›" }, { "input": "Ukraine", "output": "⠠⠥⠅⠗â â ”â ‘" }, { "input": "Ukrainian", "output": "⠠⠥⠅⠗â â ”â Šâ â " }, { "input": "Ukrainians", "output": "⠠⠥⠅⠗â â ”â Šâ â â Ž" }, { "input": "Ulster", "output": "⠠⠥⠇⠌⠻" }, { "input": "Ultrasuede", "output": "⠠⠥⠇⠞⠗â â Žâ ¥â «â ‘" }, { "input": "Ulyanovsk", "output": "⠠⠥⠇⠽â â â •â §â Žâ …" }, { "input": "Ulysses", "output": "⠠⠥⠇⠽⠎⠎⠑⠎" }, { "input": "Umbriel", "output": "â  â ¥â â ƒâ —â Šâ ‘â ‡" }, { "input": "Underwood", "output": "â  â â ¥â ºâ •â •â ™" }, { "input": "Ungava", "output": "â  â ¥â â ›â â §â " }, { "input": "Unicode", "output": "â  â ¥â â Šâ ‰â •⠙⠑" }, { "input": "Unilever", "output": "â  â ¥â â Šâ ‡â â ‘" }, { "input": "Union", "output": "â  â ¥â â Šâ •â " }, { "input": "Unions", "output": "â  â ¥â â Šâ •â â Ž" }, { "input": "Uniroyal", "output": "â  â ¥â â Šâ —â •â ½â â ‡" }, { "input": "Unitarian", "output": "â  â ¥â â Šâ žâ œâ Šâ â " }, { "input": "Unitarianism", "output": "â  â ¥â â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "Unitarianisms", "output": "â  â ¥â â Šâ žâ œâ Šâ â â Šâ Žâ â Ž" }, { "input": "Unitarians", "output": "â  â ¥â â Šâ žâ œâ Šâ â â Ž" }, { "input": "Unitas", "output": "â  â ¥â â Šâ žâ â Ž" }, { "input": "Unukalhai", "output": "â  â ¥â â ¥â …â â ‡â “â â Š" }, { "input": "Upanishads", "output": "â  â ¥â â â â Šâ ©â â ™â Ž" }, { "input": "Updike", "output": "â  â ¥â â ™â Šâ …â ‘" }, { "input": "Upjohn", "output": "â  â ¥â â šâ •â “â " }, { "input": "Upton", "output": "â  â ¥â â žâ •â " }, { "input": "Ur", "output": "⠠⠥⠗" }, { "input": "Ural", "output": "⠠⠥⠗â â ‡" }, { "input": "Urals", "output": "⠠⠥⠗â â ‡â Ž" }, { "input": "Urania", "output": "⠠⠥⠗â â â Šâ " }, { "input": "Uranus", "output": "⠠⠥⠗â â â ¥â Ž" }, { "input": "Urban", "output": "⠠⠥⠗⠃â â " }, { "input": "Urdu", "output": "⠠⠥⠗⠙⠥" }, { "input": "Urey", "output": "⠠⠥⠗⠑⠽" }, { "input": "Uriah", "output": "⠠⠥⠗⠊â â “" }, { "input": "Uriel", "output": "⠠⠥⠗⠊⠑⠇" }, { "input": "Uris", "output": "⠠⠥⠗⠊⠎" }, { "input": "Urquhart", "output": "⠠⠥⠗⠟⠥⠓⠜⠞" }, { "input": "Ursa", "output": "⠠⠥⠗⠎â " }, { "input": "Ursula", "output": "⠠⠥⠗⠎⠥⠇â " }, { "input": "Ursuline", "output": "⠠⠥⠗⠎⠥⠇⠔⠑" }, { "input": "Uruguay", "output": "⠠⠥⠗⠥⠛⠥â â ½" }, { "input": "Uruguayan", "output": "⠠⠥⠗⠥⠛⠥â â ½â â " }, { "input": "Uruguayans", "output": "⠠⠥⠗⠥⠛⠥â â ½â â â Ž" }, { "input": "Urumqi", "output": "⠠⠥⠗⠥â â Ÿâ Š" }, { "input": "Usenet", "output": "⠠⠥⠎⠢⠑⠞" }, { "input": "Ustinov", "output": "⠠⠥⠌⠔⠕⠧" }, { "input": "Utah", "output": "⠠⠥⠞â â “" }, { "input": "Ute", "output": "⠠⠥⠞⠑" }, { "input": "Utopia", "output": "⠠⠥⠞⠕â â Šâ " }, { "input": "Utopian", "output": "⠠⠥⠞⠕â â Šâ â " }, { "input": "Utopians", "output": "⠠⠥⠞⠕â â Šâ â â Ž" }, { "input": "Utopias", "output": "⠠⠥⠞⠕â â Šâ â Ž" }, { "input": "Utrecht", "output": "⠠⠥⠞⠗⠑⠡⠞" }, { "input": "Utrillo", "output": "⠠⠥⠞⠗⠊⠇⠇⠕" }, { "input": "Uzbek", "output": "⠠⠥⠵⠃⠑⠅" }, { "input": "Uzbekistan", "output": "⠠⠥⠵⠃⠑⠅⠊⠌â â " }, { "input": "Uzi", "output": "⠠⠥⠵⠊" }, { "input": "V", "output": "â °â  â §" }, { "input": "Va", "output": "â  â §â " }, { "input": "Vader", "output": "â  â §â â ™â »" }, { "input": "Vaduz", "output": "â  â §â â ™â ¥â µ" }, { "input": "Val", "output": "â  â §â â ‡" }, { "input": "Valarie", "output": "â  â §â â ‡â œâ Šâ ‘" }, { "input": "Valdez", "output": "â  â §â â ‡â ™â ‘â µ" }, { "input": "Valencia", "output": "â  â §â â ‡â ¢â ‰â Šâ " }, { "input": "Valenti", "output": "â  â §â â ‡â ¢â žâ Š" }, { "input": "Valentin", "output": "â  â §â â ‡â ¢â žâ ”" }, { "input": "Valentine", "output": "â  â §â â ‡â ¢â žâ ”â ‘" }, { "input": "Valentino", "output": "â  â §â â ‡â ¢â žâ ”â •" }, { "input": "Valenzuela", "output": "â  â §â â ‡â ¢â µâ ¥â ‘â ‡â " }, { "input": "Valeria", "output": "â  â §â â ‡â »â Šâ " }, { "input": "Valerian", "output": "â  â §â â ‡â »â Šâ â " }, { "input": "Valerie", "output": "â  â §â â ‡â »â Šâ ‘" }, { "input": "Valhalla", "output": "â  â §â â ‡â “â â ‡â ‡â " }, { "input": "Valium", "output": "â  â §â â ‡â Šâ ¥â " }, { "input": "Valiums", "output": "â  â §â â ‡â Šâ ¥â â Ž" }, { "input": "Valkyrie", "output": "â  â §â â ‡â …⠽⠗⠊⠑" }, { "input": "Valkyries", "output": "â  â §â â ‡â …⠽⠗⠊⠑⠎" }, { "input": "Valletta", "output": "â  â §â â ‡â ‡â ‘â žâ žâ " }, { "input": "Valois", "output": "â  â §â â ‡â •â Šâ Ž" }, { "input": "Valparaiso", "output": "â  â §â â ‡â â œâ â Šâ Žâ •" }, { "input": "Valvoline", "output": "â  â §â â ‡â §â •⠇⠔⠑" }, { "input": "Valéry", "output": "â  â §â â ‡â  â ˜â »â â ˜â ‰â —â ½" }, { "input": "Van", "output": "â  â §â â " }, { "input": "Vance", "output": "⠠⠧⠨⠑" }, { "input": "Vancouver", "output": "â  â §â â â ‰â ³â §â »" }, { "input": "Vandal", "output": "â  â §â ¯â â ‡" }, { "input": "Vanderbilt", "output": "⠠⠧⠯⠻⠃⠊⠇⠞" }, { "input": "Vandyke", "output": "⠠⠧⠯⠽⠅⠑" }, { "input": "Vanessa", "output": "â  â §â â °â Žâ " }, { "input": "Vang", "output": "â  â §â â â ›" }, { "input": "Vanuatu", "output": "â  â §â â â ¥â â žâ ¥" }, { "input": "Vanzetti", "output": "â  â §â â â µâ ‘â žâ žâ Š" }, { "input": "Varanasi", "output": "â  â §â œâ â â â Žâ Š" }, { "input": "Varese", "output": "⠠⠧⠜⠑⠎⠑" }, { "input": "Vargas", "output": "⠠⠧⠜⠛â â Ž" }, { "input": "Vaseline", "output": "â  â §â â Žâ ‘⠇⠔⠑" }, { "input": "Vaselines", "output": "â  â §â â Žâ ‘⠇⠔⠑⠎" }, { "input": "Vasquez", "output": "â  â §â â Žâ Ÿâ ¥â ‘â µ" }, { "input": "Vassar", "output": "â  â §â â Žâ Žâ œ" }, { "input": "Vatican", "output": "â  â §â â žâ Šâ ‰â â " }, { "input": "Vauban", "output": "â  â §â â ¥â ƒâ â " }, { "input": "Vaughan", "output": "â  â §â â ¥â £â â " }, { "input": "Vaughn", "output": "â  â §â â ¥â £â " }, { "input": "Vazquez", "output": "â  â §â â µâ Ÿâ ¥â ‘â µ" }, { "input": "Veblen", "output": "⠠⠧⠑⠃⠇⠢" }, { "input": "Veda", "output": "â  â §â «â " }, { "input": "Vedanta", "output": "â  â §â «â â â žâ " }, { "input": "Vedas", "output": "â  â §â «â â Ž" }, { "input": "Vega", "output": "â  â §â ‘â ›â " }, { "input": "Vegas", "output": "â  â §â ‘â ›â â Ž" }, { "input": "Vegemite", "output": "⠠⠧⠑⠛⠑â â Šâ žâ ‘" }, { "input": "Vela", "output": "â  â §â ‘â ‡â " }, { "input": "Velcro", "output": "⠠⠧⠑⠇⠉⠗⠕" }, { "input": "Velcros", "output": "⠠⠧⠑⠇⠉⠗⠕⠎" }, { "input": "Velez", "output": "⠠⠧⠑⠇⠑⠵" }, { "input": "Velma", "output": "â  â §â ‘â ‡â â " }, { "input": "Velveeta", "output": "⠠⠧⠑⠇⠧⠑⠑⠞â " }, { "input": "Velásquez", "output": "⠠⠧⠑⠇⠠⠘⠻â â ˜â °â –⠎⠟⠥⠑⠵" }, { "input": "Velázquez", "output": "⠠⠧⠑⠇⠠⠘⠻â â ˜â °â –⠵⠟⠥⠑⠵" }, { "input": "Venetian", "output": "⠠⠧⠢⠑⠞⠊â â " }, { "input": "Venetians", "output": "⠠⠧⠢⠑⠞⠊â â â Ž" }, { "input": "Venezuela", "output": "⠠⠧⠢⠑⠵⠥⠑⠇â " }, { "input": "Venezuelan", "output": "⠠⠧⠢⠑⠵⠥⠑⠇â â " }, { "input": "Venezuelans", "output": "⠠⠧⠢⠑⠵⠥⠑⠇â â â Ž" }, { "input": "Venice", "output": "⠠⠧⠢⠊⠉⠑" }, { "input": "Venn", "output": "â  â §â ¢â " }, { "input": "Ventolin", "output": "⠠⠧⠢⠞⠕⠇⠔" }, { "input": "Venus", "output": "⠠⠧⠢⠥⠎" }, { "input": "Venuses", "output": "⠠⠧⠢⠥⠎⠑⠎" }, { "input": "Venusian", "output": "⠠⠧⠢⠥⠎⠊â â " }, { "input": "Vera", "output": "â  â §â »â " }, { "input": "Veracruz", "output": "â  â §â »â â ‰â —⠥⠵" }, { "input": "Verde", "output": "⠠⠧⠻⠙⠑" }, { "input": "Verdi", "output": "⠠⠧⠻⠙⠊" }, { "input": "Verdun", "output": "⠠⠧⠻⠙⠥â " }, { "input": "Vergil", "output": "⠠⠧⠻⠛⠊⠇" }, { "input": "Verizon", "output": "⠠⠧⠻⠊⠵⠕â " }, { "input": "Verlaine", "output": "⠠⠧⠻⠇â â ”â ‘" }, { "input": "Vermeer", "output": "â  â §â »â â ‘â »" }, { "input": "Vermont", "output": "â  â §â »â â •â â ž" }, { "input": "Vermonter", "output": "â  â §â »â â •â â žâ »" }, { "input": "Vern", "output": "â  â §â »â " }, { "input": "Verna", "output": "â  â §â »â â " }, { "input": "Verne", "output": "â  â §â »â â ‘" }, { "input": "Vernon", "output": "â  â §â »â â •â " }, { "input": "Verona", "output": "⠠⠧⠻⠕â â " }, { "input": "Veronese", "output": "⠠⠧⠻⠕â â ‘â Žâ ‘" }, { "input": "Veronica", "output": "⠠⠧⠻⠕â â Šâ ‰â " }, { "input": "Versailles", "output": "⠠⠧⠻⠎â â Šâ ‡â ‡â ‘â Ž" }, { "input": "Vesalius", "output": "â  â §â ‘â Žâ â ‡â Šâ ¥â Ž" }, { "input": "Vespasian", "output": "â  â §â ‘â Žâ â â Žâ Šâ â " }, { "input": "Vespucci", "output": "â  â §â ‘â Žâ â ¥â ’â Š" }, { "input": "Vesta", "output": "â  â §â ‘â Œâ " }, { "input": "Vesuvius", "output": "⠠⠧⠑⠎⠥⠧⠊⠥⠎" }, { "input": "Viacom", "output": "â  â §â Šâ â ‰â •â " }, { "input": "Viagra", "output": "â  â §â Šâ â ›â —â " }, { "input": "Vic", "output": "â  â §â Šâ ‰" }, { "input": "Vicente", "output": "⠠⠧⠊⠉⠢⠞⠑" }, { "input": "Vichy", "output": "â  â §â Šâ ¡â ½" }, { "input": "Vicki", "output": "⠠⠧⠊⠉⠅⠊" }, { "input": "Vickie", "output": "⠠⠧⠊⠉⠅⠊⠑" }, { "input": "Vicksburg", "output": "⠠⠧⠊⠉⠅⠎⠃⠥⠗⠛" }, { "input": "Vicky", "output": "⠠⠧⠊⠉⠅⠽" }, { "input": "Victor", "output": "⠠⠧⠊⠉⠞⠕⠗" }, { "input": "Victoria", "output": "⠠⠧⠊⠉⠞⠕⠗⠊â " }, { "input": "Victorian", "output": "⠠⠧⠊⠉⠞⠕⠗⠊â â " }, { "input": "Victorians", "output": "⠠⠧⠊⠉⠞⠕⠗⠊â â â Ž" }, { "input": "Victrola", "output": "⠠⠧⠊⠉⠞⠗⠕⠇â " }, { "input": "Vidal", "output": "â  â §â Šâ ™â â ‡" }, { "input": "Vienna", "output": "â  â §â Šâ ¢â â " }, { "input": "Viennese", "output": "â  â §â Šâ ¢â â ‘â Žâ ‘" }, { "input": "Vientiane", "output": "⠠⠧⠊⠢⠞⠊â â â ‘" }, { "input": "Vietcong", "output": "⠠⠧⠊⠑⠞⠉⠰⠛" }, { "input": "Vietminh", "output": "â  â §â Šâ ‘â žâ â ”â “" }, { "input": "Vietnam", "output": "â  â §â Šâ ‘â žâ â â " }, { "input": "Vietnamese", "output": "â  â §â Šâ ‘â žâ â â â ‘â Žâ ‘" }, { "input": "Vijayanagar", "output": "â  â §â Šâ šâ â ½â â â â ›â œ" }, { "input": "Vijayawada", "output": "â  â §â Šâ šâ â ½â â ºâ â ™â " }, { "input": "Viking", "output": "â  â §â Šâ …â ¬" }, { "input": "Vikings", "output": "⠠⠧⠊⠅⠬⠎" }, { "input": "Vila", "output": "â  â §â Šâ ‡â " }, { "input": "Villa", "output": "⠠⠧⠊⠇⠇â " }, { "input": "Villarreal", "output": "⠠⠧⠊⠇⠇⠜⠗⠂⠇" }, { "input": "Villon", "output": "⠠⠧⠊⠇⠇⠕â " }, { "input": "Vilma", "output": "â  â §â Šâ ‡â â " }, { "input": "Vilnius", "output": "â  â §â Šâ ‡â â Šâ ¥â Ž" }, { "input": "Vilyui", "output": "⠠⠧⠊⠇⠽⠥⠊" }, { "input": "Vince", "output": "⠠⠧⠔⠉⠑" }, { "input": "Vincent", "output": "⠠⠧⠔⠉⠢⠞" }, { "input": "Vindemiatrix", "output": "⠠⠧⠔⠙⠑â â Šâ â žâ —â Šâ ­" }, { "input": "Vinson", "output": "⠠⠧⠔⠎⠕â " }, { "input": "Viola", "output": "â  â §â Šâ •â ‡â " }, { "input": "Violet", "output": "⠠⠧⠊⠕⠇⠑⠞" }, { "input": "Virgie", "output": "⠠⠧⠊⠗⠛⠊⠑" }, { "input": "Virgil", "output": "⠠⠧⠊⠗⠛⠊⠇" }, { "input": "Virginia", "output": "⠠⠧⠊⠗⠛⠔⠊â " }, { "input": "Virginian", "output": "⠠⠧⠊⠗⠛⠔⠊â â " }, { "input": "Virginians", "output": "⠠⠧⠊⠗⠛⠔⠊â â â Ž" }, { "input": "Virgo", "output": "⠠⠧⠊⠗⠛⠕" }, { "input": "Virgos", "output": "⠠⠧⠊⠗⠛⠕⠎" }, { "input": "Visa", "output": "â  â §â Šâ Žâ " }, { "input": "Visakhapatnam", "output": "â  â §â Šâ Žâ â …â “â â â â žâ â â " }, { "input": "Visayans", "output": "â  â §â Šâ Žâ â ½â â â Ž" }, { "input": "Vishnu", "output": "â  â §â Šâ ©â â ¥" }, { "input": "Visigoth", "output": "⠠⠧⠊⠎⠊⠛⠕⠹" }, { "input": "Vistula", "output": "⠠⠧⠊⠌⠥⠇â " }, { "input": "Vitim", "output": "â  â §â Šâ žâ Šâ " }, { "input": "Vito", "output": "â  â §â Šâ žâ •" }, { "input": "Vitus", "output": "⠠⠧⠊⠞⠥⠎" }, { "input": "Vivaldi", "output": "â  â §â Šâ §â â ‡â ™â Š" }, { "input": "Vivekananda", "output": "â  â §â Šâ §â ‘â …â â â ¯â " }, { "input": "Vivian", "output": "â  â §â Šâ §â Šâ â " }, { "input": "Vivienne", "output": "â  â §â Šâ §â Šâ ¢â â ‘" }, { "input": "Vlad", "output": "â  â §â ‡â â ™" }, { "input": "Vladimir", "output": "â  â §â ‡â â ™â Šâ â Šâ —" }, { "input": "Vladivostok", "output": "â  â §â ‡â â ™â Šâ §â •⠌⠕⠅" }, { "input": "Vlaminck", "output": "â  â §â ‡â â â ”⠉⠅" }, { "input": "Vlasic", "output": "â  â §â ‡â â Žâ Šâ ‰" }, { "input": "Vogue", "output": "⠠⠧⠕⠛⠥⠑" }, { "input": "Volcker", "output": "⠠⠧⠕⠇⠉⠅⠻" }, { "input": "Voldemort", "output": "⠠⠧⠕⠇⠙⠑â â •â —â ž" }, { "input": "Volga", "output": "⠠⠧⠕⠇⠛â " }, { "input": "Volgograd", "output": "⠠⠧⠕⠇⠛⠕⠛⠗â â ™" }, { "input": "Volkswagen", "output": "⠠⠧⠕⠇⠅⠎⠺â â ›â ¢" }, { "input": "Volstead", "output": "⠠⠧⠕⠇⠌⠂⠙" }, { "input": "Volta", "output": "⠠⠧⠕⠇⠞â " }, { "input": "Voltaire", "output": "⠠⠧⠕⠇⠞â â Šâ —â ‘" }, { "input": "Volvo", "output": "⠠⠧⠕⠇⠧⠕" }, { "input": "Vonda", "output": "â  â §â •â â ™â " }, { "input": "Vonnegut", "output": "â  â §â •â â â ‘⠛⠥⠞" }, { "input": "Voronezh", "output": "â  â §â •â —â â •⠵⠓" }, { "input": "Vorster", "output": "⠠⠧⠕⠗⠌⠻" }, { "input": "Voyager", "output": "â  â §â •â ½â â ›â »" }, { "input": "Vuitton", "output": "⠠⠧⠥⠊⠞⠞⠕â " }, { "input": "Vulcan", "output": "⠠⠧⠥⠇⠉â â " }, { "input": "Vulgate", "output": "⠠⠧⠥⠇⠛â â žâ ‘" }, { "input": "Vulgates", "output": "⠠⠧⠥⠇⠛â â žâ ‘â Ž" }, { "input": "W", "output": "â °â  â º" }, { "input": "Wabash", "output": "â  â ºâ â ƒâ â ©" }, { "input": "Wac", "output": "â  â ºâ â ‰" }, { "input": "Waco", "output": "â  â ºâ â ‰â •" }, { "input": "Wade", "output": "â  â ºâ â ™â ‘" }, { "input": "Wagner", "output": "â  â ºâ â ›â â »" }, { "input": "Wagnerian", "output": "â  â ºâ â ›â â »â Šâ â " }, { "input": "Wahhabi", "output": "â  â ºâ â “â “â â ƒâ Š" }, { "input": "Waikiki", "output": "â  â ºâ â Šâ …â Šâ …â Š" }, { "input": "Waite", "output": "â  â ºâ â Šâ žâ ‘" }, { "input": "Wake", "output": "â  â ºâ â …â ‘" }, { "input": "Waksman", "output": "â  â ºâ â …â Žâ â â " }, { "input": "Wald", "output": "â  â ºâ â ‡â ™" }, { "input": "Waldemar", "output": "â  â ºâ â ‡â ™â ‘â â œ" }, { "input": "Walden", "output": "â  â ºâ â ‡â ™â ¢" }, { "input": "Waldensian", "output": "â  â ºâ â ‡â ™â ¢â Žâ Šâ â " }, { "input": "Waldheim", "output": "â  â ºâ â ‡â ™â “â ‘â Šâ " }, { "input": "Waldo", "output": "â  â ºâ â ‡â ™â •" }, { "input": "Waldorf", "output": "â  â ºâ â ‡â ™â •â —â ‹" }, { "input": "Wales", "output": "â  â ºâ â ‡â ‘â Ž" }, { "input": "Walesa", "output": "â  â ºâ â ‡â ‘â Žâ " }, { "input": "Walgreen", "output": "â  â ºâ â ‡â ›â —â ‘â ¢" }, { "input": "Walker", "output": "â  â ºâ â ‡â …â »" }, { "input": "Walkman", "output": "â  â ºâ â ‡â …â â â " }, { "input": "Wall", "output": "â  â ºâ â ‡â ‡" }, { "input": "Wallace", "output": "â  â ºâ â ‡â ‡â â ‰â ‘" }, { "input": "Wallenstein", "output": "â  â ºâ â ‡â ‡â ¢â Œâ ‘â ”" }, { "input": "Waller", "output": "â  â ºâ â ‡â ‡â »" }, { "input": "Wallis", "output": "â  â ºâ â ‡â ‡â Šâ Ž" }, { "input": "Walloon", "output": "â  â ºâ â ‡â ‡â •â •â " }, { "input": "Walls", "output": "â  â ºâ â ‡â ‡â Ž" }, { "input": "Walmart", "output": "â  â ºâ â ‡â â œâ ž" }, { "input": "Walpole", "output": "â  â ºâ â ‡â â •⠇⠑" }, { "input": "Walpurgisnacht", "output": "â  â ºâ â ‡â â ¥â —⠛⠊⠎â â â ¡â ž" }, { "input": "Walsh", "output": "â  â ºâ â ‡â ©" }, { "input": "Walt", "output": "â  â ºâ â ‡â ž" }, { "input": "Walter", "output": "â  â ºâ â ‡â žâ »" }, { "input": "Walters", "output": "â  â ºâ â ‡â žâ »â Ž" }, { "input": "Walton", "output": "â  â ºâ â ‡â žâ •â " }, { "input": "Wanamaker", "output": "â  â ºâ â â â â â …â »" }, { "input": "Wanda", "output": "⠠⠺⠯â " }, { "input": "Wang", "output": "â  â ºâ â â ›" }, { "input": "Wankel", "output": "â  â ºâ â â …â ‘â ‡" }, { "input": "Ward", "output": "⠠⠺⠜⠙" }, { "input": "Ware", "output": "⠠⠺⠜⠑" }, { "input": "Warhol", "output": "⠠⠺⠜⠓⠕⠇" }, { "input": "Waring", "output": "⠠⠺⠜⠬" }, { "input": "Warner", "output": "⠠⠺⠜â â »" }, { "input": "Warren", "output": "⠠⠺⠜⠗⠢" }, { "input": "Warsaw", "output": "⠠⠺⠜⠎â â º" }, { "input": "Warwick", "output": "⠠⠺⠜⠺⠊⠉⠅" }, { "input": "Wasatch", "output": "â  â ºâ â Žâ â žâ ¡" }, { "input": "Wash", "output": "â  â ºâ â ©" }, { "input": "Washington", "output": "â  â ºâ â ©â ¬â žâ •â " }, { "input": "Washingtonian", "output": "â  â ºâ â ©â ¬â žâ •â â Šâ â " }, { "input": "Washingtonians", "output": "â  â ºâ â ©â ¬â žâ •â â Šâ â â Ž" }, { "input": "Wasp", "output": "â  â ºâ â Žâ " }, { "input": "Wassermann", "output": "â  â ºâ â Žâ Žâ »â â â â " }, { "input": "Waterbury", "output": "â  â ºâ â žâ »â ƒâ ¥â —â ½" }, { "input": "Waterford", "output": "â  â ºâ â žâ »â ¿â ™" }, { "input": "Watergate", "output": "â  â ºâ â žâ »â ›â â žâ ‘" }, { "input": "Waterloo", "output": "â  â ºâ â žâ »â ‡â •â •" }, { "input": "Waterloos", "output": "â  â ºâ â žâ »â ‡â •â •â Ž" }, { "input": "Waters", "output": "â  â ºâ â žâ »â Ž" }, { "input": "Watkins", "output": "â  â ºâ â žâ …⠔⠎" }, { "input": "Watson", "output": "â  â ºâ â žâ Žâ •â " }, { "input": "Watt", "output": "â  â ºâ â žâ ž" }, { "input": "Watteau", "output": "â  â ºâ â žâ žâ ‚â ¥" }, { "input": "Watts", "output": "â  â ºâ â žâ žâ Ž" }, { "input": "Watusi", "output": "â  â ºâ â žâ ¥â Žâ Š" }, { "input": "Waugh", "output": "â  â ºâ â ¥â £" }, { "input": "Wayne", "output": "â  â ºâ â ½â â ‘" }, { "input": "Weaver", "output": "⠠⠺⠂⠧⠻" }, { "input": "Webb", "output": "⠠⠺⠑⠃⠃" }, { "input": "Weber", "output": "⠠⠺⠑⠃⠻" }, { "input": "Webern", "output": "⠠⠺⠑⠃⠻â " }, { "input": "Webster", "output": "⠠⠺⠑⠃⠌⠻" }, { "input": "Websters", "output": "⠠⠺⠑⠃⠌⠻⠎" }, { "input": "Wed", "output": "⠠⠺⠫" }, { "input": "Weddell", "output": "⠠⠺⠫⠙⠑⠇⠇" }, { "input": "Wedgwood", "output": "⠠⠺⠫⠛⠺⠕⠕⠙" }, { "input": "Wednesday", "output": "⠠⠺⠫â â ‘â Žâ â ™" }, { "input": "Wednesdays", "output": "⠠⠺⠫â â ‘â Žâ â ™â Ž" }, { "input": "Weeks", "output": "⠠⠺⠑⠑⠅⠎" }, { "input": "Wehrmacht", "output": "⠠⠺⠑⠓⠗â â â ¡â ž" }, { "input": "Wei", "output": "⠠⠺⠑⠊" }, { "input": "Weierstrass", "output": "⠠⠺⠑⠊⠻⠌⠗â â Žâ Ž" }, { "input": "Weill", "output": "⠠⠺⠑⠊⠇⠇" }, { "input": "Weinberg", "output": "⠠⠺⠑⠔⠃⠻⠛" }, { "input": "Weiss", "output": "⠠⠺⠑⠊⠎⠎" }, { "input": "Weissmuller", "output": "⠠⠺⠑⠊⠎⠎â â ¥â ‡â ‡â »" }, { "input": "Weizmann", "output": "⠠⠺⠑⠊⠵â â â â " }, { "input": "Welch", "output": "⠠⠺⠑⠇⠡" }, { "input": "Weldon", "output": "⠠⠺⠑⠇⠙⠕â " }, { "input": "Welland", "output": "⠠⠺⠑⠇⠇⠯" }, { "input": "Weller", "output": "⠠⠺⠑⠇⠇⠻" }, { "input": "Welles", "output": "⠠⠺⠑⠇⠇⠑⠎" }, { "input": "Wellington", "output": "⠠⠺⠑⠇⠇⠬⠞⠕â " }, { "input": "Wellingtons", "output": "⠠⠺⠑⠇⠇⠬⠞⠕â â Ž" }, { "input": "Wells", "output": "⠠⠺⠑⠇⠇⠎" }, { "input": "Welsh", "output": "⠠⠺⠑⠇⠩" }, { "input": "Welshman", "output": "⠠⠺⠑⠇⠩â â â " }, { "input": "Welshmen", "output": "⠠⠺⠑⠇⠩â â ¢" }, { "input": "Wendell", "output": "⠠⠺⠢⠙⠑⠇⠇" }, { "input": "Wendi", "output": "⠠⠺⠢⠙⠊" }, { "input": "Wendy", "output": "⠠⠺⠢⠙⠽" }, { "input": "Wesak", "output": "⠠⠺⠑⠎â â …" }, { "input": "Wesley", "output": "⠠⠺⠑⠎⠇⠑⠽" }, { "input": "Wesleyan", "output": "⠠⠺⠑⠎⠇⠑⠽â â " }, { "input": "Wessex", "output": "⠠⠺⠑⠎⠎⠑⠭" }, { "input": "Wesson", "output": "⠠⠺⠑⠎⠎⠕â " }, { "input": "West", "output": "⠠⠺⠑⠌" }, { "input": "Western", "output": "⠠⠺⠑⠌⠻â " }, { "input": "Westerner", "output": "⠠⠺⠑⠌⠻â â »" }, { "input": "Westerns", "output": "⠠⠺⠑⠌⠻â â Ž" }, { "input": "Westinghouse", "output": "⠠⠺⠑⠌⠬⠓⠳⠎⠑" }, { "input": "Westminster", "output": "⠠⠺⠑⠌â â ”⠌⠻" }, { "input": "Weston", "output": "⠠⠺⠑⠌⠕â " }, { "input": "Westphalia", "output": "⠠⠺⠑⠌â â “â â ‡â Šâ " }, { "input": "Wests", "output": "⠠⠺⠑⠌⠎" }, { "input": "Weyden", "output": "⠠⠺⠑⠽⠙⠢" }, { "input": "Wezen", "output": "⠠⠺⠑⠵⠢" }, { "input": "Wharton", "output": "⠠⠱⠜⠞⠕â " }, { "input": "Wheaties", "output": "⠠⠱⠂⠞⠊⠑⠎" }, { "input": "Wheatstone", "output": "⠠⠱⠂⠞⠌â â •" }, { "input": "Wheeler", "output": "⠠⠱⠑⠑⠇⠻" }, { "input": "Wheeling", "output": "⠠⠱⠑⠑⠇⠬" }, { "input": "Whig", "output": "⠠⠱⠊⠛" }, { "input": "Whigs", "output": "⠠⠱⠊⠛⠎" }, { "input": "Whipple", "output": "⠠⠱⠊â â â ‡â ‘" }, { "input": "Whirlpool", "output": "⠠⠱⠊⠗⠇â â •â •â ‡" }, { "input": "Whistler", "output": "⠠⠱⠊⠌⠇⠻" }, { "input": "Whitaker", "output": "⠠⠱⠊⠞â â …â »" }, { "input": "White", "output": "⠠⠱⠊⠞⠑" }, { "input": "Whitefield", "output": "⠠⠱⠊⠞⠑⠋⠊⠑⠇⠙" }, { "input": "Whitehall", "output": "⠠⠱⠊⠞⠑⠓â â ‡â ‡" }, { "input": "Whitehead", "output": "⠠⠱⠊⠞⠑⠓⠂⠙" }, { "input": "Whitehorse", "output": "⠠⠱⠊⠞⠑⠓⠕⠗⠎⠑" }, { "input": "Whiteley", "output": "⠠⠱⠊⠞⠑⠇⠑⠽" }, { "input": "Whites", "output": "⠠⠱⠊⠞⠑⠎" }, { "input": "Whitfield", "output": "⠠⠱⠊⠞⠋⠊⠑⠇⠙" }, { "input": "Whitley", "output": "⠠⠱⠊⠞⠇⠑⠽" }, { "input": "Whitman", "output": "⠠⠱⠊⠞â â â " }, { "input": "Whitney", "output": "⠠⠱⠊⠞â â ‘â ½" }, { "input": "Whitsunday", "output": "⠠⠱⠊⠞⠎⠥â â â ™" }, { "input": "Whitsundays", "output": "⠠⠱⠊⠞⠎⠥â â â ™â Ž" }, { "input": "Whittier", "output": "⠠⠱⠊⠞⠞⠊⠻" }, { "input": "Wicca", "output": "⠠⠺⠊⠒â " }, { "input": "Wichita", "output": "⠠⠺⠊⠡⠊⠞â " }, { "input": "Wiemar", "output": "⠠⠺⠊⠑â â œ" }, { "input": "Wiesel", "output": "⠠⠺⠊⠑⠎⠑⠇" }, { "input": "Wiesenthal", "output": "⠠⠺⠊⠑⠎⠢⠹â â ‡" }, { "input": "Wiggins", "output": "⠠⠺⠊⠶⠔⠎" }, { "input": "Wigner", "output": "⠠⠺⠊⠛â â »" }, { "input": "Wii", "output": "⠠⠺⠊⠊" }, { "input": "Wikipedia", "output": "⠠⠺⠊⠅⠊â â «â Šâ " }, { "input": "Wilberforce", "output": "⠠⠺⠊⠇⠃⠻⠿⠉⠑" }, { "input": "Wilbert", "output": "⠠⠺⠊⠇⠃⠻⠞" }, { "input": "Wilbur", "output": "⠠⠺⠊⠇⠃⠥⠗" }, { "input": "Wilburn", "output": "⠠⠺⠊⠇⠃⠥⠗â " }, { "input": "Wilcox", "output": "⠠⠺⠊⠇⠉⠕⠭" }, { "input": "Wilda", "output": "⠠⠺⠊⠇⠙â " }, { "input": "Wilde", "output": "⠠⠺⠊⠇⠙⠑" }, { "input": "Wilder", "output": "⠠⠺⠊⠇⠙⠻" }, { "input": "Wiles", "output": "⠠⠺⠊⠇⠑⠎" }, { "input": "Wiley", "output": "⠠⠺⠊⠇⠑⠽" }, { "input": "Wilford", "output": "⠠⠺⠊⠇⠿⠙" }, { "input": "Wilfred", "output": "⠠⠺⠊⠇⠋⠗⠫" }, { "input": "Wilfredo", "output": "⠠⠺⠊⠇⠋⠗⠫⠕" }, { "input": "Wilhelm", "output": "⠠⠺⠊⠇⠓⠑⠇â " }, { "input": "Wilhelmina", "output": "⠠⠺⠊⠇⠓⠑⠇â â ”â " }, { "input": "Wilkerson", "output": "⠠⠺⠊⠇⠅⠻⠎⠕â " }, { "input": "Wilkes", "output": "⠠⠺⠊⠇⠅⠑⠎" }, { "input": "Wilkins", "output": "⠠⠺⠊⠇⠅⠔⠎" }, { "input": "Wilkinson", "output": "⠠⠺⠊⠇⠅⠔⠎⠕â " }, { "input": "Will", "output": "â  â º" }, { "input": "Willa", "output": "⠠⠺⠊⠇⠇â " }, { "input": "Willamette", "output": "⠠⠺⠊⠇⠇â â â ‘â žâ žâ ‘" }, { "input": "Willard", "output": "⠠⠺⠊⠇⠇⠜⠙" }, { "input": "Willemstad", "output": "⠠⠺⠊⠇⠇⠑â â Œâ â ™" }, { "input": "William", "output": "⠠⠺⠊⠇⠇⠊â â " }, { "input": "Williams", "output": "⠠⠺⠊⠇⠇⠊â â â Ž" }, { "input": "Williamson", "output": "⠠⠺⠊⠇⠇⠊â â â Žâ •â " }, { "input": "Willie", "output": "⠠⠺⠊⠇⠇⠊⠑" }, { "input": "Willis", "output": "⠠⠺⠊⠇⠇⠊⠎" }, { "input": "Willy", "output": "⠠⠺⠊⠇⠇⠽" }, { "input": "Wilma", "output": "⠠⠺⠊⠇â â " }, { "input": "Wilmer", "output": "⠠⠺⠊⠇â â »" }, { "input": "Wilmington", "output": "⠠⠺⠊⠇â â ¬â žâ •â " }, { "input": "Wilson", "output": "⠠⠺⠊⠇⠎⠕â " }, { "input": "Wilsonian", "output": "⠠⠺⠊⠇⠎⠕â â Šâ â " }, { "input": "Wilton", "output": "⠠⠺⠊⠇⠞⠕â " }, { "input": "Wimbledon", "output": "⠠⠺⠊â â ƒâ ‡â «â •â " }, { "input": "Wimsey", "output": "⠠⠺⠊â â Žâ ‘â ½" }, { "input": "Winchell", "output": "⠠⠺⠔⠡⠑⠇⠇" }, { "input": "Winchester", "output": "⠠⠺⠔⠡⠑⠌⠻" }, { "input": "Windbreaker", "output": "⠠⠺⠔⠙⠃⠗⠂⠅⠻" }, { "input": "Windex", "output": "⠠⠺⠔⠙⠑⠭" }, { "input": "Windhoek", "output": "⠠⠺⠔⠙⠓⠕⠑⠅" }, { "input": "Windows", "output": "⠠⠺⠔⠙⠪⠎" }, { "input": "Windsor", "output": "⠠⠺⠔⠙⠎⠕⠗" }, { "input": "Windsors", "output": "⠠⠺⠔⠙⠎⠕⠗⠎" }, { "input": "Windward", "output": "⠠⠺⠔⠙⠺⠜⠙" }, { "input": "Winesap", "output": "⠠⠺⠔⠑⠎â â " }, { "input": "Winfred", "output": "⠠⠺⠔⠋⠗⠫" }, { "input": "Winfrey", "output": "⠠⠺⠔⠋⠗⠑⠽" }, { "input": "Winifred", "output": "⠠⠺⠔⠊⠋⠗⠫" }, { "input": "Winkle", "output": "⠠⠺⠔⠅⠇⠑" }, { "input": "Winnebago", "output": "⠠⠺⠔â â ‘â ƒâ â ›â •" }, { "input": "Winnie", "output": "⠠⠺⠔â â Šâ ‘" }, { "input": "Winnipeg", "output": "⠠⠺⠔â â Šâ â ‘â ›" }, { "input": "Winston", "output": "⠠⠺⠔⠌⠕â " }, { "input": "Winters", "output": "⠠⠺⠔⠞⠻⠎" }, { "input": "Winthrop", "output": "⠠⠺⠔⠹⠗⠕â " }, { "input": "Wis", "output": "⠠⠺⠊⠎" }, { "input": "Wisconsin", "output": "⠠⠺⠊⠎⠉⠕â â Žâ ”" }, { "input": "Wisconsinite", "output": "⠠⠺⠊⠎⠉⠕â â Žâ ”â Šâ žâ ‘" }, { "input": "Wisconsinites", "output": "⠠⠺⠊⠎⠉⠕â â Žâ ”â Šâ žâ ‘â Ž" }, { "input": "Wise", "output": "⠠⠺⠊⠎⠑" }, { "input": "Witt", "output": "⠠⠺⠊⠞⠞" }, { "input": "Wittgenstein", "output": "⠠⠺⠊⠞⠞⠛⠢⠌⠑⠔" }, { "input": "Witwatersrand", "output": "⠠⠺⠊⠞⠺â â žâ »â Žâ —â ¯" }, { "input": "Wm", "output": "â  â ºâ " }, { "input": "Wobegon", "output": "⠠⠺⠕⠃⠑⠛⠕â " }, { "input": "Wodehouse", "output": "⠠⠺⠕⠙⠑⠓⠳⠎⠑" }, { "input": "Wolf", "output": "⠠⠺⠕⠇⠋" }, { "input": "Wolfe", "output": "⠠⠺⠕⠇⠋⠑" }, { "input": "Wolff", "output": "⠠⠺⠕⠇⠋⠋" }, { "input": "Wolfgang", "output": "⠠⠺⠕⠇⠋⠛â â â ›" }, { "input": "Wollongong", "output": "⠠⠺⠕⠇⠇⠕â â ›â °â ›" }, { "input": "Wollstonecraft", "output": "⠠⠺⠕⠇⠇⠌â â •⠉⠗â â ‹â ž" }, { "input": "Wolsey", "output": "⠠⠺⠕⠇⠎⠑⠽" }, { "input": "Wonder", "output": "⠠⠺⠕â â ™â »" }, { "input": "Wonderbra", "output": "⠠⠺⠕â â ™â »â ƒâ —â " }, { "input": "Wong", "output": "⠠⠺⠰⠛" }, { "input": "Wood", "output": "⠠⠺⠕⠕⠙" }, { "input": "Woodard", "output": "⠠⠺⠕⠕⠙⠜⠙" }, { "input": "Woodhull", "output": "⠠⠺⠕⠕⠙⠓⠥⠇⠇" }, { "input": "Woodrow", "output": "⠠⠺⠕⠕⠙⠗⠪" }, { "input": "Woods", "output": "⠠⠺⠕⠕⠙⠎" }, { "input": "Woodstock", "output": "⠠⠺⠕⠕⠙⠌⠕⠉⠅" }, { "input": "Woodward", "output": "⠠⠺⠕⠕⠙⠺⠜⠙" }, { "input": "Woolf", "output": "⠠⠺⠕⠕⠇⠋" }, { "input": "Woolite", "output": "⠠⠺⠕⠕⠇⠊⠞⠑" }, { "input": "Woolongong", "output": "⠠⠺⠕⠕⠇⠕â â ›â °â ›" }, { "input": "Woolworth", "output": "⠠⠺⠕⠕⠇⠺⠕⠗⠹" }, { "input": "Wooster", "output": "⠠⠺⠕⠕⠌⠻" }, { "input": "Wooten", "output": "⠠⠺⠕⠕⠞⠢" }, { "input": "Worcester", "output": "⠠⠺⠕⠗⠉⠑⠌⠻" }, { "input": "Worcesters", "output": "⠠⠺⠕⠗⠉⠑⠌⠻⠎" }, { "input": "Worcestershire", "output": "⠠⠺⠕⠗⠉⠑⠌⠻⠩⠊⠗⠑" }, { "input": "Wordsworth", "output": "⠠⠘⠺⠎⠺⠕⠗⠹" }, { "input": "Workman", "output": "â  â â ºâ â â " }, { "input": "Worms", "output": "⠠⠺⠕⠗â â Ž" }, { "input": "Wotan", "output": "⠠⠺⠕⠞â â " }, { "input": "Wovoka", "output": "⠠⠺⠕⠧⠕⠅â " }, { "input": "Wozniak", "output": "⠠⠺⠕⠵â â Šâ â …" }, { "input": "Wozzeck", "output": "⠠⠺⠕⠵⠵⠑⠉⠅" }, { "input": "Wrangell", "output": "⠠⠺⠗â â â ›â ‘⠇⠇" }, { "input": "Wren", "output": "⠠⠺⠗⠢" }, { "input": "Wright", "output": "â  â ºâ â —" }, { "input": "Wrigley", "output": "⠠⠺⠗⠊⠛⠇⠑⠽" }, { "input": "Wroclaw", "output": "⠠⠺⠗⠕⠉⠇â â º" }, { "input": "Wu", "output": "⠠⠺⠥" }, { "input": "Wuhan", "output": "⠠⠺⠥⠓â â " }, { "input": "Wurlitzer", "output": "⠠⠺⠥⠗⠇⠊⠞⠵⠻" }, { "input": "Wyatt", "output": "⠠⠺⠽â â žâ ž" }, { "input": "Wycherley", "output": "⠠⠺⠽⠡⠻⠇⠑⠽" }, { "input": "Wycliffe", "output": "⠠⠺⠽⠉⠇⠊⠖⠑" }, { "input": "Wyeth", "output": "⠠⠺⠽⠑⠹" }, { "input": "Wylie", "output": "⠠⠺⠽⠇⠊⠑" }, { "input": "Wynn", "output": "⠠⠺⠽â â " }, { "input": "Wyo", "output": "⠠⠺⠽⠕" }, { "input": "Wyoming", "output": "⠠⠺⠽⠕â â ¬" }, { "input": "Wyomingite", "output": "⠠⠺⠽⠕â â ¬â Šâ žâ ‘" }, { "input": "Wyomingites", "output": "⠠⠺⠽⠕â â ¬â Šâ žâ ‘â Ž" }, { "input": "X", "output": "â °â  â ­" }, { "input": "XEmacs", "output": "â  â  â ­â ‘â  â „â â â ‰â Ž" }, { "input": "Xanadu", "output": "â  â ­â â â â ™â ¥" }, { "input": "Xanthippe", "output": "â  â ­â â â ¹â Šâ â â ‘" }, { "input": "Xavier", "output": "â  â ­â â §â Šâ »" }, { "input": "Xe", "output": "â  â ­â ‘" }, { "input": "Xenakis", "output": "â  â ­â ¢â â …â Šâ Ž" }, { "input": "Xenia", "output": "⠠⠭⠢⠊â " }, { "input": "Xenophon", "output": "⠠⠭⠢⠕â â “â •â " }, { "input": "Xerox", "output": "⠠⠭⠻⠕⠭" }, { "input": "Xeroxes", "output": "⠠⠭⠻⠕⠭⠑⠎" }, { "input": "Xerxes", "output": "⠠⠭⠻⠭⠑⠎" }, { "input": "Xhosa", "output": "â  â ­â “â •â Žâ " }, { "input": "Xiaoping", "output": "â  â ­â Šâ â •â â ¬" }, { "input": "Ximenes", "output": "â  â ­â Šâ â ¢â ‘â Ž" }, { "input": "Xingu", "output": "⠠⠭⠬⠥" }, { "input": "Xiongnu", "output": "â  â ­â Šâ °â ›â â ¥" }, { "input": "Xmas", "output": "â  â ­â â â Ž" }, { "input": "Xmases", "output": "â  â ­â â â Žâ ‘â Ž" }, { "input": "Xochipilli", "output": "â  â ­â •â ¡â Šâ â Šâ ‡â ‡â Š" }, { "input": "Xuzhou", "output": "⠠⠭⠥⠵⠓⠳" }, { "input": "Y", "output": "â °â  â ½" }, { "input": "Yacc", "output": "â  â ½â â ‰â ‰" }, { "input": "Yahoo", "output": "â  â ½â â “â •â •" }, { "input": "Yahtzee", "output": "â  â ½â â “⠞⠵⠑⠑" }, { "input": "Yahweh", "output": "â  â ½â â “⠺⠑⠓" }, { "input": "Yakima", "output": "â  â ½â â …â Šâ â " }, { "input": "Yakut", "output": "â  â ½â â …⠥⠞" }, { "input": "Yakutsk", "output": "â  â ½â â …⠥⠞⠎⠅" }, { "input": "Yale", "output": "â  â ½â â ‡â ‘" }, { "input": "Yalow", "output": "â  â ½â â ‡â ª" }, { "input": "Yalta", "output": "â  â ½â â ‡â žâ " }, { "input": "Yalu", "output": "â  â ½â â ‡â ¥" }, { "input": "Yamagata", "output": "â  â ½â â â â ›â â žâ " }, { "input": "Yamaha", "output": "â  â ½â â â â “â " }, { "input": "Yamoussoukro", "output": "â  â ½â â â ³â Žâ Žâ ³â …â —â •" }, { "input": "Yang", "output": "â  â ½â â â ›" }, { "input": "Yangon", "output": "â  â ½â â â ›â •â " }, { "input": "Yangtze", "output": "â  â ½â â â ›â žâ µâ ‘" }, { "input": "Yank", "output": "â  â ½â â â …" }, { "input": "Yankee", "output": "â  â ½â â â …â ‘â ‘" }, { "input": "Yankees", "output": "â  â ½â â â …â ‘â ‘â Ž" }, { "input": "Yanks", "output": "â  â ½â â â …â Ž" }, { "input": "Yaobang", "output": "â  â ½â â •â ƒâ â â ›" }, { "input": "Yaounde", "output": "â  â ½â â ¨â ™â ‘" }, { "input": "Yaqui", "output": "â  â ½â â Ÿâ ¥â Š" }, { "input": "Yaroslavl", "output": "⠠⠽⠜⠕⠎⠇â â §â ‡" }, { "input": "Yataro", "output": "â  â ½â â žâ œâ •" }, { "input": "Yates", "output": "â  â ½â â žâ ‘â Ž" }, { "input": "Yb", "output": "⠠⠽⠃" }, { "input": "Yeager", "output": "⠠⠽⠂⠛⠻" }, { "input": "Yeats", "output": "⠠⠽⠂⠞⠎" }, { "input": "Yekaterinburg", "output": "⠠⠽⠑⠅â â žâ »â ”⠃⠥⠗⠛" }, { "input": "Yellowknife", "output": "⠠⠽⠑⠇⠇⠪⠅â â Šâ ‹â ‘" }, { "input": "Yellowstone", "output": "⠠⠽⠑⠇⠇⠪⠌â â •" }, { "input": "Yeltsin", "output": "⠠⠽⠑⠇⠞⠎⠔" }, { "input": "Yemen", "output": "⠠⠽⠑â â ¢" }, { "input": "Yemeni", "output": "⠠⠽⠑â â ¢â Š" }, { "input": "Yemenis", "output": "⠠⠽⠑â â ¢â Šâ Ž" }, { "input": "Yenisei", "output": "⠠⠽⠢⠊⠎⠑⠊" }, { "input": "Yerevan", "output": "⠠⠽⠻⠑⠧â â " }, { "input": "Yerkes", "output": "⠠⠽⠻⠅⠑⠎" }, { "input": "Yesenia", "output": "⠠⠽⠑⠎⠢⠊â " }, { "input": "Yevtushenko", "output": "⠠⠽⠑⠧⠞⠥⠩⠢⠅⠕" }, { "input": "Yggdrasil", "output": "⠠⠽⠶⠙⠗â â Žâ Šâ ‡" }, { "input": "Yiddish", "output": "⠠⠽⠊⠙⠙⠊⠩" }, { "input": "Ymir", "output": "â  â ½â â Šâ —" }, { "input": "Yoda", "output": "⠠⠽⠕⠙â " }, { "input": "Yoknapatawpha", "output": "⠠⠽⠕⠅â â â â â žâ â ºâ â “â " }, { "input": "Yoko", "output": "⠠⠽⠕⠅⠕" }, { "input": "Yokohama", "output": "⠠⠽⠕⠅⠕⠓â â â " }, { "input": "Yolanda", "output": "⠠⠽⠕⠇⠯â " }, { "input": "Yong", "output": "⠠⠽⠰⠛" }, { "input": "Yonkers", "output": "⠠⠽⠕â â …⠻⠎" }, { "input": "York", "output": "⠠⠽⠕⠗⠅" }, { "input": "Yorkie", "output": "⠠⠽⠕⠗⠅⠊⠑" }, { "input": "Yorkshire", "output": "⠠⠽⠕⠗⠅⠩⠊⠗⠑" }, { "input": "Yorktown", "output": "⠠⠽⠕⠗⠅⠞⠪â " }, { "input": "Yoruba", "output": "⠠⠽⠕⠗⠥⠃â " }, { "input": "Yosemite", "output": "⠠⠽⠕⠎⠑â â Šâ žâ ‘" }, { "input": "Yossarian", "output": "⠠⠽⠕⠎⠎⠜⠊â â " }, { "input": "YouTube", "output": "⠠⠽⠳⠠⠞⠥⠃⠑" }, { "input": "Young", "output": "â  â â ½" }, { "input": "Youngstown", "output": "â  â â ½â Žâ žâ ªâ " }, { "input": "Ypres", "output": "â  â ½â â —â ‘â Ž" }, { "input": "Ypsilanti", "output": "â  â ½â â Žâ Šâ ‡â â â žâ Š" }, { "input": "Yuan", "output": "⠠⠽⠥â â " }, { "input": "Yucatan", "output": "⠠⠽⠥⠉â â žâ â " }, { "input": "Yugo", "output": "⠠⠽⠥⠛⠕" }, { "input": "Yugoslav", "output": "⠠⠽⠥⠛⠕⠎⠇â â §" }, { "input": "Yugoslavia", "output": "⠠⠽⠥⠛⠕⠎⠇â â §â Šâ " }, { "input": "Yugoslavian", "output": "⠠⠽⠥⠛⠕⠎⠇â â §â Šâ â " }, { "input": "Yugoslavians", "output": "⠠⠽⠥⠛⠕⠎⠇â â §â Šâ â â Ž" }, { "input": "Yukon", "output": "⠠⠽⠥⠅⠕â " }, { "input": "Yule", "output": "⠠⠽⠥⠇⠑" }, { "input": "Yules", "output": "⠠⠽⠥⠇⠑⠎" }, { "input": "Yuletide", "output": "⠠⠽⠥⠇⠑⠞⠊⠙⠑" }, { "input": "Yuletides", "output": "⠠⠽⠥⠇⠑⠞⠊⠙⠑⠎" }, { "input": "Yunnan", "output": "⠠⠽⠥â â â â " }, { "input": "Yuri", "output": "⠠⠽⠥⠗⠊" }, { "input": "Yves", "output": "⠠⠽⠧⠑⠎" }, { "input": "Yvette", "output": "⠠⠽⠧⠑⠞⠞⠑" }, { "input": "Yvonne", "output": "⠠⠽⠧⠕â â â ‘" }, { "input": "Z", "output": "â °â  â µ" }, { "input": "Zachariah", "output": "â  â µâ â ¡â œâ Šâ â “" }, { "input": "Zachary", "output": "â  â µâ â ¡â œâ ½" }, { "input": "Zachery", "output": "â  â µâ â ¡â »â ½" }, { "input": "Zagreb", "output": "â  â µâ â ›â —â ‘â ƒ" }, { "input": "Zaire", "output": "â  â µâ â Šâ —â ‘" }, { "input": "Zairian", "output": "â  â µâ â Šâ —â Šâ â " }, { "input": "Zambezi", "output": "â  â µâ â â ƒâ ‘⠵⠊" }, { "input": "Zambia", "output": "â  â µâ â â ƒâ Šâ " }, { "input": "Zambian", "output": "â  â µâ â â ƒâ Šâ â " }, { "input": "Zambians", "output": "â  â µâ â â ƒâ Šâ â â Ž" }, { "input": "Zamboni", "output": "â  â µâ â â ƒâ •â â Š" }, { "input": "Zamenhof", "output": "â  â µâ â â ¢â “â ·" }, { "input": "Zamora", "output": "â  â µâ â â •â —â " }, { "input": "Zane", "output": "â  â µâ â â ‘" }, { "input": "Zanuck", "output": "â  â µâ â â ¥â ‰â …" }, { "input": "Zanzibar", "output": "â  â µâ â â µâ Šâ ƒâ œ" }, { "input": "Zapata", "output": "â  â µâ â â â žâ " }, { "input": "Zaporozhye", "output": "â  â µâ â â •⠗⠕⠵⠓⠽⠑" }, { "input": "Zapotec", "output": "â  â µâ â â •â žâ ‘â ‰" }, { "input": "Zappa", "output": "â  â µâ â â â " }, { "input": "Zara", "output": "⠠⠵⠜â " }, { "input": "Zebedee", "output": "⠠⠵⠑⠃⠫⠑⠑" }, { "input": "Zechariah", "output": "⠠⠵⠑⠡⠜⠊â â “" }, { "input": "Zedekiah", "output": "⠠⠵⠫⠑⠅⠊â â “" }, { "input": "Zedong", "output": "⠠⠵⠫⠰⠛" }, { "input": "Zeffirelli", "output": "⠠⠵⠑⠖⠊⠗⠑⠇⠇⠊" }, { "input": "Zeke", "output": "⠠⠵⠑⠅⠑" }, { "input": "Zelig", "output": "⠠⠵⠑⠇⠊⠛" }, { "input": "Zelma", "output": "⠠⠵⠑⠇â â " }, { "input": "Zen", "output": "⠠⠵⠢" }, { "input": "Zenger", "output": "⠠⠵⠢⠛⠻" }, { "input": "Zeno", "output": "⠠⠵⠢⠕" }, { "input": "Zens", "output": "⠠⠵⠢⠎" }, { "input": "Zephaniah", "output": "⠠⠵⠑â â “â â â Šâ â “" }, { "input": "Zephyrus", "output": "⠠⠵⠑â â “⠽⠗⠥⠎" }, { "input": "Zeppelin", "output": "⠠⠵⠑â â â ‘⠇⠔" }, { "input": "Zest", "output": "⠠⠵⠑⠌" }, { "input": "Zeus", "output": "⠠⠵⠑⠥⠎" }, { "input": "Zhengzhou", "output": "⠠⠵⠓⠢⠛⠵⠓⠳" }, { "input": "Zhivago", "output": "⠠⠵⠓⠊⠧â â ›â •" }, { "input": "Zhukov", "output": "⠠⠵⠓⠥⠅⠕⠧" }, { "input": "Zibo", "output": "⠠⠵⠊⠃⠕" }, { "input": "Ziegfeld", "output": "⠠⠵⠊⠑⠛⠋⠑⠇⠙" }, { "input": "Ziegler", "output": "⠠⠵⠊⠑⠛⠇⠻" }, { "input": "Ziggy", "output": "⠠⠵⠊⠶⠽" }, { "input": "Zimbabwe", "output": "⠠⠵⠊â â ƒâ â ƒâ ºâ ‘" }, { "input": "Zimbabwean", "output": "⠠⠵⠊â â ƒâ â ƒâ ºâ ‚â " }, { "input": "Zimbabweans", "output": "⠠⠵⠊â â ƒâ â ƒâ ºâ ‚â â Ž" }, { "input": "Zimmerman", "output": "⠠⠵⠊â â â »â â â " }, { "input": "Zinfandel", "output": "⠠⠵⠔⠋⠯⠑⠇" }, { "input": "Zion", "output": "⠠⠵⠊⠕â " }, { "input": "Zionism", "output": "⠠⠵⠊⠕â â Šâ Žâ " }, { "input": "Zionisms", "output": "⠠⠵⠊⠕â â Šâ Žâ â Ž" }, { "input": "Zionist", "output": "⠠⠵⠊⠕â â Šâ Œ" }, { "input": "Zionists", "output": "⠠⠵⠊⠕â â Šâ Œâ Ž" }, { "input": "Zions", "output": "⠠⠵⠊⠕â â Ž" }, { "input": "Ziploc", "output": "⠠⠵⠊â â ‡â •â ‰" }, { "input": "Zn", "output": "â  â µâ " }, { "input": "Zoe", "output": "⠠⠵⠕⠑" }, { "input": "Zola", "output": "⠠⠵⠕⠇â " }, { "input": "Zollverein", "output": "⠠⠵⠕⠇⠇⠧⠻⠑⠔" }, { "input": "Zoloft", "output": "⠠⠵⠕⠇⠷⠞" }, { "input": "Zomba", "output": "⠠⠵⠕â â ƒâ " }, { "input": "Zorn", "output": "⠠⠵⠕⠗â " }, { "input": "Zoroaster", "output": "⠠⠵⠕⠗⠕â â Œâ »" }, { "input": "Zoroastrian", "output": "⠠⠵⠕⠗⠕â â Œâ —â Šâ â " }, { "input": "Zoroastrianism", "output": "⠠⠵⠕⠗⠕â â Œâ —â Šâ â â Šâ Žâ " }, { "input": "Zoroastrianisms", "output": "⠠⠵⠕⠗⠕â â Œâ —â Šâ â â Šâ Žâ â Ž" }, { "input": "Zorro", "output": "⠠⠵⠕⠗⠗⠕" }, { "input": "Zosma", "output": "⠠⠵⠕⠎â â " }, { "input": "Zr", "output": "⠠⠵⠗" }, { "input": "Zsigmondy", "output": "⠠⠵⠎⠊⠛â â •â â ™â ½" }, { "input": "Zubenelgenubi", "output": "⠠⠵⠥⠃⠢⠑⠇⠛⠢⠥⠃⠊" }, { "input": "Zubeneschamali", "output": "⠠⠵⠥⠃⠢⠑⠎⠡â â â â ‡â Š" }, { "input": "Zukor", "output": "⠠⠵⠥⠅⠕⠗" }, { "input": "Zulu", "output": "⠠⠵⠥⠇⠥" }, { "input": "Zulus", "output": "⠠⠵⠥⠇⠥⠎" }, { "input": "Zuni", "output": "⠠⠵⠥â â Š" }, { "input": "Zwingli", "output": "⠠⠵⠺⠬⠇⠊" }, { "input": "Zworykin", "output": "⠠⠵⠺⠕⠗⠽⠅⠔" }, { "input": "Zyrtec", "output": "⠠⠵⠽⠗⠞⠑⠉" }, { "input": "Zyuganov", "output": "⠠⠵⠽⠥⠛â â â •â §" }, { "input": "Zürich", "output": "⠠⠠⠵⠘⠻â â ¼â â Œâ ™â —⠊⠉⠓" }, { "input": "a", "output": "â " }, { "input": "aardvark", "output": "â â œâ ™â §â œâ …" }, { "input": "aardvarks", "output": "â â œâ ™â §â œâ …â Ž" }, { "input": "abaci", "output": "â â ƒâ â ‰â Š" }, { "input": "aback", "output": "â â ƒâ â ‰â …" }, { "input": "abacus", "output": "â â ƒâ â ‰â ¥â Ž" }, { "input": "abacuses", "output": "â â ƒâ â ‰â ¥â Žâ ‘â Ž" }, { "input": "abaft", "output": "â â ƒâ â ‹â ž" }, { "input": "abalone", "output": "â â ƒâ â ‡â •â â ‘" }, { "input": "abalones", "output": "â â ƒâ â ‡â •â â ‘â Ž" }, { "input": "abandon", "output": "â â ƒâ ¯â •â " }, { "input": "abandoned", "output": "â â ƒâ ¯â •â â «" }, { "input": "abandoning", "output": "â â ƒâ ¯â •â â ¬" }, { "input": "abandonment", "output": "â â ƒâ ¯â •â â °â ž" }, { "input": "abandons", "output": "â â ƒâ ¯â •â â Ž" }, { "input": "abase", "output": "â â ƒâ â Žâ ‘" }, { "input": "abased", "output": "â â ƒâ â Žâ «" }, { "input": "abasement", "output": "â â ƒâ â Žâ ‘â °â ž" }, { "input": "abases", "output": "â â ƒâ â Žâ ‘â Ž" }, { "input": "abash", "output": "â â ƒâ â ©" }, { "input": "abashed", "output": "â â ƒâ â ©â «" }, { "input": "abashes", "output": "â â ƒâ â ©â ‘â Ž" }, { "input": "abashing", "output": "â â ƒâ â ©â ¬" }, { "input": "abasing", "output": "â â ƒâ â Žâ ¬" }, { "input": "abate", "output": "â â ƒâ â žâ ‘" }, { "input": "abated", "output": "â â ƒâ â žâ «" }, { "input": "abatement", "output": "â â ƒâ â žâ ‘â °â ž" }, { "input": "abates", "output": "â â ƒâ â žâ ‘â Ž" }, { "input": "abating", "output": "â â ƒâ â žâ ¬" }, { "input": "abattoir", "output": "â â ƒâ â žâ žâ •â Šâ —" }, { "input": "abattoirs", "output": "â â ƒâ â žâ žâ •â Šâ —â Ž" }, { "input": "abbess", "output": "â â †â ‘â Žâ Ž" }, { "input": "abbesses", "output": "â â †â ‘â Žâ Žâ ‘â Ž" }, { "input": "abbey", "output": "â â †â ‘â ½" }, { "input": "abbeys", "output": "â â †â ‘⠽⠎" }, { "input": "abbot", "output": "â â †â •â ž" }, { "input": "abbots", "output": "â â †â •â žâ Ž" }, { "input": "abbreviate", "output": "â â †â —â ‘â §â Šâ â žâ ‘" }, { "input": "abbreviated", "output": "â â †â —â ‘â §â Šâ â žâ «" }, { "input": "abbreviates", "output": "â â †â —â ‘â §â Šâ â žâ ‘â Ž" }, { "input": "abbreviating", "output": "â â †â —â ‘â §â Šâ â žâ ¬" }, { "input": "abbreviation", "output": "â â †â —â ‘â §â Šâ â °â " }, { "input": "abbreviations", "output": "â â †â —â ‘â §â Šâ â °â â Ž" }, { "input": "abbé", "output": "â â ƒâ ƒâ  â ˜â »â â ˜â ‰" }, { "input": "abbés", "output": "â â ƒâ ƒâ  â ˜â »â â ˜â ‰â Ž" }, { "input": "abdicate", "output": "â â ƒâ ™â Šâ ‰â â žâ ‘" }, { "input": "abdicated", "output": "â â ƒâ ™â Šâ ‰â â žâ «" }, { "input": "abdicates", "output": "â â ƒâ ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "abdicating", "output": "â â ƒâ ™â Šâ ‰â â žâ ¬" }, { "input": "abdication", "output": "â â ƒâ ™â Šâ ‰â â °â " }, { "input": "abdications", "output": "â â ƒâ ™â Šâ ‰â â °â â Ž" }, { "input": "abdomen", "output": "â â ƒâ ™â •â â ¢" }, { "input": "abdomens", "output": "â â ƒâ ™â •â â ¢â Ž" }, { "input": "abdominal", "output": "â â ƒâ ™â •â â ”â â ‡" }, { "input": "abduct", "output": "â â ƒâ ™â ¥â ‰â ž" }, { "input": "abducted", "output": "â â ƒâ ™â ¥â ‰â žâ «" }, { "input": "abducting", "output": "â â ƒâ ™â ¥â ‰â žâ ¬" }, { "input": "abduction", "output": "â â ƒâ ™â ¥â ‰â °â " }, { "input": "abductions", "output": "â â ƒâ ™â ¥â ‰â °â â Ž" }, { "input": "abductor", "output": "â â ƒâ ™â ¥â ‰â žâ •â —" }, { "input": "abductors", "output": "â â ƒâ ™â ¥â ‰â žâ •â —â Ž" }, { "input": "abducts", "output": "â â ƒâ ™â ¥â ‰â žâ Ž" }, { "input": "abeam", "output": "â â ƒâ ‚â " }, { "input": "abed", "output": "â â ƒâ «" }, { "input": "aberrant", "output": "â â ƒâ »â —â â â ž" }, { "input": "aberration", "output": "â â ƒâ »â —â â °â " }, { "input": "aberrations", "output": "â â ƒâ »â —â â °â â Ž" }, { "input": "abet", "output": "â â ƒâ ‘â ž" }, { "input": "abets", "output": "â â ƒâ ‘â žâ Ž" }, { "input": "abetted", "output": "â â ƒâ ‘â žâ žâ «" }, { "input": "abetter", "output": "â â ƒâ ‘â žâ žâ »" }, { "input": "abetters", "output": "â â ƒâ ‘⠞⠞⠻⠎" }, { "input": "abetting", "output": "â â ƒâ ‘â žâ žâ ¬" }, { "input": "abettor", "output": "â â ƒâ ‘â žâ žâ •â —" }, { "input": "abettors", "output": "â â ƒâ ‘â žâ žâ •â —â Ž" }, { "input": "abeyance", "output": "â â ƒâ ‘⠽⠨⠑" }, { "input": "abhor", "output": "â â ƒâ “â •â —" }, { "input": "abhorred", "output": "â â ƒâ “â •â —â —â «" }, { "input": "abhorrence", "output": "â â ƒâ “â •â —â —â °â ‘" }, { "input": "abhorrent", "output": "â â ƒâ “⠕⠗⠗⠢⠞" }, { "input": "abhorring", "output": "â â ƒâ “â •â —â —â ¬" }, { "input": "abhors", "output": "â â ƒâ “â •â —â Ž" }, { "input": "abide", "output": "â â ƒâ Šâ ™â ‘" }, { "input": "abided", "output": "â â ƒâ Šâ ™â «" }, { "input": "abides", "output": "â â ƒâ Šâ ™â ‘â Ž" }, { "input": "abiding", "output": "â â ƒâ Šâ ™â ¬" }, { "input": "abilities", "output": "â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "ability", "output": "â â ƒâ Šâ ‡â °â ½" }, { "input": "abject", "output": "â â ƒâ šâ ‘⠉⠞" }, { "input": "abjectly", "output": "â â ƒâ šâ ‘⠉⠞⠇⠽" }, { "input": "abjuration", "output": "â â ƒâ šâ ¥â —â â °â " }, { "input": "abjurations", "output": "â â ƒâ šâ ¥â —â â °â â Ž" }, { "input": "abjure", "output": "â â ƒâ šâ ¥â —â ‘" }, { "input": "abjured", "output": "â â ƒâ šâ ¥â —â «" }, { "input": "abjures", "output": "â â ƒâ šâ ¥â —â ‘â Ž" }, { "input": "abjuring", "output": "â â ƒâ šâ ¥â —â ¬" }, { "input": "ablative", "output": "â â ƒâ ‡â â žâ Šâ §â ‘" }, { "input": "ablatives", "output": "â â ƒâ ‡â â žâ Šâ §â ‘â Ž" }, { "input": "ablaze", "output": "â â ƒâ ‡â â µâ ‘" }, { "input": "able", "output": "â â ƒâ ‡â ‘" }, { "input": "abler", "output": "â â ƒâ ‡â »" }, { "input": "ablest", "output": "â â ƒâ ‡â ‘â Œ" }, { "input": "abloom", "output": "â â ƒâ ‡â •â •â " }, { "input": "ablution", "output": "â â ƒâ ‡â ¥â °â " }, { "input": "ablutions", "output": "â â ƒâ ‡â ¥â °â â Ž" }, { "input": "ably", "output": "â â ƒâ ‡â ½" }, { "input": "abnegate", "output": "â â ƒâ â ‘â ›â â žâ ‘" }, { "input": "abnegated", "output": "â â ƒâ â ‘â ›â â žâ «" }, { "input": "abnegates", "output": "â â ƒâ â ‘â ›â â žâ ‘â Ž" }, { "input": "abnegating", "output": "â â ƒâ â ‘â ›â â žâ ¬" }, { "input": "abnegation", "output": "â â ƒâ â ‘â ›â â °â " }, { "input": "abnormal", "output": "â â ƒâ â •â —â â â ‡" }, { "input": "abnormalities", "output": "â â ƒâ â •â —â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "abnormality", "output": "â â ƒâ â •â —â â â ‡â °â ½" }, { "input": "abnormally", "output": "â â ƒâ â •â —â â â ‡â ‡â ½" }, { "input": "aboard", "output": "â â ƒâ •⠜⠙" }, { "input": "abode", "output": "â â ƒâ •⠙⠑" }, { "input": "abodes", "output": "â â ƒâ •⠙⠑⠎" }, { "input": "abolish", "output": "â â ƒâ •⠇⠊⠩" }, { "input": "abolished", "output": "â â ƒâ •⠇⠊⠩⠫" }, { "input": "abolishes", "output": "â â ƒâ •⠇⠊⠩⠑⠎" }, { "input": "abolishing", "output": "â â ƒâ •⠇⠊⠩⠬" }, { "input": "abolition", "output": "â â ƒâ •⠇⠊⠰â " }, { "input": "abolitionist", "output": "â â ƒâ •⠇⠊⠰â â Šâ Œ" }, { "input": "abolitionists", "output": "â â ƒâ •⠇⠊⠰â â Šâ Œâ Ž" }, { "input": "abominable", "output": "â â ƒâ •â â ”â â ƒâ ‡â ‘" }, { "input": "abominably", "output": "â â ƒâ •â â ”â â ƒâ ‡â ½" }, { "input": "abominate", "output": "â â ƒâ •â â ”â â žâ ‘" }, { "input": "abominated", "output": "â â ƒâ •â â ”â â žâ «" }, { "input": "abominates", "output": "â â ƒâ •â â ”â â žâ ‘â Ž" }, { "input": "abominating", "output": "â â ƒâ •â â ”â â žâ ¬" }, { "input": "abomination", "output": "â â ƒâ •â â ”â â °â " }, { "input": "abominations", "output": "â â ƒâ •â â ”â â °â â Ž" }, { "input": "aboriginal", "output": "â â ƒâ •⠗⠊⠛⠔â â ‡" }, { "input": "aboriginals", "output": "â â ƒâ •⠗⠊⠛⠔â â ‡â Ž" }, { "input": "aborigine", "output": "â â ƒâ •⠗⠊⠛⠔⠑" }, { "input": "aborigines", "output": "â â ƒâ •⠗⠊⠛⠔⠑⠎" }, { "input": "abort", "output": "â â ƒâ •â —â ž" }, { "input": "aborted", "output": "â â ƒâ •â —â žâ «" }, { "input": "aborting", "output": "â â ƒâ •â —â žâ ¬" }, { "input": "abortion", "output": "â â ƒâ •â —â °â " }, { "input": "abortionist", "output": "â â ƒâ •â —â °â â Šâ Œ" }, { "input": "abortionists", "output": "â â ƒâ •â —â °â â Šâ Œâ Ž" }, { "input": "abortions", "output": "â â ƒâ •â —â °â â Ž" }, { "input": "abortive", "output": "â â ƒâ •â —â žâ Šâ §â ‘" }, { "input": "aborts", "output": "â â ƒâ •â —â žâ Ž" }, { "input": "abound", "output": "â â ƒâ ¨â ™" }, { "input": "abounded", "output": "â â ƒâ ¨â ™â «" }, { "input": "abounding", "output": "â â ƒâ ¨â ™â ¬" }, { "input": "abounds", "output": "â â ƒâ ¨â ™â Ž" }, { "input": "about", "output": "â â ƒ" }, { "input": "above", "output": "â â ƒâ §" }, { "input": "aboveboard", "output": "â â ƒâ §â ƒâ •⠜⠙" }, { "input": "abracadabra", "output": "â â ƒâ —â â ‰â â ™â â ƒâ —â " }, { "input": "abrade", "output": "â â ƒâ —â â ™â ‘" }, { "input": "abraded", "output": "â â ƒâ —â â ™â «" }, { "input": "abrades", "output": "â â ƒâ —â â ™â ‘â Ž" }, { "input": "abrading", "output": "â â ƒâ —â â ™â ¬" }, { "input": "abrasion", "output": "â â ƒâ —â â ¨â " }, { "input": "abrasions", "output": "â â ƒâ —â â ¨â â Ž" }, { "input": "abrasive", "output": "â â ƒâ —â â Žâ Šâ §â ‘" }, { "input": "abrasively", "output": "â â ƒâ —â â Žâ Šâ §â ‘⠇⠽" }, { "input": "abrasiveness", "output": "â â ƒâ —â â Žâ Šâ §â ‘â °â Ž" }, { "input": "abrasives", "output": "â â ƒâ —â â Žâ Šâ §â ‘â Ž" }, { "input": "abreast", "output": "â â ƒâ —â ‚â Œ" }, { "input": "abridge", "output": "â â ƒâ —⠊⠙⠛⠑" }, { "input": "abridged", "output": "â â ƒâ —⠊⠙⠛⠫" }, { "input": "abridgement", "output": "â â ƒâ —⠊⠙⠛⠑⠰⠞" }, { "input": "abridgements", "output": "â â ƒâ —⠊⠙⠛⠑⠰⠞⠎" }, { "input": "abridges", "output": "â â ƒâ —⠊⠙⠛⠑⠎" }, { "input": "abridging", "output": "â â ƒâ —⠊⠙⠛⠬" }, { "input": "abridgment", "output": "â â ƒâ —⠊⠙⠛⠰⠞" }, { "input": "abridgments", "output": "â â ƒâ —⠊⠙⠛⠰⠞⠎" }, { "input": "abroad", "output": "â â ƒâ —â •â â ™" }, { "input": "abrogate", "output": "â â ƒâ —â •â ›â â žâ ‘" }, { "input": "abrogated", "output": "â â ƒâ —â •â ›â â žâ «" }, { "input": "abrogates", "output": "â â ƒâ —â •â ›â â žâ ‘â Ž" }, { "input": "abrogating", "output": "â â ƒâ —â •â ›â â žâ ¬" }, { "input": "abrogation", "output": "â â ƒâ —â •â ›â â °â " }, { "input": "abrogations", "output": "â â ƒâ —â •â ›â â °â â Ž" }, { "input": "abrupt", "output": "â â ƒâ —â ¥â â ž" }, { "input": "abrupter", "output": "â â ƒâ —â ¥â â žâ »" }, { "input": "abruptest", "output": "â â ƒâ —â ¥â â žâ ‘â Œ" }, { "input": "abruptly", "output": "â â ƒâ —â ¥â â žâ ‡â ½" }, { "input": "abruptness", "output": "â â ƒâ —â ¥â â žâ °â Ž" }, { "input": "abscess", "output": "â â ƒâ Žâ ‰â ‘â Žâ Ž" }, { "input": "abscessed", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ «" }, { "input": "abscesses", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ ‘â Ž" }, { "input": "abscessing", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ ¬" }, { "input": "abscissa", "output": "â â ƒâ Žâ ‰â Šâ Žâ Žâ " }, { "input": "abscissae", "output": "â â ƒâ Žâ ‰â Šâ Žâ Žâ â ‘" }, { "input": "abscissas", "output": "â â ƒâ Žâ ‰â Šâ Žâ Žâ â Ž" }, { "input": "abscond", "output": "â â ƒâ Žâ ‰â •â â ™" }, { "input": "absconded", "output": "â â ƒâ Žâ ‰â •â â ™â «" }, { "input": "absconding", "output": "â â ƒâ Žâ ‰â •â â ™â ¬" }, { "input": "absconds", "output": "â â ƒâ Žâ ‰â •â â ™â Ž" }, { "input": "absence", "output": "â â ƒâ Žâ °â ‘" }, { "input": "absences", "output": "â â ƒâ Žâ °â ‘â Ž" }, { "input": "absent", "output": "â â ƒâ Žâ ¢â ž" }, { "input": "absented", "output": "â â ƒâ Žâ ¢â žâ «" }, { "input": "absentee", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘" }, { "input": "absenteeism", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘â Šâ Žâ " }, { "input": "absentees", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘â Ž" }, { "input": "absenting", "output": "â â ƒâ Žâ ¢â žâ ¬" }, { "input": "absently", "output": "â â ƒâ Žâ ¢â žâ ‡â ½" }, { "input": "absents", "output": "â â ƒâ Žâ ¢â žâ Ž" }, { "input": "absinth", "output": "â â ƒâ Žâ ”â ¹" }, { "input": "absinthe", "output": "â â ƒâ Žâ ”â ®" }, { "input": "absolute", "output": "â â ƒâ Žâ •⠇⠥⠞⠑" }, { "input": "absolutely", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠇⠽" }, { "input": "absolutes", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠎" }, { "input": "absolutest", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠌" }, { "input": "absolution", "output": "â â ƒâ Žâ •⠇⠥⠰â " }, { "input": "absolutism", "output": "â â ƒâ Žâ •⠇⠥⠞⠊⠎â " }, { "input": "absolve", "output": "â â ƒâ Žâ •⠇⠧⠑" }, { "input": "absolved", "output": "â â ƒâ Žâ •⠇⠧⠫" }, { "input": "absolves", "output": "â â ƒâ Žâ •⠇⠧⠑⠎" }, { "input": "absolving", "output": "â â ƒâ Žâ •⠇⠧⠬" }, { "input": "absorb", "output": "â â ƒâ Žâ •â —â ƒ" }, { "input": "absorbed", "output": "â â ƒâ Žâ •⠗⠃⠫" }, { "input": "absorbency", "output": "â â ƒâ Žâ •⠗⠃⠢⠉⠽" }, { "input": "absorbent", "output": "â â ƒâ Žâ •⠗⠃⠢⠞" }, { "input": "absorbents", "output": "â â ƒâ Žâ •⠗⠃⠢⠞⠎" }, { "input": "absorbing", "output": "â â ƒâ Žâ •⠗⠃⠬" }, { "input": "absorbs", "output": "â â ƒâ Žâ •⠗⠃⠎" }, { "input": "absorption", "output": "â â ƒâ Žâ •â —â â °â " }, { "input": "abstain", "output": "â â ƒâ Œâ â ”" }, { "input": "abstained", "output": "â â ƒâ Œâ â ”â «" }, { "input": "abstainer", "output": "â â ƒâ Œâ â ”â »" }, { "input": "abstainers", "output": "â â ƒâ Œâ â ”⠻⠎" }, { "input": "abstaining", "output": "â â ƒâ Œâ â ”â ¬" }, { "input": "abstains", "output": "â â ƒâ Œâ â ”â Ž" }, { "input": "abstemious", "output": "â â ƒâ Œâ ‘â â Šâ ³â Ž" }, { "input": "abstention", "output": "â â ƒâ Œâ ¢â °â " }, { "input": "abstentions", "output": "â â ƒâ Œâ ¢â °â â Ž" }, { "input": "abstinence", "output": "â â ƒâ Œâ ”â °â ‘" }, { "input": "abstinent", "output": "â â ƒâ Œâ ”⠢⠞" }, { "input": "abstract", "output": "â â ƒâ Œâ —â â ‰â ž" }, { "input": "abstracted", "output": "â â ƒâ Œâ —â â ‰â žâ «" }, { "input": "abstractedly", "output": "â â ƒâ Œâ —â â ‰â žâ «â ‡â ½" }, { "input": "abstracting", "output": "â â ƒâ Œâ —â â ‰â žâ ¬" }, { "input": "abstraction", "output": "â â ƒâ Œâ —â â ‰â °â " }, { "input": "abstractions", "output": "â â ƒâ Œâ —â â ‰â °â â Ž" }, { "input": "abstractly", "output": "â â ƒâ Œâ —â â ‰â žâ ‡â ½" }, { "input": "abstractness", "output": "â â ƒâ Œâ —â â ‰â žâ °â Ž" }, { "input": "abstractnesses", "output": "â â ƒâ Œâ —â â ‰â žâ °â Žâ ‘â Ž" }, { "input": "abstracts", "output": "â â ƒâ Œâ —â â ‰â žâ Ž" }, { "input": "abstruse", "output": "â â ƒâ Œâ —⠥⠎⠑" }, { "input": "abstrusely", "output": "â â ƒâ Œâ —⠥⠎⠑⠇⠽" }, { "input": "abstruseness", "output": "â â ƒâ Œâ —⠥⠎⠑⠰⠎" }, { "input": "absurd", "output": "â â ƒâ Žâ ¥â —â ™" }, { "input": "absurder", "output": "â â ƒâ Žâ ¥â —⠙⠻" }, { "input": "absurdest", "output": "â â ƒâ Žâ ¥â —⠙⠑⠌" }, { "input": "absurdities", "output": "â â ƒâ Žâ ¥â —⠙⠊⠞⠊⠑⠎" }, { "input": "absurdity", "output": "â â ƒâ Žâ ¥â —⠙⠰⠽" }, { "input": "absurdly", "output": "â â ƒâ Žâ ¥â —⠙⠇⠽" }, { "input": "abundance", "output": "â â ƒâ ¥â â ™â ¨â ‘" }, { "input": "abundances", "output": "â â ƒâ ¥â â ™â ¨â ‘â Ž" }, { "input": "abundant", "output": "â â ƒâ ¥â â ™â â â ž" }, { "input": "abundantly", "output": "â â ƒâ ¥â â ™â â â žâ ‡â ½" }, { "input": "abuse", "output": "â â ƒâ ¥â Žâ ‘" }, { "input": "abused", "output": "â â ƒâ ¥â Žâ «" }, { "input": "abuser", "output": "â â ƒâ ¥â Žâ »" }, { "input": "abusers", "output": "â â ƒâ ¥â Žâ »â Ž" }, { "input": "abuses", "output": "â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "abusing", "output": "â â ƒâ ¥â Žâ ¬" }, { "input": "abusive", "output": "â â ƒâ ¥â Žâ Šâ §â ‘" }, { "input": "abusively", "output": "â â ƒâ ¥â Žâ Šâ §â ‘⠇⠽" }, { "input": "abusiveness", "output": "â â ƒâ ¥â Žâ Šâ §â ‘â °â Ž" }, { "input": "abut", "output": "â â ƒâ ¥â ž" }, { "input": "abutment", "output": "â â ƒâ ¥â žâ °â ž" }, { "input": "abutments", "output": "â â ƒâ ¥â žâ °â žâ Ž" }, { "input": "abuts", "output": "â â ƒâ ¥â žâ Ž" }, { "input": "abutted", "output": "â â ƒâ ¥â žâ žâ «" }, { "input": "abutting", "output": "â â ƒâ ¥â žâ žâ ¬" }, { "input": "abuzz", "output": "â â ƒâ ¥â µâ µ" }, { "input": "abysmal", "output": "â â ƒâ ½â Žâ â â ‡" }, { "input": "abysmally", "output": "â â ƒâ ½â Žâ â â ‡â ‡â ½" }, { "input": "abyss", "output": "â â ƒâ ½â Žâ Ž" }, { "input": "abysses", "output": "â â ƒâ ½â Žâ Žâ ‘â Ž" }, { "input": "acacia", "output": "â â ‰â â ‰â Šâ " }, { "input": "acacias", "output": "â â ‰â â ‰â Šâ â Ž" }, { "input": "academia", "output": "â â ‰â â ™â ‘â â Šâ " }, { "input": "academic", "output": "â â ‰â â ™â ‘â â Šâ ‰" }, { "input": "academical", "output": "â â ‰â â ™â ‘â â Šâ ‰â â ‡" }, { "input": "academically", "output": "â â ‰â â ™â ‘â â Šâ ‰â â ‡â ‡â ½" }, { "input": "academician", "output": "â â ‰â â ™â ‘â â Šâ ‰â Šâ â " }, { "input": "academicians", "output": "â â ‰â â ™â ‘â â Šâ ‰â Šâ â â Ž" }, { "input": "academics", "output": "â â ‰â â ™â ‘â â Šâ ‰â Ž" }, { "input": "academies", "output": "â â ‰â â ™â ‘â â Šâ ‘â Ž" }, { "input": "academy", "output": "â â ‰â â ™â ‘â â ½" }, { "input": "acanthi", "output": "â â ‰â â â ¹â Š" }, { "input": "acanthus", "output": "â â ‰â â â ¹â ¥â Ž" }, { "input": "acanthuses", "output": "â â ‰â â â ¹â ¥â Žâ ‘â Ž" }, { "input": "accede", "output": "â â ’â «â ‘" }, { "input": "acceded", "output": "â â ’â «â «" }, { "input": "accedes", "output": "â â ’â «â ‘â Ž" }, { "input": "acceding", "output": "â â ’â «â ¬" }, { "input": "accelerate", "output": "â â ’⠑⠇⠻â â žâ ‘" }, { "input": "accelerated", "output": "â â ’⠑⠇⠻â â žâ «" }, { "input": "accelerates", "output": "â â ’⠑⠇⠻â â žâ ‘â Ž" }, { "input": "accelerating", "output": "â â ’⠑⠇⠻â â žâ ¬" }, { "input": "acceleration", "output": "â â ’⠑⠇⠻â â °â " }, { "input": "accelerations", "output": "â â ’⠑⠇⠻â â °â â Ž" }, { "input": "accelerator", "output": "â â ’⠑⠇⠻â â žâ •â —" }, { "input": "accelerators", "output": "â â ’⠑⠇⠻â â žâ •â —â Ž" }, { "input": "accent", "output": "â â ’⠢⠞" }, { "input": "accented", "output": "â â ’⠢⠞⠫" }, { "input": "accenting", "output": "â â ’⠢⠞⠬" }, { "input": "accents", "output": "â â ’⠢⠞⠎" }, { "input": "accentuate", "output": "â â ’⠢⠞⠥â â žâ ‘" }, { "input": "accentuated", "output": "â â ’⠢⠞⠥â â žâ «" }, { "input": "accentuates", "output": "â â ’⠢⠞⠥â â žâ ‘â Ž" }, { "input": "accentuating", "output": "â â ’⠢⠞⠥â â žâ ¬" }, { "input": "accentuation", "output": "â â ’⠢⠞⠥â â °â " }, { "input": "accept", "output": "â â ’â ‘â â ž" }, { "input": "acceptability", "output": "â â ’â ‘â â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "acceptable", "output": "â â ’â ‘â â žâ â ƒâ ‡â ‘" }, { "input": "acceptably", "output": "â â ’â ‘â â žâ â ƒâ ‡â ½" }, { "input": "acceptance", "output": "â â ’â ‘â â žâ ¨â ‘" }, { "input": "acceptances", "output": "â â ’â ‘â â žâ ¨â ‘â Ž" }, { "input": "accepted", "output": "â â ’â ‘â â žâ «" }, { "input": "accepting", "output": "â â ’â ‘â â žâ ¬" }, { "input": "accepts", "output": "â â ’â ‘â â žâ Ž" }, { "input": "access", "output": "â â ’â ‘â Žâ Ž" }, { "input": "accessed", "output": "â â ’â ‘â Žâ Žâ «" }, { "input": "accesses", "output": "â â ’â ‘â Žâ Žâ ‘â Ž" }, { "input": "accessibility", "output": "â â ’⠑⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "accessible", "output": "â â ’⠑⠎⠎⠊⠃⠇⠑" }, { "input": "accessibly", "output": "â â ’⠑⠎⠎⠊⠃⠇⠽" }, { "input": "accessing", "output": "â â ’â ‘â Žâ Žâ ¬" }, { "input": "accession", "output": "â â ’â ‘â Žâ ¨â " }, { "input": "accessioned", "output": "â â ’â ‘â Žâ ¨â â «" }, { "input": "accessioning", "output": "â â ’â ‘â Žâ ¨â â ¬" }, { "input": "accessions", "output": "â â ’â ‘â Žâ ¨â â Ž" }, { "input": "accessories", "output": "â â ’â ‘â Žâ Žâ •â —â Šâ ‘â Ž" }, { "input": "accessory", "output": "â â ’â ‘â Žâ Žâ •â —â ½" }, { "input": "accident", "output": "â â ’⠊⠙⠢⠞" }, { "input": "accidental", "output": "â â ’⠊⠙⠢⠞â â ‡" }, { "input": "accidentally", "output": "â â ’⠊⠙⠢⠞â â ‡â ‡â ½" }, { "input": "accidentals", "output": "â â ’⠊⠙⠢⠞â â ‡â Ž" }, { "input": "accidents", "output": "â â ’⠊⠙⠢⠞⠎" }, { "input": "acclaim", "output": "â â ’â ‡â â Šâ " }, { "input": "acclaimed", "output": "â â ’â ‡â â Šâ â «" }, { "input": "acclaiming", "output": "â â ’â ‡â â Šâ â ¬" }, { "input": "acclaims", "output": "â â ’â ‡â â Šâ â Ž" }, { "input": "acclamation", "output": "â â ’â ‡â â â â °â " }, { "input": "acclimate", "output": "â â ’⠇⠊â â â žâ ‘" }, { "input": "acclimated", "output": "â â ’⠇⠊â â â žâ «" }, { "input": "acclimates", "output": "â â ’⠇⠊â â â žâ ‘â Ž" }, { "input": "acclimating", "output": "â â ’⠇⠊â â â žâ ¬" }, { "input": "acclimation", "output": "â â ’⠇⠊â â â °â " }, { "input": "acclimatization", "output": "â â ’⠇⠊â â â žâ Šâ µâ â °â " }, { "input": "acclimatize", "output": "â â ’⠇⠊â â â žâ Šâ µâ ‘" }, { "input": "acclimatized", "output": "â â ’⠇⠊â â â žâ Šâ µâ «" }, { "input": "acclimatizes", "output": "â â ’⠇⠊â â â žâ Šâ µâ ‘â Ž" }, { "input": "acclimatizing", "output": "â â ’⠇⠊â â â žâ Šâ µâ ¬" }, { "input": "accolade", "output": "â â ’â •â ‡â â ™â ‘" }, { "input": "accolades", "output": "â â ’â •â ‡â â ™â ‘â Ž" }, { "input": "accommodate", "output": "â â ’â •â â â •â ™â â žâ ‘" }, { "input": "accommodated", "output": "â â ’â •â â â •â ™â â žâ «" }, { "input": "accommodates", "output": "â â ’â •â â â •â ™â â žâ ‘â Ž" }, { "input": "accommodating", "output": "â â ’â •â â â •â ™â â žâ ¬" }, { "input": "accommodation", "output": "â â ’â •â â â •â ™â â °â " }, { "input": "accommodations", "output": "â â ’â •â â â •â ™â â °â â Ž" }, { "input": "accompanied", "output": "â â ’â •â â â â â Šâ «" }, { "input": "accompanies", "output": "â â ’â •â â â â â Šâ ‘â Ž" }, { "input": "accompaniment", "output": "â â ’â •â â â â â Šâ °â ž" }, { "input": "accompaniments", "output": "â â ’â •â â â â â Šâ °â žâ Ž" }, { "input": "accompanist", "output": "â â ’â •â â â â â Šâ Œ" }, { "input": "accompanists", "output": "â â ’â •â â â â â Šâ Œâ Ž" }, { "input": "accompany", "output": "â â ’â •â â â â â ½" }, { "input": "accompanying", "output": "â â ’â •â â â â â ½â ¬" }, { "input": "accomplice", "output": "â â ’â •â â â ‡â Šâ ‰â ‘" }, { "input": "accomplices", "output": "â â ’â •â â â ‡â Šâ ‰â ‘â Ž" }, { "input": "accomplish", "output": "â â ’â •â â â ‡â Šâ ©" }, { "input": "accomplished", "output": "â â ’â •â â â ‡â Šâ ©â «" }, { "input": "accomplishes", "output": "â â ’â •â â â ‡â Šâ ©â ‘â Ž" }, { "input": "accomplishing", "output": "â â ’â •â â â ‡â Šâ ©â ¬" }, { "input": "accomplishment", "output": "â â ’â •â â â ‡â Šâ ©â °â ž" }, { "input": "accomplishments", "output": "â â ’â •â â â ‡â Šâ ©â °â žâ Ž" }, { "input": "accord", "output": "â â ’â •â —â ™" }, { "input": "accordance", "output": "â â ’⠕⠗⠙⠨⠑" }, { "input": "accorded", "output": "â â ’⠕⠗⠙⠫" }, { "input": "according", "output": "â â ‰" }, { "input": "accordingly", "output": "â â ‰â ‡â ½" }, { "input": "accordion", "output": "â â ’⠕⠗⠙⠊⠕â " }, { "input": "accordions", "output": "â â ’⠕⠗⠙⠊⠕â â Ž" }, { "input": "accords", "output": "â â ’⠕⠗⠙⠎" }, { "input": "accost", "output": "â â ’â •â Œ" }, { "input": "accosted", "output": "â â ’⠕⠌⠫" }, { "input": "accosting", "output": "â â ’⠕⠌⠬" }, { "input": "accosts", "output": "â â ’⠕⠌⠎" }, { "input": "account", "output": "â â ’⠨⠞" }, { "input": "accountability", "output": "â â ’⠨⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "accountable", "output": "â â ’⠨⠞â â ƒâ ‡â ‘" }, { "input": "accountancy", "output": "â â ’⠨⠞â â â ‰â ½" }, { "input": "accountant", "output": "â â ’⠨⠞â â â ž" }, { "input": "accountants", "output": "â â ’⠨⠞â â â žâ Ž" }, { "input": "accounted", "output": "â â ’⠨⠞⠫" }, { "input": "accounting", "output": "â â ’⠨⠞⠬" }, { "input": "accounts", "output": "â â ’⠨⠞⠎" }, { "input": "accouterments", "output": "â â ’⠳⠞⠻⠰⠞⠎" }, { "input": "accoutrements", "output": "â â ’⠳⠞⠗⠑⠰⠞⠎" }, { "input": "accredit", "output": "â â ’â —â «â Šâ ž" }, { "input": "accreditation", "output": "â â ’â —â «â Šâ žâ â °â " }, { "input": "accredited", "output": "â â ’â —â «â Šâ žâ «" }, { "input": "accrediting", "output": "â â ’â —â «â Šâ žâ ¬" }, { "input": "accredits", "output": "â â ’â —â «â Šâ žâ Ž" }, { "input": "accretion", "output": "â â ’â —â ‘â °â " }, { "input": "accretions", "output": "â â ’â —â ‘â °â â Ž" }, { "input": "accrual", "output": "â â ’â —â ¥â â ‡" }, { "input": "accruals", "output": "â â ’â —â ¥â â ‡â Ž" }, { "input": "accrue", "output": "â â ’⠗⠥⠑" }, { "input": "accrued", "output": "â â ’⠗⠥⠫" }, { "input": "accrues", "output": "â â ’⠗⠥⠑⠎" }, { "input": "accruing", "output": "â â ’⠗⠥⠬" }, { "input": "acculturation", "output": "â â ’⠥⠇⠞⠥⠗â â °â " }, { "input": "accumulate", "output": "â â ’â ¥â â ¥â ‡â â žâ ‘" }, { "input": "accumulated", "output": "â â ’â ¥â â ¥â ‡â â žâ «" }, { "input": "accumulates", "output": "â â ’â ¥â â ¥â ‡â â žâ ‘â Ž" }, { "input": "accumulating", "output": "â â ’â ¥â â ¥â ‡â â žâ ¬" }, { "input": "accumulation", "output": "â â ’â ¥â â ¥â ‡â â °â " }, { "input": "accumulations", "output": "â â ’â ¥â â ¥â ‡â â °â â Ž" }, { "input": "accumulative", "output": "â â ’â ¥â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "accumulator", "output": "â â ’â ¥â â ¥â ‡â â žâ •â —" }, { "input": "accuracy", "output": "â â ’⠥⠗â â ‰â ½" }, { "input": "accurate", "output": "â â ’⠥⠗â â žâ ‘" }, { "input": "accurately", "output": "â â ’⠥⠗â â žâ ‘⠇⠽" }, { "input": "accurateness", "output": "â â ’⠥⠗â â žâ ‘â °â Ž" }, { "input": "accursed", "output": "â â ’⠥⠗⠎⠫" }, { "input": "accurst", "output": "â â ’⠥⠗⠌" }, { "input": "accusation", "output": "â â ’⠥⠎â â °â " }, { "input": "accusations", "output": "â â ’⠥⠎â â °â â Ž" }, { "input": "accusative", "output": "â â ’⠥⠎â â žâ Šâ §â ‘" }, { "input": "accusatives", "output": "â â ’⠥⠎â â žâ Šâ §â ‘â Ž" }, { "input": "accusatory", "output": "â â ’⠥⠎â â žâ •â —â ½" }, { "input": "accuse", "output": "â â ’⠥⠎⠑" }, { "input": "accused", "output": "â â ’⠥⠎⠫" }, { "input": "accuser", "output": "â â ’⠥⠎⠻" }, { "input": "accusers", "output": "â â ’⠥⠎⠻⠎" }, { "input": "accuses", "output": "â â ’⠥⠎⠑⠎" }, { "input": "accusing", "output": "â â ’⠥⠎⠬" }, { "input": "accusingly", "output": "â â ’⠥⠎⠬⠇⠽" }, { "input": "accustom", "output": "â â ’⠥⠌⠕â " }, { "input": "accustomed", "output": "â â ’⠥⠌⠕â â «" }, { "input": "accustoming", "output": "â â ’⠥⠌⠕â â ¬" }, { "input": "accustoms", "output": "â â ’⠥⠌⠕â â Ž" }, { "input": "ace", "output": "â â ‰â ‘" }, { "input": "aced", "output": "â â ‰â «" }, { "input": "acerbic", "output": "â â ‰â »â ƒâ Šâ ‰" }, { "input": "acerbity", "output": "â â ‰â »â ƒâ °â ½" }, { "input": "aces", "output": "â â ‰â ‘â Ž" }, { "input": "acetaminophen", "output": "â â ‰â ‘â žâ â â ”â •â â “â ¢" }, { "input": "acetate", "output": "â â ‰â ‘â žâ â žâ ‘" }, { "input": "acetates", "output": "â â ‰â ‘â žâ â žâ ‘â Ž" }, { "input": "acetic", "output": "â â ‰â ‘â žâ Šâ ‰" }, { "input": "acetone", "output": "â â ‰â ‘â žâ â •" }, { "input": "acetylene", "output": "â â ‰â ‘⠞⠽⠇⠢⠑" }, { "input": "ache", "output": "â â ¡â ‘" }, { "input": "ached", "output": "â â ¡â «" }, { "input": "aches", "output": "â â ¡â ‘â Ž" }, { "input": "achier", "output": "â â ¡â Šâ »" }, { "input": "achiest", "output": "â â ¡â Šâ ‘â Œ" }, { "input": "achievable", "output": "â â ¡â Šâ ‘â §â â ƒâ ‡â ‘" }, { "input": "achieve", "output": "â â ¡â Šâ ‘â §â ‘" }, { "input": "achieved", "output": "â â ¡â Šâ ‘â §â «" }, { "input": "achievement", "output": "â â ¡â Šâ ‘â §â ‘â °â ž" }, { "input": "achievements", "output": "â â ¡â Šâ ‘â §â ‘â °â žâ Ž" }, { "input": "achiever", "output": "â â ¡â Šâ ‘â §â »" }, { "input": "achievers", "output": "â â ¡â Šâ ‘⠧⠻⠎" }, { "input": "achieves", "output": "â â ¡â Šâ ‘â §â ‘â Ž" }, { "input": "achieving", "output": "â â ¡â Šâ ‘â §â ¬" }, { "input": "aching", "output": "â â ¡â ¬" }, { "input": "achoo", "output": "â â ¡â •â •" }, { "input": "achromatic", "output": "â â ¡â —â •â â â žâ Šâ ‰" }, { "input": "achy", "output": "â â ¡â ½" }, { "input": "acid", "output": "â â ‰â Šâ ™" }, { "input": "acidic", "output": "â â ‰â Šâ ™â Šâ ‰" }, { "input": "acidified", "output": "â â ‰â Šâ ™â Šâ ‹â Šâ «" }, { "input": "acidifies", "output": "â â ‰â Šâ ™â Šâ ‹â Šâ ‘â Ž" }, { "input": "acidify", "output": "â â ‰â Šâ ™â Šâ ‹â ½" }, { "input": "acidifying", "output": "â â ‰â Šâ ™â Šâ ‹â ½â ¬" }, { "input": "acidity", "output": "â â ‰â Šâ ™â °â ½" }, { "input": "acidly", "output": "â â ‰â Šâ ™â ‡â ½" }, { "input": "acids", "output": "â â ‰â Šâ ™â Ž" }, { "input": "acidulous", "output": "â â ‰â Šâ ™â ¥â ‡â ³â Ž" }, { "input": "acing", "output": "â â ‰â ¬" }, { "input": "acknowledge", "output": "â â ‰â â …⠇⠫⠛⠑" }, { "input": "acknowledged", "output": "â â ‰â â …⠇⠫⠛⠫" }, { "input": "acknowledgement", "output": "â â ‰â â …⠇⠫⠛⠑⠰⠞" }, { "input": "acknowledgements", "output": "â â ‰â â …⠇⠫⠛⠑⠰⠞⠎" }, { "input": "acknowledges", "output": "â â ‰â â …⠇⠫⠛⠑⠎" }, { "input": "acknowledging", "output": "â â ‰â â …⠇⠫⠛⠬" }, { "input": "acknowledgment", "output": "â â ‰â â …⠇⠫⠛⠰⠞" }, { "input": "acknowledgments", "output": "â â ‰â â …⠇⠫⠛⠰⠞⠎" }, { "input": "acme", "output": "â â ‰â â ‘" }, { "input": "acmes", "output": "â â ‰â â ‘â Ž" }, { "input": "acne", "output": "â â ‰â â ‘" }, { "input": "acolyte", "output": "â â ‰â •⠇⠽⠞⠑" }, { "input": "acolytes", "output": "â â ‰â •⠇⠽⠞⠑⠎" }, { "input": "aconite", "output": "â â ‰â •â â Šâ žâ ‘" }, { "input": "aconites", "output": "â â ‰â •â â Šâ žâ ‘â Ž" }, { "input": "acorn", "output": "â â ‰â •â —â " }, { "input": "acorns", "output": "â â ‰â •â —â â Ž" }, { "input": "acoustic", "output": "â â ‰â ³â Œâ Šâ ‰" }, { "input": "acoustical", "output": "â â ‰â ³â Œâ Šâ ‰â â ‡" }, { "input": "acoustically", "output": "â â ‰â ³â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "acoustics", "output": "â â ‰â ³â Œâ Šâ ‰â Ž" }, { "input": "acquaint", "output": "â â ‰â Ÿâ ¥â â ”â ž" }, { "input": "acquaintance", "output": "â â ‰â Ÿâ ¥â â ”⠞⠨⠑" }, { "input": "acquaintances", "output": "â â ‰â Ÿâ ¥â â ”⠞⠨⠑⠎" }, { "input": "acquainted", "output": "â â ‰â Ÿâ ¥â â ”â žâ «" }, { "input": "acquainting", "output": "â â ‰â Ÿâ ¥â â ”â žâ ¬" }, { "input": "acquaints", "output": "â â ‰â Ÿâ ¥â â ”â žâ Ž" }, { "input": "acquiesce", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠑" }, { "input": "acquiesced", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠫" }, { "input": "acquiescence", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠰⠑" }, { "input": "acquiescent", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠢⠞" }, { "input": "acquiesces", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠑⠎" }, { "input": "acquiescing", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠬" }, { "input": "acquirable", "output": "â â ‰â Ÿâ ¥â Šâ —â â ƒâ ‡â ‘" }, { "input": "acquire", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘" }, { "input": "acquired", "output": "â â ‰â Ÿâ ¥â Šâ —â «" }, { "input": "acquirement", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘â °â ž" }, { "input": "acquires", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘â Ž" }, { "input": "acquiring", "output": "â â ‰â Ÿâ ¥â Šâ —â ¬" }, { "input": "acquisition", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ °â " }, { "input": "acquisitions", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ °â â Ž" }, { "input": "acquisitive", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ žâ Šâ §â ‘" }, { "input": "acquisitiveness", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "acquit", "output": "â â ‰â Ÿâ ¥â Šâ ž" }, { "input": "acquits", "output": "â â ‰â Ÿâ ¥â Šâ žâ Ž" }, { "input": "acquittal", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ â ‡" }, { "input": "acquittals", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ â ‡â Ž" }, { "input": "acquitted", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ «" }, { "input": "acquitting", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ ¬" }, { "input": "acre", "output": "â â ‰â —â ‘" }, { "input": "acreage", "output": "â â ‰â —⠂⠛⠑" }, { "input": "acreages", "output": "â â ‰â —⠂⠛⠑⠎" }, { "input": "acres", "output": "â â ‰â —â ‘â Ž" }, { "input": "acrid", "output": "â â ‰â —â Šâ ™" }, { "input": "acrider", "output": "â â ‰â —⠊⠙⠻" }, { "input": "acridest", "output": "â â ‰â —⠊⠙⠑⠌" }, { "input": "acrimonious", "output": "â â ‰â —â Šâ â •â â Šâ ³â Ž" }, { "input": "acrimony", "output": "â â ‰â —â Šâ â •â â ½" }, { "input": "acrobat", "output": "â â ‰â —â •â ƒâ â ž" }, { "input": "acrobatic", "output": "â â ‰â —â •â ƒâ â žâ Šâ ‰" }, { "input": "acrobatics", "output": "â â ‰â —â •â ƒâ â žâ Šâ ‰â Ž" }, { "input": "acrobats", "output": "â â ‰â —â •â ƒâ â žâ Ž" }, { "input": "acronym", "output": "â â ‰â —â •â â ½â " }, { "input": "acronyms", "output": "â â ‰â —â •â â ½â â Ž" }, { "input": "across", "output": "â â ‰â —" }, { "input": "acrostic", "output": "â â ‰â —⠕⠌⠊⠉" }, { "input": "acrostics", "output": "â â ‰â —⠕⠌⠊⠉⠎" }, { "input": "acrylic", "output": "â â ‰â —⠽⠇⠊⠉" }, { "input": "acrylics", "output": "â â ‰â —⠽⠇⠊⠉⠎" }, { "input": "act", "output": "â â ‰â ž" }, { "input": "acted", "output": "â â ‰â žâ «" }, { "input": "acting", "output": "â â ‰â žâ ¬" }, { "input": "actinium", "output": "â â ‰â žâ ”â Šâ ¥â " }, { "input": "action", "output": "â â ‰â °â " }, { "input": "actionable", "output": "â â ‰â °â â â ƒâ ‡â ‘" }, { "input": "actions", "output": "â â ‰â °â â Ž" }, { "input": "activate", "output": "â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "activated", "output": "â â ‰â žâ Šâ §â â žâ «" }, { "input": "activates", "output": "â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "activating", "output": "â â ‰â žâ Šâ §â â žâ ¬" }, { "input": "activation", "output": "â â ‰â žâ Šâ §â â °â " }, { "input": "active", "output": "â â ‰â žâ Šâ §â ‘" }, { "input": "actively", "output": "â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "actives", "output": "â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "activism", "output": "â â ‰â žâ Šâ §â Šâ Žâ " }, { "input": "activist", "output": "â â ‰â žâ Šâ §â Šâ Œ" }, { "input": "activists", "output": "â â ‰â žâ Šâ §â Šâ Œâ Ž" }, { "input": "activities", "output": "â â ‰â žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "activity", "output": "â â ‰â žâ Šâ §â °â ½" }, { "input": "actor", "output": "â â ‰â žâ •â —" }, { "input": "actors", "output": "â â ‰â žâ •â —â Ž" }, { "input": "actress", "output": "â â ‰â žâ —â ‘â Žâ Ž" }, { "input": "actresses", "output": "â â ‰â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "acts", "output": "â â ‰â žâ Ž" }, { "input": "actual", "output": "â â ‰â žâ ¥â â ‡" }, { "input": "actualities", "output": "â â ‰â žâ ¥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "actuality", "output": "â â ‰â žâ ¥â â ‡â °â ½" }, { "input": "actualization", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ â °â " }, { "input": "actualize", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "actualized", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ «" }, { "input": "actualizes", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "actualizing", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ ¬" }, { "input": "actually", "output": "â â ‰â žâ ¥â â ‡â ‡â ½" }, { "input": "actuarial", "output": "â â ‰â žâ ¥â œâ Šâ â ‡" }, { "input": "actuaries", "output": "â â ‰â žâ ¥â œâ Šâ ‘â Ž" }, { "input": "actuary", "output": "â â ‰â žâ ¥â œâ ½" }, { "input": "actuate", "output": "â â ‰â žâ ¥â â žâ ‘" }, { "input": "actuated", "output": "â â ‰â žâ ¥â â žâ «" }, { "input": "actuates", "output": "â â ‰â žâ ¥â â žâ ‘â Ž" }, { "input": "actuating", "output": "â â ‰â žâ ¥â â žâ ¬" }, { "input": "actuator", "output": "â â ‰â žâ ¥â â žâ •â —" }, { "input": "actuators", "output": "â â ‰â žâ ¥â â žâ •â —â Ž" }, { "input": "acuity", "output": "â â ‰â ¥â °â ½" }, { "input": "acumen", "output": "â â ‰â ¥â â ¢" }, { "input": "acupuncture", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —â ‘" }, { "input": "acupuncturist", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —â Šâ Œ" }, { "input": "acupuncturists", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —⠊⠌⠎" }, { "input": "acute", "output": "â â ‰â ¥â žâ ‘" }, { "input": "acutely", "output": "â â ‰â ¥â žâ ‘⠇⠽" }, { "input": "acuteness", "output": "â â ‰â ¥â žâ ‘â °â Ž" }, { "input": "acuter", "output": "â â ‰â ¥â žâ »" }, { "input": "acutes", "output": "â â ‰â ¥â žâ ‘â Ž" }, { "input": "acutest", "output": "â â ‰â ¥â žâ ‘â Œ" }, { "input": "ad", "output": "â â ™" }, { "input": "adage", "output": "â â ™â â ›â ‘" }, { "input": "adages", "output": "â â ™â â ›â ‘â Ž" }, { "input": "adagio", "output": "â â ™â â ›â Šâ •" }, { "input": "adagios", "output": "â â ™â â ›â Šâ •â Ž" }, { "input": "adamant", "output": "â â ™â â â â â ž" }, { "input": "adamantly", "output": "â â ™â â â â â žâ ‡â ½" }, { "input": "adapt", "output": "â â ™â â â ž" }, { "input": "adaptability", "output": "â â ™â â â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "adaptable", "output": "â â ™â â â žâ â ƒâ ‡â ‘" }, { "input": "adaptation", "output": "â â ™â â â žâ â °â " }, { "input": "adaptations", "output": "â â ™â â â žâ â °â â Ž" }, { "input": "adapted", "output": "â â ™â â â žâ «" }, { "input": "adapter", "output": "â â ™â â â žâ »" }, { "input": "adapters", "output": "â â ™â â â žâ »â Ž" }, { "input": "adapting", "output": "â â ™â â â žâ ¬" }, { "input": "adaptive", "output": "â â ™â â â žâ Šâ §â ‘" }, { "input": "adaptor", "output": "â â ™â â â žâ •â —" }, { "input": "adaptors", "output": "â â ™â â â žâ •â —â Ž" }, { "input": "adapts", "output": "â â ™â â â žâ Ž" }, { "input": "add", "output": "â â ™â ™" }, { "input": "added", "output": "â â ™â ™â «" }, { "input": "addend", "output": "â â ™â ™â ¢â ™" }, { "input": "addenda", "output": "â â ™â ™â ¢â ™â " }, { "input": "addends", "output": "â â ™â ™â ¢â ™â Ž" }, { "input": "addendum", "output": "â â ™â ™â ¢â ™â ¥â " }, { "input": "addendums", "output": "â â ™â ™â ¢â ™â ¥â â Ž" }, { "input": "adder", "output": "â â ™â ™â »" }, { "input": "adders", "output": "â â ™â ™â »â Ž" }, { "input": "addict", "output": "â â ™â ™â Šâ ‰â ž" }, { "input": "addicted", "output": "â â ™â ™â Šâ ‰â žâ «" }, { "input": "addicting", "output": "â â ™â ™â Šâ ‰â žâ ¬" }, { "input": "addiction", "output": "â â ™â ™â Šâ ‰â °â " }, { "input": "addictions", "output": "â â ™â ™â Šâ ‰â °â â Ž" }, { "input": "addictive", "output": "â â ™â ™â Šâ ‰â žâ Šâ §â ‘" }, { "input": "addicts", "output": "â â ™â ™â Šâ ‰â žâ Ž" }, { "input": "adding", "output": "â â ™â ™â ¬" }, { "input": "addition", "output": "â â ™â ™â Šâ °â " }, { "input": "additional", "output": "â â ™â ™â Šâ °â â â ‡" }, { "input": "additionally", "output": "â â ™â ™â Šâ °â â â ‡â ‡â ½" }, { "input": "additions", "output": "â â ™â ™â Šâ °â â Ž" }, { "input": "additive", "output": "â â ™â ™â Šâ žâ Šâ §â ‘" }, { "input": "additives", "output": "â â ™â ™â Šâ žâ Šâ §â ‘â Ž" }, { "input": "addle", "output": "â â ™â ™â ‡â ‘" }, { "input": "addled", "output": "â â ™â ™â ‡â «" }, { "input": "addles", "output": "â â ™â ™â ‡â ‘â Ž" }, { "input": "addling", "output": "â â ™â ™â ‡â ¬" }, { "input": "address", "output": "â â ™â ™â —â ‘â Žâ Ž" }, { "input": "addressable", "output": "â â ™â ™â —â ‘â Žâ Žâ â ƒâ ‡â ‘" }, { "input": "addressed", "output": "â â ™â ™â —â ‘â Žâ Žâ «" }, { "input": "addressee", "output": "â â ™â ™â —â ‘â Žâ Žâ ‘â ‘" }, { "input": "addressees", "output": "â â ™â ™â —â ‘â Žâ Žâ ‘â ‘â Ž" }, { "input": "addresses", "output": "â â ™â ™â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "addressing", "output": "â â ™â ™â —â ‘â Žâ Žâ ¬" }, { "input": "adds", "output": "â â ™â ™â Ž" }, { "input": "adduce", "output": "â â ™â ™â ¥â ‰â ‘" }, { "input": "adduced", "output": "â â ™â ™â ¥â ‰â «" }, { "input": "adduces", "output": "â â ™â ™â ¥â ‰â ‘â Ž" }, { "input": "adducing", "output": "â â ™â ™â ¥â ‰â ¬" }, { "input": "adenoid", "output": "â â ™â ¢â •â Šâ ™" }, { "input": "adenoidal", "output": "â â ™â ¢â •â Šâ ™â â ‡" }, { "input": "adenoids", "output": "â â ™â ¢â •⠊⠙⠎" }, { "input": "adept", "output": "â â ™â ‘â â ž" }, { "input": "adeptly", "output": "â â ™â ‘â â žâ ‡â ½" }, { "input": "adeptness", "output": "â â ™â ‘â â žâ °â Ž" }, { "input": "adepts", "output": "â â ™â ‘â â žâ Ž" }, { "input": "adequacy", "output": "â â ™â ‘â Ÿâ ¥â â ‰â ½" }, { "input": "adequate", "output": "â â ™â ‘â Ÿâ ¥â â žâ ‘" }, { "input": "adequately", "output": "â â ™â ‘â Ÿâ ¥â â žâ ‘⠇⠽" }, { "input": "adhere", "output": "â â ™â â “" }, { "input": "adhered", "output": "â â ™â “⠻⠫" }, { "input": "adherence", "output": "â â ™â “⠻⠰⠑" }, { "input": "adherent", "output": "â â ™â “⠻⠢⠞" }, { "input": "adherents", "output": "â â ™â “⠻⠢⠞⠎" }, { "input": "adheres", "output": "â â ™â â “â Ž" }, { "input": "adhering", "output": "â â ™â “⠻⠬" }, { "input": "adhesion", "output": "â â ™â “â ‘â ¨â " }, { "input": "adhesive", "output": "â â ™â “â ‘â Žâ Šâ §â ‘" }, { "input": "adhesives", "output": "â â ™â “â ‘â Žâ Šâ §â ‘â Ž" }, { "input": "adiabatic", "output": "â â ™â Šâ â ƒâ â žâ Šâ ‰" }, { "input": "adieu", "output": "â â ™â Šâ ‘â ¥" }, { "input": "adieus", "output": "â â ™â Šâ ‘⠥⠎" }, { "input": "adieux", "output": "â â ™â Šâ ‘⠥⠭" }, { "input": "adipose", "output": "â â ™â Šâ â •â Žâ ‘" }, { "input": "adiós", "output": "â â ™â Šâ  â ˜â »â â ¡â ¼â ‰â Ž" }, { "input": "adjacent", "output": "â â ™â šâ â ‰â ¢â ž" }, { "input": "adjacently", "output": "â â ™â šâ â ‰â ¢â žâ ‡â ½" }, { "input": "adjectival", "output": "â â ™â šâ ‘⠉⠞⠊⠧â â ‡" }, { "input": "adjectivally", "output": "â â ™â šâ ‘⠉⠞⠊⠧â â ‡â ‡â ½" }, { "input": "adjective", "output": "â â ™â šâ ‘⠉⠞⠊⠧⠑" }, { "input": "adjectives", "output": "â â ™â šâ ‘⠉⠞⠊⠧⠑⠎" }, { "input": "adjoin", "output": "â â ™â šâ •â ”" }, { "input": "adjoined", "output": "â â ™â šâ •⠔⠫" }, { "input": "adjoining", "output": "â â ™â šâ •⠔⠬" }, { "input": "adjoins", "output": "â â ™â šâ •⠔⠎" }, { "input": "adjourn", "output": "â â ™â šâ ³â —â " }, { "input": "adjourned", "output": "â â ™â šâ ³â —â â «" }, { "input": "adjourning", "output": "â â ™â šâ ³â —â â ¬" }, { "input": "adjournment", "output": "â â ™â šâ ³â —â â °â ž" }, { "input": "adjournments", "output": "â â ™â šâ ³â —â â °â žâ Ž" }, { "input": "adjourns", "output": "â â ™â šâ ³â —â â Ž" }, { "input": "adjudge", "output": "â â ™â šâ ¥â ™â ›â ‘" }, { "input": "adjudged", "output": "â â ™â šâ ¥â ™â ›â «" }, { "input": "adjudges", "output": "â â ™â šâ ¥â ™â ›â ‘â Ž" }, { "input": "adjudging", "output": "â â ™â šâ ¥â ™â ›â ¬" }, { "input": "adjudicate", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ ‘" }, { "input": "adjudicated", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ «" }, { "input": "adjudicates", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "adjudicating", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ ¬" }, { "input": "adjudication", "output": "â â ™â šâ ¥â ™â Šâ ‰â â °â " }, { "input": "adjudicator", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ •â —" }, { "input": "adjudicators", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ •â —â Ž" }, { "input": "adjunct", "output": "â â ™â šâ ¥â â ‰â ž" }, { "input": "adjuncts", "output": "â â ™â šâ ¥â â ‰â žâ Ž" }, { "input": "adjuration", "output": "â â ™â šâ ¥â —â â °â " }, { "input": "adjurations", "output": "â â ™â šâ ¥â —â â °â â Ž" }, { "input": "adjure", "output": "â â ™â šâ ¥â —â ‘" }, { "input": "adjured", "output": "â â ™â šâ ¥â —â «" }, { "input": "adjures", "output": "â â ™â šâ ¥â —â ‘â Ž" }, { "input": "adjuring", "output": "â â ™â šâ ¥â —â ¬" }, { "input": "adjust", "output": "â â ™â šâ ¥â Œ" }, { "input": "adjustable", "output": "â â ™â šâ ¥â Œâ â ƒâ ‡â ‘" }, { "input": "adjusted", "output": "â â ™â šâ ¥â Œâ «" }, { "input": "adjuster", "output": "â â ™â šâ ¥â Œâ »" }, { "input": "adjusters", "output": "â â ™â šâ ¥â Œâ »â Ž" }, { "input": "adjusting", "output": "â â ™â šâ ¥â Œâ ¬" }, { "input": "adjustment", "output": "â â ™â šâ ¥â Œâ °â ž" }, { "input": "adjustments", "output": "â â ™â šâ ¥â Œâ °â žâ Ž" }, { "input": "adjustor", "output": "â â ™â šâ ¥â Œâ •â —" }, { "input": "adjustors", "output": "â â ™â šâ ¥â Œâ •â —â Ž" }, { "input": "adjusts", "output": "â â ™â šâ ¥â Œâ Ž" }, { "input": "adjutant", "output": "â â ™â šâ ¥â žâ â â ž" }, { "input": "adjutants", "output": "â â ™â šâ ¥â žâ â â žâ Ž" }, { "input": "adman", "output": "â â ™â â â " }, { "input": "admen", "output": "â â ™â â ¢" }, { "input": "administer", "output": "â â ™â â ”⠊⠌⠻" }, { "input": "administered", "output": "â â ™â â ”⠊⠌⠻⠫" }, { "input": "administering", "output": "â â ™â â ”⠊⠌⠻⠬" }, { "input": "administers", "output": "â â ™â â ”⠊⠌⠻⠎" }, { "input": "administrate", "output": "â â ™â â ”⠊⠌⠗â â žâ ‘" }, { "input": "administrated", "output": "â â ™â â ”⠊⠌⠗â â žâ «" }, { "input": "administrates", "output": "â â ™â â ”⠊⠌⠗â â žâ ‘â Ž" }, { "input": "administrating", "output": "â â ™â â ”⠊⠌⠗â â žâ ¬" }, { "input": "administration", "output": "â â ™â â ”⠊⠌⠗â â °â " }, { "input": "administrations", "output": "â â ™â â ”⠊⠌⠗â â °â â Ž" }, { "input": "administrative", "output": "â â ™â â ”⠊⠌⠗â â žâ Šâ §â ‘" }, { "input": "administratively", "output": "â â ™â â ”⠊⠌⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "administrator", "output": "â â ™â â ”⠊⠌⠗â â žâ •â —" }, { "input": "administrators", "output": "â â ™â â ”⠊⠌⠗â â žâ •â —â Ž" }, { "input": "admirable", "output": "â â ™â â Šâ —â â ƒâ ‡â ‘" }, { "input": "admirably", "output": "â â ™â â Šâ —â â ƒâ ‡â ½" }, { "input": "admiral", "output": "â â ™â â Šâ —â â ‡" }, { "input": "admirals", "output": "â â ™â â Šâ —â â ‡â Ž" }, { "input": "admiralty", "output": "â â ™â â Šâ —â â ‡â žâ ½" }, { "input": "admiration", "output": "â â ™â â Šâ —â â °â " }, { "input": "admire", "output": "â â ™â â Šâ —â ‘" }, { "input": "admired", "output": "â â ™â â Šâ —â «" }, { "input": "admirer", "output": "â â ™â â Šâ —â »" }, { "input": "admirers", "output": "â â ™â â Šâ —⠻⠎" }, { "input": "admires", "output": "â â ™â â Šâ —â ‘â Ž" }, { "input": "admiring", "output": "â â ™â â Šâ —â ¬" }, { "input": "admiringly", "output": "â â ™â â Šâ —⠬⠇⠽" }, { "input": "admissibility", "output": "â â ™â â Šâ Žâ Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "admissible", "output": "â â ™â â Šâ Žâ Žâ Šâ ƒâ ‡â ‘" }, { "input": "admission", "output": "â â ™â â Šâ Žâ ¨â " }, { "input": "admissions", "output": "â â ™â â Šâ Žâ ¨â â Ž" }, { "input": "admit", "output": "â â ™â â Šâ ž" }, { "input": "admits", "output": "â â ™â â Šâ žâ Ž" }, { "input": "admittance", "output": "â â ™â â Šâ žâ žâ ¨â ‘" }, { "input": "admitted", "output": "â â ™â â Šâ žâ žâ «" }, { "input": "admittedly", "output": "â â ™â â Šâ žâ žâ «â ‡â ½" }, { "input": "admitting", "output": "â â ™â â Šâ žâ žâ ¬" }, { "input": "admixture", "output": "â â ™â â Šâ ­â žâ ¥â —â ‘" }, { "input": "admixtures", "output": "â â ™â â Šâ ­â žâ ¥â —â ‘â Ž" }, { "input": "admonish", "output": "â â ™â â •â â Šâ ©" }, { "input": "admonished", "output": "â â ™â â •â â Šâ ©â «" }, { "input": "admonishes", "output": "â â ™â â •â â Šâ ©â ‘â Ž" }, { "input": "admonishing", "output": "â â ™â â •â â Šâ ©â ¬" }, { "input": "admonishment", "output": "â â ™â â •â â Šâ ©â °â ž" }, { "input": "admonishments", "output": "â â ™â â •â â Šâ ©â °â žâ Ž" }, { "input": "admonition", "output": "â â ™â â •â â Šâ °â " }, { "input": "admonitions", "output": "â â ™â â •â â Šâ °â â Ž" }, { "input": "admonitory", "output": "â â ™â â •â â Šâ žâ •â —â ½" }, { "input": "ado", "output": "â â ™â •" }, { "input": "adobe", "output": "â â ™â •⠃⠑" }, { "input": "adobes", "output": "â â ™â •⠃⠑⠎" }, { "input": "adolescence", "output": "â â ™â •⠇⠑⠎⠉⠰⠑" }, { "input": "adolescences", "output": "â â ™â •⠇⠑⠎⠉⠰⠑⠎" }, { "input": "adolescent", "output": "â â ™â •⠇⠑⠎⠉⠢⠞" }, { "input": "adolescents", "output": "â â ™â •⠇⠑⠎⠉⠢⠞⠎" }, { "input": "adopt", "output": "â â ™â •â â ž" }, { "input": "adopted", "output": "â â ™â •â â žâ «" }, { "input": "adopting", "output": "â â ™â •â â žâ ¬" }, { "input": "adoption", "output": "â â ™â •â â °â " }, { "input": "adoptions", "output": "â â ™â •â â °â â Ž" }, { "input": "adoptive", "output": "â â ™â •â â žâ Šâ §â ‘" }, { "input": "adopts", "output": "â â ™â •â â žâ Ž" }, { "input": "adorable", "output": "â â ™â •â —â â ƒâ ‡â ‘" }, { "input": "adorably", "output": "â â ™â •â —â â ƒâ ‡â ½" }, { "input": "adoration", "output": "â â ™â •â —â â °â " }, { "input": "adore", "output": "â â ™â •â —â ‘" }, { "input": "adored", "output": "â â ™â •â —â «" }, { "input": "adores", "output": "â â ™â •â —â ‘â Ž" }, { "input": "adoring", "output": "â â ™â •â —â ¬" }, { "input": "adoringly", "output": "â â ™â •⠗⠬⠇⠽" }, { "input": "adorn", "output": "â â ™â •â —â " }, { "input": "adorned", "output": "â â ™â •â —â â «" }, { "input": "adorning", "output": "â â ™â •â —â â ¬" }, { "input": "adornment", "output": "â â ™â •â —â â °â ž" }, { "input": "adornments", "output": "â â ™â •â —â â °â žâ Ž" }, { "input": "adorns", "output": "â â ™â •â —â â Ž" }, { "input": "adrenal", "output": "â â ™â —â ¢â â ‡" }, { "input": "adrenaline", "output": "â â ™â —â ¢â â ‡â ”â ‘" }, { "input": "adrenals", "output": "â â ™â —â ¢â â ‡â Ž" }, { "input": "adrift", "output": "â â ™â —â Šâ ‹â ž" }, { "input": "adroit", "output": "â â ™â —â •â Šâ ž" }, { "input": "adroitly", "output": "â â ™â —⠕⠊⠞⠇⠽" }, { "input": "adroitness", "output": "â â ™â —â •â Šâ žâ °â Ž" }, { "input": "ads", "output": "â â ™â Ž" }, { "input": "adulate", "output": "â â ™â ¥â ‡â â žâ ‘" }, { "input": "adulated", "output": "â â ™â ¥â ‡â â žâ «" }, { "input": "adulates", "output": "â â ™â ¥â ‡â â žâ ‘â Ž" }, { "input": "adulating", "output": "â â ™â ¥â ‡â â žâ ¬" }, { "input": "adulation", "output": "â â ™â ¥â ‡â â °â " }, { "input": "adult", "output": "â â ™â ¥â ‡â ž" }, { "input": "adulterant", "output": "â â ™â ¥â ‡â žâ »â â â ž" }, { "input": "adulterants", "output": "â â ™â ¥â ‡â žâ »â â â žâ Ž" }, { "input": "adulterate", "output": "â â ™â ¥â ‡â žâ »â â žâ ‘" }, { "input": "adulterated", "output": "â â ™â ¥â ‡â žâ »â â žâ «" }, { "input": "adulterates", "output": "â â ™â ¥â ‡â žâ »â â žâ ‘â Ž" }, { "input": "adulterating", "output": "â â ™â ¥â ‡â žâ »â â žâ ¬" }, { "input": "adulteration", "output": "â â ™â ¥â ‡â žâ »â â °â " }, { "input": "adulterer", "output": "â â ™â ¥â ‡â žâ »â »" }, { "input": "adulterers", "output": "â â ™â ¥â ‡â žâ »â »â Ž" }, { "input": "adulteress", "output": "â â ™â ¥â ‡â žâ »â ‘â Žâ Ž" }, { "input": "adulteresses", "output": "â â ™â ¥â ‡â žâ »â ‘â Žâ Žâ ‘â Ž" }, { "input": "adulteries", "output": "â â ™â ¥â ‡â žâ »â Šâ ‘â Ž" }, { "input": "adulterous", "output": "â â ™â ¥â ‡â žâ »â ³â Ž" }, { "input": "adultery", "output": "â â ™â ¥â ‡â žâ »â ½" }, { "input": "adulthood", "output": "â â ™â ¥â ‡â žâ “â •â •â ™" }, { "input": "adults", "output": "â â ™â ¥â ‡â žâ Ž" }, { "input": "adumbrate", "output": "â â ™â ¥â â ƒâ —â â žâ ‘" }, { "input": "adumbrated", "output": "â â ™â ¥â â ƒâ —â â žâ «" }, { "input": "adumbrates", "output": "â â ™â ¥â â ƒâ —â â žâ ‘â Ž" }, { "input": "adumbrating", "output": "â â ™â ¥â â ƒâ —â â žâ ¬" }, { "input": "adumbration", "output": "â â ™â ¥â â ƒâ —â â °â " }, { "input": "advance", "output": "â â ™â §â ¨â ‘" }, { "input": "advanced", "output": "â â ™â §â ¨â ‘â ™" }, { "input": "advancement", "output": "â â ™â §â ¨â ‘â °â ž" }, { "input": "advancements", "output": "â â ™â §â ¨â ‘â °â žâ Ž" }, { "input": "advances", "output": "â â ™â §â ¨â ‘â Ž" }, { "input": "advancing", "output": "â â ™â §â â â ‰â ¬" }, { "input": "advantage", "output": "â â ™â §â â â žâ â ›â ‘" }, { "input": "advantaged", "output": "â â ™â §â â â žâ â ›â «" }, { "input": "advantageous", "output": "â â ™â §â â â žâ â ›â ‘⠳⠎" }, { "input": "advantageously", "output": "â â ™â §â â â žâ â ›â ‘⠳⠎⠇⠽" }, { "input": "advantages", "output": "â â ™â §â â â žâ â ›â ‘â Ž" }, { "input": "advantaging", "output": "â â ™â §â â â žâ â ›â ¬" }, { "input": "advent", "output": "â â ™â §â ¢â ž" }, { "input": "adventitious", "output": "â â ™â §â ¢â žâ Šâ žâ Šâ ³â Ž" }, { "input": "advents", "output": "â â ™â §â ¢â žâ Ž" }, { "input": "adventure", "output": "â â ™â §â ¢â žâ ¥â —â ‘" }, { "input": "adventured", "output": "â â ™â §â ¢â žâ ¥â —â «" }, { "input": "adventurer", "output": "â â ™â §â ¢â žâ ¥â —â »" }, { "input": "adventurers", "output": "â â ™â §â ¢â žâ ¥â —⠻⠎" }, { "input": "adventures", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Ž" }, { "input": "adventuresome", "output": "â â ™â §â ¢â žâ ¥â —â ‘â â Ž" }, { "input": "adventuress", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Žâ Ž" }, { "input": "adventuresses", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "adventuring", "output": "â â ™â §â ¢â žâ ¥â —â ¬" }, { "input": "adventurous", "output": "â â ™â §â ¢â žâ ¥â —⠳⠎" }, { "input": "adventurously", "output": "â â ™â §â ¢â žâ ¥â —⠳⠎⠇⠽" }, { "input": "adverb", "output": "â â ™â §â »â ƒ" }, { "input": "adverbial", "output": "â â ™â §â »â ƒâ Šâ â ‡" }, { "input": "adverbials", "output": "â â ™â §â »â ƒâ Šâ â ‡â Ž" }, { "input": "adverbs", "output": "â â ™â §â »â ƒâ Ž" }, { "input": "adversarial", "output": "â â ™â §â »â Žâ œâ Šâ â ‡" }, { "input": "adversaries", "output": "â â ™â §â »â Žâ œâ Šâ ‘â Ž" }, { "input": "adversary", "output": "â â ™â §â »â Žâ œâ ½" }, { "input": "adverse", "output": "â â ™â §â »â Žâ ‘" }, { "input": "adversely", "output": "â â ™â §â »â Žâ ‘⠇⠽" }, { "input": "adverser", "output": "â â ™â §â »â Žâ »" }, { "input": "adversest", "output": "â â ™â §â »â Žâ ‘â Œ" }, { "input": "adversities", "output": "â â ™â §â »â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "adversity", "output": "â â ™â §â »â Žâ °â ½" }, { "input": "advert", "output": "â â ™â §â »â ž" }, { "input": "adverted", "output": "â â ™â §â »â žâ «" }, { "input": "adverting", "output": "â â ™â §â »â žâ ¬" }, { "input": "advertise", "output": "â â ™â §â »â žâ Šâ Žâ ‘" }, { "input": "advertised", "output": "â â ™â §â »â žâ Šâ Žâ «" }, { "input": "advertisement", "output": "â â ™â §â »â žâ Šâ Žâ ‘â °â ž" }, { "input": "advertisements", "output": "â â ™â §â »â žâ Šâ Žâ ‘â °â žâ Ž" }, { "input": "advertiser", "output": "â â ™â §â »â žâ Šâ Žâ »" }, { "input": "advertisers", "output": "â â ™â §â »â žâ Šâ Žâ »â Ž" }, { "input": "advertises", "output": "â â ™â §â »â žâ Šâ Žâ ‘â Ž" }, { "input": "advertising", "output": "â â ™â §â »â žâ Šâ Žâ ¬" }, { "input": "adverts", "output": "â â ™â §â »â žâ Ž" }, { "input": "advice", "output": "â â ™â §â Šâ ‰â ‘" }, { "input": "advisability", "output": "â â ™â §â Šâ Žâ â ƒâ Šâ ‡â °â ½" }, { "input": "advisable", "output": "â â ™â §â Šâ Žâ â ƒâ ‡â ‘" }, { "input": "advise", "output": "â â ™â §â Šâ Žâ ‘" }, { "input": "advised", "output": "â â ™â §â Šâ Žâ «" }, { "input": "advisedly", "output": "â â ™â §â Šâ Žâ «â ‡â ½" }, { "input": "advisement", "output": "â â ™â §â Šâ Žâ ‘â °â ž" }, { "input": "adviser", "output": "â â ™â §â Šâ Žâ »" }, { "input": "advisers", "output": "â â ™â §â Šâ Žâ »â Ž" }, { "input": "advises", "output": "â â ™â §â Šâ Žâ ‘â Ž" }, { "input": "advising", "output": "â â ™â §â Šâ Žâ ¬" }, { "input": "advisor", "output": "â â ™â §â Šâ Žâ •â —" }, { "input": "advisories", "output": "â â ™â §â Šâ Žâ •â —â Šâ ‘â Ž" }, { "input": "advisors", "output": "â â ™â §â Šâ Žâ •â —â Ž" }, { "input": "advisory", "output": "â â ™â §â Šâ Žâ •â —â ½" }, { "input": "advocacy", "output": "â â ™â §â •â ‰â â ‰â ½" }, { "input": "advocate", "output": "â â ™â §â •â ‰â â žâ ‘" }, { "input": "advocated", "output": "â â ™â §â •â ‰â â žâ «" }, { "input": "advocates", "output": "â â ™â §â •â ‰â â žâ ‘â Ž" }, { "input": "advocating", "output": "â â ™â §â •â ‰â â žâ ¬" }, { "input": "adz", "output": "â â ™â µ" }, { "input": "adze", "output": "â â ™â µâ ‘" }, { "input": "adzes", "output": "â â ™â µâ ‘â Ž" }, { "input": "aegis", "output": "â â ‘⠛⠊⠎" }, { "input": "aeon", "output": "â â ‘â •â " }, { "input": "aeons", "output": "â â ‘â •â â Ž" }, { "input": "aerate", "output": "â â »â â žâ ‘" }, { "input": "aerated", "output": "â â »â â žâ «" }, { "input": "aerates", "output": "â â »â â žâ ‘â Ž" }, { "input": "aerating", "output": "â â »â â žâ ¬" }, { "input": "aeration", "output": "â â »â â °â " }, { "input": "aerator", "output": "â â »â â žâ •â —" }, { "input": "aerators", "output": "â â »â â žâ •â —â Ž" }, { "input": "aerial", "output": "â â »â Šâ â ‡" }, { "input": "aerialist", "output": "â â »â Šâ â ‡â Šâ Œ" }, { "input": "aerialists", "output": "â â »â Šâ â ‡â Šâ Œâ Ž" }, { "input": "aerials", "output": "â â »â Šâ â ‡â Ž" }, { "input": "aerie", "output": "â â »â Šâ ‘" }, { "input": "aeries", "output": "â â »â Šâ ‘â Ž" }, { "input": "aerobatics", "output": "â â »â •â ƒâ â žâ Šâ ‰â Ž" }, { "input": "aerobic", "output": "â â »â •⠃⠊⠉" }, { "input": "aerobics", "output": "â â »â •⠃⠊⠉⠎" }, { "input": "aerodynamic", "output": "â â »â •⠙⠽â â â â Šâ ‰" }, { "input": "aerodynamically", "output": "â â »â •⠙⠽â â â â Šâ ‰â â ‡â ‡â ½" }, { "input": "aerodynamics", "output": "â â »â •⠙⠽â â â â Šâ ‰â Ž" }, { "input": "aeronautical", "output": "â â »â •â â â ¥â žâ Šâ ‰â â ‡" }, { "input": "aeronautics", "output": "â â »â •â â â ¥â žâ Šâ ‰â Ž" }, { "input": "aerosol", "output": "â â »â •â Žâ •â ‡" }, { "input": "aerosols", "output": "â â »â •⠎⠕⠇⠎" }, { "input": "aerospace", "output": "â â »â •â Žâ â â ‰â ‘" }, { "input": "aery", "output": "â â »â ½" }, { "input": "aesthete", "output": "â â ‘⠎⠮⠞⠑" }, { "input": "aesthetes", "output": "â â ‘⠎⠮⠞⠑⠎" }, { "input": "aesthetic", "output": "â â ‘⠎⠮⠞⠊⠉" }, { "input": "aesthetically", "output": "â â ‘⠎⠮⠞⠊⠉â â ‡â ‡â ½" }, { "input": "aesthetics", "output": "â â ‘⠎⠮⠞⠊⠉⠎" }, { "input": "afar", "output": "â â ‹â œ" }, { "input": "affability", "output": "â â –â â ƒâ Šâ ‡â °â ½" }, { "input": "affable", "output": "â â –â â ƒâ ‡â ‘" }, { "input": "affably", "output": "â â –â â ƒâ ‡â ½" }, { "input": "affair", "output": "â â –â â Šâ —" }, { "input": "affairs", "output": "â â –â â Šâ —â Ž" }, { "input": "affect", "output": "â â –⠑⠉⠞" }, { "input": "affectation", "output": "â â –⠑⠉⠞â â °â " }, { "input": "affectations", "output": "â â –⠑⠉⠞â â °â â Ž" }, { "input": "affected", "output": "â â –⠑⠉⠞⠫" }, { "input": "affecting", "output": "â â –⠑⠉⠞⠬" }, { "input": "affection", "output": "â â –⠑⠉⠰â " }, { "input": "affectionate", "output": "â â –⠑⠉⠰â â â žâ ‘" }, { "input": "affectionately", "output": "â â –⠑⠉⠰â â â žâ ‘⠇⠽" }, { "input": "affections", "output": "â â –⠑⠉⠰â â Ž" }, { "input": "affects", "output": "â â –⠑⠉⠞⠎" }, { "input": "affidavit", "output": "â â –â Šâ ™â â §â Šâ ž" }, { "input": "affidavits", "output": "â â –â Šâ ™â â §â Šâ žâ Ž" }, { "input": "affiliate", "output": "â â –⠊⠇⠊â â žâ ‘" }, { "input": "affiliated", "output": "â â –⠊⠇⠊â â žâ «" }, { "input": "affiliates", "output": "â â –⠊⠇⠊â â žâ ‘â Ž" }, { "input": "affiliating", "output": "â â –⠊⠇⠊â â žâ ¬" }, { "input": "affiliation", "output": "â â –⠊⠇⠊â â °â " }, { "input": "affiliations", "output": "â â –⠊⠇⠊â â °â â Ž" }, { "input": "affinities", "output": "â â –⠔⠊⠞⠊⠑⠎" }, { "input": "affinity", "output": "â â –⠔⠰⠽" }, { "input": "affirm", "output": "â â –â Šâ —â " }, { "input": "affirmation", "output": "â â –â Šâ —â â â °â " }, { "input": "affirmations", "output": "â â –â Šâ —â â â °â â Ž" }, { "input": "affirmative", "output": "â â –â Šâ —â â â žâ Šâ §â ‘" }, { "input": "affirmatively", "output": "â â –â Šâ —â â â žâ Šâ §â ‘⠇⠽" }, { "input": "affirmatives", "output": "â â –â Šâ —â â â žâ Šâ §â ‘â Ž" }, { "input": "affirmed", "output": "â â –â Šâ —â â «" }, { "input": "affirming", "output": "â â –â Šâ —â â ¬" }, { "input": "affirms", "output": "â â –â Šâ —â â Ž" }, { "input": "affix", "output": "â â –â Šâ ­" }, { "input": "affixed", "output": "â â –â Šâ ­â «" }, { "input": "affixes", "output": "â â –â Šâ ­â ‘â Ž" }, { "input": "affixing", "output": "â â –â Šâ ­â ¬" }, { "input": "afflict", "output": "â â –⠇⠊⠉⠞" }, { "input": "afflicted", "output": "â â –⠇⠊⠉⠞⠫" }, { "input": "afflicting", "output": "â â –⠇⠊⠉⠞⠬" }, { "input": "affliction", "output": "â â –⠇⠊⠉⠰â " }, { "input": "afflictions", "output": "â â –⠇⠊⠉⠰â â Ž" }, { "input": "afflicts", "output": "â â –⠇⠊⠉⠞⠎" }, { "input": "affluence", "output": "â â –⠇⠥⠰⠑" }, { "input": "affluent", "output": "â â –⠇⠥⠢⠞" }, { "input": "affluently", "output": "â â –⠇⠥⠢⠞⠇⠽" }, { "input": "afford", "output": "â â ‹â ¿â ™" }, { "input": "affordable", "output": "â â ‹â ¿â ™â â ƒâ ‡â ‘" }, { "input": "afforded", "output": "â â ‹â ¿â ™â «" }, { "input": "affording", "output": "â â ‹â ¿â ™â ¬" }, { "input": "affords", "output": "â â ‹â ¿â ™â Ž" }, { "input": "afforest", "output": "â â ‹â ¿â ‘â Œ" }, { "input": "afforestation", "output": "â â ‹â ¿â ‘â Œâ â °â " }, { "input": "afforested", "output": "â â ‹â ¿â ‘⠌⠫" }, { "input": "afforesting", "output": "â â ‹â ¿â ‘⠌⠬" }, { "input": "afforests", "output": "â â ‹â ¿â ‘⠌⠎" }, { "input": "affray", "output": "â â –â —â â ½" }, { "input": "affrays", "output": "â â –â —â â ½â Ž" }, { "input": "affront", "output": "â â –â —â •â â ž" }, { "input": "affronted", "output": "â â –â —â •â â žâ «" }, { "input": "affronting", "output": "â â –â —â •â â žâ ¬" }, { "input": "affronts", "output": "â â –â —â •â â žâ Ž" }, { "input": "afghan", "output": "â â ‹â £â â " }, { "input": "afghans", "output": "â â ‹â £â â â Ž" }, { "input": "aficionado", "output": "â â ‹â Šâ ‰â Šâ •â â â ™â •" }, { "input": "aficionados", "output": "â â ‹â Šâ ‰â Šâ •â â â ™â •â Ž" }, { "input": "afield", "output": "â â ‹â Šâ ‘⠇⠙" }, { "input": "afire", "output": "â â ‹â Šâ —â ‘" }, { "input": "aflame", "output": "â â ‹â ‡â â â ‘" }, { "input": "afloat", "output": "â â ‹â ‡â •â â ž" }, { "input": "aflutter", "output": "â â ‹â ‡â ¥â žâ žâ »" }, { "input": "afoot", "output": "â â ‹â •â •â ž" }, { "input": "aforementioned", "output": "â â ¿â ‘â â ¢â °â â «" }, { "input": "aforesaid", "output": "â â ¿â ‘â Žâ ™" }, { "input": "aforethought", "output": "â â ¿â ‘â ¹â â ³" }, { "input": "afoul", "output": "â â ‹â ³â ‡" }, { "input": "afraid", "output": "â â ‹â —â â Šâ ™" }, { "input": "afresh", "output": "â â ‹â —â ‘â ©" }, { "input": "aft", "output": "â â ‹â ž" }, { "input": "after", "output": "â â ‹" }, { "input": "afterbirth", "output": "â â ‹â ƒâ Šâ —â ¹" }, { "input": "afterbirths", "output": "â â ‹â ƒâ Šâ —⠹⠎" }, { "input": "afterburner", "output": "â â ‹â ƒâ ¥â —â â »" }, { "input": "afterburners", "output": "â â ‹â ƒâ ¥â —â â »â Ž" }, { "input": "aftercare", "output": "â â ‹â ‰â œâ ‘" }, { "input": "aftereffect", "output": "â â ‹â žâ »â ‘⠖⠑⠉⠞" }, { "input": "aftereffects", "output": "â â ‹â žâ »â ‘⠖⠑⠉⠞⠎" }, { "input": "afterglow", "output": "â â ‹â ›â ‡â ª" }, { "input": "afterglows", "output": "â â ‹â ›â ‡â ªâ Ž" }, { "input": "afterlife", "output": "â â ‹â ‡â Šâ ‹â ‘" }, { "input": "afterlives", "output": "â â ‹â ‡â Šâ §â ‘â Ž" }, { "input": "aftermath", "output": "â â ‹â â â ¹" }, { "input": "aftermaths", "output": "â â ‹â â â ¹â Ž" }, { "input": "afternoon", "output": "â â ‹â " }, { "input": "afternoons", "output": "â â ‹â â Ž" }, { "input": "aftershave", "output": "â â ‹â ©â â §â ‘" }, { "input": "aftershaves", "output": "â â ‹â ©â â §â ‘â Ž" }, { "input": "aftershock", "output": "â â ‹â ©â •⠉⠅" }, { "input": "aftershocks", "output": "â â ‹â ©â •⠉⠅⠎" }, { "input": "aftertaste", "output": "â â ‹â žâ â Œâ ‘" }, { "input": "aftertastes", "output": "â â ‹â žâ â Œâ ‘â Ž" }, { "input": "afterthought", "output": "â â ‹â ¹â â ³" }, { "input": "afterthoughts", "output": "â â ‹â ¹â â ³â Ž" }, { "input": "afterward", "output": "â â ‹â º" }, { "input": "afterwards", "output": "â â ‹â ºâ Ž" }, { "input": "afterword", "output": "â â ‹â ˜â º" }, { "input": "afterwords", "output": "â â ‹â ˜â ºâ Ž" }, { "input": "again", "output": "â â ›" }, { "input": "against", "output": "â â ›â Œ" }, { "input": "agape", "output": "â â ›â â â ‘" }, { "input": "agar", "output": "â â ›â œ" }, { "input": "agate", "output": "â â ›â â žâ ‘" }, { "input": "agates", "output": "â â ›â â žâ ‘â Ž" }, { "input": "agave", "output": "â â ›â â §â ‘" }, { "input": "age", "output": "â â ›â ‘" }, { "input": "aged", "output": "â â ›â «" }, { "input": "ageing", "output": "â â ›â ‘â ¬" }, { "input": "ageings", "output": "â â ›â ‘⠬⠎" }, { "input": "ageism", "output": "â â ›â ‘â Šâ Žâ " }, { "input": "ageless", "output": "â â ›â ‘⠨⠎" }, { "input": "agencies", "output": "â â ›â ¢â ‰â Šâ ‘â Ž" }, { "input": "agency", "output": "â â ›â ¢â ‰â ½" }, { "input": "agenda", "output": "â â ›â ¢â ™â " }, { "input": "agendas", "output": "â â ›â ¢â ™â â Ž" }, { "input": "agent", "output": "â â ›â ¢â ž" }, { "input": "agents", "output": "â â ›â ¢â žâ Ž" }, { "input": "ages", "output": "â â ›â ‘â Ž" }, { "input": "agglomerate", "output": "â â ¶â ‡â •â â »â â žâ ‘" }, { "input": "agglomerated", "output": "â â ¶â ‡â •â â »â â žâ «" }, { "input": "agglomerates", "output": "â â ¶â ‡â •â â »â â žâ ‘â Ž" }, { "input": "agglomerating", "output": "â â ¶â ‡â •â â »â â žâ ¬" }, { "input": "agglomeration", "output": "â â ¶â ‡â •â â »â â °â " }, { "input": "agglomerations", "output": "â â ¶â ‡â •â â »â â °â â Ž" }, { "input": "agglutinate", "output": "â â ¶â ‡â ¥â žâ ”â â žâ ‘" }, { "input": "agglutinated", "output": "â â ¶â ‡â ¥â žâ ”â â žâ «" }, { "input": "agglutinates", "output": "â â ¶â ‡â ¥â žâ ”â â žâ ‘â Ž" }, { "input": "agglutinating", "output": "â â ¶â ‡â ¥â žâ ”â â žâ ¬" }, { "input": "agglutination", "output": "â â ¶â ‡â ¥â žâ ”â â °â " }, { "input": "agglutinations", "output": "â â ¶â ‡â ¥â žâ ”â â °â â Ž" }, { "input": "aggrandize", "output": "â â ¶â —⠯⠊⠵⠑" }, { "input": "aggrandized", "output": "â â ¶â —⠯⠊⠵⠫" }, { "input": "aggrandizement", "output": "â â ¶â —⠯⠊⠵⠑⠰⠞" }, { "input": "aggrandizes", "output": "â â ¶â —⠯⠊⠵⠑⠎" }, { "input": "aggrandizing", "output": "â â ¶â —⠯⠊⠵⠬" }, { "input": "aggravate", "output": "â â ¶â —â â §â â žâ ‘" }, { "input": "aggravated", "output": "â â ¶â —â â §â â žâ «" }, { "input": "aggravates", "output": "â â ¶â —â â §â â žâ ‘â Ž" }, { "input": "aggravating", "output": "â â ¶â —â â §â â žâ ¬" }, { "input": "aggravation", "output": "â â ¶â —â â §â â °â " }, { "input": "aggravations", "output": "â â ¶â —â â §â â °â â Ž" }, { "input": "aggregate", "output": "â â ¶â —â ‘â ›â â žâ ‘" }, { "input": "aggregated", "output": "â â ¶â —â ‘â ›â â žâ «" }, { "input": "aggregates", "output": "â â ¶â —â ‘â ›â â žâ ‘â Ž" }, { "input": "aggregating", "output": "â â ¶â —â ‘â ›â â žâ ¬" }, { "input": "aggregation", "output": "â â ¶â —â ‘â ›â â °â " }, { "input": "aggregations", "output": "â â ¶â —â ‘â ›â â °â â Ž" }, { "input": "aggression", "output": "â â ¶â —â ‘â Žâ ¨â " }, { "input": "aggressive", "output": "â â ¶â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "aggressively", "output": "â â ¶â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "aggressiveness", "output": "â â ¶â —â ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "aggressor", "output": "â â ¶â —â ‘â Žâ Žâ •â —" }, { "input": "aggressors", "output": "â â ¶â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "aggrieve", "output": "â â ¶â —â Šâ ‘â §â ‘" }, { "input": "aggrieved", "output": "â â ¶â —â Šâ ‘â §â «" }, { "input": "aggrieves", "output": "â â ¶â —â Šâ ‘â §â ‘â Ž" }, { "input": "aggrieving", "output": "â â ¶â —â Šâ ‘â §â ¬" }, { "input": "aghast", "output": "â â £â â Œ" }, { "input": "agile", "output": "â â ›â Šâ ‡â ‘" }, { "input": "agilely", "output": "â â ›â Šâ ‡â ‘⠇⠽" }, { "input": "agiler", "output": "â â ›â Šâ ‡â »" }, { "input": "agilest", "output": "â â ›â Šâ ‡â ‘â Œ" }, { "input": "agility", "output": "â â ›â Šâ ‡â °â ½" }, { "input": "aging", "output": "â â ›â ¬" }, { "input": "agings", "output": "â â ›â ¬â Ž" }, { "input": "agism", "output": "â â ›â Šâ Žâ " }, { "input": "agitate", "output": "â â ›â Šâ žâ â žâ ‘" }, { "input": "agitated", "output": "â â ›â Šâ žâ â žâ «" }, { "input": "agitates", "output": "â â ›â Šâ žâ â žâ ‘â Ž" }, { "input": "agitating", "output": "â â ›â Šâ žâ â žâ ¬" }, { "input": "agitation", "output": "â â ›â Šâ žâ â °â " }, { "input": "agitations", "output": "â â ›â Šâ žâ â °â â Ž" }, { "input": "agitator", "output": "â â ›â Šâ žâ â žâ •â —" }, { "input": "agitators", "output": "â â ›â Šâ žâ â žâ •â —â Ž" }, { "input": "agleam", "output": "â â ›â ‡â ‚â " }, { "input": "aglitter", "output": "â â ›â ‡â Šâ žâ žâ »" }, { "input": "aglow", "output": "â â ›â ‡â ª" }, { "input": "agnostic", "output": "â â ›â â •⠌⠊⠉" }, { "input": "agnosticism", "output": "â â ›â â •⠌⠊⠉⠊⠎â " }, { "input": "agnostics", "output": "â â ›â â •⠌⠊⠉⠎" }, { "input": "ago", "output": "â â ›â •" }, { "input": "agog", "output": "â â ›â •â ›" }, { "input": "agonies", "output": "â â ›â •â â Šâ ‘â Ž" }, { "input": "agonize", "output": "â â ›â •â â Šâ µâ ‘" }, { "input": "agonized", "output": "â â ›â •â â Šâ µâ «" }, { "input": "agonizes", "output": "â â ›â •â â Šâ µâ ‘â Ž" }, { "input": "agonizing", "output": "â â ›â •â â Šâ µâ ¬" }, { "input": "agonizingly", "output": "â â ›â •â â Šâ µâ ¬â ‡â ½" }, { "input": "agony", "output": "â â ›â •â â ½" }, { "input": "agrarian", "output": "â â ›â —⠜⠊â â " }, { "input": "agrarians", "output": "â â ›â —⠜⠊â â â Ž" }, { "input": "agree", "output": "â â ›â —â ‘â ‘" }, { "input": "agreeable", "output": "â â ›â —⠑⠂⠃⠇⠑" }, { "input": "agreeably", "output": "â â ›â —⠑⠂⠃⠇⠽" }, { "input": "agreed", "output": "â â ›â —â ‘â «" }, { "input": "agreeing", "output": "â â ›â —â ‘â ‘â ¬" }, { "input": "agreement", "output": "â â ›â —â ‘â ‘â °â ž" }, { "input": "agreements", "output": "â â ›â —â ‘â ‘â °â žâ Ž" }, { "input": "agrees", "output": "â â ›â —â ‘â ‘â Ž" }, { "input": "agribusiness", "output": "â â ›â —⠊⠃⠥⠎⠊⠰⠎" }, { "input": "agribusinesses", "output": "â â ›â —⠊⠃⠥⠎⠊⠰⠎⠑⠎" }, { "input": "agricultural", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "agriculturalist", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡â Šâ Œ" }, { "input": "agriculturalists", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡â Šâ Œâ Ž" }, { "input": "agriculture", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠑" }, { "input": "agronomist", "output": "â â ›â —â •â â •â â Šâ Œ" }, { "input": "agronomists", "output": "â â ›â —â •â â •â â Šâ Œâ Ž" }, { "input": "agronomy", "output": "â â ›â —â •â â •â â ½" }, { "input": "aground", "output": "â â ›â —⠨⠙" }, { "input": "ague", "output": "â â ›â ¥â ‘" }, { "input": "ah", "output": "â â “" }, { "input": "aha", "output": "â â “â " }, { "input": "ahead", "output": "â â “â ‚â ™" }, { "input": "ahem", "output": "â â “â ‘â " }, { "input": "ahoy", "output": "â â “â •â ½" }, { "input": "aid", "output": "â â Šâ ™" }, { "input": "aide", "output": "â â Šâ ™â ‘" }, { "input": "aided", "output": "â â Šâ ™â «" }, { "input": "aides", "output": "â â Šâ ™â ‘â Ž" }, { "input": "aiding", "output": "â â Šâ ™â ¬" }, { "input": "aids", "output": "â â Šâ ™â Ž" }, { "input": "ail", "output": "â â Šâ ‡" }, { "input": "ailed", "output": "â â Šâ ‡â «" }, { "input": "aileron", "output": "â â Šâ ‡â »â •â " }, { "input": "ailerons", "output": "â â Šâ ‡â »â •â â Ž" }, { "input": "ailing", "output": "â â Šâ ‡â ¬" }, { "input": "ailment", "output": "â â Šâ ‡â °â ž" }, { "input": "ailments", "output": "â â Šâ ‡â °â žâ Ž" }, { "input": "ails", "output": "â â Šâ ‡â Ž" }, { "input": "aim", "output": "â â Šâ " }, { "input": "aimed", "output": "â â Šâ â «" }, { "input": "aiming", "output": "â â Šâ â ¬" }, { "input": "aimless", "output": "â â Šâ â ¨â Ž" }, { "input": "aimlessly", "output": "â â Šâ â ¨â Žâ ‡â ½" }, { "input": "aimlessness", "output": "â â Šâ â ¨â Žâ °â Ž" }, { "input": "aims", "output": "â â Šâ â Ž" }, { "input": "air", "output": "â â Šâ —" }, { "input": "airborne", "output": "â â Šâ —⠃⠕⠗â â ‘" }, { "input": "airbrush", "output": "â â Šâ —⠃⠗⠥⠩" }, { "input": "airbrushed", "output": "â â Šâ —⠃⠗⠥⠩⠫" }, { "input": "airbrushes", "output": "â â Šâ —⠃⠗⠥⠩⠑⠎" }, { "input": "airbrushing", "output": "â â Šâ —⠃⠗⠥⠩⠬" }, { "input": "aircraft", "output": "â â Šâ —⠉⠗â â ‹â ž" }, { "input": "airdrop", "output": "â â Šâ —⠙⠗⠕â " }, { "input": "airdropped", "output": "â â Šâ —⠙⠗⠕â â â «" }, { "input": "airdropping", "output": "â â Šâ —⠙⠗⠕â â â ¬" }, { "input": "airdrops", "output": "â â Šâ —⠙⠗⠕â â Ž" }, { "input": "aired", "output": "â â Šâ —â «" }, { "input": "airfare", "output": "â â Šâ —⠋⠜⠑" }, { "input": "airfares", "output": "â â Šâ —⠋⠜⠑⠎" }, { "input": "airfield", "output": "â â Šâ —⠋⠊⠑⠇⠙" }, { "input": "airfields", "output": "â â Šâ —⠋⠊⠑⠇⠙⠎" }, { "input": "airfoil", "output": "â â Šâ —â ‹â •â Šâ ‡" }, { "input": "airfoils", "output": "â â Šâ —⠋⠕⠊⠇⠎" }, { "input": "airhead", "output": "â â Šâ —â “â ‚â ™" }, { "input": "airheads", "output": "â â Šâ —⠓⠂⠙⠎" }, { "input": "airier", "output": "â â Šâ —â Šâ »" }, { "input": "airiest", "output": "â â Šâ —â Šâ ‘â Œ" }, { "input": "airily", "output": "â â Šâ —⠊⠇⠽" }, { "input": "airiness", "output": "â â Šâ —â Šâ °â Ž" }, { "input": "airing", "output": "â â Šâ —â ¬" }, { "input": "airings", "output": "â â Šâ —⠬⠎" }, { "input": "airless", "output": "â â Šâ —⠨⠎" }, { "input": "airlift", "output": "â â Šâ —⠇⠊⠋⠞" }, { "input": "airlifted", "output": "â â Šâ —⠇⠊⠋⠞⠫" }, { "input": "airlifting", "output": "â â Šâ —⠇⠊⠋⠞⠬" }, { "input": "airlifts", "output": "â â Šâ —⠇⠊⠋⠞⠎" }, { "input": "airline", "output": "â â Šâ —⠇⠔⠑" }, { "input": "airliner", "output": "â â Šâ —⠇⠔⠻" }, { "input": "airliners", "output": "â â Šâ —⠇⠔⠻⠎" }, { "input": "airlines", "output": "â â Šâ —⠇⠔⠑⠎" }, { "input": "airmail", "output": "â â Šâ —â â â Šâ ‡" }, { "input": "airmailed", "output": "â â Šâ —â â â Šâ ‡â «" }, { "input": "airmailing", "output": "â â Šâ —â â â Šâ ‡â ¬" }, { "input": "airmails", "output": "â â Šâ —â â â Šâ ‡â Ž" }, { "input": "airman", "output": "â â Šâ —â â â " }, { "input": "airmen", "output": "â â Šâ —â â ¢" }, { "input": "airplane", "output": "â â Šâ —â â ‡â â â ‘" }, { "input": "airplanes", "output": "â â Šâ —â â ‡â â â ‘â Ž" }, { "input": "airport", "output": "â â Šâ —â â •â —â ž" }, { "input": "airports", "output": "â â Šâ —â â •â —â žâ Ž" }, { "input": "airs", "output": "â â Šâ —â Ž" }, { "input": "airship", "output": "â â Šâ —â ©â Šâ " }, { "input": "airships", "output": "â â Šâ —â ©â Šâ â Ž" }, { "input": "airsick", "output": "â â Šâ —⠎⠊⠉⠅" }, { "input": "airsickness", "output": "â â Šâ —⠎⠊⠉⠅⠰⠎" }, { "input": "airspace", "output": "â â Šâ —â Žâ â â ‰â ‘" }, { "input": "airstrip", "output": "â â Šâ —⠌⠗⠊â " }, { "input": "airstrips", "output": "â â Šâ —⠌⠗⠊â â Ž" }, { "input": "airtight", "output": "â â Šâ —⠞⠊⠣⠞" }, { "input": "airwaves", "output": "â â Šâ —â ºâ â §â ‘â Ž" }, { "input": "airway", "output": "â â Šâ —â ºâ â ½" }, { "input": "airways", "output": "â â Šâ —â ºâ â ½â Ž" }, { "input": "airworthier", "output": "â â Šâ —⠺⠕⠗⠹⠊⠻" }, { "input": "airworthiest", "output": "â â Šâ —⠺⠕⠗⠹⠊⠑⠌" }, { "input": "airworthy", "output": "â â Šâ —⠺⠕⠗⠹⠽" }, { "input": "airy", "output": "â â Šâ —â ½" }, { "input": "aisle", "output": "â â Šâ Žâ ‡â ‘" }, { "input": "aisles", "output": "â â Šâ Žâ ‡â ‘â Ž" }, { "input": "ajar", "output": "â â šâ œ" }, { "input": "akimbo", "output": "â â …â Šâ â ƒâ •" }, { "input": "akin", "output": "â â …â ”" }, { "input": "alabaster", "output": "â â ‡â â ƒâ â Œâ »" }, { "input": "alacrity", "output": "â â ‡â â ‰â —â °â ½" }, { "input": "alarm", "output": "â â ‡â œâ " }, { "input": "alarmed", "output": "â â ‡â œâ â «" }, { "input": "alarming", "output": "â â ‡â œâ â ¬" }, { "input": "alarmingly", "output": "â â ‡â œâ â ¬â ‡â ½" }, { "input": "alarmist", "output": "â â ‡â œâ â Šâ Œ" }, { "input": "alarmists", "output": "â â ‡â œâ â Šâ Œâ Ž" }, { "input": "alarms", "output": "â â ‡â œâ â Ž" }, { "input": "alas", "output": "â â ‡â â Ž" }, { "input": "alb", "output": "â â ‡â ƒ" }, { "input": "albacore", "output": "â â ‡â ƒâ â ‰â •â —â ‘" }, { "input": "albacores", "output": "â â ‡â ƒâ â ‰â •â —â ‘â Ž" }, { "input": "albatross", "output": "â â ‡â ƒâ â žâ —â •â Žâ Ž" }, { "input": "albatrosses", "output": "â â ‡â ƒâ â žâ —â •â Žâ Žâ ‘â Ž" }, { "input": "albeit", "output": "â â ‡â ƒâ ‘â Šâ ž" }, { "input": "albino", "output": "â â ‡â ƒâ ”â •" }, { "input": "albinos", "output": "â â ‡â ƒâ ”â •â Ž" }, { "input": "albs", "output": "â â ‡â ƒâ Ž" }, { "input": "album", "output": "â â ‡â ƒâ ¥â " }, { "input": "albumen", "output": "â â ‡â ƒâ ¥â â ¢" }, { "input": "albumin", "output": "â â ‡â ƒâ ¥â â ”" }, { "input": "albums", "output": "â â ‡â ƒâ ¥â â Ž" }, { "input": "alchemist", "output": "â â ‡â ¡â ‘â â Šâ Œ" }, { "input": "alchemists", "output": "â â ‡â ¡â ‘â â Šâ Œâ Ž" }, { "input": "alchemy", "output": "â â ‡â ¡â ‘â â ½" }, { "input": "alcohol", "output": "â â ‡â ‰â •â “â •â ‡" }, { "input": "alcoholic", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠉" }, { "input": "alcoholics", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠉⠎" }, { "input": "alcoholism", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠎â " }, { "input": "alcohols", "output": "â â ‡â ‰â •⠓⠕⠇⠎" }, { "input": "alcove", "output": "â â ‡â ‰â •â §â ‘" }, { "input": "alcoves", "output": "â â ‡â ‰â •â §â ‘â Ž" }, { "input": "alder", "output": "â â ‡â ™â »" }, { "input": "alderman", "output": "â â ‡â ™â »â â â " }, { "input": "aldermen", "output": "â â ‡â ™â »â â ¢" }, { "input": "alders", "output": "â â ‡â ™â »â Ž" }, { "input": "alderwoman", "output": "â â ‡â ™â »â ºâ •â â â " }, { "input": "alderwomen", "output": "â â ‡â ™â »â ºâ •â â ¢" }, { "input": "ale", "output": "â â ‡â ‘" }, { "input": "alert", "output": "â â ‡â »â ž" }, { "input": "alerted", "output": "â â ‡â »â žâ «" }, { "input": "alerting", "output": "â â ‡â »â žâ ¬" }, { "input": "alertly", "output": "â â ‡â »â žâ ‡â ½" }, { "input": "alertness", "output": "â â ‡â »â žâ °â Ž" }, { "input": "alerts", "output": "â â ‡â »â žâ Ž" }, { "input": "ales", "output": "â â ‡â ‘â Ž" }, { "input": "alfalfa", "output": "â â ‡â ‹â â ‡â ‹â " }, { "input": "alfresco", "output": "â â ‡â ‹â —⠑⠎⠉⠕" }, { "input": "alga", "output": "â â ‡â ›â " }, { "input": "algae", "output": "â â ‡â ›â â ‘" }, { "input": "algebra", "output": "â â ‡â ›â ‘⠃⠗â " }, { "input": "algebraic", "output": "â â ‡â ›â ‘⠃⠗â â Šâ ‰" }, { "input": "algebraically", "output": "â â ‡â ›â ‘⠃⠗â â Šâ ‰â â ‡â ‡â ½" }, { "input": "algebras", "output": "â â ‡â ›â ‘⠃⠗â â Ž" }, { "input": "algorithm", "output": "â â ‡â ›â •â —â Šâ ¹â " }, { "input": "algorithmic", "output": "â â ‡â ›â •â —â Šâ ¹â â Šâ ‰" }, { "input": "algorithms", "output": "â â ‡â ›â •â —â Šâ ¹â â Ž" }, { "input": "alias", "output": "â â ‡â Šâ â Ž" }, { "input": "aliased", "output": "â â ‡â Šâ â Žâ «" }, { "input": "aliases", "output": "â â ‡â Šâ â Žâ ‘â Ž" }, { "input": "aliasing", "output": "â â ‡â Šâ â Žâ ¬" }, { "input": "alibi", "output": "â â ‡â Šâ ƒâ Š" }, { "input": "alibied", "output": "â â ‡â Šâ ƒâ Šâ «" }, { "input": "alibiing", "output": "â â ‡â Šâ ƒâ Šâ ¬" }, { "input": "alibis", "output": "â â ‡â Šâ ƒâ Šâ Ž" }, { "input": "alien", "output": "â â ‡â Šâ ¢" }, { "input": "alienable", "output": "â â ‡â Šâ ¢â â ƒâ ‡â ‘" }, { "input": "alienate", "output": "â â ‡â Šâ ¢â â žâ ‘" }, { "input": "alienated", "output": "â â ‡â Šâ ¢â â žâ «" }, { "input": "alienates", "output": "â â ‡â Šâ ¢â â žâ ‘â Ž" }, { "input": "alienating", "output": "â â ‡â Šâ ¢â â žâ ¬" }, { "input": "alienation", "output": "â â ‡â Šâ ¢â â °â " }, { "input": "aliened", "output": "â â ‡â Šâ ¢â «" }, { "input": "aliening", "output": "â â ‡â Šâ ¢â ¬" }, { "input": "aliens", "output": "â â ‡â Šâ ¢â Ž" }, { "input": "alight", "output": "â â ‡â Šâ £â ž" }, { "input": "alighted", "output": "â â ‡â Šâ £â žâ «" }, { "input": "alighting", "output": "â â ‡â Šâ £â žâ ¬" }, { "input": "alights", "output": "â â ‡â Šâ £â žâ Ž" }, { "input": "align", "output": "â â ‡â Šâ ›â " }, { "input": "aligned", "output": "â â ‡â Šâ ›â â «" }, { "input": "aligning", "output": "â â ‡â Šâ ›â â ¬" }, { "input": "alignment", "output": "â â ‡â Šâ ›â â °â ž" }, { "input": "alignments", "output": "â â ‡â Šâ ›â â °â žâ Ž" }, { "input": "aligns", "output": "â â ‡â Šâ ›â â Ž" }, { "input": "alike", "output": "â â ‡â Šâ …â ‘" }, { "input": "alimentary", "output": "â â ‡â Šâ °â žâ œâ ½" }, { "input": "alimony", "output": "â â ‡â Šâ â •â â ½" }, { "input": "aline", "output": "â â ‡â ”â ‘" }, { "input": "alined", "output": "â â ‡â ”â «" }, { "input": "alinement", "output": "â â ‡â ”â ‘â °â ž" }, { "input": "alinements", "output": "â â ‡â ”â ‘â °â žâ Ž" }, { "input": "alines", "output": "â â ‡â ”â ‘â Ž" }, { "input": "alining", "output": "â â ‡â ”â ¬" }, { "input": "alit", "output": "â â ‡â Šâ ž" }, { "input": "alive", "output": "â â ‡â Šâ §â ‘" }, { "input": "alkali", "output": "â â ‡â …â â ‡â Š" }, { "input": "alkalies", "output": "â â ‡â …â â ‡â Šâ ‘â Ž" }, { "input": "alkaline", "output": "â â ‡â …â â ‡â ”â ‘" }, { "input": "alkalinity", "output": "â â ‡â …â â ‡â ”â °â ½" }, { "input": "alkalis", "output": "â â ‡â …â â ‡â Šâ Ž" }, { "input": "alkaloid", "output": "â â ‡â …â â ‡â •â Šâ ™" }, { "input": "alkaloids", "output": "â â ‡â …â â ‡â •⠊⠙⠎" }, { "input": "all", "output": "â â ‡â ‡" }, { "input": "allay", "output": "â â ‡â ‡â â ½" }, { "input": "allayed", "output": "â â ‡â ‡â â ½â «" }, { "input": "allaying", "output": "â â ‡â ‡â â ½â ¬" }, { "input": "allays", "output": "â â ‡â ‡â â ½â Ž" }, { "input": "allegation", "output": "â â ‡â ‡â ‘â ›â â °â " }, { "input": "allegations", "output": "â â ‡â ‡â ‘â ›â â °â â Ž" }, { "input": "allege", "output": "â â ‡â ‡â ‘⠛⠑" }, { "input": "alleged", "output": "â â ‡â ‡â ‘⠛⠫" }, { "input": "allegedly", "output": "â â ‡â ‡â ‘⠛⠫⠇⠽" }, { "input": "alleges", "output": "â â ‡â ‡â ‘⠛⠑⠎" }, { "input": "allegiance", "output": "â â ‡â ‡â ‘⠛⠊⠨⠑" }, { "input": "allegiances", "output": "â â ‡â ‡â ‘⠛⠊⠨⠑⠎" }, { "input": "alleging", "output": "â â ‡â ‡â ‘⠛⠬" }, { "input": "allegorical", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠉â â ‡" }, { "input": "allegorically", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠉â â ‡â ‡â ½" }, { "input": "allegories", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠑⠎" }, { "input": "allegory", "output": "â â ‡â ‡â ‘⠛⠕⠗⠽" }, { "input": "allegro", "output": "â â ‡â ‡â ‘⠛⠗⠕" }, { "input": "allegros", "output": "â â ‡â ‡â ‘⠛⠗⠕⠎" }, { "input": "alleluia", "output": "â â ‡â ‡â ‘⠇⠥⠊â " }, { "input": "alleluias", "output": "â â ‡â ‡â ‘⠇⠥⠊â â Ž" }, { "input": "allergen", "output": "â â ‡â ‡â »â ›â ¢" }, { "input": "allergenic", "output": "â â ‡â ‡â »â ›â ¢â Šâ ‰" }, { "input": "allergens", "output": "â â ‡â ‡â »â ›â ¢â Ž" }, { "input": "allergic", "output": "â â ‡â ‡â »â ›â Šâ ‰" }, { "input": "allergies", "output": "â â ‡â ‡â »â ›â Šâ ‘â Ž" }, { "input": "allergist", "output": "â â ‡â ‡â »â ›â Šâ Œ" }, { "input": "allergists", "output": "â â ‡â ‡â »â ›â Šâ Œâ Ž" }, { "input": "allergy", "output": "â â ‡â ‡â »â ›â ½" }, { "input": "alleviate", "output": "â â ‡â ‡â ‘â §â Šâ â žâ ‘" }, { "input": "alleviated", "output": "â â ‡â ‡â ‘â §â Šâ â žâ «" }, { "input": "alleviates", "output": "â â ‡â ‡â ‘â §â Šâ â žâ ‘â Ž" }, { "input": "alleviating", "output": "â â ‡â ‡â ‘â §â Šâ â žâ ¬" }, { "input": "alleviation", "output": "â â ‡â ‡â ‘â §â Šâ â °â " }, { "input": "alley", "output": "â â ‡â ‡â ‘â ½" }, { "input": "alleys", "output": "â â ‡â ‡â ‘⠽⠎" }, { "input": "alleyway", "output": "â â ‡â ‡â ‘⠽⠺â â ½" }, { "input": "alleyways", "output": "â â ‡â ‡â ‘⠽⠺â â ½â Ž" }, { "input": "alliance", "output": "â â ‡â ‡â Šâ ¨â ‘" }, { "input": "alliances", "output": "â â ‡â ‡â Šâ ¨â ‘â Ž" }, { "input": "allied", "output": "â â ‡â ‡â Šâ «" }, { "input": "allies", "output": "â â ‡â ‡â Šâ ‘â Ž" }, { "input": "alligator", "output": "â â ‡â ‡â Šâ ›â â žâ •â —" }, { "input": "alligators", "output": "â â ‡â ‡â Šâ ›â â žâ •â —â Ž" }, { "input": "alliteration", "output": "â â ‡â ‡â Šâ žâ »â â °â " }, { "input": "alliterations", "output": "â â ‡â ‡â Šâ žâ »â â °â â Ž" }, { "input": "alliterative", "output": "â â ‡â ‡â Šâ žâ »â â žâ Šâ §â ‘" }, { "input": "allocate", "output": "â â ‡â ‡â •â ‰â â žâ ‘" }, { "input": "allocated", "output": "â â ‡â ‡â •â ‰â â žâ «" }, { "input": "allocates", "output": "â â ‡â ‡â •â ‰â â žâ ‘â Ž" }, { "input": "allocating", "output": "â â ‡â ‡â •â ‰â â žâ ¬" }, { "input": "allocation", "output": "â â ‡â ‡â •â ‰â â °â " }, { "input": "allocations", "output": "â â ‡â ‡â •â ‰â â °â â Ž" }, { "input": "allot", "output": "â â ‡â ‡â •â ž" }, { "input": "allotment", "output": "â â ‡â ‡â •â žâ °â ž" }, { "input": "allotments", "output": "â â ‡â ‡â •â žâ °â žâ Ž" }, { "input": "allots", "output": "â â ‡â ‡â •â žâ Ž" }, { "input": "allotted", "output": "â â ‡â ‡â •â žâ žâ «" }, { "input": "allotting", "output": "â â ‡â ‡â •â žâ žâ ¬" }, { "input": "allover", "output": "â â ‡â ‡â •â §â »" }, { "input": "allow", "output": "â â ‡â ‡â ª" }, { "input": "allowable", "output": "â â ‡â ‡â ªâ â ƒâ ‡â ‘" }, { "input": "allowance", "output": "â â ‡â ‡â ªâ ¨â ‘" }, { "input": "allowances", "output": "â â ‡â ‡â ªâ ¨â ‘â Ž" }, { "input": "allowed", "output": "â â ‡â ‡â ªâ «" }, { "input": "allowing", "output": "â â ‡â ‡â ªâ ¬" }, { "input": "allows", "output": "â â ‡â ‡â ªâ Ž" }, { "input": "alloy", "output": "â â ‡â ‡â •â ½" }, { "input": "alloyed", "output": "â â ‡â ‡â •⠽⠫" }, { "input": "alloying", "output": "â â ‡â ‡â •⠽⠬" }, { "input": "alloys", "output": "â â ‡â ‡â •⠽⠎" }, { "input": "allspice", "output": "â â ‡â ‡â Žâ â Šâ ‰â ‘" }, { "input": "allude", "output": "â â ‡â ‡â ¥â ™â ‘" }, { "input": "alluded", "output": "â â ‡â ‡â ¥â ™â «" }, { "input": "alludes", "output": "â â ‡â ‡â ¥â ™â ‘â Ž" }, { "input": "alluding", "output": "â â ‡â ‡â ¥â ™â ¬" }, { "input": "allure", "output": "â â ‡â ‡â ¥â —â ‘" }, { "input": "allured", "output": "â â ‡â ‡â ¥â —â «" }, { "input": "allures", "output": "â â ‡â ‡â ¥â —â ‘â Ž" }, { "input": "alluring", "output": "â â ‡â ‡â ¥â —â ¬" }, { "input": "allusion", "output": "â â ‡â ‡â ¥â ¨â " }, { "input": "allusions", "output": "â â ‡â ‡â ¥â ¨â â Ž" }, { "input": "allusive", "output": "â â ‡â ‡â ¥â Žâ Šâ §â ‘" }, { "input": "allusively", "output": "â â ‡â ‡â ¥â Žâ Šâ §â ‘⠇⠽" }, { "input": "alluvia", "output": "â â ‡â ‡â ¥â §â Šâ " }, { "input": "alluvial", "output": "â â ‡â ‡â ¥â §â Šâ â ‡" }, { "input": "alluvium", "output": "â â ‡â ‡â ¥â §â Šâ ¥â " }, { "input": "alluviums", "output": "â â ‡â ‡â ¥â §â Šâ ¥â â Ž" }, { "input": "ally", "output": "â â ‡â ‡â ½" }, { "input": "allying", "output": "â â ‡â ‡â ½â ¬" }, { "input": "almanac", "output": "â â ‡â â â â â ‰" }, { "input": "almanacs", "output": "â â ‡â â â â â ‰â Ž" }, { "input": "almighty", "output": "â â ‡â â Šâ £â žâ ½" }, { "input": "almond", "output": "â â ‡â â •â â ™" }, { "input": "almonds", "output": "â â ‡â â •â â ™â Ž" }, { "input": "almost", "output": "â â ‡â " }, { "input": "alms", "output": "â â ‡â â Ž" }, { "input": "aloe", "output": "â â ‡â •â ‘" }, { "input": "aloes", "output": "â â ‡â •â ‘â Ž" }, { "input": "aloft", "output": "â â ‡â ·â ž" }, { "input": "aloha", "output": "â â ‡â •â “â " }, { "input": "alohas", "output": "â â ‡â •â “â â Ž" }, { "input": "alone", "output": "â â ‡â â •" }, { "input": "along", "output": "â â ‡â °â ›" }, { "input": "alongside", "output": "â â ‡â °â ›â Žâ Šâ ™â ‘" }, { "input": "aloof", "output": "â â ‡â •â ·" }, { "input": "aloofness", "output": "â â ‡â •â ·â °â Ž" }, { "input": "aloud", "output": "â â ‡â ³â ™" }, { "input": "alpaca", "output": "â â ‡â â â ‰â " }, { "input": "alpacas", "output": "â â ‡â â â ‰â â Ž" }, { "input": "alpha", "output": "â â ‡â â “â " }, { "input": "alphabet", "output": "â â ‡â â “â â ƒâ ‘â ž" }, { "input": "alphabetic", "output": "â â ‡â â “â â ƒâ ‘â žâ Šâ ‰" }, { "input": "alphabetical", "output": "â â ‡â â “â â ƒâ ‘â žâ Šâ ‰â â ‡" }, { "input": "alphabetically", "output": "â â ‡â â “â â ƒâ ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "alphabetize", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠑" }, { "input": "alphabetized", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠫" }, { "input": "alphabetizes", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠑⠎" }, { "input": "alphabetizing", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠬" }, { "input": "alphabets", "output": "â â ‡â â “â â ƒâ ‘â žâ Ž" }, { "input": "alphanumeric", "output": "â â ‡â â “â â â ¥â â »â Šâ ‰" }, { "input": "alphas", "output": "â â ‡â â “â â Ž" }, { "input": "alpine", "output": "â â ‡â â ”â ‘" }, { "input": "already", "output": "â â ‡â —" }, { "input": "alright", "output": "â â ‡â â —" }, { "input": "also", "output": "â â ‡" }, { "input": "altar", "output": "â â ‡â žâ œ" }, { "input": "altars", "output": "â â ‡â žâ œâ Ž" }, { "input": "alter", "output": "â â ‡â žâ »" }, { "input": "alterable", "output": "â â ‡â žâ »â â ƒâ ‡â ‘" }, { "input": "alteration", "output": "â â ‡â žâ »â â °â " }, { "input": "alterations", "output": "â â ‡â žâ »â â °â â Ž" }, { "input": "altercation", "output": "â â ‡â žâ »â ‰â â °â " }, { "input": "altercations", "output": "â â ‡â žâ »â ‰â â °â â Ž" }, { "input": "altered", "output": "â â ‡â žâ »â «" }, { "input": "altering", "output": "â â ‡â žâ »â ¬" }, { "input": "alternate", "output": "â â ‡â žâ »â â â žâ ‘" }, { "input": "alternated", "output": "â â ‡â žâ »â â â žâ «" }, { "input": "alternately", "output": "â â ‡â žâ »â â â žâ ‘⠇⠽" }, { "input": "alternates", "output": "â â ‡â žâ »â â â žâ ‘â Ž" }, { "input": "alternating", "output": "â â ‡â žâ »â â â žâ ¬" }, { "input": "alternation", "output": "â â ‡â žâ »â â â °â " }, { "input": "alternations", "output": "â â ‡â žâ »â â â °â â Ž" }, { "input": "alternative", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘" }, { "input": "alternatively", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘⠇⠽" }, { "input": "alternatives", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘â Ž" }, { "input": "alternator", "output": "â â ‡â žâ »â â â žâ •â —" }, { "input": "alternators", "output": "â â ‡â žâ »â â â žâ •â —â Ž" }, { "input": "alters", "output": "â â ‡â žâ »â Ž" }, { "input": "altho", "output": "â â ‡â ¹â •" }, { "input": "although", "output": "â â ‡â ¹" }, { "input": "altimeter", "output": "â â ‡â žâ Šâ â ‘â žâ »" }, { "input": "altimeters", "output": "â â ‡â žâ Šâ â ‘⠞⠻⠎" }, { "input": "altitude", "output": "â â ‡â žâ Šâ žâ ¥â ™â ‘" }, { "input": "altitudes", "output": "â â ‡â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "alto", "output": "â â ‡â žâ •" }, { "input": "altogether", "output": "â â ‡â ž" }, { "input": "altos", "output": "â â ‡â žâ •â Ž" }, { "input": "altruism", "output": "â â ‡â žâ —⠥⠊⠎â " }, { "input": "altruist", "output": "â â ‡â žâ —⠥⠊⠌" }, { "input": "altruistic", "output": "â â ‡â žâ —⠥⠊⠌⠊⠉" }, { "input": "altruistically", "output": "â â ‡â žâ —⠥⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "altruists", "output": "â â ‡â žâ —⠥⠊⠌⠎" }, { "input": "alum", "output": "â â ‡â ¥â " }, { "input": "aluminum", "output": "â â ‡â ¥â â ”â ¥â " }, { "input": "alumna", "output": "â â ‡â ¥â â â " }, { "input": "alumnae", "output": "â â ‡â ¥â â â â ‘" }, { "input": "alumni", "output": "â â ‡â ¥â â â Š" }, { "input": "alumnus", "output": "â â ‡â ¥â â â ¥â Ž" }, { "input": "alums", "output": "â â ‡â ¥â â Ž" }, { "input": "always", "output": "â â ‡â º" }, { "input": "am", "output": "â â " }, { "input": "amalgam", "output": "â â â â ‡â ›â â " }, { "input": "amalgamate", "output": "â â â â ‡â ›â â â â žâ ‘" }, { "input": "amalgamated", "output": "â â â â ‡â ›â â â â žâ «" }, { "input": "amalgamates", "output": "â â â â ‡â ›â â â â žâ ‘â Ž" }, { "input": "amalgamating", "output": "â â â â ‡â ›â â â â žâ ¬" }, { "input": "amalgamation", "output": "â â â â ‡â ›â â â â °â " }, { "input": "amalgamations", "output": "â â â â ‡â ›â â â â °â â Ž" }, { "input": "amalgams", "output": "â â â â ‡â ›â â â Ž" }, { "input": "amanuenses", "output": "â â â â â ¥â ¢â Žâ ‘â Ž" }, { "input": "amanuensis", "output": "â â â â â ¥â ¢â Žâ Šâ Ž" }, { "input": "amaranth", "output": "â â â œâ â â ¹" }, { "input": "amaranths", "output": "â â â œâ â â ¹â Ž" }, { "input": "amaryllis", "output": "â â â œâ ½â ‡â ‡â Šâ Ž" }, { "input": "amaryllises", "output": "â â â œâ ½â ‡â ‡â Šâ Žâ ‘â Ž" }, { "input": "amass", "output": "â â â â Žâ Ž" }, { "input": "amassed", "output": "â â â â Žâ Žâ «" }, { "input": "amasses", "output": "â â â â Žâ Žâ ‘â Ž" }, { "input": "amassing", "output": "â â â â Žâ Žâ ¬" }, { "input": "amateur", "output": "â â â â žâ ‘⠥⠗" }, { "input": "amateurish", "output": "â â â â žâ ‘⠥⠗⠊⠩" }, { "input": "amateurism", "output": "â â â â žâ ‘⠥⠗⠊⠎â " }, { "input": "amateurs", "output": "â â â â žâ ‘⠥⠗⠎" }, { "input": "amatory", "output": "â â â â žâ •â —â ½" }, { "input": "amaze", "output": "â â â â µâ ‘" }, { "input": "amazed", "output": "â â â â µâ «" }, { "input": "amazement", "output": "â â â â µâ ‘â °â ž" }, { "input": "amazes", "output": "â â â â µâ ‘â Ž" }, { "input": "amazing", "output": "â â â â µâ ¬" }, { "input": "amazingly", "output": "â â â â µâ ¬â ‡â ½" }, { "input": "amazon", "output": "â â â â µâ •â " }, { "input": "amazons", "output": "â â â â µâ •â â Ž" }, { "input": "ambassador", "output": "â â â ƒâ â Žâ Žâ â ™â •â —" }, { "input": "ambassadorial", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â Šâ â ‡" }, { "input": "ambassadors", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â Ž" }, { "input": "ambassadorship", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â ©â Šâ " }, { "input": "ambassadorships", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â ©â Šâ â Ž" }, { "input": "amber", "output": "â â â ƒâ »" }, { "input": "ambergris", "output": "â â â ƒâ »â ›â —â Šâ Ž" }, { "input": "ambiance", "output": "â â â ƒâ Šâ ¨â ‘" }, { "input": "ambiances", "output": "â â â ƒâ Šâ ¨â ‘â Ž" }, { "input": "ambidextrous", "output": "â â â ƒâ Šâ ™â ‘⠭⠞⠗⠳⠎" }, { "input": "ambidextrously", "output": "â â â ƒâ Šâ ™â ‘⠭⠞⠗⠳⠎⠇⠽" }, { "input": "ambience", "output": "â â â ƒâ Šâ °â ‘" }, { "input": "ambiences", "output": "â â â ƒâ Šâ °â ‘â Ž" }, { "input": "ambient", "output": "â â â ƒâ Šâ ¢â ž" }, { "input": "ambiguities", "output": "â â â ƒâ Šâ ›â ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "ambiguity", "output": "â â â ƒâ Šâ ›â ¥â °â ½" }, { "input": "ambiguous", "output": "â â â ƒâ Šâ ›â ¥â ³â Ž" }, { "input": "ambiguously", "output": "â â â ƒâ Šâ ›â ¥â ³â Žâ ‡â ½" }, { "input": "ambition", "output": "â â â ƒâ Šâ °â " }, { "input": "ambitions", "output": "â â â ƒâ Šâ °â â Ž" }, { "input": "ambitious", "output": "â â â ƒâ Šâ žâ Šâ ³â Ž" }, { "input": "ambitiously", "output": "â â â ƒâ Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "ambitiousness", "output": "â â â ƒâ Šâ žâ Šâ ³â Žâ °â Ž" }, { "input": "ambivalence", "output": "â â â ƒâ Šâ §â â ‡â °â ‘" }, { "input": "ambivalent", "output": "â â â ƒâ Šâ §â â ‡â ¢â ž" }, { "input": "ambivalently", "output": "â â â ƒâ Šâ §â â ‡â ¢â žâ ‡â ½" }, { "input": "amble", "output": "â â â ƒâ ‡â ‘" }, { "input": "ambled", "output": "â â â ƒâ ‡â «" }, { "input": "ambles", "output": "â â â ƒâ ‡â ‘â Ž" }, { "input": "ambling", "output": "â â â ƒâ ‡â ¬" }, { "input": "ambrosia", "output": "â â â ƒâ —â •â Žâ Šâ " }, { "input": "ambulance", "output": "â â â ƒâ ¥â ‡â ¨â ‘" }, { "input": "ambulances", "output": "â â â ƒâ ¥â ‡â ¨â ‘â Ž" }, { "input": "ambulatories", "output": "â â â ƒâ ¥â ‡â â žâ •â —â Šâ ‘â Ž" }, { "input": "ambulatory", "output": "â â â ƒâ ¥â ‡â â žâ •â —â ½" }, { "input": "ambush", "output": "â â â ƒâ ¥â ©" }, { "input": "ambushed", "output": "â â â ƒâ ¥â ©â «" }, { "input": "ambushes", "output": "â â â ƒâ ¥â ©â ‘â Ž" }, { "input": "ambushing", "output": "â â â ƒâ ¥â ©â ¬" }, { "input": "ameba", "output": "â â â ‘â ƒâ " }, { "input": "amebae", "output": "â â â ‘â ƒâ â ‘" }, { "input": "amebas", "output": "â â â ‘â ƒâ â Ž" }, { "input": "amebic", "output": "â â â ‘⠃⠊⠉" }, { "input": "ameer", "output": "â â â ‘â »" }, { "input": "ameers", "output": "â â â ‘⠻⠎" }, { "input": "ameliorate", "output": "â â â ‘⠇⠊⠕⠗â â žâ ‘" }, { "input": "ameliorated", "output": "â â â ‘⠇⠊⠕⠗â â žâ «" }, { "input": "ameliorates", "output": "â â â ‘⠇⠊⠕⠗â â žâ ‘â Ž" }, { "input": "ameliorating", "output": "â â â ‘⠇⠊⠕⠗â â žâ ¬" }, { "input": "amelioration", "output": "â â â ‘⠇⠊⠕⠗â â °â " }, { "input": "amen", "output": "â â â ¢" }, { "input": "amenable", "output": "â â â ¢â â ƒâ ‡â ‘" }, { "input": "amend", "output": "â â â ¢â ™" }, { "input": "amendable", "output": "â â â ¢â ™â â ƒâ ‡â ‘" }, { "input": "amended", "output": "â â â ¢â ™â «" }, { "input": "amending", "output": "â â â ¢â ™â ¬" }, { "input": "amendment", "output": "â â â ¢â ™â °â ž" }, { "input": "amendments", "output": "â â â ¢â ™â °â žâ Ž" }, { "input": "amends", "output": "â â â ¢â ™â Ž" }, { "input": "amenities", "output": "â â â ¢â Šâ žâ Šâ ‘â Ž" }, { "input": "amenity", "output": "â â â ¢â °â ½" }, { "input": "amethyst", "output": "â â â ‘⠹⠽⠌" }, { "input": "amethysts", "output": "â â â ‘⠹⠽⠌⠎" }, { "input": "amiability", "output": "â â â Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "amiable", "output": "â â â Šâ â ƒâ ‡â ‘" }, { "input": "amiably", "output": "â â â Šâ â ƒâ ‡â ½" }, { "input": "amicability", "output": "â â â Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "amicable", "output": "â â â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "amicably", "output": "â â â Šâ ‰â â ƒâ ‡â ½" }, { "input": "amid", "output": "â â â Šâ ™" }, { "input": "amidships", "output": "â â â Šâ ™â ©â Šâ â Ž" }, { "input": "amidst", "output": "â â â Šâ ™â Œ" }, { "input": "amigo", "output": "â â â Šâ ›â •" }, { "input": "amigos", "output": "â â â Šâ ›â •â Ž" }, { "input": "amir", "output": "â â â Šâ —" }, { "input": "amirs", "output": "â â â Šâ —â Ž" }, { "input": "amiss", "output": "â â â Šâ Žâ Ž" }, { "input": "amity", "output": "â â â °â ½" }, { "input": "ammeter", "output": "â â â â ‘â žâ »" }, { "input": "ammeters", "output": "â â â â ‘⠞⠻⠎" }, { "input": "ammo", "output": "â â â â •" }, { "input": "ammonia", "output": "â â â â •â â Šâ " }, { "input": "ammunition", "output": "â â â â ¥â â Šâ °â " }, { "input": "amnesia", "output": "â â â â ‘â Žâ Šâ " }, { "input": "amnesiac", "output": "â â â â ‘â Žâ Šâ â ‰" }, { "input": "amnesiacs", "output": "â â â â ‘â Žâ Šâ â ‰â Ž" }, { "input": "amnestied", "output": "â â â â ‘⠌⠊⠫" }, { "input": "amnesties", "output": "â â â â ‘⠌⠊⠑⠎" }, { "input": "amnesty", "output": "â â â â ‘⠌⠽" }, { "input": "amnestying", "output": "â â â â ‘⠌⠽⠬" }, { "input": "amniocenteses", "output": "â â â â Šâ •⠉⠢⠞⠑⠎⠑⠎" }, { "input": "amniocentesis", "output": "â â â â Šâ •⠉⠢⠞⠑⠎⠊⠎" }, { "input": "amoeba", "output": "â â â •â ‘â ƒâ " }, { "input": "amoebae", "output": "â â â •â ‘â ƒâ â ‘" }, { "input": "amoebas", "output": "â â â •â ‘â ƒâ â Ž" }, { "input": "amoebic", "output": "â â â •⠑⠃⠊⠉" }, { "input": "amok", "output": "â â â •â …" }, { "input": "among", "output": "â â â °â ›" }, { "input": "amongst", "output": "â â â °â ›â Œ" }, { "input": "amoral", "output": "â â â •â —â â ‡" }, { "input": "amorality", "output": "â â â •â —â â ‡â °â ½" }, { "input": "amorally", "output": "â â â •â —â â ‡â ‡â ½" }, { "input": "amorous", "output": "â â â •⠗⠳⠎" }, { "input": "amorously", "output": "â â â •⠗⠳⠎⠇⠽" }, { "input": "amorousness", "output": "â â â •⠗⠳⠎⠰⠎" }, { "input": "amorphous", "output": "â â â •â —â â “⠳⠎" }, { "input": "amorphously", "output": "â â â •â —â â “⠳⠎⠇⠽" }, { "input": "amorphousness", "output": "â â â •â —â â “⠳⠎⠰⠎" }, { "input": "amortization", "output": "â â â •â —â žâ Šâ µâ â °â " }, { "input": "amortizations", "output": "â â â •â —â žâ Šâ µâ â °â â Ž" }, { "input": "amortize", "output": "â â â •⠗⠞⠊⠵⠑" }, { "input": "amortized", "output": "â â â •⠗⠞⠊⠵⠫" }, { "input": "amortizes", "output": "â â â •⠗⠞⠊⠵⠑⠎" }, { "input": "amortizing", "output": "â â â •⠗⠞⠊⠵⠬" }, { "input": "amount", "output": "â â â ¨â ž" }, { "input": "amounted", "output": "â â â ¨â žâ «" }, { "input": "amounting", "output": "â â â ¨â žâ ¬" }, { "input": "amounts", "output": "â â â ¨â žâ Ž" }, { "input": "amour", "output": "â â â ³â —" }, { "input": "amours", "output": "â â â ³â —â Ž" }, { "input": "amp", "output": "â â â " }, { "input": "amperage", "output": "â â â â »â â ›â ‘" }, { "input": "ampere", "output": "â â â â »â ‘" }, { "input": "amperes", "output": "â â â â »â ‘â Ž" }, { "input": "ampersand", "output": "â â â â »â Žâ ¯" }, { "input": "ampersands", "output": "â â â â »â Žâ ¯â Ž" }, { "input": "amphetamine", "output": "â â â â “â ‘â žâ â â ”â ‘" }, { "input": "amphetamines", "output": "â â â â “â ‘â žâ â â ”â ‘â Ž" }, { "input": "amphibian", "output": "â â â â “⠊⠃⠊â â " }, { "input": "amphibians", "output": "â â â â “⠊⠃⠊â â â Ž" }, { "input": "amphibious", "output": "â â â â “⠊⠃⠊⠳⠎" }, { "input": "amphitheater", "output": "â â â â “â Šâ ®â â žâ »" }, { "input": "amphitheaters", "output": "â â â â “â Šâ ®â â žâ »â Ž" }, { "input": "amphitheatre", "output": "â â â â “â Šâ ®â â žâ —â ‘" }, { "input": "amphitheatres", "output": "â â â â “â Šâ ®â â žâ —â ‘â Ž" }, { "input": "ample", "output": "â â â â ‡â ‘" }, { "input": "ampler", "output": "â â â â ‡â »" }, { "input": "amplest", "output": "â â â â ‡â ‘â Œ" }, { "input": "amplification", "output": "â â â â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "amplifications", "output": "â â â â ‡â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "amplified", "output": "â â â â ‡â Šâ ‹â Šâ «" }, { "input": "amplifier", "output": "â â â â ‡â Šâ ‹â Šâ »" }, { "input": "amplifiers", "output": "â â â â ‡â Šâ ‹â Šâ »â Ž" }, { "input": "amplifies", "output": "â â â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "amplify", "output": "â â â â ‡â Šâ ‹â ½" }, { "input": "amplifying", "output": "â â â â ‡â Šâ ‹â ½â ¬" }, { "input": "amplitude", "output": "â â â â ‡â Šâ žâ ¥â ™â ‘" }, { "input": "amplitudes", "output": "â â â â ‡â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "amply", "output": "â â â â ‡â ½" }, { "input": "ampoule", "output": "â â â â ³â ‡â ‘" }, { "input": "ampoules", "output": "â â â â ³â ‡â ‘â Ž" }, { "input": "amps", "output": "â â â â Ž" }, { "input": "ampul", "output": "â â â â ¥â ‡" }, { "input": "ampule", "output": "â â â â ¥â ‡â ‘" }, { "input": "ampules", "output": "â â â â ¥â ‡â ‘â Ž" }, { "input": "ampuls", "output": "â â â â ¥â ‡â Ž" }, { "input": "amputate", "output": "â â â â ¥â žâ â žâ ‘" }, { "input": "amputated", "output": "â â â â ¥â žâ â žâ «" }, { "input": "amputates", "output": "â â â â ¥â žâ â žâ ‘â Ž" }, { "input": "amputating", "output": "â â â â ¥â žâ â žâ ¬" }, { "input": "amputation", "output": "â â â â ¥â žâ â °â " }, { "input": "amputations", "output": "â â â â ¥â žâ â °â â Ž" }, { "input": "amputee", "output": "â â â â ¥â žâ ‘â ‘" }, { "input": "amputees", "output": "â â â â ¥â žâ ‘â ‘â Ž" }, { "input": "amuck", "output": "â â â ¥â ‰â …" }, { "input": "amulet", "output": "â â â ¥â ‡â ‘â ž" }, { "input": "amulets", "output": "â â â ¥â ‡â ‘â žâ Ž" }, { "input": "amuse", "output": "â â â ¥â Žâ ‘" }, { "input": "amused", "output": "â â â ¥â Žâ «" }, { "input": "amusement", "output": "â â â ¥â Žâ ‘â °â ž" }, { "input": "amusements", "output": "â â â ¥â Žâ ‘â °â žâ Ž" }, { "input": "amuses", "output": "â â â ¥â Žâ ‘â Ž" }, { "input": "amusing", "output": "â â â ¥â Žâ ¬" }, { "input": "amusingly", "output": "â â â ¥â Žâ ¬â ‡â ½" }, { "input": "an", "output": "â â " }, { "input": "anachronism", "output": "â â â â ¡â —â •â â Šâ Žâ " }, { "input": "anachronisms", "output": "â â â â ¡â —â •â â Šâ Žâ â Ž" }, { "input": "anachronistic", "output": "â â â â ¡â —â •â â Šâ Œâ Šâ ‰" }, { "input": "anaconda", "output": "â â â â ‰â •â â ™â " }, { "input": "anacondas", "output": "â â â â ‰â •â â ™â â Ž" }, { "input": "anaemia", "output": "â â â â ‘â â Šâ " }, { "input": "anaemic", "output": "â â â â ‘â â Šâ ‰" }, { "input": "anaerobic", "output": "â â â â »â •⠃⠊⠉" }, { "input": "anaesthesia", "output": "â â â â ‘⠎⠮⠎⠊â " }, { "input": "anaesthetic", "output": "â â â â ‘⠎⠮⠞⠊⠉" }, { "input": "anaesthetics", "output": "â â â â ‘⠎⠮⠞⠊⠉⠎" }, { "input": "anaesthetist", "output": "â â â â ‘⠎⠮⠞⠊⠌" }, { "input": "anaesthetists", "output": "â â â â ‘⠎⠮⠞⠊⠌⠎" }, { "input": "anaesthetize", "output": "â â â â ‘⠎⠮⠞⠊⠵⠑" }, { "input": "anaesthetized", "output": "â â â â ‘⠎⠮⠞⠊⠵⠫" }, { "input": "anaesthetizes", "output": "â â â â ‘⠎⠮⠞⠊⠵⠑⠎" }, { "input": "anaesthetizing", "output": "â â â â ‘⠎⠮⠞⠊⠵⠬" }, { "input": "anagram", "output": "â â â â ›â —â â " }, { "input": "anagrams", "output": "â â â â ›â —â â â Ž" }, { "input": "anal", "output": "â â â â ‡" }, { "input": "analgesia", "output": "â â â â ‡â ›â ‘â Žâ Šâ " }, { "input": "analgesic", "output": "â â â â ‡â ›â ‘â Žâ Šâ ‰" }, { "input": "analgesics", "output": "â â â â ‡â ›â ‘⠎⠊⠉⠎" }, { "input": "analog", "output": "â â â â ‡â •â ›" }, { "input": "analogies", "output": "â â â â ‡â •⠛⠊⠑⠎" }, { "input": "analogous", "output": "â â â â ‡â •⠛⠳⠎" }, { "input": "analogously", "output": "â â â â ‡â •⠛⠳⠎⠇⠽" }, { "input": "analogs", "output": "â â â â ‡â •⠛⠎" }, { "input": "analogue", "output": "â â â â ‡â •⠛⠥⠑" }, { "input": "analogues", "output": "â â â â ‡â •⠛⠥⠑⠎" }, { "input": "analogy", "output": "â â â â ‡â •⠛⠽" }, { "input": "analyses", "output": "â â â â ‡â ½â Žâ ‘â Ž" }, { "input": "analysis", "output": "â â â â ‡â ½â Žâ Šâ Ž" }, { "input": "analyst", "output": "â â â â ‡â ½â Œ" }, { "input": "analysts", "output": "â â â â ‡â ½â Œâ Ž" }, { "input": "analytic", "output": "â â â â ‡â ½â žâ Šâ ‰" }, { "input": "analytical", "output": "â â â â ‡â ½â žâ Šâ ‰â â ‡" }, { "input": "analyticalally", "output": "â â â â ‡â ½â žâ Šâ ‰â â ‡â â ‡â ‡â ½" }, { "input": "analytically", "output": "â â â â ‡â ½â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "analyze", "output": "â â â â ‡â ½â µâ ‘" }, { "input": "analyzed", "output": "â â â â ‡â ½â µâ «" }, { "input": "analyzer", "output": "â â â â ‡â ½â µâ »" }, { "input": "analyzers", "output": "â â â â ‡â ½â µâ »â Ž" }, { "input": "analyzes", "output": "â â â â ‡â ½â µâ ‘â Ž" }, { "input": "analyzing", "output": "â â â â ‡â ½â µâ ¬" }, { "input": "anapest", "output": "â â â â â ‘â Œ" }, { "input": "anapests", "output": "â â â â â ‘⠌⠎" }, { "input": "anarchic", "output": "â â â œâ ¡â Šâ ‰" }, { "input": "anarchically", "output": "â â â œâ ¡â Šâ ‰â â ‡â ‡â ½" }, { "input": "anarchism", "output": "â â â œâ ¡â Šâ Žâ " }, { "input": "anarchist", "output": "â â â œâ ¡â Šâ Œ" }, { "input": "anarchistic", "output": "â â â œâ ¡â Šâ Œâ Šâ ‰" }, { "input": "anarchists", "output": "â â â œâ ¡â Šâ Œâ Ž" }, { "input": "anarchy", "output": "â â â œâ ¡â ½" }, { "input": "anathema", "output": "â â â â ®â â " }, { "input": "anathemas", "output": "â â â â ®â â â Ž" }, { "input": "anatomic", "output": "â â â â žâ •â â Šâ ‰" }, { "input": "anatomical", "output": "â â â â žâ •â â Šâ ‰â â ‡" }, { "input": "anatomically", "output": "â â â â žâ •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "anatomies", "output": "â â â â žâ •â â Šâ ‘â Ž" }, { "input": "anatomist", "output": "â â â â žâ •â â Šâ Œ" }, { "input": "anatomists", "output": "â â â â žâ •â â Šâ Œâ Ž" }, { "input": "anatomy", "output": "â â â â žâ •â â ½" }, { "input": "ancestor", "output": "â â â ‰â ‘⠌⠕⠗" }, { "input": "ancestors", "output": "â â â ‰â ‘⠌⠕⠗⠎" }, { "input": "ancestral", "output": "â â â ‰â ‘⠌⠗â â ‡" }, { "input": "ancestress", "output": "â â â ‰â ‘⠌⠗⠑⠎⠎" }, { "input": "ancestresses", "output": "â â â ‰â ‘⠌⠗⠑⠎⠎⠑⠎" }, { "input": "ancestries", "output": "â â â ‰â ‘⠌⠗⠊⠑⠎" }, { "input": "ancestry", "output": "â â â ‰â ‘⠌⠗⠽" }, { "input": "anchor", "output": "â â â ¡â •â —" }, { "input": "anchorage", "output": "â â â ¡â •â —â â ›â ‘" }, { "input": "anchorages", "output": "â â â ¡â •â —â â ›â ‘â Ž" }, { "input": "anchored", "output": "â â â ¡â •â —â «" }, { "input": "anchoring", "output": "â â â ¡â •â —â ¬" }, { "input": "anchorite", "output": "â â â ¡â •â —â Šâ žâ ‘" }, { "input": "anchorites", "output": "â â â ¡â •â —â Šâ žâ ‘â Ž" }, { "input": "anchorman", "output": "â â â ¡â •â —â â â " }, { "input": "anchormen", "output": "â â â ¡â •â —â â ¢" }, { "input": "anchorpeople", "output": "â â â ¡â •â —â â ‘â •â â ‡â ‘" }, { "input": "anchorperson", "output": "â â â ¡â •â —â â »â Žâ •â " }, { "input": "anchorpersons", "output": "â â â ¡â •â —â â »â Žâ •â â Ž" }, { "input": "anchors", "output": "â â â ¡â •â —â Ž" }, { "input": "anchorwoman", "output": "â â â ¡â •⠗⠺⠕â â â " }, { "input": "anchorwomen", "output": "â â â ¡â •⠗⠺⠕â â ¢" }, { "input": "anchovies", "output": "â â â ¡â •â §â Šâ ‘â Ž" }, { "input": "anchovy", "output": "â â â ¡â •â §â ½" }, { "input": "ancient", "output": "â â â ‰â Šâ ¢â ž" }, { "input": "ancienter", "output": "â â â ‰â Šâ ¢â žâ »" }, { "input": "ancientest", "output": "â â â ‰â Šâ ¢â žâ ‘â Œ" }, { "input": "ancients", "output": "â â â ‰â Šâ ¢â žâ Ž" }, { "input": "ancillaries", "output": "â â â ‰â Šâ ‡â ‡â œâ Šâ ‘â Ž" }, { "input": "ancillary", "output": "â â â ‰â Šâ ‡â ‡â œâ ½" }, { "input": "and", "output": "â ¯" }, { "input": "andante", "output": "â ¯â â â žâ ‘" }, { "input": "andantes", "output": "â ¯â â â žâ ‘â Ž" }, { "input": "andiron", "output": "⠯⠊⠗⠕â " }, { "input": "andirons", "output": "⠯⠊⠗⠕â â Ž" }, { "input": "androgen", "output": "⠯⠗⠕⠛⠢" }, { "input": "androgynous", "output": "⠯⠗⠕⠛⠽â â ³â Ž" }, { "input": "android", "output": "⠯⠗⠕⠊⠙" }, { "input": "androids", "output": "⠯⠗⠕⠊⠙⠎" }, { "input": "anecdota", "output": "â â â ‘⠉⠙⠕⠞â " }, { "input": "anecdotal", "output": "â â â ‘⠉⠙⠕⠞â â ‡" }, { "input": "anecdote", "output": "â â â ‘⠉⠙⠕⠞⠑" }, { "input": "anecdotes", "output": "â â â ‘⠉⠙⠕⠞⠑⠎" }, { "input": "anemia", "output": "â â â ‘â â Šâ " }, { "input": "anemic", "output": "â â â ‘â â Šâ ‰" }, { "input": "anemometer", "output": "â â â ‘â â •â â ‘â žâ »" }, { "input": "anemometers", "output": "â â â ‘â â •â â ‘⠞⠻⠎" }, { "input": "anemone", "output": "â â â ‘â â •â â ‘" }, { "input": "anemones", "output": "â â â ‘â â •â â ‘â Ž" }, { "input": "anesthesia", "output": "â â â ‘⠎⠮⠎⠊â " }, { "input": "anesthesiologist", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠊⠌" }, { "input": "anesthesiologists", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "anesthesiology", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠽" }, { "input": "anesthetic", "output": "â â â ‘⠎⠮⠞⠊⠉" }, { "input": "anesthetics", "output": "â â â ‘⠎⠮⠞⠊⠉⠎" }, { "input": "anesthetist", "output": "â â â ‘⠎⠮⠞⠊⠌" }, { "input": "anesthetists", "output": "â â â ‘⠎⠮⠞⠊⠌⠎" }, { "input": "anesthetize", "output": "â â â ‘⠎⠮⠞⠊⠵⠑" }, { "input": "anesthetized", "output": "â â â ‘⠎⠮⠞⠊⠵⠫" }, { "input": "anesthetizes", "output": "â â â ‘⠎⠮⠞⠊⠵⠑⠎" }, { "input": "anesthetizing", "output": "â â â ‘⠎⠮⠞⠊⠵⠬" }, { "input": "aneurism", "output": "â â â ‘⠥⠗⠊⠎â " }, { "input": "aneurisms", "output": "â â â ‘⠥⠗⠊⠎â â Ž" }, { "input": "aneurysm", "output": "â â â ‘⠥⠗⠽⠎â " }, { "input": "aneurysms", "output": "â â â ‘⠥⠗⠽⠎â â Ž" }, { "input": "anew", "output": "â â â ‘â º" }, { "input": "angel", "output": "â â â ›â ‘â ‡" }, { "input": "angelic", "output": "â â â ›â ‘⠇⠊⠉" }, { "input": "angelically", "output": "â â â ›â ‘⠇⠊⠉â â ‡â ‡â ½" }, { "input": "angels", "output": "â â â ›â ‘⠇⠎" }, { "input": "anger", "output": "â â â ›â »" }, { "input": "angered", "output": "â â â ›â »â «" }, { "input": "angering", "output": "â â â ›â »â ¬" }, { "input": "angers", "output": "â â â ›â »â Ž" }, { "input": "angina", "output": "â â â ›â ”â " }, { "input": "angioplasties", "output": "â â â ›â Šâ •â â ‡â â Œâ Šâ ‘â Ž" }, { "input": "angioplasty", "output": "â â â ›â Šâ •â â ‡â â Œâ ½" }, { "input": "angiosperm", "output": "â â â ›â Šâ •â Žâ â »â " }, { "input": "angiosperms", "output": "â â â ›â Šâ •â Žâ â »â â Ž" }, { "input": "angle", "output": "â â â ›â ‡â ‘" }, { "input": "angled", "output": "â â â ›â ‡â «" }, { "input": "angler", "output": "â â â ›â ‡â »" }, { "input": "anglers", "output": "â â â ›â ‡â »â Ž" }, { "input": "angles", "output": "â â â ›â ‡â ‘â Ž" }, { "input": "angleworm", "output": "â â â ›â ‡â ‘⠺⠕⠗â " }, { "input": "angleworms", "output": "â â â ›â ‡â ‘⠺⠕⠗â â Ž" }, { "input": "angling", "output": "â â â ›â ‡â ¬" }, { "input": "angora", "output": "â â â ›â •â —â " }, { "input": "angoras", "output": "â â â ›â •â —â â Ž" }, { "input": "angrier", "output": "â â â ›â —â Šâ »" }, { "input": "angriest", "output": "â â â ›â —â Šâ ‘â Œ" }, { "input": "angrily", "output": "â â â ›â —⠊⠇⠽" }, { "input": "angry", "output": "â â â ›â —â ½" }, { "input": "angst", "output": "â â â ›â Œ" }, { "input": "angstrom", "output": "â â â ›â Œâ —â •â " }, { "input": "angstroms", "output": "â â â ›â Œâ —â •â â Ž" }, { "input": "anguish", "output": "â â â ›â ¥â Šâ ©" }, { "input": "anguished", "output": "â â â ›â ¥â Šâ ©â «" }, { "input": "anguishes", "output": "â â â ›â ¥â Šâ ©â ‘â Ž" }, { "input": "anguishing", "output": "â â â ›â ¥â Šâ ©â ¬" }, { "input": "angular", "output": "â â â ›â ¥â ‡â œ" }, { "input": "angularities", "output": "â â â ›â ¥â ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "angularity", "output": "â â â ›â ¥â ‡â œâ °â ½" }, { "input": "ani", "output": "â â â Š" }, { "input": "animal", "output": "â â â Šâ â â ‡" }, { "input": "animals", "output": "â â â Šâ â â ‡â Ž" }, { "input": "animate", "output": "â â â Šâ â â žâ ‘" }, { "input": "animated", "output": "â â â Šâ â â žâ «" }, { "input": "animatedly", "output": "â â â Šâ â â žâ «â ‡â ½" }, { "input": "animates", "output": "â â â Šâ â â žâ ‘â Ž" }, { "input": "animating", "output": "â â â Šâ â â žâ ¬" }, { "input": "animation", "output": "â â â Šâ â â °â " }, { "input": "animations", "output": "â â â Šâ â â °â â Ž" }, { "input": "animator", "output": "â â â Šâ â â žâ •â —" }, { "input": "animators", "output": "â â â Šâ â â žâ •â —â Ž" }, { "input": "animism", "output": "â â â Šâ â Šâ Žâ " }, { "input": "animist", "output": "â â â Šâ â Šâ Œ" }, { "input": "animistic", "output": "â â â Šâ â Šâ Œâ Šâ ‰" }, { "input": "animists", "output": "â â â Šâ â Šâ Œâ Ž" }, { "input": "animosities", "output": "â â â Šâ â •â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "animosity", "output": "â â â Šâ â •â Žâ °â ½" }, { "input": "animus", "output": "â â â Šâ â ¥â Ž" }, { "input": "anion", "output": "â â â Šâ •â " }, { "input": "anions", "output": "â â â Šâ •â â Ž" }, { "input": "anise", "output": "â â â Šâ Žâ ‘" }, { "input": "aniseed", "output": "â â â Šâ Žâ ‘â «" }, { "input": "ankh", "output": "â â â …â “" }, { "input": "ankhs", "output": "â â â …â “â Ž" }, { "input": "ankle", "output": "â â â …⠇⠑" }, { "input": "ankles", "output": "â â â …⠇⠑⠎" }, { "input": "anklet", "output": "â â â …⠇⠑⠞" }, { "input": "anklets", "output": "â â â …⠇⠑⠞⠎" }, { "input": "annals", "output": "â â â â â ‡â Ž" }, { "input": "anneal", "output": "â â â â ‚â ‡" }, { "input": "annealed", "output": "â â â â ‚⠇⠫" }, { "input": "annealing", "output": "â â â â ‚⠇⠬" }, { "input": "anneals", "output": "â â â â ‚⠇⠎" }, { "input": "annex", "output": "â â â â ‘â ­" }, { "input": "annexation", "output": "â â â â ‘â ­â â °â " }, { "input": "annexations", "output": "â â â â ‘â ­â â °â â Ž" }, { "input": "annexed", "output": "â â â â ‘â ­â «" }, { "input": "annexes", "output": "â â â â ‘â ­â ‘â Ž" }, { "input": "annexing", "output": "â â â â ‘â ­â ¬" }, { "input": "annihilate", "output": "â â â â Šâ “â Šâ ‡â â žâ ‘" }, { "input": "annihilated", "output": "â â â â Šâ “â Šâ ‡â â žâ «" }, { "input": "annihilates", "output": "â â â â Šâ “â Šâ ‡â â žâ ‘â Ž" }, { "input": "annihilating", "output": "â â â â Šâ “â Šâ ‡â â žâ ¬" }, { "input": "annihilation", "output": "â â â â Šâ “â Šâ ‡â â °â " }, { "input": "annihilator", "output": "â â â â Šâ “â Šâ ‡â â žâ •â —" }, { "input": "annihilators", "output": "â â â â Šâ “â Šâ ‡â â žâ •â —â Ž" }, { "input": "anniversaries", "output": "â â â â Šâ §â »â Žâ œâ Šâ ‘â Ž" }, { "input": "anniversary", "output": "â â â â Šâ §â »â Žâ œâ ½" }, { "input": "annotate", "output": "â â â â •â žâ â žâ ‘" }, { "input": "annotated", "output": "â â â â •â žâ â žâ «" }, { "input": "annotates", "output": "â â â â •â žâ â žâ ‘â Ž" }, { "input": "annotating", "output": "â â â â •â žâ â žâ ¬" }, { "input": "annotation", "output": "â â â â •â žâ â °â " }, { "input": "annotations", "output": "â â â â •â žâ â °â â Ž" }, { "input": "announce", "output": "â â â â ³â â ‰â ‘" }, { "input": "announced", "output": "â â â â ³â â ‰â «" }, { "input": "announcement", "output": "â â â â ³â â ‰â ‘â °â ž" }, { "input": "announcements", "output": "â â â â ³â â ‰â ‘â °â žâ Ž" }, { "input": "announcer", "output": "â â â â ³â â ‰â »" }, { "input": "announcers", "output": "â â â â ³â â ‰â »â Ž" }, { "input": "announces", "output": "â â â â ³â â ‰â ‘â Ž" }, { "input": "announcing", "output": "â â â â ³â â ‰â ¬" }, { "input": "annoy", "output": "â â â â •â ½" }, { "input": "annoyance", "output": "â â â â •⠽⠨⠑" }, { "input": "annoyances", "output": "â â â â •⠽⠨⠑⠎" }, { "input": "annoyed", "output": "â â â â •⠽⠫" }, { "input": "annoying", "output": "â â â â •⠽⠬" }, { "input": "annoyingly", "output": "â â â â •⠽⠬⠇⠽" }, { "input": "annoys", "output": "â â â â •⠽⠎" }, { "input": "annual", "output": "â â â â ¥â â ‡" }, { "input": "annually", "output": "â â â â ¥â â ‡â ‡â ½" }, { "input": "annuals", "output": "â â â â ¥â â ‡â Ž" }, { "input": "annuities", "output": "â â â â ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "annuity", "output": "â â â â ¥â °â ½" }, { "input": "annul", "output": "â â â â ¥â ‡" }, { "input": "annular", "output": "â â â â ¥â ‡â œ" }, { "input": "annulled", "output": "â â â â ¥â ‡â ‡â «" }, { "input": "annulling", "output": "â â â â ¥â ‡â ‡â ¬" }, { "input": "annulment", "output": "â â â â ¥â ‡â °â ž" }, { "input": "annulments", "output": "â â â â ¥â ‡â °â žâ Ž" }, { "input": "annuls", "output": "â â â â ¥â ‡â Ž" }, { "input": "anode", "output": "â â â •⠙⠑" }, { "input": "anodes", "output": "â â â •⠙⠑⠎" }, { "input": "anodyne", "output": "â â â •⠙⠽â â ‘" }, { "input": "anodynes", "output": "â â â •⠙⠽â â ‘â Ž" }, { "input": "anoint", "output": "â â â •⠔⠞" }, { "input": "anointed", "output": "â â â •⠔⠞⠫" }, { "input": "anointing", "output": "â â â •⠔⠞⠬" }, { "input": "anointment", "output": "â â â •⠔⠞⠰⠞" }, { "input": "anoints", "output": "â â â •⠔⠞⠎" }, { "input": "anomalies", "output": "â â â •â â â ‡â Šâ ‘â Ž" }, { "input": "anomalous", "output": "â â â •â â â ‡â ³â Ž" }, { "input": "anomaly", "output": "â â â •â â â ‡â ½" }, { "input": "anon", "output": "â â â •â " }, { "input": "anons", "output": "â â â •â â Ž" }, { "input": "anonymity", "output": "â â â •â â ½â â °â ½" }, { "input": "anonymous", "output": "â â â •â â ½â â ³â Ž" }, { "input": "anonymously", "output": "â â â •â â ½â â ³â Žâ ‡â ½" }, { "input": "anopheles", "output": "â â â •â â “⠑⠇⠑⠎" }, { "input": "anorak", "output": "â â â •â —â â …" }, { "input": "anoraks", "output": "â â â •â —â â …â Ž" }, { "input": "anorexia", "output": "â â â •â —â ‘â ­â Šâ " }, { "input": "anorexic", "output": "â â â •â —â ‘â ­â Šâ ‰" }, { "input": "anorexics", "output": "â â â •⠗⠑⠭⠊⠉⠎" }, { "input": "another", "output": "â â â •⠮⠗" }, { "input": "answer", "output": "â â â Žâ ºâ »" }, { "input": "answerable", "output": "â â â Žâ ºâ »â â ƒâ ‡â ‘" }, { "input": "answered", "output": "â â â Žâ ºâ »â «" }, { "input": "answering", "output": "â â â Žâ ºâ »â ¬" }, { "input": "answers", "output": "â â â Žâ ºâ »â Ž" }, { "input": "ant", "output": "â â â ž" }, { "input": "antacid", "output": "â â â žâ â ‰â Šâ ™" }, { "input": "antacids", "output": "â â â žâ â ‰â Šâ ™â Ž" }, { "input": "antagonism", "output": "â â â žâ â ›â •â â Šâ Žâ " }, { "input": "antagonisms", "output": "â â â žâ â ›â •â â Šâ Žâ â Ž" }, { "input": "antagonist", "output": "â â â žâ â ›â •â â Šâ Œ" }, { "input": "antagonistic", "output": "â â â žâ â ›â •â â Šâ Œâ Šâ ‰" }, { "input": "antagonistically", "output": "â â â žâ â ›â •â â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "antagonists", "output": "â â â žâ â ›â •â â Šâ Œâ Ž" }, { "input": "antagonize", "output": "â â â žâ â ›â •â â Šâ µâ ‘" }, { "input": "antagonized", "output": "â â â žâ â ›â •â â Šâ µâ «" }, { "input": "antagonizes", "output": "â â â žâ â ›â •â â Šâ µâ ‘â Ž" }, { "input": "antagonizing", "output": "â â â žâ â ›â •â â Šâ µâ ¬" }, { "input": "antarctic", "output": "â â â žâ œâ ‰â žâ Šâ ‰" }, { "input": "ante", "output": "â â â žâ ‘" }, { "input": "anteater", "output": "â â â žâ ‚â žâ »" }, { "input": "anteaters", "output": "â â â žâ ‚⠞⠻⠎" }, { "input": "antebellum", "output": "â â â žâ ‘⠃⠑⠇⠇⠥â " }, { "input": "antecedent", "output": "â â â žâ ‘⠉⠫⠢⠞" }, { "input": "antecedents", "output": "â â â žâ ‘⠉⠫⠢⠞⠎" }, { "input": "antechamber", "output": "â â â žâ ‘â ¡â â â ƒâ »" }, { "input": "antechambers", "output": "â â â žâ ‘â ¡â â â ƒâ »â Ž" }, { "input": "anted", "output": "â â â žâ «" }, { "input": "antedate", "output": "â â â žâ «â â žâ ‘" }, { "input": "antedated", "output": "â â â žâ «â â žâ «" }, { "input": "antedates", "output": "â â â žâ «â â žâ ‘â Ž" }, { "input": "antedating", "output": "â â â žâ «â â žâ ¬" }, { "input": "antediluvian", "output": "â â â žâ «â Šâ ‡â ¥â §â Šâ â " }, { "input": "anteed", "output": "â â â žâ ‘â «" }, { "input": "anteing", "output": "â â â žâ ‘â ¬" }, { "input": "antelope", "output": "â â â žâ ‘⠇⠕â â ‘" }, { "input": "antelopes", "output": "â â â žâ ‘⠇⠕â â ‘â Ž" }, { "input": "antenna", "output": "â â â žâ ¢â â " }, { "input": "antennae", "output": "â â â žâ ¢â â â ‘" }, { "input": "antennas", "output": "â â â žâ ¢â â â Ž" }, { "input": "anterior", "output": "â â â žâ »â Šâ •â —" }, { "input": "anteroom", "output": "â â â žâ »â •â •â " }, { "input": "anterooms", "output": "â â â žâ »â •â •â â Ž" }, { "input": "antes", "output": "â â â žâ ‘â Ž" }, { "input": "anthem", "output": "â â â ®â " }, { "input": "anthems", "output": "â â â ®â â Ž" }, { "input": "anther", "output": "â â â ®â —" }, { "input": "anthers", "output": "â â â ®â —â Ž" }, { "input": "anthill", "output": "â â â žâ “⠊⠇⠇" }, { "input": "anthills", "output": "â â â žâ “⠊⠇⠇⠎" }, { "input": "anthologies", "output": "â â â ¹â •⠇⠕⠛⠊⠑⠎" }, { "input": "anthologist", "output": "â â â ¹â •⠇⠕⠛⠊⠌" }, { "input": "anthologists", "output": "â â â ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "anthologize", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠑" }, { "input": "anthologized", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠫" }, { "input": "anthologizes", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠑⠎" }, { "input": "anthologizing", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠬" }, { "input": "anthology", "output": "â â â ¹â •⠇⠕⠛⠽" }, { "input": "anthracite", "output": "â â â ¹â —â â ‰â Šâ žâ ‘" }, { "input": "anthrax", "output": "â â â ¹â —â â ­" }, { "input": "anthropocentric", "output": "â â â ¹â —â •â â •⠉⠢⠞⠗⠊⠉" }, { "input": "anthropoid", "output": "â â â ¹â —â •â â •â Šâ ™" }, { "input": "anthropoids", "output": "â â â ¹â —â •â â •⠊⠙⠎" }, { "input": "anthropological", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "anthropologist", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠌" }, { "input": "anthropologists", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠌⠎" }, { "input": "anthropology", "output": "â â â ¹â —â •â â •⠇⠕⠛⠽" }, { "input": "anthropomorphic", "output": "â â â ¹â —â •â â •â â •â —â â “â Šâ ‰" }, { "input": "anthropomorphism", "output": "â â â ¹â —â •â â •â â •â —â â “â Šâ Žâ " }, { "input": "anti", "output": "â â â žâ Š" }, { "input": "antiabortion", "output": "â â â žâ Šâ â ƒâ •â —â °â " }, { "input": "antiaircraft", "output": "â â â žâ Šâ â Šâ —⠉⠗â â ‹â ž" }, { "input": "antibiotic", "output": "â â â žâ Šâ ƒâ Šâ •â žâ Šâ ‰" }, { "input": "antibiotics", "output": "â â â žâ Šâ ƒâ Šâ •⠞⠊⠉⠎" }, { "input": "antibodies", "output": "â â â žâ Šâ ƒâ •⠙⠊⠑⠎" }, { "input": "antibody", "output": "â â â žâ Šâ ƒâ •⠙⠽" }, { "input": "antic", "output": "â â â žâ Šâ ‰" }, { "input": "anticipate", "output": "â â â žâ Šâ ‰â Šâ â â žâ ‘" }, { "input": "anticipated", "output": "â â â žâ Šâ ‰â Šâ â â žâ «" }, { "input": "anticipates", "output": "â â â žâ Šâ ‰â Šâ â â žâ ‘â Ž" }, { "input": "anticipating", "output": "â â â žâ Šâ ‰â Šâ â â žâ ¬" }, { "input": "anticipation", "output": "â â â žâ Šâ ‰â Šâ â â °â " }, { "input": "anticipations", "output": "â â â žâ Šâ ‰â Šâ â â °â â Ž" }, { "input": "anticipatory", "output": "â â â žâ Šâ ‰â Šâ â â žâ •â —â ½" }, { "input": "anticked", "output": "â â â žâ Šâ ‰â …â «" }, { "input": "anticking", "output": "â â â žâ Šâ ‰â …â ¬" }, { "input": "anticlimactic", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ‰â žâ Šâ ‰" }, { "input": "anticlimax", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ­" }, { "input": "anticlimaxes", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ­â ‘â Ž" }, { "input": "anticlockwise", "output": "â â â žâ Šâ ‰â ‡â •⠉⠅⠺⠊⠎⠑" }, { "input": "antics", "output": "â â â žâ Šâ ‰â Ž" }, { "input": "anticyclone", "output": "â â â žâ Šâ ‰â ½â ‰â ‡â â •" }, { "input": "anticyclones", "output": "â â â žâ Šâ ‰â ½â ‰â ‡â â •â Ž" }, { "input": "antidepressant", "output": "â â â žâ Šâ ™â ‘â â —â ‘â Žâ Žâ â â ž" }, { "input": "antidepressants", "output": "â â â žâ Šâ ™â ‘â â —â ‘â Žâ Žâ â â žâ Ž" }, { "input": "antidote", "output": "â â â žâ Šâ ™â •â žâ ‘" }, { "input": "antidotes", "output": "â â â žâ Šâ ™â •â žâ ‘â Ž" }, { "input": "antifreeze", "output": "â â â žâ Šâ ‹â —⠑⠑⠵⠑" }, { "input": "antigen", "output": "â â â žâ Šâ ›â ¢" }, { "input": "antigens", "output": "â â â žâ Šâ ›â ¢â Ž" }, { "input": "antihero", "output": "â â â žâ Šâ “⠻⠕" }, { "input": "antiheroes", "output": "â â â žâ Šâ “⠻⠕⠑⠎" }, { "input": "antihistamine", "output": "â â â žâ Šâ “â Šâ Œâ â â ”â ‘" }, { "input": "antihistamines", "output": "â â â žâ Šâ “â Šâ Œâ â â ”â ‘â Ž" }, { "input": "antiknock", "output": "â â â žâ Šâ …â â •⠉⠅" }, { "input": "antimatter", "output": "â â â žâ Šâ â â žâ žâ »" }, { "input": "antimony", "output": "â â â žâ Šâ â •â â ½" }, { "input": "antiparticle", "output": "â â â žâ Šâ â â Šâ ‰â ‡â ‘" }, { "input": "antiparticles", "output": "â â â žâ Šâ â â Šâ ‰â ‡â ‘â Ž" }, { "input": "antipasti", "output": "â â â žâ Šâ â â Œâ Š" }, { "input": "antipasto", "output": "â â â žâ Šâ â â Œâ •" }, { "input": "antipastos", "output": "â â â žâ Šâ â â Œâ •â Ž" }, { "input": "antipathetic", "output": "â â â žâ Šâ â â ®â žâ Šâ ‰" }, { "input": "antipathies", "output": "â â â žâ Šâ â â ¹â Šâ ‘â Ž" }, { "input": "antipathy", "output": "â â â žâ Šâ â â ¹â ½" }, { "input": "antipersonnel", "output": "â â â žâ Šâ â »â Žâ •â â â ‘â ‡" }, { "input": "antiperspirant", "output": "â â â žâ Šâ â »â Žâ â Šâ —â â â ž" }, { "input": "antiperspirants", "output": "â â â žâ Šâ â »â Žâ â Šâ —â â â žâ Ž" }, { "input": "antiphonal", "output": "â â â žâ Šâ â “â •â â â ‡" }, { "input": "antiphonals", "output": "â â â žâ Šâ â “â •â â â ‡â Ž" }, { "input": "antipodes", "output": "â â â žâ Šâ â •⠙⠑⠎" }, { "input": "antiquarian", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â " }, { "input": "antiquarians", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â â Ž" }, { "input": "antiquaries", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ ‘â Ž" }, { "input": "antiquary", "output": "â â â žâ Šâ Ÿâ ¥â œâ ½" }, { "input": "antiquate", "output": "â â â žâ Šâ Ÿâ ¥â â žâ ‘" }, { "input": "antiquated", "output": "â â â žâ Šâ Ÿâ ¥â â žâ «" }, { "input": "antiquates", "output": "â â â žâ Šâ Ÿâ ¥â â žâ ‘â Ž" }, { "input": "antiquating", "output": "â â â žâ Šâ Ÿâ ¥â â žâ ¬" }, { "input": "antique", "output": "â â â žâ Šâ Ÿâ ¥â ‘" }, { "input": "antiqued", "output": "â â â žâ Šâ Ÿâ ¥â «" }, { "input": "antiques", "output": "â â â žâ Šâ Ÿâ ¥â ‘â Ž" }, { "input": "antiquing", "output": "â â â žâ Šâ Ÿâ ¥â ¬" }, { "input": "antiquities", "output": "â â â žâ Šâ Ÿâ ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "antiquity", "output": "â â â žâ Šâ Ÿâ ¥â °â ½" }, { "input": "antis", "output": "â â â žâ Šâ Ž" }, { "input": "antiseptic", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰" }, { "input": "antiseptically", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "antiseptics", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰â Ž" }, { "input": "antislavery", "output": "â â â žâ Šâ Žâ ‡â â §â »â ½" }, { "input": "antisocial", "output": "â â â žâ Šâ Žâ •⠉⠊â â ‡" }, { "input": "antitheses", "output": "â â â žâ Šâ ®â Žâ ‘â Ž" }, { "input": "antithesis", "output": "â â â žâ Šâ ®â Žâ Šâ Ž" }, { "input": "antithetical", "output": "â â â žâ Šâ ®â žâ Šâ ‰â â ‡" }, { "input": "antithetically", "output": "â â â žâ Šâ ®â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "antitoxin", "output": "â â â žâ Šâ žâ •â ­â ”" }, { "input": "antitoxins", "output": "â â â žâ Šâ žâ •⠭⠔⠎" }, { "input": "antitrust", "output": "â â â žâ Šâ žâ —⠥⠌" }, { "input": "antiviral", "output": "â â â žâ Šâ §â Šâ —â â ‡" }, { "input": "antivirals", "output": "â â â žâ Šâ §â Šâ —â â ‡â Ž" }, { "input": "antiwar", "output": "â â â žâ Šâ ºâ œ" }, { "input": "antler", "output": "â â â žâ ‡â »" }, { "input": "antlered", "output": "â â â žâ ‡â »â «" }, { "input": "antlers", "output": "â â â žâ ‡â »â Ž" }, { "input": "antonym", "output": "â â â žâ •â â ½â " }, { "input": "antonyms", "output": "â â â žâ •â â ½â â Ž" }, { "input": "ants", "output": "â â â žâ Ž" }, { "input": "anus", "output": "â â â ¥â Ž" }, { "input": "anuses", "output": "â â â ¥â Žâ ‘â Ž" }, { "input": "anvil", "output": "â â â §â Šâ ‡" }, { "input": "anvils", "output": "â â â §â Šâ ‡â Ž" }, { "input": "anxieties", "output": "â â â ­â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "anxiety", "output": "â â â ­â Šâ ‘â žâ ½" }, { "input": "anxious", "output": "â â â ­â Šâ ³â Ž" }, { "input": "anxiously", "output": "â â â ­â Šâ ³â Žâ ‡â ½" }, { "input": "any", "output": "â â â ½" }, { "input": "anybodies", "output": "â â â ½â ƒâ •⠙⠊⠑⠎" }, { "input": "anybody", "output": "â â â ½â ƒâ •⠙⠽" }, { "input": "anyhow", "output": "â â â ½â “â ª" }, { "input": "anymore", "output": "â â â ½â â •â —â ‘" }, { "input": "anyone", "output": "â â â ½â â •" }, { "input": "anyplace", "output": "â â â ½â â ‡â â ‰â ‘" }, { "input": "anything", "output": "â â â ½â ¹â ¬" }, { "input": "anythings", "output": "â â â ½â ¹â ¬â Ž" }, { "input": "anytime", "output": "â â â ½â â ž" }, { "input": "anyway", "output": "â â â ½â ºâ â ½" }, { "input": "anywhere", "output": "â â â ½â â ±" }, { "input": "aorta", "output": "â â •â —â žâ " }, { "input": "aortae", "output": "â â •â —â žâ â ‘" }, { "input": "aortas", "output": "â â •â —â žâ â Ž" }, { "input": "apace", "output": "â â â â ‰â ‘" }, { "input": "apart", "output": "â â â " }, { "input": "apartheid", "output": "â â â â “â ‘â Šâ ™" }, { "input": "apartment", "output": "â â â â °â ž" }, { "input": "apartments", "output": "â â â â °â žâ Ž" }, { "input": "apathetic", "output": "â â â â ®â žâ Šâ ‰" }, { "input": "apathetically", "output": "â â â â ®â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "apathy", "output": "â â â â ¹â ½" }, { "input": "ape", "output": "â â â ‘" }, { "input": "aped", "output": "â â â «" }, { "input": "aperitif", "output": "â â â »â Šâ žâ Šâ ‹" }, { "input": "aperitifs", "output": "â â â »â Šâ žâ Šâ ‹â Ž" }, { "input": "aperture", "output": "â â â »â žâ ¥â —â ‘" }, { "input": "apertures", "output": "â â â »â žâ ¥â —â ‘â Ž" }, { "input": "apes", "output": "â â â ‘â Ž" }, { "input": "apex", "output": "â â â ‘â ­" }, { "input": "apexes", "output": "â â â ‘â ­â ‘â Ž" }, { "input": "aphasia", "output": "â â â “â â Žâ Šâ " }, { "input": "aphasic", "output": "â â â “â â Žâ Šâ ‰" }, { "input": "aphasics", "output": "â â â “â â Žâ Šâ ‰â Ž" }, { "input": "aphelia", "output": "â â â “⠑⠇⠊â " }, { "input": "aphelion", "output": "â â â “⠑⠇⠊⠕â " }, { "input": "aphelions", "output": "â â â “⠑⠇⠊⠕â â Ž" }, { "input": "aphid", "output": "â â â “â Šâ ™" }, { "input": "aphids", "output": "â â â “⠊⠙⠎" }, { "input": "aphorism", "output": "â â â “â •â —â Šâ Žâ " }, { "input": "aphorisms", "output": "â â â “â •â —â Šâ Žâ â Ž" }, { "input": "aphoristic", "output": "â â â “⠕⠗⠊⠌⠊⠉" }, { "input": "aphrodisiac", "output": "â â â “⠗⠕⠙⠊⠎⠊â â ‰" }, { "input": "aphrodisiacs", "output": "â â â “⠗⠕⠙⠊⠎⠊â â ‰â Ž" }, { "input": "apiaries", "output": "â â â Šâ œâ Šâ ‘â Ž" }, { "input": "apiary", "output": "â â â Šâ œâ ½" }, { "input": "apices", "output": "â â â Šâ ‰â ‘â Ž" }, { "input": "apiece", "output": "â â â Šâ ‘⠉⠑" }, { "input": "aping", "output": "â â â ¬" }, { "input": "aplenty", "output": "â â â ‡â ¢â žâ ½" }, { "input": "aplomb", "output": "â â â ‡â •â â ƒ" }, { "input": "apocalypse", "output": "â â â •â ‰â â ‡â ½â â Žâ ‘" }, { "input": "apocalypses", "output": "â â â •â ‰â â ‡â ½â â Žâ ‘â Ž" }, { "input": "apocalyptic", "output": "â â â •â ‰â â ‡â ½â â žâ Šâ ‰" }, { "input": "apocryphal", "output": "â â â •⠉⠗⠽â â “â â ‡" }, { "input": "apogee", "output": "â â â •⠛⠑⠑" }, { "input": "apogees", "output": "â â â •⠛⠑⠑⠎" }, { "input": "apolitical", "output": "â â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "apologetic", "output": "â â â •⠇⠕⠛⠑⠞⠊⠉" }, { "input": "apologetically", "output": "â â â •⠇⠕⠛⠑⠞⠊⠉â â ‡â ‡â ½" }, { "input": "apologia", "output": "â â â •⠇⠕⠛⠊â " }, { "input": "apologias", "output": "â â â •⠇⠕⠛⠊â â Ž" }, { "input": "apologies", "output": "â â â •⠇⠕⠛⠊⠑⠎" }, { "input": "apologist", "output": "â â â •⠇⠕⠛⠊⠌" }, { "input": "apologists", "output": "â â â •⠇⠕⠛⠊⠌⠎" }, { "input": "apologize", "output": "â â â •⠇⠕⠛⠊⠵⠑" }, { "input": "apologized", "output": "â â â •⠇⠕⠛⠊⠵⠫" }, { "input": "apologizes", "output": "â â â •⠇⠕⠛⠊⠵⠑⠎" }, { "input": "apologizing", "output": "â â â •⠇⠕⠛⠊⠵⠬" }, { "input": "apology", "output": "â â â •⠇⠕⠛⠽" }, { "input": "apoplectic", "output": "â â â •â â ‡â ‘⠉⠞⠊⠉" }, { "input": "apoplexies", "output": "â â â •â â ‡â ‘â ­â Šâ ‘â Ž" }, { "input": "apoplexy", "output": "â â â •â â ‡â ‘â ­â ½" }, { "input": "apostasies", "output": "â â â •â Œâ â Žâ Šâ ‘â Ž" }, { "input": "apostasy", "output": "â â â •â Œâ â Žâ ½" }, { "input": "apostate", "output": "â â â •â Œâ â žâ ‘" }, { "input": "apostates", "output": "â â â •â Œâ â žâ ‘â Ž" }, { "input": "apostle", "output": "â â â •⠌⠇⠑" }, { "input": "apostles", "output": "â â â •⠌⠇⠑⠎" }, { "input": "apostolic", "output": "â â â •⠌⠕⠇⠊⠉" }, { "input": "apostrophe", "output": "â â â •⠌⠗⠕â â “â ‘" }, { "input": "apostrophes", "output": "â â â •⠌⠗⠕â â “â ‘â Ž" }, { "input": "apothecaries", "output": "â â â •⠮⠉⠜⠊⠑⠎" }, { "input": "apothecary", "output": "â â â •⠮⠉⠜⠽" }, { "input": "apotheoses", "output": "â â â •⠮⠕⠎⠑⠎" }, { "input": "apotheosis", "output": "â â â •⠮⠕⠎⠊⠎" }, { "input": "appal", "output": "â â â â â ‡" }, { "input": "appall", "output": "â â â â â ‡â ‡" }, { "input": "appalled", "output": "â â â â â ‡â ‡â «" }, { "input": "appalling", "output": "â â â â â ‡â ‡â ¬" }, { "input": "appallingly", "output": "â â â â â ‡â ‡â ¬â ‡â ½" }, { "input": "appalls", "output": "â â â â â ‡â ‡â Ž" }, { "input": "appals", "output": "â â â â â ‡â Ž" }, { "input": "apparatus", "output": "â â â â œâ â žâ ¥â Ž" }, { "input": "apparatuses", "output": "â â â â œâ â žâ ¥â Žâ ‘â Ž" }, { "input": "apparel", "output": "â â â â œâ ‘â ‡" }, { "input": "appareled", "output": "â â â â œâ ‘⠇⠫" }, { "input": "appareling", "output": "â â â â œâ ‘⠇⠬" }, { "input": "apparelled", "output": "â â â â œâ ‘⠇⠇⠫" }, { "input": "apparelling", "output": "â â â â œâ ‘⠇⠇⠬" }, { "input": "apparels", "output": "â â â â œâ ‘⠇⠎" }, { "input": "apparent", "output": "â â â â œâ ¢â ž" }, { "input": "apparently", "output": "â â â â œâ ¢â žâ ‡â ½" }, { "input": "apparition", "output": "â â â â œâ Šâ °â " }, { "input": "apparitions", "output": "â â â â œâ Šâ °â â Ž" }, { "input": "appeal", "output": "â â â â ‚â ‡" }, { "input": "appealed", "output": "â â â â ‚⠇⠫" }, { "input": "appealing", "output": "â â â â ‚⠇⠬" }, { "input": "appeals", "output": "â â â â ‚⠇⠎" }, { "input": "appear", "output": "â â â â ‘â œ" }, { "input": "appearance", "output": "â â â â ‘⠜⠨⠑" }, { "input": "appearances", "output": "â â â â ‘⠜⠨⠑⠎" }, { "input": "appeared", "output": "â â â â ‘⠜⠫" }, { "input": "appearing", "output": "â â â â ‘⠜⠬" }, { "input": "appears", "output": "â â â â ‘⠜⠎" }, { "input": "appease", "output": "â â â â ‚â Žâ ‘" }, { "input": "appeased", "output": "â â â â ‚â Žâ «" }, { "input": "appeasement", "output": "â â â â ‚â Žâ ‘â °â ž" }, { "input": "appeasements", "output": "â â â â ‚â Žâ ‘â °â žâ Ž" }, { "input": "appeaser", "output": "â â â â ‚â Žâ »" }, { "input": "appeasers", "output": "â â â â ‚⠎⠻⠎" }, { "input": "appeases", "output": "â â â â ‚â Žâ ‘â Ž" }, { "input": "appeasing", "output": "â â â â ‚â Žâ ¬" }, { "input": "appellant", "output": "â â â â ‘⠇⠇â â â ž" }, { "input": "appellants", "output": "â â â â ‘⠇⠇â â â žâ Ž" }, { "input": "appellate", "output": "â â â â ‘⠇⠇â â žâ ‘" }, { "input": "appellation", "output": "â â â â ‘⠇⠇â â °â " }, { "input": "appellations", "output": "â â â â ‘⠇⠇â â °â â Ž" }, { "input": "append", "output": "â â â â ¢â ™" }, { "input": "appendage", "output": "â â â â ¢â ™â â ›â ‘" }, { "input": "appendages", "output": "â â â â ¢â ™â â ›â ‘â Ž" }, { "input": "appendectomies", "output": "â â â â ¢â ™â ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "appendectomy", "output": "â â â â ¢â ™â ‘⠉⠞⠕â â ½" }, { "input": "appended", "output": "â â â â ¢â ™â «" }, { "input": "appendices", "output": "â â â â ¢â ™â Šâ ‰â ‘â Ž" }, { "input": "appendicitis", "output": "â â â â ¢â ™â Šâ ‰â Šâ žâ Šâ Ž" }, { "input": "appending", "output": "â â â â ¢â ™â ¬" }, { "input": "appendix", "output": "â â â â ¢â ™â Šâ ­" }, { "input": "appendixes", "output": "â â â â ¢â ™â Šâ ­â ‘â Ž" }, { "input": "appends", "output": "â â â â ¢â ™â Ž" }, { "input": "appertain", "output": "â â â â »â žâ â ”" }, { "input": "appertained", "output": "â â â â »â žâ â ”â «" }, { "input": "appertaining", "output": "â â â â »â žâ â ”â ¬" }, { "input": "appertains", "output": "â â â â »â žâ â ”â Ž" }, { "input": "appetite", "output": "â â â â ‘â žâ Šâ žâ ‘" }, { "input": "appetites", "output": "â â â â ‘â žâ Šâ žâ ‘â Ž" }, { "input": "appetizer", "output": "â â â â ‘⠞⠊⠵⠻" }, { "input": "appetizers", "output": "â â â â ‘⠞⠊⠵⠻⠎" }, { "input": "appetizing", "output": "â â â â ‘⠞⠊⠵⠬" }, { "input": "appetizingly", "output": "â â â â ‘⠞⠊⠵⠬⠇⠽" }, { "input": "applaud", "output": "â â â â ‡â â ¥â ™" }, { "input": "applauded", "output": "â â â â ‡â â ¥â ™â «" }, { "input": "applauding", "output": "â â â â ‡â â ¥â ™â ¬" }, { "input": "applauds", "output": "â â â â ‡â â ¥â ™â Ž" }, { "input": "applause", "output": "â â â â ‡â â ¥â Žâ ‘" }, { "input": "apple", "output": "â â â â ‡â ‘" }, { "input": "applejack", "output": "â â â â ‡â ‘â šâ â ‰â …" }, { "input": "apples", "output": "â â â â ‡â ‘â Ž" }, { "input": "applesauce", "output": "â â â â ‡â ‘â Žâ â ¥â ‰â ‘" }, { "input": "appliance", "output": "â â â â ‡â Šâ ¨â ‘" }, { "input": "appliances", "output": "â â â â ‡â Šâ ¨â ‘â Ž" }, { "input": "applicability", "output": "â â â â ‡â Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "applicable", "output": "â â â â ‡â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "applicant", "output": "â â â â ‡â Šâ ‰â â â ž" }, { "input": "applicants", "output": "â â â â ‡â Šâ ‰â â â žâ Ž" }, { "input": "application", "output": "â â â â ‡â Šâ ‰â â °â " }, { "input": "applications", "output": "â â â â ‡â Šâ ‰â â °â â Ž" }, { "input": "applicator", "output": "â â â â ‡â Šâ ‰â â žâ •â —" }, { "input": "applicators", "output": "â â â â ‡â Šâ ‰â â žâ •â —â Ž" }, { "input": "applied", "output": "â â â â ‡â Šâ «" }, { "input": "applies", "output": "â â â â ‡â Šâ ‘â Ž" }, { "input": "appliqué", "output": "â â â â ‡â Šâ Ÿâ ¥â  â ˜â »â â ˜â ‰" }, { "input": "appliquéd", "output": "â â â â ‡â Šâ Ÿâ ¥â  â ˜â »â â ˜â ‰â ™" }, { "input": "appliquéing", "output": "â â â â ‡â Šâ Ÿâ ¥â  â ˜â »â â ˜â ‰â ”â ›" }, { "input": "appliqués", "output": "â â â â ‡â Šâ Ÿâ ¥â  â ˜â »â â ˜â ‰â Ž" }, { "input": "apply", "output": "â â â â ‡â ½" }, { "input": "applying", "output": "â â â â ‡â ½â ¬" }, { "input": "appoint", "output": "â â â â •⠔⠞" }, { "input": "appointed", "output": "â â â â •⠔⠞⠫" }, { "input": "appointee", "output": "â â â â •⠔⠞⠑⠑" }, { "input": "appointees", "output": "â â â â •⠔⠞⠑⠑⠎" }, { "input": "appointing", "output": "â â â â •⠔⠞⠬" }, { "input": "appointment", "output": "â â â â •⠔⠞⠰⠞" }, { "input": "appointments", "output": "â â â â •⠔⠞⠰⠞⠎" }, { "input": "appoints", "output": "â â â â •⠔⠞⠎" }, { "input": "apportion", "output": "â â â â •â —â °â " }, { "input": "apportioned", "output": "â â â â •â —â °â â «" }, { "input": "apportioning", "output": "â â â â •â —â °â â ¬" }, { "input": "apportionment", "output": "â â â â •â —â °â â °â ž" }, { "input": "apportions", "output": "â â â â •â —â °â â Ž" }, { "input": "apposite", "output": "â â â â •â Žâ Šâ žâ ‘" }, { "input": "appositely", "output": "â â â â •⠎⠊⠞⠑⠇⠽" }, { "input": "appositeness", "output": "â â â â •â Žâ Šâ žâ ‘â °â Ž" }, { "input": "apposition", "output": "â â â â •â Žâ Šâ °â " }, { "input": "appositive", "output": "â â â â •â Žâ Šâ žâ Šâ §â ‘" }, { "input": "appositives", "output": "â â â â •â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "appraisal", "output": "â â â â —â â Šâ Žâ â ‡" }, { "input": "appraisals", "output": "â â â â —â â Šâ Žâ â ‡â Ž" }, { "input": "appraise", "output": "â â â â —â â Šâ Žâ ‘" }, { "input": "appraised", "output": "â â â â —â â Šâ Žâ «" }, { "input": "appraiser", "output": "â â â â —â â Šâ Žâ »" }, { "input": "appraisers", "output": "â â â â —â â Šâ Žâ »â Ž" }, { "input": "appraises", "output": "â â â â —â â Šâ Žâ ‘â Ž" }, { "input": "appraising", "output": "â â â â —â â Šâ Žâ ¬" }, { "input": "appreciable", "output": "â â â â —⠑⠉⠊â â ƒâ ‡â ‘" }, { "input": "appreciably", "output": "â â â â —⠑⠉⠊â â ƒâ ‡â ½" }, { "input": "appreciate", "output": "â â â â —⠑⠉⠊â â žâ ‘" }, { "input": "appreciated", "output": "â â â â —⠑⠉⠊â â žâ «" }, { "input": "appreciates", "output": "â â â â —⠑⠉⠊â â žâ ‘â Ž" }, { "input": "appreciating", "output": "â â â â —⠑⠉⠊â â žâ ¬" }, { "input": "appreciation", "output": "â â â â —⠑⠉⠊â â °â " }, { "input": "appreciations", "output": "â â â â —⠑⠉⠊â â °â â Ž" }, { "input": "appreciative", "output": "â â â â —⠑⠉⠊â â žâ Šâ §â ‘" }, { "input": "appreciatively", "output": "â â â â —⠑⠉⠊â â žâ Šâ §â ‘⠇⠽" }, { "input": "apprehend", "output": "â â â â —⠑⠓⠢⠙" }, { "input": "apprehended", "output": "â â â â —⠑⠓⠢⠙⠫" }, { "input": "apprehending", "output": "â â â â —⠑⠓⠢⠙⠬" }, { "input": "apprehends", "output": "â â â â —⠑⠓⠢⠙⠎" }, { "input": "apprehension", "output": "â â â â —⠑⠓⠢⠨â " }, { "input": "apprehensions", "output": "â â â â —⠑⠓⠢⠨â â Ž" }, { "input": "apprehensive", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑" }, { "input": "apprehensively", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑⠇⠽" }, { "input": "apprehensiveness", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑⠰⠎" }, { "input": "apprentice", "output": "â â â â —⠢⠞⠊⠉⠑" }, { "input": "apprenticed", "output": "â â â â —⠢⠞⠊⠉⠫" }, { "input": "apprentices", "output": "â â â â —⠢⠞⠊⠉⠑⠎" }, { "input": "apprenticeship", "output": "â â â â —⠢⠞⠊⠉⠑⠩⠊â " }, { "input": "apprenticeships", "output": "â â â â —⠢⠞⠊⠉⠑⠩⠊â â Ž" }, { "input": "apprenticing", "output": "â â â â —⠢⠞⠊⠉⠬" }, { "input": "apprise", "output": "â â â â —â Šâ Žâ ‘" }, { "input": "apprised", "output": "â â â â —â Šâ Žâ «" }, { "input": "apprises", "output": "â â â â —â Šâ Žâ ‘â Ž" }, { "input": "apprising", "output": "â â â â —â Šâ Žâ ¬" }, { "input": "approach", "output": "â â â â —â •â â ¡" }, { "input": "approachable", "output": "â â â â —â •â â ¡â â ƒâ ‡â ‘" }, { "input": "approached", "output": "â â â â —â •â â ¡â «" }, { "input": "approaches", "output": "â â â â —â •â â ¡â ‘â Ž" }, { "input": "approaching", "output": "â â â â —â •â â ¡â ¬" }, { "input": "approbation", "output": "â â â â —â •â ƒâ â °â " }, { "input": "approbations", "output": "â â â â —â •â ƒâ â °â â Ž" }, { "input": "appropriate", "output": "â â â â —â •â â —â Šâ â žâ ‘" }, { "input": "appropriated", "output": "â â â â —â •â â —â Šâ â žâ «" }, { "input": "appropriately", "output": "â â â â —â •â â —â Šâ â žâ ‘⠇⠽" }, { "input": "appropriateness", "output": "â â â â —â •â â —â Šâ â žâ ‘â °â Ž" }, { "input": "appropriates", "output": "â â â â —â •â â —â Šâ â žâ ‘â Ž" }, { "input": "appropriating", "output": "â â â â —â •â â —â Šâ â žâ ¬" }, { "input": "appropriation", "output": "â â â â —â •â â —â Šâ â °â " }, { "input": "appropriations", "output": "â â â â —â •â â —â Šâ â °â â Ž" }, { "input": "approval", "output": "â â â â —â •â §â â ‡" }, { "input": "approvals", "output": "â â â â —â •â §â â ‡â Ž" }, { "input": "approve", "output": "â â â â —â •â §â ‘" }, { "input": "approved", "output": "â â â â —â •â §â «" }, { "input": "approves", "output": "â â â â —â •â §â ‘â Ž" }, { "input": "approving", "output": "â â â â —â •â §â ¬" }, { "input": "approvingly", "output": "â â â â —⠕⠧⠬⠇⠽" }, { "input": "approximate", "output": "â â â â —â •â ­â Šâ â â žâ ‘" }, { "input": "approximated", "output": "â â â â —â •â ­â Šâ â â žâ «" }, { "input": "approximately", "output": "â â â â —â •â ­â Šâ â â žâ ‘⠇⠽" }, { "input": "approximates", "output": "â â â â —â •â ­â Šâ â â žâ ‘â Ž" }, { "input": "approximating", "output": "â â â â —â •â ­â Šâ â â žâ ¬" }, { "input": "approximation", "output": "â â â â —â •â ­â Šâ â â °â " }, { "input": "approximations", "output": "â â â â —â •â ­â Šâ â â °â â Ž" }, { "input": "appurtenance", "output": "â â â â ¥â —⠞⠢⠨⠑" }, { "input": "appurtenances", "output": "â â â â ¥â —⠞⠢⠨⠑⠎" }, { "input": "apricot", "output": "â â â —⠊⠉⠕⠞" }, { "input": "apricots", "output": "â â â —⠊⠉⠕⠞⠎" }, { "input": "apron", "output": "â â â —â •â " }, { "input": "aprons", "output": "â â â —â •â â Ž" }, { "input": "apropos", "output": "â â â —â •â â •â Ž" }, { "input": "apse", "output": "â â â Žâ ‘" }, { "input": "apses", "output": "â â â Žâ ‘â Ž" }, { "input": "apt", "output": "â â â ž" }, { "input": "apter", "output": "â â â žâ »" }, { "input": "aptest", "output": "â â â žâ ‘â Œ" }, { "input": "aptitude", "output": "â â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "aptitudes", "output": "â â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "aptly", "output": "â â â žâ ‡â ½" }, { "input": "aptness", "output": "â â â žâ °â Ž" }, { "input": "aqua", "output": "â â Ÿâ ¥â " }, { "input": "aquaculture", "output": "â â Ÿâ ¥â â ‰â ¥â ‡â žâ ¥â —â ‘" }, { "input": "aquae", "output": "â â Ÿâ ¥â â ‘" }, { "input": "aquamarine", "output": "â â Ÿâ ¥â â â œâ ”â ‘" }, { "input": "aquamarines", "output": "â â Ÿâ ¥â â â œâ ”â ‘â Ž" }, { "input": "aquanaut", "output": "â â Ÿâ ¥â â â â ¥â ž" }, { "input": "aquanauts", "output": "â â Ÿâ ¥â â â â ¥â žâ Ž" }, { "input": "aquaplane", "output": "â â Ÿâ ¥â â â ‡â â â ‘" }, { "input": "aquaplaned", "output": "â â Ÿâ ¥â â â ‡â â â «" }, { "input": "aquaplanes", "output": "â â Ÿâ ¥â â â ‡â â â ‘â Ž" }, { "input": "aquaplaning", "output": "â â Ÿâ ¥â â â ‡â â â ¬" }, { "input": "aquaria", "output": "â â Ÿâ ¥â œâ Šâ " }, { "input": "aquarium", "output": "â â Ÿâ ¥â œâ Šâ ¥â " }, { "input": "aquariums", "output": "â â Ÿâ ¥â œâ Šâ ¥â â Ž" }, { "input": "aquas", "output": "â â Ÿâ ¥â â Ž" }, { "input": "aquatic", "output": "â â Ÿâ ¥â â žâ Šâ ‰" }, { "input": "aquatics", "output": "â â Ÿâ ¥â â žâ Šâ ‰â Ž" }, { "input": "aquavit", "output": "â â Ÿâ ¥â â §â Šâ ž" }, { "input": "aqueduct", "output": "â â Ÿâ ¥â «â ¥â ‰â ž" }, { "input": "aqueducts", "output": "â â Ÿâ ¥â «â ¥â ‰â žâ Ž" }, { "input": "aqueous", "output": "â â Ÿâ ¥â ‘⠳⠎" }, { "input": "aquiculture", "output": "â â Ÿâ ¥â Šâ ‰â ¥â ‡â žâ ¥â —â ‘" }, { "input": "aquifer", "output": "â â Ÿâ ¥â Šâ ‹â »" }, { "input": "aquifers", "output": "â â Ÿâ ¥â Šâ ‹â »â Ž" }, { "input": "aquiline", "output": "â â Ÿâ ¥â Šâ ‡â ”â ‘" }, { "input": "arabesque", "output": "â œâ â ƒâ ‘⠎⠟⠥⠑" }, { "input": "arabesques", "output": "â œâ â ƒâ ‘⠎⠟⠥⠑⠎" }, { "input": "arable", "output": "â œâ â ƒâ ‡â ‘" }, { "input": "arachnid", "output": "â œâ â ¡â â Šâ ™" }, { "input": "arachnids", "output": "â œâ â ¡â â Šâ ™â Ž" }, { "input": "arbiter", "output": "⠜⠃⠊⠞⠻" }, { "input": "arbiters", "output": "⠜⠃⠊⠞⠻⠎" }, { "input": "arbitrarily", "output": "⠜⠃⠊⠞⠗⠜⠊⠇⠽" }, { "input": "arbitrariness", "output": "⠜⠃⠊⠞⠗⠜⠊⠰⠎" }, { "input": "arbitrary", "output": "⠜⠃⠊⠞⠗⠜⠽" }, { "input": "arbitrate", "output": "⠜⠃⠊⠞⠗â â žâ ‘" }, { "input": "arbitrated", "output": "⠜⠃⠊⠞⠗â â žâ «" }, { "input": "arbitrates", "output": "⠜⠃⠊⠞⠗â â žâ ‘â Ž" }, { "input": "arbitrating", "output": "⠜⠃⠊⠞⠗â â žâ ¬" }, { "input": "arbitration", "output": "⠜⠃⠊⠞⠗â â °â " }, { "input": "arbitrator", "output": "⠜⠃⠊⠞⠗â â žâ •â —" }, { "input": "arbitrators", "output": "⠜⠃⠊⠞⠗â â žâ •â —â Ž" }, { "input": "arbor", "output": "⠜⠃⠕⠗" }, { "input": "arboreal", "output": "⠜⠃⠕⠗⠂⠇" }, { "input": "arboreta", "output": "⠜⠃⠕⠗⠑⠞â " }, { "input": "arboretum", "output": "⠜⠃⠕⠗⠑⠞⠥â " }, { "input": "arboretums", "output": "⠜⠃⠕⠗⠑⠞⠥â â Ž" }, { "input": "arbors", "output": "⠜⠃⠕⠗⠎" }, { "input": "arborvitae", "output": "⠜⠃⠕⠗⠧⠊⠞â â ‘" }, { "input": "arborvitaes", "output": "⠜⠃⠕⠗⠧⠊⠞â â ‘â Ž" }, { "input": "arbutus", "output": "⠜⠃⠥⠞⠥⠎" }, { "input": "arbutuses", "output": "⠜⠃⠥⠞⠥⠎⠑⠎" }, { "input": "arc", "output": "⠜⠉" }, { "input": "arcade", "output": "⠜⠉â â ™â ‘" }, { "input": "arcades", "output": "⠜⠉â â ™â ‘â Ž" }, { "input": "arcane", "output": "⠜⠉â â â ‘" }, { "input": "arced", "output": "⠜⠉⠫" }, { "input": "arch", "output": "⠜⠡" }, { "input": "archaeological", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "archaeologist", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠌" }, { "input": "archaeologists", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠌⠎" }, { "input": "archaeology", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠽" }, { "input": "archaic", "output": "⠜⠡â â Šâ ‰" }, { "input": "archaically", "output": "⠜⠡â â Šâ ‰â â ‡â ‡â ½" }, { "input": "archaism", "output": "⠜⠡â â Šâ Žâ " }, { "input": "archaisms", "output": "⠜⠡â â Šâ Žâ â Ž" }, { "input": "archangel", "output": "⠜⠡â â â ›â ‘â ‡" }, { "input": "archangels", "output": "⠜⠡â â â ›â ‘⠇⠎" }, { "input": "archbishop", "output": "⠜⠡⠃⠊⠩⠕â " }, { "input": "archbishopric", "output": "⠜⠡⠃⠊⠩⠕â â —â Šâ ‰" }, { "input": "archbishoprics", "output": "⠜⠡⠃⠊⠩⠕â â —⠊⠉⠎" }, { "input": "archbishops", "output": "⠜⠡⠃⠊⠩⠕â â Ž" }, { "input": "archdeacon", "output": "⠜⠡⠙⠂⠉⠕â " }, { "input": "archdeacons", "output": "⠜⠡⠙⠂⠉⠕â â Ž" }, { "input": "archdiocese", "output": "⠜⠡⠙⠊⠕⠉⠑⠎⠑" }, { "input": "archdioceses", "output": "⠜⠡⠙⠊⠕⠉⠑⠎⠑⠎" }, { "input": "archduke", "output": "⠜⠡⠙⠥⠅⠑" }, { "input": "archdukes", "output": "⠜⠡⠙⠥⠅⠑⠎" }, { "input": "arched", "output": "⠜⠡⠫" }, { "input": "archenemies", "output": "⠜⠡⠢⠑â â Šâ ‘â Ž" }, { "input": "archenemy", "output": "⠜⠡⠢⠑â â ½" }, { "input": "archeological", "output": "⠜⠡⠑⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "archeologist", "output": "⠜⠡⠑⠕⠇⠕⠛⠊⠌" }, { "input": "archeologists", "output": "⠜⠡⠑⠕⠇⠕⠛⠊⠌⠎" }, { "input": "archeology", "output": "⠜⠡⠑⠕⠇⠕⠛⠽" }, { "input": "archer", "output": "⠜⠡⠻" }, { "input": "archers", "output": "⠜⠡⠻⠎" }, { "input": "archery", "output": "⠜⠡⠻⠽" }, { "input": "arches", "output": "⠜⠡⠑⠎" }, { "input": "archest", "output": "⠜⠡⠑⠌" }, { "input": "archetypal", "output": "⠜⠡⠑⠞⠽â â â ‡" }, { "input": "archetype", "output": "⠜⠡⠑⠞⠽â â ‘" }, { "input": "archetypes", "output": "⠜⠡⠑⠞⠽â â ‘â Ž" }, { "input": "arching", "output": "⠜⠡⠬" }, { "input": "archipelago", "output": "⠜⠡⠊â â ‘â ‡â â ›â •" }, { "input": "archipelagoes", "output": "⠜⠡⠊â â ‘â ‡â â ›â •â ‘â Ž" }, { "input": "archipelagos", "output": "⠜⠡⠊â â ‘â ‡â â ›â •â Ž" }, { "input": "architect", "output": "⠜⠡⠊⠞⠑⠉⠞" }, { "input": "architects", "output": "⠜⠡⠊⠞⠑⠉⠞⠎" }, { "input": "architectural", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗â â ‡" }, { "input": "architecturally", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗â â ‡â ‡â ½" }, { "input": "architecture", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗⠑" }, { "input": "architectures", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗⠑⠎" }, { "input": "archive", "output": "⠜⠡⠊⠧⠑" }, { "input": "archived", "output": "⠜⠡⠊⠧⠫" }, { "input": "archives", "output": "⠜⠡⠊⠧⠑⠎" }, { "input": "archiving", "output": "⠜⠡⠊⠧⠬" }, { "input": "archivist", "output": "⠜⠡⠊⠧⠊⠌" }, { "input": "archivists", "output": "⠜⠡⠊⠧⠊⠌⠎" }, { "input": "archly", "output": "⠜⠡⠇⠽" }, { "input": "archness", "output": "⠜⠡⠰⠎" }, { "input": "archway", "output": "⠜⠡⠺â â ½" }, { "input": "archways", "output": "⠜⠡⠺â â ½â Ž" }, { "input": "arcing", "output": "⠜⠉⠬" }, { "input": "arcked", "output": "⠜⠉⠅⠫" }, { "input": "arcking", "output": "⠜⠉⠅⠬" }, { "input": "arcs", "output": "⠜⠉⠎" }, { "input": "arctic", "output": "⠜⠉⠞⠊⠉" }, { "input": "arctics", "output": "⠜⠉⠞⠊⠉⠎" }, { "input": "ardent", "output": "⠜⠙⠢⠞" }, { "input": "ardently", "output": "⠜⠙⠢⠞⠇⠽" }, { "input": "ardor", "output": "⠜⠙⠕⠗" }, { "input": "ardors", "output": "⠜⠙⠕⠗⠎" }, { "input": "arduous", "output": "⠜⠙⠥⠳⠎" }, { "input": "arduously", "output": "⠜⠙⠥⠳⠎⠇⠽" }, { "input": "arduousness", "output": "⠜⠙⠥⠳⠎⠰⠎" }, { "input": "are", "output": "⠜⠑" }, { "input": "area", "output": "⠜⠑â " }, { "input": "areas", "output": "⠜⠂⠎" }, { "input": "arena", "output": "⠜⠢â " }, { "input": "arenas", "output": "⠜⠢â â Ž" }, { "input": "ares", "output": "⠜⠑⠎" }, { "input": "argon", "output": "⠜⠛⠕â " }, { "input": "argosies", "output": "⠜⠛⠕⠎⠊⠑⠎" }, { "input": "argosy", "output": "⠜⠛⠕⠎⠽" }, { "input": "argot", "output": "⠜⠛⠕⠞" }, { "input": "argots", "output": "⠜⠛⠕⠞⠎" }, { "input": "arguable", "output": "⠜⠛⠥â â ƒâ ‡â ‘" }, { "input": "arguably", "output": "⠜⠛⠥â â ƒâ ‡â ½" }, { "input": "argue", "output": "⠜⠛⠥⠑" }, { "input": "argued", "output": "⠜⠛⠥⠫" }, { "input": "argues", "output": "⠜⠛⠥⠑⠎" }, { "input": "arguing", "output": "⠜⠛⠥⠬" }, { "input": "argument", "output": "⠜⠛⠥⠰⠞" }, { "input": "argumentation", "output": "⠜⠛⠥⠰⠞â â °â " }, { "input": "argumentative", "output": "⠜⠛⠥⠰⠞â â žâ Šâ §â ‘" }, { "input": "arguments", "output": "⠜⠛⠥⠰⠞⠎" }, { "input": "argyle", "output": "⠜⠛⠽⠇⠑" }, { "input": "argyles", "output": "⠜⠛⠽⠇⠑⠎" }, { "input": "aria", "output": "⠜⠊â " }, { "input": "arias", "output": "⠜⠊â â Ž" }, { "input": "arid", "output": "⠜⠊⠙" }, { "input": "aridity", "output": "⠜⠊⠙⠰⠽" }, { "input": "aright", "output": "â â â —" }, { "input": "arise", "output": "⠜⠊⠎⠑" }, { "input": "arisen", "output": "⠜⠊⠎⠢" }, { "input": "arises", "output": "⠜⠊⠎⠑⠎" }, { "input": "arising", "output": "⠜⠊⠎⠬" }, { "input": "aristocracies", "output": "⠜⠊⠌⠕⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "aristocracy", "output": "⠜⠊⠌⠕⠉⠗â â ‰â ½" }, { "input": "aristocrat", "output": "⠜⠊⠌⠕⠉⠗â â ž" }, { "input": "aristocratic", "output": "⠜⠊⠌⠕⠉⠗â â žâ Šâ ‰" }, { "input": "aristocratically", "output": "⠜⠊⠌⠕⠉⠗â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "aristocrats", "output": "⠜⠊⠌⠕⠉⠗â â žâ Ž" }, { "input": "arithmetic", "output": "⠜⠊⠹â â ‘â žâ Šâ ‰" }, { "input": "arithmetical", "output": "⠜⠊⠹â â ‘â žâ Šâ ‰â â ‡" }, { "input": "arithmetically", "output": "⠜⠊⠹â â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "ark", "output": "⠜⠅" }, { "input": "arks", "output": "⠜⠅⠎" }, { "input": "arm", "output": "â œâ " }, { "input": "armada", "output": "â œâ â â ™â " }, { "input": "armadas", "output": "â œâ â â ™â â Ž" }, { "input": "armadillo", "output": "â œâ â â ™â Šâ ‡â ‡â •" }, { "input": "armadillos", "output": "â œâ â â ™â Šâ ‡â ‡â •â Ž" }, { "input": "armament", "output": "â œâ â â °â ž" }, { "input": "armaments", "output": "â œâ â â °â žâ Ž" }, { "input": "armature", "output": "â œâ â â žâ ¥â —â ‘" }, { "input": "armatures", "output": "â œâ â â žâ ¥â —â ‘â Ž" }, { "input": "armband", "output": "â œâ â ƒâ ¯" }, { "input": "armbands", "output": "â œâ â ƒâ ¯â Ž" }, { "input": "armchair", "output": "â œâ â ¡â â Šâ —" }, { "input": "armchairs", "output": "â œâ â ¡â â Šâ —â Ž" }, { "input": "armed", "output": "â œâ â «" }, { "input": "armful", "output": "â œâ â °â ‡" }, { "input": "armfuls", "output": "â œâ â °â ‡â Ž" }, { "input": "armhole", "output": "â œâ â “⠕⠇⠑" }, { "input": "armholes", "output": "â œâ â “⠕⠇⠑⠎" }, { "input": "armies", "output": "â œâ â Šâ ‘â Ž" }, { "input": "arming", "output": "â œâ â ¬" }, { "input": "armistice", "output": "â œâ â Šâ Œâ Šâ ‰â ‘" }, { "input": "armistices", "output": "â œâ â Šâ Œâ Šâ ‰â ‘â Ž" }, { "input": "armlet", "output": "â œâ â ‡â ‘â ž" }, { "input": "armlets", "output": "â œâ â ‡â ‘â žâ Ž" }, { "input": "armor", "output": "â œâ â •â —" }, { "input": "armored", "output": "â œâ â •â —â «" }, { "input": "armorer", "output": "â œâ â •â —â »" }, { "input": "armorers", "output": "â œâ â •⠗⠻⠎" }, { "input": "armories", "output": "â œâ â •â —â Šâ ‘â Ž" }, { "input": "armoring", "output": "â œâ â •â —â ¬" }, { "input": "armors", "output": "â œâ â •â —â Ž" }, { "input": "armory", "output": "â œâ â •â —â ½" }, { "input": "armpit", "output": "â œâ â â Šâ ž" }, { "input": "armpits", "output": "â œâ â â Šâ žâ Ž" }, { "input": "armrest", "output": "â œâ â —â ‘â Œ" }, { "input": "armrests", "output": "â œâ â —⠑⠌⠎" }, { "input": "arms", "output": "â œâ â Ž" }, { "input": "armsful", "output": "â œâ â Žâ °â ‡" }, { "input": "army", "output": "â œâ â ½" }, { "input": "aroma", "output": "⠜⠕â â " }, { "input": "aromas", "output": "⠜⠕â â â Ž" }, { "input": "aromatherapy", "output": "⠜⠕â â â ®â —â â â ½" }, { "input": "aromatic", "output": "⠜⠕â â â žâ Šâ ‰" }, { "input": "aromatics", "output": "⠜⠕â â â žâ Šâ ‰â Ž" }, { "input": "arose", "output": "⠜⠕⠎⠑" }, { "input": "around", "output": "⠜⠨⠙" }, { "input": "arousal", "output": "⠜⠳⠎â â ‡" }, { "input": "arouse", "output": "⠜⠳⠎⠑" }, { "input": "aroused", "output": "⠜⠳⠎⠫" }, { "input": "arouses", "output": "⠜⠳⠎⠑⠎" }, { "input": "arousing", "output": "⠜⠳⠎⠬" }, { "input": "arpeggio", "output": "â œâ â ‘â ¶â Šâ •" }, { "input": "arpeggios", "output": "â œâ â ‘â ¶â Šâ •â Ž" }, { "input": "arraign", "output": "⠜⠗â â Šâ ›â " }, { "input": "arraigned", "output": "⠜⠗â â Šâ ›â â «" }, { "input": "arraigning", "output": "⠜⠗â â Šâ ›â â ¬" }, { "input": "arraignment", "output": "⠜⠗â â Šâ ›â â °â ž" }, { "input": "arraignments", "output": "⠜⠗â â Šâ ›â â °â žâ Ž" }, { "input": "arraigns", "output": "⠜⠗â â Šâ ›â â Ž" }, { "input": "arrange", "output": "⠜⠗â â â ›â ‘" }, { "input": "arranged", "output": "⠜⠗â â â ›â «" }, { "input": "arrangement", "output": "⠜⠗â â â ›â ‘â °â ž" }, { "input": "arrangements", "output": "⠜⠗â â â ›â ‘â °â žâ Ž" }, { "input": "arranger", "output": "⠜⠗â â â ›â »" }, { "input": "arrangers", "output": "⠜⠗â â â ›â »â Ž" }, { "input": "arranges", "output": "⠜⠗â â â ›â ‘â Ž" }, { "input": "arranging", "output": "⠜⠗â â â ›â ¬" }, { "input": "arrant", "output": "⠜⠗â â â ž" }, { "input": "array", "output": "⠜⠗â â ½" }, { "input": "arrayed", "output": "⠜⠗â â ½â «" }, { "input": "arraying", "output": "⠜⠗â â ½â ¬" }, { "input": "arrays", "output": "⠜⠗â â ½â Ž" }, { "input": "arrears", "output": "⠜⠗⠑⠜⠎" }, { "input": "arrest", "output": "⠜⠗⠑⠌" }, { "input": "arrested", "output": "⠜⠗⠑⠌⠫" }, { "input": "arresting", "output": "⠜⠗⠑⠌⠬" }, { "input": "arrests", "output": "⠜⠗⠑⠌⠎" }, { "input": "arrival", "output": "⠜⠗⠊⠧â â ‡" }, { "input": "arrivals", "output": "⠜⠗⠊⠧â â ‡â Ž" }, { "input": "arrive", "output": "⠜⠗⠊⠧⠑" }, { "input": "arrived", "output": "⠜⠗⠊⠧⠫" }, { "input": "arrives", "output": "⠜⠗⠊⠧⠑⠎" }, { "input": "arriving", "output": "⠜⠗⠊⠧⠬" }, { "input": "arrogance", "output": "⠜⠗⠕⠛⠨⠑" }, { "input": "arrogant", "output": "⠜⠗⠕⠛â â â ž" }, { "input": "arrogantly", "output": "⠜⠗⠕⠛â â â žâ ‡â ½" }, { "input": "arrogate", "output": "⠜⠗⠕⠛â â žâ ‘" }, { "input": "arrogated", "output": "⠜⠗⠕⠛â â žâ «" }, { "input": "arrogates", "output": "⠜⠗⠕⠛â â žâ ‘â Ž" }, { "input": "arrogating", "output": "⠜⠗⠕⠛â â žâ ¬" }, { "input": "arrow", "output": "⠜⠗⠪" }, { "input": "arrowhead", "output": "⠜⠗⠪⠓⠂⠙" }, { "input": "arrowheads", "output": "⠜⠗⠪⠓⠂⠙⠎" }, { "input": "arrowroot", "output": "⠜⠗⠪⠗⠕⠕⠞" }, { "input": "arrows", "output": "⠜⠗⠪⠎" }, { "input": "arroyo", "output": "⠜⠗⠕⠽⠕" }, { "input": "arroyos", "output": "⠜⠗⠕⠽⠕⠎" }, { "input": "arsenal", "output": "⠜⠎⠢â â ‡" }, { "input": "arsenals", "output": "⠜⠎⠢â â ‡â Ž" }, { "input": "arsenic", "output": "⠜⠎⠢⠊⠉" }, { "input": "arson", "output": "⠜⠎⠕â " }, { "input": "arsonist", "output": "⠜⠎⠕â â Šâ Œ" }, { "input": "arsonists", "output": "⠜⠎⠕â â Šâ Œâ Ž" }, { "input": "art", "output": "⠜⠞" }, { "input": "artefact", "output": "⠜⠞⠑⠋â â ‰â ž" }, { "input": "artefacts", "output": "⠜⠞⠑⠋â â ‰â žâ Ž" }, { "input": "arterial", "output": "⠜⠞⠻⠊â â ‡" }, { "input": "arteries", "output": "⠜⠞⠻⠊⠑⠎" }, { "input": "arteriosclerosis", "output": "⠜⠞⠻⠊⠕⠎⠉⠇⠻⠕⠎⠊⠎" }, { "input": "artery", "output": "⠜⠞⠻⠽" }, { "input": "artful", "output": "⠜⠞⠰⠇" }, { "input": "artfully", "output": "⠜⠞⠰⠇⠇⠽" }, { "input": "artfulness", "output": "⠜⠞⠰⠇⠰⠎" }, { "input": "arthritic", "output": "⠜⠹⠗⠊⠞⠊⠉" }, { "input": "arthritics", "output": "⠜⠹⠗⠊⠞⠊⠉⠎" }, { "input": "arthritis", "output": "⠜⠹⠗⠊⠞⠊⠎" }, { "input": "arthropod", "output": "⠜⠹⠗⠕â â •â ™" }, { "input": "arthropods", "output": "⠜⠹⠗⠕â â •⠙⠎" }, { "input": "artichoke", "output": "⠜⠞⠊⠡⠕⠅⠑" }, { "input": "artichokes", "output": "⠜⠞⠊⠡⠕⠅⠑⠎" }, { "input": "article", "output": "⠜⠞⠊⠉⠇⠑" }, { "input": "articles", "output": "⠜⠞⠊⠉⠇⠑⠎" }, { "input": "articulate", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘" }, { "input": "articulated", "output": "⠜⠞⠊⠉⠥⠇â â žâ «" }, { "input": "articulately", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘⠇⠽" }, { "input": "articulateness", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘â °â Ž" }, { "input": "articulates", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘â Ž" }, { "input": "articulating", "output": "⠜⠞⠊⠉⠥⠇â â žâ ¬" }, { "input": "articulation", "output": "⠜⠞⠊⠉⠥⠇â â °â " }, { "input": "articulations", "output": "⠜⠞⠊⠉⠥⠇â â °â â Ž" }, { "input": "artier", "output": "⠜⠞⠊⠻" }, { "input": "artiest", "output": "⠜⠞⠊⠑⠌" }, { "input": "artifact", "output": "⠜⠞⠊⠋â â ‰â ž" }, { "input": "artifacts", "output": "⠜⠞⠊⠋â â ‰â žâ Ž" }, { "input": "artifice", "output": "⠜⠞⠊⠋⠊⠉⠑" }, { "input": "artificer", "output": "⠜⠞⠊⠋⠊⠉⠻" }, { "input": "artificers", "output": "⠜⠞⠊⠋⠊⠉⠻⠎" }, { "input": "artifices", "output": "⠜⠞⠊⠋⠊⠉⠑⠎" }, { "input": "artificial", "output": "⠜⠞⠊⠋⠊⠉⠊â â ‡" }, { "input": "artificiality", "output": "⠜⠞⠊⠋⠊⠉⠊â â ‡â °â ½" }, { "input": "artificially", "output": "⠜⠞⠊⠋⠊⠉⠊â â ‡â ‡â ½" }, { "input": "artillery", "output": "⠜⠞⠊⠇⠇⠻⠽" }, { "input": "artisan", "output": "⠜⠞⠊⠎â â " }, { "input": "artisans", "output": "⠜⠞⠊⠎â â â Ž" }, { "input": "artist", "output": "⠜⠞⠊⠌" }, { "input": "artiste", "output": "⠜⠞⠊⠌⠑" }, { "input": "artistes", "output": "⠜⠞⠊⠌⠑⠎" }, { "input": "artistic", "output": "⠜⠞⠊⠌⠊⠉" }, { "input": "artistically", "output": "⠜⠞⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "artistry", "output": "⠜⠞⠊⠌⠗⠽" }, { "input": "artists", "output": "⠜⠞⠊⠌⠎" }, { "input": "artless", "output": "⠜⠞⠨⠎" }, { "input": "artlessly", "output": "⠜⠞⠨⠎⠇⠽" }, { "input": "artlessness", "output": "⠜⠞⠨⠎⠰⠎" }, { "input": "arts", "output": "⠜⠞⠎" }, { "input": "artsier", "output": "⠜⠞⠎⠊⠻" }, { "input": "artsiest", "output": "⠜⠞⠎⠊⠑⠌" }, { "input": "artsy", "output": "⠜⠞⠎⠽" }, { "input": "artwork", "output": "⠜⠞â â º" }, { "input": "artworks", "output": "⠜⠞â â ºâ Ž" }, { "input": "arty", "output": "⠜⠞⠽" }, { "input": "as", "output": "â µ" }, { "input": "asbestos", "output": "â â Žâ ƒâ ‘⠌⠕⠎" }, { "input": "ascend", "output": "â â Žâ ‰â ¢â ™" }, { "input": "ascendancy", "output": "â â Žâ ‰â ¢â ™â â â ‰â ½" }, { "input": "ascendant", "output": "â â Žâ ‰â ¢â ™â â â ž" }, { "input": "ascendants", "output": "â â Žâ ‰â ¢â ™â â â žâ Ž" }, { "input": "ascended", "output": "â â Žâ ‰â ¢â ™â «" }, { "input": "ascendency", "output": "â â Žâ ‰â ¢â ™â ¢â ‰â ½" }, { "input": "ascendent", "output": "â â Žâ ‰â ¢â ™â ¢â ž" }, { "input": "ascendents", "output": "â â Žâ ‰â ¢â ™â ¢â žâ Ž" }, { "input": "ascending", "output": "â â Žâ ‰â ¢â ™â ¬" }, { "input": "ascends", "output": "â â Žâ ‰â ¢â ™â Ž" }, { "input": "ascension", "output": "â â Žâ ‰â ¢â ¨â " }, { "input": "ascensions", "output": "â â Žâ ‰â ¢â ¨â â Ž" }, { "input": "ascent", "output": "â â Žâ ‰â ¢â ž" }, { "input": "ascents", "output": "â â Žâ ‰â ¢â žâ Ž" }, { "input": "ascertain", "output": "â â Žâ ‰â »â žâ â ”" }, { "input": "ascertainable", "output": "â â Žâ ‰â »â žâ â ”â â ƒâ ‡â ‘" }, { "input": "ascertained", "output": "â â Žâ ‰â »â žâ â ”â «" }, { "input": "ascertaining", "output": "â â Žâ ‰â »â žâ â ”â ¬" }, { "input": "ascertains", "output": "â â Žâ ‰â »â žâ â ”â Ž" }, { "input": "ascetic", "output": "â â Žâ ‰â ‘â žâ Šâ ‰" }, { "input": "asceticism", "output": "â â Žâ ‰â ‘⠞⠊⠉⠊⠎â " }, { "input": "ascetics", "output": "â â Žâ ‰â ‘⠞⠊⠉⠎" }, { "input": "ascot", "output": "â â Žâ ‰â •â ž" }, { "input": "ascots", "output": "â â Žâ ‰â •â žâ Ž" }, { "input": "ascribable", "output": "â â Žâ ‰â —â Šâ ƒâ â ƒâ ‡â ‘" }, { "input": "ascribe", "output": "â â Žâ ‰â —⠊⠃⠑" }, { "input": "ascribed", "output": "â â Žâ ‰â —⠊⠃⠫" }, { "input": "ascribes", "output": "â â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "ascribing", "output": "â â Žâ ‰â —⠊⠃⠬" }, { "input": "ascription", "output": "â â Žâ ‰â —â Šâ â °â " }, { "input": "aseptic", "output": "â â Žâ ‘â â žâ Šâ ‰" }, { "input": "asexual", "output": "â â Žâ ‘â ­â ¥â â ‡" }, { "input": "asexually", "output": "â â Žâ ‘â ­â ¥â â ‡â ‡â ½" }, { "input": "ash", "output": "â â ©" }, { "input": "ashamed", "output": "â â ©â â â «" }, { "input": "ashamedly", "output": "â â ©â â â «â ‡â ½" }, { "input": "ashcan", "output": "â â ©â ‰â â " }, { "input": "ashcans", "output": "â â ©â ‰â â â Ž" }, { "input": "ashed", "output": "â â ©â «" }, { "input": "ashen", "output": "â â ©â ¢" }, { "input": "ashes", "output": "â â ©â ‘â Ž" }, { "input": "ashier", "output": "â â ©â Šâ »" }, { "input": "ashiest", "output": "â â ©â Šâ ‘â Œ" }, { "input": "ashing", "output": "â â ©â ¬" }, { "input": "ashore", "output": "â â ©â •â —â ‘" }, { "input": "ashram", "output": "â â ©â —â â " }, { "input": "ashrams", "output": "â â ©â —â â â Ž" }, { "input": "ashtray", "output": "â â ©â žâ —â â ½" }, { "input": "ashtrays", "output": "â â ©â žâ —â â ½â Ž" }, { "input": "ashy", "output": "â â ©â ½" }, { "input": "aside", "output": "â â Žâ Šâ ™â ‘" }, { "input": "asides", "output": "â â Žâ Šâ ™â ‘â Ž" }, { "input": "asinine", "output": "â â Žâ ”⠔⠑" }, { "input": "ask", "output": "â â Žâ …" }, { "input": "askance", "output": "â â Žâ …⠨⠑" }, { "input": "asked", "output": "â â Žâ …â «" }, { "input": "askew", "output": "â â Žâ …â ‘â º" }, { "input": "asking", "output": "â â Žâ …â ¬" }, { "input": "asks", "output": "â â Žâ …â Ž" }, { "input": "aslant", "output": "â â Žâ ‡â â â ž" }, { "input": "asleep", "output": "â â Žâ ‡â ‘â ‘â " }, { "input": "asocial", "output": "â â Žâ •⠉⠊â â ‡" }, { "input": "asp", "output": "â â Žâ " }, { "input": "asparagus", "output": "â â Žâ â œâ â ›â ¥â Ž" }, { "input": "aspartame", "output": "â â Žâ â â â â ‘" }, { "input": "aspect", "output": "â â Žâ â ‘⠉⠞" }, { "input": "aspects", "output": "â â Žâ â ‘⠉⠞⠎" }, { "input": "aspen", "output": "â â Žâ â ¢" }, { "input": "aspens", "output": "â â Žâ â ¢â Ž" }, { "input": "asperities", "output": "â â Žâ â »â Šâ žâ Šâ ‘â Ž" }, { "input": "asperity", "output": "â â Žâ â »â °â ½" }, { "input": "aspersion", "output": "â â Žâ â »â ¨â " }, { "input": "aspersions", "output": "â â Žâ â »â ¨â â Ž" }, { "input": "asphalt", "output": "â â Žâ â “â â ‡â ž" }, { "input": "asphalted", "output": "â â Žâ â “â â ‡â žâ «" }, { "input": "asphalting", "output": "â â Žâ â “â â ‡â žâ ¬" }, { "input": "asphalts", "output": "â â Žâ â “â â ‡â žâ Ž" }, { "input": "asphyxia", "output": "â â Žâ â “⠽⠭⠊â " }, { "input": "asphyxiate", "output": "â â Žâ â “⠽⠭⠊â â žâ ‘" }, { "input": "asphyxiated", "output": "â â Žâ â “⠽⠭⠊â â žâ «" }, { "input": "asphyxiates", "output": "â â Žâ â “⠽⠭⠊â â žâ ‘â Ž" }, { "input": "asphyxiating", "output": "â â Žâ â “⠽⠭⠊â â žâ ¬" }, { "input": "asphyxiation", "output": "â â Žâ â “⠽⠭⠊â â °â " }, { "input": "asphyxiations", "output": "â â Žâ â “⠽⠭⠊â â °â â Ž" }, { "input": "aspic", "output": "â â Žâ â Šâ ‰" }, { "input": "aspics", "output": "â â Žâ â Šâ ‰â Ž" }, { "input": "aspirant", "output": "â â Žâ â Šâ —â â â ž" }, { "input": "aspirants", "output": "â â Žâ â Šâ —â â â žâ Ž" }, { "input": "aspirate", "output": "â â Žâ â Šâ —â â žâ ‘" }, { "input": "aspirated", "output": "â â Žâ â Šâ —â â žâ «" }, { "input": "aspirates", "output": "â â Žâ â Šâ —â â žâ ‘â Ž" }, { "input": "aspirating", "output": "â â Žâ â Šâ —â â žâ ¬" }, { "input": "aspiration", "output": "â â Žâ â Šâ —â â °â " }, { "input": "aspirations", "output": "â â Žâ â Šâ —â â °â â Ž" }, { "input": "aspire", "output": "â â Žâ â Šâ —â ‘" }, { "input": "aspired", "output": "â â Žâ â Šâ —â «" }, { "input": "aspires", "output": "â â Žâ â Šâ —â ‘â Ž" }, { "input": "aspirin", "output": "â â Žâ â Šâ —â ”" }, { "input": "aspiring", "output": "â â Žâ â Šâ —â ¬" }, { "input": "aspirins", "output": "â â Žâ â Šâ —⠔⠎" }, { "input": "asps", "output": "â â Žâ â Ž" }, { "input": "ass", "output": "â â Žâ Ž" }, { "input": "assail", "output": "â â Žâ Žâ â Šâ ‡" }, { "input": "assailable", "output": "â â Žâ Žâ â Šâ ‡â â ƒâ ‡â ‘" }, { "input": "assailant", "output": "â â Žâ Žâ â Šâ ‡â â â ž" }, { "input": "assailants", "output": "â â Žâ Žâ â Šâ ‡â â â žâ Ž" }, { "input": "assailed", "output": "â â Žâ Žâ â Šâ ‡â «" }, { "input": "assailing", "output": "â â Žâ Žâ â Šâ ‡â ¬" }, { "input": "assails", "output": "â â Žâ Žâ â Šâ ‡â Ž" }, { "input": "assassin", "output": "â â Žâ Žâ â Žâ Žâ ”" }, { "input": "assassinate", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ ‘" }, { "input": "assassinated", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ «" }, { "input": "assassinates", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ ‘â Ž" }, { "input": "assassinating", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ ¬" }, { "input": "assassination", "output": "â â Žâ Žâ â Žâ Žâ ”â â °â " }, { "input": "assassinations", "output": "â â Žâ Žâ â Žâ Žâ ”â â °â â Ž" }, { "input": "assassins", "output": "â â Žâ Žâ â Žâ Žâ ”â Ž" }, { "input": "assault", "output": "â â Žâ Žâ â ¥â ‡â ž" }, { "input": "assaulted", "output": "â â Žâ Žâ â ¥â ‡â žâ «" }, { "input": "assaulter", "output": "â â Žâ Žâ â ¥â ‡â žâ »" }, { "input": "assaulting", "output": "â â Žâ Žâ â ¥â ‡â žâ ¬" }, { "input": "assaults", "output": "â â Žâ Žâ â ¥â ‡â žâ Ž" }, { "input": "assay", "output": "â â Žâ Žâ â ½" }, { "input": "assayed", "output": "â â Žâ Žâ â ½â «" }, { "input": "assaying", "output": "â â Žâ Žâ â ½â ¬" }, { "input": "assays", "output": "â â Žâ Žâ â ½â Ž" }, { "input": "assemblage", "output": "â â Žâ Žâ ‘â â ƒâ ‡â â ›â ‘" }, { "input": "assemblages", "output": "â â Žâ Žâ ‘â â ƒâ ‡â â ›â ‘â Ž" }, { "input": "assemble", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ‘" }, { "input": "assembled", "output": "â â Žâ Žâ ‘â â ƒâ ‡â «" }, { "input": "assembler", "output": "â â Žâ Žâ ‘â â ƒâ ‡â »" }, { "input": "assemblers", "output": "â â Žâ Žâ ‘â â ƒâ ‡â »â Ž" }, { "input": "assembles", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ‘â Ž" }, { "input": "assemblies", "output": "â â Žâ Žâ ‘â â ƒâ ‡â Šâ ‘â Ž" }, { "input": "assembling", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ¬" }, { "input": "assembly", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½" }, { "input": "assemblyman", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â â â " }, { "input": "assemblymen", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â â ¢" }, { "input": "assemblywoman", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â ºâ •â â â " }, { "input": "assemblywomen", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â ºâ •â â ¢" }, { "input": "assent", "output": "â â Žâ Žâ ¢â ž" }, { "input": "assented", "output": "â â Žâ Žâ ¢â žâ «" }, { "input": "assenting", "output": "â â Žâ Žâ ¢â žâ ¬" }, { "input": "assents", "output": "â â Žâ Žâ ¢â žâ Ž" }, { "input": "assert", "output": "â â Žâ Žâ »â ž" }, { "input": "asserted", "output": "â â Žâ Žâ »â žâ «" }, { "input": "asserting", "output": "â â Žâ Žâ »â žâ ¬" }, { "input": "assertion", "output": "â â Žâ Žâ »â °â " }, { "input": "assertions", "output": "â â Žâ Žâ »â °â â Ž" }, { "input": "assertive", "output": "â â Žâ Žâ »â žâ Šâ §â ‘" }, { "input": "assertively", "output": "â â Žâ Žâ »â žâ Šâ §â ‘⠇⠽" }, { "input": "assertiveness", "output": "â â Žâ Žâ »â žâ Šâ §â ‘â °â Ž" }, { "input": "asserts", "output": "â â Žâ Žâ »â žâ Ž" }, { "input": "asses", "output": "â â Žâ Žâ ‘â Ž" }, { "input": "assess", "output": "â â Žâ Žâ ‘â Žâ Ž" }, { "input": "assessed", "output": "â â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "assesses", "output": "â â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "assessing", "output": "â â Žâ Žâ ‘â Žâ Žâ ¬" }, { "input": "assessment", "output": "â â Žâ Žâ ‘â Žâ Žâ °â ž" }, { "input": "assessments", "output": "â â Žâ Žâ ‘â Žâ Žâ °â žâ Ž" }, { "input": "assessor", "output": "â â Žâ Žâ ‘â Žâ Žâ •â —" }, { "input": "assessors", "output": "â â Žâ Žâ ‘â Žâ Žâ •â —â Ž" }, { "input": "asset", "output": "â â Žâ Žâ ‘â ž" }, { "input": "assets", "output": "â â Žâ Žâ ‘â žâ Ž" }, { "input": "asseverate", "output": "â â Žâ Žâ â ‘â â žâ ‘" }, { "input": "asseverated", "output": "â â Žâ Žâ â ‘â â žâ «" }, { "input": "asseverates", "output": "â â Žâ Žâ â ‘â â žâ ‘â Ž" }, { "input": "asseverating", "output": "â â Žâ Žâ â ‘â â žâ ¬" }, { "input": "asshole", "output": "â â Žâ Žâ “⠕⠇⠑" }, { "input": "assholes", "output": "â â Žâ Žâ “⠕⠇⠑⠎" }, { "input": "assiduous", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Ž" }, { "input": "assiduously", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Žâ ‡â ½" }, { "input": "assiduousness", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Žâ °â Ž" }, { "input": "assign", "output": "â â Žâ Žâ Šâ ›â " }, { "input": "assignable", "output": "â â Žâ Žâ Šâ ›â â â ƒâ ‡â ‘" }, { "input": "assignation", "output": "â â Žâ Žâ Šâ ›â â â °â " }, { "input": "assignations", "output": "â â Žâ Žâ Šâ ›â â â °â â Ž" }, { "input": "assigned", "output": "â â Žâ Žâ Šâ ›â â «" }, { "input": "assigning", "output": "â â Žâ Žâ Šâ ›â â ¬" }, { "input": "assignment", "output": "â â Žâ Žâ Šâ ›â â °â ž" }, { "input": "assignments", "output": "â â Žâ Žâ Šâ ›â â °â žâ Ž" }, { "input": "assigns", "output": "â â Žâ Žâ Šâ ›â â Ž" }, { "input": "assimilate", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ ‘" }, { "input": "assimilated", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ «" }, { "input": "assimilates", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ ‘â Ž" }, { "input": "assimilating", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ ¬" }, { "input": "assimilation", "output": "â â Žâ Žâ Šâ â Šâ ‡â â °â " }, { "input": "assist", "output": "â â Žâ Žâ Šâ Œ" }, { "input": "assistance", "output": "â â Žâ Žâ Šâ Œâ ¨â ‘" }, { "input": "assistant", "output": "â â Žâ Žâ Šâ Œâ â â ž" }, { "input": "assistants", "output": "â â Žâ Žâ Šâ Œâ â â žâ Ž" }, { "input": "assisted", "output": "â â Žâ Žâ Šâ Œâ «" }, { "input": "assisting", "output": "â â Žâ Žâ Šâ Œâ ¬" }, { "input": "assists", "output": "â â Žâ Žâ Šâ Œâ Ž" }, { "input": "assize", "output": "â â Žâ Žâ Šâ µâ ‘" }, { "input": "assizes", "output": "â â Žâ Žâ Šâ µâ ‘â Ž" }, { "input": "associate", "output": "â â Žâ Žâ •⠉⠊â â žâ ‘" }, { "input": "associated", "output": "â â Žâ Žâ •⠉⠊â â žâ «" }, { "input": "associates", "output": "â â Žâ Žâ •⠉⠊â â žâ ‘â Ž" }, { "input": "associating", "output": "â â Žâ Žâ •⠉⠊â â žâ ¬" }, { "input": "association", "output": "â â Žâ Žâ •⠉⠊â â °â " }, { "input": "associations", "output": "â â Žâ Žâ •⠉⠊â â °â â Ž" }, { "input": "associative", "output": "â â Žâ Žâ •⠉⠊â â žâ Šâ §â ‘" }, { "input": "assonance", "output": "â â Žâ Žâ •â â ¨â ‘" }, { "input": "assort", "output": "â â Žâ Žâ •â —â ž" }, { "input": "assorted", "output": "â â Žâ Žâ •â —â žâ «" }, { "input": "assorting", "output": "â â Žâ Žâ •â —â žâ ¬" }, { "input": "assortment", "output": "â â Žâ Žâ •â —â žâ °â ž" }, { "input": "assortments", "output": "â â Žâ Žâ •â —â žâ °â žâ Ž" }, { "input": "assorts", "output": "â â Žâ Žâ •â —â žâ Ž" }, { "input": "assuage", "output": "â â Žâ Žâ ¥â â ›â ‘" }, { "input": "assuaged", "output": "â â Žâ Žâ ¥â â ›â «" }, { "input": "assuages", "output": "â â Žâ Žâ ¥â â ›â ‘â Ž" }, { "input": "assuaging", "output": "â â Žâ Žâ ¥â â ›â ¬" }, { "input": "assume", "output": "â â Žâ Žâ ¥â â ‘" }, { "input": "assumed", "output": "â â Žâ Žâ ¥â â «" }, { "input": "assumes", "output": "â â Žâ Žâ ¥â â ‘â Ž" }, { "input": "assuming", "output": "â â Žâ Žâ ¥â â ¬" }, { "input": "assumption", "output": "â â Žâ Žâ ¥â â â °â " }, { "input": "assumptions", "output": "â â Žâ Žâ ¥â â â °â â Ž" }, { "input": "assurance", "output": "â â Žâ Žâ ¥â —⠨⠑" }, { "input": "assurances", "output": "â â Žâ Žâ ¥â —⠨⠑⠎" }, { "input": "assure", "output": "â â Žâ Žâ ¥â —â ‘" }, { "input": "assured", "output": "â â Žâ Žâ ¥â —â «" }, { "input": "assuredly", "output": "â â Žâ Žâ ¥â —⠫⠇⠽" }, { "input": "assureds", "output": "â â Žâ Žâ ¥â —â «â Ž" }, { "input": "assures", "output": "â â Žâ Žâ ¥â —â ‘â Ž" }, { "input": "assuring", "output": "â â Žâ Žâ ¥â —â ¬" }, { "input": "aster", "output": "â â Œâ »" }, { "input": "asterisk", "output": "â â Œâ »â Šâ Žâ …" }, { "input": "asterisked", "output": "â â Œâ »â Šâ Žâ …â «" }, { "input": "asterisking", "output": "â â Œâ »â Šâ Žâ …â ¬" }, { "input": "asterisks", "output": "â â Œâ »â Šâ Žâ …â Ž" }, { "input": "astern", "output": "â â Œâ »â " }, { "input": "asteroid", "output": "â â Œâ »â •â Šâ ™" }, { "input": "asteroids", "output": "â â Œâ »â •⠊⠙⠎" }, { "input": "asters", "output": "â â Œâ »â Ž" }, { "input": "asthma", "output": "â â Žâ ¹â â " }, { "input": "asthmatic", "output": "â â Žâ ¹â â â žâ Šâ ‰" }, { "input": "asthmatics", "output": "â â Žâ ¹â â â žâ Šâ ‰â Ž" }, { "input": "astigmatic", "output": "â â Œâ Šâ ›â â â žâ Šâ ‰" }, { "input": "astigmatism", "output": "â â Œâ Šâ ›â â â žâ Šâ Žâ " }, { "input": "astigmatisms", "output": "â â Œâ Šâ ›â â â žâ Šâ Žâ â Ž" }, { "input": "astir", "output": "â â Œâ Šâ —" }, { "input": "astonish", "output": "â â Œâ •â â Šâ ©" }, { "input": "astonished", "output": "â â Œâ •â â Šâ ©â «" }, { "input": "astonishes", "output": "â â Œâ •â â Šâ ©â ‘â Ž" }, { "input": "astonishing", "output": "â â Œâ •â â Šâ ©â ¬" }, { "input": "astonishingly", "output": "â â Œâ •â â Šâ ©â ¬â ‡â ½" }, { "input": "astonishment", "output": "â â Œâ •â â Šâ ©â °â ž" }, { "input": "astound", "output": "â â Œâ ¨â ™" }, { "input": "astounded", "output": "â â Œâ ¨â ™â «" }, { "input": "astounding", "output": "â â Œâ ¨â ™â ¬" }, { "input": "astoundingly", "output": "â â Œâ ¨â ™â ¬â ‡â ½" }, { "input": "astounds", "output": "â â Œâ ¨â ™â Ž" }, { "input": "astrakhan", "output": "â â Œâ —â â …â “â â " }, { "input": "astral", "output": "â â Œâ —â â ‡" }, { "input": "astray", "output": "â â Œâ —â â ½" }, { "input": "astride", "output": "â â Œâ —⠊⠙⠑" }, { "input": "astringency", "output": "â â Œâ —⠬⠢⠉⠽" }, { "input": "astringent", "output": "â â Œâ —⠬⠢⠞" }, { "input": "astringents", "output": "â â Œâ —⠬⠢⠞⠎" }, { "input": "astrologer", "output": "â â Œâ —⠕⠇⠕⠛⠻" }, { "input": "astrologers", "output": "â â Œâ —⠕⠇⠕⠛⠻⠎" }, { "input": "astrological", "output": "â â Œâ —⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "astrology", "output": "â â Œâ —⠕⠇⠕⠛⠽" }, { "input": "astronaut", "output": "â â Œâ —â •â â â ¥â ž" }, { "input": "astronautics", "output": "â â Œâ —â •â â â ¥â žâ Šâ ‰â Ž" }, { "input": "astronauts", "output": "â â Œâ —â •â â â ¥â žâ Ž" }, { "input": "astronomer", "output": "â â Œâ —â •â â •â â »" }, { "input": "astronomers", "output": "â â Œâ —â •â â •â â »â Ž" }, { "input": "astronomic", "output": "â â Œâ —â •â â •â â Šâ ‰" }, { "input": "astronomical", "output": "â â Œâ —â •â â •â â Šâ ‰â â ‡" }, { "input": "astronomically", "output": "â â Œâ —â •â â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "astronomy", "output": "â â Œâ —â •â â •â â ½" }, { "input": "astrophysicist", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠊⠌" }, { "input": "astrophysicists", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠊⠌⠎" }, { "input": "astrophysics", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠎" }, { "input": "astute", "output": "â â Œâ ¥â žâ ‘" }, { "input": "astutely", "output": "â â Œâ ¥â žâ ‘⠇⠽" }, { "input": "astuteness", "output": "â â Œâ ¥â žâ ‘â °â Ž" }, { "input": "astuter", "output": "â â Œâ ¥â žâ »" }, { "input": "astutest", "output": "â â Œâ ¥â žâ ‘â Œ" }, { "input": "asunder", "output": "â â Žâ â ¥" }, { "input": "asylum", "output": "â â Žâ ½â ‡â ¥â " }, { "input": "asylums", "output": "â â Žâ ½â ‡â ¥â â Ž" }, { "input": "asymmetric", "output": "â â Žâ ½â â â ‘â žâ —â Šâ ‰" }, { "input": "asymmetrical", "output": "â â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "asymmetrically", "output": "â â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "asymmetry", "output": "â â Žâ ½â â â ‘â žâ —â ½" }, { "input": "asymptotic", "output": "â â Žâ ½â â â žâ •â žâ Šâ ‰" }, { "input": "asymptotically", "output": "â â Žâ ½â â â žâ •â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "asynchronous", "output": "â â Žâ ½â â ¡â —â •â â ³â Ž" }, { "input": "asynchronously", "output": "â â Žâ ½â â ¡â —â •â â ³â Žâ ‡â ½" }, { "input": "at", "output": "â â ž" }, { "input": "atavism", "output": "â â žâ â §â Šâ Žâ " }, { "input": "atavistic", "output": "â â žâ â §â Šâ Œâ Šâ ‰" }, { "input": "ate", "output": "â â žâ ‘" }, { "input": "atelier", "output": "â â žâ ‘⠇⠊⠻" }, { "input": "ateliers", "output": "â â žâ ‘⠇⠊⠻⠎" }, { "input": "atheism", "output": "â â ®â Šâ Žâ " }, { "input": "atheist", "output": "â â ®â Šâ Œ" }, { "input": "atheistic", "output": "â â ®â Šâ Œâ Šâ ‰" }, { "input": "atheists", "output": "â â ®â Šâ Œâ Ž" }, { "input": "atherosclerosis", "output": "â â ®â —⠕⠎⠉⠇⠻⠕⠎⠊⠎" }, { "input": "athlete", "output": "â â ¹â ‡â ‘â žâ ‘" }, { "input": "athletes", "output": "â â ¹â ‡â ‘â žâ ‘â Ž" }, { "input": "athletic", "output": "â â ¹â ‡â ‘â žâ Šâ ‰" }, { "input": "athletically", "output": "â â ¹â ‡â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "athletics", "output": "â â ¹â ‡â ‘⠞⠊⠉⠎" }, { "input": "atlas", "output": "â â žâ ‡â â Ž" }, { "input": "atlases", "output": "â â žâ ‡â â Žâ ‘â Ž" }, { "input": "atmosphere", "output": "â â žâ â •â Žâ â â “" }, { "input": "atmospheres", "output": "â â žâ â •â Žâ â â “â Ž" }, { "input": "atmospheric", "output": "â â žâ â •â Žâ â “⠻⠊⠉" }, { "input": "atmospherically", "output": "â â žâ â •â Žâ â “⠻⠊⠉â â ‡â ‡â ½" }, { "input": "atoll", "output": "â â žâ •⠇⠇" }, { "input": "atolls", "output": "â â žâ •⠇⠇⠎" }, { "input": "atom", "output": "â â žâ •â " }, { "input": "atomic", "output": "â â žâ •â â Šâ ‰" }, { "input": "atomizer", "output": "â â žâ •â â Šâ µâ »" }, { "input": "atomizers", "output": "â â žâ •â â Šâ µâ »â Ž" }, { "input": "atoms", "output": "â â žâ •â â Ž" }, { "input": "atonal", "output": "â â žâ •â â â ‡" }, { "input": "atonality", "output": "â â žâ •â â â ‡â °â ½" }, { "input": "atone", "output": "â â žâ â •" }, { "input": "atoned", "output": "â â žâ •â â «" }, { "input": "atonement", "output": "â â žâ â •â °â ž" }, { "input": "atones", "output": "â â žâ â •â Ž" }, { "input": "atoning", "output": "â â žâ •â â ¬" }, { "input": "atop", "output": "â â žâ •â " }, { "input": "atria", "output": "â â žâ —â Šâ " }, { "input": "atrium", "output": "â â žâ —â Šâ ¥â " }, { "input": "atriums", "output": "â â žâ —â Šâ ¥â â Ž" }, { "input": "atrocious", "output": "â â žâ —⠕⠉⠊⠳⠎" }, { "input": "atrociously", "output": "â â žâ —⠕⠉⠊⠳⠎⠇⠽" }, { "input": "atrociousness", "output": "â â žâ —⠕⠉⠊⠳⠎⠰⠎" }, { "input": "atrocities", "output": "â â žâ —⠕⠉⠊⠞⠊⠑⠎" }, { "input": "atrocity", "output": "â â žâ —⠕⠉⠰⠽" }, { "input": "atrophied", "output": "â â žâ —â •â â “â Šâ «" }, { "input": "atrophies", "output": "â â žâ —â •â â “â Šâ ‘â Ž" }, { "input": "atrophy", "output": "â â žâ —â •â â “â ½" }, { "input": "atrophying", "output": "â â žâ —â •â â “⠽⠬" }, { "input": "attach", "output": "â â žâ žâ â ¡" }, { "input": "attached", "output": "â â žâ žâ â ¡â «" }, { "input": "attaching", "output": "â â žâ žâ â ¡â ¬" }, { "input": "attachment", "output": "â â žâ žâ â ¡â °â ž" }, { "input": "attachments", "output": "â â žâ žâ â ¡â °â žâ Ž" }, { "input": "attaché", "output": "â â žâ žâ â ¡â  â ˜â »â â ˜â ‰" }, { "input": "attachés", "output": "â â žâ žâ â ¡â  â ˜â »â â ˜â ‰â Ž" }, { "input": "attack", "output": "â â žâ žâ â ‰â …" }, { "input": "attacked", "output": "â â žâ žâ â ‰â …â «" }, { "input": "attacker", "output": "â â žâ žâ â ‰â …â »" }, { "input": "attackers", "output": "â â žâ žâ â ‰â …⠻⠎" }, { "input": "attacking", "output": "â â žâ žâ â ‰â …â ¬" }, { "input": "attacks", "output": "â â žâ žâ â ‰â …â Ž" }, { "input": "attain", "output": "â â žâ žâ â ”" }, { "input": "attainable", "output": "â â žâ žâ â ”â â ƒâ ‡â ‘" }, { "input": "attained", "output": "â â žâ žâ â ”â «" }, { "input": "attaining", "output": "â â žâ žâ â ”â ¬" }, { "input": "attainment", "output": "â â žâ žâ â ”â °â ž" }, { "input": "attainments", "output": "â â žâ žâ â ”â °â žâ Ž" }, { "input": "attains", "output": "â â žâ žâ â ”â Ž" }, { "input": "attar", "output": "â â žâ žâ œ" }, { "input": "attempt", "output": "â â žâ žâ ‘â â â ž" }, { "input": "attempted", "output": "â â žâ žâ ‘â â â žâ «" }, { "input": "attempting", "output": "â â žâ žâ ‘â â â žâ ¬" }, { "input": "attempts", "output": "â â žâ žâ ‘â â â žâ Ž" }, { "input": "attend", "output": "â â žâ žâ ¢â ™" }, { "input": "attendance", "output": "â â žâ žâ ¢â ™â ¨â ‘" }, { "input": "attendances", "output": "â â žâ žâ ¢â ™â ¨â ‘â Ž" }, { "input": "attendant", "output": "â â žâ žâ ¢â ™â â â ž" }, { "input": "attendants", "output": "â â žâ žâ ¢â ™â â â žâ Ž" }, { "input": "attended", "output": "â â žâ žâ ¢â ™â «" }, { "input": "attender", "output": "â â žâ žâ ¢â ™â »" }, { "input": "attending", "output": "â â žâ žâ ¢â ™â ¬" }, { "input": "attends", "output": "â â žâ žâ ¢â ™â Ž" }, { "input": "attention", "output": "â â žâ žâ ¢â °â " }, { "input": "attentions", "output": "â â žâ žâ ¢â °â â Ž" }, { "input": "attentive", "output": "â â žâ žâ ¢â žâ Šâ §â ‘" }, { "input": "attentively", "output": "â â žâ žâ ¢â žâ Šâ §â ‘⠇⠽" }, { "input": "attentiveness", "output": "â â žâ žâ ¢â žâ Šâ §â ‘â °â Ž" }, { "input": "attenuate", "output": "â â žâ žâ ¢â ¥â â žâ ‘" }, { "input": "attenuated", "output": "â â žâ žâ ¢â ¥â â žâ «" }, { "input": "attenuates", "output": "â â žâ žâ ¢â ¥â â žâ ‘â Ž" }, { "input": "attenuating", "output": "â â žâ žâ ¢â ¥â â žâ ¬" }, { "input": "attenuation", "output": "â â žâ žâ ¢â ¥â â °â " }, { "input": "attest", "output": "â â žâ žâ ‘â Œ" }, { "input": "attestation", "output": "â â žâ žâ ‘â Œâ â °â " }, { "input": "attestations", "output": "â â žâ žâ ‘â Œâ â °â â Ž" }, { "input": "attested", "output": "â â žâ žâ ‘⠌⠫" }, { "input": "attesting", "output": "â â žâ žâ ‘⠌⠬" }, { "input": "attests", "output": "â â žâ žâ ‘⠌⠎" }, { "input": "attic", "output": "â â žâ žâ Šâ ‰" }, { "input": "attics", "output": "â â žâ žâ Šâ ‰â Ž" }, { "input": "attire", "output": "â â žâ žâ Šâ —â ‘" }, { "input": "attired", "output": "â â žâ žâ Šâ —â «" }, { "input": "attires", "output": "â â žâ žâ Šâ —â ‘â Ž" }, { "input": "attiring", "output": "â â žâ žâ Šâ —â ¬" }, { "input": "attitude", "output": "â â žâ žâ Šâ žâ ¥â ™â ‘" }, { "input": "attitudes", "output": "â â žâ žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "attitudinize", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠑" }, { "input": "attitudinized", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠫" }, { "input": "attitudinizes", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠑⠎" }, { "input": "attitudinizing", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠬" }, { "input": "attorney", "output": "â â žâ žâ •â —â â ‘â ½" }, { "input": "attorneys", "output": "â â žâ žâ •â —â â ‘⠽⠎" }, { "input": "attract", "output": "â â žâ žâ —â â ‰â ž" }, { "input": "attracted", "output": "â â žâ žâ —â â ‰â žâ «" }, { "input": "attracting", "output": "â â žâ žâ —â â ‰â žâ ¬" }, { "input": "attraction", "output": "â â žâ žâ —â â ‰â °â " }, { "input": "attractions", "output": "â â žâ žâ —â â ‰â °â â Ž" }, { "input": "attractive", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘" }, { "input": "attractively", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "attractiveness", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘â °â Ž" }, { "input": "attracts", "output": "â â žâ žâ —â â ‰â žâ Ž" }, { "input": "attributable", "output": "â â žâ žâ —⠊⠃⠥⠞â â ƒâ ‡â ‘" }, { "input": "attribute", "output": "â â žâ žâ —⠊⠃⠥⠞⠑" }, { "input": "attributed", "output": "â â žâ žâ —⠊⠃⠥⠞⠫" }, { "input": "attributes", "output": "â â žâ žâ —⠊⠃⠥⠞⠑⠎" }, { "input": "attributing", "output": "â â žâ žâ —⠊⠃⠥⠞⠬" }, { "input": "attribution", "output": "â â žâ žâ —⠊⠃⠥⠰â " }, { "input": "attributions", "output": "â â žâ žâ —⠊⠃⠥⠰â â Ž" }, { "input": "attributive", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑" }, { "input": "attributively", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑⠇⠽" }, { "input": "attributives", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑⠎" }, { "input": "attrition", "output": "â â žâ žâ —â Šâ °â " }, { "input": "attune", "output": "â â žâ žâ ¥â â ‘" }, { "input": "attuned", "output": "â â žâ žâ ¥â â «" }, { "input": "attunes", "output": "â â žâ žâ ¥â â ‘â Ž" }, { "input": "attuning", "output": "â â žâ žâ ¥â â ¬" }, { "input": "atwitter", "output": "â â žâ ºâ Šâ žâ žâ »" }, { "input": "atypical", "output": "â â žâ ½â â Šâ ‰â â ‡" }, { "input": "atypically", "output": "â â žâ ½â â Šâ ‰â â ‡â ‡â ½" }, { "input": "auburn", "output": "â â ¥â ƒâ ¥â —â " }, { "input": "auction", "output": "â â ¥â ‰â °â " }, { "input": "auctioned", "output": "â â ¥â ‰â °â â «" }, { "input": "auctioneer", "output": "â â ¥â ‰â °â â ‘â »" }, { "input": "auctioneers", "output": "â â ¥â ‰â °â â ‘⠻⠎" }, { "input": "auctioning", "output": "â â ¥â ‰â °â â ¬" }, { "input": "auctions", "output": "â â ¥â ‰â °â â Ž" }, { "input": "audacious", "output": "â â ¥â ™â â ‰â Šâ ³â Ž" }, { "input": "audaciously", "output": "â â ¥â ™â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "audaciousness", "output": "â â ¥â ™â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "audacity", "output": "â â ¥â ™â â ‰â °â ½" }, { "input": "audibility", "output": "â â ¥â ™â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "audible", "output": "â â ¥â ™â Šâ ƒâ ‡â ‘" }, { "input": "audibles", "output": "â â ¥â ™â Šâ ƒâ ‡â ‘â Ž" }, { "input": "audibly", "output": "â â ¥â ™â Šâ ƒâ ‡â ½" }, { "input": "audience", "output": "â â ¥â ™â Šâ °â ‘" }, { "input": "audiences", "output": "â â ¥â ™â Šâ °â ‘â Ž" }, { "input": "audio", "output": "â â ¥â ™â Šâ •" }, { "input": "audiophile", "output": "â â ¥â ™â Šâ •â â “⠊⠇⠑" }, { "input": "audiophiles", "output": "â â ¥â ™â Šâ •â â “⠊⠇⠑⠎" }, { "input": "audios", "output": "â â ¥â ™â Šâ •â Ž" }, { "input": "audiovisual", "output": "â â ¥â ™â Šâ •â §â Šâ Žâ ¥â â ‡" }, { "input": "audit", "output": "â â ¥â ™â Šâ ž" }, { "input": "audited", "output": "â â ¥â ™â Šâ žâ «" }, { "input": "auditing", "output": "â â ¥â ™â Šâ žâ ¬" }, { "input": "audition", "output": "â â ¥â ™â Šâ °â " }, { "input": "auditioned", "output": "â â ¥â ™â Šâ °â â «" }, { "input": "auditioning", "output": "â â ¥â ™â Šâ °â â ¬" }, { "input": "auditions", "output": "â â ¥â ™â Šâ °â â Ž" }, { "input": "auditor", "output": "â â ¥â ™â Šâ žâ •â —" }, { "input": "auditoria", "output": "â â ¥â ™â Šâ žâ •â —â Šâ " }, { "input": "auditorium", "output": "â â ¥â ™â Šâ žâ •â —â Šâ ¥â " }, { "input": "auditoriums", "output": "â â ¥â ™â Šâ žâ •â —â Šâ ¥â â Ž" }, { "input": "auditors", "output": "â â ¥â ™â Šâ žâ •â —â Ž" }, { "input": "auditory", "output": "â â ¥â ™â Šâ žâ •â —â ½" }, { "input": "audits", "output": "â â ¥â ™â Šâ žâ Ž" }, { "input": "auger", "output": "â â ¥â ›â »" }, { "input": "augers", "output": "â â ¥â ›â »â Ž" }, { "input": "aught", "output": "â â ¥â £â ž" }, { "input": "aughts", "output": "â â ¥â £â žâ Ž" }, { "input": "augment", "output": "â â ¥â ›â °â ž" }, { "input": "augmentation", "output": "â â ¥â ›â °â žâ â °â " }, { "input": "augmentations", "output": "â â ¥â ›â °â žâ â °â â Ž" }, { "input": "augmented", "output": "â â ¥â ›â °â žâ «" }, { "input": "augmenting", "output": "â â ¥â ›â °â žâ ¬" }, { "input": "augments", "output": "â â ¥â ›â °â žâ Ž" }, { "input": "augur", "output": "â â ¥â ›â ¥â —" }, { "input": "augured", "output": "â â ¥â ›â ¥â —â «" }, { "input": "auguries", "output": "â â ¥â ›â ¥â —â Šâ ‘â Ž" }, { "input": "auguring", "output": "â â ¥â ›â ¥â —â ¬" }, { "input": "augurs", "output": "â â ¥â ›â ¥â —â Ž" }, { "input": "augury", "output": "â â ¥â ›â ¥â —â ½" }, { "input": "august", "output": "â â ¥â ›â ¥â Œ" }, { "input": "auguster", "output": "â â ¥â ›â ¥â Œâ »" }, { "input": "augustest", "output": "â â ¥â ›â ¥â Œâ ‘â Œ" }, { "input": "auk", "output": "â â ¥â …" }, { "input": "auks", "output": "â â ¥â …â Ž" }, { "input": "aunt", "output": "â â ¥â â ž" }, { "input": "aunts", "output": "â â ¥â â žâ Ž" }, { "input": "aura", "output": "â â ¥â —â " }, { "input": "aurae", "output": "â â ¥â —â â ‘" }, { "input": "aural", "output": "â â ¥â —â â ‡" }, { "input": "aurally", "output": "â â ¥â —â â ‡â ‡â ½" }, { "input": "auras", "output": "â â ¥â —â â Ž" }, { "input": "aureola", "output": "â â ¥â —â ‘â •â ‡â " }, { "input": "aureolas", "output": "â â ¥â —â ‘â •â ‡â â Ž" }, { "input": "aureole", "output": "â â ¥â —⠑⠕⠇⠑" }, { "input": "aureoles", "output": "â â ¥â —⠑⠕⠇⠑⠎" }, { "input": "auricle", "output": "â â ¥â —⠊⠉⠇⠑" }, { "input": "auricles", "output": "â â ¥â —⠊⠉⠇⠑⠎" }, { "input": "auspice", "output": "â â ¥â Žâ â Šâ ‰â ‘" }, { "input": "auspices", "output": "â â ¥â Žâ â Šâ ‰â ‘â Ž" }, { "input": "auspicious", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Ž" }, { "input": "auspiciously", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "auspiciousness", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "austere", "output": "â â ¥â Œâ »â ‘" }, { "input": "austerely", "output": "â â ¥â Œâ »â ‘⠇⠽" }, { "input": "austerer", "output": "â â ¥â Œâ »â »" }, { "input": "austerest", "output": "â â ¥â Œâ »â ‘â Œ" }, { "input": "austerities", "output": "â â ¥â Œâ »â Šâ žâ Šâ ‘â Ž" }, { "input": "austerity", "output": "â â ¥â Œâ »â °â ½" }, { "input": "authentic", "output": "â â ¥â ®â â žâ Šâ ‰" }, { "input": "authentically", "output": "â â ¥â ®â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "authenticate", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ ‘" }, { "input": "authenticated", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ «" }, { "input": "authenticates", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ ‘â Ž" }, { "input": "authenticating", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ ¬" }, { "input": "authentication", "output": "â â ¥â ®â â žâ Šâ ‰â â °â " }, { "input": "authentications", "output": "â â ¥â ®â â žâ Šâ ‰â â °â â Ž" }, { "input": "authenticity", "output": "â â ¥â ®â â žâ Šâ ‰â °â ½" }, { "input": "author", "output": "â â ¥â ¹â •â —" }, { "input": "authored", "output": "â â ¥â ¹â •â —â «" }, { "input": "authoring", "output": "â â ¥â ¹â •â —â ¬" }, { "input": "authoritarian", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â " }, { "input": "authoritarianism", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â â Šâ Žâ " }, { "input": "authoritarians", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â â Ž" }, { "input": "authoritative", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘" }, { "input": "authoritatively", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "authoritativeness", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘â °â Ž" }, { "input": "authorities", "output": "â â ¥â ¹â •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "authority", "output": "â â ¥â ¹â •â —â °â ½" }, { "input": "authorization", "output": "â â ¥â ¹â •â —â Šâ µâ â °â " }, { "input": "authorizations", "output": "â â ¥â ¹â •â —â Šâ µâ â °â â Ž" }, { "input": "authorize", "output": "â â ¥â ¹â •⠗⠊⠵⠑" }, { "input": "authorized", "output": "â â ¥â ¹â •⠗⠊⠵⠫" }, { "input": "authorizes", "output": "â â ¥â ¹â •⠗⠊⠵⠑⠎" }, { "input": "authorizing", "output": "â â ¥â ¹â •⠗⠊⠵⠬" }, { "input": "authors", "output": "â â ¥â ¹â •â —â Ž" }, { "input": "authorship", "output": "â â ¥â ¹â •â —â ©â Šâ " }, { "input": "autism", "output": "â â ¥â žâ Šâ Žâ " }, { "input": "autistic", "output": "â â ¥â žâ Šâ Œâ Šâ ‰" }, { "input": "auto", "output": "â â ¥â žâ •" }, { "input": "autobiographical", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "autobiographies", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "autobiography", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â ½" }, { "input": "autocracies", "output": "â â ¥â žâ •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "autocracy", "output": "â â ¥â žâ •⠉⠗â â ‰â ½" }, { "input": "autocrat", "output": "â â ¥â žâ •⠉⠗â â ž" }, { "input": "autocratic", "output": "â â ¥â žâ •⠉⠗â â žâ Šâ ‰" }, { "input": "autocratically", "output": "â â ¥â žâ •⠉⠗â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "autocrats", "output": "â â ¥â žâ •⠉⠗â â žâ Ž" }, { "input": "autograph", "output": "â â ¥â žâ •⠛⠗â â â “" }, { "input": "autographed", "output": "â â ¥â žâ •⠛⠗â â â “â «" }, { "input": "autographing", "output": "â â ¥â žâ •⠛⠗â â â “â ¬" }, { "input": "autographs", "output": "â â ¥â žâ •⠛⠗â â â “â Ž" }, { "input": "autoimmune", "output": "â â ¥â žâ •â Šâ â â ¥â â ‘" }, { "input": "automata", "output": "â â ¥â žâ •â â â žâ " }, { "input": "automate", "output": "â â ¥â žâ •â â â žâ ‘" }, { "input": "automated", "output": "â â ¥â žâ •â â â žâ «" }, { "input": "automates", "output": "â â ¥â žâ •â â â žâ ‘â Ž" }, { "input": "automatic", "output": "â â ¥â žâ •â â â žâ Šâ ‰" }, { "input": "automatically", "output": "â â ¥â žâ •â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "automatics", "output": "â â ¥â žâ •â â â žâ Šâ ‰â Ž" }, { "input": "automating", "output": "â â ¥â žâ •â â â žâ ¬" }, { "input": "automation", "output": "â â ¥â žâ •â â â °â " }, { "input": "automaton", "output": "â â ¥â žâ •â â â žâ •â " }, { "input": "automatons", "output": "â â ¥â žâ •â â â žâ •â â Ž" }, { "input": "automobile", "output": "â â ¥â žâ •â â •⠃⠊⠇⠑" }, { "input": "automobiled", "output": "â â ¥â žâ •â â •⠃⠊⠇⠫" }, { "input": "automobiles", "output": "â â ¥â žâ •â â •⠃⠊⠇⠑⠎" }, { "input": "automobiling", "output": "â â ¥â žâ •â â •⠃⠊⠇⠬" }, { "input": "automotive", "output": "â â ¥â žâ •â â •â žâ Šâ §â ‘" }, { "input": "autonomous", "output": "â â ¥â žâ •â â •â â ³â Ž" }, { "input": "autonomously", "output": "â â ¥â žâ •â â •â â ³â Žâ ‡â ½" }, { "input": "autonomy", "output": "â â ¥â žâ •â â •â â ½" }, { "input": "autopilot", "output": "â â ¥â žâ •â â Šâ ‡â •â ž" }, { "input": "autopilots", "output": "â â ¥â žâ •â â Šâ ‡â •â žâ Ž" }, { "input": "autopsied", "output": "â â ¥â žâ •â â Žâ Šâ «" }, { "input": "autopsies", "output": "â â ¥â žâ •â â Žâ Šâ ‘â Ž" }, { "input": "autopsy", "output": "â â ¥â žâ •â â Žâ ½" }, { "input": "autopsying", "output": "â â ¥â žâ •â â Žâ ½â ¬" }, { "input": "autos", "output": "â â ¥â žâ •â Ž" }, { "input": "autoworker", "output": "â â ¥â žâ •â â ºâ »" }, { "input": "autoworkers", "output": "â â ¥â žâ •â â ºâ »â Ž" }, { "input": "autumn", "output": "â â ¥â žâ ¥â â " }, { "input": "autumnal", "output": "â â ¥â žâ ¥â â â â ‡" }, { "input": "autumns", "output": "â â ¥â žâ ¥â â â Ž" }, { "input": "auxiliaries", "output": "â â ¥â ­â Šâ ‡â Šâ œâ Šâ ‘â Ž" }, { "input": "auxiliary", "output": "â â ¥â ­â Šâ ‡â Šâ œâ ½" }, { "input": "avail", "output": "â â §â â Šâ ‡" }, { "input": "availability", "output": "â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½" }, { "input": "available", "output": "â â §â â Šâ ‡â â ƒâ ‡â ‘" }, { "input": "availed", "output": "â â §â â Šâ ‡â «" }, { "input": "availing", "output": "â â §â â Šâ ‡â ¬" }, { "input": "avails", "output": "â â §â â Šâ ‡â Ž" }, { "input": "avalanche", "output": "â â §â â ‡â â â ¡â ‘" }, { "input": "avalanches", "output": "â â §â â ‡â â â ¡â ‘â Ž" }, { "input": "avarice", "output": "â â §â œâ Šâ ‰â ‘" }, { "input": "avaricious", "output": "â â §â œâ Šâ ‰â Šâ ³â Ž" }, { "input": "avariciously", "output": "â â §â œâ Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "avast", "output": "â â §â â Œ" }, { "input": "avatar", "output": "â â §â â žâ œ" }, { "input": "avatars", "output": "â â §â â žâ œâ Ž" }, { "input": "avenge", "output": "â â §â ¢â ›â ‘" }, { "input": "avenged", "output": "â â §â ¢â ›â «" }, { "input": "avenger", "output": "â â §â ¢â ›â »" }, { "input": "avengers", "output": "â â §â ¢â ›â »â Ž" }, { "input": "avenges", "output": "â â §â ¢â ›â ‘â Ž" }, { "input": "avenging", "output": "â â §â ¢â ›â ¬" }, { "input": "avenue", "output": "â â §â ¢â ¥â ‘" }, { "input": "avenues", "output": "â â §â ¢â ¥â ‘â Ž" }, { "input": "aver", "output": "â â §â »" }, { "input": "average", "output": "â â §â »â â ›â ‘" }, { "input": "averaged", "output": "â â §â »â â ›â «" }, { "input": "averages", "output": "â â §â »â â ›â ‘â Ž" }, { "input": "averaging", "output": "â â §â »â â ›â ¬" }, { "input": "averred", "output": "â â §â »â —â «" }, { "input": "averring", "output": "â â §â »â —â ¬" }, { "input": "avers", "output": "â â §â »â Ž" }, { "input": "averse", "output": "â â §â »â Žâ ‘" }, { "input": "aversion", "output": "â â §â »â ¨â " }, { "input": "aversions", "output": "â â §â »â ¨â â Ž" }, { "input": "avert", "output": "â â §â »â ž" }, { "input": "averted", "output": "â â §â »â žâ «" }, { "input": "averting", "output": "â â §â »â žâ ¬" }, { "input": "averts", "output": "â â §â »â žâ Ž" }, { "input": "avian", "output": "â â §â Šâ â " }, { "input": "aviaries", "output": "â â §â Šâ œâ Šâ ‘â Ž" }, { "input": "aviary", "output": "â â §â Šâ œâ ½" }, { "input": "aviation", "output": "â â §â Šâ â °â " }, { "input": "aviator", "output": "â â §â Šâ â žâ •â —" }, { "input": "aviators", "output": "â â §â Šâ â žâ •â —â Ž" }, { "input": "aviatrices", "output": "â â §â Šâ â žâ —⠊⠉⠑⠎" }, { "input": "aviatrix", "output": "â â §â Šâ â žâ —â Šâ ­" }, { "input": "aviatrixes", "output": "â â §â Šâ â žâ —â Šâ ­â ‘â Ž" }, { "input": "avid", "output": "â â §â Šâ ™" }, { "input": "avidity", "output": "â â §â Šâ ™â °â ½" }, { "input": "avidly", "output": "â â §â Šâ ™â ‡â ½" }, { "input": "avionics", "output": "â â §â Šâ •â â Šâ ‰â Ž" }, { "input": "avocado", "output": "â â §â •â ‰â â ™â •" }, { "input": "avocadoes", "output": "â â §â •â ‰â â ™â •â ‘â Ž" }, { "input": "avocados", "output": "â â §â •â ‰â â ™â •â Ž" }, { "input": "avocation", "output": "â â §â •â ‰â â °â " }, { "input": "avocations", "output": "â â §â •â ‰â â °â â Ž" }, { "input": "avoid", "output": "â â §â •â Šâ ™" }, { "input": "avoidable", "output": "â â §â •â Šâ ™â â ƒâ ‡â ‘" }, { "input": "avoidably", "output": "â â §â •â Šâ ™â â ƒâ ‡â ½" }, { "input": "avoidance", "output": "â â §â •⠊⠙⠨⠑" }, { "input": "avoided", "output": "â â §â •⠊⠙⠫" }, { "input": "avoiding", "output": "â â §â •⠊⠙⠬" }, { "input": "avoids", "output": "â â §â •⠊⠙⠎" }, { "input": "avoirdupois", "output": "â â §â •⠊⠗⠙⠥â â •â Šâ Ž" }, { "input": "avow", "output": "â â §â ª" }, { "input": "avowal", "output": "â â §â ªâ â ‡" }, { "input": "avowals", "output": "â â §â ªâ â ‡â Ž" }, { "input": "avowed", "output": "â â §â ªâ «" }, { "input": "avowedly", "output": "â â §â ªâ «â ‡â ½" }, { "input": "avowing", "output": "â â §â ªâ ¬" }, { "input": "avows", "output": "â â §â ªâ Ž" }, { "input": "avuncular", "output": "â â §â ¥â â ‰â ¥â ‡â œ" }, { "input": "await", "output": "â â ºâ â Šâ ž" }, { "input": "awaited", "output": "â â ºâ â Šâ žâ «" }, { "input": "awaiting", "output": "â â ºâ â Šâ žâ ¬" }, { "input": "awaits", "output": "â â ºâ â Šâ žâ Ž" }, { "input": "awake", "output": "â â ºâ â …â ‘" }, { "input": "awaked", "output": "â â ºâ â …â «" }, { "input": "awaken", "output": "â â ºâ â …â ¢" }, { "input": "awakened", "output": "â â ºâ â …⠢⠫" }, { "input": "awakening", "output": "â â ºâ â …⠢⠬" }, { "input": "awakenings", "output": "â â ºâ â …⠢⠬⠎" }, { "input": "awakens", "output": "â â ºâ â …⠢⠎" }, { "input": "awakes", "output": "â â ºâ â …â ‘â Ž" }, { "input": "awaking", "output": "â â ºâ â …â ¬" }, { "input": "award", "output": "â â ºâ œâ ™" }, { "input": "awarded", "output": "â â ºâ œâ ™â «" }, { "input": "awarding", "output": "â â ºâ œâ ™â ¬" }, { "input": "awards", "output": "â â ºâ œâ ™â Ž" }, { "input": "aware", "output": "â â ºâ œâ ‘" }, { "input": "awareness", "output": "â â ºâ œâ ‘â °â Ž" }, { "input": "awash", "output": "â â ºâ â ©" }, { "input": "away", "output": "â â ºâ â ½" }, { "input": "awe", "output": "â â ºâ ‘" }, { "input": "awed", "output": "â â ºâ «" }, { "input": "aweigh", "output": "â â ºâ ‘â Šâ £" }, { "input": "awes", "output": "â â ºâ ‘â Ž" }, { "input": "awesome", "output": "â â ºâ ‘â â Ž" }, { "input": "awesomely", "output": "â â ºâ ‘â â Žâ ‡â ½" }, { "input": "awestricken", "output": "â â ºâ ‘⠌⠗⠊⠉⠅⠢" }, { "input": "awestruck", "output": "â â ºâ ‘⠌⠗⠥⠉⠅" }, { "input": "awful", "output": "â â ºâ °â ‡" }, { "input": "awfuller", "output": "â â ºâ °â ‡â ‡â »" }, { "input": "awfullest", "output": "â â ºâ °â ‡â ‡â ‘â Œ" }, { "input": "awfully", "output": "â â ºâ °â ‡â ‡â ½" }, { "input": "awfulness", "output": "â â ºâ °â ‡â °â Ž" }, { "input": "awhile", "output": "â â ±â Šâ ‡â ‘" }, { "input": "awing", "output": "â â ºâ ¬" }, { "input": "awkward", "output": "â â ºâ …⠺⠜⠙" }, { "input": "awkwarder", "output": "â â ºâ …⠺⠜⠙⠻" }, { "input": "awkwardest", "output": "â â ºâ …⠺⠜⠙⠑⠌" }, { "input": "awkwardly", "output": "â â ºâ …⠺⠜⠙⠇⠽" }, { "input": "awkwardness", "output": "â â ºâ …⠺⠜⠙⠰⠎" }, { "input": "awl", "output": "â â ºâ ‡" }, { "input": "awls", "output": "â â ºâ ‡â Ž" }, { "input": "awning", "output": "â â ºâ â ¬" }, { "input": "awnings", "output": "â â ºâ â ¬â Ž" }, { "input": "awoke", "output": "â â ºâ •â …â ‘" }, { "input": "awoken", "output": "â â ºâ •â …â ¢" }, { "input": "awol", "output": "â â ºâ •â ‡" }, { "input": "awry", "output": "â â ºâ —â ½" }, { "input": "ax", "output": "â â ­" }, { "input": "axe", "output": "â â ­â ‘" }, { "input": "axed", "output": "â â ­â «" }, { "input": "axes", "output": "â â ­â ‘â Ž" }, { "input": "axial", "output": "â â ­â Šâ â ‡" }, { "input": "axing", "output": "â â ­â ¬" }, { "input": "axiom", "output": "â â ­â Šâ •â " }, { "input": "axiomatic", "output": "â â ­â Šâ •â â â žâ Šâ ‰" }, { "input": "axiomatically", "output": "â â ­â Šâ •â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "axioms", "output": "â â ­â Šâ •â â Ž" }, { "input": "axis", "output": "â â ­â Šâ Ž" }, { "input": "axle", "output": "â â ­â ‡â ‘" }, { "input": "axles", "output": "â â ­â ‡â ‘â Ž" }, { "input": "axon", "output": "â â ­â •â " }, { "input": "axons", "output": "â â ­â •â â Ž" }, { "input": "ay", "output": "â â ½" }, { "input": "ayatollah", "output": "â â ½â â žâ •⠇⠇â â “" }, { "input": "ayatollahs", "output": "â â ½â â žâ •⠇⠇â â “â Ž" }, { "input": "aye", "output": "â â ½â ‘" }, { "input": "ayes", "output": "â â ½â ‘â Ž" }, { "input": "azalea", "output": "â â µâ â ‡â ‘â " }, { "input": "azaleas", "output": "â â µâ â ‡â ‚â Ž" }, { "input": "azimuth", "output": "â â µâ Šâ â ¥â ¹" }, { "input": "azimuths", "output": "â â µâ Šâ â ¥â ¹â Ž" }, { "input": "azure", "output": "â â µâ ¥â —â ‘" }, { "input": "azures", "output": "â â µâ ¥â —â ‘â Ž" }, { "input": "b", "output": "â °â ƒ" }, { "input": "baa", "output": "â ƒâ â " }, { "input": "baaed", "output": "â ƒâ â â «" }, { "input": "baaing", "output": "â ƒâ â â ¬" }, { "input": "baas", "output": "â ƒâ â â Ž" }, { "input": "babble", "output": "â ƒâ â †â ‡â ‘" }, { "input": "babbled", "output": "â ƒâ â †â ‡â «" }, { "input": "babbler", "output": "â ƒâ â †â ‡â »" }, { "input": "babblers", "output": "â ƒâ â †â ‡â »â Ž" }, { "input": "babbles", "output": "â ƒâ â †â ‡â ‘â Ž" }, { "input": "babbling", "output": "â ƒâ â †â ‡â ¬" }, { "input": "babe", "output": "â ƒâ â ƒâ ‘" }, { "input": "babel", "output": "â ƒâ â ƒâ ‘â ‡" }, { "input": "babels", "output": "â ƒâ â ƒâ ‘⠇⠎" }, { "input": "babes", "output": "â ƒâ â ƒâ ‘â Ž" }, { "input": "babied", "output": "â ƒâ â ƒâ Šâ «" }, { "input": "babier", "output": "â ƒâ â ƒâ Šâ »" }, { "input": "babies", "output": "â ƒâ â ƒâ Šâ ‘â Ž" }, { "input": "babiest", "output": "â ƒâ â ƒâ Šâ ‘â Œ" }, { "input": "baboon", "output": "â ƒâ â ƒâ •â •â " }, { "input": "baboons", "output": "â ƒâ â ƒâ •â •â â Ž" }, { "input": "babushka", "output": "â ƒâ â ƒâ ¥â ©â …â " }, { "input": "babushkas", "output": "â ƒâ â ƒâ ¥â ©â …â â Ž" }, { "input": "baby", "output": "â ƒâ â ƒâ ½" }, { "input": "babyhood", "output": "â ƒâ â ƒâ ½â “â •â •â ™" }, { "input": "babying", "output": "â ƒâ â ƒâ ½â ¬" }, { "input": "babyish", "output": "â ƒâ â ƒâ ½â Šâ ©" }, { "input": "babysat", "output": "â ƒâ â ƒâ ½â Žâ â ž" }, { "input": "babysit", "output": "â ƒâ â ƒâ ½â Žâ Šâ ž" }, { "input": "babysits", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ Ž" }, { "input": "babysitter", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ »" }, { "input": "babysitters", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ »â Ž" }, { "input": "babysitting", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ ¬" }, { "input": "baccalaureate", "output": "â ƒâ â ’â â ‡â â ¥â —â ‚â žâ ‘" }, { "input": "baccalaureates", "output": "â ƒâ â ’â â ‡â â ¥â —â ‚â žâ ‘â Ž" }, { "input": "bacchanal", "output": "â ƒâ â ‰â ¡â â â â ‡" }, { "input": "bacchanalian", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ â " }, { "input": "bacchanalians", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ â â Ž" }, { "input": "bacchanals", "output": "â ƒâ â ‰â ¡â â â â ‡â Ž" }, { "input": "bachelor", "output": "â ƒâ â ¡â ‘⠇⠕⠗" }, { "input": "bachelors", "output": "â ƒâ â ¡â ‘⠇⠕⠗⠎" }, { "input": "bacilli", "output": "â ƒâ â ‰â Šâ ‡â ‡â Š" }, { "input": "bacillus", "output": "â ƒâ â ‰â Šâ ‡â ‡â ¥â Ž" }, { "input": "back", "output": "â ƒâ â ‰â …" }, { "input": "backache", "output": "â ƒâ â ‰â …â â ¡â ‘" }, { "input": "backaches", "output": "â ƒâ â ‰â …â â ¡â ‘â Ž" }, { "input": "backbit", "output": "â ƒâ â ‰â …⠃⠊⠞" }, { "input": "backbite", "output": "â ƒâ â ‰â …⠃⠊⠞⠑" }, { "input": "backbiter", "output": "â ƒâ â ‰â …⠃⠊⠞⠻" }, { "input": "backbiters", "output": "â ƒâ â ‰â …⠃⠊⠞⠻⠎" }, { "input": "backbites", "output": "â ƒâ â ‰â …⠃⠊⠞⠑⠎" }, { "input": "backbiting", "output": "â ƒâ â ‰â …⠃⠊⠞⠬" }, { "input": "backbitten", "output": "â ƒâ â ‰â …⠃⠊⠞⠞⠢" }, { "input": "backboard", "output": "â ƒâ â ‰â …⠃⠕⠜⠙" }, { "input": "backboards", "output": "â ƒâ â ‰â …⠃⠕⠜⠙⠎" }, { "input": "backbone", "output": "â ƒâ â ‰â …â ƒâ â •" }, { "input": "backbones", "output": "â ƒâ â ‰â …â ƒâ â •â Ž" }, { "input": "backbreaking", "output": "â ƒâ â ‰â …⠃⠗⠂⠅⠬" }, { "input": "backdate", "output": "â ƒâ â ‰â …â ™â â žâ ‘" }, { "input": "backdated", "output": "â ƒâ â ‰â …â ™â â žâ «" }, { "input": "backdates", "output": "â ƒâ â ‰â …â ™â â žâ ‘â Ž" }, { "input": "backdating", "output": "â ƒâ â ‰â …â ™â â žâ ¬" }, { "input": "backdrop", "output": "â ƒâ â ‰â …⠙⠗⠕â " }, { "input": "backdrops", "output": "â ƒâ â ‰â …⠙⠗⠕â â Ž" }, { "input": "backed", "output": "â ƒâ â ‰â …â «" }, { "input": "backer", "output": "â ƒâ â ‰â …â »" }, { "input": "backers", "output": "â ƒâ â ‰â …⠻⠎" }, { "input": "backfield", "output": "â ƒâ â ‰â …⠋⠊⠑⠇⠙" }, { "input": "backfields", "output": "â ƒâ â ‰â …⠋⠊⠑⠇⠙⠎" }, { "input": "backfire", "output": "â ƒâ â ‰â …â ‹â Šâ —â ‘" }, { "input": "backfired", "output": "â ƒâ â ‰â …â ‹â Šâ —â «" }, { "input": "backfires", "output": "â ƒâ â ‰â …â ‹â Šâ —â ‘â Ž" }, { "input": "backfiring", "output": "â ƒâ â ‰â …â ‹â Šâ —â ¬" }, { "input": "backgammon", "output": "â ƒâ â ‰â …â ›â â â â •â " }, { "input": "background", "output": "â ƒâ â ‰â …⠛⠗⠨⠙" }, { "input": "backgrounds", "output": "â ƒâ â ‰â …⠛⠗⠨⠙⠎" }, { "input": "backhand", "output": "â ƒâ â ‰â …â “â ¯" }, { "input": "backhanded", "output": "â ƒâ â ‰â …⠓⠯⠫" }, { "input": "backhanding", "output": "â ƒâ â ‰â …⠓⠯⠬" }, { "input": "backhands", "output": "â ƒâ â ‰â …⠓⠯⠎" }, { "input": "backhoe", "output": "â ƒâ â ‰â …â “â •â ‘" }, { "input": "backhoes", "output": "â ƒâ â ‰â …â “â •â ‘â Ž" }, { "input": "backing", "output": "â ƒâ â ‰â …â ¬" }, { "input": "backings", "output": "â ƒâ â ‰â …⠬⠎" }, { "input": "backlash", "output": "â ƒâ â ‰â …â ‡â â ©" }, { "input": "backlashes", "output": "â ƒâ â ‰â …â ‡â â ©â ‘â Ž" }, { "input": "backless", "output": "â ƒâ â ‰â …⠨⠎" }, { "input": "backlog", "output": "â ƒâ â ‰â …⠇⠕⠛" }, { "input": "backlogged", "output": "â ƒâ â ‰â …⠇⠕⠶⠫" }, { "input": "backlogging", "output": "â ƒâ â ‰â …⠇⠕⠶⠬" }, { "input": "backlogs", "output": "â ƒâ â ‰â …⠇⠕⠛⠎" }, { "input": "backpack", "output": "â ƒâ â ‰â …â â â ‰â …" }, { "input": "backpacked", "output": "â ƒâ â ‰â …â â â ‰â …â «" }, { "input": "backpacker", "output": "â ƒâ â ‰â …â â â ‰â …â »" }, { "input": "backpackers", "output": "â ƒâ â ‰â …â â â ‰â …⠻⠎" }, { "input": "backpacking", "output": "â ƒâ â ‰â …â â â ‰â …â ¬" }, { "input": "backpacks", "output": "â ƒâ â ‰â …â â â ‰â …â Ž" }, { "input": "backpedal", "output": "â ƒâ â ‰â …â â «â â ‡" }, { "input": "backpedaled", "output": "â ƒâ â ‰â …â â «â â ‡â «" }, { "input": "backpedaling", "output": "â ƒâ â ‰â …â â «â â ‡â ¬" }, { "input": "backpedalled", "output": "â ƒâ â ‰â …â â «â â ‡â ‡â «" }, { "input": "backpedalling", "output": "â ƒâ â ‰â …â â «â â ‡â ‡â ¬" }, { "input": "backpedals", "output": "â ƒâ â ‰â …â â «â â ‡â Ž" }, { "input": "backrest", "output": "â ƒâ â ‰â …â —â ‘â Œ" }, { "input": "backrests", "output": "â ƒâ â ‰â …⠗⠑⠌⠎" }, { "input": "backs", "output": "â ƒâ â ‰â …â Ž" }, { "input": "backside", "output": "â ƒâ â ‰â …⠎⠊⠙⠑" }, { "input": "backsides", "output": "â ƒâ â ‰â …⠎⠊⠙⠑⠎" }, { "input": "backslapper", "output": "â ƒâ â ‰â …â Žâ ‡â â â â »" }, { "input": "backslappers", "output": "â ƒâ â ‰â …â Žâ ‡â â â â »â Ž" }, { "input": "backslash", "output": "â ƒâ â ‰â …â Žâ ‡â â ©" }, { "input": "backslid", "output": "â ƒâ â ‰â …⠎⠇⠊⠙" }, { "input": "backslidden", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠙⠢" }, { "input": "backslide", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠑" }, { "input": "backslider", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠻" }, { "input": "backsliders", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠻⠎" }, { "input": "backslides", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠑⠎" }, { "input": "backsliding", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠬" }, { "input": "backspace", "output": "â ƒâ â ‰â …â Žâ â â ‰â ‘" }, { "input": "backspaced", "output": "â ƒâ â ‰â …â Žâ â â ‰â «" }, { "input": "backspaces", "output": "â ƒâ â ‰â …â Žâ â â ‰â ‘â Ž" }, { "input": "backspacing", "output": "â ƒâ â ‰â …â Žâ â â ‰â ¬" }, { "input": "backspin", "output": "â ƒâ â ‰â …â Žâ â ”" }, { "input": "backstabbing", "output": "â ƒâ â ‰â …â Œâ â †â ¬" }, { "input": "backstage", "output": "â ƒâ â ‰â …â Œâ â ›â ‘" }, { "input": "backstairs", "output": "â ƒâ â ‰â …â Œâ â Šâ —â Ž" }, { "input": "backstop", "output": "â ƒâ â ‰â …⠌⠕â " }, { "input": "backstopped", "output": "â ƒâ â ‰â …⠌⠕â â â «" }, { "input": "backstopping", "output": "â ƒâ â ‰â …⠌⠕â â â ¬" }, { "input": "backstops", "output": "â ƒâ â ‰â …⠌⠕â â Ž" }, { "input": "backstretch", "output": "â ƒâ â ‰â …⠌⠗⠑⠞⠡" }, { "input": "backstretches", "output": "â ƒâ â ‰â …⠌⠗⠑⠞⠡⠑⠎" }, { "input": "backstroke", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠑" }, { "input": "backstroked", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠫" }, { "input": "backstrokes", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠑⠎" }, { "input": "backstroking", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠬" }, { "input": "backtrack", "output": "â ƒâ â ‰â …â žâ —â â ‰â …" }, { "input": "backtracked", "output": "â ƒâ â ‰â …â žâ —â â ‰â …â «" }, { "input": "backtracking", "output": "â ƒâ â ‰â …â žâ —â â ‰â …â ¬" }, { "input": "backtracks", "output": "â ƒâ â ‰â …â žâ —â â ‰â …â Ž" }, { "input": "backup", "output": "â ƒâ â ‰â …â ¥â " }, { "input": "backups", "output": "â ƒâ â ‰â …â ¥â â Ž" }, { "input": "backward", "output": "â ƒâ â ‰â …⠺⠜⠙" }, { "input": "backwardness", "output": "â ƒâ â ‰â …⠺⠜⠙⠰⠎" }, { "input": "backwards", "output": "â ƒâ â ‰â …⠺⠜⠙⠎" }, { "input": "backwash", "output": "â ƒâ â ‰â …â ºâ â ©" }, { "input": "backwater", "output": "â ƒâ â ‰â …â ºâ â žâ »" }, { "input": "backwaters", "output": "â ƒâ â ‰â …â ºâ â žâ »â Ž" }, { "input": "backwoods", "output": "â ƒâ â ‰â …⠺⠕⠕⠙⠎" }, { "input": "backyard", "output": "â ƒâ â ‰â …⠽⠜⠙" }, { "input": "backyards", "output": "â ƒâ â ‰â …⠽⠜⠙⠎" }, { "input": "bacon", "output": "â ƒâ â ‰â •â " }, { "input": "bacteria", "output": "â ƒâ â ‰â žâ »â Šâ " }, { "input": "bacterial", "output": "â ƒâ â ‰â žâ »â Šâ â ‡" }, { "input": "bacterias", "output": "â ƒâ â ‰â žâ »â Šâ â Ž" }, { "input": "bacteriological", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "bacteriologist", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠌" }, { "input": "bacteriologists", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠌⠎" }, { "input": "bacteriology", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠽" }, { "input": "bacterium", "output": "â ƒâ â ‰â žâ »â Šâ ¥â " }, { "input": "bad", "output": "â ƒâ â ™" }, { "input": "badder", "output": "â ƒâ â ™â ™â »" }, { "input": "baddest", "output": "â ƒâ â ™â ™â ‘â Œ" }, { "input": "bade", "output": "â ƒâ â ™â ‘" }, { "input": "badge", "output": "â ƒâ â ™â ›â ‘" }, { "input": "badger", "output": "â ƒâ â ™â ›â »" }, { "input": "badgered", "output": "â ƒâ â ™â ›â »â «" }, { "input": "badgering", "output": "â ƒâ â ™â ›â »â ¬" }, { "input": "badgers", "output": "â ƒâ â ™â ›â »â Ž" }, { "input": "badges", "output": "â ƒâ â ™â ›â ‘â Ž" }, { "input": "badinage", "output": "â ƒâ â ™â ”â â ›â ‘" }, { "input": "badlands", "output": "â ƒâ â ™â ‡â ¯â Ž" }, { "input": "badly", "output": "â ƒâ â ™â ‡â ½" }, { "input": "badminton", "output": "â ƒâ â ™â â ”â žâ •â " }, { "input": "badmouth", "output": "â ƒâ â ™â â ³â ¹" }, { "input": "badmouthed", "output": "â ƒâ â ™â â ³â ®â ™" }, { "input": "badmouthing", "output": "â ƒâ â ™â â ³â ¹â ¬" }, { "input": "badmouths", "output": "â ƒâ â ™â â ³â ¹â Ž" }, { "input": "badness", "output": "â ƒâ â ™â °â Ž" }, { "input": "baffle", "output": "â ƒâ â –⠇⠑" }, { "input": "baffled", "output": "â ƒâ â –⠇⠫" }, { "input": "bafflement", "output": "â ƒâ â –⠇⠑⠰⠞" }, { "input": "baffles", "output": "â ƒâ â –⠇⠑⠎" }, { "input": "baffling", "output": "â ƒâ â –⠇⠬" }, { "input": "bag", "output": "â ƒâ â ›" }, { "input": "bagatelle", "output": "â ƒâ â ›â â žâ ‘⠇⠇⠑" }, { "input": "bagatelles", "output": "â ƒâ â ›â â žâ ‘⠇⠇⠑⠎" }, { "input": "bagel", "output": "â ƒâ â ›â ‘â ‡" }, { "input": "bagels", "output": "â ƒâ â ›â ‘⠇⠎" }, { "input": "baggage", "output": "â ƒâ â ¶â â ›â ‘" }, { "input": "bagged", "output": "â ƒâ â ¶â «" }, { "input": "baggier", "output": "â ƒâ â ¶â Šâ »" }, { "input": "baggiest", "output": "â ƒâ â ¶â Šâ ‘â Œ" }, { "input": "bagginess", "output": "â ƒâ â ¶â Šâ °â Ž" }, { "input": "bagging", "output": "â ƒâ â ¶â ¬" }, { "input": "baggy", "output": "â ƒâ â ¶â ½" }, { "input": "bagpipe", "output": "â ƒâ â ›â â Šâ â ‘" }, { "input": "bagpipes", "output": "â ƒâ â ›â â Šâ â ‘â Ž" }, { "input": "bags", "output": "â ƒâ â ›â Ž" }, { "input": "bah", "output": "â ƒâ â “" }, { "input": "bail", "output": "â ƒâ â Šâ ‡" }, { "input": "bailed", "output": "â ƒâ â Šâ ‡â «" }, { "input": "bailiff", "output": "â ƒâ â Šâ ‡â Šâ ‹â ‹" }, { "input": "bailiffs", "output": "â ƒâ â Šâ ‡â Šâ –â Ž" }, { "input": "bailing", "output": "â ƒâ â Šâ ‡â ¬" }, { "input": "bailiwick", "output": "â ƒâ â Šâ ‡â Šâ ºâ Šâ ‰â …" }, { "input": "bailiwicks", "output": "â ƒâ â Šâ ‡â Šâ ºâ Šâ ‰â …â Ž" }, { "input": "bailout", "output": "â ƒâ â Šâ ‡â ³â ž" }, { "input": "bailouts", "output": "â ƒâ â Šâ ‡â ³â žâ Ž" }, { "input": "bails", "output": "â ƒâ â Šâ ‡â Ž" }, { "input": "bait", "output": "â ƒâ â Šâ ž" }, { "input": "baited", "output": "â ƒâ â Šâ žâ «" }, { "input": "baiting", "output": "â ƒâ â Šâ žâ ¬" }, { "input": "baits", "output": "â ƒâ â Šâ žâ Ž" }, { "input": "baize", "output": "â ƒâ â Šâ µâ ‘" }, { "input": "bake", "output": "â ƒâ â …â ‘" }, { "input": "baked", "output": "â ƒâ â …â «" }, { "input": "baker", "output": "â ƒâ â …â »" }, { "input": "bakeries", "output": "â ƒâ â …⠻⠊⠑⠎" }, { "input": "bakers", "output": "â ƒâ â …⠻⠎" }, { "input": "bakery", "output": "â ƒâ â …⠻⠽" }, { "input": "bakes", "output": "â ƒâ â …â ‘â Ž" }, { "input": "baking", "output": "â ƒâ â …â ¬" }, { "input": "balalaika", "output": "â ƒâ â ‡â â ‡â â Šâ …â " }, { "input": "balalaikas", "output": "â ƒâ â ‡â â ‡â â Šâ …â â Ž" }, { "input": "balance", "output": "â ƒâ â ‡â ¨â ‘" }, { "input": "balanced", "output": "â ƒâ â ‡â ¨â ‘â ™" }, { "input": "balances", "output": "â ƒâ â ‡â ¨â ‘â Ž" }, { "input": "balancing", "output": "â ƒâ â ‡â â â ‰â ¬" }, { "input": "balconies", "output": "â ƒâ â ‡â ‰â •â â Šâ ‘â Ž" }, { "input": "balcony", "output": "â ƒâ â ‡â ‰â •â â ½" }, { "input": "bald", "output": "â ƒâ â ‡â ™" }, { "input": "balded", "output": "â ƒâ â ‡â ™â «" }, { "input": "balder", "output": "â ƒâ â ‡â ™â »" }, { "input": "balderdash", "output": "â ƒâ â ‡â ™â »â ™â â ©" }, { "input": "baldest", "output": "â ƒâ â ‡â ™â ‘â Œ" }, { "input": "balding", "output": "â ƒâ â ‡â ™â ¬" }, { "input": "baldly", "output": "â ƒâ â ‡â ™â ‡â ½" }, { "input": "baldness", "output": "â ƒâ â ‡â ™â °â Ž" }, { "input": "balds", "output": "â ƒâ â ‡â ™â Ž" }, { "input": "bale", "output": "â ƒâ â ‡â ‘" }, { "input": "baled", "output": "â ƒâ â ‡â «" }, { "input": "baleen", "output": "â ƒâ â ‡â ‘â ¢" }, { "input": "baleful", "output": "â ƒâ â ‡â ‘â °â ‡" }, { "input": "balefully", "output": "â ƒâ â ‡â ‘⠰⠇⠇⠽" }, { "input": "bales", "output": "â ƒâ â ‡â ‘â Ž" }, { "input": "baling", "output": "â ƒâ â ‡â ¬" }, { "input": "balk", "output": "â ƒâ â ‡â …" }, { "input": "balked", "output": "â ƒâ â ‡â …â «" }, { "input": "balkier", "output": "â ƒâ â ‡â …â Šâ »" }, { "input": "balkiest", "output": "â ƒâ â ‡â …â Šâ ‘â Œ" }, { "input": "balking", "output": "â ƒâ â ‡â …â ¬" }, { "input": "balks", "output": "â ƒâ â ‡â …â Ž" }, { "input": "balky", "output": "â ƒâ â ‡â …â ½" }, { "input": "ball", "output": "â ƒâ â ‡â ‡" }, { "input": "ballad", "output": "â ƒâ â ‡â ‡â â ™" }, { "input": "balladeer", "output": "â ƒâ â ‡â ‡â â ™â ‘â »" }, { "input": "balladeers", "output": "â ƒâ â ‡â ‡â â ™â ‘⠻⠎" }, { "input": "ballads", "output": "â ƒâ â ‡â ‡â â ™â Ž" }, { "input": "ballast", "output": "â ƒâ â ‡â ‡â â Œ" }, { "input": "ballasted", "output": "â ƒâ â ‡â ‡â â Œâ «" }, { "input": "ballasting", "output": "â ƒâ â ‡â ‡â â Œâ ¬" }, { "input": "ballasts", "output": "â ƒâ â ‡â ‡â â Œâ Ž" }, { "input": "balled", "output": "â ƒâ â ‡â ‡â «" }, { "input": "ballerina", "output": "â ƒâ â ‡â ‡â »â ”â " }, { "input": "ballerinas", "output": "â ƒâ â ‡â ‡â »â ”â â Ž" }, { "input": "ballet", "output": "â ƒâ â ‡â ‡â ‘â ž" }, { "input": "ballets", "output": "â ƒâ â ‡â ‡â ‘â žâ Ž" }, { "input": "balling", "output": "â ƒâ â ‡â ‡â ¬" }, { "input": "ballistic", "output": "â ƒâ â ‡â ‡â Šâ Œâ Šâ ‰" }, { "input": "ballistics", "output": "â ƒâ â ‡â ‡â Šâ Œâ Šâ ‰â Ž" }, { "input": "balloon", "output": "â ƒâ â ‡â ‡â •â •â " }, { "input": "ballooned", "output": "â ƒâ â ‡â ‡â •â •â â «" }, { "input": "ballooning", "output": "â ƒâ â ‡â ‡â •â •â â ¬" }, { "input": "balloonist", "output": "â ƒâ â ‡â ‡â •â •â â Šâ Œ" }, { "input": "balloonists", "output": "â ƒâ â ‡â ‡â •â •â â Šâ Œâ Ž" }, { "input": "balloons", "output": "â ƒâ â ‡â ‡â •â •â â Ž" }, { "input": "ballot", "output": "â ƒâ â ‡â ‡â •â ž" }, { "input": "balloted", "output": "â ƒâ â ‡â ‡â •â žâ «" }, { "input": "balloting", "output": "â ƒâ â ‡â ‡â •â žâ ¬" }, { "input": "ballots", "output": "â ƒâ â ‡â ‡â •â žâ Ž" }, { "input": "ballpark", "output": "â ƒâ â ‡â ‡â â œâ …" }, { "input": "ballparks", "output": "â ƒâ â ‡â ‡â â œâ …â Ž" }, { "input": "ballplayer", "output": "â ƒâ â ‡â ‡â â ‡â â ½â »" }, { "input": "ballplayers", "output": "â ƒâ â ‡â ‡â â ‡â â ½â »â Ž" }, { "input": "ballpoint", "output": "â ƒâ â ‡â ‡â â •⠔⠞" }, { "input": "ballpoints", "output": "â ƒâ â ‡â ‡â â •⠔⠞⠎" }, { "input": "ballroom", "output": "â ƒâ â ‡â ‡â —â •â •â " }, { "input": "ballrooms", "output": "â ƒâ â ‡â ‡â —â •â •â â Ž" }, { "input": "balls", "output": "â ƒâ â ‡â ‡â Ž" }, { "input": "ballsier", "output": "â ƒâ â ‡â ‡â Žâ Šâ »" }, { "input": "ballsiest", "output": "â ƒâ â ‡â ‡â Žâ Šâ ‘â Œ" }, { "input": "ballsy", "output": "â ƒâ â ‡â ‡â Žâ ½" }, { "input": "ballyhoo", "output": "â ƒâ â ‡â ‡â ½â “â •â •" }, { "input": "ballyhooed", "output": "â ƒâ â ‡â ‡â ½â “â •â •â «" }, { "input": "ballyhooing", "output": "â ƒâ â ‡â ‡â ½â “â •â •â ¬" }, { "input": "ballyhoos", "output": "â ƒâ â ‡â ‡â ½â “â •â •â Ž" }, { "input": "balm", "output": "â ƒâ â ‡â " }, { "input": "balmier", "output": "â ƒâ â ‡â â Šâ »" }, { "input": "balmiest", "output": "â ƒâ â ‡â â Šâ ‘â Œ" }, { "input": "balminess", "output": "â ƒâ â ‡â â Šâ °â Ž" }, { "input": "balms", "output": "â ƒâ â ‡â â Ž" }, { "input": "balmy", "output": "â ƒâ â ‡â â ½" }, { "input": "baloney", "output": "â ƒâ â ‡â â •â ½" }, { "input": "balsa", "output": "â ƒâ â ‡â Žâ " }, { "input": "balsam", "output": "â ƒâ â ‡â Žâ â " }, { "input": "balsams", "output": "â ƒâ â ‡â Žâ â â Ž" }, { "input": "balsas", "output": "â ƒâ â ‡â Žâ â Ž" }, { "input": "baluster", "output": "â ƒâ â ‡â ¥â Œâ »" }, { "input": "balusters", "output": "â ƒâ â ‡â ¥â Œâ »â Ž" }, { "input": "balustrade", "output": "â ƒâ â ‡â ¥â Œâ —â â ™â ‘" }, { "input": "balustrades", "output": "â ƒâ â ‡â ¥â Œâ —â â ™â ‘â Ž" }, { "input": "bamboo", "output": "â ƒâ â â ƒâ •â •" }, { "input": "bamboos", "output": "â ƒâ â â ƒâ •â •â Ž" }, { "input": "bamboozle", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠑" }, { "input": "bamboozled", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠫" }, { "input": "bamboozles", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠑⠎" }, { "input": "bamboozling", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠬" }, { "input": "ban", "output": "â ƒâ â " }, { "input": "banal", "output": "â ƒâ â â â ‡" }, { "input": "banalities", "output": "â ƒâ â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "banality", "output": "â ƒâ â â â ‡â °â ½" }, { "input": "banana", "output": "â ƒâ â â â â " }, { "input": "bananas", "output": "â ƒâ â â â â â Ž" }, { "input": "band", "output": "⠃⠯" }, { "input": "bandage", "output": "⠃⠯â â ›â ‘" }, { "input": "bandaged", "output": "⠃⠯â â ›â «" }, { "input": "bandages", "output": "⠃⠯â â ›â ‘â Ž" }, { "input": "bandaging", "output": "⠃⠯â â ›â ¬" }, { "input": "bandana", "output": "⠃⠯â â â " }, { "input": "bandanas", "output": "⠃⠯â â â â Ž" }, { "input": "bandanna", "output": "⠃⠯â â â â " }, { "input": "bandannas", "output": "⠃⠯â â â â â Ž" }, { "input": "banded", "output": "⠃⠯⠫" }, { "input": "bandied", "output": "⠃⠯⠊⠫" }, { "input": "bandier", "output": "⠃⠯⠊⠻" }, { "input": "bandies", "output": "⠃⠯⠊⠑⠎" }, { "input": "bandiest", "output": "⠃⠯⠊⠑⠌" }, { "input": "banding", "output": "⠃⠯⠬" }, { "input": "bandit", "output": "⠃⠯⠊⠞" }, { "input": "banditry", "output": "⠃⠯⠊⠞⠗⠽" }, { "input": "bandits", "output": "⠃⠯⠊⠞⠎" }, { "input": "banditti", "output": "⠃⠯⠊⠞⠞⠊" }, { "input": "bandoleer", "output": "⠃⠯⠕⠇⠑⠻" }, { "input": "bandoleers", "output": "⠃⠯⠕⠇⠑⠻⠎" }, { "input": "bandolier", "output": "⠃⠯⠕⠇⠊⠻" }, { "input": "bandoliers", "output": "⠃⠯⠕⠇⠊⠻⠎" }, { "input": "bands", "output": "⠃⠯⠎" }, { "input": "bandstand", "output": "⠃⠯⠌⠯" }, { "input": "bandstands", "output": "⠃⠯⠌⠯⠎" }, { "input": "bandwagon", "output": "⠃⠯⠺â â ›â •â " }, { "input": "bandwagons", "output": "⠃⠯⠺â â ›â •â â Ž" }, { "input": "bandwidth", "output": "⠃⠯⠺⠊⠙⠹" }, { "input": "bandy", "output": "⠃⠯⠽" }, { "input": "bandying", "output": "⠃⠯⠽⠬" }, { "input": "bane", "output": "â ƒâ â â ‘" }, { "input": "baneful", "output": "â ƒâ â â ‘â °â ‡" }, { "input": "banes", "output": "â ƒâ â â ‘â Ž" }, { "input": "bang", "output": "â ƒâ â â ›" }, { "input": "banged", "output": "â ƒâ â â ›â «" }, { "input": "banging", "output": "â ƒâ â â ›â ¬" }, { "input": "bangle", "output": "â ƒâ â â ›â ‡â ‘" }, { "input": "bangles", "output": "â ƒâ â â ›â ‡â ‘â Ž" }, { "input": "bangs", "output": "â ƒâ â â ›â Ž" }, { "input": "bani", "output": "â ƒâ â â Š" }, { "input": "banish", "output": "â ƒâ â â Šâ ©" }, { "input": "banished", "output": "â ƒâ â â Šâ ©â «" }, { "input": "banishes", "output": "â ƒâ â â Šâ ©â ‘â Ž" }, { "input": "banishing", "output": "â ƒâ â â Šâ ©â ¬" }, { "input": "banishment", "output": "â ƒâ â â Šâ ©â °â ž" }, { "input": "banister", "output": "â ƒâ â â Šâ Œâ »" }, { "input": "banisters", "output": "â ƒâ â â Šâ Œâ »â Ž" }, { "input": "banjo", "output": "â ƒâ â â šâ •" }, { "input": "banjoes", "output": "â ƒâ â â šâ •â ‘â Ž" }, { "input": "banjoist", "output": "â ƒâ â â šâ •â Šâ Œ" }, { "input": "banjoists", "output": "â ƒâ â â šâ •⠊⠌⠎" }, { "input": "banjos", "output": "â ƒâ â â šâ •â Ž" }, { "input": "bank", "output": "â ƒâ â â …" }, { "input": "bankbook", "output": "â ƒâ â â …⠃⠕⠕⠅" }, { "input": "bankbooks", "output": "â ƒâ â â …⠃⠕⠕⠅⠎" }, { "input": "banked", "output": "â ƒâ â â …â «" }, { "input": "banker", "output": "â ƒâ â â …â »" }, { "input": "bankers", "output": "â ƒâ â â …⠻⠎" }, { "input": "banking", "output": "â ƒâ â â …â ¬" }, { "input": "banknote", "output": "â ƒâ â â …â â •â žâ ‘" }, { "input": "banknotes", "output": "â ƒâ â â …â â •â žâ ‘â Ž" }, { "input": "bankroll", "output": "â ƒâ â â …⠗⠕⠇⠇" }, { "input": "bankrolled", "output": "â ƒâ â â …⠗⠕⠇⠇⠫" }, { "input": "bankrolling", "output": "â ƒâ â â …⠗⠕⠇⠇⠬" }, { "input": "bankrolls", "output": "â ƒâ â â …⠗⠕⠇⠇⠎" }, { "input": "bankrupt", "output": "â ƒâ â â …â —â ¥â â ž" }, { "input": "bankruptcies", "output": "â ƒâ â â …â —â ¥â â žâ ‰â Šâ ‘â Ž" }, { "input": "bankruptcy", "output": "â ƒâ â â …â —â ¥â â žâ ‰â ½" }, { "input": "bankrupted", "output": "â ƒâ â â …â —â ¥â â žâ «" }, { "input": "bankrupting", "output": "â ƒâ â â …â —â ¥â â žâ ¬" }, { "input": "bankrupts", "output": "â ƒâ â â …â —â ¥â â žâ Ž" }, { "input": "banks", "output": "â ƒâ â â …â Ž" }, { "input": "banned", "output": "â ƒâ â â â «" }, { "input": "banner", "output": "â ƒâ â â â »" }, { "input": "banners", "output": "â ƒâ â â â »â Ž" }, { "input": "banning", "output": "â ƒâ â â â ¬" }, { "input": "bannister", "output": "â ƒâ â â â Šâ Œâ »" }, { "input": "bannisters", "output": "â ƒâ â â â Šâ Œâ »â Ž" }, { "input": "banns", "output": "â ƒâ â â â Ž" }, { "input": "banquet", "output": "â ƒâ â â Ÿâ ¥â ‘â ž" }, { "input": "banqueted", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ «" }, { "input": "banqueting", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ ¬" }, { "input": "banquets", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ Ž" }, { "input": "bans", "output": "â ƒâ â â Ž" }, { "input": "banshee", "output": "â ƒâ â â ©â ‘â ‘" }, { "input": "banshees", "output": "â ƒâ â â ©â ‘â ‘â Ž" }, { "input": "bantam", "output": "â ƒâ â â žâ â " }, { "input": "bantams", "output": "â ƒâ â â žâ â â Ž" }, { "input": "bantamweight", "output": "â ƒâ â â žâ â â ºâ ‘⠊⠣⠞" }, { "input": "bantamweights", "output": "â ƒâ â â žâ â â ºâ ‘⠊⠣⠞⠎" }, { "input": "banter", "output": "â ƒâ â â žâ »" }, { "input": "bantered", "output": "â ƒâ â â žâ »â «" }, { "input": "bantering", "output": "â ƒâ â â žâ »â ¬" }, { "input": "banters", "output": "â ƒâ â â žâ »â Ž" }, { "input": "banyan", "output": "â ƒâ â â ½â â " }, { "input": "banyans", "output": "â ƒâ â â ½â â â Ž" }, { "input": "baobab", "output": "â ƒâ â •â ƒâ â ƒ" }, { "input": "baobabs", "output": "â ƒâ â •â ƒâ â ƒâ Ž" }, { "input": "baptism", "output": "â ƒâ â â žâ Šâ Žâ " }, { "input": "baptismal", "output": "â ƒâ â â žâ Šâ Žâ â â ‡" }, { "input": "baptisms", "output": "â ƒâ â â žâ Šâ Žâ â Ž" }, { "input": "baptist", "output": "â ƒâ â â žâ Šâ Œ" }, { "input": "baptisteries", "output": "â ƒâ â â žâ Šâ Œâ »â Šâ ‘â Ž" }, { "input": "baptistery", "output": "â ƒâ â â žâ Šâ Œâ »â ½" }, { "input": "baptistries", "output": "â ƒâ â â žâ Šâ Œâ —â Šâ ‘â Ž" }, { "input": "baptistry", "output": "â ƒâ â â žâ Šâ Œâ —â ½" }, { "input": "baptists", "output": "â ƒâ â â žâ Šâ Œâ Ž" }, { "input": "baptize", "output": "â ƒâ â â žâ Šâ µâ ‘" }, { "input": "baptized", "output": "â ƒâ â â žâ Šâ µâ «" }, { "input": "baptizes", "output": "â ƒâ â â žâ Šâ µâ ‘â Ž" }, { "input": "baptizing", "output": "â ƒâ â â žâ Šâ µâ ¬" }, { "input": "bar", "output": "⠃⠜" }, { "input": "barb", "output": "⠃⠜⠃" }, { "input": "barbarian", "output": "⠃⠜⠃⠜⠊â â " }, { "input": "barbarians", "output": "⠃⠜⠃⠜⠊â â â Ž" }, { "input": "barbaric", "output": "⠃⠜⠃⠜⠊⠉" }, { "input": "barbarism", "output": "⠃⠜⠃⠜⠊⠎â " }, { "input": "barbarisms", "output": "⠃⠜⠃⠜⠊⠎â â Ž" }, { "input": "barbarities", "output": "⠃⠜⠃⠜⠊⠞⠊⠑⠎" }, { "input": "barbarity", "output": "⠃⠜⠃⠜⠰⠽" }, { "input": "barbarous", "output": "⠃⠜⠃⠜⠳⠎" }, { "input": "barbarously", "output": "⠃⠜⠃⠜⠳⠎⠇⠽" }, { "input": "barbecue", "output": "⠃⠜⠃⠑⠉⠥⠑" }, { "input": "barbecued", "output": "⠃⠜⠃⠑⠉⠥⠫" }, { "input": "barbecues", "output": "⠃⠜⠃⠑⠉⠥⠑⠎" }, { "input": "barbecuing", "output": "⠃⠜⠃⠑⠉⠥⠬" }, { "input": "barbed", "output": "⠃⠜⠃⠫" }, { "input": "barbell", "output": "⠃⠜⠃⠑⠇⠇" }, { "input": "barbells", "output": "⠃⠜⠃⠑⠇⠇⠎" }, { "input": "barbeque", "output": "⠃⠜⠃⠑⠟⠥⠑" }, { "input": "barbequed", "output": "⠃⠜⠃⠑⠟⠥⠫" }, { "input": "barbeques", "output": "⠃⠜⠃⠑⠟⠥⠑⠎" }, { "input": "barbequing", "output": "⠃⠜⠃⠑⠟⠥⠬" }, { "input": "barber", "output": "⠃⠜⠃⠻" }, { "input": "barbered", "output": "⠃⠜⠃⠻⠫" }, { "input": "barbering", "output": "⠃⠜⠃⠻⠬" }, { "input": "barberries", "output": "⠃⠜⠃⠻⠗⠊⠑⠎" }, { "input": "barberry", "output": "⠃⠜⠃⠻⠗⠽" }, { "input": "barbers", "output": "⠃⠜⠃⠻⠎" }, { "input": "barbershop", "output": "⠃⠜⠃⠻⠩⠕â " }, { "input": "barbershops", "output": "⠃⠜⠃⠻⠩⠕â â Ž" }, { "input": "barbing", "output": "⠃⠜⠃⠬" }, { "input": "barbiturate", "output": "⠃⠜⠃⠊⠞⠥⠗â â žâ ‘" }, { "input": "barbiturates", "output": "⠃⠜⠃⠊⠞⠥⠗â â žâ ‘â Ž" }, { "input": "barbs", "output": "⠃⠜⠃⠎" }, { "input": "bard", "output": "⠃⠜⠙" }, { "input": "bards", "output": "⠃⠜⠙⠎" }, { "input": "bare", "output": "⠃⠜⠑" }, { "input": "bareback", "output": "⠃⠜⠑⠃â â ‰â …" }, { "input": "bared", "output": "⠃⠜⠫" }, { "input": "barefaced", "output": "⠃⠜⠑⠋â â ‰â «" }, { "input": "barefoot", "output": "⠃⠜⠑⠋⠕⠕⠞" }, { "input": "barefooted", "output": "⠃⠜⠑⠋⠕⠕⠞⠫" }, { "input": "barehanded", "output": "⠃⠜⠑⠓⠯⠫" }, { "input": "bareheaded", "output": "⠃⠜⠑⠓⠂⠙⠫" }, { "input": "barely", "output": "⠃⠜⠑⠇⠽" }, { "input": "bareness", "output": "⠃⠜⠑⠰⠎" }, { "input": "barer", "output": "⠃⠜⠻" }, { "input": "bares", "output": "⠃⠜⠑⠎" }, { "input": "barest", "output": "⠃⠜⠑⠌" }, { "input": "barf", "output": "⠃⠜⠋" }, { "input": "barfed", "output": "⠃⠜⠋⠫" }, { "input": "barfing", "output": "⠃⠜⠋⠬" }, { "input": "barfs", "output": "⠃⠜⠋⠎" }, { "input": "bargain", "output": "⠃⠜⠛â â ”" }, { "input": "bargained", "output": "⠃⠜⠛â â ”â «" }, { "input": "bargainer", "output": "⠃⠜⠛â â ”â »" }, { "input": "bargaining", "output": "⠃⠜⠛â â ”â ¬" }, { "input": "bargains", "output": "⠃⠜⠛â â ”â Ž" }, { "input": "barge", "output": "⠃⠜⠛⠑" }, { "input": "barged", "output": "⠃⠜⠛⠫" }, { "input": "barges", "output": "⠃⠜⠛⠑⠎" }, { "input": "barging", "output": "⠃⠜⠛⠬" }, { "input": "baring", "output": "⠃⠜⠬" }, { "input": "baritone", "output": "⠃⠜⠊⠞â â •" }, { "input": "baritones", "output": "⠃⠜⠊⠞â â •â Ž" }, { "input": "barium", "output": "⠃⠜⠊⠥â " }, { "input": "bark", "output": "⠃⠜⠅" }, { "input": "barked", "output": "⠃⠜⠅⠫" }, { "input": "barker", "output": "⠃⠜⠅⠻" }, { "input": "barkers", "output": "⠃⠜⠅⠻⠎" }, { "input": "barking", "output": "⠃⠜⠅⠬" }, { "input": "barks", "output": "⠃⠜⠅⠎" }, { "input": "barley", "output": "⠃⠜⠇⠑⠽" }, { "input": "barmaid", "output": "⠃⠜â â â Šâ ™" }, { "input": "barmaids", "output": "⠃⠜â â â Šâ ™â Ž" }, { "input": "barman", "output": "⠃⠜â â â " }, { "input": "barn", "output": "⠃⠜â " }, { "input": "barnacle", "output": "⠃⠜â â â ‰â ‡â ‘" }, { "input": "barnacles", "output": "⠃⠜â â â ‰â ‡â ‘â Ž" }, { "input": "barns", "output": "⠃⠜â â Ž" }, { "input": "barnstorm", "output": "⠃⠜â â Œâ •â —â " }, { "input": "barnstormed", "output": "⠃⠜â â Œâ •â —â â «" }, { "input": "barnstorming", "output": "⠃⠜â â Œâ •â —â â ¬" }, { "input": "barnstorms", "output": "⠃⠜â â Œâ •â —â â Ž" }, { "input": "barnyard", "output": "⠃⠜â â ½â œâ ™" }, { "input": "barnyards", "output": "⠃⠜â â ½â œâ ™â Ž" }, { "input": "barometer", "output": "⠃⠜⠕â â ‘â žâ »" }, { "input": "barometers", "output": "⠃⠜⠕â â ‘⠞⠻⠎" }, { "input": "barometric", "output": "⠃⠜⠕â â ‘â žâ —â Šâ ‰" }, { "input": "baron", "output": "⠃⠜⠕â " }, { "input": "baroness", "output": "⠃⠜⠕⠰⠎" }, { "input": "baronesses", "output": "⠃⠜⠕⠰⠎⠑⠎" }, { "input": "baronet", "output": "⠃⠜⠕â â ‘â ž" }, { "input": "baronets", "output": "⠃⠜⠕â â ‘â žâ Ž" }, { "input": "baronial", "output": "⠃⠜⠕â â Šâ â ‡" }, { "input": "barons", "output": "⠃⠜⠕â â Ž" }, { "input": "baroque", "output": "⠃⠜⠕⠟⠥⠑" }, { "input": "barrack", "output": "⠃⠜⠗â â ‰â …" }, { "input": "barracks", "output": "⠃⠜⠗â â ‰â …â Ž" }, { "input": "barracuda", "output": "⠃⠜⠗â â ‰â ¥â ™â " }, { "input": "barracudas", "output": "⠃⠜⠗â â ‰â ¥â ™â â Ž" }, { "input": "barrage", "output": "⠃⠜⠗â â ›â ‘" }, { "input": "barraged", "output": "⠃⠜⠗â â ›â «" }, { "input": "barrages", "output": "⠃⠜⠗â â ›â ‘â Ž" }, { "input": "barraging", "output": "⠃⠜⠗â â ›â ¬" }, { "input": "barred", "output": "⠃⠜⠗⠫" }, { "input": "barrel", "output": "⠃⠜⠗⠑⠇" }, { "input": "barreled", "output": "⠃⠜⠗⠑⠇⠫" }, { "input": "barreling", "output": "⠃⠜⠗⠑⠇⠬" }, { "input": "barrelled", "output": "⠃⠜⠗⠑⠇⠇⠫" }, { "input": "barrelling", "output": "⠃⠜⠗⠑⠇⠇⠬" }, { "input": "barrels", "output": "⠃⠜⠗⠑⠇⠎" }, { "input": "barren", "output": "⠃⠜⠗⠢" }, { "input": "barrener", "output": "⠃⠜⠗⠢⠻" }, { "input": "barrenest", "output": "⠃⠜⠗⠢⠑⠌" }, { "input": "barrenness", "output": "⠃⠜⠗⠢⠰⠎" }, { "input": "barrens", "output": "⠃⠜⠗⠢⠎" }, { "input": "barrette", "output": "⠃⠜⠗⠑⠞⠞⠑" }, { "input": "barrettes", "output": "⠃⠜⠗⠑⠞⠞⠑⠎" }, { "input": "barricade", "output": "⠃⠜⠗⠊⠉â â ™â ‘" }, { "input": "barricaded", "output": "⠃⠜⠗⠊⠉â â ™â «" }, { "input": "barricades", "output": "⠃⠜⠗⠊⠉â â ™â ‘â Ž" }, { "input": "barricading", "output": "⠃⠜⠗⠊⠉â â ™â ¬" }, { "input": "barrier", "output": "⠃⠜⠗⠊⠻" }, { "input": "barriers", "output": "⠃⠜⠗⠊⠻⠎" }, { "input": "barring", "output": "⠃⠜⠗⠬" }, { "input": "barrings", "output": "⠃⠜⠗⠬⠎" }, { "input": "barrio", "output": "⠃⠜⠗⠊⠕" }, { "input": "barrios", "output": "⠃⠜⠗⠊⠕⠎" }, { "input": "barrister", "output": "⠃⠜⠗⠊⠌⠻" }, { "input": "barristers", "output": "⠃⠜⠗⠊⠌⠻⠎" }, { "input": "barroom", "output": "⠃⠜⠗⠕⠕â " }, { "input": "barrooms", "output": "⠃⠜⠗⠕⠕â â Ž" }, { "input": "barrow", "output": "⠃⠜⠗⠪" }, { "input": "barrows", "output": "⠃⠜⠗⠪⠎" }, { "input": "bars", "output": "⠃⠜⠎" }, { "input": "bartender", "output": "⠃⠜⠞⠢⠙⠻" }, { "input": "bartenders", "output": "⠃⠜⠞⠢⠙⠻⠎" }, { "input": "barter", "output": "⠃⠜⠞⠻" }, { "input": "bartered", "output": "⠃⠜⠞⠻⠫" }, { "input": "bartering", "output": "⠃⠜⠞⠻⠬" }, { "input": "barters", "output": "⠃⠜⠞⠻⠎" }, { "input": "basal", "output": "â ƒâ â Žâ â ‡" }, { "input": "basalt", "output": "â ƒâ â Žâ â ‡â ž" }, { "input": "base", "output": "â ƒâ â Žâ ‘" }, { "input": "baseball", "output": "â ƒâ â Žâ ‘â ƒâ â ‡â ‡" }, { "input": "baseballs", "output": "â ƒâ â Žâ ‘â ƒâ â ‡â ‡â Ž" }, { "input": "baseboard", "output": "â ƒâ â Žâ ‘⠃⠕⠜⠙" }, { "input": "baseboards", "output": "â ƒâ â Žâ ‘⠃⠕⠜⠙⠎" }, { "input": "based", "output": "â ƒâ â Žâ «" }, { "input": "baseless", "output": "â ƒâ â Žâ ‘⠨⠎" }, { "input": "baseline", "output": "â ƒâ â Žâ ‘⠇⠔⠑" }, { "input": "baselines", "output": "â ƒâ â Žâ ‘⠇⠔⠑⠎" }, { "input": "basely", "output": "â ƒâ â Žâ ‘⠇⠽" }, { "input": "baseman", "output": "â ƒâ â Žâ ‘â â â " }, { "input": "basemen", "output": "â ƒâ â Žâ ‘â â ¢" }, { "input": "basement", "output": "â ƒâ â Žâ ‘â °â ž" }, { "input": "basements", "output": "â ƒâ â Žâ ‘â °â žâ Ž" }, { "input": "baseness", "output": "â ƒâ â Žâ ‘â °â Ž" }, { "input": "baser", "output": "â ƒâ â Žâ »" }, { "input": "bases", "output": "â ƒâ â Žâ ‘â Ž" }, { "input": "basest", "output": "â ƒâ â Žâ ‘â Œ" }, { "input": "bash", "output": "â ƒâ â ©" }, { "input": "bashed", "output": "â ƒâ â ©â «" }, { "input": "bashes", "output": "â ƒâ â ©â ‘â Ž" }, { "input": "bashful", "output": "â ƒâ â ©â °â ‡" }, { "input": "bashfully", "output": "â ƒâ â ©â °â ‡â ‡â ½" }, { "input": "bashfulness", "output": "â ƒâ â ©â °â ‡â °â Ž" }, { "input": "bashing", "output": "â ƒâ â ©â ¬" }, { "input": "basic", "output": "â ƒâ â Žâ Šâ ‰" }, { "input": "basically", "output": "â ƒâ â Žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "basics", "output": "â ƒâ â Žâ Šâ ‰â Ž" }, { "input": "basil", "output": "â ƒâ â Žâ Šâ ‡" }, { "input": "basilica", "output": "â ƒâ â Žâ Šâ ‡â Šâ ‰â " }, { "input": "basilicas", "output": "â ƒâ â Žâ Šâ ‡â Šâ ‰â â Ž" }, { "input": "basin", "output": "â ƒâ â Žâ ”" }, { "input": "basing", "output": "â ƒâ â Žâ ¬" }, { "input": "basins", "output": "â ƒâ â Žâ ”â Ž" }, { "input": "basis", "output": "â ƒâ â Žâ Šâ Ž" }, { "input": "bask", "output": "â ƒâ â Žâ …" }, { "input": "basked", "output": "â ƒâ â Žâ …â «" }, { "input": "basket", "output": "â ƒâ â Žâ …â ‘â ž" }, { "input": "basketball", "output": "â ƒâ â Žâ …â ‘â žâ ƒâ â ‡â ‡" }, { "input": "basketballs", "output": "â ƒâ â Žâ …â ‘â žâ ƒâ â ‡â ‡â Ž" }, { "input": "baskets", "output": "â ƒâ â Žâ …â ‘â žâ Ž" }, { "input": "basking", "output": "â ƒâ â Žâ …â ¬" }, { "input": "basks", "output": "â ƒâ â Žâ …â Ž" }, { "input": "bass", "output": "â ƒâ â Žâ Ž" }, { "input": "basses", "output": "â ƒâ â Žâ Žâ ‘â Ž" }, { "input": "bassi", "output": "â ƒâ â Žâ Žâ Š" }, { "input": "bassinet", "output": "â ƒâ â Žâ Žâ ”â ‘â ž" }, { "input": "bassinets", "output": "â ƒâ â Žâ Žâ ”â ‘â žâ Ž" }, { "input": "bassist", "output": "â ƒâ â Žâ Žâ Šâ Œ" }, { "input": "bassists", "output": "â ƒâ â Žâ Žâ Šâ Œâ Ž" }, { "input": "basso", "output": "â ƒâ â Žâ Žâ •" }, { "input": "bassoon", "output": "â ƒâ â Žâ Žâ •â •â " }, { "input": "bassoonist", "output": "â ƒâ â Žâ Žâ •â •â â Šâ Œ" }, { "input": "bassoonists", "output": "â ƒâ â Žâ Žâ •â •â â Šâ Œâ Ž" }, { "input": "bassoons", "output": "â ƒâ â Žâ Žâ •â •â â Ž" }, { "input": "bassos", "output": "â ƒâ â Žâ Žâ •â Ž" }, { "input": "bast", "output": "â ƒâ â Œ" }, { "input": "bastard", "output": "â ƒâ â Œâ œâ ™" }, { "input": "bastardize", "output": "â ƒâ â Œâ œâ ™â Šâ µâ ‘" }, { "input": "bastardized", "output": "â ƒâ â Œâ œâ ™â Šâ µâ «" }, { "input": "bastardizes", "output": "â ƒâ â Œâ œâ ™â Šâ µâ ‘â Ž" }, { "input": "bastardizing", "output": "â ƒâ â Œâ œâ ™â Šâ µâ ¬" }, { "input": "bastards", "output": "â ƒâ â Œâ œâ ™â Ž" }, { "input": "baste", "output": "â ƒâ â Œâ ‘" }, { "input": "basted", "output": "â ƒâ â Œâ «" }, { "input": "bastes", "output": "â ƒâ â Œâ ‘â Ž" }, { "input": "basting", "output": "â ƒâ â Œâ ¬" }, { "input": "bastion", "output": "â ƒâ â Žâ °â " }, { "input": "bastions", "output": "â ƒâ â Žâ °â â Ž" }, { "input": "bat", "output": "â ƒâ â ž" }, { "input": "batch", "output": "â ƒâ â žâ ¡" }, { "input": "batched", "output": "â ƒâ â žâ ¡â «" }, { "input": "batches", "output": "â ƒâ â žâ ¡â ‘â Ž" }, { "input": "batching", "output": "â ƒâ â žâ ¡â ¬" }, { "input": "bate", "output": "â ƒâ â žâ ‘" }, { "input": "bated", "output": "â ƒâ â žâ «" }, { "input": "bates", "output": "â ƒâ â žâ ‘â Ž" }, { "input": "bath", "output": "â ƒâ â ¹" }, { "input": "bathe", "output": "â ƒâ â ®" }, { "input": "bathed", "output": "â ƒâ â ®â ™" }, { "input": "bather", "output": "â ƒâ â ®â —" }, { "input": "bathers", "output": "â ƒâ â ®â —â Ž" }, { "input": "bathes", "output": "â ƒâ â ®â Ž" }, { "input": "bathhouse", "output": "â ƒâ â ¹â “⠳⠎⠑" }, { "input": "bathhouses", "output": "â ƒâ â ¹â “⠳⠎⠑⠎" }, { "input": "bathing", "output": "â ƒâ â ¹â ¬" }, { "input": "bathmat", "output": "â ƒâ â ¹â â â ž" }, { "input": "bathmats", "output": "â ƒâ â ¹â â â žâ Ž" }, { "input": "bathos", "output": "â ƒâ â ¹â •â Ž" }, { "input": "bathrobe", "output": "â ƒâ â ¹â —⠕⠃⠑" }, { "input": "bathrobes", "output": "â ƒâ â ¹â —⠕⠃⠑⠎" }, { "input": "bathroom", "output": "â ƒâ â ¹â —â •â •â " }, { "input": "bathrooms", "output": "â ƒâ â ¹â —â •â •â â Ž" }, { "input": "baths", "output": "â ƒâ â ¹â Ž" }, { "input": "bathtub", "output": "â ƒâ â ¹â žâ ¥â ƒ" }, { "input": "bathtubs", "output": "â ƒâ â ¹â žâ ¥â ƒâ Ž" }, { "input": "batik", "output": "â ƒâ â žâ Šâ …" }, { "input": "batiks", "output": "â ƒâ â žâ Šâ …â Ž" }, { "input": "bating", "output": "â ƒâ â žâ ¬" }, { "input": "baton", "output": "â ƒâ â žâ •â " }, { "input": "batons", "output": "â ƒâ â žâ •â â Ž" }, { "input": "bats", "output": "â ƒâ â žâ Ž" }, { "input": "batsman", "output": "â ƒâ â žâ Žâ â â " }, { "input": "batsmen", "output": "â ƒâ â žâ Žâ â ¢" }, { "input": "battalion", "output": "â ƒâ â žâ žâ â ‡â Šâ •â " }, { "input": "battalions", "output": "â ƒâ â žâ žâ â ‡â Šâ •â â Ž" }, { "input": "batted", "output": "â ƒâ â žâ žâ «" }, { "input": "batten", "output": "â ƒâ â žâ žâ ¢" }, { "input": "battened", "output": "â ƒâ â žâ žâ ¢â «" }, { "input": "battening", "output": "â ƒâ â žâ žâ ¢â ¬" }, { "input": "battens", "output": "â ƒâ â žâ žâ ¢â Ž" }, { "input": "batter", "output": "â ƒâ â žâ žâ »" }, { "input": "battered", "output": "â ƒâ â žâ žâ »â «" }, { "input": "batteries", "output": "â ƒâ â žâ žâ »â Šâ ‘â Ž" }, { "input": "battering", "output": "â ƒâ â žâ žâ »â ¬" }, { "input": "batters", "output": "â ƒâ â žâ žâ »â Ž" }, { "input": "battery", "output": "â ƒâ â žâ žâ »â ½" }, { "input": "battier", "output": "â ƒâ â žâ žâ Šâ »" }, { "input": "battiest", "output": "â ƒâ â žâ žâ Šâ ‘â Œ" }, { "input": "batting", "output": "â ƒâ â žâ žâ ¬" }, { "input": "battle", "output": "â ƒâ â žâ žâ ‡â ‘" }, { "input": "battled", "output": "â ƒâ â žâ žâ ‡â «" }, { "input": "battlefield", "output": "â ƒâ â žâ žâ ‡â ‘⠋⠊⠑⠇⠙" }, { "input": "battlefields", "output": "â ƒâ â žâ žâ ‡â ‘⠋⠊⠑⠇⠙⠎" }, { "input": "battleground", "output": "â ƒâ â žâ žâ ‡â ‘⠛⠗⠨⠙" }, { "input": "battlegrounds", "output": "â ƒâ â žâ žâ ‡â ‘⠛⠗⠨⠙⠎" }, { "input": "battlement", "output": "â ƒâ â žâ žâ ‡â ‘â °â ž" }, { "input": "battlements", "output": "â ƒâ â žâ žâ ‡â ‘â °â žâ Ž" }, { "input": "battles", "output": "â ƒâ â žâ žâ ‡â ‘â Ž" }, { "input": "battleship", "output": "â ƒâ â žâ žâ ‡â ‘â ©â Šâ " }, { "input": "battleships", "output": "â ƒâ â žâ žâ ‡â ‘â ©â Šâ â Ž" }, { "input": "battling", "output": "â ƒâ â žâ žâ ‡â ¬" }, { "input": "batty", "output": "â ƒâ â žâ žâ ½" }, { "input": "bauble", "output": "â ƒâ â ¥â ƒâ ‡â ‘" }, { "input": "baubles", "output": "â ƒâ â ¥â ƒâ ‡â ‘â Ž" }, { "input": "baud", "output": "â ƒâ â ¥â ™" }, { "input": "bauds", "output": "â ƒâ â ¥â ™â Ž" }, { "input": "bauxite", "output": "â ƒâ â ¥â ­â Šâ žâ ‘" }, { "input": "bawdier", "output": "â ƒâ â ºâ ™â Šâ »" }, { "input": "bawdiest", "output": "â ƒâ â ºâ ™â Šâ ‘â Œ" }, { "input": "bawdily", "output": "â ƒâ â ºâ ™â Šâ ‡â ½" }, { "input": "bawdiness", "output": "â ƒâ â ºâ ™â Šâ °â Ž" }, { "input": "bawdy", "output": "â ƒâ â ºâ ™â ½" }, { "input": "bawl", "output": "â ƒâ â ºâ ‡" }, { "input": "bawled", "output": "â ƒâ â ºâ ‡â «" }, { "input": "bawling", "output": "â ƒâ â ºâ ‡â ¬" }, { "input": "bawls", "output": "â ƒâ â ºâ ‡â Ž" }, { "input": "bay", "output": "â ƒâ â ½" }, { "input": "bayberries", "output": "â ƒâ â ½â ƒâ »â —â Šâ ‘â Ž" }, { "input": "bayberry", "output": "â ƒâ â ½â ƒâ »â —â ½" }, { "input": "bayed", "output": "â ƒâ â ½â «" }, { "input": "baying", "output": "â ƒâ â ½â ¬" }, { "input": "bayonet", "output": "â ƒâ â ½â •â â ‘â ž" }, { "input": "bayoneted", "output": "â ƒâ â ½â •â â ‘â žâ «" }, { "input": "bayoneting", "output": "â ƒâ â ½â •â â ‘â žâ ¬" }, { "input": "bayonets", "output": "â ƒâ â ½â •â â ‘â žâ Ž" }, { "input": "bayonetted", "output": "â ƒâ â ½â •â â ‘â žâ žâ «" }, { "input": "bayonetting", "output": "â ƒâ â ½â •â â ‘â žâ žâ ¬" }, { "input": "bayou", "output": "â ƒâ â ½â ³" }, { "input": "bayous", "output": "â ƒâ â ½â ³â Ž" }, { "input": "bays", "output": "â ƒâ â ½â Ž" }, { "input": "bazaar", "output": "â ƒâ â µâ â œ" }, { "input": "bazaars", "output": "â ƒâ â µâ â œâ Ž" }, { "input": "bazillion", "output": "â ƒâ â µâ Šâ ‡â ‡â Šâ •â " }, { "input": "bazillions", "output": "â ƒâ â µâ Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "bazooka", "output": "â ƒâ â µâ •â •â …â " }, { "input": "bazookas", "output": "â ƒâ â µâ •â •â …â â Ž" }, { "input": "be", "output": "â †" }, { "input": "beach", "output": "⠃⠂⠡" }, { "input": "beachcomber", "output": "⠃⠂⠡⠉⠕â â ƒâ »" }, { "input": "beachcombers", "output": "⠃⠂⠡⠉⠕â â ƒâ »â Ž" }, { "input": "beached", "output": "⠃⠂⠡⠫" }, { "input": "beaches", "output": "⠃⠂⠡⠑⠎" }, { "input": "beachhead", "output": "⠃⠂⠡⠓⠂⠙" }, { "input": "beachheads", "output": "⠃⠂⠡⠓⠂⠙⠎" }, { "input": "beaching", "output": "⠃⠂⠡⠬" }, { "input": "beacon", "output": "⠃⠂⠉⠕â " }, { "input": "beacons", "output": "⠃⠂⠉⠕â â Ž" }, { "input": "bead", "output": "⠃⠂⠙" }, { "input": "beaded", "output": "⠃⠂⠙⠫" }, { "input": "beadier", "output": "⠃⠂⠙⠊⠻" }, { "input": "beadiest", "output": "⠃⠂⠙⠊⠑⠌" }, { "input": "beading", "output": "⠃⠂⠙⠬" }, { "input": "beads", "output": "⠃⠂⠙⠎" }, { "input": "beady", "output": "⠃⠂⠙⠽" }, { "input": "beagle", "output": "⠃⠂⠛⠇⠑" }, { "input": "beagles", "output": "⠃⠂⠛⠇⠑⠎" }, { "input": "beak", "output": "⠃⠂⠅" }, { "input": "beaked", "output": "⠃⠂⠅⠫" }, { "input": "beaker", "output": "⠃⠂⠅⠻" }, { "input": "beakers", "output": "⠃⠂⠅⠻⠎" }, { "input": "beaks", "output": "⠃⠂⠅⠎" }, { "input": "beam", "output": "⠃⠂â " }, { "input": "beamed", "output": "⠃⠂â â «" }, { "input": "beaming", "output": "⠃⠂â â ¬" }, { "input": "beams", "output": "⠃⠂â â Ž" }, { "input": "bean", "output": "⠃⠂â " }, { "input": "beanbag", "output": "⠃⠂â â ƒâ â ›" }, { "input": "beanbags", "output": "⠃⠂â â ƒâ â ›â Ž" }, { "input": "beaned", "output": "⠃⠂â â «" }, { "input": "beaning", "output": "⠃⠂â â ¬" }, { "input": "beans", "output": "⠃⠂â â Ž" }, { "input": "bear", "output": "⠃⠑⠜" }, { "input": "bearable", "output": "⠃⠑⠜â â ƒâ ‡â ‘" }, { "input": "beard", "output": "⠃⠑⠜⠙" }, { "input": "bearded", "output": "⠃⠑⠜⠙⠫" }, { "input": "bearding", "output": "⠃⠑⠜⠙⠬" }, { "input": "beards", "output": "⠃⠑⠜⠙⠎" }, { "input": "bearer", "output": "⠃⠑⠜⠻" }, { "input": "bearers", "output": "⠃⠑⠜⠻⠎" }, { "input": "bearing", "output": "⠃⠑⠜⠬" }, { "input": "bearings", "output": "⠃⠑⠜⠬⠎" }, { "input": "bearish", "output": "⠃⠑⠜⠊⠩" }, { "input": "bears", "output": "⠃⠑⠜⠎" }, { "input": "bearskin", "output": "⠃⠑⠜⠎⠅⠔" }, { "input": "bearskins", "output": "⠃⠑⠜⠎⠅⠔⠎" }, { "input": "beast", "output": "⠃⠂⠌" }, { "input": "beastlier", "output": "⠃⠂⠌⠇⠊⠻" }, { "input": "beastliest", "output": "⠃⠂⠌⠇⠊⠑⠌" }, { "input": "beastliness", "output": "⠃⠂⠌⠇⠊⠰⠎" }, { "input": "beastly", "output": "⠃⠂⠌⠇⠽" }, { "input": "beasts", "output": "⠃⠂⠌⠎" }, { "input": "beat", "output": "⠃⠂⠞" }, { "input": "beaten", "output": "⠃⠂⠞⠢" }, { "input": "beater", "output": "⠃⠂⠞⠻" }, { "input": "beaters", "output": "⠃⠂⠞⠻⠎" }, { "input": "beatific", "output": "â †â â žâ Šâ ‹â Šâ ‰" }, { "input": "beatification", "output": "â †â â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "beatifications", "output": "â †â â žâ Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "beatified", "output": "â †â â žâ Šâ ‹â Šâ «" }, { "input": "beatifies", "output": "â †â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "beatify", "output": "â †â â žâ Šâ ‹â ½" }, { "input": "beatifying", "output": "â †â â žâ Šâ ‹â ½â ¬" }, { "input": "beating", "output": "⠃⠂⠞⠬" }, { "input": "beatings", "output": "⠃⠂⠞⠬⠎" }, { "input": "beatitude", "output": "â †â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "beatitudes", "output": "â †â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "beatnik", "output": "⠃⠂⠞â â Šâ …" }, { "input": "beatniks", "output": "⠃⠂⠞â â Šâ …â Ž" }, { "input": "beats", "output": "⠃⠂⠞⠎" }, { "input": "beau", "output": "⠃⠂⠥" }, { "input": "beaus", "output": "⠃⠂⠥⠎" }, { "input": "beauteous", "output": "⠃⠂⠥⠞⠑⠳⠎" }, { "input": "beauteously", "output": "⠃⠂⠥⠞⠑⠳⠎⠇⠽" }, { "input": "beautician", "output": "⠃⠂⠥⠞⠊⠉⠊â â " }, { "input": "beauticians", "output": "⠃⠂⠥⠞⠊⠉⠊â â â Ž" }, { "input": "beauties", "output": "⠃⠂⠥⠞⠊⠑⠎" }, { "input": "beautification", "output": "⠃⠂⠥⠞⠊⠋⠊⠉â â °â " }, { "input": "beautified", "output": "⠃⠂⠥⠞⠊⠋⠊⠫" }, { "input": "beautifier", "output": "⠃⠂⠥⠞⠊⠋⠊⠻" }, { "input": "beautifiers", "output": "⠃⠂⠥⠞⠊⠋⠊⠻⠎" }, { "input": "beautifies", "output": "⠃⠂⠥⠞⠊⠋⠊⠑⠎" }, { "input": "beautiful", "output": "⠃⠂⠥⠞⠊⠰⠇" }, { "input": "beautifully", "output": "⠃⠂⠥⠞⠊⠰⠇⠇⠽" }, { "input": "beautify", "output": "⠃⠂⠥⠞⠊⠋⠽" }, { "input": "beautifying", "output": "⠃⠂⠥⠞⠊⠋⠽⠬" }, { "input": "beauty", "output": "⠃⠂⠥⠞⠽" }, { "input": "beaux", "output": "⠃⠂⠥⠭" }, { "input": "beaver", "output": "⠃⠂⠧⠻" }, { "input": "beavered", "output": "⠃⠂⠧⠻⠫" }, { "input": "beavering", "output": "⠃⠂⠧⠻⠬" }, { "input": "beavers", "output": "⠃⠂⠧⠻⠎" }, { "input": "bebop", "output": "⠆⠃⠕â " }, { "input": "bebops", "output": "⠆⠃⠕â â Ž" }, { "input": "becalm", "output": "⠆⠉â â ‡â " }, { "input": "becalmed", "output": "⠆⠉â â ‡â â «" }, { "input": "becalming", "output": "⠆⠉â â ‡â â ¬" }, { "input": "becalms", "output": "⠆⠉â â ‡â â Ž" }, { "input": "became", "output": "⠆⠉â â â ‘" }, { "input": "because", "output": "⠆⠉" }, { "input": "beck", "output": "⠃⠑⠉⠅" }, { "input": "beckon", "output": "⠃⠑⠉⠅⠕â " }, { "input": "beckoned", "output": "⠃⠑⠉⠅⠕â â «" }, { "input": "beckoning", "output": "⠃⠑⠉⠅⠕â â ¬" }, { "input": "beckons", "output": "⠃⠑⠉⠅⠕â â Ž" }, { "input": "becks", "output": "⠃⠑⠉⠅⠎" }, { "input": "become", "output": "⠆⠉⠕â â ‘" }, { "input": "becomes", "output": "⠆⠉⠕â â ‘â Ž" }, { "input": "becoming", "output": "⠆⠉⠕â â ¬" }, { "input": "becomingly", "output": "⠆⠉⠕â â ¬â ‡â ½" }, { "input": "bed", "output": "⠃⠫" }, { "input": "bedazzle", "output": "⠆⠙â â µâ µâ ‡â ‘" }, { "input": "bedazzled", "output": "⠆⠙â â µâ µâ ‡â «" }, { "input": "bedazzles", "output": "⠆⠙â â µâ µâ ‡â ‘â Ž" }, { "input": "bedazzling", "output": "⠆⠙â â µâ µâ ‡â ¬" }, { "input": "bedbug", "output": "⠃⠫⠃⠥⠛" }, { "input": "bedbugs", "output": "⠃⠫⠃⠥⠛⠎" }, { "input": "bedclothes", "output": "⠃⠫⠉⠇⠕⠮⠎" }, { "input": "bedded", "output": "⠃⠫⠙⠫" }, { "input": "bedder", "output": "⠃⠫⠙⠻" }, { "input": "bedding", "output": "⠃⠫⠙⠬" }, { "input": "bedeck", "output": "⠆⠙⠑⠉⠅" }, { "input": "bedecked", "output": "⠆⠙⠑⠉⠅⠫" }, { "input": "bedecking", "output": "⠆⠙⠑⠉⠅⠬" }, { "input": "bedecks", "output": "⠆⠙⠑⠉⠅⠎" }, { "input": "bedevil", "output": "⠆⠙⠑⠧⠊⠇" }, { "input": "bedeviled", "output": "⠆⠙⠑⠧⠊⠇⠫" }, { "input": "bedeviling", "output": "⠆⠙⠑⠧⠊⠇⠬" }, { "input": "bedevilled", "output": "⠆⠙⠑⠧⠊⠇⠇⠫" }, { "input": "bedevilling", "output": "⠆⠙⠑⠧⠊⠇⠇⠬" }, { "input": "bedevilment", "output": "⠆⠙⠑⠧⠊⠇⠰⠞" }, { "input": "bedevils", "output": "⠆⠙⠑⠧⠊⠇⠎" }, { "input": "bedfellow", "output": "⠃⠫⠋⠑⠇⠇⠪" }, { "input": "bedfellows", "output": "⠃⠫⠋⠑⠇⠇⠪⠎" }, { "input": "bedlam", "output": "⠃⠫⠇â â " }, { "input": "bedlams", "output": "⠃⠫⠇â â â Ž" }, { "input": "bedpan", "output": "⠃⠫â â â " }, { "input": "bedpans", "output": "⠃⠫â â â â Ž" }, { "input": "bedraggle", "output": "⠆⠙⠗â â ¶â ‡â ‘" }, { "input": "bedraggled", "output": "⠆⠙⠗â â ¶â ‡â «" }, { "input": "bedraggles", "output": "⠆⠙⠗â â ¶â ‡â ‘â Ž" }, { "input": "bedraggling", "output": "⠆⠙⠗â â ¶â ‡â ¬" }, { "input": "bedridden", "output": "⠃⠫⠗⠊⠙⠙⠢" }, { "input": "bedrock", "output": "⠃⠫⠗⠕⠉⠅" }, { "input": "bedrocks", "output": "⠃⠫⠗⠕⠉⠅⠎" }, { "input": "bedroll", "output": "⠃⠫⠗⠕⠇⠇" }, { "input": "bedrolls", "output": "⠃⠫⠗⠕⠇⠇⠎" }, { "input": "bedroom", "output": "⠃⠫⠗⠕⠕â " }, { "input": "bedrooms", "output": "⠃⠫⠗⠕⠕â â Ž" }, { "input": "beds", "output": "⠃⠫⠎" }, { "input": "bedside", "output": "⠃⠫⠎⠊⠙⠑" }, { "input": "bedsides", "output": "⠃⠫⠎⠊⠙⠑⠎" }, { "input": "bedsore", "output": "⠃⠫⠎⠕⠗⠑" }, { "input": "bedsores", "output": "⠃⠫⠎⠕⠗⠑⠎" }, { "input": "bedspread", "output": "⠃⠫⠎â â —â ‚â ™" }, { "input": "bedspreads", "output": "⠃⠫⠎â â —⠂⠙⠎" }, { "input": "bedstead", "output": "⠃⠫⠌⠂⠙" }, { "input": "bedsteads", "output": "⠃⠫⠌⠂⠙⠎" }, { "input": "bedtime", "output": "⠃⠫â â ž" }, { "input": "bedtimes", "output": "⠃⠫â â žâ Ž" }, { "input": "bee", "output": "⠃⠑⠑" }, { "input": "beech", "output": "⠃⠑⠑⠡" }, { "input": "beeches", "output": "⠃⠑⠑⠡⠑⠎" }, { "input": "beechnut", "output": "⠃⠑⠑⠡â â ¥â ž" }, { "input": "beechnuts", "output": "⠃⠑⠑⠡â â ¥â žâ Ž" }, { "input": "beef", "output": "⠃⠑⠑⠋" }, { "input": "beefburger", "output": "⠃⠑⠑⠋⠃⠥⠗⠛⠻" }, { "input": "beefed", "output": "⠃⠑⠑⠋⠫" }, { "input": "beefier", "output": "⠃⠑⠑⠋⠊⠻" }, { "input": "beefiest", "output": "⠃⠑⠑⠋⠊⠑⠌" }, { "input": "beefing", "output": "⠃⠑⠑⠋⠬" }, { "input": "beefs", "output": "⠃⠑⠑⠋⠎" }, { "input": "beefsteak", "output": "⠃⠑⠑⠋⠌⠂⠅" }, { "input": "beefsteaks", "output": "⠃⠑⠑⠋⠌⠂⠅⠎" }, { "input": "beefy", "output": "⠃⠑⠑⠋⠽" }, { "input": "beehive", "output": "⠃⠑⠑⠓⠊⠧⠑" }, { "input": "beehives", "output": "⠃⠑⠑⠓⠊⠧⠑⠎" }, { "input": "beekeeper", "output": "⠃⠑⠑⠅⠑⠑â â »" }, { "input": "beekeepers", "output": "⠃⠑⠑⠅⠑⠑â â »â Ž" }, { "input": "beekeeping", "output": "⠃⠑⠑⠅⠑⠑â â ¬" }, { "input": "beeline", "output": "⠃⠑⠑⠇⠔⠑" }, { "input": "beelines", "output": "⠃⠑⠑⠇⠔⠑⠎" }, { "input": "been", "output": "⠃⠑⠢" }, { "input": "beep", "output": "⠃⠑⠑â " }, { "input": "beeped", "output": "⠃⠑⠑â â «" }, { "input": "beeper", "output": "⠃⠑⠑â â »" }, { "input": "beepers", "output": "⠃⠑⠑â â »â Ž" }, { "input": "beeping", "output": "⠃⠑⠑â â ¬" }, { "input": "beeps", "output": "⠃⠑⠑â â Ž" }, { "input": "beer", "output": "⠃⠑⠻" }, { "input": "beers", "output": "⠃⠑⠻⠎" }, { "input": "bees", "output": "⠃⠑⠑⠎" }, { "input": "beeswax", "output": "⠃⠑⠑⠎⠺â â ­" }, { "input": "beet", "output": "⠃⠑⠑⠞" }, { "input": "beetle", "output": "⠃⠑⠑⠞⠇⠑" }, { "input": "beetled", "output": "⠃⠑⠑⠞⠇⠫" }, { "input": "beetles", "output": "⠃⠑⠑⠞⠇⠑⠎" }, { "input": "beetling", "output": "⠃⠑⠑⠞⠇⠬" }, { "input": "beets", "output": "⠃⠑⠑⠞⠎" }, { "input": "beeves", "output": "⠃⠑⠑⠧⠑⠎" }, { "input": "befall", "output": "⠆⠋â â ‡â ‡" }, { "input": "befallen", "output": "⠆⠋â â ‡â ‡â ¢" }, { "input": "befalling", "output": "⠆⠋â â ‡â ‡â ¬" }, { "input": "befalls", "output": "⠆⠋â â ‡â ‡â Ž" }, { "input": "befell", "output": "⠆⠋⠑⠇⠇" }, { "input": "befit", "output": "⠆⠋⠊⠞" }, { "input": "befits", "output": "⠆⠋⠊⠞⠎" }, { "input": "befitted", "output": "⠆⠋⠊⠞⠞⠫" }, { "input": "befitting", "output": "⠆⠋⠊⠞⠞⠬" }, { "input": "befog", "output": "⠆⠋⠕⠛" }, { "input": "befogged", "output": "⠆⠋⠕⠶⠫" }, { "input": "befogging", "output": "⠆⠋⠕⠶⠬" }, { "input": "befogs", "output": "⠆⠋⠕⠛⠎" }, { "input": "before", "output": "⠆⠋" }, { "input": "beforehand", "output": "⠆⠋⠓⠯" }, { "input": "befoul", "output": "⠆⠋⠳⠇" }, { "input": "befouled", "output": "⠆⠋⠳⠇⠫" }, { "input": "befouling", "output": "⠆⠋⠳⠇⠬" }, { "input": "befouls", "output": "⠆⠋⠳⠇⠎" }, { "input": "befriend", "output": "⠆⠋⠗" }, { "input": "befriended", "output": "⠆⠋⠗⠊⠢⠙⠫" }, { "input": "befriending", "output": "⠆⠋⠗⠊⠢⠙⠬" }, { "input": "befriends", "output": "⠆⠋⠗⠎" }, { "input": "befuddle", "output": "⠆⠋⠥⠙⠙⠇⠑" }, { "input": "befuddled", "output": "⠆⠋⠥⠙⠙⠇⠫" }, { "input": "befuddles", "output": "⠆⠋⠥⠙⠙⠇⠑⠎" }, { "input": "befuddling", "output": "⠆⠋⠥⠙⠙⠇⠬" }, { "input": "beg", "output": "⠃⠑⠛" }, { "input": "began", "output": "⠆⠛â â " }, { "input": "begat", "output": "⠆⠛â â ž" }, { "input": "beget", "output": "⠆⠛⠑⠞" }, { "input": "begets", "output": "⠆⠛⠑⠞⠎" }, { "input": "begetting", "output": "⠆⠛⠑⠞⠞⠬" }, { "input": "beggar", "output": "⠃⠑⠶⠜" }, { "input": "beggared", "output": "⠃⠑⠶⠜⠫" }, { "input": "beggaring", "output": "⠃⠑⠶⠜⠬" }, { "input": "beggarly", "output": "⠃⠑⠶⠜⠇⠽" }, { "input": "beggars", "output": "⠃⠑⠶⠜⠎" }, { "input": "begged", "output": "⠃⠑⠶⠫" }, { "input": "begging", "output": "⠃⠑⠶⠬" }, { "input": "begin", "output": "⠆⠛⠔" }, { "input": "beginner", "output": "⠆⠛⠔â â »" }, { "input": "beginners", "output": "⠆⠛⠔â â »â Ž" }, { "input": "beginning", "output": "⠆⠛⠔â â ¬" }, { "input": "beginnings", "output": "⠆⠛⠔â â ¬â Ž" }, { "input": "begins", "output": "⠆⠛⠔⠎" }, { "input": "begone", "output": "⠆⠛â â •" }, { "input": "begonia", "output": "⠆⠛⠕â â Šâ " }, { "input": "begonias", "output": "⠆⠛⠕â â Šâ â Ž" }, { "input": "begot", "output": "⠆⠛⠕⠞" }, { "input": "begotten", "output": "⠆⠛⠕⠞⠞⠢" }, { "input": "begrudge", "output": "⠆⠛⠗⠥⠙⠛⠑" }, { "input": "begrudged", "output": "⠆⠛⠗⠥⠙⠛⠫" }, { "input": "begrudges", "output": "⠆⠛⠗⠥⠙⠛⠑⠎" }, { "input": "begrudging", "output": "⠆⠛⠗⠥⠙⠛⠬" }, { "input": "begrudgingly", "output": "⠆⠛⠗⠥⠙⠛⠬⠇⠽" }, { "input": "begs", "output": "⠃⠑⠛⠎" }, { "input": "beguile", "output": "⠆⠛⠥⠊⠇⠑" }, { "input": "beguiled", "output": "⠆⠛⠥⠊⠇⠫" }, { "input": "beguiles", "output": "⠆⠛⠥⠊⠇⠑⠎" }, { "input": "beguiling", "output": "⠆⠛⠥⠊⠇⠬" }, { "input": "beguilingly", "output": "⠆⠛⠥⠊⠇⠬⠇⠽" }, { "input": "begun", "output": "⠆⠛⠥â " }, { "input": "behalf", "output": "⠆⠓â â ‡â ‹" }, { "input": "behalves", "output": "⠆⠓â â ‡â §â ‘â Ž" }, { "input": "behave", "output": "⠆⠓â â §â ‘" }, { "input": "behaved", "output": "⠆⠓â â §â «" }, { "input": "behaves", "output": "⠆⠓â â §â ‘â Ž" }, { "input": "behaving", "output": "⠆⠓â â §â ¬" }, { "input": "behavior", "output": "⠆⠓â â §â Šâ •â —" }, { "input": "behavioral", "output": "⠆⠓â â §â Šâ •â —â â ‡" }, { "input": "behead", "output": "⠆⠓⠂⠙" }, { "input": "beheaded", "output": "⠆⠓⠂⠙⠫" }, { "input": "beheading", "output": "⠆⠓⠂⠙⠬" }, { "input": "beheads", "output": "⠆⠓⠂⠙⠎" }, { "input": "beheld", "output": "⠆⠓⠑⠇⠙" }, { "input": "behemoth", "output": "⠃⠑⠓⠑â â •â ¹" }, { "input": "behemoths", "output": "⠃⠑⠓⠑â â •⠹⠎" }, { "input": "behest", "output": "⠆⠓⠑⠌" }, { "input": "behests", "output": "⠆⠓⠑⠌⠎" }, { "input": "behind", "output": "⠆⠓" }, { "input": "behinds", "output": "⠆⠓⠎" }, { "input": "behold", "output": "⠆⠓⠕⠇⠙" }, { "input": "beholden", "output": "⠆⠓⠕⠇⠙⠢" }, { "input": "beholder", "output": "⠆⠓⠕⠇⠙⠻" }, { "input": "beholders", "output": "⠆⠓⠕⠇⠙⠻⠎" }, { "input": "beholding", "output": "⠆⠓⠕⠇⠙⠬" }, { "input": "beholds", "output": "⠆⠓⠕⠇⠙⠎" }, { "input": "behoove", "output": "⠆⠓⠕⠕⠧⠑" }, { "input": "behooved", "output": "⠆⠓⠕⠕⠧⠫" }, { "input": "behooves", "output": "⠆⠓⠕⠕⠧⠑⠎" }, { "input": "behooving", "output": "⠆⠓⠕⠕⠧⠬" }, { "input": "beige", "output": "⠃⠑⠊⠛⠑" }, { "input": "being", "output": "⠆⠬" }, { "input": "beings", "output": "⠆⠬⠎" }, { "input": "belabor", "output": "⠆⠇â â ƒâ •â —" }, { "input": "belabored", "output": "⠆⠇â â ƒâ •â —â «" }, { "input": "belaboring", "output": "⠆⠇â â ƒâ •â —â ¬" }, { "input": "belabors", "output": "⠆⠇â â ƒâ •â —â Ž" }, { "input": "belated", "output": "⠆⠇â â žâ «" }, { "input": "belatedly", "output": "⠆⠇â â žâ «â ‡â ½" }, { "input": "belay", "output": "⠆⠇â â ½" }, { "input": "belayed", "output": "⠆⠇â â ½â «" }, { "input": "belaying", "output": "⠆⠇â â ½â ¬" }, { "input": "belays", "output": "⠆⠇â â ½â Ž" }, { "input": "belch", "output": "⠃⠑⠇⠡" }, { "input": "belched", "output": "⠃⠑⠇⠡⠫" }, { "input": "belches", "output": "⠃⠑⠇⠡⠑⠎" }, { "input": "belching", "output": "⠃⠑⠇⠡⠬" }, { "input": "beleaguer", "output": "⠆⠇⠂⠛⠥⠻" }, { "input": "beleaguered", "output": "⠆⠇⠂⠛⠥⠻⠫" }, { "input": "beleaguering", "output": "⠆⠇⠂⠛⠥⠻⠬" }, { "input": "beleaguers", "output": "⠆⠇⠂⠛⠥⠻⠎" }, { "input": "belfries", "output": "⠃⠑⠇⠋⠗⠊⠑⠎" }, { "input": "belfry", "output": "⠃⠑⠇⠋⠗⠽" }, { "input": "belie", "output": "⠆⠇⠊⠑" }, { "input": "belied", "output": "⠆⠇⠊⠫" }, { "input": "belief", "output": "⠆⠇⠊⠑⠋" }, { "input": "beliefs", "output": "⠆⠇⠊⠑⠋⠎" }, { "input": "belies", "output": "⠆⠇⠊⠑⠎" }, { "input": "believable", "output": "⠆⠇⠊⠑⠧â â ƒâ ‡â ‘" }, { "input": "believe", "output": "⠆⠇⠊⠑⠧⠑" }, { "input": "believed", "output": "⠆⠇⠊⠑⠧⠫" }, { "input": "believer", "output": "⠆⠇⠊⠑⠧⠻" }, { "input": "believers", "output": "⠆⠇⠊⠑⠧⠻⠎" }, { "input": "believes", "output": "⠆⠇⠊⠑⠧⠑⠎" }, { "input": "believing", "output": "⠆⠇⠊⠑⠧⠬" }, { "input": "belittle", "output": "⠆⠇⠇" }, { "input": "belittled", "output": "⠆⠇⠇⠙" }, { "input": "belittles", "output": "⠆⠇⠇⠎" }, { "input": "belittling", "output": "⠆⠇⠊⠞⠞⠇⠬" }, { "input": "bell", "output": "⠃⠑⠇⠇" }, { "input": "belladonna", "output": "⠃⠑⠇⠇â â ™â •â â â " }, { "input": "bellboy", "output": "⠃⠑⠇⠇⠃⠕⠽" }, { "input": "bellboys", "output": "⠃⠑⠇⠇⠃⠕⠽⠎" }, { "input": "belle", "output": "⠃⠑⠇⠇⠑" }, { "input": "belled", "output": "⠃⠑⠇⠇⠫" }, { "input": "belles", "output": "⠃⠑⠇⠇⠑⠎" }, { "input": "bellhop", "output": "⠃⠑⠇⠇⠓⠕â " }, { "input": "bellhops", "output": "⠃⠑⠇⠇⠓⠕â â Ž" }, { "input": "bellicose", "output": "⠃⠑⠇⠇⠊⠉⠕⠎⠑" }, { "input": "bellicosity", "output": "⠃⠑⠇⠇⠊⠉⠕⠎⠰⠽" }, { "input": "bellied", "output": "⠃⠑⠇⠇⠊⠫" }, { "input": "bellies", "output": "⠃⠑⠇⠇⠊⠑⠎" }, { "input": "belligerence", "output": "⠃⠑⠇⠇⠊⠛⠻⠰⠑" }, { "input": "belligerency", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠉⠽" }, { "input": "belligerent", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞" }, { "input": "belligerently", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞⠇⠽" }, { "input": "belligerents", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞⠎" }, { "input": "belling", "output": "⠃⠑⠇⠇⠬" }, { "input": "bellow", "output": "⠃⠑⠇⠇⠪" }, { "input": "bellowed", "output": "⠃⠑⠇⠇⠪⠫" }, { "input": "bellowing", "output": "⠃⠑⠇⠇⠪⠬" }, { "input": "bellows", "output": "⠃⠑⠇⠇⠪⠎" }, { "input": "bells", "output": "⠃⠑⠇⠇⠎" }, { "input": "bellwether", "output": "⠃⠑⠇⠇⠺⠑⠮⠗" }, { "input": "bellwethers", "output": "⠃⠑⠇⠇⠺⠑⠮⠗⠎" }, { "input": "belly", "output": "⠃⠑⠇⠇⠽" }, { "input": "bellyache", "output": "⠃⠑⠇⠇⠽â â ¡â ‘" }, { "input": "bellyached", "output": "⠃⠑⠇⠇⠽â â ¡â «" }, { "input": "bellyaches", "output": "⠃⠑⠇⠇⠽â â ¡â ‘â Ž" }, { "input": "bellyaching", "output": "⠃⠑⠇⠇⠽â â ¡â ¬" }, { "input": "bellybutton", "output": "⠃⠑⠇⠇⠽⠃⠥⠞⠞⠕â " }, { "input": "bellybuttons", "output": "⠃⠑⠇⠇⠽⠃⠥⠞⠞⠕â â Ž" }, { "input": "bellyful", "output": "⠃⠑⠇⠇⠽⠰⠇" }, { "input": "bellyfuls", "output": "⠃⠑⠇⠇⠽⠰⠇⠎" }, { "input": "bellying", "output": "⠃⠑⠇⠇⠽⠬" }, { "input": "belong", "output": "⠆⠇⠰⠛" }, { "input": "belonged", "output": "⠆⠇⠰⠛⠫" }, { "input": "belonging", "output": "⠆⠇⠰⠛⠬" }, { "input": "belongings", "output": "⠆⠇⠰⠛⠬⠎" }, { "input": "belongs", "output": "⠆⠇⠰⠛⠎" }, { "input": "beloved", "output": "⠆⠇⠕⠧⠫" }, { "input": "beloveds", "output": "⠆⠇⠕⠧⠫⠎" }, { "input": "below", "output": "⠆⠇" }, { "input": "belt", "output": "⠃⠑⠇⠞" }, { "input": "belted", "output": "⠃⠑⠇⠞⠫" }, { "input": "belting", "output": "⠃⠑⠇⠞⠬" }, { "input": "belts", "output": "⠃⠑⠇⠞⠎" }, { "input": "beltway", "output": "⠃⠑⠇⠞⠺â â ½" }, { "input": "beltways", "output": "⠃⠑⠇⠞⠺â â ½â Ž" }, { "input": "belying", "output": "⠆⠇⠽⠬" }, { "input": "bemoan", "output": "â †â â •â â " }, { "input": "bemoaned", "output": "â †â â •â â â «" }, { "input": "bemoaning", "output": "â †â â •â â â ¬" }, { "input": "bemoans", "output": "â †â â •â â â Ž" }, { "input": "bemuse", "output": "â †â â ¥â Žâ ‘" }, { "input": "bemused", "output": "â †â â ¥â Žâ «" }, { "input": "bemuses", "output": "â †â â ¥â Žâ ‘â Ž" }, { "input": "bemusing", "output": "â †â â ¥â Žâ ¬" }, { "input": "bench", "output": "⠃⠢⠡" }, { "input": "benched", "output": "⠃⠢⠡⠫" }, { "input": "benches", "output": "⠃⠢⠡⠑⠎" }, { "input": "benching", "output": "⠃⠢⠡⠬" }, { "input": "benchmark", "output": "⠃⠢⠡â â œâ …" }, { "input": "benchmarks", "output": "⠃⠢⠡â â œâ …â Ž" }, { "input": "bend", "output": "⠃⠢⠙" }, { "input": "bender", "output": "⠃⠢⠙⠻" }, { "input": "bending", "output": "⠃⠢⠙⠬" }, { "input": "bends", "output": "⠃⠢⠙⠎" }, { "input": "beneath", "output": "â †â " }, { "input": "benediction", "output": "⠃⠢⠫⠊⠉⠰â " }, { "input": "benedictions", "output": "⠃⠢⠫⠊⠉⠰â â Ž" }, { "input": "benefaction", "output": "⠃⠢⠑⠋â â ‰â °â " }, { "input": "benefactions", "output": "⠃⠢⠑⠋â â ‰â °â â Ž" }, { "input": "benefactor", "output": "⠃⠢⠑⠋â â ‰â žâ •â —" }, { "input": "benefactors", "output": "⠃⠢⠑⠋â â ‰â žâ •â —â Ž" }, { "input": "benefactress", "output": "⠃⠢⠑⠋â â ‰â žâ —â ‘â Žâ Ž" }, { "input": "benefactresses", "output": "⠃⠢⠑⠋â â ‰â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "benefice", "output": "⠃⠢⠑⠋⠊⠉⠑" }, { "input": "beneficence", "output": "â †â â ‘⠋⠊⠉⠰⠑" }, { "input": "beneficent", "output": "â †â â ‘⠋⠊⠉⠢⠞" }, { "input": "beneficently", "output": "â †â â ‘⠋⠊⠉⠢⠞⠇⠽" }, { "input": "benefices", "output": "⠃⠢⠑⠋⠊⠉⠑⠎" }, { "input": "beneficial", "output": "⠃⠢⠑⠋⠊⠉⠊â â ‡" }, { "input": "beneficially", "output": "⠃⠢⠑⠋⠊⠉⠊â â ‡â ‡â ½" }, { "input": "beneficiaries", "output": "⠃⠢⠑⠋⠊⠉⠊⠜⠊⠑⠎" }, { "input": "beneficiary", "output": "⠃⠢⠑⠋⠊⠉⠊⠜⠽" }, { "input": "benefit", "output": "⠃⠢⠑⠋⠊⠞" }, { "input": "benefited", "output": "⠃⠢⠑⠋⠊⠞⠫" }, { "input": "benefiting", "output": "⠃⠢⠑⠋⠊⠞⠬" }, { "input": "benefits", "output": "⠃⠢⠑⠋⠊⠞⠎" }, { "input": "benefitted", "output": "⠃⠢⠑⠋⠊⠞⠞⠫" }, { "input": "benefitting", "output": "⠃⠢⠑⠋⠊⠞⠞⠬" }, { "input": "benevolence", "output": "â †â â ‘⠧⠕⠇⠰⠑" }, { "input": "benevolences", "output": "â †â â ‘⠧⠕⠇⠰⠑⠎" }, { "input": "benevolent", "output": "â †â â ‘⠧⠕⠇⠢⠞" }, { "input": "benevolently", "output": "â †â â ‘⠧⠕⠇⠢⠞⠇⠽" }, { "input": "benighted", "output": "â †â â Šâ £â žâ «" }, { "input": "benign", "output": "â †â â Šâ ›â " }, { "input": "benignly", "output": "â †â â Šâ ›â â ‡â ½" }, { "input": "bent", "output": "⠃⠢⠞" }, { "input": "bents", "output": "⠃⠢⠞⠎" }, { "input": "benumb", "output": "â †â â ¥â â ƒ" }, { "input": "benumbed", "output": "â †â â ¥â â ƒâ «" }, { "input": "benumbing", "output": "â †â â ¥â â ƒâ ¬" }, { "input": "benumbs", "output": "â †â â ¥â â ƒâ Ž" }, { "input": "benzene", "output": "⠃⠢⠵⠢⠑" }, { "input": "bequeath", "output": "⠆⠟⠥⠂⠹" }, { "input": "bequeathed", "output": "⠆⠟⠥⠂⠮⠙" }, { "input": "bequeathing", "output": "⠆⠟⠥⠂⠹⠬" }, { "input": "bequeaths", "output": "⠆⠟⠥⠂⠹⠎" }, { "input": "bequest", "output": "⠆⠟⠥⠑⠌" }, { "input": "bequests", "output": "⠆⠟⠥⠑⠌⠎" }, { "input": "berate", "output": "⠆⠗â â žâ ‘" }, { "input": "berated", "output": "⠆⠗â â žâ «" }, { "input": "berates", "output": "⠆⠗â â žâ ‘â Ž" }, { "input": "berating", "output": "⠆⠗â â žâ ¬" }, { "input": "bereave", "output": "⠆⠗⠂⠧⠑" }, { "input": "bereaved", "output": "⠆⠗⠂⠧⠫" }, { "input": "bereavement", "output": "⠆⠗⠂⠧⠑⠰⠞" }, { "input": "bereavements", "output": "⠆⠗⠂⠧⠑⠰⠞⠎" }, { "input": "bereaves", "output": "⠆⠗⠂⠧⠑⠎" }, { "input": "bereaving", "output": "⠆⠗⠂⠧⠬" }, { "input": "bereft", "output": "⠆⠗⠑⠋⠞" }, { "input": "beret", "output": "⠃⠻⠑⠞" }, { "input": "berets", "output": "⠃⠻⠑⠞⠎" }, { "input": "berg", "output": "⠃⠻⠛" }, { "input": "bergs", "output": "⠃⠻⠛⠎" }, { "input": "beriberi", "output": "⠃⠻⠊⠃⠻⠊" }, { "input": "berm", "output": "⠃⠻â " }, { "input": "berms", "output": "⠃⠻â â Ž" }, { "input": "berried", "output": "⠃⠻⠗⠊⠫" }, { "input": "berries", "output": "⠃⠻⠗⠊⠑⠎" }, { "input": "berry", "output": "⠃⠻⠗⠽" }, { "input": "berrying", "output": "⠃⠻⠗⠽⠬" }, { "input": "berserk", "output": "⠃⠻⠎⠻⠅" }, { "input": "berth", "output": "⠃⠻⠹" }, { "input": "berthed", "output": "⠃⠻⠮⠙" }, { "input": "berthing", "output": "⠃⠻⠹⠬" }, { "input": "berths", "output": "⠃⠻⠹⠎" }, { "input": "beryl", "output": "⠃⠻⠽⠇" }, { "input": "beryllium", "output": "⠃⠻⠽⠇⠇⠊⠥â " }, { "input": "beryls", "output": "⠃⠻⠽⠇⠎" }, { "input": "beseech", "output": "⠆⠎⠑⠑⠡" }, { "input": "beseeched", "output": "⠆⠎⠑⠑⠡⠫" }, { "input": "beseeches", "output": "⠆⠎⠑⠑⠡⠑⠎" }, { "input": "beseeching", "output": "⠆⠎⠑⠑⠡⠬" }, { "input": "beset", "output": "⠆⠎⠑⠞" }, { "input": "besets", "output": "⠆⠎⠑⠞⠎" }, { "input": "besetting", "output": "⠆⠎⠑⠞⠞⠬" }, { "input": "beside", "output": "⠆⠎" }, { "input": "besides", "output": "⠆⠎⠎" }, { "input": "besiege", "output": "⠆⠎⠊⠑⠛⠑" }, { "input": "besieged", "output": "⠆⠎⠊⠑⠛⠫" }, { "input": "besieger", "output": "⠆⠎⠊⠑⠛⠻" }, { "input": "besiegers", "output": "⠆⠎⠊⠑⠛⠻⠎" }, { "input": "besieges", "output": "⠆⠎⠊⠑⠛⠑⠎" }, { "input": "besieging", "output": "⠆⠎⠊⠑⠛⠬" }, { "input": "besmirch", "output": "⠆⠎â â Šâ —â ¡" }, { "input": "besmirched", "output": "⠆⠎â â Šâ —â ¡â «" }, { "input": "besmirches", "output": "⠆⠎â â Šâ —â ¡â ‘â Ž" }, { "input": "besmirching", "output": "⠆⠎â â Šâ —â ¡â ¬" }, { "input": "besom", "output": "⠃⠑⠎⠕â " }, { "input": "besoms", "output": "⠃⠑⠎⠕â â Ž" }, { "input": "besot", "output": "⠆⠎⠕⠞" }, { "input": "besots", "output": "⠆⠎⠕⠞⠎" }, { "input": "besotted", "output": "⠆⠎⠕⠞⠞⠫" }, { "input": "besotting", "output": "⠆⠎⠕⠞⠞⠬" }, { "input": "besought", "output": "⠆⠎â â ³" }, { "input": "bespeak", "output": "⠆⠎â â ‚â …" }, { "input": "bespeaking", "output": "⠆⠎â â ‚â …â ¬" }, { "input": "bespeaks", "output": "⠆⠎â â ‚â …â Ž" }, { "input": "bespoke", "output": "⠆⠎â â •â …â ‘" }, { "input": "bespoken", "output": "⠆⠎â â •â …â ¢" }, { "input": "best", "output": "⠃⠑⠌" }, { "input": "bested", "output": "⠃⠑⠌⠫" }, { "input": "bestial", "output": "⠃⠑⠌⠊â â ‡" }, { "input": "bestiality", "output": "⠃⠑⠌⠊â â ‡â °â ½" }, { "input": "bestiaries", "output": "⠃⠑⠌⠊⠜⠊⠑⠎" }, { "input": "bestiary", "output": "⠃⠑⠌⠊⠜⠽" }, { "input": "besting", "output": "⠃⠑⠌⠬" }, { "input": "bestir", "output": "⠆⠌⠊⠗" }, { "input": "bestirred", "output": "⠆⠌⠊⠗⠗⠫" }, { "input": "bestirring", "output": "⠆⠌⠊⠗⠗⠬" }, { "input": "bestirs", "output": "⠆⠌⠊⠗⠎" }, { "input": "bestow", "output": "⠆⠌⠪" }, { "input": "bestowal", "output": "⠆⠌⠪â â ‡" }, { "input": "bestowals", "output": "⠆⠌⠪â â ‡â Ž" }, { "input": "bestowed", "output": "⠆⠌⠪⠫" }, { "input": "bestowing", "output": "⠆⠌⠪⠬" }, { "input": "bestows", "output": "⠆⠌⠪⠎" }, { "input": "bestrid", "output": "⠆⠌⠗⠊⠙" }, { "input": "bestridden", "output": "⠆⠌⠗⠊⠙⠙⠢" }, { "input": "bestride", "output": "⠆⠌⠗⠊⠙⠑" }, { "input": "bestrides", "output": "⠆⠌⠗⠊⠙⠑⠎" }, { "input": "bestriding", "output": "⠆⠌⠗⠊⠙⠬" }, { "input": "bestrode", "output": "⠆⠌⠗⠕⠙⠑" }, { "input": "bests", "output": "⠃⠑⠌⠎" }, { "input": "bestseller", "output": "⠃⠑⠌⠎⠑⠇⠇⠻" }, { "input": "bestsellers", "output": "⠃⠑⠌⠎⠑⠇⠇⠻⠎" }, { "input": "bet", "output": "⠃⠑⠞" }, { "input": "beta", "output": "⠃⠑⠞â " }, { "input": "betake", "output": "⠆⠞â â …â ‘" }, { "input": "betaken", "output": "⠆⠞â â …â ¢" }, { "input": "betakes", "output": "⠆⠞â â …â ‘â Ž" }, { "input": "betaking", "output": "⠆⠞â â …â ¬" }, { "input": "betas", "output": "⠃⠑⠞â â Ž" }, { "input": "betcha", "output": "⠃⠑⠞⠡â " }, { "input": "bethink", "output": "⠃⠑⠹⠔⠅" }, { "input": "bethinking", "output": "⠃⠑⠹⠔⠅⠬" }, { "input": "bethinks", "output": "⠃⠑⠹⠔⠅⠎" }, { "input": "bethought", "output": "⠆⠹â â ³" }, { "input": "betide", "output": "⠆⠞⠊⠙⠑" }, { "input": "betided", "output": "⠆⠞⠊⠙⠫" }, { "input": "betides", "output": "⠆⠞⠊⠙⠑⠎" }, { "input": "betiding", "output": "⠆⠞⠊⠙⠬" }, { "input": "betoken", "output": "⠆⠞⠕⠅⠢" }, { "input": "betokened", "output": "⠆⠞⠕⠅⠢⠫" }, { "input": "betokening", "output": "⠆⠞⠕⠅⠢⠬" }, { "input": "betokens", "output": "⠆⠞⠕⠅⠢⠎" }, { "input": "betook", "output": "⠆⠞⠕⠕⠅" }, { "input": "betray", "output": "⠆⠞⠗â â ½" }, { "input": "betrayal", "output": "⠆⠞⠗â â ½â â ‡" }, { "input": "betrayals", "output": "⠆⠞⠗â â ½â â ‡â Ž" }, { "input": "betrayed", "output": "⠆⠞⠗â â ½â «" }, { "input": "betrayer", "output": "⠆⠞⠗â â ½â »" }, { "input": "betrayers", "output": "⠆⠞⠗â â ½â »â Ž" }, { "input": "betraying", "output": "⠆⠞⠗â â ½â ¬" }, { "input": "betrays", "output": "⠆⠞⠗â â ½â Ž" }, { "input": "betroth", "output": "⠆⠞⠗⠕⠹" }, { "input": "betrothal", "output": "⠆⠞⠗⠕⠹â â ‡" }, { "input": "betrothals", "output": "⠆⠞⠗⠕⠹â â ‡â Ž" }, { "input": "betrothed", "output": "⠆⠞⠗⠕⠮⠙" }, { "input": "betrothing", "output": "⠆⠞⠗⠕⠹⠬" }, { "input": "betroths", "output": "⠆⠞⠗⠕⠹⠎" }, { "input": "bets", "output": "⠃⠑⠞⠎" }, { "input": "betted", "output": "⠃⠑⠞⠞⠫" }, { "input": "better", "output": "⠃⠑⠞⠞⠻" }, { "input": "bettered", "output": "⠃⠑⠞⠞⠻⠫" }, { "input": "bettering", "output": "⠃⠑⠞⠞⠻⠬" }, { "input": "betterment", "output": "⠃⠑⠞⠞⠻⠰⠞" }, { "input": "betters", "output": "⠃⠑⠞⠞⠻⠎" }, { "input": "betting", "output": "⠃⠑⠞⠞⠬" }, { "input": "bettor", "output": "⠃⠑⠞⠞⠕⠗" }, { "input": "bettors", "output": "⠃⠑⠞⠞⠕⠗⠎" }, { "input": "between", "output": "⠆⠞" }, { "input": "betwixt", "output": "⠆⠞⠺⠊⠭⠞" }, { "input": "bevel", "output": "⠃⠑⠧⠑⠇" }, { "input": "beveled", "output": "⠃⠑⠧⠑⠇⠫" }, { "input": "beveling", "output": "⠃⠑⠧⠑⠇⠬" }, { "input": "bevelled", "output": "⠃⠑⠧⠑⠇⠇⠫" }, { "input": "bevelling", "output": "⠃⠑⠧⠑⠇⠇⠬" }, { "input": "bevels", "output": "⠃⠑⠧⠑⠇⠎" }, { "input": "beverage", "output": "â ƒâ â ‘â â ›â ‘" }, { "input": "beverages", "output": "â ƒâ â ‘â â ›â ‘â Ž" }, { "input": "bevies", "output": "⠃⠑⠧⠊⠑⠎" }, { "input": "bevy", "output": "⠃⠑⠧⠽" }, { "input": "bewail", "output": "⠆⠺â â Šâ ‡" }, { "input": "bewailed", "output": "⠆⠺â â Šâ ‡â «" }, { "input": "bewailing", "output": "⠆⠺â â Šâ ‡â ¬" }, { "input": "bewails", "output": "⠆⠺â â Šâ ‡â Ž" }, { "input": "beware", "output": "⠆⠺⠜⠑" }, { "input": "bewared", "output": "⠆⠺⠜⠫" }, { "input": "bewares", "output": "⠆⠺⠜⠑⠎" }, { "input": "bewaring", "output": "⠆⠺⠜⠬" }, { "input": "bewilder", "output": "⠆⠺⠊⠇⠙⠻" }, { "input": "bewildered", "output": "⠆⠺⠊⠇⠙⠻⠫" }, { "input": "bewildering", "output": "⠆⠺⠊⠇⠙⠻⠬" }, { "input": "bewilderment", "output": "⠆⠺⠊⠇⠙⠻⠰⠞" }, { "input": "bewilders", "output": "⠆⠺⠊⠇⠙⠻⠎" }, { "input": "bewitch", "output": "⠆⠺⠊⠞⠡" }, { "input": "bewitched", "output": "⠆⠺⠊⠞⠡⠫" }, { "input": "bewitches", "output": "⠆⠺⠊⠞⠡⠑⠎" }, { "input": "bewitching", "output": "⠆⠺⠊⠞⠡⠬" }, { "input": "beyond", "output": "⠆⠽" }, { "input": "biannual", "output": "⠃⠊â â â â ¥â â ‡" }, { "input": "biannually", "output": "⠃⠊â â â â ¥â â ‡â ‡â ½" }, { "input": "bias", "output": "⠃⠊â â Ž" }, { "input": "biased", "output": "⠃⠊â â Žâ «" }, { "input": "biases", "output": "⠃⠊â â Žâ ‘â Ž" }, { "input": "biasing", "output": "⠃⠊â â Žâ ¬" }, { "input": "biassed", "output": "⠃⠊â â Žâ Žâ «" }, { "input": "biassing", "output": "⠃⠊â â Žâ Žâ ¬" }, { "input": "biathlon", "output": "⠃⠊â â ¹â ‡â •â " }, { "input": "biathlons", "output": "⠃⠊â â ¹â ‡â •â â Ž" }, { "input": "bib", "output": "⠃⠊⠃" }, { "input": "bible", "output": "⠃⠊⠃⠇⠑" }, { "input": "bibles", "output": "⠃⠊⠃⠇⠑⠎" }, { "input": "biblical", "output": "⠃⠊⠃⠇⠊⠉â â ‡" }, { "input": "bibliographer", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â »" }, { "input": "bibliographers", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “⠻⠎" }, { "input": "bibliographic", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â Šâ ‰" }, { "input": "bibliographical", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "bibliographies", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "bibliography", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â ½" }, { "input": "bibliophile", "output": "⠃⠊⠃⠇⠊⠕â â “⠊⠇⠑" }, { "input": "bibliophiles", "output": "⠃⠊⠃⠇⠊⠕â â “⠊⠇⠑⠎" }, { "input": "bibs", "output": "⠃⠊⠃⠎" }, { "input": "bibulous", "output": "⠃⠊⠃⠥⠇⠳⠎" }, { "input": "bicameral", "output": "⠃⠊⠉â â â »â â ‡" }, { "input": "bicentennial", "output": "⠃⠊⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "bicentennials", "output": "⠃⠊⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "bicep", "output": "⠃⠊⠉⠑â " }, { "input": "biceps", "output": "⠃⠊⠉⠑â â Ž" }, { "input": "bicepses", "output": "⠃⠊⠉⠑â â Žâ ‘â Ž" }, { "input": "bicker", "output": "⠃⠊⠉⠅⠻" }, { "input": "bickered", "output": "⠃⠊⠉⠅⠻⠫" }, { "input": "bickering", "output": "⠃⠊⠉⠅⠻⠬" }, { "input": "bickers", "output": "⠃⠊⠉⠅⠻⠎" }, { "input": "bicuspid", "output": "⠃⠊⠉⠥⠎â â Šâ ™" }, { "input": "bicuspids", "output": "⠃⠊⠉⠥⠎â â Šâ ™â Ž" }, { "input": "bicycle", "output": "⠃⠊⠉⠽⠉⠇⠑" }, { "input": "bicycled", "output": "⠃⠊⠉⠽⠉⠇⠫" }, { "input": "bicycles", "output": "⠃⠊⠉⠽⠉⠇⠑⠎" }, { "input": "bicycling", "output": "⠃⠊⠉⠽⠉⠇⠬" }, { "input": "bicyclist", "output": "⠃⠊⠉⠽⠉⠇⠊⠌" }, { "input": "bicyclists", "output": "⠃⠊⠉⠽⠉⠇⠊⠌⠎" }, { "input": "bid", "output": "⠃⠊⠙" }, { "input": "bidden", "output": "⠃⠊⠙⠙⠢" }, { "input": "bidder", "output": "⠃⠊⠙⠙⠻" }, { "input": "bidders", "output": "⠃⠊⠙⠙⠻⠎" }, { "input": "biddies", "output": "⠃⠊⠙⠙⠊⠑⠎" }, { "input": "bidding", "output": "⠃⠊⠙⠙⠬" }, { "input": "biddy", "output": "⠃⠊⠙⠙⠽" }, { "input": "bide", "output": "⠃⠊⠙⠑" }, { "input": "bided", "output": "⠃⠊⠙⠫" }, { "input": "bides", "output": "⠃⠊⠙⠑⠎" }, { "input": "bidet", "output": "⠃⠊⠙⠑⠞" }, { "input": "bidets", "output": "⠃⠊⠙⠑⠞⠎" }, { "input": "biding", "output": "⠃⠊⠙⠬" }, { "input": "bidirectional", "output": "⠃⠊⠙⠊⠗⠑⠉⠰â â â ‡" }, { "input": "bids", "output": "⠃⠊⠙⠎" }, { "input": "biennial", "output": "⠃⠊⠢â â Šâ â ‡" }, { "input": "biennially", "output": "⠃⠊⠢â â Šâ â ‡â ‡â ½" }, { "input": "biennials", "output": "⠃⠊⠢â â Šâ â ‡â Ž" }, { "input": "bier", "output": "⠃⠊⠻" }, { "input": "biers", "output": "⠃⠊⠻⠎" }, { "input": "bifocal", "output": "⠃⠊⠋⠕⠉â â ‡" }, { "input": "bifocals", "output": "⠃⠊⠋⠕⠉â â ‡â Ž" }, { "input": "bifurcate", "output": "⠃⠊⠋⠥⠗⠉â â žâ ‘" }, { "input": "bifurcated", "output": "⠃⠊⠋⠥⠗⠉â â žâ «" }, { "input": "bifurcates", "output": "⠃⠊⠋⠥⠗⠉â â žâ ‘â Ž" }, { "input": "bifurcating", "output": "⠃⠊⠋⠥⠗⠉â â žâ ¬" }, { "input": "bifurcation", "output": "⠃⠊⠋⠥⠗⠉â â °â " }, { "input": "bifurcations", "output": "⠃⠊⠋⠥⠗⠉â â °â â Ž" }, { "input": "big", "output": "⠃⠊⠛" }, { "input": "bigamist", "output": "⠃⠊⠛â â â Šâ Œ" }, { "input": "bigamists", "output": "⠃⠊⠛â â â Šâ Œâ Ž" }, { "input": "bigamous", "output": "⠃⠊⠛â â â ³â Ž" }, { "input": "bigamy", "output": "⠃⠊⠛â â â ½" }, { "input": "bigger", "output": "⠃⠊⠶⠻" }, { "input": "biggest", "output": "⠃⠊⠶⠑⠌" }, { "input": "biggie", "output": "⠃⠊⠶⠊⠑" }, { "input": "biggies", "output": "⠃⠊⠶⠊⠑⠎" }, { "input": "bighearted", "output": "⠃⠊⠛⠓⠑⠜⠞⠫" }, { "input": "bighorn", "output": "⠃⠊⠛⠓⠕⠗â " }, { "input": "bighorns", "output": "⠃⠊⠛⠓⠕⠗â â Ž" }, { "input": "bight", "output": "⠃⠊⠣⠞" }, { "input": "bights", "output": "⠃⠊⠣⠞⠎" }, { "input": "bigmouth", "output": "⠃⠊⠛â â ³â ¹" }, { "input": "bigmouths", "output": "⠃⠊⠛â â ³â ¹â Ž" }, { "input": "bigness", "output": "⠃⠊⠛⠰⠎" }, { "input": "bigot", "output": "⠃⠊⠛⠕⠞" }, { "input": "bigoted", "output": "⠃⠊⠛⠕⠞⠫" }, { "input": "bigotries", "output": "⠃⠊⠛⠕⠞⠗⠊⠑⠎" }, { "input": "bigotry", "output": "⠃⠊⠛⠕⠞⠗⠽" }, { "input": "bigots", "output": "⠃⠊⠛⠕⠞⠎" }, { "input": "bigwig", "output": "⠃⠊⠛⠺⠊⠛" }, { "input": "bigwigs", "output": "⠃⠊⠛⠺⠊⠛⠎" }, { "input": "bike", "output": "⠃⠊⠅⠑" }, { "input": "biked", "output": "⠃⠊⠅⠫" }, { "input": "biker", "output": "⠃⠊⠅⠻" }, { "input": "bikers", "output": "⠃⠊⠅⠻⠎" }, { "input": "bikes", "output": "⠃⠊⠅⠑⠎" }, { "input": "biking", "output": "⠃⠊⠅⠬" }, { "input": "bikini", "output": "⠃⠊⠅⠔⠊" }, { "input": "bikinis", "output": "⠃⠊⠅⠔⠊⠎" }, { "input": "bilateral", "output": "⠃⠊⠇â â žâ »â â ‡" }, { "input": "bilaterally", "output": "⠃⠊⠇â â žâ »â â ‡â ‡â ½" }, { "input": "bile", "output": "⠃⠊⠇⠑" }, { "input": "bilge", "output": "⠃⠊⠇⠛⠑" }, { "input": "bilges", "output": "⠃⠊⠇⠛⠑⠎" }, { "input": "bilingual", "output": "⠃⠊⠇⠬⠥â â ‡" }, { "input": "bilinguals", "output": "⠃⠊⠇⠬⠥â â ‡â Ž" }, { "input": "bilious", "output": "⠃⠊⠇⠊⠳⠎" }, { "input": "bilk", "output": "⠃⠊⠇⠅" }, { "input": "bilked", "output": "⠃⠊⠇⠅⠫" }, { "input": "bilking", "output": "⠃⠊⠇⠅⠬" }, { "input": "bilks", "output": "⠃⠊⠇⠅⠎" }, { "input": "bill", "output": "⠃⠊⠇⠇" }, { "input": "billboard", "output": "⠃⠊⠇⠇⠃⠕⠜⠙" }, { "input": "billboards", "output": "⠃⠊⠇⠇⠃⠕⠜⠙⠎" }, { "input": "billed", "output": "⠃⠊⠇⠇⠫" }, { "input": "billet", "output": "⠃⠊⠇⠇⠑⠞" }, { "input": "billeted", "output": "⠃⠊⠇⠇⠑⠞⠫" }, { "input": "billeting", "output": "⠃⠊⠇⠇⠑⠞⠬" }, { "input": "billets", "output": "⠃⠊⠇⠇⠑⠞⠎" }, { "input": "billfold", "output": "⠃⠊⠇⠇⠋⠕⠇⠙" }, { "input": "billfolds", "output": "⠃⠊⠇⠇⠋⠕⠇⠙⠎" }, { "input": "billiards", "output": "⠃⠊⠇⠇⠊⠜⠙⠎" }, { "input": "billies", "output": "⠃⠊⠇⠇⠊⠑⠎" }, { "input": "billing", "output": "⠃⠊⠇⠇⠬" }, { "input": "billings", "output": "⠃⠊⠇⠇⠬⠎" }, { "input": "billion", "output": "⠃⠊⠇⠇⠊⠕â " }, { "input": "billionaire", "output": "⠃⠊⠇⠇⠊⠕â â â Šâ —â ‘" }, { "input": "billionaires", "output": "⠃⠊⠇⠇⠊⠕â â â Šâ —â ‘â Ž" }, { "input": "billions", "output": "⠃⠊⠇⠇⠊⠕â â Ž" }, { "input": "billionth", "output": "⠃⠊⠇⠇⠊⠕â â ¹" }, { "input": "billionths", "output": "⠃⠊⠇⠇⠊⠕â â ¹â Ž" }, { "input": "billow", "output": "⠃⠊⠇⠇⠪" }, { "input": "billowed", "output": "⠃⠊⠇⠇⠪⠫" }, { "input": "billowier", "output": "⠃⠊⠇⠇⠪⠊⠻" }, { "input": "billowiest", "output": "⠃⠊⠇⠇⠪⠊⠑⠌" }, { "input": "billowing", "output": "⠃⠊⠇⠇⠪⠬" }, { "input": "billows", "output": "⠃⠊⠇⠇⠪⠎" }, { "input": "billowy", "output": "⠃⠊⠇⠇⠪⠽" }, { "input": "bills", "output": "⠃⠊⠇⠇⠎" }, { "input": "billy", "output": "⠃⠊⠇⠇⠽" }, { "input": "bimbo", "output": "⠃⠊â â ƒâ •" }, { "input": "bimboes", "output": "⠃⠊â â ƒâ •â ‘â Ž" }, { "input": "bimbos", "output": "⠃⠊â â ƒâ •â Ž" }, { "input": "bimonthlies", "output": "⠃⠊â â •â â ¹â ‡â Šâ ‘â Ž" }, { "input": "bimonthly", "output": "⠃⠊â â •â â ¹â ‡â ½" }, { "input": "bin", "output": "⠃⠔" }, { "input": "binaries", "output": "⠃⠔⠜⠊⠑⠎" }, { "input": "binary", "output": "⠃⠔⠜⠽" }, { "input": "bind", "output": "⠃⠔⠙" }, { "input": "binder", "output": "⠃⠔⠙⠻" }, { "input": "binderies", "output": "⠃⠔⠙⠻⠊⠑⠎" }, { "input": "binders", "output": "⠃⠔⠙⠻⠎" }, { "input": "bindery", "output": "⠃⠔⠙⠻⠽" }, { "input": "binding", "output": "⠃⠔⠙⠬" }, { "input": "bindings", "output": "⠃⠔⠙⠬⠎" }, { "input": "binds", "output": "⠃⠔⠙⠎" }, { "input": "binge", "output": "⠃⠬⠑" }, { "input": "binged", "output": "⠃⠬⠫" }, { "input": "bingeing", "output": "⠃⠬⠑⠬" }, { "input": "binges", "output": "⠃⠬⠑⠎" }, { "input": "binging", "output": "⠃⠬⠬" }, { "input": "bingo", "output": "⠃⠬⠕" }, { "input": "binnacle", "output": "⠃⠔â â â ‰â ‡â ‘" }, { "input": "binnacles", "output": "⠃⠔â â â ‰â ‡â ‘â Ž" }, { "input": "binned", "output": "⠃⠔â â «" }, { "input": "binning", "output": "⠃⠔â â ¬" }, { "input": "binocular", "output": "⠃⠔⠕⠉⠥⠇⠜" }, { "input": "binoculars", "output": "⠃⠔⠕⠉⠥⠇⠜⠎" }, { "input": "binomial", "output": "⠃⠔⠕â â Šâ â ‡" }, { "input": "binomials", "output": "⠃⠔⠕â â Šâ â ‡â Ž" }, { "input": "bins", "output": "⠃⠔⠎" }, { "input": "biochemical", "output": "⠃⠊⠕⠡⠑â â Šâ ‰â â ‡" }, { "input": "biochemicals", "output": "⠃⠊⠕⠡⠑â â Šâ ‰â â ‡â Ž" }, { "input": "biochemist", "output": "⠃⠊⠕⠡⠑â â Šâ Œ" }, { "input": "biochemistry", "output": "⠃⠊⠕⠡⠑â â Šâ Œâ —â ½" }, { "input": "biochemists", "output": "⠃⠊⠕⠡⠑â â Šâ Œâ Ž" }, { "input": "biodegradable", "output": "⠃⠊⠕⠙⠑⠛⠗â â ™â â ƒâ ‡â ‘" }, { "input": "biodiversity", "output": "⠃⠊⠕⠙⠊⠧⠻⠎⠰⠽" }, { "input": "biofeedback", "output": "⠃⠊⠕⠋⠑⠫⠃â â ‰â …" }, { "input": "biographer", "output": "⠃⠊⠕⠛⠗â â â “â »" }, { "input": "biographers", "output": "⠃⠊⠕⠛⠗â â â “⠻⠎" }, { "input": "biographical", "output": "⠃⠊⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "biographies", "output": "⠃⠊⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "biography", "output": "⠃⠊⠕⠛⠗â â â “â ½" }, { "input": "biological", "output": "⠃⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "biologically", "output": "⠃⠊⠕⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "biologist", "output": "⠃⠊⠕⠇⠕⠛⠊⠌" }, { "input": "biologists", "output": "⠃⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "biology", "output": "⠃⠊⠕⠇⠕⠛⠽" }, { "input": "bionic", "output": "⠃⠊⠕â â Šâ ‰" }, { "input": "biophysicist", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠊⠌" }, { "input": "biophysicists", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠊⠌⠎" }, { "input": "biophysics", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠎" }, { "input": "biopsied", "output": "⠃⠊⠕â â Žâ Šâ «" }, { "input": "biopsies", "output": "⠃⠊⠕â â Žâ Šâ ‘â Ž" }, { "input": "biopsy", "output": "⠃⠊⠕â â Žâ ½" }, { "input": "biopsying", "output": "⠃⠊⠕â â Žâ ½â ¬" }, { "input": "biorhythm", "output": "⠃⠊⠕⠗⠓⠽⠹â " }, { "input": "biorhythms", "output": "⠃⠊⠕⠗⠓⠽⠹â â Ž" }, { "input": "biosphere", "output": "⠃⠊⠕⠎â â â “" }, { "input": "biospheres", "output": "⠃⠊⠕⠎â â â “â Ž" }, { "input": "biotechnology", "output": "⠃⠊⠕⠞⠑⠡â â •⠇⠕⠛⠽" }, { "input": "bipartisan", "output": "⠃⠊â â â Šâ Žâ â " }, { "input": "bipartite", "output": "⠃⠊â â â Šâ žâ ‘" }, { "input": "biped", "output": "⠃⠊â â «" }, { "input": "bipedal", "output": "⠃⠊â â «â â ‡" }, { "input": "bipeds", "output": "⠃⠊â â «â Ž" }, { "input": "biplane", "output": "⠃⠊â â ‡â â â ‘" }, { "input": "biplanes", "output": "⠃⠊â â ‡â â â ‘â Ž" }, { "input": "bipolar", "output": "⠃⠊â â •⠇⠜" }, { "input": "biracial", "output": "⠃⠊⠗â â ‰â Šâ â ‡" }, { "input": "birch", "output": "⠃⠊⠗⠡" }, { "input": "birched", "output": "⠃⠊⠗⠡⠫" }, { "input": "birches", "output": "⠃⠊⠗⠡⠑⠎" }, { "input": "birching", "output": "⠃⠊⠗⠡⠬" }, { "input": "bird", "output": "⠃⠊⠗⠙" }, { "input": "birdbath", "output": "⠃⠊⠗⠙⠃â â ¹" }, { "input": "birdbaths", "output": "⠃⠊⠗⠙⠃â â ¹â Ž" }, { "input": "birdbrained", "output": "⠃⠊⠗⠙⠃⠗â â ”â «" }, { "input": "birdcage", "output": "⠃⠊⠗⠙⠉â â ›â ‘" }, { "input": "birdcages", "output": "⠃⠊⠗⠙⠉â â ›â ‘â Ž" }, { "input": "birded", "output": "⠃⠊⠗⠙⠫" }, { "input": "birdhouse", "output": "⠃⠊⠗⠙⠓⠳⠎⠑" }, { "input": "birdhouses", "output": "⠃⠊⠗⠙⠓⠳⠎⠑⠎" }, { "input": "birdie", "output": "⠃⠊⠗⠙⠊⠑" }, { "input": "birdied", "output": "⠃⠊⠗⠙⠊⠫" }, { "input": "birdieing", "output": "⠃⠊⠗⠙⠊⠑⠬" }, { "input": "birdies", "output": "⠃⠊⠗⠙⠊⠑⠎" }, { "input": "birding", "output": "⠃⠊⠗⠙⠬" }, { "input": "birds", "output": "⠃⠊⠗⠙⠎" }, { "input": "birdseed", "output": "⠃⠊⠗⠙⠎⠑⠫" }, { "input": "birdwatcher", "output": "⠃⠊⠗⠙⠺â â žâ ¡â »" }, { "input": "birdwatchers", "output": "⠃⠊⠗⠙⠺â â žâ ¡â »â Ž" }, { "input": "biretta", "output": "⠃⠊⠗⠑⠞⠞â " }, { "input": "birettas", "output": "⠃⠊⠗⠑⠞⠞â â Ž" }, { "input": "birth", "output": "⠃⠊⠗⠹" }, { "input": "birthday", "output": "⠃⠊⠗⠹â â ™" }, { "input": "birthdays", "output": "⠃⠊⠗⠹â â ™â Ž" }, { "input": "birthed", "output": "⠃⠊⠗⠮⠙" }, { "input": "birthing", "output": "⠃⠊⠗⠹⠬" }, { "input": "birthmark", "output": "⠃⠊⠗⠹â â œâ …" }, { "input": "birthmarks", "output": "⠃⠊⠗⠹â â œâ …â Ž" }, { "input": "birthplace", "output": "⠃⠊⠗⠹â â ‡â â ‰â ‘" }, { "input": "birthplaces", "output": "⠃⠊⠗⠹â â ‡â â ‰â ‘â Ž" }, { "input": "birthrate", "output": "⠃⠊⠗⠹⠗â â žâ ‘" }, { "input": "birthrates", "output": "⠃⠊⠗⠹⠗â â žâ ‘â Ž" }, { "input": "birthright", "output": "⠃⠊⠗⠹â â —" }, { "input": "birthrights", "output": "⠃⠊⠗⠹â â —â Ž" }, { "input": "births", "output": "⠃⠊⠗⠹⠎" }, { "input": "birthstone", "output": "⠃⠊⠗⠹⠌â â •" }, { "input": "birthstones", "output": "⠃⠊⠗⠹⠌â â •â Ž" }, { "input": "biscuit", "output": "⠃⠊⠎⠉⠥⠊⠞" }, { "input": "biscuits", "output": "⠃⠊⠎⠉⠥⠊⠞⠎" }, { "input": "bisect", "output": "⠃⠊⠎⠑⠉⠞" }, { "input": "bisected", "output": "⠃⠊⠎⠑⠉⠞⠫" }, { "input": "bisecting", "output": "⠃⠊⠎⠑⠉⠞⠬" }, { "input": "bisection", "output": "⠃⠊⠎⠑⠉⠰â " }, { "input": "bisections", "output": "⠃⠊⠎⠑⠉⠰â â Ž" }, { "input": "bisector", "output": "⠃⠊⠎⠑⠉⠞⠕⠗" }, { "input": "bisectors", "output": "⠃⠊⠎⠑⠉⠞⠕⠗⠎" }, { "input": "bisects", "output": "⠃⠊⠎⠑⠉⠞⠎" }, { "input": "bisexual", "output": "⠃⠊⠎⠑⠭⠥â â ‡" }, { "input": "bisexuality", "output": "⠃⠊⠎⠑⠭⠥â â ‡â °â ½" }, { "input": "bisexuals", "output": "⠃⠊⠎⠑⠭⠥â â ‡â Ž" }, { "input": "bishop", "output": "⠃⠊⠩⠕â " }, { "input": "bishopric", "output": "⠃⠊⠩⠕â â —â Šâ ‰" }, { "input": "bishoprics", "output": "⠃⠊⠩⠕â â —⠊⠉⠎" }, { "input": "bishops", "output": "⠃⠊⠩⠕â â Ž" }, { "input": "bismuth", "output": "⠃⠊⠎â â ¥â ¹" }, { "input": "bison", "output": "⠃⠊⠎⠕â " }, { "input": "bisons", "output": "⠃⠊⠎⠕â â Ž" }, { "input": "bisque", "output": "⠃⠊⠎⠟⠥⠑" }, { "input": "bistro", "output": "⠃⠊⠌⠗⠕" }, { "input": "bistros", "output": "⠃⠊⠌⠗⠕⠎" }, { "input": "bit", "output": "⠃⠊⠞" }, { "input": "bitch", "output": "⠃⠊⠞⠡" }, { "input": "bitched", "output": "⠃⠊⠞⠡⠫" }, { "input": "bitches", "output": "⠃⠊⠞⠡⠑⠎" }, { "input": "bitchier", "output": "⠃⠊⠞⠡⠊⠻" }, { "input": "bitchiest", "output": "⠃⠊⠞⠡⠊⠑⠌" }, { "input": "bitching", "output": "⠃⠊⠞⠡⠬" }, { "input": "bitchy", "output": "⠃⠊⠞⠡⠽" }, { "input": "bite", "output": "⠃⠊⠞⠑" }, { "input": "bites", "output": "⠃⠊⠞⠑⠎" }, { "input": "biting", "output": "⠃⠊⠞⠬" }, { "input": "bitingly", "output": "⠃⠊⠞⠬⠇⠽" }, { "input": "bitmap", "output": "⠃⠊⠞â â â " }, { "input": "bits", "output": "⠃⠊⠞⠎" }, { "input": "bitten", "output": "⠃⠊⠞⠞⠢" }, { "input": "bitter", "output": "⠃⠊⠞⠞⠻" }, { "input": "bitterer", "output": "⠃⠊⠞⠞⠻⠻" }, { "input": "bitterest", "output": "⠃⠊⠞⠞⠻⠑⠌" }, { "input": "bitterly", "output": "⠃⠊⠞⠞⠻⠇⠽" }, { "input": "bittern", "output": "⠃⠊⠞⠞⠻â " }, { "input": "bitterness", "output": "⠃⠊⠞⠞⠻⠰⠎" }, { "input": "bitterns", "output": "⠃⠊⠞⠞⠻â â Ž" }, { "input": "bitters", "output": "⠃⠊⠞⠞⠻⠎" }, { "input": "bittersweet", "output": "⠃⠊⠞⠞⠻⠎⠺⠑⠑⠞" }, { "input": "bittersweets", "output": "⠃⠊⠞⠞⠻⠎⠺⠑⠑⠞⠎" }, { "input": "bitumen", "output": "⠃⠊⠞⠥â â ¢" }, { "input": "bituminous", "output": "⠃⠊⠞⠥â â ”⠳⠎" }, { "input": "bivalve", "output": "⠃⠊⠧â â ‡â §â ‘" }, { "input": "bivalves", "output": "⠃⠊⠧â â ‡â §â ‘â Ž" }, { "input": "bivouac", "output": "⠃⠊⠧⠳â â ‰" }, { "input": "bivouacked", "output": "⠃⠊⠧⠳â â ‰â …â «" }, { "input": "bivouacking", "output": "⠃⠊⠧⠳â â ‰â …â ¬" }, { "input": "bivouacs", "output": "⠃⠊⠧⠳â â ‰â Ž" }, { "input": "biweeklies", "output": "⠃⠊⠺⠑⠑⠅⠇⠊⠑⠎" }, { "input": "biweekly", "output": "⠃⠊⠺⠑⠑⠅⠇⠽" }, { "input": "bizarre", "output": "⠃⠊⠵⠜⠗⠑" }, { "input": "bizarrely", "output": "⠃⠊⠵⠜⠗⠑⠇⠽" }, { "input": "blab", "output": "⠃⠇â â ƒ" }, { "input": "blabbed", "output": "⠃⠇â â †â «" }, { "input": "blabbermouth", "output": "⠃⠇â â †â »â â ³â ¹" }, { "input": "blabbermouths", "output": "⠃⠇â â †â »â â ³â ¹â Ž" }, { "input": "blabbing", "output": "⠃⠇â â †â ¬" }, { "input": "blabs", "output": "⠃⠇â â ƒâ Ž" }, { "input": "black", "output": "⠃⠇â â ‰â …" }, { "input": "blackball", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡" }, { "input": "blackballed", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â «" }, { "input": "blackballing", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â ¬" }, { "input": "blackballs", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â Ž" }, { "input": "blackberries", "output": "⠃⠇â â ‰â …⠃⠻⠗⠊⠑⠎" }, { "input": "blackberry", "output": "⠃⠇â â ‰â …⠃⠻⠗⠽" }, { "input": "blackberrying", "output": "⠃⠇â â ‰â …⠃⠻⠗⠽⠬" }, { "input": "blackbird", "output": "⠃⠇â â ‰â …⠃⠊⠗⠙" }, { "input": "blackbirds", "output": "⠃⠇â â ‰â …⠃⠊⠗⠙⠎" }, { "input": "blackboard", "output": "⠃⠇â â ‰â …⠃⠕⠜⠙" }, { "input": "blackboards", "output": "⠃⠇â â ‰â …⠃⠕⠜⠙⠎" }, { "input": "blackcurrant", "output": "⠃⠇â â ‰â …⠉⠥⠗⠗â â â ž" }, { "input": "blacked", "output": "⠃⠇â â ‰â …â «" }, { "input": "blacken", "output": "⠃⠇â â ‰â …â ¢" }, { "input": "blackened", "output": "⠃⠇â â ‰â …⠢⠫" }, { "input": "blackening", "output": "⠃⠇â â ‰â …⠢⠬" }, { "input": "blackens", "output": "⠃⠇â â ‰â …⠢⠎" }, { "input": "blacker", "output": "⠃⠇â â ‰â …â »" }, { "input": "blackest", "output": "⠃⠇â â ‰â …â ‘â Œ" }, { "input": "blackguard", "output": "⠃⠇â â ‰â …⠛⠥⠜⠙" }, { "input": "blackguards", "output": "⠃⠇â â ‰â …⠛⠥⠜⠙⠎" }, { "input": "blackhead", "output": "⠃⠇â â ‰â …â “â ‚â ™" }, { "input": "blackheads", "output": "⠃⠇â â ‰â …⠓⠂⠙⠎" }, { "input": "blacking", "output": "⠃⠇â â ‰â …â ¬" }, { "input": "blackish", "output": "⠃⠇â â ‰â …â Šâ ©" }, { "input": "blackjack", "output": "⠃⠇â â ‰â …â šâ â ‰â …" }, { "input": "blackjacked", "output": "⠃⠇â â ‰â …â šâ â ‰â …â «" }, { "input": "blackjacking", "output": "⠃⠇â â ‰â …â šâ â ‰â …â ¬" }, { "input": "blackjacks", "output": "⠃⠇â â ‰â …â šâ â ‰â …â Ž" }, { "input": "blacklist", "output": "⠃⠇â â ‰â …⠇⠊⠌" }, { "input": "blacklisted", "output": "⠃⠇â â ‰â …⠇⠊⠌⠫" }, { "input": "blacklisting", "output": "⠃⠇â â ‰â …⠇⠊⠌⠬" }, { "input": "blacklists", "output": "⠃⠇â â ‰â …⠇⠊⠌⠎" }, { "input": "blackmail", "output": "⠃⠇â â ‰â …â â â Šâ ‡" }, { "input": "blackmailed", "output": "⠃⠇â â ‰â …â â â Šâ ‡â «" }, { "input": "blackmailer", "output": "⠃⠇â â ‰â …â â â Šâ ‡â »" }, { "input": "blackmailers", "output": "⠃⠇â â ‰â …â â â Šâ ‡â »â Ž" }, { "input": "blackmailing", "output": "⠃⠇â â ‰â …â â â Šâ ‡â ¬" }, { "input": "blackmails", "output": "⠃⠇â â ‰â …â â â Šâ ‡â Ž" }, { "input": "blackness", "output": "⠃⠇â â ‰â …â °â Ž" }, { "input": "blackout", "output": "⠃⠇â â ‰â …⠳⠞" }, { "input": "blackouts", "output": "⠃⠇â â ‰â …⠳⠞⠎" }, { "input": "blacks", "output": "⠃⠇â â ‰â …â Ž" }, { "input": "blacksmith", "output": "⠃⠇â â ‰â …â Žâ â Šâ ¹" }, { "input": "blacksmiths", "output": "⠃⠇â â ‰â …â Žâ â Šâ ¹â Ž" }, { "input": "blackthorn", "output": "⠃⠇â â ‰â …⠹⠕⠗â " }, { "input": "blackthorns", "output": "⠃⠇â â ‰â …⠹⠕⠗â â Ž" }, { "input": "blacktop", "output": "⠃⠇â â ‰â …â žâ •â " }, { "input": "blacktopped", "output": "⠃⠇â â ‰â …â žâ •â â â «" }, { "input": "blacktopping", "output": "⠃⠇â â ‰â …â žâ •â â â ¬" }, { "input": "blacktops", "output": "⠃⠇â â ‰â …â žâ •â â Ž" }, { "input": "bladder", "output": "⠃⠇â â ™â ™â »" }, { "input": "bladders", "output": "⠃⠇â â ™â ™â »â Ž" }, { "input": "blade", "output": "⠃⠇â â ™â ‘" }, { "input": "blades", "output": "⠃⠇â â ™â ‘â Ž" }, { "input": "blah", "output": "⠃⠇â â “" }, { "input": "blame", "output": "⠃⠇â â â ‘" }, { "input": "blamed", "output": "⠃⠇â â â «" }, { "input": "blameless", "output": "⠃⠇â â â ‘⠨⠎" }, { "input": "blamelessly", "output": "⠃⠇â â â ‘⠨⠎⠇⠽" }, { "input": "blamer", "output": "⠃⠇â â â »" }, { "input": "blames", "output": "⠃⠇â â â ‘â Ž" }, { "input": "blameworthy", "output": "⠃⠇â â â ‘⠺⠕⠗⠹⠽" }, { "input": "blaming", "output": "⠃⠇â â â ¬" }, { "input": "blanch", "output": "⠃⠇â â â ¡" }, { "input": "blanched", "output": "⠃⠇â â â ¡â «" }, { "input": "blanches", "output": "⠃⠇â â â ¡â ‘â Ž" }, { "input": "blanching", "output": "⠃⠇â â â ¡â ¬" }, { "input": "blancmange", "output": "⠃⠇â â â ‰â â â â ›â ‘" }, { "input": "bland", "output": "⠃⠇⠯" }, { "input": "blander", "output": "⠃⠇⠯⠻" }, { "input": "blandest", "output": "⠃⠇⠯⠑⠌" }, { "input": "blandishment", "output": "⠃⠇⠯⠊⠩⠰⠞" }, { "input": "blandishments", "output": "⠃⠇⠯⠊⠩⠰⠞⠎" }, { "input": "blandly", "output": "⠃⠇⠯⠇⠽" }, { "input": "blandness", "output": "⠃⠇⠯⠰⠎" }, { "input": "blank", "output": "⠃⠇â â â …" }, { "input": "blanked", "output": "⠃⠇â â â …â «" }, { "input": "blanker", "output": "⠃⠇â â â …â »" }, { "input": "blankest", "output": "⠃⠇â â â …â ‘â Œ" }, { "input": "blanket", "output": "⠃⠇â â â …â ‘â ž" }, { "input": "blanketed", "output": "⠃⠇â â â …â ‘â žâ «" }, { "input": "blanketing", "output": "⠃⠇â â â …â ‘â žâ ¬" }, { "input": "blankets", "output": "⠃⠇â â â …â ‘â žâ Ž" }, { "input": "blanking", "output": "⠃⠇â â â …â ¬" }, { "input": "blankly", "output": "⠃⠇â â â …⠇⠽" }, { "input": "blankness", "output": "⠃⠇â â â …â °â Ž" }, { "input": "blanks", "output": "⠃⠇â â â …â Ž" }, { "input": "blare", "output": "⠃⠇⠜⠑" }, { "input": "blared", "output": "⠃⠇⠜⠫" }, { "input": "blares", "output": "⠃⠇⠜⠑⠎" }, { "input": "blaring", "output": "⠃⠇⠜⠬" }, { "input": "blarney", "output": "⠃⠇⠜â â ‘â ½" }, { "input": "blarneyed", "output": "⠃⠇⠜â â ‘⠽⠫" }, { "input": "blarneying", "output": "⠃⠇⠜â â ‘⠽⠬" }, { "input": "blarneys", "output": "⠃⠇⠜â â ‘⠽⠎" }, { "input": "blaspheme", "output": "⠃⠇â â Žâ â “â ‘â â ‘" }, { "input": "blasphemed", "output": "⠃⠇â â Žâ â “â ‘â â «" }, { "input": "blasphemer", "output": "⠃⠇â â Žâ â “â ‘â â »" }, { "input": "blasphemers", "output": "⠃⠇â â Žâ â “â ‘â â »â Ž" }, { "input": "blasphemes", "output": "⠃⠇â â Žâ â “â ‘â â ‘â Ž" }, { "input": "blasphemies", "output": "⠃⠇â â Žâ â “â ‘â â Šâ ‘â Ž" }, { "input": "blaspheming", "output": "⠃⠇â â Žâ â “â ‘â â ¬" }, { "input": "blasphemous", "output": "⠃⠇â â Žâ â “â ‘â â ³â Ž" }, { "input": "blasphemously", "output": "⠃⠇â â Žâ â “â ‘â â ³â Žâ ‡â ½" }, { "input": "blasphemy", "output": "⠃⠇â â Žâ â “â ‘â â ½" }, { "input": "blast", "output": "⠃⠇â â Œ" }, { "input": "blasted", "output": "⠃⠇â â Œâ «" }, { "input": "blaster", "output": "⠃⠇â â Œâ »" }, { "input": "blasters", "output": "⠃⠇â â Œâ »â Ž" }, { "input": "blasting", "output": "⠃⠇â â Œâ ¬" }, { "input": "blastoff", "output": "⠃⠇â â Œâ ·â ‹" }, { "input": "blastoffs", "output": "⠃⠇â â Œâ ·â ‹â Ž" }, { "input": "blasts", "output": "⠃⠇â â Œâ Ž" }, { "input": "blasé", "output": "⠃⠇â â Žâ  â ˜â »â â ˜â ‰" }, { "input": "blatant", "output": "⠃⠇â â žâ â â ž" }, { "input": "blatantly", "output": "⠃⠇â â žâ â â žâ ‡â ½" }, { "input": "blaze", "output": "⠃⠇â â µâ ‘" }, { "input": "blazed", "output": "⠃⠇â â µâ «" }, { "input": "blazer", "output": "⠃⠇â â µâ »" }, { "input": "blazers", "output": "⠃⠇â â µâ »â Ž" }, { "input": "blazes", "output": "⠃⠇â â µâ ‘â Ž" }, { "input": "blazing", "output": "⠃⠇â â µâ ¬" }, { "input": "blazon", "output": "⠃⠇â â µâ •â " }, { "input": "blazoned", "output": "⠃⠇â â µâ •â â «" }, { "input": "blazoning", "output": "⠃⠇â â µâ •â â ¬" }, { "input": "blazons", "output": "⠃⠇â â µâ •â â Ž" }, { "input": "bleach", "output": "⠃⠇⠂⠡" }, { "input": "bleached", "output": "⠃⠇⠂⠡⠫" }, { "input": "bleacher", "output": "⠃⠇⠂⠡⠻" }, { "input": "bleachers", "output": "⠃⠇⠂⠡⠻⠎" }, { "input": "bleaches", "output": "⠃⠇⠂⠡⠑⠎" }, { "input": "bleaching", "output": "⠃⠇⠂⠡⠬" }, { "input": "bleak", "output": "⠃⠇⠂⠅" }, { "input": "bleaker", "output": "⠃⠇⠂⠅⠻" }, { "input": "bleakest", "output": "⠃⠇⠂⠅⠑⠌" }, { "input": "bleakly", "output": "⠃⠇⠂⠅⠇⠽" }, { "input": "bleakness", "output": "⠃⠇⠂⠅⠰⠎" }, { "input": "blearier", "output": "⠃⠇⠑⠜⠊⠻" }, { "input": "bleariest", "output": "⠃⠇⠑⠜⠊⠑⠌" }, { "input": "blearily", "output": "⠃⠇⠑⠜⠊⠇⠽" }, { "input": "bleary", "output": "⠃⠇⠑⠜⠽" }, { "input": "bleat", "output": "⠃⠇⠂⠞" }, { "input": "bleated", "output": "⠃⠇⠂⠞⠫" }, { "input": "bleating", "output": "⠃⠇⠂⠞⠬" }, { "input": "bleats", "output": "⠃⠇⠂⠞⠎" }, { "input": "bled", "output": "⠃⠇⠫" }, { "input": "bleed", "output": "⠃⠇⠑⠫" }, { "input": "bleeder", "output": "⠃⠇⠑⠫⠻" }, { "input": "bleeders", "output": "⠃⠇⠑⠫⠻⠎" }, { "input": "bleeding", "output": "⠃⠇⠑⠫⠬" }, { "input": "bleeds", "output": "⠃⠇⠑⠫⠎" }, { "input": "bleep", "output": "⠃⠇⠑⠑â " }, { "input": "bleeped", "output": "⠃⠇⠑⠑â â «" }, { "input": "bleeping", "output": "⠃⠇⠑⠑â â ¬" }, { "input": "bleeps", "output": "⠃⠇⠑⠑â â Ž" }, { "input": "blemish", "output": "⠃⠇⠑â â Šâ ©" }, { "input": "blemished", "output": "⠃⠇⠑â â Šâ ©â «" }, { "input": "blemishes", "output": "⠃⠇⠑â â Šâ ©â ‘â Ž" }, { "input": "blemishing", "output": "⠃⠇⠑â â Šâ ©â ¬" }, { "input": "blench", "output": "⠃⠇⠢⠡" }, { "input": "blenched", "output": "⠃⠇⠢⠡⠫" }, { "input": "blenches", "output": "⠃⠇⠢⠡⠑⠎" }, { "input": "blenching", "output": "⠃⠇⠢⠡⠬" }, { "input": "blend", "output": "⠃⠇⠢⠙" }, { "input": "blended", "output": "⠃⠇⠢⠙⠫" }, { "input": "blender", "output": "⠃⠇⠢⠙⠻" }, { "input": "blenders", "output": "⠃⠇⠢⠙⠻⠎" }, { "input": "blending", "output": "⠃⠇⠢⠙⠬" }, { "input": "blends", "output": "⠃⠇⠢⠙⠎" }, { "input": "blent", "output": "⠃⠇⠢⠞" }, { "input": "bless", "output": "⠃⠨⠎" }, { "input": "blessed", "output": "⠃⠨⠎⠫" }, { "input": "blessedly", "output": "⠃⠨⠎⠫⠇⠽" }, { "input": "blessedness", "output": "⠃⠨⠎⠫⠰⠎" }, { "input": "blesses", "output": "⠃⠨⠎⠑⠎" }, { "input": "blessing", "output": "⠃⠨⠎⠬" }, { "input": "blessings", "output": "⠃⠨⠎⠬⠎" }, { "input": "blest", "output": "⠃⠇⠑⠌" }, { "input": "blew", "output": "⠃⠇⠑⠺" }, { "input": "blight", "output": "⠃⠇⠊⠣⠞" }, { "input": "blighted", "output": "⠃⠇⠊⠣⠞⠫" }, { "input": "blighting", "output": "⠃⠇⠊⠣⠞⠬" }, { "input": "blights", "output": "⠃⠇⠊⠣⠞⠎" }, { "input": "blimp", "output": "⠃⠇⠊â â " }, { "input": "blimps", "output": "⠃⠇⠊â â â Ž" }, { "input": "blind", "output": "⠃⠇" }, { "input": "blinded", "output": "⠃⠇⠔⠙⠫" }, { "input": "blinder", "output": "⠃⠇⠔⠙⠻" }, { "input": "blinders", "output": "⠃⠇⠔⠙⠻⠎" }, { "input": "blindest", "output": "⠃⠇⠔⠙⠑⠌" }, { "input": "blindfold", "output": "⠃⠇⠋⠕⠇⠙" }, { "input": "blindfolded", "output": "⠃⠇⠋⠕⠇⠙⠫" }, { "input": "blindfolding", "output": "⠃⠇⠋⠕⠇⠙⠬" }, { "input": "blindfolds", "output": "⠃⠇⠋⠕⠇⠙⠎" }, { "input": "blinding", "output": "⠃⠇⠔⠙⠬" }, { "input": "blindingly", "output": "⠃⠇⠔⠙⠬⠇⠽" }, { "input": "blindly", "output": "⠃⠇⠇⠽" }, { "input": "blindness", "output": "⠃⠇⠰⠎" }, { "input": "blinds", "output": "⠃⠇⠎" }, { "input": "blindside", "output": "⠃⠇⠎⠊⠙⠑" }, { "input": "blindsided", "output": "⠃⠇⠎⠊⠙⠫" }, { "input": "blindsides", "output": "⠃⠇⠎⠊⠙⠑⠎" }, { "input": "blindsiding", "output": "⠃⠇⠎⠊⠙⠬" }, { "input": "blink", "output": "⠃⠇⠔⠅" }, { "input": "blinked", "output": "⠃⠇⠔⠅⠫" }, { "input": "blinker", "output": "⠃⠇⠔⠅⠻" }, { "input": "blinkered", "output": "⠃⠇⠔⠅⠻⠫" }, { "input": "blinkering", "output": "⠃⠇⠔⠅⠻⠬" }, { "input": "blinkers", "output": "⠃⠇⠔⠅⠻⠎" }, { "input": "blinking", "output": "⠃⠇⠔⠅⠬" }, { "input": "blinks", "output": "⠃⠇⠔⠅⠎" }, { "input": "blintz", "output": "⠃⠇⠔⠞⠵" }, { "input": "blintze", "output": "⠃⠇⠔⠞⠵⠑" }, { "input": "blintzes", "output": "⠃⠇⠔⠞⠵⠑⠎" }, { "input": "blip", "output": "⠃⠇⠊â " }, { "input": "blips", "output": "⠃⠇⠊â â Ž" }, { "input": "bliss", "output": "⠃⠇⠊⠎⠎" }, { "input": "blissful", "output": "⠃⠇⠊⠎⠎⠰⠇" }, { "input": "blissfully", "output": "⠃⠇⠊⠎⠎⠰⠇⠇⠽" }, { "input": "blissfulness", "output": "⠃⠇⠊⠎⠎⠰⠇⠰⠎" }, { "input": "blister", "output": "⠃⠇⠊⠌⠻" }, { "input": "blistered", "output": "⠃⠇⠊⠌⠻⠫" }, { "input": "blistering", "output": "⠃⠇⠊⠌⠻⠬" }, { "input": "blisters", "output": "⠃⠇⠊⠌⠻⠎" }, { "input": "blithe", "output": "⠃⠇⠊⠮" }, { "input": "blithely", "output": "⠃⠇⠊⠮⠇⠽" }, { "input": "blither", "output": "⠃⠇⠊⠮⠗" }, { "input": "blithest", "output": "⠃⠇⠊⠮⠌" }, { "input": "blitz", "output": "⠃⠇⠊⠞⠵" }, { "input": "blitzed", "output": "⠃⠇⠊⠞⠵⠫" }, { "input": "blitzes", "output": "⠃⠇⠊⠞⠵⠑⠎" }, { "input": "blitzing", "output": "⠃⠇⠊⠞⠵⠬" }, { "input": "blizzard", "output": "⠃⠇⠊⠵⠵⠜⠙" }, { "input": "blizzards", "output": "⠃⠇⠊⠵⠵⠜⠙⠎" }, { "input": "bloat", "output": "⠃⠇⠕â â ž" }, { "input": "bloated", "output": "⠃⠇⠕â â žâ «" }, { "input": "bloating", "output": "⠃⠇⠕â â žâ ¬" }, { "input": "bloats", "output": "⠃⠇⠕â â žâ Ž" }, { "input": "blob", "output": "⠃⠇⠕⠃" }, { "input": "blobbed", "output": "⠃⠇⠕⠆⠫" }, { "input": "blobbing", "output": "⠃⠇⠕⠆⠬" }, { "input": "blobs", "output": "⠃⠇⠕⠃⠎" }, { "input": "bloc", "output": "⠃⠇⠕⠉" }, { "input": "block", "output": "⠃⠇⠕⠉⠅" }, { "input": "blockade", "output": "⠃⠇⠕⠉⠅â â ™â ‘" }, { "input": "blockaded", "output": "⠃⠇⠕⠉⠅â â ™â «" }, { "input": "blockades", "output": "⠃⠇⠕⠉⠅â â ™â ‘â Ž" }, { "input": "blockading", "output": "⠃⠇⠕⠉⠅â â ™â ¬" }, { "input": "blockage", "output": "⠃⠇⠕⠉⠅â â ›â ‘" }, { "input": "blockages", "output": "⠃⠇⠕⠉⠅â â ›â ‘â Ž" }, { "input": "blockbuster", "output": "⠃⠇⠕⠉⠅⠃⠥⠌⠻" }, { "input": "blockbusters", "output": "⠃⠇⠕⠉⠅⠃⠥⠌⠻⠎" }, { "input": "blocked", "output": "⠃⠇⠕⠉⠅⠫" }, { "input": "blockhead", "output": "⠃⠇⠕⠉⠅⠓⠂⠙" }, { "input": "blockheads", "output": "⠃⠇⠕⠉⠅⠓⠂⠙⠎" }, { "input": "blockhouse", "output": "⠃⠇⠕⠉⠅⠓⠳⠎⠑" }, { "input": "blockhouses", "output": "⠃⠇⠕⠉⠅⠓⠳⠎⠑⠎" }, { "input": "blocking", "output": "⠃⠇⠕⠉⠅⠬" }, { "input": "blocks", "output": "⠃⠇⠕⠉⠅⠎" }, { "input": "blocs", "output": "⠃⠇⠕⠉⠎" }, { "input": "blog", "output": "⠃⠇⠕⠛" }, { "input": "blogged", "output": "⠃⠇⠕⠶⠫" }, { "input": "blogger", "output": "⠃⠇⠕⠶⠻" }, { "input": "bloggers", "output": "⠃⠇⠕⠶⠻⠎" }, { "input": "blogging", "output": "⠃⠇⠕⠶⠬" }, { "input": "blogs", "output": "⠃⠇⠕⠛⠎" }, { "input": "blond", "output": "⠃⠇⠕â â ™" }, { "input": "blonde", "output": "⠃⠇⠕â â ™â ‘" }, { "input": "blonder", "output": "⠃⠇⠕â â ™â »" }, { "input": "blondes", "output": "⠃⠇⠕â â ™â ‘â Ž" }, { "input": "blondest", "output": "⠃⠇⠕â â ™â ‘â Œ" }, { "input": "blondness", "output": "⠃⠇⠕â â ™â °â Ž" }, { "input": "blonds", "output": "⠃⠇⠕â â ™â Ž" }, { "input": "blood", "output": "⠃⠇⠕⠕⠙" }, { "input": "bloodbath", "output": "⠃⠇⠕⠕⠙⠃â â ¹" }, { "input": "bloodbaths", "output": "⠃⠇⠕⠕⠙⠃â â ¹â Ž" }, { "input": "bloodcurdling", "output": "⠃⠇⠕⠕⠙⠉⠥⠗⠙⠇⠬" }, { "input": "blooded", "output": "⠃⠇⠕⠕⠙⠫" }, { "input": "bloodhound", "output": "⠃⠇⠕⠕⠙⠓⠨⠙" }, { "input": "bloodhounds", "output": "⠃⠇⠕⠕⠙⠓⠨⠙⠎" }, { "input": "bloodied", "output": "⠃⠇⠕⠕⠙⠊⠫" }, { "input": "bloodier", "output": "⠃⠇⠕⠕⠙⠊⠻" }, { "input": "bloodies", "output": "⠃⠇⠕⠕⠙⠊⠑⠎" }, { "input": "bloodiest", "output": "⠃⠇⠕⠕⠙⠊⠑⠌" }, { "input": "blooding", "output": "⠃⠇⠕⠕⠙⠬" }, { "input": "bloodless", "output": "⠃⠇⠕⠕⠙⠨⠎" }, { "input": "bloodlessly", "output": "⠃⠇⠕⠕⠙⠨⠎⠇⠽" }, { "input": "bloodmobile", "output": "⠃⠇⠕⠕⠙â â •⠃⠊⠇⠑" }, { "input": "bloodmobiles", "output": "⠃⠇⠕⠕⠙â â •⠃⠊⠇⠑⠎" }, { "input": "bloods", "output": "⠃⠇⠕⠕⠙⠎" }, { "input": "bloodshed", "output": "⠃⠇⠕⠕⠙⠩⠫" }, { "input": "bloodshot", "output": "⠃⠇⠕⠕⠙⠩⠕⠞" }, { "input": "bloodstain", "output": "⠃⠇⠕⠕⠙⠌â â ”" }, { "input": "bloodstained", "output": "⠃⠇⠕⠕⠙⠌â â ”â «" }, { "input": "bloodstains", "output": "⠃⠇⠕⠕⠙⠌â â ”â Ž" }, { "input": "bloodstream", "output": "⠃⠇⠕⠕⠙⠌⠗⠂â " }, { "input": "bloodstreams", "output": "⠃⠇⠕⠕⠙⠌⠗⠂â â Ž" }, { "input": "bloodsucker", "output": "⠃⠇⠕⠕⠙⠎⠥⠉⠅⠻" }, { "input": "bloodsuckers", "output": "⠃⠇⠕⠕⠙⠎⠥⠉⠅⠻⠎" }, { "input": "bloodthirstier", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠻" }, { "input": "bloodthirstiest", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠑⠌" }, { "input": "bloodthirstiness", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠰⠎" }, { "input": "bloodthirsty", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠽" }, { "input": "bloody", "output": "⠃⠇⠕⠕⠙⠽" }, { "input": "bloodying", "output": "⠃⠇⠕⠕⠙⠽⠬" }, { "input": "bloom", "output": "⠃⠇⠕⠕â " }, { "input": "bloomed", "output": "⠃⠇⠕⠕â â «" }, { "input": "bloomer", "output": "⠃⠇⠕⠕â â »" }, { "input": "bloomers", "output": "⠃⠇⠕⠕â â »â Ž" }, { "input": "blooming", "output": "⠃⠇⠕⠕â â ¬" }, { "input": "blooms", "output": "⠃⠇⠕⠕â â Ž" }, { "input": "blooper", "output": "⠃⠇⠕⠕â â »" }, { "input": "bloopers", "output": "⠃⠇⠕⠕â â »â Ž" }, { "input": "blossom", "output": "⠃⠇⠕⠎⠎⠕â " }, { "input": "blossomed", "output": "⠃⠇⠕⠎⠎⠕â â «" }, { "input": "blossoming", "output": "⠃⠇⠕⠎⠎⠕â â ¬" }, { "input": "blossoms", "output": "⠃⠇⠕⠎⠎⠕â â Ž" }, { "input": "blot", "output": "⠃⠇⠕⠞" }, { "input": "blotch", "output": "⠃⠇⠕⠞⠡" }, { "input": "blotched", "output": "⠃⠇⠕⠞⠡⠫" }, { "input": "blotches", "output": "⠃⠇⠕⠞⠡⠑⠎" }, { "input": "blotchier", "output": "⠃⠇⠕⠞⠡⠊⠻" }, { "input": "blotchiest", "output": "⠃⠇⠕⠞⠡⠊⠑⠌" }, { "input": "blotching", "output": "⠃⠇⠕⠞⠡⠬" }, { "input": "blotchy", "output": "⠃⠇⠕⠞⠡⠽" }, { "input": "blots", "output": "⠃⠇⠕⠞⠎" }, { "input": "blotted", "output": "⠃⠇⠕⠞⠞⠫" }, { "input": "blotter", "output": "⠃⠇⠕⠞⠞⠻" }, { "input": "blotters", "output": "⠃⠇⠕⠞⠞⠻⠎" }, { "input": "blotting", "output": "⠃⠇⠕⠞⠞⠬" }, { "input": "blouse", "output": "⠃⠇⠳⠎⠑" }, { "input": "bloused", "output": "⠃⠇⠳⠎⠫" }, { "input": "blouses", "output": "⠃⠇⠳⠎⠑⠎" }, { "input": "blousing", "output": "⠃⠇⠳⠎⠬" }, { "input": "blow", "output": "⠃⠇⠪" }, { "input": "blower", "output": "⠃⠇⠪⠻" }, { "input": "blowers", "output": "⠃⠇⠪⠻⠎" }, { "input": "blowgun", "output": "⠃⠇⠪⠛⠥â " }, { "input": "blowguns", "output": "⠃⠇⠪⠛⠥â â Ž" }, { "input": "blowing", "output": "⠃⠇⠪⠬" }, { "input": "blown", "output": "⠃⠇⠪â " }, { "input": "blowout", "output": "⠃⠇⠪⠳⠞" }, { "input": "blowouts", "output": "⠃⠇⠪⠳⠞⠎" }, { "input": "blows", "output": "⠃⠇⠪⠎" }, { "input": "blowsier", "output": "⠃⠇⠪⠎⠊⠻" }, { "input": "blowsiest", "output": "⠃⠇⠪⠎⠊⠑⠌" }, { "input": "blowsy", "output": "⠃⠇⠪⠎⠽" }, { "input": "blowtorch", "output": "⠃⠇⠪⠞⠕⠗⠡" }, { "input": "blowtorches", "output": "⠃⠇⠪⠞⠕⠗⠡⠑⠎" }, { "input": "blowup", "output": "⠃⠇⠪⠥â " }, { "input": "blowups", "output": "⠃⠇⠪⠥â â Ž" }, { "input": "blowzier", "output": "⠃⠇⠪⠵⠊⠻" }, { "input": "blowziest", "output": "⠃⠇⠪⠵⠊⠑⠌" }, { "input": "blowzy", "output": "⠃⠇⠪⠵⠽" }, { "input": "blubber", "output": "⠃⠇⠥⠆⠻" }, { "input": "blubbered", "output": "⠃⠇⠥⠆⠻⠫" }, { "input": "blubbering", "output": "⠃⠇⠥⠆⠻⠬" }, { "input": "blubbers", "output": "⠃⠇⠥⠆⠻⠎" }, { "input": "bludgeon", "output": "⠃⠇⠥⠙⠛⠑⠕â " }, { "input": "bludgeoned", "output": "⠃⠇⠥⠙⠛⠑⠕â â «" }, { "input": "bludgeoning", "output": "⠃⠇⠥⠙⠛⠑⠕â â ¬" }, { "input": "bludgeons", "output": "⠃⠇⠥⠙⠛⠑⠕â â Ž" }, { "input": "blue", "output": "⠃⠇⠥⠑" }, { "input": "bluebell", "output": "⠃⠇⠥⠑⠃⠑⠇⠇" }, { "input": "bluebells", "output": "⠃⠇⠥⠑⠃⠑⠇⠇⠎" }, { "input": "blueberries", "output": "⠃⠇⠥⠑⠃⠻⠗⠊⠑⠎" }, { "input": "blueberry", "output": "⠃⠇⠥⠑⠃⠻⠗⠽" }, { "input": "bluebird", "output": "⠃⠇⠥⠑⠃⠊⠗⠙" }, { "input": "bluebirds", "output": "⠃⠇⠥⠑⠃⠊⠗⠙⠎" }, { "input": "bluebottle", "output": "⠃⠇⠥⠑⠃⠕⠞⠞⠇⠑" }, { "input": "bluebottles", "output": "⠃⠇⠥⠑⠃⠕⠞⠞⠇⠑⠎" }, { "input": "blued", "output": "⠃⠇⠥⠫" }, { "input": "bluefish", "output": "⠃⠇⠥⠑⠋⠊⠩" }, { "input": "bluefishes", "output": "⠃⠇⠥⠑⠋⠊⠩⠑⠎" }, { "input": "bluegrass", "output": "⠃⠇⠥⠑⠛⠗â â Žâ Ž" }, { "input": "blueing", "output": "⠃⠇⠥⠑⠬" }, { "input": "bluejacket", "output": "⠃⠇⠥⠑⠚â â ‰â …â ‘â ž" }, { "input": "bluejackets", "output": "⠃⠇⠥⠑⠚â â ‰â …â ‘â žâ Ž" }, { "input": "bluejay", "output": "⠃⠇⠥⠑⠚â â ½" }, { "input": "bluejays", "output": "⠃⠇⠥⠑⠚â â ½â Ž" }, { "input": "bluenose", "output": "⠃⠇⠥⠑â â •â Žâ ‘" }, { "input": "bluenoses", "output": "⠃⠇⠥⠑â â •â Žâ ‘â Ž" }, { "input": "blueprint", "output": "⠃⠇⠥⠑â â —⠔⠞" }, { "input": "blueprinted", "output": "⠃⠇⠥⠑â â —⠔⠞⠫" }, { "input": "blueprinting", "output": "⠃⠇⠥⠑â â —⠔⠞⠬" }, { "input": "blueprints", "output": "⠃⠇⠥⠑â â —⠔⠞⠎" }, { "input": "bluer", "output": "⠃⠇⠥⠻" }, { "input": "blues", "output": "⠃⠇⠥⠑⠎" }, { "input": "bluest", "output": "⠃⠇⠥⠑⠌" }, { "input": "bluff", "output": "⠃⠇⠥⠋⠋" }, { "input": "bluffed", "output": "⠃⠇⠥⠖⠫" }, { "input": "bluffer", "output": "⠃⠇⠥⠖⠻" }, { "input": "bluffers", "output": "⠃⠇⠥⠖⠻⠎" }, { "input": "bluffest", "output": "⠃⠇⠥⠖⠑⠌" }, { "input": "bluffing", "output": "⠃⠇⠥⠖⠬" }, { "input": "bluffs", "output": "⠃⠇⠥⠖⠎" }, { "input": "bluing", "output": "⠃⠇⠥⠬" }, { "input": "bluish", "output": "⠃⠇⠥⠊⠩" }, { "input": "blunder", "output": "⠃⠇â â ¥" }, { "input": "blunderbuss", "output": "⠃⠇â â ¥â ƒâ ¥â Žâ Ž" }, { "input": "blunderbusses", "output": "⠃⠇â â ¥â ƒâ ¥â Žâ Žâ ‘â Ž" }, { "input": "blundered", "output": "⠃⠇â â ¥â «" }, { "input": "blunderer", "output": "⠃⠇â â ¥â »" }, { "input": "blunderers", "output": "⠃⠇â â ¥â »â Ž" }, { "input": "blundering", "output": "⠃⠇â â ¥â ¬" }, { "input": "blunders", "output": "⠃⠇â â ¥â Ž" }, { "input": "blunt", "output": "⠃⠇⠥â â ž" }, { "input": "blunted", "output": "⠃⠇⠥â â žâ «" }, { "input": "blunter", "output": "⠃⠇⠥â â žâ »" }, { "input": "bluntest", "output": "⠃⠇⠥â â žâ ‘â Œ" }, { "input": "blunting", "output": "⠃⠇⠥â â žâ ¬" }, { "input": "bluntly", "output": "⠃⠇⠥â â žâ ‡â ½" }, { "input": "bluntness", "output": "⠃⠇⠥â â žâ °â Ž" }, { "input": "blunts", "output": "⠃⠇⠥â â žâ Ž" }, { "input": "blur", "output": "⠃⠇⠥⠗" }, { "input": "blurb", "output": "⠃⠇⠥⠗⠃" }, { "input": "blurbs", "output": "⠃⠇⠥⠗⠃⠎" }, { "input": "blurred", "output": "⠃⠇⠥⠗⠗⠫" }, { "input": "blurrier", "output": "⠃⠇⠥⠗⠗⠊⠻" }, { "input": "blurriest", "output": "⠃⠇⠥⠗⠗⠊⠑⠌" }, { "input": "blurring", "output": "⠃⠇⠥⠗⠗⠬" }, { "input": "blurry", "output": "⠃⠇⠥⠗⠗⠽" }, { "input": "blurs", "output": "⠃⠇⠥⠗⠎" }, { "input": "blurt", "output": "⠃⠇⠥⠗⠞" }, { "input": "blurted", "output": "⠃⠇⠥⠗⠞⠫" }, { "input": "blurting", "output": "⠃⠇⠥⠗⠞⠬" }, { "input": "blurts", "output": "⠃⠇⠥⠗⠞⠎" }, { "input": "blush", "output": "⠃⠇⠥⠩" }, { "input": "blushed", "output": "⠃⠇⠥⠩⠫" }, { "input": "blusher", "output": "⠃⠇⠥⠩⠻" }, { "input": "blushers", "output": "⠃⠇⠥⠩⠻⠎" }, { "input": "blushes", "output": "⠃⠇⠥⠩⠑⠎" }, { "input": "blushing", "output": "⠃⠇⠥⠩⠬" }, { "input": "bluster", "output": "⠃⠇⠥⠌⠻" }, { "input": "blustered", "output": "⠃⠇⠥⠌⠻⠫" }, { "input": "blustering", "output": "⠃⠇⠥⠌⠻⠬" }, { "input": "blusters", "output": "⠃⠇⠥⠌⠻⠎" }, { "input": "blustery", "output": "⠃⠇⠥⠌⠻⠽" }, { "input": "boa", "output": "⠃⠕â " }, { "input": "boar", "output": "⠃⠕⠜" }, { "input": "board", "output": "⠃⠕⠜⠙" }, { "input": "boarded", "output": "⠃⠕⠜⠙⠫" }, { "input": "boarder", "output": "⠃⠕⠜⠙⠻" }, { "input": "boarders", "output": "⠃⠕⠜⠙⠻⠎" }, { "input": "boarding", "output": "⠃⠕⠜⠙⠬" }, { "input": "boardinghouse", "output": "⠃⠕⠜⠙⠬⠓⠳⠎⠑" }, { "input": "boardinghouses", "output": "⠃⠕⠜⠙⠬⠓⠳⠎⠑⠎" }, { "input": "boardroom", "output": "⠃⠕⠜⠙⠗⠕⠕â " }, { "input": "boardrooms", "output": "⠃⠕⠜⠙⠗⠕⠕â â Ž" }, { "input": "boards", "output": "⠃⠕⠜⠙⠎" }, { "input": "boardwalk", "output": "⠃⠕⠜⠙⠺â â ‡â …" }, { "input": "boardwalks", "output": "⠃⠕⠜⠙⠺â â ‡â …â Ž" }, { "input": "boars", "output": "⠃⠕⠜⠎" }, { "input": "boas", "output": "⠃⠕â â Ž" }, { "input": "boast", "output": "⠃⠕â â Œ" }, { "input": "boasted", "output": "⠃⠕â â Œâ «" }, { "input": "boaster", "output": "⠃⠕â â Œâ »" }, { "input": "boasters", "output": "⠃⠕â â Œâ »â Ž" }, { "input": "boastful", "output": "⠃⠕â â Œâ °â ‡" }, { "input": "boastfully", "output": "⠃⠕â â Œâ °â ‡â ‡â ½" }, { "input": "boastfulness", "output": "⠃⠕â â Œâ °â ‡â °â Ž" }, { "input": "boasting", "output": "⠃⠕â â Œâ ¬" }, { "input": "boasts", "output": "⠃⠕â â Œâ Ž" }, { "input": "boat", "output": "⠃⠕â â ž" }, { "input": "boated", "output": "⠃⠕â â žâ «" }, { "input": "boater", "output": "⠃⠕â â žâ »" }, { "input": "boaters", "output": "⠃⠕â â žâ »â Ž" }, { "input": "boating", "output": "⠃⠕â â žâ ¬" }, { "input": "boatman", "output": "⠃⠕â â žâ â â " }, { "input": "boatmen", "output": "⠃⠕â â žâ â ¢" }, { "input": "boats", "output": "⠃⠕â â žâ Ž" }, { "input": "boatswain", "output": "⠃⠕â â žâ Žâ ºâ â ”" }, { "input": "boatswains", "output": "⠃⠕â â žâ Žâ ºâ â ”â Ž" }, { "input": "bob", "output": "⠃⠕⠃" }, { "input": "bobbed", "output": "⠃⠕⠆⠫" }, { "input": "bobbies", "output": "⠃⠕⠆⠊⠑⠎" }, { "input": "bobbin", "output": "⠃⠕⠆⠔" }, { "input": "bobbing", "output": "⠃⠕⠆⠬" }, { "input": "bobbins", "output": "⠃⠕⠆⠔⠎" }, { "input": "bobble", "output": "⠃⠕⠆⠇⠑" }, { "input": "bobbled", "output": "⠃⠕⠆⠇⠫" }, { "input": "bobbles", "output": "⠃⠕⠆⠇⠑⠎" }, { "input": "bobbling", "output": "⠃⠕⠆⠇⠬" }, { "input": "bobby", "output": "⠃⠕⠆⠽" }, { "input": "bobcat", "output": "⠃⠕⠃⠉â â ž" }, { "input": "bobcats", "output": "⠃⠕⠃⠉â â žâ Ž" }, { "input": "bobolink", "output": "⠃⠕⠃⠕⠇⠔⠅" }, { "input": "bobolinks", "output": "⠃⠕⠃⠕⠇⠔⠅⠎" }, { "input": "bobs", "output": "⠃⠕⠃⠎" }, { "input": "bobsled", "output": "⠃⠕⠃⠎⠇⠫" }, { "input": "bobsledded", "output": "⠃⠕⠃⠎⠇⠫⠙⠫" }, { "input": "bobsledding", "output": "⠃⠕⠃⠎⠇⠫⠙⠬" }, { "input": "bobsleds", "output": "⠃⠕⠃⠎⠇⠫⠎" }, { "input": "bobtail", "output": "⠃⠕⠃⠞â â Šâ ‡" }, { "input": "bobtails", "output": "⠃⠕⠃⠞â â Šâ ‡â Ž" }, { "input": "bobwhite", "output": "⠃⠕⠃⠱⠊⠞⠑" }, { "input": "bobwhites", "output": "⠃⠕⠃⠱⠊⠞⠑⠎" }, { "input": "bode", "output": "⠃⠕⠙⠑" }, { "input": "boded", "output": "⠃⠕⠙⠫" }, { "input": "bodega", "output": "⠃⠕⠙⠑⠛â " }, { "input": "bodegas", "output": "⠃⠕⠙⠑⠛â â Ž" }, { "input": "bodes", "output": "⠃⠕⠙⠑⠎" }, { "input": "bodice", "output": "⠃⠕⠙⠊⠉⠑" }, { "input": "bodices", "output": "⠃⠕⠙⠊⠉⠑⠎" }, { "input": "bodies", "output": "⠃⠕⠙⠊⠑⠎" }, { "input": "bodily", "output": "⠃⠕⠙⠊⠇⠽" }, { "input": "boding", "output": "⠃⠕⠙⠬" }, { "input": "bodkin", "output": "⠃⠕⠙⠅⠔" }, { "input": "bodkins", "output": "⠃⠕⠙⠅⠔⠎" }, { "input": "body", "output": "⠃⠕⠙⠽" }, { "input": "bodybuilding", "output": "⠃⠕⠙⠽⠃⠥⠊⠇⠙⠬" }, { "input": "bodyguard", "output": "⠃⠕⠙⠽⠛⠥⠜⠙" }, { "input": "bodyguards", "output": "⠃⠕⠙⠽⠛⠥⠜⠙⠎" }, { "input": "bodywork", "output": "⠃⠕⠙⠽â â º" }, { "input": "bog", "output": "⠃⠕⠛" }, { "input": "bogey", "output": "⠃⠕⠛⠑⠽" }, { "input": "bogeyed", "output": "⠃⠕⠛⠑⠽⠫" }, { "input": "bogeying", "output": "⠃⠕⠛⠑⠽⠬" }, { "input": "bogeyman", "output": "⠃⠕⠛⠑⠽â â â " }, { "input": "bogeymen", "output": "⠃⠕⠛⠑⠽â â ¢" }, { "input": "bogeys", "output": "⠃⠕⠛⠑⠽⠎" }, { "input": "bogged", "output": "⠃⠕⠶⠫" }, { "input": "boggier", "output": "⠃⠕⠶⠊⠻" }, { "input": "boggiest", "output": "⠃⠕⠶⠊⠑⠌" }, { "input": "bogging", "output": "⠃⠕⠶⠬" }, { "input": "boggle", "output": "⠃⠕⠶⠇⠑" }, { "input": "boggled", "output": "⠃⠕⠶⠇⠫" }, { "input": "boggles", "output": "⠃⠕⠶⠇⠑⠎" }, { "input": "boggling", "output": "⠃⠕⠶⠇⠬" }, { "input": "boggy", "output": "⠃⠕⠶⠽" }, { "input": "bogie", "output": "⠃⠕⠛⠊⠑" }, { "input": "bogied", "output": "⠃⠕⠛⠊⠫" }, { "input": "bogies", "output": "⠃⠕⠛⠊⠑⠎" }, { "input": "bogs", "output": "⠃⠕⠛⠎" }, { "input": "bogus", "output": "⠃⠕⠛⠥⠎" }, { "input": "bogy", "output": "⠃⠕⠛⠽" }, { "input": "bohemian", "output": "⠃⠕⠓⠑â â Šâ â " }, { "input": "bohemians", "output": "⠃⠕⠓⠑â â Šâ â â Ž" }, { "input": "boil", "output": "⠃⠕⠊⠇" }, { "input": "boiled", "output": "⠃⠕⠊⠇⠫" }, { "input": "boiler", "output": "⠃⠕⠊⠇⠻" }, { "input": "boilerplate", "output": "⠃⠕⠊⠇⠻â â ‡â â žâ ‘" }, { "input": "boilers", "output": "⠃⠕⠊⠇⠻⠎" }, { "input": "boiling", "output": "⠃⠕⠊⠇⠬" }, { "input": "boilings", "output": "⠃⠕⠊⠇⠬⠎" }, { "input": "boils", "output": "⠃⠕⠊⠇⠎" }, { "input": "boisterous", "output": "⠃⠕⠊⠌⠻⠳⠎" }, { "input": "boisterously", "output": "⠃⠕⠊⠌⠻⠳⠎⠇⠽" }, { "input": "boisterousness", "output": "⠃⠕⠊⠌⠻⠳⠎⠰⠎" }, { "input": "bola", "output": "⠃⠕⠇â " }, { "input": "bolas", "output": "⠃⠕⠇â â Ž" }, { "input": "bold", "output": "⠃⠕⠇⠙" }, { "input": "bolder", "output": "⠃⠕⠇⠙⠻" }, { "input": "boldest", "output": "⠃⠕⠇⠙⠑⠌" }, { "input": "boldface", "output": "⠃⠕⠇⠙⠋â â ‰â ‘" }, { "input": "boldly", "output": "⠃⠕⠇⠙⠇⠽" }, { "input": "boldness", "output": "⠃⠕⠇⠙⠰⠎" }, { "input": "bole", "output": "⠃⠕⠇⠑" }, { "input": "bolero", "output": "⠃⠕⠇⠻⠕" }, { "input": "boleros", "output": "⠃⠕⠇⠻⠕⠎" }, { "input": "boles", "output": "⠃⠕⠇⠑⠎" }, { "input": "boll", "output": "⠃⠕⠇⠇" }, { "input": "bolls", "output": "⠃⠕⠇⠇⠎" }, { "input": "bologna", "output": "⠃⠕⠇⠕⠛â â " }, { "input": "boloney", "output": "⠃⠕⠇â â •â ½" }, { "input": "bolster", "output": "⠃⠕⠇⠌⠻" }, { "input": "bolstered", "output": "⠃⠕⠇⠌⠻⠫" }, { "input": "bolstering", "output": "⠃⠕⠇⠌⠻⠬" }, { "input": "bolsters", "output": "⠃⠕⠇⠌⠻⠎" }, { "input": "bolt", "output": "⠃⠕⠇⠞" }, { "input": "bolted", "output": "⠃⠕⠇⠞⠫" }, { "input": "bolting", "output": "⠃⠕⠇⠞⠬" }, { "input": "bolts", "output": "⠃⠕⠇⠞⠎" }, { "input": "bomb", "output": "⠃⠕â â ƒ" }, { "input": "bombard", "output": "⠃⠕â â ƒâ œâ ™" }, { "input": "bombarded", "output": "⠃⠕â â ƒâ œâ ™â «" }, { "input": "bombardier", "output": "⠃⠕â â ƒâ œâ ™â Šâ »" }, { "input": "bombardiers", "output": "⠃⠕â â ƒâ œâ ™â Šâ »â Ž" }, { "input": "bombarding", "output": "⠃⠕â â ƒâ œâ ™â ¬" }, { "input": "bombardment", "output": "⠃⠕â â ƒâ œâ ™â °â ž" }, { "input": "bombardments", "output": "⠃⠕â â ƒâ œâ ™â °â žâ Ž" }, { "input": "bombards", "output": "⠃⠕â â ƒâ œâ ™â Ž" }, { "input": "bombast", "output": "⠃⠕â â ƒâ â Œ" }, { "input": "bombastic", "output": "⠃⠕â â ƒâ â Œâ Šâ ‰" }, { "input": "bombed", "output": "⠃⠕â â ƒâ «" }, { "input": "bomber", "output": "⠃⠕â â ƒâ »" }, { "input": "bombers", "output": "⠃⠕â â ƒâ »â Ž" }, { "input": "bombing", "output": "⠃⠕â â ƒâ ¬" }, { "input": "bombings", "output": "⠃⠕â â ƒâ ¬â Ž" }, { "input": "bombs", "output": "⠃⠕â â ƒâ Ž" }, { "input": "bombshell", "output": "⠃⠕â â ƒâ ©â ‘⠇⠇" }, { "input": "bombshells", "output": "⠃⠕â â ƒâ ©â ‘⠇⠇⠎" }, { "input": "bonanza", "output": "⠃⠕â â â â µâ " }, { "input": "bonanzas", "output": "⠃⠕â â â â µâ â Ž" }, { "input": "bonbon", "output": "⠃⠕â â ƒâ •â " }, { "input": "bonbons", "output": "⠃⠕â â ƒâ •â â Ž" }, { "input": "bond", "output": "⠃⠕â â ™" }, { "input": "bondage", "output": "⠃⠕â â ™â â ›â ‘" }, { "input": "bonded", "output": "⠃⠕â â ™â «" }, { "input": "bonding", "output": "⠃⠕â â ™â ¬" }, { "input": "bonds", "output": "⠃⠕â â ™â Ž" }, { "input": "bondsman", "output": "⠃⠕â â ™â Žâ â â " }, { "input": "bondsmen", "output": "⠃⠕â â ™â Žâ â ¢" }, { "input": "bone", "output": "â ƒâ â •" }, { "input": "boned", "output": "⠃⠕â â «" }, { "input": "bonehead", "output": "â ƒâ â •â “â ‚â ™" }, { "input": "boneheads", "output": "â ƒâ â •⠓⠂⠙⠎" }, { "input": "boneless", "output": "â ƒâ â •⠨⠎" }, { "input": "boner", "output": "⠃⠕â â »" }, { "input": "boners", "output": "⠃⠕â â »â Ž" }, { "input": "bones", "output": "â ƒâ â •â Ž" }, { "input": "boney", "output": "â ƒâ â •â ½" }, { "input": "boneyer", "output": "â ƒâ â •⠽⠻" }, { "input": "boneyest", "output": "â ƒâ â •⠽⠑⠌" }, { "input": "bonfire", "output": "⠃⠕â â ‹â Šâ —â ‘" }, { "input": "bonfires", "output": "⠃⠕â â ‹â Šâ —â ‘â Ž" }, { "input": "bong", "output": "⠃⠰⠛" }, { "input": "bonged", "output": "⠃⠰⠛⠫" }, { "input": "bonging", "output": "⠃⠰⠛⠬" }, { "input": "bongo", "output": "⠃⠰⠛⠕" }, { "input": "bongoes", "output": "⠃⠰⠛⠕⠑⠎" }, { "input": "bongos", "output": "⠃⠰⠛⠕⠎" }, { "input": "bongs", "output": "⠃⠰⠛⠎" }, { "input": "bonier", "output": "⠃⠕â â Šâ »" }, { "input": "boniest", "output": "⠃⠕â â Šâ ‘â Œ" }, { "input": "boning", "output": "⠃⠕â â ¬" }, { "input": "bonito", "output": "⠃⠕â â Šâ žâ •" }, { "input": "bonitoes", "output": "⠃⠕â â Šâ žâ •â ‘â Ž" }, { "input": "bonitos", "output": "⠃⠕â â Šâ žâ •â Ž" }, { "input": "bonkers", "output": "⠃⠕â â …⠻⠎" }, { "input": "bonnet", "output": "⠃⠕â â â ‘â ž" }, { "input": "bonnets", "output": "⠃⠕â â â ‘â žâ Ž" }, { "input": "bonnie", "output": "⠃⠕â â â Šâ ‘" }, { "input": "bonnier", "output": "⠃⠕â â â Šâ »" }, { "input": "bonniest", "output": "⠃⠕â â â Šâ ‘â Œ" }, { "input": "bonny", "output": "⠃⠕â â â ½" }, { "input": "bonsai", "output": "⠃⠕â â Žâ â Š" }, { "input": "bonus", "output": "⠃⠕â â ¥â Ž" }, { "input": "bonuses", "output": "⠃⠕â â ¥â Žâ ‘â Ž" }, { "input": "bony", "output": "⠃⠕â â ½" }, { "input": "boo", "output": "⠃⠕⠕" }, { "input": "boob", "output": "⠃⠕⠕⠃" }, { "input": "boobed", "output": "⠃⠕⠕⠃⠫" }, { "input": "boobies", "output": "⠃⠕⠕⠃⠊⠑⠎" }, { "input": "boobing", "output": "⠃⠕⠕⠃⠬" }, { "input": "boobs", "output": "⠃⠕⠕⠃⠎" }, { "input": "booby", "output": "⠃⠕⠕⠃⠽" }, { "input": "boodle", "output": "⠃⠕⠕⠙⠇⠑" }, { "input": "boodles", "output": "⠃⠕⠕⠙⠇⠑⠎" }, { "input": "booed", "output": "⠃⠕⠕⠫" }, { "input": "boogie", "output": "⠃⠕⠕⠛⠊⠑" }, { "input": "boogied", "output": "⠃⠕⠕⠛⠊⠫" }, { "input": "boogieing", "output": "⠃⠕⠕⠛⠊⠑⠬" }, { "input": "boogies", "output": "⠃⠕⠕⠛⠊⠑⠎" }, { "input": "booing", "output": "⠃⠕⠕⠬" }, { "input": "book", "output": "⠃⠕⠕⠅" }, { "input": "bookcase", "output": "⠃⠕⠕⠅⠉â â Žâ ‘" }, { "input": "bookcases", "output": "⠃⠕⠕⠅⠉â â Žâ ‘â Ž" }, { "input": "booked", "output": "⠃⠕⠕⠅⠫" }, { "input": "bookend", "output": "⠃⠕⠕⠅⠢⠙" }, { "input": "bookends", "output": "⠃⠕⠕⠅⠢⠙⠎" }, { "input": "bookie", "output": "⠃⠕⠕⠅⠊⠑" }, { "input": "bookies", "output": "⠃⠕⠕⠅⠊⠑⠎" }, { "input": "booking", "output": "⠃⠕⠕⠅⠬" }, { "input": "bookings", "output": "⠃⠕⠕⠅⠬⠎" }, { "input": "bookish", "output": "⠃⠕⠕⠅⠊⠩" }, { "input": "bookkeeper", "output": "⠃⠕⠕⠅⠅⠑⠑â â »" }, { "input": "bookkeepers", "output": "⠃⠕⠕⠅⠅⠑⠑â â »â Ž" }, { "input": "bookkeeping", "output": "⠃⠕⠕⠅⠅⠑⠑â â ¬" }, { "input": "booklet", "output": "⠃⠕⠕⠅⠇⠑⠞" }, { "input": "booklets", "output": "⠃⠕⠕⠅⠇⠑⠞⠎" }, { "input": "bookmaker", "output": "⠃⠕⠕⠅â â â …â »" }, { "input": "bookmakers", "output": "⠃⠕⠕⠅â â â …⠻⠎" }, { "input": "bookmaking", "output": "⠃⠕⠕⠅â â â …â ¬" }, { "input": "bookmark", "output": "⠃⠕⠕⠅â â œâ …" }, { "input": "bookmarked", "output": "⠃⠕⠕⠅â â œâ …â «" }, { "input": "bookmarking", "output": "⠃⠕⠕⠅â â œâ …â ¬" }, { "input": "bookmarks", "output": "⠃⠕⠕⠅â â œâ …â Ž" }, { "input": "bookmobile", "output": "⠃⠕⠕⠅â â •⠃⠊⠇⠑" }, { "input": "bookmobiles", "output": "⠃⠕⠕⠅â â •⠃⠊⠇⠑⠎" }, { "input": "books", "output": "⠃⠕⠕⠅⠎" }, { "input": "bookseller", "output": "⠃⠕⠕⠅⠎⠑⠇⠇⠻" }, { "input": "booksellers", "output": "⠃⠕⠕⠅⠎⠑⠇⠇⠻⠎" }, { "input": "bookshelf", "output": "⠃⠕⠕⠅⠩⠑⠇⠋" }, { "input": "bookshelves", "output": "⠃⠕⠕⠅⠩⠑⠇⠧⠑⠎" }, { "input": "bookshop", "output": "⠃⠕⠕⠅⠩⠕â " }, { "input": "bookshops", "output": "⠃⠕⠕⠅⠩⠕â â Ž" }, { "input": "bookstore", "output": "⠃⠕⠕⠅⠌⠕⠗⠑" }, { "input": "bookstores", "output": "⠃⠕⠕⠅⠌⠕⠗⠑⠎" }, { "input": "bookworm", "output": "⠃⠕⠕⠅⠺⠕⠗â " }, { "input": "bookworms", "output": "⠃⠕⠕⠅⠺⠕⠗â â Ž" }, { "input": "boom", "output": "⠃⠕⠕â " }, { "input": "boomed", "output": "⠃⠕⠕â â «" }, { "input": "boomerang", "output": "⠃⠕⠕â â »â â â ›" }, { "input": "boomeranged", "output": "⠃⠕⠕â â »â â â ›â «" }, { "input": "boomeranging", "output": "⠃⠕⠕â â »â â â ›â ¬" }, { "input": "boomerangs", "output": "⠃⠕⠕â â »â â â ›â Ž" }, { "input": "booming", "output": "⠃⠕⠕â â ¬" }, { "input": "booms", "output": "⠃⠕⠕â â Ž" }, { "input": "boon", "output": "⠃⠕⠕â " }, { "input": "boondocks", "output": "⠃⠕⠕â â ™â •⠉⠅⠎" }, { "input": "boondoggle", "output": "⠃⠕⠕â â ™â •⠶⠇⠑" }, { "input": "boondoggled", "output": "⠃⠕⠕â â ™â •⠶⠇⠫" }, { "input": "boondoggles", "output": "⠃⠕⠕â â ™â •⠶⠇⠑⠎" }, { "input": "boondoggling", "output": "⠃⠕⠕â â ™â •⠶⠇⠬" }, { "input": "boons", "output": "⠃⠕⠕â â Ž" }, { "input": "boor", "output": "⠃⠕⠕⠗" }, { "input": "boorish", "output": "⠃⠕⠕⠗⠊⠩" }, { "input": "boorishly", "output": "⠃⠕⠕⠗⠊⠩⠇⠽" }, { "input": "boors", "output": "⠃⠕⠕⠗⠎" }, { "input": "boos", "output": "⠃⠕⠕⠎" }, { "input": "boost", "output": "⠃⠕⠕⠌" }, { "input": "boosted", "output": "⠃⠕⠕⠌⠫" }, { "input": "booster", "output": "⠃⠕⠕⠌⠻" }, { "input": "boosters", "output": "⠃⠕⠕⠌⠻⠎" }, { "input": "boosting", "output": "⠃⠕⠕⠌⠬" }, { "input": "boosts", "output": "⠃⠕⠕⠌⠎" }, { "input": "boot", "output": "⠃⠕⠕⠞" }, { "input": "bootblack", "output": "⠃⠕⠕⠞⠃⠇â â ‰â …" }, { "input": "bootblacks", "output": "⠃⠕⠕⠞⠃⠇â â ‰â …â Ž" }, { "input": "booted", "output": "⠃⠕⠕⠞⠫" }, { "input": "bootee", "output": "⠃⠕⠕⠞⠑⠑" }, { "input": "bootees", "output": "⠃⠕⠕⠞⠑⠑⠎" }, { "input": "booth", "output": "⠃⠕⠕⠹" }, { "input": "booths", "output": "⠃⠕⠕⠹⠎" }, { "input": "bootie", "output": "⠃⠕⠕⠞⠊⠑" }, { "input": "booties", "output": "⠃⠕⠕⠞⠊⠑⠎" }, { "input": "booting", "output": "⠃⠕⠕⠞⠬" }, { "input": "bootleg", "output": "⠃⠕⠕⠞⠇⠑⠛" }, { "input": "bootlegged", "output": "⠃⠕⠕⠞⠇⠑⠶⠫" }, { "input": "bootlegger", "output": "⠃⠕⠕⠞⠇⠑⠶⠻" }, { "input": "bootleggers", "output": "⠃⠕⠕⠞⠇⠑⠶⠻⠎" }, { "input": "bootlegging", "output": "⠃⠕⠕⠞⠇⠑⠶⠬" }, { "input": "bootlegs", "output": "⠃⠕⠕⠞⠇⠑⠛⠎" }, { "input": "bootless", "output": "⠃⠕⠕⠞⠨⠎" }, { "input": "boots", "output": "⠃⠕⠕⠞⠎" }, { "input": "bootstrap", "output": "⠃⠕⠕⠞⠌⠗â â " }, { "input": "bootstraps", "output": "⠃⠕⠕⠞⠌⠗â â â Ž" }, { "input": "booty", "output": "⠃⠕⠕⠞⠽" }, { "input": "booze", "output": "⠃⠕⠕⠵⠑" }, { "input": "boozed", "output": "⠃⠕⠕⠵⠫" }, { "input": "boozer", "output": "⠃⠕⠕⠵⠻" }, { "input": "boozers", "output": "⠃⠕⠕⠵⠻⠎" }, { "input": "boozes", "output": "⠃⠕⠕⠵⠑⠎" }, { "input": "boozier", "output": "⠃⠕⠕⠵⠊⠻" }, { "input": "booziest", "output": "⠃⠕⠕⠵⠊⠑⠌" }, { "input": "boozing", "output": "⠃⠕⠕⠵⠬" }, { "input": "boozy", "output": "⠃⠕⠕⠵⠽" }, { "input": "bop", "output": "⠃⠕â " }, { "input": "bopped", "output": "⠃⠕â â â «" }, { "input": "bopping", "output": "⠃⠕â â â ¬" }, { "input": "bops", "output": "⠃⠕â â Ž" }, { "input": "borax", "output": "⠃⠕⠗â â ­" }, { "input": "bordello", "output": "⠃⠕⠗⠙⠑⠇⠇⠕" }, { "input": "bordellos", "output": "⠃⠕⠗⠙⠑⠇⠇⠕⠎" }, { "input": "border", "output": "⠃⠕⠗⠙⠻" }, { "input": "bordered", "output": "⠃⠕⠗⠙⠻⠫" }, { "input": "bordering", "output": "⠃⠕⠗⠙⠻⠬" }, { "input": "borderland", "output": "⠃⠕⠗⠙⠻⠇⠯" }, { "input": "borderlands", "output": "⠃⠕⠗⠙⠻⠇⠯⠎" }, { "input": "borderline", "output": "⠃⠕⠗⠙⠻⠇⠔⠑" }, { "input": "borderlines", "output": "⠃⠕⠗⠙⠻⠇⠔⠑⠎" }, { "input": "borders", "output": "⠃⠕⠗⠙⠻⠎" }, { "input": "bore", "output": "⠃⠕⠗⠑" }, { "input": "bored", "output": "⠃⠕⠗⠫" }, { "input": "boredom", "output": "⠃⠕⠗⠫⠕â " }, { "input": "borer", "output": "⠃⠕⠗⠻" }, { "input": "borers", "output": "⠃⠕⠗⠻⠎" }, { "input": "bores", "output": "⠃⠕⠗⠑⠎" }, { "input": "boring", "output": "⠃⠕⠗⠬" }, { "input": "boringly", "output": "⠃⠕⠗⠬⠇⠽" }, { "input": "born", "output": "⠃⠕⠗â " }, { "input": "borne", "output": "⠃⠕⠗â â ‘" }, { "input": "boron", "output": "⠃⠕⠗⠕â " }, { "input": "borough", "output": "⠃⠕⠗⠳⠣" }, { "input": "boroughs", "output": "⠃⠕⠗⠳⠣⠎" }, { "input": "borrow", "output": "⠃⠕⠗⠗⠪" }, { "input": "borrowed", "output": "⠃⠕⠗⠗⠪⠫" }, { "input": "borrower", "output": "⠃⠕⠗⠗⠪⠻" }, { "input": "borrowers", "output": "⠃⠕⠗⠗⠪⠻⠎" }, { "input": "borrowing", "output": "⠃⠕⠗⠗⠪⠬" }, { "input": "borrows", "output": "⠃⠕⠗⠗⠪⠎" }, { "input": "borsch", "output": "⠃⠕⠗⠎⠡" }, { "input": "borscht", "output": "⠃⠕⠗⠎⠡⠞" }, { "input": "bosh", "output": "⠃⠕⠩" }, { "input": "bosom", "output": "⠃⠕⠎⠕â " }, { "input": "bosoms", "output": "⠃⠕⠎⠕â â Ž" }, { "input": "boss", "output": "⠃⠕⠎⠎" }, { "input": "bossed", "output": "⠃⠕⠎⠎⠫" }, { "input": "bosses", "output": "⠃⠕⠎⠎⠑⠎" }, { "input": "bossier", "output": "⠃⠕⠎⠎⠊⠻" }, { "input": "bossiest", "output": "⠃⠕⠎⠎⠊⠑⠌" }, { "input": "bossily", "output": "⠃⠕⠎⠎⠊⠇⠽" }, { "input": "bossiness", "output": "⠃⠕⠎⠎⠊⠰⠎" }, { "input": "bossing", "output": "⠃⠕⠎⠎⠬" }, { "input": "bossy", "output": "⠃⠕⠎⠎⠽" }, { "input": "bosun", "output": "⠃⠕⠎⠥â " }, { "input": "bosuns", "output": "⠃⠕⠎⠥â â Ž" }, { "input": "botanical", "output": "⠃⠕⠞â â â Šâ ‰â â ‡" }, { "input": "botanist", "output": "⠃⠕⠞â â â Šâ Œ" }, { "input": "botanists", "output": "⠃⠕⠞â â â Šâ Œâ Ž" }, { "input": "botany", "output": "⠃⠕⠞â â â ½" }, { "input": "botch", "output": "⠃⠕⠞⠡" }, { "input": "botched", "output": "⠃⠕⠞⠡⠫" }, { "input": "botches", "output": "⠃⠕⠞⠡⠑⠎" }, { "input": "botching", "output": "⠃⠕⠞⠡⠬" }, { "input": "both", "output": "⠃⠕⠹" }, { "input": "bother", "output": "⠃⠕⠮⠗" }, { "input": "bothered", "output": "⠃⠕⠮⠗⠫" }, { "input": "bothering", "output": "⠃⠕⠮⠗⠬" }, { "input": "bothers", "output": "⠃⠕⠮⠗⠎" }, { "input": "bothersome", "output": "⠃⠕⠮⠗â â Ž" }, { "input": "bottle", "output": "⠃⠕⠞⠞⠇⠑" }, { "input": "bottled", "output": "⠃⠕⠞⠞⠇⠫" }, { "input": "bottleneck", "output": "⠃⠕⠞⠞⠇⠑â â ‘⠉⠅" }, { "input": "bottlenecks", "output": "⠃⠕⠞⠞⠇⠑â â ‘⠉⠅⠎" }, { "input": "bottles", "output": "⠃⠕⠞⠞⠇⠑⠎" }, { "input": "bottling", "output": "⠃⠕⠞⠞⠇⠬" }, { "input": "bottom", "output": "⠃⠕⠞⠞⠕â " }, { "input": "bottomed", "output": "⠃⠕⠞⠞⠕â â «" }, { "input": "bottoming", "output": "⠃⠕⠞⠞⠕â â ¬" }, { "input": "bottomless", "output": "⠃⠕⠞⠞⠕â â ¨â Ž" }, { "input": "bottoms", "output": "⠃⠕⠞⠞⠕â â Ž" }, { "input": "botulism", "output": "⠃⠕⠞⠥⠇⠊⠎â " }, { "input": "boudoir", "output": "⠃⠳⠙⠕⠊⠗" }, { "input": "boudoirs", "output": "⠃⠳⠙⠕⠊⠗⠎" }, { "input": "bouffant", "output": "⠃⠳⠖â â â ž" }, { "input": "bouffants", "output": "⠃⠳⠖â â â žâ Ž" }, { "input": "bough", "output": "⠃⠳⠣" }, { "input": "boughs", "output": "⠃⠳⠣⠎" }, { "input": "bought", "output": "â ƒâ â ³" }, { "input": "bouillabaisse", "output": "⠃⠳⠊⠇⠇â â ƒâ â Šâ Žâ Žâ ‘" }, { "input": "bouillabaisses", "output": "⠃⠳⠊⠇⠇â â ƒâ â Šâ Žâ Žâ ‘â Ž" }, { "input": "bouillon", "output": "⠃⠳⠊⠇⠇⠕â " }, { "input": "bouillons", "output": "⠃⠳⠊⠇⠇⠕â â Ž" }, { "input": "boulder", "output": "⠃⠳⠇⠙⠻" }, { "input": "boulders", "output": "⠃⠳⠇⠙⠻⠎" }, { "input": "boulevard", "output": "⠃⠳⠇⠑⠧⠜⠙" }, { "input": "boulevards", "output": "⠃⠳⠇⠑⠧⠜⠙⠎" }, { "input": "bounce", "output": "⠃⠳â â ‰â ‘" }, { "input": "bounced", "output": "⠃⠳â â ‰â «" }, { "input": "bouncer", "output": "⠃⠳â â ‰â »" }, { "input": "bouncers", "output": "⠃⠳â â ‰â »â Ž" }, { "input": "bounces", "output": "⠃⠳â â ‰â ‘â Ž" }, { "input": "bouncier", "output": "⠃⠳â â ‰â Šâ »" }, { "input": "bounciest", "output": "⠃⠳â â ‰â Šâ ‘â Œ" }, { "input": "bouncing", "output": "⠃⠳â â ‰â ¬" }, { "input": "bouncy", "output": "⠃⠳â â ‰â ½" }, { "input": "bound", "output": "⠃⠨⠙" }, { "input": "boundaries", "output": "⠃⠨⠙⠜⠊⠑⠎" }, { "input": "boundary", "output": "⠃⠨⠙⠜⠽" }, { "input": "bounded", "output": "⠃⠨⠙⠫" }, { "input": "bounden", "output": "⠃⠨⠙⠢" }, { "input": "bounder", "output": "⠃⠨⠙⠻" }, { "input": "bounders", "output": "⠃⠨⠙⠻⠎" }, { "input": "bounding", "output": "⠃⠨⠙⠬" }, { "input": "boundless", "output": "⠃⠨⠙⠨⠎" }, { "input": "bounds", "output": "⠃⠨⠙⠎" }, { "input": "bounteous", "output": "⠃⠨⠞⠑⠳⠎" }, { "input": "bounties", "output": "⠃⠨⠞⠊⠑⠎" }, { "input": "bountiful", "output": "⠃⠨⠞⠊⠰⠇" }, { "input": "bountifully", "output": "⠃⠨⠞⠊⠰⠇⠇⠽" }, { "input": "bounty", "output": "⠃⠨⠞⠽" }, { "input": "bouquet", "output": "⠃⠳⠟⠥⠑⠞" }, { "input": "bouquets", "output": "⠃⠳⠟⠥⠑⠞⠎" }, { "input": "bourbon", "output": "⠃⠳⠗⠃⠕â " }, { "input": "bourgeois", "output": "⠃⠳⠗⠛⠑⠕⠊⠎" }, { "input": "bourgeoisie", "output": "⠃⠳⠗⠛⠑⠕⠊⠎⠊⠑" }, { "input": "bout", "output": "⠃⠳⠞" }, { "input": "boutique", "output": "⠃⠳⠞⠊⠟⠥⠑" }, { "input": "boutiques", "output": "⠃⠳⠞⠊⠟⠥⠑⠎" }, { "input": "boutonnière", "output": "⠃⠳⠞⠕â â â Šâ  â ˜â »â â ¡â â £â —â ‘" }, { "input": "boutonnières", "output": "⠃⠳⠞⠕â â â Šâ  â ˜â »â â ¡â â £â —â ‘â Ž" }, { "input": "bouts", "output": "⠃⠳⠞⠎" }, { "input": "bovine", "output": "⠃⠕⠧⠔⠑" }, { "input": "bovines", "output": "⠃⠕⠧⠔⠑⠎" }, { "input": "bow", "output": "⠃⠪" }, { "input": "bowdlerize", "output": "⠃⠪⠙⠇⠻⠊⠵⠑" }, { "input": "bowdlerized", "output": "⠃⠪⠙⠇⠻⠊⠵⠫" }, { "input": "bowdlerizes", "output": "⠃⠪⠙⠇⠻⠊⠵⠑⠎" }, { "input": "bowdlerizing", "output": "⠃⠪⠙⠇⠻⠊⠵⠬" }, { "input": "bowed", "output": "⠃⠪⠫" }, { "input": "bowel", "output": "⠃⠪⠑⠇" }, { "input": "bowels", "output": "⠃⠪⠑⠇⠎" }, { "input": "bower", "output": "⠃⠪⠻" }, { "input": "bowers", "output": "⠃⠪⠻⠎" }, { "input": "bowing", "output": "⠃⠪⠬" }, { "input": "bowl", "output": "⠃⠪⠇" }, { "input": "bowlder", "output": "⠃⠪⠇⠙⠻" }, { "input": "bowlders", "output": "⠃⠪⠇⠙⠻⠎" }, { "input": "bowled", "output": "⠃⠪⠇⠫" }, { "input": "bowlegged", "output": "⠃⠪⠇⠑⠶⠫" }, { "input": "bowler", "output": "⠃⠪⠇⠻" }, { "input": "bowlers", "output": "⠃⠪⠇⠻⠎" }, { "input": "bowling", "output": "⠃⠪⠇⠬" }, { "input": "bowls", "output": "⠃⠪⠇⠎" }, { "input": "bowman", "output": "⠃⠪â â â " }, { "input": "bowmen", "output": "⠃⠪â â ¢" }, { "input": "bows", "output": "⠃⠪⠎" }, { "input": "bowsprit", "output": "⠃⠪⠎â â —â Šâ ž" }, { "input": "bowsprits", "output": "⠃⠪⠎â â —â Šâ žâ Ž" }, { "input": "bowstring", "output": "⠃⠪⠌⠗⠬" }, { "input": "bowstrings", "output": "⠃⠪⠌⠗⠬⠎" }, { "input": "box", "output": "⠃⠕⠭" }, { "input": "boxcar", "output": "⠃⠕⠭⠉⠜" }, { "input": "boxcars", "output": "⠃⠕⠭⠉⠜⠎" }, { "input": "boxed", "output": "⠃⠕⠭⠫" }, { "input": "boxer", "output": "⠃⠕⠭⠻" }, { "input": "boxers", "output": "⠃⠕⠭⠻⠎" }, { "input": "boxes", "output": "⠃⠕⠭⠑⠎" }, { "input": "boxing", "output": "⠃⠕⠭⠬" }, { "input": "boxwood", "output": "⠃⠕⠭⠺⠕⠕⠙" }, { "input": "boy", "output": "⠃⠕⠽" }, { "input": "boycott", "output": "⠃⠕⠽⠉⠕⠞⠞" }, { "input": "boycotted", "output": "⠃⠕⠽⠉⠕⠞⠞⠫" }, { "input": "boycotting", "output": "⠃⠕⠽⠉⠕⠞⠞⠬" }, { "input": "boycotts", "output": "⠃⠕⠽⠉⠕⠞⠞⠎" }, { "input": "boyfriend", "output": "⠃⠕⠽⠋⠗" }, { "input": "boyfriends", "output": "⠃⠕⠽⠋⠗⠎" }, { "input": "boyhood", "output": "⠃⠕⠽⠓⠕⠕⠙" }, { "input": "boyhoods", "output": "⠃⠕⠽⠓⠕⠕⠙⠎" }, { "input": "boyish", "output": "⠃⠕⠽⠊⠩" }, { "input": "boyishly", "output": "⠃⠕⠽⠊⠩⠇⠽" }, { "input": "boyishness", "output": "⠃⠕⠽⠊⠩⠰⠎" }, { "input": "boys", "output": "⠃⠕⠽⠎" }, { "input": "boysenberries", "output": "⠃⠕⠽⠎⠢⠃⠻⠗⠊⠑⠎" }, { "input": "boysenberry", "output": "⠃⠕⠽⠎⠢⠃⠻⠗⠽" }, { "input": "bozo", "output": "⠃⠕⠵⠕" }, { "input": "bozos", "output": "⠃⠕⠵⠕⠎" }, { "input": "bra", "output": "⠃⠗â " }, { "input": "brace", "output": "⠃⠗â â ‰â ‘" }, { "input": "braced", "output": "⠃⠗â â ‰â «" }, { "input": "bracelet", "output": "⠃⠗â â ‰â ‘⠇⠑⠞" }, { "input": "bracelets", "output": "⠃⠗â â ‰â ‘⠇⠑⠞⠎" }, { "input": "braces", "output": "⠃⠗â â ‰â ‘â Ž" }, { "input": "bracing", "output": "⠃⠗â â ‰â ¬" }, { "input": "bracken", "output": "⠃⠗â â ‰â …â ¢" }, { "input": "bracket", "output": "⠃⠗â â ‰â …â ‘â ž" }, { "input": "bracketed", "output": "⠃⠗â â ‰â …â ‘â žâ «" }, { "input": "bracketing", "output": "⠃⠗â â ‰â …â ‘â žâ ¬" }, { "input": "brackets", "output": "⠃⠗â â ‰â …â ‘â žâ Ž" }, { "input": "brackish", "output": "⠃⠗â â ‰â …â Šâ ©" }, { "input": "bract", "output": "⠃⠗â â ‰â ž" }, { "input": "bracts", "output": "⠃⠗â â ‰â žâ Ž" }, { "input": "brad", "output": "⠃⠗â â ™" }, { "input": "brads", "output": "⠃⠗â â ™â Ž" }, { "input": "brag", "output": "⠃⠗â â ›" }, { "input": "braggart", "output": "⠃⠗â â ¶â œâ ž" }, { "input": "braggarts", "output": "⠃⠗â â ¶â œâ žâ Ž" }, { "input": "bragged", "output": "⠃⠗â â ¶â «" }, { "input": "bragger", "output": "⠃⠗â â ¶â »" }, { "input": "braggers", "output": "⠃⠗â â ¶â »â Ž" }, { "input": "bragging", "output": "⠃⠗â â ¶â ¬" }, { "input": "brags", "output": "⠃⠗â â ›â Ž" }, { "input": "braid", "output": "⠃⠗â â Šâ ™" }, { "input": "braided", "output": "⠃⠗â â Šâ ™â «" }, { "input": "braiding", "output": "⠃⠗â â Šâ ™â ¬" }, { "input": "braids", "output": "⠃⠗â â Šâ ™â Ž" }, { "input": "braille", "output": "⠃⠗⠇" }, { "input": "brain", "output": "⠃⠗â â ”" }, { "input": "brainchild", "output": "⠃⠗â â ”⠡⠊⠇⠙" }, { "input": "brainchildren", "output": "⠃⠗â â ”â ¡â " }, { "input": "brained", "output": "⠃⠗â â ”â «" }, { "input": "brainier", "output": "⠃⠗â â ”â Šâ »" }, { "input": "brainiest", "output": "⠃⠗â â ”â Šâ ‘â Œ" }, { "input": "braining", "output": "⠃⠗â â ”â ¬" }, { "input": "brainless", "output": "⠃⠗â â ”⠨⠎" }, { "input": "brains", "output": "⠃⠗â â ”â Ž" }, { "input": "brainstorm", "output": "⠃⠗â â ”⠌⠕⠗â " }, { "input": "brainstormed", "output": "⠃⠗â â ”⠌⠕⠗â â «" }, { "input": "brainstorming", "output": "⠃⠗â â ”⠌⠕⠗â â ¬" }, { "input": "brainstorms", "output": "⠃⠗â â ”⠌⠕⠗â â Ž" }, { "input": "brainteaser", "output": "⠃⠗â â ”â žâ ‚â Žâ »" }, { "input": "brainteasers", "output": "⠃⠗â â ”⠞⠂⠎⠻⠎" }, { "input": "brainwash", "output": "⠃⠗â â ”â ºâ â ©" }, { "input": "brainwashed", "output": "⠃⠗â â ”â ºâ â ©â «" }, { "input": "brainwashes", "output": "⠃⠗â â ”â ºâ â ©â ‘â Ž" }, { "input": "brainwashing", "output": "⠃⠗â â ”â ºâ â ©â ¬" }, { "input": "brainy", "output": "⠃⠗â â ”â ½" }, { "input": "braise", "output": "⠃⠗â â Šâ Žâ ‘" }, { "input": "braised", "output": "⠃⠗â â Šâ Žâ «" }, { "input": "braises", "output": "⠃⠗â â Šâ Žâ ‘â Ž" }, { "input": "braising", "output": "⠃⠗â â Šâ Žâ ¬" }, { "input": "brake", "output": "⠃⠗â â …â ‘" }, { "input": "braked", "output": "⠃⠗â â …â «" }, { "input": "brakeman", "output": "⠃⠗â â …â ‘â â â " }, { "input": "brakemen", "output": "⠃⠗â â …â ‘â â ¢" }, { "input": "brakes", "output": "⠃⠗â â …â ‘â Ž" }, { "input": "braking", "output": "⠃⠗â â …â ¬" }, { "input": "bramble", "output": "⠃⠗â â â ƒâ ‡â ‘" }, { "input": "brambles", "output": "⠃⠗â â â ƒâ ‡â ‘â Ž" }, { "input": "bran", "output": "⠃⠗â â " }, { "input": "branch", "output": "⠃⠗â â â ¡" }, { "input": "branched", "output": "⠃⠗â â â ¡â «" }, { "input": "branches", "output": "⠃⠗â â â ¡â ‘â Ž" }, { "input": "branching", "output": "⠃⠗â â â ¡â ¬" }, { "input": "brand", "output": "⠃⠗⠯" }, { "input": "branded", "output": "⠃⠗⠯⠫" }, { "input": "brandied", "output": "⠃⠗⠯⠊⠫" }, { "input": "brandies", "output": "⠃⠗⠯⠊⠑⠎" }, { "input": "branding", "output": "⠃⠗⠯⠬" }, { "input": "brandish", "output": "⠃⠗⠯⠊⠩" }, { "input": "brandished", "output": "⠃⠗⠯⠊⠩⠫" }, { "input": "brandishes", "output": "⠃⠗⠯⠊⠩⠑⠎" }, { "input": "brandishing", "output": "⠃⠗⠯⠊⠩⠬" }, { "input": "brands", "output": "⠃⠗⠯⠎" }, { "input": "brandy", "output": "⠃⠗⠯⠽" }, { "input": "brandying", "output": "⠃⠗⠯⠽⠬" }, { "input": "bras", "output": "⠃⠗â â Ž" }, { "input": "brash", "output": "⠃⠗â â ©" }, { "input": "brasher", "output": "⠃⠗â â ©â »" }, { "input": "brashest", "output": "⠃⠗â â ©â ‘â Œ" }, { "input": "brashly", "output": "⠃⠗â â ©â ‡â ½" }, { "input": "brashness", "output": "⠃⠗â â ©â °â Ž" }, { "input": "brass", "output": "⠃⠗â â Žâ Ž" }, { "input": "brasses", "output": "⠃⠗â â Žâ Žâ ‘â Ž" }, { "input": "brassier", "output": "⠃⠗â â Žâ Žâ Šâ »" }, { "input": "brassiere", "output": "⠃⠗â â Žâ Žâ Šâ »â ‘" }, { "input": "brassieres", "output": "⠃⠗â â Žâ Žâ Šâ »â ‘â Ž" }, { "input": "brassiest", "output": "⠃⠗â â Žâ Žâ Šâ ‘â Œ" }, { "input": "brassy", "output": "⠃⠗â â Žâ Žâ ½" }, { "input": "brat", "output": "⠃⠗â â ž" }, { "input": "brats", "output": "⠃⠗â â žâ Ž" }, { "input": "brattier", "output": "⠃⠗â â žâ žâ Šâ »" }, { "input": "brattiest", "output": "⠃⠗â â žâ žâ Šâ ‘â Œ" }, { "input": "bratty", "output": "⠃⠗â â žâ žâ ½" }, { "input": "bravado", "output": "⠃⠗â â §â â ™â •" }, { "input": "brave", "output": "⠃⠗â â §â ‘" }, { "input": "braved", "output": "⠃⠗â â §â «" }, { "input": "bravely", "output": "⠃⠗â â §â ‘⠇⠽" }, { "input": "braver", "output": "⠃⠗â â §â »" }, { "input": "bravery", "output": "⠃⠗â â §â »â ½" }, { "input": "braves", "output": "⠃⠗â â §â ‘â Ž" }, { "input": "bravest", "output": "⠃⠗â â §â ‘â Œ" }, { "input": "braving", "output": "⠃⠗â â §â ¬" }, { "input": "bravo", "output": "⠃⠗â â §â •" }, { "input": "bravos", "output": "⠃⠗â â §â •â Ž" }, { "input": "bravura", "output": "⠃⠗â â §â ¥â —â " }, { "input": "bravuras", "output": "⠃⠗â â §â ¥â —â â Ž" }, { "input": "brawl", "output": "⠃⠗â â ºâ ‡" }, { "input": "brawled", "output": "⠃⠗â â ºâ ‡â «" }, { "input": "brawler", "output": "⠃⠗â â ºâ ‡â »" }, { "input": "brawlers", "output": "⠃⠗â â ºâ ‡â »â Ž" }, { "input": "brawling", "output": "⠃⠗â â ºâ ‡â ¬" }, { "input": "brawls", "output": "⠃⠗â â ºâ ‡â Ž" }, { "input": "brawn", "output": "⠃⠗â â ºâ " }, { "input": "brawnier", "output": "⠃⠗â â ºâ â Šâ »" }, { "input": "brawniest", "output": "⠃⠗â â ºâ â Šâ ‘â Œ" }, { "input": "brawniness", "output": "⠃⠗â â ºâ â Šâ °â Ž" }, { "input": "brawny", "output": "⠃⠗â â ºâ â ½" }, { "input": "bray", "output": "⠃⠗â â ½" }, { "input": "brayed", "output": "⠃⠗â â ½â «" }, { "input": "braying", "output": "⠃⠗â â ½â ¬" }, { "input": "brays", "output": "⠃⠗â â ½â Ž" }, { "input": "brazen", "output": "⠃⠗â â µâ ¢" }, { "input": "brazened", "output": "⠃⠗â â µâ ¢â «" }, { "input": "brazening", "output": "⠃⠗â â µâ ¢â ¬" }, { "input": "brazenly", "output": "⠃⠗â â µâ ¢â ‡â ½" }, { "input": "brazenness", "output": "⠃⠗â â µâ ¢â °â Ž" }, { "input": "brazens", "output": "⠃⠗â â µâ ¢â Ž" }, { "input": "brazier", "output": "⠃⠗â â µâ Šâ »" }, { "input": "braziers", "output": "⠃⠗â â µâ Šâ »â Ž" }, { "input": "breach", "output": "⠃⠗⠂⠡" }, { "input": "breached", "output": "⠃⠗⠂⠡⠫" }, { "input": "breaches", "output": "⠃⠗⠂⠡⠑⠎" }, { "input": "breaching", "output": "⠃⠗⠂⠡⠬" }, { "input": "bread", "output": "⠃⠗⠂⠙" }, { "input": "breadbasket", "output": "⠃⠗⠂⠙⠃â â Žâ …â ‘â ž" }, { "input": "breadbaskets", "output": "⠃⠗⠂⠙⠃â â Žâ …â ‘â žâ Ž" }, { "input": "breaded", "output": "⠃⠗⠂⠙⠫" }, { "input": "breadfruit", "output": "⠃⠗⠂⠙⠋⠗⠥⠊⠞" }, { "input": "breadfruits", "output": "⠃⠗⠂⠙⠋⠗⠥⠊⠞⠎" }, { "input": "breading", "output": "⠃⠗⠂⠙⠬" }, { "input": "breads", "output": "⠃⠗⠂⠙⠎" }, { "input": "breadth", "output": "⠃⠗⠂⠙⠹" }, { "input": "breadths", "output": "⠃⠗⠂⠙⠹⠎" }, { "input": "breadwinner", "output": "⠃⠗⠂⠙⠺⠔â â »" }, { "input": "breadwinners", "output": "⠃⠗⠂⠙⠺⠔â â »â Ž" }, { "input": "break", "output": "⠃⠗⠂⠅" }, { "input": "breakable", "output": "⠃⠗⠂⠅â â ƒâ ‡â ‘" }, { "input": "breakables", "output": "⠃⠗⠂⠅â â ƒâ ‡â ‘â Ž" }, { "input": "breakage", "output": "⠃⠗⠂⠅â â ›â ‘" }, { "input": "breakages", "output": "⠃⠗⠂⠅â â ›â ‘â Ž" }, { "input": "breakdown", "output": "⠃⠗⠂⠅⠙⠪â " }, { "input": "breakdowns", "output": "⠃⠗⠂⠅⠙⠪â â Ž" }, { "input": "breaker", "output": "⠃⠗⠂⠅⠻" }, { "input": "breakers", "output": "⠃⠗⠂⠅⠻⠎" }, { "input": "breakfast", "output": "⠃⠗⠂⠅⠋â â Œ" }, { "input": "breakfasted", "output": "⠃⠗⠂⠅⠋â â Œâ «" }, { "input": "breakfasting", "output": "⠃⠗⠂⠅⠋â â Œâ ¬" }, { "input": "breakfasts", "output": "⠃⠗⠂⠅⠋â â Œâ Ž" }, { "input": "breaking", "output": "⠃⠗⠂⠅⠬" }, { "input": "breakneck", "output": "⠃⠗⠂⠅â â ‘⠉⠅" }, { "input": "breakpoints", "output": "⠃⠗⠂⠅â â •⠔⠞⠎" }, { "input": "breaks", "output": "⠃⠗⠂⠅⠎" }, { "input": "breakthrough", "output": "⠃⠗⠂⠅â â ¹" }, { "input": "breakthroughs", "output": "⠃⠗⠂⠅â â ¹â Ž" }, { "input": "breakup", "output": "⠃⠗⠂⠅⠥â " }, { "input": "breakups", "output": "⠃⠗⠂⠅⠥â â Ž" }, { "input": "breakwater", "output": "⠃⠗⠂⠅⠺â â žâ »" }, { "input": "breakwaters", "output": "⠃⠗⠂⠅⠺â â žâ »â Ž" }, { "input": "breast", "output": "⠃⠗⠂⠌" }, { "input": "breastbone", "output": "⠃⠗⠂⠌⠃â â •" }, { "input": "breastbones", "output": "⠃⠗⠂⠌⠃â â •â Ž" }, { "input": "breasted", "output": "⠃⠗⠂⠌⠫" }, { "input": "breasting", "output": "⠃⠗⠂⠌⠬" }, { "input": "breastplate", "output": "⠃⠗⠂⠌â â ‡â â žâ ‘" }, { "input": "breastplates", "output": "⠃⠗⠂⠌â â ‡â â žâ ‘â Ž" }, { "input": "breasts", "output": "⠃⠗⠂⠌⠎" }, { "input": "breaststroke", "output": "⠃⠗⠂⠌⠌⠗⠕⠅⠑" }, { "input": "breaststrokes", "output": "⠃⠗⠂⠌⠌⠗⠕⠅⠑⠎" }, { "input": "breastwork", "output": "⠃⠗⠂⠌â â º" }, { "input": "breastworks", "output": "⠃⠗⠂⠌â â ºâ Ž" }, { "input": "breath", "output": "⠃⠗⠂⠹" }, { "input": "breathable", "output": "⠃⠗⠂⠹â â ƒâ ‡â ‘" }, { "input": "breathe", "output": "⠃⠗⠂⠮" }, { "input": "breathed", "output": "⠃⠗⠂⠮⠙" }, { "input": "breather", "output": "⠃⠗⠂⠮⠗" }, { "input": "breathers", "output": "⠃⠗⠂⠮⠗⠎" }, { "input": "breathes", "output": "⠃⠗⠂⠮⠎" }, { "input": "breathier", "output": "⠃⠗⠂⠹⠊⠻" }, { "input": "breathiest", "output": "⠃⠗⠂⠹⠊⠑⠌" }, { "input": "breathing", "output": "⠃⠗⠂⠹⠬" }, { "input": "breathless", "output": "⠃⠗⠂⠹⠨⠎" }, { "input": "breathlessly", "output": "⠃⠗⠂⠹⠨⠎⠇⠽" }, { "input": "breathlessness", "output": "⠃⠗⠂⠹⠨⠎⠰⠎" }, { "input": "breaths", "output": "⠃⠗⠂⠹⠎" }, { "input": "breathtaking", "output": "⠃⠗⠂⠹⠞â â …â ¬" }, { "input": "breathtakingly", "output": "⠃⠗⠂⠹⠞â â …⠬⠇⠽" }, { "input": "breathy", "output": "⠃⠗⠂⠹⠽" }, { "input": "bred", "output": "⠃⠗⠫" }, { "input": "breech", "output": "⠃⠗⠑⠑⠡" }, { "input": "breeches", "output": "⠃⠗⠑⠑⠡⠑⠎" }, { "input": "breed", "output": "⠃⠗⠑⠫" }, { "input": "breeder", "output": "⠃⠗⠑⠫⠻" }, { "input": "breeders", "output": "⠃⠗⠑⠫⠻⠎" }, { "input": "breeding", "output": "⠃⠗⠑⠫⠬" }, { "input": "breeds", "output": "⠃⠗⠑⠫⠎" }, { "input": "breeze", "output": "⠃⠗⠑⠑⠵⠑" }, { "input": "breezed", "output": "⠃⠗⠑⠑⠵⠫" }, { "input": "breezes", "output": "⠃⠗⠑⠑⠵⠑⠎" }, { "input": "breezier", "output": "⠃⠗⠑⠑⠵⠊⠻" }, { "input": "breeziest", "output": "⠃⠗⠑⠑⠵⠊⠑⠌" }, { "input": "breezily", "output": "⠃⠗⠑⠑⠵⠊⠇⠽" }, { "input": "breeziness", "output": "⠃⠗⠑⠑⠵⠊⠰⠎" }, { "input": "breezing", "output": "⠃⠗⠑⠑⠵⠬" }, { "input": "breezy", "output": "⠃⠗⠑⠑⠵⠽" }, { "input": "brethren", "output": "⠃⠗⠑⠹⠗⠢" }, { "input": "breviaries", "output": "⠃⠗⠑⠧⠊⠜⠊⠑⠎" }, { "input": "breviary", "output": "⠃⠗⠑⠧⠊⠜⠽" }, { "input": "brevity", "output": "⠃⠗⠑⠧⠰⠽" }, { "input": "brew", "output": "⠃⠗⠑⠺" }, { "input": "brewed", "output": "⠃⠗⠑⠺⠫" }, { "input": "brewer", "output": "⠃⠗⠑⠺⠻" }, { "input": "breweries", "output": "⠃⠗⠑⠺⠻⠊⠑⠎" }, { "input": "brewers", "output": "⠃⠗⠑⠺⠻⠎" }, { "input": "brewery", "output": "⠃⠗⠑⠺⠻⠽" }, { "input": "brewing", "output": "⠃⠗⠑⠺⠬" }, { "input": "brews", "output": "⠃⠗⠑⠺⠎" }, { "input": "briar", "output": "⠃⠗⠊⠜" }, { "input": "briars", "output": "⠃⠗⠊⠜⠎" }, { "input": "bribe", "output": "⠃⠗⠊⠃⠑" }, { "input": "bribed", "output": "⠃⠗⠊⠃⠫" }, { "input": "bribery", "output": "⠃⠗⠊⠃⠻⠽" }, { "input": "bribes", "output": "⠃⠗⠊⠃⠑⠎" }, { "input": "bribing", "output": "⠃⠗⠊⠃⠬" }, { "input": "brick", "output": "⠃⠗⠊⠉⠅" }, { "input": "brickbat", "output": "⠃⠗⠊⠉⠅⠃â â ž" }, { "input": "brickbats", "output": "⠃⠗⠊⠉⠅⠃â â žâ Ž" }, { "input": "bricked", "output": "⠃⠗⠊⠉⠅⠫" }, { "input": "bricking", "output": "⠃⠗⠊⠉⠅⠬" }, { "input": "bricklayer", "output": "⠃⠗⠊⠉⠅⠇â â ½â »" }, { "input": "bricklayers", "output": "⠃⠗⠊⠉⠅⠇â â ½â »â Ž" }, { "input": "bricklaying", "output": "⠃⠗⠊⠉⠅⠇â â ½â ¬" }, { "input": "bricks", "output": "⠃⠗⠊⠉⠅⠎" }, { "input": "bridal", "output": "⠃⠗⠊⠙â â ‡" }, { "input": "bridals", "output": "⠃⠗⠊⠙â â ‡â Ž" }, { "input": "bride", "output": "⠃⠗⠊⠙⠑" }, { "input": "bridegroom", "output": "⠃⠗⠊⠙⠑⠛⠗⠕⠕â " }, { "input": "bridegrooms", "output": "⠃⠗⠊⠙⠑⠛⠗⠕⠕â â Ž" }, { "input": "brides", "output": "⠃⠗⠊⠙⠑⠎" }, { "input": "bridesmaid", "output": "⠃⠗⠊⠙⠑⠎â â â Šâ ™" }, { "input": "bridesmaids", "output": "⠃⠗⠊⠙⠑⠎â â â Šâ ™â Ž" }, { "input": "bridge", "output": "⠃⠗⠊⠙⠛⠑" }, { "input": "bridged", "output": "⠃⠗⠊⠙⠛⠫" }, { "input": "bridgehead", "output": "⠃⠗⠊⠙⠛⠑⠓⠂⠙" }, { "input": "bridgeheads", "output": "⠃⠗⠊⠙⠛⠑⠓⠂⠙⠎" }, { "input": "bridges", "output": "⠃⠗⠊⠙⠛⠑⠎" }, { "input": "bridgework", "output": "⠃⠗⠊⠙⠛⠑â â º" }, { "input": "bridging", "output": "⠃⠗⠊⠙⠛⠬" }, { "input": "bridle", "output": "⠃⠗⠊⠙⠇⠑" }, { "input": "bridled", "output": "⠃⠗⠊⠙⠇⠫" }, { "input": "bridles", "output": "⠃⠗⠊⠙⠇⠑⠎" }, { "input": "bridling", "output": "⠃⠗⠊⠙⠇⠬" }, { "input": "brief", "output": "⠃⠗⠊⠑⠋" }, { "input": "briefcase", "output": "⠃⠗⠊⠑⠋⠉â â Žâ ‘" }, { "input": "briefcases", "output": "⠃⠗⠊⠑⠋⠉â â Žâ ‘â Ž" }, { "input": "briefed", "output": "⠃⠗⠊⠑⠋⠫" }, { "input": "briefer", "output": "⠃⠗⠊⠑⠋⠻" }, { "input": "briefest", "output": "⠃⠗⠊⠑⠋⠑⠌" }, { "input": "briefing", "output": "⠃⠗⠊⠑⠋⠬" }, { "input": "briefings", "output": "⠃⠗⠊⠑⠋⠬⠎" }, { "input": "briefly", "output": "⠃⠗⠊⠑⠋⠇⠽" }, { "input": "briefness", "output": "⠃⠗⠊⠑⠋⠰⠎" }, { "input": "briefs", "output": "⠃⠗⠊⠑⠋⠎" }, { "input": "brier", "output": "⠃⠗⠊⠻" }, { "input": "briers", "output": "⠃⠗⠊⠻⠎" }, { "input": "brig", "output": "⠃⠗⠊⠛" }, { "input": "brigade", "output": "⠃⠗⠊⠛â â ™â ‘" }, { "input": "brigades", "output": "⠃⠗⠊⠛â â ™â ‘â Ž" }, { "input": "brigand", "output": "⠃⠗⠊⠛⠯" }, { "input": "brigandage", "output": "⠃⠗⠊⠛⠯â â ›â ‘" }, { "input": "brigands", "output": "⠃⠗⠊⠛⠯⠎" }, { "input": "brigantine", "output": "⠃⠗⠊⠛â â â žâ ”â ‘" }, { "input": "brigantines", "output": "⠃⠗⠊⠛â â â žâ ”â ‘â Ž" }, { "input": "bright", "output": "â ƒâ â —" }, { "input": "brighten", "output": "â ƒâ â —â ¢" }, { "input": "brightened", "output": "â ƒâ â —⠢⠫" }, { "input": "brightening", "output": "â ƒâ â —⠢⠬" }, { "input": "brightens", "output": "â ƒâ â —⠢⠎" }, { "input": "brighter", "output": "â ƒâ â —â »" }, { "input": "brightest", "output": "â ƒâ â —â ‘â Œ" }, { "input": "brightly", "output": "â ƒâ â —⠇⠽" }, { "input": "brightness", "output": "â ƒâ â —â °â Ž" }, { "input": "brigs", "output": "⠃⠗⠊⠛⠎" }, { "input": "brilliance", "output": "⠃⠗⠊⠇⠇⠊⠨⠑" }, { "input": "brilliancy", "output": "⠃⠗⠊⠇⠇⠊â â â ‰â ½" }, { "input": "brilliant", "output": "⠃⠗⠊⠇⠇⠊â â â ž" }, { "input": "brilliantly", "output": "⠃⠗⠊⠇⠇⠊â â â žâ ‡â ½" }, { "input": "brilliants", "output": "⠃⠗⠊⠇⠇⠊â â â žâ Ž" }, { "input": "brim", "output": "⠃⠗⠊â " }, { "input": "brimful", "output": "⠃⠗⠊â â °â ‡" }, { "input": "brimfull", "output": "⠃⠗⠊â â °â ‡â ‡" }, { "input": "brimmed", "output": "⠃⠗⠊â â â «" }, { "input": "brimming", "output": "⠃⠗⠊â â â ¬" }, { "input": "brims", "output": "⠃⠗⠊â â Ž" }, { "input": "brimstone", "output": "⠃⠗⠊â â Œâ â •" }, { "input": "brindled", "output": "⠃⠗⠔⠙⠇⠫" }, { "input": "brine", "output": "⠃⠗⠔⠑" }, { "input": "bring", "output": "⠃⠗⠬" }, { "input": "bringing", "output": "⠃⠗⠬⠬" }, { "input": "brings", "output": "⠃⠗⠬⠎" }, { "input": "brinier", "output": "⠃⠗⠔⠊⠻" }, { "input": "briniest", "output": "⠃⠗⠔⠊⠑⠌" }, { "input": "brink", "output": "⠃⠗⠔⠅" }, { "input": "brinkmanship", "output": "⠃⠗⠔⠅â â â â ©â Šâ " }, { "input": "brinks", "output": "⠃⠗⠔⠅⠎" }, { "input": "brinksmanship", "output": "⠃⠗⠔⠅⠎â â â â ©â Šâ " }, { "input": "briny", "output": "⠃⠗⠔⠽" }, { "input": "briquet", "output": "⠃⠗⠊⠟⠥⠑⠞" }, { "input": "briquets", "output": "⠃⠗⠊⠟⠥⠑⠞⠎" }, { "input": "briquette", "output": "⠃⠗⠊⠟⠥⠑⠞⠞⠑" }, { "input": "briquettes", "output": "⠃⠗⠊⠟⠥⠑⠞⠞⠑⠎" }, { "input": "brisk", "output": "⠃⠗⠊⠎⠅" }, { "input": "brisked", "output": "⠃⠗⠊⠎⠅⠫" }, { "input": "brisker", "output": "⠃⠗⠊⠎⠅⠻" }, { "input": "briskest", "output": "⠃⠗⠊⠎⠅⠑⠌" }, { "input": "brisket", "output": "⠃⠗⠊⠎⠅⠑⠞" }, { "input": "briskets", "output": "⠃⠗⠊⠎⠅⠑⠞⠎" }, { "input": "brisking", "output": "⠃⠗⠊⠎⠅⠬" }, { "input": "briskly", "output": "⠃⠗⠊⠎⠅⠇⠽" }, { "input": "briskness", "output": "⠃⠗⠊⠎⠅⠰⠎" }, { "input": "brisks", "output": "⠃⠗⠊⠎⠅⠎" }, { "input": "bristle", "output": "⠃⠗⠊⠌⠇⠑" }, { "input": "bristled", "output": "⠃⠗⠊⠌⠇⠫" }, { "input": "bristles", "output": "⠃⠗⠊⠌⠇⠑⠎" }, { "input": "bristlier", "output": "⠃⠗⠊⠌⠇⠊⠻" }, { "input": "bristliest", "output": "⠃⠗⠊⠌⠇⠊⠑⠌" }, { "input": "bristling", "output": "⠃⠗⠊⠌⠇⠬" }, { "input": "bristly", "output": "⠃⠗⠊⠌⠇⠽" }, { "input": "britches", "output": "⠃⠗⠊⠞⠡⠑⠎" }, { "input": "brittle", "output": "⠃⠗⠊⠞⠞⠇⠑" }, { "input": "brittleness", "output": "⠃⠗⠊⠞⠞⠇⠑⠰⠎" }, { "input": "brittler", "output": "⠃⠗⠊⠞⠞⠇⠻" }, { "input": "brittlest", "output": "⠃⠗⠊⠞⠞⠇⠑⠌" }, { "input": "broach", "output": "⠃⠗⠕â â ¡" }, { "input": "broached", "output": "⠃⠗⠕â â ¡â «" }, { "input": "broaches", "output": "⠃⠗⠕â â ¡â ‘â Ž" }, { "input": "broaching", "output": "⠃⠗⠕â â ¡â ¬" }, { "input": "broad", "output": "⠃⠗⠕â â ™" }, { "input": "broadcast", "output": "⠃⠗⠕â â ™â ‰â â Œ" }, { "input": "broadcasted", "output": "⠃⠗⠕â â ™â ‰â â Œâ «" }, { "input": "broadcaster", "output": "⠃⠗⠕â â ™â ‰â â Œâ »" }, { "input": "broadcasters", "output": "⠃⠗⠕â â ™â ‰â â Œâ »â Ž" }, { "input": "broadcasting", "output": "⠃⠗⠕â â ™â ‰â â Œâ ¬" }, { "input": "broadcasts", "output": "⠃⠗⠕â â ™â ‰â â Œâ Ž" }, { "input": "broadcloth", "output": "⠃⠗⠕â â ™â ‰â ‡â •â ¹" }, { "input": "broaden", "output": "⠃⠗⠕â â ™â ¢" }, { "input": "broadened", "output": "⠃⠗⠕â â ™â ¢â «" }, { "input": "broadening", "output": "⠃⠗⠕â â ™â ¢â ¬" }, { "input": "broadens", "output": "⠃⠗⠕â â ™â ¢â Ž" }, { "input": "broader", "output": "⠃⠗⠕â â ™â »" }, { "input": "broadest", "output": "⠃⠗⠕â â ™â ‘â Œ" }, { "input": "broadloom", "output": "⠃⠗⠕â â ™â ‡â •â •â " }, { "input": "broadly", "output": "⠃⠗⠕â â ™â ‡â ½" }, { "input": "broadness", "output": "⠃⠗⠕â â ™â °â Ž" }, { "input": "broads", "output": "⠃⠗⠕â â ™â Ž" }, { "input": "broadside", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â ‘" }, { "input": "broadsided", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â «" }, { "input": "broadsides", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â ‘â Ž" }, { "input": "broadsiding", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â ¬" }, { "input": "broadsword", "output": "⠃⠗⠕â â ™â Žâ ˜â º" }, { "input": "broadswords", "output": "⠃⠗⠕â â ™â Žâ ˜â ºâ Ž" }, { "input": "brocade", "output": "⠃⠗⠕⠉â â ™â ‘" }, { "input": "brocaded", "output": "⠃⠗⠕⠉â â ™â «" }, { "input": "brocades", "output": "⠃⠗⠕⠉â â ™â ‘â Ž" }, { "input": "brocading", "output": "⠃⠗⠕⠉â â ™â ¬" }, { "input": "broccoli", "output": "⠃⠗⠕⠒⠕⠇⠊" }, { "input": "brochure", "output": "⠃⠗⠕⠡⠥⠗⠑" }, { "input": "brochures", "output": "⠃⠗⠕⠡⠥⠗⠑⠎" }, { "input": "brogan", "output": "⠃⠗⠕⠛â â " }, { "input": "brogans", "output": "⠃⠗⠕⠛â â â Ž" }, { "input": "brogue", "output": "⠃⠗⠕⠛⠥⠑" }, { "input": "brogues", "output": "⠃⠗⠕⠛⠥⠑⠎" }, { "input": "broil", "output": "⠃⠗⠕⠊⠇" }, { "input": "broiled", "output": "⠃⠗⠕⠊⠇⠫" }, { "input": "broiler", "output": "⠃⠗⠕⠊⠇⠻" }, { "input": "broilers", "output": "⠃⠗⠕⠊⠇⠻⠎" }, { "input": "broiling", "output": "⠃⠗⠕⠊⠇⠬" }, { "input": "broils", "output": "⠃⠗⠕⠊⠇⠎" }, { "input": "broke", "output": "⠃⠗⠕⠅⠑" }, { "input": "broken", "output": "⠃⠗⠕⠅⠢" }, { "input": "brokenhearted", "output": "⠃⠗⠕⠅⠢⠓⠑⠜⠞⠫" }, { "input": "broker", "output": "⠃⠗⠕⠅⠻" }, { "input": "brokerage", "output": "⠃⠗⠕⠅⠻â â ›â ‘" }, { "input": "brokerages", "output": "⠃⠗⠕⠅⠻â â ›â ‘â Ž" }, { "input": "brokered", "output": "⠃⠗⠕⠅⠻⠫" }, { "input": "brokering", "output": "⠃⠗⠕⠅⠻⠬" }, { "input": "brokers", "output": "⠃⠗⠕⠅⠻⠎" }, { "input": "bromide", "output": "⠃⠗⠕â â Šâ ™â ‘" }, { "input": "bromides", "output": "⠃⠗⠕â â Šâ ™â ‘â Ž" }, { "input": "bromine", "output": "⠃⠗⠕â â ”â ‘" }, { "input": "bronchi", "output": "⠃⠗⠕â â ¡â Š" }, { "input": "bronchial", "output": "⠃⠗⠕â â ¡â Šâ â ‡" }, { "input": "bronchitis", "output": "⠃⠗⠕â â ¡â Šâ žâ Šâ Ž" }, { "input": "broncho", "output": "⠃⠗⠕â â ¡â •" }, { "input": "bronchos", "output": "⠃⠗⠕â â ¡â •â Ž" }, { "input": "bronchus", "output": "⠃⠗⠕â â ¡â ¥â Ž" }, { "input": "bronco", "output": "⠃⠗⠕â â ‰â •" }, { "input": "broncos", "output": "⠃⠗⠕â â ‰â •â Ž" }, { "input": "brontosaur", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —" }, { "input": "brontosauri", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —â Š" }, { "input": "brontosaurs", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —â Ž" }, { "input": "brontosaurus", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —⠥⠎" }, { "input": "brontosauruses", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —⠥⠎⠑⠎" }, { "input": "bronze", "output": "⠃⠗⠕â â µâ ‘" }, { "input": "bronzed", "output": "⠃⠗⠕â â µâ «" }, { "input": "bronzes", "output": "⠃⠗⠕â â µâ ‘â Ž" }, { "input": "bronzing", "output": "⠃⠗⠕â â µâ ¬" }, { "input": "brooch", "output": "⠃⠗⠕⠕⠡" }, { "input": "brooches", "output": "⠃⠗⠕⠕⠡⠑⠎" }, { "input": "brood", "output": "⠃⠗⠕⠕⠙" }, { "input": "brooded", "output": "⠃⠗⠕⠕⠙⠫" }, { "input": "brooder", "output": "⠃⠗⠕⠕⠙⠻" }, { "input": "brooders", "output": "⠃⠗⠕⠕⠙⠻⠎" }, { "input": "brooding", "output": "⠃⠗⠕⠕⠙⠬" }, { "input": "broods", "output": "⠃⠗⠕⠕⠙⠎" }, { "input": "brook", "output": "⠃⠗⠕⠕⠅" }, { "input": "brooked", "output": "⠃⠗⠕⠕⠅⠫" }, { "input": "brooking", "output": "⠃⠗⠕⠕⠅⠬" }, { "input": "brooks", "output": "⠃⠗⠕⠕⠅⠎" }, { "input": "broom", "output": "⠃⠗⠕⠕â " }, { "input": "brooms", "output": "⠃⠗⠕⠕â â Ž" }, { "input": "broomstick", "output": "⠃⠗⠕⠕â â Œâ Šâ ‰â …" }, { "input": "broomsticks", "output": "⠃⠗⠕⠕â â Œâ Šâ ‰â …â Ž" }, { "input": "broth", "output": "⠃⠗⠕⠹" }, { "input": "brothel", "output": "⠃⠗⠕⠮⠇" }, { "input": "brothels", "output": "⠃⠗⠕⠮⠇⠎" }, { "input": "brother", "output": "⠃⠗⠕⠮⠗" }, { "input": "brotherhood", "output": "⠃⠗⠕⠮⠗⠓⠕⠕⠙" }, { "input": "brotherhoods", "output": "⠃⠗⠕⠮⠗⠓⠕⠕⠙⠎" }, { "input": "brotherliness", "output": "⠃⠗⠕⠮⠗⠇⠊⠰⠎" }, { "input": "brotherly", "output": "⠃⠗⠕⠮⠗⠇⠽" }, { "input": "brothers", "output": "⠃⠗⠕⠮⠗⠎" }, { "input": "broths", "output": "⠃⠗⠕⠹⠎" }, { "input": "brought", "output": "⠃⠗â â ³" }, { "input": "brouhaha", "output": "⠃⠗⠳⠓â â “â " }, { "input": "brouhahas", "output": "⠃⠗⠳⠓â â “â â Ž" }, { "input": "brow", "output": "⠃⠗⠪" }, { "input": "browbeat", "output": "⠃⠗⠪⠃⠂⠞" }, { "input": "browbeaten", "output": "⠃⠗⠪⠃⠂⠞⠢" }, { "input": "browbeating", "output": "⠃⠗⠪⠃⠂⠞⠬" }, { "input": "browbeats", "output": "⠃⠗⠪⠃⠂⠞⠎" }, { "input": "brown", "output": "⠃⠗⠪â " }, { "input": "browned", "output": "⠃⠗⠪â â «" }, { "input": "browner", "output": "⠃⠗⠪â â »" }, { "input": "brownest", "output": "⠃⠗⠪â â ‘â Œ" }, { "input": "brownie", "output": "⠃⠗⠪â â Šâ ‘" }, { "input": "brownies", "output": "⠃⠗⠪â â Šâ ‘â Ž" }, { "input": "browning", "output": "⠃⠗⠪â â ¬" }, { "input": "brownish", "output": "⠃⠗⠪â â Šâ ©" }, { "input": "brownout", "output": "⠃⠗⠪â â ³â ž" }, { "input": "brownouts", "output": "⠃⠗⠪â â ³â žâ Ž" }, { "input": "browns", "output": "⠃⠗⠪â â Ž" }, { "input": "brownstone", "output": "⠃⠗⠪â â Œâ â •" }, { "input": "brownstones", "output": "⠃⠗⠪â â Œâ â •â Ž" }, { "input": "brows", "output": "⠃⠗⠪⠎" }, { "input": "browse", "output": "⠃⠗⠪⠎⠑" }, { "input": "browsed", "output": "⠃⠗⠪⠎⠫" }, { "input": "browser", "output": "⠃⠗⠪⠎⠻" }, { "input": "browsers", "output": "⠃⠗⠪⠎⠻⠎" }, { "input": "browses", "output": "⠃⠗⠪⠎⠑⠎" }, { "input": "browsing", "output": "⠃⠗⠪⠎⠬" }, { "input": "brr", "output": "⠃⠗⠗" }, { "input": "bruin", "output": "⠃⠗⠥⠔" }, { "input": "bruins", "output": "⠃⠗⠥⠔⠎" }, { "input": "bruise", "output": "⠃⠗⠥⠊⠎⠑" }, { "input": "bruised", "output": "⠃⠗⠥⠊⠎⠫" }, { "input": "bruiser", "output": "⠃⠗⠥⠊⠎⠻" }, { "input": "bruisers", "output": "⠃⠗⠥⠊⠎⠻⠎" }, { "input": "bruises", "output": "⠃⠗⠥⠊⠎⠑⠎" }, { "input": "bruising", "output": "⠃⠗⠥⠊⠎⠬" }, { "input": "brunch", "output": "⠃⠗⠥â â ¡" }, { "input": "brunched", "output": "⠃⠗⠥â â ¡â «" }, { "input": "brunches", "output": "⠃⠗⠥â â ¡â ‘â Ž" }, { "input": "brunching", "output": "⠃⠗⠥â â ¡â ¬" }, { "input": "brunet", "output": "⠃⠗⠥â â ‘â ž" }, { "input": "brunets", "output": "⠃⠗⠥â â ‘â žâ Ž" }, { "input": "brunette", "output": "⠃⠗⠥â â ‘â žâ žâ ‘" }, { "input": "brunettes", "output": "⠃⠗⠥â â ‘â žâ žâ ‘â Ž" }, { "input": "brunt", "output": "⠃⠗⠥â â ž" }, { "input": "brush", "output": "⠃⠗⠥⠩" }, { "input": "brushed", "output": "⠃⠗⠥⠩⠫" }, { "input": "brushes", "output": "⠃⠗⠥⠩⠑⠎" }, { "input": "brushing", "output": "⠃⠗⠥⠩⠬" }, { "input": "brushwood", "output": "⠃⠗⠥⠩⠺⠕⠕⠙" }, { "input": "brusk", "output": "⠃⠗⠥⠎⠅" }, { "input": "brusker", "output": "⠃⠗⠥⠎⠅⠻" }, { "input": "bruskest", "output": "⠃⠗⠥⠎⠅⠑⠌" }, { "input": "bruskly", "output": "⠃⠗⠥⠎⠅⠇⠽" }, { "input": "bruskness", "output": "⠃⠗⠥⠎⠅⠰⠎" }, { "input": "brusque", "output": "⠃⠗⠥⠎⠟⠥⠑" }, { "input": "brusquely", "output": "⠃⠗⠥⠎⠟⠥⠑⠇⠽" }, { "input": "brusqueness", "output": "⠃⠗⠥⠎⠟⠥⠑⠰⠎" }, { "input": "brusquer", "output": "⠃⠗⠥⠎⠟⠥⠻" }, { "input": "brusquest", "output": "⠃⠗⠥⠎⠟⠥⠑⠌" }, { "input": "brutal", "output": "⠃⠗⠥⠞â â ‡" }, { "input": "brutalities", "output": "⠃⠗⠥⠞â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "brutality", "output": "⠃⠗⠥⠞â â ‡â °â ½" }, { "input": "brutalize", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ ‘" }, { "input": "brutalized", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ «" }, { "input": "brutalizes", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ ‘â Ž" }, { "input": "brutalizing", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ ¬" }, { "input": "brutally", "output": "⠃⠗⠥⠞â â ‡â ‡â ½" }, { "input": "brute", "output": "⠃⠗⠥⠞⠑" }, { "input": "brutes", "output": "⠃⠗⠥⠞⠑⠎" }, { "input": "brutish", "output": "⠃⠗⠥⠞⠊⠩" }, { "input": "brutishly", "output": "⠃⠗⠥⠞⠊⠩⠇⠽" }, { "input": "bubble", "output": "⠃⠥⠆⠇⠑" }, { "input": "bubbled", "output": "⠃⠥⠆⠇⠫" }, { "input": "bubbles", "output": "⠃⠥⠆⠇⠑⠎" }, { "input": "bubblier", "output": "⠃⠥⠆⠇⠊⠻" }, { "input": "bubbliest", "output": "⠃⠥⠆⠇⠊⠑⠌" }, { "input": "bubbling", "output": "⠃⠥⠆⠇⠬" }, { "input": "bubbly", "output": "⠃⠥⠆⠇⠽" }, { "input": "buccaneer", "output": "⠃⠥⠒â â â ‘â »" }, { "input": "buccaneered", "output": "⠃⠥⠒â â â ‘⠻⠫" }, { "input": "buccaneering", "output": "⠃⠥⠒â â â ‘⠻⠬" }, { "input": "buccaneers", "output": "⠃⠥⠒â â â ‘⠻⠎" }, { "input": "buck", "output": "⠃⠥⠉⠅" }, { "input": "buckboard", "output": "⠃⠥⠉⠅⠃⠕⠜⠙" }, { "input": "buckboards", "output": "⠃⠥⠉⠅⠃⠕⠜⠙⠎" }, { "input": "bucked", "output": "⠃⠥⠉⠅⠫" }, { "input": "bucket", "output": "⠃⠥⠉⠅⠑⠞" }, { "input": "bucketed", "output": "⠃⠥⠉⠅⠑⠞⠫" }, { "input": "bucketful", "output": "⠃⠥⠉⠅⠑⠞⠰⠇" }, { "input": "bucketfuls", "output": "⠃⠥⠉⠅⠑⠞⠰⠇⠎" }, { "input": "bucketing", "output": "⠃⠥⠉⠅⠑⠞⠬" }, { "input": "buckets", "output": "⠃⠥⠉⠅⠑⠞⠎" }, { "input": "buckeye", "output": "⠃⠥⠉⠅⠑⠽⠑" }, { "input": "buckeyes", "output": "⠃⠥⠉⠅⠑⠽⠑⠎" }, { "input": "bucking", "output": "⠃⠥⠉⠅⠬" }, { "input": "buckle", "output": "⠃⠥⠉⠅⠇⠑" }, { "input": "buckled", "output": "⠃⠥⠉⠅⠇⠫" }, { "input": "buckler", "output": "⠃⠥⠉⠅⠇⠻" }, { "input": "bucklers", "output": "⠃⠥⠉⠅⠇⠻⠎" }, { "input": "buckles", "output": "⠃⠥⠉⠅⠇⠑⠎" }, { "input": "buckling", "output": "⠃⠥⠉⠅⠇⠬" }, { "input": "buckram", "output": "⠃⠥⠉⠅⠗â â " }, { "input": "bucks", "output": "⠃⠥⠉⠅⠎" }, { "input": "bucksaw", "output": "⠃⠥⠉⠅⠎â â º" }, { "input": "bucksaws", "output": "⠃⠥⠉⠅⠎â â ºâ Ž" }, { "input": "buckshot", "output": "⠃⠥⠉⠅⠩⠕⠞" }, { "input": "buckskin", "output": "⠃⠥⠉⠅⠎⠅⠔" }, { "input": "buckskins", "output": "⠃⠥⠉⠅⠎⠅⠔⠎" }, { "input": "buckteeth", "output": "⠃⠥⠉⠅⠞⠑⠑⠹" }, { "input": "bucktooth", "output": "⠃⠥⠉⠅⠞⠕⠕⠹" }, { "input": "bucktoothed", "output": "⠃⠥⠉⠅⠞⠕⠕⠮⠙" }, { "input": "buckwheat", "output": "⠃⠥⠉⠅⠱⠂⠞" }, { "input": "bucolic", "output": "⠃⠥⠉⠕⠇⠊⠉" }, { "input": "bucolics", "output": "⠃⠥⠉⠕⠇⠊⠉⠎" }, { "input": "bud", "output": "⠃⠥⠙" }, { "input": "budded", "output": "⠃⠥⠙⠙⠫" }, { "input": "buddies", "output": "⠃⠥⠙⠙⠊⠑⠎" }, { "input": "budding", "output": "⠃⠥⠙⠙⠬" }, { "input": "buddings", "output": "⠃⠥⠙⠙⠬⠎" }, { "input": "buddy", "output": "⠃⠥⠙⠙⠽" }, { "input": "budge", "output": "⠃⠥⠙⠛⠑" }, { "input": "budged", "output": "⠃⠥⠙⠛⠫" }, { "input": "budgerigar", "output": "⠃⠥⠙⠛⠻⠊⠛⠜" }, { "input": "budgerigars", "output": "⠃⠥⠙⠛⠻⠊⠛⠜⠎" }, { "input": "budges", "output": "⠃⠥⠙⠛⠑⠎" }, { "input": "budget", "output": "⠃⠥⠙⠛⠑⠞" }, { "input": "budgetary", "output": "⠃⠥⠙⠛⠑⠞⠜⠽" }, { "input": "budgeted", "output": "⠃⠥⠙⠛⠑⠞⠫" }, { "input": "budgeting", "output": "⠃⠥⠙⠛⠑⠞⠬" }, { "input": "budgets", "output": "⠃⠥⠙⠛⠑⠞⠎" }, { "input": "budgie", "output": "⠃⠥⠙⠛⠊⠑" }, { "input": "budgies", "output": "⠃⠥⠙⠛⠊⠑⠎" }, { "input": "budging", "output": "⠃⠥⠙⠛⠬" }, { "input": "buds", "output": "⠃⠥⠙⠎" }, { "input": "buff", "output": "⠃⠥⠋⠋" }, { "input": "buffalo", "output": "⠃⠥⠖â â ‡â •" }, { "input": "buffaloed", "output": "⠃⠥⠖â â ‡â •â «" }, { "input": "buffaloes", "output": "⠃⠥⠖â â ‡â •â ‘â Ž" }, { "input": "buffaloing", "output": "⠃⠥⠖â â ‡â •â ¬" }, { "input": "buffalos", "output": "⠃⠥⠖â â ‡â •â Ž" }, { "input": "buffed", "output": "⠃⠥⠖⠫" }, { "input": "buffer", "output": "⠃⠥⠖⠻" }, { "input": "buffered", "output": "⠃⠥⠖⠻⠫" }, { "input": "buffering", "output": "⠃⠥⠖⠻⠬" }, { "input": "buffers", "output": "⠃⠥⠖⠻⠎" }, { "input": "buffet", "output": "⠃⠥⠖⠑⠞" }, { "input": "buffeted", "output": "⠃⠥⠖⠑⠞⠫" }, { "input": "buffeting", "output": "⠃⠥⠖⠑⠞⠬" }, { "input": "buffets", "output": "⠃⠥⠖⠑⠞⠎" }, { "input": "buffing", "output": "⠃⠥⠖⠬" }, { "input": "buffoon", "output": "⠃⠥⠖⠕⠕â " }, { "input": "buffoonery", "output": "⠃⠥⠖⠕⠕â â »â ½" }, { "input": "buffoons", "output": "⠃⠥⠖⠕⠕â â Ž" }, { "input": "buffs", "output": "⠃⠥⠖⠎" }, { "input": "bug", "output": "⠃⠥⠛" }, { "input": "bugaboo", "output": "⠃⠥⠛â â ƒâ •â •" }, { "input": "bugaboos", "output": "⠃⠥⠛â â ƒâ •â •â Ž" }, { "input": "bugbear", "output": "⠃⠥⠛⠃⠑⠜" }, { "input": "bugbears", "output": "⠃⠥⠛⠃⠑⠜⠎" }, { "input": "bugged", "output": "⠃⠥⠶⠫" }, { "input": "bugger", "output": "⠃⠥⠶⠻" }, { "input": "buggers", "output": "⠃⠥⠶⠻⠎" }, { "input": "buggier", "output": "⠃⠥⠶⠊⠻" }, { "input": "buggies", "output": "⠃⠥⠶⠊⠑⠎" }, { "input": "buggiest", "output": "⠃⠥⠶⠊⠑⠌" }, { "input": "bugging", "output": "⠃⠥⠶⠬" }, { "input": "buggy", "output": "⠃⠥⠶⠽" }, { "input": "bugle", "output": "⠃⠥⠛⠇⠑" }, { "input": "bugled", "output": "⠃⠥⠛⠇⠫" }, { "input": "bugler", "output": "⠃⠥⠛⠇⠻" }, { "input": "buglers", "output": "⠃⠥⠛⠇⠻⠎" }, { "input": "bugles", "output": "⠃⠥⠛⠇⠑⠎" }, { "input": "bugling", "output": "⠃⠥⠛⠇⠬" }, { "input": "bugs", "output": "⠃⠥⠛⠎" }, { "input": "build", "output": "⠃⠥⠊⠇⠙" }, { "input": "builder", "output": "⠃⠥⠊⠇⠙⠻" }, { "input": "builders", "output": "⠃⠥⠊⠇⠙⠻⠎" }, { "input": "building", "output": "⠃⠥⠊⠇⠙⠬" }, { "input": "buildings", "output": "⠃⠥⠊⠇⠙⠬⠎" }, { "input": "builds", "output": "⠃⠥⠊⠇⠙⠎" }, { "input": "buildup", "output": "⠃⠥⠊⠇⠙⠥â " }, { "input": "buildups", "output": "⠃⠥⠊⠇⠙⠥â â Ž" }, { "input": "built", "output": "⠃⠥⠊⠇⠞" }, { "input": "bulb", "output": "⠃⠥⠇⠃" }, { "input": "bulbous", "output": "⠃⠥⠇⠃⠳⠎" }, { "input": "bulbs", "output": "⠃⠥⠇⠃⠎" }, { "input": "bulge", "output": "⠃⠥⠇⠛⠑" }, { "input": "bulged", "output": "⠃⠥⠇⠛⠫" }, { "input": "bulges", "output": "⠃⠥⠇⠛⠑⠎" }, { "input": "bulgier", "output": "⠃⠥⠇⠛⠊⠻" }, { "input": "bulgiest", "output": "⠃⠥⠇⠛⠊⠑⠌" }, { "input": "bulging", "output": "⠃⠥⠇⠛⠬" }, { "input": "bulgy", "output": "⠃⠥⠇⠛⠽" }, { "input": "bulimia", "output": "⠃⠥⠇⠊â â Šâ " }, { "input": "bulimic", "output": "⠃⠥⠇⠊â â Šâ ‰" }, { "input": "bulimics", "output": "⠃⠥⠇⠊â â Šâ ‰â Ž" }, { "input": "bulk", "output": "⠃⠥⠇⠅" }, { "input": "bulked", "output": "⠃⠥⠇⠅⠫" }, { "input": "bulkhead", "output": "⠃⠥⠇⠅⠓⠂⠙" }, { "input": "bulkheads", "output": "⠃⠥⠇⠅⠓⠂⠙⠎" }, { "input": "bulkier", "output": "⠃⠥⠇⠅⠊⠻" }, { "input": "bulkiest", "output": "⠃⠥⠇⠅⠊⠑⠌" }, { "input": "bulkiness", "output": "⠃⠥⠇⠅⠊⠰⠎" }, { "input": "bulking", "output": "⠃⠥⠇⠅⠬" }, { "input": "bulks", "output": "⠃⠥⠇⠅⠎" }, { "input": "bulky", "output": "⠃⠥⠇⠅⠽" }, { "input": "bull", "output": "⠃⠥⠇⠇" }, { "input": "bulldog", "output": "⠃⠥⠇⠇⠙⠕⠛" }, { "input": "bulldogged", "output": "⠃⠥⠇⠇⠙⠕⠶⠫" }, { "input": "bulldogging", "output": "⠃⠥⠇⠇⠙⠕⠶⠬" }, { "input": "bulldogs", "output": "⠃⠥⠇⠇⠙⠕⠛⠎" }, { "input": "bulldoze", "output": "⠃⠥⠇⠇⠙⠕⠵⠑" }, { "input": "bulldozed", "output": "⠃⠥⠇⠇⠙⠕⠵⠫" }, { "input": "bulldozer", "output": "⠃⠥⠇⠇⠙⠕⠵⠻" }, { "input": "bulldozers", "output": "⠃⠥⠇⠇⠙⠕⠵⠻⠎" }, { "input": "bulldozes", "output": "⠃⠥⠇⠇⠙⠕⠵⠑⠎" }, { "input": "bulldozing", "output": "⠃⠥⠇⠇⠙⠕⠵⠬" }, { "input": "bulled", "output": "⠃⠥⠇⠇⠫" }, { "input": "bullet", "output": "⠃⠥⠇⠇⠑⠞" }, { "input": "bulletin", "output": "⠃⠥⠇⠇⠑⠞⠔" }, { "input": "bulletined", "output": "⠃⠥⠇⠇⠑⠞⠔⠫" }, { "input": "bulletining", "output": "⠃⠥⠇⠇⠑⠞⠔⠬" }, { "input": "bulletins", "output": "⠃⠥⠇⠇⠑⠞⠔⠎" }, { "input": "bulletproof", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·" }, { "input": "bulletproofed", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·â «" }, { "input": "bulletproofing", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·â ¬" }, { "input": "bulletproofs", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·â Ž" }, { "input": "bullets", "output": "⠃⠥⠇⠇⠑⠞⠎" }, { "input": "bullfight", "output": "⠃⠥⠇⠇⠋⠊⠣⠞" }, { "input": "bullfighter", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠻" }, { "input": "bullfighters", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠻⠎" }, { "input": "bullfighting", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠬" }, { "input": "bullfights", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠎" }, { "input": "bullfinch", "output": "⠃⠥⠇⠇⠋⠔⠡" }, { "input": "bullfinches", "output": "⠃⠥⠇⠇⠋⠔⠡⠑⠎" }, { "input": "bullfrog", "output": "⠃⠥⠇⠇⠋⠗⠕⠛" }, { "input": "bullfrogs", "output": "⠃⠥⠇⠇⠋⠗⠕⠛⠎" }, { "input": "bullheaded", "output": "⠃⠥⠇⠇⠓⠂⠙⠫" }, { "input": "bullhorn", "output": "⠃⠥⠇⠇⠓⠕⠗â " }, { "input": "bullhorns", "output": "⠃⠥⠇⠇⠓⠕⠗â â Ž" }, { "input": "bullied", "output": "⠃⠥⠇⠇⠊⠫" }, { "input": "bullies", "output": "⠃⠥⠇⠇⠊⠑⠎" }, { "input": "bulling", "output": "⠃⠥⠇⠇⠬" }, { "input": "bullion", "output": "⠃⠥⠇⠇⠊⠕â " }, { "input": "bullish", "output": "⠃⠥⠇⠇⠊⠩" }, { "input": "bullock", "output": "⠃⠥⠇⠇⠕⠉⠅" }, { "input": "bullocks", "output": "⠃⠥⠇⠇⠕⠉⠅⠎" }, { "input": "bullpen", "output": "⠃⠥⠇⠇â â ¢" }, { "input": "bullpens", "output": "⠃⠥⠇⠇â â ¢â Ž" }, { "input": "bullring", "output": "⠃⠥⠇⠇⠗⠬" }, { "input": "bullrings", "output": "⠃⠥⠇⠇⠗⠬⠎" }, { "input": "bulls", "output": "⠃⠥⠇⠇⠎" }, { "input": "bullshit", "output": "⠃⠥⠇⠇⠩⠊⠞" }, { "input": "bullshits", "output": "⠃⠥⠇⠇⠩⠊⠞⠎" }, { "input": "bullshitted", "output": "⠃⠥⠇⠇⠩⠊⠞⠞⠫" }, { "input": "bullshitting", "output": "⠃⠥⠇⠇⠩⠊⠞⠞⠬" }, { "input": "bully", "output": "⠃⠥⠇⠇⠽" }, { "input": "bullying", "output": "⠃⠥⠇⠇⠽⠬" }, { "input": "bulrush", "output": "⠃⠥⠇⠗⠥⠩" }, { "input": "bulrushes", "output": "⠃⠥⠇⠗⠥⠩⠑⠎" }, { "input": "bulwark", "output": "⠃⠥⠇⠺⠜⠅" }, { "input": "bulwarks", "output": "⠃⠥⠇⠺⠜⠅⠎" }, { "input": "bum", "output": "⠃⠥â " }, { "input": "bumble", "output": "⠃⠥â â ƒâ ‡â ‘" }, { "input": "bumblebee", "output": "⠃⠥â â ƒâ ‡â ‘⠃⠑⠑" }, { "input": "bumblebees", "output": "⠃⠥â â ƒâ ‡â ‘⠃⠑⠑⠎" }, { "input": "bumbled", "output": "⠃⠥â â ƒâ ‡â «" }, { "input": "bumbler", "output": "⠃⠥â â ƒâ ‡â »" }, { "input": "bumblers", "output": "⠃⠥â â ƒâ ‡â »â Ž" }, { "input": "bumbles", "output": "⠃⠥â â ƒâ ‡â ‘â Ž" }, { "input": "bumbling", "output": "⠃⠥â â ƒâ ‡â ¬" }, { "input": "bummed", "output": "⠃⠥â â â «" }, { "input": "bummer", "output": "⠃⠥â â â »" }, { "input": "bummers", "output": "⠃⠥â â â »â Ž" }, { "input": "bummest", "output": "⠃⠥â â â ‘â Œ" }, { "input": "bumming", "output": "⠃⠥â â â ¬" }, { "input": "bump", "output": "⠃⠥â â " }, { "input": "bumped", "output": "⠃⠥â â â «" }, { "input": "bumper", "output": "⠃⠥â â â »" }, { "input": "bumpers", "output": "⠃⠥â â â »â Ž" }, { "input": "bumpier", "output": "⠃⠥â â â Šâ »" }, { "input": "bumpiest", "output": "⠃⠥â â â Šâ ‘â Œ" }, { "input": "bumping", "output": "⠃⠥â â â ¬" }, { "input": "bumpkin", "output": "⠃⠥â â â …â ”" }, { "input": "bumpkins", "output": "⠃⠥â â â …⠔⠎" }, { "input": "bumps", "output": "⠃⠥â â â Ž" }, { "input": "bumptious", "output": "⠃⠥â â â žâ Šâ ³â Ž" }, { "input": "bumpy", "output": "⠃⠥â â â ½" }, { "input": "bums", "output": "⠃⠥â â Ž" }, { "input": "bun", "output": "⠃⠥â " }, { "input": "bunch", "output": "⠃⠥â â ¡" }, { "input": "bunched", "output": "⠃⠥â â ¡â «" }, { "input": "bunches", "output": "⠃⠥â â ¡â ‘â Ž" }, { "input": "bunching", "output": "⠃⠥â â ¡â ¬" }, { "input": "buncombe", "output": "⠃⠥â â ‰â •â â ƒâ ‘" }, { "input": "bundle", "output": "⠃⠥â â ™â ‡â ‘" }, { "input": "bundled", "output": "⠃⠥â â ™â ‡â «" }, { "input": "bundles", "output": "⠃⠥â â ™â ‡â ‘â Ž" }, { "input": "bundling", "output": "⠃⠥â â ™â ‡â ¬" }, { "input": "bung", "output": "⠃⠥â â ›" }, { "input": "bungalow", "output": "⠃⠥â â ›â â ‡â ª" }, { "input": "bungalows", "output": "⠃⠥â â ›â â ‡â ªâ Ž" }, { "input": "bunged", "output": "⠃⠥â â ›â «" }, { "input": "bunghole", "output": "⠃⠥â â ›â “⠕⠇⠑" }, { "input": "bungholes", "output": "⠃⠥â â ›â “⠕⠇⠑⠎" }, { "input": "bunging", "output": "⠃⠥â â ›â ¬" }, { "input": "bungle", "output": "⠃⠥â â ›â ‡â ‘" }, { "input": "bungled", "output": "⠃⠥â â ›â ‡â «" }, { "input": "bungler", "output": "⠃⠥â â ›â ‡â »" }, { "input": "bunglers", "output": "⠃⠥â â ›â ‡â »â Ž" }, { "input": "bungles", "output": "⠃⠥â â ›â ‡â ‘â Ž" }, { "input": "bungling", "output": "⠃⠥â â ›â ‡â ¬" }, { "input": "bungs", "output": "⠃⠥â â ›â Ž" }, { "input": "bunion", "output": "⠃⠥â â Šâ •â " }, { "input": "bunions", "output": "⠃⠥â â Šâ •â â Ž" }, { "input": "bunk", "output": "⠃⠥â â …" }, { "input": "bunked", "output": "⠃⠥â â …â «" }, { "input": "bunker", "output": "⠃⠥â â …â »" }, { "input": "bunkers", "output": "⠃⠥â â …⠻⠎" }, { "input": "bunkhouse", "output": "⠃⠥â â …⠓⠳⠎⠑" }, { "input": "bunkhouses", "output": "⠃⠥â â …⠓⠳⠎⠑⠎" }, { "input": "bunking", "output": "⠃⠥â â …â ¬" }, { "input": "bunks", "output": "⠃⠥â â …â Ž" }, { "input": "bunkum", "output": "⠃⠥â â …â ¥â " }, { "input": "bunnies", "output": "⠃⠥â â â Šâ ‘â Ž" }, { "input": "bunny", "output": "⠃⠥â â â ½" }, { "input": "buns", "output": "⠃⠥â â Ž" }, { "input": "bunt", "output": "⠃⠥â â ž" }, { "input": "bunted", "output": "⠃⠥â â žâ «" }, { "input": "bunting", "output": "⠃⠥â â žâ ¬" }, { "input": "buntings", "output": "⠃⠥â â žâ ¬â Ž" }, { "input": "bunts", "output": "⠃⠥â â žâ Ž" }, { "input": "buoy", "output": "⠃⠥⠕⠽" }, { "input": "buoyancy", "output": "⠃⠥⠕⠽â â â ‰â ½" }, { "input": "buoyant", "output": "⠃⠥⠕⠽â â â ž" }, { "input": "buoyantly", "output": "⠃⠥⠕⠽â â â žâ ‡â ½" }, { "input": "buoyed", "output": "⠃⠥⠕⠽⠫" }, { "input": "buoying", "output": "⠃⠥⠕⠽⠬" }, { "input": "buoys", "output": "⠃⠥⠕⠽⠎" }, { "input": "bur", "output": "⠃⠥⠗" }, { "input": "burble", "output": "⠃⠥⠗⠃⠇⠑" }, { "input": "burbled", "output": "⠃⠥⠗⠃⠇⠫" }, { "input": "burbles", "output": "⠃⠥⠗⠃⠇⠑⠎" }, { "input": "burbling", "output": "⠃⠥⠗⠃⠇⠬" }, { "input": "burden", "output": "⠃⠥⠗⠙⠢" }, { "input": "burdened", "output": "⠃⠥⠗⠙⠢⠫" }, { "input": "burdening", "output": "⠃⠥⠗⠙⠢⠬" }, { "input": "burdens", "output": "⠃⠥⠗⠙⠢⠎" }, { "input": "burdensome", "output": "⠃⠥⠗⠙⠢â â Ž" }, { "input": "burdock", "output": "⠃⠥⠗⠙⠕⠉⠅" }, { "input": "bureau", "output": "⠃⠥⠗⠂⠥" }, { "input": "bureaucracies", "output": "⠃⠥⠗⠂⠥⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "bureaucracy", "output": "⠃⠥⠗⠂⠥⠉⠗â â ‰â ½" }, { "input": "bureaucrat", "output": "⠃⠥⠗⠂⠥⠉⠗â â ž" }, { "input": "bureaucratic", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ ‰" }, { "input": "bureaucratically", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "bureaucrats", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Ž" }, { "input": "bureaus", "output": "⠃⠥⠗⠂⠥⠎" }, { "input": "bureaux", "output": "⠃⠥⠗⠂⠥⠭" }, { "input": "burg", "output": "⠃⠥⠗⠛" }, { "input": "burgeon", "output": "⠃⠥⠗⠛⠑⠕â " }, { "input": "burgeoned", "output": "⠃⠥⠗⠛⠑⠕â â «" }, { "input": "burgeoning", "output": "⠃⠥⠗⠛⠑⠕â â ¬" }, { "input": "burgeons", "output": "⠃⠥⠗⠛⠑⠕â â Ž" }, { "input": "burger", "output": "⠃⠥⠗⠛⠻" }, { "input": "burgers", "output": "⠃⠥⠗⠛⠻⠎" }, { "input": "burgher", "output": "⠃⠥⠗⠣⠻" }, { "input": "burghers", "output": "⠃⠥⠗⠣⠻⠎" }, { "input": "burglar", "output": "⠃⠥⠗⠛⠇⠜" }, { "input": "burglaries", "output": "⠃⠥⠗⠛⠇⠜⠊⠑⠎" }, { "input": "burglarize", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠑" }, { "input": "burglarized", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠫" }, { "input": "burglarizes", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠑⠎" }, { "input": "burglarizing", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠬" }, { "input": "burglars", "output": "⠃⠥⠗⠛⠇⠜⠎" }, { "input": "burglary", "output": "⠃⠥⠗⠛⠇⠜⠽" }, { "input": "burgle", "output": "⠃⠥⠗⠛⠇⠑" }, { "input": "burgled", "output": "⠃⠥⠗⠛⠇⠫" }, { "input": "burgles", "output": "⠃⠥⠗⠛⠇⠑⠎" }, { "input": "burgling", "output": "⠃⠥⠗⠛⠇⠬" }, { "input": "burgs", "output": "⠃⠥⠗⠛⠎" }, { "input": "burial", "output": "⠃⠥⠗⠊â â ‡" }, { "input": "burials", "output": "⠃⠥⠗⠊â â ‡â Ž" }, { "input": "buried", "output": "⠃⠥⠗⠊⠫" }, { "input": "buries", "output": "⠃⠥⠗⠊⠑⠎" }, { "input": "burlap", "output": "⠃⠥⠗⠇â â " }, { "input": "burlesque", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠑" }, { "input": "burlesqued", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠫" }, { "input": "burlesques", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠑⠎" }, { "input": "burlesquing", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠬" }, { "input": "burlier", "output": "⠃⠥⠗⠇⠊⠻" }, { "input": "burliest", "output": "⠃⠥⠗⠇⠊⠑⠌" }, { "input": "burliness", "output": "⠃⠥⠗⠇⠊⠰⠎" }, { "input": "burly", "output": "⠃⠥⠗⠇⠽" }, { "input": "burn", "output": "⠃⠥⠗â " }, { "input": "burned", "output": "⠃⠥⠗â â «" }, { "input": "burner", "output": "⠃⠥⠗â â »" }, { "input": "burners", "output": "⠃⠥⠗â â »â Ž" }, { "input": "burning", "output": "⠃⠥⠗â â ¬" }, { "input": "burnish", "output": "⠃⠥⠗â â Šâ ©" }, { "input": "burnished", "output": "⠃⠥⠗â â Šâ ©â «" }, { "input": "burnishes", "output": "⠃⠥⠗â â Šâ ©â ‘â Ž" }, { "input": "burnishing", "output": "⠃⠥⠗â â Šâ ©â ¬" }, { "input": "burnoose", "output": "⠃⠥⠗â â •â •â Žâ ‘" }, { "input": "burnooses", "output": "⠃⠥⠗â â •â •â Žâ ‘â Ž" }, { "input": "burnous", "output": "⠃⠥⠗â â ³â Ž" }, { "input": "burnouses", "output": "⠃⠥⠗â â ³â Žâ ‘â Ž" }, { "input": "burnout", "output": "⠃⠥⠗â â ³â ž" }, { "input": "burnouts", "output": "⠃⠥⠗â â ³â žâ Ž" }, { "input": "burns", "output": "⠃⠥⠗â â Ž" }, { "input": "burnt", "output": "⠃⠥⠗â â ž" }, { "input": "burp", "output": "⠃⠥⠗â " }, { "input": "burped", "output": "⠃⠥⠗â â «" }, { "input": "burping", "output": "⠃⠥⠗â â ¬" }, { "input": "burps", "output": "⠃⠥⠗â â Ž" }, { "input": "burr", "output": "⠃⠥⠗⠗" }, { "input": "burred", "output": "⠃⠥⠗⠗⠫" }, { "input": "burring", "output": "⠃⠥⠗⠗⠬" }, { "input": "burrito", "output": "⠃⠥⠗⠗⠊⠞⠕" }, { "input": "burritos", "output": "⠃⠥⠗⠗⠊⠞⠕⠎" }, { "input": "burro", "output": "⠃⠥⠗⠗⠕" }, { "input": "burros", "output": "⠃⠥⠗⠗⠕⠎" }, { "input": "burrow", "output": "⠃⠥⠗⠗⠪" }, { "input": "burrowed", "output": "⠃⠥⠗⠗⠪⠫" }, { "input": "burrowing", "output": "⠃⠥⠗⠗⠪⠬" }, { "input": "burrows", "output": "⠃⠥⠗⠗⠪⠎" }, { "input": "burrs", "output": "⠃⠥⠗⠗⠎" }, { "input": "burs", "output": "⠃⠥⠗⠎" }, { "input": "bursar", "output": "⠃⠥⠗⠎⠜" }, { "input": "bursars", "output": "⠃⠥⠗⠎⠜⠎" }, { "input": "bursitis", "output": "⠃⠥⠗⠎⠊⠞⠊⠎" }, { "input": "burst", "output": "⠃⠥⠗⠌" }, { "input": "bursted", "output": "⠃⠥⠗⠌⠫" }, { "input": "bursting", "output": "⠃⠥⠗⠌⠬" }, { "input": "bursts", "output": "⠃⠥⠗⠌⠎" }, { "input": "bury", "output": "⠃⠥⠗⠽" }, { "input": "burying", "output": "⠃⠥⠗⠽⠬" }, { "input": "bus", "output": "⠃⠥⠎" }, { "input": "busbies", "output": "⠃⠥⠎⠃⠊⠑⠎" }, { "input": "busboy", "output": "⠃⠥⠎⠃⠕⠽" }, { "input": "busboys", "output": "⠃⠥⠎⠃⠕⠽⠎" }, { "input": "busby", "output": "⠃⠥⠎⠃⠽" }, { "input": "bused", "output": "⠃⠥⠎⠫" }, { "input": "buses", "output": "⠃⠥⠎⠑⠎" }, { "input": "bush", "output": "⠃⠥⠩" }, { "input": "bushed", "output": "⠃⠥⠩⠫" }, { "input": "bushel", "output": "⠃⠥⠩⠑⠇" }, { "input": "busheled", "output": "⠃⠥⠩⠑⠇⠫" }, { "input": "busheling", "output": "⠃⠥⠩⠑⠇⠬" }, { "input": "bushelled", "output": "⠃⠥⠩⠑⠇⠇⠫" }, { "input": "bushelling", "output": "⠃⠥⠩⠑⠇⠇⠬" }, { "input": "bushels", "output": "⠃⠥⠩⠑⠇⠎" }, { "input": "bushes", "output": "⠃⠥⠩⠑⠎" }, { "input": "bushier", "output": "⠃⠥⠩⠊⠻" }, { "input": "bushiest", "output": "⠃⠥⠩⠊⠑⠌" }, { "input": "bushiness", "output": "⠃⠥⠩⠊⠰⠎" }, { "input": "bushing", "output": "⠃⠥⠩⠬" }, { "input": "bushings", "output": "⠃⠥⠩⠬⠎" }, { "input": "bushman", "output": "⠃⠥⠩â â â " }, { "input": "bushmen", "output": "⠃⠥⠩â â ¢" }, { "input": "bushwhack", "output": "⠃⠥⠩⠱â â ‰â …" }, { "input": "bushwhacked", "output": "⠃⠥⠩⠱â â ‰â …â «" }, { "input": "bushwhacker", "output": "⠃⠥⠩⠱â â ‰â …â »" }, { "input": "bushwhackers", "output": "⠃⠥⠩⠱â â ‰â …⠻⠎" }, { "input": "bushwhacking", "output": "⠃⠥⠩⠱â â ‰â …â ¬" }, { "input": "bushwhacks", "output": "⠃⠥⠩⠱â â ‰â …â Ž" }, { "input": "bushy", "output": "⠃⠥⠩⠽" }, { "input": "busied", "output": "⠃⠥⠎⠊⠫" }, { "input": "busier", "output": "⠃⠥⠎⠊⠻" }, { "input": "busies", "output": "⠃⠥⠎⠊⠑⠎" }, { "input": "busiest", "output": "⠃⠥⠎⠊⠑⠌" }, { "input": "busily", "output": "⠃⠥⠎⠊⠇⠽" }, { "input": "business", "output": "⠃⠥⠎⠊⠰⠎" }, { "input": "businesses", "output": "⠃⠥⠎⠊⠰⠎⠑⠎" }, { "input": "businesslike", "output": "⠃⠥⠎⠊⠰⠎⠇⠊⠅⠑" }, { "input": "businessman", "output": "⠃⠥⠎⠊⠰⠎â â â " }, { "input": "businessmen", "output": "⠃⠥⠎⠊⠰⠎â â ¢" }, { "input": "businesswoman", "output": "⠃⠥⠎⠊⠰⠎⠺⠕â â â " }, { "input": "businesswomen", "output": "⠃⠥⠎⠊⠰⠎⠺⠕â â ¢" }, { "input": "busing", "output": "⠃⠥⠎⠬" }, { "input": "buss", "output": "⠃⠥⠎⠎" }, { "input": "bussed", "output": "⠃⠥⠎⠎⠫" }, { "input": "busses", "output": "⠃⠥⠎⠎⠑⠎" }, { "input": "bussing", "output": "⠃⠥⠎⠎⠬" }, { "input": "bust", "output": "⠃⠥⠌" }, { "input": "busted", "output": "⠃⠥⠌⠫" }, { "input": "buster", "output": "⠃⠥⠌⠻" }, { "input": "busters", "output": "⠃⠥⠌⠻⠎" }, { "input": "busting", "output": "⠃⠥⠌⠬" }, { "input": "bustle", "output": "⠃⠥⠌⠇⠑" }, { "input": "bustled", "output": "⠃⠥⠌⠇⠫" }, { "input": "bustles", "output": "⠃⠥⠌⠇⠑⠎" }, { "input": "bustling", "output": "⠃⠥⠌⠇⠬" }, { "input": "busts", "output": "⠃⠥⠌⠎" }, { "input": "busy", "output": "⠃⠥⠎⠽" }, { "input": "busybodies", "output": "⠃⠥⠎⠽⠃⠕⠙⠊⠑⠎" }, { "input": "busybody", "output": "⠃⠥⠎⠽⠃⠕⠙⠽" }, { "input": "busying", "output": "⠃⠥⠎⠽⠬" }, { "input": "busyness", "output": "⠃⠥⠎⠽⠰⠎" }, { "input": "busywork", "output": "⠃⠥⠎⠽â â º" }, { "input": "but", "output": "â ƒ" }, { "input": "butane", "output": "⠃⠥⠞â â â ‘" }, { "input": "butch", "output": "⠃⠥⠞⠡" }, { "input": "butcher", "output": "⠃⠥⠞⠡⠻" }, { "input": "butchered", "output": "⠃⠥⠞⠡⠻⠫" }, { "input": "butcheries", "output": "⠃⠥⠞⠡⠻⠊⠑⠎" }, { "input": "butchering", "output": "⠃⠥⠞⠡⠻⠬" }, { "input": "butchers", "output": "⠃⠥⠞⠡⠻⠎" }, { "input": "butchery", "output": "⠃⠥⠞⠡⠻⠽" }, { "input": "butches", "output": "⠃⠥⠞⠡⠑⠎" }, { "input": "butler", "output": "⠃⠥⠞⠇⠻" }, { "input": "butlers", "output": "⠃⠥⠞⠇⠻⠎" }, { "input": "buts", "output": "⠃⠥⠞⠎" }, { "input": "butt", "output": "⠃⠥⠞⠞" }, { "input": "butte", "output": "⠃⠥⠞⠞⠑" }, { "input": "butted", "output": "⠃⠥⠞⠞⠫" }, { "input": "butter", "output": "⠃⠥⠞⠞⠻" }, { "input": "buttercup", "output": "⠃⠥⠞⠞⠻⠉⠥â " }, { "input": "buttercups", "output": "⠃⠥⠞⠞⠻⠉⠥â â Ž" }, { "input": "buttered", "output": "⠃⠥⠞⠞⠻⠫" }, { "input": "butterfat", "output": "⠃⠥⠞⠞⠻⠋â â ž" }, { "input": "butterfingers", "output": "⠃⠥⠞⠞⠻⠋⠬⠻⠎" }, { "input": "butterflied", "output": "⠃⠥⠞⠞⠻⠋⠇⠊⠫" }, { "input": "butterflies", "output": "⠃⠥⠞⠞⠻⠋⠇⠊⠑⠎" }, { "input": "butterfly", "output": "⠃⠥⠞⠞⠻⠋⠇⠽" }, { "input": "butterflying", "output": "⠃⠥⠞⠞⠻⠋⠇⠽⠬" }, { "input": "butterier", "output": "⠃⠥⠞⠞⠻⠊⠻" }, { "input": "butteries", "output": "⠃⠥⠞⠞⠻⠊⠑⠎" }, { "input": "butteriest", "output": "⠃⠥⠞⠞⠻⠊⠑⠌" }, { "input": "buttering", "output": "⠃⠥⠞⠞⠻⠬" }, { "input": "buttermilk", "output": "⠃⠥⠞⠞⠻â â Šâ ‡â …" }, { "input": "butternut", "output": "⠃⠥⠞⠞⠻â â ¥â ž" }, { "input": "butternuts", "output": "⠃⠥⠞⠞⠻â â ¥â žâ Ž" }, { "input": "butters", "output": "⠃⠥⠞⠞⠻⠎" }, { "input": "butterscotch", "output": "⠃⠥⠞⠞⠻⠎⠉⠕⠞⠡" }, { "input": "buttery", "output": "⠃⠥⠞⠞⠻⠽" }, { "input": "buttes", "output": "⠃⠥⠞⠞⠑⠎" }, { "input": "butting", "output": "⠃⠥⠞⠞⠬" }, { "input": "buttock", "output": "⠃⠥⠞⠞⠕⠉⠅" }, { "input": "buttocks", "output": "⠃⠥⠞⠞⠕⠉⠅⠎" }, { "input": "button", "output": "⠃⠥⠞⠞⠕â " }, { "input": "buttoned", "output": "⠃⠥⠞⠞⠕â â «" }, { "input": "buttonhole", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠑" }, { "input": "buttonholed", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠫" }, { "input": "buttonholes", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠑⠎" }, { "input": "buttonholing", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠬" }, { "input": "buttoning", "output": "⠃⠥⠞⠞⠕â â ¬" }, { "input": "buttons", "output": "⠃⠥⠞⠞⠕â â Ž" }, { "input": "buttress", "output": "⠃⠥⠞⠞⠗⠑⠎⠎" }, { "input": "buttressed", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠫" }, { "input": "buttresses", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠑⠎" }, { "input": "buttressing", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠬" }, { "input": "butts", "output": "⠃⠥⠞⠞⠎" }, { "input": "buxom", "output": "⠃⠥⠭⠕â " }, { "input": "buy", "output": "⠃⠥⠽" }, { "input": "buyer", "output": "⠃⠥⠽⠻" }, { "input": "buyers", "output": "⠃⠥⠽⠻⠎" }, { "input": "buying", "output": "⠃⠥⠽⠬" }, { "input": "buyout", "output": "⠃⠥⠽⠳⠞" }, { "input": "buyouts", "output": "⠃⠥⠽⠳⠞⠎" }, { "input": "buys", "output": "⠃⠥⠽⠎" }, { "input": "buzz", "output": "⠃⠥⠵⠵" }, { "input": "buzzard", "output": "⠃⠥⠵⠵⠜⠙" }, { "input": "buzzards", "output": "⠃⠥⠵⠵⠜⠙⠎" }, { "input": "buzzed", "output": "⠃⠥⠵⠵⠫" }, { "input": "buzzer", "output": "⠃⠥⠵⠵⠻" }, { "input": "buzzers", "output": "⠃⠥⠵⠵⠻⠎" }, { "input": "buzzes", "output": "⠃⠥⠵⠵⠑⠎" }, { "input": "buzzing", "output": "⠃⠥⠵⠵⠬" }, { "input": "buzzword", "output": "⠃⠥⠵⠵⠘⠺" }, { "input": "buzzwords", "output": "⠃⠥⠵⠵⠘⠺⠎" }, { "input": "by", "output": "⠃⠽" }, { "input": "bye", "output": "⠃⠽⠑" }, { "input": "byelaw", "output": "⠃⠽⠑⠇â â º" }, { "input": "byelaws", "output": "⠃⠽⠑⠇â â ºâ Ž" }, { "input": "byes", "output": "⠃⠽⠑⠎" }, { "input": "bygone", "output": "⠃⠽⠛â â •" }, { "input": "bygones", "output": "⠃⠽⠛â â •â Ž" }, { "input": "bylaw", "output": "⠃⠽⠇â â º" }, { "input": "bylaws", "output": "⠃⠽⠇â â ºâ Ž" }, { "input": "byline", "output": "⠃⠽⠇⠔⠑" }, { "input": "bylines", "output": "⠃⠽⠇⠔⠑⠎" }, { "input": "bypass", "output": "⠃⠽â â â Žâ Ž" }, { "input": "bypassed", "output": "⠃⠽â â â Žâ Žâ «" }, { "input": "bypasses", "output": "⠃⠽â â â Žâ Žâ ‘â Ž" }, { "input": "bypassing", "output": "⠃⠽â â â Žâ Žâ ¬" }, { "input": "bypast", "output": "⠃⠽â â â Œ" }, { "input": "byplay", "output": "⠃⠽â â ‡â â ½" }, { "input": "byproduct", "output": "⠃⠽â â —⠕⠙⠥⠉⠞" }, { "input": "byproducts", "output": "⠃⠽â â —⠕⠙⠥⠉⠞⠎" }, { "input": "bystander", "output": "⠃⠽⠌⠯⠻" }, { "input": "bystanders", "output": "⠃⠽⠌⠯⠻⠎" }, { "input": "byte", "output": "⠃⠽⠞⠑" }, { "input": "bytes", "output": "⠃⠽⠞⠑⠎" }, { "input": "byway", "output": "⠃⠽⠺â â ½" }, { "input": "byways", "output": "⠃⠽⠺â â ½â Ž" }, { "input": "byword", "output": "⠃⠽⠘⠺" }, { "input": "bywords", "output": "⠃⠽⠘⠺⠎" }, { "input": "c", "output": "â °â ‰" }, { "input": "cab", "output": "â ‰â â ƒ" }, { "input": "cabal", "output": "â ‰â â ƒâ â ‡" }, { "input": "cabals", "output": "â ‰â â ƒâ â ‡â Ž" }, { "input": "cabana", "output": "â ‰â â ƒâ â â " }, { "input": "cabanas", "output": "â ‰â â ƒâ â â â Ž" }, { "input": "cabaret", "output": "â ‰â â ƒâ œâ ‘â ž" }, { "input": "cabarets", "output": "â ‰â â ƒâ œâ ‘â žâ Ž" }, { "input": "cabbage", "output": "â ‰â â †â â ›â ‘" }, { "input": "cabbages", "output": "â ‰â â †â â ›â ‘â Ž" }, { "input": "cabbed", "output": "â ‰â â †â «" }, { "input": "cabbie", "output": "â ‰â â †â Šâ ‘" }, { "input": "cabbies", "output": "â ‰â â †â Šâ ‘â Ž" }, { "input": "cabbing", "output": "â ‰â â †â ¬" }, { "input": "cabby", "output": "â ‰â â †â ½" }, { "input": "cabin", "output": "â ‰â â ƒâ ”" }, { "input": "cabinet", "output": "â ‰â â ƒâ ”â ‘â ž" }, { "input": "cabinetmaker", "output": "â ‰â â ƒâ ”â ‘â žâ â â …â »" }, { "input": "cabinetmakers", "output": "â ‰â â ƒâ ”â ‘â žâ â â …⠻⠎" }, { "input": "cabinets", "output": "â ‰â â ƒâ ”â ‘â žâ Ž" }, { "input": "cabins", "output": "â ‰â â ƒâ ”â Ž" }, { "input": "cable", "output": "â ‰â â ƒâ ‡â ‘" }, { "input": "cablecast", "output": "â ‰â â ƒâ ‡â ‘â ‰â â Œ" }, { "input": "cablecasted", "output": "â ‰â â ƒâ ‡â ‘â ‰â â Œâ «" }, { "input": "cablecasting", "output": "â ‰â â ƒâ ‡â ‘â ‰â â Œâ ¬" }, { "input": "cablecasts", "output": "â ‰â â ƒâ ‡â ‘â ‰â â Œâ Ž" }, { "input": "cabled", "output": "â ‰â â ƒâ ‡â «" }, { "input": "cablegram", "output": "â ‰â â ƒâ ‡â ‘⠛⠗â â " }, { "input": "cablegrams", "output": "â ‰â â ƒâ ‡â ‘⠛⠗â â â Ž" }, { "input": "cables", "output": "â ‰â â ƒâ ‡â ‘â Ž" }, { "input": "cabling", "output": "â ‰â â ƒâ ‡â ¬" }, { "input": "caboodle", "output": "â ‰â â ƒâ •⠕⠙⠇⠑" }, { "input": "caboose", "output": "â ‰â â ƒâ •â •â Žâ ‘" }, { "input": "cabooses", "output": "â ‰â â ƒâ •â •â Žâ ‘â Ž" }, { "input": "cabs", "output": "â ‰â â ƒâ Ž" }, { "input": "cacao", "output": "â ‰â â ‰â â •" }, { "input": "cacaos", "output": "â ‰â â ‰â â •â Ž" }, { "input": "cache", "output": "â ‰â â ¡â ‘" }, { "input": "cached", "output": "â ‰â â ¡â «" }, { "input": "caches", "output": "â ‰â â ¡â ‘â Ž" }, { "input": "cachet", "output": "â ‰â â ¡â ‘â ž" }, { "input": "cachets", "output": "â ‰â â ¡â ‘â žâ Ž" }, { "input": "caching", "output": "â ‰â â ¡â ¬" }, { "input": "cackle", "output": "â ‰â â ‰â …⠇⠑" }, { "input": "cackled", "output": "â ‰â â ‰â …⠇⠫" }, { "input": "cackles", "output": "â ‰â â ‰â …⠇⠑⠎" }, { "input": "cackling", "output": "â ‰â â ‰â …⠇⠬" }, { "input": "cacophonies", "output": "â ‰â â ‰â •â â “â •â â Šâ ‘â Ž" }, { "input": "cacophonous", "output": "â ‰â â ‰â •â â “â •â â ³â Ž" }, { "input": "cacophony", "output": "â ‰â â ‰â •â â “â •â â ½" }, { "input": "cacti", "output": "â ‰â â ‰â žâ Š" }, { "input": "cactus", "output": "â ‰â â ‰â žâ ¥â Ž" }, { "input": "cactuses", "output": "â ‰â â ‰â žâ ¥â Žâ ‘â Ž" }, { "input": "cad", "output": "â ‰â â ™" }, { "input": "cadaver", "output": "â ‰â â ™â â §â »" }, { "input": "cadaverous", "output": "â ‰â â ™â â §â »â ³â Ž" }, { "input": "cadavers", "output": "â ‰â â ™â â §â »â Ž" }, { "input": "caddie", "output": "â ‰â â ™â ™â Šâ ‘" }, { "input": "caddied", "output": "â ‰â â ™â ™â Šâ «" }, { "input": "caddies", "output": "â ‰â â ™â ™â Šâ ‘â Ž" }, { "input": "caddish", "output": "â ‰â â ™â ™â Šâ ©" }, { "input": "caddy", "output": "â ‰â â ™â ™â ½" }, { "input": "caddying", "output": "â ‰â â ™â ™â ½â ¬" }, { "input": "cadence", "output": "â ‰â â ™â °â ‘" }, { "input": "cadences", "output": "â ‰â â ™â °â ‘â Ž" }, { "input": "cadenza", "output": "â ‰â â ™â ¢â µâ " }, { "input": "cadenzas", "output": "â ‰â â ™â ¢â µâ â Ž" }, { "input": "cadet", "output": "â ‰â â ™â ‘â ž" }, { "input": "cadets", "output": "â ‰â â ™â ‘â žâ Ž" }, { "input": "cadge", "output": "â ‰â â ™â ›â ‘" }, { "input": "cadged", "output": "â ‰â â ™â ›â «" }, { "input": "cadger", "output": "â ‰â â ™â ›â »" }, { "input": "cadgers", "output": "â ‰â â ™â ›â »â Ž" }, { "input": "cadges", "output": "â ‰â â ™â ›â ‘â Ž" }, { "input": "cadging", "output": "â ‰â â ™â ›â ¬" }, { "input": "cadmium", "output": "â ‰â â ™â â Šâ ¥â " }, { "input": "cadre", "output": "â ‰â â ™â —â ‘" }, { "input": "cadres", "output": "â ‰â â ™â —â ‘â Ž" }, { "input": "cads", "output": "â ‰â â ™â Ž" }, { "input": "caducei", "output": "â ‰â â ™â ¥â ‰â ‘â Š" }, { "input": "caduceus", "output": "â ‰â â ™â ¥â ‰â ‘⠥⠎" }, { "input": "caesarean", "output": "â ‰â â ‘⠎⠜⠂â " }, { "input": "caesareans", "output": "â ‰â â ‘⠎⠜⠂â â Ž" }, { "input": "caesarian", "output": "â ‰â â ‘⠎⠜⠊â â " }, { "input": "caesarians", "output": "â ‰â â ‘⠎⠜⠊â â â Ž" }, { "input": "caesura", "output": "â ‰â â ‘⠎⠥⠗â " }, { "input": "caesurae", "output": "â ‰â â ‘⠎⠥⠗â â ‘" }, { "input": "caesuras", "output": "â ‰â â ‘⠎⠥⠗â â Ž" }, { "input": "cafeteria", "output": "â ‰â â ‹â ‘⠞⠻⠊â " }, { "input": "cafeterias", "output": "â ‰â â ‹â ‘⠞⠻⠊â â Ž" }, { "input": "caffeinated", "output": "â ‰â â –â ‘â ”â â žâ «" }, { "input": "caffeine", "output": "â ‰â â –⠑⠔⠑" }, { "input": "caftan", "output": "â ‰â â ‹â žâ â " }, { "input": "caftans", "output": "â ‰â â ‹â žâ â â Ž" }, { "input": "café", "output": "â ‰â â ‹â  â ˜â »â â ˜â ‰" }, { "input": "cafés", "output": "â ‰â â ‹â  â ˜â »â â ˜â ‰â Ž" }, { "input": "cage", "output": "â ‰â â ›â ‘" }, { "input": "caged", "output": "â ‰â â ›â «" }, { "input": "cages", "output": "â ‰â â ›â ‘â Ž" }, { "input": "cagey", "output": "â ‰â â ›â ‘â ½" }, { "input": "cageyness", "output": "â ‰â â ›â ‘⠽⠰⠎" }, { "input": "cagier", "output": "â ‰â â ›â Šâ »" }, { "input": "cagiest", "output": "â ‰â â ›â Šâ ‘â Œ" }, { "input": "cagily", "output": "â ‰â â ›â Šâ ‡â ½" }, { "input": "caginess", "output": "â ‰â â ›â Šâ °â Ž" }, { "input": "caging", "output": "â ‰â â ›â ¬" }, { "input": "cagy", "output": "â ‰â â ›â ½" }, { "input": "cahoot", "output": "â ‰â â “â •â •â ž" }, { "input": "cahoots", "output": "â ‰â â “â •â •â žâ Ž" }, { "input": "cairn", "output": "â ‰â â Šâ —â " }, { "input": "cairns", "output": "â ‰â â Šâ —â â Ž" }, { "input": "caisson", "output": "â ‰â â Šâ Žâ Žâ •â " }, { "input": "caissons", "output": "â ‰â â Šâ Žâ Žâ •â â Ž" }, { "input": "cajole", "output": "â ‰â â šâ •⠇⠑" }, { "input": "cajoled", "output": "â ‰â â šâ •⠇⠫" }, { "input": "cajolery", "output": "â ‰â â šâ •⠇⠻⠽" }, { "input": "cajoles", "output": "â ‰â â šâ •⠇⠑⠎" }, { "input": "cajoling", "output": "â ‰â â šâ •⠇⠬" }, { "input": "cake", "output": "â ‰â â …â ‘" }, { "input": "caked", "output": "â ‰â â …â «" }, { "input": "cakes", "output": "â ‰â â …â ‘â Ž" }, { "input": "caking", "output": "â ‰â â …â ¬" }, { "input": "calabash", "output": "â ‰â â ‡â â ƒâ â ©" }, { "input": "calabashes", "output": "â ‰â â ‡â â ƒâ â ©â ‘â Ž" }, { "input": "calamine", "output": "â ‰â â ‡â â â ”â ‘" }, { "input": "calamities", "output": "â ‰â â ‡â â â Šâ žâ Šâ ‘â Ž" }, { "input": "calamitous", "output": "â ‰â â ‡â â â Šâ žâ ³â Ž" }, { "input": "calamity", "output": "â ‰â â ‡â â â °â ½" }, { "input": "calcified", "output": "â ‰â â ‡â ‰â Šâ ‹â Šâ «" }, { "input": "calcifies", "output": "â ‰â â ‡â ‰â Šâ ‹â Šâ ‘â Ž" }, { "input": "calcify", "output": "â ‰â â ‡â ‰â Šâ ‹â ½" }, { "input": "calcifying", "output": "â ‰â â ‡â ‰â Šâ ‹â ½â ¬" }, { "input": "calcine", "output": "â ‰â â ‡â ‰â ”â ‘" }, { "input": "calcined", "output": "â ‰â â ‡â ‰â ”â «" }, { "input": "calcines", "output": "â ‰â â ‡â ‰â ”â ‘â Ž" }, { "input": "calcining", "output": "â ‰â â ‡â ‰â ”â ¬" }, { "input": "calcite", "output": "â ‰â â ‡â ‰â Šâ žâ ‘" }, { "input": "calcium", "output": "â ‰â â ‡â ‰â Šâ ¥â " }, { "input": "calculable", "output": "â ‰â â ‡â ‰â ¥â ‡â â ƒâ ‡â ‘" }, { "input": "calculate", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ ‘" }, { "input": "calculated", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ «" }, { "input": "calculates", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "calculating", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ ¬" }, { "input": "calculation", "output": "â ‰â â ‡â ‰â ¥â ‡â â °â " }, { "input": "calculations", "output": "â ‰â â ‡â ‰â ¥â ‡â â °â â Ž" }, { "input": "calculator", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ •â —" }, { "input": "calculators", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ •â —â Ž" }, { "input": "calculi", "output": "â ‰â â ‡â ‰â ¥â ‡â Š" }, { "input": "calculus", "output": "â ‰â â ‡â ‰â ¥â ‡â ¥â Ž" }, { "input": "calculuses", "output": "â ‰â â ‡â ‰â ¥â ‡â ¥â Žâ ‘â Ž" }, { "input": "caldron", "output": "â ‰â â ‡â ™â —â •â " }, { "input": "caldrons", "output": "â ‰â â ‡â ™â —â •â â Ž" }, { "input": "calendar", "output": "â ‰â â ‡â ¢â ™â œ" }, { "input": "calendared", "output": "â ‰â â ‡â ¢â ™â œâ «" }, { "input": "calendaring", "output": "â ‰â â ‡â ¢â ™â œâ ¬" }, { "input": "calendars", "output": "â ‰â â ‡â ¢â ™â œâ Ž" }, { "input": "calf", "output": "â ‰â â ‡â ‹" }, { "input": "calfs", "output": "â ‰â â ‡â ‹â Ž" }, { "input": "calfskin", "output": "â ‰â â ‡â ‹â Žâ …â ”" }, { "input": "caliber", "output": "â ‰â â ‡â Šâ ƒâ »" }, { "input": "calibers", "output": "â ‰â â ‡â Šâ ƒâ »â Ž" }, { "input": "calibrate", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ ‘" }, { "input": "calibrated", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ «" }, { "input": "calibrates", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ ‘â Ž" }, { "input": "calibrating", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ ¬" }, { "input": "calibration", "output": "â ‰â â ‡â Šâ ƒâ —â â °â " }, { "input": "calibrations", "output": "â ‰â â ‡â Šâ ƒâ —â â °â â Ž" }, { "input": "calibrator", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ •â —" }, { "input": "calibrators", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ •â —â Ž" }, { "input": "calico", "output": "â ‰â â ‡â Šâ ‰â •" }, { "input": "calicoes", "output": "â ‰â â ‡â Šâ ‰â •â ‘â Ž" }, { "input": "calicos", "output": "â ‰â â ‡â Šâ ‰â •â Ž" }, { "input": "calif", "output": "â ‰â â ‡â Šâ ‹" }, { "input": "califs", "output": "â ‰â â ‡â Šâ ‹â Ž" }, { "input": "caliper", "output": "â ‰â â ‡â Šâ â »" }, { "input": "calipered", "output": "â ‰â â ‡â Šâ â »â «" }, { "input": "calipering", "output": "â ‰â â ‡â Šâ â »â ¬" }, { "input": "calipers", "output": "â ‰â â ‡â Šâ â »â Ž" }, { "input": "caliph", "output": "â ‰â â ‡â Šâ â “" }, { "input": "caliphate", "output": "â ‰â â ‡â Šâ â “â â žâ ‘" }, { "input": "caliphates", "output": "â ‰â â ‡â Šâ â “â â žâ ‘â Ž" }, { "input": "caliphs", "output": "â ‰â â ‡â Šâ â “â Ž" }, { "input": "calisthenic", "output": "â ‰â â ‡â Šâ Žâ ®â â Šâ ‰" }, { "input": "calisthenics", "output": "â ‰â â ‡â Šâ Žâ ®â â Šâ ‰â Ž" }, { "input": "calk", "output": "â ‰â â ‡â …" }, { "input": "calked", "output": "â ‰â â ‡â …â «" }, { "input": "calking", "output": "â ‰â â ‡â …â ¬" }, { "input": "calkings", "output": "â ‰â â ‡â …⠬⠎" }, { "input": "calks", "output": "â ‰â â ‡â …â Ž" }, { "input": "call", "output": "â ‰â â ‡â ‡" }, { "input": "callable", "output": "â ‰â â ‡â ‡â â ƒâ ‡â ‘" }, { "input": "called", "output": "â ‰â â ‡â ‡â «" }, { "input": "caller", "output": "â ‰â â ‡â ‡â »" }, { "input": "callers", "output": "â ‰â â ‡â ‡â »â Ž" }, { "input": "calligrapher", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “â »" }, { "input": "calligraphers", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “⠻⠎" }, { "input": "calligraphy", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “â ½" }, { "input": "calling", "output": "â ‰â â ‡â ‡â ¬" }, { "input": "callings", "output": "â ‰â â ‡â ‡â ¬â Ž" }, { "input": "calliope", "output": "â ‰â â ‡â ‡â Šâ •â â ‘" }, { "input": "calliopes", "output": "â ‰â â ‡â ‡â Šâ •â â ‘â Ž" }, { "input": "calliper", "output": "â ‰â â ‡â ‡â Šâ â »" }, { "input": "callipered", "output": "â ‰â â ‡â ‡â Šâ â »â «" }, { "input": "callipering", "output": "â ‰â â ‡â ‡â Šâ â »â ¬" }, { "input": "callipers", "output": "â ‰â â ‡â ‡â Šâ â »â Ž" }, { "input": "callisthenics", "output": "â ‰â â ‡â ‡â Šâ Žâ ®â â Šâ ‰â Ž" }, { "input": "callous", "output": "â ‰â â ‡â ‡â ³â Ž" }, { "input": "calloused", "output": "â ‰â â ‡â ‡â ³â Žâ «" }, { "input": "callouses", "output": "â ‰â â ‡â ‡â ³â Žâ ‘â Ž" }, { "input": "callousing", "output": "â ‰â â ‡â ‡â ³â Žâ ¬" }, { "input": "callously", "output": "â ‰â â ‡â ‡â ³â Žâ ‡â ½" }, { "input": "callousness", "output": "â ‰â â ‡â ‡â ³â Žâ °â Ž" }, { "input": "callow", "output": "â ‰â â ‡â ‡â ª" }, { "input": "callower", "output": "â ‰â â ‡â ‡â ªâ »" }, { "input": "callowest", "output": "â ‰â â ‡â ‡â ªâ ‘â Œ" }, { "input": "calls", "output": "â ‰â â ‡â ‡â Ž" }, { "input": "callus", "output": "â ‰â â ‡â ‡â ¥â Ž" }, { "input": "callused", "output": "â ‰â â ‡â ‡â ¥â Žâ «" }, { "input": "calluses", "output": "â ‰â â ‡â ‡â ¥â Žâ ‘â Ž" }, { "input": "callusing", "output": "â ‰â â ‡â ‡â ¥â Žâ ¬" }, { "input": "calm", "output": "â ‰â â ‡â " }, { "input": "calmed", "output": "â ‰â â ‡â â «" }, { "input": "calmer", "output": "â ‰â â ‡â â »" }, { "input": "calmest", "output": "â ‰â â ‡â â ‘â Œ" }, { "input": "calming", "output": "â ‰â â ‡â â ¬" }, { "input": "calmly", "output": "â ‰â â ‡â â ‡â ½" }, { "input": "calmness", "output": "â ‰â â ‡â â °â Ž" }, { "input": "calms", "output": "â ‰â â ‡â â Ž" }, { "input": "caloric", "output": "â ‰â â ‡â •â —â Šâ ‰" }, { "input": "calorie", "output": "â ‰â â ‡â •â —â Šâ ‘" }, { "input": "calories", "output": "â ‰â â ‡â •â —â Šâ ‘â Ž" }, { "input": "calorific", "output": "â ‰â â ‡â •â —â Šâ ‹â Šâ ‰" }, { "input": "calumniate", "output": "â ‰â â ‡â ¥â â â Šâ â žâ ‘" }, { "input": "calumniated", "output": "â ‰â â ‡â ¥â â â Šâ â žâ «" }, { "input": "calumniates", "output": "â ‰â â ‡â ¥â â â Šâ â žâ ‘â Ž" }, { "input": "calumniating", "output": "â ‰â â ‡â ¥â â â Šâ â žâ ¬" }, { "input": "calumnies", "output": "â ‰â â ‡â ¥â â â Šâ ‘â Ž" }, { "input": "calumny", "output": "â ‰â â ‡â ¥â â â ½" }, { "input": "calve", "output": "â ‰â â ‡â §â ‘" }, { "input": "calved", "output": "â ‰â â ‡â §â «" }, { "input": "calves", "output": "â ‰â â ‡â §â ‘â Ž" }, { "input": "calving", "output": "â ‰â â ‡â §â ¬" }, { "input": "calyces", "output": "â ‰â â ‡â ½â ‰â ‘â Ž" }, { "input": "calypso", "output": "â ‰â â ‡â ½â â Žâ •" }, { "input": "calypsos", "output": "â ‰â â ‡â ½â â Žâ •â Ž" }, { "input": "calyx", "output": "â ‰â â ‡â ½â ­" }, { "input": "calyxes", "output": "â ‰â â ‡â ½â ­â ‘â Ž" }, { "input": "cam", "output": "â ‰â â " }, { "input": "camaraderie", "output": "â ‰â â â œâ â ™â »â Šâ ‘" }, { "input": "camber", "output": "â ‰â â â ƒâ »" }, { "input": "cambered", "output": "â ‰â â â ƒâ »â «" }, { "input": "cambering", "output": "â ‰â â â ƒâ »â ¬" }, { "input": "cambers", "output": "â ‰â â â ƒâ »â Ž" }, { "input": "cambia", "output": "â ‰â â â ƒâ Šâ " }, { "input": "cambium", "output": "â ‰â â â ƒâ Šâ ¥â " }, { "input": "cambiums", "output": "â ‰â â â ƒâ Šâ ¥â â Ž" }, { "input": "cambric", "output": "â ‰â â â ƒâ —â Šâ ‰" }, { "input": "camcorder", "output": "â ‰â â â ‰â •⠗⠙⠻" }, { "input": "camcorders", "output": "â ‰â â â ‰â •⠗⠙⠻⠎" }, { "input": "came", "output": "â ‰â â â ‘" }, { "input": "camel", "output": "â ‰â â â ‘â ‡" }, { "input": "camellia", "output": "â ‰â â â ‘⠇⠇⠊â " }, { "input": "camellias", "output": "â ‰â â â ‘⠇⠇⠊â â Ž" }, { "input": "camels", "output": "â ‰â â â ‘⠇⠎" }, { "input": "cameo", "output": "â ‰â â â ‘â •" }, { "input": "cameos", "output": "â ‰â â â ‘â •â Ž" }, { "input": "camera", "output": "â ‰â â â »â " }, { "input": "cameraman", "output": "â ‰â â â »â â â â " }, { "input": "cameramen", "output": "â ‰â â â »â â â ¢" }, { "input": "cameras", "output": "â ‰â â â »â â Ž" }, { "input": "camerawoman", "output": "â ‰â â â »â â ºâ •â â â " }, { "input": "camerawomen", "output": "â ‰â â â »â â ºâ •â â ¢" }, { "input": "camisole", "output": "â ‰â â â Šâ Žâ •⠇⠑" }, { "input": "camisoles", "output": "â ‰â â â Šâ Žâ •⠇⠑⠎" }, { "input": "camomile", "output": "â ‰â â â •â â Šâ ‡â ‘" }, { "input": "camomiles", "output": "â ‰â â â •â â Šâ ‡â ‘â Ž" }, { "input": "camouflage", "output": "â ‰â â â ³â ‹â ‡â â ›â ‘" }, { "input": "camouflaged", "output": "â ‰â â â ³â ‹â ‡â â ›â «" }, { "input": "camouflages", "output": "â ‰â â â ³â ‹â ‡â â ›â ‘â Ž" }, { "input": "camouflaging", "output": "â ‰â â â ³â ‹â ‡â â ›â ¬" }, { "input": "camp", "output": "â ‰â â â " }, { "input": "campaign", "output": "â ‰â â â â â Šâ ›â " }, { "input": "campaigned", "output": "â ‰â â â â â Šâ ›â â «" }, { "input": "campaigner", "output": "â ‰â â â â â Šâ ›â â »" }, { "input": "campaigners", "output": "â ‰â â â â â Šâ ›â â »â Ž" }, { "input": "campaigning", "output": "â ‰â â â â â Šâ ›â â ¬" }, { "input": "campaigns", "output": "â ‰â â â â â Šâ ›â â Ž" }, { "input": "campanile", "output": "â ‰â â â â â â Šâ ‡â ‘" }, { "input": "campaniles", "output": "â ‰â â â â â â Šâ ‡â ‘â Ž" }, { "input": "campanili", "output": "â ‰â â â â â â Šâ ‡â Š" }, { "input": "camped", "output": "â ‰â â â â «" }, { "input": "camper", "output": "â ‰â â â â »" }, { "input": "campers", "output": "â ‰â â â â »â Ž" }, { "input": "campfire", "output": "â ‰â â â â ‹â Šâ —â ‘" }, { "input": "campfires", "output": "â ‰â â â â ‹â Šâ —â ‘â Ž" }, { "input": "campground", "output": "â ‰â â â â ›â —⠨⠙" }, { "input": "campgrounds", "output": "â ‰â â â â ›â —⠨⠙⠎" }, { "input": "camphor", "output": "â ‰â â â â “â •â —" }, { "input": "campier", "output": "â ‰â â â â Šâ »" }, { "input": "campiest", "output": "â ‰â â â â Šâ ‘â Œ" }, { "input": "camping", "output": "â ‰â â â â ¬" }, { "input": "camps", "output": "â ‰â â â â Ž" }, { "input": "campsite", "output": "â ‰â â â â Žâ Šâ žâ ‘" }, { "input": "campsites", "output": "â ‰â â â â Žâ Šâ žâ ‘â Ž" }, { "input": "campus", "output": "â ‰â â â â ¥â Ž" }, { "input": "campuses", "output": "â ‰â â â â ¥â Žâ ‘â Ž" }, { "input": "campy", "output": "â ‰â â â â ½" }, { "input": "cams", "output": "â ‰â â â Ž" }, { "input": "camshaft", "output": "â ‰â â â ©â â ‹â ž" }, { "input": "camshafts", "output": "â ‰â â â ©â â ‹â žâ Ž" }, { "input": "can", "output": "â ‰" }, { "input": "canal", "output": "â ‰â â â â ‡" }, { "input": "canals", "output": "â ‰â â â â ‡â Ž" }, { "input": "canapé", "output": "â ‰â â â â â  â ˜â »â â ˜â ‰" }, { "input": "canapés", "output": "â ‰â â â â â  â ˜â »â â ˜â ‰â Ž" }, { "input": "canard", "output": "â ‰â â â œâ ™" }, { "input": "canards", "output": "â ‰â â â œâ ™â Ž" }, { "input": "canaries", "output": "â ‰â â â œâ Šâ ‘â Ž" }, { "input": "canary", "output": "â ‰â â â œâ ½" }, { "input": "canasta", "output": "â ‰â â â â Œâ " }, { "input": "cancan", "output": "â ‰â â â ‰â â " }, { "input": "cancans", "output": "â ‰â â â ‰â â â Ž" }, { "input": "cancel", "output": "⠉⠨⠑⠇" }, { "input": "cancelation", "output": "⠉⠨⠑⠇â â °â " }, { "input": "canceled", "output": "⠉⠨⠑⠇⠫" }, { "input": "canceling", "output": "⠉⠨⠑⠇⠬" }, { "input": "cancellation", "output": "⠉⠨⠑⠇⠇â â °â " }, { "input": "cancellations", "output": "⠉⠨⠑⠇⠇â â °â â Ž" }, { "input": "cancelled", "output": "⠉⠨⠑⠇⠇⠫" }, { "input": "cancelling", "output": "⠉⠨⠑⠇⠇⠬" }, { "input": "cancels", "output": "⠉⠨⠑⠇⠎" }, { "input": "cancer", "output": "⠉⠨⠑⠗" }, { "input": "cancerous", "output": "⠉⠨⠑⠗⠳⠎" }, { "input": "cancers", "output": "⠉⠨⠑⠗⠎" }, { "input": "candelabra", "output": "⠉⠯⠑⠇â â ƒâ —â " }, { "input": "candelabras", "output": "⠉⠯⠑⠇â â ƒâ —â â Ž" }, { "input": "candelabrum", "output": "⠉⠯⠑⠇â â ƒâ —â ¥â " }, { "input": "candelabrums", "output": "⠉⠯⠑⠇â â ƒâ —â ¥â â Ž" }, { "input": "candid", "output": "⠉⠯⠊⠙" }, { "input": "candidacies", "output": "⠉⠯⠊⠙â â ‰â Šâ ‘â Ž" }, { "input": "candidacy", "output": "⠉⠯⠊⠙â â ‰â ½" }, { "input": "candidate", "output": "⠉⠯⠊⠙â â žâ ‘" }, { "input": "candidates", "output": "⠉⠯⠊⠙â â žâ ‘â Ž" }, { "input": "candidly", "output": "⠉⠯⠊⠙⠇⠽" }, { "input": "candidness", "output": "⠉⠯⠊⠙⠰⠎" }, { "input": "candied", "output": "⠉⠯⠊⠫" }, { "input": "candies", "output": "⠉⠯⠊⠑⠎" }, { "input": "candle", "output": "⠉⠯⠇⠑" }, { "input": "candled", "output": "⠉⠯⠇⠫" }, { "input": "candlelight", "output": "⠉⠯⠇⠑⠇⠊⠣⠞" }, { "input": "candles", "output": "⠉⠯⠇⠑⠎" }, { "input": "candlestick", "output": "⠉⠯⠇⠑⠌⠊⠉⠅" }, { "input": "candlesticks", "output": "⠉⠯⠇⠑⠌⠊⠉⠅⠎" }, { "input": "candling", "output": "⠉⠯⠇⠬" }, { "input": "candor", "output": "⠉⠯⠕⠗" }, { "input": "candy", "output": "⠉⠯⠽" }, { "input": "candying", "output": "⠉⠯⠽⠬" }, { "input": "cane", "output": "â ‰â â â ‘" }, { "input": "caned", "output": "â ‰â â â «" }, { "input": "canes", "output": "â ‰â â â ‘â Ž" }, { "input": "canine", "output": "â ‰â â â ”â ‘" }, { "input": "canines", "output": "â ‰â â â ”â ‘â Ž" }, { "input": "caning", "output": "â ‰â â â ¬" }, { "input": "canister", "output": "â ‰â â â Šâ Œâ »" }, { "input": "canisters", "output": "â ‰â â â Šâ Œâ »â Ž" }, { "input": "canker", "output": "â ‰â â â …â »" }, { "input": "cankered", "output": "â ‰â â â …⠻⠫" }, { "input": "cankering", "output": "â ‰â â â …⠻⠬" }, { "input": "cankerous", "output": "â ‰â â â …⠻⠳⠎" }, { "input": "cankers", "output": "â ‰â â â …⠻⠎" }, { "input": "cannabis", "output": "â ‰â â â â â ƒâ Šâ Ž" }, { "input": "cannabises", "output": "â ‰â â â â â ƒâ Šâ Žâ ‘â Ž" }, { "input": "canned", "output": "â ‰â â â â «" }, { "input": "canneries", "output": "â ‰â â â â »â Šâ ‘â Ž" }, { "input": "cannery", "output": "â ‰â â â â »â ½" }, { "input": "cannibal", "output": "â ‰â â â â Šâ ƒâ â ‡" }, { "input": "cannibalism", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ Žâ " }, { "input": "cannibalistic", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "cannibalize", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ ‘" }, { "input": "cannibalized", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ «" }, { "input": "cannibalizes", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ ‘â Ž" }, { "input": "cannibalizing", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ ¬" }, { "input": "cannibals", "output": "â ‰â â â â Šâ ƒâ â ‡â Ž" }, { "input": "cannier", "output": "â ‰â â â â Šâ »" }, { "input": "canniest", "output": "â ‰â â â â Šâ ‘â Œ" }, { "input": "cannily", "output": "â ‰â â â â Šâ ‡â ½" }, { "input": "canniness", "output": "â ‰â â â â Šâ °â Ž" }, { "input": "canning", "output": "â ‰â â â â ¬" }, { "input": "cannon", "output": "â ‰â â â â •â " }, { "input": "cannonade", "output": "â ‰â â â â •â â â ™â ‘" }, { "input": "cannonaded", "output": "â ‰â â â â •â â â ™â «" }, { "input": "cannonades", "output": "â ‰â â â â •â â â ™â ‘â Ž" }, { "input": "cannonading", "output": "â ‰â â â â •â â â ™â ¬" }, { "input": "cannonball", "output": "â ‰â â â â •â â ƒâ â ‡â ‡" }, { "input": "cannonballs", "output": "â ‰â â â â •â â ƒâ â ‡â ‡â Ž" }, { "input": "cannoned", "output": "â ‰â â â â •â â «" }, { "input": "cannoning", "output": "â ‰â â â â •â â ¬" }, { "input": "cannons", "output": "â ‰â â â â •â â Ž" }, { "input": "cannot", "output": "⠸⠉" }, { "input": "canny", "output": "â ‰â â â â ½" }, { "input": "canoe", "output": "â ‰â â â •â ‘" }, { "input": "canoed", "output": "â ‰â â â •â «" }, { "input": "canoeing", "output": "â ‰â â â •â ‘â ¬" }, { "input": "canoeist", "output": "â ‰â â â •â ‘â Šâ Œ" }, { "input": "canoeists", "output": "â ‰â â â •⠑⠊⠌⠎" }, { "input": "canoes", "output": "â ‰â â â •â ‘â Ž" }, { "input": "canon", "output": "â ‰â â â •â " }, { "input": "canonical", "output": "â ‰â â â •â â Šâ ‰â â ‡" }, { "input": "canonization", "output": "â ‰â â â •â â Šâ µâ â °â " }, { "input": "canonizations", "output": "â ‰â â â •â â Šâ µâ â °â â Ž" }, { "input": "canonize", "output": "â ‰â â â •â â Šâ µâ ‘" }, { "input": "canonized", "output": "â ‰â â â •â â Šâ µâ «" }, { "input": "canonizes", "output": "â ‰â â â •â â Šâ µâ ‘â Ž" }, { "input": "canonizing", "output": "â ‰â â â •â â Šâ µâ ¬" }, { "input": "canons", "output": "â ‰â â â •â â Ž" }, { "input": "canopied", "output": "â ‰â â â •â â Šâ «" }, { "input": "canopies", "output": "â ‰â â â •â â Šâ ‘â Ž" }, { "input": "canopy", "output": "â ‰â â â •â â ½" }, { "input": "canopying", "output": "â ‰â â â •â â ½â ¬" }, { "input": "cans", "output": "â ‰â â â Ž" }, { "input": "cant", "output": "â ‰â â â ž" }, { "input": "cantaloup", "output": "â ‰â â â žâ â ‡â ³â " }, { "input": "cantaloupe", "output": "â ‰â â â žâ â ‡â ³â â ‘" }, { "input": "cantaloupes", "output": "â ‰â â â žâ â ‡â ³â â ‘â Ž" }, { "input": "cantaloups", "output": "â ‰â â â žâ â ‡â ³â â Ž" }, { "input": "cantankerous", "output": "â ‰â â â žâ â â …⠻⠳⠎" }, { "input": "cantankerously", "output": "â ‰â â â žâ â â …⠻⠳⠎⠇⠽" }, { "input": "cantankerousness", "output": "â ‰â â â žâ â â …⠻⠳⠎⠰⠎" }, { "input": "cantata", "output": "â ‰â â â žâ â žâ " }, { "input": "cantatas", "output": "â ‰â â â žâ â žâ â Ž" }, { "input": "canted", "output": "â ‰â â â žâ «" }, { "input": "canteen", "output": "â ‰â â â žâ ‘â ¢" }, { "input": "canteens", "output": "â ‰â â â žâ ‘⠢⠎" }, { "input": "canter", "output": "â ‰â â â žâ »" }, { "input": "cantered", "output": "â ‰â â â žâ »â «" }, { "input": "cantering", "output": "â ‰â â â žâ »â ¬" }, { "input": "canters", "output": "â ‰â â â žâ »â Ž" }, { "input": "canticle", "output": "â ‰â â â žâ Šâ ‰â ‡â ‘" }, { "input": "canticles", "output": "â ‰â â â žâ Šâ ‰â ‡â ‘â Ž" }, { "input": "cantilever", "output": "â ‰â â â žâ Šâ ‡â â ‘" }, { "input": "cantilevered", "output": "â ‰â â â žâ Šâ ‡â â ‘â «" }, { "input": "cantilevering", "output": "â ‰â â â žâ Šâ ‡â â ‘â ¬" }, { "input": "cantilevers", "output": "â ‰â â â žâ Šâ ‡â â ‘â Ž" }, { "input": "canting", "output": "â ‰â â â žâ ¬" }, { "input": "canto", "output": "â ‰â â â žâ •" }, { "input": "canton", "output": "â ‰â â â žâ •â " }, { "input": "cantons", "output": "â ‰â â â žâ •â â Ž" }, { "input": "cantor", "output": "â ‰â â â žâ •â —" }, { "input": "cantors", "output": "â ‰â â â žâ •â —â Ž" }, { "input": "cantos", "output": "â ‰â â â žâ •â Ž" }, { "input": "cants", "output": "â ‰â â â žâ Ž" }, { "input": "canvas", "output": "â ‰â â â §â â Ž" }, { "input": "canvasback", "output": "â ‰â â â §â â Žâ ƒâ â ‰â …" }, { "input": "canvasbacks", "output": "â ‰â â â §â â Žâ ƒâ â ‰â …â Ž" }, { "input": "canvased", "output": "â ‰â â â §â â Žâ «" }, { "input": "canvases", "output": "â ‰â â â §â â Žâ ‘â Ž" }, { "input": "canvasing", "output": "â ‰â â â §â â Žâ ¬" }, { "input": "canvass", "output": "â ‰â â â §â â Žâ Ž" }, { "input": "canvassed", "output": "â ‰â â â §â â Žâ Žâ «" }, { "input": "canvasser", "output": "â ‰â â â §â â Žâ Žâ »" }, { "input": "canvassers", "output": "â ‰â â â §â â Žâ Žâ »â Ž" }, { "input": "canvasses", "output": "â ‰â â â §â â Žâ Žâ ‘â Ž" }, { "input": "canvassing", "output": "â ‰â â â §â â Žâ Žâ ¬" }, { "input": "canyon", "output": "â ‰â â â ½â •â " }, { "input": "canyons", "output": "â ‰â â â ½â •â â Ž" }, { "input": "cap", "output": "â ‰â â " }, { "input": "capabilities", "output": "â ‰â â â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "capability", "output": "â ‰â â â â ƒâ Šâ ‡â °â ½" }, { "input": "capable", "output": "â ‰â â â â ƒâ ‡â ‘" }, { "input": "capably", "output": "â ‰â â â â ƒâ ‡â ½" }, { "input": "capacious", "output": "â ‰â â â â ‰â Šâ ³â Ž" }, { "input": "capaciously", "output": "â ‰â â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "capaciousness", "output": "â ‰â â â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "capacitance", "output": "â ‰â â â â ‰â Šâ žâ ¨â ‘" }, { "input": "capacities", "output": "â ‰â â â â ‰â Šâ žâ Šâ ‘â Ž" }, { "input": "capacitor", "output": "â ‰â â â â ‰â Šâ žâ •â —" }, { "input": "capacitors", "output": "â ‰â â â â ‰â Šâ žâ •â —â Ž" }, { "input": "capacity", "output": "â ‰â â â â ‰â °â ½" }, { "input": "caparison", "output": "â ‰â â â œâ Šâ Žâ •â " }, { "input": "caparisoned", "output": "â ‰â â â œâ Šâ Žâ •â â «" }, { "input": "caparisoning", "output": "â ‰â â â œâ Šâ Žâ •â â ¬" }, { "input": "caparisons", "output": "â ‰â â â œâ Šâ Žâ •â â Ž" }, { "input": "cape", "output": "â ‰â â â ‘" }, { "input": "caped", "output": "â ‰â â â «" }, { "input": "caper", "output": "â ‰â â â »" }, { "input": "capered", "output": "â ‰â â â »â «" }, { "input": "capering", "output": "â ‰â â â »â ¬" }, { "input": "capers", "output": "â ‰â â â »â Ž" }, { "input": "capes", "output": "â ‰â â â ‘â Ž" }, { "input": "capillaries", "output": "â ‰â â â Šâ ‡â ‡â œâ Šâ ‘â Ž" }, { "input": "capillary", "output": "â ‰â â â Šâ ‡â ‡â œâ ½" }, { "input": "capital", "output": "â ‰â â â Šâ žâ â ‡" }, { "input": "capitalism", "output": "â ‰â â â Šâ žâ â ‡â Šâ Žâ " }, { "input": "capitalist", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œ" }, { "input": "capitalistic", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "capitalists", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œâ Ž" }, { "input": "capitalization", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ â °â " }, { "input": "capitalize", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "capitalized", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ «" }, { "input": "capitalizes", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "capitalizing", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ ¬" }, { "input": "capitals", "output": "â ‰â â â Šâ žâ â ‡â Ž" }, { "input": "capitol", "output": "â ‰â â â Šâ žâ •â ‡" }, { "input": "capitols", "output": "â ‰â â â Šâ žâ •⠇⠎" }, { "input": "capitulate", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ ‘" }, { "input": "capitulated", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ «" }, { "input": "capitulates", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "capitulating", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ ¬" }, { "input": "capitulation", "output": "â ‰â â â Šâ žâ ¥â ‡â â °â " }, { "input": "capitulations", "output": "â ‰â â â Šâ žâ ¥â ‡â â °â â Ž" }, { "input": "caplet", "output": "â ‰â â â ‡â ‘â ž" }, { "input": "caplets", "output": "â ‰â â â ‡â ‘â žâ Ž" }, { "input": "capon", "output": "â ‰â â â •â " }, { "input": "capons", "output": "â ‰â â â •â â Ž" }, { "input": "capped", "output": "â ‰â â â â «" }, { "input": "capping", "output": "â ‰â â â â ¬" }, { "input": "cappuccino", "output": "â ‰â â â â ¥â ’⠔⠕" }, { "input": "cappuccinos", "output": "â ‰â â â â ¥â ’⠔⠕⠎" }, { "input": "caprice", "output": "â ‰â â â —⠊⠉⠑" }, { "input": "caprices", "output": "â ‰â â â —⠊⠉⠑⠎" }, { "input": "capricious", "output": "â ‰â â â —⠊⠉⠊⠳⠎" }, { "input": "capriciously", "output": "â ‰â â â —⠊⠉⠊⠳⠎⠇⠽" }, { "input": "capriciousness", "output": "â ‰â â â —⠊⠉⠊⠳⠎⠰⠎" }, { "input": "caps", "output": "â ‰â â â Ž" }, { "input": "capsize", "output": "â ‰â â â Žâ Šâ µâ ‘" }, { "input": "capsized", "output": "â ‰â â â Žâ Šâ µâ «" }, { "input": "capsizes", "output": "â ‰â â â Žâ Šâ µâ ‘â Ž" }, { "input": "capsizing", "output": "â ‰â â â Žâ Šâ µâ ¬" }, { "input": "capstan", "output": "â ‰â â â Œâ â " }, { "input": "capstans", "output": "â ‰â â â Œâ â â Ž" }, { "input": "capsule", "output": "â ‰â â â Žâ ¥â ‡â ‘" }, { "input": "capsuled", "output": "â ‰â â â Žâ ¥â ‡â «" }, { "input": "capsules", "output": "â ‰â â â Žâ ¥â ‡â ‘â Ž" }, { "input": "capsuling", "output": "â ‰â â â Žâ ¥â ‡â ¬" }, { "input": "captain", "output": "â ‰â â â žâ â ”" }, { "input": "captaincies", "output": "â ‰â â â žâ â ”⠉⠊⠑⠎" }, { "input": "captaincy", "output": "â ‰â â â žâ â ”⠉⠽" }, { "input": "captained", "output": "â ‰â â â žâ â ”â «" }, { "input": "captaining", "output": "â ‰â â â žâ â ”â ¬" }, { "input": "captains", "output": "â ‰â â â žâ â ”â Ž" }, { "input": "caption", "output": "â ‰â â â °â " }, { "input": "captioned", "output": "â ‰â â â °â â «" }, { "input": "captioning", "output": "â ‰â â â °â â ¬" }, { "input": "captions", "output": "â ‰â â â °â â Ž" }, { "input": "captious", "output": "â ‰â â â žâ Šâ ³â Ž" }, { "input": "captivate", "output": "â ‰â â â žâ Šâ §â â žâ ‘" }, { "input": "captivated", "output": "â ‰â â â žâ Šâ §â â žâ «" }, { "input": "captivates", "output": "â ‰â â â žâ Šâ §â â žâ ‘â Ž" }, { "input": "captivating", "output": "â ‰â â â žâ Šâ §â â žâ ¬" }, { "input": "captivation", "output": "â ‰â â â žâ Šâ §â â °â " }, { "input": "captive", "output": "â ‰â â â žâ Šâ §â ‘" }, { "input": "captives", "output": "â ‰â â â žâ Šâ §â ‘â Ž" }, { "input": "captivities", "output": "â ‰â â â žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "captivity", "output": "â ‰â â â žâ Šâ §â °â ½" }, { "input": "captor", "output": "â ‰â â â žâ •â —" }, { "input": "captors", "output": "â ‰â â â žâ •â —â Ž" }, { "input": "capture", "output": "â ‰â â â žâ ¥â —â ‘" }, { "input": "captured", "output": "â ‰â â â žâ ¥â —â «" }, { "input": "captures", "output": "â ‰â â â žâ ¥â —â ‘â Ž" }, { "input": "capturing", "output": "â ‰â â â žâ ¥â —â ¬" }, { "input": "car", "output": "⠉⠜" }, { "input": "caracul", "output": "⠉⠜â â ‰â ¥â ‡" }, { "input": "carafe", "output": "⠉⠜â â ‹â ‘" }, { "input": "carafes", "output": "⠉⠜â â ‹â ‘â Ž" }, { "input": "caramel", "output": "⠉⠜â â â ‘â ‡" }, { "input": "caramels", "output": "⠉⠜â â â ‘⠇⠎" }, { "input": "carapace", "output": "⠉⠜â â â â ‰â ‘" }, { "input": "carapaces", "output": "⠉⠜â â â â ‰â ‘â Ž" }, { "input": "carat", "output": "⠉⠜â â ž" }, { "input": "carats", "output": "⠉⠜â â žâ Ž" }, { "input": "caravan", "output": "⠉⠜â â §â â " }, { "input": "caravans", "output": "⠉⠜â â §â â â Ž" }, { "input": "caraway", "output": "⠉⠜â â ºâ â ½" }, { "input": "caraways", "output": "⠉⠜â â ºâ â ½â Ž" }, { "input": "carbide", "output": "⠉⠜⠃⠊⠙⠑" }, { "input": "carbides", "output": "⠉⠜⠃⠊⠙⠑⠎" }, { "input": "carbine", "output": "⠉⠜⠃⠔⠑" }, { "input": "carbines", "output": "⠉⠜⠃⠔⠑⠎" }, { "input": "carbohydrate", "output": "⠉⠜⠃⠕⠓⠽⠙⠗â â žâ ‘" }, { "input": "carbohydrates", "output": "⠉⠜⠃⠕⠓⠽⠙⠗â â žâ ‘â Ž" }, { "input": "carbon", "output": "⠉⠜⠃⠕â " }, { "input": "carbonate", "output": "⠉⠜⠃⠕â â â žâ ‘" }, { "input": "carbonated", "output": "⠉⠜⠃⠕â â â žâ «" }, { "input": "carbonates", "output": "⠉⠜⠃⠕â â â žâ ‘â Ž" }, { "input": "carbonating", "output": "⠉⠜⠃⠕â â â žâ ¬" }, { "input": "carbonation", "output": "⠉⠜⠃⠕â â â °â " }, { "input": "carbons", "output": "⠉⠜⠃⠕â â Ž" }, { "input": "carboy", "output": "⠉⠜⠃⠕⠽" }, { "input": "carboys", "output": "⠉⠜⠃⠕⠽⠎" }, { "input": "carbuncle", "output": "⠉⠜⠃⠥â â ‰â ‡â ‘" }, { "input": "carbuncles", "output": "⠉⠜⠃⠥â â ‰â ‡â ‘â Ž" }, { "input": "carburetor", "output": "⠉⠜⠃⠥⠗⠑⠞⠕⠗" }, { "input": "carburetors", "output": "⠉⠜⠃⠥⠗⠑⠞⠕⠗⠎" }, { "input": "carcass", "output": "⠉⠜⠉â â Žâ Ž" }, { "input": "carcasses", "output": "⠉⠜⠉â â Žâ Žâ ‘â Ž" }, { "input": "carcinogen", "output": "⠉⠜⠉⠔⠕⠛⠢" }, { "input": "carcinogenic", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉" }, { "input": "carcinogenics", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉⠎" }, { "input": "carcinogens", "output": "⠉⠜⠉⠔⠕⠛⠢⠎" }, { "input": "carcinoma", "output": "⠉⠜⠉⠔⠕â â " }, { "input": "carcinomas", "output": "⠉⠜⠉⠔⠕â â â Ž" }, { "input": "carcinomata", "output": "⠉⠜⠉⠔⠕â â â žâ " }, { "input": "card", "output": "⠉⠜⠙" }, { "input": "cardboard", "output": "⠉⠜⠙⠃⠕⠜⠙" }, { "input": "carded", "output": "⠉⠜⠙⠫" }, { "input": "cardiac", "output": "⠉⠜⠙⠊â â ‰" }, { "input": "cardigan", "output": "⠉⠜⠙⠊⠛â â " }, { "input": "cardigans", "output": "⠉⠜⠙⠊⠛â â â Ž" }, { "input": "cardinal", "output": "⠉⠜⠙⠔â â ‡" }, { "input": "cardinals", "output": "⠉⠜⠙⠔â â ‡â Ž" }, { "input": "carding", "output": "⠉⠜⠙⠬" }, { "input": "cardiogram", "output": "⠉⠜⠙⠊⠕⠛⠗â â " }, { "input": "cardiograms", "output": "⠉⠜⠙⠊⠕⠛⠗â â â Ž" }, { "input": "cardiologist", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠊⠌" }, { "input": "cardiologists", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "cardiology", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠽" }, { "input": "cardiopulmonary", "output": "⠉⠜⠙⠊⠕â â ¥â ‡â â •â â œâ ½" }, { "input": "cardiovascular", "output": "⠉⠜⠙⠊⠕⠧â â Žâ ‰â ¥â ‡â œ" }, { "input": "cards", "output": "⠉⠜⠙⠎" }, { "input": "cardsharp", "output": "⠉⠜⠙⠩⠜â " }, { "input": "cardsharps", "output": "⠉⠜⠙⠩⠜â â Ž" }, { "input": "care", "output": "⠉⠜⠑" }, { "input": "cared", "output": "⠉⠜⠫" }, { "input": "careen", "output": "⠉⠜⠑⠢" }, { "input": "careened", "output": "⠉⠜⠑⠢⠫" }, { "input": "careening", "output": "⠉⠜⠑⠢⠬" }, { "input": "careens", "output": "⠉⠜⠑⠢⠎" }, { "input": "career", "output": "⠉⠜⠑⠻" }, { "input": "careered", "output": "⠉⠜⠑⠻⠫" }, { "input": "careering", "output": "⠉⠜⠑⠻⠬" }, { "input": "careers", "output": "⠉⠜⠑⠻⠎" }, { "input": "carefree", "output": "⠉⠜⠑⠋⠗⠑⠑" }, { "input": "careful", "output": "⠉⠜⠑⠰⠇" }, { "input": "carefuller", "output": "⠉⠜⠑⠰⠇⠇⠻" }, { "input": "carefullest", "output": "⠉⠜⠑⠰⠇⠇⠑⠌" }, { "input": "carefully", "output": "⠉⠜⠑⠰⠇⠇⠽" }, { "input": "carefulness", "output": "⠉⠜⠑⠰⠇⠰⠎" }, { "input": "caregiver", "output": "⠉⠜⠑⠛⠊⠧⠻" }, { "input": "caregivers", "output": "⠉⠜⠑⠛⠊⠧⠻⠎" }, { "input": "careless", "output": "⠉⠜⠑⠨⠎" }, { "input": "carelessly", "output": "⠉⠜⠑⠨⠎⠇⠽" }, { "input": "carelessness", "output": "⠉⠜⠑⠨⠎⠰⠎" }, { "input": "cares", "output": "⠉⠜⠑⠎" }, { "input": "caress", "output": "⠉⠜⠑⠎⠎" }, { "input": "caressed", "output": "⠉⠜⠑⠎⠎⠫" }, { "input": "caresses", "output": "⠉⠜⠑⠎⠎⠑⠎" }, { "input": "caressing", "output": "⠉⠜⠑⠎⠎⠬" }, { "input": "caret", "output": "⠉⠜⠑⠞" }, { "input": "caretaker", "output": "⠉⠜⠑⠞â â …â »" }, { "input": "caretakers", "output": "⠉⠜⠑⠞â â …⠻⠎" }, { "input": "carets", "output": "⠉⠜⠑⠞⠎" }, { "input": "careworn", "output": "⠉⠜⠑⠺⠕⠗â " }, { "input": "carfare", "output": "⠉⠜⠋⠜⠑" }, { "input": "cargo", "output": "⠉⠜⠛⠕" }, { "input": "cargoes", "output": "⠉⠜⠛⠕⠑⠎" }, { "input": "cargos", "output": "⠉⠜⠛⠕⠎" }, { "input": "caribou", "output": "⠉⠜⠊⠃⠳" }, { "input": "caribous", "output": "⠉⠜⠊⠃⠳⠎" }, { "input": "caricature", "output": "⠉⠜⠊⠉â â žâ ¥â —â ‘" }, { "input": "caricatured", "output": "⠉⠜⠊⠉â â žâ ¥â —â «" }, { "input": "caricatures", "output": "⠉⠜⠊⠉â â žâ ¥â —â ‘â Ž" }, { "input": "caricaturing", "output": "⠉⠜⠊⠉â â žâ ¥â —â ¬" }, { "input": "caricaturist", "output": "⠉⠜⠊⠉â â žâ ¥â —â Šâ Œ" }, { "input": "caricaturists", "output": "⠉⠜⠊⠉â â žâ ¥â —⠊⠌⠎" }, { "input": "caries", "output": "⠉⠜⠊⠑⠎" }, { "input": "carillon", "output": "⠉⠜⠊⠇⠇⠕â " }, { "input": "carillons", "output": "⠉⠜⠊⠇⠇⠕â â Ž" }, { "input": "caring", "output": "⠉⠜⠬" }, { "input": "carjack", "output": "⠉⠜⠚â â ‰â …" }, { "input": "carjacked", "output": "⠉⠜⠚â â ‰â …â «" }, { "input": "carjacker", "output": "⠉⠜⠚â â ‰â …â »" }, { "input": "carjackers", "output": "⠉⠜⠚â â ‰â …⠻⠎" }, { "input": "carjacking", "output": "⠉⠜⠚â â ‰â …â ¬" }, { "input": "carjackings", "output": "⠉⠜⠚â â ‰â …⠬⠎" }, { "input": "carjacks", "output": "⠉⠜⠚â â ‰â …â Ž" }, { "input": "carmine", "output": "⠉⠜â â ”â ‘" }, { "input": "carmines", "output": "⠉⠜â â ”â ‘â Ž" }, { "input": "carnage", "output": "⠉⠜â â â ›â ‘" }, { "input": "carnal", "output": "⠉⠜â â â ‡" }, { "input": "carnally", "output": "⠉⠜â â â ‡â ‡â ½" }, { "input": "carnation", "output": "⠉⠜â â â °â " }, { "input": "carnations", "output": "⠉⠜â â â °â â Ž" }, { "input": "carnelian", "output": "⠉⠜â â ‘⠇⠊â â " }, { "input": "carnelians", "output": "⠉⠜â â ‘⠇⠊â â â Ž" }, { "input": "carnival", "output": "⠉⠜â â Šâ §â â ‡" }, { "input": "carnivals", "output": "⠉⠜â â Šâ §â â ‡â Ž" }, { "input": "carnivore", "output": "⠉⠜â â Šâ §â •â —â ‘" }, { "input": "carnivores", "output": "⠉⠜â â Šâ §â •â —â ‘â Ž" }, { "input": "carnivorous", "output": "⠉⠜â â Šâ §â •⠗⠳⠎" }, { "input": "carol", "output": "⠉⠜⠕⠇" }, { "input": "caroled", "output": "⠉⠜⠕⠇⠫" }, { "input": "caroler", "output": "⠉⠜⠕⠇⠻" }, { "input": "carolers", "output": "⠉⠜⠕⠇⠻⠎" }, { "input": "caroling", "output": "⠉⠜⠕⠇⠬" }, { "input": "carolled", "output": "⠉⠜⠕⠇⠇⠫" }, { "input": "caroller", "output": "⠉⠜⠕⠇⠇⠻" }, { "input": "carollers", "output": "⠉⠜⠕⠇⠇⠻⠎" }, { "input": "carolling", "output": "⠉⠜⠕⠇⠇⠬" }, { "input": "carols", "output": "⠉⠜⠕⠇⠎" }, { "input": "carom", "output": "⠉⠜⠕â " }, { "input": "caromed", "output": "⠉⠜⠕â â «" }, { "input": "caroming", "output": "⠉⠜⠕â â ¬" }, { "input": "caroms", "output": "⠉⠜⠕â â Ž" }, { "input": "carotid", "output": "⠉⠜⠕⠞⠊⠙" }, { "input": "carotids", "output": "⠉⠜⠕⠞⠊⠙⠎" }, { "input": "carousal", "output": "⠉⠜⠳⠎â â ‡" }, { "input": "carousals", "output": "⠉⠜⠳⠎â â ‡â Ž" }, { "input": "carouse", "output": "⠉⠜⠳⠎⠑" }, { "input": "caroused", "output": "⠉⠜⠳⠎⠫" }, { "input": "carousel", "output": "⠉⠜⠳⠎⠑⠇" }, { "input": "carousels", "output": "⠉⠜⠳⠎⠑⠇⠎" }, { "input": "carouser", "output": "⠉⠜⠳⠎⠻" }, { "input": "carousers", "output": "⠉⠜⠳⠎⠻⠎" }, { "input": "carouses", "output": "⠉⠜⠳⠎⠑⠎" }, { "input": "carousing", "output": "⠉⠜⠳⠎⠬" }, { "input": "carp", "output": "⠉⠜â " }, { "input": "carpal", "output": "⠉⠜â â â ‡" }, { "input": "carpals", "output": "⠉⠜â â â ‡â Ž" }, { "input": "carped", "output": "⠉⠜â â «" }, { "input": "carpel", "output": "⠉⠜â â ‘â ‡" }, { "input": "carpels", "output": "⠉⠜â â ‘⠇⠎" }, { "input": "carpenter", "output": "⠉⠜â â ¢â žâ »" }, { "input": "carpentered", "output": "⠉⠜â â ¢â žâ »â «" }, { "input": "carpentering", "output": "⠉⠜â â ¢â žâ »â ¬" }, { "input": "carpenters", "output": "⠉⠜â â ¢â žâ »â Ž" }, { "input": "carpentry", "output": "⠉⠜â â ¢â žâ —â ½" }, { "input": "carpet", "output": "⠉⠜â â ‘â ž" }, { "input": "carpetbag", "output": "⠉⠜â â ‘â žâ ƒâ â ›" }, { "input": "carpetbagged", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â «" }, { "input": "carpetbagger", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â »" }, { "input": "carpetbaggers", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â »â Ž" }, { "input": "carpetbagging", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â ¬" }, { "input": "carpetbags", "output": "⠉⠜â â ‘â žâ ƒâ â ›â Ž" }, { "input": "carpeted", "output": "⠉⠜â â ‘â žâ «" }, { "input": "carpeting", "output": "⠉⠜â â ‘â žâ ¬" }, { "input": "carpets", "output": "⠉⠜â â ‘â žâ Ž" }, { "input": "carpi", "output": "⠉⠜â â Š" }, { "input": "carping", "output": "⠉⠜â â ¬" }, { "input": "carport", "output": "⠉⠜â â •â —â ž" }, { "input": "carports", "output": "⠉⠜â â •â —â žâ Ž" }, { "input": "carps", "output": "⠉⠜â â Ž" }, { "input": "carpus", "output": "⠉⠜â â ¥â Ž" }, { "input": "carrel", "output": "⠉⠜⠗⠑⠇" }, { "input": "carrels", "output": "⠉⠜⠗⠑⠇⠎" }, { "input": "carriage", "output": "⠉⠜⠗⠊â â ›â ‘" }, { "input": "carriages", "output": "⠉⠜⠗⠊â â ›â ‘â Ž" }, { "input": "carriageway", "output": "⠉⠜⠗⠊â â ›â ‘â ºâ â ½" }, { "input": "carried", "output": "⠉⠜⠗⠊⠫" }, { "input": "carrier", "output": "⠉⠜⠗⠊⠻" }, { "input": "carriers", "output": "⠉⠜⠗⠊⠻⠎" }, { "input": "carries", "output": "⠉⠜⠗⠊⠑⠎" }, { "input": "carrion", "output": "⠉⠜⠗⠊⠕â " }, { "input": "carrot", "output": "⠉⠜⠗⠕⠞" }, { "input": "carrots", "output": "⠉⠜⠗⠕⠞⠎" }, { "input": "carrousel", "output": "⠉⠜⠗⠳⠎⠑⠇" }, { "input": "carrousels", "output": "⠉⠜⠗⠳⠎⠑⠇⠎" }, { "input": "carry", "output": "⠉⠜⠗⠽" }, { "input": "carryall", "output": "⠉⠜⠗⠽â â ‡â ‡" }, { "input": "carryalls", "output": "⠉⠜⠗⠽â â ‡â ‡â Ž" }, { "input": "carrying", "output": "⠉⠜⠗⠽⠬" }, { "input": "carryout", "output": "⠉⠜⠗⠽⠳⠞" }, { "input": "cars", "output": "⠉⠜⠎" }, { "input": "carsick", "output": "⠉⠜⠎⠊⠉⠅" }, { "input": "carsickness", "output": "⠉⠜⠎⠊⠉⠅⠰⠎" }, { "input": "cart", "output": "⠉⠜⠞" }, { "input": "carted", "output": "⠉⠜⠞⠫" }, { "input": "cartel", "output": "⠉⠜⠞⠑⠇" }, { "input": "cartels", "output": "⠉⠜⠞⠑⠇⠎" }, { "input": "cartilage", "output": "⠉⠜⠞⠊⠇â â ›â ‘" }, { "input": "cartilages", "output": "⠉⠜⠞⠊⠇â â ›â ‘â Ž" }, { "input": "cartilaginous", "output": "⠉⠜⠞⠊⠇â â ›â ”⠳⠎" }, { "input": "carting", "output": "⠉⠜⠞⠬" }, { "input": "cartographer", "output": "⠉⠜⠞⠕⠛⠗â â â “â »" }, { "input": "cartographers", "output": "⠉⠜⠞⠕⠛⠗â â â “⠻⠎" }, { "input": "cartography", "output": "⠉⠜⠞⠕⠛⠗â â â “â ½" }, { "input": "carton", "output": "⠉⠜⠞⠕â " }, { "input": "cartons", "output": "⠉⠜⠞⠕â â Ž" }, { "input": "cartoon", "output": "⠉⠜⠞⠕⠕â " }, { "input": "cartooned", "output": "⠉⠜⠞⠕⠕â â «" }, { "input": "cartooning", "output": "⠉⠜⠞⠕⠕â â ¬" }, { "input": "cartoonist", "output": "⠉⠜⠞⠕⠕â â Šâ Œ" }, { "input": "cartoonists", "output": "⠉⠜⠞⠕⠕â â Šâ Œâ Ž" }, { "input": "cartoons", "output": "⠉⠜⠞⠕⠕â â Ž" }, { "input": "cartridge", "output": "⠉⠜⠞⠗⠊⠙⠛⠑" }, { "input": "cartridges", "output": "⠉⠜⠞⠗⠊⠙⠛⠑⠎" }, { "input": "carts", "output": "⠉⠜⠞⠎" }, { "input": "cartwheel", "output": "⠉⠜⠞⠱⠑⠑⠇" }, { "input": "cartwheeled", "output": "⠉⠜⠞⠱⠑⠑⠇⠫" }, { "input": "cartwheeling", "output": "⠉⠜⠞⠱⠑⠑⠇⠬" }, { "input": "cartwheels", "output": "⠉⠜⠞⠱⠑⠑⠇⠎" }, { "input": "carve", "output": "⠉⠜⠧⠑" }, { "input": "carved", "output": "⠉⠜⠧⠫" }, { "input": "carver", "output": "⠉⠜⠧⠻" }, { "input": "carvers", "output": "⠉⠜⠧⠻⠎" }, { "input": "carves", "output": "⠉⠜⠧⠑⠎" }, { "input": "carving", "output": "⠉⠜⠧⠬" }, { "input": "carvings", "output": "⠉⠜⠧⠬⠎" }, { "input": "caryatid", "output": "⠉⠜⠽â â žâ Šâ ™" }, { "input": "caryatides", "output": "⠉⠜⠽â â žâ Šâ ™â ‘â Ž" }, { "input": "caryatids", "output": "⠉⠜⠽â â žâ Šâ ™â Ž" }, { "input": "cascade", "output": "â ‰â â Žâ ‰â â ™â ‘" }, { "input": "cascaded", "output": "â ‰â â Žâ ‰â â ™â «" }, { "input": "cascades", "output": "â ‰â â Žâ ‰â â ™â ‘â Ž" }, { "input": "cascading", "output": "â ‰â â Žâ ‰â â ™â ¬" }, { "input": "case", "output": "â ‰â â Žâ ‘" }, { "input": "cased", "output": "â ‰â â Žâ «" }, { "input": "casein", "output": "â ‰â â Žâ ‘â ”" }, { "input": "caseload", "output": "â ‰â â Žâ ‘⠇⠕â â ™" }, { "input": "caseloads", "output": "â ‰â â Žâ ‘⠇⠕â â ™â Ž" }, { "input": "casement", "output": "â ‰â â Žâ ‘â °â ž" }, { "input": "casements", "output": "â ‰â â Žâ ‘â °â žâ Ž" }, { "input": "cases", "output": "â ‰â â Žâ ‘â Ž" }, { "input": "casework", "output": "â ‰â â Žâ ‘â â º" }, { "input": "caseworker", "output": "â ‰â â Žâ ‘â â ºâ »" }, { "input": "caseworkers", "output": "â ‰â â Žâ ‘â â ºâ »â Ž" }, { "input": "cash", "output": "â ‰â â ©" }, { "input": "cashed", "output": "â ‰â â ©â «" }, { "input": "cashes", "output": "â ‰â â ©â ‘â Ž" }, { "input": "cashew", "output": "â ‰â â ©â ‘â º" }, { "input": "cashews", "output": "â ‰â â ©â ‘⠺⠎" }, { "input": "cashier", "output": "â ‰â â ©â Šâ »" }, { "input": "cashiered", "output": "â ‰â â ©â Šâ »â «" }, { "input": "cashiering", "output": "â ‰â â ©â Šâ »â ¬" }, { "input": "cashiers", "output": "â ‰â â ©â Šâ »â Ž" }, { "input": "cashing", "output": "â ‰â â ©â ¬" }, { "input": "cashmere", "output": "â ‰â â ©â â »â ‘" }, { "input": "casing", "output": "â ‰â â Žâ ¬" }, { "input": "casings", "output": "â ‰â â Žâ ¬â Ž" }, { "input": "casino", "output": "â ‰â â Žâ ”â •" }, { "input": "casinos", "output": "â ‰â â Žâ ”â •â Ž" }, { "input": "cask", "output": "â ‰â â Žâ …" }, { "input": "casket", "output": "â ‰â â Žâ …â ‘â ž" }, { "input": "caskets", "output": "â ‰â â Žâ …â ‘â žâ Ž" }, { "input": "casks", "output": "â ‰â â Žâ …â Ž" }, { "input": "cassava", "output": "â ‰â â Žâ Žâ â §â " }, { "input": "cassavas", "output": "â ‰â â Žâ Žâ â §â â Ž" }, { "input": "casserole", "output": "â ‰â â Žâ Žâ »â •⠇⠑" }, { "input": "casseroled", "output": "â ‰â â Žâ Žâ »â •⠇⠫" }, { "input": "casseroles", "output": "â ‰â â Žâ Žâ »â •⠇⠑⠎" }, { "input": "casseroling", "output": "â ‰â â Žâ Žâ »â •⠇⠬" }, { "input": "cassette", "output": "â ‰â â Žâ Žâ ‘â žâ žâ ‘" }, { "input": "cassettes", "output": "â ‰â â Žâ Žâ ‘â žâ žâ ‘â Ž" }, { "input": "cassia", "output": "â ‰â â Žâ Žâ Šâ " }, { "input": "cassias", "output": "â ‰â â Žâ Žâ Šâ â Ž" }, { "input": "cassino", "output": "â ‰â â Žâ Žâ ”â •" }, { "input": "cassinos", "output": "â ‰â â Žâ Žâ ”â •â Ž" }, { "input": "cassock", "output": "â ‰â â Žâ Žâ •⠉⠅" }, { "input": "cassocks", "output": "â ‰â â Žâ Žâ •⠉⠅⠎" }, { "input": "cast", "output": "â ‰â â Œ" }, { "input": "castanet", "output": "â ‰â â Œâ â â ‘â ž" }, { "input": "castanets", "output": "â ‰â â Œâ â â ‘â žâ Ž" }, { "input": "castaway", "output": "â ‰â â Œâ â ºâ â ½" }, { "input": "castaways", "output": "â ‰â â Œâ â ºâ â ½â Ž" }, { "input": "caste", "output": "â ‰â â Œâ ‘" }, { "input": "caster", "output": "â ‰â â Œâ »" }, { "input": "casters", "output": "â ‰â â Œâ »â Ž" }, { "input": "castes", "output": "â ‰â â Œâ ‘â Ž" }, { "input": "castigate", "output": "â ‰â â Œâ Šâ ›â â žâ ‘" }, { "input": "castigated", "output": "â ‰â â Œâ Šâ ›â â žâ «" }, { "input": "castigates", "output": "â ‰â â Œâ Šâ ›â â žâ ‘â Ž" }, { "input": "castigating", "output": "â ‰â â Œâ Šâ ›â â žâ ¬" }, { "input": "castigation", "output": "â ‰â â Œâ Šâ ›â â °â " }, { "input": "castigator", "output": "â ‰â â Œâ Šâ ›â â žâ •â —" }, { "input": "castigators", "output": "â ‰â â Œâ Šâ ›â â žâ •â —â Ž" }, { "input": "casting", "output": "â ‰â â Œâ ¬" }, { "input": "castings", "output": "â ‰â â Œâ ¬â Ž" }, { "input": "castle", "output": "â ‰â â Œâ ‡â ‘" }, { "input": "castled", "output": "â ‰â â Œâ ‡â «" }, { "input": "castles", "output": "â ‰â â Œâ ‡â ‘â Ž" }, { "input": "castling", "output": "â ‰â â Œâ ‡â ¬" }, { "input": "castoff", "output": "â ‰â â Œâ ·â ‹" }, { "input": "castoffs", "output": "â ‰â â Œâ ·â ‹â Ž" }, { "input": "castor", "output": "â ‰â â Œâ •â —" }, { "input": "castors", "output": "â ‰â â Œâ •â —â Ž" }, { "input": "castrate", "output": "â ‰â â Œâ —â â žâ ‘" }, { "input": "castrated", "output": "â ‰â â Œâ —â â žâ «" }, { "input": "castrates", "output": "â ‰â â Œâ —â â žâ ‘â Ž" }, { "input": "castrating", "output": "â ‰â â Œâ —â â žâ ¬" }, { "input": "castration", "output": "â ‰â â Œâ —â â °â " }, { "input": "castrations", "output": "â ‰â â Œâ —â â °â â Ž" }, { "input": "casts", "output": "â ‰â â Œâ Ž" }, { "input": "casual", "output": "â ‰â â Žâ ¥â â ‡" }, { "input": "casually", "output": "â ‰â â Žâ ¥â â ‡â ‡â ½" }, { "input": "casualness", "output": "â ‰â â Žâ ¥â â ‡â °â Ž" }, { "input": "casuals", "output": "â ‰â â Žâ ¥â â ‡â Ž" }, { "input": "casualties", "output": "â ‰â â Žâ ¥â â ‡â žâ Šâ ‘â Ž" }, { "input": "casualty", "output": "â ‰â â Žâ ¥â â ‡â žâ ½" }, { "input": "casuist", "output": "â ‰â â Žâ ¥â Šâ Œ" }, { "input": "casuistry", "output": "â ‰â â Žâ ¥â Šâ Œâ —â ½" }, { "input": "casuists", "output": "â ‰â â Žâ ¥â Šâ Œâ Ž" }, { "input": "cat", "output": "â ‰â â ž" }, { "input": "cataclysm", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ " }, { "input": "cataclysmic", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ â Šâ ‰" }, { "input": "cataclysms", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ â Ž" }, { "input": "catacomb", "output": "â ‰â â žâ â ‰â •â â ƒ" }, { "input": "catacombs", "output": "â ‰â â žâ â ‰â •â â ƒâ Ž" }, { "input": "catafalque", "output": "â ‰â â žâ â ‹â â ‡â Ÿâ ¥â ‘" }, { "input": "catafalques", "output": "â ‰â â žâ â ‹â â ‡â Ÿâ ¥â ‘â Ž" }, { "input": "catalepsy", "output": "â ‰â â žâ â ‡â ‘â â Žâ ½" }, { "input": "cataleptic", "output": "â ‰â â žâ â ‡â ‘â â žâ Šâ ‰" }, { "input": "cataleptics", "output": "â ‰â â žâ â ‡â ‘â â žâ Šâ ‰â Ž" }, { "input": "catalog", "output": "â ‰â â žâ â ‡â •â ›" }, { "input": "cataloged", "output": "â ‰â â žâ â ‡â •⠛⠫" }, { "input": "cataloger", "output": "â ‰â â žâ â ‡â •⠛⠻" }, { "input": "catalogers", "output": "â ‰â â žâ â ‡â •⠛⠻⠎" }, { "input": "cataloging", "output": "â ‰â â žâ â ‡â •⠛⠬" }, { "input": "catalogs", "output": "â ‰â â žâ â ‡â •⠛⠎" }, { "input": "catalogue", "output": "â ‰â â žâ â ‡â •⠛⠥⠑" }, { "input": "catalogued", "output": "â ‰â â žâ â ‡â •⠛⠥⠫" }, { "input": "cataloguer", "output": "â ‰â â žâ â ‡â •⠛⠥⠻" }, { "input": "cataloguers", "output": "â ‰â â žâ â ‡â •⠛⠥⠻⠎" }, { "input": "catalogues", "output": "â ‰â â žâ â ‡â •⠛⠥⠑⠎" }, { "input": "cataloguing", "output": "â ‰â â žâ â ‡â •⠛⠥⠬" }, { "input": "catalpa", "output": "â ‰â â žâ â ‡â â " }, { "input": "catalpas", "output": "â ‰â â žâ â ‡â â â Ž" }, { "input": "catalysis", "output": "â ‰â â žâ â ‡â ½â Žâ Šâ Ž" }, { "input": "catalyst", "output": "â ‰â â žâ â ‡â ½â Œ" }, { "input": "catalysts", "output": "â ‰â â žâ â ‡â ½â Œâ Ž" }, { "input": "catalytic", "output": "â ‰â â žâ â ‡â ½â žâ Šâ ‰" }, { "input": "catalyze", "output": "â ‰â â žâ â ‡â ½â µâ ‘" }, { "input": "catalyzed", "output": "â ‰â â žâ â ‡â ½â µâ «" }, { "input": "catalyzes", "output": "â ‰â â žâ â ‡â ½â µâ ‘â Ž" }, { "input": "catalyzing", "output": "â ‰â â žâ â ‡â ½â µâ ¬" }, { "input": "catamaran", "output": "â ‰â â žâ â â œâ â " }, { "input": "catamarans", "output": "â ‰â â žâ â â œâ â â Ž" }, { "input": "catapult", "output": "â ‰â â žâ â â ¥â ‡â ž" }, { "input": "catapulted", "output": "â ‰â â žâ â â ¥â ‡â žâ «" }, { "input": "catapulting", "output": "â ‰â â žâ â â ¥â ‡â žâ ¬" }, { "input": "catapults", "output": "â ‰â â žâ â â ¥â ‡â žâ Ž" }, { "input": "cataract", "output": "â ‰â â žâ œâ â ‰â ž" }, { "input": "cataracts", "output": "â ‰â â žâ œâ â ‰â žâ Ž" }, { "input": "catarrh", "output": "â ‰â â žâ œâ —â “" }, { "input": "catastrophe", "output": "â ‰â â žâ â Œâ —â •â â “â ‘" }, { "input": "catastrophes", "output": "â ‰â â žâ â Œâ —â •â â “â ‘â Ž" }, { "input": "catastrophic", "output": "â ‰â â žâ â Œâ —â •â â “â Šâ ‰" }, { "input": "catastrophically", "output": "â ‰â â žâ â Œâ —â •â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "catatonic", "output": "â ‰â â žâ â žâ •â â Šâ ‰" }, { "input": "catatonics", "output": "â ‰â â žâ â žâ •â â Šâ ‰â Ž" }, { "input": "catbird", "output": "â ‰â â žâ ƒâ Šâ —â ™" }, { "input": "catbirds", "output": "â ‰â â žâ ƒâ Šâ —⠙⠎" }, { "input": "catboat", "output": "â ‰â â žâ ƒâ •â â ž" }, { "input": "catboats", "output": "â ‰â â žâ ƒâ •â â žâ Ž" }, { "input": "catcall", "output": "â ‰â â žâ ‰â â ‡â ‡" }, { "input": "catcalled", "output": "â ‰â â žâ ‰â â ‡â ‡â «" }, { "input": "catcalling", "output": "â ‰â â žâ ‰â â ‡â ‡â ¬" }, { "input": "catcalls", "output": "â ‰â â žâ ‰â â ‡â ‡â Ž" }, { "input": "catch", "output": "â ‰â â žâ ¡" }, { "input": "catchall", "output": "â ‰â â žâ ¡â â ‡â ‡" }, { "input": "catchalls", "output": "â ‰â â žâ ¡â â ‡â ‡â Ž" }, { "input": "catcher", "output": "â ‰â â žâ ¡â »" }, { "input": "catchers", "output": "â ‰â â žâ ¡â »â Ž" }, { "input": "catches", "output": "â ‰â â žâ ¡â ‘â Ž" }, { "input": "catchier", "output": "â ‰â â žâ ¡â Šâ »" }, { "input": "catchiest", "output": "â ‰â â žâ ¡â Šâ ‘â Œ" }, { "input": "catching", "output": "â ‰â â žâ ¡â ¬" }, { "input": "catchings", "output": "â ‰â â žâ ¡â ¬â Ž" }, { "input": "catchment", "output": "â ‰â â žâ ¡â °â ž" }, { "input": "catchphrase", "output": "â ‰â â žâ ¡â â “â —â â Žâ ‘" }, { "input": "catchup", "output": "â ‰â â žâ ¡â ¥â " }, { "input": "catchword", "output": "â ‰â â žâ ¡â ˜â º" }, { "input": "catchwords", "output": "â ‰â â žâ ¡â ˜â ºâ Ž" }, { "input": "catchy", "output": "â ‰â â žâ ¡â ½" }, { "input": "catechise", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ ‘" }, { "input": "catechised", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ «" }, { "input": "catechises", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ ‘â Ž" }, { "input": "catechising", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ ¬" }, { "input": "catechism", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ " }, { "input": "catechisms", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ â Ž" }, { "input": "catechize", "output": "â ‰â â žâ ‘⠡⠊⠵⠑" }, { "input": "catechized", "output": "â ‰â â žâ ‘⠡⠊⠵⠫" }, { "input": "catechizes", "output": "â ‰â â žâ ‘⠡⠊⠵⠑⠎" }, { "input": "catechizing", "output": "â ‰â â žâ ‘⠡⠊⠵⠬" }, { "input": "categorical", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠉â â ‡" }, { "input": "categorically", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠉â â ‡â ‡â ½" }, { "input": "categories", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠑⠎" }, { "input": "categorization", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵â â °â " }, { "input": "categorizations", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵â â °â â Ž" }, { "input": "categorize", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠑" }, { "input": "categorized", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠫" }, { "input": "categorizes", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠑⠎" }, { "input": "categorizing", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠬" }, { "input": "category", "output": "â ‰â â žâ ‘⠛⠕⠗⠽" }, { "input": "cater", "output": "â ‰â â žâ »" }, { "input": "catered", "output": "â ‰â â žâ »â «" }, { "input": "caterer", "output": "â ‰â â žâ »â »" }, { "input": "caterers", "output": "â ‰â â žâ »â »â Ž" }, { "input": "catering", "output": "â ‰â â žâ »â ¬" }, { "input": "caterings", "output": "â ‰â â žâ »â ¬â Ž" }, { "input": "caterpillar", "output": "â ‰â â žâ »â â Šâ ‡â ‡â œ" }, { "input": "caterpillars", "output": "â ‰â â žâ »â â Šâ ‡â ‡â œâ Ž" }, { "input": "caters", "output": "â ‰â â žâ »â Ž" }, { "input": "caterwaul", "output": "â ‰â â žâ »â ºâ â ¥â ‡" }, { "input": "caterwauled", "output": "â ‰â â žâ »â ºâ â ¥â ‡â «" }, { "input": "caterwauling", "output": "â ‰â â žâ »â ºâ â ¥â ‡â ¬" }, { "input": "caterwauls", "output": "â ‰â â žâ »â ºâ â ¥â ‡â Ž" }, { "input": "catfish", "output": "â ‰â â žâ ‹â Šâ ©" }, { "input": "catfishes", "output": "â ‰â â žâ ‹â Šâ ©â ‘â Ž" }, { "input": "catgut", "output": "â ‰â â žâ ›â ¥â ž" }, { "input": "catharses", "output": "â ‰â â ¹â œâ Žâ ‘â Ž" }, { "input": "catharsis", "output": "â ‰â â ¹â œâ Žâ Šâ Ž" }, { "input": "cathartic", "output": "â ‰â â ¹â œâ žâ Šâ ‰" }, { "input": "cathartics", "output": "â ‰â â ¹â œâ žâ Šâ ‰â Ž" }, { "input": "cathedral", "output": "â ‰â â ®â ™â —â â ‡" }, { "input": "cathedrals", "output": "â ‰â â ®â ™â —â â ‡â Ž" }, { "input": "catheter", "output": "â ‰â â ®â žâ »" }, { "input": "catheters", "output": "â ‰â â ®â žâ »â Ž" }, { "input": "cathode", "output": "â ‰â â ¹â •⠙⠑" }, { "input": "cathodes", "output": "â ‰â â ¹â •⠙⠑⠎" }, { "input": "catholic", "output": "â ‰â â ¹â •⠇⠊⠉" }, { "input": "catholicity", "output": "â ‰â â ¹â •⠇⠊⠉⠰⠽" }, { "input": "cation", "output": "â ‰â â žâ Šâ •â " }, { "input": "cations", "output": "â ‰â â žâ Šâ •â â Ž" }, { "input": "catkin", "output": "â ‰â â žâ …â ”" }, { "input": "catkins", "output": "â ‰â â žâ …⠔⠎" }, { "input": "catnap", "output": "â ‰â â žâ â â " }, { "input": "catnapped", "output": "â ‰â â žâ â â â â «" }, { "input": "catnapping", "output": "â ‰â â žâ â â â â ¬" }, { "input": "catnaps", "output": "â ‰â â žâ â â â Ž" }, { "input": "catnip", "output": "â ‰â â žâ â Šâ " }, { "input": "cats", "output": "â ‰â â žâ Ž" }, { "input": "catsup", "output": "â ‰â â žâ Žâ ¥â " }, { "input": "cattail", "output": "â ‰â â žâ žâ â Šâ ‡" }, { "input": "cattails", "output": "â ‰â â žâ žâ â Šâ ‡â Ž" }, { "input": "cattier", "output": "â ‰â â žâ žâ Šâ »" }, { "input": "cattiest", "output": "â ‰â â žâ žâ Šâ ‘â Œ" }, { "input": "cattily", "output": "â ‰â â žâ žâ Šâ ‡â ½" }, { "input": "cattiness", "output": "â ‰â â žâ žâ Šâ °â Ž" }, { "input": "cattle", "output": "â ‰â â žâ žâ ‡â ‘" }, { "input": "cattleman", "output": "â ‰â â žâ žâ ‡â ‘â â â " }, { "input": "cattlemen", "output": "â ‰â â žâ žâ ‡â ‘â â ¢" }, { "input": "catty", "output": "â ‰â â žâ žâ ½" }, { "input": "catwalk", "output": "â ‰â â žâ ºâ â ‡â …" }, { "input": "catwalks", "output": "â ‰â â žâ ºâ â ‡â …â Ž" }, { "input": "caucus", "output": "â ‰â â ¥â ‰â ¥â Ž" }, { "input": "caucused", "output": "â ‰â â ¥â ‰â ¥â Žâ «" }, { "input": "caucuses", "output": "â ‰â â ¥â ‰â ¥â Žâ ‘â Ž" }, { "input": "caucusing", "output": "â ‰â â ¥â ‰â ¥â Žâ ¬" }, { "input": "caucussed", "output": "â ‰â â ¥â ‰â ¥â Žâ Žâ «" }, { "input": "caucussing", "output": "â ‰â â ¥â ‰â ¥â Žâ Žâ ¬" }, { "input": "caudal", "output": "â ‰â â ¥â ™â â ‡" }, { "input": "caught", "output": "â ‰â â ¥â £â ž" }, { "input": "cauldron", "output": "â ‰â â ¥â ‡â ™â —â •â " }, { "input": "cauldrons", "output": "â ‰â â ¥â ‡â ™â —â •â â Ž" }, { "input": "cauliflower", "output": "â ‰â â ¥â ‡â Šâ ‹â ‡â ªâ »" }, { "input": "cauliflowers", "output": "â ‰â â ¥â ‡â Šâ ‹â ‡â ªâ »â Ž" }, { "input": "caulk", "output": "â ‰â â ¥â ‡â …" }, { "input": "caulked", "output": "â ‰â â ¥â ‡â …â «" }, { "input": "caulking", "output": "â ‰â â ¥â ‡â …â ¬" }, { "input": "caulkings", "output": "â ‰â â ¥â ‡â …⠬⠎" }, { "input": "caulks", "output": "â ‰â â ¥â ‡â …â Ž" }, { "input": "causal", "output": "â ‰â â ¥â Žâ â ‡" }, { "input": "causalities", "output": "â ‰â â ¥â Žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "causality", "output": "â ‰â â ¥â Žâ â ‡â °â ½" }, { "input": "causally", "output": "â ‰â â ¥â Žâ â ‡â ‡â ½" }, { "input": "causation", "output": "â ‰â â ¥â Žâ â °â " }, { "input": "causative", "output": "â ‰â â ¥â Žâ â žâ Šâ §â ‘" }, { "input": "cause", "output": "â ‰â â ¥â Žâ ‘" }, { "input": "caused", "output": "â ‰â â ¥â Žâ «" }, { "input": "causeless", "output": "â ‰â â ¥â Žâ ‘⠨⠎" }, { "input": "causes", "output": "â ‰â â ¥â Žâ ‘â Ž" }, { "input": "causeway", "output": "â ‰â â ¥â Žâ ‘â ºâ â ½" }, { "input": "causeways", "output": "â ‰â â ¥â Žâ ‘â ºâ â ½â Ž" }, { "input": "causing", "output": "â ‰â â ¥â Žâ ¬" }, { "input": "caustic", "output": "â ‰â â ¥â Œâ Šâ ‰" }, { "input": "caustically", "output": "â ‰â â ¥â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "caustics", "output": "â ‰â â ¥â Œâ Šâ ‰â Ž" }, { "input": "cauterize", "output": "â ‰â â ¥â žâ »â Šâ µâ ‘" }, { "input": "cauterized", "output": "â ‰â â ¥â žâ »â Šâ µâ «" }, { "input": "cauterizes", "output": "â ‰â â ¥â žâ »â Šâ µâ ‘â Ž" }, { "input": "cauterizing", "output": "â ‰â â ¥â žâ »â Šâ µâ ¬" }, { "input": "caution", "output": "â ‰â â ¥â °â " }, { "input": "cautionary", "output": "â ‰â â ¥â °â â œâ ½" }, { "input": "cautioned", "output": "â ‰â â ¥â °â â «" }, { "input": "cautioning", "output": "â ‰â â ¥â °â â ¬" }, { "input": "cautions", "output": "â ‰â â ¥â °â â Ž" }, { "input": "cautious", "output": "â ‰â â ¥â žâ Šâ ³â Ž" }, { "input": "cautiously", "output": "â ‰â â ¥â žâ Šâ ³â Žâ ‡â ½" }, { "input": "cautiousness", "output": "â ‰â â ¥â žâ Šâ ³â Žâ °â Ž" }, { "input": "cavalcade", "output": "â ‰â â §â â ‡â ‰â â ™â ‘" }, { "input": "cavalcades", "output": "â ‰â â §â â ‡â ‰â â ™â ‘â Ž" }, { "input": "cavalier", "output": "â ‰â â §â â ‡â Šâ »" }, { "input": "cavaliers", "output": "â ‰â â §â â ‡â Šâ »â Ž" }, { "input": "cavalries", "output": "â ‰â â §â â ‡â —â Šâ ‘â Ž" }, { "input": "cavalry", "output": "â ‰â â §â â ‡â —â ½" }, { "input": "cavalryman", "output": "â ‰â â §â â ‡â —â ½â â â " }, { "input": "cavalrymen", "output": "â ‰â â §â â ‡â —â ½â â ¢" }, { "input": "cave", "output": "â ‰â â §â ‘" }, { "input": "caveat", "output": "â ‰â â §â ‚â ž" }, { "input": "caveats", "output": "â ‰â â §â ‚â žâ Ž" }, { "input": "caved", "output": "â ‰â â §â «" }, { "input": "caveman", "output": "â ‰â â §â ‘â â â " }, { "input": "cavemen", "output": "â ‰â â §â ‘â â ¢" }, { "input": "cavern", "output": "â ‰â â §â »â " }, { "input": "cavernous", "output": "â ‰â â §â »â â ³â Ž" }, { "input": "caverns", "output": "â ‰â â §â »â â Ž" }, { "input": "caves", "output": "â ‰â â §â ‘â Ž" }, { "input": "caviar", "output": "â ‰â â §â Šâ œ" }, { "input": "caviare", "output": "â ‰â â §â Šâ œâ ‘" }, { "input": "cavil", "output": "â ‰â â §â Šâ ‡" }, { "input": "caviled", "output": "â ‰â â §â Šâ ‡â «" }, { "input": "caviling", "output": "â ‰â â §â Šâ ‡â ¬" }, { "input": "cavilled", "output": "â ‰â â §â Šâ ‡â ‡â «" }, { "input": "cavilling", "output": "â ‰â â §â Šâ ‡â ‡â ¬" }, { "input": "cavils", "output": "â ‰â â §â Šâ ‡â Ž" }, { "input": "caving", "output": "â ‰â â §â ¬" }, { "input": "cavities", "output": "â ‰â â §â Šâ žâ Šâ ‘â Ž" }, { "input": "cavity", "output": "â ‰â â §â °â ½" }, { "input": "cavort", "output": "â ‰â â §â •â —â ž" }, { "input": "cavorted", "output": "â ‰â â §â •â —â žâ «" }, { "input": "cavorting", "output": "â ‰â â §â •â —â žâ ¬" }, { "input": "cavorts", "output": "â ‰â â §â •â —â žâ Ž" }, { "input": "caw", "output": "â ‰â â º" }, { "input": "cawed", "output": "â ‰â â ºâ «" }, { "input": "cawing", "output": "â ‰â â ºâ ¬" }, { "input": "caws", "output": "â ‰â â ºâ Ž" }, { "input": "cayenne", "output": "â ‰â â ½â ¢â â ‘" }, { "input": "cease", "output": "⠉⠂⠎⠑" }, { "input": "ceased", "output": "⠉⠂⠎⠫" }, { "input": "ceasefire", "output": "⠉⠂⠎⠑⠋⠊⠗⠑" }, { "input": "ceaseless", "output": "⠉⠂⠎⠑⠨⠎" }, { "input": "ceaselessly", "output": "⠉⠂⠎⠑⠨⠎⠇⠽" }, { "input": "ceases", "output": "⠉⠂⠎⠑⠎" }, { "input": "ceasing", "output": "⠉⠂⠎⠬" }, { "input": "cedar", "output": "⠉⠫⠜" }, { "input": "cedars", "output": "⠉⠫⠜⠎" }, { "input": "cede", "output": "⠉⠫⠑" }, { "input": "ceded", "output": "⠉⠫⠫" }, { "input": "cedes", "output": "⠉⠫⠑⠎" }, { "input": "cedilla", "output": "⠉⠫⠊⠇⠇â " }, { "input": "cedillas", "output": "⠉⠫⠊⠇⠇â â Ž" }, { "input": "ceding", "output": "⠉⠫⠬" }, { "input": "ceiling", "output": "⠉⠑⠊⠇⠬" }, { "input": "ceilings", "output": "⠉⠑⠊⠇⠬⠎" }, { "input": "celebrant", "output": "⠉⠑⠇⠑⠃⠗â â â ž" }, { "input": "celebrants", "output": "⠉⠑⠇⠑⠃⠗â â â žâ Ž" }, { "input": "celebrate", "output": "⠉⠑⠇⠑⠃⠗â â žâ ‘" }, { "input": "celebrated", "output": "⠉⠑⠇⠑⠃⠗â â žâ «" }, { "input": "celebrates", "output": "⠉⠑⠇⠑⠃⠗â â žâ ‘â Ž" }, { "input": "celebrating", "output": "⠉⠑⠇⠑⠃⠗â â žâ ¬" }, { "input": "celebration", "output": "⠉⠑⠇⠑⠃⠗â â °â " }, { "input": "celebrations", "output": "⠉⠑⠇⠑⠃⠗â â °â â Ž" }, { "input": "celebratory", "output": "⠉⠑⠇⠑⠃⠗â â žâ •â —â ½" }, { "input": "celebrities", "output": "⠉⠑⠇⠑⠃⠗⠊⠞⠊⠑⠎" }, { "input": "celebrity", "output": "⠉⠑⠇⠑⠃⠗⠰⠽" }, { "input": "celerity", "output": "⠉⠑⠇⠻⠰⠽" }, { "input": "celery", "output": "⠉⠑⠇⠻⠽" }, { "input": "celesta", "output": "⠉⠑⠇⠑⠌â " }, { "input": "celestas", "output": "⠉⠑⠇⠑⠌â â Ž" }, { "input": "celestial", "output": "⠉⠑⠇⠑⠌⠊â â ‡" }, { "input": "celibacy", "output": "⠉⠑⠇⠊⠃â â ‰â ½" }, { "input": "celibate", "output": "⠉⠑⠇⠊⠃â â žâ ‘" }, { "input": "celibates", "output": "⠉⠑⠇⠊⠃â â žâ ‘â Ž" }, { "input": "cell", "output": "⠉⠑⠇⠇" }, { "input": "cellar", "output": "⠉⠑⠇⠇⠜" }, { "input": "cellars", "output": "⠉⠑⠇⠇⠜⠎" }, { "input": "celli", "output": "⠉⠑⠇⠇⠊" }, { "input": "cellist", "output": "⠉⠑⠇⠇⠊⠌" }, { "input": "cellists", "output": "⠉⠑⠇⠇⠊⠌⠎" }, { "input": "cello", "output": "⠉⠑⠇⠇⠕" }, { "input": "cellophane", "output": "⠉⠑⠇⠇⠕â â “â â â ‘" }, { "input": "cellos", "output": "⠉⠑⠇⠇⠕⠎" }, { "input": "cells", "output": "⠉⠑⠇⠇⠎" }, { "input": "cellular", "output": "⠉⠑⠇⠇⠥⠇⠜" }, { "input": "cellulars", "output": "⠉⠑⠇⠇⠥⠇⠜⠎" }, { "input": "cellulite", "output": "⠉⠑⠇⠇⠥⠇⠊⠞⠑" }, { "input": "celluloid", "output": "⠉⠑⠇⠇⠥⠇⠕⠊⠙" }, { "input": "cellulose", "output": "⠉⠑⠇⠇⠥⠇⠕⠎⠑" }, { "input": "cement", "output": "⠉⠑⠰⠞" }, { "input": "cemented", "output": "⠉⠑⠰⠞⠫" }, { "input": "cementing", "output": "⠉⠑⠰⠞⠬" }, { "input": "cements", "output": "⠉⠑⠰⠞⠎" }, { "input": "cemeteries", "output": "⠉⠑â â ‘⠞⠻⠊⠑⠎" }, { "input": "cemetery", "output": "⠉⠑â â ‘⠞⠻⠽" }, { "input": "cenotaph", "output": "⠉⠢⠕⠞â â â “" }, { "input": "cenotaphs", "output": "⠉⠢⠕⠞â â â “â Ž" }, { "input": "censer", "output": "⠉⠢⠎⠻" }, { "input": "censers", "output": "⠉⠢⠎⠻⠎" }, { "input": "censor", "output": "⠉⠢⠎⠕⠗" }, { "input": "censored", "output": "⠉⠢⠎⠕⠗⠫" }, { "input": "censoring", "output": "⠉⠢⠎⠕⠗⠬" }, { "input": "censorious", "output": "⠉⠢⠎⠕⠗⠊⠳⠎" }, { "input": "censoriously", "output": "⠉⠢⠎⠕⠗⠊⠳⠎⠇⠽" }, { "input": "censors", "output": "⠉⠢⠎⠕⠗⠎" }, { "input": "censorship", "output": "⠉⠢⠎⠕⠗⠩⠊â " }, { "input": "censure", "output": "⠉⠢⠎⠥⠗⠑" }, { "input": "censured", "output": "⠉⠢⠎⠥⠗⠫" }, { "input": "censures", "output": "⠉⠢⠎⠥⠗⠑⠎" }, { "input": "censuring", "output": "⠉⠢⠎⠥⠗⠬" }, { "input": "census", "output": "⠉⠢⠎⠥⠎" }, { "input": "censused", "output": "⠉⠢⠎⠥⠎⠫" }, { "input": "censuses", "output": "⠉⠢⠎⠥⠎⠑⠎" }, { "input": "censusing", "output": "⠉⠢⠎⠥⠎⠬" }, { "input": "cent", "output": "⠉⠢⠞" }, { "input": "centaur", "output": "⠉⠢⠞â â ¥â —" }, { "input": "centaurs", "output": "⠉⠢⠞â â ¥â —â Ž" }, { "input": "centenarian", "output": "⠉⠢⠞⠢⠜⠊â â " }, { "input": "centenarians", "output": "⠉⠢⠞⠢⠜⠊â â â Ž" }, { "input": "centenaries", "output": "⠉⠢⠞⠢⠜⠊⠑⠎" }, { "input": "centenary", "output": "⠉⠢⠞⠢⠜⠽" }, { "input": "centennial", "output": "⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "centennials", "output": "⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "center", "output": "⠉⠢⠞⠻" }, { "input": "centered", "output": "⠉⠢⠞⠻⠫" }, { "input": "centerfold", "output": "⠉⠢⠞⠻⠋⠕⠇⠙" }, { "input": "centerfolds", "output": "⠉⠢⠞⠻⠋⠕⠇⠙⠎" }, { "input": "centering", "output": "⠉⠢⠞⠻⠬" }, { "input": "centerpiece", "output": "⠉⠢⠞⠻â â Šâ ‘⠉⠑" }, { "input": "centerpieces", "output": "⠉⠢⠞⠻â â Šâ ‘⠉⠑⠎" }, { "input": "centers", "output": "⠉⠢⠞⠻⠎" }, { "input": "centigrade", "output": "⠉⠢⠞⠊⠛⠗â â ™â ‘" }, { "input": "centigram", "output": "⠉⠢⠞⠊⠛⠗â â " }, { "input": "centigramme", "output": "⠉⠢⠞⠊⠛⠗â â â â ‘" }, { "input": "centigrammes", "output": "⠉⠢⠞⠊⠛⠗â â â â ‘â Ž" }, { "input": "centigrams", "output": "⠉⠢⠞⠊⠛⠗â â â Ž" }, { "input": "centiliter", "output": "⠉⠢⠞⠊⠇⠊⠞⠻" }, { "input": "centiliters", "output": "⠉⠢⠞⠊⠇⠊⠞⠻⠎" }, { "input": "centime", "output": "⠉⠢⠞⠊â â ‘" }, { "input": "centimes", "output": "⠉⠢⠞⠊â â ‘â Ž" }, { "input": "centimeter", "output": "⠉⠢⠞⠊â â ‘â žâ »" }, { "input": "centimeters", "output": "⠉⠢⠞⠊â â ‘⠞⠻⠎" }, { "input": "centipede", "output": "⠉⠢⠞⠊â â «â ‘" }, { "input": "centipedes", "output": "⠉⠢⠞⠊â â «â ‘â Ž" }, { "input": "central", "output": "⠉⠢⠞⠗â â ‡" }, { "input": "centralization", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ â °â " }, { "input": "centralize", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ ‘" }, { "input": "centralized", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ «" }, { "input": "centralizes", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ ‘â Ž" }, { "input": "centralizing", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ ¬" }, { "input": "centrally", "output": "⠉⠢⠞⠗â â ‡â ‡â ½" }, { "input": "centrals", "output": "⠉⠢⠞⠗â â ‡â Ž" }, { "input": "centrifugal", "output": "⠉⠢⠞⠗⠊⠋⠥⠛â â ‡" }, { "input": "centrifuge", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠑" }, { "input": "centrifuged", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠫" }, { "input": "centrifuges", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠑⠎" }, { "input": "centrifuging", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠬" }, { "input": "centripetal", "output": "⠉⠢⠞⠗⠊â â ‘â žâ â ‡" }, { "input": "centrist", "output": "⠉⠢⠞⠗⠊⠌" }, { "input": "centrists", "output": "⠉⠢⠞⠗⠊⠌⠎" }, { "input": "cents", "output": "⠉⠢⠞⠎" }, { "input": "centuries", "output": "⠉⠢⠞⠥⠗⠊⠑⠎" }, { "input": "centurion", "output": "⠉⠢⠞⠥⠗⠊⠕â " }, { "input": "centurions", "output": "⠉⠢⠞⠥⠗⠊⠕â â Ž" }, { "input": "century", "output": "⠉⠢⠞⠥⠗⠽" }, { "input": "cephalic", "output": "⠉⠑â â “â â ‡â Šâ ‰" }, { "input": "ceramic", "output": "⠉⠻â â â Šâ ‰" }, { "input": "ceramics", "output": "⠉⠻â â â Šâ ‰â Ž" }, { "input": "cereal", "output": "⠉⠻⠂⠇" }, { "input": "cereals", "output": "⠉⠻⠂⠇⠎" }, { "input": "cerebella", "output": "⠉⠻⠑⠃⠑⠇⠇â " }, { "input": "cerebellum", "output": "⠉⠻⠑⠃⠑⠇⠇⠥â " }, { "input": "cerebellums", "output": "⠉⠻⠑⠃⠑⠇⠇⠥â â Ž" }, { "input": "cerebra", "output": "⠉⠻⠑⠃⠗â " }, { "input": "cerebral", "output": "⠉⠻⠑⠃⠗â â ‡" }, { "input": "cerebrum", "output": "⠉⠻⠑⠃⠗⠥â " }, { "input": "cerebrums", "output": "⠉⠻⠑⠃⠗⠥â â Ž" }, { "input": "ceremonial", "output": "⠉⠻⠑â â •â â Šâ â ‡" }, { "input": "ceremonially", "output": "⠉⠻⠑â â •â â Šâ â ‡â ‡â ½" }, { "input": "ceremonials", "output": "⠉⠻⠑â â •â â Šâ â ‡â Ž" }, { "input": "ceremonies", "output": "⠉⠻⠑â â •â â Šâ ‘â Ž" }, { "input": "ceremonious", "output": "⠉⠻⠑â â •â â Šâ ³â Ž" }, { "input": "ceremoniously", "output": "⠉⠻⠑â â •â â Šâ ³â Žâ ‡â ½" }, { "input": "ceremony", "output": "⠉⠻⠑â â •â â ½" }, { "input": "cerise", "output": "⠉⠻⠊⠎⠑" }, { "input": "certain", "output": "⠉⠻⠞â â ”" }, { "input": "certainly", "output": "⠉⠻⠞â â ”⠇⠽" }, { "input": "certainties", "output": "⠉⠻⠞â â ”â žâ Šâ ‘â Ž" }, { "input": "certainty", "output": "⠉⠻⠞â â ”â žâ ½" }, { "input": "certifiable", "output": "⠉⠻⠞⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "certificate", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ ‘" }, { "input": "certificated", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ «" }, { "input": "certificates", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ ‘â Ž" }, { "input": "certificating", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ ¬" }, { "input": "certification", "output": "⠉⠻⠞⠊⠋⠊⠉â â °â " }, { "input": "certifications", "output": "⠉⠻⠞⠊⠋⠊⠉â â °â â Ž" }, { "input": "certified", "output": "⠉⠻⠞⠊⠋⠊⠫" }, { "input": "certifies", "output": "⠉⠻⠞⠊⠋⠊⠑⠎" }, { "input": "certify", "output": "⠉⠻⠞⠊⠋⠽" }, { "input": "certifying", "output": "⠉⠻⠞⠊⠋⠽⠬" }, { "input": "certitude", "output": "⠉⠻⠞⠊⠞⠥⠙⠑" }, { "input": "cerulean", "output": "⠉⠻⠥⠇⠂â " }, { "input": "cervical", "output": "⠉⠻⠧⠊⠉â â ‡" }, { "input": "cervices", "output": "⠉⠻⠧⠊⠉⠑⠎" }, { "input": "cervix", "output": "⠉⠻⠧⠊⠭" }, { "input": "cervixes", "output": "⠉⠻⠧⠊⠭⠑⠎" }, { "input": "cesarean", "output": "⠉⠑⠎⠜⠂â " }, { "input": "cesareans", "output": "⠉⠑⠎⠜⠂â â Ž" }, { "input": "cesarian", "output": "⠉⠑⠎⠜⠊â â " }, { "input": "cesarians", "output": "⠉⠑⠎⠜⠊â â â Ž" }, { "input": "cesium", "output": "⠉⠑⠎⠊⠥â " }, { "input": "cessation", "output": "⠉⠑⠎⠎â â °â " }, { "input": "cessations", "output": "⠉⠑⠎⠎â â °â â Ž" }, { "input": "cession", "output": "⠉⠑⠎⠨â " }, { "input": "cessions", "output": "⠉⠑⠎⠨â â Ž" }, { "input": "cesspool", "output": "⠉⠑⠎⠎â â •â •â ‡" }, { "input": "cesspools", "output": "⠉⠑⠎⠎â â •⠕⠇⠎" }, { "input": "cetacean", "output": "⠉⠑⠞â â ‰â ‚â " }, { "input": "cetaceans", "output": "⠉⠑⠞â â ‰â ‚â â Ž" }, { "input": "chafe", "output": "â ¡â â ‹â ‘" }, { "input": "chafed", "output": "â ¡â â ‹â «" }, { "input": "chafes", "output": "â ¡â â ‹â ‘â Ž" }, { "input": "chaff", "output": "â ¡â â ‹â ‹" }, { "input": "chaffed", "output": "â ¡â â –â «" }, { "input": "chaffinch", "output": "â ¡â â –⠔⠡" }, { "input": "chaffinches", "output": "â ¡â â –⠔⠡⠑⠎" }, { "input": "chaffing", "output": "â ¡â â –â ¬" }, { "input": "chaffs", "output": "â ¡â â –â Ž" }, { "input": "chafing", "output": "â ¡â â ‹â ¬" }, { "input": "chagrin", "output": "â ¡â â ›â —â ”" }, { "input": "chagrined", "output": "â ¡â â ›â —⠔⠫" }, { "input": "chagrining", "output": "â ¡â â ›â —⠔⠬" }, { "input": "chagrinned", "output": "â ¡â â ›â —â ”â â «" }, { "input": "chagrinning", "output": "â ¡â â ›â —â ”â â ¬" }, { "input": "chagrins", "output": "â ¡â â ›â —⠔⠎" }, { "input": "chain", "output": "â ¡â â ”" }, { "input": "chained", "output": "â ¡â â ”â «" }, { "input": "chaining", "output": "â ¡â â ”â ¬" }, { "input": "chains", "output": "â ¡â â ”â Ž" }, { "input": "chainsaw", "output": "â ¡â â ”â Žâ â º" }, { "input": "chainsawed", "output": "â ¡â â ”â Žâ â ºâ «" }, { "input": "chainsawing", "output": "â ¡â â ”â Žâ â ºâ ¬" }, { "input": "chainsaws", "output": "â ¡â â ”â Žâ â ºâ Ž" }, { "input": "chair", "output": "â ¡â â Šâ —" }, { "input": "chaired", "output": "â ¡â â Šâ —â «" }, { "input": "chairing", "output": "â ¡â â Šâ —â ¬" }, { "input": "chairlift", "output": "â ¡â â Šâ —⠇⠊⠋⠞" }, { "input": "chairlifts", "output": "â ¡â â Šâ —⠇⠊⠋⠞⠎" }, { "input": "chairman", "output": "â ¡â â Šâ —â â â " }, { "input": "chairmanship", "output": "â ¡â â Šâ —â â â â ©â Šâ " }, { "input": "chairmen", "output": "â ¡â â Šâ —â â ¢" }, { "input": "chairperson", "output": "â ¡â â Šâ —â â »â Žâ •â " }, { "input": "chairpersons", "output": "â ¡â â Šâ —â â »â Žâ •â â Ž" }, { "input": "chairs", "output": "â ¡â â Šâ —â Ž" }, { "input": "chairwoman", "output": "â ¡â â Šâ —⠺⠕â â â " }, { "input": "chairwomen", "output": "â ¡â â Šâ —⠺⠕â â ¢" }, { "input": "chaise", "output": "â ¡â â Šâ Žâ ‘" }, { "input": "chaises", "output": "â ¡â â Šâ Žâ ‘â Ž" }, { "input": "chalet", "output": "â ¡â â ‡â ‘â ž" }, { "input": "chalets", "output": "â ¡â â ‡â ‘â žâ Ž" }, { "input": "chalice", "output": "â ¡â â ‡â Šâ ‰â ‘" }, { "input": "chalices", "output": "â ¡â â ‡â Šâ ‰â ‘â Ž" }, { "input": "chalk", "output": "â ¡â â ‡â …" }, { "input": "chalkboard", "output": "â ¡â â ‡â …⠃⠕⠜⠙" }, { "input": "chalkboards", "output": "â ¡â â ‡â …⠃⠕⠜⠙⠎" }, { "input": "chalked", "output": "â ¡â â ‡â …â «" }, { "input": "chalkier", "output": "â ¡â â ‡â …â Šâ »" }, { "input": "chalkiest", "output": "â ¡â â ‡â …â Šâ ‘â Œ" }, { "input": "chalking", "output": "â ¡â â ‡â …â ¬" }, { "input": "chalks", "output": "â ¡â â ‡â …â Ž" }, { "input": "chalky", "output": "â ¡â â ‡â …â ½" }, { "input": "challenge", "output": "â ¡â â ‡â ‡â ¢â ›â ‘" }, { "input": "challenged", "output": "â ¡â â ‡â ‡â ¢â ›â «" }, { "input": "challenger", "output": "â ¡â â ‡â ‡â ¢â ›â »" }, { "input": "challengers", "output": "â ¡â â ‡â ‡â ¢â ›â »â Ž" }, { "input": "challenges", "output": "â ¡â â ‡â ‡â ¢â ›â ‘â Ž" }, { "input": "challenging", "output": "â ¡â â ‡â ‡â ¢â ›â ¬" }, { "input": "chamber", "output": "â ¡â â â ƒâ »" }, { "input": "chamberlain", "output": "â ¡â â â ƒâ »â ‡â â ”" }, { "input": "chamberlains", "output": "â ¡â â â ƒâ »â ‡â â ”â Ž" }, { "input": "chambermaid", "output": "â ¡â â â ƒâ »â â â Šâ ™" }, { "input": "chambermaids", "output": "â ¡â â â ƒâ »â â â Šâ ™â Ž" }, { "input": "chambers", "output": "â ¡â â â ƒâ »â Ž" }, { "input": "chambray", "output": "â ¡â â â ƒâ —â â ½" }, { "input": "chameleon", "output": "â ¡â â â ‘⠇⠑⠕â " }, { "input": "chameleons", "output": "â ¡â â â ‘⠇⠑⠕â â Ž" }, { "input": "chammies", "output": "â ¡â â â â Šâ ‘â Ž" }, { "input": "chammy", "output": "â ¡â â â â ½" }, { "input": "chamois", "output": "â ¡â â â •â Šâ Ž" }, { "input": "chamoix", "output": "â ¡â â â •â Šâ ­" }, { "input": "chamomile", "output": "â ¡â â â •â â Šâ ‡â ‘" }, { "input": "chamomiles", "output": "â ¡â â â •â â Šâ ‡â ‘â Ž" }, { "input": "champ", "output": "â ¡â â â " }, { "input": "champagne", "output": "â ¡â â â â â ›â â ‘" }, { "input": "champagnes", "output": "â ¡â â â â â ›â â ‘â Ž" }, { "input": "champed", "output": "â ¡â â â â «" }, { "input": "champing", "output": "â ¡â â â â ¬" }, { "input": "champion", "output": "â ¡â â â â Šâ •â " }, { "input": "championed", "output": "â ¡â â â â Šâ •â â «" }, { "input": "championing", "output": "â ¡â â â â Šâ •â â ¬" }, { "input": "champions", "output": "â ¡â â â â Šâ •â â Ž" }, { "input": "championship", "output": "â ¡â â â â Šâ •â â ©â Šâ " }, { "input": "championships", "output": "â ¡â â â â Šâ •â â ©â Šâ â Ž" }, { "input": "champs", "output": "â ¡â â â â Ž" }, { "input": "chance", "output": "⠡⠨⠑" }, { "input": "chanced", "output": "⠡⠨⠑⠙" }, { "input": "chancel", "output": "⠡⠨⠑⠇" }, { "input": "chancelleries", "output": "⠡⠨⠑⠇⠇⠻⠊⠑⠎" }, { "input": "chancellery", "output": "⠡⠨⠑⠇⠇⠻⠽" }, { "input": "chancellor", "output": "⠡⠨⠑⠇⠇⠕⠗" }, { "input": "chancellors", "output": "⠡⠨⠑⠇⠇⠕⠗⠎" }, { "input": "chancels", "output": "⠡⠨⠑⠇⠎" }, { "input": "chanceries", "output": "⠡⠨⠑⠗⠊⠑⠎" }, { "input": "chancery", "output": "⠡⠨⠑⠗⠽" }, { "input": "chances", "output": "⠡⠨⠑⠎" }, { "input": "chancier", "output": "â ¡â â â ‰â Šâ »" }, { "input": "chanciest", "output": "â ¡â â â ‰â Šâ ‘â Œ" }, { "input": "chancing", "output": "â ¡â â â ‰â ¬" }, { "input": "chancy", "output": "â ¡â â â ‰â ½" }, { "input": "chandelier", "output": "⠡⠯⠑⠇⠊⠻" }, { "input": "chandeliers", "output": "⠡⠯⠑⠇⠊⠻⠎" }, { "input": "chandler", "output": "⠡⠯⠇⠻" }, { "input": "chandlers", "output": "⠡⠯⠇⠻⠎" }, { "input": "change", "output": "â ¡â â â ›â ‘" }, { "input": "changeable", "output": "â ¡â â â ›â ‚⠃⠇⠑" }, { "input": "changed", "output": "â ¡â â â ›â «" }, { "input": "changeling", "output": "â ¡â â â ›â ‘⠇⠬" }, { "input": "changelings", "output": "â ¡â â â ›â ‘⠇⠬⠎" }, { "input": "changeover", "output": "â ¡â â â ›â ‘â •â §â »" }, { "input": "changeovers", "output": "â ¡â â â ›â ‘⠕⠧⠻⠎" }, { "input": "changes", "output": "â ¡â â â ›â ‘â Ž" }, { "input": "changing", "output": "â ¡â â â ›â ¬" }, { "input": "channel", "output": "â ¡â â â â ‘â ‡" }, { "input": "channeled", "output": "â ¡â â â â ‘⠇⠫" }, { "input": "channeling", "output": "â ¡â â â â ‘⠇⠬" }, { "input": "channelled", "output": "â ¡â â â â ‘⠇⠇⠫" }, { "input": "channelling", "output": "â ¡â â â â ‘⠇⠇⠬" }, { "input": "channels", "output": "â ¡â â â â ‘⠇⠎" }, { "input": "chant", "output": "â ¡â â â ž" }, { "input": "chanted", "output": "â ¡â â â žâ «" }, { "input": "chanter", "output": "â ¡â â â žâ »" }, { "input": "chanters", "output": "â ¡â â â žâ »â Ž" }, { "input": "chantey", "output": "â ¡â â â žâ ‘â ½" }, { "input": "chanteys", "output": "â ¡â â â žâ ‘⠽⠎" }, { "input": "chanticleer", "output": "â ¡â â â žâ Šâ ‰â ‡â ‘â »" }, { "input": "chanticleers", "output": "â ¡â â â žâ Šâ ‰â ‡â ‘⠻⠎" }, { "input": "chanties", "output": "â ¡â â â žâ Šâ ‘â Ž" }, { "input": "chanting", "output": "â ¡â â â žâ ¬" }, { "input": "chants", "output": "â ¡â â â žâ Ž" }, { "input": "chanty", "output": "â ¡â â â žâ ½" }, { "input": "chaos", "output": "â ¡â â •â Ž" }, { "input": "chaotic", "output": "â ¡â â •â žâ Šâ ‰" }, { "input": "chaotically", "output": "â ¡â â •â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "chap", "output": "â ¡â â " }, { "input": "chaparral", "output": "â ¡â â â œâ —â â ‡" }, { "input": "chaparrals", "output": "â ¡â â â œâ —â â ‡â Ž" }, { "input": "chapel", "output": "â ¡â â â ‘â ‡" }, { "input": "chapels", "output": "â ¡â â â ‘⠇⠎" }, { "input": "chaperon", "output": "â ¡â â â »â •â " }, { "input": "chaperone", "output": "â ¡â â â »â â •" }, { "input": "chaperoned", "output": "â ¡â â â »â •â â «" }, { "input": "chaperones", "output": "â ¡â â â »â â •â Ž" }, { "input": "chaperoning", "output": "â ¡â â â »â •â â ¬" }, { "input": "chaperons", "output": "â ¡â â â »â •â â Ž" }, { "input": "chaplain", "output": "â ¡â â â ‡â â ”" }, { "input": "chaplaincies", "output": "â ¡â â â ‡â â ”⠉⠊⠑⠎" }, { "input": "chaplaincy", "output": "â ¡â â â ‡â â ”⠉⠽" }, { "input": "chaplains", "output": "â ¡â â â ‡â â ”â Ž" }, { "input": "chaplet", "output": "â ¡â â â ‡â ‘â ž" }, { "input": "chaplets", "output": "â ¡â â â ‡â ‘â žâ Ž" }, { "input": "chapped", "output": "â ¡â â â â «" }, { "input": "chapping", "output": "â ¡â â â â ¬" }, { "input": "chaps", "output": "â ¡â â â Ž" }, { "input": "chapt", "output": "â ¡â â â ž" }, { "input": "chapter", "output": "â ¡â â â žâ »" }, { "input": "chapters", "output": "â ¡â â â žâ »â Ž" }, { "input": "char", "output": "â ¡â œ" }, { "input": "character", "output": "â â ¡" }, { "input": "characteristic", "output": "â â ¡â Šâ Œâ Šâ ‰" }, { "input": "characteristically", "output": "â â ¡â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "characteristics", "output": "â â ¡â Šâ Œâ Šâ ‰â Ž" }, { "input": "characterization", "output": "â â ¡â Šâ µâ â °â " }, { "input": "characterizations", "output": "â â ¡â Šâ µâ â °â â Ž" }, { "input": "characterize", "output": "â â ¡â Šâ µâ ‘" }, { "input": "characterized", "output": "â â ¡â Šâ µâ «" }, { "input": "characterizes", "output": "â â ¡â Šâ µâ ‘â Ž" }, { "input": "characterizing", "output": "â â ¡â Šâ µâ ¬" }, { "input": "characters", "output": "â â ¡â Ž" }, { "input": "charade", "output": "â ¡â œâ â ™â ‘" }, { "input": "charades", "output": "â ¡â œâ â ™â ‘â Ž" }, { "input": "charbroil", "output": "⠡⠜⠃⠗⠕⠊⠇" }, { "input": "charbroiled", "output": "⠡⠜⠃⠗⠕⠊⠇⠫" }, { "input": "charbroiling", "output": "⠡⠜⠃⠗⠕⠊⠇⠬" }, { "input": "charbroils", "output": "⠡⠜⠃⠗⠕⠊⠇⠎" }, { "input": "charcoal", "output": "⠡⠜⠉⠕â â ‡" }, { "input": "charcoals", "output": "⠡⠜⠉⠕â â ‡â Ž" }, { "input": "charge", "output": "⠡⠜⠛⠑" }, { "input": "chargeable", "output": "⠡⠜⠛⠂⠃⠇⠑" }, { "input": "charged", "output": "⠡⠜⠛⠫" }, { "input": "charger", "output": "⠡⠜⠛⠻" }, { "input": "chargers", "output": "⠡⠜⠛⠻⠎" }, { "input": "charges", "output": "⠡⠜⠛⠑⠎" }, { "input": "charging", "output": "⠡⠜⠛⠬" }, { "input": "charier", "output": "⠡⠜⠊⠻" }, { "input": "chariest", "output": "⠡⠜⠊⠑⠌" }, { "input": "charily", "output": "⠡⠜⠊⠇⠽" }, { "input": "chariot", "output": "⠡⠜⠊⠕⠞" }, { "input": "charioteer", "output": "⠡⠜⠊⠕⠞⠑⠻" }, { "input": "charioteers", "output": "⠡⠜⠊⠕⠞⠑⠻⠎" }, { "input": "chariots", "output": "⠡⠜⠊⠕⠞⠎" }, { "input": "charisma", "output": "⠡⠜⠊⠎â â " }, { "input": "charismatic", "output": "⠡⠜⠊⠎â â â žâ Šâ ‰" }, { "input": "charismatics", "output": "⠡⠜⠊⠎â â â žâ Šâ ‰â Ž" }, { "input": "charitable", "output": "⠡⠜⠊⠞â â ƒâ ‡â ‘" }, { "input": "charitably", "output": "⠡⠜⠊⠞â â ƒâ ‡â ½" }, { "input": "charities", "output": "⠡⠜⠊⠞⠊⠑⠎" }, { "input": "charity", "output": "⠡⠜⠰⠽" }, { "input": "charlatan", "output": "⠡⠜⠇â â žâ â " }, { "input": "charlatans", "output": "⠡⠜⠇â â žâ â â Ž" }, { "input": "charm", "output": "â ¡â œâ " }, { "input": "charmed", "output": "â ¡â œâ â «" }, { "input": "charmer", "output": "â ¡â œâ â »" }, { "input": "charmers", "output": "â ¡â œâ â »â Ž" }, { "input": "charming", "output": "â ¡â œâ â ¬" }, { "input": "charmingly", "output": "â ¡â œâ â ¬â ‡â ½" }, { "input": "charms", "output": "â ¡â œâ â Ž" }, { "input": "charred", "output": "⠡⠜⠗⠫" }, { "input": "charring", "output": "⠡⠜⠗⠬" }, { "input": "chars", "output": "⠡⠜⠎" }, { "input": "chart", "output": "⠡⠜⠞" }, { "input": "charted", "output": "⠡⠜⠞⠫" }, { "input": "charter", "output": "⠡⠜⠞⠻" }, { "input": "chartered", "output": "⠡⠜⠞⠻⠫" }, { "input": "chartering", "output": "⠡⠜⠞⠻⠬" }, { "input": "charters", "output": "⠡⠜⠞⠻⠎" }, { "input": "charting", "output": "⠡⠜⠞⠬" }, { "input": "chartreuse", "output": "⠡⠜⠞⠗⠑⠥⠎⠑" }, { "input": "charts", "output": "⠡⠜⠞⠎" }, { "input": "charwoman", "output": "⠡⠜⠺⠕â â â " }, { "input": "charwomen", "output": "⠡⠜⠺⠕â â ¢" }, { "input": "chary", "output": "⠡⠜⠽" }, { "input": "chase", "output": "â ¡â â Žâ ‘" }, { "input": "chased", "output": "â ¡â â Žâ «" }, { "input": "chaser", "output": "â ¡â â Žâ »" }, { "input": "chasers", "output": "â ¡â â Žâ »â Ž" }, { "input": "chases", "output": "â ¡â â Žâ ‘â Ž" }, { "input": "chasing", "output": "â ¡â â Žâ ¬" }, { "input": "chasm", "output": "â ¡â â Žâ " }, { "input": "chasms", "output": "â ¡â â Žâ â Ž" }, { "input": "chassis", "output": "â ¡â â Žâ Žâ Šâ Ž" }, { "input": "chaste", "output": "â ¡â â Œâ ‘" }, { "input": "chastely", "output": "â ¡â â Œâ ‘⠇⠽" }, { "input": "chasten", "output": "â ¡â â Œâ ¢" }, { "input": "chastened", "output": "â ¡â â Œâ ¢â «" }, { "input": "chastening", "output": "â ¡â â Œâ ¢â ¬" }, { "input": "chastens", "output": "â ¡â â Œâ ¢â Ž" }, { "input": "chaster", "output": "â ¡â â Œâ »" }, { "input": "chastest", "output": "â ¡â â Œâ ‘â Œ" }, { "input": "chastise", "output": "â ¡â â Œâ Šâ Žâ ‘" }, { "input": "chastised", "output": "â ¡â â Œâ Šâ Žâ «" }, { "input": "chastisement", "output": "â ¡â â Œâ Šâ Žâ ‘â °â ž" }, { "input": "chastisements", "output": "â ¡â â Œâ Šâ Žâ ‘â °â žâ Ž" }, { "input": "chastises", "output": "â ¡â â Œâ Šâ Žâ ‘â Ž" }, { "input": "chastising", "output": "â ¡â â Œâ Šâ Žâ ¬" }, { "input": "chastity", "output": "â ¡â â Œâ °â ½" }, { "input": "chasuble", "output": "â ¡â â Žâ ¥â ƒâ ‡â ‘" }, { "input": "chasubles", "output": "â ¡â â Žâ ¥â ƒâ ‡â ‘â Ž" }, { "input": "chat", "output": "â ¡â â ž" }, { "input": "chateaus", "output": "â ¡â â žâ ‚⠥⠎" }, { "input": "chats", "output": "â ¡â â žâ Ž" }, { "input": "chatted", "output": "â ¡â â žâ žâ «" }, { "input": "chattel", "output": "â ¡â â žâ žâ ‘â ‡" }, { "input": "chattels", "output": "â ¡â â žâ žâ ‘⠇⠎" }, { "input": "chatter", "output": "â ¡â â žâ žâ »" }, { "input": "chatterbox", "output": "â ¡â â žâ žâ »â ƒâ •â ­" }, { "input": "chatterboxes", "output": "â ¡â â žâ žâ »â ƒâ •â ­â ‘â Ž" }, { "input": "chattered", "output": "â ¡â â žâ žâ »â «" }, { "input": "chatterer", "output": "â ¡â â žâ žâ »â »" }, { "input": "chatterers", "output": "â ¡â â žâ žâ »â »â Ž" }, { "input": "chattering", "output": "â ¡â â žâ žâ »â ¬" }, { "input": "chatters", "output": "â ¡â â žâ žâ »â Ž" }, { "input": "chattier", "output": "â ¡â â žâ žâ Šâ »" }, { "input": "chattiest", "output": "â ¡â â žâ žâ Šâ ‘â Œ" }, { "input": "chattily", "output": "â ¡â â žâ žâ Šâ ‡â ½" }, { "input": "chattiness", "output": "â ¡â â žâ žâ Šâ °â Ž" }, { "input": "chatting", "output": "â ¡â â žâ žâ ¬" }, { "input": "chatty", "output": "â ¡â â žâ žâ ½" }, { "input": "chauffeur", "output": "â ¡â â ¥â –⠑⠥⠗" }, { "input": "chauffeured", "output": "â ¡â â ¥â –⠑⠥⠗⠫" }, { "input": "chauffeuring", "output": "â ¡â â ¥â –⠑⠥⠗⠬" }, { "input": "chauffeurs", "output": "â ¡â â ¥â –⠑⠥⠗⠎" }, { "input": "chauvinism", "output": "â ¡â â ¥â §â ”â Šâ Žâ " }, { "input": "chauvinist", "output": "â ¡â â ¥â §â ”â Šâ Œ" }, { "input": "chauvinistic", "output": "â ¡â â ¥â §â ”⠊⠌⠊⠉" }, { "input": "chauvinists", "output": "â ¡â â ¥â §â ”⠊⠌⠎" }, { "input": "cheap", "output": "â ¡â ‚â " }, { "input": "cheapen", "output": "â ¡â ‚â â ¢" }, { "input": "cheapened", "output": "â ¡â ‚â â ¢â «" }, { "input": "cheapening", "output": "â ¡â ‚â â ¢â ¬" }, { "input": "cheapens", "output": "â ¡â ‚â â ¢â Ž" }, { "input": "cheaper", "output": "â ¡â ‚â â »" }, { "input": "cheapest", "output": "â ¡â ‚â â ‘â Œ" }, { "input": "cheaply", "output": "â ¡â ‚â â ‡â ½" }, { "input": "cheapness", "output": "â ¡â ‚â â °â Ž" }, { "input": "cheapskate", "output": "â ¡â ‚â â Žâ …â â žâ ‘" }, { "input": "cheapskates", "output": "â ¡â ‚â â Žâ …â â žâ ‘â Ž" }, { "input": "cheat", "output": "â ¡â ‚â ž" }, { "input": "cheated", "output": "â ¡â ‚â žâ «" }, { "input": "cheater", "output": "â ¡â ‚â žâ »" }, { "input": "cheaters", "output": "⠡⠂⠞⠻⠎" }, { "input": "cheating", "output": "â ¡â ‚â žâ ¬" }, { "input": "cheats", "output": "â ¡â ‚â žâ Ž" }, { "input": "check", "output": "⠡⠑⠉⠅" }, { "input": "checkbook", "output": "⠡⠑⠉⠅⠃⠕⠕⠅" }, { "input": "checkbooks", "output": "⠡⠑⠉⠅⠃⠕⠕⠅⠎" }, { "input": "checked", "output": "⠡⠑⠉⠅⠫" }, { "input": "checker", "output": "⠡⠑⠉⠅⠻" }, { "input": "checkerboard", "output": "⠡⠑⠉⠅⠻⠃⠕⠜⠙" }, { "input": "checkerboards", "output": "⠡⠑⠉⠅⠻⠃⠕⠜⠙⠎" }, { "input": "checkered", "output": "⠡⠑⠉⠅⠻⠫" }, { "input": "checkering", "output": "⠡⠑⠉⠅⠻⠬" }, { "input": "checkers", "output": "⠡⠑⠉⠅⠻⠎" }, { "input": "checking", "output": "⠡⠑⠉⠅⠬" }, { "input": "checklist", "output": "⠡⠑⠉⠅⠇⠊⠌" }, { "input": "checklists", "output": "⠡⠑⠉⠅⠇⠊⠌⠎" }, { "input": "checkmate", "output": "⠡⠑⠉⠅â â â žâ ‘" }, { "input": "checkmated", "output": "⠡⠑⠉⠅â â â žâ «" }, { "input": "checkmates", "output": "⠡⠑⠉⠅â â â žâ ‘â Ž" }, { "input": "checkmating", "output": "⠡⠑⠉⠅â â â žâ ¬" }, { "input": "checkout", "output": "⠡⠑⠉⠅⠳⠞" }, { "input": "checkouts", "output": "⠡⠑⠉⠅⠳⠞⠎" }, { "input": "checkpoint", "output": "⠡⠑⠉⠅â â •⠔⠞" }, { "input": "checkpoints", "output": "⠡⠑⠉⠅â â •⠔⠞⠎" }, { "input": "checkroom", "output": "⠡⠑⠉⠅⠗⠕⠕â " }, { "input": "checkrooms", "output": "⠡⠑⠉⠅⠗⠕⠕â â Ž" }, { "input": "checks", "output": "⠡⠑⠉⠅⠎" }, { "input": "checkup", "output": "⠡⠑⠉⠅⠥â " }, { "input": "checkups", "output": "⠡⠑⠉⠅⠥â â Ž" }, { "input": "cheddar", "output": "⠡⠫⠙⠜" }, { "input": "cheek", "output": "â ¡â ‘â ‘â …" }, { "input": "cheekbone", "output": "â ¡â ‘â ‘â …â ƒâ â •" }, { "input": "cheekbones", "output": "â ¡â ‘â ‘â …â ƒâ â •â Ž" }, { "input": "cheeked", "output": "â ¡â ‘â ‘â …â «" }, { "input": "cheekier", "output": "â ¡â ‘â ‘â …â Šâ »" }, { "input": "cheekiest", "output": "â ¡â ‘â ‘â …â Šâ ‘â Œ" }, { "input": "cheekily", "output": "⠡⠑⠑⠅⠊⠇⠽" }, { "input": "cheekiness", "output": "â ¡â ‘â ‘â …â Šâ °â Ž" }, { "input": "cheeking", "output": "â ¡â ‘â ‘â …â ¬" }, { "input": "cheeks", "output": "â ¡â ‘â ‘â …â Ž" }, { "input": "cheeky", "output": "â ¡â ‘â ‘â …â ½" }, { "input": "cheep", "output": "â ¡â ‘â ‘â " }, { "input": "cheeped", "output": "â ¡â ‘â ‘â â «" }, { "input": "cheeping", "output": "â ¡â ‘â ‘â â ¬" }, { "input": "cheeps", "output": "â ¡â ‘â ‘â â Ž" }, { "input": "cheer", "output": "â ¡â ‘â »" }, { "input": "cheered", "output": "⠡⠑⠻⠫" }, { "input": "cheerful", "output": "⠡⠑⠻⠰⠇" }, { "input": "cheerfuller", "output": "⠡⠑⠻⠰⠇⠇⠻" }, { "input": "cheerfullest", "output": "⠡⠑⠻⠰⠇⠇⠑⠌" }, { "input": "cheerfully", "output": "⠡⠑⠻⠰⠇⠇⠽" }, { "input": "cheerfulness", "output": "⠡⠑⠻⠰⠇⠰⠎" }, { "input": "cheerier", "output": "⠡⠑⠻⠊⠻" }, { "input": "cheeriest", "output": "⠡⠑⠻⠊⠑⠌" }, { "input": "cheerily", "output": "⠡⠑⠻⠊⠇⠽" }, { "input": "cheeriness", "output": "⠡⠑⠻⠊⠰⠎" }, { "input": "cheering", "output": "⠡⠑⠻⠬" }, { "input": "cheerleader", "output": "⠡⠑⠻⠇⠂⠙⠻" }, { "input": "cheerleaders", "output": "⠡⠑⠻⠇⠂⠙⠻⠎" }, { "input": "cheerless", "output": "⠡⠑⠻⠨⠎" }, { "input": "cheerlessly", "output": "⠡⠑⠻⠨⠎⠇⠽" }, { "input": "cheerlessness", "output": "⠡⠑⠻⠨⠎⠰⠎" }, { "input": "cheers", "output": "⠡⠑⠻⠎" }, { "input": "cheery", "output": "⠡⠑⠻⠽" }, { "input": "cheese", "output": "â ¡â ‘â ‘â Žâ ‘" }, { "input": "cheeseburger", "output": "⠡⠑⠑⠎⠑⠃⠥⠗⠛⠻" }, { "input": "cheeseburgers", "output": "⠡⠑⠑⠎⠑⠃⠥⠗⠛⠻⠎" }, { "input": "cheesecake", "output": "â ¡â ‘â ‘â Žâ ‘â ‰â â …â ‘" }, { "input": "cheesecakes", "output": "â ¡â ‘â ‘â Žâ ‘â ‰â â …â ‘â Ž" }, { "input": "cheesecloth", "output": "⠡⠑⠑⠎⠑⠉⠇⠕⠹" }, { "input": "cheesed", "output": "â ¡â ‘â ‘â Žâ «" }, { "input": "cheeses", "output": "â ¡â ‘â ‘â Žâ ‘â Ž" }, { "input": "cheesier", "output": "â ¡â ‘â ‘â Žâ Šâ »" }, { "input": "cheesiest", "output": "â ¡â ‘â ‘â Žâ Šâ ‘â Œ" }, { "input": "cheesing", "output": "â ¡â ‘â ‘â Žâ ¬" }, { "input": "cheesy", "output": "â ¡â ‘â ‘â Žâ ½" }, { "input": "cheetah", "output": "â ¡â ‘â ‘â žâ â “" }, { "input": "cheetahs", "output": "â ¡â ‘â ‘â žâ â “â Ž" }, { "input": "chef", "output": "â ¡â ‘â ‹" }, { "input": "chefs", "output": "â ¡â ‘â ‹â Ž" }, { "input": "chemical", "output": "â ¡â ‘â â Šâ ‰â â ‡" }, { "input": "chemically", "output": "â ¡â ‘â â Šâ ‰â â ‡â ‡â ½" }, { "input": "chemicals", "output": "â ¡â ‘â â Šâ ‰â â ‡â Ž" }, { "input": "chemise", "output": "â ¡â ‘â â Šâ Žâ ‘" }, { "input": "chemises", "output": "â ¡â ‘â â Šâ Žâ ‘â Ž" }, { "input": "chemist", "output": "â ¡â ‘â â Šâ Œ" }, { "input": "chemistry", "output": "â ¡â ‘â â Šâ Œâ —â ½" }, { "input": "chemists", "output": "â ¡â ‘â â Šâ Œâ Ž" }, { "input": "chemotherapy", "output": "â ¡â ‘â â •⠮⠗â â â ½" }, { "input": "chenille", "output": "⠡⠢⠊⠇⠇⠑" }, { "input": "cherish", "output": "⠡⠻⠊⠩" }, { "input": "cherished", "output": "⠡⠻⠊⠩⠫" }, { "input": "cherishes", "output": "⠡⠻⠊⠩⠑⠎" }, { "input": "cherishing", "output": "⠡⠻⠊⠩⠬" }, { "input": "cheroot", "output": "⠡⠻⠕⠕⠞" }, { "input": "cheroots", "output": "⠡⠻⠕⠕⠞⠎" }, { "input": "cherries", "output": "⠡⠻⠗⠊⠑⠎" }, { "input": "cherry", "output": "⠡⠻⠗⠽" }, { "input": "cherub", "output": "⠡⠻⠥⠃" }, { "input": "cherubic", "output": "⠡⠻⠥⠃⠊⠉" }, { "input": "cherubim", "output": "⠡⠻⠥⠃⠊â " }, { "input": "cherubims", "output": "⠡⠻⠥⠃⠊â â Ž" }, { "input": "cherubs", "output": "⠡⠻⠥⠃⠎" }, { "input": "chervil", "output": "⠡⠻⠧⠊⠇" }, { "input": "chess", "output": "â ¡â ‘â Žâ Ž" }, { "input": "chessboard", "output": "⠡⠑⠎⠎⠃⠕⠜⠙" }, { "input": "chessboards", "output": "⠡⠑⠎⠎⠃⠕⠜⠙⠎" }, { "input": "chessman", "output": "â ¡â ‘â Žâ Žâ â â " }, { "input": "chessmen", "output": "â ¡â ‘â Žâ Žâ â ¢" }, { "input": "chest", "output": "â ¡â ‘â Œ" }, { "input": "chestnut", "output": "â ¡â ‘â Œâ â ¥â ž" }, { "input": "chestnuts", "output": "â ¡â ‘â Œâ â ¥â žâ Ž" }, { "input": "chests", "output": "⠡⠑⠌⠎" }, { "input": "chevron", "output": "â ¡â ‘â §â —â •â " }, { "input": "chevrons", "output": "â ¡â ‘â §â —â •â â Ž" }, { "input": "chew", "output": "â ¡â ‘â º" }, { "input": "chewed", "output": "⠡⠑⠺⠫" }, { "input": "chewer", "output": "⠡⠑⠺⠻" }, { "input": "chewers", "output": "⠡⠑⠺⠻⠎" }, { "input": "chewier", "output": "⠡⠑⠺⠊⠻" }, { "input": "chewiest", "output": "⠡⠑⠺⠊⠑⠌" }, { "input": "chewing", "output": "⠡⠑⠺⠬" }, { "input": "chews", "output": "⠡⠑⠺⠎" }, { "input": "chewy", "output": "⠡⠑⠺⠽" }, { "input": "chi", "output": "â ¡â Š" }, { "input": "chiaroscuro", "output": "⠡⠊⠜⠕⠎⠉⠥⠗⠕" }, { "input": "chic", "output": "â ¡â Šâ ‰" }, { "input": "chicaneries", "output": "â ¡â Šâ ‰â â â »â Šâ ‘â Ž" }, { "input": "chicanery", "output": "â ¡â Šâ ‰â â â »â ½" }, { "input": "chicer", "output": "⠡⠊⠉⠻" }, { "input": "chicest", "output": "⠡⠊⠉⠑⠌" }, { "input": "chichi", "output": "â ¡â Šâ ¡â Š" }, { "input": "chichis", "output": "â ¡â Šâ ¡â Šâ Ž" }, { "input": "chick", "output": "⠡⠊⠉⠅" }, { "input": "chickadee", "output": "⠡⠊⠉⠅â â ™â ‘â ‘" }, { "input": "chickadees", "output": "⠡⠊⠉⠅â â ™â ‘â ‘â Ž" }, { "input": "chicken", "output": "⠡⠊⠉⠅⠢" }, { "input": "chickened", "output": "⠡⠊⠉⠅⠢⠫" }, { "input": "chickening", "output": "⠡⠊⠉⠅⠢⠬" }, { "input": "chickenpox", "output": "⠡⠊⠉⠅⠢â â •â ­" }, { "input": "chickens", "output": "⠡⠊⠉⠅⠢⠎" }, { "input": "chickpea", "output": "⠡⠊⠉⠅â â ‘â " }, { "input": "chickpeas", "output": "⠡⠊⠉⠅â â ‚â Ž" }, { "input": "chicks", "output": "⠡⠊⠉⠅⠎" }, { "input": "chickweed", "output": "⠡⠊⠉⠅⠺⠑⠫" }, { "input": "chicle", "output": "⠡⠊⠉⠇⠑" }, { "input": "chicories", "output": "⠡⠊⠉⠕⠗⠊⠑⠎" }, { "input": "chicory", "output": "⠡⠊⠉⠕⠗⠽" }, { "input": "chid", "output": "â ¡â Šâ ™" }, { "input": "chidden", "output": "⠡⠊⠙⠙⠢" }, { "input": "chide", "output": "⠡⠊⠙⠑" }, { "input": "chided", "output": "⠡⠊⠙⠫" }, { "input": "chides", "output": "⠡⠊⠙⠑⠎" }, { "input": "chiding", "output": "⠡⠊⠙⠬" }, { "input": "chief", "output": "â ¡â Šâ ‘â ‹" }, { "input": "chiefer", "output": "â ¡â Šâ ‘â ‹â »" }, { "input": "chiefest", "output": "â ¡â Šâ ‘â ‹â ‘â Œ" }, { "input": "chiefly", "output": "⠡⠊⠑⠋⠇⠽" }, { "input": "chiefs", "output": "â ¡â Šâ ‘â ‹â Ž" }, { "input": "chieftain", "output": "â ¡â Šâ ‘â ‹â žâ â ”" }, { "input": "chieftains", "output": "â ¡â Šâ ‘â ‹â žâ â ”â Ž" }, { "input": "chiffon", "output": "â ¡â Šâ –â •â " }, { "input": "chigger", "output": "â ¡â Šâ ¶â »" }, { "input": "chiggers", "output": "⠡⠊⠶⠻⠎" }, { "input": "chignon", "output": "â ¡â Šâ ›â â •â " }, { "input": "chignons", "output": "â ¡â Šâ ›â â •â â Ž" }, { "input": "chilblain", "output": "⠡⠊⠇⠃⠇â â ”" }, { "input": "chilblains", "output": "⠡⠊⠇⠃⠇â â ”â Ž" }, { "input": "child", "output": "â ¡" }, { "input": "childbearing", "output": "⠡⠊⠇⠙⠃⠑⠜⠬" }, { "input": "childbirth", "output": "⠡⠊⠇⠙⠃⠊⠗⠹" }, { "input": "childbirths", "output": "⠡⠊⠇⠙⠃⠊⠗⠹⠎" }, { "input": "childcare", "output": "⠡⠊⠇⠙⠉⠜⠑" }, { "input": "childhood", "output": "⠡⠊⠇⠙⠓⠕⠕⠙" }, { "input": "childhoods", "output": "⠡⠊⠇⠙⠓⠕⠕⠙⠎" }, { "input": "childish", "output": "⠡⠊⠇⠙⠊⠩" }, { "input": "childishly", "output": "⠡⠊⠇⠙⠊⠩⠇⠽" }, { "input": "childishness", "output": "⠡⠊⠇⠙⠊⠩⠰⠎" }, { "input": "childless", "output": "⠡⠊⠇⠙⠨⠎" }, { "input": "childlessness", "output": "⠡⠊⠇⠙⠨⠎⠰⠎" }, { "input": "childlike", "output": "⠡⠊⠇⠙⠇⠊⠅⠑" }, { "input": "childproof", "output": "⠡⠊⠇⠙â â —â •â ·" }, { "input": "childproofed", "output": "⠡⠊⠇⠙â â —â •â ·â «" }, { "input": "childproofing", "output": "⠡⠊⠇⠙â â —â •â ·â ¬" }, { "input": "childproofs", "output": "⠡⠊⠇⠙â â —â •â ·â Ž" }, { "input": "children", "output": "â ¡â " }, { "input": "chile", "output": "⠡⠊⠇⠑" }, { "input": "chiles", "output": "⠡⠊⠇⠑⠎" }, { "input": "chili", "output": "⠡⠊⠇⠊" }, { "input": "chilies", "output": "⠡⠊⠇⠊⠑⠎" }, { "input": "chilis", "output": "⠡⠊⠇⠊⠎" }, { "input": "chill", "output": "⠡⠊⠇⠇" }, { "input": "chilled", "output": "⠡⠊⠇⠇⠫" }, { "input": "chiller", "output": "⠡⠊⠇⠇⠻" }, { "input": "chillers", "output": "⠡⠊⠇⠇⠻⠎" }, { "input": "chillest", "output": "⠡⠊⠇⠇⠑⠌" }, { "input": "chilli", "output": "⠡⠊⠇⠇⠊" }, { "input": "chillier", "output": "⠡⠊⠇⠇⠊⠻" }, { "input": "chillies", "output": "⠡⠊⠇⠇⠊⠑⠎" }, { "input": "chilliest", "output": "⠡⠊⠇⠇⠊⠑⠌" }, { "input": "chilliness", "output": "⠡⠊⠇⠇⠊⠰⠎" }, { "input": "chilling", "output": "⠡⠊⠇⠇⠬" }, { "input": "chillings", "output": "⠡⠊⠇⠇⠬⠎" }, { "input": "chills", "output": "⠡⠊⠇⠇⠎" }, { "input": "chilly", "output": "⠡⠊⠇⠇⠽" }, { "input": "chimaera", "output": "â ¡â Šâ â â »â " }, { "input": "chimaeras", "output": "â ¡â Šâ â â »â â Ž" }, { "input": "chime", "output": "â ¡â Šâ â ‘" }, { "input": "chimed", "output": "â ¡â Šâ â «" }, { "input": "chimera", "output": "â ¡â Šâ â »â " }, { "input": "chimeras", "output": "â ¡â Šâ â »â â Ž" }, { "input": "chimerical", "output": "â ¡â Šâ â »â Šâ ‰â â ‡" }, { "input": "chimes", "output": "â ¡â Šâ â ‘â Ž" }, { "input": "chiming", "output": "â ¡â Šâ â ¬" }, { "input": "chimney", "output": "â ¡â Šâ â â ‘â ½" }, { "input": "chimneys", "output": "â ¡â Šâ â â ‘⠽⠎" }, { "input": "chimp", "output": "â ¡â Šâ â " }, { "input": "chimpanzee", "output": "â ¡â Šâ â â â â µâ ‘â ‘" }, { "input": "chimpanzees", "output": "â ¡â Šâ â â â â µâ ‘â ‘â Ž" }, { "input": "chimps", "output": "â ¡â Šâ â â Ž" }, { "input": "chin", "output": "â ¡â ”" }, { "input": "china", "output": "â ¡â ”â " }, { "input": "chinchilla", "output": "⠡⠔⠡⠊⠇⠇â " }, { "input": "chinchillas", "output": "⠡⠔⠡⠊⠇⠇â â Ž" }, { "input": "chink", "output": "⠡⠔⠅" }, { "input": "chinked", "output": "⠡⠔⠅⠫" }, { "input": "chinking", "output": "⠡⠔⠅⠬" }, { "input": "chinks", "output": "⠡⠔⠅⠎" }, { "input": "chinned", "output": "â ¡â ”â â «" }, { "input": "chinning", "output": "â ¡â ”â â ¬" }, { "input": "chino", "output": "⠡⠔⠕" }, { "input": "chinos", "output": "⠡⠔⠕⠎" }, { "input": "chins", "output": "⠡⠔⠎" }, { "input": "chinstrap", "output": "⠡⠔⠌⠗â â " }, { "input": "chinstraps", "output": "⠡⠔⠌⠗â â â Ž" }, { "input": "chintz", "output": "⠡⠔⠞⠵" }, { "input": "chintzier", "output": "⠡⠔⠞⠵⠊⠻" }, { "input": "chintziest", "output": "⠡⠔⠞⠵⠊⠑⠌" }, { "input": "chintzy", "output": "⠡⠔⠞⠵⠽" }, { "input": "chip", "output": "â ¡â Šâ " }, { "input": "chipmunk", "output": "â ¡â Šâ â â ¥â â …" }, { "input": "chipmunks", "output": "â ¡â Šâ â â ¥â â …â Ž" }, { "input": "chipped", "output": "â ¡â Šâ â â «" }, { "input": "chipper", "output": "â ¡â Šâ â â »" }, { "input": "chippers", "output": "â ¡â Šâ â â »â Ž" }, { "input": "chipping", "output": "â ¡â Šâ â â ¬" }, { "input": "chips", "output": "â ¡â Šâ â Ž" }, { "input": "chiropodist", "output": "â ¡â Šâ —â •â â •⠙⠊⠌" }, { "input": "chiropodists", "output": "â ¡â Šâ —â •â â •⠙⠊⠌⠎" }, { "input": "chiropody", "output": "â ¡â Šâ —â •â â •⠙⠽" }, { "input": "chiropractic", "output": "â ¡â Šâ —â •â â —â â ‰â žâ Šâ ‰" }, { "input": "chiropractics", "output": "â ¡â Šâ —â •â â —â â ‰â žâ Šâ ‰â Ž" }, { "input": "chiropractor", "output": "â ¡â Šâ —â •â â —â â ‰â žâ •â —" }, { "input": "chiropractors", "output": "â ¡â Šâ —â •â â —â â ‰â žâ •â —â Ž" }, { "input": "chirp", "output": "â ¡â Šâ —â " }, { "input": "chirped", "output": "â ¡â Šâ —â â «" }, { "input": "chirping", "output": "â ¡â Šâ —â â ¬" }, { "input": "chirps", "output": "â ¡â Šâ —â â Ž" }, { "input": "chirrup", "output": "â ¡â Šâ —â —â ¥â " }, { "input": "chirruped", "output": "â ¡â Šâ —â —â ¥â â «" }, { "input": "chirruping", "output": "â ¡â Šâ —â —â ¥â â ¬" }, { "input": "chirrupped", "output": "â ¡â Šâ —â —â ¥â â â «" }, { "input": "chirrupping", "output": "â ¡â Šâ —â —â ¥â â â ¬" }, { "input": "chirrups", "output": "â ¡â Šâ —â —â ¥â â Ž" }, { "input": "chisel", "output": "â ¡â Šâ Žâ ‘â ‡" }, { "input": "chiseled", "output": "⠡⠊⠎⠑⠇⠫" }, { "input": "chiseler", "output": "⠡⠊⠎⠑⠇⠻" }, { "input": "chiselers", "output": "⠡⠊⠎⠑⠇⠻⠎" }, { "input": "chiseling", "output": "⠡⠊⠎⠑⠇⠬" }, { "input": "chiselled", "output": "⠡⠊⠎⠑⠇⠇⠫" }, { "input": "chiseller", "output": "⠡⠊⠎⠑⠇⠇⠻" }, { "input": "chisellers", "output": "⠡⠊⠎⠑⠇⠇⠻⠎" }, { "input": "chiselling", "output": "⠡⠊⠎⠑⠇⠇⠬" }, { "input": "chisels", "output": "⠡⠊⠎⠑⠇⠎" }, { "input": "chit", "output": "â ¡â Šâ ž" }, { "input": "chitchat", "output": "â ¡â Šâ žâ ¡â â ž" }, { "input": "chitchats", "output": "â ¡â Šâ žâ ¡â â žâ Ž" }, { "input": "chitchatted", "output": "â ¡â Šâ žâ ¡â â žâ žâ «" }, { "input": "chitchatting", "output": "â ¡â Šâ žâ ¡â â žâ žâ ¬" }, { "input": "chitin", "output": "â ¡â Šâ žâ ”" }, { "input": "chitlings", "output": "⠡⠊⠞⠇⠬⠎" }, { "input": "chitlins", "output": "⠡⠊⠞⠇⠔⠎" }, { "input": "chits", "output": "â ¡â Šâ žâ Ž" }, { "input": "chitterlings", "output": "⠡⠊⠞⠞⠻⠇⠬⠎" }, { "input": "chivalrous", "output": "â ¡â Šâ §â â ‡â —⠳⠎" }, { "input": "chivalrously", "output": "â ¡â Šâ §â â ‡â —⠳⠎⠇⠽" }, { "input": "chivalry", "output": "â ¡â Šâ §â â ‡â —â ½" }, { "input": "chive", "output": "â ¡â Šâ §â ‘" }, { "input": "chives", "output": "â ¡â Šâ §â ‘â Ž" }, { "input": "chloride", "output": "⠡⠇⠕⠗⠊⠙⠑" }, { "input": "chlorides", "output": "⠡⠇⠕⠗⠊⠙⠑⠎" }, { "input": "chlorinate", "output": "⠡⠇⠕⠗⠔â â žâ ‘" }, { "input": "chlorinated", "output": "⠡⠇⠕⠗⠔â â žâ «" }, { "input": "chlorinates", "output": "⠡⠇⠕⠗⠔â â žâ ‘â Ž" }, { "input": "chlorinating", "output": "⠡⠇⠕⠗⠔â â žâ ¬" }, { "input": "chlorination", "output": "⠡⠇⠕⠗⠔â â °â " }, { "input": "chlorine", "output": "⠡⠇⠕⠗⠔⠑" }, { "input": "chlorofluorocarbon", "output": "⠡⠇⠕⠗⠕⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â " }, { "input": "chlorofluorocarbons", "output": "⠡⠇⠕⠗⠕⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â â Ž" }, { "input": "chloroform", "output": "⠡⠇⠕⠗⠕⠿â " }, { "input": "chloroformed", "output": "⠡⠇⠕⠗⠕⠿â â «" }, { "input": "chloroforming", "output": "⠡⠇⠕⠗⠕⠿â â ¬" }, { "input": "chloroforms", "output": "⠡⠇⠕⠗⠕⠿â â Ž" }, { "input": "chlorophyll", "output": "⠡⠇⠕⠗⠕â â “⠽⠇⠇" }, { "input": "chock", "output": "⠡⠕⠉⠅" }, { "input": "chocked", "output": "⠡⠕⠉⠅⠫" }, { "input": "chocking", "output": "⠡⠕⠉⠅⠬" }, { "input": "chocks", "output": "⠡⠕⠉⠅⠎" }, { "input": "chocolate", "output": "⠡⠕⠉⠕⠇â â žâ ‘" }, { "input": "chocolates", "output": "⠡⠕⠉⠕⠇â â žâ ‘â Ž" }, { "input": "choice", "output": "⠡⠕⠊⠉⠑" }, { "input": "choicer", "output": "⠡⠕⠊⠉⠻" }, { "input": "choices", "output": "⠡⠕⠊⠉⠑⠎" }, { "input": "choicest", "output": "⠡⠕⠊⠉⠑⠌" }, { "input": "choir", "output": "â ¡â •â Šâ —" }, { "input": "choirs", "output": "â ¡â •â Šâ —â Ž" }, { "input": "choke", "output": "â ¡â •â …â ‘" }, { "input": "choked", "output": "â ¡â •â …â «" }, { "input": "choker", "output": "â ¡â •â …â »" }, { "input": "chokers", "output": "⠡⠕⠅⠻⠎" }, { "input": "chokes", "output": "â ¡â •â …â ‘â Ž" }, { "input": "choking", "output": "â ¡â •â …â ¬" }, { "input": "choler", "output": "⠡⠕⠇⠻" }, { "input": "cholera", "output": "⠡⠕⠇⠻â " }, { "input": "choleric", "output": "⠡⠕⠇⠻⠊⠉" }, { "input": "cholesterol", "output": "⠡⠕⠇⠑⠌⠻⠕⠇" }, { "input": "chomp", "output": "â ¡â •â â " }, { "input": "chomped", "output": "â ¡â •â â â «" }, { "input": "chomping", "output": "â ¡â •â â â ¬" }, { "input": "chomps", "output": "â ¡â •â â â Ž" }, { "input": "choose", "output": "â ¡â •â •â Žâ ‘" }, { "input": "chooses", "output": "â ¡â •â •â Žâ ‘â Ž" }, { "input": "choosey", "output": "â ¡â •â •â Žâ ‘â ½" }, { "input": "choosier", "output": "â ¡â •â •â Žâ Šâ »" }, { "input": "choosiest", "output": "â ¡â •â •â Žâ Šâ ‘â Œ" }, { "input": "choosing", "output": "â ¡â •â •â Žâ ¬" }, { "input": "choosy", "output": "â ¡â •â •â Žâ ½" }, { "input": "chop", "output": "â ¡â •â " }, { "input": "chopped", "output": "â ¡â •â â â «" }, { "input": "chopper", "output": "â ¡â •â â â »" }, { "input": "choppered", "output": "â ¡â •â â â »â «" }, { "input": "choppering", "output": "â ¡â •â â â »â ¬" }, { "input": "choppers", "output": "â ¡â •â â â »â Ž" }, { "input": "choppier", "output": "â ¡â •â â â Šâ »" }, { "input": "choppiest", "output": "â ¡â •â â â Šâ ‘â Œ" }, { "input": "choppily", "output": "â ¡â •â â â Šâ ‡â ½" }, { "input": "choppiness", "output": "â ¡â •â â â Šâ °â Ž" }, { "input": "chopping", "output": "â ¡â •â â â ¬" }, { "input": "choppy", "output": "â ¡â •â â â ½" }, { "input": "chops", "output": "â ¡â •â â Ž" }, { "input": "chopstick", "output": "â ¡â •â â Œâ Šâ ‰â …" }, { "input": "chopsticks", "output": "â ¡â •â â Œâ Šâ ‰â …â Ž" }, { "input": "choral", "output": "â ¡â •â —â â ‡" }, { "input": "chorale", "output": "â ¡â •â —â â ‡â ‘" }, { "input": "chorales", "output": "â ¡â •â —â â ‡â ‘â Ž" }, { "input": "chorals", "output": "â ¡â •â —â â ‡â Ž" }, { "input": "chord", "output": "â ¡â •â —â ™" }, { "input": "chords", "output": "⠡⠕⠗⠙⠎" }, { "input": "chore", "output": "â ¡â •â —â ‘" }, { "input": "choreograph", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “" }, { "input": "choreographed", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â «" }, { "input": "choreographer", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â »" }, { "input": "choreographers", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “⠻⠎" }, { "input": "choreographic", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â Šâ ‰" }, { "input": "choreographing", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â ¬" }, { "input": "choreographs", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â Ž" }, { "input": "choreography", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â ½" }, { "input": "chores", "output": "â ¡â •â —â ‘â Ž" }, { "input": "chorister", "output": "⠡⠕⠗⠊⠌⠻" }, { "input": "choristers", "output": "⠡⠕⠗⠊⠌⠻⠎" }, { "input": "chortle", "output": "⠡⠕⠗⠞⠇⠑" }, { "input": "chortled", "output": "⠡⠕⠗⠞⠇⠫" }, { "input": "chortles", "output": "⠡⠕⠗⠞⠇⠑⠎" }, { "input": "chortling", "output": "⠡⠕⠗⠞⠇⠬" }, { "input": "chorus", "output": "⠡⠕⠗⠥⠎" }, { "input": "chorused", "output": "⠡⠕⠗⠥⠎⠫" }, { "input": "choruses", "output": "⠡⠕⠗⠥⠎⠑⠎" }, { "input": "chorusing", "output": "⠡⠕⠗⠥⠎⠬" }, { "input": "chorussed", "output": "⠡⠕⠗⠥⠎⠎⠫" }, { "input": "chorussing", "output": "⠡⠕⠗⠥⠎⠎⠬" }, { "input": "chose", "output": "â ¡â •â Žâ ‘" }, { "input": "chosen", "output": "â ¡â •â Žâ ¢" }, { "input": "chow", "output": "â ¡â ª" }, { "input": "chowder", "output": "⠡⠪⠙⠻" }, { "input": "chowders", "output": "⠡⠪⠙⠻⠎" }, { "input": "chowed", "output": "⠡⠪⠫" }, { "input": "chowing", "output": "⠡⠪⠬" }, { "input": "chows", "output": "⠡⠪⠎" }, { "input": "christen", "output": "⠡⠗⠊⠌⠢" }, { "input": "christened", "output": "⠡⠗⠊⠌⠢⠫" }, { "input": "christening", "output": "⠡⠗⠊⠌⠢⠬" }, { "input": "christenings", "output": "⠡⠗⠊⠌⠢⠬⠎" }, { "input": "christens", "output": "⠡⠗⠊⠌⠢⠎" }, { "input": "chromatic", "output": "â ¡â —â •â â â žâ Šâ ‰" }, { "input": "chrome", "output": "â ¡â —â •â â ‘" }, { "input": "chromed", "output": "â ¡â —â •â â «" }, { "input": "chromes", "output": "â ¡â —â •â â ‘â Ž" }, { "input": "chroming", "output": "â ¡â —â •â â ¬" }, { "input": "chromium", "output": "â ¡â —â •â â Šâ ¥â " }, { "input": "chromosome", "output": "â ¡â —â •â â •â â Ž" }, { "input": "chromosomes", "output": "â ¡â —â •â â •â â Žâ Ž" }, { "input": "chronic", "output": "â ¡â —â •â â Šâ ‰" }, { "input": "chronically", "output": "â ¡â —â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "chronicle", "output": "â ¡â —â •â â Šâ ‰â ‡â ‘" }, { "input": "chronicled", "output": "â ¡â —â •â â Šâ ‰â ‡â «" }, { "input": "chronicler", "output": "â ¡â —â •â â Šâ ‰â ‡â »" }, { "input": "chroniclers", "output": "â ¡â —â •â â Šâ ‰â ‡â »â Ž" }, { "input": "chronicles", "output": "â ¡â —â •â â Šâ ‰â ‡â ‘â Ž" }, { "input": "chronicling", "output": "â ¡â —â •â â Šâ ‰â ‡â ¬" }, { "input": "chronological", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "chronologically", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "chronologies", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠑⠎" }, { "input": "chronology", "output": "â ¡â —â •â â •⠇⠕⠛⠽" }, { "input": "chronometer", "output": "â ¡â —â •â â •â â ‘â žâ »" }, { "input": "chronometers", "output": "â ¡â —â •â â •â â ‘⠞⠻⠎" }, { "input": "chrysalides", "output": "⠡⠗⠽⠎â â ‡â Šâ ™â ‘â Ž" }, { "input": "chrysalis", "output": "⠡⠗⠽⠎â â ‡â Šâ Ž" }, { "input": "chrysalises", "output": "⠡⠗⠽⠎â â ‡â Šâ Žâ ‘â Ž" }, { "input": "chrysanthemum", "output": "⠡⠗⠽⠎â â â ®â â ¥â " }, { "input": "chrysanthemums", "output": "⠡⠗⠽⠎â â â ®â â ¥â â Ž" }, { "input": "chubbier", "output": "⠡⠥⠆⠊⠻" }, { "input": "chubbiest", "output": "⠡⠥⠆⠊⠑⠌" }, { "input": "chubbiness", "output": "⠡⠥⠆⠊⠰⠎" }, { "input": "chubby", "output": "⠡⠥⠆⠽" }, { "input": "chuck", "output": "⠡⠥⠉⠅" }, { "input": "chucked", "output": "⠡⠥⠉⠅⠫" }, { "input": "chuckhole", "output": "⠡⠥⠉⠅⠓⠕⠇⠑" }, { "input": "chuckholes", "output": "⠡⠥⠉⠅⠓⠕⠇⠑⠎" }, { "input": "chucking", "output": "⠡⠥⠉⠅⠬" }, { "input": "chuckle", "output": "⠡⠥⠉⠅⠇⠑" }, { "input": "chuckled", "output": "⠡⠥⠉⠅⠇⠫" }, { "input": "chuckles", "output": "⠡⠥⠉⠅⠇⠑⠎" }, { "input": "chuckling", "output": "⠡⠥⠉⠅⠇⠬" }, { "input": "chucks", "output": "⠡⠥⠉⠅⠎" }, { "input": "chug", "output": "⠡⠥⠛" }, { "input": "chugged", "output": "⠡⠥⠶⠫" }, { "input": "chugging", "output": "⠡⠥⠶⠬" }, { "input": "chugs", "output": "⠡⠥⠛⠎" }, { "input": "chum", "output": "â ¡â ¥â " }, { "input": "chummed", "output": "â ¡â ¥â â â «" }, { "input": "chummier", "output": "â ¡â ¥â â â Šâ »" }, { "input": "chummiest", "output": "â ¡â ¥â â â Šâ ‘â Œ" }, { "input": "chumminess", "output": "â ¡â ¥â â â Šâ °â Ž" }, { "input": "chumming", "output": "â ¡â ¥â â â ¬" }, { "input": "chummy", "output": "â ¡â ¥â â â ½" }, { "input": "chump", "output": "â ¡â ¥â â " }, { "input": "chumps", "output": "â ¡â ¥â â â Ž" }, { "input": "chums", "output": "â ¡â ¥â â Ž" }, { "input": "chunk", "output": "â ¡â ¥â â …" }, { "input": "chunkier", "output": "â ¡â ¥â â …â Šâ »" }, { "input": "chunkiest", "output": "â ¡â ¥â â …â Šâ ‘â Œ" }, { "input": "chunkiness", "output": "â ¡â ¥â â …â Šâ °â Ž" }, { "input": "chunks", "output": "â ¡â ¥â â …â Ž" }, { "input": "chunky", "output": "â ¡â ¥â â …â ½" }, { "input": "church", "output": "⠡⠥⠗⠡" }, { "input": "churches", "output": "⠡⠥⠗⠡⠑⠎" }, { "input": "churchgoer", "output": "⠡⠥⠗⠡⠛⠕⠻" }, { "input": "churchgoers", "output": "⠡⠥⠗⠡⠛⠕⠻⠎" }, { "input": "churchman", "output": "⠡⠥⠗⠡â â â " }, { "input": "churchmen", "output": "⠡⠥⠗⠡â â ¢" }, { "input": "churchyard", "output": "⠡⠥⠗⠡⠽⠜⠙" }, { "input": "churchyards", "output": "⠡⠥⠗⠡⠽⠜⠙⠎" }, { "input": "churl", "output": "⠡⠥⠗⠇" }, { "input": "churlish", "output": "⠡⠥⠗⠇⠊⠩" }, { "input": "churlishly", "output": "⠡⠥⠗⠇⠊⠩⠇⠽" }, { "input": "churlishness", "output": "⠡⠥⠗⠇⠊⠩⠰⠎" }, { "input": "churls", "output": "⠡⠥⠗⠇⠎" }, { "input": "churn", "output": "⠡⠥⠗â " }, { "input": "churned", "output": "⠡⠥⠗â â «" }, { "input": "churning", "output": "⠡⠥⠗â â ¬" }, { "input": "churns", "output": "⠡⠥⠗â â Ž" }, { "input": "chute", "output": "⠡⠥⠞⠑" }, { "input": "chutes", "output": "⠡⠥⠞⠑⠎" }, { "input": "chutney", "output": "⠡⠥⠞â â ‘â ½" }, { "input": "chutzpa", "output": "⠡⠥⠞⠵â â " }, { "input": "chutzpah", "output": "⠡⠥⠞⠵â â â “" }, { "input": "château", "output": "⠡⠠⠘⠻â â ˆâ ‰â žâ ‚â ¥" }, { "input": "châteaux", "output": "⠡⠠⠘⠻â â ˆâ ‰â žâ ‚⠥⠭" }, { "input": "châtelaine", "output": "⠡⠠⠘⠻â â ˆâ ‰â žâ ‘â ‡â â ”â ‘" }, { "input": "châtelaines", "output": "⠡⠠⠘⠻â â ˆâ ‰â žâ ‘â ‡â â ”â ‘â Ž" }, { "input": "cicada", "output": "⠉⠊⠉â â ™â " }, { "input": "cicadae", "output": "⠉⠊⠉â â ™â â ‘" }, { "input": "cicadas", "output": "⠉⠊⠉â â ™â â Ž" }, { "input": "cicatrice", "output": "⠉⠊⠉â â žâ —⠊⠉⠑" }, { "input": "cicatrices", "output": "⠉⠊⠉â â žâ —⠊⠉⠑⠎" }, { "input": "cicatrix", "output": "⠉⠊⠉â â žâ —â Šâ ­" }, { "input": "cider", "output": "⠉⠊⠙⠻" }, { "input": "ciders", "output": "⠉⠊⠙⠻⠎" }, { "input": "cigar", "output": "⠉⠊⠛⠜" }, { "input": "cigaret", "output": "⠉⠊⠛⠜⠑⠞" }, { "input": "cigarets", "output": "⠉⠊⠛⠜⠑⠞⠎" }, { "input": "cigarette", "output": "⠉⠊⠛⠜⠑⠞⠞⠑" }, { "input": "cigarettes", "output": "⠉⠊⠛⠜⠑⠞⠞⠑⠎" }, { "input": "cigarillo", "output": "⠉⠊⠛⠜⠊⠇⠇⠕" }, { "input": "cigarillos", "output": "⠉⠊⠛⠜⠊⠇⠇⠕⠎" }, { "input": "cigars", "output": "⠉⠊⠛⠜⠎" }, { "input": "cilantro", "output": "⠉⠊⠇â â â žâ —â •" }, { "input": "cilia", "output": "⠉⠊⠇⠊â " }, { "input": "cilium", "output": "⠉⠊⠇⠊⠥â " }, { "input": "cinch", "output": "⠉⠔⠡" }, { "input": "cinched", "output": "⠉⠔⠡⠫" }, { "input": "cinches", "output": "⠉⠔⠡⠑⠎" }, { "input": "cinching", "output": "⠉⠔⠡⠬" }, { "input": "cinchona", "output": "⠉⠔⠡⠕â â " }, { "input": "cinchonas", "output": "⠉⠔⠡⠕â â â Ž" }, { "input": "cincture", "output": "⠉⠔⠉⠞⠥⠗⠑" }, { "input": "cinctures", "output": "⠉⠔⠉⠞⠥⠗⠑⠎" }, { "input": "cinder", "output": "⠉⠔⠙⠻" }, { "input": "cindered", "output": "⠉⠔⠙⠻⠫" }, { "input": "cindering", "output": "⠉⠔⠙⠻⠬" }, { "input": "cinders", "output": "⠉⠔⠙⠻⠎" }, { "input": "cinema", "output": "⠉⠔⠑â â " }, { "input": "cinemas", "output": "⠉⠔⠑â â â Ž" }, { "input": "cinematic", "output": "⠉⠔⠑â â â žâ Šâ ‰" }, { "input": "cinematographer", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “â »" }, { "input": "cinematographers", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “⠻⠎" }, { "input": "cinematography", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “â ½" }, { "input": "cinnabar", "output": "⠉⠔â â â ƒâ œ" }, { "input": "cinnamon", "output": "⠉⠔â â â â •â " }, { "input": "cipher", "output": "⠉⠊â â “â »" }, { "input": "ciphered", "output": "⠉⠊â â “⠻⠫" }, { "input": "ciphering", "output": "⠉⠊â â “⠻⠬" }, { "input": "ciphers", "output": "⠉⠊â â “⠻⠎" }, { "input": "circa", "output": "⠉⠊⠗⠉â " }, { "input": "circadian", "output": "⠉⠊⠗⠉â â ™â Šâ â " }, { "input": "circle", "output": "⠉⠊⠗⠉⠇⠑" }, { "input": "circled", "output": "⠉⠊⠗⠉⠇⠫" }, { "input": "circles", "output": "⠉⠊⠗⠉⠇⠑⠎" }, { "input": "circlet", "output": "⠉⠊⠗⠉⠇⠑⠞" }, { "input": "circlets", "output": "⠉⠊⠗⠉⠇⠑⠞⠎" }, { "input": "circling", "output": "⠉⠊⠗⠉⠇⠬" }, { "input": "circuit", "output": "⠉⠊⠗⠉⠥⠊⠞" }, { "input": "circuited", "output": "⠉⠊⠗⠉⠥⠊⠞⠫" }, { "input": "circuiting", "output": "⠉⠊⠗⠉⠥⠊⠞⠬" }, { "input": "circuitous", "output": "⠉⠊⠗⠉⠥⠊⠞⠳⠎" }, { "input": "circuitously", "output": "⠉⠊⠗⠉⠥⠊⠞⠳⠎⠇⠽" }, { "input": "circuitry", "output": "⠉⠊⠗⠉⠥⠊⠞⠗⠽" }, { "input": "circuits", "output": "⠉⠊⠗⠉⠥⠊⠞⠎" }, { "input": "circular", "output": "⠉⠊⠗⠉⠥⠇⠜" }, { "input": "circularity", "output": "⠉⠊⠗⠉⠥⠇⠜⠰⠽" }, { "input": "circularize", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠑" }, { "input": "circularized", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠫" }, { "input": "circularizes", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠑⠎" }, { "input": "circularizing", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠬" }, { "input": "circulars", "output": "⠉⠊⠗⠉⠥⠇⠜⠎" }, { "input": "circulate", "output": "⠉⠊⠗⠉⠥⠇â â žâ ‘" }, { "input": "circulated", "output": "⠉⠊⠗⠉⠥⠇â â žâ «" }, { "input": "circulates", "output": "⠉⠊⠗⠉⠥⠇â â žâ ‘â Ž" }, { "input": "circulating", "output": "⠉⠊⠗⠉⠥⠇â â žâ ¬" }, { "input": "circulation", "output": "⠉⠊⠗⠉⠥⠇â â °â " }, { "input": "circulations", "output": "⠉⠊⠗⠉⠥⠇â â °â â Ž" }, { "input": "circulatory", "output": "⠉⠊⠗⠉⠥⠇â â žâ •â —â ½" }, { "input": "circumcise", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ ‘" }, { "input": "circumcised", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ «" }, { "input": "circumcises", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ ‘â Ž" }, { "input": "circumcising", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ ¬" }, { "input": "circumcision", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ ¨â " }, { "input": "circumcisions", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ ¨â â Ž" }, { "input": "circumference", "output": "⠉⠊⠗⠉⠥â â ‹â »â °â ‘" }, { "input": "circumferences", "output": "⠉⠊⠗⠉⠥â â ‹â »â °â ‘â Ž" }, { "input": "circumflex", "output": "⠉⠊⠗⠉⠥â â ‹â ‡â ‘â ­" }, { "input": "circumflexes", "output": "⠉⠊⠗⠉⠥â â ‹â ‡â ‘â ­â ‘â Ž" }, { "input": "circumlocution", "output": "⠉⠊⠗⠉⠥â â ‡â •⠉⠥⠰â " }, { "input": "circumlocutions", "output": "⠉⠊⠗⠉⠥â â ‡â •⠉⠥⠰â â Ž" }, { "input": "circumnavigate", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ ‘" }, { "input": "circumnavigated", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ «" }, { "input": "circumnavigates", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ ‘â Ž" }, { "input": "circumnavigating", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ ¬" }, { "input": "circumnavigation", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â °â " }, { "input": "circumnavigations", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â °â â Ž" }, { "input": "circumscribe", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠑" }, { "input": "circumscribed", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠫" }, { "input": "circumscribes", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "circumscribing", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠬" }, { "input": "circumscription", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —â Šâ â °â " }, { "input": "circumscriptions", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —â Šâ â °â â Ž" }, { "input": "circumspect", "output": "⠉⠊⠗⠉⠥â â Žâ â ‘⠉⠞" }, { "input": "circumspection", "output": "⠉⠊⠗⠉⠥â â Žâ â ‘⠉⠰â " }, { "input": "circumstance", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘" }, { "input": "circumstanced", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘â ™" }, { "input": "circumstances", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘â Ž" }, { "input": "circumstancing", "output": "⠉⠊⠗⠉⠥â â Œâ â â ‰â ¬" }, { "input": "circumstantial", "output": "⠉⠊⠗⠉⠥â â Œâ â â žâ Šâ â ‡" }, { "input": "circumstantially", "output": "⠉⠊⠗⠉⠥â â Œâ â â žâ Šâ â ‡â ‡â ½" }, { "input": "circumvent", "output": "⠉⠊⠗⠉⠥â â §â ¢â ž" }, { "input": "circumvented", "output": "⠉⠊⠗⠉⠥â â §â ¢â žâ «" }, { "input": "circumventing", "output": "⠉⠊⠗⠉⠥â â §â ¢â žâ ¬" }, { "input": "circumvention", "output": "⠉⠊⠗⠉⠥â â §â ¢â °â " }, { "input": "circumvents", "output": "⠉⠊⠗⠉⠥â â §â ¢â žâ Ž" }, { "input": "circus", "output": "⠉⠊⠗⠉⠥⠎" }, { "input": "circuses", "output": "⠉⠊⠗⠉⠥⠎⠑⠎" }, { "input": "cirrhosis", "output": "⠉⠊⠗⠗⠓⠕⠎⠊⠎" }, { "input": "cirrus", "output": "⠉⠊⠗⠗⠥⠎" }, { "input": "cistern", "output": "⠉⠊⠌⠻â " }, { "input": "cisterns", "output": "⠉⠊⠌⠻â â Ž" }, { "input": "citadel", "output": "⠉⠊⠞â â ™â ‘â ‡" }, { "input": "citadels", "output": "⠉⠊⠞â â ™â ‘⠇⠎" }, { "input": "citation", "output": "⠉⠊⠞â â °â " }, { "input": "citations", "output": "⠉⠊⠞â â °â â Ž" }, { "input": "cite", "output": "⠉⠊⠞⠑" }, { "input": "cited", "output": "⠉⠊⠞⠫" }, { "input": "cites", "output": "⠉⠊⠞⠑⠎" }, { "input": "cities", "output": "⠉⠊⠞⠊⠑⠎" }, { "input": "citing", "output": "⠉⠊⠞⠬" }, { "input": "citizen", "output": "⠉⠊⠞⠊⠵⠢" }, { "input": "citizenry", "output": "⠉⠊⠞⠊⠵⠢⠗⠽" }, { "input": "citizens", "output": "⠉⠊⠞⠊⠵⠢⠎" }, { "input": "citizenship", "output": "⠉⠊⠞⠊⠵⠢⠩⠊â " }, { "input": "citric", "output": "⠉⠊⠞⠗⠊⠉" }, { "input": "citron", "output": "⠉⠊⠞⠗⠕â " }, { "input": "citronella", "output": "⠉⠊⠞⠗⠕â â ‘⠇⠇â " }, { "input": "citrons", "output": "⠉⠊⠞⠗⠕â â Ž" }, { "input": "citrous", "output": "⠉⠊⠞⠗⠳⠎" }, { "input": "citrus", "output": "⠉⠊⠞⠗⠥⠎" }, { "input": "citruses", "output": "⠉⠊⠞⠗⠥⠎⠑⠎" }, { "input": "city", "output": "⠉⠰⠽" }, { "input": "civet", "output": "⠉⠊⠧⠑⠞" }, { "input": "civets", "output": "⠉⠊⠧⠑⠞⠎" }, { "input": "civic", "output": "⠉⠊⠧⠊⠉" }, { "input": "civics", "output": "⠉⠊⠧⠊⠉⠎" }, { "input": "civies", "output": "⠉⠊⠧⠊⠑⠎" }, { "input": "civil", "output": "⠉⠊⠧⠊⠇" }, { "input": "civilian", "output": "⠉⠊⠧⠊⠇⠊â â " }, { "input": "civilians", "output": "⠉⠊⠧⠊⠇⠊â â â Ž" }, { "input": "civilities", "output": "⠉⠊⠧⠊⠇⠊⠞⠊⠑⠎" }, { "input": "civility", "output": "⠉⠊⠧⠊⠇⠰⠽" }, { "input": "civilization", "output": "⠉⠊⠧⠊⠇⠊⠵â â °â " }, { "input": "civilizations", "output": "⠉⠊⠧⠊⠇⠊⠵â â °â â Ž" }, { "input": "civilize", "output": "⠉⠊⠧⠊⠇⠊⠵⠑" }, { "input": "civilized", "output": "⠉⠊⠧⠊⠇⠊⠵⠫" }, { "input": "civilizes", "output": "⠉⠊⠧⠊⠇⠊⠵⠑⠎" }, { "input": "civilizing", "output": "⠉⠊⠧⠊⠇⠊⠵⠬" }, { "input": "civilly", "output": "⠉⠊⠧⠊⠇⠇⠽" }, { "input": "civvies", "output": "⠉⠊⠧⠧⠊⠑⠎" }, { "input": "clack", "output": "⠉⠇â â ‰â …" }, { "input": "clacked", "output": "⠉⠇â â ‰â …â «" }, { "input": "clacking", "output": "⠉⠇â â ‰â …â ¬" }, { "input": "clacks", "output": "⠉⠇â â ‰â …â Ž" }, { "input": "clad", "output": "⠉⠇â â ™" }, { "input": "claim", "output": "⠉⠇â â Šâ " }, { "input": "claimant", "output": "⠉⠇â â Šâ â â â ž" }, { "input": "claimants", "output": "⠉⠇â â Šâ â â â žâ Ž" }, { "input": "claimed", "output": "⠉⠇â â Šâ â «" }, { "input": "claiming", "output": "⠉⠇â â Šâ â ¬" }, { "input": "claims", "output": "⠉⠇â â Šâ â Ž" }, { "input": "clairvoyance", "output": "⠉⠇â â Šâ —⠧⠕⠽⠨⠑" }, { "input": "clairvoyant", "output": "⠉⠇â â Šâ —â §â •â ½â â â ž" }, { "input": "clairvoyants", "output": "⠉⠇â â Šâ —â §â •â ½â â â žâ Ž" }, { "input": "clam", "output": "⠉⠇â â " }, { "input": "clambake", "output": "⠉⠇â â â ƒâ â …â ‘" }, { "input": "clambakes", "output": "⠉⠇â â â ƒâ â …â ‘â Ž" }, { "input": "clamber", "output": "⠉⠇â â â ƒâ »" }, { "input": "clambered", "output": "⠉⠇â â â ƒâ »â «" }, { "input": "clambering", "output": "⠉⠇â â â ƒâ »â ¬" }, { "input": "clambers", "output": "⠉⠇â â â ƒâ »â Ž" }, { "input": "clammed", "output": "⠉⠇â â â â «" }, { "input": "clammier", "output": "⠉⠇â â â â Šâ »" }, { "input": "clammiest", "output": "⠉⠇â â â â Šâ ‘â Œ" }, { "input": "clamminess", "output": "⠉⠇â â â â Šâ °â Ž" }, { "input": "clamming", "output": "⠉⠇â â â â ¬" }, { "input": "clammy", "output": "⠉⠇â â â â ½" }, { "input": "clamor", "output": "⠉⠇â â â •â —" }, { "input": "clamored", "output": "⠉⠇â â â •â —â «" }, { "input": "clamoring", "output": "⠉⠇â â â •â —â ¬" }, { "input": "clamorous", "output": "⠉⠇â â â •⠗⠳⠎" }, { "input": "clamors", "output": "⠉⠇â â â •â —â Ž" }, { "input": "clamp", "output": "⠉⠇â â â " }, { "input": "clampdown", "output": "⠉⠇â â â â ™â ªâ " }, { "input": "clampdowns", "output": "⠉⠇â â â â ™â ªâ â Ž" }, { "input": "clamped", "output": "⠉⠇â â â â «" }, { "input": "clamping", "output": "⠉⠇â â â â ¬" }, { "input": "clamps", "output": "⠉⠇â â â â Ž" }, { "input": "clams", "output": "⠉⠇â â â Ž" }, { "input": "clan", "output": "⠉⠇â â " }, { "input": "clandestine", "output": "⠉⠇⠯⠑⠌⠔⠑" }, { "input": "clandestinely", "output": "⠉⠇⠯⠑⠌⠔⠑⠇⠽" }, { "input": "clang", "output": "⠉⠇â â â ›" }, { "input": "clanged", "output": "⠉⠇â â â ›â «" }, { "input": "clanging", "output": "⠉⠇â â â ›â ¬" }, { "input": "clangor", "output": "⠉⠇â â â ›â •â —" }, { "input": "clangs", "output": "⠉⠇â â â ›â Ž" }, { "input": "clank", "output": "⠉⠇â â â …" }, { "input": "clanked", "output": "⠉⠇â â â …â «" }, { "input": "clanking", "output": "⠉⠇â â â …â ¬" }, { "input": "clanks", "output": "⠉⠇â â â …â Ž" }, { "input": "clannish", "output": "⠉⠇â â â â Šâ ©" }, { "input": "clans", "output": "⠉⠇â â â Ž" }, { "input": "clap", "output": "⠉⠇â â " }, { "input": "clapboard", "output": "⠉⠇â â â ƒâ •⠜⠙" }, { "input": "clapboarded", "output": "⠉⠇â â â ƒâ •⠜⠙⠫" }, { "input": "clapboarding", "output": "⠉⠇â â â ƒâ •⠜⠙⠬" }, { "input": "clapboards", "output": "⠉⠇â â â ƒâ •⠜⠙⠎" }, { "input": "clapped", "output": "⠉⠇â â â â «" }, { "input": "clapper", "output": "⠉⠇â â â â »" }, { "input": "clappers", "output": "⠉⠇â â â â »â Ž" }, { "input": "clapping", "output": "⠉⠇â â â â ¬" }, { "input": "claps", "output": "⠉⠇â â â Ž" }, { "input": "claptrap", "output": "⠉⠇â â â žâ —â â " }, { "input": "claret", "output": "⠉⠇⠜⠑⠞" }, { "input": "clarets", "output": "⠉⠇⠜⠑⠞⠎" }, { "input": "clarification", "output": "⠉⠇⠜⠊⠋⠊⠉â â °â " }, { "input": "clarifications", "output": "⠉⠇⠜⠊⠋⠊⠉â â °â â Ž" }, { "input": "clarified", "output": "⠉⠇⠜⠊⠋⠊⠫" }, { "input": "clarifies", "output": "⠉⠇⠜⠊⠋⠊⠑⠎" }, { "input": "clarify", "output": "⠉⠇⠜⠊⠋⠽" }, { "input": "clarifying", "output": "⠉⠇⠜⠊⠋⠽⠬" }, { "input": "clarinet", "output": "⠉⠇⠜⠔⠑⠞" }, { "input": "clarinetist", "output": "⠉⠇⠜⠔⠑⠞⠊⠌" }, { "input": "clarinetists", "output": "⠉⠇⠜⠔⠑⠞⠊⠌⠎" }, { "input": "clarinets", "output": "⠉⠇⠜⠔⠑⠞⠎" }, { "input": "clarinettist", "output": "⠉⠇⠜⠔⠑⠞⠞⠊⠌" }, { "input": "clarinettists", "output": "⠉⠇⠜⠔⠑⠞⠞⠊⠌⠎" }, { "input": "clarion", "output": "⠉⠇⠜⠊⠕â " }, { "input": "clarioned", "output": "⠉⠇⠜⠊⠕â â «" }, { "input": "clarioning", "output": "⠉⠇⠜⠊⠕â â ¬" }, { "input": "clarions", "output": "⠉⠇⠜⠊⠕â â Ž" }, { "input": "clarity", "output": "⠉⠇⠜⠰⠽" }, { "input": "clash", "output": "⠉⠇â â ©" }, { "input": "clashed", "output": "⠉⠇â â ©â «" }, { "input": "clashes", "output": "⠉⠇â â ©â ‘â Ž" }, { "input": "clashing", "output": "⠉⠇â â ©â ¬" }, { "input": "clasp", "output": "⠉⠇â â Žâ " }, { "input": "clasped", "output": "⠉⠇â â Žâ â «" }, { "input": "clasping", "output": "⠉⠇â â Žâ â ¬" }, { "input": "clasps", "output": "⠉⠇â â Žâ â Ž" }, { "input": "class", "output": "⠉⠇â â Žâ Ž" }, { "input": "classed", "output": "⠉⠇â â Žâ Žâ «" }, { "input": "classes", "output": "⠉⠇â â Žâ Žâ ‘â Ž" }, { "input": "classic", "output": "⠉⠇â â Žâ Žâ Šâ ‰" }, { "input": "classical", "output": "⠉⠇â â Žâ Žâ Šâ ‰â â ‡" }, { "input": "classically", "output": "⠉⠇â â Žâ Žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "classicism", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Žâ " }, { "input": "classicist", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Œ" }, { "input": "classicists", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Œâ Ž" }, { "input": "classics", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Ž" }, { "input": "classier", "output": "⠉⠇â â Žâ Žâ Šâ »" }, { "input": "classiest", "output": "⠉⠇â â Žâ Žâ Šâ ‘â Œ" }, { "input": "classifiable", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ â ƒâ ‡â ‘" }, { "input": "classification", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "classifications", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "classified", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "classifieds", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ «â Ž" }, { "input": "classifies", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "classify", "output": "⠉⠇â â Žâ Žâ Šâ ‹â ½" }, { "input": "classifying", "output": "⠉⠇â â Žâ Žâ Šâ ‹â ½â ¬" }, { "input": "classiness", "output": "⠉⠇â â Žâ Žâ Šâ °â Ž" }, { "input": "classing", "output": "⠉⠇â â Žâ Žâ ¬" }, { "input": "classless", "output": "⠉⠇â â Žâ Žâ ¨â Ž" }, { "input": "classmate", "output": "⠉⠇â â Žâ Žâ â â žâ ‘" }, { "input": "classmates", "output": "⠉⠇â â Žâ Žâ â â žâ ‘â Ž" }, { "input": "classroom", "output": "⠉⠇â â Žâ Žâ —â •â •â " }, { "input": "classrooms", "output": "⠉⠇â â Žâ Žâ —â •â •â â Ž" }, { "input": "classy", "output": "⠉⠇â â Žâ Žâ ½" }, { "input": "clatter", "output": "⠉⠇â â žâ žâ »" }, { "input": "clattered", "output": "⠉⠇â â žâ žâ »â «" }, { "input": "clattering", "output": "⠉⠇â â žâ žâ »â ¬" }, { "input": "clatters", "output": "⠉⠇â â žâ žâ »â Ž" }, { "input": "clause", "output": "⠉⠇â â ¥â Žâ ‘" }, { "input": "clauses", "output": "⠉⠇â â ¥â Žâ ‘â Ž" }, { "input": "claustrophobia", "output": "⠉⠇â â ¥â Œâ —â •â â “⠕⠃⠊â " }, { "input": "claustrophobic", "output": "⠉⠇â â ¥â Œâ —â •â â “⠕⠃⠊⠉" }, { "input": "clavichord", "output": "⠉⠇â â §â Šâ ¡â •â —â ™" }, { "input": "clavichords", "output": "⠉⠇â â §â Šâ ¡â •⠗⠙⠎" }, { "input": "clavicle", "output": "⠉⠇â â §â Šâ ‰â ‡â ‘" }, { "input": "clavicles", "output": "⠉⠇â â §â Šâ ‰â ‡â ‘â Ž" }, { "input": "claw", "output": "⠉⠇â â º" }, { "input": "clawed", "output": "⠉⠇â â ºâ «" }, { "input": "clawing", "output": "⠉⠇â â ºâ ¬" }, { "input": "claws", "output": "⠉⠇â â ºâ Ž" }, { "input": "clay", "output": "⠉⠇â â ½" }, { "input": "clayey", "output": "⠉⠇â â ½â ‘â ½" }, { "input": "clayier", "output": "⠉⠇â â ½â Šâ »" }, { "input": "clayiest", "output": "⠉⠇â â ½â Šâ ‘â Œ" }, { "input": "clean", "output": "⠉⠇⠂â " }, { "input": "cleaned", "output": "⠉⠇⠂â â «" }, { "input": "cleaner", "output": "⠉⠇⠂â â »" }, { "input": "cleaners", "output": "⠉⠇⠂â â »â Ž" }, { "input": "cleanest", "output": "⠉⠇⠂â â ‘â Œ" }, { "input": "cleaning", "output": "⠉⠇⠂â â ¬" }, { "input": "cleanings", "output": "⠉⠇⠂â â ¬â Ž" }, { "input": "cleanlier", "output": "⠉⠇⠂â â ‡â Šâ »" }, { "input": "cleanliest", "output": "⠉⠇⠂â â ‡â Šâ ‘â Œ" }, { "input": "cleanliness", "output": "⠉⠇⠂â â ‡â Šâ °â Ž" }, { "input": "cleanly", "output": "⠉⠇⠂â â ‡â ½" }, { "input": "cleanness", "output": "⠉⠇⠂â â °â Ž" }, { "input": "cleans", "output": "⠉⠇⠂â â Ž" }, { "input": "cleanse", "output": "⠉⠇⠂â â Žâ ‘" }, { "input": "cleansed", "output": "⠉⠇⠂â â Žâ «" }, { "input": "cleanser", "output": "⠉⠇⠂â â Žâ »" }, { "input": "cleansers", "output": "⠉⠇⠂â â Žâ »â Ž" }, { "input": "cleanses", "output": "⠉⠇⠂â â Žâ ‘â Ž" }, { "input": "cleansing", "output": "⠉⠇⠂â â Žâ ¬" }, { "input": "cleanup", "output": "⠉⠇⠂â â ¥â " }, { "input": "cleanups", "output": "⠉⠇⠂â â ¥â â Ž" }, { "input": "clear", "output": "⠉⠇⠑⠜" }, { "input": "clearance", "output": "⠉⠇⠑⠜⠨⠑" }, { "input": "clearances", "output": "⠉⠇⠑⠜⠨⠑⠎" }, { "input": "cleared", "output": "⠉⠇⠑⠜⠫" }, { "input": "clearer", "output": "⠉⠇⠑⠜⠻" }, { "input": "clearest", "output": "⠉⠇⠑⠜⠑⠌" }, { "input": "clearing", "output": "⠉⠇⠑⠜⠬" }, { "input": "clearinghouse", "output": "⠉⠇⠑⠜⠬⠓⠳⠎⠑" }, { "input": "clearinghouses", "output": "⠉⠇⠑⠜⠬⠓⠳⠎⠑⠎" }, { "input": "clearings", "output": "⠉⠇⠑⠜⠬⠎" }, { "input": "clearly", "output": "⠉⠇⠑⠜⠇⠽" }, { "input": "clearness", "output": "⠉⠇⠑⠜⠰⠎" }, { "input": "clears", "output": "⠉⠇⠑⠜⠎" }, { "input": "cleat", "output": "⠉⠇⠂⠞" }, { "input": "cleats", "output": "⠉⠇⠂⠞⠎" }, { "input": "cleavage", "output": "⠉⠇⠂⠧â â ›â ‘" }, { "input": "cleavages", "output": "⠉⠇⠂⠧â â ›â ‘â Ž" }, { "input": "cleave", "output": "⠉⠇⠂⠧⠑" }, { "input": "cleaved", "output": "⠉⠇⠂⠧⠫" }, { "input": "cleaver", "output": "⠉⠇⠂⠧⠻" }, { "input": "cleavers", "output": "⠉⠇⠂⠧⠻⠎" }, { "input": "cleaves", "output": "⠉⠇⠂⠧⠑⠎" }, { "input": "cleaving", "output": "⠉⠇⠂⠧⠬" }, { "input": "clef", "output": "⠉⠇⠑⠋" }, { "input": "clefs", "output": "⠉⠇⠑⠋⠎" }, { "input": "cleft", "output": "⠉⠇⠑⠋⠞" }, { "input": "clefts", "output": "⠉⠇⠑⠋⠞⠎" }, { "input": "clematis", "output": "⠉⠇⠑â â â žâ Šâ Ž" }, { "input": "clematises", "output": "⠉⠇⠑â â â žâ Šâ Žâ ‘â Ž" }, { "input": "clemency", "output": "⠉⠇⠑â â ¢â ‰â ½" }, { "input": "clement", "output": "⠉⠇⠑⠰⠞" }, { "input": "clench", "output": "⠉⠇⠢⠡" }, { "input": "clenched", "output": "⠉⠇⠢⠡⠫" }, { "input": "clenches", "output": "⠉⠇⠢⠡⠑⠎" }, { "input": "clenching", "output": "⠉⠇⠢⠡⠬" }, { "input": "clerestories", "output": "⠉⠇⠻⠑⠌⠕⠗⠊⠑⠎" }, { "input": "clerestory", "output": "⠉⠇⠻⠑⠌⠕⠗⠽" }, { "input": "clergies", "output": "⠉⠇⠻⠛⠊⠑⠎" }, { "input": "clergy", "output": "⠉⠇⠻⠛⠽" }, { "input": "clergyman", "output": "⠉⠇⠻⠛⠽â â â " }, { "input": "clergymen", "output": "⠉⠇⠻⠛⠽â â ¢" }, { "input": "clergywoman", "output": "⠉⠇⠻⠛⠽⠺⠕â â â " }, { "input": "clergywomen", "output": "⠉⠇⠻⠛⠽⠺⠕â â ¢" }, { "input": "cleric", "output": "⠉⠇⠻⠊⠉" }, { "input": "clerical", "output": "⠉⠇⠻⠊⠉â â ‡" }, { "input": "clerics", "output": "⠉⠇⠻⠊⠉⠎" }, { "input": "clerk", "output": "⠉⠇⠻⠅" }, { "input": "clerked", "output": "⠉⠇⠻⠅⠫" }, { "input": "clerking", "output": "⠉⠇⠻⠅⠬" }, { "input": "clerks", "output": "⠉⠇⠻⠅⠎" }, { "input": "clever", "output": "⠉⠇â â ‘" }, { "input": "cleverer", "output": "⠉⠇â â ‘â »" }, { "input": "cleverest", "output": "⠉⠇â â ‘â ‘â Œ" }, { "input": "cleverly", "output": "⠉⠇â â ‘⠇⠽" }, { "input": "cleverness", "output": "⠉⠇â â ‘â °â Ž" }, { "input": "clew", "output": "⠉⠇⠑⠺" }, { "input": "clewed", "output": "⠉⠇⠑⠺⠫" }, { "input": "clewing", "output": "⠉⠇⠑⠺⠬" }, { "input": "clews", "output": "⠉⠇⠑⠺⠎" }, { "input": "cliché", "output": "⠉⠇⠊⠡⠠⠘⠻â â ˜â ‰" }, { "input": "clichéd", "output": "⠉⠇⠊⠡⠠⠘⠻â â ˜â ‰â ™" }, { "input": "clichés", "output": "⠉⠇⠊⠡⠠⠘⠻â â ˜â ‰â Ž" }, { "input": "click", "output": "⠉⠇⠊⠉⠅" }, { "input": "clicked", "output": "⠉⠇⠊⠉⠅⠫" }, { "input": "clicking", "output": "⠉⠇⠊⠉⠅⠬" }, { "input": "clicks", "output": "⠉⠇⠊⠉⠅⠎" }, { "input": "client", "output": "⠉⠇⠊⠢⠞" }, { "input": "clients", "output": "⠉⠇⠊⠢⠞⠎" }, { "input": "clientèle", "output": "⠉⠇⠊⠢⠞⠠⠘⠻â â ¡â â £â ‡â ‘" }, { "input": "clientèles", "output": "⠉⠇⠊⠢⠞⠠⠘⠻â â ¡â â £â ‡â ‘â Ž" }, { "input": "cliff", "output": "⠉⠇⠊⠋⠋" }, { "input": "cliffhanger", "output": "⠉⠇⠊⠖⠓â â â ›â »" }, { "input": "cliffhangers", "output": "⠉⠇⠊⠖⠓â â â ›â »â Ž" }, { "input": "cliffs", "output": "⠉⠇⠊⠖⠎" }, { "input": "climactic", "output": "⠉⠇⠊â â â ‰â žâ Šâ ‰" }, { "input": "climate", "output": "⠉⠇⠊â â â žâ ‘" }, { "input": "climates", "output": "⠉⠇⠊â â â žâ ‘â Ž" }, { "input": "climatic", "output": "⠉⠇⠊â â â žâ Šâ ‰" }, { "input": "climax", "output": "⠉⠇⠊â â â ­" }, { "input": "climaxed", "output": "⠉⠇⠊â â â ­â «" }, { "input": "climaxes", "output": "⠉⠇⠊â â â ­â ‘â Ž" }, { "input": "climaxing", "output": "⠉⠇⠊â â â ­â ¬" }, { "input": "climb", "output": "⠉⠇⠊â â ƒ" }, { "input": "climbed", "output": "⠉⠇⠊â â ƒâ «" }, { "input": "climber", "output": "⠉⠇⠊â â ƒâ »" }, { "input": "climbers", "output": "⠉⠇⠊â â ƒâ »â Ž" }, { "input": "climbing", "output": "⠉⠇⠊â â ƒâ ¬" }, { "input": "climbs", "output": "⠉⠇⠊â â ƒâ Ž" }, { "input": "clime", "output": "⠉⠇⠊â â ‘" }, { "input": "climes", "output": "⠉⠇⠊â â ‘â Ž" }, { "input": "clinch", "output": "⠉⠇⠔⠡" }, { "input": "clinched", "output": "⠉⠇⠔⠡⠫" }, { "input": "clincher", "output": "⠉⠇⠔⠡⠻" }, { "input": "clinchers", "output": "⠉⠇⠔⠡⠻⠎" }, { "input": "clinches", "output": "⠉⠇⠔⠡⠑⠎" }, { "input": "clinching", "output": "⠉⠇⠔⠡⠬" }, { "input": "cling", "output": "⠉⠇⠬" }, { "input": "clingier", "output": "⠉⠇⠬⠊⠻" }, { "input": "clingiest", "output": "⠉⠇⠬⠊⠑⠌" }, { "input": "clinging", "output": "⠉⠇⠬⠬" }, { "input": "clings", "output": "⠉⠇⠬⠎" }, { "input": "clingy", "output": "⠉⠇⠬⠽" }, { "input": "clinic", "output": "⠉⠇⠔⠊⠉" }, { "input": "clinical", "output": "⠉⠇⠔⠊⠉â â ‡" }, { "input": "clinically", "output": "⠉⠇⠔⠊⠉â â ‡â ‡â ½" }, { "input": "clinician", "output": "⠉⠇⠔⠊⠉⠊â â " }, { "input": "clinicians", "output": "⠉⠇⠔⠊⠉⠊â â â Ž" }, { "input": "clinics", "output": "⠉⠇⠔⠊⠉⠎" }, { "input": "clink", "output": "⠉⠇⠔⠅" }, { "input": "clinked", "output": "⠉⠇⠔⠅⠫" }, { "input": "clinker", "output": "⠉⠇⠔⠅⠻" }, { "input": "clinkers", "output": "⠉⠇⠔⠅⠻⠎" }, { "input": "clinking", "output": "⠉⠇⠔⠅⠬" }, { "input": "clinks", "output": "⠉⠇⠔⠅⠎" }, { "input": "clip", "output": "⠉⠇⠊â " }, { "input": "clipboard", "output": "⠉⠇⠊â â ƒâ •⠜⠙" }, { "input": "clipboards", "output": "⠉⠇⠊â â ƒâ •⠜⠙⠎" }, { "input": "clipped", "output": "⠉⠇⠊â â â «" }, { "input": "clipper", "output": "⠉⠇⠊â â â »" }, { "input": "clippers", "output": "⠉⠇⠊â â â »â Ž" }, { "input": "clipping", "output": "⠉⠇⠊â â â ¬" }, { "input": "clippings", "output": "⠉⠇⠊â â â ¬â Ž" }, { "input": "clips", "output": "⠉⠇⠊â â Ž" }, { "input": "clipt", "output": "⠉⠇⠊â â ž" }, { "input": "clique", "output": "⠉⠇⠊⠟⠥⠑" }, { "input": "cliques", "output": "⠉⠇⠊⠟⠥⠑⠎" }, { "input": "cliquish", "output": "⠉⠇⠊⠟⠥⠊⠩" }, { "input": "clitoral", "output": "⠉⠇⠊⠞⠕⠗â â ‡" }, { "input": "clitoris", "output": "⠉⠇⠊⠞⠕⠗⠊⠎" }, { "input": "clitorises", "output": "⠉⠇⠊⠞⠕⠗⠊⠎⠑⠎" }, { "input": "cloak", "output": "⠉⠇⠕â â …" }, { "input": "cloaked", "output": "⠉⠇⠕â â …â «" }, { "input": "cloaking", "output": "⠉⠇⠕â â …â ¬" }, { "input": "cloakroom", "output": "⠉⠇⠕â â …â —â •â •â " }, { "input": "cloakrooms", "output": "⠉⠇⠕â â …â —â •â •â â Ž" }, { "input": "cloaks", "output": "⠉⠇⠕â â …â Ž" }, { "input": "clobber", "output": "⠉⠇⠕⠆⠻" }, { "input": "clobbered", "output": "⠉⠇⠕⠆⠻⠫" }, { "input": "clobbering", "output": "⠉⠇⠕⠆⠻⠬" }, { "input": "clobbers", "output": "⠉⠇⠕⠆⠻⠎" }, { "input": "cloche", "output": "⠉⠇⠕⠡⠑" }, { "input": "cloches", "output": "⠉⠇⠕⠡⠑⠎" }, { "input": "clock", "output": "⠉⠇⠕⠉⠅" }, { "input": "clocked", "output": "⠉⠇⠕⠉⠅⠫" }, { "input": "clocking", "output": "⠉⠇⠕⠉⠅⠬" }, { "input": "clocks", "output": "⠉⠇⠕⠉⠅⠎" }, { "input": "clockwise", "output": "⠉⠇⠕⠉⠅⠺⠊⠎⠑" }, { "input": "clockwork", "output": "⠉⠇⠕⠉⠅â â º" }, { "input": "clockworks", "output": "⠉⠇⠕⠉⠅â â ºâ Ž" }, { "input": "clod", "output": "⠉⠇⠕⠙" }, { "input": "clodhopper", "output": "⠉⠇⠕⠙⠓⠕â â â »" }, { "input": "clodhoppers", "output": "⠉⠇⠕⠙⠓⠕â â â »â Ž" }, { "input": "clods", "output": "⠉⠇⠕⠙⠎" }, { "input": "clog", "output": "⠉⠇⠕⠛" }, { "input": "clogged", "output": "⠉⠇⠕⠶⠫" }, { "input": "clogging", "output": "⠉⠇⠕⠶⠬" }, { "input": "clogs", "output": "⠉⠇⠕⠛⠎" }, { "input": "cloister", "output": "⠉⠇⠕⠊⠌⠻" }, { "input": "cloistered", "output": "⠉⠇⠕⠊⠌⠻⠫" }, { "input": "cloistering", "output": "⠉⠇⠕⠊⠌⠻⠬" }, { "input": "cloisters", "output": "⠉⠇⠕⠊⠌⠻⠎" }, { "input": "clomp", "output": "⠉⠇⠕â â " }, { "input": "clomped", "output": "⠉⠇⠕â â â «" }, { "input": "clomping", "output": "⠉⠇⠕â â â ¬" }, { "input": "clomps", "output": "⠉⠇⠕â â â Ž" }, { "input": "clone", "output": "⠉⠇â â •" }, { "input": "cloned", "output": "⠉⠇⠕â â «" }, { "input": "clones", "output": "⠉⠇â â •â Ž" }, { "input": "cloning", "output": "⠉⠇⠕â â ¬" }, { "input": "clop", "output": "⠉⠇⠕â " }, { "input": "clopped", "output": "⠉⠇⠕â â â «" }, { "input": "clopping", "output": "⠉⠇⠕â â â ¬" }, { "input": "clops", "output": "⠉⠇⠕â â Ž" }, { "input": "close", "output": "⠉⠇⠕⠎⠑" }, { "input": "closed", "output": "⠉⠇⠕⠎⠫" }, { "input": "closefisted", "output": "⠉⠇⠕⠎⠑⠋⠊⠌⠫" }, { "input": "closely", "output": "⠉⠇⠕⠎⠑⠇⠽" }, { "input": "closemouthed", "output": "⠉⠇⠕⠎⠑â â ³â ®â ™" }, { "input": "closeness", "output": "⠉⠇⠕⠎⠑⠰⠎" }, { "input": "closeout", "output": "⠉⠇⠕⠎⠑⠳⠞" }, { "input": "closeouts", "output": "⠉⠇⠕⠎⠑⠳⠞⠎" }, { "input": "closer", "output": "⠉⠇⠕⠎⠻" }, { "input": "closes", "output": "⠉⠇⠕⠎⠑⠎" }, { "input": "closest", "output": "⠉⠇⠕⠎⠑⠌" }, { "input": "closet", "output": "⠉⠇⠕⠎⠑⠞" }, { "input": "closeted", "output": "⠉⠇⠕⠎⠑⠞⠫" }, { "input": "closeting", "output": "⠉⠇⠕⠎⠑⠞⠬" }, { "input": "closets", "output": "⠉⠇⠕⠎⠑⠞⠎" }, { "input": "closing", "output": "⠉⠇⠕⠎⠬" }, { "input": "closure", "output": "⠉⠇⠕⠎⠥⠗⠑" }, { "input": "closures", "output": "⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "clot", "output": "⠉⠇⠕⠞" }, { "input": "cloth", "output": "⠉⠇⠕⠹" }, { "input": "clothe", "output": "⠉⠇⠕⠮" }, { "input": "clothed", "output": "⠉⠇⠕⠮⠙" }, { "input": "clothes", "output": "⠉⠇⠕⠮⠎" }, { "input": "clothesline", "output": "⠉⠇⠕⠮⠎⠇⠔⠑" }, { "input": "clotheslines", "output": "⠉⠇⠕⠮⠎⠇⠔⠑⠎" }, { "input": "clothespin", "output": "⠉⠇⠕⠮⠎â â ”" }, { "input": "clothespins", "output": "⠉⠇⠕⠮⠎â â ”â Ž" }, { "input": "clothier", "output": "⠉⠇⠕⠹⠊⠻" }, { "input": "clothiers", "output": "⠉⠇⠕⠹⠊⠻⠎" }, { "input": "clothing", "output": "⠉⠇⠕⠹⠬" }, { "input": "cloths", "output": "⠉⠇⠕⠹⠎" }, { "input": "clots", "output": "⠉⠇⠕⠞⠎" }, { "input": "clotted", "output": "⠉⠇⠕⠞⠞⠫" }, { "input": "clotting", "output": "⠉⠇⠕⠞⠞⠬" }, { "input": "cloture", "output": "⠉⠇⠕⠞⠥⠗⠑" }, { "input": "clotures", "output": "⠉⠇⠕⠞⠥⠗⠑⠎" }, { "input": "cloud", "output": "⠉⠇⠳⠙" }, { "input": "cloudburst", "output": "⠉⠇⠳⠙⠃⠥⠗⠌" }, { "input": "cloudbursts", "output": "⠉⠇⠳⠙⠃⠥⠗⠌⠎" }, { "input": "clouded", "output": "⠉⠇⠳⠙⠫" }, { "input": "cloudier", "output": "⠉⠇⠳⠙⠊⠻" }, { "input": "cloudiest", "output": "⠉⠇⠳⠙⠊⠑⠌" }, { "input": "cloudiness", "output": "⠉⠇⠳⠙⠊⠰⠎" }, { "input": "clouding", "output": "⠉⠇⠳⠙⠬" }, { "input": "cloudless", "output": "⠉⠇⠳⠙⠨⠎" }, { "input": "clouds", "output": "⠉⠇⠳⠙⠎" }, { "input": "cloudy", "output": "⠉⠇⠳⠙⠽" }, { "input": "clout", "output": "⠉⠇⠳⠞" }, { "input": "clouted", "output": "⠉⠇⠳⠞⠫" }, { "input": "clouting", "output": "⠉⠇⠳⠞⠬" }, { "input": "clouts", "output": "⠉⠇⠳⠞⠎" }, { "input": "clove", "output": "⠉⠇⠕⠧⠑" }, { "input": "cloven", "output": "⠉⠇⠕⠧⠢" }, { "input": "clover", "output": "⠉⠇⠕⠧⠻" }, { "input": "cloverleaf", "output": "⠉⠇⠕⠧⠻⠇⠂⠋" }, { "input": "cloverleafs", "output": "⠉⠇⠕⠧⠻⠇⠂⠋⠎" }, { "input": "cloverleaves", "output": "⠉⠇⠕⠧⠻⠇⠂⠧⠑⠎" }, { "input": "clovers", "output": "⠉⠇⠕⠧⠻⠎" }, { "input": "cloves", "output": "⠉⠇⠕⠧⠑⠎" }, { "input": "clown", "output": "⠉⠇⠪â " }, { "input": "clowned", "output": "⠉⠇⠪â â «" }, { "input": "clowning", "output": "⠉⠇⠪â â ¬" }, { "input": "clownish", "output": "⠉⠇⠪â â Šâ ©" }, { "input": "clownishly", "output": "⠉⠇⠪â â Šâ ©â ‡â ½" }, { "input": "clownishness", "output": "⠉⠇⠪â â Šâ ©â °â Ž" }, { "input": "clowns", "output": "⠉⠇⠪â â Ž" }, { "input": "cloy", "output": "⠉⠇⠕⠽" }, { "input": "cloyed", "output": "⠉⠇⠕⠽⠫" }, { "input": "cloying", "output": "⠉⠇⠕⠽⠬" }, { "input": "cloys", "output": "⠉⠇⠕⠽⠎" }, { "input": "club", "output": "⠉⠇⠥⠃" }, { "input": "clubbed", "output": "⠉⠇⠥⠆⠫" }, { "input": "clubbing", "output": "⠉⠇⠥⠆⠬" }, { "input": "clubfeet", "output": "⠉⠇⠥⠃⠋⠑⠑⠞" }, { "input": "clubfoot", "output": "⠉⠇⠥⠃⠋⠕⠕⠞" }, { "input": "clubhouse", "output": "⠉⠇⠥⠃⠓⠳⠎⠑" }, { "input": "clubhouses", "output": "⠉⠇⠥⠃⠓⠳⠎⠑⠎" }, { "input": "clubs", "output": "⠉⠇⠥⠃⠎" }, { "input": "cluck", "output": "⠉⠇⠥⠉⠅" }, { "input": "clucked", "output": "⠉⠇⠥⠉⠅⠫" }, { "input": "clucking", "output": "⠉⠇⠥⠉⠅⠬" }, { "input": "clucks", "output": "⠉⠇⠥⠉⠅⠎" }, { "input": "clue", "output": "⠉⠇⠥⠑" }, { "input": "clued", "output": "⠉⠇⠥⠫" }, { "input": "clueing", "output": "⠉⠇⠥⠑⠬" }, { "input": "clueless", "output": "⠉⠇⠥⠑⠨⠎" }, { "input": "clues", "output": "⠉⠇⠥⠑⠎" }, { "input": "cluing", "output": "⠉⠇⠥⠬" }, { "input": "clump", "output": "⠉⠇⠥â â " }, { "input": "clumped", "output": "⠉⠇⠥â â â «" }, { "input": "clumping", "output": "⠉⠇⠥â â â ¬" }, { "input": "clumps", "output": "⠉⠇⠥â â â Ž" }, { "input": "clumsier", "output": "⠉⠇⠥â â Žâ Šâ »" }, { "input": "clumsiest", "output": "⠉⠇⠥â â Žâ Šâ ‘â Œ" }, { "input": "clumsily", "output": "⠉⠇⠥â â Žâ Šâ ‡â ½" }, { "input": "clumsiness", "output": "⠉⠇⠥â â Žâ Šâ °â Ž" }, { "input": "clumsy", "output": "⠉⠇⠥â â Žâ ½" }, { "input": "clung", "output": "⠉⠇⠥â â ›" }, { "input": "clunk", "output": "⠉⠇⠥â â …" }, { "input": "clunked", "output": "⠉⠇⠥â â …â «" }, { "input": "clunker", "output": "⠉⠇⠥â â …â »" }, { "input": "clunkers", "output": "⠉⠇⠥â â …⠻⠎" }, { "input": "clunkier", "output": "⠉⠇⠥â â …â Šâ »" }, { "input": "clunkiest", "output": "⠉⠇⠥â â …â Šâ ‘â Œ" }, { "input": "clunking", "output": "⠉⠇⠥â â …â ¬" }, { "input": "clunks", "output": "⠉⠇⠥â â …â Ž" }, { "input": "clunky", "output": "⠉⠇⠥â â …â ½" }, { "input": "cluster", "output": "⠉⠇⠥⠌⠻" }, { "input": "clustered", "output": "⠉⠇⠥⠌⠻⠫" }, { "input": "clustering", "output": "⠉⠇⠥⠌⠻⠬" }, { "input": "clusters", "output": "⠉⠇⠥⠌⠻⠎" }, { "input": "clutch", "output": "⠉⠇⠥⠞⠡" }, { "input": "clutched", "output": "⠉⠇⠥⠞⠡⠫" }, { "input": "clutches", "output": "⠉⠇⠥⠞⠡⠑⠎" }, { "input": "clutching", "output": "⠉⠇⠥⠞⠡⠬" }, { "input": "clutter", "output": "⠉⠇⠥⠞⠞⠻" }, { "input": "cluttered", "output": "⠉⠇⠥⠞⠞⠻⠫" }, { "input": "cluttering", "output": "⠉⠇⠥⠞⠞⠻⠬" }, { "input": "clutters", "output": "⠉⠇⠥⠞⠞⠻⠎" }, { "input": "coach", "output": "⠉⠕â â ¡" }, { "input": "coached", "output": "⠉⠕â â ¡â «" }, { "input": "coaches", "output": "⠉⠕â â ¡â ‘â Ž" }, { "input": "coaching", "output": "⠉⠕â â ¡â ¬" }, { "input": "coachman", "output": "⠉⠕â â ¡â â â " }, { "input": "coachmen", "output": "⠉⠕â â ¡â â ¢" }, { "input": "coagulant", "output": "⠉⠕â â ›â ¥â ‡â â â ž" }, { "input": "coagulants", "output": "⠉⠕â â ›â ¥â ‡â â â žâ Ž" }, { "input": "coagulate", "output": "⠉⠕â â ›â ¥â ‡â â žâ ‘" }, { "input": "coagulated", "output": "⠉⠕â â ›â ¥â ‡â â žâ «" }, { "input": "coagulates", "output": "⠉⠕â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "coagulating", "output": "⠉⠕â â ›â ¥â ‡â â žâ ¬" }, { "input": "coagulation", "output": "⠉⠕â â ›â ¥â ‡â â °â " }, { "input": "coal", "output": "⠉⠕â â ‡" }, { "input": "coaled", "output": "⠉⠕â â ‡â «" }, { "input": "coalesce", "output": "⠉⠕â â ‡â ‘⠎⠉⠑" }, { "input": "coalesced", "output": "⠉⠕â â ‡â ‘⠎⠉⠫" }, { "input": "coalescence", "output": "⠉⠕â â ‡â ‘⠎⠉⠰⠑" }, { "input": "coalesces", "output": "⠉⠕â â ‡â ‘⠎⠉⠑⠎" }, { "input": "coalescing", "output": "⠉⠕â â ‡â ‘⠎⠉⠬" }, { "input": "coaling", "output": "⠉⠕â â ‡â ¬" }, { "input": "coalition", "output": "⠉⠕â â ‡â Šâ °â " }, { "input": "coalitions", "output": "⠉⠕â â ‡â Šâ °â â Ž" }, { "input": "coals", "output": "⠉⠕â â ‡â Ž" }, { "input": "coarse", "output": "⠉⠕⠜⠎⠑" }, { "input": "coarsely", "output": "⠉⠕⠜⠎⠑⠇⠽" }, { "input": "coarsen", "output": "⠉⠕⠜⠎⠢" }, { "input": "coarsened", "output": "⠉⠕⠜⠎⠢⠫" }, { "input": "coarseness", "output": "⠉⠕⠜⠎⠑⠰⠎" }, { "input": "coarsening", "output": "⠉⠕⠜⠎⠢⠬" }, { "input": "coarsens", "output": "⠉⠕⠜⠎⠢⠎" }, { "input": "coarser", "output": "⠉⠕⠜⠎⠻" }, { "input": "coarsest", "output": "⠉⠕⠜⠎⠑⠌" }, { "input": "coast", "output": "⠉⠕â â Œ" }, { "input": "coastal", "output": "⠉⠕â â Œâ â ‡" }, { "input": "coasted", "output": "⠉⠕â â Œâ «" }, { "input": "coaster", "output": "⠉⠕â â Œâ »" }, { "input": "coasters", "output": "⠉⠕â â Œâ »â Ž" }, { "input": "coasting", "output": "⠉⠕â â Œâ ¬" }, { "input": "coastline", "output": "⠉⠕â â Œâ ‡â ”â ‘" }, { "input": "coastlines", "output": "⠉⠕â â Œâ ‡â ”â ‘â Ž" }, { "input": "coasts", "output": "⠉⠕â â Œâ Ž" }, { "input": "coat", "output": "⠉⠕â â ž" }, { "input": "coated", "output": "⠉⠕â â žâ «" }, { "input": "coating", "output": "⠉⠕â â žâ ¬" }, { "input": "coatings", "output": "⠉⠕â â žâ ¬â Ž" }, { "input": "coats", "output": "⠉⠕â â žâ Ž" }, { "input": "coauthor", "output": "⠉⠕â â ¥â ¹â •â —" }, { "input": "coauthored", "output": "⠉⠕â â ¥â ¹â •â —â «" }, { "input": "coauthoring", "output": "⠉⠕â â ¥â ¹â •â —â ¬" }, { "input": "coauthors", "output": "⠉⠕â â ¥â ¹â •â —â Ž" }, { "input": "coax", "output": "⠉⠕â â ­" }, { "input": "coaxed", "output": "⠉⠕â â ­â «" }, { "input": "coaxes", "output": "⠉⠕â â ­â ‘â Ž" }, { "input": "coaxing", "output": "⠉⠕â â ­â ¬" }, { "input": "cob", "output": "⠉⠕⠃" }, { "input": "cobalt", "output": "⠉⠕⠃â â ‡â ž" }, { "input": "cobble", "output": "⠉⠕⠆⠇⠑" }, { "input": "cobbled", "output": "⠉⠕⠆⠇⠫" }, { "input": "cobbler", "output": "⠉⠕⠆⠇⠻" }, { "input": "cobblers", "output": "⠉⠕⠆⠇⠻⠎" }, { "input": "cobbles", "output": "⠉⠕⠆⠇⠑⠎" }, { "input": "cobblestone", "output": "⠉⠕⠆⠇⠑⠌â â •" }, { "input": "cobblestones", "output": "⠉⠕⠆⠇⠑⠌â â •â Ž" }, { "input": "cobbling", "output": "⠉⠕⠆⠇⠬" }, { "input": "cobra", "output": "⠉⠕⠃⠗â " }, { "input": "cobras", "output": "⠉⠕⠃⠗â â Ž" }, { "input": "cobs", "output": "⠉⠕⠃⠎" }, { "input": "cobweb", "output": "⠉⠕⠃⠺⠑⠃" }, { "input": "cobwebs", "output": "⠉⠕⠃⠺⠑⠃⠎" }, { "input": "cocaine", "output": "⠉⠕⠉â â ”â ‘" }, { "input": "cocci", "output": "⠉⠕⠒⠊" }, { "input": "coccis", "output": "⠉⠕⠒⠊⠎" }, { "input": "coccus", "output": "⠉⠕⠒⠥⠎" }, { "input": "coccyges", "output": "⠉⠕⠒⠽⠛⠑⠎" }, { "input": "coccyx", "output": "⠉⠕⠒⠽⠭" }, { "input": "coccyxes", "output": "⠉⠕⠒⠽⠭⠑⠎" }, { "input": "cochlea", "output": "⠉⠕⠡⠇⠑â " }, { "input": "cochleae", "output": "⠉⠕⠡⠇⠂⠑" }, { "input": "cochleas", "output": "⠉⠕⠡⠇⠂⠎" }, { "input": "cock", "output": "⠉⠕⠉⠅" }, { "input": "cockade", "output": "⠉⠕⠉⠅â â ™â ‘" }, { "input": "cockades", "output": "⠉⠕⠉⠅â â ™â ‘â Ž" }, { "input": "cockamamie", "output": "⠉⠕⠉⠅â â â â â Šâ ‘" }, { "input": "cockatoo", "output": "⠉⠕⠉⠅â â žâ •â •" }, { "input": "cockatoos", "output": "⠉⠕⠉⠅â â žâ •â •â Ž" }, { "input": "cocked", "output": "⠉⠕⠉⠅⠫" }, { "input": "cockerel", "output": "⠉⠕⠉⠅⠻⠑⠇" }, { "input": "cockerels", "output": "⠉⠕⠉⠅⠻⠑⠇⠎" }, { "input": "cockeyed", "output": "⠉⠕⠉⠅⠑⠽⠫" }, { "input": "cockfight", "output": "⠉⠕⠉⠅⠋⠊⠣⠞" }, { "input": "cockfights", "output": "⠉⠕⠉⠅⠋⠊⠣⠞⠎" }, { "input": "cockier", "output": "⠉⠕⠉⠅⠊⠻" }, { "input": "cockiest", "output": "⠉⠕⠉⠅⠊⠑⠌" }, { "input": "cockily", "output": "⠉⠕⠉⠅⠊⠇⠽" }, { "input": "cockiness", "output": "⠉⠕⠉⠅⠊⠰⠎" }, { "input": "cocking", "output": "⠉⠕⠉⠅⠬" }, { "input": "cockle", "output": "⠉⠕⠉⠅⠇⠑" }, { "input": "cockles", "output": "⠉⠕⠉⠅⠇⠑⠎" }, { "input": "cockleshell", "output": "⠉⠕⠉⠅⠇⠑⠩⠑⠇⠇" }, { "input": "cockleshells", "output": "⠉⠕⠉⠅⠇⠑⠩⠑⠇⠇⠎" }, { "input": "cockney", "output": "⠉⠕⠉⠅â â ‘â ½" }, { "input": "cockneys", "output": "⠉⠕⠉⠅â â ‘⠽⠎" }, { "input": "cockpit", "output": "⠉⠕⠉⠅â â Šâ ž" }, { "input": "cockpits", "output": "⠉⠕⠉⠅â â Šâ žâ Ž" }, { "input": "cockroach", "output": "⠉⠕⠉⠅⠗⠕â â ¡" }, { "input": "cockroaches", "output": "⠉⠕⠉⠅⠗⠕â â ¡â ‘â Ž" }, { "input": "cocks", "output": "⠉⠕⠉⠅⠎" }, { "input": "cockscomb", "output": "⠉⠕⠉⠅⠎⠉⠕â â ƒ" }, { "input": "cockscombs", "output": "⠉⠕⠉⠅⠎⠉⠕â â ƒâ Ž" }, { "input": "cocksucker", "output": "⠉⠕⠉⠅⠎⠥⠉⠅⠻" }, { "input": "cocksuckers", "output": "⠉⠕⠉⠅⠎⠥⠉⠅⠻⠎" }, { "input": "cocksure", "output": "⠉⠕⠉⠅⠎⠥⠗⠑" }, { "input": "cocktail", "output": "⠉⠕⠉⠅⠞â â Šâ ‡" }, { "input": "cocktails", "output": "⠉⠕⠉⠅⠞â â Šâ ‡â Ž" }, { "input": "cocky", "output": "⠉⠕⠉⠅⠽" }, { "input": "cocoa", "output": "⠉⠕⠉⠕â " }, { "input": "cocoanut", "output": "⠉⠕⠉⠕â â â ¥â ž" }, { "input": "cocoanuts", "output": "⠉⠕⠉⠕â â â ¥â žâ Ž" }, { "input": "cocoas", "output": "⠉⠕⠉⠕â â Ž" }, { "input": "coconut", "output": "⠉⠕⠉⠕â â ¥â ž" }, { "input": "coconuts", "output": "⠉⠕⠉⠕â â ¥â žâ Ž" }, { "input": "cocoon", "output": "⠉⠕⠉⠕⠕â " }, { "input": "cocooned", "output": "⠉⠕⠉⠕⠕â â «" }, { "input": "cocooning", "output": "⠉⠕⠉⠕⠕â â ¬" }, { "input": "cocoons", "output": "⠉⠕⠉⠕⠕â â Ž" }, { "input": "cod", "output": "⠉⠕⠙" }, { "input": "coda", "output": "⠉⠕⠙â " }, { "input": "codas", "output": "⠉⠕⠙â â Ž" }, { "input": "codded", "output": "⠉⠕⠙⠙⠫" }, { "input": "codding", "output": "⠉⠕⠙⠙⠬" }, { "input": "coddle", "output": "⠉⠕⠙⠙⠇⠑" }, { "input": "coddled", "output": "⠉⠕⠙⠙⠇⠫" }, { "input": "coddles", "output": "⠉⠕⠙⠙⠇⠑⠎" }, { "input": "coddling", "output": "⠉⠕⠙⠙⠇⠬" }, { "input": "code", "output": "⠉⠕⠙⠑" }, { "input": "coded", "output": "⠉⠕⠙⠫" }, { "input": "codeine", "output": "⠉⠕⠙⠑⠔⠑" }, { "input": "codependency", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â ‰â ½" }, { "input": "codependent", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â ž" }, { "input": "codependents", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â žâ Ž" }, { "input": "codes", "output": "⠉⠕⠙⠑⠎" }, { "input": "codex", "output": "⠉⠕⠙⠑⠭" }, { "input": "codfish", "output": "⠉⠕⠙⠋⠊⠩" }, { "input": "codfishes", "output": "⠉⠕⠙⠋⠊⠩⠑⠎" }, { "input": "codger", "output": "⠉⠕⠙⠛⠻" }, { "input": "codgers", "output": "⠉⠕⠙⠛⠻⠎" }, { "input": "codices", "output": "⠉⠕⠙⠊⠉⠑⠎" }, { "input": "codicil", "output": "⠉⠕⠙⠊⠉⠊⠇" }, { "input": "codicils", "output": "⠉⠕⠙⠊⠉⠊⠇⠎" }, { "input": "codification", "output": "⠉⠕⠙⠊⠋⠊⠉â â °â " }, { "input": "codifications", "output": "⠉⠕⠙⠊⠋⠊⠉â â °â â Ž" }, { "input": "codified", "output": "⠉⠕⠙⠊⠋⠊⠫" }, { "input": "codifies", "output": "⠉⠕⠙⠊⠋⠊⠑⠎" }, { "input": "codify", "output": "⠉⠕⠙⠊⠋⠽" }, { "input": "codifying", "output": "⠉⠕⠙⠊⠋⠽⠬" }, { "input": "coding", "output": "⠉⠕⠙⠬" }, { "input": "cods", "output": "⠉⠕⠙⠎" }, { "input": "coed", "output": "⠉⠕⠫" }, { "input": "coeds", "output": "⠉⠕⠫⠎" }, { "input": "coeducation", "output": "⠉⠕⠫⠥⠉â â °â " }, { "input": "coeducational", "output": "⠉⠕⠫⠥⠉â â °â â â ‡" }, { "input": "coefficient", "output": "⠉⠕⠑⠖⠊⠉⠊⠢⠞" }, { "input": "coefficients", "output": "⠉⠕⠑⠖⠊⠉⠊⠢⠞⠎" }, { "input": "coequal", "output": "⠉⠕⠑⠟⠥â â ‡" }, { "input": "coequals", "output": "⠉⠕⠑⠟⠥â â ‡â Ž" }, { "input": "coerce", "output": "⠉⠕⠻⠉⠑" }, { "input": "coerced", "output": "⠉⠕⠻⠉⠫" }, { "input": "coerces", "output": "⠉⠕⠻⠉⠑⠎" }, { "input": "coercing", "output": "⠉⠕⠻⠉⠬" }, { "input": "coercion", "output": "⠉⠕⠻⠉⠊⠕â " }, { "input": "coercive", "output": "⠉⠕⠻⠉⠊⠧⠑" }, { "input": "coeval", "output": "⠉⠕⠑⠧â â ‡" }, { "input": "coevals", "output": "⠉⠕⠑⠧â â ‡â Ž" }, { "input": "coexist", "output": "⠉⠕⠑⠭⠊⠌" }, { "input": "coexisted", "output": "⠉⠕⠑⠭⠊⠌⠫" }, { "input": "coexistence", "output": "⠉⠕⠑⠭⠊⠌⠰⠑" }, { "input": "coexisting", "output": "⠉⠕⠑⠭⠊⠌⠬" }, { "input": "coexists", "output": "⠉⠕⠑⠭⠊⠌⠎" }, { "input": "coffee", "output": "⠉⠷⠋⠑⠑" }, { "input": "coffeecake", "output": "⠉⠷⠋⠑⠑⠉â â …â ‘" }, { "input": "coffeecakes", "output": "⠉⠷⠋⠑⠑⠉â â …â ‘â Ž" }, { "input": "coffeehouse", "output": "⠉⠷⠋⠑⠑⠓⠳⠎⠑" }, { "input": "coffeehouses", "output": "⠉⠷⠋⠑⠑⠓⠳⠎⠑⠎" }, { "input": "coffeepot", "output": "⠉⠷⠋⠑⠑â â •â ž" }, { "input": "coffeepots", "output": "⠉⠷⠋⠑⠑â â •â žâ Ž" }, { "input": "coffees", "output": "⠉⠷⠋⠑⠑⠎" }, { "input": "coffer", "output": "⠉⠷⠋⠻" }, { "input": "coffers", "output": "⠉⠷⠋⠻⠎" }, { "input": "coffin", "output": "⠉⠷⠋⠔" }, { "input": "coffined", "output": "⠉⠷⠋⠔⠫" }, { "input": "coffining", "output": "⠉⠷⠋⠔⠬" }, { "input": "coffins", "output": "⠉⠷⠋⠔⠎" }, { "input": "cog", "output": "⠉⠕⠛" }, { "input": "cogency", "output": "⠉⠕⠛⠢⠉⠽" }, { "input": "cogent", "output": "⠉⠕⠛⠢⠞" }, { "input": "cogently", "output": "⠉⠕⠛⠢⠞⠇⠽" }, { "input": "cogitate", "output": "⠉⠕⠛⠊⠞â â žâ ‘" }, { "input": "cogitated", "output": "⠉⠕⠛⠊⠞â â žâ «" }, { "input": "cogitates", "output": "⠉⠕⠛⠊⠞â â žâ ‘â Ž" }, { "input": "cogitating", "output": "⠉⠕⠛⠊⠞â â žâ ¬" }, { "input": "cogitation", "output": "⠉⠕⠛⠊⠞â â °â " }, { "input": "cognac", "output": "⠉⠕⠛â â â ‰" }, { "input": "cognacs", "output": "⠉⠕⠛â â â ‰â Ž" }, { "input": "cognate", "output": "⠉⠕⠛â â â žâ ‘" }, { "input": "cognates", "output": "⠉⠕⠛â â â žâ ‘â Ž" }, { "input": "cognition", "output": "⠉⠕⠛â â Šâ °â " }, { "input": "cognitive", "output": "⠉⠕⠛â â Šâ žâ Šâ §â ‘" }, { "input": "cognizance", "output": "⠉⠕⠛â â Šâ µâ ¨â ‘" }, { "input": "cognizant", "output": "⠉⠕⠛â â Šâ µâ â â ž" }, { "input": "cognomen", "output": "⠉⠕⠛â â •â â ¢" }, { "input": "cognomens", "output": "⠉⠕⠛â â •â â ¢â Ž" }, { "input": "cognomina", "output": "⠉⠕⠛â â •â â ”â " }, { "input": "cogs", "output": "⠉⠕⠛⠎" }, { "input": "cogwheel", "output": "⠉⠕⠛⠱⠑⠑⠇" }, { "input": "cogwheels", "output": "⠉⠕⠛⠱⠑⠑⠇⠎" }, { "input": "cohabit", "output": "⠉⠕⠓â â ƒâ Šâ ž" }, { "input": "cohabitation", "output": "⠉⠕⠓â â ƒâ Šâ žâ â °â " }, { "input": "cohabited", "output": "⠉⠕⠓â â ƒâ Šâ žâ «" }, { "input": "cohabiting", "output": "⠉⠕⠓â â ƒâ Šâ žâ ¬" }, { "input": "cohabits", "output": "⠉⠕⠓â â ƒâ Šâ žâ Ž" }, { "input": "cohere", "output": "⠉⠕â â “" }, { "input": "cohered", "output": "⠉⠕⠓⠻⠫" }, { "input": "coherence", "output": "⠉⠕⠓⠻⠰⠑" }, { "input": "coherent", "output": "⠉⠕⠓⠻⠢⠞" }, { "input": "coherently", "output": "⠉⠕⠓⠻⠢⠞⠇⠽" }, { "input": "coheres", "output": "⠉⠕â â “â Ž" }, { "input": "cohering", "output": "⠉⠕⠓⠻⠬" }, { "input": "cohesion", "output": "⠉⠕⠓⠑⠨â " }, { "input": "cohesive", "output": "⠉⠕⠓⠑⠎⠊⠧⠑" }, { "input": "cohesively", "output": "⠉⠕⠓⠑⠎⠊⠧⠑⠇⠽" }, { "input": "cohesiveness", "output": "⠉⠕⠓⠑⠎⠊⠧⠑⠰⠎" }, { "input": "cohort", "output": "⠉⠕⠓⠕⠗⠞" }, { "input": "cohorts", "output": "⠉⠕⠓⠕⠗⠞⠎" }, { "input": "coif", "output": "⠉⠕⠊⠋" }, { "input": "coifed", "output": "⠉⠕⠊⠋⠫" }, { "input": "coiffed", "output": "⠉⠕⠊⠖⠫" }, { "input": "coiffing", "output": "⠉⠕⠊⠖⠬" }, { "input": "coiffure", "output": "⠉⠕⠊⠖⠥⠗⠑" }, { "input": "coiffured", "output": "⠉⠕⠊⠖⠥⠗⠫" }, { "input": "coiffures", "output": "⠉⠕⠊⠖⠥⠗⠑⠎" }, { "input": "coiffuring", "output": "⠉⠕⠊⠖⠥⠗⠬" }, { "input": "coifing", "output": "⠉⠕⠊⠋⠬" }, { "input": "coifs", "output": "⠉⠕⠊⠋⠎" }, { "input": "coil", "output": "⠉⠕⠊⠇" }, { "input": "coiled", "output": "⠉⠕⠊⠇⠫" }, { "input": "coiling", "output": "⠉⠕⠊⠇⠬" }, { "input": "coils", "output": "⠉⠕⠊⠇⠎" }, { "input": "coin", "output": "⠉⠕⠔" }, { "input": "coinage", "output": "⠉⠕⠔â â ›â ‘" }, { "input": "coinages", "output": "⠉⠕⠔â â ›â ‘â Ž" }, { "input": "coincide", "output": "⠉⠕⠔⠉⠊⠙⠑" }, { "input": "coincided", "output": "⠉⠕⠔⠉⠊⠙⠫" }, { "input": "coincidence", "output": "⠉⠕⠔⠉⠊⠙⠰⠑" }, { "input": "coincidences", "output": "⠉⠕⠔⠉⠊⠙⠰⠑⠎" }, { "input": "coincident", "output": "⠉⠕⠔⠉⠊⠙⠢⠞" }, { "input": "coincidental", "output": "⠉⠕⠔⠉⠊⠙⠢⠞â â ‡" }, { "input": "coincidentally", "output": "⠉⠕⠔⠉⠊⠙⠢⠞â â ‡â ‡â ½" }, { "input": "coincides", "output": "⠉⠕⠔⠉⠊⠙⠑⠎" }, { "input": "coinciding", "output": "⠉⠕⠔⠉⠊⠙⠬" }, { "input": "coined", "output": "⠉⠕⠔⠫" }, { "input": "coining", "output": "⠉⠕⠔⠬" }, { "input": "coins", "output": "⠉⠕⠔⠎" }, { "input": "coital", "output": "⠉⠕⠊⠞â â ‡" }, { "input": "coitus", "output": "⠉⠕⠊⠞⠥⠎" }, { "input": "coke", "output": "⠉⠕⠅⠑" }, { "input": "coked", "output": "⠉⠕⠅⠫" }, { "input": "cokes", "output": "⠉⠕⠅⠑⠎" }, { "input": "coking", "output": "⠉⠕⠅⠬" }, { "input": "cola", "output": "⠉⠕⠇â " }, { "input": "colander", "output": "⠉⠕⠇⠯⠻" }, { "input": "colanders", "output": "⠉⠕⠇⠯⠻⠎" }, { "input": "colas", "output": "⠉⠕⠇â â Ž" }, { "input": "cold", "output": "⠉⠕⠇⠙" }, { "input": "colder", "output": "⠉⠕⠇⠙⠻" }, { "input": "coldest", "output": "⠉⠕⠇⠙⠑⠌" }, { "input": "coldly", "output": "⠉⠕⠇⠙⠇⠽" }, { "input": "coldness", "output": "⠉⠕⠇⠙⠰⠎" }, { "input": "colds", "output": "⠉⠕⠇⠙⠎" }, { "input": "coleslaw", "output": "⠉⠕⠇⠑⠎⠇â â º" }, { "input": "colic", "output": "⠉⠕⠇⠊⠉" }, { "input": "colicky", "output": "⠉⠕⠇⠊⠉⠅⠽" }, { "input": "coliseum", "output": "⠉⠕⠇⠊⠎⠑⠥â " }, { "input": "coliseums", "output": "⠉⠕⠇⠊⠎⠑⠥â â Ž" }, { "input": "colitis", "output": "⠉⠕⠇⠊⠞⠊⠎" }, { "input": "collaborate", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ ‘" }, { "input": "collaborated", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ «" }, { "input": "collaborates", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ ‘â Ž" }, { "input": "collaborating", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ ¬" }, { "input": "collaboration", "output": "⠉⠕⠇⠇â â ƒâ •â —â â °â " }, { "input": "collaborations", "output": "⠉⠕⠇⠇â â ƒâ •â —â â °â â Ž" }, { "input": "collaborative", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ Šâ §â ‘" }, { "input": "collaborator", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ •â —" }, { "input": "collaborators", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ •â —â Ž" }, { "input": "collage", "output": "⠉⠕⠇⠇â â ›â ‘" }, { "input": "collages", "output": "⠉⠕⠇⠇â â ›â ‘â Ž" }, { "input": "collapse", "output": "⠉⠕⠇⠇â â â Žâ ‘" }, { "input": "collapsed", "output": "⠉⠕⠇⠇â â â Žâ «" }, { "input": "collapses", "output": "⠉⠕⠇⠇â â â Žâ ‘â Ž" }, { "input": "collapsible", "output": "⠉⠕⠇⠇â â â Žâ Šâ ƒâ ‡â ‘" }, { "input": "collapsing", "output": "⠉⠕⠇⠇â â â Žâ ¬" }, { "input": "collar", "output": "⠉⠕⠇⠇⠜" }, { "input": "collarbone", "output": "⠉⠕⠇⠇⠜⠃â â •" }, { "input": "collarbones", "output": "⠉⠕⠇⠇⠜⠃â â •â Ž" }, { "input": "collared", "output": "⠉⠕⠇⠇⠜⠫" }, { "input": "collaring", "output": "⠉⠕⠇⠇⠜⠬" }, { "input": "collars", "output": "⠉⠕⠇⠇⠜⠎" }, { "input": "collate", "output": "⠉⠕⠇⠇â â žâ ‘" }, { "input": "collated", "output": "⠉⠕⠇⠇â â žâ «" }, { "input": "collateral", "output": "⠉⠕⠇⠇â â žâ »â â ‡" }, { "input": "collates", "output": "⠉⠕⠇⠇â â žâ ‘â Ž" }, { "input": "collating", "output": "⠉⠕⠇⠇â â žâ ¬" }, { "input": "collation", "output": "⠉⠕⠇⠇â â °â " }, { "input": "collations", "output": "⠉⠕⠇⠇â â °â â Ž" }, { "input": "colleague", "output": "⠉⠕⠇⠇⠂⠛⠥⠑" }, { "input": "colleagues", "output": "⠉⠕⠇⠇⠂⠛⠥⠑⠎" }, { "input": "collect", "output": "⠉⠕⠇⠇⠑⠉⠞" }, { "input": "collectable", "output": "⠉⠕⠇⠇⠑⠉⠞â â ƒâ ‡â ‘" }, { "input": "collectables", "output": "⠉⠕⠇⠇⠑⠉⠞â â ƒâ ‡â ‘â Ž" }, { "input": "collected", "output": "⠉⠕⠇⠇⠑⠉⠞⠫" }, { "input": "collectible", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠃⠇⠑" }, { "input": "collectibles", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠃⠇⠑⠎" }, { "input": "collecting", "output": "⠉⠕⠇⠇⠑⠉⠞⠬" }, { "input": "collection", "output": "⠉⠕⠇⠇⠑⠉⠰â " }, { "input": "collections", "output": "⠉⠕⠇⠇⠑⠉⠰â â Ž" }, { "input": "collective", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑" }, { "input": "collectively", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "collectives", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑⠎" }, { "input": "collectivism", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠎â " }, { "input": "collectivist", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠌" }, { "input": "collectivists", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠌⠎" }, { "input": "collectivize", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠑" }, { "input": "collectivized", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠫" }, { "input": "collectivizes", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠑⠎" }, { "input": "collectivizing", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠬" }, { "input": "collector", "output": "⠉⠕⠇⠇⠑⠉⠞⠕⠗" }, { "input": "collectors", "output": "⠉⠕⠇⠇⠑⠉⠞⠕⠗⠎" }, { "input": "collects", "output": "⠉⠕⠇⠇⠑⠉⠞⠎" }, { "input": "colleen", "output": "⠉⠕⠇⠇⠑⠢" }, { "input": "colleens", "output": "⠉⠕⠇⠇⠑⠢⠎" }, { "input": "college", "output": "⠉⠕⠇⠇⠑⠛⠑" }, { "input": "colleges", "output": "⠉⠕⠇⠇⠑⠛⠑⠎" }, { "input": "collegian", "output": "⠉⠕⠇⠇⠑⠛⠊â â " }, { "input": "collegians", "output": "⠉⠕⠇⠇⠑⠛⠊â â â Ž" }, { "input": "collegiate", "output": "⠉⠕⠇⠇⠑⠛⠊â â žâ ‘" }, { "input": "collide", "output": "⠉⠕⠇⠇⠊⠙⠑" }, { "input": "collided", "output": "⠉⠕⠇⠇⠊⠙⠫" }, { "input": "collides", "output": "⠉⠕⠇⠇⠊⠙⠑⠎" }, { "input": "colliding", "output": "⠉⠕⠇⠇⠊⠙⠬" }, { "input": "collie", "output": "⠉⠕⠇⠇⠊⠑" }, { "input": "collier", "output": "⠉⠕⠇⠇⠊⠻" }, { "input": "collieries", "output": "⠉⠕⠇⠇⠊⠻⠊⠑⠎" }, { "input": "colliers", "output": "⠉⠕⠇⠇⠊⠻⠎" }, { "input": "colliery", "output": "⠉⠕⠇⠇⠊⠻⠽" }, { "input": "collies", "output": "⠉⠕⠇⠇⠊⠑⠎" }, { "input": "collision", "output": "⠉⠕⠇⠇⠊⠨â " }, { "input": "collisions", "output": "⠉⠕⠇⠇⠊⠨â â Ž" }, { "input": "collocate", "output": "⠉⠕⠇⠇⠕⠉â â žâ ‘" }, { "input": "collocated", "output": "⠉⠕⠇⠇⠕⠉â â žâ «" }, { "input": "collocates", "output": "⠉⠕⠇⠇⠕⠉â â žâ ‘â Ž" }, { "input": "collocating", "output": "⠉⠕⠇⠇⠕⠉â â žâ ¬" }, { "input": "collocation", "output": "⠉⠕⠇⠇⠕⠉â â °â " }, { "input": "collocations", "output": "⠉⠕⠇⠇⠕⠉â â °â â Ž" }, { "input": "colloid", "output": "⠉⠕⠇⠇⠕⠊⠙" }, { "input": "colloids", "output": "⠉⠕⠇⠇⠕⠊⠙⠎" }, { "input": "colloquia", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â " }, { "input": "colloquial", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡" }, { "input": "colloquialism", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡â Šâ Žâ " }, { "input": "colloquialisms", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡â Šâ Žâ â Ž" }, { "input": "colloquially", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡â ‡â ½" }, { "input": "colloquies", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠑⠎" }, { "input": "colloquium", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠥â " }, { "input": "colloquiums", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠥â â Ž" }, { "input": "colloquy", "output": "⠉⠕⠇⠇⠕⠟⠥⠽" }, { "input": "collude", "output": "⠉⠕⠇⠇⠥⠙⠑" }, { "input": "colluded", "output": "⠉⠕⠇⠇⠥⠙⠫" }, { "input": "colludes", "output": "⠉⠕⠇⠇⠥⠙⠑⠎" }, { "input": "colluding", "output": "⠉⠕⠇⠇⠥⠙⠬" }, { "input": "collusion", "output": "⠉⠕⠇⠇⠥⠨â " }, { "input": "collusive", "output": "⠉⠕⠇⠇⠥⠎⠊⠧⠑" }, { "input": "cologne", "output": "⠉⠕⠇⠕⠛â â ‘" }, { "input": "colognes", "output": "⠉⠕⠇⠕⠛â â ‘â Ž" }, { "input": "colon", "output": "⠉⠕⠇⠕â " }, { "input": "colonel", "output": "⠉⠕⠇⠕â â ‘â ‡" }, { "input": "colonels", "output": "⠉⠕⠇â â •⠇⠎" }, { "input": "colones", "output": "⠉⠕⠇â â •â Ž" }, { "input": "colonial", "output": "⠉⠕⠇⠕â â Šâ â ‡" }, { "input": "colonialism", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Žâ " }, { "input": "colonialist", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Œ" }, { "input": "colonialists", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Œâ Ž" }, { "input": "colonials", "output": "⠉⠕⠇⠕â â Šâ â ‡â Ž" }, { "input": "colonies", "output": "⠉⠕⠇⠕â â Šâ ‘â Ž" }, { "input": "colonist", "output": "⠉⠕⠇⠕â â Šâ Œ" }, { "input": "colonists", "output": "⠉⠕⠇⠕â â Šâ Œâ Ž" }, { "input": "colonization", "output": "⠉⠕⠇⠕â â Šâ µâ â °â " }, { "input": "colonize", "output": "⠉⠕⠇⠕â â Šâ µâ ‘" }, { "input": "colonized", "output": "⠉⠕⠇⠕â â Šâ µâ «" }, { "input": "colonizer", "output": "⠉⠕⠇⠕â â Šâ µâ »" }, { "input": "colonizers", "output": "⠉⠕⠇⠕â â Šâ µâ »â Ž" }, { "input": "colonizes", "output": "⠉⠕⠇⠕â â Šâ µâ ‘â Ž" }, { "input": "colonizing", "output": "⠉⠕⠇⠕â â Šâ µâ ¬" }, { "input": "colonnade", "output": "⠉⠕⠇⠕â â â â ™â ‘" }, { "input": "colonnades", "output": "⠉⠕⠇⠕â â â â ™â ‘â Ž" }, { "input": "colons", "output": "⠉⠕⠇⠕â â Ž" }, { "input": "colony", "output": "⠉⠕⠇⠕â â ½" }, { "input": "color", "output": "⠉⠕⠇⠕⠗" }, { "input": "coloration", "output": "⠉⠕⠇⠕⠗â â °â " }, { "input": "coloratura", "output": "⠉⠕⠇⠕⠗â â žâ ¥â —â " }, { "input": "coloraturas", "output": "⠉⠕⠇⠕⠗â â žâ ¥â —â â Ž" }, { "input": "colorblind", "output": "⠉⠕⠇⠕⠗⠃⠇" }, { "input": "colored", "output": "⠉⠕⠇⠕⠗⠫" }, { "input": "coloreds", "output": "⠉⠕⠇⠕⠗⠫⠎" }, { "input": "colorfast", "output": "⠉⠕⠇⠕⠗⠋â â Œ" }, { "input": "colorful", "output": "⠉⠕⠇⠕⠗⠰⠇" }, { "input": "colorfully", "output": "⠉⠕⠇⠕⠗⠰⠇⠇⠽" }, { "input": "coloring", "output": "⠉⠕⠇⠕⠗⠬" }, { "input": "colorless", "output": "⠉⠕⠇⠕⠗⠨⠎" }, { "input": "colors", "output": "⠉⠕⠇⠕⠗⠎" }, { "input": "colossal", "output": "⠉⠕⠇⠕⠎⠎â â ‡" }, { "input": "colossally", "output": "⠉⠕⠇⠕⠎⠎â â ‡â ‡â ½" }, { "input": "colossi", "output": "⠉⠕⠇⠕⠎⠎⠊" }, { "input": "colossus", "output": "⠉⠕⠇⠕⠎⠎⠥⠎" }, { "input": "colossuses", "output": "⠉⠕⠇⠕⠎⠎⠥⠎⠑⠎" }, { "input": "cols", "output": "⠉⠕⠇⠎" }, { "input": "colt", "output": "⠉⠕⠇⠞" }, { "input": "coltish", "output": "⠉⠕⠇⠞⠊⠩" }, { "input": "colts", "output": "⠉⠕⠇⠞⠎" }, { "input": "columbine", "output": "⠉⠕⠇⠥â â ƒâ ”â ‘" }, { "input": "columbines", "output": "⠉⠕⠇⠥â â ƒâ ”â ‘â Ž" }, { "input": "column", "output": "⠉⠕⠇⠥â â " }, { "input": "columned", "output": "⠉⠕⠇⠥â â â «" }, { "input": "columnist", "output": "⠉⠕⠇⠥â â â Šâ Œ" }, { "input": "columnists", "output": "⠉⠕⠇⠥â â â Šâ Œâ Ž" }, { "input": "columns", "output": "⠉⠕⠇⠥â â â Ž" }, { "input": "coma", "output": "⠉⠕â â " }, { "input": "comas", "output": "⠉⠕â â â Ž" }, { "input": "comatose", "output": "⠉⠕â â â žâ •â Žâ ‘" }, { "input": "comb", "output": "⠉⠕â â ƒ" }, { "input": "combat", "output": "⠉⠕â â ƒâ â ž" }, { "input": "combatant", "output": "⠉⠕â â ƒâ â žâ â â ž" }, { "input": "combatants", "output": "⠉⠕â â ƒâ â žâ â â žâ Ž" }, { "input": "combated", "output": "⠉⠕â â ƒâ â žâ «" }, { "input": "combating", "output": "⠉⠕â â ƒâ â žâ ¬" }, { "input": "combative", "output": "⠉⠕â â ƒâ â žâ Šâ §â ‘" }, { "input": "combats", "output": "⠉⠕â â ƒâ â žâ Ž" }, { "input": "combatted", "output": "⠉⠕â â ƒâ â žâ žâ «" }, { "input": "combatting", "output": "⠉⠕â â ƒâ â žâ žâ ¬" }, { "input": "combed", "output": "⠉⠕â â ƒâ «" }, { "input": "combination", "output": "⠉⠕â â ƒâ ”â â °â " }, { "input": "combinations", "output": "⠉⠕â â ƒâ ”â â °â â Ž" }, { "input": "combine", "output": "⠉⠕â â ƒâ ”â ‘" }, { "input": "combined", "output": "⠉⠕â â ƒâ ”â «" }, { "input": "combines", "output": "⠉⠕â â ƒâ ”â ‘â Ž" }, { "input": "combing", "output": "⠉⠕â â ƒâ ¬" }, { "input": "combining", "output": "⠉⠕â â ƒâ ”â ¬" }, { "input": "combo", "output": "⠉⠕â â ƒâ •" }, { "input": "combos", "output": "⠉⠕â â ƒâ •â Ž" }, { "input": "combs", "output": "⠉⠕â â ƒâ Ž" }, { "input": "combustibility", "output": "⠉⠕â â ƒâ ¥â Œâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "combustible", "output": "⠉⠕â â ƒâ ¥â Œâ Šâ ƒâ ‡â ‘" }, { "input": "combustibles", "output": "⠉⠕â â ƒâ ¥â Œâ Šâ ƒâ ‡â ‘â Ž" }, { "input": "combustion", "output": "⠉⠕â â ƒâ ¥â Žâ °â " }, { "input": "come", "output": "⠉⠕â â ‘" }, { "input": "comeback", "output": "⠉⠕â â ‘â ƒâ â ‰â …" }, { "input": "comebacks", "output": "⠉⠕â â ‘â ƒâ â ‰â …â Ž" }, { "input": "comedian", "output": "⠉⠕â â «â Šâ â " }, { "input": "comedians", "output": "⠉⠕â â «â Šâ â â Ž" }, { "input": "comedic", "output": "⠉⠕â â «â Šâ ‰" }, { "input": "comedienne", "output": "⠉⠕â â «â Šâ ¢â â ‘" }, { "input": "comediennes", "output": "⠉⠕â â «â Šâ ¢â â ‘â Ž" }, { "input": "comedies", "output": "⠉⠕â â «â Šâ ‘â Ž" }, { "input": "comedown", "output": "⠉⠕â â ‘⠙⠪â " }, { "input": "comedowns", "output": "⠉⠕â â ‘⠙⠪â â Ž" }, { "input": "comedy", "output": "⠉⠕â â «â ½" }, { "input": "comelier", "output": "⠉⠕â â ‘⠇⠊⠻" }, { "input": "comeliest", "output": "⠉⠕â â ‘⠇⠊⠑⠌" }, { "input": "comeliness", "output": "⠉⠕â â ‘⠇⠊⠰⠎" }, { "input": "comely", "output": "⠉⠕â â ‘⠇⠽" }, { "input": "comer", "output": "⠉⠕â â »" }, { "input": "comers", "output": "⠉⠕â â »â Ž" }, { "input": "comes", "output": "⠉⠕â â ‘â Ž" }, { "input": "comestible", "output": "⠉⠕â â ‘⠌⠊⠃⠇⠑" }, { "input": "comestibles", "output": "⠉⠕â â ‘⠌⠊⠃⠇⠑⠎" }, { "input": "comet", "output": "⠉⠕â â ‘â ž" }, { "input": "comets", "output": "⠉⠕â â ‘â žâ Ž" }, { "input": "comeuppance", "output": "⠉⠕â â ‘â ¥â â â ¨â ‘" }, { "input": "comeuppances", "output": "⠉⠕â â ‘â ¥â â â ¨â ‘â Ž" }, { "input": "comfier", "output": "⠉⠕â â ‹â Šâ »" }, { "input": "comfiest", "output": "⠉⠕â â ‹â Šâ ‘â Œ" }, { "input": "comfort", "output": "⠉⠕â â ¿â ž" }, { "input": "comfortable", "output": "⠉⠕â â ¿â žâ â ƒâ ‡â ‘" }, { "input": "comfortably", "output": "⠉⠕â â ¿â žâ â ƒâ ‡â ½" }, { "input": "comforted", "output": "⠉⠕â â ¿â žâ «" }, { "input": "comforter", "output": "⠉⠕â â ¿â žâ »" }, { "input": "comforters", "output": "⠉⠕â â ¿â žâ »â Ž" }, { "input": "comforting", "output": "⠉⠕â â ¿â žâ ¬" }, { "input": "comfortingly", "output": "⠉⠕â â ¿â žâ ¬â ‡â ½" }, { "input": "comforts", "output": "⠉⠕â â ¿â žâ Ž" }, { "input": "comfy", "output": "⠉⠕â â ‹â ½" }, { "input": "comic", "output": "⠉⠕â â Šâ ‰" }, { "input": "comical", "output": "⠉⠕â â Šâ ‰â â ‡" }, { "input": "comically", "output": "⠉⠕â â Šâ ‰â â ‡â ‡â ½" }, { "input": "comics", "output": "⠉⠕â â Šâ ‰â Ž" }, { "input": "coming", "output": "⠉⠕â â ¬" }, { "input": "comings", "output": "⠉⠕â â ¬â Ž" }, { "input": "comity", "output": "⠉⠕â â °â ½" }, { "input": "comma", "output": "⠉⠕â â â " }, { "input": "command", "output": "⠉⠕â â â ¯" }, { "input": "commandant", "output": "⠉⠕â â â ¯â â â ž" }, { "input": "commandants", "output": "⠉⠕â â â ¯â â â žâ Ž" }, { "input": "commanded", "output": "⠉⠕â â â ¯â «" }, { "input": "commandeer", "output": "⠉⠕â â â ¯â ‘â »" }, { "input": "commandeered", "output": "⠉⠕â â â ¯â ‘⠻⠫" }, { "input": "commandeering", "output": "⠉⠕â â â ¯â ‘⠻⠬" }, { "input": "commandeers", "output": "⠉⠕â â â ¯â ‘⠻⠎" }, { "input": "commander", "output": "⠉⠕â â â ¯â »" }, { "input": "commanders", "output": "⠉⠕â â â ¯â »â Ž" }, { "input": "commanding", "output": "⠉⠕â â â ¯â ¬" }, { "input": "commandment", "output": "⠉⠕â â â ¯â °â ž" }, { "input": "commandments", "output": "⠉⠕â â â ¯â °â žâ Ž" }, { "input": "commando", "output": "⠉⠕â â â ¯â •" }, { "input": "commandoes", "output": "⠉⠕â â â ¯â •â ‘â Ž" }, { "input": "commandos", "output": "⠉⠕â â â ¯â •â Ž" }, { "input": "commands", "output": "⠉⠕â â â ¯â Ž" }, { "input": "commas", "output": "⠉⠕â â â â Ž" }, { "input": "commemorate", "output": "⠉⠕â â â ‘â â •â —â â žâ ‘" }, { "input": "commemorated", "output": "⠉⠕â â â ‘â â •â —â â žâ «" }, { "input": "commemorates", "output": "⠉⠕â â â ‘â â •â —â â žâ ‘â Ž" }, { "input": "commemorating", "output": "⠉⠕â â â ‘â â •â —â â žâ ¬" }, { "input": "commemoration", "output": "⠉⠕â â â ‘â â •â —â â °â " }, { "input": "commemorations", "output": "⠉⠕â â â ‘â â •â —â â °â â Ž" }, { "input": "commemorative", "output": "⠉⠕â â â ‘â â •â —â â žâ Šâ §â ‘" }, { "input": "commence", "output": "⠉⠕â â â °â ‘" }, { "input": "commenced", "output": "⠉⠕â â â °â ‘â ™" }, { "input": "commencement", "output": "⠉⠕â â â °â ‘â °â ž" }, { "input": "commencements", "output": "⠉⠕â â â °â ‘â °â žâ Ž" }, { "input": "commences", "output": "⠉⠕â â â °â ‘â Ž" }, { "input": "commencing", "output": "⠉⠕â â â ¢â ‰â ¬" }, { "input": "commend", "output": "⠉⠕â â â ¢â ™" }, { "input": "commendable", "output": "⠉⠕â â â ¢â ™â â ƒâ ‡â ‘" }, { "input": "commendably", "output": "⠉⠕â â â ¢â ™â â ƒâ ‡â ½" }, { "input": "commendation", "output": "⠉⠕â â â ¢â ™â â °â " }, { "input": "commendations", "output": "⠉⠕â â â ¢â ™â â °â â Ž" }, { "input": "commended", "output": "⠉⠕â â â ¢â ™â «" }, { "input": "commending", "output": "⠉⠕â â â ¢â ™â ¬" }, { "input": "commends", "output": "⠉⠕â â â ¢â ™â Ž" }, { "input": "commensurable", "output": "⠉⠕â â â ¢â Žâ ¥â —â â ƒâ ‡â ‘" }, { "input": "commensurate", "output": "⠉⠕â â â ¢â Žâ ¥â —â â žâ ‘" }, { "input": "comment", "output": "⠉⠕â â °â ž" }, { "input": "commentaries", "output": "⠉⠕â â °â žâ œâ Šâ ‘â Ž" }, { "input": "commentary", "output": "⠉⠕â â °â žâ œâ ½" }, { "input": "commentate", "output": "⠉⠕â â °â žâ â žâ ‘" }, { "input": "commentated", "output": "⠉⠕â â °â žâ â žâ «" }, { "input": "commentates", "output": "⠉⠕â â °â žâ â žâ ‘â Ž" }, { "input": "commentating", "output": "⠉⠕â â °â žâ â žâ ¬" }, { "input": "commentator", "output": "⠉⠕â â °â žâ â žâ •â —" }, { "input": "commentators", "output": "⠉⠕â â °â žâ â žâ •â —â Ž" }, { "input": "commented", "output": "⠉⠕â â °â žâ «" }, { "input": "commenting", "output": "⠉⠕â â °â žâ ¬" }, { "input": "comments", "output": "⠉⠕â â °â žâ Ž" }, { "input": "commerce", "output": "⠉⠕â â â »â ‰â ‘" }, { "input": "commercial", "output": "⠉⠕â â â »â ‰â Šâ â ‡" }, { "input": "commercialism", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Šâ Žâ " }, { "input": "commercialization", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Šâ µâ â °â " }, { "input": "commercialize", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Šâ µâ ‘" }, { "input": "commercialized", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Šâ µâ «" }, { "input": "commercializes", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "commercializing", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Šâ µâ ¬" }, { "input": "commercially", "output": "⠉⠕â â â »â ‰â Šâ â ‡â ‡â ½" }, { "input": "commercials", "output": "⠉⠕â â â »â ‰â Šâ â ‡â Ž" }, { "input": "commingle", "output": "⠉⠕â â â ¬â ‡â ‘" }, { "input": "commingled", "output": "⠉⠕â â â ¬â ‡â «" }, { "input": "commingles", "output": "⠉⠕â â â ¬â ‡â ‘â Ž" }, { "input": "commingling", "output": "⠉⠕â â â ¬â ‡â ¬" }, { "input": "commiserate", "output": "⠉⠕â â â Šâ Žâ »â â žâ ‘" }, { "input": "commiserated", "output": "⠉⠕â â â Šâ Žâ »â â žâ «" }, { "input": "commiserates", "output": "⠉⠕â â â Šâ Žâ »â â žâ ‘â Ž" }, { "input": "commiserating", "output": "⠉⠕â â â Šâ Žâ »â â žâ ¬" }, { "input": "commiseration", "output": "⠉⠕â â â Šâ Žâ »â â °â " }, { "input": "commiserations", "output": "⠉⠕â â â Šâ Žâ »â â °â â Ž" }, { "input": "commissar", "output": "⠉⠕â â â Šâ Žâ Žâ œ" }, { "input": "commissariat", "output": "⠉⠕â â â Šâ Žâ Žâ œâ Šâ â ž" }, { "input": "commissariats", "output": "⠉⠕â â â Šâ Žâ Žâ œâ Šâ â žâ Ž" }, { "input": "commissaries", "output": "⠉⠕â â â Šâ Žâ Žâ œâ Šâ ‘â Ž" }, { "input": "commissars", "output": "⠉⠕â â â Šâ Žâ Žâ œâ Ž" }, { "input": "commissary", "output": "⠉⠕â â â Šâ Žâ Žâ œâ ½" }, { "input": "commission", "output": "⠉⠕â â â Šâ Žâ ¨â " }, { "input": "commissioned", "output": "⠉⠕â â â Šâ Žâ ¨â â «" }, { "input": "commissioner", "output": "⠉⠕â â â Šâ Žâ ¨â â »" }, { "input": "commissioners", "output": "⠉⠕â â â Šâ Žâ ¨â â »â Ž" }, { "input": "commissioning", "output": "⠉⠕â â â Šâ Žâ ¨â â ¬" }, { "input": "commissions", "output": "⠉⠕â â â Šâ Žâ ¨â â Ž" }, { "input": "commit", "output": "⠉⠕â â â Šâ ž" }, { "input": "commitment", "output": "⠉⠕â â â Šâ žâ °â ž" }, { "input": "commitments", "output": "⠉⠕â â â Šâ žâ °â žâ Ž" }, { "input": "commits", "output": "⠉⠕â â â Šâ žâ Ž" }, { "input": "committal", "output": "⠉⠕â â â Šâ žâ žâ â ‡" }, { "input": "committals", "output": "⠉⠕â â â Šâ žâ žâ â ‡â Ž" }, { "input": "committed", "output": "⠉⠕â â â Šâ žâ žâ «" }, { "input": "committee", "output": "⠉⠕â â â Šâ žâ žâ ‘â ‘" }, { "input": "committees", "output": "⠉⠕â â â Šâ žâ žâ ‘â ‘â Ž" }, { "input": "committing", "output": "⠉⠕â â â Šâ žâ žâ ¬" }, { "input": "commode", "output": "⠉⠕â â â •⠙⠑" }, { "input": "commodes", "output": "⠉⠕â â â •⠙⠑⠎" }, { "input": "commodious", "output": "⠉⠕â â â •⠙⠊⠳⠎" }, { "input": "commodities", "output": "⠉⠕â â â •⠙⠊⠞⠊⠑⠎" }, { "input": "commodity", "output": "⠉⠕â â â •⠙⠰⠽" }, { "input": "commodore", "output": "⠉⠕â â â •⠙⠕⠗⠑" }, { "input": "commodores", "output": "⠉⠕â â â •⠙⠕⠗⠑⠎" }, { "input": "common", "output": "⠉⠕â â â •â " }, { "input": "commoner", "output": "⠉⠕â â â •â â »" }, { "input": "commoners", "output": "⠉⠕â â â •â â »â Ž" }, { "input": "commonest", "output": "⠉⠕â â â •â â ‘â Œ" }, { "input": "commonly", "output": "⠉⠕â â â •â â ‡â ½" }, { "input": "commonplace", "output": "⠉⠕â â â •â â â ‡â â ‰â ‘" }, { "input": "commonplaces", "output": "⠉⠕â â â •â â â ‡â â ‰â ‘â Ž" }, { "input": "commons", "output": "⠉⠕â â â •â â Ž" }, { "input": "commonwealth", "output": "⠉⠕â â â •â â ºâ ‚⠇⠹" }, { "input": "commonwealths", "output": "⠉⠕â â â •â â ºâ ‚⠇⠹⠎" }, { "input": "commotion", "output": "⠉⠕â â â •â °â " }, { "input": "commotions", "output": "⠉⠕â â â •â °â â Ž" }, { "input": "communal", "output": "⠉⠕â â â ¥â â â ‡" }, { "input": "communally", "output": "⠉⠕â â â ¥â â â ‡â ‡â ½" }, { "input": "commune", "output": "⠉⠕â â â ¥â â ‘" }, { "input": "communed", "output": "⠉⠕â â â ¥â â «" }, { "input": "communes", "output": "⠉⠕â â â ¥â â ‘â Ž" }, { "input": "communicable", "output": "⠉⠕â â â ¥â â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "communicant", "output": "⠉⠕â â â ¥â â Šâ ‰â â â ž" }, { "input": "communicants", "output": "⠉⠕â â â ¥â â Šâ ‰â â â žâ Ž" }, { "input": "communicate", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ ‘" }, { "input": "communicated", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ «" }, { "input": "communicates", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ ‘â Ž" }, { "input": "communicating", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ ¬" }, { "input": "communication", "output": "⠉⠕â â â ¥â â Šâ ‰â â °â " }, { "input": "communications", "output": "⠉⠕â â â ¥â â Šâ ‰â â °â â Ž" }, { "input": "communicative", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "communicator", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ •â —" }, { "input": "communicators", "output": "⠉⠕â â â ¥â â Šâ ‰â â žâ •â —â Ž" }, { "input": "communing", "output": "⠉⠕â â â ¥â â ¬" }, { "input": "communion", "output": "⠉⠕â â â ¥â â Šâ •â " }, { "input": "communions", "output": "⠉⠕â â â ¥â â Šâ •â â Ž" }, { "input": "communique", "output": "⠉⠕â â â ¥â â Šâ Ÿâ ¥â ‘" }, { "input": "communiques", "output": "⠉⠕â â â ¥â â Šâ Ÿâ ¥â ‘â Ž" }, { "input": "communism", "output": "⠉⠕â â â ¥â â Šâ Žâ " }, { "input": "communist", "output": "⠉⠕â â â ¥â â Šâ Œ" }, { "input": "communistic", "output": "⠉⠕â â â ¥â â Šâ Œâ Šâ ‰" }, { "input": "communists", "output": "⠉⠕â â â ¥â â Šâ Œâ Ž" }, { "input": "communities", "output": "⠉⠕â â â ¥â â Šâ žâ Šâ ‘â Ž" }, { "input": "community", "output": "⠉⠕â â â ¥â â °â ½" }, { "input": "commutation", "output": "⠉⠕â â â ¥â žâ â °â " }, { "input": "commutations", "output": "⠉⠕â â â ¥â žâ â °â â Ž" }, { "input": "commutative", "output": "⠉⠕â â â ¥â žâ â žâ Šâ §â ‘" }, { "input": "commute", "output": "⠉⠕â â â ¥â žâ ‘" }, { "input": "commuted", "output": "⠉⠕â â â ¥â žâ «" }, { "input": "commuter", "output": "⠉⠕â â â ¥â žâ »" }, { "input": "commuters", "output": "⠉⠕â â â ¥â žâ »â Ž" }, { "input": "commutes", "output": "⠉⠕â â â ¥â žâ ‘â Ž" }, { "input": "commuting", "output": "⠉⠕â â â ¥â žâ ¬" }, { "input": "compact", "output": "⠉⠕â â â â ‰â ž" }, { "input": "compacted", "output": "⠉⠕â â â â ‰â žâ «" }, { "input": "compacter", "output": "⠉⠕â â â â ‰â žâ »" }, { "input": "compactest", "output": "⠉⠕â â â â ‰â žâ ‘â Œ" }, { "input": "compacting", "output": "⠉⠕â â â â ‰â žâ ¬" }, { "input": "compaction", "output": "⠉⠕â â â â ‰â °â " }, { "input": "compactly", "output": "⠉⠕â â â â ‰â žâ ‡â ½" }, { "input": "compactness", "output": "⠉⠕â â â â ‰â žâ °â Ž" }, { "input": "compactor", "output": "⠉⠕â â â â ‰â žâ •â —" }, { "input": "compactors", "output": "⠉⠕â â â â ‰â žâ •â —â Ž" }, { "input": "compacts", "output": "⠉⠕â â â â ‰â žâ Ž" }, { "input": "companies", "output": "⠉⠕â â â â â Šâ ‘â Ž" }, { "input": "companion", "output": "⠉⠕â â â â â Šâ •â " }, { "input": "companionable", "output": "⠉⠕â â â â â Šâ •â â â ƒâ ‡â ‘" }, { "input": "companions", "output": "⠉⠕â â â â â Šâ •â â Ž" }, { "input": "companionship", "output": "⠉⠕â â â â â Šâ •â â ©â Šâ " }, { "input": "companionway", "output": "⠉⠕â â â â â Šâ •â â ºâ â ½" }, { "input": "companionways", "output": "⠉⠕â â â â â Šâ •â â ºâ â ½â Ž" }, { "input": "company", "output": "⠉⠕â â â â â ½" }, { "input": "comparability", "output": "⠉⠕â â â œâ â ƒâ Šâ ‡â °â ½" }, { "input": "comparable", "output": "⠉⠕â â â œâ â ƒâ ‡â ‘" }, { "input": "comparably", "output": "⠉⠕â â â œâ â ƒâ ‡â ½" }, { "input": "comparative", "output": "⠉⠕â â â œâ â žâ Šâ §â ‘" }, { "input": "comparatively", "output": "⠉⠕â â â œâ â žâ Šâ §â ‘⠇⠽" }, { "input": "comparatives", "output": "⠉⠕â â â œâ â žâ Šâ §â ‘â Ž" }, { "input": "compare", "output": "⠉⠕â â â œâ ‘" }, { "input": "compared", "output": "⠉⠕â â â œâ «" }, { "input": "compares", "output": "⠉⠕â â â œâ ‘â Ž" }, { "input": "comparing", "output": "⠉⠕â â â œâ ¬" }, { "input": "comparison", "output": "⠉⠕â â â œâ Šâ Žâ •â " }, { "input": "comparisons", "output": "⠉⠕â â â œâ Šâ Žâ •â â Ž" }, { "input": "compartment", "output": "⠉⠕â â â â °â ž" }, { "input": "compartmentalize", "output": "⠉⠕â â â â °â žâ â ‡â Šâ µâ ‘" }, { "input": "compartmentalized", "output": "⠉⠕â â â â °â žâ â ‡â Šâ µâ «" }, { "input": "compartmentalizes", "output": "⠉⠕â â â â °â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "compartmentalizing", "output": "⠉⠕â â â â °â žâ â ‡â Šâ µâ ¬" }, { "input": "compartments", "output": "⠉⠕â â â â °â žâ Ž" }, { "input": "compass", "output": "⠉⠕â â â â Žâ Ž" }, { "input": "compassed", "output": "⠉⠕â â â â Žâ Žâ «" }, { "input": "compasses", "output": "⠉⠕â â â â Žâ Žâ ‘â Ž" }, { "input": "compassing", "output": "⠉⠕â â â â Žâ Žâ ¬" }, { "input": "compassion", "output": "⠉⠕â â â â Žâ ¨â " }, { "input": "compassionate", "output": "⠉⠕â â â â Žâ ¨â â â žâ ‘" }, { "input": "compassionately", "output": "⠉⠕â â â â Žâ ¨â â â žâ ‘⠇⠽" }, { "input": "compatibility", "output": "⠉⠕â â â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "compatible", "output": "⠉⠕â â â â žâ Šâ ƒâ ‡â ‘" }, { "input": "compatibles", "output": "⠉⠕â â â â žâ Šâ ƒâ ‡â ‘â Ž" }, { "input": "compatibly", "output": "⠉⠕â â â â žâ Šâ ƒâ ‡â ½" }, { "input": "compatriot", "output": "⠉⠕â â â â žâ —â Šâ •â ž" }, { "input": "compatriots", "output": "⠉⠕â â â â žâ —â Šâ •â žâ Ž" }, { "input": "compel", "output": "⠉⠕â â â ‘â ‡" }, { "input": "compelled", "output": "⠉⠕â â â ‘⠇⠇⠫" }, { "input": "compelling", "output": "⠉⠕â â â ‘⠇⠇⠬" }, { "input": "compellingly", "output": "⠉⠕â â â ‘⠇⠇⠬⠇⠽" }, { "input": "compels", "output": "⠉⠕â â â ‘⠇⠎" }, { "input": "compendia", "output": "⠉⠕â â â ¢â ™â Šâ " }, { "input": "compendium", "output": "⠉⠕â â â ¢â ™â Šâ ¥â " }, { "input": "compendiums", "output": "⠉⠕â â â ¢â ™â Šâ ¥â â Ž" }, { "input": "compensate", "output": "⠉⠕â â â ¢â Žâ â žâ ‘" }, { "input": "compensated", "output": "⠉⠕â â â ¢â Žâ â žâ «" }, { "input": "compensates", "output": "⠉⠕â â â ¢â Žâ â žâ ‘â Ž" }, { "input": "compensating", "output": "⠉⠕â â â ¢â Žâ â žâ ¬" }, { "input": "compensation", "output": "⠉⠕â â â ¢â Žâ â °â " }, { "input": "compensations", "output": "⠉⠕â â â ¢â Žâ â °â â Ž" }, { "input": "compensatory", "output": "⠉⠕â â â ¢â Žâ â žâ •â —â ½" }, { "input": "compete", "output": "⠉⠕â â â ‘â žâ ‘" }, { "input": "competed", "output": "⠉⠕â â â ‘â žâ «" }, { "input": "competence", "output": "⠉⠕â â â ‘â žâ °â ‘" }, { "input": "competences", "output": "⠉⠕â â â ‘â žâ °â ‘â Ž" }, { "input": "competencies", "output": "⠉⠕â â â ‘⠞⠢⠉⠊⠑⠎" }, { "input": "competency", "output": "⠉⠕â â â ‘⠞⠢⠉⠽" }, { "input": "competent", "output": "⠉⠕â â â ‘⠞⠢⠞" }, { "input": "competently", "output": "⠉⠕â â â ‘⠞⠢⠞⠇⠽" }, { "input": "competes", "output": "⠉⠕â â â ‘â žâ ‘â Ž" }, { "input": "competing", "output": "⠉⠕â â â ‘â žâ ¬" }, { "input": "competition", "output": "⠉⠕â â â ‘â žâ Šâ °â " }, { "input": "competitions", "output": "⠉⠕â â â ‘â žâ Šâ °â â Ž" }, { "input": "competitive", "output": "⠉⠕â â â ‘â žâ Šâ žâ Šâ §â ‘" }, { "input": "competitively", "output": "⠉⠕â â â ‘⠞⠊⠞⠊⠧⠑⠇⠽" }, { "input": "competitiveness", "output": "⠉⠕â â â ‘â žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "competitor", "output": "⠉⠕â â â ‘â žâ Šâ žâ •â —" }, { "input": "competitors", "output": "⠉⠕â â â ‘â žâ Šâ žâ •â —â Ž" }, { "input": "compilation", "output": "⠉⠕â â â Šâ ‡â â °â " }, { "input": "compilations", "output": "⠉⠕â â â Šâ ‡â â °â â Ž" }, { "input": "compile", "output": "⠉⠕â â â Šâ ‡â ‘" }, { "input": "compiled", "output": "⠉⠕â â â Šâ ‡â «" }, { "input": "compiler", "output": "⠉⠕â â â Šâ ‡â »" }, { "input": "compilers", "output": "⠉⠕â â â Šâ ‡â »â Ž" }, { "input": "compiles", "output": "⠉⠕â â â Šâ ‡â ‘â Ž" }, { "input": "compiling", "output": "⠉⠕â â â Šâ ‡â ¬" }, { "input": "complacence", "output": "⠉⠕â â â ‡â â ‰â °â ‘" }, { "input": "complacency", "output": "⠉⠕â â â ‡â â ‰â ¢â ‰â ½" }, { "input": "complacent", "output": "⠉⠕â â â ‡â â ‰â ¢â ž" }, { "input": "complacently", "output": "⠉⠕â â â ‡â â ‰â ¢â žâ ‡â ½" }, { "input": "complain", "output": "⠉⠕â â â ‡â â ”" }, { "input": "complainant", "output": "⠉⠕â â â ‡â â ”â â â ž" }, { "input": "complainants", "output": "⠉⠕â â â ‡â â ”â â â žâ Ž" }, { "input": "complained", "output": "⠉⠕â â â ‡â â ”â «" }, { "input": "complainer", "output": "⠉⠕â â â ‡â â ”â »" }, { "input": "complainers", "output": "⠉⠕â â â ‡â â ”⠻⠎" }, { "input": "complaining", "output": "⠉⠕â â â ‡â â ”â ¬" }, { "input": "complains", "output": "⠉⠕â â â ‡â â ”â Ž" }, { "input": "complaint", "output": "⠉⠕â â â ‡â â ”â ž" }, { "input": "complaints", "output": "⠉⠕â â â ‡â â ”â žâ Ž" }, { "input": "complaisance", "output": "⠉⠕â â â ‡â â Šâ Žâ ¨â ‘" }, { "input": "complaisant", "output": "⠉⠕â â â ‡â â Šâ Žâ â â ž" }, { "input": "complaisantly", "output": "⠉⠕â â â ‡â â Šâ Žâ â â žâ ‡â ½" }, { "input": "complected", "output": "⠉⠕â â â ‡â ‘⠉⠞⠫" }, { "input": "complement", "output": "⠉⠕â â â ‡â ‘â °â ž" }, { "input": "complementary", "output": "⠉⠕â â â ‡â ‘⠰⠞⠜⠽" }, { "input": "complemented", "output": "⠉⠕â â â ‡â ‘â °â žâ «" }, { "input": "complementing", "output": "⠉⠕â â â ‡â ‘â °â žâ ¬" }, { "input": "complements", "output": "⠉⠕â â â ‡â ‘â °â žâ Ž" }, { "input": "complete", "output": "⠉⠕â â â ‡â ‘â žâ ‘" }, { "input": "completed", "output": "⠉⠕â â â ‡â ‘â žâ «" }, { "input": "completely", "output": "⠉⠕â â â ‡â ‘⠞⠑⠇⠽" }, { "input": "completeness", "output": "⠉⠕â â â ‡â ‘â žâ ‘â °â Ž" }, { "input": "completer", "output": "⠉⠕â â â ‡â ‘â žâ »" }, { "input": "completes", "output": "⠉⠕â â â ‡â ‘â žâ ‘â Ž" }, { "input": "completest", "output": "⠉⠕â â â ‡â ‘â žâ ‘â Œ" }, { "input": "completing", "output": "⠉⠕â â â ‡â ‘â žâ ¬" }, { "input": "completion", "output": "⠉⠕â â â ‡â ‘â °â " }, { "input": "complex", "output": "⠉⠕â â â ‡â ‘â ­" }, { "input": "complexes", "output": "⠉⠕â â â ‡â ‘â ­â ‘â Ž" }, { "input": "complexion", "output": "⠉⠕â â â ‡â ‘â ­â Šâ •â " }, { "input": "complexioned", "output": "⠉⠕â â â ‡â ‘â ­â Šâ •â â «" }, { "input": "complexions", "output": "⠉⠕â â â ‡â ‘â ­â Šâ •â â Ž" }, { "input": "complexities", "output": "⠉⠕â â â ‡â ‘â ­â Šâ žâ Šâ ‘â Ž" }, { "input": "complexity", "output": "⠉⠕â â â ‡â ‘â ­â °â ½" }, { "input": "compliance", "output": "⠉⠕â â â ‡â Šâ ¨â ‘" }, { "input": "compliant", "output": "⠉⠕â â â ‡â Šâ â â ž" }, { "input": "complicate", "output": "⠉⠕â â â ‡â Šâ ‰â â žâ ‘" }, { "input": "complicated", "output": "⠉⠕â â â ‡â Šâ ‰â â žâ «" }, { "input": "complicates", "output": "⠉⠕â â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "complicating", "output": "⠉⠕â â â ‡â Šâ ‰â â žâ ¬" }, { "input": "complication", "output": "⠉⠕â â â ‡â Šâ ‰â â °â " }, { "input": "complications", "output": "⠉⠕â â â ‡â Šâ ‰â â °â â Ž" }, { "input": "complicity", "output": "⠉⠕â â â ‡â Šâ ‰â °â ½" }, { "input": "complied", "output": "⠉⠕â â â ‡â Šâ «" }, { "input": "complies", "output": "⠉⠕â â â ‡â Šâ ‘â Ž" }, { "input": "compliment", "output": "⠉⠕â â â ‡â Šâ °â ž" }, { "input": "complimentary", "output": "⠉⠕â â â ‡â Šâ °â žâ œâ ½" }, { "input": "complimented", "output": "⠉⠕â â â ‡â Šâ °â žâ «" }, { "input": "complimenting", "output": "⠉⠕â â â ‡â Šâ °â žâ ¬" }, { "input": "compliments", "output": "⠉⠕â â â ‡â Šâ °â žâ Ž" }, { "input": "comply", "output": "⠉⠕â â â ‡â ½" }, { "input": "complying", "output": "⠉⠕â â â ‡â ½â ¬" }, { "input": "component", "output": "⠉⠕â â â •â â ¢â ž" }, { "input": "components", "output": "⠉⠕â â â •â â ¢â žâ Ž" }, { "input": "comport", "output": "⠉⠕â â â •â —â ž" }, { "input": "comported", "output": "⠉⠕â â â •â —â žâ «" }, { "input": "comporting", "output": "⠉⠕â â â •â —â žâ ¬" }, { "input": "comportment", "output": "⠉⠕â â â •â —â žâ °â ž" }, { "input": "comports", "output": "⠉⠕â â â •â —â žâ Ž" }, { "input": "compose", "output": "⠉⠕â â â •â Žâ ‘" }, { "input": "composed", "output": "⠉⠕â â â •â Žâ «" }, { "input": "composer", "output": "⠉⠕â â â •â Žâ »" }, { "input": "composers", "output": "⠉⠕â â â •⠎⠻⠎" }, { "input": "composes", "output": "⠉⠕â â â •â Žâ ‘â Ž" }, { "input": "composing", "output": "⠉⠕â â â •â Žâ ¬" }, { "input": "composite", "output": "⠉⠕â â â •â Žâ Šâ žâ ‘" }, { "input": "composites", "output": "⠉⠕â â â •â Žâ Šâ žâ ‘â Ž" }, { "input": "composition", "output": "⠉⠕â â â •â Žâ Šâ °â " }, { "input": "compositions", "output": "⠉⠕â â â •â Žâ Šâ °â â Ž" }, { "input": "compositor", "output": "⠉⠕â â â •â Žâ Šâ žâ •â —" }, { "input": "compositors", "output": "⠉⠕â â â •â Žâ Šâ žâ •â —â Ž" }, { "input": "compost", "output": "⠉⠕â â â •â Œ" }, { "input": "composted", "output": "⠉⠕â â â •⠌⠫" }, { "input": "composting", "output": "⠉⠕â â â •⠌⠬" }, { "input": "composts", "output": "⠉⠕â â â •⠌⠎" }, { "input": "composure", "output": "⠉⠕â â â •⠎⠥⠗⠑" }, { "input": "compote", "output": "⠉⠕â â â •â žâ ‘" }, { "input": "compotes", "output": "⠉⠕â â â •â žâ ‘â Ž" }, { "input": "compound", "output": "⠉⠕â â â ¨â ™" }, { "input": "compounded", "output": "⠉⠕â â â ¨â ™â «" }, { "input": "compounding", "output": "⠉⠕â â â ¨â ™â ¬" }, { "input": "compounds", "output": "⠉⠕â â â ¨â ™â Ž" }, { "input": "comprehend", "output": "⠉⠕â â â —⠑⠓⠢⠙" }, { "input": "comprehended", "output": "⠉⠕â â â —⠑⠓⠢⠙⠫" }, { "input": "comprehending", "output": "⠉⠕â â â —⠑⠓⠢⠙⠬" }, { "input": "comprehends", "output": "⠉⠕â â â —⠑⠓⠢⠙⠎" }, { "input": "comprehensibility", "output": "⠉⠕â â â —⠑⠓⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "comprehensible", "output": "⠉⠕â â â —⠑⠓⠢⠎⠊⠃⠇⠑" }, { "input": "comprehension", "output": "⠉⠕â â â —⠑⠓⠢⠨â " }, { "input": "comprehensions", "output": "⠉⠕â â â —⠑⠓⠢⠨â â Ž" }, { "input": "comprehensive", "output": "⠉⠕â â â —⠑⠓⠢⠎⠊⠧⠑" }, { "input": "comprehensively", "output": "⠉⠕â â â —⠑⠓⠢⠎⠊⠧⠑⠇⠽" }, { "input": "comprehensiveness", "output": "⠉⠕â â â —⠑⠓⠢⠎⠊⠧⠑⠰⠎" }, { "input": "comprehensives", "output": "⠉⠕â â â —⠑⠓⠢⠎⠊⠧⠑⠎" }, { "input": "compress", "output": "⠉⠕â â â —â ‘â Žâ Ž" }, { "input": "compressed", "output": "⠉⠕â â â —â ‘â Žâ Žâ «" }, { "input": "compresses", "output": "⠉⠕â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "compressing", "output": "⠉⠕â â â —â ‘â Žâ Žâ ¬" }, { "input": "compression", "output": "⠉⠕â â â —â ‘â Žâ ¨â " }, { "input": "compressor", "output": "⠉⠕â â â —â ‘â Žâ Žâ •â —" }, { "input": "compressors", "output": "⠉⠕â â â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "comprise", "output": "⠉⠕â â â —â Šâ Žâ ‘" }, { "input": "comprised", "output": "⠉⠕â â â —â Šâ Žâ «" }, { "input": "comprises", "output": "⠉⠕â â â —â Šâ Žâ ‘â Ž" }, { "input": "comprising", "output": "⠉⠕â â â —â Šâ Žâ ¬" }, { "input": "compromise", "output": "⠉⠕â â â —â •â â Šâ Žâ ‘" }, { "input": "compromised", "output": "⠉⠕â â â —â •â â Šâ Žâ «" }, { "input": "compromises", "output": "⠉⠕â â â —â •â â Šâ Žâ ‘â Ž" }, { "input": "compromising", "output": "⠉⠕â â â —â •â â Šâ Žâ ¬" }, { "input": "comptroller", "output": "⠉⠕â â â žâ —⠕⠇⠇⠻" }, { "input": "comptrollers", "output": "⠉⠕â â â žâ —⠕⠇⠇⠻⠎" }, { "input": "compulsion", "output": "⠉⠕â â â ¥â ‡â ¨â " }, { "input": "compulsions", "output": "⠉⠕â â â ¥â ‡â ¨â â Ž" }, { "input": "compulsive", "output": "⠉⠕â â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "compulsively", "output": "⠉⠕â â â ¥â ‡â Žâ Šâ §â ‘⠇⠽" }, { "input": "compulsiveness", "output": "⠉⠕â â â ¥â ‡â Žâ Šâ §â ‘â °â Ž" }, { "input": "compulsories", "output": "⠉⠕â â â ¥â ‡â Žâ •â —â Šâ ‘â Ž" }, { "input": "compulsorily", "output": "⠉⠕â â â ¥â ‡â Žâ •⠗⠊⠇⠽" }, { "input": "compulsory", "output": "⠉⠕â â â ¥â ‡â Žâ •â —â ½" }, { "input": "compunction", "output": "⠉⠕â â â ¥â â ‰â °â " }, { "input": "compunctions", "output": "⠉⠕â â â ¥â â ‰â °â â Ž" }, { "input": "computation", "output": "⠉⠕â â â ¥â žâ â °â " }, { "input": "computational", "output": "⠉⠕â â â ¥â žâ â °â â â ‡" }, { "input": "computationally", "output": "⠉⠕â â â ¥â žâ â °â â â ‡â ‡â ½" }, { "input": "computations", "output": "⠉⠕â â â ¥â žâ â °â â Ž" }, { "input": "compute", "output": "⠉⠕â â â ¥â žâ ‘" }, { "input": "computed", "output": "⠉⠕â â â ¥â žâ «" }, { "input": "computer", "output": "⠉⠕â â â ¥â žâ »" }, { "input": "computerization", "output": "⠉⠕â â â ¥â žâ »â Šâ µâ â °â " }, { "input": "computerize", "output": "⠉⠕â â â ¥â žâ »â Šâ µâ ‘" }, { "input": "computerized", "output": "⠉⠕â â â ¥â žâ »â Šâ µâ «" }, { "input": "computerizes", "output": "⠉⠕â â â ¥â žâ »â Šâ µâ ‘â Ž" }, { "input": "computerizing", "output": "⠉⠕â â â ¥â žâ »â Šâ µâ ¬" }, { "input": "computers", "output": "⠉⠕â â â ¥â žâ »â Ž" }, { "input": "computes", "output": "⠉⠕â â â ¥â žâ ‘â Ž" }, { "input": "computing", "output": "⠉⠕â â â ¥â žâ ¬" }, { "input": "comrade", "output": "⠉⠕â â —â â ™â ‘" }, { "input": "comrades", "output": "⠉⠕â â —â â ™â ‘â Ž" }, { "input": "comradeship", "output": "⠉⠕â â —â â ™â ‘â ©â Šâ " }, { "input": "con", "output": "⠉⠕â " }, { "input": "concatenate", "output": "â ’â ‰â â žâ ¢â â žâ ‘" }, { "input": "concatenated", "output": "â ’â ‰â â žâ ¢â â žâ «" }, { "input": "concatenates", "output": "â ’â ‰â â žâ ¢â â žâ ‘â Ž" }, { "input": "concatenating", "output": "â ’â ‰â â žâ ¢â â žâ ¬" }, { "input": "concatenation", "output": "â ’â ‰â â žâ ¢â â °â " }, { "input": "concatenations", "output": "â ’â ‰â â žâ ¢â â °â â Ž" }, { "input": "concave", "output": "â ’â ‰â â §â ‘" }, { "input": "concavities", "output": "â ’â ‰â â §â Šâ žâ Šâ ‘â Ž" }, { "input": "concavity", "output": "â ’â ‰â â §â °â ½" }, { "input": "conceal", "output": "⠒⠉⠂⠇" }, { "input": "concealed", "output": "⠒⠉⠂⠇⠫" }, { "input": "concealing", "output": "⠒⠉⠂⠇⠬" }, { "input": "concealment", "output": "⠒⠉⠂⠇⠰⠞" }, { "input": "conceals", "output": "⠒⠉⠂⠇⠎" }, { "input": "concede", "output": "⠒⠉⠫⠑" }, { "input": "conceded", "output": "⠒⠉⠫⠫" }, { "input": "concedes", "output": "⠒⠉⠫⠑⠎" }, { "input": "conceding", "output": "⠒⠉⠫⠬" }, { "input": "conceit", "output": "⠒⠉⠑⠊⠞" }, { "input": "conceited", "output": "⠒⠉⠑⠊⠞⠫" }, { "input": "conceits", "output": "⠒⠉⠑⠊⠞⠎" }, { "input": "conceivable", "output": "⠒⠉⠑⠊⠧â â ƒâ ‡â ‘" }, { "input": "conceivably", "output": "⠒⠉⠑⠊⠧â â ƒâ ‡â ½" }, { "input": "conceive", "output": "⠒⠉⠧" }, { "input": "conceived", "output": "⠒⠉⠧⠙" }, { "input": "conceives", "output": "⠒⠉⠧⠎" }, { "input": "conceiving", "output": "⠒⠉⠧⠛" }, { "input": "concentrate", "output": "⠒⠉⠢⠞⠗â â žâ ‘" }, { "input": "concentrated", "output": "⠒⠉⠢⠞⠗â â žâ «" }, { "input": "concentrates", "output": "⠒⠉⠢⠞⠗â â žâ ‘â Ž" }, { "input": "concentrating", "output": "⠒⠉⠢⠞⠗â â žâ ¬" }, { "input": "concentration", "output": "⠒⠉⠢⠞⠗â â °â " }, { "input": "concentrations", "output": "⠒⠉⠢⠞⠗â â °â â Ž" }, { "input": "concentric", "output": "⠒⠉⠢⠞⠗⠊⠉" }, { "input": "concentrically", "output": "⠒⠉⠢⠞⠗⠊⠉â â ‡â ‡â ½" }, { "input": "concept", "output": "⠒⠉⠑â â ž" }, { "input": "conception", "output": "⠒⠉⠑â â °â " }, { "input": "conceptions", "output": "⠒⠉⠑â â °â â Ž" }, { "input": "concepts", "output": "⠒⠉⠑â â žâ Ž" }, { "input": "conceptual", "output": "⠒⠉⠑â â žâ ¥â â ‡" }, { "input": "conceptualization", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ â °â " }, { "input": "conceptualizations", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ â °â â Ž" }, { "input": "conceptualize", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "conceptualized", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ «" }, { "input": "conceptualizes", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "conceptualizing", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ ¬" }, { "input": "conceptually", "output": "⠒⠉⠑â â žâ ¥â â ‡â ‡â ½" }, { "input": "concern", "output": "⠒⠉⠻â " }, { "input": "concerned", "output": "⠒⠉⠻â â «" }, { "input": "concerning", "output": "⠒⠉⠻â â ¬" }, { "input": "concerns", "output": "⠒⠉⠻â â Ž" }, { "input": "concert", "output": "⠒⠉⠻⠞" }, { "input": "concerted", "output": "⠒⠉⠻⠞⠫" }, { "input": "concerti", "output": "⠒⠉⠻⠞⠊" }, { "input": "concertina", "output": "⠒⠉⠻⠞⠔â " }, { "input": "concertinaed", "output": "⠒⠉⠻⠞⠔â â «" }, { "input": "concertinaing", "output": "⠒⠉⠻⠞⠔â â ¬" }, { "input": "concertinas", "output": "⠒⠉⠻⠞⠔â â Ž" }, { "input": "concerting", "output": "⠒⠉⠻⠞⠬" }, { "input": "concertmaster", "output": "⠒⠉⠻⠞â â â Œâ »" }, { "input": "concertmasters", "output": "⠒⠉⠻⠞â â â Œâ »â Ž" }, { "input": "concerto", "output": "⠒⠉⠻⠞⠕" }, { "input": "concertos", "output": "⠒⠉⠻⠞⠕⠎" }, { "input": "concerts", "output": "⠒⠉⠻⠞⠎" }, { "input": "concession", "output": "⠒⠉⠑⠎⠨â " }, { "input": "concessionaire", "output": "⠒⠉⠑⠎⠨â â â Šâ —â ‘" }, { "input": "concessionaires", "output": "⠒⠉⠑⠎⠨â â â Šâ —â ‘â Ž" }, { "input": "concessions", "output": "⠒⠉⠑⠎⠨â â Ž" }, { "input": "conch", "output": "⠉⠕â â ¡" }, { "input": "conches", "output": "â ’â ¡â ‘â Ž" }, { "input": "conchs", "output": "â ’â ¡â Ž" }, { "input": "concierge", "output": "⠒⠉⠊⠻⠛⠑" }, { "input": "concierges", "output": "⠒⠉⠊⠻⠛⠑⠎" }, { "input": "conciliate", "output": "⠒⠉⠊⠇⠊â â žâ ‘" }, { "input": "conciliated", "output": "⠒⠉⠊⠇⠊â â žâ «" }, { "input": "conciliates", "output": "⠒⠉⠊⠇⠊â â žâ ‘â Ž" }, { "input": "conciliating", "output": "⠒⠉⠊⠇⠊â â žâ ¬" }, { "input": "conciliation", "output": "⠒⠉⠊⠇⠊â â °â " }, { "input": "conciliator", "output": "⠒⠉⠊⠇⠊â â žâ •â —" }, { "input": "conciliators", "output": "⠒⠉⠊⠇⠊â â žâ •â —â Ž" }, { "input": "conciliatory", "output": "⠒⠉⠊⠇⠊â â žâ •â —â ½" }, { "input": "concise", "output": "⠒⠉⠊⠎⠑" }, { "input": "concisely", "output": "⠒⠉⠊⠎⠑⠇⠽" }, { "input": "conciseness", "output": "⠒⠉⠊⠎⠑⠰⠎" }, { "input": "conciser", "output": "⠒⠉⠊⠎⠻" }, { "input": "concisest", "output": "⠒⠉⠊⠎⠑⠌" }, { "input": "conclave", "output": "⠒⠉⠇â â §â ‘" }, { "input": "conclaves", "output": "⠒⠉⠇â â §â ‘â Ž" }, { "input": "conclude", "output": "⠒⠉⠇⠥⠙⠑" }, { "input": "concluded", "output": "⠒⠉⠇⠥⠙⠫" }, { "input": "concludes", "output": "⠒⠉⠇⠥⠙⠑⠎" }, { "input": "concluding", "output": "⠒⠉⠇⠥⠙⠬" }, { "input": "conclusion", "output": "⠒⠉⠇⠥⠨â " }, { "input": "conclusions", "output": "⠒⠉⠇⠥⠨â â Ž" }, { "input": "conclusive", "output": "⠒⠉⠇⠥⠎⠊⠧⠑" }, { "input": "conclusively", "output": "⠒⠉⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "concoct", "output": "⠒⠉⠕⠉⠞" }, { "input": "concocted", "output": "⠒⠉⠕⠉⠞⠫" }, { "input": "concocting", "output": "⠒⠉⠕⠉⠞⠬" }, { "input": "concoction", "output": "⠒⠉⠕⠉⠰â " }, { "input": "concoctions", "output": "⠒⠉⠕⠉⠰â â Ž" }, { "input": "concocts", "output": "⠒⠉⠕⠉⠞⠎" }, { "input": "concomitant", "output": "⠒⠉⠕â â Šâ žâ â â ž" }, { "input": "concomitants", "output": "⠒⠉⠕â â Šâ žâ â â žâ Ž" }, { "input": "concord", "output": "⠒⠉⠕⠗⠙" }, { "input": "concordance", "output": "⠒⠉⠕⠗⠙⠨⠑" }, { "input": "concordances", "output": "⠒⠉⠕⠗⠙⠨⠑⠎" }, { "input": "concordant", "output": "⠒⠉⠕⠗⠙â â â ž" }, { "input": "concourse", "output": "⠒⠉⠳⠗⠎⠑" }, { "input": "concourses", "output": "⠒⠉⠳⠗⠎⠑⠎" }, { "input": "concrete", "output": "⠒⠉⠗⠑⠞⠑" }, { "input": "concreted", "output": "⠒⠉⠗⠑⠞⠫" }, { "input": "concretely", "output": "⠒⠉⠗⠑⠞⠑⠇⠽" }, { "input": "concretes", "output": "⠒⠉⠗⠑⠞⠑⠎" }, { "input": "concreting", "output": "⠒⠉⠗⠑⠞⠬" }, { "input": "concubine", "output": "⠒⠉⠥⠃⠔⠑" }, { "input": "concubines", "output": "⠒⠉⠥⠃⠔⠑⠎" }, { "input": "concur", "output": "⠒⠉⠥⠗" }, { "input": "concurred", "output": "⠒⠉⠥⠗⠗⠫" }, { "input": "concurrence", "output": "⠒⠉⠥⠗⠗⠰⠑" }, { "input": "concurrences", "output": "⠒⠉⠥⠗⠗⠰⠑⠎" }, { "input": "concurrency", "output": "⠒⠉⠥⠗⠗⠢⠉⠽" }, { "input": "concurrent", "output": "⠒⠉⠥⠗⠗⠢⠞" }, { "input": "concurrently", "output": "⠒⠉⠥⠗⠗⠢⠞⠇⠽" }, { "input": "concurring", "output": "⠒⠉⠥⠗⠗⠬" }, { "input": "concurs", "output": "⠒⠉⠥⠗⠎" }, { "input": "concussion", "output": "⠒⠉⠥⠎⠨â " }, { "input": "concussions", "output": "⠒⠉⠥⠎⠨â â Ž" }, { "input": "condemn", "output": "⠒⠙⠑â â " }, { "input": "condemnation", "output": "⠒⠙⠑â â â â °â " }, { "input": "condemnations", "output": "⠒⠙⠑â â â â °â â Ž" }, { "input": "condemnatory", "output": "⠒⠙⠑â â â â žâ •â —â ½" }, { "input": "condemned", "output": "⠒⠙⠑â â â «" }, { "input": "condemning", "output": "⠒⠙⠑â â â ¬" }, { "input": "condemns", "output": "⠒⠙⠑â â â Ž" }, { "input": "condensation", "output": "⠒⠙⠢⠎â â °â " }, { "input": "condensations", "output": "⠒⠙⠢⠎â â °â â Ž" }, { "input": "condense", "output": "⠒⠙⠢⠎⠑" }, { "input": "condensed", "output": "⠒⠙⠢⠎⠫" }, { "input": "condenser", "output": "⠒⠙⠢⠎⠻" }, { "input": "condensers", "output": "⠒⠙⠢⠎⠻⠎" }, { "input": "condenses", "output": "⠒⠙⠢⠎⠑⠎" }, { "input": "condensing", "output": "⠒⠙⠢⠎⠬" }, { "input": "condescend", "output": "⠒⠙⠑⠎⠉⠢⠙" }, { "input": "condescended", "output": "⠒⠙⠑⠎⠉⠢⠙⠫" }, { "input": "condescending", "output": "⠒⠙⠑⠎⠉⠢⠙⠬" }, { "input": "condescendingly", "output": "⠒⠙⠑⠎⠉⠢⠙⠬⠇⠽" }, { "input": "condescends", "output": "⠒⠙⠑⠎⠉⠢⠙⠎" }, { "input": "condescension", "output": "⠒⠙⠑⠎⠉⠢⠨â " }, { "input": "condiment", "output": "⠒⠙⠊⠰⠞" }, { "input": "condiments", "output": "⠒⠙⠊⠰⠞⠎" }, { "input": "condition", "output": "⠒⠙⠊⠰â " }, { "input": "conditional", "output": "⠒⠙⠊⠰â â â ‡" }, { "input": "conditionally", "output": "⠒⠙⠊⠰â â â ‡â ‡â ½" }, { "input": "conditionals", "output": "⠒⠙⠊⠰â â â ‡â Ž" }, { "input": "conditioned", "output": "⠒⠙⠊⠰â â «" }, { "input": "conditioner", "output": "⠒⠙⠊⠰â â »" }, { "input": "conditioners", "output": "⠒⠙⠊⠰â â »â Ž" }, { "input": "conditioning", "output": "⠒⠙⠊⠰â â ¬" }, { "input": "conditions", "output": "⠒⠙⠊⠰â â Ž" }, { "input": "condo", "output": "⠒⠙⠕" }, { "input": "condoes", "output": "⠒⠙⠕⠑⠎" }, { "input": "condole", "output": "⠒⠙⠕⠇⠑" }, { "input": "condoled", "output": "⠒⠙⠕⠇⠫" }, { "input": "condolence", "output": "⠒⠙⠕⠇⠰⠑" }, { "input": "condolences", "output": "⠒⠙⠕⠇⠰⠑⠎" }, { "input": "condoles", "output": "⠒⠙⠕⠇⠑⠎" }, { "input": "condoling", "output": "⠒⠙⠕⠇⠬" }, { "input": "condom", "output": "⠒⠙⠕â " }, { "input": "condominium", "output": "⠒⠙⠕â â ”â Šâ ¥â " }, { "input": "condominiums", "output": "⠒⠙⠕â â ”â Šâ ¥â â Ž" }, { "input": "condoms", "output": "⠒⠙⠕â â Ž" }, { "input": "condone", "output": "â ’â ™â â •" }, { "input": "condoned", "output": "⠒⠙⠕â â «" }, { "input": "condones", "output": "â ’â ™â â •â Ž" }, { "input": "condoning", "output": "⠒⠙⠕â â ¬" }, { "input": "condor", "output": "⠒⠙⠕⠗" }, { "input": "condors", "output": "⠒⠙⠕⠗⠎" }, { "input": "condos", "output": "⠒⠙⠕⠎" }, { "input": "conduce", "output": "⠒⠙⠥⠉⠑" }, { "input": "conduced", "output": "⠒⠙⠥⠉⠫" }, { "input": "conduces", "output": "⠒⠙⠥⠉⠑⠎" }, { "input": "conducing", "output": "⠒⠙⠥⠉⠬" }, { "input": "conducive", "output": "⠒⠙⠥⠉⠊⠧⠑" }, { "input": "conduct", "output": "⠒⠙⠥⠉⠞" }, { "input": "conducted", "output": "⠒⠙⠥⠉⠞⠫" }, { "input": "conducting", "output": "⠒⠙⠥⠉⠞⠬" }, { "input": "conduction", "output": "⠒⠙⠥⠉⠰â " }, { "input": "conductive", "output": "⠒⠙⠥⠉⠞⠊⠧⠑" }, { "input": "conductivity", "output": "⠒⠙⠥⠉⠞⠊⠧⠰⠽" }, { "input": "conductor", "output": "⠒⠙⠥⠉⠞⠕⠗" }, { "input": "conductors", "output": "⠒⠙⠥⠉⠞⠕⠗⠎" }, { "input": "conducts", "output": "⠒⠙⠥⠉⠞⠎" }, { "input": "conduit", "output": "⠒⠙⠥⠊⠞" }, { "input": "conduits", "output": "⠒⠙⠥⠊⠞⠎" }, { "input": "cone", "output": "â ‰â â •" }, { "input": "cones", "output": "â ‰â â •â Ž" }, { "input": "confab", "output": "â ’â ‹â â ƒ" }, { "input": "confabbed", "output": "â ’â ‹â â †â «" }, { "input": "confabbing", "output": "â ’â ‹â â †â ¬" }, { "input": "confabs", "output": "â ’â ‹â â ƒâ Ž" }, { "input": "confection", "output": "⠒⠋⠑⠉⠰â " }, { "input": "confectioner", "output": "⠒⠋⠑⠉⠰â â »" }, { "input": "confectioneries", "output": "⠒⠋⠑⠉⠰â â »â Šâ ‘â Ž" }, { "input": "confectioners", "output": "⠒⠋⠑⠉⠰â â »â Ž" }, { "input": "confectionery", "output": "⠒⠋⠑⠉⠰â â »â ½" }, { "input": "confections", "output": "⠒⠋⠑⠉⠰â â Ž" }, { "input": "confederacies", "output": "â ’â ‹â «â »â â ‰â Šâ ‘â Ž" }, { "input": "confederacy", "output": "â ’â ‹â «â »â â ‰â ½" }, { "input": "confederate", "output": "â ’â ‹â «â »â â žâ ‘" }, { "input": "confederated", "output": "â ’â ‹â «â »â â žâ «" }, { "input": "confederates", "output": "â ’â ‹â «â »â â žâ ‘â Ž" }, { "input": "confederating", "output": "â ’â ‹â «â »â â žâ ¬" }, { "input": "confederation", "output": "â ’â ‹â «â »â â °â " }, { "input": "confederations", "output": "â ’â ‹â «â »â â °â â Ž" }, { "input": "confer", "output": "â ’â ‹â »" }, { "input": "conference", "output": "⠒⠋⠻⠰⠑" }, { "input": "conferences", "output": "⠒⠋⠻⠰⠑⠎" }, { "input": "conferencing", "output": "⠒⠋⠻⠢⠉⠬" }, { "input": "conferment", "output": "⠒⠋⠻⠰⠞" }, { "input": "conferments", "output": "⠒⠋⠻⠰⠞⠎" }, { "input": "conferred", "output": "⠒⠋⠻⠗⠫" }, { "input": "conferrer", "output": "⠒⠋⠻⠗⠻" }, { "input": "conferring", "output": "⠒⠋⠻⠗⠬" }, { "input": "confers", "output": "⠒⠋⠻⠎" }, { "input": "confess", "output": "â ’â ‹â ‘â Žâ Ž" }, { "input": "confessed", "output": "â ’â ‹â ‘â Žâ Žâ «" }, { "input": "confessedly", "output": "⠒⠋⠑⠎⠎⠫⠇⠽" }, { "input": "confesses", "output": "â ’â ‹â ‘â Žâ Žâ ‘â Ž" }, { "input": "confessing", "output": "â ’â ‹â ‘â Žâ Žâ ¬" }, { "input": "confession", "output": "â ’â ‹â ‘â Žâ ¨â " }, { "input": "confessional", "output": "â ’â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "confessionals", "output": "â ’â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "confessions", "output": "â ’â ‹â ‘â Žâ ¨â â Ž" }, { "input": "confessor", "output": "â ’â ‹â ‘â Žâ Žâ •â —" }, { "input": "confessors", "output": "â ’â ‹â ‘â Žâ Žâ •â —â Ž" }, { "input": "confetti", "output": "â ’â ‹â ‘â žâ žâ Š" }, { "input": "confidant", "output": "â ’â ‹â Šâ ™â â â ž" }, { "input": "confidante", "output": "â ’â ‹â Šâ ™â â â žâ ‘" }, { "input": "confidantes", "output": "â ’â ‹â Šâ ™â â â žâ ‘â Ž" }, { "input": "confidants", "output": "â ’â ‹â Šâ ™â â â žâ Ž" }, { "input": "confide", "output": "⠒⠋⠊⠙⠑" }, { "input": "confided", "output": "⠒⠋⠊⠙⠫" }, { "input": "confidence", "output": "⠒⠋⠊⠙⠰⠑" }, { "input": "confidences", "output": "⠒⠋⠊⠙⠰⠑⠎" }, { "input": "confident", "output": "⠒⠋⠊⠙⠢⠞" }, { "input": "confidential", "output": "⠒⠋⠊⠙⠢⠞⠊â â ‡" }, { "input": "confidentiality", "output": "⠒⠋⠊⠙⠢⠞⠊â â ‡â °â ½" }, { "input": "confidentially", "output": "⠒⠋⠊⠙⠢⠞⠊â â ‡â ‡â ½" }, { "input": "confidently", "output": "⠒⠋⠊⠙⠢⠞⠇⠽" }, { "input": "confides", "output": "⠒⠋⠊⠙⠑⠎" }, { "input": "confiding", "output": "⠒⠋⠊⠙⠬" }, { "input": "configurable", "output": "⠒⠋⠊⠛⠥⠗â â ƒâ ‡â ‘" }, { "input": "configuration", "output": "⠒⠋⠊⠛⠥⠗â â °â " }, { "input": "configurations", "output": "⠒⠋⠊⠛⠥⠗â â °â â Ž" }, { "input": "configure", "output": "⠒⠋⠊⠛⠥⠗⠑" }, { "input": "configured", "output": "⠒⠋⠊⠛⠥⠗⠫" }, { "input": "configures", "output": "⠒⠋⠊⠛⠥⠗⠑⠎" }, { "input": "configuring", "output": "⠒⠋⠊⠛⠥⠗⠬" }, { "input": "confine", "output": "⠒⠋⠔⠑" }, { "input": "confined", "output": "⠒⠋⠔⠫" }, { "input": "confinement", "output": "⠒⠋⠔⠑⠰⠞" }, { "input": "confinements", "output": "⠒⠋⠔⠑⠰⠞⠎" }, { "input": "confines", "output": "⠒⠋⠔⠑⠎" }, { "input": "confining", "output": "⠒⠋⠔⠬" }, { "input": "confirm", "output": "â ’â ‹â Šâ —â " }, { "input": "confirmation", "output": "â ’â ‹â Šâ —â â â °â " }, { "input": "confirmations", "output": "â ’â ‹â Šâ —â â â °â â Ž" }, { "input": "confirmatory", "output": "â ’â ‹â Šâ —â â â žâ •â —â ½" }, { "input": "confirmed", "output": "â ’â ‹â Šâ —â â «" }, { "input": "confirming", "output": "â ’â ‹â Šâ —â â ¬" }, { "input": "confirms", "output": "â ’â ‹â Šâ —â â Ž" }, { "input": "confiscate", "output": "â ’â ‹â Šâ Žâ ‰â â žâ ‘" }, { "input": "confiscated", "output": "â ’â ‹â Šâ Žâ ‰â â žâ «" }, { "input": "confiscates", "output": "â ’â ‹â Šâ Žâ ‰â â žâ ‘â Ž" }, { "input": "confiscating", "output": "â ’â ‹â Šâ Žâ ‰â â žâ ¬" }, { "input": "confiscation", "output": "â ’â ‹â Šâ Žâ ‰â â °â " }, { "input": "confiscations", "output": "â ’â ‹â Šâ Žâ ‰â â °â â Ž" }, { "input": "conflagration", "output": "â ’â ‹â ‡â â ›â —â â °â " }, { "input": "conflagrations", "output": "â ’â ‹â ‡â â ›â —â â °â â Ž" }, { "input": "conflict", "output": "⠒⠋⠇⠊⠉⠞" }, { "input": "conflicted", "output": "⠒⠋⠇⠊⠉⠞⠫" }, { "input": "conflicting", "output": "⠒⠋⠇⠊⠉⠞⠬" }, { "input": "conflicts", "output": "⠒⠋⠇⠊⠉⠞⠎" }, { "input": "confluence", "output": "⠒⠋⠇⠥⠰⠑" }, { "input": "confluences", "output": "⠒⠋⠇⠥⠰⠑⠎" }, { "input": "confluent", "output": "⠒⠋⠇⠥⠢⠞" }, { "input": "conform", "output": "â ’â ¿â " }, { "input": "conformance", "output": "â ’â ¿â â ¨â ‘" }, { "input": "conformation", "output": "â ’â ¿â â â °â " }, { "input": "conformations", "output": "â ’â ¿â â â °â â Ž" }, { "input": "conformed", "output": "â ’â ¿â â «" }, { "input": "conforming", "output": "â ’â ¿â â ¬" }, { "input": "conformist", "output": "â ’â ¿â â Šâ Œ" }, { "input": "conformists", "output": "â ’â ¿â â Šâ Œâ Ž" }, { "input": "conformity", "output": "â ’â ¿â â °â ½" }, { "input": "conforms", "output": "â ’â ¿â â Ž" }, { "input": "confound", "output": "⠒⠋⠨⠙" }, { "input": "confounded", "output": "⠒⠋⠨⠙⠫" }, { "input": "confounding", "output": "⠒⠋⠨⠙⠬" }, { "input": "confounds", "output": "⠒⠋⠨⠙⠎" }, { "input": "confront", "output": "â ’â ‹â —â •â â ž" }, { "input": "confrontation", "output": "â ’â ‹â —â •â â žâ â °â " }, { "input": "confrontational", "output": "â ’â ‹â —â •â â žâ â °â â â ‡" }, { "input": "confrontations", "output": "â ’â ‹â —â •â â žâ â °â â Ž" }, { "input": "confronted", "output": "â ’â ‹â —â •â â žâ «" }, { "input": "confronting", "output": "â ’â ‹â —â •â â žâ ¬" }, { "input": "confronts", "output": "â ’â ‹â —â •â â žâ Ž" }, { "input": "confrère", "output": "⠒⠋⠗⠠⠘⠻â â ¡â â £â —â ‘" }, { "input": "confrères", "output": "⠒⠋⠗⠠⠘⠻â â ¡â â £â —â ‘â Ž" }, { "input": "confuse", "output": "⠒⠋⠥⠎⠑" }, { "input": "confused", "output": "⠒⠋⠥⠎⠫" }, { "input": "confusedly", "output": "⠒⠋⠥⠎⠫⠇⠽" }, { "input": "confuses", "output": "⠒⠋⠥⠎⠑⠎" }, { "input": "confusing", "output": "⠒⠋⠥⠎⠬" }, { "input": "confusingly", "output": "⠒⠋⠥⠎⠬⠇⠽" }, { "input": "confusion", "output": "⠒⠋⠥⠨â " }, { "input": "confusions", "output": "⠒⠋⠥⠨â â Ž" }, { "input": "confute", "output": "⠒⠋⠥⠞⠑" }, { "input": "confuted", "output": "⠒⠋⠥⠞⠫" }, { "input": "confutes", "output": "⠒⠋⠥⠞⠑⠎" }, { "input": "confuting", "output": "⠒⠋⠥⠞⠬" }, { "input": "conga", "output": "â ’â ›â " }, { "input": "congaed", "output": "â ’â ›â â «" }, { "input": "congaing", "output": "â ’â ›â â ¬" }, { "input": "congas", "output": "â ’â ›â â Ž" }, { "input": "congeal", "output": "⠒⠛⠂⠇" }, { "input": "congealed", "output": "⠒⠛⠂⠇⠫" }, { "input": "congealing", "output": "⠒⠛⠂⠇⠬" }, { "input": "congeals", "output": "⠒⠛⠂⠇⠎" }, { "input": "congenial", "output": "⠒⠛⠢⠊â â ‡" }, { "input": "congeniality", "output": "⠒⠛⠢⠊â â ‡â °â ½" }, { "input": "congenially", "output": "⠒⠛⠢⠊â â ‡â ‡â ½" }, { "input": "congenital", "output": "⠒⠛⠢⠊⠞â â ‡" }, { "input": "congenitally", "output": "⠒⠛⠢⠊⠞â â ‡â ‡â ½" }, { "input": "congest", "output": "⠒⠛⠑⠌" }, { "input": "congested", "output": "⠒⠛⠑⠌⠫" }, { "input": "congesting", "output": "⠒⠛⠑⠌⠬" }, { "input": "congestion", "output": "⠒⠛⠑⠎⠰â " }, { "input": "congestive", "output": "⠒⠛⠑⠌⠊⠧⠑" }, { "input": "congests", "output": "⠒⠛⠑⠌⠎" }, { "input": "conglomerate", "output": "⠒⠛⠇⠕â â »â â žâ ‘" }, { "input": "conglomerated", "output": "⠒⠛⠇⠕â â »â â žâ «" }, { "input": "conglomerates", "output": "⠒⠛⠇⠕â â »â â žâ ‘â Ž" }, { "input": "conglomerating", "output": "⠒⠛⠇⠕â â »â â žâ ¬" }, { "input": "conglomeration", "output": "⠒⠛⠇⠕â â »â â °â " }, { "input": "conglomerations", "output": "⠒⠛⠇⠕â â »â â °â â Ž" }, { "input": "congratulate", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ ‘" }, { "input": "congratulated", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ «" }, { "input": "congratulates", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "congratulating", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ ¬" }, { "input": "congratulation", "output": "⠒⠛⠗â â žâ ¥â ‡â â °â " }, { "input": "congratulations", "output": "⠒⠛⠗â â žâ ¥â ‡â â °â â Ž" }, { "input": "congratulatory", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ •â —â ½" }, { "input": "congregate", "output": "⠒⠛⠗⠑⠛â â žâ ‘" }, { "input": "congregated", "output": "⠒⠛⠗⠑⠛â â žâ «" }, { "input": "congregates", "output": "⠒⠛⠗⠑⠛â â žâ ‘â Ž" }, { "input": "congregating", "output": "⠒⠛⠗⠑⠛â â žâ ¬" }, { "input": "congregation", "output": "⠒⠛⠗⠑⠛â â °â " }, { "input": "congregational", "output": "⠒⠛⠗⠑⠛â â °â â â ‡" }, { "input": "congregations", "output": "⠒⠛⠗⠑⠛â â °â â Ž" }, { "input": "congress", "output": "⠒⠛⠗⠑⠎⠎" }, { "input": "congresses", "output": "⠒⠛⠗⠑⠎⠎⠑⠎" }, { "input": "congressional", "output": "⠒⠛⠗⠑⠎⠨â â â ‡" }, { "input": "congressman", "output": "⠒⠛⠗⠑⠎⠎â â â " }, { "input": "congressmen", "output": "⠒⠛⠗⠑⠎⠎â â ¢" }, { "input": "congresswoman", "output": "⠒⠛⠗⠑⠎⠎⠺⠕â â â " }, { "input": "congresswomen", "output": "⠒⠛⠗⠑⠎⠎⠺⠕â â ¢" }, { "input": "congruence", "output": "⠒⠛⠗⠥⠰⠑" }, { "input": "congruent", "output": "⠒⠛⠗⠥⠢⠞" }, { "input": "congruities", "output": "⠒⠛⠗⠥⠊⠞⠊⠑⠎" }, { "input": "congruity", "output": "⠒⠛⠗⠥⠰⠽" }, { "input": "congruous", "output": "⠒⠛⠗⠥⠳⠎" }, { "input": "conic", "output": "â ’â Šâ ‰" }, { "input": "conical", "output": "â ’â Šâ ‰â â ‡" }, { "input": "conics", "output": "⠒⠊⠉⠎" }, { "input": "conifer", "output": "â ’â Šâ ‹â »" }, { "input": "coniferous", "output": "⠒⠊⠋⠻⠳⠎" }, { "input": "conifers", "output": "⠒⠊⠋⠻⠎" }, { "input": "conjectural", "output": "⠒⠚⠑⠉⠞⠥⠗â â ‡" }, { "input": "conjecture", "output": "⠒⠚⠑⠉⠞⠥⠗⠑" }, { "input": "conjectured", "output": "⠒⠚⠑⠉⠞⠥⠗⠫" }, { "input": "conjectures", "output": "⠒⠚⠑⠉⠞⠥⠗⠑⠎" }, { "input": "conjecturing", "output": "⠒⠚⠑⠉⠞⠥⠗⠬" }, { "input": "conjoin", "output": "â ’â šâ •â ”" }, { "input": "conjoined", "output": "⠒⠚⠕⠔⠫" }, { "input": "conjoining", "output": "⠒⠚⠕⠔⠬" }, { "input": "conjoins", "output": "⠒⠚⠕⠔⠎" }, { "input": "conjoint", "output": "⠒⠚⠕⠔⠞" }, { "input": "conjugal", "output": "⠒⠚⠥⠛â â ‡" }, { "input": "conjugate", "output": "⠒⠚⠥⠛â â žâ ‘" }, { "input": "conjugated", "output": "⠒⠚⠥⠛â â žâ «" }, { "input": "conjugates", "output": "⠒⠚⠥⠛â â žâ ‘â Ž" }, { "input": "conjugating", "output": "⠒⠚⠥⠛â â žâ ¬" }, { "input": "conjugation", "output": "⠒⠚⠥⠛â â °â " }, { "input": "conjugations", "output": "⠒⠚⠥⠛â â °â â Ž" }, { "input": "conjunction", "output": "â ’â šâ ¥â â ‰â °â " }, { "input": "conjunctions", "output": "â ’â šâ ¥â â ‰â °â â Ž" }, { "input": "conjunctive", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â ‘" }, { "input": "conjunctives", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "conjunctivitis", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â Šâ žâ Šâ Ž" }, { "input": "conjuncture", "output": "â ’â šâ ¥â â ‰â žâ ¥â —â ‘" }, { "input": "conjunctures", "output": "â ’â šâ ¥â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "conjure", "output": "⠒⠚⠥⠗⠑" }, { "input": "conjured", "output": "⠒⠚⠥⠗⠫" }, { "input": "conjurer", "output": "⠒⠚⠥⠗⠻" }, { "input": "conjurers", "output": "⠒⠚⠥⠗⠻⠎" }, { "input": "conjures", "output": "⠒⠚⠥⠗⠑⠎" }, { "input": "conjuring", "output": "⠒⠚⠥⠗⠬" }, { "input": "conjuror", "output": "⠒⠚⠥⠗⠕⠗" }, { "input": "conjurors", "output": "⠒⠚⠥⠗⠕⠗⠎" }, { "input": "conk", "output": "⠉⠕â â …" }, { "input": "conked", "output": "â ’â …â «" }, { "input": "conking", "output": "â ’â …â ¬" }, { "input": "conks", "output": "â ’â …â Ž" }, { "input": "connect", "output": "â ’â â ‘⠉⠞" }, { "input": "connected", "output": "â ’â â ‘⠉⠞⠫" }, { "input": "connecter", "output": "â ’â â ‘⠉⠞⠻" }, { "input": "connecters", "output": "â ’â â ‘⠉⠞⠻⠎" }, { "input": "connecting", "output": "â ’â â ‘⠉⠞⠬" }, { "input": "connection", "output": "â ’â â ‘⠉⠰â " }, { "input": "connections", "output": "â ’â â ‘⠉⠰â â Ž" }, { "input": "connective", "output": "â ’â â ‘⠉⠞⠊⠧⠑" }, { "input": "connectives", "output": "â ’â â ‘⠉⠞⠊⠧⠑⠎" }, { "input": "connectivity", "output": "â ’â â ‘⠉⠞⠊⠧⠰⠽" }, { "input": "connector", "output": "â ’â â ‘⠉⠞⠕⠗" }, { "input": "connectors", "output": "â ’â â ‘⠉⠞⠕⠗⠎" }, { "input": "connects", "output": "â ’â â ‘⠉⠞⠎" }, { "input": "conned", "output": "⠉⠕â â â «" }, { "input": "conning", "output": "â ’â â ¬" }, { "input": "connivance", "output": "â ’â â Šâ §â ¨â ‘" }, { "input": "connive", "output": "â ’â â Šâ §â ‘" }, { "input": "connived", "output": "â ’â â Šâ §â «" }, { "input": "conniver", "output": "â ’â â Šâ §â »" }, { "input": "connivers", "output": "â ’â â Šâ §â »â Ž" }, { "input": "connives", "output": "â ’â â Šâ §â ‘â Ž" }, { "input": "conniving", "output": "â ’â â Šâ §â ¬" }, { "input": "connoisseur", "output": "â ’â â •⠊⠎⠎⠑⠥⠗" }, { "input": "connoisseurs", "output": "â ’â â •⠊⠎⠎⠑⠥⠗⠎" }, { "input": "connotation", "output": "â ’â â •â žâ â °â " }, { "input": "connotations", "output": "â ’â â •â žâ â °â â Ž" }, { "input": "connotative", "output": "â ’â â •â žâ â žâ Šâ §â ‘" }, { "input": "connote", "output": "â ’â â •â žâ ‘" }, { "input": "connoted", "output": "â ’â â •â žâ «" }, { "input": "connotes", "output": "â ’â â •â žâ ‘â Ž" }, { "input": "connoting", "output": "â ’â â •â žâ ¬" }, { "input": "connubial", "output": "â ’â â ¥â ƒâ Šâ â ‡" }, { "input": "conquer", "output": "⠒⠟⠥⠻" }, { "input": "conquered", "output": "⠒⠟⠥⠻⠫" }, { "input": "conquering", "output": "⠒⠟⠥⠻⠬" }, { "input": "conqueror", "output": "⠒⠟⠥⠻⠕⠗" }, { "input": "conquerors", "output": "⠒⠟⠥⠻⠕⠗⠎" }, { "input": "conquers", "output": "⠒⠟⠥⠻⠎" }, { "input": "conquest", "output": "⠒⠟⠥⠑⠌" }, { "input": "conquests", "output": "⠒⠟⠥⠑⠌⠎" }, { "input": "conquistador", "output": "⠒⠟⠥⠊⠌â â ™â •â —" }, { "input": "conquistadores", "output": "⠒⠟⠥⠊⠌â â ™â •â —â ‘â Ž" }, { "input": "conquistadors", "output": "⠒⠟⠥⠊⠌â â ™â •â —â Ž" }, { "input": "cons", "output": "⠉⠕â â Ž" }, { "input": "consanguinity", "output": "â ’â Žâ â â ›â ¥â ”â °â ½" }, { "input": "conscience", "output": "⠒⠎⠉⠊⠰⠑" }, { "input": "consciences", "output": "⠒⠎⠉⠊⠰⠑⠎" }, { "input": "conscientious", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎" }, { "input": "conscientiously", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎⠇⠽" }, { "input": "conscientiousness", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎⠰⠎" }, { "input": "conscious", "output": "⠒⠎⠉⠊⠳⠎" }, { "input": "consciously", "output": "⠒⠎⠉⠊⠳⠎⠇⠽" }, { "input": "consciousness", "output": "⠒⠎⠉⠊⠳⠎⠰⠎" }, { "input": "consciousnesses", "output": "⠒⠎⠉⠊⠳⠎⠰⠎⠑⠎" }, { "input": "conscript", "output": "⠒⠎⠉⠗⠊â â ž" }, { "input": "conscripted", "output": "⠒⠎⠉⠗⠊â â žâ «" }, { "input": "conscripting", "output": "⠒⠎⠉⠗⠊â â žâ ¬" }, { "input": "conscription", "output": "⠒⠎⠉⠗⠊â â °â " }, { "input": "conscripts", "output": "⠒⠎⠉⠗⠊â â žâ Ž" }, { "input": "consecrate", "output": "⠒⠎⠑⠉⠗â â žâ ‘" }, { "input": "consecrated", "output": "⠒⠎⠑⠉⠗â â žâ «" }, { "input": "consecrates", "output": "⠒⠎⠑⠉⠗â â žâ ‘â Ž" }, { "input": "consecrating", "output": "⠒⠎⠑⠉⠗â â žâ ¬" }, { "input": "consecration", "output": "⠒⠎⠑⠉⠗â â °â " }, { "input": "consecrations", "output": "⠒⠎⠑⠉⠗â â °â â Ž" }, { "input": "consecutive", "output": "⠒⠎⠑⠉⠥⠞⠊⠧⠑" }, { "input": "consecutively", "output": "⠒⠎⠑⠉⠥⠞⠊⠧⠑⠇⠽" }, { "input": "consensual", "output": "⠒⠎⠢⠎⠥â â ‡" }, { "input": "consensus", "output": "⠒⠎⠢⠎⠥⠎" }, { "input": "consensuses", "output": "⠒⠎⠢⠎⠥⠎⠑⠎" }, { "input": "consent", "output": "⠒⠎⠢⠞" }, { "input": "consented", "output": "⠒⠎⠢⠞⠫" }, { "input": "consenting", "output": "⠒⠎⠢⠞⠬" }, { "input": "consents", "output": "⠒⠎⠢⠞⠎" }, { "input": "consequence", "output": "⠒⠎⠑⠟⠥⠰⠑" }, { "input": "consequences", "output": "⠒⠎⠑⠟⠥⠰⠑⠎" }, { "input": "consequent", "output": "⠒⠎⠑⠟⠥⠢⠞" }, { "input": "consequential", "output": "⠒⠎⠑⠟⠥⠢⠞⠊â â ‡" }, { "input": "consequently", "output": "⠒⠎⠑⠟⠥⠢⠞⠇⠽" }, { "input": "conservation", "output": "⠒⠎⠻⠧â â °â " }, { "input": "conservationist", "output": "⠒⠎⠻⠧â â °â â Šâ Œ" }, { "input": "conservationists", "output": "⠒⠎⠻⠧â â °â â Šâ Œâ Ž" }, { "input": "conservatism", "output": "⠒⠎⠻⠧â â žâ Šâ Žâ " }, { "input": "conservative", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘" }, { "input": "conservatively", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘⠇⠽" }, { "input": "conservatives", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘â Ž" }, { "input": "conservator", "output": "⠒⠎⠻⠧â â žâ •â —" }, { "input": "conservatories", "output": "⠒⠎⠻⠧â â žâ •â —â Šâ ‘â Ž" }, { "input": "conservators", "output": "⠒⠎⠻⠧â â žâ •â —â Ž" }, { "input": "conservatory", "output": "⠒⠎⠻⠧â â žâ •â —â ½" }, { "input": "conserve", "output": "⠒⠎⠻⠧⠑" }, { "input": "conserved", "output": "⠒⠎⠻⠧⠫" }, { "input": "conserves", "output": "⠒⠎⠻⠧⠑⠎" }, { "input": "conserving", "output": "⠒⠎⠻⠧⠬" }, { "input": "consider", "output": "⠒⠎⠊⠙⠻" }, { "input": "considerable", "output": "⠒⠎⠊⠙⠻â â ƒâ ‡â ‘" }, { "input": "considerably", "output": "⠒⠎⠊⠙⠻â â ƒâ ‡â ½" }, { "input": "considerate", "output": "⠒⠎⠊⠙⠻â â žâ ‘" }, { "input": "considerately", "output": "⠒⠎⠊⠙⠻â â žâ ‘⠇⠽" }, { "input": "consideration", "output": "⠒⠎⠊⠙⠻â â °â " }, { "input": "considerations", "output": "⠒⠎⠊⠙⠻â â °â â Ž" }, { "input": "considered", "output": "⠒⠎⠊⠙⠻⠫" }, { "input": "considering", "output": "⠒⠎⠊⠙⠻⠬" }, { "input": "considers", "output": "⠒⠎⠊⠙⠻⠎" }, { "input": "consign", "output": "â ’â Žâ Šâ ›â " }, { "input": "consigned", "output": "â ’â Žâ Šâ ›â â «" }, { "input": "consigning", "output": "â ’â Žâ Šâ ›â â ¬" }, { "input": "consignment", "output": "â ’â Žâ Šâ ›â â °â ž" }, { "input": "consignments", "output": "â ’â Žâ Šâ ›â â °â žâ Ž" }, { "input": "consigns", "output": "â ’â Žâ Šâ ›â â Ž" }, { "input": "consist", "output": "â ’â Žâ Šâ Œ" }, { "input": "consisted", "output": "⠒⠎⠊⠌⠫" }, { "input": "consistencies", "output": "⠒⠎⠊⠌⠢⠉⠊⠑⠎" }, { "input": "consistency", "output": "⠒⠎⠊⠌⠢⠉⠽" }, { "input": "consistent", "output": "⠒⠎⠊⠌⠢⠞" }, { "input": "consistently", "output": "⠒⠎⠊⠌⠢⠞⠇⠽" }, { "input": "consisting", "output": "⠒⠎⠊⠌⠬" }, { "input": "consists", "output": "⠒⠎⠊⠌⠎" }, { "input": "consolation", "output": "â ’â Žâ •â ‡â â °â " }, { "input": "consolations", "output": "â ’â Žâ •â ‡â â °â â Ž" }, { "input": "console", "output": "⠒⠎⠕⠇⠑" }, { "input": "consoled", "output": "⠒⠎⠕⠇⠫" }, { "input": "consoles", "output": "⠒⠎⠕⠇⠑⠎" }, { "input": "consolidate", "output": "⠒⠎⠕⠇⠊⠙â â žâ ‘" }, { "input": "consolidated", "output": "⠒⠎⠕⠇⠊⠙â â žâ «" }, { "input": "consolidates", "output": "⠒⠎⠕⠇⠊⠙â â žâ ‘â Ž" }, { "input": "consolidating", "output": "⠒⠎⠕⠇⠊⠙â â žâ ¬" }, { "input": "consolidation", "output": "⠒⠎⠕⠇⠊⠙â â °â " }, { "input": "consolidations", "output": "⠒⠎⠕⠇⠊⠙â â °â â Ž" }, { "input": "consoling", "output": "⠒⠎⠕⠇⠬" }, { "input": "consommé", "output": "â ’â Žâ •â â â  â ˜â »â â ˜â ‰" }, { "input": "consonance", "output": "â ’â Žâ •â â ¨â ‘" }, { "input": "consonances", "output": "â ’â Žâ •â â ¨â ‘â Ž" }, { "input": "consonant", "output": "â ’â Žâ •â â â â ž" }, { "input": "consonants", "output": "â ’â Žâ •â â â â žâ Ž" }, { "input": "consort", "output": "â ’â Žâ •â —â ž" }, { "input": "consorted", "output": "â ’â Žâ •â —â žâ «" }, { "input": "consortia", "output": "â ’â Žâ •â —â žâ Šâ " }, { "input": "consorting", "output": "â ’â Žâ •â —â žâ ¬" }, { "input": "consortium", "output": "â ’â Žâ •â —â žâ Šâ ¥â " }, { "input": "consortiums", "output": "â ’â Žâ •â —â žâ Šâ ¥â â Ž" }, { "input": "consorts", "output": "â ’â Žâ •â —â žâ Ž" }, { "input": "conspicuous", "output": "â ’â Žâ â Šâ ‰â ¥â ³â Ž" }, { "input": "conspicuously", "output": "â ’â Žâ â Šâ ‰â ¥â ³â Žâ ‡â ½" }, { "input": "conspiracies", "output": "â ’â Žâ â Šâ —â â ‰â Šâ ‘â Ž" }, { "input": "conspiracy", "output": "â ’â Žâ â Šâ —â â ‰â ½" }, { "input": "conspirator", "output": "â ’â Žâ â Šâ —â â žâ •â —" }, { "input": "conspiratorial", "output": "â ’â Žâ â Šâ —â â žâ •â —â Šâ â ‡" }, { "input": "conspirators", "output": "â ’â Žâ â Šâ —â â žâ •â —â Ž" }, { "input": "conspire", "output": "â ’â Žâ â Šâ —â ‘" }, { "input": "conspired", "output": "â ’â Žâ â Šâ —â «" }, { "input": "conspires", "output": "â ’â Žâ â Šâ —â ‘â Ž" }, { "input": "conspiring", "output": "â ’â Žâ â Šâ —â ¬" }, { "input": "constable", "output": "â ’â Œâ â ƒâ ‡â ‘" }, { "input": "constables", "output": "â ’â Œâ â ƒâ ‡â ‘â Ž" }, { "input": "constabularies", "output": "â ’â Œâ â ƒâ ¥â ‡â œâ Šâ ‘â Ž" }, { "input": "constabulary", "output": "â ’â Œâ â ƒâ ¥â ‡â œâ ½" }, { "input": "constancy", "output": "â ’â Œâ â â ‰â ½" }, { "input": "constant", "output": "â ’â Œâ â â ž" }, { "input": "constantly", "output": "â ’â Œâ â â žâ ‡â ½" }, { "input": "constants", "output": "â ’â Œâ â â žâ Ž" }, { "input": "constellation", "output": "⠒⠌⠑⠇⠇â â °â " }, { "input": "constellations", "output": "⠒⠌⠑⠇⠇â â °â â Ž" }, { "input": "consternation", "output": "⠒⠌⠻â â â °â " }, { "input": "constipate", "output": "⠒⠌⠊â â â žâ ‘" }, { "input": "constipated", "output": "⠒⠌⠊â â â žâ «" }, { "input": "constipates", "output": "⠒⠌⠊â â â žâ ‘â Ž" }, { "input": "constipating", "output": "⠒⠌⠊â â â žâ ¬" }, { "input": "constipation", "output": "⠒⠌⠊â â â °â " }, { "input": "constituencies", "output": "⠒⠌⠊⠞⠥⠢⠉⠊⠑⠎" }, { "input": "constituency", "output": "⠒⠌⠊⠞⠥⠢⠉⠽" }, { "input": "constituent", "output": "⠒⠌⠊⠞⠥⠢⠞" }, { "input": "constituents", "output": "⠒⠌⠊⠞⠥⠢⠞⠎" }, { "input": "constitute", "output": "⠒⠌⠊⠞⠥⠞⠑" }, { "input": "constituted", "output": "⠒⠌⠊⠞⠥⠞⠫" }, { "input": "constitutes", "output": "⠒⠌⠊⠞⠥⠞⠑⠎" }, { "input": "constituting", "output": "⠒⠌⠊⠞⠥⠞⠬" }, { "input": "constitution", "output": "⠒⠌⠊⠞⠥⠰â " }, { "input": "constitutional", "output": "⠒⠌⠊⠞⠥⠰â â â ‡" }, { "input": "constitutionality", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â °â ½" }, { "input": "constitutionally", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â ‡â ½" }, { "input": "constitutionals", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â Ž" }, { "input": "constitutions", "output": "⠒⠌⠊⠞⠥⠰â â Ž" }, { "input": "constrain", "output": "⠒⠌⠗â â ”" }, { "input": "constrained", "output": "⠒⠌⠗â â ”â «" }, { "input": "constraining", "output": "⠒⠌⠗â â ”â ¬" }, { "input": "constrains", "output": "⠒⠌⠗â â ”â Ž" }, { "input": "constraint", "output": "⠒⠌⠗â â ”â ž" }, { "input": "constraints", "output": "⠒⠌⠗â â ”â žâ Ž" }, { "input": "constrict", "output": "⠒⠌⠗⠊⠉⠞" }, { "input": "constricted", "output": "⠒⠌⠗⠊⠉⠞⠫" }, { "input": "constricting", "output": "⠒⠌⠗⠊⠉⠞⠬" }, { "input": "constriction", "output": "⠒⠌⠗⠊⠉⠰â " }, { "input": "constrictions", "output": "⠒⠌⠗⠊⠉⠰â â Ž" }, { "input": "constrictive", "output": "⠒⠌⠗⠊⠉⠞⠊⠧⠑" }, { "input": "constrictor", "output": "⠒⠌⠗⠊⠉⠞⠕⠗" }, { "input": "constrictors", "output": "⠒⠌⠗⠊⠉⠞⠕⠗⠎" }, { "input": "constricts", "output": "⠒⠌⠗⠊⠉⠞⠎" }, { "input": "construct", "output": "⠒⠌⠗⠥⠉⠞" }, { "input": "constructed", "output": "⠒⠌⠗⠥⠉⠞⠫" }, { "input": "constructing", "output": "⠒⠌⠗⠥⠉⠞⠬" }, { "input": "construction", "output": "⠒⠌⠗⠥⠉⠰â " }, { "input": "constructions", "output": "⠒⠌⠗⠥⠉⠰â â Ž" }, { "input": "constructive", "output": "⠒⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "constructively", "output": "⠒⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "constructor", "output": "⠒⠌⠗⠥⠉⠞⠕⠗" }, { "input": "constructors", "output": "⠒⠌⠗⠥⠉⠞⠕⠗⠎" }, { "input": "constructs", "output": "⠒⠌⠗⠥⠉⠞⠎" }, { "input": "construe", "output": "⠒⠌⠗⠥⠑" }, { "input": "construed", "output": "⠒⠌⠗⠥⠫" }, { "input": "construes", "output": "⠒⠌⠗⠥⠑⠎" }, { "input": "construing", "output": "⠒⠌⠗⠥⠬" }, { "input": "consul", "output": "⠒⠎⠥⠇" }, { "input": "consular", "output": "⠒⠎⠥⠇⠜" }, { "input": "consulate", "output": "⠒⠎⠥⠇â â žâ ‘" }, { "input": "consulates", "output": "⠒⠎⠥⠇â â žâ ‘â Ž" }, { "input": "consuls", "output": "⠒⠎⠥⠇⠎" }, { "input": "consult", "output": "⠒⠎⠥⠇⠞" }, { "input": "consultancies", "output": "⠒⠎⠥⠇⠞â â â ‰â Šâ ‘â Ž" }, { "input": "consultancy", "output": "⠒⠎⠥⠇⠞â â â ‰â ½" }, { "input": "consultant", "output": "⠒⠎⠥⠇⠞â â â ž" }, { "input": "consultants", "output": "⠒⠎⠥⠇⠞â â â žâ Ž" }, { "input": "consultation", "output": "⠒⠎⠥⠇⠞â â °â " }, { "input": "consultations", "output": "⠒⠎⠥⠇⠞â â °â â Ž" }, { "input": "consultative", "output": "⠒⠎⠥⠇⠞â â žâ Šâ §â ‘" }, { "input": "consulted", "output": "⠒⠎⠥⠇⠞⠫" }, { "input": "consulting", "output": "⠒⠎⠥⠇⠞⠬" }, { "input": "consults", "output": "⠒⠎⠥⠇⠞⠎" }, { "input": "consumable", "output": "â ’â Žâ ¥â â â ƒâ ‡â ‘" }, { "input": "consumables", "output": "â ’â Žâ ¥â â â ƒâ ‡â ‘â Ž" }, { "input": "consume", "output": "â ’â Žâ ¥â â ‘" }, { "input": "consumed", "output": "â ’â Žâ ¥â â «" }, { "input": "consumer", "output": "â ’â Žâ ¥â â »" }, { "input": "consumerism", "output": "â ’â Žâ ¥â â »â Šâ Žâ " }, { "input": "consumers", "output": "â ’â Žâ ¥â â »â Ž" }, { "input": "consumes", "output": "â ’â Žâ ¥â â ‘â Ž" }, { "input": "consuming", "output": "â ’â Žâ ¥â â ¬" }, { "input": "consummate", "output": "â ’â Žâ ¥â â â â žâ ‘" }, { "input": "consummated", "output": "â ’â Žâ ¥â â â â žâ «" }, { "input": "consummates", "output": "â ’â Žâ ¥â â â â žâ ‘â Ž" }, { "input": "consummating", "output": "â ’â Žâ ¥â â â â žâ ¬" }, { "input": "consummation", "output": "â ’â Žâ ¥â â â â °â " }, { "input": "consummations", "output": "â ’â Žâ ¥â â â â °â â Ž" }, { "input": "consumption", "output": "â ’â Žâ ¥â â â °â " }, { "input": "consumptive", "output": "â ’â Žâ ¥â â â žâ Šâ §â ‘" }, { "input": "consumptives", "output": "â ’â Žâ ¥â â â žâ Šâ §â ‘â Ž" }, { "input": "contact", "output": "â ’â žâ â ‰â ž" }, { "input": "contactable", "output": "â ’â žâ â ‰â žâ â ƒâ ‡â ‘" }, { "input": "contacted", "output": "â ’â žâ â ‰â žâ «" }, { "input": "contacting", "output": "â ’â žâ â ‰â žâ ¬" }, { "input": "contacts", "output": "â ’â žâ â ‰â žâ Ž" }, { "input": "contagion", "output": "â ’â žâ â ›â Šâ •â " }, { "input": "contagions", "output": "â ’â žâ â ›â Šâ •â â Ž" }, { "input": "contagious", "output": "â ’â žâ â ›â Šâ ³â Ž" }, { "input": "contain", "output": "â ’â žâ â ”" }, { "input": "contained", "output": "â ’â žâ â ”â «" }, { "input": "container", "output": "â ’â žâ â ”â »" }, { "input": "containers", "output": "â ’â žâ â ”⠻⠎" }, { "input": "containing", "output": "â ’â žâ â ”â ¬" }, { "input": "containment", "output": "â ’â žâ â ”â °â ž" }, { "input": "contains", "output": "â ’â žâ â ”â Ž" }, { "input": "contaminant", "output": "â ’â žâ â â ”â â â ž" }, { "input": "contaminants", "output": "â ’â žâ â â ”â â â žâ Ž" }, { "input": "contaminate", "output": "â ’â žâ â â ”â â žâ ‘" }, { "input": "contaminated", "output": "â ’â žâ â â ”â â žâ «" }, { "input": "contaminates", "output": "â ’â žâ â â ”â â žâ ‘â Ž" }, { "input": "contaminating", "output": "â ’â žâ â â ”â â žâ ¬" }, { "input": "contamination", "output": "â ’â žâ â â ”â â °â " }, { "input": "contemplate", "output": "â ’â žâ ‘â â â ‡â â žâ ‘" }, { "input": "contemplated", "output": "â ’â žâ ‘â â â ‡â â žâ «" }, { "input": "contemplates", "output": "â ’â žâ ‘â â â ‡â â žâ ‘â Ž" }, { "input": "contemplating", "output": "â ’â žâ ‘â â â ‡â â žâ ¬" }, { "input": "contemplation", "output": "â ’â žâ ‘â â â ‡â â °â " }, { "input": "contemplative", "output": "â ’â žâ ‘â â â ‡â â žâ Šâ §â ‘" }, { "input": "contemplatives", "output": "â ’â žâ ‘â â â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "contemporaneous", "output": "â ’â žâ ‘â â â •â —â â â ‘⠳⠎" }, { "input": "contemporaneously", "output": "â ’â žâ ‘â â â •â —â â â ‘⠳⠎⠇⠽" }, { "input": "contemporaries", "output": "â ’â žâ ‘â â â •⠗⠜⠊⠑⠎" }, { "input": "contemporary", "output": "â ’â žâ ‘â â â •⠗⠜⠽" }, { "input": "contempt", "output": "â ’â žâ ‘â â â ž" }, { "input": "contemptible", "output": "â ’â žâ ‘â â â žâ Šâ ƒâ ‡â ‘" }, { "input": "contemptibly", "output": "â ’â žâ ‘â â â žâ Šâ ƒâ ‡â ½" }, { "input": "contemptuous", "output": "â ’â žâ ‘â â â žâ ¥â ³â Ž" }, { "input": "contemptuously", "output": "â ’â žâ ‘â â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "contend", "output": "⠒⠞⠢⠙" }, { "input": "contended", "output": "⠒⠞⠢⠙⠫" }, { "input": "contender", "output": "⠒⠞⠢⠙⠻" }, { "input": "contenders", "output": "⠒⠞⠢⠙⠻⠎" }, { "input": "contending", "output": "⠒⠞⠢⠙⠬" }, { "input": "contends", "output": "⠒⠞⠢⠙⠎" }, { "input": "content", "output": "⠒⠞⠢⠞" }, { "input": "contented", "output": "⠒⠞⠢⠞⠫" }, { "input": "contentedly", "output": "⠒⠞⠢⠞⠫⠇⠽" }, { "input": "contentedness", "output": "⠒⠞⠢⠞⠫⠰⠎" }, { "input": "contenting", "output": "⠒⠞⠢⠞⠬" }, { "input": "contention", "output": "⠒⠞⠢⠰â " }, { "input": "contentions", "output": "⠒⠞⠢⠰â â Ž" }, { "input": "contentious", "output": "⠒⠞⠢⠞⠊⠳⠎" }, { "input": "contentiously", "output": "⠒⠞⠢⠞⠊⠳⠎⠇⠽" }, { "input": "contentment", "output": "⠒⠞⠢⠞⠰⠞" }, { "input": "contents", "output": "⠒⠞⠢⠞⠎" }, { "input": "contest", "output": "â ’â žâ ‘â Œ" }, { "input": "contestant", "output": "â ’â žâ ‘â Œâ â â ž" }, { "input": "contestants", "output": "â ’â žâ ‘â Œâ â â žâ Ž" }, { "input": "contested", "output": "⠒⠞⠑⠌⠫" }, { "input": "contesting", "output": "⠒⠞⠑⠌⠬" }, { "input": "contests", "output": "⠒⠞⠑⠌⠎" }, { "input": "context", "output": "â ’â žâ ‘â ­â ž" }, { "input": "contexts", "output": "â ’â žâ ‘â ­â žâ Ž" }, { "input": "contextual", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡" }, { "input": "contiguity", "output": "⠒⠞⠊⠛⠥⠰⠽" }, { "input": "contiguous", "output": "⠒⠞⠊⠛⠥⠳⠎" }, { "input": "continence", "output": "⠒⠞⠔⠰⠑" }, { "input": "continent", "output": "⠒⠞⠔⠢⠞" }, { "input": "continental", "output": "⠒⠞⠔⠢⠞â â ‡" }, { "input": "continentals", "output": "⠒⠞⠔⠢⠞â â ‡â Ž" }, { "input": "continents", "output": "⠒⠞⠔⠢⠞⠎" }, { "input": "contingencies", "output": "⠒⠞⠬⠢⠉⠊⠑⠎" }, { "input": "contingency", "output": "⠒⠞⠬⠢⠉⠽" }, { "input": "contingent", "output": "⠒⠞⠬⠢⠞" }, { "input": "contingents", "output": "⠒⠞⠬⠢⠞⠎" }, { "input": "continua", "output": "⠒⠞⠔⠥â " }, { "input": "continual", "output": "⠒⠞⠔⠥â â ‡" }, { "input": "continually", "output": "⠒⠞⠔⠥â â ‡â ‡â ½" }, { "input": "continuance", "output": "⠒⠞⠔⠥⠨⠑" }, { "input": "continuances", "output": "⠒⠞⠔⠥⠨⠑⠎" }, { "input": "continuation", "output": "⠒⠞⠔⠥â â °â " }, { "input": "continuations", "output": "⠒⠞⠔⠥â â °â â Ž" }, { "input": "continue", "output": "⠒⠞⠔⠥⠑" }, { "input": "continued", "output": "⠒⠞⠔⠥⠫" }, { "input": "continues", "output": "⠒⠞⠔⠥⠑⠎" }, { "input": "continuing", "output": "⠒⠞⠔⠥⠬" }, { "input": "continuity", "output": "⠒⠞⠔⠥⠰⠽" }, { "input": "continuous", "output": "⠒⠞⠔⠥⠳⠎" }, { "input": "continuously", "output": "⠒⠞⠔⠥⠳⠎⠇⠽" }, { "input": "continuum", "output": "⠒⠞⠔⠥⠥â " }, { "input": "continuums", "output": "⠒⠞⠔⠥⠥â â Ž" }, { "input": "contort", "output": "â ’â žâ •â —â ž" }, { "input": "contorted", "output": "â ’â žâ •â —â žâ «" }, { "input": "contorting", "output": "â ’â žâ •â —â žâ ¬" }, { "input": "contortion", "output": "â ’â žâ •â —â °â " }, { "input": "contortionist", "output": "â ’â žâ •â —â °â â Šâ Œ" }, { "input": "contortionists", "output": "â ’â žâ •â —â °â â Šâ Œâ Ž" }, { "input": "contortions", "output": "â ’â žâ •â —â °â â Ž" }, { "input": "contorts", "output": "â ’â žâ •â —â žâ Ž" }, { "input": "contour", "output": "⠒⠞⠳⠗" }, { "input": "contoured", "output": "⠒⠞⠳⠗⠫" }, { "input": "contouring", "output": "⠒⠞⠳⠗⠬" }, { "input": "contours", "output": "⠒⠞⠳⠗⠎" }, { "input": "contraband", "output": "â ’â žâ —â â ƒâ ¯" }, { "input": "contraception", "output": "â ’â žâ —â â ‰â ‘â â °â " }, { "input": "contraceptive", "output": "â ’â žâ —â â ‰â ‘â â žâ Šâ §â ‘" }, { "input": "contraceptives", "output": "â ’â žâ —â â ‰â ‘â â žâ Šâ §â ‘â Ž" }, { "input": "contract", "output": "â ’â žâ —â â ‰â ž" }, { "input": "contracted", "output": "â ’â žâ —â â ‰â žâ «" }, { "input": "contractile", "output": "â ’â žâ —â â ‰â žâ Šâ ‡â ‘" }, { "input": "contracting", "output": "â ’â žâ —â â ‰â žâ ¬" }, { "input": "contraction", "output": "â ’â žâ —â â ‰â °â " }, { "input": "contractions", "output": "â ’â žâ —â â ‰â °â â Ž" }, { "input": "contractor", "output": "â ’â žâ —â â ‰â žâ •â —" }, { "input": "contractors", "output": "â ’â žâ —â â ‰â žâ •â —â Ž" }, { "input": "contracts", "output": "â ’â žâ —â â ‰â žâ Ž" }, { "input": "contractual", "output": "â ’â žâ —â â ‰â žâ ¥â â ‡" }, { "input": "contractually", "output": "â ’â žâ —â â ‰â žâ ¥â â ‡â ‡â ½" }, { "input": "contradict", "output": "â ’â žâ —â â ™â Šâ ‰â ž" }, { "input": "contradicted", "output": "â ’â žâ —â â ™â Šâ ‰â žâ «" }, { "input": "contradicting", "output": "â ’â žâ —â â ™â Šâ ‰â žâ ¬" }, { "input": "contradiction", "output": "â ’â žâ —â â ™â Šâ ‰â °â " }, { "input": "contradictions", "output": "â ’â žâ —â â ™â Šâ ‰â °â â Ž" }, { "input": "contradictory", "output": "â ’â žâ —â â ™â Šâ ‰â žâ •â —â ½" }, { "input": "contradicts", "output": "â ’â žâ —â â ™â Šâ ‰â žâ Ž" }, { "input": "contradistinction", "output": "â ’â žâ —â â ™â Šâ Œâ ”⠉⠰â " }, { "input": "contradistinctions", "output": "â ’â žâ —â â ™â Šâ Œâ ”⠉⠰â â Ž" }, { "input": "contrail", "output": "â ’â žâ —â â Šâ ‡" }, { "input": "contrails", "output": "â ’â žâ —â â Šâ ‡â Ž" }, { "input": "contralto", "output": "â ’â žâ —â â ‡â žâ •" }, { "input": "contraltos", "output": "â ’â žâ —â â ‡â žâ •â Ž" }, { "input": "contraption", "output": "â ’â žâ —â â â °â " }, { "input": "contraptions", "output": "â ’â žâ —â â â °â â Ž" }, { "input": "contrapuntal", "output": "â ’â žâ —â â â ¥â â žâ â ‡" }, { "input": "contraries", "output": "⠒⠞⠗⠜⠊⠑⠎" }, { "input": "contrarily", "output": "⠒⠞⠗⠜⠊⠇⠽" }, { "input": "contrariness", "output": "⠒⠞⠗⠜⠊⠰⠎" }, { "input": "contrariwise", "output": "⠒⠞⠗⠜⠊⠺⠊⠎⠑" }, { "input": "contrary", "output": "⠒⠞⠗⠜⠽" }, { "input": "contrast", "output": "â ’â žâ —â â Œ" }, { "input": "contrasted", "output": "â ’â žâ —â â Œâ «" }, { "input": "contrasting", "output": "â ’â žâ —â â Œâ ¬" }, { "input": "contrasts", "output": "â ’â žâ —â â Œâ Ž" }, { "input": "contravene", "output": "â ’â žâ —â â §â ¢â ‘" }, { "input": "contravened", "output": "â ’â žâ —â â §â ¢â «" }, { "input": "contravenes", "output": "â ’â žâ —â â §â ¢â ‘â Ž" }, { "input": "contravening", "output": "â ’â žâ —â â §â ¢â ¬" }, { "input": "contravention", "output": "â ’â žâ —â â §â ¢â °â " }, { "input": "contraventions", "output": "â ’â žâ —â â §â ¢â °â â Ž" }, { "input": "contretemps", "output": "â ’â žâ —â ‘â žâ ‘â â â Ž" }, { "input": "contribute", "output": "⠒⠞⠗⠊⠃⠥⠞⠑" }, { "input": "contributed", "output": "⠒⠞⠗⠊⠃⠥⠞⠫" }, { "input": "contributes", "output": "⠒⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "contributing", "output": "⠒⠞⠗⠊⠃⠥⠞⠬" }, { "input": "contribution", "output": "⠒⠞⠗⠊⠃⠥⠰â " }, { "input": "contributions", "output": "⠒⠞⠗⠊⠃⠥⠰â â Ž" }, { "input": "contributor", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗" }, { "input": "contributors", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗⠎" }, { "input": "contributory", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗⠽" }, { "input": "contrite", "output": "â ’â žâ —â Šâ žâ ‘" }, { "input": "contritely", "output": "⠒⠞⠗⠊⠞⠑⠇⠽" }, { "input": "contrition", "output": "â ’â žâ —â Šâ °â " }, { "input": "contrivance", "output": "⠒⠞⠗⠊⠧⠨⠑" }, { "input": "contrivances", "output": "⠒⠞⠗⠊⠧⠨⠑⠎" }, { "input": "contrive", "output": "â ’â žâ —â Šâ §â ‘" }, { "input": "contrived", "output": "â ’â žâ —â Šâ §â «" }, { "input": "contrives", "output": "â ’â žâ —â Šâ §â ‘â Ž" }, { "input": "contriving", "output": "â ’â žâ —â Šâ §â ¬" }, { "input": "control", "output": "â ’â žâ —â •â ‡" }, { "input": "controllable", "output": "⠒⠞⠗⠕⠇⠇â â ƒâ ‡â ‘" }, { "input": "controlled", "output": "⠒⠞⠗⠕⠇⠇⠫" }, { "input": "controller", "output": "⠒⠞⠗⠕⠇⠇⠻" }, { "input": "controllers", "output": "⠒⠞⠗⠕⠇⠇⠻⠎" }, { "input": "controlling", "output": "⠒⠞⠗⠕⠇⠇⠬" }, { "input": "controls", "output": "⠒⠞⠗⠕⠇⠎" }, { "input": "controversial", "output": "⠒⠞⠗⠕⠧⠻⠎⠊â â ‡" }, { "input": "controversially", "output": "⠒⠞⠗⠕⠧⠻⠎⠊â â ‡â ‡â ½" }, { "input": "controversies", "output": "⠒⠞⠗⠕⠧⠻⠎⠊⠑⠎" }, { "input": "controversy", "output": "⠒⠞⠗⠕⠧⠻⠎⠽" }, { "input": "controvert", "output": "⠒⠞⠗⠕⠧⠻⠞" }, { "input": "controverted", "output": "⠒⠞⠗⠕⠧⠻⠞⠫" }, { "input": "controverting", "output": "⠒⠞⠗⠕⠧⠻⠞⠬" }, { "input": "controverts", "output": "⠒⠞⠗⠕⠧⠻⠞⠎" }, { "input": "contumacious", "output": "â ’â žâ ¥â â â ‰â Šâ ³â Ž" }, { "input": "contumelies", "output": "â ’â žâ ¥â â ‘⠇⠊⠑⠎" }, { "input": "contumely", "output": "â ’â žâ ¥â â ‘⠇⠽" }, { "input": "contuse", "output": "⠒⠞⠥⠎⠑" }, { "input": "contused", "output": "⠒⠞⠥⠎⠫" }, { "input": "contuses", "output": "⠒⠞⠥⠎⠑⠎" }, { "input": "contusing", "output": "⠒⠞⠥⠎⠬" }, { "input": "contusion", "output": "⠒⠞⠥⠨â " }, { "input": "contusions", "output": "⠒⠞⠥⠨â â Ž" }, { "input": "conundrum", "output": "â ’â ¥â â ™â —â ¥â " }, { "input": "conundrums", "output": "â ’â ¥â â ™â —â ¥â â Ž" }, { "input": "conurbation", "output": "⠉⠕â â ¥â —â ƒâ â °â " }, { "input": "conurbations", "output": "⠉⠕â â ¥â —â ƒâ â °â â Ž" }, { "input": "convalesce", "output": "â ’â §â â ‡â ‘⠎⠉⠑" }, { "input": "convalesced", "output": "â ’â §â â ‡â ‘⠎⠉⠫" }, { "input": "convalescence", "output": "â ’â §â â ‡â ‘⠎⠉⠰⠑" }, { "input": "convalescences", "output": "â ’â §â â ‡â ‘⠎⠉⠰⠑⠎" }, { "input": "convalescent", "output": "â ’â §â â ‡â ‘⠎⠉⠢⠞" }, { "input": "convalescents", "output": "â ’â §â â ‡â ‘⠎⠉⠢⠞⠎" }, { "input": "convalesces", "output": "â ’â §â â ‡â ‘⠎⠉⠑⠎" }, { "input": "convalescing", "output": "â ’â §â â ‡â ‘⠎⠉⠬" }, { "input": "convection", "output": "⠒⠧⠑⠉⠰â " }, { "input": "convene", "output": "⠒⠧⠢⠑" }, { "input": "convened", "output": "⠒⠧⠢⠫" }, { "input": "convenes", "output": "⠒⠧⠢⠑⠎" }, { "input": "convenience", "output": "⠒⠧⠢⠊⠰⠑" }, { "input": "conveniences", "output": "⠒⠧⠢⠊⠰⠑⠎" }, { "input": "convenient", "output": "⠒⠧⠢⠊⠢⠞" }, { "input": "conveniently", "output": "⠒⠧⠢⠊⠢⠞⠇⠽" }, { "input": "convening", "output": "⠒⠧⠢⠬" }, { "input": "convent", "output": "⠒⠧⠢⠞" }, { "input": "convention", "output": "⠒⠧⠢⠰â " }, { "input": "conventional", "output": "⠒⠧⠢⠰â â â ‡" }, { "input": "conventionality", "output": "⠒⠧⠢⠰â â â ‡â °â ½" }, { "input": "conventionally", "output": "⠒⠧⠢⠰â â â ‡â ‡â ½" }, { "input": "conventions", "output": "⠒⠧⠢⠰â â Ž" }, { "input": "convents", "output": "⠒⠧⠢⠞⠎" }, { "input": "converge", "output": "⠒⠧⠻⠛⠑" }, { "input": "converged", "output": "⠒⠧⠻⠛⠫" }, { "input": "convergence", "output": "⠒⠧⠻⠛⠰⠑" }, { "input": "convergences", "output": "⠒⠧⠻⠛⠰⠑⠎" }, { "input": "convergent", "output": "⠒⠧⠻⠛⠢⠞" }, { "input": "converges", "output": "⠒⠧⠻⠛⠑⠎" }, { "input": "converging", "output": "⠒⠧⠻⠛⠬" }, { "input": "conversant", "output": "⠒⠧⠻⠎â â â ž" }, { "input": "conversation", "output": "⠒⠧⠻⠎â â °â " }, { "input": "conversational", "output": "⠒⠧⠻⠎â â °â â â ‡" }, { "input": "conversationalist", "output": "⠒⠧⠻⠎â â °â â â ‡â Šâ Œ" }, { "input": "conversationalists", "output": "⠒⠧⠻⠎â â °â â â ‡â Šâ Œâ Ž" }, { "input": "conversationally", "output": "⠒⠧⠻⠎â â °â â â ‡â ‡â ½" }, { "input": "conversations", "output": "⠒⠧⠻⠎â â °â â Ž" }, { "input": "converse", "output": "⠒⠧⠻⠎⠑" }, { "input": "conversed", "output": "⠒⠧⠻⠎⠫" }, { "input": "conversely", "output": "⠒⠧⠻⠎⠑⠇⠽" }, { "input": "converses", "output": "⠒⠧⠻⠎⠑⠎" }, { "input": "conversing", "output": "⠒⠧⠻⠎⠬" }, { "input": "conversion", "output": "⠒⠧⠻⠨â " }, { "input": "conversions", "output": "⠒⠧⠻⠨â â Ž" }, { "input": "convert", "output": "⠒⠧⠻⠞" }, { "input": "converted", "output": "⠒⠧⠻⠞⠫" }, { "input": "converter", "output": "⠒⠧⠻⠞⠻" }, { "input": "converters", "output": "⠒⠧⠻⠞⠻⠎" }, { "input": "convertible", "output": "⠒⠧⠻⠞⠊⠃⠇⠑" }, { "input": "convertibles", "output": "⠒⠧⠻⠞⠊⠃⠇⠑⠎" }, { "input": "converting", "output": "⠒⠧⠻⠞⠬" }, { "input": "convertor", "output": "⠒⠧⠻⠞⠕⠗" }, { "input": "convertors", "output": "⠒⠧⠻⠞⠕⠗⠎" }, { "input": "converts", "output": "⠒⠧⠻⠞⠎" }, { "input": "convex", "output": "â ’â §â ‘â ­" }, { "input": "convexity", "output": "â ’â §â ‘â ­â °â ½" }, { "input": "convey", "output": "â ’â §â ‘â ½" }, { "input": "conveyance", "output": "⠒⠧⠑⠽⠨⠑" }, { "input": "conveyances", "output": "⠒⠧⠑⠽⠨⠑⠎" }, { "input": "conveyed", "output": "⠒⠧⠑⠽⠫" }, { "input": "conveyer", "output": "⠒⠧⠑⠽⠻" }, { "input": "conveyers", "output": "⠒⠧⠑⠽⠻⠎" }, { "input": "conveying", "output": "⠒⠧⠑⠽⠬" }, { "input": "conveyor", "output": "⠒⠧⠑⠽⠕⠗" }, { "input": "conveyors", "output": "⠒⠧⠑⠽⠕⠗⠎" }, { "input": "conveys", "output": "⠒⠧⠑⠽⠎" }, { "input": "convict", "output": "⠒⠧⠊⠉⠞" }, { "input": "convicted", "output": "⠒⠧⠊⠉⠞⠫" }, { "input": "convicting", "output": "⠒⠧⠊⠉⠞⠬" }, { "input": "conviction", "output": "⠒⠧⠊⠉⠰â " }, { "input": "convictions", "output": "⠒⠧⠊⠉⠰â â Ž" }, { "input": "convicts", "output": "⠒⠧⠊⠉⠞⠎" }, { "input": "convince", "output": "⠒⠧⠔⠉⠑" }, { "input": "convinced", "output": "⠒⠧⠔⠉⠫" }, { "input": "convinces", "output": "⠒⠧⠔⠉⠑⠎" }, { "input": "convincing", "output": "⠒⠧⠔⠉⠬" }, { "input": "convincingly", "output": "⠒⠧⠔⠉⠬⠇⠽" }, { "input": "convivial", "output": "â ’â §â Šâ §â Šâ â ‡" }, { "input": "conviviality", "output": "â ’â §â Šâ §â Šâ â ‡â °â ½" }, { "input": "convocation", "output": "â ’â §â •â ‰â â °â " }, { "input": "convocations", "output": "â ’â §â •â ‰â â °â â Ž" }, { "input": "convoke", "output": "â ’â §â •â …â ‘" }, { "input": "convoked", "output": "â ’â §â •â …â «" }, { "input": "convokes", "output": "â ’â §â •â …â ‘â Ž" }, { "input": "convoking", "output": "â ’â §â •â …â ¬" }, { "input": "convoluted", "output": "⠒⠧⠕⠇⠥⠞⠫" }, { "input": "convolution", "output": "⠒⠧⠕⠇⠥⠰â " }, { "input": "convolutions", "output": "⠒⠧⠕⠇⠥⠰â â Ž" }, { "input": "convoy", "output": "â ’â §â •â ½" }, { "input": "convoyed", "output": "⠒⠧⠕⠽⠫" }, { "input": "convoying", "output": "⠒⠧⠕⠽⠬" }, { "input": "convoys", "output": "⠒⠧⠕⠽⠎" }, { "input": "convulse", "output": "⠒⠧⠥⠇⠎⠑" }, { "input": "convulsed", "output": "⠒⠧⠥⠇⠎⠫" }, { "input": "convulses", "output": "⠒⠧⠥⠇⠎⠑⠎" }, { "input": "convulsing", "output": "⠒⠧⠥⠇⠎⠬" }, { "input": "convulsion", "output": "⠒⠧⠥⠇⠨â " }, { "input": "convulsions", "output": "⠒⠧⠥⠇⠨â â Ž" }, { "input": "convulsive", "output": "⠒⠧⠥⠇⠎⠊⠧⠑" }, { "input": "convulsively", "output": "⠒⠧⠥⠇⠎⠊⠧⠑⠇⠽" }, { "input": "coo", "output": "⠉⠕⠕" }, { "input": "cooed", "output": "⠉⠕⠕⠫" }, { "input": "cooing", "output": "⠉⠕⠕⠬" }, { "input": "cook", "output": "⠉⠕⠕⠅" }, { "input": "cookbook", "output": "⠉⠕⠕⠅⠃⠕⠕⠅" }, { "input": "cookbooks", "output": "⠉⠕⠕⠅⠃⠕⠕⠅⠎" }, { "input": "cooked", "output": "⠉⠕⠕⠅⠫" }, { "input": "cooker", "output": "⠉⠕⠕⠅⠻" }, { "input": "cookeries", "output": "⠉⠕⠕⠅⠻⠊⠑⠎" }, { "input": "cookers", "output": "⠉⠕⠕⠅⠻⠎" }, { "input": "cookery", "output": "⠉⠕⠕⠅⠻⠽" }, { "input": "cookie", "output": "⠉⠕⠕⠅⠊⠑" }, { "input": "cookies", "output": "⠉⠕⠕⠅⠊⠑⠎" }, { "input": "cooking", "output": "⠉⠕⠕⠅⠬" }, { "input": "cookout", "output": "⠉⠕⠕⠅⠳⠞" }, { "input": "cookouts", "output": "⠉⠕⠕⠅⠳⠞⠎" }, { "input": "cooks", "output": "⠉⠕⠕⠅⠎" }, { "input": "cooky", "output": "⠉⠕⠕⠅⠽" }, { "input": "cool", "output": "⠉⠕⠕⠇" }, { "input": "coolant", "output": "⠉⠕⠕⠇â â â ž" }, { "input": "coolants", "output": "⠉⠕⠕⠇â â â žâ Ž" }, { "input": "cooled", "output": "⠉⠕⠕⠇⠫" }, { "input": "cooler", "output": "⠉⠕⠕⠇⠻" }, { "input": "coolers", "output": "⠉⠕⠕⠇⠻⠎" }, { "input": "coolest", "output": "⠉⠕⠕⠇⠑⠌" }, { "input": "coolie", "output": "⠉⠕⠕⠇⠊⠑" }, { "input": "coolies", "output": "⠉⠕⠕⠇⠊⠑⠎" }, { "input": "cooling", "output": "⠉⠕⠕⠇⠬" }, { "input": "coolly", "output": "⠉⠕⠕⠇⠇⠽" }, { "input": "coolness", "output": "⠉⠕⠕⠇⠰⠎" }, { "input": "cools", "output": "⠉⠕⠕⠇⠎" }, { "input": "coon", "output": "⠉⠕⠕â " }, { "input": "coons", "output": "⠉⠕⠕â â Ž" }, { "input": "coop", "output": "⠉⠕⠕â " }, { "input": "cooped", "output": "⠉⠕⠕â â «" }, { "input": "cooper", "output": "⠉⠕⠕â â »" }, { "input": "cooperate", "output": "⠉⠕⠕â â »â â žâ ‘" }, { "input": "cooperated", "output": "⠉⠕⠕â â »â â žâ «" }, { "input": "cooperates", "output": "⠉⠕⠕â â »â â žâ ‘â Ž" }, { "input": "cooperating", "output": "⠉⠕⠕â â »â â žâ ¬" }, { "input": "cooperation", "output": "⠉⠕⠕â â »â â °â " }, { "input": "cooperative", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘" }, { "input": "cooperatively", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘⠇⠽" }, { "input": "cooperatives", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘â Ž" }, { "input": "coopered", "output": "⠉⠕⠕â â »â «" }, { "input": "coopering", "output": "⠉⠕⠕â â »â ¬" }, { "input": "coopers", "output": "⠉⠕⠕â â »â Ž" }, { "input": "cooping", "output": "⠉⠕⠕â â ¬" }, { "input": "coops", "output": "⠉⠕⠕â â Ž" }, { "input": "coordinate", "output": "⠉⠕⠕⠗⠙⠔â â žâ ‘" }, { "input": "coordinated", "output": "⠉⠕⠕⠗⠙⠔â â žâ «" }, { "input": "coordinates", "output": "⠉⠕⠕⠗⠙⠔â â žâ ‘â Ž" }, { "input": "coordinating", "output": "⠉⠕⠕⠗⠙⠔â â žâ ¬" }, { "input": "coordination", "output": "⠉⠕⠕⠗⠙⠔â â °â " }, { "input": "coordinator", "output": "⠉⠕⠕⠗⠙⠔â â žâ •â —" }, { "input": "coordinators", "output": "⠉⠕⠕⠗⠙⠔â â žâ •â —â Ž" }, { "input": "coos", "output": "⠉⠕⠕⠎" }, { "input": "coot", "output": "⠉⠕⠕⠞" }, { "input": "cootie", "output": "⠉⠕⠕⠞⠊⠑" }, { "input": "cooties", "output": "⠉⠕⠕⠞⠊⠑⠎" }, { "input": "coots", "output": "⠉⠕⠕⠞⠎" }, { "input": "cop", "output": "⠉⠕â " }, { "input": "cope", "output": "⠉⠕â â ‘" }, { "input": "copeck", "output": "⠉⠕â â ‘⠉⠅" }, { "input": "copecks", "output": "⠉⠕â â ‘⠉⠅⠎" }, { "input": "coped", "output": "⠉⠕â â «" }, { "input": "copes", "output": "⠉⠕â â ‘â Ž" }, { "input": "copied", "output": "⠉⠕â â Šâ «" }, { "input": "copier", "output": "⠉⠕â â Šâ »" }, { "input": "copiers", "output": "⠉⠕â â Šâ »â Ž" }, { "input": "copies", "output": "⠉⠕â â Šâ ‘â Ž" }, { "input": "copilot", "output": "⠉⠕â â Šâ ‡â •â ž" }, { "input": "copilots", "output": "⠉⠕â â Šâ ‡â •â žâ Ž" }, { "input": "coping", "output": "⠉⠕â â ¬" }, { "input": "copings", "output": "⠉⠕â â ¬â Ž" }, { "input": "copious", "output": "⠉⠕â â Šâ ³â Ž" }, { "input": "copiously", "output": "⠉⠕â â Šâ ³â Žâ ‡â ½" }, { "input": "copped", "output": "⠉⠕â â â «" }, { "input": "copper", "output": "⠉⠕â â â »" }, { "input": "copperhead", "output": "⠉⠕â â â »â “â ‚â ™" }, { "input": "copperheads", "output": "⠉⠕â â â »â “⠂⠙⠎" }, { "input": "coppers", "output": "⠉⠕â â â »â Ž" }, { "input": "coppery", "output": "⠉⠕â â â »â ½" }, { "input": "coppice", "output": "⠉⠕â â â Šâ ‰â ‘" }, { "input": "coppices", "output": "⠉⠕â â â Šâ ‰â ‘â Ž" }, { "input": "copping", "output": "⠉⠕â â â ¬" }, { "input": "copra", "output": "⠉⠕â â —â " }, { "input": "cops", "output": "⠉⠕â â Ž" }, { "input": "copse", "output": "⠉⠕â â Žâ ‘" }, { "input": "copses", "output": "⠉⠕â â Žâ ‘â Ž" }, { "input": "copter", "output": "⠉⠕â â žâ »" }, { "input": "copters", "output": "⠉⠕â â žâ »â Ž" }, { "input": "copula", "output": "⠉⠕â â ¥â ‡â " }, { "input": "copulae", "output": "⠉⠕â â ¥â ‡â â ‘" }, { "input": "copulas", "output": "⠉⠕â â ¥â ‡â â Ž" }, { "input": "copulate", "output": "⠉⠕â â ¥â ‡â â žâ ‘" }, { "input": "copulated", "output": "⠉⠕â â ¥â ‡â â žâ «" }, { "input": "copulates", "output": "⠉⠕â â ¥â ‡â â žâ ‘â Ž" }, { "input": "copulating", "output": "⠉⠕â â ¥â ‡â â žâ ¬" }, { "input": "copulation", "output": "⠉⠕â â ¥â ‡â â °â " }, { "input": "copy", "output": "⠉⠕â â ½" }, { "input": "copycat", "output": "⠉⠕â â ½â ‰â â ž" }, { "input": "copycats", "output": "⠉⠕â â ½â ‰â â žâ Ž" }, { "input": "copycatted", "output": "⠉⠕â â ½â ‰â â žâ žâ «" }, { "input": "copycatting", "output": "⠉⠕â â ½â ‰â â žâ žâ ¬" }, { "input": "copying", "output": "⠉⠕â â ½â ¬" }, { "input": "copyright", "output": "⠉⠕â â ½â â —" }, { "input": "copyrighted", "output": "⠉⠕â â ½â â —â «" }, { "input": "copyrighting", "output": "⠉⠕â â ½â â —â ¬" }, { "input": "copyrights", "output": "⠉⠕â â ½â â —â Ž" }, { "input": "copywriter", "output": "⠉⠕â â ½â ºâ —â Šâ žâ »" }, { "input": "copywriters", "output": "⠉⠕â â ½â ºâ —⠊⠞⠻⠎" }, { "input": "coquette", "output": "⠉⠕⠟⠥⠑⠞⠞⠑" }, { "input": "coquetted", "output": "⠉⠕⠟⠥⠑⠞⠞⠫" }, { "input": "coquettes", "output": "⠉⠕⠟⠥⠑⠞⠞⠑⠎" }, { "input": "coquetting", "output": "⠉⠕⠟⠥⠑⠞⠞⠬" }, { "input": "coquettish", "output": "⠉⠕⠟⠥⠑⠞⠞⠊⠩" }, { "input": "coral", "output": "⠉⠕⠗â â ‡" }, { "input": "corals", "output": "⠉⠕⠗â â ‡â Ž" }, { "input": "cord", "output": "⠉⠕⠗⠙" }, { "input": "corded", "output": "⠉⠕⠗⠙⠫" }, { "input": "cordial", "output": "⠉⠕⠗⠙⠊â â ‡" }, { "input": "cordiality", "output": "⠉⠕⠗⠙⠊â â ‡â °â ½" }, { "input": "cordially", "output": "⠉⠕⠗⠙⠊â â ‡â ‡â ½" }, { "input": "cordials", "output": "⠉⠕⠗⠙⠊â â ‡â Ž" }, { "input": "cording", "output": "⠉⠕⠗⠙⠬" }, { "input": "cordite", "output": "⠉⠕⠗⠙⠊⠞⠑" }, { "input": "cordless", "output": "⠉⠕⠗⠙⠨⠎" }, { "input": "cordon", "output": "⠉⠕⠗⠙⠕â " }, { "input": "cordoned", "output": "⠉⠕⠗⠙⠕â â «" }, { "input": "cordoning", "output": "⠉⠕⠗⠙⠕â â ¬" }, { "input": "cordons", "output": "⠉⠕⠗⠙⠕â â Ž" }, { "input": "cords", "output": "⠉⠕⠗⠙⠎" }, { "input": "corduroy", "output": "⠉⠕⠗⠙⠥⠗⠕⠽" }, { "input": "corduroys", "output": "⠉⠕⠗⠙⠥⠗⠕⠽⠎" }, { "input": "core", "output": "⠉⠕⠗⠑" }, { "input": "cored", "output": "⠉⠕⠗⠫" }, { "input": "cores", "output": "⠉⠕⠗⠑⠎" }, { "input": "corespondent", "output": "⠉⠕⠗⠑⠎â â •â â ™â ¢â ž" }, { "input": "corespondents", "output": "⠉⠕⠗⠑⠎â â •â â ™â ¢â žâ Ž" }, { "input": "coriander", "output": "⠉⠕⠗⠊⠯⠻" }, { "input": "coring", "output": "⠉⠕⠗⠬" }, { "input": "cork", "output": "⠉⠕⠗⠅" }, { "input": "corked", "output": "⠉⠕⠗⠅⠫" }, { "input": "corking", "output": "⠉⠕⠗⠅⠬" }, { "input": "corks", "output": "⠉⠕⠗⠅⠎" }, { "input": "corkscrew", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺" }, { "input": "corkscrewed", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠫" }, { "input": "corkscrewing", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠬" }, { "input": "corkscrews", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠎" }, { "input": "corm", "output": "⠉⠕⠗â " }, { "input": "cormorant", "output": "⠉⠕⠗â â •â —â â â ž" }, { "input": "cormorants", "output": "⠉⠕⠗â â •â —â â â žâ Ž" }, { "input": "corms", "output": "⠉⠕⠗â â Ž" }, { "input": "corn", "output": "⠉⠕⠗â " }, { "input": "cornball", "output": "⠉⠕⠗â â ƒâ â ‡â ‡" }, { "input": "cornballs", "output": "⠉⠕⠗â â ƒâ â ‡â ‡â Ž" }, { "input": "cornbread", "output": "⠉⠕⠗â â ƒâ —â ‚â ™" }, { "input": "corncob", "output": "⠉⠕⠗â â ‰â •â ƒ" }, { "input": "corncobs", "output": "⠉⠕⠗â â ‰â •⠃⠎" }, { "input": "cornea", "output": "⠉⠕⠗â â ‘â " }, { "input": "corneal", "output": "⠉⠕⠗â â ‚â ‡" }, { "input": "corneas", "output": "⠉⠕⠗â â ‚â Ž" }, { "input": "corned", "output": "⠉⠕⠗â â «" }, { "input": "corner", "output": "⠉⠕⠗â â »" }, { "input": "cornered", "output": "⠉⠕⠗â â »â «" }, { "input": "cornering", "output": "⠉⠕⠗â â »â ¬" }, { "input": "corners", "output": "⠉⠕⠗â â »â Ž" }, { "input": "cornerstone", "output": "⠉⠕⠗â â »â Œâ â •" }, { "input": "cornerstones", "output": "⠉⠕⠗â â »â Œâ â •â Ž" }, { "input": "cornet", "output": "⠉⠕⠗â â ‘â ž" }, { "input": "cornets", "output": "⠉⠕⠗â â ‘â žâ Ž" }, { "input": "cornflakes", "output": "⠉⠕⠗â â ‹â ‡â â …â ‘â Ž" }, { "input": "cornflower", "output": "⠉⠕⠗â â ‹â ‡â ªâ »" }, { "input": "cornflowers", "output": "⠉⠕⠗â â ‹â ‡â ªâ »â Ž" }, { "input": "cornice", "output": "⠉⠕⠗â â Šâ ‰â ‘" }, { "input": "cornices", "output": "⠉⠕⠗â â Šâ ‰â ‘â Ž" }, { "input": "cornier", "output": "⠉⠕⠗â â Šâ »" }, { "input": "corniest", "output": "⠉⠕⠗â â Šâ ‘â Œ" }, { "input": "corning", "output": "⠉⠕⠗â â ¬" }, { "input": "cornmeal", "output": "⠉⠕⠗â â â ‚â ‡" }, { "input": "cornrow", "output": "⠉⠕⠗â â —â ª" }, { "input": "cornrowed", "output": "⠉⠕⠗â â —⠪⠫" }, { "input": "cornrowing", "output": "⠉⠕⠗â â —⠪⠬" }, { "input": "cornrows", "output": "⠉⠕⠗â â —⠪⠎" }, { "input": "corns", "output": "⠉⠕⠗â â Ž" }, { "input": "cornstalk", "output": "⠉⠕⠗â â Œâ â ‡â …" }, { "input": "cornstalks", "output": "⠉⠕⠗â â Œâ â ‡â …â Ž" }, { "input": "cornstarch", "output": "⠉⠕⠗â â Œâ œâ ¡" }, { "input": "cornucopia", "output": "⠉⠕⠗â â ¥â ‰â •â â Šâ " }, { "input": "cornucopias", "output": "⠉⠕⠗â â ¥â ‰â •â â Šâ â Ž" }, { "input": "corny", "output": "⠉⠕⠗â â ½" }, { "input": "corolla", "output": "⠉⠕⠗⠕⠇⠇â " }, { "input": "corollaries", "output": "⠉⠕⠗⠕⠇⠇⠜⠊⠑⠎" }, { "input": "corollary", "output": "⠉⠕⠗⠕⠇⠇⠜⠽" }, { "input": "corollas", "output": "⠉⠕⠗⠕⠇⠇â â Ž" }, { "input": "corona", "output": "⠉⠕⠗⠕â â " }, { "input": "coronae", "output": "⠉⠕⠗⠕â â â ‘" }, { "input": "coronaries", "output": "⠉⠕⠗⠕â â œâ Šâ ‘â Ž" }, { "input": "coronary", "output": "⠉⠕⠗⠕â â œâ ½" }, { "input": "coronas", "output": "⠉⠕⠗⠕â â â Ž" }, { "input": "coronation", "output": "⠉⠕⠗⠕â â â °â " }, { "input": "coronations", "output": "⠉⠕⠗⠕â â â °â â Ž" }, { "input": "coroner", "output": "⠉⠕⠗⠕â â »" }, { "input": "coroners", "output": "⠉⠕⠗⠕â â »â Ž" }, { "input": "coronet", "output": "⠉⠕⠗⠕â â ‘â ž" }, { "input": "coronets", "output": "⠉⠕⠗⠕â â ‘â žâ Ž" }, { "input": "corpora", "output": "⠉⠕⠗â â •â —â " }, { "input": "corporal", "output": "⠉⠕⠗â â •â —â â ‡" }, { "input": "corporals", "output": "⠉⠕⠗â â •â —â â ‡â Ž" }, { "input": "corporate", "output": "⠉⠕⠗â â •â —â â žâ ‘" }, { "input": "corporation", "output": "⠉⠕⠗â â •â —â â °â " }, { "input": "corporations", "output": "⠉⠕⠗â â •â —â â °â â Ž" }, { "input": "corporeal", "output": "⠉⠕⠗â â •â —â ‚â ‡" }, { "input": "corps", "output": "⠉⠕⠗â â Ž" }, { "input": "corpse", "output": "⠉⠕⠗â â Žâ ‘" }, { "input": "corpses", "output": "⠉⠕⠗â â Žâ ‘â Ž" }, { "input": "corpulence", "output": "⠉⠕⠗â â ¥â ‡â °â ‘" }, { "input": "corpulent", "output": "⠉⠕⠗â â ¥â ‡â ¢â ž" }, { "input": "corpus", "output": "⠉⠕⠗â â ¥â Ž" }, { "input": "corpuscle", "output": "⠉⠕⠗â â ¥â Žâ ‰â ‡â ‘" }, { "input": "corpuscles", "output": "⠉⠕⠗â â ¥â Žâ ‰â ‡â ‘â Ž" }, { "input": "corpuses", "output": "⠉⠕⠗â â ¥â Žâ ‘â Ž" }, { "input": "corral", "output": "⠉⠕⠗⠗â â ‡" }, { "input": "corralled", "output": "⠉⠕⠗⠗â â ‡â ‡â «" }, { "input": "corralling", "output": "⠉⠕⠗⠗â â ‡â ‡â ¬" }, { "input": "corrals", "output": "⠉⠕⠗⠗â â ‡â Ž" }, { "input": "correct", "output": "⠉⠕⠗⠗⠑⠉⠞" }, { "input": "correctable", "output": "⠉⠕⠗⠗⠑⠉⠞â â ƒâ ‡â ‘" }, { "input": "corrected", "output": "⠉⠕⠗⠗⠑⠉⠞⠫" }, { "input": "correcter", "output": "⠉⠕⠗⠗⠑⠉⠞⠻" }, { "input": "correctest", "output": "⠉⠕⠗⠗⠑⠉⠞⠑⠌" }, { "input": "correcting", "output": "⠉⠕⠗⠗⠑⠉⠞⠬" }, { "input": "correction", "output": "⠉⠕⠗⠗⠑⠉⠰â " }, { "input": "correctional", "output": "⠉⠕⠗⠗⠑⠉⠰â â â ‡" }, { "input": "corrections", "output": "⠉⠕⠗⠗⠑⠉⠰â â Ž" }, { "input": "corrective", "output": "⠉⠕⠗⠗⠑⠉⠞⠊⠧⠑" }, { "input": "correctives", "output": "⠉⠕⠗⠗⠑⠉⠞⠊⠧⠑⠎" }, { "input": "correctly", "output": "⠉⠕⠗⠗⠑⠉⠞⠇⠽" }, { "input": "correctness", "output": "⠉⠕⠗⠗⠑⠉⠞⠰⠎" }, { "input": "corrector", "output": "⠉⠕⠗⠗⠑⠉⠞⠕⠗" }, { "input": "corrects", "output": "⠉⠕⠗⠗⠑⠉⠞⠎" }, { "input": "correlate", "output": "⠉⠕⠗⠗⠑⠇â â žâ ‘" }, { "input": "correlated", "output": "⠉⠕⠗⠗⠑⠇â â žâ «" }, { "input": "correlates", "output": "⠉⠕⠗⠗⠑⠇â â žâ ‘â Ž" }, { "input": "correlating", "output": "⠉⠕⠗⠗⠑⠇â â žâ ¬" }, { "input": "correlation", "output": "⠉⠕⠗⠗⠑⠇â â °â " }, { "input": "correlations", "output": "⠉⠕⠗⠗⠑⠇â â °â â Ž" }, { "input": "correlative", "output": "⠉⠕⠗⠗⠑⠇â â žâ Šâ §â ‘" }, { "input": "correlatives", "output": "⠉⠕⠗⠗⠑⠇â â žâ Šâ §â ‘â Ž" }, { "input": "correspond", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™" }, { "input": "corresponded", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â «" }, { "input": "correspondence", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â °â ‘" }, { "input": "correspondences", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â °â ‘â Ž" }, { "input": "correspondent", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¢â ž" }, { "input": "correspondents", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¢â žâ Ž" }, { "input": "corresponding", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¬" }, { "input": "correspondingly", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¬â ‡â ½" }, { "input": "corresponds", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â Ž" }, { "input": "corridor", "output": "⠉⠕⠗⠗⠊⠙⠕⠗" }, { "input": "corridors", "output": "⠉⠕⠗⠗⠊⠙⠕⠗⠎" }, { "input": "corroborate", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ ‘" }, { "input": "corroborated", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ «" }, { "input": "corroborates", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ ‘â Ž" }, { "input": "corroborating", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ ¬" }, { "input": "corroboration", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â °â " }, { "input": "corroborations", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â °â â Ž" }, { "input": "corroborative", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ Šâ §â ‘" }, { "input": "corrode", "output": "⠉⠕⠗⠗⠕⠙⠑" }, { "input": "corroded", "output": "⠉⠕⠗⠗⠕⠙⠫" }, { "input": "corrodes", "output": "⠉⠕⠗⠗⠕⠙⠑⠎" }, { "input": "corroding", "output": "⠉⠕⠗⠗⠕⠙⠬" }, { "input": "corrosion", "output": "⠉⠕⠗⠗⠕⠨â " }, { "input": "corrosive", "output": "⠉⠕⠗⠗⠕⠎⠊⠧⠑" }, { "input": "corrosives", "output": "⠉⠕⠗⠗⠕⠎⠊⠧⠑⠎" }, { "input": "corrugate", "output": "⠉⠕⠗⠗⠥⠛â â žâ ‘" }, { "input": "corrugated", "output": "⠉⠕⠗⠗⠥⠛â â žâ «" }, { "input": "corrugates", "output": "⠉⠕⠗⠗⠥⠛â â žâ ‘â Ž" }, { "input": "corrugating", "output": "⠉⠕⠗⠗⠥⠛â â žâ ¬" }, { "input": "corrugation", "output": "⠉⠕⠗⠗⠥⠛â â °â " }, { "input": "corrugations", "output": "⠉⠕⠗⠗⠥⠛â â °â â Ž" }, { "input": "corrupt", "output": "⠉⠕⠗⠗⠥â â ž" }, { "input": "corrupted", "output": "⠉⠕⠗⠗⠥â â žâ «" }, { "input": "corrupter", "output": "⠉⠕⠗⠗⠥â â žâ »" }, { "input": "corruptest", "output": "⠉⠕⠗⠗⠥â â žâ ‘â Œ" }, { "input": "corruptible", "output": "⠉⠕⠗⠗⠥â â žâ Šâ ƒâ ‡â ‘" }, { "input": "corrupting", "output": "⠉⠕⠗⠗⠥â â žâ ¬" }, { "input": "corruption", "output": "⠉⠕⠗⠗⠥â â °â " }, { "input": "corruptions", "output": "⠉⠕⠗⠗⠥â â °â â Ž" }, { "input": "corruptly", "output": "⠉⠕⠗⠗⠥â â žâ ‡â ½" }, { "input": "corruptness", "output": "⠉⠕⠗⠗⠥â â žâ °â Ž" }, { "input": "corrupts", "output": "⠉⠕⠗⠗⠥â â žâ Ž" }, { "input": "corsage", "output": "⠉⠕⠗⠎â â ›â ‘" }, { "input": "corsages", "output": "⠉⠕⠗⠎â â ›â ‘â Ž" }, { "input": "corsair", "output": "⠉⠕⠗⠎â â Šâ —" }, { "input": "corsairs", "output": "⠉⠕⠗⠎â â Šâ —â Ž" }, { "input": "corset", "output": "⠉⠕⠗⠎⠑⠞" }, { "input": "corseted", "output": "⠉⠕⠗⠎⠑⠞⠫" }, { "input": "corseting", "output": "⠉⠕⠗⠎⠑⠞⠬" }, { "input": "corsets", "output": "⠉⠕⠗⠎⠑⠞⠎" }, { "input": "cortex", "output": "⠉⠕⠗⠞⠑⠭" }, { "input": "cortexes", "output": "⠉⠕⠗⠞⠑⠭⠑⠎" }, { "input": "cortical", "output": "⠉⠕⠗⠞⠊⠉â â ‡" }, { "input": "cortices", "output": "⠉⠕⠗⠞⠊⠉⠑⠎" }, { "input": "cortisone", "output": "⠉⠕⠗⠞⠊⠎â â •" }, { "input": "cortège", "output": "⠉⠕⠗⠞⠠⠘⠻â â ¡â â £â ›â ‘" }, { "input": "cortèges", "output": "⠉⠕⠗⠞⠠⠘⠻â â ¡â â £â ›â ‘â Ž" }, { "input": "coruscate", "output": "⠉⠕⠗⠥⠎⠉â â žâ ‘" }, { "input": "coruscated", "output": "⠉⠕⠗⠥⠎⠉â â žâ «" }, { "input": "coruscates", "output": "⠉⠕⠗⠥⠎⠉â â žâ ‘â Ž" }, { "input": "coruscating", "output": "⠉⠕⠗⠥⠎⠉â â žâ ¬" }, { "input": "cosier", "output": "⠉⠕⠎⠊⠻" }, { "input": "cosies", "output": "⠉⠕⠎⠊⠑⠎" }, { "input": "cosiest", "output": "⠉⠕⠎⠊⠑⠌" }, { "input": "cosign", "output": "⠉⠕⠎⠊⠛â " }, { "input": "cosignatories", "output": "⠉⠕⠎⠊⠛â â â žâ •â —â Šâ ‘â Ž" }, { "input": "cosignatory", "output": "⠉⠕⠎⠊⠛â â â žâ •â —â ½" }, { "input": "cosigned", "output": "⠉⠕⠎⠊⠛â â «" }, { "input": "cosigner", "output": "⠉⠕⠎⠊⠛â â »" }, { "input": "cosigners", "output": "⠉⠕⠎⠊⠛â â »â Ž" }, { "input": "cosigning", "output": "⠉⠕⠎⠊⠛â â ¬" }, { "input": "cosigns", "output": "⠉⠕⠎⠊⠛â â Ž" }, { "input": "cosine", "output": "⠉⠕⠎⠔⠑" }, { "input": "cosmetic", "output": "⠉⠕⠎â â ‘â žâ Šâ ‰" }, { "input": "cosmetically", "output": "⠉⠕⠎â â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "cosmetics", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠎" }, { "input": "cosmetologist", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠊⠌" }, { "input": "cosmetologists", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠊⠌⠎" }, { "input": "cosmetology", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠽" }, { "input": "cosmic", "output": "⠉⠕⠎â â Šâ ‰" }, { "input": "cosmically", "output": "⠉⠕⠎â â Šâ ‰â â ‡â ‡â ½" }, { "input": "cosmogonies", "output": "⠉⠕⠎â â •⠛⠕â â Šâ ‘â Ž" }, { "input": "cosmogony", "output": "⠉⠕⠎â â •⠛⠕â â ½" }, { "input": "cosmological", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "cosmologies", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠑⠎" }, { "input": "cosmologist", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠌" }, { "input": "cosmologists", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠌⠎" }, { "input": "cosmology", "output": "⠉⠕⠎â â •⠇⠕⠛⠽" }, { "input": "cosmonaut", "output": "⠉⠕⠎â â •â â â ¥â ž" }, { "input": "cosmonauts", "output": "⠉⠕⠎â â •â â â ¥â žâ Ž" }, { "input": "cosmopolitan", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â " }, { "input": "cosmopolitans", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â â Ž" }, { "input": "cosmos", "output": "⠉⠕⠎â â •â Ž" }, { "input": "cosmoses", "output": "⠉⠕⠎â â •â Žâ ‘â Ž" }, { "input": "cosponsor", "output": "⠉⠕⠎â â •â â Žâ •â —" }, { "input": "cosponsored", "output": "⠉⠕⠎â â •â â Žâ •â —â «" }, { "input": "cosponsoring", "output": "⠉⠕⠎â â •â â Žâ •â —â ¬" }, { "input": "cosponsors", "output": "⠉⠕⠎â â •â â Žâ •â —â Ž" }, { "input": "cost", "output": "⠉⠕⠌" }, { "input": "costar", "output": "⠉⠕⠌⠜" }, { "input": "costarred", "output": "⠉⠕⠌⠜⠗⠫" }, { "input": "costarring", "output": "⠉⠕⠌⠜⠗⠬" }, { "input": "costars", "output": "⠉⠕⠌⠜⠎" }, { "input": "costed", "output": "⠉⠕⠌⠫" }, { "input": "costing", "output": "⠉⠕⠌⠬" }, { "input": "costings", "output": "⠉⠕⠌⠬⠎" }, { "input": "costlier", "output": "⠉⠕⠌⠇⠊⠻" }, { "input": "costliest", "output": "⠉⠕⠌⠇⠊⠑⠌" }, { "input": "costliness", "output": "⠉⠕⠌⠇⠊⠰⠎" }, { "input": "costly", "output": "⠉⠕⠌⠇⠽" }, { "input": "costs", "output": "⠉⠕⠌⠎" }, { "input": "costume", "output": "⠉⠕⠌⠥â â ‘" }, { "input": "costumed", "output": "⠉⠕⠌⠥â â «" }, { "input": "costumes", "output": "⠉⠕⠌⠥â â ‘â Ž" }, { "input": "costuming", "output": "⠉⠕⠌⠥â â ¬" }, { "input": "cosy", "output": "⠉⠕⠎⠽" }, { "input": "cot", "output": "⠉⠕⠞" }, { "input": "cote", "output": "⠉⠕⠞⠑" }, { "input": "coterie", "output": "⠉⠕⠞⠻⠊⠑" }, { "input": "coteries", "output": "⠉⠕⠞⠻⠊⠑⠎" }, { "input": "cotes", "output": "⠉⠕⠞⠑⠎" }, { "input": "cotillion", "output": "⠉⠕⠞⠊⠇⠇⠊⠕â " }, { "input": "cotillions", "output": "⠉⠕⠞⠊⠇⠇⠊⠕â â Ž" }, { "input": "cots", "output": "⠉⠕⠞⠎" }, { "input": "cottage", "output": "⠉⠕⠞⠞â â ›â ‘" }, { "input": "cottages", "output": "⠉⠕⠞⠞â â ›â ‘â Ž" }, { "input": "cotter", "output": "⠉⠕⠞⠞⠻" }, { "input": "cotters", "output": "⠉⠕⠞⠞⠻⠎" }, { "input": "cotton", "output": "⠉⠕⠞⠞⠕â " }, { "input": "cottoned", "output": "⠉⠕⠞⠞⠕â â «" }, { "input": "cottoning", "output": "⠉⠕⠞⠞⠕â â ¬" }, { "input": "cottonmouth", "output": "⠉⠕⠞⠞⠕â â â ³â ¹" }, { "input": "cottonmouths", "output": "⠉⠕⠞⠞⠕â â â ³â ¹â Ž" }, { "input": "cottons", "output": "⠉⠕⠞⠞⠕â â Ž" }, { "input": "cottonseed", "output": "⠉⠕⠞⠞⠕â â Žâ ‘â «" }, { "input": "cottonseeds", "output": "⠉⠕⠞⠞⠕â â Žâ ‘â «â Ž" }, { "input": "cottontail", "output": "⠉⠕⠞⠞⠕â â žâ â Šâ ‡" }, { "input": "cottontails", "output": "⠉⠕⠞⠞⠕â â žâ â Šâ ‡â Ž" }, { "input": "cottonwood", "output": "⠉⠕⠞⠞⠕â â ºâ •â •â ™" }, { "input": "cottonwoods", "output": "⠉⠕⠞⠞⠕â â ºâ •⠕⠙⠎" }, { "input": "cotyledon", "output": "⠉⠕⠞⠽⠇⠫⠕â " }, { "input": "cotyledons", "output": "⠉⠕⠞⠽⠇⠫⠕â â Ž" }, { "input": "couch", "output": "⠉⠳⠡" }, { "input": "couched", "output": "⠉⠳⠡⠫" }, { "input": "couches", "output": "⠉⠳⠡⠑⠎" }, { "input": "couching", "output": "⠉⠳⠡⠬" }, { "input": "cougar", "output": "⠉⠳⠛⠜" }, { "input": "cougars", "output": "⠉⠳⠛⠜⠎" }, { "input": "cough", "output": "⠉⠳⠣" }, { "input": "coughed", "output": "⠉⠳⠣⠫" }, { "input": "coughing", "output": "⠉⠳⠣⠬" }, { "input": "coughs", "output": "⠉⠳⠣⠎" }, { "input": "could", "output": "⠉⠙" }, { "input": "council", "output": "⠉⠳â â ‰â Šâ ‡" }, { "input": "councillor", "output": "⠉⠳â â ‰â Šâ ‡â ‡â •â —" }, { "input": "councillors", "output": "⠉⠳â â ‰â Šâ ‡â ‡â •â —â Ž" }, { "input": "councilman", "output": "⠉⠳â â ‰â Šâ ‡â â â " }, { "input": "councilmen", "output": "⠉⠳â â ‰â Šâ ‡â â ¢" }, { "input": "councilor", "output": "⠉⠳â â ‰â Šâ ‡â •â —" }, { "input": "councilors", "output": "⠉⠳â â ‰â Šâ ‡â •â —â Ž" }, { "input": "councils", "output": "⠉⠳â â ‰â Šâ ‡â Ž" }, { "input": "councilwoman", "output": "⠉⠳â â ‰â Šâ ‡â ºâ •â â â " }, { "input": "councilwomen", "output": "⠉⠳â â ‰â Šâ ‡â ºâ •â â ¢" }, { "input": "counsel", "output": "⠉⠳â â Žâ ‘â ‡" }, { "input": "counseled", "output": "⠉⠳â â Žâ ‘⠇⠫" }, { "input": "counseling", "output": "⠉⠳â â Žâ ‘⠇⠬" }, { "input": "counselings", "output": "⠉⠳â â Žâ ‘⠇⠬⠎" }, { "input": "counselled", "output": "⠉⠳â â Žâ ‘⠇⠇⠫" }, { "input": "counsellor", "output": "⠉⠳â â Žâ ‘⠇⠇⠕⠗" }, { "input": "counsellors", "output": "⠉⠳â â Žâ ‘⠇⠇⠕⠗⠎" }, { "input": "counselor", "output": "⠉⠳â â Žâ ‘⠇⠕⠗" }, { "input": "counselors", "output": "⠉⠳â â Žâ ‘⠇⠕⠗⠎" }, { "input": "counsels", "output": "⠉⠳â â Žâ ‘⠇⠎" }, { "input": "count", "output": "⠉⠨⠞" }, { "input": "countable", "output": "⠉⠨⠞â â ƒâ ‡â ‘" }, { "input": "countably", "output": "⠉⠨⠞â â ƒâ ‡â ½" }, { "input": "countdown", "output": "⠉⠨⠞⠙⠪â " }, { "input": "countdowns", "output": "⠉⠨⠞⠙⠪â â Ž" }, { "input": "counted", "output": "⠉⠨⠞⠫" }, { "input": "countenance", "output": "⠉⠨⠞⠢⠨⠑" }, { "input": "countenanced", "output": "⠉⠨⠞⠢⠨⠑⠙" }, { "input": "countenances", "output": "⠉⠨⠞⠢⠨⠑⠎" }, { "input": "countenancing", "output": "⠉⠨⠞⠢â â â ‰â ¬" }, { "input": "counter", "output": "⠉⠨⠞⠻" }, { "input": "counteract", "output": "⠉⠨⠞⠻â â ‰â ž" }, { "input": "counteracted", "output": "⠉⠨⠞⠻â â ‰â žâ «" }, { "input": "counteracting", "output": "⠉⠨⠞⠻â â ‰â žâ ¬" }, { "input": "counteraction", "output": "⠉⠨⠞⠻â â ‰â °â " }, { "input": "counteractions", "output": "⠉⠨⠞⠻â â ‰â °â â Ž" }, { "input": "counteracts", "output": "⠉⠨⠞⠻â â ‰â žâ Ž" }, { "input": "counterattack", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …" }, { "input": "counterattacked", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â «" }, { "input": "counterattacking", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â ¬" }, { "input": "counterattacks", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â Ž" }, { "input": "counterbalance", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘" }, { "input": "counterbalanced", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘â ™" }, { "input": "counterbalances", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘â Ž" }, { "input": "counterbalancing", "output": "⠉⠨⠞⠻⠃â â ‡â â â ‰â ¬" }, { "input": "counterclaim", "output": "⠉⠨⠞⠻⠉⠇â â Šâ " }, { "input": "counterclaimed", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â «" }, { "input": "counterclaiming", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â ¬" }, { "input": "counterclaims", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â Ž" }, { "input": "counterclockwise", "output": "⠉⠨⠞⠻⠉⠇⠕⠉⠅⠺⠊⠎⠑" }, { "input": "counterculture", "output": "⠉⠨⠞⠻⠉⠥⠇⠞⠥⠗⠑" }, { "input": "countered", "output": "⠉⠨⠞⠻⠫" }, { "input": "counterespionage", "output": "⠉⠨⠞⠻⠑⠎â â Šâ •â â â ›â ‘" }, { "input": "counterexample", "output": "⠉⠨⠞⠻⠑⠭â â â â ‡â ‘" }, { "input": "counterexamples", "output": "⠉⠨⠞⠻⠑⠭â â â â ‡â ‘â Ž" }, { "input": "counterfeit", "output": "⠉⠨⠞⠻⠋⠑⠊⠞" }, { "input": "counterfeited", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠫" }, { "input": "counterfeiter", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠻" }, { "input": "counterfeiters", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠻⠎" }, { "input": "counterfeiting", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠬" }, { "input": "counterfeits", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠎" }, { "input": "countering", "output": "⠉⠨⠞⠻⠬" }, { "input": "counterintelligence", "output": "⠉⠨⠞⠻⠔⠞⠑⠇⠇⠊⠛⠰⠑" }, { "input": "countermand", "output": "⠉⠨⠞⠻â â ¯" }, { "input": "countermanded", "output": "⠉⠨⠞⠻â â ¯â «" }, { "input": "countermanding", "output": "⠉⠨⠞⠻â â ¯â ¬" }, { "input": "countermands", "output": "⠉⠨⠞⠻â â ¯â Ž" }, { "input": "counteroffer", "output": "⠉⠨⠞⠻⠷⠋⠻" }, { "input": "counteroffers", "output": "⠉⠨⠞⠻⠷⠋⠻⠎" }, { "input": "counterpane", "output": "⠉⠨⠞⠻â â â â ‘" }, { "input": "counterpanes", "output": "⠉⠨⠞⠻â â â â ‘â Ž" }, { "input": "counterpart", "output": "⠉⠨⠞⠻â â " }, { "input": "counterparts", "output": "⠉⠨⠞⠻â â â Ž" }, { "input": "counterpoint", "output": "⠉⠨⠞⠻â â •⠔⠞" }, { "input": "counterpoints", "output": "⠉⠨⠞⠻â â •⠔⠞⠎" }, { "input": "counterproductive", "output": "⠉⠨⠞⠻â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "counterrevolution", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â " }, { "input": "counterrevolutionaries", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â œâ Šâ ‘â Ž" }, { "input": "counterrevolutionary", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â œâ ½" }, { "input": "counterrevolutions", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â Ž" }, { "input": "counters", "output": "⠉⠨⠞⠻⠎" }, { "input": "countersank", "output": "⠉⠨⠞⠻⠎â â â …" }, { "input": "countersign", "output": "⠉⠨⠞⠻⠎⠊⠛â " }, { "input": "countersigned", "output": "⠉⠨⠞⠻⠎⠊⠛â â «" }, { "input": "countersigning", "output": "⠉⠨⠞⠻⠎⠊⠛â â ¬" }, { "input": "countersigns", "output": "⠉⠨⠞⠻⠎⠊⠛â â Ž" }, { "input": "countersink", "output": "⠉⠨⠞⠻⠎⠔⠅" }, { "input": "countersinking", "output": "⠉⠨⠞⠻⠎⠔⠅⠬" }, { "input": "countersinks", "output": "⠉⠨⠞⠻⠎⠔⠅⠎" }, { "input": "countersunk", "output": "⠉⠨⠞⠻⠎⠥â â …" }, { "input": "countertenor", "output": "⠉⠨⠞⠻⠞⠢⠕⠗" }, { "input": "countertenors", "output": "⠉⠨⠞⠻⠞⠢⠕⠗⠎" }, { "input": "counterweight", "output": "⠉⠨⠞⠻⠺⠑⠊⠣⠞" }, { "input": "counterweights", "output": "⠉⠨⠞⠻⠺⠑⠊⠣⠞⠎" }, { "input": "countess", "output": "⠉⠨⠞⠑⠎⠎" }, { "input": "countesses", "output": "⠉⠨⠞⠑⠎⠎⠑⠎" }, { "input": "counties", "output": "⠉⠨⠞⠊⠑⠎" }, { "input": "counting", "output": "⠉⠨⠞⠬" }, { "input": "countless", "output": "⠉⠨⠞⠨⠎" }, { "input": "countries", "output": "⠉⠨⠞⠗⠊⠑⠎" }, { "input": "countrified", "output": "⠉⠨⠞⠗⠊⠋⠊⠫" }, { "input": "country", "output": "⠉⠨⠞⠗⠽" }, { "input": "countryman", "output": "⠉⠨⠞⠗⠽â â â " }, { "input": "countrymen", "output": "⠉⠨⠞⠗⠽â â ¢" }, { "input": "countryside", "output": "⠉⠨⠞⠗⠽⠎⠊⠙⠑" }, { "input": "countrysides", "output": "⠉⠨⠞⠗⠽⠎⠊⠙⠑⠎" }, { "input": "countrywoman", "output": "⠉⠨⠞⠗⠽⠺⠕â â â " }, { "input": "countrywomen", "output": "⠉⠨⠞⠗⠽⠺⠕â â ¢" }, { "input": "counts", "output": "⠉⠨⠞⠎" }, { "input": "county", "output": "⠉⠨⠞⠽" }, { "input": "coup", "output": "⠉⠳â " }, { "input": "coupe", "output": "⠉⠳â â ‘" }, { "input": "coupes", "output": "⠉⠳â â ‘â Ž" }, { "input": "couple", "output": "⠉⠳â â ‡â ‘" }, { "input": "coupled", "output": "⠉⠳â â ‡â «" }, { "input": "couples", "output": "⠉⠳â â ‡â ‘â Ž" }, { "input": "couplet", "output": "⠉⠳â â ‡â ‘â ž" }, { "input": "couplets", "output": "⠉⠳â â ‡â ‘â žâ Ž" }, { "input": "coupling", "output": "⠉⠳â â ‡â ¬" }, { "input": "couplings", "output": "⠉⠳â â ‡â ¬â Ž" }, { "input": "coupon", "output": "⠉⠳â â •â " }, { "input": "coupons", "output": "⠉⠳â â •â â Ž" }, { "input": "coups", "output": "⠉⠳â â Ž" }, { "input": "courage", "output": "⠉⠳⠗â â ›â ‘" }, { "input": "courageous", "output": "⠉⠳⠗â â ›â ‘⠳⠎" }, { "input": "courageously", "output": "⠉⠳⠗â â ›â ‘⠳⠎⠇⠽" }, { "input": "courier", "output": "⠉⠳⠗⠊⠻" }, { "input": "couriers", "output": "⠉⠳⠗⠊⠻⠎" }, { "input": "course", "output": "⠉⠳⠗⠎⠑" }, { "input": "coursed", "output": "⠉⠳⠗⠎⠫" }, { "input": "courser", "output": "⠉⠳⠗⠎⠻" }, { "input": "courses", "output": "⠉⠳⠗⠎⠑⠎" }, { "input": "coursing", "output": "⠉⠳⠗⠎⠬" }, { "input": "court", "output": "⠉⠳⠗⠞" }, { "input": "courted", "output": "⠉⠳⠗⠞⠫" }, { "input": "courteous", "output": "⠉⠳⠗⠞⠑⠳⠎" }, { "input": "courteously", "output": "⠉⠳⠗⠞⠑⠳⠎⠇⠽" }, { "input": "courteousness", "output": "⠉⠳⠗⠞⠑⠳⠎⠰⠎" }, { "input": "courtesan", "output": "⠉⠳⠗⠞⠑⠎â â " }, { "input": "courtesans", "output": "⠉⠳⠗⠞⠑⠎â â â Ž" }, { "input": "courtesies", "output": "⠉⠳⠗⠞⠑⠎⠊⠑⠎" }, { "input": "courtesy", "output": "⠉⠳⠗⠞⠑⠎⠽" }, { "input": "courthouse", "output": "⠉⠳⠗⠞⠓⠳⠎⠑" }, { "input": "courthouses", "output": "⠉⠳⠗⠞⠓⠳⠎⠑⠎" }, { "input": "courtier", "output": "⠉⠳⠗⠞⠊⠻" }, { "input": "courtiers", "output": "⠉⠳⠗⠞⠊⠻⠎" }, { "input": "courting", "output": "⠉⠳⠗⠞⠬" }, { "input": "courtlier", "output": "⠉⠳⠗⠞⠇⠊⠻" }, { "input": "courtliest", "output": "⠉⠳⠗⠞⠇⠊⠑⠌" }, { "input": "courtliness", "output": "⠉⠳⠗⠞⠇⠊⠰⠎" }, { "input": "courtly", "output": "⠉⠳⠗⠞⠇⠽" }, { "input": "courtroom", "output": "⠉⠳⠗⠞⠗⠕⠕â " }, { "input": "courtrooms", "output": "⠉⠳⠗⠞⠗⠕⠕â â Ž" }, { "input": "courts", "output": "⠉⠳⠗⠞⠎" }, { "input": "courtship", "output": "⠉⠳⠗⠞⠩⠊â " }, { "input": "courtships", "output": "⠉⠳⠗⠞⠩⠊â â Ž" }, { "input": "courtyard", "output": "⠉⠳⠗⠞⠽⠜⠙" }, { "input": "courtyards", "output": "⠉⠳⠗⠞⠽⠜⠙⠎" }, { "input": "cousin", "output": "⠉⠳⠎⠔" }, { "input": "cousins", "output": "⠉⠳⠎⠔⠎" }, { "input": "cove", "output": "⠉⠕⠧⠑" }, { "input": "coven", "output": "⠉⠕⠧⠢" }, { "input": "covenant", "output": "⠉⠕⠧⠢â â â ž" }, { "input": "covenanted", "output": "⠉⠕⠧⠢â â â žâ «" }, { "input": "covenanting", "output": "⠉⠕⠧⠢â â â žâ ¬" }, { "input": "covenants", "output": "⠉⠕⠧⠢â â â žâ Ž" }, { "input": "covens", "output": "⠉⠕⠧⠢⠎" }, { "input": "cover", "output": "⠉⠕⠧⠻" }, { "input": "coverage", "output": "⠉⠕⠧⠻â â ›â ‘" }, { "input": "coverall", "output": "⠉⠕⠧⠻â â ‡â ‡" }, { "input": "coveralls", "output": "⠉⠕⠧⠻â â ‡â ‡â Ž" }, { "input": "covered", "output": "⠉⠕⠧⠻⠫" }, { "input": "covering", "output": "⠉⠕⠧⠻⠬" }, { "input": "coverings", "output": "⠉⠕⠧⠻⠬⠎" }, { "input": "coverlet", "output": "⠉⠕⠧⠻⠇⠑⠞" }, { "input": "coverlets", "output": "⠉⠕⠧⠻⠇⠑⠞⠎" }, { "input": "covers", "output": "⠉⠕⠧⠻⠎" }, { "input": "covert", "output": "⠉⠕⠧⠻⠞" }, { "input": "covertly", "output": "⠉⠕⠧⠻⠞⠇⠽" }, { "input": "coverts", "output": "⠉⠕⠧⠻⠞⠎" }, { "input": "coves", "output": "⠉⠕⠧⠑⠎" }, { "input": "covet", "output": "⠉⠕⠧⠑⠞" }, { "input": "coveted", "output": "⠉⠕⠧⠑⠞⠫" }, { "input": "coveting", "output": "⠉⠕⠧⠑⠞⠬" }, { "input": "covetous", "output": "⠉⠕⠧⠑⠞⠳⠎" }, { "input": "covetously", "output": "⠉⠕⠧⠑⠞⠳⠎⠇⠽" }, { "input": "covetousness", "output": "⠉⠕⠧⠑⠞⠳⠎⠰⠎" }, { "input": "covets", "output": "⠉⠕⠧⠑⠞⠎" }, { "input": "covey", "output": "⠉⠕⠧⠑⠽" }, { "input": "coveys", "output": "⠉⠕⠧⠑⠽⠎" }, { "input": "cow", "output": "⠉⠪" }, { "input": "coward", "output": "⠉⠪⠜⠙" }, { "input": "cowardice", "output": "⠉⠪⠜⠙⠊⠉⠑" }, { "input": "cowardliness", "output": "⠉⠪⠜⠙⠇⠊⠰⠎" }, { "input": "cowardly", "output": "⠉⠪⠜⠙⠇⠽" }, { "input": "cowards", "output": "⠉⠪⠜⠙⠎" }, { "input": "cowbird", "output": "⠉⠪⠃⠊⠗⠙" }, { "input": "cowbirds", "output": "⠉⠪⠃⠊⠗⠙⠎" }, { "input": "cowboy", "output": "⠉⠪⠃⠕⠽" }, { "input": "cowboys", "output": "⠉⠪⠃⠕⠽⠎" }, { "input": "cowed", "output": "⠉⠪⠫" }, { "input": "cower", "output": "⠉⠪⠻" }, { "input": "cowered", "output": "⠉⠪⠻⠫" }, { "input": "cowering", "output": "⠉⠪⠻⠬" }, { "input": "cowers", "output": "⠉⠪⠻⠎" }, { "input": "cowgirl", "output": "⠉⠪⠛⠊⠗⠇" }, { "input": "cowgirls", "output": "⠉⠪⠛⠊⠗⠇⠎" }, { "input": "cowhand", "output": "⠉⠪⠓⠯" }, { "input": "cowhands", "output": "⠉⠪⠓⠯⠎" }, { "input": "cowhide", "output": "⠉⠪⠓⠊⠙⠑" }, { "input": "cowhides", "output": "⠉⠪⠓⠊⠙⠑⠎" }, { "input": "cowing", "output": "⠉⠪⠬" }, { "input": "cowl", "output": "⠉⠪⠇" }, { "input": "cowlick", "output": "⠉⠪⠇⠊⠉⠅" }, { "input": "cowlicks", "output": "⠉⠪⠇⠊⠉⠅⠎" }, { "input": "cowling", "output": "⠉⠪⠇⠬" }, { "input": "cowlings", "output": "⠉⠪⠇⠬⠎" }, { "input": "cowls", "output": "⠉⠪⠇⠎" }, { "input": "coworker", "output": "⠉⠕â â ºâ »" }, { "input": "coworkers", "output": "⠉⠕â â ºâ »â Ž" }, { "input": "cowpoke", "output": "⠉⠪â â •â …â ‘" }, { "input": "cowpokes", "output": "⠉⠪â â •â …â ‘â Ž" }, { "input": "cowpox", "output": "⠉⠪â â •â ­" }, { "input": "cowpuncher", "output": "⠉⠪â â ¥â â ¡â »" }, { "input": "cowpunchers", "output": "⠉⠪â â ¥â â ¡â »â Ž" }, { "input": "cows", "output": "⠉⠪⠎" }, { "input": "cowslip", "output": "⠉⠪⠎⠇⠊â " }, { "input": "cowslips", "output": "⠉⠪⠎⠇⠊â â Ž" }, { "input": "cox", "output": "⠉⠕⠭" }, { "input": "coxcomb", "output": "⠉⠕⠭⠉⠕â â ƒ" }, { "input": "coxcombs", "output": "⠉⠕⠭⠉⠕â â ƒâ Ž" }, { "input": "coxswain", "output": "⠉⠕⠭⠎⠺â â ”" }, { "input": "coxswains", "output": "⠉⠕⠭⠎⠺â â ”â Ž" }, { "input": "coy", "output": "⠉⠕⠽" }, { "input": "coyer", "output": "⠉⠕⠽⠻" }, { "input": "coyest", "output": "⠉⠕⠽⠑⠌" }, { "input": "coyly", "output": "⠉⠕⠽⠇⠽" }, { "input": "coyness", "output": "⠉⠕⠽⠰⠎" }, { "input": "coyote", "output": "⠉⠕⠽⠕⠞⠑" }, { "input": "coyotes", "output": "⠉⠕⠽⠕⠞⠑⠎" }, { "input": "cozen", "output": "⠉⠕⠵⠢" }, { "input": "cozened", "output": "⠉⠕⠵⠢⠫" }, { "input": "cozening", "output": "⠉⠕⠵⠢⠬" }, { "input": "cozens", "output": "⠉⠕⠵⠢⠎" }, { "input": "cozier", "output": "⠉⠕⠵⠊⠻" }, { "input": "cozies", "output": "⠉⠕⠵⠊⠑⠎" }, { "input": "coziest", "output": "⠉⠕⠵⠊⠑⠌" }, { "input": "cozily", "output": "⠉⠕⠵⠊⠇⠽" }, { "input": "coziness", "output": "⠉⠕⠵⠊⠰⠎" }, { "input": "cozy", "output": "⠉⠕⠵⠽" }, { "input": "crab", "output": "⠉⠗â â ƒ" }, { "input": "crabbed", "output": "⠉⠗â â †â «" }, { "input": "crabbier", "output": "⠉⠗â â †â Šâ »" }, { "input": "crabbiest", "output": "⠉⠗â â †â Šâ ‘â Œ" }, { "input": "crabbily", "output": "⠉⠗â â †â Šâ ‡â ½" }, { "input": "crabbiness", "output": "⠉⠗â â †â Šâ °â Ž" }, { "input": "crabbing", "output": "⠉⠗â â †â ¬" }, { "input": "crabby", "output": "⠉⠗â â †â ½" }, { "input": "crabs", "output": "⠉⠗â â ƒâ Ž" }, { "input": "crack", "output": "⠉⠗â â ‰â …" }, { "input": "crackdown", "output": "⠉⠗â â ‰â …⠙⠪â " }, { "input": "crackdowns", "output": "⠉⠗â â ‰â …⠙⠪â â Ž" }, { "input": "cracked", "output": "⠉⠗â â ‰â …â «" }, { "input": "cracker", "output": "⠉⠗â â ‰â …â »" }, { "input": "crackerjack", "output": "⠉⠗â â ‰â …⠻⠚â â ‰â …" }, { "input": "crackerjacks", "output": "⠉⠗â â ‰â …⠻⠚â â ‰â …â Ž" }, { "input": "crackers", "output": "⠉⠗â â ‰â …⠻⠎" }, { "input": "cracking", "output": "⠉⠗â â ‰â …â ¬" }, { "input": "crackle", "output": "⠉⠗â â ‰â …⠇⠑" }, { "input": "crackled", "output": "⠉⠗â â ‰â …⠇⠫" }, { "input": "crackles", "output": "⠉⠗â â ‰â …⠇⠑⠎" }, { "input": "cracklier", "output": "⠉⠗â â ‰â …⠇⠊⠻" }, { "input": "crackliest", "output": "⠉⠗â â ‰â …⠇⠊⠑⠌" }, { "input": "crackling", "output": "⠉⠗â â ‰â …⠇⠬" }, { "input": "crackly", "output": "⠉⠗â â ‰â …⠇⠽" }, { "input": "crackpot", "output": "⠉⠗â â ‰â …â â •â ž" }, { "input": "crackpots", "output": "⠉⠗â â ‰â …â â •â žâ Ž" }, { "input": "cracks", "output": "⠉⠗â â ‰â …â Ž" }, { "input": "crackup", "output": "⠉⠗â â ‰â …â ¥â " }, { "input": "crackups", "output": "⠉⠗â â ‰â …â ¥â â Ž" }, { "input": "cradle", "output": "⠉⠗â â ™â ‡â ‘" }, { "input": "cradled", "output": "⠉⠗â â ™â ‡â «" }, { "input": "cradles", "output": "⠉⠗â â ™â ‡â ‘â Ž" }, { "input": "cradling", "output": "⠉⠗â â ™â ‡â ¬" }, { "input": "craft", "output": "⠉⠗â â ‹â ž" }, { "input": "crafted", "output": "⠉⠗â â ‹â žâ «" }, { "input": "craftier", "output": "⠉⠗â â ‹â žâ Šâ »" }, { "input": "craftiest", "output": "⠉⠗â â ‹â žâ Šâ ‘â Œ" }, { "input": "craftily", "output": "⠉⠗â â ‹â žâ Šâ ‡â ½" }, { "input": "craftiness", "output": "⠉⠗â â ‹â žâ Šâ °â Ž" }, { "input": "crafting", "output": "⠉⠗â â ‹â žâ ¬" }, { "input": "crafts", "output": "⠉⠗â â ‹â žâ Ž" }, { "input": "craftsman", "output": "⠉⠗â â ‹â žâ Žâ â â " }, { "input": "craftsmanship", "output": "⠉⠗â â ‹â žâ Žâ â â â ©â Šâ " }, { "input": "craftsmen", "output": "⠉⠗â â ‹â žâ Žâ â ¢" }, { "input": "crafty", "output": "⠉⠗â â ‹â žâ ½" }, { "input": "crag", "output": "⠉⠗â â ›" }, { "input": "craggier", "output": "⠉⠗â â ¶â Šâ »" }, { "input": "craggiest", "output": "⠉⠗â â ¶â Šâ ‘â Œ" }, { "input": "craggy", "output": "⠉⠗â â ¶â ½" }, { "input": "crags", "output": "⠉⠗â â ›â Ž" }, { "input": "cram", "output": "⠉⠗â â " }, { "input": "crammed", "output": "⠉⠗â â â â «" }, { "input": "cramming", "output": "⠉⠗â â â â ¬" }, { "input": "cramp", "output": "⠉⠗â â â " }, { "input": "cramped", "output": "⠉⠗â â â â «" }, { "input": "cramping", "output": "⠉⠗â â â â ¬" }, { "input": "cramps", "output": "⠉⠗â â â â Ž" }, { "input": "crams", "output": "⠉⠗â â â Ž" }, { "input": "cranberries", "output": "⠉⠗â â â ƒâ »â —â Šâ ‘â Ž" }, { "input": "cranberry", "output": "⠉⠗â â â ƒâ »â —â ½" }, { "input": "crane", "output": "⠉⠗â â â ‘" }, { "input": "craned", "output": "⠉⠗â â â «" }, { "input": "cranes", "output": "⠉⠗â â â ‘â Ž" }, { "input": "crania", "output": "⠉⠗â â â Šâ " }, { "input": "cranial", "output": "⠉⠗â â â Šâ â ‡" }, { "input": "craning", "output": "⠉⠗â â â ¬" }, { "input": "cranium", "output": "⠉⠗â â â Šâ ¥â " }, { "input": "craniums", "output": "⠉⠗â â â Šâ ¥â â Ž" }, { "input": "crank", "output": "⠉⠗â â â …" }, { "input": "crankcase", "output": "⠉⠗â â â …â ‰â â Žâ ‘" }, { "input": "crankcases", "output": "⠉⠗â â â …â ‰â â Žâ ‘â Ž" }, { "input": "cranked", "output": "⠉⠗â â â …â «" }, { "input": "crankier", "output": "⠉⠗â â â …â Šâ »" }, { "input": "crankiest", "output": "⠉⠗â â â …â Šâ ‘â Œ" }, { "input": "crankiness", "output": "⠉⠗â â â …â Šâ °â Ž" }, { "input": "cranking", "output": "⠉⠗â â â …â ¬" }, { "input": "cranks", "output": "⠉⠗â â â …â Ž" }, { "input": "crankshaft", "output": "⠉⠗â â â …â ©â â ‹â ž" }, { "input": "crankshafts", "output": "⠉⠗â â â …â ©â â ‹â žâ Ž" }, { "input": "cranky", "output": "⠉⠗â â â …â ½" }, { "input": "crannies", "output": "⠉⠗â â â â Šâ ‘â Ž" }, { "input": "cranny", "output": "⠉⠗â â â â ½" }, { "input": "crap", "output": "⠉⠗â â " }, { "input": "crape", "output": "⠉⠗â â â ‘" }, { "input": "crapes", "output": "⠉⠗â â â ‘â Ž" }, { "input": "crapped", "output": "⠉⠗â â â â «" }, { "input": "crappier", "output": "⠉⠗â â â â Šâ »" }, { "input": "crappiest", "output": "⠉⠗â â â â Šâ ‘â Œ" }, { "input": "crapping", "output": "⠉⠗â â â â ¬" }, { "input": "crappy", "output": "⠉⠗â â â â ½" }, { "input": "craps", "output": "⠉⠗â â â Ž" }, { "input": "crash", "output": "⠉⠗â â ©" }, { "input": "crashed", "output": "⠉⠗â â ©â «" }, { "input": "crashes", "output": "⠉⠗â â ©â ‘â Ž" }, { "input": "crashing", "output": "⠉⠗â â ©â ¬" }, { "input": "crass", "output": "⠉⠗â â Žâ Ž" }, { "input": "crasser", "output": "⠉⠗â â Žâ Žâ »" }, { "input": "crassest", "output": "⠉⠗â â Žâ Žâ ‘â Œ" }, { "input": "crassly", "output": "⠉⠗â â Žâ Žâ ‡â ½" }, { "input": "crassness", "output": "⠉⠗â â Žâ Žâ °â Ž" }, { "input": "crate", "output": "⠉⠗â â žâ ‘" }, { "input": "crated", "output": "⠉⠗â â žâ «" }, { "input": "crater", "output": "⠉⠗â â žâ »" }, { "input": "cratered", "output": "⠉⠗â â žâ »â «" }, { "input": "cratering", "output": "⠉⠗â â žâ »â ¬" }, { "input": "craters", "output": "⠉⠗â â žâ »â Ž" }, { "input": "crates", "output": "⠉⠗â â žâ ‘â Ž" }, { "input": "crating", "output": "⠉⠗â â žâ ¬" }, { "input": "cravat", "output": "⠉⠗â â §â â ž" }, { "input": "cravats", "output": "⠉⠗â â §â â žâ Ž" }, { "input": "crave", "output": "⠉⠗â â §â ‘" }, { "input": "craved", "output": "⠉⠗â â §â «" }, { "input": "craven", "output": "⠉⠗â â §â ¢" }, { "input": "cravenly", "output": "⠉⠗â â §â ¢â ‡â ½" }, { "input": "cravens", "output": "⠉⠗â â §â ¢â Ž" }, { "input": "craves", "output": "⠉⠗â â §â ‘â Ž" }, { "input": "craving", "output": "⠉⠗â â §â ¬" }, { "input": "cravings", "output": "⠉⠗â â §â ¬â Ž" }, { "input": "craw", "output": "⠉⠗â â º" }, { "input": "crawfish", "output": "⠉⠗â â ºâ ‹â Šâ ©" }, { "input": "crawfishes", "output": "⠉⠗â â ºâ ‹â Šâ ©â ‘â Ž" }, { "input": "crawl", "output": "⠉⠗â â ºâ ‡" }, { "input": "crawled", "output": "⠉⠗â â ºâ ‡â «" }, { "input": "crawling", "output": "⠉⠗â â ºâ ‡â ¬" }, { "input": "crawls", "output": "⠉⠗â â ºâ ‡â Ž" }, { "input": "crawlspace", "output": "⠉⠗â â ºâ ‡â Žâ â â ‰â ‘" }, { "input": "crawlspaces", "output": "⠉⠗â â ºâ ‡â Žâ â â ‰â ‘â Ž" }, { "input": "craws", "output": "⠉⠗â â ºâ Ž" }, { "input": "crayfish", "output": "⠉⠗â â ½â ‹â Šâ ©" }, { "input": "crayfishes", "output": "⠉⠗â â ½â ‹â Šâ ©â ‘â Ž" }, { "input": "crayon", "output": "⠉⠗â â ½â •â " }, { "input": "crayoned", "output": "⠉⠗â â ½â •â â «" }, { "input": "crayoning", "output": "⠉⠗â â ½â •â â ¬" }, { "input": "crayons", "output": "⠉⠗â â ½â •â â Ž" }, { "input": "craze", "output": "⠉⠗â â µâ ‘" }, { "input": "crazed", "output": "⠉⠗â â µâ «" }, { "input": "crazes", "output": "⠉⠗â â µâ ‘â Ž" }, { "input": "crazier", "output": "⠉⠗â â µâ Šâ »" }, { "input": "crazies", "output": "⠉⠗â â µâ Šâ ‘â Ž" }, { "input": "craziest", "output": "⠉⠗â â µâ Šâ ‘â Œ" }, { "input": "crazily", "output": "⠉⠗â â µâ Šâ ‡â ½" }, { "input": "craziness", "output": "⠉⠗â â µâ Šâ °â Ž" }, { "input": "crazing", "output": "⠉⠗â â µâ ¬" }, { "input": "crazy", "output": "⠉⠗â â µâ ½" }, { "input": "creak", "output": "⠉⠗⠂⠅" }, { "input": "creaked", "output": "⠉⠗⠂⠅⠫" }, { "input": "creakier", "output": "⠉⠗⠂⠅⠊⠻" }, { "input": "creakiest", "output": "⠉⠗⠂⠅⠊⠑⠌" }, { "input": "creaking", "output": "⠉⠗⠂⠅⠬" }, { "input": "creaks", "output": "⠉⠗⠂⠅⠎" }, { "input": "creaky", "output": "⠉⠗⠂⠅⠽" }, { "input": "cream", "output": "⠉⠗⠂â " }, { "input": "creamed", "output": "⠉⠗⠂â â «" }, { "input": "creamer", "output": "⠉⠗⠂â â »" }, { "input": "creameries", "output": "⠉⠗⠂â â »â Šâ ‘â Ž" }, { "input": "creamers", "output": "⠉⠗⠂â â »â Ž" }, { "input": "creamery", "output": "⠉⠗⠂â â »â ½" }, { "input": "creamier", "output": "⠉⠗⠂â â Šâ »" }, { "input": "creamiest", "output": "⠉⠗⠂â â Šâ ‘â Œ" }, { "input": "creaminess", "output": "⠉⠗⠂â â Šâ °â Ž" }, { "input": "creaming", "output": "⠉⠗⠂â â ¬" }, { "input": "creams", "output": "⠉⠗⠂â â Ž" }, { "input": "creamy", "output": "⠉⠗⠂â â ½" }, { "input": "crease", "output": "⠉⠗⠂⠎⠑" }, { "input": "creased", "output": "⠉⠗⠂⠎⠫" }, { "input": "creases", "output": "⠉⠗⠂⠎⠑⠎" }, { "input": "creasing", "output": "⠉⠗⠂⠎⠬" }, { "input": "create", "output": "⠉⠗⠂⠞⠑" }, { "input": "created", "output": "⠉⠗⠂⠞⠫" }, { "input": "creates", "output": "⠉⠗⠂⠞⠑⠎" }, { "input": "creating", "output": "⠉⠗⠂⠞⠬" }, { "input": "creation", "output": "⠉⠗⠂⠰â " }, { "input": "creationism", "output": "⠉⠗⠂⠰â â Šâ Žâ " }, { "input": "creations", "output": "⠉⠗⠂⠰â â Ž" }, { "input": "creative", "output": "⠉⠗⠂⠞⠊⠧⠑" }, { "input": "creatively", "output": "⠉⠗⠂⠞⠊⠧⠑⠇⠽" }, { "input": "creativeness", "output": "⠉⠗⠂⠞⠊⠧⠑⠰⠎" }, { "input": "creatives", "output": "⠉⠗⠂⠞⠊⠧⠑⠎" }, { "input": "creativity", "output": "⠉⠗⠂⠞⠊⠧⠰⠽" }, { "input": "creator", "output": "⠉⠗⠂⠞⠕⠗" }, { "input": "creators", "output": "⠉⠗⠂⠞⠕⠗⠎" }, { "input": "creature", "output": "⠉⠗⠂⠞⠥⠗⠑" }, { "input": "creatures", "output": "⠉⠗⠂⠞⠥⠗⠑⠎" }, { "input": "credence", "output": "⠉⠗⠫⠰⠑" }, { "input": "credential", "output": "⠉⠗⠫⠢⠞⠊â â ‡" }, { "input": "credentials", "output": "⠉⠗⠫⠢⠞⠊â â ‡â Ž" }, { "input": "credenza", "output": "⠉⠗⠫⠢⠵â " }, { "input": "credenzas", "output": "⠉⠗⠫⠢⠵â â Ž" }, { "input": "credibility", "output": "⠉⠗⠫⠊⠃⠊⠇⠰⠽" }, { "input": "credible", "output": "⠉⠗⠫⠊⠃⠇⠑" }, { "input": "credibly", "output": "⠉⠗⠫⠊⠃⠇⠽" }, { "input": "credit", "output": "⠉⠗⠫⠊⠞" }, { "input": "creditable", "output": "⠉⠗⠫⠊⠞â â ƒâ ‡â ‘" }, { "input": "creditably", "output": "⠉⠗⠫⠊⠞â â ƒâ ‡â ½" }, { "input": "credited", "output": "⠉⠗⠫⠊⠞⠫" }, { "input": "crediting", "output": "⠉⠗⠫⠊⠞⠬" }, { "input": "creditor", "output": "⠉⠗⠫⠊⠞⠕⠗" }, { "input": "creditors", "output": "⠉⠗⠫⠊⠞⠕⠗⠎" }, { "input": "credits", "output": "⠉⠗⠫⠊⠞⠎" }, { "input": "credo", "output": "⠉⠗⠫⠕" }, { "input": "credos", "output": "⠉⠗⠫⠕⠎" }, { "input": "credulity", "output": "⠉⠗⠫⠥⠇⠰⠽" }, { "input": "credulous", "output": "⠉⠗⠫⠥⠇⠳⠎" }, { "input": "credulously", "output": "⠉⠗⠫⠥⠇⠳⠎⠇⠽" }, { "input": "creed", "output": "⠉⠗⠑⠫" }, { "input": "creeds", "output": "⠉⠗⠑⠫⠎" }, { "input": "creek", "output": "⠉⠗⠑⠑⠅" }, { "input": "creeks", "output": "⠉⠗⠑⠑⠅⠎" }, { "input": "creel", "output": "⠉⠗⠑⠑⠇" }, { "input": "creels", "output": "⠉⠗⠑⠑⠇⠎" }, { "input": "creep", "output": "⠉⠗⠑⠑â " }, { "input": "creeper", "output": "⠉⠗⠑⠑â â »" }, { "input": "creepers", "output": "⠉⠗⠑⠑â â »â Ž" }, { "input": "creepier", "output": "⠉⠗⠑⠑â â Šâ »" }, { "input": "creepiest", "output": "⠉⠗⠑⠑â â Šâ ‘â Œ" }, { "input": "creepily", "output": "⠉⠗⠑⠑â â Šâ ‡â ½" }, { "input": "creepiness", "output": "⠉⠗⠑⠑â â Šâ °â Ž" }, { "input": "creeping", "output": "⠉⠗⠑⠑â â ¬" }, { "input": "creeps", "output": "⠉⠗⠑⠑â â Ž" }, { "input": "creepy", "output": "⠉⠗⠑⠑â â ½" }, { "input": "cremate", "output": "⠉⠗⠑â â â žâ ‘" }, { "input": "cremated", "output": "⠉⠗⠑â â â žâ «" }, { "input": "cremates", "output": "⠉⠗⠑â â â žâ ‘â Ž" }, { "input": "cremating", "output": "⠉⠗⠑â â â žâ ¬" }, { "input": "cremation", "output": "⠉⠗⠑â â â °â " }, { "input": "cremations", "output": "⠉⠗⠑â â â °â â Ž" }, { "input": "crematoria", "output": "⠉⠗⠑â â â žâ •â —â Šâ " }, { "input": "crematories", "output": "⠉⠗⠑â â â žâ •â —â Šâ ‘â Ž" }, { "input": "crematorium", "output": "⠉⠗⠑â â â žâ •â —â Šâ ¥â " }, { "input": "crematoriums", "output": "⠉⠗⠑â â â žâ •â —â Šâ ¥â â Ž" }, { "input": "crematory", "output": "⠉⠗⠑â â â žâ •â —â ½" }, { "input": "creole", "output": "⠉⠗⠑⠕⠇⠑" }, { "input": "creoles", "output": "⠉⠗⠑⠕⠇⠑⠎" }, { "input": "creosote", "output": "⠉⠗⠑⠕⠎⠕⠞⠑" }, { "input": "creosoted", "output": "⠉⠗⠑⠕⠎⠕⠞⠫" }, { "input": "creosotes", "output": "⠉⠗⠑⠕⠎⠕⠞⠑⠎" }, { "input": "creosoting", "output": "⠉⠗⠑⠕⠎⠕⠞⠬" }, { "input": "crepe", "output": "⠉⠗⠑â â ‘" }, { "input": "crepes", "output": "⠉⠗⠑â â ‘â Ž" }, { "input": "crept", "output": "⠉⠗⠑â â ž" }, { "input": "crescendi", "output": "⠉⠗⠑⠎⠉⠢⠙⠊" }, { "input": "crescendo", "output": "⠉⠗⠑⠎⠉⠢⠙⠕" }, { "input": "crescendos", "output": "⠉⠗⠑⠎⠉⠢⠙⠕⠎" }, { "input": "crescent", "output": "⠉⠗⠑⠎⠉⠢⠞" }, { "input": "crescents", "output": "⠉⠗⠑⠎⠉⠢⠞⠎" }, { "input": "cress", "output": "⠉⠗⠑⠎⠎" }, { "input": "crest", "output": "⠉⠗⠑⠌" }, { "input": "crested", "output": "⠉⠗⠑⠌⠫" }, { "input": "crestfallen", "output": "⠉⠗⠑⠌⠋â â ‡â ‡â ¢" }, { "input": "cresting", "output": "⠉⠗⠑⠌⠬" }, { "input": "crests", "output": "⠉⠗⠑⠌⠎" }, { "input": "cretin", "output": "⠉⠗⠑⠞⠔" }, { "input": "cretinous", "output": "⠉⠗⠑⠞⠔⠳⠎" }, { "input": "cretins", "output": "⠉⠗⠑⠞⠔⠎" }, { "input": "crevasse", "output": "⠉⠗⠑⠧â â Žâ Žâ ‘" }, { "input": "crevasses", "output": "⠉⠗⠑⠧â â Žâ Žâ ‘â Ž" }, { "input": "crevice", "output": "⠉⠗⠑⠧⠊⠉⠑" }, { "input": "crevices", "output": "⠉⠗⠑⠧⠊⠉⠑⠎" }, { "input": "crew", "output": "⠉⠗⠑⠺" }, { "input": "crewed", "output": "⠉⠗⠑⠺⠫" }, { "input": "crewing", "output": "⠉⠗⠑⠺⠬" }, { "input": "crewman", "output": "⠉⠗⠑⠺â â â " }, { "input": "crewmen", "output": "⠉⠗⠑⠺â â ¢" }, { "input": "crews", "output": "⠉⠗⠑⠺⠎" }, { "input": "crib", "output": "⠉⠗⠊⠃" }, { "input": "cribbage", "output": "⠉⠗⠊⠆â â ›â ‘" }, { "input": "cribbed", "output": "⠉⠗⠊⠆⠫" }, { "input": "cribbing", "output": "⠉⠗⠊⠆⠬" }, { "input": "cribs", "output": "⠉⠗⠊⠃⠎" }, { "input": "crick", "output": "⠉⠗⠊⠉⠅" }, { "input": "cricked", "output": "⠉⠗⠊⠉⠅⠫" }, { "input": "cricket", "output": "⠉⠗⠊⠉⠅⠑⠞" }, { "input": "cricketer", "output": "⠉⠗⠊⠉⠅⠑⠞⠻" }, { "input": "cricketers", "output": "⠉⠗⠊⠉⠅⠑⠞⠻⠎" }, { "input": "crickets", "output": "⠉⠗⠊⠉⠅⠑⠞⠎" }, { "input": "cricking", "output": "⠉⠗⠊⠉⠅⠬" }, { "input": "cricks", "output": "⠉⠗⠊⠉⠅⠎" }, { "input": "cried", "output": "⠉⠗⠊⠫" }, { "input": "crier", "output": "⠉⠗⠊⠻" }, { "input": "criers", "output": "⠉⠗⠊⠻⠎" }, { "input": "cries", "output": "⠉⠗⠊⠑⠎" }, { "input": "crime", "output": "⠉⠗⠊â â ‘" }, { "input": "crimes", "output": "⠉⠗⠊â â ‘â Ž" }, { "input": "criminal", "output": "⠉⠗⠊â â ”â â ‡" }, { "input": "criminally", "output": "⠉⠗⠊â â ”â â ‡â ‡â ½" }, { "input": "criminals", "output": "⠉⠗⠊â â ”â â ‡â Ž" }, { "input": "criminologist", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠊⠌" }, { "input": "criminologists", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠊⠌⠎" }, { "input": "criminology", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠽" }, { "input": "crimp", "output": "⠉⠗⠊â â " }, { "input": "crimped", "output": "⠉⠗⠊â â â «" }, { "input": "crimping", "output": "⠉⠗⠊â â â ¬" }, { "input": "crimps", "output": "⠉⠗⠊â â â Ž" }, { "input": "crimson", "output": "⠉⠗⠊â â Žâ •â " }, { "input": "crimsoned", "output": "⠉⠗⠊â â Žâ •â â «" }, { "input": "crimsoning", "output": "⠉⠗⠊â â Žâ •â â ¬" }, { "input": "crimsons", "output": "⠉⠗⠊â â Žâ •â â Ž" }, { "input": "cringe", "output": "⠉⠗⠬⠑" }, { "input": "cringed", "output": "⠉⠗⠬⠫" }, { "input": "cringes", "output": "⠉⠗⠬⠑⠎" }, { "input": "cringing", "output": "⠉⠗⠬⠬" }, { "input": "crinkle", "output": "⠉⠗⠔⠅⠇⠑" }, { "input": "crinkled", "output": "⠉⠗⠔⠅⠇⠫" }, { "input": "crinkles", "output": "⠉⠗⠔⠅⠇⠑⠎" }, { "input": "crinklier", "output": "⠉⠗⠔⠅⠇⠊⠻" }, { "input": "crinkliest", "output": "⠉⠗⠔⠅⠇⠊⠑⠌" }, { "input": "crinkling", "output": "⠉⠗⠔⠅⠇⠬" }, { "input": "crinkly", "output": "⠉⠗⠔⠅⠇⠽" }, { "input": "crinoline", "output": "⠉⠗⠔⠕⠇⠔⠑" }, { "input": "crinolines", "output": "⠉⠗⠔⠕⠇⠔⠑⠎" }, { "input": "cripple", "output": "⠉⠗⠊â â â ‡â ‘" }, { "input": "crippled", "output": "⠉⠗⠊â â â ‡â «" }, { "input": "cripples", "output": "⠉⠗⠊â â â ‡â ‘â Ž" }, { "input": "crippling", "output": "⠉⠗⠊â â â ‡â ¬" }, { "input": "crises", "output": "⠉⠗⠊⠎⠑⠎" }, { "input": "crisis", "output": "⠉⠗⠊⠎⠊⠎" }, { "input": "crisp", "output": "⠉⠗⠊⠎â " }, { "input": "crisped", "output": "⠉⠗⠊⠎â â «" }, { "input": "crisper", "output": "⠉⠗⠊⠎â â »" }, { "input": "crispest", "output": "⠉⠗⠊⠎â â ‘â Œ" }, { "input": "crispier", "output": "⠉⠗⠊⠎â â Šâ »" }, { "input": "crispiest", "output": "⠉⠗⠊⠎â â Šâ ‘â Œ" }, { "input": "crisping", "output": "⠉⠗⠊⠎â â ¬" }, { "input": "crisply", "output": "⠉⠗⠊⠎â â ‡â ½" }, { "input": "crispness", "output": "⠉⠗⠊⠎â â °â Ž" }, { "input": "crisps", "output": "⠉⠗⠊⠎â â Ž" }, { "input": "crispy", "output": "⠉⠗⠊⠎â â ½" }, { "input": "crisscross", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎" }, { "input": "crisscrossed", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠫" }, { "input": "crisscrosses", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠑⠎" }, { "input": "crisscrossing", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠬" }, { "input": "criteria", "output": "⠉⠗⠊⠞⠻⠊â " }, { "input": "criterion", "output": "⠉⠗⠊⠞⠻⠊⠕â " }, { "input": "criterions", "output": "⠉⠗⠊⠞⠻⠊⠕â â Ž" }, { "input": "critic", "output": "⠉⠗⠊⠞⠊⠉" }, { "input": "critical", "output": "⠉⠗⠊⠞⠊⠉â â ‡" }, { "input": "critically", "output": "⠉⠗⠊⠞⠊⠉â â ‡â ‡â ½" }, { "input": "criticism", "output": "⠉⠗⠊⠞⠊⠉⠊⠎â " }, { "input": "criticisms", "output": "⠉⠗⠊⠞⠊⠉⠊⠎â â Ž" }, { "input": "criticize", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠑" }, { "input": "criticized", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠫" }, { "input": "criticizes", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠑⠎" }, { "input": "criticizing", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠬" }, { "input": "critics", "output": "⠉⠗⠊⠞⠊⠉⠎" }, { "input": "critique", "output": "⠉⠗⠊⠞⠊⠟⠥⠑" }, { "input": "critiqued", "output": "⠉⠗⠊⠞⠊⠟⠥⠫" }, { "input": "critiques", "output": "⠉⠗⠊⠞⠊⠟⠥⠑⠎" }, { "input": "critiquing", "output": "⠉⠗⠊⠞⠊⠟⠥⠬" }, { "input": "critter", "output": "⠉⠗⠊⠞⠞⠻" }, { "input": "critters", "output": "⠉⠗⠊⠞⠞⠻⠎" }, { "input": "croak", "output": "⠉⠗⠕â â …" }, { "input": "croaked", "output": "⠉⠗⠕â â …â «" }, { "input": "croaking", "output": "⠉⠗⠕â â …â ¬" }, { "input": "croaks", "output": "⠉⠗⠕â â …â Ž" }, { "input": "crochet", "output": "⠉⠗⠕⠡⠑⠞" }, { "input": "crocheted", "output": "⠉⠗⠕⠡⠑⠞⠫" }, { "input": "crocheting", "output": "⠉⠗⠕⠡⠑⠞⠬" }, { "input": "crochets", "output": "⠉⠗⠕⠡⠑⠞⠎" }, { "input": "croci", "output": "⠉⠗⠕⠉⠊" }, { "input": "crock", "output": "⠉⠗⠕⠉⠅" }, { "input": "crocked", "output": "⠉⠗⠕⠉⠅⠫" }, { "input": "crockery", "output": "⠉⠗⠕⠉⠅⠻⠽" }, { "input": "crocks", "output": "⠉⠗⠕⠉⠅⠎" }, { "input": "crocodile", "output": "⠉⠗⠕⠉⠕⠙⠊⠇⠑" }, { "input": "crocodiles", "output": "⠉⠗⠕⠉⠕⠙⠊⠇⠑⠎" }, { "input": "crocus", "output": "⠉⠗⠕⠉⠥⠎" }, { "input": "crocuses", "output": "⠉⠗⠕⠉⠥⠎⠑⠎" }, { "input": "crofts", "output": "⠉⠗⠷⠞⠎" }, { "input": "croissant", "output": "⠉⠗⠕⠊⠎⠎â â â ž" }, { "input": "croissants", "output": "⠉⠗⠕⠊⠎⠎â â â žâ Ž" }, { "input": "crone", "output": "⠉⠗â â •" }, { "input": "crones", "output": "⠉⠗â â •â Ž" }, { "input": "cronies", "output": "⠉⠗⠕â â Šâ ‘â Ž" }, { "input": "crony", "output": "⠉⠗⠕â â ½" }, { "input": "crook", "output": "⠉⠗⠕⠕⠅" }, { "input": "crooked", "output": "⠉⠗⠕⠕⠅⠫" }, { "input": "crookeder", "output": "⠉⠗⠕⠕⠅⠫⠻" }, { "input": "crookedest", "output": "⠉⠗⠕⠕⠅⠫⠑⠌" }, { "input": "crookedly", "output": "⠉⠗⠕⠕⠅⠫⠇⠽" }, { "input": "crookedness", "output": "⠉⠗⠕⠕⠅⠫⠰⠎" }, { "input": "crooking", "output": "⠉⠗⠕⠕⠅⠬" }, { "input": "crooks", "output": "⠉⠗⠕⠕⠅⠎" }, { "input": "croon", "output": "⠉⠗⠕⠕â " }, { "input": "crooned", "output": "⠉⠗⠕⠕â â «" }, { "input": "crooner", "output": "⠉⠗⠕⠕â â »" }, { "input": "crooners", "output": "⠉⠗⠕⠕â â »â Ž" }, { "input": "crooning", "output": "⠉⠗⠕⠕â â ¬" }, { "input": "croons", "output": "⠉⠗⠕⠕â â Ž" }, { "input": "crop", "output": "⠉⠗⠕â " }, { "input": "cropped", "output": "⠉⠗⠕â â â «" }, { "input": "cropper", "output": "⠉⠗⠕â â â »" }, { "input": "croppers", "output": "⠉⠗⠕â â â »â Ž" }, { "input": "cropping", "output": "⠉⠗⠕â â â ¬" }, { "input": "crops", "output": "⠉⠗⠕â â Ž" }, { "input": "croquet", "output": "⠉⠗⠕⠟⠥⠑⠞" }, { "input": "croquette", "output": "⠉⠗⠕⠟⠥⠑⠞⠞⠑" }, { "input": "croquettes", "output": "⠉⠗⠕⠟⠥⠑⠞⠞⠑⠎" }, { "input": "crosier", "output": "⠉⠗⠕⠎⠊⠻" }, { "input": "crosiers", "output": "⠉⠗⠕⠎⠊⠻⠎" }, { "input": "cross", "output": "⠉⠗⠕⠎⠎" }, { "input": "crossbar", "output": "⠉⠗⠕⠎⠎⠃⠜" }, { "input": "crossbars", "output": "⠉⠗⠕⠎⠎⠃⠜⠎" }, { "input": "crossbeam", "output": "⠉⠗⠕⠎⠎⠃⠂â " }, { "input": "crossbeams", "output": "⠉⠗⠕⠎⠎⠃⠂â â Ž" }, { "input": "crossbones", "output": "⠉⠗⠕⠎⠎⠃â â •â Ž" }, { "input": "crossbow", "output": "⠉⠗⠕⠎⠎⠃⠪" }, { "input": "crossbows", "output": "⠉⠗⠕⠎⠎⠃⠪⠎" }, { "input": "crossbred", "output": "⠉⠗⠕⠎⠎⠃⠗⠫" }, { "input": "crossbreed", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫" }, { "input": "crossbreeding", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫⠬" }, { "input": "crossbreeds", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫⠎" }, { "input": "crosscheck", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅" }, { "input": "crosschecked", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠫" }, { "input": "crosschecking", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠬" }, { "input": "crosschecks", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠎" }, { "input": "crossed", "output": "⠉⠗⠕⠎⠎⠫" }, { "input": "crosser", "output": "⠉⠗⠕⠎⠎⠻" }, { "input": "crosses", "output": "⠉⠗⠕⠎⠎⠑⠎" }, { "input": "crossest", "output": "⠉⠗⠕⠎⠎⠑⠌" }, { "input": "crossfire", "output": "⠉⠗⠕⠎⠎⠋⠊⠗⠑" }, { "input": "crossfires", "output": "⠉⠗⠕⠎⠎⠋⠊⠗⠑⠎" }, { "input": "crossing", "output": "⠉⠗⠕⠎⠎⠬" }, { "input": "crossings", "output": "⠉⠗⠕⠎⠎⠬⠎" }, { "input": "crossly", "output": "⠉⠗⠕⠎⠎⠇⠽" }, { "input": "crossness", "output": "⠉⠗⠕⠎⠎⠰⠎" }, { "input": "crossover", "output": "⠉⠗⠕⠎⠎⠕⠧⠻" }, { "input": "crossovers", "output": "⠉⠗⠕⠎⠎⠕⠧⠻⠎" }, { "input": "crosspiece", "output": "⠉⠗⠕⠎⠎â â Šâ ‘⠉⠑" }, { "input": "crosspieces", "output": "⠉⠗⠕⠎⠎â â Šâ ‘⠉⠑⠎" }, { "input": "crossroad", "output": "⠉⠗⠕⠎⠎⠗⠕â â ™" }, { "input": "crossroads", "output": "⠉⠗⠕⠎⠎⠗⠕â â ™â Ž" }, { "input": "crosstown", "output": "⠉⠗⠕⠎⠎⠞⠪â " }, { "input": "crosswalk", "output": "⠉⠗⠕⠎⠎⠺â â ‡â …" }, { "input": "crosswalks", "output": "⠉⠗⠕⠎⠎⠺â â ‡â …â Ž" }, { "input": "crossways", "output": "⠉⠗⠕⠎⠎⠺â â ½â Ž" }, { "input": "crosswise", "output": "⠉⠗⠕⠎⠎⠺⠊⠎⠑" }, { "input": "crossword", "output": "⠉⠗⠕⠎⠎⠘⠺" }, { "input": "crosswords", "output": "⠉⠗⠕⠎⠎⠘⠺⠎" }, { "input": "crotch", "output": "⠉⠗⠕⠞⠡" }, { "input": "crotches", "output": "⠉⠗⠕⠞⠡⠑⠎" }, { "input": "crotchet", "output": "⠉⠗⠕⠞⠡⠑⠞" }, { "input": "crotchets", "output": "⠉⠗⠕⠞⠡⠑⠞⠎" }, { "input": "crotchety", "output": "⠉⠗⠕⠞⠡⠑⠞⠽" }, { "input": "crouch", "output": "⠉⠗⠳⠡" }, { "input": "crouched", "output": "⠉⠗⠳⠡⠫" }, { "input": "crouches", "output": "⠉⠗⠳⠡⠑⠎" }, { "input": "crouching", "output": "⠉⠗⠳⠡⠬" }, { "input": "croup", "output": "⠉⠗⠳â " }, { "input": "croupier", "output": "⠉⠗⠳â â Šâ »" }, { "input": "croupiers", "output": "⠉⠗⠳â â Šâ »â Ž" }, { "input": "croupiest", "output": "⠉⠗⠳â â Šâ ‘â Œ" }, { "input": "croupy", "output": "⠉⠗⠳â â ½" }, { "input": "crow", "output": "⠉⠗⠪" }, { "input": "crowbar", "output": "⠉⠗⠪⠃⠜" }, { "input": "crowbars", "output": "⠉⠗⠪⠃⠜⠎" }, { "input": "crowd", "output": "⠉⠗⠪⠙" }, { "input": "crowded", "output": "⠉⠗⠪⠙⠫" }, { "input": "crowding", "output": "⠉⠗⠪⠙⠬" }, { "input": "crowds", "output": "⠉⠗⠪⠙⠎" }, { "input": "crowed", "output": "⠉⠗⠪⠫" }, { "input": "crowing", "output": "⠉⠗⠪⠬" }, { "input": "crown", "output": "⠉⠗⠪â " }, { "input": "crowned", "output": "⠉⠗⠪â â «" }, { "input": "crowning", "output": "⠉⠗⠪â â ¬" }, { "input": "crowns", "output": "⠉⠗⠪â â Ž" }, { "input": "crows", "output": "⠉⠗⠪⠎" }, { "input": "crozier", "output": "⠉⠗⠕⠵⠊⠻" }, { "input": "croziers", "output": "⠉⠗⠕⠵⠊⠻⠎" }, { "input": "croûton", "output": "⠉⠗⠕⠠⠘⠻â â ¸â ¦â žâ •â " }, { "input": "croûtons", "output": "⠉⠗⠕⠠⠘⠻â â ¸â ¦â žâ •â â Ž" }, { "input": "crucial", "output": "⠉⠗⠥⠉⠊â â ‡" }, { "input": "crucially", "output": "⠉⠗⠥⠉⠊â â ‡â ‡â ½" }, { "input": "crucible", "output": "⠉⠗⠥⠉⠊⠃⠇⠑" }, { "input": "crucibles", "output": "⠉⠗⠥⠉⠊⠃⠇⠑⠎" }, { "input": "crucified", "output": "⠉⠗⠥⠉⠊⠋⠊⠫" }, { "input": "crucifies", "output": "⠉⠗⠥⠉⠊⠋⠊⠑⠎" }, { "input": "crucifix", "output": "⠉⠗⠥⠉⠊⠋⠊⠭" }, { "input": "crucifixes", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠑⠎" }, { "input": "crucifixion", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠊⠕â " }, { "input": "crucifixions", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠊⠕â â Ž" }, { "input": "cruciform", "output": "⠉⠗⠥⠉⠊⠿â " }, { "input": "cruciforms", "output": "⠉⠗⠥⠉⠊⠿â â Ž" }, { "input": "crucify", "output": "⠉⠗⠥⠉⠊⠋⠽" }, { "input": "crucifying", "output": "⠉⠗⠥⠉⠊⠋⠽⠬" }, { "input": "crud", "output": "⠉⠗⠥⠙" }, { "input": "cruddier", "output": "⠉⠗⠥⠙⠙⠊⠻" }, { "input": "cruddiest", "output": "⠉⠗⠥⠙⠙⠊⠑⠌" }, { "input": "cruddy", "output": "⠉⠗⠥⠙⠙⠽" }, { "input": "crude", "output": "⠉⠗⠥⠙⠑" }, { "input": "crudely", "output": "⠉⠗⠥⠙⠑⠇⠽" }, { "input": "crudeness", "output": "⠉⠗⠥⠙⠑⠰⠎" }, { "input": "cruder", "output": "⠉⠗⠥⠙⠻" }, { "input": "crudest", "output": "⠉⠗⠥⠙⠑⠌" }, { "input": "crudities", "output": "⠉⠗⠥⠙⠊⠞⠊⠑⠎" }, { "input": "crudity", "output": "⠉⠗⠥⠙⠰⠽" }, { "input": "crudités", "output": "⠉⠗⠥⠙⠊⠞⠠⠘⠻â â ˜â ‰â Ž" }, { "input": "cruel", "output": "⠉⠗⠥⠑⠇" }, { "input": "crueler", "output": "⠉⠗⠥⠑⠇⠻" }, { "input": "cruelest", "output": "⠉⠗⠥⠑⠇⠑⠌" }, { "input": "crueller", "output": "⠉⠗⠥⠑⠇⠇⠻" }, { "input": "cruellest", "output": "⠉⠗⠥⠑⠇⠇⠑⠌" }, { "input": "cruelly", "output": "⠉⠗⠥⠑⠇⠇⠽" }, { "input": "cruelties", "output": "⠉⠗⠥⠑⠇⠞⠊⠑⠎" }, { "input": "cruelty", "output": "⠉⠗⠥⠑⠇⠞⠽" }, { "input": "cruet", "output": "⠉⠗⠥⠑⠞" }, { "input": "cruets", "output": "⠉⠗⠥⠑⠞⠎" }, { "input": "cruise", "output": "⠉⠗⠥⠊⠎⠑" }, { "input": "cruised", "output": "⠉⠗⠥⠊⠎⠫" }, { "input": "cruiser", "output": "⠉⠗⠥⠊⠎⠻" }, { "input": "cruisers", "output": "⠉⠗⠥⠊⠎⠻⠎" }, { "input": "cruises", "output": "⠉⠗⠥⠊⠎⠑⠎" }, { "input": "cruising", "output": "⠉⠗⠥⠊⠎⠬" }, { "input": "cruller", "output": "⠉⠗⠥⠇⠇⠻" }, { "input": "crullers", "output": "⠉⠗⠥⠇⠇⠻⠎" }, { "input": "crumb", "output": "⠉⠗⠥â â ƒ" }, { "input": "crumbed", "output": "⠉⠗⠥â â ƒâ «" }, { "input": "crumbier", "output": "⠉⠗⠥â â ƒâ Šâ »" }, { "input": "crumbiest", "output": "⠉⠗⠥â â ƒâ Šâ ‘â Œ" }, { "input": "crumbing", "output": "⠉⠗⠥â â ƒâ ¬" }, { "input": "crumble", "output": "⠉⠗⠥â â ƒâ ‡â ‘" }, { "input": "crumbled", "output": "⠉⠗⠥â â ƒâ ‡â «" }, { "input": "crumbles", "output": "⠉⠗⠥â â ƒâ ‡â ‘â Ž" }, { "input": "crumblier", "output": "⠉⠗⠥â â ƒâ ‡â Šâ »" }, { "input": "crumbliest", "output": "⠉⠗⠥â â ƒâ ‡â Šâ ‘â Œ" }, { "input": "crumbling", "output": "⠉⠗⠥â â ƒâ ‡â ¬" }, { "input": "crumbly", "output": "⠉⠗⠥â â ƒâ ‡â ½" }, { "input": "crumbs", "output": "⠉⠗⠥â â ƒâ Ž" }, { "input": "crumby", "output": "⠉⠗⠥â â ƒâ ½" }, { "input": "crummier", "output": "⠉⠗⠥â â â Šâ »" }, { "input": "crummiest", "output": "⠉⠗⠥â â â Šâ ‘â Œ" }, { "input": "crummy", "output": "⠉⠗⠥â â â ½" }, { "input": "crumpet", "output": "⠉⠗⠥â â â ‘â ž" }, { "input": "crumpets", "output": "⠉⠗⠥â â â ‘â žâ Ž" }, { "input": "crumple", "output": "⠉⠗⠥â â â ‡â ‘" }, { "input": "crumpled", "output": "⠉⠗⠥â â â ‡â «" }, { "input": "crumples", "output": "⠉⠗⠥â â â ‡â ‘â Ž" }, { "input": "crumpling", "output": "⠉⠗⠥â â â ‡â ¬" }, { "input": "crunch", "output": "⠉⠗⠥â â ¡" }, { "input": "crunched", "output": "⠉⠗⠥â â ¡â «" }, { "input": "cruncher", "output": "⠉⠗⠥â â ¡â »" }, { "input": "crunches", "output": "⠉⠗⠥â â ¡â ‘â Ž" }, { "input": "crunchier", "output": "⠉⠗⠥â â ¡â Šâ »" }, { "input": "crunchiest", "output": "⠉⠗⠥â â ¡â Šâ ‘â Œ" }, { "input": "crunching", "output": "⠉⠗⠥â â ¡â ¬" }, { "input": "crunchy", "output": "⠉⠗⠥â â ¡â ½" }, { "input": "crusade", "output": "⠉⠗⠥⠎â â ™â ‘" }, { "input": "crusaded", "output": "⠉⠗⠥⠎â â ™â «" }, { "input": "crusader", "output": "⠉⠗⠥⠎â â ™â »" }, { "input": "crusaders", "output": "⠉⠗⠥⠎â â ™â »â Ž" }, { "input": "crusades", "output": "⠉⠗⠥⠎â â ™â ‘â Ž" }, { "input": "crusading", "output": "⠉⠗⠥⠎â â ™â ¬" }, { "input": "crush", "output": "⠉⠗⠥⠩" }, { "input": "crushed", "output": "⠉⠗⠥⠩⠫" }, { "input": "crushes", "output": "⠉⠗⠥⠩⠑⠎" }, { "input": "crushing", "output": "⠉⠗⠥⠩⠬" }, { "input": "crust", "output": "⠉⠗⠥⠌" }, { "input": "crustacean", "output": "⠉⠗⠥⠌â â ‰â ‚â " }, { "input": "crustaceans", "output": "⠉⠗⠥⠌â â ‰â ‚â â Ž" }, { "input": "crusted", "output": "⠉⠗⠥⠌⠫" }, { "input": "crustier", "output": "⠉⠗⠥⠌⠊⠻" }, { "input": "crustiest", "output": "⠉⠗⠥⠌⠊⠑⠌" }, { "input": "crusting", "output": "⠉⠗⠥⠌⠬" }, { "input": "crusts", "output": "⠉⠗⠥⠌⠎" }, { "input": "crusty", "output": "⠉⠗⠥⠌⠽" }, { "input": "crutch", "output": "⠉⠗⠥⠞⠡" }, { "input": "crutches", "output": "⠉⠗⠥⠞⠡⠑⠎" }, { "input": "crux", "output": "⠉⠗⠥⠭" }, { "input": "cruxes", "output": "⠉⠗⠥⠭⠑⠎" }, { "input": "cry", "output": "⠉⠗⠽" }, { "input": "crybabies", "output": "⠉⠗⠽⠃â â ƒâ Šâ ‘â Ž" }, { "input": "crybaby", "output": "⠉⠗⠽⠃â â ƒâ ½" }, { "input": "crying", "output": "⠉⠗⠽⠬" }, { "input": "cryings", "output": "⠉⠗⠽⠬⠎" }, { "input": "cryogenics", "output": "⠉⠗⠽⠕⠛⠢⠊⠉⠎" }, { "input": "crypt", "output": "⠉⠗⠽â â ž" }, { "input": "cryptic", "output": "⠉⠗⠽â â žâ Šâ ‰" }, { "input": "cryptically", "output": "⠉⠗⠽â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "cryptogram", "output": "⠉⠗⠽â â žâ •⠛⠗â â " }, { "input": "cryptograms", "output": "⠉⠗⠽â â žâ •⠛⠗â â â Ž" }, { "input": "cryptographer", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “â »" }, { "input": "cryptographers", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “⠻⠎" }, { "input": "cryptography", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “â ½" }, { "input": "crypts", "output": "⠉⠗⠽â â žâ Ž" }, { "input": "crystal", "output": "⠉⠗⠽⠌â â ‡" }, { "input": "crystalize", "output": "⠉⠗⠽⠌â â ‡â Šâ µâ ‘" }, { "input": "crystalized", "output": "⠉⠗⠽⠌â â ‡â Šâ µâ «" }, { "input": "crystalizes", "output": "⠉⠗⠽⠌â â ‡â Šâ µâ ‘â Ž" }, { "input": "crystalizing", "output": "⠉⠗⠽⠌â â ‡â Šâ µâ ¬" }, { "input": "crystalline", "output": "⠉⠗⠽⠌â â ‡â ‡â ”â ‘" }, { "input": "crystallization", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ â °â " }, { "input": "crystallize", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ‘" }, { "input": "crystallized", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ «" }, { "input": "crystallizes", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ‘â Ž" }, { "input": "crystallizing", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ¬" }, { "input": "crystallographic", "output": "⠉⠗⠽⠌â â ‡â ‡â •⠛⠗â â â “â Šâ ‰" }, { "input": "crystallography", "output": "⠉⠗⠽⠌â â ‡â ‡â •⠛⠗â â â “â ½" }, { "input": "crystals", "output": "⠉⠗⠽⠌â â ‡â Ž" }, { "input": "crèche", "output": "⠉⠗⠠⠘⠻â â ¡â â £â ¡â ‘" }, { "input": "crèches", "output": "⠉⠗⠠⠘⠻â â ¡â â £â ¡â ‘â Ž" }, { "input": "cs", "output": "⠉⠎" }, { "input": "cub", "output": "⠉⠥⠃" }, { "input": "cubbyhole", "output": "⠉⠥⠆⠽⠓⠕⠇⠑" }, { "input": "cubbyholes", "output": "⠉⠥⠆⠽⠓⠕⠇⠑⠎" }, { "input": "cube", "output": "⠉⠥⠃⠑" }, { "input": "cubed", "output": "⠉⠥⠃⠫" }, { "input": "cubes", "output": "⠉⠥⠃⠑⠎" }, { "input": "cubic", "output": "⠉⠥⠃⠊⠉" }, { "input": "cubical", "output": "⠉⠥⠃⠊⠉â â ‡" }, { "input": "cubicle", "output": "⠉⠥⠃⠊⠉⠇⠑" }, { "input": "cubicles", "output": "⠉⠥⠃⠊⠉⠇⠑⠎" }, { "input": "cubing", "output": "⠉⠥⠃⠬" }, { "input": "cubism", "output": "⠉⠥⠃⠊⠎â " }, { "input": "cubist", "output": "⠉⠥⠃⠊⠌" }, { "input": "cubists", "output": "⠉⠥⠃⠊⠌⠎" }, { "input": "cubit", "output": "⠉⠥⠃⠊⠞" }, { "input": "cubits", "output": "⠉⠥⠃⠊⠞⠎" }, { "input": "cubs", "output": "⠉⠥⠃⠎" }, { "input": "cuckold", "output": "⠉⠥⠉⠅⠕⠇⠙" }, { "input": "cuckolded", "output": "⠉⠥⠉⠅⠕⠇⠙⠫" }, { "input": "cuckolding", "output": "⠉⠥⠉⠅⠕⠇⠙⠬" }, { "input": "cuckolds", "output": "⠉⠥⠉⠅⠕⠇⠙⠎" }, { "input": "cuckoo", "output": "⠉⠥⠉⠅⠕⠕" }, { "input": "cuckoos", "output": "⠉⠥⠉⠅⠕⠕⠎" }, { "input": "cucumber", "output": "⠉⠥⠉⠥â â ƒâ »" }, { "input": "cucumbers", "output": "⠉⠥⠉⠥â â ƒâ »â Ž" }, { "input": "cud", "output": "⠉⠥⠙" }, { "input": "cuddle", "output": "⠉⠥⠙⠙⠇⠑" }, { "input": "cuddled", "output": "⠉⠥⠙⠙⠇⠫" }, { "input": "cuddles", "output": "⠉⠥⠙⠙⠇⠑⠎" }, { "input": "cuddlier", "output": "⠉⠥⠙⠙⠇⠊⠻" }, { "input": "cuddliest", "output": "⠉⠥⠙⠙⠇⠊⠑⠌" }, { "input": "cuddling", "output": "⠉⠥⠙⠙⠇⠬" }, { "input": "cuddly", "output": "⠉⠥⠙⠙⠇⠽" }, { "input": "cudgel", "output": "⠉⠥⠙⠛⠑⠇" }, { "input": "cudgeled", "output": "⠉⠥⠙⠛⠑⠇⠫" }, { "input": "cudgeling", "output": "⠉⠥⠙⠛⠑⠇⠬" }, { "input": "cudgelled", "output": "⠉⠥⠙⠛⠑⠇⠇⠫" }, { "input": "cudgelling", "output": "⠉⠥⠙⠛⠑⠇⠇⠬" }, { "input": "cudgels", "output": "⠉⠥⠙⠛⠑⠇⠎" }, { "input": "cuds", "output": "⠉⠥⠙⠎" }, { "input": "cue", "output": "⠉⠥⠑" }, { "input": "cued", "output": "⠉⠥⠫" }, { "input": "cueing", "output": "⠉⠥⠑⠬" }, { "input": "cues", "output": "⠉⠥⠑⠎" }, { "input": "cuff", "output": "⠉⠥⠋⠋" }, { "input": "cuffed", "output": "⠉⠥⠖⠫" }, { "input": "cuffing", "output": "⠉⠥⠖⠬" }, { "input": "cuffs", "output": "⠉⠥⠖⠎" }, { "input": "cuing", "output": "⠉⠥⠬" }, { "input": "cuisine", "output": "⠉⠥⠊⠎⠔⠑" }, { "input": "cuisines", "output": "⠉⠥⠊⠎⠔⠑⠎" }, { "input": "culinary", "output": "⠉⠥⠇⠔⠜⠽" }, { "input": "cull", "output": "⠉⠥⠇⠇" }, { "input": "culled", "output": "⠉⠥⠇⠇⠫" }, { "input": "cullender", "output": "⠉⠥⠇⠇⠢⠙⠻" }, { "input": "cullenders", "output": "⠉⠥⠇⠇⠢⠙⠻⠎" }, { "input": "culling", "output": "⠉⠥⠇⠇⠬" }, { "input": "culls", "output": "⠉⠥⠇⠇⠎" }, { "input": "culminate", "output": "⠉⠥⠇â â ”â â žâ ‘" }, { "input": "culminated", "output": "⠉⠥⠇â â ”â â žâ «" }, { "input": "culminates", "output": "⠉⠥⠇â â ”â â žâ ‘â Ž" }, { "input": "culminating", "output": "⠉⠥⠇â â ”â â žâ ¬" }, { "input": "culmination", "output": "⠉⠥⠇â â ”â â °â " }, { "input": "culminations", "output": "⠉⠥⠇â â ”â â °â â Ž" }, { "input": "culotte", "output": "⠉⠥⠇⠕⠞⠞⠑" }, { "input": "culottes", "output": "⠉⠥⠇⠕⠞⠞⠑⠎" }, { "input": "culpability", "output": "⠉⠥⠇â â â ƒâ Šâ ‡â °â ½" }, { "input": "culpable", "output": "⠉⠥⠇â â â ƒâ ‡â ‘" }, { "input": "culprit", "output": "⠉⠥⠇â â —â Šâ ž" }, { "input": "culprits", "output": "⠉⠥⠇â â —â Šâ žâ Ž" }, { "input": "cult", "output": "⠉⠥⠇⠞" }, { "input": "cultivate", "output": "⠉⠥⠇⠞⠊⠧â â žâ ‘" }, { "input": "cultivated", "output": "⠉⠥⠇⠞⠊⠧â â žâ «" }, { "input": "cultivates", "output": "⠉⠥⠇⠞⠊⠧â â žâ ‘â Ž" }, { "input": "cultivating", "output": "⠉⠥⠇⠞⠊⠧â â žâ ¬" }, { "input": "cultivation", "output": "⠉⠥⠇⠞⠊⠧â â °â " }, { "input": "cultivator", "output": "⠉⠥⠇⠞⠊⠧â â žâ •â —" }, { "input": "cultivators", "output": "⠉⠥⠇⠞⠊⠧â â žâ •â —â Ž" }, { "input": "cults", "output": "⠉⠥⠇⠞⠎" }, { "input": "cultural", "output": "⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "culturally", "output": "⠉⠥⠇⠞⠥⠗â â ‡â ‡â ½" }, { "input": "culture", "output": "⠉⠥⠇⠞⠥⠗⠑" }, { "input": "cultured", "output": "⠉⠥⠇⠞⠥⠗⠫" }, { "input": "cultures", "output": "⠉⠥⠇⠞⠥⠗⠑⠎" }, { "input": "culturing", "output": "⠉⠥⠇⠞⠥⠗⠬" }, { "input": "culvert", "output": "⠉⠥⠇⠧⠻⠞" }, { "input": "culverts", "output": "⠉⠥⠇⠧⠻⠞⠎" }, { "input": "cumbersome", "output": "⠉⠥â â ƒâ »â â Ž" }, { "input": "cumin", "output": "⠉⠥â â ”" }, { "input": "cummerbund", "output": "⠉⠥â â â »â ƒâ ¥â â ™" }, { "input": "cummerbunds", "output": "⠉⠥â â â »â ƒâ ¥â â ™â Ž" }, { "input": "cumming", "output": "⠉⠥â â â ¬" }, { "input": "cumquat", "output": "⠉⠥â â Ÿâ ¥â â ž" }, { "input": "cumquats", "output": "⠉⠥â â Ÿâ ¥â â žâ Ž" }, { "input": "cums", "output": "⠉⠥â â Ž" }, { "input": "cumulative", "output": "⠉⠥â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "cumulatively", "output": "⠉⠥â â ¥â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "cumuli", "output": "⠉⠥â â ¥â ‡â Š" }, { "input": "cumulus", "output": "⠉⠥â â ¥â ‡â ¥â Ž" }, { "input": "cuneiform", "output": "⠉⠥â â ‘â Šâ ¿â " }, { "input": "cunnilingus", "output": "⠉⠥â â â Šâ ‡â ¬â ¥â Ž" }, { "input": "cunning", "output": "⠉⠥â â â ¬" }, { "input": "cunninger", "output": "⠉⠥â â â ¬â »" }, { "input": "cunningest", "output": "⠉⠥â â â ¬â ‘â Œ" }, { "input": "cunningly", "output": "⠉⠥â â â ¬â ‡â ½" }, { "input": "cunt", "output": "⠉⠥â â ž" }, { "input": "cunts", "output": "⠉⠥â â žâ Ž" }, { "input": "cup", "output": "⠉⠥â " }, { "input": "cupboard", "output": "⠉⠥â â ƒâ •⠜⠙" }, { "input": "cupboards", "output": "⠉⠥â â ƒâ •⠜⠙⠎" }, { "input": "cupcake", "output": "⠉⠥â â ‰â â …â ‘" }, { "input": "cupcakes", "output": "⠉⠥â â ‰â â …â ‘â Ž" }, { "input": "cupful", "output": "⠉⠥â â °â ‡" }, { "input": "cupfuls", "output": "⠉⠥â â °â ‡â Ž" }, { "input": "cupidity", "output": "⠉⠥â â Šâ ™â °â ½" }, { "input": "cupola", "output": "⠉⠥â â •â ‡â " }, { "input": "cupolas", "output": "⠉⠥â â •â ‡â â Ž" }, { "input": "cupped", "output": "⠉⠥â â â «" }, { "input": "cupping", "output": "⠉⠥â â â ¬" }, { "input": "cups", "output": "⠉⠥â â Ž" }, { "input": "cupsful", "output": "⠉⠥â â Žâ °â ‡" }, { "input": "cur", "output": "⠉⠥⠗" }, { "input": "curable", "output": "⠉⠥⠗â â ƒâ ‡â ‘" }, { "input": "curacies", "output": "⠉⠥⠗â â ‰â Šâ ‘â Ž" }, { "input": "curacy", "output": "⠉⠥⠗â â ‰â ½" }, { "input": "curate", "output": "⠉⠥⠗â â žâ ‘" }, { "input": "curates", "output": "⠉⠥⠗â â žâ ‘â Ž" }, { "input": "curative", "output": "⠉⠥⠗â â žâ Šâ §â ‘" }, { "input": "curatives", "output": "⠉⠥⠗â â žâ Šâ §â ‘â Ž" }, { "input": "curator", "output": "⠉⠥⠗â â žâ •â —" }, { "input": "curators", "output": "⠉⠥⠗â â žâ •â —â Ž" }, { "input": "curb", "output": "⠉⠥⠗⠃" }, { "input": "curbed", "output": "⠉⠥⠗⠃⠫" }, { "input": "curbing", "output": "⠉⠥⠗⠃⠬" }, { "input": "curbs", "output": "⠉⠥⠗⠃⠎" }, { "input": "curd", "output": "⠉⠥⠗⠙" }, { "input": "curdle", "output": "⠉⠥⠗⠙⠇⠑" }, { "input": "curdled", "output": "⠉⠥⠗⠙⠇⠫" }, { "input": "curdles", "output": "⠉⠥⠗⠙⠇⠑⠎" }, { "input": "curdling", "output": "⠉⠥⠗⠙⠇⠬" }, { "input": "curds", "output": "⠉⠥⠗⠙⠎" }, { "input": "cure", "output": "⠉⠥⠗⠑" }, { "input": "cured", "output": "⠉⠥⠗⠫" }, { "input": "curer", "output": "⠉⠥⠗⠻" }, { "input": "cures", "output": "⠉⠥⠗⠑⠎" }, { "input": "curfew", "output": "⠉⠥⠗⠋⠑⠺" }, { "input": "curfews", "output": "⠉⠥⠗⠋⠑⠺⠎" }, { "input": "curie", "output": "⠉⠥⠗⠊⠑" }, { "input": "curies", "output": "⠉⠥⠗⠊⠑⠎" }, { "input": "curing", "output": "⠉⠥⠗⠬" }, { "input": "curio", "output": "⠉⠥⠗⠊⠕" }, { "input": "curios", "output": "⠉⠥⠗⠊⠕⠎" }, { "input": "curiosities", "output": "⠉⠥⠗⠊⠕⠎⠊⠞⠊⠑⠎" }, { "input": "curiosity", "output": "⠉⠥⠗⠊⠕⠎⠰⠽" }, { "input": "curious", "output": "⠉⠥⠗⠊⠳⠎" }, { "input": "curiously", "output": "⠉⠥⠗⠊⠳⠎⠇⠽" }, { "input": "curl", "output": "⠉⠥⠗⠇" }, { "input": "curled", "output": "⠉⠥⠗⠇⠫" }, { "input": "curler", "output": "⠉⠥⠗⠇⠻" }, { "input": "curlers", "output": "⠉⠥⠗⠇⠻⠎" }, { "input": "curlew", "output": "⠉⠥⠗⠇⠑⠺" }, { "input": "curlews", "output": "⠉⠥⠗⠇⠑⠺⠎" }, { "input": "curlicue", "output": "⠉⠥⠗⠇⠊⠉⠥⠑" }, { "input": "curlicued", "output": "⠉⠥⠗⠇⠊⠉⠥⠫" }, { "input": "curlicues", "output": "⠉⠥⠗⠇⠊⠉⠥⠑⠎" }, { "input": "curlicuing", "output": "⠉⠥⠗⠇⠊⠉⠥⠬" }, { "input": "curlier", "output": "⠉⠥⠗⠇⠊⠻" }, { "input": "curliest", "output": "⠉⠥⠗⠇⠊⠑⠌" }, { "input": "curliness", "output": "⠉⠥⠗⠇⠊⠰⠎" }, { "input": "curling", "output": "⠉⠥⠗⠇⠬" }, { "input": "curls", "output": "⠉⠥⠗⠇⠎" }, { "input": "curly", "output": "⠉⠥⠗⠇⠽" }, { "input": "curlycue", "output": "⠉⠥⠗⠇⠽⠉⠥⠑" }, { "input": "curlycues", "output": "⠉⠥⠗⠇⠽⠉⠥⠑⠎" }, { "input": "curmudgeon", "output": "⠉⠥⠗â â ¥â ™â ›â ‘â •â " }, { "input": "curmudgeons", "output": "⠉⠥⠗â â ¥â ™â ›â ‘â •â â Ž" }, { "input": "currant", "output": "⠉⠥⠗⠗â â â ž" }, { "input": "currants", "output": "⠉⠥⠗⠗â â â žâ Ž" }, { "input": "currencies", "output": "⠉⠥⠗⠗⠢⠉⠊⠑⠎" }, { "input": "currency", "output": "⠉⠥⠗⠗⠢⠉⠽" }, { "input": "current", "output": "⠉⠥⠗⠗⠢⠞" }, { "input": "currently", "output": "⠉⠥⠗⠗⠢⠞⠇⠽" }, { "input": "currents", "output": "⠉⠥⠗⠗⠢⠞⠎" }, { "input": "curricula", "output": "⠉⠥⠗⠗⠊⠉⠥⠇â " }, { "input": "curriculum", "output": "⠉⠥⠗⠗⠊⠉⠥⠇⠥â " }, { "input": "curriculums", "output": "⠉⠥⠗⠗⠊⠉⠥⠇⠥â â Ž" }, { "input": "curried", "output": "⠉⠥⠗⠗⠊⠫" }, { "input": "curries", "output": "⠉⠥⠗⠗⠊⠑⠎" }, { "input": "curry", "output": "⠉⠥⠗⠗⠽" }, { "input": "currycomb", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒ" }, { "input": "currycombed", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ «" }, { "input": "currycombing", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ ¬" }, { "input": "currycombs", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ Ž" }, { "input": "currying", "output": "⠉⠥⠗⠗⠽⠬" }, { "input": "curs", "output": "⠉⠥⠗⠎" }, { "input": "curse", "output": "⠉⠥⠗⠎⠑" }, { "input": "cursed", "output": "⠉⠥⠗⠎⠫" }, { "input": "curses", "output": "⠉⠥⠗⠎⠑⠎" }, { "input": "cursing", "output": "⠉⠥⠗⠎⠬" }, { "input": "cursive", "output": "⠉⠥⠗⠎⠊⠧⠑" }, { "input": "cursor", "output": "⠉⠥⠗⠎⠕⠗" }, { "input": "cursorily", "output": "⠉⠥⠗⠎⠕⠗⠊⠇⠽" }, { "input": "cursors", "output": "⠉⠥⠗⠎⠕⠗⠎" }, { "input": "cursory", "output": "⠉⠥⠗⠎⠕⠗⠽" }, { "input": "curst", "output": "⠉⠥⠗⠌" }, { "input": "curt", "output": "⠉⠥⠗⠞" }, { "input": "curtail", "output": "⠉⠥⠗⠞â â Šâ ‡" }, { "input": "curtailed", "output": "⠉⠥⠗⠞â â Šâ ‡â «" }, { "input": "curtailing", "output": "⠉⠥⠗⠞â â Šâ ‡â ¬" }, { "input": "curtailment", "output": "⠉⠥⠗⠞â â Šâ ‡â °â ž" }, { "input": "curtailments", "output": "⠉⠥⠗⠞â â Šâ ‡â °â žâ Ž" }, { "input": "curtails", "output": "⠉⠥⠗⠞â â Šâ ‡â Ž" }, { "input": "curtain", "output": "⠉⠥⠗⠞â â ”" }, { "input": "curtained", "output": "⠉⠥⠗⠞â â ”â «" }, { "input": "curtaining", "output": "⠉⠥⠗⠞â â ”â ¬" }, { "input": "curtains", "output": "⠉⠥⠗⠞â â ”â Ž" }, { "input": "curter", "output": "⠉⠥⠗⠞⠻" }, { "input": "curtest", "output": "⠉⠥⠗⠞⠑⠌" }, { "input": "curtly", "output": "⠉⠥⠗⠞⠇⠽" }, { "input": "curtness", "output": "⠉⠥⠗⠞⠰⠎" }, { "input": "curtsey", "output": "⠉⠥⠗⠞⠎⠑⠽" }, { "input": "curtseyed", "output": "⠉⠥⠗⠞⠎⠑⠽⠫" }, { "input": "curtseying", "output": "⠉⠥⠗⠞⠎⠑⠽⠬" }, { "input": "curtseys", "output": "⠉⠥⠗⠞⠎⠑⠽⠎" }, { "input": "curtsied", "output": "⠉⠥⠗⠞⠎⠊⠫" }, { "input": "curtsies", "output": "⠉⠥⠗⠞⠎⠊⠑⠎" }, { "input": "curtsy", "output": "⠉⠥⠗⠞⠎⠽" }, { "input": "curtsying", "output": "⠉⠥⠗⠞⠎⠽⠬" }, { "input": "curvaceous", "output": "⠉⠥⠗⠧â â ‰â ‘⠳⠎" }, { "input": "curvacious", "output": "⠉⠥⠗⠧â â ‰â Šâ ³â Ž" }, { "input": "curvature", "output": "⠉⠥⠗⠧â â žâ ¥â —â ‘" }, { "input": "curvatures", "output": "⠉⠥⠗⠧â â žâ ¥â —â ‘â Ž" }, { "input": "curve", "output": "⠉⠥⠗⠧⠑" }, { "input": "curved", "output": "⠉⠥⠗⠧⠫" }, { "input": "curves", "output": "⠉⠥⠗⠧⠑⠎" }, { "input": "curvier", "output": "⠉⠥⠗⠧⠊⠻" }, { "input": "curviest", "output": "⠉⠥⠗⠧⠊⠑⠌" }, { "input": "curving", "output": "⠉⠥⠗⠧⠬" }, { "input": "curvy", "output": "⠉⠥⠗⠧⠽" }, { "input": "cushier", "output": "⠉⠥⠩⠊⠻" }, { "input": "cushiest", "output": "⠉⠥⠩⠊⠑⠌" }, { "input": "cushion", "output": "⠉⠥⠩⠊⠕â " }, { "input": "cushioned", "output": "⠉⠥⠩⠊⠕â â «" }, { "input": "cushioning", "output": "⠉⠥⠩⠊⠕â â ¬" }, { "input": "cushions", "output": "⠉⠥⠩⠊⠕â â Ž" }, { "input": "cushy", "output": "⠉⠥⠩⠽" }, { "input": "cusp", "output": "⠉⠥⠎â " }, { "input": "cuspid", "output": "⠉⠥⠎â â Šâ ™" }, { "input": "cuspids", "output": "⠉⠥⠎â â Šâ ™â Ž" }, { "input": "cusps", "output": "⠉⠥⠎â â Ž" }, { "input": "cuss", "output": "⠉⠥⠎⠎" }, { "input": "cussed", "output": "⠉⠥⠎⠎⠫" }, { "input": "cusses", "output": "⠉⠥⠎⠎⠑⠎" }, { "input": "cussing", "output": "⠉⠥⠎⠎⠬" }, { "input": "custard", "output": "⠉⠥⠌⠜⠙" }, { "input": "custards", "output": "⠉⠥⠌⠜⠙⠎" }, { "input": "custodial", "output": "⠉⠥⠌⠕⠙⠊â â ‡" }, { "input": "custodian", "output": "⠉⠥⠌⠕⠙⠊â â " }, { "input": "custodians", "output": "⠉⠥⠌⠕⠙⠊â â â Ž" }, { "input": "custody", "output": "⠉⠥⠌⠕⠙⠽" }, { "input": "custom", "output": "⠉⠥⠌⠕â " }, { "input": "customarily", "output": "⠉⠥⠌⠕â â œâ Šâ ‡â ½" }, { "input": "customary", "output": "⠉⠥⠌⠕â â œâ ½" }, { "input": "customer", "output": "⠉⠥⠌⠕â â »" }, { "input": "customers", "output": "⠉⠥⠌⠕â â »â Ž" }, { "input": "customization", "output": "⠉⠥⠌⠕â â Šâ µâ â °â " }, { "input": "customize", "output": "⠉⠥⠌⠕â â Šâ µâ ‘" }, { "input": "customized", "output": "⠉⠥⠌⠕â â Šâ µâ «" }, { "input": "customizes", "output": "⠉⠥⠌⠕â â Šâ µâ ‘â Ž" }, { "input": "customizing", "output": "⠉⠥⠌⠕â â Šâ µâ ¬" }, { "input": "customs", "output": "⠉⠥⠌⠕â â Ž" }, { "input": "cut", "output": "⠉⠥⠞" }, { "input": "cutback", "output": "⠉⠥⠞⠃â â ‰â …" }, { "input": "cutbacks", "output": "⠉⠥⠞⠃â â ‰â …â Ž" }, { "input": "cute", "output": "⠉⠥⠞⠑" }, { "input": "cutely", "output": "⠉⠥⠞⠑⠇⠽" }, { "input": "cuteness", "output": "⠉⠥⠞⠑⠰⠎" }, { "input": "cuter", "output": "⠉⠥⠞⠻" }, { "input": "cutesier", "output": "⠉⠥⠞⠑⠎⠊⠻" }, { "input": "cutesiest", "output": "⠉⠥⠞⠑⠎⠊⠑⠌" }, { "input": "cutest", "output": "⠉⠥⠞⠑⠌" }, { "input": "cutesy", "output": "⠉⠥⠞⠑⠎⠽" }, { "input": "cuticle", "output": "⠉⠥⠞⠊⠉⠇⠑" }, { "input": "cuticles", "output": "⠉⠥⠞⠊⠉⠇⠑⠎" }, { "input": "cutlass", "output": "⠉⠥⠞⠇â â Žâ Ž" }, { "input": "cutlasses", "output": "⠉⠥⠞⠇â â Žâ Žâ ‘â Ž" }, { "input": "cutlery", "output": "⠉⠥⠞⠇⠻⠽" }, { "input": "cutlet", "output": "⠉⠥⠞⠇⠑⠞" }, { "input": "cutlets", "output": "⠉⠥⠞⠇⠑⠞⠎" }, { "input": "cutoff", "output": "⠉⠥⠞⠷⠋" }, { "input": "cutoffs", "output": "⠉⠥⠞⠷⠋⠎" }, { "input": "cuts", "output": "⠉⠥⠞⠎" }, { "input": "cutter", "output": "⠉⠥⠞⠞⠻" }, { "input": "cutters", "output": "⠉⠥⠞⠞⠻⠎" }, { "input": "cutthroat", "output": "⠉⠥⠞⠹⠗⠕â â ž" }, { "input": "cutthroats", "output": "⠉⠥⠞⠹⠗⠕â â žâ Ž" }, { "input": "cutting", "output": "⠉⠥⠞⠞⠬" }, { "input": "cuttings", "output": "⠉⠥⠞⠞⠬⠎" }, { "input": "cuttlefish", "output": "⠉⠥⠞⠞⠇⠑⠋⠊⠩" }, { "input": "cuttlefishes", "output": "⠉⠥⠞⠞⠇⠑⠋⠊⠩⠑⠎" }, { "input": "cutup", "output": "⠉⠥⠞⠥â " }, { "input": "cutups", "output": "⠉⠥⠞⠥â â Ž" }, { "input": "cyanide", "output": "⠉⠽â â â Šâ ™â ‘" }, { "input": "cybernetic", "output": "⠉⠽⠃⠻â â ‘â žâ Šâ ‰" }, { "input": "cybernetics", "output": "⠉⠽⠃⠻â â ‘⠞⠊⠉⠎" }, { "input": "cyberpunk", "output": "⠉⠽⠃⠻â â ¥â â …" }, { "input": "cyberpunks", "output": "⠉⠽⠃⠻â â ¥â â …â Ž" }, { "input": "cyberspace", "output": "⠉⠽⠃⠻⠎â â â ‰â ‘" }, { "input": "cyclamen", "output": "⠉⠽⠉⠇â â â ¢" }, { "input": "cyclamens", "output": "⠉⠽⠉⠇â â â ¢â Ž" }, { "input": "cycle", "output": "⠉⠽⠉⠇⠑" }, { "input": "cycled", "output": "⠉⠽⠉⠇⠫" }, { "input": "cycles", "output": "⠉⠽⠉⠇⠑⠎" }, { "input": "cyclic", "output": "⠉⠽⠉⠇⠊⠉" }, { "input": "cyclical", "output": "⠉⠽⠉⠇⠊⠉â â ‡" }, { "input": "cyclically", "output": "⠉⠽⠉⠇⠊⠉â â ‡â ‡â ½" }, { "input": "cycling", "output": "⠉⠽⠉⠇⠬" }, { "input": "cyclist", "output": "⠉⠽⠉⠇⠊⠌" }, { "input": "cyclists", "output": "⠉⠽⠉⠇⠊⠌⠎" }, { "input": "cyclone", "output": "⠉⠽⠉⠇â â •" }, { "input": "cyclones", "output": "⠉⠽⠉⠇â â •â Ž" }, { "input": "cyclonic", "output": "⠉⠽⠉⠇⠕â â Šâ ‰" }, { "input": "cyclotron", "output": "⠉⠽⠉⠇⠕⠞⠗⠕â " }, { "input": "cyclotrons", "output": "⠉⠽⠉⠇⠕⠞⠗⠕â â Ž" }, { "input": "cygnet", "output": "⠉⠽⠛â â ‘â ž" }, { "input": "cygnets", "output": "⠉⠽⠛â â ‘â žâ Ž" }, { "input": "cylinder", "output": "⠉⠽⠇⠔⠙⠻" }, { "input": "cylinders", "output": "⠉⠽⠇⠔⠙⠻⠎" }, { "input": "cylindrical", "output": "⠉⠽⠇⠔⠙⠗⠊⠉â â ‡" }, { "input": "cymbal", "output": "⠉⠽â â ƒâ â ‡" }, { "input": "cymbals", "output": "⠉⠽â â ƒâ â ‡â Ž" }, { "input": "cynic", "output": "⠉⠽â â Šâ ‰" }, { "input": "cynical", "output": "⠉⠽â â Šâ ‰â â ‡" }, { "input": "cynically", "output": "⠉⠽â â Šâ ‰â â ‡â ‡â ½" }, { "input": "cynicism", "output": "⠉⠽â â Šâ ‰â Šâ Žâ " }, { "input": "cynics", "output": "⠉⠽â â Šâ ‰â Ž" }, { "input": "cynosure", "output": "⠉⠽â â •⠎⠥⠗⠑" }, { "input": "cynosures", "output": "⠉⠽â â •⠎⠥⠗⠑⠎" }, { "input": "cypher", "output": "⠉⠽â â “â »" }, { "input": "cypress", "output": "⠉⠽â â —â ‘â Žâ Ž" }, { "input": "cypresses", "output": "⠉⠽â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "cyst", "output": "⠉⠽⠌" }, { "input": "cystic", "output": "⠉⠽⠌⠊⠉" }, { "input": "cysts", "output": "⠉⠽⠌⠎" }, { "input": "cytology", "output": "⠉⠽⠞⠕⠇⠕⠛⠽" }, { "input": "cytoplasm", "output": "⠉⠽⠞⠕â â ‡â â Žâ " }, { "input": "czar", "output": "⠉⠵⠜" }, { "input": "czarina", "output": "⠉⠵⠜⠔â " }, { "input": "czarinas", "output": "⠉⠵⠜⠔â â Ž" }, { "input": "czars", "output": "⠉⠵⠜⠎" }, { "input": "d", "output": "â °â ™" }, { "input": "dB", "output": "⠙⠠⠃" }, { "input": "dab", "output": "â ™â â ƒ" }, { "input": "dabbed", "output": "â ™â â †â «" }, { "input": "dabbing", "output": "â ™â â †â ¬" }, { "input": "dabble", "output": "â ™â â †â ‡â ‘" }, { "input": "dabbled", "output": "â ™â â †â ‡â «" }, { "input": "dabbler", "output": "â ™â â †â ‡â »" }, { "input": "dabblers", "output": "â ™â â †â ‡â »â Ž" }, { "input": "dabbles", "output": "â ™â â †â ‡â ‘â Ž" }, { "input": "dabbling", "output": "â ™â â †â ‡â ¬" }, { "input": "dabs", "output": "â ™â â ƒâ Ž" }, { "input": "dacha", "output": "â ™â â ¡â " }, { "input": "dachas", "output": "â ™â â ¡â â Ž" }, { "input": "dachshund", "output": "â ™â â ¡â Žâ “â ¥â â ™" }, { "input": "dachshunds", "output": "â ™â â ¡â Žâ “â ¥â â ™â Ž" }, { "input": "dactyl", "output": "â ™â â ‰â žâ ½â ‡" }, { "input": "dactylic", "output": "â ™â â ‰â žâ ½â ‡â Šâ ‰" }, { "input": "dactylics", "output": "â ™â â ‰â žâ ½â ‡â Šâ ‰â Ž" }, { "input": "dactyls", "output": "â ™â â ‰â žâ ½â ‡â Ž" }, { "input": "dad", "output": "â ™â â ™" }, { "input": "daddies", "output": "â ™â â ™â ™â Šâ ‘â Ž" }, { "input": "daddy", "output": "â ™â â ™â ™â ½" }, { "input": "dado", "output": "â ™â â ™â •" }, { "input": "dadoes", "output": "â ™â â ™â •â ‘â Ž" }, { "input": "dados", "output": "â ™â â ™â •â Ž" }, { "input": "dads", "output": "â ™â â ™â Ž" }, { "input": "daemon", "output": "â ™â â ‘â â •â " }, { "input": "daemons", "output": "â ™â â ‘â â •â â Ž" }, { "input": "daffier", "output": "â ™â â –â Šâ »" }, { "input": "daffiest", "output": "â ™â â –â Šâ ‘â Œ" }, { "input": "daffodil", "output": "â ™â â –⠕⠙⠊⠇" }, { "input": "daffodils", "output": "â ™â â –⠕⠙⠊⠇⠎" }, { "input": "daffy", "output": "â ™â â –â ½" }, { "input": "daft", "output": "â ™â â ‹â ž" }, { "input": "dafter", "output": "â ™â â ‹â žâ »" }, { "input": "daftest", "output": "â ™â â ‹â žâ ‘â Œ" }, { "input": "dagger", "output": "â ™â â ¶â »" }, { "input": "daggers", "output": "â ™â â ¶â »â Ž" }, { "input": "daguerreotype", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â ‘" }, { "input": "daguerreotyped", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â «" }, { "input": "daguerreotypes", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â ‘â Ž" }, { "input": "daguerreotyping", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â ¬" }, { "input": "dahlia", "output": "â ™â â “⠇⠊â " }, { "input": "dahlias", "output": "â ™â â “⠇⠊â â Ž" }, { "input": "dailies", "output": "â ™â â Šâ ‡â Šâ ‘â Ž" }, { "input": "daily", "output": "â ™â â Šâ ‡â ½" }, { "input": "daintier", "output": "â ™â â ”â žâ Šâ »" }, { "input": "dainties", "output": "â ™â â ”â žâ Šâ ‘â Ž" }, { "input": "daintiest", "output": "â ™â â ”â žâ Šâ ‘â Œ" }, { "input": "daintily", "output": "â ™â â ”⠞⠊⠇⠽" }, { "input": "daintiness", "output": "â ™â â ”â žâ Šâ °â Ž" }, { "input": "dainty", "output": "â ™â â ”â žâ ½" }, { "input": "daiquiri", "output": "â ™â â Šâ Ÿâ ¥â Šâ —â Š" }, { "input": "daiquiris", "output": "â ™â â Šâ Ÿâ ¥â Šâ —â Šâ Ž" }, { "input": "dairies", "output": "â ™â â Šâ —â Šâ ‘â Ž" }, { "input": "dairy", "output": "â ™â â Šâ —â ½" }, { "input": "dairying", "output": "â ™â â Šâ —⠽⠬" }, { "input": "dairymaid", "output": "â ™â â Šâ —â ½â â â Šâ ™" }, { "input": "dairymaids", "output": "â ™â â Šâ —â ½â â â Šâ ™â Ž" }, { "input": "dairyman", "output": "â ™â â Šâ —â ½â â â " }, { "input": "dairymen", "output": "â ™â â Šâ —â ½â â ¢" }, { "input": "dais", "output": "â ™â â Šâ Ž" }, { "input": "daises", "output": "â ™â â Šâ Žâ ‘â Ž" }, { "input": "daisies", "output": "â ™â â Šâ Žâ Šâ ‘â Ž" }, { "input": "daisy", "output": "â ™â â Šâ Žâ ½" }, { "input": "dale", "output": "â ™â â ‡â ‘" }, { "input": "dales", "output": "â ™â â ‡â ‘â Ž" }, { "input": "dalliance", "output": "â ™â â ‡â ‡â Šâ ¨â ‘" }, { "input": "dalliances", "output": "â ™â â ‡â ‡â Šâ ¨â ‘â Ž" }, { "input": "dallied", "output": "â ™â â ‡â ‡â Šâ «" }, { "input": "dallies", "output": "â ™â â ‡â ‡â Šâ ‘â Ž" }, { "input": "dally", "output": "â ™â â ‡â ‡â ½" }, { "input": "dallying", "output": "â ™â â ‡â ‡â ½â ¬" }, { "input": "dalmatian", "output": "â ™â â ‡â â â žâ Šâ â " }, { "input": "dalmatians", "output": "â ™â â ‡â â â žâ Šâ â â Ž" }, { "input": "dam", "output": "â ™â â " }, { "input": "damage", "output": "â ™â â â â ›â ‘" }, { "input": "damaged", "output": "â ™â â â â ›â «" }, { "input": "damages", "output": "â ™â â â â ›â ‘â Ž" }, { "input": "damaging", "output": "â ™â â â â ›â ¬" }, { "input": "damask", "output": "â ™â â â â Žâ …" }, { "input": "damasked", "output": "â ™â â â â Žâ …â «" }, { "input": "damasking", "output": "â ™â â â â Žâ …â ¬" }, { "input": "damasks", "output": "â ™â â â â Žâ …â Ž" }, { "input": "dame", "output": "â ™â â â ‘" }, { "input": "dames", "output": "â ™â â â ‘â Ž" }, { "input": "dammed", "output": "â ™â â â â «" }, { "input": "damming", "output": "â ™â â â â ¬" }, { "input": "damn", "output": "â ™â â â " }, { "input": "damnable", "output": "â ™â â â â â ƒâ ‡â ‘" }, { "input": "damnably", "output": "â ™â â â â â ƒâ ‡â ½" }, { "input": "damnation", "output": "â ™â â â â â °â " }, { "input": "damndest", "output": "â ™â â â â ™â ‘â Œ" }, { "input": "damned", "output": "â ™â â â â «" }, { "input": "damnedest", "output": "â ™â â â â «â ‘â Œ" }, { "input": "damning", "output": "â ™â â â â ¬" }, { "input": "damns", "output": "â ™â â â â Ž" }, { "input": "damp", "output": "â ™â â â " }, { "input": "damped", "output": "â ™â â â â «" }, { "input": "dampen", "output": "â ™â â â â ¢" }, { "input": "dampened", "output": "â ™â â â â ¢â «" }, { "input": "dampening", "output": "â ™â â â â ¢â ¬" }, { "input": "dampens", "output": "â ™â â â â ¢â Ž" }, { "input": "damper", "output": "â ™â â â â »" }, { "input": "dampers", "output": "â ™â â â â »â Ž" }, { "input": "dampest", "output": "â ™â â â â ‘â Œ" }, { "input": "damping", "output": "â ™â â â â ¬" }, { "input": "damply", "output": "â ™â â â â ‡â ½" }, { "input": "dampness", "output": "â ™â â â â °â Ž" }, { "input": "damps", "output": "â ™â â â â Ž" }, { "input": "dams", "output": "â ™â â â Ž" }, { "input": "damsel", "output": "â ™â â â Žâ ‘â ‡" }, { "input": "damsels", "output": "â ™â â â Žâ ‘⠇⠎" }, { "input": "damson", "output": "â ™â â â Žâ •â " }, { "input": "damsons", "output": "â ™â â â Žâ •â â Ž" }, { "input": "dance", "output": "⠙⠨⠑" }, { "input": "danced", "output": "⠙⠨⠑⠙" }, { "input": "dancer", "output": "⠙⠨⠑⠗" }, { "input": "dancers", "output": "⠙⠨⠑⠗⠎" }, { "input": "dances", "output": "⠙⠨⠑⠎" }, { "input": "dancing", "output": "â ™â â â ‰â ¬" }, { "input": "dandelion", "output": "⠙⠯⠑⠇⠊⠕â " }, { "input": "dandelions", "output": "⠙⠯⠑⠇⠊⠕â â Ž" }, { "input": "dander", "output": "⠙⠯⠻" }, { "input": "dandier", "output": "⠙⠯⠊⠻" }, { "input": "dandies", "output": "⠙⠯⠊⠑⠎" }, { "input": "dandiest", "output": "⠙⠯⠊⠑⠌" }, { "input": "dandle", "output": "⠙⠯⠇⠑" }, { "input": "dandled", "output": "⠙⠯⠇⠫" }, { "input": "dandles", "output": "⠙⠯⠇⠑⠎" }, { "input": "dandling", "output": "⠙⠯⠇⠬" }, { "input": "dandruff", "output": "⠙⠯⠗⠥⠋⠋" }, { "input": "dandy", "output": "⠙⠯⠽" }, { "input": "danger", "output": "â ™â â â ›â »" }, { "input": "dangerous", "output": "â ™â â â ›â »â ³â Ž" }, { "input": "dangerously", "output": "â ™â â â ›â »â ³â Žâ ‡â ½" }, { "input": "dangers", "output": "â ™â â â ›â »â Ž" }, { "input": "dangle", "output": "â ™â â â ›â ‡â ‘" }, { "input": "dangled", "output": "â ™â â â ›â ‡â «" }, { "input": "dangles", "output": "â ™â â â ›â ‡â ‘â Ž" }, { "input": "dangling", "output": "â ™â â â ›â ‡â ¬" }, { "input": "dank", "output": "â ™â â â …" }, { "input": "danker", "output": "â ™â â â …â »" }, { "input": "dankest", "output": "â ™â â â …â ‘â Œ" }, { "input": "dankly", "output": "â ™â â â …⠇⠽" }, { "input": "dankness", "output": "â ™â â â …â °â Ž" }, { "input": "dapper", "output": "â ™â â â â »" }, { "input": "dapperer", "output": "â ™â â â â »â »" }, { "input": "dapperest", "output": "â ™â â â â »â ‘â Œ" }, { "input": "dapple", "output": "â ™â â â â ‡â ‘" }, { "input": "dappled", "output": "â ™â â â â ‡â «" }, { "input": "dapples", "output": "â ™â â â â ‡â ‘â Ž" }, { "input": "dappling", "output": "â ™â â â â ‡â ¬" }, { "input": "dare", "output": "⠙⠜⠑" }, { "input": "dared", "output": "⠙⠜⠫" }, { "input": "daredevil", "output": "⠙⠜⠑⠙⠑⠧⠊⠇" }, { "input": "daredevils", "output": "⠙⠜⠑⠙⠑⠧⠊⠇⠎" }, { "input": "dares", "output": "⠙⠜⠑⠎" }, { "input": "daring", "output": "⠙⠜⠬" }, { "input": "daringly", "output": "⠙⠜⠬⠇⠽" }, { "input": "dark", "output": "⠙⠜⠅" }, { "input": "darken", "output": "⠙⠜⠅⠢" }, { "input": "darkened", "output": "⠙⠜⠅⠢⠫" }, { "input": "darkening", "output": "⠙⠜⠅⠢⠬" }, { "input": "darkens", "output": "⠙⠜⠅⠢⠎" }, { "input": "darker", "output": "⠙⠜⠅⠻" }, { "input": "darkest", "output": "⠙⠜⠅⠑⠌" }, { "input": "darkly", "output": "⠙⠜⠅⠇⠽" }, { "input": "darkness", "output": "⠙⠜⠅⠰⠎" }, { "input": "darkroom", "output": "⠙⠜⠅⠗⠕⠕â " }, { "input": "darkrooms", "output": "⠙⠜⠅⠗⠕⠕â â Ž" }, { "input": "darling", "output": "⠙⠜⠇⠬" }, { "input": "darlings", "output": "⠙⠜⠇⠬⠎" }, { "input": "darn", "output": "⠙⠜â " }, { "input": "darned", "output": "⠙⠜â â «" }, { "input": "darneder", "output": "⠙⠜â â «â »" }, { "input": "darnedest", "output": "⠙⠜â â «â ‘â Œ" }, { "input": "darning", "output": "⠙⠜â â ¬" }, { "input": "darns", "output": "⠙⠜â â Ž" }, { "input": "dart", "output": "⠙⠜⠞" }, { "input": "dartboard", "output": "⠙⠜⠞⠃⠕⠜⠙" }, { "input": "dartboards", "output": "⠙⠜⠞⠃⠕⠜⠙⠎" }, { "input": "darted", "output": "⠙⠜⠞⠫" }, { "input": "darting", "output": "⠙⠜⠞⠬" }, { "input": "darts", "output": "⠙⠜⠞⠎" }, { "input": "dash", "output": "â ™â â ©" }, { "input": "dashboard", "output": "â ™â â ©â ƒâ •⠜⠙" }, { "input": "dashboards", "output": "â ™â â ©â ƒâ •⠜⠙⠎" }, { "input": "dashed", "output": "â ™â â ©â «" }, { "input": "dashes", "output": "â ™â â ©â ‘â Ž" }, { "input": "dashiki", "output": "â ™â â ©â Šâ …â Š" }, { "input": "dashikis", "output": "â ™â â ©â Šâ …â Šâ Ž" }, { "input": "dashing", "output": "â ™â â ©â ¬" }, { "input": "dashingly", "output": "â ™â â ©â ¬â ‡â ½" }, { "input": "dastardly", "output": "â ™â â Œâ œâ ™â ‡â ½" }, { "input": "data", "output": "â ™â â žâ " }, { "input": "database", "output": "â ™â â žâ â ƒâ â Žâ ‘" }, { "input": "databases", "output": "â ™â â žâ â ƒâ â Žâ ‘â Ž" }, { "input": "date", "output": "â ™â â žâ ‘" }, { "input": "dated", "output": "â ™â â žâ «" }, { "input": "dateline", "output": "â ™â â žâ ‘⠇⠔⠑" }, { "input": "datelined", "output": "â ™â â žâ ‘⠇⠔⠫" }, { "input": "datelines", "output": "â ™â â žâ ‘⠇⠔⠑⠎" }, { "input": "datelining", "output": "â ™â â žâ ‘⠇⠔⠬" }, { "input": "dates", "output": "â ™â â žâ ‘â Ž" }, { "input": "dating", "output": "â ™â â žâ ¬" }, { "input": "dative", "output": "â ™â â žâ Šâ §â ‘" }, { "input": "datives", "output": "â ™â â žâ Šâ §â ‘â Ž" }, { "input": "datum", "output": "â ™â â žâ ¥â " }, { "input": "daub", "output": "â ™â â ¥â ƒ" }, { "input": "daubed", "output": "â ™â â ¥â ƒâ «" }, { "input": "dauber", "output": "â ™â â ¥â ƒâ »" }, { "input": "daubers", "output": "â ™â â ¥â ƒâ »â Ž" }, { "input": "daubing", "output": "â ™â â ¥â ƒâ ¬" }, { "input": "daubs", "output": "â ™â â ¥â ƒâ Ž" }, { "input": "daughter", "output": "â ™â â ¥â £â žâ »" }, { "input": "daughters", "output": "â ™â â ¥â £â žâ »â Ž" }, { "input": "daunt", "output": "â ™â â ¥â â ž" }, { "input": "daunted", "output": "â ™â â ¥â â žâ «" }, { "input": "daunting", "output": "â ™â â ¥â â žâ ¬" }, { "input": "dauntless", "output": "â ™â â ¥â â žâ ¨â Ž" }, { "input": "dauntlessly", "output": "â ™â â ¥â â žâ ¨â Žâ ‡â ½" }, { "input": "dauntlessness", "output": "â ™â â ¥â â žâ ¨â Žâ °â Ž" }, { "input": "daunts", "output": "â ™â â ¥â â žâ Ž" }, { "input": "dauphin", "output": "â ™â â ¥â â “â ”" }, { "input": "dauphins", "output": "â ™â â ¥â â “⠔⠎" }, { "input": "davenport", "output": "â ™â â §â ¢â â •â —â ž" }, { "input": "davenports", "output": "â ™â â §â ¢â â •â —â žâ Ž" }, { "input": "davit", "output": "â ™â â §â Šâ ž" }, { "input": "davits", "output": "â ™â â §â Šâ žâ Ž" }, { "input": "dawdle", "output": "â ™â â ºâ ™â ‡â ‘" }, { "input": "dawdled", "output": "â ™â â ºâ ™â ‡â «" }, { "input": "dawdler", "output": "â ™â â ºâ ™â ‡â »" }, { "input": "dawdlers", "output": "â ™â â ºâ ™â ‡â »â Ž" }, { "input": "dawdles", "output": "â ™â â ºâ ™â ‡â ‘â Ž" }, { "input": "dawdling", "output": "â ™â â ºâ ™â ‡â ¬" }, { "input": "dawn", "output": "â ™â â ºâ " }, { "input": "dawned", "output": "â ™â â ºâ â «" }, { "input": "dawning", "output": "â ™â â ºâ â ¬" }, { "input": "dawns", "output": "â ™â â ºâ â Ž" }, { "input": "day", "output": "â â ™" }, { "input": "daybed", "output": "â â ™â ƒâ «" }, { "input": "daybeds", "output": "â â ™â ƒâ «â Ž" }, { "input": "daybreak", "output": "â â ™â ƒâ —â ‚â …" }, { "input": "daydream", "output": "â â ™â ™â —â ‚â " }, { "input": "daydreamed", "output": "â â ™â ™â —â ‚â â «" }, { "input": "daydreamer", "output": "â â ™â ™â —â ‚â â »" }, { "input": "daydreamers", "output": "â â ™â ™â —â ‚â â »â Ž" }, { "input": "daydreaming", "output": "â â ™â ™â —â ‚â â ¬" }, { "input": "daydreams", "output": "â â ™â ™â —â ‚â â Ž" }, { "input": "daydreamt", "output": "â â ™â ™â —â ‚â â ž" }, { "input": "daylight", "output": "â â ™â ‡â Šâ £â ž" }, { "input": "daylights", "output": "â â ™â ‡â Šâ £â žâ Ž" }, { "input": "days", "output": "â â ™â Ž" }, { "input": "daytime", "output": "â â ™â â ž" }, { "input": "daze", "output": "â ™â â µâ ‘" }, { "input": "dazed", "output": "â ™â â µâ «" }, { "input": "dazes", "output": "â ™â â µâ ‘â Ž" }, { "input": "dazing", "output": "â ™â â µâ ¬" }, { "input": "dazzle", "output": "â ™â â µâ µâ ‡â ‘" }, { "input": "dazzled", "output": "â ™â â µâ µâ ‡â «" }, { "input": "dazzles", "output": "â ™â â µâ µâ ‡â ‘â Ž" }, { "input": "dazzling", "output": "â ™â â µâ µâ ‡â ¬" }, { "input": "deacon", "output": "⠙⠂⠉⠕â " }, { "input": "deaconess", "output": "⠙⠂⠉⠕⠰⠎" }, { "input": "deaconesses", "output": "⠙⠂⠉⠕⠰⠎⠑⠎" }, { "input": "deacons", "output": "⠙⠂⠉⠕â â Ž" }, { "input": "deactivate", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "deactivated", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ «" }, { "input": "deactivates", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "deactivating", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ ¬" }, { "input": "dead", "output": "⠙⠂⠙" }, { "input": "deadbeat", "output": "⠙⠂⠙⠃⠂⠞" }, { "input": "deadbeats", "output": "⠙⠂⠙⠃⠂⠞⠎" }, { "input": "deadbolt", "output": "⠙⠂⠙⠃⠕⠇⠞" }, { "input": "deadbolts", "output": "⠙⠂⠙⠃⠕⠇⠞⠎" }, { "input": "deaden", "output": "⠙⠂⠙⠢" }, { "input": "deadened", "output": "⠙⠂⠙⠢⠫" }, { "input": "deadening", "output": "⠙⠂⠙⠢⠬" }, { "input": "deadens", "output": "⠙⠂⠙⠢⠎" }, { "input": "deader", "output": "⠙⠂⠙⠻" }, { "input": "deadest", "output": "⠙⠂⠙⠑⠌" }, { "input": "deadlier", "output": "⠙⠂⠙⠇⠊⠻" }, { "input": "deadliest", "output": "⠙⠂⠙⠇⠊⠑⠌" }, { "input": "deadline", "output": "⠙⠂⠙⠇⠔⠑" }, { "input": "deadlines", "output": "⠙⠂⠙⠇⠔⠑⠎" }, { "input": "deadliness", "output": "⠙⠂⠙⠇⠊⠰⠎" }, { "input": "deadlock", "output": "⠙⠂⠙⠇⠕⠉⠅" }, { "input": "deadlocked", "output": "⠙⠂⠙⠇⠕⠉⠅⠫" }, { "input": "deadlocking", "output": "⠙⠂⠙⠇⠕⠉⠅⠬" }, { "input": "deadlocks", "output": "⠙⠂⠙⠇⠕⠉⠅⠎" }, { "input": "deadly", "output": "⠙⠂⠙⠇⠽" }, { "input": "deadpan", "output": "⠙⠂⠙â â â " }, { "input": "deadpanned", "output": "⠙⠂⠙â â â â â «" }, { "input": "deadpanning", "output": "⠙⠂⠙â â â â â ¬" }, { "input": "deadpans", "output": "⠙⠂⠙â â â â Ž" }, { "input": "deadwood", "output": "⠙⠂⠙⠺⠕⠕⠙" }, { "input": "deaf", "output": "⠙⠂⠋" }, { "input": "deafen", "output": "⠙⠂⠋⠢" }, { "input": "deafened", "output": "⠙⠂⠋⠢⠫" }, { "input": "deafening", "output": "⠙⠂⠋⠢⠬" }, { "input": "deafens", "output": "⠙⠂⠋⠢⠎" }, { "input": "deafer", "output": "⠙⠂⠋⠻" }, { "input": "deafest", "output": "⠙⠂⠋⠑⠌" }, { "input": "deafness", "output": "⠙⠂⠋⠰⠎" }, { "input": "deal", "output": "⠙⠂⠇" }, { "input": "dealer", "output": "⠙⠂⠇⠻" }, { "input": "dealers", "output": "⠙⠂⠇⠻⠎" }, { "input": "dealership", "output": "⠙⠂⠇⠻⠩⠊â " }, { "input": "dealerships", "output": "⠙⠂⠇⠻⠩⠊â â Ž" }, { "input": "dealing", "output": "⠙⠂⠇⠬" }, { "input": "dealings", "output": "⠙⠂⠇⠬⠎" }, { "input": "deals", "output": "⠙⠂⠇⠎" }, { "input": "dealt", "output": "⠙⠂⠇⠞" }, { "input": "dean", "output": "⠙⠂â " }, { "input": "deans", "output": "⠙⠂â â Ž" }, { "input": "dear", "output": "⠙⠑⠜" }, { "input": "dearer", "output": "⠙⠑⠜⠻" }, { "input": "dearest", "output": "⠙⠑⠜⠑⠌" }, { "input": "dearly", "output": "⠙⠑⠜⠇⠽" }, { "input": "dearness", "output": "⠙⠑⠜⠰⠎" }, { "input": "dears", "output": "⠙⠑⠜⠎" }, { "input": "dearth", "output": "⠙⠑⠜⠹" }, { "input": "dearths", "output": "⠙⠑⠜⠹⠎" }, { "input": "death", "output": "⠙⠂⠹" }, { "input": "deathbed", "output": "⠙⠂⠹⠃⠫" }, { "input": "deathbeds", "output": "⠙⠂⠹⠃⠫⠎" }, { "input": "deathblow", "output": "⠙⠂⠹⠃⠇⠪" }, { "input": "deathblows", "output": "⠙⠂⠹⠃⠇⠪⠎" }, { "input": "deathless", "output": "⠙⠂⠹⠨⠎" }, { "input": "deathlike", "output": "⠙⠂⠹⠇⠊⠅⠑" }, { "input": "deathly", "output": "⠙⠂⠹⠇⠽" }, { "input": "deaths", "output": "⠙⠂⠹⠎" }, { "input": "deathtrap", "output": "⠙⠂⠹⠞⠗â â " }, { "input": "deathtraps", "output": "⠙⠂⠹⠞⠗â â â Ž" }, { "input": "deaves", "output": "⠙⠂⠧⠑⠎" }, { "input": "deb", "output": "⠙⠑⠃" }, { "input": "debacle", "output": "⠙⠑⠃â â ‰â ‡â ‘" }, { "input": "debacles", "output": "⠙⠑⠃â â ‰â ‡â ‘â Ž" }, { "input": "debar", "output": "⠙⠑⠃⠜" }, { "input": "debark", "output": "⠙⠑⠃⠜⠅" }, { "input": "debarkation", "output": "⠙⠑⠃⠜⠅â â °â " }, { "input": "debarked", "output": "⠙⠑⠃⠜⠅⠫" }, { "input": "debarking", "output": "⠙⠑⠃⠜⠅⠬" }, { "input": "debarks", "output": "⠙⠑⠃⠜⠅⠎" }, { "input": "debarment", "output": "⠙⠑⠃⠜⠰⠞" }, { "input": "debarred", "output": "⠙⠑⠃⠜⠗⠫" }, { "input": "debarring", "output": "⠙⠑⠃⠜⠗⠬" }, { "input": "debars", "output": "⠙⠑⠃⠜⠎" }, { "input": "debase", "output": "⠙⠑⠃â â Žâ ‘" }, { "input": "debased", "output": "⠙⠑⠃â â Žâ «" }, { "input": "debasement", "output": "⠙⠑⠃â â Žâ ‘â °â ž" }, { "input": "debasements", "output": "⠙⠑⠃â â Žâ ‘â °â žâ Ž" }, { "input": "debases", "output": "⠙⠑⠃â â Žâ ‘â Ž" }, { "input": "debasing", "output": "⠙⠑⠃â â Žâ ¬" }, { "input": "debatable", "output": "⠙⠑⠃â â žâ â ƒâ ‡â ‘" }, { "input": "debate", "output": "⠙⠑⠃â â žâ ‘" }, { "input": "debated", "output": "⠙⠑⠃â â žâ «" }, { "input": "debater", "output": "⠙⠑⠃â â žâ »" }, { "input": "debaters", "output": "⠙⠑⠃â â žâ »â Ž" }, { "input": "debates", "output": "⠙⠑⠃â â žâ ‘â Ž" }, { "input": "debating", "output": "⠙⠑⠃â â žâ ¬" }, { "input": "debauch", "output": "⠙⠑⠃â â ¥â ¡" }, { "input": "debauched", "output": "⠙⠑⠃â â ¥â ¡â «" }, { "input": "debaucheries", "output": "⠙⠑⠃â â ¥â ¡â »â Šâ ‘â Ž" }, { "input": "debauchery", "output": "⠙⠑⠃â â ¥â ¡â »â ½" }, { "input": "debauches", "output": "⠙⠑⠃â â ¥â ¡â ‘â Ž" }, { "input": "debauching", "output": "⠙⠑⠃â â ¥â ¡â ¬" }, { "input": "debenture", "output": "⠙⠑⠃⠢⠞⠥⠗⠑" }, { "input": "debentures", "output": "⠙⠑⠃⠢⠞⠥⠗⠑⠎" }, { "input": "debilitate", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ ‘" }, { "input": "debilitated", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ «" }, { "input": "debilitates", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ ‘â Ž" }, { "input": "debilitating", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ ¬" }, { "input": "debilitation", "output": "⠙⠑⠃⠊⠇⠊⠞â â °â " }, { "input": "debilities", "output": "⠙⠑⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "debility", "output": "⠙⠑⠃⠊⠇⠰⠽" }, { "input": "debit", "output": "⠙⠑⠃⠊⠞" }, { "input": "debited", "output": "⠙⠑⠃⠊⠞⠫" }, { "input": "debiting", "output": "⠙⠑⠃⠊⠞⠬" }, { "input": "debits", "output": "⠙⠑⠃⠊⠞⠎" }, { "input": "debonair", "output": "⠙⠑⠃⠕â â â Šâ —" }, { "input": "debonairly", "output": "⠙⠑⠃⠕â â â Šâ —⠇⠽" }, { "input": "debrief", "output": "⠙⠑⠃⠗⠊⠑⠋" }, { "input": "debriefed", "output": "⠙⠑⠃⠗⠊⠑⠋⠫" }, { "input": "debriefing", "output": "⠙⠑⠃⠗⠊⠑⠋⠬" }, { "input": "debriefings", "output": "⠙⠑⠃⠗⠊⠑⠋⠬⠎" }, { "input": "debriefs", "output": "⠙⠑⠃⠗⠊⠑⠋⠎" }, { "input": "debris", "output": "⠙⠑⠃⠗⠊⠎" }, { "input": "debs", "output": "⠙⠑⠃⠎" }, { "input": "debt", "output": "⠙⠑⠃⠞" }, { "input": "debtor", "output": "⠙⠑⠃⠞⠕⠗" }, { "input": "debtors", "output": "⠙⠑⠃⠞⠕⠗⠎" }, { "input": "debts", "output": "⠙⠑⠃⠞⠎" }, { "input": "debug", "output": "⠙⠑⠃⠥⠛" }, { "input": "debugged", "output": "⠙⠑⠃⠥⠶⠫" }, { "input": "debugger", "output": "⠙⠑⠃⠥⠶⠻" }, { "input": "debuggers", "output": "⠙⠑⠃⠥⠶⠻⠎" }, { "input": "debugging", "output": "⠙⠑⠃⠥⠶⠬" }, { "input": "debugs", "output": "⠙⠑⠃⠥⠛⠎" }, { "input": "debunk", "output": "⠙⠑⠃⠥â â …" }, { "input": "debunked", "output": "⠙⠑⠃⠥â â …â «" }, { "input": "debunking", "output": "⠙⠑⠃⠥â â …â ¬" }, { "input": "debunks", "output": "⠙⠑⠃⠥â â …â Ž" }, { "input": "debut", "output": "⠙⠑⠃⠥⠞" }, { "input": "debuted", "output": "⠙⠑⠃⠥⠞⠫" }, { "input": "debuting", "output": "⠙⠑⠃⠥⠞⠬" }, { "input": "debuts", "output": "⠙⠑⠃⠥⠞⠎" }, { "input": "decade", "output": "⠙⠑⠉â â ™â ‘" }, { "input": "decadence", "output": "⠙⠑⠉â â ™â °â ‘" }, { "input": "decadent", "output": "⠙⠑⠉â â ™â ¢â ž" }, { "input": "decadently", "output": "⠙⠑⠉â â ™â ¢â žâ ‡â ½" }, { "input": "decadents", "output": "⠙⠑⠉â â ™â ¢â žâ Ž" }, { "input": "decades", "output": "⠙⠑⠉â â ™â ‘â Ž" }, { "input": "decaf", "output": "⠙⠑⠉â â ‹" }, { "input": "decaffeinate", "output": "⠙⠑⠉â â –â ‘â ”â â žâ ‘" }, { "input": "decaffeinated", "output": "⠙⠑⠉â â –â ‘â ”â â žâ «" }, { "input": "decaffeinates", "output": "⠙⠑⠉â â –â ‘â ”â â žâ ‘â Ž" }, { "input": "decaffeinating", "output": "⠙⠑⠉â â –â ‘â ”â â žâ ¬" }, { "input": "decal", "output": "⠙⠑⠉â â ‡" }, { "input": "decals", "output": "⠙⠑⠉â â ‡â Ž" }, { "input": "decamp", "output": "⠙⠑⠉â â â " }, { "input": "decamped", "output": "⠙⠑⠉â â â â «" }, { "input": "decamping", "output": "⠙⠑⠉â â â â ¬" }, { "input": "decamps", "output": "⠙⠑⠉â â â â Ž" }, { "input": "decant", "output": "⠙⠑⠉â â â ž" }, { "input": "decanted", "output": "⠙⠑⠉â â â žâ «" }, { "input": "decanter", "output": "⠙⠑⠉â â â žâ »" }, { "input": "decanters", "output": "⠙⠑⠉â â â žâ »â Ž" }, { "input": "decanting", "output": "⠙⠑⠉â â â žâ ¬" }, { "input": "decants", "output": "⠙⠑⠉â â â žâ Ž" }, { "input": "decapitate", "output": "⠙⠑⠉â â â Šâ žâ â žâ ‘" }, { "input": "decapitated", "output": "⠙⠑⠉â â â Šâ žâ â žâ «" }, { "input": "decapitates", "output": "⠙⠑⠉â â â Šâ žâ â žâ ‘â Ž" }, { "input": "decapitating", "output": "⠙⠑⠉â â â Šâ žâ â žâ ¬" }, { "input": "decapitation", "output": "⠙⠑⠉â â â Šâ žâ â °â " }, { "input": "decapitations", "output": "⠙⠑⠉â â â Šâ žâ â °â â Ž" }, { "input": "decathlon", "output": "⠙⠑⠉â â ¹â ‡â •â " }, { "input": "decathlons", "output": "⠙⠑⠉â â ¹â ‡â •â â Ž" }, { "input": "decay", "output": "⠙⠑⠉â â ½" }, { "input": "decayed", "output": "⠙⠑⠉â â ½â «" }, { "input": "decaying", "output": "⠙⠑⠉â â ½â ¬" }, { "input": "decays", "output": "⠙⠑⠉â â ½â Ž" }, { "input": "decease", "output": "⠙⠑⠉⠂⠎⠑" }, { "input": "deceased", "output": "⠙⠑⠉⠂⠎⠫" }, { "input": "deceases", "output": "⠙⠑⠉⠂⠎⠑⠎" }, { "input": "deceasing", "output": "⠙⠑⠉⠂⠎⠬" }, { "input": "decedent", "output": "⠙⠑⠉⠫⠢⠞" }, { "input": "decedents", "output": "⠙⠑⠉⠫⠢⠞⠎" }, { "input": "deceit", "output": "⠙⠑⠉⠑⠊⠞" }, { "input": "deceitful", "output": "⠙⠑⠉⠑⠊⠞⠰⠇" }, { "input": "deceitfully", "output": "⠙⠑⠉⠑⠊⠞⠰⠇⠇⠽" }, { "input": "deceitfulness", "output": "⠙⠑⠉⠑⠊⠞⠰⠇⠰⠎" }, { "input": "deceits", "output": "⠙⠑⠉⠑⠊⠞⠎" }, { "input": "deceive", "output": "⠙⠉⠧" }, { "input": "deceived", "output": "⠙⠉⠧⠙" }, { "input": "deceiver", "output": "⠙⠉⠧⠗" }, { "input": "deceivers", "output": "⠙⠉⠧⠗⠎" }, { "input": "deceives", "output": "⠙⠉⠧⠎" }, { "input": "deceiving", "output": "⠙⠉⠧⠛" }, { "input": "decelerate", "output": "⠙⠑⠉⠑⠇⠻â â žâ ‘" }, { "input": "decelerated", "output": "⠙⠑⠉⠑⠇⠻â â žâ «" }, { "input": "decelerates", "output": "⠙⠑⠉⠑⠇⠻â â žâ ‘â Ž" }, { "input": "decelerating", "output": "⠙⠑⠉⠑⠇⠻â â žâ ¬" }, { "input": "deceleration", "output": "⠙⠑⠉⠑⠇⠻â â °â " }, { "input": "decencies", "output": "⠙⠑⠉⠢⠉⠊⠑⠎" }, { "input": "decency", "output": "⠙⠑⠉⠢⠉⠽" }, { "input": "decent", "output": "⠙⠑⠉⠢⠞" }, { "input": "decently", "output": "⠙⠑⠉⠢⠞⠇⠽" }, { "input": "decentralization", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ â °â " }, { "input": "decentralize", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ ‘" }, { "input": "decentralized", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ «" }, { "input": "decentralizes", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ ‘â Ž" }, { "input": "decentralizing", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ ¬" }, { "input": "deception", "output": "⠙⠑⠉⠑â â °â " }, { "input": "deceptions", "output": "⠙⠑⠉⠑â â °â â Ž" }, { "input": "deceptive", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘" }, { "input": "deceptively", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘⠇⠽" }, { "input": "deceptiveness", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘â °â Ž" }, { "input": "decibel", "output": "⠙⠑⠉⠊⠃⠑⠇" }, { "input": "decibels", "output": "⠙⠑⠉⠊⠃⠑⠇⠎" }, { "input": "decide", "output": "⠙⠑⠉⠊⠙⠑" }, { "input": "decided", "output": "⠙⠑⠉⠊⠙⠫" }, { "input": "decidedly", "output": "⠙⠑⠉⠊⠙⠫⠇⠽" }, { "input": "decides", "output": "⠙⠑⠉⠊⠙⠑⠎" }, { "input": "deciding", "output": "⠙⠑⠉⠊⠙⠬" }, { "input": "deciduous", "output": "⠙⠑⠉⠊⠙⠥⠳⠎" }, { "input": "decimal", "output": "⠙⠑⠉⠊â â â ‡" }, { "input": "decimals", "output": "⠙⠑⠉⠊â â â ‡â Ž" }, { "input": "decimate", "output": "⠙⠑⠉⠊â â â žâ ‘" }, { "input": "decimated", "output": "⠙⠑⠉⠊â â â žâ «" }, { "input": "decimates", "output": "⠙⠑⠉⠊â â â žâ ‘â Ž" }, { "input": "decimating", "output": "⠙⠑⠉⠊â â â žâ ¬" }, { "input": "decimation", "output": "⠙⠑⠉⠊â â â °â " }, { "input": "decipher", "output": "⠙⠑⠉⠊â â “â »" }, { "input": "decipherable", "output": "⠙⠑⠉⠊â â “â »â â ƒâ ‡â ‘" }, { "input": "deciphered", "output": "⠙⠑⠉⠊â â “⠻⠫" }, { "input": "deciphering", "output": "⠙⠑⠉⠊â â “⠻⠬" }, { "input": "deciphers", "output": "⠙⠑⠉⠊â â “⠻⠎" }, { "input": "decision", "output": "⠙⠑⠉⠊⠨â " }, { "input": "decisions", "output": "⠙⠑⠉⠊⠨â â Ž" }, { "input": "decisive", "output": "⠙⠑⠉⠊⠎⠊⠧⠑" }, { "input": "decisively", "output": "⠙⠑⠉⠊⠎⠊⠧⠑⠇⠽" }, { "input": "decisiveness", "output": "⠙⠑⠉⠊⠎⠊⠧⠑⠰⠎" }, { "input": "deck", "output": "⠙⠑⠉⠅" }, { "input": "decked", "output": "⠙⠑⠉⠅⠫" }, { "input": "deckhand", "output": "⠙⠑⠉⠅⠓⠯" }, { "input": "deckhands", "output": "⠙⠑⠉⠅⠓⠯⠎" }, { "input": "decking", "output": "⠙⠑⠉⠅⠬" }, { "input": "decks", "output": "⠙⠑⠉⠅⠎" }, { "input": "declaim", "output": "⠙⠑⠉⠇â â Šâ " }, { "input": "declaimed", "output": "⠙⠑⠉⠇â â Šâ â «" }, { "input": "declaiming", "output": "⠙⠑⠉⠇â â Šâ â ¬" }, { "input": "declaims", "output": "⠙⠑⠉⠇â â Šâ â Ž" }, { "input": "declamation", "output": "⠙⠑⠉⠇â â â â °â " }, { "input": "declamations", "output": "⠙⠑⠉⠇â â â â °â â Ž" }, { "input": "declamatory", "output": "⠙⠑⠉⠇â â â â žâ •â —â ½" }, { "input": "declaration", "output": "⠙⠑⠉⠇⠜â â °â " }, { "input": "declarations", "output": "⠙⠑⠉⠇⠜â â °â â Ž" }, { "input": "declarative", "output": "⠙⠑⠉⠇⠜â â žâ Šâ §â ‘" }, { "input": "declare", "output": "⠙⠉⠇" }, { "input": "declared", "output": "⠙⠉⠇⠙" }, { "input": "declares", "output": "⠙⠉⠇⠎" }, { "input": "declaring", "output": "⠙⠉⠇⠛" }, { "input": "declassified", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "declassifies", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "declassify", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â ½" }, { "input": "declassifying", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â ½â ¬" }, { "input": "declension", "output": "⠙⠑⠉⠇⠢⠨â " }, { "input": "declensions", "output": "⠙⠑⠉⠇⠢⠨â â Ž" }, { "input": "declination", "output": "⠙⠑⠉⠇⠔â â °â " }, { "input": "decline", "output": "⠙⠑⠉⠇⠔⠑" }, { "input": "declined", "output": "⠙⠑⠉⠇⠔⠫" }, { "input": "declines", "output": "⠙⠑⠉⠇⠔⠑⠎" }, { "input": "declining", "output": "⠙⠑⠉⠇⠔⠬" }, { "input": "declivities", "output": "⠙⠑⠉⠇⠊⠧⠊⠞⠊⠑⠎" }, { "input": "declivity", "output": "⠙⠑⠉⠇⠊⠧⠰⠽" }, { "input": "decode", "output": "⠙⠑⠉⠕⠙⠑" }, { "input": "decoded", "output": "⠙⠑⠉⠕⠙⠫" }, { "input": "decoder", "output": "⠙⠑⠉⠕⠙⠻" }, { "input": "decodes", "output": "⠙⠑⠉⠕⠙⠑⠎" }, { "input": "decoding", "output": "⠙⠑⠉⠕⠙⠬" }, { "input": "decolonization", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ â °â " }, { "input": "decolonize", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ ‘" }, { "input": "decolonized", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ «" }, { "input": "decolonizes", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ ‘â Ž" }, { "input": "decolonizing", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ ¬" }, { "input": "decommission", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â " }, { "input": "decommissioned", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â â «" }, { "input": "decommissioning", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â â ¬" }, { "input": "decommissions", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â â Ž" }, { "input": "decompose", "output": "⠙⠑⠉⠕â â â •â Žâ ‘" }, { "input": "decomposed", "output": "⠙⠑⠉⠕â â â •â Žâ «" }, { "input": "decomposes", "output": "⠙⠑⠉⠕â â â •â Žâ ‘â Ž" }, { "input": "decomposing", "output": "⠙⠑⠉⠕â â â •â Žâ ¬" }, { "input": "decomposition", "output": "⠙⠑⠉⠕â â â •â Žâ Šâ °â " }, { "input": "decompress", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Ž" }, { "input": "decompressed", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Žâ «" }, { "input": "decompresses", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "decompressing", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Žâ ¬" }, { "input": "decompression", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ ¨â " }, { "input": "decongestant", "output": "⠙⠑⠉⠰⠛⠑⠌â â â ž" }, { "input": "decongestants", "output": "⠙⠑⠉⠰⠛⠑⠌â â â žâ Ž" }, { "input": "deconstruction", "output": "⠙⠑⠉⠕â â Œâ —⠥⠉⠰â " }, { "input": "deconstructions", "output": "⠙⠑⠉⠕â â Œâ —⠥⠉⠰â â Ž" }, { "input": "decontaminate", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ ‘" }, { "input": "decontaminated", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ «" }, { "input": "decontaminates", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ ‘â Ž" }, { "input": "decontaminating", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ ¬" }, { "input": "decontamination", "output": "⠙⠑⠉⠕â â žâ â â ”â â °â " }, { "input": "decor", "output": "⠙⠑⠉⠕⠗" }, { "input": "decorate", "output": "⠙⠑⠉⠕⠗â â žâ ‘" }, { "input": "decorated", "output": "⠙⠑⠉⠕⠗â â žâ «" }, { "input": "decorates", "output": "⠙⠑⠉⠕⠗â â žâ ‘â Ž" }, { "input": "decorating", "output": "⠙⠑⠉⠕⠗â â žâ ¬" }, { "input": "decoration", "output": "⠙⠑⠉⠕⠗â â °â " }, { "input": "decorations", "output": "⠙⠑⠉⠕⠗â â °â â Ž" }, { "input": "decorative", "output": "⠙⠑⠉⠕⠗â â žâ Šâ §â ‘" }, { "input": "decorator", "output": "⠙⠑⠉⠕⠗â â žâ •â —" }, { "input": "decorators", "output": "⠙⠑⠉⠕⠗â â žâ •â —â Ž" }, { "input": "decorous", "output": "⠙⠑⠉⠕⠗⠳⠎" }, { "input": "decorously", "output": "⠙⠑⠉⠕⠗⠳⠎⠇⠽" }, { "input": "decors", "output": "⠙⠑⠉⠕⠗⠎" }, { "input": "decorum", "output": "⠙⠑⠉⠕⠗⠥â " }, { "input": "decoy", "output": "⠙⠑⠉⠕⠽" }, { "input": "decoyed", "output": "⠙⠑⠉⠕⠽⠫" }, { "input": "decoying", "output": "⠙⠑⠉⠕⠽⠬" }, { "input": "decoys", "output": "⠙⠑⠉⠕⠽⠎" }, { "input": "decrease", "output": "⠙⠑⠉⠗⠂⠎⠑" }, { "input": "decreased", "output": "⠙⠑⠉⠗⠂⠎⠫" }, { "input": "decreases", "output": "⠙⠑⠉⠗⠂⠎⠑⠎" }, { "input": "decreasing", "output": "⠙⠑⠉⠗⠂⠎⠬" }, { "input": "decree", "output": "⠙⠑⠉⠗⠑⠑" }, { "input": "decreed", "output": "⠙⠑⠉⠗⠑⠫" }, { "input": "decreeing", "output": "⠙⠑⠉⠗⠑⠑⠬" }, { "input": "decrees", "output": "⠙⠑⠉⠗⠑⠑⠎" }, { "input": "decremented", "output": "⠙⠑⠉⠗⠑⠰⠞⠫" }, { "input": "decrements", "output": "⠙⠑⠉⠗⠑⠰⠞⠎" }, { "input": "decrepit", "output": "⠙⠑⠉⠗⠑â â Šâ ž" }, { "input": "decrepitude", "output": "⠙⠑⠉⠗⠑â â Šâ žâ ¥â ™â ‘" }, { "input": "decrescendi", "output": "⠙⠑⠉⠗⠑⠎⠉⠢⠙⠊" }, { "input": "decrescendo", "output": "⠙⠑⠉⠗⠑⠎⠉⠢⠙⠕" }, { "input": "decrescendos", "output": "⠙⠑⠉⠗⠑⠎⠉⠢⠙⠕⠎" }, { "input": "decried", "output": "⠙⠑⠉⠗⠊⠫" }, { "input": "decries", "output": "⠙⠑⠉⠗⠊⠑⠎" }, { "input": "decriminalization", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ â °â " }, { "input": "decriminalize", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ ‘" }, { "input": "decriminalized", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ «" }, { "input": "decriminalizes", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ ‘â Ž" }, { "input": "decriminalizing", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ ¬" }, { "input": "decry", "output": "⠙⠑⠉⠗⠽" }, { "input": "decrying", "output": "⠙⠑⠉⠗⠽⠬" }, { "input": "dedicate", "output": "⠙⠫⠊⠉â â žâ ‘" }, { "input": "dedicated", "output": "⠙⠫⠊⠉â â žâ «" }, { "input": "dedicates", "output": "⠙⠫⠊⠉â â žâ ‘â Ž" }, { "input": "dedicating", "output": "⠙⠫⠊⠉â â žâ ¬" }, { "input": "dedication", "output": "⠙⠫⠊⠉â â °â " }, { "input": "dedications", "output": "⠙⠫⠊⠉â â °â â Ž" }, { "input": "deduce", "output": "⠙⠫⠥⠉⠑" }, { "input": "deduced", "output": "⠙⠫⠥⠉⠫" }, { "input": "deduces", "output": "⠙⠫⠥⠉⠑⠎" }, { "input": "deducible", "output": "⠙⠫⠥⠉⠊⠃⠇⠑" }, { "input": "deducing", "output": "⠙⠫⠥⠉⠬" }, { "input": "deduct", "output": "⠙⠫⠥⠉⠞" }, { "input": "deducted", "output": "⠙⠫⠥⠉⠞⠫" }, { "input": "deductible", "output": "⠙⠫⠥⠉⠞⠊⠃⠇⠑" }, { "input": "deductibles", "output": "⠙⠫⠥⠉⠞⠊⠃⠇⠑⠎" }, { "input": "deducting", "output": "⠙⠫⠥⠉⠞⠬" }, { "input": "deduction", "output": "⠙⠫⠥⠉⠰â " }, { "input": "deductions", "output": "⠙⠫⠥⠉⠰â â Ž" }, { "input": "deductive", "output": "⠙⠫⠥⠉⠞⠊⠧⠑" }, { "input": "deducts", "output": "⠙⠫⠥⠉⠞⠎" }, { "input": "deed", "output": "⠙⠑⠫" }, { "input": "deeded", "output": "⠙⠑⠫⠫" }, { "input": "deeding", "output": "⠙⠑⠫⠬" }, { "input": "deeds", "output": "⠙⠑⠫⠎" }, { "input": "deejay", "output": "⠙⠑⠑⠚â â ½" }, { "input": "deejays", "output": "⠙⠑⠑⠚â â ½â Ž" }, { "input": "deem", "output": "⠙⠑⠑â " }, { "input": "deemed", "output": "⠙⠑⠑â â «" }, { "input": "deeming", "output": "⠙⠑⠑â â ¬" }, { "input": "deems", "output": "⠙⠑⠑â â Ž" }, { "input": "deep", "output": "⠙⠑⠑â " }, { "input": "deepen", "output": "⠙⠑⠑â â ¢" }, { "input": "deepened", "output": "⠙⠑⠑â â ¢â «" }, { "input": "deepening", "output": "⠙⠑⠑â â ¢â ¬" }, { "input": "deepens", "output": "⠙⠑⠑â â ¢â Ž" }, { "input": "deeper", "output": "⠙⠑⠑â â »" }, { "input": "deepest", "output": "⠙⠑⠑â â ‘â Œ" }, { "input": "deeply", "output": "⠙⠑⠑â â ‡â ½" }, { "input": "deepness", "output": "⠙⠑⠑â â °â Ž" }, { "input": "deeps", "output": "⠙⠑⠑â â Ž" }, { "input": "deer", "output": "⠙⠑⠻" }, { "input": "deers", "output": "⠙⠑⠻⠎" }, { "input": "deerskin", "output": "⠙⠑⠻⠎⠅⠔" }, { "input": "deescalate", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ ‘" }, { "input": "deescalated", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ «" }, { "input": "deescalates", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ ‘â Ž" }, { "input": "deescalating", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ ¬" }, { "input": "deface", "output": "⠙⠑⠋â â ‰â ‘" }, { "input": "defaced", "output": "⠙⠑⠋â â ‰â «" }, { "input": "defacement", "output": "⠙⠑⠋â â ‰â ‘â °â ž" }, { "input": "defaces", "output": "⠙⠑⠋â â ‰â ‘â Ž" }, { "input": "defacing", "output": "⠙⠑⠋â â ‰â ¬" }, { "input": "defamation", "output": "⠙⠑⠋â â â â °â " }, { "input": "defamatory", "output": "⠙⠑⠋â â â â žâ •â —â ½" }, { "input": "defame", "output": "⠙⠑⠋â â â ‘" }, { "input": "defamed", "output": "⠙⠑⠋â â â «" }, { "input": "defames", "output": "⠙⠑⠋â â â ‘â Ž" }, { "input": "defaming", "output": "⠙⠑⠋â â â ¬" }, { "input": "default", "output": "⠙⠑⠋â â ¥â ‡â ž" }, { "input": "defaulted", "output": "⠙⠑⠋â â ¥â ‡â žâ «" }, { "input": "defaulter", "output": "⠙⠑⠋â â ¥â ‡â žâ »" }, { "input": "defaulters", "output": "⠙⠑⠋â â ¥â ‡â žâ »â Ž" }, { "input": "defaulting", "output": "⠙⠑⠋â â ¥â ‡â žâ ¬" }, { "input": "defaults", "output": "⠙⠑⠋â â ¥â ‡â žâ Ž" }, { "input": "defeat", "output": "⠙⠑⠋⠂⠞" }, { "input": "defeated", "output": "⠙⠑⠋⠂⠞⠫" }, { "input": "defeating", "output": "⠙⠑⠋⠂⠞⠬" }, { "input": "defeatism", "output": "⠙⠑⠋⠂⠞⠊⠎â " }, { "input": "defeatist", "output": "⠙⠑⠋⠂⠞⠊⠌" }, { "input": "defeatists", "output": "⠙⠑⠋⠂⠞⠊⠌⠎" }, { "input": "defeats", "output": "⠙⠑⠋⠂⠞⠎" }, { "input": "defecate", "output": "⠙⠑⠋⠑⠉â â žâ ‘" }, { "input": "defecated", "output": "⠙⠑⠋⠑⠉â â žâ «" }, { "input": "defecates", "output": "⠙⠑⠋⠑⠉â â žâ ‘â Ž" }, { "input": "defecating", "output": "⠙⠑⠋⠑⠉â â žâ ¬" }, { "input": "defecation", "output": "⠙⠑⠋⠑⠉â â °â " }, { "input": "defect", "output": "⠙⠑⠋⠑⠉⠞" }, { "input": "defected", "output": "⠙⠑⠋⠑⠉⠞⠫" }, { "input": "defecting", "output": "⠙⠑⠋⠑⠉⠞⠬" }, { "input": "defection", "output": "⠙⠑⠋⠑⠉⠰â " }, { "input": "defections", "output": "⠙⠑⠋⠑⠉⠰â â Ž" }, { "input": "defective", "output": "⠙⠑⠋⠑⠉⠞⠊⠧⠑" }, { "input": "defectives", "output": "⠙⠑⠋⠑⠉⠞⠊⠧⠑⠎" }, { "input": "defector", "output": "⠙⠑⠋⠑⠉⠞⠕⠗" }, { "input": "defectors", "output": "⠙⠑⠋⠑⠉⠞⠕⠗⠎" }, { "input": "defects", "output": "⠙⠑⠋⠑⠉⠞⠎" }, { "input": "defend", "output": "⠙⠑⠋⠢⠙" }, { "input": "defendant", "output": "⠙⠑⠋⠢⠙â â â ž" }, { "input": "defendants", "output": "⠙⠑⠋⠢⠙â â â žâ Ž" }, { "input": "defended", "output": "⠙⠑⠋⠢⠙⠫" }, { "input": "defender", "output": "⠙⠑⠋⠢⠙⠻" }, { "input": "defenders", "output": "⠙⠑⠋⠢⠙⠻⠎" }, { "input": "defending", "output": "⠙⠑⠋⠢⠙⠬" }, { "input": "defends", "output": "⠙⠑⠋⠢⠙⠎" }, { "input": "defense", "output": "⠙⠑⠋⠢⠎⠑" }, { "input": "defensed", "output": "⠙⠑⠋⠢⠎⠫" }, { "input": "defenseless", "output": "⠙⠑⠋⠢⠎⠑⠨⠎" }, { "input": "defenses", "output": "⠙⠑⠋⠢⠎⠑⠎" }, { "input": "defensible", "output": "⠙⠑⠋⠢⠎⠊⠃⠇⠑" }, { "input": "defensing", "output": "⠙⠑⠋⠢⠎⠬" }, { "input": "defensive", "output": "⠙⠑⠋⠢⠎⠊⠧⠑" }, { "input": "defensively", "output": "⠙⠑⠋⠢⠎⠊⠧⠑⠇⠽" }, { "input": "defensiveness", "output": "⠙⠑⠋⠢⠎⠊⠧⠑⠰⠎" }, { "input": "defer", "output": "⠙⠑⠋⠻" }, { "input": "deference", "output": "⠙⠑⠋⠻⠰⠑" }, { "input": "deferential", "output": "⠙⠑⠋⠻⠢⠞⠊â â ‡" }, { "input": "deferentially", "output": "⠙⠑⠋⠻⠢⠞⠊â â ‡â ‡â ½" }, { "input": "deferment", "output": "⠙⠑⠋⠻⠰⠞" }, { "input": "deferments", "output": "⠙⠑⠋⠻⠰⠞⠎" }, { "input": "deferred", "output": "⠙⠑⠋⠻⠗⠫" }, { "input": "deferring", "output": "⠙⠑⠋⠻⠗⠬" }, { "input": "defers", "output": "⠙⠑⠋⠻⠎" }, { "input": "defiance", "output": "⠙⠑⠋⠊⠨⠑" }, { "input": "defiant", "output": "⠙⠑⠋⠊â â â ž" }, { "input": "defiantly", "output": "⠙⠑⠋⠊â â â žâ ‡â ½" }, { "input": "deficiencies", "output": "⠙⠑⠋⠊⠉⠊⠢⠉⠊⠑⠎" }, { "input": "deficiency", "output": "⠙⠑⠋⠊⠉⠊⠢⠉⠽" }, { "input": "deficient", "output": "⠙⠑⠋⠊⠉⠊⠢⠞" }, { "input": "deficit", "output": "⠙⠑⠋⠊⠉⠊⠞" }, { "input": "deficits", "output": "⠙⠑⠋⠊⠉⠊⠞⠎" }, { "input": "defied", "output": "⠙⠑⠋⠊⠫" }, { "input": "defies", "output": "⠙⠑⠋⠊⠑⠎" }, { "input": "defile", "output": "⠙⠑⠋⠊⠇⠑" }, { "input": "defiled", "output": "⠙⠑⠋⠊⠇⠫" }, { "input": "defilement", "output": "⠙⠑⠋⠊⠇⠑⠰⠞" }, { "input": "defiles", "output": "⠙⠑⠋⠊⠇⠑⠎" }, { "input": "defiling", "output": "⠙⠑⠋⠊⠇⠬" }, { "input": "definable", "output": "⠙⠑⠋⠔â â ƒâ ‡â ‘" }, { "input": "define", "output": "⠙⠑⠋⠔⠑" }, { "input": "defined", "output": "⠙⠑⠋⠔⠫" }, { "input": "definer", "output": "⠙⠑⠋⠔⠻" }, { "input": "definers", "output": "⠙⠑⠋⠔⠻⠎" }, { "input": "defines", "output": "⠙⠑⠋⠔⠑⠎" }, { "input": "defining", "output": "⠙⠑⠋⠔⠬" }, { "input": "definite", "output": "⠙⠑⠋⠔⠊⠞⠑" }, { "input": "definitely", "output": "⠙⠑⠋⠔⠊⠞⠑⠇⠽" }, { "input": "definiteness", "output": "⠙⠑⠋⠔⠊⠞⠑⠰⠎" }, { "input": "definition", "output": "⠙⠑⠋⠔⠊⠰â " }, { "input": "definitions", "output": "⠙⠑⠋⠔⠊⠰â â Ž" }, { "input": "definitive", "output": "⠙⠑⠋⠔⠊⠞⠊⠧⠑" }, { "input": "definitively", "output": "⠙⠑⠋⠔⠊⠞⠊⠧⠑⠇⠽" }, { "input": "deflate", "output": "⠙⠑⠋⠇â â žâ ‘" }, { "input": "deflated", "output": "⠙⠑⠋⠇â â žâ «" }, { "input": "deflates", "output": "⠙⠑⠋⠇â â žâ ‘â Ž" }, { "input": "deflating", "output": "⠙⠑⠋⠇â â žâ ¬" }, { "input": "deflation", "output": "⠙⠑⠋⠇â â °â " }, { "input": "deflect", "output": "⠙⠑⠋⠇⠑⠉⠞" }, { "input": "deflected", "output": "⠙⠑⠋⠇⠑⠉⠞⠫" }, { "input": "deflecting", "output": "⠙⠑⠋⠇⠑⠉⠞⠬" }, { "input": "deflection", "output": "⠙⠑⠋⠇⠑⠉⠰â " }, { "input": "deflections", "output": "⠙⠑⠋⠇⠑⠉⠰â â Ž" }, { "input": "deflector", "output": "⠙⠑⠋⠇⠑⠉⠞⠕⠗" }, { "input": "deflectors", "output": "⠙⠑⠋⠇⠑⠉⠞⠕⠗⠎" }, { "input": "deflects", "output": "⠙⠑⠋⠇⠑⠉⠞⠎" }, { "input": "defogger", "output": "⠙⠑⠋⠕⠶⠻" }, { "input": "defoggers", "output": "⠙⠑⠋⠕⠶⠻⠎" }, { "input": "defoliant", "output": "⠙⠑⠋⠕⠇⠊â â â ž" }, { "input": "defoliants", "output": "⠙⠑⠋⠕⠇⠊â â â žâ Ž" }, { "input": "defoliate", "output": "⠙⠑⠋⠕⠇⠊â â žâ ‘" }, { "input": "defoliated", "output": "⠙⠑⠋⠕⠇⠊â â žâ «" }, { "input": "defoliates", "output": "⠙⠑⠋⠕⠇⠊â â žâ ‘â Ž" }, { "input": "defoliating", "output": "⠙⠑⠋⠕⠇⠊â â žâ ¬" }, { "input": "defoliation", "output": "⠙⠑⠋⠕⠇⠊â â °â " }, { "input": "deforest", "output": "⠙⠑⠿⠑⠌" }, { "input": "deforestation", "output": "⠙⠑⠿⠑⠌â â °â " }, { "input": "deforested", "output": "⠙⠑⠿⠑⠌⠫" }, { "input": "deforesting", "output": "⠙⠑⠿⠑⠌⠬" }, { "input": "deforests", "output": "⠙⠑⠿⠑⠌⠎" }, { "input": "deform", "output": "⠙⠑⠿â " }, { "input": "deformation", "output": "⠙⠑⠿â â â °â " }, { "input": "deformations", "output": "⠙⠑⠿â â â °â â Ž" }, { "input": "deformed", "output": "⠙⠑⠿â â «" }, { "input": "deforming", "output": "⠙⠑⠿â â ¬" }, { "input": "deformities", "output": "⠙⠑⠿â â Šâ žâ Šâ ‘â Ž" }, { "input": "deformity", "output": "⠙⠑⠿â â °â ½" }, { "input": "deforms", "output": "⠙⠑⠿â â Ž" }, { "input": "defraud", "output": "⠙⠑⠋⠗â â ¥â ™" }, { "input": "defrauded", "output": "⠙⠑⠋⠗â â ¥â ™â «" }, { "input": "defrauding", "output": "⠙⠑⠋⠗â â ¥â ™â ¬" }, { "input": "defrauds", "output": "⠙⠑⠋⠗â â ¥â ™â Ž" }, { "input": "defray", "output": "⠙⠑⠋⠗â â ½" }, { "input": "defrayal", "output": "⠙⠑⠋⠗â â ½â â ‡" }, { "input": "defrayed", "output": "⠙⠑⠋⠗â â ½â «" }, { "input": "defraying", "output": "⠙⠑⠋⠗â â ½â ¬" }, { "input": "defrays", "output": "⠙⠑⠋⠗â â ½â Ž" }, { "input": "defrost", "output": "⠙⠑⠋⠗⠕⠌" }, { "input": "defrosted", "output": "⠙⠑⠋⠗⠕⠌⠫" }, { "input": "defroster", "output": "⠙⠑⠋⠗⠕⠌⠻" }, { "input": "defrosters", "output": "⠙⠑⠋⠗⠕⠌⠻⠎" }, { "input": "defrosting", "output": "⠙⠑⠋⠗⠕⠌⠬" }, { "input": "defrosts", "output": "⠙⠑⠋⠗⠕⠌⠎" }, { "input": "deft", "output": "⠙⠑⠋⠞" }, { "input": "defter", "output": "⠙⠑⠋⠞⠻" }, { "input": "deftest", "output": "⠙⠑⠋⠞⠑⠌" }, { "input": "deftly", "output": "⠙⠑⠋⠞⠇⠽" }, { "input": "deftness", "output": "⠙⠑⠋⠞⠰⠎" }, { "input": "defunct", "output": "⠙⠑⠋⠥â â ‰â ž" }, { "input": "defuse", "output": "⠙⠑⠋⠥⠎⠑" }, { "input": "defused", "output": "⠙⠑⠋⠥⠎⠫" }, { "input": "defuses", "output": "⠙⠑⠋⠥⠎⠑⠎" }, { "input": "defusing", "output": "⠙⠑⠋⠥⠎⠬" }, { "input": "defy", "output": "⠙⠑⠋⠽" }, { "input": "defying", "output": "⠙⠑⠋⠽⠬" }, { "input": "degeneracy", "output": "⠙⠑⠛⠢⠻â â ‰â ½" }, { "input": "degenerate", "output": "⠙⠑⠛⠢⠻â â žâ ‘" }, { "input": "degenerated", "output": "⠙⠑⠛⠢⠻â â žâ «" }, { "input": "degenerates", "output": "⠙⠑⠛⠢⠻â â žâ ‘â Ž" }, { "input": "degenerating", "output": "⠙⠑⠛⠢⠻â â žâ ¬" }, { "input": "degeneration", "output": "⠙⠑⠛⠢⠻â â °â " }, { "input": "degenerative", "output": "⠙⠑⠛⠢⠻â â žâ Šâ §â ‘" }, { "input": "degradation", "output": "⠙⠑⠛⠗â â ™â â °â " }, { "input": "degrade", "output": "⠙⠑⠛⠗â â ™â ‘" }, { "input": "degraded", "output": "⠙⠑⠛⠗â â ™â «" }, { "input": "degrades", "output": "⠙⠑⠛⠗â â ™â ‘â Ž" }, { "input": "degrading", "output": "⠙⠑⠛⠗â â ™â ¬" }, { "input": "degree", "output": "⠙⠑⠛⠗⠑⠑" }, { "input": "degrees", "output": "⠙⠑⠛⠗⠑⠑⠎" }, { "input": "dehumanization", "output": "⠙⠑⠓⠥â â â â Šâ µâ â °â " }, { "input": "dehumanize", "output": "⠙⠑⠓⠥â â â â Šâ µâ ‘" }, { "input": "dehumanized", "output": "⠙⠑⠓⠥â â â â Šâ µâ «" }, { "input": "dehumanizes", "output": "⠙⠑⠓⠥â â â â Šâ µâ ‘â Ž" }, { "input": "dehumanizing", "output": "⠙⠑⠓⠥â â â â Šâ µâ ¬" }, { "input": "dehumidified", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ «" }, { "input": "dehumidifier", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ »" }, { "input": "dehumidifiers", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ »â Ž" }, { "input": "dehumidifies", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ ‘â Ž" }, { "input": "dehumidify", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â ½" }, { "input": "dehumidifying", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â ½â ¬" }, { "input": "dehydrate", "output": "⠙⠑⠓⠽⠙⠗â â žâ ‘" }, { "input": "dehydrated", "output": "⠙⠑⠓⠽⠙⠗â â žâ «" }, { "input": "dehydrates", "output": "⠙⠑⠓⠽⠙⠗â â žâ ‘â Ž" }, { "input": "dehydrating", "output": "⠙⠑⠓⠽⠙⠗â â žâ ¬" }, { "input": "dehydration", "output": "⠙⠑⠓⠽⠙⠗â â °â " }, { "input": "deice", "output": "⠙⠑⠊⠉⠑" }, { "input": "deiced", "output": "⠙⠑⠊⠉⠫" }, { "input": "deicer", "output": "⠙⠑⠊⠉⠻" }, { "input": "deicers", "output": "⠙⠑⠊⠉⠻⠎" }, { "input": "deices", "output": "⠙⠑⠊⠉⠑⠎" }, { "input": "deicing", "output": "⠙⠑⠊⠉⠬" }, { "input": "deification", "output": "⠙⠑⠊⠋⠊⠉â â °â " }, { "input": "deified", "output": "⠙⠑⠊⠋⠊⠫" }, { "input": "deifies", "output": "⠙⠑⠊⠋⠊⠑⠎" }, { "input": "deify", "output": "⠙⠑⠊⠋⠽" }, { "input": "deifying", "output": "⠙⠑⠊⠋⠽⠬" }, { "input": "deign", "output": "⠙⠑⠊⠛â " }, { "input": "deigned", "output": "⠙⠑⠊⠛â â «" }, { "input": "deigning", "output": "⠙⠑⠊⠛â â ¬" }, { "input": "deigns", "output": "⠙⠑⠊⠛â â Ž" }, { "input": "deism", "output": "⠙⠑⠊⠎â " }, { "input": "deities", "output": "⠙⠑⠊⠞⠊⠑⠎" }, { "input": "deity", "output": "⠙⠑⠰⠽" }, { "input": "deject", "output": "⠙⠑⠚⠑⠉⠞" }, { "input": "dejected", "output": "⠙⠑⠚⠑⠉⠞⠫" }, { "input": "dejectedly", "output": "⠙⠑⠚⠑⠉⠞⠫⠇⠽" }, { "input": "dejecting", "output": "⠙⠑⠚⠑⠉⠞⠬" }, { "input": "dejection", "output": "⠙⠑⠚⠑⠉⠰â " }, { "input": "dejects", "output": "⠙⠑⠚⠑⠉⠞⠎" }, { "input": "delay", "output": "⠙⠑⠇â â ½" }, { "input": "delayed", "output": "⠙⠑⠇â â ½â «" }, { "input": "delaying", "output": "⠙⠑⠇â â ½â ¬" }, { "input": "delays", "output": "⠙⠑⠇â â ½â Ž" }, { "input": "delectable", "output": "⠙⠑⠇⠑⠉⠞â â ƒâ ‡â ‘" }, { "input": "delectation", "output": "⠙⠑⠇⠑⠉⠞â â °â " }, { "input": "delegate", "output": "⠙⠑⠇⠑⠛â â žâ ‘" }, { "input": "delegated", "output": "⠙⠑⠇⠑⠛â â žâ «" }, { "input": "delegates", "output": "⠙⠑⠇⠑⠛â â žâ ‘â Ž" }, { "input": "delegating", "output": "⠙⠑⠇⠑⠛â â žâ ¬" }, { "input": "delegation", "output": "⠙⠑⠇⠑⠛â â °â " }, { "input": "delegations", "output": "⠙⠑⠇⠑⠛â â °â â Ž" }, { "input": "delete", "output": "⠙⠑⠇⠑⠞⠑" }, { "input": "deleted", "output": "⠙⠑⠇⠑⠞⠫" }, { "input": "deleterious", "output": "⠙⠑⠇⠑⠞⠻⠊⠳⠎" }, { "input": "deletes", "output": "⠙⠑⠇⠑⠞⠑⠎" }, { "input": "deleting", "output": "⠙⠑⠇⠑⠞⠬" }, { "input": "deletion", "output": "⠙⠑⠇⠑⠰â " }, { "input": "deletions", "output": "⠙⠑⠇⠑⠰â â Ž" }, { "input": "deli", "output": "⠙⠑⠇⠊" }, { "input": "deliberate", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘" }, { "input": "deliberated", "output": "⠙⠑⠇⠊⠃⠻â â žâ «" }, { "input": "deliberately", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘⠇⠽" }, { "input": "deliberates", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘â Ž" }, { "input": "deliberating", "output": "⠙⠑⠇⠊⠃⠻â â žâ ¬" }, { "input": "deliberation", "output": "⠙⠑⠇⠊⠃⠻â â °â " }, { "input": "deliberations", "output": "⠙⠑⠇⠊⠃⠻â â °â â Ž" }, { "input": "delicacies", "output": "⠙⠑⠇⠊⠉â â ‰â Šâ ‘â Ž" }, { "input": "delicacy", "output": "⠙⠑⠇⠊⠉â â ‰â ½" }, { "input": "delicate", "output": "⠙⠑⠇⠊⠉â â žâ ‘" }, { "input": "delicately", "output": "⠙⠑⠇⠊⠉â â žâ ‘⠇⠽" }, { "input": "delicatessen", "output": "⠙⠑⠇⠊⠉â â žâ ‘â Žâ Žâ ¢" }, { "input": "delicatessens", "output": "⠙⠑⠇⠊⠉â â žâ ‘⠎⠎⠢⠎" }, { "input": "delicious", "output": "⠙⠑⠇⠊⠉⠊⠳⠎" }, { "input": "deliciously", "output": "⠙⠑⠇⠊⠉⠊⠳⠎⠇⠽" }, { "input": "deliciousness", "output": "⠙⠑⠇⠊⠉⠊⠳⠎⠰⠎" }, { "input": "delight", "output": "⠙⠑⠇⠊⠣⠞" }, { "input": "delighted", "output": "⠙⠑⠇⠊⠣⠞⠫" }, { "input": "delightful", "output": "⠙⠑⠇⠊⠣⠞⠰⠇" }, { "input": "delightfully", "output": "⠙⠑⠇⠊⠣⠞⠰⠇⠇⠽" }, { "input": "delighting", "output": "⠙⠑⠇⠊⠣⠞⠬" }, { "input": "delights", "output": "⠙⠑⠇⠊⠣⠞⠎" }, { "input": "delimit", "output": "⠙⠑⠇⠊â â Šâ ž" }, { "input": "delimited", "output": "⠙⠑⠇⠊â â Šâ žâ «" }, { "input": "delimiter", "output": "⠙⠑⠇⠊â â Šâ žâ »" }, { "input": "delimiters", "output": "⠙⠑⠇⠊â â Šâ žâ »â Ž" }, { "input": "delimiting", "output": "⠙⠑⠇⠊â â Šâ žâ ¬" }, { "input": "delimits", "output": "⠙⠑⠇⠊â â Šâ žâ Ž" }, { "input": "delineate", "output": "⠙⠑⠇⠔⠂⠞⠑" }, { "input": "delineated", "output": "⠙⠑⠇⠔⠂⠞⠫" }, { "input": "delineates", "output": "⠙⠑⠇⠔⠂⠞⠑⠎" }, { "input": "delineating", "output": "⠙⠑⠇⠔⠂⠞⠬" }, { "input": "delineation", "output": "⠙⠑⠇⠔⠂⠰â " }, { "input": "delineations", "output": "⠙⠑⠇⠔⠂⠰â â Ž" }, { "input": "delinquencies", "output": "⠙⠑⠇⠔⠟⠥⠢⠉⠊⠑⠎" }, { "input": "delinquency", "output": "⠙⠑⠇⠔⠟⠥⠢⠉⠽" }, { "input": "delinquent", "output": "⠙⠑⠇⠔⠟⠥⠢⠞" }, { "input": "delinquently", "output": "⠙⠑⠇⠔⠟⠥⠢⠞⠇⠽" }, { "input": "delinquents", "output": "⠙⠑⠇⠔⠟⠥⠢⠞⠎" }, { "input": "deliquescent", "output": "⠙⠑⠇⠊⠟⠥⠑⠎⠉⠢⠞" }, { "input": "deliria", "output": "⠙⠑⠇⠊⠗⠊â " }, { "input": "delirious", "output": "⠙⠑⠇⠊⠗⠊⠳⠎" }, { "input": "deliriously", "output": "⠙⠑⠇⠊⠗⠊⠳⠎⠇⠽" }, { "input": "delirium", "output": "⠙⠑⠇⠊⠗⠊⠥â " }, { "input": "deliriums", "output": "⠙⠑⠇⠊⠗⠊⠥â â Ž" }, { "input": "delis", "output": "⠙⠑⠇⠊⠎" }, { "input": "deliver", "output": "⠙⠑⠇⠊⠧⠻" }, { "input": "deliverance", "output": "⠙⠑⠇⠊⠧⠻⠨⠑" }, { "input": "delivered", "output": "⠙⠑⠇⠊⠧⠻⠫" }, { "input": "deliverer", "output": "⠙⠑⠇⠊⠧⠻⠻" }, { "input": "deliverers", "output": "⠙⠑⠇⠊⠧⠻⠻⠎" }, { "input": "deliveries", "output": "⠙⠑⠇⠊⠧⠻⠊⠑⠎" }, { "input": "delivering", "output": "⠙⠑⠇⠊⠧⠻⠬" }, { "input": "delivers", "output": "⠙⠑⠇⠊⠧⠻⠎" }, { "input": "delivery", "output": "⠙⠑⠇⠊⠧⠻⠽" }, { "input": "dell", "output": "⠙⠑⠇⠇" }, { "input": "dells", "output": "⠙⠑⠇⠇⠎" }, { "input": "delphinia", "output": "⠙⠑⠇â â “⠔⠊â " }, { "input": "delphinium", "output": "⠙⠑⠇â â “⠔⠊⠥â " }, { "input": "delphiniums", "output": "⠙⠑⠇â â “⠔⠊⠥â â Ž" }, { "input": "delta", "output": "⠙⠑⠇⠞â " }, { "input": "deltas", "output": "⠙⠑⠇⠞â â Ž" }, { "input": "delude", "output": "⠙⠑⠇⠥⠙⠑" }, { "input": "deluded", "output": "⠙⠑⠇⠥⠙⠫" }, { "input": "deludes", "output": "⠙⠑⠇⠥⠙⠑⠎" }, { "input": "deluding", "output": "⠙⠑⠇⠥⠙⠬" }, { "input": "deluge", "output": "⠙⠑⠇⠥⠛⠑" }, { "input": "deluged", "output": "⠙⠑⠇⠥⠛⠫" }, { "input": "deluges", "output": "⠙⠑⠇⠥⠛⠑⠎" }, { "input": "deluging", "output": "⠙⠑⠇⠥⠛⠬" }, { "input": "delusion", "output": "⠙⠑⠇⠥⠨â " }, { "input": "delusions", "output": "⠙⠑⠇⠥⠨â â Ž" }, { "input": "delusive", "output": "⠙⠑⠇⠥⠎⠊⠧⠑" }, { "input": "deluxe", "output": "⠙⠑⠇⠥⠭⠑" }, { "input": "delve", "output": "⠙⠑⠇⠧⠑" }, { "input": "delved", "output": "⠙⠑⠇⠧⠫" }, { "input": "delves", "output": "⠙⠑⠇⠧⠑⠎" }, { "input": "delving", "output": "⠙⠑⠇⠧⠬" }, { "input": "demagnetization", "output": "⠙⠑â â â ›â â ‘â žâ Šâ µâ â °â " }, { "input": "demagnetize", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠑" }, { "input": "demagnetized", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠫" }, { "input": "demagnetizes", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠑⠎" }, { "input": "demagnetizing", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠬" }, { "input": "demagog", "output": "⠙⠑â â â ›â •â ›" }, { "input": "demagogic", "output": "⠙⠑â â â ›â •⠛⠊⠉" }, { "input": "demagogry", "output": "⠙⠑â â â ›â •⠛⠗⠽" }, { "input": "demagogs", "output": "⠙⠑â â â ›â •⠛⠎" }, { "input": "demagogue", "output": "⠙⠑â â â ›â •⠛⠥⠑" }, { "input": "demagoguery", "output": "⠙⠑â â â ›â •⠛⠥⠻⠽" }, { "input": "demagogues", "output": "⠙⠑â â â ›â •⠛⠥⠑⠎" }, { "input": "demagogy", "output": "⠙⠑â â â ›â •⠛⠽" }, { "input": "demand", "output": "⠙⠑â â ¯" }, { "input": "demanded", "output": "⠙⠑â â ¯â «" }, { "input": "demanding", "output": "⠙⠑â â ¯â ¬" }, { "input": "demands", "output": "⠙⠑â â ¯â Ž" }, { "input": "demarcate", "output": "⠙⠑â â œâ ‰â â žâ ‘" }, { "input": "demarcated", "output": "⠙⠑â â œâ ‰â â žâ «" }, { "input": "demarcates", "output": "⠙⠑â â œâ ‰â â žâ ‘â Ž" }, { "input": "demarcating", "output": "⠙⠑â â œâ ‰â â žâ ¬" }, { "input": "demarcation", "output": "⠙⠑â â œâ ‰â â °â " }, { "input": "demean", "output": "⠙⠑â â ‚â " }, { "input": "demeaned", "output": "⠙⠑â â ‚â â «" }, { "input": "demeaning", "output": "⠙⠑â â ‚â â ¬" }, { "input": "demeanor", "output": "⠙⠑â â ‚â â •â —" }, { "input": "demeans", "output": "⠙⠑â â ‚â â Ž" }, { "input": "demented", "output": "⠙⠑⠰⠞⠫" }, { "input": "dementedly", "output": "⠙⠑⠰⠞⠫⠇⠽" }, { "input": "dementia", "output": "⠙⠑⠰⠞⠊â " }, { "input": "demerit", "output": "⠙⠑â â »â Šâ ž" }, { "input": "demerits", "output": "⠙⠑â â »â Šâ žâ Ž" }, { "input": "demesne", "output": "⠙⠑â â ‘â Žâ â ‘" }, { "input": "demesnes", "output": "⠙⠑â â ‘â Žâ â ‘â Ž" }, { "input": "demigod", "output": "⠙⠑â â Šâ ›â •â ™" }, { "input": "demigods", "output": "⠙⠑â â Šâ ›â •⠙⠎" }, { "input": "demijohn", "output": "⠙⠑â â Šâ šâ •â “â " }, { "input": "demijohns", "output": "⠙⠑â â Šâ šâ •â “â â Ž" }, { "input": "demilitarization", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ â °â " }, { "input": "demilitarize", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘" }, { "input": "demilitarized", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ «" }, { "input": "demilitarizes", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘â Ž" }, { "input": "demilitarizing", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ ¬" }, { "input": "demise", "output": "⠙⠑â â Šâ Žâ ‘" }, { "input": "demised", "output": "⠙⠑â â Šâ Žâ «" }, { "input": "demises", "output": "⠙⠑â â Šâ Žâ ‘â Ž" }, { "input": "demising", "output": "⠙⠑â â Šâ Žâ ¬" }, { "input": "demitasse", "output": "⠙⠑â â Šâ žâ â Žâ Žâ ‘" }, { "input": "demitasses", "output": "⠙⠑â â Šâ žâ â Žâ Žâ ‘â Ž" }, { "input": "demo", "output": "⠙⠑â â •" }, { "input": "demobilization", "output": "⠙⠑â â •⠃⠊⠇⠊⠵â â °â " }, { "input": "demobilize", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠑" }, { "input": "demobilized", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠫" }, { "input": "demobilizes", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠑⠎" }, { "input": "demobilizing", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠬" }, { "input": "democracies", "output": "⠙⠑â â •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "democracy", "output": "⠙⠑â â •⠉⠗â â ‰â ½" }, { "input": "democrat", "output": "⠙⠑â â •⠉⠗â â ž" }, { "input": "democratic", "output": "⠙⠑â â •⠉⠗â â žâ Šâ ‰" }, { "input": "democratically", "output": "⠙⠑â â •⠉⠗â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "democratization", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ â °â " }, { "input": "democratize", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ ‘" }, { "input": "democratized", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ «" }, { "input": "democratizes", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ ‘â Ž" }, { "input": "democratizing", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ ¬" }, { "input": "democrats", "output": "⠙⠑â â •⠉⠗â â žâ Ž" }, { "input": "demoed", "output": "⠙⠑â â •â «" }, { "input": "demographer", "output": "⠙⠑â â •⠛⠗â â â “â »" }, { "input": "demographers", "output": "⠙⠑â â •⠛⠗â â â “⠻⠎" }, { "input": "demographic", "output": "⠙⠑â â •⠛⠗â â â “â Šâ ‰" }, { "input": "demographically", "output": "⠙⠑â â •⠛⠗â â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "demographics", "output": "⠙⠑â â •⠛⠗â â â “⠊⠉⠎" }, { "input": "demography", "output": "⠙⠑â â •⠛⠗â â â “â ½" }, { "input": "demoing", "output": "⠙⠑â â •â ¬" }, { "input": "demolish", "output": "⠙⠑â â •⠇⠊⠩" }, { "input": "demolished", "output": "⠙⠑â â •⠇⠊⠩⠫" }, { "input": "demolishes", "output": "⠙⠑â â •⠇⠊⠩⠑⠎" }, { "input": "demolishing", "output": "⠙⠑â â •⠇⠊⠩⠬" }, { "input": "demolition", "output": "⠙⠑â â •⠇⠊⠰â " }, { "input": "demolitions", "output": "⠙⠑â â •⠇⠊⠰â â Ž" }, { "input": "demon", "output": "⠙⠑â â •â " }, { "input": "demoniac", "output": "⠙⠑â â •â â Šâ â ‰" }, { "input": "demoniacal", "output": "⠙⠑â â •â â Šâ â ‰â â ‡" }, { "input": "demonic", "output": "⠙⠑â â •â â Šâ ‰" }, { "input": "demons", "output": "⠙⠑â â •â â Ž" }, { "input": "demonstrable", "output": "⠙⠑â â •â â Œâ —â â ƒâ ‡â ‘" }, { "input": "demonstrably", "output": "⠙⠑â â •â â Œâ —â â ƒâ ‡â ½" }, { "input": "demonstrate", "output": "⠙⠑â â •â â Œâ —â â žâ ‘" }, { "input": "demonstrated", "output": "⠙⠑â â •â â Œâ —â â žâ «" }, { "input": "demonstrates", "output": "⠙⠑â â •â â Œâ —â â žâ ‘â Ž" }, { "input": "demonstrating", "output": "⠙⠑â â •â â Œâ —â â žâ ¬" }, { "input": "demonstration", "output": "⠙⠑â â •â â Œâ —â â °â " }, { "input": "demonstrations", "output": "⠙⠑â â •â â Œâ —â â °â â Ž" }, { "input": "demonstrative", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘" }, { "input": "demonstratively", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘⠇⠽" }, { "input": "demonstratives", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘â Ž" }, { "input": "demonstrator", "output": "⠙⠑â â •â â Œâ —â â žâ •â —" }, { "input": "demonstrators", "output": "⠙⠑â â •â â Œâ —â â žâ •â —â Ž" }, { "input": "demoralization", "output": "⠙⠑â â •â —â â ‡â Šâ µâ â °â " }, { "input": "demoralize", "output": "⠙⠑â â •â —â â ‡â Šâ µâ ‘" }, { "input": "demoralized", "output": "⠙⠑â â •â —â â ‡â Šâ µâ «" }, { "input": "demoralizes", "output": "⠙⠑â â •â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "demoralizing", "output": "⠙⠑â â •â —â â ‡â Šâ µâ ¬" }, { "input": "demos", "output": "⠙⠑â â •â Ž" }, { "input": "demote", "output": "⠙⠑â â •â žâ ‘" }, { "input": "demoted", "output": "⠙⠑â â •â žâ «" }, { "input": "demotes", "output": "⠙⠑â â •â žâ ‘â Ž" }, { "input": "demoting", "output": "⠙⠑â â •â žâ ¬" }, { "input": "demotion", "output": "⠙⠑â â •â °â " }, { "input": "demotions", "output": "⠙⠑â â •â °â â Ž" }, { "input": "demount", "output": "⠙⠑â â ¨â ž" }, { "input": "demur", "output": "⠙⠑â â ¥â —" }, { "input": "demure", "output": "⠙⠑â â ¥â —â ‘" }, { "input": "demurely", "output": "⠙⠑â â ¥â —⠑⠇⠽" }, { "input": "demurer", "output": "⠙⠑â â ¥â —â »" }, { "input": "demurest", "output": "⠙⠑â â ¥â —â ‘â Œ" }, { "input": "demurred", "output": "⠙⠑â â ¥â —â —â «" }, { "input": "demurring", "output": "⠙⠑â â ¥â —â —â ¬" }, { "input": "demurs", "output": "⠙⠑â â ¥â —â Ž" }, { "input": "den", "output": "⠙⠢" }, { "input": "denature", "output": "⠙⠢â â žâ ¥â —â ‘" }, { "input": "denatured", "output": "⠙⠢â â žâ ¥â —â «" }, { "input": "denatures", "output": "⠙⠢â â žâ ¥â —â ‘â Ž" }, { "input": "denaturing", "output": "⠙⠢â â žâ ¥â —â ¬" }, { "input": "dendrite", "output": "⠙⠢⠙⠗⠊⠞⠑" }, { "input": "dendrites", "output": "⠙⠢⠙⠗⠊⠞⠑⠎" }, { "input": "denial", "output": "⠙⠢⠊â â ‡" }, { "input": "denials", "output": "⠙⠢⠊â â ‡â Ž" }, { "input": "denied", "output": "⠙⠢⠊⠫" }, { "input": "denier", "output": "⠙⠢⠊⠻" }, { "input": "deniers", "output": "⠙⠢⠊⠻⠎" }, { "input": "denies", "output": "⠙⠢⠊⠑⠎" }, { "input": "denigrate", "output": "⠙⠢⠊⠛⠗â â žâ ‘" }, { "input": "denigrated", "output": "⠙⠢⠊⠛⠗â â žâ «" }, { "input": "denigrates", "output": "⠙⠢⠊⠛⠗â â žâ ‘â Ž" }, { "input": "denigrating", "output": "⠙⠢⠊⠛⠗â â žâ ¬" }, { "input": "denigration", "output": "⠙⠢⠊⠛⠗â â °â " }, { "input": "denim", "output": "⠙⠢⠊â " }, { "input": "denims", "output": "⠙⠢⠊â â Ž" }, { "input": "denizen", "output": "⠙⠢⠊⠵⠢" }, { "input": "denizens", "output": "⠙⠢⠊⠵⠢⠎" }, { "input": "denominate", "output": "⠙⠢⠕â â ”â â žâ ‘" }, { "input": "denominated", "output": "⠙⠢⠕â â ”â â žâ «" }, { "input": "denominates", "output": "⠙⠢⠕â â ”â â žâ ‘â Ž" }, { "input": "denominating", "output": "⠙⠢⠕â â ”â â žâ ¬" }, { "input": "denomination", "output": "⠙⠢⠕â â ”â â °â " }, { "input": "denominational", "output": "⠙⠢⠕â â ”â â °â â â ‡" }, { "input": "denominations", "output": "⠙⠢⠕â â ”â â °â â Ž" }, { "input": "denominator", "output": "⠙⠢⠕â â ”â â žâ •â —" }, { "input": "denominators", "output": "⠙⠢⠕â â ”â â žâ •â —â Ž" }, { "input": "denotation", "output": "⠙⠢⠕⠞â â °â " }, { "input": "denotations", "output": "⠙⠢⠕⠞â â °â â Ž" }, { "input": "denote", "output": "⠙⠢⠕⠞⠑" }, { "input": "denoted", "output": "⠙⠢⠕⠞⠫" }, { "input": "denotes", "output": "⠙⠢⠕⠞⠑⠎" }, { "input": "denoting", "output": "⠙⠢⠕⠞⠬" }, { "input": "denouement", "output": "⠙⠢⠳⠑⠰⠞" }, { "input": "denouements", "output": "⠙⠢⠳⠑⠰⠞⠎" }, { "input": "denounce", "output": "⠙⠢⠳â â ‰â ‘" }, { "input": "denounced", "output": "⠙⠢⠳â â ‰â «" }, { "input": "denouncement", "output": "⠙⠢⠳â â ‰â ‘â °â ž" }, { "input": "denouncements", "output": "⠙⠢⠳â â ‰â ‘â °â žâ Ž" }, { "input": "denounces", "output": "⠙⠢⠳â â ‰â ‘â Ž" }, { "input": "denouncing", "output": "⠙⠢⠳â â ‰â ¬" }, { "input": "dens", "output": "⠙⠢⠎" }, { "input": "dense", "output": "⠙⠢⠎⠑" }, { "input": "densely", "output": "⠙⠢⠎⠑⠇⠽" }, { "input": "denseness", "output": "⠙⠢⠎⠑⠰⠎" }, { "input": "denser", "output": "⠙⠢⠎⠻" }, { "input": "densest", "output": "⠙⠢⠎⠑⠌" }, { "input": "densities", "output": "⠙⠢⠎⠊⠞⠊⠑⠎" }, { "input": "density", "output": "⠙⠢⠎⠰⠽" }, { "input": "dent", "output": "⠙⠢⠞" }, { "input": "dental", "output": "⠙⠢⠞â â ‡" }, { "input": "dented", "output": "⠙⠢⠞⠫" }, { "input": "dentifrice", "output": "⠙⠢⠞⠊⠋⠗⠊⠉⠑" }, { "input": "dentifrices", "output": "⠙⠢⠞⠊⠋⠗⠊⠉⠑⠎" }, { "input": "dentin", "output": "⠙⠢⠞⠔" }, { "input": "dentine", "output": "⠙⠢⠞⠔⠑" }, { "input": "denting", "output": "⠙⠢⠞⠬" }, { "input": "dentist", "output": "⠙⠢⠞⠊⠌" }, { "input": "dentistry", "output": "⠙⠢⠞⠊⠌⠗⠽" }, { "input": "dentists", "output": "⠙⠢⠞⠊⠌⠎" }, { "input": "dents", "output": "⠙⠢⠞⠎" }, { "input": "denture", "output": "⠙⠢⠞⠥⠗⠑" }, { "input": "dentures", "output": "⠙⠢⠞⠥⠗⠑⠎" }, { "input": "denude", "output": "⠙⠢⠥⠙⠑" }, { "input": "denuded", "output": "⠙⠢⠥⠙⠫" }, { "input": "denudes", "output": "⠙⠢⠥⠙⠑⠎" }, { "input": "denuding", "output": "⠙⠢⠥⠙⠬" }, { "input": "denunciation", "output": "⠙⠢⠥â â ‰â Šâ â °â " }, { "input": "denunciations", "output": "⠙⠢⠥â â ‰â Šâ â °â â Ž" }, { "input": "deny", "output": "⠙⠢⠽" }, { "input": "denying", "output": "⠙⠢⠽⠬" }, { "input": "deodorant", "output": "⠙⠑⠕⠙⠕⠗â â â ž" }, { "input": "deodorants", "output": "⠙⠑⠕⠙⠕⠗â â â žâ Ž" }, { "input": "deodorize", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠑" }, { "input": "deodorized", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠫" }, { "input": "deodorizer", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠻" }, { "input": "deodorizers", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠻⠎" }, { "input": "deodorizes", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠑⠎" }, { "input": "deodorizing", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠬" }, { "input": "depart", "output": "⠙⠑â â " }, { "input": "departed", "output": "⠙⠑â â â «" }, { "input": "departing", "output": "⠙⠑â â â ¬" }, { "input": "department", "output": "⠙⠑â â â °â ž" }, { "input": "departmental", "output": "⠙⠑â â â °â žâ â ‡" }, { "input": "departmentalize", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ ‘" }, { "input": "departmentalized", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ «" }, { "input": "departmentalizes", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "departmentalizing", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ ¬" }, { "input": "departments", "output": "⠙⠑â â â °â žâ Ž" }, { "input": "departs", "output": "⠙⠑â â â Ž" }, { "input": "departure", "output": "⠙⠑â â â ¥â —â ‘" }, { "input": "departures", "output": "⠙⠑â â â ¥â —â ‘â Ž" }, { "input": "depend", "output": "⠙⠑â â ¢â ™" }, { "input": "dependability", "output": "⠙⠑â â ¢â ™â â ƒâ Šâ ‡â °â ½" }, { "input": "dependable", "output": "⠙⠑â â ¢â ™â â ƒâ ‡â ‘" }, { "input": "dependably", "output": "⠙⠑â â ¢â ™â â ƒâ ‡â ½" }, { "input": "dependance", "output": "⠙⠑â â ¢â ™â ¨â ‘" }, { "input": "dependant", "output": "⠙⠑â â ¢â ™â â â ž" }, { "input": "dependants", "output": "⠙⠑â â ¢â ™â â â žâ Ž" }, { "input": "depended", "output": "⠙⠑â â ¢â ™â «" }, { "input": "dependence", "output": "⠙⠑â â ¢â ™â °â ‘" }, { "input": "dependencies", "output": "⠙⠑â â ¢â ™â ¢â ‰â Šâ ‘â Ž" }, { "input": "dependency", "output": "⠙⠑â â ¢â ™â ¢â ‰â ½" }, { "input": "dependent", "output": "⠙⠑â â ¢â ™â ¢â ž" }, { "input": "dependents", "output": "⠙⠑â â ¢â ™â ¢â žâ Ž" }, { "input": "depending", "output": "⠙⠑â â ¢â ™â ¬" }, { "input": "depends", "output": "⠙⠑â â ¢â ™â Ž" }, { "input": "depict", "output": "⠙⠑â â Šâ ‰â ž" }, { "input": "depicted", "output": "⠙⠑â â Šâ ‰â žâ «" }, { "input": "depicting", "output": "⠙⠑â â Šâ ‰â žâ ¬" }, { "input": "depiction", "output": "⠙⠑â â Šâ ‰â °â " }, { "input": "depictions", "output": "⠙⠑â â Šâ ‰â °â â Ž" }, { "input": "depicts", "output": "⠙⠑â â Šâ ‰â žâ Ž" }, { "input": "depilatories", "output": "⠙⠑â â Šâ ‡â â žâ •â —â Šâ ‘â Ž" }, { "input": "depilatory", "output": "⠙⠑â â Šâ ‡â â žâ •â —â ½" }, { "input": "deplane", "output": "⠙⠑â â ‡â â â ‘" }, { "input": "deplaned", "output": "⠙⠑â â ‡â â â «" }, { "input": "deplanes", "output": "⠙⠑â â ‡â â â ‘â Ž" }, { "input": "deplaning", "output": "⠙⠑â â ‡â â â ¬" }, { "input": "deplete", "output": "⠙⠑â â ‡â ‘â žâ ‘" }, { "input": "depleted", "output": "⠙⠑â â ‡â ‘â žâ «" }, { "input": "depletes", "output": "⠙⠑â â ‡â ‘â žâ ‘â Ž" }, { "input": "depleting", "output": "⠙⠑â â ‡â ‘â žâ ¬" }, { "input": "depletion", "output": "⠙⠑â â ‡â ‘â °â " }, { "input": "deplorable", "output": "⠙⠑â â ‡â •â —â â ƒâ ‡â ‘" }, { "input": "deplorably", "output": "⠙⠑â â ‡â •â —â â ƒâ ‡â ½" }, { "input": "deplore", "output": "⠙⠑â â ‡â •â —â ‘" }, { "input": "deplored", "output": "⠙⠑â â ‡â •â —â «" }, { "input": "deplores", "output": "⠙⠑â â ‡â •â —â ‘â Ž" }, { "input": "deploring", "output": "⠙⠑â â ‡â •â —â ¬" }, { "input": "deploy", "output": "⠙⠑â â ‡â •â ½" }, { "input": "deployed", "output": "⠙⠑â â ‡â •⠽⠫" }, { "input": "deploying", "output": "⠙⠑â â ‡â •⠽⠬" }, { "input": "deployment", "output": "⠙⠑â â ‡â •⠽⠰⠞" }, { "input": "deployments", "output": "⠙⠑â â ‡â •⠽⠰⠞⠎" }, { "input": "deploys", "output": "⠙⠑â â ‡â •⠽⠎" }, { "input": "depoliticize", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠑" }, { "input": "depoliticized", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠫" }, { "input": "depoliticizes", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠑⠎" }, { "input": "depoliticizing", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠬" }, { "input": "depopulate", "output": "⠙⠑â â •â â ¥â ‡â â žâ ‘" }, { "input": "depopulated", "output": "⠙⠑â â •â â ¥â ‡â â žâ «" }, { "input": "depopulates", "output": "⠙⠑â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "depopulating", "output": "⠙⠑â â •â â ¥â ‡â â žâ ¬" }, { "input": "depopulation", "output": "⠙⠑â â •â â ¥â ‡â â °â " }, { "input": "deport", "output": "⠙⠑â â •â —â ž" }, { "input": "deportation", "output": "⠙⠑â â •â —â žâ â °â " }, { "input": "deportations", "output": "⠙⠑â â •â —â žâ â °â â Ž" }, { "input": "deported", "output": "⠙⠑â â •â —â žâ «" }, { "input": "deporting", "output": "⠙⠑â â •â —â žâ ¬" }, { "input": "deportment", "output": "⠙⠑â â •â —â žâ °â ž" }, { "input": "deports", "output": "⠙⠑â â •â —â žâ Ž" }, { "input": "depose", "output": "⠙⠑â â •â Žâ ‘" }, { "input": "deposed", "output": "⠙⠑â â •â Žâ «" }, { "input": "deposes", "output": "⠙⠑â â •â Žâ ‘â Ž" }, { "input": "deposing", "output": "⠙⠑â â •â Žâ ¬" }, { "input": "deposit", "output": "⠙⠑â â •â Žâ Šâ ž" }, { "input": "deposited", "output": "⠙⠑â â •â Žâ Šâ žâ «" }, { "input": "depositing", "output": "⠙⠑â â •â Žâ Šâ žâ ¬" }, { "input": "deposition", "output": "⠙⠑â â •â Žâ Šâ °â " }, { "input": "depositions", "output": "⠙⠑â â •â Žâ Šâ °â â Ž" }, { "input": "depositor", "output": "⠙⠑â â •â Žâ Šâ žâ •â —" }, { "input": "depositories", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "depositors", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â Ž" }, { "input": "depository", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â ½" }, { "input": "deposits", "output": "⠙⠑â â •â Žâ Šâ žâ Ž" }, { "input": "depot", "output": "⠙⠑â â •â ž" }, { "input": "depots", "output": "⠙⠑â â •â žâ Ž" }, { "input": "deprave", "output": "⠙⠑â â —â â §â ‘" }, { "input": "depraved", "output": "⠙⠑â â —â â §â «" }, { "input": "depraves", "output": "⠙⠑â â —â â §â ‘â Ž" }, { "input": "depraving", "output": "⠙⠑â â —â â §â ¬" }, { "input": "depravities", "output": "⠙⠑â â —â â §â Šâ žâ Šâ ‘â Ž" }, { "input": "depravity", "output": "⠙⠑â â —â â §â °â ½" }, { "input": "deprecate", "output": "⠙⠑â â —â ‘â ‰â â žâ ‘" }, { "input": "deprecated", "output": "⠙⠑â â —â ‘â ‰â â žâ «" }, { "input": "deprecates", "output": "⠙⠑â â —â ‘â ‰â â žâ ‘â Ž" }, { "input": "deprecating", "output": "⠙⠑â â —â ‘â ‰â â žâ ¬" }, { "input": "deprecation", "output": "⠙⠑â â —â ‘â ‰â â °â " }, { "input": "deprecatory", "output": "⠙⠑â â —â ‘â ‰â â žâ •â —â ½" }, { "input": "depreciate", "output": "⠙⠑â â —⠑⠉⠊â â žâ ‘" }, { "input": "depreciated", "output": "⠙⠑â â —⠑⠉⠊â â žâ «" }, { "input": "depreciates", "output": "⠙⠑â â —⠑⠉⠊â â žâ ‘â Ž" }, { "input": "depreciating", "output": "⠙⠑â â —⠑⠉⠊â â žâ ¬" }, { "input": "depreciation", "output": "⠙⠑â â —⠑⠉⠊â â °â " }, { "input": "depredation", "output": "⠙⠑â â —â «â â °â " }, { "input": "depredations", "output": "⠙⠑â â —â «â â °â â Ž" }, { "input": "depress", "output": "⠙⠑â â —â ‘â Žâ Ž" }, { "input": "depressant", "output": "⠙⠑â â —â ‘â Žâ Žâ â â ž" }, { "input": "depressants", "output": "⠙⠑â â —â ‘â Žâ Žâ â â žâ Ž" }, { "input": "depressed", "output": "⠙⠑â â —â ‘â Žâ Žâ «" }, { "input": "depresses", "output": "⠙⠑â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "depressing", "output": "⠙⠑â â —â ‘â Žâ Žâ ¬" }, { "input": "depressingly", "output": "⠙⠑â â —⠑⠎⠎⠬⠇⠽" }, { "input": "depression", "output": "⠙⠑â â —â ‘â Žâ ¨â " }, { "input": "depressions", "output": "⠙⠑â â —â ‘â Žâ ¨â â Ž" }, { "input": "depressive", "output": "⠙⠑â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "depressives", "output": "⠙⠑â â —â ‘â Žâ Žâ Šâ §â ‘â Ž" }, { "input": "deprivation", "output": "⠙⠑â â —â Šâ §â â °â " }, { "input": "deprivations", "output": "⠙⠑â â —â Šâ §â â °â â Ž" }, { "input": "deprive", "output": "⠙⠑â â —â Šâ §â ‘" }, { "input": "deprived", "output": "⠙⠑â â —â Šâ §â «" }, { "input": "deprives", "output": "⠙⠑â â —â Šâ §â ‘â Ž" }, { "input": "depriving", "output": "⠙⠑â â —â Šâ §â ¬" }, { "input": "deprogram", "output": "⠙⠑â â —⠕⠛⠗â â " }, { "input": "deprogramed", "output": "⠙⠑â â —⠕⠛⠗â â â «" }, { "input": "deprograming", "output": "⠙⠑â â —⠕⠛⠗â â â ¬" }, { "input": "deprogrammed", "output": "⠙⠑â â —⠕⠛⠗â â â â «" }, { "input": "deprogramming", "output": "⠙⠑â â —⠕⠛⠗â â â â ¬" }, { "input": "deprograms", "output": "⠙⠑â â —⠕⠛⠗â â â Ž" }, { "input": "depth", "output": "⠙⠑â â ¹" }, { "input": "depths", "output": "⠙⠑â â ¹â Ž" }, { "input": "deputation", "output": "⠙⠑â â ¥â žâ â °â " }, { "input": "deputations", "output": "⠙⠑â â ¥â žâ â °â â Ž" }, { "input": "depute", "output": "⠙⠑â â ¥â žâ ‘" }, { "input": "deputed", "output": "⠙⠑â â ¥â žâ «" }, { "input": "deputes", "output": "⠙⠑â â ¥â žâ ‘â Ž" }, { "input": "deputies", "output": "⠙⠑â â ¥â žâ Šâ ‘â Ž" }, { "input": "deputing", "output": "⠙⠑â â ¥â žâ ¬" }, { "input": "deputize", "output": "⠙⠑â â ¥â žâ Šâ µâ ‘" }, { "input": "deputized", "output": "⠙⠑â â ¥â žâ Šâ µâ «" }, { "input": "deputizes", "output": "⠙⠑â â ¥â žâ Šâ µâ ‘â Ž" }, { "input": "deputizing", "output": "⠙⠑â â ¥â žâ Šâ µâ ¬" }, { "input": "deputy", "output": "⠙⠑â â ¥â žâ ½" }, { "input": "derail", "output": "⠙⠻â â Šâ ‡" }, { "input": "derailed", "output": "⠙⠻â â Šâ ‡â «" }, { "input": "derailing", "output": "⠙⠻â â Šâ ‡â ¬" }, { "input": "derailment", "output": "⠙⠻â â Šâ ‡â °â ž" }, { "input": "derailments", "output": "⠙⠻â â Šâ ‡â °â žâ Ž" }, { "input": "derails", "output": "⠙⠻â â Šâ ‡â Ž" }, { "input": "derange", "output": "⠙⠻â â â ›â ‘" }, { "input": "deranged", "output": "⠙⠻â â â ›â «" }, { "input": "derangement", "output": "⠙⠻â â â ›â ‘â °â ž" }, { "input": "deranges", "output": "⠙⠻â â â ›â ‘â Ž" }, { "input": "deranging", "output": "⠙⠻â â â ›â ¬" }, { "input": "derbies", "output": "⠙⠻⠃⠊⠑⠎" }, { "input": "derby", "output": "⠙⠻⠃⠽" }, { "input": "deregulate", "output": "⠙⠻⠑⠛⠥⠇â â žâ ‘" }, { "input": "deregulated", "output": "⠙⠻⠑⠛⠥⠇â â žâ «" }, { "input": "deregulates", "output": "⠙⠻⠑⠛⠥⠇â â žâ ‘â Ž" }, { "input": "deregulating", "output": "⠙⠻⠑⠛⠥⠇â â žâ ¬" }, { "input": "deregulation", "output": "⠙⠻⠑⠛⠥⠇â â °â " }, { "input": "derelict", "output": "⠙⠻⠑⠇⠊⠉⠞" }, { "input": "dereliction", "output": "⠙⠻⠑⠇⠊⠉⠰â " }, { "input": "derelicts", "output": "⠙⠻⠑⠇⠊⠉⠞⠎" }, { "input": "deride", "output": "⠙⠻⠊⠙⠑" }, { "input": "derided", "output": "⠙⠻⠊⠙⠫" }, { "input": "derides", "output": "⠙⠻⠊⠙⠑⠎" }, { "input": "deriding", "output": "⠙⠻⠊⠙⠬" }, { "input": "derision", "output": "⠙⠻⠊⠨â " }, { "input": "derisive", "output": "⠙⠻⠊⠎⠊⠧⠑" }, { "input": "derisively", "output": "⠙⠻⠊⠎⠊⠧⠑⠇⠽" }, { "input": "derisory", "output": "⠙⠻⠊⠎⠕⠗⠽" }, { "input": "derivable", "output": "⠙⠻⠊⠧â â ƒâ ‡â ‘" }, { "input": "derivation", "output": "⠙⠻⠊⠧â â °â " }, { "input": "derivations", "output": "⠙⠻⠊⠧â â °â â Ž" }, { "input": "derivative", "output": "⠙⠻⠊⠧â â žâ Šâ §â ‘" }, { "input": "derivatives", "output": "⠙⠻⠊⠧â â žâ Šâ §â ‘â Ž" }, { "input": "derive", "output": "⠙⠻⠊⠧⠑" }, { "input": "derived", "output": "⠙⠻⠊⠧⠫" }, { "input": "derives", "output": "⠙⠻⠊⠧⠑⠎" }, { "input": "deriving", "output": "⠙⠻⠊⠧⠬" }, { "input": "dermatitis", "output": "⠙⠻â â â žâ Šâ žâ Šâ Ž" }, { "input": "dermatologist", "output": "⠙⠻â â â žâ •⠇⠕⠛⠊⠌" }, { "input": "dermatologists", "output": "⠙⠻â â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "dermatology", "output": "⠙⠻â â â žâ •⠇⠕⠛⠽" }, { "input": "dermis", "output": "⠙⠻â â Šâ Ž" }, { "input": "derogate", "output": "⠙⠻⠕⠛â â žâ ‘" }, { "input": "derogated", "output": "⠙⠻⠕⠛â â žâ «" }, { "input": "derogates", "output": "⠙⠻⠕⠛â â žâ ‘â Ž" }, { "input": "derogating", "output": "⠙⠻⠕⠛â â žâ ¬" }, { "input": "derogation", "output": "⠙⠻⠕⠛â â °â " }, { "input": "derogatory", "output": "⠙⠻⠕⠛â â žâ •â —â ½" }, { "input": "derrick", "output": "⠙⠻⠗⠊⠉⠅" }, { "input": "derricks", "output": "⠙⠻⠗⠊⠉⠅⠎" }, { "input": "derringer", "output": "⠙⠻⠗⠬⠻" }, { "input": "derringers", "output": "⠙⠻⠗⠬⠻⠎" }, { "input": "derrière", "output": "⠙⠻⠗⠊⠠⠘⠻â â ¡â â £â —â ‘" }, { "input": "derrières", "output": "⠙⠻⠗⠊⠠⠘⠻â â ¡â â £â —â ‘â Ž" }, { "input": "dervish", "output": "⠙⠻⠧⠊⠩" }, { "input": "dervishes", "output": "⠙⠻⠧⠊⠩⠑⠎" }, { "input": "desalinate", "output": "⠙⠑⠎â â ‡â ”â â žâ ‘" }, { "input": "desalinated", "output": "⠙⠑⠎â â ‡â ”â â žâ «" }, { "input": "desalinates", "output": "⠙⠑⠎â â ‡â ”â â žâ ‘â Ž" }, { "input": "desalinating", "output": "⠙⠑⠎â â ‡â ”â â žâ ¬" }, { "input": "desalination", "output": "⠙⠑⠎â â ‡â ”â â °â " }, { "input": "descant", "output": "⠙⠑⠎⠉â â â ž" }, { "input": "descanted", "output": "⠙⠑⠎⠉â â â žâ «" }, { "input": "descanting", "output": "⠙⠑⠎⠉â â â žâ ¬" }, { "input": "descants", "output": "⠙⠑⠎⠉â â â žâ Ž" }, { "input": "descend", "output": "⠙⠑⠎⠉⠢⠙" }, { "input": "descendant", "output": "⠙⠑⠎⠉⠢⠙â â â ž" }, { "input": "descendants", "output": "⠙⠑⠎⠉⠢⠙â â â žâ Ž" }, { "input": "descended", "output": "⠙⠑⠎⠉⠢⠙⠫" }, { "input": "descendent", "output": "⠙⠑⠎⠉⠢⠙⠢⠞" }, { "input": "descendents", "output": "⠙⠑⠎⠉⠢⠙⠢⠞⠎" }, { "input": "descender", "output": "⠙⠑⠎⠉⠢⠙⠻" }, { "input": "descending", "output": "⠙⠑⠎⠉⠢⠙⠬" }, { "input": "descends", "output": "⠙⠑⠎⠉⠢⠙⠎" }, { "input": "descent", "output": "⠙⠑⠎⠉⠢⠞" }, { "input": "descents", "output": "⠙⠑⠎⠉⠢⠞⠎" }, { "input": "describable", "output": "⠙⠑⠎⠉⠗⠊⠃â â ƒâ ‡â ‘" }, { "input": "describe", "output": "⠙⠑⠎⠉⠗⠊⠃⠑" }, { "input": "described", "output": "⠙⠑⠎⠉⠗⠊⠃⠫" }, { "input": "describes", "output": "⠙⠑⠎⠉⠗⠊⠃⠑⠎" }, { "input": "describing", "output": "⠙⠑⠎⠉⠗⠊⠃⠬" }, { "input": "descried", "output": "⠙⠑⠎⠉⠗⠊⠫" }, { "input": "descries", "output": "⠙⠑⠎⠉⠗⠊⠑⠎" }, { "input": "description", "output": "⠙⠑⠎⠉⠗⠊â â °â " }, { "input": "descriptions", "output": "⠙⠑⠎⠉⠗⠊â â °â â Ž" }, { "input": "descriptive", "output": "⠙⠑⠎⠉⠗⠊â â žâ Šâ §â ‘" }, { "input": "descriptively", "output": "⠙⠑⠎⠉⠗⠊â â žâ Šâ §â ‘⠇⠽" }, { "input": "descriptor", "output": "⠙⠑⠎⠉⠗⠊â â žâ •â —" }, { "input": "descriptors", "output": "⠙⠑⠎⠉⠗⠊â â žâ •â —â Ž" }, { "input": "descry", "output": "⠙⠑⠎⠉⠗⠽" }, { "input": "descrying", "output": "⠙⠑⠎⠉⠗⠽⠬" }, { "input": "desecrate", "output": "⠙⠑⠎⠑⠉⠗â â žâ ‘" }, { "input": "desecrated", "output": "⠙⠑⠎⠑⠉⠗â â žâ «" }, { "input": "desecrates", "output": "⠙⠑⠎⠑⠉⠗â â žâ ‘â Ž" }, { "input": "desecrating", "output": "⠙⠑⠎⠑⠉⠗â â žâ ¬" }, { "input": "desecration", "output": "⠙⠑⠎⠑⠉⠗â â °â " }, { "input": "desegregate", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ ‘" }, { "input": "desegregated", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ «" }, { "input": "desegregates", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ ‘â Ž" }, { "input": "desegregating", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ ¬" }, { "input": "desegregation", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â °â " }, { "input": "desensitization", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵â â °â " }, { "input": "desensitize", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠑" }, { "input": "desensitized", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠫" }, { "input": "desensitizes", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠑⠎" }, { "input": "desensitizing", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠬" }, { "input": "desert", "output": "⠙⠑⠎⠻⠞" }, { "input": "deserted", "output": "⠙⠑⠎⠻⠞⠫" }, { "input": "deserter", "output": "⠙⠑⠎⠻⠞⠻" }, { "input": "deserters", "output": "⠙⠑⠎⠻⠞⠻⠎" }, { "input": "deserting", "output": "⠙⠑⠎⠻⠞⠬" }, { "input": "desertion", "output": "⠙⠑⠎⠻⠰â " }, { "input": "desertions", "output": "⠙⠑⠎⠻⠰â â Ž" }, { "input": "deserts", "output": "⠙⠑⠎⠻⠞⠎" }, { "input": "deserve", "output": "⠙⠑⠎⠻⠧⠑" }, { "input": "deserved", "output": "⠙⠑⠎⠻⠧⠫" }, { "input": "deservedly", "output": "⠙⠑⠎⠻⠧⠫⠇⠽" }, { "input": "deserves", "output": "⠙⠑⠎⠻⠧⠑⠎" }, { "input": "deserving", "output": "⠙⠑⠎⠻⠧⠬" }, { "input": "desiccate", "output": "⠙⠑⠎⠊⠒â â žâ ‘" }, { "input": "desiccated", "output": "⠙⠑⠎⠊⠒â â žâ «" }, { "input": "desiccates", "output": "⠙⠑⠎⠊⠒â â žâ ‘â Ž" }, { "input": "desiccating", "output": "⠙⠑⠎⠊⠒â â žâ ¬" }, { "input": "desiccation", "output": "⠙⠑⠎⠊⠒â â °â " }, { "input": "desiderata", "output": "⠙⠑⠎⠊⠙⠻â â žâ " }, { "input": "desideratum", "output": "⠙⠑⠎⠊⠙⠻â â žâ ¥â " }, { "input": "design", "output": "⠙⠑⠎⠊⠛â " }, { "input": "designate", "output": "⠙⠑⠎⠊⠛â â â žâ ‘" }, { "input": "designated", "output": "⠙⠑⠎⠊⠛â â â žâ «" }, { "input": "designates", "output": "⠙⠑⠎⠊⠛â â â žâ ‘â Ž" }, { "input": "designating", "output": "⠙⠑⠎⠊⠛â â â žâ ¬" }, { "input": "designation", "output": "⠙⠑⠎⠊⠛â â â °â " }, { "input": "designations", "output": "⠙⠑⠎⠊⠛â â â °â â Ž" }, { "input": "designed", "output": "⠙⠑⠎⠊⠛â â «" }, { "input": "designer", "output": "⠙⠑⠎⠊⠛â â »" }, { "input": "designers", "output": "⠙⠑⠎⠊⠛â â »â Ž" }, { "input": "designing", "output": "⠙⠑⠎⠊⠛â â ¬" }, { "input": "designs", "output": "⠙⠑⠎⠊⠛â â Ž" }, { "input": "desirability", "output": "⠙⠑⠎⠊⠗â â ƒâ Šâ ‡â °â ½" }, { "input": "desirable", "output": "⠙⠑⠎⠊⠗â â ƒâ ‡â ‘" }, { "input": "desirably", "output": "⠙⠑⠎⠊⠗â â ƒâ ‡â ½" }, { "input": "desire", "output": "⠙⠑⠎⠊⠗⠑" }, { "input": "desired", "output": "⠙⠑⠎⠊⠗⠫" }, { "input": "desires", "output": "⠙⠑⠎⠊⠗⠑⠎" }, { "input": "desiring", "output": "⠙⠑⠎⠊⠗⠬" }, { "input": "desirous", "output": "⠙⠑⠎⠊⠗⠳⠎" }, { "input": "desist", "output": "⠙⠑⠎⠊⠌" }, { "input": "desisted", "output": "⠙⠑⠎⠊⠌⠫" }, { "input": "desisting", "output": "⠙⠑⠎⠊⠌⠬" }, { "input": "desists", "output": "⠙⠑⠎⠊⠌⠎" }, { "input": "desk", "output": "⠙⠑⠎⠅" }, { "input": "desks", "output": "⠙⠑⠎⠅⠎" }, { "input": "desktop", "output": "⠙⠑⠎⠅⠞⠕â " }, { "input": "desktops", "output": "⠙⠑⠎⠅⠞⠕â â Ž" }, { "input": "desolate", "output": "⠙⠑⠎⠕⠇â â žâ ‘" }, { "input": "desolated", "output": "⠙⠑⠎⠕⠇â â žâ «" }, { "input": "desolately", "output": "⠙⠑⠎⠕⠇â â žâ ‘⠇⠽" }, { "input": "desolateness", "output": "⠙⠑⠎⠕⠇â â žâ ‘â °â Ž" }, { "input": "desolates", "output": "⠙⠑⠎⠕⠇â â žâ ‘â Ž" }, { "input": "desolating", "output": "⠙⠑⠎⠕⠇â â žâ ¬" }, { "input": "desolation", "output": "⠙⠑⠎⠕⠇â â °â " }, { "input": "despair", "output": "⠙⠑⠎â â â Šâ —" }, { "input": "despaired", "output": "⠙⠑⠎â â â Šâ —â «" }, { "input": "despairing", "output": "⠙⠑⠎â â â Šâ —â ¬" }, { "input": "despairingly", "output": "⠙⠑⠎â â â Šâ —⠬⠇⠽" }, { "input": "despairs", "output": "⠙⠑⠎â â â Šâ —â Ž" }, { "input": "despatch", "output": "⠙⠑⠎â â â žâ ¡" }, { "input": "despatched", "output": "⠙⠑⠎â â â žâ ¡â «" }, { "input": "despatches", "output": "⠙⠑⠎â â â žâ ¡â ‘â Ž" }, { "input": "despatching", "output": "⠙⠑⠎â â â žâ ¡â ¬" }, { "input": "desperado", "output": "⠙⠑⠎â â »â â ™â •" }, { "input": "desperadoes", "output": "⠙⠑⠎â â »â â ™â •â ‘â Ž" }, { "input": "desperados", "output": "⠙⠑⠎â â »â â ™â •â Ž" }, { "input": "desperate", "output": "⠙⠑⠎â â »â â žâ ‘" }, { "input": "desperately", "output": "⠙⠑⠎â â »â â žâ ‘⠇⠽" }, { "input": "desperation", "output": "⠙⠑⠎â â »â â °â " }, { "input": "despicable", "output": "⠙⠑⠎â â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "despicably", "output": "⠙⠑⠎â â Šâ ‰â â ƒâ ‡â ½" }, { "input": "despise", "output": "⠙⠑⠎â â Šâ Žâ ‘" }, { "input": "despised", "output": "⠙⠑⠎â â Šâ Žâ «" }, { "input": "despises", "output": "⠙⠑⠎â â Šâ Žâ ‘â Ž" }, { "input": "despising", "output": "⠙⠑⠎â â Šâ Žâ ¬" }, { "input": "despite", "output": "⠙⠑⠎â â Šâ žâ ‘" }, { "input": "despoil", "output": "⠙⠑⠎â â •â Šâ ‡" }, { "input": "despoiled", "output": "⠙⠑⠎â â •⠊⠇⠫" }, { "input": "despoiling", "output": "⠙⠑⠎â â •⠊⠇⠬" }, { "input": "despoils", "output": "⠙⠑⠎â â •⠊⠇⠎" }, { "input": "despondency", "output": "⠙⠑⠎â â •â â ™â ¢â ‰â ½" }, { "input": "despondent", "output": "⠙⠑⠎â â •â â ™â ¢â ž" }, { "input": "despondently", "output": "⠙⠑⠎â â •â â ™â ¢â žâ ‡â ½" }, { "input": "despot", "output": "⠙⠑⠎â â •â ž" }, { "input": "despotic", "output": "⠙⠑⠎â â •â žâ Šâ ‰" }, { "input": "despotism", "output": "⠙⠑⠎â â •â žâ Šâ Žâ " }, { "input": "despots", "output": "⠙⠑⠎â â •â žâ Ž" }, { "input": "dessert", "output": "⠙⠑⠎⠎⠻⠞" }, { "input": "desserts", "output": "⠙⠑⠎⠎⠻⠞⠎" }, { "input": "destabilize", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ ‘" }, { "input": "destination", "output": "⠙⠑⠌⠔â â °â " }, { "input": "destinations", "output": "⠙⠑⠌⠔â â °â â Ž" }, { "input": "destine", "output": "⠙⠑⠌⠔⠑" }, { "input": "destined", "output": "⠙⠑⠌⠔⠫" }, { "input": "destines", "output": "⠙⠑⠌⠔⠑⠎" }, { "input": "destinies", "output": "⠙⠑⠌⠔⠊⠑⠎" }, { "input": "destining", "output": "⠙⠑⠌⠔⠬" }, { "input": "destiny", "output": "⠙⠑⠌⠔⠽" }, { "input": "destitute", "output": "⠙⠑⠌⠊⠞⠥⠞⠑" }, { "input": "destitution", "output": "⠙⠑⠌⠊⠞⠥⠰â " }, { "input": "destroy", "output": "⠙⠑⠌⠗⠕⠽" }, { "input": "destroyed", "output": "⠙⠑⠌⠗⠕⠽⠫" }, { "input": "destroyer", "output": "⠙⠑⠌⠗⠕⠽⠻" }, { "input": "destroyers", "output": "⠙⠑⠌⠗⠕⠽⠻⠎" }, { "input": "destroying", "output": "⠙⠑⠌⠗⠕⠽⠬" }, { "input": "destroys", "output": "⠙⠑⠌⠗⠕⠽⠎" }, { "input": "destruct", "output": "⠙⠑⠌⠗⠥⠉⠞" }, { "input": "destructed", "output": "⠙⠑⠌⠗⠥⠉⠞⠫" }, { "input": "destructible", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠃⠇⠑" }, { "input": "destructing", "output": "⠙⠑⠌⠗⠥⠉⠞⠬" }, { "input": "destruction", "output": "⠙⠑⠌⠗⠥⠉⠰â " }, { "input": "destructive", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "destructively", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "destructiveness", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "destructs", "output": "⠙⠑⠌⠗⠥⠉⠞⠎" }, { "input": "desultory", "output": "⠙⠑⠎⠥⠇⠞⠕⠗⠽" }, { "input": "detach", "output": "⠙⠑⠞â â ¡" }, { "input": "detachable", "output": "⠙⠑⠞â â ¡â â ƒâ ‡â ‘" }, { "input": "detached", "output": "⠙⠑⠞â â ¡â «" }, { "input": "detaches", "output": "⠙⠑⠞â â ¡â ‘â Ž" }, { "input": "detaching", "output": "⠙⠑⠞â â ¡â ¬" }, { "input": "detachment", "output": "⠙⠑⠞â â ¡â °â ž" }, { "input": "detachments", "output": "⠙⠑⠞â â ¡â °â žâ Ž" }, { "input": "detail", "output": "⠙⠑⠞â â Šâ ‡" }, { "input": "detailed", "output": "⠙⠑⠞â â Šâ ‡â «" }, { "input": "detailing", "output": "⠙⠑⠞â â Šâ ‡â ¬" }, { "input": "details", "output": "⠙⠑⠞â â Šâ ‡â Ž" }, { "input": "detain", "output": "⠙⠑⠞â â ”" }, { "input": "detained", "output": "⠙⠑⠞â â ”â «" }, { "input": "detaining", "output": "⠙⠑⠞â â ”â ¬" }, { "input": "detainment", "output": "⠙⠑⠞â â ”â °â ž" }, { "input": "detains", "output": "⠙⠑⠞â â ”â Ž" }, { "input": "detect", "output": "⠙⠑⠞⠑⠉⠞" }, { "input": "detectable", "output": "⠙⠑⠞⠑⠉⠞â â ƒâ ‡â ‘" }, { "input": "detected", "output": "⠙⠑⠞⠑⠉⠞⠫" }, { "input": "detecting", "output": "⠙⠑⠞⠑⠉⠞⠬" }, { "input": "detection", "output": "⠙⠑⠞⠑⠉⠰â " }, { "input": "detective", "output": "⠙⠑⠞⠑⠉⠞⠊⠧⠑" }, { "input": "detectives", "output": "⠙⠑⠞⠑⠉⠞⠊⠧⠑⠎" }, { "input": "detector", "output": "⠙⠑⠞⠑⠉⠞⠕⠗" }, { "input": "detectors", "output": "⠙⠑⠞⠑⠉⠞⠕⠗⠎" }, { "input": "detects", "output": "⠙⠑⠞⠑⠉⠞⠎" }, { "input": "detentes", "output": "⠙⠑⠞⠢⠞⠑⠎" }, { "input": "detention", "output": "⠙⠑⠞⠢⠰â " }, { "input": "detentions", "output": "⠙⠑⠞⠢⠰â â Ž" }, { "input": "deter", "output": "⠙⠑⠞⠻" }, { "input": "detergent", "output": "⠙⠑⠞⠻⠛⠢⠞" }, { "input": "detergents", "output": "⠙⠑⠞⠻⠛⠢⠞⠎" }, { "input": "deteriorate", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ ‘" }, { "input": "deteriorated", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ «" }, { "input": "deteriorates", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ ‘â Ž" }, { "input": "deteriorating", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ ¬" }, { "input": "deterioration", "output": "⠙⠑⠞⠻⠊⠕⠗â â °â " }, { "input": "determinable", "output": "⠙⠑⠞⠻â â ”â â ƒâ ‡â ‘" }, { "input": "determinant", "output": "⠙⠑⠞⠻â â ”â â â ž" }, { "input": "determinants", "output": "⠙⠑⠞⠻â â ”â â â žâ Ž" }, { "input": "determinate", "output": "⠙⠑⠞⠻â â ”â â žâ ‘" }, { "input": "determination", "output": "⠙⠑⠞⠻â â ”â â °â " }, { "input": "determinations", "output": "⠙⠑⠞⠻â â ”â â °â â Ž" }, { "input": "determine", "output": "⠙⠑⠞⠻â â ”â ‘" }, { "input": "determined", "output": "⠙⠑⠞⠻â â ”â «" }, { "input": "determiner", "output": "⠙⠑⠞⠻â â ”â »" }, { "input": "determiners", "output": "⠙⠑⠞⠻â â ”⠻⠎" }, { "input": "determines", "output": "⠙⠑⠞⠻â â ”â ‘â Ž" }, { "input": "determining", "output": "⠙⠑⠞⠻â â ”â ¬" }, { "input": "determinism", "output": "⠙⠑⠞⠻â â ”â Šâ Žâ " }, { "input": "deterministic", "output": "⠙⠑⠞⠻â â ”⠊⠌⠊⠉" }, { "input": "deterred", "output": "⠙⠑⠞⠻⠗⠫" }, { "input": "deterrence", "output": "⠙⠑⠞⠻⠗⠰⠑" }, { "input": "deterrent", "output": "⠙⠑⠞⠻⠗⠢⠞" }, { "input": "deterrents", "output": "⠙⠑⠞⠻⠗⠢⠞⠎" }, { "input": "deterring", "output": "⠙⠑⠞⠻⠗⠬" }, { "input": "deters", "output": "⠙⠑⠞⠻⠎" }, { "input": "detest", "output": "⠙⠑⠞⠑⠌" }, { "input": "detestable", "output": "⠙⠑⠞⠑⠌â â ƒâ ‡â ‘" }, { "input": "detestation", "output": "⠙⠑⠞⠑⠌â â °â " }, { "input": "detested", "output": "⠙⠑⠞⠑⠌⠫" }, { "input": "detesting", "output": "⠙⠑⠞⠑⠌⠬" }, { "input": "detests", "output": "⠙⠑⠞⠑⠌⠎" }, { "input": "dethrone", "output": "⠙⠑⠹⠗â â •" }, { "input": "dethroned", "output": "⠙⠑⠹⠗⠕â â «" }, { "input": "dethronement", "output": "⠙⠑⠹⠗â â •â °â ž" }, { "input": "dethrones", "output": "⠙⠑⠹⠗â â •â Ž" }, { "input": "dethroning", "output": "⠙⠑⠹⠗⠕â â ¬" }, { "input": "detonate", "output": "⠙⠑⠞⠕â â â žâ ‘" }, { "input": "detonated", "output": "⠙⠑⠞⠕â â â žâ «" }, { "input": "detonates", "output": "⠙⠑⠞⠕â â â žâ ‘â Ž" }, { "input": "detonating", "output": "⠙⠑⠞⠕â â â žâ ¬" }, { "input": "detonation", "output": "⠙⠑⠞⠕â â â °â " }, { "input": "detonations", "output": "⠙⠑⠞⠕â â â °â â Ž" }, { "input": "detonator", "output": "⠙⠑⠞⠕â â â žâ •â —" }, { "input": "detonators", "output": "⠙⠑⠞⠕â â â žâ •â —â Ž" }, { "input": "detour", "output": "⠙⠑⠞⠳⠗" }, { "input": "detoured", "output": "⠙⠑⠞⠳⠗⠫" }, { "input": "detouring", "output": "⠙⠑⠞⠳⠗⠬" }, { "input": "detours", "output": "⠙⠑⠞⠳⠗⠎" }, { "input": "detox", "output": "⠙⠑⠞⠕⠭" }, { "input": "detoxed", "output": "⠙⠑⠞⠕⠭⠫" }, { "input": "detoxes", "output": "⠙⠑⠞⠕⠭⠑⠎" }, { "input": "detoxification", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠉â â °â " }, { "input": "detoxified", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠫" }, { "input": "detoxifies", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠑⠎" }, { "input": "detoxify", "output": "⠙⠑⠞⠕⠭⠊⠋⠽" }, { "input": "detoxifying", "output": "⠙⠑⠞⠕⠭⠊⠋⠽⠬" }, { "input": "detoxing", "output": "⠙⠑⠞⠕⠭⠬" }, { "input": "detract", "output": "⠙⠑⠞⠗â â ‰â ž" }, { "input": "detracted", "output": "⠙⠑⠞⠗â â ‰â žâ «" }, { "input": "detracting", "output": "⠙⠑⠞⠗â â ‰â žâ ¬" }, { "input": "detraction", "output": "⠙⠑⠞⠗â â ‰â °â " }, { "input": "detractor", "output": "⠙⠑⠞⠗â â ‰â žâ •â —" }, { "input": "detractors", "output": "⠙⠑⠞⠗â â ‰â žâ •â —â Ž" }, { "input": "detracts", "output": "⠙⠑⠞⠗â â ‰â žâ Ž" }, { "input": "detriment", "output": "⠙⠑⠞⠗⠊⠰⠞" }, { "input": "detrimental", "output": "⠙⠑⠞⠗⠊⠰⠞â â ‡" }, { "input": "detriments", "output": "⠙⠑⠞⠗⠊⠰⠞⠎" }, { "input": "detritus", "output": "⠙⠑⠞⠗⠊⠞⠥⠎" }, { "input": "deuce", "output": "⠙⠑⠥⠉⠑" }, { "input": "deuces", "output": "⠙⠑⠥⠉⠑⠎" }, { "input": "deuterium", "output": "⠙⠑⠥⠞⠻⠊⠥â " }, { "input": "devaluation", "output": "⠙⠑⠧â â ‡â ¥â â °â " }, { "input": "devaluations", "output": "⠙⠑⠧â â ‡â ¥â â °â â Ž" }, { "input": "devalue", "output": "⠙⠑⠧â â ‡â ¥â ‘" }, { "input": "devalued", "output": "⠙⠑⠧â â ‡â ¥â «" }, { "input": "devalues", "output": "⠙⠑⠧â â ‡â ¥â ‘â Ž" }, { "input": "devaluing", "output": "⠙⠑⠧â â ‡â ¥â ¬" }, { "input": "devastate", "output": "⠙⠑⠧â â Œâ â žâ ‘" }, { "input": "devastated", "output": "⠙⠑⠧â â Œâ â žâ «" }, { "input": "devastates", "output": "⠙⠑⠧â â Œâ â žâ ‘â Ž" }, { "input": "devastating", "output": "⠙⠑⠧â â Œâ â žâ ¬" }, { "input": "devastation", "output": "⠙⠑⠧â â Œâ â °â " }, { "input": "develop", "output": "⠙⠑⠧⠑⠇⠕â " }, { "input": "developed", "output": "⠙⠑⠧⠑⠇⠕â â «" }, { "input": "developer", "output": "⠙⠑⠧⠑⠇⠕â â »" }, { "input": "developers", "output": "⠙⠑⠧⠑⠇⠕â â »â Ž" }, { "input": "developing", "output": "⠙⠑⠧⠑⠇⠕â â ¬" }, { "input": "development", "output": "⠙⠑⠧⠑⠇⠕â â °â ž" }, { "input": "developmental", "output": "⠙⠑⠧⠑⠇⠕â â °â žâ â ‡" }, { "input": "developments", "output": "⠙⠑⠧⠑⠇⠕â â °â žâ Ž" }, { "input": "develops", "output": "⠙⠑⠧⠑⠇⠕â â Ž" }, { "input": "deviance", "output": "⠙⠑⠧⠊⠨⠑" }, { "input": "deviant", "output": "⠙⠑⠧⠊â â â ž" }, { "input": "deviants", "output": "⠙⠑⠧⠊â â â žâ Ž" }, { "input": "deviate", "output": "⠙⠑⠧⠊â â žâ ‘" }, { "input": "deviated", "output": "⠙⠑⠧⠊â â žâ «" }, { "input": "deviates", "output": "⠙⠑⠧⠊â â žâ ‘â Ž" }, { "input": "deviating", "output": "⠙⠑⠧⠊â â žâ ¬" }, { "input": "deviation", "output": "⠙⠑⠧⠊â â °â " }, { "input": "deviations", "output": "⠙⠑⠧⠊â â °â â Ž" }, { "input": "device", "output": "⠙⠑⠧⠊⠉⠑" }, { "input": "devices", "output": "⠙⠑⠧⠊⠉⠑⠎" }, { "input": "devil", "output": "⠙⠑⠧⠊⠇" }, { "input": "deviled", "output": "⠙⠑⠧⠊⠇⠫" }, { "input": "deviling", "output": "⠙⠑⠧⠊⠇⠬" }, { "input": "devilish", "output": "⠙⠑⠧⠊⠇⠊⠩" }, { "input": "devilishly", "output": "⠙⠑⠧⠊⠇⠊⠩⠇⠽" }, { "input": "devilled", "output": "⠙⠑⠧⠊⠇⠇⠫" }, { "input": "devilling", "output": "⠙⠑⠧⠊⠇⠇⠬" }, { "input": "devilment", "output": "⠙⠑⠧⠊⠇⠰⠞" }, { "input": "devilries", "output": "⠙⠑⠧⠊⠇⠗⠊⠑⠎" }, { "input": "devilry", "output": "⠙⠑⠧⠊⠇⠗⠽" }, { "input": "devils", "output": "⠙⠑⠧⠊⠇⠎" }, { "input": "deviltries", "output": "⠙⠑⠧⠊⠇⠞⠗⠊⠑⠎" }, { "input": "deviltry", "output": "⠙⠑⠧⠊⠇⠞⠗⠽" }, { "input": "devious", "output": "⠙⠑⠧⠊⠳⠎" }, { "input": "deviously", "output": "⠙⠑⠧⠊⠳⠎⠇⠽" }, { "input": "deviousness", "output": "⠙⠑⠧⠊⠳⠎⠰⠎" }, { "input": "devise", "output": "⠙⠑⠧⠊⠎⠑" }, { "input": "devised", "output": "⠙⠑⠧⠊⠎⠫" }, { "input": "devises", "output": "⠙⠑⠧⠊⠎⠑⠎" }, { "input": "devising", "output": "⠙⠑⠧⠊⠎⠬" }, { "input": "devoid", "output": "⠙⠑⠧⠕⠊⠙" }, { "input": "devolution", "output": "⠙⠑⠧⠕⠇⠥⠰â " }, { "input": "devolve", "output": "⠙⠑⠧⠕⠇⠧⠑" }, { "input": "devolved", "output": "⠙⠑⠧⠕⠇⠧⠫" }, { "input": "devolves", "output": "⠙⠑⠧⠕⠇⠧⠑⠎" }, { "input": "devolving", "output": "⠙⠑⠧⠕⠇⠧⠬" }, { "input": "devote", "output": "⠙⠑⠧⠕⠞⠑" }, { "input": "devoted", "output": "⠙⠑⠧⠕⠞⠫" }, { "input": "devotedly", "output": "⠙⠑⠧⠕⠞⠫⠇⠽" }, { "input": "devotee", "output": "⠙⠑⠧⠕⠞⠑⠑" }, { "input": "devotees", "output": "⠙⠑⠧⠕⠞⠑⠑⠎" }, { "input": "devotes", "output": "⠙⠑⠧⠕⠞⠑⠎" }, { "input": "devoting", "output": "⠙⠑⠧⠕⠞⠬" }, { "input": "devotion", "output": "⠙⠑⠧⠕⠰â " }, { "input": "devotional", "output": "⠙⠑⠧⠕⠰â â â ‡" }, { "input": "devotionals", "output": "⠙⠑⠧⠕⠰â â â ‡â Ž" }, { "input": "devotions", "output": "⠙⠑⠧⠕⠰â â Ž" }, { "input": "devour", "output": "⠙⠑⠧⠳⠗" }, { "input": "devoured", "output": "⠙⠑⠧⠳⠗⠫" }, { "input": "devouring", "output": "⠙⠑⠧⠳⠗⠬" }, { "input": "devours", "output": "⠙⠑⠧⠳⠗⠎" }, { "input": "devout", "output": "⠙⠑⠧⠳⠞" }, { "input": "devouter", "output": "⠙⠑⠧⠳⠞⠻" }, { "input": "devoutest", "output": "⠙⠑⠧⠳⠞⠑⠌" }, { "input": "devoutly", "output": "⠙⠑⠧⠳⠞⠇⠽" }, { "input": "devoutness", "output": "⠙⠑⠧⠳⠞⠰⠎" }, { "input": "dew", "output": "⠙⠑⠺" }, { "input": "dewberries", "output": "⠙⠑⠺⠃⠻⠗⠊⠑⠎" }, { "input": "dewberry", "output": "⠙⠑⠺⠃⠻⠗⠽" }, { "input": "dewdrop", "output": "⠙⠑⠺⠙⠗⠕â " }, { "input": "dewdrops", "output": "⠙⠑⠺⠙⠗⠕â â Ž" }, { "input": "dewier", "output": "⠙⠑⠺⠊⠻" }, { "input": "dewiest", "output": "⠙⠑⠺⠊⠑⠌" }, { "input": "dewlap", "output": "⠙⠑⠺⠇â â " }, { "input": "dewlaps", "output": "⠙⠑⠺⠇â â â Ž" }, { "input": "dewy", "output": "⠙⠑⠺⠽" }, { "input": "dexterity", "output": "⠙⠑⠭⠞⠻⠰⠽" }, { "input": "dexterous", "output": "⠙⠑⠭⠞⠻⠳⠎" }, { "input": "dexterously", "output": "⠙⠑⠭⠞⠻⠳⠎⠇⠽" }, { "input": "dextrose", "output": "⠙⠑⠭⠞⠗⠕⠎⠑" }, { "input": "dextrous", "output": "⠙⠑⠭⠞⠗⠳⠎" }, { "input": "dextrously", "output": "⠙⠑⠭⠞⠗⠳⠎⠇⠽" }, { "input": "dhoti", "output": "⠙⠓⠕⠞⠊" }, { "input": "dhotis", "output": "⠙⠓⠕⠞⠊⠎" }, { "input": "diabetes", "output": "⠙⠊â â ƒâ ‘â žâ ‘â Ž" }, { "input": "diabetic", "output": "⠙⠊â â ƒâ ‘â žâ Šâ ‰" }, { "input": "diabetics", "output": "⠙⠊â â ƒâ ‘⠞⠊⠉⠎" }, { "input": "diabolic", "output": "⠙⠊â â ƒâ •⠇⠊⠉" }, { "input": "diabolical", "output": "⠙⠊â â ƒâ •⠇⠊⠉â â ‡" }, { "input": "diabolically", "output": "⠙⠊â â ƒâ •⠇⠊⠉â â ‡â ‡â ½" }, { "input": "diacritic", "output": "⠙⠊â â ‰â —â Šâ žâ Šâ ‰" }, { "input": "diacritical", "output": "⠙⠊â â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "diacritics", "output": "⠙⠊â â ‰â —⠊⠞⠊⠉⠎" }, { "input": "diadem", "output": "⠙⠊â â ™â ‘â " }, { "input": "diadems", "output": "⠙⠊â â ™â ‘â â Ž" }, { "input": "diagnose", "output": "⠙⠊â â ›â â •â Žâ ‘" }, { "input": "diagnosed", "output": "⠙⠊â â ›â â •â Žâ «" }, { "input": "diagnoses", "output": "⠙⠊â â ›â â •â Žâ ‘â Ž" }, { "input": "diagnosing", "output": "⠙⠊â â ›â â •â Žâ ¬" }, { "input": "diagnosis", "output": "⠙⠊â â ›â â •â Žâ Šâ Ž" }, { "input": "diagnostic", "output": "⠙⠊â â ›â â •⠌⠊⠉" }, { "input": "diagnostician", "output": "⠙⠊â â ›â â •⠌⠊⠉⠊â â " }, { "input": "diagnosticians", "output": "⠙⠊â â ›â â •⠌⠊⠉⠊â â â Ž" }, { "input": "diagnostics", "output": "⠙⠊â â ›â â •⠌⠊⠉⠎" }, { "input": "diagonal", "output": "⠙⠊â â ›â •â â â ‡" }, { "input": "diagonally", "output": "⠙⠊â â ›â •â â â ‡â ‡â ½" }, { "input": "diagonals", "output": "⠙⠊â â ›â •â â â ‡â Ž" }, { "input": "diagram", "output": "⠙⠊â â ›â —â â " }, { "input": "diagramed", "output": "⠙⠊â â ›â —â â â «" }, { "input": "diagraming", "output": "⠙⠊â â ›â —â â â ¬" }, { "input": "diagrammatic", "output": "⠙⠊â â ›â —â â â â â žâ Šâ ‰" }, { "input": "diagrammed", "output": "⠙⠊â â ›â —â â â â «" }, { "input": "diagramming", "output": "⠙⠊â â ›â —â â â â ¬" }, { "input": "diagrams", "output": "⠙⠊â â ›â —â â â Ž" }, { "input": "dial", "output": "⠙⠊â â ‡" }, { "input": "dialect", "output": "⠙⠊â â ‡â ‘⠉⠞" }, { "input": "dialectal", "output": "⠙⠊â â ‡â ‘⠉⠞â â ‡" }, { "input": "dialectic", "output": "⠙⠊â â ‡â ‘⠉⠞⠊⠉" }, { "input": "dialects", "output": "⠙⠊â â ‡â ‘⠉⠞⠎" }, { "input": "dialed", "output": "⠙⠊â â ‡â «" }, { "input": "dialing", "output": "⠙⠊â â ‡â ¬" }, { "input": "dialings", "output": "⠙⠊â â ‡â ¬â Ž" }, { "input": "dialog", "output": "⠙⠊â â ‡â •â ›" }, { "input": "dialogs", "output": "⠙⠊â â ‡â •⠛⠎" }, { "input": "dialogue", "output": "⠙⠊â â ‡â •⠛⠥⠑" }, { "input": "dialogues", "output": "⠙⠊â â ‡â •⠛⠥⠑⠎" }, { "input": "dials", "output": "⠙⠊â â ‡â Ž" }, { "input": "dialyses", "output": "⠙⠊â â ‡â ½â Žâ ‘â Ž" }, { "input": "dialysis", "output": "⠙⠊â â ‡â ½â Žâ Šâ Ž" }, { "input": "dialyzes", "output": "⠙⠊â â ‡â ½â µâ ‘â Ž" }, { "input": "diameter", "output": "⠙⠊â â â ‘â žâ »" }, { "input": "diameters", "output": "⠙⠊â â â ‘⠞⠻⠎" }, { "input": "diametrical", "output": "⠙⠊â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "diametrically", "output": "⠙⠊â â â ‘â žâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "diamond", "output": "⠙⠊â â â •â â ™" }, { "input": "diamonds", "output": "⠙⠊â â â •â â ™â Ž" }, { "input": "diaper", "output": "⠙⠊â â â »" }, { "input": "diapered", "output": "⠙⠊â â â »â «" }, { "input": "diapering", "output": "⠙⠊â â â »â ¬" }, { "input": "diapers", "output": "⠙⠊â â â »â Ž" }, { "input": "diaphanous", "output": "⠙⠊â â â “â â â ³â Ž" }, { "input": "diaphragm", "output": "⠙⠊â â â “â —â â ›â " }, { "input": "diaphragms", "output": "⠙⠊â â â “â —â â ›â â Ž" }, { "input": "diaries", "output": "⠙⠊⠜⠊⠑⠎" }, { "input": "diarist", "output": "⠙⠊⠜⠊⠌" }, { "input": "diarists", "output": "⠙⠊⠜⠊⠌⠎" }, { "input": "diarrhea", "output": "⠙⠊⠜⠗⠓⠑â " }, { "input": "diarrhoea", "output": "⠙⠊⠜⠗⠓⠕⠑â " }, { "input": "diary", "output": "⠙⠊⠜⠽" }, { "input": "diastolic", "output": "⠙⠊â â Œâ •⠇⠊⠉" }, { "input": "diatom", "output": "⠙⠊â â žâ •â " }, { "input": "diatoms", "output": "⠙⠊â â žâ •â â Ž" }, { "input": "diatribe", "output": "⠙⠊â â žâ —⠊⠃⠑" }, { "input": "diatribes", "output": "⠙⠊â â žâ —⠊⠃⠑⠎" }, { "input": "dibble", "output": "⠙⠊⠆⠇⠑" }, { "input": "dibbled", "output": "⠙⠊⠆⠇⠫" }, { "input": "dibbles", "output": "⠙⠊⠆⠇⠑⠎" }, { "input": "dibbling", "output": "⠙⠊⠆⠇⠬" }, { "input": "dice", "output": "⠙⠊⠉⠑" }, { "input": "diced", "output": "⠙⠊⠉⠫" }, { "input": "dices", "output": "⠙⠊⠉⠑⠎" }, { "input": "dicey", "output": "⠙⠊⠉⠑⠽" }, { "input": "dichotomies", "output": "⠙⠊⠡⠕⠞⠕â â Šâ ‘â Ž" }, { "input": "dichotomy", "output": "⠙⠊⠡⠕⠞⠕â â ½" }, { "input": "dicier", "output": "⠙⠊⠉⠊⠻" }, { "input": "diciest", "output": "⠙⠊⠉⠊⠑⠌" }, { "input": "dicing", "output": "⠙⠊⠉⠬" }, { "input": "dick", "output": "⠙⠊⠉⠅" }, { "input": "dicker", "output": "⠙⠊⠉⠅⠻" }, { "input": "dickered", "output": "⠙⠊⠉⠅⠻⠫" }, { "input": "dickering", "output": "⠙⠊⠉⠅⠻⠬" }, { "input": "dickers", "output": "⠙⠊⠉⠅⠻⠎" }, { "input": "dickey", "output": "⠙⠊⠉⠅⠑⠽" }, { "input": "dickeys", "output": "⠙⠊⠉⠅⠑⠽⠎" }, { "input": "dickie", "output": "⠙⠊⠉⠅⠊⠑" }, { "input": "dickies", "output": "⠙⠊⠉⠅⠊⠑⠎" }, { "input": "dicks", "output": "⠙⠊⠉⠅⠎" }, { "input": "dicky", "output": "⠙⠊⠉⠅⠽" }, { "input": "dicta", "output": "⠙⠊⠉⠞â " }, { "input": "dictate", "output": "⠙⠊⠉⠞â â žâ ‘" }, { "input": "dictated", "output": "⠙⠊⠉⠞â â žâ «" }, { "input": "dictates", "output": "⠙⠊⠉⠞â â žâ ‘â Ž" }, { "input": "dictating", "output": "⠙⠊⠉⠞â â žâ ¬" }, { "input": "dictation", "output": "⠙⠊⠉⠞â â °â " }, { "input": "dictations", "output": "⠙⠊⠉⠞â â °â â Ž" }, { "input": "dictator", "output": "⠙⠊⠉⠞â â žâ •â —" }, { "input": "dictatorial", "output": "⠙⠊⠉⠞â â žâ •â —â Šâ â ‡" }, { "input": "dictators", "output": "⠙⠊⠉⠞â â žâ •â —â Ž" }, { "input": "dictatorship", "output": "⠙⠊⠉⠞â â žâ •â —â ©â Šâ " }, { "input": "dictatorships", "output": "⠙⠊⠉⠞â â žâ •â —â ©â Šâ â Ž" }, { "input": "diction", "output": "⠙⠊⠉⠰â " }, { "input": "dictionaries", "output": "⠙⠊⠉⠰â â œâ Šâ ‘â Ž" }, { "input": "dictionary", "output": "⠙⠊⠉⠰â â œâ ½" }, { "input": "dictum", "output": "⠙⠊⠉⠞⠥â " }, { "input": "dictums", "output": "⠙⠊⠉⠞⠥â â Ž" }, { "input": "did", "output": "⠙⠊⠙" }, { "input": "didactic", "output": "⠙⠊⠙â â ‰â žâ Šâ ‰" }, { "input": "diddle", "output": "⠙⠊⠙⠙⠇⠑" }, { "input": "diddled", "output": "⠙⠊⠙⠙⠇⠫" }, { "input": "diddles", "output": "⠙⠊⠙⠙⠇⠑⠎" }, { "input": "diddling", "output": "⠙⠊⠙⠙⠇⠬" }, { "input": "die", "output": "⠙⠊⠑" }, { "input": "died", "output": "⠙⠊⠫" }, { "input": "diehard", "output": "⠙⠊⠑⠓⠜⠙" }, { "input": "diehards", "output": "⠙⠊⠑⠓⠜⠙⠎" }, { "input": "diereses", "output": "⠙⠊⠻⠑⠎⠑⠎" }, { "input": "dieresis", "output": "⠙⠊⠻⠑⠎⠊⠎" }, { "input": "dies", "output": "⠙⠊⠑⠎" }, { "input": "diesel", "output": "⠙⠊⠑⠎⠑⠇" }, { "input": "dieseled", "output": "⠙⠊⠑⠎⠑⠇⠫" }, { "input": "dieseling", "output": "⠙⠊⠑⠎⠑⠇⠬" }, { "input": "diesels", "output": "⠙⠊⠑⠎⠑⠇⠎" }, { "input": "diet", "output": "⠙⠊⠑⠞" }, { "input": "dietaries", "output": "⠙⠊⠑⠞⠜⠊⠑⠎" }, { "input": "dietary", "output": "⠙⠊⠑⠞⠜⠽" }, { "input": "dieted", "output": "⠙⠊⠑⠞⠫" }, { "input": "dieter", "output": "⠙⠊⠑⠞⠻" }, { "input": "dieters", "output": "⠙⠊⠑⠞⠻⠎" }, { "input": "dietetic", "output": "⠙⠊⠑⠞⠑⠞⠊⠉" }, { "input": "dietetics", "output": "⠙⠊⠑⠞⠑⠞⠊⠉⠎" }, { "input": "dietician", "output": "⠙⠊⠑⠞⠊⠉⠊â â " }, { "input": "dieticians", "output": "⠙⠊⠑⠞⠊⠉⠊â â â Ž" }, { "input": "dieting", "output": "⠙⠊⠑⠞⠬" }, { "input": "dietitian", "output": "⠙⠊⠑⠞⠊⠞⠊â â " }, { "input": "dietitians", "output": "⠙⠊⠑⠞⠊⠞⠊â â â Ž" }, { "input": "diets", "output": "⠙⠊⠑⠞⠎" }, { "input": "differ", "output": "⠙⠊⠖⠻" }, { "input": "differed", "output": "⠙⠊⠖⠻⠫" }, { "input": "difference", "output": "⠙⠊⠖⠻⠰⠑" }, { "input": "differences", "output": "⠙⠊⠖⠻⠰⠑⠎" }, { "input": "different", "output": "⠙⠊⠖⠻⠢⠞" }, { "input": "differential", "output": "⠙⠊⠖⠻⠢⠞⠊â â ‡" }, { "input": "differentials", "output": "⠙⠊⠖⠻⠢⠞⠊â â ‡â Ž" }, { "input": "differentiate", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ ‘" }, { "input": "differentiated", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ «" }, { "input": "differentiates", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ ‘â Ž" }, { "input": "differentiating", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ ¬" }, { "input": "differentiation", "output": "⠙⠊⠖⠻⠢⠞⠊â â °â " }, { "input": "differently", "output": "⠙⠊⠖⠻⠢⠞⠇⠽" }, { "input": "differing", "output": "⠙⠊⠖⠻⠬" }, { "input": "differs", "output": "⠙⠊⠖⠻⠎" }, { "input": "difficult", "output": "⠙⠊⠖⠊⠉⠥⠇⠞" }, { "input": "difficulties", "output": "⠙⠊⠖⠊⠉⠥⠇⠞⠊⠑⠎" }, { "input": "difficulty", "output": "⠙⠊⠖⠊⠉⠥⠇⠞⠽" }, { "input": "diffidence", "output": "⠙⠊⠖⠊⠙⠰⠑" }, { "input": "diffident", "output": "⠙⠊⠖⠊⠙⠢⠞" }, { "input": "diffidently", "output": "⠙⠊⠖⠊⠙⠢⠞⠇⠽" }, { "input": "diffraction", "output": "⠙⠊⠖⠗â â ‰â °â " }, { "input": "diffuse", "output": "⠙⠊⠖⠥⠎⠑" }, { "input": "diffused", "output": "⠙⠊⠖⠥⠎⠫" }, { "input": "diffusely", "output": "⠙⠊⠖⠥⠎⠑⠇⠽" }, { "input": "diffuseness", "output": "⠙⠊⠖⠥⠎⠑⠰⠎" }, { "input": "diffuses", "output": "⠙⠊⠖⠥⠎⠑⠎" }, { "input": "diffusing", "output": "⠙⠊⠖⠥⠎⠬" }, { "input": "diffusion", "output": "⠙⠊⠖⠥⠨â " }, { "input": "dig", "output": "⠙⠊⠛" }, { "input": "digest", "output": "⠙⠊⠛⠑⠌" }, { "input": "digested", "output": "⠙⠊⠛⠑⠌⠫" }, { "input": "digestible", "output": "⠙⠊⠛⠑⠌⠊⠃⠇⠑" }, { "input": "digesting", "output": "⠙⠊⠛⠑⠌⠬" }, { "input": "digestion", "output": "⠙⠊⠛⠑⠎⠰â " }, { "input": "digestions", "output": "⠙⠊⠛⠑⠎⠰â â Ž" }, { "input": "digestive", "output": "⠙⠊⠛⠑⠌⠊⠧⠑" }, { "input": "digests", "output": "⠙⠊⠛⠑⠌⠎" }, { "input": "digger", "output": "⠙⠊⠶⠻" }, { "input": "diggers", "output": "⠙⠊⠶⠻⠎" }, { "input": "digging", "output": "⠙⠊⠶⠬" }, { "input": "digit", "output": "⠙⠊⠛⠊⠞" }, { "input": "digital", "output": "⠙⠊⠛⠊⠞â â ‡" }, { "input": "digitalis", "output": "⠙⠊⠛⠊⠞â â ‡â Šâ Ž" }, { "input": "digitally", "output": "⠙⠊⠛⠊⠞â â ‡â ‡â ½" }, { "input": "digitization", "output": "⠙⠊⠛⠊⠞⠊⠵â â °â " }, { "input": "digitize", "output": "⠙⠊⠛⠊⠞⠊⠵⠑" }, { "input": "digitized", "output": "⠙⠊⠛⠊⠞⠊⠵⠫" }, { "input": "digitizes", "output": "⠙⠊⠛⠊⠞⠊⠵⠑⠎" }, { "input": "digitizing", "output": "⠙⠊⠛⠊⠞⠊⠵⠬" }, { "input": "digits", "output": "⠙⠊⠛⠊⠞⠎" }, { "input": "dignified", "output": "⠙⠊⠛â â Šâ ‹â Šâ «" }, { "input": "dignifies", "output": "⠙⠊⠛â â Šâ ‹â Šâ ‘â Ž" }, { "input": "dignify", "output": "⠙⠊⠛â â Šâ ‹â ½" }, { "input": "dignifying", "output": "⠙⠊⠛â â Šâ ‹â ½â ¬" }, { "input": "dignitaries", "output": "⠙⠊⠛â â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "dignitary", "output": "⠙⠊⠛â â Šâ žâ œâ ½" }, { "input": "dignities", "output": "⠙⠊⠛â â Šâ žâ Šâ ‘â Ž" }, { "input": "dignity", "output": "⠙⠊⠛â â °â ½" }, { "input": "digraph", "output": "⠙⠊⠛⠗â â â “" }, { "input": "digraphs", "output": "⠙⠊⠛⠗â â â “â Ž" }, { "input": "digress", "output": "⠙⠊⠛⠗⠑⠎⠎" }, { "input": "digressed", "output": "⠙⠊⠛⠗⠑⠎⠎⠫" }, { "input": "digresses", "output": "⠙⠊⠛⠗⠑⠎⠎⠑⠎" }, { "input": "digressing", "output": "⠙⠊⠛⠗⠑⠎⠎⠬" }, { "input": "digression", "output": "⠙⠊⠛⠗⠑⠎⠨â " }, { "input": "digressions", "output": "⠙⠊⠛⠗⠑⠎⠨â â Ž" }, { "input": "digressive", "output": "⠙⠊⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "digs", "output": "⠙⠊⠛⠎" }, { "input": "dike", "output": "⠙⠊⠅⠑" }, { "input": "diked", "output": "⠙⠊⠅⠫" }, { "input": "dikes", "output": "⠙⠊⠅⠑⠎" }, { "input": "diking", "output": "⠙⠊⠅⠬" }, { "input": "dilapidated", "output": "⠙⠊⠇â â â Šâ ™â â žâ «" }, { "input": "dilapidation", "output": "⠙⠊⠇â â â Šâ ™â â °â " }, { "input": "dilate", "output": "⠙⠊⠇â â žâ ‘" }, { "input": "dilated", "output": "⠙⠊⠇â â žâ «" }, { "input": "dilates", "output": "⠙⠊⠇â â žâ ‘â Ž" }, { "input": "dilating", "output": "⠙⠊⠇â â žâ ¬" }, { "input": "dilation", "output": "⠙⠊⠇â â °â " }, { "input": "dilatory", "output": "⠙⠊⠇â â žâ •â —â ½" }, { "input": "dilemma", "output": "⠙⠊⠇⠑â â â " }, { "input": "dilemmas", "output": "⠙⠊⠇⠑â â â â Ž" }, { "input": "dilettante", "output": "⠙⠊⠇⠑⠞⠞â â â žâ ‘" }, { "input": "dilettantes", "output": "⠙⠊⠇⠑⠞⠞â â â žâ ‘â Ž" }, { "input": "dilettanti", "output": "⠙⠊⠇⠑⠞⠞â â â žâ Š" }, { "input": "dilettantism", "output": "⠙⠊⠇⠑⠞⠞â â â žâ Šâ Žâ " }, { "input": "diligence", "output": "⠙⠊⠇⠊⠛⠰⠑" }, { "input": "diligent", "output": "⠙⠊⠇⠊⠛⠢⠞" }, { "input": "diligently", "output": "⠙⠊⠇⠊⠛⠢⠞⠇⠽" }, { "input": "dill", "output": "⠙⠊⠇⠇" }, { "input": "dillies", "output": "⠙⠊⠇⠇⠊⠑⠎" }, { "input": "dills", "output": "⠙⠊⠇⠇⠎" }, { "input": "dilly", "output": "⠙⠊⠇⠇⠽" }, { "input": "dillydallied", "output": "⠙⠊⠇⠇⠽⠙â â ‡â ‡â Šâ «" }, { "input": "dillydallies", "output": "⠙⠊⠇⠇⠽⠙â â ‡â ‡â Šâ ‘â Ž" }, { "input": "dillydally", "output": "⠙⠊⠇⠇⠽⠙â â ‡â ‡â ½" }, { "input": "dillydallying", "output": "⠙⠊⠇⠇⠽⠙â â ‡â ‡â ½â ¬" }, { "input": "dilute", "output": "⠙⠊⠇⠥⠞⠑" }, { "input": "diluted", "output": "⠙⠊⠇⠥⠞⠫" }, { "input": "dilutes", "output": "⠙⠊⠇⠥⠞⠑⠎" }, { "input": "diluting", "output": "⠙⠊⠇⠥⠞⠬" }, { "input": "dilution", "output": "⠙⠊⠇⠥⠰â " }, { "input": "dim", "output": "⠙⠊â " }, { "input": "dime", "output": "⠙⠊â â ‘" }, { "input": "dimension", "output": "⠙⠊â â ¢â ¨â " }, { "input": "dimensional", "output": "⠙⠊â â ¢â ¨â â â ‡" }, { "input": "dimensionless", "output": "⠙⠊â â ¢â ¨â â ¨â Ž" }, { "input": "dimensions", "output": "⠙⠊â â ¢â ¨â â Ž" }, { "input": "dimer", "output": "⠙⠊â â »" }, { "input": "dimes", "output": "⠙⠊â â ‘â Ž" }, { "input": "diminish", "output": "⠙⠊â â ”â Šâ ©" }, { "input": "diminished", "output": "⠙⠊â â ”â Šâ ©â «" }, { "input": "diminishes", "output": "⠙⠊â â ”â Šâ ©â ‘â Ž" }, { "input": "diminishing", "output": "⠙⠊â â ”â Šâ ©â ¬" }, { "input": "diminuendo", "output": "⠙⠊â â ”⠥⠢⠙⠕" }, { "input": "diminuendoes", "output": "⠙⠊â â ”⠥⠢⠙⠕⠑⠎" }, { "input": "diminuendos", "output": "⠙⠊â â ”⠥⠢⠙⠕⠎" }, { "input": "diminution", "output": "⠙⠊â â ”⠥⠰â " }, { "input": "diminutions", "output": "⠙⠊â â ”⠥⠰â â Ž" }, { "input": "diminutive", "output": "⠙⠊â â ”⠥⠞⠊⠧⠑" }, { "input": "diminutives", "output": "⠙⠊â â ”⠥⠞⠊⠧⠑⠎" }, { "input": "dimly", "output": "⠙⠊â â ‡â ½" }, { "input": "dimmed", "output": "⠙⠊â â â «" }, { "input": "dimmer", "output": "⠙⠊â â â »" }, { "input": "dimmers", "output": "⠙⠊â â â »â Ž" }, { "input": "dimmest", "output": "⠙⠊â â â ‘â Œ" }, { "input": "dimming", "output": "⠙⠊â â â ¬" }, { "input": "dimness", "output": "⠙⠊â â °â Ž" }, { "input": "dimple", "output": "⠙⠊â â â ‡â ‘" }, { "input": "dimpled", "output": "⠙⠊â â â ‡â «" }, { "input": "dimples", "output": "⠙⠊â â â ‡â ‘â Ž" }, { "input": "dimpling", "output": "⠙⠊â â â ‡â ¬" }, { "input": "dims", "output": "⠙⠊â â Ž" }, { "input": "dimwit", "output": "⠙⠊â â ºâ Šâ ž" }, { "input": "dimwits", "output": "⠙⠊â â ºâ Šâ žâ Ž" }, { "input": "dimwitted", "output": "⠙⠊â â ºâ Šâ žâ žâ «" }, { "input": "din", "output": "⠙⠔" }, { "input": "dine", "output": "⠙⠔⠑" }, { "input": "dined", "output": "⠙⠔⠫" }, { "input": "diner", "output": "⠙⠔⠻" }, { "input": "diners", "output": "⠙⠔⠻⠎" }, { "input": "dines", "output": "⠙⠔⠑⠎" }, { "input": "dinette", "output": "⠙⠔⠑⠞⠞⠑" }, { "input": "dinettes", "output": "⠙⠔⠑⠞⠞⠑⠎" }, { "input": "ding", "output": "⠙⠬" }, { "input": "dinged", "output": "⠙⠬⠫" }, { "input": "dinghies", "output": "⠙⠬⠓⠊⠑⠎" }, { "input": "dinghy", "output": "⠙⠬⠓⠽" }, { "input": "dingier", "output": "⠙⠬⠊⠻" }, { "input": "dingiest", "output": "⠙⠬⠊⠑⠌" }, { "input": "dinginess", "output": "⠙⠬⠊⠰⠎" }, { "input": "dinging", "output": "⠙⠬⠬" }, { "input": "dingo", "output": "⠙⠬⠕" }, { "input": "dingoes", "output": "⠙⠬⠕⠑⠎" }, { "input": "dings", "output": "⠙⠬⠎" }, { "input": "dingy", "output": "⠙⠬⠽" }, { "input": "dining", "output": "⠙⠔⠬" }, { "input": "dinkier", "output": "⠙⠔⠅⠊⠻" }, { "input": "dinkies", "output": "⠙⠔⠅⠊⠑⠎" }, { "input": "dinkiest", "output": "⠙⠔⠅⠊⠑⠌" }, { "input": "dinky", "output": "⠙⠔⠅⠽" }, { "input": "dinned", "output": "⠙⠔â â «" }, { "input": "dinner", "output": "⠙⠔â â »" }, { "input": "dinnered", "output": "⠙⠔â â »â «" }, { "input": "dinnering", "output": "⠙⠔â â »â ¬" }, { "input": "dinners", "output": "⠙⠔â â »â Ž" }, { "input": "dinning", "output": "⠙⠔â â ¬" }, { "input": "dinosaur", "output": "⠙⠔⠕⠎â â ¥â —" }, { "input": "dinosaurs", "output": "⠙⠔⠕⠎â â ¥â —â Ž" }, { "input": "dins", "output": "⠙⠔⠎" }, { "input": "dint", "output": "⠙⠔⠞" }, { "input": "diocesan", "output": "⠙⠊⠕⠉⠑⠎â â " }, { "input": "diocesans", "output": "⠙⠊⠕⠉⠑⠎â â â Ž" }, { "input": "diocese", "output": "⠙⠊⠕⠉⠑⠎⠑" }, { "input": "dioceses", "output": "⠙⠊⠕⠉⠑⠎⠑⠎" }, { "input": "diode", "output": "⠙⠊⠕⠙⠑" }, { "input": "diodes", "output": "⠙⠊⠕⠙⠑⠎" }, { "input": "diorama", "output": "⠙⠊⠕⠗â â â " }, { "input": "dioramas", "output": "⠙⠊⠕⠗â â â â Ž" }, { "input": "dioxide", "output": "⠙⠊⠕⠭⠊⠙⠑" }, { "input": "dioxin", "output": "⠙⠊⠕⠭⠔" }, { "input": "dioxins", "output": "⠙⠊⠕⠭⠔⠎" }, { "input": "dip", "output": "⠙⠊â " }, { "input": "diphtheria", "output": "⠙⠊â â “⠮⠗⠊â " }, { "input": "diphthong", "output": "⠙⠊â â “⠹⠰⠛" }, { "input": "diphthongs", "output": "⠙⠊â â “⠹⠰⠛⠎" }, { "input": "diploma", "output": "⠙⠊â â ‡â •â â " }, { "input": "diplomacy", "output": "⠙⠊â â ‡â •â â â ‰â ½" }, { "input": "diplomas", "output": "⠙⠊â â ‡â •â â â Ž" }, { "input": "diplomat", "output": "⠙⠊â â ‡â •â â â ž" }, { "input": "diplomata", "output": "⠙⠊â â ‡â •â â â žâ " }, { "input": "diplomatic", "output": "⠙⠊â â ‡â •â â â žâ Šâ ‰" }, { "input": "diplomatically", "output": "⠙⠊â â ‡â •â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "diplomats", "output": "⠙⠊â â ‡â •â â â žâ Ž" }, { "input": "dipole", "output": "⠙⠊â â •⠇⠑" }, { "input": "dipped", "output": "⠙⠊â â â «" }, { "input": "dipper", "output": "⠙⠊â â â »" }, { "input": "dippers", "output": "⠙⠊â â â »â Ž" }, { "input": "dipping", "output": "⠙⠊â â â ¬" }, { "input": "dips", "output": "⠙⠊â â Ž" }, { "input": "dipsomania", "output": "⠙⠊â â Žâ •â â â â Šâ " }, { "input": "dipsomaniac", "output": "⠙⠊â â Žâ •â â â â Šâ â ‰" }, { "input": "dipsomaniacs", "output": "⠙⠊â â Žâ •â â â â Šâ â ‰â Ž" }, { "input": "dipstick", "output": "⠙⠊â â Œâ Šâ ‰â …" }, { "input": "dipsticks", "output": "⠙⠊â â Œâ Šâ ‰â …â Ž" }, { "input": "dire", "output": "⠙⠊⠗⠑" }, { "input": "direct", "output": "⠙⠊⠗⠑⠉⠞" }, { "input": "directed", "output": "⠙⠊⠗⠑⠉⠞⠫" }, { "input": "directer", "output": "⠙⠊⠗⠑⠉⠞⠻" }, { "input": "directest", "output": "⠙⠊⠗⠑⠉⠞⠑⠌" }, { "input": "directing", "output": "⠙⠊⠗⠑⠉⠞⠬" }, { "input": "direction", "output": "⠙⠊⠗⠑⠉⠰â " }, { "input": "directional", "output": "⠙⠊⠗⠑⠉⠰â â â ‡" }, { "input": "directions", "output": "⠙⠊⠗⠑⠉⠰â â Ž" }, { "input": "directive", "output": "⠙⠊⠗⠑⠉⠞⠊⠧⠑" }, { "input": "directives", "output": "⠙⠊⠗⠑⠉⠞⠊⠧⠑⠎" }, { "input": "directly", "output": "⠙⠊⠗⠑⠉⠞⠇⠽" }, { "input": "directness", "output": "⠙⠊⠗⠑⠉⠞⠰⠎" }, { "input": "director", "output": "⠙⠊⠗⠑⠉⠞⠕⠗" }, { "input": "directorate", "output": "⠙⠊⠗⠑⠉⠞⠕⠗â â žâ ‘" }, { "input": "directorates", "output": "⠙⠊⠗⠑⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "directorial", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠊â â ‡" }, { "input": "directories", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠊⠑⠎" }, { "input": "directors", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠎" }, { "input": "directorship", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠩⠊â " }, { "input": "directorships", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠩⠊â â Ž" }, { "input": "directory", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠽" }, { "input": "directs", "output": "⠙⠊⠗⠑⠉⠞⠎" }, { "input": "direr", "output": "⠙⠊⠗⠻" }, { "input": "direst", "output": "⠙⠊⠗⠑⠌" }, { "input": "dirge", "output": "⠙⠊⠗⠛⠑" }, { "input": "dirges", "output": "⠙⠊⠗⠛⠑⠎" }, { "input": "dirigible", "output": "⠙⠊⠗⠊⠛⠊⠃⠇⠑" }, { "input": "dirigibles", "output": "⠙⠊⠗⠊⠛⠊⠃⠇⠑⠎" }, { "input": "dirk", "output": "⠙⠊⠗⠅" }, { "input": "dirks", "output": "⠙⠊⠗⠅⠎" }, { "input": "dirt", "output": "⠙⠊⠗⠞" }, { "input": "dirtied", "output": "⠙⠊⠗⠞⠊⠫" }, { "input": "dirtier", "output": "⠙⠊⠗⠞⠊⠻" }, { "input": "dirties", "output": "⠙⠊⠗⠞⠊⠑⠎" }, { "input": "dirtiest", "output": "⠙⠊⠗⠞⠊⠑⠌" }, { "input": "dirtiness", "output": "⠙⠊⠗⠞⠊⠰⠎" }, { "input": "dirty", "output": "⠙⠊⠗⠞⠽" }, { "input": "dirtying", "output": "⠙⠊⠗⠞⠽⠬" }, { "input": "dis", "output": "⠙⠊⠎" }, { "input": "disabilities", "output": "â ²â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "disability", "output": "â ²â â ƒâ Šâ ‡â °â ½" }, { "input": "disable", "output": "â ²â â ƒâ ‡â ‘" }, { "input": "disabled", "output": "â ²â â ƒâ ‡â «" }, { "input": "disablement", "output": "â ²â â ƒâ ‡â ‘â °â ž" }, { "input": "disables", "output": "â ²â â ƒâ ‡â ‘â Ž" }, { "input": "disabling", "output": "â ²â â ƒâ ‡â ¬" }, { "input": "disabuse", "output": "â ²â â ƒâ ¥â Žâ ‘" }, { "input": "disabused", "output": "â ²â â ƒâ ¥â Žâ «" }, { "input": "disabuses", "output": "â ²â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "disabusing", "output": "â ²â â ƒâ ¥â Žâ ¬" }, { "input": "disadvantage", "output": "â ²â â ™â §â â â žâ â ›â ‘" }, { "input": "disadvantaged", "output": "â ²â â ™â §â â â žâ â ›â «" }, { "input": "disadvantageous", "output": "â ²â â ™â §â â â žâ â ›â ‘⠳⠎" }, { "input": "disadvantageously", "output": "â ²â â ™â §â â â žâ â ›â ‘⠳⠎⠇⠽" }, { "input": "disadvantages", "output": "â ²â â ™â §â â â žâ â ›â ‘â Ž" }, { "input": "disadvantaging", "output": "â ²â â ™â §â â â žâ â ›â ¬" }, { "input": "disaffect", "output": "â ²â â –⠑⠉⠞" }, { "input": "disaffected", "output": "â ²â â –⠑⠉⠞⠫" }, { "input": "disaffecting", "output": "â ²â â –⠑⠉⠞⠬" }, { "input": "disaffection", "output": "â ²â â –⠑⠉⠰â " }, { "input": "disaffects", "output": "â ²â â –⠑⠉⠞⠎" }, { "input": "disagree", "output": "â ²â â ›â —â ‘â ‘" }, { "input": "disagreeable", "output": "â ²â â ›â —⠑⠂⠃⠇⠑" }, { "input": "disagreeably", "output": "â ²â â ›â —⠑⠂⠃⠇⠽" }, { "input": "disagreed", "output": "â ²â â ›â —â ‘â «" }, { "input": "disagreeing", "output": "â ²â â ›â —â ‘â ‘â ¬" }, { "input": "disagreement", "output": "â ²â â ›â —â ‘â ‘â °â ž" }, { "input": "disagreements", "output": "â ²â â ›â —â ‘â ‘â °â žâ Ž" }, { "input": "disagrees", "output": "â ²â â ›â —â ‘â ‘â Ž" }, { "input": "disallow", "output": "â ²â â ‡â ‡â ª" }, { "input": "disallowed", "output": "â ²â â ‡â ‡â ªâ «" }, { "input": "disallowing", "output": "â ²â â ‡â ‡â ªâ ¬" }, { "input": "disallows", "output": "â ²â â ‡â ‡â ªâ Ž" }, { "input": "disambiguate", "output": "â ²â â â ƒâ Šâ ›â ¥â â žâ ‘" }, { "input": "disambiguation", "output": "â ²â â â ƒâ Šâ ›â ¥â â °â " }, { "input": "disappear", "output": "â ²â â â â ‘â œ" }, { "input": "disappearance", "output": "â ²â â â â ‘⠜⠨⠑" }, { "input": "disappearances", "output": "â ²â â â â ‘⠜⠨⠑⠎" }, { "input": "disappeared", "output": "â ²â â â â ‘⠜⠫" }, { "input": "disappearing", "output": "â ²â â â â ‘⠜⠬" }, { "input": "disappears", "output": "â ²â â â â ‘⠜⠎" }, { "input": "disappoint", "output": "â ²â â â â •⠔⠞" }, { "input": "disappointed", "output": "â ²â â â â •⠔⠞⠫" }, { "input": "disappointing", "output": "â ²â â â â •⠔⠞⠬" }, { "input": "disappointingly", "output": "â ²â â â â •⠔⠞⠬⠇⠽" }, { "input": "disappointment", "output": "â ²â â â â •⠔⠞⠰⠞" }, { "input": "disappointments", "output": "â ²â â â â •⠔⠞⠰⠞⠎" }, { "input": "disappoints", "output": "â ²â â â â •⠔⠞⠎" }, { "input": "disapprobation", "output": "â ²â â â â —â •â ƒâ â °â " }, { "input": "disapproval", "output": "â ²â â â â —â •â §â â ‡" }, { "input": "disapprove", "output": "â ²â â â â —â •â §â ‘" }, { "input": "disapproved", "output": "â ²â â â â —â •â §â «" }, { "input": "disapproves", "output": "â ²â â â â —â •â §â ‘â Ž" }, { "input": "disapproving", "output": "â ²â â â â —â •â §â ¬" }, { "input": "disapprovingly", "output": "â ²â â â â —⠕⠧⠬⠇⠽" }, { "input": "disarm", "output": "⠲⠜â " }, { "input": "disarmament", "output": "⠲⠜â â â °â ž" }, { "input": "disarmed", "output": "⠲⠜â â «" }, { "input": "disarming", "output": "⠲⠜â â ¬" }, { "input": "disarms", "output": "⠲⠜â â Ž" }, { "input": "disarrange", "output": "⠲⠜⠗â â â ›â ‘" }, { "input": "disarranged", "output": "⠲⠜⠗â â â ›â «" }, { "input": "disarrangement", "output": "⠲⠜⠗â â â ›â ‘â °â ž" }, { "input": "disarranges", "output": "⠲⠜⠗â â â ›â ‘â Ž" }, { "input": "disarranging", "output": "⠲⠜⠗â â â ›â ¬" }, { "input": "disarray", "output": "⠲⠜⠗â â ½" }, { "input": "disarrayed", "output": "⠲⠜⠗â â ½â «" }, { "input": "disarraying", "output": "⠲⠜⠗â â ½â ¬" }, { "input": "disarrays", "output": "⠲⠜⠗â â ½â Ž" }, { "input": "disassemble", "output": "â ²â â Žâ Žâ ‘â â ƒâ ‡â ‘" }, { "input": "disassembled", "output": "â ²â â Žâ Žâ ‘â â ƒâ ‡â «" }, { "input": "disassembles", "output": "â ²â â Žâ Žâ ‘â â ƒâ ‡â ‘â Ž" }, { "input": "disassembling", "output": "â ²â â Žâ Žâ ‘â â ƒâ ‡â ¬" }, { "input": "disassociate", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ ‘" }, { "input": "disassociated", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ «" }, { "input": "disassociates", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ ‘â Ž" }, { "input": "disassociating", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ ¬" }, { "input": "disaster", "output": "â ²â â Œâ »" }, { "input": "disasters", "output": "â ²â â Œâ »â Ž" }, { "input": "disastrous", "output": "â ²â â Œâ —⠳⠎" }, { "input": "disastrously", "output": "â ²â â Œâ —⠳⠎⠇⠽" }, { "input": "disavow", "output": "â ²â â §â ª" }, { "input": "disavowal", "output": "â ²â â §â ªâ â ‡" }, { "input": "disavowals", "output": "â ²â â §â ªâ â ‡â Ž" }, { "input": "disavowed", "output": "â ²â â §â ªâ «" }, { "input": "disavowing", "output": "â ²â â §â ªâ ¬" }, { "input": "disavows", "output": "â ²â â §â ªâ Ž" }, { "input": "disband", "output": "⠲⠃⠯" }, { "input": "disbanded", "output": "⠲⠃⠯⠫" }, { "input": "disbanding", "output": "⠲⠃⠯⠬" }, { "input": "disbands", "output": "⠲⠃⠯⠎" }, { "input": "disbar", "output": "⠲⠃⠜" }, { "input": "disbarment", "output": "⠲⠃⠜⠰⠞" }, { "input": "disbarred", "output": "⠲⠃⠜⠗⠫" }, { "input": "disbarring", "output": "⠲⠃⠜⠗⠬" }, { "input": "disbars", "output": "⠲⠃⠜⠎" }, { "input": "disbelief", "output": "⠲⠃⠑⠇⠊⠑⠋" }, { "input": "disbelieve", "output": "⠲⠃⠑⠇⠊⠑⠧⠑" }, { "input": "disbelieved", "output": "⠲⠃⠑⠇⠊⠑⠧⠫" }, { "input": "disbelieves", "output": "⠲⠃⠑⠇⠊⠑⠧⠑⠎" }, { "input": "disbelieving", "output": "⠲⠃⠑⠇⠊⠑⠧⠬" }, { "input": "disburse", "output": "⠲⠃⠥⠗⠎⠑" }, { "input": "disbursed", "output": "⠲⠃⠥⠗⠎⠫" }, { "input": "disbursement", "output": "⠲⠃⠥⠗⠎⠑⠰⠞" }, { "input": "disbursements", "output": "⠲⠃⠥⠗⠎⠑⠰⠞⠎" }, { "input": "disburses", "output": "⠲⠃⠥⠗⠎⠑⠎" }, { "input": "disbursing", "output": "⠲⠃⠥⠗⠎⠬" }, { "input": "disc", "output": "⠙⠊⠎⠉" }, { "input": "discard", "output": "⠲⠉⠜⠙" }, { "input": "discarded", "output": "⠲⠉⠜⠙⠫" }, { "input": "discarding", "output": "⠲⠉⠜⠙⠬" }, { "input": "discards", "output": "⠲⠉⠜⠙⠎" }, { "input": "discern", "output": "⠲⠉⠻â " }, { "input": "discerned", "output": "⠲⠉⠻â â «" }, { "input": "discernible", "output": "⠲⠉⠻â â Šâ ƒâ ‡â ‘" }, { "input": "discerning", "output": "⠲⠉⠻â â ¬" }, { "input": "discernment", "output": "⠲⠉⠻â â °â ž" }, { "input": "discerns", "output": "⠲⠉⠻â â Ž" }, { "input": "discharge", "output": "⠲⠡⠜⠛⠑" }, { "input": "discharged", "output": "⠲⠡⠜⠛⠫" }, { "input": "discharges", "output": "⠲⠡⠜⠛⠑⠎" }, { "input": "discharging", "output": "⠲⠡⠜⠛⠬" }, { "input": "disciple", "output": "⠲⠉⠊â â ‡â ‘" }, { "input": "disciples", "output": "⠲⠉⠊â â ‡â ‘â Ž" }, { "input": "disciplinarian", "output": "⠲⠉⠊â â ‡â ”⠜⠊â â " }, { "input": "disciplinarians", "output": "⠲⠉⠊â â ‡â ”⠜⠊â â â Ž" }, { "input": "disciplinary", "output": "⠲⠉⠊â â ‡â ”⠜⠽" }, { "input": "discipline", "output": "⠲⠉⠊â â ‡â ”â ‘" }, { "input": "disciplined", "output": "⠲⠉⠊â â ‡â ”â «" }, { "input": "disciplines", "output": "⠲⠉⠊â â ‡â ”â ‘â Ž" }, { "input": "disciplining", "output": "⠲⠉⠊â â ‡â ”â ¬" }, { "input": "disclaim", "output": "⠲⠉⠇â â Šâ " }, { "input": "disclaimed", "output": "⠲⠉⠇â â Šâ â «" }, { "input": "disclaimer", "output": "⠲⠉⠇â â Šâ â »" }, { "input": "disclaimers", "output": "⠲⠉⠇â â Šâ â »â Ž" }, { "input": "disclaiming", "output": "⠲⠉⠇â â Šâ â ¬" }, { "input": "disclaims", "output": "⠲⠉⠇â â Šâ â Ž" }, { "input": "disclose", "output": "⠲⠉⠇⠕⠎⠑" }, { "input": "disclosed", "output": "⠲⠉⠇⠕⠎⠫" }, { "input": "discloses", "output": "⠲⠉⠇⠕⠎⠑⠎" }, { "input": "disclosing", "output": "⠲⠉⠇⠕⠎⠬" }, { "input": "disclosure", "output": "⠲⠉⠇⠕⠎⠥⠗⠑" }, { "input": "disclosures", "output": "⠲⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "disco", "output": "⠲⠉⠕" }, { "input": "discoed", "output": "⠲⠉⠕⠫" }, { "input": "discoing", "output": "⠲⠉⠕⠬" }, { "input": "discolor", "output": "⠲⠉⠕⠇⠕⠗" }, { "input": "discoloration", "output": "⠲⠉⠕⠇⠕⠗â â °â " }, { "input": "discolorations", "output": "⠲⠉⠕⠇⠕⠗â â °â â Ž" }, { "input": "discolored", "output": "⠲⠉⠕⠇⠕⠗⠫" }, { "input": "discoloring", "output": "⠲⠉⠕⠇⠕⠗⠬" }, { "input": "discolors", "output": "⠲⠉⠕⠇⠕⠗⠎" }, { "input": "discombobulate", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ ‘" }, { "input": "discombobulated", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ «" }, { "input": "discombobulates", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ ‘â Ž" }, { "input": "discombobulating", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ ¬" }, { "input": "discomfit", "output": "⠲⠉⠕â â ‹â Šâ ž" }, { "input": "discomfited", "output": "⠲⠉⠕â â ‹â Šâ žâ «" }, { "input": "discomfiting", "output": "⠲⠉⠕â â ‹â Šâ žâ ¬" }, { "input": "discomfits", "output": "⠲⠉⠕â â ‹â Šâ žâ Ž" }, { "input": "discomfiture", "output": "⠲⠉⠕â â ‹â Šâ žâ ¥â —â ‘" }, { "input": "discomfort", "output": "⠲⠉⠕â â ¿â ž" }, { "input": "discomforted", "output": "⠲⠉⠕â â ¿â žâ «" }, { "input": "discomforting", "output": "⠲⠉⠕â â ¿â žâ ¬" }, { "input": "discomforts", "output": "⠲⠉⠕â â ¿â žâ Ž" }, { "input": "discommode", "output": "⠲⠉⠕â â â •⠙⠑" }, { "input": "discommoded", "output": "⠲⠉⠕â â â •⠙⠫" }, { "input": "discommodes", "output": "⠲⠉⠕â â â •⠙⠑⠎" }, { "input": "discommoding", "output": "⠲⠉⠕â â â •⠙⠬" }, { "input": "discompose", "output": "⠲⠉⠕â â â •â Žâ ‘" }, { "input": "discomposed", "output": "⠲⠉⠕â â â •â Žâ «" }, { "input": "discomposes", "output": "⠲⠉⠕â â â •â Žâ ‘â Ž" }, { "input": "discomposing", "output": "⠲⠉⠕â â â •â Žâ ¬" }, { "input": "discomposure", "output": "⠲⠉⠕â â â •⠎⠥⠗⠑" }, { "input": "disconcert", "output": "⠲⠉⠕â â ‰â »â ž" }, { "input": "disconcerted", "output": "⠲⠉⠕â â ‰â »â žâ «" }, { "input": "disconcerting", "output": "⠲⠉⠕â â ‰â »â žâ ¬" }, { "input": "disconcerts", "output": "⠲⠉⠕â â ‰â »â žâ Ž" }, { "input": "disconnect", "output": "⠲⠉⠕â â â ‘⠉⠞" }, { "input": "disconnected", "output": "⠲⠉⠕â â â ‘⠉⠞⠫" }, { "input": "disconnectedly", "output": "⠲⠉⠕â â â ‘⠉⠞⠫⠇⠽" }, { "input": "disconnecting", "output": "⠲⠉⠕â â â ‘⠉⠞⠬" }, { "input": "disconnection", "output": "⠲⠉⠕â â â ‘⠉⠰â " }, { "input": "disconnections", "output": "⠲⠉⠕â â â ‘⠉⠰â â Ž" }, { "input": "disconnects", "output": "⠲⠉⠕â â â ‘⠉⠞⠎" }, { "input": "disconsolate", "output": "⠲⠉⠕â â Žâ •â ‡â â žâ ‘" }, { "input": "disconsolately", "output": "⠲⠉⠕â â Žâ •â ‡â â žâ ‘⠇⠽" }, { "input": "discontent", "output": "⠲⠉⠕â â žâ ¢â ž" }, { "input": "discontented", "output": "⠲⠉⠕â â žâ ¢â žâ «" }, { "input": "discontentedly", "output": "⠲⠉⠕â â žâ ¢â žâ «â ‡â ½" }, { "input": "discontenting", "output": "⠲⠉⠕â â žâ ¢â žâ ¬" }, { "input": "discontentment", "output": "⠲⠉⠕â â žâ ¢â žâ °â ž" }, { "input": "discontents", "output": "⠲⠉⠕â â žâ ¢â žâ Ž" }, { "input": "discontinuance", "output": "⠲⠉⠕â â žâ ”⠥⠨⠑" }, { "input": "discontinuances", "output": "⠲⠉⠕â â žâ ”⠥⠨⠑⠎" }, { "input": "discontinuation", "output": "⠲⠉⠕â â žâ ”â ¥â â °â " }, { "input": "discontinuations", "output": "⠲⠉⠕â â žâ ”â ¥â â °â â Ž" }, { "input": "discontinue", "output": "⠲⠉⠕â â žâ ”⠥⠑" }, { "input": "discontinued", "output": "⠲⠉⠕â â žâ ”⠥⠫" }, { "input": "discontinues", "output": "⠲⠉⠕â â žâ ”⠥⠑⠎" }, { "input": "discontinuing", "output": "⠲⠉⠕â â žâ ”⠥⠬" }, { "input": "discontinuities", "output": "⠲⠉⠕â â žâ ”⠥⠊⠞⠊⠑⠎" }, { "input": "discontinuity", "output": "⠲⠉⠕â â žâ ”⠥⠰⠽" }, { "input": "discontinuous", "output": "⠲⠉⠕â â žâ ”⠥⠳⠎" }, { "input": "discord", "output": "⠲⠉⠕⠗⠙" }, { "input": "discordant", "output": "⠲⠉⠕⠗⠙â â â ž" }, { "input": "discorded", "output": "⠲⠉⠕⠗⠙⠫" }, { "input": "discording", "output": "⠲⠉⠕⠗⠙⠬" }, { "input": "discords", "output": "⠲⠉⠕⠗⠙⠎" }, { "input": "discos", "output": "⠲⠉⠕⠎" }, { "input": "discotheque", "output": "⠲⠉⠕⠮⠟⠥⠑" }, { "input": "discotheques", "output": "⠲⠉⠕⠮⠟⠥⠑⠎" }, { "input": "discount", "output": "⠲⠉⠨⠞" }, { "input": "discounted", "output": "⠲⠉⠨⠞⠫" }, { "input": "discountenance", "output": "⠲⠉⠨⠞⠢⠨⠑" }, { "input": "discountenanced", "output": "⠲⠉⠨⠞⠢⠨⠑⠙" }, { "input": "discountenances", "output": "⠲⠉⠨⠞⠢⠨⠑⠎" }, { "input": "discountenancing", "output": "⠲⠉⠨⠞⠢â â â ‰â ¬" }, { "input": "discounting", "output": "⠲⠉⠨⠞⠬" }, { "input": "discounts", "output": "⠲⠉⠨⠞⠎" }, { "input": "discourage", "output": "⠲⠉⠳⠗â â ›â ‘" }, { "input": "discouraged", "output": "⠲⠉⠳⠗â â ›â «" }, { "input": "discouragement", "output": "⠲⠉⠳⠗â â ›â ‘â °â ž" }, { "input": "discouragements", "output": "⠲⠉⠳⠗â â ›â ‘â °â žâ Ž" }, { "input": "discourages", "output": "⠲⠉⠳⠗â â ›â ‘â Ž" }, { "input": "discouraging", "output": "⠲⠉⠳⠗â â ›â ¬" }, { "input": "discouragingly", "output": "⠲⠉⠳⠗â â ›â ¬â ‡â ½" }, { "input": "discourse", "output": "⠲⠉⠳⠗⠎⠑" }, { "input": "discoursed", "output": "⠲⠉⠳⠗⠎⠫" }, { "input": "discourses", "output": "⠲⠉⠳⠗⠎⠑⠎" }, { "input": "discoursing", "output": "⠲⠉⠳⠗⠎⠬" }, { "input": "discourteous", "output": "⠲⠉⠳⠗⠞⠑⠳⠎" }, { "input": "discourteously", "output": "⠲⠉⠳⠗⠞⠑⠳⠎⠇⠽" }, { "input": "discourtesies", "output": "⠲⠉⠳⠗⠞⠑⠎⠊⠑⠎" }, { "input": "discourtesy", "output": "⠲⠉⠳⠗⠞⠑⠎⠽" }, { "input": "discover", "output": "⠲⠉⠕⠧⠻" }, { "input": "discovered", "output": "⠲⠉⠕⠧⠻⠫" }, { "input": "discoverer", "output": "⠲⠉⠕⠧⠻⠻" }, { "input": "discoverers", "output": "⠲⠉⠕⠧⠻⠻⠎" }, { "input": "discoveries", "output": "⠲⠉⠕⠧⠻⠊⠑⠎" }, { "input": "discovering", "output": "⠲⠉⠕⠧⠻⠬" }, { "input": "discovers", "output": "⠲⠉⠕⠧⠻⠎" }, { "input": "discovery", "output": "⠲⠉⠕⠧⠻⠽" }, { "input": "discredit", "output": "⠲⠉⠗⠫⠊⠞" }, { "input": "discreditable", "output": "⠲⠉⠗⠫⠊⠞â â ƒâ ‡â ‘" }, { "input": "discredited", "output": "⠲⠉⠗⠫⠊⠞⠫" }, { "input": "discrediting", "output": "⠲⠉⠗⠫⠊⠞⠬" }, { "input": "discredits", "output": "⠲⠉⠗⠫⠊⠞⠎" }, { "input": "discreet", "output": "⠲⠉⠗⠑⠑⠞" }, { "input": "discreeter", "output": "⠲⠉⠗⠑⠑⠞⠻" }, { "input": "discreetest", "output": "⠲⠉⠗⠑⠑⠞⠑⠌" }, { "input": "discreetly", "output": "⠲⠉⠗⠑⠑⠞⠇⠽" }, { "input": "discrepancies", "output": "⠲⠉⠗⠑â â â â ‰â Šâ ‘â Ž" }, { "input": "discrepancy", "output": "⠲⠉⠗⠑â â â â ‰â ½" }, { "input": "discrete", "output": "⠲⠉⠗⠑⠞⠑" }, { "input": "discretion", "output": "⠲⠉⠗⠑⠰â " }, { "input": "discretionary", "output": "⠲⠉⠗⠑⠰â â œâ ½" }, { "input": "discriminant", "output": "⠲⠉⠗⠊â â ”â â â ž" }, { "input": "discriminate", "output": "⠲⠉⠗⠊â â ”â â žâ ‘" }, { "input": "discriminated", "output": "⠲⠉⠗⠊â â ”â â žâ «" }, { "input": "discriminates", "output": "⠲⠉⠗⠊â â ”â â žâ ‘â Ž" }, { "input": "discriminating", "output": "⠲⠉⠗⠊â â ”â â žâ ¬" }, { "input": "discrimination", "output": "⠲⠉⠗⠊â â ”â â °â " }, { "input": "discriminatory", "output": "⠲⠉⠗⠊â â ”â â žâ •â —â ½" }, { "input": "discs", "output": "⠙⠊⠎⠉⠎" }, { "input": "discursive", "output": "⠲⠉⠥⠗⠎⠊⠧⠑" }, { "input": "discus", "output": "⠲⠉⠥⠎" }, { "input": "discuses", "output": "⠲⠉⠥⠎⠑⠎" }, { "input": "discuss", "output": "⠲⠉⠥⠎⠎" }, { "input": "discussant", "output": "⠲⠉⠥⠎⠎â â â ž" }, { "input": "discussants", "output": "⠲⠉⠥⠎⠎â â â žâ Ž" }, { "input": "discussed", "output": "⠲⠉⠥⠎⠎⠫" }, { "input": "discusses", "output": "⠲⠉⠥⠎⠎⠑⠎" }, { "input": "discussing", "output": "⠲⠉⠥⠎⠎⠬" }, { "input": "discussion", "output": "⠲⠉⠥⠎⠨â " }, { "input": "discussions", "output": "⠲⠉⠥⠎⠨â â Ž" }, { "input": "disdain", "output": "⠲⠙â â ”" }, { "input": "disdained", "output": "⠲⠙â â ”â «" }, { "input": "disdainful", "output": "⠲⠙â â ”â °â ‡" }, { "input": "disdainfully", "output": "⠲⠙â â ”⠰⠇⠇⠽" }, { "input": "disdaining", "output": "⠲⠙â â ”â ¬" }, { "input": "disdains", "output": "⠲⠙â â ”â Ž" }, { "input": "disease", "output": "⠲⠂⠎⠑" }, { "input": "diseased", "output": "⠲⠂⠎⠫" }, { "input": "diseases", "output": "⠲⠂⠎⠑⠎" }, { "input": "disembark", "output": "⠲⠑â â ƒâ œâ …" }, { "input": "disembarkation", "output": "⠲⠑â â ƒâ œâ …â â °â " }, { "input": "disembarked", "output": "⠲⠑â â ƒâ œâ …â «" }, { "input": "disembarking", "output": "⠲⠑â â ƒâ œâ …â ¬" }, { "input": "disembarks", "output": "⠲⠑â â ƒâ œâ …â Ž" }, { "input": "disembodied", "output": "⠲⠑â â ƒâ •⠙⠊⠫" }, { "input": "disembodies", "output": "⠲⠑â â ƒâ •⠙⠊⠑⠎" }, { "input": "disembody", "output": "⠲⠑â â ƒâ •⠙⠽" }, { "input": "disembodying", "output": "⠲⠑â â ƒâ •⠙⠽⠬" }, { "input": "disembowel", "output": "⠲⠑â â ƒâ ªâ ‘â ‡" }, { "input": "disemboweled", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠫" }, { "input": "disemboweling", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠬" }, { "input": "disembowelled", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠇⠫" }, { "input": "disembowelling", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠇⠬" }, { "input": "disembowels", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠎" }, { "input": "disenchant", "output": "⠲⠢⠡â â â ž" }, { "input": "disenchanted", "output": "⠲⠢⠡â â â žâ «" }, { "input": "disenchanting", "output": "⠲⠢⠡â â â žâ ¬" }, { "input": "disenchantment", "output": "⠲⠢⠡â â â žâ °â ž" }, { "input": "disenchants", "output": "⠲⠢⠡â â â žâ Ž" }, { "input": "disencumber", "output": "⠲⠢⠉⠥â â ƒâ »" }, { "input": "disencumbered", "output": "⠲⠢⠉⠥â â ƒâ »â «" }, { "input": "disencumbering", "output": "⠲⠢⠉⠥â â ƒâ »â ¬" }, { "input": "disencumbers", "output": "⠲⠢⠉⠥â â ƒâ »â Ž" }, { "input": "disenfranchise", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘" }, { "input": "disenfranchised", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ «" }, { "input": "disenfranchisement", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘â °â ž" }, { "input": "disenfranchises", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "disenfranchising", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ¬" }, { "input": "disengage", "output": "⠲⠢⠛â â ›â ‘" }, { "input": "disengaged", "output": "⠲⠢⠛â â ›â «" }, { "input": "disengagement", "output": "⠲⠢⠛â â ›â ‘â °â ž" }, { "input": "disengagements", "output": "⠲⠢⠛â â ›â ‘â °â žâ Ž" }, { "input": "disengages", "output": "⠲⠢⠛â â ›â ‘â Ž" }, { "input": "disengaging", "output": "⠲⠢⠛â â ›â ¬" }, { "input": "disentangle", "output": "⠲⠢⠞â â â ›â ‡â ‘" }, { "input": "disentangled", "output": "⠲⠢⠞â â â ›â ‡â «" }, { "input": "disentanglement", "output": "⠲⠢⠞â â â ›â ‡â ‘â °â ž" }, { "input": "disentangles", "output": "⠲⠢⠞â â â ›â ‡â ‘â Ž" }, { "input": "disentangling", "output": "⠲⠢⠞â â â ›â ‡â ¬" }, { "input": "disestablish", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©" }, { "input": "disestablished", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â «" }, { "input": "disestablishes", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "disestablishing", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â ¬" }, { "input": "disfavor", "output": "⠲⠋â â §â •â —" }, { "input": "disfavored", "output": "⠲⠋â â §â •â —â «" }, { "input": "disfavoring", "output": "⠲⠋â â §â •â —â ¬" }, { "input": "disfavors", "output": "⠲⠋â â §â •â —â Ž" }, { "input": "disfigure", "output": "⠲⠋⠊⠛⠥⠗⠑" }, { "input": "disfigured", "output": "⠲⠋⠊⠛⠥⠗⠫" }, { "input": "disfigurement", "output": "⠲⠋⠊⠛⠥⠗⠑⠰⠞" }, { "input": "disfigurements", "output": "⠲⠋⠊⠛⠥⠗⠑⠰⠞⠎" }, { "input": "disfigures", "output": "⠲⠋⠊⠛⠥⠗⠑⠎" }, { "input": "disfiguring", "output": "⠲⠋⠊⠛⠥⠗⠬" }, { "input": "disfranchise", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘" }, { "input": "disfranchised", "output": "⠲⠋⠗â â â ¡â Šâ Žâ «" }, { "input": "disfranchisement", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘â °â ž" }, { "input": "disfranchises", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "disfranchising", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ¬" }, { "input": "disgorge", "output": "⠲⠛⠕⠗⠛⠑" }, { "input": "disgorged", "output": "⠲⠛⠕⠗⠛⠫" }, { "input": "disgorges", "output": "⠲⠛⠕⠗⠛⠑⠎" }, { "input": "disgorging", "output": "⠲⠛⠕⠗⠛⠬" }, { "input": "disgrace", "output": "⠲⠛⠗â â ‰â ‘" }, { "input": "disgraced", "output": "⠲⠛⠗â â ‰â «" }, { "input": "disgraceful", "output": "⠲⠛⠗â â ‰â ‘â °â ‡" }, { "input": "disgracefully", "output": "⠲⠛⠗â â ‰â ‘⠰⠇⠇⠽" }, { "input": "disgraces", "output": "⠲⠛⠗â â ‰â ‘â Ž" }, { "input": "disgracing", "output": "⠲⠛⠗â â ‰â ¬" }, { "input": "disgruntle", "output": "⠲⠛⠗⠥â â žâ ‡â ‘" }, { "input": "disgruntled", "output": "⠲⠛⠗⠥â â žâ ‡â «" }, { "input": "disgruntles", "output": "⠲⠛⠗⠥â â žâ ‡â ‘â Ž" }, { "input": "disgruntling", "output": "⠲⠛⠗⠥â â žâ ‡â ¬" }, { "input": "disguise", "output": "⠲⠛⠥⠊⠎⠑" }, { "input": "disguised", "output": "⠲⠛⠥⠊⠎⠫" }, { "input": "disguises", "output": "⠲⠛⠥⠊⠎⠑⠎" }, { "input": "disguising", "output": "⠲⠛⠥⠊⠎⠬" }, { "input": "disgust", "output": "⠲⠛⠥⠌" }, { "input": "disgusted", "output": "⠲⠛⠥⠌⠫" }, { "input": "disgustedly", "output": "⠲⠛⠥⠌⠫⠇⠽" }, { "input": "disgusting", "output": "⠲⠛⠥⠌⠬" }, { "input": "disgustingly", "output": "⠲⠛⠥⠌⠬⠇⠽" }, { "input": "disgusts", "output": "⠲⠛⠥⠌⠎" }, { "input": "dish", "output": "⠙⠊⠩" }, { "input": "disharmonious", "output": "⠲⠓⠜â â •â â Šâ ³â Ž" }, { "input": "disharmony", "output": "⠲⠓⠜â â •â â ½" }, { "input": "dishcloth", "output": "⠙⠊⠩⠉⠇⠕⠹" }, { "input": "dishcloths", "output": "⠙⠊⠩⠉⠇⠕⠹⠎" }, { "input": "dishearten", "output": "⠲⠓⠑⠜⠞⠢" }, { "input": "disheartened", "output": "⠲⠓⠑⠜⠞⠢⠫" }, { "input": "disheartening", "output": "⠲⠓⠑⠜⠞⠢⠬" }, { "input": "disheartens", "output": "⠲⠓⠑⠜⠞⠢⠎" }, { "input": "dished", "output": "⠙⠊⠩⠫" }, { "input": "dishes", "output": "⠙⠊⠩⠑⠎" }, { "input": "dishevel", "output": "⠙⠊⠩⠑⠧⠑⠇" }, { "input": "disheveled", "output": "⠙⠊⠩⠑⠧⠑⠇⠫" }, { "input": "disheveling", "output": "⠙⠊⠩⠑⠧⠑⠇⠬" }, { "input": "dishevelled", "output": "⠙⠊⠩⠑⠧⠑⠇⠇⠫" }, { "input": "dishevelling", "output": "⠙⠊⠩⠑⠧⠑⠇⠇⠬" }, { "input": "dishevels", "output": "⠙⠊⠩⠑⠧⠑⠇⠎" }, { "input": "dishing", "output": "⠙⠊⠩⠬" }, { "input": "dishonest", "output": "⠲⠓â â •â Œ" }, { "input": "dishonestly", "output": "⠲⠓â â •⠌⠇⠽" }, { "input": "dishonesty", "output": "⠲⠓â â •⠌⠽" }, { "input": "dishonor", "output": "⠲⠓⠕â â •â —" }, { "input": "dishonorable", "output": "⠲⠓⠕â â •â —â â ƒâ ‡â ‘" }, { "input": "dishonorably", "output": "⠲⠓⠕â â •â —â â ƒâ ‡â ½" }, { "input": "dishonored", "output": "⠲⠓⠕â â •â —â «" }, { "input": "dishonoring", "output": "⠲⠓⠕â â •â —â ¬" }, { "input": "dishonors", "output": "⠲⠓⠕â â •â —â Ž" }, { "input": "dishpan", "output": "⠙⠊⠩â â â " }, { "input": "dishpans", "output": "⠙⠊⠩â â â â Ž" }, { "input": "dishrag", "output": "⠙⠊⠩⠗â â ›" }, { "input": "dishrags", "output": "⠙⠊⠩⠗â â ›â Ž" }, { "input": "dishtowel", "output": "⠙⠊⠩⠞⠪⠑⠇" }, { "input": "dishtowels", "output": "⠙⠊⠩⠞⠪⠑⠇⠎" }, { "input": "dishwasher", "output": "⠙⠊⠩⠺â â ©â »" }, { "input": "dishwashers", "output": "⠙⠊⠩⠺â â ©â »â Ž" }, { "input": "dishwater", "output": "⠙⠊⠩⠺â â žâ »" }, { "input": "disillusion", "output": "⠲⠊⠇⠇⠥⠨â " }, { "input": "disillusioned", "output": "⠲⠊⠇⠇⠥⠨â â «" }, { "input": "disillusioning", "output": "⠲⠊⠇⠇⠥⠨â â ¬" }, { "input": "disillusionment", "output": "⠲⠊⠇⠇⠥⠨â â °â ž" }, { "input": "disillusions", "output": "⠲⠊⠇⠇⠥⠨â â Ž" }, { "input": "disincentive", "output": "⠲⠔⠉⠢⠞⠊⠧⠑" }, { "input": "disinclination", "output": "⠲⠔⠉⠇⠔â â °â " }, { "input": "disincline", "output": "⠲⠔⠉⠇⠔⠑" }, { "input": "disinclined", "output": "⠲⠔⠉⠇⠔⠫" }, { "input": "disinclines", "output": "⠲⠔⠉⠇⠔⠑⠎" }, { "input": "disinclining", "output": "⠲⠔⠉⠇⠔⠬" }, { "input": "disinfect", "output": "⠲⠔⠋⠑⠉⠞" }, { "input": "disinfectant", "output": "⠲⠔⠋⠑⠉⠞â â â ž" }, { "input": "disinfectants", "output": "⠲⠔⠋⠑⠉⠞â â â žâ Ž" }, { "input": "disinfected", "output": "⠲⠔⠋⠑⠉⠞⠫" }, { "input": "disinfecting", "output": "⠲⠔⠋⠑⠉⠞⠬" }, { "input": "disinfects", "output": "⠲⠔⠋⠑⠉⠞⠎" }, { "input": "disinformation", "output": "⠲⠔⠿â â â °â " }, { "input": "disingenuous", "output": "⠲⠔⠛⠢⠥⠳⠎" }, { "input": "disinherit", "output": "⠲⠔⠓⠻⠊⠞" }, { "input": "disinherited", "output": "⠲⠔⠓⠻⠊⠞⠫" }, { "input": "disinheriting", "output": "⠲⠔⠓⠻⠊⠞⠬" }, { "input": "disinherits", "output": "⠲⠔⠓⠻⠊⠞⠎" }, { "input": "disintegrate", "output": "⠲⠔⠞⠑⠛⠗â â žâ ‘" }, { "input": "disintegrated", "output": "⠲⠔⠞⠑⠛⠗â â žâ «" }, { "input": "disintegrates", "output": "⠲⠔⠞⠑⠛⠗â â žâ ‘â Ž" }, { "input": "disintegrating", "output": "⠲⠔⠞⠑⠛⠗â â žâ ¬" }, { "input": "disintegration", "output": "⠲⠔⠞⠑⠛⠗â â °â " }, { "input": "disinter", "output": "⠲⠔⠞⠻" }, { "input": "disinterest", "output": "⠲⠔⠞⠻⠑⠌" }, { "input": "disinterested", "output": "⠲⠔⠞⠻⠑⠌⠫" }, { "input": "disinterestedly", "output": "⠲⠔⠞⠻⠑⠌⠫⠇⠽" }, { "input": "disinterests", "output": "⠲⠔⠞⠻⠑⠌⠎" }, { "input": "disinterment", "output": "⠲⠔⠞⠻⠰⠞" }, { "input": "disinterred", "output": "⠲⠔⠞⠻⠗⠫" }, { "input": "disinterring", "output": "⠲⠔⠞⠻⠗⠬" }, { "input": "disinters", "output": "⠲⠔⠞⠻⠎" }, { "input": "disjoint", "output": "⠲⠚⠕⠔⠞" }, { "input": "disjointed", "output": "⠲⠚⠕⠔⠞⠫" }, { "input": "disjointedly", "output": "⠲⠚⠕⠔⠞⠫⠇⠽" }, { "input": "disjointing", "output": "⠲⠚⠕⠔⠞⠬" }, { "input": "disjoints", "output": "⠲⠚⠕⠔⠞⠎" }, { "input": "disk", "output": "⠙⠊⠎⠅" }, { "input": "diskette", "output": "⠙⠊⠎⠅⠑⠞⠞⠑" }, { "input": "diskettes", "output": "⠙⠊⠎⠅⠑⠞⠞⠑⠎" }, { "input": "disks", "output": "⠙⠊⠎⠅⠎" }, { "input": "dislike", "output": "⠲⠇⠊⠅⠑" }, { "input": "disliked", "output": "⠲⠇⠊⠅⠫" }, { "input": "dislikes", "output": "⠲⠇⠊⠅⠑⠎" }, { "input": "disliking", "output": "⠲⠇⠊⠅⠬" }, { "input": "dislocate", "output": "⠲⠇⠕⠉â â žâ ‘" }, { "input": "dislocated", "output": "⠲⠇⠕⠉â â žâ «" }, { "input": "dislocates", "output": "⠲⠇⠕⠉â â žâ ‘â Ž" }, { "input": "dislocating", "output": "⠲⠇⠕⠉â â žâ ¬" }, { "input": "dislocation", "output": "⠲⠇⠕⠉â â °â " }, { "input": "dislocations", "output": "⠲⠇⠕⠉â â °â â Ž" }, { "input": "dislodge", "output": "⠲⠇⠕⠙⠛⠑" }, { "input": "dislodged", "output": "⠲⠇⠕⠙⠛⠫" }, { "input": "dislodges", "output": "⠲⠇⠕⠙⠛⠑⠎" }, { "input": "dislodging", "output": "⠲⠇⠕⠙⠛⠬" }, { "input": "disloyal", "output": "⠲⠇⠕⠽â â ‡" }, { "input": "disloyally", "output": "⠲⠇⠕⠽â â ‡â ‡â ½" }, { "input": "disloyalty", "output": "⠲⠇⠕⠽â â ‡â žâ ½" }, { "input": "dismal", "output": "â ²â â â ‡" }, { "input": "dismally", "output": "â ²â â â ‡â ‡â ½" }, { "input": "dismantle", "output": "â ²â â â â žâ ‡â ‘" }, { "input": "dismantled", "output": "â ²â â â â žâ ‡â «" }, { "input": "dismantles", "output": "â ²â â â â žâ ‡â ‘â Ž" }, { "input": "dismantling", "output": "â ²â â â â žâ ‡â ¬" }, { "input": "dismay", "output": "â ²â â â ½" }, { "input": "dismayed", "output": "â ²â â â ½â «" }, { "input": "dismaying", "output": "â ²â â â ½â ¬" }, { "input": "dismays", "output": "â ²â â â ½â Ž" }, { "input": "dismember", "output": "â ²â â ‘â â ƒâ »" }, { "input": "dismembered", "output": "â ²â â ‘â â ƒâ »â «" }, { "input": "dismembering", "output": "â ²â â ‘â â ƒâ »â ¬" }, { "input": "dismemberment", "output": "â ²â â ‘â â ƒâ »â °â ž" }, { "input": "dismembers", "output": "â ²â â ‘â â ƒâ »â Ž" }, { "input": "dismiss", "output": "â ²â â Šâ Žâ Ž" }, { "input": "dismissal", "output": "â ²â â Šâ Žâ Žâ â ‡" }, { "input": "dismissals", "output": "â ²â â Šâ Žâ Žâ â ‡â Ž" }, { "input": "dismissed", "output": "â ²â â Šâ Žâ Žâ «" }, { "input": "dismisses", "output": "â ²â â Šâ Žâ Žâ ‘â Ž" }, { "input": "dismissing", "output": "â ²â â Šâ Žâ Žâ ¬" }, { "input": "dismissive", "output": "â ²â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "dismount", "output": "â ²â â ¨â ž" }, { "input": "dismounted", "output": "â ²â â ¨â žâ «" }, { "input": "dismounting", "output": "â ²â â ¨â žâ ¬" }, { "input": "dismounts", "output": "â ²â â ¨â žâ Ž" }, { "input": "disobedience", "output": "⠲⠕⠃⠫⠊⠰⠑" }, { "input": "disobedient", "output": "⠲⠕⠃⠫⠊⠢⠞" }, { "input": "disobediently", "output": "⠲⠕⠃⠫⠊⠢⠞⠇⠽" }, { "input": "disobey", "output": "⠲⠕⠃⠑⠽" }, { "input": "disobeyed", "output": "⠲⠕⠃⠑⠽⠫" }, { "input": "disobeying", "output": "⠲⠕⠃⠑⠽⠬" }, { "input": "disobeys", "output": "⠲⠕⠃⠑⠽⠎" }, { "input": "disoblige", "output": "⠲⠕⠃⠇⠊⠛⠑" }, { "input": "disobliged", "output": "⠲⠕⠃⠇⠊⠛⠫" }, { "input": "disobliges", "output": "⠲⠕⠃⠇⠊⠛⠑⠎" }, { "input": "disobliging", "output": "⠲⠕⠃⠇⠊⠛⠬" }, { "input": "disorder", "output": "⠲⠕⠗⠙⠻" }, { "input": "disordered", "output": "⠲⠕⠗⠙⠻⠫" }, { "input": "disordering", "output": "⠲⠕⠗⠙⠻⠬" }, { "input": "disorderliness", "output": "⠲⠕⠗⠙⠻⠇⠊⠰⠎" }, { "input": "disorderly", "output": "⠲⠕⠗⠙⠻⠇⠽" }, { "input": "disorders", "output": "⠲⠕⠗⠙⠻⠎" }, { "input": "disorganization", "output": "⠲⠕⠗⠛â â â Šâ µâ â °â " }, { "input": "disorganize", "output": "⠲⠕⠗⠛â â â Šâ µâ ‘" }, { "input": "disorganized", "output": "⠲⠕⠗⠛â â â Šâ µâ «" }, { "input": "disorganizes", "output": "⠲⠕⠗⠛â â â Šâ µâ ‘â Ž" }, { "input": "disorganizing", "output": "⠲⠕⠗⠛â â â Šâ µâ ¬" }, { "input": "disorient", "output": "⠲⠕⠗⠊⠢⠞" }, { "input": "disorientation", "output": "⠲⠕⠗⠊⠢⠞â â °â " }, { "input": "disoriented", "output": "⠲⠕⠗⠊⠢⠞⠫" }, { "input": "disorienting", "output": "⠲⠕⠗⠊⠢⠞⠬" }, { "input": "disorients", "output": "⠲⠕⠗⠊⠢⠞⠎" }, { "input": "disown", "output": "⠲⠪â " }, { "input": "disowned", "output": "⠲⠪â â «" }, { "input": "disowning", "output": "⠲⠪â â ¬" }, { "input": "disowns", "output": "⠲⠪â â Ž" }, { "input": "disparage", "output": "â ²â â œâ â ›â ‘" }, { "input": "disparaged", "output": "â ²â â œâ â ›â «" }, { "input": "disparagement", "output": "â ²â â œâ â ›â ‘â °â ž" }, { "input": "disparages", "output": "â ²â â œâ â ›â ‘â Ž" }, { "input": "disparaging", "output": "â ²â â œâ â ›â ¬" }, { "input": "disparate", "output": "â ²â â œâ â žâ ‘" }, { "input": "disparities", "output": "â ²â â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "disparity", "output": "â ²â â œâ °â ½" }, { "input": "dispassionate", "output": "â ²â â â Žâ ¨â â â žâ ‘" }, { "input": "dispassionately", "output": "â ²â â â Žâ ¨â â â žâ ‘⠇⠽" }, { "input": "dispatch", "output": "â ²â â â žâ ¡" }, { "input": "dispatched", "output": "â ²â â â žâ ¡â «" }, { "input": "dispatcher", "output": "â ²â â â žâ ¡â »" }, { "input": "dispatchers", "output": "â ²â â â žâ ¡â »â Ž" }, { "input": "dispatches", "output": "â ²â â â žâ ¡â ‘â Ž" }, { "input": "dispatching", "output": "â ²â â â žâ ¡â ¬" }, { "input": "dispel", "output": "â ²â â ‘â ‡" }, { "input": "dispelled", "output": "â ²â â ‘⠇⠇⠫" }, { "input": "dispelling", "output": "â ²â â ‘⠇⠇⠬" }, { "input": "dispels", "output": "â ²â â ‘⠇⠎" }, { "input": "dispensable", "output": "â ²â â ¢â Žâ â ƒâ ‡â ‘" }, { "input": "dispensaries", "output": "â ²â â ¢â Žâ œâ Šâ ‘â Ž" }, { "input": "dispensary", "output": "â ²â â ¢â Žâ œâ ½" }, { "input": "dispensation", "output": "â ²â â ¢â Žâ â °â " }, { "input": "dispensations", "output": "â ²â â ¢â Žâ â °â â Ž" }, { "input": "dispense", "output": "â ²â â ¢â Žâ ‘" }, { "input": "dispensed", "output": "â ²â â ¢â Žâ «" }, { "input": "dispenser", "output": "â ²â â ¢â Žâ »" }, { "input": "dispensers", "output": "â ²â â ¢â Žâ »â Ž" }, { "input": "dispenses", "output": "â ²â â ¢â Žâ ‘â Ž" }, { "input": "dispensing", "output": "â ²â â ¢â Žâ ¬" }, { "input": "dispersal", "output": "â ²â â »â Žâ â ‡" }, { "input": "disperse", "output": "â ²â â »â Žâ ‘" }, { "input": "dispersed", "output": "â ²â â »â Žâ «" }, { "input": "disperses", "output": "â ²â â »â Žâ ‘â Ž" }, { "input": "dispersing", "output": "â ²â â »â Žâ ¬" }, { "input": "dispersion", "output": "â ²â â »â ¨â " }, { "input": "dispirit", "output": "⠙⠊⠸⠎" }, { "input": "dispirited", "output": "⠙⠊⠸⠎⠫" }, { "input": "dispiriting", "output": "⠙⠊⠸⠎⠬" }, { "input": "dispirits", "output": "⠙⠊⠸⠎⠎" }, { "input": "displace", "output": "â ²â â ‡â â ‰â ‘" }, { "input": "displaced", "output": "â ²â â ‡â â ‰â «" }, { "input": "displacement", "output": "â ²â â ‡â â ‰â ‘â °â ž" }, { "input": "displacements", "output": "â ²â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "displaces", "output": "â ²â â ‡â â ‰â ‘â Ž" }, { "input": "displacing", "output": "â ²â â ‡â â ‰â ¬" }, { "input": "display", "output": "â ²â â ‡â â ½" }, { "input": "displayable", "output": "â ²â â ‡â â ½â â ƒâ ‡â ‘" }, { "input": "displayed", "output": "â ²â â ‡â â ½â «" }, { "input": "displaying", "output": "â ²â â ‡â â ½â ¬" }, { "input": "displays", "output": "â ²â â ‡â â ½â Ž" }, { "input": "displease", "output": "â ²â â ‡â ‚â Žâ ‘" }, { "input": "displeased", "output": "â ²â â ‡â ‚â Žâ «" }, { "input": "displeases", "output": "â ²â â ‡â ‚â Žâ ‘â Ž" }, { "input": "displeasing", "output": "â ²â â ‡â ‚â Žâ ¬" }, { "input": "displeasure", "output": "â ²â â ‡â ‚⠎⠥⠗⠑" }, { "input": "disport", "output": "â ²â â •â —â ž" }, { "input": "disported", "output": "â ²â â •â —â žâ «" }, { "input": "disporting", "output": "â ²â â •â —â žâ ¬" }, { "input": "disports", "output": "â ²â â •â —â žâ Ž" }, { "input": "disposable", "output": "â ²â â •â Žâ â ƒâ ‡â ‘" }, { "input": "disposables", "output": "â ²â â •â Žâ â ƒâ ‡â ‘â Ž" }, { "input": "disposal", "output": "â ²â â •â Žâ â ‡" }, { "input": "disposals", "output": "â ²â â •â Žâ â ‡â Ž" }, { "input": "dispose", "output": "â ²â â •â Žâ ‘" }, { "input": "disposed", "output": "â ²â â •â Žâ «" }, { "input": "disposes", "output": "â ²â â •â Žâ ‘â Ž" }, { "input": "disposing", "output": "â ²â â •â Žâ ¬" }, { "input": "disposition", "output": "â ²â â •â Žâ Šâ °â " }, { "input": "dispositions", "output": "â ²â â •â Žâ Šâ °â â Ž" }, { "input": "dispossess", "output": "â ²â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "dispossessed", "output": "â ²â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "dispossesses", "output": "â ²â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "dispossessing", "output": "â ²â â •â Žâ Žâ ‘â Žâ Žâ ¬" }, { "input": "dispossession", "output": "â ²â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "disproof", "output": "â ²â â —â •â ·" }, { "input": "disproportion", "output": "â ²â â —â •â â •â —â °â " }, { "input": "disproportionate", "output": "â ²â â —â •â â •â —â °â â â žâ ‘" }, { "input": "disproportionately", "output": "â ²â â —â •â â •â —â °â â â žâ ‘⠇⠽" }, { "input": "disproportions", "output": "â ²â â —â •â â •â —â °â â Ž" }, { "input": "disprove", "output": "â ²â â —â •â §â ‘" }, { "input": "disproved", "output": "â ²â â —â •â §â «" }, { "input": "disproven", "output": "â ²â â —â •â §â ¢" }, { "input": "disproves", "output": "â ²â â —â •â §â ‘â Ž" }, { "input": "disproving", "output": "â ²â â —â •â §â ¬" }, { "input": "disputable", "output": "â ²â â ¥â žâ â ƒâ ‡â ‘" }, { "input": "disputant", "output": "â ²â â ¥â žâ â â ž" }, { "input": "disputants", "output": "â ²â â ¥â žâ â â žâ Ž" }, { "input": "disputation", "output": "â ²â â ¥â žâ â °â " }, { "input": "disputations", "output": "â ²â â ¥â žâ â °â â Ž" }, { "input": "disputatious", "output": "â ²â â ¥â žâ â žâ Šâ ³â Ž" }, { "input": "dispute", "output": "â ²â â ¥â žâ ‘" }, { "input": "disputed", "output": "â ²â â ¥â žâ «" }, { "input": "disputes", "output": "â ²â â ¥â žâ ‘â Ž" }, { "input": "disputing", "output": "â ²â â ¥â žâ ¬" }, { "input": "disqualification", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "disqualifications", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "disqualified", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ «" }, { "input": "disqualifies", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "disqualify", "output": "⠲⠟⠥â â ‡â Šâ ‹â ½" }, { "input": "disqualifying", "output": "⠲⠟⠥â â ‡â Šâ ‹â ½â ¬" }, { "input": "disquiet", "output": "⠲⠟⠥⠊⠑⠞" }, { "input": "disquieted", "output": "⠲⠟⠥⠊⠑⠞⠫" }, { "input": "disquieting", "output": "⠲⠟⠥⠊⠑⠞⠬" }, { "input": "disquiets", "output": "⠲⠟⠥⠊⠑⠞⠎" }, { "input": "disquisition", "output": "⠲⠟⠥⠊⠎⠊⠰â " }, { "input": "disquisitions", "output": "⠲⠟⠥⠊⠎⠊⠰â â Ž" }, { "input": "disregard", "output": "⠲⠗⠑⠛⠜⠙" }, { "input": "disregarded", "output": "⠲⠗⠑⠛⠜⠙⠫" }, { "input": "disregarding", "output": "⠲⠗⠑⠛⠜⠙⠬" }, { "input": "disregards", "output": "⠲⠗⠑⠛⠜⠙⠎" }, { "input": "disrepair", "output": "⠲⠗⠑â â â Šâ —" }, { "input": "disreputable", "output": "⠲⠗⠑â â ¥â žâ â ƒâ ‡â ‘" }, { "input": "disreputably", "output": "⠲⠗⠑â â ¥â žâ â ƒâ ‡â ½" }, { "input": "disrepute", "output": "⠲⠗⠑â â ¥â žâ ‘" }, { "input": "disrespect", "output": "⠲⠗⠑⠎â â ‘⠉⠞" }, { "input": "disrespected", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠫" }, { "input": "disrespectful", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠰⠇" }, { "input": "disrespectfully", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠰⠇⠇⠽" }, { "input": "disrespecting", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠬" }, { "input": "disrespects", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠎" }, { "input": "disrobe", "output": "⠲⠗⠕⠃⠑" }, { "input": "disrobed", "output": "⠲⠗⠕⠃⠫" }, { "input": "disrobes", "output": "⠲⠗⠕⠃⠑⠎" }, { "input": "disrobing", "output": "⠲⠗⠕⠃⠬" }, { "input": "disrupt", "output": "⠲⠗⠥â â ž" }, { "input": "disrupted", "output": "⠲⠗⠥â â žâ «" }, { "input": "disrupting", "output": "⠲⠗⠥â â žâ ¬" }, { "input": "disruption", "output": "⠲⠗⠥â â °â " }, { "input": "disruptions", "output": "⠲⠗⠥â â °â â Ž" }, { "input": "disruptive", "output": "⠲⠗⠥â â žâ Šâ §â ‘" }, { "input": "disrupts", "output": "⠲⠗⠥â â žâ Ž" }, { "input": "diss", "output": "⠙⠊⠎⠎" }, { "input": "dissatisfaction", "output": "⠲⠎â â žâ Šâ Žâ ‹â â ‰â °â " }, { "input": "dissatisfied", "output": "⠲⠎â â žâ Šâ Žâ ‹â Šâ «" }, { "input": "dissatisfies", "output": "⠲⠎â â žâ Šâ Žâ ‹â Šâ ‘â Ž" }, { "input": "dissatisfy", "output": "⠲⠎â â žâ Šâ Žâ ‹â ½" }, { "input": "dissatisfying", "output": "⠲⠎â â žâ Šâ Žâ ‹â ½â ¬" }, { "input": "dissect", "output": "⠲⠎⠑⠉⠞" }, { "input": "dissected", "output": "⠲⠎⠑⠉⠞⠫" }, { "input": "dissecting", "output": "⠲⠎⠑⠉⠞⠬" }, { "input": "dissection", "output": "⠲⠎⠑⠉⠰â " }, { "input": "dissections", "output": "⠲⠎⠑⠉⠰â â Ž" }, { "input": "dissects", "output": "⠲⠎⠑⠉⠞⠎" }, { "input": "dissed", "output": "⠲⠎⠫" }, { "input": "dissemble", "output": "⠲⠎⠑â â ƒâ ‡â ‘" }, { "input": "dissembled", "output": "⠲⠎⠑â â ƒâ ‡â «" }, { "input": "dissembles", "output": "⠲⠎⠑â â ƒâ ‡â ‘â Ž" }, { "input": "dissembling", "output": "⠲⠎⠑â â ƒâ ‡â ¬" }, { "input": "disseminate", "output": "⠲⠎⠑â â ”â â žâ ‘" }, { "input": "disseminated", "output": "⠲⠎⠑â â ”â â žâ «" }, { "input": "disseminates", "output": "⠲⠎⠑â â ”â â žâ ‘â Ž" }, { "input": "disseminating", "output": "⠲⠎⠑â â ”â â žâ ¬" }, { "input": "dissemination", "output": "⠲⠎⠑â â ”â â °â " }, { "input": "dissension", "output": "⠲⠎⠢⠨â " }, { "input": "dissensions", "output": "⠲⠎⠢⠨â â Ž" }, { "input": "dissent", "output": "⠲⠎⠢⠞" }, { "input": "dissented", "output": "⠲⠎⠢⠞⠫" }, { "input": "dissenter", "output": "⠲⠎⠢⠞⠻" }, { "input": "dissenters", "output": "⠲⠎⠢⠞⠻⠎" }, { "input": "dissenting", "output": "⠲⠎⠢⠞⠬" }, { "input": "dissents", "output": "⠲⠎⠢⠞⠎" }, { "input": "dissertation", "output": "⠲⠎⠻⠞â â °â " }, { "input": "dissertations", "output": "⠲⠎⠻⠞â â °â â Ž" }, { "input": "disservice", "output": "⠲⠎⠻⠧⠊⠉⠑" }, { "input": "disservices", "output": "⠲⠎⠻⠧⠊⠉⠑⠎" }, { "input": "disses", "output": "⠲⠎⠑⠎" }, { "input": "dissidence", "output": "⠲⠎⠊⠙⠰⠑" }, { "input": "dissident", "output": "⠲⠎⠊⠙⠢⠞" }, { "input": "dissidents", "output": "⠲⠎⠊⠙⠢⠞⠎" }, { "input": "dissimilar", "output": "⠲⠎⠊â â Šâ ‡â œ" }, { "input": "dissimilarities", "output": "⠲⠎⠊â â Šâ ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "dissimilarity", "output": "⠲⠎⠊â â Šâ ‡â œâ °â ½" }, { "input": "dissimulate", "output": "⠲⠎⠊â â ¥â ‡â â žâ ‘" }, { "input": "dissimulated", "output": "⠲⠎⠊â â ¥â ‡â â žâ «" }, { "input": "dissimulates", "output": "⠲⠎⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "dissimulating", "output": "⠲⠎⠊â â ¥â ‡â â žâ ¬" }, { "input": "dissimulation", "output": "⠲⠎⠊â â ¥â ‡â â °â " }, { "input": "dissing", "output": "⠲⠎⠬" }, { "input": "dissipate", "output": "⠲⠎⠊â â â žâ ‘" }, { "input": "dissipated", "output": "⠲⠎⠊â â â žâ «" }, { "input": "dissipates", "output": "⠲⠎⠊â â â žâ ‘â Ž" }, { "input": "dissipating", "output": "⠲⠎⠊â â â žâ ¬" }, { "input": "dissipation", "output": "⠲⠎⠊â â â °â " }, { "input": "dissociate", "output": "⠲⠎⠕⠉⠊â â žâ ‘" }, { "input": "dissociated", "output": "⠲⠎⠕⠉⠊â â žâ «" }, { "input": "dissociates", "output": "⠲⠎⠕⠉⠊â â žâ ‘â Ž" }, { "input": "dissociating", "output": "⠲⠎⠕⠉⠊â â žâ ¬" }, { "input": "dissociation", "output": "⠲⠎⠕⠉⠊â â °â " }, { "input": "dissolute", "output": "⠲⠎⠕⠇⠥⠞⠑" }, { "input": "dissolutely", "output": "⠲⠎⠕⠇⠥⠞⠑⠇⠽" }, { "input": "dissoluteness", "output": "⠲⠎⠕⠇⠥⠞⠑⠰⠎" }, { "input": "dissolution", "output": "⠲⠎⠕⠇⠥⠰â " }, { "input": "dissolve", "output": "⠲⠎⠕⠇⠧⠑" }, { "input": "dissolved", "output": "⠲⠎⠕⠇⠧⠫" }, { "input": "dissolves", "output": "⠲⠎⠕⠇⠧⠑⠎" }, { "input": "dissolving", "output": "⠲⠎⠕⠇⠧⠬" }, { "input": "dissonance", "output": "⠲⠎⠕â â ¨â ‘" }, { "input": "dissonances", "output": "⠲⠎⠕â â ¨â ‘â Ž" }, { "input": "dissonant", "output": "⠲⠎⠕â â â â ž" }, { "input": "dissuade", "output": "⠲⠎⠥â â ™â ‘" }, { "input": "dissuaded", "output": "⠲⠎⠥â â ™â «" }, { "input": "dissuades", "output": "⠲⠎⠥â â ™â ‘â Ž" }, { "input": "dissuading", "output": "⠲⠎⠥â â ™â ¬" }, { "input": "dissuasion", "output": "⠲⠎⠥â â ¨â " }, { "input": "distaff", "output": "⠲⠞â â ‹â ‹" }, { "input": "distaffs", "output": "⠲⠞â â –â Ž" }, { "input": "distance", "output": "⠲⠞⠨⠑" }, { "input": "distanced", "output": "⠲⠞⠨⠑⠙" }, { "input": "distances", "output": "⠲⠞⠨⠑⠎" }, { "input": "distancing", "output": "⠲⠞â â â ‰â ¬" }, { "input": "distant", "output": "⠲⠞â â â ž" }, { "input": "distantly", "output": "⠲⠞â â â žâ ‡â ½" }, { "input": "distaste", "output": "⠲⠞â â Œâ ‘" }, { "input": "distasteful", "output": "⠲⠞â â Œâ ‘â °â ‡" }, { "input": "distastefully", "output": "⠲⠞â â Œâ ‘⠰⠇⠇⠽" }, { "input": "distastes", "output": "⠲⠞â â Œâ ‘â Ž" }, { "input": "distemper", "output": "⠲⠞⠑â â â »" }, { "input": "distend", "output": "⠲⠞⠢⠙" }, { "input": "distended", "output": "⠲⠞⠢⠙⠫" }, { "input": "distending", "output": "⠲⠞⠢⠙⠬" }, { "input": "distends", "output": "⠲⠞⠢⠙⠎" }, { "input": "distension", "output": "⠲⠞⠢⠨â " }, { "input": "distensions", "output": "⠲⠞⠢⠨â â Ž" }, { "input": "distention", "output": "⠲⠞⠢⠰â " }, { "input": "distentions", "output": "⠲⠞⠢⠰â â Ž" }, { "input": "distil", "output": "⠲⠞⠊⠇" }, { "input": "distill", "output": "⠲⠞⠊⠇⠇" }, { "input": "distillate", "output": "⠲⠞⠊⠇⠇â â žâ ‘" }, { "input": "distillates", "output": "⠲⠞⠊⠇⠇â â žâ ‘â Ž" }, { "input": "distillation", "output": "⠲⠞⠊⠇⠇â â °â " }, { "input": "distillations", "output": "⠲⠞⠊⠇⠇â â °â â Ž" }, { "input": "distilled", "output": "⠲⠞⠊⠇⠇⠫" }, { "input": "distiller", "output": "⠲⠞⠊⠇⠇⠻" }, { "input": "distilleries", "output": "⠲⠞⠊⠇⠇⠻⠊⠑⠎" }, { "input": "distillers", "output": "⠲⠞⠊⠇⠇⠻⠎" }, { "input": "distillery", "output": "⠲⠞⠊⠇⠇⠻⠽" }, { "input": "distilling", "output": "⠲⠞⠊⠇⠇⠬" }, { "input": "distills", "output": "⠲⠞⠊⠇⠇⠎" }, { "input": "distils", "output": "⠲⠞⠊⠇⠎" }, { "input": "distinct", "output": "⠲⠞⠔⠉⠞" }, { "input": "distincter", "output": "⠲⠞⠔⠉⠞⠻" }, { "input": "distinctest", "output": "⠲⠞⠔⠉⠞⠑⠌" }, { "input": "distinction", "output": "⠲⠞⠔⠉⠰â " }, { "input": "distinctions", "output": "⠲⠞⠔⠉⠰â â Ž" }, { "input": "distinctive", "output": "⠲⠞⠔⠉⠞⠊⠧⠑" }, { "input": "distinctively", "output": "⠲⠞⠔⠉⠞⠊⠧⠑⠇⠽" }, { "input": "distinctiveness", "output": "⠲⠞⠔⠉⠞⠊⠧⠑⠰⠎" }, { "input": "distinctly", "output": "⠲⠞⠔⠉⠞⠇⠽" }, { "input": "distinguish", "output": "⠲⠞⠬⠥⠊⠩" }, { "input": "distinguishable", "output": "⠲⠞⠬⠥⠊⠩â â ƒâ ‡â ‘" }, { "input": "distinguished", "output": "⠲⠞⠬⠥⠊⠩⠫" }, { "input": "distinguishes", "output": "⠲⠞⠬⠥⠊⠩⠑⠎" }, { "input": "distinguishing", "output": "⠲⠞⠬⠥⠊⠩⠬" }, { "input": "distort", "output": "⠲⠞⠕⠗⠞" }, { "input": "distorted", "output": "⠲⠞⠕⠗⠞⠫" }, { "input": "distorter", "output": "⠲⠞⠕⠗⠞⠻" }, { "input": "distorting", "output": "⠲⠞⠕⠗⠞⠬" }, { "input": "distortion", "output": "⠲⠞⠕⠗⠰â " }, { "input": "distortions", "output": "⠲⠞⠕⠗⠰â â Ž" }, { "input": "distorts", "output": "⠲⠞⠕⠗⠞⠎" }, { "input": "distract", "output": "⠲⠞⠗â â ‰â ž" }, { "input": "distracted", "output": "⠲⠞⠗â â ‰â žâ «" }, { "input": "distracting", "output": "⠲⠞⠗â â ‰â žâ ¬" }, { "input": "distraction", "output": "⠲⠞⠗â â ‰â °â " }, { "input": "distractions", "output": "⠲⠞⠗â â ‰â °â â Ž" }, { "input": "distracts", "output": "⠲⠞⠗â â ‰â žâ Ž" }, { "input": "distrait", "output": "⠲⠞⠗â â Šâ ž" }, { "input": "distraught", "output": "⠲⠞⠗â â ¥â £â ž" }, { "input": "distress", "output": "⠲⠞⠗⠑⠎⠎" }, { "input": "distressed", "output": "⠲⠞⠗⠑⠎⠎⠫" }, { "input": "distresses", "output": "⠲⠞⠗⠑⠎⠎⠑⠎" }, { "input": "distressful", "output": "⠲⠞⠗⠑⠎⠎⠰⠇" }, { "input": "distressing", "output": "⠲⠞⠗⠑⠎⠎⠬" }, { "input": "distressingly", "output": "⠲⠞⠗⠑⠎⠎⠬⠇⠽" }, { "input": "distribute", "output": "⠲⠞⠗⠊⠃⠥⠞⠑" }, { "input": "distributed", "output": "⠲⠞⠗⠊⠃⠥⠞⠫" }, { "input": "distributes", "output": "⠲⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "distributing", "output": "⠲⠞⠗⠊⠃⠥⠞⠬" }, { "input": "distribution", "output": "⠲⠞⠗⠊⠃⠥⠰â " }, { "input": "distributions", "output": "⠲⠞⠗⠊⠃⠥⠰â â Ž" }, { "input": "distributive", "output": "⠲⠞⠗⠊⠃⠥⠞⠊⠧⠑" }, { "input": "distributor", "output": "⠲⠞⠗⠊⠃⠥⠞⠕⠗" }, { "input": "distributors", "output": "⠲⠞⠗⠊⠃⠥⠞⠕⠗⠎" }, { "input": "district", "output": "⠲⠞⠗⠊⠉⠞" }, { "input": "districts", "output": "⠲⠞⠗⠊⠉⠞⠎" }, { "input": "distrust", "output": "⠲⠞⠗⠥⠌" }, { "input": "distrusted", "output": "⠲⠞⠗⠥⠌⠫" }, { "input": "distrustful", "output": "⠲⠞⠗⠥⠌⠰⠇" }, { "input": "distrustfully", "output": "⠲⠞⠗⠥⠌⠰⠇⠇⠽" }, { "input": "distrusting", "output": "⠲⠞⠗⠥⠌⠬" }, { "input": "distrusts", "output": "⠲⠞⠗⠥⠌⠎" }, { "input": "disturb", "output": "⠲⠞⠥⠗⠃" }, { "input": "disturbance", "output": "⠲⠞⠥⠗⠃⠨⠑" }, { "input": "disturbances", "output": "⠲⠞⠥⠗⠃⠨⠑⠎" }, { "input": "disturbed", "output": "⠲⠞⠥⠗⠃⠫" }, { "input": "disturbing", "output": "⠲⠞⠥⠗⠃⠬" }, { "input": "disturbingly", "output": "⠲⠞⠥⠗⠃⠬⠇⠽" }, { "input": "disturbs", "output": "⠲⠞⠥⠗⠃⠎" }, { "input": "disunite", "output": "⠲⠥â â Šâ žâ ‘" }, { "input": "disunited", "output": "⠲⠥â â Šâ žâ «" }, { "input": "disunites", "output": "⠲⠥â â Šâ žâ ‘â Ž" }, { "input": "disuniting", "output": "⠲⠥â â Šâ žâ ¬" }, { "input": "disunity", "output": "⠲⠥â â °â ½" }, { "input": "disuse", "output": "⠲⠥⠎⠑" }, { "input": "disused", "output": "⠲⠥⠎⠫" }, { "input": "disuses", "output": "⠲⠥⠎⠑⠎" }, { "input": "disusing", "output": "⠲⠥⠎⠬" }, { "input": "ditch", "output": "⠙⠊⠞⠡" }, { "input": "ditched", "output": "⠙⠊⠞⠡⠫" }, { "input": "ditches", "output": "⠙⠊⠞⠡⠑⠎" }, { "input": "ditching", "output": "⠙⠊⠞⠡⠬" }, { "input": "dither", "output": "⠙⠊⠮⠗" }, { "input": "dithered", "output": "⠙⠊⠮⠗⠫" }, { "input": "dithering", "output": "⠙⠊⠮⠗⠬" }, { "input": "dithers", "output": "⠙⠊⠮⠗⠎" }, { "input": "ditties", "output": "⠙⠊⠞⠞⠊⠑⠎" }, { "input": "ditto", "output": "⠙⠊⠞⠞⠕" }, { "input": "dittoed", "output": "⠙⠊⠞⠞⠕⠫" }, { "input": "dittoes", "output": "⠙⠊⠞⠞⠕⠑⠎" }, { "input": "dittoing", "output": "⠙⠊⠞⠞⠕⠬" }, { "input": "dittos", "output": "⠙⠊⠞⠞⠕⠎" }, { "input": "ditty", "output": "⠙⠊⠞⠞⠽" }, { "input": "diuretic", "output": "⠙⠊⠥⠗⠑⠞⠊⠉" }, { "input": "diuretics", "output": "⠙⠊⠥⠗⠑⠞⠊⠉⠎" }, { "input": "diurnal", "output": "⠙⠊⠥⠗â â â ‡" }, { "input": "diurnally", "output": "⠙⠊⠥⠗â â â ‡â ‡â ½" }, { "input": "diva", "output": "⠙⠊⠧â " }, { "input": "divan", "output": "⠙⠊⠧â â " }, { "input": "divans", "output": "⠙⠊⠧â â â Ž" }, { "input": "divas", "output": "⠙⠊⠧â â Ž" }, { "input": "dive", "output": "⠙⠊⠧⠑" }, { "input": "dived", "output": "⠙⠊⠧⠫" }, { "input": "diver", "output": "⠙⠊⠧⠻" }, { "input": "diverge", "output": "⠙⠊⠧⠻⠛⠑" }, { "input": "diverged", "output": "⠙⠊⠧⠻⠛⠫" }, { "input": "divergence", "output": "⠙⠊⠧⠻⠛⠰⠑" }, { "input": "divergences", "output": "⠙⠊⠧⠻⠛⠰⠑⠎" }, { "input": "divergent", "output": "⠙⠊⠧⠻⠛⠢⠞" }, { "input": "diverges", "output": "⠙⠊⠧⠻⠛⠑⠎" }, { "input": "diverging", "output": "⠙⠊⠧⠻⠛⠬" }, { "input": "divers", "output": "⠙⠊⠧⠻⠎" }, { "input": "diverse", "output": "⠙⠊⠧⠻⠎⠑" }, { "input": "diversely", "output": "⠙⠊⠧⠻⠎⠑⠇⠽" }, { "input": "diversification", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠉â â °â " }, { "input": "diversified", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠫" }, { "input": "diversifies", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠑⠎" }, { "input": "diversify", "output": "⠙⠊⠧⠻⠎⠊⠋⠽" }, { "input": "diversifying", "output": "⠙⠊⠧⠻⠎⠊⠋⠽⠬" }, { "input": "diversion", "output": "⠙⠊⠧⠻⠨â " }, { "input": "diversionary", "output": "⠙⠊⠧⠻⠨â â œâ ½" }, { "input": "diversions", "output": "⠙⠊⠧⠻⠨â â Ž" }, { "input": "diversities", "output": "⠙⠊⠧⠻⠎⠊⠞⠊⠑⠎" }, { "input": "diversity", "output": "⠙⠊⠧⠻⠎⠰⠽" }, { "input": "divert", "output": "⠙⠊⠧⠻⠞" }, { "input": "diverted", "output": "⠙⠊⠧⠻⠞⠫" }, { "input": "diverting", "output": "⠙⠊⠧⠻⠞⠬" }, { "input": "diverts", "output": "⠙⠊⠧⠻⠞⠎" }, { "input": "dives", "output": "⠙⠊⠧⠑⠎" }, { "input": "divest", "output": "⠙⠊⠧⠑⠌" }, { "input": "divested", "output": "⠙⠊⠧⠑⠌⠫" }, { "input": "divesting", "output": "⠙⠊⠧⠑⠌⠬" }, { "input": "divests", "output": "⠙⠊⠧⠑⠌⠎" }, { "input": "divide", "output": "⠙⠊⠧⠊⠙⠑" }, { "input": "divided", "output": "⠙⠊⠧⠊⠙⠫" }, { "input": "dividend", "output": "⠙⠊⠧⠊⠙⠢⠙" }, { "input": "dividends", "output": "⠙⠊⠧⠊⠙⠢⠙⠎" }, { "input": "divider", "output": "⠙⠊⠧⠊⠙⠻" }, { "input": "dividers", "output": "⠙⠊⠧⠊⠙⠻⠎" }, { "input": "divides", "output": "⠙⠊⠧⠊⠙⠑⠎" }, { "input": "dividing", "output": "⠙⠊⠧⠊⠙⠬" }, { "input": "divination", "output": "⠙⠊⠧⠔â â °â " }, { "input": "divine", "output": "⠙⠊⠧⠔⠑" }, { "input": "divined", "output": "⠙⠊⠧⠔⠫" }, { "input": "divinely", "output": "⠙⠊⠧⠔⠑⠇⠽" }, { "input": "diviner", "output": "⠙⠊⠧⠔⠻" }, { "input": "diviners", "output": "⠙⠊⠧⠔⠻⠎" }, { "input": "divines", "output": "⠙⠊⠧⠔⠑⠎" }, { "input": "divinest", "output": "⠙⠊⠧⠔⠑⠌" }, { "input": "diving", "output": "⠙⠊⠧⠬" }, { "input": "divining", "output": "⠙⠊⠧⠔⠬" }, { "input": "divinities", "output": "⠙⠊⠧⠔⠊⠞⠊⠑⠎" }, { "input": "divinity", "output": "⠙⠊⠧⠔⠰⠽" }, { "input": "divisibility", "output": "⠙⠊⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "divisible", "output": "⠙⠊⠧⠊⠎⠊⠃⠇⠑" }, { "input": "division", "output": "⠙⠊⠧⠊⠨â " }, { "input": "divisional", "output": "⠙⠊⠧⠊⠨â â â ‡" }, { "input": "divisions", "output": "⠙⠊⠧⠊⠨â â Ž" }, { "input": "divisive", "output": "⠙⠊⠧⠊⠎⠊⠧⠑" }, { "input": "divisively", "output": "⠙⠊⠧⠊⠎⠊⠧⠑⠇⠽" }, { "input": "divisiveness", "output": "⠙⠊⠧⠊⠎⠊⠧⠑⠰⠎" }, { "input": "divisor", "output": "⠙⠊⠧⠊⠎⠕⠗" }, { "input": "divisors", "output": "⠙⠊⠧⠊⠎⠕⠗⠎" }, { "input": "divorce", "output": "⠙⠊⠧⠕⠗⠉⠑" }, { "input": "divorced", "output": "⠙⠊⠧⠕⠗⠉⠫" }, { "input": "divorces", "output": "⠙⠊⠧⠕⠗⠉⠑⠎" }, { "input": "divorcing", "output": "⠙⠊⠧⠕⠗⠉⠬" }, { "input": "divorcée", "output": "⠙⠊⠧⠕⠗⠉⠠⠘⠻â â ˜â ‰â ‘" }, { "input": "divorcées", "output": "⠙⠊⠧⠕⠗⠉⠠⠘⠻â â ˜â ‰â ‘â Ž" }, { "input": "divot", "output": "⠙⠊⠧⠕⠞" }, { "input": "divots", "output": "⠙⠊⠧⠕⠞⠎" }, { "input": "divulge", "output": "⠙⠊⠧⠥⠇⠛⠑" }, { "input": "divulged", "output": "⠙⠊⠧⠥⠇⠛⠫" }, { "input": "divulges", "output": "⠙⠊⠧⠥⠇⠛⠑⠎" }, { "input": "divulging", "output": "⠙⠊⠧⠥⠇⠛⠬" }, { "input": "divvied", "output": "⠙⠊⠧⠧⠊⠫" }, { "input": "divvies", "output": "⠙⠊⠧⠧⠊⠑⠎" }, { "input": "divvy", "output": "⠙⠊⠧⠧⠽" }, { "input": "divvying", "output": "⠙⠊⠧⠧⠽⠬" }, { "input": "dizzied", "output": "⠙⠊⠵⠵⠊⠫" }, { "input": "dizzier", "output": "⠙⠊⠵⠵⠊⠻" }, { "input": "dizzies", "output": "⠙⠊⠵⠵⠊⠑⠎" }, { "input": "dizziest", "output": "⠙⠊⠵⠵⠊⠑⠌" }, { "input": "dizzily", "output": "⠙⠊⠵⠵⠊⠇⠽" }, { "input": "dizziness", "output": "⠙⠊⠵⠵⠊⠰⠎" }, { "input": "dizzy", "output": "⠙⠊⠵⠵⠽" }, { "input": "dizzying", "output": "⠙⠊⠵⠵⠽⠬" }, { "input": "djinn", "output": "⠙⠚⠔â " }, { "input": "djinni", "output": "⠙⠚⠔â â Š" }, { "input": "djinns", "output": "⠙⠚⠔â â Ž" }, { "input": "do", "output": "â ™" }, { "input": "doable", "output": "⠙⠕â â ƒâ ‡â ‘" }, { "input": "doc", "output": "⠙⠕⠉" }, { "input": "docent", "output": "⠙⠕⠉⠢⠞" }, { "input": "docents", "output": "⠙⠕⠉⠢⠞⠎" }, { "input": "docile", "output": "⠙⠕⠉⠊⠇⠑" }, { "input": "docilely", "output": "⠙⠕⠉⠊⠇⠑⠇⠽" }, { "input": "docility", "output": "⠙⠕⠉⠊⠇⠰⠽" }, { "input": "dock", "output": "⠙⠕⠉⠅" }, { "input": "docked", "output": "⠙⠕⠉⠅⠫" }, { "input": "docket", "output": "⠙⠕⠉⠅⠑⠞" }, { "input": "docketed", "output": "⠙⠕⠉⠅⠑⠞⠫" }, { "input": "docketing", "output": "⠙⠕⠉⠅⠑⠞⠬" }, { "input": "dockets", "output": "⠙⠕⠉⠅⠑⠞⠎" }, { "input": "docking", "output": "⠙⠕⠉⠅⠬" }, { "input": "docks", "output": "⠙⠕⠉⠅⠎" }, { "input": "dockyard", "output": "⠙⠕⠉⠅⠽⠜⠙" }, { "input": "dockyards", "output": "⠙⠕⠉⠅⠽⠜⠙⠎" }, { "input": "docs", "output": "⠙⠕⠉⠎" }, { "input": "doctor", "output": "⠙⠕⠉⠞⠕⠗" }, { "input": "doctoral", "output": "⠙⠕⠉⠞⠕⠗â â ‡" }, { "input": "doctorate", "output": "⠙⠕⠉⠞⠕⠗â â žâ ‘" }, { "input": "doctorates", "output": "⠙⠕⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "doctored", "output": "⠙⠕⠉⠞⠕⠗⠫" }, { "input": "doctoring", "output": "⠙⠕⠉⠞⠕⠗⠬" }, { "input": "doctors", "output": "⠙⠕⠉⠞⠕⠗⠎" }, { "input": "doctrinaire", "output": "⠙⠕⠉⠞⠗⠔â â Šâ —â ‘" }, { "input": "doctrinaires", "output": "⠙⠕⠉⠞⠗⠔â â Šâ —â ‘â Ž" }, { "input": "doctrinal", "output": "⠙⠕⠉⠞⠗⠔â â ‡" }, { "input": "doctrine", "output": "⠙⠕⠉⠞⠗⠔⠑" }, { "input": "doctrines", "output": "⠙⠕⠉⠞⠗⠔⠑⠎" }, { "input": "docudrama", "output": "⠙⠕⠉⠥⠙⠗â â â " }, { "input": "docudramas", "output": "⠙⠕⠉⠥⠙⠗â â â â Ž" }, { "input": "document", "output": "⠙⠕⠉⠥⠰⠞" }, { "input": "documentaries", "output": "⠙⠕⠉⠥⠰⠞⠜⠊⠑⠎" }, { "input": "documentary", "output": "⠙⠕⠉⠥⠰⠞⠜⠽" }, { "input": "documentation", "output": "⠙⠕⠉⠥⠰⠞â â °â " }, { "input": "documented", "output": "⠙⠕⠉⠥⠰⠞⠫" }, { "input": "documenting", "output": "⠙⠕⠉⠥⠰⠞⠬" }, { "input": "documents", "output": "⠙⠕⠉⠥⠰⠞⠎" }, { "input": "dodder", "output": "⠙⠕⠙⠙⠻" }, { "input": "doddered", "output": "⠙⠕⠙⠙⠻⠫" }, { "input": "doddering", "output": "⠙⠕⠙⠙⠻⠬" }, { "input": "dodders", "output": "⠙⠕⠙⠙⠻⠎" }, { "input": "dodge", "output": "⠙⠕⠙⠛⠑" }, { "input": "dodged", "output": "⠙⠕⠙⠛⠫" }, { "input": "dodger", "output": "⠙⠕⠙⠛⠻" }, { "input": "dodgers", "output": "⠙⠕⠙⠛⠻⠎" }, { "input": "dodges", "output": "⠙⠕⠙⠛⠑⠎" }, { "input": "dodging", "output": "⠙⠕⠙⠛⠬" }, { "input": "dodo", "output": "⠙⠕⠙⠕" }, { "input": "dodoes", "output": "⠙⠕⠙⠕⠑⠎" }, { "input": "dodos", "output": "⠙⠕⠙⠕⠎" }, { "input": "doe", "output": "⠙⠕⠑" }, { "input": "doer", "output": "⠙⠕⠻" }, { "input": "doers", "output": "⠙⠕⠻⠎" }, { "input": "does", "output": "⠙⠕⠑⠎" }, { "input": "doff", "output": "⠙⠷⠋" }, { "input": "doffed", "output": "⠙⠷⠋⠫" }, { "input": "doffing", "output": "⠙⠷⠋⠬" }, { "input": "doffs", "output": "⠙⠷⠋⠎" }, { "input": "dog", "output": "⠙⠕⠛" }, { "input": "dogcatcher", "output": "⠙⠕⠛⠉â â žâ ¡â »" }, { "input": "dogcatchers", "output": "⠙⠕⠛⠉â â žâ ¡â »â Ž" }, { "input": "dogfight", "output": "⠙⠕⠛⠋⠊⠣⠞" }, { "input": "dogfights", "output": "⠙⠕⠛⠋⠊⠣⠞⠎" }, { "input": "dogfish", "output": "⠙⠕⠛⠋⠊⠩" }, { "input": "dogfishes", "output": "⠙⠕⠛⠋⠊⠩⠑⠎" }, { "input": "dogged", "output": "⠙⠕⠶⠫" }, { "input": "doggedly", "output": "⠙⠕⠶⠫⠇⠽" }, { "input": "doggedness", "output": "⠙⠕⠶⠫⠰⠎" }, { "input": "doggerel", "output": "⠙⠕⠶⠻⠑⠇" }, { "input": "doggie", "output": "⠙⠕⠶⠊⠑" }, { "input": "doggier", "output": "⠙⠕⠶⠊⠻" }, { "input": "doggies", "output": "⠙⠕⠶⠊⠑⠎" }, { "input": "doggiest", "output": "⠙⠕⠶⠊⠑⠌" }, { "input": "dogging", "output": "⠙⠕⠶⠬" }, { "input": "doggone", "output": "⠙⠕⠶â â •" }, { "input": "doggoned", "output": "⠙⠕⠶⠕â â «" }, { "input": "doggoneder", "output": "⠙⠕⠶⠕â â «â »" }, { "input": "doggonedest", "output": "⠙⠕⠶⠕â â «â ‘â Œ" }, { "input": "doggoner", "output": "⠙⠕⠶⠕â â »" }, { "input": "doggones", "output": "⠙⠕⠶â â •â Ž" }, { "input": "doggonest", "output": "⠙⠕⠶⠕â â ‘â Œ" }, { "input": "doggoning", "output": "⠙⠕⠶⠕â â ¬" }, { "input": "doggy", "output": "⠙⠕⠶⠽" }, { "input": "doghouse", "output": "⠙⠕⠛⠓⠳⠎⠑" }, { "input": "doghouses", "output": "⠙⠕⠛⠓⠳⠎⠑⠎" }, { "input": "dogie", "output": "⠙⠕⠛⠊⠑" }, { "input": "dogies", "output": "⠙⠕⠛⠊⠑⠎" }, { "input": "dogma", "output": "⠙⠕⠛â â " }, { "input": "dogmas", "output": "⠙⠕⠛â â â Ž" }, { "input": "dogmata", "output": "⠙⠕⠛â â â žâ " }, { "input": "dogmatic", "output": "⠙⠕⠛â â â žâ Šâ ‰" }, { "input": "dogmatically", "output": "⠙⠕⠛â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "dogmatism", "output": "⠙⠕⠛â â â žâ Šâ Žâ " }, { "input": "dogmatist", "output": "⠙⠕⠛â â â žâ Šâ Œ" }, { "input": "dogmatists", "output": "⠙⠕⠛â â â žâ Šâ Œâ Ž" }, { "input": "dogs", "output": "⠙⠕⠛⠎" }, { "input": "dogtrot", "output": "⠙⠕⠛⠞⠗⠕⠞" }, { "input": "dogtrots", "output": "⠙⠕⠛⠞⠗⠕⠞⠎" }, { "input": "dogtrotted", "output": "⠙⠕⠛⠞⠗⠕⠞⠞⠫" }, { "input": "dogtrotting", "output": "⠙⠕⠛⠞⠗⠕⠞⠞⠬" }, { "input": "dogwood", "output": "⠙⠕⠛⠺⠕⠕⠙" }, { "input": "dogwoods", "output": "⠙⠕⠛⠺⠕⠕⠙⠎" }, { "input": "doilies", "output": "⠙⠕⠊⠇⠊⠑⠎" }, { "input": "doily", "output": "⠙⠕⠊⠇⠽" }, { "input": "doing", "output": "⠙⠕⠬" }, { "input": "doings", "output": "⠙⠕⠬⠎" }, { "input": "doldrums", "output": "⠙⠕⠇⠙⠗⠥â â Ž" }, { "input": "dole", "output": "⠙⠕⠇⠑" }, { "input": "doled", "output": "⠙⠕⠇⠫" }, { "input": "doleful", "output": "⠙⠕⠇⠑⠰⠇" }, { "input": "dolefully", "output": "⠙⠕⠇⠑⠰⠇⠇⠽" }, { "input": "doles", "output": "⠙⠕⠇⠑⠎" }, { "input": "doling", "output": "⠙⠕⠇⠬" }, { "input": "doll", "output": "⠙⠕⠇⠇" }, { "input": "dollar", "output": "⠙⠕⠇⠇⠜" }, { "input": "dollars", "output": "⠙⠕⠇⠇⠜⠎" }, { "input": "dolled", "output": "⠙⠕⠇⠇⠫" }, { "input": "dollhouse", "output": "⠙⠕⠇⠇⠓⠳⠎⠑" }, { "input": "dollhouses", "output": "⠙⠕⠇⠇⠓⠳⠎⠑⠎" }, { "input": "dollies", "output": "⠙⠕⠇⠇⠊⠑⠎" }, { "input": "dolling", "output": "⠙⠕⠇⠇⠬" }, { "input": "dollop", "output": "⠙⠕⠇⠇⠕â " }, { "input": "dolloped", "output": "⠙⠕⠇⠇⠕â â «" }, { "input": "dolloping", "output": "⠙⠕⠇⠇⠕â â ¬" }, { "input": "dollops", "output": "⠙⠕⠇⠇⠕â â Ž" }, { "input": "dolls", "output": "⠙⠕⠇⠇⠎" }, { "input": "dolly", "output": "⠙⠕⠇⠇⠽" }, { "input": "dolmen", "output": "⠙⠕⠇â â ¢" }, { "input": "dolmens", "output": "⠙⠕⠇â â ¢â Ž" }, { "input": "dolorous", "output": "⠙⠕⠇⠕⠗⠳⠎" }, { "input": "dolphin", "output": "⠙⠕⠇â â “â ”" }, { "input": "dolphins", "output": "⠙⠕⠇â â “⠔⠎" }, { "input": "dolt", "output": "⠙⠕⠇⠞" }, { "input": "doltish", "output": "⠙⠕⠇⠞⠊⠩" }, { "input": "dolts", "output": "⠙⠕⠇⠞⠎" }, { "input": "domain", "output": "⠙⠕â â â ”" }, { "input": "domains", "output": "⠙⠕â â â ”â Ž" }, { "input": "dome", "output": "⠙⠕â â ‘" }, { "input": "domed", "output": "⠙⠕â â «" }, { "input": "domes", "output": "⠙⠕â â ‘â Ž" }, { "input": "domestic", "output": "⠙⠕â â ‘⠌⠊⠉" }, { "input": "domestically", "output": "⠙⠕â â ‘⠌⠊⠉â â ‡â ‡â ½" }, { "input": "domesticate", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ ‘" }, { "input": "domesticated", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ «" }, { "input": "domesticates", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ ‘â Ž" }, { "input": "domesticating", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ ¬" }, { "input": "domestication", "output": "⠙⠕â â ‘⠌⠊⠉â â °â " }, { "input": "domesticity", "output": "⠙⠕â â ‘⠌⠊⠉⠰⠽" }, { "input": "domestics", "output": "⠙⠕â â ‘⠌⠊⠉⠎" }, { "input": "domicile", "output": "⠙⠕â â Šâ ‰â Šâ ‡â ‘" }, { "input": "domiciled", "output": "⠙⠕â â Šâ ‰â Šâ ‡â «" }, { "input": "domiciles", "output": "⠙⠕â â Šâ ‰â Šâ ‡â ‘â Ž" }, { "input": "domiciling", "output": "⠙⠕â â Šâ ‰â Šâ ‡â ¬" }, { "input": "dominance", "output": "⠙⠕â â ”⠨⠑" }, { "input": "dominant", "output": "⠙⠕â â ”â â â ž" }, { "input": "dominantly", "output": "⠙⠕â â ”â â â žâ ‡â ½" }, { "input": "dominants", "output": "⠙⠕â â ”â â â žâ Ž" }, { "input": "dominate", "output": "⠙⠕â â ”â â žâ ‘" }, { "input": "dominated", "output": "⠙⠕â â ”â â žâ «" }, { "input": "dominates", "output": "⠙⠕â â ”â â žâ ‘â Ž" }, { "input": "dominating", "output": "⠙⠕â â ”â â žâ ¬" }, { "input": "domination", "output": "⠙⠕â â ”â â °â " }, { "input": "domineer", "output": "⠙⠕â â ”â ‘â »" }, { "input": "domineered", "output": "⠙⠕â â ”⠑⠻⠫" }, { "input": "domineering", "output": "⠙⠕â â ”⠑⠻⠬" }, { "input": "domineers", "output": "⠙⠕â â ”⠑⠻⠎" }, { "input": "doming", "output": "⠙⠕â â ¬" }, { "input": "dominion", "output": "⠙⠕â â ”â Šâ •â " }, { "input": "dominions", "output": "⠙⠕â â ”â Šâ •â â Ž" }, { "input": "domino", "output": "⠙⠕â â ”â •" }, { "input": "dominoes", "output": "⠙⠕â â ”â •â ‘â Ž" }, { "input": "dominos", "output": "⠙⠕â â ”â •â Ž" }, { "input": "don", "output": "⠙⠕â " }, { "input": "donate", "output": "⠙⠕â â â žâ ‘" }, { "input": "donated", "output": "⠙⠕â â â žâ «" }, { "input": "donates", "output": "⠙⠕â â â žâ ‘â Ž" }, { "input": "donating", "output": "⠙⠕â â â žâ ¬" }, { "input": "donation", "output": "⠙⠕â â â °â " }, { "input": "donations", "output": "⠙⠕â â â °â â Ž" }, { "input": "done", "output": "â ™â â •" }, { "input": "donkey", "output": "⠙⠕â â …â ‘â ½" }, { "input": "donkeys", "output": "⠙⠕â â …⠑⠽⠎" }, { "input": "donned", "output": "⠙⠕â â â «" }, { "input": "donning", "output": "⠙⠕â â â ¬" }, { "input": "donor", "output": "⠙⠕â â •â —" }, { "input": "donors", "output": "⠙⠕â â •â —â Ž" }, { "input": "dons", "output": "⠙⠕â â Ž" }, { "input": "donut", "output": "⠙⠕â â ¥â ž" }, { "input": "donuts", "output": "⠙⠕â â ¥â žâ Ž" }, { "input": "doodad", "output": "⠙⠕⠕⠙â â ™" }, { "input": "doodads", "output": "⠙⠕⠕⠙â â ™â Ž" }, { "input": "doodle", "output": "⠙⠕⠕⠙⠇⠑" }, { "input": "doodled", "output": "⠙⠕⠕⠙⠇⠫" }, { "input": "doodler", "output": "⠙⠕⠕⠙⠇⠻" }, { "input": "doodlers", "output": "⠙⠕⠕⠙⠇⠻⠎" }, { "input": "doodles", "output": "⠙⠕⠕⠙⠇⠑⠎" }, { "input": "doodling", "output": "⠙⠕⠕⠙⠇⠬" }, { "input": "doohickey", "output": "⠙⠕⠕⠓⠊⠉⠅⠑⠽" }, { "input": "doohickeys", "output": "⠙⠕⠕⠓⠊⠉⠅⠑⠽⠎" }, { "input": "doom", "output": "⠙⠕⠕â " }, { "input": "doomed", "output": "⠙⠕⠕â â «" }, { "input": "dooming", "output": "⠙⠕⠕â â ¬" }, { "input": "dooms", "output": "⠙⠕⠕â â Ž" }, { "input": "doomsday", "output": "⠙⠕⠕â â Žâ â ™" }, { "input": "door", "output": "⠙⠕⠕⠗" }, { "input": "doorbell", "output": "⠙⠕⠕⠗⠃⠑⠇⠇" }, { "input": "doorbells", "output": "⠙⠕⠕⠗⠃⠑⠇⠇⠎" }, { "input": "doorknob", "output": "⠙⠕⠕⠗⠅â â •â ƒ" }, { "input": "doorknobs", "output": "⠙⠕⠕⠗⠅â â •⠃⠎" }, { "input": "doorman", "output": "⠙⠕⠕⠗â â â " }, { "input": "doormat", "output": "⠙⠕⠕⠗â â â ž" }, { "input": "doormats", "output": "⠙⠕⠕⠗â â â žâ Ž" }, { "input": "doormen", "output": "⠙⠕⠕⠗â â ¢" }, { "input": "doors", "output": "⠙⠕⠕⠗⠎" }, { "input": "doorstep", "output": "⠙⠕⠕⠗⠌⠑â " }, { "input": "doorsteps", "output": "⠙⠕⠕⠗⠌⠑â â Ž" }, { "input": "doorway", "output": "⠙⠕⠕⠗⠺â â ½" }, { "input": "doorways", "output": "⠙⠕⠕⠗⠺â â ½â Ž" }, { "input": "dope", "output": "⠙⠕â â ‘" }, { "input": "doped", "output": "⠙⠕â â «" }, { "input": "dopes", "output": "⠙⠕â â ‘â Ž" }, { "input": "dopey", "output": "⠙⠕â â ‘â ½" }, { "input": "dopier", "output": "⠙⠕â â Šâ »" }, { "input": "dopiest", "output": "⠙⠕â â Šâ ‘â Œ" }, { "input": "doping", "output": "⠙⠕â â ¬" }, { "input": "dopy", "output": "⠙⠕â â ½" }, { "input": "dories", "output": "⠙⠕⠗⠊⠑⠎" }, { "input": "dork", "output": "⠙⠕⠗⠅" }, { "input": "dorkier", "output": "⠙⠕⠗⠅⠊⠻" }, { "input": "dorkiest", "output": "⠙⠕⠗⠅⠊⠑⠌" }, { "input": "dorks", "output": "⠙⠕⠗⠅⠎" }, { "input": "dorky", "output": "⠙⠕⠗⠅⠽" }, { "input": "dorm", "output": "⠙⠕⠗â " }, { "input": "dormancy", "output": "⠙⠕⠗â â â â ‰â ½" }, { "input": "dormant", "output": "⠙⠕⠗â â â â ž" }, { "input": "dormer", "output": "⠙⠕⠗â â »" }, { "input": "dormers", "output": "⠙⠕⠗â â »â Ž" }, { "input": "dormice", "output": "⠙⠕⠗â â Šâ ‰â ‘" }, { "input": "dormitories", "output": "⠙⠕⠗â â Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "dormitory", "output": "⠙⠕⠗â â Šâ žâ •â —â ½" }, { "input": "dormouse", "output": "⠙⠕⠗â â ³â Žâ ‘" }, { "input": "dorms", "output": "⠙⠕⠗â â Ž" }, { "input": "dorsal", "output": "⠙⠕⠗⠎â â ‡" }, { "input": "dory", "output": "⠙⠕⠗⠽" }, { "input": "dos", "output": "⠙⠕⠎" }, { "input": "dosage", "output": "⠙⠕⠎â â ›â ‘" }, { "input": "dosages", "output": "⠙⠕⠎â â ›â ‘â Ž" }, { "input": "dose", "output": "⠙⠕⠎⠑" }, { "input": "dosed", "output": "⠙⠕⠎⠫" }, { "input": "doses", "output": "⠙⠕⠎⠑⠎" }, { "input": "dosing", "output": "⠙⠕⠎⠬" }, { "input": "dossier", "output": "⠙⠕⠎⠎⠊⠻" }, { "input": "dossiers", "output": "⠙⠕⠎⠎⠊⠻⠎" }, { "input": "dot", "output": "⠙⠕⠞" }, { "input": "dotage", "output": "⠙⠕⠞â â ›â ‘" }, { "input": "dote", "output": "⠙⠕⠞⠑" }, { "input": "doted", "output": "⠙⠕⠞⠫" }, { "input": "dotes", "output": "⠙⠕⠞⠑⠎" }, { "input": "doth", "output": "⠙⠕⠹" }, { "input": "doting", "output": "⠙⠕⠞⠬" }, { "input": "dotingly", "output": "⠙⠕⠞⠬⠇⠽" }, { "input": "dots", "output": "⠙⠕⠞⠎" }, { "input": "dotted", "output": "⠙⠕⠞⠞⠫" }, { "input": "dotting", "output": "⠙⠕⠞⠞⠬" }, { "input": "dotty", "output": "⠙⠕⠞⠞⠽" }, { "input": "double", "output": "⠙⠳⠃⠇⠑" }, { "input": "doubled", "output": "⠙⠳⠃⠇⠫" }, { "input": "doubles", "output": "⠙⠳⠃⠇⠑⠎" }, { "input": "doublet", "output": "⠙⠳⠃⠇⠑⠞" }, { "input": "doublets", "output": "⠙⠳⠃⠇⠑⠞⠎" }, { "input": "doubling", "output": "⠙⠳⠃⠇⠬" }, { "input": "doubloon", "output": "⠙⠳⠃⠇⠕⠕â " }, { "input": "doubloons", "output": "⠙⠳⠃⠇⠕⠕â â Ž" }, { "input": "doubly", "output": "⠙⠳⠃⠇⠽" }, { "input": "doubt", "output": "⠙⠳⠃⠞" }, { "input": "doubted", "output": "⠙⠳⠃⠞⠫" }, { "input": "doubter", "output": "⠙⠳⠃⠞⠻" }, { "input": "doubters", "output": "⠙⠳⠃⠞⠻⠎" }, { "input": "doubtful", "output": "⠙⠳⠃⠞⠰⠇" }, { "input": "doubtfully", "output": "⠙⠳⠃⠞⠰⠇⠇⠽" }, { "input": "doubting", "output": "⠙⠳⠃⠞⠬" }, { "input": "doubtless", "output": "⠙⠳⠃⠞⠨⠎" }, { "input": "doubtlessly", "output": "⠙⠳⠃⠞⠨⠎⠇⠽" }, { "input": "doubts", "output": "⠙⠳⠃⠞⠎" }, { "input": "douche", "output": "⠙⠳⠡⠑" }, { "input": "douched", "output": "⠙⠳⠡⠫" }, { "input": "douches", "output": "⠙⠳⠡⠑⠎" }, { "input": "douching", "output": "⠙⠳⠡⠬" }, { "input": "dough", "output": "⠙⠳⠣" }, { "input": "doughier", "output": "⠙⠳⠣⠊⠻" }, { "input": "doughiest", "output": "⠙⠳⠣⠊⠑⠌" }, { "input": "doughnut", "output": "⠙⠳⠣â â ¥â ž" }, { "input": "doughnuts", "output": "⠙⠳⠣â â ¥â žâ Ž" }, { "input": "doughtier", "output": "â ™â â ³â Šâ »" }, { "input": "doughtiest", "output": "â ™â â ³â Šâ ‘â Œ" }, { "input": "doughty", "output": "â ™â â ³â ½" }, { "input": "doughy", "output": "⠙⠳⠣⠽" }, { "input": "dour", "output": "⠙⠳⠗" }, { "input": "dourer", "output": "⠙⠳⠗⠻" }, { "input": "dourest", "output": "⠙⠳⠗⠑⠌" }, { "input": "dourly", "output": "⠙⠳⠗⠇⠽" }, { "input": "douse", "output": "⠙⠳⠎⠑" }, { "input": "doused", "output": "⠙⠳⠎⠫" }, { "input": "douses", "output": "⠙⠳⠎⠑⠎" }, { "input": "dousing", "output": "⠙⠳⠎⠬" }, { "input": "dove", "output": "⠙⠕⠧⠑" }, { "input": "doves", "output": "⠙⠕⠧⠑⠎" }, { "input": "dovetail", "output": "⠙⠕⠧⠑⠞â â Šâ ‡" }, { "input": "dovetailed", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â «" }, { "input": "dovetailing", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â ¬" }, { "input": "dovetails", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â Ž" }, { "input": "dowager", "output": "⠙⠪â â ›â »" }, { "input": "dowagers", "output": "⠙⠪â â ›â »â Ž" }, { "input": "dowdier", "output": "⠙⠪⠙⠊⠻" }, { "input": "dowdies", "output": "⠙⠪⠙⠊⠑⠎" }, { "input": "dowdiest", "output": "⠙⠪⠙⠊⠑⠌" }, { "input": "dowdily", "output": "⠙⠪⠙⠊⠇⠽" }, { "input": "dowdiness", "output": "⠙⠪⠙⠊⠰⠎" }, { "input": "dowdy", "output": "⠙⠪⠙⠽" }, { "input": "dowel", "output": "⠙⠪⠑⠇" }, { "input": "doweled", "output": "⠙⠪⠑⠇⠫" }, { "input": "doweling", "output": "⠙⠪⠑⠇⠬" }, { "input": "dowelled", "output": "⠙⠪⠑⠇⠇⠫" }, { "input": "dowelling", "output": "⠙⠪⠑⠇⠇⠬" }, { "input": "dowels", "output": "⠙⠪⠑⠇⠎" }, { "input": "down", "output": "⠙⠪â " }, { "input": "downbeat", "output": "⠙⠪â â ƒâ ‚â ž" }, { "input": "downbeats", "output": "⠙⠪â â ƒâ ‚â žâ Ž" }, { "input": "downcast", "output": "⠙⠪â â ‰â â Œ" }, { "input": "downed", "output": "⠙⠪â â «" }, { "input": "downer", "output": "⠙⠪â â »" }, { "input": "downers", "output": "⠙⠪â â »â Ž" }, { "input": "downfall", "output": "⠙⠪â â ‹â â ‡â ‡" }, { "input": "downfalls", "output": "⠙⠪â â ‹â â ‡â ‡â Ž" }, { "input": "downgrade", "output": "⠙⠪â â ›â —â â ™â ‘" }, { "input": "downgraded", "output": "⠙⠪â â ›â —â â ™â «" }, { "input": "downgrades", "output": "⠙⠪â â ›â —â â ™â ‘â Ž" }, { "input": "downgrading", "output": "⠙⠪â â ›â —â â ™â ¬" }, { "input": "downhearted", "output": "⠙⠪â â “⠑⠜⠞⠫" }, { "input": "downhill", "output": "⠙⠪â â “⠊⠇⠇" }, { "input": "downhills", "output": "⠙⠪â â “⠊⠇⠇⠎" }, { "input": "downier", "output": "⠙⠪â â Šâ »" }, { "input": "downiest", "output": "⠙⠪â â Šâ ‘â Œ" }, { "input": "downing", "output": "⠙⠪â â ¬" }, { "input": "download", "output": "⠙⠪â â ‡â •â â ™" }, { "input": "downloaded", "output": "⠙⠪â â ‡â •â â ™â «" }, { "input": "downloading", "output": "⠙⠪â â ‡â •â â ™â ¬" }, { "input": "downloads", "output": "⠙⠪â â ‡â •â â ™â Ž" }, { "input": "downplay", "output": "⠙⠪â â â ‡â â ½" }, { "input": "downplayed", "output": "⠙⠪â â â ‡â â ½â «" }, { "input": "downplaying", "output": "⠙⠪â â â ‡â â ½â ¬" }, { "input": "downplays", "output": "⠙⠪â â â ‡â â ½â Ž" }, { "input": "downpour", "output": "⠙⠪â â â ³â —" }, { "input": "downpours", "output": "⠙⠪â â â ³â —â Ž" }, { "input": "downright", "output": "⠙⠪â â â —" }, { "input": "downs", "output": "⠙⠪â â Ž" }, { "input": "downscale", "output": "⠙⠪â â Žâ ‰â â ‡â ‘" }, { "input": "downsize", "output": "⠙⠪â â Žâ Šâ µâ ‘" }, { "input": "downsized", "output": "⠙⠪â â Žâ Šâ µâ «" }, { "input": "downsizes", "output": "⠙⠪â â Žâ Šâ µâ ‘â Ž" }, { "input": "downsizing", "output": "⠙⠪â â Žâ Šâ µâ ¬" }, { "input": "downstage", "output": "⠙⠪â â Œâ â ›â ‘" }, { "input": "downstairs", "output": "⠙⠪â â Œâ â Šâ —â Ž" }, { "input": "downstate", "output": "⠙⠪â â Œâ â žâ ‘" }, { "input": "downstream", "output": "⠙⠪â â Œâ —â ‚â " }, { "input": "downswing", "output": "⠙⠪â â Žâ ºâ ¬" }, { "input": "downswings", "output": "⠙⠪â â Žâ ºâ ¬â Ž" }, { "input": "downtime", "output": "⠙⠪â â â ž" }, { "input": "downtown", "output": "⠙⠪â â žâ ªâ " }, { "input": "downtrodden", "output": "⠙⠪â â žâ —⠕⠙⠙⠢" }, { "input": "downturn", "output": "⠙⠪â â žâ ¥â —â " }, { "input": "downturns", "output": "⠙⠪â â žâ ¥â —â â Ž" }, { "input": "downward", "output": "⠙⠪â â ºâ œâ ™" }, { "input": "downwards", "output": "⠙⠪â â ºâ œâ ™â Ž" }, { "input": "downwind", "output": "⠙⠪â â ºâ ”â ™" }, { "input": "downy", "output": "⠙⠪â â ½" }, { "input": "dowries", "output": "⠙⠪⠗⠊⠑⠎" }, { "input": "dowry", "output": "⠙⠪⠗⠽" }, { "input": "dowse", "output": "⠙⠪⠎⠑" }, { "input": "dowsed", "output": "⠙⠪⠎⠫" }, { "input": "dowses", "output": "⠙⠪⠎⠑⠎" }, { "input": "dowsing", "output": "⠙⠪⠎⠬" }, { "input": "doxologies", "output": "⠙⠕⠭⠕⠇⠕⠛⠊⠑⠎" }, { "input": "doxology", "output": "⠙⠕⠭⠕⠇⠕⠛⠽" }, { "input": "doyen", "output": "⠙⠕⠽⠢" }, { "input": "doyens", "output": "⠙⠕⠽⠢⠎" }, { "input": "doze", "output": "⠙⠕⠵⠑" }, { "input": "dozed", "output": "⠙⠕⠵⠫" }, { "input": "dozen", "output": "⠙⠕⠵⠢" }, { "input": "dozens", "output": "⠙⠕⠵⠢⠎" }, { "input": "dozes", "output": "⠙⠕⠵⠑⠎" }, { "input": "dozing", "output": "⠙⠕⠵⠬" }, { "input": "drab", "output": "⠙⠗â â ƒ" }, { "input": "drabber", "output": "⠙⠗â â †â »" }, { "input": "drabbest", "output": "⠙⠗â â †â ‘â Œ" }, { "input": "drably", "output": "⠙⠗â â ƒâ ‡â ½" }, { "input": "drabness", "output": "⠙⠗â â ƒâ °â Ž" }, { "input": "drabs", "output": "⠙⠗â â ƒâ Ž" }, { "input": "drachma", "output": "⠙⠗â â ¡â â " }, { "input": "drachmae", "output": "⠙⠗â â ¡â â â ‘" }, { "input": "drachmai", "output": "⠙⠗â â ¡â â â Š" }, { "input": "drachmas", "output": "⠙⠗â â ¡â â â Ž" }, { "input": "draconian", "output": "⠙⠗â â ‰â •â â Šâ â " }, { "input": "draft", "output": "⠙⠗â â ‹â ž" }, { "input": "drafted", "output": "⠙⠗â â ‹â žâ «" }, { "input": "draftee", "output": "⠙⠗â â ‹â žâ ‘â ‘" }, { "input": "draftees", "output": "⠙⠗â â ‹â žâ ‘â ‘â Ž" }, { "input": "draftier", "output": "⠙⠗â â ‹â žâ Šâ »" }, { "input": "draftiest", "output": "⠙⠗â â ‹â žâ Šâ ‘â Œ" }, { "input": "draftiness", "output": "⠙⠗â â ‹â žâ Šâ °â Ž" }, { "input": "drafting", "output": "⠙⠗â â ‹â žâ ¬" }, { "input": "drafts", "output": "⠙⠗â â ‹â žâ Ž" }, { "input": "draftsman", "output": "⠙⠗â â ‹â žâ Žâ â â " }, { "input": "draftsmanship", "output": "⠙⠗â â ‹â žâ Žâ â â â ©â Šâ " }, { "input": "draftsmen", "output": "⠙⠗â â ‹â žâ Žâ â ¢" }, { "input": "drafty", "output": "⠙⠗â â ‹â žâ ½" }, { "input": "drag", "output": "⠙⠗â â ›" }, { "input": "dragged", "output": "⠙⠗â â ¶â «" }, { "input": "dragging", "output": "⠙⠗â â ¶â ¬" }, { "input": "dragnet", "output": "⠙⠗â â ›â â ‘â ž" }, { "input": "dragnets", "output": "⠙⠗â â ›â â ‘â žâ Ž" }, { "input": "dragon", "output": "⠙⠗â â ›â •â " }, { "input": "dragonflies", "output": "⠙⠗â â ›â •â â ‹â ‡â Šâ ‘â Ž" }, { "input": "dragonfly", "output": "⠙⠗â â ›â •â â ‹â ‡â ½" }, { "input": "dragons", "output": "⠙⠗â â ›â •â â Ž" }, { "input": "dragoon", "output": "⠙⠗â â ›â •â •â " }, { "input": "dragooned", "output": "⠙⠗â â ›â •â •â â «" }, { "input": "dragooning", "output": "⠙⠗â â ›â •â •â â ¬" }, { "input": "dragoons", "output": "⠙⠗â â ›â •â •â â Ž" }, { "input": "drags", "output": "⠙⠗â â ›â Ž" }, { "input": "drain", "output": "⠙⠗â â ”" }, { "input": "drainage", "output": "⠙⠗â â ”â â ›â ‘" }, { "input": "drained", "output": "⠙⠗â â ”â «" }, { "input": "drainer", "output": "⠙⠗â â ”â »" }, { "input": "drainers", "output": "⠙⠗â â ”⠻⠎" }, { "input": "draining", "output": "⠙⠗â â ”â ¬" }, { "input": "drainpipe", "output": "⠙⠗â â ”â â Šâ â ‘" }, { "input": "drainpipes", "output": "⠙⠗â â ”â â Šâ â ‘â Ž" }, { "input": "drains", "output": "⠙⠗â â ”â Ž" }, { "input": "drake", "output": "⠙⠗â â …â ‘" }, { "input": "drakes", "output": "⠙⠗â â …â ‘â Ž" }, { "input": "dram", "output": "⠙⠗â â " }, { "input": "drama", "output": "⠙⠗â â â " }, { "input": "dramas", "output": "⠙⠗â â â â Ž" }, { "input": "dramatic", "output": "⠙⠗â â â â žâ Šâ ‰" }, { "input": "dramatically", "output": "⠙⠗â â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "dramatics", "output": "⠙⠗â â â â žâ Šâ ‰â Ž" }, { "input": "dramatist", "output": "⠙⠗â â â â žâ Šâ Œ" }, { "input": "dramatists", "output": "⠙⠗â â â â žâ Šâ Œâ Ž" }, { "input": "dramatization", "output": "⠙⠗â â â â žâ Šâ µâ â °â " }, { "input": "dramatizations", "output": "⠙⠗â â â â žâ Šâ µâ â °â â Ž" }, { "input": "dramatize", "output": "⠙⠗â â â â žâ Šâ µâ ‘" }, { "input": "dramatized", "output": "⠙⠗â â â â žâ Šâ µâ «" }, { "input": "dramatizes", "output": "⠙⠗â â â â žâ Šâ µâ ‘â Ž" }, { "input": "dramatizing", "output": "⠙⠗â â â â žâ Šâ µâ ¬" }, { "input": "drams", "output": "⠙⠗â â â Ž" }, { "input": "drank", "output": "⠙⠗â â â …" }, { "input": "drape", "output": "⠙⠗â â â ‘" }, { "input": "draped", "output": "⠙⠗â â â «" }, { "input": "draperies", "output": "⠙⠗â â â »â Šâ ‘â Ž" }, { "input": "drapery", "output": "⠙⠗â â â »â ½" }, { "input": "drapes", "output": "⠙⠗â â â ‘â Ž" }, { "input": "draping", "output": "⠙⠗â â â ¬" }, { "input": "drastic", "output": "⠙⠗â â Œâ Šâ ‰" }, { "input": "drastically", "output": "⠙⠗â â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "draw", "output": "⠙⠗â â º" }, { "input": "drawback", "output": "⠙⠗â â ºâ ƒâ â ‰â …" }, { "input": "drawbacks", "output": "⠙⠗â â ºâ ƒâ â ‰â …â Ž" }, { "input": "drawbridge", "output": "⠙⠗â â ºâ ƒâ —⠊⠙⠛⠑" }, { "input": "drawbridges", "output": "⠙⠗â â ºâ ƒâ —⠊⠙⠛⠑⠎" }, { "input": "drawer", "output": "⠙⠗â â ºâ »" }, { "input": "drawers", "output": "⠙⠗â â ºâ »â Ž" }, { "input": "drawing", "output": "⠙⠗â â ºâ ¬" }, { "input": "drawings", "output": "⠙⠗â â ºâ ¬â Ž" }, { "input": "drawl", "output": "⠙⠗â â ºâ ‡" }, { "input": "drawled", "output": "⠙⠗â â ºâ ‡â «" }, { "input": "drawling", "output": "⠙⠗â â ºâ ‡â ¬" }, { "input": "drawls", "output": "⠙⠗â â ºâ ‡â Ž" }, { "input": "drawn", "output": "⠙⠗â â ºâ " }, { "input": "draws", "output": "⠙⠗â â ºâ Ž" }, { "input": "drawstring", "output": "⠙⠗â â ºâ Œâ —â ¬" }, { "input": "drawstrings", "output": "⠙⠗â â ºâ Œâ —⠬⠎" }, { "input": "dray", "output": "⠙⠗â â ½" }, { "input": "drays", "output": "⠙⠗â â ½â Ž" }, { "input": "dread", "output": "⠙⠗⠂⠙" }, { "input": "dreaded", "output": "⠙⠗⠂⠙⠫" }, { "input": "dreadful", "output": "⠙⠗⠂⠙⠰⠇" }, { "input": "dreadfully", "output": "⠙⠗⠂⠙⠰⠇⠇⠽" }, { "input": "dreading", "output": "⠙⠗⠂⠙⠬" }, { "input": "dreadlocks", "output": "⠙⠗⠂⠙⠇⠕⠉⠅⠎" }, { "input": "dreadnought", "output": "⠙⠗⠂⠙â â â ³" }, { "input": "dreadnoughts", "output": "⠙⠗⠂⠙â â â ³â Ž" }, { "input": "dreads", "output": "⠙⠗⠂⠙⠎" }, { "input": "dream", "output": "⠙⠗⠂â " }, { "input": "dreamed", "output": "⠙⠗⠂â â «" }, { "input": "dreamer", "output": "⠙⠗⠂â â »" }, { "input": "dreamers", "output": "⠙⠗⠂â â »â Ž" }, { "input": "dreamier", "output": "⠙⠗⠂â â Šâ »" }, { "input": "dreamiest", "output": "⠙⠗⠂â â Šâ ‘â Œ" }, { "input": "dreamily", "output": "⠙⠗⠂â â Šâ ‡â ½" }, { "input": "dreaming", "output": "⠙⠗⠂â â ¬" }, { "input": "dreamland", "output": "⠙⠗⠂â â ‡â ¯" }, { "input": "dreamless", "output": "⠙⠗⠂â â ¨â Ž" }, { "input": "dreamlike", "output": "⠙⠗⠂â â ‡â Šâ …â ‘" }, { "input": "dreams", "output": "⠙⠗⠂â â Ž" }, { "input": "dreamy", "output": "⠙⠗⠂â â ½" }, { "input": "drearier", "output": "⠙⠗⠑⠜⠊⠻" }, { "input": "dreariest", "output": "⠙⠗⠑⠜⠊⠑⠌" }, { "input": "drearily", "output": "⠙⠗⠑⠜⠊⠇⠽" }, { "input": "dreariness", "output": "⠙⠗⠑⠜⠊⠰⠎" }, { "input": "dreary", "output": "⠙⠗⠑⠜⠽" }, { "input": "dredge", "output": "⠙⠗⠫⠛⠑" }, { "input": "dredged", "output": "⠙⠗⠫⠛⠫" }, { "input": "dredger", "output": "⠙⠗⠫⠛⠻" }, { "input": "dredgers", "output": "⠙⠗⠫⠛⠻⠎" }, { "input": "dredges", "output": "⠙⠗⠫⠛⠑⠎" }, { "input": "dredging", "output": "⠙⠗⠫⠛⠬" }, { "input": "dregs", "output": "⠙⠗⠑⠛⠎" }, { "input": "drench", "output": "⠙⠗⠢⠡" }, { "input": "drenched", "output": "⠙⠗⠢⠡⠫" }, { "input": "drenches", "output": "⠙⠗⠢⠡⠑⠎" }, { "input": "drenching", "output": "⠙⠗⠢⠡⠬" }, { "input": "dress", "output": "⠙⠗⠑⠎⠎" }, { "input": "dressage", "output": "⠙⠗⠑⠎⠎â â ›â ‘" }, { "input": "dressed", "output": "⠙⠗⠑⠎⠎⠫" }, { "input": "dresser", "output": "⠙⠗⠑⠎⠎⠻" }, { "input": "dressers", "output": "⠙⠗⠑⠎⠎⠻⠎" }, { "input": "dresses", "output": "⠙⠗⠑⠎⠎⠑⠎" }, { "input": "dressier", "output": "⠙⠗⠑⠎⠎⠊⠻" }, { "input": "dressiest", "output": "⠙⠗⠑⠎⠎⠊⠑⠌" }, { "input": "dressiness", "output": "⠙⠗⠑⠎⠎⠊⠰⠎" }, { "input": "dressing", "output": "⠙⠗⠑⠎⠎⠬" }, { "input": "dressings", "output": "⠙⠗⠑⠎⠎⠬⠎" }, { "input": "dressmaker", "output": "⠙⠗⠑⠎⠎â â â …â »" }, { "input": "dressmakers", "output": "⠙⠗⠑⠎⠎â â â …⠻⠎" }, { "input": "dressmaking", "output": "⠙⠗⠑⠎⠎â â â …â ¬" }, { "input": "dressy", "output": "⠙⠗⠑⠎⠎⠽" }, { "input": "drew", "output": "⠙⠗⠑⠺" }, { "input": "dribble", "output": "⠙⠗⠊⠆⠇⠑" }, { "input": "dribbled", "output": "⠙⠗⠊⠆⠇⠫" }, { "input": "dribbler", "output": "⠙⠗⠊⠆⠇⠻" }, { "input": "dribblers", "output": "⠙⠗⠊⠆⠇⠻⠎" }, { "input": "dribbles", "output": "⠙⠗⠊⠆⠇⠑⠎" }, { "input": "dribbling", "output": "⠙⠗⠊⠆⠇⠬" }, { "input": "driblet", "output": "⠙⠗⠊⠃⠇⠑⠞" }, { "input": "driblets", "output": "⠙⠗⠊⠃⠇⠑⠞⠎" }, { "input": "dried", "output": "⠙⠗⠊⠫" }, { "input": "drier", "output": "⠙⠗⠊⠻" }, { "input": "driers", "output": "⠙⠗⠊⠻⠎" }, { "input": "dries", "output": "⠙⠗⠊⠑⠎" }, { "input": "driest", "output": "⠙⠗⠊⠑⠌" }, { "input": "drift", "output": "⠙⠗⠊⠋⠞" }, { "input": "drifted", "output": "⠙⠗⠊⠋⠞⠫" }, { "input": "drifter", "output": "⠙⠗⠊⠋⠞⠻" }, { "input": "drifters", "output": "⠙⠗⠊⠋⠞⠻⠎" }, { "input": "drifting", "output": "⠙⠗⠊⠋⠞⠬" }, { "input": "drifts", "output": "⠙⠗⠊⠋⠞⠎" }, { "input": "driftwood", "output": "⠙⠗⠊⠋⠞⠺⠕⠕⠙" }, { "input": "drill", "output": "⠙⠗⠊⠇⠇" }, { "input": "drilled", "output": "⠙⠗⠊⠇⠇⠫" }, { "input": "drilling", "output": "⠙⠗⠊⠇⠇⠬" }, { "input": "drills", "output": "⠙⠗⠊⠇⠇⠎" }, { "input": "drily", "output": "⠙⠗⠊⠇⠽" }, { "input": "drink", "output": "⠙⠗⠔⠅" }, { "input": "drinkable", "output": "⠙⠗⠔⠅â â ƒâ ‡â ‘" }, { "input": "drinker", "output": "⠙⠗⠔⠅⠻" }, { "input": "drinkers", "output": "⠙⠗⠔⠅⠻⠎" }, { "input": "drinking", "output": "⠙⠗⠔⠅⠬" }, { "input": "drinkings", "output": "⠙⠗⠔⠅⠬⠎" }, { "input": "drinks", "output": "⠙⠗⠔⠅⠎" }, { "input": "drip", "output": "⠙⠗⠊â " }, { "input": "dripped", "output": "⠙⠗⠊â â â «" }, { "input": "dripping", "output": "⠙⠗⠊â â â ¬" }, { "input": "drippings", "output": "⠙⠗⠊â â â ¬â Ž" }, { "input": "drips", "output": "⠙⠗⠊â â Ž" }, { "input": "drive", "output": "⠙⠗⠊⠧⠑" }, { "input": "drivel", "output": "⠙⠗⠊⠧⠑⠇" }, { "input": "driveled", "output": "⠙⠗⠊⠧⠑⠇⠫" }, { "input": "driveling", "output": "⠙⠗⠊⠧⠑⠇⠬" }, { "input": "drivelled", "output": "⠙⠗⠊⠧⠑⠇⠇⠫" }, { "input": "drivelling", "output": "⠙⠗⠊⠧⠑⠇⠇⠬" }, { "input": "drivels", "output": "⠙⠗⠊⠧⠑⠇⠎" }, { "input": "driven", "output": "⠙⠗⠊⠧⠢" }, { "input": "driver", "output": "⠙⠗⠊⠧⠻" }, { "input": "drivers", "output": "⠙⠗⠊⠧⠻⠎" }, { "input": "drives", "output": "⠙⠗⠊⠧⠑⠎" }, { "input": "driveway", "output": "⠙⠗⠊⠧⠑⠺â â ½" }, { "input": "driveways", "output": "⠙⠗⠊⠧⠑⠺â â ½â Ž" }, { "input": "driving", "output": "⠙⠗⠊⠧⠬" }, { "input": "drivings", "output": "⠙⠗⠊⠧⠬⠎" }, { "input": "drizzle", "output": "⠙⠗⠊⠵⠵⠇⠑" }, { "input": "drizzled", "output": "⠙⠗⠊⠵⠵⠇⠫" }, { "input": "drizzles", "output": "⠙⠗⠊⠵⠵⠇⠑⠎" }, { "input": "drizzlier", "output": "⠙⠗⠊⠵⠵⠇⠊⠻" }, { "input": "drizzliest", "output": "⠙⠗⠊⠵⠵⠇⠊⠑⠌" }, { "input": "drizzling", "output": "⠙⠗⠊⠵⠵⠇⠬" }, { "input": "drizzly", "output": "⠙⠗⠊⠵⠵⠇⠽" }, { "input": "droll", "output": "⠙⠗⠕⠇⠇" }, { "input": "droller", "output": "⠙⠗⠕⠇⠇⠻" }, { "input": "drolleries", "output": "⠙⠗⠕⠇⠇⠻⠊⠑⠎" }, { "input": "drollery", "output": "⠙⠗⠕⠇⠇⠻⠽" }, { "input": "drollest", "output": "⠙⠗⠕⠇⠇⠑⠌" }, { "input": "drollness", "output": "⠙⠗⠕⠇⠇⠰⠎" }, { "input": "drolly", "output": "⠙⠗⠕⠇⠇⠽" }, { "input": "dromedaries", "output": "⠙⠗⠕â â «â œâ Šâ ‘â Ž" }, { "input": "dromedary", "output": "⠙⠗⠕â â «â œâ ½" }, { "input": "drone", "output": "⠙⠗â â •" }, { "input": "droned", "output": "⠙⠗⠕â â «" }, { "input": "drones", "output": "⠙⠗â â •â Ž" }, { "input": "droning", "output": "⠙⠗⠕â â ¬" }, { "input": "drool", "output": "⠙⠗⠕⠕⠇" }, { "input": "drooled", "output": "⠙⠗⠕⠕⠇⠫" }, { "input": "drooling", "output": "⠙⠗⠕⠕⠇⠬" }, { "input": "drools", "output": "⠙⠗⠕⠕⠇⠎" }, { "input": "droop", "output": "⠙⠗⠕⠕â " }, { "input": "drooped", "output": "⠙⠗⠕⠕â â «" }, { "input": "droopier", "output": "⠙⠗⠕⠕â â Šâ »" }, { "input": "droopiest", "output": "⠙⠗⠕⠕â â Šâ ‘â Œ" }, { "input": "drooping", "output": "⠙⠗⠕⠕â â ¬" }, { "input": "droops", "output": "⠙⠗⠕⠕â â Ž" }, { "input": "droopy", "output": "⠙⠗⠕⠕â â ½" }, { "input": "drop", "output": "⠙⠗⠕â " }, { "input": "droplet", "output": "⠙⠗⠕â â ‡â ‘â ž" }, { "input": "droplets", "output": "⠙⠗⠕â â ‡â ‘â žâ Ž" }, { "input": "dropout", "output": "⠙⠗⠕â â ³â ž" }, { "input": "dropouts", "output": "⠙⠗⠕â â ³â žâ Ž" }, { "input": "dropped", "output": "⠙⠗⠕â â â «" }, { "input": "dropper", "output": "⠙⠗⠕â â â »" }, { "input": "droppers", "output": "⠙⠗⠕â â â »â Ž" }, { "input": "dropping", "output": "⠙⠗⠕â â â ¬" }, { "input": "droppings", "output": "⠙⠗⠕â â â ¬â Ž" }, { "input": "drops", "output": "⠙⠗⠕â â Ž" }, { "input": "dropsy", "output": "⠙⠗⠕â â Žâ ½" }, { "input": "dross", "output": "⠙⠗⠕⠎⠎" }, { "input": "drought", "output": "⠙⠗â â ³" }, { "input": "droughts", "output": "⠙⠗â â ³â Ž" }, { "input": "drouth", "output": "⠙⠗⠳⠹" }, { "input": "drouthes", "output": "⠙⠗⠳⠮⠎" }, { "input": "drouths", "output": "⠙⠗⠳⠹⠎" }, { "input": "drove", "output": "⠙⠗⠕⠧⠑" }, { "input": "drover", "output": "⠙⠗⠕⠧⠻" }, { "input": "drovers", "output": "⠙⠗⠕⠧⠻⠎" }, { "input": "droves", "output": "⠙⠗⠕⠧⠑⠎" }, { "input": "drown", "output": "⠙⠗⠪â " }, { "input": "drowned", "output": "⠙⠗⠪â â «" }, { "input": "drowning", "output": "⠙⠗⠪â â ¬" }, { "input": "drownings", "output": "⠙⠗⠪â â ¬â Ž" }, { "input": "drowns", "output": "⠙⠗⠪â â Ž" }, { "input": "drowse", "output": "⠙⠗⠪⠎⠑" }, { "input": "drowsed", "output": "⠙⠗⠪⠎⠫" }, { "input": "drowses", "output": "⠙⠗⠪⠎⠑⠎" }, { "input": "drowsier", "output": "⠙⠗⠪⠎⠊⠻" }, { "input": "drowsiest", "output": "⠙⠗⠪⠎⠊⠑⠌" }, { "input": "drowsily", "output": "⠙⠗⠪⠎⠊⠇⠽" }, { "input": "drowsiness", "output": "⠙⠗⠪⠎⠊⠰⠎" }, { "input": "drowsing", "output": "⠙⠗⠪⠎⠬" }, { "input": "drowsy", "output": "⠙⠗⠪⠎⠽" }, { "input": "drub", "output": "⠙⠗⠥⠃" }, { "input": "drubbed", "output": "⠙⠗⠥⠆⠫" }, { "input": "drubbing", "output": "⠙⠗⠥⠆⠬" }, { "input": "drubbings", "output": "⠙⠗⠥⠆⠬⠎" }, { "input": "drubs", "output": "⠙⠗⠥⠃⠎" }, { "input": "drudge", "output": "⠙⠗⠥⠙⠛⠑" }, { "input": "drudged", "output": "⠙⠗⠥⠙⠛⠫" }, { "input": "drudgery", "output": "⠙⠗⠥⠙⠛⠻⠽" }, { "input": "drudges", "output": "⠙⠗⠥⠙⠛⠑⠎" }, { "input": "drudging", "output": "⠙⠗⠥⠙⠛⠬" }, { "input": "drug", "output": "⠙⠗⠥⠛" }, { "input": "drugged", "output": "⠙⠗⠥⠶⠫" }, { "input": "drugging", "output": "⠙⠗⠥⠶⠬" }, { "input": "druggist", "output": "⠙⠗⠥⠶⠊⠌" }, { "input": "druggists", "output": "⠙⠗⠥⠶⠊⠌⠎" }, { "input": "drugs", "output": "⠙⠗⠥⠛⠎" }, { "input": "drugstore", "output": "⠙⠗⠥⠛⠌⠕⠗⠑" }, { "input": "drugstores", "output": "⠙⠗⠥⠛⠌⠕⠗⠑⠎" }, { "input": "druid", "output": "⠙⠗⠥⠊⠙" }, { "input": "druids", "output": "⠙⠗⠥⠊⠙⠎" }, { "input": "drum", "output": "⠙⠗⠥â " }, { "input": "drummed", "output": "⠙⠗⠥â â â «" }, { "input": "drummer", "output": "⠙⠗⠥â â â »" }, { "input": "drummers", "output": "⠙⠗⠥â â â »â Ž" }, { "input": "drumming", "output": "⠙⠗⠥â â â ¬" }, { "input": "drums", "output": "⠙⠗⠥â â Ž" }, { "input": "drumstick", "output": "⠙⠗⠥â â Œâ Šâ ‰â …" }, { "input": "drumsticks", "output": "⠙⠗⠥â â Œâ Šâ ‰â …â Ž" }, { "input": "drunk", "output": "⠙⠗⠥â â …" }, { "input": "drunkard", "output": "⠙⠗⠥â â …⠜⠙" }, { "input": "drunkards", "output": "⠙⠗⠥â â …⠜⠙⠎" }, { "input": "drunken", "output": "⠙⠗⠥â â …â ¢" }, { "input": "drunkenly", "output": "⠙⠗⠥â â …⠢⠇⠽" }, { "input": "drunkenness", "output": "⠙⠗⠥â â …⠢⠰⠎" }, { "input": "drunker", "output": "⠙⠗⠥â â …â »" }, { "input": "drunkest", "output": "⠙⠗⠥â â …â ‘â Œ" }, { "input": "drunks", "output": "⠙⠗⠥â â …â Ž" }, { "input": "dry", "output": "⠙⠗⠽" }, { "input": "dryad", "output": "⠙⠗⠽â â ™" }, { "input": "dryads", "output": "⠙⠗⠽â â ™â Ž" }, { "input": "dryer", "output": "⠙⠗⠽⠻" }, { "input": "dryers", "output": "⠙⠗⠽⠻⠎" }, { "input": "dryest", "output": "⠙⠗⠽⠑⠌" }, { "input": "drying", "output": "⠙⠗⠽⠬" }, { "input": "dryly", "output": "⠙⠗⠽⠇⠽" }, { "input": "dryness", "output": "⠙⠗⠽⠰⠎" }, { "input": "drys", "output": "⠙⠗⠽⠎" }, { "input": "drywall", "output": "⠙⠗⠽⠺â â ‡â ‡" }, { "input": "dual", "output": "⠙⠥â â ‡" }, { "input": "dualism", "output": "⠙⠥â â ‡â Šâ Žâ " }, { "input": "duality", "output": "⠙⠥â â ‡â °â ½" }, { "input": "dub", "output": "⠙⠥⠃" }, { "input": "dubbed", "output": "⠙⠥⠆⠫" }, { "input": "dubbing", "output": "⠙⠥⠆⠬" }, { "input": "dubiety", "output": "⠙⠥⠃⠊⠑⠞⠽" }, { "input": "dubious", "output": "⠙⠥⠃⠊⠳⠎" }, { "input": "dubiously", "output": "⠙⠥⠃⠊⠳⠎⠇⠽" }, { "input": "dubiousness", "output": "⠙⠥⠃⠊⠳⠎⠰⠎" }, { "input": "dubs", "output": "⠙⠥⠃⠎" }, { "input": "ducal", "output": "⠙⠥⠉â â ‡" }, { "input": "ducat", "output": "⠙⠥⠉â â ž" }, { "input": "ducats", "output": "⠙⠥⠉â â žâ Ž" }, { "input": "duchess", "output": "⠙⠥⠡⠑⠎⠎" }, { "input": "duchesses", "output": "⠙⠥⠡⠑⠎⠎⠑⠎" }, { "input": "duchies", "output": "⠙⠥⠡⠊⠑⠎" }, { "input": "duchy", "output": "⠙⠥⠡⠽" }, { "input": "duck", "output": "⠙⠥⠉⠅" }, { "input": "duckbill", "output": "⠙⠥⠉⠅⠃⠊⠇⠇" }, { "input": "duckbills", "output": "⠙⠥⠉⠅⠃⠊⠇⠇⠎" }, { "input": "ducked", "output": "⠙⠥⠉⠅⠫" }, { "input": "ducking", "output": "⠙⠥⠉⠅⠬" }, { "input": "duckling", "output": "⠙⠥⠉⠅⠇⠬" }, { "input": "ducklings", "output": "⠙⠥⠉⠅⠇⠬⠎" }, { "input": "ducks", "output": "⠙⠥⠉⠅⠎" }, { "input": "duct", "output": "⠙⠥⠉⠞" }, { "input": "ductile", "output": "⠙⠥⠉⠞⠊⠇⠑" }, { "input": "ductility", "output": "⠙⠥⠉⠞⠊⠇⠰⠽" }, { "input": "ducting", "output": "⠙⠥⠉⠞⠬" }, { "input": "ductless", "output": "⠙⠥⠉⠞⠨⠎" }, { "input": "ducts", "output": "⠙⠥⠉⠞⠎" }, { "input": "dud", "output": "⠙⠥⠙" }, { "input": "dude", "output": "⠙⠥⠙⠑" }, { "input": "duded", "output": "⠙⠥⠙⠫" }, { "input": "dudes", "output": "⠙⠥⠙⠑⠎" }, { "input": "dudgeon", "output": "⠙⠥⠙⠛⠑⠕â " }, { "input": "duding", "output": "⠙⠥⠙⠬" }, { "input": "duds", "output": "⠙⠥⠙⠎" }, { "input": "due", "output": "⠙⠥⠑" }, { "input": "duel", "output": "⠙⠥⠑⠇" }, { "input": "dueled", "output": "⠙⠥⠑⠇⠫" }, { "input": "dueling", "output": "⠙⠥⠑⠇⠬" }, { "input": "duelist", "output": "⠙⠥⠑⠇⠊⠌" }, { "input": "duelists", "output": "⠙⠥⠑⠇⠊⠌⠎" }, { "input": "duelled", "output": "⠙⠥⠑⠇⠇⠫" }, { "input": "duelling", "output": "⠙⠥⠑⠇⠇⠬" }, { "input": "duellist", "output": "⠙⠥⠑⠇⠇⠊⠌" }, { "input": "duellists", "output": "⠙⠥⠑⠇⠇⠊⠌⠎" }, { "input": "duels", "output": "⠙⠥⠑⠇⠎" }, { "input": "dues", "output": "⠙⠥⠑⠎" }, { "input": "duet", "output": "⠙⠥⠑⠞" }, { "input": "duets", "output": "⠙⠥⠑⠞⠎" }, { "input": "duff", "output": "⠙⠥⠋⠋" }, { "input": "duffer", "output": "⠙⠥⠖⠻" }, { "input": "duffers", "output": "⠙⠥⠖⠻⠎" }, { "input": "dug", "output": "⠙⠥⠛" }, { "input": "dugout", "output": "⠙⠥⠛⠳⠞" }, { "input": "dugouts", "output": "⠙⠥⠛⠳⠞⠎" }, { "input": "duh", "output": "⠙⠥⠓" }, { "input": "duke", "output": "⠙⠥⠅⠑" }, { "input": "dukedom", "output": "⠙⠥⠅⠫⠕â " }, { "input": "dukedoms", "output": "⠙⠥⠅⠫⠕â â Ž" }, { "input": "dukes", "output": "⠙⠥⠅⠑⠎" }, { "input": "dulcet", "output": "⠙⠥⠇⠉⠑⠞" }, { "input": "dulcimer", "output": "⠙⠥⠇⠉⠊â â »" }, { "input": "dulcimers", "output": "⠙⠥⠇⠉⠊â â »â Ž" }, { "input": "dull", "output": "⠙⠥⠇⠇" }, { "input": "dullard", "output": "⠙⠥⠇⠇⠜⠙" }, { "input": "dullards", "output": "⠙⠥⠇⠇⠜⠙⠎" }, { "input": "dulled", "output": "⠙⠥⠇⠇⠫" }, { "input": "duller", "output": "⠙⠥⠇⠇⠻" }, { "input": "dullest", "output": "⠙⠥⠇⠇⠑⠌" }, { "input": "dulling", "output": "⠙⠥⠇⠇⠬" }, { "input": "dullness", "output": "⠙⠥⠇⠇⠰⠎" }, { "input": "dulls", "output": "⠙⠥⠇⠇⠎" }, { "input": "dully", "output": "⠙⠥⠇⠇⠽" }, { "input": "dulness", "output": "⠙⠥⠇⠰⠎" }, { "input": "duly", "output": "⠙⠥⠇⠽" }, { "input": "dumb", "output": "⠙⠥â â ƒ" }, { "input": "dumbbell", "output": "⠙⠥â â ƒâ ƒâ ‘⠇⠇" }, { "input": "dumbbells", "output": "⠙⠥â â ƒâ ƒâ ‘⠇⠇⠎" }, { "input": "dumber", "output": "⠙⠥â â ƒâ »" }, { "input": "dumbest", "output": "⠙⠥â â ƒâ ‘â Œ" }, { "input": "dumbfound", "output": "⠙⠥â â ƒâ ‹â ¨â ™" }, { "input": "dumbfounded", "output": "⠙⠥â â ƒâ ‹â ¨â ™â «" }, { "input": "dumbfounding", "output": "⠙⠥â â ƒâ ‹â ¨â ™â ¬" }, { "input": "dumbfounds", "output": "⠙⠥â â ƒâ ‹â ¨â ™â Ž" }, { "input": "dumbly", "output": "⠙⠥â â ƒâ ‡â ½" }, { "input": "dumbness", "output": "⠙⠥â â ƒâ °â Ž" }, { "input": "dumbwaiter", "output": "⠙⠥â â ƒâ ºâ â Šâ žâ »" }, { "input": "dumbwaiters", "output": "⠙⠥â â ƒâ ºâ â Šâ žâ »â Ž" }, { "input": "dumfound", "output": "⠙⠥â â ‹â ¨â ™" }, { "input": "dumfounded", "output": "⠙⠥â â ‹â ¨â ™â «" }, { "input": "dumfounding", "output": "⠙⠥â â ‹â ¨â ™â ¬" }, { "input": "dumfounds", "output": "⠙⠥â â ‹â ¨â ™â Ž" }, { "input": "dummies", "output": "⠙⠥â â â Šâ ‘â Ž" }, { "input": "dummy", "output": "⠙⠥â â â ½" }, { "input": "dump", "output": "⠙⠥â â " }, { "input": "dumped", "output": "⠙⠥â â â «" }, { "input": "dumpier", "output": "⠙⠥â â â Šâ »" }, { "input": "dumpiest", "output": "⠙⠥â â â Šâ ‘â Œ" }, { "input": "dumping", "output": "⠙⠥â â â ¬" }, { "input": "dumpling", "output": "⠙⠥â â â ‡â ¬" }, { "input": "dumplings", "output": "⠙⠥â â â ‡â ¬â Ž" }, { "input": "dumps", "output": "⠙⠥â â â Ž" }, { "input": "dumpster", "output": "⠙⠥â â â Œâ »" }, { "input": "dumpy", "output": "⠙⠥â â â ½" }, { "input": "dun", "output": "⠙⠥â " }, { "input": "dunce", "output": "⠙⠥â â ‰â ‘" }, { "input": "dunces", "output": "⠙⠥â â ‰â ‘â Ž" }, { "input": "dune", "output": "⠙⠥â â ‘" }, { "input": "dunes", "output": "⠙⠥â â ‘â Ž" }, { "input": "dung", "output": "⠙⠥â â ›" }, { "input": "dungaree", "output": "⠙⠥â â ›â œâ ‘â ‘" }, { "input": "dungarees", "output": "⠙⠥â â ›â œâ ‘â ‘â Ž" }, { "input": "dunged", "output": "⠙⠥â â ›â «" }, { "input": "dungeon", "output": "⠙⠥â â ›â ‘â •â " }, { "input": "dungeons", "output": "⠙⠥â â ›â ‘â •â â Ž" }, { "input": "dunging", "output": "⠙⠥â â ›â ¬" }, { "input": "dungs", "output": "⠙⠥â â ›â Ž" }, { "input": "dunk", "output": "⠙⠥â â …" }, { "input": "dunked", "output": "⠙⠥â â …â «" }, { "input": "dunking", "output": "⠙⠥â â …â ¬" }, { "input": "dunks", "output": "⠙⠥â â …â Ž" }, { "input": "dunned", "output": "⠙⠥â â â «" }, { "input": "dunner", "output": "⠙⠥â â â »" }, { "input": "dunnest", "output": "⠙⠥â â â ‘â Œ" }, { "input": "dunning", "output": "⠙⠥â â â ¬" }, { "input": "dunno", "output": "⠙⠥â â â •" }, { "input": "duns", "output": "⠙⠥â â Ž" }, { "input": "duo", "output": "⠙⠥⠕" }, { "input": "duodena", "output": "⠙⠥⠕⠙⠢â " }, { "input": "duodenal", "output": "⠙⠥⠕⠙⠢â â ‡" }, { "input": "duodenum", "output": "⠙⠥⠕⠙⠢⠥â " }, { "input": "duodenums", "output": "⠙⠥⠕⠙⠢⠥â â Ž" }, { "input": "duos", "output": "⠙⠥⠕⠎" }, { "input": "dupe", "output": "⠙⠥â â ‘" }, { "input": "duped", "output": "⠙⠥â â «" }, { "input": "dupes", "output": "⠙⠥â â ‘â Ž" }, { "input": "duping", "output": "⠙⠥â â ¬" }, { "input": "duplex", "output": "⠙⠥â â ‡â ‘â ­" }, { "input": "duplexes", "output": "⠙⠥â â ‡â ‘â ­â ‘â Ž" }, { "input": "duplicate", "output": "⠙⠥â â ‡â Šâ ‰â â žâ ‘" }, { "input": "duplicated", "output": "⠙⠥â â ‡â Šâ ‰â â žâ «" }, { "input": "duplicates", "output": "⠙⠥â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "duplicating", "output": "⠙⠥â â ‡â Šâ ‰â â žâ ¬" }, { "input": "duplication", "output": "⠙⠥â â ‡â Šâ ‰â â °â " }, { "input": "duplicator", "output": "⠙⠥â â ‡â Šâ ‰â â žâ •â —" }, { "input": "duplicators", "output": "⠙⠥â â ‡â Šâ ‰â â žâ •â —â Ž" }, { "input": "duplicity", "output": "⠙⠥â â ‡â Šâ ‰â °â ½" }, { "input": "durability", "output": "⠙⠥⠗â â ƒâ Šâ ‡â °â ½" }, { "input": "durable", "output": "⠙⠥⠗â â ƒâ ‡â ‘" }, { "input": "durably", "output": "⠙⠥⠗â â ƒâ ‡â ½" }, { "input": "duration", "output": "⠙⠥⠗â â °â " }, { "input": "duress", "output": "⠙⠥⠗⠑⠎⠎" }, { "input": "during", "output": "⠙⠥⠗⠬" }, { "input": "dusk", "output": "⠙⠥⠎⠅" }, { "input": "duskier", "output": "⠙⠥⠎⠅⠊⠻" }, { "input": "duskiest", "output": "⠙⠥⠎⠅⠊⠑⠌" }, { "input": "dusky", "output": "⠙⠥⠎⠅⠽" }, { "input": "dust", "output": "⠙⠥⠌" }, { "input": "dustbin", "output": "⠙⠥⠌⠃⠔" }, { "input": "dustbins", "output": "⠙⠥⠌⠃⠔⠎" }, { "input": "dusted", "output": "⠙⠥⠌⠫" }, { "input": "duster", "output": "⠙⠥⠌⠻" }, { "input": "dusters", "output": "⠙⠥⠌⠻⠎" }, { "input": "dustier", "output": "⠙⠥⠌⠊⠻" }, { "input": "dustiest", "output": "⠙⠥⠌⠊⠑⠌" }, { "input": "dustiness", "output": "⠙⠥⠌⠊⠰⠎" }, { "input": "dusting", "output": "⠙⠥⠌⠬" }, { "input": "dustless", "output": "⠙⠥⠌⠨⠎" }, { "input": "dustman", "output": "⠙⠥⠌â â â " }, { "input": "dustmen", "output": "⠙⠥⠌â â ¢" }, { "input": "dustpan", "output": "⠙⠥⠌â â â " }, { "input": "dustpans", "output": "⠙⠥⠌â â â â Ž" }, { "input": "dusts", "output": "⠙⠥⠌⠎" }, { "input": "dusty", "output": "⠙⠥⠌⠽" }, { "input": "duteous", "output": "⠙⠥⠞⠑⠳⠎" }, { "input": "dutiable", "output": "⠙⠥⠞⠊â â ƒâ ‡â ‘" }, { "input": "duties", "output": "⠙⠥⠞⠊⠑⠎" }, { "input": "dutiful", "output": "⠙⠥⠞⠊⠰⠇" }, { "input": "dutifully", "output": "⠙⠥⠞⠊⠰⠇⠇⠽" }, { "input": "duty", "output": "⠙⠥⠞⠽" }, { "input": "duvet", "output": "⠙⠥⠧⠑⠞" }, { "input": "dwarf", "output": "⠙⠺⠜⠋" }, { "input": "dwarfed", "output": "⠙⠺⠜⠋⠫" }, { "input": "dwarfing", "output": "⠙⠺⠜⠋⠬" }, { "input": "dwarfish", "output": "⠙⠺⠜⠋⠊⠩" }, { "input": "dwarfism", "output": "⠙⠺⠜⠋⠊⠎â " }, { "input": "dwarfs", "output": "⠙⠺⠜⠋⠎" }, { "input": "dwarves", "output": "⠙⠺⠜⠧⠑⠎" }, { "input": "dweeb", "output": "⠙⠺⠑⠑⠃" }, { "input": "dweebs", "output": "⠙⠺⠑⠑⠃⠎" }, { "input": "dwell", "output": "⠙⠺⠑⠇⠇" }, { "input": "dwelled", "output": "⠙⠺⠑⠇⠇⠫" }, { "input": "dweller", "output": "⠙⠺⠑⠇⠇⠻" }, { "input": "dwellers", "output": "⠙⠺⠑⠇⠇⠻⠎" }, { "input": "dwelling", "output": "⠙⠺⠑⠇⠇⠬" }, { "input": "dwellings", "output": "⠙⠺⠑⠇⠇⠬⠎" }, { "input": "dwells", "output": "⠙⠺⠑⠇⠇⠎" }, { "input": "dwelt", "output": "⠙⠺⠑⠇⠞" }, { "input": "dwindle", "output": "⠙⠺⠔⠙⠇⠑" }, { "input": "dwindled", "output": "⠙⠺⠔⠙⠇⠫" }, { "input": "dwindles", "output": "⠙⠺⠔⠙⠇⠑⠎" }, { "input": "dwindling", "output": "⠙⠺⠔⠙⠇⠬" }, { "input": "dyadic", "output": "⠙⠽â â ™â Šâ ‰" }, { "input": "dye", "output": "⠙⠽⠑" }, { "input": "dyed", "output": "⠙⠽⠫" }, { "input": "dyeing", "output": "⠙⠽⠑⠬" }, { "input": "dyer", "output": "⠙⠽⠻" }, { "input": "dyers", "output": "⠙⠽⠻⠎" }, { "input": "dyes", "output": "⠙⠽⠑⠎" }, { "input": "dyestuff", "output": "⠙⠽⠑⠌⠥⠋⠋" }, { "input": "dying", "output": "⠙⠽⠬" }, { "input": "dyke", "output": "⠙⠽⠅⠑" }, { "input": "dykes", "output": "⠙⠽⠅⠑⠎" }, { "input": "dynamic", "output": "⠙⠽â â â â Šâ ‰" }, { "input": "dynamical", "output": "⠙⠽â â â â Šâ ‰â â ‡" }, { "input": "dynamically", "output": "⠙⠽â â â â Šâ ‰â â ‡â ‡â ½" }, { "input": "dynamics", "output": "⠙⠽â â â â Šâ ‰â Ž" }, { "input": "dynamism", "output": "⠙⠽â â â â Šâ Žâ " }, { "input": "dynamite", "output": "⠙⠽â â â â Šâ žâ ‘" }, { "input": "dynamited", "output": "⠙⠽â â â â Šâ žâ «" }, { "input": "dynamites", "output": "⠙⠽â â â â Šâ žâ ‘â Ž" }, { "input": "dynamiting", "output": "⠙⠽â â â â Šâ žâ ¬" }, { "input": "dynamo", "output": "⠙⠽â â â â •" }, { "input": "dynamos", "output": "⠙⠽â â â â •â Ž" }, { "input": "dynastic", "output": "⠙⠽â â â Œâ Šâ ‰" }, { "input": "dynasties", "output": "⠙⠽â â â Œâ Šâ ‘â Ž" }, { "input": "dynasty", "output": "⠙⠽â â â Œâ ½" }, { "input": "dysentery", "output": "⠙⠽⠎⠢⠞⠻⠽" }, { "input": "dysfunction", "output": "⠙⠽⠎⠋⠥â â ‰â °â " }, { "input": "dysfunctional", "output": "⠙⠽⠎⠋⠥â â ‰â °â â â ‡" }, { "input": "dysfunctions", "output": "⠙⠽⠎⠋⠥â â ‰â °â â Ž" }, { "input": "dyslexia", "output": "⠙⠽⠎⠇⠑⠭⠊â " }, { "input": "dyslexic", "output": "⠙⠽⠎⠇⠑⠭⠊⠉" }, { "input": "dyslexics", "output": "⠙⠽⠎⠇⠑⠭⠊⠉⠎" }, { "input": "dyspepsia", "output": "⠙⠽⠎â â ‘â â Žâ Šâ " }, { "input": "dyspeptic", "output": "⠙⠽⠎â â ‘â â žâ Šâ ‰" }, { "input": "dyspeptics", "output": "⠙⠽⠎â â ‘â â žâ Šâ ‰â Ž" }, { "input": "débutante", "output": "⠙⠠⠘⠻â â ˜â ‰â ƒâ ¥â žâ â â žâ ‘" }, { "input": "débutantes", "output": "⠙⠠⠘⠻â â ˜â ‰â ƒâ ¥â žâ â â žâ ‘â Ž" }, { "input": "décolleté", "output": "⠙⠠⠘⠻â â ˜â ‰â ‰â •⠇⠇⠑⠞⠠⠘⠻â â ˜â ‰" }, { "input": "dérailleur", "output": "⠙⠠⠘⠻â â ˜â ‰â —â â Šâ ‡â ‡â ‘⠥⠗" }, { "input": "dérailleurs", "output": "⠙⠠⠘⠻â â ˜â ‰â —â â Šâ ‡â ‡â ‘⠥⠗⠎" }, { "input": "détente", "output": "⠙⠠⠘⠻â â ˜â ‰â žâ ¢â žâ ‘" }, { "input": "e", "output": "â °â ‘" }, { "input": "eBay", "output": "â ‘â  â ƒâ â ½" }, { "input": "eMusic", "output": "â ‘â  â â ¥â Žâ Šâ ‰" }, { "input": "each", "output": "â ‘â â ¡" }, { "input": "eager", "output": "â ‘â â ›â »" }, { "input": "eagerer", "output": "â ‘â â ›â »â »" }, { "input": "eagerest", "output": "â ‘â â ›â »â ‘â Œ" }, { "input": "eagerly", "output": "â ‘â â ›â »â ‡â ½" }, { "input": "eagerness", "output": "â ‘â â ›â »â °â Ž" }, { "input": "eagle", "output": "â ‘â â ›â ‡â ‘" }, { "input": "eagles", "output": "â ‘â â ›â ‡â ‘â Ž" }, { "input": "eaglet", "output": "â ‘â â ›â ‡â ‘â ž" }, { "input": "eaglets", "output": "â ‘â â ›â ‡â ‘â žâ Ž" }, { "input": "ear", "output": "â ‘â œ" }, { "input": "earache", "output": "â ‘â œâ â ¡â ‘" }, { "input": "earaches", "output": "â ‘â œâ â ¡â ‘â Ž" }, { "input": "eardrum", "output": "⠑⠜⠙⠗⠥â " }, { "input": "eardrums", "output": "⠑⠜⠙⠗⠥â â Ž" }, { "input": "earful", "output": "⠑⠜⠰⠇" }, { "input": "earfuls", "output": "⠑⠜⠰⠇⠎" }, { "input": "earl", "output": "⠑⠜⠇" }, { "input": "earldom", "output": "⠑⠜⠇⠙⠕â " }, { "input": "earldoms", "output": "⠑⠜⠇⠙⠕â â Ž" }, { "input": "earlier", "output": "⠑⠜⠇⠊⠻" }, { "input": "earliest", "output": "⠑⠜⠇⠊⠑⠌" }, { "input": "earliness", "output": "⠑⠜⠇⠊⠰⠎" }, { "input": "earlobe", "output": "⠑⠜⠇⠕⠃⠑" }, { "input": "earlobes", "output": "⠑⠜⠇⠕⠃⠑⠎" }, { "input": "earls", "output": "⠑⠜⠇⠎" }, { "input": "early", "output": "⠑⠜⠇⠽" }, { "input": "earmark", "output": "â ‘â œâ â œâ …" }, { "input": "earmarked", "output": "â ‘â œâ â œâ …â «" }, { "input": "earmarking", "output": "â ‘â œâ â œâ …â ¬" }, { "input": "earmarks", "output": "â ‘â œâ â œâ …â Ž" }, { "input": "earmuff", "output": "â ‘â œâ â ¥â ‹â ‹" }, { "input": "earmuffs", "output": "â ‘â œâ â ¥â –â Ž" }, { "input": "earn", "output": "â ‘â œâ " }, { "input": "earned", "output": "â ‘â œâ â «" }, { "input": "earner", "output": "â ‘â œâ â »" }, { "input": "earners", "output": "â ‘â œâ â »â Ž" }, { "input": "earnest", "output": "â ‘â œâ â ‘â Œ" }, { "input": "earnestly", "output": "â ‘â œâ â ‘⠌⠇⠽" }, { "input": "earnestness", "output": "â ‘â œâ â ‘⠌⠰⠎" }, { "input": "earnests", "output": "â ‘â œâ â ‘⠌⠎" }, { "input": "earning", "output": "â ‘â œâ â ¬" }, { "input": "earnings", "output": "â ‘â œâ â ¬â Ž" }, { "input": "earns", "output": "â ‘â œâ â Ž" }, { "input": "earphone", "output": "â ‘â œâ â “â â •" }, { "input": "earphones", "output": "â ‘â œâ â “â â •â Ž" }, { "input": "earplug", "output": "â ‘â œâ â ‡â ¥â ›" }, { "input": "earplugs", "output": "â ‘â œâ â ‡â ¥â ›â Ž" }, { "input": "earring", "output": "⠑⠜⠗⠬" }, { "input": "earrings", "output": "⠑⠜⠗⠬⠎" }, { "input": "ears", "output": "⠑⠜⠎" }, { "input": "earshot", "output": "⠑⠜⠩⠕⠞" }, { "input": "earsplitting", "output": "⠑⠜⠎â â ‡â Šâ žâ žâ ¬" }, { "input": "earth", "output": "⠑⠜⠹" }, { "input": "earthed", "output": "⠑⠜⠮⠙" }, { "input": "earthen", "output": "⠑⠜⠮â " }, { "input": "earthenware", "output": "⠑⠜⠮â â ºâ œâ ‘" }, { "input": "earthier", "output": "⠑⠜⠹⠊⠻" }, { "input": "earthiest", "output": "⠑⠜⠹⠊⠑⠌" }, { "input": "earthiness", "output": "⠑⠜⠹⠊⠰⠎" }, { "input": "earthing", "output": "⠑⠜⠹⠬" }, { "input": "earthlier", "output": "⠑⠜⠹⠇⠊⠻" }, { "input": "earthliest", "output": "⠑⠜⠹⠇⠊⠑⠌" }, { "input": "earthling", "output": "⠑⠜⠹⠇⠬" }, { "input": "earthlings", "output": "⠑⠜⠹⠇⠬⠎" }, { "input": "earthly", "output": "⠑⠜⠹⠇⠽" }, { "input": "earthquake", "output": "⠑⠜⠹⠟⠥â â …â ‘" }, { "input": "earthquakes", "output": "⠑⠜⠹⠟⠥â â …â ‘â Ž" }, { "input": "earths", "output": "⠑⠜⠹⠎" }, { "input": "earthshaking", "output": "⠑⠜⠹⠩â â …â ¬" }, { "input": "earthward", "output": "⠑⠜⠹⠺⠜⠙" }, { "input": "earthwork", "output": "⠑⠜⠹â â º" }, { "input": "earthworks", "output": "⠑⠜⠹â â ºâ Ž" }, { "input": "earthworm", "output": "⠑⠜⠹⠺⠕⠗â " }, { "input": "earthworms", "output": "⠑⠜⠹⠺⠕⠗â â Ž" }, { "input": "earthy", "output": "⠑⠜⠹⠽" }, { "input": "earwax", "output": "⠑⠜⠺â â ­" }, { "input": "earwig", "output": "⠑⠜⠺⠊⠛" }, { "input": "earwigs", "output": "⠑⠜⠺⠊⠛⠎" }, { "input": "ease", "output": "â ‘â â Žâ ‘" }, { "input": "eased", "output": "â ‘â â Žâ «" }, { "input": "easel", "output": "â ‘â â Žâ ‘â ‡" }, { "input": "easels", "output": "â ‘â â Žâ ‘⠇⠎" }, { "input": "eases", "output": "â ‘â â Žâ ‘â Ž" }, { "input": "easier", "output": "â ‘â â Žâ Šâ »" }, { "input": "easiest", "output": "â ‘â â Žâ Šâ ‘â Œ" }, { "input": "easily", "output": "â ‘â â Žâ Šâ ‡â ½" }, { "input": "easiness", "output": "â ‘â â Žâ Šâ °â Ž" }, { "input": "easing", "output": "â ‘â â Žâ ¬" }, { "input": "east", "output": "â ‘â â Œ" }, { "input": "eastbound", "output": "â ‘â â Œâ ƒâ ¨â ™" }, { "input": "easterlies", "output": "â ‘â â Œâ »â ‡â Šâ ‘â Ž" }, { "input": "easterly", "output": "â ‘â â Œâ »â ‡â ½" }, { "input": "eastern", "output": "â ‘â â Œâ »â " }, { "input": "easterner", "output": "â ‘â â Œâ »â â »" }, { "input": "easterners", "output": "â ‘â â Œâ »â â »â Ž" }, { "input": "easternmost", "output": "â ‘â â Œâ »â â â •â Œ" }, { "input": "eastward", "output": "â ‘â â Œâ ºâ œâ ™" }, { "input": "eastwards", "output": "â ‘â â Œâ ºâ œâ ™â Ž" }, { "input": "easy", "output": "â ‘â â Žâ ½" }, { "input": "easygoing", "output": "â ‘â â Žâ ½â ›â •â ¬" }, { "input": "eat", "output": "â ‘â â ž" }, { "input": "eatable", "output": "â ‘â â žâ â ƒâ ‡â ‘" }, { "input": "eatables", "output": "â ‘â â žâ â ƒâ ‡â ‘â Ž" }, { "input": "eaten", "output": "â ‘â â žâ ¢" }, { "input": "eater", "output": "â ‘â â žâ »" }, { "input": "eateries", "output": "â ‘â â žâ »â Šâ ‘â Ž" }, { "input": "eaters", "output": "â ‘â â žâ »â Ž" }, { "input": "eatery", "output": "â ‘â â žâ »â ½" }, { "input": "eating", "output": "â ‘â â žâ ¬" }, { "input": "eats", "output": "â ‘â â žâ Ž" }, { "input": "eave", "output": "â ‘â â §â ‘" }, { "input": "eaves", "output": "â ‘â â §â ‘â Ž" }, { "input": "eavesdrop", "output": "â ‘â â §â ‘⠎⠙⠗⠕â " }, { "input": "eavesdropped", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â «" }, { "input": "eavesdropper", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â »" }, { "input": "eavesdroppers", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â »â Ž" }, { "input": "eavesdropping", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â ¬" }, { "input": "eavesdrops", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â Ž" }, { "input": "ebb", "output": "⠑⠃⠃" }, { "input": "ebbed", "output": "⠑⠆⠫" }, { "input": "ebbing", "output": "⠑⠆⠬" }, { "input": "ebbs", "output": "⠑⠆⠎" }, { "input": "ebonies", "output": "⠑⠃⠕â â Šâ ‘â Ž" }, { "input": "ebony", "output": "⠑⠃⠕â â ½" }, { "input": "ebullience", "output": "⠑⠃⠥⠇⠇⠊⠰⠑" }, { "input": "ebullient", "output": "⠑⠃⠥⠇⠇⠊⠢⠞" }, { "input": "eccentric", "output": "⠑⠒⠢⠞⠗⠊⠉" }, { "input": "eccentrically", "output": "⠑⠒⠢⠞⠗⠊⠉â â ‡â ‡â ½" }, { "input": "eccentricities", "output": "⠑⠒⠢⠞⠗⠊⠉⠊⠞⠊⠑⠎" }, { "input": "eccentricity", "output": "⠑⠒⠢⠞⠗⠊⠉⠰⠽" }, { "input": "eccentrics", "output": "⠑⠒⠢⠞⠗⠊⠉⠎" }, { "input": "ecclesiastic", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰" }, { "input": "ecclesiastical", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰â â ‡" }, { "input": "ecclesiastics", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰â Ž" }, { "input": "echelon", "output": "⠑⠡⠑⠇⠕â " }, { "input": "echelons", "output": "⠑⠡⠑⠇⠕â â Ž" }, { "input": "echo", "output": "â ‘â ¡â •" }, { "input": "echoed", "output": "â ‘â ¡â •â «" }, { "input": "echoes", "output": "â ‘â ¡â •â ‘â Ž" }, { "input": "echoing", "output": "â ‘â ¡â •â ¬" }, { "input": "echos", "output": "â ‘â ¡â •â Ž" }, { "input": "eclectic", "output": "⠑⠉⠇⠑⠉⠞⠊⠉" }, { "input": "eclectically", "output": "⠑⠉⠇⠑⠉⠞⠊⠉â â ‡â ‡â ½" }, { "input": "eclecticism", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠊⠎â " }, { "input": "eclectics", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠎" }, { "input": "eclipse", "output": "⠑⠉⠇⠊â â Žâ ‘" }, { "input": "eclipsed", "output": "⠑⠉⠇⠊â â Žâ «" }, { "input": "eclipses", "output": "⠑⠉⠇⠊â â Žâ ‘â Ž" }, { "input": "eclipsing", "output": "⠑⠉⠇⠊â â Žâ ¬" }, { "input": "ecliptic", "output": "⠑⠉⠇⠊â â žâ Šâ ‰" }, { "input": "ecological", "output": "⠑⠉⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "ecologically", "output": "⠑⠉⠕⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "ecologist", "output": "⠑⠉⠕⠇⠕⠛⠊⠌" }, { "input": "ecologists", "output": "⠑⠉⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ecology", "output": "⠑⠉⠕⠇⠕⠛⠽" }, { "input": "econometric", "output": "⠑⠉⠕â â •â â ‘â žâ —â Šâ ‰" }, { "input": "economic", "output": "⠑⠉⠕â â •â â Šâ ‰" }, { "input": "economical", "output": "⠑⠉⠕â â •â â Šâ ‰â â ‡" }, { "input": "economically", "output": "⠑⠉⠕â â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "economics", "output": "⠑⠉⠕â â •â â Šâ ‰â Ž" }, { "input": "economies", "output": "⠑⠉⠕â â •â â Šâ ‘â Ž" }, { "input": "economist", "output": "⠑⠉⠕â â •â â Šâ Œ" }, { "input": "economists", "output": "⠑⠉⠕â â •â â Šâ Œâ Ž" }, { "input": "economize", "output": "⠑⠉⠕â â •â â Šâ µâ ‘" }, { "input": "economized", "output": "⠑⠉⠕â â •â â Šâ µâ «" }, { "input": "economizes", "output": "⠑⠉⠕â â •â â Šâ µâ ‘â Ž" }, { "input": "economizing", "output": "⠑⠉⠕â â •â â Šâ µâ ¬" }, { "input": "economy", "output": "⠑⠉⠕â â •â â ½" }, { "input": "ecosystem", "output": "⠑⠉⠕⠎⠽⠌⠑â " }, { "input": "ecosystems", "output": "⠑⠉⠕⠎⠽⠌⠑â â Ž" }, { "input": "ecru", "output": "⠑⠉⠗⠥" }, { "input": "ecstasies", "output": "⠑⠉⠌â â Žâ Šâ ‘â Ž" }, { "input": "ecstasy", "output": "⠑⠉⠌â â Žâ ½" }, { "input": "ecstatic", "output": "⠑⠉⠌â â žâ Šâ ‰" }, { "input": "ecstatically", "output": "⠑⠉⠌â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "ecumenical", "output": "⠑⠉⠥â â ¢â Šâ ‰â â ‡" }, { "input": "ecumenically", "output": "⠑⠉⠥â â ¢â Šâ ‰â â ‡â ‡â ½" }, { "input": "eczema", "output": "⠑⠉⠵⠑â â " }, { "input": "eddied", "output": "⠫⠙⠊⠫" }, { "input": "eddies", "output": "⠫⠙⠊⠑⠎" }, { "input": "eddy", "output": "⠫⠙⠽" }, { "input": "eddying", "output": "⠫⠙⠽⠬" }, { "input": "edelweiss", "output": "⠫⠑⠇⠺⠑⠊⠎⠎" }, { "input": "edema", "output": "â «â ‘â â " }, { "input": "edge", "output": "⠫⠛⠑" }, { "input": "edged", "output": "⠫⠛⠫" }, { "input": "edger", "output": "⠫⠛⠻" }, { "input": "edges", "output": "⠫⠛⠑⠎" }, { "input": "edgeways", "output": "⠫⠛⠑⠺â â ½â Ž" }, { "input": "edgewise", "output": "⠫⠛⠑⠺⠊⠎⠑" }, { "input": "edgier", "output": "⠫⠛⠊⠻" }, { "input": "edgiest", "output": "⠫⠛⠊⠑⠌" }, { "input": "edginess", "output": "⠫⠛⠊⠰⠎" }, { "input": "edging", "output": "⠫⠛⠬" }, { "input": "edgings", "output": "⠫⠛⠬⠎" }, { "input": "edgy", "output": "⠫⠛⠽" }, { "input": "edibility", "output": "⠫⠊⠃⠊⠇⠰⠽" }, { "input": "edible", "output": "⠫⠊⠃⠇⠑" }, { "input": "edibles", "output": "⠫⠊⠃⠇⠑⠎" }, { "input": "edict", "output": "⠫⠊⠉⠞" }, { "input": "edicts", "output": "⠫⠊⠉⠞⠎" }, { "input": "edification", "output": "â «â Šâ ‹â Šâ ‰â â °â " }, { "input": "edifice", "output": "⠫⠊⠋⠊⠉⠑" }, { "input": "edifices", "output": "⠫⠊⠋⠊⠉⠑⠎" }, { "input": "edified", "output": "â «â Šâ ‹â Šâ «" }, { "input": "edifies", "output": "â «â Šâ ‹â Šâ ‘â Ž" }, { "input": "edify", "output": "â «â Šâ ‹â ½" }, { "input": "edifying", "output": "⠫⠊⠋⠽⠬" }, { "input": "edit", "output": "â «â Šâ ž" }, { "input": "editable", "output": "â «â Šâ žâ â ƒâ ‡â ‘" }, { "input": "edited", "output": "â «â Šâ žâ «" }, { "input": "editing", "output": "â «â Šâ žâ ¬" }, { "input": "edition", "output": "â «â Šâ °â " }, { "input": "editions", "output": "â «â Šâ °â â Ž" }, { "input": "editor", "output": "â «â Šâ žâ •â —" }, { "input": "editorial", "output": "â «â Šâ žâ •â —â Šâ â ‡" }, { "input": "editorialize", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ ‘" }, { "input": "editorialized", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ «" }, { "input": "editorializes", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "editorializing", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ ¬" }, { "input": "editorially", "output": "â «â Šâ žâ •â —â Šâ â ‡â ‡â ½" }, { "input": "editorials", "output": "â «â Šâ žâ •â —â Šâ â ‡â Ž" }, { "input": "editors", "output": "â «â Šâ žâ •â —â Ž" }, { "input": "editorship", "output": "â «â Šâ žâ •â —â ©â Šâ " }, { "input": "edits", "output": "â «â Šâ žâ Ž" }, { "input": "educable", "output": "⠫⠥⠉â â ƒâ ‡â ‘" }, { "input": "educate", "output": "⠫⠥⠉â â žâ ‘" }, { "input": "educated", "output": "⠫⠥⠉â â žâ «" }, { "input": "educates", "output": "⠫⠥⠉â â žâ ‘â Ž" }, { "input": "educating", "output": "⠫⠥⠉â â žâ ¬" }, { "input": "education", "output": "⠫⠥⠉â â °â " }, { "input": "educational", "output": "⠫⠥⠉â â °â â â ‡" }, { "input": "educationally", "output": "⠫⠥⠉â â °â â â ‡â ‡â ½" }, { "input": "educations", "output": "⠫⠥⠉â â °â â Ž" }, { "input": "educator", "output": "⠫⠥⠉â â žâ •â —" }, { "input": "educators", "output": "⠫⠥⠉â â žâ •â —â Ž" }, { "input": "eel", "output": "â ‘â ‘â ‡" }, { "input": "eels", "output": "⠑⠑⠇⠎" }, { "input": "eerie", "output": "⠑⠻⠊⠑" }, { "input": "eerier", "output": "⠑⠻⠊⠻" }, { "input": "eeriest", "output": "⠑⠻⠊⠑⠌" }, { "input": "eerily", "output": "⠑⠻⠊⠇⠽" }, { "input": "eeriness", "output": "⠑⠻⠊⠰⠎" }, { "input": "eery", "output": "⠑⠻⠽" }, { "input": "efface", "output": "â ‘â –â â ‰â ‘" }, { "input": "effaced", "output": "â ‘â –â â ‰â «" }, { "input": "effacement", "output": "â ‘â –â â ‰â ‘â °â ž" }, { "input": "effaces", "output": "â ‘â –â â ‰â ‘â Ž" }, { "input": "effacing", "output": "â ‘â –â â ‰â ¬" }, { "input": "effect", "output": "⠑⠖⠑⠉⠞" }, { "input": "effected", "output": "⠑⠖⠑⠉⠞⠫" }, { "input": "effecting", "output": "⠑⠖⠑⠉⠞⠬" }, { "input": "effective", "output": "⠑⠖⠑⠉⠞⠊⠧⠑" }, { "input": "effectively", "output": "⠑⠖⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "effectiveness", "output": "⠑⠖⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "effects", "output": "⠑⠖⠑⠉⠞⠎" }, { "input": "effectual", "output": "⠑⠖⠑⠉⠞⠥â â ‡" }, { "input": "effectually", "output": "⠑⠖⠑⠉⠞⠥â â ‡â ‡â ½" }, { "input": "effectuate", "output": "⠑⠖⠑⠉⠞⠥â â žâ ‘" }, { "input": "effectuated", "output": "⠑⠖⠑⠉⠞⠥â â žâ «" }, { "input": "effectuates", "output": "⠑⠖⠑⠉⠞⠥â â žâ ‘â Ž" }, { "input": "effectuating", "output": "⠑⠖⠑⠉⠞⠥â â žâ ¬" }, { "input": "effeminacy", "output": "â ‘â –â ‘â â ”â â ‰â ½" }, { "input": "effeminate", "output": "â ‘â –â ‘â â ”â â žâ ‘" }, { "input": "effervesce", "output": "⠑⠖⠻⠧⠑⠎⠉⠑" }, { "input": "effervesced", "output": "⠑⠖⠻⠧⠑⠎⠉⠫" }, { "input": "effervescence", "output": "⠑⠖⠻⠧⠑⠎⠉⠰⠑" }, { "input": "effervescent", "output": "⠑⠖⠻⠧⠑⠎⠉⠢⠞" }, { "input": "effervesces", "output": "⠑⠖⠻⠧⠑⠎⠉⠑⠎" }, { "input": "effervescing", "output": "⠑⠖⠻⠧⠑⠎⠉⠬" }, { "input": "effete", "output": "â ‘â –â ‘â žâ ‘" }, { "input": "efficacious", "output": "â ‘â –â Šâ ‰â â ‰â Šâ ³â Ž" }, { "input": "efficaciously", "output": "â ‘â –â Šâ ‰â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "efficacy", "output": "â ‘â –â Šâ ‰â â ‰â ½" }, { "input": "efficiency", "output": "⠑⠖⠊⠉⠊⠢⠉⠽" }, { "input": "efficient", "output": "⠑⠖⠊⠉⠊⠢⠞" }, { "input": "efficiently", "output": "⠑⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "effigies", "output": "⠑⠖⠊⠛⠊⠑⠎" }, { "input": "effigy", "output": "⠑⠖⠊⠛⠽" }, { "input": "effluent", "output": "⠑⠖⠇⠥⠢⠞" }, { "input": "effluents", "output": "⠑⠖⠇⠥⠢⠞⠎" }, { "input": "effort", "output": "â ‘â ‹â ¿â ž" }, { "input": "effortless", "output": "⠑⠋⠿⠞⠨⠎" }, { "input": "effortlessly", "output": "⠑⠋⠿⠞⠨⠎⠇⠽" }, { "input": "efforts", "output": "â ‘â ‹â ¿â žâ Ž" }, { "input": "effrontery", "output": "â ‘â –â —â •â â žâ »â ½" }, { "input": "effulgence", "output": "⠑⠖⠥⠇⠛⠰⠑" }, { "input": "effulgent", "output": "⠑⠖⠥⠇⠛⠢⠞" }, { "input": "effusion", "output": "⠑⠖⠥⠨â " }, { "input": "effusions", "output": "⠑⠖⠥⠨â â Ž" }, { "input": "effusive", "output": "⠑⠖⠥⠎⠊⠧⠑" }, { "input": "effusively", "output": "⠑⠖⠥⠎⠊⠧⠑⠇⠽" }, { "input": "effusiveness", "output": "⠑⠖⠥⠎⠊⠧⠑⠰⠎" }, { "input": "egalitarian", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â " }, { "input": "egalitarianism", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "egalitarians", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â â Ž" }, { "input": "egg", "output": "⠑⠛⠛" }, { "input": "eggbeater", "output": "⠑⠶⠃⠂⠞⠻" }, { "input": "eggbeaters", "output": "⠑⠶⠃⠂⠞⠻⠎" }, { "input": "egged", "output": "â ‘â ¶â «" }, { "input": "egghead", "output": "â ‘â ¶â “â ‚â ™" }, { "input": "eggheads", "output": "⠑⠶⠓⠂⠙⠎" }, { "input": "egging", "output": "â ‘â ¶â ¬" }, { "input": "eggnog", "output": "â ‘â ¶â â •â ›" }, { "input": "eggplant", "output": "â ‘â ¶â â ‡â â â ž" }, { "input": "eggplants", "output": "â ‘â ¶â â ‡â â â žâ Ž" }, { "input": "eggs", "output": "â ‘â ¶â Ž" }, { "input": "eggshell", "output": "⠑⠶⠩⠑⠇⠇" }, { "input": "eggshells", "output": "⠑⠶⠩⠑⠇⠇⠎" }, { "input": "egis", "output": "⠑⠛⠊⠎" }, { "input": "eglantine", "output": "⠑⠛⠇â â â žâ ”â ‘" }, { "input": "eglantines", "output": "⠑⠛⠇â â â žâ ”â ‘â Ž" }, { "input": "ego", "output": "⠑⠛⠕" }, { "input": "egocentric", "output": "⠑⠛⠕⠉⠢⠞⠗⠊⠉" }, { "input": "egocentrics", "output": "⠑⠛⠕⠉⠢⠞⠗⠊⠉⠎" }, { "input": "egoism", "output": "⠑⠛⠕⠊⠎â " }, { "input": "egoist", "output": "⠑⠛⠕⠊⠌" }, { "input": "egoistic", "output": "⠑⠛⠕⠊⠌⠊⠉" }, { "input": "egoists", "output": "⠑⠛⠕⠊⠌⠎" }, { "input": "egos", "output": "⠑⠛⠕⠎" }, { "input": "egotism", "output": "⠑⠛⠕⠞⠊⠎â " }, { "input": "egotist", "output": "⠑⠛⠕⠞⠊⠌" }, { "input": "egotistic", "output": "⠑⠛⠕⠞⠊⠌⠊⠉" }, { "input": "egotistical", "output": "⠑⠛⠕⠞⠊⠌⠊⠉â â ‡" }, { "input": "egotistically", "output": "⠑⠛⠕⠞⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "egotists", "output": "⠑⠛⠕⠞⠊⠌⠎" }, { "input": "egregious", "output": "⠑⠛⠗⠑⠛⠊⠳⠎" }, { "input": "egregiously", "output": "⠑⠛⠗⠑⠛⠊⠳⠎⠇⠽" }, { "input": "egress", "output": "⠑⠛⠗⠑⠎⠎" }, { "input": "egresses", "output": "⠑⠛⠗⠑⠎⠎⠑⠎" }, { "input": "egret", "output": "⠑⠛⠗⠑⠞" }, { "input": "egrets", "output": "⠑⠛⠗⠑⠞⠎" }, { "input": "eh", "output": "â ‘â “" }, { "input": "eider", "output": "⠑⠊⠙⠻" }, { "input": "eiderdown", "output": "⠑⠊⠙⠻⠙⠪â " }, { "input": "eiderdowns", "output": "⠑⠊⠙⠻⠙⠪â â Ž" }, { "input": "eiders", "output": "⠑⠊⠙⠻⠎" }, { "input": "eigenvalue", "output": "⠑⠊⠛⠢⠧â â ‡â ¥â ‘" }, { "input": "eigenvalues", "output": "⠑⠊⠛⠢⠧â â ‡â ¥â ‘â Ž" }, { "input": "eight", "output": "⠑⠊⠣⠞" }, { "input": "eighteen", "output": "⠑⠊⠣⠞⠑⠢" }, { "input": "eighteens", "output": "⠑⠊⠣⠞⠑⠢⠎" }, { "input": "eighteenth", "output": "⠑⠊⠣⠞⠑⠢⠹" }, { "input": "eighteenths", "output": "⠑⠊⠣⠞⠑⠢⠹⠎" }, { "input": "eighth", "output": "⠑⠊⠣⠹" }, { "input": "eighths", "output": "⠑⠊⠣⠹⠎" }, { "input": "eighties", "output": "⠑⠊⠣⠞⠊⠑⠎" }, { "input": "eightieth", "output": "⠑⠊⠣⠞⠊⠑⠹" }, { "input": "eightieths", "output": "⠑⠊⠣⠞⠊⠑⠹⠎" }, { "input": "eights", "output": "⠑⠊⠣⠞⠎" }, { "input": "eighty", "output": "⠑⠊⠣⠞⠽" }, { "input": "either", "output": "â ‘â Š" }, { "input": "ejaculate", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ ‘" }, { "input": "ejaculated", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ «" }, { "input": "ejaculates", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "ejaculating", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ ¬" }, { "input": "ejaculation", "output": "â ‘â šâ â ‰â ¥â ‡â â °â " }, { "input": "ejaculations", "output": "â ‘â šâ â ‰â ¥â ‡â â °â â Ž" }, { "input": "eject", "output": "⠑⠚⠑⠉⠞" }, { "input": "ejected", "output": "⠑⠚⠑⠉⠞⠫" }, { "input": "ejecting", "output": "⠑⠚⠑⠉⠞⠬" }, { "input": "ejection", "output": "⠑⠚⠑⠉⠰â " }, { "input": "ejections", "output": "⠑⠚⠑⠉⠰â â Ž" }, { "input": "ejects", "output": "⠑⠚⠑⠉⠞⠎" }, { "input": "eke", "output": "â ‘â …â ‘" }, { "input": "eked", "output": "â ‘â …â «" }, { "input": "ekes", "output": "â ‘â …â ‘â Ž" }, { "input": "eking", "output": "â ‘â …â ¬" }, { "input": "elaborate", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘" }, { "input": "elaborated", "output": "â ‘â ‡â â ƒâ •â —â â žâ «" }, { "input": "elaborately", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘⠇⠽" }, { "input": "elaborateness", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘â °â Ž" }, { "input": "elaborates", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘â Ž" }, { "input": "elaborating", "output": "â ‘â ‡â â ƒâ •â —â â žâ ¬" }, { "input": "elaboration", "output": "â ‘â ‡â â ƒâ •â —â â °â " }, { "input": "elaborations", "output": "â ‘â ‡â â ƒâ •â —â â °â â Ž" }, { "input": "elapse", "output": "â ‘â ‡â â â Žâ ‘" }, { "input": "elapsed", "output": "â ‘â ‡â â â Žâ «" }, { "input": "elapses", "output": "â ‘â ‡â â â Žâ ‘â Ž" }, { "input": "elapsing", "output": "â ‘â ‡â â â Žâ ¬" }, { "input": "elastic", "output": "â ‘â ‡â â Œâ Šâ ‰" }, { "input": "elasticity", "output": "â ‘â ‡â â Œâ Šâ ‰â °â ½" }, { "input": "elastics", "output": "â ‘â ‡â â Œâ Šâ ‰â Ž" }, { "input": "elate", "output": "â ‘â ‡â â žâ ‘" }, { "input": "elated", "output": "â ‘â ‡â â žâ «" }, { "input": "elates", "output": "â ‘â ‡â â žâ ‘â Ž" }, { "input": "elating", "output": "â ‘â ‡â â žâ ¬" }, { "input": "elation", "output": "â ‘â ‡â â °â " }, { "input": "elbow", "output": "⠑⠇⠃⠪" }, { "input": "elbowed", "output": "⠑⠇⠃⠪⠫" }, { "input": "elbowing", "output": "⠑⠇⠃⠪⠬" }, { "input": "elbowroom", "output": "⠑⠇⠃⠪⠗⠕⠕â " }, { "input": "elbows", "output": "⠑⠇⠃⠪⠎" }, { "input": "elder", "output": "⠑⠇⠙⠻" }, { "input": "elderberries", "output": "⠑⠇⠙⠻⠃⠻⠗⠊⠑⠎" }, { "input": "elderberry", "output": "⠑⠇⠙⠻⠃⠻⠗⠽" }, { "input": "elderly", "output": "⠑⠇⠙⠻⠇⠽" }, { "input": "elders", "output": "⠑⠇⠙⠻⠎" }, { "input": "eldest", "output": "⠑⠇⠙⠑⠌" }, { "input": "elect", "output": "⠑⠇⠑⠉⠞" }, { "input": "elected", "output": "⠑⠇⠑⠉⠞⠫" }, { "input": "electing", "output": "⠑⠇⠑⠉⠞⠬" }, { "input": "election", "output": "⠑⠇⠑⠉⠰â " }, { "input": "electioneer", "output": "⠑⠇⠑⠉⠰â â ‘â »" }, { "input": "electioneered", "output": "⠑⠇⠑⠉⠰â â ‘⠻⠫" }, { "input": "electioneering", "output": "⠑⠇⠑⠉⠰â â ‘⠻⠬" }, { "input": "electioneers", "output": "⠑⠇⠑⠉⠰â â ‘⠻⠎" }, { "input": "elections", "output": "⠑⠇⠑⠉⠰â â Ž" }, { "input": "elective", "output": "⠑⠇⠑⠉⠞⠊⠧⠑" }, { "input": "electives", "output": "⠑⠇⠑⠉⠞⠊⠧⠑⠎" }, { "input": "elector", "output": "⠑⠇⠑⠉⠞⠕⠗" }, { "input": "electoral", "output": "⠑⠇⠑⠉⠞⠕⠗â â ‡" }, { "input": "electorate", "output": "⠑⠇⠑⠉⠞⠕⠗â â žâ ‘" }, { "input": "electorates", "output": "⠑⠇⠑⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "electors", "output": "⠑⠇⠑⠉⠞⠕⠗⠎" }, { "input": "electric", "output": "⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "electrical", "output": "⠑⠇⠑⠉⠞⠗⠊⠉â â ‡" }, { "input": "electrically", "output": "⠑⠇⠑⠉⠞⠗⠊⠉â â ‡â ‡â ½" }, { "input": "electrician", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠊â â " }, { "input": "electricians", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠊â â â Ž" }, { "input": "electricity", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠰⠽" }, { "input": "electrification", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠉â â °â " }, { "input": "electrified", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠫" }, { "input": "electrifies", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠑⠎" }, { "input": "electrify", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠽" }, { "input": "electrifying", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠽⠬" }, { "input": "electrocardiogram", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â " }, { "input": "electrocardiograms", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â Ž" }, { "input": "electrocardiograph", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “" }, { "input": "electrocardiographs", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “â Ž" }, { "input": "electrocute", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠑" }, { "input": "electrocuted", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠫" }, { "input": "electrocutes", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠑⠎" }, { "input": "electrocuting", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠬" }, { "input": "electrocution", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠰â " }, { "input": "electrocutions", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠰â â Ž" }, { "input": "electrode", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠑" }, { "input": "electrodes", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠑⠎" }, { "input": "electrodynamics", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠽â â â â Šâ ‰â Ž" }, { "input": "electroencephalogram", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â " }, { "input": "electroencephalograms", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â Ž" }, { "input": "electroencephalograph", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “" }, { "input": "electroencephalographs", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “â Ž" }, { "input": "electrolysis", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠎⠊⠎" }, { "input": "electrolyte", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠑" }, { "input": "electrolytes", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠑⠎" }, { "input": "electrolytic", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠊⠉" }, { "input": "electromagnet", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â ž" }, { "input": "electromagnetic", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Šâ ‰" }, { "input": "electromagnetism", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Šâ Žâ " }, { "input": "electromagnets", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Ž" }, { "input": "electron", "output": "⠑⠇⠑⠉⠞⠗⠕â " }, { "input": "electronic", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰" }, { "input": "electronically", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰â â ‡â ‡â ½" }, { "input": "electronics", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰â Ž" }, { "input": "electrons", "output": "⠑⠇⠑⠉⠞⠗⠕â â Ž" }, { "input": "electroplate", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ ‘" }, { "input": "electroplated", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ «" }, { "input": "electroplates", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ ‘â Ž" }, { "input": "electroplating", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ ¬" }, { "input": "electrostatic", "output": "⠑⠇⠑⠉⠞⠗⠕⠌â â žâ Šâ ‰" }, { "input": "elects", "output": "⠑⠇⠑⠉⠞⠎" }, { "input": "elegance", "output": "⠑⠇⠑⠛⠨⠑" }, { "input": "elegant", "output": "⠑⠇⠑⠛â â â ž" }, { "input": "elegantly", "output": "⠑⠇⠑⠛â â â žâ ‡â ½" }, { "input": "elegiac", "output": "⠑⠇⠑⠛⠊â â ‰" }, { "input": "elegiacs", "output": "⠑⠇⠑⠛⠊â â ‰â Ž" }, { "input": "elegies", "output": "⠑⠇⠑⠛⠊⠑⠎" }, { "input": "elegy", "output": "⠑⠇⠑⠛⠽" }, { "input": "element", "output": "⠑⠇⠑⠰⠞" }, { "input": "elemental", "output": "⠑⠇⠑⠰⠞â â ‡" }, { "input": "elementary", "output": "⠑⠇⠑⠰⠞⠜⠽" }, { "input": "elements", "output": "⠑⠇⠑⠰⠞⠎" }, { "input": "elephant", "output": "⠑⠇⠑â â “â â â ž" }, { "input": "elephantine", "output": "⠑⠇⠑â â “â â â žâ ”â ‘" }, { "input": "elephants", "output": "⠑⠇⠑â â “â â â žâ Ž" }, { "input": "elevate", "output": "⠑⠇⠑⠧â â žâ ‘" }, { "input": "elevated", "output": "⠑⠇⠑⠧â â žâ «" }, { "input": "elevates", "output": "⠑⠇⠑⠧â â žâ ‘â Ž" }, { "input": "elevating", "output": "⠑⠇⠑⠧â â žâ ¬" }, { "input": "elevation", "output": "⠑⠇⠑⠧â â °â " }, { "input": "elevations", "output": "⠑⠇⠑⠧â â °â â Ž" }, { "input": "elevator", "output": "⠑⠇⠑⠧â â žâ •â —" }, { "input": "elevators", "output": "⠑⠇⠑⠧â â žâ •â —â Ž" }, { "input": "eleven", "output": "⠑⠇⠑⠧⠢" }, { "input": "elevens", "output": "⠑⠇⠑⠧⠢⠎" }, { "input": "eleventh", "output": "⠑⠇⠑⠧⠢⠹" }, { "input": "elevenths", "output": "⠑⠇⠑⠧⠢⠹⠎" }, { "input": "elf", "output": "⠑⠇⠋" }, { "input": "elfin", "output": "⠑⠇⠋⠔" }, { "input": "elfish", "output": "⠑⠇⠋⠊⠩" }, { "input": "elicit", "output": "⠑⠇⠊⠉⠊⠞" }, { "input": "elicited", "output": "⠑⠇⠊⠉⠊⠞⠫" }, { "input": "eliciting", "output": "⠑⠇⠊⠉⠊⠞⠬" }, { "input": "elicits", "output": "⠑⠇⠊⠉⠊⠞⠎" }, { "input": "elide", "output": "⠑⠇⠊⠙⠑" }, { "input": "elided", "output": "⠑⠇⠊⠙⠫" }, { "input": "elides", "output": "⠑⠇⠊⠙⠑⠎" }, { "input": "eliding", "output": "⠑⠇⠊⠙⠬" }, { "input": "eligibility", "output": "⠑⠇⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "eligible", "output": "⠑⠇⠊⠛⠊⠃⠇⠑" }, { "input": "eliminate", "output": "⠑⠇⠊â â ”â â žâ ‘" }, { "input": "eliminated", "output": "⠑⠇⠊â â ”â â žâ «" }, { "input": "eliminates", "output": "⠑⠇⠊â â ”â â žâ ‘â Ž" }, { "input": "eliminating", "output": "⠑⠇⠊â â ”â â žâ ¬" }, { "input": "elimination", "output": "⠑⠇⠊â â ”â â °â " }, { "input": "eliminations", "output": "⠑⠇⠊â â ”â â °â â Ž" }, { "input": "elision", "output": "⠑⠇⠊⠨â " }, { "input": "elisions", "output": "⠑⠇⠊⠨â â Ž" }, { "input": "elite", "output": "⠑⠇⠊⠞⠑" }, { "input": "elites", "output": "⠑⠇⠊⠞⠑⠎" }, { "input": "elitism", "output": "⠑⠇⠊⠞⠊⠎â " }, { "input": "elitist", "output": "⠑⠇⠊⠞⠊⠌" }, { "input": "elitists", "output": "⠑⠇⠊⠞⠊⠌⠎" }, { "input": "elixir", "output": "⠑⠇⠊⠭⠊⠗" }, { "input": "elixirs", "output": "⠑⠇⠊⠭⠊⠗⠎" }, { "input": "elk", "output": "⠑⠇⠅" }, { "input": "elks", "output": "⠑⠇⠅⠎" }, { "input": "ell", "output": "⠑⠇⠇" }, { "input": "ellipse", "output": "⠑⠇⠇⠊â â Žâ ‘" }, { "input": "ellipses", "output": "⠑⠇⠇⠊â â Žâ ‘â Ž" }, { "input": "ellipsis", "output": "⠑⠇⠇⠊â â Žâ Šâ Ž" }, { "input": "elliptic", "output": "⠑⠇⠇⠊â â žâ Šâ ‰" }, { "input": "elliptical", "output": "⠑⠇⠇⠊â â žâ Šâ ‰â â ‡" }, { "input": "elliptically", "output": "⠑⠇⠇⠊â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "ells", "output": "⠑⠇⠇⠎" }, { "input": "elm", "output": "â ‘â ‡â " }, { "input": "elms", "output": "â ‘â ‡â â Ž" }, { "input": "elocution", "output": "⠑⠇⠕⠉⠥⠰â " }, { "input": "elocutionist", "output": "⠑⠇⠕⠉⠥⠰â â Šâ Œ" }, { "input": "elocutionists", "output": "⠑⠇⠕⠉⠥⠰â â Šâ Œâ Ž" }, { "input": "elongate", "output": "⠑⠇⠰⠛â â žâ ‘" }, { "input": "elongated", "output": "⠑⠇⠰⠛â â žâ «" }, { "input": "elongates", "output": "⠑⠇⠰⠛â â žâ ‘â Ž" }, { "input": "elongating", "output": "⠑⠇⠰⠛â â žâ ¬" }, { "input": "elongation", "output": "⠑⠇⠰⠛â â °â " }, { "input": "elongations", "output": "⠑⠇⠰⠛â â °â â Ž" }, { "input": "elope", "output": "⠑⠇⠕â â ‘" }, { "input": "eloped", "output": "⠑⠇⠕â â «" }, { "input": "elopement", "output": "⠑⠇⠕â â ‘â °â ž" }, { "input": "elopements", "output": "⠑⠇⠕â â ‘â °â žâ Ž" }, { "input": "elopes", "output": "⠑⠇⠕â â ‘â Ž" }, { "input": "eloping", "output": "⠑⠇⠕â â ¬" }, { "input": "eloquence", "output": "⠑⠇⠕⠟⠥⠰⠑" }, { "input": "eloquent", "output": "⠑⠇⠕⠟⠥⠢⠞" }, { "input": "eloquently", "output": "⠑⠇⠕⠟⠥⠢⠞⠇⠽" }, { "input": "else", "output": "⠑⠇⠎⠑" }, { "input": "elsewhere", "output": "⠑⠇⠎⠑â â ±" }, { "input": "elucidate", "output": "⠑⠇⠥⠉⠊⠙â â žâ ‘" }, { "input": "elucidated", "output": "⠑⠇⠥⠉⠊⠙â â žâ «" }, { "input": "elucidates", "output": "⠑⠇⠥⠉⠊⠙â â žâ ‘â Ž" }, { "input": "elucidating", "output": "⠑⠇⠥⠉⠊⠙â â žâ ¬" }, { "input": "elucidation", "output": "⠑⠇⠥⠉⠊⠙â â °â " }, { "input": "elucidations", "output": "⠑⠇⠥⠉⠊⠙â â °â â Ž" }, { "input": "elude", "output": "⠑⠇⠥⠙⠑" }, { "input": "eluded", "output": "⠑⠇⠥⠙⠫" }, { "input": "eludes", "output": "⠑⠇⠥⠙⠑⠎" }, { "input": "eluding", "output": "⠑⠇⠥⠙⠬" }, { "input": "elusive", "output": "⠑⠇⠥⠎⠊⠧⠑" }, { "input": "elusively", "output": "⠑⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "elusiveness", "output": "⠑⠇⠥⠎⠊⠧⠑⠰⠎" }, { "input": "elves", "output": "⠑⠇⠧⠑⠎" }, { "input": "em", "output": "â ‘â " }, { "input": "emaciate", "output": "â ‘â â â ‰â Šâ â žâ ‘" }, { "input": "emaciated", "output": "â ‘â â â ‰â Šâ â žâ «" }, { "input": "emaciates", "output": "â ‘â â â ‰â Šâ â žâ ‘â Ž" }, { "input": "emaciating", "output": "â ‘â â â ‰â Šâ â žâ ¬" }, { "input": "emaciation", "output": "â ‘â â â ‰â Šâ â °â " }, { "input": "email", "output": "â ‘â â â Šâ ‡" }, { "input": "emailed", "output": "â ‘â â â Šâ ‡â «" }, { "input": "emailing", "output": "â ‘â â â Šâ ‡â ¬" }, { "input": "emails", "output": "â ‘â â â Šâ ‡â Ž" }, { "input": "emanate", "output": "â ‘â â â â â žâ ‘" }, { "input": "emanated", "output": "â ‘â â â â â žâ «" }, { "input": "emanates", "output": "â ‘â â â â â žâ ‘â Ž" }, { "input": "emanating", "output": "â ‘â â â â â žâ ¬" }, { "input": "emanation", "output": "â ‘â â â â â °â " }, { "input": "emanations", "output": "â ‘â â â â â °â â Ž" }, { "input": "emancipate", "output": "â ‘â â â â ‰â Šâ â â žâ ‘" }, { "input": "emancipated", "output": "â ‘â â â â ‰â Šâ â â žâ «" }, { "input": "emancipates", "output": "â ‘â â â â ‰â Šâ â â žâ ‘â Ž" }, { "input": "emancipating", "output": "â ‘â â â â ‰â Šâ â â žâ ¬" }, { "input": "emancipation", "output": "â ‘â â â â ‰â Šâ â â °â " }, { "input": "emancipator", "output": "â ‘â â â â ‰â Šâ â â žâ •â —" }, { "input": "emancipators", "output": "â ‘â â â â ‰â Šâ â â žâ •â —â Ž" }, { "input": "emasculate", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ ‘" }, { "input": "emasculated", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ «" }, { "input": "emasculates", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "emasculating", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ ¬" }, { "input": "emasculation", "output": "â ‘â â â Žâ ‰â ¥â ‡â â °â " }, { "input": "embalm", "output": "â ‘â â ƒâ â ‡â " }, { "input": "embalmed", "output": "â ‘â â ƒâ â ‡â â «" }, { "input": "embalmer", "output": "â ‘â â ƒâ â ‡â â »" }, { "input": "embalmers", "output": "â ‘â â ƒâ â ‡â â »â Ž" }, { "input": "embalming", "output": "â ‘â â ƒâ â ‡â â ¬" }, { "input": "embalms", "output": "â ‘â â ƒâ â ‡â â Ž" }, { "input": "embankment", "output": "â ‘â â ƒâ â â …â °â ž" }, { "input": "embankments", "output": "â ‘â â ƒâ â â …â °â žâ Ž" }, { "input": "embargo", "output": "â ‘â â ƒâ œâ ›â •" }, { "input": "embargoed", "output": "â ‘â â ƒâ œâ ›â •â «" }, { "input": "embargoes", "output": "â ‘â â ƒâ œâ ›â •â ‘â Ž" }, { "input": "embargoing", "output": "â ‘â â ƒâ œâ ›â •â ¬" }, { "input": "embark", "output": "â ‘â â ƒâ œâ …" }, { "input": "embarkation", "output": "â ‘â â ƒâ œâ …â â °â " }, { "input": "embarkations", "output": "â ‘â â ƒâ œâ …â â °â â Ž" }, { "input": "embarked", "output": "â ‘â â ƒâ œâ …â «" }, { "input": "embarking", "output": "â ‘â â ƒâ œâ …â ¬" }, { "input": "embarks", "output": "â ‘â â ƒâ œâ …â Ž" }, { "input": "embarrass", "output": "â ‘â â ƒâ œâ —â â Žâ Ž" }, { "input": "embarrassed", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ «" }, { "input": "embarrasses", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ ‘â Ž" }, { "input": "embarrassing", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ ¬" }, { "input": "embarrassingly", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ ¬â ‡â ½" }, { "input": "embarrassment", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ °â ž" }, { "input": "embarrassments", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ °â žâ Ž" }, { "input": "embassies", "output": "â ‘â â ƒâ â Žâ Žâ Šâ ‘â Ž" }, { "input": "embassy", "output": "â ‘â â ƒâ â Žâ Žâ ½" }, { "input": "embattled", "output": "â ‘â â ƒâ â žâ žâ ‡â «" }, { "input": "embed", "output": "â ‘â â ƒâ «" }, { "input": "embedded", "output": "â ‘â â ƒâ «â ™â «" }, { "input": "embedding", "output": "â ‘â â ƒâ «â ™â ¬" }, { "input": "embeds", "output": "â ‘â â ƒâ «â Ž" }, { "input": "embellish", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩" }, { "input": "embellished", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠫" }, { "input": "embellishes", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠑⠎" }, { "input": "embellishing", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠬" }, { "input": "embellishment", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠰⠞" }, { "input": "embellishments", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠰⠞⠎" }, { "input": "ember", "output": "â ‘â â ƒâ »" }, { "input": "embers", "output": "â ‘â â ƒâ »â Ž" }, { "input": "embezzle", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑" }, { "input": "embezzled", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠫" }, { "input": "embezzlement", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑⠰⠞" }, { "input": "embezzler", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠻" }, { "input": "embezzlers", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠻⠎" }, { "input": "embezzles", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑⠎" }, { "input": "embezzling", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠬" }, { "input": "embitter", "output": "â ‘â â ƒâ Šâ žâ žâ »" }, { "input": "embittered", "output": "â ‘â â ƒâ Šâ žâ žâ »â «" }, { "input": "embittering", "output": "â ‘â â ƒâ Šâ žâ žâ »â ¬" }, { "input": "embitters", "output": "â ‘â â ƒâ Šâ žâ žâ »â Ž" }, { "input": "emblazon", "output": "â ‘â â ƒâ ‡â â µâ •â " }, { "input": "emblazoned", "output": "â ‘â â ƒâ ‡â â µâ •â â «" }, { "input": "emblazoning", "output": "â ‘â â ƒâ ‡â â µâ •â â ¬" }, { "input": "emblazons", "output": "â ‘â â ƒâ ‡â â µâ •â â Ž" }, { "input": "emblem", "output": "â ‘â â ƒâ ‡â ‘â " }, { "input": "emblematic", "output": "â ‘â â ƒâ ‡â ‘â â â žâ Šâ ‰" }, { "input": "emblems", "output": "â ‘â â ƒâ ‡â ‘â â Ž" }, { "input": "embodied", "output": "â ‘â â ƒâ •⠙⠊⠫" }, { "input": "embodies", "output": "â ‘â â ƒâ •⠙⠊⠑⠎" }, { "input": "embodiment", "output": "â ‘â â ƒâ •⠙⠊⠰⠞" }, { "input": "embody", "output": "â ‘â â ƒâ •⠙⠽" }, { "input": "embodying", "output": "â ‘â â ƒâ •⠙⠽⠬" }, { "input": "embolden", "output": "â ‘â â ƒâ •⠇⠙⠢" }, { "input": "emboldened", "output": "â ‘â â ƒâ •⠇⠙⠢⠫" }, { "input": "emboldening", "output": "â ‘â â ƒâ •⠇⠙⠢⠬" }, { "input": "emboldens", "output": "â ‘â â ƒâ •⠇⠙⠢⠎" }, { "input": "embolism", "output": "â ‘â â ƒâ •⠇⠊⠎â " }, { "input": "embolisms", "output": "â ‘â â ƒâ •⠇⠊⠎â â Ž" }, { "input": "emboss", "output": "â ‘â â ƒâ •â Žâ Ž" }, { "input": "embossed", "output": "â ‘â â ƒâ •â Žâ Žâ «" }, { "input": "embosses", "output": "â ‘â â ƒâ •â Žâ Žâ ‘â Ž" }, { "input": "embossing", "output": "â ‘â â ƒâ •â Žâ Žâ ¬" }, { "input": "embrace", "output": "â ‘â â ƒâ —â â ‰â ‘" }, { "input": "embraced", "output": "â ‘â â ƒâ —â â ‰â «" }, { "input": "embraces", "output": "â ‘â â ƒâ —â â ‰â ‘â Ž" }, { "input": "embracing", "output": "â ‘â â ƒâ —â â ‰â ¬" }, { "input": "embroider", "output": "â ‘â â ƒâ —⠕⠊⠙⠻" }, { "input": "embroidered", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠫" }, { "input": "embroideries", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠊⠑⠎" }, { "input": "embroidering", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠬" }, { "input": "embroiders", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠎" }, { "input": "embroidery", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠽" }, { "input": "embroil", "output": "â ‘â â ƒâ —â •â Šâ ‡" }, { "input": "embroiled", "output": "â ‘â â ƒâ —⠕⠊⠇⠫" }, { "input": "embroiling", "output": "â ‘â â ƒâ —⠕⠊⠇⠬" }, { "input": "embroils", "output": "â ‘â â ƒâ —⠕⠊⠇⠎" }, { "input": "embryo", "output": "â ‘â â ƒâ —⠽⠕" }, { "input": "embryologist", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠊⠌" }, { "input": "embryologists", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠊⠌⠎" }, { "input": "embryology", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠽" }, { "input": "embryonic", "output": "â ‘â â ƒâ —⠽⠕â â Šâ ‰" }, { "input": "embryos", "output": "â ‘â â ƒâ —⠽⠕⠎" }, { "input": "emcee", "output": "â ‘â â ‰â ‘â ‘" }, { "input": "emceed", "output": "â ‘â â ‰â ‘â «" }, { "input": "emceeing", "output": "â ‘â â ‰â ‘â ‘â ¬" }, { "input": "emcees", "output": "â ‘â â ‰â ‘â ‘â Ž" }, { "input": "emend", "output": "â ‘â â ¢â ™" }, { "input": "emendation", "output": "â ‘â â ¢â ™â â °â " }, { "input": "emendations", "output": "â ‘â â ¢â ™â â °â â Ž" }, { "input": "emended", "output": "â ‘â â ¢â ™â «" }, { "input": "emending", "output": "â ‘â â ¢â ™â ¬" }, { "input": "emends", "output": "â ‘â â ¢â ™â Ž" }, { "input": "emerald", "output": "â ‘â â »â â ‡â ™" }, { "input": "emeralds", "output": "â ‘â â »â â ‡â ™â Ž" }, { "input": "emerge", "output": "â ‘â â »â ›â ‘" }, { "input": "emerged", "output": "â ‘â â »â ›â «" }, { "input": "emergence", "output": "â ‘â â »â ›â °â ‘" }, { "input": "emergencies", "output": "â ‘â â »â ›â ¢â ‰â Šâ ‘â Ž" }, { "input": "emergency", "output": "â ‘â â »â ›â ¢â ‰â ½" }, { "input": "emergent", "output": "â ‘â â »â ›â ¢â ž" }, { "input": "emerges", "output": "â ‘â â »â ›â ‘â Ž" }, { "input": "emerging", "output": "â ‘â â »â ›â ¬" }, { "input": "emeritus", "output": "â ‘â â »â Šâ žâ ¥â Ž" }, { "input": "emery", "output": "â ‘â â »â ½" }, { "input": "emetic", "output": "â ‘â â ‘â žâ Šâ ‰" }, { "input": "emetics", "output": "â ‘â â ‘⠞⠊⠉⠎" }, { "input": "emigrant", "output": "â ‘â â Šâ ›â —â â â ž" }, { "input": "emigrants", "output": "â ‘â â Šâ ›â —â â â žâ Ž" }, { "input": "emigrate", "output": "â ‘â â Šâ ›â —â â žâ ‘" }, { "input": "emigrated", "output": "â ‘â â Šâ ›â —â â žâ «" }, { "input": "emigrates", "output": "â ‘â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "emigrating", "output": "â ‘â â Šâ ›â —â â žâ ¬" }, { "input": "emigration", "output": "â ‘â â Šâ ›â —â â °â " }, { "input": "emigrations", "output": "â ‘â â Šâ ›â —â â °â â Ž" }, { "input": "eminence", "output": "â ‘â â ”â °â ‘" }, { "input": "eminences", "output": "â ‘â â ”â °â ‘â Ž" }, { "input": "eminent", "output": "â ‘â â ”⠢⠞" }, { "input": "eminently", "output": "â ‘â â ”⠢⠞⠇⠽" }, { "input": "emir", "output": "â ‘â â Šâ —" }, { "input": "emirate", "output": "â ‘â â Šâ —â â žâ ‘" }, { "input": "emirates", "output": "â ‘â â Šâ —â â žâ ‘â Ž" }, { "input": "emirs", "output": "â ‘â â Šâ —â Ž" }, { "input": "emissaries", "output": "â ‘â â Šâ Žâ Žâ œâ Šâ ‘â Ž" }, { "input": "emissary", "output": "â ‘â â Šâ Žâ Žâ œâ ½" }, { "input": "emission", "output": "â ‘â â Šâ Žâ ¨â " }, { "input": "emissions", "output": "â ‘â â Šâ Žâ ¨â â Ž" }, { "input": "emit", "output": "â ‘â â Šâ ž" }, { "input": "emits", "output": "â ‘â â Šâ žâ Ž" }, { "input": "emitted", "output": "â ‘â â Šâ žâ žâ «" }, { "input": "emitting", "output": "â ‘â â Šâ žâ žâ ¬" }, { "input": "emollient", "output": "â ‘â â •⠇⠇⠊⠢⠞" }, { "input": "emollients", "output": "â ‘â â •⠇⠇⠊⠢⠞⠎" }, { "input": "emolument", "output": "â ‘â â •⠇⠥⠰⠞" }, { "input": "emoluments", "output": "â ‘â â •⠇⠥⠰⠞⠎" }, { "input": "emote", "output": "â ‘â â •â žâ ‘" }, { "input": "emoted", "output": "â ‘â â •â žâ «" }, { "input": "emotes", "output": "â ‘â â •â žâ ‘â Ž" }, { "input": "emoting", "output": "â ‘â â •â žâ ¬" }, { "input": "emotion", "output": "â ‘â â •â °â " }, { "input": "emotional", "output": "â ‘â â •â °â â â ‡" }, { "input": "emotionalism", "output": "â ‘â â •â °â â â ‡â Šâ Žâ " }, { "input": "emotionally", "output": "â ‘â â •â °â â â ‡â ‡â ½" }, { "input": "emotions", "output": "â ‘â â •â °â â Ž" }, { "input": "emotive", "output": "â ‘â â •â žâ Šâ §â ‘" }, { "input": "empanel", "output": "â ‘â â â â â ‘â ‡" }, { "input": "empaneled", "output": "â ‘â â â â â ‘⠇⠫" }, { "input": "empaneling", "output": "â ‘â â â â â ‘⠇⠬" }, { "input": "empanels", "output": "â ‘â â â â â ‘⠇⠎" }, { "input": "empathetic", "output": "â ‘â â â â ®â žâ Šâ ‰" }, { "input": "empathize", "output": "â ‘â â â â ¹â Šâ µâ ‘" }, { "input": "empathized", "output": "â ‘â â â â ¹â Šâ µâ «" }, { "input": "empathizes", "output": "â ‘â â â â ¹â Šâ µâ ‘â Ž" }, { "input": "empathizing", "output": "â ‘â â â â ¹â Šâ µâ ¬" }, { "input": "empathy", "output": "â ‘â â â â ¹â ½" }, { "input": "emperor", "output": "â ‘â â â »â •â —" }, { "input": "emperors", "output": "â ‘â â â »â •â —â Ž" }, { "input": "emphases", "output": "â ‘â â â “â â Žâ ‘â Ž" }, { "input": "emphasis", "output": "â ‘â â â “â â Žâ Šâ Ž" }, { "input": "emphasize", "output": "â ‘â â â “â â Žâ Šâ µâ ‘" }, { "input": "emphasized", "output": "â ‘â â â “â â Žâ Šâ µâ «" }, { "input": "emphasizes", "output": "â ‘â â â “â â Žâ Šâ µâ ‘â Ž" }, { "input": "emphasizing", "output": "â ‘â â â “â â Žâ Šâ µâ ¬" }, { "input": "emphatic", "output": "â ‘â â â “â â žâ Šâ ‰" }, { "input": "emphatically", "output": "â ‘â â â “â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "emphysema", "output": "â ‘â â â “⠽⠎⠑â â " }, { "input": "empire", "output": "â ‘â â â Šâ —â ‘" }, { "input": "empires", "output": "â ‘â â â Šâ —â ‘â Ž" }, { "input": "empirical", "output": "â ‘â â â Šâ —â Šâ ‰â â ‡" }, { "input": "empirically", "output": "â ‘â â â Šâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "empiricism", "output": "â ‘â â â Šâ —⠊⠉⠊⠎â " }, { "input": "emplacement", "output": "â ‘â â â ‡â â ‰â ‘â °â ž" }, { "input": "emplacements", "output": "â ‘â â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "employ", "output": "â ‘â â â ‡â •â ½" }, { "input": "employable", "output": "â ‘â â â ‡â •â ½â â ƒâ ‡â ‘" }, { "input": "employe", "output": "â ‘â â â ‡â •⠽⠑" }, { "input": "employed", "output": "â ‘â â â ‡â •⠽⠫" }, { "input": "employee", "output": "â ‘â â â ‡â •⠽⠑⠑" }, { "input": "employees", "output": "â ‘â â â ‡â •⠽⠑⠑⠎" }, { "input": "employer", "output": "â ‘â â â ‡â •⠽⠻" }, { "input": "employers", "output": "â ‘â â â ‡â •⠽⠻⠎" }, { "input": "employes", "output": "â ‘â â â ‡â •⠽⠑⠎" }, { "input": "employing", "output": "â ‘â â â ‡â •⠽⠬" }, { "input": "employment", "output": "â ‘â â â ‡â •⠽⠰⠞" }, { "input": "employments", "output": "â ‘â â â ‡â •⠽⠰⠞⠎" }, { "input": "employs", "output": "â ‘â â â ‡â •⠽⠎" }, { "input": "emporia", "output": "â ‘â â â •â —â Šâ " }, { "input": "emporium", "output": "â ‘â â â •â —â Šâ ¥â " }, { "input": "emporiums", "output": "â ‘â â â •â —â Šâ ¥â â Ž" }, { "input": "empower", "output": "â ‘â â â ªâ »" }, { "input": "empowered", "output": "â ‘â â â ªâ »â «" }, { "input": "empowering", "output": "â ‘â â â ªâ »â ¬" }, { "input": "empowerment", "output": "â ‘â â â ªâ »â °â ž" }, { "input": "empowers", "output": "â ‘â â â ªâ »â Ž" }, { "input": "empress", "output": "â ‘â â â —â ‘â Žâ Ž" }, { "input": "empresses", "output": "â ‘â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "emptied", "output": "â ‘â â â žâ Šâ «" }, { "input": "emptier", "output": "â ‘â â â žâ Šâ »" }, { "input": "empties", "output": "â ‘â â â žâ Šâ ‘â Ž" }, { "input": "emptiest", "output": "â ‘â â â žâ Šâ ‘â Œ" }, { "input": "emptily", "output": "â ‘â â â žâ Šâ ‡â ½" }, { "input": "emptiness", "output": "â ‘â â â žâ Šâ °â Ž" }, { "input": "empty", "output": "â ‘â â â žâ ½" }, { "input": "emptying", "output": "â ‘â â â žâ ½â ¬" }, { "input": "ems", "output": "â ‘â â Ž" }, { "input": "emu", "output": "â ‘â â ¥" }, { "input": "emulate", "output": "â ‘â â ¥â ‡â â žâ ‘" }, { "input": "emulated", "output": "â ‘â â ¥â ‡â â žâ «" }, { "input": "emulates", "output": "â ‘â â ¥â ‡â â žâ ‘â Ž" }, { "input": "emulating", "output": "â ‘â â ¥â ‡â â žâ ¬" }, { "input": "emulation", "output": "â ‘â â ¥â ‡â â °â " }, { "input": "emulations", "output": "â ‘â â ¥â ‡â â °â â Ž" }, { "input": "emulator", "output": "â ‘â â ¥â ‡â â žâ •â —" }, { "input": "emulators", "output": "â ‘â â ¥â ‡â â žâ •â —â Ž" }, { "input": "emulsification", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "emulsified", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ «" }, { "input": "emulsifies", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "emulsify", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â ½" }, { "input": "emulsifying", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â ½â ¬" }, { "input": "emulsion", "output": "â ‘â â ¥â ‡â ¨â " }, { "input": "emulsions", "output": "â ‘â â ¥â ‡â ¨â â Ž" }, { "input": "emus", "output": "â ‘â â ¥â Ž" }, { "input": "enable", "output": "â ¢â â ƒâ ‡â ‘" }, { "input": "enabled", "output": "â ¢â â ƒâ ‡â «" }, { "input": "enables", "output": "â ¢â â ƒâ ‡â ‘â Ž" }, { "input": "enabling", "output": "â ¢â â ƒâ ‡â ¬" }, { "input": "enact", "output": "â ¢â â ‰â ž" }, { "input": "enacted", "output": "â ¢â â ‰â žâ «" }, { "input": "enacting", "output": "â ¢â â ‰â žâ ¬" }, { "input": "enactment", "output": "â ¢â â ‰â žâ °â ž" }, { "input": "enactments", "output": "â ¢â â ‰â žâ °â žâ Ž" }, { "input": "enacts", "output": "â ¢â â ‰â žâ Ž" }, { "input": "enamel", "output": "â ¢â â â ‘â ‡" }, { "input": "enameled", "output": "â ¢â â â ‘⠇⠫" }, { "input": "enameling", "output": "â ¢â â â ‘⠇⠬" }, { "input": "enamelled", "output": "â ¢â â â ‘⠇⠇⠫" }, { "input": "enamelling", "output": "â ¢â â â ‘⠇⠇⠬" }, { "input": "enamels", "output": "â ¢â â â ‘⠇⠎" }, { "input": "enamor", "output": "â ¢â â â •â —" }, { "input": "enamored", "output": "â ¢â â â •â —â «" }, { "input": "enamoring", "output": "â ¢â â â •â —â ¬" }, { "input": "enamors", "output": "â ¢â â â •â —â Ž" }, { "input": "encamp", "output": "⠢⠉â â â " }, { "input": "encamped", "output": "⠢⠉â â â â «" }, { "input": "encamping", "output": "⠢⠉â â â â ¬" }, { "input": "encampment", "output": "⠢⠉â â â â °â ž" }, { "input": "encampments", "output": "⠢⠉â â â â °â žâ Ž" }, { "input": "encamps", "output": "⠢⠉â â â â Ž" }, { "input": "encapsulate", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ ‘" }, { "input": "encapsulated", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ «" }, { "input": "encapsulates", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "encapsulating", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ ¬" }, { "input": "encapsulation", "output": "⠢⠉â â â Žâ ¥â ‡â â °â " }, { "input": "encapsulations", "output": "⠢⠉â â â Žâ ¥â ‡â â °â â Ž" }, { "input": "encase", "output": "⠢⠉â â Žâ ‘" }, { "input": "encased", "output": "⠢⠉â â Žâ «" }, { "input": "encases", "output": "⠢⠉â â Žâ ‘â Ž" }, { "input": "encasing", "output": "⠢⠉â â Žâ ¬" }, { "input": "encephalitis", "output": "⠢⠉⠑â â “â â ‡â Šâ žâ Šâ Ž" }, { "input": "enchant", "output": "⠢⠡â â â ž" }, { "input": "enchanted", "output": "⠢⠡â â â žâ «" }, { "input": "enchanter", "output": "⠢⠡â â â žâ »" }, { "input": "enchanters", "output": "⠢⠡â â â žâ »â Ž" }, { "input": "enchanting", "output": "⠢⠡â â â žâ ¬" }, { "input": "enchantingly", "output": "⠢⠡â â â žâ ¬â ‡â ½" }, { "input": "enchantment", "output": "⠢⠡â â â žâ °â ž" }, { "input": "enchantments", "output": "⠢⠡â â â žâ °â žâ Ž" }, { "input": "enchantress", "output": "⠢⠡â â â žâ —â ‘â Žâ Ž" }, { "input": "enchantresses", "output": "⠢⠡â â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "enchants", "output": "⠢⠡â â â žâ Ž" }, { "input": "enchilada", "output": "⠢⠡⠊⠇â â ™â " }, { "input": "enchiladas", "output": "⠢⠡⠊⠇â â ™â â Ž" }, { "input": "encircle", "output": "⠢⠉⠊⠗⠉⠇⠑" }, { "input": "encircled", "output": "⠢⠉⠊⠗⠉⠇⠫" }, { "input": "encirclement", "output": "⠢⠉⠊⠗⠉⠇⠑⠰⠞" }, { "input": "encircles", "output": "⠢⠉⠊⠗⠉⠇⠑⠎" }, { "input": "encircling", "output": "⠢⠉⠊⠗⠉⠇⠬" }, { "input": "enclave", "output": "⠢⠉⠇â â §â ‘" }, { "input": "enclaves", "output": "⠢⠉⠇â â §â ‘â Ž" }, { "input": "enclose", "output": "⠢⠉⠇⠕⠎⠑" }, { "input": "enclosed", "output": "⠢⠉⠇⠕⠎⠫" }, { "input": "encloses", "output": "⠢⠉⠇⠕⠎⠑⠎" }, { "input": "enclosing", "output": "⠢⠉⠇⠕⠎⠬" }, { "input": "enclosure", "output": "⠢⠉⠇⠕⠎⠥⠗⠑" }, { "input": "enclosures", "output": "⠢⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "encode", "output": "⠢⠉⠕⠙⠑" }, { "input": "encoded", "output": "⠢⠉⠕⠙⠫" }, { "input": "encoder", "output": "⠢⠉⠕⠙⠻" }, { "input": "encoders", "output": "⠢⠉⠕⠙⠻⠎" }, { "input": "encodes", "output": "⠢⠉⠕⠙⠑⠎" }, { "input": "encoding", "output": "⠢⠉⠕⠙⠬" }, { "input": "encompass", "output": "⠢⠉⠕â â â â Žâ Ž" }, { "input": "encompassed", "output": "⠢⠉⠕â â â â Žâ Žâ «" }, { "input": "encompasses", "output": "⠢⠉⠕â â â â Žâ Žâ ‘â Ž" }, { "input": "encompassing", "output": "⠢⠉⠕â â â â Žâ Žâ ¬" }, { "input": "encore", "output": "⠢⠉⠕⠗⠑" }, { "input": "encored", "output": "⠢⠉⠕⠗⠫" }, { "input": "encores", "output": "⠢⠉⠕⠗⠑⠎" }, { "input": "encoring", "output": "⠢⠉⠕⠗⠬" }, { "input": "encounter", "output": "⠢⠉⠨⠞⠻" }, { "input": "encountered", "output": "⠢⠉⠨⠞⠻⠫" }, { "input": "encountering", "output": "⠢⠉⠨⠞⠻⠬" }, { "input": "encounters", "output": "⠢⠉⠨⠞⠻⠎" }, { "input": "encourage", "output": "⠢⠉⠳⠗â â ›â ‘" }, { "input": "encouraged", "output": "⠢⠉⠳⠗â â ›â «" }, { "input": "encouragement", "output": "⠢⠉⠳⠗â â ›â ‘â °â ž" }, { "input": "encouragements", "output": "⠢⠉⠳⠗â â ›â ‘â °â žâ Ž" }, { "input": "encourages", "output": "⠢⠉⠳⠗â â ›â ‘â Ž" }, { "input": "encouraging", "output": "⠢⠉⠳⠗â â ›â ¬" }, { "input": "encouragingly", "output": "⠢⠉⠳⠗â â ›â ¬â ‡â ½" }, { "input": "encroach", "output": "⠢⠉⠗⠕â â ¡" }, { "input": "encroached", "output": "⠢⠉⠗⠕â â ¡â «" }, { "input": "encroaches", "output": "⠢⠉⠗⠕â â ¡â ‘â Ž" }, { "input": "encroaching", "output": "⠢⠉⠗⠕â â ¡â ¬" }, { "input": "encroachment", "output": "⠢⠉⠗⠕â â ¡â °â ž" }, { "input": "encroachments", "output": "⠢⠉⠗⠕â â ¡â °â žâ Ž" }, { "input": "encrust", "output": "⠢⠉⠗⠥⠌" }, { "input": "encrustation", "output": "⠢⠉⠗⠥⠌â â °â " }, { "input": "encrustations", "output": "⠢⠉⠗⠥⠌â â °â â Ž" }, { "input": "encrusted", "output": "⠢⠉⠗⠥⠌⠫" }, { "input": "encrusting", "output": "⠢⠉⠗⠥⠌⠬" }, { "input": "encrusts", "output": "⠢⠉⠗⠥⠌⠎" }, { "input": "encrypt", "output": "⠢⠉⠗⠽â â ž" }, { "input": "encrypted", "output": "⠢⠉⠗⠽â â žâ «" }, { "input": "encryption", "output": "⠢⠉⠗⠽â â °â " }, { "input": "encrypts", "output": "⠢⠉⠗⠽â â žâ Ž" }, { "input": "encumber", "output": "⠢⠉⠥â â ƒâ »" }, { "input": "encumbered", "output": "⠢⠉⠥â â ƒâ »â «" }, { "input": "encumbering", "output": "⠢⠉⠥â â ƒâ »â ¬" }, { "input": "encumbers", "output": "⠢⠉⠥â â ƒâ »â Ž" }, { "input": "encumbrance", "output": "⠢⠉⠥â â ƒâ —⠨⠑" }, { "input": "encumbrances", "output": "⠢⠉⠥â â ƒâ —⠨⠑⠎" }, { "input": "encyclical", "output": "⠢⠉⠽⠉⠇⠊⠉â â ‡" }, { "input": "encyclicals", "output": "⠢⠉⠽⠉⠇⠊⠉â â ‡â Ž" }, { "input": "encyclopaedia", "output": "⠢⠉⠽⠉⠇⠕â â â «â Šâ " }, { "input": "encyclopaedias", "output": "⠢⠉⠽⠉⠇⠕â â â «â Šâ â Ž" }, { "input": "encyclopedia", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ " }, { "input": "encyclopedias", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ â Ž" }, { "input": "encyclopedic", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ ‰" }, { "input": "end", "output": "⠢⠙" }, { "input": "endanger", "output": "⠢⠙â â â ›â »" }, { "input": "endangered", "output": "⠢⠙â â â ›â »â «" }, { "input": "endangering", "output": "⠢⠙â â â ›â »â ¬" }, { "input": "endangers", "output": "⠢⠙â â â ›â »â Ž" }, { "input": "endear", "output": "⠢⠙⠑⠜" }, { "input": "endeared", "output": "⠢⠙⠑⠜⠫" }, { "input": "endearing", "output": "⠢⠙⠑⠜⠬" }, { "input": "endearingly", "output": "⠢⠙⠑⠜⠬⠇⠽" }, { "input": "endearment", "output": "⠢⠙⠑⠜⠰⠞" }, { "input": "endearments", "output": "⠢⠙⠑⠜⠰⠞⠎" }, { "input": "endears", "output": "⠢⠙⠑⠜⠎" }, { "input": "endeavor", "output": "⠢⠙⠂⠧⠕⠗" }, { "input": "endeavored", "output": "⠢⠙⠂⠧⠕⠗⠫" }, { "input": "endeavoring", "output": "⠢⠙⠂⠧⠕⠗⠬" }, { "input": "endeavors", "output": "⠢⠙⠂⠧⠕⠗⠎" }, { "input": "ended", "output": "⠢⠙⠫" }, { "input": "endemic", "output": "⠢⠙⠑â â Šâ ‰" }, { "input": "endemics", "output": "⠢⠙⠑â â Šâ ‰â Ž" }, { "input": "ending", "output": "⠢⠙⠬" }, { "input": "endings", "output": "⠢⠙⠬⠎" }, { "input": "endive", "output": "⠢⠙⠊⠧⠑" }, { "input": "endives", "output": "⠢⠙⠊⠧⠑⠎" }, { "input": "endless", "output": "⠢⠙⠨⠎" }, { "input": "endlessly", "output": "⠢⠙⠨⠎⠇⠽" }, { "input": "endlessness", "output": "⠢⠙⠨⠎⠰⠎" }, { "input": "endocrine", "output": "⠢⠙⠕⠉⠗⠔⠑" }, { "input": "endocrines", "output": "⠢⠙⠕⠉⠗⠔⠑⠎" }, { "input": "endorse", "output": "⠢⠙⠕⠗⠎⠑" }, { "input": "endorsed", "output": "⠢⠙⠕⠗⠎⠫" }, { "input": "endorsement", "output": "⠢⠙⠕⠗⠎⠑⠰⠞" }, { "input": "endorsements", "output": "⠢⠙⠕⠗⠎⠑⠰⠞⠎" }, { "input": "endorser", "output": "⠢⠙⠕⠗⠎⠻" }, { "input": "endorsers", "output": "⠢⠙⠕⠗⠎⠻⠎" }, { "input": "endorses", "output": "⠢⠙⠕⠗⠎⠑⠎" }, { "input": "endorsing", "output": "⠢⠙⠕⠗⠎⠬" }, { "input": "endow", "output": "⠢⠙⠪" }, { "input": "endowed", "output": "⠢⠙⠪⠫" }, { "input": "endowing", "output": "⠢⠙⠪⠬" }, { "input": "endowment", "output": "⠢⠙⠪⠰⠞" }, { "input": "endowments", "output": "⠢⠙⠪⠰⠞⠎" }, { "input": "endows", "output": "⠢⠙⠪⠎" }, { "input": "ends", "output": "⠢⠙⠎" }, { "input": "endue", "output": "⠢⠙⠥⠑" }, { "input": "endued", "output": "⠢⠙⠥⠫" }, { "input": "endues", "output": "⠢⠙⠥⠑⠎" }, { "input": "enduing", "output": "⠢⠙⠥⠬" }, { "input": "endurable", "output": "⠢⠙⠥⠗â â ƒâ ‡â ‘" }, { "input": "endurance", "output": "⠢⠙⠥⠗⠨⠑" }, { "input": "endure", "output": "⠢⠙⠥⠗⠑" }, { "input": "endured", "output": "⠢⠙⠥⠗⠫" }, { "input": "endures", "output": "⠢⠙⠥⠗⠑⠎" }, { "input": "enduring", "output": "⠢⠙⠥⠗⠬" }, { "input": "endways", "output": "⠢⠙⠺â â ½â Ž" }, { "input": "endwise", "output": "⠢⠙⠺⠊⠎⠑" }, { "input": "enema", "output": "⠢⠑â â " }, { "input": "enemas", "output": "⠢⠑â â â Ž" }, { "input": "enemata", "output": "⠢⠑â â â žâ " }, { "input": "enemies", "output": "⠢⠑â â Šâ ‘â Ž" }, { "input": "enemy", "output": "⠢⠑â â ½" }, { "input": "energetic", "output": "⠢⠻⠛⠑⠞⠊⠉" }, { "input": "energetically", "output": "⠢⠻⠛⠑⠞⠊⠉â â ‡â ‡â ½" }, { "input": "energies", "output": "⠢⠻⠛⠊⠑⠎" }, { "input": "energize", "output": "⠢⠻⠛⠊⠵⠑" }, { "input": "energized", "output": "⠢⠻⠛⠊⠵⠫" }, { "input": "energizer", "output": "⠢⠻⠛⠊⠵⠻" }, { "input": "energizers", "output": "⠢⠻⠛⠊⠵⠻⠎" }, { "input": "energizes", "output": "⠢⠻⠛⠊⠵⠑⠎" }, { "input": "energizing", "output": "⠢⠻⠛⠊⠵⠬" }, { "input": "energy", "output": "⠢⠻⠛⠽" }, { "input": "enervate", "output": "⠢⠻⠧â â žâ ‘" }, { "input": "enervated", "output": "⠢⠻⠧â â žâ «" }, { "input": "enervates", "output": "⠢⠻⠧â â žâ ‘â Ž" }, { "input": "enervating", "output": "⠢⠻⠧â â žâ ¬" }, { "input": "enervation", "output": "⠢⠻⠧â â °â " }, { "input": "enfeeble", "output": "⠢⠋⠑⠑⠃⠇⠑" }, { "input": "enfeebled", "output": "⠢⠋⠑⠑⠃⠇⠫" }, { "input": "enfeebles", "output": "⠢⠋⠑⠑⠃⠇⠑⠎" }, { "input": "enfeebling", "output": "⠢⠋⠑⠑⠃⠇⠬" }, { "input": "enfold", "output": "⠢⠋⠕⠇⠙" }, { "input": "enfolded", "output": "⠢⠋⠕⠇⠙⠫" }, { "input": "enfolding", "output": "⠢⠋⠕⠇⠙⠬" }, { "input": "enfolds", "output": "⠢⠋⠕⠇⠙⠎" }, { "input": "enforce", "output": "⠢⠿⠉⠑" }, { "input": "enforceable", "output": "⠢⠿⠉⠂⠃⠇⠑" }, { "input": "enforced", "output": "⠢⠿⠉⠫" }, { "input": "enforcement", "output": "⠢⠿⠉⠑⠰⠞" }, { "input": "enforcer", "output": "⠢⠿⠉⠻" }, { "input": "enforcers", "output": "⠢⠿⠉⠻⠎" }, { "input": "enforces", "output": "⠢⠿⠉⠑⠎" }, { "input": "enforcing", "output": "⠢⠿⠉⠬" }, { "input": "enfranchise", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘" }, { "input": "enfranchised", "output": "⠢⠋⠗â â â ¡â Šâ Žâ «" }, { "input": "enfranchisement", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘â °â ž" }, { "input": "enfranchises", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "enfranchising", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ¬" }, { "input": "engage", "output": "⠢⠛â â ›â ‘" }, { "input": "engaged", "output": "⠢⠛â â ›â «" }, { "input": "engagement", "output": "⠢⠛â â ›â ‘â °â ž" }, { "input": "engagements", "output": "⠢⠛â â ›â ‘â °â žâ Ž" }, { "input": "engages", "output": "⠢⠛â â ›â ‘â Ž" }, { "input": "engaging", "output": "⠢⠛â â ›â ¬" }, { "input": "engagingly", "output": "⠢⠛â â ›â ¬â ‡â ½" }, { "input": "engender", "output": "⠢⠛⠢⠙⠻" }, { "input": "engendered", "output": "⠢⠛⠢⠙⠻⠫" }, { "input": "engendering", "output": "⠢⠛⠢⠙⠻⠬" }, { "input": "engenders", "output": "⠢⠛⠢⠙⠻⠎" }, { "input": "engine", "output": "⠢⠛⠔⠑" }, { "input": "engineer", "output": "⠢⠛⠔⠑⠻" }, { "input": "engineered", "output": "⠢⠛⠔⠑⠻⠫" }, { "input": "engineering", "output": "⠢⠛⠔⠑⠻⠬" }, { "input": "engineers", "output": "⠢⠛⠔⠑⠻⠎" }, { "input": "engines", "output": "⠢⠛⠔⠑⠎" }, { "input": "engorge", "output": "⠢⠛⠕⠗⠛⠑" }, { "input": "engorged", "output": "⠢⠛⠕⠗⠛⠫" }, { "input": "engorges", "output": "⠢⠛⠕⠗⠛⠑⠎" }, { "input": "engorging", "output": "⠢⠛⠕⠗⠛⠬" }, { "input": "engrave", "output": "⠢⠛⠗â â §â ‘" }, { "input": "engraved", "output": "⠢⠛⠗â â §â «" }, { "input": "engraver", "output": "⠢⠛⠗â â §â »" }, { "input": "engravers", "output": "⠢⠛⠗â â §â »â Ž" }, { "input": "engraves", "output": "⠢⠛⠗â â §â ‘â Ž" }, { "input": "engraving", "output": "⠢⠛⠗â â §â ¬" }, { "input": "engravings", "output": "⠢⠛⠗â â §â ¬â Ž" }, { "input": "engross", "output": "⠢⠛⠗⠕⠎⠎" }, { "input": "engrossed", "output": "⠢⠛⠗⠕⠎⠎⠫" }, { "input": "engrosses", "output": "⠢⠛⠗⠕⠎⠎⠑⠎" }, { "input": "engrossing", "output": "⠢⠛⠗⠕⠎⠎⠬" }, { "input": "engulf", "output": "⠢⠛⠥⠇⠋" }, { "input": "engulfed", "output": "⠢⠛⠥⠇⠋⠫" }, { "input": "engulfing", "output": "⠢⠛⠥⠇⠋⠬" }, { "input": "engulfs", "output": "⠢⠛⠥⠇⠋⠎" }, { "input": "enhance", "output": "⠢⠓⠨⠑" }, { "input": "enhanced", "output": "⠢⠓⠨⠑⠙" }, { "input": "enhancement", "output": "⠢⠓⠨⠑⠰⠞" }, { "input": "enhancements", "output": "⠢⠓⠨⠑⠰⠞⠎" }, { "input": "enhancer", "output": "⠢⠓⠨⠑⠗" }, { "input": "enhances", "output": "⠢⠓⠨⠑⠎" }, { "input": "enhancing", "output": "⠢⠓â â â ‰â ¬" }, { "input": "enigma", "output": "⠢⠊⠛â â " }, { "input": "enigmas", "output": "⠢⠊⠛â â â Ž" }, { "input": "enigmatic", "output": "⠢⠊⠛â â â žâ Šâ ‰" }, { "input": "enigmatically", "output": "⠢⠊⠛â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "enjoin", "output": "⠢⠚⠕⠔" }, { "input": "enjoined", "output": "⠢⠚⠕⠔⠫" }, { "input": "enjoining", "output": "⠢⠚⠕⠔⠬" }, { "input": "enjoins", "output": "⠢⠚⠕⠔⠎" }, { "input": "enjoy", "output": "⠢⠚⠕⠽" }, { "input": "enjoyable", "output": "⠢⠚⠕⠽â â ƒâ ‡â ‘" }, { "input": "enjoyed", "output": "⠢⠚⠕⠽⠫" }, { "input": "enjoying", "output": "⠢⠚⠕⠽⠬" }, { "input": "enjoyment", "output": "⠢⠚⠕⠽⠰⠞" }, { "input": "enjoyments", "output": "⠢⠚⠕⠽⠰⠞⠎" }, { "input": "enjoys", "output": "⠢⠚⠕⠽⠎" }, { "input": "enlarge", "output": "⠢⠇⠜⠛⠑" }, { "input": "enlarged", "output": "⠢⠇⠜⠛⠫" }, { "input": "enlargement", "output": "⠢⠇⠜⠛⠑⠰⠞" }, { "input": "enlargements", "output": "⠢⠇⠜⠛⠑⠰⠞⠎" }, { "input": "enlarger", "output": "⠢⠇⠜⠛⠻" }, { "input": "enlargers", "output": "⠢⠇⠜⠛⠻⠎" }, { "input": "enlarges", "output": "⠢⠇⠜⠛⠑⠎" }, { "input": "enlarging", "output": "⠢⠇⠜⠛⠬" }, { "input": "enlighten", "output": "⠢⠇⠊⠣⠞⠢" }, { "input": "enlightened", "output": "⠢⠇⠊⠣⠞⠢⠫" }, { "input": "enlightening", "output": "⠢⠇⠊⠣⠞⠢⠬" }, { "input": "enlightenment", "output": "⠢⠇⠊⠣⠞⠢⠰⠞" }, { "input": "enlightens", "output": "⠢⠇⠊⠣⠞⠢⠎" }, { "input": "enlist", "output": "⠢⠇⠊⠌" }, { "input": "enlisted", "output": "⠢⠇⠊⠌⠫" }, { "input": "enlistee", "output": "⠢⠇⠊⠌⠑⠑" }, { "input": "enlistees", "output": "⠢⠇⠊⠌⠑⠑⠎" }, { "input": "enlisting", "output": "⠢⠇⠊⠌⠬" }, { "input": "enlistment", "output": "⠢⠇⠊⠌⠰⠞" }, { "input": "enlistments", "output": "⠢⠇⠊⠌⠰⠞⠎" }, { "input": "enlists", "output": "⠢⠇⠊⠌⠎" }, { "input": "enliven", "output": "⠢⠇⠊⠧⠢" }, { "input": "enlivened", "output": "⠢⠇⠊⠧⠢⠫" }, { "input": "enlivening", "output": "⠢⠇⠊⠧⠢⠬" }, { "input": "enlivens", "output": "⠢⠇⠊⠧⠢⠎" }, { "input": "enmesh", "output": "â ¢â â ‘â ©" }, { "input": "enmeshed", "output": "â ¢â â ‘â ©â «" }, { "input": "enmeshes", "output": "â ¢â â ‘â ©â ‘â Ž" }, { "input": "enmeshing", "output": "â ¢â â ‘â ©â ¬" }, { "input": "enmities", "output": "â ¢â â Šâ žâ Šâ ‘â Ž" }, { "input": "enmity", "output": "â ¢â â °â ½" }, { "input": "ennoble", "output": "â ¢â â •⠃⠇⠑" }, { "input": "ennobled", "output": "â ¢â â •⠃⠇⠫" }, { "input": "ennoblement", "output": "â ¢â â •⠃⠇⠑⠰⠞" }, { "input": "ennobles", "output": "â ¢â â •⠃⠇⠑⠎" }, { "input": "ennobling", "output": "â ¢â â •⠃⠇⠬" }, { "input": "ennui", "output": "â ¢â â ¥â Š" }, { "input": "enormities", "output": "⠢⠕⠗â â Šâ žâ Šâ ‘â Ž" }, { "input": "enormity", "output": "⠢⠕⠗â â °â ½" }, { "input": "enormous", "output": "⠢⠕⠗â â ³â Ž" }, { "input": "enormously", "output": "⠢⠕⠗â â ³â Žâ ‡â ½" }, { "input": "enormousness", "output": "⠢⠕⠗â â ³â Žâ °â Ž" }, { "input": "enough", "output": "â ¢" }, { "input": "enquire", "output": "⠢⠟⠥⠊⠗⠑" }, { "input": "enquired", "output": "⠢⠟⠥⠊⠗⠫" }, { "input": "enquires", "output": "⠢⠟⠥⠊⠗⠑⠎" }, { "input": "enquiries", "output": "⠢⠟⠥⠊⠗⠊⠑⠎" }, { "input": "enquiring", "output": "⠢⠟⠥⠊⠗⠬" }, { "input": "enquiry", "output": "⠢⠟⠥⠊⠗⠽" }, { "input": "enrage", "output": "⠢⠗â â ›â ‘" }, { "input": "enraged", "output": "⠢⠗â â ›â «" }, { "input": "enrages", "output": "⠢⠗â â ›â ‘â Ž" }, { "input": "enraging", "output": "⠢⠗â â ›â ¬" }, { "input": "enrapture", "output": "⠢⠗â â â žâ ¥â —â ‘" }, { "input": "enraptured", "output": "⠢⠗â â â žâ ¥â —â «" }, { "input": "enraptures", "output": "⠢⠗â â â žâ ¥â —â ‘â Ž" }, { "input": "enrapturing", "output": "⠢⠗â â â žâ ¥â —â ¬" }, { "input": "enrich", "output": "⠢⠗⠊⠡" }, { "input": "enriched", "output": "⠢⠗⠊⠡⠫" }, { "input": "enriches", "output": "⠢⠗⠊⠡⠑⠎" }, { "input": "enriching", "output": "⠢⠗⠊⠡⠬" }, { "input": "enrichment", "output": "⠢⠗⠊⠡⠰⠞" }, { "input": "enrol", "output": "⠢⠗⠕⠇" }, { "input": "enroll", "output": "⠢⠗⠕⠇⠇" }, { "input": "enrolled", "output": "⠢⠗⠕⠇⠇⠫" }, { "input": "enrolling", "output": "⠢⠗⠕⠇⠇⠬" }, { "input": "enrollment", "output": "⠢⠗⠕⠇⠇⠰⠞" }, { "input": "enrollments", "output": "⠢⠗⠕⠇⠇⠰⠞⠎" }, { "input": "enrolls", "output": "⠢⠗⠕⠇⠇⠎" }, { "input": "enrolment", "output": "⠢⠗⠕⠇⠰⠞" }, { "input": "enrolments", "output": "⠢⠗⠕⠇⠰⠞⠎" }, { "input": "enrols", "output": "⠢⠗⠕⠇⠎" }, { "input": "ensconce", "output": "⠢⠎⠉⠕â â ‰â ‘" }, { "input": "ensconced", "output": "⠢⠎⠉⠕â â ‰â «" }, { "input": "ensconces", "output": "⠢⠎⠉⠕â â ‰â ‘â Ž" }, { "input": "ensconcing", "output": "⠢⠎⠉⠕â â ‰â ¬" }, { "input": "ensemble", "output": "⠢⠎⠑â â ƒâ ‡â ‘" }, { "input": "ensembles", "output": "⠢⠎⠑â â ƒâ ‡â ‘â Ž" }, { "input": "enshrine", "output": "⠢⠩⠗⠔⠑" }, { "input": "enshrined", "output": "⠢⠩⠗⠔⠫" }, { "input": "enshrines", "output": "⠢⠩⠗⠔⠑⠎" }, { "input": "enshrining", "output": "⠢⠩⠗⠔⠬" }, { "input": "enshroud", "output": "⠢⠩⠗⠳⠙" }, { "input": "enshrouded", "output": "⠢⠩⠗⠳⠙⠫" }, { "input": "enshrouding", "output": "⠢⠩⠗⠳⠙⠬" }, { "input": "enshrouds", "output": "⠢⠩⠗⠳⠙⠎" }, { "input": "ensign", "output": "⠢⠎⠊⠛â " }, { "input": "ensigns", "output": "⠢⠎⠊⠛â â Ž" }, { "input": "enslave", "output": "⠢⠎⠇â â §â ‘" }, { "input": "enslaved", "output": "⠢⠎⠇â â §â «" }, { "input": "enslavement", "output": "⠢⠎⠇â â §â ‘â °â ž" }, { "input": "enslaves", "output": "⠢⠎⠇â â §â ‘â Ž" }, { "input": "enslaving", "output": "⠢⠎⠇â â §â ¬" }, { "input": "ensnare", "output": "⠢⠎â â œâ ‘" }, { "input": "ensnared", "output": "⠢⠎â â œâ «" }, { "input": "ensnares", "output": "⠢⠎â â œâ ‘â Ž" }, { "input": "ensnaring", "output": "⠢⠎â â œâ ¬" }, { "input": "ensue", "output": "⠢⠎⠥⠑" }, { "input": "ensued", "output": "⠢⠎⠥⠫" }, { "input": "ensues", "output": "⠢⠎⠥⠑⠎" }, { "input": "ensuing", "output": "⠢⠎⠥⠬" }, { "input": "ensure", "output": "⠢⠎⠥⠗⠑" }, { "input": "ensured", "output": "⠢⠎⠥⠗⠫" }, { "input": "ensures", "output": "⠢⠎⠥⠗⠑⠎" }, { "input": "ensuring", "output": "⠢⠎⠥⠗⠬" }, { "input": "entail", "output": "⠢⠞â â Šâ ‡" }, { "input": "entailed", "output": "⠢⠞â â Šâ ‡â «" }, { "input": "entailing", "output": "⠢⠞â â Šâ ‡â ¬" }, { "input": "entails", "output": "⠢⠞â â Šâ ‡â Ž" }, { "input": "entangle", "output": "⠢⠞â â â ›â ‡â ‘" }, { "input": "entangled", "output": "⠢⠞â â â ›â ‡â «" }, { "input": "entanglement", "output": "⠢⠞â â â ›â ‡â ‘â °â ž" }, { "input": "entanglements", "output": "⠢⠞â â â ›â ‡â ‘â °â žâ Ž" }, { "input": "entangles", "output": "⠢⠞â â â ›â ‡â ‘â Ž" }, { "input": "entangling", "output": "⠢⠞â â â ›â ‡â ¬" }, { "input": "entente", "output": "⠢⠞⠢⠞⠑" }, { "input": "ententes", "output": "⠢⠞⠢⠞⠑⠎" }, { "input": "enter", "output": "⠢⠞⠻" }, { "input": "entered", "output": "⠢⠞⠻⠫" }, { "input": "entering", "output": "⠢⠞⠻⠬" }, { "input": "enterprise", "output": "⠢⠞⠻â â —â Šâ Žâ ‘" }, { "input": "enterprises", "output": "⠢⠞⠻â â —â Šâ Žâ ‘â Ž" }, { "input": "enterprising", "output": "⠢⠞⠻â â —â Šâ Žâ ¬" }, { "input": "enters", "output": "⠢⠞⠻⠎" }, { "input": "entertain", "output": "⠢⠞⠻⠞â â ”" }, { "input": "entertained", "output": "⠢⠞⠻⠞â â ”â «" }, { "input": "entertainer", "output": "⠢⠞⠻⠞â â ”â »" }, { "input": "entertainers", "output": "⠢⠞⠻⠞â â ”⠻⠎" }, { "input": "entertaining", "output": "⠢⠞⠻⠞â â ”â ¬" }, { "input": "entertainingly", "output": "⠢⠞⠻⠞â â ”⠬⠇⠽" }, { "input": "entertainment", "output": "⠢⠞⠻⠞â â ”â °â ž" }, { "input": "entertainments", "output": "⠢⠞⠻⠞â â ”â °â žâ Ž" }, { "input": "entertains", "output": "⠢⠞⠻⠞â â ”â Ž" }, { "input": "enthral", "output": "⠢⠹⠗â â ‡" }, { "input": "enthrall", "output": "⠢⠹⠗â â ‡â ‡" }, { "input": "enthralled", "output": "⠢⠹⠗â â ‡â ‡â «" }, { "input": "enthralling", "output": "⠢⠹⠗â â ‡â ‡â ¬" }, { "input": "enthralls", "output": "⠢⠹⠗â â ‡â ‡â Ž" }, { "input": "enthrals", "output": "⠢⠹⠗â â ‡â Ž" }, { "input": "enthrone", "output": "⠢⠹⠗â â •" }, { "input": "enthroned", "output": "⠢⠹⠗⠕â â «" }, { "input": "enthronement", "output": "⠢⠹⠗â â •â °â ž" }, { "input": "enthronements", "output": "⠢⠹⠗â â •â °â žâ Ž" }, { "input": "enthrones", "output": "⠢⠹⠗â â •â Ž" }, { "input": "enthroning", "output": "⠢⠹⠗⠕â â ¬" }, { "input": "enthuse", "output": "⠢⠹⠥⠎⠑" }, { "input": "enthused", "output": "⠢⠹⠥⠎⠫" }, { "input": "enthuses", "output": "⠢⠹⠥⠎⠑⠎" }, { "input": "enthusiasm", "output": "⠢⠹⠥⠎⠊â â Žâ " }, { "input": "enthusiasms", "output": "⠢⠹⠥⠎⠊â â Žâ â Ž" }, { "input": "enthusiast", "output": "⠢⠹⠥⠎⠊â â Œ" }, { "input": "enthusiastic", "output": "⠢⠹⠥⠎⠊â â Œâ Šâ ‰" }, { "input": "enthusiastically", "output": "⠢⠹⠥⠎⠊â â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "enthusiasts", "output": "⠢⠹⠥⠎⠊â â Œâ Ž" }, { "input": "enthusing", "output": "⠢⠹⠥⠎⠬" }, { "input": "entice", "output": "⠢⠞⠊⠉⠑" }, { "input": "enticed", "output": "⠢⠞⠊⠉⠫" }, { "input": "enticement", "output": "⠢⠞⠊⠉⠑⠰⠞" }, { "input": "enticements", "output": "⠢⠞⠊⠉⠑⠰⠞⠎" }, { "input": "entices", "output": "⠢⠞⠊⠉⠑⠎" }, { "input": "enticing", "output": "⠢⠞⠊⠉⠬" }, { "input": "entire", "output": "⠢⠞⠊⠗⠑" }, { "input": "entirely", "output": "⠢⠞⠊⠗⠑⠇⠽" }, { "input": "entirety", "output": "⠢⠞⠊⠗⠑⠞⠽" }, { "input": "entities", "output": "⠢⠞⠊⠞⠊⠑⠎" }, { "input": "entitle", "output": "⠢⠞⠊⠞⠇⠑" }, { "input": "entitled", "output": "⠢⠞⠊⠞⠇⠫" }, { "input": "entitlement", "output": "⠢⠞⠊⠞⠇⠑⠰⠞" }, { "input": "entitlements", "output": "⠢⠞⠊⠞⠇⠑⠰⠞⠎" }, { "input": "entitles", "output": "⠢⠞⠊⠞⠇⠑⠎" }, { "input": "entitling", "output": "⠢⠞⠊⠞⠇⠬" }, { "input": "entity", "output": "⠢⠞⠰⠽" }, { "input": "entomb", "output": "⠢⠞⠕â â ƒ" }, { "input": "entombed", "output": "⠢⠞⠕â â ƒâ «" }, { "input": "entombing", "output": "⠢⠞⠕â â ƒâ ¬" }, { "input": "entombment", "output": "⠢⠞⠕â â ƒâ °â ž" }, { "input": "entombs", "output": "⠢⠞⠕â â ƒâ Ž" }, { "input": "entomological", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "entomologist", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠌" }, { "input": "entomologists", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠌⠎" }, { "input": "entomology", "output": "⠢⠞⠕â â •⠇⠕⠛⠽" }, { "input": "entourage", "output": "⠢⠞⠳⠗â â ›â ‘" }, { "input": "entourages", "output": "⠢⠞⠳⠗â â ›â ‘â Ž" }, { "input": "entrails", "output": "⠢⠞⠗â â Šâ ‡â Ž" }, { "input": "entrance", "output": "⠢⠞⠗⠨⠑" }, { "input": "entranced", "output": "⠢⠞⠗⠨⠑⠙" }, { "input": "entrances", "output": "⠢⠞⠗⠨⠑⠎" }, { "input": "entrancing", "output": "⠢⠞⠗â â â ‰â ¬" }, { "input": "entrant", "output": "⠢⠞⠗â â â ž" }, { "input": "entrants", "output": "⠢⠞⠗â â â žâ Ž" }, { "input": "entrap", "output": "⠢⠞⠗â â " }, { "input": "entrapment", "output": "⠢⠞⠗â â â °â ž" }, { "input": "entrapped", "output": "⠢⠞⠗â â â â «" }, { "input": "entrapping", "output": "⠢⠞⠗â â â â ¬" }, { "input": "entraps", "output": "⠢⠞⠗â â â Ž" }, { "input": "entreat", "output": "⠢⠞⠗⠂⠞" }, { "input": "entreated", "output": "⠢⠞⠗⠂⠞⠫" }, { "input": "entreaties", "output": "⠢⠞⠗⠂⠞⠊⠑⠎" }, { "input": "entreating", "output": "⠢⠞⠗⠂⠞⠬" }, { "input": "entreats", "output": "⠢⠞⠗⠂⠞⠎" }, { "input": "entreaty", "output": "⠢⠞⠗⠂⠞⠽" }, { "input": "entrench", "output": "⠢⠞⠗⠢⠡" }, { "input": "entrenched", "output": "⠢⠞⠗⠢⠡⠫" }, { "input": "entrenches", "output": "⠢⠞⠗⠢⠡⠑⠎" }, { "input": "entrenching", "output": "⠢⠞⠗⠢⠡⠬" }, { "input": "entrenchment", "output": "⠢⠞⠗⠢⠡⠰⠞" }, { "input": "entrenchments", "output": "⠢⠞⠗⠢⠡⠰⠞⠎" }, { "input": "entrepreneur", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗" }, { "input": "entrepreneurial", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗⠊â â ‡" }, { "input": "entrepreneurs", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗⠎" }, { "input": "entries", "output": "⠢⠞⠗⠊⠑⠎" }, { "input": "entropy", "output": "⠢⠞⠗⠕â â ½" }, { "input": "entrust", "output": "⠢⠞⠗⠥⠌" }, { "input": "entrusted", "output": "⠢⠞⠗⠥⠌⠫" }, { "input": "entrusting", "output": "⠢⠞⠗⠥⠌⠬" }, { "input": "entrusts", "output": "⠢⠞⠗⠥⠌⠎" }, { "input": "entry", "output": "⠢⠞⠗⠽" }, { "input": "entryway", "output": "⠢⠞⠗⠽⠺â â ½" }, { "input": "entryways", "output": "⠢⠞⠗⠽⠺â â ½â Ž" }, { "input": "entrée", "output": "⠢⠞⠗⠠⠘⠻â â ˜â ‰â ‘" }, { "input": "entrées", "output": "⠢⠞⠗⠠⠘⠻â â ˜â ‰â ‘â Ž" }, { "input": "entwine", "output": "⠢⠞⠺⠔⠑" }, { "input": "entwined", "output": "⠢⠞⠺⠔⠫" }, { "input": "entwines", "output": "⠢⠞⠺⠔⠑⠎" }, { "input": "entwining", "output": "⠢⠞⠺⠔⠬" }, { "input": "enumerable", "output": "⠢⠥â â »â â ƒâ ‡â ‘" }, { "input": "enumerate", "output": "⠢⠥â â »â â žâ ‘" }, { "input": "enumerated", "output": "⠢⠥â â »â â žâ «" }, { "input": "enumerates", "output": "⠢⠥â â »â â žâ ‘â Ž" }, { "input": "enumerating", "output": "⠢⠥â â »â â žâ ¬" }, { "input": "enumeration", "output": "⠢⠥â â »â â °â " }, { "input": "enumerations", "output": "⠢⠥â â »â â °â â Ž" }, { "input": "enunciate", "output": "⠢⠥â â ‰â Šâ â žâ ‘" }, { "input": "enunciated", "output": "⠢⠥â â ‰â Šâ â žâ «" }, { "input": "enunciates", "output": "⠢⠥â â ‰â Šâ â žâ ‘â Ž" }, { "input": "enunciating", "output": "⠢⠥â â ‰â Šâ â žâ ¬" }, { "input": "enunciation", "output": "⠢⠥â â ‰â Šâ â °â " }, { "input": "enure", "output": "⠢⠥⠗⠑" }, { "input": "enured", "output": "⠢⠥⠗⠫" }, { "input": "enures", "output": "⠢⠥⠗⠑⠎" }, { "input": "enuring", "output": "⠢⠥⠗⠬" }, { "input": "envelop", "output": "⠢⠧⠑⠇⠕â " }, { "input": "envelope", "output": "⠢⠧⠑⠇⠕â â ‘" }, { "input": "enveloped", "output": "⠢⠧⠑⠇⠕â â «" }, { "input": "envelopes", "output": "⠢⠧⠑⠇⠕â â ‘â Ž" }, { "input": "enveloping", "output": "⠢⠧⠑⠇⠕â â ¬" }, { "input": "envelopment", "output": "⠢⠧⠑⠇⠕â â °â ž" }, { "input": "envelops", "output": "⠢⠧⠑⠇⠕â â Ž" }, { "input": "enviable", "output": "⠢⠧⠊â â ƒâ ‡â ‘" }, { "input": "enviably", "output": "⠢⠧⠊â â ƒâ ‡â ½" }, { "input": "envied", "output": "⠢⠧⠊⠫" }, { "input": "envies", "output": "⠢⠧⠊⠑⠎" }, { "input": "envious", "output": "⠢⠧⠊⠳⠎" }, { "input": "enviously", "output": "⠢⠧⠊⠳⠎⠇⠽" }, { "input": "enviousness", "output": "⠢⠧⠊⠳⠎⠰⠎" }, { "input": "environment", "output": "⠢⠧⠊⠗⠕â â °â ž" }, { "input": "environmental", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡" }, { "input": "environmentalism", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Žâ " }, { "input": "environmentalist", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Œ" }, { "input": "environmentalists", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Œâ Ž" }, { "input": "environmentally", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â ‡â ½" }, { "input": "environments", "output": "⠢⠧⠊⠗⠕â â °â žâ Ž" }, { "input": "environs", "output": "⠢⠧⠊⠗⠕â â Ž" }, { "input": "envisage", "output": "⠢⠧⠊⠎â â ›â ‘" }, { "input": "envisaged", "output": "⠢⠧⠊⠎â â ›â «" }, { "input": "envisages", "output": "⠢⠧⠊⠎â â ›â ‘â Ž" }, { "input": "envisaging", "output": "⠢⠧⠊⠎â â ›â ¬" }, { "input": "envision", "output": "⠢⠧⠊⠨â " }, { "input": "envisioned", "output": "⠢⠧⠊⠨â â «" }, { "input": "envisioning", "output": "⠢⠧⠊⠨â â ¬" }, { "input": "envisions", "output": "⠢⠧⠊⠨â â Ž" }, { "input": "envoy", "output": "⠢⠧⠕⠽" }, { "input": "envoys", "output": "⠢⠧⠕⠽⠎" }, { "input": "envy", "output": "⠢⠧⠽" }, { "input": "envying", "output": "⠢⠧⠽⠬" }, { "input": "enzyme", "output": "⠢⠵⠽â â ‘" }, { "input": "enzymes", "output": "⠢⠵⠽â â ‘â Ž" }, { "input": "eon", "output": "â ‘â •â " }, { "input": "eons", "output": "â ‘â •â â Ž" }, { "input": "epaulet", "output": "â ‘â â â ¥â ‡â ‘â ž" }, { "input": "epaulets", "output": "â ‘â â â ¥â ‡â ‘â žâ Ž" }, { "input": "epaulette", "output": "â ‘â â â ¥â ‡â ‘â žâ žâ ‘" }, { "input": "epaulettes", "output": "â ‘â â â ¥â ‡â ‘â žâ žâ ‘â Ž" }, { "input": "ephemeral", "output": "â ‘â â “â ‘â â »â â ‡" }, { "input": "epic", "output": "â ‘â â Šâ ‰" }, { "input": "epicenter", "output": "â ‘â â Šâ ‰â ¢â žâ »" }, { "input": "epicenters", "output": "â ‘â â Šâ ‰â ¢â žâ »â Ž" }, { "input": "epics", "output": "â ‘â â Šâ ‰â Ž" }, { "input": "epicure", "output": "â ‘â â Šâ ‰â ¥â —â ‘" }, { "input": "epicurean", "output": "â ‘â â Šâ ‰â ¥â —â ‚â " }, { "input": "epicureans", "output": "â ‘â â Šâ ‰â ¥â —â ‚â â Ž" }, { "input": "epicures", "output": "â ‘â â Šâ ‰â ¥â —â ‘â Ž" }, { "input": "epidemic", "output": "â ‘â â Šâ ™â ‘â â Šâ ‰" }, { "input": "epidemics", "output": "â ‘â â Šâ ™â ‘â â Šâ ‰â Ž" }, { "input": "epidemiology", "output": "â ‘â â Šâ ™â ‘â â Šâ •⠇⠕⠛⠽" }, { "input": "epidermal", "output": "â ‘â â Šâ ™â »â â â ‡" }, { "input": "epidermis", "output": "â ‘â â Šâ ™â »â â Šâ Ž" }, { "input": "epidermises", "output": "â ‘â â Šâ ™â »â â Šâ Žâ ‘â Ž" }, { "input": "epiglottides", "output": "â ‘â â Šâ ›â ‡â •⠞⠞⠊⠙⠑⠎" }, { "input": "epiglottis", "output": "â ‘â â Šâ ›â ‡â •â žâ žâ Šâ Ž" }, { "input": "epiglottises", "output": "â ‘â â Šâ ›â ‡â •â žâ žâ Šâ Žâ ‘â Ž" }, { "input": "epigram", "output": "â ‘â â Šâ ›â —â â " }, { "input": "epigrammatic", "output": "â ‘â â Šâ ›â —â â â â â žâ Šâ ‰" }, { "input": "epigrams", "output": "â ‘â â Šâ ›â —â â â Ž" }, { "input": "epilepsy", "output": "â ‘â â Šâ ‡â ‘â â Žâ ½" }, { "input": "epileptic", "output": "â ‘â â Šâ ‡â ‘â â žâ Šâ ‰" }, { "input": "epileptics", "output": "â ‘â â Šâ ‡â ‘â â žâ Šâ ‰â Ž" }, { "input": "epilog", "output": "â ‘â â Šâ ‡â •â ›" }, { "input": "epilogs", "output": "â ‘â â Šâ ‡â •⠛⠎" }, { "input": "epilogue", "output": "â ‘â â Šâ ‡â •⠛⠥⠑" }, { "input": "epilogues", "output": "â ‘â â Šâ ‡â •⠛⠥⠑⠎" }, { "input": "episcopacy", "output": "â ‘â â Šâ Žâ ‰â •â â â ‰â ½" }, { "input": "episcopal", "output": "â ‘â â Šâ Žâ ‰â •â â â ‡" }, { "input": "episcopate", "output": "â ‘â â Šâ Žâ ‰â •â â â žâ ‘" }, { "input": "episode", "output": "â ‘â â Šâ Žâ •⠙⠑" }, { "input": "episodes", "output": "â ‘â â Šâ Žâ •⠙⠑⠎" }, { "input": "episodic", "output": "â ‘â â Šâ Žâ •⠙⠊⠉" }, { "input": "epistemology", "output": "â ‘â â Šâ Œâ ‘â â •⠇⠕⠛⠽" }, { "input": "epistle", "output": "â ‘â â Šâ Œâ ‡â ‘" }, { "input": "epistles", "output": "â ‘â â Šâ Œâ ‡â ‘â Ž" }, { "input": "epistolary", "output": "â ‘â â Šâ Œâ •⠇⠜⠽" }, { "input": "epitaph", "output": "â ‘â â Šâ žâ â â “" }, { "input": "epitaphs", "output": "â ‘â â Šâ žâ â â “â Ž" }, { "input": "epithet", "output": "â ‘â â Šâ ®â ž" }, { "input": "epithets", "output": "â ‘â â Šâ ®â žâ Ž" }, { "input": "epitome", "output": "â ‘â â Šâ žâ •â â ‘" }, { "input": "epitomes", "output": "â ‘â â Šâ žâ •â â ‘â Ž" }, { "input": "epitomize", "output": "â ‘â â Šâ žâ •â â Šâ µâ ‘" }, { "input": "epitomized", "output": "â ‘â â Šâ žâ •â â Šâ µâ «" }, { "input": "epitomizes", "output": "â ‘â â Šâ žâ •â â Šâ µâ ‘â Ž" }, { "input": "epitomizing", "output": "â ‘â â Šâ žâ •â â Šâ µâ ¬" }, { "input": "epoch", "output": "â ‘â â •â ¡" }, { "input": "epochal", "output": "â ‘â â •â ¡â â ‡" }, { "input": "epochs", "output": "â ‘â â •â ¡â Ž" }, { "input": "epoxied", "output": "â ‘â â •â ­â Šâ «" }, { "input": "epoxies", "output": "â ‘â â •â ­â Šâ ‘â Ž" }, { "input": "epoxy", "output": "â ‘â â •â ­â ½" }, { "input": "epoxyed", "output": "â ‘â â •⠭⠽⠫" }, { "input": "epoxying", "output": "â ‘â â •⠭⠽⠬" }, { "input": "epsilon", "output": "â ‘â â Žâ Šâ ‡â •â " }, { "input": "equability", "output": "â ‘â Ÿâ ¥â â ƒâ Šâ ‡â °â ½" }, { "input": "equable", "output": "â ‘â Ÿâ ¥â â ƒâ ‡â ‘" }, { "input": "equably", "output": "â ‘â Ÿâ ¥â â ƒâ ‡â ½" }, { "input": "equal", "output": "â ‘â Ÿâ ¥â â ‡" }, { "input": "equaled", "output": "â ‘â Ÿâ ¥â â ‡â «" }, { "input": "equaling", "output": "â ‘â Ÿâ ¥â â ‡â ¬" }, { "input": "equality", "output": "â ‘â Ÿâ ¥â â ‡â °â ½" }, { "input": "equalization", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ â °â " }, { "input": "equalize", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ ‘" }, { "input": "equalized", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ «" }, { "input": "equalizer", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ »" }, { "input": "equalizers", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ »â Ž" }, { "input": "equalizes", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "equalizing", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ ¬" }, { "input": "equalled", "output": "â ‘â Ÿâ ¥â â ‡â ‡â «" }, { "input": "equalling", "output": "â ‘â Ÿâ ¥â â ‡â ‡â ¬" }, { "input": "equally", "output": "â ‘â Ÿâ ¥â â ‡â ‡â ½" }, { "input": "equals", "output": "â ‘â Ÿâ ¥â â ‡â Ž" }, { "input": "equanimity", "output": "â ‘â Ÿâ ¥â â â Šâ â °â ½" }, { "input": "equate", "output": "â ‘â Ÿâ ¥â â žâ ‘" }, { "input": "equated", "output": "â ‘â Ÿâ ¥â â žâ «" }, { "input": "equates", "output": "â ‘â Ÿâ ¥â â žâ ‘â Ž" }, { "input": "equating", "output": "â ‘â Ÿâ ¥â â žâ ¬" }, { "input": "equation", "output": "â ‘â Ÿâ ¥â â °â " }, { "input": "equations", "output": "â ‘â Ÿâ ¥â â °â â Ž" }, { "input": "equator", "output": "â ‘â Ÿâ ¥â â žâ •â —" }, { "input": "equatorial", "output": "â ‘â Ÿâ ¥â â žâ •â —â Šâ â ‡" }, { "input": "equators", "output": "â ‘â Ÿâ ¥â â žâ •â —â Ž" }, { "input": "equestrian", "output": "⠑⠟⠥⠑⠌⠗⠊â â " }, { "input": "equestrians", "output": "⠑⠟⠥⠑⠌⠗⠊â â â Ž" }, { "input": "equestrienne", "output": "⠑⠟⠥⠑⠌⠗⠊⠢â â ‘" }, { "input": "equestriennes", "output": "⠑⠟⠥⠑⠌⠗⠊⠢â â ‘â Ž" }, { "input": "equidistant", "output": "⠑⠟⠥⠊⠙⠊⠌â â â ž" }, { "input": "equilateral", "output": "⠑⠟⠥⠊⠇â â žâ »â â ‡" }, { "input": "equilaterals", "output": "⠑⠟⠥⠊⠇â â žâ »â â ‡â Ž" }, { "input": "equilibrium", "output": "⠑⠟⠥⠊⠇⠊⠃⠗⠊⠥â " }, { "input": "equine", "output": "⠑⠟⠥⠔⠑" }, { "input": "equines", "output": "⠑⠟⠥⠔⠑⠎" }, { "input": "equinoctial", "output": "⠑⠟⠥⠔⠕⠉⠞⠊â â ‡" }, { "input": "equinox", "output": "⠑⠟⠥⠔⠕⠭" }, { "input": "equinoxes", "output": "⠑⠟⠥⠔⠕⠭⠑⠎" }, { "input": "equip", "output": "⠑⠟⠥⠊â " }, { "input": "equipage", "output": "⠑⠟⠥⠊â â â ›â ‘" }, { "input": "equipages", "output": "⠑⠟⠥⠊â â â ›â ‘â Ž" }, { "input": "equipment", "output": "⠑⠟⠥⠊â â °â ž" }, { "input": "equipoise", "output": "⠑⠟⠥⠊â â •â Šâ Žâ ‘" }, { "input": "equipped", "output": "⠑⠟⠥⠊â â â «" }, { "input": "equipping", "output": "⠑⠟⠥⠊â â â ¬" }, { "input": "equips", "output": "⠑⠟⠥⠊â â Ž" }, { "input": "equitable", "output": "⠑⠟⠥⠊⠞â â ƒâ ‡â ‘" }, { "input": "equitably", "output": "⠑⠟⠥⠊⠞â â ƒâ ‡â ½" }, { "input": "equities", "output": "⠑⠟⠥⠊⠞⠊⠑⠎" }, { "input": "equity", "output": "⠑⠟⠥⠰⠽" }, { "input": "equivalence", "output": "⠑⠟⠥⠊⠧â â ‡â °â ‘" }, { "input": "equivalences", "output": "⠑⠟⠥⠊⠧â â ‡â °â ‘â Ž" }, { "input": "equivalent", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â ž" }, { "input": "equivalently", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â žâ ‡â ½" }, { "input": "equivalents", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â žâ Ž" }, { "input": "equivocal", "output": "⠑⠟⠥⠊⠧⠕⠉â â ‡" }, { "input": "equivocally", "output": "⠑⠟⠥⠊⠧⠕⠉â â ‡â ‡â ½" }, { "input": "equivocate", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ ‘" }, { "input": "equivocated", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ «" }, { "input": "equivocates", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ ‘â Ž" }, { "input": "equivocating", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ ¬" }, { "input": "equivocation", "output": "⠑⠟⠥⠊⠧⠕⠉â â °â " }, { "input": "equivocations", "output": "⠑⠟⠥⠊⠧⠕⠉â â °â â Ž" }, { "input": "era", "output": "â »â " }, { "input": "eradicate", "output": "â »â â ™â Šâ ‰â â žâ ‘" }, { "input": "eradicated", "output": "â »â â ™â Šâ ‰â â žâ «" }, { "input": "eradicates", "output": "â »â â ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "eradicating", "output": "â »â â ™â Šâ ‰â â žâ ¬" }, { "input": "eradication", "output": "â »â â ™â Šâ ‰â â °â " }, { "input": "eras", "output": "â »â â Ž" }, { "input": "erase", "output": "â »â â Žâ ‘" }, { "input": "erased", "output": "â »â â Žâ «" }, { "input": "eraser", "output": "â »â â Žâ »" }, { "input": "erasers", "output": "â »â â Žâ »â Ž" }, { "input": "erases", "output": "â »â â Žâ ‘â Ž" }, { "input": "erasing", "output": "â »â â Žâ ¬" }, { "input": "erasure", "output": "â »â â Žâ ¥â —â ‘" }, { "input": "erasures", "output": "â »â â Žâ ¥â —â ‘â Ž" }, { "input": "ere", "output": "⠻⠑" }, { "input": "erect", "output": "⠻⠑⠉⠞" }, { "input": "erected", "output": "⠻⠑⠉⠞⠫" }, { "input": "erectile", "output": "⠻⠑⠉⠞⠊⠇⠑" }, { "input": "erecting", "output": "⠻⠑⠉⠞⠬" }, { "input": "erection", "output": "⠻⠑⠉⠰â " }, { "input": "erections", "output": "⠻⠑⠉⠰â â Ž" }, { "input": "erectly", "output": "⠻⠑⠉⠞⠇⠽" }, { "input": "erectness", "output": "⠻⠑⠉⠞⠰⠎" }, { "input": "erects", "output": "⠻⠑⠉⠞⠎" }, { "input": "erg", "output": "⠻⠛" }, { "input": "ergo", "output": "⠻⠛⠕" }, { "input": "ergonomic", "output": "⠻⠛⠕â â •â â Šâ ‰" }, { "input": "ergonomics", "output": "⠻⠛⠕â â •â â Šâ ‰â Ž" }, { "input": "ergs", "output": "⠻⠛⠎" }, { "input": "ermine", "output": "â »â â ”â ‘" }, { "input": "ermines", "output": "â »â â ”â ‘â Ž" }, { "input": "erode", "output": "⠻⠕⠙⠑" }, { "input": "eroded", "output": "⠻⠕⠙⠫" }, { "input": "erodes", "output": "⠻⠕⠙⠑⠎" }, { "input": "eroding", "output": "⠻⠕⠙⠬" }, { "input": "erogenous", "output": "⠻⠕⠛⠢⠳⠎" }, { "input": "erosion", "output": "⠻⠕⠨â " }, { "input": "erosive", "output": "⠻⠕⠎⠊⠧⠑" }, { "input": "erotic", "output": "⠻⠕⠞⠊⠉" }, { "input": "erotica", "output": "⠻⠕⠞⠊⠉â " }, { "input": "erotically", "output": "⠻⠕⠞⠊⠉â â ‡â ‡â ½" }, { "input": "eroticism", "output": "⠻⠕⠞⠊⠉⠊⠎â " }, { "input": "err", "output": "⠻⠗" }, { "input": "errand", "output": "⠻⠗⠯" }, { "input": "errands", "output": "⠻⠗⠯⠎" }, { "input": "errant", "output": "⠻⠗â â â ž" }, { "input": "errata", "output": "⠻⠗â â žâ " }, { "input": "erratas", "output": "⠻⠗â â žâ â Ž" }, { "input": "erratic", "output": "⠻⠗â â žâ Šâ ‰" }, { "input": "erratically", "output": "⠻⠗â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "erratum", "output": "⠻⠗â â žâ ¥â " }, { "input": "erred", "output": "⠻⠗⠫" }, { "input": "erring", "output": "⠻⠗⠬" }, { "input": "erroneous", "output": "⠻⠗⠕â â ‘⠳⠎" }, { "input": "erroneously", "output": "⠻⠗⠕â â ‘⠳⠎⠇⠽" }, { "input": "error", "output": "⠻⠗⠕⠗" }, { "input": "errors", "output": "⠻⠗⠕⠗⠎" }, { "input": "errs", "output": "⠻⠗⠎" }, { "input": "ersatz", "output": "⠻⠎â â žâ µ" }, { "input": "ersatzes", "output": "⠻⠎â â žâ µâ ‘â Ž" }, { "input": "erstwhile", "output": "⠻⠌⠱⠊⠇⠑" }, { "input": "erudite", "output": "⠻⠥⠙⠊⠞⠑" }, { "input": "eruditely", "output": "⠻⠥⠙⠊⠞⠑⠇⠽" }, { "input": "erudition", "output": "⠻⠥⠙⠊⠰â " }, { "input": "erupt", "output": "⠻⠥â â ž" }, { "input": "erupted", "output": "⠻⠥â â žâ «" }, { "input": "erupting", "output": "⠻⠥â â žâ ¬" }, { "input": "eruption", "output": "⠻⠥â â °â " }, { "input": "eruptions", "output": "⠻⠥â â °â â Ž" }, { "input": "erupts", "output": "⠻⠥â â žâ Ž" }, { "input": "erythrocyte", "output": "⠻⠽⠹⠗⠕⠉⠽⠞⠑" }, { "input": "erythrocytes", "output": "⠻⠽⠹⠗⠕⠉⠽⠞⠑⠎" }, { "input": "es", "output": "â ‘â Ž" }, { "input": "escalate", "output": "â ‘â Žâ ‰â â ‡â â žâ ‘" }, { "input": "escalated", "output": "â ‘â Žâ ‰â â ‡â â žâ «" }, { "input": "escalates", "output": "â ‘â Žâ ‰â â ‡â â žâ ‘â Ž" }, { "input": "escalating", "output": "â ‘â Žâ ‰â â ‡â â žâ ¬" }, { "input": "escalation", "output": "â ‘â Žâ ‰â â ‡â â °â " }, { "input": "escalations", "output": "â ‘â Žâ ‰â â ‡â â °â â Ž" }, { "input": "escalator", "output": "â ‘â Žâ ‰â â ‡â â žâ •â —" }, { "input": "escalators", "output": "â ‘â Žâ ‰â â ‡â â žâ •â —â Ž" }, { "input": "escapade", "output": "â ‘â Žâ ‰â â â â ™â ‘" }, { "input": "escapades", "output": "â ‘â Žâ ‰â â â â ™â ‘â Ž" }, { "input": "escape", "output": "â ‘â Žâ ‰â â â ‘" }, { "input": "escaped", "output": "â ‘â Žâ ‰â â â «" }, { "input": "escapee", "output": "â ‘â Žâ ‰â â â ‘â ‘" }, { "input": "escapees", "output": "â ‘â Žâ ‰â â â ‘â ‘â Ž" }, { "input": "escapes", "output": "â ‘â Žâ ‰â â â ‘â Ž" }, { "input": "escaping", "output": "â ‘â Žâ ‰â â â ¬" }, { "input": "escapism", "output": "â ‘â Žâ ‰â â â Šâ Žâ " }, { "input": "escapist", "output": "â ‘â Žâ ‰â â â Šâ Œ" }, { "input": "escapists", "output": "â ‘â Žâ ‰â â â Šâ Œâ Ž" }, { "input": "escarole", "output": "⠑⠎⠉⠜⠕⠇⠑" }, { "input": "escaroles", "output": "⠑⠎⠉⠜⠕⠇⠑⠎" }, { "input": "escarpment", "output": "⠑⠎⠉⠜â â °â ž" }, { "input": "escarpments", "output": "⠑⠎⠉⠜â â °â žâ Ž" }, { "input": "eschatology", "output": "â ‘â Žâ ¡â â žâ •⠇⠕⠛⠽" }, { "input": "eschew", "output": "â ‘â Žâ ¡â ‘â º" }, { "input": "eschewed", "output": "⠑⠎⠡⠑⠺⠫" }, { "input": "eschewing", "output": "⠑⠎⠡⠑⠺⠬" }, { "input": "eschews", "output": "⠑⠎⠡⠑⠺⠎" }, { "input": "escort", "output": "⠑⠎⠉⠕⠗⠞" }, { "input": "escorted", "output": "⠑⠎⠉⠕⠗⠞⠫" }, { "input": "escorting", "output": "⠑⠎⠉⠕⠗⠞⠬" }, { "input": "escorts", "output": "⠑⠎⠉⠕⠗⠞⠎" }, { "input": "escrow", "output": "⠑⠎⠉⠗⠪" }, { "input": "escrows", "output": "⠑⠎⠉⠗⠪⠎" }, { "input": "escutcheon", "output": "⠑⠎⠉⠥⠞⠡⠑⠕â " }, { "input": "escutcheons", "output": "⠑⠎⠉⠥⠞⠡⠑⠕â â Ž" }, { "input": "esophagi", "output": "â ‘â Žâ •â â “â â ›â Š" }, { "input": "esophagus", "output": "â ‘â Žâ •â â “â â ›â ¥â Ž" }, { "input": "esophaguses", "output": "â ‘â Žâ •â â “â â ›â ¥â Žâ ‘â Ž" }, { "input": "esoteric", "output": "⠑⠎⠕⠞⠻⠊⠉" }, { "input": "esoterically", "output": "⠑⠎⠕⠞⠻⠊⠉â â ‡â ‡â ½" }, { "input": "espadrille", "output": "â ‘â Žâ â â ™â —⠊⠇⠇⠑" }, { "input": "espadrilles", "output": "â ‘â Žâ â â ™â —⠊⠇⠇⠑⠎" }, { "input": "especial", "output": "â ‘â Žâ â ‘⠉⠊â â ‡" }, { "input": "especially", "output": "â ‘â Žâ â ‘⠉⠊â â ‡â ‡â ½" }, { "input": "espied", "output": "â ‘â Žâ â Šâ «" }, { "input": "espies", "output": "â ‘â Žâ â Šâ ‘â Ž" }, { "input": "espionage", "output": "â ‘â Žâ â Šâ •â â â ›â ‘" }, { "input": "esplanade", "output": "â ‘â Žâ â ‡â â â â ™â ‘" }, { "input": "esplanades", "output": "â ‘â Žâ â ‡â â â â ™â ‘â Ž" }, { "input": "espousal", "output": "â ‘â Žâ â ³â Žâ â ‡" }, { "input": "espouse", "output": "â ‘â Žâ â ³â Žâ ‘" }, { "input": "espoused", "output": "â ‘â Žâ â ³â Žâ «" }, { "input": "espouses", "output": "â ‘â Žâ â ³â Žâ ‘â Ž" }, { "input": "espousing", "output": "â ‘â Žâ â ³â Žâ ¬" }, { "input": "espresso", "output": "â ‘â Žâ â —â ‘â Žâ Žâ •" }, { "input": "espressos", "output": "â ‘â Žâ â —â ‘â Žâ Žâ •â Ž" }, { "input": "espy", "output": "â ‘â Žâ â ½" }, { "input": "espying", "output": "â ‘â Žâ â ½â ¬" }, { "input": "esquire", "output": "⠑⠎⠟⠥⠊⠗⠑" }, { "input": "esquires", "output": "⠑⠎⠟⠥⠊⠗⠑⠎" }, { "input": "essay", "output": "â ‘â Žâ Žâ â ½" }, { "input": "essayed", "output": "â ‘â Žâ Žâ â ½â «" }, { "input": "essaying", "output": "â ‘â Žâ Žâ â ½â ¬" }, { "input": "essayist", "output": "â ‘â Žâ Žâ â ½â Šâ Œ" }, { "input": "essayists", "output": "â ‘â Žâ Žâ â ½â Šâ Œâ Ž" }, { "input": "essays", "output": "â ‘â Žâ Žâ â ½â Ž" }, { "input": "essence", "output": "â ‘â Žâ Žâ °â ‘" }, { "input": "essences", "output": "â ‘â Žâ Žâ °â ‘â Ž" }, { "input": "essential", "output": "⠑⠎⠎⠢⠞⠊â â ‡" }, { "input": "essentially", "output": "⠑⠎⠎⠢⠞⠊â â ‡â ‡â ½" }, { "input": "essentials", "output": "⠑⠎⠎⠢⠞⠊â â ‡â Ž" }, { "input": "establish", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©" }, { "input": "established", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â «" }, { "input": "establishes", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "establishing", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â ¬" }, { "input": "establishment", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â °â ž" }, { "input": "establishments", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â °â žâ Ž" }, { "input": "estate", "output": "â ‘â Œâ â žâ ‘" }, { "input": "estates", "output": "â ‘â Œâ â žâ ‘â Ž" }, { "input": "esteem", "output": "⠑⠌⠑⠑â " }, { "input": "esteemed", "output": "⠑⠌⠑⠑â â «" }, { "input": "esteeming", "output": "⠑⠌⠑⠑â â ¬" }, { "input": "esteems", "output": "⠑⠌⠑⠑â â Ž" }, { "input": "ester", "output": "⠑⠌⠻" }, { "input": "esters", "output": "⠑⠌⠻⠎" }, { "input": "esthete", "output": "⠑⠎⠮⠞⠑" }, { "input": "esthetes", "output": "⠑⠎⠮⠞⠑⠎" }, { "input": "esthetic", "output": "⠑⠎⠮⠞⠊⠉" }, { "input": "esthetics", "output": "⠑⠎⠮⠞⠊⠉⠎" }, { "input": "estimable", "output": "⠑⠌⠊â â â ƒâ ‡â ‘" }, { "input": "estimate", "output": "⠑⠌⠊â â â žâ ‘" }, { "input": "estimated", "output": "⠑⠌⠊â â â žâ «" }, { "input": "estimates", "output": "⠑⠌⠊â â â žâ ‘â Ž" }, { "input": "estimating", "output": "⠑⠌⠊â â â žâ ¬" }, { "input": "estimation", "output": "⠑⠌⠊â â â °â " }, { "input": "estimations", "output": "⠑⠌⠊â â â °â â Ž" }, { "input": "estimator", "output": "⠑⠌⠊â â â žâ •â —" }, { "input": "estimators", "output": "⠑⠌⠊â â â žâ •â —â Ž" }, { "input": "estrange", "output": "⠑⠌⠗â â â ›â ‘" }, { "input": "estranged", "output": "⠑⠌⠗â â â ›â «" }, { "input": "estrangement", "output": "⠑⠌⠗â â â ›â ‘â °â ž" }, { "input": "estrangements", "output": "⠑⠌⠗â â â ›â ‘â °â žâ Ž" }, { "input": "estranges", "output": "⠑⠌⠗â â â ›â ‘â Ž" }, { "input": "estranging", "output": "⠑⠌⠗â â â ›â ¬" }, { "input": "estrogen", "output": "⠑⠌⠗⠕⠛⠢" }, { "input": "estuaries", "output": "⠑⠌⠥⠜⠊⠑⠎" }, { "input": "estuary", "output": "⠑⠌⠥⠜⠽" }, { "input": "eta", "output": "â ‘â žâ " }, { "input": "etch", "output": "â ‘â žâ ¡" }, { "input": "etched", "output": "â ‘â žâ ¡â «" }, { "input": "etcher", "output": "â ‘â žâ ¡â »" }, { "input": "etchers", "output": "⠑⠞⠡⠻⠎" }, { "input": "etches", "output": "â ‘â žâ ¡â ‘â Ž" }, { "input": "etching", "output": "â ‘â žâ ¡â ¬" }, { "input": "etchings", "output": "⠑⠞⠡⠬⠎" }, { "input": "eternal", "output": "â ‘â žâ »â â â ‡" }, { "input": "eternally", "output": "â ‘â žâ »â â â ‡â ‡â ½" }, { "input": "eternities", "output": "â ‘â žâ »â â Šâ žâ Šâ ‘â Ž" }, { "input": "eternity", "output": "â ‘â žâ »â â °â ½" }, { "input": "ether", "output": "⠑⠮⠗" }, { "input": "ethereal", "output": "⠑⠮⠗⠂⠇" }, { "input": "ethereally", "output": "⠑⠮⠗⠂⠇⠇⠽" }, { "input": "ethic", "output": "⠑⠹⠊⠉" }, { "input": "ethical", "output": "⠑⠹⠊⠉â â ‡" }, { "input": "ethically", "output": "⠑⠹⠊⠉â â ‡â ‡â ½" }, { "input": "ethics", "output": "⠑⠹⠊⠉⠎" }, { "input": "ethnic", "output": "â ‘â ¹â â Šâ ‰" }, { "input": "ethnically", "output": "â ‘â ¹â â Šâ ‰â â ‡â ‡â ½" }, { "input": "ethnicity", "output": "â ‘â ¹â â Šâ ‰â °â ½" }, { "input": "ethnics", "output": "â ‘â ¹â â Šâ ‰â Ž" }, { "input": "ethnological", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "ethnologist", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠌" }, { "input": "ethnologists", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠌⠎" }, { "input": "ethnology", "output": "â ‘â ¹â â •⠇⠕⠛⠽" }, { "input": "ethos", "output": "⠑⠹⠕⠎" }, { "input": "etiologies", "output": "⠑⠞⠊⠕⠇⠕⠛⠊⠑⠎" }, { "input": "etiology", "output": "⠑⠞⠊⠕⠇⠕⠛⠽" }, { "input": "etiquette", "output": "⠑⠞⠊⠟⠥⠑⠞⠞⠑" }, { "input": "etymological", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "etymologies", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠑⠎" }, { "input": "etymologist", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠌" }, { "input": "etymologists", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠌⠎" }, { "input": "etymology", "output": "â ‘â žâ ½â â •⠇⠕⠛⠽" }, { "input": "eucalypti", "output": "⠑⠥⠉â â ‡â ½â â žâ Š" }, { "input": "eucalyptus", "output": "⠑⠥⠉â â ‡â ½â â žâ ¥â Ž" }, { "input": "eucalyptuses", "output": "⠑⠥⠉â â ‡â ½â â žâ ¥â Žâ ‘â Ž" }, { "input": "eugenics", "output": "⠑⠥⠛⠢⠊⠉⠎" }, { "input": "eulogies", "output": "⠑⠥⠇⠕⠛⠊⠑⠎" }, { "input": "eulogistic", "output": "⠑⠥⠇⠕⠛⠊⠌⠊⠉" }, { "input": "eulogize", "output": "⠑⠥⠇⠕⠛⠊⠵⠑" }, { "input": "eulogized", "output": "⠑⠥⠇⠕⠛⠊⠵⠫" }, { "input": "eulogizes", "output": "⠑⠥⠇⠕⠛⠊⠵⠑⠎" }, { "input": "eulogizing", "output": "⠑⠥⠇⠕⠛⠊⠵⠬" }, { "input": "eulogy", "output": "⠑⠥⠇⠕⠛⠽" }, { "input": "eunuch", "output": "â ‘â ¥â â ¥â ¡" }, { "input": "eunuchs", "output": "â ‘â ¥â â ¥â ¡â Ž" }, { "input": "euphemism", "output": "â ‘â ¥â â “â ‘â â Šâ Žâ " }, { "input": "euphemisms", "output": "â ‘â ¥â â “â ‘â â Šâ Žâ â Ž" }, { "input": "euphemistic", "output": "â ‘â ¥â â “â ‘â â Šâ Œâ Šâ ‰" }, { "input": "euphemistically", "output": "â ‘â ¥â â “â ‘â â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "euphony", "output": "â ‘â ¥â â “â •â â ½" }, { "input": "euphoria", "output": "â ‘â ¥â â “â •â —â Šâ " }, { "input": "euphoric", "output": "â ‘â ¥â â “â •â —â Šâ ‰" }, { "input": "eureka", "output": "⠑⠥⠗⠑⠅â " }, { "input": "euro", "output": "⠑⠥⠗⠕" }, { "input": "euros", "output": "⠑⠥⠗⠕⠎" }, { "input": "eutectic", "output": "⠑⠥⠞⠑⠉⠞⠊⠉" }, { "input": "euthanasia", "output": "⠑⠥⠹â â â â Žâ Šâ " }, { "input": "evacuate", "output": "â ‘â §â â ‰â ¥â â žâ ‘" }, { "input": "evacuated", "output": "â ‘â §â â ‰â ¥â â žâ «" }, { "input": "evacuates", "output": "â ‘â §â â ‰â ¥â â žâ ‘â Ž" }, { "input": "evacuating", "output": "â ‘â §â â ‰â ¥â â žâ ¬" }, { "input": "evacuation", "output": "â ‘â §â â ‰â ¥â â °â " }, { "input": "evacuations", "output": "â ‘â §â â ‰â ¥â â °â â Ž" }, { "input": "evacuee", "output": "â ‘â §â â ‰â ¥â ‘â ‘" }, { "input": "evacuees", "output": "â ‘â §â â ‰â ¥â ‘â ‘â Ž" }, { "input": "evade", "output": "â ‘â §â â ™â ‘" }, { "input": "evaded", "output": "â ‘â §â â ™â «" }, { "input": "evades", "output": "â ‘â §â â ™â ‘â Ž" }, { "input": "evading", "output": "â ‘â §â â ™â ¬" }, { "input": "evaluate", "output": "â ‘â §â â ‡â ¥â â žâ ‘" }, { "input": "evaluated", "output": "â ‘â §â â ‡â ¥â â žâ «" }, { "input": "evaluates", "output": "â ‘â §â â ‡â ¥â â žâ ‘â Ž" }, { "input": "evaluating", "output": "â ‘â §â â ‡â ¥â â žâ ¬" }, { "input": "evaluation", "output": "â ‘â §â â ‡â ¥â â °â " }, { "input": "evaluations", "output": "â ‘â §â â ‡â ¥â â °â â Ž" }, { "input": "evanescent", "output": "â ‘â §â â â ‘⠎⠉⠢⠞" }, { "input": "evangelical", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡" }, { "input": "evangelicals", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡â Ž" }, { "input": "evangelism", "output": "â ‘â §â â â ›â ‘⠇⠊⠎â " }, { "input": "evangelist", "output": "â ‘â §â â â ›â ‘⠇⠊⠌" }, { "input": "evangelistic", "output": "â ‘â §â â â ›â ‘⠇⠊⠌⠊⠉" }, { "input": "evangelists", "output": "â ‘â §â â â ›â ‘⠇⠊⠌⠎" }, { "input": "evangelize", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠑" }, { "input": "evangelized", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠫" }, { "input": "evangelizes", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠑⠎" }, { "input": "evangelizing", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠬" }, { "input": "evaporate", "output": "â ‘â §â â â •â —â â žâ ‘" }, { "input": "evaporated", "output": "â ‘â §â â â •â —â â žâ «" }, { "input": "evaporates", "output": "â ‘â §â â â •â —â â žâ ‘â Ž" }, { "input": "evaporating", "output": "â ‘â §â â â •â —â â žâ ¬" }, { "input": "evaporation", "output": "â ‘â §â â â •â —â â °â " }, { "input": "evasion", "output": "â ‘â §â â ¨â " }, { "input": "evasions", "output": "â ‘â §â â ¨â â Ž" }, { "input": "evasive", "output": "â ‘â §â â Žâ Šâ §â ‘" }, { "input": "evasively", "output": "â ‘â §â â Žâ Šâ §â ‘⠇⠽" }, { "input": "evasiveness", "output": "â ‘â §â â Žâ Šâ §â ‘â °â Ž" }, { "input": "eve", "output": "â ‘â §â ‘" }, { "input": "even", "output": "â ‘â §â ¢" }, { "input": "evened", "output": "⠑⠧⠢⠫" }, { "input": "evener", "output": "⠑⠧⠢⠻" }, { "input": "evenest", "output": "⠑⠧⠢⠑⠌" }, { "input": "evenhanded", "output": "⠑⠧⠢⠓⠯⠫" }, { "input": "evening", "output": "⠑⠧⠢⠬" }, { "input": "evenings", "output": "⠑⠧⠢⠬⠎" }, { "input": "evenly", "output": "⠑⠧⠢⠇⠽" }, { "input": "evenness", "output": "⠑⠧⠢⠰⠎" }, { "input": "evens", "output": "⠑⠧⠢⠎" }, { "input": "event", "output": "⠑⠧⠢⠞" }, { "input": "eventful", "output": "⠑⠧⠢⠞⠰⠇" }, { "input": "eventfully", "output": "⠑⠧⠢⠞⠰⠇⠇⠽" }, { "input": "eventfulness", "output": "⠑⠧⠢⠞⠰⠇⠰⠎" }, { "input": "eventide", "output": "⠑⠧⠢⠞⠊⠙⠑" }, { "input": "events", "output": "⠑⠧⠢⠞⠎" }, { "input": "eventual", "output": "⠑⠧⠢⠞⠥â â ‡" }, { "input": "eventualities", "output": "⠑⠧⠢⠞⠥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "eventuality", "output": "⠑⠧⠢⠞⠥â â ‡â °â ½" }, { "input": "eventually", "output": "⠑⠧⠢⠞⠥â â ‡â ‡â ½" }, { "input": "eventuate", "output": "⠑⠧⠢⠞⠥â â žâ ‘" }, { "input": "eventuated", "output": "⠑⠧⠢⠞⠥â â žâ «" }, { "input": "eventuates", "output": "⠑⠧⠢⠞⠥â â žâ ‘â Ž" }, { "input": "eventuating", "output": "⠑⠧⠢⠞⠥â â žâ ¬" }, { "input": "ever", "output": "â â ‘" }, { "input": "everglade", "output": "â â ‘⠛⠇â â ™â ‘" }, { "input": "everglades", "output": "â â ‘⠛⠇â â ™â ‘â Ž" }, { "input": "evergreen", "output": "â â ‘⠛⠗⠑⠢" }, { "input": "evergreens", "output": "â â ‘⠛⠗⠑⠢⠎" }, { "input": "everlasting", "output": "â â ‘â ‡â â Œâ ¬" }, { "input": "everlastings", "output": "â â ‘â ‡â â Œâ ¬â Ž" }, { "input": "evermore", "output": "â â ‘â â •â —â ‘" }, { "input": "every", "output": "â ‘" }, { "input": "everybody", "output": "â â ‘⠽⠃⠕⠙⠽" }, { "input": "everyday", "output": "â â ‘â ½â â ™" }, { "input": "everyone", "output": "â â ‘â ½â â •" }, { "input": "everyplace", "output": "â â ‘â ½â â ‡â â ‰â ‘" }, { "input": "everything", "output": "â â ‘⠽⠹⠬" }, { "input": "everywhere", "output": "â â ‘â ½â â ±" }, { "input": "eves", "output": "â ‘â §â ‘â Ž" }, { "input": "evict", "output": "⠑⠧⠊⠉⠞" }, { "input": "evicted", "output": "⠑⠧⠊⠉⠞⠫" }, { "input": "evicting", "output": "⠑⠧⠊⠉⠞⠬" }, { "input": "eviction", "output": "⠑⠧⠊⠉⠰â " }, { "input": "evictions", "output": "⠑⠧⠊⠉⠰â â Ž" }, { "input": "evicts", "output": "⠑⠧⠊⠉⠞⠎" }, { "input": "evidence", "output": "⠑⠧⠊⠙⠰⠑" }, { "input": "evidenced", "output": "⠑⠧⠊⠙⠰⠑⠙" }, { "input": "evidences", "output": "⠑⠧⠊⠙⠰⠑⠎" }, { "input": "evidencing", "output": "⠑⠧⠊⠙⠢⠉⠬" }, { "input": "evident", "output": "⠑⠧⠊⠙⠢⠞" }, { "input": "evidently", "output": "⠑⠧⠊⠙⠢⠞⠇⠽" }, { "input": "evil", "output": "â ‘â §â Šâ ‡" }, { "input": "evildoer", "output": "⠑⠧⠊⠇⠙⠕⠻" }, { "input": "evildoers", "output": "⠑⠧⠊⠇⠙⠕⠻⠎" }, { "input": "eviler", "output": "⠑⠧⠊⠇⠻" }, { "input": "evilest", "output": "⠑⠧⠊⠇⠑⠌" }, { "input": "eviller", "output": "⠑⠧⠊⠇⠇⠻" }, { "input": "evillest", "output": "⠑⠧⠊⠇⠇⠑⠌" }, { "input": "evilly", "output": "⠑⠧⠊⠇⠇⠽" }, { "input": "evils", "output": "⠑⠧⠊⠇⠎" }, { "input": "evince", "output": "⠑⠧⠔⠉⠑" }, { "input": "evinced", "output": "⠑⠧⠔⠉⠫" }, { "input": "evinces", "output": "⠑⠧⠔⠉⠑⠎" }, { "input": "evincing", "output": "⠑⠧⠔⠉⠬" }, { "input": "eviscerate", "output": "⠑⠧⠊⠎⠉⠻â â žâ ‘" }, { "input": "eviscerated", "output": "⠑⠧⠊⠎⠉⠻â â žâ «" }, { "input": "eviscerates", "output": "⠑⠧⠊⠎⠉⠻â â žâ ‘â Ž" }, { "input": "eviscerating", "output": "⠑⠧⠊⠎⠉⠻â â žâ ¬" }, { "input": "evisceration", "output": "⠑⠧⠊⠎⠉⠻â â °â " }, { "input": "evocation", "output": "â ‘â §â •â ‰â â °â " }, { "input": "evocations", "output": "â ‘â §â •â ‰â â °â â Ž" }, { "input": "evocative", "output": "â ‘â §â •â ‰â â žâ Šâ §â ‘" }, { "input": "evoke", "output": "â ‘â §â •â …â ‘" }, { "input": "evoked", "output": "â ‘â §â •â …â «" }, { "input": "evokes", "output": "â ‘â §â •â …â ‘â Ž" }, { "input": "evoking", "output": "â ‘â §â •â …â ¬" }, { "input": "evolution", "output": "⠑⠧⠕⠇⠥⠰â " }, { "input": "evolutionary", "output": "⠑⠧⠕⠇⠥⠰â â œâ ½" }, { "input": "evolve", "output": "⠑⠧⠕⠇⠧⠑" }, { "input": "evolved", "output": "⠑⠧⠕⠇⠧⠫" }, { "input": "evolves", "output": "⠑⠧⠕⠇⠧⠑⠎" }, { "input": "evolving", "output": "⠑⠧⠕⠇⠧⠬" }, { "input": "ewe", "output": "⠑⠺⠑" }, { "input": "ewer", "output": "⠑⠺⠻" }, { "input": "ewers", "output": "⠑⠺⠻⠎" }, { "input": "ewes", "output": "⠑⠺⠑⠎" }, { "input": "ex", "output": "â ‘â ­" }, { "input": "exacerbate", "output": "â ‘â ­â â ‰â »â ƒâ â žâ ‘" }, { "input": "exacerbated", "output": "â ‘â ­â â ‰â »â ƒâ â žâ «" }, { "input": "exacerbates", "output": "â ‘â ­â â ‰â »â ƒâ â žâ ‘â Ž" }, { "input": "exacerbating", "output": "â ‘â ­â â ‰â »â ƒâ â žâ ¬" }, { "input": "exacerbation", "output": "â ‘â ­â â ‰â »â ƒâ â °â " }, { "input": "exact", "output": "â ‘â ­â â ‰â ž" }, { "input": "exacted", "output": "â ‘â ­â â ‰â žâ «" }, { "input": "exacter", "output": "â ‘â ­â â ‰â žâ »" }, { "input": "exactest", "output": "â ‘â ­â â ‰â žâ ‘â Œ" }, { "input": "exacting", "output": "â ‘â ­â â ‰â žâ ¬" }, { "input": "exactingly", "output": "â ‘â ­â â ‰â žâ ¬â ‡â ½" }, { "input": "exactitude", "output": "â ‘â ­â â ‰â žâ Šâ žâ ¥â ™â ‘" }, { "input": "exactly", "output": "â ‘â ­â â ‰â žâ ‡â ½" }, { "input": "exactness", "output": "â ‘â ­â â ‰â žâ °â Ž" }, { "input": "exacts", "output": "â ‘â ­â â ‰â žâ Ž" }, { "input": "exaggerate", "output": "â ‘â ­â â ¶â »â â žâ ‘" }, { "input": "exaggerated", "output": "â ‘â ­â â ¶â »â â žâ «" }, { "input": "exaggerates", "output": "â ‘â ­â â ¶â »â â žâ ‘â Ž" }, { "input": "exaggerating", "output": "â ‘â ­â â ¶â »â â žâ ¬" }, { "input": "exaggeration", "output": "â ‘â ­â â ¶â »â â °â " }, { "input": "exaggerations", "output": "â ‘â ­â â ¶â »â â °â â Ž" }, { "input": "exalt", "output": "â ‘â ­â â ‡â ž" }, { "input": "exaltation", "output": "â ‘â ­â â ‡â žâ â °â " }, { "input": "exalted", "output": "â ‘â ­â â ‡â žâ «" }, { "input": "exalting", "output": "â ‘â ­â â ‡â žâ ¬" }, { "input": "exalts", "output": "â ‘â ­â â ‡â žâ Ž" }, { "input": "exam", "output": "â ‘â ­â â " }, { "input": "examination", "output": "â ‘â ­â â â ”â â °â " }, { "input": "examinations", "output": "â ‘â ­â â â ”â â °â â Ž" }, { "input": "examine", "output": "â ‘â ­â â â ”â ‘" }, { "input": "examined", "output": "â ‘â ­â â â ”â «" }, { "input": "examiner", "output": "â ‘â ­â â â ”â »" }, { "input": "examiners", "output": "â ‘â ­â â â ”⠻⠎" }, { "input": "examines", "output": "â ‘â ­â â â ”â ‘â Ž" }, { "input": "examining", "output": "â ‘â ­â â â ”â ¬" }, { "input": "example", "output": "â ‘â ­â â â â ‡â ‘" }, { "input": "exampled", "output": "â ‘â ­â â â â ‡â «" }, { "input": "examples", "output": "â ‘â ­â â â â ‡â ‘â Ž" }, { "input": "exampling", "output": "â ‘â ­â â â â ‡â ¬" }, { "input": "exams", "output": "â ‘â ­â â â Ž" }, { "input": "exasperate", "output": "â ‘â ­â â Žâ â »â â žâ ‘" }, { "input": "exasperated", "output": "â ‘â ­â â Žâ â »â â žâ «" }, { "input": "exasperates", "output": "â ‘â ­â â Žâ â »â â žâ ‘â Ž" }, { "input": "exasperating", "output": "â ‘â ­â â Žâ â »â â žâ ¬" }, { "input": "exasperation", "output": "â ‘â ­â â Žâ â »â â °â " }, { "input": "excavate", "output": "â ‘â ­â ‰â â §â â žâ ‘" }, { "input": "excavated", "output": "â ‘â ­â ‰â â §â â žâ «" }, { "input": "excavates", "output": "â ‘â ­â ‰â â §â â žâ ‘â Ž" }, { "input": "excavating", "output": "â ‘â ­â ‰â â §â â žâ ¬" }, { "input": "excavation", "output": "â ‘â ­â ‰â â §â â °â " }, { "input": "excavations", "output": "â ‘â ­â ‰â â §â â °â â Ž" }, { "input": "excavator", "output": "â ‘â ­â ‰â â §â â žâ •â —" }, { "input": "excavators", "output": "â ‘â ­â ‰â â §â â žâ •â —â Ž" }, { "input": "exceed", "output": "⠑⠭⠉⠑⠫" }, { "input": "exceeded", "output": "⠑⠭⠉⠑⠫⠫" }, { "input": "exceeding", "output": "⠑⠭⠉⠑⠫⠬" }, { "input": "exceedingly", "output": "⠑⠭⠉⠑⠫⠬⠇⠽" }, { "input": "exceeds", "output": "⠑⠭⠉⠑⠫⠎" }, { "input": "excel", "output": "⠑⠭⠉⠑⠇" }, { "input": "excelled", "output": "⠑⠭⠉⠑⠇⠇⠫" }, { "input": "excellence", "output": "⠑⠭⠉⠑⠇⠇⠰⠑" }, { "input": "excellent", "output": "⠑⠭⠉⠑⠇⠇⠢⠞" }, { "input": "excellently", "output": "⠑⠭⠉⠑⠇⠇⠢⠞⠇⠽" }, { "input": "excelling", "output": "⠑⠭⠉⠑⠇⠇⠬" }, { "input": "excels", "output": "⠑⠭⠉⠑⠇⠎" }, { "input": "except", "output": "⠑⠭⠉⠑â â ž" }, { "input": "excepted", "output": "⠑⠭⠉⠑â â žâ «" }, { "input": "excepting", "output": "⠑⠭⠉⠑â â žâ ¬" }, { "input": "exception", "output": "⠑⠭⠉⠑â â °â " }, { "input": "exceptionable", "output": "⠑⠭⠉⠑â â °â â â ƒâ ‡â ‘" }, { "input": "exceptional", "output": "⠑⠭⠉⠑â â °â â â ‡" }, { "input": "exceptionally", "output": "⠑⠭⠉⠑â â °â â â ‡â ‡â ½" }, { "input": "exceptions", "output": "⠑⠭⠉⠑â â °â â Ž" }, { "input": "excepts", "output": "⠑⠭⠉⠑â â žâ Ž" }, { "input": "excerpt", "output": "⠑⠭⠉⠻â â ž" }, { "input": "excerpted", "output": "⠑⠭⠉⠻â â žâ «" }, { "input": "excerpting", "output": "⠑⠭⠉⠻â â žâ ¬" }, { "input": "excerpts", "output": "⠑⠭⠉⠻â â žâ Ž" }, { "input": "excess", "output": "⠑⠭⠉⠑⠎⠎" }, { "input": "excesses", "output": "⠑⠭⠉⠑⠎⠎⠑⠎" }, { "input": "excessive", "output": "⠑⠭⠉⠑⠎⠎⠊⠧⠑" }, { "input": "excessively", "output": "⠑⠭⠉⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "exchange", "output": "â ‘â ­â ¡â â â ›â ‘" }, { "input": "exchangeable", "output": "â ‘â ­â ¡â â â ›â ‚⠃⠇⠑" }, { "input": "exchanged", "output": "â ‘â ­â ¡â â â ›â «" }, { "input": "exchanges", "output": "â ‘â ­â ¡â â â ›â ‘â Ž" }, { "input": "exchanging", "output": "â ‘â ­â ¡â â â ›â ¬" }, { "input": "exchequer", "output": "⠑⠭⠡⠑⠟⠥⠻" }, { "input": "exchequers", "output": "⠑⠭⠡⠑⠟⠥⠻⠎" }, { "input": "excise", "output": "⠑⠭⠉⠊⠎⠑" }, { "input": "excised", "output": "⠑⠭⠉⠊⠎⠫" }, { "input": "excises", "output": "⠑⠭⠉⠊⠎⠑⠎" }, { "input": "excising", "output": "⠑⠭⠉⠊⠎⠬" }, { "input": "excision", "output": "⠑⠭⠉⠊⠨â " }, { "input": "excisions", "output": "⠑⠭⠉⠊⠨â â Ž" }, { "input": "excitability", "output": "⠑⠭⠉⠊⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "excitable", "output": "⠑⠭⠉⠊⠞â â ƒâ ‡â ‘" }, { "input": "excitation", "output": "⠑⠭⠉⠊⠞â â °â " }, { "input": "excite", "output": "⠑⠭⠉⠊⠞⠑" }, { "input": "excited", "output": "⠑⠭⠉⠊⠞⠫" }, { "input": "excitedly", "output": "⠑⠭⠉⠊⠞⠫⠇⠽" }, { "input": "excitement", "output": "⠑⠭⠉⠊⠞⠑⠰⠞" }, { "input": "excitements", "output": "⠑⠭⠉⠊⠞⠑⠰⠞⠎" }, { "input": "excites", "output": "⠑⠭⠉⠊⠞⠑⠎" }, { "input": "exciting", "output": "⠑⠭⠉⠊⠞⠬" }, { "input": "excitingly", "output": "⠑⠭⠉⠊⠞⠬⠇⠽" }, { "input": "exclaim", "output": "⠑⠭⠉⠇â â Šâ " }, { "input": "exclaimed", "output": "⠑⠭⠉⠇â â Šâ â «" }, { "input": "exclaiming", "output": "⠑⠭⠉⠇â â Šâ â ¬" }, { "input": "exclaims", "output": "⠑⠭⠉⠇â â Šâ â Ž" }, { "input": "exclamation", "output": "⠑⠭⠉⠇â â â â °â " }, { "input": "exclamations", "output": "⠑⠭⠉⠇â â â â °â â Ž" }, { "input": "exclamatory", "output": "⠑⠭⠉⠇â â â â žâ •â —â ½" }, { "input": "exclude", "output": "⠑⠭⠉⠇⠥⠙⠑" }, { "input": "excluded", "output": "⠑⠭⠉⠇⠥⠙⠫" }, { "input": "excludes", "output": "⠑⠭⠉⠇⠥⠙⠑⠎" }, { "input": "excluding", "output": "⠑⠭⠉⠇⠥⠙⠬" }, { "input": "exclusion", "output": "⠑⠭⠉⠇⠥⠨â " }, { "input": "exclusive", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑" }, { "input": "exclusively", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "exclusiveness", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠰⠎" }, { "input": "exclusives", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠎" }, { "input": "exclusivity", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠰⠽" }, { "input": "excommunicate", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ ‘" }, { "input": "excommunicated", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ «" }, { "input": "excommunicates", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ ‘â Ž" }, { "input": "excommunicating", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ ¬" }, { "input": "excommunication", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â °â " }, { "input": "excommunications", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â °â â Ž" }, { "input": "excoriate", "output": "⠑⠭⠉⠕⠗⠊â â žâ ‘" }, { "input": "excoriated", "output": "⠑⠭⠉⠕⠗⠊â â žâ «" }, { "input": "excoriates", "output": "⠑⠭⠉⠕⠗⠊â â žâ ‘â Ž" }, { "input": "excoriating", "output": "⠑⠭⠉⠕⠗⠊â â žâ ¬" }, { "input": "excoriation", "output": "⠑⠭⠉⠕⠗⠊â â °â " }, { "input": "excoriations", "output": "⠑⠭⠉⠕⠗⠊â â °â â Ž" }, { "input": "excrement", "output": "⠑⠭⠉⠗⠑⠰⠞" }, { "input": "excrescence", "output": "⠑⠭⠉⠗⠑⠎⠉⠰⠑" }, { "input": "excrescences", "output": "⠑⠭⠉⠗⠑⠎⠉⠰⠑⠎" }, { "input": "excreta", "output": "⠑⠭⠉⠗⠑⠞â " }, { "input": "excrete", "output": "⠑⠭⠉⠗⠑⠞⠑" }, { "input": "excreted", "output": "⠑⠭⠉⠗⠑⠞⠫" }, { "input": "excretes", "output": "⠑⠭⠉⠗⠑⠞⠑⠎" }, { "input": "excreting", "output": "⠑⠭⠉⠗⠑⠞⠬" }, { "input": "excretion", "output": "⠑⠭⠉⠗⠑⠰â " }, { "input": "excretions", "output": "⠑⠭⠉⠗⠑⠰â â Ž" }, { "input": "excretory", "output": "⠑⠭⠉⠗⠑⠞⠕⠗⠽" }, { "input": "excruciating", "output": "⠑⠭⠉⠗⠥⠉⠊â â žâ ¬" }, { "input": "excruciatingly", "output": "⠑⠭⠉⠗⠥⠉⠊â â žâ ¬â ‡â ½" }, { "input": "exculpate", "output": "⠑⠭⠉⠥⠇â â â žâ ‘" }, { "input": "exculpated", "output": "⠑⠭⠉⠥⠇â â â žâ «" }, { "input": "exculpates", "output": "⠑⠭⠉⠥⠇â â â žâ ‘â Ž" }, { "input": "exculpating", "output": "⠑⠭⠉⠥⠇â â â žâ ¬" }, { "input": "excursion", "output": "⠑⠭⠉⠥⠗⠨â " }, { "input": "excursions", "output": "⠑⠭⠉⠥⠗⠨â â Ž" }, { "input": "excusable", "output": "⠑⠭⠉⠥⠎â â ƒâ ‡â ‘" }, { "input": "excuse", "output": "⠑⠭⠉⠥⠎⠑" }, { "input": "excused", "output": "⠑⠭⠉⠥⠎⠫" }, { "input": "excuses", "output": "⠑⠭⠉⠥⠎⠑⠎" }, { "input": "excusing", "output": "⠑⠭⠉⠥⠎⠬" }, { "input": "exec", "output": "â ‘â ­â ‘â ‰" }, { "input": "execrable", "output": "⠑⠭⠑⠉⠗â â ƒâ ‡â ‘" }, { "input": "execrate", "output": "⠑⠭⠑⠉⠗â â žâ ‘" }, { "input": "execrated", "output": "⠑⠭⠑⠉⠗â â žâ «" }, { "input": "execrates", "output": "⠑⠭⠑⠉⠗â â žâ ‘â Ž" }, { "input": "execrating", "output": "⠑⠭⠑⠉⠗â â žâ ¬" }, { "input": "execs", "output": "⠑⠭⠑⠉⠎" }, { "input": "executable", "output": "⠑⠭⠑⠉⠥⠞â â ƒâ ‡â ‘" }, { "input": "execute", "output": "⠑⠭⠑⠉⠥⠞⠑" }, { "input": "executed", "output": "⠑⠭⠑⠉⠥⠞⠫" }, { "input": "executes", "output": "⠑⠭⠑⠉⠥⠞⠑⠎" }, { "input": "executing", "output": "⠑⠭⠑⠉⠥⠞⠬" }, { "input": "execution", "output": "⠑⠭⠑⠉⠥⠰â " }, { "input": "executioner", "output": "⠑⠭⠑⠉⠥⠰â â »" }, { "input": "executioners", "output": "⠑⠭⠑⠉⠥⠰â â »â Ž" }, { "input": "executions", "output": "⠑⠭⠑⠉⠥⠰â â Ž" }, { "input": "executive", "output": "⠑⠭⠑⠉⠥⠞⠊⠧⠑" }, { "input": "executives", "output": "⠑⠭⠑⠉⠥⠞⠊⠧⠑⠎" }, { "input": "executor", "output": "⠑⠭⠑⠉⠥⠞⠕⠗" }, { "input": "executors", "output": "⠑⠭⠑⠉⠥⠞⠕⠗⠎" }, { "input": "executrices", "output": "⠑⠭⠑⠉⠥⠞⠗⠊⠉⠑⠎" }, { "input": "executrix", "output": "⠑⠭⠑⠉⠥⠞⠗⠊⠭" }, { "input": "executrixes", "output": "⠑⠭⠑⠉⠥⠞⠗⠊⠭⠑⠎" }, { "input": "exegeses", "output": "⠑⠭⠑⠛⠑⠎⠑⠎" }, { "input": "exegesis", "output": "⠑⠭⠑⠛⠑⠎⠊⠎" }, { "input": "exemplar", "output": "â ‘â ­â ‘â â â ‡â œ" }, { "input": "exemplars", "output": "â ‘â ­â ‘â â â ‡â œâ Ž" }, { "input": "exemplary", "output": "â ‘â ­â ‘â â â ‡â œâ ½" }, { "input": "exemplification", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "exemplifications", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "exemplified", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ «" }, { "input": "exemplifies", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "exemplify", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â ½" }, { "input": "exemplifying", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â ½â ¬" }, { "input": "exempt", "output": "â ‘â ­â ‘â â â ž" }, { "input": "exempted", "output": "â ‘â ­â ‘â â â žâ «" }, { "input": "exempting", "output": "â ‘â ­â ‘â â â žâ ¬" }, { "input": "exemption", "output": "â ‘â ­â ‘â â â °â " }, { "input": "exemptions", "output": "â ‘â ­â ‘â â â °â â Ž" }, { "input": "exempts", "output": "â ‘â ­â ‘â â â žâ Ž" }, { "input": "exercise", "output": "⠑⠭⠻⠉⠊⠎⠑" }, { "input": "exercised", "output": "⠑⠭⠻⠉⠊⠎⠫" }, { "input": "exercises", "output": "⠑⠭⠻⠉⠊⠎⠑⠎" }, { "input": "exercising", "output": "⠑⠭⠻⠉⠊⠎⠬" }, { "input": "exert", "output": "⠑⠭⠻⠞" }, { "input": "exerted", "output": "⠑⠭⠻⠞⠫" }, { "input": "exerting", "output": "⠑⠭⠻⠞⠬" }, { "input": "exertion", "output": "⠑⠭⠻⠰â " }, { "input": "exertions", "output": "⠑⠭⠻⠰â â Ž" }, { "input": "exerts", "output": "⠑⠭⠻⠞⠎" }, { "input": "exes", "output": "â ‘â ­â ‘â Ž" }, { "input": "exhalation", "output": "â ‘â ­â “â â ‡â â °â " }, { "input": "exhalations", "output": "â ‘â ­â “â â ‡â â °â â Ž" }, { "input": "exhale", "output": "â ‘â ­â “â â ‡â ‘" }, { "input": "exhaled", "output": "â ‘â ­â “â â ‡â «" }, { "input": "exhales", "output": "â ‘â ­â “â â ‡â ‘â Ž" }, { "input": "exhaling", "output": "â ‘â ­â “â â ‡â ¬" }, { "input": "exhaust", "output": "â ‘â ­â “â â ¥â Œ" }, { "input": "exhausted", "output": "â ‘â ­â “â â ¥â Œâ «" }, { "input": "exhaustible", "output": "â ‘â ­â “â â ¥â Œâ Šâ ƒâ ‡â ‘" }, { "input": "exhausting", "output": "â ‘â ­â “â â ¥â Œâ ¬" }, { "input": "exhaustion", "output": "â ‘â ­â “â â ¥â Žâ °â " }, { "input": "exhaustive", "output": "â ‘â ­â “â â ¥â Œâ Šâ §â ‘" }, { "input": "exhaustively", "output": "â ‘â ­â “â â ¥â Œâ Šâ §â ‘⠇⠽" }, { "input": "exhausts", "output": "â ‘â ­â “â â ¥â Œâ Ž" }, { "input": "exhibit", "output": "⠑⠭⠓⠊⠃⠊⠞" }, { "input": "exhibited", "output": "⠑⠭⠓⠊⠃⠊⠞⠫" }, { "input": "exhibiting", "output": "⠑⠭⠓⠊⠃⠊⠞⠬" }, { "input": "exhibition", "output": "⠑⠭⠓⠊⠃⠊⠰â " }, { "input": "exhibitionism", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Žâ " }, { "input": "exhibitionist", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Œ" }, { "input": "exhibitionists", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Œâ Ž" }, { "input": "exhibitions", "output": "⠑⠭⠓⠊⠃⠊⠰â â Ž" }, { "input": "exhibitor", "output": "⠑⠭⠓⠊⠃⠊⠞⠕⠗" }, { "input": "exhibitors", "output": "⠑⠭⠓⠊⠃⠊⠞⠕⠗⠎" }, { "input": "exhibits", "output": "⠑⠭⠓⠊⠃⠊⠞⠎" }, { "input": "exhilarate", "output": "⠑⠭⠓⠊⠇⠜â â žâ ‘" }, { "input": "exhilarated", "output": "⠑⠭⠓⠊⠇⠜â â žâ «" }, { "input": "exhilarates", "output": "⠑⠭⠓⠊⠇⠜â â žâ ‘â Ž" }, { "input": "exhilarating", "output": "⠑⠭⠓⠊⠇⠜â â žâ ¬" }, { "input": "exhilaration", "output": "⠑⠭⠓⠊⠇⠜â â °â " }, { "input": "exhort", "output": "â ‘â ­â “â •â —â ž" }, { "input": "exhortation", "output": "â ‘â ­â “â •â —â žâ â °â " }, { "input": "exhortations", "output": "â ‘â ­â “â •â —â žâ â °â â Ž" }, { "input": "exhorted", "output": "â ‘â ­â “â •â —â žâ «" }, { "input": "exhorting", "output": "â ‘â ­â “â •â —â žâ ¬" }, { "input": "exhorts", "output": "â ‘â ­â “â •â —â žâ Ž" }, { "input": "exhumation", "output": "â ‘â ­â “â ¥â â â °â " }, { "input": "exhumations", "output": "â ‘â ­â “â ¥â â â °â â Ž" }, { "input": "exhume", "output": "â ‘â ­â “â ¥â â ‘" }, { "input": "exhumed", "output": "â ‘â ­â “â ¥â â «" }, { "input": "exhumes", "output": "â ‘â ­â “â ¥â â ‘â Ž" }, { "input": "exhuming", "output": "â ‘â ­â “â ¥â â ¬" }, { "input": "exigencies", "output": "⠑⠭⠊⠛⠢⠉⠊⠑⠎" }, { "input": "exigency", "output": "⠑⠭⠊⠛⠢⠉⠽" }, { "input": "exigent", "output": "⠑⠭⠊⠛⠢⠞" }, { "input": "exiguous", "output": "⠑⠭⠊⠛⠥⠳⠎" }, { "input": "exile", "output": "⠑⠭⠊⠇⠑" }, { "input": "exiled", "output": "⠑⠭⠊⠇⠫" }, { "input": "exiles", "output": "⠑⠭⠊⠇⠑⠎" }, { "input": "exiling", "output": "⠑⠭⠊⠇⠬" }, { "input": "exist", "output": "â ‘â ­â Šâ Œ" }, { "input": "existed", "output": "⠑⠭⠊⠌⠫" }, { "input": "existence", "output": "⠑⠭⠊⠌⠰⠑" }, { "input": "existences", "output": "⠑⠭⠊⠌⠰⠑⠎" }, { "input": "existent", "output": "⠑⠭⠊⠌⠢⠞" }, { "input": "existential", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡" }, { "input": "existentialism", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Žâ " }, { "input": "existentialist", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Œ" }, { "input": "existentialists", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Œâ Ž" }, { "input": "existentially", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â ‡â ½" }, { "input": "existing", "output": "⠑⠭⠊⠌⠬" }, { "input": "exists", "output": "⠑⠭⠊⠌⠎" }, { "input": "exit", "output": "â ‘â ­â Šâ ž" }, { "input": "exited", "output": "â ‘â ­â Šâ žâ «" }, { "input": "exiting", "output": "â ‘â ­â Šâ žâ ¬" }, { "input": "exits", "output": "â ‘â ­â Šâ žâ Ž" }, { "input": "exodus", "output": "⠑⠭⠕⠙⠥⠎" }, { "input": "exoduses", "output": "⠑⠭⠕⠙⠥⠎⠑⠎" }, { "input": "exonerate", "output": "â ‘â ­â •â â »â â žâ ‘" }, { "input": "exonerated", "output": "â ‘â ­â •â â »â â žâ «" }, { "input": "exonerates", "output": "â ‘â ­â •â â »â â žâ ‘â Ž" }, { "input": "exonerating", "output": "â ‘â ­â •â â »â â žâ ¬" }, { "input": "exoneration", "output": "â ‘â ­â •â â »â â °â " }, { "input": "exorbitance", "output": "⠑⠭⠕⠗⠃⠊⠞⠨⠑" }, { "input": "exorbitant", "output": "⠑⠭⠕⠗⠃⠊⠞â â â ž" }, { "input": "exorbitantly", "output": "⠑⠭⠕⠗⠃⠊⠞â â â žâ ‡â ½" }, { "input": "exorcise", "output": "⠑⠭⠕⠗⠉⠊⠎⠑" }, { "input": "exorcised", "output": "⠑⠭⠕⠗⠉⠊⠎⠫" }, { "input": "exorcises", "output": "⠑⠭⠕⠗⠉⠊⠎⠑⠎" }, { "input": "exorcising", "output": "⠑⠭⠕⠗⠉⠊⠎⠬" }, { "input": "exorcism", "output": "⠑⠭⠕⠗⠉⠊⠎â " }, { "input": "exorcisms", "output": "⠑⠭⠕⠗⠉⠊⠎â â Ž" }, { "input": "exorcist", "output": "⠑⠭⠕⠗⠉⠊⠌" }, { "input": "exorcists", "output": "⠑⠭⠕⠗⠉⠊⠌⠎" }, { "input": "exorcize", "output": "⠑⠭⠕⠗⠉⠊⠵⠑" }, { "input": "exorcized", "output": "⠑⠭⠕⠗⠉⠊⠵⠫" }, { "input": "exorcizes", "output": "⠑⠭⠕⠗⠉⠊⠵⠑⠎" }, { "input": "exorcizing", "output": "⠑⠭⠕⠗⠉⠊⠵⠬" }, { "input": "exotic", "output": "â ‘â ­â •â žâ Šâ ‰" }, { "input": "exotically", "output": "â ‘â ­â •â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "exotics", "output": "⠑⠭⠕⠞⠊⠉⠎" }, { "input": "expand", "output": "â ‘â ­â â ¯" }, { "input": "expandable", "output": "â ‘â ­â â ¯â â ƒâ ‡â ‘" }, { "input": "expanded", "output": "â ‘â ­â â ¯â «" }, { "input": "expanding", "output": "â ‘â ­â â ¯â ¬" }, { "input": "expands", "output": "â ‘â ­â â ¯â Ž" }, { "input": "expanse", "output": "â ‘â ­â â â â Žâ ‘" }, { "input": "expanses", "output": "â ‘â ­â â â â Žâ ‘â Ž" }, { "input": "expansion", "output": "â ‘â ­â â â â ¨â " }, { "input": "expansionist", "output": "â ‘â ­â â â â ¨â â Šâ Œ" }, { "input": "expansionists", "output": "â ‘â ­â â â â ¨â â Šâ Œâ Ž" }, { "input": "expansions", "output": "â ‘â ­â â â â ¨â â Ž" }, { "input": "expansive", "output": "â ‘â ­â â â â Žâ Šâ §â ‘" }, { "input": "expansively", "output": "â ‘â ­â â â â Žâ Šâ §â ‘⠇⠽" }, { "input": "expansiveness", "output": "â ‘â ­â â â â Žâ Šâ §â ‘â °â Ž" }, { "input": "expatiate", "output": "â ‘â ­â â â žâ Šâ â žâ ‘" }, { "input": "expatiated", "output": "â ‘â ­â â â žâ Šâ â žâ «" }, { "input": "expatiates", "output": "â ‘â ­â â â žâ Šâ â žâ ‘â Ž" }, { "input": "expatiating", "output": "â ‘â ­â â â žâ Šâ â žâ ¬" }, { "input": "expatriate", "output": "â ‘â ­â â â žâ —â Šâ â žâ ‘" }, { "input": "expatriated", "output": "â ‘â ­â â â žâ —â Šâ â žâ «" }, { "input": "expatriates", "output": "â ‘â ­â â â žâ —â Šâ â žâ ‘â Ž" }, { "input": "expatriating", "output": "â ‘â ­â â â žâ —â Šâ â žâ ¬" }, { "input": "expatriation", "output": "â ‘â ­â â â žâ —â Šâ â °â " }, { "input": "expect", "output": "â ‘â ­â â ‘⠉⠞" }, { "input": "expectancy", "output": "â ‘â ­â â ‘⠉⠞â â â ‰â ½" }, { "input": "expectant", "output": "â ‘â ­â â ‘⠉⠞â â â ž" }, { "input": "expectantly", "output": "â ‘â ­â â ‘⠉⠞â â â žâ ‡â ½" }, { "input": "expectation", "output": "â ‘â ­â â ‘⠉⠞â â °â " }, { "input": "expectations", "output": "â ‘â ­â â ‘⠉⠞â â °â â Ž" }, { "input": "expected", "output": "â ‘â ­â â ‘⠉⠞⠫" }, { "input": "expecting", "output": "â ‘â ­â â ‘⠉⠞⠬" }, { "input": "expectorant", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â â ž" }, { "input": "expectorants", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â â žâ Ž" }, { "input": "expectorate", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ ‘" }, { "input": "expectorated", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ «" }, { "input": "expectorates", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "expectorating", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ ¬" }, { "input": "expectoration", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â °â " }, { "input": "expects", "output": "â ‘â ­â â ‘⠉⠞⠎" }, { "input": "expedience", "output": "â ‘â ­â â «â Šâ °â ‘" }, { "input": "expediences", "output": "â ‘â ­â â «â Šâ °â ‘â Ž" }, { "input": "expediencies", "output": "â ‘â ­â â «â Šâ ¢â ‰â Šâ ‘â Ž" }, { "input": "expediency", "output": "â ‘â ­â â «â Šâ ¢â ‰â ½" }, { "input": "expedient", "output": "â ‘â ­â â «â Šâ ¢â ž" }, { "input": "expediently", "output": "â ‘â ­â â «â Šâ ¢â žâ ‡â ½" }, { "input": "expedients", "output": "â ‘â ­â â «â Šâ ¢â žâ Ž" }, { "input": "expedite", "output": "â ‘â ­â â «â Šâ žâ ‘" }, { "input": "expedited", "output": "â ‘â ­â â «â Šâ žâ «" }, { "input": "expediter", "output": "â ‘â ­â â «â Šâ žâ »" }, { "input": "expediters", "output": "â ‘â ­â â «â Šâ žâ »â Ž" }, { "input": "expedites", "output": "â ‘â ­â â «â Šâ žâ ‘â Ž" }, { "input": "expediting", "output": "â ‘â ­â â «â Šâ žâ ¬" }, { "input": "expedition", "output": "â ‘â ­â â «â Šâ °â " }, { "input": "expeditionary", "output": "â ‘â ­â â «â Šâ °â â œâ ½" }, { "input": "expeditions", "output": "â ‘â ­â â «â Šâ °â â Ž" }, { "input": "expeditious", "output": "â ‘â ­â â «â Šâ žâ Šâ ³â Ž" }, { "input": "expeditiously", "output": "â ‘â ­â â «â Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "expeditor", "output": "â ‘â ­â â «â Šâ žâ •â —" }, { "input": "expeditors", "output": "â ‘â ­â â «â Šâ žâ •â —â Ž" }, { "input": "expel", "output": "â ‘â ­â â ‘â ‡" }, { "input": "expelled", "output": "â ‘â ­â â ‘⠇⠇⠫" }, { "input": "expelling", "output": "â ‘â ­â â ‘⠇⠇⠬" }, { "input": "expels", "output": "â ‘â ­â â ‘⠇⠎" }, { "input": "expend", "output": "â ‘â ­â â ¢â ™" }, { "input": "expendable", "output": "â ‘â ­â â ¢â ™â â ƒâ ‡â ‘" }, { "input": "expendables", "output": "â ‘â ­â â ¢â ™â â ƒâ ‡â ‘â Ž" }, { "input": "expended", "output": "â ‘â ­â â ¢â ™â «" }, { "input": "expending", "output": "â ‘â ­â â ¢â ™â ¬" }, { "input": "expenditure", "output": "â ‘â ­â â ¢â ™â Šâ žâ ¥â —â ‘" }, { "input": "expenditures", "output": "â ‘â ­â â ¢â ™â Šâ žâ ¥â —â ‘â Ž" }, { "input": "expends", "output": "â ‘â ­â â ¢â ™â Ž" }, { "input": "expense", "output": "â ‘â ­â â ¢â Žâ ‘" }, { "input": "expenses", "output": "â ‘â ­â â ¢â Žâ ‘â Ž" }, { "input": "expensive", "output": "â ‘â ­â â ¢â Žâ Šâ §â ‘" }, { "input": "expensively", "output": "â ‘â ­â â ¢â Žâ Šâ §â ‘⠇⠽" }, { "input": "experience", "output": "â ‘â ­â â »â Šâ °â ‘" }, { "input": "experienced", "output": "â ‘â ­â â »â Šâ °â ‘â ™" }, { "input": "experiences", "output": "â ‘â ­â â »â Šâ °â ‘â Ž" }, { "input": "experiencing", "output": "â ‘â ­â â »â Šâ ¢â ‰â ¬" }, { "input": "experiment", "output": "â ‘â ­â â »â Šâ °â ž" }, { "input": "experimental", "output": "â ‘â ­â â »â Šâ °â žâ â ‡" }, { "input": "experimentally", "output": "â ‘â ­â â »â Šâ °â žâ â ‡â ‡â ½" }, { "input": "experimentation", "output": "â ‘â ­â â »â Šâ °â žâ â °â " }, { "input": "experimented", "output": "â ‘â ­â â »â Šâ °â žâ «" }, { "input": "experimenter", "output": "â ‘â ­â â »â Šâ °â žâ »" }, { "input": "experimenters", "output": "â ‘â ­â â »â Šâ °â žâ »â Ž" }, { "input": "experimenting", "output": "â ‘â ­â â »â Šâ °â žâ ¬" }, { "input": "experiments", "output": "â ‘â ­â â »â Šâ °â žâ Ž" }, { "input": "expert", "output": "â ‘â ­â â »â ž" }, { "input": "expertise", "output": "â ‘â ­â â »â žâ Šâ Žâ ‘" }, { "input": "expertly", "output": "â ‘â ­â â »â žâ ‡â ½" }, { "input": "expertness", "output": "â ‘â ­â â »â žâ °â Ž" }, { "input": "experts", "output": "â ‘â ­â â »â žâ Ž" }, { "input": "expiate", "output": "â ‘â ­â â Šâ â žâ ‘" }, { "input": "expiated", "output": "â ‘â ­â â Šâ â žâ «" }, { "input": "expiates", "output": "â ‘â ­â â Šâ â žâ ‘â Ž" }, { "input": "expiating", "output": "â ‘â ­â â Šâ â žâ ¬" }, { "input": "expiation", "output": "â ‘â ­â â Šâ â °â " }, { "input": "expiration", "output": "â ‘â ­â â Šâ —â â °â " }, { "input": "expire", "output": "â ‘â ­â â Šâ —â ‘" }, { "input": "expired", "output": "â ‘â ­â â Šâ —â «" }, { "input": "expires", "output": "â ‘â ­â â Šâ —â ‘â Ž" }, { "input": "expiring", "output": "â ‘â ­â â Šâ —â ¬" }, { "input": "expiry", "output": "â ‘â ­â â Šâ —â ½" }, { "input": "explain", "output": "â ‘â ­â â ‡â â ”" }, { "input": "explained", "output": "â ‘â ­â â ‡â â ”â «" }, { "input": "explaining", "output": "â ‘â ­â â ‡â â ”â ¬" }, { "input": "explains", "output": "â ‘â ­â â ‡â â ”â Ž" }, { "input": "explanation", "output": "â ‘â ­â â ‡â â â â °â " }, { "input": "explanations", "output": "â ‘â ­â â ‡â â â â °â â Ž" }, { "input": "explanatory", "output": "â ‘â ­â â ‡â â â â žâ •â —â ½" }, { "input": "expletive", "output": "â ‘â ­â â ‡â ‘â žâ Šâ §â ‘" }, { "input": "expletives", "output": "â ‘â ­â â ‡â ‘â žâ Šâ §â ‘â Ž" }, { "input": "explicable", "output": "â ‘â ­â â ‡â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "explicate", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ ‘" }, { "input": "explicated", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ «" }, { "input": "explicates", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "explicating", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ ¬" }, { "input": "explication", "output": "â ‘â ­â â ‡â Šâ ‰â â °â " }, { "input": "explications", "output": "â ‘â ­â â ‡â Šâ ‰â â °â â Ž" }, { "input": "explicit", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ ž" }, { "input": "explicitly", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ žâ ‡â ½" }, { "input": "explicitness", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ žâ °â Ž" }, { "input": "explode", "output": "â ‘â ­â â ‡â •⠙⠑" }, { "input": "exploded", "output": "â ‘â ­â â ‡â •⠙⠫" }, { "input": "explodes", "output": "â ‘â ­â â ‡â •⠙⠑⠎" }, { "input": "exploding", "output": "â ‘â ­â â ‡â •⠙⠬" }, { "input": "exploit", "output": "â ‘â ­â â ‡â •â Šâ ž" }, { "input": "exploitation", "output": "â ‘â ­â â ‡â •â Šâ žâ â °â " }, { "input": "exploitative", "output": "â ‘â ­â â ‡â •â Šâ žâ â žâ Šâ §â ‘" }, { "input": "exploited", "output": "â ‘â ­â â ‡â •â Šâ žâ «" }, { "input": "exploiter", "output": "â ‘â ­â â ‡â •â Šâ žâ »" }, { "input": "exploiters", "output": "â ‘â ­â â ‡â •⠊⠞⠻⠎" }, { "input": "exploiting", "output": "â ‘â ­â â ‡â •â Šâ žâ ¬" }, { "input": "exploits", "output": "â ‘â ­â â ‡â •â Šâ žâ Ž" }, { "input": "exploration", "output": "â ‘â ­â â ‡â •â —â â °â " }, { "input": "explorations", "output": "â ‘â ­â â ‡â •â —â â °â â Ž" }, { "input": "exploratory", "output": "â ‘â ­â â ‡â •â —â â žâ •â —â ½" }, { "input": "explore", "output": "â ‘â ­â â ‡â •â —â ‘" }, { "input": "explored", "output": "â ‘â ­â â ‡â •â —â «" }, { "input": "explorer", "output": "â ‘â ­â â ‡â •â —â »" }, { "input": "explorers", "output": "â ‘â ­â â ‡â •⠗⠻⠎" }, { "input": "explores", "output": "â ‘â ­â â ‡â •â —â ‘â Ž" }, { "input": "exploring", "output": "â ‘â ­â â ‡â •â —â ¬" }, { "input": "explosion", "output": "â ‘â ­â â ‡â •â ¨â " }, { "input": "explosions", "output": "â ‘â ­â â ‡â •â ¨â â Ž" }, { "input": "explosive", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘" }, { "input": "explosively", "output": "â ‘â ­â â ‡â •⠎⠊⠧⠑⠇⠽" }, { "input": "explosiveness", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘â °â Ž" }, { "input": "explosives", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘â Ž" }, { "input": "expo", "output": "â ‘â ­â â •" }, { "input": "exponent", "output": "â ‘â ­â â •â â ¢â ž" }, { "input": "exponential", "output": "â ‘â ­â â •â â ¢â žâ Šâ â ‡" }, { "input": "exponentially", "output": "â ‘â ­â â •â â ¢â žâ Šâ â ‡â ‡â ½" }, { "input": "exponentiation", "output": "â ‘â ­â â •â â ¢â žâ Šâ â °â " }, { "input": "exponents", "output": "â ‘â ­â â •â â ¢â žâ Ž" }, { "input": "export", "output": "â ‘â ­â â •â —â ž" }, { "input": "exportation", "output": "â ‘â ­â â •â —â žâ â °â " }, { "input": "exported", "output": "â ‘â ­â â •â —â žâ «" }, { "input": "exporter", "output": "â ‘â ­â â •â —â žâ »" }, { "input": "exporters", "output": "â ‘â ­â â •⠗⠞⠻⠎" }, { "input": "exporting", "output": "â ‘â ­â â •â —â žâ ¬" }, { "input": "exports", "output": "â ‘â ­â â •â —â žâ Ž" }, { "input": "expos", "output": "â ‘â ­â â •â Ž" }, { "input": "expose", "output": "â ‘â ­â â •â Žâ ‘" }, { "input": "exposed", "output": "â ‘â ­â â •â Žâ «" }, { "input": "exposes", "output": "â ‘â ­â â •â Žâ ‘â Ž" }, { "input": "exposing", "output": "â ‘â ­â â •â Žâ ¬" }, { "input": "exposition", "output": "â ‘â ­â â •â Žâ Šâ °â " }, { "input": "expositions", "output": "â ‘â ­â â •â Žâ Šâ °â â Ž" }, { "input": "expository", "output": "â ‘â ­â â •â Žâ Šâ žâ •â —â ½" }, { "input": "expostulate", "output": "â ‘â ­â â •⠌⠥⠇â â žâ ‘" }, { "input": "expostulated", "output": "â ‘â ­â â •⠌⠥⠇â â žâ «" }, { "input": "expostulates", "output": "â ‘â ­â â •⠌⠥⠇â â žâ ‘â Ž" }, { "input": "expostulating", "output": "â ‘â ­â â •⠌⠥⠇â â žâ ¬" }, { "input": "expostulation", "output": "â ‘â ­â â •⠌⠥⠇â â °â " }, { "input": "expostulations", "output": "â ‘â ­â â •⠌⠥⠇â â °â â Ž" }, { "input": "exposure", "output": "â ‘â ­â â •⠎⠥⠗⠑" }, { "input": "exposures", "output": "â ‘â ­â â •⠎⠥⠗⠑⠎" }, { "input": "expound", "output": "â ‘â ­â â ¨â ™" }, { "input": "expounded", "output": "â ‘â ­â â ¨â ™â «" }, { "input": "expounding", "output": "â ‘â ­â â ¨â ™â ¬" }, { "input": "expounds", "output": "â ‘â ­â â ¨â ™â Ž" }, { "input": "express", "output": "â ‘â ­â â —â ‘â Žâ Ž" }, { "input": "expressed", "output": "â ‘â ­â â —â ‘â Žâ Žâ «" }, { "input": "expresses", "output": "â ‘â ­â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "expressible", "output": "â ‘â ­â â —⠑⠎⠎⠊⠃⠇⠑" }, { "input": "expressing", "output": "â ‘â ­â â —â ‘â Žâ Žâ ¬" }, { "input": "expression", "output": "â ‘â ­â â —â ‘â Žâ ¨â " }, { "input": "expressionism", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Žâ " }, { "input": "expressionist", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Œ" }, { "input": "expressionists", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Œâ Ž" }, { "input": "expressionless", "output": "â ‘â ­â â —â ‘â Žâ ¨â â ¨â Ž" }, { "input": "expressions", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Ž" }, { "input": "expressive", "output": "â ‘â ­â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "expressively", "output": "â ‘â ­â â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "expressiveness", "output": "â ‘â ­â â —â ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "expressly", "output": "â ‘â ­â â —⠑⠎⠎⠇⠽" }, { "input": "expressway", "output": "â ‘â ­â â —â ‘â Žâ Žâ ºâ â ½" }, { "input": "expressways", "output": "â ‘â ­â â —â ‘â Žâ Žâ ºâ â ½â Ž" }, { "input": "expropriate", "output": "â ‘â ­â â —â •â â —â Šâ â žâ ‘" }, { "input": "expropriated", "output": "â ‘â ­â â —â •â â —â Šâ â žâ «" }, { "input": "expropriates", "output": "â ‘â ­â â —â •â â —â Šâ â žâ ‘â Ž" }, { "input": "expropriating", "output": "â ‘â ­â â —â •â â —â Šâ â žâ ¬" }, { "input": "expropriation", "output": "â ‘â ­â â —â •â â —â Šâ â °â " }, { "input": "expropriations", "output": "â ‘â ­â â —â •â â —â Šâ â °â â Ž" }, { "input": "expulsion", "output": "â ‘â ­â â ¥â ‡â ¨â " }, { "input": "expulsions", "output": "â ‘â ­â â ¥â ‡â ¨â â Ž" }, { "input": "expunge", "output": "â ‘â ­â â ¥â â ›â ‘" }, { "input": "expunged", "output": "â ‘â ­â â ¥â â ›â «" }, { "input": "expunges", "output": "â ‘â ­â â ¥â â ›â ‘â Ž" }, { "input": "expunging", "output": "â ‘â ­â â ¥â â ›â ¬" }, { "input": "expurgate", "output": "â ‘â ­â â ¥â —â ›â â žâ ‘" }, { "input": "expurgated", "output": "â ‘â ­â â ¥â —â ›â â žâ «" }, { "input": "expurgates", "output": "â ‘â ­â â ¥â —â ›â â žâ ‘â Ž" }, { "input": "expurgating", "output": "â ‘â ­â â ¥â —â ›â â žâ ¬" }, { "input": "expurgation", "output": "â ‘â ­â â ¥â —â ›â â °â " }, { "input": "expurgations", "output": "â ‘â ­â â ¥â —â ›â â °â â Ž" }, { "input": "exquisite", "output": "⠑⠭⠟⠥⠊⠎⠊⠞⠑" }, { "input": "exquisitely", "output": "⠑⠭⠟⠥⠊⠎⠊⠞⠑⠇⠽" }, { "input": "extant", "output": "â ‘â ­â žâ â â ž" }, { "input": "extemporaneous", "output": "â ‘â ­â žâ ‘â â â •â —â â â ‘⠳⠎" }, { "input": "extemporaneously", "output": "â ‘â ­â žâ ‘â â â •â —â â â ‘⠳⠎⠇⠽" }, { "input": "extempore", "output": "â ‘â ­â žâ ‘â â â •â —â ‘" }, { "input": "extemporize", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠑" }, { "input": "extemporized", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠫" }, { "input": "extemporizes", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠑⠎" }, { "input": "extemporizing", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠬" }, { "input": "extend", "output": "⠑⠭⠞⠢⠙" }, { "input": "extendable", "output": "⠑⠭⠞⠢⠙â â ƒâ ‡â ‘" }, { "input": "extended", "output": "⠑⠭⠞⠢⠙⠫" }, { "input": "extendible", "output": "⠑⠭⠞⠢⠙⠊⠃⠇⠑" }, { "input": "extending", "output": "⠑⠭⠞⠢⠙⠬" }, { "input": "extends", "output": "⠑⠭⠞⠢⠙⠎" }, { "input": "extension", "output": "⠑⠭⠞⠢⠨â " }, { "input": "extensional", "output": "⠑⠭⠞⠢⠨â â â ‡" }, { "input": "extensions", "output": "⠑⠭⠞⠢⠨â â Ž" }, { "input": "extensive", "output": "⠑⠭⠞⠢⠎⠊⠧⠑" }, { "input": "extensively", "output": "⠑⠭⠞⠢⠎⠊⠧⠑⠇⠽" }, { "input": "extensiveness", "output": "⠑⠭⠞⠢⠎⠊⠧⠑⠰⠎" }, { "input": "extent", "output": "⠑⠭⠞⠢⠞" }, { "input": "extents", "output": "⠑⠭⠞⠢⠞⠎" }, { "input": "extenuate", "output": "⠑⠭⠞⠢⠥â â žâ ‘" }, { "input": "extenuated", "output": "⠑⠭⠞⠢⠥â â žâ «" }, { "input": "extenuates", "output": "⠑⠭⠞⠢⠥â â žâ ‘â Ž" }, { "input": "extenuating", "output": "⠑⠭⠞⠢⠥â â žâ ¬" }, { "input": "extenuation", "output": "⠑⠭⠞⠢⠥â â °â " }, { "input": "exterior", "output": "⠑⠭⠞⠻⠊⠕⠗" }, { "input": "exteriors", "output": "⠑⠭⠞⠻⠊⠕⠗⠎" }, { "input": "exterminate", "output": "â ‘â ­â žâ »â â ”â â žâ ‘" }, { "input": "exterminated", "output": "â ‘â ­â žâ »â â ”â â žâ «" }, { "input": "exterminates", "output": "â ‘â ­â žâ »â â ”â â žâ ‘â Ž" }, { "input": "exterminating", "output": "â ‘â ­â žâ »â â ”â â žâ ¬" }, { "input": "extermination", "output": "â ‘â ­â žâ »â â ”â â °â " }, { "input": "exterminations", "output": "â ‘â ­â žâ »â â ”â â °â â Ž" }, { "input": "exterminator", "output": "â ‘â ­â žâ »â â ”â â žâ •â —" }, { "input": "exterminators", "output": "â ‘â ­â žâ »â â ”â â žâ •â —â Ž" }, { "input": "external", "output": "â ‘â ­â žâ »â â â ‡" }, { "input": "externally", "output": "â ‘â ­â žâ »â â â ‡â ‡â ½" }, { "input": "externals", "output": "â ‘â ­â žâ »â â â ‡â Ž" }, { "input": "extinct", "output": "⠑⠭⠞⠔⠉⠞" }, { "input": "extincted", "output": "⠑⠭⠞⠔⠉⠞⠫" }, { "input": "extincting", "output": "⠑⠭⠞⠔⠉⠞⠬" }, { "input": "extinction", "output": "⠑⠭⠞⠔⠉⠰â " }, { "input": "extinctions", "output": "⠑⠭⠞⠔⠉⠰â â Ž" }, { "input": "extincts", "output": "⠑⠭⠞⠔⠉⠞⠎" }, { "input": "extinguish", "output": "⠑⠭⠞⠬⠥⠊⠩" }, { "input": "extinguishable", "output": "⠑⠭⠞⠬⠥⠊⠩â â ƒâ ‡â ‘" }, { "input": "extinguished", "output": "⠑⠭⠞⠬⠥⠊⠩⠫" }, { "input": "extinguisher", "output": "⠑⠭⠞⠬⠥⠊⠩⠻" }, { "input": "extinguishers", "output": "⠑⠭⠞⠬⠥⠊⠩⠻⠎" }, { "input": "extinguishes", "output": "⠑⠭⠞⠬⠥⠊⠩⠑⠎" }, { "input": "extinguishing", "output": "⠑⠭⠞⠬⠥⠊⠩⠬" }, { "input": "extirpate", "output": "â ‘â ­â žâ Šâ —â â â žâ ‘" }, { "input": "extirpated", "output": "â ‘â ­â žâ Šâ —â â â žâ «" }, { "input": "extirpates", "output": "â ‘â ­â žâ Šâ —â â â žâ ‘â Ž" }, { "input": "extirpating", "output": "â ‘â ­â žâ Šâ —â â â žâ ¬" }, { "input": "extirpation", "output": "â ‘â ­â žâ Šâ —â â â °â " }, { "input": "extol", "output": "â ‘â ­â žâ •â ‡" }, { "input": "extoll", "output": "⠑⠭⠞⠕⠇⠇" }, { "input": "extolled", "output": "⠑⠭⠞⠕⠇⠇⠫" }, { "input": "extolling", "output": "⠑⠭⠞⠕⠇⠇⠬" }, { "input": "extolls", "output": "⠑⠭⠞⠕⠇⠇⠎" }, { "input": "extols", "output": "⠑⠭⠞⠕⠇⠎" }, { "input": "extort", "output": "â ‘â ­â žâ •â —â ž" }, { "input": "extorted", "output": "â ‘â ­â žâ •â —â žâ «" }, { "input": "extorting", "output": "â ‘â ­â žâ •â —â žâ ¬" }, { "input": "extortion", "output": "â ‘â ­â žâ •â —â °â " }, { "input": "extortionate", "output": "â ‘â ­â žâ •â —â °â â â žâ ‘" }, { "input": "extortionist", "output": "â ‘â ­â žâ •â —â °â â Šâ Œ" }, { "input": "extortionists", "output": "â ‘â ­â žâ •â —â °â â Šâ Œâ Ž" }, { "input": "extorts", "output": "â ‘â ­â žâ •â —â žâ Ž" }, { "input": "extra", "output": "â ‘â ­â žâ —â " }, { "input": "extract", "output": "â ‘â ­â žâ —â â ‰â ž" }, { "input": "extracted", "output": "â ‘â ­â žâ —â â ‰â žâ «" }, { "input": "extracting", "output": "â ‘â ­â žâ —â â ‰â žâ ¬" }, { "input": "extraction", "output": "â ‘â ­â žâ —â â ‰â °â " }, { "input": "extractions", "output": "â ‘â ­â žâ —â â ‰â °â â Ž" }, { "input": "extractor", "output": "â ‘â ­â žâ —â â ‰â žâ •â —" }, { "input": "extractors", "output": "â ‘â ­â žâ —â â ‰â žâ •â —â Ž" }, { "input": "extracts", "output": "â ‘â ­â žâ —â â ‰â žâ Ž" }, { "input": "extracurricular", "output": "â ‘â ­â žâ —â â ‰â ¥â —⠗⠊⠉⠥⠇⠜" }, { "input": "extradite", "output": "â ‘â ­â žâ —â â ™â Šâ žâ ‘" }, { "input": "extradited", "output": "â ‘â ­â žâ —â â ™â Šâ žâ «" }, { "input": "extradites", "output": "â ‘â ­â žâ —â â ™â Šâ žâ ‘â Ž" }, { "input": "extraditing", "output": "â ‘â ­â žâ —â â ™â Šâ žâ ¬" }, { "input": "extradition", "output": "â ‘â ­â žâ —â â ™â Šâ °â " }, { "input": "extraditions", "output": "â ‘â ­â žâ —â â ™â Šâ °â â Ž" }, { "input": "extramarital", "output": "â ‘â ­â žâ —â â â œâ Šâ žâ â ‡" }, { "input": "extraneous", "output": "â ‘â ­â žâ —â â â ‘⠳⠎" }, { "input": "extraneously", "output": "â ‘â ­â žâ —â â â ‘⠳⠎⠇⠽" }, { "input": "extraordinarily", "output": "â ‘â ­â žâ —â â •⠗⠙⠔⠜⠊⠇⠽" }, { "input": "extraordinary", "output": "â ‘â ­â žâ —â â •⠗⠙⠔⠜⠽" }, { "input": "extrapolate", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ ‘" }, { "input": "extrapolated", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ «" }, { "input": "extrapolates", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ ‘â Ž" }, { "input": "extrapolating", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ ¬" }, { "input": "extrapolation", "output": "â ‘â ­â žâ —â â â •â ‡â â °â " }, { "input": "extrapolations", "output": "â ‘â ­â žâ —â â â •â ‡â â °â â Ž" }, { "input": "extras", "output": "â ‘â ­â žâ —â â Ž" }, { "input": "extrasensory", "output": "â ‘â ­â žâ —â â Žâ ¢â Žâ •â —â ½" }, { "input": "extraterrestrial", "output": "â ‘â ­â žâ —â â žâ »â —⠑⠌⠗⠊â â ‡" }, { "input": "extraterrestrials", "output": "â ‘â ­â žâ —â â žâ »â —⠑⠌⠗⠊â â ‡â Ž" }, { "input": "extravagance", "output": "â ‘â ­â žâ —â â §â â ›â ¨â ‘" }, { "input": "extravagances", "output": "â ‘â ­â žâ —â â §â â ›â ¨â ‘â Ž" }, { "input": "extravagant", "output": "â ‘â ­â žâ —â â §â â ›â â â ž" }, { "input": "extravagantly", "output": "â ‘â ­â žâ —â â §â â ›â â â žâ ‡â ½" }, { "input": "extravaganza", "output": "â ‘â ­â žâ —â â §â â ›â â â µâ " }, { "input": "extravaganzas", "output": "â ‘â ­â žâ —â â §â â ›â â â µâ â Ž" }, { "input": "extravert", "output": "â ‘â ­â žâ —â â §â »â ž" }, { "input": "extraverted", "output": "â ‘â ­â žâ —â â §â »â žâ «" }, { "input": "extraverts", "output": "â ‘â ­â žâ —â â §â »â žâ Ž" }, { "input": "extreme", "output": "â ‘â ­â žâ —â ‘â â ‘" }, { "input": "extremely", "output": "â ‘â ­â žâ —â ‘â â ‘⠇⠽" }, { "input": "extremer", "output": "â ‘â ­â žâ —â ‘â â »" }, { "input": "extremes", "output": "â ‘â ­â žâ —â ‘â â ‘â Ž" }, { "input": "extremest", "output": "â ‘â ­â žâ —â ‘â â ‘â Œ" }, { "input": "extremism", "output": "â ‘â ­â žâ —â ‘â â Šâ Žâ " }, { "input": "extremist", "output": "â ‘â ­â žâ —â ‘â â Šâ Œ" }, { "input": "extremists", "output": "â ‘â ­â žâ —â ‘â â Šâ Œâ Ž" }, { "input": "extremities", "output": "â ‘â ­â žâ —â ‘â â Šâ žâ Šâ ‘â Ž" }, { "input": "extremity", "output": "â ‘â ­â žâ —â ‘â â °â ½" }, { "input": "extricate", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ ‘" }, { "input": "extricated", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ «" }, { "input": "extricates", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "extricating", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ ¬" }, { "input": "extrication", "output": "â ‘â ­â žâ —â Šâ ‰â â °â " }, { "input": "extrinsic", "output": "⠑⠭⠞⠗⠔⠎⠊⠉" }, { "input": "extrinsically", "output": "⠑⠭⠞⠗⠔⠎⠊⠉â â ‡â ‡â ½" }, { "input": "extroversion", "output": "⠑⠭⠞⠗⠕⠧⠻⠨â " }, { "input": "extrovert", "output": "⠑⠭⠞⠗⠕⠧⠻⠞" }, { "input": "extroverted", "output": "⠑⠭⠞⠗⠕⠧⠻⠞⠫" }, { "input": "extroverts", "output": "⠑⠭⠞⠗⠕⠧⠻⠞⠎" }, { "input": "extrude", "output": "⠑⠭⠞⠗⠥⠙⠑" }, { "input": "extruded", "output": "⠑⠭⠞⠗⠥⠙⠫" }, { "input": "extrudes", "output": "⠑⠭⠞⠗⠥⠙⠑⠎" }, { "input": "extruding", "output": "⠑⠭⠞⠗⠥⠙⠬" }, { "input": "extrusion", "output": "⠑⠭⠞⠗⠥⠨â " }, { "input": "extrusions", "output": "⠑⠭⠞⠗⠥⠨â â Ž" }, { "input": "exuberance", "output": "⠑⠭⠥⠃⠻⠨⠑" }, { "input": "exuberant", "output": "⠑⠭⠥⠃⠻â â â ž" }, { "input": "exuberantly", "output": "⠑⠭⠥⠃⠻â â â žâ ‡â ½" }, { "input": "exude", "output": "⠑⠭⠥⠙⠑" }, { "input": "exuded", "output": "⠑⠭⠥⠙⠫" }, { "input": "exudes", "output": "⠑⠭⠥⠙⠑⠎" }, { "input": "exuding", "output": "⠑⠭⠥⠙⠬" }, { "input": "exult", "output": "⠑⠭⠥⠇⠞" }, { "input": "exultant", "output": "⠑⠭⠥⠇⠞â â â ž" }, { "input": "exultantly", "output": "⠑⠭⠥⠇⠞â â â žâ ‡â ½" }, { "input": "exultation", "output": "⠑⠭⠥⠇⠞â â °â " }, { "input": "exulted", "output": "⠑⠭⠥⠇⠞⠫" }, { "input": "exulting", "output": "⠑⠭⠥⠇⠞⠬" }, { "input": "exults", "output": "⠑⠭⠥⠇⠞⠎" }, { "input": "eye", "output": "⠑⠽⠑" }, { "input": "eyeball", "output": "⠑⠽⠑⠃â â ‡â ‡" }, { "input": "eyeballed", "output": "⠑⠽⠑⠃â â ‡â ‡â «" }, { "input": "eyeballing", "output": "⠑⠽⠑⠃â â ‡â ‡â ¬" }, { "input": "eyeballs", "output": "⠑⠽⠑⠃â â ‡â ‡â Ž" }, { "input": "eyebrow", "output": "⠑⠽⠑⠃⠗⠪" }, { "input": "eyebrows", "output": "⠑⠽⠑⠃⠗⠪⠎" }, { "input": "eyed", "output": "⠑⠽⠫" }, { "input": "eyeful", "output": "⠑⠽⠑⠰⠇" }, { "input": "eyefuls", "output": "⠑⠽⠑⠰⠇⠎" }, { "input": "eyeglass", "output": "⠑⠽⠑⠛⠇â â Žâ Ž" }, { "input": "eyeglasses", "output": "⠑⠽⠑⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "eyeing", "output": "⠑⠽⠑⠬" }, { "input": "eyelash", "output": "⠑⠽⠑⠇â â ©" }, { "input": "eyelashes", "output": "⠑⠽⠑⠇â â ©â ‘â Ž" }, { "input": "eyelet", "output": "⠑⠽⠑⠇⠑⠞" }, { "input": "eyelets", "output": "⠑⠽⠑⠇⠑⠞⠎" }, { "input": "eyelid", "output": "⠑⠽⠑⠇⠊⠙" }, { "input": "eyelids", "output": "⠑⠽⠑⠇⠊⠙⠎" }, { "input": "eyeliner", "output": "⠑⠽⠑⠇⠔⠻" }, { "input": "eyeliners", "output": "⠑⠽⠑⠇⠔⠻⠎" }, { "input": "eyepiece", "output": "⠑⠽⠑â â Šâ ‘⠉⠑" }, { "input": "eyepieces", "output": "⠑⠽⠑â â Šâ ‘⠉⠑⠎" }, { "input": "eyes", "output": "⠑⠽⠑⠎" }, { "input": "eyesight", "output": "⠑⠽⠑⠎⠊⠣⠞" }, { "input": "eyesore", "output": "⠑⠽⠑⠎⠕⠗⠑" }, { "input": "eyesores", "output": "⠑⠽⠑⠎⠕⠗⠑⠎" }, { "input": "eyestrain", "output": "⠑⠽⠑⠌⠗â â ”" }, { "input": "eyeteeth", "output": "⠑⠽⠑⠞⠑⠑⠹" }, { "input": "eyetooth", "output": "⠑⠽⠑⠞⠕⠕⠹" }, { "input": "eyewitness", "output": "⠑⠽⠑⠺⠊⠞⠰⠎" }, { "input": "eyewitnesses", "output": "⠑⠽⠑⠺⠊⠞⠰⠎⠑⠎" }, { "input": "eying", "output": "⠑⠽⠬" }, { "input": "eyrie", "output": "⠑⠽⠗⠊⠑" }, { "input": "f", "output": "â °â ‹" }, { "input": "fa", "output": "â ‹â " }, { "input": "fable", "output": "â ‹â â ƒâ ‡â ‘" }, { "input": "fabled", "output": "â ‹â â ƒâ ‡â «" }, { "input": "fables", "output": "â ‹â â ƒâ ‡â ‘â Ž" }, { "input": "fabric", "output": "â ‹â â ƒâ —â Šâ ‰" }, { "input": "fabricate", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ ‘" }, { "input": "fabricated", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ «" }, { "input": "fabricates", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "fabricating", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ ¬" }, { "input": "fabrication", "output": "â ‹â â ƒâ —â Šâ ‰â â °â " }, { "input": "fabrications", "output": "â ‹â â ƒâ —â Šâ ‰â â °â â Ž" }, { "input": "fabrics", "output": "â ‹â â ƒâ —⠊⠉⠎" }, { "input": "fabulous", "output": "â ‹â â ƒâ ¥â ‡â ³â Ž" }, { "input": "fabulously", "output": "â ‹â â ƒâ ¥â ‡â ³â Žâ ‡â ½" }, { "input": "facade", "output": "â ‹â â ‰â â ™â ‘" }, { "input": "facades", "output": "â ‹â â ‰â â ™â ‘â Ž" }, { "input": "face", "output": "â ‹â â ‰â ‘" }, { "input": "faced", "output": "â ‹â â ‰â «" }, { "input": "faceless", "output": "â ‹â â ‰â ‘⠨⠎" }, { "input": "facelift", "output": "â ‹â â ‰â ‘⠇⠊⠋⠞" }, { "input": "facelifts", "output": "â ‹â â ‰â ‘⠇⠊⠋⠞⠎" }, { "input": "faces", "output": "â ‹â â ‰â ‘â Ž" }, { "input": "facet", "output": "â ‹â â ‰â ‘â ž" }, { "input": "faceted", "output": "â ‹â â ‰â ‘â žâ «" }, { "input": "faceting", "output": "â ‹â â ‰â ‘â žâ ¬" }, { "input": "facetious", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎" }, { "input": "facetiously", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎⠇⠽" }, { "input": "facetiousness", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎⠰⠎" }, { "input": "facets", "output": "â ‹â â ‰â ‘â žâ Ž" }, { "input": "facetted", "output": "â ‹â â ‰â ‘â žâ žâ «" }, { "input": "facetting", "output": "â ‹â â ‰â ‘â žâ žâ ¬" }, { "input": "facial", "output": "â ‹â â ‰â Šâ â ‡" }, { "input": "facially", "output": "â ‹â â ‰â Šâ â ‡â ‡â ½" }, { "input": "facials", "output": "â ‹â â ‰â Šâ â ‡â Ž" }, { "input": "facile", "output": "â ‹â â ‰â Šâ ‡â ‘" }, { "input": "facilitate", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ ‘" }, { "input": "facilitated", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ «" }, { "input": "facilitates", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ ‘â Ž" }, { "input": "facilitating", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ ¬" }, { "input": "facilitation", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â °â " }, { "input": "facilities", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "facility", "output": "â ‹â â ‰â Šâ ‡â °â ½" }, { "input": "facing", "output": "â ‹â â ‰â ¬" }, { "input": "facings", "output": "â ‹â â ‰â ¬â Ž" }, { "input": "facsimile", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘" }, { "input": "facsimiled", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â «" }, { "input": "facsimileing", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘â ¬" }, { "input": "facsimiles", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘â Ž" }, { "input": "fact", "output": "â ‹â â ‰â ž" }, { "input": "faction", "output": "â ‹â â ‰â °â " }, { "input": "factional", "output": "â ‹â â ‰â °â â â ‡" }, { "input": "factionalism", "output": "â ‹â â ‰â °â â â ‡â Šâ Žâ " }, { "input": "factions", "output": "â ‹â â ‰â °â â Ž" }, { "input": "factitious", "output": "â ‹â â ‰â žâ Šâ žâ Šâ ³â Ž" }, { "input": "factor", "output": "â ‹â â ‰â žâ •â —" }, { "input": "factored", "output": "â ‹â â ‰â žâ •â —â «" }, { "input": "factorial", "output": "â ‹â â ‰â žâ •â —â Šâ â ‡" }, { "input": "factories", "output": "â ‹â â ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "factoring", "output": "â ‹â â ‰â žâ •â —â ¬" }, { "input": "factorization", "output": "â ‹â â ‰â žâ •â —â Šâ µâ â °â " }, { "input": "factorize", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠑" }, { "input": "factorizing", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠬" }, { "input": "factors", "output": "â ‹â â ‰â žâ •â —â Ž" }, { "input": "factory", "output": "â ‹â â ‰â žâ •â —â ½" }, { "input": "factotum", "output": "â ‹â â ‰â žâ •â žâ ¥â " }, { "input": "factotums", "output": "â ‹â â ‰â žâ •â žâ ¥â â Ž" }, { "input": "facts", "output": "â ‹â â ‰â žâ Ž" }, { "input": "factual", "output": "â ‹â â ‰â žâ ¥â â ‡" }, { "input": "factually", "output": "â ‹â â ‰â žâ ¥â â ‡â ‡â ½" }, { "input": "faculties", "output": "â ‹â â ‰â ¥â ‡â žâ Šâ ‘â Ž" }, { "input": "faculty", "output": "â ‹â â ‰â ¥â ‡â žâ ½" }, { "input": "fad", "output": "â ‹â â ™" }, { "input": "faddish", "output": "â ‹â â ™â ™â Šâ ©" }, { "input": "fade", "output": "â ‹â â ™â ‘" }, { "input": "faded", "output": "â ‹â â ™â «" }, { "input": "fades", "output": "â ‹â â ™â ‘â Ž" }, { "input": "fading", "output": "â ‹â â ™â ¬" }, { "input": "fads", "output": "â ‹â â ™â Ž" }, { "input": "faecal", "output": "â ‹â â ‘â ‰â â ‡" }, { "input": "faeces", "output": "â ‹â â ‘⠉⠑⠎" }, { "input": "fag", "output": "â ‹â â ›" }, { "input": "fagged", "output": "â ‹â â ¶â «" }, { "input": "fagging", "output": "â ‹â â ¶â ¬" }, { "input": "faggot", "output": "â ‹â â ¶â •â ž" }, { "input": "faggots", "output": "â ‹â â ¶â •â žâ Ž" }, { "input": "fagot", "output": "â ‹â â ›â •â ž" }, { "input": "fagots", "output": "â ‹â â ›â •â žâ Ž" }, { "input": "fags", "output": "â ‹â â ›â Ž" }, { "input": "fail", "output": "â ‹â â Šâ ‡" }, { "input": "failed", "output": "â ‹â â Šâ ‡â «" }, { "input": "failing", "output": "â ‹â â Šâ ‡â ¬" }, { "input": "failings", "output": "â ‹â â Šâ ‡â ¬â Ž" }, { "input": "fails", "output": "â ‹â â Šâ ‡â Ž" }, { "input": "failure", "output": "â ‹â â Šâ ‡â ¥â —â ‘" }, { "input": "failures", "output": "â ‹â â Šâ ‡â ¥â —â ‘â Ž" }, { "input": "fain", "output": "â ‹â â ”" }, { "input": "fainer", "output": "â ‹â â ”â »" }, { "input": "fainest", "output": "â ‹â â ”â ‘â Œ" }, { "input": "faint", "output": "â ‹â â ”â ž" }, { "input": "fainted", "output": "â ‹â â ”â žâ «" }, { "input": "fainter", "output": "â ‹â â ”â žâ »" }, { "input": "faintest", "output": "â ‹â â ”â žâ ‘â Œ" }, { "input": "fainthearted", "output": "â ‹â â ”⠞⠓⠑⠜⠞⠫" }, { "input": "fainting", "output": "â ‹â â ”â žâ ¬" }, { "input": "faintly", "output": "â ‹â â ”⠞⠇⠽" }, { "input": "faintness", "output": "â ‹â â ”â žâ °â Ž" }, { "input": "faints", "output": "â ‹â â ”â žâ Ž" }, { "input": "fair", "output": "â ‹â â Šâ —" }, { "input": "fairer", "output": "â ‹â â Šâ —â »" }, { "input": "fairest", "output": "â ‹â â Šâ —â ‘â Œ" }, { "input": "fairground", "output": "â ‹â â Šâ —⠛⠗⠨⠙" }, { "input": "fairgrounds", "output": "â ‹â â Šâ —⠛⠗⠨⠙⠎" }, { "input": "fairies", "output": "â ‹â â Šâ —â Šâ ‘â Ž" }, { "input": "fairly", "output": "â ‹â â Šâ —⠇⠽" }, { "input": "fairness", "output": "â ‹â â Šâ —â °â Ž" }, { "input": "fairs", "output": "â ‹â â Šâ —â Ž" }, { "input": "fairway", "output": "â ‹â â Šâ —â ºâ â ½" }, { "input": "fairways", "output": "â ‹â â Šâ —â ºâ â ½â Ž" }, { "input": "fairy", "output": "â ‹â â Šâ —â ½" }, { "input": "fairyland", "output": "â ‹â â Šâ —⠽⠇⠯" }, { "input": "fairylands", "output": "â ‹â â Šâ —⠽⠇⠯⠎" }, { "input": "faith", "output": "â ‹â â Šâ ¹" }, { "input": "faithful", "output": "â ‹â â Šâ ¹â °â ‡" }, { "input": "faithfully", "output": "â ‹â â Šâ ¹â °â ‡â ‡â ½" }, { "input": "faithfulness", "output": "â ‹â â Šâ ¹â °â ‡â °â Ž" }, { "input": "faithfuls", "output": "â ‹â â Šâ ¹â °â ‡â Ž" }, { "input": "faithless", "output": "â ‹â â Šâ ¹â ¨â Ž" }, { "input": "faithlessly", "output": "â ‹â â Šâ ¹â ¨â Žâ ‡â ½" }, { "input": "faithlessness", "output": "â ‹â â Šâ ¹â ¨â Žâ °â Ž" }, { "input": "faiths", "output": "â ‹â â Šâ ¹â Ž" }, { "input": "fake", "output": "â ‹â â …â ‘" }, { "input": "faked", "output": "â ‹â â …â «" }, { "input": "faker", "output": "â ‹â â …â »" }, { "input": "fakers", "output": "â ‹â â …⠻⠎" }, { "input": "fakes", "output": "â ‹â â …â ‘â Ž" }, { "input": "faking", "output": "â ‹â â …â ¬" }, { "input": "fakir", "output": "â ‹â â …â Šâ —" }, { "input": "fakirs", "output": "â ‹â â …â Šâ —â Ž" }, { "input": "falcon", "output": "â ‹â â ‡â ‰â •â " }, { "input": "falconer", "output": "â ‹â â ‡â ‰â •â â »" }, { "input": "falconers", "output": "â ‹â â ‡â ‰â •â â »â Ž" }, { "input": "falconry", "output": "â ‹â â ‡â ‰â •â â —â ½" }, { "input": "falcons", "output": "â ‹â â ‡â ‰â •â â Ž" }, { "input": "fall", "output": "â ‹â â ‡â ‡" }, { "input": "fallacies", "output": "â ‹â â ‡â ‡â â ‰â Šâ ‘â Ž" }, { "input": "fallacious", "output": "â ‹â â ‡â ‡â â ‰â Šâ ³â Ž" }, { "input": "fallaciously", "output": "â ‹â â ‡â ‡â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "fallacy", "output": "â ‹â â ‡â ‡â â ‰â ½" }, { "input": "fallen", "output": "â ‹â â ‡â ‡â ¢" }, { "input": "fallibility", "output": "â ‹â â ‡â ‡â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "fallible", "output": "â ‹â â ‡â ‡â Šâ ƒâ ‡â ‘" }, { "input": "fallibly", "output": "â ‹â â ‡â ‡â Šâ ƒâ ‡â ½" }, { "input": "falling", "output": "â ‹â â ‡â ‡â ¬" }, { "input": "falloff", "output": "â ‹â â ‡â ‡â ·â ‹" }, { "input": "falloffs", "output": "â ‹â â ‡â ‡â ·â ‹â Ž" }, { "input": "fallout", "output": "â ‹â â ‡â ‡â ³â ž" }, { "input": "fallow", "output": "â ‹â â ‡â ‡â ª" }, { "input": "fallowed", "output": "â ‹â â ‡â ‡â ªâ «" }, { "input": "fallowing", "output": "â ‹â â ‡â ‡â ªâ ¬" }, { "input": "fallows", "output": "â ‹â â ‡â ‡â ªâ Ž" }, { "input": "falls", "output": "â ‹â â ‡â ‡â Ž" }, { "input": "false", "output": "â ‹â â ‡â Žâ ‘" }, { "input": "falsehood", "output": "â ‹â â ‡â Žâ ‘â “â •â •â ™" }, { "input": "falsehoods", "output": "â ‹â â ‡â Žâ ‘⠓⠕⠕⠙⠎" }, { "input": "falsely", "output": "â ‹â â ‡â Žâ ‘⠇⠽" }, { "input": "falseness", "output": "â ‹â â ‡â Žâ ‘â °â Ž" }, { "input": "falser", "output": "â ‹â â ‡â Žâ »" }, { "input": "falsest", "output": "â ‹â â ‡â Žâ ‘â Œ" }, { "input": "falsetto", "output": "â ‹â â ‡â Žâ ‘â žâ žâ •" }, { "input": "falsettos", "output": "â ‹â â ‡â Žâ ‘â žâ žâ •â Ž" }, { "input": "falsifiable", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ â ƒâ ‡â ‘" }, { "input": "falsification", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "falsifications", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "falsified", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ «" }, { "input": "falsifies", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "falsify", "output": "â ‹â â ‡â Žâ Šâ ‹â ½" }, { "input": "falsifying", "output": "â ‹â â ‡â Žâ Šâ ‹â ½â ¬" }, { "input": "falsities", "output": "â ‹â â ‡â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "falsity", "output": "â ‹â â ‡â Žâ °â ½" }, { "input": "falter", "output": "â ‹â â ‡â žâ »" }, { "input": "faltered", "output": "â ‹â â ‡â žâ »â «" }, { "input": "faltering", "output": "â ‹â â ‡â žâ »â ¬" }, { "input": "falteringly", "output": "â ‹â â ‡â žâ »â ¬â ‡â ½" }, { "input": "falterings", "output": "â ‹â â ‡â žâ »â ¬â Ž" }, { "input": "falters", "output": "â ‹â â ‡â žâ »â Ž" }, { "input": "fame", "output": "â ‹â â â ‘" }, { "input": "famed", "output": "â ‹â â â «" }, { "input": "familial", "output": "â ‹â â â Šâ ‡â Šâ â ‡" }, { "input": "familiar", "output": "â ‹â â â Šâ ‡â Šâ œ" }, { "input": "familiarity", "output": "â ‹â â â Šâ ‡â Šâ œâ °â ½" }, { "input": "familiarization", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ â °â " }, { "input": "familiarize", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ ‘" }, { "input": "familiarized", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ «" }, { "input": "familiarizes", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ ‘â Ž" }, { "input": "familiarizing", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ ¬" }, { "input": "familiarly", "output": "â ‹â â â Šâ ‡â Šâ œâ ‡â ½" }, { "input": "familiars", "output": "â ‹â â â Šâ ‡â Šâ œâ Ž" }, { "input": "families", "output": "â ‹â â â Šâ ‡â Šâ ‘â Ž" }, { "input": "family", "output": "â ‹â â â Šâ ‡â ½" }, { "input": "famine", "output": "â ‹â â â ”â ‘" }, { "input": "famines", "output": "â ‹â â â ”â ‘â Ž" }, { "input": "famish", "output": "â ‹â â â Šâ ©" }, { "input": "famished", "output": "â ‹â â â Šâ ©â «" }, { "input": "famishes", "output": "â ‹â â â Šâ ©â ‘â Ž" }, { "input": "famishing", "output": "â ‹â â â Šâ ©â ¬" }, { "input": "famous", "output": "â ‹â â â ³â Ž" }, { "input": "famously", "output": "â ‹â â â ³â Žâ ‡â ½" }, { "input": "fan", "output": "â ‹â â " }, { "input": "fanatic", "output": "â ‹â â â â žâ Šâ ‰" }, { "input": "fanatical", "output": "â ‹â â â â žâ Šâ ‰â â ‡" }, { "input": "fanatically", "output": "â ‹â â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "fanaticism", "output": "â ‹â â â â žâ Šâ ‰â Šâ Žâ " }, { "input": "fanatics", "output": "â ‹â â â â žâ Šâ ‰â Ž" }, { "input": "fancied", "output": "â ‹â â â ‰â Šâ «" }, { "input": "fancier", "output": "â ‹â â â ‰â Šâ »" }, { "input": "fanciers", "output": "â ‹â â â ‰â Šâ »â Ž" }, { "input": "fancies", "output": "â ‹â â â ‰â Šâ ‘â Ž" }, { "input": "fanciest", "output": "â ‹â â â ‰â Šâ ‘â Œ" }, { "input": "fanciful", "output": "â ‹â â â ‰â Šâ °â ‡" }, { "input": "fancifully", "output": "â ‹â â â ‰â Šâ °â ‡â ‡â ½" }, { "input": "fancily", "output": "â ‹â â â ‰â Šâ ‡â ½" }, { "input": "fanciness", "output": "â ‹â â â ‰â Šâ °â Ž" }, { "input": "fancy", "output": "â ‹â â â ‰â ½" }, { "input": "fancying", "output": "â ‹â â â ‰â ½â ¬" }, { "input": "fanfare", "output": "â ‹â â â ‹â œâ ‘" }, { "input": "fanfares", "output": "â ‹â â â ‹â œâ ‘â Ž" }, { "input": "fang", "output": "â ‹â â â ›" }, { "input": "fangs", "output": "â ‹â â â ›â Ž" }, { "input": "fanned", "output": "â ‹â â â â «" }, { "input": "fannies", "output": "â ‹â â â â Šâ ‘â Ž" }, { "input": "fanning", "output": "â ‹â â â â ¬" }, { "input": "fanny", "output": "â ‹â â â â ½" }, { "input": "fans", "output": "â ‹â â â Ž" }, { "input": "fantasied", "output": "â ‹â â â žâ â Žâ Šâ «" }, { "input": "fantasies", "output": "â ‹â â â žâ â Žâ Šâ ‘â Ž" }, { "input": "fantasize", "output": "â ‹â â â žâ â Žâ Šâ µâ ‘" }, { "input": "fantasized", "output": "â ‹â â â žâ â Žâ Šâ µâ «" }, { "input": "fantasizes", "output": "â ‹â â â žâ â Žâ Šâ µâ ‘â Ž" }, { "input": "fantasizing", "output": "â ‹â â â žâ â Žâ Šâ µâ ¬" }, { "input": "fantastic", "output": "â ‹â â â žâ â Œâ Šâ ‰" }, { "input": "fantastically", "output": "â ‹â â â žâ â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "fantasy", "output": "â ‹â â â žâ â Žâ ½" }, { "input": "fantasying", "output": "â ‹â â â žâ â Žâ ½â ¬" }, { "input": "fanzine", "output": "â ‹â â â µâ ”â ‘" }, { "input": "far", "output": "â ‹â œ" }, { "input": "faraway", "output": "â ‹â œâ â ºâ â ½" }, { "input": "farce", "output": "⠋⠜⠉⠑" }, { "input": "farces", "output": "⠋⠜⠉⠑⠎" }, { "input": "farcical", "output": "⠋⠜⠉⠊⠉â â ‡" }, { "input": "fare", "output": "⠋⠜⠑" }, { "input": "fared", "output": "⠋⠜⠫" }, { "input": "fares", "output": "⠋⠜⠑⠎" }, { "input": "farewell", "output": "⠋⠜⠑⠺⠑⠇⠇" }, { "input": "farewells", "output": "⠋⠜⠑⠺⠑⠇⠇⠎" }, { "input": "farina", "output": "⠋⠜⠔â " }, { "input": "farinaceous", "output": "⠋⠜⠔â â ‰â ‘⠳⠎" }, { "input": "faring", "output": "⠋⠜⠬" }, { "input": "farm", "output": "â ‹â œâ " }, { "input": "farmed", "output": "â ‹â œâ â «" }, { "input": "farmer", "output": "â ‹â œâ â »" }, { "input": "farmers", "output": "â ‹â œâ â »â Ž" }, { "input": "farmhand", "output": "â ‹â œâ â “â ¯" }, { "input": "farmhands", "output": "â ‹â œâ â “⠯⠎" }, { "input": "farmhouse", "output": "â ‹â œâ â “⠳⠎⠑" }, { "input": "farmhouses", "output": "â ‹â œâ â “⠳⠎⠑⠎" }, { "input": "farming", "output": "â ‹â œâ â ¬" }, { "input": "farmland", "output": "â ‹â œâ â ‡â ¯" }, { "input": "farms", "output": "â ‹â œâ â Ž" }, { "input": "farmyard", "output": "â ‹â œâ â ½â œâ ™" }, { "input": "farmyards", "output": "â ‹â œâ â ½â œâ ™â Ž" }, { "input": "farrow", "output": "⠋⠜⠗⠪" }, { "input": "farrowed", "output": "⠋⠜⠗⠪⠫" }, { "input": "farrowing", "output": "⠋⠜⠗⠪⠬" }, { "input": "farrows", "output": "⠋⠜⠗⠪⠎" }, { "input": "farsighted", "output": "⠋⠜⠎⠊⠣⠞⠫" }, { "input": "farsightedness", "output": "⠋⠜⠎⠊⠣⠞⠫⠰⠎" }, { "input": "fart", "output": "⠋⠜⠞" }, { "input": "farted", "output": "⠋⠜⠞⠫" }, { "input": "farther", "output": "⠋⠜⠮⠗" }, { "input": "farthest", "output": "⠋⠜⠮⠌" }, { "input": "farthing", "output": "⠋⠜⠹⠬" }, { "input": "farthings", "output": "⠋⠜⠹⠬⠎" }, { "input": "farting", "output": "⠋⠜⠞⠬" }, { "input": "farts", "output": "⠋⠜⠞⠎" }, { "input": "fascinate", "output": "â ‹â â Žâ ‰â ”â â žâ ‘" }, { "input": "fascinated", "output": "â ‹â â Žâ ‰â ”â â žâ «" }, { "input": "fascinates", "output": "â ‹â â Žâ ‰â ”â â žâ ‘â Ž" }, { "input": "fascinating", "output": "â ‹â â Žâ ‰â ”â â žâ ¬" }, { "input": "fascination", "output": "â ‹â â Žâ ‰â ”â â °â " }, { "input": "fascinations", "output": "â ‹â â Žâ ‰â ”â â °â â Ž" }, { "input": "fascism", "output": "â ‹â â Žâ ‰â Šâ Žâ " }, { "input": "fascist", "output": "â ‹â â Žâ ‰â Šâ Œ" }, { "input": "fascists", "output": "â ‹â â Žâ ‰â Šâ Œâ Ž" }, { "input": "fashion", "output": "â ‹â â ©â Šâ •â " }, { "input": "fashionable", "output": "â ‹â â ©â Šâ •â â â ƒâ ‡â ‘" }, { "input": "fashionably", "output": "â ‹â â ©â Šâ •â â â ƒâ ‡â ½" }, { "input": "fashioned", "output": "â ‹â â ©â Šâ •â â «" }, { "input": "fashioning", "output": "â ‹â â ©â Šâ •â â ¬" }, { "input": "fashions", "output": "â ‹â â ©â Šâ •â â Ž" }, { "input": "fast", "output": "â ‹â â Œ" }, { "input": "fasted", "output": "â ‹â â Œâ «" }, { "input": "fasten", "output": "â ‹â â Œâ ¢" }, { "input": "fastened", "output": "â ‹â â Œâ ¢â «" }, { "input": "fastener", "output": "â ‹â â Œâ ¢â »" }, { "input": "fasteners", "output": "â ‹â â Œâ ¢â »â Ž" }, { "input": "fastening", "output": "â ‹â â Œâ ¢â ¬" }, { "input": "fastenings", "output": "â ‹â â Œâ ¢â ¬â Ž" }, { "input": "fastens", "output": "â ‹â â Œâ ¢â Ž" }, { "input": "faster", "output": "â ‹â â Œâ »" }, { "input": "fastest", "output": "â ‹â â Œâ ‘â Œ" }, { "input": "fastidious", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Ž" }, { "input": "fastidiously", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Žâ ‡â ½" }, { "input": "fastidiousness", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Žâ °â Ž" }, { "input": "fasting", "output": "â ‹â â Œâ ¬" }, { "input": "fastness", "output": "â ‹â â Œâ °â Ž" }, { "input": "fastnesses", "output": "â ‹â â Œâ °â Žâ ‘â Ž" }, { "input": "fasts", "output": "â ‹â â Œâ Ž" }, { "input": "fat", "output": "â ‹â â ž" }, { "input": "fatal", "output": "â ‹â â žâ â ‡" }, { "input": "fatalism", "output": "â ‹â â žâ â ‡â Šâ Žâ " }, { "input": "fatalist", "output": "â ‹â â žâ â ‡â Šâ Œ" }, { "input": "fatalistic", "output": "â ‹â â žâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "fatalists", "output": "â ‹â â žâ â ‡â Šâ Œâ Ž" }, { "input": "fatalities", "output": "â ‹â â žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "fatality", "output": "â ‹â â žâ â ‡â °â ½" }, { "input": "fatally", "output": "â ‹â â žâ â ‡â ‡â ½" }, { "input": "fate", "output": "â ‹â â žâ ‘" }, { "input": "fated", "output": "â ‹â â žâ «" }, { "input": "fateful", "output": "â ‹â â žâ ‘â °â ‡" }, { "input": "fatefully", "output": "â ‹â â žâ ‘⠰⠇⠇⠽" }, { "input": "fates", "output": "â ‹â â žâ ‘â Ž" }, { "input": "fathead", "output": "â ‹â â žâ “â ‚â ™" }, { "input": "fatheads", "output": "â ‹â â žâ “⠂⠙⠎" }, { "input": "father", "output": "â â ‹" }, { "input": "fathered", "output": "â â ‹â «" }, { "input": "fatherhood", "output": "â â ‹â “â •â •â ™" }, { "input": "fathering", "output": "â â ‹â ¬" }, { "input": "fatherland", "output": "â â ‹â ‡â ¯" }, { "input": "fatherlands", "output": "â â ‹â ‡â ¯â Ž" }, { "input": "fatherless", "output": "â â ‹â ¨â Ž" }, { "input": "fatherly", "output": "â â ‹â ‡â ½" }, { "input": "fathers", "output": "â â ‹â Ž" }, { "input": "fathom", "output": "â ‹â â ¹â •â " }, { "input": "fathomable", "output": "â ‹â â ¹â •â â â ƒâ ‡â ‘" }, { "input": "fathomed", "output": "â ‹â â ¹â •â â «" }, { "input": "fathoming", "output": "â ‹â â ¹â •â â ¬" }, { "input": "fathomless", "output": "â ‹â â ¹â •â â ¨â Ž" }, { "input": "fathoms", "output": "â ‹â â ¹â •â â Ž" }, { "input": "fatigue", "output": "â ‹â â žâ Šâ ›â ¥â ‘" }, { "input": "fatigued", "output": "â ‹â â žâ Šâ ›â ¥â «" }, { "input": "fatigues", "output": "â ‹â â žâ Šâ ›â ¥â ‘â Ž" }, { "input": "fatiguing", "output": "â ‹â â žâ Šâ ›â ¥â ¬" }, { "input": "fating", "output": "â ‹â â žâ ¬" }, { "input": "fatness", "output": "â ‹â â žâ °â Ž" }, { "input": "fats", "output": "â ‹â â žâ Ž" }, { "input": "fatten", "output": "â ‹â â žâ žâ ¢" }, { "input": "fattened", "output": "â ‹â â žâ žâ ¢â «" }, { "input": "fattening", "output": "â ‹â â žâ žâ ¢â ¬" }, { "input": "fattens", "output": "â ‹â â žâ žâ ¢â Ž" }, { "input": "fatter", "output": "â ‹â â žâ žâ »" }, { "input": "fattest", "output": "â ‹â â žâ žâ ‘â Œ" }, { "input": "fattier", "output": "â ‹â â žâ žâ Šâ »" }, { "input": "fatties", "output": "â ‹â â žâ žâ Šâ ‘â Ž" }, { "input": "fattiest", "output": "â ‹â â žâ žâ Šâ ‘â Œ" }, { "input": "fatty", "output": "â ‹â â žâ žâ ½" }, { "input": "fatuous", "output": "â ‹â â žâ ¥â ³â Ž" }, { "input": "fatuously", "output": "â ‹â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "fatuousness", "output": "â ‹â â žâ ¥â ³â Žâ °â Ž" }, { "input": "faucet", "output": "â ‹â â ¥â ‰â ‘â ž" }, { "input": "faucets", "output": "â ‹â â ¥â ‰â ‘â žâ Ž" }, { "input": "fault", "output": "â ‹â â ¥â ‡â ž" }, { "input": "faulted", "output": "â ‹â â ¥â ‡â žâ «" }, { "input": "faultfinding", "output": "â ‹â â ¥â ‡â žâ ‹â ”⠙⠬" }, { "input": "faultier", "output": "â ‹â â ¥â ‡â žâ Šâ »" }, { "input": "faultiest", "output": "â ‹â â ¥â ‡â žâ Šâ ‘â Œ" }, { "input": "faultily", "output": "â ‹â â ¥â ‡â žâ Šâ ‡â ½" }, { "input": "faultiness", "output": "â ‹â â ¥â ‡â žâ Šâ °â Ž" }, { "input": "faulting", "output": "â ‹â â ¥â ‡â žâ ¬" }, { "input": "faultless", "output": "â ‹â â ¥â ‡â žâ ¨â Ž" }, { "input": "faultlessly", "output": "â ‹â â ¥â ‡â žâ ¨â Žâ ‡â ½" }, { "input": "faults", "output": "â ‹â â ¥â ‡â žâ Ž" }, { "input": "faulty", "output": "â ‹â â ¥â ‡â žâ ½" }, { "input": "faun", "output": "â ‹â â ¥â " }, { "input": "fauna", "output": "â ‹â â ¥â â " }, { "input": "faunae", "output": "â ‹â â ¥â â â ‘" }, { "input": "faunas", "output": "â ‹â â ¥â â â Ž" }, { "input": "fauns", "output": "â ‹â â ¥â â Ž" }, { "input": "favor", "output": "â ‹â â §â •â —" }, { "input": "favorable", "output": "â ‹â â §â •â —â â ƒâ ‡â ‘" }, { "input": "favorably", "output": "â ‹â â §â •â —â â ƒâ ‡â ½" }, { "input": "favored", "output": "â ‹â â §â •â —â «" }, { "input": "favoring", "output": "â ‹â â §â •â —â ¬" }, { "input": "favorite", "output": "â ‹â â §â •â —â Šâ žâ ‘" }, { "input": "favorites", "output": "â ‹â â §â •â —â Šâ žâ ‘â Ž" }, { "input": "favoritism", "output": "â ‹â â §â •â —â Šâ žâ Šâ Žâ " }, { "input": "favors", "output": "â ‹â â §â •â —â Ž" }, { "input": "fawn", "output": "â ‹â â ºâ " }, { "input": "fawned", "output": "â ‹â â ºâ â «" }, { "input": "fawning", "output": "â ‹â â ºâ â ¬" }, { "input": "fawns", "output": "â ‹â â ºâ â Ž" }, { "input": "fax", "output": "â ‹â â ­" }, { "input": "faxed", "output": "â ‹â â ­â «" }, { "input": "faxes", "output": "â ‹â â ­â ‘â Ž" }, { "input": "faxing", "output": "â ‹â â ­â ¬" }, { "input": "faze", "output": "â ‹â â µâ ‘" }, { "input": "fazed", "output": "â ‹â â µâ «" }, { "input": "fazes", "output": "â ‹â â µâ ‘â Ž" }, { "input": "fazing", "output": "â ‹â â µâ ¬" }, { "input": "fealty", "output": "⠋⠂⠇⠞⠽" }, { "input": "fear", "output": "â ‹â ‘â œ" }, { "input": "feared", "output": "⠋⠑⠜⠫" }, { "input": "fearful", "output": "⠋⠑⠜⠰⠇" }, { "input": "fearfully", "output": "⠋⠑⠜⠰⠇⠇⠽" }, { "input": "fearfulness", "output": "⠋⠑⠜⠰⠇⠰⠎" }, { "input": "fearing", "output": "⠋⠑⠜⠬" }, { "input": "fearless", "output": "⠋⠑⠜⠨⠎" }, { "input": "fearlessly", "output": "⠋⠑⠜⠨⠎⠇⠽" }, { "input": "fearlessness", "output": "⠋⠑⠜⠨⠎⠰⠎" }, { "input": "fears", "output": "⠋⠑⠜⠎" }, { "input": "fearsome", "output": "â ‹â ‘â œâ â Ž" }, { "input": "feasibility", "output": "⠋⠂⠎⠊⠃⠊⠇⠰⠽" }, { "input": "feasible", "output": "⠋⠂⠎⠊⠃⠇⠑" }, { "input": "feasibly", "output": "⠋⠂⠎⠊⠃⠇⠽" }, { "input": "feast", "output": "â ‹â ‚â Œ" }, { "input": "feasted", "output": "⠋⠂⠌⠫" }, { "input": "feasting", "output": "⠋⠂⠌⠬" }, { "input": "feasts", "output": "⠋⠂⠌⠎" }, { "input": "feat", "output": "â ‹â ‚â ž" }, { "input": "feather", "output": "⠋⠂⠮⠗" }, { "input": "featherbedding", "output": "⠋⠂⠮⠗⠃⠫⠙⠬" }, { "input": "feathered", "output": "⠋⠂⠮⠗⠫" }, { "input": "featherier", "output": "⠋⠂⠮⠗⠊⠻" }, { "input": "featheriest", "output": "⠋⠂⠮⠗⠊⠑⠌" }, { "input": "feathering", "output": "⠋⠂⠮⠗⠬" }, { "input": "feathers", "output": "⠋⠂⠮⠗⠎" }, { "input": "featherweight", "output": "⠋⠂⠮⠗⠺⠑⠊⠣⠞" }, { "input": "featherweights", "output": "⠋⠂⠮⠗⠺⠑⠊⠣⠞⠎" }, { "input": "feathery", "output": "⠋⠂⠮⠗⠽" }, { "input": "feats", "output": "â ‹â ‚â žâ Ž" }, { "input": "feature", "output": "⠋⠂⠞⠥⠗⠑" }, { "input": "featured", "output": "⠋⠂⠞⠥⠗⠫" }, { "input": "featureless", "output": "⠋⠂⠞⠥⠗⠑⠨⠎" }, { "input": "features", "output": "⠋⠂⠞⠥⠗⠑⠎" }, { "input": "featuring", "output": "⠋⠂⠞⠥⠗⠬" }, { "input": "febrile", "output": "⠋⠑⠃⠗⠊⠇⠑" }, { "input": "fecal", "output": "â ‹â ‘â ‰â â ‡" }, { "input": "feces", "output": "⠋⠑⠉⠑⠎" }, { "input": "feckless", "output": "⠋⠑⠉⠅⠨⠎" }, { "input": "fecund", "output": "⠋⠑⠉⠥â â ™" }, { "input": "fecundity", "output": "⠋⠑⠉⠥â â ™â °â ½" }, { "input": "fed", "output": "â ‹â «" }, { "input": "federal", "output": "â ‹â «â »â â ‡" }, { "input": "federalism", "output": "â ‹â «â »â â ‡â Šâ Žâ " }, { "input": "federalist", "output": "â ‹â «â »â â ‡â Šâ Œ" }, { "input": "federalists", "output": "â ‹â «â »â â ‡â Šâ Œâ Ž" }, { "input": "federally", "output": "â ‹â «â »â â ‡â ‡â ½" }, { "input": "federals", "output": "â ‹â «â »â â ‡â Ž" }, { "input": "federate", "output": "â ‹â «â »â â žâ ‘" }, { "input": "federated", "output": "â ‹â «â »â â žâ «" }, { "input": "federates", "output": "â ‹â «â »â â žâ ‘â Ž" }, { "input": "federating", "output": "â ‹â «â »â â žâ ¬" }, { "input": "federation", "output": "â ‹â «â »â â °â " }, { "input": "federations", "output": "â ‹â «â »â â °â â Ž" }, { "input": "fedora", "output": "â ‹â «â •â —â " }, { "input": "fedoras", "output": "â ‹â «â •â —â â Ž" }, { "input": "feds", "output": "â ‹â «â Ž" }, { "input": "fee", "output": "â ‹â ‘â ‘" }, { "input": "feeble", "output": "⠋⠑⠑⠃⠇⠑" }, { "input": "feebleness", "output": "⠋⠑⠑⠃⠇⠑⠰⠎" }, { "input": "feebler", "output": "⠋⠑⠑⠃⠇⠻" }, { "input": "feeblest", "output": "⠋⠑⠑⠃⠇⠑⠌" }, { "input": "feebly", "output": "⠋⠑⠑⠃⠇⠽" }, { "input": "feed", "output": "â ‹â ‘â «" }, { "input": "feedback", "output": "â ‹â ‘â «â ƒâ â ‰â …" }, { "input": "feedbag", "output": "â ‹â ‘â «â ƒâ â ›" }, { "input": "feedbags", "output": "â ‹â ‘â «â ƒâ â ›â Ž" }, { "input": "feeder", "output": "â ‹â ‘â «â »" }, { "input": "feeders", "output": "⠋⠑⠫⠻⠎" }, { "input": "feeding", "output": "â ‹â ‘â «â ¬" }, { "input": "feedings", "output": "⠋⠑⠫⠬⠎" }, { "input": "feeds", "output": "â ‹â ‘â «â Ž" }, { "input": "feel", "output": "â ‹â ‘â ‘â ‡" }, { "input": "feeler", "output": "⠋⠑⠑⠇⠻" }, { "input": "feelers", "output": "⠋⠑⠑⠇⠻⠎" }, { "input": "feeling", "output": "⠋⠑⠑⠇⠬" }, { "input": "feelingly", "output": "⠋⠑⠑⠇⠬⠇⠽" }, { "input": "feelings", "output": "⠋⠑⠑⠇⠬⠎" }, { "input": "feels", "output": "⠋⠑⠑⠇⠎" }, { "input": "fees", "output": "â ‹â ‘â ‘â Ž" }, { "input": "feet", "output": "â ‹â ‘â ‘â ž" }, { "input": "feign", "output": "â ‹â ‘â Šâ ›â " }, { "input": "feigned", "output": "â ‹â ‘â Šâ ›â â «" }, { "input": "feigning", "output": "â ‹â ‘â Šâ ›â â ¬" }, { "input": "feigns", "output": "â ‹â ‘â Šâ ›â â Ž" }, { "input": "feint", "output": "⠋⠑⠔⠞" }, { "input": "feinted", "output": "⠋⠑⠔⠞⠫" }, { "input": "feinting", "output": "⠋⠑⠔⠞⠬" }, { "input": "feints", "output": "⠋⠑⠔⠞⠎" }, { "input": "feistier", "output": "⠋⠑⠊⠌⠊⠻" }, { "input": "feistiest", "output": "⠋⠑⠊⠌⠊⠑⠌" }, { "input": "feisty", "output": "⠋⠑⠊⠌⠽" }, { "input": "feldspar", "output": "⠋⠑⠇⠙⠎â â œ" }, { "input": "felicities", "output": "⠋⠑⠇⠊⠉⠊⠞⠊⠑⠎" }, { "input": "felicitous", "output": "⠋⠑⠇⠊⠉⠊⠞⠳⠎" }, { "input": "felicity", "output": "⠋⠑⠇⠊⠉⠰⠽" }, { "input": "feline", "output": "⠋⠑⠇⠔⠑" }, { "input": "felines", "output": "⠋⠑⠇⠔⠑⠎" }, { "input": "fell", "output": "⠋⠑⠇⠇" }, { "input": "fellatio", "output": "⠋⠑⠇⠇â â žâ Šâ •" }, { "input": "felled", "output": "⠋⠑⠇⠇⠫" }, { "input": "feller", "output": "⠋⠑⠇⠇⠻" }, { "input": "fellest", "output": "⠋⠑⠇⠇⠑⠌" }, { "input": "felling", "output": "⠋⠑⠇⠇⠬" }, { "input": "fellow", "output": "⠋⠑⠇⠇⠪" }, { "input": "fellows", "output": "⠋⠑⠇⠇⠪⠎" }, { "input": "fellowship", "output": "⠋⠑⠇⠇⠪⠩⠊â " }, { "input": "fellowships", "output": "⠋⠑⠇⠇⠪⠩⠊â â Ž" }, { "input": "fells", "output": "⠋⠑⠇⠇⠎" }, { "input": "felon", "output": "⠋⠑⠇⠕â " }, { "input": "felonies", "output": "⠋⠑⠇⠕â â Šâ ‘â Ž" }, { "input": "felonious", "output": "⠋⠑⠇⠕â â Šâ ³â Ž" }, { "input": "felons", "output": "⠋⠑⠇⠕â â Ž" }, { "input": "felony", "output": "⠋⠑⠇⠕â â ½" }, { "input": "felt", "output": "⠋⠑⠇⠞" }, { "input": "felted", "output": "⠋⠑⠇⠞⠫" }, { "input": "felting", "output": "⠋⠑⠇⠞⠬" }, { "input": "felts", "output": "⠋⠑⠇⠞⠎" }, { "input": "female", "output": "â ‹â ‘â â â ‡â ‘" }, { "input": "females", "output": "â ‹â ‘â â â ‡â ‘â Ž" }, { "input": "feminine", "output": "â ‹â ‘â â ”⠔⠑" }, { "input": "feminines", "output": "â ‹â ‘â â ”⠔⠑⠎" }, { "input": "femininity", "output": "â ‹â ‘â â ”⠔⠰⠽" }, { "input": "feminism", "output": "â ‹â ‘â â ”â Šâ Žâ " }, { "input": "feminist", "output": "â ‹â ‘â â ”â Šâ Œ" }, { "input": "feminists", "output": "â ‹â ‘â â ”⠊⠌⠎" }, { "input": "femora", "output": "â ‹â ‘â â •â —â " }, { "input": "femoral", "output": "â ‹â ‘â â •â —â â ‡" }, { "input": "femur", "output": "â ‹â ‘â â ¥â —" }, { "input": "femurs", "output": "â ‹â ‘â â ¥â —â Ž" }, { "input": "fen", "output": "â ‹â ¢" }, { "input": "fence", "output": "â ‹â °â ‘" }, { "input": "fenced", "output": "â ‹â °â ‘â ™" }, { "input": "fencer", "output": "â ‹â °â ‘â —" }, { "input": "fencers", "output": "â ‹â °â ‘â —â Ž" }, { "input": "fences", "output": "â ‹â °â ‘â Ž" }, { "input": "fencing", "output": "⠋⠢⠉⠬" }, { "input": "fend", "output": "⠋⠢⠙" }, { "input": "fended", "output": "⠋⠢⠙⠫" }, { "input": "fender", "output": "⠋⠢⠙⠻" }, { "input": "fenders", "output": "⠋⠢⠙⠻⠎" }, { "input": "fending", "output": "⠋⠢⠙⠬" }, { "input": "fends", "output": "⠋⠢⠙⠎" }, { "input": "fennel", "output": "â ‹â ¢â â ‘â ‡" }, { "input": "fens", "output": "⠋⠢⠎" }, { "input": "fer", "output": "â ‹â »" }, { "input": "feral", "output": "â ‹â »â â ‡" }, { "input": "ferment", "output": "⠋⠻⠰⠞" }, { "input": "fermentation", "output": "⠋⠻⠰⠞â â °â " }, { "input": "fermented", "output": "⠋⠻⠰⠞⠫" }, { "input": "fermenting", "output": "⠋⠻⠰⠞⠬" }, { "input": "ferments", "output": "⠋⠻⠰⠞⠎" }, { "input": "fern", "output": "â ‹â »â " }, { "input": "ferns", "output": "â ‹â »â â Ž" }, { "input": "ferocious", "output": "⠋⠻⠕⠉⠊⠳⠎" }, { "input": "ferociously", "output": "⠋⠻⠕⠉⠊⠳⠎⠇⠽" }, { "input": "ferociousness", "output": "⠋⠻⠕⠉⠊⠳⠎⠰⠎" }, { "input": "ferocity", "output": "⠋⠻⠕⠉⠰⠽" }, { "input": "ferret", "output": "⠋⠻⠗⠑⠞" }, { "input": "ferreted", "output": "⠋⠻⠗⠑⠞⠫" }, { "input": "ferreting", "output": "⠋⠻⠗⠑⠞⠬" }, { "input": "ferrets", "output": "⠋⠻⠗⠑⠞⠎" }, { "input": "ferric", "output": "⠋⠻⠗⠊⠉" }, { "input": "ferried", "output": "⠋⠻⠗⠊⠫" }, { "input": "ferries", "output": "⠋⠻⠗⠊⠑⠎" }, { "input": "ferrous", "output": "⠋⠻⠗⠳⠎" }, { "input": "ferrule", "output": "⠋⠻⠗⠥⠇⠑" }, { "input": "ferrules", "output": "⠋⠻⠗⠥⠇⠑⠎" }, { "input": "ferry", "output": "⠋⠻⠗⠽" }, { "input": "ferryboat", "output": "⠋⠻⠗⠽⠃⠕â â ž" }, { "input": "ferryboats", "output": "⠋⠻⠗⠽⠃⠕â â žâ Ž" }, { "input": "ferrying", "output": "⠋⠻⠗⠽⠬" }, { "input": "fertile", "output": "⠋⠻⠞⠊⠇⠑" }, { "input": "fertility", "output": "⠋⠻⠞⠊⠇⠰⠽" }, { "input": "fertilization", "output": "⠋⠻⠞⠊⠇⠊⠵â â °â " }, { "input": "fertilize", "output": "⠋⠻⠞⠊⠇⠊⠵⠑" }, { "input": "fertilized", "output": "⠋⠻⠞⠊⠇⠊⠵⠫" }, { "input": "fertilizer", "output": "⠋⠻⠞⠊⠇⠊⠵⠻" }, { "input": "fertilizers", "output": "⠋⠻⠞⠊⠇⠊⠵⠻⠎" }, { "input": "fertilizes", "output": "⠋⠻⠞⠊⠇⠊⠵⠑⠎" }, { "input": "fertilizing", "output": "⠋⠻⠞⠊⠇⠊⠵⠬" }, { "input": "fervency", "output": "⠋⠻⠧⠢⠉⠽" }, { "input": "fervent", "output": "⠋⠻⠧⠢⠞" }, { "input": "fervently", "output": "⠋⠻⠧⠢⠞⠇⠽" }, { "input": "fervid", "output": "⠋⠻⠧⠊⠙" }, { "input": "fervidly", "output": "⠋⠻⠧⠊⠙⠇⠽" }, { "input": "fervor", "output": "⠋⠻⠧⠕⠗" }, { "input": "fest", "output": "â ‹â ‘â Œ" }, { "input": "festal", "output": "â ‹â ‘â Œâ â ‡" }, { "input": "fester", "output": "⠋⠑⠌⠻" }, { "input": "festered", "output": "⠋⠑⠌⠻⠫" }, { "input": "festering", "output": "⠋⠑⠌⠻⠬" }, { "input": "festers", "output": "⠋⠑⠌⠻⠎" }, { "input": "festival", "output": "⠋⠑⠌⠊⠧â â ‡" }, { "input": "festivals", "output": "⠋⠑⠌⠊⠧â â ‡â Ž" }, { "input": "festive", "output": "⠋⠑⠌⠊⠧⠑" }, { "input": "festively", "output": "⠋⠑⠌⠊⠧⠑⠇⠽" }, { "input": "festivities", "output": "⠋⠑⠌⠊⠧⠊⠞⠊⠑⠎" }, { "input": "festivity", "output": "⠋⠑⠌⠊⠧⠰⠽" }, { "input": "festoon", "output": "⠋⠑⠌⠕⠕â " }, { "input": "festooned", "output": "⠋⠑⠌⠕⠕â â «" }, { "input": "festooning", "output": "⠋⠑⠌⠕⠕â â ¬" }, { "input": "festoons", "output": "⠋⠑⠌⠕⠕â â Ž" }, { "input": "fests", "output": "⠋⠑⠌⠎" }, { "input": "feta", "output": "â ‹â ‘â žâ " }, { "input": "fetal", "output": "â ‹â ‘â žâ â ‡" }, { "input": "fetch", "output": "â ‹â ‘â žâ ¡" }, { "input": "fetched", "output": "â ‹â ‘â žâ ¡â «" }, { "input": "fetches", "output": "â ‹â ‘â žâ ¡â ‘â Ž" }, { "input": "fetching", "output": "â ‹â ‘â žâ ¡â ¬" }, { "input": "fetchingly", "output": "⠋⠑⠞⠡⠬⠇⠽" }, { "input": "feted", "output": "â ‹â ‘â žâ «" }, { "input": "fetich", "output": "â ‹â ‘â žâ Šâ ¡" }, { "input": "fetiches", "output": "â ‹â ‘â žâ Šâ ¡â ‘â Ž" }, { "input": "fetid", "output": "â ‹â ‘â žâ Šâ ™" }, { "input": "feting", "output": "â ‹â ‘â žâ ¬" }, { "input": "fetish", "output": "â ‹â ‘â žâ Šâ ©" }, { "input": "fetishes", "output": "â ‹â ‘â žâ Šâ ©â ‘â Ž" }, { "input": "fetishism", "output": "â ‹â ‘â žâ Šâ ©â Šâ Žâ " }, { "input": "fetishist", "output": "â ‹â ‘â žâ Šâ ©â Šâ Œ" }, { "input": "fetishistic", "output": "⠋⠑⠞⠊⠩⠊⠌⠊⠉" }, { "input": "fetishists", "output": "⠋⠑⠞⠊⠩⠊⠌⠎" }, { "input": "fetlock", "output": "⠋⠑⠞⠇⠕⠉⠅" }, { "input": "fetlocks", "output": "⠋⠑⠞⠇⠕⠉⠅⠎" }, { "input": "fetter", "output": "â ‹â ‘â žâ žâ »" }, { "input": "fettered", "output": "⠋⠑⠞⠞⠻⠫" }, { "input": "fettering", "output": "⠋⠑⠞⠞⠻⠬" }, { "input": "fetters", "output": "⠋⠑⠞⠞⠻⠎" }, { "input": "fettle", "output": "⠋⠑⠞⠞⠇⠑" }, { "input": "fetus", "output": "⠋⠑⠞⠥⠎" }, { "input": "fetuses", "output": "⠋⠑⠞⠥⠎⠑⠎" }, { "input": "feud", "output": "⠋⠑⠥⠙" }, { "input": "feudal", "output": "⠋⠑⠥⠙â â ‡" }, { "input": "feudalism", "output": "⠋⠑⠥⠙â â ‡â Šâ Žâ " }, { "input": "feudalistic", "output": "⠋⠑⠥⠙â â ‡â Šâ Œâ Šâ ‰" }, { "input": "feuded", "output": "⠋⠑⠥⠙⠫" }, { "input": "feuding", "output": "⠋⠑⠥⠙⠬" }, { "input": "feuds", "output": "⠋⠑⠥⠙⠎" }, { "input": "fever", "output": "â ‹â â ‘" }, { "input": "fevered", "output": "â ‹â â ‘â «" }, { "input": "feverish", "output": "â ‹â â ‘â Šâ ©" }, { "input": "feverishly", "output": "â ‹â â ‘⠊⠩⠇⠽" }, { "input": "fevers", "output": "â ‹â â ‘â Ž" }, { "input": "few", "output": "â ‹â ‘â º" }, { "input": "fewer", "output": "⠋⠑⠺⠻" }, { "input": "fewest", "output": "⠋⠑⠺⠑⠌" }, { "input": "fey", "output": "â ‹â ‘â ½" }, { "input": "fez", "output": "â ‹â ‘â µ" }, { "input": "fezes", "output": "⠋⠑⠵⠑⠎" }, { "input": "fezzes", "output": "⠋⠑⠵⠵⠑⠎" }, { "input": "fiancé", "output": "â ‹â Šâ â â ‰â  â ˜â »â â ˜â ‰" }, { "input": "fiancée", "output": "â ‹â Šâ â â ‰â  â ˜â »â â ˜â ‰â ‘" }, { "input": "fiancées", "output": "â ‹â Šâ â â ‰â  â ˜â »â â ˜â ‰â ‘â Ž" }, { "input": "fiancés", "output": "â ‹â Šâ â â ‰â  â ˜â »â â ˜â ‰â Ž" }, { "input": "fiasco", "output": "â ‹â Šâ â Žâ ‰â •" }, { "input": "fiascoes", "output": "â ‹â Šâ â Žâ ‰â •â ‘â Ž" }, { "input": "fiascos", "output": "â ‹â Šâ â Žâ ‰â •â Ž" }, { "input": "fiat", "output": "â ‹â Šâ â ž" }, { "input": "fiats", "output": "â ‹â Šâ â žâ Ž" }, { "input": "fib", "output": "â ‹â Šâ ƒ" }, { "input": "fibbed", "output": "⠋⠊⠆⠫" }, { "input": "fibber", "output": "⠋⠊⠆⠻" }, { "input": "fibbers", "output": "⠋⠊⠆⠻⠎" }, { "input": "fibbing", "output": "⠋⠊⠆⠬" }, { "input": "fiber", "output": "⠋⠊⠃⠻" }, { "input": "fiberboard", "output": "⠋⠊⠃⠻⠃⠕⠜⠙" }, { "input": "fiberglass", "output": "⠋⠊⠃⠻⠛⠇â â Žâ Ž" }, { "input": "fibers", "output": "⠋⠊⠃⠻⠎" }, { "input": "fibroid", "output": "⠋⠊⠃⠗⠕⠊⠙" }, { "input": "fibrous", "output": "⠋⠊⠃⠗⠳⠎" }, { "input": "fibs", "output": "⠋⠊⠃⠎" }, { "input": "fibula", "output": "⠋⠊⠃⠥⠇â " }, { "input": "fibulae", "output": "⠋⠊⠃⠥⠇â â ‘" }, { "input": "fibulas", "output": "⠋⠊⠃⠥⠇â â Ž" }, { "input": "fiche", "output": "â ‹â Šâ ¡â ‘" }, { "input": "fiches", "output": "â ‹â Šâ ¡â ‘â Ž" }, { "input": "fickle", "output": "⠋⠊⠉⠅⠇⠑" }, { "input": "fickleness", "output": "⠋⠊⠉⠅⠇⠑⠰⠎" }, { "input": "fickler", "output": "⠋⠊⠉⠅⠇⠻" }, { "input": "ficklest", "output": "⠋⠊⠉⠅⠇⠑⠌" }, { "input": "fiction", "output": "⠋⠊⠉⠰â " }, { "input": "fictional", "output": "⠋⠊⠉⠰â â â ‡" }, { "input": "fictionalize", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ ‘" }, { "input": "fictionalized", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ «" }, { "input": "fictionalizes", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ ‘â Ž" }, { "input": "fictionalizing", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ ¬" }, { "input": "fictions", "output": "⠋⠊⠉⠰â â Ž" }, { "input": "fictitious", "output": "⠋⠊⠉⠞⠊⠞⠊⠳⠎" }, { "input": "fiddle", "output": "⠋⠊⠙⠙⠇⠑" }, { "input": "fiddled", "output": "⠋⠊⠙⠙⠇⠫" }, { "input": "fiddler", "output": "⠋⠊⠙⠙⠇⠻" }, { "input": "fiddlers", "output": "⠋⠊⠙⠙⠇⠻⠎" }, { "input": "fiddles", "output": "⠋⠊⠙⠙⠇⠑⠎" }, { "input": "fiddlesticks", "output": "⠋⠊⠙⠙⠇⠑⠌⠊⠉⠅⠎" }, { "input": "fiddling", "output": "⠋⠊⠙⠙⠇⠬" }, { "input": "fiddly", "output": "⠋⠊⠙⠙⠇⠽" }, { "input": "fidelity", "output": "⠋⠊⠙⠑⠇⠰⠽" }, { "input": "fidget", "output": "⠋⠊⠙⠛⠑⠞" }, { "input": "fidgeted", "output": "⠋⠊⠙⠛⠑⠞⠫" }, { "input": "fidgeting", "output": "⠋⠊⠙⠛⠑⠞⠬" }, { "input": "fidgets", "output": "⠋⠊⠙⠛⠑⠞⠎" }, { "input": "fidgety", "output": "⠋⠊⠙⠛⠑⠞⠽" }, { "input": "fiduciaries", "output": "⠋⠊⠙⠥⠉⠊⠜⠊⠑⠎" }, { "input": "fiduciary", "output": "⠋⠊⠙⠥⠉⠊⠜⠽" }, { "input": "fie", "output": "â ‹â Šâ ‘" }, { "input": "fief", "output": "â ‹â Šâ ‘â ‹" }, { "input": "fiefs", "output": "â ‹â Šâ ‘â ‹â Ž" }, { "input": "field", "output": "⠋⠊⠑⠇⠙" }, { "input": "fielded", "output": "⠋⠊⠑⠇⠙⠫" }, { "input": "fielder", "output": "⠋⠊⠑⠇⠙⠻" }, { "input": "fielders", "output": "⠋⠊⠑⠇⠙⠻⠎" }, { "input": "fielding", "output": "⠋⠊⠑⠇⠙⠬" }, { "input": "fields", "output": "⠋⠊⠑⠇⠙⠎" }, { "input": "fieldwork", "output": "⠋⠊⠑⠇⠙â â º" }, { "input": "fiend", "output": "⠋⠊⠢⠙" }, { "input": "fiendish", "output": "⠋⠊⠢⠙⠊⠩" }, { "input": "fiendishly", "output": "⠋⠊⠢⠙⠊⠩⠇⠽" }, { "input": "fiends", "output": "⠋⠊⠢⠙⠎" }, { "input": "fierce", "output": "⠋⠊⠻⠉⠑" }, { "input": "fiercely", "output": "⠋⠊⠻⠉⠑⠇⠽" }, { "input": "fierceness", "output": "⠋⠊⠻⠉⠑⠰⠎" }, { "input": "fiercer", "output": "⠋⠊⠻⠉⠻" }, { "input": "fiercest", "output": "⠋⠊⠻⠉⠑⠌" }, { "input": "fierier", "output": "⠋⠊⠻⠊⠻" }, { "input": "fieriest", "output": "⠋⠊⠻⠊⠑⠌" }, { "input": "fieriness", "output": "⠋⠊⠻⠊⠰⠎" }, { "input": "fiery", "output": "⠋⠊⠻⠽" }, { "input": "fiesta", "output": "â ‹â Šâ ‘â Œâ " }, { "input": "fiestas", "output": "â ‹â Šâ ‘â Œâ â Ž" }, { "input": "fife", "output": "â ‹â Šâ ‹â ‘" }, { "input": "fifes", "output": "â ‹â Šâ ‹â ‘â Ž" }, { "input": "fifteen", "output": "â ‹â Šâ ‹â žâ ‘â ¢" }, { "input": "fifteens", "output": "⠋⠊⠋⠞⠑⠢⠎" }, { "input": "fifteenth", "output": "⠋⠊⠋⠞⠑⠢⠹" }, { "input": "fifteenths", "output": "⠋⠊⠋⠞⠑⠢⠹⠎" }, { "input": "fifth", "output": "â ‹â Šâ ‹â ¹" }, { "input": "fifths", "output": "⠋⠊⠋⠹⠎" }, { "input": "fifties", "output": "â ‹â Šâ ‹â žâ Šâ ‘â Ž" }, { "input": "fiftieth", "output": "â ‹â Šâ ‹â žâ Šâ ‘â ¹" }, { "input": "fiftieths", "output": "⠋⠊⠋⠞⠊⠑⠹⠎" }, { "input": "fifty", "output": "â ‹â Šâ ‹â žâ ½" }, { "input": "fig", "output": "â ‹â Šâ ›" }, { "input": "fight", "output": "⠋⠊⠣⠞" }, { "input": "fighter", "output": "⠋⠊⠣⠞⠻" }, { "input": "fighters", "output": "⠋⠊⠣⠞⠻⠎" }, { "input": "fighting", "output": "⠋⠊⠣⠞⠬" }, { "input": "fights", "output": "⠋⠊⠣⠞⠎" }, { "input": "figment", "output": "⠋⠊⠛⠰⠞" }, { "input": "figments", "output": "⠋⠊⠛⠰⠞⠎" }, { "input": "figs", "output": "⠋⠊⠛⠎" }, { "input": "figurative", "output": "⠋⠊⠛⠥⠗â â žâ Šâ §â ‘" }, { "input": "figuratively", "output": "⠋⠊⠛⠥⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "figure", "output": "⠋⠊⠛⠥⠗⠑" }, { "input": "figured", "output": "⠋⠊⠛⠥⠗⠫" }, { "input": "figurehead", "output": "⠋⠊⠛⠥⠗⠑⠓⠂⠙" }, { "input": "figureheads", "output": "⠋⠊⠛⠥⠗⠑⠓⠂⠙⠎" }, { "input": "figures", "output": "⠋⠊⠛⠥⠗⠑⠎" }, { "input": "figurine", "output": "⠋⠊⠛⠥⠗⠔⠑" }, { "input": "figurines", "output": "⠋⠊⠛⠥⠗⠔⠑⠎" }, { "input": "figuring", "output": "⠋⠊⠛⠥⠗⠬" }, { "input": "filament", "output": "â ‹â Šâ ‡â â °â ž" }, { "input": "filamentous", "output": "â ‹â Šâ ‡â â °â žâ ³â Ž" }, { "input": "filaments", "output": "â ‹â Šâ ‡â â °â žâ Ž" }, { "input": "filbert", "output": "⠋⠊⠇⠃⠻⠞" }, { "input": "filberts", "output": "⠋⠊⠇⠃⠻⠞⠎" }, { "input": "filch", "output": "⠋⠊⠇⠡" }, { "input": "filched", "output": "⠋⠊⠇⠡⠫" }, { "input": "filches", "output": "⠋⠊⠇⠡⠑⠎" }, { "input": "filching", "output": "⠋⠊⠇⠡⠬" }, { "input": "file", "output": "⠋⠊⠇⠑" }, { "input": "filed", "output": "⠋⠊⠇⠫" }, { "input": "files", "output": "⠋⠊⠇⠑⠎" }, { "input": "filet", "output": "⠋⠊⠇⠑⠞" }, { "input": "filets", "output": "⠋⠊⠇⠑⠞⠎" }, { "input": "filial", "output": "⠋⠊⠇⠊â â ‡" }, { "input": "filibuster", "output": "⠋⠊⠇⠊⠃⠥⠌⠻" }, { "input": "filibustered", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠫" }, { "input": "filibustering", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠬" }, { "input": "filibusters", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠎" }, { "input": "filigree", "output": "⠋⠊⠇⠊⠛⠗⠑⠑" }, { "input": "filigreed", "output": "⠋⠊⠇⠊⠛⠗⠑⠫" }, { "input": "filigreeing", "output": "⠋⠊⠇⠊⠛⠗⠑⠑⠬" }, { "input": "filigrees", "output": "⠋⠊⠇⠊⠛⠗⠑⠑⠎" }, { "input": "filing", "output": "⠋⠊⠇⠬" }, { "input": "filings", "output": "⠋⠊⠇⠬⠎" }, { "input": "fill", "output": "⠋⠊⠇⠇" }, { "input": "filled", "output": "⠋⠊⠇⠇⠫" }, { "input": "filler", "output": "⠋⠊⠇⠇⠻" }, { "input": "fillers", "output": "⠋⠊⠇⠇⠻⠎" }, { "input": "fillet", "output": "⠋⠊⠇⠇⠑⠞" }, { "input": "filleted", "output": "⠋⠊⠇⠇⠑⠞⠫" }, { "input": "filleting", "output": "⠋⠊⠇⠇⠑⠞⠬" }, { "input": "fillets", "output": "⠋⠊⠇⠇⠑⠞⠎" }, { "input": "fillies", "output": "⠋⠊⠇⠇⠊⠑⠎" }, { "input": "filling", "output": "⠋⠊⠇⠇⠬" }, { "input": "fillings", "output": "⠋⠊⠇⠇⠬⠎" }, { "input": "fillip", "output": "⠋⠊⠇⠇⠊â " }, { "input": "filliped", "output": "⠋⠊⠇⠇⠊â â «" }, { "input": "filliping", "output": "⠋⠊⠇⠇⠊â â ¬" }, { "input": "fillips", "output": "⠋⠊⠇⠇⠊â â Ž" }, { "input": "fills", "output": "⠋⠊⠇⠇⠎" }, { "input": "filly", "output": "⠋⠊⠇⠇⠽" }, { "input": "film", "output": "â ‹â Šâ ‡â " }, { "input": "filmed", "output": "â ‹â Šâ ‡â â «" }, { "input": "filmier", "output": "â ‹â Šâ ‡â â Šâ »" }, { "input": "filmiest", "output": "â ‹â Šâ ‡â â Šâ ‘â Œ" }, { "input": "filming", "output": "â ‹â Šâ ‡â â ¬" }, { "input": "filmmaker", "output": "â ‹â Šâ ‡â â â â …â »" }, { "input": "filmmakers", "output": "â ‹â Šâ ‡â â â â …⠻⠎" }, { "input": "films", "output": "â ‹â Šâ ‡â â Ž" }, { "input": "filmstrip", "output": "â ‹â Šâ ‡â â Œâ —â Šâ " }, { "input": "filmstrips", "output": "â ‹â Šâ ‡â â Œâ —â Šâ â Ž" }, { "input": "filmy", "output": "â ‹â Šâ ‡â â ½" }, { "input": "filter", "output": "⠋⠊⠇⠞⠻" }, { "input": "filterable", "output": "⠋⠊⠇⠞⠻â â ƒâ ‡â ‘" }, { "input": "filtered", "output": "⠋⠊⠇⠞⠻⠫" }, { "input": "filtering", "output": "⠋⠊⠇⠞⠻⠬" }, { "input": "filters", "output": "⠋⠊⠇⠞⠻⠎" }, { "input": "filth", "output": "⠋⠊⠇⠹" }, { "input": "filthier", "output": "⠋⠊⠇⠹⠊⠻" }, { "input": "filthiest", "output": "⠋⠊⠇⠹⠊⠑⠌" }, { "input": "filthiness", "output": "⠋⠊⠇⠹⠊⠰⠎" }, { "input": "filthy", "output": "⠋⠊⠇⠹⠽" }, { "input": "filtrable", "output": "⠋⠊⠇⠞⠗â â ƒâ ‡â ‘" }, { "input": "filtrate", "output": "⠋⠊⠇⠞⠗â â žâ ‘" }, { "input": "filtrated", "output": "⠋⠊⠇⠞⠗â â žâ «" }, { "input": "filtrates", "output": "⠋⠊⠇⠞⠗â â žâ ‘â Ž" }, { "input": "filtrating", "output": "⠋⠊⠇⠞⠗â â žâ ¬" }, { "input": "filtration", "output": "⠋⠊⠇⠞⠗â â °â " }, { "input": "fin", "output": "â ‹â ”" }, { "input": "finagle", "output": "â ‹â ”â â ›â ‡â ‘" }, { "input": "finagled", "output": "â ‹â ”â â ›â ‡â «" }, { "input": "finagler", "output": "â ‹â ”â â ›â ‡â »" }, { "input": "finaglers", "output": "â ‹â ”â â ›â ‡â »â Ž" }, { "input": "finagles", "output": "â ‹â ”â â ›â ‡â ‘â Ž" }, { "input": "finagling", "output": "â ‹â ”â â ›â ‡â ¬" }, { "input": "final", "output": "â ‹â ”â â ‡" }, { "input": "finale", "output": "â ‹â ”â â ‡â ‘" }, { "input": "finales", "output": "â ‹â ”â â ‡â ‘â Ž" }, { "input": "finalist", "output": "â ‹â ”â â ‡â Šâ Œ" }, { "input": "finalists", "output": "â ‹â ”â â ‡â Šâ Œâ Ž" }, { "input": "finality", "output": "â ‹â ”â â ‡â °â ½" }, { "input": "finalize", "output": "â ‹â ”â â ‡â Šâ µâ ‘" }, { "input": "finalized", "output": "â ‹â ”â â ‡â Šâ µâ «" }, { "input": "finalizes", "output": "â ‹â ”â â ‡â Šâ µâ ‘â Ž" }, { "input": "finalizing", "output": "â ‹â ”â â ‡â Šâ µâ ¬" }, { "input": "finally", "output": "â ‹â ”â â ‡â ‡â ½" }, { "input": "finals", "output": "â ‹â ”â â ‡â Ž" }, { "input": "finance", "output": "⠋⠔⠨⠑" }, { "input": "financed", "output": "⠋⠔⠨⠑⠙" }, { "input": "finances", "output": "⠋⠔⠨⠑⠎" }, { "input": "financial", "output": "â ‹â ”â â â ‰â Šâ â ‡" }, { "input": "financially", "output": "â ‹â ”â â â ‰â Šâ â ‡â ‡â ½" }, { "input": "financier", "output": "â ‹â ”â â â ‰â Šâ »" }, { "input": "financiers", "output": "â ‹â ”â â â ‰â Šâ »â Ž" }, { "input": "financing", "output": "â ‹â ”â â â ‰â ¬" }, { "input": "finch", "output": "⠋⠔⠡" }, { "input": "finches", "output": "⠋⠔⠡⠑⠎" }, { "input": "find", "output": "⠋⠔⠙" }, { "input": "finder", "output": "⠋⠔⠙⠻" }, { "input": "finders", "output": "⠋⠔⠙⠻⠎" }, { "input": "finding", "output": "⠋⠔⠙⠬" }, { "input": "findings", "output": "⠋⠔⠙⠬⠎" }, { "input": "finds", "output": "⠋⠔⠙⠎" }, { "input": "fine", "output": "⠋⠔⠑" }, { "input": "fined", "output": "⠋⠔⠫" }, { "input": "finely", "output": "⠋⠔⠑⠇⠽" }, { "input": "fineness", "output": "⠋⠔⠑⠰⠎" }, { "input": "finer", "output": "⠋⠔⠻" }, { "input": "finery", "output": "⠋⠔⠻⠽" }, { "input": "fines", "output": "⠋⠔⠑⠎" }, { "input": "finesse", "output": "â ‹â Šâ °â Žâ ‘" }, { "input": "finessed", "output": "â ‹â Šâ °â Žâ «" }, { "input": "finesses", "output": "â ‹â Šâ °â Žâ ‘â Ž" }, { "input": "finessing", "output": "â ‹â Šâ °â Žâ ¬" }, { "input": "finest", "output": "⠋⠔⠑⠌" }, { "input": "finger", "output": "⠋⠬⠻" }, { "input": "fingerboard", "output": "⠋⠬⠻⠃⠕⠜⠙" }, { "input": "fingerboards", "output": "⠋⠬⠻⠃⠕⠜⠙⠎" }, { "input": "fingered", "output": "⠋⠬⠻⠫" }, { "input": "fingering", "output": "⠋⠬⠻⠬" }, { "input": "fingerings", "output": "⠋⠬⠻⠬⠎" }, { "input": "fingernail", "output": "⠋⠬⠻â â â Šâ ‡" }, { "input": "fingernails", "output": "⠋⠬⠻â â â Šâ ‡â Ž" }, { "input": "fingerprint", "output": "⠋⠬⠻â â —⠔⠞" }, { "input": "fingerprinted", "output": "⠋⠬⠻â â —⠔⠞⠫" }, { "input": "fingerprinting", "output": "⠋⠬⠻â â —⠔⠞⠬" }, { "input": "fingerprints", "output": "⠋⠬⠻â â —⠔⠞⠎" }, { "input": "fingers", "output": "⠋⠬⠻⠎" }, { "input": "fingertip", "output": "⠋⠬⠻⠞⠊â " }, { "input": "fingertips", "output": "⠋⠬⠻⠞⠊â â Ž" }, { "input": "finickier", "output": "⠋⠔⠊⠉⠅⠊⠻" }, { "input": "finickiest", "output": "⠋⠔⠊⠉⠅⠊⠑⠌" }, { "input": "finicky", "output": "⠋⠔⠊⠉⠅⠽" }, { "input": "fining", "output": "⠋⠔⠬" }, { "input": "finis", "output": "⠋⠔⠊⠎" }, { "input": "finises", "output": "⠋⠔⠊⠎⠑⠎" }, { "input": "finish", "output": "⠋⠔⠊⠩" }, { "input": "finished", "output": "⠋⠔⠊⠩⠫" }, { "input": "finisher", "output": "⠋⠔⠊⠩⠻" }, { "input": "finishers", "output": "⠋⠔⠊⠩⠻⠎" }, { "input": "finishes", "output": "⠋⠔⠊⠩⠑⠎" }, { "input": "finishing", "output": "⠋⠔⠊⠩⠬" }, { "input": "finite", "output": "⠋⠔⠊⠞⠑" }, { "input": "finitely", "output": "⠋⠔⠊⠞⠑⠇⠽" }, { "input": "fink", "output": "⠋⠔⠅" }, { "input": "finked", "output": "⠋⠔⠅⠫" }, { "input": "finking", "output": "⠋⠔⠅⠬" }, { "input": "finks", "output": "⠋⠔⠅⠎" }, { "input": "finnier", "output": "â ‹â ”â â Šâ »" }, { "input": "finniest", "output": "â ‹â ”â â Šâ ‘â Œ" }, { "input": "finny", "output": "â ‹â ”â â ½" }, { "input": "fins", "output": "⠋⠔⠎" }, { "input": "fiord", "output": "â ‹â Šâ •â —â ™" }, { "input": "fiords", "output": "⠋⠊⠕⠗⠙⠎" }, { "input": "fir", "output": "â ‹â Šâ —" }, { "input": "fire", "output": "â ‹â Šâ —â ‘" }, { "input": "firearm", "output": "â ‹â Šâ —â ‘â œâ " }, { "input": "firearms", "output": "â ‹â Šâ —â ‘â œâ â Ž" }, { "input": "fireball", "output": "â ‹â Šâ —â ‘â ƒâ â ‡â ‡" }, { "input": "fireballs", "output": "â ‹â Šâ —â ‘â ƒâ â ‡â ‡â Ž" }, { "input": "firebomb", "output": "⠋⠊⠗⠑⠃⠕â â ƒ" }, { "input": "firebombed", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ «" }, { "input": "firebombing", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ ¬" }, { "input": "firebombs", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ Ž" }, { "input": "firebrand", "output": "⠋⠊⠗⠑⠃⠗⠯" }, { "input": "firebrands", "output": "⠋⠊⠗⠑⠃⠗⠯⠎" }, { "input": "firebreak", "output": "⠋⠊⠗⠑⠃⠗⠂⠅" }, { "input": "firebreaks", "output": "⠋⠊⠗⠑⠃⠗⠂⠅⠎" }, { "input": "firebug", "output": "⠋⠊⠗⠑⠃⠥⠛" }, { "input": "firebugs", "output": "⠋⠊⠗⠑⠃⠥⠛⠎" }, { "input": "firecracker", "output": "⠋⠊⠗⠑⠉⠗â â ‰â …â »" }, { "input": "firecrackers", "output": "⠋⠊⠗⠑⠉⠗â â ‰â …⠻⠎" }, { "input": "fired", "output": "â ‹â Šâ —â «" }, { "input": "firefight", "output": "⠋⠊⠗⠑⠋⠊⠣⠞" }, { "input": "firefighter", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠻" }, { "input": "firefighters", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠻⠎" }, { "input": "firefighting", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠬" }, { "input": "firefights", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠎" }, { "input": "fireflies", "output": "⠋⠊⠗⠑⠋⠇⠊⠑⠎" }, { "input": "firefly", "output": "⠋⠊⠗⠑⠋⠇⠽" }, { "input": "firehouse", "output": "⠋⠊⠗⠑⠓⠳⠎⠑" }, { "input": "firehouses", "output": "⠋⠊⠗⠑⠓⠳⠎⠑⠎" }, { "input": "fireman", "output": "â ‹â Šâ —â ‘â â â " }, { "input": "firemen", "output": "â ‹â Šâ —â ‘â â ¢" }, { "input": "fireplace", "output": "â ‹â Šâ —â ‘â â ‡â â ‰â ‘" }, { "input": "fireplaces", "output": "â ‹â Šâ —â ‘â â ‡â â ‰â ‘â Ž" }, { "input": "fireplug", "output": "â ‹â Šâ —â ‘â â ‡â ¥â ›" }, { "input": "fireplugs", "output": "â ‹â Šâ —â ‘â â ‡â ¥â ›â Ž" }, { "input": "firepower", "output": "â ‹â Šâ —â ‘â â ªâ »" }, { "input": "fireproof", "output": "â ‹â Šâ —â ‘â â —â •â ·" }, { "input": "fireproofed", "output": "â ‹â Šâ —â ‘â â —â •â ·â «" }, { "input": "fireproofing", "output": "â ‹â Šâ —â ‘â â —â •â ·â ¬" }, { "input": "fireproofs", "output": "â ‹â Šâ —â ‘â â —â •â ·â Ž" }, { "input": "fires", "output": "â ‹â Šâ —â ‘â Ž" }, { "input": "fireside", "output": "⠋⠊⠗⠑⠎⠊⠙⠑" }, { "input": "firesides", "output": "⠋⠊⠗⠑⠎⠊⠙⠑⠎" }, { "input": "firestorm", "output": "⠋⠊⠗⠑⠌⠕⠗â " }, { "input": "firestorms", "output": "⠋⠊⠗⠑⠌⠕⠗â â Ž" }, { "input": "firetrap", "output": "â ‹â Šâ —â ‘â žâ —â â " }, { "input": "firetraps", "output": "â ‹â Šâ —â ‘â žâ —â â â Ž" }, { "input": "firewall", "output": "â ‹â Šâ —â ‘â ºâ â ‡â ‡" }, { "input": "firewalls", "output": "â ‹â Šâ —â ‘â ºâ â ‡â ‡â Ž" }, { "input": "firewater", "output": "â ‹â Šâ —â ‘â ºâ â žâ »" }, { "input": "firewood", "output": "⠋⠊⠗⠑⠺⠕⠕⠙" }, { "input": "firework", "output": "â ‹â Šâ —â ‘â â º" }, { "input": "fireworks", "output": "â ‹â Šâ —â ‘â â ºâ Ž" }, { "input": "firing", "output": "â ‹â Šâ —â ¬" }, { "input": "firm", "output": "â ‹â Šâ —â " }, { "input": "firmament", "output": "â ‹â Šâ —â â â °â ž" }, { "input": "firmaments", "output": "â ‹â Šâ —â â â °â žâ Ž" }, { "input": "firmed", "output": "â ‹â Šâ —â â «" }, { "input": "firmer", "output": "â ‹â Šâ —â â »" }, { "input": "firmest", "output": "â ‹â Šâ —â â ‘â Œ" }, { "input": "firming", "output": "â ‹â Šâ —â â ¬" }, { "input": "firmly", "output": "â ‹â Šâ —â â ‡â ½" }, { "input": "firmness", "output": "â ‹â Šâ —â â °â Ž" }, { "input": "firms", "output": "â ‹â Šâ —â â Ž" }, { "input": "firmware", "output": "â ‹â Šâ —â â ºâ œâ ‘" }, { "input": "firs", "output": "â ‹â Šâ —â Ž" }, { "input": "first", "output": "â ‹â Œ" }, { "input": "firstborn", "output": "⠋⠌⠃⠕⠗â " }, { "input": "firstborns", "output": "⠋⠌⠃⠕⠗â â Ž" }, { "input": "firsthand", "output": "⠋⠌⠓⠯" }, { "input": "firstly", "output": "⠋⠌⠇⠽" }, { "input": "firsts", "output": "⠋⠌⠎" }, { "input": "firth", "output": "â ‹â Šâ —â ¹" }, { "input": "firths", "output": "⠋⠊⠗⠹⠎" }, { "input": "fiscal", "output": "â ‹â Šâ Žâ ‰â â ‡" }, { "input": "fiscally", "output": "â ‹â Šâ Žâ ‰â â ‡â ‡â ½" }, { "input": "fiscals", "output": "â ‹â Šâ Žâ ‰â â ‡â Ž" }, { "input": "fish", "output": "â ‹â Šâ ©" }, { "input": "fishbowl", "output": "⠋⠊⠩⠃⠪⠇" }, { "input": "fishbowls", "output": "⠋⠊⠩⠃⠪⠇⠎" }, { "input": "fished", "output": "â ‹â Šâ ©â «" }, { "input": "fisher", "output": "â ‹â Šâ ©â »" }, { "input": "fisheries", "output": "⠋⠊⠩⠻⠊⠑⠎" }, { "input": "fisherman", "output": "â ‹â Šâ ©â »â â â " }, { "input": "fishermen", "output": "â ‹â Šâ ©â »â â ¢" }, { "input": "fishers", "output": "⠋⠊⠩⠻⠎" }, { "input": "fishery", "output": "⠋⠊⠩⠻⠽" }, { "input": "fishes", "output": "â ‹â Šâ ©â ‘â Ž" }, { "input": "fishhook", "output": "â ‹â Šâ ©â “â •â •â …" }, { "input": "fishhooks", "output": "â ‹â Šâ ©â “â •â •â …â Ž" }, { "input": "fishier", "output": "â ‹â Šâ ©â Šâ »" }, { "input": "fishiest", "output": "â ‹â Šâ ©â Šâ ‘â Œ" }, { "input": "fishing", "output": "â ‹â Šâ ©â ¬" }, { "input": "fishnet", "output": "â ‹â Šâ ©â â ‘â ž" }, { "input": "fishnets", "output": "â ‹â Šâ ©â â ‘â žâ Ž" }, { "input": "fishtail", "output": "â ‹â Šâ ©â žâ â Šâ ‡" }, { "input": "fishtailed", "output": "â ‹â Šâ ©â žâ â Šâ ‡â «" }, { "input": "fishtailing", "output": "â ‹â Šâ ©â žâ â Šâ ‡â ¬" }, { "input": "fishtails", "output": "â ‹â Šâ ©â žâ â Šâ ‡â Ž" }, { "input": "fishwife", "output": "⠋⠊⠩⠺⠊⠋⠑" }, { "input": "fishwives", "output": "⠋⠊⠩⠺⠊⠧⠑⠎" }, { "input": "fishy", "output": "â ‹â Šâ ©â ½" }, { "input": "fission", "output": "â ‹â Šâ Žâ ¨â " }, { "input": "fissure", "output": "⠋⠊⠎⠎⠥⠗⠑" }, { "input": "fissures", "output": "⠋⠊⠎⠎⠥⠗⠑⠎" }, { "input": "fist", "output": "â ‹â Šâ Œ" }, { "input": "fistful", "output": "⠋⠊⠌⠰⠇" }, { "input": "fistfuls", "output": "⠋⠊⠌⠰⠇⠎" }, { "input": "fisticuffs", "output": "⠋⠊⠌⠊⠉⠥⠖⠎" }, { "input": "fists", "output": "⠋⠊⠌⠎" }, { "input": "fit", "output": "â ‹â Šâ ž" }, { "input": "fitful", "output": "â ‹â Šâ žâ °â ‡" }, { "input": "fitfully", "output": "⠋⠊⠞⠰⠇⠇⠽" }, { "input": "fitly", "output": "⠋⠊⠞⠇⠽" }, { "input": "fitness", "output": "â ‹â Šâ žâ °â Ž" }, { "input": "fits", "output": "â ‹â Šâ žâ Ž" }, { "input": "fitted", "output": "â ‹â Šâ žâ žâ «" }, { "input": "fitter", "output": "â ‹â Šâ žâ žâ »" }, { "input": "fitters", "output": "⠋⠊⠞⠞⠻⠎" }, { "input": "fittest", "output": "â ‹â Šâ žâ žâ ‘â Œ" }, { "input": "fitting", "output": "â ‹â Šâ žâ žâ ¬" }, { "input": "fittingly", "output": "⠋⠊⠞⠞⠬⠇⠽" }, { "input": "fittings", "output": "⠋⠊⠞⠞⠬⠎" }, { "input": "five", "output": "â ‹â Šâ §â ‘" }, { "input": "fiver", "output": "â ‹â Šâ §â »" }, { "input": "fives", "output": "â ‹â Šâ §â ‘â Ž" }, { "input": "fix", "output": "â ‹â Šâ ­" }, { "input": "fixable", "output": "â ‹â Šâ ­â â ƒâ ‡â ‘" }, { "input": "fixate", "output": "â ‹â Šâ ­â â žâ ‘" }, { "input": "fixated", "output": "â ‹â Šâ ­â â žâ «" }, { "input": "fixates", "output": "â ‹â Šâ ­â â žâ ‘â Ž" }, { "input": "fixating", "output": "â ‹â Šâ ­â â žâ ¬" }, { "input": "fixation", "output": "â ‹â Šâ ­â â °â " }, { "input": "fixations", "output": "â ‹â Šâ ­â â °â â Ž" }, { "input": "fixative", "output": "â ‹â Šâ ­â â žâ Šâ §â ‘" }, { "input": "fixatives", "output": "â ‹â Šâ ­â â žâ Šâ §â ‘â Ž" }, { "input": "fixed", "output": "â ‹â Šâ ­â «" }, { "input": "fixedly", "output": "⠋⠊⠭⠫⠇⠽" }, { "input": "fixer", "output": "â ‹â Šâ ­â »" }, { "input": "fixers", "output": "⠋⠊⠭⠻⠎" }, { "input": "fixes", "output": "â ‹â Šâ ­â ‘â Ž" }, { "input": "fixing", "output": "â ‹â Šâ ­â ¬" }, { "input": "fixings", "output": "⠋⠊⠭⠬⠎" }, { "input": "fixity", "output": "â ‹â Šâ ­â °â ½" }, { "input": "fixture", "output": "⠋⠊⠭⠞⠥⠗⠑" }, { "input": "fixtures", "output": "⠋⠊⠭⠞⠥⠗⠑⠎" }, { "input": "fizz", "output": "⠋⠊⠵⠵" }, { "input": "fizzed", "output": "⠋⠊⠵⠵⠫" }, { "input": "fizzes", "output": "⠋⠊⠵⠵⠑⠎" }, { "input": "fizzier", "output": "⠋⠊⠵⠵⠊⠻" }, { "input": "fizziest", "output": "⠋⠊⠵⠵⠊⠑⠌" }, { "input": "fizzing", "output": "⠋⠊⠵⠵⠬" }, { "input": "fizzle", "output": "⠋⠊⠵⠵⠇⠑" }, { "input": "fizzled", "output": "⠋⠊⠵⠵⠇⠫" }, { "input": "fizzles", "output": "⠋⠊⠵⠵⠇⠑⠎" }, { "input": "fizzling", "output": "⠋⠊⠵⠵⠇⠬" }, { "input": "fizzy", "output": "⠋⠊⠵⠵⠽" }, { "input": "fjord", "output": "â ‹â šâ •â —â ™" }, { "input": "fjords", "output": "⠋⠚⠕⠗⠙⠎" }, { "input": "flab", "output": "â ‹â ‡â â ƒ" }, { "input": "flabbergast", "output": "â ‹â ‡â â †â »â ›â â Œ" }, { "input": "flabbergasted", "output": "â ‹â ‡â â †â »â ›â â Œâ «" }, { "input": "flabbergasting", "output": "â ‹â ‡â â †â »â ›â â Œâ ¬" }, { "input": "flabbergasts", "output": "â ‹â ‡â â †â »â ›â â Œâ Ž" }, { "input": "flabbier", "output": "â ‹â ‡â â †â Šâ »" }, { "input": "flabbiest", "output": "â ‹â ‡â â †â Šâ ‘â Œ" }, { "input": "flabbiness", "output": "â ‹â ‡â â †â Šâ °â Ž" }, { "input": "flabby", "output": "â ‹â ‡â â †â ½" }, { "input": "flaccid", "output": "â ‹â ‡â â ’â Šâ ™" }, { "input": "flack", "output": "â ‹â ‡â â ‰â …" }, { "input": "flacks", "output": "â ‹â ‡â â ‰â …â Ž" }, { "input": "flag", "output": "â ‹â ‡â â ›" }, { "input": "flagella", "output": "â ‹â ‡â â ›â ‘⠇⠇â " }, { "input": "flagellate", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ ‘" }, { "input": "flagellated", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ «" }, { "input": "flagellates", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ ‘â Ž" }, { "input": "flagellating", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ ¬" }, { "input": "flagellation", "output": "â ‹â ‡â â ›â ‘⠇⠇â â °â " }, { "input": "flagellum", "output": "â ‹â ‡â â ›â ‘⠇⠇⠥â " }, { "input": "flagellums", "output": "â ‹â ‡â â ›â ‘⠇⠇⠥â â Ž" }, { "input": "flagged", "output": "â ‹â ‡â â ¶â «" }, { "input": "flagging", "output": "â ‹â ‡â â ¶â ¬" }, { "input": "flagon", "output": "â ‹â ‡â â ›â •â " }, { "input": "flagons", "output": "â ‹â ‡â â ›â •â â Ž" }, { "input": "flagpole", "output": "â ‹â ‡â â ›â â •⠇⠑" }, { "input": "flagpoles", "output": "â ‹â ‡â â ›â â •⠇⠑⠎" }, { "input": "flagrant", "output": "â ‹â ‡â â ›â —â â â ž" }, { "input": "flagrantly", "output": "â ‹â ‡â â ›â —â â â žâ ‡â ½" }, { "input": "flags", "output": "â ‹â ‡â â ›â Ž" }, { "input": "flagship", "output": "â ‹â ‡â â ›â ©â Šâ " }, { "input": "flagships", "output": "â ‹â ‡â â ›â ©â Šâ â Ž" }, { "input": "flagstaff", "output": "â ‹â ‡â â ›â Œâ â ‹â ‹" }, { "input": "flagstaffs", "output": "â ‹â ‡â â ›â Œâ â –â Ž" }, { "input": "flagstone", "output": "â ‹â ‡â â ›â Œâ â •" }, { "input": "flagstones", "output": "â ‹â ‡â â ›â Œâ â •â Ž" }, { "input": "flail", "output": "â ‹â ‡â â Šâ ‡" }, { "input": "flailed", "output": "â ‹â ‡â â Šâ ‡â «" }, { "input": "flailing", "output": "â ‹â ‡â â Šâ ‡â ¬" }, { "input": "flails", "output": "â ‹â ‡â â Šâ ‡â Ž" }, { "input": "flair", "output": "â ‹â ‡â â Šâ —" }, { "input": "flairs", "output": "â ‹â ‡â â Šâ —â Ž" }, { "input": "flak", "output": "â ‹â ‡â â …" }, { "input": "flake", "output": "â ‹â ‡â â …â ‘" }, { "input": "flaked", "output": "â ‹â ‡â â …â «" }, { "input": "flakes", "output": "â ‹â ‡â â …â ‘â Ž" }, { "input": "flakier", "output": "â ‹â ‡â â …â Šâ »" }, { "input": "flakiest", "output": "â ‹â ‡â â …â Šâ ‘â Œ" }, { "input": "flakiness", "output": "â ‹â ‡â â …â Šâ °â Ž" }, { "input": "flaking", "output": "â ‹â ‡â â …â ¬" }, { "input": "flaky", "output": "â ‹â ‡â â …â ½" }, { "input": "flambeing", "output": "â ‹â ‡â â â ƒâ ‘â ¬" }, { "input": "flambes", "output": "â ‹â ‡â â â ƒâ ‘â Ž" }, { "input": "flamboyance", "output": "â ‹â ‡â â â ƒâ •⠽⠨⠑" }, { "input": "flamboyant", "output": "â ‹â ‡â â â ƒâ •â ½â â â ž" }, { "input": "flamboyantly", "output": "â ‹â ‡â â â ƒâ •â ½â â â žâ ‡â ½" }, { "input": "flambé", "output": "â ‹â ‡â â â ƒâ  â ˜â »â â ˜â ‰" }, { "input": "flambéed", "output": "â ‹â ‡â â â ƒâ  â ˜â »â â ˜â ‰â «" }, { "input": "flame", "output": "â ‹â ‡â â â ‘" }, { "input": "flamed", "output": "â ‹â ‡â â â «" }, { "input": "flamenco", "output": "â ‹â ‡â â â ¢â ‰â •" }, { "input": "flamencos", "output": "â ‹â ‡â â â ¢â ‰â •â Ž" }, { "input": "flames", "output": "â ‹â ‡â â â ‘â Ž" }, { "input": "flamethrower", "output": "â ‹â ‡â â â ‘⠹⠗⠪⠻" }, { "input": "flamethrowers", "output": "â ‹â ‡â â â ‘⠹⠗⠪⠻⠎" }, { "input": "flaming", "output": "â ‹â ‡â â â ¬" }, { "input": "flamingo", "output": "â ‹â ‡â â â ¬â •" }, { "input": "flamingoes", "output": "â ‹â ‡â â â ¬â •â ‘â Ž" }, { "input": "flamingos", "output": "â ‹â ‡â â â ¬â •â Ž" }, { "input": "flamings", "output": "â ‹â ‡â â â ¬â Ž" }, { "input": "flammability", "output": "â ‹â ‡â â â â â ƒâ Šâ ‡â °â ½" }, { "input": "flammable", "output": "â ‹â ‡â â â â â ƒâ ‡â ‘" }, { "input": "flammables", "output": "â ‹â ‡â â â â â ƒâ ‡â ‘â Ž" }, { "input": "flan", "output": "â ‹â ‡â â " }, { "input": "flange", "output": "â ‹â ‡â â â ›â ‘" }, { "input": "flanges", "output": "â ‹â ‡â â â ›â ‘â Ž" }, { "input": "flank", "output": "â ‹â ‡â â â …" }, { "input": "flanked", "output": "â ‹â ‡â â â …â «" }, { "input": "flanking", "output": "â ‹â ‡â â â …â ¬" }, { "input": "flanks", "output": "â ‹â ‡â â â …â Ž" }, { "input": "flannel", "output": "â ‹â ‡â â â â ‘â ‡" }, { "input": "flanneled", "output": "â ‹â ‡â â â â ‘⠇⠫" }, { "input": "flannelet", "output": "â ‹â ‡â â â â ‘⠇⠑⠞" }, { "input": "flannelette", "output": "â ‹â ‡â â â â ‘⠇⠑⠞⠞⠑" }, { "input": "flanneling", "output": "â ‹â ‡â â â â ‘⠇⠬" }, { "input": "flannelled", "output": "â ‹â ‡â â â â ‘⠇⠇⠫" }, { "input": "flannelling", "output": "â ‹â ‡â â â â ‘⠇⠇⠬" }, { "input": "flannels", "output": "â ‹â ‡â â â â ‘⠇⠎" }, { "input": "flap", "output": "â ‹â ‡â â " }, { "input": "flapjack", "output": "â ‹â ‡â â â šâ â ‰â …" }, { "input": "flapjacks", "output": "â ‹â ‡â â â šâ â ‰â …â Ž" }, { "input": "flapped", "output": "â ‹â ‡â â â â «" }, { "input": "flapper", "output": "â ‹â ‡â â â â »" }, { "input": "flappers", "output": "â ‹â ‡â â â â »â Ž" }, { "input": "flapping", "output": "â ‹â ‡â â â â ¬" }, { "input": "flaps", "output": "â ‹â ‡â â â Ž" }, { "input": "flare", "output": "⠋⠇⠜⠑" }, { "input": "flared", "output": "⠋⠇⠜⠫" }, { "input": "flares", "output": "⠋⠇⠜⠑⠎" }, { "input": "flaring", "output": "⠋⠇⠜⠬" }, { "input": "flash", "output": "â ‹â ‡â â ©" }, { "input": "flashback", "output": "â ‹â ‡â â ©â ƒâ â ‰â …" }, { "input": "flashbacks", "output": "â ‹â ‡â â ©â ƒâ â ‰â …â Ž" }, { "input": "flashbulb", "output": "â ‹â ‡â â ©â ƒâ ¥â ‡â ƒ" }, { "input": "flashbulbs", "output": "â ‹â ‡â â ©â ƒâ ¥â ‡â ƒâ Ž" }, { "input": "flashed", "output": "â ‹â ‡â â ©â «" }, { "input": "flasher", "output": "â ‹â ‡â â ©â »" }, { "input": "flashers", "output": "â ‹â ‡â â ©â »â Ž" }, { "input": "flashes", "output": "â ‹â ‡â â ©â ‘â Ž" }, { "input": "flashest", "output": "â ‹â ‡â â ©â ‘â Œ" }, { "input": "flashgun", "output": "â ‹â ‡â â ©â ›â ¥â " }, { "input": "flashguns", "output": "â ‹â ‡â â ©â ›â ¥â â Ž" }, { "input": "flashier", "output": "â ‹â ‡â â ©â Šâ »" }, { "input": "flashiest", "output": "â ‹â ‡â â ©â Šâ ‘â Œ" }, { "input": "flashily", "output": "â ‹â ‡â â ©â Šâ ‡â ½" }, { "input": "flashiness", "output": "â ‹â ‡â â ©â Šâ °â Ž" }, { "input": "flashing", "output": "â ‹â ‡â â ©â ¬" }, { "input": "flashlight", "output": "â ‹â ‡â â ©â ‡â Šâ £â ž" }, { "input": "flashlights", "output": "â ‹â ‡â â ©â ‡â Šâ £â žâ Ž" }, { "input": "flashy", "output": "â ‹â ‡â â ©â ½" }, { "input": "flask", "output": "â ‹â ‡â â Žâ …" }, { "input": "flasks", "output": "â ‹â ‡â â Žâ …â Ž" }, { "input": "flat", "output": "â ‹â ‡â â ž" }, { "input": "flatbed", "output": "â ‹â ‡â â žâ ƒâ «" }, { "input": "flatbeds", "output": "â ‹â ‡â â žâ ƒâ «â Ž" }, { "input": "flatboat", "output": "â ‹â ‡â â žâ ƒâ •â â ž" }, { "input": "flatboats", "output": "â ‹â ‡â â žâ ƒâ •â â žâ Ž" }, { "input": "flatcar", "output": "â ‹â ‡â â žâ ‰â œ" }, { "input": "flatcars", "output": "â ‹â ‡â â žâ ‰â œâ Ž" }, { "input": "flatfeet", "output": "â ‹â ‡â â žâ ‹â ‘â ‘â ž" }, { "input": "flatfish", "output": "â ‹â ‡â â žâ ‹â Šâ ©" }, { "input": "flatfishes", "output": "â ‹â ‡â â žâ ‹â Šâ ©â ‘â Ž" }, { "input": "flatfoot", "output": "â ‹â ‡â â žâ ‹â •â •â ž" }, { "input": "flatfooted", "output": "â ‹â ‡â â žâ ‹â •â •â žâ «" }, { "input": "flatfoots", "output": "â ‹â ‡â â žâ ‹â •â •â žâ Ž" }, { "input": "flatiron", "output": "â ‹â ‡â â žâ Šâ —â •â " }, { "input": "flatirons", "output": "â ‹â ‡â â žâ Šâ —â •â â Ž" }, { "input": "flatly", "output": "â ‹â ‡â â žâ ‡â ½" }, { "input": "flatness", "output": "â ‹â ‡â â žâ °â Ž" }, { "input": "flats", "output": "â ‹â ‡â â žâ Ž" }, { "input": "flatted", "output": "â ‹â ‡â â žâ žâ «" }, { "input": "flatten", "output": "â ‹â ‡â â žâ žâ ¢" }, { "input": "flattened", "output": "â ‹â ‡â â žâ žâ ¢â «" }, { "input": "flattening", "output": "â ‹â ‡â â žâ žâ ¢â ¬" }, { "input": "flattens", "output": "â ‹â ‡â â žâ žâ ¢â Ž" }, { "input": "flatter", "output": "â ‹â ‡â â žâ žâ »" }, { "input": "flattered", "output": "â ‹â ‡â â žâ žâ »â «" }, { "input": "flatterer", "output": "â ‹â ‡â â žâ žâ »â »" }, { "input": "flatterers", "output": "â ‹â ‡â â žâ žâ »â »â Ž" }, { "input": "flattering", "output": "â ‹â ‡â â žâ žâ »â ¬" }, { "input": "flatteringly", "output": "â ‹â ‡â â žâ žâ »â ¬â ‡â ½" }, { "input": "flatters", "output": "â ‹â ‡â â žâ žâ »â Ž" }, { "input": "flattery", "output": "â ‹â ‡â â žâ žâ »â ½" }, { "input": "flattest", "output": "â ‹â ‡â â žâ žâ ‘â Œ" }, { "input": "flatting", "output": "â ‹â ‡â â žâ žâ ¬" }, { "input": "flattop", "output": "â ‹â ‡â â žâ žâ •â " }, { "input": "flattops", "output": "â ‹â ‡â â žâ žâ •â â Ž" }, { "input": "flatulence", "output": "â ‹â ‡â â žâ ¥â ‡â °â ‘" }, { "input": "flatulent", "output": "â ‹â ‡â â žâ ¥â ‡â ¢â ž" }, { "input": "flatware", "output": "â ‹â ‡â â žâ ºâ œâ ‘" }, { "input": "flaunt", "output": "â ‹â ‡â â ¥â â ž" }, { "input": "flaunted", "output": "â ‹â ‡â â ¥â â žâ «" }, { "input": "flaunting", "output": "â ‹â ‡â â ¥â â žâ ¬" }, { "input": "flaunts", "output": "â ‹â ‡â â ¥â â žâ Ž" }, { "input": "flavor", "output": "â ‹â ‡â â §â •â —" }, { "input": "flavored", "output": "â ‹â ‡â â §â •â —â «" }, { "input": "flavorful", "output": "â ‹â ‡â â §â •â —â °â ‡" }, { "input": "flavoring", "output": "â ‹â ‡â â §â •â —â ¬" }, { "input": "flavorings", "output": "â ‹â ‡â â §â •⠗⠬⠎" }, { "input": "flavorless", "output": "â ‹â ‡â â §â •⠗⠨⠎" }, { "input": "flavors", "output": "â ‹â ‡â â §â •â —â Ž" }, { "input": "flaw", "output": "â ‹â ‡â â º" }, { "input": "flawed", "output": "â ‹â ‡â â ºâ «" }, { "input": "flawing", "output": "â ‹â ‡â â ºâ ¬" }, { "input": "flawless", "output": "â ‹â ‡â â ºâ ¨â Ž" }, { "input": "flawlessly", "output": "â ‹â ‡â â ºâ ¨â Žâ ‡â ½" }, { "input": "flaws", "output": "â ‹â ‡â â ºâ Ž" }, { "input": "flax", "output": "â ‹â ‡â â ­" }, { "input": "flaxen", "output": "â ‹â ‡â â ­â ¢" }, { "input": "flay", "output": "â ‹â ‡â â ½" }, { "input": "flayed", "output": "â ‹â ‡â â ½â «" }, { "input": "flaying", "output": "â ‹â ‡â â ½â ¬" }, { "input": "flays", "output": "â ‹â ‡â â ½â Ž" }, { "input": "flea", "output": "⠋⠇⠑â " }, { "input": "fleas", "output": "⠋⠇⠂⠎" }, { "input": "fleck", "output": "⠋⠇⠑⠉⠅" }, { "input": "flecked", "output": "⠋⠇⠑⠉⠅⠫" }, { "input": "flecking", "output": "⠋⠇⠑⠉⠅⠬" }, { "input": "flecks", "output": "⠋⠇⠑⠉⠅⠎" }, { "input": "fled", "output": "⠋⠇⠫" }, { "input": "fledged", "output": "⠋⠇⠫⠛⠫" }, { "input": "fledgeling", "output": "⠋⠇⠫⠛⠑⠇⠬" }, { "input": "fledgelings", "output": "⠋⠇⠫⠛⠑⠇⠬⠎" }, { "input": "fledgling", "output": "⠋⠇⠫⠛⠇⠬" }, { "input": "fledglings", "output": "⠋⠇⠫⠛⠇⠬⠎" }, { "input": "flee", "output": "⠋⠇⠑⠑" }, { "input": "fleece", "output": "⠋⠇⠑⠑⠉⠑" }, { "input": "fleeced", "output": "⠋⠇⠑⠑⠉⠫" }, { "input": "fleeces", "output": "⠋⠇⠑⠑⠉⠑⠎" }, { "input": "fleecier", "output": "⠋⠇⠑⠑⠉⠊⠻" }, { "input": "fleeciest", "output": "⠋⠇⠑⠑⠉⠊⠑⠌" }, { "input": "fleecing", "output": "⠋⠇⠑⠑⠉⠬" }, { "input": "fleecy", "output": "⠋⠇⠑⠑⠉⠽" }, { "input": "fleeing", "output": "⠋⠇⠑⠑⠬" }, { "input": "flees", "output": "⠋⠇⠑⠑⠎" }, { "input": "fleet", "output": "⠋⠇⠑⠑⠞" }, { "input": "fleeted", "output": "⠋⠇⠑⠑⠞⠫" }, { "input": "fleeter", "output": "⠋⠇⠑⠑⠞⠻" }, { "input": "fleetest", "output": "⠋⠇⠑⠑⠞⠑⠌" }, { "input": "fleeting", "output": "⠋⠇⠑⠑⠞⠬" }, { "input": "fleetingly", "output": "⠋⠇⠑⠑⠞⠬⠇⠽" }, { "input": "fleetness", "output": "⠋⠇⠑⠑⠞⠰⠎" }, { "input": "fleets", "output": "⠋⠇⠑⠑⠞⠎" }, { "input": "flesh", "output": "⠋⠇⠑⠩" }, { "input": "fleshed", "output": "⠋⠇⠑⠩⠫" }, { "input": "fleshes", "output": "⠋⠇⠑⠩⠑⠎" }, { "input": "fleshier", "output": "⠋⠇⠑⠩⠊⠻" }, { "input": "fleshiest", "output": "⠋⠇⠑⠩⠊⠑⠌" }, { "input": "fleshing", "output": "⠋⠇⠑⠩⠬" }, { "input": "fleshlier", "output": "⠋⠇⠑⠩⠇⠊⠻" }, { "input": "fleshliest", "output": "⠋⠇⠑⠩⠇⠊⠑⠌" }, { "input": "fleshly", "output": "⠋⠇⠑⠩⠇⠽" }, { "input": "fleshy", "output": "⠋⠇⠑⠩⠽" }, { "input": "flew", "output": "⠋⠇⠑⠺" }, { "input": "flex", "output": "⠋⠇⠑⠭" }, { "input": "flexed", "output": "⠋⠇⠑⠭⠫" }, { "input": "flexes", "output": "⠋⠇⠑⠭⠑⠎" }, { "input": "flexibility", "output": "⠋⠇⠑⠭⠊⠃⠊⠇⠰⠽" }, { "input": "flexible", "output": "⠋⠇⠑⠭⠊⠃⠇⠑" }, { "input": "flexibly", "output": "⠋⠇⠑⠭⠊⠃⠇⠽" }, { "input": "flexing", "output": "⠋⠇⠑⠭⠬" }, { "input": "flexitime", "output": "⠋⠇⠑⠭⠊â â ž" }, { "input": "flextime", "output": "⠋⠇⠑⠭â â ž" }, { "input": "flibbertigibbet", "output": "⠋⠇⠊⠆⠻⠞⠊⠛⠊⠆⠑⠞" }, { "input": "flibbertigibbets", "output": "⠋⠇⠊⠆⠻⠞⠊⠛⠊⠆⠑⠞⠎" }, { "input": "flick", "output": "⠋⠇⠊⠉⠅" }, { "input": "flicked", "output": "⠋⠇⠊⠉⠅⠫" }, { "input": "flicker", "output": "⠋⠇⠊⠉⠅⠻" }, { "input": "flickered", "output": "⠋⠇⠊⠉⠅⠻⠫" }, { "input": "flickering", "output": "⠋⠇⠊⠉⠅⠻⠬" }, { "input": "flickers", "output": "⠋⠇⠊⠉⠅⠻⠎" }, { "input": "flicking", "output": "⠋⠇⠊⠉⠅⠬" }, { "input": "flicks", "output": "⠋⠇⠊⠉⠅⠎" }, { "input": "flied", "output": "⠋⠇⠊⠫" }, { "input": "flier", "output": "⠋⠇⠊⠻" }, { "input": "fliers", "output": "⠋⠇⠊⠻⠎" }, { "input": "flies", "output": "⠋⠇⠊⠑⠎" }, { "input": "fliest", "output": "⠋⠇⠊⠑⠌" }, { "input": "flight", "output": "⠋⠇⠊⠣⠞" }, { "input": "flightier", "output": "⠋⠇⠊⠣⠞⠊⠻" }, { "input": "flightiest", "output": "⠋⠇⠊⠣⠞⠊⠑⠌" }, { "input": "flightiness", "output": "⠋⠇⠊⠣⠞⠊⠰⠎" }, { "input": "flightless", "output": "⠋⠇⠊⠣⠞⠨⠎" }, { "input": "flights", "output": "⠋⠇⠊⠣⠞⠎" }, { "input": "flighty", "output": "⠋⠇⠊⠣⠞⠽" }, { "input": "flimflam", "output": "⠋⠇⠊â â ‹â ‡â â " }, { "input": "flimflammed", "output": "⠋⠇⠊â â ‹â ‡â â â â «" }, { "input": "flimflamming", "output": "⠋⠇⠊â â ‹â ‡â â â â ¬" }, { "input": "flimflams", "output": "⠋⠇⠊â â ‹â ‡â â â Ž" }, { "input": "flimsier", "output": "⠋⠇⠊â â Žâ Šâ »" }, { "input": "flimsiest", "output": "⠋⠇⠊â â Žâ Šâ ‘â Œ" }, { "input": "flimsily", "output": "⠋⠇⠊â â Žâ Šâ ‡â ½" }, { "input": "flimsiness", "output": "⠋⠇⠊â â Žâ Šâ °â Ž" }, { "input": "flimsy", "output": "⠋⠇⠊â â Žâ ½" }, { "input": "flinch", "output": "⠋⠇⠔⠡" }, { "input": "flinched", "output": "⠋⠇⠔⠡⠫" }, { "input": "flinches", "output": "⠋⠇⠔⠡⠑⠎" }, { "input": "flinching", "output": "⠋⠇⠔⠡⠬" }, { "input": "fling", "output": "⠋⠇⠬" }, { "input": "flinging", "output": "⠋⠇⠬⠬" }, { "input": "flings", "output": "⠋⠇⠬⠎" }, { "input": "flint", "output": "⠋⠇⠔⠞" }, { "input": "flintier", "output": "⠋⠇⠔⠞⠊⠻" }, { "input": "flintiest", "output": "⠋⠇⠔⠞⠊⠑⠌" }, { "input": "flintlock", "output": "⠋⠇⠔⠞⠇⠕⠉⠅" }, { "input": "flintlocks", "output": "⠋⠇⠔⠞⠇⠕⠉⠅⠎" }, { "input": "flints", "output": "⠋⠇⠔⠞⠎" }, { "input": "flinty", "output": "⠋⠇⠔⠞⠽" }, { "input": "flip", "output": "⠋⠇⠊â " }, { "input": "flippancy", "output": "⠋⠇⠊â â â â â ‰â ½" }, { "input": "flippant", "output": "⠋⠇⠊â â â â â ž" }, { "input": "flippantly", "output": "⠋⠇⠊â â â â â žâ ‡â ½" }, { "input": "flipped", "output": "⠋⠇⠊â â â «" }, { "input": "flipper", "output": "⠋⠇⠊â â â »" }, { "input": "flippers", "output": "⠋⠇⠊â â â »â Ž" }, { "input": "flippest", "output": "⠋⠇⠊â â â ‘â Œ" }, { "input": "flipping", "output": "⠋⠇⠊â â â ¬" }, { "input": "flips", "output": "⠋⠇⠊â â Ž" }, { "input": "flirt", "output": "⠋⠇⠊⠗⠞" }, { "input": "flirtation", "output": "⠋⠇⠊⠗⠞â â °â " }, { "input": "flirtations", "output": "⠋⠇⠊⠗⠞â â °â â Ž" }, { "input": "flirtatious", "output": "⠋⠇⠊⠗⠞â â žâ Šâ ³â Ž" }, { "input": "flirtatiously", "output": "⠋⠇⠊⠗⠞â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "flirted", "output": "⠋⠇⠊⠗⠞⠫" }, { "input": "flirting", "output": "⠋⠇⠊⠗⠞⠬" }, { "input": "flirts", "output": "⠋⠇⠊⠗⠞⠎" }, { "input": "flit", "output": "⠋⠇⠊⠞" }, { "input": "flits", "output": "⠋⠇⠊⠞⠎" }, { "input": "flitted", "output": "⠋⠇⠊⠞⠞⠫" }, { "input": "flitting", "output": "⠋⠇⠊⠞⠞⠬" }, { "input": "float", "output": "⠋⠇⠕â â ž" }, { "input": "floatation", "output": "⠋⠇⠕â â žâ â °â " }, { "input": "floatations", "output": "⠋⠇⠕â â žâ â °â â Ž" }, { "input": "floated", "output": "⠋⠇⠕â â žâ «" }, { "input": "floater", "output": "⠋⠇⠕â â žâ »" }, { "input": "floaters", "output": "⠋⠇⠕â â žâ »â Ž" }, { "input": "floating", "output": "⠋⠇⠕â â žâ ¬" }, { "input": "floats", "output": "⠋⠇⠕â â žâ Ž" }, { "input": "flock", "output": "⠋⠇⠕⠉⠅" }, { "input": "flocked", "output": "⠋⠇⠕⠉⠅⠫" }, { "input": "flocking", "output": "⠋⠇⠕⠉⠅⠬" }, { "input": "flocks", "output": "⠋⠇⠕⠉⠅⠎" }, { "input": "floe", "output": "⠋⠇⠕⠑" }, { "input": "floes", "output": "⠋⠇⠕⠑⠎" }, { "input": "flog", "output": "⠋⠇⠕⠛" }, { "input": "flogged", "output": "⠋⠇⠕⠶⠫" }, { "input": "flogging", "output": "⠋⠇⠕⠶⠬" }, { "input": "floggings", "output": "⠋⠇⠕⠶⠬⠎" }, { "input": "flogs", "output": "⠋⠇⠕⠛⠎" }, { "input": "flood", "output": "⠋⠇⠕⠕⠙" }, { "input": "flooded", "output": "⠋⠇⠕⠕⠙⠫" }, { "input": "flooder", "output": "⠋⠇⠕⠕⠙⠻" }, { "input": "floodgate", "output": "⠋⠇⠕⠕⠙⠛â â žâ ‘" }, { "input": "floodgates", "output": "⠋⠇⠕⠕⠙⠛â â žâ ‘â Ž" }, { "input": "flooding", "output": "⠋⠇⠕⠕⠙⠬" }, { "input": "floodlight", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞" }, { "input": "floodlighted", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠫" }, { "input": "floodlighting", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠬" }, { "input": "floodlights", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠎" }, { "input": "floodlit", "output": "⠋⠇⠕⠕⠙⠇⠊⠞" }, { "input": "floods", "output": "⠋⠇⠕⠕⠙⠎" }, { "input": "floor", "output": "⠋⠇⠕⠕⠗" }, { "input": "floorboard", "output": "⠋⠇⠕⠕⠗⠃⠕⠜⠙" }, { "input": "floorboards", "output": "⠋⠇⠕⠕⠗⠃⠕⠜⠙⠎" }, { "input": "floored", "output": "⠋⠇⠕⠕⠗⠫" }, { "input": "flooring", "output": "⠋⠇⠕⠕⠗⠬" }, { "input": "floors", "output": "⠋⠇⠕⠕⠗⠎" }, { "input": "floozie", "output": "⠋⠇⠕⠕⠵⠊⠑" }, { "input": "floozies", "output": "⠋⠇⠕⠕⠵⠊⠑⠎" }, { "input": "floozy", "output": "⠋⠇⠕⠕⠵⠽" }, { "input": "flop", "output": "⠋⠇⠕â " }, { "input": "flophouse", "output": "⠋⠇⠕â â “⠳⠎⠑" }, { "input": "flophouses", "output": "⠋⠇⠕â â “⠳⠎⠑⠎" }, { "input": "flopped", "output": "⠋⠇⠕â â â «" }, { "input": "floppier", "output": "⠋⠇⠕â â â Šâ »" }, { "input": "floppies", "output": "⠋⠇⠕â â â Šâ ‘â Ž" }, { "input": "floppiest", "output": "⠋⠇⠕â â â Šâ ‘â Œ" }, { "input": "floppiness", "output": "⠋⠇⠕â â â Šâ °â Ž" }, { "input": "flopping", "output": "⠋⠇⠕â â â ¬" }, { "input": "floppy", "output": "⠋⠇⠕â â â ½" }, { "input": "flops", "output": "⠋⠇⠕â â Ž" }, { "input": "flora", "output": "⠋⠇⠕⠗â " }, { "input": "florae", "output": "⠋⠇⠕⠗â â ‘" }, { "input": "floral", "output": "⠋⠇⠕⠗â â ‡" }, { "input": "floras", "output": "⠋⠇⠕⠗â â Ž" }, { "input": "florid", "output": "⠋⠇⠕⠗⠊⠙" }, { "input": "floridly", "output": "⠋⠇⠕⠗⠊⠙⠇⠽" }, { "input": "florin", "output": "⠋⠇⠕⠗⠔" }, { "input": "florins", "output": "⠋⠇⠕⠗⠔⠎" }, { "input": "florist", "output": "⠋⠇⠕⠗⠊⠌" }, { "input": "florists", "output": "⠋⠇⠕⠗⠊⠌⠎" }, { "input": "floss", "output": "⠋⠇⠕⠎⠎" }, { "input": "flossed", "output": "⠋⠇⠕⠎⠎⠫" }, { "input": "flosses", "output": "⠋⠇⠕⠎⠎⠑⠎" }, { "input": "flossing", "output": "⠋⠇⠕⠎⠎⠬" }, { "input": "flotation", "output": "⠋⠇⠕⠞â â °â " }, { "input": "flotations", "output": "⠋⠇⠕⠞â â °â â Ž" }, { "input": "flotilla", "output": "⠋⠇⠕⠞⠊⠇⠇â " }, { "input": "flotillas", "output": "⠋⠇⠕⠞⠊⠇⠇â â Ž" }, { "input": "flotsam", "output": "⠋⠇⠕⠞⠎â â " }, { "input": "flounce", "output": "⠋⠇⠳â â ‰â ‘" }, { "input": "flounced", "output": "⠋⠇⠳â â ‰â «" }, { "input": "flounces", "output": "⠋⠇⠳â â ‰â ‘â Ž" }, { "input": "flouncing", "output": "⠋⠇⠳â â ‰â ¬" }, { "input": "flounder", "output": "⠋⠇⠨⠙⠻" }, { "input": "floundered", "output": "⠋⠇⠨⠙⠻⠫" }, { "input": "floundering", "output": "⠋⠇⠨⠙⠻⠬" }, { "input": "flounders", "output": "⠋⠇⠨⠙⠻⠎" }, { "input": "flour", "output": "⠋⠇⠳⠗" }, { "input": "floured", "output": "⠋⠇⠳⠗⠫" }, { "input": "flouring", "output": "⠋⠇⠳⠗⠬" }, { "input": "flourish", "output": "⠋⠇⠳⠗⠊⠩" }, { "input": "flourished", "output": "⠋⠇⠳⠗⠊⠩⠫" }, { "input": "flourishes", "output": "⠋⠇⠳⠗⠊⠩⠑⠎" }, { "input": "flourishing", "output": "⠋⠇⠳⠗⠊⠩⠬" }, { "input": "flours", "output": "⠋⠇⠳⠗⠎" }, { "input": "floury", "output": "⠋⠇⠳⠗⠽" }, { "input": "flout", "output": "⠋⠇⠳⠞" }, { "input": "flouted", "output": "⠋⠇⠳⠞⠫" }, { "input": "flouting", "output": "⠋⠇⠳⠞⠬" }, { "input": "flouts", "output": "⠋⠇⠳⠞⠎" }, { "input": "flow", "output": "⠋⠇⠪" }, { "input": "flowed", "output": "⠋⠇⠪⠫" }, { "input": "flower", "output": "⠋⠇⠪⠻" }, { "input": "flowerbed", "output": "⠋⠇⠪⠻⠃⠫" }, { "input": "flowerbeds", "output": "⠋⠇⠪⠻⠃⠫⠎" }, { "input": "flowered", "output": "⠋⠇⠪⠻⠫" }, { "input": "flowerier", "output": "⠋⠇⠪⠻⠊⠻" }, { "input": "floweriest", "output": "⠋⠇⠪⠻⠊⠑⠌" }, { "input": "floweriness", "output": "⠋⠇⠪⠻⠊⠰⠎" }, { "input": "flowering", "output": "⠋⠇⠪⠻⠬" }, { "input": "flowerpot", "output": "⠋⠇⠪⠻â â •â ž" }, { "input": "flowerpots", "output": "⠋⠇⠪⠻â â •â žâ Ž" }, { "input": "flowers", "output": "⠋⠇⠪⠻⠎" }, { "input": "flowery", "output": "⠋⠇⠪⠻⠽" }, { "input": "flowing", "output": "⠋⠇⠪⠬" }, { "input": "flown", "output": "⠋⠇⠪â " }, { "input": "flows", "output": "⠋⠇⠪⠎" }, { "input": "flu", "output": "⠋⠇⠥" }, { "input": "flub", "output": "⠋⠇⠥⠃" }, { "input": "flubbed", "output": "⠋⠇⠥⠆⠫" }, { "input": "flubbing", "output": "⠋⠇⠥⠆⠬" }, { "input": "flubs", "output": "⠋⠇⠥⠃⠎" }, { "input": "fluctuate", "output": "⠋⠇⠥⠉⠞⠥â â žâ ‘" }, { "input": "fluctuated", "output": "⠋⠇⠥⠉⠞⠥â â žâ «" }, { "input": "fluctuates", "output": "⠋⠇⠥⠉⠞⠥â â žâ ‘â Ž" }, { "input": "fluctuating", "output": "⠋⠇⠥⠉⠞⠥â â žâ ¬" }, { "input": "fluctuation", "output": "⠋⠇⠥⠉⠞⠥â â °â " }, { "input": "fluctuations", "output": "⠋⠇⠥⠉⠞⠥â â °â â Ž" }, { "input": "flue", "output": "⠋⠇⠥⠑" }, { "input": "fluency", "output": "⠋⠇⠥⠢⠉⠽" }, { "input": "fluent", "output": "⠋⠇⠥⠢⠞" }, { "input": "fluently", "output": "⠋⠇⠥⠢⠞⠇⠽" }, { "input": "flues", "output": "⠋⠇⠥⠑⠎" }, { "input": "fluff", "output": "⠋⠇⠥⠋⠋" }, { "input": "fluffed", "output": "⠋⠇⠥⠖⠫" }, { "input": "fluffier", "output": "⠋⠇⠥⠖⠊⠻" }, { "input": "fluffiest", "output": "⠋⠇⠥⠖⠊⠑⠌" }, { "input": "fluffiness", "output": "⠋⠇⠥⠖⠊⠰⠎" }, { "input": "fluffing", "output": "⠋⠇⠥⠖⠬" }, { "input": "fluffs", "output": "⠋⠇⠥⠖⠎" }, { "input": "fluffy", "output": "⠋⠇⠥⠖⠽" }, { "input": "fluid", "output": "⠋⠇⠥⠊⠙" }, { "input": "fluidity", "output": "⠋⠇⠥⠊⠙⠰⠽" }, { "input": "fluidly", "output": "⠋⠇⠥⠊⠙⠇⠽" }, { "input": "fluids", "output": "⠋⠇⠥⠊⠙⠎" }, { "input": "fluke", "output": "⠋⠇⠥⠅⠑" }, { "input": "flukes", "output": "⠋⠇⠥⠅⠑⠎" }, { "input": "flukey", "output": "⠋⠇⠥⠅⠑⠽" }, { "input": "flukier", "output": "⠋⠇⠥⠅⠊⠻" }, { "input": "flukiest", "output": "⠋⠇⠥⠅⠊⠑⠌" }, { "input": "fluky", "output": "⠋⠇⠥⠅⠽" }, { "input": "flume", "output": "⠋⠇⠥â â ‘" }, { "input": "flumes", "output": "⠋⠇⠥â â ‘â Ž" }, { "input": "flummox", "output": "⠋⠇⠥â â â •â ­" }, { "input": "flummoxed", "output": "⠋⠇⠥â â â •â ­â «" }, { "input": "flummoxes", "output": "⠋⠇⠥â â â •â ­â ‘â Ž" }, { "input": "flummoxing", "output": "⠋⠇⠥â â â •â ­â ¬" }, { "input": "flung", "output": "⠋⠇⠥â â ›" }, { "input": "flunk", "output": "⠋⠇⠥â â …" }, { "input": "flunked", "output": "⠋⠇⠥â â …â «" }, { "input": "flunkey", "output": "⠋⠇⠥â â …â ‘â ½" }, { "input": "flunkeys", "output": "⠋⠇⠥â â …⠑⠽⠎" }, { "input": "flunkie", "output": "⠋⠇⠥â â …â Šâ ‘" }, { "input": "flunkies", "output": "⠋⠇⠥â â …â Šâ ‘â Ž" }, { "input": "flunking", "output": "⠋⠇⠥â â …â ¬" }, { "input": "flunks", "output": "⠋⠇⠥â â …â Ž" }, { "input": "flunky", "output": "⠋⠇⠥â â …â ½" }, { "input": "fluoresce", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠑" }, { "input": "fluoresced", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠫" }, { "input": "fluorescence", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠰⠑" }, { "input": "fluorescent", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠢⠞" }, { "input": "fluoresces", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠑⠎" }, { "input": "fluorescing", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠬" }, { "input": "fluoridate", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ ‘" }, { "input": "fluoridated", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ «" }, { "input": "fluoridates", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ ‘â Ž" }, { "input": "fluoridating", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ ¬" }, { "input": "fluoridation", "output": "⠋⠇⠥⠕⠗⠊⠙â â °â " }, { "input": "fluoride", "output": "⠋⠇⠥⠕⠗⠊⠙⠑" }, { "input": "fluorides", "output": "⠋⠇⠥⠕⠗⠊⠙⠑⠎" }, { "input": "fluorine", "output": "⠋⠇⠥⠕⠗⠔⠑" }, { "input": "fluorite", "output": "⠋⠇⠥⠕⠗⠊⠞⠑" }, { "input": "fluorocarbon", "output": "⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â " }, { "input": "fluorocarbons", "output": "⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â â Ž" }, { "input": "fluoroscope", "output": "⠋⠇⠥⠕⠗⠕⠎⠉⠕â â ‘" }, { "input": "fluoroscopes", "output": "⠋⠇⠥⠕⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "flurried", "output": "⠋⠇⠥⠗⠗⠊⠫" }, { "input": "flurries", "output": "⠋⠇⠥⠗⠗⠊⠑⠎" }, { "input": "flurry", "output": "⠋⠇⠥⠗⠗⠽" }, { "input": "flurrying", "output": "⠋⠇⠥⠗⠗⠽⠬" }, { "input": "flush", "output": "⠋⠇⠥⠩" }, { "input": "flushed", "output": "⠋⠇⠥⠩⠫" }, { "input": "flusher", "output": "⠋⠇⠥⠩⠻" }, { "input": "flushes", "output": "⠋⠇⠥⠩⠑⠎" }, { "input": "flushest", "output": "⠋⠇⠥⠩⠑⠌" }, { "input": "flushing", "output": "⠋⠇⠥⠩⠬" }, { "input": "fluster", "output": "⠋⠇⠥⠌⠻" }, { "input": "flustered", "output": "⠋⠇⠥⠌⠻⠫" }, { "input": "flustering", "output": "⠋⠇⠥⠌⠻⠬" }, { "input": "flusters", "output": "⠋⠇⠥⠌⠻⠎" }, { "input": "flute", "output": "⠋⠇⠥⠞⠑" }, { "input": "fluted", "output": "⠋⠇⠥⠞⠫" }, { "input": "flutes", "output": "⠋⠇⠥⠞⠑⠎" }, { "input": "fluting", "output": "⠋⠇⠥⠞⠬" }, { "input": "flutist", "output": "⠋⠇⠥⠞⠊⠌" }, { "input": "flutists", "output": "⠋⠇⠥⠞⠊⠌⠎" }, { "input": "flutter", "output": "⠋⠇⠥⠞⠞⠻" }, { "input": "fluttered", "output": "⠋⠇⠥⠞⠞⠻⠫" }, { "input": "fluttering", "output": "⠋⠇⠥⠞⠞⠻⠬" }, { "input": "flutters", "output": "⠋⠇⠥⠞⠞⠻⠎" }, { "input": "fluttery", "output": "⠋⠇⠥⠞⠞⠻⠽" }, { "input": "flux", "output": "⠋⠇⠥⠭" }, { "input": "fluxed", "output": "⠋⠇⠥⠭⠫" }, { "input": "fluxes", "output": "⠋⠇⠥⠭⠑⠎" }, { "input": "fluxing", "output": "⠋⠇⠥⠭⠬" }, { "input": "fly", "output": "⠋⠇⠽" }, { "input": "flyby", "output": "⠋⠇⠽⠃⠽" }, { "input": "flybys", "output": "⠋⠇⠽⠃⠽⠎" }, { "input": "flycatcher", "output": "⠋⠇⠽⠉â â žâ ¡â »" }, { "input": "flycatchers", "output": "⠋⠇⠽⠉â â žâ ¡â »â Ž" }, { "input": "flyer", "output": "⠋⠇⠽⠻" }, { "input": "flyers", "output": "⠋⠇⠽⠻⠎" }, { "input": "flying", "output": "⠋⠇⠽⠬" }, { "input": "flyleaf", "output": "⠋⠇⠽⠇⠂⠋" }, { "input": "flyleaves", "output": "⠋⠇⠽⠇⠂⠧⠑⠎" }, { "input": "flyover", "output": "⠋⠇⠽⠕⠧⠻" }, { "input": "flyovers", "output": "⠋⠇⠽⠕⠧⠻⠎" }, { "input": "flypaper", "output": "⠋⠇⠽â â â â »" }, { "input": "flypapers", "output": "⠋⠇⠽â â â â »â Ž" }, { "input": "flysheet", "output": "⠋⠇⠽⠩⠑⠑⠞" }, { "input": "flyspeck", "output": "⠋⠇⠽⠎â â ‘⠉⠅" }, { "input": "flyspecked", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠫" }, { "input": "flyspecking", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠬" }, { "input": "flyspecks", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠎" }, { "input": "flyswatter", "output": "⠋⠇⠽⠎⠺â â žâ žâ »" }, { "input": "flyswatters", "output": "⠋⠇⠽⠎⠺â â žâ žâ »â Ž" }, { "input": "flyweight", "output": "⠋⠇⠽⠺⠑⠊⠣⠞" }, { "input": "flyweights", "output": "⠋⠇⠽⠺⠑⠊⠣⠞⠎" }, { "input": "flywheel", "output": "⠋⠇⠽⠱⠑⠑⠇" }, { "input": "flywheels", "output": "⠋⠇⠽⠱⠑⠑⠇⠎" }, { "input": "foal", "output": "â ‹â •â â ‡" }, { "input": "foaled", "output": "â ‹â •â â ‡â «" }, { "input": "foaling", "output": "â ‹â •â â ‡â ¬" }, { "input": "foals", "output": "â ‹â •â â ‡â Ž" }, { "input": "foam", "output": "â ‹â •â â " }, { "input": "foamed", "output": "â ‹â •â â â «" }, { "input": "foamier", "output": "â ‹â •â â â Šâ »" }, { "input": "foamiest", "output": "â ‹â •â â â Šâ ‘â Œ" }, { "input": "foaming", "output": "â ‹â •â â â ¬" }, { "input": "foams", "output": "â ‹â •â â â Ž" }, { "input": "foamy", "output": "â ‹â •â â â ½" }, { "input": "fob", "output": "â ‹â •â ƒ" }, { "input": "fobbed", "output": "⠋⠕⠆⠫" }, { "input": "fobbing", "output": "⠋⠕⠆⠬" }, { "input": "fobs", "output": "⠋⠕⠃⠎" }, { "input": "focal", "output": "â ‹â •â ‰â â ‡" }, { "input": "foci", "output": "⠋⠕⠉⠊" }, { "input": "focus", "output": "⠋⠕⠉⠥⠎" }, { "input": "focused", "output": "⠋⠕⠉⠥⠎⠫" }, { "input": "focuses", "output": "⠋⠕⠉⠥⠎⠑⠎" }, { "input": "focusing", "output": "⠋⠕⠉⠥⠎⠬" }, { "input": "focussed", "output": "⠋⠕⠉⠥⠎⠎⠫" }, { "input": "focusses", "output": "⠋⠕⠉⠥⠎⠎⠑⠎" }, { "input": "focussing", "output": "⠋⠕⠉⠥⠎⠎⠬" }, { "input": "fodder", "output": "⠋⠕⠙⠙⠻" }, { "input": "fodders", "output": "⠋⠕⠙⠙⠻⠎" }, { "input": "foe", "output": "â ‹â •â ‘" }, { "input": "foes", "output": "â ‹â •â ‘â Ž" }, { "input": "foetal", "output": "â ‹â •â ‘â žâ â ‡" }, { "input": "foetus", "output": "⠋⠕⠑⠞⠥⠎" }, { "input": "foetuses", "output": "⠋⠕⠑⠞⠥⠎⠑⠎" }, { "input": "fog", "output": "â ‹â •â ›" }, { "input": "fogbound", "output": "⠋⠕⠛⠃⠨⠙" }, { "input": "fogey", "output": "⠋⠕⠛⠑⠽" }, { "input": "fogeys", "output": "⠋⠕⠛⠑⠽⠎" }, { "input": "fogged", "output": "â ‹â •â ¶â «" }, { "input": "foggier", "output": "â ‹â •â ¶â Šâ »" }, { "input": "foggiest", "output": "â ‹â •â ¶â Šâ ‘â Œ" }, { "input": "fogginess", "output": "â ‹â •â ¶â Šâ °â Ž" }, { "input": "fogging", "output": "â ‹â •â ¶â ¬" }, { "input": "foggy", "output": "â ‹â •â ¶â ½" }, { "input": "foghorn", "output": "⠋⠕⠛⠓⠕⠗â " }, { "input": "foghorns", "output": "⠋⠕⠛⠓⠕⠗â â Ž" }, { "input": "fogies", "output": "⠋⠕⠛⠊⠑⠎" }, { "input": "fogs", "output": "⠋⠕⠛⠎" }, { "input": "fogy", "output": "⠋⠕⠛⠽" }, { "input": "foible", "output": "⠋⠕⠊⠃⠇⠑" }, { "input": "foibles", "output": "⠋⠕⠊⠃⠇⠑⠎" }, { "input": "foil", "output": "â ‹â •â Šâ ‡" }, { "input": "foiled", "output": "⠋⠕⠊⠇⠫" }, { "input": "foiling", "output": "⠋⠕⠊⠇⠬" }, { "input": "foils", "output": "⠋⠕⠊⠇⠎" }, { "input": "foist", "output": "â ‹â •â Šâ Œ" }, { "input": "foisted", "output": "⠋⠕⠊⠌⠫" }, { "input": "foisting", "output": "⠋⠕⠊⠌⠬" }, { "input": "foists", "output": "⠋⠕⠊⠌⠎" }, { "input": "fold", "output": "⠋⠕⠇⠙" }, { "input": "foldaway", "output": "⠋⠕⠇⠙â â ºâ â ½" }, { "input": "folded", "output": "⠋⠕⠇⠙⠫" }, { "input": "folder", "output": "⠋⠕⠇⠙⠻" }, { "input": "folders", "output": "⠋⠕⠇⠙⠻⠎" }, { "input": "folding", "output": "⠋⠕⠇⠙⠬" }, { "input": "folds", "output": "⠋⠕⠇⠙⠎" }, { "input": "foliage", "output": "⠋⠕⠇⠊â â ›â ‘" }, { "input": "folio", "output": "⠋⠕⠇⠊⠕" }, { "input": "folios", "output": "⠋⠕⠇⠊⠕⠎" }, { "input": "folk", "output": "⠋⠕⠇⠅" }, { "input": "folklore", "output": "⠋⠕⠇⠅⠇⠕⠗⠑" }, { "input": "folks", "output": "⠋⠕⠇⠅⠎" }, { "input": "folksier", "output": "⠋⠕⠇⠅⠎⠊⠻" }, { "input": "folksiest", "output": "⠋⠕⠇⠅⠎⠊⠑⠌" }, { "input": "folksy", "output": "⠋⠕⠇⠅⠎⠽" }, { "input": "follicle", "output": "⠋⠕⠇⠇⠊⠉⠇⠑" }, { "input": "follicles", "output": "⠋⠕⠇⠇⠊⠉⠇⠑⠎" }, { "input": "follies", "output": "⠋⠕⠇⠇⠊⠑⠎" }, { "input": "follow", "output": "⠋⠕⠇⠇⠪" }, { "input": "followed", "output": "⠋⠕⠇⠇⠪⠫" }, { "input": "follower", "output": "⠋⠕⠇⠇⠪⠻" }, { "input": "followers", "output": "⠋⠕⠇⠇⠪⠻⠎" }, { "input": "following", "output": "⠋⠕⠇⠇⠪⠬" }, { "input": "followings", "output": "⠋⠕⠇⠇⠪⠬⠎" }, { "input": "follows", "output": "⠋⠕⠇⠇⠪⠎" }, { "input": "folly", "output": "⠋⠕⠇⠇⠽" }, { "input": "foment", "output": "â ‹â •â °â ž" }, { "input": "fomentation", "output": "â ‹â •â °â žâ â °â " }, { "input": "fomented", "output": "â ‹â •â °â žâ «" }, { "input": "fomenting", "output": "â ‹â •â °â žâ ¬" }, { "input": "foments", "output": "â ‹â •â °â žâ Ž" }, { "input": "fond", "output": "â ‹â •â â ™" }, { "input": "fondant", "output": "â ‹â •â â ™â â â ž" }, { "input": "fondants", "output": "â ‹â •â â ™â â â žâ Ž" }, { "input": "fonder", "output": "â ‹â •â â ™â »" }, { "input": "fondest", "output": "â ‹â •â â ™â ‘â Œ" }, { "input": "fondle", "output": "â ‹â •â â ™â ‡â ‘" }, { "input": "fondled", "output": "â ‹â •â â ™â ‡â «" }, { "input": "fondles", "output": "â ‹â •â â ™â ‡â ‘â Ž" }, { "input": "fondling", "output": "â ‹â •â â ™â ‡â ¬" }, { "input": "fondly", "output": "â ‹â •â â ™â ‡â ½" }, { "input": "fondness", "output": "â ‹â •â â ™â °â Ž" }, { "input": "fondu", "output": "â ‹â •â â ™â ¥" }, { "input": "fondue", "output": "â ‹â •â â ™â ¥â ‘" }, { "input": "fondues", "output": "â ‹â •â â ™â ¥â ‘â Ž" }, { "input": "fondus", "output": "â ‹â •â â ™â ¥â Ž" }, { "input": "font", "output": "â ‹â •â â ž" }, { "input": "fonts", "output": "â ‹â •â â žâ Ž" }, { "input": "food", "output": "â ‹â •â •â ™" }, { "input": "foods", "output": "⠋⠕⠕⠙⠎" }, { "input": "foodstuff", "output": "⠋⠕⠕⠙⠌⠥⠋⠋" }, { "input": "foodstuffs", "output": "⠋⠕⠕⠙⠌⠥⠖⠎" }, { "input": "fool", "output": "â ‹â •â •â ‡" }, { "input": "fooled", "output": "⠋⠕⠕⠇⠫" }, { "input": "fooleries", "output": "⠋⠕⠕⠇⠻⠊⠑⠎" }, { "input": "foolery", "output": "⠋⠕⠕⠇⠻⠽" }, { "input": "foolhardier", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠻" }, { "input": "foolhardiest", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠑⠌" }, { "input": "foolhardiness", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠰⠎" }, { "input": "foolhardy", "output": "⠋⠕⠕⠇⠓⠜⠙⠽" }, { "input": "fooling", "output": "⠋⠕⠕⠇⠬" }, { "input": "foolish", "output": "⠋⠕⠕⠇⠊⠩" }, { "input": "foolishly", "output": "⠋⠕⠕⠇⠊⠩⠇⠽" }, { "input": "foolishness", "output": "⠋⠕⠕⠇⠊⠩⠰⠎" }, { "input": "foolproof", "output": "â ‹â •â •â ‡â â —â •â ·" }, { "input": "fools", "output": "⠋⠕⠕⠇⠎" }, { "input": "foolscap", "output": "⠋⠕⠕⠇⠎⠉â â " }, { "input": "foot", "output": "â ‹â •â •â ž" }, { "input": "footage", "output": "â ‹â •â •â žâ â ›â ‘" }, { "input": "football", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡" }, { "input": "footballer", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â »" }, { "input": "footballers", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â »â Ž" }, { "input": "footballs", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â Ž" }, { "input": "footbridge", "output": "⠋⠕⠕⠞⠃⠗⠊⠙⠛⠑" }, { "input": "footbridges", "output": "⠋⠕⠕⠞⠃⠗⠊⠙⠛⠑⠎" }, { "input": "footed", "output": "â ‹â •â •â žâ «" }, { "input": "footfall", "output": "â ‹â •â •â žâ ‹â â ‡â ‡" }, { "input": "footfalls", "output": "â ‹â •â •â žâ ‹â â ‡â ‡â Ž" }, { "input": "foothill", "output": "⠋⠕⠕⠞⠓⠊⠇⠇" }, { "input": "foothills", "output": "⠋⠕⠕⠞⠓⠊⠇⠇⠎" }, { "input": "foothold", "output": "⠋⠕⠕⠞⠓⠕⠇⠙" }, { "input": "footholds", "output": "⠋⠕⠕⠞⠓⠕⠇⠙⠎" }, { "input": "footing", "output": "â ‹â •â •â žâ ¬" }, { "input": "footings", "output": "⠋⠕⠕⠞⠬⠎" }, { "input": "footlights", "output": "⠋⠕⠕⠞⠇⠊⠣⠞⠎" }, { "input": "footlocker", "output": "⠋⠕⠕⠞⠇⠕⠉⠅⠻" }, { "input": "footlockers", "output": "⠋⠕⠕⠞⠇⠕⠉⠅⠻⠎" }, { "input": "footloose", "output": "⠋⠕⠕⠞⠇⠕⠕⠎⠑" }, { "input": "footman", "output": "â ‹â •â •â žâ â â " }, { "input": "footmen", "output": "â ‹â •â •â žâ â ¢" }, { "input": "footnote", "output": "â ‹â •â •â žâ â •â žâ ‘" }, { "input": "footnoted", "output": "â ‹â •â •â žâ â •â žâ «" }, { "input": "footnotes", "output": "â ‹â •â •â žâ â •â žâ ‘â Ž" }, { "input": "footnoting", "output": "â ‹â •â •â žâ â •â žâ ¬" }, { "input": "footpath", "output": "â ‹â •â •â žâ â â ¹" }, { "input": "footpaths", "output": "â ‹â •â •â žâ â â ¹â Ž" }, { "input": "footprint", "output": "â ‹â •â •â žâ â —⠔⠞" }, { "input": "footprints", "output": "â ‹â •â •â žâ â —⠔⠞⠎" }, { "input": "footrest", "output": "â ‹â •â •â žâ —â ‘â Œ" }, { "input": "footrests", "output": "⠋⠕⠕⠞⠗⠑⠌⠎" }, { "input": "foots", "output": "â ‹â •â •â žâ Ž" }, { "input": "footsie", "output": "â ‹â •â •â žâ Žâ Šâ ‘" }, { "input": "footsies", "output": "â ‹â •â •â žâ Žâ Šâ ‘â Ž" }, { "input": "footsore", "output": "â ‹â •â •â žâ Žâ •â —â ‘" }, { "input": "footstep", "output": "⠋⠕⠕⠞⠌⠑â " }, { "input": "footsteps", "output": "⠋⠕⠕⠞⠌⠑â â Ž" }, { "input": "footstool", "output": "⠋⠕⠕⠞⠌⠕⠕⠇" }, { "input": "footstools", "output": "⠋⠕⠕⠞⠌⠕⠕⠇⠎" }, { "input": "footwear", "output": "⠋⠕⠕⠞⠺⠑⠜" }, { "input": "footwork", "output": "â ‹â •â •â žâ â º" }, { "input": "fop", "output": "â ‹â •â " }, { "input": "foppish", "output": "â ‹â •â â â Šâ ©" }, { "input": "fops", "output": "â ‹â •â â Ž" }, { "input": "for", "output": "â ¿" }, { "input": "fora", "output": "â ¿â " }, { "input": "forage", "output": "â ¿â â ›â ‘" }, { "input": "foraged", "output": "â ¿â â ›â «" }, { "input": "forager", "output": "â ¿â â ›â »" }, { "input": "foragers", "output": "â ¿â â ›â »â Ž" }, { "input": "forages", "output": "â ¿â â ›â ‘â Ž" }, { "input": "foraging", "output": "â ¿â â ›â ¬" }, { "input": "foray", "output": "â ¿â â ½" }, { "input": "forayed", "output": "â ¿â â ½â «" }, { "input": "foraying", "output": "â ¿â â ½â ¬" }, { "input": "forays", "output": "â ¿â â ½â Ž" }, { "input": "forbad", "output": "â ¿â ƒâ â ™" }, { "input": "forbade", "output": "â ¿â ƒâ â ™â ‘" }, { "input": "forbear", "output": "⠿⠃⠑⠜" }, { "input": "forbearance", "output": "⠿⠃⠑⠜⠨⠑" }, { "input": "forbearing", "output": "⠿⠃⠑⠜⠬" }, { "input": "forbears", "output": "⠿⠃⠑⠜⠎" }, { "input": "forbid", "output": "⠿⠃⠊⠙" }, { "input": "forbidden", "output": "⠿⠃⠊⠙⠙⠢" }, { "input": "forbidding", "output": "⠿⠃⠊⠙⠙⠬" }, { "input": "forbiddingly", "output": "⠿⠃⠊⠙⠙⠬⠇⠽" }, { "input": "forbiddings", "output": "⠿⠃⠊⠙⠙⠬⠎" }, { "input": "forbids", "output": "⠿⠃⠊⠙⠎" }, { "input": "forbore", "output": "⠿⠃⠕⠗⠑" }, { "input": "forborne", "output": "⠿⠃⠕⠗â â ‘" }, { "input": "force", "output": "⠿⠉⠑" }, { "input": "forced", "output": "⠿⠉⠫" }, { "input": "forceful", "output": "⠿⠉⠑⠰⠇" }, { "input": "forcefully", "output": "⠿⠉⠑⠰⠇⠇⠽" }, { "input": "forcefulness", "output": "⠿⠉⠑⠰⠇⠰⠎" }, { "input": "forceps", "output": "⠿⠉⠑â â Ž" }, { "input": "forces", "output": "⠿⠉⠑⠎" }, { "input": "forcible", "output": "⠿⠉⠊⠃⠇⠑" }, { "input": "forcibly", "output": "⠿⠉⠊⠃⠇⠽" }, { "input": "forcing", "output": "⠿⠉⠬" }, { "input": "ford", "output": "â ¿â ™" }, { "input": "forded", "output": "⠿⠙⠫" }, { "input": "fording", "output": "⠿⠙⠬" }, { "input": "fords", "output": "⠿⠙⠎" }, { "input": "fore", "output": "â ¿â ‘" }, { "input": "forearm", "output": "â ¿â ‘â œâ " }, { "input": "forearmed", "output": "â ¿â ‘â œâ â «" }, { "input": "forearming", "output": "â ¿â ‘â œâ â ¬" }, { "input": "forearms", "output": "â ¿â ‘â œâ â Ž" }, { "input": "forebear", "output": "⠿⠑⠃⠑⠜" }, { "input": "forebears", "output": "⠿⠑⠃⠑⠜⠎" }, { "input": "forebode", "output": "⠿⠑⠃⠕⠙⠑" }, { "input": "foreboded", "output": "⠿⠑⠃⠕⠙⠫" }, { "input": "forebodes", "output": "⠿⠑⠃⠕⠙⠑⠎" }, { "input": "foreboding", "output": "⠿⠑⠃⠕⠙⠬" }, { "input": "forebodings", "output": "⠿⠑⠃⠕⠙⠬⠎" }, { "input": "forecast", "output": "â ¿â ‘â ‰â â Œ" }, { "input": "forecasted", "output": "â ¿â ‘â ‰â â Œâ «" }, { "input": "forecaster", "output": "â ¿â ‘â ‰â â Œâ »" }, { "input": "forecasters", "output": "â ¿â ‘â ‰â â Œâ »â Ž" }, { "input": "forecasting", "output": "â ¿â ‘â ‰â â Œâ ¬" }, { "input": "forecastle", "output": "â ¿â ‘â ‰â â Œâ ‡â ‘" }, { "input": "forecastles", "output": "â ¿â ‘â ‰â â Œâ ‡â ‘â Ž" }, { "input": "forecasts", "output": "â ¿â ‘â ‰â â Œâ Ž" }, { "input": "foreclose", "output": "⠿⠑⠉⠇⠕⠎⠑" }, { "input": "foreclosed", "output": "⠿⠑⠉⠇⠕⠎⠫" }, { "input": "forecloses", "output": "⠿⠑⠉⠇⠕⠎⠑⠎" }, { "input": "foreclosing", "output": "⠿⠑⠉⠇⠕⠎⠬" }, { "input": "foreclosure", "output": "⠿⠑⠉⠇⠕⠎⠥⠗⠑" }, { "input": "foreclosures", "output": "⠿⠑⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "forefather", "output": "â ¿â ‘â â ‹" }, { "input": "forefathers", "output": "â ¿â ‘â â ‹â Ž" }, { "input": "forefeet", "output": "â ¿â ‘â ‹â ‘â ‘â ž" }, { "input": "forefinger", "output": "⠿⠑⠋⠬⠻" }, { "input": "forefingers", "output": "⠿⠑⠋⠬⠻⠎" }, { "input": "forefoot", "output": "â ¿â ‘â ‹â •â •â ž" }, { "input": "forefront", "output": "â ¿â ‘â ‹â —â •â â ž" }, { "input": "forefronts", "output": "â ¿â ‘â ‹â —â •â â žâ Ž" }, { "input": "foregather", "output": "â ¿â ‘â ›â â ®â —" }, { "input": "foregathered", "output": "â ¿â ‘â ›â â ®â —â «" }, { "input": "foregathering", "output": "â ¿â ‘â ›â â ®â —â ¬" }, { "input": "foregathers", "output": "â ¿â ‘â ›â â ®â —â Ž" }, { "input": "forego", "output": "⠿⠑⠛⠕" }, { "input": "foregoes", "output": "⠿⠑⠛⠕⠑⠎" }, { "input": "foregoing", "output": "⠿⠑⠛⠕⠬" }, { "input": "foregone", "output": "â ¿â ‘â ›â â •" }, { "input": "foreground", "output": "⠿⠑⠛⠗⠨⠙" }, { "input": "foregrounded", "output": "⠿⠑⠛⠗⠨⠙⠫" }, { "input": "foregrounding", "output": "⠿⠑⠛⠗⠨⠙⠬" }, { "input": "foregrounds", "output": "⠿⠑⠛⠗⠨⠙⠎" }, { "input": "forehand", "output": "â ¿â ‘â “â ¯" }, { "input": "forehands", "output": "⠿⠑⠓⠯⠎" }, { "input": "forehead", "output": "â ¿â ‘â “â ‚â ™" }, { "input": "foreheads", "output": "⠿⠑⠓⠂⠙⠎" }, { "input": "foreign", "output": "â ¿â ‘â Šâ ›â " }, { "input": "foreigner", "output": "â ¿â ‘â Šâ ›â â »" }, { "input": "foreigners", "output": "â ¿â ‘â Šâ ›â â »â Ž" }, { "input": "foreknowledge", "output": "â ¿â ‘â â …⠇⠫⠛⠑" }, { "input": "foreleg", "output": "⠿⠑⠇⠑⠛" }, { "input": "forelegs", "output": "⠿⠑⠇⠑⠛⠎" }, { "input": "forelock", "output": "⠿⠑⠇⠕⠉⠅" }, { "input": "forelocks", "output": "⠿⠑⠇⠕⠉⠅⠎" }, { "input": "foreman", "output": "â ¿â ‘â â â " }, { "input": "foremast", "output": "â ¿â ‘â â â Œ" }, { "input": "foremasts", "output": "â ¿â ‘â â â Œâ Ž" }, { "input": "foremen", "output": "â ¿â ‘â â ¢" }, { "input": "foremost", "output": "â ¿â ‘â â •â Œ" }, { "input": "forename", "output": "â ¿â ‘â â " }, { "input": "forenames", "output": "â ¿â ‘â â â Ž" }, { "input": "forenoon", "output": "â ¿â ‘â â •â •â " }, { "input": "forenoons", "output": "â ¿â ‘â â •â •â â Ž" }, { "input": "forensic", "output": "⠿⠢⠎⠊⠉" }, { "input": "forensics", "output": "⠿⠢⠎⠊⠉⠎" }, { "input": "foreordain", "output": "â ¿â ‘â •â —â ™â â ”" }, { "input": "foreordained", "output": "â ¿â ‘â •â —â ™â â ”â «" }, { "input": "foreordaining", "output": "â ¿â ‘â •â —â ™â â ”â ¬" }, { "input": "foreordains", "output": "â ¿â ‘â •â —â ™â â ”â Ž" }, { "input": "foreplay", "output": "â ¿â ‘â â ‡â â ½" }, { "input": "forerunner", "output": "â ¿â ‘â —â ¥â â â »" }, { "input": "forerunners", "output": "â ¿â ‘â —â ¥â â â »â Ž" }, { "input": "fores", "output": "â ¿â ‘â Ž" }, { "input": "foresail", "output": "â ¿â ‘â Žâ â Šâ ‡" }, { "input": "foresails", "output": "â ¿â ‘â Žâ â Šâ ‡â Ž" }, { "input": "foresaw", "output": "â ¿â ‘â Žâ â º" }, { "input": "foresee", "output": "â ¿â ‘â Žâ ‘â ‘" }, { "input": "foreseeable", "output": "⠿⠑⠎⠑⠂⠃⠇⠑" }, { "input": "foreseeing", "output": "â ¿â ‘â Žâ ‘â ‘â ¬" }, { "input": "foreseen", "output": "â ¿â ‘â Žâ ‘â ¢" }, { "input": "foresees", "output": "â ¿â ‘â Žâ ‘â ‘â Ž" }, { "input": "foreshadow", "output": "â ¿â ‘â ©â â ™â ª" }, { "input": "foreshadowed", "output": "â ¿â ‘â ©â â ™â ªâ «" }, { "input": "foreshadowing", "output": "â ¿â ‘â ©â â ™â ªâ ¬" }, { "input": "foreshadows", "output": "â ¿â ‘â ©â â ™â ªâ Ž" }, { "input": "foreshorten", "output": "â ¿â ‘â ©â •â —â žâ ¢" }, { "input": "foreshortened", "output": "⠿⠑⠩⠕⠗⠞⠢⠫" }, { "input": "foreshortening", "output": "⠿⠑⠩⠕⠗⠞⠢⠬" }, { "input": "foreshortens", "output": "⠿⠑⠩⠕⠗⠞⠢⠎" }, { "input": "foresight", "output": "⠿⠑⠎⠊⠣⠞" }, { "input": "foreskin", "output": "â ¿â ‘â Žâ …â ”" }, { "input": "foreskins", "output": "⠿⠑⠎⠅⠔⠎" }, { "input": "forest", "output": "â ¿â ‘â Œ" }, { "input": "forestall", "output": "â ¿â ‘â Œâ â ‡â ‡" }, { "input": "forestalled", "output": "â ¿â ‘â Œâ â ‡â ‡â «" }, { "input": "forestalling", "output": "â ¿â ‘â Œâ â ‡â ‡â ¬" }, { "input": "forestalls", "output": "â ¿â ‘â Œâ â ‡â ‡â Ž" }, { "input": "forestation", "output": "â ¿â ‘â Œâ â °â " }, { "input": "forested", "output": "⠿⠑⠌⠫" }, { "input": "forester", "output": "⠿⠑⠌⠻" }, { "input": "foresters", "output": "⠿⠑⠌⠻⠎" }, { "input": "foresting", "output": "⠿⠑⠌⠬" }, { "input": "forestry", "output": "⠿⠑⠌⠗⠽" }, { "input": "forests", "output": "⠿⠑⠌⠎" }, { "input": "foreswear", "output": "⠿⠑⠎⠺⠑⠜" }, { "input": "foreswearing", "output": "⠿⠑⠎⠺⠑⠜⠬" }, { "input": "foreswears", "output": "⠿⠑⠎⠺⠑⠜⠎" }, { "input": "foreswore", "output": "⠿⠑⠎⠺⠕⠗⠑" }, { "input": "foresworn", "output": "⠿⠑⠎⠺⠕⠗â " }, { "input": "foretaste", "output": "â ¿â ‘â žâ â Œâ ‘" }, { "input": "foretasted", "output": "â ¿â ‘â žâ â Œâ «" }, { "input": "foretastes", "output": "â ¿â ‘â žâ â Œâ ‘â Ž" }, { "input": "foretasting", "output": "â ¿â ‘â žâ â Œâ ¬" }, { "input": "foretell", "output": "⠿⠑⠞⠑⠇⠇" }, { "input": "foretelling", "output": "⠿⠑⠞⠑⠇⠇⠬" }, { "input": "foretells", "output": "⠿⠑⠞⠑⠇⠇⠎" }, { "input": "forethought", "output": "â ¿â ‘â ¹â â ³" }, { "input": "foretold", "output": "⠿⠑⠞⠕⠇⠙" }, { "input": "forever", "output": "â ¿â â ‘" }, { "input": "forevermore", "output": "â ¿â â ‘â â •â —â ‘" }, { "input": "forewarn", "output": "⠿⠑⠺⠜â " }, { "input": "forewarned", "output": "⠿⠑⠺⠜â â «" }, { "input": "forewarning", "output": "⠿⠑⠺⠜â â ¬" }, { "input": "forewarns", "output": "⠿⠑⠺⠜â â Ž" }, { "input": "forewent", "output": "⠿⠑⠺⠢⠞" }, { "input": "forewoman", "output": "⠿⠑⠺⠕â â â " }, { "input": "forewomen", "output": "⠿⠑⠺⠕â â ¢" }, { "input": "foreword", "output": "⠿⠑⠘⠺" }, { "input": "forewords", "output": "⠿⠑⠘⠺⠎" }, { "input": "forfeit", "output": "â ¿â ‹â ‘â Šâ ž" }, { "input": "forfeited", "output": "â ¿â ‹â ‘â Šâ žâ «" }, { "input": "forfeiting", "output": "â ¿â ‹â ‘â Šâ žâ ¬" }, { "input": "forfeits", "output": "â ¿â ‹â ‘â Šâ žâ Ž" }, { "input": "forfeiture", "output": "⠿⠋⠑⠊⠞⠥⠗⠑" }, { "input": "forgather", "output": "â ¿â ›â â ®â —" }, { "input": "forgathered", "output": "â ¿â ›â â ®â —â «" }, { "input": "forgathering", "output": "â ¿â ›â â ®â —â ¬" }, { "input": "forgathers", "output": "â ¿â ›â â ®â —â Ž" }, { "input": "forgave", "output": "â ¿â ›â â §â ‘" }, { "input": "forge", "output": "⠿⠛⠑" }, { "input": "forged", "output": "⠿⠛⠫" }, { "input": "forger", "output": "⠿⠛⠻" }, { "input": "forgeries", "output": "⠿⠛⠻⠊⠑⠎" }, { "input": "forgers", "output": "⠿⠛⠻⠎" }, { "input": "forgery", "output": "⠿⠛⠻⠽" }, { "input": "forges", "output": "⠿⠛⠑⠎" }, { "input": "forget", "output": "⠿⠛⠑⠞" }, { "input": "forgetful", "output": "⠿⠛⠑⠞⠰⠇" }, { "input": "forgetfully", "output": "⠿⠛⠑⠞⠰⠇⠇⠽" }, { "input": "forgetfulness", "output": "⠿⠛⠑⠞⠰⠇⠰⠎" }, { "input": "forgets", "output": "⠿⠛⠑⠞⠎" }, { "input": "forgettable", "output": "⠿⠛⠑⠞⠞â â ƒâ ‡â ‘" }, { "input": "forgetting", "output": "⠿⠛⠑⠞⠞⠬" }, { "input": "forging", "output": "⠿⠛⠬" }, { "input": "forgivable", "output": "⠿⠛⠊⠧â â ƒâ ‡â ‘" }, { "input": "forgive", "output": "⠿⠛⠊⠧⠑" }, { "input": "forgiven", "output": "⠿⠛⠊⠧⠢" }, { "input": "forgiveness", "output": "⠿⠛⠊⠧⠑⠰⠎" }, { "input": "forgives", "output": "⠿⠛⠊⠧⠑⠎" }, { "input": "forgiving", "output": "⠿⠛⠊⠧⠬" }, { "input": "forgo", "output": "⠿⠛⠕" }, { "input": "forgoes", "output": "⠿⠛⠕⠑⠎" }, { "input": "forgoing", "output": "⠿⠛⠕⠬" }, { "input": "forgone", "output": "â ¿â ›â â •" }, { "input": "forgot", "output": "⠿⠛⠕⠞" }, { "input": "forgotten", "output": "⠿⠛⠕⠞⠞⠢" }, { "input": "fork", "output": "â ¿â …" }, { "input": "forked", "output": "â ¿â …â «" }, { "input": "forking", "output": "â ¿â …â ¬" }, { "input": "forklift", "output": "⠿⠅⠇⠊⠋⠞" }, { "input": "forklifts", "output": "⠿⠅⠇⠊⠋⠞⠎" }, { "input": "forks", "output": "â ¿â …â Ž" }, { "input": "forlorn", "output": "⠿⠇⠕⠗â " }, { "input": "forlornly", "output": "⠿⠇⠕⠗â â ‡â ½" }, { "input": "form", "output": "â ¿â " }, { "input": "formal", "output": "â ¿â â â ‡" }, { "input": "formaldehyde", "output": "â ¿â â â ‡â ™â ‘⠓⠽⠙⠑" }, { "input": "formalism", "output": "â ¿â â â ‡â Šâ Žâ " }, { "input": "formalities", "output": "â ¿â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "formality", "output": "â ¿â â â ‡â °â ½" }, { "input": "formalization", "output": "â ¿â â â ‡â Šâ µâ â °â " }, { "input": "formalize", "output": "â ¿â â â ‡â Šâ µâ ‘" }, { "input": "formalized", "output": "â ¿â â â ‡â Šâ µâ «" }, { "input": "formalizes", "output": "â ¿â â â ‡â Šâ µâ ‘â Ž" }, { "input": "formalizing", "output": "â ¿â â â ‡â Šâ µâ ¬" }, { "input": "formally", "output": "â ¿â â â ‡â ‡â ½" }, { "input": "formals", "output": "â ¿â â â ‡â Ž" }, { "input": "format", "output": "â ¿â â â ž" }, { "input": "formation", "output": "â ¿â â â °â " }, { "input": "formations", "output": "â ¿â â â °â â Ž" }, { "input": "formative", "output": "â ¿â â â žâ Šâ §â ‘" }, { "input": "formats", "output": "â ¿â â â žâ Ž" }, { "input": "formatted", "output": "â ¿â â â žâ žâ «" }, { "input": "formatting", "output": "â ¿â â â žâ žâ ¬" }, { "input": "formed", "output": "â ¿â â «" }, { "input": "former", "output": "â ¿â â »" }, { "input": "formerly", "output": "â ¿â â »â ‡â ½" }, { "input": "formidable", "output": "â ¿â â Šâ ™â â ƒâ ‡â ‘" }, { "input": "formidably", "output": "â ¿â â Šâ ™â â ƒâ ‡â ½" }, { "input": "forming", "output": "â ¿â â ¬" }, { "input": "formless", "output": "â ¿â â ¨â Ž" }, { "input": "formlessly", "output": "â ¿â â ¨â Žâ ‡â ½" }, { "input": "formlessness", "output": "â ¿â â ¨â Žâ °â Ž" }, { "input": "forms", "output": "â ¿â â Ž" }, { "input": "formula", "output": "â ¿â â ¥â ‡â " }, { "input": "formulae", "output": "â ¿â â ¥â ‡â â ‘" }, { "input": "formulaic", "output": "â ¿â â ¥â ‡â â Šâ ‰" }, { "input": "formulas", "output": "â ¿â â ¥â ‡â â Ž" }, { "input": "formulate", "output": "â ¿â â ¥â ‡â â žâ ‘" }, { "input": "formulated", "output": "â ¿â â ¥â ‡â â žâ «" }, { "input": "formulates", "output": "â ¿â â ¥â ‡â â žâ ‘â Ž" }, { "input": "formulating", "output": "â ¿â â ¥â ‡â â žâ ¬" }, { "input": "formulation", "output": "â ¿â â ¥â ‡â â °â " }, { "input": "formulations", "output": "â ¿â â ¥â ‡â â °â â Ž" }, { "input": "fornicate", "output": "â ¿â â Šâ ‰â â žâ ‘" }, { "input": "fornicated", "output": "â ¿â â Šâ ‰â â žâ «" }, { "input": "fornicates", "output": "â ¿â â Šâ ‰â â žâ ‘â Ž" }, { "input": "fornicating", "output": "â ¿â â Šâ ‰â â žâ ¬" }, { "input": "fornication", "output": "â ¿â â Šâ ‰â â °â " }, { "input": "forsake", "output": "â ¿â Žâ â …â ‘" }, { "input": "forsaken", "output": "â ¿â Žâ â …â ¢" }, { "input": "forsakes", "output": "â ¿â Žâ â …â ‘â Ž" }, { "input": "forsaking", "output": "â ¿â Žâ â …â ¬" }, { "input": "forsook", "output": "â ¿â Žâ •â •â …" }, { "input": "forsooth", "output": "â ¿â Žâ •â •â ¹" }, { "input": "forswear", "output": "⠿⠎⠺⠑⠜" }, { "input": "forswearing", "output": "⠿⠎⠺⠑⠜⠬" }, { "input": "forswears", "output": "⠿⠎⠺⠑⠜⠎" }, { "input": "forswore", "output": "⠿⠎⠺⠕⠗⠑" }, { "input": "forsworn", "output": "⠿⠎⠺⠕⠗â " }, { "input": "forsythia", "output": "⠿⠎⠽⠹⠊â " }, { "input": "forsythias", "output": "⠿⠎⠽⠹⠊â â Ž" }, { "input": "fort", "output": "â ¿â ž" }, { "input": "forte", "output": "â ¿â žâ ‘" }, { "input": "fortes", "output": "â ¿â žâ ‘â Ž" }, { "input": "forth", "output": "â ¿â ¹" }, { "input": "forthcoming", "output": "⠿⠹⠉⠕â â ¬" }, { "input": "forthright", "output": "â ¿â ¹â â —" }, { "input": "forthrightly", "output": "â ¿â ¹â â —⠇⠽" }, { "input": "forthrightness", "output": "â ¿â ¹â â —â °â Ž" }, { "input": "forthwith", "output": "⠿⠹⠾" }, { "input": "forties", "output": "â ¿â žâ Šâ ‘â Ž" }, { "input": "fortieth", "output": "â ¿â žâ Šâ ‘â ¹" }, { "input": "fortieths", "output": "⠿⠞⠊⠑⠹⠎" }, { "input": "fortification", "output": "â ¿â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "fortifications", "output": "â ¿â žâ Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "fortified", "output": "â ¿â žâ Šâ ‹â Šâ «" }, { "input": "fortifies", "output": "â ¿â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "fortify", "output": "â ¿â žâ Šâ ‹â ½" }, { "input": "fortifying", "output": "⠿⠞⠊⠋⠽⠬" }, { "input": "fortissimo", "output": "â ¿â žâ Šâ Žâ Žâ Šâ â •" }, { "input": "fortitude", "output": "⠿⠞⠊⠞⠥⠙⠑" }, { "input": "fortnight", "output": "â ¿â žâ â Šâ £â ž" }, { "input": "fortnightly", "output": "â ¿â žâ â Šâ £â žâ ‡â ½" }, { "input": "fortnights", "output": "â ¿â žâ â Šâ £â žâ Ž" }, { "input": "fortress", "output": "â ¿â žâ —â ‘â Žâ Ž" }, { "input": "fortresses", "output": "â ¿â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "forts", "output": "â ¿â žâ Ž" }, { "input": "fortuitous", "output": "⠿⠞⠥⠊⠞⠳⠎" }, { "input": "fortuitously", "output": "⠿⠞⠥⠊⠞⠳⠎⠇⠽" }, { "input": "fortunate", "output": "â ¿â žâ ¥â â â žâ ‘" }, { "input": "fortunately", "output": "â ¿â žâ ¥â â â žâ ‘⠇⠽" }, { "input": "fortune", "output": "â ¿â žâ ¥â â ‘" }, { "input": "fortunes", "output": "â ¿â žâ ¥â â ‘â Ž" }, { "input": "forty", "output": "â ¿â žâ ½" }, { "input": "forum", "output": "â ¿â ¥â " }, { "input": "forums", "output": "â ¿â ¥â â Ž" }, { "input": "forward", "output": "⠿⠺⠜⠙" }, { "input": "forwarded", "output": "⠿⠺⠜⠙⠫" }, { "input": "forwarder", "output": "⠿⠺⠜⠙⠻" }, { "input": "forwardest", "output": "⠿⠺⠜⠙⠑⠌" }, { "input": "forwarding", "output": "⠿⠺⠜⠙⠬" }, { "input": "forwardness", "output": "⠿⠺⠜⠙⠰⠎" }, { "input": "forwards", "output": "⠿⠺⠜⠙⠎" }, { "input": "forwent", "output": "⠿⠺⠢⠞" }, { "input": "fossil", "output": "â ‹â •â Žâ Žâ Šâ ‡" }, { "input": "fossilization", "output": "⠋⠕⠎⠎⠊⠇⠊⠵â â °â " }, { "input": "fossilize", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠑" }, { "input": "fossilized", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠫" }, { "input": "fossilizes", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠑⠎" }, { "input": "fossilizing", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠬" }, { "input": "fossils", "output": "⠋⠕⠎⠎⠊⠇⠎" }, { "input": "foster", "output": "⠋⠕⠌⠻" }, { "input": "fostered", "output": "⠋⠕⠌⠻⠫" }, { "input": "fostering", "output": "⠋⠕⠌⠻⠬" }, { "input": "fosters", "output": "⠋⠕⠌⠻⠎" }, { "input": "fought", "output": "â ‹â â ³" }, { "input": "foul", "output": "⠋⠳⠇" }, { "input": "fouled", "output": "⠋⠳⠇⠫" }, { "input": "fouler", "output": "⠋⠳⠇⠻" }, { "input": "foulest", "output": "⠋⠳⠇⠑⠌" }, { "input": "fouling", "output": "⠋⠳⠇⠬" }, { "input": "foully", "output": "⠋⠳⠇⠇⠽" }, { "input": "foulness", "output": "⠋⠳⠇⠰⠎" }, { "input": "fouls", "output": "⠋⠳⠇⠎" }, { "input": "found", "output": "⠋⠨⠙" }, { "input": "foundation", "output": "⠋⠨⠙â â °â " }, { "input": "foundations", "output": "⠋⠨⠙â â °â â Ž" }, { "input": "founded", "output": "⠋⠨⠙⠫" }, { "input": "founder", "output": "⠋⠨⠙⠻" }, { "input": "foundered", "output": "⠋⠨⠙⠻⠫" }, { "input": "foundering", "output": "⠋⠨⠙⠻⠬" }, { "input": "founders", "output": "⠋⠨⠙⠻⠎" }, { "input": "founding", "output": "⠋⠨⠙⠬" }, { "input": "foundling", "output": "⠋⠨⠙⠇⠬" }, { "input": "foundlings", "output": "⠋⠨⠙⠇⠬⠎" }, { "input": "foundries", "output": "⠋⠨⠙⠗⠊⠑⠎" }, { "input": "foundry", "output": "⠋⠨⠙⠗⠽" }, { "input": "founds", "output": "⠋⠨⠙⠎" }, { "input": "fount", "output": "⠋⠨⠞" }, { "input": "fountain", "output": "⠋⠨⠞â â ”" }, { "input": "fountainhead", "output": "⠋⠨⠞â â ”â “â ‚â ™" }, { "input": "fountainheads", "output": "⠋⠨⠞â â ”⠓⠂⠙⠎" }, { "input": "fountains", "output": "⠋⠨⠞â â ”â Ž" }, { "input": "founts", "output": "⠋⠨⠞⠎" }, { "input": "four", "output": "⠋⠳⠗" }, { "input": "fourfold", "output": "⠋⠳⠗⠋⠕⠇⠙" }, { "input": "fours", "output": "⠋⠳⠗⠎" }, { "input": "fourscore", "output": "⠋⠳⠗⠎⠉⠕⠗⠑" }, { "input": "foursome", "output": "⠋⠳⠗â â Ž" }, { "input": "foursomes", "output": "⠋⠳⠗â â Žâ Ž" }, { "input": "foursquare", "output": "⠋⠳⠗⠎⠟⠥⠜⠑" }, { "input": "fourteen", "output": "⠋⠳⠗⠞⠑⠢" }, { "input": "fourteens", "output": "⠋⠳⠗⠞⠑⠢⠎" }, { "input": "fourteenth", "output": "⠋⠳⠗⠞⠑⠢⠹" }, { "input": "fourteenths", "output": "⠋⠳⠗⠞⠑⠢⠹⠎" }, { "input": "fourth", "output": "⠋⠳⠗⠹" }, { "input": "fourthly", "output": "⠋⠳⠗⠹⠇⠽" }, { "input": "fourths", "output": "⠋⠳⠗⠹⠎" }, { "input": "fowl", "output": "⠋⠪⠇" }, { "input": "fowled", "output": "⠋⠪⠇⠫" }, { "input": "fowling", "output": "⠋⠪⠇⠬" }, { "input": "fowls", "output": "⠋⠪⠇⠎" }, { "input": "fox", "output": "â ‹â •â ­" }, { "input": "foxed", "output": "â ‹â •â ­â «" }, { "input": "foxes", "output": "â ‹â •â ­â ‘â Ž" }, { "input": "foxglove", "output": "⠋⠕⠭⠛⠇⠕⠧⠑" }, { "input": "foxgloves", "output": "⠋⠕⠭⠛⠇⠕⠧⠑⠎" }, { "input": "foxhole", "output": "⠋⠕⠭⠓⠕⠇⠑" }, { "input": "foxholes", "output": "⠋⠕⠭⠓⠕⠇⠑⠎" }, { "input": "foxhound", "output": "⠋⠕⠭⠓⠨⠙" }, { "input": "foxhounds", "output": "⠋⠕⠭⠓⠨⠙⠎" }, { "input": "foxier", "output": "â ‹â •â ­â Šâ »" }, { "input": "foxiest", "output": "â ‹â •â ­â Šâ ‘â Œ" }, { "input": "foxing", "output": "â ‹â •â ­â ¬" }, { "input": "foxtrot", "output": "â ‹â •â ­â žâ —â •â ž" }, { "input": "foxtrots", "output": "â ‹â •â ­â žâ —â •â žâ Ž" }, { "input": "foxtrotted", "output": "â ‹â •â ­â žâ —â •â žâ žâ «" }, { "input": "foxtrotting", "output": "â ‹â •â ­â žâ —â •â žâ žâ ¬" }, { "input": "foxy", "output": "â ‹â •â ­â ½" }, { "input": "foyer", "output": "⠋⠕⠽⠻" }, { "input": "foyers", "output": "⠋⠕⠽⠻⠎" }, { "input": "fracas", "output": "â ‹â —â â ‰â â Ž" }, { "input": "fracases", "output": "â ‹â —â â ‰â â Žâ ‘â Ž" }, { "input": "fractal", "output": "â ‹â —â â ‰â žâ â ‡" }, { "input": "fractals", "output": "â ‹â —â â ‰â žâ â ‡â Ž" }, { "input": "fraction", "output": "â ‹â —â â ‰â °â " }, { "input": "fractional", "output": "â ‹â —â â ‰â °â â â ‡" }, { "input": "fractionally", "output": "â ‹â —â â ‰â °â â â ‡â ‡â ½" }, { "input": "fractions", "output": "â ‹â —â â ‰â °â â Ž" }, { "input": "fractious", "output": "â ‹â —â â ‰â žâ Šâ ³â Ž" }, { "input": "fractiously", "output": "â ‹â —â â ‰â žâ Šâ ³â Žâ ‡â ½" }, { "input": "fracture", "output": "â ‹â —â â ‰â žâ ¥â —â ‘" }, { "input": "fractured", "output": "â ‹â —â â ‰â žâ ¥â —â «" }, { "input": "fractures", "output": "â ‹â —â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "fracturing", "output": "â ‹â —â â ‰â žâ ¥â —â ¬" }, { "input": "fragile", "output": "â ‹â —â â ›â Šâ ‡â ‘" }, { "input": "fragility", "output": "â ‹â —â â ›â Šâ ‡â °â ½" }, { "input": "fragment", "output": "â ‹â —â â ›â °â ž" }, { "input": "fragmentary", "output": "â ‹â —â â ›â °â žâ œâ ½" }, { "input": "fragmentation", "output": "â ‹â —â â ›â °â žâ â °â " }, { "input": "fragmented", "output": "â ‹â —â â ›â °â žâ «" }, { "input": "fragmenting", "output": "â ‹â —â â ›â °â žâ ¬" }, { "input": "fragments", "output": "â ‹â —â â ›â °â žâ Ž" }, { "input": "fragrance", "output": "â ‹â —â â ›â —⠨⠑" }, { "input": "fragrances", "output": "â ‹â —â â ›â —⠨⠑⠎" }, { "input": "fragrant", "output": "â ‹â —â â ›â —â â â ž" }, { "input": "fragrantly", "output": "â ‹â —â â ›â —â â â žâ ‡â ½" }, { "input": "frail", "output": "â ‹â —â â Šâ ‡" }, { "input": "frailer", "output": "â ‹â —â â Šâ ‡â »" }, { "input": "frailest", "output": "â ‹â —â â Šâ ‡â ‘â Œ" }, { "input": "frailties", "output": "â ‹â —â â Šâ ‡â žâ Šâ ‘â Ž" }, { "input": "frailty", "output": "â ‹â —â â Šâ ‡â žâ ½" }, { "input": "frame", "output": "â ‹â —â â â ‘" }, { "input": "framed", "output": "â ‹â —â â â «" }, { "input": "framer", "output": "â ‹â —â â â »" }, { "input": "framers", "output": "â ‹â —â â â »â Ž" }, { "input": "frames", "output": "â ‹â —â â â ‘â Ž" }, { "input": "framework", "output": "â ‹â —â â â ‘â â º" }, { "input": "frameworks", "output": "â ‹â —â â â ‘â â ºâ Ž" }, { "input": "framing", "output": "â ‹â —â â â ¬" }, { "input": "franc", "output": "â ‹â —â â â ‰" }, { "input": "franchise", "output": "â ‹â —â â â ¡â Šâ Žâ ‘" }, { "input": "franchised", "output": "â ‹â —â â â ¡â Šâ Žâ «" }, { "input": "franchisee", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â ‘" }, { "input": "franchisees", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â ‘â Ž" }, { "input": "franchiser", "output": "â ‹â —â â â ¡â Šâ Žâ »" }, { "input": "franchisers", "output": "â ‹â —â â â ¡â Šâ Žâ »â Ž" }, { "input": "franchises", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "franchising", "output": "â ‹â —â â â ¡â Šâ Žâ ¬" }, { "input": "francs", "output": "â ‹â —â â â ‰â Ž" }, { "input": "frank", "output": "â ‹â —â â â …" }, { "input": "franked", "output": "â ‹â —â â â …â «" }, { "input": "franker", "output": "â ‹â —â â â …â »" }, { "input": "frankest", "output": "â ‹â —â â â …â ‘â Œ" }, { "input": "frankfurter", "output": "â ‹â —â â â …⠋⠥⠗⠞⠻" }, { "input": "frankfurters", "output": "â ‹â —â â â …⠋⠥⠗⠞⠻⠎" }, { "input": "frankincense", "output": "â ‹â —â â â …⠔⠉⠢⠎⠑" }, { "input": "franking", "output": "â ‹â —â â â …â ¬" }, { "input": "frankly", "output": "â ‹â —â â â …⠇⠽" }, { "input": "frankness", "output": "â ‹â —â â â …â °â Ž" }, { "input": "franks", "output": "â ‹â —â â â …â Ž" }, { "input": "frantic", "output": "â ‹â —â â â žâ Šâ ‰" }, { "input": "frantically", "output": "â ‹â —â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "frappes", "output": "â ‹â —â â â â ‘â Ž" }, { "input": "frappé", "output": "â ‹â —â â â â  â ˜â »â â ˜â ‰" }, { "input": "frat", "output": "â ‹â —â â ž" }, { "input": "fraternal", "output": "â ‹â —â â žâ »â â â ‡" }, { "input": "fraternally", "output": "â ‹â —â â žâ »â â â ‡â ‡â ½" }, { "input": "fraternities", "output": "â ‹â —â â žâ »â â Šâ žâ Šâ ‘â Ž" }, { "input": "fraternity", "output": "â ‹â —â â žâ »â â °â ½" }, { "input": "fraternization", "output": "â ‹â —â â žâ »â â Šâ µâ â °â " }, { "input": "fraternize", "output": "â ‹â —â â žâ »â â Šâ µâ ‘" }, { "input": "fraternized", "output": "â ‹â —â â žâ »â â Šâ µâ «" }, { "input": "fraternizes", "output": "â ‹â —â â žâ »â â Šâ µâ ‘â Ž" }, { "input": "fraternizing", "output": "â ‹â —â â žâ »â â Šâ µâ ¬" }, { "input": "fratricide", "output": "â ‹â —â â žâ —⠊⠉⠊⠙⠑" }, { "input": "fratricides", "output": "â ‹â —â â žâ —⠊⠉⠊⠙⠑⠎" }, { "input": "frats", "output": "â ‹â —â â žâ Ž" }, { "input": "fraud", "output": "â ‹â —â â ¥â ™" }, { "input": "frauds", "output": "â ‹â —â â ¥â ™â Ž" }, { "input": "fraudulence", "output": "â ‹â —â â ¥â ™â ¥â ‡â °â ‘" }, { "input": "fraudulent", "output": "â ‹â —â â ¥â ™â ¥â ‡â ¢â ž" }, { "input": "fraudulently", "output": "â ‹â —â â ¥â ™â ¥â ‡â ¢â žâ ‡â ½" }, { "input": "fraught", "output": "â ‹â —â â ¥â £â ž" }, { "input": "fray", "output": "â ‹â —â â ½" }, { "input": "frayed", "output": "â ‹â —â â ½â «" }, { "input": "fraying", "output": "â ‹â —â â ½â ¬" }, { "input": "frays", "output": "â ‹â —â â ½â Ž" }, { "input": "frazzle", "output": "â ‹â —â â µâ µâ ‡â ‘" }, { "input": "frazzled", "output": "â ‹â —â â µâ µâ ‡â «" }, { "input": "frazzles", "output": "â ‹â —â â µâ µâ ‡â ‘â Ž" }, { "input": "frazzling", "output": "â ‹â —â â µâ µâ ‡â ¬" }, { "input": "freak", "output": "â ‹â —â ‚â …" }, { "input": "freaked", "output": "â ‹â —â ‚â …â «" }, { "input": "freakier", "output": "â ‹â —â ‚â …â Šâ »" }, { "input": "freakiest", "output": "â ‹â —â ‚â …â Šâ ‘â Œ" }, { "input": "freaking", "output": "â ‹â —â ‚â …â ¬" }, { "input": "freakish", "output": "â ‹â —â ‚â …â Šâ ©" }, { "input": "freaks", "output": "â ‹â —â ‚â …â Ž" }, { "input": "freaky", "output": "â ‹â —â ‚â …â ½" }, { "input": "freckle", "output": "⠋⠗⠑⠉⠅⠇⠑" }, { "input": "freckled", "output": "⠋⠗⠑⠉⠅⠇⠫" }, { "input": "freckles", "output": "⠋⠗⠑⠉⠅⠇⠑⠎" }, { "input": "freckling", "output": "⠋⠗⠑⠉⠅⠇⠬" }, { "input": "free", "output": "â ‹â —â ‘â ‘" }, { "input": "freebase", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ ‘" }, { "input": "freebased", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ «" }, { "input": "freebases", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ ‘â Ž" }, { "input": "freebasing", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ ¬" }, { "input": "freebee", "output": "⠋⠗⠑⠑⠃⠑⠑" }, { "input": "freebees", "output": "⠋⠗⠑⠑⠃⠑⠑⠎" }, { "input": "freebie", "output": "⠋⠗⠑⠑⠃⠊⠑" }, { "input": "freebies", "output": "⠋⠗⠑⠑⠃⠊⠑⠎" }, { "input": "freebooter", "output": "⠋⠗⠑⠑⠃⠕⠕⠞⠻" }, { "input": "freebooters", "output": "⠋⠗⠑⠑⠃⠕⠕⠞⠻⠎" }, { "input": "freed", "output": "â ‹â —â ‘â «" }, { "input": "freedman", "output": "â ‹â —â ‘â «â â â " }, { "input": "freedmen", "output": "â ‹â —â ‘â «â â ¢" }, { "input": "freedom", "output": "â ‹â —â ‘â «â •â " }, { "input": "freedoms", "output": "â ‹â —â ‘â «â •â â Ž" }, { "input": "freehand", "output": "â ‹â —â ‘â ‘â “â ¯" }, { "input": "freehold", "output": "⠋⠗⠑⠑⠓⠕⠇⠙" }, { "input": "freeholder", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠻" }, { "input": "freeholders", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠻⠎" }, { "input": "freeholds", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠎" }, { "input": "freeing", "output": "â ‹â —â ‘â ‘â ¬" }, { "input": "freelance", "output": "⠋⠗⠑⠑⠇⠨⠑" }, { "input": "freelanced", "output": "⠋⠗⠑⠑⠇⠨⠑⠙" }, { "input": "freelancer", "output": "⠋⠗⠑⠑⠇⠨⠑⠗" }, { "input": "freelancers", "output": "⠋⠗⠑⠑⠇⠨⠑⠗⠎" }, { "input": "freelances", "output": "⠋⠗⠑⠑⠇⠨⠑⠎" }, { "input": "freelancing", "output": "â ‹â —â ‘â ‘â ‡â â â ‰â ¬" }, { "input": "freeload", "output": "⠋⠗⠑⠑⠇⠕â â ™" }, { "input": "freeloaded", "output": "⠋⠗⠑⠑⠇⠕â â ™â «" }, { "input": "freeloader", "output": "⠋⠗⠑⠑⠇⠕â â ™â »" }, { "input": "freeloaders", "output": "⠋⠗⠑⠑⠇⠕â â ™â »â Ž" }, { "input": "freeloading", "output": "⠋⠗⠑⠑⠇⠕â â ™â ¬" }, { "input": "freeloads", "output": "⠋⠗⠑⠑⠇⠕â â ™â Ž" }, { "input": "freely", "output": "⠋⠗⠑⠑⠇⠽" }, { "input": "freeman", "output": "â ‹â —â ‘â ‘â â â " }, { "input": "freemen", "output": "â ‹â —â ‘â ‘â â ¢" }, { "input": "freer", "output": "â ‹â —â ‘â »" }, { "input": "frees", "output": "â ‹â —â ‘â ‘â Ž" }, { "input": "freest", "output": "â ‹â —â ‘â ‘â Œ" }, { "input": "freestanding", "output": "⠋⠗⠑⠑⠌⠯⠬" }, { "input": "freestyle", "output": "⠋⠗⠑⠑⠌⠽⠇⠑" }, { "input": "freestyles", "output": "⠋⠗⠑⠑⠌⠽⠇⠑⠎" }, { "input": "freethinker", "output": "⠋⠗⠑⠑⠹⠔⠅⠻" }, { "input": "freethinkers", "output": "⠋⠗⠑⠑⠹⠔⠅⠻⠎" }, { "input": "freethinking", "output": "⠋⠗⠑⠑⠹⠔⠅⠬" }, { "input": "freeway", "output": "â ‹â —â ‘â ‘â ºâ â ½" }, { "input": "freeways", "output": "â ‹â —â ‘â ‘â ºâ â ½â Ž" }, { "input": "freewheel", "output": "⠋⠗⠑⠑⠱⠑⠑⠇" }, { "input": "freewheeled", "output": "⠋⠗⠑⠑⠱⠑⠑⠇⠫" }, { "input": "freewheeling", "output": "⠋⠗⠑⠑⠱⠑⠑⠇⠬" }, { "input": "freewheels", "output": "⠋⠗⠑⠑⠱⠑⠑⠇⠎" }, { "input": "freewill", "output": "⠋⠗⠑⠑⠺⠊⠇⠇" }, { "input": "freeze", "output": "⠋⠗⠑⠑⠵⠑" }, { "input": "freezer", "output": "⠋⠗⠑⠑⠵⠻" }, { "input": "freezers", "output": "⠋⠗⠑⠑⠵⠻⠎" }, { "input": "freezes", "output": "⠋⠗⠑⠑⠵⠑⠎" }, { "input": "freezing", "output": "⠋⠗⠑⠑⠵⠬" }, { "input": "freight", "output": "⠋⠗⠑⠊⠣⠞" }, { "input": "freighted", "output": "⠋⠗⠑⠊⠣⠞⠫" }, { "input": "freighter", "output": "⠋⠗⠑⠊⠣⠞⠻" }, { "input": "freighters", "output": "⠋⠗⠑⠊⠣⠞⠻⠎" }, { "input": "freighting", "output": "⠋⠗⠑⠊⠣⠞⠬" }, { "input": "freights", "output": "⠋⠗⠑⠊⠣⠞⠎" }, { "input": "french", "output": "⠋⠗⠢⠡" }, { "input": "frenetic", "output": "⠋⠗⠢⠑⠞⠊⠉" }, { "input": "frenetically", "output": "⠋⠗⠢⠑⠞⠊⠉â â ‡â ‡â ½" }, { "input": "frenzied", "output": "⠋⠗⠢⠵⠊⠫" }, { "input": "frenziedly", "output": "⠋⠗⠢⠵⠊⠫⠇⠽" }, { "input": "frenzies", "output": "⠋⠗⠢⠵⠊⠑⠎" }, { "input": "frenzy", "output": "⠋⠗⠢⠵⠽" }, { "input": "frequencies", "output": "⠋⠗⠑⠟⠥⠢⠉⠊⠑⠎" }, { "input": "frequency", "output": "⠋⠗⠑⠟⠥⠢⠉⠽" }, { "input": "frequent", "output": "⠋⠗⠑⠟⠥⠢⠞" }, { "input": "frequented", "output": "⠋⠗⠑⠟⠥⠢⠞⠫" }, { "input": "frequenter", "output": "⠋⠗⠑⠟⠥⠢⠞⠻" }, { "input": "frequentest", "output": "⠋⠗⠑⠟⠥⠢⠞⠑⠌" }, { "input": "frequenting", "output": "⠋⠗⠑⠟⠥⠢⠞⠬" }, { "input": "frequently", "output": "⠋⠗⠑⠟⠥⠢⠞⠇⠽" }, { "input": "frequents", "output": "⠋⠗⠑⠟⠥⠢⠞⠎" }, { "input": "fresco", "output": "⠋⠗⠑⠎⠉⠕" }, { "input": "frescoes", "output": "⠋⠗⠑⠎⠉⠕⠑⠎" }, { "input": "frescos", "output": "⠋⠗⠑⠎⠉⠕⠎" }, { "input": "fresh", "output": "â ‹â —â ‘â ©" }, { "input": "freshen", "output": "â ‹â —â ‘â ©â ¢" }, { "input": "freshened", "output": "⠋⠗⠑⠩⠢⠫" }, { "input": "freshening", "output": "⠋⠗⠑⠩⠢⠬" }, { "input": "freshens", "output": "⠋⠗⠑⠩⠢⠎" }, { "input": "fresher", "output": "â ‹â —â ‘â ©â »" }, { "input": "freshest", "output": "â ‹â —â ‘â ©â ‘â Œ" }, { "input": "freshet", "output": "â ‹â —â ‘â ©â ‘â ž" }, { "input": "freshets", "output": "â ‹â —â ‘â ©â ‘â žâ Ž" }, { "input": "freshly", "output": "⠋⠗⠑⠩⠇⠽" }, { "input": "freshman", "output": "â ‹â —â ‘â ©â â â " }, { "input": "freshmen", "output": "â ‹â —â ‘â ©â â ¢" }, { "input": "freshness", "output": "â ‹â —â ‘â ©â °â Ž" }, { "input": "freshwater", "output": "â ‹â —â ‘â ©â ºâ â žâ »" }, { "input": "fret", "output": "â ‹â —â ‘â ž" }, { "input": "fretful", "output": "â ‹â —â ‘â žâ °â ‡" }, { "input": "fretfully", "output": "⠋⠗⠑⠞⠰⠇⠇⠽" }, { "input": "fretfulness", "output": "⠋⠗⠑⠞⠰⠇⠰⠎" }, { "input": "frets", "output": "â ‹â —â ‘â žâ Ž" }, { "input": "fretted", "output": "â ‹â —â ‘â žâ žâ «" }, { "input": "fretting", "output": "â ‹â —â ‘â žâ žâ ¬" }, { "input": "fretwork", "output": "â ‹â —â ‘â žâ â º" }, { "input": "friable", "output": "â ‹â —â Šâ â ƒâ ‡â ‘" }, { "input": "friar", "output": "â ‹â —â Šâ œ" }, { "input": "friars", "output": "⠋⠗⠊⠜⠎" }, { "input": "fricassee", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘" }, { "input": "fricasseed", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â «" }, { "input": "fricasseeing", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘â ¬" }, { "input": "fricassees", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘â Ž" }, { "input": "friction", "output": "⠋⠗⠊⠉⠰â " }, { "input": "fridge", "output": "⠋⠗⠊⠙⠛⠑" }, { "input": "fridges", "output": "⠋⠗⠊⠙⠛⠑⠎" }, { "input": "fried", "output": "â ‹â —â Šâ «" }, { "input": "friend", "output": "â ‹â —" }, { "input": "friendless", "output": "⠋⠗⠨⠎" }, { "input": "friendlier", "output": "⠋⠗⠇⠊⠻" }, { "input": "friendlies", "output": "⠋⠗⠇⠊⠑⠎" }, { "input": "friendliest", "output": "⠋⠗⠇⠊⠑⠌" }, { "input": "friendliness", "output": "⠋⠗⠇⠊⠰⠎" }, { "input": "friendly", "output": "⠋⠗⠇⠽" }, { "input": "friends", "output": "â ‹â —â Ž" }, { "input": "friendship", "output": "â ‹â —â ©â Šâ " }, { "input": "friendships", "output": "â ‹â —â ©â Šâ â Ž" }, { "input": "frier", "output": "â ‹â —â Šâ »" }, { "input": "friers", "output": "⠋⠗⠊⠻⠎" }, { "input": "fries", "output": "â ‹â —â Šâ ‘â Ž" }, { "input": "frieze", "output": "⠋⠗⠊⠑⠵⠑" }, { "input": "friezes", "output": "⠋⠗⠊⠑⠵⠑⠎" }, { "input": "frigate", "output": "â ‹â —â Šâ ›â â žâ ‘" }, { "input": "frigates", "output": "â ‹â —â Šâ ›â â žâ ‘â Ž" }, { "input": "fright", "output": "â ‹â â —" }, { "input": "frighted", "output": "â ‹â â —â «" }, { "input": "frighten", "output": "â ‹â â —â ¢" }, { "input": "frightened", "output": "â ‹â â —⠢⠫" }, { "input": "frightening", "output": "â ‹â â —⠢⠬" }, { "input": "frighteningly", "output": "â ‹â â —⠢⠬⠇⠽" }, { "input": "frightens", "output": "â ‹â â —⠢⠎" }, { "input": "frightful", "output": "â ‹â â —â °â ‡" }, { "input": "frightfully", "output": "â ‹â â —⠰⠇⠇⠽" }, { "input": "frighting", "output": "â ‹â â —â ¬" }, { "input": "frights", "output": "â ‹â â —â Ž" }, { "input": "frigid", "output": "⠋⠗⠊⠛⠊⠙" }, { "input": "frigidity", "output": "⠋⠗⠊⠛⠊⠙⠰⠽" }, { "input": "frigidly", "output": "⠋⠗⠊⠛⠊⠙⠇⠽" }, { "input": "frill", "output": "⠋⠗⠊⠇⠇" }, { "input": "frillier", "output": "⠋⠗⠊⠇⠇⠊⠻" }, { "input": "frilliest", "output": "⠋⠗⠊⠇⠇⠊⠑⠌" }, { "input": "frills", "output": "⠋⠗⠊⠇⠇⠎" }, { "input": "frilly", "output": "⠋⠗⠊⠇⠇⠽" }, { "input": "fringe", "output": "⠋⠗⠬⠑" }, { "input": "fringed", "output": "⠋⠗⠬⠫" }, { "input": "fringes", "output": "⠋⠗⠬⠑⠎" }, { "input": "fringing", "output": "⠋⠗⠬⠬" }, { "input": "fripperies", "output": "â ‹â —â Šâ â â »â Šâ ‘â Ž" }, { "input": "frippery", "output": "â ‹â —â Šâ â â »â ½" }, { "input": "frisk", "output": "â ‹â —â Šâ Žâ …" }, { "input": "frisked", "output": "â ‹â —â Šâ Žâ …â «" }, { "input": "friskier", "output": "â ‹â —â Šâ Žâ …â Šâ »" }, { "input": "friskiest", "output": "â ‹â —â Šâ Žâ …â Šâ ‘â Œ" }, { "input": "friskily", "output": "⠋⠗⠊⠎⠅⠊⠇⠽" }, { "input": "friskiness", "output": "â ‹â —â Šâ Žâ …â Šâ °â Ž" }, { "input": "frisking", "output": "â ‹â —â Šâ Žâ …â ¬" }, { "input": "frisks", "output": "â ‹â —â Šâ Žâ …â Ž" }, { "input": "frisky", "output": "â ‹â —â Šâ Žâ …â ½" }, { "input": "fritter", "output": "â ‹â —â Šâ žâ žâ »" }, { "input": "frittered", "output": "⠋⠗⠊⠞⠞⠻⠫" }, { "input": "frittering", "output": "⠋⠗⠊⠞⠞⠻⠬" }, { "input": "fritters", "output": "⠋⠗⠊⠞⠞⠻⠎" }, { "input": "frivolities", "output": "⠋⠗⠊⠧⠕⠇⠊⠞⠊⠑⠎" }, { "input": "frivolity", "output": "⠋⠗⠊⠧⠕⠇⠰⠽" }, { "input": "frivolous", "output": "⠋⠗⠊⠧⠕⠇⠳⠎" }, { "input": "frivolously", "output": "⠋⠗⠊⠧⠕⠇⠳⠎⠇⠽" }, { "input": "frizz", "output": "⠋⠗⠊⠵⠵" }, { "input": "frizzed", "output": "⠋⠗⠊⠵⠵⠫" }, { "input": "frizzes", "output": "⠋⠗⠊⠵⠵⠑⠎" }, { "input": "frizzier", "output": "⠋⠗⠊⠵⠵⠊⠻" }, { "input": "frizziest", "output": "⠋⠗⠊⠵⠵⠊⠑⠌" }, { "input": "frizzing", "output": "⠋⠗⠊⠵⠵⠬" }, { "input": "frizzle", "output": "⠋⠗⠊⠵⠵⠇⠑" }, { "input": "frizzled", "output": "⠋⠗⠊⠵⠵⠇⠫" }, { "input": "frizzles", "output": "⠋⠗⠊⠵⠵⠇⠑⠎" }, { "input": "frizzling", "output": "⠋⠗⠊⠵⠵⠇⠬" }, { "input": "frizzy", "output": "⠋⠗⠊⠵⠵⠽" }, { "input": "fro", "output": "â ‹â —â •" }, { "input": "frock", "output": "⠋⠗⠕⠉⠅" }, { "input": "frocks", "output": "⠋⠗⠕⠉⠅⠎" }, { "input": "frog", "output": "â ‹â —â •â ›" }, { "input": "frogman", "output": "â ‹â —â •â ›â â â " }, { "input": "frogmen", "output": "â ‹â —â •â ›â â ¢" }, { "input": "frogs", "output": "⠋⠗⠕⠛⠎" }, { "input": "frolic", "output": "⠋⠗⠕⠇⠊⠉" }, { "input": "frolicked", "output": "⠋⠗⠕⠇⠊⠉⠅⠫" }, { "input": "frolicking", "output": "⠋⠗⠕⠇⠊⠉⠅⠬" }, { "input": "frolics", "output": "⠋⠗⠕⠇⠊⠉⠎" }, { "input": "frolicsome", "output": "⠋⠗⠕⠇⠊⠉â â Ž" }, { "input": "from", "output": "â ‹" }, { "input": "frond", "output": "â ‹â —â •â â ™" }, { "input": "fronds", "output": "â ‹â —â •â â ™â Ž" }, { "input": "front", "output": "â ‹â —â •â â ž" }, { "input": "frontage", "output": "â ‹â —â •â â žâ â ›â ‘" }, { "input": "frontages", "output": "â ‹â —â •â â žâ â ›â ‘â Ž" }, { "input": "frontal", "output": "â ‹â —â •â â žâ â ‡" }, { "input": "frontally", "output": "â ‹â —â •â â žâ â ‡â ‡â ½" }, { "input": "fronted", "output": "â ‹â —â •â â žâ «" }, { "input": "frontier", "output": "â ‹â —â •â â žâ Šâ »" }, { "input": "frontiers", "output": "â ‹â —â •â â žâ Šâ »â Ž" }, { "input": "frontiersman", "output": "â ‹â —â •â â žâ Šâ »â Žâ â â " }, { "input": "frontiersmen", "output": "â ‹â —â •â â žâ Šâ »â Žâ â ¢" }, { "input": "fronting", "output": "â ‹â —â •â â žâ ¬" }, { "input": "frontispiece", "output": "â ‹â —â •â â žâ Šâ Žâ â Šâ ‘⠉⠑" }, { "input": "frontispieces", "output": "â ‹â —â •â â žâ Šâ Žâ â Šâ ‘⠉⠑⠎" }, { "input": "frontrunner", "output": "â ‹â —â •â â žâ —â ¥â â â »" }, { "input": "frontrunners", "output": "â ‹â —â •â â žâ —â ¥â â â »â Ž" }, { "input": "fronts", "output": "â ‹â —â •â â žâ Ž" }, { "input": "frost", "output": "â ‹â —â •â Œ" }, { "input": "frostbit", "output": "⠋⠗⠕⠌⠃⠊⠞" }, { "input": "frostbite", "output": "⠋⠗⠕⠌⠃⠊⠞⠑" }, { "input": "frostbites", "output": "⠋⠗⠕⠌⠃⠊⠞⠑⠎" }, { "input": "frostbiting", "output": "⠋⠗⠕⠌⠃⠊⠞⠬" }, { "input": "frostbitten", "output": "⠋⠗⠕⠌⠃⠊⠞⠞⠢" }, { "input": "frosted", "output": "⠋⠗⠕⠌⠫" }, { "input": "frostier", "output": "⠋⠗⠕⠌⠊⠻" }, { "input": "frostiest", "output": "⠋⠗⠕⠌⠊⠑⠌" }, { "input": "frostily", "output": "⠋⠗⠕⠌⠊⠇⠽" }, { "input": "frostiness", "output": "⠋⠗⠕⠌⠊⠰⠎" }, { "input": "frosting", "output": "⠋⠗⠕⠌⠬" }, { "input": "frosts", "output": "⠋⠗⠕⠌⠎" }, { "input": "frosty", "output": "⠋⠗⠕⠌⠽" }, { "input": "froth", "output": "â ‹â —â •â ¹" }, { "input": "frothed", "output": "⠋⠗⠕⠮⠙" }, { "input": "frothier", "output": "⠋⠗⠕⠹⠊⠻" }, { "input": "frothiest", "output": "⠋⠗⠕⠹⠊⠑⠌" }, { "input": "frothing", "output": "⠋⠗⠕⠹⠬" }, { "input": "froths", "output": "⠋⠗⠕⠹⠎" }, { "input": "frothy", "output": "⠋⠗⠕⠹⠽" }, { "input": "frown", "output": "â ‹â —â ªâ " }, { "input": "frowned", "output": "â ‹â —â ªâ â «" }, { "input": "frowning", "output": "â ‹â —â ªâ â ¬" }, { "input": "frowns", "output": "â ‹â —â ªâ â Ž" }, { "input": "frowsier", "output": "⠋⠗⠪⠎⠊⠻" }, { "input": "frowsiest", "output": "⠋⠗⠪⠎⠊⠑⠌" }, { "input": "frowsy", "output": "⠋⠗⠪⠎⠽" }, { "input": "frowzier", "output": "⠋⠗⠪⠵⠊⠻" }, { "input": "frowziest", "output": "⠋⠗⠪⠵⠊⠑⠌" }, { "input": "frowzy", "output": "⠋⠗⠪⠵⠽" }, { "input": "froze", "output": "⠋⠗⠕⠵⠑" }, { "input": "frozen", "output": "⠋⠗⠕⠵⠢" }, { "input": "fructified", "output": "⠋⠗⠥⠉⠞⠊⠋⠊⠫" }, { "input": "fructifies", "output": "⠋⠗⠥⠉⠞⠊⠋⠊⠑⠎" }, { "input": "fructify", "output": "⠋⠗⠥⠉⠞⠊⠋⠽" }, { "input": "fructifying", "output": "⠋⠗⠥⠉⠞⠊⠋⠽⠬" }, { "input": "fructose", "output": "⠋⠗⠥⠉⠞⠕⠎⠑" }, { "input": "frugal", "output": "⠋⠗⠥⠛â â ‡" }, { "input": "frugality", "output": "⠋⠗⠥⠛â â ‡â °â ½" }, { "input": "frugally", "output": "⠋⠗⠥⠛â â ‡â ‡â ½" }, { "input": "fruit", "output": "⠋⠗⠥⠊⠞" }, { "input": "fruitcake", "output": "⠋⠗⠥⠊⠞⠉â â …â ‘" }, { "input": "fruitcakes", "output": "⠋⠗⠥⠊⠞⠉â â …â ‘â Ž" }, { "input": "fruited", "output": "⠋⠗⠥⠊⠞⠫" }, { "input": "fruitful", "output": "⠋⠗⠥⠊⠞⠰⠇" }, { "input": "fruitfully", "output": "⠋⠗⠥⠊⠞⠰⠇⠇⠽" }, { "input": "fruitfulness", "output": "⠋⠗⠥⠊⠞⠰⠇⠰⠎" }, { "input": "fruitier", "output": "⠋⠗⠥⠊⠞⠊⠻" }, { "input": "fruitiest", "output": "⠋⠗⠥⠊⠞⠊⠑⠌" }, { "input": "fruiting", "output": "⠋⠗⠥⠊⠞⠬" }, { "input": "fruition", "output": "⠋⠗⠥⠊⠰â " }, { "input": "fruitless", "output": "⠋⠗⠥⠊⠞⠨⠎" }, { "input": "fruitlessly", "output": "⠋⠗⠥⠊⠞⠨⠎⠇⠽" }, { "input": "fruitlessness", "output": "⠋⠗⠥⠊⠞⠨⠎⠰⠎" }, { "input": "fruits", "output": "⠋⠗⠥⠊⠞⠎" }, { "input": "fruity", "output": "⠋⠗⠥⠊⠞⠽" }, { "input": "frump", "output": "â ‹â —â ¥â â " }, { "input": "frumpier", "output": "â ‹â —â ¥â â â Šâ »" }, { "input": "frumpiest", "output": "â ‹â —â ¥â â â Šâ ‘â Œ" }, { "input": "frumps", "output": "â ‹â —â ¥â â â Ž" }, { "input": "frumpy", "output": "â ‹â —â ¥â â â ½" }, { "input": "frustrate", "output": "⠋⠗⠥⠌⠗â â žâ ‘" }, { "input": "frustrated", "output": "⠋⠗⠥⠌⠗â â žâ «" }, { "input": "frustrates", "output": "⠋⠗⠥⠌⠗â â žâ ‘â Ž" }, { "input": "frustrating", "output": "⠋⠗⠥⠌⠗â â žâ ¬" }, { "input": "frustration", "output": "⠋⠗⠥⠌⠗â â °â " }, { "input": "frustrations", "output": "⠋⠗⠥⠌⠗â â °â â Ž" }, { "input": "fry", "output": "â ‹â —â ½" }, { "input": "fryer", "output": "⠋⠗⠽⠻" }, { "input": "fryers", "output": "⠋⠗⠽⠻⠎" }, { "input": "frying", "output": "⠋⠗⠽⠬" }, { "input": "fuchsia", "output": "⠋⠥⠡⠎⠊â " }, { "input": "fuchsias", "output": "⠋⠥⠡⠎⠊â â Ž" }, { "input": "fuck", "output": "⠋⠥⠉⠅" }, { "input": "fucked", "output": "⠋⠥⠉⠅⠫" }, { "input": "fucker", "output": "⠋⠥⠉⠅⠻" }, { "input": "fuckers", "output": "⠋⠥⠉⠅⠻⠎" }, { "input": "fucking", "output": "⠋⠥⠉⠅⠬" }, { "input": "fucks", "output": "⠋⠥⠉⠅⠎" }, { "input": "fuddle", "output": "⠋⠥⠙⠙⠇⠑" }, { "input": "fuddled", "output": "⠋⠥⠙⠙⠇⠫" }, { "input": "fuddles", "output": "⠋⠥⠙⠙⠇⠑⠎" }, { "input": "fuddling", "output": "⠋⠥⠙⠙⠇⠬" }, { "input": "fudge", "output": "⠋⠥⠙⠛⠑" }, { "input": "fudged", "output": "⠋⠥⠙⠛⠫" }, { "input": "fudges", "output": "⠋⠥⠙⠛⠑⠎" }, { "input": "fudging", "output": "⠋⠥⠙⠛⠬" }, { "input": "fuel", "output": "⠋⠥⠑⠇" }, { "input": "fueled", "output": "⠋⠥⠑⠇⠫" }, { "input": "fueling", "output": "⠋⠥⠑⠇⠬" }, { "input": "fuelled", "output": "⠋⠥⠑⠇⠇⠫" }, { "input": "fuelling", "output": "⠋⠥⠑⠇⠇⠬" }, { "input": "fuels", "output": "⠋⠥⠑⠇⠎" }, { "input": "fugitive", "output": "⠋⠥⠛⠊⠞⠊⠧⠑" }, { "input": "fugitives", "output": "⠋⠥⠛⠊⠞⠊⠧⠑⠎" }, { "input": "fugue", "output": "⠋⠥⠛⠥⠑" }, { "input": "fugues", "output": "⠋⠥⠛⠥⠑⠎" }, { "input": "fulcra", "output": "⠋⠥⠇⠉⠗â " }, { "input": "fulcrum", "output": "⠋⠥⠇⠉⠗⠥â " }, { "input": "fulcrums", "output": "⠋⠥⠇⠉⠗⠥â â Ž" }, { "input": "fulfil", "output": "⠋⠥⠇⠋⠊⠇" }, { "input": "fulfill", "output": "⠋⠥⠇⠋⠊⠇⠇" }, { "input": "fulfilled", "output": "⠋⠥⠇⠋⠊⠇⠇⠫" }, { "input": "fulfilling", "output": "⠋⠥⠇⠋⠊⠇⠇⠬" }, { "input": "fulfillment", "output": "⠋⠥⠇⠋⠊⠇⠇⠰⠞" }, { "input": "fulfills", "output": "⠋⠥⠇⠋⠊⠇⠇⠎" }, { "input": "fulfilment", "output": "⠋⠥⠇⠋⠊⠇⠰⠞" }, { "input": "fulfils", "output": "⠋⠥⠇⠋⠊⠇⠎" }, { "input": "full", "output": "⠋⠥⠇⠇" }, { "input": "fullback", "output": "⠋⠥⠇⠇⠃â â ‰â …" }, { "input": "fullbacks", "output": "⠋⠥⠇⠇⠃â â ‰â …â Ž" }, { "input": "fulled", "output": "⠋⠥⠇⠇⠫" }, { "input": "fuller", "output": "⠋⠥⠇⠇⠻" }, { "input": "fullest", "output": "⠋⠥⠇⠇⠑⠌" }, { "input": "fulling", "output": "⠋⠥⠇⠇⠬" }, { "input": "fullness", "output": "⠋⠥⠇⠇⠰⠎" }, { "input": "fulls", "output": "⠋⠥⠇⠇⠎" }, { "input": "fully", "output": "⠋⠥⠇⠇⠽" }, { "input": "fulminate", "output": "⠋⠥⠇â â ”â â žâ ‘" }, { "input": "fulminated", "output": "⠋⠥⠇â â ”â â žâ «" }, { "input": "fulminates", "output": "⠋⠥⠇â â ”â â žâ ‘â Ž" }, { "input": "fulminating", "output": "⠋⠥⠇â â ”â â žâ ¬" }, { "input": "fulmination", "output": "⠋⠥⠇â â ”â â °â " }, { "input": "fulminations", "output": "⠋⠥⠇â â ”â â °â â Ž" }, { "input": "fulness", "output": "⠋⠥⠇⠰⠎" }, { "input": "fulsome", "output": "⠋⠥⠇â â Ž" }, { "input": "fumble", "output": "â ‹â ¥â â ƒâ ‡â ‘" }, { "input": "fumbled", "output": "â ‹â ¥â â ƒâ ‡â «" }, { "input": "fumbler", "output": "â ‹â ¥â â ƒâ ‡â »" }, { "input": "fumblers", "output": "â ‹â ¥â â ƒâ ‡â »â Ž" }, { "input": "fumbles", "output": "â ‹â ¥â â ƒâ ‡â ‘â Ž" }, { "input": "fumbling", "output": "â ‹â ¥â â ƒâ ‡â ¬" }, { "input": "fume", "output": "â ‹â ¥â â ‘" }, { "input": "fumed", "output": "â ‹â ¥â â «" }, { "input": "fumes", "output": "â ‹â ¥â â ‘â Ž" }, { "input": "fumigate", "output": "â ‹â ¥â â Šâ ›â â žâ ‘" }, { "input": "fumigated", "output": "â ‹â ¥â â Šâ ›â â žâ «" }, { "input": "fumigates", "output": "â ‹â ¥â â Šâ ›â â žâ ‘â Ž" }, { "input": "fumigating", "output": "â ‹â ¥â â Šâ ›â â žâ ¬" }, { "input": "fumigation", "output": "â ‹â ¥â â Šâ ›â â °â " }, { "input": "fumigator", "output": "â ‹â ¥â â Šâ ›â â žâ •â —" }, { "input": "fumigators", "output": "â ‹â ¥â â Šâ ›â â žâ •â —â Ž" }, { "input": "fuming", "output": "â ‹â ¥â â ¬" }, { "input": "fun", "output": "â ‹â ¥â " }, { "input": "function", "output": "â ‹â ¥â â ‰â °â " }, { "input": "functional", "output": "â ‹â ¥â â ‰â °â â â ‡" }, { "input": "functionality", "output": "â ‹â ¥â â ‰â °â â â ‡â °â ½" }, { "input": "functionally", "output": "â ‹â ¥â â ‰â °â â â ‡â ‡â ½" }, { "input": "functionaries", "output": "â ‹â ¥â â ‰â °â â œâ Šâ ‘â Ž" }, { "input": "functionary", "output": "â ‹â ¥â â ‰â °â â œâ ½" }, { "input": "functioned", "output": "â ‹â ¥â â ‰â °â â «" }, { "input": "functioning", "output": "â ‹â ¥â â ‰â °â â ¬" }, { "input": "functions", "output": "â ‹â ¥â â ‰â °â â Ž" }, { "input": "fund", "output": "â ‹â ¥â â ™" }, { "input": "fundamental", "output": "â ‹â ¥â â ™â â °â žâ â ‡" }, { "input": "fundamentalism", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Žâ " }, { "input": "fundamentalist", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Œ" }, { "input": "fundamentalists", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Œâ Ž" }, { "input": "fundamentally", "output": "â ‹â ¥â â ™â â °â žâ â ‡â ‡â ½" }, { "input": "fundamentals", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Ž" }, { "input": "funded", "output": "â ‹â ¥â â ™â «" }, { "input": "funding", "output": "â ‹â ¥â â ™â ¬" }, { "input": "funds", "output": "â ‹â ¥â â ™â Ž" }, { "input": "funeral", "output": "â ‹â ¥â â »â â ‡" }, { "input": "funerals", "output": "â ‹â ¥â â »â â ‡â Ž" }, { "input": "funereal", "output": "â ‹â ¥â â »â ‚â ‡" }, { "input": "funereally", "output": "â ‹â ¥â â »â ‚⠇⠇⠽" }, { "input": "fungal", "output": "â ‹â ¥â â ›â â ‡" }, { "input": "fungi", "output": "â ‹â ¥â â ›â Š" }, { "input": "fungicidal", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â â ‡" }, { "input": "fungicide", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â ‘" }, { "input": "fungicides", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "fungous", "output": "â ‹â ¥â â ›â ³â Ž" }, { "input": "fungus", "output": "â ‹â ¥â â ›â ¥â Ž" }, { "input": "funguses", "output": "â ‹â ¥â â ›â ¥â Žâ ‘â Ž" }, { "input": "funicular", "output": "â ‹â ¥â â Šâ ‰â ¥â ‡â œ" }, { "input": "funiculars", "output": "â ‹â ¥â â Šâ ‰â ¥â ‡â œâ Ž" }, { "input": "funk", "output": "â ‹â ¥â â …" }, { "input": "funked", "output": "â ‹â ¥â â …â «" }, { "input": "funkier", "output": "â ‹â ¥â â …â Šâ »" }, { "input": "funkiest", "output": "â ‹â ¥â â …â Šâ ‘â Œ" }, { "input": "funking", "output": "â ‹â ¥â â …â ¬" }, { "input": "funks", "output": "â ‹â ¥â â …â Ž" }, { "input": "funky", "output": "â ‹â ¥â â …â ½" }, { "input": "funnel", "output": "â ‹â ¥â â â ‘â ‡" }, { "input": "funneled", "output": "â ‹â ¥â â â ‘⠇⠫" }, { "input": "funneling", "output": "â ‹â ¥â â â ‘⠇⠬" }, { "input": "funnelled", "output": "â ‹â ¥â â â ‘⠇⠇⠫" }, { "input": "funnelling", "output": "â ‹â ¥â â â ‘⠇⠇⠬" }, { "input": "funnels", "output": "â ‹â ¥â â â ‘⠇⠎" }, { "input": "funner", "output": "â ‹â ¥â â â »" }, { "input": "funnest", "output": "â ‹â ¥â â â ‘â Œ" }, { "input": "funnier", "output": "â ‹â ¥â â â Šâ »" }, { "input": "funnies", "output": "â ‹â ¥â â â Šâ ‘â Ž" }, { "input": "funniest", "output": "â ‹â ¥â â â Šâ ‘â Œ" }, { "input": "funnily", "output": "â ‹â ¥â â â Šâ ‡â ½" }, { "input": "funniness", "output": "â ‹â ¥â â â Šâ °â Ž" }, { "input": "funny", "output": "â ‹â ¥â â â ½" }, { "input": "fur", "output": "⠋⠥⠗" }, { "input": "furbelow", "output": "⠋⠥⠗⠃⠑⠇⠪" }, { "input": "furbish", "output": "⠋⠥⠗⠃⠊⠩" }, { "input": "furbished", "output": "⠋⠥⠗⠃⠊⠩⠫" }, { "input": "furbishes", "output": "⠋⠥⠗⠃⠊⠩⠑⠎" }, { "input": "furbishing", "output": "⠋⠥⠗⠃⠊⠩⠬" }, { "input": "furies", "output": "⠋⠥⠗⠊⠑⠎" }, { "input": "furious", "output": "⠋⠥⠗⠊⠳⠎" }, { "input": "furiously", "output": "⠋⠥⠗⠊⠳⠎⠇⠽" }, { "input": "furl", "output": "⠋⠥⠗⠇" }, { "input": "furled", "output": "⠋⠥⠗⠇⠫" }, { "input": "furling", "output": "⠋⠥⠗⠇⠬" }, { "input": "furlong", "output": "⠋⠥⠗⠇⠰⠛" }, { "input": "furlongs", "output": "⠋⠥⠗⠇⠰⠛⠎" }, { "input": "furlough", "output": "⠋⠥⠗⠇⠳⠣" }, { "input": "furloughed", "output": "⠋⠥⠗⠇⠳⠣⠫" }, { "input": "furloughing", "output": "⠋⠥⠗⠇⠳⠣⠬" }, { "input": "furloughs", "output": "⠋⠥⠗⠇⠳⠣⠎" }, { "input": "furls", "output": "⠋⠥⠗⠇⠎" }, { "input": "furnace", "output": "⠋⠥⠗â â â ‰â ‘" }, { "input": "furnaces", "output": "⠋⠥⠗â â â ‰â ‘â Ž" }, { "input": "furnish", "output": "⠋⠥⠗â â Šâ ©" }, { "input": "furnished", "output": "⠋⠥⠗â â Šâ ©â «" }, { "input": "furnishes", "output": "⠋⠥⠗â â Šâ ©â ‘â Ž" }, { "input": "furnishing", "output": "⠋⠥⠗â â Šâ ©â ¬" }, { "input": "furnishings", "output": "⠋⠥⠗â â Šâ ©â ¬â Ž" }, { "input": "furniture", "output": "⠋⠥⠗â â Šâ žâ ¥â —â ‘" }, { "input": "furor", "output": "⠋⠥⠗⠕⠗" }, { "input": "furors", "output": "⠋⠥⠗⠕⠗⠎" }, { "input": "furred", "output": "⠋⠥⠗⠗⠫" }, { "input": "furrier", "output": "⠋⠥⠗⠗⠊⠻" }, { "input": "furriers", "output": "⠋⠥⠗⠗⠊⠻⠎" }, { "input": "furriest", "output": "⠋⠥⠗⠗⠊⠑⠌" }, { "input": "furring", "output": "⠋⠥⠗⠗⠬" }, { "input": "furrow", "output": "⠋⠥⠗⠗⠪" }, { "input": "furrowed", "output": "⠋⠥⠗⠗⠪⠫" }, { "input": "furrowing", "output": "⠋⠥⠗⠗⠪⠬" }, { "input": "furrows", "output": "⠋⠥⠗⠗⠪⠎" }, { "input": "furry", "output": "⠋⠥⠗⠗⠽" }, { "input": "furs", "output": "⠋⠥⠗⠎" }, { "input": "further", "output": "⠋⠥⠗⠮⠗" }, { "input": "furtherance", "output": "⠋⠥⠗⠮⠗⠨⠑" }, { "input": "furthered", "output": "⠋⠥⠗⠮⠗⠫" }, { "input": "furthering", "output": "⠋⠥⠗⠮⠗⠬" }, { "input": "furthermore", "output": "⠋⠥⠗⠮⠗â â •â —â ‘" }, { "input": "furthermost", "output": "⠋⠥⠗⠮⠗â â •â Œ" }, { "input": "furthers", "output": "⠋⠥⠗⠮⠗⠎" }, { "input": "furthest", "output": "⠋⠥⠗⠮⠌" }, { "input": "furtive", "output": "⠋⠥⠗⠞⠊⠧⠑" }, { "input": "furtively", "output": "⠋⠥⠗⠞⠊⠧⠑⠇⠽" }, { "input": "furtiveness", "output": "⠋⠥⠗⠞⠊⠧⠑⠰⠎" }, { "input": "fury", "output": "⠋⠥⠗⠽" }, { "input": "furze", "output": "⠋⠥⠗⠵⠑" }, { "input": "fuse", "output": "⠋⠥⠎⠑" }, { "input": "fused", "output": "⠋⠥⠎⠫" }, { "input": "fuselage", "output": "⠋⠥⠎⠑⠇â â ›â ‘" }, { "input": "fuselages", "output": "⠋⠥⠎⠑⠇â â ›â ‘â Ž" }, { "input": "fuses", "output": "⠋⠥⠎⠑⠎" }, { "input": "fusible", "output": "⠋⠥⠎⠊⠃⠇⠑" }, { "input": "fusillade", "output": "⠋⠥⠎⠊⠇⠇â â ™â ‘" }, { "input": "fusillades", "output": "⠋⠥⠎⠊⠇⠇â â ™â ‘â Ž" }, { "input": "fusing", "output": "⠋⠥⠎⠬" }, { "input": "fusion", "output": "⠋⠥⠨â " }, { "input": "fusions", "output": "⠋⠥⠨â â Ž" }, { "input": "fuss", "output": "⠋⠥⠎⠎" }, { "input": "fussbudget", "output": "⠋⠥⠎⠎⠃⠥⠙⠛⠑⠞" }, { "input": "fussbudgets", "output": "⠋⠥⠎⠎⠃⠥⠙⠛⠑⠞⠎" }, { "input": "fussed", "output": "⠋⠥⠎⠎⠫" }, { "input": "fusses", "output": "⠋⠥⠎⠎⠑⠎" }, { "input": "fussier", "output": "⠋⠥⠎⠎⠊⠻" }, { "input": "fussiest", "output": "⠋⠥⠎⠎⠊⠑⠌" }, { "input": "fussily", "output": "⠋⠥⠎⠎⠊⠇⠽" }, { "input": "fussiness", "output": "⠋⠥⠎⠎⠊⠰⠎" }, { "input": "fussing", "output": "⠋⠥⠎⠎⠬" }, { "input": "fussy", "output": "⠋⠥⠎⠎⠽" }, { "input": "fustian", "output": "⠋⠥⠌⠊â â " }, { "input": "fustier", "output": "⠋⠥⠌⠊⠻" }, { "input": "fustiest", "output": "⠋⠥⠌⠊⠑⠌" }, { "input": "fusty", "output": "⠋⠥⠌⠽" }, { "input": "futile", "output": "⠋⠥⠞⠊⠇⠑" }, { "input": "futilely", "output": "⠋⠥⠞⠊⠇⠑⠇⠽" }, { "input": "futility", "output": "⠋⠥⠞⠊⠇⠰⠽" }, { "input": "futon", "output": "⠋⠥⠞⠕â " }, { "input": "futons", "output": "⠋⠥⠞⠕â â Ž" }, { "input": "future", "output": "⠋⠥⠞⠥⠗⠑" }, { "input": "futures", "output": "⠋⠥⠞⠥⠗⠑⠎" }, { "input": "futuristic", "output": "⠋⠥⠞⠥⠗⠊⠌⠊⠉" }, { "input": "futurities", "output": "⠋⠥⠞⠥⠗⠊⠞⠊⠑⠎" }, { "input": "futurity", "output": "⠋⠥⠞⠥⠗⠰⠽" }, { "input": "futz", "output": "⠋⠥⠞⠵" }, { "input": "futzed", "output": "⠋⠥⠞⠵⠫" }, { "input": "futzes", "output": "⠋⠥⠞⠵⠑⠎" }, { "input": "futzing", "output": "⠋⠥⠞⠵⠬" }, { "input": "fuze", "output": "⠋⠥⠵⠑" }, { "input": "fuzed", "output": "⠋⠥⠵⠫" }, { "input": "fuzes", "output": "⠋⠥⠵⠑⠎" }, { "input": "fuzing", "output": "⠋⠥⠵⠬" }, { "input": "fuzz", "output": "⠋⠥⠵⠵" }, { "input": "fuzzed", "output": "⠋⠥⠵⠵⠫" }, { "input": "fuzzes", "output": "⠋⠥⠵⠵⠑⠎" }, { "input": "fuzzier", "output": "⠋⠥⠵⠵⠊⠻" }, { "input": "fuzziest", "output": "⠋⠥⠵⠵⠊⠑⠌" }, { "input": "fuzzily", "output": "⠋⠥⠵⠵⠊⠇⠽" }, { "input": "fuzziness", "output": "⠋⠥⠵⠵⠊⠰⠎" }, { "input": "fuzzing", "output": "⠋⠥⠵⠵⠬" }, { "input": "fuzzy", "output": "⠋⠥⠵⠵⠽" }, { "input": "fête", "output": "⠋⠠⠘⠻â â â ”â žâ ‘" }, { "input": "fêtes", "output": "⠋⠠⠘⠻â â â ”â žâ ‘â Ž" }, { "input": "g", "output": "â °â ›" }, { "input": "gab", "output": "â ›â â ƒ" }, { "input": "gabardine", "output": "â ›â â ƒâ œâ ™â ”â ‘" }, { "input": "gabardines", "output": "â ›â â ƒâ œâ ™â ”â ‘â Ž" }, { "input": "gabbed", "output": "â ›â â †â «" }, { "input": "gabbier", "output": "â ›â â †â Šâ »" }, { "input": "gabbiest", "output": "â ›â â †â Šâ ‘â Œ" }, { "input": "gabbing", "output": "â ›â â †â ¬" }, { "input": "gabble", "output": "â ›â â †â ‡â ‘" }, { "input": "gabbled", "output": "â ›â â †â ‡â «" }, { "input": "gabbles", "output": "â ›â â †â ‡â ‘â Ž" }, { "input": "gabbling", "output": "â ›â â †â ‡â ¬" }, { "input": "gabby", "output": "â ›â â †â ½" }, { "input": "gaberdine", "output": "â ›â â ƒâ »â ™â ”â ‘" }, { "input": "gaberdines", "output": "â ›â â ƒâ »â ™â ”â ‘â Ž" }, { "input": "gable", "output": "â ›â â ƒâ ‡â ‘" }, { "input": "gabled", "output": "â ›â â ƒâ ‡â «" }, { "input": "gables", "output": "â ›â â ƒâ ‡â ‘â Ž" }, { "input": "gabs", "output": "â ›â â ƒâ Ž" }, { "input": "gad", "output": "â ›â â ™" }, { "input": "gadabout", "output": "â ›â â ™â â ƒ" }, { "input": "gadabouts", "output": "â ›â â ™â â ƒâ Ž" }, { "input": "gadded", "output": "â ›â â ™â ™â «" }, { "input": "gadding", "output": "â ›â â ™â ™â ¬" }, { "input": "gadflies", "output": "â ›â â ™â ‹â ‡â Šâ ‘â Ž" }, { "input": "gadfly", "output": "â ›â â ™â ‹â ‡â ½" }, { "input": "gadget", "output": "â ›â â ™â ›â ‘â ž" }, { "input": "gadgetry", "output": "â ›â â ™â ›â ‘â žâ —â ½" }, { "input": "gadgets", "output": "â ›â â ™â ›â ‘â žâ Ž" }, { "input": "gads", "output": "â ›â â ™â Ž" }, { "input": "gaff", "output": "â ›â â ‹â ‹" }, { "input": "gaffe", "output": "â ›â â –â ‘" }, { "input": "gaffed", "output": "â ›â â –â «" }, { "input": "gaffes", "output": "â ›â â –â ‘â Ž" }, { "input": "gaffing", "output": "â ›â â –â ¬" }, { "input": "gaffs", "output": "â ›â â –â Ž" }, { "input": "gag", "output": "â ›â â ›" }, { "input": "gage", "output": "â ›â â ›â ‘" }, { "input": "gaged", "output": "â ›â â ›â «" }, { "input": "gages", "output": "â ›â â ›â ‘â Ž" }, { "input": "gagged", "output": "â ›â â ¶â «" }, { "input": "gagging", "output": "â ›â â ¶â ¬" }, { "input": "gaggle", "output": "â ›â â ¶â ‡â ‘" }, { "input": "gaggles", "output": "â ›â â ¶â ‡â ‘â Ž" }, { "input": "gaging", "output": "â ›â â ›â ¬" }, { "input": "gags", "output": "â ›â â ›â Ž" }, { "input": "gaiety", "output": "â ›â â Šâ ‘â žâ ½" }, { "input": "gaily", "output": "â ›â â Šâ ‡â ½" }, { "input": "gain", "output": "â ›â â ”" }, { "input": "gained", "output": "â ›â â ”â «" }, { "input": "gainful", "output": "â ›â â ”â °â ‡" }, { "input": "gainfully", "output": "â ›â â ”⠰⠇⠇⠽" }, { "input": "gaining", "output": "â ›â â ”â ¬" }, { "input": "gains", "output": "â ›â â ”â Ž" }, { "input": "gainsaid", "output": "â ›â â ”â Žâ ™" }, { "input": "gainsay", "output": "â ›â â ”â Žâ â ½" }, { "input": "gainsaying", "output": "â ›â â ”â Žâ â ½â ¬" }, { "input": "gainsays", "output": "â ›â â ”â Žâ â ½â Ž" }, { "input": "gait", "output": "â ›â â Šâ ž" }, { "input": "gaiter", "output": "â ›â â Šâ žâ »" }, { "input": "gaiters", "output": "â ›â â Šâ žâ »â Ž" }, { "input": "gaits", "output": "â ›â â Šâ žâ Ž" }, { "input": "gal", "output": "â ›â â ‡" }, { "input": "gala", "output": "â ›â â ‡â " }, { "input": "galactic", "output": "â ›â â ‡â â ‰â žâ Šâ ‰" }, { "input": "galas", "output": "â ›â â ‡â â Ž" }, { "input": "galaxies", "output": "â ›â â ‡â â ­â Šâ ‘â Ž" }, { "input": "galaxy", "output": "â ›â â ‡â â ­â ½" }, { "input": "gale", "output": "â ›â â ‡â ‘" }, { "input": "galena", "output": "â ›â â ‡â ¢â " }, { "input": "gales", "output": "â ›â â ‡â ‘â Ž" }, { "input": "gall", "output": "â ›â â ‡â ‡" }, { "input": "gallant", "output": "â ›â â ‡â ‡â â â ž" }, { "input": "gallantly", "output": "â ›â â ‡â ‡â â â žâ ‡â ½" }, { "input": "gallantry", "output": "â ›â â ‡â ‡â â â žâ —â ½" }, { "input": "gallants", "output": "â ›â â ‡â ‡â â â žâ Ž" }, { "input": "gallbladder", "output": "â ›â â ‡â ‡â ƒâ ‡â â ™â ™â »" }, { "input": "gallbladders", "output": "â ›â â ‡â ‡â ƒâ ‡â â ™â ™â »â Ž" }, { "input": "galled", "output": "â ›â â ‡â ‡â «" }, { "input": "galleon", "output": "â ›â â ‡â ‡â ‘â •â " }, { "input": "galleons", "output": "â ›â â ‡â ‡â ‘â •â â Ž" }, { "input": "galleries", "output": "â ›â â ‡â ‡â »â Šâ ‘â Ž" }, { "input": "gallery", "output": "â ›â â ‡â ‡â »â ½" }, { "input": "galley", "output": "â ›â â ‡â ‡â ‘â ½" }, { "input": "galleys", "output": "â ›â â ‡â ‡â ‘⠽⠎" }, { "input": "galling", "output": "â ›â â ‡â ‡â ¬" }, { "input": "gallium", "output": "â ›â â ‡â ‡â Šâ ¥â " }, { "input": "gallivant", "output": "â ›â â ‡â ‡â Šâ §â â â ž" }, { "input": "gallivanted", "output": "â ›â â ‡â ‡â Šâ §â â â žâ «" }, { "input": "gallivanting", "output": "â ›â â ‡â ‡â Šâ §â â â žâ ¬" }, { "input": "gallivants", "output": "â ›â â ‡â ‡â Šâ §â â â žâ Ž" }, { "input": "gallon", "output": "â ›â â ‡â ‡â •â " }, { "input": "gallons", "output": "â ›â â ‡â ‡â •â â Ž" }, { "input": "gallop", "output": "â ›â â ‡â ‡â •â " }, { "input": "galloped", "output": "â ›â â ‡â ‡â •â â «" }, { "input": "galloping", "output": "â ›â â ‡â ‡â •â â ¬" }, { "input": "gallops", "output": "â ›â â ‡â ‡â •â â Ž" }, { "input": "gallows", "output": "â ›â â ‡â ‡â ªâ Ž" }, { "input": "gallowses", "output": "â ›â â ‡â ‡â ªâ Žâ ‘â Ž" }, { "input": "galls", "output": "â ›â â ‡â ‡â Ž" }, { "input": "gallstone", "output": "â ›â â ‡â ‡â Œâ â •" }, { "input": "gallstones", "output": "â ›â â ‡â ‡â Œâ â •â Ž" }, { "input": "galore", "output": "â ›â â ‡â •â —â ‘" }, { "input": "galosh", "output": "â ›â â ‡â •â ©" }, { "input": "galoshes", "output": "â ›â â ‡â •â ©â ‘â Ž" }, { "input": "gals", "output": "â ›â â ‡â Ž" }, { "input": "galvanic", "output": "â ›â â ‡â §â â â Šâ ‰" }, { "input": "galvanize", "output": "â ›â â ‡â §â â â Šâ µâ ‘" }, { "input": "galvanized", "output": "â ›â â ‡â §â â â Šâ µâ «" }, { "input": "galvanizes", "output": "â ›â â ‡â §â â â Šâ µâ ‘â Ž" }, { "input": "galvanizing", "output": "â ›â â ‡â §â â â Šâ µâ ¬" }, { "input": "galvanometer", "output": "â ›â â ‡â §â â â •â â ‘â žâ »" }, { "input": "galvanometers", "output": "â ›â â ‡â §â â â •â â ‘⠞⠻⠎" }, { "input": "gambit", "output": "â ›â â â ƒâ Šâ ž" }, { "input": "gambits", "output": "â ›â â â ƒâ Šâ žâ Ž" }, { "input": "gamble", "output": "â ›â â â ƒâ ‡â ‘" }, { "input": "gambled", "output": "â ›â â â ƒâ ‡â «" }, { "input": "gambler", "output": "â ›â â â ƒâ ‡â »" }, { "input": "gamblers", "output": "â ›â â â ƒâ ‡â »â Ž" }, { "input": "gambles", "output": "â ›â â â ƒâ ‡â ‘â Ž" }, { "input": "gambling", "output": "â ›â â â ƒâ ‡â ¬" }, { "input": "gambol", "output": "â ›â â â ƒâ •â ‡" }, { "input": "gamboled", "output": "â ›â â â ƒâ •⠇⠫" }, { "input": "gamboling", "output": "â ›â â â ƒâ •⠇⠬" }, { "input": "gambolled", "output": "â ›â â â ƒâ •⠇⠇⠫" }, { "input": "gambolling", "output": "â ›â â â ƒâ •⠇⠇⠬" }, { "input": "gambols", "output": "â ›â â â ƒâ •⠇⠎" }, { "input": "game", "output": "â ›â â â ‘" }, { "input": "gamecock", "output": "â ›â â â ‘⠉⠕⠉⠅" }, { "input": "gamecocks", "output": "â ›â â â ‘⠉⠕⠉⠅⠎" }, { "input": "gamed", "output": "â ›â â â «" }, { "input": "gamekeeper", "output": "â ›â â â ‘â …â ‘â ‘â â »" }, { "input": "gamekeepers", "output": "â ›â â â ‘â …â ‘â ‘â â »â Ž" }, { "input": "gamely", "output": "â ›â â â ‘⠇⠽" }, { "input": "gameness", "output": "â ›â â â ‘â °â Ž" }, { "input": "gamer", "output": "â ›â â â »" }, { "input": "games", "output": "â ›â â â ‘â Ž" }, { "input": "gamesmanship", "output": "â ›â â â ‘â Žâ â â â ©â Šâ " }, { "input": "gamest", "output": "â ›â â â ‘â Œ" }, { "input": "gamete", "output": "â ›â â â ‘â žâ ‘" }, { "input": "gametes", "output": "â ›â â â ‘â žâ ‘â Ž" }, { "input": "gamey", "output": "â ›â â â ‘â ½" }, { "input": "gamier", "output": "â ›â â â Šâ »" }, { "input": "gamiest", "output": "â ›â â â Šâ ‘â Œ" }, { "input": "gamin", "output": "â ›â â â ”" }, { "input": "gamine", "output": "â ›â â â ”â ‘" }, { "input": "gamines", "output": "â ›â â â ”â ‘â Ž" }, { "input": "gaming", "output": "â ›â â â ¬" }, { "input": "gamins", "output": "â ›â â â ”â Ž" }, { "input": "gamma", "output": "â ›â â â â " }, { "input": "gammas", "output": "â ›â â â â â Ž" }, { "input": "gamut", "output": "â ›â â â ¥â ž" }, { "input": "gamuts", "output": "â ›â â â ¥â žâ Ž" }, { "input": "gamy", "output": "â ›â â â ½" }, { "input": "gander", "output": "⠛⠯⠻" }, { "input": "ganders", "output": "⠛⠯⠻⠎" }, { "input": "gang", "output": "â ›â â â ›" }, { "input": "ganged", "output": "â ›â â â ›â «" }, { "input": "ganging", "output": "â ›â â â ›â ¬" }, { "input": "gangland", "output": "â ›â â â ›â ‡â ¯" }, { "input": "ganglia", "output": "â ›â â â ›â ‡â Šâ " }, { "input": "ganglier", "output": "â ›â â â ›â ‡â Šâ »" }, { "input": "gangliest", "output": "â ›â â â ›â ‡â Šâ ‘â Œ" }, { "input": "gangling", "output": "â ›â â â ›â ‡â ¬" }, { "input": "ganglion", "output": "â ›â â â ›â ‡â Šâ •â " }, { "input": "ganglions", "output": "â ›â â â ›â ‡â Šâ •â â Ž" }, { "input": "gangly", "output": "â ›â â â ›â ‡â ½" }, { "input": "gangplank", "output": "â ›â â â ›â â ‡â â â …" }, { "input": "gangplanks", "output": "â ›â â â ›â â ‡â â â …â Ž" }, { "input": "gangrene", "output": "â ›â â â ›â —⠢⠑" }, { "input": "gangrened", "output": "â ›â â â ›â —⠢⠫" }, { "input": "gangrenes", "output": "â ›â â â ›â —⠢⠑⠎" }, { "input": "gangrening", "output": "â ›â â â ›â —⠢⠬" }, { "input": "gangrenous", "output": "â ›â â â ›â —⠢⠳⠎" }, { "input": "gangs", "output": "â ›â â â ›â Ž" }, { "input": "gangster", "output": "â ›â â â ›â Œâ »" }, { "input": "gangsters", "output": "â ›â â â ›â Œâ »â Ž" }, { "input": "gangway", "output": "â ›â â â ›â ºâ â ½" }, { "input": "gangways", "output": "â ›â â â ›â ºâ â ½â Ž" }, { "input": "gannet", "output": "â ›â â â â ‘â ž" }, { "input": "gannets", "output": "â ›â â â â ‘â žâ Ž" }, { "input": "gantlet", "output": "â ›â â â žâ ‡â ‘â ž" }, { "input": "gantlets", "output": "â ›â â â žâ ‡â ‘â žâ Ž" }, { "input": "gantries", "output": "â ›â â â žâ —â Šâ ‘â Ž" }, { "input": "gantry", "output": "â ›â â â žâ —â ½" }, { "input": "gap", "output": "â ›â â " }, { "input": "gape", "output": "â ›â â â ‘" }, { "input": "gaped", "output": "â ›â â â «" }, { "input": "gapes", "output": "â ›â â â ‘â Ž" }, { "input": "gaping", "output": "â ›â â â ¬" }, { "input": "gaps", "output": "â ›â â â Ž" }, { "input": "garage", "output": "⠛⠜â â ›â ‘" }, { "input": "garaged", "output": "⠛⠜â â ›â «" }, { "input": "garages", "output": "⠛⠜â â ›â ‘â Ž" }, { "input": "garaging", "output": "⠛⠜â â ›â ¬" }, { "input": "garb", "output": "⠛⠜⠃" }, { "input": "garbage", "output": "⠛⠜⠃â â ›â ‘" }, { "input": "garbageman", "output": "⠛⠜⠃â â ›â ‘â â â " }, { "input": "garbanzo", "output": "⠛⠜⠃â â â µâ •" }, { "input": "garbanzos", "output": "⠛⠜⠃â â â µâ •â Ž" }, { "input": "garbed", "output": "⠛⠜⠃⠫" }, { "input": "garbing", "output": "⠛⠜⠃⠬" }, { "input": "garble", "output": "⠛⠜⠃⠇⠑" }, { "input": "garbled", "output": "⠛⠜⠃⠇⠫" }, { "input": "garbles", "output": "⠛⠜⠃⠇⠑⠎" }, { "input": "garbling", "output": "⠛⠜⠃⠇⠬" }, { "input": "garbs", "output": "⠛⠜⠃⠎" }, { "input": "garden", "output": "⠛⠜⠙⠢" }, { "input": "gardened", "output": "⠛⠜⠙⠢⠫" }, { "input": "gardener", "output": "⠛⠜⠙⠢⠻" }, { "input": "gardeners", "output": "⠛⠜⠙⠢⠻⠎" }, { "input": "gardenia", "output": "⠛⠜⠙⠢⠊â " }, { "input": "gardenias", "output": "⠛⠜⠙⠢⠊â â Ž" }, { "input": "gardening", "output": "⠛⠜⠙⠢⠬" }, { "input": "gardens", "output": "⠛⠜⠙⠢⠎" }, { "input": "gargantuan", "output": "⠛⠜⠛â â â žâ ¥â â " }, { "input": "gargle", "output": "⠛⠜⠛⠇⠑" }, { "input": "gargled", "output": "⠛⠜⠛⠇⠫" }, { "input": "gargles", "output": "⠛⠜⠛⠇⠑⠎" }, { "input": "gargling", "output": "⠛⠜⠛⠇⠬" }, { "input": "gargoyle", "output": "⠛⠜⠛⠕⠽⠇⠑" }, { "input": "gargoyles", "output": "⠛⠜⠛⠕⠽⠇⠑⠎" }, { "input": "garish", "output": "⠛⠜⠊⠩" }, { "input": "garishly", "output": "⠛⠜⠊⠩⠇⠽" }, { "input": "garishness", "output": "⠛⠜⠊⠩⠰⠎" }, { "input": "garland", "output": "⠛⠜⠇⠯" }, { "input": "garlanded", "output": "⠛⠜⠇⠯⠫" }, { "input": "garlanding", "output": "⠛⠜⠇⠯⠬" }, { "input": "garlands", "output": "⠛⠜⠇⠯⠎" }, { "input": "garlic", "output": "⠛⠜⠇⠊⠉" }, { "input": "garlicky", "output": "⠛⠜⠇⠊⠉⠅⠽" }, { "input": "garment", "output": "⠛⠜⠰⠞" }, { "input": "garments", "output": "⠛⠜⠰⠞⠎" }, { "input": "garner", "output": "⠛⠜â â »" }, { "input": "garnered", "output": "⠛⠜â â »â «" }, { "input": "garnering", "output": "⠛⠜â â »â ¬" }, { "input": "garners", "output": "⠛⠜â â »â Ž" }, { "input": "garnet", "output": "⠛⠜â â ‘â ž" }, { "input": "garnets", "output": "⠛⠜â â ‘â žâ Ž" }, { "input": "garnish", "output": "⠛⠜â â Šâ ©" }, { "input": "garnished", "output": "⠛⠜â â Šâ ©â «" }, { "input": "garnishee", "output": "⠛⠜â â Šâ ©â ‘â ‘" }, { "input": "garnisheed", "output": "⠛⠜â â Šâ ©â ‘â «" }, { "input": "garnisheeing", "output": "⠛⠜â â Šâ ©â ‘â ‘â ¬" }, { "input": "garnishees", "output": "⠛⠜â â Šâ ©â ‘â ‘â Ž" }, { "input": "garnishes", "output": "⠛⠜â â Šâ ©â ‘â Ž" }, { "input": "garnishing", "output": "⠛⠜â â Šâ ©â ¬" }, { "input": "garote", "output": "⠛⠜⠕⠞⠑" }, { "input": "garoted", "output": "⠛⠜⠕⠞⠫" }, { "input": "garotes", "output": "⠛⠜⠕⠞⠑⠎" }, { "input": "garoting", "output": "⠛⠜⠕⠞⠬" }, { "input": "garotte", "output": "⠛⠜⠕⠞⠞⠑" }, { "input": "garotted", "output": "⠛⠜⠕⠞⠞⠫" }, { "input": "garottes", "output": "⠛⠜⠕⠞⠞⠑⠎" }, { "input": "garotting", "output": "⠛⠜⠕⠞⠞⠬" }, { "input": "garret", "output": "⠛⠜⠗⠑⠞" }, { "input": "garrets", "output": "⠛⠜⠗⠑⠞⠎" }, { "input": "garrison", "output": "⠛⠜⠗⠊⠎⠕â " }, { "input": "garrisoned", "output": "⠛⠜⠗⠊⠎⠕â â «" }, { "input": "garrisoning", "output": "⠛⠜⠗⠊⠎⠕â â ¬" }, { "input": "garrisons", "output": "⠛⠜⠗⠊⠎⠕â â Ž" }, { "input": "garrote", "output": "⠛⠜⠗⠕⠞⠑" }, { "input": "garroted", "output": "⠛⠜⠗⠕⠞⠫" }, { "input": "garrotes", "output": "⠛⠜⠗⠕⠞⠑⠎" }, { "input": "garroting", "output": "⠛⠜⠗⠕⠞⠬" }, { "input": "garrotte", "output": "⠛⠜⠗⠕⠞⠞⠑" }, { "input": "garrotted", "output": "⠛⠜⠗⠕⠞⠞⠫" }, { "input": "garrottes", "output": "⠛⠜⠗⠕⠞⠞⠑⠎" }, { "input": "garrotting", "output": "⠛⠜⠗⠕⠞⠞⠬" }, { "input": "garrulity", "output": "⠛⠜⠗⠥⠇⠰⠽" }, { "input": "garrulous", "output": "⠛⠜⠗⠥⠇⠳⠎" }, { "input": "garrulously", "output": "⠛⠜⠗⠥⠇⠳⠎⠇⠽" }, { "input": "garrulousness", "output": "⠛⠜⠗⠥⠇⠳⠎⠰⠎" }, { "input": "garter", "output": "⠛⠜⠞⠻" }, { "input": "garters", "output": "⠛⠜⠞⠻⠎" }, { "input": "gas", "output": "â ›â â Ž" }, { "input": "gaseous", "output": "â ›â â Žâ ‘⠳⠎" }, { "input": "gases", "output": "â ›â â Žâ ‘â Ž" }, { "input": "gash", "output": "â ›â â ©" }, { "input": "gashed", "output": "â ›â â ©â «" }, { "input": "gashes", "output": "â ›â â ©â ‘â Ž" }, { "input": "gashing", "output": "â ›â â ©â ¬" }, { "input": "gasket", "output": "â ›â â Žâ …â ‘â ž" }, { "input": "gaskets", "output": "â ›â â Žâ …â ‘â žâ Ž" }, { "input": "gaslight", "output": "â ›â â Žâ ‡â Šâ £â ž" }, { "input": "gaslights", "output": "â ›â â Žâ ‡â Šâ £â žâ Ž" }, { "input": "gasohol", "output": "â ›â â Žâ •â “â •â ‡" }, { "input": "gasolene", "output": "â ›â â Žâ •⠇⠢⠑" }, { "input": "gasoline", "output": "â ›â â Žâ •⠇⠔⠑" }, { "input": "gasp", "output": "â ›â â Žâ " }, { "input": "gasped", "output": "â ›â â Žâ â «" }, { "input": "gasping", "output": "â ›â â Žâ â ¬" }, { "input": "gasps", "output": "â ›â â Žâ â Ž" }, { "input": "gassed", "output": "â ›â â Žâ Žâ «" }, { "input": "gasses", "output": "â ›â â Žâ Žâ ‘â Ž" }, { "input": "gassier", "output": "â ›â â Žâ Žâ Šâ »" }, { "input": "gassiest", "output": "â ›â â Žâ Žâ Šâ ‘â Œ" }, { "input": "gassing", "output": "â ›â â Žâ Žâ ¬" }, { "input": "gassy", "output": "â ›â â Žâ Žâ ½" }, { "input": "gastric", "output": "â ›â â Œâ —â Šâ ‰" }, { "input": "gastritis", "output": "â ›â â Œâ —â Šâ žâ Šâ Ž" }, { "input": "gastrointestinal", "output": "â ›â â Œâ —⠕⠔⠞⠑⠌⠔â â ‡" }, { "input": "gastronomic", "output": "â ›â â Œâ —â •â â •â â Šâ ‰" }, { "input": "gastronomical", "output": "â ›â â Œâ —â •â â •â â Šâ ‰â â ‡" }, { "input": "gastronomy", "output": "â ›â â Œâ —â •â â •â â ½" }, { "input": "gasworks", "output": "â ›â â Žâ â ºâ Ž" }, { "input": "gate", "output": "â ›â â žâ ‘" }, { "input": "gatecrasher", "output": "â ›â â žâ ‘⠉⠗â â ©â »" }, { "input": "gatecrashers", "output": "â ›â â žâ ‘⠉⠗â â ©â »â Ž" }, { "input": "gated", "output": "â ›â â žâ «" }, { "input": "gatepost", "output": "â ›â â žâ ‘â â •â Œ" }, { "input": "gateposts", "output": "â ›â â žâ ‘â â •⠌⠎" }, { "input": "gates", "output": "â ›â â žâ ‘â Ž" }, { "input": "gateway", "output": "â ›â â žâ ‘â ºâ â ½" }, { "input": "gateways", "output": "â ›â â žâ ‘â ºâ â ½â Ž" }, { "input": "gather", "output": "â ›â â ®â —" }, { "input": "gathered", "output": "â ›â â ®â —â «" }, { "input": "gatherer", "output": "â ›â â ®â —â »" }, { "input": "gatherers", "output": "â ›â â ®â —⠻⠎" }, { "input": "gathering", "output": "â ›â â ®â —â ¬" }, { "input": "gatherings", "output": "â ›â â ®â —⠬⠎" }, { "input": "gathers", "output": "â ›â â ®â —â Ž" }, { "input": "gating", "output": "â ›â â žâ ¬" }, { "input": "gauche", "output": "â ›â â ¥â ¡â ‘" }, { "input": "gaucher", "output": "â ›â â ¥â ¡â »" }, { "input": "gauchest", "output": "â ›â â ¥â ¡â ‘â Œ" }, { "input": "gaucho", "output": "â ›â â ¥â ¡â •" }, { "input": "gauchos", "output": "â ›â â ¥â ¡â •â Ž" }, { "input": "gaudier", "output": "â ›â â ¥â ™â Šâ »" }, { "input": "gaudiest", "output": "â ›â â ¥â ™â Šâ ‘â Œ" }, { "input": "gaudily", "output": "â ›â â ¥â ™â Šâ ‡â ½" }, { "input": "gaudiness", "output": "â ›â â ¥â ™â Šâ °â Ž" }, { "input": "gaudy", "output": "â ›â â ¥â ™â ½" }, { "input": "gauge", "output": "â ›â â ¥â ›â ‘" }, { "input": "gauged", "output": "â ›â â ¥â ›â «" }, { "input": "gauges", "output": "â ›â â ¥â ›â ‘â Ž" }, { "input": "gauging", "output": "â ›â â ¥â ›â ¬" }, { "input": "gaunt", "output": "â ›â â ¥â â ž" }, { "input": "gaunter", "output": "â ›â â ¥â â žâ »" }, { "input": "gauntest", "output": "â ›â â ¥â â žâ ‘â Œ" }, { "input": "gauntlet", "output": "â ›â â ¥â â žâ ‡â ‘â ž" }, { "input": "gauntlets", "output": "â ›â â ¥â â žâ ‡â ‘â žâ Ž" }, { "input": "gauntness", "output": "â ›â â ¥â â žâ °â Ž" }, { "input": "gauze", "output": "â ›â â ¥â µâ ‘" }, { "input": "gauzier", "output": "â ›â â ¥â µâ Šâ »" }, { "input": "gauziest", "output": "â ›â â ¥â µâ Šâ ‘â Œ" }, { "input": "gauzy", "output": "â ›â â ¥â µâ ½" }, { "input": "gave", "output": "â ›â â §â ‘" }, { "input": "gavel", "output": "â ›â â §â ‘â ‡" }, { "input": "gavels", "output": "â ›â â §â ‘⠇⠎" }, { "input": "gavotte", "output": "â ›â â §â •â žâ žâ ‘" }, { "input": "gavottes", "output": "â ›â â §â •â žâ žâ ‘â Ž" }, { "input": "gawk", "output": "â ›â â ºâ …" }, { "input": "gawked", "output": "â ›â â ºâ …â «" }, { "input": "gawkier", "output": "â ›â â ºâ …â Šâ »" }, { "input": "gawkiest", "output": "â ›â â ºâ …â Šâ ‘â Œ" }, { "input": "gawkily", "output": "â ›â â ºâ …⠊⠇⠽" }, { "input": "gawkiness", "output": "â ›â â ºâ …â Šâ °â Ž" }, { "input": "gawking", "output": "â ›â â ºâ …â ¬" }, { "input": "gawks", "output": "â ›â â ºâ …â Ž" }, { "input": "gawky", "output": "â ›â â ºâ …â ½" }, { "input": "gay", "output": "â ›â â ½" }, { "input": "gayer", "output": "â ›â â ½â »" }, { "input": "gayest", "output": "â ›â â ½â ‘â Œ" }, { "input": "gayety", "output": "â ›â â ½â ‘â žâ ½" }, { "input": "gayly", "output": "â ›â â ½â ‡â ½" }, { "input": "gayness", "output": "â ›â â ½â °â Ž" }, { "input": "gays", "output": "â ›â â ½â Ž" }, { "input": "gaze", "output": "â ›â â µâ ‘" }, { "input": "gazebo", "output": "â ›â â µâ ‘⠃⠕" }, { "input": "gazeboes", "output": "â ›â â µâ ‘⠃⠕⠑⠎" }, { "input": "gazebos", "output": "â ›â â µâ ‘⠃⠕⠎" }, { "input": "gazed", "output": "â ›â â µâ «" }, { "input": "gazelle", "output": "â ›â â µâ ‘⠇⠇⠑" }, { "input": "gazelles", "output": "â ›â â µâ ‘⠇⠇⠑⠎" }, { "input": "gazer", "output": "â ›â â µâ »" }, { "input": "gazers", "output": "â ›â â µâ »â Ž" }, { "input": "gazes", "output": "â ›â â µâ ‘â Ž" }, { "input": "gazette", "output": "â ›â â µâ ‘â žâ žâ ‘" }, { "input": "gazetted", "output": "â ›â â µâ ‘â žâ žâ «" }, { "input": "gazetteer", "output": "â ›â â µâ ‘â žâ žâ ‘â »" }, { "input": "gazetteers", "output": "â ›â â µâ ‘⠞⠞⠑⠻⠎" }, { "input": "gazettes", "output": "â ›â â µâ ‘â žâ žâ ‘â Ž" }, { "input": "gazetting", "output": "â ›â â µâ ‘â žâ žâ ¬" }, { "input": "gazillion", "output": "â ›â â µâ Šâ ‡â ‡â Šâ •â " }, { "input": "gazillions", "output": "â ›â â µâ Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "gazing", "output": "â ›â â µâ ¬" }, { "input": "gazpacho", "output": "â ›â â µâ â â ¡â •" }, { "input": "gear", "output": "⠛⠑⠜" }, { "input": "gearbox", "output": "⠛⠑⠜⠃⠕⠭" }, { "input": "gearboxes", "output": "⠛⠑⠜⠃⠕⠭⠑⠎" }, { "input": "geared", "output": "⠛⠑⠜⠫" }, { "input": "gearing", "output": "⠛⠑⠜⠬" }, { "input": "gears", "output": "⠛⠑⠜⠎" }, { "input": "gearshift", "output": "⠛⠑⠜⠩⠊⠋⠞" }, { "input": "gearshifts", "output": "⠛⠑⠜⠩⠊⠋⠞⠎" }, { "input": "gearwheel", "output": "⠛⠑⠜⠱⠑⠑⠇" }, { "input": "gearwheels", "output": "⠛⠑⠜⠱⠑⠑⠇⠎" }, { "input": "gecko", "output": "⠛⠑⠉⠅⠕" }, { "input": "geckoes", "output": "⠛⠑⠉⠅⠕⠑⠎" }, { "input": "geckos", "output": "⠛⠑⠉⠅⠕⠎" }, { "input": "gee", "output": "⠛⠑⠑" }, { "input": "geed", "output": "⠛⠑⠫" }, { "input": "geegaw", "output": "⠛⠑⠑⠛â â º" }, { "input": "geegaws", "output": "⠛⠑⠑⠛â â ºâ Ž" }, { "input": "geeing", "output": "⠛⠑⠑⠬" }, { "input": "geek", "output": "⠛⠑⠑⠅" }, { "input": "geekier", "output": "⠛⠑⠑⠅⠊⠻" }, { "input": "geekiest", "output": "⠛⠑⠑⠅⠊⠑⠌" }, { "input": "geeks", "output": "⠛⠑⠑⠅⠎" }, { "input": "geeky", "output": "⠛⠑⠑⠅⠽" }, { "input": "gees", "output": "⠛⠑⠑⠎" }, { "input": "geese", "output": "⠛⠑⠑⠎⠑" }, { "input": "geez", "output": "⠛⠑⠑⠵" }, { "input": "geezer", "output": "⠛⠑⠑⠵⠻" }, { "input": "geezers", "output": "⠛⠑⠑⠵⠻⠎" }, { "input": "geisha", "output": "⠛⠑⠊⠩â " }, { "input": "geishas", "output": "⠛⠑⠊⠩â â Ž" }, { "input": "gel", "output": "⠛⠑⠇" }, { "input": "gelatin", "output": "⠛⠑⠇â â žâ ”" }, { "input": "gelatine", "output": "⠛⠑⠇â â žâ ”â ‘" }, { "input": "gelatinous", "output": "⠛⠑⠇â â žâ ”⠳⠎" }, { "input": "geld", "output": "⠛⠑⠇⠙" }, { "input": "gelded", "output": "⠛⠑⠇⠙⠫" }, { "input": "gelding", "output": "⠛⠑⠇⠙⠬" }, { "input": "geldings", "output": "⠛⠑⠇⠙⠬⠎" }, { "input": "gelds", "output": "⠛⠑⠇⠙⠎" }, { "input": "gelid", "output": "⠛⠑⠇⠊⠙" }, { "input": "gelled", "output": "⠛⠑⠇⠇⠫" }, { "input": "gelling", "output": "⠛⠑⠇⠇⠬" }, { "input": "gels", "output": "⠛⠑⠇⠎" }, { "input": "gelt", "output": "⠛⠑⠇⠞" }, { "input": "gem", "output": "⠛⠑â " }, { "input": "gems", "output": "⠛⠑â â Ž" }, { "input": "gemstone", "output": "⠛⠑â â Œâ â •" }, { "input": "gemstones", "output": "⠛⠑â â Œâ â •â Ž" }, { "input": "gendarme", "output": "⠛⠢⠙⠜â â ‘" }, { "input": "gendarmes", "output": "⠛⠢⠙⠜â â ‘â Ž" }, { "input": "gender", "output": "⠛⠢⠙⠻" }, { "input": "genders", "output": "⠛⠢⠙⠻⠎" }, { "input": "gene", "output": "⠛⠢⠑" }, { "input": "genealogical", "output": "⠛⠢⠑â â ‡â •⠛⠊⠉â â ‡" }, { "input": "genealogies", "output": "⠛⠢⠑â â ‡â •⠛⠊⠑⠎" }, { "input": "genealogist", "output": "⠛⠢⠑â â ‡â •⠛⠊⠌" }, { "input": "genealogists", "output": "⠛⠢⠑â â ‡â •⠛⠊⠌⠎" }, { "input": "genealogy", "output": "⠛⠢⠑â â ‡â •⠛⠽" }, { "input": "genera", "output": "⠛⠢⠻â " }, { "input": "general", "output": "⠛⠢⠻â â ‡" }, { "input": "generalissimo", "output": "⠛⠢⠻â â ‡â Šâ Žâ Žâ Šâ â •" }, { "input": "generalissimos", "output": "⠛⠢⠻â â ‡â Šâ Žâ Žâ Šâ â •â Ž" }, { "input": "generalities", "output": "⠛⠢⠻â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "generality", "output": "⠛⠢⠻â â ‡â °â ½" }, { "input": "generalization", "output": "⠛⠢⠻â â ‡â Šâ µâ â °â " }, { "input": "generalizations", "output": "⠛⠢⠻â â ‡â Šâ µâ â °â â Ž" }, { "input": "generalize", "output": "⠛⠢⠻â â ‡â Šâ µâ ‘" }, { "input": "generalized", "output": "⠛⠢⠻â â ‡â Šâ µâ «" }, { "input": "generalizes", "output": "⠛⠢⠻â â ‡â Šâ µâ ‘â Ž" }, { "input": "generalizing", "output": "⠛⠢⠻â â ‡â Šâ µâ ¬" }, { "input": "generally", "output": "⠛⠢⠻â â ‡â ‡â ½" }, { "input": "generals", "output": "⠛⠢⠻â â ‡â Ž" }, { "input": "generate", "output": "⠛⠢⠻â â žâ ‘" }, { "input": "generated", "output": "⠛⠢⠻â â žâ «" }, { "input": "generates", "output": "⠛⠢⠻â â žâ ‘â Ž" }, { "input": "generating", "output": "⠛⠢⠻â â žâ ¬" }, { "input": "generation", "output": "⠛⠢⠻â â °â " }, { "input": "generations", "output": "⠛⠢⠻â â °â â Ž" }, { "input": "generative", "output": "⠛⠢⠻â â žâ Šâ §â ‘" }, { "input": "generator", "output": "⠛⠢⠻â â žâ •â —" }, { "input": "generators", "output": "⠛⠢⠻â â žâ •â —â Ž" }, { "input": "generic", "output": "⠛⠢⠻⠊⠉" }, { "input": "generically", "output": "⠛⠢⠻⠊⠉â â ‡â ‡â ½" }, { "input": "generics", "output": "⠛⠢⠻⠊⠉⠎" }, { "input": "generosities", "output": "⠛⠢⠻⠕⠎⠊⠞⠊⠑⠎" }, { "input": "generosity", "output": "⠛⠢⠻⠕⠎⠰⠽" }, { "input": "generous", "output": "⠛⠢⠻⠳⠎" }, { "input": "generously", "output": "⠛⠢⠻⠳⠎⠇⠽" }, { "input": "genes", "output": "⠛⠢⠑⠎" }, { "input": "geneses", "output": "⠛⠢⠑⠎⠑⠎" }, { "input": "genesis", "output": "⠛⠢⠑⠎⠊⠎" }, { "input": "genetic", "output": "⠛⠢⠑⠞⠊⠉" }, { "input": "genetically", "output": "⠛⠢⠑⠞⠊⠉â â ‡â ‡â ½" }, { "input": "geneticist", "output": "⠛⠢⠑⠞⠊⠉⠊⠌" }, { "input": "geneticists", "output": "⠛⠢⠑⠞⠊⠉⠊⠌⠎" }, { "input": "genetics", "output": "⠛⠢⠑⠞⠊⠉⠎" }, { "input": "genial", "output": "⠛⠢⠊â â ‡" }, { "input": "geniality", "output": "⠛⠢⠊â â ‡â °â ½" }, { "input": "genially", "output": "⠛⠢⠊â â ‡â ‡â ½" }, { "input": "genie", "output": "⠛⠢⠊⠑" }, { "input": "genies", "output": "⠛⠢⠊⠑⠎" }, { "input": "genii", "output": "⠛⠢⠊⠊" }, { "input": "genital", "output": "⠛⠢⠊⠞â â ‡" }, { "input": "genitalia", "output": "⠛⠢⠊⠞â â ‡â Šâ " }, { "input": "genitals", "output": "⠛⠢⠊⠞â â ‡â Ž" }, { "input": "genitive", "output": "⠛⠢⠊⠞⠊⠧⠑" }, { "input": "genitives", "output": "⠛⠢⠊⠞⠊⠧⠑⠎" }, { "input": "genius", "output": "⠛⠢⠊⠥⠎" }, { "input": "geniuses", "output": "⠛⠢⠊⠥⠎⠑⠎" }, { "input": "genocide", "output": "⠛⠢⠕⠉⠊⠙⠑" }, { "input": "genome", "output": "⠛⠢⠕â â ‘" }, { "input": "genomes", "output": "⠛⠢⠕â â ‘â Ž" }, { "input": "genre", "output": "⠛⠢⠗⠑" }, { "input": "genres", "output": "⠛⠢⠗⠑⠎" }, { "input": "gent", "output": "⠛⠢⠞" }, { "input": "genteel", "output": "⠛⠢⠞⠑⠑⠇" }, { "input": "gentian", "output": "⠛⠢⠞⠊â â " }, { "input": "gentians", "output": "⠛⠢⠞⠊â â â Ž" }, { "input": "gentile", "output": "⠛⠢⠞⠊⠇⠑" }, { "input": "gentiles", "output": "⠛⠢⠞⠊⠇⠑⠎" }, { "input": "gentility", "output": "⠛⠢⠞⠊⠇⠰⠽" }, { "input": "gentle", "output": "⠛⠢⠞⠇⠑" }, { "input": "gentled", "output": "⠛⠢⠞⠇⠫" }, { "input": "gentlefolk", "output": "⠛⠢⠞⠇⠑⠋⠕⠇⠅" }, { "input": "gentleman", "output": "⠛⠢⠞⠇⠑â â â " }, { "input": "gentlemanly", "output": "⠛⠢⠞⠇⠑â â â â ‡â ½" }, { "input": "gentlemen", "output": "⠛⠢⠞⠇⠑â â ¢" }, { "input": "gentleness", "output": "⠛⠢⠞⠇⠑⠰⠎" }, { "input": "gentler", "output": "⠛⠢⠞⠇⠻" }, { "input": "gentles", "output": "⠛⠢⠞⠇⠑⠎" }, { "input": "gentlest", "output": "⠛⠢⠞⠇⠑⠌" }, { "input": "gentlewoman", "output": "⠛⠢⠞⠇⠑⠺⠕â â â " }, { "input": "gentlewomen", "output": "⠛⠢⠞⠇⠑⠺⠕â â ¢" }, { "input": "gentling", "output": "⠛⠢⠞⠇⠬" }, { "input": "gently", "output": "⠛⠢⠞⠇⠽" }, { "input": "gentries", "output": "⠛⠢⠞⠗⠊⠑⠎" }, { "input": "gentrification", "output": "⠛⠢⠞⠗⠊⠋⠊⠉â â °â " }, { "input": "gentrified", "output": "⠛⠢⠞⠗⠊⠋⠊⠫" }, { "input": "gentrifies", "output": "⠛⠢⠞⠗⠊⠋⠊⠑⠎" }, { "input": "gentrify", "output": "⠛⠢⠞⠗⠊⠋⠽" }, { "input": "gentrifying", "output": "⠛⠢⠞⠗⠊⠋⠽⠬" }, { "input": "gentry", "output": "⠛⠢⠞⠗⠽" }, { "input": "gents", "output": "⠛⠢⠞⠎" }, { "input": "genuflect", "output": "⠛⠢⠥⠋⠇⠑⠉⠞" }, { "input": "genuflected", "output": "⠛⠢⠥⠋⠇⠑⠉⠞⠫" }, { "input": "genuflecting", "output": "⠛⠢⠥⠋⠇⠑⠉⠞⠬" }, { "input": "genuflection", "output": "⠛⠢⠥⠋⠇⠑⠉⠰â " }, { "input": "genuflections", "output": "⠛⠢⠥⠋⠇⠑⠉⠰â â Ž" }, { "input": "genuflects", "output": "⠛⠢⠥⠋⠇⠑⠉⠞⠎" }, { "input": "genuine", "output": "⠛⠢⠥⠔⠑" }, { "input": "genuinely", "output": "⠛⠢⠥⠔⠑⠇⠽" }, { "input": "genuineness", "output": "⠛⠢⠥⠔⠑⠰⠎" }, { "input": "genus", "output": "⠛⠢⠥⠎" }, { "input": "genuses", "output": "⠛⠢⠥⠎⠑⠎" }, { "input": "geocentric", "output": "⠛⠑⠕⠉⠢⠞⠗⠊⠉" }, { "input": "geode", "output": "⠛⠑⠕⠙⠑" }, { "input": "geodes", "output": "⠛⠑⠕⠙⠑⠎" }, { "input": "geodesic", "output": "⠛⠑⠕⠙⠑⠎⠊⠉" }, { "input": "geodesics", "output": "⠛⠑⠕⠙⠑⠎⠊⠉⠎" }, { "input": "geographer", "output": "⠛⠑⠕⠛⠗â â â “â »" }, { "input": "geographers", "output": "⠛⠑⠕⠛⠗â â â “⠻⠎" }, { "input": "geographic", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‰" }, { "input": "geographical", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "geographically", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "geographies", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "geography", "output": "⠛⠑⠕⠛⠗â â â “â ½" }, { "input": "geologic", "output": "⠛⠑⠕⠇⠕⠛⠊⠉" }, { "input": "geological", "output": "⠛⠑⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "geologically", "output": "⠛⠑⠕⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "geologies", "output": "⠛⠑⠕⠇⠕⠛⠊⠑⠎" }, { "input": "geologist", "output": "⠛⠑⠕⠇⠕⠛⠊⠌" }, { "input": "geologists", "output": "⠛⠑⠕⠇⠕⠛⠊⠌⠎" }, { "input": "geology", "output": "⠛⠑⠕⠇⠕⠛⠽" }, { "input": "geometer", "output": "⠛⠑⠕â â ‘â žâ »" }, { "input": "geometric", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‰" }, { "input": "geometrical", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "geometrically", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "geometries", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‘â Ž" }, { "input": "geometry", "output": "⠛⠑⠕â â ‘â žâ —â ½" }, { "input": "geophysical", "output": "⠛⠑⠕â â “⠽⠎⠊⠉â â ‡" }, { "input": "geophysics", "output": "⠛⠑⠕â â “⠽⠎⠊⠉⠎" }, { "input": "geopolitical", "output": "⠛⠑⠕â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "geopolitics", "output": "⠛⠑⠕â â •⠇⠊⠞⠊⠉⠎" }, { "input": "geostationary", "output": "⠛⠑⠕⠌â â °â â œâ ½" }, { "input": "geothermal", "output": "⠛⠑⠕⠮⠗â â â ‡" }, { "input": "geranium", "output": "⠛⠻â â â Šâ ¥â " }, { "input": "geraniums", "output": "⠛⠻â â â Šâ ¥â â Ž" }, { "input": "gerbil", "output": "⠛⠻⠃⠊⠇" }, { "input": "gerbils", "output": "⠛⠻⠃⠊⠇⠎" }, { "input": "geriatric", "output": "⠛⠻⠊â â žâ —â Šâ ‰" }, { "input": "geriatrics", "output": "⠛⠻⠊â â žâ —⠊⠉⠎" }, { "input": "germ", "output": "⠛⠻â " }, { "input": "germane", "output": "⠛⠻â â â â ‘" }, { "input": "germanium", "output": "⠛⠻â â â â Šâ ¥â " }, { "input": "germicidal", "output": "⠛⠻â â Šâ ‰â Šâ ™â â ‡" }, { "input": "germicide", "output": "⠛⠻â â Šâ ‰â Šâ ™â ‘" }, { "input": "germicides", "output": "⠛⠻â â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "germinal", "output": "⠛⠻â â ”â â ‡" }, { "input": "germinate", "output": "⠛⠻â â ”â â žâ ‘" }, { "input": "germinated", "output": "⠛⠻â â ”â â žâ «" }, { "input": "germinates", "output": "⠛⠻â â ”â â žâ ‘â Ž" }, { "input": "germinating", "output": "⠛⠻â â ”â â žâ ¬" }, { "input": "germination", "output": "⠛⠻â â ”â â °â " }, { "input": "germs", "output": "⠛⠻â â Ž" }, { "input": "gerontologist", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠊⠌" }, { "input": "gerontologists", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "gerontology", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠽" }, { "input": "gerrymander", "output": "⠛⠻⠗⠽â â ¯â »" }, { "input": "gerrymandered", "output": "⠛⠻⠗⠽â â ¯â »â «" }, { "input": "gerrymandering", "output": "⠛⠻⠗⠽â â ¯â »â ¬" }, { "input": "gerrymanders", "output": "⠛⠻⠗⠽â â ¯â »â Ž" }, { "input": "gerund", "output": "⠛⠻⠥â â ™" }, { "input": "gerunds", "output": "⠛⠻⠥â â ™â Ž" }, { "input": "gestate", "output": "⠛⠑⠌â â žâ ‘" }, { "input": "gestated", "output": "⠛⠑⠌â â žâ «" }, { "input": "gestates", "output": "⠛⠑⠌â â žâ ‘â Ž" }, { "input": "gestating", "output": "⠛⠑⠌â â žâ ¬" }, { "input": "gestation", "output": "⠛⠑⠌â â °â " }, { "input": "gesticulate", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ ‘" }, { "input": "gesticulated", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ «" }, { "input": "gesticulates", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ ‘â Ž" }, { "input": "gesticulating", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ ¬" }, { "input": "gesticulation", "output": "⠛⠑⠌⠊⠉⠥⠇â â °â " }, { "input": "gesticulations", "output": "⠛⠑⠌⠊⠉⠥⠇â â °â â Ž" }, { "input": "gesture", "output": "⠛⠑⠌⠥⠗⠑" }, { "input": "gestured", "output": "⠛⠑⠌⠥⠗⠫" }, { "input": "gestures", "output": "⠛⠑⠌⠥⠗⠑⠎" }, { "input": "gesturing", "output": "⠛⠑⠌⠥⠗⠬" }, { "input": "gesundheit", "output": "⠛⠑⠎⠥â â ™â “â ‘â Šâ ž" }, { "input": "get", "output": "⠛⠑⠞" }, { "input": "getaway", "output": "⠛⠑⠞â â ºâ â ½" }, { "input": "getaways", "output": "⠛⠑⠞â â ºâ â ½â Ž" }, { "input": "gets", "output": "⠛⠑⠞⠎" }, { "input": "getting", "output": "⠛⠑⠞⠞⠬" }, { "input": "getup", "output": "⠛⠑⠞⠥â " }, { "input": "gewgaw", "output": "⠛⠑⠺⠛â â º" }, { "input": "gewgaws", "output": "⠛⠑⠺⠛â â ºâ Ž" }, { "input": "geyser", "output": "⠛⠑⠽⠎⠻" }, { "input": "geysers", "output": "⠛⠑⠽⠎⠻⠎" }, { "input": "ghastlier", "output": "â £â â Œâ ‡â Šâ »" }, { "input": "ghastliest", "output": "â £â â Œâ ‡â Šâ ‘â Œ" }, { "input": "ghastliness", "output": "â £â â Œâ ‡â Šâ °â Ž" }, { "input": "ghastly", "output": "â £â â Œâ ‡â ½" }, { "input": "gherkin", "output": "⠣⠻⠅⠔" }, { "input": "gherkins", "output": "⠣⠻⠅⠔⠎" }, { "input": "ghetto", "output": "⠣⠑⠞⠞⠕" }, { "input": "ghettoes", "output": "⠣⠑⠞⠞⠕⠑⠎" }, { "input": "ghettos", "output": "⠣⠑⠞⠞⠕⠎" }, { "input": "ghost", "output": "⠣⠕⠌" }, { "input": "ghosted", "output": "⠣⠕⠌⠫" }, { "input": "ghosting", "output": "⠣⠕⠌⠬" }, { "input": "ghostlier", "output": "⠣⠕⠌⠇⠊⠻" }, { "input": "ghostliest", "output": "⠣⠕⠌⠇⠊⠑⠌" }, { "input": "ghostliness", "output": "⠣⠕⠌⠇⠊⠰⠎" }, { "input": "ghostly", "output": "⠣⠕⠌⠇⠽" }, { "input": "ghosts", "output": "⠣⠕⠌⠎" }, { "input": "ghostwrite", "output": "⠣⠕⠌⠺⠗⠊⠞⠑" }, { "input": "ghostwriter", "output": "⠣⠕⠌⠺⠗⠊⠞⠻" }, { "input": "ghostwriters", "output": "⠣⠕⠌⠺⠗⠊⠞⠻⠎" }, { "input": "ghostwrites", "output": "⠣⠕⠌⠺⠗⠊⠞⠑⠎" }, { "input": "ghostwriting", "output": "⠣⠕⠌⠺⠗⠊⠞⠬" }, { "input": "ghostwritten", "output": "⠣⠕⠌⠺⠗⠊⠞⠞⠢" }, { "input": "ghostwrote", "output": "⠣⠕⠌⠺⠗⠕⠞⠑" }, { "input": "ghoul", "output": "⠣⠳⠇" }, { "input": "ghoulish", "output": "⠣⠳⠇⠊⠩" }, { "input": "ghouls", "output": "⠣⠳⠇⠎" }, { "input": "giant", "output": "⠛⠊â â â ž" }, { "input": "giantess", "output": "⠛⠊â â â žâ ‘â Žâ Ž" }, { "input": "giantesses", "output": "⠛⠊â â â žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "giants", "output": "⠛⠊â â â žâ Ž" }, { "input": "gibber", "output": "⠛⠊⠆⠻" }, { "input": "gibbered", "output": "⠛⠊⠆⠻⠫" }, { "input": "gibbering", "output": "⠛⠊⠆⠻⠬" }, { "input": "gibberish", "output": "⠛⠊⠆⠻⠊⠩" }, { "input": "gibbers", "output": "⠛⠊⠆⠻⠎" }, { "input": "gibbet", "output": "⠛⠊⠆⠑⠞" }, { "input": "gibbeted", "output": "⠛⠊⠆⠑⠞⠫" }, { "input": "gibbeting", "output": "⠛⠊⠆⠑⠞⠬" }, { "input": "gibbets", "output": "⠛⠊⠆⠑⠞⠎" }, { "input": "gibbon", "output": "⠛⠊⠆⠕â " }, { "input": "gibbons", "output": "⠛⠊⠆⠕â â Ž" }, { "input": "gibe", "output": "⠛⠊⠃⠑" }, { "input": "gibed", "output": "⠛⠊⠃⠫" }, { "input": "gibes", "output": "⠛⠊⠃⠑⠎" }, { "input": "gibing", "output": "⠛⠊⠃⠬" }, { "input": "giblet", "output": "⠛⠊⠃⠇⠑⠞" }, { "input": "giblets", "output": "⠛⠊⠃⠇⠑⠞⠎" }, { "input": "giddier", "output": "⠛⠊⠙⠙⠊⠻" }, { "input": "giddiest", "output": "⠛⠊⠙⠙⠊⠑⠌" }, { "input": "giddily", "output": "⠛⠊⠙⠙⠊⠇⠽" }, { "input": "giddiness", "output": "⠛⠊⠙⠙⠊⠰⠎" }, { "input": "giddy", "output": "⠛⠊⠙⠙⠽" }, { "input": "gift", "output": "⠛⠊⠋⠞" }, { "input": "gifted", "output": "⠛⠊⠋⠞⠫" }, { "input": "gifting", "output": "⠛⠊⠋⠞⠬" }, { "input": "gifts", "output": "⠛⠊⠋⠞⠎" }, { "input": "gig", "output": "⠛⠊⠛" }, { "input": "gigabit", "output": "⠛⠊⠛â â ƒâ Šâ ž" }, { "input": "gigabits", "output": "⠛⠊⠛â â ƒâ Šâ žâ Ž" }, { "input": "gigabyte", "output": "⠛⠊⠛â â ƒâ ½â žâ ‘" }, { "input": "gigabytes", "output": "⠛⠊⠛â â ƒâ ½â žâ ‘â Ž" }, { "input": "gigahertz", "output": "⠛⠊⠛â â “⠻⠞⠵" }, { "input": "gigantic", "output": "⠛⠊⠛â â â žâ Šâ ‰" }, { "input": "gigged", "output": "⠛⠊⠶⠫" }, { "input": "gigging", "output": "⠛⠊⠶⠬" }, { "input": "giggle", "output": "⠛⠊⠶⠇⠑" }, { "input": "giggled", "output": "⠛⠊⠶⠇⠫" }, { "input": "giggler", "output": "⠛⠊⠶⠇⠻" }, { "input": "gigglers", "output": "⠛⠊⠶⠇⠻⠎" }, { "input": "giggles", "output": "⠛⠊⠶⠇⠑⠎" }, { "input": "gigglier", "output": "⠛⠊⠶⠇⠊⠻" }, { "input": "giggliest", "output": "⠛⠊⠶⠇⠊⠑⠌" }, { "input": "giggling", "output": "⠛⠊⠶⠇⠬" }, { "input": "giggly", "output": "⠛⠊⠶⠇⠽" }, { "input": "gigolo", "output": "⠛⠊⠛⠕⠇⠕" }, { "input": "gigolos", "output": "⠛⠊⠛⠕⠇⠕⠎" }, { "input": "gigs", "output": "⠛⠊⠛⠎" }, { "input": "gild", "output": "⠛⠊⠇⠙" }, { "input": "gilded", "output": "⠛⠊⠇⠙⠫" }, { "input": "gilding", "output": "⠛⠊⠇⠙⠬" }, { "input": "gilds", "output": "⠛⠊⠇⠙⠎" }, { "input": "gill", "output": "⠛⠊⠇⠇" }, { "input": "gills", "output": "⠛⠊⠇⠇⠎" }, { "input": "gilt", "output": "⠛⠊⠇⠞" }, { "input": "gilts", "output": "⠛⠊⠇⠞⠎" }, { "input": "gimcrack", "output": "⠛⠊â â ‰â —â â ‰â …" }, { "input": "gimcracks", "output": "⠛⠊â â ‰â —â â ‰â …â Ž" }, { "input": "gimlet", "output": "⠛⠊â â ‡â ‘â ž" }, { "input": "gimleted", "output": "⠛⠊â â ‡â ‘â žâ «" }, { "input": "gimleting", "output": "⠛⠊â â ‡â ‘â žâ ¬" }, { "input": "gimlets", "output": "⠛⠊â â ‡â ‘â žâ Ž" }, { "input": "gimme", "output": "⠛⠊â â â ‘" }, { "input": "gimmick", "output": "⠛⠊â â â Šâ ‰â …" }, { "input": "gimmickry", "output": "⠛⠊â â â Šâ ‰â …â —â ½" }, { "input": "gimmicks", "output": "⠛⠊â â â Šâ ‰â …â Ž" }, { "input": "gimmicky", "output": "⠛⠊â â â Šâ ‰â …â ½" }, { "input": "gimpier", "output": "⠛⠊â â â Šâ »" }, { "input": "gimpiest", "output": "⠛⠊â â â Šâ ‘â Œ" }, { "input": "gimpy", "output": "⠛⠊â â â ½" }, { "input": "gin", "output": "⠛⠔" }, { "input": "ginger", "output": "⠛⠬⠻" }, { "input": "gingerbread", "output": "⠛⠬⠻⠃⠗⠂⠙" }, { "input": "gingerly", "output": "⠛⠬⠻⠇⠽" }, { "input": "gingersnap", "output": "⠛⠬⠻⠎â â â " }, { "input": "gingersnaps", "output": "⠛⠬⠻⠎â â â â Ž" }, { "input": "gingham", "output": "⠛⠬⠓â â " }, { "input": "gingivitis", "output": "⠛⠬⠊⠧⠊⠞⠊⠎" }, { "input": "gingko", "output": "⠛⠬⠅⠕" }, { "input": "gingkoes", "output": "⠛⠬⠅⠕⠑⠎" }, { "input": "gingkos", "output": "⠛⠬⠅⠕⠎" }, { "input": "ginkgo", "output": "⠛⠔⠅⠛⠕" }, { "input": "ginkgoes", "output": "⠛⠔⠅⠛⠕⠑⠎" }, { "input": "ginkgos", "output": "⠛⠔⠅⠛⠕⠎" }, { "input": "ginned", "output": "⠛⠔â â «" }, { "input": "ginning", "output": "⠛⠔â â ¬" }, { "input": "gins", "output": "⠛⠔⠎" }, { "input": "ginseng", "output": "⠛⠔⠎⠢⠛" }, { "input": "gipsies", "output": "⠛⠊â â Žâ Šâ ‘â Ž" }, { "input": "gipsy", "output": "⠛⠊â â Žâ ½" }, { "input": "giraffe", "output": "⠛⠊⠗â â –â ‘" }, { "input": "giraffes", "output": "⠛⠊⠗â â –â ‘â Ž" }, { "input": "gird", "output": "⠛⠊⠗⠙" }, { "input": "girded", "output": "⠛⠊⠗⠙⠫" }, { "input": "girder", "output": "⠛⠊⠗⠙⠻" }, { "input": "girders", "output": "⠛⠊⠗⠙⠻⠎" }, { "input": "girding", "output": "⠛⠊⠗⠙⠬" }, { "input": "girdle", "output": "⠛⠊⠗⠙⠇⠑" }, { "input": "girdled", "output": "⠛⠊⠗⠙⠇⠫" }, { "input": "girdles", "output": "⠛⠊⠗⠙⠇⠑⠎" }, { "input": "girdling", "output": "⠛⠊⠗⠙⠇⠬" }, { "input": "girds", "output": "⠛⠊⠗⠙⠎" }, { "input": "girl", "output": "⠛⠊⠗⠇" }, { "input": "girlfriend", "output": "⠛⠊⠗⠇⠋⠗" }, { "input": "girlfriends", "output": "⠛⠊⠗⠇⠋⠗⠎" }, { "input": "girlhood", "output": "⠛⠊⠗⠇⠓⠕⠕⠙" }, { "input": "girlhoods", "output": "⠛⠊⠗⠇⠓⠕⠕⠙⠎" }, { "input": "girlish", "output": "⠛⠊⠗⠇⠊⠩" }, { "input": "girlishly", "output": "⠛⠊⠗⠇⠊⠩⠇⠽" }, { "input": "girls", "output": "⠛⠊⠗⠇⠎" }, { "input": "girt", "output": "⠛⠊⠗⠞" }, { "input": "girted", "output": "⠛⠊⠗⠞⠫" }, { "input": "girth", "output": "⠛⠊⠗⠹" }, { "input": "girths", "output": "⠛⠊⠗⠹⠎" }, { "input": "girting", "output": "⠛⠊⠗⠞⠬" }, { "input": "girts", "output": "⠛⠊⠗⠞⠎" }, { "input": "gismo", "output": "⠛⠊⠎â â •" }, { "input": "gismos", "output": "⠛⠊⠎â â •â Ž" }, { "input": "gist", "output": "⠛⠊⠌" }, { "input": "give", "output": "⠛⠊⠧⠑" }, { "input": "giveaway", "output": "⠛⠊⠧⠑â â ºâ â ½" }, { "input": "giveaways", "output": "⠛⠊⠧⠑â â ºâ â ½â Ž" }, { "input": "given", "output": "⠛⠊⠧⠢" }, { "input": "givens", "output": "⠛⠊⠧⠢⠎" }, { "input": "gives", "output": "⠛⠊⠧⠑⠎" }, { "input": "giving", "output": "⠛⠊⠧⠬" }, { "input": "gizmo", "output": "⠛⠊⠵â â •" }, { "input": "gizmos", "output": "⠛⠊⠵â â •â Ž" }, { "input": "gizzard", "output": "⠛⠊⠵⠵⠜⠙" }, { "input": "gizzards", "output": "⠛⠊⠵⠵⠜⠙⠎" }, { "input": "glacial", "output": "⠛⠇â â ‰â Šâ â ‡" }, { "input": "glacially", "output": "⠛⠇â â ‰â Šâ â ‡â ‡â ½" }, { "input": "glacier", "output": "⠛⠇â â ‰â Šâ »" }, { "input": "glaciers", "output": "⠛⠇â â ‰â Šâ »â Ž" }, { "input": "glad", "output": "⠛⠇â â ™" }, { "input": "gladden", "output": "⠛⠇â â ™â ™â ¢" }, { "input": "gladdened", "output": "⠛⠇â â ™â ™â ¢â «" }, { "input": "gladdening", "output": "⠛⠇â â ™â ™â ¢â ¬" }, { "input": "gladdens", "output": "⠛⠇â â ™â ™â ¢â Ž" }, { "input": "gladder", "output": "⠛⠇â â ™â ™â »" }, { "input": "gladdest", "output": "⠛⠇â â ™â ™â ‘â Œ" }, { "input": "glade", "output": "⠛⠇â â ™â ‘" }, { "input": "glades", "output": "⠛⠇â â ™â ‘â Ž" }, { "input": "gladiator", "output": "⠛⠇â â ™â Šâ â žâ •â —" }, { "input": "gladiatorial", "output": "⠛⠇â â ™â Šâ â žâ •â —â Šâ â ‡" }, { "input": "gladiators", "output": "⠛⠇â â ™â Šâ â žâ •â —â Ž" }, { "input": "gladiola", "output": "⠛⠇â â ™â Šâ •â ‡â " }, { "input": "gladiolas", "output": "⠛⠇â â ™â Šâ •â ‡â â Ž" }, { "input": "gladioli", "output": "⠛⠇â â ™â Šâ •⠇⠊" }, { "input": "gladiolus", "output": "⠛⠇â â ™â Šâ •⠇⠥⠎" }, { "input": "gladioluses", "output": "⠛⠇â â ™â Šâ •⠇⠥⠎⠑⠎" }, { "input": "gladly", "output": "⠛⠇â â ™â ‡â ½" }, { "input": "gladness", "output": "⠛⠇â â ™â °â Ž" }, { "input": "glads", "output": "⠛⠇â â ™â Ž" }, { "input": "glamor", "output": "⠛⠇â â â •â —" }, { "input": "glamored", "output": "⠛⠇â â â •â —â «" }, { "input": "glamoring", "output": "⠛⠇â â â •â —â ¬" }, { "input": "glamorize", "output": "⠛⠇â â â •⠗⠊⠵⠑" }, { "input": "glamorized", "output": "⠛⠇â â â •⠗⠊⠵⠫" }, { "input": "glamorizes", "output": "⠛⠇â â â •⠗⠊⠵⠑⠎" }, { "input": "glamorizing", "output": "⠛⠇â â â •⠗⠊⠵⠬" }, { "input": "glamorous", "output": "⠛⠇â â â •⠗⠳⠎" }, { "input": "glamorously", "output": "⠛⠇â â â •⠗⠳⠎⠇⠽" }, { "input": "glamors", "output": "⠛⠇â â â •â —â Ž" }, { "input": "glamour", "output": "⠛⠇â â â ³â —" }, { "input": "glamoured", "output": "⠛⠇â â â ³â —â «" }, { "input": "glamouring", "output": "⠛⠇â â â ³â —â ¬" }, { "input": "glamourize", "output": "⠛⠇â â â ³â —⠊⠵⠑" }, { "input": "glamourized", "output": "⠛⠇â â â ³â —⠊⠵⠫" }, { "input": "glamourizes", "output": "⠛⠇â â â ³â —⠊⠵⠑⠎" }, { "input": "glamourizing", "output": "⠛⠇â â â ³â —⠊⠵⠬" }, { "input": "glamourous", "output": "⠛⠇â â â ³â —⠳⠎" }, { "input": "glamours", "output": "⠛⠇â â â ³â —â Ž" }, { "input": "glance", "output": "⠛⠇⠨⠑" }, { "input": "glanced", "output": "⠛⠇⠨⠑⠙" }, { "input": "glances", "output": "⠛⠇⠨⠑⠎" }, { "input": "glancing", "output": "⠛⠇â â â ‰â ¬" }, { "input": "gland", "output": "⠛⠇⠯" }, { "input": "glands", "output": "⠛⠇⠯⠎" }, { "input": "glandular", "output": "⠛⠇⠯⠥⠇⠜" }, { "input": "glare", "output": "⠛⠇⠜⠑" }, { "input": "glared", "output": "⠛⠇⠜⠫" }, { "input": "glares", "output": "⠛⠇⠜⠑⠎" }, { "input": "glaring", "output": "⠛⠇⠜⠬" }, { "input": "glaringly", "output": "⠛⠇⠜⠬⠇⠽" }, { "input": "glass", "output": "⠛⠇â â Žâ Ž" }, { "input": "glassed", "output": "⠛⠇â â Žâ Žâ «" }, { "input": "glasses", "output": "⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "glassful", "output": "⠛⠇â â Žâ Žâ °â ‡" }, { "input": "glassfuls", "output": "⠛⠇â â Žâ Žâ °â ‡â Ž" }, { "input": "glassier", "output": "⠛⠇â â Žâ Žâ Šâ »" }, { "input": "glassiest", "output": "⠛⠇â â Žâ Žâ Šâ ‘â Œ" }, { "input": "glassing", "output": "⠛⠇â â Žâ Žâ ¬" }, { "input": "glassware", "output": "⠛⠇â â Žâ Žâ ºâ œâ ‘" }, { "input": "glassy", "output": "⠛⠇â â Žâ Žâ ½" }, { "input": "glaucoma", "output": "⠛⠇â â ¥â ‰â •â â " }, { "input": "glaze", "output": "⠛⠇â â µâ ‘" }, { "input": "glazed", "output": "⠛⠇â â µâ «" }, { "input": "glazes", "output": "⠛⠇â â µâ ‘â Ž" }, { "input": "glazier", "output": "⠛⠇â â µâ Šâ »" }, { "input": "glaziers", "output": "⠛⠇â â µâ Šâ »â Ž" }, { "input": "glazing", "output": "⠛⠇â â µâ ¬" }, { "input": "gleam", "output": "⠛⠇⠂â " }, { "input": "gleamed", "output": "⠛⠇⠂â â «" }, { "input": "gleaming", "output": "⠛⠇⠂â â ¬" }, { "input": "gleamings", "output": "⠛⠇⠂â â ¬â Ž" }, { "input": "gleams", "output": "⠛⠇⠂â â Ž" }, { "input": "glean", "output": "⠛⠇⠂â " }, { "input": "gleaned", "output": "⠛⠇⠂â â «" }, { "input": "gleaning", "output": "⠛⠇⠂â â ¬" }, { "input": "gleans", "output": "⠛⠇⠂â â Ž" }, { "input": "glee", "output": "⠛⠇⠑⠑" }, { "input": "gleeful", "output": "⠛⠇⠑⠑⠰⠇" }, { "input": "gleefully", "output": "⠛⠇⠑⠑⠰⠇⠇⠽" }, { "input": "glen", "output": "⠛⠇⠢" }, { "input": "glens", "output": "⠛⠇⠢⠎" }, { "input": "glib", "output": "⠛⠇⠊⠃" }, { "input": "glibber", "output": "⠛⠇⠊⠆⠻" }, { "input": "glibbest", "output": "⠛⠇⠊⠆⠑⠌" }, { "input": "glibly", "output": "⠛⠇⠊⠃⠇⠽" }, { "input": "glibness", "output": "⠛⠇⠊⠃⠰⠎" }, { "input": "glide", "output": "⠛⠇⠊⠙⠑" }, { "input": "glided", "output": "⠛⠇⠊⠙⠫" }, { "input": "glider", "output": "⠛⠇⠊⠙⠻" }, { "input": "gliders", "output": "⠛⠇⠊⠙⠻⠎" }, { "input": "glides", "output": "⠛⠇⠊⠙⠑⠎" }, { "input": "gliding", "output": "⠛⠇⠊⠙⠬" }, { "input": "glimmer", "output": "⠛⠇⠊â â â »" }, { "input": "glimmered", "output": "⠛⠇⠊â â â »â «" }, { "input": "glimmering", "output": "⠛⠇⠊â â â »â ¬" }, { "input": "glimmerings", "output": "⠛⠇⠊â â â »â ¬â Ž" }, { "input": "glimmers", "output": "⠛⠇⠊â â â »â Ž" }, { "input": "glimpse", "output": "⠛⠇⠊â â â Žâ ‘" }, { "input": "glimpsed", "output": "⠛⠇⠊â â â Žâ «" }, { "input": "glimpses", "output": "⠛⠇⠊â â â Žâ ‘â Ž" }, { "input": "glimpsing", "output": "⠛⠇⠊â â â Žâ ¬" }, { "input": "glint", "output": "⠛⠇⠔⠞" }, { "input": "glinted", "output": "⠛⠇⠔⠞⠫" }, { "input": "glinting", "output": "⠛⠇⠔⠞⠬" }, { "input": "glints", "output": "⠛⠇⠔⠞⠎" }, { "input": "glissandi", "output": "⠛⠇⠊⠎⠎⠯⠊" }, { "input": "glissando", "output": "⠛⠇⠊⠎⠎⠯⠕" }, { "input": "glissandos", "output": "⠛⠇⠊⠎⠎⠯⠕⠎" }, { "input": "glisten", "output": "⠛⠇⠊⠌⠢" }, { "input": "glistened", "output": "⠛⠇⠊⠌⠢⠫" }, { "input": "glistening", "output": "⠛⠇⠊⠌⠢⠬" }, { "input": "glistens", "output": "⠛⠇⠊⠌⠢⠎" }, { "input": "glitch", "output": "⠛⠇⠊⠞⠡" }, { "input": "glitches", "output": "⠛⠇⠊⠞⠡⠑⠎" }, { "input": "glitter", "output": "⠛⠇⠊⠞⠞⠻" }, { "input": "glittered", "output": "⠛⠇⠊⠞⠞⠻⠫" }, { "input": "glittering", "output": "⠛⠇⠊⠞⠞⠻⠬" }, { "input": "glitters", "output": "⠛⠇⠊⠞⠞⠻⠎" }, { "input": "glittery", "output": "⠛⠇⠊⠞⠞⠻⠽" }, { "input": "glitz", "output": "⠛⠇⠊⠞⠵" }, { "input": "glitzier", "output": "⠛⠇⠊⠞⠵⠊⠻" }, { "input": "glitziest", "output": "⠛⠇⠊⠞⠵⠊⠑⠌" }, { "input": "glitzy", "output": "⠛⠇⠊⠞⠵⠽" }, { "input": "gloaming", "output": "⠛⠇⠕â â â ¬" }, { "input": "gloamings", "output": "⠛⠇⠕â â â ¬â Ž" }, { "input": "gloat", "output": "⠛⠇⠕â â ž" }, { "input": "gloated", "output": "⠛⠇⠕â â žâ «" }, { "input": "gloating", "output": "⠛⠇⠕â â žâ ¬" }, { "input": "gloats", "output": "⠛⠇⠕â â žâ Ž" }, { "input": "glob", "output": "⠛⠇⠕⠃" }, { "input": "global", "output": "⠛⠇⠕⠃â â ‡" }, { "input": "globally", "output": "⠛⠇⠕⠃â â ‡â ‡â ½" }, { "input": "globe", "output": "⠛⠇⠕⠃⠑" }, { "input": "globes", "output": "⠛⠇⠕⠃⠑⠎" }, { "input": "globetrotter", "output": "⠛⠇⠕⠃⠑⠞⠗⠕⠞⠞⠻" }, { "input": "globetrotters", "output": "⠛⠇⠕⠃⠑⠞⠗⠕⠞⠞⠻⠎" }, { "input": "globs", "output": "⠛⠇⠕⠃⠎" }, { "input": "globular", "output": "⠛⠇⠕⠃⠥⠇⠜" }, { "input": "globule", "output": "⠛⠇⠕⠃⠥⠇⠑" }, { "input": "globules", "output": "⠛⠇⠕⠃⠥⠇⠑⠎" }, { "input": "glockenspiel", "output": "⠛⠇⠕⠉⠅⠢⠎â â Šâ ‘â ‡" }, { "input": "glockenspiels", "output": "⠛⠇⠕⠉⠅⠢⠎â â Šâ ‘⠇⠎" }, { "input": "gloom", "output": "⠛⠇⠕⠕â " }, { "input": "gloomier", "output": "⠛⠇⠕⠕â â Šâ »" }, { "input": "gloomiest", "output": "⠛⠇⠕⠕â â Šâ ‘â Œ" }, { "input": "gloomily", "output": "⠛⠇⠕⠕â â Šâ ‡â ½" }, { "input": "gloominess", "output": "⠛⠇⠕⠕â â Šâ °â Ž" }, { "input": "gloomy", "output": "⠛⠇⠕⠕â â ½" }, { "input": "glop", "output": "⠛⠇⠕â " }, { "input": "gloried", "output": "⠛⠇⠕⠗⠊⠫" }, { "input": "glories", "output": "⠛⠇⠕⠗⠊⠑⠎" }, { "input": "glorification", "output": "⠛⠇⠕⠗⠊⠋⠊⠉â â °â " }, { "input": "glorified", "output": "⠛⠇⠕⠗⠊⠋⠊⠫" }, { "input": "glorifies", "output": "⠛⠇⠕⠗⠊⠋⠊⠑⠎" }, { "input": "glorify", "output": "⠛⠇⠕⠗⠊⠋⠽" }, { "input": "glorifying", "output": "⠛⠇⠕⠗⠊⠋⠽⠬" }, { "input": "glorious", "output": "⠛⠇⠕⠗⠊⠳⠎" }, { "input": "gloriously", "output": "⠛⠇⠕⠗⠊⠳⠎⠇⠽" }, { "input": "glory", "output": "⠛⠇⠕⠗⠽" }, { "input": "glorying", "output": "⠛⠇⠕⠗⠽⠬" }, { "input": "gloss", "output": "⠛⠇⠕⠎⠎" }, { "input": "glossaries", "output": "⠛⠇⠕⠎⠎⠜⠊⠑⠎" }, { "input": "glossary", "output": "⠛⠇⠕⠎⠎⠜⠽" }, { "input": "glossed", "output": "⠛⠇⠕⠎⠎⠫" }, { "input": "glosses", "output": "⠛⠇⠕⠎⠎⠑⠎" }, { "input": "glossier", "output": "⠛⠇⠕⠎⠎⠊⠻" }, { "input": "glossies", "output": "⠛⠇⠕⠎⠎⠊⠑⠎" }, { "input": "glossiest", "output": "⠛⠇⠕⠎⠎⠊⠑⠌" }, { "input": "glossiness", "output": "⠛⠇⠕⠎⠎⠊⠰⠎" }, { "input": "glossing", "output": "⠛⠇⠕⠎⠎⠬" }, { "input": "glossy", "output": "⠛⠇⠕⠎⠎⠽" }, { "input": "glottides", "output": "⠛⠇⠕⠞⠞⠊⠙⠑⠎" }, { "input": "glottis", "output": "⠛⠇⠕⠞⠞⠊⠎" }, { "input": "glottises", "output": "⠛⠇⠕⠞⠞⠊⠎⠑⠎" }, { "input": "glove", "output": "⠛⠇⠕⠧⠑" }, { "input": "gloved", "output": "⠛⠇⠕⠧⠫" }, { "input": "gloves", "output": "⠛⠇⠕⠧⠑⠎" }, { "input": "gloving", "output": "⠛⠇⠕⠧⠬" }, { "input": "glow", "output": "⠛⠇⠪" }, { "input": "glowed", "output": "⠛⠇⠪⠫" }, { "input": "glower", "output": "⠛⠇⠪⠻" }, { "input": "glowered", "output": "⠛⠇⠪⠻⠫" }, { "input": "glowering", "output": "⠛⠇⠪⠻⠬" }, { "input": "glowers", "output": "⠛⠇⠪⠻⠎" }, { "input": "glowing", "output": "⠛⠇⠪⠬" }, { "input": "glowingly", "output": "⠛⠇⠪⠬⠇⠽" }, { "input": "glows", "output": "⠛⠇⠪⠎" }, { "input": "glowworm", "output": "⠛⠇⠪⠺⠕⠗â " }, { "input": "glowworms", "output": "⠛⠇⠪⠺⠕⠗â â Ž" }, { "input": "glucose", "output": "⠛⠇⠥⠉⠕⠎⠑" }, { "input": "glue", "output": "⠛⠇⠥⠑" }, { "input": "glued", "output": "⠛⠇⠥⠫" }, { "input": "glueing", "output": "⠛⠇⠥⠑⠬" }, { "input": "glues", "output": "⠛⠇⠥⠑⠎" }, { "input": "gluey", "output": "⠛⠇⠥⠑⠽" }, { "input": "gluier", "output": "⠛⠇⠥⠊⠻" }, { "input": "gluiest", "output": "⠛⠇⠥⠊⠑⠌" }, { "input": "gluing", "output": "⠛⠇⠥⠬" }, { "input": "glum", "output": "⠛⠇⠥â " }, { "input": "glumly", "output": "⠛⠇⠥â â ‡â ½" }, { "input": "glummer", "output": "⠛⠇⠥â â â »" }, { "input": "glummest", "output": "⠛⠇⠥â â â ‘â Œ" }, { "input": "glumness", "output": "⠛⠇⠥â â °â Ž" }, { "input": "glut", "output": "⠛⠇⠥⠞" }, { "input": "gluten", "output": "⠛⠇⠥⠞⠢" }, { "input": "glutinous", "output": "⠛⠇⠥⠞⠔⠳⠎" }, { "input": "gluts", "output": "⠛⠇⠥⠞⠎" }, { "input": "glutted", "output": "⠛⠇⠥⠞⠞⠫" }, { "input": "glutting", "output": "⠛⠇⠥⠞⠞⠬" }, { "input": "glutton", "output": "⠛⠇⠥⠞⠞⠕â " }, { "input": "gluttonous", "output": "⠛⠇⠥⠞⠞⠕â â ³â Ž" }, { "input": "gluttonously", "output": "⠛⠇⠥⠞⠞⠕â â ³â Žâ ‡â ½" }, { "input": "gluttons", "output": "⠛⠇⠥⠞⠞⠕â â Ž" }, { "input": "gluttony", "output": "⠛⠇⠥⠞⠞⠕â â ½" }, { "input": "glycerin", "output": "⠛⠇⠽⠉⠻⠔" }, { "input": "glycerine", "output": "⠛⠇⠽⠉⠻⠔⠑" }, { "input": "glycerol", "output": "⠛⠇⠽⠉⠻⠕⠇" }, { "input": "glycogen", "output": "⠛⠇⠽⠉⠕⠛⠢" }, { "input": "glyph", "output": "⠛⠇⠽â â “" }, { "input": "gnarl", "output": "â ›â â œâ ‡" }, { "input": "gnarled", "output": "â ›â â œâ ‡â «" }, { "input": "gnarlier", "output": "â ›â â œâ ‡â Šâ »" }, { "input": "gnarliest", "output": "â ›â â œâ ‡â Šâ ‘â Œ" }, { "input": "gnarling", "output": "â ›â â œâ ‡â ¬" }, { "input": "gnarls", "output": "â ›â â œâ ‡â Ž" }, { "input": "gnarly", "output": "â ›â â œâ ‡â ½" }, { "input": "gnash", "output": "â ›â â â ©" }, { "input": "gnashed", "output": "â ›â â â ©â «" }, { "input": "gnashes", "output": "â ›â â â ©â ‘â Ž" }, { "input": "gnashing", "output": "â ›â â â ©â ¬" }, { "input": "gnat", "output": "â ›â â â ž" }, { "input": "gnats", "output": "â ›â â â žâ Ž" }, { "input": "gnaw", "output": "â ›â â â º" }, { "input": "gnawed", "output": "â ›â â â ºâ «" }, { "input": "gnawing", "output": "â ›â â â ºâ ¬" }, { "input": "gnawn", "output": "â ›â â â ºâ " }, { "input": "gnaws", "output": "â ›â â â ºâ Ž" }, { "input": "gneiss", "output": "â ›â â ‘â Šâ Žâ Ž" }, { "input": "gnome", "output": "â ›â â •â â ‘" }, { "input": "gnomes", "output": "â ›â â •â â ‘â Ž" }, { "input": "gnomish", "output": "â ›â â •â â Šâ ©" }, { "input": "gnu", "output": "â ›â â ¥" }, { "input": "gnus", "output": "â ›â â ¥â Ž" }, { "input": "go", "output": "â ›" }, { "input": "goad", "output": "⠛⠕â â ™" }, { "input": "goaded", "output": "⠛⠕â â ™â «" }, { "input": "goading", "output": "⠛⠕â â ™â ¬" }, { "input": "goads", "output": "⠛⠕â â ™â Ž" }, { "input": "goal", "output": "⠛⠕â â ‡" }, { "input": "goalie", "output": "⠛⠕â â ‡â Šâ ‘" }, { "input": "goalies", "output": "⠛⠕â â ‡â Šâ ‘â Ž" }, { "input": "goalkeeper", "output": "⠛⠕â â ‡â …â ‘â ‘â â »" }, { "input": "goalkeepers", "output": "⠛⠕â â ‡â …â ‘â ‘â â »â Ž" }, { "input": "goalpost", "output": "⠛⠕â â ‡â â •â Œ" }, { "input": "goalposts", "output": "⠛⠕â â ‡â â •⠌⠎" }, { "input": "goals", "output": "⠛⠕â â ‡â Ž" }, { "input": "goaltender", "output": "⠛⠕â â ‡â žâ ¢â ™â »" }, { "input": "goaltenders", "output": "⠛⠕â â ‡â žâ ¢â ™â »â Ž" }, { "input": "goat", "output": "⠛⠕â â ž" }, { "input": "goatee", "output": "⠛⠕â â žâ ‘â ‘" }, { "input": "goatees", "output": "⠛⠕â â žâ ‘â ‘â Ž" }, { "input": "goatherd", "output": "⠛⠕â â žâ “⠻⠙" }, { "input": "goatherds", "output": "⠛⠕â â žâ “⠻⠙⠎" }, { "input": "goats", "output": "⠛⠕â â žâ Ž" }, { "input": "goatskin", "output": "⠛⠕â â žâ Žâ …â ”" }, { "input": "goatskins", "output": "⠛⠕â â žâ Žâ …⠔⠎" }, { "input": "gob", "output": "⠛⠕⠃" }, { "input": "gobbed", "output": "⠛⠕⠆⠫" }, { "input": "gobbing", "output": "⠛⠕⠆⠬" }, { "input": "gobble", "output": "⠛⠕⠆⠇⠑" }, { "input": "gobbled", "output": "⠛⠕⠆⠇⠫" }, { "input": "gobbledegook", "output": "⠛⠕⠆⠇⠫⠑⠛⠕⠕⠅" }, { "input": "gobbledygook", "output": "⠛⠕⠆⠇⠫⠽⠛⠕⠕⠅" }, { "input": "gobbler", "output": "⠛⠕⠆⠇⠻" }, { "input": "gobblers", "output": "⠛⠕⠆⠇⠻⠎" }, { "input": "gobbles", "output": "⠛⠕⠆⠇⠑⠎" }, { "input": "gobbling", "output": "⠛⠕⠆⠇⠬" }, { "input": "goblet", "output": "⠛⠕⠃⠇⠑⠞" }, { "input": "goblets", "output": "⠛⠕⠃⠇⠑⠞⠎" }, { "input": "goblin", "output": "⠛⠕⠃⠇⠔" }, { "input": "goblins", "output": "⠛⠕⠃⠇⠔⠎" }, { "input": "gobs", "output": "⠛⠕⠃⠎" }, { "input": "god", "output": "⠛⠕⠙" }, { "input": "godchild", "output": "⠛⠕⠙⠡⠊⠇⠙" }, { "input": "godchildren", "output": "⠛⠕⠙⠡â " }, { "input": "goddam", "output": "⠛⠕⠙⠙â â " }, { "input": "goddamed", "output": "⠛⠕⠙⠙â â â «" }, { "input": "goddamn", "output": "⠛⠕⠙⠙â â â " }, { "input": "goddamned", "output": "⠛⠕⠙⠙â â â â «" }, { "input": "goddaughter", "output": "⠛⠕⠙⠙â â ¥â £â žâ »" }, { "input": "goddaughters", "output": "⠛⠕⠙⠙â â ¥â £â žâ »â Ž" }, { "input": "goddess", "output": "⠛⠕⠙⠙⠑⠎⠎" }, { "input": "goddesses", "output": "⠛⠕⠙⠙⠑⠎⠎⠑⠎" }, { "input": "godfather", "output": "⠛⠕⠙â â ‹" }, { "input": "godfathers", "output": "⠛⠕⠙â â ‹â Ž" }, { "input": "godforsaken", "output": "⠛⠕⠙⠿⠎â â …â ¢" }, { "input": "godhood", "output": "⠛⠕⠙⠓⠕⠕⠙" }, { "input": "godless", "output": "⠛⠕⠙⠨⠎" }, { "input": "godlier", "output": "⠛⠕⠙⠇⠊⠻" }, { "input": "godliest", "output": "⠛⠕⠙⠇⠊⠑⠌" }, { "input": "godlike", "output": "⠛⠕⠙⠇⠊⠅⠑" }, { "input": "godliness", "output": "⠛⠕⠙⠇⠊⠰⠎" }, { "input": "godly", "output": "⠛⠕⠙⠇⠽" }, { "input": "godmother", "output": "⠛⠕⠙â â " }, { "input": "godmothers", "output": "⠛⠕⠙â â â Ž" }, { "input": "godparent", "output": "⠛⠕⠙â â œâ ¢â ž" }, { "input": "godparents", "output": "⠛⠕⠙â â œâ ¢â žâ Ž" }, { "input": "gods", "output": "⠛⠕⠙⠎" }, { "input": "godsend", "output": "⠛⠕⠙⠎⠢⠙" }, { "input": "godsends", "output": "⠛⠕⠙⠎⠢⠙⠎" }, { "input": "godson", "output": "⠛⠕⠙⠎⠕â " }, { "input": "godsons", "output": "⠛⠕⠙⠎⠕â â Ž" }, { "input": "goes", "output": "⠛⠕⠑⠎" }, { "input": "gofer", "output": "⠛⠷⠻" }, { "input": "gofers", "output": "⠛⠷⠻⠎" }, { "input": "goggle", "output": "⠛⠕⠶⠇⠑" }, { "input": "goggled", "output": "⠛⠕⠶⠇⠫" }, { "input": "goggles", "output": "⠛⠕⠶⠇⠑⠎" }, { "input": "goggling", "output": "⠛⠕⠶⠇⠬" }, { "input": "going", "output": "⠛⠕⠬" }, { "input": "goings", "output": "⠛⠕⠬⠎" }, { "input": "goiter", "output": "⠛⠕⠊⠞⠻" }, { "input": "goiters", "output": "⠛⠕⠊⠞⠻⠎" }, { "input": "goitre", "output": "⠛⠕⠊⠞⠗⠑" }, { "input": "goitres", "output": "⠛⠕⠊⠞⠗⠑⠎" }, { "input": "gold", "output": "⠛⠕⠇⠙" }, { "input": "goldbrick", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅" }, { "input": "goldbricked", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠫" }, { "input": "goldbricking", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠬" }, { "input": "goldbricks", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠎" }, { "input": "golden", "output": "⠛⠕⠇⠙⠢" }, { "input": "goldener", "output": "⠛⠕⠇⠙⠢⠻" }, { "input": "goldenest", "output": "⠛⠕⠇⠙⠢⠑⠌" }, { "input": "goldenrod", "output": "⠛⠕⠇⠙⠢⠗⠕⠙" }, { "input": "goldfinch", "output": "⠛⠕⠇⠙⠋⠔⠡" }, { "input": "goldfinches", "output": "⠛⠕⠇⠙⠋⠔⠡⠑⠎" }, { "input": "goldfish", "output": "⠛⠕⠇⠙⠋⠊⠩" }, { "input": "goldfishes", "output": "⠛⠕⠇⠙⠋⠊⠩⠑⠎" }, { "input": "golds", "output": "⠛⠕⠇⠙⠎" }, { "input": "goldsmith", "output": "⠛⠕⠇⠙⠎â â Šâ ¹" }, { "input": "goldsmiths", "output": "⠛⠕⠇⠙⠎â â Šâ ¹â Ž" }, { "input": "golf", "output": "⠛⠕⠇⠋" }, { "input": "golfed", "output": "⠛⠕⠇⠋⠫" }, { "input": "golfer", "output": "⠛⠕⠇⠋⠻" }, { "input": "golfers", "output": "⠛⠕⠇⠋⠻⠎" }, { "input": "golfing", "output": "⠛⠕⠇⠋⠬" }, { "input": "golfs", "output": "⠛⠕⠇⠋⠎" }, { "input": "gollies", "output": "⠛⠕⠇⠇⠊⠑⠎" }, { "input": "golly", "output": "⠛⠕⠇⠇⠽" }, { "input": "gonad", "output": "⠛⠕â â â ™" }, { "input": "gonads", "output": "⠛⠕â â â ™â Ž" }, { "input": "gondola", "output": "⠛⠕â â ™â •â ‡â " }, { "input": "gondolas", "output": "⠛⠕â â ™â •â ‡â â Ž" }, { "input": "gondolier", "output": "⠛⠕â â ™â •⠇⠊⠻" }, { "input": "gondoliers", "output": "⠛⠕â â ™â •⠇⠊⠻⠎" }, { "input": "gone", "output": "â ›â â •" }, { "input": "goner", "output": "⠛⠕â â »" }, { "input": "goners", "output": "⠛⠕â â »â Ž" }, { "input": "gong", "output": "⠛⠰⠛" }, { "input": "gonged", "output": "⠛⠰⠛⠫" }, { "input": "gonging", "output": "⠛⠰⠛⠬" }, { "input": "gongs", "output": "⠛⠰⠛⠎" }, { "input": "gonna", "output": "⠛⠕â â â " }, { "input": "gonorrhea", "output": "⠛⠕â â •â —â —â “â ‘â " }, { "input": "gonorrhoea", "output": "⠛⠕â â •â —â —â “â •â ‘â " }, { "input": "goo", "output": "⠛⠕⠕" }, { "input": "goober", "output": "⠛⠕⠕⠃⠻" }, { "input": "goobers", "output": "⠛⠕⠕⠃⠻⠎" }, { "input": "good", "output": "⠛⠙" }, { "input": "goodby", "output": "⠛⠙⠃⠽" }, { "input": "goodbye", "output": "⠛⠙⠃⠽⠑" }, { "input": "goodbyes", "output": "⠛⠙⠃⠽⠑⠎" }, { "input": "goodbys", "output": "⠛⠙⠃⠽⠎" }, { "input": "goodie", "output": "⠛⠙⠊⠑" }, { "input": "goodies", "output": "⠛⠙⠊⠑⠎" }, { "input": "goodlier", "output": "⠛⠙⠇⠊⠻" }, { "input": "goodliest", "output": "⠛⠙⠇⠊⠑⠌" }, { "input": "goodly", "output": "⠛⠙⠇⠽" }, { "input": "goodness", "output": "⠛⠙⠰⠎" }, { "input": "goodnight", "output": "⠛⠙â â Šâ £â ž" }, { "input": "goods", "output": "⠛⠙⠎" }, { "input": "goodwill", "output": "⠛⠙⠺⠊⠇⠇" }, { "input": "goody", "output": "⠛⠙⠽" }, { "input": "gooey", "output": "⠛⠕⠕⠑⠽" }, { "input": "goof", "output": "⠛⠕⠷" }, { "input": "goofed", "output": "⠛⠕⠷⠫" }, { "input": "goofier", "output": "⠛⠕⠷⠊⠻" }, { "input": "goofiest", "output": "⠛⠕⠷⠊⠑⠌" }, { "input": "goofing", "output": "⠛⠕⠷⠬" }, { "input": "goofs", "output": "⠛⠕⠷⠎" }, { "input": "goofy", "output": "⠛⠕⠷⠽" }, { "input": "gooier", "output": "⠛⠕⠕⠊⠻" }, { "input": "gooiest", "output": "⠛⠕⠕⠊⠑⠌" }, { "input": "gook", "output": "⠛⠕⠕⠅" }, { "input": "gooks", "output": "⠛⠕⠕⠅⠎" }, { "input": "goon", "output": "⠛⠕⠕â " }, { "input": "goons", "output": "⠛⠕⠕â â Ž" }, { "input": "goop", "output": "⠛⠕⠕â " }, { "input": "goose", "output": "⠛⠕⠕⠎⠑" }, { "input": "gooseberries", "output": "⠛⠕⠕⠎⠑⠃⠻⠗⠊⠑⠎" }, { "input": "gooseberry", "output": "⠛⠕⠕⠎⠑⠃⠻⠗⠽" }, { "input": "goosed", "output": "⠛⠕⠕⠎⠫" }, { "input": "gooses", "output": "⠛⠕⠕⠎⠑⠎" }, { "input": "goosing", "output": "⠛⠕⠕⠎⠬" }, { "input": "gopher", "output": "⠛⠕â â “â »" }, { "input": "gophers", "output": "⠛⠕â â “⠻⠎" }, { "input": "gore", "output": "⠛⠕⠗⠑" }, { "input": "gored", "output": "⠛⠕⠗⠫" }, { "input": "gores", "output": "⠛⠕⠗⠑⠎" }, { "input": "gorge", "output": "⠛⠕⠗⠛⠑" }, { "input": "gorged", "output": "⠛⠕⠗⠛⠫" }, { "input": "gorgeous", "output": "⠛⠕⠗⠛⠑⠳⠎" }, { "input": "gorgeously", "output": "⠛⠕⠗⠛⠑⠳⠎⠇⠽" }, { "input": "gorges", "output": "⠛⠕⠗⠛⠑⠎" }, { "input": "gorging", "output": "⠛⠕⠗⠛⠬" }, { "input": "gorier", "output": "⠛⠕⠗⠊⠻" }, { "input": "goriest", "output": "⠛⠕⠗⠊⠑⠌" }, { "input": "gorilla", "output": "⠛⠕⠗⠊⠇⠇â " }, { "input": "gorillas", "output": "⠛⠕⠗⠊⠇⠇â â Ž" }, { "input": "goriness", "output": "⠛⠕⠗⠊⠰⠎" }, { "input": "goring", "output": "⠛⠕⠗⠬" }, { "input": "gorse", "output": "⠛⠕⠗⠎⠑" }, { "input": "gory", "output": "⠛⠕⠗⠽" }, { "input": "gosh", "output": "⠛⠕⠩" }, { "input": "gosling", "output": "⠛⠕⠎⠇⠬" }, { "input": "goslings", "output": "⠛⠕⠎⠇⠬⠎" }, { "input": "gospel", "output": "⠛⠕⠎â â ‘â ‡" }, { "input": "gospels", "output": "⠛⠕⠎â â ‘⠇⠎" }, { "input": "gossamer", "output": "⠛⠕⠎⠎â â â »" }, { "input": "gossip", "output": "⠛⠕⠎⠎⠊â " }, { "input": "gossiped", "output": "⠛⠕⠎⠎⠊â â «" }, { "input": "gossiping", "output": "⠛⠕⠎⠎⠊â â ¬" }, { "input": "gossipped", "output": "⠛⠕⠎⠎⠊â â â «" }, { "input": "gossipping", "output": "⠛⠕⠎⠎⠊â â â ¬" }, { "input": "gossips", "output": "⠛⠕⠎⠎⠊â â Ž" }, { "input": "gossipy", "output": "⠛⠕⠎⠎⠊â â ½" }, { "input": "got", "output": "⠛⠕⠞" }, { "input": "gotta", "output": "⠛⠕⠞⠞â " }, { "input": "gotten", "output": "⠛⠕⠞⠞⠢" }, { "input": "gouge", "output": "⠛⠳⠛⠑" }, { "input": "gouged", "output": "⠛⠳⠛⠫" }, { "input": "gouger", "output": "⠛⠳⠛⠻" }, { "input": "gougers", "output": "⠛⠳⠛⠻⠎" }, { "input": "gouges", "output": "⠛⠳⠛⠑⠎" }, { "input": "gouging", "output": "⠛⠳⠛⠬" }, { "input": "goulash", "output": "⠛⠳⠇â â ©" }, { "input": "goulashes", "output": "⠛⠳⠇â â ©â ‘â Ž" }, { "input": "gourd", "output": "⠛⠳⠗⠙" }, { "input": "gourds", "output": "⠛⠳⠗⠙⠎" }, { "input": "gourmand", "output": "⠛⠳⠗â â ¯" }, { "input": "gourmands", "output": "⠛⠳⠗â â ¯â Ž" }, { "input": "gourmet", "output": "⠛⠳⠗â â ‘â ž" }, { "input": "gourmets", "output": "⠛⠳⠗â â ‘â žâ Ž" }, { "input": "gout", "output": "⠛⠳⠞" }, { "input": "goutier", "output": "⠛⠳⠞⠊⠻" }, { "input": "goutiest", "output": "⠛⠳⠞⠊⠑⠌" }, { "input": "gouty", "output": "⠛⠳⠞⠽" }, { "input": "govern", "output": "⠛⠕⠧⠻â " }, { "input": "governable", "output": "⠛⠕⠧⠻â â â ƒâ ‡â ‘" }, { "input": "governance", "output": "⠛⠕⠧⠻â â ¨â ‘" }, { "input": "governed", "output": "⠛⠕⠧⠻â â «" }, { "input": "governess", "output": "⠛⠕⠧⠻⠰⠎" }, { "input": "governesses", "output": "⠛⠕⠧⠻⠰⠎⠑⠎" }, { "input": "governing", "output": "⠛⠕⠧⠻â â ¬" }, { "input": "government", "output": "⠛⠕⠧⠻â â °â ž" }, { "input": "governmental", "output": "⠛⠕⠧⠻â â °â žâ â ‡" }, { "input": "governments", "output": "⠛⠕⠧⠻â â °â žâ Ž" }, { "input": "governor", "output": "⠛⠕⠧⠻â â •â —" }, { "input": "governors", "output": "⠛⠕⠧⠻â â •â —â Ž" }, { "input": "governorship", "output": "⠛⠕⠧⠻â â •â —â ©â Šâ " }, { "input": "governs", "output": "⠛⠕⠧⠻â â Ž" }, { "input": "gown", "output": "⠛⠪â " }, { "input": "gowned", "output": "⠛⠪â â «" }, { "input": "gowning", "output": "⠛⠪â â ¬" }, { "input": "gowns", "output": "⠛⠪â â Ž" }, { "input": "grab", "output": "⠛⠗â â ƒ" }, { "input": "grabbed", "output": "⠛⠗â â †â «" }, { "input": "grabber", "output": "⠛⠗â â †â »" }, { "input": "grabbing", "output": "⠛⠗â â †â ¬" }, { "input": "grabs", "output": "⠛⠗â â ƒâ Ž" }, { "input": "grace", "output": "⠛⠗â â ‰â ‘" }, { "input": "graced", "output": "⠛⠗â â ‰â «" }, { "input": "graceful", "output": "⠛⠗â â ‰â ‘â °â ‡" }, { "input": "gracefully", "output": "⠛⠗â â ‰â ‘⠰⠇⠇⠽" }, { "input": "gracefulness", "output": "⠛⠗â â ‰â ‘⠰⠇⠰⠎" }, { "input": "graceless", "output": "⠛⠗â â ‰â ‘⠨⠎" }, { "input": "gracelessly", "output": "⠛⠗â â ‰â ‘⠨⠎⠇⠽" }, { "input": "gracelessness", "output": "⠛⠗â â ‰â ‘⠨⠎⠰⠎" }, { "input": "graces", "output": "⠛⠗â â ‰â ‘â Ž" }, { "input": "gracing", "output": "⠛⠗â â ‰â ¬" }, { "input": "gracious", "output": "⠛⠗â â ‰â Šâ ³â Ž" }, { "input": "graciously", "output": "⠛⠗â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "graciousness", "output": "⠛⠗â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "grackle", "output": "⠛⠗â â ‰â …⠇⠑" }, { "input": "grackles", "output": "⠛⠗â â ‰â …⠇⠑⠎" }, { "input": "grad", "output": "⠛⠗â â ™" }, { "input": "gradation", "output": "⠛⠗â â ™â â °â " }, { "input": "gradations", "output": "⠛⠗â â ™â â °â â Ž" }, { "input": "grade", "output": "⠛⠗â â ™â ‘" }, { "input": "graded", "output": "⠛⠗â â ™â «" }, { "input": "grader", "output": "⠛⠗â â ™â »" }, { "input": "graders", "output": "⠛⠗â â ™â »â Ž" }, { "input": "grades", "output": "⠛⠗â â ™â ‘â Ž" }, { "input": "gradient", "output": "⠛⠗â â ™â Šâ ¢â ž" }, { "input": "gradients", "output": "⠛⠗â â ™â Šâ ¢â žâ Ž" }, { "input": "grading", "output": "⠛⠗â â ™â ¬" }, { "input": "grads", "output": "⠛⠗â â ™â Ž" }, { "input": "gradual", "output": "⠛⠗â â ™â ¥â â ‡" }, { "input": "gradually", "output": "⠛⠗â â ™â ¥â â ‡â ‡â ½" }, { "input": "graduate", "output": "⠛⠗â â ™â ¥â â žâ ‘" }, { "input": "graduated", "output": "⠛⠗â â ™â ¥â â žâ «" }, { "input": "graduates", "output": "⠛⠗â â ™â ¥â â žâ ‘â Ž" }, { "input": "graduating", "output": "⠛⠗â â ™â ¥â â žâ ¬" }, { "input": "graduation", "output": "⠛⠗â â ™â ¥â â °â " }, { "input": "graduations", "output": "⠛⠗â â ™â ¥â â °â â Ž" }, { "input": "graffiti", "output": "⠛⠗â â –â Šâ žâ Š" }, { "input": "graffito", "output": "⠛⠗â â –â Šâ žâ •" }, { "input": "graft", "output": "⠛⠗â â ‹â ž" }, { "input": "grafted", "output": "⠛⠗â â ‹â žâ «" }, { "input": "grafter", "output": "⠛⠗â â ‹â žâ »" }, { "input": "grafters", "output": "⠛⠗â â ‹â žâ »â Ž" }, { "input": "grafting", "output": "⠛⠗â â ‹â žâ ¬" }, { "input": "grafts", "output": "⠛⠗â â ‹â žâ Ž" }, { "input": "grail", "output": "⠛⠗â â Šâ ‡" }, { "input": "grain", "output": "⠛⠗â â ”" }, { "input": "grainier", "output": "⠛⠗â â ”â Šâ »" }, { "input": "grainiest", "output": "⠛⠗â â ”â Šâ ‘â Œ" }, { "input": "grains", "output": "⠛⠗â â ”â Ž" }, { "input": "grainy", "output": "⠛⠗â â ”â ½" }, { "input": "gram", "output": "⠛⠗â â " }, { "input": "grammar", "output": "⠛⠗â â â â œ" }, { "input": "grammarian", "output": "⠛⠗â â â â œâ Šâ â " }, { "input": "grammarians", "output": "⠛⠗â â â â œâ Šâ â â Ž" }, { "input": "grammars", "output": "⠛⠗â â â â œâ Ž" }, { "input": "grammatical", "output": "⠛⠗â â â â â žâ Šâ ‰â â ‡" }, { "input": "grammatically", "output": "⠛⠗â â â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "gramophone", "output": "⠛⠗â â â •â â “â â •" }, { "input": "grams", "output": "⠛⠗â â â Ž" }, { "input": "granaries", "output": "⠛⠗â â â œâ Šâ ‘â Ž" }, { "input": "granary", "output": "⠛⠗â â â œâ ½" }, { "input": "grand", "output": "⠛⠗⠯" }, { "input": "grandad", "output": "⠛⠗⠯â â ™" }, { "input": "grandads", "output": "⠛⠗⠯â â ™â Ž" }, { "input": "grandchild", "output": "⠛⠗⠯⠡⠊⠇⠙" }, { "input": "grandchildren", "output": "⠛⠗⠯⠡â " }, { "input": "granddad", "output": "⠛⠗⠯⠙â â ™" }, { "input": "granddads", "output": "⠛⠗⠯⠙â â ™â Ž" }, { "input": "granddaughter", "output": "⠛⠗⠯⠙â â ¥â £â žâ »" }, { "input": "granddaughters", "output": "⠛⠗⠯⠙â â ¥â £â žâ »â Ž" }, { "input": "grandee", "output": "⠛⠗⠯⠑⠑" }, { "input": "grandees", "output": "⠛⠗⠯⠑⠑⠎" }, { "input": "grander", "output": "⠛⠗⠯⠻" }, { "input": "grandest", "output": "⠛⠗⠯⠑⠌" }, { "input": "grandeur", "output": "⠛⠗⠯⠑⠥⠗" }, { "input": "grandfather", "output": "⠛⠗⠯â â ‹" }, { "input": "grandfathered", "output": "⠛⠗⠯â â ‹â «" }, { "input": "grandfathering", "output": "⠛⠗⠯â â ‹â ¬" }, { "input": "grandfathers", "output": "⠛⠗⠯â â ‹â Ž" }, { "input": "grandiloquence", "output": "⠛⠗⠯⠊⠇⠕⠟⠥⠰⠑" }, { "input": "grandiloquent", "output": "⠛⠗⠯⠊⠇⠕⠟⠥⠢⠞" }, { "input": "grandiose", "output": "⠛⠗⠯⠊⠕⠎⠑" }, { "input": "grandly", "output": "⠛⠗⠯⠇⠽" }, { "input": "grandma", "output": "⠛⠗⠯â â " }, { "input": "grandmas", "output": "⠛⠗⠯â â â Ž" }, { "input": "grandmother", "output": "⠛⠗⠯â â " }, { "input": "grandmothers", "output": "⠛⠗⠯â â â Ž" }, { "input": "grandness", "output": "⠛⠗⠯⠰⠎" }, { "input": "grandpa", "output": "⠛⠗⠯â â " }, { "input": "grandparent", "output": "⠛⠗⠯â â œâ ¢â ž" }, { "input": "grandparents", "output": "⠛⠗⠯â â œâ ¢â žâ Ž" }, { "input": "grandpas", "output": "⠛⠗⠯â â â Ž" }, { "input": "grands", "output": "⠛⠗⠯⠎" }, { "input": "grandson", "output": "⠛⠗⠯⠎⠕â " }, { "input": "grandsons", "output": "⠛⠗⠯⠎⠕â â Ž" }, { "input": "grandstand", "output": "⠛⠗⠯⠌⠯" }, { "input": "grandstanded", "output": "⠛⠗⠯⠌⠯⠫" }, { "input": "grandstanding", "output": "⠛⠗⠯⠌⠯⠬" }, { "input": "grandstands", "output": "⠛⠗⠯⠌⠯⠎" }, { "input": "grange", "output": "⠛⠗â â â ›â ‘" }, { "input": "granges", "output": "⠛⠗â â â ›â ‘â Ž" }, { "input": "granite", "output": "⠛⠗â â â Šâ žâ ‘" }, { "input": "grannie", "output": "⠛⠗â â â â Šâ ‘" }, { "input": "grannies", "output": "⠛⠗â â â â Šâ ‘â Ž" }, { "input": "granny", "output": "⠛⠗â â â â ½" }, { "input": "granola", "output": "⠛⠗â â â •â ‡â " }, { "input": "grant", "output": "⠛⠗â â â ž" }, { "input": "granted", "output": "⠛⠗â â â žâ «" }, { "input": "granting", "output": "⠛⠗â â â žâ ¬" }, { "input": "grants", "output": "⠛⠗â â â žâ Ž" }, { "input": "granular", "output": "⠛⠗â â â ¥â ‡â œ" }, { "input": "granularity", "output": "⠛⠗â â â ¥â ‡â œâ °â ½" }, { "input": "granulate", "output": "⠛⠗â â â ¥â ‡â â žâ ‘" }, { "input": "granulated", "output": "⠛⠗â â â ¥â ‡â â žâ «" }, { "input": "granulates", "output": "⠛⠗â â â ¥â ‡â â žâ ‘â Ž" }, { "input": "granulating", "output": "⠛⠗â â â ¥â ‡â â žâ ¬" }, { "input": "granulation", "output": "⠛⠗â â â ¥â ‡â â °â " }, { "input": "granule", "output": "⠛⠗â â â ¥â ‡â ‘" }, { "input": "granules", "output": "⠛⠗â â â ¥â ‡â ‘â Ž" }, { "input": "grape", "output": "⠛⠗â â â ‘" }, { "input": "grapefruit", "output": "⠛⠗â â â ‘⠋⠗⠥⠊⠞" }, { "input": "grapefruits", "output": "⠛⠗â â â ‘⠋⠗⠥⠊⠞⠎" }, { "input": "grapes", "output": "⠛⠗â â â ‘â Ž" }, { "input": "grapevine", "output": "⠛⠗â â â ‘⠧⠔⠑" }, { "input": "grapevines", "output": "⠛⠗â â â ‘⠧⠔⠑⠎" }, { "input": "graph", "output": "⠛⠗â â â “" }, { "input": "graphed", "output": "⠛⠗â â â “â «" }, { "input": "graphic", "output": "⠛⠗â â â “â Šâ ‰" }, { "input": "graphical", "output": "⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "graphically", "output": "⠛⠗â â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "graphics", "output": "⠛⠗â â â “⠊⠉⠎" }, { "input": "graphing", "output": "⠛⠗â â â “â ¬" }, { "input": "graphite", "output": "⠛⠗â â â “â Šâ žâ ‘" }, { "input": "graphologist", "output": "⠛⠗â â â “⠕⠇⠕⠛⠊⠌" }, { "input": "graphologists", "output": "⠛⠗â â â “⠕⠇⠕⠛⠊⠌⠎" }, { "input": "graphology", "output": "⠛⠗â â â “⠕⠇⠕⠛⠽" }, { "input": "graphs", "output": "⠛⠗â â â “â Ž" }, { "input": "grapnel", "output": "⠛⠗â â â â ‘â ‡" }, { "input": "grapnels", "output": "⠛⠗â â â â ‘⠇⠎" }, { "input": "grapple", "output": "⠛⠗â â â â ‡â ‘" }, { "input": "grappled", "output": "⠛⠗â â â â ‡â «" }, { "input": "grapples", "output": "⠛⠗â â â â ‡â ‘â Ž" }, { "input": "grappling", "output": "⠛⠗â â â â ‡â ¬" }, { "input": "grasp", "output": "⠛⠗â â Žâ " }, { "input": "grasped", "output": "⠛⠗â â Žâ â «" }, { "input": "grasping", "output": "⠛⠗â â Žâ â ¬" }, { "input": "grasps", "output": "⠛⠗â â Žâ â Ž" }, { "input": "grass", "output": "⠛⠗â â Žâ Ž" }, { "input": "grassed", "output": "⠛⠗â â Žâ Žâ «" }, { "input": "grasses", "output": "⠛⠗â â Žâ Žâ ‘â Ž" }, { "input": "grasshopper", "output": "⠛⠗â â Žâ Žâ “â •â â â »" }, { "input": "grasshoppers", "output": "⠛⠗â â Žâ Žâ “â •â â â »â Ž" }, { "input": "grassier", "output": "⠛⠗â â Žâ Žâ Šâ »" }, { "input": "grassiest", "output": "⠛⠗â â Žâ Žâ Šâ ‘â Œ" }, { "input": "grassing", "output": "⠛⠗â â Žâ Žâ ¬" }, { "input": "grassland", "output": "⠛⠗â â Žâ Žâ ‡â ¯" }, { "input": "grassy", "output": "⠛⠗â â Žâ Žâ ½" }, { "input": "grate", "output": "⠛⠗â â žâ ‘" }, { "input": "grated", "output": "⠛⠗â â žâ «" }, { "input": "grateful", "output": "⠛⠗â â žâ ‘â °â ‡" }, { "input": "gratefully", "output": "⠛⠗â â žâ ‘⠰⠇⠇⠽" }, { "input": "gratefulness", "output": "⠛⠗â â žâ ‘⠰⠇⠰⠎" }, { "input": "grater", "output": "⠛⠗â â žâ »" }, { "input": "graters", "output": "⠛⠗â â žâ »â Ž" }, { "input": "grates", "output": "⠛⠗â â žâ ‘â Ž" }, { "input": "gratification", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "gratifications", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "gratified", "output": "⠛⠗â â žâ Šâ ‹â Šâ «" }, { "input": "gratifies", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "gratify", "output": "⠛⠗â â žâ Šâ ‹â ½" }, { "input": "gratifying", "output": "⠛⠗â â žâ Šâ ‹â ½â ¬" }, { "input": "grating", "output": "⠛⠗â â žâ ¬" }, { "input": "gratings", "output": "⠛⠗â â žâ ¬â Ž" }, { "input": "gratis", "output": "⠛⠗â â žâ Šâ Ž" }, { "input": "gratitude", "output": "⠛⠗â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "gratuities", "output": "⠛⠗â â žâ ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "gratuitous", "output": "⠛⠗â â žâ ¥â Šâ žâ ³â Ž" }, { "input": "gratuitously", "output": "⠛⠗â â žâ ¥â Šâ žâ ³â Žâ ‡â ½" }, { "input": "gratuity", "output": "⠛⠗â â žâ ¥â °â ½" }, { "input": "grave", "output": "⠛⠗â â §â ‘" }, { "input": "graved", "output": "⠛⠗â â §â «" }, { "input": "gravel", "output": "⠛⠗â â §â ‘â ‡" }, { "input": "graveled", "output": "⠛⠗â â §â ‘⠇⠫" }, { "input": "graveling", "output": "⠛⠗â â §â ‘⠇⠬" }, { "input": "gravelled", "output": "⠛⠗â â §â ‘⠇⠇⠫" }, { "input": "gravelling", "output": "⠛⠗â â §â ‘⠇⠇⠬" }, { "input": "gravelly", "output": "⠛⠗â â §â ‘⠇⠇⠽" }, { "input": "gravels", "output": "⠛⠗â â §â ‘⠇⠎" }, { "input": "gravely", "output": "⠛⠗â â §â ‘⠇⠽" }, { "input": "graven", "output": "⠛⠗â â §â ¢" }, { "input": "graver", "output": "⠛⠗â â §â »" }, { "input": "graves", "output": "⠛⠗â â §â ‘â Ž" }, { "input": "gravest", "output": "⠛⠗â â §â ‘â Œ" }, { "input": "gravestone", "output": "⠛⠗â â §â ‘â Œâ â •" }, { "input": "gravestones", "output": "⠛⠗â â §â ‘â Œâ â •â Ž" }, { "input": "graveyard", "output": "⠛⠗â â §â ‘⠽⠜⠙" }, { "input": "graveyards", "output": "⠛⠗â â §â ‘⠽⠜⠙⠎" }, { "input": "gravies", "output": "⠛⠗â â §â Šâ ‘â Ž" }, { "input": "graving", "output": "⠛⠗â â §â ¬" }, { "input": "gravitate", "output": "⠛⠗â â §â Šâ žâ â žâ ‘" }, { "input": "gravitated", "output": "⠛⠗â â §â Šâ žâ â žâ «" }, { "input": "gravitates", "output": "⠛⠗â â §â Šâ žâ â žâ ‘â Ž" }, { "input": "gravitating", "output": "⠛⠗â â §â Šâ žâ â žâ ¬" }, { "input": "gravitation", "output": "⠛⠗â â §â Šâ žâ â °â " }, { "input": "gravitational", "output": "⠛⠗â â §â Šâ žâ â °â â â ‡" }, { "input": "gravity", "output": "⠛⠗â â §â °â ½" }, { "input": "gravy", "output": "⠛⠗â â §â ½" }, { "input": "gray", "output": "⠛⠗â â ½" }, { "input": "graybeard", "output": "⠛⠗â â ½â ƒâ ‘⠜⠙" }, { "input": "graybeards", "output": "⠛⠗â â ½â ƒâ ‘⠜⠙⠎" }, { "input": "grayed", "output": "⠛⠗â â ½â «" }, { "input": "grayer", "output": "⠛⠗â â ½â »" }, { "input": "grayest", "output": "⠛⠗â â ½â ‘â Œ" }, { "input": "graying", "output": "⠛⠗â â ½â ¬" }, { "input": "grayish", "output": "⠛⠗â â ½â Šâ ©" }, { "input": "grayness", "output": "⠛⠗â â ½â °â Ž" }, { "input": "grays", "output": "⠛⠗â â ½â Ž" }, { "input": "graze", "output": "⠛⠗â â µâ ‘" }, { "input": "grazed", "output": "⠛⠗â â µâ «" }, { "input": "grazes", "output": "⠛⠗â â µâ ‘â Ž" }, { "input": "grazing", "output": "⠛⠗â â µâ ¬" }, { "input": "grease", "output": "⠛⠗⠂⠎⠑" }, { "input": "greased", "output": "⠛⠗⠂⠎⠫" }, { "input": "greasepaint", "output": "⠛⠗⠂⠎⠑â â â ”â ž" }, { "input": "greases", "output": "⠛⠗⠂⠎⠑⠎" }, { "input": "greasier", "output": "⠛⠗⠂⠎⠊⠻" }, { "input": "greasiest", "output": "⠛⠗⠂⠎⠊⠑⠌" }, { "input": "greasiness", "output": "⠛⠗⠂⠎⠊⠰⠎" }, { "input": "greasing", "output": "⠛⠗⠂⠎⠬" }, { "input": "greasy", "output": "⠛⠗⠂⠎⠽" }, { "input": "great", "output": "⠛⠗⠞" }, { "input": "greater", "output": "⠛⠗⠞⠻" }, { "input": "greatest", "output": "⠛⠗⠞⠑⠌" }, { "input": "greatly", "output": "⠛⠗⠞⠇⠽" }, { "input": "greatness", "output": "⠛⠗⠞⠰⠎" }, { "input": "greats", "output": "⠛⠗⠞⠎" }, { "input": "grebe", "output": "⠛⠗⠑⠃⠑" }, { "input": "grebes", "output": "⠛⠗⠑⠃⠑⠎" }, { "input": "greed", "output": "⠛⠗⠑⠫" }, { "input": "greedier", "output": "⠛⠗⠑⠫⠊⠻" }, { "input": "greediest", "output": "⠛⠗⠑⠫⠊⠑⠌" }, { "input": "greedily", "output": "⠛⠗⠑⠫⠊⠇⠽" }, { "input": "greediness", "output": "⠛⠗⠑⠫⠊⠰⠎" }, { "input": "greedy", "output": "⠛⠗⠑⠫⠽" }, { "input": "green", "output": "⠛⠗⠑⠢" }, { "input": "greenback", "output": "⠛⠗⠑⠢⠃â â ‰â …" }, { "input": "greenbacks", "output": "⠛⠗⠑⠢⠃â â ‰â …â Ž" }, { "input": "greened", "output": "⠛⠗⠑⠢⠫" }, { "input": "greener", "output": "⠛⠗⠑⠢⠻" }, { "input": "greenery", "output": "⠛⠗⠑⠢⠻⠽" }, { "input": "greenest", "output": "⠛⠗⠑⠢⠑⠌" }, { "input": "greengrocer", "output": "⠛⠗⠑⠢⠛⠗⠕⠉⠻" }, { "input": "greengrocers", "output": "⠛⠗⠑⠢⠛⠗⠕⠉⠻⠎" }, { "input": "greenhorn", "output": "⠛⠗⠑⠢⠓⠕⠗â " }, { "input": "greenhorns", "output": "⠛⠗⠑⠢⠓⠕⠗â â Ž" }, { "input": "greenhouse", "output": "⠛⠗⠑⠢⠓⠳⠎⠑" }, { "input": "greenhouses", "output": "⠛⠗⠑⠢⠓⠳⠎⠑⠎" }, { "input": "greening", "output": "⠛⠗⠑⠢⠬" }, { "input": "greenish", "output": "⠛⠗⠑⠢⠊⠩" }, { "input": "greenness", "output": "⠛⠗⠑⠢⠰⠎" }, { "input": "greens", "output": "⠛⠗⠑⠢⠎" }, { "input": "greensward", "output": "⠛⠗⠑⠢⠎⠺⠜⠙" }, { "input": "greet", "output": "⠛⠗⠑⠑⠞" }, { "input": "greeted", "output": "⠛⠗⠑⠑⠞⠫" }, { "input": "greeting", "output": "⠛⠗⠑⠑⠞⠬" }, { "input": "greetings", "output": "⠛⠗⠑⠑⠞⠬⠎" }, { "input": "greets", "output": "⠛⠗⠑⠑⠞⠎" }, { "input": "gregarious", "output": "⠛⠗⠑⠛⠜⠊⠳⠎" }, { "input": "gregariously", "output": "⠛⠗⠑⠛⠜⠊⠳⠎⠇⠽" }, { "input": "gregariousness", "output": "⠛⠗⠑⠛⠜⠊⠳⠎⠰⠎" }, { "input": "gremlin", "output": "⠛⠗⠑â â ‡â ”" }, { "input": "gremlins", "output": "⠛⠗⠑â â ‡â ”â Ž" }, { "input": "grenade", "output": "⠛⠗⠢â â ™â ‘" }, { "input": "grenades", "output": "⠛⠗⠢â â ™â ‘â Ž" }, { "input": "grenadier", "output": "⠛⠗⠢â â ™â Šâ »" }, { "input": "grenadiers", "output": "⠛⠗⠢â â ™â Šâ »â Ž" }, { "input": "grew", "output": "⠛⠗⠑⠺" }, { "input": "grey", "output": "⠛⠗⠑⠽" }, { "input": "greyed", "output": "⠛⠗⠑⠽⠫" }, { "input": "greyer", "output": "⠛⠗⠑⠽⠻" }, { "input": "greyest", "output": "⠛⠗⠑⠽⠑⠌" }, { "input": "greyhound", "output": "⠛⠗⠑⠽⠓⠨⠙" }, { "input": "greyhounds", "output": "⠛⠗⠑⠽⠓⠨⠙⠎" }, { "input": "greying", "output": "⠛⠗⠑⠽⠬" }, { "input": "greyish", "output": "⠛⠗⠑⠽⠊⠩" }, { "input": "greys", "output": "⠛⠗⠑⠽⠎" }, { "input": "grid", "output": "⠛⠗⠊⠙" }, { "input": "griddle", "output": "⠛⠗⠊⠙⠙⠇⠑" }, { "input": "griddlecake", "output": "⠛⠗⠊⠙⠙⠇⠑⠉â â …â ‘" }, { "input": "griddlecakes", "output": "⠛⠗⠊⠙⠙⠇⠑⠉â â …â ‘â Ž" }, { "input": "griddles", "output": "⠛⠗⠊⠙⠙⠇⠑⠎" }, { "input": "gridiron", "output": "⠛⠗⠊⠙⠊⠗⠕â " }, { "input": "gridirons", "output": "⠛⠗⠊⠙⠊⠗⠕â â Ž" }, { "input": "gridlock", "output": "⠛⠗⠊⠙⠇⠕⠉⠅" }, { "input": "gridlocks", "output": "⠛⠗⠊⠙⠇⠕⠉⠅⠎" }, { "input": "grids", "output": "⠛⠗⠊⠙⠎" }, { "input": "grief", "output": "⠛⠗⠊⠑⠋" }, { "input": "griefs", "output": "⠛⠗⠊⠑⠋⠎" }, { "input": "grievance", "output": "⠛⠗⠊⠑⠧⠨⠑" }, { "input": "grievances", "output": "⠛⠗⠊⠑⠧⠨⠑⠎" }, { "input": "grieve", "output": "⠛⠗⠊⠑⠧⠑" }, { "input": "grieved", "output": "⠛⠗⠊⠑⠧⠫" }, { "input": "grieves", "output": "⠛⠗⠊⠑⠧⠑⠎" }, { "input": "grieving", "output": "⠛⠗⠊⠑⠧⠬" }, { "input": "grievous", "output": "⠛⠗⠊⠑⠧⠳⠎" }, { "input": "grievously", "output": "⠛⠗⠊⠑⠧⠳⠎⠇⠽" }, { "input": "griffin", "output": "⠛⠗⠊⠖⠔" }, { "input": "griffins", "output": "⠛⠗⠊⠖⠔⠎" }, { "input": "grill", "output": "⠛⠗⠊⠇⠇" }, { "input": "grille", "output": "⠛⠗⠊⠇⠇⠑" }, { "input": "grilled", "output": "⠛⠗⠊⠇⠇⠫" }, { "input": "grilles", "output": "⠛⠗⠊⠇⠇⠑⠎" }, { "input": "grilling", "output": "⠛⠗⠊⠇⠇⠬" }, { "input": "grills", "output": "⠛⠗⠊⠇⠇⠎" }, { "input": "grim", "output": "⠛⠗⠊â " }, { "input": "grimace", "output": "⠛⠗⠊â â â ‰â ‘" }, { "input": "grimaced", "output": "⠛⠗⠊â â â ‰â «" }, { "input": "grimaces", "output": "⠛⠗⠊â â â ‰â ‘â Ž" }, { "input": "grimacing", "output": "⠛⠗⠊â â â ‰â ¬" }, { "input": "grime", "output": "⠛⠗⠊â â ‘" }, { "input": "grimed", "output": "⠛⠗⠊â â «" }, { "input": "grimes", "output": "⠛⠗⠊â â ‘â Ž" }, { "input": "grimier", "output": "⠛⠗⠊â â Šâ »" }, { "input": "grimiest", "output": "⠛⠗⠊â â Šâ ‘â Œ" }, { "input": "griming", "output": "⠛⠗⠊â â ¬" }, { "input": "grimly", "output": "⠛⠗⠊â â ‡â ½" }, { "input": "grimmer", "output": "⠛⠗⠊â â â »" }, { "input": "grimmest", "output": "⠛⠗⠊â â â ‘â Œ" }, { "input": "grimness", "output": "⠛⠗⠊â â °â Ž" }, { "input": "grimy", "output": "⠛⠗⠊â â ½" }, { "input": "grin", "output": "⠛⠗⠔" }, { "input": "grind", "output": "⠛⠗⠔⠙" }, { "input": "grinder", "output": "⠛⠗⠔⠙⠻" }, { "input": "grinders", "output": "⠛⠗⠔⠙⠻⠎" }, { "input": "grinding", "output": "⠛⠗⠔⠙⠬" }, { "input": "grinds", "output": "⠛⠗⠔⠙⠎" }, { "input": "grindstone", "output": "⠛⠗⠔⠙⠌â â •" }, { "input": "grindstones", "output": "⠛⠗⠔⠙⠌â â •â Ž" }, { "input": "gringo", "output": "⠛⠗⠬⠕" }, { "input": "gringos", "output": "⠛⠗⠬⠕⠎" }, { "input": "grinned", "output": "⠛⠗⠔â â «" }, { "input": "grinning", "output": "⠛⠗⠔â â ¬" }, { "input": "grins", "output": "⠛⠗⠔⠎" }, { "input": "grip", "output": "⠛⠗⠊â " }, { "input": "gripe", "output": "⠛⠗⠊â â ‘" }, { "input": "griped", "output": "⠛⠗⠊â â «" }, { "input": "gripes", "output": "⠛⠗⠊â â ‘â Ž" }, { "input": "griping", "output": "⠛⠗⠊â â ¬" }, { "input": "grippe", "output": "⠛⠗⠊â â â ‘" }, { "input": "gripped", "output": "⠛⠗⠊â â â «" }, { "input": "gripping", "output": "⠛⠗⠊â â â ¬" }, { "input": "grips", "output": "⠛⠗⠊â â Ž" }, { "input": "grislier", "output": "⠛⠗⠊⠎⠇⠊⠻" }, { "input": "grisliest", "output": "⠛⠗⠊⠎⠇⠊⠑⠌" }, { "input": "grisly", "output": "⠛⠗⠊⠎⠇⠽" }, { "input": "grist", "output": "⠛⠗⠊⠌" }, { "input": "gristle", "output": "⠛⠗⠊⠌⠇⠑" }, { "input": "gristlier", "output": "⠛⠗⠊⠌⠇⠊⠻" }, { "input": "gristliest", "output": "⠛⠗⠊⠌⠇⠊⠑⠌" }, { "input": "gristly", "output": "⠛⠗⠊⠌⠇⠽" }, { "input": "grit", "output": "⠛⠗⠊⠞" }, { "input": "grits", "output": "⠛⠗⠊⠞⠎" }, { "input": "gritted", "output": "⠛⠗⠊⠞⠞⠫" }, { "input": "grittier", "output": "⠛⠗⠊⠞⠞⠊⠻" }, { "input": "grittiest", "output": "⠛⠗⠊⠞⠞⠊⠑⠌" }, { "input": "gritting", "output": "⠛⠗⠊⠞⠞⠬" }, { "input": "gritty", "output": "⠛⠗⠊⠞⠞⠽" }, { "input": "grizzled", "output": "⠛⠗⠊⠵⠵⠇⠫" }, { "input": "grizzlier", "output": "⠛⠗⠊⠵⠵⠇⠊⠻" }, { "input": "grizzlies", "output": "⠛⠗⠊⠵⠵⠇⠊⠑⠎" }, { "input": "grizzliest", "output": "⠛⠗⠊⠵⠵⠇⠊⠑⠌" }, { "input": "grizzly", "output": "⠛⠗⠊⠵⠵⠇⠽" }, { "input": "groan", "output": "⠛⠗⠕â â " }, { "input": "groaned", "output": "⠛⠗⠕â â â «" }, { "input": "groaning", "output": "⠛⠗⠕â â â ¬" }, { "input": "groans", "output": "⠛⠗⠕â â â Ž" }, { "input": "grocer", "output": "⠛⠗⠕⠉⠻" }, { "input": "groceries", "output": "⠛⠗⠕⠉⠻⠊⠑⠎" }, { "input": "grocers", "output": "⠛⠗⠕⠉⠻⠎" }, { "input": "grocery", "output": "⠛⠗⠕⠉⠻⠽" }, { "input": "grog", "output": "⠛⠗⠕⠛" }, { "input": "groggier", "output": "⠛⠗⠕⠶⠊⠻" }, { "input": "groggiest", "output": "⠛⠗⠕⠶⠊⠑⠌" }, { "input": "groggily", "output": "⠛⠗⠕⠶⠊⠇⠽" }, { "input": "grogginess", "output": "⠛⠗⠕⠶⠊⠰⠎" }, { "input": "groggy", "output": "⠛⠗⠕⠶⠽" }, { "input": "groin", "output": "⠛⠗⠕⠔" }, { "input": "groins", "output": "⠛⠗⠕⠔⠎" }, { "input": "grommet", "output": "⠛⠗⠕â â â ‘â ž" }, { "input": "grommets", "output": "⠛⠗⠕â â â ‘â žâ Ž" }, { "input": "groom", "output": "⠛⠗⠕⠕â " }, { "input": "groomed", "output": "⠛⠗⠕⠕â â «" }, { "input": "grooming", "output": "⠛⠗⠕⠕â â ¬" }, { "input": "grooms", "output": "⠛⠗⠕⠕â â Ž" }, { "input": "groove", "output": "⠛⠗⠕⠕⠧⠑" }, { "input": "grooved", "output": "⠛⠗⠕⠕⠧⠫" }, { "input": "grooves", "output": "⠛⠗⠕⠕⠧⠑⠎" }, { "input": "groovier", "output": "⠛⠗⠕⠕⠧⠊⠻" }, { "input": "grooviest", "output": "⠛⠗⠕⠕⠧⠊⠑⠌" }, { "input": "grooving", "output": "⠛⠗⠕⠕⠧⠬" }, { "input": "groovy", "output": "⠛⠗⠕⠕⠧⠽" }, { "input": "grope", "output": "⠛⠗⠕â â ‘" }, { "input": "groped", "output": "⠛⠗⠕â â «" }, { "input": "gropes", "output": "⠛⠗⠕â â ‘â Ž" }, { "input": "groping", "output": "⠛⠗⠕â â ¬" }, { "input": "grosbeak", "output": "⠛⠗⠕⠎⠃⠂⠅" }, { "input": "grosbeaks", "output": "⠛⠗⠕⠎⠃⠂⠅⠎" }, { "input": "gross", "output": "⠛⠗⠕⠎⠎" }, { "input": "grossed", "output": "⠛⠗⠕⠎⠎⠫" }, { "input": "grosser", "output": "⠛⠗⠕⠎⠎⠻" }, { "input": "grosses", "output": "⠛⠗⠕⠎⠎⠑⠎" }, { "input": "grossest", "output": "⠛⠗⠕⠎⠎⠑⠌" }, { "input": "grossing", "output": "⠛⠗⠕⠎⠎⠬" }, { "input": "grossly", "output": "⠛⠗⠕⠎⠎⠇⠽" }, { "input": "grossness", "output": "⠛⠗⠕⠎⠎⠰⠎" }, { "input": "grotesque", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑" }, { "input": "grotesquely", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠇⠽" }, { "input": "grotesques", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠎" }, { "input": "grotto", "output": "⠛⠗⠕⠞⠞⠕" }, { "input": "grottoes", "output": "⠛⠗⠕⠞⠞⠕⠑⠎" }, { "input": "grottos", "output": "⠛⠗⠕⠞⠞⠕⠎" }, { "input": "grouch", "output": "⠛⠗⠳⠡" }, { "input": "grouched", "output": "⠛⠗⠳⠡⠫" }, { "input": "grouches", "output": "⠛⠗⠳⠡⠑⠎" }, { "input": "grouchier", "output": "⠛⠗⠳⠡⠊⠻" }, { "input": "grouchiest", "output": "⠛⠗⠳⠡⠊⠑⠌" }, { "input": "grouchiness", "output": "⠛⠗⠳⠡⠊⠰⠎" }, { "input": "grouching", "output": "⠛⠗⠳⠡⠬" }, { "input": "grouchy", "output": "⠛⠗⠳⠡⠽" }, { "input": "ground", "output": "⠛⠗⠨⠙" }, { "input": "groundbreaking", "output": "⠛⠗⠨⠙⠃⠗⠂⠅⠬" }, { "input": "groundbreakings", "output": "⠛⠗⠨⠙⠃⠗⠂⠅⠬⠎" }, { "input": "grounded", "output": "⠛⠗⠨⠙⠫" }, { "input": "grounder", "output": "⠛⠗⠨⠙⠻" }, { "input": "grounders", "output": "⠛⠗⠨⠙⠻⠎" }, { "input": "groundhog", "output": "⠛⠗⠨⠙⠓⠕⠛" }, { "input": "groundhogs", "output": "⠛⠗⠨⠙⠓⠕⠛⠎" }, { "input": "grounding", "output": "⠛⠗⠨⠙⠬" }, { "input": "groundings", "output": "⠛⠗⠨⠙⠬⠎" }, { "input": "groundless", "output": "⠛⠗⠨⠙⠨⠎" }, { "input": "groundlessly", "output": "⠛⠗⠨⠙⠨⠎⠇⠽" }, { "input": "grounds", "output": "⠛⠗⠨⠙⠎" }, { "input": "groundswell", "output": "⠛⠗⠨⠙⠎⠺⠑⠇⠇" }, { "input": "groundswells", "output": "⠛⠗⠨⠙⠎⠺⠑⠇⠇⠎" }, { "input": "groundwork", "output": "⠛⠗⠨⠙â â º" }, { "input": "group", "output": "⠛⠗⠳â " }, { "input": "grouped", "output": "⠛⠗⠳â â «" }, { "input": "grouper", "output": "⠛⠗⠳â â »" }, { "input": "groupers", "output": "⠛⠗⠳â â »â Ž" }, { "input": "groupie", "output": "⠛⠗⠳â â Šâ ‘" }, { "input": "groupies", "output": "⠛⠗⠳â â Šâ ‘â Ž" }, { "input": "grouping", "output": "⠛⠗⠳â â ¬" }, { "input": "groupings", "output": "⠛⠗⠳â â ¬â Ž" }, { "input": "groups", "output": "⠛⠗⠳â â Ž" }, { "input": "grouse", "output": "⠛⠗⠳⠎⠑" }, { "input": "groused", "output": "⠛⠗⠳⠎⠫" }, { "input": "grouses", "output": "⠛⠗⠳⠎⠑⠎" }, { "input": "grousing", "output": "⠛⠗⠳⠎⠬" }, { "input": "grout", "output": "⠛⠗⠳⠞" }, { "input": "grouted", "output": "⠛⠗⠳⠞⠫" }, { "input": "grouting", "output": "⠛⠗⠳⠞⠬" }, { "input": "grouts", "output": "⠛⠗⠳⠞⠎" }, { "input": "grove", "output": "⠛⠗⠕⠧⠑" }, { "input": "grovel", "output": "⠛⠗⠕⠧⠑⠇" }, { "input": "groveled", "output": "⠛⠗⠕⠧⠑⠇⠫" }, { "input": "groveler", "output": "⠛⠗⠕⠧⠑⠇⠻" }, { "input": "grovelers", "output": "⠛⠗⠕⠧⠑⠇⠻⠎" }, { "input": "groveling", "output": "⠛⠗⠕⠧⠑⠇⠬" }, { "input": "grovelled", "output": "⠛⠗⠕⠧⠑⠇⠇⠫" }, { "input": "groveller", "output": "⠛⠗⠕⠧⠑⠇⠇⠻" }, { "input": "grovellers", "output": "⠛⠗⠕⠧⠑⠇⠇⠻⠎" }, { "input": "grovelling", "output": "⠛⠗⠕⠧⠑⠇⠇⠬" }, { "input": "grovels", "output": "⠛⠗⠕⠧⠑⠇⠎" }, { "input": "groves", "output": "⠛⠗⠕⠧⠑⠎" }, { "input": "grow", "output": "⠛⠗⠪" }, { "input": "grower", "output": "⠛⠗⠪⠻" }, { "input": "growers", "output": "⠛⠗⠪⠻⠎" }, { "input": "growing", "output": "⠛⠗⠪⠬" }, { "input": "growl", "output": "⠛⠗⠪⠇" }, { "input": "growled", "output": "⠛⠗⠪⠇⠫" }, { "input": "growling", "output": "⠛⠗⠪⠇⠬" }, { "input": "growls", "output": "⠛⠗⠪⠇⠎" }, { "input": "grown", "output": "⠛⠗⠪â " }, { "input": "grownup", "output": "⠛⠗⠪â â ¥â " }, { "input": "grownups", "output": "⠛⠗⠪â â ¥â â Ž" }, { "input": "grows", "output": "⠛⠗⠪⠎" }, { "input": "growth", "output": "⠛⠗⠪⠹" }, { "input": "growths", "output": "⠛⠗⠪⠹⠎" }, { "input": "grub", "output": "⠛⠗⠥⠃" }, { "input": "grubbed", "output": "⠛⠗⠥⠆⠫" }, { "input": "grubbier", "output": "⠛⠗⠥⠆⠊⠻" }, { "input": "grubbiest", "output": "⠛⠗⠥⠆⠊⠑⠌" }, { "input": "grubbiness", "output": "⠛⠗⠥⠆⠊⠰⠎" }, { "input": "grubbing", "output": "⠛⠗⠥⠆⠬" }, { "input": "grubby", "output": "⠛⠗⠥⠆⠽" }, { "input": "grubs", "output": "⠛⠗⠥⠃⠎" }, { "input": "grubstake", "output": "⠛⠗⠥⠃⠌â â …â ‘" }, { "input": "grudge", "output": "⠛⠗⠥⠙⠛⠑" }, { "input": "grudged", "output": "⠛⠗⠥⠙⠛⠫" }, { "input": "grudges", "output": "⠛⠗⠥⠙⠛⠑⠎" }, { "input": "grudging", "output": "⠛⠗⠥⠙⠛⠬" }, { "input": "grudgingly", "output": "⠛⠗⠥⠙⠛⠬⠇⠽" }, { "input": "gruel", "output": "⠛⠗⠥⠑⠇" }, { "input": "grueling", "output": "⠛⠗⠥⠑⠇⠬" }, { "input": "gruelings", "output": "⠛⠗⠥⠑⠇⠬⠎" }, { "input": "gruelling", "output": "⠛⠗⠥⠑⠇⠇⠬" }, { "input": "gruellings", "output": "⠛⠗⠥⠑⠇⠇⠬⠎" }, { "input": "gruesome", "output": "⠛⠗⠥⠑â â Ž" }, { "input": "gruesomely", "output": "⠛⠗⠥⠑â â Žâ ‡â ½" }, { "input": "gruesomer", "output": "⠛⠗⠥⠑â â Žâ —" }, { "input": "gruesomest", "output": "⠛⠗⠥⠑â â Žâ Œ" }, { "input": "gruff", "output": "⠛⠗⠥⠋⠋" }, { "input": "gruffer", "output": "⠛⠗⠥⠖⠻" }, { "input": "gruffest", "output": "⠛⠗⠥⠖⠑⠌" }, { "input": "gruffly", "output": "⠛⠗⠥⠖⠇⠽" }, { "input": "gruffness", "output": "⠛⠗⠥⠖⠰⠎" }, { "input": "grumble", "output": "⠛⠗⠥â â ƒâ ‡â ‘" }, { "input": "grumbled", "output": "⠛⠗⠥â â ƒâ ‡â «" }, { "input": "grumbler", "output": "⠛⠗⠥â â ƒâ ‡â »" }, { "input": "grumblers", "output": "⠛⠗⠥â â ƒâ ‡â »â Ž" }, { "input": "grumbles", "output": "⠛⠗⠥â â ƒâ ‡â ‘â Ž" }, { "input": "grumbling", "output": "⠛⠗⠥â â ƒâ ‡â ¬" }, { "input": "grumpier", "output": "⠛⠗⠥â â â Šâ »" }, { "input": "grumpiest", "output": "⠛⠗⠥â â â Šâ ‘â Œ" }, { "input": "grumpily", "output": "⠛⠗⠥â â â Šâ ‡â ½" }, { "input": "grumpiness", "output": "⠛⠗⠥â â â Šâ °â Ž" }, { "input": "grumpy", "output": "⠛⠗⠥â â â ½" }, { "input": "grunge", "output": "⠛⠗⠥â â ›â ‘" }, { "input": "grungier", "output": "⠛⠗⠥â â ›â Šâ »" }, { "input": "grungiest", "output": "⠛⠗⠥â â ›â Šâ ‘â Œ" }, { "input": "grungy", "output": "⠛⠗⠥â â ›â ½" }, { "input": "grunt", "output": "⠛⠗⠥â â ž" }, { "input": "grunted", "output": "⠛⠗⠥â â žâ «" }, { "input": "grunting", "output": "⠛⠗⠥â â žâ ¬" }, { "input": "grunts", "output": "⠛⠗⠥â â žâ Ž" }, { "input": "gryphon", "output": "⠛⠗⠽â â “â •â " }, { "input": "gryphons", "output": "⠛⠗⠽â â “â •â â Ž" }, { "input": "gs", "output": "⠛⠎" }, { "input": "guacamole", "output": "⠛⠥â â ‰â â â •⠇⠑" }, { "input": "guano", "output": "⠛⠥â â â •" }, { "input": "guarantee", "output": "⠛⠥⠜â â â žâ ‘â ‘" }, { "input": "guaranteed", "output": "⠛⠥⠜â â â žâ ‘â «" }, { "input": "guaranteeing", "output": "⠛⠥⠜â â â žâ ‘â ‘â ¬" }, { "input": "guarantees", "output": "⠛⠥⠜â â â žâ ‘â ‘â Ž" }, { "input": "guarantied", "output": "⠛⠥⠜â â â žâ Šâ «" }, { "input": "guaranties", "output": "⠛⠥⠜â â â žâ Šâ ‘â Ž" }, { "input": "guarantor", "output": "⠛⠥⠜â â â žâ •â —" }, { "input": "guarantors", "output": "⠛⠥⠜â â â žâ •â —â Ž" }, { "input": "guaranty", "output": "⠛⠥⠜â â â žâ ½" }, { "input": "guarantying", "output": "⠛⠥⠜â â â žâ ½â ¬" }, { "input": "guard", "output": "⠛⠥⠜⠙" }, { "input": "guarded", "output": "⠛⠥⠜⠙⠫" }, { "input": "guardedly", "output": "⠛⠥⠜⠙⠫⠇⠽" }, { "input": "guardhouse", "output": "⠛⠥⠜⠙⠓⠳⠎⠑" }, { "input": "guardhouses", "output": "⠛⠥⠜⠙⠓⠳⠎⠑⠎" }, { "input": "guardian", "output": "⠛⠥⠜⠙⠊â â " }, { "input": "guardians", "output": "⠛⠥⠜⠙⠊â â â Ž" }, { "input": "guardianship", "output": "⠛⠥⠜⠙⠊â â â ©â Šâ " }, { "input": "guarding", "output": "⠛⠥⠜⠙⠬" }, { "input": "guardrail", "output": "⠛⠥⠜⠙⠗â â Šâ ‡" }, { "input": "guardrails", "output": "⠛⠥⠜⠙⠗â â Šâ ‡â Ž" }, { "input": "guardroom", "output": "⠛⠥⠜⠙⠗⠕⠕â " }, { "input": "guardrooms", "output": "⠛⠥⠜⠙⠗⠕⠕â â Ž" }, { "input": "guards", "output": "⠛⠥⠜⠙⠎" }, { "input": "guardsman", "output": "⠛⠥⠜⠙⠎â â â " }, { "input": "guardsmen", "output": "⠛⠥⠜⠙⠎â â ¢" }, { "input": "guava", "output": "⠛⠥â â §â " }, { "input": "guavas", "output": "⠛⠥â â §â â Ž" }, { "input": "gubernatorial", "output": "⠛⠥⠃⠻â â â žâ •â —â Šâ â ‡" }, { "input": "guerilla", "output": "⠛⠥⠻⠊⠇⠇â " }, { "input": "guerillas", "output": "⠛⠥⠻⠊⠇⠇â â Ž" }, { "input": "guerrilla", "output": "⠛⠥⠻⠗⠊⠇⠇â " }, { "input": "guerrillas", "output": "⠛⠥⠻⠗⠊⠇⠇â â Ž" }, { "input": "guess", "output": "⠛⠥⠑⠎⠎" }, { "input": "guessable", "output": "⠛⠥⠑⠎⠎â â ƒâ ‡â ‘" }, { "input": "guessed", "output": "⠛⠥⠑⠎⠎⠫" }, { "input": "guesser", "output": "⠛⠥⠑⠎⠎⠻" }, { "input": "guessers", "output": "⠛⠥⠑⠎⠎⠻⠎" }, { "input": "guesses", "output": "⠛⠥⠑⠎⠎⠑⠎" }, { "input": "guessing", "output": "⠛⠥⠑⠎⠎⠬" }, { "input": "guesstimate", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ ‘" }, { "input": "guesstimated", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ «" }, { "input": "guesstimates", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ ‘â Ž" }, { "input": "guesstimating", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ ¬" }, { "input": "guesswork", "output": "⠛⠥⠑⠎⠎â â º" }, { "input": "guest", "output": "⠛⠥⠑⠌" }, { "input": "guested", "output": "⠛⠥⠑⠌⠫" }, { "input": "guesting", "output": "⠛⠥⠑⠌⠬" }, { "input": "guests", "output": "⠛⠥⠑⠌⠎" }, { "input": "guff", "output": "⠛⠥⠋⠋" }, { "input": "guffaw", "output": "⠛⠥⠖â â º" }, { "input": "guffawed", "output": "⠛⠥⠖â â ºâ «" }, { "input": "guffawing", "output": "⠛⠥⠖â â ºâ ¬" }, { "input": "guffaws", "output": "⠛⠥⠖â â ºâ Ž" }, { "input": "guidance", "output": "⠛⠥⠊⠙⠨⠑" }, { "input": "guide", "output": "⠛⠥⠊⠙⠑" }, { "input": "guidebook", "output": "⠛⠥⠊⠙⠑⠃⠕⠕⠅" }, { "input": "guidebooks", "output": "⠛⠥⠊⠙⠑⠃⠕⠕⠅⠎" }, { "input": "guided", "output": "⠛⠥⠊⠙⠫" }, { "input": "guideline", "output": "⠛⠥⠊⠙⠑⠇⠔⠑" }, { "input": "guidelines", "output": "⠛⠥⠊⠙⠑⠇⠔⠑⠎" }, { "input": "guides", "output": "⠛⠥⠊⠙⠑⠎" }, { "input": "guiding", "output": "⠛⠥⠊⠙⠬" }, { "input": "guild", "output": "⠛⠥⠊⠇⠙" }, { "input": "guilder", "output": "⠛⠥⠊⠇⠙⠻" }, { "input": "guilders", "output": "⠛⠥⠊⠇⠙⠻⠎" }, { "input": "guilds", "output": "⠛⠥⠊⠇⠙⠎" }, { "input": "guile", "output": "⠛⠥⠊⠇⠑" }, { "input": "guileful", "output": "⠛⠥⠊⠇⠑⠰⠇" }, { "input": "guileless", "output": "⠛⠥⠊⠇⠑⠨⠎" }, { "input": "guillotine", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠑" }, { "input": "guillotined", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠫" }, { "input": "guillotines", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠑⠎" }, { "input": "guillotining", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠬" }, { "input": "guilt", "output": "⠛⠥⠊⠇⠞" }, { "input": "guiltier", "output": "⠛⠥⠊⠇⠞⠊⠻" }, { "input": "guiltiest", "output": "⠛⠥⠊⠇⠞⠊⠑⠌" }, { "input": "guiltily", "output": "⠛⠥⠊⠇⠞⠊⠇⠽" }, { "input": "guiltiness", "output": "⠛⠥⠊⠇⠞⠊⠰⠎" }, { "input": "guiltless", "output": "⠛⠥⠊⠇⠞⠨⠎" }, { "input": "guilty", "output": "⠛⠥⠊⠇⠞⠽" }, { "input": "guinea", "output": "⠛⠥⠔⠑â " }, { "input": "guineas", "output": "⠛⠥⠔⠂⠎" }, { "input": "guise", "output": "⠛⠥⠊⠎⠑" }, { "input": "guises", "output": "⠛⠥⠊⠎⠑⠎" }, { "input": "guitar", "output": "⠛⠥⠊⠞⠜" }, { "input": "guitarist", "output": "⠛⠥⠊⠞⠜⠊⠌" }, { "input": "guitarists", "output": "⠛⠥⠊⠞⠜⠊⠌⠎" }, { "input": "guitars", "output": "⠛⠥⠊⠞⠜⠎" }, { "input": "gulag", "output": "⠛⠥⠇â â ›" }, { "input": "gulags", "output": "⠛⠥⠇â â ›â Ž" }, { "input": "gulch", "output": "⠛⠥⠇⠡" }, { "input": "gulches", "output": "⠛⠥⠇⠡⠑⠎" }, { "input": "gulf", "output": "⠛⠥⠇⠋" }, { "input": "gulfs", "output": "⠛⠥⠇⠋⠎" }, { "input": "gull", "output": "⠛⠥⠇⠇" }, { "input": "gulled", "output": "⠛⠥⠇⠇⠫" }, { "input": "gullet", "output": "⠛⠥⠇⠇⠑⠞" }, { "input": "gullets", "output": "⠛⠥⠇⠇⠑⠞⠎" }, { "input": "gulley", "output": "⠛⠥⠇⠇⠑⠽" }, { "input": "gullibility", "output": "⠛⠥⠇⠇⠊⠃⠊⠇⠰⠽" }, { "input": "gullible", "output": "⠛⠥⠇⠇⠊⠃⠇⠑" }, { "input": "gullies", "output": "⠛⠥⠇⠇⠊⠑⠎" }, { "input": "gulling", "output": "⠛⠥⠇⠇⠬" }, { "input": "gulls", "output": "⠛⠥⠇⠇⠎" }, { "input": "gully", "output": "⠛⠥⠇⠇⠽" }, { "input": "gulp", "output": "⠛⠥⠇â " }, { "input": "gulped", "output": "⠛⠥⠇â â «" }, { "input": "gulping", "output": "⠛⠥⠇â â ¬" }, { "input": "gulps", "output": "⠛⠥⠇â â Ž" }, { "input": "gum", "output": "⠛⠥â " }, { "input": "gumbo", "output": "⠛⠥â â ƒâ •" }, { "input": "gumbos", "output": "⠛⠥â â ƒâ •â Ž" }, { "input": "gumdrop", "output": "⠛⠥â â ™â —â •â " }, { "input": "gumdrops", "output": "⠛⠥â â ™â —â •â â Ž" }, { "input": "gummed", "output": "⠛⠥â â â «" }, { "input": "gummier", "output": "⠛⠥â â â Šâ »" }, { "input": "gummiest", "output": "⠛⠥â â â Šâ ‘â Œ" }, { "input": "gumming", "output": "⠛⠥â â â ¬" }, { "input": "gummy", "output": "⠛⠥â â â ½" }, { "input": "gumption", "output": "⠛⠥â â â °â " }, { "input": "gums", "output": "⠛⠥â â Ž" }, { "input": "gun", "output": "⠛⠥â " }, { "input": "gunboat", "output": "⠛⠥â â ƒâ •â â ž" }, { "input": "gunboats", "output": "⠛⠥â â ƒâ •â â žâ Ž" }, { "input": "gunfight", "output": "⠛⠥â â ‹â Šâ £â ž" }, { "input": "gunfights", "output": "⠛⠥â â ‹â Šâ £â žâ Ž" }, { "input": "gunfire", "output": "⠛⠥â â ‹â Šâ —â ‘" }, { "input": "gunk", "output": "⠛⠥â â …" }, { "input": "gunman", "output": "⠛⠥â â â â " }, { "input": "gunmen", "output": "⠛⠥â â â ¢" }, { "input": "gunned", "output": "⠛⠥â â â «" }, { "input": "gunner", "output": "⠛⠥â â â »" }, { "input": "gunners", "output": "⠛⠥â â â »â Ž" }, { "input": "gunnery", "output": "⠛⠥â â â »â ½" }, { "input": "gunning", "output": "⠛⠥â â â ¬" }, { "input": "gunny", "output": "⠛⠥â â â ½" }, { "input": "gunnysack", "output": "⠛⠥â â â ½â Žâ â ‰â …" }, { "input": "gunnysacks", "output": "⠛⠥â â â ½â Žâ â ‰â …â Ž" }, { "input": "gunpoint", "output": "⠛⠥â â â •⠔⠞" }, { "input": "gunpowder", "output": "⠛⠥â â â ªâ ™â »" }, { "input": "gunrunner", "output": "⠛⠥â â —â ¥â â â »" }, { "input": "gunrunners", "output": "⠛⠥â â —â ¥â â â »â Ž" }, { "input": "gunrunning", "output": "⠛⠥â â —â ¥â â â ¬" }, { "input": "guns", "output": "⠛⠥â â Ž" }, { "input": "gunshot", "output": "⠛⠥â â ©â •â ž" }, { "input": "gunshots", "output": "⠛⠥â â ©â •â žâ Ž" }, { "input": "gunslinger", "output": "⠛⠥â â Žâ ‡â ¬â »" }, { "input": "gunslingers", "output": "⠛⠥â â Žâ ‡â ¬â »â Ž" }, { "input": "gunsmith", "output": "⠛⠥â â Žâ â Šâ ¹" }, { "input": "gunsmiths", "output": "⠛⠥â â Žâ â Šâ ¹â Ž" }, { "input": "gunwale", "output": "⠛⠥â â ºâ â ‡â ‘" }, { "input": "gunwales", "output": "⠛⠥â â ºâ â ‡â ‘â Ž" }, { "input": "guppies", "output": "⠛⠥â â â Šâ ‘â Ž" }, { "input": "guppy", "output": "⠛⠥â â â ½" }, { "input": "gurgle", "output": "⠛⠥⠗⠛⠇⠑" }, { "input": "gurgled", "output": "⠛⠥⠗⠛⠇⠫" }, { "input": "gurgles", "output": "⠛⠥⠗⠛⠇⠑⠎" }, { "input": "gurgling", "output": "⠛⠥⠗⠛⠇⠬" }, { "input": "gurney", "output": "⠛⠥⠗â â ‘â ½" }, { "input": "gurneys", "output": "⠛⠥⠗â â ‘⠽⠎" }, { "input": "guru", "output": "⠛⠥⠗⠥" }, { "input": "gurus", "output": "⠛⠥⠗⠥⠎" }, { "input": "gush", "output": "⠛⠥⠩" }, { "input": "gushed", "output": "⠛⠥⠩⠫" }, { "input": "gusher", "output": "⠛⠥⠩⠻" }, { "input": "gushers", "output": "⠛⠥⠩⠻⠎" }, { "input": "gushes", "output": "⠛⠥⠩⠑⠎" }, { "input": "gushier", "output": "⠛⠥⠩⠊⠻" }, { "input": "gushiest", "output": "⠛⠥⠩⠊⠑⠌" }, { "input": "gushing", "output": "⠛⠥⠩⠬" }, { "input": "gushy", "output": "⠛⠥⠩⠽" }, { "input": "gusset", "output": "⠛⠥⠎⠎⠑⠞" }, { "input": "gusseted", "output": "⠛⠥⠎⠎⠑⠞⠫" }, { "input": "gusseting", "output": "⠛⠥⠎⠎⠑⠞⠬" }, { "input": "gussets", "output": "⠛⠥⠎⠎⠑⠞⠎" }, { "input": "gust", "output": "⠛⠥⠌" }, { "input": "gustatory", "output": "⠛⠥⠌â â žâ •â —â ½" }, { "input": "gusted", "output": "⠛⠥⠌⠫" }, { "input": "gustier", "output": "⠛⠥⠌⠊⠻" }, { "input": "gustiest", "output": "⠛⠥⠌⠊⠑⠌" }, { "input": "gusting", "output": "⠛⠥⠌⠬" }, { "input": "gusto", "output": "⠛⠥⠌⠕" }, { "input": "gusts", "output": "⠛⠥⠌⠎" }, { "input": "gusty", "output": "⠛⠥⠌⠽" }, { "input": "gut", "output": "⠛⠥⠞" }, { "input": "gutless", "output": "⠛⠥⠞⠨⠎" }, { "input": "guts", "output": "⠛⠥⠞⠎" }, { "input": "gutsier", "output": "⠛⠥⠞⠎⠊⠻" }, { "input": "gutsiest", "output": "⠛⠥⠞⠎⠊⠑⠌" }, { "input": "gutsy", "output": "⠛⠥⠞⠎⠽" }, { "input": "gutted", "output": "⠛⠥⠞⠞⠫" }, { "input": "gutter", "output": "⠛⠥⠞⠞⠻" }, { "input": "guttered", "output": "⠛⠥⠞⠞⠻⠫" }, { "input": "guttering", "output": "⠛⠥⠞⠞⠻⠬" }, { "input": "gutters", "output": "⠛⠥⠞⠞⠻⠎" }, { "input": "guttersnipe", "output": "⠛⠥⠞⠞⠻⠎â â Šâ â ‘" }, { "input": "guttersnipes", "output": "⠛⠥⠞⠞⠻⠎â â Šâ â ‘â Ž" }, { "input": "gutting", "output": "⠛⠥⠞⠞⠬" }, { "input": "guttural", "output": "⠛⠥⠞⠞⠥⠗â â ‡" }, { "input": "gutturals", "output": "⠛⠥⠞⠞⠥⠗â â ‡â Ž" }, { "input": "guy", "output": "⠛⠥⠽" }, { "input": "guyed", "output": "⠛⠥⠽⠫" }, { "input": "guying", "output": "⠛⠥⠽⠬" }, { "input": "guys", "output": "⠛⠥⠽⠎" }, { "input": "guzzle", "output": "⠛⠥⠵⠵⠇⠑" }, { "input": "guzzled", "output": "⠛⠥⠵⠵⠇⠫" }, { "input": "guzzler", "output": "⠛⠥⠵⠵⠇⠻" }, { "input": "guzzlers", "output": "⠛⠥⠵⠵⠇⠻⠎" }, { "input": "guzzles", "output": "⠛⠥⠵⠵⠇⠑⠎" }, { "input": "guzzling", "output": "⠛⠥⠵⠵⠇⠬" }, { "input": "gybe", "output": "⠛⠽⠃⠑" }, { "input": "gybed", "output": "⠛⠽⠃⠫" }, { "input": "gybes", "output": "⠛⠽⠃⠑⠎" }, { "input": "gybing", "output": "⠛⠽⠃⠬" }, { "input": "gym", "output": "⠛⠽â " }, { "input": "gymnasia", "output": "⠛⠽â â â â Žâ Šâ " }, { "input": "gymnasium", "output": "⠛⠽â â â â Žâ Šâ ¥â " }, { "input": "gymnasiums", "output": "⠛⠽â â â â Žâ Šâ ¥â â Ž" }, { "input": "gymnast", "output": "⠛⠽â â â â Œ" }, { "input": "gymnastic", "output": "⠛⠽â â â â Œâ Šâ ‰" }, { "input": "gymnastics", "output": "⠛⠽â â â â Œâ Šâ ‰â Ž" }, { "input": "gymnasts", "output": "⠛⠽â â â â Œâ Ž" }, { "input": "gymnosperm", "output": "⠛⠽â â â •â Žâ â »â " }, { "input": "gymnosperms", "output": "⠛⠽â â â •â Žâ â »â â Ž" }, { "input": "gyms", "output": "⠛⠽â â Ž" }, { "input": "gynecological", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "gynecologist", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠌" }, { "input": "gynecologists", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠌⠎" }, { "input": "gynecology", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠽" }, { "input": "gyp", "output": "⠛⠽â " }, { "input": "gypped", "output": "⠛⠽â â â «" }, { "input": "gypping", "output": "⠛⠽â â â ¬" }, { "input": "gyps", "output": "⠛⠽â â Ž" }, { "input": "gypsies", "output": "⠛⠽â â Žâ Šâ ‘â Ž" }, { "input": "gypsum", "output": "⠛⠽â â Žâ ¥â " }, { "input": "gypsy", "output": "⠛⠽â â Žâ ½" }, { "input": "gyrate", "output": "⠛⠽⠗â â žâ ‘" }, { "input": "gyrated", "output": "⠛⠽⠗â â žâ «" }, { "input": "gyrates", "output": "⠛⠽⠗â â žâ ‘â Ž" }, { "input": "gyrating", "output": "⠛⠽⠗â â žâ ¬" }, { "input": "gyration", "output": "⠛⠽⠗â â °â " }, { "input": "gyrations", "output": "⠛⠽⠗â â °â â Ž" }, { "input": "gyro", "output": "⠛⠽⠗⠕" }, { "input": "gyros", "output": "⠛⠽⠗⠕⠎" }, { "input": "gyroscope", "output": "⠛⠽⠗⠕⠎⠉⠕â â ‘" }, { "input": "gyroscopes", "output": "⠛⠽⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "h", "output": "â °â “" }, { "input": "ha", "output": "â “â " }, { "input": "haberdasher", "output": "â “â â ƒâ »â ™â â ©â »" }, { "input": "haberdasheries", "output": "â “â â ƒâ »â ™â â ©â »â Šâ ‘â Ž" }, { "input": "haberdashers", "output": "â “â â ƒâ »â ™â â ©â »â Ž" }, { "input": "haberdashery", "output": "â “â â ƒâ »â ™â â ©â »â ½" }, { "input": "habit", "output": "â “â â ƒâ Šâ ž" }, { "input": "habitability", "output": "â “â â ƒâ Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "habitable", "output": "â “â â ƒâ Šâ žâ â ƒâ ‡â ‘" }, { "input": "habitat", "output": "â “â â ƒâ Šâ žâ â ž" }, { "input": "habitation", "output": "â “â â ƒâ Šâ žâ â °â " }, { "input": "habitations", "output": "â “â â ƒâ Šâ žâ â °â â Ž" }, { "input": "habitats", "output": "â “â â ƒâ Šâ žâ â žâ Ž" }, { "input": "habits", "output": "â “â â ƒâ Šâ žâ Ž" }, { "input": "habitual", "output": "â “â â ƒâ Šâ žâ ¥â â ‡" }, { "input": "habitually", "output": "â “â â ƒâ Šâ žâ ¥â â ‡â ‡â ½" }, { "input": "habituate", "output": "â “â â ƒâ Šâ žâ ¥â â žâ ‘" }, { "input": "habituated", "output": "â “â â ƒâ Šâ žâ ¥â â žâ «" }, { "input": "habituates", "output": "â “â â ƒâ Šâ žâ ¥â â žâ ‘â Ž" }, { "input": "habituating", "output": "â “â â ƒâ Šâ žâ ¥â â žâ ¬" }, { "input": "habituation", "output": "â “â â ƒâ Šâ žâ ¥â â °â " }, { "input": "habitué", "output": "â “â â ƒâ Šâ žâ ¥â  â ˜â »â â ˜â ‰" }, { "input": "habitués", "output": "â “â â ƒâ Šâ žâ ¥â  â ˜â »â â ˜â ‰â Ž" }, { "input": "hacienda", "output": "â “â â ‰â Šâ ¢â ™â " }, { "input": "haciendas", "output": "â “â â ‰â Šâ ¢â ™â â Ž" }, { "input": "hack", "output": "â “â â ‰â …" }, { "input": "hacked", "output": "â “â â ‰â …â «" }, { "input": "hacker", "output": "â “â â ‰â …â »" }, { "input": "hackers", "output": "â “â â ‰â …⠻⠎" }, { "input": "hacking", "output": "â “â â ‰â …â ¬" }, { "input": "hackle", "output": "â “â â ‰â …⠇⠑" }, { "input": "hackles", "output": "â “â â ‰â …⠇⠑⠎" }, { "input": "hackney", "output": "â “â â ‰â …â â ‘â ½" }, { "input": "hackneyed", "output": "â “â â ‰â …â â ‘⠽⠫" }, { "input": "hackneying", "output": "â “â â ‰â …â â ‘⠽⠬" }, { "input": "hackneys", "output": "â “â â ‰â …â â ‘⠽⠎" }, { "input": "hacks", "output": "â “â â ‰â …â Ž" }, { "input": "hacksaw", "output": "â “â â ‰â …â Žâ â º" }, { "input": "hacksaws", "output": "â “â â ‰â …â Žâ â ºâ Ž" }, { "input": "had", "output": "⠸⠓" }, { "input": "haddock", "output": "⠸⠓⠙⠕⠉⠅" }, { "input": "haddocks", "output": "⠸⠓⠙⠕⠉⠅⠎" }, { "input": "haemoglobin", "output": "â “â â ‘â â •⠛⠇⠕⠃⠔" }, { "input": "haemophilia", "output": "â “â â ‘â â •â â “⠊⠇⠊â " }, { "input": "haemorrhage", "output": "â “â â ‘â â •â —â —â “â â ›â ‘" }, { "input": "haemorrhaged", "output": "â “â â ‘â â •â —â —â “â â ›â «" }, { "input": "haemorrhages", "output": "â “â â ‘â â •â —â —â “â â ›â ‘â Ž" }, { "input": "haemorrhaging", "output": "â “â â ‘â â •â —â —â “â â ›â ¬" }, { "input": "haemorrhoids", "output": "â “â â ‘â â •⠗⠗⠓⠕⠊⠙⠎" }, { "input": "hafnium", "output": "â “â â ‹â â Šâ ¥â " }, { "input": "haft", "output": "â “â â ‹â ž" }, { "input": "hafts", "output": "â “â â ‹â žâ Ž" }, { "input": "hag", "output": "â “â â ›" }, { "input": "haggard", "output": "â “â â ¶â œâ ™" }, { "input": "haggle", "output": "â “â â ¶â ‡â ‘" }, { "input": "haggled", "output": "â “â â ¶â ‡â «" }, { "input": "haggler", "output": "â “â â ¶â ‡â »" }, { "input": "hagglers", "output": "â “â â ¶â ‡â »â Ž" }, { "input": "haggles", "output": "â “â â ¶â ‡â ‘â Ž" }, { "input": "haggling", "output": "â “â â ¶â ‡â ¬" }, { "input": "hags", "output": "â “â â ›â Ž" }, { "input": "hah", "output": "â “â â “" }, { "input": "haiku", "output": "â “â â Šâ …â ¥" }, { "input": "hail", "output": "â “â â Šâ ‡" }, { "input": "hailed", "output": "â “â â Šâ ‡â «" }, { "input": "hailing", "output": "â “â â Šâ ‡â ¬" }, { "input": "hails", "output": "â “â â Šâ ‡â Ž" }, { "input": "hailstone", "output": "â “â â Šâ ‡â Œâ â •" }, { "input": "hailstones", "output": "â “â â Šâ ‡â Œâ â •â Ž" }, { "input": "hailstorm", "output": "â “â â Šâ ‡â Œâ •â —â " }, { "input": "hailstorms", "output": "â “â â Šâ ‡â Œâ •â —â â Ž" }, { "input": "hair", "output": "â “â â Šâ —" }, { "input": "hairbreadth", "output": "â “â â Šâ —⠃⠗⠂⠙⠹" }, { "input": "hairbreadths", "output": "â “â â Šâ —⠃⠗⠂⠙⠹⠎" }, { "input": "hairbrush", "output": "â “â â Šâ —⠃⠗⠥⠩" }, { "input": "hairbrushes", "output": "â “â â Šâ —⠃⠗⠥⠩⠑⠎" }, { "input": "haircut", "output": "â “â â Šâ —⠉⠥⠞" }, { "input": "haircuts", "output": "â “â â Šâ —⠉⠥⠞⠎" }, { "input": "hairdo", "output": "â “â â Šâ —⠙⠕" }, { "input": "hairdos", "output": "â “â â Šâ —⠙⠕⠎" }, { "input": "hairdresser", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠻" }, { "input": "hairdressers", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠻⠎" }, { "input": "hairdressing", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠬" }, { "input": "haired", "output": "â “â â Šâ —â «" }, { "input": "hairier", "output": "â “â â Šâ —â Šâ »" }, { "input": "hairiest", "output": "â “â â Šâ —â Šâ ‘â Œ" }, { "input": "hairiness", "output": "â “â â Šâ —â Šâ °â Ž" }, { "input": "hairless", "output": "â “â â Šâ —⠨⠎" }, { "input": "hairline", "output": "â “â â Šâ —⠇⠔⠑" }, { "input": "hairlines", "output": "â “â â Šâ —⠇⠔⠑⠎" }, { "input": "hairnet", "output": "â “â â Šâ —â â ‘â ž" }, { "input": "hairnets", "output": "â “â â Šâ —â â ‘â žâ Ž" }, { "input": "hairpiece", "output": "â “â â Šâ —â â Šâ ‘⠉⠑" }, { "input": "hairpieces", "output": "â “â â Šâ —â â Šâ ‘⠉⠑⠎" }, { "input": "hairpin", "output": "â “â â Šâ —â â ”" }, { "input": "hairpins", "output": "â “â â Šâ —â â ”â Ž" }, { "input": "hairs", "output": "â “â â Šâ —â Ž" }, { "input": "hairsbreadth", "output": "â “â â Šâ —⠎⠃⠗⠂⠙⠹" }, { "input": "hairsbreadths", "output": "â “â â Šâ —⠎⠃⠗⠂⠙⠹⠎" }, { "input": "hairsplitting", "output": "â “â â Šâ —â Žâ â ‡â Šâ žâ žâ ¬" }, { "input": "hairspring", "output": "â “â â Šâ —â Žâ â —â ¬" }, { "input": "hairsprings", "output": "â “â â Šâ —â Žâ â —⠬⠎" }, { "input": "hairstyle", "output": "â “â â Šâ —⠌⠽⠇⠑" }, { "input": "hairstyles", "output": "â “â â Šâ —⠌⠽⠇⠑⠎" }, { "input": "hairstylist", "output": "â “â â Šâ —⠌⠽⠇⠊⠌" }, { "input": "hairstylists", "output": "â “â â Šâ —⠌⠽⠇⠊⠌⠎" }, { "input": "hairy", "output": "â “â â Šâ —â ½" }, { "input": "hake", "output": "â “â â …â ‘" }, { "input": "hakes", "output": "â “â â …â ‘â Ž" }, { "input": "halberd", "output": "â “â â ‡â ƒâ »â ™" }, { "input": "halberds", "output": "â “â â ‡â ƒâ »â ™â Ž" }, { "input": "halcyon", "output": "â “â â ‡â ‰â ½â •â " }, { "input": "hale", "output": "â “â â ‡â ‘" }, { "input": "haled", "output": "â “â â ‡â «" }, { "input": "haler", "output": "â “â â ‡â »" }, { "input": "hales", "output": "â “â â ‡â ‘â Ž" }, { "input": "halest", "output": "â “â â ‡â ‘â Œ" }, { "input": "half", "output": "â “â â ‡â ‹" }, { "input": "halfback", "output": "â “â â ‡â ‹â ƒâ â ‰â …" }, { "input": "halfbacks", "output": "â “â â ‡â ‹â ƒâ â ‰â …â Ž" }, { "input": "halfhearted", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫" }, { "input": "halfheartedly", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫⠇⠽" }, { "input": "halfheartedness", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫⠰⠎" }, { "input": "halfpence", "output": "â “â â ‡â ‹â â °â ‘" }, { "input": "halfpennies", "output": "â “â â ‡â ‹â â ¢â â Šâ ‘â Ž" }, { "input": "halfpenny", "output": "â “â â ‡â ‹â â ¢â â ½" }, { "input": "halftime", "output": "â “â â ‡â ‹â â ž" }, { "input": "halftimes", "output": "â “â â ‡â ‹â â žâ Ž" }, { "input": "halfway", "output": "â “â â ‡â ‹â ºâ â ½" }, { "input": "halibut", "output": "â “â â ‡â Šâ ƒâ ¥â ž" }, { "input": "halibuts", "output": "â “â â ‡â Šâ ƒâ ¥â žâ Ž" }, { "input": "haling", "output": "â “â â ‡â ¬" }, { "input": "halitosis", "output": "â “â â ‡â Šâ žâ •â Žâ Šâ Ž" }, { "input": "hall", "output": "â “â â ‡â ‡" }, { "input": "halleluiah", "output": "â “â â ‡â ‡â ‘⠇⠥⠊â â “" }, { "input": "halleluiahs", "output": "â “â â ‡â ‡â ‘⠇⠥⠊â â “â Ž" }, { "input": "hallelujah", "output": "â “â â ‡â ‡â ‘⠇⠥⠚â â “" }, { "input": "hallelujahs", "output": "â “â â ‡â ‡â ‘⠇⠥⠚â â “â Ž" }, { "input": "hallmark", "output": "â “â â ‡â ‡â â œâ …" }, { "input": "hallmarked", "output": "â “â â ‡â ‡â â œâ …â «" }, { "input": "hallmarking", "output": "â “â â ‡â ‡â â œâ …â ¬" }, { "input": "hallmarks", "output": "â “â â ‡â ‡â â œâ …â Ž" }, { "input": "hallow", "output": "â “â â ‡â ‡â ª" }, { "input": "hallowed", "output": "â “â â ‡â ‡â ªâ «" }, { "input": "hallowing", "output": "â “â â ‡â ‡â ªâ ¬" }, { "input": "hallows", "output": "â “â â ‡â ‡â ªâ Ž" }, { "input": "halls", "output": "â “â â ‡â ‡â Ž" }, { "input": "hallucinate", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ ‘" }, { "input": "hallucinated", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ «" }, { "input": "hallucinates", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ ‘â Ž" }, { "input": "hallucinating", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ ¬" }, { "input": "hallucination", "output": "â “â â ‡â ‡â ¥â ‰â ”â â °â " }, { "input": "hallucinations", "output": "â “â â ‡â ‡â ¥â ‰â ”â â °â â Ž" }, { "input": "hallucinatory", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ •â —â ½" }, { "input": "hallucinogen", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢" }, { "input": "hallucinogenic", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠊⠉" }, { "input": "hallucinogenics", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠊⠉⠎" }, { "input": "hallucinogens", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠎" }, { "input": "hallway", "output": "â “â â ‡â ‡â ºâ â ½" }, { "input": "hallways", "output": "â “â â ‡â ‡â ºâ â ½â Ž" }, { "input": "halo", "output": "â “â â ‡â •" }, { "input": "haloed", "output": "â “â â ‡â •â «" }, { "input": "haloes", "output": "â “â â ‡â •â ‘â Ž" }, { "input": "halogen", "output": "â “â â ‡â •⠛⠢" }, { "input": "halogens", "output": "â “â â ‡â •⠛⠢⠎" }, { "input": "haloing", "output": "â “â â ‡â •â ¬" }, { "input": "halon", "output": "â “â â ‡â •â " }, { "input": "halos", "output": "â “â â ‡â •â Ž" }, { "input": "halt", "output": "â “â â ‡â ž" }, { "input": "halted", "output": "â “â â ‡â žâ «" }, { "input": "halter", "output": "â “â â ‡â žâ »" }, { "input": "haltered", "output": "â “â â ‡â žâ »â «" }, { "input": "haltering", "output": "â “â â ‡â žâ »â ¬" }, { "input": "halters", "output": "â “â â ‡â žâ »â Ž" }, { "input": "halting", "output": "â “â â ‡â žâ ¬" }, { "input": "haltingly", "output": "â “â â ‡â žâ ¬â ‡â ½" }, { "input": "halts", "output": "â “â â ‡â žâ Ž" }, { "input": "halve", "output": "â “â â ‡â §â ‘" }, { "input": "halved", "output": "â “â â ‡â §â «" }, { "input": "halves", "output": "â “â â ‡â §â ‘â Ž" }, { "input": "halving", "output": "â “â â ‡â §â ¬" }, { "input": "halyard", "output": "â “â â ‡â ½â œâ ™" }, { "input": "halyards", "output": "â “â â ‡â ½â œâ ™â Ž" }, { "input": "ham", "output": "â “â â " }, { "input": "hamburger", "output": "â “â â â ƒâ ¥â —⠛⠻" }, { "input": "hamburgers", "output": "â “â â â ƒâ ¥â —⠛⠻⠎" }, { "input": "hamlet", "output": "â “â â â ‡â ‘â ž" }, { "input": "hamlets", "output": "â “â â â ‡â ‘â žâ Ž" }, { "input": "hammed", "output": "â “â â â â «" }, { "input": "hammer", "output": "â “â â â â »" }, { "input": "hammered", "output": "â “â â â â »â «" }, { "input": "hammerhead", "output": "â “â â â â »â “â ‚â ™" }, { "input": "hammerheads", "output": "â “â â â â »â “⠂⠙⠎" }, { "input": "hammering", "output": "â “â â â â »â ¬" }, { "input": "hammerings", "output": "â “â â â â »â ¬â Ž" }, { "input": "hammers", "output": "â “â â â â »â Ž" }, { "input": "hamming", "output": "â “â â â â ¬" }, { "input": "hammock", "output": "â “â â â â •⠉⠅" }, { "input": "hammocks", "output": "â “â â â â •⠉⠅⠎" }, { "input": "hamper", "output": "â “â â â â »" }, { "input": "hampered", "output": "â “â â â â »â «" }, { "input": "hampering", "output": "â “â â â â »â ¬" }, { "input": "hampers", "output": "â “â â â â »â Ž" }, { "input": "hams", "output": "â “â â â Ž" }, { "input": "hamster", "output": "â “â â â Œâ »" }, { "input": "hamsters", "output": "â “â â â Œâ »â Ž" }, { "input": "hamstring", "output": "â “â â â Œâ —â ¬" }, { "input": "hamstringing", "output": "â “â â â Œâ —⠬⠬" }, { "input": "hamstrings", "output": "â “â â â Œâ —⠬⠎" }, { "input": "hamstrung", "output": "â “â â â Œâ —â ¥â â ›" }, { "input": "hand", "output": "â “â ¯" }, { "input": "handbag", "output": "⠓⠯⠃â â ›" }, { "input": "handbags", "output": "⠓⠯⠃â â ›â Ž" }, { "input": "handball", "output": "⠓⠯⠃â â ‡â ‡" }, { "input": "handballs", "output": "⠓⠯⠃â â ‡â ‡â Ž" }, { "input": "handbill", "output": "⠓⠯⠃⠊⠇⠇" }, { "input": "handbills", "output": "⠓⠯⠃⠊⠇⠇⠎" }, { "input": "handbook", "output": "⠓⠯⠃⠕⠕⠅" }, { "input": "handbooks", "output": "⠓⠯⠃⠕⠕⠅⠎" }, { "input": "handcar", "output": "⠓⠯⠉⠜" }, { "input": "handcars", "output": "⠓⠯⠉⠜⠎" }, { "input": "handcart", "output": "⠓⠯⠉⠜⠞" }, { "input": "handcarts", "output": "⠓⠯⠉⠜⠞⠎" }, { "input": "handcraft", "output": "⠓⠯⠉⠗â â ‹â ž" }, { "input": "handcrafted", "output": "⠓⠯⠉⠗â â ‹â žâ «" }, { "input": "handcrafting", "output": "⠓⠯⠉⠗â â ‹â žâ ¬" }, { "input": "handcrafts", "output": "⠓⠯⠉⠗â â ‹â žâ Ž" }, { "input": "handcuff", "output": "⠓⠯⠉⠥⠋⠋" }, { "input": "handcuffed", "output": "⠓⠯⠉⠥⠖⠫" }, { "input": "handcuffing", "output": "⠓⠯⠉⠥⠖⠬" }, { "input": "handcuffs", "output": "⠓⠯⠉⠥⠖⠎" }, { "input": "handed", "output": "⠓⠯⠫" }, { "input": "handedness", "output": "⠓⠯⠫⠰⠎" }, { "input": "handful", "output": "⠓⠯⠰⠇" }, { "input": "handfuls", "output": "⠓⠯⠰⠇⠎" }, { "input": "handgun", "output": "⠓⠯⠛⠥â " }, { "input": "handguns", "output": "⠓⠯⠛⠥â â Ž" }, { "input": "handicap", "output": "⠓⠯⠊⠉â â " }, { "input": "handicapped", "output": "⠓⠯⠊⠉â â â â «" }, { "input": "handicapper", "output": "⠓⠯⠊⠉â â â â »" }, { "input": "handicappers", "output": "⠓⠯⠊⠉â â â â »â Ž" }, { "input": "handicapping", "output": "⠓⠯⠊⠉â â â â ¬" }, { "input": "handicaps", "output": "⠓⠯⠊⠉â â â Ž" }, { "input": "handicraft", "output": "⠓⠯⠊⠉⠗â â ‹â ž" }, { "input": "handicrafts", "output": "⠓⠯⠊⠉⠗â â ‹â žâ Ž" }, { "input": "handier", "output": "⠓⠯⠊⠻" }, { "input": "handiest", "output": "⠓⠯⠊⠑⠌" }, { "input": "handily", "output": "⠓⠯⠊⠇⠽" }, { "input": "handiness", "output": "⠓⠯⠊⠰⠎" }, { "input": "handing", "output": "⠓⠯⠬" }, { "input": "handiwork", "output": "⠓⠯⠊â â º" }, { "input": "handkerchief", "output": "⠓⠯⠅⠻⠡⠊⠑⠋" }, { "input": "handkerchiefs", "output": "⠓⠯⠅⠻⠡⠊⠑⠋⠎" }, { "input": "handkerchieves", "output": "⠓⠯⠅⠻⠡⠊⠑⠧⠑⠎" }, { "input": "handle", "output": "⠓⠯⠇⠑" }, { "input": "handlebar", "output": "⠓⠯⠇⠑⠃⠜" }, { "input": "handlebars", "output": "⠓⠯⠇⠑⠃⠜⠎" }, { "input": "handled", "output": "⠓⠯⠇⠫" }, { "input": "handler", "output": "⠓⠯⠇⠻" }, { "input": "handlers", "output": "⠓⠯⠇⠻⠎" }, { "input": "handles", "output": "⠓⠯⠇⠑⠎" }, { "input": "handling", "output": "⠓⠯⠇⠬" }, { "input": "handmade", "output": "â “â ¯â â â ™â ‘" }, { "input": "handmaid", "output": "â “â ¯â â â Šâ ™" }, { "input": "handmaiden", "output": "â “â ¯â â â Šâ ™â ¢" }, { "input": "handmaidens", "output": "â “â ¯â â â Šâ ™â ¢â Ž" }, { "input": "handmaids", "output": "â “â ¯â â â Šâ ™â Ž" }, { "input": "handout", "output": "⠓⠯⠳⠞" }, { "input": "handouts", "output": "⠓⠯⠳⠞⠎" }, { "input": "handpick", "output": "â “â ¯â â Šâ ‰â …" }, { "input": "handpicked", "output": "â “â ¯â â Šâ ‰â …â «" }, { "input": "handpicking", "output": "â “â ¯â â Šâ ‰â …â ¬" }, { "input": "handpicks", "output": "â “â ¯â â Šâ ‰â …â Ž" }, { "input": "handrail", "output": "⠓⠯⠗â â Šâ ‡" }, { "input": "handrails", "output": "⠓⠯⠗â â Šâ ‡â Ž" }, { "input": "hands", "output": "⠓⠯⠎" }, { "input": "handset", "output": "⠓⠯⠎⠑⠞" }, { "input": "handsets", "output": "⠓⠯⠎⠑⠞⠎" }, { "input": "handsful", "output": "⠓⠯⠎⠰⠇" }, { "input": "handshake", "output": "⠓⠯⠩â â …â ‘" }, { "input": "handshakes", "output": "⠓⠯⠩â â …â ‘â Ž" }, { "input": "handshaking", "output": "⠓⠯⠩â â …â ¬" }, { "input": "handsome", "output": "â “â ¯â â Ž" }, { "input": "handsomely", "output": "â “â ¯â â Žâ ‡â ½" }, { "input": "handsomeness", "output": "â “â ¯â â Žâ °â Ž" }, { "input": "handsomer", "output": "â “â ¯â â Žâ —" }, { "input": "handsomest", "output": "â “â ¯â â Žâ Œ" }, { "input": "handspring", "output": "⠓⠯⠎â â —â ¬" }, { "input": "handsprings", "output": "⠓⠯⠎â â —⠬⠎" }, { "input": "handstand", "output": "⠓⠯⠌⠯" }, { "input": "handstands", "output": "⠓⠯⠌⠯⠎" }, { "input": "handwork", "output": "â “â ¯â â º" }, { "input": "handwriting", "output": "⠓⠯⠺⠗⠊⠞⠬" }, { "input": "handwritten", "output": "⠓⠯⠺⠗⠊⠞⠞⠢" }, { "input": "handy", "output": "⠓⠯⠽" }, { "input": "handyman", "output": "⠓⠯⠽â â â " }, { "input": "handymen", "output": "⠓⠯⠽â â ¢" }, { "input": "hang", "output": "â “â â â ›" }, { "input": "hangar", "output": "â “â â â ›â œ" }, { "input": "hangars", "output": "â “â â â ›â œâ Ž" }, { "input": "hangdog", "output": "â “â â â ›â ™â •â ›" }, { "input": "hanged", "output": "â “â â â ›â «" }, { "input": "hanger", "output": "â “â â â ›â »" }, { "input": "hangers", "output": "â “â â â ›â »â Ž" }, { "input": "hanging", "output": "â “â â â ›â ¬" }, { "input": "hangings", "output": "â “â â â ›â ¬â Ž" }, { "input": "hangman", "output": "â “â â â ›â â â " }, { "input": "hangmen", "output": "â “â â â ›â â ¢" }, { "input": "hangnail", "output": "â “â â â ›â â â Šâ ‡" }, { "input": "hangnails", "output": "â “â â â ›â â â Šâ ‡â Ž" }, { "input": "hangout", "output": "â “â â â ›â ³â ž" }, { "input": "hangouts", "output": "â “â â â ›â ³â žâ Ž" }, { "input": "hangover", "output": "â “â â â ›â •â §â »" }, { "input": "hangovers", "output": "â “â â â ›â •⠧⠻⠎" }, { "input": "hangs", "output": "â “â â â ›â Ž" }, { "input": "hank", "output": "â “â â â …" }, { "input": "hanker", "output": "â “â â â …â »" }, { "input": "hankered", "output": "â “â â â …⠻⠫" }, { "input": "hankering", "output": "â “â â â …⠻⠬" }, { "input": "hankerings", "output": "â “â â â …⠻⠬⠎" }, { "input": "hankers", "output": "â “â â â …⠻⠎" }, { "input": "hankie", "output": "â “â â â …â Šâ ‘" }, { "input": "hankies", "output": "â “â â â …â Šâ ‘â Ž" }, { "input": "hanks", "output": "â “â â â …â Ž" }, { "input": "hanky", "output": "â “â â â …â ½" }, { "input": "hansom", "output": "â “â â â Žâ •â " }, { "input": "hansoms", "output": "â “â â â Žâ •â â Ž" }, { "input": "haphazard", "output": "â “â â â “â â µâ œâ ™" }, { "input": "haphazardly", "output": "â “â â â “â â µâ œâ ™â ‡â ½" }, { "input": "hapless", "output": "â “â â â ¨â Ž" }, { "input": "happen", "output": "â “â â â â ¢" }, { "input": "happened", "output": "â “â â â â ¢â «" }, { "input": "happening", "output": "â “â â â â ¢â ¬" }, { "input": "happenings", "output": "â “â â â â ¢â ¬â Ž" }, { "input": "happens", "output": "â “â â â â ¢â Ž" }, { "input": "happenstance", "output": "â “â â â â ¢â Œâ ¨â ‘" }, { "input": "happenstances", "output": "â “â â â â ¢â Œâ ¨â ‘â Ž" }, { "input": "happier", "output": "â “â â â â Šâ »" }, { "input": "happiest", "output": "â “â â â â Šâ ‘â Œ" }, { "input": "happily", "output": "â “â â â â Šâ ‡â ½" }, { "input": "happiness", "output": "â “â â â â Šâ °â Ž" }, { "input": "happy", "output": "â “â â â â ½" }, { "input": "harangue", "output": "â “â œâ â â ›â ¥â ‘" }, { "input": "harangued", "output": "â “â œâ â â ›â ¥â «" }, { "input": "harangues", "output": "â “â œâ â â ›â ¥â ‘â Ž" }, { "input": "haranguing", "output": "â “â œâ â â ›â ¥â ¬" }, { "input": "harass", "output": "â “â œâ â Žâ Ž" }, { "input": "harassed", "output": "â “â œâ â Žâ Žâ «" }, { "input": "harasses", "output": "â “â œâ â Žâ Žâ ‘â Ž" }, { "input": "harassing", "output": "â “â œâ â Žâ Žâ ¬" }, { "input": "harassment", "output": "â “â œâ â Žâ Žâ °â ž" }, { "input": "harbinger", "output": "⠓⠜⠃⠬⠻" }, { "input": "harbingers", "output": "⠓⠜⠃⠬⠻⠎" }, { "input": "harbor", "output": "⠓⠜⠃⠕⠗" }, { "input": "harbored", "output": "⠓⠜⠃⠕⠗⠫" }, { "input": "harboring", "output": "⠓⠜⠃⠕⠗⠬" }, { "input": "harbors", "output": "⠓⠜⠃⠕⠗⠎" }, { "input": "hard", "output": "⠓⠜⠙" }, { "input": "hardback", "output": "⠓⠜⠙⠃â â ‰â …" }, { "input": "hardbacks", "output": "⠓⠜⠙⠃â â ‰â …â Ž" }, { "input": "hardball", "output": "⠓⠜⠙⠃â â ‡â ‡" }, { "input": "hardcover", "output": "⠓⠜⠙⠉⠕⠧⠻" }, { "input": "hardcovers", "output": "⠓⠜⠙⠉⠕⠧⠻⠎" }, { "input": "harden", "output": "⠓⠜⠙⠢" }, { "input": "hardened", "output": "⠓⠜⠙⠢⠫" }, { "input": "hardener", "output": "⠓⠜⠙⠢⠻" }, { "input": "hardeners", "output": "⠓⠜⠙⠢⠻⠎" }, { "input": "hardening", "output": "⠓⠜⠙⠢⠬" }, { "input": "hardens", "output": "⠓⠜⠙⠢⠎" }, { "input": "harder", "output": "⠓⠜⠙⠻" }, { "input": "hardest", "output": "⠓⠜⠙⠑⠌" }, { "input": "hardheaded", "output": "⠓⠜⠙⠓⠂⠙⠫" }, { "input": "hardheadedly", "output": "⠓⠜⠙⠓⠂⠙⠫⠇⠽" }, { "input": "hardheadedness", "output": "⠓⠜⠙⠓⠂⠙⠫⠰⠎" }, { "input": "hardhearted", "output": "⠓⠜⠙⠓⠑⠜⠞⠫" }, { "input": "hardheartedly", "output": "⠓⠜⠙⠓⠑⠜⠞⠫⠇⠽" }, { "input": "hardheartedness", "output": "⠓⠜⠙⠓⠑⠜⠞⠫⠰⠎" }, { "input": "hardier", "output": "⠓⠜⠙⠊⠻" }, { "input": "hardiest", "output": "⠓⠜⠙⠊⠑⠌" }, { "input": "hardily", "output": "⠓⠜⠙⠊⠇⠽" }, { "input": "hardiness", "output": "⠓⠜⠙⠊⠰⠎" }, { "input": "hardline", "output": "⠓⠜⠙⠇⠔⠑" }, { "input": "hardliner", "output": "⠓⠜⠙⠇⠔⠻" }, { "input": "hardliners", "output": "⠓⠜⠙⠇⠔⠻⠎" }, { "input": "hardly", "output": "⠓⠜⠙⠇⠽" }, { "input": "hardness", "output": "⠓⠜⠙⠰⠎" }, { "input": "hardship", "output": "⠓⠜⠙⠩⠊â " }, { "input": "hardships", "output": "⠓⠜⠙⠩⠊â â Ž" }, { "input": "hardtack", "output": "⠓⠜⠙⠞â â ‰â …" }, { "input": "hardtop", "output": "⠓⠜⠙⠞⠕â " }, { "input": "hardtops", "output": "⠓⠜⠙⠞⠕â â Ž" }, { "input": "hardware", "output": "⠓⠜⠙⠺⠜⠑" }, { "input": "hardwood", "output": "⠓⠜⠙⠺⠕⠕⠙" }, { "input": "hardwoods", "output": "⠓⠜⠙⠺⠕⠕⠙⠎" }, { "input": "hardy", "output": "⠓⠜⠙⠽" }, { "input": "hare", "output": "⠓⠜⠑" }, { "input": "harebrained", "output": "⠓⠜⠑⠃⠗â â ”â «" }, { "input": "hared", "output": "⠓⠜⠫" }, { "input": "harelip", "output": "⠓⠜⠑⠇⠊â " }, { "input": "harelips", "output": "⠓⠜⠑⠇⠊â â Ž" }, { "input": "harem", "output": "⠓⠜⠑â " }, { "input": "harems", "output": "⠓⠜⠑â â Ž" }, { "input": "hares", "output": "⠓⠜⠑⠎" }, { "input": "haring", "output": "⠓⠜⠬" }, { "input": "hark", "output": "⠓⠜⠅" }, { "input": "harked", "output": "⠓⠜⠅⠫" }, { "input": "harken", "output": "⠓⠜⠅⠢" }, { "input": "harkened", "output": "⠓⠜⠅⠢⠫" }, { "input": "harkening", "output": "⠓⠜⠅⠢⠬" }, { "input": "harkens", "output": "⠓⠜⠅⠢⠎" }, { "input": "harking", "output": "⠓⠜⠅⠬" }, { "input": "harks", "output": "⠓⠜⠅⠎" }, { "input": "harlequin", "output": "⠓⠜⠇⠑⠟⠥⠔" }, { "input": "harlequins", "output": "⠓⠜⠇⠑⠟⠥⠔⠎" }, { "input": "harlot", "output": "⠓⠜⠇⠕⠞" }, { "input": "harlots", "output": "⠓⠜⠇⠕⠞⠎" }, { "input": "harm", "output": "â “â œâ " }, { "input": "harmed", "output": "â “â œâ â «" }, { "input": "harmful", "output": "â “â œâ â °â ‡" }, { "input": "harmfully", "output": "â “â œâ â °â ‡â ‡â ½" }, { "input": "harmfulness", "output": "â “â œâ â °â ‡â °â Ž" }, { "input": "harming", "output": "â “â œâ â ¬" }, { "input": "harmless", "output": "â “â œâ â ¨â Ž" }, { "input": "harmlessly", "output": "â “â œâ â ¨â Žâ ‡â ½" }, { "input": "harmlessness", "output": "â “â œâ â ¨â Žâ °â Ž" }, { "input": "harmonic", "output": "â “â œâ â •â â Šâ ‰" }, { "input": "harmonica", "output": "â “â œâ â •â â Šâ ‰â " }, { "input": "harmonically", "output": "â “â œâ â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "harmonicas", "output": "â “â œâ â •â â Šâ ‰â â Ž" }, { "input": "harmonics", "output": "â “â œâ â •â â Šâ ‰â Ž" }, { "input": "harmonies", "output": "â “â œâ â •â â Šâ ‘â Ž" }, { "input": "harmonious", "output": "â “â œâ â •â â Šâ ³â Ž" }, { "input": "harmoniously", "output": "â “â œâ â •â â Šâ ³â Žâ ‡â ½" }, { "input": "harmoniousness", "output": "â “â œâ â •â â Šâ ³â Žâ °â Ž" }, { "input": "harmonization", "output": "â “â œâ â •â â Šâ µâ â °â " }, { "input": "harmonize", "output": "â “â œâ â •â â Šâ µâ ‘" }, { "input": "harmonized", "output": "â “â œâ â •â â Šâ µâ «" }, { "input": "harmonizes", "output": "â “â œâ â •â â Šâ µâ ‘â Ž" }, { "input": "harmonizing", "output": "â “â œâ â •â â Šâ µâ ¬" }, { "input": "harmony", "output": "â “â œâ â •â â ½" }, { "input": "harms", "output": "â “â œâ â Ž" }, { "input": "harness", "output": "⠓⠜⠰⠎" }, { "input": "harnessed", "output": "⠓⠜⠰⠎⠫" }, { "input": "harnesses", "output": "⠓⠜⠰⠎⠑⠎" }, { "input": "harnessing", "output": "⠓⠜⠰⠎⠬" }, { "input": "harp", "output": "â “â œâ " }, { "input": "harped", "output": "â “â œâ â «" }, { "input": "harpies", "output": "â “â œâ â Šâ ‘â Ž" }, { "input": "harping", "output": "â “â œâ â ¬" }, { "input": "harpist", "output": "â “â œâ â Šâ Œ" }, { "input": "harpists", "output": "â “â œâ â Šâ Œâ Ž" }, { "input": "harpoon", "output": "â “â œâ â •â •â " }, { "input": "harpooned", "output": "â “â œâ â •â •â â «" }, { "input": "harpooning", "output": "â “â œâ â •â •â â ¬" }, { "input": "harpoons", "output": "â “â œâ â •â •â â Ž" }, { "input": "harps", "output": "â “â œâ â Ž" }, { "input": "harpsichord", "output": "â “â œâ â Žâ Šâ ¡â •â —â ™" }, { "input": "harpsichords", "output": "â “â œâ â Žâ Šâ ¡â •⠗⠙⠎" }, { "input": "harpy", "output": "â “â œâ â ½" }, { "input": "harridan", "output": "⠓⠜⠗⠊⠙â â " }, { "input": "harridans", "output": "⠓⠜⠗⠊⠙â â â Ž" }, { "input": "harried", "output": "⠓⠜⠗⠊⠫" }, { "input": "harries", "output": "⠓⠜⠗⠊⠑⠎" }, { "input": "harrow", "output": "⠓⠜⠗⠪" }, { "input": "harrowed", "output": "⠓⠜⠗⠪⠫" }, { "input": "harrowing", "output": "⠓⠜⠗⠪⠬" }, { "input": "harrows", "output": "⠓⠜⠗⠪⠎" }, { "input": "harry", "output": "⠓⠜⠗⠽" }, { "input": "harrying", "output": "⠓⠜⠗⠽⠬" }, { "input": "harsh", "output": "⠓⠜⠩" }, { "input": "harsher", "output": "⠓⠜⠩⠻" }, { "input": "harshest", "output": "⠓⠜⠩⠑⠌" }, { "input": "harshly", "output": "⠓⠜⠩⠇⠽" }, { "input": "harshness", "output": "⠓⠜⠩⠰⠎" }, { "input": "hart", "output": "⠓⠜⠞" }, { "input": "harts", "output": "⠓⠜⠞⠎" }, { "input": "harvest", "output": "⠓⠜⠧⠑⠌" }, { "input": "harvested", "output": "⠓⠜⠧⠑⠌⠫" }, { "input": "harvester", "output": "⠓⠜⠧⠑⠌⠻" }, { "input": "harvesters", "output": "⠓⠜⠧⠑⠌⠻⠎" }, { "input": "harvesting", "output": "⠓⠜⠧⠑⠌⠬" }, { "input": "harvests", "output": "⠓⠜⠧⠑⠌⠎" }, { "input": "has", "output": "â “â â Ž" }, { "input": "hash", "output": "â “â â ©" }, { "input": "hashed", "output": "â “â â ©â «" }, { "input": "hasheesh", "output": "â “â â ©â ‘â ‘â ©" }, { "input": "hashes", "output": "â “â â ©â ‘â Ž" }, { "input": "hashing", "output": "â “â â ©â ¬" }, { "input": "hashish", "output": "â “â â ©â Šâ ©" }, { "input": "hasp", "output": "â “â â Žâ " }, { "input": "hasps", "output": "â “â â Žâ â Ž" }, { "input": "hassle", "output": "â “â â Žâ Žâ ‡â ‘" }, { "input": "hassled", "output": "â “â â Žâ Žâ ‡â «" }, { "input": "hassles", "output": "â “â â Žâ Žâ ‡â ‘â Ž" }, { "input": "hassling", "output": "â “â â Žâ Žâ ‡â ¬" }, { "input": "hassock", "output": "â “â â Žâ Žâ •⠉⠅" }, { "input": "hassocks", "output": "â “â â Žâ Žâ •⠉⠅⠎" }, { "input": "haste", "output": "â “â â Œâ ‘" }, { "input": "hasted", "output": "â “â â Œâ «" }, { "input": "hasten", "output": "â “â â Œâ ¢" }, { "input": "hastened", "output": "â “â â Œâ ¢â «" }, { "input": "hastening", "output": "â “â â Œâ ¢â ¬" }, { "input": "hastens", "output": "â “â â Œâ ¢â Ž" }, { "input": "hastes", "output": "â “â â Œâ ‘â Ž" }, { "input": "hastier", "output": "â “â â Œâ Šâ »" }, { "input": "hastiest", "output": "â “â â Œâ Šâ ‘â Œ" }, { "input": "hastily", "output": "â “â â Œâ Šâ ‡â ½" }, { "input": "hastiness", "output": "â “â â Œâ Šâ °â Ž" }, { "input": "hasting", "output": "â “â â Œâ ¬" }, { "input": "hasty", "output": "â “â â Œâ ½" }, { "input": "hat", "output": "â “â â ž" }, { "input": "hatch", "output": "â “â â žâ ¡" }, { "input": "hatchback", "output": "â “â â žâ ¡â ƒâ â ‰â …" }, { "input": "hatchbacks", "output": "â “â â žâ ¡â ƒâ â ‰â …â Ž" }, { "input": "hatched", "output": "â “â â žâ ¡â «" }, { "input": "hatcheries", "output": "â “â â žâ ¡â »â Šâ ‘â Ž" }, { "input": "hatchery", "output": "â “â â žâ ¡â »â ½" }, { "input": "hatches", "output": "â “â â žâ ¡â ‘â Ž" }, { "input": "hatchet", "output": "â “â â žâ ¡â ‘â ž" }, { "input": "hatchets", "output": "â “â â žâ ¡â ‘â žâ Ž" }, { "input": "hatching", "output": "â “â â žâ ¡â ¬" }, { "input": "hatchway", "output": "â “â â žâ ¡â ºâ â ½" }, { "input": "hatchways", "output": "â “â â žâ ¡â ºâ â ½â Ž" }, { "input": "hate", "output": "â “â â žâ ‘" }, { "input": "hated", "output": "â “â â žâ «" }, { "input": "hateful", "output": "â “â â žâ ‘â °â ‡" }, { "input": "hatefully", "output": "â “â â žâ ‘⠰⠇⠇⠽" }, { "input": "hatefulness", "output": "â “â â žâ ‘⠰⠇⠰⠎" }, { "input": "hater", "output": "â “â â žâ »" }, { "input": "haters", "output": "â “â â žâ »â Ž" }, { "input": "hates", "output": "â “â â žâ ‘â Ž" }, { "input": "hath", "output": "â “â â ¹" }, { "input": "hating", "output": "â “â â žâ ¬" }, { "input": "hatred", "output": "â “â â žâ —â «" }, { "input": "hatreds", "output": "â “â â žâ —â «â Ž" }, { "input": "hats", "output": "â “â â žâ Ž" }, { "input": "hatted", "output": "â “â â žâ žâ «" }, { "input": "hatter", "output": "â “â â žâ žâ »" }, { "input": "hatters", "output": "â “â â žâ žâ »â Ž" }, { "input": "hatting", "output": "â “â â žâ žâ ¬" }, { "input": "haughtier", "output": "â “â â ¥â £â žâ Šâ »" }, { "input": "haughtiest", "output": "â “â â ¥â £â žâ Šâ ‘â Œ" }, { "input": "haughtily", "output": "â “â â ¥â £â žâ Šâ ‡â ½" }, { "input": "haughtiness", "output": "â “â â ¥â £â žâ Šâ °â Ž" }, { "input": "haughty", "output": "â “â â ¥â £â žâ ½" }, { "input": "haul", "output": "â “â â ¥â ‡" }, { "input": "hauled", "output": "â “â â ¥â ‡â «" }, { "input": "hauler", "output": "â “â â ¥â ‡â »" }, { "input": "haulers", "output": "â “â â ¥â ‡â »â Ž" }, { "input": "hauling", "output": "â “â â ¥â ‡â ¬" }, { "input": "hauls", "output": "â “â â ¥â ‡â Ž" }, { "input": "haunch", "output": "â “â â ¥â â ¡" }, { "input": "haunches", "output": "â “â â ¥â â ¡â ‘â Ž" }, { "input": "haunt", "output": "â “â â ¥â â ž" }, { "input": "haunted", "output": "â “â â ¥â â žâ «" }, { "input": "haunting", "output": "â “â â ¥â â žâ ¬" }, { "input": "hauntingly", "output": "â “â â ¥â â žâ ¬â ‡â ½" }, { "input": "haunts", "output": "â “â â ¥â â žâ Ž" }, { "input": "hauteur", "output": "â “â â ¥â žâ ‘⠥⠗" }, { "input": "have", "output": "â “" }, { "input": "haven", "output": "â “â â §â ¢" }, { "input": "havens", "output": "â “â â §â ¢â Ž" }, { "input": "haversack", "output": "â “â â §â »â Žâ â ‰â …" }, { "input": "haversacks", "output": "â “â â §â »â Žâ â ‰â …â Ž" }, { "input": "haves", "output": "â “â â §â ‘â Ž" }, { "input": "having", "output": "â “â â §â ¬" }, { "input": "havoc", "output": "â “â â §â •â ‰" }, { "input": "haw", "output": "â “â â º" }, { "input": "hawed", "output": "â “â â ºâ «" }, { "input": "hawing", "output": "â “â â ºâ ¬" }, { "input": "hawk", "output": "â “â â ºâ …" }, { "input": "hawked", "output": "â “â â ºâ …â «" }, { "input": "hawker", "output": "â “â â ºâ …â »" }, { "input": "hawkers", "output": "â “â â ºâ …⠻⠎" }, { "input": "hawking", "output": "â “â â ºâ …â ¬" }, { "input": "hawkish", "output": "â “â â ºâ …â Šâ ©" }, { "input": "hawks", "output": "â “â â ºâ …â Ž" }, { "input": "haws", "output": "â “â â ºâ Ž" }, { "input": "hawser", "output": "â “â â ºâ Žâ »" }, { "input": "hawsers", "output": "â “â â ºâ Žâ »â Ž" }, { "input": "hawthorn", "output": "â “â â ºâ ¹â •â —â " }, { "input": "hawthorns", "output": "â “â â ºâ ¹â •â —â â Ž" }, { "input": "hay", "output": "â “â â ½" }, { "input": "haycock", "output": "â “â â ½â ‰â •⠉⠅" }, { "input": "haycocks", "output": "â “â â ½â ‰â •⠉⠅⠎" }, { "input": "hayed", "output": "â “â â ½â «" }, { "input": "haying", "output": "â “â â ½â ¬" }, { "input": "hayloft", "output": "â “â â ½â ‡â ·â ž" }, { "input": "haylofts", "output": "â “â â ½â ‡â ·â žâ Ž" }, { "input": "haymow", "output": "â “â â ½â â ª" }, { "input": "haymows", "output": "â “â â ½â â ªâ Ž" }, { "input": "hays", "output": "â “â â ½â Ž" }, { "input": "hayseed", "output": "â “â â ½â Žâ ‘â «" }, { "input": "hayseeds", "output": "â “â â ½â Žâ ‘â «â Ž" }, { "input": "haystack", "output": "â “â â ½â Œâ â ‰â …" }, { "input": "haystacks", "output": "â “â â ½â Œâ â ‰â …â Ž" }, { "input": "haywire", "output": "â “â â ½â ºâ Šâ —â ‘" }, { "input": "hazard", "output": "â “â â µâ œâ ™" }, { "input": "hazarded", "output": "â “â â µâ œâ ™â «" }, { "input": "hazarding", "output": "â “â â µâ œâ ™â ¬" }, { "input": "hazardous", "output": "â “â â µâ œâ ™â ³â Ž" }, { "input": "hazards", "output": "â “â â µâ œâ ™â Ž" }, { "input": "haze", "output": "â “â â µâ ‘" }, { "input": "hazed", "output": "â “â â µâ «" }, { "input": "hazel", "output": "â “â â µâ ‘â ‡" }, { "input": "hazelnut", "output": "â “â â µâ ‘â ‡â â ¥â ž" }, { "input": "hazelnuts", "output": "â “â â µâ ‘â ‡â â ¥â žâ Ž" }, { "input": "hazels", "output": "â “â â µâ ‘⠇⠎" }, { "input": "hazes", "output": "â “â â µâ ‘â Ž" }, { "input": "hazier", "output": "â “â â µâ Šâ »" }, { "input": "haziest", "output": "â “â â µâ Šâ ‘â Œ" }, { "input": "hazily", "output": "â “â â µâ Šâ ‡â ½" }, { "input": "haziness", "output": "â “â â µâ Šâ °â Ž" }, { "input": "hazing", "output": "â “â â µâ ¬" }, { "input": "hazings", "output": "â “â â µâ ¬â Ž" }, { "input": "hazy", "output": "â “â â µâ ½" }, { "input": "he", "output": "â “â ‘" }, { "input": "head", "output": "â “â ‚â ™" }, { "input": "headache", "output": "â “â ‚â ™â â ¡â ‘" }, { "input": "headaches", "output": "â “â ‚â ™â â ¡â ‘â Ž" }, { "input": "headband", "output": "⠓⠂⠙⠃⠯" }, { "input": "headbands", "output": "⠓⠂⠙⠃⠯⠎" }, { "input": "headboard", "output": "⠓⠂⠙⠃⠕⠜⠙" }, { "input": "headboards", "output": "⠓⠂⠙⠃⠕⠜⠙⠎" }, { "input": "headdress", "output": "⠓⠂⠙⠙⠗⠑⠎⠎" }, { "input": "headdresses", "output": "⠓⠂⠙⠙⠗⠑⠎⠎⠑⠎" }, { "input": "headed", "output": "⠓⠂⠙⠫" }, { "input": "header", "output": "⠓⠂⠙⠻" }, { "input": "headers", "output": "⠓⠂⠙⠻⠎" }, { "input": "headfirst", "output": "⠓⠂⠙⠋⠌" }, { "input": "headgear", "output": "⠓⠂⠙⠛⠑⠜" }, { "input": "headhunter", "output": "⠓⠂⠙⠓⠥â â žâ »" }, { "input": "headhunters", "output": "⠓⠂⠙⠓⠥â â žâ »â Ž" }, { "input": "headier", "output": "⠓⠂⠙⠊⠻" }, { "input": "headiest", "output": "⠓⠂⠙⠊⠑⠌" }, { "input": "heading", "output": "⠓⠂⠙⠬" }, { "input": "headings", "output": "⠓⠂⠙⠬⠎" }, { "input": "headland", "output": "⠓⠂⠙⠇⠯" }, { "input": "headlands", "output": "⠓⠂⠙⠇⠯⠎" }, { "input": "headless", "output": "⠓⠂⠙⠨⠎" }, { "input": "headlight", "output": "⠓⠂⠙⠇⠊⠣⠞" }, { "input": "headlights", "output": "⠓⠂⠙⠇⠊⠣⠞⠎" }, { "input": "headline", "output": "⠓⠂⠙⠇⠔⠑" }, { "input": "headlined", "output": "⠓⠂⠙⠇⠔⠫" }, { "input": "headlines", "output": "⠓⠂⠙⠇⠔⠑⠎" }, { "input": "headlining", "output": "⠓⠂⠙⠇⠔⠬" }, { "input": "headlock", "output": "⠓⠂⠙⠇⠕⠉⠅" }, { "input": "headlocks", "output": "⠓⠂⠙⠇⠕⠉⠅⠎" }, { "input": "headlong", "output": "⠓⠂⠙⠇⠰⠛" }, { "input": "headmaster", "output": "â “â ‚â ™â â â Œâ »" }, { "input": "headmasters", "output": "â “â ‚â ™â â â Œâ »â Ž" }, { "input": "headmistress", "output": "â “â ‚â ™â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "headmistresses", "output": "â “â ‚â ™â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "headphone", "output": "â “â ‚â ™â â “â â •" }, { "input": "headphones", "output": "â “â ‚â ™â â “â â •â Ž" }, { "input": "headquarter", "output": "⠓⠂⠙⠟⠥⠜⠞⠻" }, { "input": "headquarters", "output": "⠓⠂⠙⠟⠥⠜⠞⠻⠎" }, { "input": "headrest", "output": "⠓⠂⠙⠗⠑⠌" }, { "input": "headrests", "output": "⠓⠂⠙⠗⠑⠌⠎" }, { "input": "headroom", "output": "⠓⠂⠙⠗⠕⠕â " }, { "input": "heads", "output": "⠓⠂⠙⠎" }, { "input": "headset", "output": "⠓⠂⠙⠎⠑⠞" }, { "input": "headsets", "output": "⠓⠂⠙⠎⠑⠞⠎" }, { "input": "headstone", "output": "⠓⠂⠙⠌â â •" }, { "input": "headstones", "output": "⠓⠂⠙⠌â â •â Ž" }, { "input": "headstrong", "output": "⠓⠂⠙⠌⠗⠰⠛" }, { "input": "headwaiter", "output": "⠓⠂⠙⠺â â Šâ žâ »" }, { "input": "headwaiters", "output": "⠓⠂⠙⠺â â Šâ žâ »â Ž" }, { "input": "headwaters", "output": "⠓⠂⠙⠺â â žâ »â Ž" }, { "input": "headway", "output": "⠓⠂⠙⠺â â ½" }, { "input": "headwind", "output": "⠓⠂⠙⠺⠔⠙" }, { "input": "headwinds", "output": "⠓⠂⠙⠺⠔⠙⠎" }, { "input": "headword", "output": "⠓⠂⠙⠘⠺" }, { "input": "headwords", "output": "⠓⠂⠙⠘⠺⠎" }, { "input": "heady", "output": "⠓⠂⠙⠽" }, { "input": "heal", "output": "â “â ‚â ‡" }, { "input": "healed", "output": "⠓⠂⠇⠫" }, { "input": "healer", "output": "⠓⠂⠇⠻" }, { "input": "healers", "output": "⠓⠂⠇⠻⠎" }, { "input": "healing", "output": "⠓⠂⠇⠬" }, { "input": "heals", "output": "⠓⠂⠇⠎" }, { "input": "health", "output": "⠓⠂⠇⠹" }, { "input": "healthful", "output": "⠓⠂⠇⠹⠰⠇" }, { "input": "healthfully", "output": "⠓⠂⠇⠹⠰⠇⠇⠽" }, { "input": "healthfulness", "output": "⠓⠂⠇⠹⠰⠇⠰⠎" }, { "input": "healthier", "output": "⠓⠂⠇⠹⠊⠻" }, { "input": "healthiest", "output": "⠓⠂⠇⠹⠊⠑⠌" }, { "input": "healthily", "output": "⠓⠂⠇⠹⠊⠇⠽" }, { "input": "healthiness", "output": "⠓⠂⠇⠹⠊⠰⠎" }, { "input": "healthy", "output": "⠓⠂⠇⠹⠽" }, { "input": "heap", "output": "â “â ‚â " }, { "input": "heaped", "output": "â “â ‚â â «" }, { "input": "heaping", "output": "â “â ‚â â ¬" }, { "input": "heaps", "output": "â “â ‚â â Ž" }, { "input": "hear", "output": "â “â ‘â œ" }, { "input": "heard", "output": "⠓⠑⠜⠙" }, { "input": "hearer", "output": "⠓⠑⠜⠻" }, { "input": "hearers", "output": "⠓⠑⠜⠻⠎" }, { "input": "hearing", "output": "⠓⠑⠜⠬" }, { "input": "hearings", "output": "⠓⠑⠜⠬⠎" }, { "input": "hearken", "output": "⠓⠑⠜⠅⠢" }, { "input": "hearkened", "output": "⠓⠑⠜⠅⠢⠫" }, { "input": "hearkening", "output": "⠓⠑⠜⠅⠢⠬" }, { "input": "hearkens", "output": "⠓⠑⠜⠅⠢⠎" }, { "input": "hears", "output": "⠓⠑⠜⠎" }, { "input": "hearsay", "output": "⠓⠑⠜⠎â â ½" }, { "input": "hearse", "output": "⠓⠑⠜⠎⠑" }, { "input": "hearses", "output": "⠓⠑⠜⠎⠑⠎" }, { "input": "heart", "output": "⠓⠑⠜⠞" }, { "input": "heartache", "output": "⠓⠑⠜⠞â â ¡â ‘" }, { "input": "heartaches", "output": "⠓⠑⠜⠞â â ¡â ‘â Ž" }, { "input": "heartbeat", "output": "⠓⠑⠜⠞⠃⠂⠞" }, { "input": "heartbeats", "output": "⠓⠑⠜⠞⠃⠂⠞⠎" }, { "input": "heartbreak", "output": "⠓⠑⠜⠞⠃⠗⠂⠅" }, { "input": "heartbreaking", "output": "⠓⠑⠜⠞⠃⠗⠂⠅⠬" }, { "input": "heartbreaks", "output": "⠓⠑⠜⠞⠃⠗⠂⠅⠎" }, { "input": "heartbroken", "output": "⠓⠑⠜⠞⠃⠗⠕⠅⠢" }, { "input": "heartburn", "output": "⠓⠑⠜⠞⠃⠥⠗â " }, { "input": "hearten", "output": "⠓⠑⠜⠞⠢" }, { "input": "heartened", "output": "⠓⠑⠜⠞⠢⠫" }, { "input": "heartening", "output": "⠓⠑⠜⠞⠢⠬" }, { "input": "heartens", "output": "⠓⠑⠜⠞⠢⠎" }, { "input": "heartfelt", "output": "⠓⠑⠜⠞⠋⠑⠇⠞" }, { "input": "hearth", "output": "⠓⠑⠜⠹" }, { "input": "hearths", "output": "⠓⠑⠜⠹⠎" }, { "input": "heartier", "output": "⠓⠑⠜⠞⠊⠻" }, { "input": "hearties", "output": "⠓⠑⠜⠞⠊⠑⠎" }, { "input": "heartiest", "output": "⠓⠑⠜⠞⠊⠑⠌" }, { "input": "heartily", "output": "⠓⠑⠜⠞⠊⠇⠽" }, { "input": "heartiness", "output": "⠓⠑⠜⠞⠊⠰⠎" }, { "input": "heartland", "output": "⠓⠑⠜⠞⠇⠯" }, { "input": "heartlands", "output": "⠓⠑⠜⠞⠇⠯⠎" }, { "input": "heartless", "output": "⠓⠑⠜⠞⠨⠎" }, { "input": "heartlessly", "output": "⠓⠑⠜⠞⠨⠎⠇⠽" }, { "input": "heartlessness", "output": "⠓⠑⠜⠞⠨⠎⠰⠎" }, { "input": "heartrending", "output": "⠓⠑⠜⠞⠗⠢⠙⠬" }, { "input": "hearts", "output": "⠓⠑⠜⠞⠎" }, { "input": "heartsick", "output": "⠓⠑⠜⠞⠎⠊⠉⠅" }, { "input": "heartstrings", "output": "⠓⠑⠜⠞⠌⠗⠬⠎" }, { "input": "heartthrob", "output": "⠓⠑⠜⠞⠹⠗⠕⠃" }, { "input": "heartthrobs", "output": "⠓⠑⠜⠞⠹⠗⠕⠃⠎" }, { "input": "heartwarming", "output": "⠓⠑⠜⠞⠺⠜â â ¬" }, { "input": "hearty", "output": "⠓⠑⠜⠞⠽" }, { "input": "heat", "output": "â “â ‚â ž" }, { "input": "heated", "output": "â “â ‚â žâ «" }, { "input": "heatedly", "output": "⠓⠂⠞⠫⠇⠽" }, { "input": "heater", "output": "â “â ‚â žâ »" }, { "input": "heaters", "output": "⠓⠂⠞⠻⠎" }, { "input": "heath", "output": "â “â ‚â ¹" }, { "input": "heathen", "output": "â “â ‚â ®â " }, { "input": "heathenish", "output": "â “â ‚â ®â â Šâ ©" }, { "input": "heathens", "output": "â “â ‚â ®â â Ž" }, { "input": "heather", "output": "⠓⠂⠮⠗" }, { "input": "heaths", "output": "⠓⠂⠹⠎" }, { "input": "heating", "output": "â “â ‚â žâ ¬" }, { "input": "heats", "output": "â “â ‚â žâ Ž" }, { "input": "heatstroke", "output": "⠓⠂⠞⠌⠗⠕⠅⠑" }, { "input": "heave", "output": "â “â ‚â §â ‘" }, { "input": "heaved", "output": "â “â ‚â §â «" }, { "input": "heaven", "output": "â “â ‚â §â ¢" }, { "input": "heavenlier", "output": "⠓⠂⠧⠢⠇⠊⠻" }, { "input": "heavenliest", "output": "⠓⠂⠧⠢⠇⠊⠑⠌" }, { "input": "heavenly", "output": "⠓⠂⠧⠢⠇⠽" }, { "input": "heavens", "output": "⠓⠂⠧⠢⠎" }, { "input": "heavenward", "output": "⠓⠂⠧⠢⠺⠜⠙" }, { "input": "heavenwards", "output": "⠓⠂⠧⠢⠺⠜⠙⠎" }, { "input": "heaves", "output": "â “â ‚â §â ‘â Ž" }, { "input": "heavier", "output": "â “â ‚â §â Šâ »" }, { "input": "heavies", "output": "â “â ‚â §â Šâ ‘â Ž" }, { "input": "heaviest", "output": "â “â ‚â §â Šâ ‘â Œ" }, { "input": "heavily", "output": "⠓⠂⠧⠊⠇⠽" }, { "input": "heaviness", "output": "â “â ‚â §â Šâ °â Ž" }, { "input": "heaving", "output": "â “â ‚â §â ¬" }, { "input": "heavy", "output": "â “â ‚â §â ½" }, { "input": "heavyset", "output": "⠓⠂⠧⠽⠎⠑⠞" }, { "input": "heavyweight", "output": "⠓⠂⠧⠽⠺⠑⠊⠣⠞" }, { "input": "heavyweights", "output": "⠓⠂⠧⠽⠺⠑⠊⠣⠞⠎" }, { "input": "heck", "output": "⠓⠑⠉⠅" }, { "input": "heckle", "output": "⠓⠑⠉⠅⠇⠑" }, { "input": "heckled", "output": "⠓⠑⠉⠅⠇⠫" }, { "input": "heckler", "output": "⠓⠑⠉⠅⠇⠻" }, { "input": "hecklers", "output": "⠓⠑⠉⠅⠇⠻⠎" }, { "input": "heckles", "output": "⠓⠑⠉⠅⠇⠑⠎" }, { "input": "heckling", "output": "⠓⠑⠉⠅⠇⠬" }, { "input": "hectare", "output": "⠓⠑⠉⠞⠜⠑" }, { "input": "hectares", "output": "⠓⠑⠉⠞⠜⠑⠎" }, { "input": "hectic", "output": "⠓⠑⠉⠞⠊⠉" }, { "input": "hectically", "output": "⠓⠑⠉⠞⠊⠉â â ‡â ‡â ½" }, { "input": "hector", "output": "⠓⠑⠉⠞⠕⠗" }, { "input": "hectored", "output": "⠓⠑⠉⠞⠕⠗⠫" }, { "input": "hectoring", "output": "⠓⠑⠉⠞⠕⠗⠬" }, { "input": "hectors", "output": "⠓⠑⠉⠞⠕⠗⠎" }, { "input": "hedge", "output": "⠓⠫⠛⠑" }, { "input": "hedged", "output": "⠓⠫⠛⠫" }, { "input": "hedgehog", "output": "⠓⠫⠛⠑⠓⠕⠛" }, { "input": "hedgehogs", "output": "⠓⠫⠛⠑⠓⠕⠛⠎" }, { "input": "hedgerow", "output": "⠓⠫⠛⠑⠗⠪" }, { "input": "hedgerows", "output": "⠓⠫⠛⠑⠗⠪⠎" }, { "input": "hedges", "output": "⠓⠫⠛⠑⠎" }, { "input": "hedging", "output": "⠓⠫⠛⠬" }, { "input": "hedonism", "output": "â “â «â •â â Šâ Žâ " }, { "input": "hedonist", "output": "â “â «â •â â Šâ Œ" }, { "input": "hedonistic", "output": "â “â «â •â â Šâ Œâ Šâ ‰" }, { "input": "hedonists", "output": "â “â «â •â â Šâ Œâ Ž" }, { "input": "heed", "output": "â “â ‘â «" }, { "input": "heeded", "output": "â “â ‘â «â «" }, { "input": "heedful", "output": "â “â ‘â «â °â ‡" }, { "input": "heeding", "output": "â “â ‘â «â ¬" }, { "input": "heedless", "output": "⠓⠑⠫⠨⠎" }, { "input": "heedlessly", "output": "⠓⠑⠫⠨⠎⠇⠽" }, { "input": "heedlessness", "output": "⠓⠑⠫⠨⠎⠰⠎" }, { "input": "heeds", "output": "â “â ‘â «â Ž" }, { "input": "heehaw", "output": "â “â ‘â ‘â “â â º" }, { "input": "heehawed", "output": "â “â ‘â ‘â “â â ºâ «" }, { "input": "heehawing", "output": "â “â ‘â ‘â “â â ºâ ¬" }, { "input": "heehaws", "output": "â “â ‘â ‘â “â â ºâ Ž" }, { "input": "heel", "output": "â “â ‘â ‘â ‡" }, { "input": "heeled", "output": "⠓⠑⠑⠇⠫" }, { "input": "heeling", "output": "⠓⠑⠑⠇⠬" }, { "input": "heels", "output": "⠓⠑⠑⠇⠎" }, { "input": "heft", "output": "â “â ‘â ‹â ž" }, { "input": "hefted", "output": "â “â ‘â ‹â žâ «" }, { "input": "heftier", "output": "â “â ‘â ‹â žâ Šâ »" }, { "input": "heftiest", "output": "â “â ‘â ‹â žâ Šâ ‘â Œ" }, { "input": "hefting", "output": "â “â ‘â ‹â žâ ¬" }, { "input": "hefts", "output": "â “â ‘â ‹â žâ Ž" }, { "input": "hefty", "output": "â “â ‘â ‹â žâ ½" }, { "input": "hegemony", "output": "⠓⠑⠛⠑â â •â â ½" }, { "input": "heifer", "output": "â “â ‘â Šâ ‹â »" }, { "input": "heifers", "output": "⠓⠑⠊⠋⠻⠎" }, { "input": "height", "output": "⠓⠑⠊⠣⠞" }, { "input": "heighten", "output": "⠓⠑⠊⠣⠞⠢" }, { "input": "heightened", "output": "⠓⠑⠊⠣⠞⠢⠫" }, { "input": "heightening", "output": "⠓⠑⠊⠣⠞⠢⠬" }, { "input": "heightens", "output": "⠓⠑⠊⠣⠞⠢⠎" }, { "input": "heights", "output": "⠓⠑⠊⠣⠞⠎" }, { "input": "heinous", "output": "⠓⠑⠔⠳⠎" }, { "input": "heinously", "output": "⠓⠑⠔⠳⠎⠇⠽" }, { "input": "heinousness", "output": "⠓⠑⠔⠳⠎⠰⠎" }, { "input": "heir", "output": "â “â ‘â Šâ —" }, { "input": "heiress", "output": "â “â ‘â Šâ —â ‘â Žâ Ž" }, { "input": "heiresses", "output": "â “â ‘â Šâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "heirloom", "output": "⠓⠑⠊⠗⠇⠕⠕â " }, { "input": "heirlooms", "output": "⠓⠑⠊⠗⠇⠕⠕â â Ž" }, { "input": "heirs", "output": "â “â ‘â Šâ —â Ž" }, { "input": "heist", "output": "â “â ‘â Šâ Œ" }, { "input": "heisted", "output": "⠓⠑⠊⠌⠫" }, { "input": "heisting", "output": "⠓⠑⠊⠌⠬" }, { "input": "heists", "output": "⠓⠑⠊⠌⠎" }, { "input": "held", "output": "⠓⠑⠇⠙" }, { "input": "helical", "output": "⠓⠑⠇⠊⠉â â ‡" }, { "input": "helices", "output": "⠓⠑⠇⠊⠉⠑⠎" }, { "input": "helicopter", "output": "⠓⠑⠇⠊⠉⠕â â žâ »" }, { "input": "helicoptered", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â «" }, { "input": "helicoptering", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â ¬" }, { "input": "helicopters", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â Ž" }, { "input": "heliotrope", "output": "⠓⠑⠇⠊⠕⠞⠗⠕â â ‘" }, { "input": "heliotropes", "output": "⠓⠑⠇⠊⠕⠞⠗⠕â â ‘â Ž" }, { "input": "heliport", "output": "⠓⠑⠇⠊â â •â —â ž" }, { "input": "heliports", "output": "⠓⠑⠇⠊â â •â —â žâ Ž" }, { "input": "helium", "output": "⠓⠑⠇⠊⠥â " }, { "input": "helix", "output": "⠓⠑⠇⠊⠭" }, { "input": "helixes", "output": "⠓⠑⠇⠊⠭⠑⠎" }, { "input": "hell", "output": "⠓⠑⠇⠇" }, { "input": "hellebore", "output": "⠓⠑⠇⠇⠑⠃⠕⠗⠑" }, { "input": "hellhole", "output": "⠓⠑⠇⠇⠓⠕⠇⠑" }, { "input": "hellholes", "output": "⠓⠑⠇⠇⠓⠕⠇⠑⠎" }, { "input": "hellion", "output": "⠓⠑⠇⠇⠊⠕â " }, { "input": "hellions", "output": "⠓⠑⠇⠇⠊⠕â â Ž" }, { "input": "hellish", "output": "⠓⠑⠇⠇⠊⠩" }, { "input": "hellishly", "output": "⠓⠑⠇⠇⠊⠩⠇⠽" }, { "input": "hello", "output": "⠓⠑⠇⠇⠕" }, { "input": "hellos", "output": "⠓⠑⠇⠇⠕⠎" }, { "input": "helm", "output": "â “â ‘â ‡â " }, { "input": "helmet", "output": "â “â ‘â ‡â â ‘â ž" }, { "input": "helmets", "output": "â “â ‘â ‡â â ‘â žâ Ž" }, { "input": "helms", "output": "â “â ‘â ‡â â Ž" }, { "input": "helmsman", "output": "â “â ‘â ‡â â Žâ â â " }, { "input": "helmsmen", "output": "â “â ‘â ‡â â Žâ â ¢" }, { "input": "helot", "output": "⠓⠑⠇⠕⠞" }, { "input": "helots", "output": "⠓⠑⠇⠕⠞⠎" }, { "input": "help", "output": "â “â ‘â ‡â " }, { "input": "helped", "output": "â “â ‘â ‡â â «" }, { "input": "helper", "output": "â “â ‘â ‡â â »" }, { "input": "helpers", "output": "â “â ‘â ‡â â »â Ž" }, { "input": "helpful", "output": "â “â ‘â ‡â â °â ‡" }, { "input": "helpfully", "output": "â “â ‘â ‡â â °â ‡â ‡â ½" }, { "input": "helpfulness", "output": "â “â ‘â ‡â â °â ‡â °â Ž" }, { "input": "helping", "output": "â “â ‘â ‡â â ¬" }, { "input": "helpings", "output": "â “â ‘â ‡â â ¬â Ž" }, { "input": "helpless", "output": "â “â ‘â ‡â â ¨â Ž" }, { "input": "helplessly", "output": "â “â ‘â ‡â â ¨â Žâ ‡â ½" }, { "input": "helplessness", "output": "â “â ‘â ‡â â ¨â Žâ °â Ž" }, { "input": "helpmate", "output": "â “â ‘â ‡â â â â žâ ‘" }, { "input": "helpmates", "output": "â “â ‘â ‡â â â â žâ ‘â Ž" }, { "input": "helpmeet", "output": "â “â ‘â ‡â â â ‘â ‘â ž" }, { "input": "helpmeets", "output": "â “â ‘â ‡â â â ‘â ‘â žâ Ž" }, { "input": "helps", "output": "â “â ‘â ‡â â Ž" }, { "input": "hem", "output": "â “â ‘â " }, { "input": "hematologist", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠌" }, { "input": "hematologists", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "hematology", "output": "â “â ‘â â â žâ •⠇⠕⠛⠽" }, { "input": "hemisphere", "output": "â “â ‘â â Šâ Žâ â â “" }, { "input": "hemispheres", "output": "â “â ‘â â Šâ Žâ â â “â Ž" }, { "input": "hemispheric", "output": "â “â ‘â â Šâ Žâ â “⠻⠊⠉" }, { "input": "hemispherical", "output": "â “â ‘â â Šâ Žâ â “⠻⠊⠉â â ‡" }, { "input": "hemline", "output": "â “â ‘â â ‡â ”â ‘" }, { "input": "hemlines", "output": "â “â ‘â â ‡â ”â ‘â Ž" }, { "input": "hemlock", "output": "â “â ‘â â ‡â •⠉⠅" }, { "input": "hemlocks", "output": "â “â ‘â â ‡â •⠉⠅⠎" }, { "input": "hemmed", "output": "â “â ‘â â â «" }, { "input": "hemming", "output": "â “â ‘â â â ¬" }, { "input": "hemoglobin", "output": "â “â ‘â â •⠛⠇⠕⠃⠔" }, { "input": "hemophilia", "output": "â “â ‘â â •â â “⠊⠇⠊â " }, { "input": "hemophiliac", "output": "â “â ‘â â •â â “⠊⠇⠊â â ‰" }, { "input": "hemophiliacs", "output": "â “â ‘â â •â â “⠊⠇⠊â â ‰â Ž" }, { "input": "hemorrhage", "output": "â “â ‘â â •â —â —â “â â ›â ‘" }, { "input": "hemorrhaged", "output": "â “â ‘â â •â —â —â “â â ›â «" }, { "input": "hemorrhages", "output": "â “â ‘â â •â —â —â “â â ›â ‘â Ž" }, { "input": "hemorrhaging", "output": "â “â ‘â â •â —â —â “â â ›â ¬" }, { "input": "hemorrhoid", "output": "â “â ‘â â •â —â —â “â •â Šâ ™" }, { "input": "hemorrhoids", "output": "â “â ‘â â •⠗⠗⠓⠕⠊⠙⠎" }, { "input": "hemp", "output": "â “â ‘â â " }, { "input": "hempen", "output": "â “â ‘â â â ¢" }, { "input": "hems", "output": "â “â ‘â â Ž" }, { "input": "hemstitch", "output": "â “â ‘â â Œâ Šâ žâ ¡" }, { "input": "hemstitched", "output": "â “â ‘â â Œâ Šâ žâ ¡â «" }, { "input": "hemstitches", "output": "â “â ‘â â Œâ Šâ žâ ¡â ‘â Ž" }, { "input": "hemstitching", "output": "â “â ‘â â Œâ Šâ žâ ¡â ¬" }, { "input": "hen", "output": "â “â ¢" }, { "input": "hence", "output": "â “â °â ‘" }, { "input": "henceforth", "output": "â “â °â ‘â ¿â ¹" }, { "input": "henceforward", "output": "⠓⠰⠑⠿⠺⠜⠙" }, { "input": "henchman", "output": "⠓⠢⠡â â â " }, { "input": "henchmen", "output": "⠓⠢⠡â â ¢" }, { "input": "henna", "output": "â “â ¢â â " }, { "input": "hennaed", "output": "â “â ¢â â â «" }, { "input": "hennaing", "output": "â “â ¢â â â ¬" }, { "input": "hennas", "output": "â “â ¢â â â Ž" }, { "input": "henpeck", "output": "â “â ¢â â ‘⠉⠅" }, { "input": "henpecked", "output": "â “â ¢â â ‘⠉⠅⠫" }, { "input": "henpecking", "output": "â “â ¢â â ‘⠉⠅⠬" }, { "input": "henpecks", "output": "â “â ¢â â ‘⠉⠅⠎" }, { "input": "hens", "output": "⠓⠢⠎" }, { "input": "hep", "output": "â “â ‘â " }, { "input": "hepatic", "output": "â “â ‘â â â žâ Šâ ‰" }, { "input": "hepatitis", "output": "â “â ‘â â â žâ Šâ žâ Šâ Ž" }, { "input": "hepper", "output": "â “â ‘â â â »" }, { "input": "heppest", "output": "â “â ‘â â â ‘â Œ" }, { "input": "heptagon", "output": "â “â ‘â â žâ â ›â •â " }, { "input": "heptagons", "output": "â “â ‘â â žâ â ›â •â â Ž" }, { "input": "her", "output": "â “â »" }, { "input": "herald", "output": "â “â »â â ‡â ™" }, { "input": "heralded", "output": "â “â »â â ‡â ™â «" }, { "input": "heraldic", "output": "â “â »â â ‡â ™â Šâ ‰" }, { "input": "heralding", "output": "â “â »â â ‡â ™â ¬" }, { "input": "heraldry", "output": "â “â »â â ‡â ™â —â ½" }, { "input": "heralds", "output": "â “â »â â ‡â ™â Ž" }, { "input": "herb", "output": "⠓⠻⠃" }, { "input": "herbaceous", "output": "⠓⠻⠃â â ‰â ‘⠳⠎" }, { "input": "herbage", "output": "⠓⠻⠃â â ›â ‘" }, { "input": "herbal", "output": "⠓⠻⠃â â ‡" }, { "input": "herbalist", "output": "⠓⠻⠃â â ‡â Šâ Œ" }, { "input": "herbalists", "output": "⠓⠻⠃â â ‡â Šâ Œâ Ž" }, { "input": "herbicide", "output": "⠓⠻⠃⠊⠉⠊⠙⠑" }, { "input": "herbicides", "output": "⠓⠻⠃⠊⠉⠊⠙⠑⠎" }, { "input": "herbivore", "output": "⠓⠻⠃⠊⠧⠕⠗⠑" }, { "input": "herbivores", "output": "⠓⠻⠃⠊⠧⠕⠗⠑⠎" }, { "input": "herbivorous", "output": "⠓⠻⠃⠊⠧⠕⠗⠳⠎" }, { "input": "herbs", "output": "⠓⠻⠃⠎" }, { "input": "herculean", "output": "⠓⠻⠉⠥⠇⠂â " }, { "input": "herd", "output": "⠓⠻⠙" }, { "input": "herded", "output": "⠓⠻⠙⠫" }, { "input": "herding", "output": "⠓⠻⠙⠬" }, { "input": "herds", "output": "⠓⠻⠙⠎" }, { "input": "herdsman", "output": "⠓⠻⠙⠎â â â " }, { "input": "herdsmen", "output": "⠓⠻⠙⠎â â ¢" }, { "input": "here", "output": "â â “" }, { "input": "hereabout", "output": "â â “â â ƒ" }, { "input": "hereabouts", "output": "â â “â â ƒâ Ž" }, { "input": "hereafter", "output": "â â “â â ‹" }, { "input": "hereafters", "output": "â â “â â ‹â Ž" }, { "input": "hereby", "output": "â â “⠃⠽" }, { "input": "hereditary", "output": "⠓⠻⠫⠊⠞⠜⠽" }, { "input": "heredity", "output": "⠓⠻⠫⠰⠽" }, { "input": "herein", "output": "â â “â ”" }, { "input": "hereof", "output": "â â “â ·" }, { "input": "heresies", "output": "⠓⠻⠑⠎⠊⠑⠎" }, { "input": "heresy", "output": "⠓⠻⠑⠎⠽" }, { "input": "heretic", "output": "⠓⠻⠑⠞⠊⠉" }, { "input": "heretical", "output": "⠓⠻⠑⠞⠊⠉â â ‡" }, { "input": "heretics", "output": "⠓⠻⠑⠞⠊⠉⠎" }, { "input": "hereto", "output": "â â “â žâ •" }, { "input": "heretofore", "output": "â â “â žâ •â ¿â ‘" }, { "input": "hereupon", "output": "â â “⠘⠥" }, { "input": "herewith", "output": "â â “â ¾" }, { "input": "heritage", "output": "⠓⠻⠊⠞â â ›â ‘" }, { "input": "heritages", "output": "⠓⠻⠊⠞â â ›â ‘â Ž" }, { "input": "hermaphrodite", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠑" }, { "input": "hermaphrodites", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠑⠎" }, { "input": "hermaphroditic", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠊⠉" }, { "input": "hermetic", "output": "â “â »â â ‘â žâ Šâ ‰" }, { "input": "hermetically", "output": "â “â »â â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "hermit", "output": "â “â »â â Šâ ž" }, { "input": "hermitage", "output": "â “â »â â Šâ žâ â ›â ‘" }, { "input": "hermitages", "output": "â “â »â â Šâ žâ â ›â ‘â Ž" }, { "input": "hermits", "output": "â “â »â â Šâ žâ Ž" }, { "input": "hernia", "output": "â “â »â â Šâ " }, { "input": "herniae", "output": "â “â »â â Šâ â ‘" }, { "input": "hernias", "output": "â “â »â â Šâ â Ž" }, { "input": "hero", "output": "⠓⠻⠕" }, { "input": "heroes", "output": "⠓⠻⠕⠑⠎" }, { "input": "heroic", "output": "⠓⠻⠕⠊⠉" }, { "input": "heroically", "output": "⠓⠻⠕⠊⠉â â ‡â ‡â ½" }, { "input": "heroics", "output": "⠓⠻⠕⠊⠉⠎" }, { "input": "heroin", "output": "⠓⠻⠕⠔" }, { "input": "heroine", "output": "⠓⠻⠕⠔⠑" }, { "input": "heroins", "output": "⠓⠻⠕⠔⠎" }, { "input": "heroism", "output": "⠓⠻⠕⠊⠎â " }, { "input": "heron", "output": "⠓⠻⠕â " }, { "input": "herons", "output": "⠓⠻⠕â â Ž" }, { "input": "heros", "output": "⠓⠻⠕⠎" }, { "input": "herpes", "output": "â “â »â â ‘â Ž" }, { "input": "herring", "output": "⠓⠻⠗⠬" }, { "input": "herringbone", "output": "⠓⠻⠗⠬⠃â â •" }, { "input": "herrings", "output": "⠓⠻⠗⠬⠎" }, { "input": "hers", "output": "⠓⠻⠎" }, { "input": "herself", "output": "⠓⠻⠋" }, { "input": "hertz", "output": "⠓⠻⠞⠵" }, { "input": "hertzes", "output": "⠓⠻⠞⠵⠑⠎" }, { "input": "hes", "output": "â “â ‘â Ž" }, { "input": "hesitancy", "output": "â “â ‘â Žâ Šâ žâ â â ‰â ½" }, { "input": "hesitant", "output": "â “â ‘â Žâ Šâ žâ â â ž" }, { "input": "hesitantly", "output": "â “â ‘â Žâ Šâ žâ â â žâ ‡â ½" }, { "input": "hesitate", "output": "â “â ‘â Žâ Šâ žâ â žâ ‘" }, { "input": "hesitated", "output": "â “â ‘â Žâ Šâ žâ â žâ «" }, { "input": "hesitates", "output": "â “â ‘â Žâ Šâ žâ â žâ ‘â Ž" }, { "input": "hesitating", "output": "â “â ‘â Žâ Šâ žâ â žâ ¬" }, { "input": "hesitatingly", "output": "â “â ‘â Žâ Šâ žâ â žâ ¬â ‡â ½" }, { "input": "hesitation", "output": "â “â ‘â Žâ Šâ žâ â °â " }, { "input": "hesitations", "output": "â “â ‘â Žâ Šâ žâ â °â â Ž" }, { "input": "heterodox", "output": "⠓⠑⠞⠻⠕⠙⠕⠭" }, { "input": "heterodoxy", "output": "⠓⠑⠞⠻⠕⠙⠕⠭⠽" }, { "input": "heterogeneity", "output": "⠓⠑⠞⠻⠕⠛⠢⠑⠰⠽" }, { "input": "heterogeneous", "output": "⠓⠑⠞⠻⠕⠛⠢⠑⠳⠎" }, { "input": "heterosexual", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡" }, { "input": "heterosexuality", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡â °â ½" }, { "input": "heterosexuals", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡â Ž" }, { "input": "heuristic", "output": "⠓⠑⠥⠗⠊⠌⠊⠉" }, { "input": "heuristics", "output": "⠓⠑⠥⠗⠊⠌⠊⠉⠎" }, { "input": "hew", "output": "â “â ‘â º" }, { "input": "hewed", "output": "⠓⠑⠺⠫" }, { "input": "hewer", "output": "⠓⠑⠺⠻" }, { "input": "hewers", "output": "⠓⠑⠺⠻⠎" }, { "input": "hewing", "output": "⠓⠑⠺⠬" }, { "input": "hewn", "output": "â “â ‘â ºâ " }, { "input": "hews", "output": "⠓⠑⠺⠎" }, { "input": "hex", "output": "â “â ‘â ­" }, { "input": "hexadecimal", "output": "â “â ‘â ­â â ™â ‘⠉⠊â â â ‡" }, { "input": "hexagon", "output": "â “â ‘â ­â â ›â •â " }, { "input": "hexagonal", "output": "â “â ‘â ­â â ›â •â â â ‡" }, { "input": "hexagons", "output": "â “â ‘â ­â â ›â •â â Ž" }, { "input": "hexameter", "output": "â “â ‘â ­â â â ‘â žâ »" }, { "input": "hexameters", "output": "â “â ‘â ­â â â ‘⠞⠻⠎" }, { "input": "hexed", "output": "â “â ‘â ­â «" }, { "input": "hexes", "output": "â “â ‘â ­â ‘â Ž" }, { "input": "hexing", "output": "â “â ‘â ­â ¬" }, { "input": "hey", "output": "â “â ‘â ½" }, { "input": "heyday", "output": "â “â ‘â ½â â ™" }, { "input": "heydays", "output": "â “â ‘â ½â â ™â Ž" }, { "input": "hi", "output": "â “â Š" }, { "input": "hiatus", "output": "â “â Šâ â žâ ¥â Ž" }, { "input": "hiatuses", "output": "â “â Šâ â žâ ¥â Žâ ‘â Ž" }, { "input": "hibachi", "output": "â “â Šâ ƒâ â ¡â Š" }, { "input": "hibachis", "output": "â “â Šâ ƒâ â ¡â Šâ Ž" }, { "input": "hibernate", "output": "⠓⠊⠃⠻â â â žâ ‘" }, { "input": "hibernated", "output": "⠓⠊⠃⠻â â â žâ «" }, { "input": "hibernates", "output": "⠓⠊⠃⠻â â â žâ ‘â Ž" }, { "input": "hibernating", "output": "⠓⠊⠃⠻â â â žâ ¬" }, { "input": "hibernation", "output": "⠓⠊⠃⠻â â â °â " }, { "input": "hibiscus", "output": "⠓⠊⠃⠊⠎⠉⠥⠎" }, { "input": "hibiscuses", "output": "⠓⠊⠃⠊⠎⠉⠥⠎⠑⠎" }, { "input": "hiccough", "output": "⠓⠊⠒⠳⠣" }, { "input": "hiccoughed", "output": "⠓⠊⠒⠳⠣⠫" }, { "input": "hiccoughing", "output": "⠓⠊⠒⠳⠣⠬" }, { "input": "hiccoughs", "output": "⠓⠊⠒⠳⠣⠎" }, { "input": "hiccup", "output": "â “â Šâ ’â ¥â " }, { "input": "hiccuped", "output": "â “â Šâ ’â ¥â â «" }, { "input": "hiccuping", "output": "â “â Šâ ’â ¥â â ¬" }, { "input": "hiccups", "output": "â “â Šâ ’â ¥â â Ž" }, { "input": "hick", "output": "⠓⠊⠉⠅" }, { "input": "hickey", "output": "⠓⠊⠉⠅⠑⠽" }, { "input": "hickeys", "output": "⠓⠊⠉⠅⠑⠽⠎" }, { "input": "hickories", "output": "⠓⠊⠉⠅⠕⠗⠊⠑⠎" }, { "input": "hickory", "output": "⠓⠊⠉⠅⠕⠗⠽" }, { "input": "hicks", "output": "⠓⠊⠉⠅⠎" }, { "input": "hid", "output": "â “â Šâ ™" }, { "input": "hidden", "output": "⠓⠊⠙⠙⠢" }, { "input": "hide", "output": "⠓⠊⠙⠑" }, { "input": "hideaway", "output": "⠓⠊⠙⠑â â ºâ â ½" }, { "input": "hideaways", "output": "⠓⠊⠙⠑â â ºâ â ½â Ž" }, { "input": "hidebound", "output": "⠓⠊⠙⠑⠃⠨⠙" }, { "input": "hided", "output": "⠓⠊⠙⠫" }, { "input": "hideous", "output": "⠓⠊⠙⠑⠳⠎" }, { "input": "hideously", "output": "⠓⠊⠙⠑⠳⠎⠇⠽" }, { "input": "hideousness", "output": "⠓⠊⠙⠑⠳⠎⠰⠎" }, { "input": "hideout", "output": "⠓⠊⠙⠑⠳⠞" }, { "input": "hideouts", "output": "⠓⠊⠙⠑⠳⠞⠎" }, { "input": "hides", "output": "⠓⠊⠙⠑⠎" }, { "input": "hiding", "output": "⠓⠊⠙⠬" }, { "input": "hie", "output": "â “â Šâ ‘" }, { "input": "hied", "output": "â “â Šâ «" }, { "input": "hieing", "output": "â “â Šâ ‘â ¬" }, { "input": "hierarchical", "output": "⠓⠊⠻⠜⠡⠊⠉â â ‡" }, { "input": "hierarchically", "output": "⠓⠊⠻⠜⠡⠊⠉â â ‡â ‡â ½" }, { "input": "hierarchies", "output": "⠓⠊⠻⠜⠡⠊⠑⠎" }, { "input": "hierarchy", "output": "⠓⠊⠻⠜⠡⠽" }, { "input": "hieroglyphic", "output": "⠓⠊⠻⠕⠛⠇⠽â â “â Šâ ‰" }, { "input": "hieroglyphics", "output": "⠓⠊⠻⠕⠛⠇⠽â â “⠊⠉⠎" }, { "input": "hies", "output": "â “â Šâ ‘â Ž" }, { "input": "hifalutin", "output": "â “â Šâ ‹â â ‡â ¥â žâ ”" }, { "input": "high", "output": "â “â Šâ £" }, { "input": "highball", "output": "⠓⠊⠣⠃â â ‡â ‡" }, { "input": "highballs", "output": "⠓⠊⠣⠃â â ‡â ‡â Ž" }, { "input": "highborn", "output": "⠓⠊⠣⠃⠕⠗â " }, { "input": "highboy", "output": "⠓⠊⠣⠃⠕⠽" }, { "input": "highboys", "output": "⠓⠊⠣⠃⠕⠽⠎" }, { "input": "highbrow", "output": "⠓⠊⠣⠃⠗⠪" }, { "input": "highbrows", "output": "⠓⠊⠣⠃⠗⠪⠎" }, { "input": "highchair", "output": "⠓⠊⠣⠡â â Šâ —" }, { "input": "highchairs", "output": "⠓⠊⠣⠡â â Šâ —â Ž" }, { "input": "higher", "output": "⠓⠊⠣⠻" }, { "input": "highest", "output": "⠓⠊⠣⠑⠌" }, { "input": "highfalutin", "output": "⠓⠊⠣⠋â â ‡â ¥â žâ ”" }, { "input": "highfaluting", "output": "⠓⠊⠣⠋â â ‡â ¥â žâ ¬" }, { "input": "highjack", "output": "⠓⠊⠣⠚â â ‰â …" }, { "input": "highjacked", "output": "⠓⠊⠣⠚â â ‰â …â «" }, { "input": "highjacker", "output": "⠓⠊⠣⠚â â ‰â …â »" }, { "input": "highjackers", "output": "⠓⠊⠣⠚â â ‰â …⠻⠎" }, { "input": "highjacking", "output": "⠓⠊⠣⠚â â ‰â …â ¬" }, { "input": "highjacks", "output": "⠓⠊⠣⠚â â ‰â …â Ž" }, { "input": "highland", "output": "⠓⠊⠣⠇⠯" }, { "input": "highlands", "output": "⠓⠊⠣⠇⠯⠎" }, { "input": "highlight", "output": "⠓⠊⠣⠇⠊⠣⠞" }, { "input": "highlighted", "output": "⠓⠊⠣⠇⠊⠣⠞⠫" }, { "input": "highlighter", "output": "⠓⠊⠣⠇⠊⠣⠞⠻" }, { "input": "highlighters", "output": "⠓⠊⠣⠇⠊⠣⠞⠻⠎" }, { "input": "highlighting", "output": "⠓⠊⠣⠇⠊⠣⠞⠬" }, { "input": "highlights", "output": "⠓⠊⠣⠇⠊⠣⠞⠎" }, { "input": "highly", "output": "⠓⠊⠣⠇⠽" }, { "input": "highness", "output": "⠓⠊⠣⠰⠎" }, { "input": "highs", "output": "⠓⠊⠣⠎" }, { "input": "hightail", "output": "⠓⠊⠣⠞â â Šâ ‡" }, { "input": "hightailed", "output": "⠓⠊⠣⠞â â Šâ ‡â «" }, { "input": "hightailing", "output": "⠓⠊⠣⠞â â Šâ ‡â ¬" }, { "input": "hightails", "output": "⠓⠊⠣⠞â â Šâ ‡â Ž" }, { "input": "highway", "output": "⠓⠊⠣⠺â â ½" }, { "input": "highwayman", "output": "⠓⠊⠣⠺â â ½â â â " }, { "input": "highwaymen", "output": "⠓⠊⠣⠺â â ½â â ¢" }, { "input": "highways", "output": "⠓⠊⠣⠺â â ½â Ž" }, { "input": "hijack", "output": "â “â Šâ šâ â ‰â …" }, { "input": "hijacked", "output": "â “â Šâ šâ â ‰â …â «" }, { "input": "hijacker", "output": "â “â Šâ šâ â ‰â …â »" }, { "input": "hijackers", "output": "â “â Šâ šâ â ‰â …⠻⠎" }, { "input": "hijacking", "output": "â “â Šâ šâ â ‰â …â ¬" }, { "input": "hijackings", "output": "â “â Šâ šâ â ‰â …⠬⠎" }, { "input": "hijacks", "output": "â “â Šâ šâ â ‰â …â Ž" }, { "input": "hike", "output": "â “â Šâ …â ‘" }, { "input": "hiked", "output": "â “â Šâ …â «" }, { "input": "hiker", "output": "â “â Šâ …â »" }, { "input": "hikers", "output": "⠓⠊⠅⠻⠎" }, { "input": "hikes", "output": "â “â Šâ …â ‘â Ž" }, { "input": "hiking", "output": "â “â Šâ …â ¬" }, { "input": "hilarious", "output": "⠓⠊⠇⠜⠊⠳⠎" }, { "input": "hilariously", "output": "⠓⠊⠇⠜⠊⠳⠎⠇⠽" }, { "input": "hilarity", "output": "⠓⠊⠇⠜⠰⠽" }, { "input": "hill", "output": "⠓⠊⠇⠇" }, { "input": "hillbillies", "output": "⠓⠊⠇⠇⠃⠊⠇⠇⠊⠑⠎" }, { "input": "hillbilly", "output": "⠓⠊⠇⠇⠃⠊⠇⠇⠽" }, { "input": "hillier", "output": "⠓⠊⠇⠇⠊⠻" }, { "input": "hilliest", "output": "⠓⠊⠇⠇⠊⠑⠌" }, { "input": "hillock", "output": "⠓⠊⠇⠇⠕⠉⠅" }, { "input": "hillocks", "output": "⠓⠊⠇⠇⠕⠉⠅⠎" }, { "input": "hills", "output": "⠓⠊⠇⠇⠎" }, { "input": "hillside", "output": "⠓⠊⠇⠇⠎⠊⠙⠑" }, { "input": "hillsides", "output": "⠓⠊⠇⠇⠎⠊⠙⠑⠎" }, { "input": "hilltop", "output": "⠓⠊⠇⠇⠞⠕â " }, { "input": "hilltops", "output": "⠓⠊⠇⠇⠞⠕â â Ž" }, { "input": "hilly", "output": "⠓⠊⠇⠇⠽" }, { "input": "hilt", "output": "⠓⠊⠇⠞" }, { "input": "hilts", "output": "⠓⠊⠇⠞⠎" }, { "input": "him", "output": "â “â " }, { "input": "hims", "output": "â “â Šâ â Ž" }, { "input": "himself", "output": "â “â â ‹" }, { "input": "hind", "output": "⠓⠔⠙" }, { "input": "hinder", "output": "⠓⠔⠙⠻" }, { "input": "hindered", "output": "⠓⠔⠙⠻⠫" }, { "input": "hindering", "output": "⠓⠔⠙⠻⠬" }, { "input": "hinders", "output": "⠓⠔⠙⠻⠎" }, { "input": "hindmost", "output": "⠓⠔⠙â â •â Œ" }, { "input": "hindquarter", "output": "⠓⠔⠙⠟⠥⠜⠞⠻" }, { "input": "hindquarters", "output": "⠓⠔⠙⠟⠥⠜⠞⠻⠎" }, { "input": "hindrance", "output": "⠓⠔⠙⠗⠨⠑" }, { "input": "hindrances", "output": "⠓⠔⠙⠗⠨⠑⠎" }, { "input": "hinds", "output": "⠓⠔⠙⠎" }, { "input": "hindsight", "output": "⠓⠔⠙⠎⠊⠣⠞" }, { "input": "hinge", "output": "⠓⠬⠑" }, { "input": "hinged", "output": "⠓⠬⠫" }, { "input": "hinges", "output": "⠓⠬⠑⠎" }, { "input": "hinging", "output": "⠓⠬⠬" }, { "input": "hint", "output": "⠓⠔⠞" }, { "input": "hinted", "output": "⠓⠔⠞⠫" }, { "input": "hinterland", "output": "⠓⠔⠞⠻⠇⠯" }, { "input": "hinterlands", "output": "⠓⠔⠞⠻⠇⠯⠎" }, { "input": "hinting", "output": "⠓⠔⠞⠬" }, { "input": "hints", "output": "⠓⠔⠞⠎" }, { "input": "hip", "output": "â “â Šâ " }, { "input": "hipped", "output": "â “â Šâ â â «" }, { "input": "hipper", "output": "â “â Šâ â â »" }, { "input": "hippest", "output": "â “â Šâ â â ‘â Œ" }, { "input": "hippie", "output": "â “â Šâ â â Šâ ‘" }, { "input": "hippies", "output": "â “â Šâ â â Šâ ‘â Ž" }, { "input": "hipping", "output": "â “â Šâ â â ¬" }, { "input": "hippo", "output": "â “â Šâ â â •" }, { "input": "hippopotami", "output": "â “â Šâ â â •â â •â žâ â â Š" }, { "input": "hippopotamus", "output": "â “â Šâ â â •â â •â žâ â â ¥â Ž" }, { "input": "hippopotamuses", "output": "â “â Šâ â â •â â •â žâ â â ¥â Žâ ‘â Ž" }, { "input": "hippos", "output": "â “â Šâ â â •â Ž" }, { "input": "hippy", "output": "â “â Šâ â â ½" }, { "input": "hips", "output": "â “â Šâ â Ž" }, { "input": "hire", "output": "â “â Šâ —â ‘" }, { "input": "hired", "output": "â “â Šâ —â «" }, { "input": "hireling", "output": "⠓⠊⠗⠑⠇⠬" }, { "input": "hirelings", "output": "⠓⠊⠗⠑⠇⠬⠎" }, { "input": "hires", "output": "â “â Šâ —â ‘â Ž" }, { "input": "hiring", "output": "â “â Šâ —â ¬" }, { "input": "hirsute", "output": "⠓⠊⠗⠎⠥⠞⠑" }, { "input": "his", "output": "â ¦" }, { "input": "hiss", "output": "â “â Šâ Žâ Ž" }, { "input": "hissed", "output": "â “â Šâ Žâ Žâ «" }, { "input": "hisses", "output": "â “â Šâ Žâ Žâ ‘â Ž" }, { "input": "hissing", "output": "â “â Šâ Žâ Žâ ¬" }, { "input": "histamine", "output": "â “â Šâ Œâ â â ”â ‘" }, { "input": "histamines", "output": "â “â Šâ Œâ â â ”â ‘â Ž" }, { "input": "histogram", "output": "⠓⠊⠌⠕⠛⠗â â " }, { "input": "histograms", "output": "⠓⠊⠌⠕⠛⠗â â â Ž" }, { "input": "historian", "output": "⠓⠊⠌⠕⠗⠊â â " }, { "input": "historians", "output": "⠓⠊⠌⠕⠗⠊â â â Ž" }, { "input": "historic", "output": "⠓⠊⠌⠕⠗⠊⠉" }, { "input": "historical", "output": "⠓⠊⠌⠕⠗⠊⠉â â ‡" }, { "input": "historically", "output": "⠓⠊⠌⠕⠗⠊⠉â â ‡â ‡â ½" }, { "input": "histories", "output": "⠓⠊⠌⠕⠗⠊⠑⠎" }, { "input": "history", "output": "⠓⠊⠌⠕⠗⠽" }, { "input": "histrionic", "output": "⠓⠊⠌⠗⠊⠕â â Šâ ‰" }, { "input": "histrionics", "output": "⠓⠊⠌⠗⠊⠕â â Šâ ‰â Ž" }, { "input": "hit", "output": "â “â Šâ ž" }, { "input": "hitch", "output": "â “â Šâ žâ ¡" }, { "input": "hitched", "output": "â “â Šâ žâ ¡â «" }, { "input": "hitches", "output": "â “â Šâ žâ ¡â ‘â Ž" }, { "input": "hitchhike", "output": "â “â Šâ žâ ¡â “â Šâ …â ‘" }, { "input": "hitchhiked", "output": "â “â Šâ žâ ¡â “â Šâ …â «" }, { "input": "hitchhiker", "output": "â “â Šâ žâ ¡â “â Šâ …â »" }, { "input": "hitchhikers", "output": "⠓⠊⠞⠡⠓⠊⠅⠻⠎" }, { "input": "hitchhikes", "output": "â “â Šâ žâ ¡â “â Šâ …â ‘â Ž" }, { "input": "hitchhiking", "output": "â “â Šâ žâ ¡â “â Šâ …â ¬" }, { "input": "hitching", "output": "â “â Šâ žâ ¡â ¬" }, { "input": "hither", "output": "⠓⠊⠮⠗" }, { "input": "hitherto", "output": "⠓⠊⠮⠗⠞⠕" }, { "input": "hits", "output": "â “â Šâ žâ Ž" }, { "input": "hitter", "output": "â “â Šâ žâ žâ »" }, { "input": "hitters", "output": "⠓⠊⠞⠞⠻⠎" }, { "input": "hitting", "output": "â “â Šâ žâ žâ ¬" }, { "input": "hive", "output": "â “â Šâ §â ‘" }, { "input": "hived", "output": "â “â Šâ §â «" }, { "input": "hives", "output": "â “â Šâ §â ‘â Ž" }, { "input": "hiving", "output": "â “â Šâ §â ¬" }, { "input": "ho", "output": "â “â •" }, { "input": "hoagie", "output": "â “â •â â ›â Šâ ‘" }, { "input": "hoagies", "output": "â “â •â â ›â Šâ ‘â Ž" }, { "input": "hoagy", "output": "â “â •â â ›â ½" }, { "input": "hoard", "output": "⠓⠕⠜⠙" }, { "input": "hoarded", "output": "⠓⠕⠜⠙⠫" }, { "input": "hoarder", "output": "⠓⠕⠜⠙⠻" }, { "input": "hoarders", "output": "⠓⠕⠜⠙⠻⠎" }, { "input": "hoarding", "output": "⠓⠕⠜⠙⠬" }, { "input": "hoards", "output": "⠓⠕⠜⠙⠎" }, { "input": "hoarfrost", "output": "⠓⠕⠜⠋⠗⠕⠌" }, { "input": "hoarier", "output": "⠓⠕⠜⠊⠻" }, { "input": "hoariest", "output": "⠓⠕⠜⠊⠑⠌" }, { "input": "hoariness", "output": "⠓⠕⠜⠊⠰⠎" }, { "input": "hoarse", "output": "⠓⠕⠜⠎⠑" }, { "input": "hoarsely", "output": "⠓⠕⠜⠎⠑⠇⠽" }, { "input": "hoarseness", "output": "⠓⠕⠜⠎⠑⠰⠎" }, { "input": "hoarser", "output": "⠓⠕⠜⠎⠻" }, { "input": "hoarsest", "output": "⠓⠕⠜⠎⠑⠌" }, { "input": "hoary", "output": "⠓⠕⠜⠽" }, { "input": "hoax", "output": "â “â •â â ­" }, { "input": "hoaxed", "output": "â “â •â â ­â «" }, { "input": "hoaxer", "output": "â “â •â â ­â »" }, { "input": "hoaxers", "output": "â “â •â â ­â »â Ž" }, { "input": "hoaxes", "output": "â “â •â â ­â ‘â Ž" }, { "input": "hoaxing", "output": "â “â •â â ­â ¬" }, { "input": "hob", "output": "â “â •â ƒ" }, { "input": "hobbies", "output": "⠓⠕⠆⠊⠑⠎" }, { "input": "hobbit", "output": "⠓⠕⠆⠊⠞" }, { "input": "hobble", "output": "⠓⠕⠆⠇⠑" }, { "input": "hobbled", "output": "⠓⠕⠆⠇⠫" }, { "input": "hobbles", "output": "⠓⠕⠆⠇⠑⠎" }, { "input": "hobbling", "output": "⠓⠕⠆⠇⠬" }, { "input": "hobby", "output": "⠓⠕⠆⠽" }, { "input": "hobbyhorse", "output": "⠓⠕⠆⠽⠓⠕⠗⠎⠑" }, { "input": "hobbyhorses", "output": "⠓⠕⠆⠽⠓⠕⠗⠎⠑⠎" }, { "input": "hobbyist", "output": "⠓⠕⠆⠽⠊⠌" }, { "input": "hobbyists", "output": "⠓⠕⠆⠽⠊⠌⠎" }, { "input": "hobgoblin", "output": "⠓⠕⠃⠛⠕⠃⠇⠔" }, { "input": "hobgoblins", "output": "⠓⠕⠃⠛⠕⠃⠇⠔⠎" }, { "input": "hobnail", "output": "â “â •â ƒâ â â Šâ ‡" }, { "input": "hobnailed", "output": "â “â •â ƒâ â â Šâ ‡â «" }, { "input": "hobnailing", "output": "â “â •â ƒâ â â Šâ ‡â ¬" }, { "input": "hobnails", "output": "â “â •â ƒâ â â Šâ ‡â Ž" }, { "input": "hobnob", "output": "â “â •â ƒâ â •â ƒ" }, { "input": "hobnobbed", "output": "â “â •â ƒâ â •⠆⠫" }, { "input": "hobnobbing", "output": "â “â •â ƒâ â •⠆⠬" }, { "input": "hobnobs", "output": "â “â •â ƒâ â •⠃⠎" }, { "input": "hobo", "output": "⠓⠕⠃⠕" }, { "input": "hoboes", "output": "⠓⠕⠃⠕⠑⠎" }, { "input": "hobos", "output": "⠓⠕⠃⠕⠎" }, { "input": "hobs", "output": "⠓⠕⠃⠎" }, { "input": "hock", "output": "⠓⠕⠉⠅" }, { "input": "hocked", "output": "⠓⠕⠉⠅⠫" }, { "input": "hockey", "output": "⠓⠕⠉⠅⠑⠽" }, { "input": "hocking", "output": "⠓⠕⠉⠅⠬" }, { "input": "hocks", "output": "⠓⠕⠉⠅⠎" }, { "input": "hockshop", "output": "⠓⠕⠉⠅⠩⠕â " }, { "input": "hockshops", "output": "⠓⠕⠉⠅⠩⠕â â Ž" }, { "input": "hod", "output": "â “â •â ™" }, { "input": "hodgepodge", "output": "⠓⠕⠙⠛⠑â â •⠙⠛⠑" }, { "input": "hodgepodges", "output": "⠓⠕⠙⠛⠑â â •⠙⠛⠑⠎" }, { "input": "hods", "output": "⠓⠕⠙⠎" }, { "input": "hoe", "output": "â “â •â ‘" }, { "input": "hoed", "output": "â “â •â «" }, { "input": "hoedown", "output": "⠓⠕⠑⠙⠪â " }, { "input": "hoedowns", "output": "⠓⠕⠑⠙⠪â â Ž" }, { "input": "hoeing", "output": "â “â •â ‘â ¬" }, { "input": "hoes", "output": "â “â •â ‘â Ž" }, { "input": "hog", "output": "â “â •â ›" }, { "input": "hogan", "output": "â “â •â ›â â " }, { "input": "hogans", "output": "â “â •â ›â â â Ž" }, { "input": "hogged", "output": "â “â •â ¶â «" }, { "input": "hogging", "output": "â “â •â ¶â ¬" }, { "input": "hoggish", "output": "â “â •â ¶â Šâ ©" }, { "input": "hogs", "output": "⠓⠕⠛⠎" }, { "input": "hogshead", "output": "⠓⠕⠛⠎⠓⠂⠙" }, { "input": "hogsheads", "output": "⠓⠕⠛⠎⠓⠂⠙⠎" }, { "input": "hogwash", "output": "⠓⠕⠛⠺â â ©" }, { "input": "hoist", "output": "â “â •â Šâ Œ" }, { "input": "hoisted", "output": "⠓⠕⠊⠌⠫" }, { "input": "hoisting", "output": "⠓⠕⠊⠌⠬" }, { "input": "hoists", "output": "⠓⠕⠊⠌⠎" }, { "input": "hokey", "output": "â “â •â …â ‘â ½" }, { "input": "hokier", "output": "â “â •â …â Šâ »" }, { "input": "hokiest", "output": "â “â •â …â Šâ ‘â Œ" }, { "input": "hokum", "output": "â “â •â …â ¥â " }, { "input": "hold", "output": "⠓⠕⠇⠙" }, { "input": "holder", "output": "⠓⠕⠇⠙⠻" }, { "input": "holders", "output": "⠓⠕⠇⠙⠻⠎" }, { "input": "holding", "output": "⠓⠕⠇⠙⠬" }, { "input": "holdings", "output": "⠓⠕⠇⠙⠬⠎" }, { "input": "holdout", "output": "⠓⠕⠇⠙⠳⠞" }, { "input": "holdouts", "output": "⠓⠕⠇⠙⠳⠞⠎" }, { "input": "holdover", "output": "⠓⠕⠇⠙⠕⠧⠻" }, { "input": "holdovers", "output": "⠓⠕⠇⠙⠕⠧⠻⠎" }, { "input": "holds", "output": "⠓⠕⠇⠙⠎" }, { "input": "holdup", "output": "⠓⠕⠇⠙⠥â " }, { "input": "holdups", "output": "⠓⠕⠇⠙⠥â â Ž" }, { "input": "hole", "output": "⠓⠕⠇⠑" }, { "input": "holed", "output": "⠓⠕⠇⠫" }, { "input": "holes", "output": "⠓⠕⠇⠑⠎" }, { "input": "holiday", "output": "⠓⠕⠇⠊â â ™" }, { "input": "holidayed", "output": "⠓⠕⠇⠊â â ™â «" }, { "input": "holidaying", "output": "⠓⠕⠇⠊â â ™â ¬" }, { "input": "holidays", "output": "⠓⠕⠇⠊â â ™â Ž" }, { "input": "holier", "output": "⠓⠕⠇⠊⠻" }, { "input": "holiest", "output": "⠓⠕⠇⠊⠑⠌" }, { "input": "holiness", "output": "⠓⠕⠇⠊⠰⠎" }, { "input": "holing", "output": "⠓⠕⠇⠬" }, { "input": "holistic", "output": "⠓⠕⠇⠊⠌⠊⠉" }, { "input": "holler", "output": "⠓⠕⠇⠇⠻" }, { "input": "hollered", "output": "⠓⠕⠇⠇⠻⠫" }, { "input": "hollering", "output": "⠓⠕⠇⠇⠻⠬" }, { "input": "hollers", "output": "⠓⠕⠇⠇⠻⠎" }, { "input": "hollies", "output": "⠓⠕⠇⠇⠊⠑⠎" }, { "input": "hollow", "output": "⠓⠕⠇⠇⠪" }, { "input": "hollowed", "output": "⠓⠕⠇⠇⠪⠫" }, { "input": "hollower", "output": "⠓⠕⠇⠇⠪⠻" }, { "input": "hollowest", "output": "⠓⠕⠇⠇⠪⠑⠌" }, { "input": "hollowing", "output": "⠓⠕⠇⠇⠪⠬" }, { "input": "hollowly", "output": "⠓⠕⠇⠇⠪⠇⠽" }, { "input": "hollowness", "output": "⠓⠕⠇⠇⠪⠰⠎" }, { "input": "hollows", "output": "⠓⠕⠇⠇⠪⠎" }, { "input": "holly", "output": "⠓⠕⠇⠇⠽" }, { "input": "hollyhock", "output": "⠓⠕⠇⠇⠽⠓⠕⠉⠅" }, { "input": "hollyhocks", "output": "⠓⠕⠇⠇⠽⠓⠕⠉⠅⠎" }, { "input": "holocaust", "output": "⠓⠕⠇⠕⠉â â ¥â Œ" }, { "input": "holocausts", "output": "⠓⠕⠇⠕⠉â â ¥â Œâ Ž" }, { "input": "hologram", "output": "⠓⠕⠇⠕⠛⠗â â " }, { "input": "holograms", "output": "⠓⠕⠇⠕⠛⠗â â â Ž" }, { "input": "holograph", "output": "⠓⠕⠇⠕⠛⠗â â â “" }, { "input": "holographic", "output": "⠓⠕⠇⠕⠛⠗â â â “â Šâ ‰" }, { "input": "holographs", "output": "⠓⠕⠇⠕⠛⠗â â â “â Ž" }, { "input": "holography", "output": "⠓⠕⠇⠕⠛⠗â â â “â ½" }, { "input": "holster", "output": "⠓⠕⠇⠌⠻" }, { "input": "holstered", "output": "⠓⠕⠇⠌⠻⠫" }, { "input": "holstering", "output": "⠓⠕⠇⠌⠻⠬" }, { "input": "holsters", "output": "⠓⠕⠇⠌⠻⠎" }, { "input": "holy", "output": "⠓⠕⠇⠽" }, { "input": "homage", "output": "â “â •â â â ›â ‘" }, { "input": "homages", "output": "â “â •â â â ›â ‘â Ž" }, { "input": "homburg", "output": "â “â •â â ƒâ ¥â —â ›" }, { "input": "homburgs", "output": "â “â •â â ƒâ ¥â —⠛⠎" }, { "input": "home", "output": "â “â •â â ‘" }, { "input": "homebodies", "output": "â “â •â â ‘⠃⠕⠙⠊⠑⠎" }, { "input": "homebody", "output": "â “â •â â ‘⠃⠕⠙⠽" }, { "input": "homeboy", "output": "â “â •â â ‘⠃⠕⠽" }, { "input": "homeboys", "output": "â “â •â â ‘⠃⠕⠽⠎" }, { "input": "homecoming", "output": "â “â •â â ‘⠉⠕â â ¬" }, { "input": "homecomings", "output": "â “â •â â ‘⠉⠕â â ¬â Ž" }, { "input": "homed", "output": "â “â •â â «" }, { "input": "homegrown", "output": "â “â •â â ‘⠛⠗⠪â " }, { "input": "homeland", "output": "â “â •â â ‘⠇⠯" }, { "input": "homelands", "output": "â “â •â â ‘⠇⠯⠎" }, { "input": "homeless", "output": "â “â •â â ‘⠨⠎" }, { "input": "homelessness", "output": "â “â •â â ‘⠨⠎⠰⠎" }, { "input": "homelier", "output": "â “â •â â ‘⠇⠊⠻" }, { "input": "homeliest", "output": "â “â •â â ‘⠇⠊⠑⠌" }, { "input": "homeliness", "output": "â “â •â â ‘⠇⠊⠰⠎" }, { "input": "homely", "output": "â “â •â â ‘⠇⠽" }, { "input": "homemade", "output": "â “â •â â ‘â â â ™â ‘" }, { "input": "homemaker", "output": "â “â •â â ‘â â â …â »" }, { "input": "homemakers", "output": "â “â •â â ‘â â â …⠻⠎" }, { "input": "homeopathic", "output": "â “â •â â ‘â •â â â ¹â Šâ ‰" }, { "input": "homeopathy", "output": "â “â •â â ‘â •â â â ¹â ½" }, { "input": "homeowner", "output": "â “â •â â ‘â ªâ â »" }, { "input": "homeowners", "output": "â “â •â â ‘â ªâ â »â Ž" }, { "input": "homepage", "output": "â “â •â â ‘â â â ›â ‘" }, { "input": "homepages", "output": "â “â •â â ‘â â â ›â ‘â Ž" }, { "input": "homer", "output": "â “â •â â »" }, { "input": "homered", "output": "â “â •â â »â «" }, { "input": "homering", "output": "â “â •â â »â ¬" }, { "input": "homeroom", "output": "â “â •â â ‘â —â •â •â " }, { "input": "homerooms", "output": "â “â •â â ‘â —â •â •â â Ž" }, { "input": "homers", "output": "â “â •â â »â Ž" }, { "input": "homes", "output": "â “â •â â ‘â Ž" }, { "input": "homesick", "output": "â “â •â â ‘⠎⠊⠉⠅" }, { "input": "homesickness", "output": "â “â •â â ‘⠎⠊⠉⠅⠰⠎" }, { "input": "homespun", "output": "â “â •â â ‘â Žâ â ¥â " }, { "input": "homestead", "output": "â “â •â â ‘⠌⠂⠙" }, { "input": "homesteaded", "output": "â “â •â â ‘⠌⠂⠙⠫" }, { "input": "homesteader", "output": "â “â •â â ‘⠌⠂⠙⠻" }, { "input": "homesteaders", "output": "â “â •â â ‘⠌⠂⠙⠻⠎" }, { "input": "homesteading", "output": "â “â •â â ‘⠌⠂⠙⠬" }, { "input": "homesteads", "output": "â “â •â â ‘⠌⠂⠙⠎" }, { "input": "homestretch", "output": "â “â •â â ‘⠌⠗⠑⠞⠡" }, { "input": "homestretches", "output": "â “â •â â ‘⠌⠗⠑⠞⠡⠑⠎" }, { "input": "hometown", "output": "â “â •â â ‘â žâ ªâ " }, { "input": "hometowns", "output": "â “â •â â ‘â žâ ªâ â Ž" }, { "input": "homeward", "output": "â “â •â â ‘⠺⠜⠙" }, { "input": "homewards", "output": "â “â •â â ‘⠺⠜⠙⠎" }, { "input": "homework", "output": "â “â •â â ‘â â º" }, { "input": "homey", "output": "â “â •â â ‘â ½" }, { "input": "homeyness", "output": "â “â •â â ‘⠽⠰⠎" }, { "input": "homeys", "output": "â “â •â â ‘⠽⠎" }, { "input": "homicidal", "output": "â “â •â â Šâ ‰â Šâ ™â â ‡" }, { "input": "homicide", "output": "â “â •â â Šâ ‰â Šâ ™â ‘" }, { "input": "homicides", "output": "â “â •â â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "homie", "output": "â “â •â â Šâ ‘" }, { "input": "homier", "output": "â “â •â â Šâ »" }, { "input": "homies", "output": "â “â •â â Šâ ‘â Ž" }, { "input": "homiest", "output": "â “â •â â Šâ ‘â Œ" }, { "input": "homilies", "output": "â “â •â â Šâ ‡â Šâ ‘â Ž" }, { "input": "homily", "output": "â “â •â â Šâ ‡â ½" }, { "input": "hominess", "output": "â “â •â â Šâ °â Ž" }, { "input": "homing", "output": "â “â •â â ¬" }, { "input": "hominy", "output": "â “â •â â ”â ½" }, { "input": "homogeneity", "output": "â “â •â â •⠛⠢⠑⠰⠽" }, { "input": "homogeneous", "output": "â “â •â â •⠛⠢⠑⠳⠎" }, { "input": "homogeneously", "output": "â “â •â â •⠛⠢⠑⠳⠎⠇⠽" }, { "input": "homogenization", "output": "â “â •â â •⠛⠢⠊⠵â â °â " }, { "input": "homogenize", "output": "â “â •â â •⠛⠢⠊⠵⠑" }, { "input": "homogenized", "output": "â “â •â â •⠛⠢⠊⠵⠫" }, { "input": "homogenizes", "output": "â “â •â â •⠛⠢⠊⠵⠑⠎" }, { "input": "homogenizing", "output": "â “â •â â •⠛⠢⠊⠵⠬" }, { "input": "homograph", "output": "â “â •â â •⠛⠗â â â “" }, { "input": "homographs", "output": "â “â •â â •⠛⠗â â â “â Ž" }, { "input": "homonym", "output": "â “â •â â •â â ½â " }, { "input": "homonyms", "output": "â “â •â â •â â ½â â Ž" }, { "input": "homophobia", "output": "â “â •â â •â â “⠕⠃⠊â " }, { "input": "homophobic", "output": "â “â •â â •â â “⠕⠃⠊⠉" }, { "input": "homophone", "output": "â “â •â â •â â “â â •" }, { "input": "homophones", "output": "â “â •â â •â â “â â •â Ž" }, { "input": "homosexual", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡" }, { "input": "homosexuality", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡â °â ½" }, { "input": "homosexuals", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡â Ž" }, { "input": "homy", "output": "â “â •â â ½" }, { "input": "honcho", "output": "â “â •â â ¡â •" }, { "input": "honchos", "output": "â “â •â â ¡â •â Ž" }, { "input": "hone", "output": "â “â â •" }, { "input": "honed", "output": "â “â •â â «" }, { "input": "hones", "output": "â “â â •â Ž" }, { "input": "honest", "output": "â “â â •â Œ" }, { "input": "honester", "output": "â “â â •⠌⠻" }, { "input": "honestest", "output": "â “â â •⠌⠑⠌" }, { "input": "honestly", "output": "â “â â •⠌⠇⠽" }, { "input": "honesty", "output": "â “â â •⠌⠽" }, { "input": "honey", "output": "â “â â •â ½" }, { "input": "honeybee", "output": "â “â â •⠽⠃⠑⠑" }, { "input": "honeybees", "output": "â “â â •⠽⠃⠑⠑⠎" }, { "input": "honeycomb", "output": "â “â â •⠽⠉⠕â â ƒ" }, { "input": "honeycombed", "output": "â “â â •⠽⠉⠕â â ƒâ «" }, { "input": "honeycombing", "output": "â “â â •⠽⠉⠕â â ƒâ ¬" }, { "input": "honeycombs", "output": "â “â â •⠽⠉⠕â â ƒâ Ž" }, { "input": "honeydew", "output": "â “â â •⠽⠙⠑⠺" }, { "input": "honeydews", "output": "â “â â •⠽⠙⠑⠺⠎" }, { "input": "honeyed", "output": "â “â â •⠽⠫" }, { "input": "honeying", "output": "â “â â •⠽⠬" }, { "input": "honeymoon", "output": "â “â â •â ½â â •â •â " }, { "input": "honeymooned", "output": "â “â â •â ½â â •â •â â «" }, { "input": "honeymooner", "output": "â “â â •â ½â â •â •â â »" }, { "input": "honeymooners", "output": "â “â â •â ½â â •â •â â »â Ž" }, { "input": "honeymooning", "output": "â “â â •â ½â â •â •â â ¬" }, { "input": "honeymoons", "output": "â “â â •â ½â â •â •â â Ž" }, { "input": "honeys", "output": "â “â â •⠽⠎" }, { "input": "honeysuckle", "output": "â “â â •⠽⠎⠥⠉⠅⠇⠑" }, { "input": "honeysuckles", "output": "â “â â •⠽⠎⠥⠉⠅⠇⠑⠎" }, { "input": "honied", "output": "â “â •â â Šâ «" }, { "input": "honing", "output": "â “â •â â ¬" }, { "input": "honk", "output": "â “â •â â …" }, { "input": "honked", "output": "â “â •â â …â «" }, { "input": "honking", "output": "â “â •â â …â ¬" }, { "input": "honks", "output": "â “â •â â …â Ž" }, { "input": "honor", "output": "â “â •â â •â —" }, { "input": "honorable", "output": "â “â •â â •â —â â ƒâ ‡â ‘" }, { "input": "honorably", "output": "â “â •â â •â —â â ƒâ ‡â ½" }, { "input": "honoraria", "output": "â “â •â â •⠗⠜⠊â " }, { "input": "honorarium", "output": "â “â •â â •⠗⠜⠊⠥â " }, { "input": "honorariums", "output": "â “â •â â •⠗⠜⠊⠥â â Ž" }, { "input": "honorary", "output": "â “â •â â •⠗⠜⠽" }, { "input": "honored", "output": "â “â •â â •â —â «" }, { "input": "honorific", "output": "â “â •â â •â —â Šâ ‹â Šâ ‰" }, { "input": "honorifics", "output": "â “â •â â •⠗⠊⠋⠊⠉⠎" }, { "input": "honoring", "output": "â “â •â â •â —â ¬" }, { "input": "honors", "output": "â “â •â â •â —â Ž" }, { "input": "hooch", "output": "â “â •â •â ¡" }, { "input": "hood", "output": "â “â •â •â ™" }, { "input": "hooded", "output": "⠓⠕⠕⠙⠫" }, { "input": "hooding", "output": "⠓⠕⠕⠙⠬" }, { "input": "hoodlum", "output": "⠓⠕⠕⠙⠇⠥â " }, { "input": "hoodlums", "output": "⠓⠕⠕⠙⠇⠥â â Ž" }, { "input": "hoodoo", "output": "⠓⠕⠕⠙⠕⠕" }, { "input": "hoodooed", "output": "⠓⠕⠕⠙⠕⠕⠫" }, { "input": "hoodooing", "output": "⠓⠕⠕⠙⠕⠕⠬" }, { "input": "hoodoos", "output": "⠓⠕⠕⠙⠕⠕⠎" }, { "input": "hoods", "output": "⠓⠕⠕⠙⠎" }, { "input": "hoodwink", "output": "⠓⠕⠕⠙⠺⠔⠅" }, { "input": "hoodwinked", "output": "⠓⠕⠕⠙⠺⠔⠅⠫" }, { "input": "hoodwinking", "output": "⠓⠕⠕⠙⠺⠔⠅⠬" }, { "input": "hoodwinks", "output": "⠓⠕⠕⠙⠺⠔⠅⠎" }, { "input": "hooey", "output": "â “â •â •â ‘â ½" }, { "input": "hoof", "output": "â “â •â ·" }, { "input": "hoofed", "output": "â “â •â ·â «" }, { "input": "hoofing", "output": "â “â •â ·â ¬" }, { "input": "hoofs", "output": "â “â •â ·â Ž" }, { "input": "hook", "output": "â “â •â •â …" }, { "input": "hookah", "output": "â “â •â •â …â â “" }, { "input": "hookahs", "output": "â “â •â •â …â â “â Ž" }, { "input": "hooked", "output": "â “â •â •â …â «" }, { "input": "hooker", "output": "â “â •â •â …â »" }, { "input": "hookers", "output": "⠓⠕⠕⠅⠻⠎" }, { "input": "hookey", "output": "â “â •â •â …â ‘â ½" }, { "input": "hooking", "output": "â “â •â •â …â ¬" }, { "input": "hooks", "output": "â “â •â •â …â Ž" }, { "input": "hookup", "output": "â “â •â •â …â ¥â " }, { "input": "hookups", "output": "â “â •â •â …â ¥â â Ž" }, { "input": "hookworm", "output": "⠓⠕⠕⠅⠺⠕⠗â " }, { "input": "hookworms", "output": "⠓⠕⠕⠅⠺⠕⠗â â Ž" }, { "input": "hooky", "output": "â “â •â •â …â ½" }, { "input": "hooligan", "output": "⠓⠕⠕⠇⠊⠛â â " }, { "input": "hooliganism", "output": "⠓⠕⠕⠇⠊⠛â â â Šâ Žâ " }, { "input": "hooligans", "output": "⠓⠕⠕⠇⠊⠛â â â Ž" }, { "input": "hoop", "output": "â “â •â •â " }, { "input": "hooped", "output": "â “â •â •â â «" }, { "input": "hooping", "output": "â “â •â •â â ¬" }, { "input": "hoopla", "output": "â “â •â •â â ‡â " }, { "input": "hoops", "output": "â “â •â •â â Ž" }, { "input": "hoorah", "output": "â “â •â •â —â â “" }, { "input": "hoorahs", "output": "â “â •â •â —â â “â Ž" }, { "input": "hooray", "output": "â “â •â •â —â â ½" }, { "input": "hoorayed", "output": "â “â •â •â —â â ½â «" }, { "input": "hooraying", "output": "â “â •â •â —â â ½â ¬" }, { "input": "hoorays", "output": "â “â •â •â —â â ½â Ž" }, { "input": "hoot", "output": "â “â •â •â ž" }, { "input": "hootch", "output": "â “â •â •â žâ ¡" }, { "input": "hooted", "output": "â “â •â •â žâ «" }, { "input": "hooter", "output": "â “â •â •â žâ »" }, { "input": "hooters", "output": "⠓⠕⠕⠞⠻⠎" }, { "input": "hooting", "output": "â “â •â •â žâ ¬" }, { "input": "hoots", "output": "â “â •â •â žâ Ž" }, { "input": "hooves", "output": "â “â •â •â §â ‘â Ž" }, { "input": "hop", "output": "â “â •â " }, { "input": "hope", "output": "â “â •â â ‘" }, { "input": "hoped", "output": "â “â •â â «" }, { "input": "hopeful", "output": "â “â •â â ‘â °â ‡" }, { "input": "hopefully", "output": "â “â •â â ‘⠰⠇⠇⠽" }, { "input": "hopefulness", "output": "â “â •â â ‘⠰⠇⠰⠎" }, { "input": "hopefuls", "output": "â “â •â â ‘⠰⠇⠎" }, { "input": "hopeless", "output": "â “â •â â ‘⠨⠎" }, { "input": "hopelessly", "output": "â “â •â â ‘⠨⠎⠇⠽" }, { "input": "hopelessness", "output": "â “â •â â ‘⠨⠎⠰⠎" }, { "input": "hopes", "output": "â “â •â â ‘â Ž" }, { "input": "hoping", "output": "â “â •â â ¬" }, { "input": "hopped", "output": "â “â •â â â «" }, { "input": "hopper", "output": "â “â •â â â »" }, { "input": "hoppers", "output": "â “â •â â â »â Ž" }, { "input": "hopping", "output": "â “â •â â â ¬" }, { "input": "hops", "output": "â “â •â â Ž" }, { "input": "hopscotch", "output": "â “â •â â Žâ ‰â •â žâ ¡" }, { "input": "hopscotched", "output": "â “â •â â Žâ ‰â •â žâ ¡â «" }, { "input": "hopscotches", "output": "â “â •â â Žâ ‰â •â žâ ¡â ‘â Ž" }, { "input": "hopscotching", "output": "â “â •â â Žâ ‰â •â žâ ¡â ¬" }, { "input": "horde", "output": "⠓⠕⠗⠙⠑" }, { "input": "horded", "output": "⠓⠕⠗⠙⠫" }, { "input": "hordes", "output": "⠓⠕⠗⠙⠑⠎" }, { "input": "hording", "output": "⠓⠕⠗⠙⠬" }, { "input": "horizon", "output": "⠓⠕⠗⠊⠵⠕â " }, { "input": "horizons", "output": "⠓⠕⠗⠊⠵⠕â â Ž" }, { "input": "horizontal", "output": "⠓⠕⠗⠊⠵⠕â â žâ â ‡" }, { "input": "horizontally", "output": "⠓⠕⠗⠊⠵⠕â â žâ â ‡â ‡â ½" }, { "input": "horizontals", "output": "⠓⠕⠗⠊⠵⠕â â žâ â ‡â Ž" }, { "input": "hormonal", "output": "â “â •â —â â •â â â ‡" }, { "input": "hormone", "output": "â “â •â —â â â •" }, { "input": "hormones", "output": "â “â •â —â â â •â Ž" }, { "input": "horn", "output": "â “â •â —â " }, { "input": "horned", "output": "â “â •â —â â «" }, { "input": "hornet", "output": "â “â •â —â â ‘â ž" }, { "input": "hornets", "output": "â “â •â —â â ‘â žâ Ž" }, { "input": "hornier", "output": "â “â •â —â â Šâ »" }, { "input": "horniest", "output": "â “â •â —â â Šâ ‘â Œ" }, { "input": "hornless", "output": "â “â •â —â â ¨â Ž" }, { "input": "hornpipe", "output": "â “â •â —â â â Šâ â ‘" }, { "input": "hornpipes", "output": "â “â •â —â â â Šâ â ‘â Ž" }, { "input": "horns", "output": "â “â •â —â â Ž" }, { "input": "horny", "output": "â “â •â —â â ½" }, { "input": "horology", "output": "⠓⠕⠗⠕⠇⠕⠛⠽" }, { "input": "horoscope", "output": "⠓⠕⠗⠕⠎⠉⠕â â ‘" }, { "input": "horoscopes", "output": "⠓⠕⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "horrendous", "output": "⠓⠕⠗⠗⠢⠙⠳⠎" }, { "input": "horrendously", "output": "⠓⠕⠗⠗⠢⠙⠳⠎⠇⠽" }, { "input": "horrible", "output": "⠓⠕⠗⠗⠊⠃⠇⠑" }, { "input": "horribly", "output": "⠓⠕⠗⠗⠊⠃⠇⠽" }, { "input": "horrid", "output": "â “â •â —â —â Šâ ™" }, { "input": "horridly", "output": "⠓⠕⠗⠗⠊⠙⠇⠽" }, { "input": "horrific", "output": "â “â •â —â —â Šâ ‹â Šâ ‰" }, { "input": "horrified", "output": "â “â •â —â —â Šâ ‹â Šâ «" }, { "input": "horrifies", "output": "â “â •â —â —â Šâ ‹â Šâ ‘â Ž" }, { "input": "horrify", "output": "â “â •â —â —â Šâ ‹â ½" }, { "input": "horrifying", "output": "⠓⠕⠗⠗⠊⠋⠽⠬" }, { "input": "horror", "output": "â “â •â —â —â •â —" }, { "input": "horrors", "output": "â “â •â —â —â •â —â Ž" }, { "input": "horse", "output": "â “â •â —â Žâ ‘" }, { "input": "horseback", "output": "â “â •â —â Žâ ‘â ƒâ â ‰â …" }, { "input": "horsed", "output": "â “â •â —â Žâ «" }, { "input": "horseflies", "output": "⠓⠕⠗⠎⠑⠋⠇⠊⠑⠎" }, { "input": "horsefly", "output": "⠓⠕⠗⠎⠑⠋⠇⠽" }, { "input": "horsehair", "output": "â “â •â —â Žâ ‘â “â â Šâ —" }, { "input": "horsehide", "output": "⠓⠕⠗⠎⠑⠓⠊⠙⠑" }, { "input": "horseman", "output": "â “â •â —â Žâ ‘â â â " }, { "input": "horsemanship", "output": "â “â •â —â Žâ ‘â â â â ©â Šâ " }, { "input": "horsemen", "output": "â “â •â —â Žâ ‘â â ¢" }, { "input": "horseplay", "output": "â “â •â —â Žâ ‘â â ‡â â ½" }, { "input": "horsepower", "output": "â “â •â —â Žâ ‘â â ªâ »" }, { "input": "horseradish", "output": "â “â •â —â Žâ ‘â —â â ™â Šâ ©" }, { "input": "horseradishes", "output": "â “â •â —â Žâ ‘â —â â ™â Šâ ©â ‘â Ž" }, { "input": "horses", "output": "â “â •â —â Žâ ‘â Ž" }, { "input": "horseshoe", "output": "â “â •â —â Žâ ‘â ©â •â ‘" }, { "input": "horseshoed", "output": "â “â •â —â Žâ ‘â ©â •â «" }, { "input": "horseshoeing", "output": "â “â •â —â Žâ ‘â ©â •â ‘â ¬" }, { "input": "horseshoes", "output": "â “â •â —â Žâ ‘â ©â •â ‘â Ž" }, { "input": "horsetail", "output": "â “â •â —â Žâ ‘â žâ â Šâ ‡" }, { "input": "horsetails", "output": "â “â •â —â Žâ ‘â žâ â Šâ ‡â Ž" }, { "input": "horsewhip", "output": "⠓⠕⠗⠎⠑⠱⠊â " }, { "input": "horsewhipped", "output": "⠓⠕⠗⠎⠑⠱⠊â â â «" }, { "input": "horsewhipping", "output": "⠓⠕⠗⠎⠑⠱⠊â â â ¬" }, { "input": "horsewhips", "output": "⠓⠕⠗⠎⠑⠱⠊â â Ž" }, { "input": "horsewoman", "output": "⠓⠕⠗⠎⠑⠺⠕â â â " }, { "input": "horsewomen", "output": "⠓⠕⠗⠎⠑⠺⠕â â ¢" }, { "input": "horsey", "output": "â “â •â —â Žâ ‘â ½" }, { "input": "horsier", "output": "â “â •â —â Žâ Šâ »" }, { "input": "horsiest", "output": "â “â •â —â Žâ Šâ ‘â Œ" }, { "input": "horsing", "output": "â “â •â —â Žâ ¬" }, { "input": "horsy", "output": "â “â •â —â Žâ ½" }, { "input": "horticultural", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "horticulture", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠑" }, { "input": "horticulturist", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌" }, { "input": "horticulturists", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌⠎" }, { "input": "hos", "output": "â “â •â Ž" }, { "input": "hosanna", "output": "â “â •â Žâ â â â " }, { "input": "hosannas", "output": "â “â •â Žâ â â â â Ž" }, { "input": "hose", "output": "â “â •â Žâ ‘" }, { "input": "hosed", "output": "â “â •â Žâ «" }, { "input": "hoses", "output": "â “â •â Žâ ‘â Ž" }, { "input": "hosiery", "output": "⠓⠕⠎⠊⠻⠽" }, { "input": "hosing", "output": "â “â •â Žâ ¬" }, { "input": "hospice", "output": "â “â •â Žâ â Šâ ‰â ‘" }, { "input": "hospices", "output": "â “â •â Žâ â Šâ ‰â ‘â Ž" }, { "input": "hospitable", "output": "â “â •â Žâ â Šâ žâ â ƒâ ‡â ‘" }, { "input": "hospitably", "output": "â “â •â Žâ â Šâ žâ â ƒâ ‡â ½" }, { "input": "hospital", "output": "â “â •â Žâ â Šâ žâ â ‡" }, { "input": "hospitality", "output": "â “â •â Žâ â Šâ žâ â ‡â °â ½" }, { "input": "hospitalization", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ â °â " }, { "input": "hospitalizations", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ â °â â Ž" }, { "input": "hospitalize", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "hospitalized", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ «" }, { "input": "hospitalizes", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "hospitalizing", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ ¬" }, { "input": "hospitals", "output": "â “â •â Žâ â Šâ žâ â ‡â Ž" }, { "input": "host", "output": "â “â •â Œ" }, { "input": "hostage", "output": "â “â •â Œâ â ›â ‘" }, { "input": "hostages", "output": "â “â •â Œâ â ›â ‘â Ž" }, { "input": "hosted", "output": "⠓⠕⠌⠫" }, { "input": "hostel", "output": "⠓⠕⠌⠑⠇" }, { "input": "hosteled", "output": "⠓⠕⠌⠑⠇⠫" }, { "input": "hosteler", "output": "⠓⠕⠌⠑⠇⠻" }, { "input": "hostelers", "output": "⠓⠕⠌⠑⠇⠻⠎" }, { "input": "hosteling", "output": "⠓⠕⠌⠑⠇⠬" }, { "input": "hostelled", "output": "⠓⠕⠌⠑⠇⠇⠫" }, { "input": "hostelling", "output": "⠓⠕⠌⠑⠇⠇⠬" }, { "input": "hostelries", "output": "⠓⠕⠌⠑⠇⠗⠊⠑⠎" }, { "input": "hostelry", "output": "⠓⠕⠌⠑⠇⠗⠽" }, { "input": "hostels", "output": "⠓⠕⠌⠑⠇⠎" }, { "input": "hostess", "output": "⠓⠕⠌⠑⠎⠎" }, { "input": "hostessed", "output": "⠓⠕⠌⠑⠎⠎⠫" }, { "input": "hostesses", "output": "⠓⠕⠌⠑⠎⠎⠑⠎" }, { "input": "hostessing", "output": "⠓⠕⠌⠑⠎⠎⠬" }, { "input": "hostile", "output": "⠓⠕⠌⠊⠇⠑" }, { "input": "hostilely", "output": "⠓⠕⠌⠊⠇⠑⠇⠽" }, { "input": "hostiles", "output": "⠓⠕⠌⠊⠇⠑⠎" }, { "input": "hostilities", "output": "⠓⠕⠌⠊⠇⠊⠞⠊⠑⠎" }, { "input": "hostility", "output": "⠓⠕⠌⠊⠇⠰⠽" }, { "input": "hosting", "output": "⠓⠕⠌⠬" }, { "input": "hostler", "output": "⠓⠕⠌⠇⠻" }, { "input": "hostlers", "output": "⠓⠕⠌⠇⠻⠎" }, { "input": "hosts", "output": "⠓⠕⠌⠎" }, { "input": "hot", "output": "â “â •â ž" }, { "input": "hotbed", "output": "⠓⠕⠞⠃⠫" }, { "input": "hotbeds", "output": "⠓⠕⠞⠃⠫⠎" }, { "input": "hotcake", "output": "â “â •â žâ ‰â â …â ‘" }, { "input": "hotcakes", "output": "â “â •â žâ ‰â â …â ‘â Ž" }, { "input": "hotel", "output": "â “â •â žâ ‘â ‡" }, { "input": "hotelier", "output": "⠓⠕⠞⠑⠇⠊⠻" }, { "input": "hoteliers", "output": "⠓⠕⠞⠑⠇⠊⠻⠎" }, { "input": "hotels", "output": "⠓⠕⠞⠑⠇⠎" }, { "input": "hothead", "output": "â “â •â žâ “â ‚â ™" }, { "input": "hotheaded", "output": "⠓⠕⠞⠓⠂⠙⠫" }, { "input": "hotheadedly", "output": "⠓⠕⠞⠓⠂⠙⠫⠇⠽" }, { "input": "hotheadedness", "output": "⠓⠕⠞⠓⠂⠙⠫⠰⠎" }, { "input": "hotheads", "output": "⠓⠕⠞⠓⠂⠙⠎" }, { "input": "hothouse", "output": "⠓⠕⠞⠓⠳⠎⠑" }, { "input": "hothouses", "output": "⠓⠕⠞⠓⠳⠎⠑⠎" }, { "input": "hotly", "output": "⠓⠕⠞⠇⠽" }, { "input": "hotness", "output": "â “â •â žâ °â Ž" }, { "input": "hotshot", "output": "â “â •â žâ ©â •â ž" }, { "input": "hotshots", "output": "â “â •â žâ ©â •â žâ Ž" }, { "input": "hotter", "output": "â “â •â žâ žâ »" }, { "input": "hottest", "output": "â “â •â žâ žâ ‘â Œ" }, { "input": "hoummos", "output": "â “â ³â â â •â Ž" }, { "input": "hound", "output": "⠓⠨⠙" }, { "input": "hounded", "output": "⠓⠨⠙⠫" }, { "input": "hounding", "output": "⠓⠨⠙⠬" }, { "input": "hounds", "output": "⠓⠨⠙⠎" }, { "input": "hour", "output": "⠓⠳⠗" }, { "input": "hourglass", "output": "⠓⠳⠗⠛⠇â â Žâ Ž" }, { "input": "hourglasses", "output": "⠓⠳⠗⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "hourly", "output": "⠓⠳⠗⠇⠽" }, { "input": "hours", "output": "⠓⠳⠗⠎" }, { "input": "house", "output": "⠓⠳⠎⠑" }, { "input": "houseboat", "output": "⠓⠳⠎⠑⠃⠕â â ž" }, { "input": "houseboats", "output": "⠓⠳⠎⠑⠃⠕â â žâ Ž" }, { "input": "housebound", "output": "⠓⠳⠎⠑⠃⠨⠙" }, { "input": "housebreak", "output": "⠓⠳⠎⠑⠃⠗⠂⠅" }, { "input": "housebreaking", "output": "⠓⠳⠎⠑⠃⠗⠂⠅⠬" }, { "input": "housebreaks", "output": "⠓⠳⠎⠑⠃⠗⠂⠅⠎" }, { "input": "housebroke", "output": "⠓⠳⠎⠑⠃⠗⠕⠅⠑" }, { "input": "housebroken", "output": "⠓⠳⠎⠑⠃⠗⠕⠅⠢" }, { "input": "houseclean", "output": "⠓⠳⠎⠑⠉⠇⠂â " }, { "input": "housecleaned", "output": "⠓⠳⠎⠑⠉⠇⠂â â «" }, { "input": "housecleaning", "output": "⠓⠳⠎⠑⠉⠇⠂â â ¬" }, { "input": "housecleans", "output": "⠓⠳⠎⠑⠉⠇⠂â â Ž" }, { "input": "housecoat", "output": "⠓⠳⠎⠑⠉⠕â â ž" }, { "input": "housecoats", "output": "⠓⠳⠎⠑⠉⠕â â žâ Ž" }, { "input": "housed", "output": "⠓⠳⠎⠫" }, { "input": "houseflies", "output": "⠓⠳⠎⠑⠋⠇⠊⠑⠎" }, { "input": "housefly", "output": "⠓⠳⠎⠑⠋⠇⠽" }, { "input": "household", "output": "⠓⠳⠎⠑⠓⠕⠇⠙" }, { "input": "householder", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠻" }, { "input": "householders", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠻⠎" }, { "input": "households", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠎" }, { "input": "househusband", "output": "⠓⠳⠎⠑⠓⠥⠎⠃⠯" }, { "input": "househusbands", "output": "⠓⠳⠎⠑⠓⠥⠎⠃⠯⠎" }, { "input": "housekeeper", "output": "⠓⠳⠎⠑⠅⠑⠑â â »" }, { "input": "housekeepers", "output": "⠓⠳⠎⠑⠅⠑⠑â â »â Ž" }, { "input": "housekeeping", "output": "⠓⠳⠎⠑⠅⠑⠑â â ¬" }, { "input": "housemaid", "output": "⠓⠳⠎⠑â â â Šâ ™" }, { "input": "housemaids", "output": "⠓⠳⠎⠑â â â Šâ ™â Ž" }, { "input": "housemother", "output": "⠓⠳⠎⠑â â " }, { "input": "housemothers", "output": "⠓⠳⠎⠑â â â Ž" }, { "input": "houseplant", "output": "⠓⠳⠎⠑â â ‡â â â ž" }, { "input": "houseplants", "output": "⠓⠳⠎⠑â â ‡â â â žâ Ž" }, { "input": "houses", "output": "⠓⠳⠎⠑⠎" }, { "input": "housetop", "output": "⠓⠳⠎⠑⠞⠕â " }, { "input": "housetops", "output": "⠓⠳⠎⠑⠞⠕â â Ž" }, { "input": "housewares", "output": "⠓⠳⠎⠑⠺⠜⠑⠎" }, { "input": "housewarming", "output": "⠓⠳⠎⠑⠺⠜â â ¬" }, { "input": "housewarmings", "output": "⠓⠳⠎⠑⠺⠜â â ¬â Ž" }, { "input": "housewife", "output": "⠓⠳⠎⠑⠺⠊⠋⠑" }, { "input": "housewives", "output": "⠓⠳⠎⠑⠺⠊⠧⠑⠎" }, { "input": "housework", "output": "⠓⠳⠎⠑â â º" }, { "input": "housing", "output": "⠓⠳⠎⠬" }, { "input": "housings", "output": "⠓⠳⠎⠬⠎" }, { "input": "hove", "output": "â “â •â §â ‘" }, { "input": "hovel", "output": "â “â •â §â ‘â ‡" }, { "input": "hovels", "output": "⠓⠕⠧⠑⠇⠎" }, { "input": "hover", "output": "â “â •â §â »" }, { "input": "hovercraft", "output": "⠓⠕⠧⠻⠉⠗â â ‹â ž" }, { "input": "hovered", "output": "⠓⠕⠧⠻⠫" }, { "input": "hovering", "output": "⠓⠕⠧⠻⠬" }, { "input": "hovers", "output": "⠓⠕⠧⠻⠎" }, { "input": "how", "output": "â “â ª" }, { "input": "howdah", "output": "⠓⠪⠙â â “" }, { "input": "howdahs", "output": "⠓⠪⠙â â “â Ž" }, { "input": "howdy", "output": "⠓⠪⠙⠽" }, { "input": "however", "output": "â “â ªâ â ‘" }, { "input": "howitzer", "output": "⠓⠪⠊⠞⠵⠻" }, { "input": "howitzers", "output": "⠓⠪⠊⠞⠵⠻⠎" }, { "input": "howl", "output": "⠓⠪⠇" }, { "input": "howled", "output": "⠓⠪⠇⠫" }, { "input": "howler", "output": "⠓⠪⠇⠻" }, { "input": "howlers", "output": "⠓⠪⠇⠻⠎" }, { "input": "howling", "output": "⠓⠪⠇⠬" }, { "input": "howls", "output": "⠓⠪⠇⠎" }, { "input": "hows", "output": "⠓⠪⠎" }, { "input": "howsoever", "output": "⠓⠪⠎⠕â â ‘" }, { "input": "hub", "output": "⠓⠥⠃" }, { "input": "hubbies", "output": "⠓⠥⠆⠊⠑⠎" }, { "input": "hubbub", "output": "⠓⠥⠆⠥⠃" }, { "input": "hubbubs", "output": "⠓⠥⠆⠥⠃⠎" }, { "input": "hubby", "output": "⠓⠥⠆⠽" }, { "input": "hubcap", "output": "⠓⠥⠃⠉â â " }, { "input": "hubcaps", "output": "⠓⠥⠃⠉â â â Ž" }, { "input": "hubris", "output": "⠓⠥⠃⠗⠊⠎" }, { "input": "hubs", "output": "⠓⠥⠃⠎" }, { "input": "huckleberries", "output": "⠓⠥⠉⠅⠇⠑⠃⠻⠗⠊⠑⠎" }, { "input": "huckleberry", "output": "⠓⠥⠉⠅⠇⠑⠃⠻⠗⠽" }, { "input": "huckster", "output": "⠓⠥⠉⠅⠌⠻" }, { "input": "huckstered", "output": "⠓⠥⠉⠅⠌⠻⠫" }, { "input": "huckstering", "output": "⠓⠥⠉⠅⠌⠻⠬" }, { "input": "hucksters", "output": "⠓⠥⠉⠅⠌⠻⠎" }, { "input": "huddle", "output": "⠓⠥⠙⠙⠇⠑" }, { "input": "huddled", "output": "⠓⠥⠙⠙⠇⠫" }, { "input": "huddles", "output": "⠓⠥⠙⠙⠇⠑⠎" }, { "input": "huddling", "output": "⠓⠥⠙⠙⠇⠬" }, { "input": "hue", "output": "⠓⠥⠑" }, { "input": "hued", "output": "⠓⠥⠫" }, { "input": "hues", "output": "⠓⠥⠑⠎" }, { "input": "huff", "output": "⠓⠥⠋⠋" }, { "input": "huffed", "output": "⠓⠥⠖⠫" }, { "input": "huffier", "output": "⠓⠥⠖⠊⠻" }, { "input": "huffiest", "output": "⠓⠥⠖⠊⠑⠌" }, { "input": "huffily", "output": "⠓⠥⠖⠊⠇⠽" }, { "input": "huffing", "output": "⠓⠥⠖⠬" }, { "input": "huffs", "output": "⠓⠥⠖⠎" }, { "input": "huffy", "output": "⠓⠥⠖⠽" }, { "input": "hug", "output": "⠓⠥⠛" }, { "input": "huge", "output": "⠓⠥⠛⠑" }, { "input": "hugely", "output": "⠓⠥⠛⠑⠇⠽" }, { "input": "hugeness", "output": "⠓⠥⠛⠑⠰⠎" }, { "input": "huger", "output": "⠓⠥⠛⠻" }, { "input": "hugest", "output": "⠓⠥⠛⠑⠌" }, { "input": "hugged", "output": "⠓⠥⠶⠫" }, { "input": "hugging", "output": "⠓⠥⠶⠬" }, { "input": "hugs", "output": "⠓⠥⠛⠎" }, { "input": "huh", "output": "⠓⠥⠓" }, { "input": "hula", "output": "⠓⠥⠇â " }, { "input": "hulas", "output": "⠓⠥⠇â â Ž" }, { "input": "hulk", "output": "⠓⠥⠇⠅" }, { "input": "hulking", "output": "⠓⠥⠇⠅⠬" }, { "input": "hulks", "output": "⠓⠥⠇⠅⠎" }, { "input": "hull", "output": "⠓⠥⠇⠇" }, { "input": "hullabaloo", "output": "⠓⠥⠇⠇â â ƒâ â ‡â •â •" }, { "input": "hullabaloos", "output": "⠓⠥⠇⠇â â ƒâ â ‡â •â •â Ž" }, { "input": "hulled", "output": "⠓⠥⠇⠇⠫" }, { "input": "hulling", "output": "⠓⠥⠇⠇⠬" }, { "input": "hulls", "output": "⠓⠥⠇⠇⠎" }, { "input": "hum", "output": "â “â ¥â " }, { "input": "human", "output": "â “â ¥â â â " }, { "input": "humane", "output": "â “â ¥â â â â ‘" }, { "input": "humanely", "output": "â “â ¥â â â â ‘⠇⠽" }, { "input": "humaneness", "output": "â “â ¥â â â â ‘â °â Ž" }, { "input": "humaner", "output": "â “â ¥â â â â »" }, { "input": "humanest", "output": "â “â ¥â â â â ‘â Œ" }, { "input": "humanism", "output": "â “â ¥â â â â Šâ Žâ " }, { "input": "humanist", "output": "â “â ¥â â â â Šâ Œ" }, { "input": "humanistic", "output": "â “â ¥â â â â Šâ Œâ Šâ ‰" }, { "input": "humanists", "output": "â “â ¥â â â â Šâ Œâ Ž" }, { "input": "humanitarian", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â " }, { "input": "humanitarianism", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "humanitarians", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â â Ž" }, { "input": "humanities", "output": "â “â ¥â â â â Šâ žâ Šâ ‘â Ž" }, { "input": "humanity", "output": "â “â ¥â â â â °â ½" }, { "input": "humanization", "output": "â “â ¥â â â â Šâ µâ â °â " }, { "input": "humanize", "output": "â “â ¥â â â â Šâ µâ ‘" }, { "input": "humanized", "output": "â “â ¥â â â â Šâ µâ «" }, { "input": "humanizer", "output": "â “â ¥â â â â Šâ µâ »" }, { "input": "humanizers", "output": "â “â ¥â â â â Šâ µâ »â Ž" }, { "input": "humanizes", "output": "â “â ¥â â â â Šâ µâ ‘â Ž" }, { "input": "humanizing", "output": "â “â ¥â â â â Šâ µâ ¬" }, { "input": "humankind", "output": "â “â ¥â â â â …⠔⠙" }, { "input": "humanly", "output": "â “â ¥â â â â ‡â ½" }, { "input": "humanness", "output": "â “â ¥â â â â °â Ž" }, { "input": "humanoid", "output": "â “â ¥â â â â •â Šâ ™" }, { "input": "humanoids", "output": "â “â ¥â â â â •⠊⠙⠎" }, { "input": "humans", "output": "â “â ¥â â â â Ž" }, { "input": "humble", "output": "â “â ¥â â ƒâ ‡â ‘" }, { "input": "humbled", "output": "â “â ¥â â ƒâ ‡â «" }, { "input": "humbleness", "output": "â “â ¥â â ƒâ ‡â ‘â °â Ž" }, { "input": "humbler", "output": "â “â ¥â â ƒâ ‡â »" }, { "input": "humbles", "output": "â “â ¥â â ƒâ ‡â ‘â Ž" }, { "input": "humblest", "output": "â “â ¥â â ƒâ ‡â ‘â Œ" }, { "input": "humbling", "output": "â “â ¥â â ƒâ ‡â ¬" }, { "input": "humblings", "output": "â “â ¥â â ƒâ ‡â ¬â Ž" }, { "input": "humbly", "output": "â “â ¥â â ƒâ ‡â ½" }, { "input": "humbug", "output": "â “â ¥â â ƒâ ¥â ›" }, { "input": "humbugged", "output": "â “â ¥â â ƒâ ¥â ¶â «" }, { "input": "humbugging", "output": "â “â ¥â â ƒâ ¥â ¶â ¬" }, { "input": "humbugs", "output": "â “â ¥â â ƒâ ¥â ›â Ž" }, { "input": "humdinger", "output": "â “â ¥â â ™â ¬â »" }, { "input": "humdingers", "output": "â “â ¥â â ™â ¬â »â Ž" }, { "input": "humdrum", "output": "â “â ¥â â ™â —â ¥â " }, { "input": "humeri", "output": "â “â ¥â â »â Š" }, { "input": "humerus", "output": "â “â ¥â â »â ¥â Ž" }, { "input": "humid", "output": "â “â ¥â â Šâ ™" }, { "input": "humidified", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ «" }, { "input": "humidifier", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ »" }, { "input": "humidifiers", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ »â Ž" }, { "input": "humidifies", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ ‘â Ž" }, { "input": "humidify", "output": "â “â ¥â â Šâ ™â Šâ ‹â ½" }, { "input": "humidifying", "output": "â “â ¥â â Šâ ™â Šâ ‹â ½â ¬" }, { "input": "humidity", "output": "â “â ¥â â Šâ ™â °â ½" }, { "input": "humidor", "output": "â “â ¥â â Šâ ™â •â —" }, { "input": "humidors", "output": "â “â ¥â â Šâ ™â •â —â Ž" }, { "input": "humiliate", "output": "â “â ¥â â Šâ ‡â Šâ â žâ ‘" }, { "input": "humiliated", "output": "â “â ¥â â Šâ ‡â Šâ â žâ «" }, { "input": "humiliates", "output": "â “â ¥â â Šâ ‡â Šâ â žâ ‘â Ž" }, { "input": "humiliating", "output": "â “â ¥â â Šâ ‡â Šâ â žâ ¬" }, { "input": "humiliation", "output": "â “â ¥â â Šâ ‡â Šâ â °â " }, { "input": "humiliations", "output": "â “â ¥â â Šâ ‡â Šâ â °â â Ž" }, { "input": "humility", "output": "â “â ¥â â Šâ ‡â °â ½" }, { "input": "hummed", "output": "â “â ¥â â â «" }, { "input": "humming", "output": "â “â ¥â â â ¬" }, { "input": "hummingbird", "output": "â “â ¥â â â ¬â ƒâ Šâ —â ™" }, { "input": "hummingbirds", "output": "â “â ¥â â â ¬â ƒâ Šâ —⠙⠎" }, { "input": "hummock", "output": "â “â ¥â â â •⠉⠅" }, { "input": "hummocks", "output": "â “â ¥â â â •⠉⠅⠎" }, { "input": "humongous", "output": "â “â ¥â â °â ›â ³â Ž" }, { "input": "humor", "output": "â “â ¥â â •â —" }, { "input": "humored", "output": "â “â ¥â â •â —â «" }, { "input": "humoring", "output": "â “â ¥â â •â —â ¬" }, { "input": "humorist", "output": "â “â ¥â â •â —â Šâ Œ" }, { "input": "humorists", "output": "â “â ¥â â •⠗⠊⠌⠎" }, { "input": "humorless", "output": "â “â ¥â â •⠗⠨⠎" }, { "input": "humorlessness", "output": "â “â ¥â â •⠗⠨⠎⠰⠎" }, { "input": "humorous", "output": "â “â ¥â â •⠗⠳⠎" }, { "input": "humorously", "output": "â “â ¥â â •⠗⠳⠎⠇⠽" }, { "input": "humors", "output": "â “â ¥â â •â —â Ž" }, { "input": "hump", "output": "â “â ¥â â " }, { "input": "humpback", "output": "â “â ¥â â â ƒâ â ‰â …" }, { "input": "humpbacked", "output": "â “â ¥â â â ƒâ â ‰â …â «" }, { "input": "humpbacks", "output": "â “â ¥â â â ƒâ â ‰â …â Ž" }, { "input": "humped", "output": "â “â ¥â â â «" }, { "input": "humping", "output": "â “â ¥â â â ¬" }, { "input": "humps", "output": "â “â ¥â â â Ž" }, { "input": "hums", "output": "â “â ¥â â Ž" }, { "input": "humungous", "output": "â “â ¥â â ¥â â ›â ³â Ž" }, { "input": "humus", "output": "â “â ¥â â ¥â Ž" }, { "input": "hunch", "output": "â “â ¥â â ¡" }, { "input": "hunchback", "output": "â “â ¥â â ¡â ƒâ â ‰â …" }, { "input": "hunchbacked", "output": "â “â ¥â â ¡â ƒâ â ‰â …â «" }, { "input": "hunchbacks", "output": "â “â ¥â â ¡â ƒâ â ‰â …â Ž" }, { "input": "hunched", "output": "â “â ¥â â ¡â «" }, { "input": "hunches", "output": "â “â ¥â â ¡â ‘â Ž" }, { "input": "hunching", "output": "â “â ¥â â ¡â ¬" }, { "input": "hundred", "output": "â “â ¥â â ™â —â «" }, { "input": "hundredfold", "output": "â “â ¥â â ™â —⠫⠋⠕⠇⠙" }, { "input": "hundreds", "output": "â “â ¥â â ™â —â «â Ž" }, { "input": "hundredth", "output": "â “â ¥â â ™â —â «â ¹" }, { "input": "hundredths", "output": "â “â ¥â â ™â —⠫⠹⠎" }, { "input": "hundredweight", "output": "â “â ¥â â ™â —⠫⠺⠑⠊⠣⠞" }, { "input": "hundredweights", "output": "â “â ¥â â ™â —⠫⠺⠑⠊⠣⠞⠎" }, { "input": "hung", "output": "â “â ¥â â ›" }, { "input": "hunger", "output": "â “â ¥â â ›â »" }, { "input": "hungered", "output": "â “â ¥â â ›â »â «" }, { "input": "hungering", "output": "â “â ¥â â ›â »â ¬" }, { "input": "hungers", "output": "â “â ¥â â ›â »â Ž" }, { "input": "hungover", "output": "â “â ¥â â ›â •â §â »" }, { "input": "hungrier", "output": "â “â ¥â â ›â —â Šâ »" }, { "input": "hungriest", "output": "â “â ¥â â ›â —â Šâ ‘â Œ" }, { "input": "hungrily", "output": "â “â ¥â â ›â —⠊⠇⠽" }, { "input": "hungry", "output": "â “â ¥â â ›â —â ½" }, { "input": "hunk", "output": "â “â ¥â â …" }, { "input": "hunker", "output": "â “â ¥â â …â »" }, { "input": "hunkered", "output": "â “â ¥â â …⠻⠫" }, { "input": "hunkering", "output": "â “â ¥â â …⠻⠬" }, { "input": "hunkers", "output": "â “â ¥â â …⠻⠎" }, { "input": "hunks", "output": "â “â ¥â â …â Ž" }, { "input": "hunt", "output": "â “â ¥â â ž" }, { "input": "hunted", "output": "â “â ¥â â žâ «" }, { "input": "hunter", "output": "â “â ¥â â žâ »" }, { "input": "hunters", "output": "â “â ¥â â žâ »â Ž" }, { "input": "hunting", "output": "â “â ¥â â žâ ¬" }, { "input": "huntress", "output": "â “â ¥â â žâ —â ‘â Žâ Ž" }, { "input": "huntresses", "output": "â “â ¥â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "hunts", "output": "â “â ¥â â žâ Ž" }, { "input": "huntsman", "output": "â “â ¥â â žâ Žâ â â " }, { "input": "huntsmen", "output": "â “â ¥â â žâ Žâ â ¢" }, { "input": "hurdle", "output": "⠓⠥⠗⠙⠇⠑" }, { "input": "hurdled", "output": "⠓⠥⠗⠙⠇⠫" }, { "input": "hurdler", "output": "⠓⠥⠗⠙⠇⠻" }, { "input": "hurdlers", "output": "⠓⠥⠗⠙⠇⠻⠎" }, { "input": "hurdles", "output": "⠓⠥⠗⠙⠇⠑⠎" }, { "input": "hurdling", "output": "⠓⠥⠗⠙⠇⠬" }, { "input": "hurl", "output": "⠓⠥⠗⠇" }, { "input": "hurled", "output": "⠓⠥⠗⠇⠫" }, { "input": "hurler", "output": "⠓⠥⠗⠇⠻" }, { "input": "hurlers", "output": "⠓⠥⠗⠇⠻⠎" }, { "input": "hurling", "output": "⠓⠥⠗⠇⠬" }, { "input": "hurls", "output": "⠓⠥⠗⠇⠎" }, { "input": "hurrah", "output": "⠓⠥⠗⠗â â “" }, { "input": "hurrahed", "output": "⠓⠥⠗⠗â â “â «" }, { "input": "hurrahing", "output": "⠓⠥⠗⠗â â “â ¬" }, { "input": "hurrahs", "output": "⠓⠥⠗⠗â â “â Ž" }, { "input": "hurray", "output": "⠓⠥⠗⠗â â ½" }, { "input": "hurrayed", "output": "⠓⠥⠗⠗â â ½â «" }, { "input": "hurraying", "output": "⠓⠥⠗⠗â â ½â ¬" }, { "input": "hurrays", "output": "⠓⠥⠗⠗â â ½â Ž" }, { "input": "hurricane", "output": "⠓⠥⠗⠗⠊⠉â â â ‘" }, { "input": "hurricanes", "output": "⠓⠥⠗⠗⠊⠉â â â ‘â Ž" }, { "input": "hurried", "output": "⠓⠥⠗⠗⠊⠫" }, { "input": "hurriedly", "output": "⠓⠥⠗⠗⠊⠫⠇⠽" }, { "input": "hurries", "output": "⠓⠥⠗⠗⠊⠑⠎" }, { "input": "hurry", "output": "⠓⠥⠗⠗⠽" }, { "input": "hurrying", "output": "⠓⠥⠗⠗⠽⠬" }, { "input": "hurt", "output": "⠓⠥⠗⠞" }, { "input": "hurtful", "output": "⠓⠥⠗⠞⠰⠇" }, { "input": "hurting", "output": "⠓⠥⠗⠞⠬" }, { "input": "hurtle", "output": "⠓⠥⠗⠞⠇⠑" }, { "input": "hurtled", "output": "⠓⠥⠗⠞⠇⠫" }, { "input": "hurtles", "output": "⠓⠥⠗⠞⠇⠑⠎" }, { "input": "hurtling", "output": "⠓⠥⠗⠞⠇⠬" }, { "input": "hurts", "output": "⠓⠥⠗⠞⠎" }, { "input": "husband", "output": "⠓⠥⠎⠃⠯" }, { "input": "husbanded", "output": "⠓⠥⠎⠃⠯⠫" }, { "input": "husbanding", "output": "⠓⠥⠎⠃⠯⠬" }, { "input": "husbandry", "output": "⠓⠥⠎⠃⠯⠗⠽" }, { "input": "husbands", "output": "⠓⠥⠎⠃⠯⠎" }, { "input": "hush", "output": "⠓⠥⠩" }, { "input": "hushed", "output": "⠓⠥⠩⠫" }, { "input": "hushes", "output": "⠓⠥⠩⠑⠎" }, { "input": "hushing", "output": "⠓⠥⠩⠬" }, { "input": "husk", "output": "⠓⠥⠎⠅" }, { "input": "husked", "output": "⠓⠥⠎⠅⠫" }, { "input": "husker", "output": "⠓⠥⠎⠅⠻" }, { "input": "huskers", "output": "⠓⠥⠎⠅⠻⠎" }, { "input": "huskier", "output": "⠓⠥⠎⠅⠊⠻" }, { "input": "huskies", "output": "⠓⠥⠎⠅⠊⠑⠎" }, { "input": "huskiest", "output": "⠓⠥⠎⠅⠊⠑⠌" }, { "input": "huskily", "output": "⠓⠥⠎⠅⠊⠇⠽" }, { "input": "huskiness", "output": "⠓⠥⠎⠅⠊⠰⠎" }, { "input": "husking", "output": "⠓⠥⠎⠅⠬" }, { "input": "husks", "output": "⠓⠥⠎⠅⠎" }, { "input": "husky", "output": "⠓⠥⠎⠅⠽" }, { "input": "hussar", "output": "⠓⠥⠎⠎⠜" }, { "input": "hussars", "output": "⠓⠥⠎⠎⠜⠎" }, { "input": "hussies", "output": "⠓⠥⠎⠎⠊⠑⠎" }, { "input": "hussy", "output": "⠓⠥⠎⠎⠽" }, { "input": "hustings", "output": "⠓⠥⠌⠬⠎" }, { "input": "hustle", "output": "⠓⠥⠌⠇⠑" }, { "input": "hustled", "output": "⠓⠥⠌⠇⠫" }, { "input": "hustler", "output": "⠓⠥⠌⠇⠻" }, { "input": "hustlers", "output": "⠓⠥⠌⠇⠻⠎" }, { "input": "hustles", "output": "⠓⠥⠌⠇⠑⠎" }, { "input": "hustling", "output": "⠓⠥⠌⠇⠬" }, { "input": "hut", "output": "⠓⠥⠞" }, { "input": "hutch", "output": "⠓⠥⠞⠡" }, { "input": "hutches", "output": "⠓⠥⠞⠡⠑⠎" }, { "input": "huts", "output": "⠓⠥⠞⠎" }, { "input": "hutzpa", "output": "⠓⠥⠞⠵â â " }, { "input": "hutzpah", "output": "⠓⠥⠞⠵â â â “" }, { "input": "hyacinth", "output": "â “â ½â â ‰â ”â ¹" }, { "input": "hyacinths", "output": "â “â ½â â ‰â ”⠹⠎" }, { "input": "hyaena", "output": "â “â ½â â ¢â " }, { "input": "hyaenas", "output": "â “â ½â â ¢â â Ž" }, { "input": "hybrid", "output": "⠓⠽⠃⠗⠊⠙" }, { "input": "hybridize", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠑" }, { "input": "hybridized", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠫" }, { "input": "hybridizes", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠑⠎" }, { "input": "hybridizing", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠬" }, { "input": "hybrids", "output": "⠓⠽⠃⠗⠊⠙⠎" }, { "input": "hydra", "output": "⠓⠽⠙⠗â " }, { "input": "hydrae", "output": "⠓⠽⠙⠗â â ‘" }, { "input": "hydrangea", "output": "⠓⠽⠙⠗â â â ›â ‘â " }, { "input": "hydrangeas", "output": "⠓⠽⠙⠗â â â ›â ‚â Ž" }, { "input": "hydrant", "output": "⠓⠽⠙⠗â â â ž" }, { "input": "hydrants", "output": "⠓⠽⠙⠗â â â žâ Ž" }, { "input": "hydras", "output": "⠓⠽⠙⠗â â Ž" }, { "input": "hydrate", "output": "⠓⠽⠙⠗â â žâ ‘" }, { "input": "hydrated", "output": "⠓⠽⠙⠗â â žâ «" }, { "input": "hydrates", "output": "⠓⠽⠙⠗â â žâ ‘â Ž" }, { "input": "hydrating", "output": "⠓⠽⠙⠗â â žâ ¬" }, { "input": "hydraulic", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰" }, { "input": "hydraulically", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰â â ‡â ‡â ½" }, { "input": "hydraulics", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰â Ž" }, { "input": "hydrocarbon", "output": "⠓⠽⠙⠗⠕⠉⠜⠃⠕â " }, { "input": "hydrocarbons", "output": "⠓⠽⠙⠗⠕⠉⠜⠃⠕â â Ž" }, { "input": "hydroelectric", "output": "⠓⠽⠙⠗⠕⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "hydroelectricity", "output": "⠓⠽⠙⠗⠕⠑⠇⠑⠉⠞⠗⠊⠉⠰⠽" }, { "input": "hydrofoil", "output": "⠓⠽⠙⠗⠕⠋⠕⠊⠇" }, { "input": "hydrofoils", "output": "⠓⠽⠙⠗⠕⠋⠕⠊⠇⠎" }, { "input": "hydrogen", "output": "⠓⠽⠙⠗⠕⠛⠢" }, { "input": "hydrogenate", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ ‘" }, { "input": "hydrogenated", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ «" }, { "input": "hydrogenates", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ ‘â Ž" }, { "input": "hydrogenating", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ ¬" }, { "input": "hydrology", "output": "⠓⠽⠙⠗⠕⠇⠕⠛⠽" }, { "input": "hydrolysis", "output": "⠓⠽⠙⠗⠕⠇⠽⠎⠊⠎" }, { "input": "hydrometer", "output": "⠓⠽⠙⠗⠕â â ‘â žâ »" }, { "input": "hydrometers", "output": "⠓⠽⠙⠗⠕â â ‘⠞⠻⠎" }, { "input": "hydrophobia", "output": "⠓⠽⠙⠗⠕â â “⠕⠃⠊â " }, { "input": "hydroplane", "output": "⠓⠽⠙⠗⠕â â ‡â â â ‘" }, { "input": "hydroplaned", "output": "⠓⠽⠙⠗⠕â â ‡â â â «" }, { "input": "hydroplanes", "output": "⠓⠽⠙⠗⠕â â ‡â â â ‘â Ž" }, { "input": "hydroplaning", "output": "⠓⠽⠙⠗⠕â â ‡â â â ¬" }, { "input": "hydroponic", "output": "⠓⠽⠙⠗⠕â â •â â Šâ ‰" }, { "input": "hydroponics", "output": "⠓⠽⠙⠗⠕â â •â â Šâ ‰â Ž" }, { "input": "hydrosphere", "output": "⠓⠽⠙⠗⠕⠎â â â “" }, { "input": "hydrotherapy", "output": "⠓⠽⠙⠗⠕⠮⠗â â â ½" }, { "input": "hyena", "output": "⠓⠽⠢â " }, { "input": "hyenas", "output": "⠓⠽⠢â â Ž" }, { "input": "hygiene", "output": "⠓⠽⠛⠊⠢⠑" }, { "input": "hygienic", "output": "⠓⠽⠛⠊⠢⠊⠉" }, { "input": "hygienically", "output": "⠓⠽⠛⠊⠢⠊⠉â â ‡â ‡â ½" }, { "input": "hygienist", "output": "⠓⠽⠛⠊⠢⠊⠌" }, { "input": "hygienists", "output": "⠓⠽⠛⠊⠢⠊⠌⠎" }, { "input": "hygrometer", "output": "⠓⠽⠛⠗⠕â â ‘â žâ »" }, { "input": "hygrometers", "output": "⠓⠽⠛⠗⠕â â ‘⠞⠻⠎" }, { "input": "hying", "output": "⠓⠽⠬" }, { "input": "hymen", "output": "â “â ½â â ¢" }, { "input": "hymens", "output": "â “â ½â â ¢â Ž" }, { "input": "hymn", "output": "â “â ½â â " }, { "input": "hymnal", "output": "â “â ½â â â â ‡" }, { "input": "hymnals", "output": "â “â ½â â â â ‡â Ž" }, { "input": "hymned", "output": "â “â ½â â â «" }, { "input": "hymning", "output": "â “â ½â â â ¬" }, { "input": "hymns", "output": "â “â ½â â â Ž" }, { "input": "hype", "output": "â “â ½â â ‘" }, { "input": "hyped", "output": "â “â ½â â «" }, { "input": "hyper", "output": "â “â ½â â »" }, { "input": "hyperactive", "output": "â “â ½â â »â â ‰â žâ Šâ §â ‘" }, { "input": "hyperactivity", "output": "â “â ½â â »â â ‰â žâ Šâ §â °â ½" }, { "input": "hyperbola", "output": "â “â ½â â »â ƒâ •â ‡â " }, { "input": "hyperbolae", "output": "â “â ½â â »â ƒâ •â ‡â â ‘" }, { "input": "hyperbolas", "output": "â “â ½â â »â ƒâ •â ‡â â Ž" }, { "input": "hyperbole", "output": "â “â ½â â »â ƒâ •⠇⠑" }, { "input": "hyperbolic", "output": "â “â ½â â »â ƒâ •⠇⠊⠉" }, { "input": "hypercritical", "output": "â “â ½â â »â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "hypercritically", "output": "â “â ½â â »â ‰â —â Šâ žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "hypermarket", "output": "â “â ½â â »â â œâ …â ‘â ž" }, { "input": "hypersensitive", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â ‘" }, { "input": "hypersensitivities", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "hypersensitivity", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â °â ½" }, { "input": "hyperspace", "output": "â “â ½â â »â Žâ â â ‰â ‘" }, { "input": "hypertension", "output": "â “â ½â â »â žâ ¢â ¨â " }, { "input": "hypertext", "output": "â “â ½â â »â žâ ‘â ­â ž" }, { "input": "hyperventilate", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ ‘" }, { "input": "hyperventilated", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ «" }, { "input": "hyperventilates", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ ‘â Ž" }, { "input": "hyperventilating", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ ¬" }, { "input": "hyperventilation", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â °â " }, { "input": "hypes", "output": "â “â ½â â ‘â Ž" }, { "input": "hyphen", "output": "â “â ½â â “â ¢" }, { "input": "hyphenate", "output": "â “â ½â â “â ¢â â žâ ‘" }, { "input": "hyphenated", "output": "â “â ½â â “â ¢â â žâ «" }, { "input": "hyphenates", "output": "â “â ½â â “â ¢â â žâ ‘â Ž" }, { "input": "hyphenating", "output": "â “â ½â â “â ¢â â žâ ¬" }, { "input": "hyphenation", "output": "â “â ½â â “â ¢â â °â " }, { "input": "hyphenations", "output": "â “â ½â â “â ¢â â °â â Ž" }, { "input": "hyphened", "output": "â “â ½â â “⠢⠫" }, { "input": "hyphening", "output": "â “â ½â â “⠢⠬" }, { "input": "hyphens", "output": "â “â ½â â “⠢⠎" }, { "input": "hyping", "output": "â “â ½â â ¬" }, { "input": "hypnoses", "output": "â “â ½â â â •â Žâ ‘â Ž" }, { "input": "hypnosis", "output": "â “â ½â â â •â Žâ Šâ Ž" }, { "input": "hypnotic", "output": "â “â ½â â â •â žâ Šâ ‰" }, { "input": "hypnotically", "output": "â “â ½â â â •â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "hypnotics", "output": "â “â ½â â â •⠞⠊⠉⠎" }, { "input": "hypnotism", "output": "â “â ½â â â •â žâ Šâ Žâ " }, { "input": "hypnotist", "output": "â “â ½â â â •â žâ Šâ Œ" }, { "input": "hypnotists", "output": "â “â ½â â â •⠞⠊⠌⠎" }, { "input": "hypnotize", "output": "â “â ½â â â •⠞⠊⠵⠑" }, { "input": "hypnotized", "output": "â “â ½â â â •⠞⠊⠵⠫" }, { "input": "hypnotizes", "output": "â “â ½â â â •⠞⠊⠵⠑⠎" }, { "input": "hypnotizing", "output": "â “â ½â â â •⠞⠊⠵⠬" }, { "input": "hypo", "output": "â “â ½â â •" }, { "input": "hypoallergenic", "output": "â “â ½â â •â â ‡â ‡â »â ›â ¢â Šâ ‰" }, { "input": "hypochondria", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ " }, { "input": "hypochondriac", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ â ‰" }, { "input": "hypochondriacs", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ â ‰â Ž" }, { "input": "hypocrisies", "output": "â “â ½â â •⠉⠗⠊⠎⠊⠑⠎" }, { "input": "hypocrisy", "output": "â “â ½â â •⠉⠗⠊⠎⠽" }, { "input": "hypocrite", "output": "â “â ½â â •⠉⠗⠊⠞⠑" }, { "input": "hypocrites", "output": "â “â ½â â •⠉⠗⠊⠞⠑⠎" }, { "input": "hypocritical", "output": "â “â ½â â •⠉⠗⠊⠞⠊⠉â â ‡" }, { "input": "hypocritically", "output": "â “â ½â â •⠉⠗⠊⠞⠊⠉â â ‡â ‡â ½" }, { "input": "hypodermic", "output": "â “â ½â â •⠙⠻â â Šâ ‰" }, { "input": "hypodermics", "output": "â “â ½â â •⠙⠻â â Šâ ‰â Ž" }, { "input": "hypoglycemia", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ " }, { "input": "hypoglycemic", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ ‰" }, { "input": "hypoglycemics", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ ‰â Ž" }, { "input": "hypos", "output": "â “â ½â â •â Ž" }, { "input": "hypotenuse", "output": "â “â ½â â •⠞⠢⠥⠎⠑" }, { "input": "hypotenuses", "output": "â “â ½â â •⠞⠢⠥⠎⠑⠎" }, { "input": "hypothalami", "output": "â “â ½â â •â ¹â â ‡â â â Š" }, { "input": "hypothalamus", "output": "â “â ½â â •â ¹â â ‡â â â ¥â Ž" }, { "input": "hypothermia", "output": "â “â ½â â •⠮⠗â â Šâ " }, { "input": "hypotheses", "output": "â “â ½â â •⠮⠎⠑⠎" }, { "input": "hypothesis", "output": "â “â ½â â •⠮⠎⠊⠎" }, { "input": "hypothesize", "output": "â “â ½â â •⠮⠎⠊⠵⠑" }, { "input": "hypothesized", "output": "â “â ½â â •⠮⠎⠊⠵⠫" }, { "input": "hypothesizes", "output": "â “â ½â â •⠮⠎⠊⠵⠑⠎" }, { "input": "hypothesizing", "output": "â “â ½â â •⠮⠎⠊⠵⠬" }, { "input": "hypothetical", "output": "â “â ½â â •⠮⠞⠊⠉â â ‡" }, { "input": "hypothetically", "output": "â “â ½â â •⠮⠞⠊⠉â â ‡â ‡â ½" }, { "input": "hysterectomies", "output": "⠓⠽⠌⠻⠑⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "hysterectomy", "output": "⠓⠽⠌⠻⠑⠉⠞⠕â â ½" }, { "input": "hysteresis", "output": "⠓⠽⠌⠻⠑⠎⠊⠎" }, { "input": "hysteria", "output": "⠓⠽⠌⠻⠊â " }, { "input": "hysteric", "output": "⠓⠽⠌⠻⠊⠉" }, { "input": "hysterical", "output": "⠓⠽⠌⠻⠊⠉â â ‡" }, { "input": "hysterically", "output": "⠓⠽⠌⠻⠊⠉â â ‡â ‡â ½" }, { "input": "hysterics", "output": "⠓⠽⠌⠻⠊⠉⠎" }, { "input": "i", "output": "â Š" }, { "input": "iPad", "output": "â Šâ  â â â ™" }, { "input": "iPhone", "output": "â Šâ  â â “â â •" }, { "input": "iPod", "output": "â Šâ  â â •â ™" }, { "input": "iTunes", "output": "â Šâ  â žâ ¥â â ‘â Ž" }, { "input": "iamb", "output": "â Šâ â â ƒ" }, { "input": "iambic", "output": "â Šâ â â ƒâ Šâ ‰" }, { "input": "iambics", "output": "â Šâ â â ƒâ Šâ ‰â Ž" }, { "input": "iambs", "output": "â Šâ â â ƒâ Ž" }, { "input": "ibex", "output": "⠊⠃⠑⠭" }, { "input": "ibexes", "output": "⠊⠃⠑⠭⠑⠎" }, { "input": "ibices", "output": "⠊⠃⠊⠉⠑⠎" }, { "input": "ibis", "output": "⠊⠃⠊⠎" }, { "input": "ibises", "output": "⠊⠃⠊⠎⠑⠎" }, { "input": "ibuprofen", "output": "⠊⠃⠥â â —â ·â ¢" }, { "input": "ice", "output": "⠊⠉⠑" }, { "input": "iceberg", "output": "⠊⠉⠑⠃⠻⠛" }, { "input": "icebergs", "output": "⠊⠉⠑⠃⠻⠛⠎" }, { "input": "icebound", "output": "⠊⠉⠑⠃⠨⠙" }, { "input": "icebox", "output": "⠊⠉⠑⠃⠕⠭" }, { "input": "iceboxes", "output": "⠊⠉⠑⠃⠕⠭⠑⠎" }, { "input": "icebreaker", "output": "⠊⠉⠑⠃⠗⠂⠅⠻" }, { "input": "icebreakers", "output": "⠊⠉⠑⠃⠗⠂⠅⠻⠎" }, { "input": "icecap", "output": "⠊⠉⠑⠉â â " }, { "input": "icecaps", "output": "⠊⠉⠑⠉â â â Ž" }, { "input": "iced", "output": "⠊⠉⠫" }, { "input": "ices", "output": "⠊⠉⠑⠎" }, { "input": "icicle", "output": "⠊⠉⠊⠉⠇⠑" }, { "input": "icicles", "output": "⠊⠉⠊⠉⠇⠑⠎" }, { "input": "icier", "output": "⠊⠉⠊⠻" }, { "input": "iciest", "output": "⠊⠉⠊⠑⠌" }, { "input": "icily", "output": "⠊⠉⠊⠇⠽" }, { "input": "iciness", "output": "⠊⠉⠊⠰⠎" }, { "input": "icing", "output": "⠊⠉⠬" }, { "input": "icings", "output": "⠊⠉⠬⠎" }, { "input": "ickier", "output": "⠊⠉⠅⠊⠻" }, { "input": "ickiest", "output": "⠊⠉⠅⠊⠑⠌" }, { "input": "icky", "output": "⠊⠉⠅⠽" }, { "input": "icon", "output": "⠊⠉⠕â " }, { "input": "iconoclast", "output": "⠊⠉⠕â â •⠉⠇â â Œ" }, { "input": "iconoclastic", "output": "⠊⠉⠕â â •⠉⠇â â Œâ Šâ ‰" }, { "input": "iconoclasts", "output": "⠊⠉⠕â â •⠉⠇â â Œâ Ž" }, { "input": "icons", "output": "⠊⠉⠕â â Ž" }, { "input": "icy", "output": "⠊⠉⠽" }, { "input": "id", "output": "â Šâ ™" }, { "input": "idea", "output": "⠊⠙⠑â " }, { "input": "ideal", "output": "⠊⠙⠂⠇" }, { "input": "idealism", "output": "⠊⠙⠂⠇⠊⠎â " }, { "input": "idealist", "output": "⠊⠙⠂⠇⠊⠌" }, { "input": "idealistic", "output": "⠊⠙⠂⠇⠊⠌⠊⠉" }, { "input": "idealistically", "output": "⠊⠙⠂⠇⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "idealists", "output": "⠊⠙⠂⠇⠊⠌⠎" }, { "input": "idealization", "output": "⠊⠙⠂⠇⠊⠵â â °â " }, { "input": "idealize", "output": "⠊⠙⠂⠇⠊⠵⠑" }, { "input": "idealized", "output": "⠊⠙⠂⠇⠊⠵⠫" }, { "input": "idealizes", "output": "⠊⠙⠂⠇⠊⠵⠑⠎" }, { "input": "idealizing", "output": "⠊⠙⠂⠇⠊⠵⠬" }, { "input": "ideally", "output": "⠊⠙⠂⠇⠇⠽" }, { "input": "ideals", "output": "⠊⠙⠂⠇⠎" }, { "input": "ideas", "output": "⠊⠙⠂⠎" }, { "input": "identical", "output": "⠊⠙⠢⠞⠊⠉â â ‡" }, { "input": "identically", "output": "⠊⠙⠢⠞⠊⠉â â ‡â ‡â ½" }, { "input": "identifiable", "output": "⠊⠙⠢⠞⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "identification", "output": "⠊⠙⠢⠞⠊⠋⠊⠉â â °â " }, { "input": "identified", "output": "⠊⠙⠢⠞⠊⠋⠊⠫" }, { "input": "identifier", "output": "⠊⠙⠢⠞⠊⠋⠊⠻" }, { "input": "identifiers", "output": "⠊⠙⠢⠞⠊⠋⠊⠻⠎" }, { "input": "identifies", "output": "⠊⠙⠢⠞⠊⠋⠊⠑⠎" }, { "input": "identify", "output": "⠊⠙⠢⠞⠊⠋⠽" }, { "input": "identifying", "output": "⠊⠙⠢⠞⠊⠋⠽⠬" }, { "input": "identities", "output": "⠊⠙⠢⠞⠊⠞⠊⠑⠎" }, { "input": "identity", "output": "⠊⠙⠢⠞⠰⠽" }, { "input": "ideogram", "output": "⠊⠙⠑⠕⠛⠗â â " }, { "input": "ideograms", "output": "⠊⠙⠑⠕⠛⠗â â â Ž" }, { "input": "ideograph", "output": "⠊⠙⠑⠕⠛⠗â â â “" }, { "input": "ideographs", "output": "⠊⠙⠑⠕⠛⠗â â â “â Ž" }, { "input": "ideological", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "ideologically", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "ideologies", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠑⠎" }, { "input": "ideologist", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠌" }, { "input": "ideologists", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ideology", "output": "⠊⠙⠑⠕⠇⠕⠛⠽" }, { "input": "ides", "output": "⠊⠙⠑⠎" }, { "input": "idiocies", "output": "⠊⠙⠊⠕⠉⠊⠑⠎" }, { "input": "idiocy", "output": "⠊⠙⠊⠕⠉⠽" }, { "input": "idiom", "output": "⠊⠙⠊⠕â " }, { "input": "idiomatic", "output": "⠊⠙⠊⠕â â â žâ Šâ ‰" }, { "input": "idiomatically", "output": "⠊⠙⠊⠕â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "idioms", "output": "⠊⠙⠊⠕â â Ž" }, { "input": "idiosyncrasies", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â Žâ Šâ ‘â Ž" }, { "input": "idiosyncrasy", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â Žâ ½" }, { "input": "idiosyncratic", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â žâ Šâ ‰" }, { "input": "idiot", "output": "⠊⠙⠊⠕⠞" }, { "input": "idiotic", "output": "⠊⠙⠊⠕⠞⠊⠉" }, { "input": "idiotically", "output": "⠊⠙⠊⠕⠞⠊⠉â â ‡â ‡â ½" }, { "input": "idiots", "output": "⠊⠙⠊⠕⠞⠎" }, { "input": "idle", "output": "⠊⠙⠇⠑" }, { "input": "idled", "output": "⠊⠙⠇⠫" }, { "input": "idleness", "output": "⠊⠙⠇⠑⠰⠎" }, { "input": "idler", "output": "⠊⠙⠇⠻" }, { "input": "idlers", "output": "⠊⠙⠇⠻⠎" }, { "input": "idles", "output": "⠊⠙⠇⠑⠎" }, { "input": "idlest", "output": "⠊⠙⠇⠑⠌" }, { "input": "idling", "output": "⠊⠙⠇⠬" }, { "input": "idly", "output": "⠊⠙⠇⠽" }, { "input": "idol", "output": "⠊⠙⠕⠇" }, { "input": "idolater", "output": "⠊⠙⠕⠇â â žâ »" }, { "input": "idolaters", "output": "⠊⠙⠕⠇â â žâ »â Ž" }, { "input": "idolatrous", "output": "⠊⠙⠕⠇â â žâ —⠳⠎" }, { "input": "idolatry", "output": "⠊⠙⠕⠇â â žâ —â ½" }, { "input": "idolize", "output": "⠊⠙⠕⠇⠊⠵⠑" }, { "input": "idolized", "output": "⠊⠙⠕⠇⠊⠵⠫" }, { "input": "idolizes", "output": "⠊⠙⠕⠇⠊⠵⠑⠎" }, { "input": "idolizing", "output": "⠊⠙⠕⠇⠊⠵⠬" }, { "input": "idols", "output": "⠊⠙⠕⠇⠎" }, { "input": "ids", "output": "⠊⠙⠎" }, { "input": "idyl", "output": "⠊⠙⠽⠇" }, { "input": "idyll", "output": "⠊⠙⠽⠇⠇" }, { "input": "idyllic", "output": "⠊⠙⠽⠇⠇⠊⠉" }, { "input": "idylls", "output": "⠊⠙⠽⠇⠇⠎" }, { "input": "idyls", "output": "⠊⠙⠽⠇⠎" }, { "input": "if", "output": "â Šâ ‹" }, { "input": "iffier", "output": "â Šâ –â Šâ »" }, { "input": "iffiest", "output": "â Šâ –â Šâ ‘â Œ" }, { "input": "iffy", "output": "â Šâ –â ½" }, { "input": "ifs", "output": "â Šâ ‹â Ž" }, { "input": "igloo", "output": "⠊⠛⠇⠕⠕" }, { "input": "igloos", "output": "⠊⠛⠇⠕⠕⠎" }, { "input": "igneous", "output": "â Šâ ›â â ‘⠳⠎" }, { "input": "ignite", "output": "â Šâ ›â â Šâ žâ ‘" }, { "input": "ignited", "output": "â Šâ ›â â Šâ žâ «" }, { "input": "ignites", "output": "â Šâ ›â â Šâ žâ ‘â Ž" }, { "input": "igniting", "output": "â Šâ ›â â Šâ žâ ¬" }, { "input": "ignition", "output": "â Šâ ›â â Šâ °â " }, { "input": "ignitions", "output": "â Šâ ›â â Šâ °â â Ž" }, { "input": "ignoble", "output": "â Šâ ›â â •⠃⠇⠑" }, { "input": "ignobly", "output": "â Šâ ›â â •⠃⠇⠽" }, { "input": "ignominies", "output": "â Šâ ›â â •â â ”â Šâ ‘â Ž" }, { "input": "ignominious", "output": "â Šâ ›â â •â â ”⠊⠳⠎" }, { "input": "ignominiously", "output": "â Šâ ›â â •â â ”⠊⠳⠎⠇⠽" }, { "input": "ignominy", "output": "â Šâ ›â â •â â ”â ½" }, { "input": "ignoramus", "output": "â Šâ ›â â •â —â â â ¥â Ž" }, { "input": "ignoramuses", "output": "â Šâ ›â â •â —â â â ¥â Žâ ‘â Ž" }, { "input": "ignorance", "output": "â Šâ ›â â •⠗⠨⠑" }, { "input": "ignorant", "output": "â Šâ ›â â •â —â â â ž" }, { "input": "ignorantly", "output": "â Šâ ›â â •â —â â â žâ ‡â ½" }, { "input": "ignore", "output": "â Šâ ›â â •â —â ‘" }, { "input": "ignored", "output": "â Šâ ›â â •â —â «" }, { "input": "ignores", "output": "â Šâ ›â â •â —â ‘â Ž" }, { "input": "ignoring", "output": "â Šâ ›â â •â —â ¬" }, { "input": "iguana", "output": "⠊⠛⠥â â â " }, { "input": "iguanas", "output": "⠊⠛⠥â â â â Ž" }, { "input": "ikon", "output": "â Šâ …â •â " }, { "input": "ikons", "output": "â Šâ …â •â â Ž" }, { "input": "ilk", "output": "⠊⠇⠅" }, { "input": "ilks", "output": "⠊⠇⠅⠎" }, { "input": "ill", "output": "⠊⠇⠇" }, { "input": "illegal", "output": "⠊⠇⠇⠑⠛â â ‡" }, { "input": "illegalities", "output": "⠊⠇⠇⠑⠛â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "illegality", "output": "⠊⠇⠇⠑⠛â â ‡â °â ½" }, { "input": "illegally", "output": "⠊⠇⠇⠑⠛â â ‡â ‡â ½" }, { "input": "illegals", "output": "⠊⠇⠇⠑⠛â â ‡â Ž" }, { "input": "illegibility", "output": "⠊⠇⠇⠑⠛⠊⠃⠊⠇⠰⠽" }, { "input": "illegible", "output": "⠊⠇⠇⠑⠛⠊⠃⠇⠑" }, { "input": "illegibly", "output": "⠊⠇⠇⠑⠛⠊⠃⠇⠽" }, { "input": "illegitimacy", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â ‰â ½" }, { "input": "illegitimate", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â žâ ‘" }, { "input": "illegitimately", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â žâ ‘⠇⠽" }, { "input": "illiberal", "output": "⠊⠇⠇⠊⠃⠻â â ‡" }, { "input": "illicit", "output": "⠊⠇⠇⠊⠉⠊⠞" }, { "input": "illicitly", "output": "⠊⠇⠇⠊⠉⠊⠞⠇⠽" }, { "input": "illicitness", "output": "⠊⠇⠇⠊⠉⠊⠞⠰⠎" }, { "input": "illiteracy", "output": "⠊⠇⠇⠊⠞⠻â â ‰â ½" }, { "input": "illiterate", "output": "⠊⠇⠇⠊⠞⠻â â žâ ‘" }, { "input": "illiterates", "output": "⠊⠇⠇⠊⠞⠻â â žâ ‘â Ž" }, { "input": "illness", "output": "⠊⠇⠇⠰⠎" }, { "input": "illnesses", "output": "⠊⠇⠇⠰⠎⠑⠎" }, { "input": "illogical", "output": "⠊⠇⠇⠕⠛⠊⠉â â ‡" }, { "input": "illogically", "output": "⠊⠇⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "ills", "output": "⠊⠇⠇⠎" }, { "input": "illuminate", "output": "⠊⠇⠇⠥â â ”â â žâ ‘" }, { "input": "illuminated", "output": "⠊⠇⠇⠥â â ”â â žâ «" }, { "input": "illuminates", "output": "⠊⠇⠇⠥â â ”â â žâ ‘â Ž" }, { "input": "illuminating", "output": "⠊⠇⠇⠥â â ”â â žâ ¬" }, { "input": "illumination", "output": "⠊⠇⠇⠥â â ”â â °â " }, { "input": "illuminations", "output": "⠊⠇⠇⠥â â ”â â °â â Ž" }, { "input": "illumine", "output": "⠊⠇⠇⠥â â ”â ‘" }, { "input": "illumined", "output": "⠊⠇⠇⠥â â ”â «" }, { "input": "illumines", "output": "⠊⠇⠇⠥â â ”â ‘â Ž" }, { "input": "illumining", "output": "⠊⠇⠇⠥â â ”â ¬" }, { "input": "illusion", "output": "⠊⠇⠇⠥⠨â " }, { "input": "illusions", "output": "⠊⠇⠇⠥⠨â â Ž" }, { "input": "illusive", "output": "⠊⠇⠇⠥⠎⠊⠧⠑" }, { "input": "illusory", "output": "⠊⠇⠇⠥⠎⠕⠗⠽" }, { "input": "illustrate", "output": "⠊⠇⠇⠥⠌⠗â â žâ ‘" }, { "input": "illustrated", "output": "⠊⠇⠇⠥⠌⠗â â žâ «" }, { "input": "illustrates", "output": "⠊⠇⠇⠥⠌⠗â â žâ ‘â Ž" }, { "input": "illustrating", "output": "⠊⠇⠇⠥⠌⠗â â žâ ¬" }, { "input": "illustration", "output": "⠊⠇⠇⠥⠌⠗â â °â " }, { "input": "illustrations", "output": "⠊⠇⠇⠥⠌⠗â â °â â Ž" }, { "input": "illustrative", "output": "⠊⠇⠇⠥⠌⠗â â žâ Šâ §â ‘" }, { "input": "illustrator", "output": "⠊⠇⠇⠥⠌⠗â â žâ •â —" }, { "input": "illustrators", "output": "⠊⠇⠇⠥⠌⠗â â žâ •â —â Ž" }, { "input": "illustrious", "output": "⠊⠇⠇⠥⠌⠗⠊⠳⠎" }, { "input": "image", "output": "â Šâ â â ›â ‘" }, { "input": "imaged", "output": "â Šâ â â ›â «" }, { "input": "imagery", "output": "â Šâ â â ›â »â ½" }, { "input": "images", "output": "â Šâ â â ›â ‘â Ž" }, { "input": "imaginable", "output": "â Šâ â â ›â ”â â ƒâ ‡â ‘" }, { "input": "imaginably", "output": "â Šâ â â ›â ”â â ƒâ ‡â ½" }, { "input": "imaginary", "output": "â Šâ â â ›â ”⠜⠽" }, { "input": "imagination", "output": "â Šâ â â ›â ”â â °â " }, { "input": "imaginations", "output": "â Šâ â â ›â ”â â °â â Ž" }, { "input": "imaginative", "output": "â Šâ â â ›â ”â â žâ Šâ §â ‘" }, { "input": "imaginatively", "output": "â Šâ â â ›â ”â â žâ Šâ §â ‘⠇⠽" }, { "input": "imagine", "output": "â Šâ â â ›â ”â ‘" }, { "input": "imagined", "output": "â Šâ â â ›â ”â «" }, { "input": "imagines", "output": "â Šâ â â ›â ”â ‘â Ž" }, { "input": "imaging", "output": "â Šâ â â ›â ¬" }, { "input": "imagining", "output": "â Šâ â â ›â ”â ¬" }, { "input": "imam", "output": "â Šâ â â " }, { "input": "imams", "output": "â Šâ â â â Ž" }, { "input": "imbalance", "output": "â Šâ â ƒâ â ‡â ¨â ‘" }, { "input": "imbalanced", "output": "â Šâ â ƒâ â ‡â ¨â ‘â ™" }, { "input": "imbalances", "output": "â Šâ â ƒâ â ‡â ¨â ‘â Ž" }, { "input": "imbecile", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠑" }, { "input": "imbeciles", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠑⠎" }, { "input": "imbecilic", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠊⠉" }, { "input": "imbecilities", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠊⠞⠊⠑⠎" }, { "input": "imbecility", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠰⠽" }, { "input": "imbed", "output": "â Šâ â ƒâ «" }, { "input": "imbedded", "output": "â Šâ â ƒâ «â ™â «" }, { "input": "imbedding", "output": "â Šâ â ƒâ «â ™â ¬" }, { "input": "imbeds", "output": "â Šâ â ƒâ «â Ž" }, { "input": "imbibe", "output": "â Šâ â ƒâ Šâ ƒâ ‘" }, { "input": "imbibed", "output": "â Šâ â ƒâ Šâ ƒâ «" }, { "input": "imbibes", "output": "â Šâ â ƒâ Šâ ƒâ ‘â Ž" }, { "input": "imbibing", "output": "â Šâ â ƒâ Šâ ƒâ ¬" }, { "input": "imbroglio", "output": "â Šâ â ƒâ —⠕⠛⠇⠊⠕" }, { "input": "imbroglios", "output": "â Šâ â ƒâ —⠕⠛⠇⠊⠕⠎" }, { "input": "imbue", "output": "â Šâ â ƒâ ¥â ‘" }, { "input": "imbued", "output": "â Šâ â ƒâ ¥â «" }, { "input": "imbues", "output": "â Šâ â ƒâ ¥â ‘â Ž" }, { "input": "imbuing", "output": "â Šâ â ƒâ ¥â ¬" }, { "input": "imitate", "output": "â Šâ â Šâ žâ â žâ ‘" }, { "input": "imitated", "output": "â Šâ â Šâ žâ â žâ «" }, { "input": "imitates", "output": "â Šâ â Šâ žâ â žâ ‘â Ž" }, { "input": "imitating", "output": "â Šâ â Šâ žâ â žâ ¬" }, { "input": "imitation", "output": "â Šâ â Šâ žâ â °â " }, { "input": "imitations", "output": "â Šâ â Šâ žâ â °â â Ž" }, { "input": "imitative", "output": "â Šâ â Šâ žâ â žâ Šâ §â ‘" }, { "input": "imitator", "output": "â Šâ â Šâ žâ â žâ •â —" }, { "input": "imitators", "output": "â Šâ â Šâ žâ â žâ •â —â Ž" }, { "input": "immaculate", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘" }, { "input": "immaculately", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘⠇⠽" }, { "input": "immaculateness", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘â °â Ž" }, { "input": "immanence", "output": "â Šâ â â â â °â ‘" }, { "input": "immanent", "output": "â Šâ â â â â ¢â ž" }, { "input": "immaterial", "output": "â Šâ â â â žâ »â Šâ â ‡" }, { "input": "immature", "output": "â Šâ â â â žâ ¥â —â ‘" }, { "input": "immaturely", "output": "â Šâ â â â žâ ¥â —⠑⠇⠽" }, { "input": "immaturity", "output": "â Šâ â â â žâ ¥â —â °â ½" }, { "input": "immeasurable", "output": "â Šâ â â ‚⠎⠥⠗â â ƒâ ‡â ‘" }, { "input": "immeasurably", "output": "â Šâ â â ‚⠎⠥⠗â â ƒâ ‡â ½" }, { "input": "immediacy", "output": "â Šâ â â «â Šâ â ‰â ½" }, { "input": "immediate", "output": "â Šâ â " }, { "input": "immediately", "output": "â Šâ â â ‡â ½" }, { "input": "immemorial", "output": "â Šâ â â ‘â â •â —â Šâ â ‡" }, { "input": "immense", "output": "â Šâ â â ¢â Žâ ‘" }, { "input": "immensely", "output": "â Šâ â â ¢â Žâ ‘⠇⠽" }, { "input": "immensities", "output": "â Šâ â â ¢â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "immensity", "output": "â Šâ â â ¢â Žâ °â ½" }, { "input": "immerse", "output": "â Šâ â â »â Žâ ‘" }, { "input": "immersed", "output": "â Šâ â â »â Žâ «" }, { "input": "immerses", "output": "â Šâ â â »â Žâ ‘â Ž" }, { "input": "immersing", "output": "â Šâ â â »â Žâ ¬" }, { "input": "immersion", "output": "â Šâ â â »â ¨â " }, { "input": "immersions", "output": "â Šâ â â »â ¨â â Ž" }, { "input": "immigrant", "output": "â Šâ â â Šâ ›â —â â â ž" }, { "input": "immigrants", "output": "â Šâ â â Šâ ›â —â â â žâ Ž" }, { "input": "immigrate", "output": "â Šâ â â Šâ ›â —â â žâ ‘" }, { "input": "immigrated", "output": "â Šâ â â Šâ ›â —â â žâ «" }, { "input": "immigrates", "output": "â Šâ â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "immigrating", "output": "â Šâ â â Šâ ›â —â â žâ ¬" }, { "input": "immigration", "output": "â Šâ â â Šâ ›â —â â °â " }, { "input": "imminence", "output": "â Šâ â â ”â °â ‘" }, { "input": "imminent", "output": "â Šâ â â ”⠢⠞" }, { "input": "imminently", "output": "â Šâ â â ”⠢⠞⠇⠽" }, { "input": "immobile", "output": "â Šâ â â •⠃⠊⠇⠑" }, { "input": "immobility", "output": "â Šâ â â •⠃⠊⠇⠰⠽" }, { "input": "immobilization", "output": "â Šâ â â •⠃⠊⠇⠊⠵â â °â " }, { "input": "immobilize", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠑" }, { "input": "immobilized", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠫" }, { "input": "immobilizes", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠑⠎" }, { "input": "immobilizing", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠬" }, { "input": "immoderate", "output": "â Šâ â â •⠙⠻â â žâ ‘" }, { "input": "immoderately", "output": "â Šâ â â •⠙⠻â â žâ ‘⠇⠽" }, { "input": "immodest", "output": "â Šâ â â •⠙⠑⠌" }, { "input": "immodestly", "output": "â Šâ â â •⠙⠑⠌⠇⠽" }, { "input": "immodesty", "output": "â Šâ â â •⠙⠑⠌⠽" }, { "input": "immolate", "output": "â Šâ â â •â ‡â â žâ ‘" }, { "input": "immolated", "output": "â Šâ â â •â ‡â â žâ «" }, { "input": "immolates", "output": "â Šâ â â •â ‡â â žâ ‘â Ž" }, { "input": "immolating", "output": "â Šâ â â •â ‡â â žâ ¬" }, { "input": "immolation", "output": "â Šâ â â •â ‡â â °â " }, { "input": "immoral", "output": "â Šâ â â •â —â â ‡" }, { "input": "immoralities", "output": "â Šâ â â •â —â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "immorality", "output": "â Šâ â â •â —â â ‡â °â ½" }, { "input": "immorally", "output": "â Šâ â â •â —â â ‡â ‡â ½" }, { "input": "immortal", "output": "â Šâ â â •â —â žâ â ‡" }, { "input": "immortality", "output": "â Šâ â â •â —â žâ â ‡â °â ½" }, { "input": "immortalize", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ ‘" }, { "input": "immortalized", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ «" }, { "input": "immortalizes", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "immortalizing", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ ¬" }, { "input": "immortally", "output": "â Šâ â â •â —â žâ â ‡â ‡â ½" }, { "input": "immortals", "output": "â Šâ â â •â —â žâ â ‡â Ž" }, { "input": "immovable", "output": "â Šâ â â •â §â â ƒâ ‡â ‘" }, { "input": "immovably", "output": "â Šâ â â •â §â â ƒâ ‡â ½" }, { "input": "immoveable", "output": "â Šâ â â •⠧⠂⠃⠇⠑" }, { "input": "immune", "output": "â Šâ â â ¥â â ‘" }, { "input": "immunity", "output": "â Šâ â â ¥â â °â ½" }, { "input": "immunization", "output": "â Šâ â â ¥â â Šâ µâ â °â " }, { "input": "immunizations", "output": "â Šâ â â ¥â â Šâ µâ â °â â Ž" }, { "input": "immunize", "output": "â Šâ â â ¥â â Šâ µâ ‘" }, { "input": "immunized", "output": "â Šâ â â ¥â â Šâ µâ «" }, { "input": "immunizes", "output": "â Šâ â â ¥â â Šâ µâ ‘â Ž" }, { "input": "immunizing", "output": "â Šâ â â ¥â â Šâ µâ ¬" }, { "input": "immunology", "output": "â Šâ â â ¥â â •⠇⠕⠛⠽" }, { "input": "immure", "output": "â Šâ â â ¥â —â ‘" }, { "input": "immured", "output": "â Šâ â â ¥â —â «" }, { "input": "immures", "output": "â Šâ â â ¥â —â ‘â Ž" }, { "input": "immuring", "output": "â Šâ â â ¥â —â ¬" }, { "input": "immutability", "output": "â Šâ â â ¥â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "immutable", "output": "â Šâ â â ¥â žâ â ƒâ ‡â ‘" }, { "input": "immutably", "output": "â Šâ â â ¥â žâ â ƒâ ‡â ½" }, { "input": "imp", "output": "â Šâ â " }, { "input": "impact", "output": "â Šâ â â â ‰â ž" }, { "input": "impacted", "output": "â Šâ â â â ‰â žâ «" }, { "input": "impacting", "output": "â Šâ â â â ‰â žâ ¬" }, { "input": "impacts", "output": "â Šâ â â â ‰â žâ Ž" }, { "input": "impair", "output": "â Šâ â â â Šâ —" }, { "input": "impaired", "output": "â Šâ â â â Šâ —â «" }, { "input": "impairing", "output": "â Šâ â â â Šâ —â ¬" }, { "input": "impairment", "output": "â Šâ â â â Šâ —â °â ž" }, { "input": "impairments", "output": "â Šâ â â â Šâ —â °â žâ Ž" }, { "input": "impairs", "output": "â Šâ â â â Šâ —â Ž" }, { "input": "impala", "output": "â Šâ â â â ‡â " }, { "input": "impalas", "output": "â Šâ â â â ‡â â Ž" }, { "input": "impale", "output": "â Šâ â â â ‡â ‘" }, { "input": "impaled", "output": "â Šâ â â â ‡â «" }, { "input": "impalement", "output": "â Šâ â â â ‡â ‘â °â ž" }, { "input": "impales", "output": "â Šâ â â â ‡â ‘â Ž" }, { "input": "impaling", "output": "â Šâ â â â ‡â ¬" }, { "input": "impalpable", "output": "â Šâ â â â ‡â â â ƒâ ‡â ‘" }, { "input": "impanel", "output": "â Šâ â â â â ‘â ‡" }, { "input": "impaneled", "output": "â Šâ â â â â ‘⠇⠫" }, { "input": "impaneling", "output": "â Šâ â â â â ‘⠇⠬" }, { "input": "impanels", "output": "â Šâ â â â â ‘⠇⠎" }, { "input": "impart", "output": "â Šâ â â " }, { "input": "imparted", "output": "â Šâ â â â «" }, { "input": "impartial", "output": "â Šâ â â â Šâ â ‡" }, { "input": "impartiality", "output": "â Šâ â â â Šâ â ‡â °â ½" }, { "input": "impartially", "output": "â Šâ â â â Šâ â ‡â ‡â ½" }, { "input": "imparting", "output": "â Šâ â â â ¬" }, { "input": "imparts", "output": "â Šâ â â â Ž" }, { "input": "impassable", "output": "â Šâ â â â Žâ Žâ â ƒâ ‡â ‘" }, { "input": "impasse", "output": "â Šâ â â â Žâ Žâ ‘" }, { "input": "impasses", "output": "â Šâ â â â Žâ Žâ ‘â Ž" }, { "input": "impassioned", "output": "â Šâ â â â Žâ ¨â â «" }, { "input": "impassive", "output": "â Šâ â â â Žâ Žâ Šâ §â ‘" }, { "input": "impassively", "output": "â Šâ â â â Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "impassivity", "output": "â Šâ â â â Žâ Žâ Šâ §â °â ½" }, { "input": "impatience", "output": "â Šâ â â â žâ Šâ °â ‘" }, { "input": "impatiences", "output": "â Šâ â â â žâ Šâ °â ‘â Ž" }, { "input": "impatient", "output": "â Šâ â â â žâ Šâ ¢â ž" }, { "input": "impatiently", "output": "â Šâ â â â žâ Šâ ¢â žâ ‡â ½" }, { "input": "impeach", "output": "â Šâ â â ‚â ¡" }, { "input": "impeached", "output": "â Šâ â â ‚â ¡â «" }, { "input": "impeaches", "output": "â Šâ â â ‚â ¡â ‘â Ž" }, { "input": "impeaching", "output": "â Šâ â â ‚â ¡â ¬" }, { "input": "impeachment", "output": "â Šâ â â ‚â ¡â °â ž" }, { "input": "impeachments", "output": "â Šâ â â ‚â ¡â °â žâ Ž" }, { "input": "impeccability", "output": "â Šâ â â ‘â ’â â ƒâ Šâ ‡â °â ½" }, { "input": "impeccable", "output": "â Šâ â â ‘â ’â â ƒâ ‡â ‘" }, { "input": "impeccably", "output": "â Šâ â â ‘â ’â â ƒâ ‡â ½" }, { "input": "impecunious", "output": "â Šâ â â ‘⠉⠥â â Šâ ³â Ž" }, { "input": "impecuniousness", "output": "â Šâ â â ‘⠉⠥â â Šâ ³â Žâ °â Ž" }, { "input": "impedance", "output": "â Šâ â â «â ¨â ‘" }, { "input": "impede", "output": "â Šâ â â «â ‘" }, { "input": "impeded", "output": "â Šâ â â «â «" }, { "input": "impedes", "output": "â Šâ â â «â ‘â Ž" }, { "input": "impediment", "output": "â Šâ â â «â Šâ °â ž" }, { "input": "impedimenta", "output": "â Šâ â â «â Šâ °â žâ " }, { "input": "impediments", "output": "â Šâ â â «â Šâ °â žâ Ž" }, { "input": "impeding", "output": "â Šâ â â «â ¬" }, { "input": "impel", "output": "â Šâ â â ‘â ‡" }, { "input": "impelled", "output": "â Šâ â â ‘⠇⠇⠫" }, { "input": "impelling", "output": "â Šâ â â ‘⠇⠇⠬" }, { "input": "impels", "output": "â Šâ â â ‘⠇⠎" }, { "input": "impend", "output": "â Šâ â â ¢â ™" }, { "input": "impended", "output": "â Šâ â â ¢â ™â «" }, { "input": "impending", "output": "â Šâ â â ¢â ™â ¬" }, { "input": "impends", "output": "â Šâ â â ¢â ™â Ž" }, { "input": "impenetrability", "output": "â Šâ â â ¢â ‘â žâ —â â ƒâ Šâ ‡â °â ½" }, { "input": "impenetrable", "output": "â Šâ â â ¢â ‘â žâ —â â ƒâ ‡â ‘" }, { "input": "impenetrably", "output": "â Šâ â â ¢â ‘â žâ —â â ƒâ ‡â ½" }, { "input": "impenitence", "output": "â Šâ â â ¢â Šâ žâ °â ‘" }, { "input": "impenitent", "output": "â Šâ â â ¢â Šâ žâ ¢â ž" }, { "input": "imperative", "output": "â Šâ â â »â â žâ Šâ §â ‘" }, { "input": "imperatively", "output": "â Šâ â â »â â žâ Šâ §â ‘⠇⠽" }, { "input": "imperatives", "output": "â Šâ â â »â â žâ Šâ §â ‘â Ž" }, { "input": "imperceptible", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ ƒâ ‡â ‘" }, { "input": "imperceptibly", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ ƒâ ‡â ½" }, { "input": "imperfect", "output": "â Šâ â â »â ‹â ‘⠉⠞" }, { "input": "imperfection", "output": "â Šâ â â »â ‹â ‘⠉⠰â " }, { "input": "imperfections", "output": "â Šâ â â »â ‹â ‘⠉⠰â â Ž" }, { "input": "imperfectly", "output": "â Šâ â â »â ‹â ‘⠉⠞⠇⠽" }, { "input": "imperfects", "output": "â Šâ â â »â ‹â ‘⠉⠞⠎" }, { "input": "imperial", "output": "â Šâ â â »â Šâ â ‡" }, { "input": "imperialism", "output": "â Šâ â â »â Šâ â ‡â Šâ Žâ " }, { "input": "imperialist", "output": "â Šâ â â »â Šâ â ‡â Šâ Œ" }, { "input": "imperialistic", "output": "â Šâ â â »â Šâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "imperialists", "output": "â Šâ â â »â Šâ â ‡â Šâ Œâ Ž" }, { "input": "imperially", "output": "â Šâ â â »â Šâ â ‡â ‡â ½" }, { "input": "imperials", "output": "â Šâ â â »â Šâ â ‡â Ž" }, { "input": "imperil", "output": "â Šâ â â »â Šâ ‡" }, { "input": "imperiled", "output": "â Šâ â â »â Šâ ‡â «" }, { "input": "imperiling", "output": "â Šâ â â »â Šâ ‡â ¬" }, { "input": "imperilled", "output": "â Šâ â â »â Šâ ‡â ‡â «" }, { "input": "imperilling", "output": "â Šâ â â »â Šâ ‡â ‡â ¬" }, { "input": "imperils", "output": "â Šâ â â »â Šâ ‡â Ž" }, { "input": "imperious", "output": "â Šâ â â »â Šâ ³â Ž" }, { "input": "imperiously", "output": "â Šâ â â »â Šâ ³â Žâ ‡â ½" }, { "input": "imperiousness", "output": "â Šâ â â »â Šâ ³â Žâ °â Ž" }, { "input": "imperishable", "output": "â Šâ â â »â Šâ ©â â ƒâ ‡â ‘" }, { "input": "impermanence", "output": "â Šâ â â »â â â â °â ‘" }, { "input": "impermanent", "output": "â Šâ â â »â â â â ¢â ž" }, { "input": "impermeable", "output": "â Šâ â â »â â ‚⠃⠇⠑" }, { "input": "impermissible", "output": "â Šâ â â »â â Šâ Žâ Žâ Šâ ƒâ ‡â ‘" }, { "input": "impersonal", "output": "â Šâ â â »â Žâ •â â â ‡" }, { "input": "impersonally", "output": "â Šâ â â »â Žâ •â â â ‡â ‡â ½" }, { "input": "impersonate", "output": "â Šâ â â »â Žâ •â â â žâ ‘" }, { "input": "impersonated", "output": "â Šâ â â »â Žâ •â â â žâ «" }, { "input": "impersonates", "output": "â Šâ â â »â Žâ •â â â žâ ‘â Ž" }, { "input": "impersonating", "output": "â Šâ â â »â Žâ •â â â žâ ¬" }, { "input": "impersonation", "output": "â Šâ â â »â Žâ •â â â °â " }, { "input": "impersonations", "output": "â Šâ â â »â Žâ •â â â °â â Ž" }, { "input": "impersonator", "output": "â Šâ â â »â Žâ •â â â žâ •â —" }, { "input": "impersonators", "output": "â Šâ â â »â Žâ •â â â žâ •â —â Ž" }, { "input": "impertinence", "output": "â Šâ â â »â žâ ”â °â ‘" }, { "input": "impertinent", "output": "â Šâ â â »â žâ ”⠢⠞" }, { "input": "impertinently", "output": "â Šâ â â »â žâ ”⠢⠞⠇⠽" }, { "input": "imperturbability", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ƒâ Šâ ‡â °â ½" }, { "input": "imperturbable", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ƒâ ‡â ‘" }, { "input": "imperturbably", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ƒâ ‡â ½" }, { "input": "impervious", "output": "â Šâ â â »â §â Šâ ³â Ž" }, { "input": "impetigo", "output": "â Šâ â â ‘⠞⠊⠛⠕" }, { "input": "impetuosity", "output": "â Šâ â â ‘⠞⠥⠕⠎⠰⠽" }, { "input": "impetuous", "output": "â Šâ â â ‘⠞⠥⠳⠎" }, { "input": "impetuously", "output": "â Šâ â â ‘⠞⠥⠳⠎⠇⠽" }, { "input": "impetus", "output": "â Šâ â â ‘⠞⠥⠎" }, { "input": "impetuses", "output": "â Šâ â â ‘⠞⠥⠎⠑⠎" }, { "input": "impieties", "output": "â Šâ â â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "impiety", "output": "â Šâ â â Šâ ‘â žâ ½" }, { "input": "impinge", "output": "â Šâ â â ¬â ‘" }, { "input": "impinged", "output": "â Šâ â â ¬â «" }, { "input": "impingement", "output": "â Šâ â â ¬â ‘â °â ž" }, { "input": "impinges", "output": "â Šâ â â ¬â ‘â Ž" }, { "input": "impinging", "output": "â Šâ â â ¬â ¬" }, { "input": "impious", "output": "â Šâ â â Šâ ³â Ž" }, { "input": "impiously", "output": "â Šâ â â Šâ ³â Žâ ‡â ½" }, { "input": "impish", "output": "â Šâ â â Šâ ©" }, { "input": "impishly", "output": "â Šâ â â Šâ ©â ‡â ½" }, { "input": "impishness", "output": "â Šâ â â Šâ ©â °â Ž" }, { "input": "implacability", "output": "â Šâ â â ‡â â ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "implacable", "output": "â Šâ â â ‡â â ‰â â ƒâ ‡â ‘" }, { "input": "implacably", "output": "â Šâ â â ‡â â ‰â â ƒâ ‡â ½" }, { "input": "implant", "output": "â Šâ â â ‡â â â ž" }, { "input": "implantation", "output": "â Šâ â â ‡â â â žâ â °â " }, { "input": "implanted", "output": "â Šâ â â ‡â â â žâ «" }, { "input": "implanting", "output": "â Šâ â â ‡â â â žâ ¬" }, { "input": "implants", "output": "â Šâ â â ‡â â â žâ Ž" }, { "input": "implausibilities", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "implausibility", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "implausible", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ ‡â ‘" }, { "input": "implausibly", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ ‡â ½" }, { "input": "implement", "output": "â Šâ â â ‡â ‘â °â ž" }, { "input": "implementable", "output": "â Šâ â â ‡â ‘â °â žâ â ƒâ ‡â ‘" }, { "input": "implementation", "output": "â Šâ â â ‡â ‘â °â žâ â °â " }, { "input": "implementations", "output": "â Šâ â â ‡â ‘â °â žâ â °â â Ž" }, { "input": "implemented", "output": "â Šâ â â ‡â ‘â °â žâ «" }, { "input": "implementer", "output": "â Šâ â â ‡â ‘â °â žâ »" }, { "input": "implementing", "output": "â Šâ â â ‡â ‘â °â žâ ¬" }, { "input": "implements", "output": "â Šâ â â ‡â ‘â °â žâ Ž" }, { "input": "implicate", "output": "â Šâ â â ‡â Šâ ‰â â žâ ‘" }, { "input": "implicated", "output": "â Šâ â â ‡â Šâ ‰â â žâ «" }, { "input": "implicates", "output": "â Šâ â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "implicating", "output": "â Šâ â â ‡â Šâ ‰â â žâ ¬" }, { "input": "implication", "output": "â Šâ â â ‡â Šâ ‰â â °â " }, { "input": "implications", "output": "â Šâ â â ‡â Šâ ‰â â °â â Ž" }, { "input": "implicit", "output": "â Šâ â â ‡â Šâ ‰â Šâ ž" }, { "input": "implicitly", "output": "â Šâ â â ‡â Šâ ‰â Šâ žâ ‡â ½" }, { "input": "implied", "output": "â Šâ â â ‡â Šâ «" }, { "input": "implies", "output": "â Šâ â â ‡â Šâ ‘â Ž" }, { "input": "implode", "output": "â Šâ â â ‡â •⠙⠑" }, { "input": "imploded", "output": "â Šâ â â ‡â •⠙⠫" }, { "input": "implodes", "output": "â Šâ â â ‡â •⠙⠑⠎" }, { "input": "imploding", "output": "â Šâ â â ‡â •⠙⠬" }, { "input": "implore", "output": "â Šâ â â ‡â •â —â ‘" }, { "input": "implored", "output": "â Šâ â â ‡â •â —â «" }, { "input": "implores", "output": "â Šâ â â ‡â •â —â ‘â Ž" }, { "input": "imploring", "output": "â Šâ â â ‡â •â —â ¬" }, { "input": "implosion", "output": "â Šâ â â ‡â •â ¨â " }, { "input": "implosions", "output": "â Šâ â â ‡â •â ¨â â Ž" }, { "input": "imply", "output": "â Šâ â â ‡â ½" }, { "input": "implying", "output": "â Šâ â â ‡â ½â ¬" }, { "input": "impolite", "output": "â Šâ â â •⠇⠊⠞⠑" }, { "input": "impolitely", "output": "â Šâ â â •⠇⠊⠞⠑⠇⠽" }, { "input": "impoliteness", "output": "â Šâ â â •⠇⠊⠞⠑⠰⠎" }, { "input": "impolitenesses", "output": "â Šâ â â •⠇⠊⠞⠑⠰⠎⠑⠎" }, { "input": "impolitic", "output": "â Šâ â â •⠇⠊⠞⠊⠉" }, { "input": "imponderable", "output": "â Šâ â â •â â ™â »â â ƒâ ‡â ‘" }, { "input": "imponderables", "output": "â Šâ â â •â â ™â »â â ƒâ ‡â ‘â Ž" }, { "input": "import", "output": "â Šâ â â •â —â ž" }, { "input": "importance", "output": "â Šâ â â •⠗⠞⠨⠑" }, { "input": "important", "output": "â Šâ â â •â —â žâ â â ž" }, { "input": "importantly", "output": "â Šâ â â •â —â žâ â â žâ ‡â ½" }, { "input": "importation", "output": "â Šâ â â •â —â žâ â °â " }, { "input": "importations", "output": "â Šâ â â •â —â žâ â °â â Ž" }, { "input": "imported", "output": "â Šâ â â •â —â žâ «" }, { "input": "importer", "output": "â Šâ â â •â —â žâ »" }, { "input": "importers", "output": "â Šâ â â •⠗⠞⠻⠎" }, { "input": "importing", "output": "â Šâ â â •â —â žâ ¬" }, { "input": "imports", "output": "â Šâ â â •â —â žâ Ž" }, { "input": "importunate", "output": "â Šâ â â •â —â žâ ¥â â â žâ ‘" }, { "input": "importune", "output": "â Šâ â â •â —â žâ ¥â â ‘" }, { "input": "importuned", "output": "â Šâ â â •â —â žâ ¥â â «" }, { "input": "importunes", "output": "â Šâ â â •â —â žâ ¥â â ‘â Ž" }, { "input": "importuning", "output": "â Šâ â â •â —â žâ ¥â â ¬" }, { "input": "importunity", "output": "â Šâ â â •â —â žâ ¥â â °â ½" }, { "input": "impose", "output": "â Šâ â â •â Žâ ‘" }, { "input": "imposed", "output": "â Šâ â â •â Žâ «" }, { "input": "imposes", "output": "â Šâ â â •â Žâ ‘â Ž" }, { "input": "imposing", "output": "â Šâ â â •â Žâ ¬" }, { "input": "imposingly", "output": "â Šâ â â •⠎⠬⠇⠽" }, { "input": "imposition", "output": "â Šâ â â •â Žâ Šâ °â " }, { "input": "impositions", "output": "â Šâ â â •â Žâ Šâ °â â Ž" }, { "input": "impossibilities", "output": "â Šâ â â •⠎⠎⠊⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "impossibility", "output": "â Šâ â â •⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "impossible", "output": "â Šâ â â •⠎⠎⠊⠃⠇⠑" }, { "input": "impossibles", "output": "â Šâ â â •⠎⠎⠊⠃⠇⠑⠎" }, { "input": "impossibly", "output": "â Šâ â â •⠎⠎⠊⠃⠇⠽" }, { "input": "imposter", "output": "â Šâ â â •⠌⠻" }, { "input": "imposters", "output": "â Šâ â â •⠌⠻⠎" }, { "input": "impostor", "output": "â Šâ â â •⠌⠕⠗" }, { "input": "impostors", "output": "â Šâ â â •⠌⠕⠗⠎" }, { "input": "imposture", "output": "â Šâ â â •⠌⠥⠗⠑" }, { "input": "impostures", "output": "â Šâ â â •⠌⠥⠗⠑⠎" }, { "input": "impotence", "output": "â Šâ â â •â žâ °â ‘" }, { "input": "impotent", "output": "â Šâ â â •⠞⠢⠞" }, { "input": "impotently", "output": "â Šâ â â •⠞⠢⠞⠇⠽" }, { "input": "impound", "output": "â Šâ â â ¨â ™" }, { "input": "impounded", "output": "â Šâ â â ¨â ™â «" }, { "input": "impounding", "output": "â Šâ â â ¨â ™â ¬" }, { "input": "impounds", "output": "â Šâ â â ¨â ™â Ž" }, { "input": "impoverish", "output": "â Šâ â â •⠧⠻⠊⠩" }, { "input": "impoverished", "output": "â Šâ â â •⠧⠻⠊⠩⠫" }, { "input": "impoverishes", "output": "â Šâ â â •⠧⠻⠊⠩⠑⠎" }, { "input": "impoverishing", "output": "â Šâ â â •⠧⠻⠊⠩⠬" }, { "input": "impoverishment", "output": "â Šâ â â •⠧⠻⠊⠩⠰⠞" }, { "input": "impracticable", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ƒâ ‡â ‘" }, { "input": "impracticably", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ƒâ ‡â ½" }, { "input": "impractical", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ‡" }, { "input": "impracticality", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ‡â °â ½" }, { "input": "imprecation", "output": "â Šâ â â —â ‘â ‰â â °â " }, { "input": "imprecations", "output": "â Šâ â â —â ‘â ‰â â °â â Ž" }, { "input": "imprecise", "output": "â Šâ â â —⠑⠉⠊⠎⠑" }, { "input": "imprecisely", "output": "â Šâ â â —⠑⠉⠊⠎⠑⠇⠽" }, { "input": "imprecision", "output": "â Šâ â â —⠑⠉⠊⠨â " }, { "input": "impregnability", "output": "â Šâ â â —â ‘â ›â â â ƒâ Šâ ‡â °â ½" }, { "input": "impregnable", "output": "â Šâ â â —â ‘â ›â â â ƒâ ‡â ‘" }, { "input": "impregnably", "output": "â Šâ â â —â ‘â ›â â â ƒâ ‡â ½" }, { "input": "impregnate", "output": "â Šâ â â —â ‘â ›â â â žâ ‘" }, { "input": "impregnated", "output": "â Šâ â â —â ‘â ›â â â žâ «" }, { "input": "impregnates", "output": "â Šâ â â —â ‘â ›â â â žâ ‘â Ž" }, { "input": "impregnating", "output": "â Šâ â â —â ‘â ›â â â žâ ¬" }, { "input": "impregnation", "output": "â Šâ â â —â ‘â ›â â â °â " }, { "input": "impresario", "output": "â Šâ â â —⠑⠎⠜⠊⠕" }, { "input": "impresarios", "output": "â Šâ â â —⠑⠎⠜⠊⠕⠎" }, { "input": "impress", "output": "â Šâ â â —â ‘â Žâ Ž" }, { "input": "impressed", "output": "â Šâ â â —â ‘â Žâ Žâ «" }, { "input": "impresses", "output": "â Šâ â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "impressing", "output": "â Šâ â â —â ‘â Žâ Žâ ¬" }, { "input": "impression", "output": "â Šâ â â —â ‘â Žâ ¨â " }, { "input": "impressionable", "output": "â Šâ â â —â ‘â Žâ ¨â â â ƒâ ‡â ‘" }, { "input": "impressionism", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Žâ " }, { "input": "impressionist", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œ" }, { "input": "impressionistic", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œâ Šâ ‰" }, { "input": "impressionists", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œâ Ž" }, { "input": "impressions", "output": "â Šâ â â —â ‘â Žâ ¨â â Ž" }, { "input": "impressive", "output": "â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "impressively", "output": "â Šâ â â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "impressiveness", "output": "â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "imprimatur", "output": "â Šâ â â —â Šâ â â žâ ¥â —" }, { "input": "imprimaturs", "output": "â Šâ â â —â Šâ â â žâ ¥â —â Ž" }, { "input": "imprint", "output": "â Šâ â â —⠔⠞" }, { "input": "imprinted", "output": "â Šâ â â —⠔⠞⠫" }, { "input": "imprinting", "output": "â Šâ â â —⠔⠞⠬" }, { "input": "imprints", "output": "â Šâ â â —⠔⠞⠎" }, { "input": "imprison", "output": "â Šâ â â —â Šâ Žâ •â " }, { "input": "imprisoned", "output": "â Šâ â â —â Šâ Žâ •â â «" }, { "input": "imprisoning", "output": "â Šâ â â —â Šâ Žâ •â â ¬" }, { "input": "imprisonment", "output": "â Šâ â â —â Šâ Žâ •â â °â ž" }, { "input": "imprisonments", "output": "â Šâ â â —â Šâ Žâ •â â °â žâ Ž" }, { "input": "imprisons", "output": "â Šâ â â —â Šâ Žâ •â â Ž" }, { "input": "improbabilities", "output": "â Šâ â â —â •â ƒâ â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "improbability", "output": "â Šâ â â —â •â ƒâ â ƒâ Šâ ‡â °â ½" }, { "input": "improbable", "output": "â Šâ â â —â •â ƒâ â ƒâ ‡â ‘" }, { "input": "improbably", "output": "â Šâ â â —â •â ƒâ â ƒâ ‡â ½" }, { "input": "impromptu", "output": "â Šâ â â —â •â â â žâ ¥" }, { "input": "impromptus", "output": "â Šâ â â —â •â â â žâ ¥â Ž" }, { "input": "improper", "output": "â Šâ â â —â •â â »" }, { "input": "improperly", "output": "â Šâ â â —â •â â »â ‡â ½" }, { "input": "improprieties", "output": "â Šâ â â —â •â â —â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "impropriety", "output": "â Šâ â â —â •â â —â Šâ ‘â žâ ½" }, { "input": "improvable", "output": "â Šâ â â —â •â §â â ƒâ ‡â ‘" }, { "input": "improve", "output": "â Šâ â â —â •â §â ‘" }, { "input": "improved", "output": "â Šâ â â —â •â §â «" }, { "input": "improvement", "output": "â Šâ â â —â •â §â ‘â °â ž" }, { "input": "improvements", "output": "â Šâ â â —â •â §â ‘â °â žâ Ž" }, { "input": "improves", "output": "â Šâ â â —â •â §â ‘â Ž" }, { "input": "improvidence", "output": "â Šâ â â —⠕⠧⠊⠙⠰⠑" }, { "input": "improvident", "output": "â Šâ â â —⠕⠧⠊⠙⠢⠞" }, { "input": "improvidently", "output": "â Šâ â â —⠕⠧⠊⠙⠢⠞⠇⠽" }, { "input": "improving", "output": "â Šâ â â —â •â §â ¬" }, { "input": "improvisation", "output": "â Šâ â â —â •â §â Šâ Žâ â °â " }, { "input": "improvisations", "output": "â Šâ â â —â •â §â Šâ Žâ â °â â Ž" }, { "input": "improvise", "output": "â Šâ â â —â •â §â Šâ Žâ ‘" }, { "input": "improvised", "output": "â Šâ â â —â •â §â Šâ Žâ «" }, { "input": "improvises", "output": "â Šâ â â —â •â §â Šâ Žâ ‘â Ž" }, { "input": "improvising", "output": "â Šâ â â —â •â §â Šâ Žâ ¬" }, { "input": "imprudence", "output": "â Šâ â â —⠥⠙⠰⠑" }, { "input": "imprudent", "output": "â Šâ â â —⠥⠙⠢⠞" }, { "input": "imps", "output": "â Šâ â â Ž" }, { "input": "impudence", "output": "â Šâ â â ¥â ™â °â ‘" }, { "input": "impudent", "output": "â Šâ â â ¥â ™â ¢â ž" }, { "input": "impudently", "output": "â Šâ â â ¥â ™â ¢â žâ ‡â ½" }, { "input": "impugn", "output": "â Šâ â â ¥â ›â " }, { "input": "impugned", "output": "â Šâ â â ¥â ›â â «" }, { "input": "impugning", "output": "â Šâ â â ¥â ›â â ¬" }, { "input": "impugns", "output": "â Šâ â â ¥â ›â â Ž" }, { "input": "impulse", "output": "â Šâ â â ¥â ‡â Žâ ‘" }, { "input": "impulsed", "output": "â Šâ â â ¥â ‡â Žâ «" }, { "input": "impulses", "output": "â Šâ â â ¥â ‡â Žâ ‘â Ž" }, { "input": "impulsing", "output": "â Šâ â â ¥â ‡â Žâ ¬" }, { "input": "impulsion", "output": "â Šâ â â ¥â ‡â ¨â " }, { "input": "impulsive", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "impulsively", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘⠇⠽" }, { "input": "impulsiveness", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘â °â Ž" }, { "input": "impunity", "output": "â Šâ â â ¥â â °â ½" }, { "input": "impure", "output": "â Šâ â â ¥â —â ‘" }, { "input": "impurely", "output": "â Šâ â â ¥â —⠑⠇⠽" }, { "input": "impurer", "output": "â Šâ â â ¥â —â »" }, { "input": "impurest", "output": "â Šâ â â ¥â —â ‘â Œ" }, { "input": "impurities", "output": "â Šâ â â ¥â —â Šâ žâ Šâ ‘â Ž" }, { "input": "impurity", "output": "â Šâ â â ¥â —â °â ½" }, { "input": "imputation", "output": "â Šâ â â ¥â žâ â °â " }, { "input": "imputations", "output": "â Šâ â â ¥â žâ â °â â Ž" }, { "input": "impute", "output": "â Šâ â â ¥â žâ ‘" }, { "input": "imputed", "output": "â Šâ â â ¥â žâ «" }, { "input": "imputes", "output": "â Šâ â â ¥â žâ ‘â Ž" }, { "input": "imputing", "output": "â Šâ â â ¥â žâ ¬" }, { "input": "in", "output": "â ”" }, { "input": "inabilities", "output": "â ”â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "inability", "output": "â ”â â ƒâ Šâ ‡â °â ½" }, { "input": "inaccessibility", "output": "â ”â â ’⠑⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "inaccessible", "output": "â ”â â ’⠑⠎⠎⠊⠃⠇⠑" }, { "input": "inaccuracies", "output": "â ”â â ’⠥⠗â â ‰â Šâ ‘â Ž" }, { "input": "inaccuracy", "output": "â ”â â ’⠥⠗â â ‰â ½" }, { "input": "inaccurate", "output": "â ”â â ’⠥⠗â â žâ ‘" }, { "input": "inaccurately", "output": "â ”â â ’⠥⠗â â žâ ‘⠇⠽" }, { "input": "inaction", "output": "â ”â â ‰â °â " }, { "input": "inactive", "output": "â ”â â ‰â žâ Šâ §â ‘" }, { "input": "inactivity", "output": "â ”â â ‰â žâ Šâ §â °â ½" }, { "input": "inadequacies", "output": "â ”â â ™â ‘â Ÿâ ¥â â ‰â Šâ ‘â Ž" }, { "input": "inadequacy", "output": "â ”â â ™â ‘â Ÿâ ¥â â ‰â ½" }, { "input": "inadequate", "output": "â ”â â ™â ‘â Ÿâ ¥â â žâ ‘" }, { "input": "inadequately", "output": "â ”â â ™â ‘â Ÿâ ¥â â žâ ‘⠇⠽" }, { "input": "inadmissible", "output": "â ”â â ™â â Šâ Žâ Žâ Šâ ƒâ ‡â ‘" }, { "input": "inadvertence", "output": "â ”â â ™â §â »â žâ °â ‘" }, { "input": "inadvertent", "output": "â ”â â ™â §â »â žâ ¢â ž" }, { "input": "inadvertently", "output": "â ”â â ™â §â »â žâ ¢â žâ ‡â ½" }, { "input": "inadvisable", "output": "â ”â â ™â §â Šâ Žâ â ƒâ ‡â ‘" }, { "input": "inalienable", "output": "â ”â â ‡â Šâ ¢â â ƒâ ‡â ‘" }, { "input": "inamorata", "output": "â ”â â â •â —â â žâ " }, { "input": "inamoratas", "output": "â ”â â â •â —â â žâ â Ž" }, { "input": "inane", "output": "â ”â â â ‘" }, { "input": "inanely", "output": "â ”â â â ‘⠇⠽" }, { "input": "inaner", "output": "â ”â â â »" }, { "input": "inanest", "output": "â ”â â â ‘â Œ" }, { "input": "inanimate", "output": "â ”â â â Šâ â â žâ ‘" }, { "input": "inanities", "output": "â ”â â â Šâ žâ Šâ ‘â Ž" }, { "input": "inanity", "output": "â ”â â â °â ½" }, { "input": "inapplicable", "output": "â ”â â â â ‡â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "inappropriate", "output": "â ”â â â â —â •â â —â Šâ â žâ ‘" }, { "input": "inappropriately", "output": "â ”â â â â —â •â â —â Šâ â žâ ‘⠇⠽" }, { "input": "inapt", "output": "â ”â â â ž" }, { "input": "inarticulate", "output": "⠔⠜⠞⠊⠉⠥⠇â â žâ ‘" }, { "input": "inarticulately", "output": "⠔⠜⠞⠊⠉⠥⠇â â žâ ‘⠇⠽" }, { "input": "inasmuch", "output": "â ”â â Žâ â ¡" }, { "input": "inattention", "output": "â ”â â žâ žâ ¢â °â " }, { "input": "inattentive", "output": "â ”â â žâ žâ ¢â žâ Šâ §â ‘" }, { "input": "inaudible", "output": "â ”â â ¥â ™â Šâ ƒâ ‡â ‘" }, { "input": "inaudibly", "output": "â ”â â ¥â ™â Šâ ƒâ ‡â ½" }, { "input": "inaugural", "output": "â ”â â ¥â ›â ¥â —â â ‡" }, { "input": "inaugurals", "output": "â ”â â ¥â ›â ¥â —â â ‡â Ž" }, { "input": "inaugurate", "output": "â ”â â ¥â ›â ¥â —â â žâ ‘" }, { "input": "inaugurated", "output": "â ”â â ¥â ›â ¥â —â â žâ «" }, { "input": "inaugurates", "output": "â ”â â ¥â ›â ¥â —â â žâ ‘â Ž" }, { "input": "inaugurating", "output": "â ”â â ¥â ›â ¥â —â â žâ ¬" }, { "input": "inauguration", "output": "â ”â â ¥â ›â ¥â —â â °â " }, { "input": "inaugurations", "output": "â ”â â ¥â ›â ¥â —â â °â â Ž" }, { "input": "inauspicious", "output": "â ”â â ¥â Žâ â Šâ ‰â Šâ ³â Ž" }, { "input": "inboard", "output": "⠔⠃⠕⠜⠙" }, { "input": "inboards", "output": "⠔⠃⠕⠜⠙⠎" }, { "input": "inborn", "output": "⠔⠃⠕⠗â " }, { "input": "inbound", "output": "⠔⠃⠨⠙" }, { "input": "inbred", "output": "⠔⠃⠗⠫" }, { "input": "inbreed", "output": "⠔⠃⠗⠑⠫" }, { "input": "inbreeding", "output": "⠔⠃⠗⠑⠫⠬" }, { "input": "inbreeds", "output": "⠔⠃⠗⠑⠫⠎" }, { "input": "inbuilt", "output": "⠔⠃⠥⠊⠇⠞" }, { "input": "incalculable", "output": "⠔⠉â â ‡â ‰â ¥â ‡â â ƒâ ‡â ‘" }, { "input": "incalculably", "output": "⠔⠉â â ‡â ‰â ¥â ‡â â ƒâ ‡â ½" }, { "input": "incandescence", "output": "⠔⠉⠯⠑⠎⠉⠰⠑" }, { "input": "incandescent", "output": "⠔⠉⠯⠑⠎⠉⠢⠞" }, { "input": "incantation", "output": "⠔⠉â â â žâ â °â " }, { "input": "incantations", "output": "⠔⠉â â â žâ â °â â Ž" }, { "input": "incapability", "output": "⠔⠉â â â â ƒâ Šâ ‡â °â ½" }, { "input": "incapable", "output": "⠔⠉â â â â ƒâ ‡â ‘" }, { "input": "incapacitate", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ ‘" }, { "input": "incapacitated", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ «" }, { "input": "incapacitates", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ ‘â Ž" }, { "input": "incapacitating", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ ¬" }, { "input": "incapacity", "output": "⠔⠉â â â â ‰â °â ½" }, { "input": "incarcerate", "output": "⠔⠉⠜⠉⠻â â žâ ‘" }, { "input": "incarcerated", "output": "⠔⠉⠜⠉⠻â â žâ «" }, { "input": "incarcerates", "output": "⠔⠉⠜⠉⠻â â žâ ‘â Ž" }, { "input": "incarcerating", "output": "⠔⠉⠜⠉⠻â â žâ ¬" }, { "input": "incarceration", "output": "⠔⠉⠜⠉⠻â â °â " }, { "input": "incarcerations", "output": "⠔⠉⠜⠉⠻â â °â â Ž" }, { "input": "incarnate", "output": "⠔⠉⠜â â â žâ ‘" }, { "input": "incarnated", "output": "⠔⠉⠜â â â žâ «" }, { "input": "incarnates", "output": "⠔⠉⠜â â â žâ ‘â Ž" }, { "input": "incarnating", "output": "⠔⠉⠜â â â žâ ¬" }, { "input": "incarnation", "output": "⠔⠉⠜â â â °â " }, { "input": "incarnations", "output": "⠔⠉⠜â â â °â â Ž" }, { "input": "incautious", "output": "⠔⠉â â ¥â žâ Šâ ³â Ž" }, { "input": "incendiaries", "output": "⠔⠉⠢⠙⠊⠜⠊⠑⠎" }, { "input": "incendiary", "output": "⠔⠉⠢⠙⠊⠜⠽" }, { "input": "incense", "output": "⠔⠉⠢⠎⠑" }, { "input": "incensed", "output": "⠔⠉⠢⠎⠫" }, { "input": "incenses", "output": "⠔⠉⠢⠎⠑⠎" }, { "input": "incensing", "output": "⠔⠉⠢⠎⠬" }, { "input": "incentive", "output": "⠔⠉⠢⠞⠊⠧⠑" }, { "input": "incentives", "output": "⠔⠉⠢⠞⠊⠧⠑⠎" }, { "input": "inception", "output": "⠔⠉⠑â â °â " }, { "input": "inceptions", "output": "⠔⠉⠑â â °â â Ž" }, { "input": "incessant", "output": "⠔⠉⠑⠎⠎â â â ž" }, { "input": "incessantly", "output": "⠔⠉⠑⠎⠎â â â žâ ‡â ½" }, { "input": "incest", "output": "⠔⠉⠑⠌" }, { "input": "incestuous", "output": "⠔⠉⠑⠌⠥⠳⠎" }, { "input": "inch", "output": "⠔⠡" }, { "input": "inched", "output": "⠔⠡⠫" }, { "input": "inches", "output": "⠔⠡⠑⠎" }, { "input": "inching", "output": "⠔⠡⠬" }, { "input": "inchoate", "output": "⠔⠡⠕â â žâ ‘" }, { "input": "incidence", "output": "⠔⠉⠊⠙⠰⠑" }, { "input": "incidences", "output": "⠔⠉⠊⠙⠰⠑⠎" }, { "input": "incident", "output": "⠔⠉⠊⠙⠢⠞" }, { "input": "incidental", "output": "⠔⠉⠊⠙⠢⠞â â ‡" }, { "input": "incidentally", "output": "⠔⠉⠊⠙⠢⠞â â ‡â ‡â ½" }, { "input": "incidentals", "output": "⠔⠉⠊⠙⠢⠞â â ‡â Ž" }, { "input": "incidents", "output": "⠔⠉⠊⠙⠢⠞⠎" }, { "input": "incinerate", "output": "⠔⠉⠔⠻â â žâ ‘" }, { "input": "incinerated", "output": "⠔⠉⠔⠻â â žâ «" }, { "input": "incinerates", "output": "⠔⠉⠔⠻â â žâ ‘â Ž" }, { "input": "incinerating", "output": "⠔⠉⠔⠻â â žâ ¬" }, { "input": "incineration", "output": "⠔⠉⠔⠻â â °â " }, { "input": "incinerator", "output": "⠔⠉⠔⠻â â žâ •â —" }, { "input": "incinerators", "output": "⠔⠉⠔⠻â â žâ •â —â Ž" }, { "input": "incipient", "output": "⠔⠉⠊â â Šâ ¢â ž" }, { "input": "incise", "output": "⠔⠉⠊⠎⠑" }, { "input": "incised", "output": "⠔⠉⠊⠎⠫" }, { "input": "incises", "output": "⠔⠉⠊⠎⠑⠎" }, { "input": "incising", "output": "⠔⠉⠊⠎⠬" }, { "input": "incision", "output": "⠔⠉⠊⠨â " }, { "input": "incisions", "output": "⠔⠉⠊⠨â â Ž" }, { "input": "incisive", "output": "⠔⠉⠊⠎⠊⠧⠑" }, { "input": "incisively", "output": "⠔⠉⠊⠎⠊⠧⠑⠇⠽" }, { "input": "incisiveness", "output": "⠔⠉⠊⠎⠊⠧⠑⠰⠎" }, { "input": "incisor", "output": "⠔⠉⠊⠎⠕⠗" }, { "input": "incisors", "output": "⠔⠉⠊⠎⠕⠗⠎" }, { "input": "incite", "output": "⠔⠉⠊⠞⠑" }, { "input": "incited", "output": "⠔⠉⠊⠞⠫" }, { "input": "incitement", "output": "⠔⠉⠊⠞⠑⠰⠞" }, { "input": "incitements", "output": "⠔⠉⠊⠞⠑⠰⠞⠎" }, { "input": "incites", "output": "⠔⠉⠊⠞⠑⠎" }, { "input": "inciting", "output": "⠔⠉⠊⠞⠬" }, { "input": "incivilities", "output": "⠔⠉⠊⠧⠊⠇⠊⠞⠊⠑⠎" }, { "input": "incivility", "output": "⠔⠉⠊⠧⠊⠇⠰⠽" }, { "input": "inclemency", "output": "⠔⠉⠇⠑â â ¢â ‰â ½" }, { "input": "inclement", "output": "⠔⠉⠇⠑⠰⠞" }, { "input": "inclination", "output": "⠔⠉⠇⠔â â °â " }, { "input": "inclinations", "output": "⠔⠉⠇⠔â â °â â Ž" }, { "input": "incline", "output": "⠔⠉⠇⠔⠑" }, { "input": "inclined", "output": "⠔⠉⠇⠔⠫" }, { "input": "inclines", "output": "⠔⠉⠇⠔⠑⠎" }, { "input": "inclining", "output": "⠔⠉⠇⠔⠬" }, { "input": "inclose", "output": "⠔⠉⠇⠕⠎⠑" }, { "input": "inclosed", "output": "⠔⠉⠇⠕⠎⠫" }, { "input": "incloses", "output": "⠔⠉⠇⠕⠎⠑⠎" }, { "input": "inclosing", "output": "⠔⠉⠇⠕⠎⠬" }, { "input": "inclosure", "output": "⠔⠉⠇⠕⠎⠥⠗⠑" }, { "input": "inclosures", "output": "⠔⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "include", "output": "⠔⠉⠇⠥⠙⠑" }, { "input": "included", "output": "⠔⠉⠇⠥⠙⠫" }, { "input": "includes", "output": "⠔⠉⠇⠥⠙⠑⠎" }, { "input": "including", "output": "⠔⠉⠇⠥⠙⠬" }, { "input": "inclusion", "output": "⠔⠉⠇⠥⠨â " }, { "input": "inclusions", "output": "⠔⠉⠇⠥⠨â â Ž" }, { "input": "inclusive", "output": "⠔⠉⠇⠥⠎⠊⠧⠑" }, { "input": "inclusively", "output": "⠔⠉⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "incognito", "output": "⠔⠉⠕⠛â â Šâ žâ •" }, { "input": "incognitos", "output": "⠔⠉⠕⠛â â Šâ žâ •â Ž" }, { "input": "incoherence", "output": "⠔⠉⠕⠓⠻⠰⠑" }, { "input": "incoherent", "output": "⠔⠉⠕⠓⠻⠢⠞" }, { "input": "incoherently", "output": "⠔⠉⠕⠓⠻⠢⠞⠇⠽" }, { "input": "incombustible", "output": "⠔⠉⠕â â ƒâ ¥â Œâ Šâ ƒâ ‡â ‘" }, { "input": "income", "output": "⠔⠉⠕â â ‘" }, { "input": "incomes", "output": "⠔⠉⠕â â ‘â Ž" }, { "input": "incoming", "output": "⠔⠉⠕â â ¬" }, { "input": "incommensurate", "output": "⠔⠉⠕â â â ¢â Žâ ¥â —â â žâ ‘" }, { "input": "incommunicado", "output": "⠔⠉⠕â â â ¥â â Šâ ‰â â ™â •" }, { "input": "incomparable", "output": "⠔⠉⠕â â â œâ â ƒâ ‡â ‘" }, { "input": "incomparably", "output": "⠔⠉⠕â â â œâ â ƒâ ‡â ½" }, { "input": "incompatibilities", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "incompatibility", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "incompatible", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ ‡â ‘" }, { "input": "incompatibles", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ ‡â ‘â Ž" }, { "input": "incompatibly", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ ‡â ½" }, { "input": "incompetence", "output": "⠔⠉⠕â â â ‘â žâ °â ‘" }, { "input": "incompetent", "output": "⠔⠉⠕â â â ‘⠞⠢⠞" }, { "input": "incompetently", "output": "⠔⠉⠕â â â ‘⠞⠢⠞⠇⠽" }, { "input": "incompetents", "output": "⠔⠉⠕â â â ‘⠞⠢⠞⠎" }, { "input": "incomplete", "output": "⠔⠉⠕â â â ‡â ‘â žâ ‘" }, { "input": "incompletely", "output": "⠔⠉⠕â â â ‡â ‘⠞⠑⠇⠽" }, { "input": "incompleteness", "output": "⠔⠉⠕â â â ‡â ‘â žâ ‘â °â Ž" }, { "input": "incomprehensible", "output": "⠔⠉⠕â â â —⠑⠓⠢⠎⠊⠃⠇⠑" }, { "input": "incomprehensibly", "output": "⠔⠉⠕â â â —⠑⠓⠢⠎⠊⠃⠇⠽" }, { "input": "inconceivable", "output": "⠔⠉⠕â â ‰â ‘â Šâ §â â ƒâ ‡â ‘" }, { "input": "inconceivably", "output": "⠔⠉⠕â â ‰â ‘â Šâ §â â ƒâ ‡â ½" }, { "input": "inconclusive", "output": "⠔⠉⠕â â ‰â ‡â ¥â Žâ Šâ §â ‘" }, { "input": "inconclusively", "output": "⠔⠉⠕â â ‰â ‡â ¥â Žâ Šâ §â ‘⠇⠽" }, { "input": "incongruities", "output": "⠔⠉⠰⠛⠗⠥⠊⠞⠊⠑⠎" }, { "input": "incongruity", "output": "⠔⠉⠰⠛⠗⠥⠰⠽" }, { "input": "incongruous", "output": "⠔⠉⠰⠛⠗⠥⠳⠎" }, { "input": "incongruously", "output": "⠔⠉⠰⠛⠗⠥⠳⠎⠇⠽" }, { "input": "inconsequential", "output": "⠔⠉⠕â â Žâ ‘⠟⠥⠢⠞⠊â â ‡" }, { "input": "inconsequentially", "output": "⠔⠉⠕â â Žâ ‘⠟⠥⠢⠞⠊â â ‡â ‡â ½" }, { "input": "inconsiderable", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â ƒâ ‡â ‘" }, { "input": "inconsiderate", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘" }, { "input": "inconsiderately", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘⠇⠽" }, { "input": "inconsiderateness", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘â °â Ž" }, { "input": "inconsistencies", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ‰â Šâ ‘â Ž" }, { "input": "inconsistency", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ‰â ½" }, { "input": "inconsistent", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ž" }, { "input": "inconsistently", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â žâ ‡â ½" }, { "input": "inconsolable", "output": "⠔⠉⠕â â Žâ •â ‡â â ƒâ ‡â ‘" }, { "input": "inconspicuous", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Ž" }, { "input": "inconspicuously", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Žâ ‡â ½" }, { "input": "inconspicuousness", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Žâ °â Ž" }, { "input": "inconstancy", "output": "⠔⠉⠕â â Œâ â â ‰â ½" }, { "input": "inconstant", "output": "⠔⠉⠕â â Œâ â â ž" }, { "input": "incontestable", "output": "⠔⠉⠕â â žâ ‘â Œâ â ƒâ ‡â ‘" }, { "input": "incontestably", "output": "⠔⠉⠕â â žâ ‘â Œâ â ƒâ ‡â ½" }, { "input": "incontinence", "output": "⠔⠉⠕â â žâ ”â °â ‘" }, { "input": "incontinent", "output": "⠔⠉⠕â â žâ ”⠢⠞" }, { "input": "incontrovertible", "output": "⠔⠉⠕â â žâ —⠕⠧⠻⠞⠊⠃⠇⠑" }, { "input": "incontrovertibly", "output": "⠔⠉⠕â â žâ —⠕⠧⠻⠞⠊⠃⠇⠽" }, { "input": "inconvenience", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘" }, { "input": "inconvenienced", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘â ™" }, { "input": "inconveniences", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘â Ž" }, { "input": "inconveniencing", "output": "⠔⠉⠕â â §â ¢â Šâ ¢â ‰â ¬" }, { "input": "inconvenient", "output": "⠔⠉⠕â â §â ¢â Šâ ¢â ž" }, { "input": "inconveniently", "output": "⠔⠉⠕â â §â ¢â Šâ ¢â žâ ‡â ½" }, { "input": "incorporate", "output": "⠔⠉⠕⠗â â •â —â â žâ ‘" }, { "input": "incorporated", "output": "⠔⠉⠕⠗â â •â —â â žâ «" }, { "input": "incorporates", "output": "⠔⠉⠕⠗â â •â —â â žâ ‘â Ž" }, { "input": "incorporating", "output": "⠔⠉⠕⠗â â •â —â â žâ ¬" }, { "input": "incorporation", "output": "⠔⠉⠕⠗â â •â —â â °â " }, { "input": "incorporeal", "output": "⠔⠉⠕⠗â â •â —â ‚â ‡" }, { "input": "incorrect", "output": "⠔⠉⠕⠗⠗⠑⠉⠞" }, { "input": "incorrectly", "output": "⠔⠉⠕⠗⠗⠑⠉⠞⠇⠽" }, { "input": "incorrectness", "output": "⠔⠉⠕⠗⠗⠑⠉⠞⠰⠎" }, { "input": "incorrigibility", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "incorrigible", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠃⠇⠑" }, { "input": "incorrigibly", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠃⠇⠽" }, { "input": "incorruptibility", "output": "⠔⠉⠕⠗⠗⠥â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "incorruptible", "output": "⠔⠉⠕⠗⠗⠥â â žâ Šâ ƒâ ‡â ‘" }, { "input": "increase", "output": "⠔⠉⠗⠂⠎⠑" }, { "input": "increased", "output": "⠔⠉⠗⠂⠎⠫" }, { "input": "increases", "output": "⠔⠉⠗⠂⠎⠑⠎" }, { "input": "increasing", "output": "⠔⠉⠗⠂⠎⠬" }, { "input": "increasingly", "output": "⠔⠉⠗⠂⠎⠬⠇⠽" }, { "input": "incredibility", "output": "⠔⠉⠗⠫⠊⠃⠊⠇⠰⠽" }, { "input": "incredible", "output": "⠔⠉⠗⠫⠊⠃⠇⠑" }, { "input": "incredibly", "output": "⠔⠉⠗⠫⠊⠃⠇⠽" }, { "input": "incredulity", "output": "⠔⠉⠗⠫⠥⠇⠰⠽" }, { "input": "incredulous", "output": "⠔⠉⠗⠫⠥⠇⠳⠎" }, { "input": "incredulously", "output": "⠔⠉⠗⠫⠥⠇⠳⠎⠇⠽" }, { "input": "increment", "output": "⠔⠉⠗⠑⠰⠞" }, { "input": "incremental", "output": "⠔⠉⠗⠑⠰⠞â â ‡" }, { "input": "incremented", "output": "⠔⠉⠗⠑⠰⠞⠫" }, { "input": "increments", "output": "⠔⠉⠗⠑⠰⠞⠎" }, { "input": "incriminate", "output": "⠔⠉⠗⠊â â ”â â žâ ‘" }, { "input": "incriminated", "output": "⠔⠉⠗⠊â â ”â â žâ «" }, { "input": "incriminates", "output": "⠔⠉⠗⠊â â ”â â žâ ‘â Ž" }, { "input": "incriminating", "output": "⠔⠉⠗⠊â â ”â â žâ ¬" }, { "input": "incrimination", "output": "⠔⠉⠗⠊â â ”â â °â " }, { "input": "incriminatory", "output": "⠔⠉⠗⠊â â ”â â žâ •â —â ½" }, { "input": "incrust", "output": "⠔⠉⠗⠥⠌" }, { "input": "incrustation", "output": "⠔⠉⠗⠥⠌â â °â " }, { "input": "incrustations", "output": "⠔⠉⠗⠥⠌â â °â â Ž" }, { "input": "incrusted", "output": "⠔⠉⠗⠥⠌⠫" }, { "input": "incrusting", "output": "⠔⠉⠗⠥⠌⠬" }, { "input": "incrusts", "output": "⠔⠉⠗⠥⠌⠎" }, { "input": "incubate", "output": "⠔⠉⠥⠃â â žâ ‘" }, { "input": "incubated", "output": "⠔⠉⠥⠃â â žâ «" }, { "input": "incubates", "output": "⠔⠉⠥⠃â â žâ ‘â Ž" }, { "input": "incubating", "output": "⠔⠉⠥⠃â â žâ ¬" }, { "input": "incubation", "output": "⠔⠉⠥⠃â â °â " }, { "input": "incubator", "output": "⠔⠉⠥⠃â â žâ •â —" }, { "input": "incubators", "output": "⠔⠉⠥⠃â â žâ •â —â Ž" }, { "input": "incubi", "output": "⠔⠉⠥⠃⠊" }, { "input": "incubus", "output": "⠔⠉⠥⠃⠥⠎" }, { "input": "incubuses", "output": "⠔⠉⠥⠃⠥⠎⠑⠎" }, { "input": "inculcate", "output": "⠔⠉⠥⠇⠉â â žâ ‘" }, { "input": "inculcated", "output": "⠔⠉⠥⠇⠉â â žâ «" }, { "input": "inculcates", "output": "⠔⠉⠥⠇⠉â â žâ ‘â Ž" }, { "input": "inculcating", "output": "⠔⠉⠥⠇⠉â â žâ ¬" }, { "input": "inculcation", "output": "⠔⠉⠥⠇⠉â â °â " }, { "input": "inculpate", "output": "⠔⠉⠥⠇â â â žâ ‘" }, { "input": "inculpated", "output": "⠔⠉⠥⠇â â â žâ «" }, { "input": "inculpates", "output": "⠔⠉⠥⠇â â â žâ ‘â Ž" }, { "input": "inculpating", "output": "⠔⠉⠥⠇â â â žâ ¬" }, { "input": "incumbencies", "output": "⠔⠉⠥â â ƒâ ¢â ‰â Šâ ‘â Ž" }, { "input": "incumbency", "output": "⠔⠉⠥â â ƒâ ¢â ‰â ½" }, { "input": "incumbent", "output": "⠔⠉⠥â â ƒâ ¢â ž" }, { "input": "incumbents", "output": "⠔⠉⠥â â ƒâ ¢â žâ Ž" }, { "input": "incur", "output": "⠔⠉⠥⠗" }, { "input": "incurable", "output": "⠔⠉⠥⠗â â ƒâ ‡â ‘" }, { "input": "incurables", "output": "⠔⠉⠥⠗â â ƒâ ‡â ‘â Ž" }, { "input": "incurably", "output": "⠔⠉⠥⠗â â ƒâ ‡â ½" }, { "input": "incurious", "output": "⠔⠉⠥⠗⠊⠳⠎" }, { "input": "incurred", "output": "⠔⠉⠥⠗⠗⠫" }, { "input": "incurring", "output": "⠔⠉⠥⠗⠗⠬" }, { "input": "incurs", "output": "⠔⠉⠥⠗⠎" }, { "input": "incursion", "output": "⠔⠉⠥⠗⠨â " }, { "input": "incursions", "output": "⠔⠉⠥⠗⠨â â Ž" }, { "input": "indebted", "output": "⠔⠙⠑⠃⠞⠫" }, { "input": "indebtedness", "output": "⠔⠙⠑⠃⠞⠫⠰⠎" }, { "input": "indecencies", "output": "⠔⠙⠑⠉⠢⠉⠊⠑⠎" }, { "input": "indecency", "output": "⠔⠙⠑⠉⠢⠉⠽" }, { "input": "indecent", "output": "⠔⠙⠑⠉⠢⠞" }, { "input": "indecently", "output": "⠔⠙⠑⠉⠢⠞⠇⠽" }, { "input": "indecipherable", "output": "⠔⠙⠑⠉⠊â â “â »â â ƒâ ‡â ‘" }, { "input": "indecision", "output": "⠔⠙⠑⠉⠊⠨â " }, { "input": "indecisive", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑" }, { "input": "indecisively", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑⠇⠽" }, { "input": "indecisiveness", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑⠰⠎" }, { "input": "indecorous", "output": "⠔⠙⠑⠉⠕⠗⠳⠎" }, { "input": "indeed", "output": "⠔⠙⠑⠫" }, { "input": "indefatigable", "output": "⠔⠙⠑⠋â â žâ Šâ ›â â ƒâ ‡â ‘" }, { "input": "indefatigably", "output": "⠔⠙⠑⠋â â žâ Šâ ›â â ƒâ ‡â ½" }, { "input": "indefensible", "output": "⠔⠙⠑⠋⠢⠎⠊⠃⠇⠑" }, { "input": "indefensibly", "output": "⠔⠙⠑⠋⠢⠎⠊⠃⠇⠽" }, { "input": "indefinable", "output": "⠔⠙⠑⠋⠔â â ƒâ ‡â ‘" }, { "input": "indefinably", "output": "⠔⠙⠑⠋⠔â â ƒâ ‡â ½" }, { "input": "indefinite", "output": "⠔⠙⠑⠋⠔⠊⠞⠑" }, { "input": "indefinitely", "output": "⠔⠙⠑⠋⠔⠊⠞⠑⠇⠽" }, { "input": "indelible", "output": "⠔⠙⠑⠇⠊⠃⠇⠑" }, { "input": "indelibly", "output": "⠔⠙⠑⠇⠊⠃⠇⠽" }, { "input": "indelicacies", "output": "⠔⠙⠑⠇⠊⠉â â ‰â Šâ ‘â Ž" }, { "input": "indelicacy", "output": "⠔⠙⠑⠇⠊⠉â â ‰â ½" }, { "input": "indelicate", "output": "⠔⠙⠑⠇⠊⠉â â žâ ‘" }, { "input": "indelicately", "output": "⠔⠙⠑⠇⠊⠉â â žâ ‘⠇⠽" }, { "input": "indemnification", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‰â â °â " }, { "input": "indemnifications", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "indemnified", "output": "⠔⠙⠑â â â Šâ ‹â Šâ «" }, { "input": "indemnifies", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "indemnify", "output": "⠔⠙⠑â â â Šâ ‹â ½" }, { "input": "indemnifying", "output": "⠔⠙⠑â â â Šâ ‹â ½â ¬" }, { "input": "indemnities", "output": "⠔⠙⠑â â â Šâ žâ Šâ ‘â Ž" }, { "input": "indemnity", "output": "⠔⠙⠑â â â °â ½" }, { "input": "indent", "output": "⠔⠙⠢⠞" }, { "input": "indentation", "output": "⠔⠙⠢⠞â â °â " }, { "input": "indentations", "output": "⠔⠙⠢⠞â â °â â Ž" }, { "input": "indented", "output": "⠔⠙⠢⠞⠫" }, { "input": "indenting", "output": "⠔⠙⠢⠞⠬" }, { "input": "indents", "output": "⠔⠙⠢⠞⠎" }, { "input": "indenture", "output": "⠔⠙⠢⠞⠥⠗⠑" }, { "input": "indentured", "output": "⠔⠙⠢⠞⠥⠗⠫" }, { "input": "indentures", "output": "⠔⠙⠢⠞⠥⠗⠑⠎" }, { "input": "indenturing", "output": "⠔⠙⠢⠞⠥⠗⠬" }, { "input": "independence", "output": "⠔⠙⠑â â ¢â ™â °â ‘" }, { "input": "independent", "output": "⠔⠙⠑â â ¢â ™â ¢â ž" }, { "input": "independently", "output": "⠔⠙⠑â â ¢â ™â ¢â žâ ‡â ½" }, { "input": "independents", "output": "⠔⠙⠑â â ¢â ™â ¢â žâ Ž" }, { "input": "indescribable", "output": "⠔⠙⠑⠎⠉⠗⠊⠃â â ƒâ ‡â ‘" }, { "input": "indescribably", "output": "⠔⠙⠑⠎⠉⠗⠊⠃â â ƒâ ‡â ½" }, { "input": "indestructible", "output": "⠔⠙⠑⠌⠗⠥⠉⠞⠊⠃⠇⠑" }, { "input": "indestructibly", "output": "⠔⠙⠑⠌⠗⠥⠉⠞⠊⠃⠇⠽" }, { "input": "indeterminable", "output": "⠔⠙⠑⠞⠻â â ”â â ƒâ ‡â ‘" }, { "input": "indeterminacy", "output": "⠔⠙⠑⠞⠻â â ”â â ‰â ½" }, { "input": "indeterminate", "output": "⠔⠙⠑⠞⠻â â ”â â žâ ‘" }, { "input": "indeterminately", "output": "⠔⠙⠑⠞⠻â â ”â â žâ ‘⠇⠽" }, { "input": "index", "output": "⠔⠙⠑⠭" }, { "input": "indexed", "output": "⠔⠙⠑⠭⠫" }, { "input": "indexes", "output": "⠔⠙⠑⠭⠑⠎" }, { "input": "indexing", "output": "⠔⠙⠑⠭⠬" }, { "input": "indicate", "output": "⠔⠙⠊⠉â â žâ ‘" }, { "input": "indicated", "output": "⠔⠙⠊⠉â â žâ «" }, { "input": "indicates", "output": "⠔⠙⠊⠉â â žâ ‘â Ž" }, { "input": "indicating", "output": "⠔⠙⠊⠉â â žâ ¬" }, { "input": "indication", "output": "⠔⠙⠊⠉â â °â " }, { "input": "indications", "output": "⠔⠙⠊⠉â â °â â Ž" }, { "input": "indicative", "output": "⠔⠙⠊⠉â â žâ Šâ §â ‘" }, { "input": "indicatives", "output": "⠔⠙⠊⠉â â žâ Šâ §â ‘â Ž" }, { "input": "indicator", "output": "⠔⠙⠊⠉â â žâ •â —" }, { "input": "indicators", "output": "⠔⠙⠊⠉â â žâ •â —â Ž" }, { "input": "indices", "output": "⠔⠙⠊⠉⠑⠎" }, { "input": "indict", "output": "⠔⠙⠊⠉⠞" }, { "input": "indictable", "output": "⠔⠙⠊⠉⠞â â ƒâ ‡â ‘" }, { "input": "indicted", "output": "⠔⠙⠊⠉⠞⠫" }, { "input": "indicting", "output": "⠔⠙⠊⠉⠞⠬" }, { "input": "indictment", "output": "⠔⠙⠊⠉⠞⠰⠞" }, { "input": "indictments", "output": "⠔⠙⠊⠉⠞⠰⠞⠎" }, { "input": "indicts", "output": "⠔⠙⠊⠉⠞⠎" }, { "input": "indifference", "output": "⠔⠙⠊⠖⠻⠰⠑" }, { "input": "indifferent", "output": "⠔⠙⠊⠖⠻⠢⠞" }, { "input": "indifferently", "output": "⠔⠙⠊⠖⠻⠢⠞⠇⠽" }, { "input": "indigence", "output": "⠔⠙⠊⠛⠰⠑" }, { "input": "indigenous", "output": "⠔⠙⠊⠛⠢⠳⠎" }, { "input": "indigent", "output": "⠔⠙⠊⠛⠢⠞" }, { "input": "indigents", "output": "⠔⠙⠊⠛⠢⠞⠎" }, { "input": "indigestible", "output": "⠔⠙⠊⠛⠑⠌⠊⠃⠇⠑" }, { "input": "indigestion", "output": "⠔⠙⠊⠛⠑⠎⠰â " }, { "input": "indignant", "output": "⠔⠙⠊⠛â â â â ž" }, { "input": "indignantly", "output": "⠔⠙⠊⠛â â â â žâ ‡â ½" }, { "input": "indignation", "output": "⠔⠙⠊⠛â â â °â " }, { "input": "indignities", "output": "⠔⠙⠊⠛â â Šâ žâ Šâ ‘â Ž" }, { "input": "indignity", "output": "⠔⠙⠊⠛â â °â ½" }, { "input": "indigo", "output": "⠔⠙⠊⠛⠕" }, { "input": "indirect", "output": "⠔⠙⠊⠗⠑⠉⠞" }, { "input": "indirection", "output": "⠔⠙⠊⠗⠑⠉⠰â " }, { "input": "indirectly", "output": "⠔⠙⠊⠗⠑⠉⠞⠇⠽" }, { "input": "indirectness", "output": "⠔⠙⠊⠗⠑⠉⠞⠰⠎" }, { "input": "indiscernible", "output": "⠔⠙⠊⠎⠉⠻â â Šâ ƒâ ‡â ‘" }, { "input": "indiscreet", "output": "⠔⠙⠊⠎⠉⠗⠑⠑⠞" }, { "input": "indiscreetly", "output": "⠔⠙⠊⠎⠉⠗⠑⠑⠞⠇⠽" }, { "input": "indiscretion", "output": "⠔⠙⠊⠎⠉⠗⠑⠰â " }, { "input": "indiscretions", "output": "⠔⠙⠊⠎⠉⠗⠑⠰â â Ž" }, { "input": "indiscriminate", "output": "⠔⠙⠊⠎⠉⠗⠊â â ”â â žâ ‘" }, { "input": "indiscriminately", "output": "⠔⠙⠊⠎⠉⠗⠊â â ”â â žâ ‘⠇⠽" }, { "input": "indispensable", "output": "⠔⠙⠊⠎â â ¢â Žâ â ƒâ ‡â ‘" }, { "input": "indispensables", "output": "⠔⠙⠊⠎â â ¢â Žâ â ƒâ ‡â ‘â Ž" }, { "input": "indispensably", "output": "⠔⠙⠊⠎â â ¢â Žâ â ƒâ ‡â ½" }, { "input": "indisposed", "output": "⠔⠙⠊⠎â â •â Žâ «" }, { "input": "indisposition", "output": "⠔⠙⠊⠎â â •â Žâ Šâ °â " }, { "input": "indispositions", "output": "⠔⠙⠊⠎â â •â Žâ Šâ °â â Ž" }, { "input": "indisputable", "output": "⠔⠙⠊⠎â â ¥â žâ â ƒâ ‡â ‘" }, { "input": "indisputably", "output": "⠔⠙⠊⠎â â ¥â žâ â ƒâ ‡â ½" }, { "input": "indissoluble", "output": "⠔⠙⠊⠎⠎⠕⠇⠥⠃⠇⠑" }, { "input": "indistinct", "output": "⠔⠙⠊⠌⠔⠉⠞" }, { "input": "indistinctly", "output": "⠔⠙⠊⠌⠔⠉⠞⠇⠽" }, { "input": "indistinctness", "output": "⠔⠙⠊⠌⠔⠉⠞⠰⠎" }, { "input": "indistinguishable", "output": "⠔⠙⠊⠌⠬⠥⠊⠩â â ƒâ ‡â ‘" }, { "input": "individual", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡" }, { "input": "individualism", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Žâ " }, { "input": "individualist", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œ" }, { "input": "individualistic", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œâ Šâ ‰" }, { "input": "individualists", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œâ Ž" }, { "input": "individuality", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â °â ½" }, { "input": "individualize", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ ‘" }, { "input": "individualized", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ «" }, { "input": "individualizes", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ ‘â Ž" }, { "input": "individualizing", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ ¬" }, { "input": "individually", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â ‡â ½" }, { "input": "individuals", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Ž" }, { "input": "indivisibility", "output": "⠔⠙⠊⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "indivisible", "output": "⠔⠙⠊⠧⠊⠎⠊⠃⠇⠑" }, { "input": "indivisibly", "output": "⠔⠙⠊⠧⠊⠎⠊⠃⠇⠽" }, { "input": "indoctrinate", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ ‘" }, { "input": "indoctrinated", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ «" }, { "input": "indoctrinates", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ ‘â Ž" }, { "input": "indoctrinating", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ ¬" }, { "input": "indoctrination", "output": "⠔⠙⠕⠉⠞⠗⠔â â °â " }, { "input": "indolence", "output": "⠔⠙⠕⠇⠰⠑" }, { "input": "indolent", "output": "⠔⠙⠕⠇⠢⠞" }, { "input": "indolently", "output": "⠔⠙⠕⠇⠢⠞⠇⠽" }, { "input": "indomitable", "output": "⠔⠙⠕â â Šâ žâ â ƒâ ‡â ‘" }, { "input": "indomitably", "output": "⠔⠙⠕â â Šâ žâ â ƒâ ‡â ½" }, { "input": "indoor", "output": "⠔⠙⠕⠕⠗" }, { "input": "indoors", "output": "⠔⠙⠕⠕⠗⠎" }, { "input": "indorse", "output": "⠔⠙⠕⠗⠎⠑" }, { "input": "indorsed", "output": "⠔⠙⠕⠗⠎⠫" }, { "input": "indorsement", "output": "⠔⠙⠕⠗⠎⠑⠰⠞" }, { "input": "indorsements", "output": "⠔⠙⠕⠗⠎⠑⠰⠞⠎" }, { "input": "indorses", "output": "⠔⠙⠕⠗⠎⠑⠎" }, { "input": "indorsing", "output": "⠔⠙⠕⠗⠎⠬" }, { "input": "indubitable", "output": "⠔⠙⠥⠃⠊⠞â â ƒâ ‡â ‘" }, { "input": "indubitably", "output": "⠔⠙⠥⠃⠊⠞â â ƒâ ‡â ½" }, { "input": "induce", "output": "⠔⠙⠥⠉⠑" }, { "input": "induced", "output": "⠔⠙⠥⠉⠫" }, { "input": "inducement", "output": "⠔⠙⠥⠉⠑⠰⠞" }, { "input": "inducements", "output": "⠔⠙⠥⠉⠑⠰⠞⠎" }, { "input": "induces", "output": "⠔⠙⠥⠉⠑⠎" }, { "input": "inducing", "output": "⠔⠙⠥⠉⠬" }, { "input": "induct", "output": "⠔⠙⠥⠉⠞" }, { "input": "inductance", "output": "⠔⠙⠥⠉⠞⠨⠑" }, { "input": "inducted", "output": "⠔⠙⠥⠉⠞⠫" }, { "input": "inductee", "output": "⠔⠙⠥⠉⠞⠑⠑" }, { "input": "inductees", "output": "⠔⠙⠥⠉⠞⠑⠑⠎" }, { "input": "inducting", "output": "⠔⠙⠥⠉⠞⠬" }, { "input": "induction", "output": "⠔⠙⠥⠉⠰â " }, { "input": "inductions", "output": "⠔⠙⠥⠉⠰â â Ž" }, { "input": "inductive", "output": "⠔⠙⠥⠉⠞⠊⠧⠑" }, { "input": "inducts", "output": "⠔⠙⠥⠉⠞⠎" }, { "input": "indue", "output": "⠔⠙⠥⠑" }, { "input": "indued", "output": "⠔⠙⠥⠫" }, { "input": "indues", "output": "⠔⠙⠥⠑⠎" }, { "input": "induing", "output": "⠔⠙⠥⠬" }, { "input": "indulge", "output": "⠔⠙⠥⠇⠛⠑" }, { "input": "indulged", "output": "⠔⠙⠥⠇⠛⠫" }, { "input": "indulgence", "output": "⠔⠙⠥⠇⠛⠰⠑" }, { "input": "indulgences", "output": "⠔⠙⠥⠇⠛⠰⠑⠎" }, { "input": "indulgent", "output": "⠔⠙⠥⠇⠛⠢⠞" }, { "input": "indulgently", "output": "⠔⠙⠥⠇⠛⠢⠞⠇⠽" }, { "input": "indulges", "output": "⠔⠙⠥⠇⠛⠑⠎" }, { "input": "indulging", "output": "⠔⠙⠥⠇⠛⠬" }, { "input": "industrial", "output": "⠔⠙⠥⠌⠗⠊â â ‡" }, { "input": "industrialism", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Žâ " }, { "input": "industrialist", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Œ" }, { "input": "industrialists", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Œâ Ž" }, { "input": "industrialization", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ â °â " }, { "input": "industrialize", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ ‘" }, { "input": "industrialized", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ «" }, { "input": "industrializes", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "industrializing", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ ¬" }, { "input": "industrially", "output": "⠔⠙⠥⠌⠗⠊â â ‡â ‡â ½" }, { "input": "industries", "output": "⠔⠙⠥⠌⠗⠊⠑⠎" }, { "input": "industrious", "output": "⠔⠙⠥⠌⠗⠊⠳⠎" }, { "input": "industriously", "output": "⠔⠙⠥⠌⠗⠊⠳⠎⠇⠽" }, { "input": "industriousness", "output": "⠔⠙⠥⠌⠗⠊⠳⠎⠰⠎" }, { "input": "industry", "output": "⠔⠙⠥⠌⠗⠽" }, { "input": "inebriate", "output": "⠔⠑⠃⠗⠊â â žâ ‘" }, { "input": "inebriated", "output": "⠔⠑⠃⠗⠊â â žâ «" }, { "input": "inebriates", "output": "⠔⠑⠃⠗⠊â â žâ ‘â Ž" }, { "input": "inebriating", "output": "⠔⠑⠃⠗⠊â â žâ ¬" }, { "input": "inebriation", "output": "⠔⠑⠃⠗⠊â â °â " }, { "input": "inedible", "output": "⠔⠫⠊⠃⠇⠑" }, { "input": "ineducable", "output": "⠔⠫⠥⠉â â ƒâ ‡â ‘" }, { "input": "ineffable", "output": "⠔⠑⠖â â ƒâ ‡â ‘" }, { "input": "ineffably", "output": "⠔⠑⠖â â ƒâ ‡â ½" }, { "input": "ineffective", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑" }, { "input": "ineffectively", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "ineffectiveness", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "ineffectual", "output": "⠔⠑⠖⠑⠉⠞⠥â â ‡" }, { "input": "ineffectually", "output": "⠔⠑⠖⠑⠉⠞⠥â â ‡â ‡â ½" }, { "input": "inefficiencies", "output": "⠔⠑⠖⠊⠉⠊⠢⠉⠊⠑⠎" }, { "input": "inefficiency", "output": "⠔⠑⠖⠊⠉⠊⠢⠉⠽" }, { "input": "inefficient", "output": "⠔⠑⠖⠊⠉⠊⠢⠞" }, { "input": "inefficiently", "output": "⠔⠑⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "inelastic", "output": "⠔⠑⠇â â Œâ Šâ ‰" }, { "input": "inelegance", "output": "⠔⠑⠇⠑⠛⠨⠑" }, { "input": "inelegant", "output": "⠔⠑⠇⠑⠛â â â ž" }, { "input": "inelegantly", "output": "⠔⠑⠇⠑⠛â â â žâ ‡â ½" }, { "input": "ineligibility", "output": "⠔⠑⠇⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "ineligible", "output": "⠔⠑⠇⠊⠛⠊⠃⠇⠑" }, { "input": "ineligibles", "output": "⠔⠑⠇⠊⠛⠊⠃⠇⠑⠎" }, { "input": "ineluctable", "output": "⠔⠑⠇⠥⠉⠞â â ƒâ ‡â ‘" }, { "input": "ineluctably", "output": "⠔⠑⠇⠥⠉⠞â â ƒâ ‡â ½" }, { "input": "inept", "output": "⠔⠑â â ž" }, { "input": "ineptitude", "output": "⠔⠑â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "ineptly", "output": "⠔⠑â â žâ ‡â ½" }, { "input": "ineptness", "output": "⠔⠑â â žâ °â Ž" }, { "input": "inequalities", "output": "⠔⠑⠟⠥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "inequality", "output": "⠔⠑⠟⠥â â ‡â °â ½" }, { "input": "inequitable", "output": "⠔⠑⠟⠥⠊⠞â â ƒâ ‡â ‘" }, { "input": "inequities", "output": "⠔⠑⠟⠥⠊⠞⠊⠑⠎" }, { "input": "inequity", "output": "⠔⠑⠟⠥⠰⠽" }, { "input": "inert", "output": "⠔⠻⠞" }, { "input": "inertia", "output": "⠔⠻⠞⠊â " }, { "input": "inertial", "output": "⠔⠻⠞⠊â â ‡" }, { "input": "inertly", "output": "⠔⠻⠞⠇⠽" }, { "input": "inertness", "output": "⠔⠻⠞⠰⠎" }, { "input": "inescapable", "output": "⠔⠑⠎⠉â â â â ƒâ ‡â ‘" }, { "input": "inescapably", "output": "⠔⠑⠎⠉â â â â ƒâ ‡â ½" }, { "input": "inessential", "output": "⠔⠑⠎⠎⠢⠞⠊â â ‡" }, { "input": "inessentials", "output": "⠔⠑⠎⠎⠢⠞⠊â â ‡â Ž" }, { "input": "inestimable", "output": "⠔⠑⠌⠊â â â ƒâ ‡â ‘" }, { "input": "inestimably", "output": "⠔⠑⠌⠊â â â ƒâ ‡â ½" }, { "input": "inevitability", "output": "⠔⠑⠧⠊⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "inevitable", "output": "⠔⠑⠧⠊⠞â â ƒâ ‡â ‘" }, { "input": "inevitably", "output": "⠔⠑⠧⠊⠞â â ƒâ ‡â ½" }, { "input": "inexact", "output": "⠔⠑⠭â â ‰â ž" }, { "input": "inexcusable", "output": "⠔⠑⠭⠉⠥⠎â â ƒâ ‡â ‘" }, { "input": "inexcusably", "output": "⠔⠑⠭⠉⠥⠎â â ƒâ ‡â ½" }, { "input": "inexhaustible", "output": "⠔⠑⠭⠓â â ¥â Œâ Šâ ƒâ ‡â ‘" }, { "input": "inexhaustibly", "output": "⠔⠑⠭⠓â â ¥â Œâ Šâ ƒâ ‡â ½" }, { "input": "inexorable", "output": "⠔⠑⠭⠕⠗â â ƒâ ‡â ‘" }, { "input": "inexorably", "output": "⠔⠑⠭⠕⠗â â ƒâ ‡â ½" }, { "input": "inexpedient", "output": "⠔⠑⠭â â «â Šâ ¢â ž" }, { "input": "inexpensive", "output": "⠔⠑⠭â â ¢â Žâ Šâ §â ‘" }, { "input": "inexpensively", "output": "⠔⠑⠭â â ¢â Žâ Šâ §â ‘⠇⠽" }, { "input": "inexperience", "output": "⠔⠑⠭â â »â Šâ °â ‘" }, { "input": "inexperienced", "output": "⠔⠑⠭â â »â Šâ °â ‘â ™" }, { "input": "inexpert", "output": "⠔⠑⠭â â »â ž" }, { "input": "inexplicable", "output": "⠔⠑⠭â â ‡â Šâ ‰â â ƒâ ‡â ‘" }, { "input": "inexplicably", "output": "⠔⠑⠭â â ‡â Šâ ‰â â ƒâ ‡â ½" }, { "input": "inexpressible", "output": "⠔⠑⠭â â —⠑⠎⠎⠊⠃⠇⠑" }, { "input": "inextinguishable", "output": "⠔⠑⠭⠞⠬⠥⠊⠩â â ƒâ ‡â ‘" }, { "input": "inextricable", "output": "⠔⠑⠭⠞⠗⠊⠉â â ƒâ ‡â ‘" }, { "input": "inextricably", "output": "⠔⠑⠭⠞⠗⠊⠉â â ƒâ ‡â ½" }, { "input": "infallibility", "output": "⠔⠋â â ‡â ‡â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "infallible", "output": "⠔⠋â â ‡â ‡â Šâ ƒâ ‡â ‘" }, { "input": "infallibly", "output": "⠔⠋â â ‡â ‡â Šâ ƒâ ‡â ½" }, { "input": "infamies", "output": "⠔⠋â â â Šâ ‘â Ž" }, { "input": "infamous", "output": "⠔⠋â â â ³â Ž" }, { "input": "infamously", "output": "⠔⠋â â â ³â Žâ ‡â ½" }, { "input": "infamy", "output": "⠔⠋â â â ½" }, { "input": "infancy", "output": "⠔⠋â â â ‰â ½" }, { "input": "infant", "output": "⠔⠋â â â ž" }, { "input": "infanticide", "output": "⠔⠋â â â žâ Šâ ‰â Šâ ™â ‘" }, { "input": "infanticides", "output": "⠔⠋â â â žâ Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "infantile", "output": "⠔⠋â â â žâ Šâ ‡â ‘" }, { "input": "infantries", "output": "⠔⠋â â â žâ —â Šâ ‘â Ž" }, { "input": "infantry", "output": "⠔⠋â â â žâ —â ½" }, { "input": "infantryman", "output": "⠔⠋â â â žâ —â ½â â â " }, { "input": "infantrymen", "output": "⠔⠋â â â žâ —â ½â â ¢" }, { "input": "infants", "output": "⠔⠋â â â žâ Ž" }, { "input": "infarction", "output": "⠔⠋⠜⠉⠰â " }, { "input": "infatuate", "output": "⠔⠋â â žâ ¥â â žâ ‘" }, { "input": "infatuated", "output": "⠔⠋â â žâ ¥â â žâ «" }, { "input": "infatuates", "output": "⠔⠋â â žâ ¥â â žâ ‘â Ž" }, { "input": "infatuating", "output": "⠔⠋â â žâ ¥â â žâ ¬" }, { "input": "infatuation", "output": "⠔⠋â â žâ ¥â â °â " }, { "input": "infatuations", "output": "⠔⠋â â žâ ¥â â °â â Ž" }, { "input": "infect", "output": "⠔⠋⠑⠉⠞" }, { "input": "infected", "output": "⠔⠋⠑⠉⠞⠫" }, { "input": "infecting", "output": "⠔⠋⠑⠉⠞⠬" }, { "input": "infection", "output": "⠔⠋⠑⠉⠰â " }, { "input": "infections", "output": "⠔⠋⠑⠉⠰â â Ž" }, { "input": "infectious", "output": "⠔⠋⠑⠉⠞⠊⠳⠎" }, { "input": "infectiously", "output": "⠔⠋⠑⠉⠞⠊⠳⠎⠇⠽" }, { "input": "infectiousness", "output": "⠔⠋⠑⠉⠞⠊⠳⠎⠰⠎" }, { "input": "infects", "output": "⠔⠋⠑⠉⠞⠎" }, { "input": "infelicities", "output": "⠔⠋⠑⠇⠊⠉⠊⠞⠊⠑⠎" }, { "input": "infelicitous", "output": "⠔⠋⠑⠇⠊⠉⠊⠞⠳⠎" }, { "input": "infelicity", "output": "⠔⠋⠑⠇⠊⠉⠰⠽" }, { "input": "infer", "output": "⠔⠋⠻" }, { "input": "inference", "output": "⠔⠋⠻⠰⠑" }, { "input": "inferences", "output": "⠔⠋⠻⠰⠑⠎" }, { "input": "inferential", "output": "⠔⠋⠻⠢⠞⠊â â ‡" }, { "input": "inferior", "output": "⠔⠋⠻⠊⠕⠗" }, { "input": "inferiority", "output": "⠔⠋⠻⠊⠕⠗⠰⠽" }, { "input": "inferiors", "output": "⠔⠋⠻⠊⠕⠗⠎" }, { "input": "infernal", "output": "⠔⠋⠻â â â ‡" }, { "input": "inferno", "output": "⠔⠋⠻â â •" }, { "input": "infernos", "output": "⠔⠋⠻â â •â Ž" }, { "input": "inferred", "output": "⠔⠋⠻⠗⠫" }, { "input": "inferring", "output": "⠔⠋⠻⠗⠬" }, { "input": "infers", "output": "⠔⠋⠻⠎" }, { "input": "infertile", "output": "⠔⠋⠻⠞⠊⠇⠑" }, { "input": "infertility", "output": "⠔⠋⠻⠞⠊⠇⠰⠽" }, { "input": "infest", "output": "⠔⠋⠑⠌" }, { "input": "infestation", "output": "⠔⠋⠑⠌â â °â " }, { "input": "infestations", "output": "⠔⠋⠑⠌â â °â â Ž" }, { "input": "infested", "output": "⠔⠋⠑⠌⠫" }, { "input": "infesting", "output": "⠔⠋⠑⠌⠬" }, { "input": "infests", "output": "⠔⠋⠑⠌⠎" }, { "input": "infidel", "output": "⠔⠋⠊⠙⠑⠇" }, { "input": "infidelities", "output": "⠔⠋⠊⠙⠑⠇⠊⠞⠊⠑⠎" }, { "input": "infidelity", "output": "⠔⠋⠊⠙⠑⠇⠰⠽" }, { "input": "infidels", "output": "⠔⠋⠊⠙⠑⠇⠎" }, { "input": "infield", "output": "⠔⠋⠊⠑⠇⠙" }, { "input": "infielder", "output": "⠔⠋⠊⠑⠇⠙⠻" }, { "input": "infielders", "output": "⠔⠋⠊⠑⠇⠙⠻⠎" }, { "input": "infields", "output": "⠔⠋⠊⠑⠇⠙⠎" }, { "input": "infighting", "output": "⠔⠋⠊⠣⠞⠬" }, { "input": "infiltrate", "output": "⠔⠋⠊⠇⠞⠗â â žâ ‘" }, { "input": "infiltrated", "output": "⠔⠋⠊⠇⠞⠗â â žâ «" }, { "input": "infiltrates", "output": "⠔⠋⠊⠇⠞⠗â â žâ ‘â Ž" }, { "input": "infiltrating", "output": "⠔⠋⠊⠇⠞⠗â â žâ ¬" }, { "input": "infiltration", "output": "⠔⠋⠊⠇⠞⠗â â °â " }, { "input": "infiltrator", "output": "⠔⠋⠊⠇⠞⠗â â žâ •â —" }, { "input": "infiltrators", "output": "⠔⠋⠊⠇⠞⠗â â žâ •â —â Ž" }, { "input": "infinite", "output": "⠔⠋⠔⠊⠞⠑" }, { "input": "infinitely", "output": "⠔⠋⠔⠊⠞⠑⠇⠽" }, { "input": "infinitesimal", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â â ‡" }, { "input": "infinitesimally", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â â ‡â ‡â ½" }, { "input": "infinitesimals", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â â ‡â Ž" }, { "input": "infinities", "output": "⠔⠋⠔⠊⠞⠊⠑⠎" }, { "input": "infinitive", "output": "⠔⠋⠔⠊⠞⠊⠧⠑" }, { "input": "infinitives", "output": "⠔⠋⠔⠊⠞⠊⠧⠑⠎" }, { "input": "infinitude", "output": "⠔⠋⠔⠊⠞⠥⠙⠑" }, { "input": "infinity", "output": "⠔⠋⠔⠰⠽" }, { "input": "infirm", "output": "⠔⠋⠊⠗â " }, { "input": "infirmaries", "output": "⠔⠋⠊⠗â â œâ Šâ ‘â Ž" }, { "input": "infirmary", "output": "⠔⠋⠊⠗â â œâ ½" }, { "input": "infirmities", "output": "⠔⠋⠊⠗â â Šâ žâ Šâ ‘â Ž" }, { "input": "infirmity", "output": "⠔⠋⠊⠗â â °â ½" }, { "input": "infix", "output": "⠔⠋⠊⠭" }, { "input": "inflame", "output": "⠔⠋⠇â â â ‘" }, { "input": "inflamed", "output": "⠔⠋⠇â â â «" }, { "input": "inflames", "output": "⠔⠋⠇â â â ‘â Ž" }, { "input": "inflaming", "output": "⠔⠋⠇â â â ¬" }, { "input": "inflammable", "output": "⠔⠋⠇â â â â â ƒâ ‡â ‘" }, { "input": "inflammation", "output": "⠔⠋⠇â â â â â °â " }, { "input": "inflammations", "output": "⠔⠋⠇â â â â â °â â Ž" }, { "input": "inflammatory", "output": "⠔⠋⠇â â â â â žâ •â —â ½" }, { "input": "inflatable", "output": "⠔⠋⠇â â žâ â ƒâ ‡â ‘" }, { "input": "inflatables", "output": "⠔⠋⠇â â žâ â ƒâ ‡â ‘â Ž" }, { "input": "inflate", "output": "⠔⠋⠇â â žâ ‘" }, { "input": "inflated", "output": "⠔⠋⠇â â žâ «" }, { "input": "inflates", "output": "⠔⠋⠇â â žâ ‘â Ž" }, { "input": "inflating", "output": "⠔⠋⠇â â žâ ¬" }, { "input": "inflation", "output": "⠔⠋⠇â â °â " }, { "input": "inflationary", "output": "⠔⠋⠇â â °â â œâ ½" }, { "input": "inflect", "output": "⠔⠋⠇⠑⠉⠞" }, { "input": "inflected", "output": "⠔⠋⠇⠑⠉⠞⠫" }, { "input": "inflecting", "output": "⠔⠋⠇⠑⠉⠞⠬" }, { "input": "inflection", "output": "⠔⠋⠇⠑⠉⠰â " }, { "input": "inflectional", "output": "⠔⠋⠇⠑⠉⠰â â â ‡" }, { "input": "inflections", "output": "⠔⠋⠇⠑⠉⠰â â Ž" }, { "input": "inflects", "output": "⠔⠋⠇⠑⠉⠞⠎" }, { "input": "inflexibility", "output": "⠔⠋⠇⠑⠭⠊⠃⠊⠇⠰⠽" }, { "input": "inflexible", "output": "⠔⠋⠇⠑⠭⠊⠃⠇⠑" }, { "input": "inflexibly", "output": "⠔⠋⠇⠑⠭⠊⠃⠇⠽" }, { "input": "inflict", "output": "⠔⠋⠇⠊⠉⠞" }, { "input": "inflicted", "output": "⠔⠋⠇⠊⠉⠞⠫" }, { "input": "inflicting", "output": "⠔⠋⠇⠊⠉⠞⠬" }, { "input": "infliction", "output": "⠔⠋⠇⠊⠉⠰â " }, { "input": "inflicts", "output": "⠔⠋⠇⠊⠉⠞⠎" }, { "input": "inflorescence", "output": "⠔⠋⠇⠕⠗⠑⠎⠉⠰⠑" }, { "input": "inflow", "output": "⠔⠋⠇⠪" }, { "input": "influence", "output": "⠔⠋⠇⠥⠰⠑" }, { "input": "influenced", "output": "⠔⠋⠇⠥⠰⠑⠙" }, { "input": "influences", "output": "⠔⠋⠇⠥⠰⠑⠎" }, { "input": "influencing", "output": "⠔⠋⠇⠥⠢⠉⠬" }, { "input": "influential", "output": "⠔⠋⠇⠥⠢⠞⠊â â ‡" }, { "input": "influentially", "output": "⠔⠋⠇⠥⠢⠞⠊â â ‡â ‡â ½" }, { "input": "influenza", "output": "⠔⠋⠇⠥⠢⠵â " }, { "input": "influx", "output": "⠔⠋⠇⠥⠭" }, { "input": "influxes", "output": "⠔⠋⠇⠥⠭⠑⠎" }, { "input": "info", "output": "⠔⠋⠕" }, { "input": "infomercial", "output": "⠔⠋⠕â â »â ‰â Šâ â ‡" }, { "input": "infomercials", "output": "⠔⠋⠕â â »â ‰â Šâ â ‡â Ž" }, { "input": "inform", "output": "⠔⠿â " }, { "input": "informal", "output": "⠔⠿â â â ‡" }, { "input": "informality", "output": "⠔⠿â â â ‡â °â ½" }, { "input": "informally", "output": "⠔⠿â â â ‡â ‡â ½" }, { "input": "informant", "output": "⠔⠿â â â â ž" }, { "input": "informants", "output": "⠔⠿â â â â žâ Ž" }, { "input": "information", "output": "⠔⠿â â â °â " }, { "input": "informational", "output": "⠔⠿â â â °â â â ‡" }, { "input": "informative", "output": "⠔⠿â â â žâ Šâ §â ‘" }, { "input": "informed", "output": "⠔⠿â â «" }, { "input": "informer", "output": "⠔⠿â â »" }, { "input": "informers", "output": "⠔⠿â â »â Ž" }, { "input": "informing", "output": "⠔⠿â â ¬" }, { "input": "informs", "output": "⠔⠿â â Ž" }, { "input": "infotainment", "output": "⠔⠋⠕⠞â â ”â °â ž" }, { "input": "infraction", "output": "⠔⠋⠗â â ‰â °â " }, { "input": "infractions", "output": "⠔⠋⠗â â ‰â °â â Ž" }, { "input": "infrared", "output": "⠔⠋⠗â â —â «" }, { "input": "infrastructure", "output": "⠔⠋⠗â â Œâ —⠥⠉⠞⠥⠗⠑" }, { "input": "infrastructures", "output": "⠔⠋⠗â â Œâ —⠥⠉⠞⠥⠗⠑⠎" }, { "input": "infrequency", "output": "⠔⠋⠗⠑⠟⠥⠢⠉⠽" }, { "input": "infrequent", "output": "⠔⠋⠗⠑⠟⠥⠢⠞" }, { "input": "infrequently", "output": "⠔⠋⠗⠑⠟⠥⠢⠞⠇⠽" }, { "input": "infringe", "output": "⠔⠋⠗⠬⠑" }, { "input": "infringed", "output": "⠔⠋⠗⠬⠫" }, { "input": "infringement", "output": "⠔⠋⠗⠬⠑⠰⠞" }, { "input": "infringements", "output": "⠔⠋⠗⠬⠑⠰⠞⠎" }, { "input": "infringes", "output": "⠔⠋⠗⠬⠑⠎" }, { "input": "infringing", "output": "⠔⠋⠗⠬⠬" }, { "input": "infuriate", "output": "⠔⠋⠥⠗⠊â â žâ ‘" }, { "input": "infuriated", "output": "⠔⠋⠥⠗⠊â â žâ «" }, { "input": "infuriates", "output": "⠔⠋⠥⠗⠊â â žâ ‘â Ž" }, { "input": "infuriating", "output": "⠔⠋⠥⠗⠊â â žâ ¬" }, { "input": "infuriatingly", "output": "⠔⠋⠥⠗⠊â â žâ ¬â ‡â ½" }, { "input": "infuse", "output": "⠔⠋⠥⠎⠑" }, { "input": "infused", "output": "⠔⠋⠥⠎⠫" }, { "input": "infuses", "output": "⠔⠋⠥⠎⠑⠎" }, { "input": "infusing", "output": "⠔⠋⠥⠎⠬" }, { "input": "infusion", "output": "⠔⠋⠥⠨â " }, { "input": "infusions", "output": "⠔⠋⠥⠨â â Ž" }, { "input": "ingenious", "output": "⠔⠛⠢⠊⠳⠎" }, { "input": "ingeniously", "output": "⠔⠛⠢⠊⠳⠎⠇⠽" }, { "input": "ingenuity", "output": "⠔⠛⠢⠥⠰⠽" }, { "input": "ingenuous", "output": "⠔⠛⠢⠥⠳⠎" }, { "input": "ingenuously", "output": "⠔⠛⠢⠥⠳⠎⠇⠽" }, { "input": "ingenuousness", "output": "⠔⠛⠢⠥⠳⠎⠰⠎" }, { "input": "ingest", "output": "⠔⠛⠑⠌" }, { "input": "ingested", "output": "⠔⠛⠑⠌⠫" }, { "input": "ingesting", "output": "⠔⠛⠑⠌⠬" }, { "input": "ingestion", "output": "⠔⠛⠑⠎⠰â " }, { "input": "ingests", "output": "⠔⠛⠑⠌⠎" }, { "input": "inglorious", "output": "⠔⠛⠇⠕⠗⠊⠳⠎" }, { "input": "ingot", "output": "⠔⠛⠕⠞" }, { "input": "ingots", "output": "⠔⠛⠕⠞⠎" }, { "input": "ingrain", "output": "⠔⠛⠗â â ”" }, { "input": "ingrained", "output": "⠔⠛⠗â â ”â «" }, { "input": "ingraining", "output": "⠔⠛⠗â â ”â ¬" }, { "input": "ingrains", "output": "⠔⠛⠗â â ”â Ž" }, { "input": "ingrate", "output": "⠔⠛⠗â â žâ ‘" }, { "input": "ingrates", "output": "⠔⠛⠗â â žâ ‘â Ž" }, { "input": "ingratiate", "output": "⠔⠛⠗â â žâ Šâ â žâ ‘" }, { "input": "ingratiated", "output": "⠔⠛⠗â â žâ Šâ â žâ «" }, { "input": "ingratiates", "output": "⠔⠛⠗â â žâ Šâ â žâ ‘â Ž" }, { "input": "ingratiating", "output": "⠔⠛⠗â â žâ Šâ â žâ ¬" }, { "input": "ingratiatingly", "output": "⠔⠛⠗â â žâ Šâ â žâ ¬â ‡â ½" }, { "input": "ingratitude", "output": "⠔⠛⠗â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "ingredient", "output": "⠔⠛⠗⠫⠊⠢⠞" }, { "input": "ingredients", "output": "⠔⠛⠗⠫⠊⠢⠞⠎" }, { "input": "ingress", "output": "⠔⠛⠗⠑⠎⠎" }, { "input": "ingresses", "output": "⠔⠛⠗⠑⠎⠎⠑⠎" }, { "input": "ingrown", "output": "⠔⠛⠗⠪â " }, { "input": "ingénue", "output": "⠔⠛⠠⠘⠻â â ˜â ‰â â ¥â ‘" }, { "input": "ingénues", "output": "⠔⠛⠠⠘⠻â â ˜â ‰â â ¥â ‘â Ž" }, { "input": "inhabit", "output": "⠔⠓â â ƒâ Šâ ž" }, { "input": "inhabitable", "output": "⠔⠓â â ƒâ Šâ žâ â ƒâ ‡â ‘" }, { "input": "inhabitant", "output": "⠔⠓â â ƒâ Šâ žâ â â ž" }, { "input": "inhabitants", "output": "⠔⠓â â ƒâ Šâ žâ â â žâ Ž" }, { "input": "inhabited", "output": "⠔⠓â â ƒâ Šâ žâ «" }, { "input": "inhabiting", "output": "⠔⠓â â ƒâ Šâ žâ ¬" }, { "input": "inhabits", "output": "⠔⠓â â ƒâ Šâ žâ Ž" }, { "input": "inhalant", "output": "⠔⠓â â ‡â â â ž" }, { "input": "inhalants", "output": "⠔⠓â â ‡â â â žâ Ž" }, { "input": "inhalation", "output": "⠔⠓â â ‡â â °â " }, { "input": "inhalations", "output": "⠔⠓â â ‡â â °â â Ž" }, { "input": "inhalator", "output": "⠔⠓â â ‡â â žâ •â —" }, { "input": "inhalators", "output": "⠔⠓â â ‡â â žâ •â —â Ž" }, { "input": "inhale", "output": "⠔⠓â â ‡â ‘" }, { "input": "inhaled", "output": "⠔⠓â â ‡â «" }, { "input": "inhaler", "output": "⠔⠓â â ‡â »" }, { "input": "inhalers", "output": "⠔⠓â â ‡â »â Ž" }, { "input": "inhales", "output": "⠔⠓â â ‡â ‘â Ž" }, { "input": "inhaling", "output": "⠔⠓â â ‡â ¬" }, { "input": "inhere", "output": "â ”â â “" }, { "input": "inhered", "output": "⠔⠓⠻⠫" }, { "input": "inherent", "output": "⠔⠓⠻⠢⠞" }, { "input": "inherently", "output": "⠔⠓⠻⠢⠞⠇⠽" }, { "input": "inheres", "output": "â ”â â “â Ž" }, { "input": "inhering", "output": "⠔⠓⠻⠬" }, { "input": "inherit", "output": "⠔⠓⠻⠊⠞" }, { "input": "inheritance", "output": "⠔⠓⠻⠊⠞⠨⠑" }, { "input": "inheritances", "output": "⠔⠓⠻⠊⠞⠨⠑⠎" }, { "input": "inherited", "output": "⠔⠓⠻⠊⠞⠫" }, { "input": "inheriting", "output": "⠔⠓⠻⠊⠞⠬" }, { "input": "inheritor", "output": "⠔⠓⠻⠊⠞⠕⠗" }, { "input": "inheritors", "output": "⠔⠓⠻⠊⠞⠕⠗⠎" }, { "input": "inherits", "output": "⠔⠓⠻⠊⠞⠎" }, { "input": "inhibit", "output": "⠔⠓⠊⠃⠊⠞" }, { "input": "inhibited", "output": "⠔⠓⠊⠃⠊⠞⠫" }, { "input": "inhibiting", "output": "⠔⠓⠊⠃⠊⠞⠬" }, { "input": "inhibition", "output": "⠔⠓⠊⠃⠊⠰â " }, { "input": "inhibitions", "output": "⠔⠓⠊⠃⠊⠰â â Ž" }, { "input": "inhibits", "output": "⠔⠓⠊⠃⠊⠞⠎" }, { "input": "inhospitable", "output": "⠔⠓⠕⠎â â Šâ žâ â ƒâ ‡â ‘" }, { "input": "inhuman", "output": "⠔⠓⠥â â â " }, { "input": "inhumane", "output": "⠔⠓⠥â â â â ‘" }, { "input": "inhumanely", "output": "⠔⠓⠥â â â â ‘⠇⠽" }, { "input": "inhumanities", "output": "⠔⠓⠥â â â â Šâ žâ Šâ ‘â Ž" }, { "input": "inhumanity", "output": "⠔⠓⠥â â â â °â ½" }, { "input": "inhumanly", "output": "⠔⠓⠥â â â â ‡â ½" }, { "input": "inimical", "output": "⠔⠊â â Šâ ‰â â ‡" }, { "input": "inimically", "output": "⠔⠊â â Šâ ‰â â ‡â ‡â ½" }, { "input": "inimitable", "output": "⠔⠊â â Šâ žâ â ƒâ ‡â ‘" }, { "input": "inimitably", "output": "⠔⠊â â Šâ žâ â ƒâ ‡â ½" }, { "input": "iniquities", "output": "⠔⠊⠟⠥⠊⠞⠊⠑⠎" }, { "input": "iniquitous", "output": "⠔⠊⠟⠥⠊⠞⠳⠎" }, { "input": "iniquity", "output": "⠔⠊⠟⠥⠰⠽" }, { "input": "initial", "output": "⠔⠊⠞⠊â â ‡" }, { "input": "initialed", "output": "⠔⠊⠞⠊â â ‡â «" }, { "input": "initialing", "output": "⠔⠊⠞⠊â â ‡â ¬" }, { "input": "initialization", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ â °â " }, { "input": "initialize", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ ‘" }, { "input": "initialized", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ «" }, { "input": "initializes", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "initializing", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ ¬" }, { "input": "initialled", "output": "⠔⠊⠞⠊â â ‡â ‡â «" }, { "input": "initialling", "output": "⠔⠊⠞⠊â â ‡â ‡â ¬" }, { "input": "initially", "output": "⠔⠊⠞⠊â â ‡â ‡â ½" }, { "input": "initials", "output": "⠔⠊⠞⠊â â ‡â Ž" }, { "input": "initiate", "output": "⠔⠊⠞⠊â â žâ ‘" }, { "input": "initiated", "output": "⠔⠊⠞⠊â â žâ «" }, { "input": "initiates", "output": "⠔⠊⠞⠊â â žâ ‘â Ž" }, { "input": "initiating", "output": "⠔⠊⠞⠊â â žâ ¬" }, { "input": "initiation", "output": "⠔⠊⠞⠊â â °â " }, { "input": "initiations", "output": "⠔⠊⠞⠊â â °â â Ž" }, { "input": "initiative", "output": "⠔⠊⠞⠊â â žâ Šâ §â ‘" }, { "input": "initiatives", "output": "⠔⠊⠞⠊â â žâ Šâ §â ‘â Ž" }, { "input": "initiator", "output": "⠔⠊⠞⠊â â žâ •â —" }, { "input": "initiators", "output": "⠔⠊⠞⠊â â žâ •â —â Ž" }, { "input": "inject", "output": "⠔⠚⠑⠉⠞" }, { "input": "injected", "output": "⠔⠚⠑⠉⠞⠫" }, { "input": "injecting", "output": "⠔⠚⠑⠉⠞⠬" }, { "input": "injection", "output": "⠔⠚⠑⠉⠰â " }, { "input": "injections", "output": "⠔⠚⠑⠉⠰â â Ž" }, { "input": "injector", "output": "⠔⠚⠑⠉⠞⠕⠗" }, { "input": "injectors", "output": "⠔⠚⠑⠉⠞⠕⠗⠎" }, { "input": "injects", "output": "⠔⠚⠑⠉⠞⠎" }, { "input": "injudicious", "output": "⠔⠚⠥⠙⠊⠉⠊⠳⠎" }, { "input": "injunction", "output": "⠔⠚⠥â â ‰â °â " }, { "input": "injunctions", "output": "⠔⠚⠥â â ‰â °â â Ž" }, { "input": "injure", "output": "⠔⠚⠥⠗⠑" }, { "input": "injured", "output": "⠔⠚⠥⠗⠫" }, { "input": "injures", "output": "⠔⠚⠥⠗⠑⠎" }, { "input": "injuries", "output": "⠔⠚⠥⠗⠊⠑⠎" }, { "input": "injuring", "output": "⠔⠚⠥⠗⠬" }, { "input": "injurious", "output": "⠔⠚⠥⠗⠊⠳⠎" }, { "input": "injury", "output": "⠔⠚⠥⠗⠽" }, { "input": "injustice", "output": "⠔⠚⠥⠌⠊⠉⠑" }, { "input": "injustices", "output": "⠔⠚⠥⠌⠊⠉⠑⠎" }, { "input": "ink", "output": "⠔⠅" }, { "input": "inkblot", "output": "⠔⠅⠃⠇⠕⠞" }, { "input": "inkblots", "output": "⠔⠅⠃⠇⠕⠞⠎" }, { "input": "inked", "output": "⠔⠅⠫" }, { "input": "inkier", "output": "⠔⠅⠊⠻" }, { "input": "inkiest", "output": "⠔⠅⠊⠑⠌" }, { "input": "inkiness", "output": "⠔⠅⠊⠰⠎" }, { "input": "inking", "output": "⠔⠅⠬" }, { "input": "inkling", "output": "⠔⠅⠇⠬" }, { "input": "inklings", "output": "⠔⠅⠇⠬⠎" }, { "input": "inks", "output": "⠔⠅⠎" }, { "input": "inkwell", "output": "⠔⠅⠺⠑⠇⠇" }, { "input": "inkwells", "output": "⠔⠅⠺⠑⠇⠇⠎" }, { "input": "inky", "output": "⠔⠅⠽" }, { "input": "inlaid", "output": "⠔⠇â â Šâ ™" }, { "input": "inland", "output": "⠔⠇⠯" }, { "input": "inlay", "output": "⠔⠇â â ½" }, { "input": "inlaying", "output": "⠔⠇â â ½â ¬" }, { "input": "inlays", "output": "⠔⠇â â ½â Ž" }, { "input": "inlet", "output": "⠔⠇⠑⠞" }, { "input": "inlets", "output": "⠔⠇⠑⠞⠎" }, { "input": "inline", "output": "⠔⠇⠔⠑" }, { "input": "inmate", "output": "â ”â â â žâ ‘" }, { "input": "inmates", "output": "â ”â â â žâ ‘â Ž" }, { "input": "inmost", "output": "â ”â â •â Œ" }, { "input": "inn", "output": "â ”â " }, { "input": "innards", "output": "â ”â â œâ ™â Ž" }, { "input": "innate", "output": "â ”â â â žâ ‘" }, { "input": "innately", "output": "â ”â â â žâ ‘⠇⠽" }, { "input": "inner", "output": "â ”â â »" }, { "input": "innermost", "output": "â ”â â »â â •â Œ" }, { "input": "inning", "output": "â ”â â ¬" }, { "input": "innings", "output": "â ”â â ¬â Ž" }, { "input": "innkeeper", "output": "â ”â â …â ‘â ‘â â »" }, { "input": "innkeepers", "output": "â ”â â …â ‘â ‘â â »â Ž" }, { "input": "innocence", "output": "â ”â â •⠉⠰⠑" }, { "input": "innocent", "output": "â ”â â •⠉⠢⠞" }, { "input": "innocently", "output": "â ”â â •⠉⠢⠞⠇⠽" }, { "input": "innocents", "output": "â ”â â •⠉⠢⠞⠎" }, { "input": "innocuous", "output": "â ”â â •⠉⠥⠳⠎" }, { "input": "innocuously", "output": "â ”â â •⠉⠥⠳⠎⠇⠽" }, { "input": "innovate", "output": "â ”â â •â §â â žâ ‘" }, { "input": "innovated", "output": "â ”â â •â §â â žâ «" }, { "input": "innovates", "output": "â ”â â •â §â â žâ ‘â Ž" }, { "input": "innovating", "output": "â ”â â •â §â â žâ ¬" }, { "input": "innovation", "output": "â ”â â •â §â â °â " }, { "input": "innovations", "output": "â ”â â •â §â â °â â Ž" }, { "input": "innovative", "output": "â ”â â •â §â â žâ Šâ §â ‘" }, { "input": "innovator", "output": "â ”â â •â §â â žâ •â —" }, { "input": "innovators", "output": "â ”â â •â §â â žâ •â —â Ž" }, { "input": "inns", "output": "â ”â â Ž" }, { "input": "innuendo", "output": "â ”â â ¥â ¢â ™â •" }, { "input": "innuendoes", "output": "â ”â â ¥â ¢â ™â •â ‘â Ž" }, { "input": "innuendos", "output": "â ”â â ¥â ¢â ™â •â Ž" }, { "input": "innumerable", "output": "â ”â â ¥â â »â â ƒâ ‡â ‘" }, { "input": "inoculate", "output": "⠔⠕⠉⠥⠇â â žâ ‘" }, { "input": "inoculated", "output": "⠔⠕⠉⠥⠇â â žâ «" }, { "input": "inoculates", "output": "⠔⠕⠉⠥⠇â â žâ ‘â Ž" }, { "input": "inoculating", "output": "⠔⠕⠉⠥⠇â â žâ ¬" }, { "input": "inoculation", "output": "⠔⠕⠉⠥⠇â â °â " }, { "input": "inoculations", "output": "⠔⠕⠉⠥⠇â â °â â Ž" }, { "input": "inoffensive", "output": "⠔⠷⠋⠢⠎⠊⠧⠑" }, { "input": "inoffensively", "output": "⠔⠷⠋⠢⠎⠊⠧⠑⠇⠽" }, { "input": "inoperable", "output": "⠔⠕â â »â â ƒâ ‡â ‘" }, { "input": "inoperative", "output": "⠔⠕â â »â â žâ Šâ §â ‘" }, { "input": "inopportune", "output": "⠔⠕â â â •â —â žâ ¥â â ‘" }, { "input": "inordinate", "output": "⠔⠕⠗⠙⠔â â žâ ‘" }, { "input": "inordinately", "output": "⠔⠕⠗⠙⠔â â žâ ‘⠇⠽" }, { "input": "inorganic", "output": "⠔⠕⠗⠛â â â Šâ ‰" }, { "input": "inpatient", "output": "â ”â â â žâ Šâ ¢â ž" }, { "input": "inpatients", "output": "â ”â â â žâ Šâ ¢â žâ Ž" }, { "input": "input", "output": "â ”â â ¥â ž" }, { "input": "inputs", "output": "â ”â â ¥â žâ Ž" }, { "input": "inputted", "output": "â ”â â ¥â žâ žâ «" }, { "input": "inputting", "output": "â ”â â ¥â žâ žâ ¬" }, { "input": "inquest", "output": "⠔⠟⠥⠑⠌" }, { "input": "inquests", "output": "⠔⠟⠥⠑⠌⠎" }, { "input": "inquietude", "output": "⠔⠟⠥⠊⠑⠞⠥⠙⠑" }, { "input": "inquire", "output": "⠔⠟⠥⠊⠗⠑" }, { "input": "inquired", "output": "⠔⠟⠥⠊⠗⠫" }, { "input": "inquirer", "output": "⠔⠟⠥⠊⠗⠻" }, { "input": "inquirers", "output": "⠔⠟⠥⠊⠗⠻⠎" }, { "input": "inquires", "output": "⠔⠟⠥⠊⠗⠑⠎" }, { "input": "inquiries", "output": "⠔⠟⠥⠊⠗⠊⠑⠎" }, { "input": "inquiring", "output": "⠔⠟⠥⠊⠗⠬" }, { "input": "inquiringly", "output": "⠔⠟⠥⠊⠗⠬⠇⠽" }, { "input": "inquiry", "output": "⠔⠟⠥⠊⠗⠽" }, { "input": "inquisition", "output": "⠔⠟⠥⠊⠎⠊⠰â " }, { "input": "inquisitions", "output": "⠔⠟⠥⠊⠎⠊⠰â â Ž" }, { "input": "inquisitive", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑" }, { "input": "inquisitively", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "inquisitiveness", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑⠰⠎" }, { "input": "inquisitor", "output": "⠔⠟⠥⠊⠎⠊⠞⠕⠗" }, { "input": "inquisitors", "output": "⠔⠟⠥⠊⠎⠊⠞⠕⠗⠎" }, { "input": "inroad", "output": "⠔⠗⠕â â ™" }, { "input": "inroads", "output": "⠔⠗⠕â â ™â Ž" }, { "input": "ins", "output": "⠔⠎" }, { "input": "insane", "output": "⠔⠎â â â ‘" }, { "input": "insanely", "output": "⠔⠎â â â ‘⠇⠽" }, { "input": "insaner", "output": "⠔⠎â â â »" }, { "input": "insanest", "output": "⠔⠎â â â ‘â Œ" }, { "input": "insanity", "output": "⠔⠎â â â °â ½" }, { "input": "insatiable", "output": "⠔⠎â â žâ Šâ â ƒâ ‡â ‘" }, { "input": "insatiably", "output": "⠔⠎â â žâ Šâ â ƒâ ‡â ½" }, { "input": "inscribe", "output": "⠔⠎⠉⠗⠊⠃⠑" }, { "input": "inscribed", "output": "⠔⠎⠉⠗⠊⠃⠫" }, { "input": "inscribes", "output": "⠔⠎⠉⠗⠊⠃⠑⠎" }, { "input": "inscribing", "output": "⠔⠎⠉⠗⠊⠃⠬" }, { "input": "inscription", "output": "⠔⠎⠉⠗⠊â â °â " }, { "input": "inscriptions", "output": "⠔⠎⠉⠗⠊â â °â â Ž" }, { "input": "inscrutable", "output": "⠔⠎⠉⠗⠥⠞â â ƒâ ‡â ‘" }, { "input": "inscrutably", "output": "⠔⠎⠉⠗⠥⠞â â ƒâ ‡â ½" }, { "input": "inseam", "output": "⠔⠎⠂â " }, { "input": "inseams", "output": "⠔⠎⠂â â Ž" }, { "input": "insect", "output": "⠔⠎⠑⠉⠞" }, { "input": "insecticide", "output": "⠔⠎⠑⠉⠞⠊⠉⠊⠙⠑" }, { "input": "insecticides", "output": "⠔⠎⠑⠉⠞⠊⠉⠊⠙⠑⠎" }, { "input": "insectivore", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠑" }, { "input": "insectivores", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠑⠎" }, { "input": "insectivorous", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠳⠎" }, { "input": "insects", "output": "⠔⠎⠑⠉⠞⠎" }, { "input": "insecure", "output": "⠔⠎⠑⠉⠥⠗⠑" }, { "input": "insecurely", "output": "⠔⠎⠑⠉⠥⠗⠑⠇⠽" }, { "input": "insecurities", "output": "⠔⠎⠑⠉⠥⠗⠊⠞⠊⠑⠎" }, { "input": "insecurity", "output": "⠔⠎⠑⠉⠥⠗⠰⠽" }, { "input": "inseminate", "output": "⠔⠎⠑â â ”â â žâ ‘" }, { "input": "inseminated", "output": "⠔⠎⠑â â ”â â žâ «" }, { "input": "inseminates", "output": "⠔⠎⠑â â ”â â žâ ‘â Ž" }, { "input": "inseminating", "output": "⠔⠎⠑â â ”â â žâ ¬" }, { "input": "insemination", "output": "⠔⠎⠑â â ”â â °â " }, { "input": "insensate", "output": "⠔⠎⠢⠎â â žâ ‘" }, { "input": "insensibility", "output": "⠔⠎⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "insensible", "output": "⠔⠎⠢⠎⠊⠃⠇⠑" }, { "input": "insensibly", "output": "⠔⠎⠢⠎⠊⠃⠇⠽" }, { "input": "insensitive", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "insensitively", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "insensitivity", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠰⠽" }, { "input": "insentience", "output": "⠔⠎⠢⠞⠊⠰⠑" }, { "input": "insentient", "output": "⠔⠎⠢⠞⠊⠢⠞" }, { "input": "inseparability", "output": "⠔⠎⠑â â œâ â ƒâ Šâ ‡â °â ½" }, { "input": "inseparable", "output": "⠔⠎⠑â â œâ â ƒâ ‡â ‘" }, { "input": "inseparables", "output": "⠔⠎⠑â â œâ â ƒâ ‡â ‘â Ž" }, { "input": "inseparably", "output": "⠔⠎⠑â â œâ â ƒâ ‡â ½" }, { "input": "insert", "output": "⠔⠎⠻⠞" }, { "input": "inserted", "output": "⠔⠎⠻⠞⠫" }, { "input": "inserting", "output": "⠔⠎⠻⠞⠬" }, { "input": "insertion", "output": "⠔⠎⠻⠰â " }, { "input": "insertions", "output": "⠔⠎⠻⠰â â Ž" }, { "input": "inserts", "output": "⠔⠎⠻⠞⠎" }, { "input": "inset", "output": "⠔⠎⠑⠞" }, { "input": "insets", "output": "⠔⠎⠑⠞⠎" }, { "input": "insetted", "output": "⠔⠎⠑⠞⠞⠫" }, { "input": "insetting", "output": "⠔⠎⠑⠞⠞⠬" }, { "input": "inshore", "output": "⠔⠩⠕⠗⠑" }, { "input": "inside", "output": "⠔⠎⠊⠙⠑" }, { "input": "insider", "output": "⠔⠎⠊⠙⠻" }, { "input": "insiders", "output": "⠔⠎⠊⠙⠻⠎" }, { "input": "insides", "output": "⠔⠎⠊⠙⠑⠎" }, { "input": "insidious", "output": "⠔⠎⠊⠙⠊⠳⠎" }, { "input": "insidiously", "output": "⠔⠎⠊⠙⠊⠳⠎⠇⠽" }, { "input": "insidiousness", "output": "⠔⠎⠊⠙⠊⠳⠎⠰⠎" }, { "input": "insight", "output": "⠔⠎⠊⠣⠞" }, { "input": "insightful", "output": "⠔⠎⠊⠣⠞⠰⠇" }, { "input": "insights", "output": "⠔⠎⠊⠣⠞⠎" }, { "input": "insigne", "output": "⠔⠎⠊⠛â â ‘" }, { "input": "insignes", "output": "⠔⠎⠊⠛â â ‘â Ž" }, { "input": "insignia", "output": "⠔⠎⠊⠛â â Šâ " }, { "input": "insignias", "output": "⠔⠎⠊⠛â â Šâ â Ž" }, { "input": "insignificance", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â ¨â ‘" }, { "input": "insignificant", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â â â ž" }, { "input": "insignificantly", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â â â žâ ‡â ½" }, { "input": "insincere", "output": "⠔⠎⠔⠉⠻⠑" }, { "input": "insincerely", "output": "⠔⠎⠔⠉⠻⠑⠇⠽" }, { "input": "insincerity", "output": "⠔⠎⠔⠉⠻⠰⠽" }, { "input": "insinuate", "output": "⠔⠎⠔⠥â â žâ ‘" }, { "input": "insinuated", "output": "⠔⠎⠔⠥â â žâ «" }, { "input": "insinuates", "output": "⠔⠎⠔⠥â â žâ ‘â Ž" }, { "input": "insinuating", "output": "⠔⠎⠔⠥â â žâ ¬" }, { "input": "insinuation", "output": "⠔⠎⠔⠥â â °â " }, { "input": "insinuations", "output": "⠔⠎⠔⠥â â °â â Ž" }, { "input": "insipid", "output": "⠔⠎⠊â â Šâ ™" }, { "input": "insist", "output": "⠔⠎⠊⠌" }, { "input": "insisted", "output": "⠔⠎⠊⠌⠫" }, { "input": "insistence", "output": "⠔⠎⠊⠌⠰⠑" }, { "input": "insistent", "output": "⠔⠎⠊⠌⠢⠞" }, { "input": "insistently", "output": "⠔⠎⠊⠌⠢⠞⠇⠽" }, { "input": "insisting", "output": "⠔⠎⠊⠌⠬" }, { "input": "insists", "output": "⠔⠎⠊⠌⠎" }, { "input": "insofar", "output": "⠔⠎⠕⠋⠜" }, { "input": "insole", "output": "⠔⠎⠕⠇⠑" }, { "input": "insolence", "output": "⠔⠎⠕⠇⠰⠑" }, { "input": "insolent", "output": "⠔⠎⠕⠇⠢⠞" }, { "input": "insolently", "output": "⠔⠎⠕⠇⠢⠞⠇⠽" }, { "input": "insoles", "output": "⠔⠎⠕⠇⠑⠎" }, { "input": "insolubility", "output": "⠔⠎⠕⠇⠥⠃⠊⠇⠰⠽" }, { "input": "insoluble", "output": "⠔⠎⠕⠇⠥⠃⠇⠑" }, { "input": "insolvable", "output": "⠔⠎⠕⠇⠧â â ƒâ ‡â ‘" }, { "input": "insolvency", "output": "⠔⠎⠕⠇⠧⠢⠉⠽" }, { "input": "insolvent", "output": "⠔⠎⠕⠇⠧⠢⠞" }, { "input": "insolvents", "output": "⠔⠎⠕⠇⠧⠢⠞⠎" }, { "input": "insomnia", "output": "⠔⠎⠕â â â Šâ " }, { "input": "insomniac", "output": "⠔⠎⠕â â â Šâ â ‰" }, { "input": "insomniacs", "output": "⠔⠎⠕â â â Šâ â ‰â Ž" }, { "input": "insouciance", "output": "⠔⠎⠳⠉⠊⠨⠑" }, { "input": "insouciant", "output": "⠔⠎⠳⠉⠊â â â ž" }, { "input": "inspect", "output": "⠔⠎â â ‘⠉⠞" }, { "input": "inspected", "output": "⠔⠎â â ‘⠉⠞⠫" }, { "input": "inspecting", "output": "⠔⠎â â ‘⠉⠞⠬" }, { "input": "inspection", "output": "⠔⠎â â ‘⠉⠰â " }, { "input": "inspections", "output": "⠔⠎â â ‘⠉⠰â â Ž" }, { "input": "inspector", "output": "⠔⠎â â ‘⠉⠞⠕⠗" }, { "input": "inspectors", "output": "⠔⠎â â ‘⠉⠞⠕⠗⠎" }, { "input": "inspects", "output": "⠔⠎â â ‘⠉⠞⠎" }, { "input": "inspiration", "output": "⠔⠎â â Šâ —â â °â " }, { "input": "inspirational", "output": "⠔⠎â â Šâ —â â °â â â ‡" }, { "input": "inspirations", "output": "⠔⠎â â Šâ —â â °â â Ž" }, { "input": "inspire", "output": "⠔⠎â â Šâ —â ‘" }, { "input": "inspired", "output": "⠔⠎â â Šâ —â «" }, { "input": "inspires", "output": "⠔⠎â â Šâ —â ‘â Ž" }, { "input": "inspiring", "output": "⠔⠎â â Šâ —â ¬" }, { "input": "instability", "output": "⠔⠌â â ƒâ Šâ ‡â °â ½" }, { "input": "instal", "output": "⠔⠌â â ‡" }, { "input": "install", "output": "⠔⠌â â ‡â ‡" }, { "input": "installation", "output": "⠔⠌â â ‡â ‡â â °â " }, { "input": "installations", "output": "⠔⠌â â ‡â ‡â â °â â Ž" }, { "input": "installed", "output": "⠔⠌â â ‡â ‡â «" }, { "input": "installing", "output": "⠔⠌â â ‡â ‡â ¬" }, { "input": "installment", "output": "⠔⠌â â ‡â ‡â °â ž" }, { "input": "installments", "output": "⠔⠌â â ‡â ‡â °â žâ Ž" }, { "input": "installs", "output": "⠔⠌â â ‡â ‡â Ž" }, { "input": "instalment", "output": "⠔⠌â â ‡â °â ž" }, { "input": "instalments", "output": "⠔⠌â â ‡â °â žâ Ž" }, { "input": "instals", "output": "⠔⠌â â ‡â Ž" }, { "input": "instance", "output": "⠔⠌⠨⠑" }, { "input": "instanced", "output": "⠔⠌⠨⠑⠙" }, { "input": "instances", "output": "⠔⠌⠨⠑⠎" }, { "input": "instancing", "output": "⠔⠌â â â ‰â ¬" }, { "input": "instant", "output": "⠔⠌â â â ž" }, { "input": "instantaneous", "output": "⠔⠌â â â žâ â â ‘⠳⠎" }, { "input": "instantaneously", "output": "⠔⠌â â â žâ â â ‘⠳⠎⠇⠽" }, { "input": "instantly", "output": "⠔⠌â â â žâ ‡â ½" }, { "input": "instants", "output": "⠔⠌â â â žâ Ž" }, { "input": "instead", "output": "⠔⠌⠂⠙" }, { "input": "instep", "output": "⠔⠌⠑â " }, { "input": "insteps", "output": "⠔⠌⠑â â Ž" }, { "input": "instigate", "output": "⠔⠌⠊⠛â â žâ ‘" }, { "input": "instigated", "output": "⠔⠌⠊⠛â â žâ «" }, { "input": "instigates", "output": "⠔⠌⠊⠛â â žâ ‘â Ž" }, { "input": "instigating", "output": "⠔⠌⠊⠛â â žâ ¬" }, { "input": "instigation", "output": "⠔⠌⠊⠛â â °â " }, { "input": "instigator", "output": "⠔⠌⠊⠛â â žâ •â —" }, { "input": "instigators", "output": "⠔⠌⠊⠛â â žâ •â —â Ž" }, { "input": "instil", "output": "⠔⠌⠊⠇" }, { "input": "instill", "output": "⠔⠌⠊⠇⠇" }, { "input": "instilled", "output": "⠔⠌⠊⠇⠇⠫" }, { "input": "instilling", "output": "⠔⠌⠊⠇⠇⠬" }, { "input": "instills", "output": "⠔⠌⠊⠇⠇⠎" }, { "input": "instils", "output": "⠔⠌⠊⠇⠎" }, { "input": "instinct", "output": "⠔⠌⠔⠉⠞" }, { "input": "instinctive", "output": "⠔⠌⠔⠉⠞⠊⠧⠑" }, { "input": "instinctively", "output": "⠔⠌⠔⠉⠞⠊⠧⠑⠇⠽" }, { "input": "instincts", "output": "⠔⠌⠔⠉⠞⠎" }, { "input": "institute", "output": "⠔⠌⠊⠞⠥⠞⠑" }, { "input": "instituted", "output": "⠔⠌⠊⠞⠥⠞⠫" }, { "input": "institutes", "output": "⠔⠌⠊⠞⠥⠞⠑⠎" }, { "input": "instituting", "output": "⠔⠌⠊⠞⠥⠞⠬" }, { "input": "institution", "output": "⠔⠌⠊⠞⠥⠰â " }, { "input": "institutional", "output": "⠔⠌⠊⠞⠥⠰â â â ‡" }, { "input": "institutionalize", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ ‘" }, { "input": "institutionalized", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ «" }, { "input": "institutionalizes", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ ‘â Ž" }, { "input": "institutionalizing", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ ¬" }, { "input": "institutions", "output": "⠔⠌⠊⠞⠥⠰â â Ž" }, { "input": "instruct", "output": "⠔⠌⠗⠥⠉⠞" }, { "input": "instructed", "output": "⠔⠌⠗⠥⠉⠞⠫" }, { "input": "instructing", "output": "⠔⠌⠗⠥⠉⠞⠬" }, { "input": "instruction", "output": "⠔⠌⠗⠥⠉⠰â " }, { "input": "instructional", "output": "⠔⠌⠗⠥⠉⠰â â â ‡" }, { "input": "instructions", "output": "⠔⠌⠗⠥⠉⠰â â Ž" }, { "input": "instructive", "output": "⠔⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "instructively", "output": "⠔⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "instructor", "output": "⠔⠌⠗⠥⠉⠞⠕⠗" }, { "input": "instructors", "output": "⠔⠌⠗⠥⠉⠞⠕⠗⠎" }, { "input": "instructs", "output": "⠔⠌⠗⠥⠉⠞⠎" }, { "input": "instrument", "output": "⠔⠌⠗⠥⠰⠞" }, { "input": "instrumental", "output": "⠔⠌⠗⠥⠰⠞â â ‡" }, { "input": "instrumentalist", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Šâ Œ" }, { "input": "instrumentalists", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Šâ Œâ Ž" }, { "input": "instrumentality", "output": "⠔⠌⠗⠥⠰⠞â â ‡â °â ½" }, { "input": "instrumentals", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Ž" }, { "input": "instrumentation", "output": "⠔⠌⠗⠥⠰⠞â â °â " }, { "input": "instrumented", "output": "⠔⠌⠗⠥⠰⠞⠫" }, { "input": "instrumenting", "output": "⠔⠌⠗⠥⠰⠞⠬" }, { "input": "instruments", "output": "⠔⠌⠗⠥⠰⠞⠎" }, { "input": "insubordinate", "output": "⠔⠎⠥⠃⠕⠗⠙⠔â â žâ ‘" }, { "input": "insubordination", "output": "⠔⠎⠥⠃⠕⠗⠙⠔â â °â " }, { "input": "insubstantial", "output": "⠔⠎⠥⠃⠌â â â žâ Šâ â ‡" }, { "input": "insufferable", "output": "⠔⠎⠥⠖⠻â â ƒâ ‡â ‘" }, { "input": "insufferably", "output": "⠔⠎⠥⠖⠻â â ƒâ ‡â ½" }, { "input": "insufficiency", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠉⠽" }, { "input": "insufficient", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠞" }, { "input": "insufficiently", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "insular", "output": "⠔⠎⠥⠇⠜" }, { "input": "insularity", "output": "⠔⠎⠥⠇⠜⠰⠽" }, { "input": "insulate", "output": "⠔⠎⠥⠇â â žâ ‘" }, { "input": "insulated", "output": "⠔⠎⠥⠇â â žâ «" }, { "input": "insulates", "output": "⠔⠎⠥⠇â â žâ ‘â Ž" }, { "input": "insulating", "output": "⠔⠎⠥⠇â â žâ ¬" }, { "input": "insulation", "output": "⠔⠎⠥⠇â â °â " }, { "input": "insulator", "output": "⠔⠎⠥⠇â â žâ •â —" }, { "input": "insulators", "output": "⠔⠎⠥⠇â â žâ •â —â Ž" }, { "input": "insulin", "output": "⠔⠎⠥⠇⠔" }, { "input": "insult", "output": "⠔⠎⠥⠇⠞" }, { "input": "insulted", "output": "⠔⠎⠥⠇⠞⠫" }, { "input": "insulting", "output": "⠔⠎⠥⠇⠞⠬" }, { "input": "insults", "output": "⠔⠎⠥⠇⠞⠎" }, { "input": "insuperable", "output": "⠔⠎⠥â â »â â ƒâ ‡â ‘" }, { "input": "insupportable", "output": "⠔⠎⠥â â â •â —â žâ â ƒâ ‡â ‘" }, { "input": "insurance", "output": "⠔⠎⠥⠗⠨⠑" }, { "input": "insurances", "output": "⠔⠎⠥⠗⠨⠑⠎" }, { "input": "insure", "output": "⠔⠎⠥⠗⠑" }, { "input": "insured", "output": "⠔⠎⠥⠗⠫" }, { "input": "insureds", "output": "⠔⠎⠥⠗⠫⠎" }, { "input": "insurer", "output": "⠔⠎⠥⠗⠻" }, { "input": "insurers", "output": "⠔⠎⠥⠗⠻⠎" }, { "input": "insures", "output": "⠔⠎⠥⠗⠑⠎" }, { "input": "insurgence", "output": "⠔⠎⠥⠗⠛⠰⠑" }, { "input": "insurgences", "output": "⠔⠎⠥⠗⠛⠰⠑⠎" }, { "input": "insurgencies", "output": "⠔⠎⠥⠗⠛⠢⠉⠊⠑⠎" }, { "input": "insurgency", "output": "⠔⠎⠥⠗⠛⠢⠉⠽" }, { "input": "insurgent", "output": "⠔⠎⠥⠗⠛⠢⠞" }, { "input": "insurgents", "output": "⠔⠎⠥⠗⠛⠢⠞⠎" }, { "input": "insuring", "output": "⠔⠎⠥⠗⠬" }, { "input": "insurmountable", "output": "⠔⠎⠥⠗â â ¨â žâ â ƒâ ‡â ‘" }, { "input": "insurrection", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â " }, { "input": "insurrectionist", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Šâ Œ" }, { "input": "insurrectionists", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Šâ Œâ Ž" }, { "input": "insurrections", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Ž" }, { "input": "intact", "output": "⠔⠞â â ‰â ž" }, { "input": "intagli", "output": "⠔⠞â â ›â ‡â Š" }, { "input": "intaglio", "output": "⠔⠞â â ›â ‡â Šâ •" }, { "input": "intaglios", "output": "⠔⠞â â ›â ‡â Šâ •â Ž" }, { "input": "intake", "output": "⠔⠞â â …â ‘" }, { "input": "intakes", "output": "⠔⠞â â …â ‘â Ž" }, { "input": "intangible", "output": "⠔⠞â â â ›â Šâ ƒâ ‡â ‘" }, { "input": "intangibles", "output": "⠔⠞â â â ›â Šâ ƒâ ‡â ‘â Ž" }, { "input": "intangibly", "output": "⠔⠞â â â ›â Šâ ƒâ ‡â ½" }, { "input": "integer", "output": "⠔⠞⠑⠛⠻" }, { "input": "integers", "output": "⠔⠞⠑⠛⠻⠎" }, { "input": "integral", "output": "⠔⠞⠑⠛⠗â â ‡" }, { "input": "integrals", "output": "⠔⠞⠑⠛⠗â â ‡â Ž" }, { "input": "integrate", "output": "⠔⠞⠑⠛⠗â â žâ ‘" }, { "input": "integrated", "output": "⠔⠞⠑⠛⠗â â žâ «" }, { "input": "integrates", "output": "⠔⠞⠑⠛⠗â â žâ ‘â Ž" }, { "input": "integrating", "output": "⠔⠞⠑⠛⠗â â žâ ¬" }, { "input": "integration", "output": "⠔⠞⠑⠛⠗â â °â " }, { "input": "integrator", "output": "⠔⠞⠑⠛⠗â â žâ •â —" }, { "input": "integrity", "output": "⠔⠞⠑⠛⠗⠰⠽" }, { "input": "integument", "output": "⠔⠞⠑⠛⠥⠰⠞" }, { "input": "integuments", "output": "⠔⠞⠑⠛⠥⠰⠞⠎" }, { "input": "intellect", "output": "⠔⠞⠑⠇⠇⠑⠉⠞" }, { "input": "intellects", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠎" }, { "input": "intellectual", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡" }, { "input": "intellectualism", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ Žâ " }, { "input": "intellectualize", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ ‘" }, { "input": "intellectualized", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ «" }, { "input": "intellectualizes", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ ‘â Ž" }, { "input": "intellectualizing", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ ¬" }, { "input": "intellectually", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â ‡â ½" }, { "input": "intellectuals", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Ž" }, { "input": "intelligence", "output": "⠔⠞⠑⠇⠇⠊⠛⠰⠑" }, { "input": "intelligent", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞" }, { "input": "intelligently", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞⠇⠽" }, { "input": "intelligentsia", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞⠎⠊â " }, { "input": "intelligibility", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "intelligible", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠃⠇⠑" }, { "input": "intelligibly", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠃⠇⠽" }, { "input": "intemperance", "output": "⠔⠞⠑â â â »â ¨â ‘" }, { "input": "intemperate", "output": "⠔⠞⠑â â â »â â žâ ‘" }, { "input": "intend", "output": "⠔⠞⠢⠙" }, { "input": "intended", "output": "⠔⠞⠢⠙⠫" }, { "input": "intendeds", "output": "⠔⠞⠢⠙⠫⠎" }, { "input": "intending", "output": "⠔⠞⠢⠙⠬" }, { "input": "intends", "output": "⠔⠞⠢⠙⠎" }, { "input": "intense", "output": "⠔⠞⠢⠎⠑" }, { "input": "intensely", "output": "⠔⠞⠢⠎⠑⠇⠽" }, { "input": "intenser", "output": "⠔⠞⠢⠎⠻" }, { "input": "intensest", "output": "⠔⠞⠢⠎⠑⠌" }, { "input": "intensification", "output": "⠔⠞⠢⠎⠊⠋⠊⠉â â °â " }, { "input": "intensified", "output": "⠔⠞⠢⠎⠊⠋⠊⠫" }, { "input": "intensifier", "output": "⠔⠞⠢⠎⠊⠋⠊⠻" }, { "input": "intensifiers", "output": "⠔⠞⠢⠎⠊⠋⠊⠻⠎" }, { "input": "intensifies", "output": "⠔⠞⠢⠎⠊⠋⠊⠑⠎" }, { "input": "intensify", "output": "⠔⠞⠢⠎⠊⠋⠽" }, { "input": "intensifying", "output": "⠔⠞⠢⠎⠊⠋⠽⠬" }, { "input": "intensities", "output": "⠔⠞⠢⠎⠊⠞⠊⠑⠎" }, { "input": "intensity", "output": "⠔⠞⠢⠎⠰⠽" }, { "input": "intensive", "output": "⠔⠞⠢⠎⠊⠧⠑" }, { "input": "intensively", "output": "⠔⠞⠢⠎⠊⠧⠑⠇⠽" }, { "input": "intensives", "output": "⠔⠞⠢⠎⠊⠧⠑⠎" }, { "input": "intent", "output": "⠔⠞⠢⠞" }, { "input": "intention", "output": "⠔⠞⠢⠰â " }, { "input": "intentional", "output": "⠔⠞⠢⠰â â â ‡" }, { "input": "intentionally", "output": "⠔⠞⠢⠰â â â ‡â ‡â ½" }, { "input": "intentions", "output": "⠔⠞⠢⠰â â Ž" }, { "input": "intently", "output": "⠔⠞⠢⠞⠇⠽" }, { "input": "intentness", "output": "⠔⠞⠢⠞⠰⠎" }, { "input": "intents", "output": "⠔⠞⠢⠞⠎" }, { "input": "inter", "output": "⠔⠞⠻" }, { "input": "interact", "output": "⠔⠞⠻â â ‰â ž" }, { "input": "interacted", "output": "⠔⠞⠻â â ‰â žâ «" }, { "input": "interacting", "output": "⠔⠞⠻â â ‰â žâ ¬" }, { "input": "interaction", "output": "⠔⠞⠻â â ‰â °â " }, { "input": "interactions", "output": "⠔⠞⠻â â ‰â °â â Ž" }, { "input": "interactive", "output": "⠔⠞⠻â â ‰â žâ Šâ §â ‘" }, { "input": "interactively", "output": "⠔⠞⠻â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "interacts", "output": "⠔⠞⠻â â ‰â žâ Ž" }, { "input": "interbred", "output": "⠔⠞⠻⠃⠗⠫" }, { "input": "interbreed", "output": "⠔⠞⠻⠃⠗⠑⠫" }, { "input": "interbreeding", "output": "⠔⠞⠻⠃⠗⠑⠫⠬" }, { "input": "interbreeds", "output": "⠔⠞⠻⠃⠗⠑⠫⠎" }, { "input": "intercede", "output": "⠔⠞⠻⠉⠫⠑" }, { "input": "interceded", "output": "⠔⠞⠻⠉⠫⠫" }, { "input": "intercedes", "output": "⠔⠞⠻⠉⠫⠑⠎" }, { "input": "interceding", "output": "⠔⠞⠻⠉⠫⠬" }, { "input": "intercept", "output": "⠔⠞⠻⠉⠑â â ž" }, { "input": "intercepted", "output": "⠔⠞⠻⠉⠑â â žâ «" }, { "input": "intercepting", "output": "⠔⠞⠻⠉⠑â â žâ ¬" }, { "input": "interception", "output": "⠔⠞⠻⠉⠑â â °â " }, { "input": "interceptions", "output": "⠔⠞⠻⠉⠑â â °â â Ž" }, { "input": "interceptor", "output": "⠔⠞⠻⠉⠑â â žâ •â —" }, { "input": "interceptors", "output": "⠔⠞⠻⠉⠑â â žâ •â —â Ž" }, { "input": "intercepts", "output": "⠔⠞⠻⠉⠑â â žâ Ž" }, { "input": "intercession", "output": "⠔⠞⠻⠉⠑⠎⠨â " }, { "input": "intercessions", "output": "⠔⠞⠻⠉⠑⠎⠨â â Ž" }, { "input": "intercessor", "output": "⠔⠞⠻⠉⠑⠎⠎⠕⠗" }, { "input": "intercessors", "output": "⠔⠞⠻⠉⠑⠎⠎⠕⠗⠎" }, { "input": "interchange", "output": "⠔⠞⠻⠡â â â ›â ‘" }, { "input": "interchangeable", "output": "⠔⠞⠻⠡â â â ›â ‚⠃⠇⠑" }, { "input": "interchangeably", "output": "⠔⠞⠻⠡â â â ›â ‚⠃⠇⠽" }, { "input": "interchanged", "output": "⠔⠞⠻⠡â â â ›â «" }, { "input": "interchanges", "output": "⠔⠞⠻⠡â â â ›â ‘â Ž" }, { "input": "interchanging", "output": "⠔⠞⠻⠡â â â ›â ¬" }, { "input": "intercollegiate", "output": "⠔⠞⠻⠉⠕⠇⠇⠑⠛⠊â â žâ ‘" }, { "input": "intercom", "output": "⠔⠞⠻⠉⠕â " }, { "input": "intercoms", "output": "⠔⠞⠻⠉⠕â â Ž" }, { "input": "interconnect", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞" }, { "input": "interconnected", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞⠫" }, { "input": "interconnecting", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞⠬" }, { "input": "interconnection", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠰â " }, { "input": "interconnections", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠰â â Ž" }, { "input": "interconnects", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞⠎" }, { "input": "intercontinental", "output": "⠔⠞⠻⠉⠕â â žâ ”⠢⠞â â ‡" }, { "input": "intercourse", "output": "⠔⠞⠻⠉⠳⠗⠎⠑" }, { "input": "interdenominational", "output": "⠔⠞⠻⠙⠢⠕â â ”â â °â â â ‡" }, { "input": "interdepartmental", "output": "⠔⠞⠻⠙⠑â â â °â žâ â ‡" }, { "input": "interdependence", "output": "⠔⠞⠻⠙⠑â â ¢â ™â °â ‘" }, { "input": "interdependent", "output": "⠔⠞⠻⠙⠑â â ¢â ™â ¢â ž" }, { "input": "interdict", "output": "⠔⠞⠻⠙⠊⠉⠞" }, { "input": "interdicted", "output": "⠔⠞⠻⠙⠊⠉⠞⠫" }, { "input": "interdicting", "output": "⠔⠞⠻⠙⠊⠉⠞⠬" }, { "input": "interdiction", "output": "⠔⠞⠻⠙⠊⠉⠰â " }, { "input": "interdicts", "output": "⠔⠞⠻⠙⠊⠉⠞⠎" }, { "input": "interdisciplinary", "output": "⠔⠞⠻⠙⠊⠎⠉⠊â â ‡â ”⠜⠽" }, { "input": "interest", "output": "⠔⠞⠻⠑⠌" }, { "input": "interested", "output": "⠔⠞⠻⠑⠌⠫" }, { "input": "interesting", "output": "⠔⠞⠻⠑⠌⠬" }, { "input": "interestingly", "output": "⠔⠞⠻⠑⠌⠬⠇⠽" }, { "input": "interests", "output": "⠔⠞⠻⠑⠌⠎" }, { "input": "interface", "output": "⠔⠞⠻⠋â â ‰â ‘" }, { "input": "interfaced", "output": "⠔⠞⠻⠋â â ‰â «" }, { "input": "interfaces", "output": "⠔⠞⠻⠋â â ‰â ‘â Ž" }, { "input": "interfacing", "output": "⠔⠞⠻⠋â â ‰â ¬" }, { "input": "interfaith", "output": "⠔⠞⠻⠋â â Šâ ¹" }, { "input": "interfere", "output": "⠔⠞⠻⠋⠻⠑" }, { "input": "interfered", "output": "⠔⠞⠻⠋⠻⠫" }, { "input": "interference", "output": "⠔⠞⠻⠋⠻⠰⠑" }, { "input": "interferes", "output": "⠔⠞⠻⠋⠻⠑⠎" }, { "input": "interfering", "output": "⠔⠞⠻⠋⠻⠬" }, { "input": "interferon", "output": "⠔⠞⠻⠋⠻⠕â " }, { "input": "intergalactic", "output": "⠔⠞⠻⠛â â ‡â â ‰â žâ Šâ ‰" }, { "input": "interim", "output": "⠔⠞⠻⠊â " }, { "input": "interior", "output": "⠔⠞⠻⠊⠕⠗" }, { "input": "interiors", "output": "⠔⠞⠻⠊⠕⠗⠎" }, { "input": "interject", "output": "⠔⠞⠻⠚⠑⠉⠞" }, { "input": "interjected", "output": "⠔⠞⠻⠚⠑⠉⠞⠫" }, { "input": "interjecting", "output": "⠔⠞⠻⠚⠑⠉⠞⠬" }, { "input": "interjection", "output": "⠔⠞⠻⠚⠑⠉⠰â " }, { "input": "interjections", "output": "⠔⠞⠻⠚⠑⠉⠰â â Ž" }, { "input": "interjects", "output": "⠔⠞⠻⠚⠑⠉⠞⠎" }, { "input": "interlace", "output": "⠔⠞⠻⠇â â ‰â ‘" }, { "input": "interlaced", "output": "⠔⠞⠻⠇â â ‰â «" }, { "input": "interlaces", "output": "⠔⠞⠻⠇â â ‰â ‘â Ž" }, { "input": "interlacing", "output": "⠔⠞⠻⠇â â ‰â ¬" }, { "input": "interlard", "output": "⠔⠞⠻⠇⠜⠙" }, { "input": "interlarded", "output": "⠔⠞⠻⠇⠜⠙⠫" }, { "input": "interlarding", "output": "⠔⠞⠻⠇⠜⠙⠬" }, { "input": "interlards", "output": "⠔⠞⠻⠇⠜⠙⠎" }, { "input": "interleave", "output": "⠔⠞⠻⠇⠂⠧⠑" }, { "input": "interleaved", "output": "⠔⠞⠻⠇⠂⠧⠫" }, { "input": "interleaves", "output": "⠔⠞⠻⠇⠂⠧⠑⠎" }, { "input": "interleaving", "output": "⠔⠞⠻⠇⠂⠧⠬" }, { "input": "interleukin", "output": "⠔⠞⠻⠇⠑⠥⠅⠔" }, { "input": "interlink", "output": "⠔⠞⠻⠇⠔⠅" }, { "input": "interlinked", "output": "⠔⠞⠻⠇⠔⠅⠫" }, { "input": "interlinking", "output": "⠔⠞⠻⠇⠔⠅⠬" }, { "input": "interlinks", "output": "⠔⠞⠻⠇⠔⠅⠎" }, { "input": "interlock", "output": "⠔⠞⠻⠇⠕⠉⠅" }, { "input": "interlocked", "output": "⠔⠞⠻⠇⠕⠉⠅⠫" }, { "input": "interlocking", "output": "⠔⠞⠻⠇⠕⠉⠅⠬" }, { "input": "interlocks", "output": "⠔⠞⠻⠇⠕⠉⠅⠎" }, { "input": "interlocutory", "output": "⠔⠞⠻⠇⠕⠉⠥⠞⠕⠗⠽" }, { "input": "interloper", "output": "⠔⠞⠻⠇⠕â â »" }, { "input": "interlopers", "output": "⠔⠞⠻⠇⠕â â »â Ž" }, { "input": "interlude", "output": "⠔⠞⠻⠇⠥⠙⠑" }, { "input": "interluded", "output": "⠔⠞⠻⠇⠥⠙⠫" }, { "input": "interludes", "output": "⠔⠞⠻⠇⠥⠙⠑⠎" }, { "input": "interluding", "output": "⠔⠞⠻⠇⠥⠙⠬" }, { "input": "intermarriage", "output": "⠔⠞⠻â â œâ —â Šâ â ›â ‘" }, { "input": "intermarriages", "output": "⠔⠞⠻â â œâ —â Šâ â ›â ‘â Ž" }, { "input": "intermarried", "output": "⠔⠞⠻â â œâ —â Šâ «" }, { "input": "intermarries", "output": "⠔⠞⠻â â œâ —â Šâ ‘â Ž" }, { "input": "intermarry", "output": "⠔⠞⠻â â œâ —â ½" }, { "input": "intermarrying", "output": "⠔⠞⠻â â œâ —⠽⠬" }, { "input": "intermediaries", "output": "⠔⠞⠻â â «â Šâ œâ Šâ ‘â Ž" }, { "input": "intermediary", "output": "⠔⠞⠻â â «â Šâ œâ ½" }, { "input": "intermediate", "output": "⠔⠞⠻â â «â Šâ â žâ ‘" }, { "input": "intermediates", "output": "⠔⠞⠻â â «â Šâ â žâ ‘â Ž" }, { "input": "interment", "output": "⠔⠞⠻⠰⠞" }, { "input": "interments", "output": "⠔⠞⠻⠰⠞⠎" }, { "input": "intermezzi", "output": "⠔⠞⠻â â ‘⠵⠵⠊" }, { "input": "intermezzo", "output": "⠔⠞⠻â â ‘⠵⠵⠕" }, { "input": "intermezzos", "output": "⠔⠞⠻â â ‘⠵⠵⠕⠎" }, { "input": "interminable", "output": "⠔⠞⠻â â ”â â ƒâ ‡â ‘" }, { "input": "interminably", "output": "⠔⠞⠻â â ”â â ƒâ ‡â ½" }, { "input": "intermingle", "output": "⠔⠞⠻â â ¬â ‡â ‘" }, { "input": "intermingled", "output": "⠔⠞⠻â â ¬â ‡â «" }, { "input": "intermingles", "output": "⠔⠞⠻â â ¬â ‡â ‘â Ž" }, { "input": "intermingling", "output": "⠔⠞⠻â â ¬â ‡â ¬" }, { "input": "intermission", "output": "⠔⠞⠻â â Šâ Žâ ¨â " }, { "input": "intermissions", "output": "⠔⠞⠻â â Šâ Žâ ¨â â Ž" }, { "input": "intermittent", "output": "⠔⠞⠻â â Šâ žâ žâ ¢â ž" }, { "input": "intermittently", "output": "⠔⠞⠻â â Šâ žâ žâ ¢â žâ ‡â ½" }, { "input": "intern", "output": "⠔⠞⠻â " }, { "input": "internal", "output": "⠔⠞⠻â â â ‡" }, { "input": "internalize", "output": "⠔⠞⠻â â â ‡â Šâ µâ ‘" }, { "input": "internalized", "output": "⠔⠞⠻â â â ‡â Šâ µâ «" }, { "input": "internalizes", "output": "⠔⠞⠻â â â ‡â Šâ µâ ‘â Ž" }, { "input": "internalizing", "output": "⠔⠞⠻â â â ‡â Šâ µâ ¬" }, { "input": "internally", "output": "⠔⠞⠻â â â ‡â ‡â ½" }, { "input": "internals", "output": "⠔⠞⠻â â â ‡â Ž" }, { "input": "international", "output": "⠔⠞⠻â â â °â â â ‡" }, { "input": "internationalism", "output": "⠔⠞⠻â â â °â â â ‡â Šâ Žâ " }, { "input": "internationalize", "output": "⠔⠞⠻â â â °â â â ‡â Šâ µâ ‘" }, { "input": "internationalized", "output": "⠔⠞⠻â â â °â â â ‡â Šâ µâ «" }, { "input": "internationalizes", "output": "⠔⠞⠻â â â °â â â ‡â Šâ µâ ‘â Ž" }, { "input": "internationalizing", "output": "⠔⠞⠻â â â °â â â ‡â Šâ µâ ¬" }, { "input": "internationally", "output": "⠔⠞⠻â â â °â â â ‡â ‡â ½" }, { "input": "internationals", "output": "⠔⠞⠻â â â °â â â ‡â Ž" }, { "input": "interne", "output": "⠔⠞⠻â â ‘" }, { "input": "internecine", "output": "⠔⠞⠻â â ‘⠉⠔⠑" }, { "input": "interned", "output": "⠔⠞⠻â â «" }, { "input": "internee", "output": "⠔⠞⠻â â ‘â ‘" }, { "input": "internees", "output": "⠔⠞⠻â â ‘â ‘â Ž" }, { "input": "internement", "output": "⠔⠞⠻â â ‘â °â ž" }, { "input": "internes", "output": "⠔⠞⠻â â ‘â Ž" }, { "input": "interneship", "output": "⠔⠞⠻â â ‘â ©â Šâ " }, { "input": "interneships", "output": "⠔⠞⠻â â ‘â ©â Šâ â Ž" }, { "input": "internet", "output": "⠔⠞⠻â â ‘â ž" }, { "input": "interning", "output": "⠔⠞⠻â â ¬" }, { "input": "internist", "output": "⠔⠞⠻â â Šâ Œ" }, { "input": "internists", "output": "⠔⠞⠻â â Šâ Œâ Ž" }, { "input": "internment", "output": "⠔⠞⠻â â °â ž" }, { "input": "interns", "output": "⠔⠞⠻â â Ž" }, { "input": "internship", "output": "⠔⠞⠻â â ©â Šâ " }, { "input": "internships", "output": "⠔⠞⠻â â ©â Šâ â Ž" }, { "input": "interoffice", "output": "⠔⠞⠻⠷⠋⠊⠉⠑" }, { "input": "interpersonal", "output": "⠔⠞⠻â â »â Žâ •â â â ‡" }, { "input": "interplanetary", "output": "⠔⠞⠻â â ‡â â â ‘⠞⠜⠽" }, { "input": "interplay", "output": "⠔⠞⠻â â ‡â â ½" }, { "input": "interpolate", "output": "⠔⠞⠻â â •â ‡â â žâ ‘" }, { "input": "interpolated", "output": "⠔⠞⠻â â •â ‡â â žâ «" }, { "input": "interpolates", "output": "⠔⠞⠻â â •â ‡â â žâ ‘â Ž" }, { "input": "interpolating", "output": "⠔⠞⠻â â •â ‡â â žâ ¬" }, { "input": "interpolation", "output": "⠔⠞⠻â â •â ‡â â °â " }, { "input": "interpolations", "output": "⠔⠞⠻â â •â ‡â â °â â Ž" }, { "input": "interpose", "output": "⠔⠞⠻â â •â Žâ ‘" }, { "input": "interposed", "output": "⠔⠞⠻â â •â Žâ «" }, { "input": "interposes", "output": "⠔⠞⠻â â •â Žâ ‘â Ž" }, { "input": "interposing", "output": "⠔⠞⠻â â •â Žâ ¬" }, { "input": "interposition", "output": "⠔⠞⠻â â •â Žâ Šâ °â " }, { "input": "interpret", "output": "⠔⠞⠻â â —â ‘â ž" }, { "input": "interpretation", "output": "⠔⠞⠻â â —â ‘â žâ â °â " }, { "input": "interpretations", "output": "⠔⠞⠻â â —â ‘â žâ â °â â Ž" }, { "input": "interpretative", "output": "⠔⠞⠻â â —â ‘â žâ â žâ Šâ §â ‘" }, { "input": "interpreted", "output": "⠔⠞⠻â â —â ‘â žâ «" }, { "input": "interpreter", "output": "⠔⠞⠻â â —â ‘â žâ »" }, { "input": "interpreters", "output": "⠔⠞⠻â â —⠑⠞⠻⠎" }, { "input": "interpreting", "output": "⠔⠞⠻â â —â ‘â žâ ¬" }, { "input": "interpretive", "output": "⠔⠞⠻â â —â ‘â žâ Šâ §â ‘" }, { "input": "interprets", "output": "⠔⠞⠻â â —â ‘â žâ Ž" }, { "input": "interracial", "output": "⠔⠞⠻⠗â â ‰â Šâ â ‡" }, { "input": "interred", "output": "⠔⠞⠻⠗⠫" }, { "input": "interrelate", "output": "⠔⠞⠻⠗⠑⠇â â žâ ‘" }, { "input": "interrelated", "output": "⠔⠞⠻⠗⠑⠇â â žâ «" }, { "input": "interrelates", "output": "⠔⠞⠻⠗⠑⠇â â žâ ‘â Ž" }, { "input": "interrelating", "output": "⠔⠞⠻⠗⠑⠇â â žâ ¬" }, { "input": "interrelation", "output": "⠔⠞⠻⠗⠑⠇â â °â " }, { "input": "interrelations", "output": "⠔⠞⠻⠗⠑⠇â â °â â Ž" }, { "input": "interrelationship", "output": "⠔⠞⠻⠗⠑⠇â â °â â ©â Šâ " }, { "input": "interrelationships", "output": "⠔⠞⠻⠗⠑⠇â â °â â ©â Šâ â Ž" }, { "input": "interring", "output": "⠔⠞⠻⠗⠬" }, { "input": "interrogate", "output": "⠔⠞⠻⠗⠕⠛â â žâ ‘" }, { "input": "interrogated", "output": "⠔⠞⠻⠗⠕⠛â â žâ «" }, { "input": "interrogates", "output": "⠔⠞⠻⠗⠕⠛â â žâ ‘â Ž" }, { "input": "interrogating", "output": "⠔⠞⠻⠗⠕⠛â â žâ ¬" }, { "input": "interrogation", "output": "⠔⠞⠻⠗⠕⠛â â °â " }, { "input": "interrogations", "output": "⠔⠞⠻⠗⠕⠛â â °â â Ž" }, { "input": "interrogative", "output": "⠔⠞⠻⠗⠕⠛â â žâ Šâ §â ‘" }, { "input": "interrogatives", "output": "⠔⠞⠻⠗⠕⠛â â žâ Šâ §â ‘â Ž" }, { "input": "interrogator", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —" }, { "input": "interrogatories", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â Šâ ‘â Ž" }, { "input": "interrogators", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â Ž" }, { "input": "interrogatory", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â ½" }, { "input": "interrupt", "output": "⠔⠞⠻⠗⠥â â ž" }, { "input": "interrupted", "output": "⠔⠞⠻⠗⠥â â žâ «" }, { "input": "interrupting", "output": "⠔⠞⠻⠗⠥â â žâ ¬" }, { "input": "interruption", "output": "⠔⠞⠻⠗⠥â â °â " }, { "input": "interruptions", "output": "⠔⠞⠻⠗⠥â â °â â Ž" }, { "input": "interrupts", "output": "⠔⠞⠻⠗⠥â â žâ Ž" }, { "input": "inters", "output": "⠔⠞⠻⠎" }, { "input": "interscholastic", "output": "⠔⠞⠻⠎⠡⠕⠇â â Œâ Šâ ‰" }, { "input": "intersect", "output": "⠔⠞⠻⠎⠑⠉⠞" }, { "input": "intersected", "output": "⠔⠞⠻⠎⠑⠉⠞⠫" }, { "input": "intersecting", "output": "⠔⠞⠻⠎⠑⠉⠞⠬" }, { "input": "intersection", "output": "⠔⠞⠻⠎⠑⠉⠰â " }, { "input": "intersections", "output": "⠔⠞⠻⠎⠑⠉⠰â â Ž" }, { "input": "intersects", "output": "⠔⠞⠻⠎⠑⠉⠞⠎" }, { "input": "intersperse", "output": "⠔⠞⠻⠎â â »â Žâ ‘" }, { "input": "interspersed", "output": "⠔⠞⠻⠎â â »â Žâ «" }, { "input": "intersperses", "output": "⠔⠞⠻⠎â â »â Žâ ‘â Ž" }, { "input": "interspersing", "output": "⠔⠞⠻⠎â â »â Žâ ¬" }, { "input": "interstate", "output": "⠔⠞⠻⠌â â žâ ‘" }, { "input": "interstates", "output": "⠔⠞⠻⠌â â žâ ‘â Ž" }, { "input": "interstellar", "output": "⠔⠞⠻⠌⠑⠇⠇⠜" }, { "input": "interstice", "output": "⠔⠞⠻⠌⠊⠉⠑" }, { "input": "interstices", "output": "⠔⠞⠻⠌⠊⠉⠑⠎" }, { "input": "intertwine", "output": "⠔⠞⠻⠞⠺⠔⠑" }, { "input": "intertwined", "output": "⠔⠞⠻⠞⠺⠔⠫" }, { "input": "intertwines", "output": "⠔⠞⠻⠞⠺⠔⠑⠎" }, { "input": "intertwining", "output": "⠔⠞⠻⠞⠺⠔⠬" }, { "input": "interurban", "output": "⠔⠞⠻⠥⠗⠃â â " }, { "input": "interval", "output": "⠔⠞⠻⠧â â ‡" }, { "input": "intervals", "output": "⠔⠞⠻⠧â â ‡â Ž" }, { "input": "intervene", "output": "⠔⠞⠻⠧⠢⠑" }, { "input": "intervened", "output": "⠔⠞⠻⠧⠢⠫" }, { "input": "intervenes", "output": "⠔⠞⠻⠧⠢⠑⠎" }, { "input": "intervening", "output": "⠔⠞⠻⠧⠢⠬" }, { "input": "intervention", "output": "⠔⠞⠻⠧⠢⠰â " }, { "input": "interventions", "output": "⠔⠞⠻⠧⠢⠰â â Ž" }, { "input": "interview", "output": "⠔⠞⠻⠧⠊⠑⠺" }, { "input": "interviewed", "output": "⠔⠞⠻⠧⠊⠑⠺⠫" }, { "input": "interviewee", "output": "⠔⠞⠻⠧⠊⠑⠺⠑⠑" }, { "input": "interviewees", "output": "⠔⠞⠻⠧⠊⠑⠺⠑⠑⠎" }, { "input": "interviewer", "output": "⠔⠞⠻⠧⠊⠑⠺⠻" }, { "input": "interviewers", "output": "⠔⠞⠻⠧⠊⠑⠺⠻⠎" }, { "input": "interviewing", "output": "⠔⠞⠻⠧⠊⠑⠺⠬" }, { "input": "interviews", "output": "⠔⠞⠻⠧⠊⠑⠺⠎" }, { "input": "interweave", "output": "⠔⠞⠻⠺⠂⠧⠑" }, { "input": "interweaved", "output": "⠔⠞⠻⠺⠂⠧⠫" }, { "input": "interweaves", "output": "⠔⠞⠻⠺⠂⠧⠑⠎" }, { "input": "interweaving", "output": "⠔⠞⠻⠺⠂⠧⠬" }, { "input": "interwove", "output": "⠔⠞⠻⠺⠕⠧⠑" }, { "input": "interwoven", "output": "⠔⠞⠻⠺⠕⠧⠢" }, { "input": "intestate", "output": "⠔⠞⠑⠌â â žâ ‘" }, { "input": "intestinal", "output": "⠔⠞⠑⠌⠔â â ‡" }, { "input": "intestine", "output": "⠔⠞⠑⠌⠔⠑" }, { "input": "intestines", "output": "⠔⠞⠑⠌⠔⠑⠎" }, { "input": "intimacies", "output": "⠔⠞⠊â â â ‰â Šâ ‘â Ž" }, { "input": "intimacy", "output": "⠔⠞⠊â â â ‰â ½" }, { "input": "intimate", "output": "⠔⠞⠊â â â žâ ‘" }, { "input": "intimated", "output": "⠔⠞⠊â â â žâ «" }, { "input": "intimately", "output": "⠔⠞⠊â â â žâ ‘⠇⠽" }, { "input": "intimates", "output": "⠔⠞⠊â â â žâ ‘â Ž" }, { "input": "intimating", "output": "⠔⠞⠊â â â žâ ¬" }, { "input": "intimation", "output": "⠔⠞⠊â â â °â " }, { "input": "intimations", "output": "⠔⠞⠊â â â °â â Ž" }, { "input": "intimidate", "output": "⠔⠞⠊â â Šâ ™â â žâ ‘" }, { "input": "intimidated", "output": "⠔⠞⠊â â Šâ ™â â žâ «" }, { "input": "intimidates", "output": "⠔⠞⠊â â Šâ ™â â žâ ‘â Ž" }, { "input": "intimidating", "output": "⠔⠞⠊â â Šâ ™â â žâ ¬" }, { "input": "intimidation", "output": "⠔⠞⠊â â Šâ ™â â °â " }, { "input": "into", "output": "⠔⠞⠕" }, { "input": "intolerable", "output": "⠔⠞⠕⠇⠻â â ƒâ ‡â ‘" }, { "input": "intolerably", "output": "⠔⠞⠕⠇⠻â â ƒâ ‡â ½" }, { "input": "intolerance", "output": "⠔⠞⠕⠇⠻⠨⠑" }, { "input": "intolerant", "output": "⠔⠞⠕⠇⠻â â â ž" }, { "input": "intonation", "output": "⠔⠞⠕â â â °â " }, { "input": "intonations", "output": "⠔⠞⠕â â â °â â Ž" }, { "input": "intone", "output": "⠔⠞â â •" }, { "input": "intoned", "output": "⠔⠞⠕â â «" }, { "input": "intones", "output": "⠔⠞â â •â Ž" }, { "input": "intoning", "output": "⠔⠞⠕â â ¬" }, { "input": "intoxicant", "output": "⠔⠞⠕⠭⠊⠉â â â ž" }, { "input": "intoxicants", "output": "⠔⠞⠕⠭⠊⠉â â â žâ Ž" }, { "input": "intoxicate", "output": "⠔⠞⠕⠭⠊⠉â â žâ ‘" }, { "input": "intoxicated", "output": "⠔⠞⠕⠭⠊⠉â â žâ «" }, { "input": "intoxicates", "output": "⠔⠞⠕⠭⠊⠉â â žâ ‘â Ž" }, { "input": "intoxicating", "output": "⠔⠞⠕⠭⠊⠉â â žâ ¬" }, { "input": "intoxication", "output": "⠔⠞⠕⠭⠊⠉â â °â " }, { "input": "intractability", "output": "⠔⠞⠗â â ‰â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "intractable", "output": "⠔⠞⠗â â ‰â žâ â ƒâ ‡â ‘" }, { "input": "intramural", "output": "⠔⠞⠗â â â ¥â —â â ‡" }, { "input": "intransigence", "output": "⠔⠞⠗â â â Žâ Šâ ›â °â ‘" }, { "input": "intransigent", "output": "⠔⠞⠗â â â Žâ Šâ ›â ¢â ž" }, { "input": "intransigents", "output": "⠔⠞⠗â â â Žâ Šâ ›â ¢â žâ Ž" }, { "input": "intransitive", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘" }, { "input": "intransitively", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "intransitives", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "intravenous", "output": "⠔⠞⠗â â §â ¢â ³â Ž" }, { "input": "intravenouses", "output": "⠔⠞⠗â â §â ¢â ³â Žâ ‘â Ž" }, { "input": "intravenously", "output": "⠔⠞⠗â â §â ¢â ³â Žâ ‡â ½" }, { "input": "intrench", "output": "⠔⠞⠗⠢⠡" }, { "input": "intrenched", "output": "⠔⠞⠗⠢⠡⠫" }, { "input": "intrenches", "output": "⠔⠞⠗⠢⠡⠑⠎" }, { "input": "intrenching", "output": "⠔⠞⠗⠢⠡⠬" }, { "input": "intrenchment", "output": "⠔⠞⠗⠢⠡⠰⠞" }, { "input": "intrepid", "output": "⠔⠞⠗⠑â â Šâ ™" }, { "input": "intrepidly", "output": "⠔⠞⠗⠑â â Šâ ™â ‡â ½" }, { "input": "intricacies", "output": "⠔⠞⠗⠊⠉â â ‰â Šâ ‘â Ž" }, { "input": "intricacy", "output": "⠔⠞⠗⠊⠉â â ‰â ½" }, { "input": "intricate", "output": "⠔⠞⠗⠊⠉â â žâ ‘" }, { "input": "intricately", "output": "⠔⠞⠗⠊⠉â â žâ ‘⠇⠽" }, { "input": "intrigue", "output": "⠔⠞⠗⠊⠛⠥⠑" }, { "input": "intrigued", "output": "⠔⠞⠗⠊⠛⠥⠫" }, { "input": "intrigues", "output": "⠔⠞⠗⠊⠛⠥⠑⠎" }, { "input": "intriguing", "output": "⠔⠞⠗⠊⠛⠥⠬" }, { "input": "intriguingly", "output": "⠔⠞⠗⠊⠛⠥⠬⠇⠽" }, { "input": "intrinsic", "output": "⠔⠞⠗⠔⠎⠊⠉" }, { "input": "intrinsically", "output": "⠔⠞⠗⠔⠎⠊⠉â â ‡â ‡â ½" }, { "input": "introduce", "output": "⠔⠞⠗⠕⠙⠥⠉⠑" }, { "input": "introduced", "output": "⠔⠞⠗⠕⠙⠥⠉⠫" }, { "input": "introduces", "output": "⠔⠞⠗⠕⠙⠥⠉⠑⠎" }, { "input": "introducing", "output": "⠔⠞⠗⠕⠙⠥⠉⠬" }, { "input": "introduction", "output": "⠔⠞⠗⠕⠙⠥⠉⠰â " }, { "input": "introductions", "output": "⠔⠞⠗⠕⠙⠥⠉⠰â â Ž" }, { "input": "introductory", "output": "⠔⠞⠗⠕⠙⠥⠉⠞⠕⠗⠽" }, { "input": "intros", "output": "⠔⠞⠗⠕⠎" }, { "input": "introspection", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠰â " }, { "input": "introspective", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠞⠊⠧⠑" }, { "input": "introversion", "output": "⠔⠞⠗⠕⠧⠻⠨â " }, { "input": "introvert", "output": "⠔⠞⠗⠕⠧⠻⠞" }, { "input": "introverted", "output": "⠔⠞⠗⠕⠧⠻⠞⠫" }, { "input": "introverts", "output": "⠔⠞⠗⠕⠧⠻⠞⠎" }, { "input": "intrude", "output": "⠔⠞⠗⠥⠙⠑" }, { "input": "intruded", "output": "⠔⠞⠗⠥⠙⠫" }, { "input": "intruder", "output": "⠔⠞⠗⠥⠙⠻" }, { "input": "intruders", "output": "⠔⠞⠗⠥⠙⠻⠎" }, { "input": "intrudes", "output": "⠔⠞⠗⠥⠙⠑⠎" }, { "input": "intruding", "output": "⠔⠞⠗⠥⠙⠬" }, { "input": "intrusion", "output": "⠔⠞⠗⠥⠨â " }, { "input": "intrusions", "output": "⠔⠞⠗⠥⠨â â Ž" }, { "input": "intrusive", "output": "⠔⠞⠗⠥⠎⠊⠧⠑" }, { "input": "intrust", "output": "⠔⠞⠗⠥⠌" }, { "input": "intrusted", "output": "⠔⠞⠗⠥⠌⠫" }, { "input": "intrusting", "output": "⠔⠞⠗⠥⠌⠬" }, { "input": "intrusts", "output": "⠔⠞⠗⠥⠌⠎" }, { "input": "intuit", "output": "⠔⠞⠥⠊⠞" }, { "input": "intuited", "output": "⠔⠞⠥⠊⠞⠫" }, { "input": "intuiting", "output": "⠔⠞⠥⠊⠞⠬" }, { "input": "intuition", "output": "⠔⠞⠥⠊⠰â " }, { "input": "intuitions", "output": "⠔⠞⠥⠊⠰â â Ž" }, { "input": "intuitive", "output": "⠔⠞⠥⠊⠞⠊⠧⠑" }, { "input": "intuitively", "output": "⠔⠞⠥⠊⠞⠊⠧⠑⠇⠽" }, { "input": "intuits", "output": "⠔⠞⠥⠊⠞⠎" }, { "input": "inundate", "output": "⠔⠥â â ™â â žâ ‘" }, { "input": "inundated", "output": "⠔⠥â â ™â â žâ «" }, { "input": "inundates", "output": "⠔⠥â â ™â â žâ ‘â Ž" }, { "input": "inundating", "output": "⠔⠥â â ™â â žâ ¬" }, { "input": "inundation", "output": "⠔⠥â â ™â â °â " }, { "input": "inundations", "output": "⠔⠥â â ™â â °â â Ž" }, { "input": "inure", "output": "⠔⠥⠗⠑" }, { "input": "inured", "output": "⠔⠥⠗⠫" }, { "input": "inures", "output": "⠔⠥⠗⠑⠎" }, { "input": "inuring", "output": "⠔⠥⠗⠬" }, { "input": "invade", "output": "⠔⠧â â ™â ‘" }, { "input": "invaded", "output": "⠔⠧â â ™â «" }, { "input": "invader", "output": "⠔⠧â â ™â »" }, { "input": "invaders", "output": "⠔⠧â â ™â »â Ž" }, { "input": "invades", "output": "⠔⠧â â ™â ‘â Ž" }, { "input": "invading", "output": "⠔⠧â â ™â ¬" }, { "input": "invalid", "output": "⠔⠧â â ‡â Šâ ™" }, { "input": "invalidate", "output": "⠔⠧â â ‡â Šâ ™â â žâ ‘" }, { "input": "invalidated", "output": "⠔⠧â â ‡â Šâ ™â â žâ «" }, { "input": "invalidates", "output": "⠔⠧â â ‡â Šâ ™â â žâ ‘â Ž" }, { "input": "invalidating", "output": "⠔⠧â â ‡â Šâ ™â â žâ ¬" }, { "input": "invalidation", "output": "⠔⠧â â ‡â Šâ ™â â °â " }, { "input": "invalided", "output": "⠔⠧â â ‡â Šâ ™â «" }, { "input": "invaliding", "output": "⠔⠧â â ‡â Šâ ™â ¬" }, { "input": "invalidity", "output": "⠔⠧â â ‡â Šâ ™â °â ½" }, { "input": "invalids", "output": "⠔⠧â â ‡â Šâ ™â Ž" }, { "input": "invaluable", "output": "⠔⠧â â ‡â ¥â â ƒâ ‡â ‘" }, { "input": "invariable", "output": "⠔⠧⠜⠊â â ƒâ ‡â ‘" }, { "input": "invariables", "output": "⠔⠧⠜⠊â â ƒâ ‡â ‘â Ž" }, { "input": "invariably", "output": "⠔⠧⠜⠊â â ƒâ ‡â ½" }, { "input": "invariant", "output": "⠔⠧⠜⠊â â â ž" }, { "input": "invasion", "output": "⠔⠧â â ¨â " }, { "input": "invasions", "output": "⠔⠧â â ¨â â Ž" }, { "input": "invasive", "output": "⠔⠧â â Žâ Šâ §â ‘" }, { "input": "invective", "output": "⠔⠧⠑⠉⠞⠊⠧⠑" }, { "input": "inveigh", "output": "⠔⠧⠑⠊⠣" }, { "input": "inveighed", "output": "⠔⠧⠑⠊⠣⠫" }, { "input": "inveighing", "output": "⠔⠧⠑⠊⠣⠬" }, { "input": "inveighs", "output": "⠔⠧⠑⠊⠣⠎" }, { "input": "inveigle", "output": "⠔⠧⠑⠊⠛⠇⠑" }, { "input": "inveigled", "output": "⠔⠧⠑⠊⠛⠇⠫" }, { "input": "inveigles", "output": "⠔⠧⠑⠊⠛⠇⠑⠎" }, { "input": "inveigling", "output": "⠔⠧⠑⠊⠛⠇⠬" }, { "input": "invent", "output": "⠔⠧⠢⠞" }, { "input": "invented", "output": "⠔⠧⠢⠞⠫" }, { "input": "inventing", "output": "⠔⠧⠢⠞⠬" }, { "input": "invention", "output": "⠔⠧⠢⠰â " }, { "input": "inventions", "output": "⠔⠧⠢⠰â â Ž" }, { "input": "inventive", "output": "⠔⠧⠢⠞⠊⠧⠑" }, { "input": "inventiveness", "output": "⠔⠧⠢⠞⠊⠧⠑⠰⠎" }, { "input": "inventor", "output": "⠔⠧⠢⠞⠕⠗" }, { "input": "inventoried", "output": "⠔⠧⠢⠞⠕⠗⠊⠫" }, { "input": "inventories", "output": "⠔⠧⠢⠞⠕⠗⠊⠑⠎" }, { "input": "inventors", "output": "⠔⠧⠢⠞⠕⠗⠎" }, { "input": "inventory", "output": "⠔⠧⠢⠞⠕⠗⠽" }, { "input": "inventorying", "output": "⠔⠧⠢⠞⠕⠗⠽⠬" }, { "input": "invents", "output": "⠔⠧⠢⠞⠎" }, { "input": "inverse", "output": "⠔⠧⠻⠎⠑" }, { "input": "inversely", "output": "⠔⠧⠻⠎⠑⠇⠽" }, { "input": "inverses", "output": "⠔⠧⠻⠎⠑⠎" }, { "input": "inversion", "output": "⠔⠧⠻⠨â " }, { "input": "inversions", "output": "⠔⠧⠻⠨â â Ž" }, { "input": "invert", "output": "⠔⠧⠻⠞" }, { "input": "invertebrate", "output": "⠔⠧⠻⠞⠑⠃⠗â â žâ ‘" }, { "input": "invertebrates", "output": "⠔⠧⠻⠞⠑⠃⠗â â žâ ‘â Ž" }, { "input": "inverted", "output": "⠔⠧⠻⠞⠫" }, { "input": "inverting", "output": "⠔⠧⠻⠞⠬" }, { "input": "inverts", "output": "⠔⠧⠻⠞⠎" }, { "input": "invest", "output": "⠔⠧⠑⠌" }, { "input": "invested", "output": "⠔⠧⠑⠌⠫" }, { "input": "investigate", "output": "⠔⠧⠑⠌⠊⠛â â žâ ‘" }, { "input": "investigated", "output": "⠔⠧⠑⠌⠊⠛â â žâ «" }, { "input": "investigates", "output": "⠔⠧⠑⠌⠊⠛â â žâ ‘â Ž" }, { "input": "investigating", "output": "⠔⠧⠑⠌⠊⠛â â žâ ¬" }, { "input": "investigation", "output": "⠔⠧⠑⠌⠊⠛â â °â " }, { "input": "investigations", "output": "⠔⠧⠑⠌⠊⠛â â °â â Ž" }, { "input": "investigative", "output": "⠔⠧⠑⠌⠊⠛â â žâ Šâ §â ‘" }, { "input": "investigator", "output": "⠔⠧⠑⠌⠊⠛â â žâ •â —" }, { "input": "investigators", "output": "⠔⠧⠑⠌⠊⠛â â žâ •â —â Ž" }, { "input": "investing", "output": "⠔⠧⠑⠌⠬" }, { "input": "investiture", "output": "⠔⠧⠑⠌⠊⠞⠥⠗⠑" }, { "input": "investitures", "output": "⠔⠧⠑⠌⠊⠞⠥⠗⠑⠎" }, { "input": "investment", "output": "⠔⠧⠑⠌⠰⠞" }, { "input": "investments", "output": "⠔⠧⠑⠌⠰⠞⠎" }, { "input": "investor", "output": "⠔⠧⠑⠌⠕⠗" }, { "input": "investors", "output": "⠔⠧⠑⠌⠕⠗⠎" }, { "input": "invests", "output": "⠔⠧⠑⠌⠎" }, { "input": "inveterate", "output": "⠔⠧⠑⠞⠻â â žâ ‘" }, { "input": "invidious", "output": "⠔⠧⠊⠙⠊⠳⠎" }, { "input": "invidiously", "output": "⠔⠧⠊⠙⠊⠳⠎⠇⠽" }, { "input": "invigorate", "output": "⠔⠧⠊⠛⠕⠗â â žâ ‘" }, { "input": "invigorated", "output": "⠔⠧⠊⠛⠕⠗â â žâ «" }, { "input": "invigorates", "output": "⠔⠧⠊⠛⠕⠗â â žâ ‘â Ž" }, { "input": "invigorating", "output": "⠔⠧⠊⠛⠕⠗â â žâ ¬" }, { "input": "invigoration", "output": "⠔⠧⠊⠛⠕⠗â â °â " }, { "input": "invincibility", "output": "⠔⠧⠔⠉⠊⠃⠊⠇⠰⠽" }, { "input": "invincible", "output": "⠔⠧⠔⠉⠊⠃⠇⠑" }, { "input": "invincibly", "output": "⠔⠧⠔⠉⠊⠃⠇⠽" }, { "input": "inviolability", "output": "⠔⠧⠊⠕⠇â â ƒâ Šâ ‡â °â ½" }, { "input": "inviolable", "output": "⠔⠧⠊⠕⠇â â ƒâ ‡â ‘" }, { "input": "inviolate", "output": "⠔⠧⠊⠕⠇â â žâ ‘" }, { "input": "invisibility", "output": "⠔⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "invisible", "output": "⠔⠧⠊⠎⠊⠃⠇⠑" }, { "input": "invisibly", "output": "⠔⠧⠊⠎⠊⠃⠇⠽" }, { "input": "invitation", "output": "⠔⠧⠊⠞â â °â " }, { "input": "invitational", "output": "⠔⠧⠊⠞â â °â â â ‡" }, { "input": "invitationals", "output": "⠔⠧⠊⠞â â °â â â ‡â Ž" }, { "input": "invitations", "output": "⠔⠧⠊⠞â â °â â Ž" }, { "input": "invite", "output": "⠔⠧⠊⠞⠑" }, { "input": "invited", "output": "⠔⠧⠊⠞⠫" }, { "input": "invites", "output": "⠔⠧⠊⠞⠑⠎" }, { "input": "inviting", "output": "⠔⠧⠊⠞⠬" }, { "input": "invitingly", "output": "⠔⠧⠊⠞⠬⠇⠽" }, { "input": "invocation", "output": "⠔⠧⠕⠉â â °â " }, { "input": "invocations", "output": "⠔⠧⠕⠉â â °â â Ž" }, { "input": "invoice", "output": "⠔⠧⠕⠊⠉⠑" }, { "input": "invoiced", "output": "⠔⠧⠕⠊⠉⠫" }, { "input": "invoices", "output": "⠔⠧⠕⠊⠉⠑⠎" }, { "input": "invoicing", "output": "⠔⠧⠕⠊⠉⠬" }, { "input": "invoke", "output": "⠔⠧⠕⠅⠑" }, { "input": "invoked", "output": "⠔⠧⠕⠅⠫" }, { "input": "invokes", "output": "⠔⠧⠕⠅⠑⠎" }, { "input": "invoking", "output": "⠔⠧⠕⠅⠬" }, { "input": "involuntarily", "output": "⠔⠧⠕⠇⠥â â žâ œâ Šâ ‡â ½" }, { "input": "involuntary", "output": "⠔⠧⠕⠇⠥â â žâ œâ ½" }, { "input": "involve", "output": "⠔⠧⠕⠇⠧⠑" }, { "input": "involved", "output": "⠔⠧⠕⠇⠧⠫" }, { "input": "involvement", "output": "⠔⠧⠕⠇⠧⠑⠰⠞" }, { "input": "involvements", "output": "⠔⠧⠕⠇⠧⠑⠰⠞⠎" }, { "input": "involves", "output": "⠔⠧⠕⠇⠧⠑⠎" }, { "input": "involving", "output": "⠔⠧⠕⠇⠧⠬" }, { "input": "invulnerability", "output": "⠔⠧⠥⠇â â »â â ƒâ Šâ ‡â °â ½" }, { "input": "invulnerable", "output": "⠔⠧⠥⠇â â »â â ƒâ ‡â ‘" }, { "input": "invulnerably", "output": "⠔⠧⠥⠇â â »â â ƒâ ‡â ½" }, { "input": "inward", "output": "⠔⠺⠜⠙" }, { "input": "inwardly", "output": "⠔⠺⠜⠙⠇⠽" }, { "input": "inwards", "output": "⠔⠺⠜⠙⠎" }, { "input": "iodine", "output": "⠊⠕⠙⠔⠑" }, { "input": "iodize", "output": "⠊⠕⠙⠊⠵⠑" }, { "input": "iodized", "output": "⠊⠕⠙⠊⠵⠫" }, { "input": "iodizes", "output": "⠊⠕⠙⠊⠵⠑⠎" }, { "input": "iodizing", "output": "⠊⠕⠙⠊⠵⠬" }, { "input": "ion", "output": "â Šâ •â " }, { "input": "ionization", "output": "â Šâ •â â Šâ µâ â °â " }, { "input": "ionize", "output": "â Šâ •â â Šâ µâ ‘" }, { "input": "ionized", "output": "â Šâ •â â Šâ µâ «" }, { "input": "ionizer", "output": "â Šâ •â â Šâ µâ »" }, { "input": "ionizers", "output": "â Šâ •â â Šâ µâ »â Ž" }, { "input": "ionizes", "output": "â Šâ •â â Šâ µâ ‘â Ž" }, { "input": "ionizing", "output": "â Šâ •â â Šâ µâ ¬" }, { "input": "ionosphere", "output": "â Šâ •â â •â Žâ â â “" }, { "input": "ionospheres", "output": "â Šâ •â â •â Žâ â â “â Ž" }, { "input": "ions", "output": "â Šâ •â â Ž" }, { "input": "iota", "output": "â Šâ •â žâ " }, { "input": "iotas", "output": "â Šâ •â žâ â Ž" }, { "input": "ipecac", "output": "â Šâ â ‘â ‰â â ‰" }, { "input": "ipecacs", "output": "â Šâ â ‘â ‰â â ‰â Ž" }, { "input": "irascibility", "output": "â Šâ —â â Žâ ‰â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "irascible", "output": "â Šâ —â â Žâ ‰â Šâ ƒâ ‡â ‘" }, { "input": "irate", "output": "â Šâ —â â žâ ‘" }, { "input": "irately", "output": "â Šâ —â â žâ ‘⠇⠽" }, { "input": "irateness", "output": "â Šâ —â â žâ ‘â °â Ž" }, { "input": "ire", "output": "â Šâ —â ‘" }, { "input": "iridescence", "output": "⠊⠗⠊⠙⠑⠎⠉⠰⠑" }, { "input": "iridescent", "output": "⠊⠗⠊⠙⠑⠎⠉⠢⠞" }, { "input": "iridium", "output": "⠊⠗⠊⠙⠊⠥â " }, { "input": "iris", "output": "â Šâ —â Šâ Ž" }, { "input": "irises", "output": "â Šâ —â Šâ Žâ ‘â Ž" }, { "input": "irk", "output": "â Šâ —â …" }, { "input": "irked", "output": "â Šâ —â …â «" }, { "input": "irking", "output": "â Šâ —â …â ¬" }, { "input": "irks", "output": "â Šâ —â …â Ž" }, { "input": "irksome", "output": "â Šâ —â …â â Ž" }, { "input": "iron", "output": "â Šâ —â •â " }, { "input": "ironclad", "output": "â Šâ —â •â â ‰â ‡â â ™" }, { "input": "ironclads", "output": "â Šâ —â •â â ‰â ‡â â ™â Ž" }, { "input": "ironed", "output": "â Šâ —â •â â «" }, { "input": "ironic", "output": "â Šâ —â •â â Šâ ‰" }, { "input": "ironical", "output": "â Šâ —â •â â Šâ ‰â â ‡" }, { "input": "ironically", "output": "â Šâ —â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "ironies", "output": "â Šâ —â •â â Šâ ‘â Ž" }, { "input": "ironing", "output": "â Šâ —â •â â ¬" }, { "input": "irons", "output": "â Šâ —â •â â Ž" }, { "input": "ironware", "output": "â Šâ —â •â â ºâ œâ ‘" }, { "input": "ironwork", "output": "â Šâ —â •â â â º" }, { "input": "irony", "output": "â Šâ —â •â â ½" }, { "input": "irradiate", "output": "â Šâ —â —â â ™â Šâ â žâ ‘" }, { "input": "irradiated", "output": "â Šâ —â —â â ™â Šâ â žâ «" }, { "input": "irradiates", "output": "â Šâ —â —â â ™â Šâ â žâ ‘â Ž" }, { "input": "irradiating", "output": "â Šâ —â —â â ™â Šâ â žâ ¬" }, { "input": "irradiation", "output": "â Šâ —â —â â ™â Šâ â °â " }, { "input": "irrational", "output": "â Šâ —â —â â °â â â ‡" }, { "input": "irrationality", "output": "â Šâ —â —â â °â â â ‡â °â ½" }, { "input": "irrationally", "output": "â Šâ —â —â â °â â â ‡â ‡â ½" }, { "input": "irrationals", "output": "â Šâ —â —â â °â â â ‡â Ž" }, { "input": "irreconcilable", "output": "⠊⠗⠗⠑⠉⠕â â ‰â Šâ ‡â â ƒâ ‡â ‘" }, { "input": "irrecoverable", "output": "⠊⠗⠗⠑⠉⠕⠧⠻â â ƒâ ‡â ‘" }, { "input": "irredeemable", "output": "â Šâ —â —â «â ‘â ‘â â â ƒâ ‡â ‘" }, { "input": "irrefutable", "output": "⠊⠗⠗⠑⠋⠥⠞â â ƒâ ‡â ‘" }, { "input": "irregardless", "output": "⠊⠗⠗⠑⠛⠜⠙⠨⠎" }, { "input": "irregular", "output": "⠊⠗⠗⠑⠛⠥⠇⠜" }, { "input": "irregularities", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠊⠞⠊⠑⠎" }, { "input": "irregularity", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠰⠽" }, { "input": "irregularly", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠇⠽" }, { "input": "irregulars", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠎" }, { "input": "irrelevance", "output": "⠊⠗⠗⠑⠇⠑⠧⠨⠑" }, { "input": "irrelevances", "output": "⠊⠗⠗⠑⠇⠑⠧⠨⠑⠎" }, { "input": "irrelevancies", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ‰â Šâ ‘â Ž" }, { "input": "irrelevancy", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ‰â ½" }, { "input": "irrelevant", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ž" }, { "input": "irrelevantly", "output": "⠊⠗⠗⠑⠇⠑⠧â â â žâ ‡â ½" }, { "input": "irreligious", "output": "⠊⠗⠗⠑⠇⠊⠛⠊⠳⠎" }, { "input": "irremediable", "output": "â Šâ —â —â ‘â â «â Šâ â ƒâ ‡â ‘" }, { "input": "irremediably", "output": "â Šâ —â —â ‘â â «â Šâ â ƒâ ‡â ½" }, { "input": "irreparable", "output": "â Šâ —â —â ‘â â œâ â ƒâ ‡â ‘" }, { "input": "irreparably", "output": "â Šâ —â —â ‘â â œâ â ƒâ ‡â ½" }, { "input": "irreplaceable", "output": "â Šâ —â —â ‘â â ‡â â ‰â ‚⠃⠇⠑" }, { "input": "irrepressible", "output": "â Šâ —â —â ‘â â —⠑⠎⠎⠊⠃⠇⠑" }, { "input": "irreproachable", "output": "â Šâ —â —â ‘â â —â •â â ¡â â ƒâ ‡â ‘" }, { "input": "irresistible", "output": "⠊⠗⠗⠑⠎⠊⠌⠊⠃⠇⠑" }, { "input": "irresistibly", "output": "⠊⠗⠗⠑⠎⠊⠌⠊⠃⠇⠽" }, { "input": "irresolute", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠞⠑" }, { "input": "irresolutely", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠞⠑⠇⠽" }, { "input": "irresolution", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠰â " }, { "input": "irrespective", "output": "â Šâ —â —â ‘â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "irresponsibility", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "irresponsible", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ƒâ ‡â ‘" }, { "input": "irresponsibly", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ƒâ ‡â ½" }, { "input": "irretrievable", "output": "â Šâ —â —â ‘â žâ —â Šâ ‘â §â â ƒâ ‡â ‘" }, { "input": "irretrievably", "output": "â Šâ —â —â ‘â žâ —â Šâ ‘â §â â ƒâ ‡â ½" }, { "input": "irreverence", "output": "â Šâ —â —â â ‘â °â ‘" }, { "input": "irreverent", "output": "â Šâ —â —â â ‘⠢⠞" }, { "input": "irreverently", "output": "â Šâ —â —â â ‘⠢⠞⠇⠽" }, { "input": "irreversible", "output": "⠊⠗⠗⠑⠧⠻⠎⠊⠃⠇⠑" }, { "input": "irreversibly", "output": "⠊⠗⠗⠑⠧⠻⠎⠊⠃⠇⠽" }, { "input": "irrevocable", "output": "â Šâ —â —â ‘â §â •â ‰â â ƒâ ‡â ‘" }, { "input": "irrevocably", "output": "â Šâ —â —â ‘â §â •â ‰â â ƒâ ‡â ½" }, { "input": "irrigate", "output": "â Šâ —â —â Šâ ›â â žâ ‘" }, { "input": "irrigated", "output": "â Šâ —â —â Šâ ›â â žâ «" }, { "input": "irrigates", "output": "â Šâ —â —â Šâ ›â â žâ ‘â Ž" }, { "input": "irrigating", "output": "â Šâ —â —â Šâ ›â â žâ ¬" }, { "input": "irrigation", "output": "â Šâ —â —â Šâ ›â â °â " }, { "input": "irritability", "output": "â Šâ —â —â Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "irritable", "output": "â Šâ —â —â Šâ žâ â ƒâ ‡â ‘" }, { "input": "irritably", "output": "â Šâ —â —â Šâ žâ â ƒâ ‡â ½" }, { "input": "irritant", "output": "â Šâ —â —â Šâ žâ â â ž" }, { "input": "irritants", "output": "â Šâ —â —â Šâ žâ â â žâ Ž" }, { "input": "irritate", "output": "â Šâ —â —â Šâ žâ â žâ ‘" }, { "input": "irritated", "output": "â Šâ —â —â Šâ žâ â žâ «" }, { "input": "irritates", "output": "â Šâ —â —â Šâ žâ â žâ ‘â Ž" }, { "input": "irritating", "output": "â Šâ —â —â Šâ žâ â žâ ¬" }, { "input": "irritatingly", "output": "â Šâ —â —â Šâ žâ â žâ ¬â ‡â ½" }, { "input": "irritation", "output": "â Šâ —â —â Šâ žâ â °â " }, { "input": "irritations", "output": "â Šâ —â —â Šâ žâ â °â â Ž" }, { "input": "irruption", "output": "â Šâ —â —â ¥â â °â " }, { "input": "irruptions", "output": "â Šâ —â —â ¥â â °â â Ž" }, { "input": "is", "output": "â Šâ Ž" }, { "input": "isinglass", "output": "⠊⠎⠬⠇â â Žâ Ž" }, { "input": "island", "output": "⠊⠎⠇⠯" }, { "input": "islander", "output": "⠊⠎⠇⠯⠻" }, { "input": "islanders", "output": "⠊⠎⠇⠯⠻⠎" }, { "input": "islands", "output": "⠊⠎⠇⠯⠎" }, { "input": "isle", "output": "⠊⠎⠇⠑" }, { "input": "isles", "output": "⠊⠎⠇⠑⠎" }, { "input": "islet", "output": "⠊⠎⠇⠑⠞" }, { "input": "islets", "output": "⠊⠎⠇⠑⠞⠎" }, { "input": "ism", "output": "â Šâ Žâ " }, { "input": "isms", "output": "â Šâ Žâ â Ž" }, { "input": "isobar", "output": "⠊⠎⠕⠃⠜" }, { "input": "isobars", "output": "⠊⠎⠕⠃⠜⠎" }, { "input": "isolate", "output": "â Šâ Žâ •â ‡â â žâ ‘" }, { "input": "isolated", "output": "â Šâ Žâ •â ‡â â žâ «" }, { "input": "isolates", "output": "â Šâ Žâ •â ‡â â žâ ‘â Ž" }, { "input": "isolating", "output": "â Šâ Žâ •â ‡â â žâ ¬" }, { "input": "isolation", "output": "â Šâ Žâ •â ‡â â °â " }, { "input": "isolationism", "output": "â Šâ Žâ •â ‡â â °â â Šâ Žâ " }, { "input": "isolationist", "output": "â Šâ Žâ •â ‡â â °â â Šâ Œ" }, { "input": "isolationists", "output": "â Šâ Žâ •â ‡â â °â â Šâ Œâ Ž" }, { "input": "isometric", "output": "â Šâ Žâ •â â ‘â žâ —â Šâ ‰" }, { "input": "isometrics", "output": "â Šâ Žâ •â â ‘⠞⠗⠊⠉⠎" }, { "input": "isomorphic", "output": "â Šâ Žâ •â â •â —â â “â Šâ ‰" }, { "input": "isosceles", "output": "⠊⠎⠕⠎⠉⠑⠇⠑⠎" }, { "input": "isotope", "output": "â Šâ Žâ •â žâ •â â ‘" }, { "input": "isotopes", "output": "â Šâ Žâ •â žâ •â â ‘â Ž" }, { "input": "isotopic", "output": "â Šâ Žâ •â žâ •â â Šâ ‰" }, { "input": "isotropic", "output": "â Šâ Žâ •â žâ —â •â â Šâ ‰" }, { "input": "issuance", "output": "⠊⠎⠎⠥⠨⠑" }, { "input": "issue", "output": "⠊⠎⠎⠥⠑" }, { "input": "issued", "output": "⠊⠎⠎⠥⠫" }, { "input": "issues", "output": "⠊⠎⠎⠥⠑⠎" }, { "input": "issuing", "output": "⠊⠎⠎⠥⠬" }, { "input": "isthmi", "output": "â Šâ Žâ ¹â â Š" }, { "input": "isthmus", "output": "â Šâ Žâ ¹â â ¥â Ž" }, { "input": "isthmuses", "output": "â Šâ Žâ ¹â â ¥â Žâ ‘â Ž" }, { "input": "it", "output": "â ­" }, { "input": "italic", "output": "â Šâ žâ â ‡â Šâ ‰" }, { "input": "italicize", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ ‘" }, { "input": "italicized", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ «" }, { "input": "italicizes", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "italicizing", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ ¬" }, { "input": "italics", "output": "â Šâ žâ â ‡â Šâ ‰â Ž" }, { "input": "itch", "output": "â Šâ žâ ¡" }, { "input": "itched", "output": "â Šâ žâ ¡â «" }, { "input": "itches", "output": "â Šâ žâ ¡â ‘â Ž" }, { "input": "itchier", "output": "â Šâ žâ ¡â Šâ »" }, { "input": "itchiest", "output": "â Šâ žâ ¡â Šâ ‘â Œ" }, { "input": "itchiness", "output": "â Šâ žâ ¡â Šâ °â Ž" }, { "input": "itching", "output": "â Šâ žâ ¡â ¬" }, { "input": "itchy", "output": "â Šâ žâ ¡â ½" }, { "input": "item", "output": "â Šâ žâ ‘â " }, { "input": "itemization", "output": "â Šâ žâ ‘â â Šâ µâ â °â " }, { "input": "itemize", "output": "â Šâ žâ ‘â â Šâ µâ ‘" }, { "input": "itemized", "output": "â Šâ žâ ‘â â Šâ µâ «" }, { "input": "itemizes", "output": "â Šâ žâ ‘â â Šâ µâ ‘â Ž" }, { "input": "itemizing", "output": "â Šâ žâ ‘â â Šâ µâ ¬" }, { "input": "items", "output": "â Šâ žâ ‘â â Ž" }, { "input": "iterate", "output": "â Šâ žâ »â â žâ ‘" }, { "input": "iterated", "output": "â Šâ žâ »â â žâ «" }, { "input": "iterates", "output": "â Šâ žâ »â â žâ ‘â Ž" }, { "input": "iterating", "output": "â Šâ žâ »â â žâ ¬" }, { "input": "iteration", "output": "â Šâ žâ »â â °â " }, { "input": "iterations", "output": "â Šâ žâ »â â °â â Ž" }, { "input": "iterative", "output": "â Šâ žâ »â â žâ Šâ §â ‘" }, { "input": "iterator", "output": "â Šâ žâ »â â žâ •â —" }, { "input": "iterators", "output": "â Šâ žâ »â â žâ •â —â Ž" }, { "input": "itinerant", "output": "⠊⠞⠔⠻â â â ž" }, { "input": "itinerants", "output": "⠊⠞⠔⠻â â â žâ Ž" }, { "input": "itineraries", "output": "⠊⠞⠔⠻⠜⠊⠑⠎" }, { "input": "itinerary", "output": "⠊⠞⠔⠻⠜⠽" }, { "input": "its", "output": "â ­â Ž" }, { "input": "itself", "output": "â ­â ‹" }, { "input": "ivies", "output": "â Šâ §â Šâ ‘â Ž" }, { "input": "ivories", "output": "â Šâ §â •â —â Šâ ‘â Ž" }, { "input": "ivory", "output": "â Šâ §â •â —â ½" }, { "input": "ivy", "output": "â Šâ §â ½" }, { "input": "j", "output": "â °â š" }, { "input": "jab", "output": "â šâ â ƒ" }, { "input": "jabbed", "output": "â šâ â †â «" }, { "input": "jabber", "output": "â šâ â †â »" }, { "input": "jabbered", "output": "â šâ â †â »â «" }, { "input": "jabberer", "output": "â šâ â †â »â »" }, { "input": "jabberers", "output": "â šâ â †â »â »â Ž" }, { "input": "jabbering", "output": "â šâ â †â »â ¬" }, { "input": "jabbers", "output": "â šâ â †â »â Ž" }, { "input": "jabbing", "output": "â šâ â †â ¬" }, { "input": "jabot", "output": "â šâ â ƒâ •â ž" }, { "input": "jabots", "output": "â šâ â ƒâ •â žâ Ž" }, { "input": "jabs", "output": "â šâ â ƒâ Ž" }, { "input": "jack", "output": "â šâ â ‰â …" }, { "input": "jackal", "output": "â šâ â ‰â …â â ‡" }, { "input": "jackals", "output": "â šâ â ‰â …â â ‡â Ž" }, { "input": "jackass", "output": "â šâ â ‰â …â â Žâ Ž" }, { "input": "jackasses", "output": "â šâ â ‰â …â â Žâ Žâ ‘â Ž" }, { "input": "jackboot", "output": "â šâ â ‰â …⠃⠕⠕⠞" }, { "input": "jackboots", "output": "â šâ â ‰â …⠃⠕⠕⠞⠎" }, { "input": "jackdaw", "output": "â šâ â ‰â …â ™â â º" }, { "input": "jackdaws", "output": "â šâ â ‰â …â ™â â ºâ Ž" }, { "input": "jacked", "output": "â šâ â ‰â …â «" }, { "input": "jacket", "output": "â šâ â ‰â …â ‘â ž" }, { "input": "jackets", "output": "â šâ â ‰â …â ‘â žâ Ž" }, { "input": "jackhammer", "output": "â šâ â ‰â …â “â â â â »" }, { "input": "jackhammers", "output": "â šâ â ‰â …â “â â â â »â Ž" }, { "input": "jacking", "output": "â šâ â ‰â …â ¬" }, { "input": "jackknife", "output": "â šâ â ‰â …â …â â Šâ ‹â ‘" }, { "input": "jackknifed", "output": "â šâ â ‰â …â …â â Šâ ‹â «" }, { "input": "jackknifes", "output": "â šâ â ‰â …â …â â Šâ ‹â ‘â Ž" }, { "input": "jackknifing", "output": "â šâ â ‰â …â …â â Šâ ‹â ¬" }, { "input": "jackknives", "output": "â šâ â ‰â …â …â â Šâ §â ‘â Ž" }, { "input": "jackpot", "output": "â šâ â ‰â …â â •â ž" }, { "input": "jackpots", "output": "â šâ â ‰â …â â •â žâ Ž" }, { "input": "jackrabbit", "output": "â šâ â ‰â …â —â â †â Šâ ž" }, { "input": "jackrabbits", "output": "â šâ â ‰â …â —â â †â Šâ žâ Ž" }, { "input": "jacks", "output": "â šâ â ‰â …â Ž" }, { "input": "jade", "output": "â šâ â ™â ‘" }, { "input": "jaded", "output": "â šâ â ™â «" }, { "input": "jades", "output": "â šâ â ™â ‘â Ž" }, { "input": "jading", "output": "â šâ â ™â ¬" }, { "input": "jag", "output": "â šâ â ›" }, { "input": "jagged", "output": "â šâ â ¶â «" }, { "input": "jaggeder", "output": "â šâ â ¶â «â »" }, { "input": "jaggedest", "output": "â šâ â ¶â «â ‘â Œ" }, { "input": "jaggedly", "output": "â šâ â ¶â «â ‡â ½" }, { "input": "jaggedness", "output": "â šâ â ¶â «â °â Ž" }, { "input": "jags", "output": "â šâ â ›â Ž" }, { "input": "jaguar", "output": "â šâ â ›â ¥â œ" }, { "input": "jaguars", "output": "â šâ â ›â ¥â œâ Ž" }, { "input": "jail", "output": "â šâ â Šâ ‡" }, { "input": "jailbreak", "output": "â šâ â Šâ ‡â ƒâ —â ‚â …" }, { "input": "jailbreaks", "output": "â šâ â Šâ ‡â ƒâ —â ‚â …â Ž" }, { "input": "jailed", "output": "â šâ â Šâ ‡â «" }, { "input": "jailer", "output": "â šâ â Šâ ‡â »" }, { "input": "jailers", "output": "â šâ â Šâ ‡â »â Ž" }, { "input": "jailing", "output": "â šâ â Šâ ‡â ¬" }, { "input": "jailor", "output": "â šâ â Šâ ‡â •â —" }, { "input": "jailors", "output": "â šâ â Šâ ‡â •â —â Ž" }, { "input": "jails", "output": "â šâ â Šâ ‡â Ž" }, { "input": "jalapeño", "output": "â šâ â ‡â â â ‘⠠⠘⠻â â ¸â –â •" }, { "input": "jalapeños", "output": "â šâ â ‡â â â ‘⠠⠘⠻â â ¸â –â •â Ž" }, { "input": "jalopies", "output": "â šâ â ‡â •â â Šâ ‘â Ž" }, { "input": "jalopy", "output": "â šâ â ‡â •â â ½" }, { "input": "jalousie", "output": "â šâ â ‡â ³â Žâ Šâ ‘" }, { "input": "jalousies", "output": "â šâ â ‡â ³â Žâ Šâ ‘â Ž" }, { "input": "jam", "output": "â šâ â " }, { "input": "jamb", "output": "â šâ â â ƒ" }, { "input": "jamboree", "output": "â šâ â â ƒâ •â —â ‘â ‘" }, { "input": "jamborees", "output": "â šâ â â ƒâ •â —â ‘â ‘â Ž" }, { "input": "jambs", "output": "â šâ â â ƒâ Ž" }, { "input": "jammed", "output": "â šâ â â â «" }, { "input": "jamming", "output": "â šâ â â â ¬" }, { "input": "jams", "output": "â šâ â â Ž" }, { "input": "jangle", "output": "â šâ â â ›â ‡â ‘" }, { "input": "jangled", "output": "â šâ â â ›â ‡â «" }, { "input": "jangles", "output": "â šâ â â ›â ‡â ‘â Ž" }, { "input": "jangling", "output": "â šâ â â ›â ‡â ¬" }, { "input": "janitor", "output": "â šâ â â Šâ žâ •â —" }, { "input": "janitorial", "output": "â šâ â â Šâ žâ •â —â Šâ â ‡" }, { "input": "janitors", "output": "â šâ â â Šâ žâ •â —â Ž" }, { "input": "japan", "output": "â šâ â â â " }, { "input": "japanned", "output": "â šâ â â â â â «" }, { "input": "japanning", "output": "â šâ â â â â â ¬" }, { "input": "japans", "output": "â šâ â â â â Ž" }, { "input": "jape", "output": "â šâ â â ‘" }, { "input": "japed", "output": "â šâ â â «" }, { "input": "japes", "output": "â šâ â â ‘â Ž" }, { "input": "japing", "output": "â šâ â â ¬" }, { "input": "jar", "output": "â šâ œ" }, { "input": "jardinière", "output": "⠚⠜⠙⠔⠊⠠⠘⠻â â ¡â â £â —â ‘" }, { "input": "jardinières", "output": "⠚⠜⠙⠔⠊⠠⠘⠻â â ¡â â £â —â ‘â Ž" }, { "input": "jargon", "output": "⠚⠜⠛⠕â " }, { "input": "jarred", "output": "⠚⠜⠗⠫" }, { "input": "jarring", "output": "⠚⠜⠗⠬" }, { "input": "jars", "output": "⠚⠜⠎" }, { "input": "jasmine", "output": "â šâ â Žâ â ”â ‘" }, { "input": "jasmines", "output": "â šâ â Žâ â ”â ‘â Ž" }, { "input": "jasper", "output": "â šâ â Žâ â »" }, { "input": "jaundice", "output": "â šâ â ¥â â ™â Šâ ‰â ‘" }, { "input": "jaundiced", "output": "â šâ â ¥â â ™â Šâ ‰â «" }, { "input": "jaundices", "output": "â šâ â ¥â â ™â Šâ ‰â ‘â Ž" }, { "input": "jaundicing", "output": "â šâ â ¥â â ™â Šâ ‰â ¬" }, { "input": "jaunt", "output": "â šâ â ¥â â ž" }, { "input": "jaunted", "output": "â šâ â ¥â â žâ «" }, { "input": "jauntier", "output": "â šâ â ¥â â žâ Šâ »" }, { "input": "jauntiest", "output": "â šâ â ¥â â žâ Šâ ‘â Œ" }, { "input": "jauntily", "output": "â šâ â ¥â â žâ Šâ ‡â ½" }, { "input": "jauntiness", "output": "â šâ â ¥â â žâ Šâ °â Ž" }, { "input": "jaunting", "output": "â šâ â ¥â â žâ ¬" }, { "input": "jaunts", "output": "â šâ â ¥â â žâ Ž" }, { "input": "jaunty", "output": "â šâ â ¥â â žâ ½" }, { "input": "javelin", "output": "â šâ â §â ‘⠇⠔" }, { "input": "javelins", "output": "â šâ â §â ‘⠇⠔⠎" }, { "input": "jaw", "output": "â šâ â º" }, { "input": "jawbone", "output": "â šâ â ºâ ƒâ â •" }, { "input": "jawboned", "output": "â šâ â ºâ ƒâ •â â «" }, { "input": "jawbones", "output": "â šâ â ºâ ƒâ â •â Ž" }, { "input": "jawboning", "output": "â šâ â ºâ ƒâ •â â ¬" }, { "input": "jawbreaker", "output": "â šâ â ºâ ƒâ —â ‚â …â »" }, { "input": "jawbreakers", "output": "â šâ â ºâ ƒâ —⠂⠅⠻⠎" }, { "input": "jawed", "output": "â šâ â ºâ «" }, { "input": "jawing", "output": "â šâ â ºâ ¬" }, { "input": "jaws", "output": "â šâ â ºâ Ž" }, { "input": "jay", "output": "â šâ â ½" }, { "input": "jays", "output": "â šâ â ½â Ž" }, { "input": "jaywalk", "output": "â šâ â ½â ºâ â ‡â …" }, { "input": "jaywalked", "output": "â šâ â ½â ºâ â ‡â …â «" }, { "input": "jaywalker", "output": "â šâ â ½â ºâ â ‡â …â »" }, { "input": "jaywalkers", "output": "â šâ â ½â ºâ â ‡â …⠻⠎" }, { "input": "jaywalking", "output": "â šâ â ½â ºâ â ‡â …â ¬" }, { "input": "jaywalks", "output": "â šâ â ½â ºâ â ‡â …â Ž" }, { "input": "jazz", "output": "â šâ â µâ µ" }, { "input": "jazzed", "output": "â šâ â µâ µâ «" }, { "input": "jazzes", "output": "â šâ â µâ µâ ‘â Ž" }, { "input": "jazzier", "output": "â šâ â µâ µâ Šâ »" }, { "input": "jazziest", "output": "â šâ â µâ µâ Šâ ‘â Œ" }, { "input": "jazzing", "output": "â šâ â µâ µâ ¬" }, { "input": "jazzy", "output": "â šâ â µâ µâ ½" }, { "input": "jealous", "output": "⠚⠂⠇⠳⠎" }, { "input": "jealousies", "output": "⠚⠂⠇⠳⠎⠊⠑⠎" }, { "input": "jealously", "output": "⠚⠂⠇⠳⠎⠇⠽" }, { "input": "jealousy", "output": "⠚⠂⠇⠳⠎⠽" }, { "input": "jeans", "output": "â šâ ‚â â Ž" }, { "input": "jeep", "output": "â šâ ‘â ‘â " }, { "input": "jeeps", "output": "â šâ ‘â ‘â â Ž" }, { "input": "jeer", "output": "â šâ ‘â »" }, { "input": "jeered", "output": "⠚⠑⠻⠫" }, { "input": "jeering", "output": "⠚⠑⠻⠬" }, { "input": "jeeringly", "output": "⠚⠑⠻⠬⠇⠽" }, { "input": "jeers", "output": "⠚⠑⠻⠎" }, { "input": "jeez", "output": "â šâ ‘â ‘â µ" }, { "input": "jehad", "output": "⠚⠑⠸⠓" }, { "input": "jehads", "output": "⠚⠑⠸⠓⠎" }, { "input": "jejune", "output": "â šâ ‘â šâ ¥â â ‘" }, { "input": "jell", "output": "⠚⠑⠇⠇" }, { "input": "jelled", "output": "⠚⠑⠇⠇⠫" }, { "input": "jellied", "output": "⠚⠑⠇⠇⠊⠫" }, { "input": "jellies", "output": "⠚⠑⠇⠇⠊⠑⠎" }, { "input": "jelling", "output": "⠚⠑⠇⠇⠬" }, { "input": "jello", "output": "⠚⠑⠇⠇⠕" }, { "input": "jells", "output": "⠚⠑⠇⠇⠎" }, { "input": "jelly", "output": "⠚⠑⠇⠇⠽" }, { "input": "jellybean", "output": "⠚⠑⠇⠇⠽⠃⠂â " }, { "input": "jellybeans", "output": "⠚⠑⠇⠇⠽⠃⠂â â Ž" }, { "input": "jellyfish", "output": "⠚⠑⠇⠇⠽⠋⠊⠩" }, { "input": "jellyfishes", "output": "⠚⠑⠇⠇⠽⠋⠊⠩⠑⠎" }, { "input": "jellying", "output": "⠚⠑⠇⠇⠽⠬" }, { "input": "jeopardize", "output": "â šâ ‘â •â â œâ ™â Šâ µâ ‘" }, { "input": "jeopardized", "output": "â šâ ‘â •â â œâ ™â Šâ µâ «" }, { "input": "jeopardizes", "output": "â šâ ‘â •â â œâ ™â Šâ µâ ‘â Ž" }, { "input": "jeopardizing", "output": "â šâ ‘â •â â œâ ™â Šâ µâ ¬" }, { "input": "jeopardy", "output": "â šâ ‘â •â â œâ ™â ½" }, { "input": "jeremiad", "output": "⠚⠻⠑â â Šâ â ™" }, { "input": "jeremiads", "output": "⠚⠻⠑â â Šâ â ™â Ž" }, { "input": "jerk", "output": "⠚⠻⠅" }, { "input": "jerked", "output": "⠚⠻⠅⠫" }, { "input": "jerkier", "output": "⠚⠻⠅⠊⠻" }, { "input": "jerkiest", "output": "⠚⠻⠅⠊⠑⠌" }, { "input": "jerkily", "output": "⠚⠻⠅⠊⠇⠽" }, { "input": "jerkin", "output": "⠚⠻⠅⠔" }, { "input": "jerking", "output": "⠚⠻⠅⠬" }, { "input": "jerkins", "output": "⠚⠻⠅⠔⠎" }, { "input": "jerks", "output": "⠚⠻⠅⠎" }, { "input": "jerkwater", "output": "⠚⠻⠅⠺â â žâ »" }, { "input": "jerky", "output": "⠚⠻⠅⠽" }, { "input": "jersey", "output": "⠚⠻⠎⠑⠽" }, { "input": "jerseys", "output": "⠚⠻⠎⠑⠽⠎" }, { "input": "jessamine", "output": "â šâ ‘â Žâ Žâ â â ”â ‘" }, { "input": "jessamines", "output": "â šâ ‘â Žâ Žâ â â ”â ‘â Ž" }, { "input": "jest", "output": "â šâ ‘â Œ" }, { "input": "jested", "output": "⠚⠑⠌⠫" }, { "input": "jester", "output": "⠚⠑⠌⠻" }, { "input": "jesters", "output": "⠚⠑⠌⠻⠎" }, { "input": "jesting", "output": "⠚⠑⠌⠬" }, { "input": "jests", "output": "⠚⠑⠌⠎" }, { "input": "jet", "output": "â šâ ‘â ž" }, { "input": "jets", "output": "â šâ ‘â žâ Ž" }, { "input": "jetsam", "output": "â šâ ‘â žâ Žâ â " }, { "input": "jetted", "output": "â šâ ‘â žâ žâ «" }, { "input": "jetties", "output": "â šâ ‘â žâ žâ Šâ ‘â Ž" }, { "input": "jetting", "output": "â šâ ‘â žâ žâ ¬" }, { "input": "jettison", "output": "â šâ ‘â žâ žâ Šâ Žâ •â " }, { "input": "jettisoned", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â «" }, { "input": "jettisoning", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â ¬" }, { "input": "jettisons", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â Ž" }, { "input": "jetty", "output": "â šâ ‘â žâ žâ ½" }, { "input": "jewel", "output": "⠚⠑⠺⠑⠇" }, { "input": "jeweled", "output": "⠚⠑⠺⠑⠇⠫" }, { "input": "jeweler", "output": "⠚⠑⠺⠑⠇⠻" }, { "input": "jewelers", "output": "⠚⠑⠺⠑⠇⠻⠎" }, { "input": "jeweling", "output": "⠚⠑⠺⠑⠇⠬" }, { "input": "jewelled", "output": "⠚⠑⠺⠑⠇⠇⠫" }, { "input": "jeweller", "output": "⠚⠑⠺⠑⠇⠇⠻" }, { "input": "jewellers", "output": "⠚⠑⠺⠑⠇⠇⠻⠎" }, { "input": "jewelling", "output": "⠚⠑⠺⠑⠇⠇⠬" }, { "input": "jewelries", "output": "⠚⠑⠺⠑⠇⠗⠊⠑⠎" }, { "input": "jewelry", "output": "⠚⠑⠺⠑⠇⠗⠽" }, { "input": "jewels", "output": "⠚⠑⠺⠑⠇⠎" }, { "input": "jib", "output": "â šâ Šâ ƒ" }, { "input": "jibbed", "output": "⠚⠊⠆⠫" }, { "input": "jibbing", "output": "⠚⠊⠆⠬" }, { "input": "jibe", "output": "⠚⠊⠃⠑" }, { "input": "jibed", "output": "⠚⠊⠃⠫" }, { "input": "jibes", "output": "⠚⠊⠃⠑⠎" }, { "input": "jibing", "output": "⠚⠊⠃⠬" }, { "input": "jibs", "output": "⠚⠊⠃⠎" }, { "input": "jiffies", "output": "â šâ Šâ –â Šâ ‘â Ž" }, { "input": "jiffy", "output": "â šâ Šâ –â ½" }, { "input": "jig", "output": "â šâ Šâ ›" }, { "input": "jigged", "output": "â šâ Šâ ¶â «" }, { "input": "jigger", "output": "â šâ Šâ ¶â »" }, { "input": "jiggered", "output": "⠚⠊⠶⠻⠫" }, { "input": "jiggering", "output": "⠚⠊⠶⠻⠬" }, { "input": "jiggers", "output": "⠚⠊⠶⠻⠎" }, { "input": "jigging", "output": "â šâ Šâ ¶â ¬" }, { "input": "jiggle", "output": "⠚⠊⠶⠇⠑" }, { "input": "jiggled", "output": "⠚⠊⠶⠇⠫" }, { "input": "jiggles", "output": "⠚⠊⠶⠇⠑⠎" }, { "input": "jiggling", "output": "⠚⠊⠶⠇⠬" }, { "input": "jigs", "output": "⠚⠊⠛⠎" }, { "input": "jigsaw", "output": "⠚⠊⠛⠎â â º" }, { "input": "jigsawed", "output": "⠚⠊⠛⠎â â ºâ «" }, { "input": "jigsawing", "output": "⠚⠊⠛⠎â â ºâ ¬" }, { "input": "jigsawn", "output": "⠚⠊⠛⠎â â ºâ " }, { "input": "jigsaws", "output": "⠚⠊⠛⠎â â ºâ Ž" }, { "input": "jihad", "output": "⠚⠊⠸⠓" }, { "input": "jihads", "output": "⠚⠊⠸⠓⠎" }, { "input": "jilt", "output": "⠚⠊⠇⠞" }, { "input": "jilted", "output": "⠚⠊⠇⠞⠫" }, { "input": "jilting", "output": "⠚⠊⠇⠞⠬" }, { "input": "jilts", "output": "⠚⠊⠇⠞⠎" }, { "input": "jimmied", "output": "â šâ Šâ â â Šâ «" }, { "input": "jimmies", "output": "â šâ Šâ â â Šâ ‘â Ž" }, { "input": "jimmy", "output": "â šâ Šâ â â ½" }, { "input": "jimmying", "output": "â šâ Šâ â â ½â ¬" }, { "input": "jingle", "output": "⠚⠬⠇⠑" }, { "input": "jingled", "output": "⠚⠬⠇⠫" }, { "input": "jingles", "output": "⠚⠬⠇⠑⠎" }, { "input": "jingling", "output": "⠚⠬⠇⠬" }, { "input": "jingoism", "output": "⠚⠬⠕⠊⠎â " }, { "input": "jingoist", "output": "⠚⠬⠕⠊⠌" }, { "input": "jingoistic", "output": "⠚⠬⠕⠊⠌⠊⠉" }, { "input": "jingoists", "output": "⠚⠬⠕⠊⠌⠎" }, { "input": "jinn", "output": "â šâ ”â " }, { "input": "jinni", "output": "â šâ ”â â Š" }, { "input": "jinnis", "output": "â šâ ”â â Šâ Ž" }, { "input": "jinns", "output": "â šâ ”â â Ž" }, { "input": "jinricksha", "output": "⠚⠔⠗⠊⠉⠅⠩â " }, { "input": "jinrickshas", "output": "⠚⠔⠗⠊⠉⠅⠩â â Ž" }, { "input": "jinrikisha", "output": "⠚⠔⠗⠊⠅⠊⠩â " }, { "input": "jinrikishas", "output": "⠚⠔⠗⠊⠅⠊⠩â â Ž" }, { "input": "jinx", "output": "⠚⠔⠭" }, { "input": "jinxed", "output": "⠚⠔⠭⠫" }, { "input": "jinxes", "output": "⠚⠔⠭⠑⠎" }, { "input": "jinxing", "output": "⠚⠔⠭⠬" }, { "input": "jitney", "output": "â šâ Šâ žâ â ‘â ½" }, { "input": "jitneys", "output": "â šâ Šâ žâ â ‘⠽⠎" }, { "input": "jitterbug", "output": "⠚⠊⠞⠞⠻⠃⠥⠛" }, { "input": "jitterbugged", "output": "⠚⠊⠞⠞⠻⠃⠥⠶⠫" }, { "input": "jitterbugging", "output": "⠚⠊⠞⠞⠻⠃⠥⠶⠬" }, { "input": "jitterbugs", "output": "⠚⠊⠞⠞⠻⠃⠥⠛⠎" }, { "input": "jitterier", "output": "⠚⠊⠞⠞⠻⠊⠻" }, { "input": "jitteriest", "output": "⠚⠊⠞⠞⠻⠊⠑⠌" }, { "input": "jitters", "output": "⠚⠊⠞⠞⠻⠎" }, { "input": "jittery", "output": "⠚⠊⠞⠞⠻⠽" }, { "input": "jiujitsu", "output": "⠚⠊⠥⠚⠊⠞⠎⠥" }, { "input": "jive", "output": "â šâ Šâ §â ‘" }, { "input": "jived", "output": "â šâ Šâ §â «" }, { "input": "jives", "output": "â šâ Šâ §â ‘â Ž" }, { "input": "jiving", "output": "â šâ Šâ §â ¬" }, { "input": "job", "output": "â šâ •â ƒ" }, { "input": "jobbed", "output": "⠚⠕⠆⠫" }, { "input": "jobber", "output": "⠚⠕⠆⠻" }, { "input": "jobbers", "output": "⠚⠕⠆⠻⠎" }, { "input": "jobbing", "output": "⠚⠕⠆⠬" }, { "input": "jobless", "output": "⠚⠕⠃⠨⠎" }, { "input": "joblessness", "output": "⠚⠕⠃⠨⠎⠰⠎" }, { "input": "jobs", "output": "⠚⠕⠃⠎" }, { "input": "jock", "output": "⠚⠕⠉⠅" }, { "input": "jockey", "output": "⠚⠕⠉⠅⠑⠽" }, { "input": "jockeyed", "output": "⠚⠕⠉⠅⠑⠽⠫" }, { "input": "jockeying", "output": "⠚⠕⠉⠅⠑⠽⠬" }, { "input": "jockeys", "output": "⠚⠕⠉⠅⠑⠽⠎" }, { "input": "jocks", "output": "⠚⠕⠉⠅⠎" }, { "input": "jockstrap", "output": "⠚⠕⠉⠅⠌⠗â â " }, { "input": "jockstraps", "output": "⠚⠕⠉⠅⠌⠗â â â Ž" }, { "input": "jocose", "output": "⠚⠕⠉⠕⠎⠑" }, { "input": "jocosely", "output": "⠚⠕⠉⠕⠎⠑⠇⠽" }, { "input": "jocosity", "output": "⠚⠕⠉⠕⠎⠰⠽" }, { "input": "jocular", "output": "⠚⠕⠉⠥⠇⠜" }, { "input": "jocularity", "output": "⠚⠕⠉⠥⠇⠜⠰⠽" }, { "input": "jocularly", "output": "⠚⠕⠉⠥⠇⠜⠇⠽" }, { "input": "jocund", "output": "⠚⠕⠉⠥â â ™" }, { "input": "jocundity", "output": "⠚⠕⠉⠥â â ™â °â ½" }, { "input": "jocundly", "output": "⠚⠕⠉⠥â â ™â ‡â ½" }, { "input": "jodhpurs", "output": "⠚⠕⠙⠓â â ¥â —â Ž" }, { "input": "jog", "output": "â šâ •â ›" }, { "input": "jogged", "output": "â šâ •â ¶â «" }, { "input": "jogger", "output": "â šâ •â ¶â »" }, { "input": "joggers", "output": "⠚⠕⠶⠻⠎" }, { "input": "jogging", "output": "â šâ •â ¶â ¬" }, { "input": "joggle", "output": "⠚⠕⠶⠇⠑" }, { "input": "joggled", "output": "⠚⠕⠶⠇⠫" }, { "input": "joggles", "output": "⠚⠕⠶⠇⠑⠎" }, { "input": "joggling", "output": "⠚⠕⠶⠇⠬" }, { "input": "jogs", "output": "⠚⠕⠛⠎" }, { "input": "john", "output": "â šâ •â “â " }, { "input": "johns", "output": "â šâ •â “â â Ž" }, { "input": "join", "output": "â šâ •â ”" }, { "input": "joined", "output": "⠚⠕⠔⠫" }, { "input": "joiner", "output": "⠚⠕⠔⠻" }, { "input": "joiners", "output": "⠚⠕⠔⠻⠎" }, { "input": "joining", "output": "⠚⠕⠔⠬" }, { "input": "joins", "output": "⠚⠕⠔⠎" }, { "input": "joint", "output": "⠚⠕⠔⠞" }, { "input": "jointed", "output": "⠚⠕⠔⠞⠫" }, { "input": "jointing", "output": "⠚⠕⠔⠞⠬" }, { "input": "jointly", "output": "⠚⠕⠔⠞⠇⠽" }, { "input": "joints", "output": "⠚⠕⠔⠞⠎" }, { "input": "joist", "output": "â šâ •â Šâ Œ" }, { "input": "joists", "output": "⠚⠕⠊⠌⠎" }, { "input": "joke", "output": "â šâ •â …â ‘" }, { "input": "joked", "output": "â šâ •â …â «" }, { "input": "joker", "output": "â šâ •â …â »" }, { "input": "jokers", "output": "⠚⠕⠅⠻⠎" }, { "input": "jokes", "output": "â šâ •â …â ‘â Ž" }, { "input": "joking", "output": "â šâ •â …â ¬" }, { "input": "jokingly", "output": "⠚⠕⠅⠬⠇⠽" }, { "input": "jollied", "output": "⠚⠕⠇⠇⠊⠫" }, { "input": "jollier", "output": "⠚⠕⠇⠇⠊⠻" }, { "input": "jollies", "output": "⠚⠕⠇⠇⠊⠑⠎" }, { "input": "jolliest", "output": "⠚⠕⠇⠇⠊⠑⠌" }, { "input": "jolliness", "output": "⠚⠕⠇⠇⠊⠰⠎" }, { "input": "jollity", "output": "⠚⠕⠇⠇⠰⠽" }, { "input": "jolly", "output": "⠚⠕⠇⠇⠽" }, { "input": "jollying", "output": "⠚⠕⠇⠇⠽⠬" }, { "input": "jolt", "output": "⠚⠕⠇⠞" }, { "input": "jolted", "output": "⠚⠕⠇⠞⠫" }, { "input": "jolting", "output": "⠚⠕⠇⠞⠬" }, { "input": "jolts", "output": "⠚⠕⠇⠞⠎" }, { "input": "jonquil", "output": "â šâ •â â Ÿâ ¥â Šâ ‡" }, { "input": "jonquils", "output": "â šâ •â â Ÿâ ¥â Šâ ‡â Ž" }, { "input": "josh", "output": "â šâ •â ©" }, { "input": "joshed", "output": "â šâ •â ©â «" }, { "input": "joshes", "output": "â šâ •â ©â ‘â Ž" }, { "input": "joshing", "output": "â šâ •â ©â ¬" }, { "input": "jostle", "output": "⠚⠕⠌⠇⠑" }, { "input": "jostled", "output": "⠚⠕⠌⠇⠫" }, { "input": "jostles", "output": "⠚⠕⠌⠇⠑⠎" }, { "input": "jostling", "output": "⠚⠕⠌⠇⠬" }, { "input": "jot", "output": "â šâ •â ž" }, { "input": "jots", "output": "â šâ •â žâ Ž" }, { "input": "jotted", "output": "â šâ •â žâ žâ «" }, { "input": "jotting", "output": "â šâ •â žâ žâ ¬" }, { "input": "jottings", "output": "⠚⠕⠞⠞⠬⠎" }, { "input": "joule", "output": "⠚⠳⠇⠑" }, { "input": "joules", "output": "⠚⠳⠇⠑⠎" }, { "input": "jounce", "output": "â šâ ³â â ‰â ‘" }, { "input": "jounced", "output": "â šâ ³â â ‰â «" }, { "input": "jounces", "output": "â šâ ³â â ‰â ‘â Ž" }, { "input": "jouncing", "output": "â šâ ³â â ‰â ¬" }, { "input": "journal", "output": "⠚⠳⠗â â â ‡" }, { "input": "journalese", "output": "⠚⠳⠗â â â ‡â ‘â Žâ ‘" }, { "input": "journalism", "output": "⠚⠳⠗â â â ‡â Šâ Žâ " }, { "input": "journalist", "output": "⠚⠳⠗â â â ‡â Šâ Œ" }, { "input": "journalistic", "output": "⠚⠳⠗â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "journalists", "output": "⠚⠳⠗â â â ‡â Šâ Œâ Ž" }, { "input": "journals", "output": "⠚⠳⠗â â â ‡â Ž" }, { "input": "journey", "output": "⠚⠳⠗â â ‘â ½" }, { "input": "journeyed", "output": "⠚⠳⠗â â ‘⠽⠫" }, { "input": "journeying", "output": "⠚⠳⠗â â ‘⠽⠬" }, { "input": "journeyman", "output": "⠚⠳⠗â â ‘â ½â â â " }, { "input": "journeymen", "output": "⠚⠳⠗â â ‘â ½â â ¢" }, { "input": "journeys", "output": "⠚⠳⠗â â ‘⠽⠎" }, { "input": "joust", "output": "⠚⠳⠌" }, { "input": "jousted", "output": "⠚⠳⠌⠫" }, { "input": "jousting", "output": "⠚⠳⠌⠬" }, { "input": "jousts", "output": "⠚⠳⠌⠎" }, { "input": "jovial", "output": "â šâ •â §â Šâ â ‡" }, { "input": "joviality", "output": "â šâ •â §â Šâ â ‡â °â ½" }, { "input": "jovially", "output": "â šâ •â §â Šâ â ‡â ‡â ½" }, { "input": "jowl", "output": "⠚⠪⠇" }, { "input": "jowls", "output": "⠚⠪⠇⠎" }, { "input": "joy", "output": "â šâ •â ½" }, { "input": "joyed", "output": "⠚⠕⠽⠫" }, { "input": "joyful", "output": "⠚⠕⠽⠰⠇" }, { "input": "joyfuller", "output": "⠚⠕⠽⠰⠇⠇⠻" }, { "input": "joyfullest", "output": "⠚⠕⠽⠰⠇⠇⠑⠌" }, { "input": "joyfully", "output": "⠚⠕⠽⠰⠇⠇⠽" }, { "input": "joyfulness", "output": "⠚⠕⠽⠰⠇⠰⠎" }, { "input": "joying", "output": "⠚⠕⠽⠬" }, { "input": "joyless", "output": "⠚⠕⠽⠨⠎" }, { "input": "joyous", "output": "⠚⠕⠽⠳⠎" }, { "input": "joyously", "output": "⠚⠕⠽⠳⠎⠇⠽" }, { "input": "joyousness", "output": "⠚⠕⠽⠳⠎⠰⠎" }, { "input": "joyridden", "output": "⠚⠕⠽⠗⠊⠙⠙⠢" }, { "input": "joyride", "output": "⠚⠕⠽⠗⠊⠙⠑" }, { "input": "joyrider", "output": "⠚⠕⠽⠗⠊⠙⠻" }, { "input": "joyriders", "output": "⠚⠕⠽⠗⠊⠙⠻⠎" }, { "input": "joyrides", "output": "⠚⠕⠽⠗⠊⠙⠑⠎" }, { "input": "joyriding", "output": "⠚⠕⠽⠗⠊⠙⠬" }, { "input": "joyrode", "output": "⠚⠕⠽⠗⠕⠙⠑" }, { "input": "joys", "output": "⠚⠕⠽⠎" }, { "input": "joystick", "output": "⠚⠕⠽⠌⠊⠉⠅" }, { "input": "joysticks", "output": "⠚⠕⠽⠌⠊⠉⠅⠎" }, { "input": "jubilant", "output": "⠚⠥⠃⠊⠇â â â ž" }, { "input": "jubilantly", "output": "⠚⠥⠃⠊⠇â â â žâ ‡â ½" }, { "input": "jubilation", "output": "⠚⠥⠃⠊⠇â â °â " }, { "input": "jubilee", "output": "⠚⠥⠃⠊⠇⠑⠑" }, { "input": "jubilees", "output": "⠚⠥⠃⠊⠇⠑⠑⠎" }, { "input": "judge", "output": "⠚⠥⠙⠛⠑" }, { "input": "judged", "output": "⠚⠥⠙⠛⠫" }, { "input": "judgement", "output": "⠚⠥⠙⠛⠑⠰⠞" }, { "input": "judgemental", "output": "⠚⠥⠙⠛⠑⠰⠞â â ‡" }, { "input": "judgements", "output": "⠚⠥⠙⠛⠑⠰⠞⠎" }, { "input": "judges", "output": "⠚⠥⠙⠛⠑⠎" }, { "input": "judgeship", "output": "⠚⠥⠙⠛⠑⠩⠊â " }, { "input": "judging", "output": "⠚⠥⠙⠛⠬" }, { "input": "judgment", "output": "⠚⠥⠙⠛⠰⠞" }, { "input": "judgmental", "output": "⠚⠥⠙⠛⠰⠞â â ‡" }, { "input": "judgments", "output": "⠚⠥⠙⠛⠰⠞⠎" }, { "input": "judicature", "output": "⠚⠥⠙⠊⠉â â žâ ¥â —â ‘" }, { "input": "judicial", "output": "⠚⠥⠙⠊⠉⠊â â ‡" }, { "input": "judicially", "output": "⠚⠥⠙⠊⠉⠊â â ‡â ‡â ½" }, { "input": "judiciaries", "output": "⠚⠥⠙⠊⠉⠊⠜⠊⠑⠎" }, { "input": "judiciary", "output": "⠚⠥⠙⠊⠉⠊⠜⠽" }, { "input": "judicious", "output": "⠚⠥⠙⠊⠉⠊⠳⠎" }, { "input": "judiciously", "output": "⠚⠥⠙⠊⠉⠊⠳⠎⠇⠽" }, { "input": "judiciousness", "output": "⠚⠥⠙⠊⠉⠊⠳⠎⠰⠎" }, { "input": "judo", "output": "⠚⠥⠙⠕" }, { "input": "jug", "output": "⠚⠥⠛" }, { "input": "jugged", "output": "⠚⠥⠶⠫" }, { "input": "juggernaut", "output": "⠚⠥⠶⠻â â â ¥â ž" }, { "input": "juggernauts", "output": "⠚⠥⠶⠻â â â ¥â žâ Ž" }, { "input": "jugging", "output": "⠚⠥⠶⠬" }, { "input": "juggle", "output": "⠚⠥⠶⠇⠑" }, { "input": "juggled", "output": "⠚⠥⠶⠇⠫" }, { "input": "juggler", "output": "⠚⠥⠶⠇⠻" }, { "input": "jugglers", "output": "⠚⠥⠶⠇⠻⠎" }, { "input": "juggles", "output": "⠚⠥⠶⠇⠑⠎" }, { "input": "juggling", "output": "⠚⠥⠶⠇⠬" }, { "input": "jugs", "output": "⠚⠥⠛⠎" }, { "input": "jugular", "output": "⠚⠥⠛⠥⠇⠜" }, { "input": "jugulars", "output": "⠚⠥⠛⠥⠇⠜⠎" }, { "input": "juice", "output": "⠚⠥⠊⠉⠑" }, { "input": "juiced", "output": "⠚⠥⠊⠉⠫" }, { "input": "juicer", "output": "⠚⠥⠊⠉⠻" }, { "input": "juicers", "output": "⠚⠥⠊⠉⠻⠎" }, { "input": "juices", "output": "⠚⠥⠊⠉⠑⠎" }, { "input": "juicier", "output": "⠚⠥⠊⠉⠊⠻" }, { "input": "juiciest", "output": "⠚⠥⠊⠉⠊⠑⠌" }, { "input": "juiciness", "output": "⠚⠥⠊⠉⠊⠰⠎" }, { "input": "juicing", "output": "⠚⠥⠊⠉⠬" }, { "input": "juicy", "output": "⠚⠥⠊⠉⠽" }, { "input": "jujitsu", "output": "⠚⠥⠚⠊⠞⠎⠥" }, { "input": "jujube", "output": "⠚⠥⠚⠥⠃⠑" }, { "input": "jujubes", "output": "⠚⠥⠚⠥⠃⠑⠎" }, { "input": "jujutsu", "output": "⠚⠥⠚⠥⠞⠎⠥" }, { "input": "jukebox", "output": "⠚⠥⠅⠑⠃⠕⠭" }, { "input": "jukeboxes", "output": "⠚⠥⠅⠑⠃⠕⠭⠑⠎" }, { "input": "julep", "output": "⠚⠥⠇⠑â " }, { "input": "juleps", "output": "⠚⠥⠇⠑â â Ž" }, { "input": "julienne", "output": "⠚⠥⠇⠊⠢â â ‘" }, { "input": "jumble", "output": "â šâ ¥â â ƒâ ‡â ‘" }, { "input": "jumbled", "output": "â šâ ¥â â ƒâ ‡â «" }, { "input": "jumbles", "output": "â šâ ¥â â ƒâ ‡â ‘â Ž" }, { "input": "jumbling", "output": "â šâ ¥â â ƒâ ‡â ¬" }, { "input": "jumbo", "output": "â šâ ¥â â ƒâ •" }, { "input": "jumbos", "output": "â šâ ¥â â ƒâ •â Ž" }, { "input": "jump", "output": "â šâ ¥â â " }, { "input": "jumped", "output": "â šâ ¥â â â «" }, { "input": "jumper", "output": "â šâ ¥â â â »" }, { "input": "jumpers", "output": "â šâ ¥â â â »â Ž" }, { "input": "jumpier", "output": "â šâ ¥â â â Šâ »" }, { "input": "jumpiest", "output": "â šâ ¥â â â Šâ ‘â Œ" }, { "input": "jumpiness", "output": "â šâ ¥â â â Šâ °â Ž" }, { "input": "jumping", "output": "â šâ ¥â â â ¬" }, { "input": "jumps", "output": "â šâ ¥â â â Ž" }, { "input": "jumpsuit", "output": "â šâ ¥â â â Žâ ¥â Šâ ž" }, { "input": "jumpsuits", "output": "â šâ ¥â â â Žâ ¥â Šâ žâ Ž" }, { "input": "jumpy", "output": "â šâ ¥â â â ½" }, { "input": "junco", "output": "â šâ ¥â â ‰â •" }, { "input": "juncoes", "output": "â šâ ¥â â ‰â •â ‘â Ž" }, { "input": "juncos", "output": "â šâ ¥â â ‰â •â Ž" }, { "input": "junction", "output": "â šâ ¥â â ‰â °â " }, { "input": "junctions", "output": "â šâ ¥â â ‰â °â â Ž" }, { "input": "juncture", "output": "â šâ ¥â â ‰â žâ ¥â —â ‘" }, { "input": "junctures", "output": "â šâ ¥â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "jungle", "output": "â šâ ¥â â ›â ‡â ‘" }, { "input": "jungles", "output": "â šâ ¥â â ›â ‡â ‘â Ž" }, { "input": "junior", "output": "â šâ ¥â â Šâ •â —" }, { "input": "juniors", "output": "â šâ ¥â â Šâ •â —â Ž" }, { "input": "juniper", "output": "â šâ ¥â â Šâ â »" }, { "input": "junipers", "output": "â šâ ¥â â Šâ â »â Ž" }, { "input": "junk", "output": "â šâ ¥â â …" }, { "input": "junked", "output": "â šâ ¥â â …â «" }, { "input": "junker", "output": "â šâ ¥â â …â »" }, { "input": "junkers", "output": "â šâ ¥â â …⠻⠎" }, { "input": "junket", "output": "â šâ ¥â â …â ‘â ž" }, { "input": "junketed", "output": "â šâ ¥â â …â ‘â žâ «" }, { "input": "junketing", "output": "â šâ ¥â â …â ‘â žâ ¬" }, { "input": "junkets", "output": "â šâ ¥â â …â ‘â žâ Ž" }, { "input": "junkie", "output": "â šâ ¥â â …â Šâ ‘" }, { "input": "junkier", "output": "â šâ ¥â â …â Šâ »" }, { "input": "junkies", "output": "â šâ ¥â â …â Šâ ‘â Ž" }, { "input": "junkiest", "output": "â šâ ¥â â …â Šâ ‘â Œ" }, { "input": "junking", "output": "â šâ ¥â â …â ¬" }, { "input": "junks", "output": "â šâ ¥â â …â Ž" }, { "input": "junky", "output": "â šâ ¥â â …â ½" }, { "input": "junkyard", "output": "â šâ ¥â â …⠽⠜⠙" }, { "input": "junkyards", "output": "â šâ ¥â â …⠽⠜⠙⠎" }, { "input": "junta", "output": "â šâ ¥â â žâ " }, { "input": "juntas", "output": "â šâ ¥â â žâ â Ž" }, { "input": "juridical", "output": "⠚⠥⠗⠊⠙⠊⠉â â ‡" }, { "input": "juries", "output": "⠚⠥⠗⠊⠑⠎" }, { "input": "jurisdiction", "output": "⠚⠥⠗⠊⠎⠙⠊⠉⠰â " }, { "input": "jurisdictional", "output": "⠚⠥⠗⠊⠎⠙⠊⠉⠰â â â ‡" }, { "input": "jurisprudence", "output": "⠚⠥⠗⠊⠎â â —⠥⠙⠰⠑" }, { "input": "jurist", "output": "⠚⠥⠗⠊⠌" }, { "input": "jurists", "output": "⠚⠥⠗⠊⠌⠎" }, { "input": "juror", "output": "⠚⠥⠗⠕⠗" }, { "input": "jurors", "output": "⠚⠥⠗⠕⠗⠎" }, { "input": "jury", "output": "⠚⠥⠗⠽" }, { "input": "just", "output": "â š" }, { "input": "juster", "output": "⠚⠥⠌⠻" }, { "input": "justest", "output": "⠚⠥⠌⠑⠌" }, { "input": "justice", "output": "⠚⠥⠌⠊⠉⠑" }, { "input": "justices", "output": "⠚⠥⠌⠊⠉⠑⠎" }, { "input": "justifiable", "output": "⠚⠥⠌⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "justifiably", "output": "⠚⠥⠌⠊⠋⠊â â ƒâ ‡â ½" }, { "input": "justification", "output": "⠚⠥⠌⠊⠋⠊⠉â â °â " }, { "input": "justifications", "output": "⠚⠥⠌⠊⠋⠊⠉â â °â â Ž" }, { "input": "justified", "output": "⠚⠥⠌⠊⠋⠊⠫" }, { "input": "justifies", "output": "⠚⠥⠌⠊⠋⠊⠑⠎" }, { "input": "justify", "output": "⠚⠥⠌⠊⠋⠽" }, { "input": "justifying", "output": "⠚⠥⠌⠊⠋⠽⠬" }, { "input": "justly", "output": "⠚⠥⠌⠇⠽" }, { "input": "justness", "output": "⠚⠥⠌⠰⠎" }, { "input": "jut", "output": "⠚⠥⠞" }, { "input": "jute", "output": "⠚⠥⠞⠑" }, { "input": "juts", "output": "⠚⠥⠞⠎" }, { "input": "jutted", "output": "⠚⠥⠞⠞⠫" }, { "input": "jutting", "output": "⠚⠥⠞⠞⠬" }, { "input": "juvenile", "output": "⠚⠥⠧⠢⠊⠇⠑" }, { "input": "juveniles", "output": "⠚⠥⠧⠢⠊⠇⠑⠎" }, { "input": "juxtapose", "output": "⠚⠥⠭⠞â â â •â Žâ ‘" }, { "input": "juxtaposed", "output": "⠚⠥⠭⠞â â â •â Žâ «" }, { "input": "juxtaposes", "output": "⠚⠥⠭⠞â â â •â Žâ ‘â Ž" }, { "input": "juxtaposing", "output": "⠚⠥⠭⠞â â â •â Žâ ¬" }, { "input": "juxtaposition", "output": "⠚⠥⠭⠞â â â •â Žâ Šâ °â " }, { "input": "juxtapositions", "output": "⠚⠥⠭⠞â â â •â Žâ Šâ °â â Ž" }, { "input": "k", "output": "â °â …" }, { "input": "kHz", "output": "â …â  â “â µ" }, { "input": "kW", "output": "â …â  â º" }, { "input": "kabob", "output": "â …â â ƒâ •â ƒ" }, { "input": "kabobs", "output": "â …â â ƒâ •⠃⠎" }, { "input": "kaboom", "output": "â …â â ƒâ •â •â " }, { "input": "kaftan", "output": "â …â â ‹â žâ â " }, { "input": "kaftans", "output": "â …â â ‹â žâ â â Ž" }, { "input": "kale", "output": "â …â â ‡â ‘" }, { "input": "kaleidoscope", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â ‘" }, { "input": "kaleidoscopes", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â ‘â Ž" }, { "input": "kaleidoscopic", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â Šâ ‰" }, { "input": "kamikaze", "output": "â …â â â Šâ …â â µâ ‘" }, { "input": "kamikazes", "output": "â …â â â Šâ …â â µâ ‘â Ž" }, { "input": "kangaroo", "output": "â …â â â ›â œâ •â •" }, { "input": "kangaroos", "output": "â …â â â ›â œâ •â •â Ž" }, { "input": "kaolin", "output": "â …â â •⠇⠔" }, { "input": "kapok", "output": "â …â â â •â …" }, { "input": "kaput", "output": "â …â â â ¥â ž" }, { "input": "karakul", "output": "â …â œâ â …⠥⠇" }, { "input": "karaoke", "output": "â …â œâ â •â …â ‘" }, { "input": "karaokes", "output": "â …â œâ â •â …â ‘â Ž" }, { "input": "karat", "output": "â …â œâ â ž" }, { "input": "karate", "output": "â …â œâ â žâ ‘" }, { "input": "karats", "output": "â …â œâ â žâ Ž" }, { "input": "karma", "output": "â …â œâ â " }, { "input": "katydid", "output": "â …â â žâ ½â ™â Šâ ™" }, { "input": "katydids", "output": "â …â â žâ ½â ™â Šâ ™â Ž" }, { "input": "kayak", "output": "â …â â ½â â …" }, { "input": "kayaked", "output": "â …â â ½â â …â «" }, { "input": "kayaking", "output": "â …â â ½â â …â ¬" }, { "input": "kayaks", "output": "â …â â ½â â …â Ž" }, { "input": "kazoo", "output": "â …â â µâ •â •" }, { "input": "kazoos", "output": "â …â â µâ •â •â Ž" }, { "input": "kc", "output": "â …â ‰" }, { "input": "kebab", "output": "â …â ‘â ƒâ â ƒ" }, { "input": "kebabs", "output": "â …â ‘â ƒâ â ƒâ Ž" }, { "input": "kebob", "output": "⠅⠑⠃⠕⠃" }, { "input": "kebobs", "output": "⠅⠑⠃⠕⠃⠎" }, { "input": "keel", "output": "â …â ‘â ‘â ‡" }, { "input": "keeled", "output": "⠅⠑⠑⠇⠫" }, { "input": "keeling", "output": "⠅⠑⠑⠇⠬" }, { "input": "keels", "output": "⠅⠑⠑⠇⠎" }, { "input": "keen", "output": "â …â ‘â ¢" }, { "input": "keened", "output": "⠅⠑⠢⠫" }, { "input": "keener", "output": "⠅⠑⠢⠻" }, { "input": "keenest", "output": "⠅⠑⠢⠑⠌" }, { "input": "keening", "output": "⠅⠑⠢⠬" }, { "input": "keenly", "output": "⠅⠑⠢⠇⠽" }, { "input": "keenness", "output": "⠅⠑⠢⠰⠎" }, { "input": "keens", "output": "⠅⠑⠢⠎" }, { "input": "keep", "output": "â …â ‘â ‘â " }, { "input": "keeper", "output": "â …â ‘â ‘â â »" }, { "input": "keepers", "output": "â …â ‘â ‘â â »â Ž" }, { "input": "keeping", "output": "â …â ‘â ‘â â ¬" }, { "input": "keeps", "output": "â …â ‘â ‘â â Ž" }, { "input": "keepsake", "output": "â …â ‘â ‘â â Žâ â …â ‘" }, { "input": "keepsakes", "output": "â …â ‘â ‘â â Žâ â …â ‘â Ž" }, { "input": "keg", "output": "â …â ‘â ›" }, { "input": "kegs", "output": "⠅⠑⠛⠎" }, { "input": "kelp", "output": "â …â ‘â ‡â " }, { "input": "ken", "output": "â …â ¢" }, { "input": "kenned", "output": "â …â ¢â â «" }, { "input": "kennel", "output": "â …â ¢â â ‘â ‡" }, { "input": "kenneled", "output": "â …â ¢â â ‘⠇⠫" }, { "input": "kenneling", "output": "â …â ¢â â ‘⠇⠬" }, { "input": "kennelled", "output": "â …â ¢â â ‘⠇⠇⠫" }, { "input": "kennelling", "output": "â …â ¢â â ‘⠇⠇⠬" }, { "input": "kennels", "output": "â …â ¢â â ‘⠇⠎" }, { "input": "kenning", "output": "â …â ¢â â ¬" }, { "input": "kens", "output": "⠅⠢⠎" }, { "input": "kept", "output": "â …â ‘â â ž" }, { "input": "keratin", "output": "â …â »â â žâ ”" }, { "input": "kerchief", "output": "⠅⠻⠡⠊⠑⠋" }, { "input": "kerchiefs", "output": "⠅⠻⠡⠊⠑⠋⠎" }, { "input": "kerchieves", "output": "⠅⠻⠡⠊⠑⠧⠑⠎" }, { "input": "kernel", "output": "â …â »â â ‘â ‡" }, { "input": "kernels", "output": "â …â »â â ‘⠇⠎" }, { "input": "kerosene", "output": "⠅⠻⠕⠎⠢⠑" }, { "input": "kerosine", "output": "⠅⠻⠕⠎⠔⠑" }, { "input": "kestrel", "output": "⠅⠑⠌⠗⠑⠇" }, { "input": "kestrels", "output": "⠅⠑⠌⠗⠑⠇⠎" }, { "input": "ketch", "output": "â …â ‘â žâ ¡" }, { "input": "ketches", "output": "â …â ‘â žâ ¡â ‘â Ž" }, { "input": "ketchup", "output": "â …â ‘â žâ ¡â ¥â " }, { "input": "kettle", "output": "⠅⠑⠞⠞⠇⠑" }, { "input": "kettledrum", "output": "⠅⠑⠞⠞⠇⠑⠙⠗⠥â " }, { "input": "kettledrums", "output": "⠅⠑⠞⠞⠇⠑⠙⠗⠥â â Ž" }, { "input": "kettles", "output": "⠅⠑⠞⠞⠇⠑⠎" }, { "input": "key", "output": "â …â ‘â ½" }, { "input": "keyboard", "output": "⠅⠑⠽⠃⠕⠜⠙" }, { "input": "keyboarded", "output": "⠅⠑⠽⠃⠕⠜⠙⠫" }, { "input": "keyboarder", "output": "⠅⠑⠽⠃⠕⠜⠙⠻" }, { "input": "keyboarders", "output": "⠅⠑⠽⠃⠕⠜⠙⠻⠎" }, { "input": "keyboarding", "output": "⠅⠑⠽⠃⠕⠜⠙⠬" }, { "input": "keyboards", "output": "⠅⠑⠽⠃⠕⠜⠙⠎" }, { "input": "keyed", "output": "⠅⠑⠽⠫" }, { "input": "keyhole", "output": "⠅⠑⠽⠓⠕⠇⠑" }, { "input": "keyholes", "output": "⠅⠑⠽⠓⠕⠇⠑⠎" }, { "input": "keying", "output": "⠅⠑⠽⠬" }, { "input": "keynote", "output": "â …â ‘â ½â â •â žâ ‘" }, { "input": "keynoted", "output": "â …â ‘â ½â â •â žâ «" }, { "input": "keynotes", "output": "â …â ‘â ½â â •â žâ ‘â Ž" }, { "input": "keynoting", "output": "â …â ‘â ½â â •â žâ ¬" }, { "input": "keypunch", "output": "â …â ‘â ½â â ¥â â ¡" }, { "input": "keypunched", "output": "â …â ‘â ½â â ¥â â ¡â «" }, { "input": "keypunches", "output": "â …â ‘â ½â â ¥â â ¡â ‘â Ž" }, { "input": "keypunching", "output": "â …â ‘â ½â â ¥â â ¡â ¬" }, { "input": "keys", "output": "⠅⠑⠽⠎" }, { "input": "keystone", "output": "⠅⠑⠽⠌â â •" }, { "input": "keystones", "output": "⠅⠑⠽⠌â â •â Ž" }, { "input": "keystroke", "output": "⠅⠑⠽⠌⠗⠕⠅⠑" }, { "input": "keystrokes", "output": "⠅⠑⠽⠌⠗⠕⠅⠑⠎" }, { "input": "keyword", "output": "⠅⠑⠽⠘⠺" }, { "input": "keywords", "output": "⠅⠑⠽⠘⠺⠎" }, { "input": "khaki", "output": "â …â “â â …â Š" }, { "input": "khakis", "output": "â …â “â â …â Šâ Ž" }, { "input": "khan", "output": "â …â “â â " }, { "input": "khans", "output": "â …â “â â â Ž" }, { "input": "kibbutz", "output": "⠅⠊⠆⠥⠞⠵" }, { "input": "kibbutzim", "output": "⠅⠊⠆⠥⠞⠵⠊â " }, { "input": "kibitz", "output": "⠅⠊⠃⠊⠞⠵" }, { "input": "kibitzed", "output": "⠅⠊⠃⠊⠞⠵⠫" }, { "input": "kibitzer", "output": "⠅⠊⠃⠊⠞⠵⠻" }, { "input": "kibitzers", "output": "⠅⠊⠃⠊⠞⠵⠻⠎" }, { "input": "kibitzes", "output": "⠅⠊⠃⠊⠞⠵⠑⠎" }, { "input": "kibitzing", "output": "⠅⠊⠃⠊⠞⠵⠬" }, { "input": "kibosh", "output": "⠅⠊⠃⠕⠩" }, { "input": "kick", "output": "⠅⠊⠉⠅" }, { "input": "kickback", "output": "⠅⠊⠉⠅⠃â â ‰â …" }, { "input": "kickbacks", "output": "⠅⠊⠉⠅⠃â â ‰â …â Ž" }, { "input": "kicked", "output": "⠅⠊⠉⠅⠫" }, { "input": "kicker", "output": "⠅⠊⠉⠅⠻" }, { "input": "kickers", "output": "⠅⠊⠉⠅⠻⠎" }, { "input": "kickier", "output": "⠅⠊⠉⠅⠊⠻" }, { "input": "kickiest", "output": "⠅⠊⠉⠅⠊⠑⠌" }, { "input": "kicking", "output": "⠅⠊⠉⠅⠬" }, { "input": "kickoff", "output": "⠅⠊⠉⠅⠷⠋" }, { "input": "kickoffs", "output": "⠅⠊⠉⠅⠷⠋⠎" }, { "input": "kicks", "output": "⠅⠊⠉⠅⠎" }, { "input": "kickstand", "output": "⠅⠊⠉⠅⠌⠯" }, { "input": "kickstands", "output": "⠅⠊⠉⠅⠌⠯⠎" }, { "input": "kicky", "output": "⠅⠊⠉⠅⠽" }, { "input": "kid", "output": "â …â Šâ ™" }, { "input": "kidded", "output": "⠅⠊⠙⠙⠫" }, { "input": "kidder", "output": "⠅⠊⠙⠙⠻" }, { "input": "kidders", "output": "⠅⠊⠙⠙⠻⠎" }, { "input": "kiddie", "output": "⠅⠊⠙⠙⠊⠑" }, { "input": "kiddies", "output": "⠅⠊⠙⠙⠊⠑⠎" }, { "input": "kidding", "output": "⠅⠊⠙⠙⠬" }, { "input": "kiddo", "output": "⠅⠊⠙⠙⠕" }, { "input": "kiddoes", "output": "⠅⠊⠙⠙⠕⠑⠎" }, { "input": "kiddos", "output": "⠅⠊⠙⠙⠕⠎" }, { "input": "kiddy", "output": "⠅⠊⠙⠙⠽" }, { "input": "kidnap", "output": "â …â Šâ ™â â â " }, { "input": "kidnaped", "output": "â …â Šâ ™â â â â «" }, { "input": "kidnaper", "output": "â …â Šâ ™â â â â »" }, { "input": "kidnapers", "output": "â …â Šâ ™â â â â »â Ž" }, { "input": "kidnaping", "output": "â …â Šâ ™â â â â ¬" }, { "input": "kidnapped", "output": "â …â Šâ ™â â â â â «" }, { "input": "kidnapper", "output": "â …â Šâ ™â â â â â »" }, { "input": "kidnappers", "output": "â …â Šâ ™â â â â â »â Ž" }, { "input": "kidnapping", "output": "â …â Šâ ™â â â â â ¬" }, { "input": "kidnappings", "output": "â …â Šâ ™â â â â â ¬â Ž" }, { "input": "kidnaps", "output": "â …â Šâ ™â â â â Ž" }, { "input": "kidney", "output": "â …â Šâ ™â â ‘â ½" }, { "input": "kidneys", "output": "â …â Šâ ™â â ‘⠽⠎" }, { "input": "kids", "output": "⠅⠊⠙⠎" }, { "input": "kielbasa", "output": "⠅⠊⠑⠇⠃â â Žâ " }, { "input": "kielbasas", "output": "⠅⠊⠑⠇⠃â â Žâ â Ž" }, { "input": "kielbasy", "output": "⠅⠊⠑⠇⠃â â Žâ ½" }, { "input": "kill", "output": "⠅⠊⠇⠇" }, { "input": "killdeer", "output": "⠅⠊⠇⠇⠙⠑⠻" }, { "input": "killdeers", "output": "⠅⠊⠇⠇⠙⠑⠻⠎" }, { "input": "killed", "output": "⠅⠊⠇⠇⠫" }, { "input": "killer", "output": "⠅⠊⠇⠇⠻" }, { "input": "killers", "output": "⠅⠊⠇⠇⠻⠎" }, { "input": "killing", "output": "⠅⠊⠇⠇⠬" }, { "input": "killings", "output": "⠅⠊⠇⠇⠬⠎" }, { "input": "killjoy", "output": "⠅⠊⠇⠇⠚⠕⠽" }, { "input": "killjoys", "output": "⠅⠊⠇⠇⠚⠕⠽⠎" }, { "input": "kills", "output": "⠅⠊⠇⠇⠎" }, { "input": "kiln", "output": "â …â Šâ ‡â " }, { "input": "kilned", "output": "â …â Šâ ‡â â «" }, { "input": "kilning", "output": "â …â Šâ ‡â â ¬" }, { "input": "kilns", "output": "â …â Šâ ‡â â Ž" }, { "input": "kilo", "output": "⠅⠊⠇⠕" }, { "input": "kilobyte", "output": "⠅⠊⠇⠕⠃⠽⠞⠑" }, { "input": "kilobytes", "output": "⠅⠊⠇⠕⠃⠽⠞⠑⠎" }, { "input": "kilocycle", "output": "⠅⠊⠇⠕⠉⠽⠉⠇⠑" }, { "input": "kilocycles", "output": "⠅⠊⠇⠕⠉⠽⠉⠇⠑⠎" }, { "input": "kilogram", "output": "⠅⠊⠇⠕⠛⠗â â " }, { "input": "kilograms", "output": "⠅⠊⠇⠕⠛⠗â â â Ž" }, { "input": "kilohertz", "output": "⠅⠊⠇⠕⠓⠻⠞⠵" }, { "input": "kilohertzes", "output": "⠅⠊⠇⠕⠓⠻⠞⠵⠑⠎" }, { "input": "kilometer", "output": "⠅⠊⠇⠕â â ‘â žâ »" }, { "input": "kilometers", "output": "⠅⠊⠇⠕â â ‘⠞⠻⠎" }, { "input": "kilos", "output": "⠅⠊⠇⠕⠎" }, { "input": "kiloton", "output": "⠅⠊⠇⠕⠞⠕â " }, { "input": "kilotons", "output": "⠅⠊⠇⠕⠞⠕â â Ž" }, { "input": "kilowatt", "output": "⠅⠊⠇⠕⠺â â žâ ž" }, { "input": "kilowatts", "output": "⠅⠊⠇⠕⠺â â žâ žâ Ž" }, { "input": "kilt", "output": "⠅⠊⠇⠞" }, { "input": "kilter", "output": "⠅⠊⠇⠞⠻" }, { "input": "kilts", "output": "⠅⠊⠇⠞⠎" }, { "input": "kimono", "output": "â …â Šâ â •â â •" }, { "input": "kimonos", "output": "â …â Šâ â •â â •â Ž" }, { "input": "kin", "output": "â …â ”" }, { "input": "kind", "output": "⠅⠔⠙" }, { "input": "kinda", "output": "⠅⠔⠙â " }, { "input": "kinder", "output": "⠅⠔⠙⠻" }, { "input": "kindergarten", "output": "⠅⠔⠙⠻⠛⠜⠞⠢" }, { "input": "kindergartener", "output": "⠅⠔⠙⠻⠛⠜⠞⠢⠻" }, { "input": "kindergarteners", "output": "⠅⠔⠙⠻⠛⠜⠞⠢⠻⠎" }, { "input": "kindergartens", "output": "⠅⠔⠙⠻⠛⠜⠞⠢⠎" }, { "input": "kindergärtner", "output": "⠅⠔⠙⠻⠛⠠⠘⠻â â ¡â ˆâ Žâ —â žâ â »" }, { "input": "kindergärtners", "output": "⠅⠔⠙⠻⠛⠠⠘⠻â â ¡â ˆâ Žâ —â žâ â »â Ž" }, { "input": "kindest", "output": "⠅⠔⠙⠑⠌" }, { "input": "kindhearted", "output": "⠅⠔⠙⠓⠑⠜⠞⠫" }, { "input": "kindle", "output": "⠅⠔⠙⠇⠑" }, { "input": "kindled", "output": "⠅⠔⠙⠇⠫" }, { "input": "kindles", "output": "⠅⠔⠙⠇⠑⠎" }, { "input": "kindlier", "output": "⠅⠔⠙⠇⠊⠻" }, { "input": "kindliest", "output": "⠅⠔⠙⠇⠊⠑⠌" }, { "input": "kindliness", "output": "⠅⠔⠙⠇⠊⠰⠎" }, { "input": "kindling", "output": "⠅⠔⠙⠇⠬" }, { "input": "kindly", "output": "⠅⠔⠙⠇⠽" }, { "input": "kindness", "output": "⠅⠔⠙⠰⠎" }, { "input": "kindnesses", "output": "⠅⠔⠙⠰⠎⠑⠎" }, { "input": "kindred", "output": "⠅⠔⠙⠗⠫" }, { "input": "kinds", "output": "⠅⠔⠙⠎" }, { "input": "kinematic", "output": "⠅⠔⠑â â â žâ Šâ ‰" }, { "input": "kinematics", "output": "⠅⠔⠑â â â žâ Šâ ‰â Ž" }, { "input": "kinetic", "output": "⠅⠔⠑⠞⠊⠉" }, { "input": "kinfolk", "output": "⠅⠔⠋⠕⠇⠅" }, { "input": "kinfolks", "output": "⠅⠔⠋⠕⠇⠅⠎" }, { "input": "king", "output": "â …â ¬" }, { "input": "kingdom", "output": "⠅⠬⠙⠕â " }, { "input": "kingdoms", "output": "⠅⠬⠙⠕â â Ž" }, { "input": "kingfisher", "output": "⠅⠬⠋⠊⠩⠻" }, { "input": "kingfishers", "output": "⠅⠬⠋⠊⠩⠻⠎" }, { "input": "kinglier", "output": "⠅⠬⠇⠊⠻" }, { "input": "kingliest", "output": "⠅⠬⠇⠊⠑⠌" }, { "input": "kingly", "output": "⠅⠬⠇⠽" }, { "input": "kingpin", "output": "â …â ¬â â ”" }, { "input": "kingpins", "output": "â …â ¬â â ”â Ž" }, { "input": "kings", "output": "⠅⠬⠎" }, { "input": "kingship", "output": "⠅⠬⠩⠊â " }, { "input": "kink", "output": "⠅⠔⠅" }, { "input": "kinked", "output": "⠅⠔⠅⠫" }, { "input": "kinkier", "output": "⠅⠔⠅⠊⠻" }, { "input": "kinkiest", "output": "⠅⠔⠅⠊⠑⠌" }, { "input": "kinking", "output": "⠅⠔⠅⠬" }, { "input": "kinks", "output": "⠅⠔⠅⠎" }, { "input": "kinky", "output": "⠅⠔⠅⠽" }, { "input": "kinship", "output": "⠅⠔⠩⠊â " }, { "input": "kinsman", "output": "⠅⠔⠎â â â " }, { "input": "kinsmen", "output": "⠅⠔⠎â â ¢" }, { "input": "kinswoman", "output": "⠅⠔⠎⠺⠕â â â " }, { "input": "kinswomen", "output": "⠅⠔⠎⠺⠕â â ¢" }, { "input": "kiosk", "output": "â …â Šâ •â Žâ …" }, { "input": "kiosks", "output": "â …â Šâ •â Žâ …â Ž" }, { "input": "kipper", "output": "â …â Šâ â â »" }, { "input": "kippered", "output": "â …â Šâ â â »â «" }, { "input": "kippering", "output": "â …â Šâ â â »â ¬" }, { "input": "kippers", "output": "â …â Šâ â â »â Ž" }, { "input": "kismet", "output": "â …â Šâ Žâ â ‘â ž" }, { "input": "kiss", "output": "â …â Šâ Žâ Ž" }, { "input": "kissed", "output": "â …â Šâ Žâ Žâ «" }, { "input": "kisser", "output": "â …â Šâ Žâ Žâ »" }, { "input": "kissers", "output": "⠅⠊⠎⠎⠻⠎" }, { "input": "kisses", "output": "â …â Šâ Žâ Žâ ‘â Ž" }, { "input": "kissing", "output": "â …â Šâ Žâ Žâ ¬" }, { "input": "kit", "output": "â …â Šâ ž" }, { "input": "kitchen", "output": "â …â Šâ žâ ¡â ¢" }, { "input": "kitchenette", "output": "⠅⠊⠞⠡⠢⠑⠞⠞⠑" }, { "input": "kitchenettes", "output": "⠅⠊⠞⠡⠢⠑⠞⠞⠑⠎" }, { "input": "kitchens", "output": "⠅⠊⠞⠡⠢⠎" }, { "input": "kitchenware", "output": "⠅⠊⠞⠡⠢⠺⠜⠑" }, { "input": "kite", "output": "â …â Šâ žâ ‘" }, { "input": "kited", "output": "â …â Šâ žâ «" }, { "input": "kites", "output": "â …â Šâ žâ ‘â Ž" }, { "input": "kith", "output": "â …â Šâ ¹" }, { "input": "kiting", "output": "â …â Šâ žâ ¬" }, { "input": "kits", "output": "â …â Šâ žâ Ž" }, { "input": "kitsch", "output": "â …â Šâ žâ Žâ ¡" }, { "input": "kitschy", "output": "â …â Šâ žâ Žâ ¡â ½" }, { "input": "kitten", "output": "â …â Šâ žâ žâ ¢" }, { "input": "kittenish", "output": "⠅⠊⠞⠞⠢⠊⠩" }, { "input": "kittens", "output": "⠅⠊⠞⠞⠢⠎" }, { "input": "kitties", "output": "â …â Šâ žâ žâ Šâ ‘â Ž" }, { "input": "kitty", "output": "â …â Šâ žâ žâ ½" }, { "input": "kiwi", "output": "⠅⠊⠺⠊" }, { "input": "kiwis", "output": "⠅⠊⠺⠊⠎" }, { "input": "kleptomania", "output": "⠅⠇⠑â â žâ •â â â â Šâ " }, { "input": "kleptomaniac", "output": "⠅⠇⠑â â žâ •â â â â Šâ â ‰" }, { "input": "kleptomaniacs", "output": "⠅⠇⠑â â žâ •â â â â Šâ â ‰â Ž" }, { "input": "klutz", "output": "⠅⠇⠥⠞⠵" }, { "input": "klutzes", "output": "⠅⠇⠥⠞⠵⠑⠎" }, { "input": "klutzier", "output": "⠅⠇⠥⠞⠵⠊⠻" }, { "input": "klutziest", "output": "⠅⠇⠥⠞⠵⠊⠑⠌" }, { "input": "klutzy", "output": "⠅⠇⠥⠞⠵⠽" }, { "input": "knack", "output": "â …â â â ‰â …" }, { "input": "knacker", "output": "â …â â â ‰â …â »" }, { "input": "knacks", "output": "â …â â â ‰â …â Ž" }, { "input": "knackwurst", "output": "â …â â â ‰â …⠺⠥⠗⠌" }, { "input": "knackwursts", "output": "â …â â â ‰â …⠺⠥⠗⠌⠎" }, { "input": "knapsack", "output": "â …â â â â Žâ â ‰â …" }, { "input": "knapsacks", "output": "â …â â â â Žâ â ‰â …â Ž" }, { "input": "knave", "output": "â …â â â §â ‘" }, { "input": "knavery", "output": "â …â â â §â »â ½" }, { "input": "knaves", "output": "â …â â â §â ‘â Ž" }, { "input": "knavish", "output": "â …â â â §â Šâ ©" }, { "input": "knead", "output": "â …â â ‚â ™" }, { "input": "kneaded", "output": "â …â â ‚⠙⠫" }, { "input": "kneader", "output": "â …â â ‚⠙⠻" }, { "input": "kneaders", "output": "â …â â ‚⠙⠻⠎" }, { "input": "kneading", "output": "â …â â ‚⠙⠬" }, { "input": "kneads", "output": "â …â â ‚⠙⠎" }, { "input": "knee", "output": "â …â â ‘â ‘" }, { "input": "kneecap", "output": "â …â â ‘â ‘â ‰â â " }, { "input": "kneecapped", "output": "â …â â ‘â ‘â ‰â â â â «" }, { "input": "kneecapping", "output": "â …â â ‘â ‘â ‰â â â â ¬" }, { "input": "kneecaps", "output": "â …â â ‘â ‘â ‰â â â Ž" }, { "input": "kneed", "output": "â …â â ‘â «" }, { "input": "kneeing", "output": "â …â â ‘â ‘â ¬" }, { "input": "kneel", "output": "â …â â ‘â ‘â ‡" }, { "input": "kneeled", "output": "â …â â ‘⠑⠇⠫" }, { "input": "kneeling", "output": "â …â â ‘⠑⠇⠬" }, { "input": "kneels", "output": "â …â â ‘⠑⠇⠎" }, { "input": "knees", "output": "â …â â ‘â ‘â Ž" }, { "input": "knell", "output": "â …â â ‘⠇⠇" }, { "input": "knelled", "output": "â …â â ‘⠇⠇⠫" }, { "input": "knelling", "output": "â …â â ‘⠇⠇⠬" }, { "input": "knells", "output": "â …â â ‘⠇⠇⠎" }, { "input": "knelt", "output": "â …â â ‘⠇⠞" }, { "input": "knew", "output": "â …â â ‘â º" }, { "input": "knickers", "output": "â …â â Šâ ‰â …⠻⠎" }, { "input": "knickknack", "output": "â …â â Šâ ‰â …â …â â â ‰â …" }, { "input": "knickknacks", "output": "â …â â Šâ ‰â …â …â â â ‰â …â Ž" }, { "input": "knife", "output": "â …â â Šâ ‹â ‘" }, { "input": "knifed", "output": "â …â â Šâ ‹â «" }, { "input": "knifes", "output": "â …â â Šâ ‹â ‘â Ž" }, { "input": "knifing", "output": "â …â â Šâ ‹â ¬" }, { "input": "knight", "output": "â …â â Šâ £â ž" }, { "input": "knighted", "output": "â …â â Šâ £â žâ «" }, { "input": "knighthood", "output": "â …â â Šâ £â žâ “â •â •â ™" }, { "input": "knighthoods", "output": "â …â â Šâ £â žâ “⠕⠕⠙⠎" }, { "input": "knighting", "output": "â …â â Šâ £â žâ ¬" }, { "input": "knightly", "output": "â …â â Šâ £â žâ ‡â ½" }, { "input": "knights", "output": "â …â â Šâ £â žâ Ž" }, { "input": "knit", "output": "â …â â Šâ ž" }, { "input": "knits", "output": "â …â â Šâ žâ Ž" }, { "input": "knitted", "output": "â …â â Šâ žâ žâ «" }, { "input": "knitter", "output": "â …â â Šâ žâ žâ »" }, { "input": "knitters", "output": "â …â â Šâ žâ žâ »â Ž" }, { "input": "knitting", "output": "â …â â Šâ žâ žâ ¬" }, { "input": "knitwear", "output": "â …â â Šâ žâ ºâ ‘â œ" }, { "input": "knives", "output": "â …â â Šâ §â ‘â Ž" }, { "input": "knob", "output": "â …â â •â ƒ" }, { "input": "knobbier", "output": "â …â â •⠆⠊⠻" }, { "input": "knobbiest", "output": "â …â â •⠆⠊⠑⠌" }, { "input": "knobby", "output": "â …â â •⠆⠽" }, { "input": "knobs", "output": "â …â â •⠃⠎" }, { "input": "knock", "output": "â …â â •⠉⠅" }, { "input": "knocked", "output": "â …â â •⠉⠅⠫" }, { "input": "knocker", "output": "â …â â •⠉⠅⠻" }, { "input": "knockers", "output": "â …â â •⠉⠅⠻⠎" }, { "input": "knocking", "output": "â …â â •⠉⠅⠬" }, { "input": "knockout", "output": "â …â â •⠉⠅⠳⠞" }, { "input": "knockouts", "output": "â …â â •⠉⠅⠳⠞⠎" }, { "input": "knocks", "output": "â …â â •⠉⠅⠎" }, { "input": "knockwurst", "output": "â …â â •⠉⠅⠺⠥⠗⠌" }, { "input": "knockwursts", "output": "â …â â •⠉⠅⠺⠥⠗⠌⠎" }, { "input": "knoll", "output": "â …â â •⠇⠇" }, { "input": "knolls", "output": "â …â â •⠇⠇⠎" }, { "input": "knot", "output": "â …â â •â ž" }, { "input": "knothole", "output": "â …â â •⠞⠓⠕⠇⠑" }, { "input": "knotholes", "output": "â …â â •⠞⠓⠕⠇⠑⠎" }, { "input": "knots", "output": "â …â â •â žâ Ž" }, { "input": "knotted", "output": "â …â â •â žâ žâ «" }, { "input": "knottier", "output": "â …â â •â žâ žâ Šâ »" }, { "input": "knottiest", "output": "â …â â •â žâ žâ Šâ ‘â Œ" }, { "input": "knotting", "output": "â …â â •â žâ žâ ¬" }, { "input": "knotty", "output": "â …â â •â žâ žâ ½" }, { "input": "know", "output": "â â …" }, { "input": "knowable", "output": "â â …â â ƒâ ‡â ‘" }, { "input": "knowing", "output": "â â …â ¬" }, { "input": "knowingly", "output": "â â …⠬⠇⠽" }, { "input": "knowings", "output": "â â …⠬⠎" }, { "input": "knowledge", "output": "â …" }, { "input": "knowledgeable", "output": "â â …⠇⠫⠛⠂⠃⠇⠑" }, { "input": "knowledgeably", "output": "â â …⠇⠫⠛⠂⠃⠇⠽" }, { "input": "known", "output": "â â …â " }, { "input": "knows", "output": "â â …â Ž" }, { "input": "knuckle", "output": "â …â â ¥â ‰â …⠇⠑" }, { "input": "knuckled", "output": "â …â â ¥â ‰â …⠇⠫" }, { "input": "knucklehead", "output": "â …â â ¥â ‰â …⠇⠑⠓⠂⠙" }, { "input": "knuckleheads", "output": "â …â â ¥â ‰â …⠇⠑⠓⠂⠙⠎" }, { "input": "knuckles", "output": "â …â â ¥â ‰â …⠇⠑⠎" }, { "input": "knuckling", "output": "â …â â ¥â ‰â …⠇⠬" }, { "input": "koala", "output": "â …â •â â ‡â " }, { "input": "koalas", "output": "â …â •â â ‡â â Ž" }, { "input": "kohlrabi", "output": "⠅⠕⠓⠇⠗â â ƒâ Š" }, { "input": "kohlrabies", "output": "⠅⠕⠓⠇⠗â â ƒâ Šâ ‘â Ž" }, { "input": "kook", "output": "â …â •â •â …" }, { "input": "kookaburra", "output": "â …â •â •â …â â ƒâ ¥â —â —â " }, { "input": "kookaburras", "output": "â …â •â •â …â â ƒâ ¥â —â —â â Ž" }, { "input": "kookie", "output": "â …â •â •â …â Šâ ‘" }, { "input": "kookier", "output": "â …â •â •â …â Šâ »" }, { "input": "kookiest", "output": "â …â •â •â …â Šâ ‘â Œ" }, { "input": "kookiness", "output": "â …â •â •â …â Šâ °â Ž" }, { "input": "kooks", "output": "â …â •â •â …â Ž" }, { "input": "kooky", "output": "â …â •â •â …â ½" }, { "input": "kopeck", "output": "â …â •â â ‘⠉⠅" }, { "input": "kopecks", "output": "â …â •â â ‘⠉⠅⠎" }, { "input": "kopek", "output": "â …â •â â ‘â …" }, { "input": "kopeks", "output": "â …â •â â ‘â …â Ž" }, { "input": "kosher", "output": "â …â •â ©â »" }, { "input": "koshered", "output": "⠅⠕⠩⠻⠫" }, { "input": "koshering", "output": "⠅⠕⠩⠻⠬" }, { "input": "koshers", "output": "⠅⠕⠩⠻⠎" }, { "input": "kowtow", "output": "⠅⠪⠞⠪" }, { "input": "kowtowed", "output": "⠅⠪⠞⠪⠫" }, { "input": "kowtowing", "output": "⠅⠪⠞⠪⠬" }, { "input": "kowtows", "output": "⠅⠪⠞⠪⠎" }, { "input": "krone", "output": "â …â —â •â â ‘" }, { "input": "kroner", "output": "â …â —â •â â »" }, { "input": "kronor", "output": "â …â —â •â â •â —" }, { "input": "krypton", "output": "â …â —â ½â â žâ •â " }, { "input": "króna", "output": "⠅⠗⠠⠘⠻â â ¡â ¼â ‰â â " }, { "input": "krónur", "output": "⠅⠗⠠⠘⠻â â ¡â ¼â ‰â â ¥â —" }, { "input": "ks", "output": "â …â Ž" }, { "input": "kudos", "output": "⠅⠥⠙⠕⠎" }, { "input": "kudzu", "output": "⠅⠥⠙⠵⠥" }, { "input": "kudzus", "output": "⠅⠥⠙⠵⠥⠎" }, { "input": "kumquat", "output": "â …â ¥â â Ÿâ ¥â â ž" }, { "input": "kumquats", "output": "â …â ¥â â Ÿâ ¥â â žâ Ž" }, { "input": "l", "output": "â °â ‡" }, { "input": "la", "output": "â ‡â " }, { "input": "lab", "output": "â ‡â â ƒ" }, { "input": "label", "output": "â ‡â â ƒâ ‘â ‡" }, { "input": "labeled", "output": "â ‡â â ƒâ ‘⠇⠫" }, { "input": "labeling", "output": "â ‡â â ƒâ ‘⠇⠬" }, { "input": "labelled", "output": "â ‡â â ƒâ ‘⠇⠇⠫" }, { "input": "labelling", "output": "â ‡â â ƒâ ‘⠇⠇⠬" }, { "input": "labels", "output": "â ‡â â ƒâ ‘⠇⠎" }, { "input": "labia", "output": "â ‡â â ƒâ Šâ " }, { "input": "labial", "output": "â ‡â â ƒâ Šâ â ‡" }, { "input": "labials", "output": "â ‡â â ƒâ Šâ â ‡â Ž" }, { "input": "labium", "output": "â ‡â â ƒâ Šâ ¥â " }, { "input": "labor", "output": "â ‡â â ƒâ •â —" }, { "input": "laboratories", "output": "â ‡â â ƒâ •â —â â žâ •â —â Šâ ‘â Ž" }, { "input": "laboratory", "output": "â ‡â â ƒâ •â —â â žâ •â —â ½" }, { "input": "labored", "output": "â ‡â â ƒâ •â —â «" }, { "input": "laborer", "output": "â ‡â â ƒâ •â —â »" }, { "input": "laborers", "output": "â ‡â â ƒâ •⠗⠻⠎" }, { "input": "laboring", "output": "â ‡â â ƒâ •â —â ¬" }, { "input": "laborious", "output": "â ‡â â ƒâ •⠗⠊⠳⠎" }, { "input": "laboriously", "output": "â ‡â â ƒâ •⠗⠊⠳⠎⠇⠽" }, { "input": "labors", "output": "â ‡â â ƒâ •â —â Ž" }, { "input": "labs", "output": "â ‡â â ƒâ Ž" }, { "input": "laburnum", "output": "â ‡â â ƒâ ¥â —â â ¥â " }, { "input": "laburnums", "output": "â ‡â â ƒâ ¥â —â â ¥â â Ž" }, { "input": "labyrinth", "output": "â ‡â â ƒâ ½â —⠔⠹" }, { "input": "labyrinthine", "output": "â ‡â â ƒâ ½â —⠔⠹⠔⠑" }, { "input": "labyrinths", "output": "â ‡â â ƒâ ½â —⠔⠹⠎" }, { "input": "lace", "output": "â ‡â â ‰â ‘" }, { "input": "laced", "output": "â ‡â â ‰â «" }, { "input": "lacerate", "output": "â ‡â â ‰â »â â žâ ‘" }, { "input": "lacerated", "output": "â ‡â â ‰â »â â žâ «" }, { "input": "lacerates", "output": "â ‡â â ‰â »â â žâ ‘â Ž" }, { "input": "lacerating", "output": "â ‡â â ‰â »â â žâ ¬" }, { "input": "laceration", "output": "â ‡â â ‰â »â â °â " }, { "input": "lacerations", "output": "â ‡â â ‰â »â â °â â Ž" }, { "input": "laces", "output": "â ‡â â ‰â ‘â Ž" }, { "input": "lachrymal", "output": "â ‡â â ¡â —â ½â â â ‡" }, { "input": "lachrymose", "output": "â ‡â â ¡â —â ½â â •â Žâ ‘" }, { "input": "lacier", "output": "â ‡â â ‰â Šâ »" }, { "input": "laciest", "output": "â ‡â â ‰â Šâ ‘â Œ" }, { "input": "lacing", "output": "â ‡â â ‰â ¬" }, { "input": "lack", "output": "â ‡â â ‰â …" }, { "input": "lackadaisical", "output": "â ‡â â ‰â …â â ™â â Šâ Žâ Šâ ‰â â ‡" }, { "input": "lackadaisically", "output": "â ‡â â ‰â …â â ™â â Šâ Žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "lacked", "output": "â ‡â â ‰â …â «" }, { "input": "lackey", "output": "â ‡â â ‰â …â ‘â ½" }, { "input": "lackeys", "output": "â ‡â â ‰â …⠑⠽⠎" }, { "input": "lacking", "output": "â ‡â â ‰â …â ¬" }, { "input": "lackluster", "output": "â ‡â â ‰â …⠇⠥⠌⠻" }, { "input": "lacks", "output": "â ‡â â ‰â …â Ž" }, { "input": "laconic", "output": "â ‡â â ‰â •â â Šâ ‰" }, { "input": "laconically", "output": "â ‡â â ‰â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "lacquer", "output": "â ‡â â ‰â Ÿâ ¥â »" }, { "input": "lacquered", "output": "â ‡â â ‰â Ÿâ ¥â »â «" }, { "input": "lacquering", "output": "â ‡â â ‰â Ÿâ ¥â »â ¬" }, { "input": "lacquers", "output": "â ‡â â ‰â Ÿâ ¥â »â Ž" }, { "input": "lacrimal", "output": "â ‡â â ‰â —â Šâ â â ‡" }, { "input": "lacrosse", "output": "â ‡â â ‰â —â •â Žâ Žâ ‘" }, { "input": "lactate", "output": "â ‡â â ‰â žâ â žâ ‘" }, { "input": "lactated", "output": "â ‡â â ‰â žâ â žâ «" }, { "input": "lactates", "output": "â ‡â â ‰â žâ â žâ ‘â Ž" }, { "input": "lactating", "output": "â ‡â â ‰â žâ â žâ ¬" }, { "input": "lactation", "output": "â ‡â â ‰â žâ â °â " }, { "input": "lactic", "output": "â ‡â â ‰â žâ Šâ ‰" }, { "input": "lactose", "output": "â ‡â â ‰â žâ •â Žâ ‘" }, { "input": "lacuna", "output": "â ‡â â ‰â ¥â â " }, { "input": "lacunae", "output": "â ‡â â ‰â ¥â â â ‘" }, { "input": "lacunas", "output": "â ‡â â ‰â ¥â â â Ž" }, { "input": "lacy", "output": "â ‡â â ‰â ½" }, { "input": "lad", "output": "â ‡â â ™" }, { "input": "ladder", "output": "â ‡â â ™â ™â »" }, { "input": "laddered", "output": "â ‡â â ™â ™â »â «" }, { "input": "laddering", "output": "â ‡â â ™â ™â »â ¬" }, { "input": "ladders", "output": "â ‡â â ™â ™â »â Ž" }, { "input": "laddie", "output": "â ‡â â ™â ™â Šâ ‘" }, { "input": "laddies", "output": "â ‡â â ™â ™â Šâ ‘â Ž" }, { "input": "lade", "output": "â ‡â â ™â ‘" }, { "input": "laded", "output": "â ‡â â ™â «" }, { "input": "laden", "output": "â ‡â â ™â ¢" }, { "input": "lades", "output": "â ‡â â ™â ‘â Ž" }, { "input": "ladies", "output": "â ‡â â ™â Šâ ‘â Ž" }, { "input": "lading", "output": "â ‡â â ™â ¬" }, { "input": "ladings", "output": "â ‡â â ™â ¬â Ž" }, { "input": "ladle", "output": "â ‡â â ™â ‡â ‘" }, { "input": "ladled", "output": "â ‡â â ™â ‡â «" }, { "input": "ladles", "output": "â ‡â â ™â ‡â ‘â Ž" }, { "input": "ladling", "output": "â ‡â â ™â ‡â ¬" }, { "input": "lads", "output": "â ‡â â ™â Ž" }, { "input": "lady", "output": "â ‡â â ™â ½" }, { "input": "ladybird", "output": "â ‡â â ™â ½â ƒâ Šâ —â ™" }, { "input": "ladybirds", "output": "â ‡â â ™â ½â ƒâ Šâ —⠙⠎" }, { "input": "ladybug", "output": "â ‡â â ™â ½â ƒâ ¥â ›" }, { "input": "ladybugs", "output": "â ‡â â ™â ½â ƒâ ¥â ›â Ž" }, { "input": "ladyfinger", "output": "â ‡â â ™â ½â ‹â ¬â »" }, { "input": "ladyfingers", "output": "â ‡â â ™â ½â ‹â ¬â »â Ž" }, { "input": "ladylike", "output": "â ‡â â ™â ½â ‡â Šâ …â ‘" }, { "input": "ladyship", "output": "â ‡â â ™â ½â ©â Šâ " }, { "input": "lag", "output": "â ‡â â ›" }, { "input": "lager", "output": "â ‡â â ›â »" }, { "input": "lagers", "output": "â ‡â â ›â »â Ž" }, { "input": "laggard", "output": "â ‡â â ¶â œâ ™" }, { "input": "laggards", "output": "â ‡â â ¶â œâ ™â Ž" }, { "input": "lagged", "output": "â ‡â â ¶â «" }, { "input": "lagging", "output": "â ‡â â ¶â ¬" }, { "input": "lagniappe", "output": "â ‡â â ›â â Šâ â â â ‘" }, { "input": "lagniappes", "output": "â ‡â â ›â â Šâ â â â ‘â Ž" }, { "input": "lagoon", "output": "â ‡â â ›â •â •â " }, { "input": "lagoons", "output": "â ‡â â ›â •â •â â Ž" }, { "input": "lags", "output": "â ‡â â ›â Ž" }, { "input": "laid", "output": "â ‡â â Šâ ™" }, { "input": "lain", "output": "â ‡â â ”" }, { "input": "lair", "output": "â ‡â â Šâ —" }, { "input": "lairs", "output": "â ‡â â Šâ —â Ž" }, { "input": "laity", "output": "â ‡â â °â ½" }, { "input": "lake", "output": "â ‡â â …â ‘" }, { "input": "lakes", "output": "â ‡â â …â ‘â Ž" }, { "input": "lallygag", "output": "â ‡â â ‡â ‡â ½â ›â â ›" }, { "input": "lallygagged", "output": "â ‡â â ‡â ‡â ½â ›â â ¶â «" }, { "input": "lallygagging", "output": "â ‡â â ‡â ‡â ½â ›â â ¶â ¬" }, { "input": "lallygags", "output": "â ‡â â ‡â ‡â ½â ›â â ›â Ž" }, { "input": "lam", "output": "â ‡â â " }, { "input": "lama", "output": "â ‡â â â " }, { "input": "lamas", "output": "â ‡â â â â Ž" }, { "input": "lamaseries", "output": "â ‡â â â â Žâ »â Šâ ‘â Ž" }, { "input": "lamasery", "output": "â ‡â â â â Žâ »â ½" }, { "input": "lamb", "output": "â ‡â â â ƒ" }, { "input": "lambast", "output": "â ‡â â â ƒâ â Œ" }, { "input": "lambaste", "output": "â ‡â â â ƒâ â Œâ ‘" }, { "input": "lambasted", "output": "â ‡â â â ƒâ â Œâ «" }, { "input": "lambastes", "output": "â ‡â â â ƒâ â Œâ ‘â Ž" }, { "input": "lambasting", "output": "â ‡â â â ƒâ â Œâ ¬" }, { "input": "lambasts", "output": "â ‡â â â ƒâ â Œâ Ž" }, { "input": "lambda", "output": "â ‡â â â ƒâ ™â " }, { "input": "lambed", "output": "â ‡â â â ƒâ «" }, { "input": "lambent", "output": "â ‡â â â ƒâ ¢â ž" }, { "input": "lambing", "output": "â ‡â â â ƒâ ¬" }, { "input": "lambkin", "output": "â ‡â â â ƒâ …â ”" }, { "input": "lambkins", "output": "â ‡â â â ƒâ …⠔⠎" }, { "input": "lambs", "output": "â ‡â â â ƒâ Ž" }, { "input": "lambskin", "output": "â ‡â â â ƒâ Žâ …â ”" }, { "input": "lambskins", "output": "â ‡â â â ƒâ Žâ …⠔⠎" }, { "input": "lame", "output": "â ‡â â â ‘" }, { "input": "lamebrain", "output": "â ‡â â â ‘⠃⠗â â ”" }, { "input": "lamebrains", "output": "â ‡â â â ‘⠃⠗â â ”â Ž" }, { "input": "lamed", "output": "â ‡â â â «" }, { "input": "lamely", "output": "â ‡â â â ‘⠇⠽" }, { "input": "lameness", "output": "â ‡â â â ‘â °â Ž" }, { "input": "lament", "output": "â ‡â â °â ž" }, { "input": "lamentable", "output": "â ‡â â °â žâ â ƒâ ‡â ‘" }, { "input": "lamentably", "output": "â ‡â â °â žâ â ƒâ ‡â ½" }, { "input": "lamentation", "output": "â ‡â â °â žâ â °â " }, { "input": "lamentations", "output": "â ‡â â °â žâ â °â â Ž" }, { "input": "lamented", "output": "â ‡â â °â žâ «" }, { "input": "lamenting", "output": "â ‡â â °â žâ ¬" }, { "input": "laments", "output": "â ‡â â °â žâ Ž" }, { "input": "lamer", "output": "â ‡â â â »" }, { "input": "lames", "output": "â ‡â â â ‘â Ž" }, { "input": "lamest", "output": "â ‡â â â ‘â Œ" }, { "input": "laminate", "output": "â ‡â â â ”â â žâ ‘" }, { "input": "laminated", "output": "â ‡â â â ”â â žâ «" }, { "input": "laminates", "output": "â ‡â â â ”â â žâ ‘â Ž" }, { "input": "laminating", "output": "â ‡â â â ”â â žâ ¬" }, { "input": "lamination", "output": "â ‡â â â ”â â °â " }, { "input": "laming", "output": "â ‡â â â ¬" }, { "input": "lammed", "output": "â ‡â â â â «" }, { "input": "lamming", "output": "â ‡â â â â ¬" }, { "input": "lamp", "output": "â ‡â â â " }, { "input": "lampblack", "output": "â ‡â â â â ƒâ ‡â â ‰â …" }, { "input": "lampoon", "output": "â ‡â â â â •â •â " }, { "input": "lampooned", "output": "â ‡â â â â •â •â â «" }, { "input": "lampooning", "output": "â ‡â â â â •â •â â ¬" }, { "input": "lampoons", "output": "â ‡â â â â •â •â â Ž" }, { "input": "lamppost", "output": "â ‡â â â â â •â Œ" }, { "input": "lampposts", "output": "â ‡â â â â â •⠌⠎" }, { "input": "lamprey", "output": "â ‡â â â â —â ‘â ½" }, { "input": "lampreys", "output": "â ‡â â â â —⠑⠽⠎" }, { "input": "lamps", "output": "â ‡â â â â Ž" }, { "input": "lampshade", "output": "â ‡â â â â ©â â ™â ‘" }, { "input": "lampshades", "output": "â ‡â â â â ©â â ™â ‘â Ž" }, { "input": "lams", "output": "â ‡â â â Ž" }, { "input": "lance", "output": "⠇⠨⠑" }, { "input": "lanced", "output": "⠇⠨⠑⠙" }, { "input": "lancer", "output": "⠇⠨⠑⠗" }, { "input": "lancers", "output": "⠇⠨⠑⠗⠎" }, { "input": "lances", "output": "⠇⠨⠑⠎" }, { "input": "lancet", "output": "⠇⠨⠑⠞" }, { "input": "lancets", "output": "⠇⠨⠑⠞⠎" }, { "input": "lancing", "output": "â ‡â â â ‰â ¬" }, { "input": "land", "output": "⠇⠯" }, { "input": "landed", "output": "⠇⠯⠫" }, { "input": "lander", "output": "⠇⠯⠻" }, { "input": "landfall", "output": "⠇⠯⠋â â ‡â ‡" }, { "input": "landfalls", "output": "⠇⠯⠋â â ‡â ‡â Ž" }, { "input": "landfill", "output": "⠇⠯⠋⠊⠇⠇" }, { "input": "landfills", "output": "⠇⠯⠋⠊⠇⠇⠎" }, { "input": "landholder", "output": "⠇⠯⠓⠕⠇⠙⠻" }, { "input": "landholders", "output": "⠇⠯⠓⠕⠇⠙⠻⠎" }, { "input": "landing", "output": "⠇⠯⠬" }, { "input": "landings", "output": "⠇⠯⠬⠎" }, { "input": "landladies", "output": "⠇⠯⠇â â ™â Šâ ‘â Ž" }, { "input": "landlady", "output": "⠇⠯⠇â â ™â ½" }, { "input": "landlocked", "output": "⠇⠯⠇⠕⠉⠅⠫" }, { "input": "landlord", "output": "⠇⠯â â ‡" }, { "input": "landlords", "output": "⠇⠯â â ‡â Ž" }, { "input": "landlubber", "output": "⠇⠯⠇⠥⠆⠻" }, { "input": "landlubbers", "output": "⠇⠯⠇⠥⠆⠻⠎" }, { "input": "landmark", "output": "⠇⠯â â œâ …" }, { "input": "landmarks", "output": "⠇⠯â â œâ …â Ž" }, { "input": "landmass", "output": "⠇⠯â â â Žâ Ž" }, { "input": "landmasses", "output": "⠇⠯â â â Žâ Žâ ‘â Ž" }, { "input": "landowner", "output": "⠇⠯⠪â â »" }, { "input": "landowners", "output": "⠇⠯⠪â â »â Ž" }, { "input": "lands", "output": "⠇⠯⠎" }, { "input": "landscape", "output": "⠇⠯⠎⠉â â â ‘" }, { "input": "landscaped", "output": "⠇⠯⠎⠉â â â «" }, { "input": "landscaper", "output": "⠇⠯⠎⠉â â â »" }, { "input": "landscapers", "output": "⠇⠯⠎⠉â â â »â Ž" }, { "input": "landscapes", "output": "⠇⠯⠎⠉â â â ‘â Ž" }, { "input": "landscaping", "output": "⠇⠯⠎⠉â â â ¬" }, { "input": "landslid", "output": "⠇⠯⠎⠇⠊⠙" }, { "input": "landslidden", "output": "⠇⠯⠎⠇⠊⠙⠙⠢" }, { "input": "landslide", "output": "⠇⠯⠎⠇⠊⠙⠑" }, { "input": "landslides", "output": "⠇⠯⠎⠇⠊⠙⠑⠎" }, { "input": "landsliding", "output": "⠇⠯⠎⠇⠊⠙⠬" }, { "input": "landward", "output": "⠇⠯⠺⠜⠙" }, { "input": "landwards", "output": "⠇⠯⠺⠜⠙⠎" }, { "input": "lane", "output": "â ‡â â â ‘" }, { "input": "lanes", "output": "â ‡â â â ‘â Ž" }, { "input": "language", "output": "â ‡â â â ›â ¥â â ›â ‘" }, { "input": "languages", "output": "â ‡â â â ›â ¥â â ›â ‘â Ž" }, { "input": "languid", "output": "â ‡â â â ›â ¥â Šâ ™" }, { "input": "languidly", "output": "â ‡â â â ›â ¥â Šâ ™â ‡â ½" }, { "input": "languish", "output": "â ‡â â â ›â ¥â Šâ ©" }, { "input": "languished", "output": "â ‡â â â ›â ¥â Šâ ©â «" }, { "input": "languishes", "output": "â ‡â â â ›â ¥â Šâ ©â ‘â Ž" }, { "input": "languishing", "output": "â ‡â â â ›â ¥â Šâ ©â ¬" }, { "input": "languor", "output": "â ‡â â â ›â ¥â •â —" }, { "input": "languorous", "output": "â ‡â â â ›â ¥â •⠗⠳⠎" }, { "input": "languorously", "output": "â ‡â â â ›â ¥â •⠗⠳⠎⠇⠽" }, { "input": "languors", "output": "â ‡â â â ›â ¥â •â —â Ž" }, { "input": "lank", "output": "â ‡â â â …" }, { "input": "lanker", "output": "â ‡â â â …â »" }, { "input": "lankest", "output": "â ‡â â â …â ‘â Œ" }, { "input": "lankier", "output": "â ‡â â â …â Šâ »" }, { "input": "lankiest", "output": "â ‡â â â …â Šâ ‘â Œ" }, { "input": "lankiness", "output": "â ‡â â â …â Šâ °â Ž" }, { "input": "lanky", "output": "â ‡â â â …â ½" }, { "input": "lanolin", "output": "â ‡â â â •⠇⠔" }, { "input": "lantern", "output": "â ‡â â â žâ »â " }, { "input": "lanterns", "output": "â ‡â â â žâ »â â Ž" }, { "input": "lanyard", "output": "â ‡â â â ½â œâ ™" }, { "input": "lanyards", "output": "â ‡â â â ½â œâ ™â Ž" }, { "input": "lap", "output": "â ‡â â " }, { "input": "lapel", "output": "â ‡â â â ‘â ‡" }, { "input": "lapels", "output": "â ‡â â â ‘⠇⠎" }, { "input": "lapidaries", "output": "â ‡â â â Šâ ™â œâ Šâ ‘â Ž" }, { "input": "lapidary", "output": "â ‡â â â Šâ ™â œâ ½" }, { "input": "lapped", "output": "â ‡â â â â «" }, { "input": "lapping", "output": "â ‡â â â â ¬" }, { "input": "laps", "output": "â ‡â â â Ž" }, { "input": "lapse", "output": "â ‡â â â Žâ ‘" }, { "input": "lapsed", "output": "â ‡â â â Žâ «" }, { "input": "lapses", "output": "â ‡â â â Žâ ‘â Ž" }, { "input": "lapsing", "output": "â ‡â â â Žâ ¬" }, { "input": "laptop", "output": "â ‡â â â žâ •â " }, { "input": "laptops", "output": "â ‡â â â žâ •â â Ž" }, { "input": "lapwing", "output": "â ‡â â â ºâ ¬" }, { "input": "lapwings", "output": "â ‡â â â ºâ ¬â Ž" }, { "input": "larboard", "output": "⠇⠜⠃⠕⠜⠙" }, { "input": "larboards", "output": "⠇⠜⠃⠕⠜⠙⠎" }, { "input": "larcenies", "output": "⠇⠜⠉⠢⠊⠑⠎" }, { "input": "larcenous", "output": "⠇⠜⠉⠢⠳⠎" }, { "input": "larceny", "output": "⠇⠜⠉⠢⠽" }, { "input": "larch", "output": "⠇⠜⠡" }, { "input": "larches", "output": "⠇⠜⠡⠑⠎" }, { "input": "lard", "output": "⠇⠜⠙" }, { "input": "larded", "output": "⠇⠜⠙⠫" }, { "input": "larder", "output": "⠇⠜⠙⠻" }, { "input": "larders", "output": "⠇⠜⠙⠻⠎" }, { "input": "larding", "output": "⠇⠜⠙⠬" }, { "input": "lards", "output": "⠇⠜⠙⠎" }, { "input": "large", "output": "⠇⠜⠛⠑" }, { "input": "largely", "output": "⠇⠜⠛⠑⠇⠽" }, { "input": "largeness", "output": "⠇⠜⠛⠑⠰⠎" }, { "input": "larger", "output": "⠇⠜⠛⠻" }, { "input": "larges", "output": "⠇⠜⠛⠑⠎" }, { "input": "largess", "output": "⠇⠜⠛⠑⠎⠎" }, { "input": "largesse", "output": "⠇⠜⠛⠑⠎⠎⠑" }, { "input": "largest", "output": "⠇⠜⠛⠑⠌" }, { "input": "largo", "output": "⠇⠜⠛⠕" }, { "input": "largos", "output": "⠇⠜⠛⠕⠎" }, { "input": "lariat", "output": "⠇⠜⠊â â ž" }, { "input": "lariats", "output": "⠇⠜⠊â â žâ Ž" }, { "input": "lark", "output": "⠇⠜⠅" }, { "input": "larked", "output": "⠇⠜⠅⠫" }, { "input": "larking", "output": "⠇⠜⠅⠬" }, { "input": "larks", "output": "⠇⠜⠅⠎" }, { "input": "larkspur", "output": "⠇⠜⠅⠎â â ¥â —" }, { "input": "larkspurs", "output": "⠇⠜⠅⠎â â ¥â —â Ž" }, { "input": "larva", "output": "⠇⠜⠧â " }, { "input": "larvae", "output": "⠇⠜⠧â â ‘" }, { "input": "larval", "output": "⠇⠜⠧â â ‡" }, { "input": "larvas", "output": "⠇⠜⠧â â Ž" }, { "input": "larynges", "output": "⠇⠜⠽â â ›â ‘â Ž" }, { "input": "laryngitis", "output": "⠇⠜⠽â â ›â Šâ žâ Šâ Ž" }, { "input": "larynx", "output": "⠇⠜⠽â â ­" }, { "input": "larynxes", "output": "⠇⠜⠽â â ­â ‘â Ž" }, { "input": "lasagna", "output": "â ‡â â Žâ â ›â â " }, { "input": "lasagnas", "output": "â ‡â â Žâ â ›â â â Ž" }, { "input": "lasagne", "output": "â ‡â â Žâ â ›â â ‘" }, { "input": "lasagnes", "output": "â ‡â â Žâ â ›â â ‘â Ž" }, { "input": "lascivious", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Ž" }, { "input": "lasciviously", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Žâ ‡â ½" }, { "input": "lasciviousness", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Žâ °â Ž" }, { "input": "laser", "output": "â ‡â â Žâ »" }, { "input": "lasers", "output": "â ‡â â Žâ »â Ž" }, { "input": "lash", "output": "â ‡â â ©" }, { "input": "lashed", "output": "â ‡â â ©â «" }, { "input": "lashes", "output": "â ‡â â ©â ‘â Ž" }, { "input": "lashing", "output": "â ‡â â ©â ¬" }, { "input": "lass", "output": "â ‡â â Žâ Ž" }, { "input": "lasses", "output": "â ‡â â Žâ Žâ ‘â Ž" }, { "input": "lassie", "output": "â ‡â â Žâ Žâ Šâ ‘" }, { "input": "lassies", "output": "â ‡â â Žâ Žâ Šâ ‘â Ž" }, { "input": "lassitude", "output": "â ‡â â Žâ Žâ Šâ žâ ¥â ™â ‘" }, { "input": "lasso", "output": "â ‡â â Žâ Žâ •" }, { "input": "lassoed", "output": "â ‡â â Žâ Žâ •â «" }, { "input": "lassoes", "output": "â ‡â â Žâ Žâ •â ‘â Ž" }, { "input": "lassoing", "output": "â ‡â â Žâ Žâ •â ¬" }, { "input": "lassos", "output": "â ‡â â Žâ Žâ •â Ž" }, { "input": "last", "output": "â ‡â â Œ" }, { "input": "lasted", "output": "â ‡â â Œâ «" }, { "input": "lasting", "output": "â ‡â â Œâ ¬" }, { "input": "lastingly", "output": "â ‡â â Œâ ¬â ‡â ½" }, { "input": "lastly", "output": "â ‡â â Œâ ‡â ½" }, { "input": "lasts", "output": "â ‡â â Œâ Ž" }, { "input": "latch", "output": "â ‡â â žâ ¡" }, { "input": "latched", "output": "â ‡â â žâ ¡â «" }, { "input": "latches", "output": "â ‡â â žâ ¡â ‘â Ž" }, { "input": "latching", "output": "â ‡â â žâ ¡â ¬" }, { "input": "late", "output": "â ‡â â žâ ‘" }, { "input": "latecomer", "output": "â ‡â â žâ ‘⠉⠕â â »" }, { "input": "latecomers", "output": "â ‡â â žâ ‘⠉⠕â â »â Ž" }, { "input": "lately", "output": "â ‡â â žâ ‘⠇⠽" }, { "input": "latency", "output": "â ‡â â žâ ¢â ‰â ½" }, { "input": "lateness", "output": "â ‡â â žâ ‘â °â Ž" }, { "input": "latent", "output": "â ‡â â žâ ¢â ž" }, { "input": "later", "output": "â ‡â â žâ »" }, { "input": "lateral", "output": "â ‡â â žâ »â â ‡" }, { "input": "lateraled", "output": "â ‡â â žâ »â â ‡â «" }, { "input": "lateraling", "output": "â ‡â â žâ »â â ‡â ¬" }, { "input": "lateralled", "output": "â ‡â â žâ »â â ‡â ‡â «" }, { "input": "lateralling", "output": "â ‡â â žâ »â â ‡â ‡â ¬" }, { "input": "laterally", "output": "â ‡â â žâ »â â ‡â ‡â ½" }, { "input": "laterals", "output": "â ‡â â žâ »â â ‡â Ž" }, { "input": "latest", "output": "â ‡â â žâ ‘â Œ" }, { "input": "latex", "output": "â ‡â â žâ ‘â ­" }, { "input": "lath", "output": "â ‡â â ¹" }, { "input": "lathe", "output": "â ‡â â ®" }, { "input": "lathed", "output": "â ‡â â ®â ™" }, { "input": "lather", "output": "â ‡â â ®â —" }, { "input": "lathered", "output": "â ‡â â ®â —â «" }, { "input": "lathering", "output": "â ‡â â ®â —â ¬" }, { "input": "lathers", "output": "â ‡â â ®â —â Ž" }, { "input": "lathes", "output": "â ‡â â ®â Ž" }, { "input": "lathing", "output": "â ‡â â ¹â ¬" }, { "input": "laths", "output": "â ‡â â ¹â Ž" }, { "input": "latitude", "output": "â ‡â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "latitudes", "output": "â ‡â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "latitudinal", "output": "â ‡â â žâ Šâ žâ ¥â ™â ”â â ‡" }, { "input": "latrine", "output": "â ‡â â žâ —⠔⠑" }, { "input": "latrines", "output": "â ‡â â žâ —⠔⠑⠎" }, { "input": "lats", "output": "â ‡â â žâ Ž" }, { "input": "latter", "output": "â ‡â â žâ žâ »" }, { "input": "latterly", "output": "â ‡â â žâ žâ »â ‡â ½" }, { "input": "lattice", "output": "â ‡â â žâ žâ Šâ ‰â ‘" }, { "input": "latticed", "output": "â ‡â â žâ žâ Šâ ‰â «" }, { "input": "lattices", "output": "â ‡â â žâ žâ Šâ ‰â ‘â Ž" }, { "input": "latticework", "output": "â ‡â â žâ žâ Šâ ‰â ‘â â º" }, { "input": "latticeworks", "output": "â ‡â â žâ žâ Šâ ‰â ‘â â ºâ Ž" }, { "input": "laud", "output": "â ‡â â ¥â ™" }, { "input": "laudable", "output": "â ‡â â ¥â ™â â ƒâ ‡â ‘" }, { "input": "laudably", "output": "â ‡â â ¥â ™â â ƒâ ‡â ½" }, { "input": "laudanum", "output": "â ‡â â ¥â ™â â â ¥â " }, { "input": "laudatory", "output": "â ‡â â ¥â ™â â žâ •â —â ½" }, { "input": "lauded", "output": "â ‡â â ¥â ™â «" }, { "input": "lauding", "output": "â ‡â â ¥â ™â ¬" }, { "input": "lauds", "output": "â ‡â â ¥â ™â Ž" }, { "input": "laugh", "output": "â ‡â â ¥â £" }, { "input": "laughable", "output": "â ‡â â ¥â £â â ƒâ ‡â ‘" }, { "input": "laughably", "output": "â ‡â â ¥â £â â ƒâ ‡â ½" }, { "input": "laughed", "output": "â ‡â â ¥â £â «" }, { "input": "laughing", "output": "â ‡â â ¥â £â ¬" }, { "input": "laughingly", "output": "â ‡â â ¥â £â ¬â ‡â ½" }, { "input": "laughingstock", "output": "â ‡â â ¥â £â ¬â Œâ •⠉⠅" }, { "input": "laughingstocks", "output": "â ‡â â ¥â £â ¬â Œâ •⠉⠅⠎" }, { "input": "laughs", "output": "â ‡â â ¥â £â Ž" }, { "input": "laughter", "output": "â ‡â â ¥â £â žâ »" }, { "input": "launch", "output": "â ‡â â ¥â â ¡" }, { "input": "launched", "output": "â ‡â â ¥â â ¡â «" }, { "input": "launcher", "output": "â ‡â â ¥â â ¡â »" }, { "input": "launchers", "output": "â ‡â â ¥â â ¡â »â Ž" }, { "input": "launches", "output": "â ‡â â ¥â â ¡â ‘â Ž" }, { "input": "launching", "output": "â ‡â â ¥â â ¡â ¬" }, { "input": "launder", "output": "â ‡â â ¥â â ™â »" }, { "input": "laundered", "output": "â ‡â â ¥â â ™â »â «" }, { "input": "launderer", "output": "â ‡â â ¥â â ™â »â »" }, { "input": "launderers", "output": "â ‡â â ¥â â ™â »â »â Ž" }, { "input": "laundering", "output": "â ‡â â ¥â â ™â »â ¬" }, { "input": "launders", "output": "â ‡â â ¥â â ™â »â Ž" }, { "input": "laundress", "output": "â ‡â â ¥â â ™â —â ‘â Žâ Ž" }, { "input": "laundresses", "output": "â ‡â â ¥â â ™â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "laundries", "output": "â ‡â â ¥â â ™â —â Šâ ‘â Ž" }, { "input": "laundry", "output": "â ‡â â ¥â â ™â —â ½" }, { "input": "laundryman", "output": "â ‡â â ¥â â ™â —â ½â â â " }, { "input": "laundrymen", "output": "â ‡â â ¥â â ™â —â ½â â ¢" }, { "input": "laureate", "output": "â ‡â â ¥â —â ‚â žâ ‘" }, { "input": "laureates", "output": "â ‡â â ¥â —â ‚â žâ ‘â Ž" }, { "input": "laurel", "output": "â ‡â â ¥â —â ‘â ‡" }, { "input": "laurels", "output": "â ‡â â ¥â —⠑⠇⠎" }, { "input": "lava", "output": "â ‡â â §â " }, { "input": "lavatories", "output": "â ‡â â §â â žâ •â —â Šâ ‘â Ž" }, { "input": "lavatory", "output": "â ‡â â §â â žâ •â —â ½" }, { "input": "lavender", "output": "â ‡â â §â ¢â ™â »" }, { "input": "lavenders", "output": "â ‡â â §â ¢â ™â »â Ž" }, { "input": "lavish", "output": "â ‡â â §â Šâ ©" }, { "input": "lavished", "output": "â ‡â â §â Šâ ©â «" }, { "input": "lavisher", "output": "â ‡â â §â Šâ ©â »" }, { "input": "lavishes", "output": "â ‡â â §â Šâ ©â ‘â Ž" }, { "input": "lavishest", "output": "â ‡â â §â Šâ ©â ‘â Œ" }, { "input": "lavishing", "output": "â ‡â â §â Šâ ©â ¬" }, { "input": "lavishly", "output": "â ‡â â §â Šâ ©â ‡â ½" }, { "input": "lavishness", "output": "â ‡â â §â Šâ ©â °â Ž" }, { "input": "law", "output": "â ‡â â º" }, { "input": "lawbreaker", "output": "â ‡â â ºâ ƒâ —â ‚â …â »" }, { "input": "lawbreakers", "output": "â ‡â â ºâ ƒâ —⠂⠅⠻⠎" }, { "input": "lawful", "output": "â ‡â â ºâ °â ‡" }, { "input": "lawfully", "output": "â ‡â â ºâ °â ‡â ‡â ½" }, { "input": "lawfulness", "output": "â ‡â â ºâ °â ‡â °â Ž" }, { "input": "lawgiver", "output": "â ‡â â ºâ ›â Šâ §â »" }, { "input": "lawgivers", "output": "â ‡â â ºâ ›â Šâ §â »â Ž" }, { "input": "lawless", "output": "â ‡â â ºâ ¨â Ž" }, { "input": "lawlessly", "output": "â ‡â â ºâ ¨â Žâ ‡â ½" }, { "input": "lawlessness", "output": "â ‡â â ºâ ¨â Žâ °â Ž" }, { "input": "lawmaker", "output": "â ‡â â ºâ â â …â »" }, { "input": "lawmakers", "output": "â ‡â â ºâ â â …⠻⠎" }, { "input": "lawn", "output": "â ‡â â ºâ " }, { "input": "lawns", "output": "â ‡â â ºâ â Ž" }, { "input": "lawrencium", "output": "â ‡â â ºâ —⠢⠉⠊⠥â " }, { "input": "laws", "output": "â ‡â â ºâ Ž" }, { "input": "lawsuit", "output": "â ‡â â ºâ Žâ ¥â Šâ ž" }, { "input": "lawsuits", "output": "â ‡â â ºâ Žâ ¥â Šâ žâ Ž" }, { "input": "lawyer", "output": "â ‡â â ºâ ½â »" }, { "input": "lawyers", "output": "â ‡â â ºâ ½â »â Ž" }, { "input": "lax", "output": "â ‡â â ­" }, { "input": "laxative", "output": "â ‡â â ­â â žâ Šâ §â ‘" }, { "input": "laxatives", "output": "â ‡â â ­â â žâ Šâ §â ‘â Ž" }, { "input": "laxer", "output": "â ‡â â ­â »" }, { "input": "laxest", "output": "â ‡â â ­â ‘â Œ" }, { "input": "laxity", "output": "â ‡â â ­â °â ½" }, { "input": "laxly", "output": "â ‡â â ­â ‡â ½" }, { "input": "laxness", "output": "â ‡â â ­â °â Ž" }, { "input": "lay", "output": "â ‡â â ½" }, { "input": "layaway", "output": "â ‡â â ½â â ºâ â ½" }, { "input": "layer", "output": "â ‡â â ½â »" }, { "input": "layered", "output": "â ‡â â ½â »â «" }, { "input": "layering", "output": "â ‡â â ½â »â ¬" }, { "input": "layers", "output": "â ‡â â ½â »â Ž" }, { "input": "layette", "output": "â ‡â â ½â ‘â žâ žâ ‘" }, { "input": "layettes", "output": "â ‡â â ½â ‘â žâ žâ ‘â Ž" }, { "input": "laying", "output": "â ‡â â ½â ¬" }, { "input": "layman", "output": "â ‡â â ½â â â " }, { "input": "laymen", "output": "â ‡â â ½â â ¢" }, { "input": "layoff", "output": "â ‡â â ½â ·â ‹" }, { "input": "layoffs", "output": "â ‡â â ½â ·â ‹â Ž" }, { "input": "layout", "output": "â ‡â â ½â ³â ž" }, { "input": "layouts", "output": "â ‡â â ½â ³â žâ Ž" }, { "input": "layover", "output": "â ‡â â ½â •â §â »" }, { "input": "layovers", "output": "â ‡â â ½â •⠧⠻⠎" }, { "input": "laypeople", "output": "â ‡â â ½â â ‘â •â â ‡â ‘" }, { "input": "layperson", "output": "â ‡â â ½â â »â Žâ •â " }, { "input": "laypersons", "output": "â ‡â â ½â â »â Žâ •â â Ž" }, { "input": "lays", "output": "â ‡â â ½â Ž" }, { "input": "laywoman", "output": "â ‡â â ½â ºâ •â â â " }, { "input": "laywomen", "output": "â ‡â â ½â ºâ •â â ¢" }, { "input": "laze", "output": "â ‡â â µâ ‘" }, { "input": "lazed", "output": "â ‡â â µâ «" }, { "input": "lazes", "output": "â ‡â â µâ ‘â Ž" }, { "input": "lazied", "output": "â ‡â â µâ Šâ «" }, { "input": "lazier", "output": "â ‡â â µâ Šâ »" }, { "input": "lazies", "output": "â ‡â â µâ Šâ ‘â Ž" }, { "input": "laziest", "output": "â ‡â â µâ Šâ ‘â Œ" }, { "input": "lazily", "output": "â ‡â â µâ Šâ ‡â ½" }, { "input": "laziness", "output": "â ‡â â µâ Šâ °â Ž" }, { "input": "lazing", "output": "â ‡â â µâ ¬" }, { "input": "lazy", "output": "â ‡â â µâ ½" }, { "input": "lazybones", "output": "â ‡â â µâ ½â ƒâ â •â Ž" }, { "input": "lazying", "output": "â ‡â â µâ ½â ¬" }, { "input": "lea", "output": "⠇⠑â " }, { "input": "leach", "output": "⠇⠂⠡" }, { "input": "leached", "output": "⠇⠂⠡⠫" }, { "input": "leaches", "output": "⠇⠂⠡⠑⠎" }, { "input": "leaching", "output": "⠇⠂⠡⠬" }, { "input": "lead", "output": "⠇⠂⠙" }, { "input": "leaded", "output": "⠇⠂⠙⠫" }, { "input": "leaden", "output": "⠇⠂⠙⠢" }, { "input": "leader", "output": "⠇⠂⠙⠻" }, { "input": "leaders", "output": "⠇⠂⠙⠻⠎" }, { "input": "leadership", "output": "⠇⠂⠙⠻⠩⠊â " }, { "input": "leading", "output": "⠇⠂⠙⠬" }, { "input": "leads", "output": "⠇⠂⠙⠎" }, { "input": "leaf", "output": "⠇⠂⠋" }, { "input": "leafed", "output": "⠇⠂⠋⠫" }, { "input": "leafier", "output": "⠇⠂⠋⠊⠻" }, { "input": "leafiest", "output": "⠇⠂⠋⠊⠑⠌" }, { "input": "leafing", "output": "⠇⠂⠋⠬" }, { "input": "leafless", "output": "⠇⠂⠋⠨⠎" }, { "input": "leaflet", "output": "⠇⠂⠋⠇⠑⠞" }, { "input": "leafleted", "output": "⠇⠂⠋⠇⠑⠞⠫" }, { "input": "leafleting", "output": "⠇⠂⠋⠇⠑⠞⠬" }, { "input": "leaflets", "output": "⠇⠂⠋⠇⠑⠞⠎" }, { "input": "leafletted", "output": "⠇⠂⠋⠇⠑⠞⠞⠫" }, { "input": "leafletting", "output": "⠇⠂⠋⠇⠑⠞⠞⠬" }, { "input": "leafs", "output": "⠇⠂⠋⠎" }, { "input": "leafy", "output": "⠇⠂⠋⠽" }, { "input": "league", "output": "⠇⠂⠛⠥⠑" }, { "input": "leagued", "output": "⠇⠂⠛⠥⠫" }, { "input": "leagues", "output": "⠇⠂⠛⠥⠑⠎" }, { "input": "leaguing", "output": "⠇⠂⠛⠥⠬" }, { "input": "leak", "output": "⠇⠂⠅" }, { "input": "leakage", "output": "⠇⠂⠅â â ›â ‘" }, { "input": "leakages", "output": "⠇⠂⠅â â ›â ‘â Ž" }, { "input": "leaked", "output": "⠇⠂⠅⠫" }, { "input": "leakier", "output": "⠇⠂⠅⠊⠻" }, { "input": "leakiest", "output": "⠇⠂⠅⠊⠑⠌" }, { "input": "leaking", "output": "⠇⠂⠅⠬" }, { "input": "leaks", "output": "⠇⠂⠅⠎" }, { "input": "leaky", "output": "⠇⠂⠅⠽" }, { "input": "lean", "output": "⠇⠂â " }, { "input": "leaned", "output": "⠇⠂â â «" }, { "input": "leaner", "output": "⠇⠂â â »" }, { "input": "leanest", "output": "⠇⠂â â ‘â Œ" }, { "input": "leaning", "output": "⠇⠂â â ¬" }, { "input": "leanings", "output": "⠇⠂â â ¬â Ž" }, { "input": "leanness", "output": "⠇⠂â â °â Ž" }, { "input": "leans", "output": "⠇⠂â â Ž" }, { "input": "leap", "output": "⠇⠂â " }, { "input": "leaped", "output": "⠇⠂â â «" }, { "input": "leapfrog", "output": "⠇⠂â â ‹â —â •â ›" }, { "input": "leapfrogged", "output": "⠇⠂â â ‹â —â •â ¶â «" }, { "input": "leapfrogging", "output": "⠇⠂â â ‹â —â •â ¶â ¬" }, { "input": "leapfrogs", "output": "⠇⠂â â ‹â —⠕⠛⠎" }, { "input": "leaping", "output": "⠇⠂â â ¬" }, { "input": "leaps", "output": "⠇⠂â â Ž" }, { "input": "leapt", "output": "⠇⠂â â ž" }, { "input": "learn", "output": "⠇⠑⠜â " }, { "input": "learned", "output": "⠇⠑⠜â â «" }, { "input": "learner", "output": "⠇⠑⠜â â »" }, { "input": "learners", "output": "⠇⠑⠜â â »â Ž" }, { "input": "learning", "output": "⠇⠑⠜â â ¬" }, { "input": "learns", "output": "⠇⠑⠜â â Ž" }, { "input": "learnt", "output": "⠇⠑⠜â â ž" }, { "input": "leas", "output": "⠇⠂⠎" }, { "input": "lease", "output": "⠇⠂⠎⠑" }, { "input": "leased", "output": "⠇⠂⠎⠫" }, { "input": "leasehold", "output": "⠇⠂⠎⠑⠓⠕⠇⠙" }, { "input": "leaseholder", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠻" }, { "input": "leaseholders", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠻⠎" }, { "input": "leaseholds", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠎" }, { "input": "leases", "output": "⠇⠂⠎⠑⠎" }, { "input": "leash", "output": "⠇⠂⠩" }, { "input": "leashed", "output": "⠇⠂⠩⠫" }, { "input": "leashes", "output": "⠇⠂⠩⠑⠎" }, { "input": "leashing", "output": "⠇⠂⠩⠬" }, { "input": "leasing", "output": "⠇⠂⠎⠬" }, { "input": "least", "output": "⠇⠂⠌" }, { "input": "leastwise", "output": "⠇⠂⠌⠺⠊⠎⠑" }, { "input": "leather", "output": "⠇⠂⠮⠗" }, { "input": "leatherneck", "output": "⠇⠂⠮⠗â â ‘⠉⠅" }, { "input": "leathernecks", "output": "⠇⠂⠮⠗â â ‘⠉⠅⠎" }, { "input": "leathers", "output": "⠇⠂⠮⠗⠎" }, { "input": "leathery", "output": "⠇⠂⠮⠗⠽" }, { "input": "leave", "output": "⠇⠂⠧⠑" }, { "input": "leaved", "output": "⠇⠂⠧⠫" }, { "input": "leaven", "output": "⠇⠂⠧⠢" }, { "input": "leavened", "output": "⠇⠂⠧⠢⠫" }, { "input": "leavening", "output": "⠇⠂⠧⠢⠬" }, { "input": "leavens", "output": "⠇⠂⠧⠢⠎" }, { "input": "leaves", "output": "⠇⠂⠧⠑⠎" }, { "input": "leaving", "output": "⠇⠂⠧⠬" }, { "input": "leavings", "output": "⠇⠂⠧⠬⠎" }, { "input": "lecher", "output": "⠇⠑⠡⠻" }, { "input": "lecherous", "output": "⠇⠑⠡⠻⠳⠎" }, { "input": "lecherously", "output": "⠇⠑⠡⠻⠳⠎⠇⠽" }, { "input": "lechers", "output": "⠇⠑⠡⠻⠎" }, { "input": "lechery", "output": "⠇⠑⠡⠻⠽" }, { "input": "lecithin", "output": "⠇⠑⠉⠊⠹⠔" }, { "input": "lectern", "output": "⠇⠑⠉⠞⠻â " }, { "input": "lecterns", "output": "⠇⠑⠉⠞⠻â â Ž" }, { "input": "lecture", "output": "⠇⠑⠉⠞⠥⠗⠑" }, { "input": "lectured", "output": "⠇⠑⠉⠞⠥⠗⠫" }, { "input": "lecturer", "output": "⠇⠑⠉⠞⠥⠗⠻" }, { "input": "lecturers", "output": "⠇⠑⠉⠞⠥⠗⠻⠎" }, { "input": "lectures", "output": "⠇⠑⠉⠞⠥⠗⠑⠎" }, { "input": "lecturing", "output": "⠇⠑⠉⠞⠥⠗⠬" }, { "input": "led", "output": "⠇⠫" }, { "input": "ledge", "output": "⠇⠫⠛⠑" }, { "input": "ledger", "output": "⠇⠫⠛⠻" }, { "input": "ledgers", "output": "⠇⠫⠛⠻⠎" }, { "input": "ledges", "output": "⠇⠫⠛⠑⠎" }, { "input": "lee", "output": "⠇⠑⠑" }, { "input": "leech", "output": "⠇⠑⠑⠡" }, { "input": "leeched", "output": "⠇⠑⠑⠡⠫" }, { "input": "leeches", "output": "⠇⠑⠑⠡⠑⠎" }, { "input": "leeching", "output": "⠇⠑⠑⠡⠬" }, { "input": "leek", "output": "⠇⠑⠑⠅" }, { "input": "leeks", "output": "⠇⠑⠑⠅⠎" }, { "input": "leer", "output": "⠇⠑⠻" }, { "input": "leered", "output": "⠇⠑⠻⠫" }, { "input": "leerier", "output": "⠇⠑⠻⠊⠻" }, { "input": "leeriest", "output": "⠇⠑⠻⠊⠑⠌" }, { "input": "leering", "output": "⠇⠑⠻⠬" }, { "input": "leers", "output": "⠇⠑⠻⠎" }, { "input": "leery", "output": "⠇⠑⠻⠽" }, { "input": "lees", "output": "⠇⠑⠑⠎" }, { "input": "leeward", "output": "⠇⠑⠑⠺⠜⠙" }, { "input": "leewards", "output": "⠇⠑⠑⠺⠜⠙⠎" }, { "input": "leeway", "output": "⠇⠑⠑⠺â â ½" }, { "input": "left", "output": "⠇⠑⠋⠞" }, { "input": "lefter", "output": "⠇⠑⠋⠞⠻" }, { "input": "leftest", "output": "⠇⠑⠋⠞⠑⠌" }, { "input": "leftie", "output": "⠇⠑⠋⠞⠊⠑" }, { "input": "lefties", "output": "⠇⠑⠋⠞⠊⠑⠎" }, { "input": "leftism", "output": "⠇⠑⠋⠞⠊⠎â " }, { "input": "leftist", "output": "⠇⠑⠋⠞⠊⠌" }, { "input": "leftists", "output": "⠇⠑⠋⠞⠊⠌⠎" }, { "input": "leftmost", "output": "⠇⠑⠋⠞â â •â Œ" }, { "input": "leftover", "output": "⠇⠑⠋⠞⠕⠧⠻" }, { "input": "leftovers", "output": "⠇⠑⠋⠞⠕⠧⠻⠎" }, { "input": "lefts", "output": "⠇⠑⠋⠞⠎" }, { "input": "leftwards", "output": "⠇⠑⠋⠞⠺⠜⠙⠎" }, { "input": "lefty", "output": "⠇⠑⠋⠞⠽" }, { "input": "leg", "output": "⠇⠑⠛" }, { "input": "legacies", "output": "⠇⠑⠛â â ‰â Šâ ‘â Ž" }, { "input": "legacy", "output": "⠇⠑⠛â â ‰â ½" }, { "input": "legal", "output": "⠇⠑⠛â â ‡" }, { "input": "legalese", "output": "⠇⠑⠛â â ‡â ‘â Žâ ‘" }, { "input": "legalism", "output": "⠇⠑⠛â â ‡â Šâ Žâ " }, { "input": "legalisms", "output": "⠇⠑⠛â â ‡â Šâ Žâ â Ž" }, { "input": "legalistic", "output": "⠇⠑⠛â â ‡â Šâ Œâ Šâ ‰" }, { "input": "legality", "output": "⠇⠑⠛â â ‡â °â ½" }, { "input": "legalization", "output": "⠇⠑⠛â â ‡â Šâ µâ â °â " }, { "input": "legalize", "output": "⠇⠑⠛â â ‡â Šâ µâ ‘" }, { "input": "legalized", "output": "⠇⠑⠛â â ‡â Šâ µâ «" }, { "input": "legalizes", "output": "⠇⠑⠛â â ‡â Šâ µâ ‘â Ž" }, { "input": "legalizing", "output": "⠇⠑⠛â â ‡â Šâ µâ ¬" }, { "input": "legally", "output": "⠇⠑⠛â â ‡â ‡â ½" }, { "input": "legals", "output": "⠇⠑⠛â â ‡â Ž" }, { "input": "legate", "output": "⠇⠑⠛â â žâ ‘" }, { "input": "legatee", "output": "⠇⠑⠛â â žâ ‘â ‘" }, { "input": "legatees", "output": "⠇⠑⠛â â žâ ‘â ‘â Ž" }, { "input": "legates", "output": "⠇⠑⠛â â žâ ‘â Ž" }, { "input": "legation", "output": "⠇⠑⠛â â °â " }, { "input": "legations", "output": "⠇⠑⠛â â °â â Ž" }, { "input": "legato", "output": "⠇⠑⠛â â žâ •" }, { "input": "legatos", "output": "⠇⠑⠛â â žâ •â Ž" }, { "input": "legend", "output": "⠇⠑⠛⠢⠙" }, { "input": "legendary", "output": "⠇⠑⠛⠢⠙⠜⠽" }, { "input": "legends", "output": "⠇⠑⠛⠢⠙⠎" }, { "input": "legerdemain", "output": "⠇⠑⠛⠻⠙⠑â â â ”" }, { "input": "legged", "output": "⠇⠑⠶⠫" }, { "input": "leggier", "output": "⠇⠑⠶⠊⠻" }, { "input": "leggiest", "output": "⠇⠑⠶⠊⠑⠌" }, { "input": "leggin", "output": "⠇⠑⠶⠔" }, { "input": "legging", "output": "⠇⠑⠶⠬" }, { "input": "leggings", "output": "⠇⠑⠶⠬⠎" }, { "input": "leggins", "output": "⠇⠑⠶⠔⠎" }, { "input": "leggy", "output": "⠇⠑⠶⠽" }, { "input": "legibility", "output": "⠇⠑⠛⠊⠃⠊⠇⠰⠽" }, { "input": "legible", "output": "⠇⠑⠛⠊⠃⠇⠑" }, { "input": "legibly", "output": "⠇⠑⠛⠊⠃⠇⠽" }, { "input": "legion", "output": "⠇⠑⠛⠊⠕â " }, { "input": "legionnaire", "output": "⠇⠑⠛⠊⠕â â â â Šâ —â ‘" }, { "input": "legionnaires", "output": "⠇⠑⠛⠊⠕â â â â Šâ —â ‘â Ž" }, { "input": "legions", "output": "⠇⠑⠛⠊⠕â â Ž" }, { "input": "legislate", "output": "⠇⠑⠛⠊⠎⠇â â žâ ‘" }, { "input": "legislated", "output": "⠇⠑⠛⠊⠎⠇â â žâ «" }, { "input": "legislates", "output": "⠇⠑⠛⠊⠎⠇â â žâ ‘â Ž" }, { "input": "legislating", "output": "⠇⠑⠛⠊⠎⠇â â žâ ¬" }, { "input": "legislation", "output": "⠇⠑⠛⠊⠎⠇â â °â " }, { "input": "legislative", "output": "⠇⠑⠛⠊⠎⠇â â žâ Šâ §â ‘" }, { "input": "legislator", "output": "⠇⠑⠛⠊⠎⠇â â žâ •â —" }, { "input": "legislators", "output": "⠇⠑⠛⠊⠎⠇â â žâ •â —â Ž" }, { "input": "legislature", "output": "⠇⠑⠛⠊⠎⠇â â žâ ¥â —â ‘" }, { "input": "legislatures", "output": "⠇⠑⠛⠊⠎⠇â â žâ ¥â —â ‘â Ž" }, { "input": "legit", "output": "⠇⠑⠛⠊⠞" }, { "input": "legitimacy", "output": "⠇⠑⠛⠊⠞⠊â â â ‰â ½" }, { "input": "legitimate", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ‘" }, { "input": "legitimated", "output": "⠇⠑⠛⠊⠞⠊â â â žâ «" }, { "input": "legitimately", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ‘⠇⠽" }, { "input": "legitimates", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ‘â Ž" }, { "input": "legitimating", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ¬" }, { "input": "legitimize", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ ‘" }, { "input": "legitimized", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ «" }, { "input": "legitimizes", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ ‘â Ž" }, { "input": "legitimizing", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ ¬" }, { "input": "legless", "output": "⠇⠑⠛⠨⠎" }, { "input": "legman", "output": "⠇⠑⠛â â â " }, { "input": "legmen", "output": "⠇⠑⠛â â ¢" }, { "input": "legroom", "output": "⠇⠑⠛⠗⠕⠕â " }, { "input": "legrooms", "output": "⠇⠑⠛⠗⠕⠕â â Ž" }, { "input": "legs", "output": "⠇⠑⠛⠎" }, { "input": "legume", "output": "⠇⠑⠛⠥â â ‘" }, { "input": "legumes", "output": "⠇⠑⠛⠥â â ‘â Ž" }, { "input": "leguminous", "output": "⠇⠑⠛⠥â â ”⠳⠎" }, { "input": "legwork", "output": "⠇⠑⠛â â º" }, { "input": "lei", "output": "⠇⠑⠊" }, { "input": "leis", "output": "⠇⠑⠊⠎" }, { "input": "leisure", "output": "⠇⠑⠊⠎⠥⠗⠑" }, { "input": "leisurely", "output": "⠇⠑⠊⠎⠥⠗⠑⠇⠽" }, { "input": "leitmotif", "output": "⠇⠑⠊⠞â â •â žâ Šâ ‹" }, { "input": "leitmotifs", "output": "⠇⠑⠊⠞â â •â žâ Šâ ‹â Ž" }, { "input": "lemma", "output": "⠇⠑â â â " }, { "input": "lemmas", "output": "⠇⠑â â â â Ž" }, { "input": "lemme", "output": "⠇⠑â â â ‘" }, { "input": "lemming", "output": "⠇⠑â â â ¬" }, { "input": "lemmings", "output": "⠇⠑â â â ¬â Ž" }, { "input": "lemon", "output": "⠇⠑â â •â " }, { "input": "lemonade", "output": "⠇⠑â â •â â â ™â ‘" }, { "input": "lemons", "output": "⠇⠑â â •â â Ž" }, { "input": "lemony", "output": "⠇⠑â â •â â ½" }, { "input": "lemur", "output": "⠇⠑â â ¥â —" }, { "input": "lemurs", "output": "⠇⠑â â ¥â —â Ž" }, { "input": "lend", "output": "⠇⠢⠙" }, { "input": "lender", "output": "⠇⠢⠙⠻" }, { "input": "lenders", "output": "⠇⠢⠙⠻⠎" }, { "input": "lending", "output": "⠇⠢⠙⠬" }, { "input": "lends", "output": "⠇⠢⠙⠎" }, { "input": "length", "output": "⠇⠢⠛⠹" }, { "input": "lengthen", "output": "⠇⠢⠛⠮â " }, { "input": "lengthened", "output": "⠇⠢⠛⠮â â «" }, { "input": "lengthening", "output": "⠇⠢⠛⠮â â ¬" }, { "input": "lengthens", "output": "⠇⠢⠛⠮â â Ž" }, { "input": "lengthier", "output": "⠇⠢⠛⠹⠊⠻" }, { "input": "lengthiest", "output": "⠇⠢⠛⠹⠊⠑⠌" }, { "input": "lengthily", "output": "⠇⠢⠛⠹⠊⠇⠽" }, { "input": "lengths", "output": "⠇⠢⠛⠹⠎" }, { "input": "lengthways", "output": "⠇⠢⠛⠹⠺â â ½â Ž" }, { "input": "lengthwise", "output": "⠇⠢⠛⠹⠺⠊⠎⠑" }, { "input": "lengthy", "output": "⠇⠢⠛⠹⠽" }, { "input": "leniency", "output": "⠇⠢⠊⠢⠉⠽" }, { "input": "lenient", "output": "⠇⠢⠊⠢⠞" }, { "input": "leniently", "output": "⠇⠢⠊⠢⠞⠇⠽" }, { "input": "lens", "output": "⠇⠢⠎" }, { "input": "lenses", "output": "⠇⠢⠎⠑⠎" }, { "input": "lent", "output": "⠇⠢⠞" }, { "input": "lentil", "output": "⠇⠢⠞⠊⠇" }, { "input": "lentils", "output": "⠇⠢⠞⠊⠇⠎" }, { "input": "leonine", "output": "⠇⠑⠕â â ”â ‘" }, { "input": "leopard", "output": "⠇⠑⠕â â œâ ™" }, { "input": "leopards", "output": "⠇⠑⠕â â œâ ™â Ž" }, { "input": "leotard", "output": "⠇⠑⠕⠞⠜⠙" }, { "input": "leotards", "output": "⠇⠑⠕⠞⠜⠙⠎" }, { "input": "leper", "output": "⠇⠑â â »" }, { "input": "lepers", "output": "⠇⠑â â »â Ž" }, { "input": "leprechaun", "output": "⠇⠑â â —â ‘â ¡â â ¥â " }, { "input": "leprechauns", "output": "⠇⠑â â —â ‘â ¡â â ¥â â Ž" }, { "input": "leprosy", "output": "⠇⠑â â —â •â Žâ ½" }, { "input": "leprous", "output": "⠇⠑â â —⠳⠎" }, { "input": "lept", "output": "⠇⠑â â ž" }, { "input": "lesbian", "output": "⠇⠑⠎⠃⠊â â " }, { "input": "lesbianism", "output": "⠇⠑⠎⠃⠊â â â Šâ Žâ " }, { "input": "lesbians", "output": "⠇⠑⠎⠃⠊â â â Ž" }, { "input": "lesion", "output": "⠇⠑⠨â " }, { "input": "lesions", "output": "⠇⠑⠨â â Ž" }, { "input": "less", "output": "⠇⠑⠎⠎" }, { "input": "lessee", "output": "⠇⠑⠎⠎⠑⠑" }, { "input": "lessees", "output": "⠇⠑⠎⠎⠑⠑⠎" }, { "input": "lessen", "output": "⠇⠑⠎⠎⠢" }, { "input": "lessened", "output": "⠇⠑⠎⠎⠢⠫" }, { "input": "lessening", "output": "⠇⠑⠎⠎⠢⠬" }, { "input": "lessens", "output": "⠇⠑⠎⠎⠢⠎" }, { "input": "lesser", "output": "⠇⠑⠎⠎⠻" }, { "input": "lesson", "output": "⠇⠑⠎⠎⠕â " }, { "input": "lessons", "output": "⠇⠑⠎⠎⠕â â Ž" }, { "input": "lessor", "output": "⠇⠑⠎⠎⠕⠗" }, { "input": "lessors", "output": "⠇⠑⠎⠎⠕⠗⠎" }, { "input": "lest", "output": "⠇⠑⠌" }, { "input": "let", "output": "⠇⠑⠞" }, { "input": "letdown", "output": "⠇⠑⠞⠙⠪â " }, { "input": "letdowns", "output": "⠇⠑⠞⠙⠪â â Ž" }, { "input": "lethal", "output": "⠇⠑⠹â â ‡" }, { "input": "lethally", "output": "⠇⠑⠹â â ‡â ‡â ½" }, { "input": "lethargic", "output": "⠇⠑⠹⠜⠛⠊⠉" }, { "input": "lethargically", "output": "⠇⠑⠹⠜⠛⠊⠉â â ‡â ‡â ½" }, { "input": "lethargy", "output": "⠇⠑⠹⠜⠛⠽" }, { "input": "lets", "output": "⠇⠑⠞⠎" }, { "input": "letter", "output": "⠇⠗" }, { "input": "letterbox", "output": "⠇⠗⠃⠕⠭" }, { "input": "lettered", "output": "⠇⠗⠫" }, { "input": "letterhead", "output": "⠇⠗⠓⠂⠙" }, { "input": "letterheads", "output": "⠇⠗⠓⠂⠙⠎" }, { "input": "lettering", "output": "⠇⠗⠬" }, { "input": "letters", "output": "⠇⠗⠎" }, { "input": "letting", "output": "⠇⠑⠞⠞⠬" }, { "input": "lettuce", "output": "⠇⠑⠞⠞⠥⠉⠑" }, { "input": "lettuces", "output": "⠇⠑⠞⠞⠥⠉⠑⠎" }, { "input": "letup", "output": "⠇⠑⠞⠥â " }, { "input": "letups", "output": "⠇⠑⠞⠥â â Ž" }, { "input": "leukemia", "output": "⠇⠑⠥⠅⠑â â Šâ " }, { "input": "leukocyte", "output": "⠇⠑⠥⠅⠕⠉⠽⠞⠑" }, { "input": "leukocytes", "output": "⠇⠑⠥⠅⠕⠉⠽⠞⠑⠎" }, { "input": "levee", "output": "⠇⠑⠧⠑⠑" }, { "input": "levees", "output": "⠇⠑⠧⠑⠑⠎" }, { "input": "level", "output": "⠇⠑⠧⠑⠇" }, { "input": "leveled", "output": "⠇⠑⠧⠑⠇⠫" }, { "input": "leveler", "output": "⠇⠑⠧⠑⠇⠻" }, { "input": "levelers", "output": "⠇⠑⠧⠑⠇⠻⠎" }, { "input": "levelheaded", "output": "⠇⠑⠧⠑⠇⠓⠂⠙⠫" }, { "input": "levelheadedness", "output": "⠇⠑⠧⠑⠇⠓⠂⠙⠫⠰⠎" }, { "input": "leveling", "output": "⠇⠑⠧⠑⠇⠬" }, { "input": "levelled", "output": "⠇⠑⠧⠑⠇⠇⠫" }, { "input": "levellers", "output": "⠇⠑⠧⠑⠇⠇⠻⠎" }, { "input": "levelling", "output": "⠇⠑⠧⠑⠇⠇⠬" }, { "input": "levelness", "output": "⠇⠑⠧⠑⠇⠰⠎" }, { "input": "levels", "output": "⠇⠑⠧⠑⠇⠎" }, { "input": "lever", "output": "â ‡â â ‘" }, { "input": "leverage", "output": "â ‡â â ‘â â ›â ‘" }, { "input": "leveraged", "output": "â ‡â â ‘â â ›â «" }, { "input": "leverages", "output": "â ‡â â ‘â â ›â ‘â Ž" }, { "input": "leveraging", "output": "â ‡â â ‘â â ›â ¬" }, { "input": "levered", "output": "â ‡â â ‘â «" }, { "input": "levering", "output": "â ‡â â ‘â ¬" }, { "input": "levers", "output": "â ‡â â ‘â Ž" }, { "input": "leviathan", "output": "⠇⠑⠧⠊â â ¹â â " }, { "input": "leviathans", "output": "⠇⠑⠧⠊â â ¹â â â Ž" }, { "input": "levied", "output": "⠇⠑⠧⠊⠫" }, { "input": "levies", "output": "⠇⠑⠧⠊⠑⠎" }, { "input": "levitate", "output": "⠇⠑⠧⠊⠞â â žâ ‘" }, { "input": "levitated", "output": "⠇⠑⠧⠊⠞â â žâ «" }, { "input": "levitates", "output": "⠇⠑⠧⠊⠞â â žâ ‘â Ž" }, { "input": "levitating", "output": "⠇⠑⠧⠊⠞â â žâ ¬" }, { "input": "levitation", "output": "⠇⠑⠧⠊⠞â â °â " }, { "input": "levity", "output": "⠇⠑⠧⠰⠽" }, { "input": "levy", "output": "⠇⠑⠧⠽" }, { "input": "levying", "output": "⠇⠑⠧⠽⠬" }, { "input": "lewd", "output": "⠇⠑⠺⠙" }, { "input": "lewder", "output": "⠇⠑⠺⠙⠻" }, { "input": "lewdest", "output": "⠇⠑⠺⠙⠑⠌" }, { "input": "lewdly", "output": "⠇⠑⠺⠙⠇⠽" }, { "input": "lewdness", "output": "⠇⠑⠺⠙⠰⠎" }, { "input": "lexica", "output": "⠇⠑⠭⠊⠉â " }, { "input": "lexical", "output": "⠇⠑⠭⠊⠉â â ‡" }, { "input": "lexicographer", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “â »" }, { "input": "lexicographers", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “⠻⠎" }, { "input": "lexicography", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “â ½" }, { "input": "lexicon", "output": "⠇⠑⠭⠊⠉⠕â " }, { "input": "lexicons", "output": "⠇⠑⠭⠊⠉⠕â â Ž" }, { "input": "liabilities", "output": "⠇⠊â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "liability", "output": "⠇⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "liable", "output": "⠇⠊â â ƒâ ‡â ‘" }, { "input": "liaise", "output": "⠇⠊â â Šâ Žâ ‘" }, { "input": "liaised", "output": "⠇⠊â â Šâ Žâ «" }, { "input": "liaises", "output": "⠇⠊â â Šâ Žâ ‘â Ž" }, { "input": "liaising", "output": "⠇⠊â â Šâ Žâ ¬" }, { "input": "liaison", "output": "⠇⠊â â Šâ Žâ •â " }, { "input": "liaisons", "output": "⠇⠊â â Šâ Žâ •â â Ž" }, { "input": "liar", "output": "⠇⠊⠜" }, { "input": "liars", "output": "⠇⠊⠜⠎" }, { "input": "lib", "output": "⠇⠊⠃" }, { "input": "libation", "output": "⠇⠊⠃â â °â " }, { "input": "libations", "output": "⠇⠊⠃â â °â â Ž" }, { "input": "libel", "output": "⠇⠊⠃⠑⠇" }, { "input": "libeled", "output": "⠇⠊⠃⠑⠇⠫" }, { "input": "libeler", "output": "⠇⠊⠃⠑⠇⠻" }, { "input": "libelers", "output": "⠇⠊⠃⠑⠇⠻⠎" }, { "input": "libeling", "output": "⠇⠊⠃⠑⠇⠬" }, { "input": "libelled", "output": "⠇⠊⠃⠑⠇⠇⠫" }, { "input": "libeller", "output": "⠇⠊⠃⠑⠇⠇⠻" }, { "input": "libellers", "output": "⠇⠊⠃⠑⠇⠇⠻⠎" }, { "input": "libelling", "output": "⠇⠊⠃⠑⠇⠇⠬" }, { "input": "libellous", "output": "⠇⠊⠃⠑⠇⠇⠳⠎" }, { "input": "libelous", "output": "⠇⠊⠃⠑⠇⠳⠎" }, { "input": "libels", "output": "⠇⠊⠃⠑⠇⠎" }, { "input": "liberal", "output": "⠇⠊⠃⠻â â ‡" }, { "input": "liberalism", "output": "⠇⠊⠃⠻â â ‡â Šâ Žâ " }, { "input": "liberality", "output": "⠇⠊⠃⠻â â ‡â °â ½" }, { "input": "liberalization", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ â °â " }, { "input": "liberalizations", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ â °â â Ž" }, { "input": "liberalize", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ ‘" }, { "input": "liberalized", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ «" }, { "input": "liberalizes", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ ‘â Ž" }, { "input": "liberalizing", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ ¬" }, { "input": "liberally", "output": "⠇⠊⠃⠻â â ‡â ‡â ½" }, { "input": "liberals", "output": "⠇⠊⠃⠻â â ‡â Ž" }, { "input": "liberate", "output": "⠇⠊⠃⠻â â žâ ‘" }, { "input": "liberated", "output": "⠇⠊⠃⠻â â žâ «" }, { "input": "liberates", "output": "⠇⠊⠃⠻â â žâ ‘â Ž" }, { "input": "liberating", "output": "⠇⠊⠃⠻â â žâ ¬" }, { "input": "liberation", "output": "⠇⠊⠃⠻â â °â " }, { "input": "liberator", "output": "⠇⠊⠃⠻â â žâ •â —" }, { "input": "liberators", "output": "⠇⠊⠃⠻â â žâ •â —â Ž" }, { "input": "libertarian", "output": "⠇⠊⠃⠻⠞⠜⠊â â " }, { "input": "libertarians", "output": "⠇⠊⠃⠻⠞⠜⠊â â â Ž" }, { "input": "liberties", "output": "⠇⠊⠃⠻⠞⠊⠑⠎" }, { "input": "libertine", "output": "⠇⠊⠃⠻⠞⠔⠑" }, { "input": "libertines", "output": "⠇⠊⠃⠻⠞⠔⠑⠎" }, { "input": "liberty", "output": "⠇⠊⠃⠻⠞⠽" }, { "input": "libidinous", "output": "⠇⠊⠃⠊⠙⠔⠳⠎" }, { "input": "libido", "output": "⠇⠊⠃⠊⠙⠕" }, { "input": "libidos", "output": "⠇⠊⠃⠊⠙⠕⠎" }, { "input": "librarian", "output": "⠇⠊⠃⠗⠜⠊â â " }, { "input": "librarians", "output": "⠇⠊⠃⠗⠜⠊â â â Ž" }, { "input": "libraries", "output": "⠇⠊⠃⠗⠜⠊⠑⠎" }, { "input": "library", "output": "⠇⠊⠃⠗⠜⠽" }, { "input": "libretti", "output": "⠇⠊⠃⠗⠑⠞⠞⠊" }, { "input": "librettist", "output": "⠇⠊⠃⠗⠑⠞⠞⠊⠌" }, { "input": "librettists", "output": "⠇⠊⠃⠗⠑⠞⠞⠊⠌⠎" }, { "input": "libretto", "output": "⠇⠊⠃⠗⠑⠞⠞⠕" }, { "input": "librettos", "output": "⠇⠊⠃⠗⠑⠞⠞⠕⠎" }, { "input": "lice", "output": "⠇⠊⠉⠑" }, { "input": "licence", "output": "⠇⠊⠉⠰⠑" }, { "input": "licenced", "output": "⠇⠊⠉⠰⠑⠙" }, { "input": "licences", "output": "⠇⠊⠉⠰⠑⠎" }, { "input": "licencing", "output": "⠇⠊⠉⠢⠉⠬" }, { "input": "license", "output": "⠇⠊⠉⠢⠎⠑" }, { "input": "licensed", "output": "⠇⠊⠉⠢⠎⠫" }, { "input": "licensee", "output": "⠇⠊⠉⠢⠎⠑⠑" }, { "input": "licensees", "output": "⠇⠊⠉⠢⠎⠑⠑⠎" }, { "input": "licenses", "output": "⠇⠊⠉⠢⠎⠑⠎" }, { "input": "licensing", "output": "⠇⠊⠉⠢⠎⠬" }, { "input": "licentiate", "output": "⠇⠊⠉⠢⠞⠊â â žâ ‘" }, { "input": "licentiates", "output": "⠇⠊⠉⠢⠞⠊â â žâ ‘â Ž" }, { "input": "licentious", "output": "⠇⠊⠉⠢⠞⠊⠳⠎" }, { "input": "licentiously", "output": "⠇⠊⠉⠢⠞⠊⠳⠎⠇⠽" }, { "input": "licentiousness", "output": "⠇⠊⠉⠢⠞⠊⠳⠎⠰⠎" }, { "input": "lichee", "output": "⠇⠊⠡⠑⠑" }, { "input": "lichees", "output": "⠇⠊⠡⠑⠑⠎" }, { "input": "lichen", "output": "⠇⠊⠡⠢" }, { "input": "lichens", "output": "⠇⠊⠡⠢⠎" }, { "input": "licit", "output": "⠇⠊⠉⠊⠞" }, { "input": "lick", "output": "⠇⠊⠉⠅" }, { "input": "licked", "output": "⠇⠊⠉⠅⠫" }, { "input": "licking", "output": "⠇⠊⠉⠅⠬" }, { "input": "lickings", "output": "⠇⠊⠉⠅⠬⠎" }, { "input": "licks", "output": "⠇⠊⠉⠅⠎" }, { "input": "licorice", "output": "⠇⠊⠉⠕⠗⠊⠉⠑" }, { "input": "licorices", "output": "⠇⠊⠉⠕⠗⠊⠉⠑⠎" }, { "input": "lid", "output": "⠇⠊⠙" }, { "input": "lidded", "output": "⠇⠊⠙⠙⠫" }, { "input": "lids", "output": "⠇⠊⠙⠎" }, { "input": "lie", "output": "⠇⠊⠑" }, { "input": "lied", "output": "⠇⠊⠫" }, { "input": "lief", "output": "⠇⠊⠑⠋" }, { "input": "liefer", "output": "⠇⠊⠑⠋⠻" }, { "input": "liefest", "output": "⠇⠊⠑⠋⠑⠌" }, { "input": "liege", "output": "⠇⠊⠑⠛⠑" }, { "input": "lieges", "output": "⠇⠊⠑⠛⠑⠎" }, { "input": "lien", "output": "⠇⠊⠢" }, { "input": "liens", "output": "⠇⠊⠢⠎" }, { "input": "lies", "output": "⠇⠊⠑⠎" }, { "input": "lieu", "output": "⠇⠊⠑⠥" }, { "input": "lieutenancy", "output": "⠇⠊⠑⠥⠞⠢â â â ‰â ½" }, { "input": "lieutenant", "output": "⠇⠊⠑⠥⠞⠢â â â ž" }, { "input": "lieutenants", "output": "⠇⠊⠑⠥⠞⠢â â â žâ Ž" }, { "input": "life", "output": "⠇⠊⠋⠑" }, { "input": "lifeblood", "output": "⠇⠊⠋⠑⠃⠇⠕⠕⠙" }, { "input": "lifeboat", "output": "⠇⠊⠋⠑⠃⠕â â ž" }, { "input": "lifeboats", "output": "⠇⠊⠋⠑⠃⠕â â žâ Ž" }, { "input": "lifeforms", "output": "⠇⠊⠋⠑⠿â â Ž" }, { "input": "lifeguard", "output": "⠇⠊⠋⠑⠛⠥⠜⠙" }, { "input": "lifeguards", "output": "⠇⠊⠋⠑⠛⠥⠜⠙⠎" }, { "input": "lifeless", "output": "⠇⠊⠋⠑⠨⠎" }, { "input": "lifelike", "output": "⠇⠊⠋⠑⠇⠊⠅⠑" }, { "input": "lifeline", "output": "⠇⠊⠋⠑⠇⠔⠑" }, { "input": "lifelines", "output": "⠇⠊⠋⠑⠇⠔⠑⠎" }, { "input": "lifelong", "output": "⠇⠊⠋⠑⠇⠰⠛" }, { "input": "lifer", "output": "⠇⠊⠋⠻" }, { "input": "lifers", "output": "⠇⠊⠋⠻⠎" }, { "input": "lifesaver", "output": "⠇⠊⠋⠑⠎â â §â »" }, { "input": "lifesavers", "output": "⠇⠊⠋⠑⠎â â §â »â Ž" }, { "input": "lifesaving", "output": "⠇⠊⠋⠑⠎â â §â ¬" }, { "input": "lifespan", "output": "⠇⠊⠋⠑⠎â â â " }, { "input": "lifespans", "output": "⠇⠊⠋⠑⠎â â â â Ž" }, { "input": "lifestyle", "output": "⠇⠊⠋⠑⠌⠽⠇⠑" }, { "input": "lifestyles", "output": "⠇⠊⠋⠑⠌⠽⠇⠑⠎" }, { "input": "lifetime", "output": "⠇⠊⠋⠑â â ž" }, { "input": "lifetimes", "output": "⠇⠊⠋⠑â â žâ Ž" }, { "input": "lifework", "output": "⠇⠊⠋⠑â â º" }, { "input": "lifeworks", "output": "⠇⠊⠋⠑â â ºâ Ž" }, { "input": "lift", "output": "⠇⠊⠋⠞" }, { "input": "lifted", "output": "⠇⠊⠋⠞⠫" }, { "input": "lifting", "output": "⠇⠊⠋⠞⠬" }, { "input": "liftoff", "output": "⠇⠊⠋⠞⠷⠋" }, { "input": "liftoffs", "output": "⠇⠊⠋⠞⠷⠋⠎" }, { "input": "lifts", "output": "⠇⠊⠋⠞⠎" }, { "input": "ligament", "output": "⠇⠊⠛â â °â ž" }, { "input": "ligaments", "output": "⠇⠊⠛â â °â žâ Ž" }, { "input": "ligature", "output": "⠇⠊⠛â â žâ ¥â —â ‘" }, { "input": "ligatured", "output": "⠇⠊⠛â â žâ ¥â —â «" }, { "input": "ligatures", "output": "⠇⠊⠛â â žâ ¥â —â ‘â Ž" }, { "input": "ligaturing", "output": "⠇⠊⠛â â žâ ¥â —â ¬" }, { "input": "light", "output": "⠇⠊⠣⠞" }, { "input": "lighted", "output": "⠇⠊⠣⠞⠫" }, { "input": "lighten", "output": "⠇⠊⠣⠞⠢" }, { "input": "lightened", "output": "⠇⠊⠣⠞⠢⠫" }, { "input": "lightening", "output": "⠇⠊⠣⠞⠢⠬" }, { "input": "lightens", "output": "⠇⠊⠣⠞⠢⠎" }, { "input": "lighter", "output": "⠇⠊⠣⠞⠻" }, { "input": "lighters", "output": "⠇⠊⠣⠞⠻⠎" }, { "input": "lightest", "output": "⠇⠊⠣⠞⠑⠌" }, { "input": "lightheaded", "output": "⠇⠊⠣⠞⠓⠂⠙⠫" }, { "input": "lighthearted", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫" }, { "input": "lightheartedly", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫⠇⠽" }, { "input": "lightheartedness", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫⠰⠎" }, { "input": "lighthouse", "output": "⠇⠊⠣⠞⠓⠳⠎⠑" }, { "input": "lighthouses", "output": "⠇⠊⠣⠞⠓⠳⠎⠑⠎" }, { "input": "lighting", "output": "⠇⠊⠣⠞⠬" }, { "input": "lightly", "output": "⠇⠊⠣⠞⠇⠽" }, { "input": "lightness", "output": "⠇⠊⠣⠞⠰⠎" }, { "input": "lightning", "output": "⠇⠊⠣⠞â â ¬" }, { "input": "lightninged", "output": "⠇⠊⠣⠞â â ¬â «" }, { "input": "lightnings", "output": "⠇⠊⠣⠞â â ¬â Ž" }, { "input": "lights", "output": "⠇⠊⠣⠞⠎" }, { "input": "lightweight", "output": "⠇⠊⠣⠞⠺⠑⠊⠣⠞" }, { "input": "lightweights", "output": "⠇⠊⠣⠞⠺⠑⠊⠣⠞⠎" }, { "input": "lignite", "output": "⠇⠊⠛â â Šâ žâ ‘" }, { "input": "likable", "output": "⠇⠊⠅â â ƒâ ‡â ‘" }, { "input": "likableness", "output": "⠇⠊⠅â â ƒâ ‡â ‘â °â Ž" }, { "input": "like", "output": "â ‡" }, { "input": "likeable", "output": "⠇⠊⠅⠂⠃⠇⠑" }, { "input": "likeableness", "output": "⠇⠊⠅⠂⠃⠇⠑⠰⠎" }, { "input": "liked", "output": "⠇⠊⠅⠫" }, { "input": "likelier", "output": "⠇⠊⠅⠑⠇⠊⠻" }, { "input": "likeliest", "output": "⠇⠊⠅⠑⠇⠊⠑⠌" }, { "input": "likelihood", "output": "⠇⠊⠅⠑⠇⠊⠓⠕⠕⠙" }, { "input": "likelihoods", "output": "⠇⠊⠅⠑⠇⠊⠓⠕⠕⠙⠎" }, { "input": "likely", "output": "⠇⠊⠅⠑⠇⠽" }, { "input": "liken", "output": "⠇⠊⠅⠢" }, { "input": "likened", "output": "⠇⠊⠅⠢⠫" }, { "input": "likeness", "output": "⠇⠊⠅⠑⠰⠎" }, { "input": "likenesses", "output": "⠇⠊⠅⠑⠰⠎⠑⠎" }, { "input": "likening", "output": "⠇⠊⠅⠢⠬" }, { "input": "likens", "output": "⠇⠊⠅⠢⠎" }, { "input": "liker", "output": "⠇⠊⠅⠻" }, { "input": "likes", "output": "⠇⠊⠅⠑⠎" }, { "input": "likest", "output": "⠇⠊⠅⠑⠌" }, { "input": "likewise", "output": "⠇⠊⠅⠑⠺⠊⠎⠑" }, { "input": "liking", "output": "⠇⠊⠅⠬" }, { "input": "lilac", "output": "⠇⠊⠇â â ‰" }, { "input": "lilacs", "output": "⠇⠊⠇â â ‰â Ž" }, { "input": "lilies", "output": "⠇⠊⠇⠊⠑⠎" }, { "input": "lilt", "output": "⠇⠊⠇⠞" }, { "input": "lilted", "output": "⠇⠊⠇⠞⠫" }, { "input": "lilting", "output": "⠇⠊⠇⠞⠬" }, { "input": "lilts", "output": "⠇⠊⠇⠞⠎" }, { "input": "lily", "output": "⠇⠊⠇⠽" }, { "input": "limb", "output": "⠇⠊â â ƒ" }, { "input": "limber", "output": "⠇⠊â â ƒâ »" }, { "input": "limbered", "output": "⠇⠊â â ƒâ »â «" }, { "input": "limbering", "output": "⠇⠊â â ƒâ »â ¬" }, { "input": "limbers", "output": "⠇⠊â â ƒâ »â Ž" }, { "input": "limbless", "output": "⠇⠊â â ƒâ ¨â Ž" }, { "input": "limbo", "output": "⠇⠊â â ƒâ •" }, { "input": "limbos", "output": "⠇⠊â â ƒâ •â Ž" }, { "input": "limbs", "output": "⠇⠊â â ƒâ Ž" }, { "input": "lime", "output": "⠇⠊â â ‘" }, { "input": "limeade", "output": "⠇⠊â â ‘â â ™â ‘" }, { "input": "limeades", "output": "⠇⠊â â ‚⠙⠑⠎" }, { "input": "limed", "output": "⠇⠊â â «" }, { "input": "limelight", "output": "⠇⠊â â ‘⠇⠊⠣⠞" }, { "input": "limerick", "output": "⠇⠊â â »â Šâ ‰â …" }, { "input": "limericks", "output": "⠇⠊â â »â Šâ ‰â …â Ž" }, { "input": "limes", "output": "⠇⠊â â ‘â Ž" }, { "input": "limestone", "output": "⠇⠊â â ‘â Œâ â •" }, { "input": "limier", "output": "⠇⠊â â Šâ »" }, { "input": "limiest", "output": "⠇⠊â â Šâ ‘â Œ" }, { "input": "liming", "output": "⠇⠊â â ¬" }, { "input": "limit", "output": "⠇⠊â â Šâ ž" }, { "input": "limitation", "output": "⠇⠊â â Šâ žâ â °â " }, { "input": "limitations", "output": "⠇⠊â â Šâ žâ â °â â Ž" }, { "input": "limited", "output": "⠇⠊â â Šâ žâ «" }, { "input": "limiting", "output": "⠇⠊â â Šâ žâ ¬" }, { "input": "limitings", "output": "⠇⠊â â Šâ žâ ¬â Ž" }, { "input": "limitless", "output": "⠇⠊â â Šâ žâ ¨â Ž" }, { "input": "limits", "output": "⠇⠊â â Šâ žâ Ž" }, { "input": "limn", "output": "⠇⠊â â " }, { "input": "limned", "output": "⠇⠊â â â «" }, { "input": "limning", "output": "⠇⠊â â â ¬" }, { "input": "limns", "output": "⠇⠊â â â Ž" }, { "input": "limo", "output": "⠇⠊â â •" }, { "input": "limos", "output": "⠇⠊â â •â Ž" }, { "input": "limousine", "output": "⠇⠊â â ³â Žâ ”â ‘" }, { "input": "limousines", "output": "⠇⠊â â ³â Žâ ”â ‘â Ž" }, { "input": "limp", "output": "⠇⠊â â " }, { "input": "limped", "output": "⠇⠊â â â «" }, { "input": "limper", "output": "⠇⠊â â â »" }, { "input": "limpest", "output": "⠇⠊â â â ‘â Œ" }, { "input": "limpet", "output": "⠇⠊â â â ‘â ž" }, { "input": "limpets", "output": "⠇⠊â â â ‘â žâ Ž" }, { "input": "limpid", "output": "⠇⠊â â â Šâ ™" }, { "input": "limpidity", "output": "⠇⠊â â â Šâ ™â °â ½" }, { "input": "limpidly", "output": "⠇⠊â â â Šâ ™â ‡â ½" }, { "input": "limping", "output": "⠇⠊â â â ¬" }, { "input": "limply", "output": "⠇⠊â â â ‡â ½" }, { "input": "limpness", "output": "⠇⠊â â â °â Ž" }, { "input": "limps", "output": "⠇⠊â â â Ž" }, { "input": "limy", "output": "⠇⠊â â ½" }, { "input": "linage", "output": "⠇⠔â â ›â ‘" }, { "input": "linchpin", "output": "⠇⠔⠡â â ”" }, { "input": "linchpins", "output": "⠇⠔⠡â â ”â Ž" }, { "input": "linden", "output": "⠇⠔⠙⠢" }, { "input": "lindens", "output": "⠇⠔⠙⠢⠎" }, { "input": "line", "output": "⠇⠔⠑" }, { "input": "lineage", "output": "⠇⠔⠂⠛⠑" }, { "input": "lineages", "output": "⠇⠔⠂⠛⠑⠎" }, { "input": "lineal", "output": "⠇⠔⠂⠇" }, { "input": "lineally", "output": "⠇⠔⠂⠇⠇⠽" }, { "input": "lineament", "output": "⠇⠔⠂⠰⠞" }, { "input": "lineaments", "output": "⠇⠔⠂⠰⠞⠎" }, { "input": "linear", "output": "⠇⠔⠑⠜" }, { "input": "linearly", "output": "⠇⠔⠑⠜⠇⠽" }, { "input": "linebacker", "output": "⠇⠔⠑⠃â â ‰â …â »" }, { "input": "linebackers", "output": "⠇⠔⠑⠃â â ‰â …⠻⠎" }, { "input": "lined", "output": "⠇⠔⠫" }, { "input": "linefeed", "output": "⠇⠔⠑⠋⠑⠫" }, { "input": "lineman", "output": "⠇⠔⠑â â â " }, { "input": "linemen", "output": "⠇⠔⠑â â ¢" }, { "input": "linen", "output": "⠇⠔⠢" }, { "input": "linens", "output": "⠇⠔⠢⠎" }, { "input": "liner", "output": "⠇⠔⠻" }, { "input": "liners", "output": "⠇⠔⠻⠎" }, { "input": "lines", "output": "⠇⠔⠑⠎" }, { "input": "linesman", "output": "⠇⠔⠑⠎â â â " }, { "input": "linesmen", "output": "⠇⠔⠑⠎â â ¢" }, { "input": "lineup", "output": "⠇⠔⠑⠥â " }, { "input": "lineups", "output": "⠇⠔⠑⠥â â Ž" }, { "input": "linger", "output": "⠇⠬⠻" }, { "input": "lingered", "output": "⠇⠬⠻⠫" }, { "input": "lingerer", "output": "⠇⠬⠻⠻" }, { "input": "lingerers", "output": "⠇⠬⠻⠻⠎" }, { "input": "lingerie", "output": "⠇⠬⠻⠊⠑" }, { "input": "lingering", "output": "⠇⠬⠻⠬" }, { "input": "lingeringly", "output": "⠇⠬⠻⠬⠇⠽" }, { "input": "lingerings", "output": "⠇⠬⠻⠬⠎" }, { "input": "lingers", "output": "⠇⠬⠻⠎" }, { "input": "lingo", "output": "⠇⠬⠕" }, { "input": "lingoes", "output": "⠇⠬⠕⠑⠎" }, { "input": "lingos", "output": "⠇⠬⠕⠎" }, { "input": "lingual", "output": "⠇⠬⠥â â ‡" }, { "input": "linguist", "output": "⠇⠬⠥⠊⠌" }, { "input": "linguistic", "output": "⠇⠬⠥⠊⠌⠊⠉" }, { "input": "linguistics", "output": "⠇⠬⠥⠊⠌⠊⠉⠎" }, { "input": "linguists", "output": "⠇⠬⠥⠊⠌⠎" }, { "input": "liniment", "output": "⠇⠔⠊⠰⠞" }, { "input": "liniments", "output": "⠇⠔⠊⠰⠞⠎" }, { "input": "lining", "output": "⠇⠔⠬" }, { "input": "linings", "output": "⠇⠔⠬⠎" }, { "input": "link", "output": "⠇⠔⠅" }, { "input": "linkage", "output": "⠇⠔⠅â â ›â ‘" }, { "input": "linkages", "output": "⠇⠔⠅â â ›â ‘â Ž" }, { "input": "linked", "output": "⠇⠔⠅⠫" }, { "input": "linker", "output": "⠇⠔⠅⠻" }, { "input": "linking", "output": "⠇⠔⠅⠬" }, { "input": "links", "output": "⠇⠔⠅⠎" }, { "input": "linkup", "output": "⠇⠔⠅⠥â " }, { "input": "linkups", "output": "⠇⠔⠅⠥â â Ž" }, { "input": "linnet", "output": "⠇⠔â â ‘â ž" }, { "input": "linnets", "output": "⠇⠔â â ‘â žâ Ž" }, { "input": "linoleum", "output": "⠇⠔⠕⠇⠑⠥â " }, { "input": "linseed", "output": "⠇⠔⠎⠑⠫" }, { "input": "lint", "output": "⠇⠔⠞" }, { "input": "lintel", "output": "⠇⠔⠞⠑⠇" }, { "input": "lintels", "output": "⠇⠔⠞⠑⠇⠎" }, { "input": "lion", "output": "⠇⠊⠕â " }, { "input": "lioness", "output": "⠇⠊⠕⠰⠎" }, { "input": "lionesses", "output": "⠇⠊⠕⠰⠎⠑⠎" }, { "input": "lionhearted", "output": "⠇⠊⠕â â “⠑⠜⠞⠫" }, { "input": "lionize", "output": "⠇⠊⠕â â Šâ µâ ‘" }, { "input": "lionized", "output": "⠇⠊⠕â â Šâ µâ «" }, { "input": "lionizes", "output": "⠇⠊⠕â â Šâ µâ ‘â Ž" }, { "input": "lionizing", "output": "⠇⠊⠕â â Šâ µâ ¬" }, { "input": "lions", "output": "⠇⠊⠕â â Ž" }, { "input": "lip", "output": "⠇⠊â " }, { "input": "lipid", "output": "⠇⠊â â Šâ ™" }, { "input": "lipids", "output": "⠇⠊â â Šâ ™â Ž" }, { "input": "liposuction", "output": "⠇⠊â â •⠎⠥⠉⠰â " }, { "input": "lipread", "output": "⠇⠊â â —â ‚â ™" }, { "input": "lipreading", "output": "⠇⠊â â —⠂⠙⠬" }, { "input": "lipreads", "output": "⠇⠊â â —⠂⠙⠎" }, { "input": "lips", "output": "⠇⠊â â Ž" }, { "input": "lipstick", "output": "⠇⠊â â Œâ Šâ ‰â …" }, { "input": "lipsticked", "output": "⠇⠊â â Œâ Šâ ‰â …â «" }, { "input": "lipsticking", "output": "⠇⠊â â Œâ Šâ ‰â …â ¬" }, { "input": "lipsticks", "output": "⠇⠊â â Œâ Šâ ‰â …â Ž" }, { "input": "liquefaction", "output": "⠇⠊⠟⠥⠑⠋â â ‰â °â " }, { "input": "liquefied", "output": "⠇⠊⠟⠥⠑⠋⠊⠫" }, { "input": "liquefies", "output": "⠇⠊⠟⠥⠑⠋⠊⠑⠎" }, { "input": "liquefy", "output": "⠇⠊⠟⠥⠑⠋⠽" }, { "input": "liquefying", "output": "⠇⠊⠟⠥⠑⠋⠽⠬" }, { "input": "liqueur", "output": "⠇⠊⠟⠥⠑⠥⠗" }, { "input": "liqueurs", "output": "⠇⠊⠟⠥⠑⠥⠗⠎" }, { "input": "liquid", "output": "⠇⠊⠟⠥⠊⠙" }, { "input": "liquidate", "output": "⠇⠊⠟⠥⠊⠙â â žâ ‘" }, { "input": "liquidated", "output": "⠇⠊⠟⠥⠊⠙â â žâ «" }, { "input": "liquidates", "output": "⠇⠊⠟⠥⠊⠙â â žâ ‘â Ž" }, { "input": "liquidating", "output": "⠇⠊⠟⠥⠊⠙â â žâ ¬" }, { "input": "liquidation", "output": "⠇⠊⠟⠥⠊⠙â â °â " }, { "input": "liquidations", "output": "⠇⠊⠟⠥⠊⠙â â °â â Ž" }, { "input": "liquidator", "output": "⠇⠊⠟⠥⠊⠙â â žâ •â —" }, { "input": "liquidators", "output": "⠇⠊⠟⠥⠊⠙â â žâ •â —â Ž" }, { "input": "liquidity", "output": "⠇⠊⠟⠥⠊⠙⠰⠽" }, { "input": "liquidize", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠑" }, { "input": "liquidized", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠫" }, { "input": "liquidizes", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠑⠎" }, { "input": "liquidizing", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠬" }, { "input": "liquids", "output": "⠇⠊⠟⠥⠊⠙⠎" }, { "input": "liquified", "output": "⠇⠊⠟⠥⠊⠋⠊⠫" }, { "input": "liquifies", "output": "⠇⠊⠟⠥⠊⠋⠊⠑⠎" }, { "input": "liquify", "output": "⠇⠊⠟⠥⠊⠋⠽" }, { "input": "liquifying", "output": "⠇⠊⠟⠥⠊⠋⠽⠬" }, { "input": "liquor", "output": "⠇⠊⠟⠥⠕⠗" }, { "input": "liquored", "output": "⠇⠊⠟⠥⠕⠗⠫" }, { "input": "liquoring", "output": "⠇⠊⠟⠥⠕⠗⠬" }, { "input": "liquors", "output": "⠇⠊⠟⠥⠕⠗⠎" }, { "input": "lira", "output": "⠇⠊⠗â " }, { "input": "liras", "output": "⠇⠊⠗â â Ž" }, { "input": "lire", "output": "⠇⠊⠗⠑" }, { "input": "lisle", "output": "⠇⠊⠎⠇⠑" }, { "input": "lisp", "output": "⠇⠊⠎â " }, { "input": "lisped", "output": "⠇⠊⠎â â «" }, { "input": "lisping", "output": "⠇⠊⠎â â ¬" }, { "input": "lisps", "output": "⠇⠊⠎â â Ž" }, { "input": "lissom", "output": "⠇⠊⠎⠎⠕â " }, { "input": "lissome", "output": "⠇⠊⠎â â Ž" }, { "input": "list", "output": "⠇⠊⠌" }, { "input": "listed", "output": "⠇⠊⠌⠫" }, { "input": "listen", "output": "⠇⠊⠌⠢" }, { "input": "listened", "output": "⠇⠊⠌⠢⠫" }, { "input": "listener", "output": "⠇⠊⠌⠢⠻" }, { "input": "listeners", "output": "⠇⠊⠌⠢⠻⠎" }, { "input": "listening", "output": "⠇⠊⠌⠢⠬" }, { "input": "listens", "output": "⠇⠊⠌⠢⠎" }, { "input": "listing", "output": "⠇⠊⠌⠬" }, { "input": "listings", "output": "⠇⠊⠌⠬⠎" }, { "input": "listless", "output": "⠇⠊⠌⠨⠎" }, { "input": "listlessly", "output": "⠇⠊⠌⠨⠎⠇⠽" }, { "input": "listlessness", "output": "⠇⠊⠌⠨⠎⠰⠎" }, { "input": "lists", "output": "⠇⠊⠌⠎" }, { "input": "lit", "output": "⠇⠊⠞" }, { "input": "litanies", "output": "⠇⠊⠞â â â Šâ ‘â Ž" }, { "input": "litany", "output": "⠇⠊⠞â â â ½" }, { "input": "litchi", "output": "⠇⠊⠞⠡⠊" }, { "input": "litchis", "output": "⠇⠊⠞⠡⠊⠎" }, { "input": "lite", "output": "⠇⠊⠞⠑" }, { "input": "liter", "output": "⠇⠊⠞⠻" }, { "input": "literacy", "output": "⠇⠊⠞⠻â â ‰â ½" }, { "input": "literal", "output": "⠇⠊⠞⠻â â ‡" }, { "input": "literally", "output": "⠇⠊⠞⠻â â ‡â ‡â ½" }, { "input": "literals", "output": "⠇⠊⠞⠻â â ‡â Ž" }, { "input": "literary", "output": "⠇⠊⠞⠻⠜⠽" }, { "input": "literate", "output": "⠇⠊⠞⠻â â žâ ‘" }, { "input": "literates", "output": "⠇⠊⠞⠻â â žâ ‘â Ž" }, { "input": "literati", "output": "⠇⠊⠞⠻â â žâ Š" }, { "input": "literature", "output": "⠇⠊⠞⠻â â žâ ¥â —â ‘" }, { "input": "liters", "output": "⠇⠊⠞⠻⠎" }, { "input": "lithe", "output": "⠇⠊⠮" }, { "input": "lither", "output": "⠇⠊⠮⠗" }, { "input": "lithest", "output": "⠇⠊⠮⠌" }, { "input": "lithium", "output": "⠇⠊⠹⠊⠥â " }, { "input": "lithograph", "output": "⠇⠊⠹⠕⠛⠗â â â “" }, { "input": "lithographed", "output": "⠇⠊⠹⠕⠛⠗â â â “â «" }, { "input": "lithographer", "output": "⠇⠊⠹⠕⠛⠗â â â “â »" }, { "input": "lithographers", "output": "⠇⠊⠹⠕⠛⠗â â â “⠻⠎" }, { "input": "lithographic", "output": "⠇⠊⠹⠕⠛⠗â â â “â Šâ ‰" }, { "input": "lithographing", "output": "⠇⠊⠹⠕⠛⠗â â â “â ¬" }, { "input": "lithographs", "output": "⠇⠊⠹⠕⠛⠗â â â “â Ž" }, { "input": "lithography", "output": "⠇⠊⠹⠕⠛⠗â â â “â ½" }, { "input": "lithosphere", "output": "⠇⠊⠹⠕⠎â â â “" }, { "input": "lithospheres", "output": "⠇⠊⠹⠕⠎â â â “â Ž" }, { "input": "litigant", "output": "⠇⠊⠞⠊⠛â â â ž" }, { "input": "litigants", "output": "⠇⠊⠞⠊⠛â â â žâ Ž" }, { "input": "litigate", "output": "⠇⠊⠞⠊⠛â â žâ ‘" }, { "input": "litigated", "output": "⠇⠊⠞⠊⠛â â žâ «" }, { "input": "litigates", "output": "⠇⠊⠞⠊⠛â â žâ ‘â Ž" }, { "input": "litigating", "output": "⠇⠊⠞⠊⠛â â žâ ¬" }, { "input": "litigation", "output": "⠇⠊⠞⠊⠛â â °â " }, { "input": "litigious", "output": "⠇⠊⠞⠊⠛⠊⠳⠎" }, { "input": "litigiousness", "output": "⠇⠊⠞⠊⠛⠊⠳⠎⠰⠎" }, { "input": "litmus", "output": "⠇⠊⠞â â ¥â Ž" }, { "input": "litter", "output": "⠇⠊⠞⠞⠻" }, { "input": "litterbug", "output": "⠇⠊⠞⠞⠻⠃⠥⠛" }, { "input": "litterbugs", "output": "⠇⠊⠞⠞⠻⠃⠥⠛⠎" }, { "input": "littered", "output": "⠇⠊⠞⠞⠻⠫" }, { "input": "littering", "output": "⠇⠊⠞⠞⠻⠬" }, { "input": "litters", "output": "⠇⠊⠞⠞⠻⠎" }, { "input": "little", "output": "⠇⠇" }, { "input": "littleness", "output": "⠇⠇⠰⠎" }, { "input": "littler", "output": "⠇⠇⠗" }, { "input": "littlest", "output": "⠇⠇⠌" }, { "input": "littoral", "output": "⠇⠊⠞⠞⠕⠗â â ‡" }, { "input": "littorals", "output": "⠇⠊⠞⠞⠕⠗â â ‡â Ž" }, { "input": "liturgical", "output": "⠇⠊⠞⠥⠗⠛⠊⠉â â ‡" }, { "input": "liturgies", "output": "⠇⠊⠞⠥⠗⠛⠊⠑⠎" }, { "input": "liturgy", "output": "⠇⠊⠞⠥⠗⠛⠽" }, { "input": "livability", "output": "⠇⠊⠧â â ƒâ Šâ ‡â °â ½" }, { "input": "livable", "output": "⠇⠊⠧â â ƒâ ‡â ‘" }, { "input": "live", "output": "⠇⠊⠧⠑" }, { "input": "liveable", "output": "⠇⠊⠧⠂⠃⠇⠑" }, { "input": "lived", "output": "⠇⠊⠧⠫" }, { "input": "livelier", "output": "⠇⠊⠧⠑⠇⠊⠻" }, { "input": "liveliest", "output": "⠇⠊⠧⠑⠇⠊⠑⠌" }, { "input": "livelihood", "output": "⠇⠊⠧⠑⠇⠊⠓⠕⠕⠙" }, { "input": "livelihoods", "output": "⠇⠊⠧⠑⠇⠊⠓⠕⠕⠙⠎" }, { "input": "liveliness", "output": "⠇⠊⠧⠑⠇⠊⠰⠎" }, { "input": "livelong", "output": "⠇⠊⠧⠑⠇⠰⠛" }, { "input": "livelongs", "output": "⠇⠊⠧⠑⠇⠰⠛⠎" }, { "input": "lively", "output": "⠇⠊⠧⠑⠇⠽" }, { "input": "liven", "output": "⠇⠊⠧⠢" }, { "input": "livened", "output": "⠇⠊⠧⠢⠫" }, { "input": "livening", "output": "⠇⠊⠧⠢⠬" }, { "input": "livens", "output": "⠇⠊⠧⠢⠎" }, { "input": "liver", "output": "⠇⠊⠧⠻" }, { "input": "liveried", "output": "⠇⠊⠧⠻⠊⠫" }, { "input": "liveries", "output": "⠇⠊⠧⠻⠊⠑⠎" }, { "input": "livers", "output": "⠇⠊⠧⠻⠎" }, { "input": "liverwurst", "output": "⠇⠊⠧⠻⠺⠥⠗⠌" }, { "input": "livery", "output": "⠇⠊⠧⠻⠽" }, { "input": "lives", "output": "⠇⠊⠧⠑⠎" }, { "input": "livest", "output": "⠇⠊⠧⠑⠌" }, { "input": "livestock", "output": "⠇⠊⠧⠑⠌⠕⠉⠅" }, { "input": "livid", "output": "⠇⠊⠧⠊⠙" }, { "input": "lividly", "output": "⠇⠊⠧⠊⠙⠇⠽" }, { "input": "living", "output": "⠇⠊⠧⠬" }, { "input": "livings", "output": "⠇⠊⠧⠬⠎" }, { "input": "lizard", "output": "⠇⠊⠵⠜⠙" }, { "input": "lizards", "output": "⠇⠊⠵⠜⠙⠎" }, { "input": "llama", "output": "⠇⠇â â â " }, { "input": "llamas", "output": "⠇⠇â â â â Ž" }, { "input": "llano", "output": "⠇⠇â â â •" }, { "input": "llanos", "output": "⠇⠇â â â •â Ž" }, { "input": "lo", "output": "⠇⠕" }, { "input": "load", "output": "⠇⠕â â ™" }, { "input": "loadable", "output": "⠇⠕â â ™â â ƒâ ‡â ‘" }, { "input": "loaded", "output": "⠇⠕â â ™â «" }, { "input": "loader", "output": "⠇⠕â â ™â »" }, { "input": "loaders", "output": "⠇⠕â â ™â »â Ž" }, { "input": "loading", "output": "⠇⠕â â ™â ¬" }, { "input": "loads", "output": "⠇⠕â â ™â Ž" }, { "input": "loadstar", "output": "⠇⠕â â ™â Œâ œ" }, { "input": "loadstars", "output": "⠇⠕â â ™â Œâ œâ Ž" }, { "input": "loadstone", "output": "⠇⠕â â ™â Œâ â •" }, { "input": "loadstones", "output": "⠇⠕â â ™â Œâ â •â Ž" }, { "input": "loaf", "output": "⠇⠕â â ‹" }, { "input": "loafed", "output": "⠇⠕â â ‹â «" }, { "input": "loafer", "output": "⠇⠕â â ‹â »" }, { "input": "loafers", "output": "⠇⠕â â ‹â »â Ž" }, { "input": "loafing", "output": "⠇⠕â â ‹â ¬" }, { "input": "loafs", "output": "⠇⠕â â ‹â Ž" }, { "input": "loam", "output": "⠇⠕â â " }, { "input": "loamier", "output": "⠇⠕â â â Šâ »" }, { "input": "loamiest", "output": "⠇⠕â â â Šâ ‘â Œ" }, { "input": "loamy", "output": "⠇⠕â â â ½" }, { "input": "loan", "output": "⠇⠕â â " }, { "input": "loaned", "output": "⠇⠕â â â «" }, { "input": "loaner", "output": "⠇⠕â â â »" }, { "input": "loaners", "output": "⠇⠕â â â »â Ž" }, { "input": "loaning", "output": "⠇⠕â â â ¬" }, { "input": "loans", "output": "⠇⠕â â â Ž" }, { "input": "loanword", "output": "⠇⠕â â â ˜â º" }, { "input": "loanwords", "output": "⠇⠕â â â ˜â ºâ Ž" }, { "input": "loath", "output": "⠇⠕â â ¹" }, { "input": "loathe", "output": "⠇⠕â â ®" }, { "input": "loathed", "output": "⠇⠕â â ®â ™" }, { "input": "loathes", "output": "⠇⠕â â ®â Ž" }, { "input": "loathing", "output": "⠇⠕â â ¹â ¬" }, { "input": "loathings", "output": "⠇⠕â â ¹â ¬â Ž" }, { "input": "loathsome", "output": "⠇⠕â â ¹â â Ž" }, { "input": "loathsomeness", "output": "⠇⠕â â ¹â â Žâ °â Ž" }, { "input": "loaves", "output": "⠇⠕â â §â ‘â Ž" }, { "input": "lob", "output": "⠇⠕⠃" }, { "input": "lobbed", "output": "⠇⠕⠆⠫" }, { "input": "lobbied", "output": "⠇⠕⠆⠊⠫" }, { "input": "lobbies", "output": "⠇⠕⠆⠊⠑⠎" }, { "input": "lobbing", "output": "⠇⠕⠆⠬" }, { "input": "lobby", "output": "⠇⠕⠆⠽" }, { "input": "lobbying", "output": "⠇⠕⠆⠽⠬" }, { "input": "lobbyist", "output": "⠇⠕⠆⠽⠊⠌" }, { "input": "lobbyists", "output": "⠇⠕⠆⠽⠊⠌⠎" }, { "input": "lobe", "output": "⠇⠕⠃⠑" }, { "input": "lobed", "output": "⠇⠕⠃⠫" }, { "input": "lobes", "output": "⠇⠕⠃⠑⠎" }, { "input": "lobotomies", "output": "⠇⠕⠃⠕⠞⠕â â Šâ ‘â Ž" }, { "input": "lobotomy", "output": "⠇⠕⠃⠕⠞⠕â â ½" }, { "input": "lobs", "output": "⠇⠕⠃⠎" }, { "input": "lobster", "output": "⠇⠕⠃⠌⠻" }, { "input": "lobsters", "output": "⠇⠕⠃⠌⠻⠎" }, { "input": "local", "output": "⠇⠕⠉â â ‡" }, { "input": "locale", "output": "⠇⠕⠉â â ‡â ‘" }, { "input": "locales", "output": "⠇⠕⠉â â ‡â ‘â Ž" }, { "input": "localities", "output": "⠇⠕⠉â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "locality", "output": "⠇⠕⠉â â ‡â °â ½" }, { "input": "localization", "output": "⠇⠕⠉â â ‡â Šâ µâ â °â " }, { "input": "localize", "output": "⠇⠕⠉â â ‡â Šâ µâ ‘" }, { "input": "localized", "output": "⠇⠕⠉â â ‡â Šâ µâ «" }, { "input": "localizes", "output": "⠇⠕⠉â â ‡â Šâ µâ ‘â Ž" }, { "input": "localizing", "output": "⠇⠕⠉â â ‡â Šâ µâ ¬" }, { "input": "locally", "output": "⠇⠕⠉â â ‡â ‡â ½" }, { "input": "locals", "output": "⠇⠕⠉â â ‡â Ž" }, { "input": "locate", "output": "⠇⠕⠉â â žâ ‘" }, { "input": "located", "output": "⠇⠕⠉â â žâ «" }, { "input": "locates", "output": "⠇⠕⠉â â žâ ‘â Ž" }, { "input": "locating", "output": "⠇⠕⠉â â žâ ¬" }, { "input": "location", "output": "⠇⠕⠉â â °â " }, { "input": "locations", "output": "⠇⠕⠉â â °â â Ž" }, { "input": "loci", "output": "⠇⠕⠉⠊" }, { "input": "lock", "output": "⠇⠕⠉⠅" }, { "input": "lockable", "output": "⠇⠕⠉⠅â â ƒâ ‡â ‘" }, { "input": "locked", "output": "⠇⠕⠉⠅⠫" }, { "input": "locker", "output": "⠇⠕⠉⠅⠻" }, { "input": "lockers", "output": "⠇⠕⠉⠅⠻⠎" }, { "input": "locket", "output": "⠇⠕⠉⠅⠑⠞" }, { "input": "lockets", "output": "⠇⠕⠉⠅⠑⠞⠎" }, { "input": "locking", "output": "⠇⠕⠉⠅⠬" }, { "input": "lockjaw", "output": "⠇⠕⠉⠅⠚â â º" }, { "input": "lockout", "output": "⠇⠕⠉⠅⠳⠞" }, { "input": "lockouts", "output": "⠇⠕⠉⠅⠳⠞⠎" }, { "input": "locks", "output": "⠇⠕⠉⠅⠎" }, { "input": "locksmith", "output": "⠇⠕⠉⠅⠎â â Šâ ¹" }, { "input": "locksmiths", "output": "⠇⠕⠉⠅⠎â â Šâ ¹â Ž" }, { "input": "lockstep", "output": "⠇⠕⠉⠅⠌⠑â " }, { "input": "lockup", "output": "⠇⠕⠉⠅⠥â " }, { "input": "lockups", "output": "⠇⠕⠉⠅⠥â â Ž" }, { "input": "loco", "output": "⠇⠕⠉⠕" }, { "input": "locomotion", "output": "⠇⠕⠉⠕â â •â °â " }, { "input": "locomotive", "output": "⠇⠕⠉⠕â â •â žâ Šâ §â ‘" }, { "input": "locomotives", "output": "⠇⠕⠉⠕â â •â žâ Šâ §â ‘â Ž" }, { "input": "locoweed", "output": "⠇⠕⠉⠕⠺⠑⠫" }, { "input": "locoweeds", "output": "⠇⠕⠉⠕⠺⠑⠫⠎" }, { "input": "locus", "output": "⠇⠕⠉⠥⠎" }, { "input": "locust", "output": "⠇⠕⠉⠥⠌" }, { "input": "locusts", "output": "⠇⠕⠉⠥⠌⠎" }, { "input": "locution", "output": "⠇⠕⠉⠥⠰â " }, { "input": "locutions", "output": "⠇⠕⠉⠥⠰â â Ž" }, { "input": "lode", "output": "⠇⠕⠙⠑" }, { "input": "lodes", "output": "⠇⠕⠙⠑⠎" }, { "input": "lodestar", "output": "⠇⠕⠙⠑⠌⠜" }, { "input": "lodestars", "output": "⠇⠕⠙⠑⠌⠜⠎" }, { "input": "lodestone", "output": "⠇⠕⠙⠑⠌â â •" }, { "input": "lodestones", "output": "⠇⠕⠙⠑⠌â â •â Ž" }, { "input": "lodge", "output": "⠇⠕⠙⠛⠑" }, { "input": "lodged", "output": "⠇⠕⠙⠛⠫" }, { "input": "lodger", "output": "⠇⠕⠙⠛⠻" }, { "input": "lodgers", "output": "⠇⠕⠙⠛⠻⠎" }, { "input": "lodges", "output": "⠇⠕⠙⠛⠑⠎" }, { "input": "lodging", "output": "⠇⠕⠙⠛⠬" }, { "input": "lodgings", "output": "⠇⠕⠙⠛⠬⠎" }, { "input": "loft", "output": "⠇⠷⠞" }, { "input": "lofted", "output": "⠇⠷⠞⠫" }, { "input": "loftier", "output": "⠇⠷⠞⠊⠻" }, { "input": "loftiest", "output": "⠇⠷⠞⠊⠑⠌" }, { "input": "loftily", "output": "⠇⠷⠞⠊⠇⠽" }, { "input": "loftiness", "output": "⠇⠷⠞⠊⠰⠎" }, { "input": "lofting", "output": "⠇⠷⠞⠬" }, { "input": "lofts", "output": "⠇⠷⠞⠎" }, { "input": "lofty", "output": "⠇⠷⠞⠽" }, { "input": "log", "output": "⠇⠕⠛" }, { "input": "loganberries", "output": "⠇⠕⠛â â â ƒâ »â —â Šâ ‘â Ž" }, { "input": "loganberry", "output": "⠇⠕⠛â â â ƒâ »â —â ½" }, { "input": "logarithm", "output": "⠇⠕⠛⠜⠊⠹â " }, { "input": "logarithmic", "output": "⠇⠕⠛⠜⠊⠹â â Šâ ‰" }, { "input": "logarithms", "output": "⠇⠕⠛⠜⠊⠹â â Ž" }, { "input": "logbook", "output": "⠇⠕⠛⠃⠕⠕⠅" }, { "input": "logbooks", "output": "⠇⠕⠛⠃⠕⠕⠅⠎" }, { "input": "loge", "output": "⠇⠕⠛⠑" }, { "input": "loges", "output": "⠇⠕⠛⠑⠎" }, { "input": "logged", "output": "⠇⠕⠶⠫" }, { "input": "logger", "output": "⠇⠕⠶⠻" }, { "input": "loggerhead", "output": "⠇⠕⠶⠻⠓⠂⠙" }, { "input": "loggerheads", "output": "⠇⠕⠶⠻⠓⠂⠙⠎" }, { "input": "loggers", "output": "⠇⠕⠶⠻⠎" }, { "input": "logging", "output": "⠇⠕⠶⠬" }, { "input": "logic", "output": "⠇⠕⠛⠊⠉" }, { "input": "logical", "output": "⠇⠕⠛⠊⠉â â ‡" }, { "input": "logically", "output": "⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "logician", "output": "⠇⠕⠛⠊⠉⠊â â " }, { "input": "logicians", "output": "⠇⠕⠛⠊⠉⠊â â â Ž" }, { "input": "logistic", "output": "⠇⠕⠛⠊⠌⠊⠉" }, { "input": "logistical", "output": "⠇⠕⠛⠊⠌⠊⠉â â ‡" }, { "input": "logistically", "output": "⠇⠕⠛⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "logistics", "output": "⠇⠕⠛⠊⠌⠊⠉⠎" }, { "input": "logjam", "output": "⠇⠕⠛⠚â â " }, { "input": "logjams", "output": "⠇⠕⠛⠚â â â Ž" }, { "input": "logo", "output": "⠇⠕⠛⠕" }, { "input": "logos", "output": "⠇⠕⠛⠕⠎" }, { "input": "logotype", "output": "⠇⠕⠛⠕⠞⠽â â ‘" }, { "input": "logotypes", "output": "⠇⠕⠛⠕⠞⠽â â ‘â Ž" }, { "input": "logrolling", "output": "⠇⠕⠛⠗⠕⠇⠇⠬" }, { "input": "logs", "output": "⠇⠕⠛⠎" }, { "input": "loin", "output": "⠇⠕⠔" }, { "input": "loincloth", "output": "⠇⠕⠔⠉⠇⠕⠹" }, { "input": "loincloths", "output": "⠇⠕⠔⠉⠇⠕⠹⠎" }, { "input": "loins", "output": "⠇⠕⠔⠎" }, { "input": "loiter", "output": "⠇⠕⠊⠞⠻" }, { "input": "loitered", "output": "⠇⠕⠊⠞⠻⠫" }, { "input": "loiterer", "output": "⠇⠕⠊⠞⠻⠻" }, { "input": "loiterers", "output": "⠇⠕⠊⠞⠻⠻⠎" }, { "input": "loitering", "output": "⠇⠕⠊⠞⠻⠬" }, { "input": "loiters", "output": "⠇⠕⠊⠞⠻⠎" }, { "input": "loll", "output": "⠇⠕⠇⠇" }, { "input": "lolled", "output": "⠇⠕⠇⠇⠫" }, { "input": "lolling", "output": "⠇⠕⠇⠇⠬" }, { "input": "lollipop", "output": "⠇⠕⠇⠇⠊â â •â " }, { "input": "lollipops", "output": "⠇⠕⠇⠇⠊â â •â â Ž" }, { "input": "lolls", "output": "⠇⠕⠇⠇⠎" }, { "input": "lollygag", "output": "⠇⠕⠇⠇⠽⠛â â ›" }, { "input": "lollygagged", "output": "⠇⠕⠇⠇⠽⠛â â ¶â «" }, { "input": "lollygagging", "output": "⠇⠕⠇⠇⠽⠛â â ¶â ¬" }, { "input": "lollygags", "output": "⠇⠕⠇⠇⠽⠛â â ›â Ž" }, { "input": "lollypop", "output": "⠇⠕⠇⠇⠽â â •â " }, { "input": "lollypops", "output": "⠇⠕⠇⠇⠽â â •â â Ž" }, { "input": "lone", "output": "â ‡â â •" }, { "input": "lonelier", "output": "â ‡â â •⠇⠊⠻" }, { "input": "loneliest", "output": "â ‡â â •⠇⠊⠑⠌" }, { "input": "loneliness", "output": "â ‡â â •⠇⠊⠰⠎" }, { "input": "lonely", "output": "â ‡â â •⠇⠽" }, { "input": "loner", "output": "⠇⠕â â »" }, { "input": "loners", "output": "⠇⠕â â »â Ž" }, { "input": "lonesome", "output": "â ‡â â •â â Ž" }, { "input": "long", "output": "⠇⠰⠛" }, { "input": "longboat", "output": "⠇⠰⠛⠃⠕â â ž" }, { "input": "longboats", "output": "⠇⠰⠛⠃⠕â â žâ Ž" }, { "input": "longed", "output": "⠇⠰⠛⠫" }, { "input": "longer", "output": "⠇⠰⠛⠻" }, { "input": "longest", "output": "⠇⠰⠛⠑⠌" }, { "input": "longevity", "output": "⠇⠰⠛⠑⠧⠰⠽" }, { "input": "longhair", "output": "⠇⠰⠛⠓â â Šâ —" }, { "input": "longhairs", "output": "⠇⠰⠛⠓â â Šâ —â Ž" }, { "input": "longhand", "output": "⠇⠰⠛⠓⠯" }, { "input": "longhorn", "output": "⠇⠰⠛⠓⠕⠗â " }, { "input": "longhorns", "output": "⠇⠰⠛⠓⠕⠗â â Ž" }, { "input": "longing", "output": "⠇⠰⠛⠬" }, { "input": "longingly", "output": "⠇⠰⠛⠬⠇⠽" }, { "input": "longings", "output": "⠇⠰⠛⠬⠎" }, { "input": "longish", "output": "⠇⠰⠛⠊⠩" }, { "input": "longitude", "output": "⠇⠰⠛⠊⠞⠥⠙⠑" }, { "input": "longitudes", "output": "⠇⠰⠛⠊⠞⠥⠙⠑⠎" }, { "input": "longitudinal", "output": "⠇⠰⠛⠊⠞⠥⠙⠔â â ‡" }, { "input": "longitudinally", "output": "⠇⠰⠛⠊⠞⠥⠙⠔â â ‡â ‡â ½" }, { "input": "longs", "output": "⠇⠰⠛⠎" }, { "input": "longshoreman", "output": "⠇⠰⠛⠩⠕⠗⠑â â â " }, { "input": "longshoremen", "output": "⠇⠰⠛⠩⠕⠗⠑â â ¢" }, { "input": "longtime", "output": "⠇⠰⠛â â ž" }, { "input": "loofah", "output": "⠇⠕⠷â â “" }, { "input": "look", "output": "⠇⠕⠕⠅" }, { "input": "lookalike", "output": "⠇⠕⠕⠅â â ‡â Šâ …â ‘" }, { "input": "lookalikes", "output": "⠇⠕⠕⠅â â ‡â Šâ …â ‘â Ž" }, { "input": "looked", "output": "⠇⠕⠕⠅⠫" }, { "input": "looking", "output": "⠇⠕⠕⠅⠬" }, { "input": "lookout", "output": "⠇⠕⠕⠅⠳⠞" }, { "input": "lookouts", "output": "⠇⠕⠕⠅⠳⠞⠎" }, { "input": "looks", "output": "⠇⠕⠕⠅⠎" }, { "input": "loom", "output": "⠇⠕⠕â " }, { "input": "loomed", "output": "⠇⠕⠕â â «" }, { "input": "looming", "output": "⠇⠕⠕â â ¬" }, { "input": "looms", "output": "⠇⠕⠕â â Ž" }, { "input": "loon", "output": "⠇⠕⠕â " }, { "input": "looney", "output": "⠇⠕⠕â â ‘â ½" }, { "input": "looneyier", "output": "⠇⠕⠕â â ‘⠽⠊⠻" }, { "input": "looneyies", "output": "⠇⠕⠕â â ‘⠽⠊⠑⠎" }, { "input": "looneys", "output": "⠇⠕⠕â â ‘⠽⠎" }, { "input": "loonier", "output": "⠇⠕⠕â â Šâ »" }, { "input": "loonies", "output": "⠇⠕⠕â â Šâ ‘â Ž" }, { "input": "looniest", "output": "⠇⠕⠕â â Šâ ‘â Œ" }, { "input": "loons", "output": "⠇⠕⠕â â Ž" }, { "input": "loony", "output": "⠇⠕⠕â â ½" }, { "input": "loop", "output": "⠇⠕⠕â " }, { "input": "looped", "output": "⠇⠕⠕â â «" }, { "input": "loophole", "output": "⠇⠕⠕â â “⠕⠇⠑" }, { "input": "loopholes", "output": "⠇⠕⠕â â “⠕⠇⠑⠎" }, { "input": "loopier", "output": "⠇⠕⠕â â Šâ »" }, { "input": "loopiest", "output": "⠇⠕⠕â â Šâ ‘â Œ" }, { "input": "looping", "output": "⠇⠕⠕â â ¬" }, { "input": "loops", "output": "⠇⠕⠕â â Ž" }, { "input": "loopy", "output": "⠇⠕⠕â â ½" }, { "input": "loose", "output": "⠇⠕⠕⠎⠑" }, { "input": "loosed", "output": "⠇⠕⠕⠎⠫" }, { "input": "loosely", "output": "⠇⠕⠕⠎⠑⠇⠽" }, { "input": "loosen", "output": "⠇⠕⠕⠎⠢" }, { "input": "loosened", "output": "⠇⠕⠕⠎⠢⠫" }, { "input": "looseness", "output": "⠇⠕⠕⠎⠑⠰⠎" }, { "input": "loosening", "output": "⠇⠕⠕⠎⠢⠬" }, { "input": "loosens", "output": "⠇⠕⠕⠎⠢⠎" }, { "input": "looser", "output": "⠇⠕⠕⠎⠻" }, { "input": "looses", "output": "⠇⠕⠕⠎⠑⠎" }, { "input": "loosest", "output": "⠇⠕⠕⠎⠑⠌" }, { "input": "loosing", "output": "⠇⠕⠕⠎⠬" }, { "input": "loot", "output": "⠇⠕⠕⠞" }, { "input": "looted", "output": "⠇⠕⠕⠞⠫" }, { "input": "looter", "output": "⠇⠕⠕⠞⠻" }, { "input": "looters", "output": "⠇⠕⠕⠞⠻⠎" }, { "input": "looting", "output": "⠇⠕⠕⠞⠬" }, { "input": "loots", "output": "⠇⠕⠕⠞⠎" }, { "input": "lop", "output": "⠇⠕â " }, { "input": "lope", "output": "⠇⠕â â ‘" }, { "input": "loped", "output": "⠇⠕â â «" }, { "input": "lopes", "output": "⠇⠕â â ‘â Ž" }, { "input": "loping", "output": "⠇⠕â â ¬" }, { "input": "lopped", "output": "⠇⠕â â â «" }, { "input": "lopping", "output": "⠇⠕â â â ¬" }, { "input": "lops", "output": "⠇⠕â â Ž" }, { "input": "lopsided", "output": "⠇⠕â â Žâ Šâ ™â «" }, { "input": "lopsidedly", "output": "⠇⠕â â Žâ Šâ ™â «â ‡â ½" }, { "input": "lopsidedness", "output": "⠇⠕â â Žâ Šâ ™â «â °â Ž" }, { "input": "loquacious", "output": "⠇⠕⠟⠥â â ‰â Šâ ³â Ž" }, { "input": "loquacity", "output": "⠇⠕⠟⠥â â ‰â °â ½" }, { "input": "lord", "output": "â â ‡" }, { "input": "lorded", "output": "â â ‡â «" }, { "input": "lording", "output": "â â ‡â ¬" }, { "input": "lordlier", "output": "â â ‡â ‡â Šâ »" }, { "input": "lordliest", "output": "â â ‡â ‡â Šâ ‘â Œ" }, { "input": "lordly", "output": "â â ‡â ‡â ½" }, { "input": "lords", "output": "â â ‡â Ž" }, { "input": "lordship", "output": "â â ‡â ©â Šâ " }, { "input": "lordships", "output": "â â ‡â ©â Šâ â Ž" }, { "input": "lore", "output": "⠇⠕⠗⠑" }, { "input": "lorgnette", "output": "⠇⠕⠗⠛â â ‘â žâ žâ ‘" }, { "input": "lorgnettes", "output": "⠇⠕⠗⠛â â ‘â žâ žâ ‘â Ž" }, { "input": "lorn", "output": "⠇⠕⠗â " }, { "input": "lorries", "output": "⠇⠕⠗⠗⠊⠑⠎" }, { "input": "lorry", "output": "⠇⠕⠗⠗⠽" }, { "input": "lose", "output": "⠇⠕⠎⠑" }, { "input": "loser", "output": "⠇⠕⠎⠻" }, { "input": "losers", "output": "⠇⠕⠎⠻⠎" }, { "input": "loses", "output": "⠇⠕⠎⠑⠎" }, { "input": "losing", "output": "⠇⠕⠎⠬" }, { "input": "loss", "output": "⠇⠕⠎⠎" }, { "input": "losses", "output": "⠇⠕⠎⠎⠑⠎" }, { "input": "lost", "output": "⠇⠕⠌" }, { "input": "lot", "output": "⠇⠕⠞" }, { "input": "loth", "output": "⠇⠕⠹" }, { "input": "lotion", "output": "⠇⠕⠰â " }, { "input": "lotions", "output": "⠇⠕⠰â â Ž" }, { "input": "lots", "output": "⠇⠕⠞⠎" }, { "input": "lotteries", "output": "⠇⠕⠞⠞⠻⠊⠑⠎" }, { "input": "lottery", "output": "⠇⠕⠞⠞⠻⠽" }, { "input": "lotto", "output": "⠇⠕⠞⠞⠕" }, { "input": "lotus", "output": "⠇⠕⠞⠥⠎" }, { "input": "lotuses", "output": "⠇⠕⠞⠥⠎⠑⠎" }, { "input": "loud", "output": "⠇⠳⠙" }, { "input": "louder", "output": "⠇⠳⠙⠻" }, { "input": "loudest", "output": "⠇⠳⠙⠑⠌" }, { "input": "loudly", "output": "⠇⠳⠙⠇⠽" }, { "input": "loudmouth", "output": "⠇⠳⠙â â ³â ¹" }, { "input": "loudmouthed", "output": "⠇⠳⠙â â ³â ®â ™" }, { "input": "loudmouths", "output": "⠇⠳⠙â â ³â ¹â Ž" }, { "input": "loudness", "output": "⠇⠳⠙⠰⠎" }, { "input": "loudspeaker", "output": "⠇⠳⠙⠎â â ‚â …â »" }, { "input": "loudspeakers", "output": "⠇⠳⠙⠎â â ‚⠅⠻⠎" }, { "input": "lounge", "output": "⠇⠳â â ›â ‘" }, { "input": "lounged", "output": "⠇⠳â â ›â «" }, { "input": "lounges", "output": "⠇⠳â â ›â ‘â Ž" }, { "input": "lounging", "output": "⠇⠳â â ›â ¬" }, { "input": "louse", "output": "⠇⠳⠎⠑" }, { "input": "louses", "output": "⠇⠳⠎⠑⠎" }, { "input": "lousier", "output": "⠇⠳⠎⠊⠻" }, { "input": "lousiest", "output": "⠇⠳⠎⠊⠑⠌" }, { "input": "lousiness", "output": "⠇⠳⠎⠊⠰⠎" }, { "input": "lousy", "output": "⠇⠳⠎⠽" }, { "input": "lout", "output": "⠇⠳⠞" }, { "input": "loutish", "output": "⠇⠳⠞⠊⠩" }, { "input": "louts", "output": "⠇⠳⠞⠎" }, { "input": "louver", "output": "⠇⠳⠧⠻" }, { "input": "louvered", "output": "⠇⠳⠧⠻⠫" }, { "input": "louvers", "output": "⠇⠳⠧⠻⠎" }, { "input": "louvred", "output": "⠇⠳⠧⠗⠫" }, { "input": "lovable", "output": "⠇⠕⠧â â ƒâ ‡â ‘" }, { "input": "love", "output": "⠇⠕⠧⠑" }, { "input": "loveable", "output": "⠇⠕⠧⠂⠃⠇⠑" }, { "input": "lovebird", "output": "⠇⠕⠧⠑⠃⠊⠗⠙" }, { "input": "lovebirds", "output": "⠇⠕⠧⠑⠃⠊⠗⠙⠎" }, { "input": "loved", "output": "⠇⠕⠧⠫" }, { "input": "loveless", "output": "⠇⠕⠧⠑⠨⠎" }, { "input": "lovelier", "output": "⠇⠕⠧⠑⠇⠊⠻" }, { "input": "lovelies", "output": "⠇⠕⠧⠑⠇⠊⠑⠎" }, { "input": "loveliest", "output": "⠇⠕⠧⠑⠇⠊⠑⠌" }, { "input": "loveliness", "output": "⠇⠕⠧⠑⠇⠊⠰⠎" }, { "input": "lovelorn", "output": "⠇⠕⠧⠑⠇⠕⠗â " }, { "input": "lovely", "output": "⠇⠕⠧⠑⠇⠽" }, { "input": "lovemaking", "output": "⠇⠕⠧⠑â â â …â ¬" }, { "input": "lover", "output": "⠇⠕⠧⠻" }, { "input": "lovers", "output": "⠇⠕⠧⠻⠎" }, { "input": "loves", "output": "⠇⠕⠧⠑⠎" }, { "input": "lovesick", "output": "⠇⠕⠧⠑⠎⠊⠉⠅" }, { "input": "loving", "output": "⠇⠕⠧⠬" }, { "input": "lovingly", "output": "⠇⠕⠧⠬⠇⠽" }, { "input": "low", "output": "⠇⠪" }, { "input": "lowbrow", "output": "⠇⠪⠃⠗⠪" }, { "input": "lowbrows", "output": "⠇⠪⠃⠗⠪⠎" }, { "input": "lowdown", "output": "⠇⠪⠙⠪â " }, { "input": "lowed", "output": "⠇⠪⠫" }, { "input": "lower", "output": "⠇⠪⠻" }, { "input": "lowercase", "output": "⠇⠪⠻⠉â â Žâ ‘" }, { "input": "lowered", "output": "⠇⠪⠻⠫" }, { "input": "lowering", "output": "⠇⠪⠻⠬" }, { "input": "lowers", "output": "⠇⠪⠻⠎" }, { "input": "lowest", "output": "⠇⠪⠑⠌" }, { "input": "lowing", "output": "⠇⠪⠬" }, { "input": "lowish", "output": "⠇⠪⠊⠩" }, { "input": "lowland", "output": "⠇⠪⠇⠯" }, { "input": "lowlands", "output": "⠇⠪⠇⠯⠎" }, { "input": "lowlier", "output": "⠇⠪⠇⠊⠻" }, { "input": "lowliest", "output": "⠇⠪⠇⠊⠑⠌" }, { "input": "lowliness", "output": "⠇⠪⠇⠊⠰⠎" }, { "input": "lowly", "output": "⠇⠪⠇⠽" }, { "input": "lowness", "output": "⠇⠪⠰⠎" }, { "input": "lows", "output": "⠇⠪⠎" }, { "input": "lox", "output": "⠇⠕⠭" }, { "input": "loxes", "output": "⠇⠕⠭⠑⠎" }, { "input": "loyal", "output": "⠇⠕⠽â â ‡" }, { "input": "loyaler", "output": "⠇⠕⠽â â ‡â »" }, { "input": "loyalest", "output": "⠇⠕⠽â â ‡â ‘â Œ" }, { "input": "loyalist", "output": "⠇⠕⠽â â ‡â Šâ Œ" }, { "input": "loyalists", "output": "⠇⠕⠽â â ‡â Šâ Œâ Ž" }, { "input": "loyaller", "output": "⠇⠕⠽â â ‡â ‡â »" }, { "input": "loyallest", "output": "⠇⠕⠽â â ‡â ‡â ‘â Œ" }, { "input": "loyally", "output": "⠇⠕⠽â â ‡â ‡â ½" }, { "input": "loyalties", "output": "⠇⠕⠽â â ‡â žâ Šâ ‘â Ž" }, { "input": "loyalty", "output": "⠇⠕⠽â â ‡â žâ ½" }, { "input": "lozenge", "output": "⠇⠕⠵⠢⠛⠑" }, { "input": "lozenges", "output": "⠇⠕⠵⠢⠛⠑⠎" }, { "input": "ls", "output": "⠇⠎" }, { "input": "luau", "output": "⠇⠥â â ¥" }, { "input": "luaus", "output": "⠇⠥â â ¥â Ž" }, { "input": "lubber", "output": "⠇⠥⠆⠻" }, { "input": "lubbers", "output": "⠇⠥⠆⠻⠎" }, { "input": "lube", "output": "⠇⠥⠃⠑" }, { "input": "lubed", "output": "⠇⠥⠃⠫" }, { "input": "lubes", "output": "⠇⠥⠃⠑⠎" }, { "input": "lubing", "output": "⠇⠥⠃⠬" }, { "input": "lubricant", "output": "⠇⠥⠃⠗⠊⠉â â â ž" }, { "input": "lubricants", "output": "⠇⠥⠃⠗⠊⠉â â â žâ Ž" }, { "input": "lubricate", "output": "⠇⠥⠃⠗⠊⠉â â žâ ‘" }, { "input": "lubricated", "output": "⠇⠥⠃⠗⠊⠉â â žâ «" }, { "input": "lubricates", "output": "⠇⠥⠃⠗⠊⠉â â žâ ‘â Ž" }, { "input": "lubricating", "output": "⠇⠥⠃⠗⠊⠉â â žâ ¬" }, { "input": "lubrication", "output": "⠇⠥⠃⠗⠊⠉â â °â " }, { "input": "lubricator", "output": "⠇⠥⠃⠗⠊⠉â â žâ •â —" }, { "input": "lubricators", "output": "⠇⠥⠃⠗⠊⠉â â žâ •â —â Ž" }, { "input": "lucid", "output": "⠇⠥⠉⠊⠙" }, { "input": "lucidity", "output": "⠇⠥⠉⠊⠙⠰⠽" }, { "input": "lucidly", "output": "⠇⠥⠉⠊⠙⠇⠽" }, { "input": "lucidness", "output": "⠇⠥⠉⠊⠙⠰⠎" }, { "input": "luck", "output": "⠇⠥⠉⠅" }, { "input": "lucked", "output": "⠇⠥⠉⠅⠫" }, { "input": "luckier", "output": "⠇⠥⠉⠅⠊⠻" }, { "input": "luckiest", "output": "⠇⠥⠉⠅⠊⠑⠌" }, { "input": "luckily", "output": "⠇⠥⠉⠅⠊⠇⠽" }, { "input": "luckiness", "output": "⠇⠥⠉⠅⠊⠰⠎" }, { "input": "lucking", "output": "⠇⠥⠉⠅⠬" }, { "input": "luckless", "output": "⠇⠥⠉⠅⠨⠎" }, { "input": "lucks", "output": "⠇⠥⠉⠅⠎" }, { "input": "lucky", "output": "⠇⠥⠉⠅⠽" }, { "input": "lucrative", "output": "⠇⠥⠉⠗â â žâ Šâ §â ‘" }, { "input": "lucratively", "output": "⠇⠥⠉⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "lucre", "output": "⠇⠥⠉⠗⠑" }, { "input": "ludicrous", "output": "⠇⠥⠙⠊⠉⠗⠳⠎" }, { "input": "ludicrously", "output": "⠇⠥⠙⠊⠉⠗⠳⠎⠇⠽" }, { "input": "ludicrousness", "output": "⠇⠥⠙⠊⠉⠗⠳⠎⠰⠎" }, { "input": "lug", "output": "⠇⠥⠛" }, { "input": "luggage", "output": "⠇⠥⠶â â ›â ‘" }, { "input": "lugged", "output": "⠇⠥⠶⠫" }, { "input": "lugging", "output": "⠇⠥⠶⠬" }, { "input": "lugs", "output": "⠇⠥⠛⠎" }, { "input": "lugubrious", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎" }, { "input": "lugubriously", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎⠇⠽" }, { "input": "lugubriousness", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎⠰⠎" }, { "input": "lukewarm", "output": "⠇⠥⠅⠑⠺⠜â " }, { "input": "lull", "output": "⠇⠥⠇⠇" }, { "input": "lullabies", "output": "⠇⠥⠇⠇â â ƒâ Šâ ‘â Ž" }, { "input": "lullaby", "output": "⠇⠥⠇⠇â â ƒâ ½" }, { "input": "lulled", "output": "⠇⠥⠇⠇⠫" }, { "input": "lulling", "output": "⠇⠥⠇⠇⠬" }, { "input": "lulls", "output": "⠇⠥⠇⠇⠎" }, { "input": "lumbago", "output": "⠇⠥â â ƒâ â ›â •" }, { "input": "lumbar", "output": "⠇⠥â â ƒâ œ" }, { "input": "lumber", "output": "⠇⠥â â ƒâ »" }, { "input": "lumbered", "output": "⠇⠥â â ƒâ »â «" }, { "input": "lumbering", "output": "⠇⠥â â ƒâ »â ¬" }, { "input": "lumberjack", "output": "⠇⠥â â ƒâ »â šâ â ‰â …" }, { "input": "lumberjacks", "output": "⠇⠥â â ƒâ »â šâ â ‰â …â Ž" }, { "input": "lumberman", "output": "⠇⠥â â ƒâ »â â â " }, { "input": "lumbermen", "output": "⠇⠥â â ƒâ »â â ¢" }, { "input": "lumbers", "output": "⠇⠥â â ƒâ »â Ž" }, { "input": "lumberyard", "output": "⠇⠥â â ƒâ »â ½â œâ ™" }, { "input": "lumberyards", "output": "⠇⠥â â ƒâ »â ½â œâ ™â Ž" }, { "input": "luminaries", "output": "⠇⠥â â ”⠜⠊⠑⠎" }, { "input": "luminary", "output": "⠇⠥â â ”⠜⠽" }, { "input": "luminescence", "output": "⠇⠥â â ”⠑⠎⠉⠰⠑" }, { "input": "luminescent", "output": "⠇⠥â â ”⠑⠎⠉⠢⠞" }, { "input": "luminosity", "output": "⠇⠥â â ”â •â Žâ °â ½" }, { "input": "luminous", "output": "⠇⠥â â ”⠳⠎" }, { "input": "luminously", "output": "⠇⠥â â ”⠳⠎⠇⠽" }, { "input": "lummox", "output": "⠇⠥â â â •â ­" }, { "input": "lummoxes", "output": "⠇⠥â â â •â ­â ‘â Ž" }, { "input": "lump", "output": "⠇⠥â â " }, { "input": "lumped", "output": "⠇⠥â â â «" }, { "input": "lumpier", "output": "⠇⠥â â â Šâ »" }, { "input": "lumpiest", "output": "⠇⠥â â â Šâ ‘â Œ" }, { "input": "lumpiness", "output": "⠇⠥â â â Šâ °â Ž" }, { "input": "lumping", "output": "⠇⠥â â â ¬" }, { "input": "lumpish", "output": "⠇⠥â â â Šâ ©" }, { "input": "lumps", "output": "⠇⠥â â â Ž" }, { "input": "lumpy", "output": "⠇⠥â â â ½" }, { "input": "lunacies", "output": "⠇⠥â â â ‰â Šâ ‘â Ž" }, { "input": "lunacy", "output": "⠇⠥â â â ‰â ½" }, { "input": "lunar", "output": "⠇⠥â â œ" }, { "input": "lunatic", "output": "⠇⠥â â â žâ Šâ ‰" }, { "input": "lunatics", "output": "⠇⠥â â â žâ Šâ ‰â Ž" }, { "input": "lunch", "output": "⠇⠥â â ¡" }, { "input": "lunchbox", "output": "⠇⠥â â ¡â ƒâ •â ­" }, { "input": "lunched", "output": "⠇⠥â â ¡â «" }, { "input": "luncheon", "output": "⠇⠥â â ¡â ‘â •â " }, { "input": "luncheonette", "output": "⠇⠥â â ¡â ‘â •â â ‘â žâ žâ ‘" }, { "input": "luncheonettes", "output": "⠇⠥â â ¡â ‘â •â â ‘â žâ žâ ‘â Ž" }, { "input": "luncheons", "output": "⠇⠥â â ¡â ‘â •â â Ž" }, { "input": "lunches", "output": "⠇⠥â â ¡â ‘â Ž" }, { "input": "lunching", "output": "⠇⠥â â ¡â ¬" }, { "input": "lunchroom", "output": "⠇⠥â â ¡â —â •â •â " }, { "input": "lunchrooms", "output": "⠇⠥â â ¡â —â •â •â â Ž" }, { "input": "lunchtime", "output": "⠇⠥â â ¡â â ž" }, { "input": "lunchtimes", "output": "⠇⠥â â ¡â â žâ Ž" }, { "input": "lung", "output": "⠇⠥â â ›" }, { "input": "lunge", "output": "⠇⠥â â ›â ‘" }, { "input": "lunged", "output": "⠇⠥â â ›â «" }, { "input": "lunges", "output": "⠇⠥â â ›â ‘â Ž" }, { "input": "lunging", "output": "⠇⠥â â ›â ¬" }, { "input": "lungs", "output": "⠇⠥â â ›â Ž" }, { "input": "lupin", "output": "⠇⠥â â ”" }, { "input": "lupine", "output": "⠇⠥â â ”â ‘" }, { "input": "lupines", "output": "⠇⠥â â ”â ‘â Ž" }, { "input": "lupins", "output": "⠇⠥â â ”â Ž" }, { "input": "lupus", "output": "⠇⠥â â ¥â Ž" }, { "input": "lurch", "output": "⠇⠥⠗⠡" }, { "input": "lurched", "output": "⠇⠥⠗⠡⠫" }, { "input": "lurches", "output": "⠇⠥⠗⠡⠑⠎" }, { "input": "lurching", "output": "⠇⠥⠗⠡⠬" }, { "input": "lure", "output": "⠇⠥⠗⠑" }, { "input": "lured", "output": "⠇⠥⠗⠫" }, { "input": "lures", "output": "⠇⠥⠗⠑⠎" }, { "input": "lurid", "output": "⠇⠥⠗⠊⠙" }, { "input": "luridly", "output": "⠇⠥⠗⠊⠙⠇⠽" }, { "input": "luridness", "output": "⠇⠥⠗⠊⠙⠰⠎" }, { "input": "luring", "output": "⠇⠥⠗⠬" }, { "input": "lurk", "output": "⠇⠥⠗⠅" }, { "input": "lurked", "output": "⠇⠥⠗⠅⠫" }, { "input": "lurking", "output": "⠇⠥⠗⠅⠬" }, { "input": "lurks", "output": "⠇⠥⠗⠅⠎" }, { "input": "luscious", "output": "⠇⠥⠎⠉⠊⠳⠎" }, { "input": "lusciously", "output": "⠇⠥⠎⠉⠊⠳⠎⠇⠽" }, { "input": "lusciousness", "output": "⠇⠥⠎⠉⠊⠳⠎⠰⠎" }, { "input": "lush", "output": "⠇⠥⠩" }, { "input": "lusher", "output": "⠇⠥⠩⠻" }, { "input": "lushes", "output": "⠇⠥⠩⠑⠎" }, { "input": "lushest", "output": "⠇⠥⠩⠑⠌" }, { "input": "lushness", "output": "⠇⠥⠩⠰⠎" }, { "input": "lust", "output": "⠇⠥⠌" }, { "input": "lusted", "output": "⠇⠥⠌⠫" }, { "input": "luster", "output": "⠇⠥⠌⠻" }, { "input": "lustful", "output": "⠇⠥⠌⠰⠇" }, { "input": "lustfully", "output": "⠇⠥⠌⠰⠇⠇⠽" }, { "input": "lustier", "output": "⠇⠥⠌⠊⠻" }, { "input": "lustiest", "output": "⠇⠥⠌⠊⠑⠌" }, { "input": "lustily", "output": "⠇⠥⠌⠊⠇⠽" }, { "input": "lustiness", "output": "⠇⠥⠌⠊⠰⠎" }, { "input": "lusting", "output": "⠇⠥⠌⠬" }, { "input": "lustre", "output": "⠇⠥⠌⠗⠑" }, { "input": "lustrous", "output": "⠇⠥⠌⠗⠳⠎" }, { "input": "lusts", "output": "⠇⠥⠌⠎" }, { "input": "lusty", "output": "⠇⠥⠌⠽" }, { "input": "lute", "output": "⠇⠥⠞⠑" }, { "input": "lutes", "output": "⠇⠥⠞⠑⠎" }, { "input": "luxuriance", "output": "⠇⠥⠭⠥⠗⠊⠨⠑" }, { "input": "luxuriant", "output": "⠇⠥⠭⠥⠗⠊â â â ž" }, { "input": "luxuriantly", "output": "⠇⠥⠭⠥⠗⠊â â â žâ ‡â ½" }, { "input": "luxuriate", "output": "⠇⠥⠭⠥⠗⠊â â žâ ‘" }, { "input": "luxuriated", "output": "⠇⠥⠭⠥⠗⠊â â žâ «" }, { "input": "luxuriates", "output": "⠇⠥⠭⠥⠗⠊â â žâ ‘â Ž" }, { "input": "luxuriating", "output": "⠇⠥⠭⠥⠗⠊â â žâ ¬" }, { "input": "luxuries", "output": "⠇⠥⠭⠥⠗⠊⠑⠎" }, { "input": "luxurious", "output": "⠇⠥⠭⠥⠗⠊⠳⠎" }, { "input": "luxuriously", "output": "⠇⠥⠭⠥⠗⠊⠳⠎⠇⠽" }, { "input": "luxuriousness", "output": "⠇⠥⠭⠥⠗⠊⠳⠎⠰⠎" }, { "input": "luxury", "output": "⠇⠥⠭⠥⠗⠽" }, { "input": "lyceum", "output": "⠇⠽⠉⠑⠥â " }, { "input": "lyceums", "output": "⠇⠽⠉⠑⠥â â Ž" }, { "input": "lychee", "output": "⠇⠽⠡⠑⠑" }, { "input": "lychees", "output": "⠇⠽⠡⠑⠑⠎" }, { "input": "lye", "output": "⠇⠽⠑" }, { "input": "lying", "output": "⠇⠽⠬" }, { "input": "lymph", "output": "⠇⠽â â â “" }, { "input": "lymphatic", "output": "⠇⠽â â â “â â žâ Šâ ‰" }, { "input": "lymphatics", "output": "⠇⠽â â â “â â žâ Šâ ‰â Ž" }, { "input": "lymphoma", "output": "⠇⠽â â â “â •â â " }, { "input": "lymphomas", "output": "⠇⠽â â â “â •â â â Ž" }, { "input": "lymphomata", "output": "⠇⠽â â â “â •â â â žâ " }, { "input": "lynch", "output": "⠇⠽â â ¡" }, { "input": "lynched", "output": "⠇⠽â â ¡â «" }, { "input": "lynches", "output": "⠇⠽â â ¡â ‘â Ž" }, { "input": "lynching", "output": "⠇⠽â â ¡â ¬" }, { "input": "lynchings", "output": "⠇⠽â â ¡â ¬â Ž" }, { "input": "lynchpin", "output": "⠇⠽â â ¡â â ”" }, { "input": "lynchpins", "output": "⠇⠽â â ¡â â ”â Ž" }, { "input": "lynx", "output": "⠇⠽â â ­" }, { "input": "lynxes", "output": "⠇⠽â â ­â ‘â Ž" }, { "input": "lyre", "output": "⠇⠽⠗⠑" }, { "input": "lyres", "output": "⠇⠽⠗⠑⠎" }, { "input": "lyric", "output": "⠇⠽⠗⠊⠉" }, { "input": "lyrical", "output": "⠇⠽⠗⠊⠉â â ‡" }, { "input": "lyrically", "output": "⠇⠽⠗⠊⠉â â ‡â ‡â ½" }, { "input": "lyricist", "output": "⠇⠽⠗⠊⠉⠊⠌" }, { "input": "lyricists", "output": "⠇⠽⠗⠊⠉⠊⠌⠎" }, { "input": "lyrics", "output": "⠇⠽⠗⠊⠉⠎" }, { "input": "m", "output": "â °â " }, { "input": "ma", "output": "â â " }, { "input": "macabre", "output": "â â â ‰â â ƒâ —â ‘" }, { "input": "macadam", "output": "â â â ‰â â ™â â " }, { "input": "macaroni", "output": "â â â ‰â œâ •â â Š" }, { "input": "macaronies", "output": "â â â ‰â œâ •â â Šâ ‘â Ž" }, { "input": "macaronis", "output": "â â â ‰â œâ •â â Šâ Ž" }, { "input": "macaroon", "output": "â â â ‰â œâ •â •â " }, { "input": "macaroons", "output": "â â â ‰â œâ •â •â â Ž" }, { "input": "macaw", "output": "â â â ‰â â º" }, { "input": "macaws", "output": "â â â ‰â â ºâ Ž" }, { "input": "mace", "output": "â â â ‰â ‘" }, { "input": "maced", "output": "â â â ‰â «" }, { "input": "macerate", "output": "â â â ‰â »â â žâ ‘" }, { "input": "macerated", "output": "â â â ‰â »â â žâ «" }, { "input": "macerates", "output": "â â â ‰â »â â žâ ‘â Ž" }, { "input": "macerating", "output": "â â â ‰â »â â žâ ¬" }, { "input": "maceration", "output": "â â â ‰â »â â °â " }, { "input": "maces", "output": "â â â ‰â ‘â Ž" }, { "input": "machete", "output": "â â â ¡â ‘â žâ ‘" }, { "input": "machetes", "output": "â â â ¡â ‘â žâ ‘â Ž" }, { "input": "machination", "output": "â â â ¡â ”â â °â " }, { "input": "machinations", "output": "â â â ¡â ”â â °â â Ž" }, { "input": "machine", "output": "â â â ¡â ”â ‘" }, { "input": "machined", "output": "â â â ¡â ”â «" }, { "input": "machinery", "output": "â â â ¡â ”⠻⠽" }, { "input": "machines", "output": "â â â ¡â ”â ‘â Ž" }, { "input": "machining", "output": "â â â ¡â ”â ¬" }, { "input": "machinist", "output": "â â â ¡â ”â Šâ Œ" }, { "input": "machinists", "output": "â â â ¡â ”⠊⠌⠎" }, { "input": "machismo", "output": "â â â ¡â Šâ Žâ â •" }, { "input": "macho", "output": "â â â ¡â •" }, { "input": "macing", "output": "â â â ‰â ¬" }, { "input": "macintosh", "output": "â â â ‰â ”â žâ •â ©" }, { "input": "macintoshes", "output": "â â â ‰â ”â žâ •â ©â ‘â Ž" }, { "input": "mackerel", "output": "â â â ‰â …⠻⠑⠇" }, { "input": "mackerels", "output": "â â â ‰â …⠻⠑⠇⠎" }, { "input": "mackinaw", "output": "â â â ‰â …â ”â â º" }, { "input": "mackinaws", "output": "â â â ‰â …â ”â â ºâ Ž" }, { "input": "mackintosh", "output": "â â â ‰â …⠔⠞⠕⠩" }, { "input": "mackintoshes", "output": "â â â ‰â …⠔⠞⠕⠩⠑⠎" }, { "input": "macramé", "output": "â â â ‰â —â â â  â ˜â »â â ˜â ‰" }, { "input": "macro", "output": "â â â ‰â —â •" }, { "input": "macrobiotic", "output": "â â â ‰â —⠕⠃⠊⠕⠞⠊⠉" }, { "input": "macrobiotics", "output": "â â â ‰â —⠕⠃⠊⠕⠞⠊⠉⠎" }, { "input": "macrocosm", "output": "â â â ‰â —⠕⠉⠕⠎â " }, { "input": "macrocosms", "output": "â â â ‰â —⠕⠉⠕⠎â â Ž" }, { "input": "macron", "output": "â â â ‰â —â •â " }, { "input": "macrons", "output": "â â â ‰â —â •â â Ž" }, { "input": "macros", "output": "â â â ‰â —â •â Ž" }, { "input": "macroscopic", "output": "â â â ‰â —⠕⠎⠉⠕â â Šâ ‰" }, { "input": "mad", "output": "â â â ™" }, { "input": "madam", "output": "â â â ™â â " }, { "input": "madame", "output": "â â â ™â â â ‘" }, { "input": "madams", "output": "â â â ™â â â Ž" }, { "input": "madcap", "output": "â â â ™â ‰â â " }, { "input": "madcaps", "output": "â â â ™â ‰â â â Ž" }, { "input": "madden", "output": "â â â ™â ™â ¢" }, { "input": "maddened", "output": "â â â ™â ™â ¢â «" }, { "input": "maddening", "output": "â â â ™â ™â ¢â ¬" }, { "input": "maddeningly", "output": "â â â ™â ™â ¢â ¬â ‡â ½" }, { "input": "maddens", "output": "â â â ™â ™â ¢â Ž" }, { "input": "madder", "output": "â â â ™â ™â »" }, { "input": "madders", "output": "â â â ™â ™â »â Ž" }, { "input": "maddest", "output": "â â â ™â ™â ‘â Œ" }, { "input": "made", "output": "â â â ™â ‘" }, { "input": "mademoiselle", "output": "â â â ™â ‘â â •⠊⠎⠑⠇⠇⠑" }, { "input": "mademoiselles", "output": "â â â ™â ‘â â •⠊⠎⠑⠇⠇⠑⠎" }, { "input": "madhouse", "output": "â â â ™â “⠳⠎⠑" }, { "input": "madhouses", "output": "â â â ™â “⠳⠎⠑⠎" }, { "input": "madly", "output": "â â â ™â ‡â ½" }, { "input": "madman", "output": "â â â ™â â â " }, { "input": "madmen", "output": "â â â ™â â ¢" }, { "input": "madness", "output": "â â â ™â °â Ž" }, { "input": "madras", "output": "â â â ™â —â â Ž" }, { "input": "madrases", "output": "â â â ™â —â â Žâ ‘â Ž" }, { "input": "madrigal", "output": "â â â ™â —â Šâ ›â â ‡" }, { "input": "madrigals", "output": "â â â ™â —â Šâ ›â â ‡â Ž" }, { "input": "mads", "output": "â â â ™â Ž" }, { "input": "madwoman", "output": "â â â ™â ºâ •â â â " }, { "input": "madwomen", "output": "â â â ™â ºâ •â â ¢" }, { "input": "maelstrom", "output": "â â â ‘⠇⠌⠗⠕â " }, { "input": "maelstroms", "output": "â â â ‘⠇⠌⠗⠕â â Ž" }, { "input": "maestri", "output": "â â â ‘⠌⠗⠊" }, { "input": "maestro", "output": "â â â ‘⠌⠗⠕" }, { "input": "maestros", "output": "â â â ‘⠌⠗⠕⠎" }, { "input": "magazine", "output": "â â â ›â â µâ ”â ‘" }, { "input": "magazines", "output": "â â â ›â â µâ ”â ‘â Ž" }, { "input": "magenta", "output": "â â â ›â ¢â žâ " }, { "input": "maggot", "output": "â â â ¶â •â ž" }, { "input": "maggots", "output": "â â â ¶â •â žâ Ž" }, { "input": "magic", "output": "â â â ›â Šâ ‰" }, { "input": "magical", "output": "â â â ›â Šâ ‰â â ‡" }, { "input": "magically", "output": "â â â ›â Šâ ‰â â ‡â ‡â ½" }, { "input": "magician", "output": "â â â ›â Šâ ‰â Šâ â " }, { "input": "magicians", "output": "â â â ›â Šâ ‰â Šâ â â Ž" }, { "input": "magisterial", "output": "â â â ›â Šâ Œâ »â Šâ â ‡" }, { "input": "magisterially", "output": "â â â ›â Šâ Œâ »â Šâ â ‡â ‡â ½" }, { "input": "magistrate", "output": "â â â ›â Šâ Œâ —â â žâ ‘" }, { "input": "magistrates", "output": "â â â ›â Šâ Œâ —â â žâ ‘â Ž" }, { "input": "magma", "output": "â â â ›â â " }, { "input": "magnanimity", "output": "â â â ›â â â â Šâ â °â ½" }, { "input": "magnanimous", "output": "â â â ›â â â â Šâ â ³â Ž" }, { "input": "magnanimously", "output": "â â â ›â â â â Šâ â ³â Žâ ‡â ½" }, { "input": "magnate", "output": "â â â ›â â â žâ ‘" }, { "input": "magnates", "output": "â â â ›â â â žâ ‘â Ž" }, { "input": "magnesia", "output": "â â â ›â â ‘â Žâ Šâ " }, { "input": "magnesium", "output": "â â â ›â â ‘â Žâ Šâ ¥â " }, { "input": "magnet", "output": "â â â ›â â ‘â ž" }, { "input": "magnetic", "output": "â â â ›â â ‘â žâ Šâ ‰" }, { "input": "magnetically", "output": "â â â ›â â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "magnetism", "output": "â â â ›â â ‘â žâ Šâ Žâ " }, { "input": "magnetization", "output": "â â â ›â â ‘â žâ Šâ µâ â °â " }, { "input": "magnetize", "output": "â â â ›â â ‘⠞⠊⠵⠑" }, { "input": "magnetized", "output": "â â â ›â â ‘⠞⠊⠵⠫" }, { "input": "magnetizes", "output": "â â â ›â â ‘⠞⠊⠵⠑⠎" }, { "input": "magnetizing", "output": "â â â ›â â ‘⠞⠊⠵⠬" }, { "input": "magneto", "output": "â â â ›â â ‘â žâ •" }, { "input": "magnetos", "output": "â â â ›â â ‘â žâ •â Ž" }, { "input": "magnetosphere", "output": "â â â ›â â ‘â žâ •â Žâ â â “" }, { "input": "magnets", "output": "â â â ›â â ‘â žâ Ž" }, { "input": "magnification", "output": "â â â ›â â Šâ ‹â Šâ ‰â â °â " }, { "input": "magnifications", "output": "â â â ›â â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "magnificence", "output": "â â â ›â â Šâ ‹â Šâ ‰â °â ‘" }, { "input": "magnificent", "output": "â â â ›â â Šâ ‹â Šâ ‰â ¢â ž" }, { "input": "magnificently", "output": "â â â ›â â Šâ ‹â Šâ ‰â ¢â žâ ‡â ½" }, { "input": "magnified", "output": "â â â ›â â Šâ ‹â Šâ «" }, { "input": "magnifier", "output": "â â â ›â â Šâ ‹â Šâ »" }, { "input": "magnifiers", "output": "â â â ›â â Šâ ‹â Šâ »â Ž" }, { "input": "magnifies", "output": "â â â ›â â Šâ ‹â Šâ ‘â Ž" }, { "input": "magnify", "output": "â â â ›â â Šâ ‹â ½" }, { "input": "magnifying", "output": "â â â ›â â Šâ ‹â ½â ¬" }, { "input": "magnitude", "output": "â â â ›â â Šâ žâ ¥â ™â ‘" }, { "input": "magnitudes", "output": "â â â ›â â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "magnolia", "output": "â â â ›â â •⠇⠊â " }, { "input": "magnolias", "output": "â â â ›â â •⠇⠊â â Ž" }, { "input": "magnum", "output": "â â â ›â â ¥â " }, { "input": "magnums", "output": "â â â ›â â ¥â â Ž" }, { "input": "magpie", "output": "â â â ›â â Šâ ‘" }, { "input": "magpies", "output": "â â â ›â â Šâ ‘â Ž" }, { "input": "maharaja", "output": "â â â “â œâ â šâ " }, { "input": "maharajah", "output": "â â â “â œâ â šâ â “" }, { "input": "maharajahs", "output": "â â â “â œâ â šâ â “â Ž" }, { "input": "maharajas", "output": "â â â “â œâ â šâ â Ž" }, { "input": "maharanee", "output": "â â â “â œâ â â ‘â ‘" }, { "input": "maharanees", "output": "â â â “â œâ â â ‘â ‘â Ž" }, { "input": "maharani", "output": "â â â “â œâ â â Š" }, { "input": "maharanis", "output": "â â â “â œâ â â Šâ Ž" }, { "input": "maharishi", "output": "â â â “⠜⠊⠩⠊" }, { "input": "maharishis", "output": "â â â “⠜⠊⠩⠊⠎" }, { "input": "mahatma", "output": "â â â “â â žâ â " }, { "input": "mahatmas", "output": "â â â “â â žâ â â Ž" }, { "input": "mahjong", "output": "â â â “â šâ °â ›" }, { "input": "mahoganies", "output": "â â â “â •â ›â â â Šâ ‘â Ž" }, { "input": "mahogany", "output": "â â â “â •â ›â â â ½" }, { "input": "maid", "output": "â â â Šâ ™" }, { "input": "maiden", "output": "â â â Šâ ™â ¢" }, { "input": "maidenhair", "output": "â â â Šâ ™â ¢â “â â Šâ —" }, { "input": "maidenhead", "output": "â â â Šâ ™â ¢â “â ‚â ™" }, { "input": "maidenheads", "output": "â â â Šâ ™â ¢â “⠂⠙⠎" }, { "input": "maidenhood", "output": "â â â Šâ ™â ¢â “â •â •â ™" }, { "input": "maidenly", "output": "â â â Šâ ™â ¢â ‡â ½" }, { "input": "maidens", "output": "â â â Šâ ™â ¢â Ž" }, { "input": "maids", "output": "â â â Šâ ™â Ž" }, { "input": "maidservant", "output": "â â â Šâ ™â Žâ »â §â â â ž" }, { "input": "maidservants", "output": "â â â Šâ ™â Žâ »â §â â â žâ Ž" }, { "input": "mail", "output": "â â â Šâ ‡" }, { "input": "mailbox", "output": "â â â Šâ ‡â ƒâ •â ­" }, { "input": "mailboxes", "output": "â â â Šâ ‡â ƒâ •â ­â ‘â Ž" }, { "input": "mailed", "output": "â â â Šâ ‡â «" }, { "input": "mailer", "output": "â â â Šâ ‡â »" }, { "input": "mailers", "output": "â â â Šâ ‡â »â Ž" }, { "input": "mailing", "output": "â â â Šâ ‡â ¬" }, { "input": "mailings", "output": "â â â Šâ ‡â ¬â Ž" }, { "input": "mailman", "output": "â â â Šâ ‡â â â " }, { "input": "mailmen", "output": "â â â Šâ ‡â â ¢" }, { "input": "mails", "output": "â â â Šâ ‡â Ž" }, { "input": "maim", "output": "â â â Šâ " }, { "input": "maimed", "output": "â â â Šâ â «" }, { "input": "maiming", "output": "â â â Šâ â ¬" }, { "input": "maims", "output": "â â â Šâ â Ž" }, { "input": "main", "output": "â â â ”" }, { "input": "mainframe", "output": "â â â ”â ‹â —â â â ‘" }, { "input": "mainframes", "output": "â â â ”â ‹â —â â â ‘â Ž" }, { "input": "mainland", "output": "â â â ”⠇⠯" }, { "input": "mainlands", "output": "â â â ”⠇⠯⠎" }, { "input": "mainline", "output": "â â â ”⠇⠔⠑" }, { "input": "mainlined", "output": "â â â ”⠇⠔⠫" }, { "input": "mainlines", "output": "â â â ”⠇⠔⠑⠎" }, { "input": "mainlining", "output": "â â â ”⠇⠔⠬" }, { "input": "mainly", "output": "â â â ”⠇⠽" }, { "input": "mainmast", "output": "â â â ”â â â Œ" }, { "input": "mainmasts", "output": "â â â ”â â â Œâ Ž" }, { "input": "mains", "output": "â â â ”â Ž" }, { "input": "mainsail", "output": "â â â ”â Žâ â Šâ ‡" }, { "input": "mainsails", "output": "â â â ”â Žâ â Šâ ‡â Ž" }, { "input": "mainspring", "output": "â â â ”â Žâ â —â ¬" }, { "input": "mainsprings", "output": "â â â ”â Žâ â —⠬⠎" }, { "input": "mainstay", "output": "â â â ”â Œâ â ½" }, { "input": "mainstays", "output": "â â â ”â Œâ â ½â Ž" }, { "input": "mainstream", "output": "â â â ”⠌⠗⠂â " }, { "input": "mainstreamed", "output": "â â â ”⠌⠗⠂â â «" }, { "input": "mainstreaming", "output": "â â â ”⠌⠗⠂â â ¬" }, { "input": "mainstreams", "output": "â â â ”⠌⠗⠂â â Ž" }, { "input": "maintain", "output": "â â â ”â žâ â ”" }, { "input": "maintainability", "output": "â â â ”â žâ â ”â â ƒâ Šâ ‡â °â ½" }, { "input": "maintainable", "output": "â â â ”â žâ â ”â â ƒâ ‡â ‘" }, { "input": "maintained", "output": "â â â ”â žâ â ”â «" }, { "input": "maintainer", "output": "â â â ”â žâ â ”â »" }, { "input": "maintainers", "output": "â â â ”â žâ â ”⠻⠎" }, { "input": "maintaining", "output": "â â â ”â žâ â ”â ¬" }, { "input": "maintains", "output": "â â â ”â žâ â ”â Ž" }, { "input": "maintenance", "output": "â â â ”⠞⠢⠨⠑" }, { "input": "maize", "output": "â â â Šâ µâ ‘" }, { "input": "maizes", "output": "â â â Šâ µâ ‘â Ž" }, { "input": "majestic", "output": "â â â šâ ‘⠌⠊⠉" }, { "input": "majestically", "output": "â â â šâ ‘⠌⠊⠉â â ‡â ‡â ½" }, { "input": "majesties", "output": "â â â šâ ‘⠌⠊⠑⠎" }, { "input": "majesty", "output": "â â â šâ ‘⠌⠽" }, { "input": "major", "output": "â â â šâ •â —" }, { "input": "majored", "output": "â â â šâ •â —â «" }, { "input": "majorette", "output": "â â â šâ •â —â ‘â žâ žâ ‘" }, { "input": "majorettes", "output": "â â â šâ •â —â ‘â žâ žâ ‘â Ž" }, { "input": "majoring", "output": "â â â šâ •â —â ¬" }, { "input": "majorities", "output": "â â â šâ •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "majority", "output": "â â â šâ •â —â °â ½" }, { "input": "majorly", "output": "â â â šâ •⠗⠇⠽" }, { "input": "majors", "output": "â â â šâ •â —â Ž" }, { "input": "make", "output": "â â â …â ‘" }, { "input": "maker", "output": "â â â …â »" }, { "input": "makers", "output": "â â â …⠻⠎" }, { "input": "makes", "output": "â â â …â ‘â Ž" }, { "input": "makeshift", "output": "â â â …â ‘â ©â Šâ ‹â ž" }, { "input": "makeshifts", "output": "â â â …â ‘â ©â Šâ ‹â žâ Ž" }, { "input": "makeup", "output": "â â â …â ‘â ¥â " }, { "input": "makeups", "output": "â â â …â ‘â ¥â â Ž" }, { "input": "making", "output": "â â â …â ¬" }, { "input": "makings", "output": "â â â …⠬⠎" }, { "input": "maladies", "output": "â â â ‡â â ™â Šâ ‘â Ž" }, { "input": "maladjusted", "output": "â â â ‡â â ™â šâ ¥â Œâ «" }, { "input": "maladjustment", "output": "â â â ‡â â ™â šâ ¥â Œâ °â ž" }, { "input": "maladroit", "output": "â â â ‡â â ™â —â •â Šâ ž" }, { "input": "malady", "output": "â â â ‡â â ™â ½" }, { "input": "malaise", "output": "â â â ‡â â Šâ Žâ ‘" }, { "input": "malapropism", "output": "â â â ‡â â â —â •â â Šâ Žâ " }, { "input": "malapropisms", "output": "â â â ‡â â â —â •â â Šâ Žâ â Ž" }, { "input": "malaria", "output": "â â â ‡â œâ Šâ " }, { "input": "malarial", "output": "â â â ‡â œâ Šâ â ‡" }, { "input": "malarkey", "output": "â â â ‡â œâ …â ‘â ½" }, { "input": "malcontent", "output": "â â â ‡â ‰â •â â žâ ¢â ž" }, { "input": "malcontents", "output": "â â â ‡â ‰â •â â žâ ¢â žâ Ž" }, { "input": "male", "output": "â â â ‡â ‘" }, { "input": "malediction", "output": "â â â ‡â «â Šâ ‰â °â " }, { "input": "maledictions", "output": "â â â ‡â «â Šâ ‰â °â â Ž" }, { "input": "malefactor", "output": "â â â ‡â ‘â ‹â â ‰â žâ •â —" }, { "input": "malefactors", "output": "â â â ‡â ‘â ‹â â ‰â žâ •â —â Ž" }, { "input": "maleness", "output": "â â â ‡â ‘â °â Ž" }, { "input": "males", "output": "â â â ‡â ‘â Ž" }, { "input": "malevolence", "output": "â â â ‡â ‘⠧⠕⠇⠰⠑" }, { "input": "malevolent", "output": "â â â ‡â ‘⠧⠕⠇⠢⠞" }, { "input": "malevolently", "output": "â â â ‡â ‘⠧⠕⠇⠢⠞⠇⠽" }, { "input": "malfeasance", "output": "â â â ‡â ‹â ‚⠎⠨⠑" }, { "input": "malformation", "output": "â â â ‡â ¿â â â °â " }, { "input": "malformations", "output": "â â â ‡â ¿â â â °â â Ž" }, { "input": "malformed", "output": "â â â ‡â ¿â â «" }, { "input": "malfunction", "output": "â â â ‡â ‹â ¥â â ‰â °â " }, { "input": "malfunctioned", "output": "â â â ‡â ‹â ¥â â ‰â °â â «" }, { "input": "malfunctioning", "output": "â â â ‡â ‹â ¥â â ‰â °â â ¬" }, { "input": "malfunctions", "output": "â â â ‡â ‹â ¥â â ‰â °â â Ž" }, { "input": "malice", "output": "â â â ‡â Šâ ‰â ‘" }, { "input": "malicious", "output": "â â â ‡â Šâ ‰â Šâ ³â Ž" }, { "input": "maliciously", "output": "â â â ‡â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "malign", "output": "â â â ‡â Šâ ›â " }, { "input": "malignancies", "output": "â â â ‡â Šâ ›â â â â ‰â Šâ ‘â Ž" }, { "input": "malignancy", "output": "â â â ‡â Šâ ›â â â â ‰â ½" }, { "input": "malignant", "output": "â â â ‡â Šâ ›â â â â ž" }, { "input": "malignantly", "output": "â â â ‡â Šâ ›â â â â žâ ‡â ½" }, { "input": "maligned", "output": "â â â ‡â Šâ ›â â «" }, { "input": "maligning", "output": "â â â ‡â Šâ ›â â ¬" }, { "input": "malignity", "output": "â â â ‡â Šâ ›â â °â ½" }, { "input": "maligns", "output": "â â â ‡â Šâ ›â â Ž" }, { "input": "malinger", "output": "â â â ‡â ¬â »" }, { "input": "malingered", "output": "â â â ‡â ¬â »â «" }, { "input": "malingerer", "output": "â â â ‡â ¬â »â »" }, { "input": "malingerers", "output": "â â â ‡â ¬â »â »â Ž" }, { "input": "malingering", "output": "â â â ‡â ¬â »â ¬" }, { "input": "malingers", "output": "â â â ‡â ¬â »â Ž" }, { "input": "mall", "output": "â â â ‡â ‡" }, { "input": "mallard", "output": "â â â ‡â ‡â œâ ™" }, { "input": "mallards", "output": "â â â ‡â ‡â œâ ™â Ž" }, { "input": "malleability", "output": "â â â ‡â ‡â ‚⠃⠊⠇⠰⠽" }, { "input": "malleable", "output": "â â â ‡â ‡â ‚⠃⠇⠑" }, { "input": "mallet", "output": "â â â ‡â ‡â ‘â ž" }, { "input": "mallets", "output": "â â â ‡â ‡â ‘â žâ Ž" }, { "input": "mallow", "output": "â â â ‡â ‡â ª" }, { "input": "mallows", "output": "â â â ‡â ‡â ªâ Ž" }, { "input": "malls", "output": "â â â ‡â ‡â Ž" }, { "input": "malnourished", "output": "â â â ‡â â ³â —â Šâ ©â «" }, { "input": "malnutrition", "output": "â â â ‡â â ¥â žâ —â Šâ °â " }, { "input": "malodorous", "output": "â â â ‡â •⠙⠕⠗⠳⠎" }, { "input": "malpractice", "output": "â â â ‡â â —â â ‰â žâ Šâ ‰â ‘" }, { "input": "malpractices", "output": "â â â ‡â â —â â ‰â žâ Šâ ‰â ‘â Ž" }, { "input": "malt", "output": "â â â ‡â ž" }, { "input": "malted", "output": "â â â ‡â žâ «" }, { "input": "malteds", "output": "â â â ‡â žâ «â Ž" }, { "input": "malting", "output": "â â â ‡â žâ ¬" }, { "input": "maltreat", "output": "â â â ‡â žâ —â ‚â ž" }, { "input": "maltreated", "output": "â â â ‡â žâ —â ‚â žâ «" }, { "input": "maltreating", "output": "â â â ‡â žâ —â ‚â žâ ¬" }, { "input": "maltreatment", "output": "â â â ‡â žâ —â ‚â žâ °â ž" }, { "input": "maltreats", "output": "â â â ‡â žâ —â ‚â žâ Ž" }, { "input": "malts", "output": "â â â ‡â žâ Ž" }, { "input": "mama", "output": "â â â â " }, { "input": "mamas", "output": "â â â â â Ž" }, { "input": "mambo", "output": "â â â â ƒâ •" }, { "input": "mamboed", "output": "â â â â ƒâ •â «" }, { "input": "mamboing", "output": "â â â â ƒâ •â ¬" }, { "input": "mambos", "output": "â â â â ƒâ •â Ž" }, { "input": "mamma", "output": "â â â â â " }, { "input": "mammal", "output": "â â â â â â ‡" }, { "input": "mammalian", "output": "â â â â â â ‡â Šâ â " }, { "input": "mammalians", "output": "â â â â â â ‡â Šâ â â Ž" }, { "input": "mammals", "output": "â â â â â â ‡â Ž" }, { "input": "mammary", "output": "â â â â â œâ ½" }, { "input": "mammas", "output": "â â â â â â Ž" }, { "input": "mammogram", "output": "â â â â â •⠛⠗â â " }, { "input": "mammograms", "output": "â â â â â •⠛⠗â â â Ž" }, { "input": "mammography", "output": "â â â â â •⠛⠗â â â “â ½" }, { "input": "mammon", "output": "â â â â â •â " }, { "input": "mammoth", "output": "â â â â â •â ¹" }, { "input": "mammoths", "output": "â â â â â •⠹⠎" }, { "input": "man", "output": "â â â " }, { "input": "manacle", "output": "â â â â â ‰â ‡â ‘" }, { "input": "manacled", "output": "â â â â â ‰â ‡â «" }, { "input": "manacles", "output": "â â â â â ‰â ‡â ‘â Ž" }, { "input": "manacling", "output": "â â â â â ‰â ‡â ¬" }, { "input": "manage", "output": "â â â â â ›â ‘" }, { "input": "manageability", "output": "â â â â â ›â ‚⠃⠊⠇⠰⠽" }, { "input": "manageable", "output": "â â â â â ›â ‚⠃⠇⠑" }, { "input": "managed", "output": "â â â â â ›â «" }, { "input": "management", "output": "â â â â â ›â ‘â °â ž" }, { "input": "manager", "output": "â â â â â ›â »" }, { "input": "managerial", "output": "â â â â â ›â »â Šâ â ‡" }, { "input": "managers", "output": "â â â â â ›â »â Ž" }, { "input": "manages", "output": "â â â â â ›â ‘â Ž" }, { "input": "managing", "output": "â â â â â ›â ¬" }, { "input": "manatee", "output": "â â â â â žâ ‘â ‘" }, { "input": "manatees", "output": "â â â â â žâ ‘â ‘â Ž" }, { "input": "mandarin", "output": "â â ¯â œâ ”" }, { "input": "mandarins", "output": "â â ¯â œâ ”â Ž" }, { "input": "mandate", "output": "â â ¯â â žâ ‘" }, { "input": "mandated", "output": "â â ¯â â žâ «" }, { "input": "mandates", "output": "â â ¯â â žâ ‘â Ž" }, { "input": "mandating", "output": "â â ¯â â žâ ¬" }, { "input": "mandatory", "output": "â â ¯â â žâ •â —â ½" }, { "input": "mandible", "output": "â â ¯â Šâ ƒâ ‡â ‘" }, { "input": "mandibles", "output": "â â ¯â Šâ ƒâ ‡â ‘â Ž" }, { "input": "mandolin", "output": "â â ¯â •⠇⠔" }, { "input": "mandolins", "output": "â â ¯â •⠇⠔⠎" }, { "input": "mandrake", "output": "â â ¯â —â â …â ‘" }, { "input": "mandrakes", "output": "â â ¯â —â â …â ‘â Ž" }, { "input": "mandrill", "output": "â â ¯â —⠊⠇⠇" }, { "input": "mandrills", "output": "â â ¯â —⠊⠇⠇⠎" }, { "input": "mane", "output": "â â â â ‘" }, { "input": "manes", "output": "â â â â ‘â Ž" }, { "input": "maneuver", "output": "â â â â ‘⠥⠧⠻" }, { "input": "maneuverability", "output": "â â â â ‘⠥⠧⠻â â ƒâ Šâ ‡â °â ½" }, { "input": "maneuverable", "output": "â â â â ‘⠥⠧⠻â â ƒâ ‡â ‘" }, { "input": "maneuvered", "output": "â â â â ‘⠥⠧⠻⠫" }, { "input": "maneuvering", "output": "â â â â ‘⠥⠧⠻⠬" }, { "input": "maneuvers", "output": "â â â â ‘⠥⠧⠻⠎" }, { "input": "manful", "output": "â â â â °â ‡" }, { "input": "manfully", "output": "â â â â °â ‡â ‡â ½" }, { "input": "manganese", "output": "â â â â ›â â â ‘â Žâ ‘" }, { "input": "mange", "output": "â â â â ›â ‘" }, { "input": "manger", "output": "â â â â ›â »" }, { "input": "mangers", "output": "â â â â ›â »â Ž" }, { "input": "mangier", "output": "â â â â ›â Šâ »" }, { "input": "mangiest", "output": "â â â â ›â Šâ ‘â Œ" }, { "input": "mangle", "output": "â â â â ›â ‡â ‘" }, { "input": "mangled", "output": "â â â â ›â ‡â «" }, { "input": "mangles", "output": "â â â â ›â ‡â ‘â Ž" }, { "input": "mangling", "output": "â â â â ›â ‡â ¬" }, { "input": "mango", "output": "â â â â ›â •" }, { "input": "mangoes", "output": "â â â â ›â •â ‘â Ž" }, { "input": "mangos", "output": "â â â â ›â •â Ž" }, { "input": "mangrove", "output": "â â â â ›â —â •â §â ‘" }, { "input": "mangroves", "output": "â â â â ›â —â •â §â ‘â Ž" }, { "input": "mangy", "output": "â â â â ›â ½" }, { "input": "manhandle", "output": "â â â â “⠯⠇⠑" }, { "input": "manhandled", "output": "â â â â “⠯⠇⠫" }, { "input": "manhandles", "output": "â â â â “⠯⠇⠑⠎" }, { "input": "manhandling", "output": "â â â â “⠯⠇⠬" }, { "input": "manhole", "output": "â â â â “⠕⠇⠑" }, { "input": "manholes", "output": "â â â â “⠕⠇⠑⠎" }, { "input": "manhood", "output": "â â â â “â •â •â ™" }, { "input": "manhunt", "output": "â â â â “â ¥â â ž" }, { "input": "manhunts", "output": "â â â â “â ¥â â žâ Ž" }, { "input": "mania", "output": "â â â â Šâ " }, { "input": "maniac", "output": "â â â â Šâ â ‰" }, { "input": "maniacal", "output": "â â â â Šâ â ‰â â ‡" }, { "input": "maniacs", "output": "â â â â Šâ â ‰â Ž" }, { "input": "manias", "output": "â â â â Šâ â Ž" }, { "input": "manic", "output": "â â â â Šâ ‰" }, { "input": "manics", "output": "â â â â Šâ ‰â Ž" }, { "input": "manicure", "output": "â â â â Šâ ‰â ¥â —â ‘" }, { "input": "manicured", "output": "â â â â Šâ ‰â ¥â —â «" }, { "input": "manicures", "output": "â â â â Šâ ‰â ¥â —â ‘â Ž" }, { "input": "manicuring", "output": "â â â â Šâ ‰â ¥â —â ¬" }, { "input": "manicurist", "output": "â â â â Šâ ‰â ¥â —â Šâ Œ" }, { "input": "manicurists", "output": "â â â â Šâ ‰â ¥â —⠊⠌⠎" }, { "input": "manifest", "output": "â â â â Šâ ‹â ‘â Œ" }, { "input": "manifestation", "output": "â â â â Šâ ‹â ‘â Œâ â °â " }, { "input": "manifestations", "output": "â â â â Šâ ‹â ‘â Œâ â °â â Ž" }, { "input": "manifested", "output": "â â â â Šâ ‹â ‘⠌⠫" }, { "input": "manifesting", "output": "â â â â Šâ ‹â ‘⠌⠬" }, { "input": "manifestly", "output": "â â â â Šâ ‹â ‘⠌⠇⠽" }, { "input": "manifesto", "output": "â â â â Šâ ‹â ‘⠌⠕" }, { "input": "manifestoes", "output": "â â â â Šâ ‹â ‘⠌⠕⠑⠎" }, { "input": "manifestos", "output": "â â â â Šâ ‹â ‘⠌⠕⠎" }, { "input": "manifests", "output": "â â â â Šâ ‹â ‘⠌⠎" }, { "input": "manifold", "output": "â â â â Šâ ‹â •⠇⠙" }, { "input": "manifolded", "output": "â â â â Šâ ‹â •⠇⠙⠫" }, { "input": "manifolding", "output": "â â â â Šâ ‹â •⠇⠙⠬" }, { "input": "manifolds", "output": "â â â â Šâ ‹â •⠇⠙⠎" }, { "input": "manikin", "output": "â â â â Šâ …â ”" }, { "input": "manikins", "output": "â â â â Šâ …⠔⠎" }, { "input": "manipulate", "output": "â â â â Šâ â ¥â ‡â â žâ ‘" }, { "input": "manipulated", "output": "â â â â Šâ â ¥â ‡â â žâ «" }, { "input": "manipulates", "output": "â â â â Šâ â ¥â ‡â â žâ ‘â Ž" }, { "input": "manipulating", "output": "â â â â Šâ â ¥â ‡â â žâ ¬" }, { "input": "manipulation", "output": "â â â â Šâ â ¥â ‡â â °â " }, { "input": "manipulations", "output": "â â â â Šâ â ¥â ‡â â °â â Ž" }, { "input": "manipulative", "output": "â â â â Šâ â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "manipulator", "output": "â â â â Šâ â ¥â ‡â â žâ •â —" }, { "input": "manipulators", "output": "â â â â Šâ â ¥â ‡â â žâ •â —â Ž" }, { "input": "mankind", "output": "â â â â …⠔⠙" }, { "input": "manlier", "output": "â â â â ‡â Šâ »" }, { "input": "manliest", "output": "â â â â ‡â Šâ ‘â Œ" }, { "input": "manliness", "output": "â â â â ‡â Šâ °â Ž" }, { "input": "manly", "output": "â â â â ‡â ½" }, { "input": "manna", "output": "â â â â â " }, { "input": "manned", "output": "â â â â â «" }, { "input": "mannequin", "output": "â â â â â ‘⠟⠥⠔" }, { "input": "mannequins", "output": "â â â â â ‘⠟⠥⠔⠎" }, { "input": "manner", "output": "â â â â â »" }, { "input": "mannered", "output": "â â â â â »â «" }, { "input": "mannerism", "output": "â â â â â »â Šâ Žâ " }, { "input": "mannerisms", "output": "â â â â â »â Šâ Žâ â Ž" }, { "input": "mannerly", "output": "â â â â â »â ‡â ½" }, { "input": "manners", "output": "â â â â â »â Ž" }, { "input": "mannikin", "output": "â â â â â Šâ …â ”" }, { "input": "mannikins", "output": "â â â â â Šâ …⠔⠎" }, { "input": "manning", "output": "â â â â â ¬" }, { "input": "mannish", "output": "â â â â â Šâ ©" }, { "input": "mannishly", "output": "â â â â â Šâ ©â ‡â ½" }, { "input": "mannishness", "output": "â â â â â Šâ ©â °â Ž" }, { "input": "manor", "output": "â â â â •â —" }, { "input": "manorial", "output": "â â â â •â —â Šâ â ‡" }, { "input": "manors", "output": "â â â â •â —â Ž" }, { "input": "manpower", "output": "â â â â â ªâ »" }, { "input": "manqué", "output": "â â â â Ÿâ ¥â  â ˜â »â â ˜â ‰" }, { "input": "mans", "output": "â â â â Ž" }, { "input": "mansard", "output": "â â â â Žâ œâ ™" }, { "input": "mansards", "output": "â â â â Žâ œâ ™â Ž" }, { "input": "manse", "output": "â â â â Žâ ‘" }, { "input": "manservant", "output": "â â â â Žâ »â §â â â ž" }, { "input": "manses", "output": "â â â â Žâ ‘â Ž" }, { "input": "mansion", "output": "â â â â ¨â " }, { "input": "mansions", "output": "â â â â ¨â â Ž" }, { "input": "manslaughter", "output": "â â â â Žâ ‡â â ¥â £â žâ »" }, { "input": "mantel", "output": "â â â â žâ ‘â ‡" }, { "input": "mantelpiece", "output": "â â â â žâ ‘â ‡â â Šâ ‘⠉⠑" }, { "input": "mantelpieces", "output": "â â â â žâ ‘â ‡â â Šâ ‘⠉⠑⠎" }, { "input": "mantels", "output": "â â â â žâ ‘⠇⠎" }, { "input": "mantes", "output": "â â â â žâ ‘â Ž" }, { "input": "mantilla", "output": "â â â â žâ Šâ ‡â ‡â " }, { "input": "mantillas", "output": "â â â â žâ Šâ ‡â ‡â â Ž" }, { "input": "mantis", "output": "â â â â žâ Šâ Ž" }, { "input": "mantises", "output": "â â â â žâ Šâ Žâ ‘â Ž" }, { "input": "mantissa", "output": "â â â â žâ Šâ Žâ Žâ " }, { "input": "mantle", "output": "â â â â žâ ‡â ‘" }, { "input": "mantled", "output": "â â â â žâ ‡â «" }, { "input": "mantlepiece", "output": "â â â â žâ ‡â ‘â â Šâ ‘⠉⠑" }, { "input": "mantlepieces", "output": "â â â â žâ ‡â ‘â â Šâ ‘⠉⠑⠎" }, { "input": "mantles", "output": "â â â â žâ ‡â ‘â Ž" }, { "input": "mantling", "output": "â â â â žâ ‡â ¬" }, { "input": "mantra", "output": "â â â â žâ —â " }, { "input": "mantras", "output": "â â â â žâ —â â Ž" }, { "input": "manual", "output": "â â â â ¥â â ‡" }, { "input": "manually", "output": "â â â â ¥â â ‡â ‡â ½" }, { "input": "manuals", "output": "â â â â ¥â â ‡â Ž" }, { "input": "manufacture", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â ‘" }, { "input": "manufactured", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â «" }, { "input": "manufacturer", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â »" }, { "input": "manufacturers", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —⠻⠎" }, { "input": "manufactures", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "manufacturing", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â ¬" }, { "input": "manumit", "output": "â â â â ¥â â Šâ ž" }, { "input": "manumits", "output": "â â â â ¥â â Šâ žâ Ž" }, { "input": "manumitted", "output": "â â â â ¥â â Šâ žâ žâ «" }, { "input": "manumitting", "output": "â â â â ¥â â Šâ žâ žâ ¬" }, { "input": "manure", "output": "â â â â ¥â —â ‘" }, { "input": "manured", "output": "â â â â ¥â —â «" }, { "input": "manures", "output": "â â â â ¥â —â ‘â Ž" }, { "input": "manuring", "output": "â â â â ¥â —â ¬" }, { "input": "manuscript", "output": "â â â â ¥â Žâ ‰â —â Šâ â ž" }, { "input": "manuscripts", "output": "â â â â ¥â Žâ ‰â —â Šâ â žâ Ž" }, { "input": "many", "output": "â ¸â " }, { "input": "manège", "output": "â â â â  â ˜â »â â ¡â â £â ›â ‘" }, { "input": "map", "output": "â â â " }, { "input": "maple", "output": "â â â â ‡â ‘" }, { "input": "maples", "output": "â â â â ‡â ‘â Ž" }, { "input": "mapped", "output": "â â â â â «" }, { "input": "mapper", "output": "â â â â â »" }, { "input": "mapping", "output": "â â â â â ¬" }, { "input": "mappings", "output": "â â â â â ¬â Ž" }, { "input": "maps", "output": "â â â â Ž" }, { "input": "mar", "output": "â â œ" }, { "input": "marabou", "output": "â â œâ â ƒâ ³" }, { "input": "marabous", "output": "â â œâ â ƒâ ³â Ž" }, { "input": "maraca", "output": "â â œâ â ‰â " }, { "input": "maracas", "output": "â â œâ â ‰â â Ž" }, { "input": "marathon", "output": "â â œâ â ¹â •â " }, { "input": "marathoner", "output": "â â œâ â ¹â •â â »" }, { "input": "marathoners", "output": "â â œâ â ¹â •â â »â Ž" }, { "input": "marathons", "output": "â â œâ â ¹â •â â Ž" }, { "input": "maraud", "output": "â â œâ â ¥â ™" }, { "input": "marauded", "output": "â â œâ â ¥â ™â «" }, { "input": "marauder", "output": "â â œâ â ¥â ™â »" }, { "input": "marauders", "output": "â â œâ â ¥â ™â »â Ž" }, { "input": "marauding", "output": "â â œâ â ¥â ™â ¬" }, { "input": "marauds", "output": "â â œâ â ¥â ™â Ž" }, { "input": "marble", "output": "â â œâ ƒâ ‡â ‘" }, { "input": "marbled", "output": "â â œâ ƒâ ‡â «" }, { "input": "marbles", "output": "â â œâ ƒâ ‡â ‘â Ž" }, { "input": "marbling", "output": "â â œâ ƒâ ‡â ¬" }, { "input": "march", "output": "â â œâ ¡" }, { "input": "marched", "output": "â â œâ ¡â «" }, { "input": "marcher", "output": "â â œâ ¡â »" }, { "input": "marchers", "output": "â â œâ ¡â »â Ž" }, { "input": "marches", "output": "â â œâ ¡â ‘â Ž" }, { "input": "marching", "output": "â â œâ ¡â ¬" }, { "input": "marchioness", "output": "â â œâ ¡â Šâ •â °â Ž" }, { "input": "marchionesses", "output": "â â œâ ¡â Šâ •â °â Žâ ‘â Ž" }, { "input": "mare", "output": "â â œâ ‘" }, { "input": "mares", "output": "â â œâ ‘â Ž" }, { "input": "margarine", "output": "â â œâ ›â œâ ”â ‘" }, { "input": "margarita", "output": "â â œâ ›â œâ Šâ žâ " }, { "input": "margaritas", "output": "â â œâ ›â œâ Šâ žâ â Ž" }, { "input": "margin", "output": "â â œâ ›â ”" }, { "input": "marginal", "output": "â â œâ ›â ”â â ‡" }, { "input": "marginalia", "output": "â â œâ ›â ”â â ‡â Šâ " }, { "input": "marginally", "output": "â â œâ ›â ”â â ‡â ‡â ½" }, { "input": "margins", "output": "â â œâ ›â ”â Ž" }, { "input": "maria", "output": "â â œâ Šâ " }, { "input": "mariachi", "output": "â â œâ Šâ â ¡â Š" }, { "input": "mariachis", "output": "â â œâ Šâ â ¡â Šâ Ž" }, { "input": "marigold", "output": "â â œâ Šâ ›â •⠇⠙" }, { "input": "marigolds", "output": "â â œâ Šâ ›â •⠇⠙⠎" }, { "input": "marihuana", "output": "â â œâ Šâ “â ¥â â â " }, { "input": "marijuana", "output": "â â œâ Šâ šâ ¥â â â " }, { "input": "marimba", "output": "â â œâ Šâ â ƒâ " }, { "input": "marimbas", "output": "â â œâ Šâ â ƒâ â Ž" }, { "input": "marina", "output": "â â œâ ”â " }, { "input": "marinade", "output": "â â œâ ”â â ™â ‘" }, { "input": "marinaded", "output": "â â œâ ”â â ™â «" }, { "input": "marinades", "output": "â â œâ ”â â ™â ‘â Ž" }, { "input": "marinading", "output": "â â œâ ”â â ™â ¬" }, { "input": "marinas", "output": "â â œâ ”â â Ž" }, { "input": "marinate", "output": "â â œâ ”â â žâ ‘" }, { "input": "marinated", "output": "â â œâ ”â â žâ «" }, { "input": "marinates", "output": "â â œâ ”â â žâ ‘â Ž" }, { "input": "marinating", "output": "â â œâ ”â â žâ ¬" }, { "input": "marine", "output": "â â œâ ”â ‘" }, { "input": "mariner", "output": "â â œâ ”â »" }, { "input": "mariners", "output": "â â œâ ”⠻⠎" }, { "input": "marines", "output": "â â œâ ”â ‘â Ž" }, { "input": "marionette", "output": "â â œâ Šâ •â â ‘â žâ žâ ‘" }, { "input": "marionettes", "output": "â â œâ Šâ •â â ‘â žâ žâ ‘â Ž" }, { "input": "marital", "output": "â â œâ Šâ žâ â ‡" }, { "input": "maritime", "output": "â â œâ Šâ â ž" }, { "input": "marjoram", "output": "â â œâ šâ •â —â â " }, { "input": "mark", "output": "â â œâ …" }, { "input": "markdown", "output": "â â œâ …⠙⠪â " }, { "input": "markdowns", "output": "â â œâ …⠙⠪â â Ž" }, { "input": "marked", "output": "â â œâ …â «" }, { "input": "markedly", "output": "â â œâ …⠫⠇⠽" }, { "input": "marker", "output": "â â œâ …â »" }, { "input": "markers", "output": "â â œâ …⠻⠎" }, { "input": "market", "output": "â â œâ …â ‘â ž" }, { "input": "marketability", "output": "â â œâ …â ‘â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "marketable", "output": "â â œâ …â ‘â žâ â ƒâ ‡â ‘" }, { "input": "marketed", "output": "â â œâ …â ‘â žâ «" }, { "input": "marketer", "output": "â â œâ …â ‘â žâ »" }, { "input": "marketers", "output": "â â œâ …⠑⠞⠻⠎" }, { "input": "marketing", "output": "â â œâ …â ‘â žâ ¬" }, { "input": "marketplace", "output": "â â œâ …â ‘â žâ â ‡â â ‰â ‘" }, { "input": "marketplaces", "output": "â â œâ …â ‘â žâ â ‡â â ‰â ‘â Ž" }, { "input": "markets", "output": "â â œâ …â ‘â žâ Ž" }, { "input": "marking", "output": "â â œâ …â ¬" }, { "input": "markings", "output": "â â œâ …⠬⠎" }, { "input": "marks", "output": "â â œâ …â Ž" }, { "input": "marksman", "output": "â â œâ …â Žâ â â " }, { "input": "marksmanship", "output": "â â œâ …â Žâ â â â ©â Šâ " }, { "input": "marksmen", "output": "â â œâ …â Žâ â ¢" }, { "input": "markup", "output": "â â œâ …â ¥â " }, { "input": "markups", "output": "â â œâ …â ¥â â Ž" }, { "input": "marlin", "output": "â â œâ ‡â ”" }, { "input": "marlins", "output": "â â œâ ‡â ”â Ž" }, { "input": "marmalade", "output": "â â œâ â â ‡â â ™â ‘" }, { "input": "marmoset", "output": "â â œâ â •â Žâ ‘â ž" }, { "input": "marmosets", "output": "â â œâ â •â Žâ ‘â žâ Ž" }, { "input": "marmot", "output": "â â œâ â •â ž" }, { "input": "marmots", "output": "â â œâ â •â žâ Ž" }, { "input": "maroon", "output": "â â œâ •â •â " }, { "input": "marooned", "output": "â â œâ •â •â â «" }, { "input": "marooning", "output": "â â œâ •â •â â ¬" }, { "input": "maroons", "output": "â â œâ •â •â â Ž" }, { "input": "marquee", "output": "â â œâ Ÿâ ¥â ‘â ‘" }, { "input": "marquees", "output": "â â œâ Ÿâ ¥â ‘â ‘â Ž" }, { "input": "marquess", "output": "â â œâ Ÿâ ¥â ‘â Žâ Ž" }, { "input": "marquesses", "output": "â â œâ Ÿâ ¥â ‘â Žâ Žâ ‘â Ž" }, { "input": "marquetry", "output": "â â œâ Ÿâ ¥â ‘â žâ —â ½" }, { "input": "marquis", "output": "â â œâ Ÿâ ¥â Šâ Ž" }, { "input": "marquise", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘" }, { "input": "marquises", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘â Ž" }, { "input": "marred", "output": "â â œâ —â «" }, { "input": "marriage", "output": "â â œâ —â Šâ â ›â ‘" }, { "input": "marriageable", "output": "â â œâ —â Šâ â ›â ‚⠃⠇⠑" }, { "input": "marriages", "output": "â â œâ —â Šâ â ›â ‘â Ž" }, { "input": "married", "output": "â â œâ —â Šâ «" }, { "input": "marrieds", "output": "â â œâ —â Šâ «â Ž" }, { "input": "marries", "output": "â â œâ —â Šâ ‘â Ž" }, { "input": "marring", "output": "â â œâ —â ¬" }, { "input": "marrow", "output": "â â œâ —â ª" }, { "input": "marrows", "output": "â â œâ —⠪⠎" }, { "input": "marry", "output": "â â œâ —â ½" }, { "input": "marrying", "output": "â â œâ —⠽⠬" }, { "input": "mars", "output": "â â œâ Ž" }, { "input": "marsh", "output": "â â œâ ©" }, { "input": "marshal", "output": "â â œâ ©â â ‡" }, { "input": "marshaled", "output": "â â œâ ©â â ‡â «" }, { "input": "marshaling", "output": "â â œâ ©â â ‡â ¬" }, { "input": "marshalled", "output": "â â œâ ©â â ‡â ‡â «" }, { "input": "marshalling", "output": "â â œâ ©â â ‡â ‡â ¬" }, { "input": "marshals", "output": "â â œâ ©â â ‡â Ž" }, { "input": "marshes", "output": "â â œâ ©â ‘â Ž" }, { "input": "marshier", "output": "â â œâ ©â Šâ »" }, { "input": "marshiest", "output": "â â œâ ©â Šâ ‘â Œ" }, { "input": "marshmallow", "output": "â â œâ ©â â â ‡â ‡â ª" }, { "input": "marshmallows", "output": "â â œâ ©â â â ‡â ‡â ªâ Ž" }, { "input": "marshy", "output": "â â œâ ©â ½" }, { "input": "marsupial", "output": "â â œâ Žâ ¥â â Šâ â ‡" }, { "input": "marsupials", "output": "â â œâ Žâ ¥â â Šâ â ‡â Ž" }, { "input": "mart", "output": "â â œâ ž" }, { "input": "marten", "output": "â â œâ žâ ¢" }, { "input": "martens", "output": "â â œâ žâ ¢â Ž" }, { "input": "martial", "output": "â â œâ žâ Šâ â ‡" }, { "input": "martin", "output": "â â œâ žâ ”" }, { "input": "martinet", "output": "â â œâ žâ ”â ‘â ž" }, { "input": "martinets", "output": "â â œâ žâ ”â ‘â žâ Ž" }, { "input": "martini", "output": "â â œâ žâ ”â Š" }, { "input": "martinis", "output": "â â œâ žâ ”â Šâ Ž" }, { "input": "martins", "output": "â â œâ žâ ”â Ž" }, { "input": "marts", "output": "â â œâ žâ Ž" }, { "input": "martyr", "output": "â â œâ žâ ½â —" }, { "input": "martyrdom", "output": "â â œâ žâ ½â —⠙⠕â " }, { "input": "martyred", "output": "â â œâ žâ ½â —â «" }, { "input": "martyring", "output": "â â œâ žâ ½â —â ¬" }, { "input": "martyrs", "output": "â â œâ žâ ½â —â Ž" }, { "input": "marvel", "output": "â â œâ §â ‘â ‡" }, { "input": "marveled", "output": "â â œâ §â ‘⠇⠫" }, { "input": "marveling", "output": "â â œâ §â ‘⠇⠬" }, { "input": "marvelled", "output": "â â œâ §â ‘⠇⠇⠫" }, { "input": "marvelling", "output": "â â œâ §â ‘⠇⠇⠬" }, { "input": "marvellously", "output": "â â œâ §â ‘⠇⠇⠳⠎⠇⠽" }, { "input": "marvelous", "output": "â â œâ §â ‘⠇⠳⠎" }, { "input": "marvelously", "output": "â â œâ §â ‘⠇⠳⠎⠇⠽" }, { "input": "marvels", "output": "â â œâ §â ‘⠇⠎" }, { "input": "marzipan", "output": "â â œâ µâ Šâ â â " }, { "input": "mas", "output": "â â â Ž" }, { "input": "mascara", "output": "â â â Žâ ‰â œâ " }, { "input": "mascaraed", "output": "â â â Žâ ‰â œâ â «" }, { "input": "mascaraing", "output": "â â â Žâ ‰â œâ â ¬" }, { "input": "mascaras", "output": "â â â Žâ ‰â œâ â Ž" }, { "input": "mascot", "output": "â â â Žâ ‰â •â ž" }, { "input": "mascots", "output": "â â â Žâ ‰â •â žâ Ž" }, { "input": "masculine", "output": "â â â Žâ ‰â ¥â ‡â ”â ‘" }, { "input": "masculines", "output": "â â â Žâ ‰â ¥â ‡â ”â ‘â Ž" }, { "input": "masculinity", "output": "â â â Žâ ‰â ¥â ‡â ”â °â ½" }, { "input": "mash", "output": "â â â ©" }, { "input": "mashed", "output": "â â â ©â «" }, { "input": "masher", "output": "â â â ©â »" }, { "input": "mashers", "output": "â â â ©â »â Ž" }, { "input": "mashes", "output": "â â â ©â ‘â Ž" }, { "input": "mashing", "output": "â â â ©â ¬" }, { "input": "mask", "output": "â â â Žâ …" }, { "input": "masked", "output": "â â â Žâ …â «" }, { "input": "masking", "output": "â â â Žâ …â ¬" }, { "input": "masks", "output": "â â â Žâ …â Ž" }, { "input": "masochism", "output": "â â â Žâ •â ¡â Šâ Žâ " }, { "input": "masochist", "output": "â â â Žâ •â ¡â Šâ Œ" }, { "input": "masochistic", "output": "â â â Žâ •⠡⠊⠌⠊⠉" }, { "input": "masochists", "output": "â â â Žâ •⠡⠊⠌⠎" }, { "input": "mason", "output": "â â â Žâ •â " }, { "input": "masonic", "output": "â â â Žâ •â â Šâ ‰" }, { "input": "masonry", "output": "â â â Žâ •â â —â ½" }, { "input": "masons", "output": "â â â Žâ •â â Ž" }, { "input": "masque", "output": "â â â Žâ Ÿâ ¥â ‘" }, { "input": "masquerade", "output": "â â â Žâ Ÿâ ¥â »â â ™â ‘" }, { "input": "masqueraded", "output": "â â â Žâ Ÿâ ¥â »â â ™â «" }, { "input": "masquerader", "output": "â â â Žâ Ÿâ ¥â »â â ™â »" }, { "input": "masqueraders", "output": "â â â Žâ Ÿâ ¥â »â â ™â »â Ž" }, { "input": "masquerades", "output": "â â â Žâ Ÿâ ¥â »â â ™â ‘â Ž" }, { "input": "masquerading", "output": "â â â Žâ Ÿâ ¥â »â â ™â ¬" }, { "input": "masques", "output": "â â â Žâ Ÿâ ¥â ‘â Ž" }, { "input": "mass", "output": "â â â Žâ Ž" }, { "input": "massacre", "output": "â â â Žâ Žâ â ‰â —â ‘" }, { "input": "massacred", "output": "â â â Žâ Žâ â ‰â —â «" }, { "input": "massacres", "output": "â â â Žâ Žâ â ‰â —â ‘â Ž" }, { "input": "massacring", "output": "â â â Žâ Žâ â ‰â —â ¬" }, { "input": "massage", "output": "â â â Žâ Žâ â ›â ‘" }, { "input": "massaged", "output": "â â â Žâ Žâ â ›â «" }, { "input": "massages", "output": "â â â Žâ Žâ â ›â ‘â Ž" }, { "input": "massaging", "output": "â â â Žâ Žâ â ›â ¬" }, { "input": "massed", "output": "â â â Žâ Žâ «" }, { "input": "masses", "output": "â â â Žâ Žâ ‘â Ž" }, { "input": "masseur", "output": "â â â Žâ Žâ ‘⠥⠗" }, { "input": "masseurs", "output": "â â â Žâ Žâ ‘⠥⠗⠎" }, { "input": "masseuse", "output": "â â â Žâ Žâ ‘⠥⠎⠑" }, { "input": "masseuses", "output": "â â â Žâ Žâ ‘⠥⠎⠑⠎" }, { "input": "massing", "output": "â â â Žâ Žâ ¬" }, { "input": "massive", "output": "â â â Žâ Žâ Šâ §â ‘" }, { "input": "massively", "output": "â â â Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "massiveness", "output": "â â â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "mast", "output": "â â â Œ" }, { "input": "mastectomies", "output": "â â â Œâ ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "mastectomy", "output": "â â â Œâ ‘⠉⠞⠕â â ½" }, { "input": "master", "output": "â â â Œâ »" }, { "input": "mastered", "output": "â â â Œâ »â «" }, { "input": "masterful", "output": "â â â Œâ »â °â ‡" }, { "input": "masterfully", "output": "â â â Œâ »â °â ‡â ‡â ½" }, { "input": "mastering", "output": "â â â Œâ »â ¬" }, { "input": "masterly", "output": "â â â Œâ »â ‡â ½" }, { "input": "mastermind", "output": "â â â Œâ »â â ”â ™" }, { "input": "masterminded", "output": "â â â Œâ »â â ”⠙⠫" }, { "input": "masterminding", "output": "â â â Œâ »â â ”⠙⠬" }, { "input": "masterminds", "output": "â â â Œâ »â â ”⠙⠎" }, { "input": "masterpiece", "output": "â â â Œâ »â â Šâ ‘⠉⠑" }, { "input": "masterpieces", "output": "â â â Œâ »â â Šâ ‘⠉⠑⠎" }, { "input": "masters", "output": "â â â Œâ »â Ž" }, { "input": "masterstroke", "output": "â â â Œâ »â Œâ —â •â …â ‘" }, { "input": "masterstrokes", "output": "â â â Œâ »â Œâ —â •â …â ‘â Ž" }, { "input": "masterwork", "output": "â â â Œâ »â â º" }, { "input": "masterworks", "output": "â â â Œâ »â â ºâ Ž" }, { "input": "mastery", "output": "â â â Œâ »â ½" }, { "input": "masthead", "output": "â â â Œâ “â ‚â ™" }, { "input": "mastheads", "output": "â â â Œâ “⠂⠙⠎" }, { "input": "masticate", "output": "â â â Œâ Šâ ‰â â žâ ‘" }, { "input": "masticated", "output": "â â â Œâ Šâ ‰â â žâ «" }, { "input": "masticates", "output": "â â â Œâ Šâ ‰â â žâ ‘â Ž" }, { "input": "masticating", "output": "â â â Œâ Šâ ‰â â žâ ¬" }, { "input": "mastication", "output": "â â â Œâ Šâ ‰â â °â " }, { "input": "mastiff", "output": "â â â Œâ Šâ ‹â ‹" }, { "input": "mastiffs", "output": "â â â Œâ Šâ –â Ž" }, { "input": "mastodon", "output": "â â â Œâ •⠙⠕â " }, { "input": "mastodons", "output": "â â â Œâ •⠙⠕â â Ž" }, { "input": "mastoid", "output": "â â â Œâ •â Šâ ™" }, { "input": "mastoids", "output": "â â â Œâ •⠊⠙⠎" }, { "input": "masts", "output": "â â â Œâ Ž" }, { "input": "masturbate", "output": "â â â Œâ ¥â —â ƒâ â žâ ‘" }, { "input": "masturbated", "output": "â â â Œâ ¥â —â ƒâ â žâ «" }, { "input": "masturbates", "output": "â â â Œâ ¥â —â ƒâ â žâ ‘â Ž" }, { "input": "masturbating", "output": "â â â Œâ ¥â —â ƒâ â žâ ¬" }, { "input": "masturbation", "output": "â â â Œâ ¥â —â ƒâ â °â " }, { "input": "mat", "output": "â â â ž" }, { "input": "matador", "output": "â â â žâ â ™â •â —" }, { "input": "matadors", "output": "â â â žâ â ™â •â —â Ž" }, { "input": "match", "output": "â â â žâ ¡" }, { "input": "matchbook", "output": "â â â žâ ¡â ƒâ •â •â …" }, { "input": "matchbooks", "output": "â â â žâ ¡â ƒâ •â •â …â Ž" }, { "input": "matchbox", "output": "â â â žâ ¡â ƒâ •â ­" }, { "input": "matchboxes", "output": "â â â žâ ¡â ƒâ •â ­â ‘â Ž" }, { "input": "matched", "output": "â â â žâ ¡â «" }, { "input": "matches", "output": "â â â žâ ¡â ‘â Ž" }, { "input": "matching", "output": "â â â žâ ¡â ¬" }, { "input": "matchless", "output": "â â â žâ ¡â ¨â Ž" }, { "input": "matchmaker", "output": "â â â žâ ¡â â â …â »" }, { "input": "matchmakers", "output": "â â â žâ ¡â â â …⠻⠎" }, { "input": "matchmaking", "output": "â â â žâ ¡â â â …â ¬" }, { "input": "matchstick", "output": "â â â žâ ¡â Œâ Šâ ‰â …" }, { "input": "matchsticks", "output": "â â â žâ ¡â Œâ Šâ ‰â …â Ž" }, { "input": "mate", "output": "â â â žâ ‘" }, { "input": "mated", "output": "â â â žâ «" }, { "input": "material", "output": "â â â žâ »â Šâ â ‡" }, { "input": "materialism", "output": "â â â žâ »â Šâ â ‡â Šâ Žâ " }, { "input": "materialist", "output": "â â â žâ »â Šâ â ‡â Šâ Œ" }, { "input": "materialistic", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "materialistically", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "materialists", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ Ž" }, { "input": "materialization", "output": "â â â žâ »â Šâ â ‡â Šâ µâ â °â " }, { "input": "materialize", "output": "â â â žâ »â Šâ â ‡â Šâ µâ ‘" }, { "input": "materialized", "output": "â â â žâ »â Šâ â ‡â Šâ µâ «" }, { "input": "materializes", "output": "â â â žâ »â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "materializing", "output": "â â â žâ »â Šâ â ‡â Šâ µâ ¬" }, { "input": "materially", "output": "â â â žâ »â Šâ â ‡â ‡â ½" }, { "input": "materials", "output": "â â â žâ »â Šâ â ‡â Ž" }, { "input": "maternal", "output": "â â â žâ »â â â ‡" }, { "input": "maternally", "output": "â â â žâ »â â â ‡â ‡â ½" }, { "input": "maternity", "output": "â â â žâ »â â °â ½" }, { "input": "mates", "output": "â â â žâ ‘â Ž" }, { "input": "math", "output": "â â â ¹" }, { "input": "mathematical", "output": "â â â ®â â â žâ Šâ ‰â â ‡" }, { "input": "mathematically", "output": "â â â ®â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "mathematician", "output": "â â â ®â â â žâ Šâ ‰â Šâ â " }, { "input": "mathematicians", "output": "â â â ®â â â žâ Šâ ‰â Šâ â â Ž" }, { "input": "mathematics", "output": "â â â ®â â â žâ Šâ ‰â Ž" }, { "input": "mating", "output": "â â â žâ ¬" }, { "input": "matins", "output": "â â â žâ ”â Ž" }, { "input": "matinée", "output": "â â â žâ ”⠠⠘⠻â â ˜â ‰â ‘" }, { "input": "matinées", "output": "â â â žâ ”⠠⠘⠻â â ˜â ‰â ‘â Ž" }, { "input": "matriarch", "output": "â â â žâ —⠊⠜⠡" }, { "input": "matriarchal", "output": "â â â žâ —⠊⠜⠡â â ‡" }, { "input": "matriarchies", "output": "â â â žâ —⠊⠜⠡⠊⠑⠎" }, { "input": "matriarchs", "output": "â â â žâ —⠊⠜⠡⠎" }, { "input": "matriarchy", "output": "â â â žâ —⠊⠜⠡⠽" }, { "input": "matrices", "output": "â â â žâ —⠊⠉⠑⠎" }, { "input": "matricide", "output": "â â â žâ —⠊⠉⠊⠙⠑" }, { "input": "matricides", "output": "â â â žâ —⠊⠉⠊⠙⠑⠎" }, { "input": "matriculate", "output": "â â â žâ —⠊⠉⠥⠇â â žâ ‘" }, { "input": "matriculated", "output": "â â â žâ —⠊⠉⠥⠇â â žâ «" }, { "input": "matriculates", "output": "â â â žâ —⠊⠉⠥⠇â â žâ ‘â Ž" }, { "input": "matriculating", "output": "â â â žâ —⠊⠉⠥⠇â â žâ ¬" }, { "input": "matriculation", "output": "â â â žâ —⠊⠉⠥⠇â â °â " }, { "input": "matrimonial", "output": "â â â žâ —â Šâ â •â â Šâ â ‡" }, { "input": "matrimony", "output": "â â â žâ —â Šâ â •â â ½" }, { "input": "matrix", "output": "â â â žâ —â Šâ ­" }, { "input": "matrixes", "output": "â â â žâ —â Šâ ­â ‘â Ž" }, { "input": "matron", "output": "â â â žâ —â •â " }, { "input": "matronly", "output": "â â â žâ —â •â â ‡â ½" }, { "input": "matrons", "output": "â â â žâ —â •â â Ž" }, { "input": "mats", "output": "â â â žâ Ž" }, { "input": "matt", "output": "â â â žâ ž" }, { "input": "matte", "output": "â â â žâ žâ ‘" }, { "input": "matted", "output": "â â â žâ žâ «" }, { "input": "matter", "output": "â â â žâ žâ »" }, { "input": "mattered", "output": "â â â žâ žâ »â «" }, { "input": "mattering", "output": "â â â žâ žâ »â ¬" }, { "input": "matters", "output": "â â â žâ žâ »â Ž" }, { "input": "mattes", "output": "â â â žâ žâ ‘â Ž" }, { "input": "matting", "output": "â â â žâ žâ ¬" }, { "input": "mattock", "output": "â â â žâ žâ •⠉⠅" }, { "input": "mattocks", "output": "â â â žâ žâ •⠉⠅⠎" }, { "input": "mattress", "output": "â â â žâ žâ —â ‘â Žâ Ž" }, { "input": "mattresses", "output": "â â â žâ žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "matts", "output": "â â â žâ žâ Ž" }, { "input": "maturation", "output": "â â â žâ ¥â —â â °â " }, { "input": "mature", "output": "â â â žâ ¥â —â ‘" }, { "input": "matured", "output": "â â â žâ ¥â —â «" }, { "input": "maturely", "output": "â â â žâ ¥â —⠑⠇⠽" }, { "input": "maturer", "output": "â â â žâ ¥â —â »" }, { "input": "matures", "output": "â â â žâ ¥â —â ‘â Ž" }, { "input": "maturest", "output": "â â â žâ ¥â —â ‘â Œ" }, { "input": "maturing", "output": "â â â žâ ¥â —â ¬" }, { "input": "maturities", "output": "â â â žâ ¥â —â Šâ žâ Šâ ‘â Ž" }, { "input": "maturity", "output": "â â â žâ ¥â —â °â ½" }, { "input": "matzo", "output": "â â â žâ µâ •" }, { "input": "matzoh", "output": "â â â žâ µâ •â “" }, { "input": "matzohs", "output": "â â â žâ µâ •â “â Ž" }, { "input": "matzos", "output": "â â â žâ µâ •â Ž" }, { "input": "matzot", "output": "â â â žâ µâ •â ž" }, { "input": "matzoth", "output": "â â â žâ µâ •â ¹" }, { "input": "matériel", "output": "â â â žâ  â ˜â »â â ˜â ‰â —â Šâ ‘â ‡" }, { "input": "maudlin", "output": "â â â ¥â ™â ‡â ”" }, { "input": "maul", "output": "â â â ¥â ‡" }, { "input": "mauled", "output": "â â â ¥â ‡â «" }, { "input": "mauling", "output": "â â â ¥â ‡â ¬" }, { "input": "mauls", "output": "â â â ¥â ‡â Ž" }, { "input": "maunder", "output": "â â â ¥â â ™â »" }, { "input": "maundered", "output": "â â â ¥â â ™â »â «" }, { "input": "maundering", "output": "â â â ¥â â ™â »â ¬" }, { "input": "maunders", "output": "â â â ¥â â ™â »â Ž" }, { "input": "mausolea", "output": "â â â ¥â Žâ •⠇⠑â " }, { "input": "mausoleum", "output": "â â â ¥â Žâ •⠇⠑⠥â " }, { "input": "mausoleums", "output": "â â â ¥â Žâ •⠇⠑⠥â â Ž" }, { "input": "mauve", "output": "â â â ¥â §â ‘" }, { "input": "maven", "output": "â â â §â ¢" }, { "input": "mavens", "output": "â â â §â ¢â Ž" }, { "input": "maverick", "output": "â â â §â »â Šâ ‰â …" }, { "input": "mavericks", "output": "â â â §â »â Šâ ‰â …â Ž" }, { "input": "mavin", "output": "â â â §â ”" }, { "input": "mavins", "output": "â â â §â ”â Ž" }, { "input": "maw", "output": "â â â º" }, { "input": "mawkish", "output": "â â â ºâ …â Šâ ©" }, { "input": "mawkishly", "output": "â â â ºâ …⠊⠩⠇⠽" }, { "input": "maws", "output": "â â â ºâ Ž" }, { "input": "maxed", "output": "â â â ­â «" }, { "input": "maxes", "output": "â â â ­â ‘â Ž" }, { "input": "maxilla", "output": "â â â ­â Šâ ‡â ‡â " }, { "input": "maxillae", "output": "â â â ­â Šâ ‡â ‡â â ‘" }, { "input": "maxillary", "output": "â â â ­â Šâ ‡â ‡â œâ ½" }, { "input": "maxillas", "output": "â â â ­â Šâ ‡â ‡â â Ž" }, { "input": "maxim", "output": "â â â ­â Šâ " }, { "input": "maxima", "output": "â â â ­â Šâ â " }, { "input": "maximal", "output": "â â â ­â Šâ â â ‡" }, { "input": "maximally", "output": "â â â ­â Šâ â â ‡â ‡â ½" }, { "input": "maximization", "output": "â â â ­â Šâ â Šâ µâ â °â " }, { "input": "maximize", "output": "â â â ­â Šâ â Šâ µâ ‘" }, { "input": "maximized", "output": "â â â ­â Šâ â Šâ µâ «" }, { "input": "maximizes", "output": "â â â ­â Šâ â Šâ µâ ‘â Ž" }, { "input": "maximizing", "output": "â â â ­â Šâ â Šâ µâ ¬" }, { "input": "maxims", "output": "â â â ­â Šâ â Ž" }, { "input": "maximum", "output": "â â â ­â Šâ â ¥â " }, { "input": "maximums", "output": "â â â ­â Šâ â ¥â â Ž" }, { "input": "maxing", "output": "â â â ­â ¬" }, { "input": "may", "output": "â â â ½" }, { "input": "maybe", "output": "â â â ½â ƒâ ‘" }, { "input": "maybes", "output": "â â â ½â ƒâ ‘â Ž" }, { "input": "mayday", "output": "â â â ½â â ™" }, { "input": "maydays", "output": "â â â ½â â ™â Ž" }, { "input": "mayflies", "output": "â â â ½â ‹â ‡â Šâ ‘â Ž" }, { "input": "mayflower", "output": "â â â ½â ‹â ‡â ªâ »" }, { "input": "mayflowers", "output": "â â â ½â ‹â ‡â ªâ »â Ž" }, { "input": "mayfly", "output": "â â â ½â ‹â ‡â ½" }, { "input": "mayhem", "output": "â â â ½â “â ‘â " }, { "input": "mayo", "output": "â â â ½â •" }, { "input": "mayonnaise", "output": "â â â ½â •â â â â Šâ Žâ ‘" }, { "input": "mayor", "output": "â â â ½â •â —" }, { "input": "mayoral", "output": "â â â ½â •â —â â ‡" }, { "input": "mayoralty", "output": "â â â ½â •â —â â ‡â žâ ½" }, { "input": "mayors", "output": "â â â ½â •â —â Ž" }, { "input": "maypole", "output": "â â â ½â â •⠇⠑" }, { "input": "maypoles", "output": "â â â ½â â •⠇⠑⠎" }, { "input": "maze", "output": "â â â µâ ‘" }, { "input": "mazes", "output": "â â â µâ ‘â Ž" }, { "input": "mazourka", "output": "â â â µâ ³â —â …â " }, { "input": "mazourkas", "output": "â â â µâ ³â —â …â â Ž" }, { "input": "mazurka", "output": "â â â µâ ¥â —â …â " }, { "input": "mazurkas", "output": "â â â µâ ¥â —â …â â Ž" }, { "input": "me", "output": "â â ‘" }, { "input": "mead", "output": "â â ‚â ™" }, { "input": "meadow", "output": "â â ‚⠙⠪" }, { "input": "meadowlark", "output": "â â ‚⠙⠪⠇⠜⠅" }, { "input": "meadowlarks", "output": "â â ‚⠙⠪⠇⠜⠅⠎" }, { "input": "meadows", "output": "â â ‚⠙⠪⠎" }, { "input": "meager", "output": "â â ‚⠛⠻" }, { "input": "meagerly", "output": "â â ‚⠛⠻⠇⠽" }, { "input": "meagerness", "output": "â â ‚⠛⠻⠰⠎" }, { "input": "meal", "output": "â â ‚â ‡" }, { "input": "mealier", "output": "â â ‚⠇⠊⠻" }, { "input": "mealiest", "output": "â â ‚⠇⠊⠑⠌" }, { "input": "meals", "output": "â â ‚⠇⠎" }, { "input": "mealtime", "output": "â â ‚â ‡â â ž" }, { "input": "mealtimes", "output": "â â ‚â ‡â â žâ Ž" }, { "input": "mealy", "output": "â â ‚⠇⠽" }, { "input": "mean", "output": "â â ‚â " }, { "input": "meander", "output": "â â ‘⠯⠻" }, { "input": "meandered", "output": "â â ‘⠯⠻⠫" }, { "input": "meandering", "output": "â â ‘⠯⠻⠬" }, { "input": "meanders", "output": "â â ‘⠯⠻⠎" }, { "input": "meaner", "output": "â â ‚â â »" }, { "input": "meanest", "output": "â â ‚â â ‘â Œ" }, { "input": "meaning", "output": "â â ‚â â ¬" }, { "input": "meaningful", "output": "â â ‚â â ¬â °â ‡" }, { "input": "meaningfully", "output": "â â ‚â â ¬â °â ‡â ‡â ½" }, { "input": "meaningless", "output": "â â ‚â â ¬â ¨â Ž" }, { "input": "meanings", "output": "â â ‚â â ¬â Ž" }, { "input": "meanly", "output": "â â ‚â â ‡â ½" }, { "input": "meanness", "output": "â â ‚â â °â Ž" }, { "input": "means", "output": "â â ‚â â Ž" }, { "input": "meant", "output": "â â ‚â â ž" }, { "input": "meantime", "output": "â â ‚â â â ž" }, { "input": "meanwhile", "output": "â â ‚â â ±â Šâ ‡â ‘" }, { "input": "measles", "output": "â â ‚⠎⠇⠑⠎" }, { "input": "measlier", "output": "â â ‚⠎⠇⠊⠻" }, { "input": "measliest", "output": "â â ‚⠎⠇⠊⠑⠌" }, { "input": "measly", "output": "â â ‚⠎⠇⠽" }, { "input": "measurable", "output": "â â ‚⠎⠥⠗â â ƒâ ‡â ‘" }, { "input": "measurably", "output": "â â ‚⠎⠥⠗â â ƒâ ‡â ½" }, { "input": "measure", "output": "â â ‚⠎⠥⠗⠑" }, { "input": "measured", "output": "â â ‚⠎⠥⠗⠫" }, { "input": "measureless", "output": "â â ‚⠎⠥⠗⠑⠨⠎" }, { "input": "measurement", "output": "â â ‚⠎⠥⠗⠑⠰⠞" }, { "input": "measurements", "output": "â â ‚⠎⠥⠗⠑⠰⠞⠎" }, { "input": "measures", "output": "â â ‚⠎⠥⠗⠑⠎" }, { "input": "measuring", "output": "â â ‚⠎⠥⠗⠬" }, { "input": "meat", "output": "â â ‚â ž" }, { "input": "meatball", "output": "â â ‚â žâ ƒâ â ‡â ‡" }, { "input": "meatballs", "output": "â â ‚â žâ ƒâ â ‡â ‡â Ž" }, { "input": "meatier", "output": "â â ‚â žâ Šâ »" }, { "input": "meatiest", "output": "â â ‚â žâ Šâ ‘â Œ" }, { "input": "meatloaf", "output": "â â ‚⠞⠇⠕â â ‹" }, { "input": "meatloaves", "output": "â â ‚⠞⠇⠕â â §â ‘â Ž" }, { "input": "meats", "output": "â â ‚â žâ Ž" }, { "input": "meaty", "output": "â â ‚â žâ ½" }, { "input": "mecca", "output": "â â ‘â ’â " }, { "input": "meccas", "output": "â â ‘â ’â â Ž" }, { "input": "mechanic", "output": "â â ‘â ¡â â â Šâ ‰" }, { "input": "mechanical", "output": "â â ‘â ¡â â â Šâ ‰â â ‡" }, { "input": "mechanically", "output": "â â ‘â ¡â â â Šâ ‰â â ‡â ‡â ½" }, { "input": "mechanics", "output": "â â ‘â ¡â â â Šâ ‰â Ž" }, { "input": "mechanism", "output": "â â ‘â ¡â â â Šâ Žâ " }, { "input": "mechanisms", "output": "â â ‘â ¡â â â Šâ Žâ â Ž" }, { "input": "mechanistic", "output": "â â ‘â ¡â â â Šâ Œâ Šâ ‰" }, { "input": "mechanization", "output": "â â ‘â ¡â â â Šâ µâ â °â " }, { "input": "mechanize", "output": "â â ‘â ¡â â â Šâ µâ ‘" }, { "input": "mechanized", "output": "â â ‘â ¡â â â Šâ µâ «" }, { "input": "mechanizes", "output": "â â ‘â ¡â â â Šâ µâ ‘â Ž" }, { "input": "mechanizing", "output": "â â ‘â ¡â â â Šâ µâ ¬" }, { "input": "medal", "output": "â â «â â ‡" }, { "input": "medalist", "output": "â â «â â ‡â Šâ Œ" }, { "input": "medalists", "output": "â â «â â ‡â Šâ Œâ Ž" }, { "input": "medallion", "output": "â â «â â ‡â ‡â Šâ •â " }, { "input": "medallions", "output": "â â «â â ‡â ‡â Šâ •â â Ž" }, { "input": "medals", "output": "â â «â â ‡â Ž" }, { "input": "meddle", "output": "â â «â ™â ‡â ‘" }, { "input": "meddled", "output": "â â «â ™â ‡â «" }, { "input": "meddler", "output": "â â «â ™â ‡â »" }, { "input": "meddlers", "output": "â â «â ™â ‡â »â Ž" }, { "input": "meddles", "output": "â â «â ™â ‡â ‘â Ž" }, { "input": "meddlesome", "output": "â â «â ™â ‡â ‘â â Ž" }, { "input": "meddling", "output": "â â «â ™â ‡â ¬" }, { "input": "media", "output": "â â «â Šâ " }, { "input": "mediaeval", "output": "â â «â Šâ â ‘â §â â ‡" }, { "input": "medial", "output": "â â «â Šâ â ‡" }, { "input": "median", "output": "â â «â Šâ â " }, { "input": "medians", "output": "â â «â Šâ â â Ž" }, { "input": "medias", "output": "â â «â Šâ â Ž" }, { "input": "mediate", "output": "â â «â Šâ â žâ ‘" }, { "input": "mediated", "output": "â â «â Šâ â žâ «" }, { "input": "mediates", "output": "â â «â Šâ â žâ ‘â Ž" }, { "input": "mediating", "output": "â â «â Šâ â žâ ¬" }, { "input": "mediation", "output": "â â «â Šâ â °â " }, { "input": "mediator", "output": "â â «â Šâ â žâ •â —" }, { "input": "mediators", "output": "â â «â Šâ â žâ •â —â Ž" }, { "input": "medic", "output": "â â «â Šâ ‰" }, { "input": "medical", "output": "â â «â Šâ ‰â â ‡" }, { "input": "medically", "output": "â â «â Šâ ‰â â ‡â ‡â ½" }, { "input": "medicals", "output": "â â «â Šâ ‰â â ‡â Ž" }, { "input": "medicate", "output": "â â «â Šâ ‰â â žâ ‘" }, { "input": "medicated", "output": "â â «â Šâ ‰â â žâ «" }, { "input": "medicates", "output": "â â «â Šâ ‰â â žâ ‘â Ž" }, { "input": "medicating", "output": "â â «â Šâ ‰â â žâ ¬" }, { "input": "medication", "output": "â â «â Šâ ‰â â °â " }, { "input": "medications", "output": "â â «â Šâ ‰â â °â â Ž" }, { "input": "medicinal", "output": "â â «â Šâ ‰â ”â â ‡" }, { "input": "medicinally", "output": "â â «â Šâ ‰â ”â â ‡â ‡â ½" }, { "input": "medicine", "output": "â â «â Šâ ‰â ”â ‘" }, { "input": "medicines", "output": "â â «â Šâ ‰â ”â ‘â Ž" }, { "input": "medics", "output": "â â «â Šâ ‰â Ž" }, { "input": "medieval", "output": "â â «â Šâ ‘â §â â ‡" }, { "input": "mediocre", "output": "â â «â Šâ •⠉⠗⠑" }, { "input": "mediocrities", "output": "â â «â Šâ •⠉⠗⠊⠞⠊⠑⠎" }, { "input": "mediocrity", "output": "â â «â Šâ •⠉⠗⠰⠽" }, { "input": "meditate", "output": "â â «â Šâ žâ â žâ ‘" }, { "input": "meditated", "output": "â â «â Šâ žâ â žâ «" }, { "input": "meditates", "output": "â â «â Šâ žâ â žâ ‘â Ž" }, { "input": "meditating", "output": "â â «â Šâ žâ â žâ ¬" }, { "input": "meditation", "output": "â â «â Šâ žâ â °â " }, { "input": "meditations", "output": "â â «â Šâ žâ â °â â Ž" }, { "input": "meditative", "output": "â â «â Šâ žâ â žâ Šâ §â ‘" }, { "input": "meditatively", "output": "â â «â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "medium", "output": "â â «â Šâ ¥â " }, { "input": "mediums", "output": "â â «â Šâ ¥â â Ž" }, { "input": "medley", "output": "â â «â ‡â ‘â ½" }, { "input": "medleys", "output": "â â «â ‡â ‘⠽⠎" }, { "input": "medulla", "output": "â â «â ¥â ‡â ‡â " }, { "input": "medullae", "output": "â â «â ¥â ‡â ‡â â ‘" }, { "input": "medullas", "output": "â â «â ¥â ‡â ‡â â Ž" }, { "input": "meek", "output": "â â ‘â ‘â …" }, { "input": "meeker", "output": "â â ‘â ‘â …â »" }, { "input": "meekest", "output": "â â ‘â ‘â …â ‘â Œ" }, { "input": "meekly", "output": "â â ‘⠑⠅⠇⠽" }, { "input": "meekness", "output": "â â ‘â ‘â …â °â Ž" }, { "input": "meet", "output": "â â ‘â ‘â ž" }, { "input": "meeting", "output": "â â ‘â ‘â žâ ¬" }, { "input": "meetinghouse", "output": "â â ‘⠑⠞⠬⠓⠳⠎⠑" }, { "input": "meetinghouses", "output": "â â ‘⠑⠞⠬⠓⠳⠎⠑⠎" }, { "input": "meetings", "output": "â â ‘⠑⠞⠬⠎" }, { "input": "meets", "output": "â â ‘â ‘â žâ Ž" }, { "input": "meg", "output": "â â ‘â ›" }, { "input": "megabyte", "output": "â â ‘â ›â â ƒâ ½â žâ ‘" }, { "input": "megabytes", "output": "â â ‘â ›â â ƒâ ½â žâ ‘â Ž" }, { "input": "megacycle", "output": "â â ‘â ›â â ‰â ½â ‰â ‡â ‘" }, { "input": "megacycles", "output": "â â ‘â ›â â ‰â ½â ‰â ‡â ‘â Ž" }, { "input": "megahertz", "output": "â â ‘â ›â â “⠻⠞⠵" }, { "input": "megahertzes", "output": "â â ‘â ›â â “⠻⠞⠵⠑⠎" }, { "input": "megalith", "output": "â â ‘â ›â â ‡â Šâ ¹" }, { "input": "megaliths", "output": "â â ‘â ›â â ‡â Šâ ¹â Ž" }, { "input": "megalomania", "output": "â â ‘â ›â â ‡â •â â â â Šâ " }, { "input": "megalomaniac", "output": "â â ‘â ›â â ‡â •â â â â Šâ â ‰" }, { "input": "megalomaniacs", "output": "â â ‘â ›â â ‡â •â â â â Šâ â ‰â Ž" }, { "input": "megalopolis", "output": "â â ‘â ›â â ‡â •â â •⠇⠊⠎" }, { "input": "megalopolises", "output": "â â ‘â ›â â ‡â •â â •⠇⠊⠎⠑⠎" }, { "input": "megaphone", "output": "â â ‘â ›â â â “â â •" }, { "input": "megaphoned", "output": "â â ‘â ›â â â “â •â â «" }, { "input": "megaphones", "output": "â â ‘â ›â â â “â â •â Ž" }, { "input": "megaphoning", "output": "â â ‘â ›â â â “â •â â ¬" }, { "input": "megapixel", "output": "â â ‘â ›â â â Šâ ­â ‘â ‡" }, { "input": "megapixels", "output": "â â ‘â ›â â â Šâ ­â ‘⠇⠎" }, { "input": "megaton", "output": "â â ‘â ›â â žâ •â " }, { "input": "megatons", "output": "â â ‘â ›â â žâ •â â Ž" }, { "input": "megs", "output": "â â ‘⠛⠎" }, { "input": "melancholia", "output": "â â ‘â ‡â â â ¡â •⠇⠊â " }, { "input": "melancholic", "output": "â â ‘â ‡â â â ¡â •⠇⠊⠉" }, { "input": "melancholics", "output": "â â ‘â ‡â â â ¡â •⠇⠊⠉⠎" }, { "input": "melancholy", "output": "â â ‘â ‡â â â ¡â •⠇⠽" }, { "input": "melange", "output": "â â ‘â ‡â â â ›â ‘" }, { "input": "melanges", "output": "â â ‘â ‡â â â ›â ‘â Ž" }, { "input": "melanin", "output": "â â ‘â ‡â â â ”" }, { "input": "melanoma", "output": "â â ‘â ‡â â â •â â " }, { "input": "melanomas", "output": "â â ‘â ‡â â â •â â â Ž" }, { "input": "melanomata", "output": "â â ‘â ‡â â â •â â â žâ " }, { "input": "meld", "output": "â â ‘⠇⠙" }, { "input": "melded", "output": "â â ‘⠇⠙⠫" }, { "input": "melding", "output": "â â ‘⠇⠙⠬" }, { "input": "melds", "output": "â â ‘⠇⠙⠎" }, { "input": "mellifluous", "output": "â â ‘⠇⠇⠊⠋⠇⠥⠳⠎" }, { "input": "mellifluously", "output": "â â ‘⠇⠇⠊⠋⠇⠥⠳⠎⠇⠽" }, { "input": "mellow", "output": "â â ‘⠇⠇⠪" }, { "input": "mellowed", "output": "â â ‘⠇⠇⠪⠫" }, { "input": "mellower", "output": "â â ‘⠇⠇⠪⠻" }, { "input": "mellowest", "output": "â â ‘⠇⠇⠪⠑⠌" }, { "input": "mellowing", "output": "â â ‘⠇⠇⠪⠬" }, { "input": "mellowness", "output": "â â ‘⠇⠇⠪⠰⠎" }, { "input": "mellows", "output": "â â ‘⠇⠇⠪⠎" }, { "input": "melodic", "output": "â â ‘⠇⠕⠙⠊⠉" }, { "input": "melodically", "output": "â â ‘⠇⠕⠙⠊⠉â â ‡â ‡â ½" }, { "input": "melodies", "output": "â â ‘⠇⠕⠙⠊⠑⠎" }, { "input": "melodious", "output": "â â ‘⠇⠕⠙⠊⠳⠎" }, { "input": "melodiously", "output": "â â ‘⠇⠕⠙⠊⠳⠎⠇⠽" }, { "input": "melodiousness", "output": "â â ‘⠇⠕⠙⠊⠳⠎⠰⠎" }, { "input": "melodrama", "output": "â â ‘⠇⠕⠙⠗â â â " }, { "input": "melodramas", "output": "â â ‘⠇⠕⠙⠗â â â â Ž" }, { "input": "melodramatic", "output": "â â ‘⠇⠕⠙⠗â â â â žâ Šâ ‰" }, { "input": "melodramatically", "output": "â â ‘⠇⠕⠙⠗â â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "melody", "output": "â â ‘⠇⠕⠙⠽" }, { "input": "melon", "output": "â â ‘⠇⠕â " }, { "input": "melons", "output": "â â ‘⠇⠕â â Ž" }, { "input": "melt", "output": "â â ‘⠇⠞" }, { "input": "meltdown", "output": "â â ‘⠇⠞⠙⠪â " }, { "input": "meltdowns", "output": "â â ‘⠇⠞⠙⠪â â Ž" }, { "input": "melted", "output": "â â ‘⠇⠞⠫" }, { "input": "melting", "output": "â â ‘⠇⠞⠬" }, { "input": "melts", "output": "â â ‘⠇⠞⠎" }, { "input": "member", "output": "â â ‘â â ƒâ »" }, { "input": "members", "output": "â â ‘â â ƒâ »â Ž" }, { "input": "membership", "output": "â â ‘â â ƒâ »â ©â Šâ " }, { "input": "memberships", "output": "â â ‘â â ƒâ »â ©â Šâ â Ž" }, { "input": "membrane", "output": "â â ‘â â ƒâ —â â â ‘" }, { "input": "membranes", "output": "â â ‘â â ƒâ —â â â ‘â Ž" }, { "input": "membranous", "output": "â â ‘â â ƒâ —â â â ³â Ž" }, { "input": "memento", "output": "â â ‘â °â žâ •" }, { "input": "mementoes", "output": "â â ‘â °â žâ •â ‘â Ž" }, { "input": "mementos", "output": "â â ‘â °â žâ •â Ž" }, { "input": "memo", "output": "â â ‘â â •" }, { "input": "memoir", "output": "â â ‘â â •â Šâ —" }, { "input": "memoirs", "output": "â â ‘â â •â Šâ —â Ž" }, { "input": "memorabilia", "output": "â â ‘â â •â —â â ƒâ Šâ ‡â Šâ " }, { "input": "memorable", "output": "â â ‘â â •â —â â ƒâ ‡â ‘" }, { "input": "memorably", "output": "â â ‘â â •â —â â ƒâ ‡â ½" }, { "input": "memoranda", "output": "â â ‘â â •â —â ¯â " }, { "input": "memorandum", "output": "â â ‘â â •⠗⠯⠥â " }, { "input": "memorandums", "output": "â â ‘â â •⠗⠯⠥â â Ž" }, { "input": "memorial", "output": "â â ‘â â •â —â Šâ â ‡" }, { "input": "memorialize", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ ‘" }, { "input": "memorialized", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ «" }, { "input": "memorializes", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "memorializing", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ ¬" }, { "input": "memorials", "output": "â â ‘â â •â —â Šâ â ‡â Ž" }, { "input": "memories", "output": "â â ‘â â •â —â Šâ ‘â Ž" }, { "input": "memorization", "output": "â â ‘â â •â —â Šâ µâ â °â " }, { "input": "memorize", "output": "â â ‘â â •⠗⠊⠵⠑" }, { "input": "memorized", "output": "â â ‘â â •⠗⠊⠵⠫" }, { "input": "memorizes", "output": "â â ‘â â •⠗⠊⠵⠑⠎" }, { "input": "memorizing", "output": "â â ‘â â •⠗⠊⠵⠬" }, { "input": "memory", "output": "â â ‘â â •â —â ½" }, { "input": "memos", "output": "â â ‘â â •â Ž" }, { "input": "men", "output": "â â ¢" }, { "input": "menace", "output": "â â ¢â â ‰â ‘" }, { "input": "menaced", "output": "â â ¢â â ‰â «" }, { "input": "menaces", "output": "â â ¢â â ‰â ‘â Ž" }, { "input": "menacing", "output": "â â ¢â â ‰â ¬" }, { "input": "menacingly", "output": "â â ¢â â ‰â ¬â ‡â ½" }, { "input": "menage", "output": "â â ¢â â ›â ‘" }, { "input": "menagerie", "output": "â â ¢â â ›â »â Šâ ‘" }, { "input": "menageries", "output": "â â ¢â â ›â »â Šâ ‘â Ž" }, { "input": "menages", "output": "â â ¢â â ›â ‘â Ž" }, { "input": "mend", "output": "â â ¢â ™" }, { "input": "mendacious", "output": "â â ¢â ™â â ‰â Šâ ³â Ž" }, { "input": "mendacity", "output": "â â ¢â ™â â ‰â °â ½" }, { "input": "mended", "output": "â â ¢â ™â «" }, { "input": "mender", "output": "â â ¢â ™â »" }, { "input": "menders", "output": "â â ¢â ™â »â Ž" }, { "input": "mendicant", "output": "â â ¢â ™â Šâ ‰â â â ž" }, { "input": "mendicants", "output": "â â ¢â ™â Šâ ‰â â â žâ Ž" }, { "input": "mending", "output": "â â ¢â ™â ¬" }, { "input": "mends", "output": "â â ¢â ™â Ž" }, { "input": "menfolk", "output": "â â ¢â ‹â •⠇⠅" }, { "input": "menhaden", "output": "â â ¢â ¸â “â ¢" }, { "input": "menhadens", "output": "â â ¢â ¸â “⠢⠎" }, { "input": "menial", "output": "â â ¢â Šâ â ‡" }, { "input": "menially", "output": "â â ¢â Šâ â ‡â ‡â ½" }, { "input": "menials", "output": "â â ¢â Šâ â ‡â Ž" }, { "input": "meningitis", "output": "â â ¢â ¬â Šâ žâ Šâ Ž" }, { "input": "menopausal", "output": "â â ¢â •â â â ¥â Žâ â ‡" }, { "input": "menopause", "output": "â â ¢â •â â â ¥â Žâ ‘" }, { "input": "menorah", "output": "â â ¢â •â —â â “" }, { "input": "menorahs", "output": "â â ¢â •â —â â “â Ž" }, { "input": "menservants", "output": "â â ¢â Žâ »â §â â â žâ Ž" }, { "input": "menses", "output": "â â ¢â Žâ ‘â Ž" }, { "input": "menstrual", "output": "â â ¢â Œâ —â ¥â â ‡" }, { "input": "menstruate", "output": "â â ¢â Œâ —â ¥â â žâ ‘" }, { "input": "menstruated", "output": "â â ¢â Œâ —â ¥â â žâ «" }, { "input": "menstruates", "output": "â â ¢â Œâ —â ¥â â žâ ‘â Ž" }, { "input": "menstruating", "output": "â â ¢â Œâ —â ¥â â žâ ¬" }, { "input": "menstruation", "output": "â â ¢â Œâ —â ¥â â °â " }, { "input": "menswear", "output": "â â ¢â Žâ ºâ ‘â œ" }, { "input": "mental", "output": "â â ¢â žâ â ‡" }, { "input": "mentalities", "output": "â â ¢â žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "mentality", "output": "â â ¢â žâ â ‡â °â ½" }, { "input": "mentally", "output": "â â ¢â žâ â ‡â ‡â ½" }, { "input": "menthol", "output": "â â ¢â ¹â •â ‡" }, { "input": "mentholated", "output": "â â ¢â ¹â •â ‡â â žâ «" }, { "input": "mention", "output": "â â ¢â °â " }, { "input": "mentioned", "output": "â â ¢â °â â «" }, { "input": "mentioning", "output": "â â ¢â °â â ¬" }, { "input": "mentions", "output": "â â ¢â °â â Ž" }, { "input": "mentor", "output": "â â ¢â žâ •â —" }, { "input": "mentored", "output": "â â ¢â žâ •â —â «" }, { "input": "mentoring", "output": "â â ¢â žâ •â —â ¬" }, { "input": "mentors", "output": "â â ¢â žâ •â —â Ž" }, { "input": "menu", "output": "â â ¢â ¥" }, { "input": "menus", "output": "â â ¢â ¥â Ž" }, { "input": "meow", "output": "â â ‘â ª" }, { "input": "meowed", "output": "â â ‘⠪⠫" }, { "input": "meowing", "output": "â â ‘⠪⠬" }, { "input": "meows", "output": "â â ‘⠪⠎" }, { "input": "mercantile", "output": "â â »â ‰â â â žâ Šâ ‡â ‘" }, { "input": "mercenaries", "output": "â â »â ‰â ¢â œâ Šâ ‘â Ž" }, { "input": "mercenary", "output": "â â »â ‰â ¢â œâ ½" }, { "input": "mercerize", "output": "â â »â ‰â »â Šâ µâ ‘" }, { "input": "mercerized", "output": "â â »â ‰â »â Šâ µâ «" }, { "input": "mercerizes", "output": "â â »â ‰â »â Šâ µâ ‘â Ž" }, { "input": "mercerizing", "output": "â â »â ‰â »â Šâ µâ ¬" }, { "input": "merchandise", "output": "â â »â ¡â ¯â Šâ Žâ ‘" }, { "input": "merchandised", "output": "â â »â ¡â ¯â Šâ Žâ «" }, { "input": "merchandises", "output": "â â »â ¡â ¯â Šâ Žâ ‘â Ž" }, { "input": "merchandising", "output": "â â »â ¡â ¯â Šâ Žâ ¬" }, { "input": "merchandize", "output": "â â »â ¡â ¯â Šâ µâ ‘" }, { "input": "merchandized", "output": "â â »â ¡â ¯â Šâ µâ «" }, { "input": "merchandizes", "output": "â â »â ¡â ¯â Šâ µâ ‘â Ž" }, { "input": "merchandizing", "output": "â â »â ¡â ¯â Šâ µâ ¬" }, { "input": "merchant", "output": "â â »â ¡â â â ž" }, { "input": "merchantman", "output": "â â »â ¡â â â žâ â â " }, { "input": "merchantmen", "output": "â â »â ¡â â â žâ â ¢" }, { "input": "merchants", "output": "â â »â ¡â â â žâ Ž" }, { "input": "mercies", "output": "â â »â ‰â Šâ ‘â Ž" }, { "input": "merciful", "output": "â â »â ‰â Šâ °â ‡" }, { "input": "mercifully", "output": "â â »â ‰â Šâ °â ‡â ‡â ½" }, { "input": "merciless", "output": "â â »â ‰â Šâ ¨â Ž" }, { "input": "mercilessly", "output": "â â »â ‰â Šâ ¨â Žâ ‡â ½" }, { "input": "mercurial", "output": "â â »â ‰â ¥â —â Šâ â ‡" }, { "input": "mercuric", "output": "â â »â ‰â ¥â —â Šâ ‰" }, { "input": "mercury", "output": "â â »â ‰â ¥â —â ½" }, { "input": "mercy", "output": "â â »â ‰â ½" }, { "input": "mere", "output": "â â »â ‘" }, { "input": "merely", "output": "â â »â ‘⠇⠽" }, { "input": "meres", "output": "â â »â ‘â Ž" }, { "input": "merest", "output": "â â »â ‘â Œ" }, { "input": "meretricious", "output": "â â »â ‘⠞⠗⠊⠉⠊⠳⠎" }, { "input": "merganser", "output": "â â »â ›â â â Žâ »" }, { "input": "mergansers", "output": "â â »â ›â â â Žâ »â Ž" }, { "input": "merge", "output": "â â »â ›â ‘" }, { "input": "merged", "output": "â â »â ›â «" }, { "input": "merger", "output": "â â »â ›â »" }, { "input": "mergers", "output": "â â »â ›â »â Ž" }, { "input": "merges", "output": "â â »â ›â ‘â Ž" }, { "input": "merging", "output": "â â »â ›â ¬" }, { "input": "meridian", "output": "â â »â Šâ ™â Šâ â " }, { "input": "meridians", "output": "â â »â Šâ ™â Šâ â â Ž" }, { "input": "meringue", "output": "â â »â ¬â ¥â ‘" }, { "input": "meringues", "output": "â â »â ¬â ¥â ‘â Ž" }, { "input": "merino", "output": "â â »â ”â •" }, { "input": "merinos", "output": "â â »â ”â •â Ž" }, { "input": "merit", "output": "â â »â Šâ ž" }, { "input": "merited", "output": "â â »â Šâ žâ «" }, { "input": "meriting", "output": "â â »â Šâ žâ ¬" }, { "input": "meritocracies", "output": "â â »â Šâ žâ •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "meritocracy", "output": "â â »â Šâ žâ •⠉⠗â â ‰â ½" }, { "input": "meritorious", "output": "â â »â Šâ žâ •⠗⠊⠳⠎" }, { "input": "meritoriously", "output": "â â »â Šâ žâ •⠗⠊⠳⠎⠇⠽" }, { "input": "merits", "output": "â â »â Šâ žâ Ž" }, { "input": "mermaid", "output": "â â »â â â Šâ ™" }, { "input": "mermaids", "output": "â â »â â â Šâ ™â Ž" }, { "input": "merman", "output": "â â »â â â " }, { "input": "mermen", "output": "â â »â â ¢" }, { "input": "merrier", "output": "â â »â —â Šâ »" }, { "input": "merriest", "output": "â â »â —â Šâ ‘â Œ" }, { "input": "merrily", "output": "â â »â —⠊⠇⠽" }, { "input": "merriment", "output": "â â »â —â Šâ °â ž" }, { "input": "merriness", "output": "â â »â —â Šâ °â Ž" }, { "input": "merry", "output": "â â »â —â ½" }, { "input": "merrymaker", "output": "â â »â —â ½â â â …â »" }, { "input": "merrymakers", "output": "â â »â —â ½â â â …⠻⠎" }, { "input": "merrymaking", "output": "â â »â —â ½â â â …â ¬" }, { "input": "mes", "output": "â â ‘â Ž" }, { "input": "mesa", "output": "â â ‘â Žâ " }, { "input": "mesas", "output": "â â ‘â Žâ â Ž" }, { "input": "mescal", "output": "â â ‘â Žâ ‰â â ‡" }, { "input": "mescaline", "output": "â â ‘â Žâ ‰â â ‡â ”â ‘" }, { "input": "mescals", "output": "â â ‘â Žâ ‰â â ‡â Ž" }, { "input": "mesdames", "output": "â â ‘â Žâ ™â â â ‘â Ž" }, { "input": "mesdemoiselles", "output": "â â ‘⠎⠙⠑â â •⠊⠎⠑⠇⠇⠑⠎" }, { "input": "mesh", "output": "â â ‘â ©" }, { "input": "meshed", "output": "â â ‘â ©â «" }, { "input": "meshes", "output": "â â ‘â ©â ‘â Ž" }, { "input": "meshing", "output": "â â ‘â ©â ¬" }, { "input": "mesmerism", "output": "â â ‘â Žâ â »â Šâ Žâ " }, { "input": "mesmerize", "output": "â â ‘â Žâ â »â Šâ µâ ‘" }, { "input": "mesmerized", "output": "â â ‘â Žâ â »â Šâ µâ «" }, { "input": "mesmerizes", "output": "â â ‘â Žâ â »â Šâ µâ ‘â Ž" }, { "input": "mesmerizing", "output": "â â ‘â Žâ â »â Šâ µâ ¬" }, { "input": "mesquite", "output": "â â ‘⠎⠟⠥⠊⠞⠑" }, { "input": "mesquites", "output": "â â ‘⠎⠟⠥⠊⠞⠑⠎" }, { "input": "mess", "output": "â â ‘â Žâ Ž" }, { "input": "message", "output": "â â ‘â Žâ Žâ â ›â ‘" }, { "input": "messages", "output": "â â ‘â Žâ Žâ â ›â ‘â Ž" }, { "input": "messed", "output": "â â ‘â Žâ Žâ «" }, { "input": "messenger", "output": "â â ‘⠎⠎⠢⠛⠻" }, { "input": "messengers", "output": "â â ‘⠎⠎⠢⠛⠻⠎" }, { "input": "messes", "output": "â â ‘â Žâ Žâ ‘â Ž" }, { "input": "messiah", "output": "â â ‘â Žâ Žâ Šâ â “" }, { "input": "messiahs", "output": "â â ‘â Žâ Žâ Šâ â “â Ž" }, { "input": "messier", "output": "â â ‘â Žâ Žâ Šâ »" }, { "input": "messiest", "output": "â â ‘â Žâ Žâ Šâ ‘â Œ" }, { "input": "messieurs", "output": "â â ‘⠎⠎⠊⠑⠥⠗⠎" }, { "input": "messily", "output": "â â ‘⠎⠎⠊⠇⠽" }, { "input": "messiness", "output": "â â ‘â Žâ Žâ Šâ °â Ž" }, { "input": "messing", "output": "â â ‘â Žâ Žâ ¬" }, { "input": "messy", "output": "â â ‘â Žâ Žâ ½" }, { "input": "mestizo", "output": "â â ‘⠌⠊⠵⠕" }, { "input": "mestizoes", "output": "â â ‘⠌⠊⠵⠕⠑⠎" }, { "input": "mestizos", "output": "â â ‘⠌⠊⠵⠕⠎" }, { "input": "met", "output": "â â ‘â ž" }, { "input": "metabolic", "output": "â â ‘â žâ â ƒâ •⠇⠊⠉" }, { "input": "metabolism", "output": "â â ‘â žâ â ƒâ •⠇⠊⠎â " }, { "input": "metabolisms", "output": "â â ‘â žâ â ƒâ •⠇⠊⠎â â Ž" }, { "input": "metabolize", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠑" }, { "input": "metabolized", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠫" }, { "input": "metabolizes", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠑⠎" }, { "input": "metabolizing", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠬" }, { "input": "metacarpal", "output": "â â ‘â žâ â ‰â œâ â â ‡" }, { "input": "metacarpals", "output": "â â ‘â žâ â ‰â œâ â â ‡â Ž" }, { "input": "metacarpi", "output": "â â ‘â žâ â ‰â œâ â Š" }, { "input": "metacarpus", "output": "â â ‘â žâ â ‰â œâ â ¥â Ž" }, { "input": "metal", "output": "â â ‘â žâ â ‡" }, { "input": "metallic", "output": "â â ‘â žâ â ‡â ‡â Šâ ‰" }, { "input": "metallurgical", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠉â â ‡" }, { "input": "metallurgist", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠌" }, { "input": "metallurgists", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠌⠎" }, { "input": "metallurgy", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠽" }, { "input": "metals", "output": "â â ‘â žâ â ‡â Ž" }, { "input": "metamorphic", "output": "â â ‘â žâ â â •â —â â “â Šâ ‰" }, { "input": "metamorphism", "output": "â â ‘â žâ â â •â —â â “â Šâ Žâ " }, { "input": "metamorphose", "output": "â â ‘â žâ â â •â —â â “â •â Žâ ‘" }, { "input": "metamorphosed", "output": "â â ‘â žâ â â •â —â â “â •â Žâ «" }, { "input": "metamorphoses", "output": "â â ‘â žâ â â •â —â â “â •â Žâ ‘â Ž" }, { "input": "metamorphosing", "output": "â â ‘â žâ â â •â —â â “â •â Žâ ¬" }, { "input": "metamorphosis", "output": "â â ‘â žâ â â •â —â â “â •â Žâ Šâ Ž" }, { "input": "metaphor", "output": "â â ‘â žâ â â “â •â —" }, { "input": "metaphorical", "output": "â â ‘â žâ â â “â •â —â Šâ ‰â â ‡" }, { "input": "metaphorically", "output": "â â ‘â žâ â â “â •â —â Šâ ‰â â ‡â ‡â ½" }, { "input": "metaphors", "output": "â â ‘â žâ â â “â •â —â Ž" }, { "input": "metaphysical", "output": "â â ‘â žâ â â “⠽⠎⠊⠉â â ‡" }, { "input": "metaphysics", "output": "â â ‘â žâ â â “⠽⠎⠊⠉⠎" }, { "input": "metastases", "output": "â â ‘â žâ â Œâ â Žâ ‘â Ž" }, { "input": "metastasis", "output": "â â ‘â žâ â Œâ â Žâ Šâ Ž" }, { "input": "metastasize", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ ‘" }, { "input": "metastasized", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ «" }, { "input": "metastasizes", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ ‘â Ž" }, { "input": "metastasizing", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ ¬" }, { "input": "metatarsal", "output": "â â ‘â žâ â žâ œâ Žâ â ‡" }, { "input": "metatarsals", "output": "â â ‘â žâ â žâ œâ Žâ â ‡â Ž" }, { "input": "mete", "output": "â â ‘â žâ ‘" }, { "input": "meted", "output": "â â ‘â žâ «" }, { "input": "meteor", "output": "â â ‘â žâ ‘â •â —" }, { "input": "meteoric", "output": "â â ‘â žâ ‘â •â —â Šâ ‰" }, { "input": "meteorite", "output": "â â ‘â žâ ‘â •â —â Šâ žâ ‘" }, { "input": "meteorites", "output": "â â ‘â žâ ‘â •â —â Šâ žâ ‘â Ž" }, { "input": "meteoroid", "output": "â â ‘â žâ ‘â •â —â •â Šâ ™" }, { "input": "meteoroids", "output": "â â ‘⠞⠑⠕⠗⠕⠊⠙⠎" }, { "input": "meteorological", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "meteorologist", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠌" }, { "input": "meteorologists", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "meteorology", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠽" }, { "input": "meteors", "output": "â â ‘â žâ ‘â •â —â Ž" }, { "input": "meter", "output": "â â ‘â žâ »" }, { "input": "metered", "output": "â â ‘⠞⠻⠫" }, { "input": "metering", "output": "â â ‘⠞⠻⠬" }, { "input": "meters", "output": "â â ‘⠞⠻⠎" }, { "input": "metes", "output": "â â ‘â žâ ‘â Ž" }, { "input": "methadon", "output": "â â ‘â ¹â â ™â •â " }, { "input": "methadone", "output": "â â ‘â ¹â â ™â â •" }, { "input": "methane", "output": "â â ‘â ¹â â â ‘" }, { "input": "methanol", "output": "â â ‘â ¹â â â •â ‡" }, { "input": "methinks", "output": "â â ‘⠹⠔⠅⠎" }, { "input": "method", "output": "â â ‘⠹⠕⠙" }, { "input": "methodical", "output": "â â ‘⠹⠕⠙⠊⠉â â ‡" }, { "input": "methodically", "output": "â â ‘⠹⠕⠙⠊⠉â â ‡â ‡â ½" }, { "input": "methodological", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "methodologies", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠊⠑⠎" }, { "input": "methodology", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠽" }, { "input": "methods", "output": "â â ‘⠹⠕⠙⠎" }, { "input": "methought", "output": "â â ‘â ¹â â ³" }, { "input": "meticulous", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎" }, { "input": "meticulously", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎⠇⠽" }, { "input": "meticulousness", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎⠰⠎" }, { "input": "meting", "output": "â â ‘â žâ ¬" }, { "input": "metric", "output": "â â ‘â žâ —â Šâ ‰" }, { "input": "metrical", "output": "â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "metrically", "output": "â â ‘â žâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "metrication", "output": "â â ‘â žâ —â Šâ ‰â â °â " }, { "input": "metrics", "output": "â â ‘⠞⠗⠊⠉⠎" }, { "input": "metro", "output": "â â ‘â žâ —â •" }, { "input": "metronome", "output": "â â ‘â žâ —â •â â •â â ‘" }, { "input": "metronomes", "output": "â â ‘â žâ —â •â â •â â ‘â Ž" }, { "input": "metropolis", "output": "â â ‘â žâ —â •â â •⠇⠊⠎" }, { "input": "metropolises", "output": "â â ‘â žâ —â •â â •⠇⠊⠎⠑⠎" }, { "input": "metropolitan", "output": "â â ‘â žâ —â •â â •⠇⠊⠞â â " }, { "input": "metros", "output": "â â ‘â žâ —â •â Ž" }, { "input": "mettle", "output": "â â ‘⠞⠞⠇⠑" }, { "input": "mettlesome", "output": "â â ‘⠞⠞⠇⠑â â Ž" }, { "input": "mew", "output": "â â ‘â º" }, { "input": "mewed", "output": "â â ‘⠺⠫" }, { "input": "mewing", "output": "â â ‘⠺⠬" }, { "input": "mewl", "output": "â â ‘⠺⠇" }, { "input": "mewled", "output": "â â ‘⠺⠇⠫" }, { "input": "mewling", "output": "â â ‘⠺⠇⠬" }, { "input": "mewls", "output": "â â ‘⠺⠇⠎" }, { "input": "mews", "output": "â â ‘⠺⠎" }, { "input": "mezzanine", "output": "â â ‘⠵⠵â â â ”â ‘" }, { "input": "mezzanines", "output": "â â ‘⠵⠵â â â ”â ‘â Ž" }, { "input": "mi", "output": "â â Š" }, { "input": "miaow", "output": "â â Šâ â ª" }, { "input": "miaowed", "output": "â â Šâ â ªâ «" }, { "input": "miaowing", "output": "â â Šâ â ªâ ¬" }, { "input": "miaows", "output": "â â Šâ â ªâ Ž" }, { "input": "miasma", "output": "â â Šâ â Žâ â " }, { "input": "miasmas", "output": "â â Šâ â Žâ â â Ž" }, { "input": "miasmata", "output": "â â Šâ â Žâ â â žâ " }, { "input": "mica", "output": "â â Šâ ‰â " }, { "input": "mice", "output": "â â Šâ ‰â ‘" }, { "input": "micra", "output": "â â Šâ ‰â —â " }, { "input": "microbe", "output": "â â Šâ ‰â —⠕⠃⠑" }, { "input": "microbes", "output": "â â Šâ ‰â —⠕⠃⠑⠎" }, { "input": "microbiologist", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠊⠌" }, { "input": "microbiologists", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "microbiology", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠽" }, { "input": "microchip", "output": "â â Šâ ‰â —â •â ¡â Šâ " }, { "input": "microchips", "output": "â â Šâ ‰â —â •â ¡â Šâ â Ž" }, { "input": "microcode", "output": "â â Šâ ‰â —⠕⠉⠕⠙⠑" }, { "input": "microcomputer", "output": "â â Šâ ‰â —⠕⠉⠕â â â ¥â žâ »" }, { "input": "microcomputers", "output": "â â Šâ ‰â —⠕⠉⠕â â â ¥â žâ »â Ž" }, { "input": "microcosm", "output": "â â Šâ ‰â —⠕⠉⠕⠎â " }, { "input": "microcosms", "output": "â â Šâ ‰â —⠕⠉⠕⠎â â Ž" }, { "input": "microeconomics", "output": "â â Šâ ‰â —⠕⠑⠉⠕â â •â â Šâ ‰â Ž" }, { "input": "microfiche", "output": "â â Šâ ‰â —â •â ‹â Šâ ¡â ‘" }, { "input": "microfiches", "output": "â â Šâ ‰â —â •â ‹â Šâ ¡â ‘â Ž" }, { "input": "microfilm", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â " }, { "input": "microfilmed", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â «" }, { "input": "microfilming", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â ¬" }, { "input": "microfilms", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â Ž" }, { "input": "micrometer", "output": "â â Šâ ‰â —â •â â ‘â žâ »" }, { "input": "micrometers", "output": "â â Šâ ‰â —â •â â ‘⠞⠻⠎" }, { "input": "micron", "output": "â â Šâ ‰â —â •â " }, { "input": "microns", "output": "â â Šâ ‰â —â •â â Ž" }, { "input": "microorganism", "output": "â â Šâ ‰â —â •â •â —â ›â â â Šâ Žâ " }, { "input": "microorganisms", "output": "â â Šâ ‰â —â •â •â —â ›â â â Šâ Žâ â Ž" }, { "input": "microphone", "output": "â â Šâ ‰â —â •â â “â â •" }, { "input": "microphones", "output": "â â Šâ ‰â —â •â â “â â •â Ž" }, { "input": "microprocessor", "output": "â â Šâ ‰â —â •â â —⠕⠉⠑⠎⠎⠕⠗" }, { "input": "microprocessors", "output": "â â Šâ ‰â —â •â â —⠕⠉⠑⠎⠎⠕⠗⠎" }, { "input": "microscope", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ‘" }, { "input": "microscopes", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ‘â Ž" }, { "input": "microscopic", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â Šâ ‰" }, { "input": "microscopically", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â Šâ ‰â â ‡â ‡â ½" }, { "input": "microscopy", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ½" }, { "input": "microsecond", "output": "â â Šâ ‰â —⠕⠎⠑⠉⠕â â ™" }, { "input": "microseconds", "output": "â â Šâ ‰â —⠕⠎⠑⠉⠕â â ™â Ž" }, { "input": "microsurgery", "output": "â â Šâ ‰â —⠕⠎⠥⠗⠛⠻⠽" }, { "input": "microwave", "output": "â â Šâ ‰â —â •â ºâ â §â ‘" }, { "input": "microwaved", "output": "â â Šâ ‰â —â •â ºâ â §â «" }, { "input": "microwaves", "output": "â â Šâ ‰â —â •â ºâ â §â ‘â Ž" }, { "input": "microwaving", "output": "â â Šâ ‰â —â •â ºâ â §â ¬" }, { "input": "mid", "output": "â â Šâ ™" }, { "input": "midair", "output": "â â Šâ ™â â Šâ —" }, { "input": "midday", "output": "â â Šâ ™â â ™" }, { "input": "middies", "output": "â â Šâ ™â ™â Šâ ‘â Ž" }, { "input": "middle", "output": "â â Šâ ™â ™â ‡â ‘" }, { "input": "middlebrow", "output": "â â Šâ ™â ™â ‡â ‘⠃⠗⠪" }, { "input": "middlebrows", "output": "â â Šâ ™â ™â ‡â ‘⠃⠗⠪⠎" }, { "input": "middleman", "output": "â â Šâ ™â ™â ‡â ‘â â â " }, { "input": "middlemen", "output": "â â Šâ ™â ™â ‡â ‘â â ¢" }, { "input": "middles", "output": "â â Šâ ™â ™â ‡â ‘â Ž" }, { "input": "middleweight", "output": "â â Šâ ™â ™â ‡â ‘⠺⠑⠊⠣⠞" }, { "input": "middleweights", "output": "â â Šâ ™â ™â ‡â ‘⠺⠑⠊⠣⠞⠎" }, { "input": "middling", "output": "â â Šâ ™â ™â ‡â ¬" }, { "input": "middy", "output": "â â Šâ ™â ™â ½" }, { "input": "midge", "output": "â â Šâ ™â ›â ‘" }, { "input": "midges", "output": "â â Šâ ™â ›â ‘â Ž" }, { "input": "midget", "output": "â â Šâ ™â ›â ‘â ž" }, { "input": "midgets", "output": "â â Šâ ™â ›â ‘â žâ Ž" }, { "input": "midland", "output": "â â Šâ ™â ‡â ¯" }, { "input": "midlands", "output": "â â Šâ ™â ‡â ¯â Ž" }, { "input": "midmost", "output": "â â Šâ ™â â •â Œ" }, { "input": "midnight", "output": "â â Šâ ™â â Šâ £â ž" }, { "input": "midpoint", "output": "â â Šâ ™â â •⠔⠞" }, { "input": "midpoints", "output": "â â Šâ ™â â •⠔⠞⠎" }, { "input": "midriff", "output": "â â Šâ ™â —â Šâ ‹â ‹" }, { "input": "midriffs", "output": "â â Šâ ™â —â Šâ –â Ž" }, { "input": "midshipman", "output": "â â Šâ ™â ©â Šâ â â â " }, { "input": "midshipmen", "output": "â â Šâ ™â ©â Šâ â â ¢" }, { "input": "midst", "output": "â â Šâ ™â Œ" }, { "input": "midstream", "output": "â â Šâ ™â Œâ —â ‚â " }, { "input": "midsummer", "output": "â â Šâ ™â Žâ ¥â â â »" }, { "input": "midterm", "output": "â â Šâ ™â žâ »â " }, { "input": "midterms", "output": "â â Šâ ™â žâ »â â Ž" }, { "input": "midtown", "output": "â â Šâ ™â žâ ªâ " }, { "input": "midway", "output": "â â Šâ ™â ºâ â ½" }, { "input": "midways", "output": "â â Šâ ™â ºâ â ½â Ž" }, { "input": "midweek", "output": "â â Šâ ™â ºâ ‘â ‘â …" }, { "input": "midweeks", "output": "â â Šâ ™â ºâ ‘â ‘â …â Ž" }, { "input": "midwife", "output": "â â Šâ ™â ºâ Šâ ‹â ‘" }, { "input": "midwifed", "output": "â â Šâ ™â ºâ Šâ ‹â «" }, { "input": "midwiferies", "output": "â â Šâ ™â ºâ Šâ ‹â »â Šâ ‘â Ž" }, { "input": "midwifery", "output": "â â Šâ ™â ºâ Šâ ‹â »â ½" }, { "input": "midwifes", "output": "â â Šâ ™â ºâ Šâ ‹â ‘â Ž" }, { "input": "midwifing", "output": "â â Šâ ™â ºâ Šâ ‹â ¬" }, { "input": "midwinter", "output": "â â Šâ ™â ºâ ”â žâ »" }, { "input": "midwived", "output": "â â Šâ ™â ºâ Šâ §â «" }, { "input": "midwives", "output": "â â Šâ ™â ºâ Šâ §â ‘â Ž" }, { "input": "midwiving", "output": "â â Šâ ™â ºâ Šâ §â ¬" }, { "input": "midyear", "output": "â â Šâ ™â ½â ‘â œ" }, { "input": "midyears", "output": "â â Šâ ™â ½â ‘⠜⠎" }, { "input": "mien", "output": "â â Šâ ¢" }, { "input": "miens", "output": "â â Šâ ¢â Ž" }, { "input": "miff", "output": "â â Šâ ‹â ‹" }, { "input": "miffed", "output": "â â Šâ –â «" }, { "input": "miffing", "output": "â â Šâ –â ¬" }, { "input": "miffs", "output": "â â Šâ –â Ž" }, { "input": "might", "output": "â â Šâ £â ž" }, { "input": "mightier", "output": "â â Šâ £â žâ Šâ »" }, { "input": "mightiest", "output": "â â Šâ £â žâ Šâ ‘â Œ" }, { "input": "mightily", "output": "â â Šâ £â žâ Šâ ‡â ½" }, { "input": "mightiness", "output": "â â Šâ £â žâ Šâ °â Ž" }, { "input": "mighty", "output": "â â Šâ £â žâ ½" }, { "input": "migraine", "output": "â â Šâ ›â —â â ”â ‘" }, { "input": "migraines", "output": "â â Šâ ›â —â â ”â ‘â Ž" }, { "input": "migrant", "output": "â â Šâ ›â —â â â ž" }, { "input": "migrants", "output": "â â Šâ ›â —â â â žâ Ž" }, { "input": "migrate", "output": "â â Šâ ›â —â â žâ ‘" }, { "input": "migrated", "output": "â â Šâ ›â —â â žâ «" }, { "input": "migrates", "output": "â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "migrating", "output": "â â Šâ ›â —â â žâ ¬" }, { "input": "migration", "output": "â â Šâ ›â —â â °â " }, { "input": "migrations", "output": "â â Šâ ›â —â â °â â Ž" }, { "input": "migratory", "output": "â â Šâ ›â —â â žâ •â —â ½" }, { "input": "mike", "output": "â â Šâ …â ‘" }, { "input": "miked", "output": "â â Šâ …â «" }, { "input": "mikes", "output": "â â Šâ …â ‘â Ž" }, { "input": "miking", "output": "â â Šâ …â ¬" }, { "input": "mil", "output": "â â Šâ ‡" }, { "input": "milch", "output": "â â Šâ ‡â ¡" }, { "input": "mild", "output": "â â Šâ ‡â ™" }, { "input": "milder", "output": "â â Šâ ‡â ™â »" }, { "input": "mildest", "output": "â â Šâ ‡â ™â ‘â Œ" }, { "input": "mildew", "output": "â â Šâ ‡â ™â ‘â º" }, { "input": "mildewed", "output": "â â Šâ ‡â ™â ‘⠺⠫" }, { "input": "mildewing", "output": "â â Šâ ‡â ™â ‘⠺⠬" }, { "input": "mildews", "output": "â â Šâ ‡â ™â ‘⠺⠎" }, { "input": "mildly", "output": "â â Šâ ‡â ™â ‡â ½" }, { "input": "mildness", "output": "â â Šâ ‡â ™â °â Ž" }, { "input": "mile", "output": "â â Šâ ‡â ‘" }, { "input": "mileage", "output": "â â Šâ ‡â ‚⠛⠑" }, { "input": "mileages", "output": "â â Šâ ‡â ‚⠛⠑⠎" }, { "input": "milepost", "output": "â â Šâ ‡â ‘â â •â Œ" }, { "input": "mileposts", "output": "â â Šâ ‡â ‘â â •⠌⠎" }, { "input": "miler", "output": "â â Šâ ‡â »" }, { "input": "milers", "output": "â â Šâ ‡â »â Ž" }, { "input": "miles", "output": "â â Šâ ‡â ‘â Ž" }, { "input": "milestone", "output": "â â Šâ ‡â ‘â Œâ â •" }, { "input": "milestones", "output": "â â Šâ ‡â ‘â Œâ â •â Ž" }, { "input": "milieu", "output": "â â Šâ ‡â Šâ ‘â ¥" }, { "input": "milieus", "output": "â â Šâ ‡â Šâ ‘⠥⠎" }, { "input": "milieux", "output": "â â Šâ ‡â Šâ ‘⠥⠭" }, { "input": "militancy", "output": "â â Šâ ‡â Šâ žâ â â ‰â ½" }, { "input": "militant", "output": "â â Šâ ‡â Šâ žâ â â ž" }, { "input": "militantly", "output": "â â Šâ ‡â Šâ žâ â â žâ ‡â ½" }, { "input": "militants", "output": "â â Šâ ‡â Šâ žâ â â žâ Ž" }, { "input": "militaries", "output": "â â Šâ ‡â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "militarily", "output": "â â Šâ ‡â Šâ žâ œâ Šâ ‡â ½" }, { "input": "militarism", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Žâ " }, { "input": "militarist", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œ" }, { "input": "militaristic", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œâ Šâ ‰" }, { "input": "militarists", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œâ Ž" }, { "input": "militarization", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ â °â " }, { "input": "militarize", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘" }, { "input": "militarized", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ «" }, { "input": "militarizes", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘â Ž" }, { "input": "militarizing", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ ¬" }, { "input": "military", "output": "â â Šâ ‡â Šâ žâ œâ ½" }, { "input": "militate", "output": "â â Šâ ‡â Šâ žâ â žâ ‘" }, { "input": "militated", "output": "â â Šâ ‡â Šâ žâ â žâ «" }, { "input": "militates", "output": "â â Šâ ‡â Šâ žâ â žâ ‘â Ž" }, { "input": "militating", "output": "â â Šâ ‡â Šâ žâ â žâ ¬" }, { "input": "militia", "output": "â â Šâ ‡â Šâ žâ Šâ " }, { "input": "militiaman", "output": "â â Šâ ‡â Šâ žâ Šâ â â â " }, { "input": "militiamen", "output": "â â Šâ ‡â Šâ žâ Šâ â â ¢" }, { "input": "militias", "output": "â â Šâ ‡â Šâ žâ Šâ â Ž" }, { "input": "milk", "output": "â â Šâ ‡â …" }, { "input": "milked", "output": "â â Šâ ‡â …â «" }, { "input": "milker", "output": "â â Šâ ‡â …â »" }, { "input": "milkier", "output": "â â Šâ ‡â …â Šâ »" }, { "input": "milkiest", "output": "â â Šâ ‡â …â Šâ ‘â Œ" }, { "input": "milkiness", "output": "â â Šâ ‡â …â Šâ °â Ž" }, { "input": "milking", "output": "â â Šâ ‡â …â ¬" }, { "input": "milkmaid", "output": "â â Šâ ‡â …â â â Šâ ™" }, { "input": "milkmaids", "output": "â â Šâ ‡â …â â â Šâ ™â Ž" }, { "input": "milkman", "output": "â â Šâ ‡â …â â â " }, { "input": "milkmen", "output": "â â Šâ ‡â …â â ¢" }, { "input": "milks", "output": "â â Šâ ‡â …â Ž" }, { "input": "milkshake", "output": "â â Šâ ‡â …â ©â â …â ‘" }, { "input": "milkshakes", "output": "â â Šâ ‡â …â ©â â …â ‘â Ž" }, { "input": "milksop", "output": "â â Šâ ‡â …â Žâ •â " }, { "input": "milksops", "output": "â â Šâ ‡â …â Žâ •â â Ž" }, { "input": "milkweed", "output": "â â Šâ ‡â …⠺⠑⠫" }, { "input": "milkweeds", "output": "â â Šâ ‡â …⠺⠑⠫⠎" }, { "input": "milky", "output": "â â Šâ ‡â …â ½" }, { "input": "mill", "output": "â â Šâ ‡â ‡" }, { "input": "millage", "output": "â â Šâ ‡â ‡â â ›â ‘" }, { "input": "milled", "output": "â â Šâ ‡â ‡â «" }, { "input": "millennia", "output": "â â Šâ ‡â ‡â ¢â â Šâ " }, { "input": "millennial", "output": "â â Šâ ‡â ‡â ¢â â Šâ â ‡" }, { "input": "millennium", "output": "â â Šâ ‡â ‡â ¢â â Šâ ¥â " }, { "input": "millenniums", "output": "â â Šâ ‡â ‡â ¢â â Šâ ¥â â Ž" }, { "input": "millepede", "output": "â â Šâ ‡â ‡â ‘â â «â ‘" }, { "input": "millepedes", "output": "â â Šâ ‡â ‡â ‘â â «â ‘â Ž" }, { "input": "miller", "output": "â â Šâ ‡â ‡â »" }, { "input": "millers", "output": "â â Šâ ‡â ‡â »â Ž" }, { "input": "millet", "output": "â â Šâ ‡â ‡â ‘â ž" }, { "input": "milligram", "output": "â â Šâ ‡â ‡â Šâ ›â —â â " }, { "input": "milligrams", "output": "â â Šâ ‡â ‡â Šâ ›â —â â â Ž" }, { "input": "milliliter", "output": "â â Šâ ‡â ‡â Šâ ‡â Šâ žâ »" }, { "input": "milliliters", "output": "â â Šâ ‡â ‡â Šâ ‡â Šâ žâ »â Ž" }, { "input": "millimeter", "output": "â â Šâ ‡â ‡â Šâ â ‘â žâ »" }, { "input": "millimeters", "output": "â â Šâ ‡â ‡â Šâ â ‘⠞⠻⠎" }, { "input": "milliner", "output": "â â Šâ ‡â ‡â ”â »" }, { "input": "milliners", "output": "â â Šâ ‡â ‡â ”⠻⠎" }, { "input": "millinery", "output": "â â Šâ ‡â ‡â ”⠻⠽" }, { "input": "milling", "output": "â â Šâ ‡â ‡â ¬" }, { "input": "million", "output": "â â Šâ ‡â ‡â Šâ •â " }, { "input": "millionaire", "output": "â â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘" }, { "input": "millionaires", "output": "â â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘â Ž" }, { "input": "millions", "output": "â â Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "millionth", "output": "â â Šâ ‡â ‡â Šâ •â â ¹" }, { "input": "millionths", "output": "â â Šâ ‡â ‡â Šâ •â â ¹â Ž" }, { "input": "millipede", "output": "â â Šâ ‡â ‡â Šâ â «â ‘" }, { "input": "millipedes", "output": "â â Šâ ‡â ‡â Šâ â «â ‘â Ž" }, { "input": "millisecond", "output": "â â Šâ ‡â ‡â Šâ Žâ ‘⠉⠕â â ™" }, { "input": "milliseconds", "output": "â â Šâ ‡â ‡â Šâ Žâ ‘⠉⠕â â ™â Ž" }, { "input": "millrace", "output": "â â Šâ ‡â ‡â —â â ‰â ‘" }, { "input": "millraces", "output": "â â Šâ ‡â ‡â —â â ‰â ‘â Ž" }, { "input": "mills", "output": "â â Šâ ‡â ‡â Ž" }, { "input": "millstone", "output": "â â Šâ ‡â ‡â Œâ â •" }, { "input": "millstones", "output": "â â Šâ ‡â ‡â Œâ â •â Ž" }, { "input": "milquetoast", "output": "â â Šâ ‡â Ÿâ ¥â ‘â žâ •â â Œ" }, { "input": "milquetoasts", "output": "â â Šâ ‡â Ÿâ ¥â ‘â žâ •â â Œâ Ž" }, { "input": "mils", "output": "â â Šâ ‡â Ž" }, { "input": "mime", "output": "â â Šâ â ‘" }, { "input": "mimed", "output": "â â Šâ â «" }, { "input": "mimeograph", "output": "â â Šâ â ‘⠕⠛⠗â â â “" }, { "input": "mimeographed", "output": "â â Šâ â ‘⠕⠛⠗â â â “â «" }, { "input": "mimeographing", "output": "â â Šâ â ‘⠕⠛⠗â â â “â ¬" }, { "input": "mimeographs", "output": "â â Šâ â ‘⠕⠛⠗â â â “â Ž" }, { "input": "mimes", "output": "â â Šâ â ‘â Ž" }, { "input": "mimetic", "output": "â â Šâ â ‘â žâ Šâ ‰" }, { "input": "mimic", "output": "â â Šâ â Šâ ‰" }, { "input": "mimicked", "output": "â â Šâ â Šâ ‰â …â «" }, { "input": "mimicking", "output": "â â Šâ â Šâ ‰â …â ¬" }, { "input": "mimicries", "output": "â â Šâ â Šâ ‰â —â Šâ ‘â Ž" }, { "input": "mimicry", "output": "â â Šâ â Šâ ‰â —â ½" }, { "input": "mimics", "output": "â â Šâ â Šâ ‰â Ž" }, { "input": "miming", "output": "â â Šâ â ¬" }, { "input": "mimosa", "output": "â â Šâ â •â Žâ " }, { "input": "mimosas", "output": "â â Šâ â •â Žâ â Ž" }, { "input": "minaret", "output": "â â ”⠜⠑⠞" }, { "input": "minarets", "output": "â â ”⠜⠑⠞⠎" }, { "input": "minatory", "output": "â â ”â â žâ •â —â ½" }, { "input": "mince", "output": "â â ”⠉⠑" }, { "input": "minced", "output": "â â ”⠉⠫" }, { "input": "mincemeat", "output": "â â ”⠉⠑â â ‚â ž" }, { "input": "minces", "output": "â â ”⠉⠑⠎" }, { "input": "mincing", "output": "â â ”⠉⠬" }, { "input": "mind", "output": "â â ”â ™" }, { "input": "mindbogglingly", "output": "â â ”⠙⠃⠕⠶⠇⠬⠇⠽" }, { "input": "minded", "output": "â â ”⠙⠫" }, { "input": "mindedness", "output": "â â ”⠙⠫⠰⠎" }, { "input": "mindful", "output": "â â ”⠙⠰⠇" }, { "input": "mindfully", "output": "â â ”⠙⠰⠇⠇⠽" }, { "input": "mindfulness", "output": "â â ”⠙⠰⠇⠰⠎" }, { "input": "minding", "output": "â â ”⠙⠬" }, { "input": "mindless", "output": "â â ”⠙⠨⠎" }, { "input": "mindlessly", "output": "â â ”⠙⠨⠎⠇⠽" }, { "input": "mindlessness", "output": "â â ”⠙⠨⠎⠰⠎" }, { "input": "minds", "output": "â â ”⠙⠎" }, { "input": "mine", "output": "â â ”â ‘" }, { "input": "mined", "output": "â â ”â «" }, { "input": "minefield", "output": "â â ”⠑⠋⠊⠑⠇⠙" }, { "input": "minefields", "output": "â â ”⠑⠋⠊⠑⠇⠙⠎" }, { "input": "miner", "output": "â â ”â »" }, { "input": "mineral", "output": "â â ”â »â â ‡" }, { "input": "mineralogist", "output": "â â ”â »â â ‡â •⠛⠊⠌" }, { "input": "mineralogists", "output": "â â ”â »â â ‡â •⠛⠊⠌⠎" }, { "input": "mineralogy", "output": "â â ”â »â â ‡â •⠛⠽" }, { "input": "minerals", "output": "â â ”â »â â ‡â Ž" }, { "input": "miners", "output": "â â ”⠻⠎" }, { "input": "mines", "output": "â â ”â ‘â Ž" }, { "input": "minestrone", "output": "â â ”⠑⠌⠗⠕â â ‘" }, { "input": "minesweeper", "output": "â â ”⠑⠎⠺⠑⠑â â »" }, { "input": "minesweepers", "output": "â â ”⠑⠎⠺⠑⠑â â »â Ž" }, { "input": "mingle", "output": "â â ¬â ‡â ‘" }, { "input": "mingled", "output": "â â ¬â ‡â «" }, { "input": "mingles", "output": "â â ¬â ‡â ‘â Ž" }, { "input": "mingling", "output": "â â ¬â ‡â ¬" }, { "input": "mini", "output": "â â ”â Š" }, { "input": "miniature", "output": "â â ”â Šâ â žâ ¥â —â ‘" }, { "input": "miniatures", "output": "â â ”â Šâ â žâ ¥â —â ‘â Ž" }, { "input": "miniaturist", "output": "â â ”â Šâ â žâ ¥â —â Šâ Œ" }, { "input": "miniaturists", "output": "â â ”â Šâ â žâ ¥â —⠊⠌⠎" }, { "input": "miniaturization", "output": "â â ”â Šâ â žâ ¥â —â Šâ µâ â °â " }, { "input": "miniaturize", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠑" }, { "input": "miniaturized", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠫" }, { "input": "miniaturizes", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠑⠎" }, { "input": "miniaturizing", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠬" }, { "input": "minibike", "output": "â â ”⠊⠃⠊⠅⠑" }, { "input": "minibikes", "output": "â â ”⠊⠃⠊⠅⠑⠎" }, { "input": "minibus", "output": "â â ”⠊⠃⠥⠎" }, { "input": "minibuses", "output": "â â ”⠊⠃⠥⠎⠑⠎" }, { "input": "minibusses", "output": "â â ”⠊⠃⠥⠎⠎⠑⠎" }, { "input": "minicam", "output": "â â ”â Šâ ‰â â " }, { "input": "minicams", "output": "â â ”â Šâ ‰â â â Ž" }, { "input": "minicomputer", "output": "â â ”⠊⠉⠕â â â ¥â žâ »" }, { "input": "minicomputers", "output": "â â ”⠊⠉⠕â â â ¥â žâ »â Ž" }, { "input": "minim", "output": "â â ”â Šâ " }, { "input": "minima", "output": "â â ”â Šâ â " }, { "input": "minimal", "output": "â â ”â Šâ â â ‡" }, { "input": "minimalism", "output": "â â ”â Šâ â â ‡â Šâ Žâ " }, { "input": "minimalist", "output": "â â ”â Šâ â â ‡â Šâ Œ" }, { "input": "minimalists", "output": "â â ”â Šâ â â ‡â Šâ Œâ Ž" }, { "input": "minimally", "output": "â â ”â Šâ â â ‡â ‡â ½" }, { "input": "minimization", "output": "â â ”â Šâ â Šâ µâ â °â " }, { "input": "minimize", "output": "â â ”â Šâ â Šâ µâ ‘" }, { "input": "minimized", "output": "â â ”â Šâ â Šâ µâ «" }, { "input": "minimizes", "output": "â â ”â Šâ â Šâ µâ ‘â Ž" }, { "input": "minimizing", "output": "â â ”â Šâ â Šâ µâ ¬" }, { "input": "minims", "output": "â â ”â Šâ â Ž" }, { "input": "minimum", "output": "â â ”â Šâ â ¥â " }, { "input": "minimums", "output": "â â ”â Šâ â ¥â â Ž" }, { "input": "mining", "output": "â â ”â ¬" }, { "input": "minion", "output": "â â ”â Šâ •â " }, { "input": "minions", "output": "â â ”â Šâ •â â Ž" }, { "input": "minis", "output": "â â ”â Šâ Ž" }, { "input": "miniscule", "output": "â â ”⠊⠎⠉⠥⠇⠑" }, { "input": "miniscules", "output": "â â ”⠊⠎⠉⠥⠇⠑⠎" }, { "input": "miniseries", "output": "â â ”⠊⠎⠻⠊⠑⠎" }, { "input": "miniskirt", "output": "â â ”â Šâ Žâ …â Šâ —â ž" }, { "input": "miniskirts", "output": "â â ”â Šâ Žâ …â Šâ —â žâ Ž" }, { "input": "minister", "output": "â â ”⠊⠌⠻" }, { "input": "ministered", "output": "â â ”⠊⠌⠻⠫" }, { "input": "ministerial", "output": "â â ”⠊⠌⠻⠊â â ‡" }, { "input": "ministering", "output": "â â ”⠊⠌⠻⠬" }, { "input": "ministers", "output": "â â ”⠊⠌⠻⠎" }, { "input": "ministrant", "output": "â â ”⠊⠌⠗â â â ž" }, { "input": "ministrants", "output": "â â ”⠊⠌⠗â â â žâ Ž" }, { "input": "ministration", "output": "â â ”⠊⠌⠗â â °â " }, { "input": "ministrations", "output": "â â ”⠊⠌⠗â â °â â Ž" }, { "input": "ministries", "output": "â â ”⠊⠌⠗⠊⠑⠎" }, { "input": "ministry", "output": "â â ”⠊⠌⠗⠽" }, { "input": "minivan", "output": "â â ”â Šâ §â â " }, { "input": "minivans", "output": "â â ”â Šâ §â â â Ž" }, { "input": "mink", "output": "â â ”â …" }, { "input": "minks", "output": "â â ”â …â Ž" }, { "input": "minnow", "output": "â â ”â â ª" }, { "input": "minnows", "output": "â â ”â â ªâ Ž" }, { "input": "minor", "output": "â â ”â •â —" }, { "input": "minored", "output": "â â ”â •â —â «" }, { "input": "minoring", "output": "â â ”â •â —â ¬" }, { "input": "minorities", "output": "â â ”â •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "minority", "output": "â â ”â •â —â °â ½" }, { "input": "minors", "output": "â â ”â •â —â Ž" }, { "input": "minster", "output": "â â ”⠌⠻" }, { "input": "minstrel", "output": "â â ”⠌⠗⠑⠇" }, { "input": "minstrels", "output": "â â ”⠌⠗⠑⠇⠎" }, { "input": "mint", "output": "â â ”â ž" }, { "input": "minted", "output": "â â ”â žâ «" }, { "input": "mintier", "output": "â â ”â žâ Šâ »" }, { "input": "mintiest", "output": "â â ”â žâ Šâ ‘â Œ" }, { "input": "minting", "output": "â â ”â žâ ¬" }, { "input": "mints", "output": "â â ”â žâ Ž" }, { "input": "minty", "output": "â â ”â žâ ½" }, { "input": "minuend", "output": "â â ”⠥⠢⠙" }, { "input": "minuends", "output": "â â ”⠥⠢⠙⠎" }, { "input": "minuet", "output": "â â ”⠥⠑⠞" }, { "input": "minuets", "output": "â â ”⠥⠑⠞⠎" }, { "input": "minus", "output": "â â ”⠥⠎" }, { "input": "minuscule", "output": "â â ”⠥⠎⠉⠥⠇⠑" }, { "input": "minuscules", "output": "â â ”⠥⠎⠉⠥⠇⠑⠎" }, { "input": "minuses", "output": "â â ”⠥⠎⠑⠎" }, { "input": "minute", "output": "â â ”⠥⠞⠑" }, { "input": "minuted", "output": "â â ”⠥⠞⠫" }, { "input": "minutely", "output": "â â ”⠥⠞⠑⠇⠽" }, { "input": "minuteman", "output": "â â ”⠥⠞⠑â â â " }, { "input": "minutemen", "output": "â â ”⠥⠞⠑â â ¢" }, { "input": "minuteness", "output": "â â ”⠥⠞⠑⠰⠎" }, { "input": "minuter", "output": "â â ”⠥⠞⠻" }, { "input": "minutes", "output": "â â ”⠥⠞⠑⠎" }, { "input": "minutest", "output": "â â ”⠥⠞⠑⠌" }, { "input": "minutia", "output": "â â ”⠥⠞⠊â " }, { "input": "minutiae", "output": "â â ”⠥⠞⠊â â ‘" }, { "input": "minuting", "output": "â â ”⠥⠞⠬" }, { "input": "minx", "output": "â â ”â ­" }, { "input": "minxes", "output": "â â ”â ­â ‘â Ž" }, { "input": "miracle", "output": "â â Šâ —â â ‰â ‡â ‘" }, { "input": "miracles", "output": "â â Šâ —â â ‰â ‡â ‘â Ž" }, { "input": "miraculous", "output": "â â Šâ —â â ‰â ¥â ‡â ³â Ž" }, { "input": "miraculously", "output": "â â Šâ —â â ‰â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "mirage", "output": "â â Šâ —â â ›â ‘" }, { "input": "mirages", "output": "â â Šâ —â â ›â ‘â Ž" }, { "input": "mire", "output": "â â Šâ —â ‘" }, { "input": "mired", "output": "â â Šâ —â «" }, { "input": "mires", "output": "â â Šâ —â ‘â Ž" }, { "input": "miring", "output": "â â Šâ —â ¬" }, { "input": "mirror", "output": "â â Šâ —â —â •â —" }, { "input": "mirrored", "output": "â â Šâ —â —â •â —â «" }, { "input": "mirroring", "output": "â â Šâ —â —â •â —â ¬" }, { "input": "mirrors", "output": "â â Šâ —â —â •â —â Ž" }, { "input": "mirth", "output": "â â Šâ —â ¹" }, { "input": "mirthful", "output": "â â Šâ —⠹⠰⠇" }, { "input": "mirthfully", "output": "â â Šâ —⠹⠰⠇⠇⠽" }, { "input": "mirthless", "output": "â â Šâ —⠹⠨⠎" }, { "input": "misadventure", "output": "â â Šâ Žâ â ™â §â ¢â žâ ¥â —â ‘" }, { "input": "misadventures", "output": "â â Šâ Žâ â ™â §â ¢â žâ ¥â —â ‘â Ž" }, { "input": "misalignment", "output": "â â Šâ Žâ â ‡â Šâ ›â â °â ž" }, { "input": "misalliance", "output": "â â Šâ Žâ â ‡â ‡â Šâ ¨â ‘" }, { "input": "misalliances", "output": "â â Šâ Žâ â ‡â ‡â Šâ ¨â ‘â Ž" }, { "input": "misanthrope", "output": "â â Šâ Žâ â â ¹â —â •â â ‘" }, { "input": "misanthropes", "output": "â â Šâ Žâ â â ¹â —â •â â ‘â Ž" }, { "input": "misanthropic", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ ‰" }, { "input": "misanthropist", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ Œ" }, { "input": "misanthropists", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ Œâ Ž" }, { "input": "misanthropy", "output": "â â Šâ Žâ â â ¹â —â •â â ½" }, { "input": "misapplication", "output": "â â Šâ Žâ â â â ‡â Šâ ‰â â °â " }, { "input": "misapplied", "output": "â â Šâ Žâ â â â ‡â Šâ «" }, { "input": "misapplies", "output": "â â Šâ Žâ â â â ‡â Šâ ‘â Ž" }, { "input": "misapply", "output": "â â Šâ Žâ â â â ‡â ½" }, { "input": "misapplying", "output": "â â Šâ Žâ â â â ‡â ½â ¬" }, { "input": "misapprehend", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙" }, { "input": "misapprehended", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙⠫" }, { "input": "misapprehending", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙⠬" }, { "input": "misapprehends", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙⠎" }, { "input": "misapprehension", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠨â " }, { "input": "misapprehensions", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠨â â Ž" }, { "input": "misappropriate", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ ‘" }, { "input": "misappropriated", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ «" }, { "input": "misappropriates", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ ‘â Ž" }, { "input": "misappropriating", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ ¬" }, { "input": "misappropriation", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â °â " }, { "input": "misappropriations", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â °â â Ž" }, { "input": "misbegotten", "output": "â â Šâ Žâ ƒâ ‘⠛⠕⠞⠞⠢" }, { "input": "misbehave", "output": "â â Šâ Žâ ƒâ ‘â “â â §â ‘" }, { "input": "misbehaved", "output": "â â Šâ Žâ ƒâ ‘â “â â §â «" }, { "input": "misbehaves", "output": "â â Šâ Žâ ƒâ ‘â “â â §â ‘â Ž" }, { "input": "misbehaving", "output": "â â Šâ Žâ ƒâ ‘â “â â §â ¬" }, { "input": "misbehavior", "output": "â â Šâ Žâ ƒâ ‘â “â â §â Šâ •â —" }, { "input": "miscalculate", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ ‘" }, { "input": "miscalculated", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ «" }, { "input": "miscalculates", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "miscalculating", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ ¬" }, { "input": "miscalculation", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â °â " }, { "input": "miscalculations", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â °â â Ž" }, { "input": "miscall", "output": "â â Šâ Žâ ‰â â ‡â ‡" }, { "input": "miscalled", "output": "â â Šâ Žâ ‰â â ‡â ‡â «" }, { "input": "miscalling", "output": "â â Šâ Žâ ‰â â ‡â ‡â ¬" }, { "input": "miscalls", "output": "â â Šâ Žâ ‰â â ‡â ‡â Ž" }, { "input": "miscarriage", "output": "â â Šâ Žâ ‰â œâ —â Šâ â ›â ‘" }, { "input": "miscarriages", "output": "â â Šâ Žâ ‰â œâ —â Šâ â ›â ‘â Ž" }, { "input": "miscarried", "output": "â â Šâ Žâ ‰â œâ —â Šâ «" }, { "input": "miscarries", "output": "â â Šâ Žâ ‰â œâ —â Šâ ‘â Ž" }, { "input": "miscarry", "output": "â â Šâ Žâ ‰â œâ —â ½" }, { "input": "miscarrying", "output": "â â Šâ Žâ ‰â œâ —⠽⠬" }, { "input": "miscast", "output": "â â Šâ Žâ ‰â â Œ" }, { "input": "miscasting", "output": "â â Šâ Žâ ‰â â Œâ ¬" }, { "input": "miscasts", "output": "â â Šâ Žâ ‰â â Œâ Ž" }, { "input": "miscegenation", "output": "â â Šâ Žâ ‰â ‘⠛⠢â â °â " }, { "input": "miscellaneous", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â ‘⠳⠎" }, { "input": "miscellanies", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â Šâ ‘â Ž" }, { "input": "miscellany", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â ½" }, { "input": "mischance", "output": "â â Šâ Žâ ¡â ¨â ‘" }, { "input": "mischances", "output": "â â Šâ Žâ ¡â ¨â ‘â Ž" }, { "input": "mischief", "output": "â â Šâ Žâ ¡â Šâ ‘â ‹" }, { "input": "mischievous", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎" }, { "input": "mischievously", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎⠇⠽" }, { "input": "mischievousness", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎⠰⠎" }, { "input": "misconceive", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â ‘" }, { "input": "misconceived", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â «" }, { "input": "misconceives", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â ‘â Ž" }, { "input": "misconceiving", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â ¬" }, { "input": "misconception", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â â °â " }, { "input": "misconceptions", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â â °â â Ž" }, { "input": "misconduct", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â ž" }, { "input": "misconducted", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ «" }, { "input": "misconducting", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ ¬" }, { "input": "misconducts", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ Ž" }, { "input": "misconstruction", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠉⠰â " }, { "input": "misconstructions", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠉⠰â â Ž" }, { "input": "misconstrue", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠑" }, { "input": "misconstrued", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠫" }, { "input": "misconstrues", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠑⠎" }, { "input": "misconstruing", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠬" }, { "input": "miscount", "output": "â â Šâ Žâ ‰â ¨â ž" }, { "input": "miscounted", "output": "â â Šâ Žâ ‰â ¨â žâ «" }, { "input": "miscounting", "output": "â â Šâ Žâ ‰â ¨â žâ ¬" }, { "input": "miscounts", "output": "â â Šâ Žâ ‰â ¨â žâ Ž" }, { "input": "miscreant", "output": "â â Šâ Žâ ‰â —â ‚â â ž" }, { "input": "miscreants", "output": "â â Šâ Žâ ‰â —â ‚â â žâ Ž" }, { "input": "miscue", "output": "â â Šâ Žâ ‰â ¥â ‘" }, { "input": "miscued", "output": "â â Šâ Žâ ‰â ¥â «" }, { "input": "miscues", "output": "â â Šâ Žâ ‰â ¥â ‘â Ž" }, { "input": "miscuing", "output": "â â Šâ Žâ ‰â ¥â ¬" }, { "input": "misdeal", "output": "â â Šâ Žâ ™â ‚â ‡" }, { "input": "misdealing", "output": "â â Šâ Žâ ™â ‚⠇⠬" }, { "input": "misdeals", "output": "â â Šâ Žâ ™â ‚⠇⠎" }, { "input": "misdealt", "output": "â â Šâ Žâ ™â ‚⠇⠞" }, { "input": "misdeed", "output": "â â Šâ Žâ ™â ‘â «" }, { "input": "misdeeds", "output": "â â Šâ Žâ ™â ‘â «â Ž" }, { "input": "misdemeanor", "output": "â â Šâ Žâ ™â ‘â â ‚â â •â —" }, { "input": "misdemeanors", "output": "â â Šâ Žâ ™â ‘â â ‚â â •â —â Ž" }, { "input": "misdiagnose", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ ‘" }, { "input": "misdiagnosed", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ «" }, { "input": "misdiagnoses", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ ‘â Ž" }, { "input": "misdiagnosing", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ ¬" }, { "input": "misdiagnosis", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ Šâ Ž" }, { "input": "misdid", "output": "â â Šâ Žâ ™â Šâ ™" }, { "input": "misdirect", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞" }, { "input": "misdirected", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞⠫" }, { "input": "misdirecting", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞⠬" }, { "input": "misdirection", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠰â " }, { "input": "misdirects", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞⠎" }, { "input": "misdo", "output": "â â Šâ Žâ ™â •" }, { "input": "misdoes", "output": "â â Šâ Žâ ™â •â ‘â Ž" }, { "input": "misdoing", "output": "â â Šâ Žâ ™â •â ¬" }, { "input": "misdoings", "output": "â â Šâ Žâ ™â •⠬⠎" }, { "input": "misdone", "output": "â â Šâ Žâ ™â â •" }, { "input": "miser", "output": "â â Šâ Žâ »" }, { "input": "miserable", "output": "â â Šâ Žâ »â â ƒâ ‡â ‘" }, { "input": "miserably", "output": "â â Šâ Žâ »â â ƒâ ‡â ½" }, { "input": "miseries", "output": "â â Šâ Žâ »â Šâ ‘â Ž" }, { "input": "miserliness", "output": "â â Šâ Žâ »â ‡â Šâ °â Ž" }, { "input": "miserly", "output": "â â Šâ Žâ »â ‡â ½" }, { "input": "misers", "output": "â â Šâ Žâ »â Ž" }, { "input": "misery", "output": "â â Šâ Žâ »â ½" }, { "input": "misfeasance", "output": "â â Šâ Žâ ‹â ‚⠎⠨⠑" }, { "input": "misfire", "output": "â â Šâ Žâ ‹â Šâ —â ‘" }, { "input": "misfired", "output": "â â Šâ Žâ ‹â Šâ —â «" }, { "input": "misfires", "output": "â â Šâ Žâ ‹â Šâ —â ‘â Ž" }, { "input": "misfiring", "output": "â â Šâ Žâ ‹â Šâ —â ¬" }, { "input": "misfit", "output": "â â Šâ Žâ ‹â Šâ ž" }, { "input": "misfits", "output": "â â Šâ Žâ ‹â Šâ žâ Ž" }, { "input": "misfitted", "output": "â â Šâ Žâ ‹â Šâ žâ žâ «" }, { "input": "misfitting", "output": "â â Šâ Žâ ‹â Šâ žâ žâ ¬" }, { "input": "misfortune", "output": "â â Šâ Žâ ¿â žâ ¥â â ‘" }, { "input": "misfortunes", "output": "â â Šâ Žâ ¿â žâ ¥â â ‘â Ž" }, { "input": "misgiving", "output": "â â Šâ Žâ ›â Šâ §â ¬" }, { "input": "misgivings", "output": "â â Šâ Žâ ›â Šâ §â ¬â Ž" }, { "input": "misgovern", "output": "â â Šâ Žâ ›â •â §â »â " }, { "input": "misgoverned", "output": "â â Šâ Žâ ›â •â §â »â â «" }, { "input": "misgoverning", "output": "â â Šâ Žâ ›â •â §â »â â ¬" }, { "input": "misgoverns", "output": "â â Šâ Žâ ›â •â §â »â â Ž" }, { "input": "misguide", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ‘" }, { "input": "misguided", "output": "â â Šâ Žâ ›â ¥â Šâ ™â «" }, { "input": "misguidedly", "output": "â â Šâ Žâ ›â ¥â Šâ ™â «â ‡â ½" }, { "input": "misguides", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ‘â Ž" }, { "input": "misguiding", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ¬" }, { "input": "mishandle", "output": "â â Šâ Žâ “⠯⠇⠑" }, { "input": "mishandled", "output": "â â Šâ Žâ “⠯⠇⠫" }, { "input": "mishandles", "output": "â â Šâ Žâ “⠯⠇⠑⠎" }, { "input": "mishandling", "output": "â â Šâ Žâ “⠯⠇⠬" }, { "input": "mishap", "output": "â â Šâ Žâ “â â " }, { "input": "mishaps", "output": "â â Šâ Žâ “â â â Ž" }, { "input": "mishmash", "output": "â â Šâ ©â â â ©" }, { "input": "mishmashes", "output": "â â Šâ ©â â â ©â ‘â Ž" }, { "input": "misidentified", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â Šâ «" }, { "input": "misidentifies", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "misidentify", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â ½" }, { "input": "misidentifying", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â ½â ¬" }, { "input": "misinform", "output": "â â Šâ Žâ ”â ¿â " }, { "input": "misinformation", "output": "â â Šâ Žâ ”â ¿â â â °â " }, { "input": "misinformed", "output": "â â Šâ Žâ ”â ¿â â «" }, { "input": "misinforming", "output": "â â Šâ Žâ ”â ¿â â ¬" }, { "input": "misinforms", "output": "â â Šâ Žâ ”â ¿â â Ž" }, { "input": "misinterpret", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â ž" }, { "input": "misinterpretation", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ â °â " }, { "input": "misinterpretations", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ â °â â Ž" }, { "input": "misinterpreted", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ «" }, { "input": "misinterpreting", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ ¬" }, { "input": "misinterprets", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ Ž" }, { "input": "misjudge", "output": "â â Šâ Žâ šâ ¥â ™â ›â ‘" }, { "input": "misjudged", "output": "â â Šâ Žâ šâ ¥â ™â ›â «" }, { "input": "misjudgement", "output": "â â Šâ Žâ šâ ¥â ™â ›â ‘â °â ž" }, { "input": "misjudgements", "output": "â â Šâ Žâ šâ ¥â ™â ›â ‘â °â žâ Ž" }, { "input": "misjudges", "output": "â â Šâ Žâ šâ ¥â ™â ›â ‘â Ž" }, { "input": "misjudging", "output": "â â Šâ Žâ šâ ¥â ™â ›â ¬" }, { "input": "misjudgment", "output": "â â Šâ Žâ šâ ¥â ™â ›â °â ž" }, { "input": "misjudgments", "output": "â â Šâ Žâ šâ ¥â ™â ›â °â žâ Ž" }, { "input": "mislaid", "output": "â â Šâ Žâ ‡â â Šâ ™" }, { "input": "mislay", "output": "â â Šâ Žâ ‡â â ½" }, { "input": "mislaying", "output": "â â Šâ Žâ ‡â â ½â ¬" }, { "input": "mislays", "output": "â â Šâ Žâ ‡â â ½â Ž" }, { "input": "mislead", "output": "â â Šâ Žâ ‡â ‚â ™" }, { "input": "misleading", "output": "â â Šâ Žâ ‡â ‚⠙⠬" }, { "input": "misleads", "output": "â â Šâ Žâ ‡â ‚⠙⠎" }, { "input": "misled", "output": "â â Šâ Žâ ‡â «" }, { "input": "mismanage", "output": "â â Šâ Žâ â â â â ›â ‘" }, { "input": "mismanaged", "output": "â â Šâ Žâ â â â â ›â «" }, { "input": "mismanagement", "output": "â â Šâ Žâ â â â â ›â ‘â °â ž" }, { "input": "mismanages", "output": "â â Šâ Žâ â â â â ›â ‘â Ž" }, { "input": "mismanaging", "output": "â â Šâ Žâ â â â â ›â ¬" }, { "input": "mismatch", "output": "â â Šâ Žâ â â žâ ¡" }, { "input": "mismatched", "output": "â â Šâ Žâ â â žâ ¡â «" }, { "input": "mismatches", "output": "â â Šâ Žâ â â žâ ¡â ‘â Ž" }, { "input": "mismatching", "output": "â â Šâ Žâ â â žâ ¡â ¬" }, { "input": "misnomer", "output": "â â Šâ Žâ â •â â »" }, { "input": "misnomers", "output": "â â Šâ Žâ â •â â »â Ž" }, { "input": "misogynist", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œ" }, { "input": "misogynistic", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œâ Šâ ‰" }, { "input": "misogynists", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œâ Ž" }, { "input": "misogyny", "output": "â â Šâ Žâ •⠛⠽â â ½" }, { "input": "misplace", "output": "â â Šâ Žâ â ‡â â ‰â ‘" }, { "input": "misplaced", "output": "â â Šâ Žâ â ‡â â ‰â «" }, { "input": "misplaces", "output": "â â Šâ Žâ â ‡â â ‰â ‘â Ž" }, { "input": "misplacing", "output": "â â Šâ Žâ â ‡â â ‰â ¬" }, { "input": "misplay", "output": "â â Šâ Žâ â ‡â â ½" }, { "input": "misplayed", "output": "â â Šâ Žâ â ‡â â ½â «" }, { "input": "misplaying", "output": "â â Šâ Žâ â ‡â â ½â ¬" }, { "input": "misplays", "output": "â â Šâ Žâ â ‡â â ½â Ž" }, { "input": "misprint", "output": "â â Šâ Žâ â —⠔⠞" }, { "input": "misprinted", "output": "â â Šâ Žâ â —⠔⠞⠫" }, { "input": "misprinting", "output": "â â Šâ Žâ â —⠔⠞⠬" }, { "input": "misprints", "output": "â â Šâ Žâ â —⠔⠞⠎" }, { "input": "mispronounce", "output": "â â Šâ Žâ â —â •â â ³â â ‰â ‘" }, { "input": "mispronounced", "output": "â â Šâ Žâ â —â •â â ³â â ‰â «" }, { "input": "mispronounces", "output": "â â Šâ Žâ â —â •â â ³â â ‰â ‘â Ž" }, { "input": "mispronouncing", "output": "â â Šâ Žâ â —â •â â ³â â ‰â ¬" }, { "input": "mispronunciation", "output": "â â Šâ Žâ â —â •â â ¥â â ‰â Šâ â °â " }, { "input": "mispronunciations", "output": "â â Šâ Žâ â —â •â â ¥â â ‰â Šâ â °â â Ž" }, { "input": "misquotation", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ â °â " }, { "input": "misquotations", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ â °â â Ž" }, { "input": "misquote", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ ‘" }, { "input": "misquoted", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ «" }, { "input": "misquotes", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ ‘â Ž" }, { "input": "misquoting", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ ¬" }, { "input": "misread", "output": "â â Šâ Žâ —â ‚â ™" }, { "input": "misreading", "output": "â â Šâ Žâ —⠂⠙⠬" }, { "input": "misreadings", "output": "â â Šâ Žâ —⠂⠙⠬⠎" }, { "input": "misreads", "output": "â â Šâ Žâ —⠂⠙⠎" }, { "input": "misrepresent", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞" }, { "input": "misrepresentation", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞â â °â " }, { "input": "misrepresentations", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞â â °â â Ž" }, { "input": "misrepresented", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠫" }, { "input": "misrepresenting", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠬" }, { "input": "misrepresents", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠎" }, { "input": "misrule", "output": "â â Šâ Žâ —⠥⠇⠑" }, { "input": "misruled", "output": "â â Šâ Žâ —⠥⠇⠫" }, { "input": "misrules", "output": "â â Šâ Žâ —⠥⠇⠑⠎" }, { "input": "misruling", "output": "â â Šâ Žâ —⠥⠇⠬" }, { "input": "miss", "output": "â â Šâ Žâ Ž" }, { "input": "missal", "output": "â â Šâ Žâ Žâ â ‡" }, { "input": "missals", "output": "â â Šâ Žâ Žâ â ‡â Ž" }, { "input": "missed", "output": "â â Šâ Žâ Žâ «" }, { "input": "misses", "output": "â â Šâ Žâ Žâ ‘â Ž" }, { "input": "misshapen", "output": "â â Šâ Žâ ©â â â ¢" }, { "input": "missile", "output": "â â Šâ Žâ Žâ Šâ ‡â ‘" }, { "input": "missilery", "output": "â â Šâ Žâ Žâ Šâ ‡â »â ½" }, { "input": "missiles", "output": "â â Šâ Žâ Žâ Šâ ‡â ‘â Ž" }, { "input": "missing", "output": "â â Šâ Žâ Žâ ¬" }, { "input": "mission", "output": "â â Šâ Žâ ¨â " }, { "input": "missionaries", "output": "â â Šâ Žâ ¨â â œâ Šâ ‘â Ž" }, { "input": "missionary", "output": "â â Šâ Žâ ¨â â œâ ½" }, { "input": "missions", "output": "â â Šâ Žâ ¨â â Ž" }, { "input": "missive", "output": "â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "missives", "output": "â â Šâ Žâ Žâ Šâ §â ‘â Ž" }, { "input": "misspell", "output": "â â Šâ Žâ Žâ â ‘⠇⠇" }, { "input": "misspelled", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠫" }, { "input": "misspelling", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠬" }, { "input": "misspellings", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠬⠎" }, { "input": "misspells", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠎" }, { "input": "misspelt", "output": "â â Šâ Žâ Žâ â ‘⠇⠞" }, { "input": "misspend", "output": "â â Šâ Žâ Žâ â ¢â ™" }, { "input": "misspending", "output": "â â Šâ Žâ Žâ â ¢â ™â ¬" }, { "input": "misspends", "output": "â â Šâ Žâ Žâ â ¢â ™â Ž" }, { "input": "misspent", "output": "â â Šâ Žâ Žâ â ¢â ž" }, { "input": "misstate", "output": "â â Šâ Žâ Œâ â žâ ‘" }, { "input": "misstated", "output": "â â Šâ Žâ Œâ â žâ «" }, { "input": "misstatement", "output": "â â Šâ Žâ Œâ â žâ ‘â °â ž" }, { "input": "misstatements", "output": "â â Šâ Žâ Œâ â žâ ‘â °â žâ Ž" }, { "input": "misstates", "output": "â â Šâ Žâ Œâ â žâ ‘â Ž" }, { "input": "misstating", "output": "â â Šâ Žâ Œâ â žâ ¬" }, { "input": "misstep", "output": "â â Šâ Žâ Œâ ‘â " }, { "input": "missteps", "output": "â â Šâ Žâ Œâ ‘â â Ž" }, { "input": "mist", "output": "â â Šâ Œ" }, { "input": "mistake", "output": "â â Šâ Œâ â …â ‘" }, { "input": "mistaken", "output": "â â Šâ Œâ â …â ¢" }, { "input": "mistakenly", "output": "â â Šâ Œâ â …⠢⠇⠽" }, { "input": "mistakes", "output": "â â Šâ Œâ â …â ‘â Ž" }, { "input": "mistaking", "output": "â â Šâ Œâ â …â ¬" }, { "input": "misted", "output": "â â Šâ Œâ «" }, { "input": "mister", "output": "â â Šâ Œâ »" }, { "input": "misters", "output": "â â Šâ Œâ »â Ž" }, { "input": "mistier", "output": "â â Šâ Œâ Šâ »" }, { "input": "mistiest", "output": "â â Šâ Œâ Šâ ‘â Œ" }, { "input": "mistily", "output": "â â Šâ Œâ Šâ ‡â ½" }, { "input": "mistime", "output": "â â Šâ Žâ â ž" }, { "input": "mistimed", "output": "â â Šâ Žâ â žâ ™" }, { "input": "mistimes", "output": "â â Šâ Žâ â žâ Ž" }, { "input": "mistiming", "output": "â â Šâ Œâ Šâ â ¬" }, { "input": "mistiness", "output": "â â Šâ Œâ Šâ °â Ž" }, { "input": "misting", "output": "â â Šâ Œâ ¬" }, { "input": "mistletoe", "output": "â â Šâ Œâ ‡â ‘â žâ •â ‘" }, { "input": "mistook", "output": "â â Šâ Œâ •â •â …" }, { "input": "mistranslated", "output": "â â Šâ Œâ —â â â Žâ ‡â â žâ «" }, { "input": "mistreat", "output": "â â Šâ Œâ —â ‚â ž" }, { "input": "mistreated", "output": "â â Šâ Œâ —â ‚â žâ «" }, { "input": "mistreating", "output": "â â Šâ Œâ —â ‚â žâ ¬" }, { "input": "mistreatment", "output": "â â Šâ Œâ —â ‚â žâ °â ž" }, { "input": "mistreats", "output": "â â Šâ Œâ —â ‚â žâ Ž" }, { "input": "mistress", "output": "â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "mistresses", "output": "â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "mistrial", "output": "â â Šâ Œâ —â Šâ â ‡" }, { "input": "mistrials", "output": "â â Šâ Œâ —â Šâ â ‡â Ž" }, { "input": "mistrust", "output": "â â Šâ Œâ —⠥⠌" }, { "input": "mistrusted", "output": "â â Šâ Œâ —⠥⠌⠫" }, { "input": "mistrustful", "output": "â â Šâ Œâ —⠥⠌⠰⠇" }, { "input": "mistrusting", "output": "â â Šâ Œâ —⠥⠌⠬" }, { "input": "mistrusts", "output": "â â Šâ Œâ —⠥⠌⠎" }, { "input": "mists", "output": "â â Šâ Œâ Ž" }, { "input": "misty", "output": "â â Šâ Œâ ½" }, { "input": "mistype", "output": "â â Šâ Œâ ½â â ‘" }, { "input": "mistypes", "output": "â â Šâ Œâ ½â â ‘â Ž" }, { "input": "mistyping", "output": "â â Šâ Œâ ½â â ¬" }, { "input": "misunderstand", "output": "â â Šâ Žâ â ¥â Œâ ¯" }, { "input": "misunderstanding", "output": "â â Šâ Žâ â ¥â Œâ ¯â ¬" }, { "input": "misunderstandings", "output": "â â Šâ Žâ â ¥â Œâ ¯â ¬â Ž" }, { "input": "misunderstands", "output": "â â Šâ Žâ â ¥â Œâ ¯â Ž" }, { "input": "misunderstood", "output": "â â Šâ Žâ â ¥â Œâ •â •â ™" }, { "input": "misuse", "output": "â â Šâ Žâ ¥â Žâ ‘" }, { "input": "misused", "output": "â â Šâ Žâ ¥â Žâ «" }, { "input": "misuses", "output": "â â Šâ Žâ ¥â Žâ ‘â Ž" }, { "input": "misusing", "output": "â â Šâ Žâ ¥â Žâ ¬" }, { "input": "mite", "output": "â â Šâ žâ ‘" }, { "input": "miter", "output": "â â Šâ žâ »" }, { "input": "mitered", "output": "â â Šâ žâ »â «" }, { "input": "mitering", "output": "â â Šâ žâ »â ¬" }, { "input": "miters", "output": "â â Šâ žâ »â Ž" }, { "input": "mites", "output": "â â Šâ žâ ‘â Ž" }, { "input": "mitigate", "output": "â â Šâ žâ Šâ ›â â žâ ‘" }, { "input": "mitigated", "output": "â â Šâ žâ Šâ ›â â žâ «" }, { "input": "mitigates", "output": "â â Šâ žâ Šâ ›â â žâ ‘â Ž" }, { "input": "mitigating", "output": "â â Šâ žâ Šâ ›â â žâ ¬" }, { "input": "mitigation", "output": "â â Šâ žâ Šâ ›â â °â " }, { "input": "mitosis", "output": "â â Šâ žâ •â Žâ Šâ Ž" }, { "input": "mitt", "output": "â â Šâ žâ ž" }, { "input": "mitten", "output": "â â Šâ žâ žâ ¢" }, { "input": "mittens", "output": "â â Šâ žâ žâ ¢â Ž" }, { "input": "mitts", "output": "â â Šâ žâ žâ Ž" }, { "input": "mix", "output": "â â Šâ ­" }, { "input": "mixed", "output": "â â Šâ ­â «" }, { "input": "mixer", "output": "â â Šâ ­â »" }, { "input": "mixers", "output": "â â Šâ ­â »â Ž" }, { "input": "mixes", "output": "â â Šâ ­â ‘â Ž" }, { "input": "mixing", "output": "â â Šâ ­â ¬" }, { "input": "mixture", "output": "â â Šâ ­â žâ ¥â —â ‘" }, { "input": "mixtures", "output": "â â Šâ ­â žâ ¥â —â ‘â Ž" }, { "input": "mizzen", "output": "â â Šâ µâ µâ ¢" }, { "input": "mizzenmast", "output": "â â Šâ µâ µâ ¢â â â Œ" }, { "input": "mizzenmasts", "output": "â â Šâ µâ µâ ¢â â â Œâ Ž" }, { "input": "mizzens", "output": "â â Šâ µâ µâ ¢â Ž" }, { "input": "mnemonic", "output": "â â â ‘â â •â â Šâ ‰" }, { "input": "mnemonics", "output": "â â â ‘â â •â â Šâ ‰â Ž" }, { "input": "moan", "output": "â â •â â " }, { "input": "moaned", "output": "â â •â â â «" }, { "input": "moaning", "output": "â â •â â â ¬" }, { "input": "moans", "output": "â â •â â â Ž" }, { "input": "moat", "output": "â â •â â ž" }, { "input": "moats", "output": "â â •â â žâ Ž" }, { "input": "mob", "output": "â â •â ƒ" }, { "input": "mobbed", "output": "â â •⠆⠫" }, { "input": "mobbing", "output": "â â •⠆⠬" }, { "input": "mobile", "output": "â â •⠃⠊⠇⠑" }, { "input": "mobiles", "output": "â â •⠃⠊⠇⠑⠎" }, { "input": "mobility", "output": "â â •⠃⠊⠇⠰⠽" }, { "input": "mobilization", "output": "â â •⠃⠊⠇⠊⠵â â °â " }, { "input": "mobilizations", "output": "â â •⠃⠊⠇⠊⠵â â °â â Ž" }, { "input": "mobilize", "output": "â â •⠃⠊⠇⠊⠵⠑" }, { "input": "mobilized", "output": "â â •⠃⠊⠇⠊⠵⠫" }, { "input": "mobilizes", "output": "â â •⠃⠊⠇⠊⠵⠑⠎" }, { "input": "mobilizing", "output": "â â •⠃⠊⠇⠊⠵⠬" }, { "input": "mobs", "output": "â â •⠃⠎" }, { "input": "mobster", "output": "â â •⠃⠌⠻" }, { "input": "mobsters", "output": "â â •⠃⠌⠻⠎" }, { "input": "moccasin", "output": "â â •â ’â â Žâ ”" }, { "input": "moccasins", "output": "â â •â ’â â Žâ ”â Ž" }, { "input": "mocha", "output": "â â •â ¡â " }, { "input": "mock", "output": "â â •⠉⠅" }, { "input": "mocked", "output": "â â •⠉⠅⠫" }, { "input": "mocker", "output": "â â •⠉⠅⠻" }, { "input": "mockeries", "output": "â â •⠉⠅⠻⠊⠑⠎" }, { "input": "mockers", "output": "â â •⠉⠅⠻⠎" }, { "input": "mockery", "output": "â â •⠉⠅⠻⠽" }, { "input": "mocking", "output": "â â •⠉⠅⠬" }, { "input": "mockingbird", "output": "â â •⠉⠅⠬⠃⠊⠗⠙" }, { "input": "mockingbirds", "output": "â â •⠉⠅⠬⠃⠊⠗⠙⠎" }, { "input": "mockingly", "output": "â â •⠉⠅⠬⠇⠽" }, { "input": "mocks", "output": "â â •⠉⠅⠎" }, { "input": "mod", "output": "â â •â ™" }, { "input": "modal", "output": "â â •â ™â â ‡" }, { "input": "modals", "output": "â â •â ™â â ‡â Ž" }, { "input": "mode", "output": "â â •⠙⠑" }, { "input": "model", "output": "â â •⠙⠑⠇" }, { "input": "modeled", "output": "â â •⠙⠑⠇⠫" }, { "input": "modeling", "output": "â â •⠙⠑⠇⠬" }, { "input": "modelings", "output": "â â •⠙⠑⠇⠬⠎" }, { "input": "modelled", "output": "â â •⠙⠑⠇⠇⠫" }, { "input": "modelling", "output": "â â •⠙⠑⠇⠇⠬" }, { "input": "models", "output": "â â •⠙⠑⠇⠎" }, { "input": "modem", "output": "â â •⠙⠑â " }, { "input": "modems", "output": "â â •⠙⠑â â Ž" }, { "input": "moderate", "output": "â â •⠙⠻â â žâ ‘" }, { "input": "moderated", "output": "â â •⠙⠻â â žâ «" }, { "input": "moderately", "output": "â â •⠙⠻â â žâ ‘⠇⠽" }, { "input": "moderates", "output": "â â •⠙⠻â â žâ ‘â Ž" }, { "input": "moderating", "output": "â â •⠙⠻â â žâ ¬" }, { "input": "moderation", "output": "â â •⠙⠻â â °â " }, { "input": "moderator", "output": "â â •⠙⠻â â žâ •â —" }, { "input": "moderators", "output": "â â •⠙⠻â â žâ •â —â Ž" }, { "input": "modern", "output": "â â •⠙⠻â " }, { "input": "modernism", "output": "â â •⠙⠻â â Šâ Žâ " }, { "input": "modernist", "output": "â â •⠙⠻â â Šâ Œ" }, { "input": "modernistic", "output": "â â •⠙⠻â â Šâ Œâ Šâ ‰" }, { "input": "modernists", "output": "â â •⠙⠻â â Šâ Œâ Ž" }, { "input": "modernity", "output": "â â •⠙⠻â â °â ½" }, { "input": "modernization", "output": "â â •⠙⠻â â Šâ µâ â °â " }, { "input": "modernize", "output": "â â •⠙⠻â â Šâ µâ ‘" }, { "input": "modernized", "output": "â â •⠙⠻â â Šâ µâ «" }, { "input": "modernizes", "output": "â â •⠙⠻â â Šâ µâ ‘â Ž" }, { "input": "modernizing", "output": "â â •⠙⠻â â Šâ µâ ¬" }, { "input": "moderns", "output": "â â •⠙⠻â â Ž" }, { "input": "modes", "output": "â â •⠙⠑⠎" }, { "input": "modest", "output": "â â •⠙⠑⠌" }, { "input": "modestly", "output": "â â •⠙⠑⠌⠇⠽" }, { "input": "modesty", "output": "â â •⠙⠑⠌⠽" }, { "input": "modicum", "output": "â â •⠙⠊⠉⠥â " }, { "input": "modicums", "output": "â â •⠙⠊⠉⠥â â Ž" }, { "input": "modifiable", "output": "â â •⠙⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "modification", "output": "â â •⠙⠊⠋⠊⠉â â °â " }, { "input": "modifications", "output": "â â •⠙⠊⠋⠊⠉â â °â â Ž" }, { "input": "modified", "output": "â â •⠙⠊⠋⠊⠫" }, { "input": "modifier", "output": "â â •⠙⠊⠋⠊⠻" }, { "input": "modifiers", "output": "â â •⠙⠊⠋⠊⠻⠎" }, { "input": "modifies", "output": "â â •⠙⠊⠋⠊⠑⠎" }, { "input": "modify", "output": "â â •⠙⠊⠋⠽" }, { "input": "modifying", "output": "â â •⠙⠊⠋⠽⠬" }, { "input": "modish", "output": "â â •⠙⠊⠩" }, { "input": "modishly", "output": "â â •⠙⠊⠩⠇⠽" }, { "input": "mods", "output": "â â •⠙⠎" }, { "input": "modular", "output": "â â •⠙⠥⠇⠜" }, { "input": "modulate", "output": "â â •⠙⠥⠇â â žâ ‘" }, { "input": "modulated", "output": "â â •⠙⠥⠇â â žâ «" }, { "input": "modulates", "output": "â â •⠙⠥⠇â â žâ ‘â Ž" }, { "input": "modulating", "output": "â â •⠙⠥⠇â â žâ ¬" }, { "input": "modulation", "output": "â â •⠙⠥⠇â â °â " }, { "input": "modulations", "output": "â â •⠙⠥⠇â â °â â Ž" }, { "input": "modulator", "output": "â â •⠙⠥⠇â â žâ •â —" }, { "input": "modulators", "output": "â â •⠙⠥⠇â â žâ •â —â Ž" }, { "input": "module", "output": "â â •⠙⠥⠇⠑" }, { "input": "modules", "output": "â â •⠙⠥⠇⠑⠎" }, { "input": "modulus", "output": "â â •⠙⠥⠇⠥⠎" }, { "input": "mogul", "output": "â â •⠛⠥⠇" }, { "input": "moguls", "output": "â â •⠛⠥⠇⠎" }, { "input": "mohair", "output": "â â •â “â â Šâ —" }, { "input": "moieties", "output": "â â •â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "moiety", "output": "â â •â Šâ ‘â žâ ½" }, { "input": "moire", "output": "â â •â Šâ —â ‘" }, { "input": "moires", "output": "â â •â Šâ —â ‘â Ž" }, { "input": "moist", "output": "â â •â Šâ Œ" }, { "input": "moisten", "output": "â â •⠊⠌⠢" }, { "input": "moistened", "output": "â â •⠊⠌⠢⠫" }, { "input": "moistening", "output": "â â •⠊⠌⠢⠬" }, { "input": "moistens", "output": "â â •⠊⠌⠢⠎" }, { "input": "moister", "output": "â â •⠊⠌⠻" }, { "input": "moistest", "output": "â â •⠊⠌⠑⠌" }, { "input": "moistly", "output": "â â •⠊⠌⠇⠽" }, { "input": "moistness", "output": "â â •⠊⠌⠰⠎" }, { "input": "moisture", "output": "â â •⠊⠌⠥⠗⠑" }, { "input": "moisturize", "output": "â â •⠊⠌⠥⠗⠊⠵⠑" }, { "input": "moisturized", "output": "â â •⠊⠌⠥⠗⠊⠵⠫" }, { "input": "moisturizer", "output": "â â •⠊⠌⠥⠗⠊⠵⠻" }, { "input": "moisturizers", "output": "â â •⠊⠌⠥⠗⠊⠵⠻⠎" }, { "input": "moisturizes", "output": "â â •⠊⠌⠥⠗⠊⠵⠑⠎" }, { "input": "moisturizing", "output": "â â •⠊⠌⠥⠗⠊⠵⠬" }, { "input": "molar", "output": "â â •⠇⠜" }, { "input": "molars", "output": "â â •⠇⠜⠎" }, { "input": "molasses", "output": "â â •â ‡â â Žâ Žâ ‘â Ž" }, { "input": "mold", "output": "â â •⠇⠙" }, { "input": "molded", "output": "â â •⠇⠙⠫" }, { "input": "molder", "output": "â â •⠇⠙⠻" }, { "input": "moldered", "output": "â â •⠇⠙⠻⠫" }, { "input": "moldering", "output": "â â •⠇⠙⠻⠬" }, { "input": "molders", "output": "â â •⠇⠙⠻⠎" }, { "input": "moldier", "output": "â â •⠇⠙⠊⠻" }, { "input": "moldiest", "output": "â â •⠇⠙⠊⠑⠌" }, { "input": "moldiness", "output": "â â •⠇⠙⠊⠰⠎" }, { "input": "molding", "output": "â â •⠇⠙⠬" }, { "input": "moldings", "output": "â â •⠇⠙⠬⠎" }, { "input": "molds", "output": "â â •⠇⠙⠎" }, { "input": "moldy", "output": "â â •⠇⠙⠽" }, { "input": "mole", "output": "â â •⠇⠑" }, { "input": "molecular", "output": "â â •⠇⠑⠉⠥⠇⠜" }, { "input": "molecule", "output": "â â •⠇⠑⠉⠥⠇⠑" }, { "input": "molecules", "output": "â â •⠇⠑⠉⠥⠇⠑⠎" }, { "input": "molehill", "output": "â â •⠇⠑⠓⠊⠇⠇" }, { "input": "molehills", "output": "â â •⠇⠑⠓⠊⠇⠇⠎" }, { "input": "moles", "output": "â â •⠇⠑⠎" }, { "input": "moleskin", "output": "â â •⠇⠑⠎⠅⠔" }, { "input": "molest", "output": "â â •⠇⠑⠌" }, { "input": "molestation", "output": "â â •⠇⠑⠌â â °â " }, { "input": "molested", "output": "â â •⠇⠑⠌⠫" }, { "input": "molester", "output": "â â •⠇⠑⠌⠻" }, { "input": "molesters", "output": "â â •⠇⠑⠌⠻⠎" }, { "input": "molesting", "output": "â â •⠇⠑⠌⠬" }, { "input": "molests", "output": "â â •⠇⠑⠌⠎" }, { "input": "moll", "output": "â â •⠇⠇" }, { "input": "mollification", "output": "â â •⠇⠇⠊⠋⠊⠉â â °â " }, { "input": "mollified", "output": "â â •⠇⠇⠊⠋⠊⠫" }, { "input": "mollifies", "output": "â â •⠇⠇⠊⠋⠊⠑⠎" }, { "input": "mollify", "output": "â â •⠇⠇⠊⠋⠽" }, { "input": "mollifying", "output": "â â •⠇⠇⠊⠋⠽⠬" }, { "input": "molls", "output": "â â •⠇⠇⠎" }, { "input": "mollusc", "output": "â â •⠇⠇⠥⠎⠉" }, { "input": "molluscs", "output": "â â •⠇⠇⠥⠎⠉⠎" }, { "input": "mollusk", "output": "â â •⠇⠇⠥⠎⠅" }, { "input": "mollusks", "output": "â â •⠇⠇⠥⠎⠅⠎" }, { "input": "mollycoddle", "output": "â â •⠇⠇⠽⠉⠕⠙⠙⠇⠑" }, { "input": "mollycoddled", "output": "â â •⠇⠇⠽⠉⠕⠙⠙⠇⠫" }, { "input": "mollycoddles", "output": "â â •⠇⠇⠽⠉⠕⠙⠙⠇⠑⠎" }, { "input": "mollycoddling", "output": "â â •⠇⠇⠽⠉⠕⠙⠙⠇⠬" }, { "input": "molt", "output": "â â •⠇⠞" }, { "input": "molted", "output": "â â •⠇⠞⠫" }, { "input": "molten", "output": "â â •⠇⠞⠢" }, { "input": "molting", "output": "â â •⠇⠞⠬" }, { "input": "molts", "output": "â â •⠇⠞⠎" }, { "input": "molybdenum", "output": "â â •⠇⠽⠃⠙⠢⠥â " }, { "input": "mom", "output": "â â •â " }, { "input": "moment", "output": "â â •â °â ž" }, { "input": "momentarily", "output": "â â •⠰⠞⠜⠊⠇⠽" }, { "input": "momentary", "output": "â â •⠰⠞⠜⠽" }, { "input": "momentous", "output": "â â •⠰⠞⠳⠎" }, { "input": "momentousness", "output": "â â •⠰⠞⠳⠎⠰⠎" }, { "input": "moments", "output": "â â •â °â žâ Ž" }, { "input": "momentum", "output": "â â •â °â žâ ¥â " }, { "input": "momma", "output": "â â •â â â " }, { "input": "mommas", "output": "â â •â â â â Ž" }, { "input": "mommies", "output": "â â •â â â Šâ ‘â Ž" }, { "input": "mommy", "output": "â â •â â â ½" }, { "input": "moms", "output": "â â •â â Ž" }, { "input": "monarch", "output": "â â •â â œâ ¡" }, { "input": "monarchic", "output": "â â •â â œâ ¡â Šâ ‰" }, { "input": "monarchical", "output": "â â •â â œâ ¡â Šâ ‰â â ‡" }, { "input": "monarchies", "output": "â â •â â œâ ¡â Šâ ‘â Ž" }, { "input": "monarchism", "output": "â â •â â œâ ¡â Šâ Žâ " }, { "input": "monarchist", "output": "â â •â â œâ ¡â Šâ Œ" }, { "input": "monarchists", "output": "â â •â â œâ ¡â Šâ Œâ Ž" }, { "input": "monarchs", "output": "â â •â â œâ ¡â Ž" }, { "input": "monarchy", "output": "â â •â â œâ ¡â ½" }, { "input": "monasteries", "output": "â â •â â â Œâ »â Šâ ‘â Ž" }, { "input": "monastery", "output": "â â •â â â Œâ »â ½" }, { "input": "monastic", "output": "â â •â â â Œâ Šâ ‰" }, { "input": "monasticism", "output": "â â •â â â Œâ Šâ ‰â Šâ Žâ " }, { "input": "monastics", "output": "â â •â â â Œâ Šâ ‰â Ž" }, { "input": "monaural", "output": "â â •â â â ¥â —â â ‡" }, { "input": "monetarily", "output": "â â â •⠞⠜⠊⠇⠽" }, { "input": "monetarism", "output": "â â â •⠞⠜⠊⠎â " }, { "input": "monetary", "output": "â â â •⠞⠜⠽" }, { "input": "money", "output": "â â â •â ½" }, { "input": "moneybag", "output": "â â â •⠽⠃â â ›" }, { "input": "moneybags", "output": "â â â •⠽⠃â â ›â Ž" }, { "input": "moneyed", "output": "â â â •⠽⠫" }, { "input": "moneymaker", "output": "â â â •â ½â â â …â »" }, { "input": "moneymakers", "output": "â â â •â ½â â â …⠻⠎" }, { "input": "moneymaking", "output": "â â â •â ½â â â …â ¬" }, { "input": "mongeese", "output": "â â °â ›â ‘â ‘â Žâ ‘" }, { "input": "monger", "output": "â â °â ›â »" }, { "input": "mongered", "output": "â â °â ›â »â «" }, { "input": "mongering", "output": "â â °â ›â »â ¬" }, { "input": "mongers", "output": "â â °â ›â »â Ž" }, { "input": "mongolism", "output": "â â °â ›â •⠇⠊⠎â " }, { "input": "mongoose", "output": "â â °â ›â •â •â Žâ ‘" }, { "input": "mongooses", "output": "â â °â ›â •â •â Žâ ‘â Ž" }, { "input": "mongrel", "output": "â â °â ›â —â ‘â ‡" }, { "input": "mongrels", "output": "â â °â ›â —⠑⠇⠎" }, { "input": "monicker", "output": "â â •â â Šâ ‰â …â »" }, { "input": "monickers", "output": "â â •â â Šâ ‰â …⠻⠎" }, { "input": "monied", "output": "â â •â â Šâ «" }, { "input": "monies", "output": "â â •â â Šâ ‘â Ž" }, { "input": "moniker", "output": "â â •â â Šâ …â »" }, { "input": "monikers", "output": "â â •â â Šâ …⠻⠎" }, { "input": "monitor", "output": "â â •â â Šâ žâ •â —" }, { "input": "monitored", "output": "â â •â â Šâ žâ •â —â «" }, { "input": "monitoring", "output": "â â •â â Šâ žâ •â —â ¬" }, { "input": "monitors", "output": "â â •â â Šâ žâ •â —â Ž" }, { "input": "monk", "output": "â â •â â …" }, { "input": "monkey", "output": "â â •â â …â ‘â ½" }, { "input": "monkeyed", "output": "â â •â â …⠑⠽⠫" }, { "input": "monkeying", "output": "â â •â â …⠑⠽⠬" }, { "input": "monkeys", "output": "â â •â â …⠑⠽⠎" }, { "input": "monkeyshine", "output": "â â •â â …⠑⠽⠩⠔⠑" }, { "input": "monkeyshines", "output": "â â •â â …⠑⠽⠩⠔⠑⠎" }, { "input": "monks", "output": "â â •â â …â Ž" }, { "input": "mono", "output": "â â •â â •" }, { "input": "monochromatic", "output": "â â •â â •â ¡â —â •â â â žâ Šâ ‰" }, { "input": "monochrome", "output": "â â •â â •â ¡â —â •â â ‘" }, { "input": "monochromes", "output": "â â •â â •â ¡â —â •â â ‘â Ž" }, { "input": "monocle", "output": "â â •â â •⠉⠇⠑" }, { "input": "monocles", "output": "â â •â â •⠉⠇⠑⠎" }, { "input": "monocotyledon", "output": "â â •â â •⠉⠕⠞⠽⠇⠫⠕â " }, { "input": "monocotyledons", "output": "â â •â â •⠉⠕⠞⠽⠇⠫⠕â â Ž" }, { "input": "monogamous", "output": "â â •â â •â ›â â â ³â Ž" }, { "input": "monogamy", "output": "â â •â â •â ›â â â ½" }, { "input": "monogram", "output": "â â •â â •⠛⠗â â " }, { "input": "monogrammed", "output": "â â •â â •⠛⠗â â â â «" }, { "input": "monogramming", "output": "â â •â â •⠛⠗â â â â ¬" }, { "input": "monograms", "output": "â â •â â •⠛⠗â â â Ž" }, { "input": "monograph", "output": "â â •â â •⠛⠗â â â “" }, { "input": "monographs", "output": "â â •â â •⠛⠗â â â “â Ž" }, { "input": "monolingual", "output": "â â •â â •⠇⠬⠥â â ‡" }, { "input": "monolinguals", "output": "â â •â â •⠇⠬⠥â â ‡â Ž" }, { "input": "monolith", "output": "â â •â â •⠇⠊⠹" }, { "input": "monolithic", "output": "â â •â â •⠇⠊⠹⠊⠉" }, { "input": "monoliths", "output": "â â •â â •⠇⠊⠹⠎" }, { "input": "monolog", "output": "â â •â â •⠇⠕⠛" }, { "input": "monologs", "output": "â â •â â •⠇⠕⠛⠎" }, { "input": "monologue", "output": "â â •â â •⠇⠕⠛⠥⠑" }, { "input": "monologues", "output": "â â •â â •⠇⠕⠛⠥⠑⠎" }, { "input": "monomania", "output": "â â •â â •â â â â Šâ " }, { "input": "monomaniac", "output": "â â •â â •â â â â Šâ â ‰" }, { "input": "monomaniacs", "output": "â â •â â •â â â â Šâ â ‰â Ž" }, { "input": "mononucleosis", "output": "â â •â â •â â ¥â ‰â ‡â ‘â •â Žâ Šâ Ž" }, { "input": "monophonic", "output": "â â •â â •â â “â •â â Šâ ‰" }, { "input": "monopolies", "output": "â â •â â •â â •⠇⠊⠑⠎" }, { "input": "monopolist", "output": "â â •â â •â â •⠇⠊⠌" }, { "input": "monopolistic", "output": "â â •â â •â â •⠇⠊⠌⠊⠉" }, { "input": "monopolists", "output": "â â •â â •â â •⠇⠊⠌⠎" }, { "input": "monopolization", "output": "â â •â â •â â •⠇⠊⠵â â °â " }, { "input": "monopolize", "output": "â â •â â •â â •⠇⠊⠵⠑" }, { "input": "monopolized", "output": "â â •â â •â â •⠇⠊⠵⠫" }, { "input": "monopolizes", "output": "â â •â â •â â •⠇⠊⠵⠑⠎" }, { "input": "monopolizing", "output": "â â •â â •â â •⠇⠊⠵⠬" }, { "input": "monopoly", "output": "â â •â â •â â •⠇⠽" }, { "input": "monorail", "output": "â â •â â •â —â â Šâ ‡" }, { "input": "monorails", "output": "â â •â â •â —â â Šâ ‡â Ž" }, { "input": "monosyllabic", "output": "â â •â â •⠎⠽⠇⠇â â ƒâ Šâ ‰" }, { "input": "monosyllable", "output": "â â •â â •⠎⠽⠇⠇â â ƒâ ‡â ‘" }, { "input": "monosyllables", "output": "â â •â â •⠎⠽⠇⠇â â ƒâ ‡â ‘â Ž" }, { "input": "monotheism", "output": "â â •â â •⠮⠊⠎â " }, { "input": "monotheist", "output": "â â •â â •⠮⠊⠌" }, { "input": "monotheistic", "output": "â â •â â •⠮⠊⠌⠊⠉" }, { "input": "monotheists", "output": "â â •â â •⠮⠊⠌⠎" }, { "input": "monotone", "output": "â â •â â •â žâ â •" }, { "input": "monotones", "output": "â â •â â •â žâ â •â Ž" }, { "input": "monotonic", "output": "â â •â â •â žâ •â â Šâ ‰" }, { "input": "monotonically", "output": "â â •â â •â žâ •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "monotonous", "output": "â â •â â •â žâ •â â ³â Ž" }, { "input": "monotonously", "output": "â â •â â •â žâ •â â ³â Žâ ‡â ½" }, { "input": "monotony", "output": "â â •â â •â žâ •â â ½" }, { "input": "monoxide", "output": "â â •â â •⠭⠊⠙⠑" }, { "input": "monoxides", "output": "â â •â â •⠭⠊⠙⠑⠎" }, { "input": "monsieur", "output": "â â •â â Žâ Šâ ‘⠥⠗" }, { "input": "monsignor", "output": "â â •â â Žâ Šâ ›â â •â —" }, { "input": "monsignori", "output": "â â •â â Žâ Šâ ›â â •â —â Š" }, { "input": "monsignors", "output": "â â •â â Žâ Šâ ›â â •â —â Ž" }, { "input": "monsoon", "output": "â â •â â Žâ •â •â " }, { "input": "monsoons", "output": "â â •â â Žâ •â •â â Ž" }, { "input": "monster", "output": "â â •â â Œâ »" }, { "input": "monsters", "output": "â â •â â Œâ »â Ž" }, { "input": "monstrance", "output": "â â •â â Œâ —⠨⠑" }, { "input": "monstrances", "output": "â â •â â Œâ —⠨⠑⠎" }, { "input": "monstrosities", "output": "â â •â â Œâ —â •â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "monstrosity", "output": "â â •â â Œâ —â •â Žâ °â ½" }, { "input": "monstrous", "output": "â â •â â Œâ —⠳⠎" }, { "input": "monstrously", "output": "â â •â â Œâ —⠳⠎⠇⠽" }, { "input": "montage", "output": "â â •â â žâ â ›â ‘" }, { "input": "montages", "output": "â â •â â žâ â ›â ‘â Ž" }, { "input": "month", "output": "â â •â â ¹" }, { "input": "monthlies", "output": "â â •â â ¹â ‡â Šâ ‘â Ž" }, { "input": "monthly", "output": "â â •â â ¹â ‡â ½" }, { "input": "months", "output": "â â •â â ¹â Ž" }, { "input": "monument", "output": "â â •â â ¥â °â ž" }, { "input": "monumental", "output": "â â •â â ¥â °â žâ â ‡" }, { "input": "monumentally", "output": "â â •â â ¥â °â žâ â ‡â ‡â ½" }, { "input": "monuments", "output": "â â •â â ¥â °â žâ Ž" }, { "input": "moo", "output": "â â •â •" }, { "input": "mooch", "output": "â â •â •â ¡" }, { "input": "mooched", "output": "â â •â •â ¡â «" }, { "input": "moocher", "output": "â â •â •â ¡â »" }, { "input": "moochers", "output": "â â •⠕⠡⠻⠎" }, { "input": "mooches", "output": "â â •â •â ¡â ‘â Ž" }, { "input": "mooching", "output": "â â •â •â ¡â ¬" }, { "input": "mood", "output": "â â •â •â ™" }, { "input": "moodier", "output": "â â •⠕⠙⠊⠻" }, { "input": "moodiest", "output": "â â •⠕⠙⠊⠑⠌" }, { "input": "moodily", "output": "â â •⠕⠙⠊⠇⠽" }, { "input": "moodiness", "output": "â â •⠕⠙⠊⠰⠎" }, { "input": "moods", "output": "â â •⠕⠙⠎" }, { "input": "moody", "output": "â â •⠕⠙⠽" }, { "input": "mooed", "output": "â â •â •â «" }, { "input": "mooing", "output": "â â •â •â ¬" }, { "input": "moon", "output": "â â •â •â " }, { "input": "moonbeam", "output": "â â •â •â â ƒâ ‚â " }, { "input": "moonbeams", "output": "â â •â •â â ƒâ ‚â â Ž" }, { "input": "mooned", "output": "â â •â •â â «" }, { "input": "mooning", "output": "â â •â •â â ¬" }, { "input": "moonlight", "output": "â â •â •â â ‡â Šâ £â ž" }, { "input": "moonlighted", "output": "â â •â •â â ‡â Šâ £â žâ «" }, { "input": "moonlighter", "output": "â â •â •â â ‡â Šâ £â žâ »" }, { "input": "moonlighters", "output": "â â •â •â â ‡â Šâ £â žâ »â Ž" }, { "input": "moonlighting", "output": "â â •â •â â ‡â Šâ £â žâ ¬" }, { "input": "moonlights", "output": "â â •â •â â ‡â Šâ £â žâ Ž" }, { "input": "moonlit", "output": "â â •â •â â ‡â Šâ ž" }, { "input": "moons", "output": "â â •â •â â Ž" }, { "input": "moonscape", "output": "â â •â •â â Žâ ‰â â â ‘" }, { "input": "moonscapes", "output": "â â •â •â â Žâ ‰â â â ‘â Ž" }, { "input": "moonshine", "output": "â â •â •â â ©â ”â ‘" }, { "input": "moonshines", "output": "â â •â •â â ©â ”â ‘â Ž" }, { "input": "moonshot", "output": "â â •â •â â ©â •â ž" }, { "input": "moonshots", "output": "â â •â •â â ©â •â žâ Ž" }, { "input": "moonstone", "output": "â â •â •â â Œâ â •" }, { "input": "moonstones", "output": "â â •â •â â Œâ â •â Ž" }, { "input": "moonstruck", "output": "â â •â •â â Œâ —⠥⠉⠅" }, { "input": "moor", "output": "â â •â •â —" }, { "input": "moored", "output": "â â •â •â —â «" }, { "input": "mooring", "output": "â â •â •â —â ¬" }, { "input": "moorings", "output": "â â •⠕⠗⠬⠎" }, { "input": "moorland", "output": "â â •⠕⠗⠇⠯" }, { "input": "moors", "output": "â â •â •â —â Ž" }, { "input": "moos", "output": "â â •â •â Ž" }, { "input": "moose", "output": "â â •â •â Žâ ‘" }, { "input": "moot", "output": "â â •â •â ž" }, { "input": "mooted", "output": "â â •â •â žâ «" }, { "input": "mooting", "output": "â â •â •â žâ ¬" }, { "input": "moots", "output": "â â •â •â žâ Ž" }, { "input": "mop", "output": "â â •â " }, { "input": "mope", "output": "â â •â â ‘" }, { "input": "moped", "output": "â â •â â «" }, { "input": "mopeds", "output": "â â •â â «â Ž" }, { "input": "mopes", "output": "â â •â â ‘â Ž" }, { "input": "moping", "output": "â â •â â ¬" }, { "input": "mopped", "output": "â â •â â â «" }, { "input": "moppet", "output": "â â •â â â ‘â ž" }, { "input": "moppets", "output": "â â •â â â ‘â žâ Ž" }, { "input": "mopping", "output": "â â •â â â ¬" }, { "input": "mops", "output": "â â •â â Ž" }, { "input": "moraine", "output": "â â •â —â â ”â ‘" }, { "input": "moraines", "output": "â â •â —â â ”â ‘â Ž" }, { "input": "moral", "output": "â â •â —â â ‡" }, { "input": "morale", "output": "â â •â —â â ‡â ‘" }, { "input": "moralist", "output": "â â •â —â â ‡â Šâ Œ" }, { "input": "moralistic", "output": "â â •â —â â ‡â Šâ Œâ Šâ ‰" }, { "input": "moralists", "output": "â â •â —â â ‡â Šâ Œâ Ž" }, { "input": "moralities", "output": "â â •â —â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "morality", "output": "â â •â —â â ‡â °â ½" }, { "input": "moralize", "output": "â â •â —â â ‡â Šâ µâ ‘" }, { "input": "moralized", "output": "â â •â —â â ‡â Šâ µâ «" }, { "input": "moralizes", "output": "â â •â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "moralizing", "output": "â â •â —â â ‡â Šâ µâ ¬" }, { "input": "morally", "output": "â â •â —â â ‡â ‡â ½" }, { "input": "morals", "output": "â â •â —â â ‡â Ž" }, { "input": "morass", "output": "â â •â —â â Žâ Ž" }, { "input": "morasses", "output": "â â •â —â â Žâ Žâ ‘â Ž" }, { "input": "moratoria", "output": "â â •â —â â žâ •â —â Šâ " }, { "input": "moratorium", "output": "â â •â —â â žâ •â —â Šâ ¥â " }, { "input": "moratoriums", "output": "â â •â —â â žâ •â —â Šâ ¥â â Ž" }, { "input": "moray", "output": "â â •â —â â ½" }, { "input": "morays", "output": "â â •â —â â ½â Ž" }, { "input": "morbid", "output": "â â •⠗⠃⠊⠙" }, { "input": "morbidity", "output": "â â •⠗⠃⠊⠙⠰⠽" }, { "input": "morbidly", "output": "â â •⠗⠃⠊⠙⠇⠽" }, { "input": "mordant", "output": "â â •â —â ™â â â ž" }, { "input": "mordants", "output": "â â •â —â ™â â â žâ Ž" }, { "input": "more", "output": "â " }, { "input": "moreover", "output": "â â •â —â ‘â •â §â »" }, { "input": "mores", "output": "â â •â —â ‘â Ž" }, { "input": "morgue", "output": "â â •⠗⠛⠥⠑" }, { "input": "morgues", "output": "â â •⠗⠛⠥⠑⠎" }, { "input": "moribund", "output": "â â •⠗⠊⠃⠥â â ™" }, { "input": "morn", "output": "â â •â —â " }, { "input": "morning", "output": "â â •â —â â ¬" }, { "input": "mornings", "output": "â â •â —â â ¬â Ž" }, { "input": "morns", "output": "â â •â —â â Ž" }, { "input": "morocco", "output": "â â •â —â •â ’â •" }, { "input": "moron", "output": "â â •â —â •â " }, { "input": "moronic", "output": "â â •â —â •â â Šâ ‰" }, { "input": "morons", "output": "â â •â —â •â â Ž" }, { "input": "morose", "output": "â â •â —â •â Žâ ‘" }, { "input": "morosely", "output": "â â •⠗⠕⠎⠑⠇⠽" }, { "input": "moroseness", "output": "â â •â —â •â Žâ ‘â °â Ž" }, { "input": "morpheme", "output": "â â •â —â â “â ‘â â ‘" }, { "input": "morphemes", "output": "â â •â —â â “â ‘â â ‘â Ž" }, { "input": "morphine", "output": "â â •â —â â “⠔⠑" }, { "input": "morphological", "output": "â â •â —â â “⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "morphology", "output": "â â •â —â â “⠕⠇⠕⠛⠽" }, { "input": "morrow", "output": "â â •â —â —â ª" }, { "input": "morrows", "output": "â â •⠗⠗⠪⠎" }, { "input": "morsel", "output": "â â •â —â Žâ ‘â ‡" }, { "input": "morsels", "output": "â â •⠗⠎⠑⠇⠎" }, { "input": "mortal", "output": "â â •â —â žâ â ‡" }, { "input": "mortality", "output": "â â •â —â žâ â ‡â °â ½" }, { "input": "mortally", "output": "â â •â —â žâ â ‡â ‡â ½" }, { "input": "mortals", "output": "â â •â —â žâ â ‡â Ž" }, { "input": "mortar", "output": "â â •â —â žâ œ" }, { "input": "mortarboard", "output": "â â •⠗⠞⠜⠃⠕⠜⠙" }, { "input": "mortarboards", "output": "â â •⠗⠞⠜⠃⠕⠜⠙⠎" }, { "input": "mortared", "output": "â â •⠗⠞⠜⠫" }, { "input": "mortaring", "output": "â â •⠗⠞⠜⠬" }, { "input": "mortars", "output": "â â •⠗⠞⠜⠎" }, { "input": "mortgage", "output": "â â •â —â žâ ›â â ›â ‘" }, { "input": "mortgaged", "output": "â â •â —â žâ ›â â ›â «" }, { "input": "mortgagee", "output": "â â •â —â žâ ›â â ›â ‘â ‘" }, { "input": "mortgagees", "output": "â â •â —â žâ ›â â ›â ‘â ‘â Ž" }, { "input": "mortgager", "output": "â â •â —â žâ ›â â ›â »" }, { "input": "mortgagers", "output": "â â •â —â žâ ›â â ›â »â Ž" }, { "input": "mortgages", "output": "â â •â —â žâ ›â â ›â ‘â Ž" }, { "input": "mortgaging", "output": "â â •â —â žâ ›â â ›â ¬" }, { "input": "mortgagor", "output": "â â •â —â žâ ›â â ›â •â —" }, { "input": "mortgagors", "output": "â â •â —â žâ ›â â ›â •â —â Ž" }, { "input": "mortice", "output": "â â •⠗⠞⠊⠉⠑" }, { "input": "morticed", "output": "â â •⠗⠞⠊⠉⠫" }, { "input": "mortices", "output": "â â •⠗⠞⠊⠉⠑⠎" }, { "input": "mortician", "output": "â â •⠗⠞⠊⠉⠊â â " }, { "input": "morticians", "output": "â â •⠗⠞⠊⠉⠊â â â Ž" }, { "input": "morticing", "output": "â â •⠗⠞⠊⠉⠬" }, { "input": "mortification", "output": "â â •â —â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "mortified", "output": "â â •â —â žâ Šâ ‹â Šâ «" }, { "input": "mortifies", "output": "â â •â —â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "mortify", "output": "â â •â —â žâ Šâ ‹â ½" }, { "input": "mortifying", "output": "â â •⠗⠞⠊⠋⠽⠬" }, { "input": "mortise", "output": "â â •â —â žâ Šâ Žâ ‘" }, { "input": "mortised", "output": "â â •â —â žâ Šâ Žâ «" }, { "input": "mortises", "output": "â â •â —â žâ Šâ Žâ ‘â Ž" }, { "input": "mortising", "output": "â â •â —â žâ Šâ Žâ ¬" }, { "input": "mortuaries", "output": "â â •⠗⠞⠥⠜⠊⠑⠎" }, { "input": "mortuary", "output": "â â •⠗⠞⠥⠜⠽" }, { "input": "mosaic", "output": "â â •â Žâ â Šâ ‰" }, { "input": "mosaics", "output": "â â •â Žâ â Šâ ‰â Ž" }, { "input": "mosey", "output": "â â •â Žâ ‘â ½" }, { "input": "moseyed", "output": "â â •⠎⠑⠽⠫" }, { "input": "moseying", "output": "â â •⠎⠑⠽⠬" }, { "input": "moseys", "output": "â â •⠎⠑⠽⠎" }, { "input": "mosque", "output": "â â •⠎⠟⠥⠑" }, { "input": "mosques", "output": "â â •⠎⠟⠥⠑⠎" }, { "input": "mosquito", "output": "â â •⠎⠟⠥⠊⠞⠕" }, { "input": "mosquitoes", "output": "â â •⠎⠟⠥⠊⠞⠕⠑⠎" }, { "input": "mosquitos", "output": "â â •⠎⠟⠥⠊⠞⠕⠎" }, { "input": "moss", "output": "â â •â Žâ Ž" }, { "input": "mosses", "output": "â â •â Žâ Žâ ‘â Ž" }, { "input": "mossier", "output": "â â •â Žâ Žâ Šâ »" }, { "input": "mossiest", "output": "â â •â Žâ Žâ Šâ ‘â Œ" }, { "input": "mossy", "output": "â â •â Žâ Žâ ½" }, { "input": "most", "output": "â â •â Œ" }, { "input": "mostly", "output": "â â •⠌⠇⠽" }, { "input": "mote", "output": "â â •â žâ ‘" }, { "input": "motel", "output": "â â •â žâ ‘â ‡" }, { "input": "motels", "output": "â â •⠞⠑⠇⠎" }, { "input": "motes", "output": "â â •â žâ ‘â Ž" }, { "input": "moth", "output": "â â •â ¹" }, { "input": "mothball", "output": "â â •⠹⠃â â ‡â ‡" }, { "input": "mothballed", "output": "â â •⠹⠃â â ‡â ‡â «" }, { "input": "mothballing", "output": "â â •⠹⠃â â ‡â ‡â ¬" }, { "input": "mothballs", "output": "â â •⠹⠃â â ‡â ‡â Ž" }, { "input": "mother", "output": "â â " }, { "input": "motherboard", "output": "â â â ƒâ •⠜⠙" }, { "input": "motherboards", "output": "â â â ƒâ •⠜⠙⠎" }, { "input": "mothered", "output": "â â â «" }, { "input": "motherfucker", "output": "â â â ‹â ¥â ‰â …â »" }, { "input": "motherfuckers", "output": "â â â ‹â ¥â ‰â …⠻⠎" }, { "input": "motherfucking", "output": "â â â ‹â ¥â ‰â …â ¬" }, { "input": "motherhood", "output": "â â â “â •â •â ™" }, { "input": "mothering", "output": "â â â ¬" }, { "input": "motherland", "output": "â â â ‡â ¯" }, { "input": "motherlands", "output": "â â â ‡â ¯â Ž" }, { "input": "motherless", "output": "â â â ¨â Ž" }, { "input": "motherliness", "output": "â â â ‡â Šâ °â Ž" }, { "input": "motherly", "output": "â â â ‡â ½" }, { "input": "mothers", "output": "â â â Ž" }, { "input": "moths", "output": "â â •⠹⠎" }, { "input": "motif", "output": "â â •â žâ Šâ ‹" }, { "input": "motifs", "output": "â â •â žâ Šâ ‹â Ž" }, { "input": "motile", "output": "â â •⠞⠊⠇⠑" }, { "input": "motiles", "output": "â â •⠞⠊⠇⠑⠎" }, { "input": "motion", "output": "â â •â °â " }, { "input": "motioned", "output": "â â •â °â â «" }, { "input": "motioning", "output": "â â •â °â â ¬" }, { "input": "motionless", "output": "â â •â °â â ¨â Ž" }, { "input": "motions", "output": "â â •â °â â Ž" }, { "input": "motivate", "output": "â â •â žâ Šâ §â â žâ ‘" }, { "input": "motivated", "output": "â â •â žâ Šâ §â â žâ «" }, { "input": "motivates", "output": "â â •â žâ Šâ §â â žâ ‘â Ž" }, { "input": "motivating", "output": "â â •â žâ Šâ §â â žâ ¬" }, { "input": "motivation", "output": "â â •â žâ Šâ §â â °â " }, { "input": "motivational", "output": "â â •â žâ Šâ §â â °â â â ‡" }, { "input": "motivations", "output": "â â •â žâ Šâ §â â °â â Ž" }, { "input": "motivator", "output": "â â •â žâ Šâ §â â žâ •â —" }, { "input": "motivators", "output": "â â •â žâ Šâ §â â žâ •â —â Ž" }, { "input": "motive", "output": "â â •â žâ Šâ §â ‘" }, { "input": "motives", "output": "â â •â žâ Šâ §â ‘â Ž" }, { "input": "motley", "output": "â â •⠞⠇⠑⠽" }, { "input": "motleys", "output": "â â •⠞⠇⠑⠽⠎" }, { "input": "motlier", "output": "â â •⠞⠇⠊⠻" }, { "input": "motliest", "output": "â â •⠞⠇⠊⠑⠌" }, { "input": "motocross", "output": "â â •⠞⠕⠉⠗⠕⠎⠎" }, { "input": "motocrosses", "output": "â â •⠞⠕⠉⠗⠕⠎⠎⠑⠎" }, { "input": "motor", "output": "â â •â žâ •â —" }, { "input": "motorbike", "output": "â â •⠞⠕⠗⠃⠊⠅⠑" }, { "input": "motorbiked", "output": "â â •⠞⠕⠗⠃⠊⠅⠫" }, { "input": "motorbikes", "output": "â â •⠞⠕⠗⠃⠊⠅⠑⠎" }, { "input": "motorbiking", "output": "â â •⠞⠕⠗⠃⠊⠅⠬" }, { "input": "motorboat", "output": "â â •⠞⠕⠗⠃⠕â â ž" }, { "input": "motorboats", "output": "â â •⠞⠕⠗⠃⠕â â žâ Ž" }, { "input": "motorcade", "output": "â â •â žâ •â —â ‰â â ™â ‘" }, { "input": "motorcades", "output": "â â •â žâ •â —â ‰â â ™â ‘â Ž" }, { "input": "motorcar", "output": "â â •⠞⠕⠗⠉⠜" }, { "input": "motorcars", "output": "â â •⠞⠕⠗⠉⠜⠎" }, { "input": "motorcycle", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠑" }, { "input": "motorcycled", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠫" }, { "input": "motorcycles", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠑⠎" }, { "input": "motorcycling", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠬" }, { "input": "motorcyclist", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠊⠌" }, { "input": "motorcyclists", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠊⠌⠎" }, { "input": "motored", "output": "â â •â žâ •â —â «" }, { "input": "motoring", "output": "â â •â žâ •â —â ¬" }, { "input": "motorist", "output": "â â •â žâ •â —â Šâ Œ" }, { "input": "motorists", "output": "â â •⠞⠕⠗⠊⠌⠎" }, { "input": "motorize", "output": "â â •⠞⠕⠗⠊⠵⠑" }, { "input": "motorized", "output": "â â •⠞⠕⠗⠊⠵⠫" }, { "input": "motorizes", "output": "â â •⠞⠕⠗⠊⠵⠑⠎" }, { "input": "motorizing", "output": "â â •⠞⠕⠗⠊⠵⠬" }, { "input": "motorman", "output": "â â •â žâ •â —â â â " }, { "input": "motormen", "output": "â â •â žâ •â —â â ¢" }, { "input": "motormouth", "output": "â â •â žâ •â —â â ³â ¹" }, { "input": "motormouths", "output": "â â •â žâ •â —â â ³â ¹â Ž" }, { "input": "motors", "output": "â â •â žâ •â —â Ž" }, { "input": "motorway", "output": "â â •â žâ •â —â ºâ â ½" }, { "input": "motorways", "output": "â â •â žâ •â —â ºâ â ½â Ž" }, { "input": "mottle", "output": "â â •⠞⠞⠇⠑" }, { "input": "mottled", "output": "â â •⠞⠞⠇⠫" }, { "input": "mottles", "output": "â â •⠞⠞⠇⠑⠎" }, { "input": "mottling", "output": "â â •⠞⠞⠇⠬" }, { "input": "motto", "output": "â â •â žâ žâ •" }, { "input": "mottoes", "output": "â â •â žâ žâ •â ‘â Ž" }, { "input": "mottos", "output": "â â •â žâ žâ •â Ž" }, { "input": "mound", "output": "â â ¨â ™" }, { "input": "mounded", "output": "â â ¨â ™â «" }, { "input": "mounding", "output": "â â ¨â ™â ¬" }, { "input": "mounds", "output": "â â ¨â ™â Ž" }, { "input": "mount", "output": "â â ¨â ž" }, { "input": "mountain", "output": "â â ¨â žâ â ”" }, { "input": "mountaineer", "output": "â â ¨â žâ â ”â ‘â »" }, { "input": "mountaineered", "output": "â â ¨â žâ â ”⠑⠻⠫" }, { "input": "mountaineering", "output": "â â ¨â žâ â ”⠑⠻⠬" }, { "input": "mountaineers", "output": "â â ¨â žâ â ”⠑⠻⠎" }, { "input": "mountainous", "output": "â â ¨â žâ â ”⠳⠎" }, { "input": "mountains", "output": "â â ¨â žâ â ”â Ž" }, { "input": "mountainside", "output": "â â ¨â žâ â ”⠎⠊⠙⠑" }, { "input": "mountainsides", "output": "â â ¨â žâ â ”⠎⠊⠙⠑⠎" }, { "input": "mountaintop", "output": "â â ¨â žâ â ”â žâ •â " }, { "input": "mountaintops", "output": "â â ¨â žâ â ”â žâ •â â Ž" }, { "input": "mountebank", "output": "â â ¨â žâ ‘â ƒâ â â …" }, { "input": "mountebanks", "output": "â â ¨â žâ ‘â ƒâ â â …â Ž" }, { "input": "mounted", "output": "â â ¨â žâ «" }, { "input": "mounting", "output": "â â ¨â žâ ¬" }, { "input": "mountings", "output": "â â ¨â žâ ¬â Ž" }, { "input": "mounts", "output": "â â ¨â žâ Ž" }, { "input": "mourn", "output": "â â ³â —â " }, { "input": "mourned", "output": "â â ³â —â â «" }, { "input": "mourner", "output": "â â ³â —â â »" }, { "input": "mourners", "output": "â â ³â —â â »â Ž" }, { "input": "mournful", "output": "â â ³â —â â °â ‡" }, { "input": "mournfully", "output": "â â ³â —â â °â ‡â ‡â ½" }, { "input": "mournfulness", "output": "â â ³â —â â °â ‡â °â Ž" }, { "input": "mourning", "output": "â â ³â —â â ¬" }, { "input": "mourns", "output": "â â ³â —â â Ž" }, { "input": "mouse", "output": "â â ³â Žâ ‘" }, { "input": "moused", "output": "â â ³â Žâ «" }, { "input": "mouser", "output": "â â ³â Žâ »" }, { "input": "mousers", "output": "â â ³â Žâ »â Ž" }, { "input": "mouses", "output": "â â ³â Žâ ‘â Ž" }, { "input": "mousetrap", "output": "â â ³â Žâ ‘â žâ —â â " }, { "input": "mousetrapped", "output": "â â ³â Žâ ‘â žâ —â â â â «" }, { "input": "mousetrapping", "output": "â â ³â Žâ ‘â žâ —â â â â ¬" }, { "input": "mousetraps", "output": "â â ³â Žâ ‘â žâ —â â â Ž" }, { "input": "mousey", "output": "â â ³â Žâ ‘â ½" }, { "input": "mousier", "output": "â â ³â Žâ Šâ »" }, { "input": "mousiest", "output": "â â ³â Žâ Šâ ‘â Œ" }, { "input": "mousiness", "output": "â â ³â Žâ Šâ °â Ž" }, { "input": "mousing", "output": "â â ³â Žâ ¬" }, { "input": "mousse", "output": "â â ³â Žâ Žâ ‘" }, { "input": "moussed", "output": "â â ³â Žâ Žâ «" }, { "input": "mousses", "output": "â â ³â Žâ Žâ ‘â Ž" }, { "input": "moussing", "output": "â â ³â Žâ Žâ ¬" }, { "input": "moustache", "output": "â â ³â Œâ â ¡â ‘" }, { "input": "moustaches", "output": "â â ³â Œâ â ¡â ‘â Ž" }, { "input": "mousy", "output": "â â ³â Žâ ½" }, { "input": "mouth", "output": "â â ³â ¹" }, { "input": "mouthed", "output": "â â ³â ®â ™" }, { "input": "mouthful", "output": "â â ³â ¹â °â ‡" }, { "input": "mouthfuls", "output": "â â ³â ¹â °â ‡â Ž" }, { "input": "mouthing", "output": "â â ³â ¹â ¬" }, { "input": "mouthpiece", "output": "â â ³â ¹â â Šâ ‘⠉⠑" }, { "input": "mouthpieces", "output": "â â ³â ¹â â Šâ ‘⠉⠑⠎" }, { "input": "mouths", "output": "â â ³â ¹â Ž" }, { "input": "mouthwash", "output": "â â ³â ¹â ºâ â ©" }, { "input": "mouthwashes", "output": "â â ³â ¹â ºâ â ©â ‘â Ž" }, { "input": "mouthwatering", "output": "â â ³â ¹â ºâ â žâ »â ¬" }, { "input": "movable", "output": "â â •â §â â ƒâ ‡â ‘" }, { "input": "movables", "output": "â â •â §â â ƒâ ‡â ‘â Ž" }, { "input": "move", "output": "â â •â §â ‘" }, { "input": "moveable", "output": "â â •⠧⠂⠃⠇⠑" }, { "input": "moveables", "output": "â â •⠧⠂⠃⠇⠑⠎" }, { "input": "moved", "output": "â â •â §â «" }, { "input": "movement", "output": "â â •â §â ‘â °â ž" }, { "input": "movements", "output": "â â •â §â ‘â °â žâ Ž" }, { "input": "mover", "output": "â â •â §â »" }, { "input": "movers", "output": "â â •⠧⠻⠎" }, { "input": "moves", "output": "â â •â §â ‘â Ž" }, { "input": "movie", "output": "â â •â §â Šâ ‘" }, { "input": "movies", "output": "â â •â §â Šâ ‘â Ž" }, { "input": "moving", "output": "â â •â §â ¬" }, { "input": "movingly", "output": "â â •⠧⠬⠇⠽" }, { "input": "mow", "output": "â â ª" }, { "input": "mowed", "output": "â â ªâ «" }, { "input": "mower", "output": "â â ªâ »" }, { "input": "mowers", "output": "â â ªâ »â Ž" }, { "input": "mowing", "output": "â â ªâ ¬" }, { "input": "mown", "output": "â â ªâ " }, { "input": "mows", "output": "â â ªâ Ž" }, { "input": "mozzarella", "output": "â â •⠵⠵⠜⠑⠇⠇â " }, { "input": "ms", "output": "â â Ž" }, { "input": "mu", "output": "â â ¥" }, { "input": "much", "output": "â â ¡" }, { "input": "mucilage", "output": "â â ¥â ‰â Šâ ‡â â ›â ‘" }, { "input": "muck", "output": "â â ¥â ‰â …" }, { "input": "mucked", "output": "â â ¥â ‰â …â «" }, { "input": "muckier", "output": "â â ¥â ‰â …â Šâ »" }, { "input": "muckiest", "output": "â â ¥â ‰â …â Šâ ‘â Œ" }, { "input": "mucking", "output": "â â ¥â ‰â …â ¬" }, { "input": "muckrake", "output": "â â ¥â ‰â …â —â â …â ‘" }, { "input": "muckraked", "output": "â â ¥â ‰â …â —â â …â «" }, { "input": "muckraker", "output": "â â ¥â ‰â …â —â â …â »" }, { "input": "muckrakers", "output": "â â ¥â ‰â …â —â â …⠻⠎" }, { "input": "muckrakes", "output": "â â ¥â ‰â …â —â â …â ‘â Ž" }, { "input": "muckraking", "output": "â â ¥â ‰â …â —â â …â ¬" }, { "input": "mucks", "output": "â â ¥â ‰â …â Ž" }, { "input": "mucky", "output": "â â ¥â ‰â …â ½" }, { "input": "mucous", "output": "â â ¥â ‰â ³â Ž" }, { "input": "mucus", "output": "â â ¥â ‰â ¥â Ž" }, { "input": "mud", "output": "â â ¥â ™" }, { "input": "muddied", "output": "â â ¥â ™â ™â Šâ «" }, { "input": "muddier", "output": "â â ¥â ™â ™â Šâ »" }, { "input": "muddies", "output": "â â ¥â ™â ™â Šâ ‘â Ž" }, { "input": "muddiest", "output": "â â ¥â ™â ™â Šâ ‘â Œ" }, { "input": "muddiness", "output": "â â ¥â ™â ™â Šâ °â Ž" }, { "input": "muddle", "output": "â â ¥â ™â ™â ‡â ‘" }, { "input": "muddled", "output": "â â ¥â ™â ™â ‡â «" }, { "input": "muddles", "output": "â â ¥â ™â ™â ‡â ‘â Ž" }, { "input": "muddling", "output": "â â ¥â ™â ™â ‡â ¬" }, { "input": "muddy", "output": "â â ¥â ™â ™â ½" }, { "input": "muddying", "output": "â â ¥â ™â ™â ½â ¬" }, { "input": "mudguard", "output": "â â ¥â ™â ›â ¥â œâ ™" }, { "input": "mudguards", "output": "â â ¥â ™â ›â ¥â œâ ™â Ž" }, { "input": "mudslide", "output": "â â ¥â ™â Žâ ‡â Šâ ™â ‘" }, { "input": "mudslides", "output": "â â ¥â ™â Žâ ‡â Šâ ™â ‘â Ž" }, { "input": "mudslinger", "output": "â â ¥â ™â Žâ ‡â ¬â »" }, { "input": "mudslingers", "output": "â â ¥â ™â Žâ ‡â ¬â »â Ž" }, { "input": "mudslinging", "output": "â â ¥â ™â Žâ ‡â ¬â ¬" }, { "input": "muesli", "output": "â â ¥â ‘⠎⠇⠊" }, { "input": "muezzin", "output": "â â ¥â ‘⠵⠵⠔" }, { "input": "muezzins", "output": "â â ¥â ‘⠵⠵⠔⠎" }, { "input": "muff", "output": "â â ¥â ‹â ‹" }, { "input": "muffed", "output": "â â ¥â –â «" }, { "input": "muffin", "output": "â â ¥â –â ”" }, { "input": "muffing", "output": "â â ¥â –â ¬" }, { "input": "muffins", "output": "â â ¥â –⠔⠎" }, { "input": "muffle", "output": "â â ¥â –⠇⠑" }, { "input": "muffled", "output": "â â ¥â –⠇⠫" }, { "input": "muffler", "output": "â â ¥â –⠇⠻" }, { "input": "mufflers", "output": "â â ¥â –⠇⠻⠎" }, { "input": "muffles", "output": "â â ¥â –⠇⠑⠎" }, { "input": "muffling", "output": "â â ¥â –⠇⠬" }, { "input": "muffs", "output": "â â ¥â –â Ž" }, { "input": "mufti", "output": "â â ¥â ‹â žâ Š" }, { "input": "muftis", "output": "â â ¥â ‹â žâ Šâ Ž" }, { "input": "mug", "output": "â â ¥â ›" }, { "input": "mugged", "output": "â â ¥â ¶â «" }, { "input": "mugger", "output": "â â ¥â ¶â »" }, { "input": "muggers", "output": "â â ¥â ¶â »â Ž" }, { "input": "muggier", "output": "â â ¥â ¶â Šâ »" }, { "input": "muggiest", "output": "â â ¥â ¶â Šâ ‘â Œ" }, { "input": "mugginess", "output": "â â ¥â ¶â Šâ °â Ž" }, { "input": "mugging", "output": "â â ¥â ¶â ¬" }, { "input": "muggings", "output": "â â ¥â ¶â ¬â Ž" }, { "input": "muggy", "output": "â â ¥â ¶â ½" }, { "input": "mugs", "output": "â â ¥â ›â Ž" }, { "input": "mukluk", "output": "â â ¥â …⠇⠥⠅" }, { "input": "mukluks", "output": "â â ¥â …⠇⠥⠅⠎" }, { "input": "mulatto", "output": "â â ¥â ‡â â žâ žâ •" }, { "input": "mulattoes", "output": "â â ¥â ‡â â žâ žâ •â ‘â Ž" }, { "input": "mulattos", "output": "â â ¥â ‡â â žâ žâ •â Ž" }, { "input": "mulberries", "output": "â â ¥â ‡â ƒâ »â —â Šâ ‘â Ž" }, { "input": "mulberry", "output": "â â ¥â ‡â ƒâ »â —â ½" }, { "input": "mulch", "output": "â â ¥â ‡â ¡" }, { "input": "mulched", "output": "â â ¥â ‡â ¡â «" }, { "input": "mulches", "output": "â â ¥â ‡â ¡â ‘â Ž" }, { "input": "mulching", "output": "â â ¥â ‡â ¡â ¬" }, { "input": "mule", "output": "â â ¥â ‡â ‘" }, { "input": "mules", "output": "â â ¥â ‡â ‘â Ž" }, { "input": "muleteer", "output": "â â ¥â ‡â ‘â žâ ‘â »" }, { "input": "muleteers", "output": "â â ¥â ‡â ‘⠞⠑⠻⠎" }, { "input": "mulish", "output": "â â ¥â ‡â Šâ ©" }, { "input": "mulishly", "output": "â â ¥â ‡â Šâ ©â ‡â ½" }, { "input": "mulishness", "output": "â â ¥â ‡â Šâ ©â °â Ž" }, { "input": "mull", "output": "â â ¥â ‡â ‡" }, { "input": "mullah", "output": "â â ¥â ‡â ‡â â “" }, { "input": "mullahs", "output": "â â ¥â ‡â ‡â â “â Ž" }, { "input": "mulled", "output": "â â ¥â ‡â ‡â «" }, { "input": "mullet", "output": "â â ¥â ‡â ‡â ‘â ž" }, { "input": "mullets", "output": "â â ¥â ‡â ‡â ‘â žâ Ž" }, { "input": "mulligatawny", "output": "â â ¥â ‡â ‡â Šâ ›â â žâ â ºâ â ½" }, { "input": "mulling", "output": "â â ¥â ‡â ‡â ¬" }, { "input": "mullion", "output": "â â ¥â ‡â ‡â Šâ •â " }, { "input": "mullions", "output": "â â ¥â ‡â ‡â Šâ •â â Ž" }, { "input": "mulls", "output": "â â ¥â ‡â ‡â Ž" }, { "input": "multicolored", "output": "â â ¥â ‡â žâ Šâ ‰â •⠇⠕⠗⠫" }, { "input": "multicultural", "output": "â â ¥â ‡â žâ Šâ ‰â ¥â ‡â žâ ¥â —â â ‡" }, { "input": "multiculturalism", "output": "â â ¥â ‡â žâ Šâ ‰â ¥â ‡â žâ ¥â —â â ‡â Šâ Žâ " }, { "input": "multidimensional", "output": "â â ¥â ‡â žâ Šâ ™â Šâ â ¢â ¨â â â ‡" }, { "input": "multifaceted", "output": "â â ¥â ‡â žâ Šâ ‹â â ‰â ‘â žâ «" }, { "input": "multifarious", "output": "â â ¥â ‡â žâ Šâ ‹â œâ Šâ ³â Ž" }, { "input": "multifariousness", "output": "â â ¥â ‡â žâ Šâ ‹â œâ Šâ ³â Žâ °â Ž" }, { "input": "multilateral", "output": "â â ¥â ‡â žâ Šâ ‡â â žâ »â â ‡" }, { "input": "multilingual", "output": "â â ¥â ‡â žâ Šâ ‡â ¬â ¥â â ‡" }, { "input": "multimedia", "output": "â â ¥â ‡â žâ Šâ â «â Šâ " }, { "input": "multimillionaire", "output": "â â ¥â ‡â žâ Šâ â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘" }, { "input": "multimillionaires", "output": "â â ¥â ‡â žâ Šâ â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘â Ž" }, { "input": "multinational", "output": "â â ¥â ‡â žâ ”â â °â â â ‡" }, { "input": "multinationals", "output": "â â ¥â ‡â žâ ”â â °â â â ‡â Ž" }, { "input": "multiple", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘" }, { "input": "multiples", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â Ž" }, { "input": "multiplex", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­" }, { "input": "multiplexed", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â «" }, { "input": "multiplexer", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â »" }, { "input": "multiplexers", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘⠭⠻⠎" }, { "input": "multiplexes", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â ‘â Ž" }, { "input": "multiplexing", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â ¬" }, { "input": "multiplexor", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â •â —" }, { "input": "multiplexors", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â •â —â Ž" }, { "input": "multiplicand", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â ¯" }, { "input": "multiplicands", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â ¯â Ž" }, { "input": "multiplication", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â â °â " }, { "input": "multiplications", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â â °â â Ž" }, { "input": "multiplicative", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "multiplicities", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â Šâ žâ Šâ ‘â Ž" }, { "input": "multiplicity", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â °â ½" }, { "input": "multiplied", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ «" }, { "input": "multiplier", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ »" }, { "input": "multipliers", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ »â Ž" }, { "input": "multiplies", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‘â Ž" }, { "input": "multiply", "output": "â â ¥â ‡â žâ Šâ â ‡â ½" }, { "input": "multiplying", "output": "â â ¥â ‡â žâ Šâ â ‡â ½â ¬" }, { "input": "multiprocessing", "output": "â â ¥â ‡â žâ Šâ â —⠕⠉⠑⠎⠎⠬" }, { "input": "multipurpose", "output": "â â ¥â ‡â žâ Šâ â ¥â —â â •â Žâ ‘" }, { "input": "multiracial", "output": "â â ¥â ‡â žâ Šâ —â â ‰â Šâ â ‡" }, { "input": "multitasking", "output": "â â ¥â ‡â žâ Šâ žâ â Žâ …â ¬" }, { "input": "multitude", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ‘" }, { "input": "multitudes", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "multitudinous", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ”⠳⠎" }, { "input": "multivariate", "output": "â â ¥â ‡â žâ Šâ §â œâ Šâ â žâ ‘" }, { "input": "multivitamin", "output": "â â ¥â ‡â žâ Šâ §â Šâ žâ â â ”" }, { "input": "multivitamins", "output": "â â ¥â ‡â žâ Šâ §â Šâ žâ â â ”â Ž" }, { "input": "mum", "output": "â â ¥â " }, { "input": "mumble", "output": "â â ¥â â ƒâ ‡â ‘" }, { "input": "mumbled", "output": "â â ¥â â ƒâ ‡â «" }, { "input": "mumbler", "output": "â â ¥â â ƒâ ‡â »" }, { "input": "mumblers", "output": "â â ¥â â ƒâ ‡â »â Ž" }, { "input": "mumbles", "output": "â â ¥â â ƒâ ‡â ‘â Ž" }, { "input": "mumbling", "output": "â â ¥â â ƒâ ‡â ¬" }, { "input": "mummer", "output": "â â ¥â â â »" }, { "input": "mummers", "output": "â â ¥â â â »â Ž" }, { "input": "mummery", "output": "â â ¥â â â »â ½" }, { "input": "mummies", "output": "â â ¥â â â Šâ ‘â Ž" }, { "input": "mummification", "output": "â â ¥â â â Šâ ‹â Šâ ‰â â °â " }, { "input": "mummified", "output": "â â ¥â â â Šâ ‹â Šâ «" }, { "input": "mummifies", "output": "â â ¥â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "mummify", "output": "â â ¥â â â Šâ ‹â ½" }, { "input": "mummifying", "output": "â â ¥â â â Šâ ‹â ½â ¬" }, { "input": "mummy", "output": "â â ¥â â â ½" }, { "input": "mumps", "output": "â â ¥â â â Ž" }, { "input": "mums", "output": "â â ¥â â Ž" }, { "input": "munch", "output": "â â ¥â â ¡" }, { "input": "munched", "output": "â â ¥â â ¡â «" }, { "input": "munches", "output": "â â ¥â â ¡â ‘â Ž" }, { "input": "munchies", "output": "â â ¥â â ¡â Šâ ‘â Ž" }, { "input": "munching", "output": "â â ¥â â ¡â ¬" }, { "input": "mundane", "output": "â â ¥â â ™â â â ‘" }, { "input": "mundanely", "output": "â â ¥â â ™â â â ‘⠇⠽" }, { "input": "municipal", "output": "â â ¥â â Šâ ‰â Šâ â â ‡" }, { "input": "municipalities", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "municipality", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â °â ½" }, { "input": "municipally", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â ‡â ½" }, { "input": "municipals", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â Ž" }, { "input": "munificence", "output": "â â ¥â â Šâ ‹â Šâ ‰â °â ‘" }, { "input": "munificent", "output": "â â ¥â â Šâ ‹â Šâ ‰â ¢â ž" }, { "input": "munition", "output": "â â ¥â â Šâ °â " }, { "input": "munitions", "output": "â â ¥â â Šâ °â â Ž" }, { "input": "mural", "output": "â â ¥â —â â ‡" }, { "input": "muralist", "output": "â â ¥â —â â ‡â Šâ Œ" }, { "input": "muralists", "output": "â â ¥â —â â ‡â Šâ Œâ Ž" }, { "input": "murals", "output": "â â ¥â —â â ‡â Ž" }, { "input": "murder", "output": "â â ¥â —⠙⠻" }, { "input": "murdered", "output": "â â ¥â —⠙⠻⠫" }, { "input": "murderer", "output": "â â ¥â —⠙⠻⠻" }, { "input": "murderers", "output": "â â ¥â —⠙⠻⠻⠎" }, { "input": "murderess", "output": "â â ¥â —⠙⠻⠑⠎⠎" }, { "input": "murderesses", "output": "â â ¥â —⠙⠻⠑⠎⠎⠑⠎" }, { "input": "murdering", "output": "â â ¥â —⠙⠻⠬" }, { "input": "murderous", "output": "â â ¥â —⠙⠻⠳⠎" }, { "input": "murderously", "output": "â â ¥â —⠙⠻⠳⠎⠇⠽" }, { "input": "murders", "output": "â â ¥â —⠙⠻⠎" }, { "input": "murk", "output": "â â ¥â —â …" }, { "input": "murkier", "output": "â â ¥â —â …â Šâ »" }, { "input": "murkiest", "output": "â â ¥â —â …â Šâ ‘â Œ" }, { "input": "murkily", "output": "â â ¥â —⠅⠊⠇⠽" }, { "input": "murkiness", "output": "â â ¥â —â …â Šâ °â Ž" }, { "input": "murks", "output": "â â ¥â —â …â Ž" }, { "input": "murky", "output": "â â ¥â —â …â ½" }, { "input": "murmur", "output": "â â ¥â —â â ¥â —" }, { "input": "murmured", "output": "â â ¥â —â â ¥â —â «" }, { "input": "murmuring", "output": "â â ¥â —â â ¥â —â ¬" }, { "input": "murmurs", "output": "â â ¥â —â â ¥â —â Ž" }, { "input": "muscat", "output": "â â ¥â Žâ ‰â â ž" }, { "input": "muscatel", "output": "â â ¥â Žâ ‰â â žâ ‘â ‡" }, { "input": "muscatels", "output": "â â ¥â Žâ ‰â â žâ ‘⠇⠎" }, { "input": "muscle", "output": "â â ¥â Žâ ‰â ‡â ‘" }, { "input": "muscled", "output": "â â ¥â Žâ ‰â ‡â «" }, { "input": "muscles", "output": "â â ¥â Žâ ‰â ‡â ‘â Ž" }, { "input": "muscling", "output": "â â ¥â Žâ ‰â ‡â ¬" }, { "input": "muscular", "output": "â â ¥â Žâ ‰â ¥â ‡â œ" }, { "input": "muscularity", "output": "â â ¥â Žâ ‰â ¥â ‡â œâ °â ½" }, { "input": "musculature", "output": "â â ¥â Žâ ‰â ¥â ‡â â žâ ¥â —â ‘" }, { "input": "muse", "output": "â â ¥â Žâ ‘" }, { "input": "mused", "output": "â â ¥â Žâ «" }, { "input": "muses", "output": "â â ¥â Žâ ‘â Ž" }, { "input": "museum", "output": "â â ¥â Žâ ‘â ¥â " }, { "input": "museums", "output": "â â ¥â Žâ ‘â ¥â â Ž" }, { "input": "mush", "output": "â â ¥â ©" }, { "input": "mushed", "output": "â â ¥â ©â «" }, { "input": "mushes", "output": "â â ¥â ©â ‘â Ž" }, { "input": "mushier", "output": "â â ¥â ©â Šâ »" }, { "input": "mushiest", "output": "â â ¥â ©â Šâ ‘â Œ" }, { "input": "mushiness", "output": "â â ¥â ©â Šâ °â Ž" }, { "input": "mushing", "output": "â â ¥â ©â ¬" }, { "input": "mushroom", "output": "â â ¥â ©â —â •â •â " }, { "input": "mushroomed", "output": "â â ¥â ©â —â •â •â â «" }, { "input": "mushrooming", "output": "â â ¥â ©â —â •â •â â ¬" }, { "input": "mushrooms", "output": "â â ¥â ©â —â •â •â â Ž" }, { "input": "mushy", "output": "â â ¥â ©â ½" }, { "input": "music", "output": "â â ¥â Žâ Šâ ‰" }, { "input": "musical", "output": "â â ¥â Žâ Šâ ‰â â ‡" }, { "input": "musicale", "output": "â â ¥â Žâ Šâ ‰â â ‡â ‘" }, { "input": "musicales", "output": "â â ¥â Žâ Šâ ‰â â ‡â ‘â Ž" }, { "input": "musically", "output": "â â ¥â Žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "musicals", "output": "â â ¥â Žâ Šâ ‰â â ‡â Ž" }, { "input": "musician", "output": "â â ¥â Žâ Šâ ‰â Šâ â " }, { "input": "musicians", "output": "â â ¥â Žâ Šâ ‰â Šâ â â Ž" }, { "input": "musicianship", "output": "â â ¥â Žâ Šâ ‰â Šâ â â ©â Šâ " }, { "input": "musicologist", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠊⠌" }, { "input": "musicologists", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠊⠌⠎" }, { "input": "musicology", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠽" }, { "input": "musing", "output": "â â ¥â Žâ ¬" }, { "input": "musings", "output": "â â ¥â Žâ ¬â Ž" }, { "input": "musk", "output": "â â ¥â Žâ …" }, { "input": "muskellunge", "output": "â â ¥â Žâ …⠑⠇⠇⠥â â ›â ‘" }, { "input": "muskellunges", "output": "â â ¥â Žâ …⠑⠇⠇⠥â â ›â ‘â Ž" }, { "input": "musket", "output": "â â ¥â Žâ …â ‘â ž" }, { "input": "musketeer", "output": "â â ¥â Žâ …â ‘â žâ ‘â »" }, { "input": "musketeers", "output": "â â ¥â Žâ …⠑⠞⠑⠻⠎" }, { "input": "musketry", "output": "â â ¥â Žâ …â ‘â žâ —â ½" }, { "input": "muskets", "output": "â â ¥â Žâ …â ‘â žâ Ž" }, { "input": "muskier", "output": "â â ¥â Žâ …â Šâ »" }, { "input": "muskiest", "output": "â â ¥â Žâ …â Šâ ‘â Œ" }, { "input": "muskiness", "output": "â â ¥â Žâ …â Šâ °â Ž" }, { "input": "muskmelon", "output": "â â ¥â Žâ …â â ‘⠇⠕â " }, { "input": "muskmelons", "output": "â â ¥â Žâ …â â ‘⠇⠕â â Ž" }, { "input": "muskrat", "output": "â â ¥â Žâ …â —â â ž" }, { "input": "muskrats", "output": "â â ¥â Žâ …â —â â žâ Ž" }, { "input": "musky", "output": "â â ¥â Žâ …â ½" }, { "input": "muslin", "output": "â â ¥â Žâ ‡â ”" }, { "input": "muss", "output": "â â ¥â Žâ Ž" }, { "input": "mussed", "output": "â â ¥â Žâ Žâ «" }, { "input": "mussel", "output": "â â ¥â Žâ Žâ ‘â ‡" }, { "input": "mussels", "output": "â â ¥â Žâ Žâ ‘⠇⠎" }, { "input": "musses", "output": "â â ¥â Žâ Žâ ‘â Ž" }, { "input": "mussier", "output": "â â ¥â Žâ Žâ Šâ »" }, { "input": "mussiest", "output": "â â ¥â Žâ Žâ Šâ ‘â Œ" }, { "input": "mussing", "output": "â â ¥â Žâ Žâ ¬" }, { "input": "mussy", "output": "â â ¥â Žâ Žâ ½" }, { "input": "must", "output": "â â Œ" }, { "input": "mustache", "output": "â â ¥â Œâ â ¡â ‘" }, { "input": "mustaches", "output": "â â ¥â Œâ â ¡â ‘â Ž" }, { "input": "mustang", "output": "â â ¥â Œâ â â ›" }, { "input": "mustangs", "output": "â â ¥â Œâ â â ›â Ž" }, { "input": "mustard", "output": "â â Œâ œâ ™" }, { "input": "muster", "output": "â â ¥â Œâ »" }, { "input": "mustered", "output": "â â ¥â Œâ »â «" }, { "input": "mustering", "output": "â â ¥â Œâ »â ¬" }, { "input": "musters", "output": "â â ¥â Œâ »â Ž" }, { "input": "mustier", "output": "â â Œâ Šâ »" }, { "input": "mustiest", "output": "â â Œâ Šâ ‘â Œ" }, { "input": "mustiness", "output": "â â Œâ Šâ °â Ž" }, { "input": "musts", "output": "â â Œâ Ž" }, { "input": "musty", "output": "â â Œâ ½" }, { "input": "mutability", "output": "â â ¥â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "mutable", "output": "â â ¥â žâ â ƒâ ‡â ‘" }, { "input": "mutant", "output": "â â ¥â žâ â â ž" }, { "input": "mutants", "output": "â â ¥â žâ â â žâ Ž" }, { "input": "mutate", "output": "â â ¥â žâ â žâ ‘" }, { "input": "mutated", "output": "â â ¥â žâ â žâ «" }, { "input": "mutates", "output": "â â ¥â žâ â žâ ‘â Ž" }, { "input": "mutating", "output": "â â ¥â žâ â žâ ¬" }, { "input": "mutation", "output": "â â ¥â žâ â °â " }, { "input": "mutations", "output": "â â ¥â žâ â °â â Ž" }, { "input": "mute", "output": "â â ¥â žâ ‘" }, { "input": "muted", "output": "â â ¥â žâ «" }, { "input": "mutely", "output": "â â ¥â žâ ‘⠇⠽" }, { "input": "muteness", "output": "â â ¥â žâ ‘â °â Ž" }, { "input": "muter", "output": "â â ¥â žâ »" }, { "input": "mutes", "output": "â â ¥â žâ ‘â Ž" }, { "input": "mutest", "output": "â â ¥â žâ ‘â Œ" }, { "input": "mutilate", "output": "â â ¥â žâ Šâ ‡â â žâ ‘" }, { "input": "mutilated", "output": "â â ¥â žâ Šâ ‡â â žâ «" }, { "input": "mutilates", "output": "â â ¥â žâ Šâ ‡â â žâ ‘â Ž" }, { "input": "mutilating", "output": "â â ¥â žâ Šâ ‡â â žâ ¬" }, { "input": "mutilation", "output": "â â ¥â žâ Šâ ‡â â °â " }, { "input": "mutilations", "output": "â â ¥â žâ Šâ ‡â â °â â Ž" }, { "input": "mutineer", "output": "â â ¥â žâ ”â ‘â »" }, { "input": "mutineers", "output": "â â ¥â žâ ”⠑⠻⠎" }, { "input": "muting", "output": "â â ¥â žâ ¬" }, { "input": "mutinied", "output": "â â ¥â žâ ”â Šâ «" }, { "input": "mutinies", "output": "â â ¥â žâ ”â Šâ ‘â Ž" }, { "input": "mutinous", "output": "â â ¥â žâ ”⠳⠎" }, { "input": "mutinously", "output": "â â ¥â žâ ”⠳⠎⠇⠽" }, { "input": "mutiny", "output": "â â ¥â žâ ”â ½" }, { "input": "mutinying", "output": "â â ¥â žâ ”⠽⠬" }, { "input": "mutt", "output": "â â ¥â žâ ž" }, { "input": "mutter", "output": "â â ¥â žâ žâ »" }, { "input": "muttered", "output": "â â ¥â žâ žâ »â «" }, { "input": "muttering", "output": "â â ¥â žâ žâ »â ¬" }, { "input": "mutters", "output": "â â ¥â žâ žâ »â Ž" }, { "input": "mutton", "output": "â â ¥â žâ žâ •â " }, { "input": "mutts", "output": "â â ¥â žâ žâ Ž" }, { "input": "mutual", "output": "â â ¥â žâ ¥â â ‡" }, { "input": "mutuality", "output": "â â ¥â žâ ¥â â ‡â °â ½" }, { "input": "mutually", "output": "â â ¥â žâ ¥â â ‡â ‡â ½" }, { "input": "muumuu", "output": "â â ¥â ¥â â ¥â ¥" }, { "input": "muumuus", "output": "â â ¥â ¥â â ¥â ¥â Ž" }, { "input": "muzzle", "output": "â â ¥â µâ µâ ‡â ‘" }, { "input": "muzzled", "output": "â â ¥â µâ µâ ‡â «" }, { "input": "muzzles", "output": "â â ¥â µâ µâ ‡â ‘â Ž" }, { "input": "muzzling", "output": "â â ¥â µâ µâ ‡â ¬" }, { "input": "my", "output": "â â ½" }, { "input": "myna", "output": "â â ½â â " }, { "input": "mynah", "output": "â â ½â â â “" }, { "input": "mynahes", "output": "â â ½â â â “â ‘â Ž" }, { "input": "mynahs", "output": "â â ½â â â “â Ž" }, { "input": "mynas", "output": "â â ½â â â Ž" }, { "input": "myopia", "output": "â â ½â •â â Šâ " }, { "input": "myopic", "output": "â â ½â •â â Šâ ‰" }, { "input": "myriad", "output": "â â ½â —â Šâ â ™" }, { "input": "myriads", "output": "â â ½â —â Šâ â ™â Ž" }, { "input": "myrrh", "output": "â â ½â —â —â “" }, { "input": "myrtle", "output": "â â ½â —⠞⠇⠑" }, { "input": "myrtles", "output": "â â ½â —⠞⠇⠑⠎" }, { "input": "mys", "output": "â â ½â Ž" }, { "input": "myself", "output": "â â ½â ‹" }, { "input": "mysteries", "output": "â â ½â Œâ »â Šâ ‘â Ž" }, { "input": "mysterious", "output": "â â ½â Œâ »â Šâ ³â Ž" }, { "input": "mysteriously", "output": "â â ½â Œâ »â Šâ ³â Žâ ‡â ½" }, { "input": "mysteriousness", "output": "â â ½â Œâ »â Šâ ³â Žâ °â Ž" }, { "input": "mystery", "output": "â â ½â Œâ »â ½" }, { "input": "mystic", "output": "â â ½â Œâ Šâ ‰" }, { "input": "mystical", "output": "â â ½â Œâ Šâ ‰â â ‡" }, { "input": "mystically", "output": "â â ½â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "mysticism", "output": "â â ½â Œâ Šâ ‰â Šâ Žâ " }, { "input": "mystics", "output": "â â ½â Œâ Šâ ‰â Ž" }, { "input": "mystification", "output": "â â ½â Œâ Šâ ‹â Šâ ‰â â °â " }, { "input": "mystified", "output": "â â ½â Œâ Šâ ‹â Šâ «" }, { "input": "mystifies", "output": "â â ½â Œâ Šâ ‹â Šâ ‘â Ž" }, { "input": "mystify", "output": "â â ½â Œâ Šâ ‹â ½" }, { "input": "mystifying", "output": "â â ½â Œâ Šâ ‹â ½â ¬" }, { "input": "mystique", "output": "â â ½â Œâ Šâ Ÿâ ¥â ‘" }, { "input": "myth", "output": "â â ½â ¹" }, { "input": "mythic", "output": "â â ½â ¹â Šâ ‰" }, { "input": "mythical", "output": "â â ½â ¹â Šâ ‰â â ‡" }, { "input": "mythological", "output": "â â ½â ¹â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "mythologies", "output": "â â ½â ¹â •⠇⠕⠛⠊⠑⠎" }, { "input": "mythologist", "output": "â â ½â ¹â •⠇⠕⠛⠊⠌" }, { "input": "mythologists", "output": "â â ½â ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "mythology", "output": "â â ½â ¹â •⠇⠕⠛⠽" }, { "input": "myths", "output": "â â ½â ¹â Ž" }, { "input": "métier", "output": "â â  â ˜â »â â ˜â ‰â žâ Šâ »" }, { "input": "métiers", "output": "â â  â ˜â »â â ˜â ‰â žâ Šâ »â Ž" }, { "input": "mêlée", "output": "â â  â ˜â »â â â ”⠇⠠⠘⠻â â ˜â ‰â ‘" }, { "input": "mêlées", "output": "â â  â ˜â »â â â ”⠇⠠⠘⠻â â ˜â ‰â ‘â Ž" }, { "input": "n", "output": "â °â " }, { "input": "nab", "output": "â â â ƒ" }, { "input": "nabbed", "output": "â â â †â «" }, { "input": "nabbing", "output": "â â â †â ¬" }, { "input": "nabob", "output": "â â â ƒâ •â ƒ" }, { "input": "nabobs", "output": "â â â ƒâ •⠃⠎" }, { "input": "nabs", "output": "â â â ƒâ Ž" }, { "input": "nacho", "output": "â â â ¡â •" }, { "input": "nachos", "output": "â â â ¡â •â Ž" }, { "input": "nacre", "output": "â â â ‰â —â ‘" }, { "input": "nadir", "output": "â â â ™â Šâ —" }, { "input": "nadirs", "output": "â â â ™â Šâ —â Ž" }, { "input": "nag", "output": "â â â ›" }, { "input": "nagged", "output": "â â â ¶â «" }, { "input": "nagging", "output": "â â â ¶â ¬" }, { "input": "nags", "output": "â â â ›â Ž" }, { "input": "naiad", "output": "â â â Šâ â ™" }, { "input": "naiades", "output": "â â â Šâ â ™â ‘â Ž" }, { "input": "naiads", "output": "â â â Šâ â ™â Ž" }, { "input": "nail", "output": "â â â Šâ ‡" }, { "input": "nailbrush", "output": "â â â Šâ ‡â ƒâ —⠥⠩" }, { "input": "nailbrushes", "output": "â â â Šâ ‡â ƒâ —⠥⠩⠑⠎" }, { "input": "nailed", "output": "â â â Šâ ‡â «" }, { "input": "nailing", "output": "â â â Šâ ‡â ¬" }, { "input": "nails", "output": "â â â Šâ ‡â Ž" }, { "input": "naive", "output": "â â â Šâ §â ‘" }, { "input": "naively", "output": "â â â Šâ §â ‘⠇⠽" }, { "input": "naiver", "output": "â â â Šâ §â »" }, { "input": "naivest", "output": "â â â Šâ §â ‘â Œ" }, { "input": "naivety", "output": "â â â Šâ §â ‘â žâ ½" }, { "input": "naiveté", "output": "â â â Šâ §â ‘⠞⠠⠘⠻â â ˜â ‰" }, { "input": "naked", "output": "â â â …â «" }, { "input": "nakedly", "output": "â â â …⠫⠇⠽" }, { "input": "nakedness", "output": "â â â …â «â °â Ž" }, { "input": "name", "output": "â â " }, { "input": "named", "output": "â â â ™" }, { "input": "nameless", "output": "â â â ¨â Ž" }, { "input": "namely", "output": "â â â ‡â ½" }, { "input": "names", "output": "â â â Ž" }, { "input": "namesake", "output": "â â â Žâ â …â ‘" }, { "input": "namesakes", "output": "â â â Žâ â …â ‘â Ž" }, { "input": "naming", "output": "â â â â ¬" }, { "input": "nannies", "output": "â â â â â Šâ ‘â Ž" }, { "input": "nanny", "output": "â â â â â ½" }, { "input": "nanosecond", "output": "â â â â •⠎⠑⠉⠕â â ™" }, { "input": "nanoseconds", "output": "â â â â •⠎⠑⠉⠕â â ™â Ž" }, { "input": "nap", "output": "â â â " }, { "input": "napalm", "output": "â â â â â ‡â " }, { "input": "napalmed", "output": "â â â â â ‡â â «" }, { "input": "napalming", "output": "â â â â â ‡â â ¬" }, { "input": "napalms", "output": "â â â â â ‡â â Ž" }, { "input": "nape", "output": "â â â â ‘" }, { "input": "napes", "output": "â â â â ‘â Ž" }, { "input": "naphtha", "output": "â â â â “â ¹â " }, { "input": "naphthalene", "output": "â â â â “â ¹â â ‡â ¢â ‘" }, { "input": "napkin", "output": "â â â â …â ”" }, { "input": "napkins", "output": "â â â â …⠔⠎" }, { "input": "napped", "output": "â â â â â «" }, { "input": "nappier", "output": "â â â â â Šâ »" }, { "input": "nappies", "output": "â â â â â Šâ ‘â Ž" }, { "input": "nappiest", "output": "â â â â â Šâ ‘â Œ" }, { "input": "napping", "output": "â â â â â ¬" }, { "input": "nappy", "output": "â â â â â ½" }, { "input": "naps", "output": "â â â â Ž" }, { "input": "narc", "output": "â â œâ ‰" }, { "input": "narcissi", "output": "â â œâ ‰â Šâ Žâ Žâ Š" }, { "input": "narcissism", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Žâ " }, { "input": "narcissist", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œ" }, { "input": "narcissistic", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œâ Šâ ‰" }, { "input": "narcissists", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œâ Ž" }, { "input": "narcissus", "output": "â â œâ ‰â Šâ Žâ Žâ ¥â Ž" }, { "input": "narcissuses", "output": "â â œâ ‰â Šâ Žâ Žâ ¥â Žâ ‘â Ž" }, { "input": "narcosis", "output": "â â œâ ‰â •â Žâ Šâ Ž" }, { "input": "narcotic", "output": "â â œâ ‰â •â žâ Šâ ‰" }, { "input": "narcotics", "output": "â â œâ ‰â •⠞⠊⠉⠎" }, { "input": "narcs", "output": "â â œâ ‰â Ž" }, { "input": "nark", "output": "â â œâ …" }, { "input": "narked", "output": "â â œâ …â «" }, { "input": "narking", "output": "â â œâ …â ¬" }, { "input": "narks", "output": "â â œâ …â Ž" }, { "input": "narrate", "output": "â â œâ —â â žâ ‘" }, { "input": "narrated", "output": "â â œâ —â â žâ «" }, { "input": "narrates", "output": "â â œâ —â â žâ ‘â Ž" }, { "input": "narrating", "output": "â â œâ —â â žâ ¬" }, { "input": "narration", "output": "â â œâ —â â °â " }, { "input": "narrations", "output": "â â œâ —â â °â â Ž" }, { "input": "narrative", "output": "â â œâ —â â žâ Šâ §â ‘" }, { "input": "narratives", "output": "â â œâ —â â žâ Šâ §â ‘â Ž" }, { "input": "narrator", "output": "â â œâ —â â žâ •â —" }, { "input": "narrators", "output": "â â œâ —â â žâ •â —â Ž" }, { "input": "narrow", "output": "â â œâ —â ª" }, { "input": "narrowed", "output": "â â œâ —⠪⠫" }, { "input": "narrower", "output": "â â œâ —⠪⠻" }, { "input": "narrowest", "output": "â â œâ —⠪⠑⠌" }, { "input": "narrowing", "output": "â â œâ —⠪⠬" }, { "input": "narrowly", "output": "â â œâ —⠪⠇⠽" }, { "input": "narrowness", "output": "â â œâ —⠪⠰⠎" }, { "input": "narrows", "output": "â â œâ —⠪⠎" }, { "input": "narwhal", "output": "â â œâ ±â â ‡" }, { "input": "narwhals", "output": "â â œâ ±â â ‡â Ž" }, { "input": "nary", "output": "â â œâ ½" }, { "input": "nasal", "output": "â â â Žâ â ‡" }, { "input": "nasalize", "output": "â â â Žâ â ‡â Šâ µâ ‘" }, { "input": "nasalized", "output": "â â â Žâ â ‡â Šâ µâ «" }, { "input": "nasalizes", "output": "â â â Žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "nasalizing", "output": "â â â Žâ â ‡â Šâ µâ ¬" }, { "input": "nasally", "output": "â â â Žâ â ‡â ‡â ½" }, { "input": "nasals", "output": "â â â Žâ â ‡â Ž" }, { "input": "nascent", "output": "â â â Žâ ‰â ¢â ž" }, { "input": "nastier", "output": "â â â Œâ Šâ »" }, { "input": "nastiest", "output": "â â â Œâ Šâ ‘â Œ" }, { "input": "nastily", "output": "â â â Œâ Šâ ‡â ½" }, { "input": "nastiness", "output": "â â â Œâ Šâ °â Ž" }, { "input": "nasturtium", "output": "â â â Œâ ¥â —â žâ Šâ ¥â " }, { "input": "nasturtiums", "output": "â â â Œâ ¥â —â žâ Šâ ¥â â Ž" }, { "input": "nasty", "output": "â â â Œâ ½" }, { "input": "natal", "output": "â â â žâ â ‡" }, { "input": "nation", "output": "â â â °â " }, { "input": "national", "output": "â â â °â â â ‡" }, { "input": "nationalism", "output": "â â â °â â â ‡â Šâ Žâ " }, { "input": "nationalist", "output": "â â â °â â â ‡â Šâ Œ" }, { "input": "nationalistic", "output": "â â â °â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "nationalists", "output": "â â â °â â â ‡â Šâ Œâ Ž" }, { "input": "nationalities", "output": "â â â °â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "nationality", "output": "â â â °â â â ‡â °â ½" }, { "input": "nationalization", "output": "â â â °â â â ‡â Šâ µâ â °â " }, { "input": "nationalizations", "output": "â â â °â â â ‡â Šâ µâ â °â â Ž" }, { "input": "nationalize", "output": "â â â °â â â ‡â Šâ µâ ‘" }, { "input": "nationalized", "output": "â â â °â â â ‡â Šâ µâ «" }, { "input": "nationalizes", "output": "â â â °â â â ‡â Šâ µâ ‘â Ž" }, { "input": "nationalizing", "output": "â â â °â â â ‡â Šâ µâ ¬" }, { "input": "nationally", "output": "â â â °â â â ‡â ‡â ½" }, { "input": "nationals", "output": "â â â °â â â ‡â Ž" }, { "input": "nations", "output": "â â â °â â Ž" }, { "input": "nationwide", "output": "â â â °â â ºâ Šâ ™â ‘" }, { "input": "native", "output": "â â â žâ Šâ §â ‘" }, { "input": "natives", "output": "â â â žâ Šâ §â ‘â Ž" }, { "input": "nativities", "output": "â â â žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "nativity", "output": "â â â žâ Šâ §â °â ½" }, { "input": "nattier", "output": "â â â žâ žâ Šâ »" }, { "input": "nattiest", "output": "â â â žâ žâ Šâ ‘â Œ" }, { "input": "nattily", "output": "â â â žâ žâ Šâ ‡â ½" }, { "input": "natty", "output": "â â â žâ žâ ½" }, { "input": "natural", "output": "â â â žâ ¥â —â â ‡" }, { "input": "naturalism", "output": "â â â žâ ¥â —â â ‡â Šâ Žâ " }, { "input": "naturalist", "output": "â â â žâ ¥â —â â ‡â Šâ Œ" }, { "input": "naturalistic", "output": "â â â žâ ¥â —â â ‡â Šâ Œâ Šâ ‰" }, { "input": "naturalists", "output": "â â â žâ ¥â —â â ‡â Šâ Œâ Ž" }, { "input": "naturalization", "output": "â â â žâ ¥â —â â ‡â Šâ µâ â °â " }, { "input": "naturalize", "output": "â â â žâ ¥â —â â ‡â Šâ µâ ‘" }, { "input": "naturalized", "output": "â â â žâ ¥â —â â ‡â Šâ µâ «" }, { "input": "naturalizes", "output": "â â â žâ ¥â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "naturalizing", "output": "â â â žâ ¥â —â â ‡â Šâ µâ ¬" }, { "input": "naturally", "output": "â â â žâ ¥â —â â ‡â ‡â ½" }, { "input": "naturalness", "output": "â â â žâ ¥â —â â ‡â °â Ž" }, { "input": "naturals", "output": "â â â žâ ¥â —â â ‡â Ž" }, { "input": "nature", "output": "â â â žâ ¥â —â ‘" }, { "input": "natures", "output": "â â â žâ ¥â —â ‘â Ž" }, { "input": "naught", "output": "â â â ¥â £â ž" }, { "input": "naughtier", "output": "â â â ¥â £â žâ Šâ »" }, { "input": "naughtiest", "output": "â â â ¥â £â žâ Šâ ‘â Œ" }, { "input": "naughtily", "output": "â â â ¥â £â žâ Šâ ‡â ½" }, { "input": "naughtiness", "output": "â â â ¥â £â žâ Šâ °â Ž" }, { "input": "naughts", "output": "â â â ¥â £â žâ Ž" }, { "input": "naughty", "output": "â â â ¥â £â žâ ½" }, { "input": "nausea", "output": "â â â ¥â Žâ ‘â " }, { "input": "nauseate", "output": "â â â ¥â Žâ ‚â žâ ‘" }, { "input": "nauseated", "output": "â â â ¥â Žâ ‚â žâ «" }, { "input": "nauseates", "output": "â â â ¥â Žâ ‚â žâ ‘â Ž" }, { "input": "nauseating", "output": "â â â ¥â Žâ ‚â žâ ¬" }, { "input": "nauseatingly", "output": "â â â ¥â Žâ ‚⠞⠬⠇⠽" }, { "input": "nauseous", "output": "â â â ¥â Žâ ‘⠳⠎" }, { "input": "nautical", "output": "â â â ¥â žâ Šâ ‰â â ‡" }, { "input": "nautically", "output": "â â â ¥â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "nautili", "output": "â â â ¥â žâ Šâ ‡â Š" }, { "input": "nautilus", "output": "â â â ¥â žâ Šâ ‡â ¥â Ž" }, { "input": "nautiluses", "output": "â â â ¥â žâ Šâ ‡â ¥â Žâ ‘â Ž" }, { "input": "naval", "output": "â â â §â â ‡" }, { "input": "nave", "output": "â â â §â ‘" }, { "input": "navel", "output": "â â â §â ‘â ‡" }, { "input": "navels", "output": "â â â §â ‘⠇⠎" }, { "input": "naves", "output": "â â â §â ‘â Ž" }, { "input": "navies", "output": "â â â §â Šâ ‘â Ž" }, { "input": "navigability", "output": "â â â §â Šâ ›â â ƒâ Šâ ‡â °â ½" }, { "input": "navigable", "output": "â â â §â Šâ ›â â ƒâ ‡â ‘" }, { "input": "navigate", "output": "â â â §â Šâ ›â â žâ ‘" }, { "input": "navigated", "output": "â â â §â Šâ ›â â žâ «" }, { "input": "navigates", "output": "â â â §â Šâ ›â â žâ ‘â Ž" }, { "input": "navigating", "output": "â â â §â Šâ ›â â žâ ¬" }, { "input": "navigation", "output": "â â â §â Šâ ›â â °â " }, { "input": "navigational", "output": "â â â §â Šâ ›â â °â â â ‡" }, { "input": "navigator", "output": "â â â §â Šâ ›â â žâ •â —" }, { "input": "navigators", "output": "â â â §â Šâ ›â â žâ •â —â Ž" }, { "input": "navy", "output": "â â â §â ½" }, { "input": "nay", "output": "â â â ½" }, { "input": "nays", "output": "â â â ½â Ž" }, { "input": "naysayer", "output": "â â â ½â Žâ â ½â »" }, { "input": "naysayers", "output": "â â â ½â Žâ â ½â »â Ž" }, { "input": "near", "output": "â â ‘â œ" }, { "input": "nearby", "output": "â â ‘⠜⠃⠽" }, { "input": "neared", "output": "â â ‘⠜⠫" }, { "input": "nearer", "output": "â â ‘⠜⠻" }, { "input": "nearest", "output": "â â ‘⠜⠑⠌" }, { "input": "nearing", "output": "â â ‘⠜⠬" }, { "input": "nearly", "output": "â â ‘⠜⠇⠽" }, { "input": "nearness", "output": "â â ‘⠜⠰⠎" }, { "input": "nears", "output": "â â ‘⠜⠎" }, { "input": "nearsighted", "output": "â â ‘⠜⠎⠊⠣⠞⠫" }, { "input": "nearsightedness", "output": "â â ‘⠜⠎⠊⠣⠞⠫⠰⠎" }, { "input": "neat", "output": "â â ‚â ž" }, { "input": "neater", "output": "â â ‚â žâ »" }, { "input": "neatest", "output": "â â ‚â žâ ‘â Œ" }, { "input": "neath", "output": "â â ‚â ¹" }, { "input": "neatly", "output": "â â ‚⠞⠇⠽" }, { "input": "neatness", "output": "â â ‚â žâ °â Ž" }, { "input": "nebula", "output": "â â ‘⠃⠥⠇â " }, { "input": "nebulae", "output": "â â ‘⠃⠥⠇â â ‘" }, { "input": "nebular", "output": "â â ‘⠃⠥⠇⠜" }, { "input": "nebulas", "output": "â â ‘⠃⠥⠇â â Ž" }, { "input": "nebulous", "output": "â â ‘⠃⠥⠇⠳⠎" }, { "input": "necessaries", "output": "â â ‘⠉⠑⠎⠎⠜⠊⠑⠎" }, { "input": "necessarily", "output": "â â ‘⠉⠑⠎⠎⠜⠊⠇⠽" }, { "input": "necessary", "output": "â â ‘â ‰" }, { "input": "necessitate", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ ‘" }, { "input": "necessitated", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ «" }, { "input": "necessitates", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ ‘â Ž" }, { "input": "necessitating", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ ¬" }, { "input": "necessities", "output": "â â ‘⠉⠑⠎⠎⠊⠞⠊⠑⠎" }, { "input": "necessity", "output": "â â ‘⠉⠑⠎⠎⠰⠽" }, { "input": "neck", "output": "â â ‘⠉⠅" }, { "input": "necked", "output": "â â ‘⠉⠅⠫" }, { "input": "neckerchief", "output": "â â ‘⠉⠅⠻⠡⠊⠑⠋" }, { "input": "neckerchiefs", "output": "â â ‘⠉⠅⠻⠡⠊⠑⠋⠎" }, { "input": "neckerchieves", "output": "â â ‘⠉⠅⠻⠡⠊⠑⠧⠑⠎" }, { "input": "necking", "output": "â â ‘⠉⠅⠬" }, { "input": "necklace", "output": "â â ‘⠉⠅⠇â â ‰â ‘" }, { "input": "necklaces", "output": "â â ‘⠉⠅⠇â â ‰â ‘â Ž" }, { "input": "neckline", "output": "â â ‘⠉⠅⠇⠔⠑" }, { "input": "necklines", "output": "â â ‘⠉⠅⠇⠔⠑⠎" }, { "input": "necks", "output": "â â ‘⠉⠅⠎" }, { "input": "necktie", "output": "â â ‘⠉⠅⠞⠊⠑" }, { "input": "neckties", "output": "â â ‘⠉⠅⠞⠊⠑⠎" }, { "input": "necromancer", "output": "â â ‘⠉⠗⠕â â ¨â ‘â —" }, { "input": "necromancers", "output": "â â ‘⠉⠗⠕â â ¨â ‘â —â Ž" }, { "input": "necromancy", "output": "â â ‘⠉⠗⠕â â â â ‰â ½" }, { "input": "necrophilia", "output": "â â ‘⠉⠗⠕â â “⠊⠇⠊â " }, { "input": "necrosis", "output": "â â ‘⠉⠗⠕⠎⠊⠎" }, { "input": "nectar", "output": "â â ‘⠉⠞⠜" }, { "input": "nectarine", "output": "â â ‘⠉⠞⠜⠔⠑" }, { "input": "nectarines", "output": "â â ‘⠉⠞⠜⠔⠑⠎" }, { "input": "need", "output": "â â ‘â «" }, { "input": "needed", "output": "â â ‘â «â «" }, { "input": "needful", "output": "â â ‘â «â °â ‡" }, { "input": "needier", "output": "â â ‘â «â Šâ »" }, { "input": "neediest", "output": "â â ‘â «â Šâ ‘â Œ" }, { "input": "neediness", "output": "â â ‘â «â Šâ °â Ž" }, { "input": "needing", "output": "â â ‘â «â ¬" }, { "input": "needle", "output": "â â ‘⠫⠇⠑" }, { "input": "needled", "output": "â â ‘⠫⠇⠫" }, { "input": "needlepoint", "output": "â â ‘⠫⠇⠑â â •⠔⠞" }, { "input": "needles", "output": "â â ‘⠫⠇⠑⠎" }, { "input": "needless", "output": "â â ‘⠫⠨⠎" }, { "input": "needlessly", "output": "â â ‘⠫⠨⠎⠇⠽" }, { "input": "needlework", "output": "â â ‘⠫⠇⠑â â º" }, { "input": "needling", "output": "â â ‘⠫⠇⠬" }, { "input": "needs", "output": "â â ‘â «â Ž" }, { "input": "needy", "output": "â â ‘â «â ½" }, { "input": "nefarious", "output": "â â ‘⠋⠜⠊⠳⠎" }, { "input": "nefariously", "output": "â â ‘⠋⠜⠊⠳⠎⠇⠽" }, { "input": "nefariousness", "output": "â â ‘⠋⠜⠊⠳⠎⠰⠎" }, { "input": "negate", "output": "â â ‘â ›â â žâ ‘" }, { "input": "negated", "output": "â â ‘â ›â â žâ «" }, { "input": "negates", "output": "â â ‘â ›â â žâ ‘â Ž" }, { "input": "negating", "output": "â â ‘â ›â â žâ ¬" }, { "input": "negation", "output": "â â ‘â ›â â °â " }, { "input": "negations", "output": "â â ‘â ›â â °â â Ž" }, { "input": "negative", "output": "â â ‘â ›â â žâ Šâ §â ‘" }, { "input": "negatived", "output": "â â ‘â ›â â žâ Šâ §â «" }, { "input": "negatively", "output": "â â ‘â ›â â žâ Šâ §â ‘⠇⠽" }, { "input": "negatives", "output": "â â ‘â ›â â žâ Šâ §â ‘â Ž" }, { "input": "negativing", "output": "â â ‘â ›â â žâ Šâ §â ¬" }, { "input": "negativity", "output": "â â ‘â ›â â žâ Šâ §â °â ½" }, { "input": "neglect", "output": "â â ‘⠛⠇⠑⠉⠞" }, { "input": "neglected", "output": "â â ‘⠛⠇⠑⠉⠞⠫" }, { "input": "neglectful", "output": "â â ‘⠛⠇⠑⠉⠞⠰⠇" }, { "input": "neglectfully", "output": "â â ‘⠛⠇⠑⠉⠞⠰⠇⠇⠽" }, { "input": "neglecting", "output": "â â ‘⠛⠇⠑⠉⠞⠬" }, { "input": "neglects", "output": "â â ‘⠛⠇⠑⠉⠞⠎" }, { "input": "neglig", "output": "â â ‘⠛⠇⠊⠛" }, { "input": "negligee", "output": "â â ‘⠛⠇⠊⠛⠑⠑" }, { "input": "negligees", "output": "â â ‘⠛⠇⠊⠛⠑⠑⠎" }, { "input": "negligence", "output": "â â ‘⠛⠇⠊⠛⠰⠑" }, { "input": "negligent", "output": "â â ‘⠛⠇⠊⠛⠢⠞" }, { "input": "negligently", "output": "â â ‘⠛⠇⠊⠛⠢⠞⠇⠽" }, { "input": "negligible", "output": "â â ‘⠛⠇⠊⠛⠊⠃⠇⠑" }, { "input": "negligibly", "output": "â â ‘⠛⠇⠊⠛⠊⠃⠇⠽" }, { "input": "negligs", "output": "â â ‘⠛⠇⠊⠛⠎" }, { "input": "negotiable", "output": "â â ‘⠛⠕⠞⠊â â ƒâ ‡â ‘" }, { "input": "negotiate", "output": "â â ‘⠛⠕⠞⠊â â žâ ‘" }, { "input": "negotiated", "output": "â â ‘⠛⠕⠞⠊â â žâ «" }, { "input": "negotiates", "output": "â â ‘⠛⠕⠞⠊â â žâ ‘â Ž" }, { "input": "negotiating", "output": "â â ‘⠛⠕⠞⠊â â žâ ¬" }, { "input": "negotiation", "output": "â â ‘⠛⠕⠞⠊â â °â " }, { "input": "negotiations", "output": "â â ‘⠛⠕⠞⠊â â °â â Ž" }, { "input": "negotiator", "output": "â â ‘⠛⠕⠞⠊â â žâ •â —" }, { "input": "negotiators", "output": "â â ‘⠛⠕⠞⠊â â žâ •â —â Ž" }, { "input": "neigh", "output": "â â ‘â Šâ £" }, { "input": "neighbor", "output": "â â ‘⠊⠣⠃⠕⠗" }, { "input": "neighbored", "output": "â â ‘⠊⠣⠃⠕⠗⠫" }, { "input": "neighborhood", "output": "â â ‘⠊⠣⠃⠕⠗⠓⠕⠕⠙" }, { "input": "neighborhoods", "output": "â â ‘⠊⠣⠃⠕⠗⠓⠕⠕⠙⠎" }, { "input": "neighboring", "output": "â â ‘⠊⠣⠃⠕⠗⠬" }, { "input": "neighborliness", "output": "â â ‘⠊⠣⠃⠕⠗⠇⠊⠰⠎" }, { "input": "neighborly", "output": "â â ‘⠊⠣⠃⠕⠗⠇⠽" }, { "input": "neighbors", "output": "â â ‘⠊⠣⠃⠕⠗⠎" }, { "input": "neighed", "output": "â â ‘⠊⠣⠫" }, { "input": "neighing", "output": "â â ‘⠊⠣⠬" }, { "input": "neighs", "output": "â â ‘⠊⠣⠎" }, { "input": "neither", "output": "â â ‘â Š" }, { "input": "nematode", "output": "â â ‘â â â žâ •⠙⠑" }, { "input": "nematodes", "output": "â â ‘â â â žâ •⠙⠑⠎" }, { "input": "nemeses", "output": "â â ‘â â ‘â Žâ ‘â Ž" }, { "input": "nemesis", "output": "â â ‘â â ‘â Žâ Šâ Ž" }, { "input": "neoclassic", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰" }, { "input": "neoclassical", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰â â ‡" }, { "input": "neoclassicism", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰â Šâ Žâ " }, { "input": "neocolonialism", "output": "â â ‘⠕⠉⠕⠇⠕â â Šâ â ‡â Šâ Žâ " }, { "input": "neodymium", "output": "â â ‘⠕⠙⠽â â Šâ ¥â " }, { "input": "neologism", "output": "â â ‘⠕⠇⠕⠛⠊⠎â " }, { "input": "neologisms", "output": "â â ‘⠕⠇⠕⠛⠊⠎â â Ž" }, { "input": "neon", "output": "â â ‘â •â " }, { "input": "neonatal", "output": "â â ‘â •â â â žâ â ‡" }, { "input": "neonate", "output": "â â ‘â •â â â žâ ‘" }, { "input": "neonates", "output": "â â ‘â •â â â žâ ‘â Ž" }, { "input": "neophyte", "output": "â â ‘â •â â “⠽⠞⠑" }, { "input": "neophytes", "output": "â â ‘â •â â “⠽⠞⠑⠎" }, { "input": "neoprene", "output": "â â ‘â •â â —⠢⠑" }, { "input": "nephew", "output": "â â ‘â â “â ‘â º" }, { "input": "nephews", "output": "â â ‘â â “⠑⠺⠎" }, { "input": "nephritis", "output": "â â ‘â â “â —â Šâ žâ Šâ Ž" }, { "input": "nepotism", "output": "â â ‘â â •â žâ Šâ Žâ " }, { "input": "neptunium", "output": "â â ‘â â žâ ¥â â Šâ ¥â " }, { "input": "nerd", "output": "â â »â ™" }, { "input": "nerdier", "output": "â â »â ™â Šâ »" }, { "input": "nerdiest", "output": "â â »â ™â Šâ ‘â Œ" }, { "input": "nerds", "output": "â â »â ™â Ž" }, { "input": "nerdy", "output": "â â »â ™â ½" }, { "input": "nerve", "output": "â â »â §â ‘" }, { "input": "nerved", "output": "â â »â §â «" }, { "input": "nerveless", "output": "â â »â §â ‘⠨⠎" }, { "input": "nervelessly", "output": "â â »â §â ‘⠨⠎⠇⠽" }, { "input": "nerves", "output": "â â »â §â ‘â Ž" }, { "input": "nervier", "output": "â â »â §â Šâ »" }, { "input": "nerviest", "output": "â â »â §â Šâ ‘â Œ" }, { "input": "nerving", "output": "â â »â §â ¬" }, { "input": "nervous", "output": "â â »â §â ³â Ž" }, { "input": "nervously", "output": "â â »â §â ³â Žâ ‡â ½" }, { "input": "nervousness", "output": "â â »â §â ³â Žâ °â Ž" }, { "input": "nervy", "output": "â â »â §â ½" }, { "input": "nest", "output": "â â ‘â Œ" }, { "input": "nested", "output": "â â ‘⠌⠫" }, { "input": "nesting", "output": "â â ‘⠌⠬" }, { "input": "nestle", "output": "â â ‘⠌⠇⠑" }, { "input": "nestled", "output": "â â ‘⠌⠇⠫" }, { "input": "nestles", "output": "â â ‘⠌⠇⠑⠎" }, { "input": "nestling", "output": "â â ‘⠌⠇⠬" }, { "input": "nestlings", "output": "â â ‘⠌⠇⠬⠎" }, { "input": "nests", "output": "â â ‘⠌⠎" }, { "input": "net", "output": "â â ‘â ž" }, { "input": "nether", "output": "â â ‘⠮⠗" }, { "input": "nethermost", "output": "â â ‘⠮⠗â â •â Œ" }, { "input": "nets", "output": "â â ‘â žâ Ž" }, { "input": "netted", "output": "â â ‘â žâ žâ «" }, { "input": "netting", "output": "â â ‘â žâ žâ ¬" }, { "input": "nettle", "output": "â â ‘⠞⠞⠇⠑" }, { "input": "nettled", "output": "â â ‘⠞⠞⠇⠫" }, { "input": "nettles", "output": "â â ‘⠞⠞⠇⠑⠎" }, { "input": "nettlesome", "output": "â â ‘⠞⠞⠇⠑â â Ž" }, { "input": "nettling", "output": "â â ‘⠞⠞⠇⠬" }, { "input": "network", "output": "â â ‘â žâ â º" }, { "input": "networked", "output": "â â ‘â žâ â ºâ «" }, { "input": "networking", "output": "â â ‘â žâ â ºâ ¬" }, { "input": "networks", "output": "â â ‘â žâ â ºâ Ž" }, { "input": "neural", "output": "â â ‘⠥⠗â â ‡" }, { "input": "neuralgia", "output": "â â ‘⠥⠗â â ‡â ›â Šâ " }, { "input": "neuralgic", "output": "â â ‘⠥⠗â â ‡â ›â Šâ ‰" }, { "input": "neuritis", "output": "â â ‘⠥⠗⠊⠞⠊⠎" }, { "input": "neurological", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "neurologist", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠌" }, { "input": "neurologists", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "neurology", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠽" }, { "input": "neuron", "output": "â â ‘⠥⠗⠕â " }, { "input": "neurons", "output": "â â ‘⠥⠗⠕â â Ž" }, { "input": "neuroses", "output": "â â ‘⠥⠗⠕⠎⠑⠎" }, { "input": "neurosis", "output": "â â ‘⠥⠗⠕⠎⠊⠎" }, { "input": "neurosurgery", "output": "â â ‘⠥⠗⠕⠎⠥⠗⠛⠻⠽" }, { "input": "neurotic", "output": "â â ‘⠥⠗⠕⠞⠊⠉" }, { "input": "neurotically", "output": "â â ‘⠥⠗⠕⠞⠊⠉â â ‡â ‡â ½" }, { "input": "neurotics", "output": "â â ‘⠥⠗⠕⠞⠊⠉⠎" }, { "input": "neurotransmitter", "output": "â â ‘⠥⠗⠕⠞⠗â â â Žâ â Šâ žâ žâ »" }, { "input": "neurotransmitters", "output": "â â ‘⠥⠗⠕⠞⠗â â â Žâ â Šâ žâ žâ »â Ž" }, { "input": "neuter", "output": "â â ‘⠥⠞⠻" }, { "input": "neutered", "output": "â â ‘⠥⠞⠻⠫" }, { "input": "neutering", "output": "â â ‘⠥⠞⠻⠬" }, { "input": "neuters", "output": "â â ‘⠥⠞⠻⠎" }, { "input": "neutral", "output": "â â ‘⠥⠞⠗â â ‡" }, { "input": "neutrality", "output": "â â ‘⠥⠞⠗â â ‡â °â ½" }, { "input": "neutralization", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ â °â " }, { "input": "neutralize", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ ‘" }, { "input": "neutralized", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ «" }, { "input": "neutralizer", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ »" }, { "input": "neutralizers", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ »â Ž" }, { "input": "neutralizes", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ ‘â Ž" }, { "input": "neutralizing", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ ¬" }, { "input": "neutrally", "output": "â â ‘⠥⠞⠗â â ‡â ‡â ½" }, { "input": "neutrals", "output": "â â ‘⠥⠞⠗â â ‡â Ž" }, { "input": "neutrino", "output": "â â ‘⠥⠞⠗⠔⠕" }, { "input": "neutrinos", "output": "â â ‘⠥⠞⠗⠔⠕⠎" }, { "input": "neutron", "output": "â â ‘⠥⠞⠗⠕â " }, { "input": "neutrons", "output": "â â ‘⠥⠞⠗⠕â â Ž" }, { "input": "never", "output": "â â â ‘" }, { "input": "nevermore", "output": "â â â ‘â â •â —â ‘" }, { "input": "nevertheless", "output": "â â â ‘⠮⠨⠎" }, { "input": "new", "output": "â â ‘â º" }, { "input": "newbie", "output": "â â ‘⠺⠃⠊⠑" }, { "input": "newbies", "output": "â â ‘⠺⠃⠊⠑⠎" }, { "input": "newborn", "output": "â â ‘⠺⠃⠕⠗â " }, { "input": "newborns", "output": "â â ‘⠺⠃⠕⠗â â Ž" }, { "input": "newcomer", "output": "â â ‘⠺⠉⠕â â »" }, { "input": "newcomers", "output": "â â ‘⠺⠉⠕â â »â Ž" }, { "input": "newel", "output": "â â ‘⠺⠑⠇" }, { "input": "newels", "output": "â â ‘⠺⠑⠇⠎" }, { "input": "newer", "output": "â â ‘⠺⠻" }, { "input": "newest", "output": "â â ‘⠺⠑⠌" }, { "input": "newfangled", "output": "â â ‘⠺⠋â â â ›â ‡â «" }, { "input": "newly", "output": "â â ‘⠺⠇⠽" }, { "input": "newlywed", "output": "â â ‘⠺⠇⠽⠺⠫" }, { "input": "newlyweds", "output": "â â ‘⠺⠇⠽⠺⠫⠎" }, { "input": "newness", "output": "â â ‘⠺⠰⠎" }, { "input": "news", "output": "â â ‘⠺⠎" }, { "input": "newsagents", "output": "â â ‘⠺⠎â â ›â ¢â žâ Ž" }, { "input": "newsboy", "output": "â â ‘⠺⠎⠃⠕⠽" }, { "input": "newsboys", "output": "â â ‘⠺⠎⠃⠕⠽⠎" }, { "input": "newscast", "output": "â â ‘⠺⠎⠉â â Œ" }, { "input": "newscaster", "output": "â â ‘⠺⠎⠉â â Œâ »" }, { "input": "newscasters", "output": "â â ‘⠺⠎⠉â â Œâ »â Ž" }, { "input": "newscasts", "output": "â â ‘⠺⠎⠉â â Œâ Ž" }, { "input": "newsflash", "output": "â â ‘⠺⠎⠋⠇â â ©" }, { "input": "newsier", "output": "â â ‘⠺⠎⠊⠻" }, { "input": "newsiest", "output": "â â ‘⠺⠎⠊⠑⠌" }, { "input": "newsletter", "output": "â â ‘⠺⠎⠇⠗" }, { "input": "newsletters", "output": "â â ‘⠺⠎⠇⠗⠎" }, { "input": "newsman", "output": "â â ‘⠺⠎â â â " }, { "input": "newsmen", "output": "â â ‘⠺⠎â â ¢" }, { "input": "newspaper", "output": "â â ‘⠺⠎â â â â »" }, { "input": "newspaperman", "output": "â â ‘⠺⠎â â â â »â â â " }, { "input": "newspapermen", "output": "â â ‘⠺⠎â â â â »â â ¢" }, { "input": "newspapers", "output": "â â ‘⠺⠎â â â â »â Ž" }, { "input": "newspaperwoman", "output": "â â ‘⠺⠎â â â â »â ºâ •â â â " }, { "input": "newspaperwomen", "output": "â â ‘⠺⠎â â â â »â ºâ •â â ¢" }, { "input": "newsprint", "output": "â â ‘⠺⠎â â —⠔⠞" }, { "input": "newsreel", "output": "â â ‘⠺⠎⠗⠑⠑⠇" }, { "input": "newsreels", "output": "â â ‘⠺⠎⠗⠑⠑⠇⠎" }, { "input": "newsstand", "output": "â â ‘⠺⠎⠌⠯" }, { "input": "newsstands", "output": "â â ‘⠺⠎⠌⠯⠎" }, { "input": "newsworthier", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠊⠻" }, { "input": "newsworthiest", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠊⠑⠌" }, { "input": "newsworthy", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠽" }, { "input": "newsy", "output": "â â ‘⠺⠎⠽" }, { "input": "newt", "output": "â â ‘⠺⠞" }, { "input": "newton", "output": "â â ‘⠺⠞⠕â " }, { "input": "newtons", "output": "â â ‘⠺⠞⠕â â Ž" }, { "input": "newts", "output": "â â ‘⠺⠞⠎" }, { "input": "next", "output": "â â ‘â ­â ž" }, { "input": "nexus", "output": "â â ‘⠭⠥⠎" }, { "input": "nexuses", "output": "â â ‘⠭⠥⠎⠑⠎" }, { "input": "niacin", "output": "â â Šâ â ‰â ”" }, { "input": "nib", "output": "â â Šâ ƒ" }, { "input": "nibble", "output": "â â Šâ †â ‡â ‘" }, { "input": "nibbled", "output": "â â Šâ †â ‡â «" }, { "input": "nibbler", "output": "â â Šâ †â ‡â »" }, { "input": "nibblers", "output": "â â Šâ †â ‡â »â Ž" }, { "input": "nibbles", "output": "â â Šâ †â ‡â ‘â Ž" }, { "input": "nibbling", "output": "â â Šâ †â ‡â ¬" }, { "input": "nibs", "output": "â â Šâ ƒâ Ž" }, { "input": "nice", "output": "â â Šâ ‰â ‘" }, { "input": "nicely", "output": "â â Šâ ‰â ‘⠇⠽" }, { "input": "niceness", "output": "â â Šâ ‰â ‘â °â Ž" }, { "input": "nicer", "output": "â â Šâ ‰â »" }, { "input": "nicest", "output": "â â Šâ ‰â ‘â Œ" }, { "input": "niceties", "output": "â â Šâ ‰â ‘â žâ Šâ ‘â Ž" }, { "input": "nicety", "output": "â â Šâ ‰â ‘â žâ ½" }, { "input": "niche", "output": "â â Šâ ¡â ‘" }, { "input": "niches", "output": "â â Šâ ¡â ‘â Ž" }, { "input": "nick", "output": "â â Šâ ‰â …" }, { "input": "nicked", "output": "â â Šâ ‰â …â «" }, { "input": "nickel", "output": "â â Šâ ‰â …â ‘â ‡" }, { "input": "nickelodeon", "output": "â â Šâ ‰â …⠑⠇⠕⠙⠑⠕â " }, { "input": "nickelodeons", "output": "â â Šâ ‰â …⠑⠇⠕⠙⠑⠕â â Ž" }, { "input": "nickels", "output": "â â Šâ ‰â …⠑⠇⠎" }, { "input": "nicking", "output": "â â Šâ ‰â …â ¬" }, { "input": "nicknack", "output": "â â Šâ ‰â …â â â ‰â …" }, { "input": "nicknacks", "output": "â â Šâ ‰â …â â â ‰â …â Ž" }, { "input": "nickname", "output": "â â Šâ ‰â …â â " }, { "input": "nicknamed", "output": "â â Šâ ‰â …â â â ™" }, { "input": "nicknames", "output": "â â Šâ ‰â …â â â Ž" }, { "input": "nicknaming", "output": "â â Šâ ‰â …â â â â ¬" }, { "input": "nicks", "output": "â â Šâ ‰â …â Ž" }, { "input": "nicotine", "output": "â â Šâ ‰â •⠞⠔⠑" }, { "input": "niece", "output": "â â Šâ ‘⠉⠑" }, { "input": "nieces", "output": "â â Šâ ‘⠉⠑⠎" }, { "input": "niftier", "output": "â â Šâ ‹â žâ Šâ »" }, { "input": "niftiest", "output": "â â Šâ ‹â žâ Šâ ‘â Œ" }, { "input": "nifty", "output": "â â Šâ ‹â žâ ½" }, { "input": "niggard", "output": "â â Šâ ¶â œâ ™" }, { "input": "niggardliness", "output": "â â Šâ ¶â œâ ™â ‡â Šâ °â Ž" }, { "input": "niggardly", "output": "â â Šâ ¶â œâ ™â ‡â ½" }, { "input": "niggards", "output": "â â Šâ ¶â œâ ™â Ž" }, { "input": "nigger", "output": "â â Šâ ¶â »" }, { "input": "niggers", "output": "â â Šâ ¶â »â Ž" }, { "input": "niggle", "output": "â â Šâ ¶â ‡â ‘" }, { "input": "niggled", "output": "â â Šâ ¶â ‡â «" }, { "input": "niggles", "output": "â â Šâ ¶â ‡â ‘â Ž" }, { "input": "niggling", "output": "â â Šâ ¶â ‡â ¬" }, { "input": "nigh", "output": "â â Šâ £" }, { "input": "nigher", "output": "â â Šâ £â »" }, { "input": "nighest", "output": "â â Šâ £â ‘â Œ" }, { "input": "night", "output": "â â Šâ £â ž" }, { "input": "nightcap", "output": "â â Šâ £â žâ ‰â â " }, { "input": "nightcaps", "output": "â â Šâ £â žâ ‰â â â Ž" }, { "input": "nightclothes", "output": "â â Šâ £â žâ ‰â ‡â •⠮⠎" }, { "input": "nightclub", "output": "â â Šâ £â žâ ‰â ‡â ¥â ƒ" }, { "input": "nightclubbed", "output": "â â Šâ £â žâ ‰â ‡â ¥â †â «" }, { "input": "nightclubbing", "output": "â â Šâ £â žâ ‰â ‡â ¥â †â ¬" }, { "input": "nightclubs", "output": "â â Šâ £â žâ ‰â ‡â ¥â ƒâ Ž" }, { "input": "nightfall", "output": "â â Šâ £â žâ ‹â â ‡â ‡" }, { "input": "nightgown", "output": "â â Šâ £â žâ ›â ªâ " }, { "input": "nightgowns", "output": "â â Šâ £â žâ ›â ªâ â Ž" }, { "input": "nighthawk", "output": "â â Šâ £â žâ “â â ºâ …" }, { "input": "nighthawks", "output": "â â Šâ £â žâ “â â ºâ …â Ž" }, { "input": "nightie", "output": "â â Šâ £â žâ Šâ ‘" }, { "input": "nighties", "output": "â â Šâ £â žâ Šâ ‘â Ž" }, { "input": "nightingale", "output": "â â Šâ £â žâ ¬â â ‡â ‘" }, { "input": "nightingales", "output": "â â Šâ £â žâ ¬â â ‡â ‘â Ž" }, { "input": "nightlife", "output": "â â Šâ £â žâ ‡â Šâ ‹â ‘" }, { "input": "nightly", "output": "â â Šâ £â žâ ‡â ½" }, { "input": "nightmare", "output": "â â Šâ £â žâ â œâ ‘" }, { "input": "nightmares", "output": "â â Šâ £â žâ â œâ ‘â Ž" }, { "input": "nightmarish", "output": "â â Šâ £â žâ â œâ Šâ ©" }, { "input": "nights", "output": "â â Šâ £â žâ Ž" }, { "input": "nightshade", "output": "â â Šâ £â žâ ©â â ™â ‘" }, { "input": "nightshades", "output": "â â Šâ £â žâ ©â â ™â ‘â Ž" }, { "input": "nightshirt", "output": "â â Šâ £â žâ ©â Šâ —â ž" }, { "input": "nightshirts", "output": "â â Šâ £â žâ ©â Šâ —â žâ Ž" }, { "input": "nightstick", "output": "â â Šâ £â žâ Œâ Šâ ‰â …" }, { "input": "nightsticks", "output": "â â Šâ £â žâ Œâ Šâ ‰â …â Ž" }, { "input": "nighttime", "output": "â â Šâ £â žâ â ž" }, { "input": "nighty", "output": "â â Šâ £â žâ ½" }, { "input": "nihilism", "output": "â â Šâ “⠊⠇⠊⠎â " }, { "input": "nihilist", "output": "â â Šâ “⠊⠇⠊⠌" }, { "input": "nihilistic", "output": "â â Šâ “⠊⠇⠊⠌⠊⠉" }, { "input": "nihilists", "output": "â â Šâ “⠊⠇⠊⠌⠎" }, { "input": "nil", "output": "â â Šâ ‡" }, { "input": "nimbi", "output": "â â Šâ â ƒâ Š" }, { "input": "nimble", "output": "â â Šâ â ƒâ ‡â ‘" }, { "input": "nimbleness", "output": "â â Šâ â ƒâ ‡â ‘â °â Ž" }, { "input": "nimbler", "output": "â â Šâ â ƒâ ‡â »" }, { "input": "nimblest", "output": "â â Šâ â ƒâ ‡â ‘â Œ" }, { "input": "nimbly", "output": "â â Šâ â ƒâ ‡â ½" }, { "input": "nimbus", "output": "â â Šâ â ƒâ ¥â Ž" }, { "input": "nimbuses", "output": "â â Šâ â ƒâ ¥â Žâ ‘â Ž" }, { "input": "nincompoop", "output": "â â ”⠉⠕â â â •â •â " }, { "input": "nincompoops", "output": "â â ”⠉⠕â â â •â •â â Ž" }, { "input": "nine", "output": "â â ”â ‘" }, { "input": "ninepin", "output": "â â ”â ‘â â ”" }, { "input": "ninepins", "output": "â â ”â ‘â â ”â Ž" }, { "input": "nines", "output": "â â ”â ‘â Ž" }, { "input": "nineteen", "output": "â â ”â ‘â žâ ‘â ¢" }, { "input": "nineteens", "output": "â â ”⠑⠞⠑⠢⠎" }, { "input": "nineteenth", "output": "â â ”⠑⠞⠑⠢⠹" }, { "input": "nineteenths", "output": "â â ”⠑⠞⠑⠢⠹⠎" }, { "input": "nineties", "output": "â â ”â ‘â žâ Šâ ‘â Ž" }, { "input": "ninetieth", "output": "â â ”â ‘â žâ Šâ ‘â ¹" }, { "input": "ninetieths", "output": "â â ”⠑⠞⠊⠑⠹⠎" }, { "input": "ninety", "output": "â â ”â ‘â žâ ½" }, { "input": "ninja", "output": "â â ”â šâ " }, { "input": "ninjas", "output": "â â ”â šâ â Ž" }, { "input": "ninnies", "output": "â â ”â â Šâ ‘â Ž" }, { "input": "ninny", "output": "â â ”â â ½" }, { "input": "ninth", "output": "â â ”â ¹" }, { "input": "ninths", "output": "â â ”⠹⠎" }, { "input": "nip", "output": "â â Šâ " }, { "input": "nipped", "output": "â â Šâ â â «" }, { "input": "nipper", "output": "â â Šâ â â »" }, { "input": "nippers", "output": "â â Šâ â â »â Ž" }, { "input": "nippier", "output": "â â Šâ â â Šâ »" }, { "input": "nippiest", "output": "â â Šâ â â Šâ ‘â Œ" }, { "input": "nipping", "output": "â â Šâ â â ¬" }, { "input": "nipple", "output": "â â Šâ â â ‡â ‘" }, { "input": "nipples", "output": "â â Šâ â â ‡â ‘â Ž" }, { "input": "nippy", "output": "â â Šâ â â ½" }, { "input": "nips", "output": "â â Šâ â Ž" }, { "input": "nirvana", "output": "â â Šâ —â §â â â " }, { "input": "nit", "output": "â â Šâ ž" }, { "input": "nite", "output": "â â Šâ žâ ‘" }, { "input": "niter", "output": "â â Šâ žâ »" }, { "input": "nites", "output": "â â Šâ žâ ‘â Ž" }, { "input": "nitpick", "output": "â â Šâ žâ â Šâ ‰â …" }, { "input": "nitpicked", "output": "â â Šâ žâ â Šâ ‰â …â «" }, { "input": "nitpicker", "output": "â â Šâ žâ â Šâ ‰â …â »" }, { "input": "nitpickers", "output": "â â Šâ žâ â Šâ ‰â …⠻⠎" }, { "input": "nitpicking", "output": "â â Šâ žâ â Šâ ‰â …â ¬" }, { "input": "nitpicks", "output": "â â Šâ žâ â Šâ ‰â …â Ž" }, { "input": "nitrate", "output": "â â Šâ žâ —â â žâ ‘" }, { "input": "nitrated", "output": "â â Šâ žâ —â â žâ «" }, { "input": "nitrates", "output": "â â Šâ žâ —â â žâ ‘â Ž" }, { "input": "nitrating", "output": "â â Šâ žâ —â â žâ ¬" }, { "input": "nitrogen", "output": "â â Šâ žâ —⠕⠛⠢" }, { "input": "nitrogenous", "output": "â â Šâ žâ —⠕⠛⠢⠳⠎" }, { "input": "nitroglycerin", "output": "â â Šâ žâ —⠕⠛⠇⠽⠉⠻⠔" }, { "input": "nitroglycerine", "output": "â â Šâ žâ —⠕⠛⠇⠽⠉⠻⠔⠑" }, { "input": "nits", "output": "â â Šâ žâ Ž" }, { "input": "nitwit", "output": "â â Šâ žâ ºâ Šâ ž" }, { "input": "nitwits", "output": "â â Šâ žâ ºâ Šâ žâ Ž" }, { "input": "nix", "output": "â â Šâ ­" }, { "input": "nixed", "output": "â â Šâ ­â «" }, { "input": "nixes", "output": "â â Šâ ­â ‘â Ž" }, { "input": "nixing", "output": "â â Šâ ­â ¬" }, { "input": "no", "output": "â â •" }, { "input": "nobility", "output": "â â •⠃⠊⠇⠰⠽" }, { "input": "noble", "output": "â â •⠃⠇⠑" }, { "input": "nobleman", "output": "â â •⠃⠇⠑â â â " }, { "input": "noblemen", "output": "â â •⠃⠇⠑â â ¢" }, { "input": "nobleness", "output": "â â •⠃⠇⠑⠰⠎" }, { "input": "nobler", "output": "â â •⠃⠇⠻" }, { "input": "nobles", "output": "â â •⠃⠇⠑⠎" }, { "input": "noblest", "output": "â â •⠃⠇⠑⠌" }, { "input": "noblewoman", "output": "â â •⠃⠇⠑⠺⠕â â â " }, { "input": "noblewomen", "output": "â â •⠃⠇⠑⠺⠕â â ¢" }, { "input": "nobly", "output": "â â •⠃⠇⠽" }, { "input": "nobodies", "output": "â â •⠃⠕⠙⠊⠑⠎" }, { "input": "nobody", "output": "â â •⠃⠕⠙⠽" }, { "input": "nocturnal", "output": "â â •⠉⠞⠥⠗â â â ‡" }, { "input": "nocturnally", "output": "â â •⠉⠞⠥⠗â â â ‡â ‡â ½" }, { "input": "nocturne", "output": "â â •⠉⠞⠥⠗â â ‘" }, { "input": "nocturnes", "output": "â â •⠉⠞⠥⠗â â ‘â Ž" }, { "input": "nod", "output": "â â •â ™" }, { "input": "nodal", "output": "â â •â ™â â ‡" }, { "input": "nodded", "output": "â â •⠙⠙⠫" }, { "input": "nodding", "output": "â â •⠙⠙⠬" }, { "input": "noddy", "output": "â â •⠙⠙⠽" }, { "input": "node", "output": "â â •⠙⠑" }, { "input": "nodes", "output": "â â •⠙⠑⠎" }, { "input": "nods", "output": "â â •⠙⠎" }, { "input": "nodular", "output": "â â •⠙⠥⠇⠜" }, { "input": "nodule", "output": "â â •⠙⠥⠇⠑" }, { "input": "nodules", "output": "â â •⠙⠥⠇⠑⠎" }, { "input": "noel", "output": "â â •â ‘â ‡" }, { "input": "noels", "output": "â â •⠑⠇⠎" }, { "input": "noes", "output": "â â •â ‘â Ž" }, { "input": "noggin", "output": "â â •â ¶â ”" }, { "input": "noggins", "output": "â â •⠶⠔⠎" }, { "input": "noise", "output": "â â •â Šâ Žâ ‘" }, { "input": "noised", "output": "â â •â Šâ Žâ «" }, { "input": "noiseless", "output": "â â •⠊⠎⠑⠨⠎" }, { "input": "noiselessly", "output": "â â •⠊⠎⠑⠨⠎⠇⠽" }, { "input": "noiselessness", "output": "â â •⠊⠎⠑⠨⠎⠰⠎" }, { "input": "noisemaker", "output": "â â •â Šâ Žâ ‘â â â …â »" }, { "input": "noisemakers", "output": "â â •â Šâ Žâ ‘â â â …⠻⠎" }, { "input": "noises", "output": "â â •â Šâ Žâ ‘â Ž" }, { "input": "noisier", "output": "â â •â Šâ Žâ Šâ »" }, { "input": "noisiest", "output": "â â •â Šâ Žâ Šâ ‘â Œ" }, { "input": "noisily", "output": "â â •⠊⠎⠊⠇⠽" }, { "input": "noisiness", "output": "â â •â Šâ Žâ Šâ °â Ž" }, { "input": "noising", "output": "â â •â Šâ Žâ ¬" }, { "input": "noisome", "output": "â â •â Šâ â Ž" }, { "input": "noisy", "output": "â â •â Šâ Žâ ½" }, { "input": "nomad", "output": "â â •â â â ™" }, { "input": "nomadic", "output": "â â •â â â ™â Šâ ‰" }, { "input": "nomads", "output": "â â •â â â ™â Ž" }, { "input": "nomenclature", "output": "â â •â â ¢â ‰â ‡â â žâ ¥â —â ‘" }, { "input": "nomenclatures", "output": "â â •â â ¢â ‰â ‡â â žâ ¥â —â ‘â Ž" }, { "input": "nominal", "output": "â â •â â ”â â ‡" }, { "input": "nominally", "output": "â â •â â ”â â ‡â ‡â ½" }, { "input": "nominate", "output": "â â •â â ”â â žâ ‘" }, { "input": "nominated", "output": "â â •â â ”â â žâ «" }, { "input": "nominates", "output": "â â •â â ”â â žâ ‘â Ž" }, { "input": "nominating", "output": "â â •â â ”â â žâ ¬" }, { "input": "nomination", "output": "â â •â â ”â â °â " }, { "input": "nominations", "output": "â â •â â ”â â °â â Ž" }, { "input": "nominative", "output": "â â •â â ”â â žâ Šâ §â ‘" }, { "input": "nominatives", "output": "â â •â â ”â â žâ Šâ §â ‘â Ž" }, { "input": "nominee", "output": "â â •â â ”â ‘â ‘" }, { "input": "nominees", "output": "â â •â â ”â ‘â ‘â Ž" }, { "input": "non", "output": "â â •â " }, { "input": "nonabrasive", "output": "â â •â â â ƒâ —â â Žâ Šâ §â ‘" }, { "input": "nonabsorbent", "output": "â â •â â â ƒâ Žâ •⠗⠃⠢⠞" }, { "input": "nonabsorbents", "output": "â â •â â â ƒâ Žâ •⠗⠃⠢⠞⠎" }, { "input": "nonagenarian", "output": "â â •â â â ›â ¢â œâ Šâ â " }, { "input": "nonagenarians", "output": "â â •â â â ›â ¢â œâ Šâ â â Ž" }, { "input": "nonalcoholic", "output": "â â •â â â ‡â ‰â •⠓⠕⠇⠊⠉" }, { "input": "nonaligned", "output": "â â •â â â ‡â Šâ ›â â «" }, { "input": "nonbeliever", "output": "â â •â â ƒâ ‘⠇⠊⠑⠧⠻" }, { "input": "nonbelievers", "output": "â â •â â ƒâ ‘⠇⠊⠑⠧⠻⠎" }, { "input": "nonbreakable", "output": "â â •â â ƒâ —â ‚â …â â ƒâ ‡â ‘" }, { "input": "nonce", "output": "â â •â â ‰â ‘" }, { "input": "nonchalance", "output": "â â •â â ¡â â ‡â ¨â ‘" }, { "input": "nonchalant", "output": "â â •â â ¡â â ‡â â â ž" }, { "input": "nonchalantly", "output": "â â •â â ¡â â ‡â â â žâ ‡â ½" }, { "input": "noncom", "output": "â â •â â ‰â •â " }, { "input": "noncombatant", "output": "â â •â â ‰â •â â ƒâ â žâ â â ž" }, { "input": "noncombatants", "output": "â â •â â ‰â •â â ƒâ â žâ â â žâ Ž" }, { "input": "noncommercial", "output": "â â •â â ‰â •â â â »â ‰â Šâ â ‡" }, { "input": "noncommercials", "output": "â â •â â ‰â •â â â »â ‰â Šâ â ‡â Ž" }, { "input": "noncommittal", "output": "â â •â â ‰â •â â â Šâ žâ žâ â ‡" }, { "input": "noncommittally", "output": "â â •â â ‰â •â â â Šâ žâ žâ â ‡â ‡â ½" }, { "input": "noncompetitive", "output": "â â •â â ‰â •â â â ‘â žâ Šâ žâ Šâ §â ‘" }, { "input": "noncompliance", "output": "â â •â â ‰â •â â â ‡â Šâ ¨â ‘" }, { "input": "noncoms", "output": "â â •â â ‰â •â â Ž" }, { "input": "nonconductor", "output": "â â •â â ‰â •â â ™â ¥â ‰â žâ •â —" }, { "input": "nonconductors", "output": "â â •â â ‰â •â â ™â ¥â ‰â žâ •â —â Ž" }, { "input": "nonconformist", "output": "â â •â â ‰â •â â ¿â â Šâ Œ" }, { "input": "nonconformists", "output": "â â •â â ‰â •â â ¿â â Šâ Œâ Ž" }, { "input": "nonconformity", "output": "â â •â â ‰â •â â ¿â â °â ½" }, { "input": "noncontagious", "output": "â â •â â ‰â •â â žâ â ›â Šâ ³â Ž" }, { "input": "noncooperation", "output": "â â •â â ‰â •â •â â »â â °â " }, { "input": "nondairy", "output": "â â •â â ™â â Šâ —â ½" }, { "input": "nondeductible", "output": "â â •â â ™â «â ¥â ‰â žâ Šâ ƒâ ‡â ‘" }, { "input": "nondenominational", "output": "â â •â â ™â ¢â •â â ”â â °â â â ‡" }, { "input": "nondescript", "output": "â â •â â ™â ‘⠎⠉⠗⠊â â ž" }, { "input": "nondrinker", "output": "â â •â â ™â —⠔⠅⠻" }, { "input": "nondrinkers", "output": "â â •â â ™â —⠔⠅⠻⠎" }, { "input": "none", "output": "â â â •" }, { "input": "nonempty", "output": "â â •â â ‘â â â žâ ½" }, { "input": "nonentities", "output": "â â •â â ¢â žâ Šâ žâ Šâ ‘â Ž" }, { "input": "nonentity", "output": "â â •â â ¢â žâ °â ½" }, { "input": "nonessential", "output": "â â •â â ‘⠎⠎⠢⠞⠊â â ‡" }, { "input": "nonesuch", "output": "â â â •â Žâ ¡" }, { "input": "nonesuches", "output": "â â â •⠎⠥⠡⠑⠎" }, { "input": "nonetheless", "output": "â â â •⠮⠨⠎" }, { "input": "nonevent", "output": "â â •â â ‘⠧⠢⠞" }, { "input": "nonevents", "output": "â â •â â ‘⠧⠢⠞⠎" }, { "input": "nonexempt", "output": "â â •â â ‘â ­â ‘â â â ž" }, { "input": "nonexistence", "output": "â â •â â ‘⠭⠊⠌⠰⠑" }, { "input": "nonexistent", "output": "â â •â â ‘⠭⠊⠌⠢⠞" }, { "input": "nonfat", "output": "â â •â â ‹â â ž" }, { "input": "nonfatal", "output": "â â •â â ‹â â žâ â ‡" }, { "input": "nonfiction", "output": "â â •â â ‹â Šâ ‰â °â " }, { "input": "nonflammable", "output": "â â •â â ‹â ‡â â â â â ƒâ ‡â ‘" }, { "input": "nongovernmental", "output": "â â •â â ›â •â §â »â â °â žâ â ‡" }, { "input": "nonhazardous", "output": "â â •â â “â â µâ œâ ™â ³â Ž" }, { "input": "nonhuman", "output": "â â •â â “â ¥â â â " }, { "input": "nonindustrial", "output": "â â •â â ”⠙⠥⠌⠗⠊â â ‡" }, { "input": "noninterference", "output": "â â •â â ”⠞⠻⠋⠻⠰⠑" }, { "input": "nonintervention", "output": "â â •â â ”⠞⠻⠧⠢⠰â " }, { "input": "nonjudgmental", "output": "â â •â â šâ ¥â ™â ›â °â žâ â ‡" }, { "input": "nonliving", "output": "â â •â â ‡â Šâ §â ¬" }, { "input": "nonmalignant", "output": "â â •â â â â ‡â Šâ ›â â â â ž" }, { "input": "nonmember", "output": "â â •â â â ‘â â ƒâ »" }, { "input": "nonmembers", "output": "â â •â â â ‘â â ƒâ »â Ž" }, { "input": "nonnegotiable", "output": "â â •â â â ‘⠛⠕⠞⠊â â ƒâ ‡â ‘" }, { "input": "nonobjective", "output": "â â •â â •⠃⠚⠑⠉⠞⠊⠧⠑" }, { "input": "nonpareil", "output": "â â •â â â œâ ‘â Šâ ‡" }, { "input": "nonpareils", "output": "â â •â â â œâ ‘⠊⠇⠎" }, { "input": "nonpartisan", "output": "â â •â â â â Šâ Žâ â " }, { "input": "nonpartisans", "output": "â â •â â â â Šâ Žâ â â Ž" }, { "input": "nonpayment", "output": "â â •â â â â ½â °â ž" }, { "input": "nonpayments", "output": "â â •â â â â ½â °â žâ Ž" }, { "input": "nonphysical", "output": "â â •â â â “⠽⠎⠊⠉â â ‡" }, { "input": "nonplus", "output": "â â •â â â ‡â ¥â Ž" }, { "input": "nonplused", "output": "â â •â â â ‡â ¥â Žâ «" }, { "input": "nonpluses", "output": "â â •â â â ‡â ¥â Žâ ‘â Ž" }, { "input": "nonplusing", "output": "â â •â â â ‡â ¥â Žâ ¬" }, { "input": "nonplussed", "output": "â â •â â â ‡â ¥â Žâ Žâ «" }, { "input": "nonplusses", "output": "â â •â â â ‡â ¥â Žâ Žâ ‘â Ž" }, { "input": "nonplussing", "output": "â â •â â â ‡â ¥â Žâ Žâ ¬" }, { "input": "nonpoisonous", "output": "â â •â â â •â Šâ Žâ •â â ³â Ž" }, { "input": "nonpolitical", "output": "â â •â â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "nonpolluting", "output": "â â •â â â •⠇⠇⠥⠞⠬" }, { "input": "nonprescription", "output": "â â •â â â —⠑⠎⠉⠗⠊â â °â " }, { "input": "nonproductive", "output": "â â •â â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "nonprofessional", "output": "â â •â â â —â ·â ‘â Žâ ¨â â â ‡" }, { "input": "nonprofessionals", "output": "â â •â â â —â ·â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "nonprofit", "output": "â â •â â â —â ·â Šâ ž" }, { "input": "nonprofits", "output": "â â •â â â —â ·â Šâ žâ Ž" }, { "input": "nonproliferation", "output": "â â •â â â —⠕⠇⠊⠋⠻â â °â " }, { "input": "nonrefillable", "output": "â â •â â —⠑⠋⠊⠇⠇â â ƒâ ‡â ‘" }, { "input": "nonrefundable", "output": "â â •â â —â ‘â ‹â ¥â â ™â â ƒâ ‡â ‘" }, { "input": "nonrenewable", "output": "â â •â â —⠢⠑⠺â â ƒâ ‡â ‘" }, { "input": "nonrepresentational", "output": "â â •â â —â ‘â â —⠑⠎⠢⠞â â °â â â ‡" }, { "input": "nonresident", "output": "â â •â â —⠑⠎⠊⠙⠢⠞" }, { "input": "nonresidents", "output": "â â •â â —⠑⠎⠊⠙⠢⠞⠎" }, { "input": "nonrestrictive", "output": "â â •â â —⠑⠌⠗⠊⠉⠞⠊⠧⠑" }, { "input": "nonreturnable", "output": "â â •â â —⠑⠞⠥⠗â â â ƒâ ‡â ‘" }, { "input": "nonreturnables", "output": "â â •â â —⠑⠞⠥⠗â â â ƒâ ‡â ‘â Ž" }, { "input": "nonrigid", "output": "â â •â â —⠊⠛⠊⠙" }, { "input": "nonscheduled", "output": "â â •â â Žâ ¡â «â ¥â ‡â «" }, { "input": "nonseasonal", "output": "â â •â â Žâ ‚â Žâ •â â â ‡" }, { "input": "nonsectarian", "output": "â â •â â Žâ ‘⠉⠞⠜⠊â â " }, { "input": "nonsense", "output": "â â •â â Žâ ¢â Žâ ‘" }, { "input": "nonsensical", "output": "â â •â â Žâ ¢â Žâ Šâ ‰â â ‡" }, { "input": "nonsensically", "output": "â â •â â Žâ ¢â Žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "nonsexist", "output": "â â •â â Žâ ‘â ­â Šâ Œ" }, { "input": "nonskid", "output": "â â •â â Žâ …â Šâ ™" }, { "input": "nonsmoker", "output": "â â •â â Žâ â •â …â »" }, { "input": "nonsmokers", "output": "â â •â â Žâ â •⠅⠻⠎" }, { "input": "nonsmoking", "output": "â â •â â Žâ â •â …â ¬" }, { "input": "nonstandard", "output": "â â •â â Œâ ¯â œâ ™" }, { "input": "nonstick", "output": "â â •â â Œâ Šâ ‰â …" }, { "input": "nonstop", "output": "â â •â â Œâ •â " }, { "input": "nonsupport", "output": "â â •â â Žâ ¥â â â •â —â ž" }, { "input": "nontaxable", "output": "â â •â â žâ â ­â â ƒâ ‡â ‘" }, { "input": "nontechnical", "output": "â â •â â žâ ‘â ¡â â Šâ ‰â â ‡" }, { "input": "nontoxic", "output": "â â •â â žâ •â ­â Šâ ‰" }, { "input": "nontransferable", "output": "â â •â â žâ —â â â Žâ ‹â »â â ƒâ ‡â ‘" }, { "input": "nontrivial", "output": "â â •â â žâ —â Šâ §â Šâ â ‡" }, { "input": "nonunion", "output": "â â •â â ¥â â Šâ •â " }, { "input": "nonuser", "output": "â â •â â ¥â Žâ »" }, { "input": "nonusers", "output": "â â •â â ¥â Žâ »â Ž" }, { "input": "nonverbal", "output": "â â •â â §â »â ƒâ â ‡" }, { "input": "nonviolence", "output": "â â •â â §â Šâ •⠇⠰⠑" }, { "input": "nonviolent", "output": "â â •â â §â Šâ •⠇⠢⠞" }, { "input": "nonvoting", "output": "â â •â â §â •â žâ ¬" }, { "input": "nonwhite", "output": "â â •â â ±â Šâ žâ ‘" }, { "input": "nonwhites", "output": "â â •â â ±â Šâ žâ ‘â Ž" }, { "input": "nonzero", "output": "â â •â â µâ »â •" }, { "input": "noodle", "output": "â â •⠕⠙⠇⠑" }, { "input": "noodled", "output": "â â •⠕⠙⠇⠫" }, { "input": "noodles", "output": "â â •⠕⠙⠇⠑⠎" }, { "input": "noodling", "output": "â â •⠕⠙⠇⠬" }, { "input": "nook", "output": "â â •â •â …" }, { "input": "nooks", "output": "â â •â •â …â Ž" }, { "input": "noon", "output": "â â •â •â " }, { "input": "noonday", "output": "â â •â •â â â ™" }, { "input": "noontime", "output": "â â •â •â â â ž" }, { "input": "noose", "output": "â â •â •â Žâ ‘" }, { "input": "nooses", "output": "â â •â •â Žâ ‘â Ž" }, { "input": "nope", "output": "â â •â â ‘" }, { "input": "nor", "output": "â â •â —" }, { "input": "norm", "output": "â â •â —â " }, { "input": "normal", "output": "â â •â —â â â ‡" }, { "input": "normalcy", "output": "â â •â —â â â ‡â ‰â ½" }, { "input": "normality", "output": "â â •â —â â â ‡â °â ½" }, { "input": "normalization", "output": "â â •â —â â â ‡â Šâ µâ â °â " }, { "input": "normalize", "output": "â â •â —â â â ‡â Šâ µâ ‘" }, { "input": "normalized", "output": "â â •â —â â â ‡â Šâ µâ «" }, { "input": "normalizes", "output": "â â •â —â â â ‡â Šâ µâ ‘â Ž" }, { "input": "normalizing", "output": "â â •â —â â â ‡â Šâ µâ ¬" }, { "input": "normally", "output": "â â •â —â â â ‡â ‡â ½" }, { "input": "normative", "output": "â â •â —â â â žâ Šâ §â ‘" }, { "input": "norms", "output": "â â •â —â â Ž" }, { "input": "north", "output": "â â •â —â ¹" }, { "input": "northbound", "output": "â â •⠗⠹⠃⠨⠙" }, { "input": "northeast", "output": "â â •⠗⠹⠂⠌" }, { "input": "northeaster", "output": "â â •⠗⠹⠂⠌⠻" }, { "input": "northeasterly", "output": "â â •⠗⠹⠂⠌⠻⠇⠽" }, { "input": "northeastern", "output": "â â •⠗⠹⠂⠌⠻â " }, { "input": "northeasters", "output": "â â •⠗⠹⠂⠌⠻⠎" }, { "input": "northeastward", "output": "â â •⠗⠹⠂⠌⠺⠜⠙" }, { "input": "northerlies", "output": "â â •⠗⠮⠗⠇⠊⠑⠎" }, { "input": "northerly", "output": "â â •⠗⠮⠗⠇⠽" }, { "input": "northern", "output": "â â •⠗⠮⠗â " }, { "input": "northerner", "output": "â â •⠗⠮⠗â â »" }, { "input": "northerners", "output": "â â •⠗⠮⠗â â »â Ž" }, { "input": "northernmost", "output": "â â •⠗⠮⠗â â â •â Œ" }, { "input": "northward", "output": "â â •⠗⠹⠺⠜⠙" }, { "input": "northwards", "output": "â â •⠗⠹⠺⠜⠙⠎" }, { "input": "northwest", "output": "â â •⠗⠹⠺⠑⠌" }, { "input": "northwesterly", "output": "â â •⠗⠹⠺⠑⠌⠻⠇⠽" }, { "input": "northwestern", "output": "â â •⠗⠹⠺⠑⠌⠻â " }, { "input": "northwestward", "output": "â â •⠗⠹⠺⠑⠌⠺⠜⠙" }, { "input": "nose", "output": "â â •â Žâ ‘" }, { "input": "nosebleed", "output": "â â •⠎⠑⠃⠇⠑⠫" }, { "input": "nosebleeds", "output": "â â •⠎⠑⠃⠇⠑⠫⠎" }, { "input": "nosed", "output": "â â •â Žâ «" }, { "input": "nosedive", "output": "â â •⠎⠑⠙⠊⠧⠑" }, { "input": "nosedived", "output": "â â •⠎⠑⠙⠊⠧⠫" }, { "input": "nosedives", "output": "â â •⠎⠑⠙⠊⠧⠑⠎" }, { "input": "nosediving", "output": "â â •⠎⠑⠙⠊⠧⠬" }, { "input": "nosedove", "output": "â â •â Žâ «â •â §â ‘" }, { "input": "nosegay", "output": "â â •â Žâ ‘â ›â â ½" }, { "input": "nosegays", "output": "â â •â Žâ ‘â ›â â ½â Ž" }, { "input": "noses", "output": "â â •â Žâ ‘â Ž" }, { "input": "nosey", "output": "â â •â Žâ ‘â ½" }, { "input": "nosh", "output": "â â •â ©" }, { "input": "noshed", "output": "â â •â ©â «" }, { "input": "noshes", "output": "â â •â ©â ‘â Ž" }, { "input": "noshing", "output": "â â •â ©â ¬" }, { "input": "nosier", "output": "â â •â Žâ Šâ »" }, { "input": "nosiest", "output": "â â •â Žâ Šâ ‘â Œ" }, { "input": "nosiness", "output": "â â •â Žâ Šâ °â Ž" }, { "input": "nosing", "output": "â â •â Žâ ¬" }, { "input": "nostalgia", "output": "â â •â Œâ â ‡â ›â Šâ " }, { "input": "nostalgic", "output": "â â •â Œâ â ‡â ›â Šâ ‰" }, { "input": "nostalgically", "output": "â â •â Œâ â ‡â ›â Šâ ‰â â ‡â ‡â ½" }, { "input": "nostril", "output": "â â •⠌⠗⠊⠇" }, { "input": "nostrils", "output": "â â •⠌⠗⠊⠇⠎" }, { "input": "nostrum", "output": "â â •⠌⠗⠥â " }, { "input": "nostrums", "output": "â â •⠌⠗⠥â â Ž" }, { "input": "nosy", "output": "â â •â Žâ ½" }, { "input": "not", "output": "â " }, { "input": "notable", "output": "â â •â žâ â ƒâ ‡â ‘" }, { "input": "notables", "output": "â â •â žâ â ƒâ ‡â ‘â Ž" }, { "input": "notably", "output": "â â •â žâ â ƒâ ‡â ½" }, { "input": "notaries", "output": "â â •⠞⠜⠊⠑⠎" }, { "input": "notarize", "output": "â â •⠞⠜⠊⠵⠑" }, { "input": "notarized", "output": "â â •⠞⠜⠊⠵⠫" }, { "input": "notarizes", "output": "â â •⠞⠜⠊⠵⠑⠎" }, { "input": "notarizing", "output": "â â •⠞⠜⠊⠵⠬" }, { "input": "notary", "output": "â â •⠞⠜⠽" }, { "input": "notation", "output": "â â •â žâ â °â " }, { "input": "notations", "output": "â â •â žâ â °â â Ž" }, { "input": "notch", "output": "â â •â žâ ¡" }, { "input": "notched", "output": "â â •â žâ ¡â «" }, { "input": "notches", "output": "â â •â žâ ¡â ‘â Ž" }, { "input": "notching", "output": "â â •â žâ ¡â ¬" }, { "input": "note", "output": "â â •â žâ ‘" }, { "input": "notebook", "output": "â â •⠞⠑⠃⠕⠕⠅" }, { "input": "notebooks", "output": "â â •⠞⠑⠃⠕⠕⠅⠎" }, { "input": "noted", "output": "â â •â žâ «" }, { "input": "notepad", "output": "â â •â žâ ‘â â â ™" }, { "input": "notepaper", "output": "â â •â žâ ‘â â â â »" }, { "input": "notes", "output": "â â •â žâ ‘â Ž" }, { "input": "noteworthy", "output": "â â •⠞⠑⠺⠕⠗⠹⠽" }, { "input": "nothing", "output": "â â •⠹⠬" }, { "input": "nothingness", "output": "â â •⠹⠬⠰⠎" }, { "input": "nothings", "output": "â â •⠹⠬⠎" }, { "input": "notice", "output": "â â •⠞⠊⠉⠑" }, { "input": "noticeable", "output": "â â •⠞⠊⠉⠂⠃⠇⠑" }, { "input": "noticeably", "output": "â â •⠞⠊⠉⠂⠃⠇⠽" }, { "input": "noticeboard", "output": "â â •⠞⠊⠉⠑⠃⠕⠜⠙" }, { "input": "noticeboards", "output": "â â •⠞⠊⠉⠑⠃⠕⠜⠙⠎" }, { "input": "noticed", "output": "â â •⠞⠊⠉⠫" }, { "input": "notices", "output": "â â •⠞⠊⠉⠑⠎" }, { "input": "noticing", "output": "â â •⠞⠊⠉⠬" }, { "input": "notification", "output": "â â •â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "notifications", "output": "â â •â žâ Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "notified", "output": "â â •â žâ Šâ ‹â Šâ «" }, { "input": "notifies", "output": "â â •â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "notify", "output": "â â •â žâ Šâ ‹â ½" }, { "input": "notifying", "output": "â â •⠞⠊⠋⠽⠬" }, { "input": "noting", "output": "â â •â žâ ¬" }, { "input": "notion", "output": "â â •â °â " }, { "input": "notional", "output": "â â •â °â â â ‡" }, { "input": "notionally", "output": "â â •â °â â â ‡â ‡â ½" }, { "input": "notions", "output": "â â •â °â â Ž" }, { "input": "notoriety", "output": "â â •â žâ •â —â Šâ ‘â žâ ½" }, { "input": "notorious", "output": "â â •⠞⠕⠗⠊⠳⠎" }, { "input": "notoriously", "output": "â â •⠞⠕⠗⠊⠳⠎⠇⠽" }, { "input": "notwithstanding", "output": "â â •⠞⠾⠌⠯⠬" }, { "input": "nougat", "output": "â â ³â ›â â ž" }, { "input": "nougats", "output": "â â ³â ›â â žâ Ž" }, { "input": "nought", "output": "â â â ³" }, { "input": "noughts", "output": "â â â ³â Ž" }, { "input": "noun", "output": "â â ³â " }, { "input": "nouns", "output": "â â ³â â Ž" }, { "input": "nourish", "output": "â â ³â —â Šâ ©" }, { "input": "nourished", "output": "â â ³â —â Šâ ©â «" }, { "input": "nourishes", "output": "â â ³â —â Šâ ©â ‘â Ž" }, { "input": "nourishing", "output": "â â ³â —â Šâ ©â ¬" }, { "input": "nourishment", "output": "â â ³â —â Šâ ©â °â ž" }, { "input": "nous", "output": "â â ³â Ž" }, { "input": "nova", "output": "â â •â §â " }, { "input": "novae", "output": "â â •â §â â ‘" }, { "input": "novas", "output": "â â •â §â â Ž" }, { "input": "novel", "output": "â â •â §â ‘â ‡" }, { "input": "novelette", "output": "â â •⠧⠑⠇⠑⠞⠞⠑" }, { "input": "novelettes", "output": "â â •⠧⠑⠇⠑⠞⠞⠑⠎" }, { "input": "novelist", "output": "â â •⠧⠑⠇⠊⠌" }, { "input": "novelists", "output": "â â •⠧⠑⠇⠊⠌⠎" }, { "input": "novella", "output": "â â •⠧⠑⠇⠇â " }, { "input": "novellas", "output": "â â •⠧⠑⠇⠇â â Ž" }, { "input": "novelle", "output": "â â •⠧⠑⠇⠇⠑" }, { "input": "novels", "output": "â â •⠧⠑⠇⠎" }, { "input": "novelties", "output": "â â •⠧⠑⠇⠞⠊⠑⠎" }, { "input": "novelty", "output": "â â •⠧⠑⠇⠞⠽" }, { "input": "novice", "output": "â â •⠧⠊⠉⠑" }, { "input": "novices", "output": "â â •⠧⠊⠉⠑⠎" }, { "input": "novitiate", "output": "â â •â §â Šâ žâ Šâ â žâ ‘" }, { "input": "novitiates", "output": "â â •â §â Šâ žâ Šâ â žâ ‘â Ž" }, { "input": "now", "output": "â â ª" }, { "input": "nowadays", "output": "â â ªâ â â ™â Ž" }, { "input": "noway", "output": "â â •â ºâ â ½" }, { "input": "nowhere", "output": "â â •â â ±" }, { "input": "nowise", "output": "â â •⠺⠊⠎⠑" }, { "input": "noxious", "output": "â â •⠭⠊⠳⠎" }, { "input": "nozzle", "output": "â â •⠵⠵⠇⠑" }, { "input": "nozzles", "output": "â â •⠵⠵⠇⠑⠎" }, { "input": "nth", "output": "â â ¹" }, { "input": "nu", "output": "â â ¥" }, { "input": "nuance", "output": "â â ¥â ¨â ‘" }, { "input": "nuanced", "output": "â â ¥â ¨â ‘â ™" }, { "input": "nuances", "output": "â â ¥â ¨â ‘â Ž" }, { "input": "nub", "output": "â â ¥â ƒ" }, { "input": "nubile", "output": "â â ¥â ƒâ Šâ ‡â ‘" }, { "input": "nubs", "output": "â â ¥â ƒâ Ž" }, { "input": "nuclear", "output": "â â ¥â ‰â ‡â ‘â œ" }, { "input": "nuclei", "output": "â â ¥â ‰â ‡â ‘â Š" }, { "input": "nucleic", "output": "â â ¥â ‰â ‡â ‘â Šâ ‰" }, { "input": "nucleus", "output": "â â ¥â ‰â ‡â ‘⠥⠎" }, { "input": "nucleuses", "output": "â â ¥â ‰â ‡â ‘⠥⠎⠑⠎" }, { "input": "nude", "output": "â â ¥â ™â ‘" }, { "input": "nuder", "output": "â â ¥â ™â »" }, { "input": "nudes", "output": "â â ¥â ™â ‘â Ž" }, { "input": "nudest", "output": "â â ¥â ™â ‘â Œ" }, { "input": "nudge", "output": "â â ¥â ™â ›â ‘" }, { "input": "nudged", "output": "â â ¥â ™â ›â «" }, { "input": "nudges", "output": "â â ¥â ™â ›â ‘â Ž" }, { "input": "nudging", "output": "â â ¥â ™â ›â ¬" }, { "input": "nudism", "output": "â â ¥â ™â Šâ Žâ " }, { "input": "nudist", "output": "â â ¥â ™â Šâ Œ" }, { "input": "nudists", "output": "â â ¥â ™â Šâ Œâ Ž" }, { "input": "nudity", "output": "â â ¥â ™â °â ½" }, { "input": "nugget", "output": "â â ¥â ¶â ‘â ž" }, { "input": "nuggets", "output": "â â ¥â ¶â ‘â žâ Ž" }, { "input": "nuisance", "output": "â â ¥â Šâ Žâ ¨â ‘" }, { "input": "nuisances", "output": "â â ¥â Šâ Žâ ¨â ‘â Ž" }, { "input": "nuke", "output": "â â ¥â …â ‘" }, { "input": "nuked", "output": "â â ¥â …â «" }, { "input": "nukes", "output": "â â ¥â …â ‘â Ž" }, { "input": "nuking", "output": "â â ¥â …â ¬" }, { "input": "null", "output": "â â ¥â ‡â ‡" }, { "input": "nullification", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "nullified", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ «" }, { "input": "nullifies", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "nullify", "output": "â â ¥â ‡â ‡â Šâ ‹â ½" }, { "input": "nullifying", "output": "â â ¥â ‡â ‡â Šâ ‹â ½â ¬" }, { "input": "nullity", "output": "â â ¥â ‡â ‡â °â ½" }, { "input": "nulls", "output": "â â ¥â ‡â ‡â Ž" }, { "input": "numb", "output": "â â ¥â â ƒ" }, { "input": "numbed", "output": "â â ¥â â ƒâ «" }, { "input": "number", "output": "â â ¥â â ƒâ »" }, { "input": "numbered", "output": "â â ¥â â ƒâ »â «" }, { "input": "numbering", "output": "â â ¥â â ƒâ »â ¬" }, { "input": "numberless", "output": "â â ¥â â ƒâ »â ¨â Ž" }, { "input": "numbers", "output": "â â ¥â â ƒâ »â Ž" }, { "input": "numbest", "output": "â â ¥â â ƒâ ‘â Œ" }, { "input": "numbing", "output": "â â ¥â â ƒâ ¬" }, { "input": "numbly", "output": "â â ¥â â ƒâ ‡â ½" }, { "input": "numbness", "output": "â â ¥â â ƒâ °â Ž" }, { "input": "numbs", "output": "â â ¥â â ƒâ Ž" }, { "input": "numbskull", "output": "â â ¥â â ƒâ Žâ …⠥⠇⠇" }, { "input": "numbskulls", "output": "â â ¥â â ƒâ Žâ …⠥⠇⠇⠎" }, { "input": "numeracy", "output": "â â ¥â â »â â ‰â ½" }, { "input": "numeral", "output": "â â ¥â â »â â ‡" }, { "input": "numerals", "output": "â â ¥â â »â â ‡â Ž" }, { "input": "numerate", "output": "â â ¥â â »â â žâ ‘" }, { "input": "numerated", "output": "â â ¥â â »â â žâ «" }, { "input": "numerates", "output": "â â ¥â â »â â žâ ‘â Ž" }, { "input": "numerating", "output": "â â ¥â â »â â žâ ¬" }, { "input": "numeration", "output": "â â ¥â â »â â °â " }, { "input": "numerations", "output": "â â ¥â â »â â °â â Ž" }, { "input": "numerator", "output": "â â ¥â â »â â žâ •â —" }, { "input": "numerators", "output": "â â ¥â â »â â žâ •â —â Ž" }, { "input": "numeric", "output": "â â ¥â â »â Šâ ‰" }, { "input": "numerical", "output": "â â ¥â â »â Šâ ‰â â ‡" }, { "input": "numerically", "output": "â â ¥â â »â Šâ ‰â â ‡â ‡â ½" }, { "input": "numerology", "output": "â â ¥â â »â •⠇⠕⠛⠽" }, { "input": "numerous", "output": "â â ¥â â »â ³â Ž" }, { "input": "numismatic", "output": "â â ¥â â Šâ Žâ â â žâ Šâ ‰" }, { "input": "numismatics", "output": "â â ¥â â Šâ Žâ â â žâ Šâ ‰â Ž" }, { "input": "numismatist", "output": "â â ¥â â Šâ Žâ â â žâ Šâ Œ" }, { "input": "numismatists", "output": "â â ¥â â Šâ Žâ â â žâ Šâ Œâ Ž" }, { "input": "numskull", "output": "â â ¥â â Žâ …⠥⠇⠇" }, { "input": "numskulls", "output": "â â ¥â â Žâ …⠥⠇⠇⠎" }, { "input": "nun", "output": "â â ¥â " }, { "input": "nuncio", "output": "â â ¥â â ‰â Šâ •" }, { "input": "nuncios", "output": "â â ¥â â ‰â Šâ •â Ž" }, { "input": "nunneries", "output": "â â ¥â â â »â Šâ ‘â Ž" }, { "input": "nunnery", "output": "â â ¥â â â »â ½" }, { "input": "nuns", "output": "â â ¥â â Ž" }, { "input": "nuptial", "output": "â â ¥â â žâ Šâ â ‡" }, { "input": "nuptials", "output": "â â ¥â â žâ Šâ â ‡â Ž" }, { "input": "nurse", "output": "â â ¥â —â Žâ ‘" }, { "input": "nursed", "output": "â â ¥â —â Žâ «" }, { "input": "nursemaid", "output": "â â ¥â —â Žâ ‘â â â Šâ ™" }, { "input": "nursemaids", "output": "â â ¥â —â Žâ ‘â â â Šâ ™â Ž" }, { "input": "nurseries", "output": "â â ¥â —⠎⠻⠊⠑⠎" }, { "input": "nursery", "output": "â â ¥â —⠎⠻⠽" }, { "input": "nurseryman", "output": "â â ¥â —⠎⠻⠽â â â " }, { "input": "nurserymen", "output": "â â ¥â —⠎⠻⠽â â ¢" }, { "input": "nurses", "output": "â â ¥â —â Žâ ‘â Ž" }, { "input": "nursing", "output": "â â ¥â —â Žâ ¬" }, { "input": "nurture", "output": "â â ¥â —⠞⠥⠗⠑" }, { "input": "nurtured", "output": "â â ¥â —⠞⠥⠗⠫" }, { "input": "nurtures", "output": "â â ¥â —⠞⠥⠗⠑⠎" }, { "input": "nurturing", "output": "â â ¥â —⠞⠥⠗⠬" }, { "input": "nut", "output": "â â ¥â ž" }, { "input": "nutcracker", "output": "â â ¥â žâ ‰â —â â ‰â …â »" }, { "input": "nutcrackers", "output": "â â ¥â žâ ‰â —â â ‰â …⠻⠎" }, { "input": "nuthatch", "output": "â â ¥â žâ “â â žâ ¡" }, { "input": "nuthatches", "output": "â â ¥â žâ “â â žâ ¡â ‘â Ž" }, { "input": "nutmeat", "output": "â â ¥â žâ â ‚â ž" }, { "input": "nutmeats", "output": "â â ¥â žâ â ‚â žâ Ž" }, { "input": "nutmeg", "output": "â â ¥â žâ â ‘â ›" }, { "input": "nutmegs", "output": "â â ¥â žâ â ‘⠛⠎" }, { "input": "nutria", "output": "â â ¥â žâ —â Šâ " }, { "input": "nutrias", "output": "â â ¥â žâ —â Šâ â Ž" }, { "input": "nutrient", "output": "â â ¥â žâ —⠊⠢⠞" }, { "input": "nutrients", "output": "â â ¥â žâ —⠊⠢⠞⠎" }, { "input": "nutriment", "output": "â â ¥â žâ —â Šâ °â ž" }, { "input": "nutriments", "output": "â â ¥â žâ —â Šâ °â žâ Ž" }, { "input": "nutrition", "output": "â â ¥â žâ —â Šâ °â " }, { "input": "nutritional", "output": "â â ¥â žâ —â Šâ °â â â ‡" }, { "input": "nutritionally", "output": "â â ¥â žâ —â Šâ °â â â ‡â ‡â ½" }, { "input": "nutritionist", "output": "â â ¥â žâ —â Šâ °â â Šâ Œ" }, { "input": "nutritionists", "output": "â â ¥â žâ —â Šâ °â â Šâ Œâ Ž" }, { "input": "nutritious", "output": "â â ¥â žâ —⠊⠞⠊⠳⠎" }, { "input": "nutritive", "output": "â â ¥â žâ —â Šâ žâ Šâ §â ‘" }, { "input": "nuts", "output": "â â ¥â žâ Ž" }, { "input": "nutshell", "output": "â â ¥â žâ ©â ‘⠇⠇" }, { "input": "nutshells", "output": "â â ¥â žâ ©â ‘⠇⠇⠎" }, { "input": "nutted", "output": "â â ¥â žâ žâ «" }, { "input": "nuttier", "output": "â â ¥â žâ žâ Šâ »" }, { "input": "nuttiest", "output": "â â ¥â žâ žâ Šâ ‘â Œ" }, { "input": "nuttiness", "output": "â â ¥â žâ žâ Šâ °â Ž" }, { "input": "nutting", "output": "â â ¥â žâ žâ ¬" }, { "input": "nutty", "output": "â â ¥â žâ žâ ½" }, { "input": "nuzzle", "output": "â â ¥â µâ µâ ‡â ‘" }, { "input": "nuzzled", "output": "â â ¥â µâ µâ ‡â «" }, { "input": "nuzzles", "output": "â â ¥â µâ µâ ‡â ‘â Ž" }, { "input": "nuzzling", "output": "â â ¥â µâ µâ ‡â ¬" }, { "input": "nylon", "output": "â â ½â ‡â •â " }, { "input": "nylons", "output": "â â ½â ‡â •â â Ž" }, { "input": "nymph", "output": "â â ½â â â “" }, { "input": "nymphomania", "output": "â â ½â â â “â •â â â â Šâ " }, { "input": "nymphomaniac", "output": "â â ½â â â “â •â â â â Šâ â ‰" }, { "input": "nymphomaniacs", "output": "â â ½â â â “â •â â â â Šâ â ‰â Ž" }, { "input": "nymphs", "output": "â â ½â â â “â Ž" }, { "input": "née", "output": "â â  â ˜â »â â ˜â ‰â ‘" }, { "input": "o", "output": "â •" }, { "input": "oaf", "output": "â •â â ‹" }, { "input": "oafish", "output": "â •â â ‹â Šâ ©" }, { "input": "oafs", "output": "â •â â ‹â Ž" }, { "input": "oak", "output": "â •â â …" }, { "input": "oaken", "output": "â •â â …â ¢" }, { "input": "oaks", "output": "â •â â …â Ž" }, { "input": "oakum", "output": "â •â â …â ¥â " }, { "input": "oar", "output": "â •â œ" }, { "input": "oared", "output": "⠕⠜⠫" }, { "input": "oaring", "output": "⠕⠜⠬" }, { "input": "oarlock", "output": "⠕⠜⠇⠕⠉⠅" }, { "input": "oarlocks", "output": "⠕⠜⠇⠕⠉⠅⠎" }, { "input": "oars", "output": "⠕⠜⠎" }, { "input": "oarsman", "output": "⠕⠜⠎â â â " }, { "input": "oarsmen", "output": "⠕⠜⠎â â ¢" }, { "input": "oases", "output": "â •â â Žâ ‘â Ž" }, { "input": "oasis", "output": "â •â â Žâ Šâ Ž" }, { "input": "oat", "output": "â •â â ž" }, { "input": "oaten", "output": "â •â â žâ ¢" }, { "input": "oath", "output": "â •â â ¹" }, { "input": "oaths", "output": "â •â â ¹â Ž" }, { "input": "oatmeal", "output": "â •â â žâ â ‚â ‡" }, { "input": "oats", "output": "â •â â žâ Ž" }, { "input": "obduracy", "output": "⠕⠃⠙⠥⠗â â ‰â ½" }, { "input": "obdurate", "output": "⠕⠃⠙⠥⠗â â žâ ‘" }, { "input": "obdurately", "output": "⠕⠃⠙⠥⠗â â žâ ‘⠇⠽" }, { "input": "obedience", "output": "⠕⠃⠫⠊⠰⠑" }, { "input": "obedient", "output": "⠕⠃⠫⠊⠢⠞" }, { "input": "obediently", "output": "⠕⠃⠫⠊⠢⠞⠇⠽" }, { "input": "obeisance", "output": "⠕⠃⠑⠊⠎⠨⠑" }, { "input": "obeisances", "output": "⠕⠃⠑⠊⠎⠨⠑⠎" }, { "input": "obeisant", "output": "⠕⠃⠑⠊⠎â â â ž" }, { "input": "obelisk", "output": "⠕⠃⠑⠇⠊⠎⠅" }, { "input": "obelisks", "output": "⠕⠃⠑⠇⠊⠎⠅⠎" }, { "input": "obese", "output": "⠕⠃⠑⠎⠑" }, { "input": "obesity", "output": "⠕⠃⠑⠎⠰⠽" }, { "input": "obey", "output": "⠕⠃⠑⠽" }, { "input": "obeyed", "output": "⠕⠃⠑⠽⠫" }, { "input": "obeying", "output": "⠕⠃⠑⠽⠬" }, { "input": "obeys", "output": "⠕⠃⠑⠽⠎" }, { "input": "obfuscate", "output": "⠕⠃⠋⠥⠎⠉â â žâ ‘" }, { "input": "obfuscated", "output": "⠕⠃⠋⠥⠎⠉â â žâ «" }, { "input": "obfuscates", "output": "⠕⠃⠋⠥⠎⠉â â žâ ‘â Ž" }, { "input": "obfuscating", "output": "⠕⠃⠋⠥⠎⠉â â žâ ¬" }, { "input": "obfuscation", "output": "⠕⠃⠋⠥⠎⠉â â °â " }, { "input": "obit", "output": "⠕⠃⠊⠞" }, { "input": "obits", "output": "⠕⠃⠊⠞⠎" }, { "input": "obituaries", "output": "⠕⠃⠊⠞⠥⠜⠊⠑⠎" }, { "input": "obituary", "output": "⠕⠃⠊⠞⠥⠜⠽" }, { "input": "object", "output": "⠕⠃⠚⠑⠉⠞" }, { "input": "objected", "output": "⠕⠃⠚⠑⠉⠞⠫" }, { "input": "objecting", "output": "⠕⠃⠚⠑⠉⠞⠬" }, { "input": "objection", "output": "⠕⠃⠚⠑⠉⠰â " }, { "input": "objectionable", "output": "⠕⠃⠚⠑⠉⠰â â â ƒâ ‡â ‘" }, { "input": "objectionably", "output": "⠕⠃⠚⠑⠉⠰â â â ƒâ ‡â ½" }, { "input": "objections", "output": "⠕⠃⠚⠑⠉⠰â â Ž" }, { "input": "objective", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑" }, { "input": "objectively", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "objectiveness", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "objectives", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠎" }, { "input": "objectivity", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠰⠽" }, { "input": "objector", "output": "⠕⠃⠚⠑⠉⠞⠕⠗" }, { "input": "objectors", "output": "⠕⠃⠚⠑⠉⠞⠕⠗⠎" }, { "input": "objects", "output": "⠕⠃⠚⠑⠉⠞⠎" }, { "input": "oblate", "output": "⠕⠃⠇â â žâ ‘" }, { "input": "oblation", "output": "⠕⠃⠇â â °â " }, { "input": "oblations", "output": "⠕⠃⠇â â °â â Ž" }, { "input": "obligate", "output": "⠕⠃⠇⠊⠛â â žâ ‘" }, { "input": "obligated", "output": "⠕⠃⠇⠊⠛â â žâ «" }, { "input": "obligates", "output": "⠕⠃⠇⠊⠛â â žâ ‘â Ž" }, { "input": "obligating", "output": "⠕⠃⠇⠊⠛â â žâ ¬" }, { "input": "obligation", "output": "⠕⠃⠇⠊⠛â â °â " }, { "input": "obligations", "output": "⠕⠃⠇⠊⠛â â °â â Ž" }, { "input": "obligatory", "output": "⠕⠃⠇⠊⠛â â žâ •â —â ½" }, { "input": "oblige", "output": "⠕⠃⠇⠊⠛⠑" }, { "input": "obliged", "output": "⠕⠃⠇⠊⠛⠫" }, { "input": "obliges", "output": "⠕⠃⠇⠊⠛⠑⠎" }, { "input": "obliging", "output": "⠕⠃⠇⠊⠛⠬" }, { "input": "obligingly", "output": "⠕⠃⠇⠊⠛⠬⠇⠽" }, { "input": "oblique", "output": "⠕⠃⠇⠊⠟⠥⠑" }, { "input": "obliquely", "output": "⠕⠃⠇⠊⠟⠥⠑⠇⠽" }, { "input": "obliqueness", "output": "⠕⠃⠇⠊⠟⠥⠑⠰⠎" }, { "input": "obliques", "output": "⠕⠃⠇⠊⠟⠥⠑⠎" }, { "input": "obliterate", "output": "⠕⠃⠇⠊⠞⠻â â žâ ‘" }, { "input": "obliterated", "output": "⠕⠃⠇⠊⠞⠻â â žâ «" }, { "input": "obliterates", "output": "⠕⠃⠇⠊⠞⠻â â žâ ‘â Ž" }, { "input": "obliterating", "output": "⠕⠃⠇⠊⠞⠻â â žâ ¬" }, { "input": "obliteration", "output": "⠕⠃⠇⠊⠞⠻â â °â " }, { "input": "oblivion", "output": "⠕⠃⠇⠊⠧⠊⠕â " }, { "input": "oblivious", "output": "⠕⠃⠇⠊⠧⠊⠳⠎" }, { "input": "obliviously", "output": "⠕⠃⠇⠊⠧⠊⠳⠎⠇⠽" }, { "input": "obliviousness", "output": "⠕⠃⠇⠊⠧⠊⠳⠎⠰⠎" }, { "input": "oblong", "output": "⠕⠃⠇⠰⠛" }, { "input": "oblongs", "output": "⠕⠃⠇⠰⠛⠎" }, { "input": "obloquy", "output": "⠕⠃⠇⠕⠟⠥⠽" }, { "input": "obnoxious", "output": "â •â ƒâ â •⠭⠊⠳⠎" }, { "input": "obnoxiously", "output": "â •â ƒâ â •⠭⠊⠳⠎⠇⠽" }, { "input": "oboe", "output": "⠕⠃⠕⠑" }, { "input": "oboes", "output": "⠕⠃⠕⠑⠎" }, { "input": "oboist", "output": "⠕⠃⠕⠊⠌" }, { "input": "oboists", "output": "⠕⠃⠕⠊⠌⠎" }, { "input": "obscene", "output": "⠕⠃⠎⠉⠢⠑" }, { "input": "obscenely", "output": "⠕⠃⠎⠉⠢⠑⠇⠽" }, { "input": "obscener", "output": "⠕⠃⠎⠉⠢⠻" }, { "input": "obscenest", "output": "⠕⠃⠎⠉⠢⠑⠌" }, { "input": "obscenities", "output": "⠕⠃⠎⠉⠢⠊⠞⠊⠑⠎" }, { "input": "obscenity", "output": "⠕⠃⠎⠉⠢⠰⠽" }, { "input": "obscure", "output": "⠕⠃⠎⠉⠥⠗⠑" }, { "input": "obscured", "output": "⠕⠃⠎⠉⠥⠗⠫" }, { "input": "obscurely", "output": "⠕⠃⠎⠉⠥⠗⠑⠇⠽" }, { "input": "obscurer", "output": "⠕⠃⠎⠉⠥⠗⠻" }, { "input": "obscures", "output": "⠕⠃⠎⠉⠥⠗⠑⠎" }, { "input": "obscurest", "output": "⠕⠃⠎⠉⠥⠗⠑⠌" }, { "input": "obscuring", "output": "⠕⠃⠎⠉⠥⠗⠬" }, { "input": "obscurities", "output": "⠕⠃⠎⠉⠥⠗⠊⠞⠊⠑⠎" }, { "input": "obscurity", "output": "⠕⠃⠎⠉⠥⠗⠰⠽" }, { "input": "obsequies", "output": "⠕⠃⠎⠑⠟⠥⠊⠑⠎" }, { "input": "obsequious", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎" }, { "input": "obsequiously", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎⠇⠽" }, { "input": "obsequiousness", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎⠰⠎" }, { "input": "obsequy", "output": "⠕⠃⠎⠑⠟⠥⠽" }, { "input": "observable", "output": "⠕⠃⠎⠻⠧â â ƒâ ‡â ‘" }, { "input": "observably", "output": "⠕⠃⠎⠻⠧â â ƒâ ‡â ½" }, { "input": "observance", "output": "⠕⠃⠎⠻⠧⠨⠑" }, { "input": "observances", "output": "⠕⠃⠎⠻⠧⠨⠑⠎" }, { "input": "observant", "output": "⠕⠃⠎⠻⠧â â â ž" }, { "input": "observantly", "output": "⠕⠃⠎⠻⠧â â â žâ ‡â ½" }, { "input": "observation", "output": "⠕⠃⠎⠻⠧â â °â " }, { "input": "observational", "output": "⠕⠃⠎⠻⠧â â °â â â ‡" }, { "input": "observations", "output": "⠕⠃⠎⠻⠧â â °â â Ž" }, { "input": "observatories", "output": "⠕⠃⠎⠻⠧â â žâ •â —â Šâ ‘â Ž" }, { "input": "observatory", "output": "⠕⠃⠎⠻⠧â â žâ •â —â ½" }, { "input": "observe", "output": "⠕⠃⠎⠻⠧⠑" }, { "input": "observed", "output": "⠕⠃⠎⠻⠧⠫" }, { "input": "observer", "output": "⠕⠃⠎⠻⠧⠻" }, { "input": "observers", "output": "⠕⠃⠎⠻⠧⠻⠎" }, { "input": "observes", "output": "⠕⠃⠎⠻⠧⠑⠎" }, { "input": "observing", "output": "⠕⠃⠎⠻⠧⠬" }, { "input": "obsess", "output": "⠕⠃⠎⠑⠎⠎" }, { "input": "obsessed", "output": "⠕⠃⠎⠑⠎⠎⠫" }, { "input": "obsesses", "output": "⠕⠃⠎⠑⠎⠎⠑⠎" }, { "input": "obsessing", "output": "⠕⠃⠎⠑⠎⠎⠬" }, { "input": "obsession", "output": "⠕⠃⠎⠑⠎⠨â " }, { "input": "obsessions", "output": "⠕⠃⠎⠑⠎⠨â â Ž" }, { "input": "obsessive", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑" }, { "input": "obsessively", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "obsessives", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠎" }, { "input": "obsidian", "output": "⠕⠃⠎⠊⠙⠊â â " }, { "input": "obsolescence", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠰⠑" }, { "input": "obsolescent", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠢⠞" }, { "input": "obsolete", "output": "⠕⠃⠎⠕⠇⠑⠞⠑" }, { "input": "obsoleted", "output": "⠕⠃⠎⠕⠇⠑⠞⠫" }, { "input": "obsoletes", "output": "⠕⠃⠎⠕⠇⠑⠞⠑⠎" }, { "input": "obsoleting", "output": "⠕⠃⠎⠕⠇⠑⠞⠬" }, { "input": "obstacle", "output": "⠕⠃⠌â â ‰â ‡â ‘" }, { "input": "obstacles", "output": "⠕⠃⠌â â ‰â ‡â ‘â Ž" }, { "input": "obstetric", "output": "⠕⠃⠌⠑⠞⠗⠊⠉" }, { "input": "obstetrical", "output": "⠕⠃⠌⠑⠞⠗⠊⠉â â ‡" }, { "input": "obstetrician", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠊â â " }, { "input": "obstetricians", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠊â â â Ž" }, { "input": "obstetrics", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠎" }, { "input": "obstinacy", "output": "⠕⠃⠌⠔â â ‰â ½" }, { "input": "obstinate", "output": "⠕⠃⠌⠔â â žâ ‘" }, { "input": "obstinately", "output": "⠕⠃⠌⠔â â žâ ‘⠇⠽" }, { "input": "obstreperous", "output": "⠕⠃⠌⠗⠑â â »â ³â Ž" }, { "input": "obstruct", "output": "⠕⠃⠌⠗⠥⠉⠞" }, { "input": "obstructed", "output": "⠕⠃⠌⠗⠥⠉⠞⠫" }, { "input": "obstructing", "output": "⠕⠃⠌⠗⠥⠉⠞⠬" }, { "input": "obstruction", "output": "⠕⠃⠌⠗⠥⠉⠰â " }, { "input": "obstructionist", "output": "⠕⠃⠌⠗⠥⠉⠰â â Šâ Œ" }, { "input": "obstructionists", "output": "⠕⠃⠌⠗⠥⠉⠰â â Šâ Œâ Ž" }, { "input": "obstructions", "output": "⠕⠃⠌⠗⠥⠉⠰â â Ž" }, { "input": "obstructive", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "obstructively", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "obstructiveness", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "obstructs", "output": "⠕⠃⠌⠗⠥⠉⠞⠎" }, { "input": "obtain", "output": "⠕⠃⠞â â ”" }, { "input": "obtainable", "output": "⠕⠃⠞â â ”â â ƒâ ‡â ‘" }, { "input": "obtained", "output": "⠕⠃⠞â â ”â «" }, { "input": "obtaining", "output": "⠕⠃⠞â â ”â ¬" }, { "input": "obtains", "output": "⠕⠃⠞â â ”â Ž" }, { "input": "obtrude", "output": "⠕⠃⠞⠗⠥⠙⠑" }, { "input": "obtruded", "output": "⠕⠃⠞⠗⠥⠙⠫" }, { "input": "obtrudes", "output": "⠕⠃⠞⠗⠥⠙⠑⠎" }, { "input": "obtruding", "output": "⠕⠃⠞⠗⠥⠙⠬" }, { "input": "obtrusive", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑" }, { "input": "obtrusively", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑⠇⠽" }, { "input": "obtrusiveness", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑⠰⠎" }, { "input": "obtuse", "output": "⠕⠃⠞⠥⠎⠑" }, { "input": "obtusely", "output": "⠕⠃⠞⠥⠎⠑⠇⠽" }, { "input": "obtuseness", "output": "⠕⠃⠞⠥⠎⠑⠰⠎" }, { "input": "obtuser", "output": "⠕⠃⠞⠥⠎⠻" }, { "input": "obtusest", "output": "⠕⠃⠞⠥⠎⠑⠌" }, { "input": "obverse", "output": "⠕⠃⠧⠻⠎⠑" }, { "input": "obverses", "output": "⠕⠃⠧⠻⠎⠑⠎" }, { "input": "obviate", "output": "⠕⠃⠧⠊â â žâ ‘" }, { "input": "obviated", "output": "⠕⠃⠧⠊â â žâ «" }, { "input": "obviates", "output": "⠕⠃⠧⠊â â žâ ‘â Ž" }, { "input": "obviating", "output": "⠕⠃⠧⠊â â žâ ¬" }, { "input": "obvious", "output": "⠕⠃⠧⠊⠳⠎" }, { "input": "obviously", "output": "⠕⠃⠧⠊⠳⠎⠇⠽" }, { "input": "obviousness", "output": "⠕⠃⠧⠊⠳⠎⠰⠎" }, { "input": "ocarina", "output": "⠕⠉⠜⠔â " }, { "input": "ocarinas", "output": "⠕⠉⠜⠔â â Ž" }, { "input": "occasion", "output": "â •â ’â â ¨â " }, { "input": "occasional", "output": "â •â ’â â ¨â â â ‡" }, { "input": "occasionally", "output": "â •â ’â â ¨â â â ‡â ‡â ½" }, { "input": "occasioned", "output": "â •â ’â â ¨â â «" }, { "input": "occasioning", "output": "â •â ’â â ¨â â ¬" }, { "input": "occasions", "output": "â •â ’â â ¨â â Ž" }, { "input": "occidental", "output": "⠕⠒⠊⠙⠢⠞â â ‡" }, { "input": "occidentals", "output": "⠕⠒⠊⠙⠢⠞â â ‡â Ž" }, { "input": "occlude", "output": "⠕⠒⠇⠥⠙⠑" }, { "input": "occluded", "output": "⠕⠒⠇⠥⠙⠫" }, { "input": "occludes", "output": "⠕⠒⠇⠥⠙⠑⠎" }, { "input": "occluding", "output": "⠕⠒⠇⠥⠙⠬" }, { "input": "occlusion", "output": "⠕⠒⠇⠥⠨â " }, { "input": "occlusions", "output": "⠕⠒⠇⠥⠨â â Ž" }, { "input": "occult", "output": "⠕⠒⠥⠇⠞" }, { "input": "occupancy", "output": "â •â ’â ¥â â â â ‰â ½" }, { "input": "occupant", "output": "â •â ’â ¥â â â â ž" }, { "input": "occupants", "output": "â •â ’â ¥â â â â žâ Ž" }, { "input": "occupation", "output": "â •â ’â ¥â â â °â " }, { "input": "occupational", "output": "â •â ’â ¥â â â °â â â ‡" }, { "input": "occupations", "output": "â •â ’â ¥â â â °â â Ž" }, { "input": "occupied", "output": "â •â ’â ¥â â Šâ «" }, { "input": "occupies", "output": "â •â ’â ¥â â Šâ ‘â Ž" }, { "input": "occupy", "output": "â •â ’â ¥â â ½" }, { "input": "occupying", "output": "â •â ’â ¥â â ½â ¬" }, { "input": "occur", "output": "⠕⠒⠥⠗" }, { "input": "occurred", "output": "⠕⠒⠥⠗⠗⠫" }, { "input": "occurrence", "output": "⠕⠒⠥⠗⠗⠰⠑" }, { "input": "occurrences", "output": "⠕⠒⠥⠗⠗⠰⠑⠎" }, { "input": "occurring", "output": "⠕⠒⠥⠗⠗⠬" }, { "input": "occurs", "output": "⠕⠒⠥⠗⠎" }, { "input": "ocean", "output": "⠕⠉⠂â " }, { "input": "oceangoing", "output": "⠕⠉⠂â â ›â •â ¬" }, { "input": "oceanic", "output": "⠕⠉⠂â â Šâ ‰" }, { "input": "oceanographer", "output": "⠕⠉⠂â â •⠛⠗â â â “â »" }, { "input": "oceanographers", "output": "⠕⠉⠂â â •⠛⠗â â â “⠻⠎" }, { "input": "oceanographic", "output": "⠕⠉⠂â â •⠛⠗â â â “â Šâ ‰" }, { "input": "oceanography", "output": "⠕⠉⠂â â •⠛⠗â â â “â ½" }, { "input": "oceans", "output": "⠕⠉⠂â â Ž" }, { "input": "ocelot", "output": "⠕⠉⠑⠇⠕⠞" }, { "input": "ocelots", "output": "⠕⠉⠑⠇⠕⠞⠎" }, { "input": "ocher", "output": "â •â ¡â »" }, { "input": "ochre", "output": "â •â ¡â —â ‘" }, { "input": "octagon", "output": "⠕⠉⠞â â ›â •â " }, { "input": "octagonal", "output": "⠕⠉⠞â â ›â •â â â ‡" }, { "input": "octagons", "output": "⠕⠉⠞â â ›â •â â Ž" }, { "input": "octal", "output": "⠕⠉⠞â â ‡" }, { "input": "octane", "output": "⠕⠉⠞â â â ‘" }, { "input": "octave", "output": "⠕⠉⠞â â §â ‘" }, { "input": "octaves", "output": "⠕⠉⠞â â §â ‘â Ž" }, { "input": "octet", "output": "⠕⠉⠞⠑⠞" }, { "input": "octets", "output": "⠕⠉⠞⠑⠞⠎" }, { "input": "octette", "output": "⠕⠉⠞⠑⠞⠞⠑" }, { "input": "octettes", "output": "⠕⠉⠞⠑⠞⠞⠑⠎" }, { "input": "octogenarian", "output": "⠕⠉⠞⠕⠛⠢⠜⠊â â " }, { "input": "octogenarians", "output": "⠕⠉⠞⠕⠛⠢⠜⠊â â â Ž" }, { "input": "octopi", "output": "⠕⠉⠞⠕â â Š" }, { "input": "octopus", "output": "⠕⠉⠞⠕â â ¥â Ž" }, { "input": "octopuses", "output": "⠕⠉⠞⠕â â ¥â Žâ ‘â Ž" }, { "input": "ocular", "output": "⠕⠉⠥⠇⠜" }, { "input": "oculars", "output": "⠕⠉⠥⠇⠜⠎" }, { "input": "oculist", "output": "⠕⠉⠥⠇⠊⠌" }, { "input": "oculists", "output": "⠕⠉⠥⠇⠊⠌⠎" }, { "input": "odd", "output": "⠕⠙⠙" }, { "input": "oddball", "output": "⠕⠙⠙⠃â â ‡â ‡" }, { "input": "oddballs", "output": "⠕⠙⠙⠃â â ‡â ‡â Ž" }, { "input": "odder", "output": "⠕⠙⠙⠻" }, { "input": "oddest", "output": "⠕⠙⠙⠑⠌" }, { "input": "oddities", "output": "⠕⠙⠙⠊⠞⠊⠑⠎" }, { "input": "oddity", "output": "⠕⠙⠙⠰⠽" }, { "input": "oddly", "output": "⠕⠙⠙⠇⠽" }, { "input": "oddness", "output": "⠕⠙⠙⠰⠎" }, { "input": "odds", "output": "⠕⠙⠙⠎" }, { "input": "ode", "output": "⠕⠙⠑" }, { "input": "odes", "output": "⠕⠙⠑⠎" }, { "input": "odious", "output": "⠕⠙⠊⠳⠎" }, { "input": "odiously", "output": "⠕⠙⠊⠳⠎⠇⠽" }, { "input": "odium", "output": "⠕⠙⠊⠥â " }, { "input": "odometer", "output": "⠕⠙⠕â â ‘â žâ »" }, { "input": "odometers", "output": "⠕⠙⠕â â ‘⠞⠻⠎" }, { "input": "odor", "output": "⠕⠙⠕⠗" }, { "input": "odoriferous", "output": "⠕⠙⠕⠗⠊⠋⠻⠳⠎" }, { "input": "odorless", "output": "⠕⠙⠕⠗⠨⠎" }, { "input": "odorous", "output": "⠕⠙⠕⠗⠳⠎" }, { "input": "odors", "output": "⠕⠙⠕⠗⠎" }, { "input": "odyssey", "output": "⠕⠙⠽⠎⠎⠑⠽" }, { "input": "odysseys", "output": "⠕⠙⠽⠎⠎⠑⠽⠎" }, { "input": "of", "output": "â ·" }, { "input": "off", "output": "â ·â ‹" }, { "input": "offal", "output": "â ·â ‹â â ‡" }, { "input": "offbeat", "output": "⠷⠋⠃⠂⠞" }, { "input": "offbeats", "output": "⠷⠋⠃⠂⠞⠎" }, { "input": "offed", "output": "â ·â ‹â «" }, { "input": "offend", "output": "⠷⠋⠢⠙" }, { "input": "offended", "output": "⠷⠋⠢⠙⠫" }, { "input": "offender", "output": "⠷⠋⠢⠙⠻" }, { "input": "offenders", "output": "⠷⠋⠢⠙⠻⠎" }, { "input": "offending", "output": "⠷⠋⠢⠙⠬" }, { "input": "offends", "output": "⠷⠋⠢⠙⠎" }, { "input": "offense", "output": "⠷⠋⠢⠎⠑" }, { "input": "offenses", "output": "⠷⠋⠢⠎⠑⠎" }, { "input": "offensive", "output": "⠷⠋⠢⠎⠊⠧⠑" }, { "input": "offensively", "output": "⠷⠋⠢⠎⠊⠧⠑⠇⠽" }, { "input": "offensiveness", "output": "⠷⠋⠢⠎⠊⠧⠑⠰⠎" }, { "input": "offensives", "output": "⠷⠋⠢⠎⠊⠧⠑⠎" }, { "input": "offer", "output": "â ·â ‹â »" }, { "input": "offered", "output": "⠷⠋⠻⠫" }, { "input": "offering", "output": "⠷⠋⠻⠬" }, { "input": "offerings", "output": "⠷⠋⠻⠬⠎" }, { "input": "offers", "output": "⠷⠋⠻⠎" }, { "input": "offertories", "output": "⠷⠋⠻⠞⠕⠗⠊⠑⠎" }, { "input": "offertory", "output": "⠷⠋⠻⠞⠕⠗⠽" }, { "input": "offhand", "output": "â ·â ‹â “â ¯" }, { "input": "offhandedly", "output": "⠷⠋⠓⠯⠫⠇⠽" }, { "input": "office", "output": "⠷⠋⠊⠉⠑" }, { "input": "officeholder", "output": "⠷⠋⠊⠉⠑⠓⠕⠇⠙⠻" }, { "input": "officeholders", "output": "⠷⠋⠊⠉⠑⠓⠕⠇⠙⠻⠎" }, { "input": "officer", "output": "⠷⠋⠊⠉⠻" }, { "input": "officers", "output": "⠷⠋⠊⠉⠻⠎" }, { "input": "offices", "output": "⠷⠋⠊⠉⠑⠎" }, { "input": "official", "output": "⠷⠋⠊⠉⠊â â ‡" }, { "input": "officialdom", "output": "⠷⠋⠊⠉⠊â â ‡â ™â •â " }, { "input": "officially", "output": "⠷⠋⠊⠉⠊â â ‡â ‡â ½" }, { "input": "officials", "output": "⠷⠋⠊⠉⠊â â ‡â Ž" }, { "input": "officiate", "output": "⠷⠋⠊⠉⠊â â žâ ‘" }, { "input": "officiated", "output": "⠷⠋⠊⠉⠊â â žâ «" }, { "input": "officiates", "output": "⠷⠋⠊⠉⠊â â žâ ‘â Ž" }, { "input": "officiating", "output": "⠷⠋⠊⠉⠊â â žâ ¬" }, { "input": "officious", "output": "⠷⠋⠊⠉⠊⠳⠎" }, { "input": "officiously", "output": "⠷⠋⠊⠉⠊⠳⠎⠇⠽" }, { "input": "officiousness", "output": "⠷⠋⠊⠉⠊⠳⠎⠰⠎" }, { "input": "offing", "output": "â ·â ‹â ¬" }, { "input": "offings", "output": "⠷⠋⠬⠎" }, { "input": "offload", "output": "⠷⠋⠇⠕â â ™" }, { "input": "offs", "output": "â ·â ‹â Ž" }, { "input": "offset", "output": "â ·â ‹â Žâ ‘â ž" }, { "input": "offsets", "output": "â ·â ‹â Žâ ‘â žâ Ž" }, { "input": "offsetting", "output": "â ·â ‹â Žâ ‘â žâ žâ ¬" }, { "input": "offshoot", "output": "â ·â ‹â ©â •â •â ž" }, { "input": "offshoots", "output": "â ·â ‹â ©â •â •â žâ Ž" }, { "input": "offshore", "output": "â ·â ‹â ©â •â —â ‘" }, { "input": "offside", "output": "⠷⠋⠎⠊⠙⠑" }, { "input": "offspring", "output": "â ·â ‹â Žâ â —â ¬" }, { "input": "offsprings", "output": "â ·â ‹â Žâ â —⠬⠎" }, { "input": "offstage", "output": "â ·â ‹â Œâ â ›â ‘" }, { "input": "offstages", "output": "â ·â ‹â Œâ â ›â ‘â Ž" }, { "input": "oft", "output": "â ·â ž" }, { "input": "often", "output": "â ·â žâ ¢" }, { "input": "oftener", "output": "⠷⠞⠢⠻" }, { "input": "oftenest", "output": "⠷⠞⠢⠑⠌" }, { "input": "oftentimes", "output": "â ·â žâ ¢â â žâ Ž" }, { "input": "ogle", "output": "⠕⠛⠇⠑" }, { "input": "ogled", "output": "⠕⠛⠇⠫" }, { "input": "ogles", "output": "⠕⠛⠇⠑⠎" }, { "input": "ogling", "output": "⠕⠛⠇⠬" }, { "input": "ogre", "output": "⠕⠛⠗⠑" }, { "input": "ogres", "output": "⠕⠛⠗⠑⠎" }, { "input": "oh", "output": "â •â “" }, { "input": "ohm", "output": "â •â “â " }, { "input": "ohms", "output": "â •â “â â Ž" }, { "input": "oho", "output": "â •â “â •" }, { "input": "ohs", "output": "â •â “â Ž" }, { "input": "oil", "output": "â •â Šâ ‡" }, { "input": "oilcloth", "output": "⠕⠊⠇⠉⠇⠕⠹" }, { "input": "oilcloths", "output": "⠕⠊⠇⠉⠇⠕⠹⠎" }, { "input": "oiled", "output": "⠕⠊⠇⠫" }, { "input": "oilfield", "output": "⠕⠊⠇⠋⠊⠑⠇⠙" }, { "input": "oilfields", "output": "⠕⠊⠇⠋⠊⠑⠇⠙⠎" }, { "input": "oilier", "output": "⠕⠊⠇⠊⠻" }, { "input": "oiliest", "output": "⠕⠊⠇⠊⠑⠌" }, { "input": "oiliness", "output": "⠕⠊⠇⠊⠰⠎" }, { "input": "oiling", "output": "⠕⠊⠇⠬" }, { "input": "oils", "output": "⠕⠊⠇⠎" }, { "input": "oilskin", "output": "⠕⠊⠇⠎⠅⠔" }, { "input": "oily", "output": "⠕⠊⠇⠽" }, { "input": "oink", "output": "⠕⠔⠅" }, { "input": "oinked", "output": "⠕⠔⠅⠫" }, { "input": "oinking", "output": "⠕⠔⠅⠬" }, { "input": "oinks", "output": "⠕⠔⠅⠎" }, { "input": "ointment", "output": "⠕⠔⠞⠰⠞" }, { "input": "ointments", "output": "⠕⠔⠞⠰⠞⠎" }, { "input": "okay", "output": "â •â …â â ½" }, { "input": "okayed", "output": "â •â …â â ½â «" }, { "input": "okaying", "output": "â •â …â â ½â ¬" }, { "input": "okays", "output": "â •â …â â ½â Ž" }, { "input": "okra", "output": "â •â …â —â " }, { "input": "okras", "output": "â •â …â —â â Ž" }, { "input": "old", "output": "⠕⠇⠙" }, { "input": "olden", "output": "⠕⠇⠙⠢" }, { "input": "older", "output": "⠕⠇⠙⠻" }, { "input": "oldest", "output": "⠕⠇⠙⠑⠌" }, { "input": "oldie", "output": "⠕⠇⠙⠊⠑" }, { "input": "oldies", "output": "⠕⠇⠙⠊⠑⠎" }, { "input": "oleaginous", "output": "⠕⠇⠑â â ›â ”⠳⠎" }, { "input": "oleander", "output": "⠕⠇⠑⠯⠻" }, { "input": "oleanders", "output": "⠕⠇⠑⠯⠻⠎" }, { "input": "oleo", "output": "⠕⠇⠑⠕" }, { "input": "oleomargarine", "output": "⠕⠇⠑⠕â â œâ ›â œâ ”â ‘" }, { "input": "olfactories", "output": "⠕⠇⠋â â ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "olfactory", "output": "⠕⠇⠋â â ‰â žâ •â —â ½" }, { "input": "oligarch", "output": "⠕⠇⠊⠛⠜⠡" }, { "input": "oligarchic", "output": "⠕⠇⠊⠛⠜⠡⠊⠉" }, { "input": "oligarchies", "output": "⠕⠇⠊⠛⠜⠡⠊⠑⠎" }, { "input": "oligarchs", "output": "⠕⠇⠊⠛⠜⠡⠎" }, { "input": "oligarchy", "output": "⠕⠇⠊⠛⠜⠡⠽" }, { "input": "olive", "output": "⠕⠇⠊⠧⠑" }, { "input": "olives", "output": "⠕⠇⠊⠧⠑⠎" }, { "input": "ombudsman", "output": "â •â â ƒâ ¥â ™â Žâ â â " }, { "input": "ombudsmen", "output": "â •â â ƒâ ¥â ™â Žâ â ¢" }, { "input": "omega", "output": "â •â â ‘â ›â " }, { "input": "omegas", "output": "â •â â ‘â ›â â Ž" }, { "input": "omelet", "output": "â •â â ‘⠇⠑⠞" }, { "input": "omelets", "output": "â •â â ‘⠇⠑⠞⠎" }, { "input": "omelette", "output": "â •â â ‘⠇⠑⠞⠞⠑" }, { "input": "omelettes", "output": "â •â â ‘⠇⠑⠞⠞⠑⠎" }, { "input": "omen", "output": "â •â â ¢" }, { "input": "omens", "output": "â •â â ¢â Ž" }, { "input": "ominous", "output": "â •â â ”⠳⠎" }, { "input": "ominously", "output": "â •â â ”⠳⠎⠇⠽" }, { "input": "omission", "output": "â •â â Šâ Žâ ¨â " }, { "input": "omissions", "output": "â •â â Šâ Žâ ¨â â Ž" }, { "input": "omit", "output": "â •â â Šâ ž" }, { "input": "omits", "output": "â •â â Šâ žâ Ž" }, { "input": "omitted", "output": "â •â â Šâ žâ žâ «" }, { "input": "omitting", "output": "â •â â Šâ žâ žâ ¬" }, { "input": "omnibus", "output": "â •â â â Šâ ƒâ ¥â Ž" }, { "input": "omnibuses", "output": "â •â â â Šâ ƒâ ¥â Žâ ‘â Ž" }, { "input": "omnibusses", "output": "â •â â â Šâ ƒâ ¥â Žâ Žâ ‘â Ž" }, { "input": "omnipotence", "output": "â •â â â Šâ â •â žâ °â ‘" }, { "input": "omnipotent", "output": "â •â â â Šâ â •⠞⠢⠞" }, { "input": "omnipresence", "output": "â •â â â Šâ â —â ‘â Žâ °â ‘" }, { "input": "omnipresent", "output": "â •â â â Šâ â —⠑⠎⠢⠞" }, { "input": "omniscience", "output": "â •â â â Šâ Žâ ‰â Šâ °â ‘" }, { "input": "omniscient", "output": "â •â â â Šâ Žâ ‰â Šâ ¢â ž" }, { "input": "omnivore", "output": "â •â â â Šâ §â •â —â ‘" }, { "input": "omnivores", "output": "â •â â â Šâ §â •â —â ‘â Ž" }, { "input": "omnivorous", "output": "â •â â â Šâ §â •⠗⠳⠎" }, { "input": "on", "output": "â •â " }, { "input": "once", "output": "â •â â ‰â ‘" }, { "input": "oncology", "output": "â •â â ‰â •⠇⠕⠛⠽" }, { "input": "oncoming", "output": "â •â â ‰â •â â ¬" }, { "input": "one", "output": "â â •" }, { "input": "oneness", "output": "â â •â °â Ž" }, { "input": "onerous", "output": "â •â â »â ³â Ž" }, { "input": "ones", "output": "â â •â Ž" }, { "input": "oneself", "output": "â â •â ‹" }, { "input": "onetime", "output": "â â •â â ž" }, { "input": "ongoing", "output": "â •â â ›â •â ¬" }, { "input": "onion", "output": "â •â â Šâ •â " }, { "input": "onions", "output": "â •â â Šâ •â â Ž" }, { "input": "onionskin", "output": "â •â â Šâ •â â Žâ …â ”" }, { "input": "online", "output": "â •â â ‡â ”â ‘" }, { "input": "onlooker", "output": "â •â â ‡â •â •â …â »" }, { "input": "onlookers", "output": "â •â â ‡â •⠕⠅⠻⠎" }, { "input": "only", "output": "â •â â ‡â ½" }, { "input": "onomatopoeia", "output": "â •â â •â â â žâ •â â •â ‘â Šâ " }, { "input": "onomatopoeic", "output": "â •â â •â â â žâ •â â •â ‘â Šâ ‰" }, { "input": "onrush", "output": "â •â â —⠥⠩" }, { "input": "onrushes", "output": "â •â â —⠥⠩⠑⠎" }, { "input": "onrushing", "output": "â •â â —⠥⠩⠬" }, { "input": "onset", "output": "â •â â Žâ ‘â ž" }, { "input": "onsets", "output": "â •â â Žâ ‘â žâ Ž" }, { "input": "onshore", "output": "â •â â ©â •â —â ‘" }, { "input": "onslaught", "output": "â •â â Žâ ‡â â ¥â £â ž" }, { "input": "onslaughts", "output": "â •â â Žâ ‡â â ¥â £â žâ Ž" }, { "input": "onto", "output": "â •â â žâ •" }, { "input": "onus", "output": "â •â â ¥â Ž" }, { "input": "onuses", "output": "â •â â ¥â Žâ ‘â Ž" }, { "input": "onward", "output": "â •â â ºâ œâ ™" }, { "input": "onwards", "output": "â •â â ºâ œâ ™â Ž" }, { "input": "onyx", "output": "â •â â ½â ­" }, { "input": "onyxes", "output": "â •â â ½â ­â ‘â Ž" }, { "input": "oodles", "output": "⠕⠕⠙⠇⠑⠎" }, { "input": "oops", "output": "â •â •â â Ž" }, { "input": "ooze", "output": "⠕⠕⠵⠑" }, { "input": "oozed", "output": "⠕⠕⠵⠫" }, { "input": "oozes", "output": "⠕⠕⠵⠑⠎" }, { "input": "oozing", "output": "⠕⠕⠵⠬" }, { "input": "opacity", "output": "â •â â â ‰â °â ½" }, { "input": "opal", "output": "â •â â â ‡" }, { "input": "opalescence", "output": "â •â â â ‡â ‘⠎⠉⠰⠑" }, { "input": "opalescent", "output": "â •â â â ‡â ‘⠎⠉⠢⠞" }, { "input": "opals", "output": "â •â â â ‡â Ž" }, { "input": "opaque", "output": "â •â â â Ÿâ ¥â ‘" }, { "input": "opaqued", "output": "â •â â â Ÿâ ¥â «" }, { "input": "opaquely", "output": "â •â â â Ÿâ ¥â ‘⠇⠽" }, { "input": "opaqueness", "output": "â •â â â Ÿâ ¥â ‘â °â Ž" }, { "input": "opaquer", "output": "â •â â â Ÿâ ¥â »" }, { "input": "opaques", "output": "â •â â â Ÿâ ¥â ‘â Ž" }, { "input": "opaquest", "output": "â •â â â Ÿâ ¥â ‘â Œ" }, { "input": "opaquing", "output": "â •â â â Ÿâ ¥â ¬" }, { "input": "open", "output": "â •â â ¢" }, { "input": "opened", "output": "â •â â ¢â «" }, { "input": "opener", "output": "â •â â ¢â »" }, { "input": "openers", "output": "â •â â ¢â »â Ž" }, { "input": "openest", "output": "â •â â ¢â ‘â Œ" }, { "input": "openhanded", "output": "â •â â ¢â “⠯⠫" }, { "input": "opening", "output": "â •â â ¢â ¬" }, { "input": "openings", "output": "â •â â ¢â ¬â Ž" }, { "input": "openly", "output": "â •â â ¢â ‡â ½" }, { "input": "openness", "output": "â •â â ¢â °â Ž" }, { "input": "opens", "output": "â •â â ¢â Ž" }, { "input": "openwork", "output": "â •â â ¢â â º" }, { "input": "opera", "output": "â •â â »â " }, { "input": "operable", "output": "â •â â »â â ƒâ ‡â ‘" }, { "input": "operand", "output": "â •â â »â ¯" }, { "input": "operands", "output": "â •â â »â ¯â Ž" }, { "input": "operas", "output": "â •â â »â â Ž" }, { "input": "operate", "output": "â •â â »â â žâ ‘" }, { "input": "operated", "output": "â •â â »â â žâ «" }, { "input": "operates", "output": "â •â â »â â žâ ‘â Ž" }, { "input": "operatic", "output": "â •â â »â â žâ Šâ ‰" }, { "input": "operating", "output": "â •â â »â â žâ ¬" }, { "input": "operation", "output": "â •â â »â â °â " }, { "input": "operational", "output": "â •â â »â â °â â â ‡" }, { "input": "operationally", "output": "â •â â »â â °â â â ‡â ‡â ½" }, { "input": "operations", "output": "â •â â »â â °â â Ž" }, { "input": "operative", "output": "â •â â »â â žâ Šâ §â ‘" }, { "input": "operatives", "output": "â •â â »â â žâ Šâ §â ‘â Ž" }, { "input": "operator", "output": "â •â â »â â žâ •â —" }, { "input": "operators", "output": "â •â â »â â žâ •â —â Ž" }, { "input": "operetta", "output": "â •â â »â ‘â žâ žâ " }, { "input": "operettas", "output": "â •â â »â ‘â žâ žâ â Ž" }, { "input": "ophthalmic", "output": "â •â â “â ¹â â ‡â â Šâ ‰" }, { "input": "ophthalmologist", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠊⠌" }, { "input": "ophthalmologists", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠊⠌⠎" }, { "input": "ophthalmology", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠽" }, { "input": "opiate", "output": "â •â â Šâ â žâ ‘" }, { "input": "opiates", "output": "â •â â Šâ â žâ ‘â Ž" }, { "input": "opine", "output": "â •â â ”â ‘" }, { "input": "opined", "output": "â •â â ”â «" }, { "input": "opines", "output": "â •â â ”â ‘â Ž" }, { "input": "opining", "output": "â •â â ”â ¬" }, { "input": "opinion", "output": "â •â â ”â Šâ •â " }, { "input": "opinionated", "output": "â •â â ”â Šâ •â â â žâ «" }, { "input": "opinions", "output": "â •â â ”â Šâ •â â Ž" }, { "input": "opium", "output": "â •â â Šâ ¥â " }, { "input": "opossum", "output": "â •â â •â Žâ Žâ ¥â " }, { "input": "opossums", "output": "â •â â •â Žâ Žâ ¥â â Ž" }, { "input": "opponent", "output": "â •â â â •â â ¢â ž" }, { "input": "opponents", "output": "â •â â â •â â ¢â žâ Ž" }, { "input": "opportune", "output": "â •â â â •â —â žâ ¥â â ‘" }, { "input": "opportunism", "output": "â •â â â •â —â žâ ¥â â Šâ Žâ " }, { "input": "opportunist", "output": "â •â â â •â —â žâ ¥â â Šâ Œ" }, { "input": "opportunistic", "output": "â •â â â •â —â žâ ¥â â Šâ Œâ Šâ ‰" }, { "input": "opportunists", "output": "â •â â â •â —â žâ ¥â â Šâ Œâ Ž" }, { "input": "opportunities", "output": "â •â â â •â —â žâ ¥â â Šâ žâ Šâ ‘â Ž" }, { "input": "opportunity", "output": "â •â â â •â —â žâ ¥â â °â ½" }, { "input": "oppose", "output": "â •â â â •â Žâ ‘" }, { "input": "opposed", "output": "â •â â â •â Žâ «" }, { "input": "opposes", "output": "â •â â â •â Žâ ‘â Ž" }, { "input": "opposing", "output": "â •â â â •â Žâ ¬" }, { "input": "opposite", "output": "â •â â â •â Žâ Šâ žâ ‘" }, { "input": "opposites", "output": "â •â â â •â Žâ Šâ žâ ‘â Ž" }, { "input": "opposition", "output": "â •â â â •â Žâ Šâ °â " }, { "input": "oppress", "output": "â •â â â —â ‘â Žâ Ž" }, { "input": "oppressed", "output": "â •â â â —â ‘â Žâ Žâ «" }, { "input": "oppresses", "output": "â •â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "oppressing", "output": "â •â â â —â ‘â Žâ Žâ ¬" }, { "input": "oppression", "output": "â •â â â —â ‘â Žâ ¨â " }, { "input": "oppressive", "output": "â •â â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "oppressively", "output": "â •â â â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "oppressor", "output": "â •â â â —â ‘â Žâ Žâ •â —" }, { "input": "oppressors", "output": "â •â â â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "opprobrious", "output": "â •â â â —⠕⠃⠗⠊⠳⠎" }, { "input": "opprobrium", "output": "â •â â â —⠕⠃⠗⠊⠥â " }, { "input": "opt", "output": "â •â â ž" }, { "input": "opted", "output": "â •â â žâ «" }, { "input": "optic", "output": "â •â â žâ Šâ ‰" }, { "input": "optical", "output": "â •â â žâ Šâ ‰â â ‡" }, { "input": "optically", "output": "â •â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "optician", "output": "â •â â žâ Šâ ‰â Šâ â " }, { "input": "opticians", "output": "â •â â žâ Šâ ‰â Šâ â â Ž" }, { "input": "optics", "output": "â •â â žâ Šâ ‰â Ž" }, { "input": "optima", "output": "â •â â žâ Šâ â " }, { "input": "optimal", "output": "â •â â žâ Šâ â â ‡" }, { "input": "optimism", "output": "â •â â žâ Šâ â Šâ Žâ " }, { "input": "optimist", "output": "â •â â žâ Šâ â Šâ Œ" }, { "input": "optimistic", "output": "â •â â žâ Šâ â Šâ Œâ Šâ ‰" }, { "input": "optimistically", "output": "â •â â žâ Šâ â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "optimists", "output": "â •â â žâ Šâ â Šâ Œâ Ž" }, { "input": "optimization", "output": "â •â â žâ Šâ â Šâ µâ â °â " }, { "input": "optimize", "output": "â •â â žâ Šâ â Šâ µâ ‘" }, { "input": "optimized", "output": "â •â â žâ Šâ â Šâ µâ «" }, { "input": "optimizer", "output": "â •â â žâ Šâ â Šâ µâ »" }, { "input": "optimizes", "output": "â •â â žâ Šâ â Šâ µâ ‘â Ž" }, { "input": "optimizing", "output": "â •â â žâ Šâ â Šâ µâ ¬" }, { "input": "optimum", "output": "â •â â žâ Šâ â ¥â " }, { "input": "optimums", "output": "â •â â žâ Šâ â ¥â â Ž" }, { "input": "opting", "output": "â •â â žâ ¬" }, { "input": "option", "output": "â •â â °â " }, { "input": "optional", "output": "â •â â °â â â ‡" }, { "input": "optionally", "output": "â •â â °â â â ‡â ‡â ½" }, { "input": "optioned", "output": "â •â â °â â «" }, { "input": "optioning", "output": "â •â â °â â ¬" }, { "input": "options", "output": "â •â â °â â Ž" }, { "input": "optometrist", "output": "â •â â žâ •â â ‘â žâ —â Šâ Œ" }, { "input": "optometrists", "output": "â •â â žâ •â â ‘⠞⠗⠊⠌⠎" }, { "input": "optometry", "output": "â •â â žâ •â â ‘â žâ —â ½" }, { "input": "opts", "output": "â •â â žâ Ž" }, { "input": "opulence", "output": "â •â â ¥â ‡â °â ‘" }, { "input": "opulent", "output": "â •â â ¥â ‡â ¢â ž" }, { "input": "opus", "output": "â •â â ¥â Ž" }, { "input": "opuses", "output": "â •â â ¥â Žâ ‘â Ž" }, { "input": "or", "output": "â •â —" }, { "input": "oracle", "output": "â •â —â â ‰â ‡â ‘" }, { "input": "oracles", "output": "â •â —â â ‰â ‡â ‘â Ž" }, { "input": "oracular", "output": "â •â —â â ‰â ¥â ‡â œ" }, { "input": "oral", "output": "â •â —â â ‡" }, { "input": "orally", "output": "â •â —â â ‡â ‡â ½" }, { "input": "orals", "output": "â •â —â â ‡â Ž" }, { "input": "orange", "output": "â •â —â â â ›â ‘" }, { "input": "orangeade", "output": "â •â —â â â ›â ‘â â ™â ‘" }, { "input": "orangeades", "output": "â •â —â â â ›â ‚⠙⠑⠎" }, { "input": "oranges", "output": "â •â —â â â ›â ‘â Ž" }, { "input": "orangutan", "output": "â •â —â â â ›â ¥â žâ â " }, { "input": "orangutang", "output": "â •â —â â â ›â ¥â žâ â â ›" }, { "input": "orangutangs", "output": "â •â —â â â ›â ¥â žâ â â ›â Ž" }, { "input": "orangutans", "output": "â •â —â â â ›â ¥â žâ â â Ž" }, { "input": "orate", "output": "â •â —â â žâ ‘" }, { "input": "orated", "output": "â •â —â â žâ «" }, { "input": "orates", "output": "â •â —â â žâ ‘â Ž" }, { "input": "orating", "output": "â •â —â â žâ ¬" }, { "input": "oration", "output": "â •â —â â °â " }, { "input": "orations", "output": "â •â —â â °â â Ž" }, { "input": "orator", "output": "â •â —â â žâ •â —" }, { "input": "oratorical", "output": "â •â —â â žâ •â —â Šâ ‰â â ‡" }, { "input": "oratories", "output": "â •â —â â žâ •â —â Šâ ‘â Ž" }, { "input": "oratorio", "output": "â •â —â â žâ •â —â Šâ •" }, { "input": "oratorios", "output": "â •â —â â žâ •â —â Šâ •â Ž" }, { "input": "orators", "output": "â •â —â â žâ •â —â Ž" }, { "input": "oratory", "output": "â •â —â â žâ •â —â ½" }, { "input": "orb", "output": "â •â —â ƒ" }, { "input": "orbit", "output": "⠕⠗⠃⠊⠞" }, { "input": "orbital", "output": "⠕⠗⠃⠊⠞â â ‡" }, { "input": "orbitals", "output": "⠕⠗⠃⠊⠞â â ‡â Ž" }, { "input": "orbited", "output": "⠕⠗⠃⠊⠞⠫" }, { "input": "orbiting", "output": "⠕⠗⠃⠊⠞⠬" }, { "input": "orbits", "output": "⠕⠗⠃⠊⠞⠎" }, { "input": "orbs", "output": "⠕⠗⠃⠎" }, { "input": "orchard", "output": "⠕⠗⠡⠜⠙" }, { "input": "orchards", "output": "⠕⠗⠡⠜⠙⠎" }, { "input": "orchestra", "output": "⠕⠗⠡⠑⠌⠗â " }, { "input": "orchestral", "output": "⠕⠗⠡⠑⠌⠗â â ‡" }, { "input": "orchestras", "output": "⠕⠗⠡⠑⠌⠗â â Ž" }, { "input": "orchestrate", "output": "⠕⠗⠡⠑⠌⠗â â žâ ‘" }, { "input": "orchestrated", "output": "⠕⠗⠡⠑⠌⠗â â žâ «" }, { "input": "orchestrates", "output": "⠕⠗⠡⠑⠌⠗â â žâ ‘â Ž" }, { "input": "orchestrating", "output": "⠕⠗⠡⠑⠌⠗â â žâ ¬" }, { "input": "orchestration", "output": "⠕⠗⠡⠑⠌⠗â â °â " }, { "input": "orchestrations", "output": "⠕⠗⠡⠑⠌⠗â â °â â Ž" }, { "input": "orchid", "output": "â •â —â ¡â Šâ ™" }, { "input": "orchids", "output": "⠕⠗⠡⠊⠙⠎" }, { "input": "ordain", "output": "â •â —â ™â â ”" }, { "input": "ordained", "output": "â •â —â ™â â ”â «" }, { "input": "ordaining", "output": "â •â —â ™â â ”â ¬" }, { "input": "ordains", "output": "â •â —â ™â â ”â Ž" }, { "input": "ordeal", "output": "⠕⠗⠙⠂⠇" }, { "input": "ordeals", "output": "⠕⠗⠙⠂⠇⠎" }, { "input": "order", "output": "⠕⠗⠙⠻" }, { "input": "ordered", "output": "⠕⠗⠙⠻⠫" }, { "input": "ordering", "output": "⠕⠗⠙⠻⠬" }, { "input": "orderings", "output": "⠕⠗⠙⠻⠬⠎" }, { "input": "orderlies", "output": "⠕⠗⠙⠻⠇⠊⠑⠎" }, { "input": "orderliness", "output": "⠕⠗⠙⠻⠇⠊⠰⠎" }, { "input": "orderly", "output": "⠕⠗⠙⠻⠇⠽" }, { "input": "orders", "output": "⠕⠗⠙⠻⠎" }, { "input": "ordinal", "output": "⠕⠗⠙⠔â â ‡" }, { "input": "ordinals", "output": "⠕⠗⠙⠔â â ‡â Ž" }, { "input": "ordinance", "output": "⠕⠗⠙⠔⠨⠑" }, { "input": "ordinances", "output": "⠕⠗⠙⠔⠨⠑⠎" }, { "input": "ordinaries", "output": "⠕⠗⠙⠔⠜⠊⠑⠎" }, { "input": "ordinarily", "output": "⠕⠗⠙⠔⠜⠊⠇⠽" }, { "input": "ordinariness", "output": "⠕⠗⠙⠔⠜⠊⠰⠎" }, { "input": "ordinary", "output": "⠕⠗⠙⠔⠜⠽" }, { "input": "ordination", "output": "⠕⠗⠙⠔â â °â " }, { "input": "ordinations", "output": "⠕⠗⠙⠔â â °â â Ž" }, { "input": "ordnance", "output": "â •â —â ™â â ¨â ‘" }, { "input": "ordure", "output": "⠕⠗⠙⠥⠗⠑" }, { "input": "ore", "output": "â •â —â ‘" }, { "input": "oregano", "output": "â •â —â ‘â ›â â â •" }, { "input": "ores", "output": "â •â —â ‘â Ž" }, { "input": "organ", "output": "â •â —â ›â â " }, { "input": "organdie", "output": "⠕⠗⠛⠯⠊⠑" }, { "input": "organdy", "output": "⠕⠗⠛⠯⠽" }, { "input": "organelle", "output": "â •â —â ›â â â ‘⠇⠇⠑" }, { "input": "organelles", "output": "â •â —â ›â â â ‘⠇⠇⠑⠎" }, { "input": "organic", "output": "â •â —â ›â â â Šâ ‰" }, { "input": "organically", "output": "â •â —â ›â â â Šâ ‰â â ‡â ‡â ½" }, { "input": "organics", "output": "â •â —â ›â â â Šâ ‰â Ž" }, { "input": "organism", "output": "â •â —â ›â â â Šâ Žâ " }, { "input": "organisms", "output": "â •â —â ›â â â Šâ Žâ â Ž" }, { "input": "organist", "output": "â •â —â ›â â â Šâ Œ" }, { "input": "organists", "output": "â •â —â ›â â â Šâ Œâ Ž" }, { "input": "organization", "output": "â •â —â ›â â â Šâ µâ â °â " }, { "input": "organizational", "output": "â •â —â ›â â â Šâ µâ â °â â â ‡" }, { "input": "organizations", "output": "â •â —â ›â â â Šâ µâ â °â â Ž" }, { "input": "organize", "output": "â •â —â ›â â â Šâ µâ ‘" }, { "input": "organized", "output": "â •â —â ›â â â Šâ µâ «" }, { "input": "organizer", "output": "â •â —â ›â â â Šâ µâ »" }, { "input": "organizers", "output": "â •â —â ›â â â Šâ µâ »â Ž" }, { "input": "organizes", "output": "â •â —â ›â â â Šâ µâ ‘â Ž" }, { "input": "organizing", "output": "â •â —â ›â â â Šâ µâ ¬" }, { "input": "organs", "output": "â •â —â ›â â â Ž" }, { "input": "orgasm", "output": "â •â —â ›â â Žâ " }, { "input": "orgasmic", "output": "â •â —â ›â â Žâ â Šâ ‰" }, { "input": "orgasms", "output": "â •â —â ›â â Žâ â Ž" }, { "input": "orgiastic", "output": "⠕⠗⠛⠊â â Œâ Šâ ‰" }, { "input": "orgies", "output": "⠕⠗⠛⠊⠑⠎" }, { "input": "orgy", "output": "⠕⠗⠛⠽" }, { "input": "orient", "output": "⠕⠗⠊⠢⠞" }, { "input": "oriental", "output": "⠕⠗⠊⠢⠞â â ‡" }, { "input": "orientals", "output": "⠕⠗⠊⠢⠞â â ‡â Ž" }, { "input": "orientate", "output": "⠕⠗⠊⠢⠞â â žâ ‘" }, { "input": "orientated", "output": "⠕⠗⠊⠢⠞â â žâ «" }, { "input": "orientates", "output": "⠕⠗⠊⠢⠞â â žâ ‘â Ž" }, { "input": "orientating", "output": "⠕⠗⠊⠢⠞â â žâ ¬" }, { "input": "orientation", "output": "⠕⠗⠊⠢⠞â â °â " }, { "input": "orientations", "output": "⠕⠗⠊⠢⠞â â °â â Ž" }, { "input": "oriented", "output": "⠕⠗⠊⠢⠞⠫" }, { "input": "orienting", "output": "⠕⠗⠊⠢⠞⠬" }, { "input": "orients", "output": "⠕⠗⠊⠢⠞⠎" }, { "input": "orifice", "output": "⠕⠗⠊⠋⠊⠉⠑" }, { "input": "orifices", "output": "⠕⠗⠊⠋⠊⠉⠑⠎" }, { "input": "origami", "output": "â •â —â Šâ ›â â â Š" }, { "input": "origin", "output": "⠕⠗⠊⠛⠔" }, { "input": "original", "output": "⠕⠗⠊⠛⠔â â ‡" }, { "input": "originality", "output": "⠕⠗⠊⠛⠔â â ‡â °â ½" }, { "input": "originally", "output": "⠕⠗⠊⠛⠔â â ‡â ‡â ½" }, { "input": "originals", "output": "⠕⠗⠊⠛⠔â â ‡â Ž" }, { "input": "originate", "output": "⠕⠗⠊⠛⠔â â žâ ‘" }, { "input": "originated", "output": "⠕⠗⠊⠛⠔â â žâ «" }, { "input": "originates", "output": "⠕⠗⠊⠛⠔â â žâ ‘â Ž" }, { "input": "originating", "output": "⠕⠗⠊⠛⠔â â žâ ¬" }, { "input": "origination", "output": "⠕⠗⠊⠛⠔â â °â " }, { "input": "originator", "output": "⠕⠗⠊⠛⠔â â žâ •â —" }, { "input": "originators", "output": "⠕⠗⠊⠛⠔â â žâ •â —â Ž" }, { "input": "origins", "output": "⠕⠗⠊⠛⠔⠎" }, { "input": "oriole", "output": "⠕⠗⠊⠕⠇⠑" }, { "input": "orioles", "output": "⠕⠗⠊⠕⠇⠑⠎" }, { "input": "ormolu", "output": "â •â —â â •⠇⠥" }, { "input": "ornament", "output": "â •â —â â â °â ž" }, { "input": "ornamental", "output": "â •â —â â â °â žâ â ‡" }, { "input": "ornamentation", "output": "â •â —â â â °â žâ â °â " }, { "input": "ornamented", "output": "â •â —â â â °â žâ «" }, { "input": "ornamenting", "output": "â •â —â â â °â žâ ¬" }, { "input": "ornaments", "output": "â •â —â â â °â žâ Ž" }, { "input": "ornate", "output": "â •â —â â â žâ ‘" }, { "input": "ornately", "output": "â •â —â â â žâ ‘⠇⠽" }, { "input": "ornateness", "output": "â •â —â â â žâ ‘â °â Ž" }, { "input": "ornerier", "output": "â •â —â â »â Šâ »" }, { "input": "orneriest", "output": "â •â —â â »â Šâ ‘â Œ" }, { "input": "ornery", "output": "â •â —â â »â ½" }, { "input": "ornithologist", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠊⠌" }, { "input": "ornithologists", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "ornithology", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠽" }, { "input": "orotund", "output": "â •â —â •â žâ ¥â â ™" }, { "input": "orphan", "output": "â •â —â â “â â " }, { "input": "orphanage", "output": "â •â —â â “â â â â ›â ‘" }, { "input": "orphanages", "output": "â •â —â â “â â â â ›â ‘â Ž" }, { "input": "orphaned", "output": "â •â —â â “â â â «" }, { "input": "orphaning", "output": "â •â —â â “â â â ¬" }, { "input": "orphans", "output": "â •â —â â “â â â Ž" }, { "input": "orthodontia", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ " }, { "input": "orthodontic", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ ‰" }, { "input": "orthodontics", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ ‰â Ž" }, { "input": "orthodontist", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ Œ" }, { "input": "orthodontists", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ Œâ Ž" }, { "input": "orthodox", "output": "⠕⠗⠹⠕⠙⠕⠭" }, { "input": "orthodoxies", "output": "⠕⠗⠹⠕⠙⠕⠭⠊⠑⠎" }, { "input": "orthodoxy", "output": "⠕⠗⠹⠕⠙⠕⠭⠽" }, { "input": "orthogonal", "output": "⠕⠗⠹⠕⠛⠕â â â ‡" }, { "input": "orthogonality", "output": "⠕⠗⠹⠕⠛⠕â â â ‡â °â ½" }, { "input": "orthographic", "output": "⠕⠗⠹⠕⠛⠗â â â “â Šâ ‰" }, { "input": "orthographies", "output": "⠕⠗⠹⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "orthography", "output": "⠕⠗⠹⠕⠛⠗â â â “â ½" }, { "input": "orthopaedic", "output": "⠕⠗⠹⠕â â â «â Šâ ‰" }, { "input": "orthopaedics", "output": "⠕⠗⠹⠕â â â «â Šâ ‰â Ž" }, { "input": "orthopaedist", "output": "⠕⠗⠹⠕â â â «â Šâ Œ" }, { "input": "orthopaedists", "output": "⠕⠗⠹⠕â â â «â Šâ Œâ Ž" }, { "input": "orthopedic", "output": "⠕⠗⠹⠕â â «â Šâ ‰" }, { "input": "orthopedics", "output": "⠕⠗⠹⠕â â «â Šâ ‰â Ž" }, { "input": "orthopedist", "output": "⠕⠗⠹⠕â â «â Šâ Œ" }, { "input": "orthopedists", "output": "⠕⠗⠹⠕â â «â Šâ Œâ Ž" }, { "input": "oscillate", "output": "⠕⠎⠉⠊⠇⠇â â žâ ‘" }, { "input": "oscillated", "output": "⠕⠎⠉⠊⠇⠇â â žâ «" }, { "input": "oscillates", "output": "⠕⠎⠉⠊⠇⠇â â žâ ‘â Ž" }, { "input": "oscillating", "output": "⠕⠎⠉⠊⠇⠇â â žâ ¬" }, { "input": "oscillation", "output": "⠕⠎⠉⠊⠇⠇â â °â " }, { "input": "oscillations", "output": "⠕⠎⠉⠊⠇⠇â â °â â Ž" }, { "input": "oscillator", "output": "⠕⠎⠉⠊⠇⠇â â žâ •â —" }, { "input": "oscillators", "output": "⠕⠎⠉⠊⠇⠇â â žâ •â —â Ž" }, { "input": "oscilloscope", "output": "⠕⠎⠉⠊⠇⠇⠕⠎⠉⠕â â ‘" }, { "input": "oscilloscopes", "output": "⠕⠎⠉⠊⠇⠇⠕⠎⠉⠕â â ‘â Ž" }, { "input": "osier", "output": "â •â Žâ Šâ »" }, { "input": "osiers", "output": "⠕⠎⠊⠻⠎" }, { "input": "osmosis", "output": "â •â Žâ â •â Žâ Šâ Ž" }, { "input": "osmotic", "output": "â •â Žâ â •â žâ Šâ ‰" }, { "input": "osprey", "output": "â •â Žâ â —â ‘â ½" }, { "input": "ospreys", "output": "â •â Žâ â —⠑⠽⠎" }, { "input": "ossification", "output": "â •â Žâ Žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "ossified", "output": "â •â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "ossifies", "output": "â •â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "ossify", "output": "â •â Žâ Žâ Šâ ‹â ½" }, { "input": "ossifying", "output": "⠕⠎⠎⠊⠋⠽⠬" }, { "input": "ostensible", "output": "⠕⠌⠢⠎⠊⠃⠇⠑" }, { "input": "ostensibly", "output": "⠕⠌⠢⠎⠊⠃⠇⠽" }, { "input": "ostentation", "output": "⠕⠌⠢⠞â â °â " }, { "input": "ostentatious", "output": "⠕⠌⠢⠞â â žâ Šâ ³â Ž" }, { "input": "ostentatiously", "output": "⠕⠌⠢⠞â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "osteopath", "output": "⠕⠌⠑⠕â â â ¹" }, { "input": "osteopaths", "output": "⠕⠌⠑⠕â â â ¹â Ž" }, { "input": "osteopathy", "output": "⠕⠌⠑⠕â â â ¹â ½" }, { "input": "osteoporosis", "output": "⠕⠌⠑⠕â â •â —â •â Žâ Šâ Ž" }, { "input": "ostracism", "output": "⠕⠌⠗â â ‰â Šâ Žâ " }, { "input": "ostracize", "output": "⠕⠌⠗â â ‰â Šâ µâ ‘" }, { "input": "ostracized", "output": "⠕⠌⠗â â ‰â Šâ µâ «" }, { "input": "ostracizes", "output": "⠕⠌⠗â â ‰â Šâ µâ ‘â Ž" }, { "input": "ostracizing", "output": "⠕⠌⠗â â ‰â Šâ µâ ¬" }, { "input": "ostrich", "output": "⠕⠌⠗⠊⠡" }, { "input": "ostriches", "output": "⠕⠌⠗⠊⠡⠑⠎" }, { "input": "other", "output": "⠕⠮⠗" }, { "input": "others", "output": "⠕⠮⠗⠎" }, { "input": "otherwise", "output": "⠕⠮⠗⠺⠊⠎⠑" }, { "input": "otherworldly", "output": "⠕⠮⠗⠸⠺⠇⠽" }, { "input": "otiose", "output": "â •â žâ Šâ •â Žâ ‘" }, { "input": "otter", "output": "â •â žâ žâ »" }, { "input": "otters", "output": "⠕⠞⠞⠻⠎" }, { "input": "ottoman", "output": "â •â žâ žâ •â â â " }, { "input": "ottomans", "output": "â •â žâ žâ •â â â â Ž" }, { "input": "ouch", "output": "⠳⠡" }, { "input": "ought", "output": "â â ³" }, { "input": "ounce", "output": "â ³â â ‰â ‘" }, { "input": "ounces", "output": "â ³â â ‰â ‘â Ž" }, { "input": "our", "output": "⠳⠗" }, { "input": "ours", "output": "⠳⠗⠎" }, { "input": "ourselves", "output": "⠳⠗⠧⠎" }, { "input": "oust", "output": "⠳⠌" }, { "input": "ousted", "output": "⠳⠌⠫" }, { "input": "ouster", "output": "⠳⠌⠻" }, { "input": "ousters", "output": "⠳⠌⠻⠎" }, { "input": "ousting", "output": "⠳⠌⠬" }, { "input": "ousts", "output": "⠳⠌⠎" }, { "input": "out", "output": "â ³" }, { "input": "outage", "output": "⠳⠞â â ›â ‘" }, { "input": "outages", "output": "⠳⠞â â ›â ‘â Ž" }, { "input": "outback", "output": "⠳⠞⠃â â ‰â …" }, { "input": "outbacks", "output": "⠳⠞⠃â â ‰â …â Ž" }, { "input": "outbalance", "output": "⠳⠞⠃â â ‡â ¨â ‘" }, { "input": "outbalanced", "output": "⠳⠞⠃â â ‡â ¨â ‘â ™" }, { "input": "outbalances", "output": "⠳⠞⠃â â ‡â ¨â ‘â Ž" }, { "input": "outbalancing", "output": "⠳⠞⠃â â ‡â â â ‰â ¬" }, { "input": "outbid", "output": "⠳⠞⠃⠊⠙" }, { "input": "outbidding", "output": "⠳⠞⠃⠊⠙⠙⠬" }, { "input": "outbids", "output": "⠳⠞⠃⠊⠙⠎" }, { "input": "outbound", "output": "⠳⠞⠃⠨⠙" }, { "input": "outbreak", "output": "⠳⠞⠃⠗⠂⠅" }, { "input": "outbreaks", "output": "⠳⠞⠃⠗⠂⠅⠎" }, { "input": "outbuilding", "output": "⠳⠞⠃⠥⠊⠇⠙⠬" }, { "input": "outbuildings", "output": "⠳⠞⠃⠥⠊⠇⠙⠬⠎" }, { "input": "outburst", "output": "⠳⠞⠃⠥⠗⠌" }, { "input": "outbursts", "output": "⠳⠞⠃⠥⠗⠌⠎" }, { "input": "outcast", "output": "⠳⠞⠉â â Œ" }, { "input": "outcasts", "output": "⠳⠞⠉â â Œâ Ž" }, { "input": "outclass", "output": "⠳⠞⠉⠇â â Žâ Ž" }, { "input": "outclassed", "output": "⠳⠞⠉⠇â â Žâ Žâ «" }, { "input": "outclasses", "output": "⠳⠞⠉⠇â â Žâ Žâ ‘â Ž" }, { "input": "outclassing", "output": "⠳⠞⠉⠇â â Žâ Žâ ¬" }, { "input": "outcome", "output": "⠳⠞⠉⠕â â ‘" }, { "input": "outcomes", "output": "⠳⠞⠉⠕â â ‘â Ž" }, { "input": "outcries", "output": "⠳⠞⠉⠗⠊⠑⠎" }, { "input": "outcrop", "output": "⠳⠞⠉⠗⠕â " }, { "input": "outcropped", "output": "⠳⠞⠉⠗⠕â â â «" }, { "input": "outcropping", "output": "⠳⠞⠉⠗⠕â â â ¬" }, { "input": "outcroppings", "output": "⠳⠞⠉⠗⠕â â â ¬â Ž" }, { "input": "outcrops", "output": "⠳⠞⠉⠗⠕â â Ž" }, { "input": "outcry", "output": "⠳⠞⠉⠗⠽" }, { "input": "outdated", "output": "⠳⠞⠙â â žâ «" }, { "input": "outdid", "output": "⠳⠞⠙⠊⠙" }, { "input": "outdistance", "output": "⠳⠞⠙⠊⠌⠨⠑" }, { "input": "outdistanced", "output": "⠳⠞⠙⠊⠌⠨⠑⠙" }, { "input": "outdistances", "output": "⠳⠞⠙⠊⠌⠨⠑⠎" }, { "input": "outdistancing", "output": "⠳⠞⠙⠊⠌â â â ‰â ¬" }, { "input": "outdo", "output": "⠳⠞⠙⠕" }, { "input": "outdoes", "output": "⠳⠞⠙⠕⠑⠎" }, { "input": "outdoing", "output": "⠳⠞⠙⠕⠬" }, { "input": "outdone", "output": "⠳⠞⠙â â •" }, { "input": "outdoor", "output": "⠳⠞⠙⠕⠕⠗" }, { "input": "outdoors", "output": "⠳⠞⠙⠕⠕⠗⠎" }, { "input": "outed", "output": "⠳⠞⠫" }, { "input": "outer", "output": "⠳⠞⠻" }, { "input": "outermost", "output": "⠳⠞⠻â â •â Œ" }, { "input": "outfield", "output": "⠳⠞⠋⠊⠑⠇⠙" }, { "input": "outfielder", "output": "⠳⠞⠋⠊⠑⠇⠙⠻" }, { "input": "outfielders", "output": "⠳⠞⠋⠊⠑⠇⠙⠻⠎" }, { "input": "outfields", "output": "⠳⠞⠋⠊⠑⠇⠙⠎" }, { "input": "outfit", "output": "⠳⠞⠋⠊⠞" }, { "input": "outfits", "output": "⠳⠞⠋⠊⠞⠎" }, { "input": "outfitted", "output": "⠳⠞⠋⠊⠞⠞⠫" }, { "input": "outfitter", "output": "⠳⠞⠋⠊⠞⠞⠻" }, { "input": "outfitters", "output": "⠳⠞⠋⠊⠞⠞⠻⠎" }, { "input": "outfitting", "output": "⠳⠞⠋⠊⠞⠞⠬" }, { "input": "outflank", "output": "⠳⠞⠋⠇â â â …" }, { "input": "outflanked", "output": "⠳⠞⠋⠇â â â …â «" }, { "input": "outflanking", "output": "⠳⠞⠋⠇â â â …â ¬" }, { "input": "outflanks", "output": "⠳⠞⠋⠇â â â …â Ž" }, { "input": "outfox", "output": "⠳⠞⠋⠕⠭" }, { "input": "outfoxed", "output": "⠳⠞⠋⠕⠭⠫" }, { "input": "outfoxes", "output": "⠳⠞⠋⠕⠭⠑⠎" }, { "input": "outfoxing", "output": "⠳⠞⠋⠕⠭⠬" }, { "input": "outgo", "output": "⠳⠞⠛⠕" }, { "input": "outgoes", "output": "⠳⠞⠛⠕⠑⠎" }, { "input": "outgoing", "output": "⠳⠞⠛⠕⠬" }, { "input": "outgrew", "output": "⠳⠞⠛⠗⠑⠺" }, { "input": "outgrow", "output": "⠳⠞⠛⠗⠪" }, { "input": "outgrowing", "output": "⠳⠞⠛⠗⠪⠬" }, { "input": "outgrown", "output": "⠳⠞⠛⠗⠪â " }, { "input": "outgrows", "output": "⠳⠞⠛⠗⠪⠎" }, { "input": "outgrowth", "output": "⠳⠞⠛⠗⠪⠹" }, { "input": "outgrowths", "output": "⠳⠞⠛⠗⠪⠹⠎" }, { "input": "outhouse", "output": "⠳⠞⠓⠳⠎⠑" }, { "input": "outhouses", "output": "⠳⠞⠓⠳⠎⠑⠎" }, { "input": "outing", "output": "⠳⠞⠬" }, { "input": "outings", "output": "⠳⠞⠬⠎" }, { "input": "outlaid", "output": "⠳⠞⠇â â Šâ ™" }, { "input": "outlandish", "output": "⠳⠞⠇⠯⠊⠩" }, { "input": "outlandishly", "output": "⠳⠞⠇⠯⠊⠩⠇⠽" }, { "input": "outlast", "output": "⠳⠞⠇â â Œ" }, { "input": "outlasted", "output": "⠳⠞⠇â â Œâ «" }, { "input": "outlasting", "output": "⠳⠞⠇â â Œâ ¬" }, { "input": "outlasts", "output": "⠳⠞⠇â â Œâ Ž" }, { "input": "outlaw", "output": "⠳⠞⠇â â º" }, { "input": "outlawed", "output": "⠳⠞⠇â â ºâ «" }, { "input": "outlawing", "output": "⠳⠞⠇â â ºâ ¬" }, { "input": "outlaws", "output": "⠳⠞⠇â â ºâ Ž" }, { "input": "outlay", "output": "⠳⠞⠇â â ½" }, { "input": "outlaying", "output": "⠳⠞⠇â â ½â ¬" }, { "input": "outlays", "output": "⠳⠞⠇â â ½â Ž" }, { "input": "outlet", "output": "⠳⠞⠇⠑⠞" }, { "input": "outlets", "output": "⠳⠞⠇⠑⠞⠎" }, { "input": "outline", "output": "⠳⠞⠇⠔⠑" }, { "input": "outlined", "output": "⠳⠞⠇⠔⠫" }, { "input": "outlines", "output": "⠳⠞⠇⠔⠑⠎" }, { "input": "outlining", "output": "⠳⠞⠇⠔⠬" }, { "input": "outlive", "output": "⠳⠞⠇⠊⠧⠑" }, { "input": "outlived", "output": "⠳⠞⠇⠊⠧⠫" }, { "input": "outlives", "output": "⠳⠞⠇⠊⠧⠑⠎" }, { "input": "outliving", "output": "⠳⠞⠇⠊⠧⠬" }, { "input": "outlook", "output": "⠳⠞⠇⠕⠕⠅" }, { "input": "outlooks", "output": "⠳⠞⠇⠕⠕⠅⠎" }, { "input": "outlying", "output": "⠳⠞⠇⠽⠬" }, { "input": "outmaneuver", "output": "⠳⠞â â â â ‘⠥⠧⠻" }, { "input": "outmaneuvered", "output": "⠳⠞â â â â ‘⠥⠧⠻⠫" }, { "input": "outmaneuvering", "output": "⠳⠞â â â â ‘⠥⠧⠻⠬" }, { "input": "outmaneuvers", "output": "⠳⠞â â â â ‘⠥⠧⠻⠎" }, { "input": "outmanoeuvre", "output": "⠳⠞â â â â •⠑⠥⠧⠗⠑" }, { "input": "outmanoeuvred", "output": "⠳⠞â â â â •⠑⠥⠧⠗⠫" }, { "input": "outmanoeuvres", "output": "⠳⠞â â â â •⠑⠥⠧⠗⠑⠎" }, { "input": "outmanoeuvring", "output": "⠳⠞â â â â •⠑⠥⠧⠗⠬" }, { "input": "outmoded", "output": "⠳⠞â â •⠙⠫" }, { "input": "outnumber", "output": "⠳⠞â â ¥â â ƒâ »" }, { "input": "outnumbered", "output": "⠳⠞â â ¥â â ƒâ »â «" }, { "input": "outnumbering", "output": "⠳⠞â â ¥â â ƒâ »â ¬" }, { "input": "outnumbers", "output": "⠳⠞â â ¥â â ƒâ »â Ž" }, { "input": "outpatient", "output": "⠳⠞â â â žâ Šâ ¢â ž" }, { "input": "outpatients", "output": "⠳⠞â â â žâ Šâ ¢â žâ Ž" }, { "input": "outperform", "output": "⠳⠞â â »â ¿â " }, { "input": "outperformed", "output": "⠳⠞â â »â ¿â â «" }, { "input": "outperforming", "output": "⠳⠞â â »â ¿â â ¬" }, { "input": "outperforms", "output": "⠳⠞â â »â ¿â â Ž" }, { "input": "outplacement", "output": "⠳⠞â â ‡â â ‰â ‘â °â ž" }, { "input": "outplay", "output": "⠳⠞â â ‡â â ½" }, { "input": "outplayed", "output": "⠳⠞â â ‡â â ½â «" }, { "input": "outplaying", "output": "⠳⠞â â ‡â â ½â ¬" }, { "input": "outplays", "output": "⠳⠞â â ‡â â ½â Ž" }, { "input": "outpost", "output": "⠳⠞â â •â Œ" }, { "input": "outposts", "output": "⠳⠞â â •⠌⠎" }, { "input": "outpouring", "output": "⠳⠞â â ³â —â ¬" }, { "input": "outpourings", "output": "⠳⠞â â ³â —⠬⠎" }, { "input": "output", "output": "⠳⠞â â ¥â ž" }, { "input": "outputs", "output": "⠳⠞â â ¥â žâ Ž" }, { "input": "outputted", "output": "⠳⠞â â ¥â žâ žâ «" }, { "input": "outputting", "output": "⠳⠞â â ¥â žâ žâ ¬" }, { "input": "outrage", "output": "⠳⠞⠗â â ›â ‘" }, { "input": "outraged", "output": "⠳⠞⠗â â ›â «" }, { "input": "outrageous", "output": "⠳⠞⠗â â ›â ‘⠳⠎" }, { "input": "outrageously", "output": "⠳⠞⠗â â ›â ‘⠳⠎⠇⠽" }, { "input": "outrages", "output": "⠳⠞⠗â â ›â ‘â Ž" }, { "input": "outraging", "output": "⠳⠞⠗â â ›â ¬" }, { "input": "outran", "output": "⠳⠞⠗â â " }, { "input": "outrank", "output": "⠳⠞⠗â â â …" }, { "input": "outranked", "output": "⠳⠞⠗â â â …â «" }, { "input": "outranking", "output": "⠳⠞⠗â â â …â ¬" }, { "input": "outranks", "output": "⠳⠞⠗â â â …â Ž" }, { "input": "outreach", "output": "⠳⠞⠗⠂⠡" }, { "input": "outreached", "output": "⠳⠞⠗⠂⠡⠫" }, { "input": "outreaches", "output": "⠳⠞⠗⠂⠡⠑⠎" }, { "input": "outreaching", "output": "⠳⠞⠗⠂⠡⠬" }, { "input": "outrider", "output": "⠳⠞⠗⠊⠙⠻" }, { "input": "outriders", "output": "⠳⠞⠗⠊⠙⠻⠎" }, { "input": "outrigger", "output": "⠳⠞⠗⠊⠶⠻" }, { "input": "outriggers", "output": "⠳⠞⠗⠊⠶⠻⠎" }, { "input": "outright", "output": "⠳⠞â â —" }, { "input": "outrun", "output": "⠳⠞⠗⠥â " }, { "input": "outrunning", "output": "⠳⠞⠗⠥â â â ¬" }, { "input": "outruns", "output": "⠳⠞⠗⠥â â Ž" }, { "input": "outré", "output": "⠳⠞⠗⠠⠘⠻â â ˜â ‰" }, { "input": "outs", "output": "⠳⠞⠎" }, { "input": "outsell", "output": "⠳⠞⠎⠑⠇⠇" }, { "input": "outselling", "output": "⠳⠞⠎⠑⠇⠇⠬" }, { "input": "outsells", "output": "⠳⠞⠎⠑⠇⠇⠎" }, { "input": "outset", "output": "⠳⠞⠎⠑⠞" }, { "input": "outsets", "output": "⠳⠞⠎⠑⠞⠎" }, { "input": "outshine", "output": "⠳⠞⠩⠔⠑" }, { "input": "outshined", "output": "⠳⠞⠩⠔⠫" }, { "input": "outshines", "output": "⠳⠞⠩⠔⠑⠎" }, { "input": "outshining", "output": "⠳⠞⠩⠔⠬" }, { "input": "outshone", "output": "⠳⠞⠩â â •" }, { "input": "outside", "output": "⠳⠞⠎⠊⠙⠑" }, { "input": "outsider", "output": "⠳⠞⠎⠊⠙⠻" }, { "input": "outsiders", "output": "⠳⠞⠎⠊⠙⠻⠎" }, { "input": "outsides", "output": "⠳⠞⠎⠊⠙⠑⠎" }, { "input": "outsize", "output": "⠳⠞⠎⠊⠵⠑" }, { "input": "outsized", "output": "⠳⠞⠎⠊⠵⠫" }, { "input": "outsizes", "output": "⠳⠞⠎⠊⠵⠑⠎" }, { "input": "outskirt", "output": "⠳⠞⠎⠅⠊⠗⠞" }, { "input": "outskirts", "output": "⠳⠞⠎⠅⠊⠗⠞⠎" }, { "input": "outsmart", "output": "⠳⠞⠎â â œâ ž" }, { "input": "outsmarted", "output": "⠳⠞⠎â â œâ žâ «" }, { "input": "outsmarting", "output": "⠳⠞⠎â â œâ žâ ¬" }, { "input": "outsmarts", "output": "⠳⠞⠎â â œâ žâ Ž" }, { "input": "outsold", "output": "⠳⠞⠎⠕⠇⠙" }, { "input": "outsource", "output": "⠳⠞⠎⠳⠗⠉⠑" }, { "input": "outsourced", "output": "⠳⠞⠎⠳⠗⠉⠫" }, { "input": "outsources", "output": "⠳⠞⠎⠳⠗⠉⠑⠎" }, { "input": "outsourcing", "output": "⠳⠞⠎⠳⠗⠉⠬" }, { "input": "outspoken", "output": "⠳⠞⠎â â •â …â ¢" }, { "input": "outspokenly", "output": "⠳⠞⠎â â •⠅⠢⠇⠽" }, { "input": "outspokenness", "output": "⠳⠞⠎â â •⠅⠢⠰⠎" }, { "input": "outspread", "output": "⠳⠞⠎â â —â ‚â ™" }, { "input": "outspreading", "output": "⠳⠞⠎â â —⠂⠙⠬" }, { "input": "outspreads", "output": "⠳⠞⠎â â —⠂⠙⠎" }, { "input": "outstanding", "output": "⠳⠞⠌⠯⠬" }, { "input": "outstandingly", "output": "⠳⠞⠌⠯⠬⠇⠽" }, { "input": "outstation", "output": "⠳⠞⠌â â °â " }, { "input": "outstations", "output": "⠳⠞⠌â â °â â Ž" }, { "input": "outstay", "output": "⠳⠞⠌â â ½" }, { "input": "outstayed", "output": "⠳⠞⠌â â ½â «" }, { "input": "outstaying", "output": "⠳⠞⠌â â ½â ¬" }, { "input": "outstays", "output": "⠳⠞⠌â â ½â Ž" }, { "input": "outstretch", "output": "⠳⠞⠌⠗⠑⠞⠡" }, { "input": "outstretched", "output": "⠳⠞⠌⠗⠑⠞⠡⠫" }, { "input": "outstretches", "output": "⠳⠞⠌⠗⠑⠞⠡⠑⠎" }, { "input": "outstretching", "output": "⠳⠞⠌⠗⠑⠞⠡⠬" }, { "input": "outstrip", "output": "⠳⠞⠌⠗⠊â " }, { "input": "outstripped", "output": "⠳⠞⠌⠗⠊â â â «" }, { "input": "outstripping", "output": "⠳⠞⠌⠗⠊â â â ¬" }, { "input": "outstrips", "output": "⠳⠞⠌⠗⠊â â Ž" }, { "input": "outstript", "output": "⠳⠞⠌⠗⠊â â ž" }, { "input": "outtake", "output": "⠳⠞⠞â â …â ‘" }, { "input": "outtakes", "output": "⠳⠞⠞â â …â ‘â Ž" }, { "input": "outvote", "output": "⠳⠞⠧⠕⠞⠑" }, { "input": "outvoted", "output": "⠳⠞⠧⠕⠞⠫" }, { "input": "outvotes", "output": "⠳⠞⠧⠕⠞⠑⠎" }, { "input": "outvoting", "output": "⠳⠞⠧⠕⠞⠬" }, { "input": "outward", "output": "⠳⠞⠺⠜⠙" }, { "input": "outwardly", "output": "⠳⠞⠺⠜⠙⠇⠽" }, { "input": "outwards", "output": "⠳⠞⠺⠜⠙⠎" }, { "input": "outwear", "output": "⠳⠞⠺⠑⠜" }, { "input": "outwearing", "output": "⠳⠞⠺⠑⠜⠬" }, { "input": "outwears", "output": "⠳⠞⠺⠑⠜⠎" }, { "input": "outweigh", "output": "⠳⠞⠺⠑⠊⠣" }, { "input": "outweighed", "output": "⠳⠞⠺⠑⠊⠣⠫" }, { "input": "outweighing", "output": "⠳⠞⠺⠑⠊⠣⠬" }, { "input": "outweighs", "output": "⠳⠞⠺⠑⠊⠣⠎" }, { "input": "outwit", "output": "⠳⠞⠺⠊⠞" }, { "input": "outwits", "output": "⠳⠞⠺⠊⠞⠎" }, { "input": "outwitted", "output": "⠳⠞⠺⠊⠞⠞⠫" }, { "input": "outwitting", "output": "⠳⠞⠺⠊⠞⠞⠬" }, { "input": "outwore", "output": "⠳⠞⠺⠕⠗⠑" }, { "input": "outworn", "output": "⠳⠞⠺⠕⠗â " }, { "input": "ova", "output": "â •â §â " }, { "input": "oval", "output": "â •â §â â ‡" }, { "input": "ovals", "output": "â •â §â â ‡â Ž" }, { "input": "ovarian", "output": "⠕⠧⠜⠊â â " }, { "input": "ovaries", "output": "⠕⠧⠜⠊⠑⠎" }, { "input": "ovary", "output": "⠕⠧⠜⠽" }, { "input": "ovation", "output": "â •â §â â °â " }, { "input": "ovations", "output": "â •â §â â °â â Ž" }, { "input": "oven", "output": "â •â §â ¢" }, { "input": "ovens", "output": "⠕⠧⠢⠎" }, { "input": "over", "output": "â •â §â »" }, { "input": "overabundance", "output": "â •â §â »â â ƒâ ¥â â ™â ¨â ‘" }, { "input": "overabundant", "output": "â •â §â »â â ƒâ ¥â â ™â â â ž" }, { "input": "overachieve", "output": "â •â §â »â â ¡â Šâ ‘â §â ‘" }, { "input": "overachieved", "output": "â •â §â »â â ¡â Šâ ‘â §â «" }, { "input": "overachiever", "output": "â •â §â »â â ¡â Šâ ‘â §â »" }, { "input": "overachievers", "output": "â •â §â »â â ¡â Šâ ‘⠧⠻⠎" }, { "input": "overachieves", "output": "â •â §â »â â ¡â Šâ ‘â §â ‘â Ž" }, { "input": "overachieving", "output": "â •â §â »â â ¡â Šâ ‘â §â ¬" }, { "input": "overact", "output": "â •â §â »â â ‰â ž" }, { "input": "overacted", "output": "â •â §â »â â ‰â žâ «" }, { "input": "overacting", "output": "â •â §â »â â ‰â žâ ¬" }, { "input": "overactive", "output": "â •â §â »â â ‰â žâ Šâ §â ‘" }, { "input": "overacts", "output": "â •â §â »â â ‰â žâ Ž" }, { "input": "overage", "output": "â •â §â »â â ›â ‘" }, { "input": "overages", "output": "â •â §â »â â ›â ‘â Ž" }, { "input": "overall", "output": "â •â §â »â â ‡â ‡" }, { "input": "overalls", "output": "â •â §â »â â ‡â ‡â Ž" }, { "input": "overambitious", "output": "â •â §â »â â â ƒâ Šâ žâ Šâ ³â Ž" }, { "input": "overanxious", "output": "â •â §â »â â â ­â Šâ ³â Ž" }, { "input": "overate", "output": "â •â §â »â â žâ ‘" }, { "input": "overawe", "output": "â •â §â »â â ºâ ‘" }, { "input": "overawed", "output": "â •â §â »â â ºâ «" }, { "input": "overawes", "output": "â •â §â »â â ºâ ‘â Ž" }, { "input": "overawing", "output": "â •â §â »â â ºâ ¬" }, { "input": "overbalance", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘" }, { "input": "overbalanced", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘â ™" }, { "input": "overbalances", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘â Ž" }, { "input": "overbalancing", "output": "⠕⠧⠻⠃â â ‡â â â ‰â ¬" }, { "input": "overbear", "output": "⠕⠧⠻⠃⠑⠜" }, { "input": "overbearing", "output": "⠕⠧⠻⠃⠑⠜⠬" }, { "input": "overbears", "output": "⠕⠧⠻⠃⠑⠜⠎" }, { "input": "overbite", "output": "⠕⠧⠻⠃⠊⠞⠑" }, { "input": "overbites", "output": "⠕⠧⠻⠃⠊⠞⠑⠎" }, { "input": "overblown", "output": "⠕⠧⠻⠃⠇⠪â " }, { "input": "overboard", "output": "⠕⠧⠻⠃⠕⠜⠙" }, { "input": "overbook", "output": "⠕⠧⠻⠃⠕⠕⠅" }, { "input": "overbooked", "output": "⠕⠧⠻⠃⠕⠕⠅⠫" }, { "input": "overbooking", "output": "⠕⠧⠻⠃⠕⠕⠅⠬" }, { "input": "overbooks", "output": "⠕⠧⠻⠃⠕⠕⠅⠎" }, { "input": "overbore", "output": "⠕⠧⠻⠃⠕⠗⠑" }, { "input": "overborne", "output": "⠕⠧⠻⠃⠕⠗â â ‘" }, { "input": "overburden", "output": "⠕⠧⠻⠃⠥⠗⠙⠢" }, { "input": "overburdened", "output": "⠕⠧⠻⠃⠥⠗⠙⠢⠫" }, { "input": "overburdening", "output": "⠕⠧⠻⠃⠥⠗⠙⠢⠬" }, { "input": "overburdens", "output": "⠕⠧⠻⠃⠥⠗⠙⠢⠎" }, { "input": "overcame", "output": "⠕⠧⠻⠉â â â ‘" }, { "input": "overcast", "output": "⠕⠧⠻⠉â â Œ" }, { "input": "overcasting", "output": "⠕⠧⠻⠉â â Œâ ¬" }, { "input": "overcasts", "output": "⠕⠧⠻⠉â â Œâ Ž" }, { "input": "overcautious", "output": "⠕⠧⠻⠉â â ¥â žâ Šâ ³â Ž" }, { "input": "overcharge", "output": "⠕⠧⠻⠡⠜⠛⠑" }, { "input": "overcharged", "output": "⠕⠧⠻⠡⠜⠛⠫" }, { "input": "overcharges", "output": "⠕⠧⠻⠡⠜⠛⠑⠎" }, { "input": "overcharging", "output": "⠕⠧⠻⠡⠜⠛⠬" }, { "input": "overcoat", "output": "⠕⠧⠻⠉⠕â â ž" }, { "input": "overcoats", "output": "⠕⠧⠻⠉⠕â â žâ Ž" }, { "input": "overcome", "output": "⠕⠧⠻⠉⠕â â ‘" }, { "input": "overcomes", "output": "⠕⠧⠻⠉⠕â â ‘â Ž" }, { "input": "overcoming", "output": "⠕⠧⠻⠉⠕â â ¬" }, { "input": "overcompensate", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ ‘" }, { "input": "overcompensated", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ «" }, { "input": "overcompensates", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ ‘â Ž" }, { "input": "overcompensating", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ ¬" }, { "input": "overcompensation", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â °â " }, { "input": "overconfident", "output": "⠕⠧⠻⠉⠕â â ‹â Šâ ™â ¢â ž" }, { "input": "overcook", "output": "⠕⠧⠻⠉⠕⠕⠅" }, { "input": "overcooked", "output": "⠕⠧⠻⠉⠕⠕⠅⠫" }, { "input": "overcooking", "output": "⠕⠧⠻⠉⠕⠕⠅⠬" }, { "input": "overcooks", "output": "⠕⠧⠻⠉⠕⠕⠅⠎" }, { "input": "overcrowd", "output": "⠕⠧⠻⠉⠗⠪⠙" }, { "input": "overcrowded", "output": "⠕⠧⠻⠉⠗⠪⠙⠫" }, { "input": "overcrowding", "output": "⠕⠧⠻⠉⠗⠪⠙⠬" }, { "input": "overcrowds", "output": "⠕⠧⠻⠉⠗⠪⠙⠎" }, { "input": "overdid", "output": "⠕⠧⠻⠙⠊⠙" }, { "input": "overdo", "output": "⠕⠧⠻⠙⠕" }, { "input": "overdoes", "output": "⠕⠧⠻⠙⠕⠑⠎" }, { "input": "overdoing", "output": "⠕⠧⠻⠙⠕⠬" }, { "input": "overdone", "output": "⠕⠧⠻⠙â â •" }, { "input": "overdose", "output": "⠕⠧⠻⠙⠕⠎⠑" }, { "input": "overdosed", "output": "⠕⠧⠻⠙⠕⠎⠫" }, { "input": "overdoses", "output": "⠕⠧⠻⠙⠕⠎⠑⠎" }, { "input": "overdosing", "output": "⠕⠧⠻⠙⠕⠎⠬" }, { "input": "overdraft", "output": "⠕⠧⠻⠙⠗â â ‹â ž" }, { "input": "overdrafts", "output": "⠕⠧⠻⠙⠗â â ‹â žâ Ž" }, { "input": "overdraw", "output": "⠕⠧⠻⠙⠗â â º" }, { "input": "overdrawing", "output": "⠕⠧⠻⠙⠗â â ºâ ¬" }, { "input": "overdrawn", "output": "⠕⠧⠻⠙⠗â â ºâ " }, { "input": "overdraws", "output": "⠕⠧⠻⠙⠗â â ºâ Ž" }, { "input": "overdress", "output": "⠕⠧⠻⠙⠗⠑⠎⠎" }, { "input": "overdressed", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠫" }, { "input": "overdresses", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠑⠎" }, { "input": "overdressing", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠬" }, { "input": "overdrew", "output": "⠕⠧⠻⠙⠗⠑⠺" }, { "input": "overdrive", "output": "⠕⠧⠻⠙⠗⠊⠧⠑" }, { "input": "overdue", "output": "⠕⠧⠻⠙⠥⠑" }, { "input": "overeager", "output": "⠕⠧⠻⠂⠛⠻" }, { "input": "overeat", "output": "⠕⠧⠻⠂⠞" }, { "input": "overeaten", "output": "⠕⠧⠻⠂⠞⠢" }, { "input": "overeating", "output": "⠕⠧⠻⠂⠞⠬" }, { "input": "overeats", "output": "⠕⠧⠻⠂⠞⠎" }, { "input": "overemphasize", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ ‘" }, { "input": "overemphasized", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ «" }, { "input": "overemphasizes", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ ‘â Ž" }, { "input": "overemphasizing", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ ¬" }, { "input": "overenthusiastic", "output": "⠕⠧⠻⠢⠹⠥⠎⠊â â Œâ Šâ ‰" }, { "input": "overestimate", "output": "⠕⠧⠻⠑⠌⠊â â â žâ ‘" }, { "input": "overestimated", "output": "⠕⠧⠻⠑⠌⠊â â â žâ «" }, { "input": "overestimates", "output": "⠕⠧⠻⠑⠌⠊â â â žâ ‘â Ž" }, { "input": "overestimating", "output": "⠕⠧⠻⠑⠌⠊â â â žâ ¬" }, { "input": "overexpose", "output": "⠕⠧⠻⠑⠭â â •â Žâ ‘" }, { "input": "overexposed", "output": "⠕⠧⠻⠑⠭â â •â Žâ «" }, { "input": "overexposes", "output": "⠕⠧⠻⠑⠭â â •â Žâ ‘â Ž" }, { "input": "overexposing", "output": "⠕⠧⠻⠑⠭â â •â Žâ ¬" }, { "input": "overexposure", "output": "⠕⠧⠻⠑⠭â â •⠎⠥⠗⠑" }, { "input": "overextend", "output": "⠕⠧⠻⠑⠭⠞⠢⠙" }, { "input": "overextended", "output": "⠕⠧⠻⠑⠭⠞⠢⠙⠫" }, { "input": "overextending", "output": "⠕⠧⠻⠑⠭⠞⠢⠙⠬" }, { "input": "overextends", "output": "⠕⠧⠻⠑⠭⠞⠢⠙⠎" }, { "input": "overflow", "output": "⠕⠧⠻⠋⠇⠪" }, { "input": "overflowed", "output": "⠕⠧⠻⠋⠇⠪⠫" }, { "input": "overflowing", "output": "⠕⠧⠻⠋⠇⠪⠬" }, { "input": "overflows", "output": "⠕⠧⠻⠋⠇⠪⠎" }, { "input": "overfull", "output": "⠕⠧⠻⠋⠥⠇⠇" }, { "input": "overgenerous", "output": "⠕⠧⠻⠛⠢⠻⠳⠎" }, { "input": "overgrew", "output": "⠕⠧⠻⠛⠗⠑⠺" }, { "input": "overgrow", "output": "⠕⠧⠻⠛⠗⠪" }, { "input": "overgrowing", "output": "⠕⠧⠻⠛⠗⠪⠬" }, { "input": "overgrown", "output": "⠕⠧⠻⠛⠗⠪â " }, { "input": "overgrows", "output": "⠕⠧⠻⠛⠗⠪⠎" }, { "input": "overgrowth", "output": "⠕⠧⠻⠛⠗⠪⠹" }, { "input": "overhand", "output": "⠕⠧⠻⠓⠯" }, { "input": "overhands", "output": "⠕⠧⠻⠓⠯⠎" }, { "input": "overhang", "output": "⠕⠧⠻⠓â â â ›" }, { "input": "overhanging", "output": "⠕⠧⠻⠓â â â ›â ¬" }, { "input": "overhangs", "output": "⠕⠧⠻⠓â â â ›â Ž" }, { "input": "overhaul", "output": "⠕⠧⠻⠓â â ¥â ‡" }, { "input": "overhauled", "output": "⠕⠧⠻⠓â â ¥â ‡â «" }, { "input": "overhauling", "output": "⠕⠧⠻⠓â â ¥â ‡â ¬" }, { "input": "overhauls", "output": "⠕⠧⠻⠓â â ¥â ‡â Ž" }, { "input": "overhead", "output": "⠕⠧⠻⠓⠂⠙" }, { "input": "overheads", "output": "⠕⠧⠻⠓⠂⠙⠎" }, { "input": "overhear", "output": "⠕⠧⠻⠓⠑⠜" }, { "input": "overheard", "output": "⠕⠧⠻⠓⠑⠜⠙" }, { "input": "overhearing", "output": "⠕⠧⠻⠓⠑⠜⠬" }, { "input": "overhears", "output": "⠕⠧⠻⠓⠑⠜⠎" }, { "input": "overheat", "output": "⠕⠧⠻⠓⠂⠞" }, { "input": "overheated", "output": "⠕⠧⠻⠓⠂⠞⠫" }, { "input": "overheating", "output": "⠕⠧⠻⠓⠂⠞⠬" }, { "input": "overheats", "output": "⠕⠧⠻⠓⠂⠞⠎" }, { "input": "overhung", "output": "⠕⠧⠻⠓⠥â â ›" }, { "input": "overindulge", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠑" }, { "input": "overindulged", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠫" }, { "input": "overindulgence", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠰⠑" }, { "input": "overindulges", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠑⠎" }, { "input": "overindulging", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠬" }, { "input": "overjoy", "output": "⠕⠧⠻⠚⠕⠽" }, { "input": "overjoyed", "output": "⠕⠧⠻⠚⠕⠽⠫" }, { "input": "overjoying", "output": "⠕⠧⠻⠚⠕⠽⠬" }, { "input": "overjoys", "output": "⠕⠧⠻⠚⠕⠽⠎" }, { "input": "overkill", "output": "⠕⠧⠻⠅⠊⠇⠇" }, { "input": "overlaid", "output": "⠕⠧⠻⠇â â Šâ ™" }, { "input": "overlain", "output": "⠕⠧⠻⠇â â ”" }, { "input": "overland", "output": "⠕⠧⠻⠇⠯" }, { "input": "overlap", "output": "⠕⠧⠻⠇â â " }, { "input": "overlapped", "output": "⠕⠧⠻⠇â â â â «" }, { "input": "overlapping", "output": "⠕⠧⠻⠇â â â â ¬" }, { "input": "overlaps", "output": "⠕⠧⠻⠇â â â Ž" }, { "input": "overlay", "output": "⠕⠧⠻⠇â â ½" }, { "input": "overlaying", "output": "⠕⠧⠻⠇â â ½â ¬" }, { "input": "overlays", "output": "⠕⠧⠻⠇â â ½â Ž" }, { "input": "overlie", "output": "⠕⠧⠻⠇⠊⠑" }, { "input": "overlies", "output": "⠕⠧⠻⠇⠊⠑⠎" }, { "input": "overload", "output": "⠕⠧⠻⠇⠕â â ™" }, { "input": "overloaded", "output": "⠕⠧⠻⠇⠕â â ™â «" }, { "input": "overloading", "output": "⠕⠧⠻⠇⠕â â ™â ¬" }, { "input": "overloads", "output": "⠕⠧⠻⠇⠕â â ™â Ž" }, { "input": "overlong", "output": "⠕⠧⠻⠇⠰⠛" }, { "input": "overlook", "output": "⠕⠧⠻⠇⠕⠕⠅" }, { "input": "overlooked", "output": "⠕⠧⠻⠇⠕⠕⠅⠫" }, { "input": "overlooking", "output": "⠕⠧⠻⠇⠕⠕⠅⠬" }, { "input": "overlooks", "output": "⠕⠧⠻⠇⠕⠕⠅⠎" }, { "input": "overlord", "output": "â •â §â »â â ‡" }, { "input": "overlords", "output": "â •â §â »â â ‡â Ž" }, { "input": "overly", "output": "⠕⠧⠻⠇⠽" }, { "input": "overlying", "output": "⠕⠧⠻⠇⠽⠬" }, { "input": "overmuch", "output": "â •â §â »â â ¡" }, { "input": "overmuches", "output": "â •â §â »â â ¥â ¡â ‘â Ž" }, { "input": "overnight", "output": "â •â §â »â â Šâ £â ž" }, { "input": "overnights", "output": "â •â §â »â â Šâ £â žâ Ž" }, { "input": "overpaid", "output": "â •â §â »â â ™" }, { "input": "overpass", "output": "â •â §â »â â â Žâ Ž" }, { "input": "overpasses", "output": "â •â §â »â â â Žâ Žâ ‘â Ž" }, { "input": "overpay", "output": "â •â §â »â â â ½" }, { "input": "overpaying", "output": "â •â §â »â â â ½â ¬" }, { "input": "overpays", "output": "â •â §â »â â â ½â Ž" }, { "input": "overplay", "output": "â •â §â »â â ‡â â ½" }, { "input": "overplayed", "output": "â •â §â »â â ‡â â ½â «" }, { "input": "overplaying", "output": "â •â §â »â â ‡â â ½â ¬" }, { "input": "overplays", "output": "â •â §â »â â ‡â â ½â Ž" }, { "input": "overpopulate", "output": "â •â §â »â â •â â ¥â ‡â â žâ ‘" }, { "input": "overpopulated", "output": "â •â §â »â â •â â ¥â ‡â â žâ «" }, { "input": "overpopulates", "output": "â •â §â »â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "overpopulating", "output": "â •â §â »â â •â â ¥â ‡â â žâ ¬" }, { "input": "overpopulation", "output": "â •â §â »â â •â â ¥â ‡â â °â " }, { "input": "overpower", "output": "â •â §â »â â ªâ »" }, { "input": "overpowered", "output": "â •â §â »â â ªâ »â «" }, { "input": "overpowering", "output": "â •â §â »â â ªâ »â ¬" }, { "input": "overpowers", "output": "â •â §â »â â ªâ »â Ž" }, { "input": "overprice", "output": "â •â §â »â â —⠊⠉⠑" }, { "input": "overpriced", "output": "â •â §â »â â —⠊⠉⠫" }, { "input": "overprices", "output": "â •â §â »â â —⠊⠉⠑⠎" }, { "input": "overpricing", "output": "â •â §â »â â —⠊⠉⠬" }, { "input": "overprint", "output": "â •â §â »â â —⠔⠞" }, { "input": "overprinted", "output": "â •â §â »â â —⠔⠞⠫" }, { "input": "overprinting", "output": "â •â §â »â â —⠔⠞⠬" }, { "input": "overprints", "output": "â •â §â »â â —⠔⠞⠎" }, { "input": "overproduce", "output": "â •â §â »â â —⠕⠙⠥⠉⠑" }, { "input": "overproduced", "output": "â •â §â »â â —⠕⠙⠥⠉⠫" }, { "input": "overproduces", "output": "â •â §â »â â —⠕⠙⠥⠉⠑⠎" }, { "input": "overproducing", "output": "â •â §â »â â —⠕⠙⠥⠉⠬" }, { "input": "overproduction", "output": "â •â §â »â â —⠕⠙⠥⠉⠰â " }, { "input": "overprotective", "output": "â •â §â »â â —⠕⠞⠑⠉⠞⠊⠧⠑" }, { "input": "overqualified", "output": "⠕⠧⠻⠟⠥â â ‡â Šâ ‹â Šâ «" }, { "input": "overran", "output": "⠕⠧⠻⠗â â " }, { "input": "overrate", "output": "⠕⠧⠻⠗â â žâ ‘" }, { "input": "overrated", "output": "⠕⠧⠻⠗â â žâ «" }, { "input": "overrates", "output": "⠕⠧⠻⠗â â žâ ‘â Ž" }, { "input": "overrating", "output": "⠕⠧⠻⠗â â žâ ¬" }, { "input": "overreach", "output": "⠕⠧⠻⠗⠂⠡" }, { "input": "overreached", "output": "⠕⠧⠻⠗⠂⠡⠫" }, { "input": "overreaches", "output": "⠕⠧⠻⠗⠂⠡⠑⠎" }, { "input": "overreaching", "output": "⠕⠧⠻⠗⠂⠡⠬" }, { "input": "overreact", "output": "⠕⠧⠻⠗⠑â â ‰â ž" }, { "input": "overreacted", "output": "⠕⠧⠻⠗⠑â â ‰â žâ «" }, { "input": "overreacting", "output": "⠕⠧⠻⠗⠑â â ‰â žâ ¬" }, { "input": "overreaction", "output": "⠕⠧⠻⠗⠑â â ‰â °â " }, { "input": "overreactions", "output": "⠕⠧⠻⠗⠑â â ‰â °â â Ž" }, { "input": "overreacts", "output": "⠕⠧⠻⠗⠑â â ‰â žâ Ž" }, { "input": "overridden", "output": "⠕⠧⠻⠗⠊⠙⠙⠢" }, { "input": "override", "output": "⠕⠧⠻⠗⠊⠙⠑" }, { "input": "overrides", "output": "⠕⠧⠻⠗⠊⠙⠑⠎" }, { "input": "overriding", "output": "⠕⠧⠻⠗⠊⠙⠬" }, { "input": "overripe", "output": "⠕⠧⠻⠗⠊â â ‘" }, { "input": "overrode", "output": "⠕⠧⠻⠗⠕⠙⠑" }, { "input": "overrule", "output": "⠕⠧⠻⠗⠥⠇⠑" }, { "input": "overruled", "output": "⠕⠧⠻⠗⠥⠇⠫" }, { "input": "overrules", "output": "⠕⠧⠻⠗⠥⠇⠑⠎" }, { "input": "overruling", "output": "⠕⠧⠻⠗⠥⠇⠬" }, { "input": "overrun", "output": "⠕⠧⠻⠗⠥â " }, { "input": "overrunning", "output": "⠕⠧⠻⠗⠥â â â ¬" }, { "input": "overruns", "output": "⠕⠧⠻⠗⠥â â Ž" }, { "input": "overs", "output": "⠕⠧⠻⠎" }, { "input": "oversampling", "output": "⠕⠧⠻⠎â â â â ‡â ¬" }, { "input": "oversaw", "output": "⠕⠧⠻⠎â â º" }, { "input": "overseas", "output": "⠕⠧⠻⠎⠂⠎" }, { "input": "oversee", "output": "⠕⠧⠻⠎⠑⠑" }, { "input": "overseeing", "output": "⠕⠧⠻⠎⠑⠑⠬" }, { "input": "overseen", "output": "⠕⠧⠻⠎⠑⠢" }, { "input": "overseer", "output": "⠕⠧⠻⠎⠑⠻" }, { "input": "overseers", "output": "⠕⠧⠻⠎⠑⠻⠎" }, { "input": "oversees", "output": "⠕⠧⠻⠎⠑⠑⠎" }, { "input": "oversell", "output": "⠕⠧⠻⠎⠑⠇⠇" }, { "input": "overselling", "output": "⠕⠧⠻⠎⠑⠇⠇⠬" }, { "input": "oversells", "output": "⠕⠧⠻⠎⠑⠇⠇⠎" }, { "input": "oversensitive", "output": "⠕⠧⠻⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "oversexed", "output": "⠕⠧⠻⠎⠑⠭⠫" }, { "input": "overshadow", "output": "⠕⠧⠻⠩â â ™â ª" }, { "input": "overshadowed", "output": "⠕⠧⠻⠩â â ™â ªâ «" }, { "input": "overshadowing", "output": "⠕⠧⠻⠩â â ™â ªâ ¬" }, { "input": "overshadows", "output": "⠕⠧⠻⠩â â ™â ªâ Ž" }, { "input": "overshoe", "output": "⠕⠧⠻⠩⠕⠑" }, { "input": "overshoes", "output": "⠕⠧⠻⠩⠕⠑⠎" }, { "input": "overshoot", "output": "⠕⠧⠻⠩⠕⠕⠞" }, { "input": "overshooting", "output": "⠕⠧⠻⠩⠕⠕⠞⠬" }, { "input": "overshoots", "output": "⠕⠧⠻⠩⠕⠕⠞⠎" }, { "input": "overshot", "output": "⠕⠧⠻⠩⠕⠞" }, { "input": "oversight", "output": "⠕⠧⠻⠎⠊⠣⠞" }, { "input": "oversights", "output": "⠕⠧⠻⠎⠊⠣⠞⠎" }, { "input": "oversimplification", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "oversimplifications", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "oversimplified", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ «" }, { "input": "oversimplifies", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "oversimplify", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â ½" }, { "input": "oversimplifying", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â ½â ¬" }, { "input": "oversize", "output": "⠕⠧⠻⠎⠊⠵⠑" }, { "input": "oversized", "output": "⠕⠧⠻⠎⠊⠵⠫" }, { "input": "oversleep", "output": "⠕⠧⠻⠎⠇⠑⠑â " }, { "input": "oversleeping", "output": "⠕⠧⠻⠎⠇⠑⠑â â ¬" }, { "input": "oversleeps", "output": "⠕⠧⠻⠎⠇⠑⠑â â Ž" }, { "input": "overslept", "output": "⠕⠧⠻⠎⠇⠑â â ž" }, { "input": "oversold", "output": "⠕⠧⠻⠎⠕⠇⠙" }, { "input": "overspecialize", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ ‘" }, { "input": "overspecialized", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ «" }, { "input": "overspecializes", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "overspecializing", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ ¬" }, { "input": "overspend", "output": "⠕⠧⠻⠎â â ¢â ™" }, { "input": "overspending", "output": "⠕⠧⠻⠎â â ¢â ™â ¬" }, { "input": "overspends", "output": "⠕⠧⠻⠎â â ¢â ™â Ž" }, { "input": "overspent", "output": "⠕⠧⠻⠎â â ¢â ž" }, { "input": "overspill", "output": "⠕⠧⠻⠎â â Šâ ‡â ‡" }, { "input": "overspread", "output": "⠕⠧⠻⠎â â —â ‚â ™" }, { "input": "overspreading", "output": "⠕⠧⠻⠎â â —⠂⠙⠬" }, { "input": "overspreads", "output": "⠕⠧⠻⠎â â —⠂⠙⠎" }, { "input": "overstate", "output": "⠕⠧⠻⠌â â žâ ‘" }, { "input": "overstated", "output": "⠕⠧⠻⠌â â žâ «" }, { "input": "overstatement", "output": "⠕⠧⠻⠌â â žâ ‘â °â ž" }, { "input": "overstatements", "output": "⠕⠧⠻⠌â â žâ ‘â °â žâ Ž" }, { "input": "overstates", "output": "⠕⠧⠻⠌â â žâ ‘â Ž" }, { "input": "overstating", "output": "⠕⠧⠻⠌â â žâ ¬" }, { "input": "overstay", "output": "⠕⠧⠻⠌â â ½" }, { "input": "overstayed", "output": "⠕⠧⠻⠌â â ½â «" }, { "input": "overstaying", "output": "⠕⠧⠻⠌â â ½â ¬" }, { "input": "overstays", "output": "⠕⠧⠻⠌â â ½â Ž" }, { "input": "overstep", "output": "⠕⠧⠻⠌⠑â " }, { "input": "overstepped", "output": "⠕⠧⠻⠌⠑â â â «" }, { "input": "overstepping", "output": "⠕⠧⠻⠌⠑â â â ¬" }, { "input": "oversteps", "output": "⠕⠧⠻⠌⠑â â Ž" }, { "input": "overstock", "output": "⠕⠧⠻⠌⠕⠉⠅" }, { "input": "overstocked", "output": "⠕⠧⠻⠌⠕⠉⠅⠫" }, { "input": "overstocking", "output": "⠕⠧⠻⠌⠕⠉⠅⠬" }, { "input": "overstocks", "output": "⠕⠧⠻⠌⠕⠉⠅⠎" }, { "input": "overstuffed", "output": "⠕⠧⠻⠌⠥⠖⠫" }, { "input": "oversupplied", "output": "⠕⠧⠻⠎⠥â â â ‡â Šâ «" }, { "input": "oversupplies", "output": "⠕⠧⠻⠎⠥â â â ‡â Šâ ‘â Ž" }, { "input": "oversupply", "output": "⠕⠧⠻⠎⠥â â â ‡â ½" }, { "input": "oversupplying", "output": "⠕⠧⠻⠎⠥â â â ‡â ½â ¬" }, { "input": "overt", "output": "⠕⠧⠻⠞" }, { "input": "overtake", "output": "⠕⠧⠻⠞â â …â ‘" }, { "input": "overtaken", "output": "⠕⠧⠻⠞â â …â ¢" }, { "input": "overtakes", "output": "⠕⠧⠻⠞â â …â ‘â Ž" }, { "input": "overtaking", "output": "⠕⠧⠻⠞â â …â ¬" }, { "input": "overtax", "output": "⠕⠧⠻⠞â â ­" }, { "input": "overtaxed", "output": "⠕⠧⠻⠞â â ­â «" }, { "input": "overtaxes", "output": "⠕⠧⠻⠞â â ­â ‘â Ž" }, { "input": "overtaxing", "output": "⠕⠧⠻⠞â â ­â ¬" }, { "input": "overthrew", "output": "⠕⠧⠻⠹⠗⠑⠺" }, { "input": "overthrow", "output": "⠕⠧⠻⠹⠗⠪" }, { "input": "overthrowing", "output": "⠕⠧⠻⠹⠗⠪⠬" }, { "input": "overthrown", "output": "⠕⠧⠻⠹⠗⠪â " }, { "input": "overthrows", "output": "⠕⠧⠻⠹⠗⠪⠎" }, { "input": "overtime", "output": "â •â §â »â â ž" }, { "input": "overtimes", "output": "â •â §â »â â žâ Ž" }, { "input": "overtly", "output": "⠕⠧⠻⠞⠇⠽" }, { "input": "overtone", "output": "⠕⠧⠻⠞â â •" }, { "input": "overtones", "output": "⠕⠧⠻⠞â â •â Ž" }, { "input": "overtook", "output": "⠕⠧⠻⠞⠕⠕⠅" }, { "input": "overture", "output": "⠕⠧⠻⠞⠥⠗⠑" }, { "input": "overtures", "output": "⠕⠧⠻⠞⠥⠗⠑⠎" }, { "input": "overturn", "output": "⠕⠧⠻⠞⠥⠗â " }, { "input": "overturned", "output": "⠕⠧⠻⠞⠥⠗â â «" }, { "input": "overturning", "output": "⠕⠧⠻⠞⠥⠗â â ¬" }, { "input": "overturns", "output": "⠕⠧⠻⠞⠥⠗â â Ž" }, { "input": "overuse", "output": "⠕⠧⠻⠥⠎⠑" }, { "input": "overused", "output": "⠕⠧⠻⠥⠎⠫" }, { "input": "overuses", "output": "⠕⠧⠻⠥⠎⠑⠎" }, { "input": "overusing", "output": "⠕⠧⠻⠥⠎⠬" }, { "input": "overview", "output": "⠕⠧⠻⠧⠊⠑⠺" }, { "input": "overviews", "output": "⠕⠧⠻⠧⠊⠑⠺⠎" }, { "input": "overweening", "output": "⠕⠧⠻⠺⠑⠢⠬" }, { "input": "overweight", "output": "⠕⠧⠻⠺⠑⠊⠣⠞" }, { "input": "overwhelm", "output": "⠕⠧⠻⠱⠑⠇â " }, { "input": "overwhelmed", "output": "⠕⠧⠻⠱⠑⠇â â «" }, { "input": "overwhelming", "output": "⠕⠧⠻⠱⠑⠇â â ¬" }, { "input": "overwhelmingly", "output": "⠕⠧⠻⠱⠑⠇â â ¬â ‡â ½" }, { "input": "overwhelms", "output": "⠕⠧⠻⠱⠑⠇â â Ž" }, { "input": "overwork", "output": "â •â §â »â â º" }, { "input": "overworked", "output": "â •â §â »â â ºâ «" }, { "input": "overworking", "output": "â •â §â »â â ºâ ¬" }, { "input": "overworks", "output": "â •â §â »â â ºâ Ž" }, { "input": "overwrite", "output": "⠕⠧⠻⠺⠗⠊⠞⠑" }, { "input": "overwrites", "output": "⠕⠧⠻⠺⠗⠊⠞⠑⠎" }, { "input": "overwriting", "output": "⠕⠧⠻⠺⠗⠊⠞⠬" }, { "input": "overwritten", "output": "⠕⠧⠻⠺⠗⠊⠞⠞⠢" }, { "input": "overwrought", "output": "⠕⠧⠻⠺⠗â â ³" }, { "input": "overzealous", "output": "⠕⠧⠻⠵⠂⠇⠳⠎" }, { "input": "oviduct", "output": "⠕⠧⠊⠙⠥⠉⠞" }, { "input": "oviducts", "output": "⠕⠧⠊⠙⠥⠉⠞⠎" }, { "input": "oviparous", "output": "â •â §â Šâ â œâ ³â Ž" }, { "input": "ovoid", "output": "â •â §â •â Šâ ™" }, { "input": "ovoids", "output": "⠕⠧⠕⠊⠙⠎" }, { "input": "ovulate", "output": "⠕⠧⠥⠇â â žâ ‘" }, { "input": "ovulated", "output": "⠕⠧⠥⠇â â žâ «" }, { "input": "ovulates", "output": "⠕⠧⠥⠇â â žâ ‘â Ž" }, { "input": "ovulating", "output": "⠕⠧⠥⠇â â žâ ¬" }, { "input": "ovulation", "output": "⠕⠧⠥⠇â â °â " }, { "input": "ovule", "output": "⠕⠧⠥⠇⠑" }, { "input": "ovules", "output": "⠕⠧⠥⠇⠑⠎" }, { "input": "ovum", "output": "â •â §â ¥â " }, { "input": "ow", "output": "â ª" }, { "input": "owe", "output": "⠪⠑" }, { "input": "owed", "output": "⠪⠫" }, { "input": "owes", "output": "⠪⠑⠎" }, { "input": "owing", "output": "⠪⠬" }, { "input": "owl", "output": "⠪⠇" }, { "input": "owlet", "output": "⠪⠇⠑⠞" }, { "input": "owlets", "output": "⠪⠇⠑⠞⠎" }, { "input": "owlish", "output": "⠪⠇⠊⠩" }, { "input": "owls", "output": "⠪⠇⠎" }, { "input": "own", "output": "â ªâ " }, { "input": "owned", "output": "â ªâ â «" }, { "input": "owner", "output": "â ªâ â »" }, { "input": "owners", "output": "â ªâ â »â Ž" }, { "input": "ownership", "output": "â ªâ â »â ©â Šâ " }, { "input": "owning", "output": "â ªâ â ¬" }, { "input": "owns", "output": "â ªâ â Ž" }, { "input": "ox", "output": "â •â ­" }, { "input": "oxbow", "output": "⠕⠭⠃⠪" }, { "input": "oxbows", "output": "⠕⠭⠃⠪⠎" }, { "input": "oxen", "output": "â •â ­â ¢" }, { "input": "oxford", "output": "â •â ­â ¿â ™" }, { "input": "oxfords", "output": "⠕⠭⠿⠙⠎" }, { "input": "oxidation", "output": "â •â ­â Šâ ™â â °â " }, { "input": "oxide", "output": "⠕⠭⠊⠙⠑" }, { "input": "oxides", "output": "⠕⠭⠊⠙⠑⠎" }, { "input": "oxidize", "output": "⠕⠭⠊⠙⠊⠵⠑" }, { "input": "oxidized", "output": "⠕⠭⠊⠙⠊⠵⠫" }, { "input": "oxidizer", "output": "⠕⠭⠊⠙⠊⠵⠻" }, { "input": "oxidizers", "output": "⠕⠭⠊⠙⠊⠵⠻⠎" }, { "input": "oxidizes", "output": "⠕⠭⠊⠙⠊⠵⠑⠎" }, { "input": "oxidizing", "output": "⠕⠭⠊⠙⠊⠵⠬" }, { "input": "oxyacetylene", "output": "â •â ­â ½â â ‰â ‘⠞⠽⠇⠢⠑" }, { "input": "oxygen", "output": "⠕⠭⠽⠛⠢" }, { "input": "oxygenate", "output": "⠕⠭⠽⠛⠢â â žâ ‘" }, { "input": "oxygenated", "output": "⠕⠭⠽⠛⠢â â žâ «" }, { "input": "oxygenates", "output": "⠕⠭⠽⠛⠢â â žâ ‘â Ž" }, { "input": "oxygenating", "output": "⠕⠭⠽⠛⠢â â žâ ¬" }, { "input": "oxygenation", "output": "⠕⠭⠽⠛⠢â â °â " }, { "input": "oxymora", "output": "â •â ­â ½â â •â —â " }, { "input": "oxymoron", "output": "â •â ­â ½â â •â —â •â " }, { "input": "oxymorons", "output": "â •â ­â ½â â •â —â •â â Ž" }, { "input": "oyster", "output": "⠕⠽⠌⠻" }, { "input": "oysters", "output": "⠕⠽⠌⠻⠎" }, { "input": "ozone", "output": "â •â µâ â •" }, { "input": "p", "output": "â °â " }, { "input": "pH", "output": "â â  â “" }, { "input": "pa", "output": "â â " }, { "input": "pace", "output": "â â â ‰â ‘" }, { "input": "paced", "output": "â â â ‰â «" }, { "input": "pacemaker", "output": "â â â ‰â ‘â â â …â »" }, { "input": "pacemakers", "output": "â â â ‰â ‘â â â …⠻⠎" }, { "input": "paces", "output": "â â â ‰â ‘â Ž" }, { "input": "pacesetter", "output": "â â â ‰â ‘â Žâ ‘â žâ žâ »" }, { "input": "pacesetters", "output": "â â â ‰â ‘⠎⠑⠞⠞⠻⠎" }, { "input": "pachyderm", "output": "â â â ¡â ½â ™â »â " }, { "input": "pachyderms", "output": "â â â ¡â ½â ™â »â â Ž" }, { "input": "pacific", "output": "â â â ‰â Šâ ‹â Šâ ‰" }, { "input": "pacifically", "output": "â â â ‰â Šâ ‹â Šâ ‰â â ‡â ‡â ½" }, { "input": "pacification", "output": "â â â ‰â Šâ ‹â Šâ ‰â â °â " }, { "input": "pacified", "output": "â â â ‰â Šâ ‹â Šâ «" }, { "input": "pacifier", "output": "â â â ‰â Šâ ‹â Šâ »" }, { "input": "pacifiers", "output": "â â â ‰â Šâ ‹â Šâ »â Ž" }, { "input": "pacifies", "output": "â â â ‰â Šâ ‹â Šâ ‘â Ž" }, { "input": "pacifism", "output": "â â â ‰â Šâ ‹â Šâ Žâ " }, { "input": "pacifist", "output": "â â â ‰â Šâ ‹â Šâ Œ" }, { "input": "pacifists", "output": "â â â ‰â Šâ ‹â Šâ Œâ Ž" }, { "input": "pacify", "output": "â â â ‰â Šâ ‹â ½" }, { "input": "pacifying", "output": "â â â ‰â Šâ ‹â ½â ¬" }, { "input": "pacing", "output": "â â â ‰â ¬" }, { "input": "pack", "output": "â â â ‰â …" }, { "input": "package", "output": "â â â ‰â …â â ›â ‘" }, { "input": "packaged", "output": "â â â ‰â …â â ›â «" }, { "input": "packages", "output": "â â â ‰â …â â ›â ‘â Ž" }, { "input": "packaging", "output": "â â â ‰â …â â ›â ¬" }, { "input": "packed", "output": "â â â ‰â …â «" }, { "input": "packer", "output": "â â â ‰â …â »" }, { "input": "packers", "output": "â â â ‰â …⠻⠎" }, { "input": "packet", "output": "â â â ‰â …â ‘â ž" }, { "input": "packets", "output": "â â â ‰â …â ‘â žâ Ž" }, { "input": "packing", "output": "â â â ‰â …â ¬" }, { "input": "packs", "output": "â â â ‰â …â Ž" }, { "input": "pact", "output": "â â â ‰â ž" }, { "input": "pacts", "output": "â â â ‰â žâ Ž" }, { "input": "pad", "output": "â â â ™" }, { "input": "padded", "output": "â â â ™â ™â «" }, { "input": "paddies", "output": "â â â ™â ™â Šâ ‘â Ž" }, { "input": "padding", "output": "â â â ™â ™â ¬" }, { "input": "paddle", "output": "â â â ™â ™â ‡â ‘" }, { "input": "paddled", "output": "â â â ™â ™â ‡â «" }, { "input": "paddles", "output": "â â â ™â ™â ‡â ‘â Ž" }, { "input": "paddling", "output": "â â â ™â ™â ‡â ¬" }, { "input": "paddock", "output": "â â â ™â ™â •⠉⠅" }, { "input": "paddocked", "output": "â â â ™â ™â •⠉⠅⠫" }, { "input": "paddocking", "output": "â â â ™â ™â •⠉⠅⠬" }, { "input": "paddocks", "output": "â â â ™â ™â •⠉⠅⠎" }, { "input": "paddy", "output": "â â â ™â ™â ½" }, { "input": "padlock", "output": "â â â ™â ‡â •⠉⠅" }, { "input": "padlocked", "output": "â â â ™â ‡â •⠉⠅⠫" }, { "input": "padlocking", "output": "â â â ™â ‡â •⠉⠅⠬" }, { "input": "padlocks", "output": "â â â ™â ‡â •⠉⠅⠎" }, { "input": "padre", "output": "â â â ™â —â ‘" }, { "input": "padres", "output": "â â â ™â —â ‘â Ž" }, { "input": "pads", "output": "â â â ™â Ž" }, { "input": "paean", "output": "â â â ‚â " }, { "input": "paeans", "output": "â â â ‚â â Ž" }, { "input": "pagan", "output": "â â â ›â â " }, { "input": "paganism", "output": "â â â ›â â â Šâ Žâ " }, { "input": "pagans", "output": "â â â ›â â â Ž" }, { "input": "page", "output": "â â â ›â ‘" }, { "input": "pageant", "output": "â â â ›â ‚â â ž" }, { "input": "pageantry", "output": "â â â ›â ‚â â žâ —â ½" }, { "input": "pageants", "output": "â â â ›â ‚â â žâ Ž" }, { "input": "paged", "output": "â â â ›â «" }, { "input": "pager", "output": "â â â ›â »" }, { "input": "pagers", "output": "â â â ›â »â Ž" }, { "input": "pages", "output": "â â â ›â ‘â Ž" }, { "input": "paginate", "output": "â â â ›â ”â â žâ ‘" }, { "input": "paginated", "output": "â â â ›â ”â â žâ «" }, { "input": "paginates", "output": "â â â ›â ”â â žâ ‘â Ž" }, { "input": "paginating", "output": "â â â ›â ”â â žâ ¬" }, { "input": "pagination", "output": "â â â ›â ”â â °â " }, { "input": "paging", "output": "â â â ›â ¬" }, { "input": "pagoda", "output": "â â â ›â •â ™â " }, { "input": "pagodas", "output": "â â â ›â •â ™â â Ž" }, { "input": "paid", "output": "â â ™" }, { "input": "pail", "output": "â â â Šâ ‡" }, { "input": "pailful", "output": "â â â Šâ ‡â °â ‡" }, { "input": "pailfuls", "output": "â â â Šâ ‡â °â ‡â Ž" }, { "input": "pails", "output": "â â â Šâ ‡â Ž" }, { "input": "pailsful", "output": "â â â Šâ ‡â Žâ °â ‡" }, { "input": "pain", "output": "â â â ”" }, { "input": "pained", "output": "â â â ”â «" }, { "input": "painful", "output": "â â â ”â °â ‡" }, { "input": "painfuller", "output": "â â â ”⠰⠇⠇⠻" }, { "input": "painfullest", "output": "â â â ”⠰⠇⠇⠑⠌" }, { "input": "painfully", "output": "â â â ”⠰⠇⠇⠽" }, { "input": "paining", "output": "â â â ”â ¬" }, { "input": "painkiller", "output": "â â â ”⠅⠊⠇⠇⠻" }, { "input": "painkillers", "output": "â â â ”⠅⠊⠇⠇⠻⠎" }, { "input": "painless", "output": "â â â ”⠨⠎" }, { "input": "painlessly", "output": "â â â ”⠨⠎⠇⠽" }, { "input": "pains", "output": "â â â ”â Ž" }, { "input": "painstaking", "output": "â â â ”â Žâ žâ â …â ¬" }, { "input": "painstakingly", "output": "â â â ”â Žâ žâ â …⠬⠇⠽" }, { "input": "paint", "output": "â â â ”â ž" }, { "input": "paintbrush", "output": "â â â ”⠞⠃⠗⠥⠩" }, { "input": "paintbrushes", "output": "â â â ”⠞⠃⠗⠥⠩⠑⠎" }, { "input": "painted", "output": "â â â ”â žâ «" }, { "input": "painter", "output": "â â â ”â žâ »" }, { "input": "painters", "output": "â â â ”⠞⠻⠎" }, { "input": "painting", "output": "â â â ”â žâ ¬" }, { "input": "paintings", "output": "â â â ”⠞⠬⠎" }, { "input": "paints", "output": "â â â ”â žâ Ž" }, { "input": "paintwork", "output": "â â â ”â žâ â º" }, { "input": "pair", "output": "â â â Šâ —" }, { "input": "paired", "output": "â â â Šâ —â «" }, { "input": "pairing", "output": "â â â Šâ —â ¬" }, { "input": "pairs", "output": "â â â Šâ —â Ž" }, { "input": "pairwise", "output": "â â â Šâ —⠺⠊⠎⠑" }, { "input": "paisley", "output": "â â â Šâ Žâ ‡â ‘â ½" }, { "input": "paisleys", "output": "â â â Šâ Žâ ‡â ‘⠽⠎" }, { "input": "pajamas", "output": "â â â šâ â â â Ž" }, { "input": "pal", "output": "â â â ‡" }, { "input": "palace", "output": "â â â ‡â â ‰â ‘" }, { "input": "palaces", "output": "â â â ‡â â ‰â ‘â Ž" }, { "input": "palatable", "output": "â â â ‡â â žâ â ƒâ ‡â ‘" }, { "input": "palatal", "output": "â â â ‡â â žâ â ‡" }, { "input": "palatals", "output": "â â â ‡â â žâ â ‡â Ž" }, { "input": "palate", "output": "â â â ‡â â žâ ‘" }, { "input": "palates", "output": "â â â ‡â â žâ ‘â Ž" }, { "input": "palatial", "output": "â â â ‡â â žâ Šâ â ‡" }, { "input": "palaver", "output": "â â â ‡â â §â »" }, { "input": "palavered", "output": "â â â ‡â â §â »â «" }, { "input": "palavering", "output": "â â â ‡â â §â »â ¬" }, { "input": "palavers", "output": "â â â ‡â â §â »â Ž" }, { "input": "pale", "output": "â â â ‡â ‘" }, { "input": "paled", "output": "â â â ‡â «" }, { "input": "paleface", "output": "â â â ‡â ‘â ‹â â ‰â ‘" }, { "input": "palefaces", "output": "â â â ‡â ‘â ‹â â ‰â ‘â Ž" }, { "input": "paleness", "output": "â â â ‡â ‘â °â Ž" }, { "input": "paleontologist", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠊⠌" }, { "input": "paleontologists", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "paleontology", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠽" }, { "input": "paler", "output": "â â â ‡â »" }, { "input": "pales", "output": "â â â ‡â ‘â Ž" }, { "input": "palest", "output": "â â â ‡â ‘â Œ" }, { "input": "palette", "output": "â â â ‡â ‘â žâ žâ ‘" }, { "input": "palettes", "output": "â â â ‡â ‘â žâ žâ ‘â Ž" }, { "input": "palimony", "output": "â â â ‡â Šâ â •â â ½" }, { "input": "palimpsest", "output": "â â â ‡â Šâ â â Žâ ‘â Œ" }, { "input": "palimpsests", "output": "â â â ‡â Šâ â â Žâ ‘⠌⠎" }, { "input": "palindrome", "output": "â â â ‡â ”⠙⠗⠕â â ‘" }, { "input": "palindromes", "output": "â â â ‡â ”⠙⠗⠕â â ‘â Ž" }, { "input": "palindromic", "output": "â â â ‡â ”⠙⠗⠕â â Šâ ‰" }, { "input": "paling", "output": "â â â ‡â ¬" }, { "input": "palings", "output": "â â â ‡â ¬â Ž" }, { "input": "palisade", "output": "â â â ‡â Šâ Žâ â ™â ‘" }, { "input": "palisades", "output": "â â â ‡â Šâ Žâ â ™â ‘â Ž" }, { "input": "pall", "output": "â â â ‡â ‡" }, { "input": "palladium", "output": "â â â ‡â ‡â â ™â Šâ ¥â " }, { "input": "pallbearer", "output": "â â â ‡â ‡â ƒâ ‘⠜⠻" }, { "input": "pallbearers", "output": "â â â ‡â ‡â ƒâ ‘⠜⠻⠎" }, { "input": "palled", "output": "â â â ‡â ‡â «" }, { "input": "pallet", "output": "â â â ‡â ‡â ‘â ž" }, { "input": "pallets", "output": "â â â ‡â ‡â ‘â žâ Ž" }, { "input": "palliate", "output": "â â â ‡â ‡â Šâ â žâ ‘" }, { "input": "palliated", "output": "â â â ‡â ‡â Šâ â žâ «" }, { "input": "palliates", "output": "â â â ‡â ‡â Šâ â žâ ‘â Ž" }, { "input": "palliating", "output": "â â â ‡â ‡â Šâ â žâ ¬" }, { "input": "palliation", "output": "â â â ‡â ‡â Šâ â °â " }, { "input": "palliative", "output": "â â â ‡â ‡â Šâ â žâ Šâ §â ‘" }, { "input": "palliatives", "output": "â â â ‡â ‡â Šâ â žâ Šâ §â ‘â Ž" }, { "input": "pallid", "output": "â â â ‡â ‡â Šâ ™" }, { "input": "palling", "output": "â â â ‡â ‡â ¬" }, { "input": "pallor", "output": "â â â ‡â ‡â •â —" }, { "input": "palls", "output": "â â â ‡â ‡â Ž" }, { "input": "palm", "output": "â â â ‡â " }, { "input": "palmed", "output": "â â â ‡â â «" }, { "input": "palmetto", "output": "â â â ‡â â ‘â žâ žâ •" }, { "input": "palmettoes", "output": "â â â ‡â â ‘â žâ žâ •â ‘â Ž" }, { "input": "palmettos", "output": "â â â ‡â â ‘â žâ žâ •â Ž" }, { "input": "palmier", "output": "â â â ‡â â Šâ »" }, { "input": "palmiest", "output": "â â â ‡â â Šâ ‘â Œ" }, { "input": "palming", "output": "â â â ‡â â ¬" }, { "input": "palmist", "output": "â â â ‡â â Šâ Œ" }, { "input": "palmistry", "output": "â â â ‡â â Šâ Œâ —â ½" }, { "input": "palmists", "output": "â â â ‡â â Šâ Œâ Ž" }, { "input": "palms", "output": "â â â ‡â â Ž" }, { "input": "palmy", "output": "â â â ‡â â ½" }, { "input": "palomino", "output": "â â â ‡â •â â ”â •" }, { "input": "palominos", "output": "â â â ‡â •â â ”â •â Ž" }, { "input": "palpable", "output": "â â â ‡â â â ƒâ ‡â ‘" }, { "input": "palpably", "output": "â â â ‡â â â ƒâ ‡â ½" }, { "input": "palpate", "output": "â â â ‡â â â žâ ‘" }, { "input": "palpated", "output": "â â â ‡â â â žâ «" }, { "input": "palpates", "output": "â â â ‡â â â žâ ‘â Ž" }, { "input": "palpating", "output": "â â â ‡â â â žâ ¬" }, { "input": "palpation", "output": "â â â ‡â â â °â " }, { "input": "palpitate", "output": "â â â ‡â â Šâ žâ â žâ ‘" }, { "input": "palpitated", "output": "â â â ‡â â Šâ žâ â žâ «" }, { "input": "palpitates", "output": "â â â ‡â â Šâ žâ â žâ ‘â Ž" }, { "input": "palpitating", "output": "â â â ‡â â Šâ žâ â žâ ¬" }, { "input": "palpitation", "output": "â â â ‡â â Šâ žâ â °â " }, { "input": "palpitations", "output": "â â â ‡â â Šâ žâ â °â â Ž" }, { "input": "pals", "output": "â â â ‡â Ž" }, { "input": "palsied", "output": "â â â ‡â Žâ Šâ «" }, { "input": "palsies", "output": "â â â ‡â Žâ Šâ ‘â Ž" }, { "input": "palsy", "output": "â â â ‡â Žâ ½" }, { "input": "palsying", "output": "â â â ‡â Žâ ½â ¬" }, { "input": "paltrier", "output": "â â â ‡â žâ —â Šâ »" }, { "input": "paltriest", "output": "â â â ‡â žâ —â Šâ ‘â Œ" }, { "input": "paltriness", "output": "â â â ‡â žâ —â Šâ °â Ž" }, { "input": "paltry", "output": "â â â ‡â žâ —â ½" }, { "input": "pampas", "output": "â â â â â â Ž" }, { "input": "pamper", "output": "â â â â â »" }, { "input": "pampered", "output": "â â â â â »â «" }, { "input": "pampering", "output": "â â â â â »â ¬" }, { "input": "pampers", "output": "â â â â â »â Ž" }, { "input": "pamphlet", "output": "â â â â â “⠇⠑⠞" }, { "input": "pamphleteer", "output": "â â â â â “⠇⠑⠞⠑⠻" }, { "input": "pamphleteers", "output": "â â â â â “⠇⠑⠞⠑⠻⠎" }, { "input": "pamphlets", "output": "â â â â â “⠇⠑⠞⠎" }, { "input": "pan", "output": "â â â " }, { "input": "panacea", "output": "â â â â â ‰â ‘â " }, { "input": "panaceas", "output": "â â â â â ‰â ‚â Ž" }, { "input": "panache", "output": "â â â â â ¡â ‘" }, { "input": "pancake", "output": "â â â â ‰â â …â ‘" }, { "input": "pancaked", "output": "â â â â ‰â â …â «" }, { "input": "pancakes", "output": "â â â â ‰â â …â ‘â Ž" }, { "input": "pancaking", "output": "â â â â ‰â â …â ¬" }, { "input": "panchromatic", "output": "â â â â ¡â —â •â â â žâ Šâ ‰" }, { "input": "pancreas", "output": "â â â â ‰â —â ‚â Ž" }, { "input": "pancreases", "output": "â â â â ‰â —â ‚â Žâ ‘â Ž" }, { "input": "pancreatic", "output": "â â â â ‰â —â ‚â žâ Šâ ‰" }, { "input": "panda", "output": "â â ¯â " }, { "input": "pandas", "output": "â â ¯â â Ž" }, { "input": "pandemic", "output": "â â ¯â ‘â â Šâ ‰" }, { "input": "pandemics", "output": "â â ¯â ‘â â Šâ ‰â Ž" }, { "input": "pandemonium", "output": "â â ¯â ‘â â •â â Šâ ¥â " }, { "input": "pander", "output": "â â ¯â »" }, { "input": "pandered", "output": "â â ¯â »â «" }, { "input": "panderer", "output": "â â ¯â »â »" }, { "input": "panderers", "output": "â â ¯â »â »â Ž" }, { "input": "pandering", "output": "â â ¯â »â ¬" }, { "input": "panders", "output": "â â ¯â »â Ž" }, { "input": "pane", "output": "â â â â ‘" }, { "input": "panegyric", "output": "â â â â ‘⠛⠽⠗⠊⠉" }, { "input": "panegyrics", "output": "â â â â ‘⠛⠽⠗⠊⠉⠎" }, { "input": "panel", "output": "â â â â ‘â ‡" }, { "input": "paneled", "output": "â â â â ‘⠇⠫" }, { "input": "paneling", "output": "â â â â ‘⠇⠬" }, { "input": "panelings", "output": "â â â â ‘⠇⠬⠎" }, { "input": "panelist", "output": "â â â â ‘⠇⠊⠌" }, { "input": "panelists", "output": "â â â â ‘⠇⠊⠌⠎" }, { "input": "panelled", "output": "â â â â ‘⠇⠇⠫" }, { "input": "panelling", "output": "â â â â ‘⠇⠇⠬" }, { "input": "panellings", "output": "â â â â ‘⠇⠇⠬⠎" }, { "input": "panels", "output": "â â â â ‘⠇⠎" }, { "input": "panes", "output": "â â â â ‘â Ž" }, { "input": "pang", "output": "â â â â ›" }, { "input": "pangs", "output": "â â â â ›â Ž" }, { "input": "panhandle", "output": "â â â â “⠯⠇⠑" }, { "input": "panhandled", "output": "â â â â “⠯⠇⠫" }, { "input": "panhandler", "output": "â â â â “⠯⠇⠻" }, { "input": "panhandlers", "output": "â â â â “⠯⠇⠻⠎" }, { "input": "panhandles", "output": "â â â â “⠯⠇⠑⠎" }, { "input": "panhandling", "output": "â â â â “⠯⠇⠬" }, { "input": "panic", "output": "â â â â Šâ ‰" }, { "input": "panicked", "output": "â â â â Šâ ‰â …â «" }, { "input": "panickier", "output": "â â â â Šâ ‰â …â Šâ »" }, { "input": "panickiest", "output": "â â â â Šâ ‰â …â Šâ ‘â Œ" }, { "input": "panicking", "output": "â â â â Šâ ‰â …â ¬" }, { "input": "panicky", "output": "â â â â Šâ ‰â …â ½" }, { "input": "panics", "output": "â â â â Šâ ‰â Ž" }, { "input": "panier", "output": "â â â â Šâ »" }, { "input": "paniers", "output": "â â â â Šâ »â Ž" }, { "input": "panned", "output": "â â â â â «" }, { "input": "pannier", "output": "â â â â â Šâ »" }, { "input": "panniers", "output": "â â â â â Šâ »â Ž" }, { "input": "panning", "output": "â â â â â ¬" }, { "input": "panoplies", "output": "â â â â •â â ‡â Šâ ‘â Ž" }, { "input": "panoply", "output": "â â â â •â â ‡â ½" }, { "input": "panorama", "output": "â â â â •â —â â â " }, { "input": "panoramas", "output": "â â â â •â —â â â â Ž" }, { "input": "panoramic", "output": "â â â â •â —â â â Šâ ‰" }, { "input": "pans", "output": "â â â â Ž" }, { "input": "pansies", "output": "â â â â Žâ Šâ ‘â Ž" }, { "input": "pansy", "output": "â â â â Žâ ½" }, { "input": "pant", "output": "â â â â ž" }, { "input": "pantaloons", "output": "â â â â žâ â ‡â •â •â â Ž" }, { "input": "panted", "output": "â â â â žâ «" }, { "input": "pantheism", "output": "â â â â ®â Šâ Žâ " }, { "input": "pantheist", "output": "â â â â ®â Šâ Œ" }, { "input": "pantheistic", "output": "â â â â ®â Šâ Œâ Šâ ‰" }, { "input": "pantheists", "output": "â â â â ®â Šâ Œâ Ž" }, { "input": "pantheon", "output": "â â â â ®â •â " }, { "input": "pantheons", "output": "â â â â ®â •â â Ž" }, { "input": "panther", "output": "â â â â ®â —" }, { "input": "panthers", "output": "â â â â ®â —â Ž" }, { "input": "pantie", "output": "â â â â žâ Šâ ‘" }, { "input": "panties", "output": "â â â â žâ Šâ ‘â Ž" }, { "input": "panting", "output": "â â â â žâ ¬" }, { "input": "pantomime", "output": "â â â â žâ •â â Šâ â ‘" }, { "input": "pantomimed", "output": "â â â â žâ •â â Šâ â «" }, { "input": "pantomimes", "output": "â â â â žâ •â â Šâ â ‘â Ž" }, { "input": "pantomiming", "output": "â â â â žâ •â â Šâ â ¬" }, { "input": "pantries", "output": "â â â â žâ —â Šâ ‘â Ž" }, { "input": "pantry", "output": "â â â â žâ —â ½" }, { "input": "pants", "output": "â â â â žâ Ž" }, { "input": "pantsuit", "output": "â â â â žâ Žâ ¥â Šâ ž" }, { "input": "pantsuits", "output": "â â â â žâ Žâ ¥â Šâ žâ Ž" }, { "input": "panty", "output": "â â â â žâ ½" }, { "input": "pantyhose", "output": "â â â â žâ ½â “â •â Žâ ‘" }, { "input": "pap", "output": "â â â " }, { "input": "papa", "output": "â â â â " }, { "input": "papacies", "output": "â â â â â ‰â Šâ ‘â Ž" }, { "input": "papacy", "output": "â â â â â ‰â ½" }, { "input": "papal", "output": "â â â â â ‡" }, { "input": "papas", "output": "â â â â â Ž" }, { "input": "papaw", "output": "â â â â â º" }, { "input": "papaws", "output": "â â â â â ºâ Ž" }, { "input": "papaya", "output": "â â â â â ½â " }, { "input": "papayas", "output": "â â â â â ½â â Ž" }, { "input": "paper", "output": "â â â â »" }, { "input": "paperback", "output": "â â â â »â ƒâ â ‰â …" }, { "input": "paperbacks", "output": "â â â â »â ƒâ â ‰â …â Ž" }, { "input": "paperboy", "output": "â â â â »â ƒâ •â ½" }, { "input": "paperboys", "output": "â â â â »â ƒâ •⠽⠎" }, { "input": "papered", "output": "â â â â »â «" }, { "input": "papergirl", "output": "â â â â »â ›â Šâ —â ‡" }, { "input": "papergirls", "output": "â â â â »â ›â Šâ —⠇⠎" }, { "input": "paperhanger", "output": "â â â â »â “â â â ›â »" }, { "input": "paperhangers", "output": "â â â â »â “â â â ›â »â Ž" }, { "input": "papering", "output": "â â â â »â ¬" }, { "input": "papers", "output": "â â â â »â Ž" }, { "input": "paperweight", "output": "â â â â »â ºâ ‘⠊⠣⠞" }, { "input": "paperweights", "output": "â â â â »â ºâ ‘⠊⠣⠞⠎" }, { "input": "paperwork", "output": "â â â â »â â º" }, { "input": "papery", "output": "â â â â »â ½" }, { "input": "papilla", "output": "â â â â Šâ ‡â ‡â " }, { "input": "papillae", "output": "â â â â Šâ ‡â ‡â â ‘" }, { "input": "papoose", "output": "â â â â •â •â Žâ ‘" }, { "input": "papooses", "output": "â â â â •â •â Žâ ‘â Ž" }, { "input": "paprika", "output": "â â â â —â Šâ …â " }, { "input": "paps", "output": "â â â â Ž" }, { "input": "papyri", "output": "â â â â ½â —â Š" }, { "input": "papyrus", "output": "â â â â ½â —⠥⠎" }, { "input": "papyruses", "output": "â â â â ½â —⠥⠎⠑⠎" }, { "input": "par", "output": "â â œ" }, { "input": "parable", "output": "â â œâ â ƒâ ‡â ‘" }, { "input": "parables", "output": "â â œâ â ƒâ ‡â ‘â Ž" }, { "input": "parabola", "output": "â â œâ â ƒâ •â ‡â " }, { "input": "parabolas", "output": "â â œâ â ƒâ •â ‡â â Ž" }, { "input": "parabolic", "output": "â â œâ â ƒâ •⠇⠊⠉" }, { "input": "parachute", "output": "â â œâ â ¡â ¥â žâ ‘" }, { "input": "parachuted", "output": "â â œâ â ¡â ¥â žâ «" }, { "input": "parachutes", "output": "â â œâ â ¡â ¥â žâ ‘â Ž" }, { "input": "parachuting", "output": "â â œâ â ¡â ¥â žâ ¬" }, { "input": "parachutist", "output": "â â œâ â ¡â ¥â žâ Šâ Œ" }, { "input": "parachutists", "output": "â â œâ â ¡â ¥â žâ Šâ Œâ Ž" }, { "input": "parade", "output": "â â œâ â ™â ‘" }, { "input": "paraded", "output": "â â œâ â ™â «" }, { "input": "parades", "output": "â â œâ â ™â ‘â Ž" }, { "input": "paradigm", "output": "â â œâ â ™â Šâ ›â " }, { "input": "paradigmatic", "output": "â â œâ â ™â Šâ ›â â â žâ Šâ ‰" }, { "input": "paradigms", "output": "â â œâ â ™â Šâ ›â â Ž" }, { "input": "parading", "output": "â â œâ â ™â ¬" }, { "input": "paradise", "output": "â â œâ â ™â Šâ Žâ ‘" }, { "input": "paradises", "output": "â â œâ â ™â Šâ Žâ ‘â Ž" }, { "input": "paradox", "output": "â â œâ â ™â •â ­" }, { "input": "paradoxes", "output": "â â œâ â ™â •â ­â ‘â Ž" }, { "input": "paradoxical", "output": "â â œâ â ™â •â ­â Šâ ‰â â ‡" }, { "input": "paradoxically", "output": "â â œâ â ™â •â ­â Šâ ‰â â ‡â ‡â ½" }, { "input": "paraffin", "output": "â â œâ â –â ”" }, { "input": "paragon", "output": "â â œâ â ›â •â " }, { "input": "paragons", "output": "â â œâ â ›â •â â Ž" }, { "input": "paragraph", "output": "â â œâ â ›â —â â â “" }, { "input": "paragraphed", "output": "â â œâ â ›â —â â â “â «" }, { "input": "paragraphing", "output": "â â œâ â ›â —â â â “â ¬" }, { "input": "paragraphs", "output": "â â œâ â ›â —â â â “â Ž" }, { "input": "parakeet", "output": "â â œâ â …â ‘â ‘â ž" }, { "input": "parakeets", "output": "â â œâ â …â ‘â ‘â žâ Ž" }, { "input": "paralegal", "output": "â â œâ â ‡â ‘â ›â â ‡" }, { "input": "paralegals", "output": "â â œâ â ‡â ‘â ›â â ‡â Ž" }, { "input": "parallax", "output": "â â œâ â ‡â ‡â â ­" }, { "input": "parallaxes", "output": "â â œâ â ‡â ‡â â ­â ‘â Ž" }, { "input": "parallel", "output": "â â œâ â ‡â ‡â ‘â ‡" }, { "input": "paralleled", "output": "â â œâ â ‡â ‡â ‘⠇⠫" }, { "input": "paralleling", "output": "â â œâ â ‡â ‡â ‘⠇⠬" }, { "input": "parallelism", "output": "â â œâ â ‡â ‡â ‘⠇⠊⠎â " }, { "input": "parallelisms", "output": "â â œâ â ‡â ‡â ‘⠇⠊⠎â â Ž" }, { "input": "parallelled", "output": "â â œâ â ‡â ‡â ‘⠇⠇⠫" }, { "input": "parallelling", "output": "â â œâ â ‡â ‡â ‘⠇⠇⠬" }, { "input": "parallelogram", "output": "â â œâ â ‡â ‡â ‘⠇⠕⠛⠗â â " }, { "input": "parallelograms", "output": "â â œâ â ‡â ‡â ‘⠇⠕⠛⠗â â â Ž" }, { "input": "parallels", "output": "â â œâ â ‡â ‡â ‘⠇⠎" }, { "input": "paralyses", "output": "â â œâ â ‡â ½â Žâ ‘â Ž" }, { "input": "paralysis", "output": "â â œâ â ‡â ½â Žâ Šâ Ž" }, { "input": "paralytic", "output": "â â œâ â ‡â ½â žâ Šâ ‰" }, { "input": "paralytics", "output": "â â œâ â ‡â ½â žâ Šâ ‰â Ž" }, { "input": "paralyze", "output": "â â œâ â ‡â ½â µâ ‘" }, { "input": "paralyzed", "output": "â â œâ â ‡â ½â µâ «" }, { "input": "paralyzes", "output": "â â œâ â ‡â ½â µâ ‘â Ž" }, { "input": "paralyzing", "output": "â â œâ â ‡â ½â µâ ¬" }, { "input": "paramecia", "output": "â â œâ â â ‘⠉⠊â " }, { "input": "paramecium", "output": "â â œâ â â ‘⠉⠊⠥â " }, { "input": "parameciums", "output": "â â œâ â â ‘⠉⠊⠥â â Ž" }, { "input": "paramedic", "output": "â â œâ â â «â Šâ ‰" }, { "input": "paramedical", "output": "â â œâ â â «â Šâ ‰â â ‡" }, { "input": "paramedicals", "output": "â â œâ â â «â Šâ ‰â â ‡â Ž" }, { "input": "paramedics", "output": "â â œâ â â «â Šâ ‰â Ž" }, { "input": "parameter", "output": "â â œâ â â ‘â žâ »" }, { "input": "parameters", "output": "â â œâ â â ‘⠞⠻⠎" }, { "input": "paramilitaries", "output": "â â œâ â â Šâ ‡â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "paramilitary", "output": "â â œâ â â Šâ ‡â Šâ žâ œâ ½" }, { "input": "paramount", "output": "â â œâ â â ¨â ž" }, { "input": "paramour", "output": "â â œâ â â ³â —" }, { "input": "paramours", "output": "â â œâ â â ³â —â Ž" }, { "input": "paranoia", "output": "â â œâ â â •â Šâ " }, { "input": "paranoid", "output": "â â œâ â â •â Šâ ™" }, { "input": "paranoids", "output": "â â œâ â â •⠊⠙⠎" }, { "input": "paranormal", "output": "â â œâ â â •â —â â â ‡" }, { "input": "parapet", "output": "â â œâ â â ‘â ž" }, { "input": "parapets", "output": "â â œâ â â ‘â žâ Ž" }, { "input": "paraphernalia", "output": "â â œâ â â “â »â â â ‡â Šâ " }, { "input": "paraphrase", "output": "â â œâ â â “â —â â Žâ ‘" }, { "input": "paraphrased", "output": "â â œâ â â “â —â â Žâ «" }, { "input": "paraphrases", "output": "â â œâ â â “â —â â Žâ ‘â Ž" }, { "input": "paraphrasing", "output": "â â œâ â â “â —â â Žâ ¬" }, { "input": "paraplegia", "output": "â â œâ â â ‡â ‘⠛⠊â " }, { "input": "paraplegic", "output": "â â œâ â â ‡â ‘⠛⠊⠉" }, { "input": "paraplegics", "output": "â â œâ â â ‡â ‘⠛⠊⠉⠎" }, { "input": "paraprofessional", "output": "â â œâ â â —â ·â ‘â Žâ ¨â â â ‡" }, { "input": "paraprofessionals", "output": "â â œâ â â —â ·â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "parapsychology", "output": "â â œâ â â Žâ ½â ¡â •⠇⠕⠛⠽" }, { "input": "parasite", "output": "â â œâ â Žâ Šâ žâ ‘" }, { "input": "parasites", "output": "â â œâ â Žâ Šâ žâ ‘â Ž" }, { "input": "parasitic", "output": "â â œâ â Žâ Šâ žâ Šâ ‰" }, { "input": "parasol", "output": "â â œâ â Žâ •â ‡" }, { "input": "parasols", "output": "â â œâ â Žâ •⠇⠎" }, { "input": "paratrooper", "output": "â â œâ â žâ —â •â •â â »" }, { "input": "paratroopers", "output": "â â œâ â žâ —â •â •â â »â Ž" }, { "input": "paratroops", "output": "â â œâ â žâ —â •â •â â Ž" }, { "input": "parboil", "output": "â â œâ ƒâ •â Šâ ‡" }, { "input": "parboiled", "output": "â â œâ ƒâ •⠊⠇⠫" }, { "input": "parboiling", "output": "â â œâ ƒâ •⠊⠇⠬" }, { "input": "parboils", "output": "â â œâ ƒâ •⠊⠇⠎" }, { "input": "parcel", "output": "â â œâ ‰â ‘â ‡" }, { "input": "parceled", "output": "â â œâ ‰â ‘⠇⠫" }, { "input": "parceling", "output": "â â œâ ‰â ‘⠇⠬" }, { "input": "parcelled", "output": "â â œâ ‰â ‘⠇⠇⠫" }, { "input": "parcelling", "output": "â â œâ ‰â ‘⠇⠇⠬" }, { "input": "parcels", "output": "â â œâ ‰â ‘⠇⠎" }, { "input": "parch", "output": "â â œâ ¡" }, { "input": "parched", "output": "â â œâ ¡â «" }, { "input": "parches", "output": "â â œâ ¡â ‘â Ž" }, { "input": "parching", "output": "â â œâ ¡â ¬" }, { "input": "parchment", "output": "â â œâ ¡â °â ž" }, { "input": "parchments", "output": "â â œâ ¡â °â žâ Ž" }, { "input": "pardon", "output": "â â œâ ™â •â " }, { "input": "pardonable", "output": "â â œâ ™â •â â â ƒâ ‡â ‘" }, { "input": "pardoned", "output": "â â œâ ™â •â â «" }, { "input": "pardoning", "output": "â â œâ ™â •â â ¬" }, { "input": "pardons", "output": "â â œâ ™â •â â Ž" }, { "input": "pare", "output": "â â œâ ‘" }, { "input": "pared", "output": "â â œâ «" }, { "input": "parent", "output": "â â œâ ¢â ž" }, { "input": "parentage", "output": "â â œâ ¢â žâ â ›â ‘" }, { "input": "parental", "output": "â â œâ ¢â žâ â ‡" }, { "input": "parented", "output": "â â œâ ¢â žâ «" }, { "input": "parentheses", "output": "â â œâ ¢â ®â Žâ ‘â Ž" }, { "input": "parenthesis", "output": "â â œâ ¢â ®â Žâ Šâ Ž" }, { "input": "parenthesize", "output": "â â œâ ¢â ®â Žâ Šâ µâ ‘" }, { "input": "parenthesized", "output": "â â œâ ¢â ®â Žâ Šâ µâ «" }, { "input": "parenthesizes", "output": "â â œâ ¢â ®â Žâ Šâ µâ ‘â Ž" }, { "input": "parenthesizing", "output": "â â œâ ¢â ®â Žâ Šâ µâ ¬" }, { "input": "parenthetic", "output": "â â œâ ¢â ®â žâ Šâ ‰" }, { "input": "parenthetical", "output": "â â œâ ¢â ®â žâ Šâ ‰â â ‡" }, { "input": "parenthetically", "output": "â â œâ ¢â ®â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "parenthood", "output": "â â œâ ¢â žâ “â •â •â ™" }, { "input": "parenting", "output": "â â œâ ¢â žâ ¬" }, { "input": "parents", "output": "â â œâ ¢â žâ Ž" }, { "input": "pares", "output": "â â œâ ‘â Ž" }, { "input": "parfait", "output": "â â œâ ‹â â Šâ ž" }, { "input": "parfaits", "output": "â â œâ ‹â â Šâ žâ Ž" }, { "input": "pariah", "output": "â â œâ Šâ â “" }, { "input": "pariahs", "output": "â â œâ Šâ â “â Ž" }, { "input": "paring", "output": "â â œâ ¬" }, { "input": "parings", "output": "â â œâ ¬â Ž" }, { "input": "parish", "output": "â â œâ Šâ ©" }, { "input": "parishes", "output": "â â œâ Šâ ©â ‘â Ž" }, { "input": "parishioner", "output": "â â œâ Šâ ©â Šâ •â â »" }, { "input": "parishioners", "output": "â â œâ Šâ ©â Šâ •â â »â Ž" }, { "input": "parity", "output": "â â œâ °â ½" }, { "input": "park", "output": "â â œâ …" }, { "input": "parka", "output": "â â œâ …â " }, { "input": "parkas", "output": "â â œâ …â â Ž" }, { "input": "parked", "output": "â â œâ …â «" }, { "input": "parking", "output": "â â œâ …â ¬" }, { "input": "parks", "output": "â â œâ …â Ž" }, { "input": "parkway", "output": "â â œâ …â ºâ â ½" }, { "input": "parkways", "output": "â â œâ …â ºâ â ½â Ž" }, { "input": "parlance", "output": "â â œâ ‡â ¨â ‘" }, { "input": "parlay", "output": "â â œâ ‡â â ½" }, { "input": "parlayed", "output": "â â œâ ‡â â ½â «" }, { "input": "parlaying", "output": "â â œâ ‡â â ½â ¬" }, { "input": "parlays", "output": "â â œâ ‡â â ½â Ž" }, { "input": "parley", "output": "â â œâ ‡â ‘â ½" }, { "input": "parleyed", "output": "â â œâ ‡â ‘⠽⠫" }, { "input": "parleying", "output": "â â œâ ‡â ‘⠽⠬" }, { "input": "parleys", "output": "â â œâ ‡â ‘⠽⠎" }, { "input": "parliament", "output": "â â œâ ‡â Šâ â °â ž" }, { "input": "parliamentarian", "output": "â â œâ ‡â Šâ â °â žâ œâ Šâ â " }, { "input": "parliamentarians", "output": "â â œâ ‡â Šâ â °â žâ œâ Šâ â â Ž" }, { "input": "parliamentary", "output": "â â œâ ‡â Šâ â °â žâ œâ ½" }, { "input": "parliaments", "output": "â â œâ ‡â Šâ â °â žâ Ž" }, { "input": "parlor", "output": "â â œâ ‡â •â —" }, { "input": "parlors", "output": "â â œâ ‡â •â —â Ž" }, { "input": "parochial", "output": "â â œâ •â ¡â Šâ â ‡" }, { "input": "parochialism", "output": "â â œâ •â ¡â Šâ â ‡â Šâ Žâ " }, { "input": "parodied", "output": "â â œâ •⠙⠊⠫" }, { "input": "parodies", "output": "â â œâ •⠙⠊⠑⠎" }, { "input": "parody", "output": "â â œâ •⠙⠽" }, { "input": "parodying", "output": "â â œâ •⠙⠽⠬" }, { "input": "parole", "output": "â â œâ •⠇⠑" }, { "input": "paroled", "output": "â â œâ •⠇⠫" }, { "input": "parolee", "output": "â â œâ •⠇⠑⠑" }, { "input": "parolees", "output": "â â œâ •⠇⠑⠑⠎" }, { "input": "paroles", "output": "â â œâ •⠇⠑⠎" }, { "input": "paroling", "output": "â â œâ •⠇⠬" }, { "input": "paroxysm", "output": "â â œâ •⠭⠽⠎â " }, { "input": "paroxysms", "output": "â â œâ •⠭⠽⠎â â Ž" }, { "input": "parquet", "output": "â â œâ Ÿâ ¥â ‘â ž" }, { "input": "parqueted", "output": "â â œâ Ÿâ ¥â ‘â žâ «" }, { "input": "parqueting", "output": "â â œâ Ÿâ ¥â ‘â žâ ¬" }, { "input": "parquetry", "output": "â â œâ Ÿâ ¥â ‘â žâ —â ½" }, { "input": "parquets", "output": "â â œâ Ÿâ ¥â ‘â žâ Ž" }, { "input": "parrakeet", "output": "â â œâ —â â …â ‘â ‘â ž" }, { "input": "parrakeets", "output": "â â œâ —â â …â ‘â ‘â žâ Ž" }, { "input": "parred", "output": "â â œâ —â «" }, { "input": "parricide", "output": "â â œâ —⠊⠉⠊⠙⠑" }, { "input": "parricides", "output": "â â œâ —⠊⠉⠊⠙⠑⠎" }, { "input": "parried", "output": "â â œâ —â Šâ «" }, { "input": "parries", "output": "â â œâ —â Šâ ‘â Ž" }, { "input": "parring", "output": "â â œâ —â ¬" }, { "input": "parrot", "output": "â â œâ —â •â ž" }, { "input": "parroted", "output": "â â œâ —â •â žâ «" }, { "input": "parroting", "output": "â â œâ —â •â žâ ¬" }, { "input": "parrots", "output": "â â œâ —â •â žâ Ž" }, { "input": "parry", "output": "â â œâ —â ½" }, { "input": "parrying", "output": "â â œâ —⠽⠬" }, { "input": "pars", "output": "â â œâ Ž" }, { "input": "parse", "output": "â â œâ Žâ ‘" }, { "input": "parsec", "output": "â â œâ Žâ ‘â ‰" }, { "input": "parsecs", "output": "â â œâ Žâ ‘⠉⠎" }, { "input": "parsed", "output": "â â œâ Žâ «" }, { "input": "parser", "output": "â â œâ Žâ »" }, { "input": "parses", "output": "â â œâ Žâ ‘â Ž" }, { "input": "parsimonious", "output": "â â œâ Žâ Šâ â •â â Šâ ³â Ž" }, { "input": "parsimony", "output": "â â œâ Žâ Šâ â •â â ½" }, { "input": "parsing", "output": "â â œâ Žâ ¬" }, { "input": "parsley", "output": "â â œâ Žâ ‡â ‘â ½" }, { "input": "parsnip", "output": "â â œâ Žâ â Šâ " }, { "input": "parsnips", "output": "â â œâ Žâ â Šâ â Ž" }, { "input": "parson", "output": "â â œâ Žâ •â " }, { "input": "parsonage", "output": "â â œâ Žâ •â â â ›â ‘" }, { "input": "parsonages", "output": "â â œâ Žâ •â â â ›â ‘â Ž" }, { "input": "parsons", "output": "â â œâ Žâ •â â Ž" }, { "input": "part", "output": "â â " }, { "input": "partake", "output": "â â â â …â ‘" }, { "input": "partaken", "output": "â â â â …â ¢" }, { "input": "partaker", "output": "â â â â …â »" }, { "input": "partakers", "output": "â â â â …⠻⠎" }, { "input": "partakes", "output": "â â â â …â ‘â Ž" }, { "input": "partaking", "output": "â â â â …â ¬" }, { "input": "parted", "output": "â â â «" }, { "input": "parterre", "output": "â â â »â —â ‘" }, { "input": "parterres", "output": "â â â »â —â ‘â Ž" }, { "input": "parthenogenesis", "output": "â â œâ ®â â •⠛⠢⠑⠎⠊⠎" }, { "input": "partial", "output": "â â â Šâ â ‡" }, { "input": "partiality", "output": "â â â Šâ â ‡â °â ½" }, { "input": "partially", "output": "â â â Šâ â ‡â ‡â ½" }, { "input": "partials", "output": "â â â Šâ â ‡â Ž" }, { "input": "participant", "output": "â â â Šâ ‰â Šâ â â â ž" }, { "input": "participants", "output": "â â â Šâ ‰â Šâ â â â žâ Ž" }, { "input": "participate", "output": "â â â Šâ ‰â Šâ â â žâ ‘" }, { "input": "participated", "output": "â â â Šâ ‰â Šâ â â žâ «" }, { "input": "participates", "output": "â â â Šâ ‰â Šâ â â žâ ‘â Ž" }, { "input": "participating", "output": "â â â Šâ ‰â Šâ â â žâ ¬" }, { "input": "participation", "output": "â â â Šâ ‰â Šâ â â °â " }, { "input": "participator", "output": "â â â Šâ ‰â Šâ â â žâ •â —" }, { "input": "participators", "output": "â â â Šâ ‰â Šâ â â žâ •â —â Ž" }, { "input": "participatory", "output": "â â â Šâ ‰â Šâ â â žâ •â —â ½" }, { "input": "participial", "output": "â â â Šâ ‰â Šâ â Šâ â ‡" }, { "input": "participle", "output": "â â â Šâ ‰â Šâ â ‡â ‘" }, { "input": "participles", "output": "â â â Šâ ‰â Šâ â ‡â ‘â Ž" }, { "input": "particle", "output": "â â â Šâ ‰â ‡â ‘" }, { "input": "particles", "output": "â â â Šâ ‰â ‡â ‘â Ž" }, { "input": "particular", "output": "â â â Šâ ‰â ¥â ‡â œ" }, { "input": "particularities", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "particularity", "output": "â â â Šâ ‰â ¥â ‡â œâ °â ½" }, { "input": "particularization", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ â °â " }, { "input": "particularize", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ ‘" }, { "input": "particularized", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ «" }, { "input": "particularizes", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ ‘â Ž" }, { "input": "particularizing", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ ¬" }, { "input": "particularly", "output": "â â â Šâ ‰â ¥â ‡â œâ ‡â ½" }, { "input": "particulars", "output": "â â â Šâ ‰â ¥â ‡â œâ Ž" }, { "input": "particulate", "output": "â â â Šâ ‰â ¥â ‡â â žâ ‘" }, { "input": "particulates", "output": "â â â Šâ ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "partied", "output": "â â â Šâ «" }, { "input": "parties", "output": "â â â Šâ ‘â Ž" }, { "input": "parting", "output": "â â â ¬" }, { "input": "partings", "output": "â â â ¬â Ž" }, { "input": "partisan", "output": "â â â Šâ Žâ â " }, { "input": "partisans", "output": "â â â Šâ Žâ â â Ž" }, { "input": "partisanship", "output": "â â â Šâ Žâ â â ©â Šâ " }, { "input": "partition", "output": "â â â Šâ °â " }, { "input": "partitioned", "output": "â â â Šâ °â â «" }, { "input": "partitioning", "output": "â â â Šâ °â â ¬" }, { "input": "partitions", "output": "â â â Šâ °â â Ž" }, { "input": "partizan", "output": "â â â Šâ µâ â " }, { "input": "partizans", "output": "â â â Šâ µâ â â Ž" }, { "input": "partly", "output": "â â â ‡â ½" }, { "input": "partner", "output": "â â â â »" }, { "input": "partnered", "output": "â â â â »â «" }, { "input": "partnering", "output": "â â â â »â ¬" }, { "input": "partners", "output": "â â â â »â Ž" }, { "input": "partnership", "output": "â â â â »â ©â Šâ " }, { "input": "partnerships", "output": "â â â â »â ©â Šâ â Ž" }, { "input": "partook", "output": "â â â •â •â …" }, { "input": "partridge", "output": "â â â —⠊⠙⠛⠑" }, { "input": "partridges", "output": "â â â —⠊⠙⠛⠑⠎" }, { "input": "parts", "output": "â â â Ž" }, { "input": "parturition", "output": "â â â ¥â —â Šâ °â " }, { "input": "partway", "output": "â â â ºâ â ½" }, { "input": "party", "output": "â â â ½" }, { "input": "partying", "output": "â â â ½â ¬" }, { "input": "parvenu", "output": "â â œâ §â ¢â ¥" }, { "input": "parvenus", "output": "â â œâ §â ¢â ¥â Ž" }, { "input": "pas", "output": "â â â Ž" }, { "input": "paschal", "output": "â â â Žâ ¡â â ‡" }, { "input": "pasha", "output": "â â â ©â " }, { "input": "pashas", "output": "â â â ©â â Ž" }, { "input": "pass", "output": "â â â Žâ Ž" }, { "input": "passable", "output": "â â â Žâ Žâ â ƒâ ‡â ‘" }, { "input": "passably", "output": "â â â Žâ Žâ â ƒâ ‡â ½" }, { "input": "passage", "output": "â â â Žâ Žâ â ›â ‘" }, { "input": "passages", "output": "â â â Žâ Žâ â ›â ‘â Ž" }, { "input": "passageway", "output": "â â â Žâ Žâ â ›â ‘â ºâ â ½" }, { "input": "passageways", "output": "â â â Žâ Žâ â ›â ‘â ºâ â ½â Ž" }, { "input": "passbook", "output": "â â â Žâ Žâ ƒâ •â •â …" }, { "input": "passbooks", "output": "â â â Žâ Žâ ƒâ •â •â …â Ž" }, { "input": "passed", "output": "â â â Žâ Žâ «" }, { "input": "passel", "output": "â â â Žâ Žâ ‘â ‡" }, { "input": "passels", "output": "â â â Žâ Žâ ‘⠇⠎" }, { "input": "passenger", "output": "â â â Žâ Žâ ¢â ›â »" }, { "input": "passengers", "output": "â â â Žâ Žâ ¢â ›â »â Ž" }, { "input": "passer", "output": "â â â Žâ Žâ »" }, { "input": "passerby", "output": "â â â Žâ Žâ »â ƒâ ½" }, { "input": "passersby", "output": "â â â Žâ Žâ »â Žâ ƒâ ½" }, { "input": "passes", "output": "â â â Žâ Žâ ‘â Ž" }, { "input": "passing", "output": "â â â Žâ Žâ ¬" }, { "input": "passion", "output": "â â â Žâ ¨â " }, { "input": "passionate", "output": "â â â Žâ ¨â â â žâ ‘" }, { "input": "passionately", "output": "â â â Žâ ¨â â â žâ ‘⠇⠽" }, { "input": "passionless", "output": "â â â Žâ ¨â â ¨â Ž" }, { "input": "passions", "output": "â â â Žâ ¨â â Ž" }, { "input": "passive", "output": "â â â Žâ Žâ Šâ §â ‘" }, { "input": "passively", "output": "â â â Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "passives", "output": "â â â Žâ Žâ Šâ §â ‘â Ž" }, { "input": "passivity", "output": "â â â Žâ Žâ Šâ §â °â ½" }, { "input": "passkey", "output": "â â â Žâ Žâ …â ‘â ½" }, { "input": "passkeys", "output": "â â â Žâ Žâ …⠑⠽⠎" }, { "input": "passport", "output": "â â â Žâ Žâ â •â —â ž" }, { "input": "passports", "output": "â â â Žâ Žâ â •â —â žâ Ž" }, { "input": "password", "output": "â â â Žâ Žâ ˜â º" }, { "input": "passwords", "output": "â â â Žâ Žâ ˜â ºâ Ž" }, { "input": "passé", "output": "â â â Žâ Žâ  â ˜â »â â ˜â ‰" }, { "input": "past", "output": "â â â Œ" }, { "input": "pasta", "output": "â â â Œâ " }, { "input": "pastas", "output": "â â â Œâ â Ž" }, { "input": "paste", "output": "â â â Œâ ‘" }, { "input": "pasteboard", "output": "â â â Œâ ‘⠃⠕⠜⠙" }, { "input": "pasted", "output": "â â â Œâ «" }, { "input": "pastel", "output": "â â â Œâ ‘â ‡" }, { "input": "pastels", "output": "â â â Œâ ‘⠇⠎" }, { "input": "pastern", "output": "â â â Œâ »â " }, { "input": "pasterns", "output": "â â â Œâ »â â Ž" }, { "input": "pastes", "output": "â â â Œâ ‘â Ž" }, { "input": "pasteurization", "output": "â â â Œâ ‘⠥⠗⠊⠵â â °â " }, { "input": "pasteurize", "output": "â â â Œâ ‘⠥⠗⠊⠵⠑" }, { "input": "pasteurized", "output": "â â â Œâ ‘⠥⠗⠊⠵⠫" }, { "input": "pasteurizes", "output": "â â â Œâ ‘⠥⠗⠊⠵⠑⠎" }, { "input": "pasteurizing", "output": "â â â Œâ ‘⠥⠗⠊⠵⠬" }, { "input": "pastiche", "output": "â â â Œâ Šâ ¡â ‘" }, { "input": "pastiches", "output": "â â â Œâ Šâ ¡â ‘â Ž" }, { "input": "pastier", "output": "â â â Œâ Šâ »" }, { "input": "pasties", "output": "â â â Œâ Šâ ‘â Ž" }, { "input": "pastiest", "output": "â â â Œâ Šâ ‘â Œ" }, { "input": "pastime", "output": "â â â Žâ â ž" }, { "input": "pastimes", "output": "â â â Žâ â žâ Ž" }, { "input": "pasting", "output": "â â â Œâ ¬" }, { "input": "pastor", "output": "â â â Œâ •â —" }, { "input": "pastoral", "output": "â â â Œâ •â —â â ‡" }, { "input": "pastorals", "output": "â â â Œâ •â —â â ‡â Ž" }, { "input": "pastorate", "output": "â â â Œâ •â —â â žâ ‘" }, { "input": "pastorates", "output": "â â â Œâ •â —â â žâ ‘â Ž" }, { "input": "pastors", "output": "â â â Œâ •â —â Ž" }, { "input": "pastrami", "output": "â â â Œâ —â â â Š" }, { "input": "pastries", "output": "â â â Œâ —â Šâ ‘â Ž" }, { "input": "pastry", "output": "â â â Œâ —â ½" }, { "input": "pasts", "output": "â â â Œâ Ž" }, { "input": "pasturage", "output": "â â â Œâ ¥â —â â ›â ‘" }, { "input": "pasture", "output": "â â â Œâ ¥â —â ‘" }, { "input": "pastured", "output": "â â â Œâ ¥â —â «" }, { "input": "pastures", "output": "â â â Œâ ¥â —â ‘â Ž" }, { "input": "pasturing", "output": "â â â Œâ ¥â —â ¬" }, { "input": "pasty", "output": "â â â Œâ ½" }, { "input": "pat", "output": "â â â ž" }, { "input": "patch", "output": "â â â žâ ¡" }, { "input": "patched", "output": "â â â žâ ¡â «" }, { "input": "patches", "output": "â â â žâ ¡â ‘â Ž" }, { "input": "patchier", "output": "â â â žâ ¡â Šâ »" }, { "input": "patchiest", "output": "â â â žâ ¡â Šâ ‘â Œ" }, { "input": "patchiness", "output": "â â â žâ ¡â Šâ °â Ž" }, { "input": "patching", "output": "â â â žâ ¡â ¬" }, { "input": "patchwork", "output": "â â â žâ ¡â â º" }, { "input": "patchworks", "output": "â â â žâ ¡â â ºâ Ž" }, { "input": "patchy", "output": "â â â žâ ¡â ½" }, { "input": "pate", "output": "â â â žâ ‘" }, { "input": "patella", "output": "â â â žâ ‘⠇⠇â " }, { "input": "patellae", "output": "â â â žâ ‘⠇⠇â â ‘" }, { "input": "patellas", "output": "â â â žâ ‘⠇⠇â â Ž" }, { "input": "patent", "output": "â â â žâ ¢â ž" }, { "input": "patented", "output": "â â â žâ ¢â žâ «" }, { "input": "patenting", "output": "â â â žâ ¢â žâ ¬" }, { "input": "patently", "output": "â â â žâ ¢â žâ ‡â ½" }, { "input": "patents", "output": "â â â žâ ¢â žâ Ž" }, { "input": "paternal", "output": "â â â žâ »â â â ‡" }, { "input": "paternalism", "output": "â â â žâ »â â â ‡â Šâ Žâ " }, { "input": "paternalistic", "output": "â â â žâ »â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "paternally", "output": "â â â žâ »â â â ‡â ‡â ½" }, { "input": "paternity", "output": "â â â žâ »â â °â ½" }, { "input": "pates", "output": "â â â žâ ‘â Ž" }, { "input": "path", "output": "â â â ¹" }, { "input": "pathetic", "output": "â â â ®â žâ Šâ ‰" }, { "input": "pathetically", "output": "â â â ®â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "pathogen", "output": "â â â ¹â •⠛⠢" }, { "input": "pathogenic", "output": "â â â ¹â •⠛⠢⠊⠉" }, { "input": "pathogens", "output": "â â â ¹â •⠛⠢⠎" }, { "input": "pathological", "output": "â â â ¹â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "pathologically", "output": "â â â ¹â •⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "pathologist", "output": "â â â ¹â •⠇⠕⠛⠊⠌" }, { "input": "pathologists", "output": "â â â ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "pathology", "output": "â â â ¹â •⠇⠕⠛⠽" }, { "input": "pathos", "output": "â â â ¹â •â Ž" }, { "input": "paths", "output": "â â â ¹â Ž" }, { "input": "pathway", "output": "â â â ¹â ºâ â ½" }, { "input": "pathways", "output": "â â â ¹â ºâ â ½â Ž" }, { "input": "patience", "output": "â â â žâ Šâ °â ‘" }, { "input": "patient", "output": "â â â žâ Šâ ¢â ž" }, { "input": "patienter", "output": "â â â žâ Šâ ¢â žâ »" }, { "input": "patientest", "output": "â â â žâ Šâ ¢â žâ ‘â Œ" }, { "input": "patiently", "output": "â â â žâ Šâ ¢â žâ ‡â ½" }, { "input": "patients", "output": "â â â žâ Šâ ¢â žâ Ž" }, { "input": "patina", "output": "â â â žâ ”â " }, { "input": "patinae", "output": "â â â žâ ”â â ‘" }, { "input": "patinas", "output": "â â â žâ ”â â Ž" }, { "input": "patine", "output": "â â â žâ ”â ‘" }, { "input": "patio", "output": "â â â žâ Šâ •" }, { "input": "patios", "output": "â â â žâ Šâ •â Ž" }, { "input": "patois", "output": "â â â žâ •â Šâ Ž" }, { "input": "patriarch", "output": "â â â žâ —⠊⠜⠡" }, { "input": "patriarchal", "output": "â â â žâ —⠊⠜⠡â â ‡" }, { "input": "patriarchies", "output": "â â â žâ —⠊⠜⠡⠊⠑⠎" }, { "input": "patriarchs", "output": "â â â žâ —⠊⠜⠡⠎" }, { "input": "patriarchy", "output": "â â â žâ —⠊⠜⠡⠽" }, { "input": "patrician", "output": "â â â žâ —⠊⠉⠊â â " }, { "input": "patricians", "output": "â â â žâ —⠊⠉⠊â â â Ž" }, { "input": "patricide", "output": "â â â žâ —⠊⠉⠊⠙⠑" }, { "input": "patricides", "output": "â â â žâ —⠊⠉⠊⠙⠑⠎" }, { "input": "patrimonial", "output": "â â â žâ —â Šâ â •â â Šâ â ‡" }, { "input": "patrimonies", "output": "â â â žâ —â Šâ â •â â Šâ ‘â Ž" }, { "input": "patrimony", "output": "â â â žâ —â Šâ â •â â ½" }, { "input": "patriot", "output": "â â â žâ —â Šâ •â ž" }, { "input": "patriotic", "output": "â â â žâ —â Šâ •â žâ Šâ ‰" }, { "input": "patriotically", "output": "â â â žâ —â Šâ •â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "patriotism", "output": "â â â žâ —â Šâ •â žâ Šâ Žâ " }, { "input": "patriots", "output": "â â â žâ —â Šâ •â žâ Ž" }, { "input": "patrol", "output": "â â â žâ —â •â ‡" }, { "input": "patrolled", "output": "â â â žâ —⠕⠇⠇⠫" }, { "input": "patrolling", "output": "â â â žâ —⠕⠇⠇⠬" }, { "input": "patrolman", "output": "â â â žâ —â •â ‡â â â " }, { "input": "patrolmen", "output": "â â â žâ —â •â ‡â â ¢" }, { "input": "patrols", "output": "â â â žâ —⠕⠇⠎" }, { "input": "patrolwoman", "output": "â â â žâ —⠕⠇⠺⠕â â â " }, { "input": "patrolwomen", "output": "â â â žâ —⠕⠇⠺⠕â â ¢" }, { "input": "patron", "output": "â â â žâ —â •â " }, { "input": "patronage", "output": "â â â žâ —â •â â â ›â ‘" }, { "input": "patronages", "output": "â â â žâ —â •â â â ›â ‘â Ž" }, { "input": "patronize", "output": "â â â žâ —â •â â Šâ µâ ‘" }, { "input": "patronized", "output": "â â â žâ —â •â â Šâ µâ «" }, { "input": "patronizes", "output": "â â â žâ —â •â â Šâ µâ ‘â Ž" }, { "input": "patronizing", "output": "â â â žâ —â •â â Šâ µâ ¬" }, { "input": "patronizingly", "output": "â â â žâ —â •â â Šâ µâ ¬â ‡â ½" }, { "input": "patrons", "output": "â â â žâ —â •â â Ž" }, { "input": "patronymic", "output": "â â â žâ —â •â â ½â â Šâ ‰" }, { "input": "patronymics", "output": "â â â žâ —â •â â ½â â Šâ ‰â Ž" }, { "input": "pats", "output": "â â â žâ Ž" }, { "input": "patsies", "output": "â â â žâ Žâ Šâ ‘â Ž" }, { "input": "patsy", "output": "â â â žâ Žâ ½" }, { "input": "patted", "output": "â â â žâ žâ «" }, { "input": "patter", "output": "â â â žâ žâ »" }, { "input": "pattered", "output": "â â â žâ žâ »â «" }, { "input": "pattering", "output": "â â â žâ žâ »â ¬" }, { "input": "pattern", "output": "â â â žâ žâ »â " }, { "input": "patterned", "output": "â â â žâ žâ »â â «" }, { "input": "patterning", "output": "â â â žâ žâ »â â ¬" }, { "input": "patterns", "output": "â â â žâ žâ »â â Ž" }, { "input": "patters", "output": "â â â žâ žâ »â Ž" }, { "input": "patties", "output": "â â â žâ žâ Šâ ‘â Ž" }, { "input": "patting", "output": "â â â žâ žâ ¬" }, { "input": "patty", "output": "â â â žâ žâ ½" }, { "input": "paucity", "output": "â â â ¥â ‰â °â ½" }, { "input": "paunch", "output": "â â â ¥â â ¡" }, { "input": "paunches", "output": "â â â ¥â â ¡â ‘â Ž" }, { "input": "paunchier", "output": "â â â ¥â â ¡â Šâ »" }, { "input": "paunchiest", "output": "â â â ¥â â ¡â Šâ ‘â Œ" }, { "input": "paunchy", "output": "â â â ¥â â ¡â ½" }, { "input": "pauper", "output": "â â â ¥â â »" }, { "input": "pauperism", "output": "â â â ¥â â »â Šâ Žâ " }, { "input": "pauperize", "output": "â â â ¥â â »â Šâ µâ ‘" }, { "input": "pauperized", "output": "â â â ¥â â »â Šâ µâ «" }, { "input": "pauperizes", "output": "â â â ¥â â »â Šâ µâ ‘â Ž" }, { "input": "pauperizing", "output": "â â â ¥â â »â Šâ µâ ¬" }, { "input": "paupers", "output": "â â â ¥â â »â Ž" }, { "input": "pause", "output": "â â â ¥â Žâ ‘" }, { "input": "paused", "output": "â â â ¥â Žâ «" }, { "input": "pauses", "output": "â â â ¥â Žâ ‘â Ž" }, { "input": "pausing", "output": "â â â ¥â Žâ ¬" }, { "input": "pave", "output": "â â â §â ‘" }, { "input": "paved", "output": "â â â §â «" }, { "input": "pavement", "output": "â â â §â ‘â °â ž" }, { "input": "pavements", "output": "â â â §â ‘â °â žâ Ž" }, { "input": "paves", "output": "â â â §â ‘â Ž" }, { "input": "pavilion", "output": "â â â §â Šâ ‡â Šâ •â " }, { "input": "pavilions", "output": "â â â §â Šâ ‡â Šâ •â â Ž" }, { "input": "paving", "output": "â â â §â ¬" }, { "input": "pavings", "output": "â â â §â ¬â Ž" }, { "input": "paw", "output": "â â â º" }, { "input": "pawed", "output": "â â â ºâ «" }, { "input": "pawing", "output": "â â â ºâ ¬" }, { "input": "pawl", "output": "â â â ºâ ‡" }, { "input": "pawls", "output": "â â â ºâ ‡â Ž" }, { "input": "pawn", "output": "â â â ºâ " }, { "input": "pawnbroker", "output": "â â â ºâ â ƒâ —â •â …â »" }, { "input": "pawnbrokers", "output": "â â â ºâ â ƒâ —⠕⠅⠻⠎" }, { "input": "pawned", "output": "â â â ºâ â «" }, { "input": "pawning", "output": "â â â ºâ â ¬" }, { "input": "pawns", "output": "â â â ºâ â Ž" }, { "input": "pawnshop", "output": "â â â ºâ â ©â •â " }, { "input": "pawnshops", "output": "â â â ºâ â ©â •â â Ž" }, { "input": "pawpaw", "output": "â â â ºâ â â º" }, { "input": "pawpaws", "output": "â â â ºâ â â ºâ Ž" }, { "input": "paws", "output": "â â â ºâ Ž" }, { "input": "pay", "output": "â â â ½" }, { "input": "payable", "output": "â â â ½â â ƒâ ‡â ‘" }, { "input": "paycheck", "output": "â â â ½â ¡â ‘⠉⠅" }, { "input": "paychecks", "output": "â â â ½â ¡â ‘⠉⠅⠎" }, { "input": "payday", "output": "â â â ½â â ™" }, { "input": "paydays", "output": "â â â ½â â ™â Ž" }, { "input": "payed", "output": "â â â ½â «" }, { "input": "payee", "output": "â â â ½â ‘â ‘" }, { "input": "payees", "output": "â â â ½â ‘â ‘â Ž" }, { "input": "payer", "output": "â â â ½â »" }, { "input": "payers", "output": "â â â ½â »â Ž" }, { "input": "paying", "output": "â â â ½â ¬" }, { "input": "payload", "output": "â â â ½â ‡â •â â ™" }, { "input": "payloads", "output": "â â â ½â ‡â •â â ™â Ž" }, { "input": "paymaster", "output": "â â â ½â â â Œâ »" }, { "input": "paymasters", "output": "â â â ½â â â Œâ »â Ž" }, { "input": "payment", "output": "â â â ½â °â ž" }, { "input": "payments", "output": "â â â ½â °â žâ Ž" }, { "input": "payoff", "output": "â â â ½â ·â ‹" }, { "input": "payoffs", "output": "â â â ½â ·â ‹â Ž" }, { "input": "payroll", "output": "â â â ½â —⠕⠇⠇" }, { "input": "payrolls", "output": "â â â ½â —⠕⠇⠇⠎" }, { "input": "pays", "output": "â â â ½â Ž" }, { "input": "pea", "output": "â â ‘â " }, { "input": "peace", "output": "â â ‚⠉⠑" }, { "input": "peaceable", "output": "â â ‚⠉⠂⠃⠇⠑" }, { "input": "peaceably", "output": "â â ‚⠉⠂⠃⠇⠽" }, { "input": "peaceful", "output": "â â ‚⠉⠑⠰⠇" }, { "input": "peacefully", "output": "â â ‚⠉⠑⠰⠇⠇⠽" }, { "input": "peacefulness", "output": "â â ‚⠉⠑⠰⠇⠰⠎" }, { "input": "peacekeeping", "output": "â â ‚⠉⠑⠅⠑⠑â â ¬" }, { "input": "peacemaker", "output": "â â ‚⠉⠑â â â …â »" }, { "input": "peacemakers", "output": "â â ‚⠉⠑â â â …⠻⠎" }, { "input": "peaces", "output": "â â ‚⠉⠑⠎" }, { "input": "peacetime", "output": "â â ‚⠉⠑â â ž" }, { "input": "peach", "output": "â â ‚â ¡" }, { "input": "peaches", "output": "â â ‚â ¡â ‘â Ž" }, { "input": "peacock", "output": "â â ‚⠉⠕⠉⠅" }, { "input": "peacocks", "output": "â â ‚⠉⠕⠉⠅⠎" }, { "input": "peafowl", "output": "â â ‚⠋⠪⠇" }, { "input": "peafowls", "output": "â â ‚⠋⠪⠇⠎" }, { "input": "peahen", "output": "â â ‚â “â ¢" }, { "input": "peahens", "output": "â â ‚⠓⠢⠎" }, { "input": "peak", "output": "â â ‚â …" }, { "input": "peaked", "output": "â â ‚â …â «" }, { "input": "peaking", "output": "â â ‚â …â ¬" }, { "input": "peaks", "output": "â â ‚â …â Ž" }, { "input": "peal", "output": "â â ‚â ‡" }, { "input": "pealed", "output": "â â ‚⠇⠫" }, { "input": "pealing", "output": "â â ‚⠇⠬" }, { "input": "peals", "output": "â â ‚⠇⠎" }, { "input": "peanut", "output": "â â ‚â â ¥â ž" }, { "input": "peanuts", "output": "â â ‚â â ¥â žâ Ž" }, { "input": "pear", "output": "â â ‘â œ" }, { "input": "pearl", "output": "â â ‘⠜⠇" }, { "input": "pearled", "output": "â â ‘⠜⠇⠫" }, { "input": "pearlier", "output": "â â ‘⠜⠇⠊⠻" }, { "input": "pearliest", "output": "â â ‘⠜⠇⠊⠑⠌" }, { "input": "pearling", "output": "â â ‘⠜⠇⠬" }, { "input": "pearls", "output": "â â ‘⠜⠇⠎" }, { "input": "pearly", "output": "â â ‘⠜⠇⠽" }, { "input": "pears", "output": "â â ‘⠜⠎" }, { "input": "peas", "output": "â â ‚â Ž" }, { "input": "peasant", "output": "â â ‚â Žâ â â ž" }, { "input": "peasantry", "output": "â â ‚â Žâ â â žâ —â ½" }, { "input": "peasants", "output": "â â ‚â Žâ â â žâ Ž" }, { "input": "pease", "output": "â â ‚â Žâ ‘" }, { "input": "peat", "output": "â â ‚â ž" }, { "input": "pebble", "output": "â â ‘⠆⠇⠑" }, { "input": "pebbled", "output": "â â ‘⠆⠇⠫" }, { "input": "pebbles", "output": "â â ‘⠆⠇⠑⠎" }, { "input": "pebblier", "output": "â â ‘⠆⠇⠊⠻" }, { "input": "pebbliest", "output": "â â ‘⠆⠇⠊⠑⠌" }, { "input": "pebbling", "output": "â â ‘⠆⠇⠬" }, { "input": "pebbly", "output": "â â ‘⠆⠇⠽" }, { "input": "pecan", "output": "â â ‘â ‰â â " }, { "input": "pecans", "output": "â â ‘â ‰â â â Ž" }, { "input": "peccadillo", "output": "â â ‘â ’â â ™â Šâ ‡â ‡â •" }, { "input": "peccadilloes", "output": "â â ‘â ’â â ™â Šâ ‡â ‡â •â ‘â Ž" }, { "input": "peccadillos", "output": "â â ‘â ’â â ™â Šâ ‡â ‡â •â Ž" }, { "input": "peccaries", "output": "â â ‘⠒⠜⠊⠑⠎" }, { "input": "peccary", "output": "â â ‘⠒⠜⠽" }, { "input": "peck", "output": "â â ‘⠉⠅" }, { "input": "pecked", "output": "â â ‘⠉⠅⠫" }, { "input": "pecking", "output": "â â ‘⠉⠅⠬" }, { "input": "pecks", "output": "â â ‘⠉⠅⠎" }, { "input": "pectin", "output": "â â ‘⠉⠞⠔" }, { "input": "pectoral", "output": "â â ‘⠉⠞⠕⠗â â ‡" }, { "input": "pectorals", "output": "â â ‘⠉⠞⠕⠗â â ‡â Ž" }, { "input": "peculiar", "output": "â â ‘⠉⠥⠇⠊⠜" }, { "input": "peculiarities", "output": "â â ‘⠉⠥⠇⠊⠜⠊⠞⠊⠑⠎" }, { "input": "peculiarity", "output": "â â ‘⠉⠥⠇⠊⠜⠰⠽" }, { "input": "peculiarly", "output": "â â ‘⠉⠥⠇⠊⠜⠇⠽" }, { "input": "pecuniary", "output": "â â ‘⠉⠥â â Šâ œâ ½" }, { "input": "pedagog", "output": "â â «â â ›â •â ›" }, { "input": "pedagogic", "output": "â â «â â ›â •⠛⠊⠉" }, { "input": "pedagogical", "output": "â â «â â ›â •⠛⠊⠉â â ‡" }, { "input": "pedagogs", "output": "â â «â â ›â •⠛⠎" }, { "input": "pedagogue", "output": "â â «â â ›â •⠛⠥⠑" }, { "input": "pedagogues", "output": "â â «â â ›â •⠛⠥⠑⠎" }, { "input": "pedagogy", "output": "â â «â â ›â •⠛⠽" }, { "input": "pedal", "output": "â â «â â ‡" }, { "input": "pedaled", "output": "â â «â â ‡â «" }, { "input": "pedaling", "output": "â â «â â ‡â ¬" }, { "input": "pedalled", "output": "â â «â â ‡â ‡â «" }, { "input": "pedalling", "output": "â â «â â ‡â ‡â ¬" }, { "input": "pedals", "output": "â â «â â ‡â Ž" }, { "input": "pedant", "output": "â â «â â â ž" }, { "input": "pedantic", "output": "â â «â â â žâ Šâ ‰" }, { "input": "pedantically", "output": "â â «â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "pedantry", "output": "â â «â â â žâ —â ½" }, { "input": "pedants", "output": "â â «â â â žâ Ž" }, { "input": "peddle", "output": "â â «â ™â ‡â ‘" }, { "input": "peddled", "output": "â â «â ™â ‡â «" }, { "input": "peddler", "output": "â â «â ™â ‡â »" }, { "input": "peddlers", "output": "â â «â ™â ‡â »â Ž" }, { "input": "peddles", "output": "â â «â ™â ‡â ‘â Ž" }, { "input": "peddling", "output": "â â «â ™â ‡â ¬" }, { "input": "pederast", "output": "â â «â »â â Œ" }, { "input": "pederasts", "output": "â â «â »â â Œâ Ž" }, { "input": "pederasty", "output": "â â «â »â â Œâ ½" }, { "input": "pedestal", "output": "â â «â ‘â Œâ â ‡" }, { "input": "pedestals", "output": "â â «â ‘â Œâ â ‡â Ž" }, { "input": "pedestrian", "output": "â â «â ‘⠌⠗⠊â â " }, { "input": "pedestrianize", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ ‘" }, { "input": "pedestrianized", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ «" }, { "input": "pedestrianizes", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ ‘â Ž" }, { "input": "pedestrianizing", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ ¬" }, { "input": "pedestrians", "output": "â â «â ‘⠌⠗⠊â â â Ž" }, { "input": "pediatric", "output": "â â «â Šâ â žâ —â Šâ ‰" }, { "input": "pediatrician", "output": "â â «â Šâ â žâ —⠊⠉⠊â â " }, { "input": "pediatricians", "output": "â â «â Šâ â žâ —⠊⠉⠊â â â Ž" }, { "input": "pediatrics", "output": "â â «â Šâ â žâ —⠊⠉⠎" }, { "input": "pediatrist", "output": "â â «â Šâ â žâ —â Šâ Œ" }, { "input": "pediatrists", "output": "â â «â Šâ â žâ —⠊⠌⠎" }, { "input": "pedicure", "output": "â â «â Šâ ‰â ¥â —â ‘" }, { "input": "pedicured", "output": "â â «â Šâ ‰â ¥â —â «" }, { "input": "pedicures", "output": "â â «â Šâ ‰â ¥â —â ‘â Ž" }, { "input": "pedicuring", "output": "â â «â Šâ ‰â ¥â —â ¬" }, { "input": "pedigree", "output": "â â «â Šâ ›â —â ‘â ‘" }, { "input": "pedigreed", "output": "â â «â Šâ ›â —â ‘â «" }, { "input": "pedigrees", "output": "â â «â Šâ ›â —â ‘â ‘â Ž" }, { "input": "pediment", "output": "â â «â Šâ °â ž" }, { "input": "pediments", "output": "â â «â Šâ °â žâ Ž" }, { "input": "pedlar", "output": "â â «â ‡â œ" }, { "input": "pedlars", "output": "â â «â ‡â œâ Ž" }, { "input": "pedometer", "output": "â â «â •â â ‘â žâ »" }, { "input": "pedometers", "output": "â â «â •â â ‘⠞⠻⠎" }, { "input": "pee", "output": "â â ‘â ‘" }, { "input": "peed", "output": "â â ‘â «" }, { "input": "peeing", "output": "â â ‘â ‘â ¬" }, { "input": "peek", "output": "â â ‘â ‘â …" }, { "input": "peekaboo", "output": "â â ‘â ‘â …â â ƒâ •â •" }, { "input": "peeked", "output": "â â ‘â ‘â …â «" }, { "input": "peeking", "output": "â â ‘â ‘â …â ¬" }, { "input": "peeks", "output": "â â ‘â ‘â …â Ž" }, { "input": "peel", "output": "â â ‘â ‘â ‡" }, { "input": "peeled", "output": "â â ‘⠑⠇⠫" }, { "input": "peeling", "output": "â â ‘⠑⠇⠬" }, { "input": "peelings", "output": "â â ‘⠑⠇⠬⠎" }, { "input": "peels", "output": "â â ‘⠑⠇⠎" }, { "input": "peep", "output": "â â ‘â ‘â " }, { "input": "peeped", "output": "â â ‘â ‘â â «" }, { "input": "peeper", "output": "â â ‘â ‘â â »" }, { "input": "peepers", "output": "â â ‘â ‘â â »â Ž" }, { "input": "peephole", "output": "â â ‘â ‘â â “⠕⠇⠑" }, { "input": "peepholes", "output": "â â ‘â ‘â â “⠕⠇⠑⠎" }, { "input": "peeping", "output": "â â ‘â ‘â â ¬" }, { "input": "peeps", "output": "â â ‘â ‘â â Ž" }, { "input": "peer", "output": "â â ‘â »" }, { "input": "peerage", "output": "â â ‘â »â â ›â ‘" }, { "input": "peerages", "output": "â â ‘â »â â ›â ‘â Ž" }, { "input": "peered", "output": "â â ‘⠻⠫" }, { "input": "peering", "output": "â â ‘⠻⠬" }, { "input": "peerless", "output": "â â ‘⠻⠨⠎" }, { "input": "peers", "output": "â â ‘⠻⠎" }, { "input": "pees", "output": "â â ‘â ‘â Ž" }, { "input": "peeve", "output": "â â ‘â ‘â §â ‘" }, { "input": "peeved", "output": "â â ‘â ‘â §â «" }, { "input": "peeves", "output": "â â ‘â ‘â §â ‘â Ž" }, { "input": "peeving", "output": "â â ‘â ‘â §â ¬" }, { "input": "peevish", "output": "â â ‘â ‘â §â Šâ ©" }, { "input": "peevishly", "output": "â â ‘⠑⠧⠊⠩⠇⠽" }, { "input": "peevishness", "output": "â â ‘â ‘â §â Šâ ©â °â Ž" }, { "input": "peewee", "output": "â â ‘⠑⠺⠑⠑" }, { "input": "peewees", "output": "â â ‘⠑⠺⠑⠑⠎" }, { "input": "peg", "output": "â â ‘â ›" }, { "input": "pegged", "output": "â â ‘â ¶â «" }, { "input": "pegging", "output": "â â ‘â ¶â ¬" }, { "input": "pegs", "output": "â â ‘⠛⠎" }, { "input": "pejorative", "output": "â â ‘â šâ •â —â â žâ Šâ §â ‘" }, { "input": "pejoratives", "output": "â â ‘â šâ •â —â â žâ Šâ §â ‘â Ž" }, { "input": "pekoe", "output": "â â ‘â …â •â ‘" }, { "input": "pelagic", "output": "â â ‘â ‡â â ›â Šâ ‰" }, { "input": "pelican", "output": "â â ‘⠇⠊⠉â â " }, { "input": "pelicans", "output": "â â ‘⠇⠊⠉â â â Ž" }, { "input": "pellagra", "output": "â â ‘⠇⠇â â ›â —â " }, { "input": "pellet", "output": "â â ‘⠇⠇⠑⠞" }, { "input": "pelleted", "output": "â â ‘⠇⠇⠑⠞⠫" }, { "input": "pelleting", "output": "â â ‘⠇⠇⠑⠞⠬" }, { "input": "pellets", "output": "â â ‘⠇⠇⠑⠞⠎" }, { "input": "pellucid", "output": "â â ‘⠇⠇⠥⠉⠊⠙" }, { "input": "pelt", "output": "â â ‘⠇⠞" }, { "input": "pelted", "output": "â â ‘⠇⠞⠫" }, { "input": "pelting", "output": "â â ‘⠇⠞⠬" }, { "input": "pelts", "output": "â â ‘⠇⠞⠎" }, { "input": "pelves", "output": "â â ‘⠇⠧⠑⠎" }, { "input": "pelvic", "output": "â â ‘⠇⠧⠊⠉" }, { "input": "pelvis", "output": "â â ‘⠇⠧⠊⠎" }, { "input": "pelvises", "output": "â â ‘⠇⠧⠊⠎⠑⠎" }, { "input": "pen", "output": "â â ¢" }, { "input": "penal", "output": "â â ¢â â ‡" }, { "input": "penalize", "output": "â â ¢â â ‡â Šâ µâ ‘" }, { "input": "penalized", "output": "â â ¢â â ‡â Šâ µâ «" }, { "input": "penalizes", "output": "â â ¢â â ‡â Šâ µâ ‘â Ž" }, { "input": "penalizing", "output": "â â ¢â â ‡â Šâ µâ ¬" }, { "input": "penalties", "output": "â â ¢â â ‡â žâ Šâ ‘â Ž" }, { "input": "penalty", "output": "â â ¢â â ‡â žâ ½" }, { "input": "penance", "output": "â â ¢â ¨â ‘" }, { "input": "penances", "output": "â â ¢â ¨â ‘â Ž" }, { "input": "pence", "output": "â â °â ‘" }, { "input": "penchant", "output": "â â ¢â ¡â â â ž" }, { "input": "penchants", "output": "â â ¢â ¡â â â žâ Ž" }, { "input": "pencil", "output": "â â ¢â ‰â Šâ ‡" }, { "input": "penciled", "output": "â â ¢â ‰â Šâ ‡â «" }, { "input": "penciling", "output": "â â ¢â ‰â Šâ ‡â ¬" }, { "input": "pencilled", "output": "â â ¢â ‰â Šâ ‡â ‡â «" }, { "input": "pencilling", "output": "â â ¢â ‰â Šâ ‡â ‡â ¬" }, { "input": "pencils", "output": "â â ¢â ‰â Šâ ‡â Ž" }, { "input": "pendant", "output": "â â ¢â ™â â â ž" }, { "input": "pendants", "output": "â â ¢â ™â â â žâ Ž" }, { "input": "pended", "output": "â â ¢â ™â «" }, { "input": "pendent", "output": "â â ¢â ™â ¢â ž" }, { "input": "pendents", "output": "â â ¢â ™â ¢â žâ Ž" }, { "input": "pending", "output": "â â ¢â ™â ¬" }, { "input": "pends", "output": "â â ¢â ™â Ž" }, { "input": "pendulous", "output": "â â ¢â ™â ¥â ‡â ³â Ž" }, { "input": "pendulum", "output": "â â ¢â ™â ¥â ‡â ¥â " }, { "input": "pendulums", "output": "â â ¢â ™â ¥â ‡â ¥â â Ž" }, { "input": "penes", "output": "â â ¢â ‘â Ž" }, { "input": "penetrable", "output": "â â ¢â ‘â žâ —â â ƒâ ‡â ‘" }, { "input": "penetrate", "output": "â â ¢â ‘â žâ —â â žâ ‘" }, { "input": "penetrated", "output": "â â ¢â ‘â žâ —â â žâ «" }, { "input": "penetrates", "output": "â â ¢â ‘â žâ —â â žâ ‘â Ž" }, { "input": "penetrating", "output": "â â ¢â ‘â žâ —â â žâ ¬" }, { "input": "penetration", "output": "â â ¢â ‘â žâ —â â °â " }, { "input": "penetrations", "output": "â â ¢â ‘â žâ —â â °â â Ž" }, { "input": "penetrative", "output": "â â ¢â ‘â žâ —â â žâ Šâ §â ‘" }, { "input": "penguin", "output": "â â ¢â ›â ¥â ”" }, { "input": "penguins", "output": "â â ¢â ›â ¥â ”â Ž" }, { "input": "penicillin", "output": "â â ¢â Šâ ‰â Šâ ‡â ‡â ”" }, { "input": "penile", "output": "â â ¢â Šâ ‡â ‘" }, { "input": "peninsula", "output": "â â ¢â ”⠎⠥⠇â " }, { "input": "peninsular", "output": "â â ¢â ”⠎⠥⠇⠜" }, { "input": "peninsulas", "output": "â â ¢â ”⠎⠥⠇â â Ž" }, { "input": "penis", "output": "â â ¢â Šâ Ž" }, { "input": "penises", "output": "â â ¢â Šâ Žâ ‘â Ž" }, { "input": "penitence", "output": "â â ¢â Šâ žâ °â ‘" }, { "input": "penitent", "output": "â â ¢â Šâ žâ ¢â ž" }, { "input": "penitential", "output": "â â ¢â Šâ žâ ¢â žâ Šâ â ‡" }, { "input": "penitentiaries", "output": "â â ¢â Šâ žâ ¢â žâ Šâ œâ Šâ ‘â Ž" }, { "input": "penitentiary", "output": "â â ¢â Šâ žâ ¢â žâ Šâ œâ ½" }, { "input": "penitently", "output": "â â ¢â Šâ žâ ¢â žâ ‡â ½" }, { "input": "penitents", "output": "â â ¢â Šâ žâ ¢â žâ Ž" }, { "input": "penknife", "output": "â â ¢â …â â Šâ ‹â ‘" }, { "input": "penknives", "output": "â â ¢â …â â Šâ §â ‘â Ž" }, { "input": "penlight", "output": "â â ¢â ‡â Šâ £â ž" }, { "input": "penlights", "output": "â â ¢â ‡â Šâ £â žâ Ž" }, { "input": "penlite", "output": "â â ¢â ‡â Šâ žâ ‘" }, { "input": "penlites", "output": "â â ¢â ‡â Šâ žâ ‘â Ž" }, { "input": "penmanship", "output": "â â ¢â â â â ©â Šâ " }, { "input": "pennant", "output": "â â ¢â â â â ž" }, { "input": "pennants", "output": "â â ¢â â â â žâ Ž" }, { "input": "penned", "output": "â â ¢â â «" }, { "input": "pennies", "output": "â â ¢â â Šâ ‘â Ž" }, { "input": "penniless", "output": "â â ¢â â Šâ ¨â Ž" }, { "input": "penning", "output": "â â ¢â â ¬" }, { "input": "pennon", "output": "â â ¢â â •â " }, { "input": "pennons", "output": "â â ¢â â •â â Ž" }, { "input": "penny", "output": "â â ¢â â ½" }, { "input": "pennyweight", "output": "â â ¢â â ½â ºâ ‘⠊⠣⠞" }, { "input": "pennyweights", "output": "â â ¢â â ½â ºâ ‘⠊⠣⠞⠎" }, { "input": "penologist", "output": "â â ¢â •⠇⠕⠛⠊⠌" }, { "input": "penologists", "output": "â â ¢â •⠇⠕⠛⠊⠌⠎" }, { "input": "penology", "output": "â â ¢â •⠇⠕⠛⠽" }, { "input": "pens", "output": "â â ¢â Ž" }, { "input": "pension", "output": "â â ¢â ¨â " }, { "input": "pensioned", "output": "â â ¢â ¨â â «" }, { "input": "pensioner", "output": "â â ¢â ¨â â »" }, { "input": "pensioners", "output": "â â ¢â ¨â â »â Ž" }, { "input": "pensioning", "output": "â â ¢â ¨â â ¬" }, { "input": "pensions", "output": "â â ¢â ¨â â Ž" }, { "input": "pensive", "output": "â â ¢â Žâ Šâ §â ‘" }, { "input": "pensively", "output": "â â ¢â Žâ Šâ §â ‘⠇⠽" }, { "input": "pensiveness", "output": "â â ¢â Žâ Šâ §â ‘â °â Ž" }, { "input": "pent", "output": "â â ¢â ž" }, { "input": "pentagon", "output": "â â ¢â žâ â ›â •â " }, { "input": "pentagonal", "output": "â â ¢â žâ â ›â •â â â ‡" }, { "input": "pentagons", "output": "â â ¢â žâ â ›â •â â Ž" }, { "input": "pentameter", "output": "â â ¢â žâ â â ‘â žâ »" }, { "input": "pentameters", "output": "â â ¢â žâ â â ‘⠞⠻⠎" }, { "input": "pentathlon", "output": "â â ¢â žâ â ¹â ‡â •â " }, { "input": "pentathlons", "output": "â â ¢â žâ â ¹â ‡â •â â Ž" }, { "input": "penthouse", "output": "â â ¢â žâ “⠳⠎⠑" }, { "input": "penthouses", "output": "â â ¢â žâ “⠳⠎⠑⠎" }, { "input": "penultimate", "output": "â â ¢â ¥â ‡â žâ Šâ â â žâ ‘" }, { "input": "penultimates", "output": "â â ¢â ¥â ‡â žâ Šâ â â žâ ‘â Ž" }, { "input": "penurious", "output": "â â ¢â ¥â —⠊⠳⠎" }, { "input": "penury", "output": "â â ¢â ¥â —â ½" }, { "input": "peon", "output": "â â ‘â •â " }, { "input": "peonage", "output": "â â ‘â •â â â ›â ‘" }, { "input": "peonies", "output": "â â ‘â •â â Šâ ‘â Ž" }, { "input": "peons", "output": "â â ‘â •â â Ž" }, { "input": "peony", "output": "â â ‘â •â â ½" }, { "input": "people", "output": "â " }, { "input": "peopled", "output": "â â ‘â •â â ‡â «" }, { "input": "peoples", "output": "â â ‘â •â â ‡â ‘â Ž" }, { "input": "peopling", "output": "â â ‘â •â â ‡â ¬" }, { "input": "pep", "output": "â â ‘â " }, { "input": "pepped", "output": "â â ‘â â â «" }, { "input": "pepper", "output": "â â ‘â â â »" }, { "input": "peppercorn", "output": "â â ‘â â â »â ‰â •â —â " }, { "input": "peppercorns", "output": "â â ‘â â â »â ‰â •â —â â Ž" }, { "input": "peppered", "output": "â â ‘â â â »â «" }, { "input": "peppering", "output": "â â ‘â â â »â ¬" }, { "input": "peppermint", "output": "â â ‘â â â »â â ”â ž" }, { "input": "peppermints", "output": "â â ‘â â â »â â ”â žâ Ž" }, { "input": "pepperoni", "output": "â â ‘â â â »â •â â Š" }, { "input": "pepperonis", "output": "â â ‘â â â »â •â â Šâ Ž" }, { "input": "peppers", "output": "â â ‘â â â »â Ž" }, { "input": "peppery", "output": "â â ‘â â â »â ½" }, { "input": "peppier", "output": "â â ‘â â â Šâ »" }, { "input": "peppiest", "output": "â â ‘â â â Šâ ‘â Œ" }, { "input": "pepping", "output": "â â ‘â â â ¬" }, { "input": "peppy", "output": "â â ‘â â â ½" }, { "input": "peps", "output": "â â ‘â â Ž" }, { "input": "pepsin", "output": "â â ‘â â Žâ ”" }, { "input": "peptic", "output": "â â ‘â â žâ Šâ ‰" }, { "input": "peptics", "output": "â â ‘â â žâ Šâ ‰â Ž" }, { "input": "per", "output": "â â »" }, { "input": "perambulate", "output": "â â »â â â ƒâ ¥â ‡â â žâ ‘" }, { "input": "perambulated", "output": "â â »â â â ƒâ ¥â ‡â â žâ «" }, { "input": "perambulates", "output": "â â »â â â ƒâ ¥â ‡â â žâ ‘â Ž" }, { "input": "perambulating", "output": "â â »â â â ƒâ ¥â ‡â â žâ ¬" }, { "input": "perambulator", "output": "â â »â â â ƒâ ¥â ‡â â žâ •â —" }, { "input": "perambulators", "output": "â â »â â â ƒâ ¥â ‡â â žâ •â —â Ž" }, { "input": "percale", "output": "â â »â ‰â â ‡â ‘" }, { "input": "percales", "output": "â â »â ‰â â ‡â ‘â Ž" }, { "input": "perceivable", "output": "â â »â ‰â ‘â Šâ §â â ƒâ ‡â ‘" }, { "input": "perceive", "output": "â â »â ‰â §" }, { "input": "perceived", "output": "â â »â ‰â §â ™" }, { "input": "perceives", "output": "â â »â ‰â §â Ž" }, { "input": "perceiving", "output": "â â »â ‰â §â ›" }, { "input": "percent", "output": "â â »â ‰â ¢â ž" }, { "input": "percentage", "output": "â â »â ‰â ¢â žâ â ›â ‘" }, { "input": "percentages", "output": "â â »â ‰â ¢â žâ â ›â ‘â Ž" }, { "input": "percentile", "output": "â â »â ‰â ¢â žâ Šâ ‡â ‘" }, { "input": "percentiles", "output": "â â »â ‰â ¢â žâ Šâ ‡â ‘â Ž" }, { "input": "percents", "output": "â â »â ‰â ¢â žâ Ž" }, { "input": "perceptible", "output": "â â »â ‰â ‘â â žâ Šâ ƒâ ‡â ‘" }, { "input": "perceptibly", "output": "â â »â ‰â ‘â â žâ Šâ ƒâ ‡â ½" }, { "input": "perception", "output": "â â »â ‰â ‘â â °â " }, { "input": "perceptions", "output": "â â »â ‰â ‘â â °â â Ž" }, { "input": "perceptive", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘" }, { "input": "perceptively", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘⠇⠽" }, { "input": "perceptiveness", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘â °â Ž" }, { "input": "perceptual", "output": "â â »â ‰â ‘â â žâ ¥â â ‡" }, { "input": "perch", "output": "â â »â ¡" }, { "input": "perchance", "output": "â â »â ¡â ¨â ‘" }, { "input": "perched", "output": "â â »â ¡â «" }, { "input": "perches", "output": "â â »â ¡â ‘â Ž" }, { "input": "perching", "output": "â â »â ¡â ¬" }, { "input": "percolate", "output": "â â »â ‰â •â ‡â â žâ ‘" }, { "input": "percolated", "output": "â â »â ‰â •â ‡â â žâ «" }, { "input": "percolates", "output": "â â »â ‰â •â ‡â â žâ ‘â Ž" }, { "input": "percolating", "output": "â â »â ‰â •â ‡â â žâ ¬" }, { "input": "percolation", "output": "â â »â ‰â •â ‡â â °â " }, { "input": "percolator", "output": "â â »â ‰â •â ‡â â žâ •â —" }, { "input": "percolators", "output": "â â »â ‰â •â ‡â â žâ •â —â Ž" }, { "input": "percussion", "output": "â â »â ‰â ¥â Žâ ¨â " }, { "input": "percussionist", "output": "â â »â ‰â ¥â Žâ ¨â â Šâ Œ" }, { "input": "percussionists", "output": "â â »â ‰â ¥â Žâ ¨â â Šâ Œâ Ž" }, { "input": "perdition", "output": "â â »â ™â Šâ °â " }, { "input": "peregrination", "output": "â â »â ‘⠛⠗⠔â â °â " }, { "input": "peregrinations", "output": "â â »â ‘⠛⠗⠔â â °â â Ž" }, { "input": "peremptorily", "output": "â â »â ‘â â â žâ •⠗⠊⠇⠽" }, { "input": "peremptory", "output": "â â »â ‘â â â žâ •â —â ½" }, { "input": "perennial", "output": "â â »â ¢â â Šâ â ‡" }, { "input": "perennially", "output": "â â »â ¢â â Šâ â ‡â ‡â ½" }, { "input": "perennials", "output": "â â »â ¢â â Šâ â ‡â Ž" }, { "input": "perfect", "output": "â â »â ‹â ‘⠉⠞" }, { "input": "perfected", "output": "â â »â ‹â ‘⠉⠞⠫" }, { "input": "perfecter", "output": "â â »â ‹â ‘⠉⠞⠻" }, { "input": "perfectest", "output": "â â »â ‹â ‘⠉⠞⠑⠌" }, { "input": "perfectible", "output": "â â »â ‹â ‘⠉⠞⠊⠃⠇⠑" }, { "input": "perfecting", "output": "â â »â ‹â ‘⠉⠞⠬" }, { "input": "perfection", "output": "â â »â ‹â ‘⠉⠰â " }, { "input": "perfectionism", "output": "â â »â ‹â ‘⠉⠰â â Šâ Žâ " }, { "input": "perfectionist", "output": "â â »â ‹â ‘⠉⠰â â Šâ Œ" }, { "input": "perfectionists", "output": "â â »â ‹â ‘⠉⠰â â Šâ Œâ Ž" }, { "input": "perfections", "output": "â â »â ‹â ‘⠉⠰â â Ž" }, { "input": "perfectly", "output": "â â »â ‹â ‘⠉⠞⠇⠽" }, { "input": "perfects", "output": "â â »â ‹â ‘⠉⠞⠎" }, { "input": "perfidies", "output": "â â »â ‹â Šâ ™â Šâ ‘â Ž" }, { "input": "perfidious", "output": "â â »â ‹â Šâ ™â Šâ ³â Ž" }, { "input": "perfidy", "output": "â â »â ‹â Šâ ™â ½" }, { "input": "perforate", "output": "â â »â ¿â â žâ ‘" }, { "input": "perforated", "output": "â â »â ¿â â žâ «" }, { "input": "perforates", "output": "â â »â ¿â â žâ ‘â Ž" }, { "input": "perforating", "output": "â â »â ¿â â žâ ¬" }, { "input": "perforation", "output": "â â »â ¿â â °â " }, { "input": "perforations", "output": "â â »â ¿â â °â â Ž" }, { "input": "perforce", "output": "â â »â ¿â ‰â ‘" }, { "input": "perform", "output": "â â »â ¿â " }, { "input": "performance", "output": "â â »â ¿â â ¨â ‘" }, { "input": "performances", "output": "â â »â ¿â â ¨â ‘â Ž" }, { "input": "performed", "output": "â â »â ¿â â «" }, { "input": "performer", "output": "â â »â ¿â â »" }, { "input": "performers", "output": "â â »â ¿â â »â Ž" }, { "input": "performing", "output": "â â »â ¿â â ¬" }, { "input": "performs", "output": "â â »â ¿â â Ž" }, { "input": "perfume", "output": "â â »â ‹â ¥â â ‘" }, { "input": "perfumed", "output": "â â »â ‹â ¥â â «" }, { "input": "perfumeries", "output": "â â »â ‹â ¥â â »â Šâ ‘â Ž" }, { "input": "perfumery", "output": "â â »â ‹â ¥â â »â ½" }, { "input": "perfumes", "output": "â â »â ‹â ¥â â ‘â Ž" }, { "input": "perfuming", "output": "â â »â ‹â ¥â â ¬" }, { "input": "perfunctorily", "output": "â â »â ‹â ¥â â ‰â žâ •⠗⠊⠇⠽" }, { "input": "perfunctory", "output": "â â »â ‹â ¥â â ‰â žâ •â —â ½" }, { "input": "perhaps", "output": "â â »â “" }, { "input": "pericardia", "output": "â â »â Šâ ‰â œâ ™â Šâ " }, { "input": "pericardium", "output": "â â »â Šâ ‰â œâ ™â Šâ ¥â " }, { "input": "pericardiums", "output": "â â »â Šâ ‰â œâ ™â Šâ ¥â â Ž" }, { "input": "perigee", "output": "â â »â Šâ ›â ‘â ‘" }, { "input": "perigees", "output": "â â »â Šâ ›â ‘â ‘â Ž" }, { "input": "perihelia", "output": "â â »â Šâ “⠑⠇⠊â " }, { "input": "perihelion", "output": "â â »â Šâ “⠑⠇⠊⠕â " }, { "input": "perihelions", "output": "â â »â Šâ “⠑⠇⠊⠕â â Ž" }, { "input": "peril", "output": "â â »â Šâ ‡" }, { "input": "periled", "output": "â â »â Šâ ‡â «" }, { "input": "periling", "output": "â â »â Šâ ‡â ¬" }, { "input": "perilled", "output": "â â »â Šâ ‡â ‡â «" }, { "input": "perilling", "output": "â â »â Šâ ‡â ‡â ¬" }, { "input": "perilous", "output": "â â »â Šâ ‡â ³â Ž" }, { "input": "perilously", "output": "â â »â Šâ ‡â ³â Žâ ‡â ½" }, { "input": "perils", "output": "â â »â Šâ ‡â Ž" }, { "input": "perimeter", "output": "â â »â Šâ â ‘â žâ »" }, { "input": "perimeters", "output": "â â »â Šâ â ‘⠞⠻⠎" }, { "input": "period", "output": "â â »â Šâ •â ™" }, { "input": "periodic", "output": "â â »â Šâ •⠙⠊⠉" }, { "input": "periodical", "output": "â â »â Šâ •⠙⠊⠉â â ‡" }, { "input": "periodically", "output": "â â »â Šâ •⠙⠊⠉â â ‡â ‡â ½" }, { "input": "periodicals", "output": "â â »â Šâ •⠙⠊⠉â â ‡â Ž" }, { "input": "periodicity", "output": "â â »â Šâ •⠙⠊⠉⠰⠽" }, { "input": "periodontal", "output": "â â »â Šâ •⠙⠕â â žâ â ‡" }, { "input": "periods", "output": "â â »â Šâ •⠙⠎" }, { "input": "peripatetic", "output": "â â »â Šâ â â žâ ‘â žâ Šâ ‰" }, { "input": "peripatetics", "output": "â â »â Šâ â â žâ ‘⠞⠊⠉⠎" }, { "input": "peripheral", "output": "â â »â Šâ â “â »â â ‡" }, { "input": "peripherals", "output": "â â »â Šâ â “â »â â ‡â Ž" }, { "input": "peripheries", "output": "â â »â Šâ â “⠻⠊⠑⠎" }, { "input": "periphery", "output": "â â »â Šâ â “⠻⠽" }, { "input": "periphrases", "output": "â â »â Šâ â “â —â â Žâ ‘â Ž" }, { "input": "periphrasis", "output": "â â »â Šâ â “â —â â Žâ Šâ Ž" }, { "input": "periscope", "output": "â â »â Šâ Žâ ‰â •â â ‘" }, { "input": "periscopes", "output": "â â »â Šâ Žâ ‰â •â â ‘â Ž" }, { "input": "perish", "output": "â â »â Šâ ©" }, { "input": "perishable", "output": "â â »â Šâ ©â â ƒâ ‡â ‘" }, { "input": "perishables", "output": "â â »â Šâ ©â â ƒâ ‡â ‘â Ž" }, { "input": "perished", "output": "â â »â Šâ ©â «" }, { "input": "perishes", "output": "â â »â Šâ ©â ‘â Ž" }, { "input": "perishing", "output": "â â »â Šâ ©â ¬" }, { "input": "peritonea", "output": "â â »â Šâ žâ •â â ‘â " }, { "input": "peritoneum", "output": "â â »â Šâ žâ •â â ‘â ¥â " }, { "input": "peritoneums", "output": "â â »â Šâ žâ •â â ‘â ¥â â Ž" }, { "input": "peritonitis", "output": "â â »â Šâ žâ •â â Šâ žâ Šâ Ž" }, { "input": "periwig", "output": "â â »â Šâ ºâ Šâ ›" }, { "input": "periwigs", "output": "â â »â Šâ ºâ Šâ ›â Ž" }, { "input": "periwinkle", "output": "â â »â Šâ ºâ ”⠅⠇⠑" }, { "input": "periwinkles", "output": "â â »â Šâ ºâ ”⠅⠇⠑⠎" }, { "input": "perjure", "output": "â â »â šâ ¥â —â ‘" }, { "input": "perjured", "output": "â â »â šâ ¥â —â «" }, { "input": "perjurer", "output": "â â »â šâ ¥â —â »" }, { "input": "perjurers", "output": "â â »â šâ ¥â —⠻⠎" }, { "input": "perjures", "output": "â â »â šâ ¥â —â ‘â Ž" }, { "input": "perjuries", "output": "â â »â šâ ¥â —â Šâ ‘â Ž" }, { "input": "perjuring", "output": "â â »â šâ ¥â —â ¬" }, { "input": "perjury", "output": "â â »â šâ ¥â —â ½" }, { "input": "perk", "output": "â â »â …" }, { "input": "perked", "output": "â â »â …â «" }, { "input": "perkier", "output": "â â »â …â Šâ »" }, { "input": "perkiest", "output": "â â »â …â Šâ ‘â Œ" }, { "input": "perkiness", "output": "â â »â …â Šâ °â Ž" }, { "input": "perking", "output": "â â »â …â ¬" }, { "input": "perks", "output": "â â »â …â Ž" }, { "input": "perky", "output": "â â »â …â ½" }, { "input": "perm", "output": "â â »â " }, { "input": "permafrost", "output": "â â »â â â ‹â —â •â Œ" }, { "input": "permanence", "output": "â â »â â â â °â ‘" }, { "input": "permanent", "output": "â â »â â â â ¢â ž" }, { "input": "permanently", "output": "â â »â â â â ¢â žâ ‡â ½" }, { "input": "permanents", "output": "â â »â â â â ¢â žâ Ž" }, { "input": "permeability", "output": "â â »â â ‚⠃⠊⠇⠰⠽" }, { "input": "permeable", "output": "â â »â â ‚⠃⠇⠑" }, { "input": "permeate", "output": "â â »â â ‚â žâ ‘" }, { "input": "permeated", "output": "â â »â â ‚â žâ «" }, { "input": "permeates", "output": "â â »â â ‚â žâ ‘â Ž" }, { "input": "permeating", "output": "â â »â â ‚â žâ ¬" }, { "input": "permed", "output": "â â »â â «" }, { "input": "perming", "output": "â â »â â ¬" }, { "input": "permissible", "output": "â â »â â Šâ Žâ Žâ Šâ ƒâ ‡â ‘" }, { "input": "permissibly", "output": "â â »â â Šâ Žâ Žâ Šâ ƒâ ‡â ½" }, { "input": "permission", "output": "â â »â â Šâ Žâ ¨â " }, { "input": "permissions", "output": "â â »â â Šâ Žâ ¨â â Ž" }, { "input": "permissive", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "permissively", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "permissiveness", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "permit", "output": "â â »â â Šâ ž" }, { "input": "permits", "output": "â â »â â Šâ žâ Ž" }, { "input": "permitted", "output": "â â »â â Šâ žâ žâ «" }, { "input": "permitting", "output": "â â »â â Šâ žâ žâ ¬" }, { "input": "perms", "output": "â â »â â Ž" }, { "input": "permutation", "output": "â â »â â ¥â žâ â °â " }, { "input": "permutations", "output": "â â »â â ¥â žâ â °â â Ž" }, { "input": "permute", "output": "â â »â â ¥â žâ ‘" }, { "input": "permuted", "output": "â â »â â ¥â žâ «" }, { "input": "permutes", "output": "â â »â â ¥â žâ ‘â Ž" }, { "input": "permuting", "output": "â â »â â ¥â žâ ¬" }, { "input": "pernicious", "output": "â â »â â Šâ ‰â Šâ ³â Ž" }, { "input": "perniciously", "output": "â â »â â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "peroration", "output": "â â »â •â —â â °â " }, { "input": "perorations", "output": "â â »â •â —â â °â â Ž" }, { "input": "peroxide", "output": "â â »â •⠭⠊⠙⠑" }, { "input": "peroxided", "output": "â â »â •⠭⠊⠙⠫" }, { "input": "peroxides", "output": "â â »â •⠭⠊⠙⠑⠎" }, { "input": "peroxiding", "output": "â â »â •⠭⠊⠙⠬" }, { "input": "perpendicular", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œ" }, { "input": "perpendiculars", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œâ Ž" }, { "input": "perpetrate", "output": "â â »â â ‘â žâ —â â žâ ‘" }, { "input": "perpetrated", "output": "â â »â â ‘â žâ —â â žâ «" }, { "input": "perpetrates", "output": "â â »â â ‘â žâ —â â žâ ‘â Ž" }, { "input": "perpetrating", "output": "â â »â â ‘â žâ —â â žâ ¬" }, { "input": "perpetration", "output": "â â »â â ‘â žâ —â â °â " }, { "input": "perpetrator", "output": "â â »â â ‘â žâ —â â žâ •â —" }, { "input": "perpetrators", "output": "â â »â â ‘â žâ —â â žâ •â —â Ž" }, { "input": "perpetual", "output": "â â »â â ‘â žâ ¥â â ‡" }, { "input": "perpetually", "output": "â â »â â ‘â žâ ¥â â ‡â ‡â ½" }, { "input": "perpetuals", "output": "â â »â â ‘â žâ ¥â â ‡â Ž" }, { "input": "perpetuate", "output": "â â »â â ‘â žâ ¥â â žâ ‘" }, { "input": "perpetuated", "output": "â â »â â ‘â žâ ¥â â žâ «" }, { "input": "perpetuates", "output": "â â »â â ‘â žâ ¥â â žâ ‘â Ž" }, { "input": "perpetuating", "output": "â â »â â ‘â žâ ¥â â žâ ¬" }, { "input": "perpetuation", "output": "â â »â â ‘â žâ ¥â â °â " }, { "input": "perpetuity", "output": "â â »â â ‘⠞⠥⠰⠽" }, { "input": "perplex", "output": "â â »â â ‡â ‘â ­" }, { "input": "perplexed", "output": "â â »â â ‡â ‘â ­â «" }, { "input": "perplexes", "output": "â â »â â ‡â ‘â ­â ‘â Ž" }, { "input": "perplexing", "output": "â â »â â ‡â ‘â ­â ¬" }, { "input": "perplexities", "output": "â â »â â ‡â ‘â ­â Šâ žâ Šâ ‘â Ž" }, { "input": "perplexity", "output": "â â »â â ‡â ‘â ­â °â ½" }, { "input": "perquisite", "output": "â â »â Ÿâ ¥â Šâ Žâ Šâ žâ ‘" }, { "input": "perquisites", "output": "â â »â Ÿâ ¥â Šâ Žâ Šâ žâ ‘â Ž" }, { "input": "persecute", "output": "â â »â Žâ ‘⠉⠥⠞⠑" }, { "input": "persecuted", "output": "â â »â Žâ ‘⠉⠥⠞⠫" }, { "input": "persecutes", "output": "â â »â Žâ ‘⠉⠥⠞⠑⠎" }, { "input": "persecuting", "output": "â â »â Žâ ‘⠉⠥⠞⠬" }, { "input": "persecution", "output": "â â »â Žâ ‘⠉⠥⠰â " }, { "input": "persecutions", "output": "â â »â Žâ ‘⠉⠥⠰â â Ž" }, { "input": "persecutor", "output": "â â »â Žâ ‘⠉⠥⠞⠕⠗" }, { "input": "persecutors", "output": "â â »â Žâ ‘⠉⠥⠞⠕⠗⠎" }, { "input": "perseverance", "output": "â â »â Žâ ‘⠧⠻⠨⠑" }, { "input": "persevere", "output": "â â »â Žâ ‘⠧⠻⠑" }, { "input": "persevered", "output": "â â »â Žâ ‘⠧⠻⠫" }, { "input": "perseveres", "output": "â â »â Žâ ‘⠧⠻⠑⠎" }, { "input": "persevering", "output": "â â »â Žâ ‘⠧⠻⠬" }, { "input": "persiflage", "output": "â â »â Žâ Šâ ‹â ‡â â ›â ‘" }, { "input": "persimmon", "output": "â â »â Žâ Šâ â â •â " }, { "input": "persimmons", "output": "â â »â Žâ Šâ â â •â â Ž" }, { "input": "persist", "output": "â â »â Žâ Šâ Œ" }, { "input": "persisted", "output": "â â »â Žâ Šâ Œâ «" }, { "input": "persistence", "output": "â â »â Žâ Šâ Œâ °â ‘" }, { "input": "persistent", "output": "â â »â Žâ Šâ Œâ ¢â ž" }, { "input": "persistently", "output": "â â »â Žâ Šâ Œâ ¢â žâ ‡â ½" }, { "input": "persisting", "output": "â â »â Žâ Šâ Œâ ¬" }, { "input": "persists", "output": "â â »â Žâ Šâ Œâ Ž" }, { "input": "persnickety", "output": "â â »â Žâ â Šâ ‰â …â ‘â žâ ½" }, { "input": "person", "output": "â â »â Žâ •â " }, { "input": "persona", "output": "â â »â Žâ •â â " }, { "input": "personable", "output": "â â »â Žâ •â â â ƒâ ‡â ‘" }, { "input": "personae", "output": "â â »â Žâ •â â â ‘" }, { "input": "personage", "output": "â â »â Žâ •â â â ›â ‘" }, { "input": "personages", "output": "â â »â Žâ •â â â ›â ‘â Ž" }, { "input": "personal", "output": "â â »â Žâ •â â â ‡" }, { "input": "personalities", "output": "â â »â Žâ •â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "personality", "output": "â â »â Žâ •â â â ‡â °â ½" }, { "input": "personalize", "output": "â â »â Žâ •â â â ‡â Šâ µâ ‘" }, { "input": "personalized", "output": "â â »â Žâ •â â â ‡â Šâ µâ «" }, { "input": "personalizes", "output": "â â »â Žâ •â â â ‡â Šâ µâ ‘â Ž" }, { "input": "personalizing", "output": "â â »â Žâ •â â â ‡â Šâ µâ ¬" }, { "input": "personally", "output": "â â »â Žâ •â â â ‡â ‡â ½" }, { "input": "personals", "output": "â â »â Žâ •â â â ‡â Ž" }, { "input": "personification", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‰â â °â " }, { "input": "personifications", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "personified", "output": "â â »â Žâ •â â Šâ ‹â Šâ «" }, { "input": "personifies", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‘â Ž" }, { "input": "personify", "output": "â â »â Žâ •â â Šâ ‹â ½" }, { "input": "personifying", "output": "â â »â Žâ •â â Šâ ‹â ½â ¬" }, { "input": "personnel", "output": "â â »â Žâ •â â â ‘â ‡" }, { "input": "persons", "output": "â â »â Žâ •â â Ž" }, { "input": "perspective", "output": "â â »â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "perspectives", "output": "â â »â Žâ â ‘⠉⠞⠊⠧⠑⠎" }, { "input": "perspicacious", "output": "â â »â Žâ â Šâ ‰â â ‰â Šâ ³â Ž" }, { "input": "perspicacity", "output": "â â »â Žâ â Šâ ‰â â ‰â °â ½" }, { "input": "perspicuity", "output": "â â »â Žâ â Šâ ‰â ¥â °â ½" }, { "input": "perspicuous", "output": "â â »â Žâ â Šâ ‰â ¥â ³â Ž" }, { "input": "perspiration", "output": "â â »â Žâ â Šâ —â â °â " }, { "input": "perspire", "output": "â â »â Žâ â Šâ —â ‘" }, { "input": "perspired", "output": "â â »â Žâ â Šâ —â «" }, { "input": "perspires", "output": "â â »â Žâ â Šâ —â ‘â Ž" }, { "input": "perspiring", "output": "â â »â Žâ â Šâ —â ¬" }, { "input": "persuade", "output": "â â »â Žâ ¥â â ™â ‘" }, { "input": "persuaded", "output": "â â »â Žâ ¥â â ™â «" }, { "input": "persuades", "output": "â â »â Žâ ¥â â ™â ‘â Ž" }, { "input": "persuading", "output": "â â »â Žâ ¥â â ™â ¬" }, { "input": "persuasion", "output": "â â »â Žâ ¥â â ¨â " }, { "input": "persuasions", "output": "â â »â Žâ ¥â â ¨â â Ž" }, { "input": "persuasive", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘" }, { "input": "persuasively", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘⠇⠽" }, { "input": "persuasiveness", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘â °â Ž" }, { "input": "pert", "output": "â â »â ž" }, { "input": "pertain", "output": "â â »â žâ â ”" }, { "input": "pertained", "output": "â â »â žâ â ”â «" }, { "input": "pertaining", "output": "â â »â žâ â ”â ¬" }, { "input": "pertains", "output": "â â »â žâ â ”â Ž" }, { "input": "perter", "output": "â â »â žâ »" }, { "input": "pertest", "output": "â â »â žâ ‘â Œ" }, { "input": "pertinacious", "output": "â â »â žâ ”â â ‰â Šâ ³â Ž" }, { "input": "pertinacity", "output": "â â »â žâ ”â â ‰â °â ½" }, { "input": "pertinence", "output": "â â »â žâ ”â °â ‘" }, { "input": "pertinent", "output": "â â »â žâ ”⠢⠞" }, { "input": "pertly", "output": "â â »â žâ ‡â ½" }, { "input": "pertness", "output": "â â »â žâ °â Ž" }, { "input": "perturb", "output": "â â »â žâ ¥â —â ƒ" }, { "input": "perturbation", "output": "â â »â žâ ¥â —â ƒâ â °â " }, { "input": "perturbations", "output": "â â »â žâ ¥â —â ƒâ â °â â Ž" }, { "input": "perturbed", "output": "â â »â žâ ¥â —⠃⠫" }, { "input": "perturbing", "output": "â â »â žâ ¥â —⠃⠬" }, { "input": "perturbs", "output": "â â »â žâ ¥â —⠃⠎" }, { "input": "perusal", "output": "â â »â ¥â Žâ â ‡" }, { "input": "perusals", "output": "â â »â ¥â Žâ â ‡â Ž" }, { "input": "peruse", "output": "â â »â ¥â Žâ ‘" }, { "input": "perused", "output": "â â »â ¥â Žâ «" }, { "input": "peruses", "output": "â â »â ¥â Žâ ‘â Ž" }, { "input": "perusing", "output": "â â »â ¥â Žâ ¬" }, { "input": "pervade", "output": "â â »â §â â ™â ‘" }, { "input": "pervaded", "output": "â â »â §â â ™â «" }, { "input": "pervades", "output": "â â »â §â â ™â ‘â Ž" }, { "input": "pervading", "output": "â â »â §â â ™â ¬" }, { "input": "pervasive", "output": "â â »â §â â Žâ Šâ §â ‘" }, { "input": "perverse", "output": "â â »â §â »â Žâ ‘" }, { "input": "perversely", "output": "â â »â §â »â Žâ ‘⠇⠽" }, { "input": "perverseness", "output": "â â »â §â »â Žâ ‘â °â Ž" }, { "input": "perversion", "output": "â â »â §â »â ¨â " }, { "input": "perversions", "output": "â â »â §â »â ¨â â Ž" }, { "input": "perversity", "output": "â â »â §â »â Žâ °â ½" }, { "input": "pervert", "output": "â â »â §â »â ž" }, { "input": "perverted", "output": "â â »â §â »â žâ «" }, { "input": "perverting", "output": "â â »â §â »â žâ ¬" }, { "input": "perverts", "output": "â â »â §â »â žâ Ž" }, { "input": "peseta", "output": "â â ‘â Žâ ‘â žâ " }, { "input": "pesetas", "output": "â â ‘â Žâ ‘â žâ â Ž" }, { "input": "peskier", "output": "â â ‘â Žâ …â Šâ »" }, { "input": "peskiest", "output": "â â ‘â Žâ …â Šâ ‘â Œ" }, { "input": "pesky", "output": "â â ‘â Žâ …â ½" }, { "input": "peso", "output": "â â ‘â Žâ •" }, { "input": "pesos", "output": "â â ‘â Žâ •â Ž" }, { "input": "pessimism", "output": "â â ‘â Žâ Žâ Šâ â Šâ Žâ " }, { "input": "pessimist", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œ" }, { "input": "pessimistic", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ Šâ ‰" }, { "input": "pessimistically", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "pessimists", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ Ž" }, { "input": "pest", "output": "â â ‘â Œ" }, { "input": "pester", "output": "â â ‘⠌⠻" }, { "input": "pestered", "output": "â â ‘⠌⠻⠫" }, { "input": "pestering", "output": "â â ‘⠌⠻⠬" }, { "input": "pesters", "output": "â â ‘⠌⠻⠎" }, { "input": "pesticide", "output": "â â ‘⠌⠊⠉⠊⠙⠑" }, { "input": "pesticides", "output": "â â ‘⠌⠊⠉⠊⠙⠑⠎" }, { "input": "pestilence", "output": "â â ‘⠌⠊⠇⠰⠑" }, { "input": "pestilences", "output": "â â ‘⠌⠊⠇⠰⠑⠎" }, { "input": "pestilent", "output": "â â ‘⠌⠊⠇⠢⠞" }, { "input": "pestle", "output": "â â ‘⠌⠇⠑" }, { "input": "pestled", "output": "â â ‘⠌⠇⠫" }, { "input": "pestles", "output": "â â ‘⠌⠇⠑⠎" }, { "input": "pestling", "output": "â â ‘⠌⠇⠬" }, { "input": "pests", "output": "â â ‘⠌⠎" }, { "input": "pet", "output": "â â ‘â ž" }, { "input": "petal", "output": "â â ‘â žâ â ‡" }, { "input": "petals", "output": "â â ‘â žâ â ‡â Ž" }, { "input": "petard", "output": "â â ‘⠞⠜⠙" }, { "input": "petards", "output": "â â ‘⠞⠜⠙⠎" }, { "input": "peter", "output": "â â ‘â žâ »" }, { "input": "petered", "output": "â â ‘⠞⠻⠫" }, { "input": "petering", "output": "â â ‘⠞⠻⠬" }, { "input": "peters", "output": "â â ‘⠞⠻⠎" }, { "input": "petiole", "output": "â â ‘⠞⠊⠕⠇⠑" }, { "input": "petioles", "output": "â â ‘⠞⠊⠕⠇⠑⠎" }, { "input": "petite", "output": "â â ‘â žâ Šâ žâ ‘" }, { "input": "petites", "output": "â â ‘â žâ Šâ žâ ‘â Ž" }, { "input": "petition", "output": "â â ‘â žâ Šâ °â " }, { "input": "petitioned", "output": "â â ‘â žâ Šâ °â â «" }, { "input": "petitioner", "output": "â â ‘â žâ Šâ °â â »" }, { "input": "petitioners", "output": "â â ‘â žâ Šâ °â â »â Ž" }, { "input": "petitioning", "output": "â â ‘â žâ Šâ °â â ¬" }, { "input": "petitions", "output": "â â ‘â žâ Šâ °â â Ž" }, { "input": "petrel", "output": "â â ‘â žâ —â ‘â ‡" }, { "input": "petrels", "output": "â â ‘⠞⠗⠑⠇⠎" }, { "input": "petrifaction", "output": "â â ‘â žâ —â Šâ ‹â â ‰â °â " }, { "input": "petrified", "output": "â â ‘â žâ —â Šâ ‹â Šâ «" }, { "input": "petrifies", "output": "â â ‘â žâ —â Šâ ‹â Šâ ‘â Ž" }, { "input": "petrify", "output": "â â ‘â žâ —â Šâ ‹â ½" }, { "input": "petrifying", "output": "â â ‘⠞⠗⠊⠋⠽⠬" }, { "input": "petrochemical", "output": "â â ‘â žâ —â •â ¡â ‘â â Šâ ‰â â ‡" }, { "input": "petrochemicals", "output": "â â ‘â žâ —â •â ¡â ‘â â Šâ ‰â â ‡â Ž" }, { "input": "petrol", "output": "â â ‘â žâ —â •â ‡" }, { "input": "petrolatum", "output": "â â ‘â žâ —â •â ‡â â žâ ¥â " }, { "input": "petroleum", "output": "â â ‘⠞⠗⠕⠇⠑⠥â " }, { "input": "pets", "output": "â â ‘â žâ Ž" }, { "input": "petted", "output": "â â ‘â žâ žâ «" }, { "input": "petticoat", "output": "â â ‘⠞⠞⠊⠉⠕â â ž" }, { "input": "petticoats", "output": "â â ‘⠞⠞⠊⠉⠕â â žâ Ž" }, { "input": "pettier", "output": "â â ‘â žâ žâ Šâ »" }, { "input": "pettiest", "output": "â â ‘â žâ žâ Šâ ‘â Œ" }, { "input": "pettifog", "output": "â â ‘â žâ žâ Šâ ‹â •â ›" }, { "input": "pettifogged", "output": "â â ‘â žâ žâ Šâ ‹â •â ¶â «" }, { "input": "pettifogger", "output": "â â ‘â žâ žâ Šâ ‹â •â ¶â »" }, { "input": "pettifoggers", "output": "â â ‘⠞⠞⠊⠋⠕⠶⠻⠎" }, { "input": "pettifogging", "output": "â â ‘â žâ žâ Šâ ‹â •â ¶â ¬" }, { "input": "pettifogs", "output": "â â ‘⠞⠞⠊⠋⠕⠛⠎" }, { "input": "pettily", "output": "â â ‘⠞⠞⠊⠇⠽" }, { "input": "pettiness", "output": "â â ‘â žâ žâ Šâ °â Ž" }, { "input": "petting", "output": "â â ‘â žâ žâ ¬" }, { "input": "petty", "output": "â â ‘â žâ žâ ½" }, { "input": "petulance", "output": "â â ‘⠞⠥⠇⠨⠑" }, { "input": "petulant", "output": "â â ‘⠞⠥⠇â â â ž" }, { "input": "petulantly", "output": "â â ‘⠞⠥⠇â â â žâ ‡â ½" }, { "input": "petunia", "output": "â â ‘â žâ ¥â â Šâ " }, { "input": "petunias", "output": "â â ‘â žâ ¥â â Šâ â Ž" }, { "input": "pew", "output": "â â ‘â º" }, { "input": "pewee", "output": "â â ‘⠺⠑⠑" }, { "input": "pewees", "output": "â â ‘⠺⠑⠑⠎" }, { "input": "pews", "output": "â â ‘⠺⠎" }, { "input": "pewter", "output": "â â ‘⠺⠞⠻" }, { "input": "pewters", "output": "â â ‘⠺⠞⠻⠎" }, { "input": "peyote", "output": "â â ‘⠽⠕⠞⠑" }, { "input": "phalanges", "output": "â â “â â ‡â â â ›â ‘â Ž" }, { "input": "phalanx", "output": "â â “â â ‡â â â ­" }, { "input": "phalanxes", "output": "â â “â â ‡â â â ­â ‘â Ž" }, { "input": "phalli", "output": "â â “â â ‡â ‡â Š" }, { "input": "phallic", "output": "â â “â â ‡â ‡â Šâ ‰" }, { "input": "phallus", "output": "â â “â â ‡â ‡â ¥â Ž" }, { "input": "phalluses", "output": "â â “â â ‡â ‡â ¥â Žâ ‘â Ž" }, { "input": "phantasied", "output": "â â “â â â žâ â Žâ Šâ «" }, { "input": "phantasies", "output": "â â “â â â žâ â Žâ Šâ ‘â Ž" }, { "input": "phantasm", "output": "â â “â â â žâ â Žâ " }, { "input": "phantasmagoria", "output": "â â “â â â žâ â Žâ â â ›â •â —â Šâ " }, { "input": "phantasmagorias", "output": "â â “â â â žâ â Žâ â â ›â •â —â Šâ â Ž" }, { "input": "phantasms", "output": "â â “â â â žâ â Žâ â Ž" }, { "input": "phantasy", "output": "â â “â â â žâ â Žâ ½" }, { "input": "phantasying", "output": "â â “â â â žâ â Žâ ½â ¬" }, { "input": "phantom", "output": "â â “â â â žâ •â " }, { "input": "phantoms", "output": "â â “â â â žâ •â â Ž" }, { "input": "pharaoh", "output": "â â “â œâ â •â “" }, { "input": "pharaohs", "output": "â â “â œâ â •â “â Ž" }, { "input": "pharmaceutical", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉â â ‡" }, { "input": "pharmaceuticals", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉â â ‡â Ž" }, { "input": "pharmacies", "output": "â â “â œâ â â ‰â Šâ ‘â Ž" }, { "input": "pharmacist", "output": "â â “â œâ â â ‰â Šâ Œ" }, { "input": "pharmacists", "output": "â â “â œâ â â ‰â Šâ Œâ Ž" }, { "input": "pharmacologist", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠊⠌" }, { "input": "pharmacologists", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠊⠌⠎" }, { "input": "pharmacology", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠽" }, { "input": "pharmacopeia", "output": "â â “â œâ â â ‰â •â â ‘â Šâ " }, { "input": "pharmacopeias", "output": "â â “â œâ â â ‰â •â â ‘â Šâ â Ž" }, { "input": "pharmacopoeia", "output": "â â “â œâ â â ‰â •â â •â ‘â Šâ " }, { "input": "pharmacopoeias", "output": "â â “â œâ â â ‰â •â â •â ‘â Šâ â Ž" }, { "input": "pharmacy", "output": "â â “â œâ â â ‰â ½" }, { "input": "pharyngeal", "output": "â â “⠜⠽â â ›â ‚â ‡" }, { "input": "pharynges", "output": "â â “⠜⠽â â ›â ‘â Ž" }, { "input": "pharynx", "output": "â â “⠜⠽â â ­" }, { "input": "pharynxes", "output": "â â “⠜⠽â â ­â ‘â Ž" }, { "input": "phase", "output": "â â “â â Žâ ‘" }, { "input": "phased", "output": "â â “â â Žâ «" }, { "input": "phases", "output": "â â “â â Žâ ‘â Ž" }, { "input": "phasing", "output": "â â “â â Žâ ¬" }, { "input": "pheasant", "output": "â â “â ‚â Žâ â â ž" }, { "input": "pheasants", "output": "â â “â ‚â Žâ â â žâ Ž" }, { "input": "phenobarbital", "output": "â â “⠢⠕⠃⠜⠃⠊⠞â â ‡" }, { "input": "phenomena", "output": "â â “⠢⠕â â ¢â " }, { "input": "phenomenal", "output": "â â “⠢⠕â â ¢â â ‡" }, { "input": "phenomenally", "output": "â â “⠢⠕â â ¢â â ‡â ‡â ½" }, { "input": "phenomenon", "output": "â â “⠢⠕â â ¢â •â " }, { "input": "phenomenons", "output": "â â “⠢⠕â â ¢â •â â Ž" }, { "input": "phenotype", "output": "â â “⠢⠕⠞⠽â â ‘" }, { "input": "pheromone", "output": "â â “⠻⠕â â â •" }, { "input": "pheromones", "output": "â â “⠻⠕â â â •â Ž" }, { "input": "phial", "output": "â â “â Šâ â ‡" }, { "input": "phials", "output": "â â “â Šâ â ‡â Ž" }, { "input": "philander", "output": "â â “⠊⠇⠯⠻" }, { "input": "philandered", "output": "â â “⠊⠇⠯⠻⠫" }, { "input": "philanderer", "output": "â â “⠊⠇⠯⠻⠻" }, { "input": "philanderers", "output": "â â “⠊⠇⠯⠻⠻⠎" }, { "input": "philandering", "output": "â â “⠊⠇⠯⠻⠬" }, { "input": "philanders", "output": "â â “⠊⠇⠯⠻⠎" }, { "input": "philanthropic", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ ‰" }, { "input": "philanthropically", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "philanthropies", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ ‘â Ž" }, { "input": "philanthropist", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ Œ" }, { "input": "philanthropists", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ Œâ Ž" }, { "input": "philanthropy", "output": "â â “â Šâ ‡â â â ¹â —â •â â ½" }, { "input": "philatelic", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠉" }, { "input": "philatelist", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠌" }, { "input": "philatelists", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠌⠎" }, { "input": "philately", "output": "â â “â Šâ ‡â â žâ ‘⠇⠽" }, { "input": "philharmonic", "output": "â â “⠊⠇⠓⠜â â •â â Šâ ‰" }, { "input": "philharmonics", "output": "â â “⠊⠇⠓⠜â â •â â Šâ ‰â Ž" }, { "input": "philippic", "output": "â â “⠊⠇⠊â â â Šâ ‰" }, { "input": "philippics", "output": "â â “⠊⠇⠊â â â Šâ ‰â Ž" }, { "input": "philistine", "output": "â â “⠊⠇⠊⠌⠔⠑" }, { "input": "philistines", "output": "â â “⠊⠇⠊⠌⠔⠑⠎" }, { "input": "philodendra", "output": "â â “⠊⠇⠕⠙⠢⠙⠗â " }, { "input": "philodendron", "output": "â â “⠊⠇⠕⠙⠢⠙⠗⠕â " }, { "input": "philodendrons", "output": "â â “⠊⠇⠕⠙⠢⠙⠗⠕â â Ž" }, { "input": "philological", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "philologist", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠌" }, { "input": "philologists", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠌⠎" }, { "input": "philology", "output": "â â “⠊⠇⠕⠇⠕⠛⠽" }, { "input": "philosopher", "output": "â â “⠊⠇⠕⠎⠕â â “â »" }, { "input": "philosophers", "output": "â â “⠊⠇⠕⠎⠕â â “⠻⠎" }, { "input": "philosophic", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‰" }, { "input": "philosophical", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‰â â ‡" }, { "input": "philosophically", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "philosophies", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‘â Ž" }, { "input": "philosophize", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠑" }, { "input": "philosophized", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠫" }, { "input": "philosophizes", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠑⠎" }, { "input": "philosophizing", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠬" }, { "input": "philosophy", "output": "â â “⠊⠇⠕⠎⠕â â “â ½" }, { "input": "philter", "output": "â â “⠊⠇⠞⠻" }, { "input": "philters", "output": "â â “⠊⠇⠞⠻⠎" }, { "input": "phish", "output": "â â “â Šâ ©" }, { "input": "phished", "output": "â â “â Šâ ©â «" }, { "input": "phisher", "output": "â â “â Šâ ©â »" }, { "input": "phishers", "output": "â â “⠊⠩⠻⠎" }, { "input": "phishing", "output": "â â “â Šâ ©â ¬" }, { "input": "phlebitis", "output": "â â “⠇⠑⠃⠊⠞⠊⠎" }, { "input": "phlegm", "output": "â â “⠇⠑⠛â " }, { "input": "phlegmatic", "output": "â â “⠇⠑⠛â â â žâ Šâ ‰" }, { "input": "phlegmatically", "output": "â â “⠇⠑⠛â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "phloem", "output": "â â “⠇⠕⠑â " }, { "input": "phlox", "output": "â â “⠇⠕⠭" }, { "input": "phloxes", "output": "â â “⠇⠕⠭⠑⠎" }, { "input": "phobia", "output": "â â “⠕⠃⠊â " }, { "input": "phobias", "output": "â â “⠕⠃⠊â â Ž" }, { "input": "phobic", "output": "â â “⠕⠃⠊⠉" }, { "input": "phobics", "output": "â â “⠕⠃⠊⠉⠎" }, { "input": "phoebe", "output": "â â “⠕⠑⠃⠑" }, { "input": "phoebes", "output": "â â “⠕⠑⠃⠑⠎" }, { "input": "phoenix", "output": "â â “⠕⠢⠊⠭" }, { "input": "phoenixes", "output": "â â “⠕⠢⠊⠭⠑⠎" }, { "input": "phone", "output": "â â “â â •" }, { "input": "phoned", "output": "â â “â •â â «" }, { "input": "phoneme", "output": "â â “â •â â ‘â â ‘" }, { "input": "phonemes", "output": "â â “â •â â ‘â â ‘â Ž" }, { "input": "phonemic", "output": "â â “â •â â ‘â â Šâ ‰" }, { "input": "phones", "output": "â â “â â •â Ž" }, { "input": "phonetic", "output": "â â “â •â â ‘â žâ Šâ ‰" }, { "input": "phonetically", "output": "â â “â •â â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "phonetician", "output": "â â “â •â â ‘⠞⠊⠉⠊â â " }, { "input": "phoneticians", "output": "â â “â •â â ‘⠞⠊⠉⠊â â â Ž" }, { "input": "phonetics", "output": "â â “â •â â ‘⠞⠊⠉⠎" }, { "input": "phoney", "output": "â â “â â •â ½" }, { "input": "phoneyed", "output": "â â “â â •⠽⠫" }, { "input": "phoneying", "output": "â â “â â •⠽⠬" }, { "input": "phoneys", "output": "â â “â â •⠽⠎" }, { "input": "phonic", "output": "â â “â •â â Šâ ‰" }, { "input": "phonically", "output": "â â “â •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "phonics", "output": "â â “â •â â Šâ ‰â Ž" }, { "input": "phonied", "output": "â â “â •â â Šâ «" }, { "input": "phonier", "output": "â â “â •â â Šâ »" }, { "input": "phonies", "output": "â â “â •â â Šâ ‘â Ž" }, { "input": "phoniest", "output": "â â “â •â â Šâ ‘â Œ" }, { "input": "phoniness", "output": "â â “â •â â Šâ °â Ž" }, { "input": "phoning", "output": "â â “â •â â ¬" }, { "input": "phonograph", "output": "â â “â •â â •⠛⠗â â â “" }, { "input": "phonographs", "output": "â â “â •â â •⠛⠗â â â “â Ž" }, { "input": "phonological", "output": "â â “â •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "phonologist", "output": "â â “â •â â •⠇⠕⠛⠊⠌" }, { "input": "phonologists", "output": "â â “â •â â •⠇⠕⠛⠊⠌⠎" }, { "input": "phonology", "output": "â â “â •â â •⠇⠕⠛⠽" }, { "input": "phony", "output": "â â “â •â â ½" }, { "input": "phonying", "output": "â â “â •â â ½â ¬" }, { "input": "phooey", "output": "â â “â •â •â ‘â ½" }, { "input": "phosphate", "output": "â â “â •â Žâ â “â â žâ ‘" }, { "input": "phosphates", "output": "â â “â •â Žâ â “â â žâ ‘â Ž" }, { "input": "phosphor", "output": "â â “â •â Žâ â “â •â —" }, { "input": "phosphorescence", "output": "â â “â •â Žâ â “⠕⠗⠑⠎⠉⠰⠑" }, { "input": "phosphorescent", "output": "â â “â •â Žâ â “⠕⠗⠑⠎⠉⠢⠞" }, { "input": "phosphoric", "output": "â â “â •â Žâ â “â •â —â Šâ ‰" }, { "input": "phosphors", "output": "â â “â •â Žâ â “â •â —â Ž" }, { "input": "phosphorus", "output": "â â “â •â Žâ â “⠕⠗⠥⠎" }, { "input": "photo", "output": "â â “â •â žâ •" }, { "input": "photocopied", "output": "â â “⠕⠞⠕⠉⠕â â Šâ «" }, { "input": "photocopier", "output": "â â “⠕⠞⠕⠉⠕â â Šâ »" }, { "input": "photocopiers", "output": "â â “⠕⠞⠕⠉⠕â â Šâ »â Ž" }, { "input": "photocopies", "output": "â â “⠕⠞⠕⠉⠕â â Šâ ‘â Ž" }, { "input": "photocopy", "output": "â â “⠕⠞⠕⠉⠕â â ½" }, { "input": "photocopying", "output": "â â “⠕⠞⠕⠉⠕â â ½â ¬" }, { "input": "photoed", "output": "â â “â •â žâ •â «" }, { "input": "photoelectric", "output": "â â “⠕⠞⠕⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "photogenic", "output": "â â “⠕⠞⠕⠛⠢⠊⠉" }, { "input": "photograph", "output": "â â “⠕⠞⠕⠛⠗â â â “" }, { "input": "photographed", "output": "â â “⠕⠞⠕⠛⠗â â â “â «" }, { "input": "photographer", "output": "â â “⠕⠞⠕⠛⠗â â â “â »" }, { "input": "photographers", "output": "â â “⠕⠞⠕⠛⠗â â â “⠻⠎" }, { "input": "photographic", "output": "â â “⠕⠞⠕⠛⠗â â â “â Šâ ‰" }, { "input": "photographically", "output": "â â “⠕⠞⠕⠛⠗â â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "photographing", "output": "â â “⠕⠞⠕⠛⠗â â â “â ¬" }, { "input": "photographs", "output": "â â “⠕⠞⠕⠛⠗â â â “â Ž" }, { "input": "photography", "output": "â â “⠕⠞⠕⠛⠗â â â “â ½" }, { "input": "photoing", "output": "â â “â •â žâ •â ¬" }, { "input": "photojournalism", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Žâ " }, { "input": "photojournalist", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Œ" }, { "input": "photojournalists", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Œâ Ž" }, { "input": "photon", "output": "â â “â •â žâ •â " }, { "input": "photons", "output": "â â “â •â žâ •â â Ž" }, { "input": "photos", "output": "â â “â •â žâ •â Ž" }, { "input": "photosensitive", "output": "â â “⠕⠞⠕⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "photosynthesis", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ Ž" }, { "input": "phototypesetter", "output": "â â “â •â žâ •â žâ ½â â ‘â Žâ ‘â žâ žâ »" }, { "input": "phototypesetting", "output": "â â “â •â žâ •â žâ ½â â ‘â Žâ ‘â žâ žâ ¬" }, { "input": "phrasal", "output": "â â “â —â â Žâ â ‡" }, { "input": "phrase", "output": "â â “â —â â Žâ ‘" }, { "input": "phrased", "output": "â â “â —â â Žâ «" }, { "input": "phraseology", "output": "â â “â —â â Žâ ‘⠕⠇⠕⠛⠽" }, { "input": "phrases", "output": "â â “â —â â Žâ ‘â Ž" }, { "input": "phrasing", "output": "â â “â —â â Žâ ¬" }, { "input": "phrasings", "output": "â â “â —â â Žâ ¬â Ž" }, { "input": "phrenology", "output": "â â “⠗⠢⠕⠇⠕⠛⠽" }, { "input": "phyla", "output": "â â “⠽⠇â " }, { "input": "phylum", "output": "â â “⠽⠇⠥â " }, { "input": "physic", "output": "â â “⠽⠎⠊⠉" }, { "input": "physical", "output": "â â “⠽⠎⠊⠉â â ‡" }, { "input": "physically", "output": "â â “⠽⠎⠊⠉â â ‡â ‡â ½" }, { "input": "physicals", "output": "â â “⠽⠎⠊⠉â â ‡â Ž" }, { "input": "physician", "output": "â â “⠽⠎⠊⠉⠊â â " }, { "input": "physicians", "output": "â â “⠽⠎⠊⠉⠊â â â Ž" }, { "input": "physicist", "output": "â â “⠽⠎⠊⠉⠊⠌" }, { "input": "physicists", "output": "â â “⠽⠎⠊⠉⠊⠌⠎" }, { "input": "physicked", "output": "â â “⠽⠎⠊⠉⠅⠫" }, { "input": "physicking", "output": "â â “⠽⠎⠊⠉⠅⠬" }, { "input": "physics", "output": "â â “⠽⠎⠊⠉⠎" }, { "input": "physiognomies", "output": "â â “⠽⠎⠊⠕⠛â â •â â Šâ ‘â Ž" }, { "input": "physiognomy", "output": "â â “⠽⠎⠊⠕⠛â â •â â ½" }, { "input": "physiological", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "physiologist", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠌" }, { "input": "physiologists", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "physiology", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠽" }, { "input": "physiotherapist", "output": "â â “⠽⠎⠊⠕⠮⠗â â â Šâ Œ" }, { "input": "physiotherapists", "output": "â â “⠽⠎⠊⠕⠮⠗â â â Šâ Œâ Ž" }, { "input": "physiotherapy", "output": "â â “⠽⠎⠊⠕⠮⠗â â â ½" }, { "input": "physique", "output": "â â “⠽⠎⠊⠟⠥⠑" }, { "input": "physiques", "output": "â â “⠽⠎⠊⠟⠥⠑⠎" }, { "input": "pi", "output": "â â Š" }, { "input": "pianissimi", "output": "â â Šâ â â Šâ Žâ Žâ Šâ â Š" }, { "input": "pianissimo", "output": "â â Šâ â â Šâ Žâ Žâ Šâ â •" }, { "input": "pianissimos", "output": "â â Šâ â â Šâ Žâ Žâ Šâ â •â Ž" }, { "input": "pianist", "output": "â â Šâ â â Šâ Œ" }, { "input": "pianists", "output": "â â Šâ â â Šâ Œâ Ž" }, { "input": "piano", "output": "â â Šâ â â •" }, { "input": "pianoforte", "output": "â â Šâ â â •â ¿â žâ ‘" }, { "input": "pianofortes", "output": "â â Šâ â â •â ¿â žâ ‘â Ž" }, { "input": "pianos", "output": "â â Šâ â â •â Ž" }, { "input": "piazza", "output": "â â Šâ â µâ µâ " }, { "input": "piazzas", "output": "â â Šâ â µâ µâ â Ž" }, { "input": "piazze", "output": "â â Šâ â µâ µâ ‘" }, { "input": "pica", "output": "â â Šâ ‰â " }, { "input": "picaresque", "output": "â â Šâ ‰â œâ ‘⠎⠟⠥⠑" }, { "input": "picayune", "output": "â â Šâ ‰â â ½â ¥â â ‘" }, { "input": "piccalilli", "output": "â â Šâ ’â â ‡â Šâ ‡â ‡â Š" }, { "input": "piccolo", "output": "â â Šâ ’⠕⠇⠕" }, { "input": "piccolos", "output": "â â Šâ ’⠕⠇⠕⠎" }, { "input": "pick", "output": "â â Šâ ‰â …" }, { "input": "pickaback", "output": "â â Šâ ‰â …â â ƒâ â ‰â …" }, { "input": "pickabacked", "output": "â â Šâ ‰â …â â ƒâ â ‰â …â «" }, { "input": "pickabacking", "output": "â â Šâ ‰â …â â ƒâ â ‰â …â ¬" }, { "input": "pickabacks", "output": "â â Šâ ‰â …â â ƒâ â ‰â …â Ž" }, { "input": "pickax", "output": "â â Šâ ‰â …â â ­" }, { "input": "pickaxe", "output": "â â Šâ ‰â …â â ­â ‘" }, { "input": "pickaxed", "output": "â â Šâ ‰â …â â ­â «" }, { "input": "pickaxes", "output": "â â Šâ ‰â …â â ­â ‘â Ž" }, { "input": "pickaxing", "output": "â â Šâ ‰â …â â ­â ¬" }, { "input": "picked", "output": "â â Šâ ‰â …â «" }, { "input": "picker", "output": "â â Šâ ‰â …â »" }, { "input": "pickerel", "output": "â â Šâ ‰â …⠻⠑⠇" }, { "input": "pickerels", "output": "â â Šâ ‰â …⠻⠑⠇⠎" }, { "input": "pickers", "output": "â â Šâ ‰â …⠻⠎" }, { "input": "picket", "output": "â â Šâ ‰â …â ‘â ž" }, { "input": "picketed", "output": "â â Šâ ‰â …â ‘â žâ «" }, { "input": "picketing", "output": "â â Šâ ‰â …â ‘â žâ ¬" }, { "input": "pickets", "output": "â â Šâ ‰â …â ‘â žâ Ž" }, { "input": "pickier", "output": "â â Šâ ‰â …â Šâ »" }, { "input": "pickiest", "output": "â â Šâ ‰â …â Šâ ‘â Œ" }, { "input": "picking", "output": "â â Šâ ‰â …â ¬" }, { "input": "pickings", "output": "â â Šâ ‰â …⠬⠎" }, { "input": "pickle", "output": "â â Šâ ‰â …⠇⠑" }, { "input": "pickled", "output": "â â Šâ ‰â …⠇⠫" }, { "input": "pickles", "output": "â â Šâ ‰â …⠇⠑⠎" }, { "input": "pickling", "output": "â â Šâ ‰â …⠇⠬" }, { "input": "pickpocket", "output": "â â Šâ ‰â …â â •⠉⠅⠑⠞" }, { "input": "pickpockets", "output": "â â Šâ ‰â …â â •⠉⠅⠑⠞⠎" }, { "input": "picks", "output": "â â Šâ ‰â …â Ž" }, { "input": "pickup", "output": "â â Šâ ‰â …â ¥â " }, { "input": "pickups", "output": "â â Šâ ‰â …â ¥â â Ž" }, { "input": "picky", "output": "â â Šâ ‰â …â ½" }, { "input": "picnic", "output": "â â Šâ ‰â â Šâ ‰" }, { "input": "picnicked", "output": "â â Šâ ‰â â Šâ ‰â …â «" }, { "input": "picnicker", "output": "â â Šâ ‰â â Šâ ‰â …â »" }, { "input": "picnickers", "output": "â â Šâ ‰â â Šâ ‰â …⠻⠎" }, { "input": "picnicking", "output": "â â Šâ ‰â â Šâ ‰â …â ¬" }, { "input": "picnics", "output": "â â Šâ ‰â â Šâ ‰â Ž" }, { "input": "pictograph", "output": "â â Šâ ‰â žâ •⠛⠗â â â “" }, { "input": "pictographs", "output": "â â Šâ ‰â žâ •⠛⠗â â â “â Ž" }, { "input": "pictorial", "output": "â â Šâ ‰â žâ •â —â Šâ â ‡" }, { "input": "pictorially", "output": "â â Šâ ‰â žâ •â —â Šâ â ‡â ‡â ½" }, { "input": "pictorials", "output": "â â Šâ ‰â žâ •â —â Šâ â ‡â Ž" }, { "input": "picture", "output": "â â Šâ ‰â žâ ¥â —â ‘" }, { "input": "pictured", "output": "â â Šâ ‰â žâ ¥â —â «" }, { "input": "pictures", "output": "â â Šâ ‰â žâ ¥â —â ‘â Ž" }, { "input": "picturesque", "output": "â â Šâ ‰â žâ ¥â —⠑⠎⠟⠥⠑" }, { "input": "picturing", "output": "â â Šâ ‰â žâ ¥â —â ¬" }, { "input": "piddle", "output": "â â Šâ ™â ™â ‡â ‘" }, { "input": "piddled", "output": "â â Šâ ™â ™â ‡â «" }, { "input": "piddles", "output": "â â Šâ ™â ™â ‡â ‘â Ž" }, { "input": "piddling", "output": "â â Šâ ™â ™â ‡â ¬" }, { "input": "pidgin", "output": "â â Šâ ™â ›â ”" }, { "input": "pidgins", "output": "â â Šâ ™â ›â ”â Ž" }, { "input": "pie", "output": "â â Šâ ‘" }, { "input": "piebald", "output": "â â Šâ ‘â ƒâ â ‡â ™" }, { "input": "piebalds", "output": "â â Šâ ‘â ƒâ â ‡â ™â Ž" }, { "input": "piece", "output": "â â Šâ ‘⠉⠑" }, { "input": "pieced", "output": "â â Šâ ‘⠉⠫" }, { "input": "piecemeal", "output": "â â Šâ ‘⠉⠑â â ‚â ‡" }, { "input": "pieces", "output": "â â Šâ ‘⠉⠑⠎" }, { "input": "piecework", "output": "â â Šâ ‘⠉⠑â â º" }, { "input": "piecing", "output": "â â Šâ ‘⠉⠬" }, { "input": "pied", "output": "â â Šâ «" }, { "input": "pieing", "output": "â â Šâ ‘â ¬" }, { "input": "pier", "output": "â â Šâ »" }, { "input": "pierce", "output": "â â Šâ »â ‰â ‘" }, { "input": "pierced", "output": "â â Šâ »â ‰â «" }, { "input": "pierces", "output": "â â Šâ »â ‰â ‘â Ž" }, { "input": "piercing", "output": "â â Šâ »â ‰â ¬" }, { "input": "piercingly", "output": "â â Šâ »â ‰â ¬â ‡â ½" }, { "input": "piercings", "output": "â â Šâ »â ‰â ¬â Ž" }, { "input": "piers", "output": "â â Šâ »â Ž" }, { "input": "pies", "output": "â â Šâ ‘â Ž" }, { "input": "piety", "output": "â â Šâ ‘â žâ ½" }, { "input": "piffle", "output": "â â Šâ –⠇⠑" }, { "input": "pig", "output": "â â Šâ ›" }, { "input": "pigeon", "output": "â â Šâ ›â ‘â •â " }, { "input": "pigeonhole", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠑" }, { "input": "pigeonholed", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠫" }, { "input": "pigeonholes", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠑⠎" }, { "input": "pigeonholing", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠬" }, { "input": "pigeons", "output": "â â Šâ ›â ‘â •â â Ž" }, { "input": "pigged", "output": "â â Šâ ¶â «" }, { "input": "piggier", "output": "â â Šâ ¶â Šâ »" }, { "input": "piggies", "output": "â â Šâ ¶â Šâ ‘â Ž" }, { "input": "piggiest", "output": "â â Šâ ¶â Šâ ‘â Œ" }, { "input": "pigging", "output": "â â Šâ ¶â ¬" }, { "input": "piggish", "output": "â â Šâ ¶â Šâ ©" }, { "input": "piggishness", "output": "â â Šâ ¶â Šâ ©â °â Ž" }, { "input": "piggy", "output": "â â Šâ ¶â ½" }, { "input": "piggyback", "output": "â â Šâ ¶â ½â ƒâ â ‰â …" }, { "input": "piggybacked", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â «" }, { "input": "piggybacking", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â ¬" }, { "input": "piggybacks", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â Ž" }, { "input": "pigheaded", "output": "â â Šâ ›â “⠂⠙⠫" }, { "input": "piglet", "output": "â â Šâ ›â ‡â ‘â ž" }, { "input": "piglets", "output": "â â Šâ ›â ‡â ‘â žâ Ž" }, { "input": "pigment", "output": "â â Šâ ›â °â ž" }, { "input": "pigmentation", "output": "â â Šâ ›â °â žâ â °â " }, { "input": "pigments", "output": "â â Šâ ›â °â žâ Ž" }, { "input": "pigmies", "output": "â â Šâ ›â â Šâ ‘â Ž" }, { "input": "pigmy", "output": "â â Šâ ›â â ½" }, { "input": "pigpen", "output": "â â Šâ ›â â ¢" }, { "input": "pigpens", "output": "â â Šâ ›â â ¢â Ž" }, { "input": "pigs", "output": "â â Šâ ›â Ž" }, { "input": "pigskin", "output": "â â Šâ ›â Žâ …â ”" }, { "input": "pigskins", "output": "â â Šâ ›â Žâ …⠔⠎" }, { "input": "pigsties", "output": "â â Šâ ›â Œâ Šâ ‘â Ž" }, { "input": "pigsty", "output": "â â Šâ ›â Œâ ½" }, { "input": "pigtail", "output": "â â Šâ ›â žâ â Šâ ‡" }, { "input": "pigtails", "output": "â â Šâ ›â žâ â Šâ ‡â Ž" }, { "input": "piing", "output": "â â Šâ ¬" }, { "input": "pike", "output": "â â Šâ …â ‘" }, { "input": "piked", "output": "â â Šâ …â «" }, { "input": "piker", "output": "â â Šâ …â »" }, { "input": "pikers", "output": "â â Šâ …⠻⠎" }, { "input": "pikes", "output": "â â Šâ …â ‘â Ž" }, { "input": "piking", "output": "â â Šâ …â ¬" }, { "input": "pilaf", "output": "â â Šâ ‡â â ‹" }, { "input": "pilaff", "output": "â â Šâ ‡â â ‹â ‹" }, { "input": "pilaffs", "output": "â â Šâ ‡â â –â Ž" }, { "input": "pilafs", "output": "â â Šâ ‡â â ‹â Ž" }, { "input": "pilaster", "output": "â â Šâ ‡â â Œâ »" }, { "input": "pilasters", "output": "â â Šâ ‡â â Œâ »â Ž" }, { "input": "pilau", "output": "â â Šâ ‡â â ¥" }, { "input": "pilaus", "output": "â â Šâ ‡â â ¥â Ž" }, { "input": "pilaw", "output": "â â Šâ ‡â â º" }, { "input": "pilaws", "output": "â â Šâ ‡â â ºâ Ž" }, { "input": "pilchard", "output": "â â Šâ ‡â ¡â œâ ™" }, { "input": "pilchards", "output": "â â Šâ ‡â ¡â œâ ™â Ž" }, { "input": "pile", "output": "â â Šâ ‡â ‘" }, { "input": "piled", "output": "â â Šâ ‡â «" }, { "input": "piles", "output": "â â Šâ ‡â ‘â Ž" }, { "input": "pileup", "output": "â â Šâ ‡â ‘â ¥â " }, { "input": "pileups", "output": "â â Šâ ‡â ‘â ¥â â Ž" }, { "input": "pilfer", "output": "â â Šâ ‡â ‹â »" }, { "input": "pilfered", "output": "â â Šâ ‡â ‹â »â «" }, { "input": "pilferer", "output": "â â Šâ ‡â ‹â »â »" }, { "input": "pilferers", "output": "â â Šâ ‡â ‹â »â »â Ž" }, { "input": "pilfering", "output": "â â Šâ ‡â ‹â »â ¬" }, { "input": "pilfers", "output": "â â Šâ ‡â ‹â »â Ž" }, { "input": "pilgrim", "output": "â â Šâ ‡â ›â —â Šâ " }, { "input": "pilgrimage", "output": "â â Šâ ‡â ›â —â Šâ â â ›â ‘" }, { "input": "pilgrimages", "output": "â â Šâ ‡â ›â —â Šâ â â ›â ‘â Ž" }, { "input": "pilgrims", "output": "â â Šâ ‡â ›â —â Šâ â Ž" }, { "input": "piling", "output": "â â Šâ ‡â ¬" }, { "input": "pilings", "output": "â â Šâ ‡â ¬â Ž" }, { "input": "pill", "output": "â â Šâ ‡â ‡" }, { "input": "pillage", "output": "â â Šâ ‡â ‡â â ›â ‘" }, { "input": "pillaged", "output": "â â Šâ ‡â ‡â â ›â «" }, { "input": "pillages", "output": "â â Šâ ‡â ‡â â ›â ‘â Ž" }, { "input": "pillaging", "output": "â â Šâ ‡â ‡â â ›â ¬" }, { "input": "pillar", "output": "â â Šâ ‡â ‡â œ" }, { "input": "pillars", "output": "â â Šâ ‡â ‡â œâ Ž" }, { "input": "pillbox", "output": "â â Šâ ‡â ‡â ƒâ •â ­" }, { "input": "pillboxes", "output": "â â Šâ ‡â ‡â ƒâ •â ­â ‘â Ž" }, { "input": "pilled", "output": "â â Šâ ‡â ‡â «" }, { "input": "pilling", "output": "â â Šâ ‡â ‡â ¬" }, { "input": "pillion", "output": "â â Šâ ‡â ‡â Šâ •â " }, { "input": "pillions", "output": "â â Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "pilloried", "output": "â â Šâ ‡â ‡â •â —â Šâ «" }, { "input": "pillories", "output": "â â Šâ ‡â ‡â •â —â Šâ ‘â Ž" }, { "input": "pillory", "output": "â â Šâ ‡â ‡â •â —â ½" }, { "input": "pillorying", "output": "â â Šâ ‡â ‡â •⠗⠽⠬" }, { "input": "pillow", "output": "â â Šâ ‡â ‡â ª" }, { "input": "pillowcase", "output": "â â Šâ ‡â ‡â ªâ ‰â â Žâ ‘" }, { "input": "pillowcases", "output": "â â Šâ ‡â ‡â ªâ ‰â â Žâ ‘â Ž" }, { "input": "pillowed", "output": "â â Šâ ‡â ‡â ªâ «" }, { "input": "pillowing", "output": "â â Šâ ‡â ‡â ªâ ¬" }, { "input": "pillows", "output": "â â Šâ ‡â ‡â ªâ Ž" }, { "input": "pills", "output": "â â Šâ ‡â ‡â Ž" }, { "input": "pilot", "output": "â â Šâ ‡â •â ž" }, { "input": "piloted", "output": "â â Šâ ‡â •â žâ «" }, { "input": "pilothouse", "output": "â â Šâ ‡â •⠞⠓⠳⠎⠑" }, { "input": "pilothouses", "output": "â â Šâ ‡â •⠞⠓⠳⠎⠑⠎" }, { "input": "piloting", "output": "â â Šâ ‡â •â žâ ¬" }, { "input": "pilots", "output": "â â Šâ ‡â •â žâ Ž" }, { "input": "pimento", "output": "â â Šâ °â žâ •" }, { "input": "pimentos", "output": "â â Šâ °â žâ •â Ž" }, { "input": "pimiento", "output": "â â Šâ â Šâ ¢â žâ •" }, { "input": "pimientos", "output": "â â Šâ â Šâ ¢â žâ •â Ž" }, { "input": "pimp", "output": "â â Šâ â " }, { "input": "pimped", "output": "â â Šâ â â «" }, { "input": "pimpernel", "output": "â â Šâ â â »â â ‘â ‡" }, { "input": "pimpernels", "output": "â â Šâ â â »â â ‘⠇⠎" }, { "input": "pimping", "output": "â â Šâ â â ¬" }, { "input": "pimple", "output": "â â Šâ â â ‡â ‘" }, { "input": "pimples", "output": "â â Šâ â â ‡â ‘â Ž" }, { "input": "pimplier", "output": "â â Šâ â â ‡â Šâ »" }, { "input": "pimpliest", "output": "â â Šâ â â ‡â Šâ ‘â Œ" }, { "input": "pimply", "output": "â â Šâ â â ‡â ½" }, { "input": "pimps", "output": "â â Šâ â â Ž" }, { "input": "pin", "output": "â â ”" }, { "input": "pinafore", "output": "â â ”â â ¿â ‘" }, { "input": "pinafores", "output": "â â ”â â ¿â ‘â Ž" }, { "input": "pinball", "output": "â â ”â ƒâ â ‡â ‡" }, { "input": "pincer", "output": "â â ”⠉⠻" }, { "input": "pincers", "output": "â â ”⠉⠻⠎" }, { "input": "pinch", "output": "â â ”â ¡" }, { "input": "pinched", "output": "â â ”â ¡â «" }, { "input": "pinches", "output": "â â ”â ¡â ‘â Ž" }, { "input": "pinching", "output": "â â ”â ¡â ¬" }, { "input": "pincushion", "output": "â â ”⠉⠥⠩⠊⠕â " }, { "input": "pincushions", "output": "â â ”⠉⠥⠩⠊⠕â â Ž" }, { "input": "pine", "output": "â â ”â ‘" }, { "input": "pineapple", "output": "â â ”â ‘â â â â ‡â ‘" }, { "input": "pineapples", "output": "â â ”â ‘â â â â ‡â ‘â Ž" }, { "input": "pined", "output": "â â ”â «" }, { "input": "pines", "output": "â â ”â ‘â Ž" }, { "input": "pinfeather", "output": "â â ”⠋⠂⠮⠗" }, { "input": "pinfeathers", "output": "â â ”⠋⠂⠮⠗⠎" }, { "input": "ping", "output": "â â ¬" }, { "input": "pinged", "output": "â â ¬â «" }, { "input": "pinging", "output": "â â ¬â ¬" }, { "input": "pings", "output": "â â ¬â Ž" }, { "input": "pinhead", "output": "â â ”â “â ‚â ™" }, { "input": "pinheads", "output": "â â ”⠓⠂⠙⠎" }, { "input": "pinhole", "output": "â â ”⠓⠕⠇⠑" }, { "input": "pinholes", "output": "â â ”⠓⠕⠇⠑⠎" }, { "input": "pining", "output": "â â ”â ¬" }, { "input": "pinion", "output": "â â ”â Šâ •â " }, { "input": "pinioned", "output": "â â ”â Šâ •â â «" }, { "input": "pinioning", "output": "â â ”â Šâ •â â ¬" }, { "input": "pinions", "output": "â â ”â Šâ •â â Ž" }, { "input": "pink", "output": "â â ”â …" }, { "input": "pinked", "output": "â â ”â …â «" }, { "input": "pinker", "output": "â â ”â …â »" }, { "input": "pinkest", "output": "â â ”â …â ‘â Œ" }, { "input": "pinkeye", "output": "â â ”⠅⠑⠽⠑" }, { "input": "pinkie", "output": "â â ”â …â Šâ ‘" }, { "input": "pinkies", "output": "â â ”â …â Šâ ‘â Ž" }, { "input": "pinking", "output": "â â ”â …â ¬" }, { "input": "pinkish", "output": "â â ”â …â Šâ ©" }, { "input": "pinks", "output": "â â ”â …â Ž" }, { "input": "pinky", "output": "â â ”â …â ½" }, { "input": "pinnacle", "output": "â â ”â â â ‰â ‡â ‘" }, { "input": "pinnacles", "output": "â â ”â â â ‰â ‡â ‘â Ž" }, { "input": "pinnate", "output": "â â ”â â â žâ ‘" }, { "input": "pinned", "output": "â â ”â â «" }, { "input": "pinning", "output": "â â ”â â ¬" }, { "input": "pinochle", "output": "â â ”⠕⠡⠇⠑" }, { "input": "pinpoint", "output": "â â ”â â •⠔⠞" }, { "input": "pinpointed", "output": "â â ”â â •⠔⠞⠫" }, { "input": "pinpointing", "output": "â â ”â â •⠔⠞⠬" }, { "input": "pinpoints", "output": "â â ”â â •⠔⠞⠎" }, { "input": "pinprick", "output": "â â ”â â —⠊⠉⠅" }, { "input": "pinpricks", "output": "â â ”â â —⠊⠉⠅⠎" }, { "input": "pins", "output": "â â ”â Ž" }, { "input": "pinstripe", "output": "â â ”⠌⠗⠊â â ‘" }, { "input": "pinstriped", "output": "â â ”⠌⠗⠊â â «" }, { "input": "pinstripes", "output": "â â ”⠌⠗⠊â â ‘â Ž" }, { "input": "pint", "output": "â â ”â ž" }, { "input": "pinto", "output": "â â ”â žâ •" }, { "input": "pintoes", "output": "â â ”â žâ •â ‘â Ž" }, { "input": "pintos", "output": "â â ”â žâ •â Ž" }, { "input": "pints", "output": "â â ”â žâ Ž" }, { "input": "pinup", "output": "â â ”â ¥â " }, { "input": "pinups", "output": "â â ”â ¥â â Ž" }, { "input": "pinwheel", "output": "â â ”⠱⠑⠑⠇" }, { "input": "pinwheeled", "output": "â â ”⠱⠑⠑⠇⠫" }, { "input": "pinwheeling", "output": "â â ”⠱⠑⠑⠇⠬" }, { "input": "pinwheels", "output": "â â ”⠱⠑⠑⠇⠎" }, { "input": "pioneer", "output": "â â Šâ •â â ‘â »" }, { "input": "pioneered", "output": "â â Šâ •â â ‘⠻⠫" }, { "input": "pioneering", "output": "â â Šâ •â â ‘⠻⠬" }, { "input": "pioneers", "output": "â â Šâ •â â ‘⠻⠎" }, { "input": "pious", "output": "â â Šâ ³â Ž" }, { "input": "piously", "output": "â â Šâ ³â Žâ ‡â ½" }, { "input": "pip", "output": "â â Šâ " }, { "input": "pipe", "output": "â â Šâ â ‘" }, { "input": "piped", "output": "â â Šâ â «" }, { "input": "pipeline", "output": "â â Šâ â ‘⠇⠔⠑" }, { "input": "pipelines", "output": "â â Šâ â ‘⠇⠔⠑⠎" }, { "input": "piper", "output": "â â Šâ â »" }, { "input": "pipers", "output": "â â Šâ â »â Ž" }, { "input": "pipes", "output": "â â Šâ â ‘â Ž" }, { "input": "piping", "output": "â â Šâ â ¬" }, { "input": "pipit", "output": "â â Šâ â Šâ ž" }, { "input": "pipits", "output": "â â Šâ â Šâ žâ Ž" }, { "input": "pipped", "output": "â â Šâ â â «" }, { "input": "pippin", "output": "â â Šâ â â ”" }, { "input": "pipping", "output": "â â Šâ â â ¬" }, { "input": "pippins", "output": "â â Šâ â â ”â Ž" }, { "input": "pips", "output": "â â Šâ â Ž" }, { "input": "pipsqueak", "output": "â â Šâ â Žâ Ÿâ ¥â ‚â …" }, { "input": "pipsqueaks", "output": "â â Šâ â Žâ Ÿâ ¥â ‚â …â Ž" }, { "input": "piquancy", "output": "â â Šâ Ÿâ ¥â â â ‰â ½" }, { "input": "piquant", "output": "â â Šâ Ÿâ ¥â â â ž" }, { "input": "pique", "output": "â â Šâ Ÿâ ¥â ‘" }, { "input": "piqued", "output": "â â Šâ Ÿâ ¥â «" }, { "input": "piques", "output": "â â Šâ Ÿâ ¥â ‘â Ž" }, { "input": "piquing", "output": "â â Šâ Ÿâ ¥â ¬" }, { "input": "piracy", "output": "â â Šâ —â â ‰â ½" }, { "input": "piranha", "output": "â â Šâ —â â â “â " }, { "input": "piranhas", "output": "â â Šâ —â â â “â â Ž" }, { "input": "pirate", "output": "â â Šâ —â â žâ ‘" }, { "input": "pirated", "output": "â â Šâ —â â žâ «" }, { "input": "pirates", "output": "â â Šâ —â â žâ ‘â Ž" }, { "input": "piratical", "output": "â â Šâ —â â žâ Šâ ‰â â ‡" }, { "input": "pirating", "output": "â â Šâ —â â žâ ¬" }, { "input": "pirouette", "output": "â â Šâ —⠳⠑⠞⠞⠑" }, { "input": "pirouetted", "output": "â â Šâ —⠳⠑⠞⠞⠫" }, { "input": "pirouettes", "output": "â â Šâ —⠳⠑⠞⠞⠑⠎" }, { "input": "pirouetting", "output": "â â Šâ —⠳⠑⠞⠞⠬" }, { "input": "pis", "output": "â â Šâ Ž" }, { "input": "piscatorial", "output": "â â Šâ Žâ ‰â â žâ •â —â Šâ â ‡" }, { "input": "piss", "output": "â â Šâ Žâ Ž" }, { "input": "pissed", "output": "â â Šâ Žâ Žâ «" }, { "input": "pisses", "output": "â â Šâ Žâ Žâ ‘â Ž" }, { "input": "pissing", "output": "â â Šâ Žâ Žâ ¬" }, { "input": "pistachio", "output": "â â Šâ Œâ â ¡â Šâ •" }, { "input": "pistachios", "output": "â â Šâ Œâ â ¡â Šâ •â Ž" }, { "input": "pistil", "output": "â â Šâ Œâ Šâ ‡" }, { "input": "pistillate", "output": "â â Šâ Œâ Šâ ‡â ‡â â žâ ‘" }, { "input": "pistils", "output": "â â Šâ Œâ Šâ ‡â Ž" }, { "input": "pistol", "output": "â â Šâ Œâ •â ‡" }, { "input": "pistols", "output": "â â Šâ Œâ •⠇⠎" }, { "input": "piston", "output": "â â Šâ Œâ •â " }, { "input": "pistons", "output": "â â Šâ Œâ •â â Ž" }, { "input": "pit", "output": "â â Šâ ž" }, { "input": "pita", "output": "â â Šâ žâ " }, { "input": "pitch", "output": "â â Šâ žâ ¡" }, { "input": "pitchblende", "output": "â â Šâ žâ ¡â ƒâ ‡â ¢â ™â ‘" }, { "input": "pitched", "output": "â â Šâ žâ ¡â «" }, { "input": "pitcher", "output": "â â Šâ žâ ¡â »" }, { "input": "pitchers", "output": "â â Šâ žâ ¡â »â Ž" }, { "input": "pitches", "output": "â â Šâ žâ ¡â ‘â Ž" }, { "input": "pitchfork", "output": "â â Šâ žâ ¡â ¿â …" }, { "input": "pitchforked", "output": "â â Šâ žâ ¡â ¿â …â «" }, { "input": "pitchforking", "output": "â â Šâ žâ ¡â ¿â …â ¬" }, { "input": "pitchforks", "output": "â â Šâ žâ ¡â ¿â …â Ž" }, { "input": "pitching", "output": "â â Šâ žâ ¡â ¬" }, { "input": "pitchman", "output": "â â Šâ žâ ¡â â â " }, { "input": "pitchmen", "output": "â â Šâ žâ ¡â â ¢" }, { "input": "piteous", "output": "â â Šâ žâ ‘⠳⠎" }, { "input": "piteously", "output": "â â Šâ žâ ‘⠳⠎⠇⠽" }, { "input": "pitfall", "output": "â â Šâ žâ ‹â â ‡â ‡" }, { "input": "pitfalls", "output": "â â Šâ žâ ‹â â ‡â ‡â Ž" }, { "input": "pith", "output": "â â Šâ ¹" }, { "input": "pithier", "output": "â â Šâ ¹â Šâ »" }, { "input": "pithiest", "output": "â â Šâ ¹â Šâ ‘â Œ" }, { "input": "pithily", "output": "â â Šâ ¹â Šâ ‡â ½" }, { "input": "pithy", "output": "â â Šâ ¹â ½" }, { "input": "pitiable", "output": "â â Šâ žâ Šâ â ƒâ ‡â ‘" }, { "input": "pitiably", "output": "â â Šâ žâ Šâ â ƒâ ‡â ½" }, { "input": "pitied", "output": "â â Šâ žâ Šâ «" }, { "input": "pities", "output": "â â Šâ žâ Šâ ‘â Ž" }, { "input": "pitiful", "output": "â â Šâ žâ Šâ °â ‡" }, { "input": "pitifully", "output": "â â Šâ žâ Šâ °â ‡â ‡â ½" }, { "input": "pitiless", "output": "â â Šâ žâ Šâ ¨â Ž" }, { "input": "pitilessly", "output": "â â Šâ žâ Šâ ¨â Žâ ‡â ½" }, { "input": "piton", "output": "â â Šâ žâ •â " }, { "input": "pitons", "output": "â â Šâ žâ •â â Ž" }, { "input": "pits", "output": "â â Šâ žâ Ž" }, { "input": "pittance", "output": "â â Šâ žâ žâ ¨â ‘" }, { "input": "pittances", "output": "â â Šâ žâ žâ ¨â ‘â Ž" }, { "input": "pitted", "output": "â â Šâ žâ žâ «" }, { "input": "pitting", "output": "â â Šâ žâ žâ ¬" }, { "input": "pituitaries", "output": "â â Šâ žâ ¥â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "pituitary", "output": "â â Šâ žâ ¥â Šâ žâ œâ ½" }, { "input": "pity", "output": "â â °â ½" }, { "input": "pitying", "output": "â â °â ½â ¬" }, { "input": "pivot", "output": "â â Šâ §â •â ž" }, { "input": "pivotal", "output": "â â Šâ §â •â žâ â ‡" }, { "input": "pivoted", "output": "â â Šâ §â •â žâ «" }, { "input": "pivoting", "output": "â â Šâ §â •â žâ ¬" }, { "input": "pivots", "output": "â â Šâ §â •â žâ Ž" }, { "input": "pixel", "output": "â â Šâ ­â ‘â ‡" }, { "input": "pixels", "output": "â â Šâ ­â ‘⠇⠎" }, { "input": "pixie", "output": "â â Šâ ­â Šâ ‘" }, { "input": "pixies", "output": "â â Šâ ­â Šâ ‘â Ž" }, { "input": "pixy", "output": "â â Šâ ­â ½" }, { "input": "pizazz", "output": "â â Šâ µâ â µâ µ" }, { "input": "pizza", "output": "â â Šâ µâ µâ " }, { "input": "pizzas", "output": "â â Šâ µâ µâ â Ž" }, { "input": "pizzazz", "output": "â â Šâ µâ µâ â µâ µ" }, { "input": "pizzeria", "output": "â â Šâ µâ µâ »â Šâ " }, { "input": "pizzerias", "output": "â â Šâ µâ µâ »â Šâ â Ž" }, { "input": "pizzicati", "output": "â â Šâ µâ µâ Šâ ‰â â žâ Š" }, { "input": "pizzicato", "output": "â â Šâ µâ µâ Šâ ‰â â žâ •" }, { "input": "pizzicatos", "output": "â â Šâ µâ µâ Šâ ‰â â žâ •â Ž" }, { "input": "placard", "output": "â â ‡â â ‰â œâ ™" }, { "input": "placarded", "output": "â â ‡â â ‰â œâ ™â «" }, { "input": "placarding", "output": "â â ‡â â ‰â œâ ™â ¬" }, { "input": "placards", "output": "â â ‡â â ‰â œâ ™â Ž" }, { "input": "placate", "output": "â â ‡â â ‰â â žâ ‘" }, { "input": "placated", "output": "â â ‡â â ‰â â žâ «" }, { "input": "placates", "output": "â â ‡â â ‰â â žâ ‘â Ž" }, { "input": "placating", "output": "â â ‡â â ‰â â žâ ¬" }, { "input": "placation", "output": "â â ‡â â ‰â â °â " }, { "input": "place", "output": "â â ‡â â ‰â ‘" }, { "input": "placebo", "output": "â â ‡â â ‰â ‘⠃⠕" }, { "input": "placebos", "output": "â â ‡â â ‰â ‘⠃⠕⠎" }, { "input": "placed", "output": "â â ‡â â ‰â «" }, { "input": "placeholder", "output": "â â ‡â â ‰â ‘⠓⠕⠇⠙⠻" }, { "input": "placement", "output": "â â ‡â â ‰â ‘â °â ž" }, { "input": "placements", "output": "â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "placenta", "output": "â â ‡â â ‰â ¢â žâ " }, { "input": "placentae", "output": "â â ‡â â ‰â ¢â žâ â ‘" }, { "input": "placental", "output": "â â ‡â â ‰â ¢â žâ â ‡" }, { "input": "placentals", "output": "â â ‡â â ‰â ¢â žâ â ‡â Ž" }, { "input": "placentas", "output": "â â ‡â â ‰â ¢â žâ â Ž" }, { "input": "placer", "output": "â â ‡â â ‰â »" }, { "input": "placers", "output": "â â ‡â â ‰â »â Ž" }, { "input": "places", "output": "â â ‡â â ‰â ‘â Ž" }, { "input": "placid", "output": "â â ‡â â ‰â Šâ ™" }, { "input": "placidity", "output": "â â ‡â â ‰â Šâ ™â °â ½" }, { "input": "placidly", "output": "â â ‡â â ‰â Šâ ™â ‡â ½" }, { "input": "placing", "output": "â â ‡â â ‰â ¬" }, { "input": "placket", "output": "â â ‡â â ‰â …â ‘â ž" }, { "input": "plackets", "output": "â â ‡â â ‰â …â ‘â žâ Ž" }, { "input": "plagiarism", "output": "â â ‡â â ›â Šâ œâ Šâ Žâ " }, { "input": "plagiarisms", "output": "â â ‡â â ›â Šâ œâ Šâ Žâ â Ž" }, { "input": "plagiarist", "output": "â â ‡â â ›â Šâ œâ Šâ Œ" }, { "input": "plagiarists", "output": "â â ‡â â ›â Šâ œâ Šâ Œâ Ž" }, { "input": "plagiarize", "output": "â â ‡â â ›â Šâ œâ Šâ µâ ‘" }, { "input": "plagiarized", "output": "â â ‡â â ›â Šâ œâ Šâ µâ «" }, { "input": "plagiarizes", "output": "â â ‡â â ›â Šâ œâ Šâ µâ ‘â Ž" }, { "input": "plagiarizing", "output": "â â ‡â â ›â Šâ œâ Šâ µâ ¬" }, { "input": "plague", "output": "â â ‡â â ›â ¥â ‘" }, { "input": "plagued", "output": "â â ‡â â ›â ¥â «" }, { "input": "plagues", "output": "â â ‡â â ›â ¥â ‘â Ž" }, { "input": "plaguing", "output": "â â ‡â â ›â ¥â ¬" }, { "input": "plaice", "output": "â â ‡â â Šâ ‰â ‘" }, { "input": "plaid", "output": "â â ‡â â Šâ ™" }, { "input": "plaids", "output": "â â ‡â â Šâ ™â Ž" }, { "input": "plain", "output": "â â ‡â â ”" }, { "input": "plainclothes", "output": "â â ‡â â ”⠉⠇⠕⠮⠎" }, { "input": "plainclothesman", "output": "â â ‡â â ”⠉⠇⠕⠮⠎â â â " }, { "input": "plainclothesmen", "output": "â â ‡â â ”⠉⠇⠕⠮⠎â â ¢" }, { "input": "plainer", "output": "â â ‡â â ”â »" }, { "input": "plainest", "output": "â â ‡â â ”â ‘â Œ" }, { "input": "plainly", "output": "â â ‡â â ”⠇⠽" }, { "input": "plainness", "output": "â â ‡â â ”â °â Ž" }, { "input": "plains", "output": "â â ‡â â ”â Ž" }, { "input": "plaint", "output": "â â ‡â â ”â ž" }, { "input": "plaintiff", "output": "â â ‡â â ”â žâ Šâ ‹â ‹" }, { "input": "plaintiffs", "output": "â â ‡â â ”â žâ Šâ –â Ž" }, { "input": "plaintive", "output": "â â ‡â â ”â žâ Šâ §â ‘" }, { "input": "plaintively", "output": "â â ‡â â ”⠞⠊⠧⠑⠇⠽" }, { "input": "plaints", "output": "â â ‡â â ”â žâ Ž" }, { "input": "plait", "output": "â â ‡â â Šâ ž" }, { "input": "plaited", "output": "â â ‡â â Šâ žâ «" }, { "input": "plaiting", "output": "â â ‡â â Šâ žâ ¬" }, { "input": "plaits", "output": "â â ‡â â Šâ žâ Ž" }, { "input": "plan", "output": "â â ‡â â " }, { "input": "planar", "output": "â â ‡â â â œ" }, { "input": "plane", "output": "â â ‡â â â ‘" }, { "input": "planed", "output": "â â ‡â â â «" }, { "input": "planes", "output": "â â ‡â â â ‘â Ž" }, { "input": "planet", "output": "â â ‡â â â ‘â ž" }, { "input": "planetaria", "output": "â â ‡â â â ‘⠞⠜⠊â " }, { "input": "planetarium", "output": "â â ‡â â â ‘⠞⠜⠊⠥â " }, { "input": "planetariums", "output": "â â ‡â â â ‘⠞⠜⠊⠥â â Ž" }, { "input": "planetary", "output": "â â ‡â â â ‘⠞⠜⠽" }, { "input": "planets", "output": "â â ‡â â â ‘â žâ Ž" }, { "input": "plangent", "output": "â â ‡â â â ›â ¢â ž" }, { "input": "planing", "output": "â â ‡â â â ¬" }, { "input": "plank", "output": "â â ‡â â â …" }, { "input": "planked", "output": "â â ‡â â â …â «" }, { "input": "planking", "output": "â â ‡â â â …â ¬" }, { "input": "planks", "output": "â â ‡â â â …â Ž" }, { "input": "plankton", "output": "â â ‡â â â …â žâ •â " }, { "input": "planned", "output": "â â ‡â â â â «" }, { "input": "planner", "output": "â â ‡â â â â »" }, { "input": "planners", "output": "â â ‡â â â â »â Ž" }, { "input": "planning", "output": "â â ‡â â â â ¬" }, { "input": "plannings", "output": "â â ‡â â â â ¬â Ž" }, { "input": "plans", "output": "â â ‡â â â Ž" }, { "input": "plant", "output": "â â ‡â â â ž" }, { "input": "plantain", "output": "â â ‡â â â žâ â ”" }, { "input": "plantains", "output": "â â ‡â â â žâ â ”â Ž" }, { "input": "plantation", "output": "â â ‡â â â žâ â °â " }, { "input": "plantations", "output": "â â ‡â â â žâ â °â â Ž" }, { "input": "planted", "output": "â â ‡â â â žâ «" }, { "input": "planter", "output": "â â ‡â â â žâ »" }, { "input": "planters", "output": "â â ‡â â â žâ »â Ž" }, { "input": "planting", "output": "â â ‡â â â žâ ¬" }, { "input": "plantings", "output": "â â ‡â â â žâ ¬â Ž" }, { "input": "plants", "output": "â â ‡â â â žâ Ž" }, { "input": "plaque", "output": "â â ‡â â Ÿâ ¥â ‘" }, { "input": "plaques", "output": "â â ‡â â Ÿâ ¥â ‘â Ž" }, { "input": "plasma", "output": "â â ‡â â Žâ â " }, { "input": "plaster", "output": "â â ‡â â Œâ »" }, { "input": "plasterboard", "output": "â â ‡â â Œâ »â ƒâ •⠜⠙" }, { "input": "plastered", "output": "â â ‡â â Œâ »â «" }, { "input": "plasterer", "output": "â â ‡â â Œâ »â »" }, { "input": "plasterers", "output": "â â ‡â â Œâ »â »â Ž" }, { "input": "plastering", "output": "â â ‡â â Œâ »â ¬" }, { "input": "plasters", "output": "â â ‡â â Œâ »â Ž" }, { "input": "plastic", "output": "â â ‡â â Œâ Šâ ‰" }, { "input": "plasticity", "output": "â â ‡â â Œâ Šâ ‰â °â ½" }, { "input": "plastics", "output": "â â ‡â â Œâ Šâ ‰â Ž" }, { "input": "plate", "output": "â â ‡â â žâ ‘" }, { "input": "plateau", "output": "â â ‡â â žâ ‚â ¥" }, { "input": "plateaued", "output": "â â ‡â â žâ ‚⠥⠫" }, { "input": "plateauing", "output": "â â ‡â â žâ ‚⠥⠬" }, { "input": "plateaus", "output": "â â ‡â â žâ ‚⠥⠎" }, { "input": "plateaux", "output": "â â ‡â â žâ ‚⠥⠭" }, { "input": "plated", "output": "â â ‡â â žâ «" }, { "input": "plateful", "output": "â â ‡â â žâ ‘â °â ‡" }, { "input": "platefuls", "output": "â â ‡â â žâ ‘⠰⠇⠎" }, { "input": "platelet", "output": "â â ‡â â žâ ‘⠇⠑⠞" }, { "input": "platelets", "output": "â â ‡â â žâ ‘⠇⠑⠞⠎" }, { "input": "platen", "output": "â â ‡â â žâ ¢" }, { "input": "platens", "output": "â â ‡â â žâ ¢â Ž" }, { "input": "plates", "output": "â â ‡â â žâ ‘â Ž" }, { "input": "platform", "output": "â â ‡â â žâ ¿â " }, { "input": "platformed", "output": "â â ‡â â žâ ¿â â «" }, { "input": "platforming", "output": "â â ‡â â žâ ¿â â ¬" }, { "input": "platforms", "output": "â â ‡â â žâ ¿â â Ž" }, { "input": "plating", "output": "â â ‡â â žâ ¬" }, { "input": "platinum", "output": "â â ‡â â žâ ”â ¥â " }, { "input": "platitude", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "platitudes", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "platitudinous", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ”⠳⠎" }, { "input": "platonic", "output": "â â ‡â â žâ •â â Šâ ‰" }, { "input": "platoon", "output": "â â ‡â â žâ •â •â " }, { "input": "platooned", "output": "â â ‡â â žâ •â •â â «" }, { "input": "platooning", "output": "â â ‡â â žâ •â •â â ¬" }, { "input": "platoons", "output": "â â ‡â â žâ •â •â â Ž" }, { "input": "platter", "output": "â â ‡â â žâ žâ »" }, { "input": "platters", "output": "â â ‡â â žâ žâ »â Ž" }, { "input": "platypi", "output": "â â ‡â â žâ ½â â Š" }, { "input": "platypus", "output": "â â ‡â â žâ ½â â ¥â Ž" }, { "input": "platypuses", "output": "â â ‡â â žâ ½â â ¥â Žâ ‘â Ž" }, { "input": "plaudit", "output": "â â ‡â â ¥â ™â Šâ ž" }, { "input": "plaudits", "output": "â â ‡â â ¥â ™â Šâ žâ Ž" }, { "input": "plausibility", "output": "â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "plausible", "output": "â â ‡â â ¥â Žâ Šâ ƒâ ‡â ‘" }, { "input": "plausibly", "output": "â â ‡â â ¥â Žâ Šâ ƒâ ‡â ½" }, { "input": "play", "output": "â â ‡â â ½" }, { "input": "playable", "output": "â â ‡â â ½â â ƒâ ‡â ‘" }, { "input": "playact", "output": "â â ‡â â ½â â ‰â ž" }, { "input": "playacted", "output": "â â ‡â â ½â â ‰â žâ «" }, { "input": "playacting", "output": "â â ‡â â ½â â ‰â žâ ¬" }, { "input": "playacts", "output": "â â ‡â â ½â â ‰â žâ Ž" }, { "input": "playback", "output": "â â ‡â â ½â ƒâ â ‰â …" }, { "input": "playbacks", "output": "â â ‡â â ½â ƒâ â ‰â …â Ž" }, { "input": "playbill", "output": "â â ‡â â ½â ƒâ Šâ ‡â ‡" }, { "input": "playbills", "output": "â â ‡â â ½â ƒâ Šâ ‡â ‡â Ž" }, { "input": "playboy", "output": "â â ‡â â ½â ƒâ •â ½" }, { "input": "playboys", "output": "â â ‡â â ½â ƒâ •⠽⠎" }, { "input": "played", "output": "â â ‡â â ½â «" }, { "input": "player", "output": "â â ‡â â ½â »" }, { "input": "players", "output": "â â ‡â â ½â »â Ž" }, { "input": "playful", "output": "â â ‡â â ½â °â ‡" }, { "input": "playfully", "output": "â â ‡â â ½â °â ‡â ‡â ½" }, { "input": "playfulness", "output": "â â ‡â â ½â °â ‡â °â Ž" }, { "input": "playgoer", "output": "â â ‡â â ½â ›â •â »" }, { "input": "playgoers", "output": "â â ‡â â ½â ›â •⠻⠎" }, { "input": "playground", "output": "â â ‡â â ½â ›â —⠨⠙" }, { "input": "playgrounds", "output": "â â ‡â â ½â ›â —⠨⠙⠎" }, { "input": "playhouse", "output": "â â ‡â â ½â “⠳⠎⠑" }, { "input": "playhouses", "output": "â â ‡â â ½â “⠳⠎⠑⠎" }, { "input": "playing", "output": "â â ‡â â ½â ¬" }, { "input": "playmate", "output": "â â ‡â â ½â â â žâ ‘" }, { "input": "playmates", "output": "â â ‡â â ½â â â žâ ‘â Ž" }, { "input": "playoff", "output": "â â ‡â â ½â ·â ‹" }, { "input": "playoffs", "output": "â â ‡â â ½â ·â ‹â Ž" }, { "input": "playpen", "output": "â â ‡â â ½â â ¢" }, { "input": "playpens", "output": "â â ‡â â ½â â ¢â Ž" }, { "input": "playroom", "output": "â â ‡â â ½â —â •â •â " }, { "input": "playrooms", "output": "â â ‡â â ½â —â •â •â â Ž" }, { "input": "plays", "output": "â â ‡â â ½â Ž" }, { "input": "plaything", "output": "â â ‡â â ½â ¹â ¬" }, { "input": "playthings", "output": "â â ‡â â ½â ¹â ¬â Ž" }, { "input": "playwright", "output": "â â ‡â â ½â ºâ â —" }, { "input": "playwrights", "output": "â â ‡â â ½â ºâ â —â Ž" }, { "input": "plaza", "output": "â â ‡â â µâ " }, { "input": "plazas", "output": "â â ‡â â µâ â Ž" }, { "input": "plea", "output": "â â ‡â ‘â " }, { "input": "plead", "output": "â â ‡â ‚â ™" }, { "input": "pleaded", "output": "â â ‡â ‚⠙⠫" }, { "input": "pleader", "output": "â â ‡â ‚⠙⠻" }, { "input": "pleaders", "output": "â â ‡â ‚⠙⠻⠎" }, { "input": "pleading", "output": "â â ‡â ‚⠙⠬" }, { "input": "pleads", "output": "â â ‡â ‚⠙⠎" }, { "input": "pleas", "output": "â â ‡â ‚â Ž" }, { "input": "pleasant", "output": "â â ‡â ‚â Žâ â â ž" }, { "input": "pleasanter", "output": "â â ‡â ‚â Žâ â â žâ »" }, { "input": "pleasantest", "output": "â â ‡â ‚â Žâ â â žâ ‘â Œ" }, { "input": "pleasantly", "output": "â â ‡â ‚â Žâ â â žâ ‡â ½" }, { "input": "pleasantness", "output": "â â ‡â ‚â Žâ â â žâ °â Ž" }, { "input": "pleasantries", "output": "â â ‡â ‚â Žâ â â žâ —â Šâ ‘â Ž" }, { "input": "pleasantry", "output": "â â ‡â ‚â Žâ â â žâ —â ½" }, { "input": "please", "output": "â â ‡â ‚â Žâ ‘" }, { "input": "pleased", "output": "â â ‡â ‚â Žâ «" }, { "input": "pleases", "output": "â â ‡â ‚â Žâ ‘â Ž" }, { "input": "pleasing", "output": "â â ‡â ‚â Žâ ¬" }, { "input": "pleasingly", "output": "â â ‡â ‚⠎⠬⠇⠽" }, { "input": "pleasings", "output": "â â ‡â ‚⠎⠬⠎" }, { "input": "pleasurable", "output": "â â ‡â ‚⠎⠥⠗â â ƒâ ‡â ‘" }, { "input": "pleasurably", "output": "â â ‡â ‚⠎⠥⠗â â ƒâ ‡â ½" }, { "input": "pleasure", "output": "â â ‡â ‚⠎⠥⠗⠑" }, { "input": "pleasured", "output": "â â ‡â ‚⠎⠥⠗⠫" }, { "input": "pleasures", "output": "â â ‡â ‚⠎⠥⠗⠑⠎" }, { "input": "pleasuring", "output": "â â ‡â ‚⠎⠥⠗⠬" }, { "input": "pleat", "output": "â â ‡â ‚â ž" }, { "input": "pleated", "output": "â â ‡â ‚â žâ «" }, { "input": "pleating", "output": "â â ‡â ‚â žâ ¬" }, { "input": "pleats", "output": "â â ‡â ‚â žâ Ž" }, { "input": "plebeian", "output": "â â ‡â ‘⠃⠑⠊â â " }, { "input": "plebeians", "output": "â â ‡â ‘⠃⠑⠊â â â Ž" }, { "input": "plebiscite", "output": "â â ‡â ‘⠃⠊⠎⠉⠊⠞⠑" }, { "input": "plebiscites", "output": "â â ‡â ‘⠃⠊⠎⠉⠊⠞⠑⠎" }, { "input": "plectra", "output": "â â ‡â ‘⠉⠞⠗â " }, { "input": "plectrum", "output": "â â ‡â ‘⠉⠞⠗⠥â " }, { "input": "plectrums", "output": "â â ‡â ‘⠉⠞⠗⠥â â Ž" }, { "input": "pled", "output": "â â ‡â «" }, { "input": "pledge", "output": "â â ‡â «â ›â ‘" }, { "input": "pledged", "output": "â â ‡â «â ›â «" }, { "input": "pledges", "output": "â â ‡â «â ›â ‘â Ž" }, { "input": "pledging", "output": "â â ‡â «â ›â ¬" }, { "input": "plenaries", "output": "â â ‡â ¢â œâ Šâ ‘â Ž" }, { "input": "plenary", "output": "â â ‡â ¢â œâ ½" }, { "input": "plenipotentiaries", "output": "â â ‡â ¢â Šâ â •⠞⠢⠞⠊⠜⠊⠑⠎" }, { "input": "plenipotentiary", "output": "â â ‡â ¢â Šâ â •⠞⠢⠞⠊⠜⠽" }, { "input": "plenitude", "output": "â â ‡â ¢â Šâ žâ ¥â ™â ‘" }, { "input": "plenitudes", "output": "â â ‡â ¢â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "plenteous", "output": "â â ‡â ¢â žâ ‘⠳⠎" }, { "input": "plentiful", "output": "â â ‡â ¢â žâ Šâ °â ‡" }, { "input": "plentifully", "output": "â â ‡â ¢â žâ Šâ °â ‡â ‡â ½" }, { "input": "plenty", "output": "â â ‡â ¢â žâ ½" }, { "input": "plethora", "output": "â â ‡â ‘⠹⠕⠗â " }, { "input": "pleurisy", "output": "â â ‡â ‘⠥⠗⠊⠎⠽" }, { "input": "plexus", "output": "â â ‡â ‘⠭⠥⠎" }, { "input": "plexuses", "output": "â â ‡â ‘⠭⠥⠎⠑⠎" }, { "input": "pliability", "output": "â â ‡â Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "pliable", "output": "â â ‡â Šâ â ƒâ ‡â ‘" }, { "input": "pliancy", "output": "â â ‡â Šâ â â ‰â ½" }, { "input": "pliant", "output": "â â ‡â Šâ â â ž" }, { "input": "plied", "output": "â â ‡â Šâ «" }, { "input": "pliers", "output": "â â ‡â Šâ »â Ž" }, { "input": "plies", "output": "â â ‡â Šâ ‘â Ž" }, { "input": "plight", "output": "â â ‡â Šâ £â ž" }, { "input": "plighted", "output": "â â ‡â Šâ £â žâ «" }, { "input": "plighting", "output": "â â ‡â Šâ £â žâ ¬" }, { "input": "plights", "output": "â â ‡â Šâ £â žâ Ž" }, { "input": "plinth", "output": "â â ‡â ”â ¹" }, { "input": "plinths", "output": "â â ‡â ”⠹⠎" }, { "input": "plod", "output": "â â ‡â •â ™" }, { "input": "plodded", "output": "â â ‡â •⠙⠙⠫" }, { "input": "plodder", "output": "â â ‡â •⠙⠙⠻" }, { "input": "plodders", "output": "â â ‡â •⠙⠙⠻⠎" }, { "input": "plodding", "output": "â â ‡â •⠙⠙⠬" }, { "input": "ploddings", "output": "â â ‡â •⠙⠙⠬⠎" }, { "input": "plods", "output": "â â ‡â •⠙⠎" }, { "input": "plop", "output": "â â ‡â •â " }, { "input": "plopped", "output": "â â ‡â •â â â «" }, { "input": "plopping", "output": "â â ‡â •â â â ¬" }, { "input": "plops", "output": "â â ‡â •â â Ž" }, { "input": "plot", "output": "â â ‡â •â ž" }, { "input": "plots", "output": "â â ‡â •â žâ Ž" }, { "input": "plotted", "output": "â â ‡â •â žâ žâ «" }, { "input": "plotter", "output": "â â ‡â •â žâ žâ »" }, { "input": "plotters", "output": "â â ‡â •⠞⠞⠻⠎" }, { "input": "plotting", "output": "â â ‡â •â žâ žâ ¬" }, { "input": "plough", "output": "â â ‡â ³â £" }, { "input": "ploughed", "output": "â â ‡â ³â £â «" }, { "input": "ploughing", "output": "â â ‡â ³â £â ¬" }, { "input": "ploughs", "output": "â â ‡â ³â £â Ž" }, { "input": "ploughshare", "output": "â â ‡â ³â £â ©â œâ ‘" }, { "input": "ploughshares", "output": "â â ‡â ³â £â ©â œâ ‘â Ž" }, { "input": "plover", "output": "â â ‡â •â §â »" }, { "input": "plovers", "output": "â â ‡â •⠧⠻⠎" }, { "input": "plow", "output": "â â ‡â ª" }, { "input": "plowed", "output": "â â ‡â ªâ «" }, { "input": "plowing", "output": "â â ‡â ªâ ¬" }, { "input": "plowman", "output": "â â ‡â ªâ â â " }, { "input": "plowmen", "output": "â â ‡â ªâ â ¢" }, { "input": "plows", "output": "â â ‡â ªâ Ž" }, { "input": "plowshare", "output": "â â ‡â ªâ ©â œâ ‘" }, { "input": "plowshares", "output": "â â ‡â ªâ ©â œâ ‘â Ž" }, { "input": "ploy", "output": "â â ‡â •â ½" }, { "input": "ploys", "output": "â â ‡â •⠽⠎" }, { "input": "pluck", "output": "â â ‡â ¥â ‰â …" }, { "input": "plucked", "output": "â â ‡â ¥â ‰â …â «" }, { "input": "pluckier", "output": "â â ‡â ¥â ‰â …â Šâ »" }, { "input": "pluckiest", "output": "â â ‡â ¥â ‰â …â Šâ ‘â Œ" }, { "input": "pluckiness", "output": "â â ‡â ¥â ‰â …â Šâ °â Ž" }, { "input": "plucking", "output": "â â ‡â ¥â ‰â …â ¬" }, { "input": "plucks", "output": "â â ‡â ¥â ‰â …â Ž" }, { "input": "plucky", "output": "â â ‡â ¥â ‰â …â ½" }, { "input": "plug", "output": "â â ‡â ¥â ›" }, { "input": "plugged", "output": "â â ‡â ¥â ¶â «" }, { "input": "plugging", "output": "â â ‡â ¥â ¶â ¬" }, { "input": "plugin", "output": "â â ‡â ¥â ›â ”" }, { "input": "plugins", "output": "â â ‡â ¥â ›â ”â Ž" }, { "input": "plugs", "output": "â â ‡â ¥â ›â Ž" }, { "input": "plum", "output": "â â ‡â ¥â " }, { "input": "plumage", "output": "â â ‡â ¥â â â ›â ‘" }, { "input": "plumb", "output": "â â ‡â ¥â â ƒ" }, { "input": "plumbed", "output": "â â ‡â ¥â â ƒâ «" }, { "input": "plumber", "output": "â â ‡â ¥â â ƒâ »" }, { "input": "plumbers", "output": "â â ‡â ¥â â ƒâ »â Ž" }, { "input": "plumbing", "output": "â â ‡â ¥â â ƒâ ¬" }, { "input": "plumbs", "output": "â â ‡â ¥â â ƒâ Ž" }, { "input": "plume", "output": "â â ‡â ¥â â ‘" }, { "input": "plumed", "output": "â â ‡â ¥â â «" }, { "input": "plumes", "output": "â â ‡â ¥â â ‘â Ž" }, { "input": "pluming", "output": "â â ‡â ¥â â ¬" }, { "input": "plummer", "output": "â â ‡â ¥â â â »" }, { "input": "plummest", "output": "â â ‡â ¥â â â ‘â Œ" }, { "input": "plummet", "output": "â â ‡â ¥â â â ‘â ž" }, { "input": "plummeted", "output": "â â ‡â ¥â â â ‘â žâ «" }, { "input": "plummeting", "output": "â â ‡â ¥â â â ‘â žâ ¬" }, { "input": "plummets", "output": "â â ‡â ¥â â â ‘â žâ Ž" }, { "input": "plump", "output": "â â ‡â ¥â â " }, { "input": "plumped", "output": "â â ‡â ¥â â â «" }, { "input": "plumper", "output": "â â ‡â ¥â â â »" }, { "input": "plumpest", "output": "â â ‡â ¥â â â ‘â Œ" }, { "input": "plumping", "output": "â â ‡â ¥â â â ¬" }, { "input": "plumpness", "output": "â â ‡â ¥â â â °â Ž" }, { "input": "plumps", "output": "â â ‡â ¥â â â Ž" }, { "input": "plums", "output": "â â ‡â ¥â â Ž" }, { "input": "plunder", "output": "â â ‡â â ¥" }, { "input": "plundered", "output": "â â ‡â â ¥â «" }, { "input": "plunderer", "output": "â â ‡â â ¥â »" }, { "input": "plunderers", "output": "â â ‡â â ¥â »â Ž" }, { "input": "plundering", "output": "â â ‡â â ¥â ¬" }, { "input": "plunders", "output": "â â ‡â â ¥â Ž" }, { "input": "plunge", "output": "â â ‡â ¥â â ›â ‘" }, { "input": "plunged", "output": "â â ‡â ¥â â ›â «" }, { "input": "plunger", "output": "â â ‡â ¥â â ›â »" }, { "input": "plungers", "output": "â â ‡â ¥â â ›â »â Ž" }, { "input": "plunges", "output": "â â ‡â ¥â â ›â ‘â Ž" }, { "input": "plunging", "output": "â â ‡â ¥â â ›â ¬" }, { "input": "plunk", "output": "â â ‡â ¥â â …" }, { "input": "plunked", "output": "â â ‡â ¥â â …â «" }, { "input": "plunking", "output": "â â ‡â ¥â â …â ¬" }, { "input": "plunks", "output": "â â ‡â ¥â â …â Ž" }, { "input": "pluperfect", "output": "â â ‡â ¥â â »â ‹â ‘⠉⠞" }, { "input": "pluperfects", "output": "â â ‡â ¥â â »â ‹â ‘⠉⠞⠎" }, { "input": "plural", "output": "â â ‡â ¥â —â â ‡" }, { "input": "pluralism", "output": "â â ‡â ¥â —â â ‡â Šâ Žâ " }, { "input": "pluralistic", "output": "â â ‡â ¥â —â â ‡â Šâ Œâ Šâ ‰" }, { "input": "pluralities", "output": "â â ‡â ¥â —â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "plurality", "output": "â â ‡â ¥â —â â ‡â °â ½" }, { "input": "pluralize", "output": "â â ‡â ¥â —â â ‡â Šâ µâ ‘" }, { "input": "pluralized", "output": "â â ‡â ¥â —â â ‡â Šâ µâ «" }, { "input": "pluralizes", "output": "â â ‡â ¥â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "pluralizing", "output": "â â ‡â ¥â —â â ‡â Šâ µâ ¬" }, { "input": "plurals", "output": "â â ‡â ¥â —â â ‡â Ž" }, { "input": "plus", "output": "â â ‡â ¥â Ž" }, { "input": "pluses", "output": "â â ‡â ¥â Žâ ‘â Ž" }, { "input": "plush", "output": "â â ‡â ¥â ©" }, { "input": "plusher", "output": "â â ‡â ¥â ©â »" }, { "input": "plushest", "output": "â â ‡â ¥â ©â ‘â Œ" }, { "input": "plushier", "output": "â â ‡â ¥â ©â Šâ »" }, { "input": "plushiest", "output": "â â ‡â ¥â ©â Šâ ‘â Œ" }, { "input": "plushy", "output": "â â ‡â ¥â ©â ½" }, { "input": "plusses", "output": "â â ‡â ¥â Žâ Žâ ‘â Ž" }, { "input": "plutocracies", "output": "â â ‡â ¥â žâ •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "plutocracy", "output": "â â ‡â ¥â žâ •⠉⠗â â ‰â ½" }, { "input": "plutocrat", "output": "â â ‡â ¥â žâ •⠉⠗â â ž" }, { "input": "plutocratic", "output": "â â ‡â ¥â žâ •⠉⠗â â žâ Šâ ‰" }, { "input": "plutocrats", "output": "â â ‡â ¥â žâ •⠉⠗â â žâ Ž" }, { "input": "plutonium", "output": "â â ‡â ¥â žâ •â â Šâ ¥â " }, { "input": "ply", "output": "â â ‡â ½" }, { "input": "plying", "output": "â â ‡â ½â ¬" }, { "input": "plywood", "output": "â â ‡â ½â ºâ •â •â ™" }, { "input": "pneumatic", "output": "â â â ‘â ¥â â â žâ Šâ ‰" }, { "input": "pneumatically", "output": "â â â ‘â ¥â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "pneumonia", "output": "â â â ‘â ¥â â •â â Šâ " }, { "input": "poach", "output": "â â •â â ¡" }, { "input": "poached", "output": "â â •â â ¡â «" }, { "input": "poacher", "output": "â â •â â ¡â »" }, { "input": "poachers", "output": "â â •â â ¡â »â Ž" }, { "input": "poaches", "output": "â â •â â ¡â ‘â Ž" }, { "input": "poaching", "output": "â â •â â ¡â ¬" }, { "input": "pock", "output": "â â •⠉⠅" }, { "input": "pocked", "output": "â â •⠉⠅⠫" }, { "input": "pocket", "output": "â â •⠉⠅⠑⠞" }, { "input": "pocketbook", "output": "â â •⠉⠅⠑⠞⠃⠕⠕⠅" }, { "input": "pocketbooks", "output": "â â •⠉⠅⠑⠞⠃⠕⠕⠅⠎" }, { "input": "pocketed", "output": "â â •⠉⠅⠑⠞⠫" }, { "input": "pocketful", "output": "â â •⠉⠅⠑⠞⠰⠇" }, { "input": "pocketfuls", "output": "â â •⠉⠅⠑⠞⠰⠇⠎" }, { "input": "pocketing", "output": "â â •⠉⠅⠑⠞⠬" }, { "input": "pocketknife", "output": "â â •⠉⠅⠑⠞⠅â â Šâ ‹â ‘" }, { "input": "pocketknives", "output": "â â •⠉⠅⠑⠞⠅â â Šâ §â ‘â Ž" }, { "input": "pockets", "output": "â â •⠉⠅⠑⠞⠎" }, { "input": "pocking", "output": "â â •⠉⠅⠬" }, { "input": "pockmark", "output": "â â •⠉⠅â â œâ …" }, { "input": "pockmarked", "output": "â â •⠉⠅â â œâ …â «" }, { "input": "pockmarking", "output": "â â •⠉⠅â â œâ …â ¬" }, { "input": "pockmarks", "output": "â â •⠉⠅â â œâ …â Ž" }, { "input": "pocks", "output": "â â •⠉⠅⠎" }, { "input": "pod", "output": "â â •â ™" }, { "input": "podcast", "output": "â â •⠙⠉â â Œ" }, { "input": "podded", "output": "â â •⠙⠙⠫" }, { "input": "podding", "output": "â â •⠙⠙⠬" }, { "input": "podia", "output": "â â •⠙⠊â " }, { "input": "podiatrist", "output": "â â •⠙⠊â â žâ —â Šâ Œ" }, { "input": "podiatrists", "output": "â â •⠙⠊â â žâ —⠊⠌⠎" }, { "input": "podiatry", "output": "â â •⠙⠊â â žâ —â ½" }, { "input": "podium", "output": "â â •⠙⠊⠥â " }, { "input": "podiums", "output": "â â •⠙⠊⠥â â Ž" }, { "input": "pods", "output": "â â •⠙⠎" }, { "input": "poem", "output": "â â •â ‘â " }, { "input": "poems", "output": "â â •â ‘â â Ž" }, { "input": "poesy", "output": "â â •â ‘â Žâ ½" }, { "input": "poet", "output": "â â •â ‘â ž" }, { "input": "poetess", "output": "â â •â ‘â žâ ‘â Žâ Ž" }, { "input": "poetesses", "output": "â â •â ‘â žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "poetic", "output": "â â •â ‘â žâ Šâ ‰" }, { "input": "poetical", "output": "â â •â ‘â žâ Šâ ‰â â ‡" }, { "input": "poetically", "output": "â â •â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "poetry", "output": "â â •â ‘â žâ —â ½" }, { "input": "poets", "output": "â â •â ‘â žâ Ž" }, { "input": "pogrom", "output": "â â •⠛⠗⠕â " }, { "input": "pogroms", "output": "â â •⠛⠗⠕â â Ž" }, { "input": "poi", "output": "â â •â Š" }, { "input": "poignancy", "output": "â â •â Šâ ›â â â â ‰â ½" }, { "input": "poignant", "output": "â â •â Šâ ›â â â â ž" }, { "input": "poignantly", "output": "â â •â Šâ ›â â â â žâ ‡â ½" }, { "input": "poinsettia", "output": "â â •⠔⠎⠑⠞⠞⠊â " }, { "input": "poinsettias", "output": "â â •⠔⠎⠑⠞⠞⠊â â Ž" }, { "input": "point", "output": "â â •⠔⠞" }, { "input": "pointed", "output": "â â •⠔⠞⠫" }, { "input": "pointedly", "output": "â â •⠔⠞⠫⠇⠽" }, { "input": "pointer", "output": "â â •⠔⠞⠻" }, { "input": "pointers", "output": "â â •⠔⠞⠻⠎" }, { "input": "pointier", "output": "â â •⠔⠞⠊⠻" }, { "input": "pointiest", "output": "â â •⠔⠞⠊⠑⠌" }, { "input": "pointillism", "output": "â â •⠔⠞⠊⠇⠇⠊⠎â " }, { "input": "pointillist", "output": "â â •⠔⠞⠊⠇⠇⠊⠌" }, { "input": "pointillists", "output": "â â •⠔⠞⠊⠇⠇⠊⠌⠎" }, { "input": "pointing", "output": "â â •⠔⠞⠬" }, { "input": "pointless", "output": "â â •⠔⠞⠨⠎" }, { "input": "pointlessly", "output": "â â •⠔⠞⠨⠎⠇⠽" }, { "input": "pointlessness", "output": "â â •⠔⠞⠨⠎⠰⠎" }, { "input": "points", "output": "â â •⠔⠞⠎" }, { "input": "pointy", "output": "â â •⠔⠞⠽" }, { "input": "poise", "output": "â â •â Šâ Žâ ‘" }, { "input": "poised", "output": "â â •â Šâ Žâ «" }, { "input": "poises", "output": "â â •â Šâ Žâ ‘â Ž" }, { "input": "poising", "output": "â â •â Šâ Žâ ¬" }, { "input": "poison", "output": "â â •â Šâ Žâ •â " }, { "input": "poisoned", "output": "â â •â Šâ Žâ •â â «" }, { "input": "poisoner", "output": "â â •â Šâ Žâ •â â »" }, { "input": "poisoners", "output": "â â •â Šâ Žâ •â â »â Ž" }, { "input": "poisoning", "output": "â â •â Šâ Žâ •â â ¬" }, { "input": "poisonings", "output": "â â •â Šâ Žâ •â â ¬â Ž" }, { "input": "poisonous", "output": "â â •â Šâ Žâ •â â ³â Ž" }, { "input": "poisonously", "output": "â â •â Šâ Žâ •â â ³â Žâ ‡â ½" }, { "input": "poisons", "output": "â â •â Šâ Žâ •â â Ž" }, { "input": "poke", "output": "â â •â …â ‘" }, { "input": "poked", "output": "â â •â …â «" }, { "input": "poker", "output": "â â •â …â »" }, { "input": "pokers", "output": "â â •⠅⠻⠎" }, { "input": "pokes", "output": "â â •â …â ‘â Ž" }, { "input": "pokey", "output": "â â •â …â ‘â ½" }, { "input": "pokeys", "output": "â â •⠅⠑⠽⠎" }, { "input": "pokier", "output": "â â •â …â Šâ »" }, { "input": "pokiest", "output": "â â •â …â Šâ ‘â Œ" }, { "input": "poking", "output": "â â •â …â ¬" }, { "input": "poky", "output": "â â •â …â ½" }, { "input": "pol", "output": "â â •â ‡" }, { "input": "polar", "output": "â â •⠇⠜" }, { "input": "polarities", "output": "â â •⠇⠜⠊⠞⠊⠑⠎" }, { "input": "polarity", "output": "â â •⠇⠜⠰⠽" }, { "input": "polarization", "output": "â â •⠇⠜⠊⠵â â °â " }, { "input": "polarize", "output": "â â •⠇⠜⠊⠵⠑" }, { "input": "polarized", "output": "â â •⠇⠜⠊⠵⠫" }, { "input": "polarizes", "output": "â â •⠇⠜⠊⠵⠑⠎" }, { "input": "polarizing", "output": "â â •⠇⠜⠊⠵⠬" }, { "input": "pole", "output": "â â •⠇⠑" }, { "input": "polecat", "output": "â â •⠇⠑⠉â â ž" }, { "input": "polecats", "output": "â â •⠇⠑⠉â â žâ Ž" }, { "input": "poled", "output": "â â •⠇⠫" }, { "input": "polemic", "output": "â â •⠇⠑â â Šâ ‰" }, { "input": "polemical", "output": "â â •⠇⠑â â Šâ ‰â â ‡" }, { "input": "polemics", "output": "â â •⠇⠑â â Šâ ‰â Ž" }, { "input": "poles", "output": "â â •⠇⠑⠎" }, { "input": "polestar", "output": "â â •⠇⠑⠌⠜" }, { "input": "polestars", "output": "â â •⠇⠑⠌⠜⠎" }, { "input": "police", "output": "â â •⠇⠊⠉⠑" }, { "input": "policed", "output": "â â •⠇⠊⠉⠫" }, { "input": "policeman", "output": "â â •⠇⠊⠉⠑â â â " }, { "input": "policemen", "output": "â â •⠇⠊⠉⠑â â ¢" }, { "input": "polices", "output": "â â •⠇⠊⠉⠑⠎" }, { "input": "policewoman", "output": "â â •⠇⠊⠉⠑⠺⠕â â â " }, { "input": "policewomen", "output": "â â •⠇⠊⠉⠑⠺⠕â â ¢" }, { "input": "policies", "output": "â â •⠇⠊⠉⠊⠑⠎" }, { "input": "policing", "output": "â â •⠇⠊⠉⠬" }, { "input": "policy", "output": "â â •⠇⠊⠉⠽" }, { "input": "policyholder", "output": "â â •⠇⠊⠉⠽⠓⠕⠇⠙⠻" }, { "input": "policyholders", "output": "â â •⠇⠊⠉⠽⠓⠕⠇⠙⠻⠎" }, { "input": "poling", "output": "â â •⠇⠬" }, { "input": "polio", "output": "â â •⠇⠊⠕" }, { "input": "poliomyelitis", "output": "â â •⠇⠊⠕â â ½â ‘⠇⠊⠞⠊⠎" }, { "input": "polios", "output": "â â •⠇⠊⠕⠎" }, { "input": "polish", "output": "â â •⠇⠊⠩" }, { "input": "polished", "output": "â â •⠇⠊⠩⠫" }, { "input": "polisher", "output": "â â •⠇⠊⠩⠻" }, { "input": "polishers", "output": "â â •⠇⠊⠩⠻⠎" }, { "input": "polishes", "output": "â â •⠇⠊⠩⠑⠎" }, { "input": "polishing", "output": "â â •⠇⠊⠩⠬" }, { "input": "polite", "output": "â â •⠇⠊⠞⠑" }, { "input": "politely", "output": "â â •⠇⠊⠞⠑⠇⠽" }, { "input": "politeness", "output": "â â •⠇⠊⠞⠑⠰⠎" }, { "input": "politer", "output": "â â •⠇⠊⠞⠻" }, { "input": "politesse", "output": "â â •⠇⠊⠞⠑⠎⠎⠑" }, { "input": "politest", "output": "â â •⠇⠊⠞⠑⠌" }, { "input": "politic", "output": "â â •⠇⠊⠞⠊⠉" }, { "input": "political", "output": "â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "politically", "output": "â â •⠇⠊⠞⠊⠉â â ‡â ‡â ½" }, { "input": "politician", "output": "â â •⠇⠊⠞⠊⠉⠊â â " }, { "input": "politicians", "output": "â â •⠇⠊⠞⠊⠉⠊â â â Ž" }, { "input": "politicize", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠑" }, { "input": "politicized", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠫" }, { "input": "politicizes", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠑⠎" }, { "input": "politicizing", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠬" }, { "input": "politico", "output": "â â •⠇⠊⠞⠊⠉⠕" }, { "input": "politicoes", "output": "â â •⠇⠊⠞⠊⠉⠕⠑⠎" }, { "input": "politicos", "output": "â â •⠇⠊⠞⠊⠉⠕⠎" }, { "input": "politics", "output": "â â •⠇⠊⠞⠊⠉⠎" }, { "input": "polities", "output": "â â •⠇⠊⠞⠊⠑⠎" }, { "input": "polity", "output": "â â •⠇⠰⠽" }, { "input": "polka", "output": "â â •⠇⠅â " }, { "input": "polkaed", "output": "â â •⠇⠅â â «" }, { "input": "polkaing", "output": "â â •⠇⠅â â ¬" }, { "input": "polkas", "output": "â â •⠇⠅â â Ž" }, { "input": "poll", "output": "â â •⠇⠇" }, { "input": "polled", "output": "â â •⠇⠇⠫" }, { "input": "pollen", "output": "â â •⠇⠇⠢" }, { "input": "pollinate", "output": "â â •⠇⠇⠔â â žâ ‘" }, { "input": "pollinated", "output": "â â •⠇⠇⠔â â žâ «" }, { "input": "pollinates", "output": "â â •⠇⠇⠔â â žâ ‘â Ž" }, { "input": "pollinating", "output": "â â •⠇⠇⠔â â žâ ¬" }, { "input": "pollination", "output": "â â •⠇⠇⠔â â °â " }, { "input": "polling", "output": "â â •⠇⠇⠬" }, { "input": "polliwog", "output": "â â •⠇⠇⠊⠺⠕⠛" }, { "input": "polliwogs", "output": "â â •⠇⠇⠊⠺⠕⠛⠎" }, { "input": "polls", "output": "â â •⠇⠇⠎" }, { "input": "pollster", "output": "â â •⠇⠇⠌⠻" }, { "input": "pollsters", "output": "â â •⠇⠇⠌⠻⠎" }, { "input": "pollutant", "output": "â â •⠇⠇⠥⠞â â â ž" }, { "input": "pollutants", "output": "â â •⠇⠇⠥⠞â â â žâ Ž" }, { "input": "pollute", "output": "â â •⠇⠇⠥⠞⠑" }, { "input": "polluted", "output": "â â •⠇⠇⠥⠞⠫" }, { "input": "polluter", "output": "â â •⠇⠇⠥⠞⠻" }, { "input": "polluters", "output": "â â •⠇⠇⠥⠞⠻⠎" }, { "input": "pollutes", "output": "â â •⠇⠇⠥⠞⠑⠎" }, { "input": "polluting", "output": "â â •⠇⠇⠥⠞⠬" }, { "input": "pollution", "output": "â â •⠇⠇⠥⠰â " }, { "input": "pollywog", "output": "â â •⠇⠇⠽⠺⠕⠛" }, { "input": "pollywogs", "output": "â â •⠇⠇⠽⠺⠕⠛⠎" }, { "input": "polo", "output": "â â •⠇⠕" }, { "input": "polonaise", "output": "â â •⠇⠕â â â Šâ Žâ ‘" }, { "input": "polonaises", "output": "â â •⠇⠕â â â Šâ Žâ ‘â Ž" }, { "input": "polonium", "output": "â â •⠇⠕â â Šâ ¥â " }, { "input": "pols", "output": "â â •⠇⠎" }, { "input": "poltergeist", "output": "â â •⠇⠞⠻⠛⠑⠊⠌" }, { "input": "poltergeists", "output": "â â •⠇⠞⠻⠛⠑⠊⠌⠎" }, { "input": "poltroon", "output": "â â •⠇⠞⠗⠕⠕â " }, { "input": "poltroons", "output": "â â •⠇⠞⠗⠕⠕â â Ž" }, { "input": "polyester", "output": "â â •⠇⠽⠑⠌⠻" }, { "input": "polyesters", "output": "â â •⠇⠽⠑⠌⠻⠎" }, { "input": "polyethylene", "output": "â â •⠇⠽⠑⠹⠽⠇⠢⠑" }, { "input": "polygamist", "output": "â â •⠇⠽⠛â â â Šâ Œ" }, { "input": "polygamists", "output": "â â •⠇⠽⠛â â â Šâ Œâ Ž" }, { "input": "polygamous", "output": "â â •⠇⠽⠛â â â ³â Ž" }, { "input": "polygamy", "output": "â â •⠇⠽⠛â â â ½" }, { "input": "polyglot", "output": "â â •⠇⠽⠛⠇⠕⠞" }, { "input": "polyglots", "output": "â â •⠇⠽⠛⠇⠕⠞⠎" }, { "input": "polygon", "output": "â â •⠇⠽⠛⠕â " }, { "input": "polygonal", "output": "â â •⠇⠽⠛⠕â â â ‡" }, { "input": "polygons", "output": "â â •⠇⠽⠛⠕â â Ž" }, { "input": "polygraph", "output": "â â •⠇⠽⠛⠗â â â “" }, { "input": "polygraphed", "output": "â â •⠇⠽⠛⠗â â â “â «" }, { "input": "polygraphing", "output": "â â •⠇⠽⠛⠗â â â “â ¬" }, { "input": "polygraphs", "output": "â â •⠇⠽⠛⠗â â â “â Ž" }, { "input": "polyhedra", "output": "â â •⠇⠽⠓⠫⠗â " }, { "input": "polyhedron", "output": "â â •⠇⠽⠓⠫⠗⠕â " }, { "input": "polyhedrons", "output": "â â •⠇⠽⠓⠫⠗⠕â â Ž" }, { "input": "polymath", "output": "â â •⠇⠽â â â ¹" }, { "input": "polymaths", "output": "â â •⠇⠽â â â ¹â Ž" }, { "input": "polymer", "output": "â â •⠇⠽â â »" }, { "input": "polymeric", "output": "â â •⠇⠽â â »â Šâ ‰" }, { "input": "polymerization", "output": "â â •⠇⠽â â »â Šâ µâ â °â " }, { "input": "polymers", "output": "â â •⠇⠽â â »â Ž" }, { "input": "polymorphic", "output": "â â •⠇⠽â â •â —â â “â Šâ ‰" }, { "input": "polynomial", "output": "â â •⠇⠽â â •â â Šâ â ‡" }, { "input": "polynomials", "output": "â â •⠇⠽â â •â â Šâ â ‡â Ž" }, { "input": "polyp", "output": "â â •⠇⠽â " }, { "input": "polyphonic", "output": "â â •⠇⠽â â “â •â â Šâ ‰" }, { "input": "polyphony", "output": "â â •⠇⠽â â “â •â â ½" }, { "input": "polyps", "output": "â â •⠇⠽â â Ž" }, { "input": "polystyrene", "output": "â â •⠇⠽⠌⠽⠗⠢⠑" }, { "input": "polysyllabic", "output": "â â •⠇⠽⠎⠽⠇⠇â â ƒâ Šâ ‰" }, { "input": "polysyllable", "output": "â â •⠇⠽⠎⠽⠇⠇â â ƒâ ‡â ‘" }, { "input": "polysyllables", "output": "â â •⠇⠽⠎⠽⠇⠇â â ƒâ ‡â ‘â Ž" }, { "input": "polytechnic", "output": "â â •⠇⠽⠞⠑⠡â â Šâ ‰" }, { "input": "polytechnics", "output": "â â •⠇⠽⠞⠑⠡â â Šâ ‰â Ž" }, { "input": "polytheism", "output": "â â •⠇⠽⠮⠊⠎â " }, { "input": "polytheist", "output": "â â •⠇⠽⠮⠊⠌" }, { "input": "polytheistic", "output": "â â •⠇⠽⠮⠊⠌⠊⠉" }, { "input": "polytheists", "output": "â â •⠇⠽⠮⠊⠌⠎" }, { "input": "polythene", "output": "â â •⠇⠽⠮â â ‘" }, { "input": "polyunsaturated", "output": "â â •⠇⠽⠥â â Žâ â žâ ¥â —â â žâ «" }, { "input": "pomade", "output": "â â •â â â ™â ‘" }, { "input": "pomaded", "output": "â â •â â â ™â «" }, { "input": "pomades", "output": "â â •â â â ™â ‘â Ž" }, { "input": "pomading", "output": "â â •â â â ™â ¬" }, { "input": "pomegranate", "output": "â â •â â ‘⠛⠗â â â â žâ ‘" }, { "input": "pomegranates", "output": "â â •â â ‘⠛⠗â â â â žâ ‘â Ž" }, { "input": "pommel", "output": "â â •â â â ‘â ‡" }, { "input": "pommeled", "output": "â â •â â â ‘⠇⠫" }, { "input": "pommeling", "output": "â â •â â â ‘⠇⠬" }, { "input": "pommelled", "output": "â â •â â â ‘⠇⠇⠫" }, { "input": "pommelling", "output": "â â •â â â ‘⠇⠇⠬" }, { "input": "pommels", "output": "â â •â â â ‘⠇⠎" }, { "input": "pomp", "output": "â â •â â " }, { "input": "pompadour", "output": "â â •â â â â ™â ³â —" }, { "input": "pompadoured", "output": "â â •â â â â ™â ³â —â «" }, { "input": "pompadours", "output": "â â •â â â â ™â ³â —â Ž" }, { "input": "pompom", "output": "â â •â â â •â " }, { "input": "pompoms", "output": "â â •â â â •â â Ž" }, { "input": "pompon", "output": "â â •â â â •â " }, { "input": "pompons", "output": "â â •â â â •â â Ž" }, { "input": "pomposity", "output": "â â •â â â •â Žâ °â ½" }, { "input": "pompous", "output": "â â •â â â ³â Ž" }, { "input": "pompously", "output": "â â •â â â ³â Žâ ‡â ½" }, { "input": "pompousness", "output": "â â •â â â ³â Žâ °â Ž" }, { "input": "poncho", "output": "â â •â â ¡â •" }, { "input": "ponchos", "output": "â â •â â ¡â •â Ž" }, { "input": "pond", "output": "â â •â â ™" }, { "input": "ponder", "output": "â â •â â ™â »" }, { "input": "pondered", "output": "â â •â â ™â »â «" }, { "input": "pondering", "output": "â â •â â ™â »â ¬" }, { "input": "ponderous", "output": "â â •â â ™â »â ³â Ž" }, { "input": "ponderously", "output": "â â •â â ™â »â ³â Žâ ‡â ½" }, { "input": "ponders", "output": "â â •â â ™â »â Ž" }, { "input": "ponds", "output": "â â •â â ™â Ž" }, { "input": "pone", "output": "â â â •" }, { "input": "pones", "output": "â â â •â Ž" }, { "input": "poniard", "output": "â â •â â Šâ œâ ™" }, { "input": "poniards", "output": "â â •â â Šâ œâ ™â Ž" }, { "input": "ponies", "output": "â â •â â Šâ ‘â Ž" }, { "input": "pontiff", "output": "â â •â â žâ Šâ ‹â ‹" }, { "input": "pontiffs", "output": "â â •â â žâ Šâ –â Ž" }, { "input": "pontifical", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â ‡" }, { "input": "pontificate", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ ‘" }, { "input": "pontificated", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ «" }, { "input": "pontificates", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ ‘â Ž" }, { "input": "pontificating", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ ¬" }, { "input": "pontoon", "output": "â â •â â žâ •â •â " }, { "input": "pontoons", "output": "â â •â â žâ •â •â â Ž" }, { "input": "pony", "output": "â â •â â ½" }, { "input": "ponytail", "output": "â â •â â ½â žâ â Šâ ‡" }, { "input": "ponytails", "output": "â â •â â ½â žâ â Šâ ‡â Ž" }, { "input": "pooch", "output": "â â •â •â ¡" }, { "input": "pooched", "output": "â â •â •â ¡â «" }, { "input": "pooches", "output": "â â •â •â ¡â ‘â Ž" }, { "input": "pooching", "output": "â â •â •â ¡â ¬" }, { "input": "poodle", "output": "â â •⠕⠙⠇⠑" }, { "input": "poodles", "output": "â â •⠕⠙⠇⠑⠎" }, { "input": "pooh", "output": "â â •â •â “" }, { "input": "poohed", "output": "â â •â •â “â «" }, { "input": "poohing", "output": "â â •â •â “â ¬" }, { "input": "poohs", "output": "â â •â •â “â Ž" }, { "input": "pool", "output": "â â •â •â ‡" }, { "input": "pooled", "output": "â â •⠕⠇⠫" }, { "input": "pooling", "output": "â â •⠕⠇⠬" }, { "input": "pools", "output": "â â •⠕⠇⠎" }, { "input": "poop", "output": "â â •â •â " }, { "input": "pooped", "output": "â â •â •â â «" }, { "input": "pooping", "output": "â â •â •â â ¬" }, { "input": "poops", "output": "â â •â •â â Ž" }, { "input": "poor", "output": "â â •â •â —" }, { "input": "poorer", "output": "â â •â •â —â »" }, { "input": "poorest", "output": "â â •â •â —â ‘â Œ" }, { "input": "poorhouse", "output": "â â •⠕⠗⠓⠳⠎⠑" }, { "input": "poorhouses", "output": "â â •⠕⠗⠓⠳⠎⠑⠎" }, { "input": "poorly", "output": "â â •⠕⠗⠇⠽" }, { "input": "pop", "output": "â â •â " }, { "input": "popcorn", "output": "â â •â â ‰â •â —â " }, { "input": "pope", "output": "â â •â â ‘" }, { "input": "popes", "output": "â â •â â ‘â Ž" }, { "input": "popgun", "output": "â â •â â ›â ¥â " }, { "input": "popguns", "output": "â â •â â ›â ¥â â Ž" }, { "input": "popinjay", "output": "â â •â â ”â šâ â ½" }, { "input": "popinjays", "output": "â â •â â ”â šâ â ½â Ž" }, { "input": "poplar", "output": "â â •â â ‡â œ" }, { "input": "poplars", "output": "â â •â â ‡â œâ Ž" }, { "input": "poplin", "output": "â â •â â ‡â ”" }, { "input": "popover", "output": "â â •â â •â §â »" }, { "input": "popovers", "output": "â â •â â •⠧⠻⠎" }, { "input": "poppa", "output": "â â •â â â " }, { "input": "poppas", "output": "â â •â â â â Ž" }, { "input": "popped", "output": "â â •â â â «" }, { "input": "poppies", "output": "â â •â â â Šâ ‘â Ž" }, { "input": "popping", "output": "â â •â â â ¬" }, { "input": "poppy", "output": "â â •â â â ½" }, { "input": "poppycock", "output": "â â •â â â ½â ‰â •⠉⠅" }, { "input": "pops", "output": "â â •â â Ž" }, { "input": "populace", "output": "â â •â â ¥â ‡â â ‰â ‘" }, { "input": "populaces", "output": "â â •â â ¥â ‡â â ‰â ‘â Ž" }, { "input": "popular", "output": "â â •â â ¥â ‡â œ" }, { "input": "popularity", "output": "â â •â â ¥â ‡â œâ °â ½" }, { "input": "popularization", "output": "â â •â â ¥â ‡â œâ Šâ µâ â °â " }, { "input": "popularize", "output": "â â •â â ¥â ‡â œâ Šâ µâ ‘" }, { "input": "popularized", "output": "â â •â â ¥â ‡â œâ Šâ µâ «" }, { "input": "popularizes", "output": "â â •â â ¥â ‡â œâ Šâ µâ ‘â Ž" }, { "input": "popularizing", "output": "â â •â â ¥â ‡â œâ Šâ µâ ¬" }, { "input": "popularly", "output": "â â •â â ¥â ‡â œâ ‡â ½" }, { "input": "populate", "output": "â â •â â ¥â ‡â â žâ ‘" }, { "input": "populated", "output": "â â •â â ¥â ‡â â žâ «" }, { "input": "populates", "output": "â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "populating", "output": "â â •â â ¥â ‡â â žâ ¬" }, { "input": "population", "output": "â â •â â ¥â ‡â â °â " }, { "input": "populations", "output": "â â •â â ¥â ‡â â °â â Ž" }, { "input": "populism", "output": "â â •â â ¥â ‡â Šâ Žâ " }, { "input": "populist", "output": "â â •â â ¥â ‡â Šâ Œ" }, { "input": "populists", "output": "â â •â â ¥â ‡â Šâ Œâ Ž" }, { "input": "populous", "output": "â â •â â ¥â ‡â ³â Ž" }, { "input": "porcelain", "output": "â â •⠗⠉⠑⠇â â ”" }, { "input": "porch", "output": "â â •â —â ¡" }, { "input": "porches", "output": "â â •â —â ¡â ‘â Ž" }, { "input": "porcine", "output": "â â •⠗⠉⠔⠑" }, { "input": "porcupine", "output": "â â •⠗⠉⠥â â ”â ‘" }, { "input": "porcupines", "output": "â â •⠗⠉⠥â â ”â ‘â Ž" }, { "input": "pore", "output": "â â •â —â ‘" }, { "input": "pored", "output": "â â •â —â «" }, { "input": "pores", "output": "â â •â —â ‘â Ž" }, { "input": "poring", "output": "â â •â —â ¬" }, { "input": "pork", "output": "â â •â —â …" }, { "input": "porn", "output": "â â •â —â " }, { "input": "porno", "output": "â â •â —â â •" }, { "input": "pornographer", "output": "â â •â —â â •⠛⠗â â â “â »" }, { "input": "pornographers", "output": "â â •â —â â •⠛⠗â â â “⠻⠎" }, { "input": "pornographic", "output": "â â •â —â â •⠛⠗â â â “â Šâ ‰" }, { "input": "pornography", "output": "â â •â —â â •⠛⠗â â â “â ½" }, { "input": "porosity", "output": "â â •â —â •â Žâ °â ½" }, { "input": "porous", "output": "â â •⠗⠳⠎" }, { "input": "porphyry", "output": "â â •â —â â “⠽⠗⠽" }, { "input": "porpoise", "output": "â â •â —â â •â Šâ Žâ ‘" }, { "input": "porpoised", "output": "â â •â —â â •â Šâ Žâ «" }, { "input": "porpoises", "output": "â â •â —â â •â Šâ Žâ ‘â Ž" }, { "input": "porpoising", "output": "â â •â —â â •â Šâ Žâ ¬" }, { "input": "porridge", "output": "â â •⠗⠗⠊⠙⠛⠑" }, { "input": "porringer", "output": "â â •⠗⠗⠬⠻" }, { "input": "porringers", "output": "â â •⠗⠗⠬⠻⠎" }, { "input": "port", "output": "â â •â —â ž" }, { "input": "portability", "output": "â â •â —â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "portable", "output": "â â •â —â žâ â ƒâ ‡â ‘" }, { "input": "portables", "output": "â â •â —â žâ â ƒâ ‡â ‘â Ž" }, { "input": "portage", "output": "â â •â —â žâ â ›â ‘" }, { "input": "portaged", "output": "â â •â —â žâ â ›â «" }, { "input": "portages", "output": "â â •â —â žâ â ›â ‘â Ž" }, { "input": "portaging", "output": "â â •â —â žâ â ›â ¬" }, { "input": "portal", "output": "â â •â —â žâ â ‡" }, { "input": "portals", "output": "â â •â —â žâ â ‡â Ž" }, { "input": "portcullis", "output": "â â •⠗⠞⠉⠥⠇⠇⠊⠎" }, { "input": "portcullises", "output": "â â •⠗⠞⠉⠥⠇⠇⠊⠎⠑⠎" }, { "input": "ported", "output": "â â •â —â žâ «" }, { "input": "portend", "output": "â â •⠗⠞⠢⠙" }, { "input": "portended", "output": "â â •⠗⠞⠢⠙⠫" }, { "input": "portending", "output": "â â •⠗⠞⠢⠙⠬" }, { "input": "portends", "output": "â â •⠗⠞⠢⠙⠎" }, { "input": "portent", "output": "â â •⠗⠞⠢⠞" }, { "input": "portentous", "output": "â â •⠗⠞⠢⠞⠳⠎" }, { "input": "portentously", "output": "â â •⠗⠞⠢⠞⠳⠎⠇⠽" }, { "input": "portents", "output": "â â •⠗⠞⠢⠞⠎" }, { "input": "porter", "output": "â â •â —â žâ »" }, { "input": "porterhouse", "output": "â â •⠗⠞⠻⠓⠳⠎⠑" }, { "input": "porterhouses", "output": "â â •⠗⠞⠻⠓⠳⠎⠑⠎" }, { "input": "porters", "output": "â â •⠗⠞⠻⠎" }, { "input": "portfolio", "output": "â â •⠗⠞⠋⠕⠇⠊⠕" }, { "input": "portfolios", "output": "â â •⠗⠞⠋⠕⠇⠊⠕⠎" }, { "input": "porthole", "output": "â â •⠗⠞⠓⠕⠇⠑" }, { "input": "portholes", "output": "â â •⠗⠞⠓⠕⠇⠑⠎" }, { "input": "portico", "output": "â â •⠗⠞⠊⠉⠕" }, { "input": "porticoes", "output": "â â •⠗⠞⠊⠉⠕⠑⠎" }, { "input": "porticos", "output": "â â •⠗⠞⠊⠉⠕⠎" }, { "input": "porting", "output": "â â •â —â žâ ¬" }, { "input": "portion", "output": "â â •â —â °â " }, { "input": "portioned", "output": "â â •â —â °â â «" }, { "input": "portioning", "output": "â â •â —â °â â ¬" }, { "input": "portions", "output": "â â •â —â °â â Ž" }, { "input": "portlier", "output": "â â •⠗⠞⠇⠊⠻" }, { "input": "portliest", "output": "â â •⠗⠞⠇⠊⠑⠌" }, { "input": "portliness", "output": "â â •⠗⠞⠇⠊⠰⠎" }, { "input": "portly", "output": "â â •⠗⠞⠇⠽" }, { "input": "portmanteau", "output": "â â •â —â žâ â â â žâ ‚â ¥" }, { "input": "portmanteaus", "output": "â â •â —â žâ â â â žâ ‚⠥⠎" }, { "input": "portmanteaux", "output": "â â •â —â žâ â â â žâ ‚⠥⠭" }, { "input": "portrait", "output": "â â •â —â žâ —â â Šâ ž" }, { "input": "portraitist", "output": "â â •â —â žâ —â â Šâ žâ Šâ Œ" }, { "input": "portraitists", "output": "â â •â —â žâ —â â Šâ žâ Šâ Œâ Ž" }, { "input": "portraits", "output": "â â •â —â žâ —â â Šâ žâ Ž" }, { "input": "portraiture", "output": "â â •â —â žâ —â â Šâ žâ ¥â —â ‘" }, { "input": "portray", "output": "â â •â —â žâ —â â ½" }, { "input": "portrayal", "output": "â â •â —â žâ —â â ½â â ‡" }, { "input": "portrayals", "output": "â â •â —â žâ —â â ½â â ‡â Ž" }, { "input": "portrayed", "output": "â â •â —â žâ —â â ½â «" }, { "input": "portraying", "output": "â â •â —â žâ —â â ½â ¬" }, { "input": "portrays", "output": "â â •â —â žâ —â â ½â Ž" }, { "input": "ports", "output": "â â •â —â žâ Ž" }, { "input": "pose", "output": "â â •â Žâ ‘" }, { "input": "posed", "output": "â â •â Žâ «" }, { "input": "poser", "output": "â â •â Žâ »" }, { "input": "posers", "output": "â â •⠎⠻⠎" }, { "input": "poses", "output": "â â •â Žâ ‘â Ž" }, { "input": "poseur", "output": "â â •⠎⠑⠥⠗" }, { "input": "poseurs", "output": "â â •⠎⠑⠥⠗⠎" }, { "input": "posh", "output": "â â •â ©" }, { "input": "posher", "output": "â â •â ©â »" }, { "input": "poshest", "output": "â â •â ©â ‘â Œ" }, { "input": "posies", "output": "â â •â Žâ Šâ ‘â Ž" }, { "input": "posing", "output": "â â •â Žâ ¬" }, { "input": "posit", "output": "â â •â Žâ Šâ ž" }, { "input": "posited", "output": "â â •â Žâ Šâ žâ «" }, { "input": "positing", "output": "â â •â Žâ Šâ žâ ¬" }, { "input": "position", "output": "â â •â Žâ Šâ °â " }, { "input": "positional", "output": "â â •â Žâ Šâ °â â â ‡" }, { "input": "positioned", "output": "â â •â Žâ Šâ °â â «" }, { "input": "positioning", "output": "â â •â Žâ Šâ °â â ¬" }, { "input": "positions", "output": "â â •â Žâ Šâ °â â Ž" }, { "input": "positive", "output": "â â •â Žâ Šâ žâ Šâ §â ‘" }, { "input": "positively", "output": "â â •⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "positives", "output": "â â •â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "positivism", "output": "â â •â Žâ Šâ žâ Šâ §â Šâ Žâ " }, { "input": "positron", "output": "â â •â Žâ Šâ žâ —â •â " }, { "input": "positrons", "output": "â â •â Žâ Šâ žâ —â •â â Ž" }, { "input": "posits", "output": "â â •â Žâ Šâ žâ Ž" }, { "input": "posse", "output": "â â •â Žâ Žâ ‘" }, { "input": "posses", "output": "â â •â Žâ Žâ ‘â Ž" }, { "input": "possess", "output": "â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "possessed", "output": "â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "possesses", "output": "â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "possessing", "output": "â â •â Žâ Žâ ‘â Žâ Žâ ¬" }, { "input": "possession", "output": "â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "possessions", "output": "â â •â Žâ Žâ ‘â Žâ ¨â â Ž" }, { "input": "possessive", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘" }, { "input": "possessively", "output": "â â •⠎⠎⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "possessiveness", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "possessives", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘â Ž" }, { "input": "possessor", "output": "â â •â Žâ Žâ ‘â Žâ Žâ •â —" }, { "input": "possessors", "output": "â â •â Žâ Žâ ‘â Žâ Žâ •â —â Ž" }, { "input": "possibilities", "output": "â â •⠎⠎⠊⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "possibility", "output": "â â •⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "possible", "output": "â â •⠎⠎⠊⠃⠇⠑" }, { "input": "possibles", "output": "â â •⠎⠎⠊⠃⠇⠑⠎" }, { "input": "possibly", "output": "â â •⠎⠎⠊⠃⠇⠽" }, { "input": "possum", "output": "â â •â Žâ Žâ ¥â " }, { "input": "possums", "output": "â â •â Žâ Žâ ¥â â Ž" }, { "input": "post", "output": "â â •â Œ" }, { "input": "postage", "output": "â â •â Œâ â ›â ‘" }, { "input": "postal", "output": "â â •â Œâ â ‡" }, { "input": "postbox", "output": "â â •⠌⠃⠕⠭" }, { "input": "postcard", "output": "â â •⠌⠉⠜⠙" }, { "input": "postcards", "output": "â â •⠌⠉⠜⠙⠎" }, { "input": "postcode", "output": "â â •⠌⠉⠕⠙⠑" }, { "input": "postcodes", "output": "â â •⠌⠉⠕⠙⠑⠎" }, { "input": "postdate", "output": "â â •⠌⠙â â žâ ‘" }, { "input": "postdated", "output": "â â •⠌⠙â â žâ «" }, { "input": "postdates", "output": "â â •⠌⠙â â žâ ‘â Ž" }, { "input": "postdating", "output": "â â •⠌⠙â â žâ ¬" }, { "input": "postdoc", "output": "â â •⠌⠙⠕⠉" }, { "input": "postdoctoral", "output": "â â •⠌⠙⠕⠉⠞⠕⠗â â ‡" }, { "input": "posted", "output": "â â •⠌⠫" }, { "input": "poster", "output": "â â •⠌⠻" }, { "input": "posterior", "output": "â â •⠌⠻⠊⠕⠗" }, { "input": "posteriors", "output": "â â •⠌⠻⠊⠕⠗⠎" }, { "input": "posterity", "output": "â â •⠌⠻⠰⠽" }, { "input": "posters", "output": "â â •⠌⠻⠎" }, { "input": "postgraduate", "output": "â â •⠌⠛⠗â â ™â ¥â â žâ ‘" }, { "input": "postgraduates", "output": "â â •⠌⠛⠗â â ™â ¥â â žâ ‘â Ž" }, { "input": "posthaste", "output": "â â •⠌⠓â â Œâ ‘" }, { "input": "posthumous", "output": "â â •⠌⠓⠥â â ³â Ž" }, { "input": "posthumously", "output": "â â •⠌⠓⠥â â ³â Žâ ‡â ½" }, { "input": "posting", "output": "â â •⠌⠬" }, { "input": "postlude", "output": "â â •⠌⠇⠥⠙⠑" }, { "input": "postludes", "output": "â â •⠌⠇⠥⠙⠑⠎" }, { "input": "postman", "output": "â â •â Œâ â â " }, { "input": "postmark", "output": "â â •â Œâ â œâ …" }, { "input": "postmarked", "output": "â â •â Œâ â œâ …â «" }, { "input": "postmarking", "output": "â â •â Œâ â œâ …â ¬" }, { "input": "postmarks", "output": "â â •â Œâ â œâ …â Ž" }, { "input": "postmaster", "output": "â â •â Œâ â â Œâ »" }, { "input": "postmasters", "output": "â â •â Œâ â â Œâ »â Ž" }, { "input": "postmen", "output": "â â •â Œâ â ¢" }, { "input": "postmistress", "output": "â â •â Œâ â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "postmistresses", "output": "â â •â Œâ â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "postmodern", "output": "â â •â Œâ â •⠙⠻â " }, { "input": "postmortem", "output": "â â •â Œâ â •â —â žâ ‘â " }, { "input": "postmortems", "output": "â â •â Œâ â •â —â žâ ‘â â Ž" }, { "input": "postnatal", "output": "â â •â Œâ â â žâ â ‡" }, { "input": "postoperative", "output": "â â •⠌⠕â â »â â žâ Šâ §â ‘" }, { "input": "postpaid", "output": "â â •â Œâ â ™" }, { "input": "postpartum", "output": "â â •â Œâ â â ¥â " }, { "input": "postpone", "output": "â â •â Œâ â â •" }, { "input": "postponed", "output": "â â •â Œâ â •â â «" }, { "input": "postponement", "output": "â â •â Œâ â â •â °â ž" }, { "input": "postponements", "output": "â â •â Œâ â â •â °â žâ Ž" }, { "input": "postpones", "output": "â â •â Œâ â â •â Ž" }, { "input": "postponing", "output": "â â •â Œâ â •â â ¬" }, { "input": "posts", "output": "â â •⠌⠎" }, { "input": "postscript", "output": "â â •⠌⠎⠉⠗⠊â â ž" }, { "input": "postscripts", "output": "â â •⠌⠎⠉⠗⠊â â žâ Ž" }, { "input": "postulate", "output": "â â •⠌⠥⠇â â žâ ‘" }, { "input": "postulated", "output": "â â •⠌⠥⠇â â žâ «" }, { "input": "postulates", "output": "â â •⠌⠥⠇â â žâ ‘â Ž" }, { "input": "postulating", "output": "â â •⠌⠥⠇â â žâ ¬" }, { "input": "posture", "output": "â â •⠌⠥⠗⠑" }, { "input": "postured", "output": "â â •⠌⠥⠗⠫" }, { "input": "postures", "output": "â â •⠌⠥⠗⠑⠎" }, { "input": "posturing", "output": "â â •⠌⠥⠗⠬" }, { "input": "postwar", "output": "â â •⠌⠺⠜" }, { "input": "posy", "output": "â â •â Žâ ½" }, { "input": "pot", "output": "â â •â ž" }, { "input": "potable", "output": "â â •â žâ â ƒâ ‡â ‘" }, { "input": "potables", "output": "â â •â žâ â ƒâ ‡â ‘â Ž" }, { "input": "potash", "output": "â â •â žâ â ©" }, { "input": "potassium", "output": "â â •â žâ â Žâ Žâ Šâ ¥â " }, { "input": "potato", "output": "â â •â žâ â žâ •" }, { "input": "potatoes", "output": "â â •â žâ â žâ •â ‘â Ž" }, { "input": "potbellied", "output": "â â •⠞⠃⠑⠇⠇⠊⠫" }, { "input": "potbellies", "output": "â â •⠞⠃⠑⠇⠇⠊⠑⠎" }, { "input": "potbelly", "output": "â â •⠞⠃⠑⠇⠇⠽" }, { "input": "potboiler", "output": "â â •⠞⠃⠕⠊⠇⠻" }, { "input": "potboilers", "output": "â â •⠞⠃⠕⠊⠇⠻⠎" }, { "input": "potency", "output": "â â •⠞⠢⠉⠽" }, { "input": "potent", "output": "â â •⠞⠢⠞" }, { "input": "potentate", "output": "â â •⠞⠢⠞â â žâ ‘" }, { "input": "potentates", "output": "â â •⠞⠢⠞â â žâ ‘â Ž" }, { "input": "potential", "output": "â â •⠞⠢⠞⠊â â ‡" }, { "input": "potentialities", "output": "â â •⠞⠢⠞⠊â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "potentiality", "output": "â â •⠞⠢⠞⠊â â ‡â °â ½" }, { "input": "potentially", "output": "â â •⠞⠢⠞⠊â â ‡â ‡â ½" }, { "input": "potentials", "output": "â â •⠞⠢⠞⠊â â ‡â Ž" }, { "input": "potful", "output": "â â •â žâ °â ‡" }, { "input": "potfuls", "output": "â â •⠞⠰⠇⠎" }, { "input": "potholder", "output": "â â •⠞⠓⠕⠇⠙⠻" }, { "input": "potholders", "output": "â â •⠞⠓⠕⠇⠙⠻⠎" }, { "input": "pothole", "output": "â â •⠞⠓⠕⠇⠑" }, { "input": "potholes", "output": "â â •⠞⠓⠕⠇⠑⠎" }, { "input": "pothook", "output": "â â •â žâ “â •â •â …" }, { "input": "pothooks", "output": "â â •â žâ “â •â •â …â Ž" }, { "input": "potion", "output": "â â •â °â " }, { "input": "potions", "output": "â â •â °â â Ž" }, { "input": "potluck", "output": "â â •⠞⠇⠥⠉⠅" }, { "input": "potlucks", "output": "â â •⠞⠇⠥⠉⠅⠎" }, { "input": "potpie", "output": "â â •â žâ â Šâ ‘" }, { "input": "potpies", "output": "â â •â žâ â Šâ ‘â Ž" }, { "input": "potpourri", "output": "â â •â žâ â ³â —â —â Š" }, { "input": "potpourris", "output": "â â •â žâ â ³â —â —â Šâ Ž" }, { "input": "pots", "output": "â â •â žâ Ž" }, { "input": "potsherd", "output": "â â •⠞⠩⠻⠙" }, { "input": "potsherds", "output": "â â •⠞⠩⠻⠙⠎" }, { "input": "potshot", "output": "â â •â žâ ©â •â ž" }, { "input": "potshots", "output": "â â •â žâ ©â •â žâ Ž" }, { "input": "pottage", "output": "â â •â žâ žâ â ›â ‘" }, { "input": "potted", "output": "â â •â žâ žâ «" }, { "input": "potter", "output": "â â •â žâ žâ »" }, { "input": "pottered", "output": "â â •⠞⠞⠻⠫" }, { "input": "potteries", "output": "â â •⠞⠞⠻⠊⠑⠎" }, { "input": "pottering", "output": "â â •⠞⠞⠻⠬" }, { "input": "potters", "output": "â â •⠞⠞⠻⠎" }, { "input": "pottery", "output": "â â •⠞⠞⠻⠽" }, { "input": "pottier", "output": "â â •â žâ žâ Šâ »" }, { "input": "potties", "output": "â â •â žâ žâ Šâ ‘â Ž" }, { "input": "pottiest", "output": "â â •â žâ žâ Šâ ‘â Œ" }, { "input": "potting", "output": "â â •â žâ žâ ¬" }, { "input": "potty", "output": "â â •â žâ žâ ½" }, { "input": "pouch", "output": "â â ³â ¡" }, { "input": "pouched", "output": "â â ³â ¡â «" }, { "input": "pouches", "output": "â â ³â ¡â ‘â Ž" }, { "input": "pouching", "output": "â â ³â ¡â ¬" }, { "input": "poultice", "output": "â â ³â ‡â žâ Šâ ‰â ‘" }, { "input": "poulticed", "output": "â â ³â ‡â žâ Šâ ‰â «" }, { "input": "poultices", "output": "â â ³â ‡â žâ Šâ ‰â ‘â Ž" }, { "input": "poulticing", "output": "â â ³â ‡â žâ Šâ ‰â ¬" }, { "input": "poultry", "output": "â â ³â ‡â žâ —â ½" }, { "input": "pounce", "output": "â â ³â â ‰â ‘" }, { "input": "pounced", "output": "â â ³â â ‰â «" }, { "input": "pounces", "output": "â â ³â â ‰â ‘â Ž" }, { "input": "pouncing", "output": "â â ³â â ‰â ¬" }, { "input": "pound", "output": "â â ¨â ™" }, { "input": "pounded", "output": "â â ¨â ™â «" }, { "input": "pounding", "output": "â â ¨â ™â ¬" }, { "input": "pounds", "output": "â â ¨â ™â Ž" }, { "input": "pour", "output": "â â ³â —" }, { "input": "poured", "output": "â â ³â —â «" }, { "input": "pouring", "output": "â â ³â —â ¬" }, { "input": "pours", "output": "â â ³â —â Ž" }, { "input": "pout", "output": "â â ³â ž" }, { "input": "pouted", "output": "â â ³â žâ «" }, { "input": "pouting", "output": "â â ³â žâ ¬" }, { "input": "pouts", "output": "â â ³â žâ Ž" }, { "input": "poverty", "output": "â â •⠧⠻⠞⠽" }, { "input": "powder", "output": "â â ªâ ™â »" }, { "input": "powdered", "output": "â â ªâ ™â »â «" }, { "input": "powdering", "output": "â â ªâ ™â »â ¬" }, { "input": "powders", "output": "â â ªâ ™â »â Ž" }, { "input": "powdery", "output": "â â ªâ ™â »â ½" }, { "input": "power", "output": "â â ªâ »" }, { "input": "powerboat", "output": "â â ªâ »â ƒâ •â â ž" }, { "input": "powerboats", "output": "â â ªâ »â ƒâ •â â žâ Ž" }, { "input": "powered", "output": "â â ªâ »â «" }, { "input": "powerful", "output": "â â ªâ »â °â ‡" }, { "input": "powerfully", "output": "â â ªâ »â °â ‡â ‡â ½" }, { "input": "powerhouse", "output": "â â ªâ »â “⠳⠎⠑" }, { "input": "powerhouses", "output": "â â ªâ »â “⠳⠎⠑⠎" }, { "input": "powering", "output": "â â ªâ »â ¬" }, { "input": "powerless", "output": "â â ªâ »â ¨â Ž" }, { "input": "powerlessly", "output": "â â ªâ »â ¨â Žâ ‡â ½" }, { "input": "powerlessness", "output": "â â ªâ »â ¨â Žâ °â Ž" }, { "input": "powers", "output": "â â ªâ »â Ž" }, { "input": "powwow", "output": "â â ªâ ºâ ª" }, { "input": "powwowed", "output": "â â ªâ ºâ ªâ «" }, { "input": "powwowing", "output": "â â ªâ ºâ ªâ ¬" }, { "input": "powwows", "output": "â â ªâ ºâ ªâ Ž" }, { "input": "pox", "output": "â â •â ­" }, { "input": "poxes", "output": "â â •â ­â ‘â Ž" }, { "input": "practicability", "output": "â â —â â ‰â žâ Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "practicable", "output": "â â —â â ‰â žâ Šâ ‰â â ƒâ ‡â ‘" }, { "input": "practicably", "output": "â â —â â ‰â žâ Šâ ‰â â ƒâ ‡â ½" }, { "input": "practical", "output": "â â —â â ‰â žâ Šâ ‰â â ‡" }, { "input": "practicalities", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "practicality", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â °â ½" }, { "input": "practically", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "practicals", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â Ž" }, { "input": "practice", "output": "â â —â â ‰â žâ Šâ ‰â ‘" }, { "input": "practiced", "output": "â â —â â ‰â žâ Šâ ‰â «" }, { "input": "practices", "output": "â â —â â ‰â žâ Šâ ‰â ‘â Ž" }, { "input": "practicing", "output": "â â —â â ‰â žâ Šâ ‰â ¬" }, { "input": "practise", "output": "â â —â â ‰â žâ Šâ Žâ ‘" }, { "input": "practised", "output": "â â —â â ‰â žâ Šâ Žâ «" }, { "input": "practises", "output": "â â —â â ‰â žâ Šâ Žâ ‘â Ž" }, { "input": "practising", "output": "â â —â â ‰â žâ Šâ Žâ ¬" }, { "input": "practitioner", "output": "â â —â â ‰â žâ Šâ °â â »" }, { "input": "practitioners", "output": "â â —â â ‰â žâ Šâ °â â »â Ž" }, { "input": "pragmatic", "output": "â â —â â ›â â â žâ Šâ ‰" }, { "input": "pragmatically", "output": "â â —â â ›â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "pragmatics", "output": "â â —â â ›â â â žâ Šâ ‰â Ž" }, { "input": "pragmatism", "output": "â â —â â ›â â â žâ Šâ Žâ " }, { "input": "pragmatist", "output": "â â —â â ›â â â žâ Šâ Œ" }, { "input": "pragmatists", "output": "â â —â â ›â â â žâ Šâ Œâ Ž" }, { "input": "prairie", "output": "â â —â â Šâ —â Šâ ‘" }, { "input": "prairies", "output": "â â —â â Šâ —â Šâ ‘â Ž" }, { "input": "praise", "output": "â â —â â Šâ Žâ ‘" }, { "input": "praised", "output": "â â —â â Šâ Žâ «" }, { "input": "praises", "output": "â â —â â Šâ Žâ ‘â Ž" }, { "input": "praiseworthiness", "output": "â â —â â Šâ Žâ ‘⠺⠕⠗⠹⠊⠰⠎" }, { "input": "praiseworthy", "output": "â â —â â Šâ Žâ ‘⠺⠕⠗⠹⠽" }, { "input": "praising", "output": "â â —â â Šâ Žâ ¬" }, { "input": "praline", "output": "â â —â â ‡â ”â ‘" }, { "input": "pralines", "output": "â â —â â ‡â ”â ‘â Ž" }, { "input": "pram", "output": "â â —â â " }, { "input": "prance", "output": "â â —⠨⠑" }, { "input": "pranced", "output": "â â —⠨⠑⠙" }, { "input": "prancer", "output": "â â —⠨⠑⠗" }, { "input": "prancers", "output": "â â —⠨⠑⠗⠎" }, { "input": "prances", "output": "â â —⠨⠑⠎" }, { "input": "prancing", "output": "â â —â â â ‰â ¬" }, { "input": "prank", "output": "â â —â â â …" }, { "input": "pranks", "output": "â â —â â â …â Ž" }, { "input": "prankster", "output": "â â —â â â …⠌⠻" }, { "input": "pranksters", "output": "â â —â â â …⠌⠻⠎" }, { "input": "prate", "output": "â â —â â žâ ‘" }, { "input": "prated", "output": "â â —â â žâ «" }, { "input": "prates", "output": "â â —â â žâ ‘â Ž" }, { "input": "pratfall", "output": "â â —â â žâ ‹â â ‡â ‡" }, { "input": "pratfalls", "output": "â â —â â žâ ‹â â ‡â ‡â Ž" }, { "input": "prating", "output": "â â —â â žâ ¬" }, { "input": "prattle", "output": "â â —â â žâ žâ ‡â ‘" }, { "input": "prattled", "output": "â â —â â žâ žâ ‡â «" }, { "input": "prattles", "output": "â â —â â žâ žâ ‡â ‘â Ž" }, { "input": "prattling", "output": "â â —â â žâ žâ ‡â ¬" }, { "input": "prawn", "output": "â â —â â ºâ " }, { "input": "prawned", "output": "â â —â â ºâ â «" }, { "input": "prawning", "output": "â â —â â ºâ â ¬" }, { "input": "prawns", "output": "â â —â â ºâ â Ž" }, { "input": "pray", "output": "â â —â â ½" }, { "input": "prayed", "output": "â â —â â ½â «" }, { "input": "prayer", "output": "â â —â â ½â »" }, { "input": "prayers", "output": "â â —â â ½â »â Ž" }, { "input": "praying", "output": "â â —â â ½â ¬" }, { "input": "prays", "output": "â â —â â ½â Ž" }, { "input": "preach", "output": "â â —â ‚â ¡" }, { "input": "preached", "output": "â â —â ‚â ¡â «" }, { "input": "preacher", "output": "â â —â ‚â ¡â »" }, { "input": "preachers", "output": "â â —⠂⠡⠻⠎" }, { "input": "preaches", "output": "â â —â ‚â ¡â ‘â Ž" }, { "input": "preachier", "output": "â â —â ‚â ¡â Šâ »" }, { "input": "preachiest", "output": "â â —â ‚â ¡â Šâ ‘â Œ" }, { "input": "preaching", "output": "â â —â ‚â ¡â ¬" }, { "input": "preachy", "output": "â â —â ‚â ¡â ½" }, { "input": "preamble", "output": "â â —â ‚â â ƒâ ‡â ‘" }, { "input": "preambled", "output": "â â —â ‚â â ƒâ ‡â «" }, { "input": "preambles", "output": "â â —â ‚â â ƒâ ‡â ‘â Ž" }, { "input": "preambling", "output": "â â —â ‚â â ƒâ ‡â ¬" }, { "input": "prearrange", "output": "â â —⠑⠜⠗â â â ›â ‘" }, { "input": "prearranged", "output": "â â —⠑⠜⠗â â â ›â «" }, { "input": "prearrangement", "output": "â â —⠑⠜⠗â â â ›â ‘â °â ž" }, { "input": "prearranges", "output": "â â —⠑⠜⠗â â â ›â ‘â Ž" }, { "input": "prearranging", "output": "â â —⠑⠜⠗â â â ›â ¬" }, { "input": "precarious", "output": "â â —⠑⠉⠜⠊⠳⠎" }, { "input": "precariously", "output": "â â —⠑⠉⠜⠊⠳⠎⠇⠽" }, { "input": "precaution", "output": "â â —â ‘â ‰â â ¥â °â " }, { "input": "precautionary", "output": "â â —â ‘â ‰â â ¥â °â â œâ ½" }, { "input": "precautions", "output": "â â —â ‘â ‰â â ¥â °â â Ž" }, { "input": "precede", "output": "â â —⠑⠉⠫⠑" }, { "input": "preceded", "output": "â â —⠑⠉⠫⠫" }, { "input": "precedence", "output": "â â —⠑⠉⠫⠰⠑" }, { "input": "precedent", "output": "â â —⠑⠉⠫⠢⠞" }, { "input": "precedents", "output": "â â —⠑⠉⠫⠢⠞⠎" }, { "input": "precedes", "output": "â â —⠑⠉⠫⠑⠎" }, { "input": "preceding", "output": "â â —⠑⠉⠫⠬" }, { "input": "precept", "output": "â â —⠑⠉⠑â â ž" }, { "input": "preceptor", "output": "â â —⠑⠉⠑â â žâ •â —" }, { "input": "preceptors", "output": "â â —⠑⠉⠑â â žâ •â —â Ž" }, { "input": "precepts", "output": "â â —⠑⠉⠑â â žâ Ž" }, { "input": "precinct", "output": "â â —⠑⠉⠔⠉⠞" }, { "input": "precincts", "output": "â â —⠑⠉⠔⠉⠞⠎" }, { "input": "preciosity", "output": "â â —⠑⠉⠊⠕⠎⠰⠽" }, { "input": "precious", "output": "â â —⠑⠉⠊⠳⠎" }, { "input": "preciously", "output": "â â —⠑⠉⠊⠳⠎⠇⠽" }, { "input": "preciousness", "output": "â â —⠑⠉⠊⠳⠎⠰⠎" }, { "input": "precipice", "output": "â â —⠑⠉⠊â â Šâ ‰â ‘" }, { "input": "precipices", "output": "â â —⠑⠉⠊â â Šâ ‰â ‘â Ž" }, { "input": "precipitant", "output": "â â —⠑⠉⠊â â Šâ žâ â â ž" }, { "input": "precipitants", "output": "â â —⠑⠉⠊â â Šâ žâ â â žâ Ž" }, { "input": "precipitate", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘" }, { "input": "precipitated", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ «" }, { "input": "precipitately", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘⠇⠽" }, { "input": "precipitates", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘â Ž" }, { "input": "precipitating", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ¬" }, { "input": "precipitation", "output": "â â —⠑⠉⠊â â Šâ žâ â °â " }, { "input": "precipitations", "output": "â â —⠑⠉⠊â â Šâ žâ â °â â Ž" }, { "input": "precipitous", "output": "â â —⠑⠉⠊â â Šâ žâ ³â Ž" }, { "input": "precipitously", "output": "â â —⠑⠉⠊â â Šâ žâ ³â Žâ ‡â ½" }, { "input": "precise", "output": "â â —⠑⠉⠊⠎⠑" }, { "input": "precisely", "output": "â â —⠑⠉⠊⠎⠑⠇⠽" }, { "input": "preciseness", "output": "â â —⠑⠉⠊⠎⠑⠰⠎" }, { "input": "preciser", "output": "â â —⠑⠉⠊⠎⠻" }, { "input": "precises", "output": "â â —⠑⠉⠊⠎⠑⠎" }, { "input": "precisest", "output": "â â —⠑⠉⠊⠎⠑⠌" }, { "input": "precision", "output": "â â —⠑⠉⠊⠨â " }, { "input": "preclude", "output": "â â —⠑⠉⠇⠥⠙⠑" }, { "input": "precluded", "output": "â â —⠑⠉⠇⠥⠙⠫" }, { "input": "precludes", "output": "â â —⠑⠉⠇⠥⠙⠑⠎" }, { "input": "precluding", "output": "â â —⠑⠉⠇⠥⠙⠬" }, { "input": "preclusion", "output": "â â —⠑⠉⠇⠥⠨â " }, { "input": "precocious", "output": "â â —⠑⠉⠕⠉⠊⠳⠎" }, { "input": "precociously", "output": "â â —⠑⠉⠕⠉⠊⠳⠎⠇⠽" }, { "input": "precociousness", "output": "â â —⠑⠉⠕⠉⠊⠳⠎⠰⠎" }, { "input": "precocity", "output": "â â —⠑⠉⠕⠉⠰⠽" }, { "input": "precognition", "output": "â â —⠑⠉⠕⠛â â Šâ °â " }, { "input": "preconceive", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â ‘" }, { "input": "preconceived", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â «" }, { "input": "preconceives", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â ‘â Ž" }, { "input": "preconceiving", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â ¬" }, { "input": "preconception", "output": "â â —⠑⠉⠕â â ‰â ‘â â °â " }, { "input": "preconceptions", "output": "â â —⠑⠉⠕â â ‰â ‘â â °â â Ž" }, { "input": "precondition", "output": "â â —⠑⠉⠕â â ™â Šâ °â " }, { "input": "preconditioned", "output": "â â —⠑⠉⠕â â ™â Šâ °â â «" }, { "input": "preconditioning", "output": "â â —⠑⠉⠕â â ™â Šâ °â â ¬" }, { "input": "preconditions", "output": "â â —⠑⠉⠕â â ™â Šâ °â â Ž" }, { "input": "precursor", "output": "â â —⠑⠉⠥⠗⠎⠕⠗" }, { "input": "precursors", "output": "â â —⠑⠉⠥⠗⠎⠕⠗⠎" }, { "input": "predate", "output": "â â —â «â â žâ ‘" }, { "input": "predated", "output": "â â —â «â â žâ «" }, { "input": "predates", "output": "â â —â «â â žâ ‘â Ž" }, { "input": "predating", "output": "â â —â «â â žâ ¬" }, { "input": "predator", "output": "â â —â «â â žâ •â —" }, { "input": "predators", "output": "â â —â «â â žâ •â —â Ž" }, { "input": "predatory", "output": "â â —â «â â žâ •â —â ½" }, { "input": "predecease", "output": "â â —⠫⠑⠉⠂⠎⠑" }, { "input": "predeceased", "output": "â â —⠫⠑⠉⠂⠎⠫" }, { "input": "predeceases", "output": "â â —⠫⠑⠉⠂⠎⠑⠎" }, { "input": "predeceasing", "output": "â â —⠫⠑⠉⠂⠎⠬" }, { "input": "predecessor", "output": "â â —⠫⠑⠉⠑⠎⠎⠕⠗" }, { "input": "predecessors", "output": "â â —⠫⠑⠉⠑⠎⠎⠕⠗⠎" }, { "input": "predefined", "output": "â â —⠫⠑⠋⠔⠫" }, { "input": "predestination", "output": "â â —⠫⠑⠌⠔â â °â " }, { "input": "predestine", "output": "â â —⠫⠑⠌⠔⠑" }, { "input": "predestined", "output": "â â —⠫⠑⠌⠔⠫" }, { "input": "predestines", "output": "â â —⠫⠑⠌⠔⠑⠎" }, { "input": "predestining", "output": "â â —⠫⠑⠌⠔⠬" }, { "input": "predetermination", "output": "â â —â «â ‘â žâ »â â ”â â °â " }, { "input": "predetermine", "output": "â â —â «â ‘â žâ »â â ”â ‘" }, { "input": "predetermined", "output": "â â —â «â ‘â žâ »â â ”â «" }, { "input": "predetermines", "output": "â â —â «â ‘â žâ »â â ”â ‘â Ž" }, { "input": "predetermining", "output": "â â —â «â ‘â žâ »â â ”â ¬" }, { "input": "predicament", "output": "â â —â «â Šâ ‰â â °â ž" }, { "input": "predicaments", "output": "â â —â «â Šâ ‰â â °â žâ Ž" }, { "input": "predicate", "output": "â â —â «â Šâ ‰â â žâ ‘" }, { "input": "predicated", "output": "â â —â «â Šâ ‰â â žâ «" }, { "input": "predicates", "output": "â â —â «â Šâ ‰â â žâ ‘â Ž" }, { "input": "predicating", "output": "â â —â «â Šâ ‰â â žâ ¬" }, { "input": "predication", "output": "â â —â «â Šâ ‰â â °â " }, { "input": "predicative", "output": "â â —â «â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "predict", "output": "â â —⠫⠊⠉⠞" }, { "input": "predictability", "output": "â â —⠫⠊⠉⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "predictable", "output": "â â —⠫⠊⠉⠞â â ƒâ ‡â ‘" }, { "input": "predictably", "output": "â â —⠫⠊⠉⠞â â ƒâ ‡â ½" }, { "input": "predicted", "output": "â â —⠫⠊⠉⠞⠫" }, { "input": "predicting", "output": "â â —⠫⠊⠉⠞⠬" }, { "input": "prediction", "output": "â â —⠫⠊⠉⠰â " }, { "input": "predictions", "output": "â â —⠫⠊⠉⠰â â Ž" }, { "input": "predictive", "output": "â â —⠫⠊⠉⠞⠊⠧⠑" }, { "input": "predictor", "output": "â â —⠫⠊⠉⠞⠕⠗" }, { "input": "predicts", "output": "â â —⠫⠊⠉⠞⠎" }, { "input": "predilection", "output": "â â —⠫⠊⠇⠑⠉⠰â " }, { "input": "predilections", "output": "â â —⠫⠊⠇⠑⠉⠰â â Ž" }, { "input": "predispose", "output": "â â —â «â Šâ Žâ â •â Žâ ‘" }, { "input": "predisposed", "output": "â â —â «â Šâ Žâ â •â Žâ «" }, { "input": "predisposes", "output": "â â —â «â Šâ Žâ â •â Žâ ‘â Ž" }, { "input": "predisposing", "output": "â â —â «â Šâ Žâ â •â Žâ ¬" }, { "input": "predisposition", "output": "â â —â «â Šâ Žâ â •â Žâ Šâ °â " }, { "input": "predispositions", "output": "â â —â «â Šâ Žâ â •â Žâ Šâ °â â Ž" }, { "input": "predominance", "output": "â â —â «â •â â ”⠨⠑" }, { "input": "predominant", "output": "â â —â «â •â â ”â â â ž" }, { "input": "predominantly", "output": "â â —â «â •â â ”â â â žâ ‡â ½" }, { "input": "predominate", "output": "â â —â «â •â â ”â â žâ ‘" }, { "input": "predominated", "output": "â â —â «â •â â ”â â žâ «" }, { "input": "predominates", "output": "â â —â «â •â â ”â â žâ ‘â Ž" }, { "input": "predominating", "output": "â â —â «â •â â ”â â žâ ¬" }, { "input": "preeminence", "output": "â â —â ‘â ‘â â ”â °â ‘" }, { "input": "preeminent", "output": "â â —â ‘â ‘â â ”⠢⠞" }, { "input": "preeminently", "output": "â â —â ‘â ‘â â ”⠢⠞⠇⠽" }, { "input": "preempt", "output": "â â —â ‘â ‘â â â ž" }, { "input": "preempted", "output": "â â —â ‘â ‘â â â žâ «" }, { "input": "preempting", "output": "â â —â ‘â ‘â â â žâ ¬" }, { "input": "preemption", "output": "â â —â ‘â ‘â â â °â " }, { "input": "preemptive", "output": "â â —â ‘â ‘â â â žâ Šâ §â ‘" }, { "input": "preemptively", "output": "â â —â ‘â ‘â â â žâ Šâ §â ‘⠇⠽" }, { "input": "preempts", "output": "â â —â ‘â ‘â â â žâ Ž" }, { "input": "preen", "output": "â â —â ‘â ¢" }, { "input": "preened", "output": "â â —⠑⠢⠫" }, { "input": "preening", "output": "â â —⠑⠢⠬" }, { "input": "preens", "output": "â â —⠑⠢⠎" }, { "input": "preexist", "output": "â â —â ‘â ‘â ­â Šâ Œ" }, { "input": "preexisted", "output": "â â —⠑⠑⠭⠊⠌⠫" }, { "input": "preexisting", "output": "â â —⠑⠑⠭⠊⠌⠬" }, { "input": "preexists", "output": "â â —⠑⠑⠭⠊⠌⠎" }, { "input": "prefab", "output": "â â —â ‘â ‹â â ƒ" }, { "input": "prefabbed", "output": "â â —â ‘â ‹â â †â «" }, { "input": "prefabbing", "output": "â â —â ‘â ‹â â †â ¬" }, { "input": "prefabricate", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ ‘" }, { "input": "prefabricated", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ «" }, { "input": "prefabricates", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "prefabricating", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ ¬" }, { "input": "prefabrication", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â °â " }, { "input": "prefabs", "output": "â â —â ‘â ‹â â ƒâ Ž" }, { "input": "preface", "output": "â â —â ‘â ‹â â ‰â ‘" }, { "input": "prefaced", "output": "â â —â ‘â ‹â â ‰â «" }, { "input": "prefaces", "output": "â â —â ‘â ‹â â ‰â ‘â Ž" }, { "input": "prefacing", "output": "â â —â ‘â ‹â â ‰â ¬" }, { "input": "prefatory", "output": "â â —â ‘â ‹â â žâ •â —â ½" }, { "input": "prefect", "output": "â â —⠑⠋⠑⠉⠞" }, { "input": "prefects", "output": "â â —⠑⠋⠑⠉⠞⠎" }, { "input": "prefecture", "output": "â â —⠑⠋⠑⠉⠞⠥⠗⠑" }, { "input": "prefectures", "output": "â â —⠑⠋⠑⠉⠞⠥⠗⠑⠎" }, { "input": "prefer", "output": "â â —â ‘â ‹â »" }, { "input": "preferable", "output": "â â —â ‘â ‹â »â â ƒâ ‡â ‘" }, { "input": "preferably", "output": "â â —â ‘â ‹â »â â ƒâ ‡â ½" }, { "input": "preference", "output": "â â —⠑⠋⠻⠰⠑" }, { "input": "preferences", "output": "â â —⠑⠋⠻⠰⠑⠎" }, { "input": "preferential", "output": "â â —⠑⠋⠻⠢⠞⠊â â ‡" }, { "input": "preferentially", "output": "â â —⠑⠋⠻⠢⠞⠊â â ‡â ‡â ½" }, { "input": "preferment", "output": "â â —⠑⠋⠻⠰⠞" }, { "input": "preferred", "output": "â â —⠑⠋⠻⠗⠫" }, { "input": "preferring", "output": "â â —⠑⠋⠻⠗⠬" }, { "input": "prefers", "output": "â â —⠑⠋⠻⠎" }, { "input": "prefigure", "output": "â â —⠑⠋⠊⠛⠥⠗⠑" }, { "input": "prefigured", "output": "â â —⠑⠋⠊⠛⠥⠗⠫" }, { "input": "prefigures", "output": "â â —⠑⠋⠊⠛⠥⠗⠑⠎" }, { "input": "prefiguring", "output": "â â —⠑⠋⠊⠛⠥⠗⠬" }, { "input": "prefix", "output": "â â —â ‘â ‹â Šâ ­" }, { "input": "prefixed", "output": "â â —â ‘â ‹â Šâ ­â «" }, { "input": "prefixes", "output": "â â —â ‘â ‹â Šâ ­â ‘â Ž" }, { "input": "prefixing", "output": "â â —â ‘â ‹â Šâ ­â ¬" }, { "input": "pregnancies", "output": "â â —â ‘â ›â â â â ‰â Šâ ‘â Ž" }, { "input": "pregnancy", "output": "â â —â ‘â ›â â â â ‰â ½" }, { "input": "pregnant", "output": "â â —â ‘â ›â â â â ž" }, { "input": "preheat", "output": "â â —â ‘â “â ‚â ž" }, { "input": "preheated", "output": "â â —â ‘â “â ‚â žâ «" }, { "input": "preheating", "output": "â â —â ‘â “â ‚â žâ ¬" }, { "input": "preheats", "output": "â â —â ‘â “â ‚â žâ Ž" }, { "input": "prehensile", "output": "â â —⠑⠓⠢⠎⠊⠇⠑" }, { "input": "prehistoric", "output": "â â —⠑⠓⠊⠌⠕⠗⠊⠉" }, { "input": "prehistory", "output": "â â —⠑⠓⠊⠌⠕⠗⠽" }, { "input": "prejudge", "output": "â â —⠑⠚⠥⠙⠛⠑" }, { "input": "prejudged", "output": "â â —⠑⠚⠥⠙⠛⠫" }, { "input": "prejudges", "output": "â â —⠑⠚⠥⠙⠛⠑⠎" }, { "input": "prejudging", "output": "â â —⠑⠚⠥⠙⠛⠬" }, { "input": "prejudgment", "output": "â â —⠑⠚⠥⠙⠛⠰⠞" }, { "input": "prejudgments", "output": "â â —⠑⠚⠥⠙⠛⠰⠞⠎" }, { "input": "prejudice", "output": "â â —⠑⠚⠥⠙⠊⠉⠑" }, { "input": "prejudiced", "output": "â â —⠑⠚⠥⠙⠊⠉⠫" }, { "input": "prejudices", "output": "â â —⠑⠚⠥⠙⠊⠉⠑⠎" }, { "input": "prejudicial", "output": "â â —⠑⠚⠥⠙⠊⠉⠊â â ‡" }, { "input": "prejudicing", "output": "â â —⠑⠚⠥⠙⠊⠉⠬" }, { "input": "prelate", "output": "â â —â ‘â ‡â â žâ ‘" }, { "input": "prelates", "output": "â â —â ‘â ‡â â žâ ‘â Ž" }, { "input": "preliminaries", "output": "â â —⠑⠇⠊â â ”⠜⠊⠑⠎" }, { "input": "preliminary", "output": "â â —⠑⠇⠊â â ”⠜⠽" }, { "input": "prelude", "output": "â â —⠑⠇⠥⠙⠑" }, { "input": "preludes", "output": "â â —⠑⠇⠥⠙⠑⠎" }, { "input": "premarital", "output": "â â —â ‘â â œâ Šâ žâ â ‡" }, { "input": "premature", "output": "â â —â ‘â â â žâ ¥â —â ‘" }, { "input": "prematurely", "output": "â â —â ‘â â â žâ ¥â —⠑⠇⠽" }, { "input": "premeditate", "output": "â â —â ‘â â «â Šâ žâ â žâ ‘" }, { "input": "premeditated", "output": "â â —â ‘â â «â Šâ žâ â žâ «" }, { "input": "premeditates", "output": "â â —â ‘â â «â Šâ žâ â žâ ‘â Ž" }, { "input": "premeditating", "output": "â â —â ‘â â «â Šâ žâ â žâ ¬" }, { "input": "premeditation", "output": "â â —â ‘â â «â Šâ žâ â °â " }, { "input": "premenstrual", "output": "â â —â ‘â â ¢â Œâ —â ¥â â ‡" }, { "input": "premier", "output": "â â —â ‘â â Šâ »" }, { "input": "premiere", "output": "â â —â ‘â â Šâ »â ‘" }, { "input": "premiered", "output": "â â —â ‘â â Šâ »â «" }, { "input": "premieres", "output": "â â —â ‘â â Šâ »â ‘â Ž" }, { "input": "premiering", "output": "â â —â ‘â â Šâ »â ¬" }, { "input": "premiers", "output": "â â —â ‘â â Šâ »â Ž" }, { "input": "premise", "output": "â â —â ‘â â Šâ Žâ ‘" }, { "input": "premised", "output": "â â —â ‘â â Šâ Žâ «" }, { "input": "premises", "output": "â â —â ‘â â Šâ Žâ ‘â Ž" }, { "input": "premising", "output": "â â —â ‘â â Šâ Žâ ¬" }, { "input": "premiss", "output": "â â —â ‘â â Šâ Žâ Ž" }, { "input": "premisses", "output": "â â —â ‘â â Šâ Žâ Žâ ‘â Ž" }, { "input": "premium", "output": "â â —â ‘â â Šâ ¥â " }, { "input": "premiums", "output": "â â —â ‘â â Šâ ¥â â Ž" }, { "input": "premonition", "output": "â â —â ‘â â •â â Šâ °â " }, { "input": "premonitions", "output": "â â —â ‘â â •â â Šâ °â â Ž" }, { "input": "premonitory", "output": "â â —â ‘â â •â â Šâ žâ •â —â ½" }, { "input": "prenatal", "output": "â â —â ¢â â žâ â ‡" }, { "input": "preoccupation", "output": "â â —â ‘â •â ’â ¥â â â °â " }, { "input": "preoccupations", "output": "â â —â ‘â •â ’â ¥â â â °â â Ž" }, { "input": "preoccupied", "output": "â â —â ‘â •â ’â ¥â â Šâ «" }, { "input": "preoccupies", "output": "â â —â ‘â •â ’â ¥â â Šâ ‘â Ž" }, { "input": "preoccupy", "output": "â â —â ‘â •â ’â ¥â â ½" }, { "input": "preoccupying", "output": "â â —â ‘â •â ’â ¥â â ½â ¬" }, { "input": "preordain", "output": "â â —â ‘â •â —â ™â â ”" }, { "input": "preordained", "output": "â â —â ‘â •â —â ™â â ”â «" }, { "input": "preordaining", "output": "â â —â ‘â •â —â ™â â ”â ¬" }, { "input": "preordains", "output": "â â —â ‘â •â —â ™â â ”â Ž" }, { "input": "prep", "output": "â â —â ‘â " }, { "input": "prepackage", "output": "â â —â ‘â â â ‰â …â â ›â ‘" }, { "input": "prepackaged", "output": "â â —â ‘â â â ‰â …â â ›â «" }, { "input": "prepackages", "output": "â â —â ‘â â â ‰â …â â ›â ‘â Ž" }, { "input": "prepackaging", "output": "â â —â ‘â â â ‰â …â â ›â ¬" }, { "input": "prepaid", "output": "â â —â ‘â â ™" }, { "input": "preparation", "output": "â â —â ‘â â œâ â °â " }, { "input": "preparations", "output": "â â —â ‘â â œâ â °â â Ž" }, { "input": "preparatory", "output": "â â —â ‘â â œâ â žâ •â —â ½" }, { "input": "prepare", "output": "â â —â ‘â â œâ ‘" }, { "input": "prepared", "output": "â â —â ‘â â œâ «" }, { "input": "preparedness", "output": "â â —â ‘â â œâ «â °â Ž" }, { "input": "prepares", "output": "â â —â ‘â â œâ ‘â Ž" }, { "input": "preparing", "output": "â â —â ‘â â œâ ¬" }, { "input": "prepay", "output": "â â —â ‘â â â ½" }, { "input": "prepaying", "output": "â â —â ‘â â â ½â ¬" }, { "input": "prepayment", "output": "â â —â ‘â â â ½â °â ž" }, { "input": "prepayments", "output": "â â —â ‘â â â ½â °â žâ Ž" }, { "input": "prepays", "output": "â â —â ‘â â â ½â Ž" }, { "input": "preponderance", "output": "â â —â ‘â â •â â ™â »â ¨â ‘" }, { "input": "preponderances", "output": "â â —â ‘â â •â â ™â »â ¨â ‘â Ž" }, { "input": "preponderant", "output": "â â —â ‘â â •â â ™â »â â â ž" }, { "input": "preponderate", "output": "â â —â ‘â â •â â ™â »â â žâ ‘" }, { "input": "preponderated", "output": "â â —â ‘â â •â â ™â »â â žâ «" }, { "input": "preponderates", "output": "â â —â ‘â â •â â ™â »â â žâ ‘â Ž" }, { "input": "preponderating", "output": "â â —â ‘â â •â â ™â »â â žâ ¬" }, { "input": "preposition", "output": "â â —â ‘â â •â Žâ Šâ °â " }, { "input": "prepositional", "output": "â â —â ‘â â •â Žâ Šâ °â â â ‡" }, { "input": "prepositions", "output": "â â —â ‘â â •â Žâ Šâ °â â Ž" }, { "input": "prepossess", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "prepossessed", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "prepossesses", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "prepossessing", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ ¬" }, { "input": "preposterous", "output": "â â —â ‘â â •⠌⠻⠳⠎" }, { "input": "preposterously", "output": "â â —â ‘â â •⠌⠻⠳⠎⠇⠽" }, { "input": "prepped", "output": "â â —â ‘â â â «" }, { "input": "preppie", "output": "â â —â ‘â â â Šâ ‘" }, { "input": "preppier", "output": "â â —â ‘â â â Šâ »" }, { "input": "preppies", "output": "â â —â ‘â â â Šâ ‘â Ž" }, { "input": "preppiest", "output": "â â —â ‘â â â Šâ ‘â Œ" }, { "input": "prepping", "output": "â â —â ‘â â â ¬" }, { "input": "preppy", "output": "â â —â ‘â â â ½" }, { "input": "preps", "output": "â â —â ‘â â Ž" }, { "input": "prequel", "output": "â â —⠑⠟⠥⠑⠇" }, { "input": "prequels", "output": "â â —⠑⠟⠥⠑⠇⠎" }, { "input": "prerecord", "output": "â â —⠻⠑⠉⠕⠗⠙" }, { "input": "prerecorded", "output": "â â —⠻⠑⠉⠕⠗⠙⠫" }, { "input": "prerecording", "output": "â â —⠻⠑⠉⠕⠗⠙⠬" }, { "input": "prerecords", "output": "â â —⠻⠑⠉⠕⠗⠙⠎" }, { "input": "preregister", "output": "â â —⠻⠑⠛⠊⠌⠻" }, { "input": "preregistered", "output": "â â —⠻⠑⠛⠊⠌⠻⠫" }, { "input": "preregistering", "output": "â â —⠻⠑⠛⠊⠌⠻⠬" }, { "input": "preregisters", "output": "â â —⠻⠑⠛⠊⠌⠻⠎" }, { "input": "preregistration", "output": "â â —⠻⠑⠛⠊⠌⠗â â °â " }, { "input": "prerequisite", "output": "â â —⠻⠑⠟⠥⠊⠎⠊⠞⠑" }, { "input": "prerequisites", "output": "â â —⠻⠑⠟⠥⠊⠎⠊⠞⠑⠎" }, { "input": "prerogative", "output": "â â —⠻⠕⠛â â žâ Šâ §â ‘" }, { "input": "prerogatives", "output": "â â —⠻⠕⠛â â žâ Šâ §â ‘â Ž" }, { "input": "presage", "output": "â â —â ‘â Žâ â ›â ‘" }, { "input": "presaged", "output": "â â —â ‘â Žâ â ›â «" }, { "input": "presages", "output": "â â —â ‘â Žâ â ›â ‘â Ž" }, { "input": "presaging", "output": "â â —â ‘â Žâ â ›â ¬" }, { "input": "preschool", "output": "â â —â ‘â Žâ ¡â •â •â ‡" }, { "input": "preschooler", "output": "â â —⠑⠎⠡⠕⠕⠇⠻" }, { "input": "preschoolers", "output": "â â —⠑⠎⠡⠕⠕⠇⠻⠎" }, { "input": "preschools", "output": "â â —⠑⠎⠡⠕⠕⠇⠎" }, { "input": "prescience", "output": "â â —⠑⠎⠉⠊⠰⠑" }, { "input": "prescient", "output": "â â —⠑⠎⠉⠊⠢⠞" }, { "input": "prescribe", "output": "â â —⠑⠎⠉⠗⠊⠃⠑" }, { "input": "prescribed", "output": "â â —⠑⠎⠉⠗⠊⠃⠫" }, { "input": "prescribes", "output": "â â —⠑⠎⠉⠗⠊⠃⠑⠎" }, { "input": "prescribing", "output": "â â —⠑⠎⠉⠗⠊⠃⠬" }, { "input": "prescription", "output": "â â —⠑⠎⠉⠗⠊â â °â " }, { "input": "prescriptions", "output": "â â —⠑⠎⠉⠗⠊â â °â â Ž" }, { "input": "prescriptive", "output": "â â —⠑⠎⠉⠗⠊â â žâ Šâ §â ‘" }, { "input": "presence", "output": "â â —â ‘â Žâ °â ‘" }, { "input": "presences", "output": "â â —â ‘â Žâ °â ‘â Ž" }, { "input": "present", "output": "â â —⠑⠎⠢⠞" }, { "input": "presentable", "output": "â â —⠑⠎⠢⠞â â ƒâ ‡â ‘" }, { "input": "presentation", "output": "â â —⠑⠎⠢⠞â â °â " }, { "input": "presentations", "output": "â â —⠑⠎⠢⠞â â °â â Ž" }, { "input": "presented", "output": "â â —⠑⠎⠢⠞⠫" }, { "input": "presenter", "output": "â â —⠑⠎⠢⠞⠻" }, { "input": "presentiment", "output": "â â —⠑⠎⠢⠞⠊⠰⠞" }, { "input": "presentiments", "output": "â â —⠑⠎⠢⠞⠊⠰⠞⠎" }, { "input": "presenting", "output": "â â —⠑⠎⠢⠞⠬" }, { "input": "presently", "output": "â â —⠑⠎⠢⠞⠇⠽" }, { "input": "presents", "output": "â â —⠑⠎⠢⠞⠎" }, { "input": "preservation", "output": "â â —⠑⠎⠻⠧â â °â " }, { "input": "preservative", "output": "â â —⠑⠎⠻⠧â â žâ Šâ §â ‘" }, { "input": "preservatives", "output": "â â —⠑⠎⠻⠧â â žâ Šâ §â ‘â Ž" }, { "input": "preserve", "output": "â â —⠑⠎⠻⠧⠑" }, { "input": "preserved", "output": "â â —⠑⠎⠻⠧⠫" }, { "input": "preserver", "output": "â â —⠑⠎⠻⠧⠻" }, { "input": "preservers", "output": "â â —⠑⠎⠻⠧⠻⠎" }, { "input": "preserves", "output": "â â —⠑⠎⠻⠧⠑⠎" }, { "input": "preserving", "output": "â â —⠑⠎⠻⠧⠬" }, { "input": "preset", "output": "â â —â ‘â Žâ ‘â ž" }, { "input": "presets", "output": "â â —â ‘â Žâ ‘â žâ Ž" }, { "input": "presetting", "output": "â â —â ‘â Žâ ‘â žâ žâ ¬" }, { "input": "preshrank", "output": "â â —â ‘â ©â —â â â …" }, { "input": "preshrink", "output": "â â —⠑⠩⠗⠔⠅" }, { "input": "preshrinking", "output": "â â —⠑⠩⠗⠔⠅⠬" }, { "input": "preshrinks", "output": "â â —⠑⠩⠗⠔⠅⠎" }, { "input": "preshrunk", "output": "â â —â ‘â ©â —â ¥â â …" }, { "input": "preshrunken", "output": "â â —â ‘â ©â —â ¥â â …â ¢" }, { "input": "preside", "output": "â â —⠑⠎⠊⠙⠑" }, { "input": "presided", "output": "â â —⠑⠎⠊⠙⠫" }, { "input": "presidencies", "output": "â â —⠑⠎⠊⠙⠢⠉⠊⠑⠎" }, { "input": "presidency", "output": "â â —⠑⠎⠊⠙⠢⠉⠽" }, { "input": "president", "output": "â â —⠑⠎⠊⠙⠢⠞" }, { "input": "presidential", "output": "â â —⠑⠎⠊⠙⠢⠞⠊â â ‡" }, { "input": "presidents", "output": "â â —⠑⠎⠊⠙⠢⠞⠎" }, { "input": "presides", "output": "â â —⠑⠎⠊⠙⠑⠎" }, { "input": "presiding", "output": "â â —⠑⠎⠊⠙⠬" }, { "input": "press", "output": "â â —â ‘â Žâ Ž" }, { "input": "pressed", "output": "â â —â ‘â Žâ Žâ «" }, { "input": "presses", "output": "â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "pressing", "output": "â â —â ‘â Žâ Žâ ¬" }, { "input": "pressings", "output": "â â —⠑⠎⠎⠬⠎" }, { "input": "pressman", "output": "â â —â ‘â Žâ Žâ â â " }, { "input": "pressmen", "output": "â â —â ‘â Žâ Žâ â ¢" }, { "input": "pressure", "output": "â â —⠑⠎⠎⠥⠗⠑" }, { "input": "pressured", "output": "â â —⠑⠎⠎⠥⠗⠫" }, { "input": "pressures", "output": "â â —⠑⠎⠎⠥⠗⠑⠎" }, { "input": "pressuring", "output": "â â —⠑⠎⠎⠥⠗⠬" }, { "input": "pressurization", "output": "â â —⠑⠎⠎⠥⠗⠊⠵â â °â " }, { "input": "pressurize", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠑" }, { "input": "pressurized", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠫" }, { "input": "pressurizes", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠑⠎" }, { "input": "pressurizing", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠬" }, { "input": "prestige", "output": "â â —⠑⠌⠊⠛⠑" }, { "input": "prestigious", "output": "â â —⠑⠌⠊⠛⠊⠳⠎" }, { "input": "presto", "output": "â â —⠑⠌⠕" }, { "input": "prestos", "output": "â â —⠑⠌⠕⠎" }, { "input": "presumable", "output": "â â —â ‘â Žâ ¥â â â ƒâ ‡â ‘" }, { "input": "presumably", "output": "â â —â ‘â Žâ ¥â â â ƒâ ‡â ½" }, { "input": "presume", "output": "â â —â ‘â Žâ ¥â â ‘" }, { "input": "presumed", "output": "â â —â ‘â Žâ ¥â â «" }, { "input": "presumes", "output": "â â —â ‘â Žâ ¥â â ‘â Ž" }, { "input": "presuming", "output": "â â —â ‘â Žâ ¥â â ¬" }, { "input": "presumption", "output": "â â —â ‘â Žâ ¥â â â °â " }, { "input": "presumptions", "output": "â â —â ‘â Žâ ¥â â â °â â Ž" }, { "input": "presumptive", "output": "â â —â ‘â Žâ ¥â â â žâ Šâ §â ‘" }, { "input": "presumptuous", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Ž" }, { "input": "presumptuously", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "presumptuousness", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Žâ °â Ž" }, { "input": "presuppose", "output": "â â —â ‘â Žâ ¥â â â •â Žâ ‘" }, { "input": "presupposed", "output": "â â —â ‘â Žâ ¥â â â •â Žâ «" }, { "input": "presupposes", "output": "â â —â ‘â Žâ ¥â â â •â Žâ ‘â Ž" }, { "input": "presupposing", "output": "â â —â ‘â Žâ ¥â â â •â Žâ ¬" }, { "input": "presupposition", "output": "â â —â ‘â Žâ ¥â â â •â Žâ Šâ °â " }, { "input": "presuppositions", "output": "â â —â ‘â Žâ ¥â â â •â Žâ Šâ °â â Ž" }, { "input": "preteen", "output": "â â —â ‘â žâ ‘â ¢" }, { "input": "preteens", "output": "â â —⠑⠞⠑⠢⠎" }, { "input": "pretence", "output": "â â —â ‘â žâ °â ‘" }, { "input": "pretences", "output": "â â —â ‘â žâ °â ‘â Ž" }, { "input": "pretend", "output": "â â —⠑⠞⠢⠙" }, { "input": "pretended", "output": "â â —⠑⠞⠢⠙⠫" }, { "input": "pretender", "output": "â â —⠑⠞⠢⠙⠻" }, { "input": "pretenders", "output": "â â —⠑⠞⠢⠙⠻⠎" }, { "input": "pretending", "output": "â â —⠑⠞⠢⠙⠬" }, { "input": "pretends", "output": "â â —⠑⠞⠢⠙⠎" }, { "input": "pretense", "output": "â â —⠑⠞⠢⠎⠑" }, { "input": "pretenses", "output": "â â —⠑⠞⠢⠎⠑⠎" }, { "input": "pretension", "output": "â â —⠑⠞⠢⠨â " }, { "input": "pretensions", "output": "â â —⠑⠞⠢⠨â â Ž" }, { "input": "pretentious", "output": "â â —⠑⠞⠢⠞⠊⠳⠎" }, { "input": "pretentiously", "output": "â â —⠑⠞⠢⠞⠊⠳⠎⠇⠽" }, { "input": "pretentiousness", "output": "â â —⠑⠞⠢⠞⠊⠳⠎⠰⠎" }, { "input": "preterit", "output": "â â —⠑⠞⠻⠊⠞" }, { "input": "preterite", "output": "â â —⠑⠞⠻⠊⠞⠑" }, { "input": "preterites", "output": "â â —⠑⠞⠻⠊⠞⠑⠎" }, { "input": "preterits", "output": "â â —⠑⠞⠻⠊⠞⠎" }, { "input": "preternatural", "output": "â â —â ‘â žâ »â â â žâ ¥â —â â ‡" }, { "input": "pretext", "output": "â â —â ‘â žâ ‘â ­â ž" }, { "input": "pretexts", "output": "â â —â ‘â žâ ‘â ­â žâ Ž" }, { "input": "prettied", "output": "â â —â ‘â žâ žâ Šâ «" }, { "input": "prettier", "output": "â â —â ‘â žâ žâ Šâ »" }, { "input": "pretties", "output": "â â —â ‘â žâ žâ Šâ ‘â Ž" }, { "input": "prettiest", "output": "â â —â ‘â žâ žâ Šâ ‘â Œ" }, { "input": "prettified", "output": "â â —â ‘â žâ žâ Šâ ‹â Šâ «" }, { "input": "prettifies", "output": "â â —â ‘â žâ žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "prettify", "output": "â â —â ‘â žâ žâ Šâ ‹â ½" }, { "input": "prettifying", "output": "â â —⠑⠞⠞⠊⠋⠽⠬" }, { "input": "prettily", "output": "â â —⠑⠞⠞⠊⠇⠽" }, { "input": "prettiness", "output": "â â —â ‘â žâ žâ Šâ °â Ž" }, { "input": "pretty", "output": "â â —â ‘â žâ žâ ½" }, { "input": "prettying", "output": "â â —⠑⠞⠞⠽⠬" }, { "input": "pretzel", "output": "â â —⠑⠞⠵⠑⠇" }, { "input": "pretzels", "output": "â â —⠑⠞⠵⠑⠇⠎" }, { "input": "prevail", "output": "â â —â ‘â §â â Šâ ‡" }, { "input": "prevailed", "output": "â â —â ‘â §â â Šâ ‡â «" }, { "input": "prevailing", "output": "â â —â ‘â §â â Šâ ‡â ¬" }, { "input": "prevails", "output": "â â —â ‘â §â â Šâ ‡â Ž" }, { "input": "prevalence", "output": "â â —â ‘â §â â ‡â °â ‘" }, { "input": "prevalent", "output": "â â —â ‘â §â â ‡â ¢â ž" }, { "input": "prevaricate", "output": "â â —⠑⠧⠜⠊⠉â â žâ ‘" }, { "input": "prevaricated", "output": "â â —⠑⠧⠜⠊⠉â â žâ «" }, { "input": "prevaricates", "output": "â â —⠑⠧⠜⠊⠉â â žâ ‘â Ž" }, { "input": "prevaricating", "output": "â â —⠑⠧⠜⠊⠉â â žâ ¬" }, { "input": "prevarication", "output": "â â —⠑⠧⠜⠊⠉â â °â " }, { "input": "prevarications", "output": "â â —⠑⠧⠜⠊⠉â â °â â Ž" }, { "input": "prevaricator", "output": "â â —⠑⠧⠜⠊⠉â â žâ •â —" }, { "input": "prevaricators", "output": "â â —⠑⠧⠜⠊⠉â â žâ •â —â Ž" }, { "input": "prevent", "output": "â â —⠑⠧⠢⠞" }, { "input": "preventable", "output": "â â —⠑⠧⠢⠞â â ƒâ ‡â ‘" }, { "input": "preventative", "output": "â â —⠑⠧⠢⠞â â žâ Šâ §â ‘" }, { "input": "preventatives", "output": "â â —⠑⠧⠢⠞â â žâ Šâ §â ‘â Ž" }, { "input": "prevented", "output": "â â —⠑⠧⠢⠞⠫" }, { "input": "preventible", "output": "â â —⠑⠧⠢⠞⠊⠃⠇⠑" }, { "input": "preventing", "output": "â â —⠑⠧⠢⠞⠬" }, { "input": "prevention", "output": "â â —⠑⠧⠢⠰â " }, { "input": "preventive", "output": "â â —⠑⠧⠢⠞⠊⠧⠑" }, { "input": "preventives", "output": "â â —⠑⠧⠢⠞⠊⠧⠑⠎" }, { "input": "prevents", "output": "â â —⠑⠧⠢⠞⠎" }, { "input": "preview", "output": "â â —â ‘â §â Šâ ‘â º" }, { "input": "previewed", "output": "â â —⠑⠧⠊⠑⠺⠫" }, { "input": "previewer", "output": "â â —⠑⠧⠊⠑⠺⠻" }, { "input": "previewers", "output": "â â —⠑⠧⠊⠑⠺⠻⠎" }, { "input": "previewing", "output": "â â —⠑⠧⠊⠑⠺⠬" }, { "input": "previews", "output": "â â —⠑⠧⠊⠑⠺⠎" }, { "input": "previous", "output": "â â —⠑⠧⠊⠳⠎" }, { "input": "previously", "output": "â â —⠑⠧⠊⠳⠎⠇⠽" }, { "input": "prevue", "output": "â â —⠑⠧⠥⠑" }, { "input": "prevues", "output": "â â —⠑⠧⠥⠑⠎" }, { "input": "prewar", "output": "â â —⠑⠺⠜" }, { "input": "prey", "output": "â â —â ‘â ½" }, { "input": "preyed", "output": "â â —⠑⠽⠫" }, { "input": "preying", "output": "â â —⠑⠽⠬" }, { "input": "preys", "output": "â â —⠑⠽⠎" }, { "input": "price", "output": "â â —⠊⠉⠑" }, { "input": "priced", "output": "â â —⠊⠉⠫" }, { "input": "priceless", "output": "â â —⠊⠉⠑⠨⠎" }, { "input": "prices", "output": "â â —⠊⠉⠑⠎" }, { "input": "pricey", "output": "â â —⠊⠉⠑⠽" }, { "input": "pricier", "output": "â â —⠊⠉⠊⠻" }, { "input": "priciest", "output": "â â —⠊⠉⠊⠑⠌" }, { "input": "pricing", "output": "â â —⠊⠉⠬" }, { "input": "prick", "output": "â â —⠊⠉⠅" }, { "input": "pricked", "output": "â â —⠊⠉⠅⠫" }, { "input": "pricking", "output": "â â —⠊⠉⠅⠬" }, { "input": "prickle", "output": "â â —⠊⠉⠅⠇⠑" }, { "input": "prickled", "output": "â â —⠊⠉⠅⠇⠫" }, { "input": "prickles", "output": "â â —⠊⠉⠅⠇⠑⠎" }, { "input": "pricklier", "output": "â â —⠊⠉⠅⠇⠊⠻" }, { "input": "prickliest", "output": "â â —⠊⠉⠅⠇⠊⠑⠌" }, { "input": "prickling", "output": "â â —⠊⠉⠅⠇⠬" }, { "input": "prickly", "output": "â â —⠊⠉⠅⠇⠽" }, { "input": "pricks", "output": "â â —⠊⠉⠅⠎" }, { "input": "pricy", "output": "â â —⠊⠉⠽" }, { "input": "pride", "output": "â â —⠊⠙⠑" }, { "input": "prided", "output": "â â —⠊⠙⠫" }, { "input": "prides", "output": "â â —⠊⠙⠑⠎" }, { "input": "priding", "output": "â â —⠊⠙⠬" }, { "input": "pried", "output": "â â —â Šâ «" }, { "input": "pries", "output": "â â —â Šâ ‘â Ž" }, { "input": "priest", "output": "â â —â Šâ ‘â Œ" }, { "input": "priestess", "output": "â â —⠊⠑⠌⠑⠎⠎" }, { "input": "priestesses", "output": "â â —⠊⠑⠌⠑⠎⠎⠑⠎" }, { "input": "priesthood", "output": "â â —⠊⠑⠌⠓⠕⠕⠙" }, { "input": "priesthoods", "output": "â â —⠊⠑⠌⠓⠕⠕⠙⠎" }, { "input": "priestlier", "output": "â â —⠊⠑⠌⠇⠊⠻" }, { "input": "priestliest", "output": "â â —⠊⠑⠌⠇⠊⠑⠌" }, { "input": "priestly", "output": "â â —⠊⠑⠌⠇⠽" }, { "input": "priests", "output": "â â —⠊⠑⠌⠎" }, { "input": "prig", "output": "â â —â Šâ ›" }, { "input": "priggish", "output": "â â —â Šâ ¶â Šâ ©" }, { "input": "prigs", "output": "â â —⠊⠛⠎" }, { "input": "prim", "output": "â â —â Šâ " }, { "input": "primacy", "output": "â â —â Šâ â â ‰â ½" }, { "input": "primaeval", "output": "â â —â Šâ â â ‘â §â â ‡" }, { "input": "primal", "output": "â â —â Šâ â â ‡" }, { "input": "primaries", "output": "â â —â Šâ â œâ Šâ ‘â Ž" }, { "input": "primarily", "output": "â â —â Šâ â œâ Šâ ‡â ½" }, { "input": "primary", "output": "â â —â Šâ â œâ ½" }, { "input": "primate", "output": "â â —â Šâ â â žâ ‘" }, { "input": "primates", "output": "â â —â Šâ â â žâ ‘â Ž" }, { "input": "prime", "output": "â â —â Šâ â ‘" }, { "input": "primed", "output": "â â —â Šâ â «" }, { "input": "primer", "output": "â â —â Šâ â »" }, { "input": "primers", "output": "â â —â Šâ â »â Ž" }, { "input": "primes", "output": "â â —â Šâ â ‘â Ž" }, { "input": "primeval", "output": "â â —â Šâ â ‘â §â â ‡" }, { "input": "priming", "output": "â â —â Šâ â ¬" }, { "input": "primitive", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘" }, { "input": "primitively", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "primitives", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘â Ž" }, { "input": "primly", "output": "â â —â Šâ â ‡â ½" }, { "input": "primmer", "output": "â â —â Šâ â â »" }, { "input": "primmest", "output": "â â —â Šâ â â ‘â Œ" }, { "input": "primness", "output": "â â —â Šâ â °â Ž" }, { "input": "primogeniture", "output": "â â —â Šâ â •⠛⠢⠊⠞⠥⠗⠑" }, { "input": "primordial", "output": "â â —â Šâ â •⠗⠙⠊â â ‡" }, { "input": "primp", "output": "â â —â Šâ â " }, { "input": "primped", "output": "â â —â Šâ â â «" }, { "input": "primping", "output": "â â —â Šâ â â ¬" }, { "input": "primps", "output": "â â —â Šâ â â Ž" }, { "input": "primrose", "output": "â â —â Šâ â —â •â Žâ ‘" }, { "input": "primroses", "output": "â â —â Šâ â —â •â Žâ ‘â Ž" }, { "input": "prince", "output": "â â —⠔⠉⠑" }, { "input": "princelier", "output": "â â —⠔⠉⠑⠇⠊⠻" }, { "input": "princeliest", "output": "â â —⠔⠉⠑⠇⠊⠑⠌" }, { "input": "princely", "output": "â â —⠔⠉⠑⠇⠽" }, { "input": "princes", "output": "â â —⠔⠉⠑⠎" }, { "input": "princess", "output": "â â —⠔⠉⠑⠎⠎" }, { "input": "princesses", "output": "â â —⠔⠉⠑⠎⠎⠑⠎" }, { "input": "principal", "output": "â â —⠔⠉⠊â â â ‡" }, { "input": "principalities", "output": "â â —⠔⠉⠊â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "principality", "output": "â â —⠔⠉⠊â â â ‡â °â ½" }, { "input": "principally", "output": "â â —⠔⠉⠊â â â ‡â ‡â ½" }, { "input": "principals", "output": "â â —⠔⠉⠊â â â ‡â Ž" }, { "input": "principle", "output": "â â —⠔⠉⠊â â ‡â ‘" }, { "input": "principled", "output": "â â —⠔⠉⠊â â ‡â «" }, { "input": "principles", "output": "â â —⠔⠉⠊â â ‡â ‘â Ž" }, { "input": "print", "output": "â â —⠔⠞" }, { "input": "printable", "output": "â â —⠔⠞â â ƒâ ‡â ‘" }, { "input": "printed", "output": "â â —⠔⠞⠫" }, { "input": "printer", "output": "â â —⠔⠞⠻" }, { "input": "printers", "output": "â â —⠔⠞⠻⠎" }, { "input": "printing", "output": "â â —⠔⠞⠬" }, { "input": "printings", "output": "â â —⠔⠞⠬⠎" }, { "input": "printout", "output": "â â —⠔⠞⠳⠞" }, { "input": "printouts", "output": "â â —⠔⠞⠳⠞⠎" }, { "input": "prints", "output": "â â —⠔⠞⠎" }, { "input": "prior", "output": "â â —â Šâ •â —" }, { "input": "prioress", "output": "â â —â Šâ •â —â ‘â Žâ Ž" }, { "input": "prioresses", "output": "â â —â Šâ •â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "priories", "output": "â â —â Šâ •â —â Šâ ‘â Ž" }, { "input": "priorities", "output": "â â —â Šâ •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "prioritize", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠑" }, { "input": "prioritized", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠫" }, { "input": "prioritizes", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠑⠎" }, { "input": "prioritizing", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠬" }, { "input": "priority", "output": "â â —â Šâ •â —â °â ½" }, { "input": "priors", "output": "â â —â Šâ •â —â Ž" }, { "input": "priory", "output": "â â —â Šâ •â —â ½" }, { "input": "prism", "output": "â â —â Šâ Žâ " }, { "input": "prismatic", "output": "â â —â Šâ Žâ â â žâ Šâ ‰" }, { "input": "prisms", "output": "â â —â Šâ Žâ â Ž" }, { "input": "prison", "output": "â â —â Šâ Žâ •â " }, { "input": "prisoner", "output": "â â —â Šâ Žâ •â â »" }, { "input": "prisoners", "output": "â â —â Šâ Žâ •â â »â Ž" }, { "input": "prisons", "output": "â â —â Šâ Žâ •â â Ž" }, { "input": "prissier", "output": "â â —â Šâ Žâ Žâ Šâ »" }, { "input": "prissiest", "output": "â â —â Šâ Žâ Žâ Šâ ‘â Œ" }, { "input": "prissiness", "output": "â â —â Šâ Žâ Žâ Šâ °â Ž" }, { "input": "prissy", "output": "â â —â Šâ Žâ Žâ ½" }, { "input": "pristine", "output": "â â —⠊⠌⠔⠑" }, { "input": "prithee", "output": "â â —⠊⠮⠑" }, { "input": "privacy", "output": "â â —â Šâ §â â ‰â ½" }, { "input": "private", "output": "â â —â Šâ §â â žâ ‘" }, { "input": "privateer", "output": "â â —â Šâ §â â žâ ‘â »" }, { "input": "privateers", "output": "â â —â Šâ §â â žâ ‘⠻⠎" }, { "input": "privately", "output": "â â —â Šâ §â â žâ ‘⠇⠽" }, { "input": "privater", "output": "â â —â Šâ §â â žâ »" }, { "input": "privates", "output": "â â —â Šâ §â â žâ ‘â Ž" }, { "input": "privatest", "output": "â â —â Šâ §â â žâ ‘â Œ" }, { "input": "privation", "output": "â â —â Šâ §â â °â " }, { "input": "privations", "output": "â â —â Šâ §â â °â â Ž" }, { "input": "privatization", "output": "â â —â Šâ §â â žâ Šâ µâ â °â " }, { "input": "privatizations", "output": "â â —â Šâ §â â žâ Šâ µâ â °â â Ž" }, { "input": "privatize", "output": "â â —â Šâ §â â žâ Šâ µâ ‘" }, { "input": "privatized", "output": "â â —â Šâ §â â žâ Šâ µâ «" }, { "input": "privatizes", "output": "â â —â Šâ §â â žâ Šâ µâ ‘â Ž" }, { "input": "privatizing", "output": "â â —â Šâ §â â žâ Šâ µâ ¬" }, { "input": "privet", "output": "â â —â Šâ §â ‘â ž" }, { "input": "privets", "output": "â â —â Šâ §â ‘â žâ Ž" }, { "input": "privier", "output": "â â —â Šâ §â Šâ »" }, { "input": "privies", "output": "â â —â Šâ §â Šâ ‘â Ž" }, { "input": "priviest", "output": "â â —â Šâ §â Šâ ‘â Œ" }, { "input": "privilege", "output": "â â —⠊⠧⠊⠇⠑⠛⠑" }, { "input": "privileged", "output": "â â —⠊⠧⠊⠇⠑⠛⠫" }, { "input": "privileges", "output": "â â —⠊⠧⠊⠇⠑⠛⠑⠎" }, { "input": "privileging", "output": "â â —⠊⠧⠊⠇⠑⠛⠬" }, { "input": "privy", "output": "â â —â Šâ §â ½" }, { "input": "prize", "output": "â â —⠊⠵⠑" }, { "input": "prized", "output": "â â —⠊⠵⠫" }, { "input": "prizefight", "output": "â â —⠊⠵⠑⠋⠊⠣⠞" }, { "input": "prizefighter", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠻" }, { "input": "prizefighters", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠻⠎" }, { "input": "prizefighting", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠬" }, { "input": "prizefights", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠎" }, { "input": "prizes", "output": "â â —⠊⠵⠑⠎" }, { "input": "prizing", "output": "â â —⠊⠵⠬" }, { "input": "pro", "output": "â â —â •" }, { "input": "proactive", "output": "â â —â •â â ‰â žâ Šâ §â ‘" }, { "input": "probabilistic", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â Šâ Œâ Šâ ‰" }, { "input": "probabilities", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "probability", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â °â ½" }, { "input": "probable", "output": "â â —â •â ƒâ â ƒâ ‡â ‘" }, { "input": "probables", "output": "â â —â •â ƒâ â ƒâ ‡â ‘â Ž" }, { "input": "probably", "output": "â â —â •â ƒâ â ƒâ ‡â ½" }, { "input": "probate", "output": "â â —â •â ƒâ â žâ ‘" }, { "input": "probated", "output": "â â —â •â ƒâ â žâ «" }, { "input": "probates", "output": "â â —â •â ƒâ â žâ ‘â Ž" }, { "input": "probating", "output": "â â —â •â ƒâ â žâ ¬" }, { "input": "probation", "output": "â â —â •â ƒâ â °â " }, { "input": "probationary", "output": "â â —â •â ƒâ â °â â œâ ½" }, { "input": "probationer", "output": "â â —â •â ƒâ â °â â »" }, { "input": "probationers", "output": "â â —â •â ƒâ â °â â »â Ž" }, { "input": "probe", "output": "â â —⠕⠃⠑" }, { "input": "probed", "output": "â â —⠕⠃⠫" }, { "input": "probes", "output": "â â —⠕⠃⠑⠎" }, { "input": "probing", "output": "â â —⠕⠃⠬" }, { "input": "probity", "output": "â â —⠕⠃⠰⠽" }, { "input": "problem", "output": "â â —⠕⠃⠇⠑â " }, { "input": "problematic", "output": "â â —⠕⠃⠇⠑â â â žâ Šâ ‰" }, { "input": "problematical", "output": "â â —⠕⠃⠇⠑â â â žâ Šâ ‰â â ‡" }, { "input": "problematically", "output": "â â —⠕⠃⠇⠑â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "problems", "output": "â â —⠕⠃⠇⠑â â Ž" }, { "input": "proboscides", "output": "â â —⠕⠃⠕⠎⠉⠊⠙⠑⠎" }, { "input": "proboscis", "output": "â â —⠕⠃⠕⠎⠉⠊⠎" }, { "input": "proboscises", "output": "â â —⠕⠃⠕⠎⠉⠊⠎⠑⠎" }, { "input": "procedural", "output": "â â —⠕⠉⠫⠥⠗â â ‡" }, { "input": "procedure", "output": "â â —⠕⠉⠫⠥⠗⠑" }, { "input": "procedures", "output": "â â —⠕⠉⠫⠥⠗⠑⠎" }, { "input": "proceed", "output": "â â —⠕⠉⠑⠫" }, { "input": "proceeded", "output": "â â —⠕⠉⠑⠫⠫" }, { "input": "proceeding", "output": "â â —⠕⠉⠑⠫⠬" }, { "input": "proceedings", "output": "â â —⠕⠉⠑⠫⠬⠎" }, { "input": "proceeds", "output": "â â —⠕⠉⠑⠫⠎" }, { "input": "process", "output": "â â —⠕⠉⠑⠎⠎" }, { "input": "processed", "output": "â â —⠕⠉⠑⠎⠎⠫" }, { "input": "processes", "output": "â â —⠕⠉⠑⠎⠎⠑⠎" }, { "input": "processing", "output": "â â —⠕⠉⠑⠎⠎⠬" }, { "input": "procession", "output": "â â —⠕⠉⠑⠎⠨â " }, { "input": "processional", "output": "â â —⠕⠉⠑⠎⠨â â â ‡" }, { "input": "processionals", "output": "â â —⠕⠉⠑⠎⠨â â â ‡â Ž" }, { "input": "processioned", "output": "â â —⠕⠉⠑⠎⠨â â «" }, { "input": "processioning", "output": "â â —⠕⠉⠑⠎⠨â â ¬" }, { "input": "processions", "output": "â â —⠕⠉⠑⠎⠨â â Ž" }, { "input": "processor", "output": "â â —⠕⠉⠑⠎⠎⠕⠗" }, { "input": "processors", "output": "â â —⠕⠉⠑⠎⠎⠕⠗⠎" }, { "input": "proclaim", "output": "â â —⠕⠉⠇â â Šâ " }, { "input": "proclaimed", "output": "â â —⠕⠉⠇â â Šâ â «" }, { "input": "proclaiming", "output": "â â —⠕⠉⠇â â Šâ â ¬" }, { "input": "proclaims", "output": "â â —⠕⠉⠇â â Šâ â Ž" }, { "input": "proclamation", "output": "â â —⠕⠉⠇â â â â °â " }, { "input": "proclamations", "output": "â â —⠕⠉⠇â â â â °â â Ž" }, { "input": "proclivities", "output": "â â —⠕⠉⠇⠊⠧⠊⠞⠊⠑⠎" }, { "input": "proclivity", "output": "â â —⠕⠉⠇⠊⠧⠰⠽" }, { "input": "procrastinate", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ ‘" }, { "input": "procrastinated", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ «" }, { "input": "procrastinates", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ ‘â Ž" }, { "input": "procrastinating", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ ¬" }, { "input": "procrastination", "output": "â â —⠕⠉⠗â â Œâ ”â â °â " }, { "input": "procrastinator", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ •â —" }, { "input": "procrastinators", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ •â —â Ž" }, { "input": "procreate", "output": "â â —⠕⠉⠗⠂⠞⠑" }, { "input": "procreated", "output": "â â —⠕⠉⠗⠂⠞⠫" }, { "input": "procreates", "output": "â â —⠕⠉⠗⠂⠞⠑⠎" }, { "input": "procreating", "output": "â â —⠕⠉⠗⠂⠞⠬" }, { "input": "procreation", "output": "â â —⠕⠉⠗⠂⠰â " }, { "input": "procreative", "output": "â â —⠕⠉⠗⠂⠞⠊⠧⠑" }, { "input": "proctor", "output": "â â —⠕⠉⠞⠕⠗" }, { "input": "proctored", "output": "â â —⠕⠉⠞⠕⠗⠫" }, { "input": "proctoring", "output": "â â —⠕⠉⠞⠕⠗⠬" }, { "input": "proctors", "output": "â â —⠕⠉⠞⠕⠗⠎" }, { "input": "procurator", "output": "â â —⠕⠉⠥⠗â â žâ •â —" }, { "input": "procurators", "output": "â â —⠕⠉⠥⠗â â žâ •â —â Ž" }, { "input": "procure", "output": "â â —⠕⠉⠥⠗⠑" }, { "input": "procured", "output": "â â —⠕⠉⠥⠗⠫" }, { "input": "procurement", "output": "â â —⠕⠉⠥⠗⠑⠰⠞" }, { "input": "procurer", "output": "â â —⠕⠉⠥⠗⠻" }, { "input": "procurers", "output": "â â —⠕⠉⠥⠗⠻⠎" }, { "input": "procures", "output": "â â —⠕⠉⠥⠗⠑⠎" }, { "input": "procuring", "output": "â â —⠕⠉⠥⠗⠬" }, { "input": "prod", "output": "â â —â •â ™" }, { "input": "prodded", "output": "â â —⠕⠙⠙⠫" }, { "input": "prodding", "output": "â â —⠕⠙⠙⠬" }, { "input": "prodigal", "output": "â â —⠕⠙⠊⠛â â ‡" }, { "input": "prodigality", "output": "â â —⠕⠙⠊⠛â â ‡â °â ½" }, { "input": "prodigals", "output": "â â —⠕⠙⠊⠛â â ‡â Ž" }, { "input": "prodigies", "output": "â â —⠕⠙⠊⠛⠊⠑⠎" }, { "input": "prodigious", "output": "â â —⠕⠙⠊⠛⠊⠳⠎" }, { "input": "prodigiously", "output": "â â —⠕⠙⠊⠛⠊⠳⠎⠇⠽" }, { "input": "prodigy", "output": "â â —⠕⠙⠊⠛⠽" }, { "input": "prods", "output": "â â —⠕⠙⠎" }, { "input": "produce", "output": "â â —⠕⠙⠥⠉⠑" }, { "input": "produced", "output": "â â —⠕⠙⠥⠉⠫" }, { "input": "producer", "output": "â â —⠕⠙⠥⠉⠻" }, { "input": "producers", "output": "â â —⠕⠙⠥⠉⠻⠎" }, { "input": "produces", "output": "â â —⠕⠙⠥⠉⠑⠎" }, { "input": "producing", "output": "â â —⠕⠙⠥⠉⠬" }, { "input": "product", "output": "â â —⠕⠙⠥⠉⠞" }, { "input": "production", "output": "â â —⠕⠙⠥⠉⠰â " }, { "input": "productions", "output": "â â —⠕⠙⠥⠉⠰â â Ž" }, { "input": "productive", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "productively", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "productiveness", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "productivity", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠰⠽" }, { "input": "products", "output": "â â —⠕⠙⠥⠉⠞⠎" }, { "input": "prof", "output": "â â —â ·" }, { "input": "profanation", "output": "â â —â ·â â â â °â " }, { "input": "profanations", "output": "â â —â ·â â â â °â â Ž" }, { "input": "profane", "output": "â â —â ·â â â ‘" }, { "input": "profaned", "output": "â â —â ·â â â «" }, { "input": "profanely", "output": "â â —â ·â â â ‘⠇⠽" }, { "input": "profanes", "output": "â â —â ·â â â ‘â Ž" }, { "input": "profaning", "output": "â â —â ·â â â ¬" }, { "input": "profanities", "output": "â â —â ·â â â Šâ žâ Šâ ‘â Ž" }, { "input": "profanity", "output": "â â —â ·â â â °â ½" }, { "input": "profess", "output": "â â —â ·â ‘â Žâ Ž" }, { "input": "professed", "output": "â â —â ·â ‘â Žâ Žâ «" }, { "input": "professes", "output": "â â —â ·â ‘â Žâ Žâ ‘â Ž" }, { "input": "professing", "output": "â â —â ·â ‘â Žâ Žâ ¬" }, { "input": "profession", "output": "â â —â ·â ‘â Žâ ¨â " }, { "input": "professional", "output": "â â —â ·â ‘â Žâ ¨â â â ‡" }, { "input": "professionalism", "output": "â â —â ·â ‘â Žâ ¨â â â ‡â Šâ Žâ " }, { "input": "professionally", "output": "â â —â ·â ‘â Žâ ¨â â â ‡â ‡â ½" }, { "input": "professionals", "output": "â â —â ·â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "professions", "output": "â â —â ·â ‘â Žâ ¨â â Ž" }, { "input": "professor", "output": "â â —â ·â ‘â Žâ Žâ •â —" }, { "input": "professorial", "output": "â â —â ·â ‘â Žâ Žâ •â —â Šâ â ‡" }, { "input": "professors", "output": "â â —â ·â ‘â Žâ Žâ •â —â Ž" }, { "input": "professorship", "output": "â â —â ·â ‘â Žâ Žâ •â —â ©â Šâ " }, { "input": "professorships", "output": "â â —â ·â ‘â Žâ Žâ •â —â ©â Šâ â Ž" }, { "input": "proffer", "output": "â â —â ·â ‹â »" }, { "input": "proffered", "output": "â â —⠷⠋⠻⠫" }, { "input": "proffering", "output": "â â —⠷⠋⠻⠬" }, { "input": "proffers", "output": "â â —⠷⠋⠻⠎" }, { "input": "proficiency", "output": "â â —⠷⠊⠉⠊⠢⠉⠽" }, { "input": "proficient", "output": "â â —⠷⠊⠉⠊⠢⠞" }, { "input": "proficiently", "output": "â â —⠷⠊⠉⠊⠢⠞⠇⠽" }, { "input": "proficients", "output": "â â —⠷⠊⠉⠊⠢⠞⠎" }, { "input": "profile", "output": "â â —⠷⠊⠇⠑" }, { "input": "profiled", "output": "â â —⠷⠊⠇⠫" }, { "input": "profiles", "output": "â â —⠷⠊⠇⠑⠎" }, { "input": "profiling", "output": "â â —⠷⠊⠇⠬" }, { "input": "profit", "output": "â â —â ·â Šâ ž" }, { "input": "profitability", "output": "â â —â ·â Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "profitable", "output": "â â —â ·â Šâ žâ â ƒâ ‡â ‘" }, { "input": "profitably", "output": "â â —â ·â Šâ žâ â ƒâ ‡â ½" }, { "input": "profited", "output": "â â —â ·â Šâ žâ «" }, { "input": "profiteer", "output": "â â —â ·â Šâ žâ ‘â »" }, { "input": "profiteered", "output": "â â —⠷⠊⠞⠑⠻⠫" }, { "input": "profiteering", "output": "â â —⠷⠊⠞⠑⠻⠬" }, { "input": "profiteers", "output": "â â —⠷⠊⠞⠑⠻⠎" }, { "input": "profiting", "output": "â â —â ·â Šâ žâ ¬" }, { "input": "profits", "output": "â â —â ·â Šâ žâ Ž" }, { "input": "profligacy", "output": "â â —⠷⠇⠊⠛â â ‰â ½" }, { "input": "profligate", "output": "â â —⠷⠇⠊⠛â â žâ ‘" }, { "input": "profligates", "output": "â â —⠷⠇⠊⠛â â žâ ‘â Ž" }, { "input": "proforma", "output": "â â —â •â ¿â â " }, { "input": "profound", "output": "â â —⠷⠨⠙" }, { "input": "profounder", "output": "â â —⠷⠨⠙⠻" }, { "input": "profoundest", "output": "â â —⠷⠨⠙⠑⠌" }, { "input": "profoundly", "output": "â â —⠷⠨⠙⠇⠽" }, { "input": "profs", "output": "â â —â ·â Ž" }, { "input": "profundities", "output": "â â —â ·â ¥â â ™â Šâ žâ Šâ ‘â Ž" }, { "input": "profundity", "output": "â â —â ·â ¥â â ™â °â ½" }, { "input": "profuse", "output": "â â —⠷⠥⠎⠑" }, { "input": "profusely", "output": "â â —⠷⠥⠎⠑⠇⠽" }, { "input": "profusion", "output": "â â —⠷⠥⠨â " }, { "input": "profusions", "output": "â â —⠷⠥⠨â â Ž" }, { "input": "progenitor", "output": "â â —⠕⠛⠢⠊⠞⠕⠗" }, { "input": "progenitors", "output": "â â —⠕⠛⠢⠊⠞⠕⠗⠎" }, { "input": "progeny", "output": "â â —⠕⠛⠢⠽" }, { "input": "progesterone", "output": "â â —⠕⠛⠑⠌⠻â â •" }, { "input": "prognoses", "output": "â â —â •â ›â â •â Žâ ‘â Ž" }, { "input": "prognosis", "output": "â â —â •â ›â â •â Žâ Šâ Ž" }, { "input": "prognostic", "output": "â â —â •â ›â â •⠌⠊⠉" }, { "input": "prognosticate", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ ‘" }, { "input": "prognosticated", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ «" }, { "input": "prognosticates", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ ‘â Ž" }, { "input": "prognosticating", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ ¬" }, { "input": "prognostication", "output": "â â —â •â ›â â •⠌⠊⠉â â °â " }, { "input": "prognostications", "output": "â â —â •â ›â â •⠌⠊⠉â â °â â Ž" }, { "input": "prognosticator", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ •â —" }, { "input": "prognosticators", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ •â —â Ž" }, { "input": "prognostics", "output": "â â —â •â ›â â •⠌⠊⠉⠎" }, { "input": "program", "output": "â â —⠕⠛⠗â â " }, { "input": "programed", "output": "â â —⠕⠛⠗â â â «" }, { "input": "programer", "output": "â â —⠕⠛⠗â â â »" }, { "input": "programers", "output": "â â —⠕⠛⠗â â â »â Ž" }, { "input": "programing", "output": "â â —⠕⠛⠗â â â ¬" }, { "input": "programmable", "output": "â â —⠕⠛⠗â â â â â ƒâ ‡â ‘" }, { "input": "programmables", "output": "â â —⠕⠛⠗â â â â â ƒâ ‡â ‘â Ž" }, { "input": "programmed", "output": "â â —⠕⠛⠗â â â â «" }, { "input": "programmer", "output": "â â —⠕⠛⠗â â â â »" }, { "input": "programmers", "output": "â â —⠕⠛⠗â â â â »â Ž" }, { "input": "programming", "output": "â â —⠕⠛⠗â â â â ¬" }, { "input": "programs", "output": "â â —⠕⠛⠗â â â Ž" }, { "input": "progress", "output": "â â —⠕⠛⠗⠑⠎⠎" }, { "input": "progressed", "output": "â â —⠕⠛⠗⠑⠎⠎⠫" }, { "input": "progresses", "output": "â â —⠕⠛⠗⠑⠎⠎⠑⠎" }, { "input": "progressing", "output": "â â —⠕⠛⠗⠑⠎⠎⠬" }, { "input": "progression", "output": "â â —⠕⠛⠗⠑⠎⠨â " }, { "input": "progressions", "output": "â â —⠕⠛⠗⠑⠎⠨â â Ž" }, { "input": "progressive", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "progressively", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "progressives", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠎" }, { "input": "prohibit", "output": "â â —⠕⠓⠊⠃⠊⠞" }, { "input": "prohibited", "output": "â â —⠕⠓⠊⠃⠊⠞⠫" }, { "input": "prohibiting", "output": "â â —⠕⠓⠊⠃⠊⠞⠬" }, { "input": "prohibition", "output": "â â —⠕⠓⠊⠃⠊⠰â " }, { "input": "prohibitionist", "output": "â â —⠕⠓⠊⠃⠊⠰â â Šâ Œ" }, { "input": "prohibitionists", "output": "â â —⠕⠓⠊⠃⠊⠰â â Šâ Œâ Ž" }, { "input": "prohibitions", "output": "â â —⠕⠓⠊⠃⠊⠰â â Ž" }, { "input": "prohibitive", "output": "â â —⠕⠓⠊⠃⠊⠞⠊⠧⠑" }, { "input": "prohibitively", "output": "â â —⠕⠓⠊⠃⠊⠞⠊⠧⠑⠇⠽" }, { "input": "prohibitory", "output": "â â —⠕⠓⠊⠃⠊⠞⠕⠗⠽" }, { "input": "prohibits", "output": "â â —⠕⠓⠊⠃⠊⠞⠎" }, { "input": "project", "output": "â â —⠕⠚⠑⠉⠞" }, { "input": "projected", "output": "â â —⠕⠚⠑⠉⠞⠫" }, { "input": "projectile", "output": "â â —⠕⠚⠑⠉⠞⠊⠇⠑" }, { "input": "projectiles", "output": "â â —⠕⠚⠑⠉⠞⠊⠇⠑⠎" }, { "input": "projecting", "output": "â â —⠕⠚⠑⠉⠞⠬" }, { "input": "projection", "output": "â â —⠕⠚⠑⠉⠰â " }, { "input": "projectionist", "output": "â â —⠕⠚⠑⠉⠰â â Šâ Œ" }, { "input": "projectionists", "output": "â â —⠕⠚⠑⠉⠰â â Šâ Œâ Ž" }, { "input": "projections", "output": "â â —⠕⠚⠑⠉⠰â â Ž" }, { "input": "projector", "output": "â â —⠕⠚⠑⠉⠞⠕⠗" }, { "input": "projectors", "output": "â â —⠕⠚⠑⠉⠞⠕⠗⠎" }, { "input": "projects", "output": "â â —⠕⠚⠑⠉⠞⠎" }, { "input": "proletarian", "output": "â â —⠕⠇⠑⠞⠜⠊â â " }, { "input": "proletarians", "output": "â â —⠕⠇⠑⠞⠜⠊â â â Ž" }, { "input": "proletariat", "output": "â â —⠕⠇⠑⠞⠜⠊â â ž" }, { "input": "proliferate", "output": "â â —⠕⠇⠊⠋⠻â â žâ ‘" }, { "input": "proliferated", "output": "â â —⠕⠇⠊⠋⠻â â žâ «" }, { "input": "proliferates", "output": "â â —⠕⠇⠊⠋⠻â â žâ ‘â Ž" }, { "input": "proliferating", "output": "â â —⠕⠇⠊⠋⠻â â žâ ¬" }, { "input": "proliferation", "output": "â â —⠕⠇⠊⠋⠻â â °â " }, { "input": "prolific", "output": "â â —⠕⠇⠊⠋⠊⠉" }, { "input": "prolifically", "output": "â â —⠕⠇⠊⠋⠊⠉â â ‡â ‡â ½" }, { "input": "prolix", "output": "â â —⠕⠇⠊⠭" }, { "input": "prolixity", "output": "â â —⠕⠇⠊⠭⠰⠽" }, { "input": "prolog", "output": "â â —⠕⠇⠕⠛" }, { "input": "prologs", "output": "â â —⠕⠇⠕⠛⠎" }, { "input": "prologue", "output": "â â —⠕⠇⠕⠛⠥⠑" }, { "input": "prologues", "output": "â â —⠕⠇⠕⠛⠥⠑⠎" }, { "input": "prolong", "output": "â â —⠕⠇⠰⠛" }, { "input": "prolongation", "output": "â â —⠕⠇⠰⠛â â °â " }, { "input": "prolongations", "output": "â â —⠕⠇⠰⠛â â °â â Ž" }, { "input": "prolonged", "output": "â â —⠕⠇⠰⠛⠫" }, { "input": "prolonging", "output": "â â —⠕⠇⠰⠛⠬" }, { "input": "prolongs", "output": "â â —⠕⠇⠰⠛⠎" }, { "input": "prom", "output": "â â —â •â " }, { "input": "promenade", "output": "â â —â •â â ¢â â ™â ‘" }, { "input": "promenaded", "output": "â â —â •â â ¢â â ™â «" }, { "input": "promenades", "output": "â â —â •â â ¢â â ™â ‘â Ž" }, { "input": "promenading", "output": "â â —â •â â ¢â â ™â ¬" }, { "input": "prominence", "output": "â â —â •â â ”â °â ‘" }, { "input": "prominent", "output": "â â —â •â â ”⠢⠞" }, { "input": "prominently", "output": "â â —â •â â ”⠢⠞⠇⠽" }, { "input": "promiscuity", "output": "â â —â •â â Šâ Žâ ‰â ¥â °â ½" }, { "input": "promiscuous", "output": "â â —â •â â Šâ Žâ ‰â ¥â ³â Ž" }, { "input": "promiscuously", "output": "â â —â •â â Šâ Žâ ‰â ¥â ³â Žâ ‡â ½" }, { "input": "promise", "output": "â â —â •â â Šâ Žâ ‘" }, { "input": "promised", "output": "â â —â •â â Šâ Žâ «" }, { "input": "promises", "output": "â â —â •â â Šâ Žâ ‘â Ž" }, { "input": "promising", "output": "â â —â •â â Šâ Žâ ¬" }, { "input": "promisingly", "output": "â â —â •â â Šâ Žâ ¬â ‡â ½" }, { "input": "promissory", "output": "â â —â •â â Šâ Žâ Žâ •â —â ½" }, { "input": "promo", "output": "â â —â •â â •" }, { "input": "promontories", "output": "â â —â •â â •â â žâ •â —â Šâ ‘â Ž" }, { "input": "promontory", "output": "â â —â •â â •â â žâ •â —â ½" }, { "input": "promos", "output": "â â —â •â â •â Ž" }, { "input": "promote", "output": "â â —â •â â •â žâ ‘" }, { "input": "promoted", "output": "â â —â •â â •â žâ «" }, { "input": "promoter", "output": "â â —â •â â •â žâ »" }, { "input": "promoters", "output": "â â —â •â â •⠞⠻⠎" }, { "input": "promotes", "output": "â â —â •â â •â žâ ‘â Ž" }, { "input": "promoting", "output": "â â —â •â â •â žâ ¬" }, { "input": "promotion", "output": "â â —â •â â •â °â " }, { "input": "promotional", "output": "â â —â •â â •â °â â â ‡" }, { "input": "promotions", "output": "â â —â •â â •â °â â Ž" }, { "input": "prompt", "output": "â â —â •â â â ž" }, { "input": "prompted", "output": "â â —â •â â â žâ «" }, { "input": "prompter", "output": "â â —â •â â â žâ »" }, { "input": "prompters", "output": "â â —â •â â â žâ »â Ž" }, { "input": "promptest", "output": "â â —â •â â â žâ ‘â Œ" }, { "input": "prompting", "output": "â â —â •â â â žâ ¬" }, { "input": "promptings", "output": "â â —â •â â â žâ ¬â Ž" }, { "input": "promptly", "output": "â â —â •â â â žâ ‡â ½" }, { "input": "promptness", "output": "â â —â •â â â žâ °â Ž" }, { "input": "prompts", "output": "â â —â •â â â žâ Ž" }, { "input": "proms", "output": "â â —â •â â Ž" }, { "input": "promulgate", "output": "â â —â •â â ¥â ‡â ›â â žâ ‘" }, { "input": "promulgated", "output": "â â —â •â â ¥â ‡â ›â â žâ «" }, { "input": "promulgates", "output": "â â —â •â â ¥â ‡â ›â â žâ ‘â Ž" }, { "input": "promulgating", "output": "â â —â •â â ¥â ‡â ›â â žâ ¬" }, { "input": "promulgation", "output": "â â —â •â â ¥â ‡â ›â â °â " }, { "input": "prone", "output": "â â —â â •" }, { "input": "proneness", "output": "â â —â â •â °â Ž" }, { "input": "prong", "output": "â â —â °â ›" }, { "input": "pronged", "output": "â â —⠰⠛⠫" }, { "input": "pronghorn", "output": "â â —⠰⠛⠓⠕⠗â " }, { "input": "pronghorns", "output": "â â —⠰⠛⠓⠕⠗â â Ž" }, { "input": "prongs", "output": "â â —⠰⠛⠎" }, { "input": "pronoun", "output": "â â —â •â â ³â " }, { "input": "pronounce", "output": "â â —â •â â ³â â ‰â ‘" }, { "input": "pronounceable", "output": "â â —â •â â ³â â ‰â ‚⠃⠇⠑" }, { "input": "pronounced", "output": "â â —â •â â ³â â ‰â «" }, { "input": "pronouncement", "output": "â â —â •â â ³â â ‰â ‘â °â ž" }, { "input": "pronouncements", "output": "â â —â •â â ³â â ‰â ‘â °â žâ Ž" }, { "input": "pronounces", "output": "â â —â •â â ³â â ‰â ‘â Ž" }, { "input": "pronouncing", "output": "â â —â •â â ³â â ‰â ¬" }, { "input": "pronouns", "output": "â â —â •â â ³â â Ž" }, { "input": "pronto", "output": "â â —â •â â žâ •" }, { "input": "pronunciation", "output": "â â —â •â â ¥â â ‰â Šâ â °â " }, { "input": "pronunciations", "output": "â â —â •â â ¥â â ‰â Šâ â °â â Ž" }, { "input": "proof", "output": "â â —â •â ·" }, { "input": "proofed", "output": "â â —â •â ·â «" }, { "input": "proofing", "output": "â â —â •â ·â ¬" }, { "input": "proofread", "output": "â â —â •â ·â —â ‚â ™" }, { "input": "proofreader", "output": "â â —⠕⠷⠗⠂⠙⠻" }, { "input": "proofreaders", "output": "â â —⠕⠷⠗⠂⠙⠻⠎" }, { "input": "proofreading", "output": "â â —⠕⠷⠗⠂⠙⠬" }, { "input": "proofreads", "output": "â â —⠕⠷⠗⠂⠙⠎" }, { "input": "proofs", "output": "â â —â •â ·â Ž" }, { "input": "prop", "output": "â â —â •â " }, { "input": "propaganda", "output": "â â —â •â â â ›â ¯â " }, { "input": "propagandist", "output": "â â —â •â â â ›â ¯â Šâ Œ" }, { "input": "propagandists", "output": "â â —â •â â â ›â ¯â Šâ Œâ Ž" }, { "input": "propagandize", "output": "â â —â •â â â ›â ¯â Šâ µâ ‘" }, { "input": "propagandized", "output": "â â —â •â â â ›â ¯â Šâ µâ «" }, { "input": "propagandizes", "output": "â â —â •â â â ›â ¯â Šâ µâ ‘â Ž" }, { "input": "propagandizing", "output": "â â —â •â â â ›â ¯â Šâ µâ ¬" }, { "input": "propagate", "output": "â â —â •â â â ›â â žâ ‘" }, { "input": "propagated", "output": "â â —â •â â â ›â â žâ «" }, { "input": "propagates", "output": "â â —â •â â â ›â â žâ ‘â Ž" }, { "input": "propagating", "output": "â â —â •â â â ›â â žâ ¬" }, { "input": "propagation", "output": "â â —â •â â â ›â â °â " }, { "input": "propane", "output": "â â —â •â â â â ‘" }, { "input": "propel", "output": "â â —â •â â ‘â ‡" }, { "input": "propellant", "output": "â â —â •â â ‘⠇⠇â â â ž" }, { "input": "propellants", "output": "â â —â •â â ‘⠇⠇â â â žâ Ž" }, { "input": "propelled", "output": "â â —â •â â ‘⠇⠇⠫" }, { "input": "propellent", "output": "â â —â •â â ‘⠇⠇⠢⠞" }, { "input": "propellents", "output": "â â —â •â â ‘⠇⠇⠢⠞⠎" }, { "input": "propeller", "output": "â â —â •â â ‘⠇⠇⠻" }, { "input": "propellers", "output": "â â —â •â â ‘⠇⠇⠻⠎" }, { "input": "propelling", "output": "â â —â •â â ‘⠇⠇⠬" }, { "input": "propels", "output": "â â —â •â â ‘⠇⠎" }, { "input": "propensities", "output": "â â —â •â â ¢â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "propensity", "output": "â â —â •â â ¢â Žâ °â ½" }, { "input": "proper", "output": "â â —â •â â »" }, { "input": "properer", "output": "â â —â •â â »â »" }, { "input": "properest", "output": "â â —â •â â »â ‘â Œ" }, { "input": "properly", "output": "â â —â •â â »â ‡â ½" }, { "input": "propertied", "output": "â â —â •â â »â žâ Šâ «" }, { "input": "properties", "output": "â â —â •â â »â žâ Šâ ‘â Ž" }, { "input": "property", "output": "â â —â •â â »â žâ ½" }, { "input": "prophecies", "output": "â â —â •â â “⠑⠉⠊⠑⠎" }, { "input": "prophecy", "output": "â â —â •â â “⠑⠉⠽" }, { "input": "prophesied", "output": "â â —â •â â “â ‘â Žâ Šâ «" }, { "input": "prophesies", "output": "â â —â •â â “â ‘â Žâ Šâ ‘â Ž" }, { "input": "prophesy", "output": "â â —â •â â “â ‘â Žâ ½" }, { "input": "prophesying", "output": "â â —â •â â “⠑⠎⠽⠬" }, { "input": "prophet", "output": "â â —â •â â “â ‘â ž" }, { "input": "prophetess", "output": "â â —â •â â “â ‘â žâ ‘â Žâ Ž" }, { "input": "prophetesses", "output": "â â —â •â â “â ‘â žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "prophetic", "output": "â â —â •â â “â ‘â žâ Šâ ‰" }, { "input": "prophetically", "output": "â â —â •â â “â ‘â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "prophets", "output": "â â —â •â â “â ‘â žâ Ž" }, { "input": "prophylactic", "output": "â â —â •â â “⠽⠇â â ‰â žâ Šâ ‰" }, { "input": "prophylactics", "output": "â â —â •â â “⠽⠇â â ‰â žâ Šâ ‰â Ž" }, { "input": "prophylaxis", "output": "â â —â •â â “⠽⠇â â ­â Šâ Ž" }, { "input": "propinquity", "output": "â â —â •â â ”⠟⠥⠰⠽" }, { "input": "propitiate", "output": "â â —â •â â Šâ žâ Šâ â žâ ‘" }, { "input": "propitiated", "output": "â â —â •â â Šâ žâ Šâ â žâ «" }, { "input": "propitiates", "output": "â â —â •â â Šâ žâ Šâ â žâ ‘â Ž" }, { "input": "propitiating", "output": "â â —â •â â Šâ žâ Šâ â žâ ¬" }, { "input": "propitiation", "output": "â â —â •â â Šâ žâ Šâ â °â " }, { "input": "propitiatory", "output": "â â —â •â â Šâ žâ Šâ â žâ •â —â ½" }, { "input": "propitious", "output": "â â —â •â â Šâ žâ Šâ ³â Ž" }, { "input": "proponent", "output": "â â —â •â â •â â ¢â ž" }, { "input": "proponents", "output": "â â —â •â â •â â ¢â žâ Ž" }, { "input": "proportion", "output": "â â —â •â â •â —â °â " }, { "input": "proportional", "output": "â â —â •â â •â —â °â â â ‡" }, { "input": "proportionality", "output": "â â —â •â â •â —â °â â â ‡â °â ½" }, { "input": "proportionally", "output": "â â —â •â â •â —â °â â â ‡â ‡â ½" }, { "input": "proportionals", "output": "â â —â •â â •â —â °â â â ‡â Ž" }, { "input": "proportionate", "output": "â â —â •â â •â —â °â â â žâ ‘" }, { "input": "proportionately", "output": "â â —â •â â •â —â °â â â žâ ‘⠇⠽" }, { "input": "proportioned", "output": "â â —â •â â •â —â °â â «" }, { "input": "proportioning", "output": "â â —â •â â •â —â °â â ¬" }, { "input": "proportions", "output": "â â —â •â â •â —â °â â Ž" }, { "input": "proposal", "output": "â â —â •â â •â Žâ â ‡" }, { "input": "proposals", "output": "â â —â •â â •â Žâ â ‡â Ž" }, { "input": "propose", "output": "â â —â •â â •â Žâ ‘" }, { "input": "proposed", "output": "â â —â •â â •â Žâ «" }, { "input": "proposer", "output": "â â —â •â â •â Žâ »" }, { "input": "proposes", "output": "â â —â •â â •â Žâ ‘â Ž" }, { "input": "proposing", "output": "â â —â •â â •â Žâ ¬" }, { "input": "proposition", "output": "â â —â •â â •â Žâ Šâ °â " }, { "input": "propositional", "output": "â â —â •â â •â Žâ Šâ °â â â ‡" }, { "input": "propositioned", "output": "â â —â •â â •â Žâ Šâ °â â «" }, { "input": "propositioning", "output": "â â —â •â â •â Žâ Šâ °â â ¬" }, { "input": "propositions", "output": "â â —â •â â •â Žâ Šâ °â â Ž" }, { "input": "propound", "output": "â â —â •â â ¨â ™" }, { "input": "propounded", "output": "â â —â •â â ¨â ™â «" }, { "input": "propounding", "output": "â â —â •â â ¨â ™â ¬" }, { "input": "propounds", "output": "â â —â •â â ¨â ™â Ž" }, { "input": "propped", "output": "â â —â •â â â «" }, { "input": "propping", "output": "â â —â •â â â ¬" }, { "input": "proprietaries", "output": "â â —â •â â —⠊⠑⠞⠜⠊⠑⠎" }, { "input": "proprietary", "output": "â â —â •â â —⠊⠑⠞⠜⠽" }, { "input": "proprietor", "output": "â â —â •â â —â Šâ ‘â žâ •â —" }, { "input": "proprietors", "output": "â â —â •â â —â Šâ ‘â žâ •â —â Ž" }, { "input": "proprietorship", "output": "â â —â •â â —â Šâ ‘â žâ •â —â ©â Šâ " }, { "input": "proprietress", "output": "â â —â •â â —â Šâ ‘â žâ —â ‘â Žâ Ž" }, { "input": "proprietresses", "output": "â â —â •â â —â Šâ ‘â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "propriety", "output": "â â —â •â â —â Šâ ‘â žâ ½" }, { "input": "props", "output": "â â —â •â â Ž" }, { "input": "propulsion", "output": "â â —â •â â ¥â ‡â ¨â " }, { "input": "propulsive", "output": "â â —â •â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "prorate", "output": "â â —â •â —â â žâ ‘" }, { "input": "prorated", "output": "â â —â •â —â â žâ «" }, { "input": "prorates", "output": "â â —â •â —â â žâ ‘â Ž" }, { "input": "prorating", "output": "â â —â •â —â â žâ ¬" }, { "input": "pros", "output": "â â —â •â Ž" }, { "input": "prosaic", "output": "â â —â •â Žâ â Šâ ‰" }, { "input": "prosaically", "output": "â â —â •â Žâ â Šâ ‰â â ‡â ‡â ½" }, { "input": "proscenia", "output": "â â —⠕⠎⠉⠢⠊â " }, { "input": "proscenium", "output": "â â —⠕⠎⠉⠢⠊⠥â " }, { "input": "prosceniums", "output": "â â —⠕⠎⠉⠢⠊⠥â â Ž" }, { "input": "proscribe", "output": "â â —⠕⠎⠉⠗⠊⠃⠑" }, { "input": "proscribed", "output": "â â —⠕⠎⠉⠗⠊⠃⠫" }, { "input": "proscribes", "output": "â â —⠕⠎⠉⠗⠊⠃⠑⠎" }, { "input": "proscribing", "output": "â â —⠕⠎⠉⠗⠊⠃⠬" }, { "input": "proscription", "output": "â â —⠕⠎⠉⠗⠊â â °â " }, { "input": "proscriptions", "output": "â â —⠕⠎⠉⠗⠊â â °â â Ž" }, { "input": "prose", "output": "â â —â •â Žâ ‘" }, { "input": "prosecute", "output": "â â —⠕⠎⠑⠉⠥⠞⠑" }, { "input": "prosecuted", "output": "â â —⠕⠎⠑⠉⠥⠞⠫" }, { "input": "prosecutes", "output": "â â —⠕⠎⠑⠉⠥⠞⠑⠎" }, { "input": "prosecuting", "output": "â â —⠕⠎⠑⠉⠥⠞⠬" }, { "input": "prosecution", "output": "â â —⠕⠎⠑⠉⠥⠰â " }, { "input": "prosecutions", "output": "â â —⠕⠎⠑⠉⠥⠰â â Ž" }, { "input": "prosecutor", "output": "â â —⠕⠎⠑⠉⠥⠞⠕⠗" }, { "input": "prosecutors", "output": "â â —⠕⠎⠑⠉⠥⠞⠕⠗⠎" }, { "input": "proselyte", "output": "â â —⠕⠎⠑⠇⠽⠞⠑" }, { "input": "proselyted", "output": "â â —⠕⠎⠑⠇⠽⠞⠫" }, { "input": "proselytes", "output": "â â —⠕⠎⠑⠇⠽⠞⠑⠎" }, { "input": "proselyting", "output": "â â —⠕⠎⠑⠇⠽⠞⠬" }, { "input": "proselytize", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠑" }, { "input": "proselytized", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠫" }, { "input": "proselytizes", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠑⠎" }, { "input": "proselytizing", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠬" }, { "input": "prosier", "output": "â â —â •â Žâ Šâ »" }, { "input": "prosiest", "output": "â â —â •â Žâ Šâ ‘â Œ" }, { "input": "prosodies", "output": "â â —⠕⠎⠕⠙⠊⠑⠎" }, { "input": "prosody", "output": "â â —⠕⠎⠕⠙⠽" }, { "input": "prospect", "output": "â â —â •â Žâ â ‘⠉⠞" }, { "input": "prospected", "output": "â â —â •â Žâ â ‘⠉⠞⠫" }, { "input": "prospecting", "output": "â â —â •â Žâ â ‘⠉⠞⠬" }, { "input": "prospective", "output": "â â —â •â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "prospector", "output": "â â —â •â Žâ â ‘⠉⠞⠕⠗" }, { "input": "prospectors", "output": "â â —â •â Žâ â ‘⠉⠞⠕⠗⠎" }, { "input": "prospects", "output": "â â —â •â Žâ â ‘⠉⠞⠎" }, { "input": "prospectus", "output": "â â —â •â Žâ â ‘⠉⠞⠥⠎" }, { "input": "prospectuses", "output": "â â —â •â Žâ â ‘⠉⠞⠥⠎⠑⠎" }, { "input": "prosper", "output": "â â —â •â Žâ â »" }, { "input": "prospered", "output": "â â —â •â Žâ â »â «" }, { "input": "prospering", "output": "â â —â •â Žâ â »â ¬" }, { "input": "prosperity", "output": "â â —â •â Žâ â »â °â ½" }, { "input": "prosperous", "output": "â â —â •â Žâ â »â ³â Ž" }, { "input": "prosperously", "output": "â â —â •â Žâ â »â ³â Žâ ‡â ½" }, { "input": "prospers", "output": "â â —â •â Žâ â »â Ž" }, { "input": "prostate", "output": "â â —â •â Œâ â žâ ‘" }, { "input": "prostates", "output": "â â —â •â Œâ â žâ ‘â Ž" }, { "input": "prostheses", "output": "â â —⠕⠎⠮⠎⠑⠎" }, { "input": "prosthesis", "output": "â â —⠕⠎⠮⠎⠊⠎" }, { "input": "prosthetic", "output": "â â —⠕⠎⠮⠞⠊⠉" }, { "input": "prostitute", "output": "â â —⠕⠌⠊⠞⠥⠞⠑" }, { "input": "prostituted", "output": "â â —⠕⠌⠊⠞⠥⠞⠫" }, { "input": "prostitutes", "output": "â â —⠕⠌⠊⠞⠥⠞⠑⠎" }, { "input": "prostituting", "output": "â â —⠕⠌⠊⠞⠥⠞⠬" }, { "input": "prostitution", "output": "â â —⠕⠌⠊⠞⠥⠰â " }, { "input": "prostrate", "output": "â â —⠕⠌⠗â â žâ ‘" }, { "input": "prostrated", "output": "â â —⠕⠌⠗â â žâ «" }, { "input": "prostrates", "output": "â â —⠕⠌⠗â â žâ ‘â Ž" }, { "input": "prostrating", "output": "â â —⠕⠌⠗â â žâ ¬" }, { "input": "prostration", "output": "â â —⠕⠌⠗â â °â " }, { "input": "prostrations", "output": "â â —⠕⠌⠗â â °â â Ž" }, { "input": "prosy", "output": "â â —â •â Žâ ½" }, { "input": "protagonist", "output": "â â —â •â žâ â ›â •â â Šâ Œ" }, { "input": "protagonists", "output": "â â —â •â žâ â ›â •â â Šâ Œâ Ž" }, { "input": "protean", "output": "â â —â •â žâ ‚â " }, { "input": "protect", "output": "â â —⠕⠞⠑⠉⠞" }, { "input": "protected", "output": "â â —⠕⠞⠑⠉⠞⠫" }, { "input": "protecting", "output": "â â —⠕⠞⠑⠉⠞⠬" }, { "input": "protection", "output": "â â —⠕⠞⠑⠉⠰â " }, { "input": "protections", "output": "â â —⠕⠞⠑⠉⠰â â Ž" }, { "input": "protective", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑" }, { "input": "protectively", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "protectiveness", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "protector", "output": "â â —⠕⠞⠑⠉⠞⠕⠗" }, { "input": "protectorate", "output": "â â —⠕⠞⠑⠉⠞⠕⠗â â žâ ‘" }, { "input": "protectorates", "output": "â â —⠕⠞⠑⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "protectors", "output": "â â —⠕⠞⠑⠉⠞⠕⠗⠎" }, { "input": "protects", "output": "â â —⠕⠞⠑⠉⠞⠎" }, { "input": "protein", "output": "â â —â •â žâ ‘â ”" }, { "input": "proteins", "output": "â â —⠕⠞⠑⠔⠎" }, { "input": "protest", "output": "â â —â •â žâ ‘â Œ" }, { "input": "protestant", "output": "â â —â •â žâ ‘â Œâ â â ž" }, { "input": "protestants", "output": "â â —â •â žâ ‘â Œâ â â žâ Ž" }, { "input": "protestation", "output": "â â —â •â žâ ‘â Œâ â °â " }, { "input": "protestations", "output": "â â —â •â žâ ‘â Œâ â °â â Ž" }, { "input": "protested", "output": "â â —⠕⠞⠑⠌⠫" }, { "input": "protester", "output": "â â —⠕⠞⠑⠌⠻" }, { "input": "protesters", "output": "â â —⠕⠞⠑⠌⠻⠎" }, { "input": "protesting", "output": "â â —⠕⠞⠑⠌⠬" }, { "input": "protestor", "output": "â â —⠕⠞⠑⠌⠕⠗" }, { "input": "protestors", "output": "â â —⠕⠞⠑⠌⠕⠗⠎" }, { "input": "protests", "output": "â â —⠕⠞⠑⠌⠎" }, { "input": "protocol", "output": "â â —⠕⠞⠕⠉⠕⠇" }, { "input": "protocols", "output": "â â —⠕⠞⠕⠉⠕⠇⠎" }, { "input": "proton", "output": "â â —â •â žâ •â " }, { "input": "protons", "output": "â â —â •â žâ •â â Ž" }, { "input": "protoplasm", "output": "â â —â •â žâ •â â ‡â â Žâ " }, { "input": "protoplasmic", "output": "â â —â •â žâ •â â ‡â â Žâ â Šâ ‰" }, { "input": "prototype", "output": "â â —â •â žâ •â žâ ½â â ‘" }, { "input": "prototypes", "output": "â â —â •â žâ •â žâ ½â â ‘â Ž" }, { "input": "prototyping", "output": "â â —â •â žâ •â žâ ½â â ¬" }, { "input": "protozoa", "output": "â â —⠕⠞⠕⠵⠕â " }, { "input": "protozoan", "output": "â â —⠕⠞⠕⠵⠕â â " }, { "input": "protozoans", "output": "â â —⠕⠞⠕⠵⠕â â â Ž" }, { "input": "protozoon", "output": "â â —⠕⠞⠕⠵⠕⠕â " }, { "input": "protract", "output": "â â —â •â žâ —â â ‰â ž" }, { "input": "protracted", "output": "â â —â •â žâ —â â ‰â žâ «" }, { "input": "protracting", "output": "â â —â •â žâ —â â ‰â žâ ¬" }, { "input": "protraction", "output": "â â —â •â žâ —â â ‰â °â " }, { "input": "protractor", "output": "â â —â •â žâ —â â ‰â žâ •â —" }, { "input": "protractors", "output": "â â —â •â žâ —â â ‰â žâ •â —â Ž" }, { "input": "protracts", "output": "â â —â •â žâ —â â ‰â žâ Ž" }, { "input": "protrude", "output": "â â —⠕⠞⠗⠥⠙⠑" }, { "input": "protruded", "output": "â â —⠕⠞⠗⠥⠙⠫" }, { "input": "protrudes", "output": "â â —⠕⠞⠗⠥⠙⠑⠎" }, { "input": "protruding", "output": "â â —⠕⠞⠗⠥⠙⠬" }, { "input": "protrusion", "output": "â â —⠕⠞⠗⠥⠨â " }, { "input": "protrusions", "output": "â â —⠕⠞⠗⠥⠨â â Ž" }, { "input": "protuberance", "output": "â â —⠕⠞⠥⠃⠻⠨⠑" }, { "input": "protuberances", "output": "â â —⠕⠞⠥⠃⠻⠨⠑⠎" }, { "input": "protuberant", "output": "â â —⠕⠞⠥⠃⠻â â â ž" }, { "input": "protégé", "output": "â â —⠕⠞⠠⠘⠻â â ˜â ‰â ›â  â ˜â »â â ˜â ‰" }, { "input": "protégés", "output": "â â —⠕⠞⠠⠘⠻â â ˜â ‰â ›â  â ˜â »â â ˜â ‰â Ž" }, { "input": "proud", "output": "â â —⠳⠙" }, { "input": "prouder", "output": "â â —⠳⠙⠻" }, { "input": "proudest", "output": "â â —⠳⠙⠑⠌" }, { "input": "proudly", "output": "â â —⠳⠙⠇⠽" }, { "input": "provable", "output": "â â —â •â §â â ƒâ ‡â ‘" }, { "input": "provably", "output": "â â —â •â §â â ƒâ ‡â ½" }, { "input": "prove", "output": "â â —â •â §â ‘" }, { "input": "proved", "output": "â â —â •â §â «" }, { "input": "proven", "output": "â â —â •â §â ¢" }, { "input": "provenance", "output": "â â —⠕⠧⠢⠨⠑" }, { "input": "provender", "output": "â â —⠕⠧⠢⠙⠻" }, { "input": "proverb", "output": "â â —⠕⠧⠻⠃" }, { "input": "proverbial", "output": "â â —⠕⠧⠻⠃⠊â â ‡" }, { "input": "proverbially", "output": "â â —⠕⠧⠻⠃⠊â â ‡â ‡â ½" }, { "input": "proverbs", "output": "â â —⠕⠧⠻⠃⠎" }, { "input": "proves", "output": "â â —â •â §â ‘â Ž" }, { "input": "provide", "output": "â â —⠕⠧⠊⠙⠑" }, { "input": "provided", "output": "â â —⠕⠧⠊⠙⠫" }, { "input": "providence", "output": "â â —⠕⠧⠊⠙⠰⠑" }, { "input": "provident", "output": "â â —⠕⠧⠊⠙⠢⠞" }, { "input": "providential", "output": "â â —⠕⠧⠊⠙⠢⠞⠊â â ‡" }, { "input": "providentially", "output": "â â —⠕⠧⠊⠙⠢⠞⠊â â ‡â ‡â ½" }, { "input": "providently", "output": "â â —⠕⠧⠊⠙⠢⠞⠇⠽" }, { "input": "provider", "output": "â â —⠕⠧⠊⠙⠻" }, { "input": "providers", "output": "â â —⠕⠧⠊⠙⠻⠎" }, { "input": "provides", "output": "â â —⠕⠧⠊⠙⠑⠎" }, { "input": "providing", "output": "â â —⠕⠧⠊⠙⠬" }, { "input": "province", "output": "â â —⠕⠧⠔⠉⠑" }, { "input": "provinces", "output": "â â —⠕⠧⠔⠉⠑⠎" }, { "input": "provincial", "output": "â â —⠕⠧⠔⠉⠊â â ‡" }, { "input": "provincialism", "output": "â â —⠕⠧⠔⠉⠊â â ‡â Šâ Žâ " }, { "input": "provincials", "output": "â â —⠕⠧⠔⠉⠊â â ‡â Ž" }, { "input": "proving", "output": "â â —â •â §â ¬" }, { "input": "provision", "output": "â â —â •â §â Šâ ¨â " }, { "input": "provisional", "output": "â â —â •â §â Šâ ¨â â â ‡" }, { "input": "provisionally", "output": "â â —â •â §â Šâ ¨â â â ‡â ‡â ½" }, { "input": "provisioned", "output": "â â —â •â §â Šâ ¨â â «" }, { "input": "provisioning", "output": "â â —â •â §â Šâ ¨â â ¬" }, { "input": "provisions", "output": "â â —â •â §â Šâ ¨â â Ž" }, { "input": "proviso", "output": "â â —â •â §â Šâ Žâ •" }, { "input": "provisoes", "output": "â â —â •â §â Šâ Žâ •â ‘â Ž" }, { "input": "provisos", "output": "â â —â •â §â Šâ Žâ •â Ž" }, { "input": "provocation", "output": "â â —â •â §â •â ‰â â °â " }, { "input": "provocations", "output": "â â —â •â §â •â ‰â â °â â Ž" }, { "input": "provocative", "output": "â â —â •â §â •â ‰â â žâ Šâ §â ‘" }, { "input": "provocatively", "output": "â â —â •â §â •â ‰â â žâ Šâ §â ‘⠇⠽" }, { "input": "provoke", "output": "â â —â •â §â •â …â ‘" }, { "input": "provoked", "output": "â â —â •â §â •â …â «" }, { "input": "provokes", "output": "â â —â •â §â •â …â ‘â Ž" }, { "input": "provoking", "output": "â â —â •â §â •â …â ¬" }, { "input": "provost", "output": "â â —â •â §â •â Œ" }, { "input": "provosts", "output": "â â —⠕⠧⠕⠌⠎" }, { "input": "prow", "output": "â â —â ª" }, { "input": "prowess", "output": "â â —⠪⠑⠎⠎" }, { "input": "prowl", "output": "â â —⠪⠇" }, { "input": "prowled", "output": "â â —⠪⠇⠫" }, { "input": "prowler", "output": "â â —⠪⠇⠻" }, { "input": "prowlers", "output": "â â —⠪⠇⠻⠎" }, { "input": "prowling", "output": "â â —⠪⠇⠬" }, { "input": "prowls", "output": "â â —⠪⠇⠎" }, { "input": "prows", "output": "â â —⠪⠎" }, { "input": "proxies", "output": "â â —â •â ­â Šâ ‘â Ž" }, { "input": "proximity", "output": "â â —â •â ­â Šâ â °â ½" }, { "input": "proxy", "output": "â â —â •â ­â ½" }, { "input": "prude", "output": "â â —⠥⠙⠑" }, { "input": "prudence", "output": "â â —⠥⠙⠰⠑" }, { "input": "prudent", "output": "â â —⠥⠙⠢⠞" }, { "input": "prudential", "output": "â â —⠥⠙⠢⠞⠊â â ‡" }, { "input": "prudently", "output": "â â —⠥⠙⠢⠞⠇⠽" }, { "input": "prudery", "output": "â â —⠥⠙⠻⠽" }, { "input": "prudes", "output": "â â —⠥⠙⠑⠎" }, { "input": "prudish", "output": "â â —⠥⠙⠊⠩" }, { "input": "prudishly", "output": "â â —⠥⠙⠊⠩⠇⠽" }, { "input": "prune", "output": "â â —â ¥â â ‘" }, { "input": "pruned", "output": "â â —â ¥â â «" }, { "input": "prunes", "output": "â â —â ¥â â ‘â Ž" }, { "input": "pruning", "output": "â â —â ¥â â ¬" }, { "input": "prurience", "output": "â â —⠥⠗⠊⠰⠑" }, { "input": "prurient", "output": "â â —⠥⠗⠊⠢⠞" }, { "input": "pry", "output": "â â —â ½" }, { "input": "prying", "output": "â â —⠽⠬" }, { "input": "précis", "output": "â â —⠠⠘⠻â â ˜â ‰â ‰â Šâ Ž" }, { "input": "précised", "output": "â â —⠠⠘⠻â â ˜â ‰â ‰â Šâ Žâ «" }, { "input": "précising", "output": "â â —⠠⠘⠻â â ˜â ‰â ‰â Šâ Žâ ¬" }, { "input": "psalm", "output": "â â Žâ â ‡â " }, { "input": "psalmist", "output": "â â Žâ â ‡â â Šâ Œ" }, { "input": "psalmists", "output": "â â Žâ â ‡â â Šâ Œâ Ž" }, { "input": "psalms", "output": "â â Žâ â ‡â â Ž" }, { "input": "pseudo", "output": "â â Žâ ‘⠥⠙⠕" }, { "input": "pseudonym", "output": "â â Žâ ‘⠥⠙⠕â â ½â " }, { "input": "pseudonyms", "output": "â â Žâ ‘⠥⠙⠕â â ½â â Ž" }, { "input": "pshaw", "output": "â â ©â â º" }, { "input": "pshaws", "output": "â â ©â â ºâ Ž" }, { "input": "psoriasis", "output": "â â Žâ •â —â Šâ â Žâ Šâ Ž" }, { "input": "psst", "output": "â â Žâ Œ" }, { "input": "psych", "output": "â â Žâ ½â ¡" }, { "input": "psyche", "output": "â â Žâ ½â ¡â ‘" }, { "input": "psyched", "output": "â â Žâ ½â ¡â «" }, { "input": "psychedelic", "output": "â â Žâ ½â ¡â «â ‘⠇⠊⠉" }, { "input": "psychedelics", "output": "â â Žâ ½â ¡â «â ‘⠇⠊⠉⠎" }, { "input": "psyches", "output": "â â Žâ ½â ¡â ‘â Ž" }, { "input": "psychiatric", "output": "â â Žâ ½â ¡â Šâ â žâ —â Šâ ‰" }, { "input": "psychiatrist", "output": "â â Žâ ½â ¡â Šâ â žâ —â Šâ Œ" }, { "input": "psychiatrists", "output": "â â Žâ ½â ¡â Šâ â žâ —⠊⠌⠎" }, { "input": "psychiatry", "output": "â â Žâ ½â ¡â Šâ â žâ —â ½" }, { "input": "psychic", "output": "â â Žâ ½â ¡â Šâ ‰" }, { "input": "psychical", "output": "â â Žâ ½â ¡â Šâ ‰â â ‡" }, { "input": "psychically", "output": "â â Žâ ½â ¡â Šâ ‰â â ‡â ‡â ½" }, { "input": "psychics", "output": "â â Žâ ½â ¡â Šâ ‰â Ž" }, { "input": "psyching", "output": "â â Žâ ½â ¡â ¬" }, { "input": "psycho", "output": "â â Žâ ½â ¡â •" }, { "input": "psychoanalysis", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Žâ Šâ Ž" }, { "input": "psychoanalyst", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Œ" }, { "input": "psychoanalysts", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Œâ Ž" }, { "input": "psychoanalyze", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ ‘" }, { "input": "psychoanalyzed", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ «" }, { "input": "psychoanalyzes", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ ‘â Ž" }, { "input": "psychoanalyzing", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ ¬" }, { "input": "psychobabble", "output": "â â Žâ ½â ¡â •â ƒâ â †â ‡â ‘" }, { "input": "psychogenic", "output": "â â Žâ ½â ¡â •⠛⠢⠊⠉" }, { "input": "psychokinesis", "output": "â â Žâ ½â ¡â •⠅⠔⠑⠎⠊⠎" }, { "input": "psychological", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "psychologically", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "psychologies", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠑⠎" }, { "input": "psychologist", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠌" }, { "input": "psychologists", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠌⠎" }, { "input": "psychology", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠽" }, { "input": "psychopath", "output": "â â Žâ ½â ¡â •â â â ¹" }, { "input": "psychopathic", "output": "â â Žâ ½â ¡â •â â â ¹â Šâ ‰" }, { "input": "psychopaths", "output": "â â Žâ ½â ¡â •â â â ¹â Ž" }, { "input": "psychos", "output": "â â Žâ ½â ¡â •â Ž" }, { "input": "psychoses", "output": "â â Žâ ½â ¡â •â Žâ ‘â Ž" }, { "input": "psychosis", "output": "â â Žâ ½â ¡â •â Žâ Šâ Ž" }, { "input": "psychosomatic", "output": "â â Žâ ½â ¡â •â Žâ •â â â žâ Šâ ‰" }, { "input": "psychotherapies", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ ‘â Ž" }, { "input": "psychotherapist", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ Œ" }, { "input": "psychotherapists", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ Œâ Ž" }, { "input": "psychotherapy", "output": "â â Žâ ½â ¡â •⠮⠗â â â ½" }, { "input": "psychotic", "output": "â â Žâ ½â ¡â •â žâ Šâ ‰" }, { "input": "psychotics", "output": "â â Žâ ½â ¡â •⠞⠊⠉⠎" }, { "input": "psychs", "output": "â â Žâ ½â ¡â Ž" }, { "input": "ptarmigan", "output": "â â žâ œâ â Šâ ›â â " }, { "input": "ptarmigans", "output": "â â žâ œâ â Šâ ›â â â Ž" }, { "input": "pterodactyl", "output": "â â žâ »â •â ™â â ‰â žâ ½â ‡" }, { "input": "pterodactyls", "output": "â â žâ »â •â ™â â ‰â žâ ½â ‡â Ž" }, { "input": "ptomaine", "output": "â â žâ •â â â ”â ‘" }, { "input": "ptomaines", "output": "â â žâ •â â â ”â ‘â Ž" }, { "input": "pub", "output": "â â ¥â ƒ" }, { "input": "puberty", "output": "â â ¥â ƒâ »â žâ ½" }, { "input": "pubescence", "output": "â â ¥â ƒâ ‘⠎⠉⠰⠑" }, { "input": "pubescent", "output": "â â ¥â ƒâ ‘⠎⠉⠢⠞" }, { "input": "pubic", "output": "â â ¥â ƒâ Šâ ‰" }, { "input": "public", "output": "â â ¥â ƒâ ‡â Šâ ‰" }, { "input": "publican", "output": "â â ¥â ƒâ ‡â Šâ ‰â â " }, { "input": "publicans", "output": "â â ¥â ƒâ ‡â Šâ ‰â â â Ž" }, { "input": "publication", "output": "â â ¥â ƒâ ‡â Šâ ‰â â °â " }, { "input": "publications", "output": "â â ¥â ƒâ ‡â Šâ ‰â â °â â Ž" }, { "input": "publicist", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ Œ" }, { "input": "publicists", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ Œâ Ž" }, { "input": "publicity", "output": "â â ¥â ƒâ ‡â Šâ ‰â °â ½" }, { "input": "publicize", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ ‘" }, { "input": "publicized", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ «" }, { "input": "publicizes", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "publicizing", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ ¬" }, { "input": "publicly", "output": "â â ¥â ƒâ ‡â Šâ ‰â ‡â ½" }, { "input": "publish", "output": "â â ¥â ƒâ ‡â Šâ ©" }, { "input": "publishable", "output": "â â ¥â ƒâ ‡â Šâ ©â â ƒâ ‡â ‘" }, { "input": "published", "output": "â â ¥â ƒâ ‡â Šâ ©â «" }, { "input": "publisher", "output": "â â ¥â ƒâ ‡â Šâ ©â »" }, { "input": "publishers", "output": "â â ¥â ƒâ ‡â Šâ ©â »â Ž" }, { "input": "publishes", "output": "â â ¥â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "publishing", "output": "â â ¥â ƒâ ‡â Šâ ©â ¬" }, { "input": "pubs", "output": "â â ¥â ƒâ Ž" }, { "input": "puck", "output": "â â ¥â ‰â …" }, { "input": "pucker", "output": "â â ¥â ‰â …â »" }, { "input": "puckered", "output": "â â ¥â ‰â …⠻⠫" }, { "input": "puckering", "output": "â â ¥â ‰â …⠻⠬" }, { "input": "puckers", "output": "â â ¥â ‰â …⠻⠎" }, { "input": "puckish", "output": "â â ¥â ‰â …â Šâ ©" }, { "input": "pucks", "output": "â â ¥â ‰â …â Ž" }, { "input": "pudding", "output": "â â ¥â ™â ™â ¬" }, { "input": "puddings", "output": "â â ¥â ™â ™â ¬â Ž" }, { "input": "puddle", "output": "â â ¥â ™â ™â ‡â ‘" }, { "input": "puddled", "output": "â â ¥â ™â ™â ‡â «" }, { "input": "puddles", "output": "â â ¥â ™â ™â ‡â ‘â Ž" }, { "input": "puddling", "output": "â â ¥â ™â ™â ‡â ¬" }, { "input": "pudgier", "output": "â â ¥â ™â ›â Šâ »" }, { "input": "pudgiest", "output": "â â ¥â ™â ›â Šâ ‘â Œ" }, { "input": "pudgy", "output": "â â ¥â ™â ›â ½" }, { "input": "pueblo", "output": "â â ¥â ‘⠃⠇⠕" }, { "input": "pueblos", "output": "â â ¥â ‘⠃⠇⠕⠎" }, { "input": "puerile", "output": "â â ¥â »â Šâ ‡â ‘" }, { "input": "puerility", "output": "â â ¥â »â Šâ ‡â °â ½" }, { "input": "puff", "output": "â â ¥â ‹â ‹" }, { "input": "puffball", "output": "â â ¥â –â ƒâ â ‡â ‡" }, { "input": "puffballs", "output": "â â ¥â –â ƒâ â ‡â ‡â Ž" }, { "input": "puffed", "output": "â â ¥â –â «" }, { "input": "puffer", "output": "â â ¥â –â »" }, { "input": "puffier", "output": "â â ¥â –â Šâ »" }, { "input": "puffiest", "output": "â â ¥â –â Šâ ‘â Œ" }, { "input": "puffin", "output": "â â ¥â –â ”" }, { "input": "puffiness", "output": "â â ¥â –â Šâ °â Ž" }, { "input": "puffing", "output": "â â ¥â –â ¬" }, { "input": "puffins", "output": "â â ¥â –⠔⠎" }, { "input": "puffs", "output": "â â ¥â –â Ž" }, { "input": "puffy", "output": "â â ¥â –â ½" }, { "input": "pug", "output": "â â ¥â ›" }, { "input": "pugilism", "output": "â â ¥â ›â Šâ ‡â Šâ Žâ " }, { "input": "pugilist", "output": "â â ¥â ›â Šâ ‡â Šâ Œ" }, { "input": "pugilistic", "output": "â â ¥â ›â Šâ ‡â Šâ Œâ Šâ ‰" }, { "input": "pugilists", "output": "â â ¥â ›â Šâ ‡â Šâ Œâ Ž" }, { "input": "pugnacious", "output": "â â ¥â ›â â â ‰â Šâ ³â Ž" }, { "input": "pugnaciously", "output": "â â ¥â ›â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "pugnacity", "output": "â â ¥â ›â â â ‰â °â ½" }, { "input": "pugs", "output": "â â ¥â ›â Ž" }, { "input": "puke", "output": "â â ¥â …â ‘" }, { "input": "puked", "output": "â â ¥â …â «" }, { "input": "pukes", "output": "â â ¥â …â ‘â Ž" }, { "input": "puking", "output": "â â ¥â …â ¬" }, { "input": "pulchritude", "output": "â â ¥â ‡â ¡â —⠊⠞⠥⠙⠑" }, { "input": "pull", "output": "â â ¥â ‡â ‡" }, { "input": "pullback", "output": "â â ¥â ‡â ‡â ƒâ â ‰â …" }, { "input": "pullbacks", "output": "â â ¥â ‡â ‡â ƒâ â ‰â …â Ž" }, { "input": "pulled", "output": "â â ¥â ‡â ‡â «" }, { "input": "puller", "output": "â â ¥â ‡â ‡â »" }, { "input": "pullers", "output": "â â ¥â ‡â ‡â »â Ž" }, { "input": "pullet", "output": "â â ¥â ‡â ‡â ‘â ž" }, { "input": "pullets", "output": "â â ¥â ‡â ‡â ‘â žâ Ž" }, { "input": "pulley", "output": "â â ¥â ‡â ‡â ‘â ½" }, { "input": "pulleys", "output": "â â ¥â ‡â ‡â ‘⠽⠎" }, { "input": "pulling", "output": "â â ¥â ‡â ‡â ¬" }, { "input": "pullout", "output": "â â ¥â ‡â ‡â ³â ž" }, { "input": "pullouts", "output": "â â ¥â ‡â ‡â ³â žâ Ž" }, { "input": "pullover", "output": "â â ¥â ‡â ‡â •â §â »" }, { "input": "pullovers", "output": "â â ¥â ‡â ‡â •⠧⠻⠎" }, { "input": "pulls", "output": "â â ¥â ‡â ‡â Ž" }, { "input": "pulmonary", "output": "â â ¥â ‡â â •â â œâ ½" }, { "input": "pulp", "output": "â â ¥â ‡â " }, { "input": "pulped", "output": "â â ¥â ‡â â «" }, { "input": "pulpier", "output": "â â ¥â ‡â â Šâ »" }, { "input": "pulpiest", "output": "â â ¥â ‡â â Šâ ‘â Œ" }, { "input": "pulping", "output": "â â ¥â ‡â â ¬" }, { "input": "pulpit", "output": "â â ¥â ‡â â Šâ ž" }, { "input": "pulpits", "output": "â â ¥â ‡â â Šâ žâ Ž" }, { "input": "pulps", "output": "â â ¥â ‡â â Ž" }, { "input": "pulpy", "output": "â â ¥â ‡â â ½" }, { "input": "pulsar", "output": "â â ¥â ‡â Žâ œ" }, { "input": "pulsars", "output": "â â ¥â ‡â Žâ œâ Ž" }, { "input": "pulsate", "output": "â â ¥â ‡â Žâ â žâ ‘" }, { "input": "pulsated", "output": "â â ¥â ‡â Žâ â žâ «" }, { "input": "pulsates", "output": "â â ¥â ‡â Žâ â žâ ‘â Ž" }, { "input": "pulsating", "output": "â â ¥â ‡â Žâ â žâ ¬" }, { "input": "pulsation", "output": "â â ¥â ‡â Žâ â °â " }, { "input": "pulsations", "output": "â â ¥â ‡â Žâ â °â â Ž" }, { "input": "pulse", "output": "â â ¥â ‡â Žâ ‘" }, { "input": "pulsed", "output": "â â ¥â ‡â Žâ «" }, { "input": "pulses", "output": "â â ¥â ‡â Žâ ‘â Ž" }, { "input": "pulsing", "output": "â â ¥â ‡â Žâ ¬" }, { "input": "pulverization", "output": "â â ¥â ‡â §â »â Šâ µâ â °â " }, { "input": "pulverize", "output": "â â ¥â ‡â §â »â Šâ µâ ‘" }, { "input": "pulverized", "output": "â â ¥â ‡â §â »â Šâ µâ «" }, { "input": "pulverizes", "output": "â â ¥â ‡â §â »â Šâ µâ ‘â Ž" }, { "input": "pulverizing", "output": "â â ¥â ‡â §â »â Šâ µâ ¬" }, { "input": "puma", "output": "â â ¥â â " }, { "input": "pumas", "output": "â â ¥â â â Ž" }, { "input": "pumice", "output": "â â ¥â â Šâ ‰â ‘" }, { "input": "pumices", "output": "â â ¥â â Šâ ‰â ‘â Ž" }, { "input": "pummel", "output": "â â ¥â â â ‘â ‡" }, { "input": "pummeled", "output": "â â ¥â â â ‘⠇⠫" }, { "input": "pummeling", "output": "â â ¥â â â ‘⠇⠬" }, { "input": "pummelled", "output": "â â ¥â â â ‘⠇⠇⠫" }, { "input": "pummelling", "output": "â â ¥â â â ‘⠇⠇⠬" }, { "input": "pummels", "output": "â â ¥â â â ‘⠇⠎" }, { "input": "pump", "output": "â â ¥â â " }, { "input": "pumped", "output": "â â ¥â â â «" }, { "input": "pumpernickel", "output": "â â ¥â â â »â â Šâ ‰â …â ‘â ‡" }, { "input": "pumping", "output": "â â ¥â â â ¬" }, { "input": "pumpkin", "output": "â â ¥â â â …â ”" }, { "input": "pumpkins", "output": "â â ¥â â â …⠔⠎" }, { "input": "pumps", "output": "â â ¥â â â Ž" }, { "input": "pun", "output": "â â ¥â " }, { "input": "punch", "output": "â â ¥â â ¡" }, { "input": "punched", "output": "â â ¥â â ¡â «" }, { "input": "punches", "output": "â â ¥â â ¡â ‘â Ž" }, { "input": "punchier", "output": "â â ¥â â ¡â Šâ »" }, { "input": "punchiest", "output": "â â ¥â â ¡â Šâ ‘â Œ" }, { "input": "punching", "output": "â â ¥â â ¡â ¬" }, { "input": "punchline", "output": "â â ¥â â ¡â ‡â ”â ‘" }, { "input": "punchy", "output": "â â ¥â â ¡â ½" }, { "input": "punctilious", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ ³â Ž" }, { "input": "punctiliously", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ ³â Žâ ‡â ½" }, { "input": "punctual", "output": "â â ¥â â ‰â žâ ¥â â ‡" }, { "input": "punctuality", "output": "â â ¥â â ‰â žâ ¥â â ‡â °â ½" }, { "input": "punctually", "output": "â â ¥â â ‰â žâ ¥â â ‡â ‡â ½" }, { "input": "punctuate", "output": "â â ¥â â ‰â žâ ¥â â žâ ‘" }, { "input": "punctuated", "output": "â â ¥â â ‰â žâ ¥â â žâ «" }, { "input": "punctuates", "output": "â â ¥â â ‰â žâ ¥â â žâ ‘â Ž" }, { "input": "punctuating", "output": "â â ¥â â ‰â žâ ¥â â žâ ¬" }, { "input": "punctuation", "output": "â â ¥â â ‰â žâ ¥â â °â " }, { "input": "puncture", "output": "â â ¥â â ‰â žâ ¥â —â ‘" }, { "input": "punctured", "output": "â â ¥â â ‰â žâ ¥â —â «" }, { "input": "punctures", "output": "â â ¥â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "puncturing", "output": "â â ¥â â ‰â žâ ¥â —â ¬" }, { "input": "pundit", "output": "â â ¥â â ™â Šâ ž" }, { "input": "pundits", "output": "â â ¥â â ™â Šâ žâ Ž" }, { "input": "pungency", "output": "â â ¥â â ›â ¢â ‰â ½" }, { "input": "pungent", "output": "â â ¥â â ›â ¢â ž" }, { "input": "pungently", "output": "â â ¥â â ›â ¢â žâ ‡â ½" }, { "input": "punier", "output": "â â ¥â â Šâ »" }, { "input": "puniest", "output": "â â ¥â â Šâ ‘â Œ" }, { "input": "punish", "output": "â â ¥â â Šâ ©" }, { "input": "punishable", "output": "â â ¥â â Šâ ©â â ƒâ ‡â ‘" }, { "input": "punished", "output": "â â ¥â â Šâ ©â «" }, { "input": "punishes", "output": "â â ¥â â Šâ ©â ‘â Ž" }, { "input": "punishing", "output": "â â ¥â â Šâ ©â ¬" }, { "input": "punishment", "output": "â â ¥â â Šâ ©â °â ž" }, { "input": "punishments", "output": "â â ¥â â Šâ ©â °â žâ Ž" }, { "input": "punitive", "output": "â â ¥â â Šâ žâ Šâ §â ‘" }, { "input": "punk", "output": "â â ¥â â …" }, { "input": "punker", "output": "â â ¥â â …â »" }, { "input": "punkest", "output": "â â ¥â â …â ‘â Œ" }, { "input": "punks", "output": "â â ¥â â …â Ž" }, { "input": "punned", "output": "â â ¥â â â «" }, { "input": "punning", "output": "â â ¥â â â ¬" }, { "input": "puns", "output": "â â ¥â â Ž" }, { "input": "punster", "output": "â â ¥â â Œâ »" }, { "input": "punsters", "output": "â â ¥â â Œâ »â Ž" }, { "input": "punt", "output": "â â ¥â â ž" }, { "input": "punted", "output": "â â ¥â â žâ «" }, { "input": "punter", "output": "â â ¥â â žâ »" }, { "input": "punters", "output": "â â ¥â â žâ »â Ž" }, { "input": "punting", "output": "â â ¥â â žâ ¬" }, { "input": "punts", "output": "â â ¥â â žâ Ž" }, { "input": "puny", "output": "â â ¥â â ½" }, { "input": "pup", "output": "â â ¥â " }, { "input": "pupa", "output": "â â ¥â â " }, { "input": "pupae", "output": "â â ¥â â â ‘" }, { "input": "pupal", "output": "â â ¥â â â ‡" }, { "input": "pupas", "output": "â â ¥â â â Ž" }, { "input": "pupil", "output": "â â ¥â â Šâ ‡" }, { "input": "pupils", "output": "â â ¥â â Šâ ‡â Ž" }, { "input": "pupped", "output": "â â ¥â â â «" }, { "input": "puppet", "output": "â â ¥â â â ‘â ž" }, { "input": "puppeteer", "output": "â â ¥â â â ‘â žâ ‘â »" }, { "input": "puppeteers", "output": "â â ¥â â â ‘⠞⠑⠻⠎" }, { "input": "puppetry", "output": "â â ¥â â â ‘â žâ —â ½" }, { "input": "puppets", "output": "â â ¥â â â ‘â žâ Ž" }, { "input": "puppies", "output": "â â ¥â â â Šâ ‘â Ž" }, { "input": "pupping", "output": "â â ¥â â â ¬" }, { "input": "puppy", "output": "â â ¥â â â ½" }, { "input": "pups", "output": "â â ¥â â Ž" }, { "input": "purblind", "output": "â â ¥â —⠃⠇" }, { "input": "purchasable", "output": "â â ¥â —â ¡â â Žâ â ƒâ ‡â ‘" }, { "input": "purchase", "output": "â â ¥â —â ¡â â Žâ ‘" }, { "input": "purchased", "output": "â â ¥â —â ¡â â Žâ «" }, { "input": "purchaser", "output": "â â ¥â —â ¡â â Žâ »" }, { "input": "purchasers", "output": "â â ¥â —â ¡â â Žâ »â Ž" }, { "input": "purchases", "output": "â â ¥â —â ¡â â Žâ ‘â Ž" }, { "input": "purchasing", "output": "â â ¥â —â ¡â â Žâ ¬" }, { "input": "pure", "output": "â â ¥â —â ‘" }, { "input": "purebred", "output": "â â ¥â —⠑⠃⠗⠫" }, { "input": "purebreds", "output": "â â ¥â —⠑⠃⠗⠫⠎" }, { "input": "puree", "output": "â â ¥â —â ‘â ‘" }, { "input": "pureed", "output": "â â ¥â —â ‘â «" }, { "input": "pureeing", "output": "â â ¥â —â ‘â ‘â ¬" }, { "input": "purees", "output": "â â ¥â —â ‘â ‘â Ž" }, { "input": "purely", "output": "â â ¥â —⠑⠇⠽" }, { "input": "pureness", "output": "â â ¥â —â ‘â °â Ž" }, { "input": "purer", "output": "â â ¥â —â »" }, { "input": "purest", "output": "â â ¥â —â ‘â Œ" }, { "input": "purgative", "output": "â â ¥â —â ›â â žâ Šâ §â ‘" }, { "input": "purgatives", "output": "â â ¥â —â ›â â žâ Šâ §â ‘â Ž" }, { "input": "purgatorial", "output": "â â ¥â —â ›â â žâ •â —â Šâ â ‡" }, { "input": "purgatories", "output": "â â ¥â —â ›â â žâ •â —â Šâ ‘â Ž" }, { "input": "purgatory", "output": "â â ¥â —â ›â â žâ •â —â ½" }, { "input": "purge", "output": "â â ¥â —⠛⠑" }, { "input": "purged", "output": "â â ¥â —⠛⠫" }, { "input": "purges", "output": "â â ¥â —⠛⠑⠎" }, { "input": "purging", "output": "â â ¥â —⠛⠬" }, { "input": "purification", "output": "â â ¥â —â Šâ ‹â Šâ ‰â â °â " }, { "input": "purified", "output": "â â ¥â —â Šâ ‹â Šâ «" }, { "input": "purifier", "output": "â â ¥â —â Šâ ‹â Šâ »" }, { "input": "purifiers", "output": "â â ¥â —⠊⠋⠊⠻⠎" }, { "input": "purifies", "output": "â â ¥â —â Šâ ‹â Šâ ‘â Ž" }, { "input": "purify", "output": "â â ¥â —â Šâ ‹â ½" }, { "input": "purifying", "output": "â â ¥â —⠊⠋⠽⠬" }, { "input": "purism", "output": "â â ¥â —â Šâ Žâ " }, { "input": "purist", "output": "â â ¥â —â Šâ Œ" }, { "input": "purists", "output": "â â ¥â —⠊⠌⠎" }, { "input": "puritan", "output": "â â ¥â —â Šâ žâ â " }, { "input": "puritanical", "output": "â â ¥â —â Šâ žâ â â Šâ ‰â â ‡" }, { "input": "puritanically", "output": "â â ¥â —â Šâ žâ â â Šâ ‰â â ‡â ‡â ½" }, { "input": "puritanism", "output": "â â ¥â —â Šâ žâ â â Šâ Žâ " }, { "input": "puritans", "output": "â â ¥â —â Šâ žâ â â Ž" }, { "input": "purity", "output": "â â ¥â —â °â ½" }, { "input": "purl", "output": "â â ¥â —â ‡" }, { "input": "purled", "output": "â â ¥â —⠇⠫" }, { "input": "purling", "output": "â â ¥â —⠇⠬" }, { "input": "purloin", "output": "â â ¥â —⠇⠕⠔" }, { "input": "purloined", "output": "â â ¥â —⠇⠕⠔⠫" }, { "input": "purloining", "output": "â â ¥â —⠇⠕⠔⠬" }, { "input": "purloins", "output": "â â ¥â —⠇⠕⠔⠎" }, { "input": "purls", "output": "â â ¥â —⠇⠎" }, { "input": "purple", "output": "â â ¥â —â â ‡â ‘" }, { "input": "purpler", "output": "â â ¥â —â â ‡â »" }, { "input": "purples", "output": "â â ¥â —â â ‡â ‘â Ž" }, { "input": "purplest", "output": "â â ¥â —â â ‡â ‘â Œ" }, { "input": "purplish", "output": "â â ¥â —â â ‡â Šâ ©" }, { "input": "purport", "output": "â â ¥â —â â •â —â ž" }, { "input": "purported", "output": "â â ¥â —â â •â —â žâ «" }, { "input": "purportedly", "output": "â â ¥â —â â •⠗⠞⠫⠇⠽" }, { "input": "purporting", "output": "â â ¥â —â â •â —â žâ ¬" }, { "input": "purports", "output": "â â ¥â —â â •â —â žâ Ž" }, { "input": "purpose", "output": "â â ¥â —â â •â Žâ ‘" }, { "input": "purposed", "output": "â â ¥â —â â •â Žâ «" }, { "input": "purposeful", "output": "â â ¥â —â â •â Žâ ‘â °â ‡" }, { "input": "purposefully", "output": "â â ¥â —â â •⠎⠑⠰⠇⠇⠽" }, { "input": "purposeless", "output": "â â ¥â —â â •⠎⠑⠨⠎" }, { "input": "purposely", "output": "â â ¥â —â â •⠎⠑⠇⠽" }, { "input": "purposes", "output": "â â ¥â —â â •â Žâ ‘â Ž" }, { "input": "purposing", "output": "â â ¥â —â â •â Žâ ¬" }, { "input": "purr", "output": "â â ¥â —â —" }, { "input": "purred", "output": "â â ¥â —â —â «" }, { "input": "purring", "output": "â â ¥â —â —â ¬" }, { "input": "purrs", "output": "â â ¥â —â —â Ž" }, { "input": "purse", "output": "â â ¥â —â Žâ ‘" }, { "input": "pursed", "output": "â â ¥â —â Žâ «" }, { "input": "purser", "output": "â â ¥â —â Žâ »" }, { "input": "pursers", "output": "â â ¥â —⠎⠻⠎" }, { "input": "purses", "output": "â â ¥â —â Žâ ‘â Ž" }, { "input": "pursing", "output": "â â ¥â —â Žâ ¬" }, { "input": "pursuance", "output": "â â ¥â —⠎⠥⠨⠑" }, { "input": "pursuant", "output": "â â ¥â —â Žâ ¥â â â ž" }, { "input": "pursue", "output": "â â ¥â —⠎⠥⠑" }, { "input": "pursued", "output": "â â ¥â —⠎⠥⠫" }, { "input": "pursuer", "output": "â â ¥â —⠎⠥⠻" }, { "input": "pursuers", "output": "â â ¥â —⠎⠥⠻⠎" }, { "input": "pursues", "output": "â â ¥â —⠎⠥⠑⠎" }, { "input": "pursuing", "output": "â â ¥â —⠎⠥⠬" }, { "input": "pursuit", "output": "â â ¥â —⠎⠥⠊⠞" }, { "input": "pursuits", "output": "â â ¥â —⠎⠥⠊⠞⠎" }, { "input": "purulence", "output": "â â ¥â —⠥⠇⠰⠑" }, { "input": "purulent", "output": "â â ¥â —⠥⠇⠢⠞" }, { "input": "purvey", "output": "â â ¥â —â §â ‘â ½" }, { "input": "purveyed", "output": "â â ¥â —⠧⠑⠽⠫" }, { "input": "purveying", "output": "â â ¥â —⠧⠑⠽⠬" }, { "input": "purveyor", "output": "â â ¥â —⠧⠑⠽⠕⠗" }, { "input": "purveyors", "output": "â â ¥â —⠧⠑⠽⠕⠗⠎" }, { "input": "purveys", "output": "â â ¥â —⠧⠑⠽⠎" }, { "input": "purview", "output": "â â ¥â —â §â Šâ ‘â º" }, { "input": "pus", "output": "â â ¥â Ž" }, { "input": "push", "output": "â â ¥â ©" }, { "input": "pushcart", "output": "â â ¥â ©â ‰â œâ ž" }, { "input": "pushcarts", "output": "â â ¥â ©â ‰â œâ žâ Ž" }, { "input": "pushed", "output": "â â ¥â ©â «" }, { "input": "pusher", "output": "â â ¥â ©â »" }, { "input": "pushers", "output": "â â ¥â ©â »â Ž" }, { "input": "pushes", "output": "â â ¥â ©â ‘â Ž" }, { "input": "pushier", "output": "â â ¥â ©â Šâ »" }, { "input": "pushiest", "output": "â â ¥â ©â Šâ ‘â Œ" }, { "input": "pushiness", "output": "â â ¥â ©â Šâ °â Ž" }, { "input": "pushing", "output": "â â ¥â ©â ¬" }, { "input": "pushover", "output": "â â ¥â ©â •â §â »" }, { "input": "pushovers", "output": "â â ¥â ©â •⠧⠻⠎" }, { "input": "pushup", "output": "â â ¥â ©â ¥â " }, { "input": "pushups", "output": "â â ¥â ©â ¥â â Ž" }, { "input": "pushy", "output": "â â ¥â ©â ½" }, { "input": "pusillanimity", "output": "â â ¥â Žâ Šâ ‡â ‡â â â Šâ â °â ½" }, { "input": "pusillanimous", "output": "â â ¥â Žâ Šâ ‡â ‡â â â Šâ â ³â Ž" }, { "input": "puss", "output": "â â ¥â Žâ Ž" }, { "input": "pusses", "output": "â â ¥â Žâ Žâ ‘â Ž" }, { "input": "pussier", "output": "â â ¥â Žâ Žâ Šâ »" }, { "input": "pussies", "output": "â â ¥â Žâ Žâ Šâ ‘â Ž" }, { "input": "pussiest", "output": "â â ¥â Žâ Žâ Šâ ‘â Œ" }, { "input": "pussy", "output": "â â ¥â Žâ Žâ ½" }, { "input": "pussycat", "output": "â â ¥â Žâ Žâ ½â ‰â â ž" }, { "input": "pussycats", "output": "â â ¥â Žâ Žâ ½â ‰â â žâ Ž" }, { "input": "pussyfoot", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â ž" }, { "input": "pussyfooted", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â žâ «" }, { "input": "pussyfooting", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â žâ ¬" }, { "input": "pussyfoots", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â žâ Ž" }, { "input": "pustule", "output": "â â ¥â Œâ ¥â ‡â ‘" }, { "input": "pustules", "output": "â â ¥â Œâ ¥â ‡â ‘â Ž" }, { "input": "put", "output": "â â ¥â ž" }, { "input": "putative", "output": "â â ¥â žâ â žâ Šâ §â ‘" }, { "input": "putrefaction", "output": "â â ¥â žâ —â ‘â ‹â â ‰â °â " }, { "input": "putrefied", "output": "â â ¥â žâ —â ‘â ‹â Šâ «" }, { "input": "putrefies", "output": "â â ¥â žâ —â ‘â ‹â Šâ ‘â Ž" }, { "input": "putrefy", "output": "â â ¥â žâ —â ‘â ‹â ½" }, { "input": "putrefying", "output": "â â ¥â žâ —⠑⠋⠽⠬" }, { "input": "putrescence", "output": "â â ¥â žâ —⠑⠎⠉⠰⠑" }, { "input": "putrescent", "output": "â â ¥â žâ —⠑⠎⠉⠢⠞" }, { "input": "putrid", "output": "â â ¥â žâ —â Šâ ™" }, { "input": "puts", "output": "â â ¥â žâ Ž" }, { "input": "putsch", "output": "â â ¥â žâ Žâ ¡" }, { "input": "putsches", "output": "â â ¥â žâ Žâ ¡â ‘â Ž" }, { "input": "putt", "output": "â â ¥â žâ ž" }, { "input": "putted", "output": "â â ¥â žâ žâ «" }, { "input": "putter", "output": "â â ¥â žâ žâ »" }, { "input": "puttered", "output": "â â ¥â žâ žâ »â «" }, { "input": "puttering", "output": "â â ¥â žâ žâ »â ¬" }, { "input": "putters", "output": "â â ¥â žâ žâ »â Ž" }, { "input": "puttied", "output": "â â ¥â žâ žâ Šâ «" }, { "input": "putties", "output": "â â ¥â žâ žâ Šâ ‘â Ž" }, { "input": "putting", "output": "â â ¥â žâ žâ ¬" }, { "input": "putts", "output": "â â ¥â žâ žâ Ž" }, { "input": "putty", "output": "â â ¥â žâ žâ ½" }, { "input": "puttying", "output": "â â ¥â žâ žâ ½â ¬" }, { "input": "puzzle", "output": "â â ¥â µâ µâ ‡â ‘" }, { "input": "puzzled", "output": "â â ¥â µâ µâ ‡â «" }, { "input": "puzzlement", "output": "â â ¥â µâ µâ ‡â ‘â °â ž" }, { "input": "puzzler", "output": "â â ¥â µâ µâ ‡â »" }, { "input": "puzzlers", "output": "â â ¥â µâ µâ ‡â »â Ž" }, { "input": "puzzles", "output": "â â ¥â µâ µâ ‡â ‘â Ž" }, { "input": "puzzling", "output": "â â ¥â µâ µâ ‡â ¬" }, { "input": "pygmies", "output": "â â ½â ›â â Šâ ‘â Ž" }, { "input": "pygmy", "output": "â â ½â ›â â ½" }, { "input": "pylon", "output": "â â ½â ‡â •â " }, { "input": "pylons", "output": "â â ½â ‡â •â â Ž" }, { "input": "pyorrhea", "output": "â â ½â •â —â —â “â ‘â " }, { "input": "pyramid", "output": "â â ½â —â â â Šâ ™" }, { "input": "pyramidal", "output": "â â ½â —â â â Šâ ™â â ‡" }, { "input": "pyramided", "output": "â â ½â —â â â Šâ ™â «" }, { "input": "pyramiding", "output": "â â ½â —â â â Šâ ™â ¬" }, { "input": "pyramids", "output": "â â ½â —â â â Šâ ™â Ž" }, { "input": "pyre", "output": "â â ½â —â ‘" }, { "input": "pyres", "output": "â â ½â —â ‘â Ž" }, { "input": "pyrite", "output": "â â ½â —â Šâ žâ ‘" }, { "input": "pyromania", "output": "â â ½â —â •â â â â Šâ " }, { "input": "pyromaniac", "output": "â â ½â —â •â â â â Šâ â ‰" }, { "input": "pyromaniacs", "output": "â â ½â —â •â â â â Šâ â ‰â Ž" }, { "input": "pyrotechnic", "output": "â â ½â —â •â žâ ‘â ¡â â Šâ ‰" }, { "input": "pyrotechnics", "output": "â â ½â —â •â žâ ‘â ¡â â Šâ ‰â Ž" }, { "input": "python", "output": "â â ½â ¹â •â " }, { "input": "pythons", "output": "â â ½â ¹â •â â Ž" }, { "input": "pyx", "output": "â â ½â ­" }, { "input": "pyxes", "output": "â â ½â ­â ‘â Ž" }, { "input": "q", "output": "â °â Ÿ" }, { "input": "qua", "output": "â Ÿâ ¥â " }, { "input": "quack", "output": "â Ÿâ ¥â â ‰â …" }, { "input": "quacked", "output": "â Ÿâ ¥â â ‰â …â «" }, { "input": "quackery", "output": "â Ÿâ ¥â â ‰â …⠻⠽" }, { "input": "quacking", "output": "â Ÿâ ¥â â ‰â …â ¬" }, { "input": "quacks", "output": "â Ÿâ ¥â â ‰â …â Ž" }, { "input": "quad", "output": "â Ÿâ ¥â â ™" }, { "input": "quadrangle", "output": "â Ÿâ ¥â â ™â —â â â ›â ‡â ‘" }, { "input": "quadrangles", "output": "â Ÿâ ¥â â ™â —â â â ›â ‡â ‘â Ž" }, { "input": "quadrangular", "output": "â Ÿâ ¥â â ™â —â â â ›â ¥â ‡â œ" }, { "input": "quadrant", "output": "â Ÿâ ¥â â ™â —â â â ž" }, { "input": "quadrants", "output": "â Ÿâ ¥â â ™â —â â â žâ Ž" }, { "input": "quadraphonic", "output": "â Ÿâ ¥â â ™â —â â â “â •â â Šâ ‰" }, { "input": "quadratic", "output": "â Ÿâ ¥â â ™â —â â žâ Šâ ‰" }, { "input": "quadrature", "output": "â Ÿâ ¥â â ™â —â â žâ ¥â —â ‘" }, { "input": "quadrennial", "output": "â Ÿâ ¥â â ™â —â ¢â â Šâ â ‡" }, { "input": "quadriceps", "output": "â Ÿâ ¥â â ™â —⠊⠉⠑â â Ž" }, { "input": "quadricepses", "output": "â Ÿâ ¥â â ™â —⠊⠉⠑â â Žâ ‘â Ž" }, { "input": "quadrilateral", "output": "â Ÿâ ¥â â ™â —â Šâ ‡â â žâ »â â ‡" }, { "input": "quadrilaterals", "output": "â Ÿâ ¥â â ™â —â Šâ ‡â â žâ »â â ‡â Ž" }, { "input": "quadrille", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠑" }, { "input": "quadrilles", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠑⠎" }, { "input": "quadriphonic", "output": "â Ÿâ ¥â â ™â —â Šâ â “â •â â Šâ ‰" }, { "input": "quadriplegia", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊â " }, { "input": "quadriplegic", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊⠉" }, { "input": "quadriplegics", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊⠉⠎" }, { "input": "quadruped", "output": "â Ÿâ ¥â â ™â —â ¥â â «" }, { "input": "quadrupeds", "output": "â Ÿâ ¥â â ™â —â ¥â â «â Ž" }, { "input": "quadruple", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘" }, { "input": "quadrupled", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â «" }, { "input": "quadruples", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â Ž" }, { "input": "quadruplet", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â ž" }, { "input": "quadruplets", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â žâ Ž" }, { "input": "quadruplicate", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ ‘" }, { "input": "quadruplicated", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ «" }, { "input": "quadruplicates", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "quadruplicating", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ ¬" }, { "input": "quadrupling", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ¬" }, { "input": "quads", "output": "â Ÿâ ¥â â ™â Ž" }, { "input": "quaff", "output": "â Ÿâ ¥â â ‹â ‹" }, { "input": "quaffed", "output": "â Ÿâ ¥â â –â «" }, { "input": "quaffing", "output": "â Ÿâ ¥â â –â ¬" }, { "input": "quaffs", "output": "â Ÿâ ¥â â –â Ž" }, { "input": "quagmire", "output": "â Ÿâ ¥â â ›â â Šâ —â ‘" }, { "input": "quagmires", "output": "â Ÿâ ¥â â ›â â Šâ —â ‘â Ž" }, { "input": "quahaug", "output": "â Ÿâ ¥â â “â â ¥â ›" }, { "input": "quahaugs", "output": "â Ÿâ ¥â â “â â ¥â ›â Ž" }, { "input": "quahog", "output": "â Ÿâ ¥â â “â •â ›" }, { "input": "quahogs", "output": "â Ÿâ ¥â â “⠕⠛⠎" }, { "input": "quail", "output": "â Ÿâ ¥â â Šâ ‡" }, { "input": "quailed", "output": "â Ÿâ ¥â â Šâ ‡â «" }, { "input": "quailing", "output": "â Ÿâ ¥â â Šâ ‡â ¬" }, { "input": "quails", "output": "â Ÿâ ¥â â Šâ ‡â Ž" }, { "input": "quaint", "output": "â Ÿâ ¥â â ”â ž" }, { "input": "quainter", "output": "â Ÿâ ¥â â ”â žâ »" }, { "input": "quaintest", "output": "â Ÿâ ¥â â ”â žâ ‘â Œ" }, { "input": "quaintly", "output": "â Ÿâ ¥â â ”⠞⠇⠽" }, { "input": "quaintness", "output": "â Ÿâ ¥â â ”â žâ °â Ž" }, { "input": "quake", "output": "â Ÿâ ¥â â …â ‘" }, { "input": "quaked", "output": "â Ÿâ ¥â â …â «" }, { "input": "quakes", "output": "â Ÿâ ¥â â …â ‘â Ž" }, { "input": "quaking", "output": "â Ÿâ ¥â â …â ¬" }, { "input": "qualification", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "qualifications", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "qualified", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ «" }, { "input": "qualifier", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ »" }, { "input": "qualifiers", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ »â Ž" }, { "input": "qualifies", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "qualify", "output": "â Ÿâ ¥â â ‡â Šâ ‹â ½" }, { "input": "qualifying", "output": "â Ÿâ ¥â â ‡â Šâ ‹â ½â ¬" }, { "input": "qualitative", "output": "â Ÿâ ¥â â ‡â Šâ žâ â žâ Šâ §â ‘" }, { "input": "qualitatively", "output": "â Ÿâ ¥â â ‡â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "qualities", "output": "â Ÿâ ¥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "quality", "output": "â Ÿâ ¥â â ‡â °â ½" }, { "input": "qualm", "output": "â Ÿâ ¥â â ‡â " }, { "input": "qualms", "output": "â Ÿâ ¥â â ‡â â Ž" }, { "input": "quandaries", "output": "⠟⠥⠯⠜⠊⠑⠎" }, { "input": "quandary", "output": "⠟⠥⠯⠜⠽" }, { "input": "quanta", "output": "â Ÿâ ¥â â â žâ " }, { "input": "quantified", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ «" }, { "input": "quantifier", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ »" }, { "input": "quantifiers", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ »â Ž" }, { "input": "quantifies", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "quantify", "output": "â Ÿâ ¥â â â žâ Šâ ‹â ½" }, { "input": "quantifying", "output": "â Ÿâ ¥â â â žâ Šâ ‹â ½â ¬" }, { "input": "quantitative", "output": "â Ÿâ ¥â â â žâ Šâ žâ â žâ Šâ §â ‘" }, { "input": "quantities", "output": "â Ÿâ ¥â â â žâ Šâ žâ Šâ ‘â Ž" }, { "input": "quantity", "output": "â Ÿâ ¥â â â žâ °â ½" }, { "input": "quantum", "output": "â Ÿâ ¥â â â žâ ¥â " }, { "input": "quarantine", "output": "⠟⠥⠜â â â žâ ”â ‘" }, { "input": "quarantined", "output": "⠟⠥⠜â â â žâ ”â «" }, { "input": "quarantines", "output": "⠟⠥⠜â â â žâ ”â ‘â Ž" }, { "input": "quarantining", "output": "⠟⠥⠜â â â žâ ”â ¬" }, { "input": "quark", "output": "⠟⠥⠜⠅" }, { "input": "quarks", "output": "⠟⠥⠜⠅⠎" }, { "input": "quarrel", "output": "⠟⠥⠜⠗⠑⠇" }, { "input": "quarreled", "output": "⠟⠥⠜⠗⠑⠇⠫" }, { "input": "quarreling", "output": "⠟⠥⠜⠗⠑⠇⠬" }, { "input": "quarrelled", "output": "⠟⠥⠜⠗⠑⠇⠇⠫" }, { "input": "quarrelling", "output": "⠟⠥⠜⠗⠑⠇⠇⠬" }, { "input": "quarrels", "output": "⠟⠥⠜⠗⠑⠇⠎" }, { "input": "quarrelsome", "output": "⠟⠥⠜⠗⠑⠇â â Ž" }, { "input": "quarried", "output": "⠟⠥⠜⠗⠊⠫" }, { "input": "quarries", "output": "⠟⠥⠜⠗⠊⠑⠎" }, { "input": "quarry", "output": "⠟⠥⠜⠗⠽" }, { "input": "quarrying", "output": "⠟⠥⠜⠗⠽⠬" }, { "input": "quart", "output": "⠟⠥⠜⠞" }, { "input": "quarter", "output": "⠟⠥⠜⠞⠻" }, { "input": "quarterback", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …" }, { "input": "quarterbacked", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â «" }, { "input": "quarterbacking", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â ¬" }, { "input": "quarterbacks", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â Ž" }, { "input": "quarterdeck", "output": "⠟⠥⠜⠞⠻⠙⠑⠉⠅" }, { "input": "quarterdecks", "output": "⠟⠥⠜⠞⠻⠙⠑⠉⠅⠎" }, { "input": "quartered", "output": "⠟⠥⠜⠞⠻⠫" }, { "input": "quarterfinal", "output": "⠟⠥⠜⠞⠻⠋⠔â â ‡" }, { "input": "quarterfinals", "output": "⠟⠥⠜⠞⠻⠋⠔â â ‡â Ž" }, { "input": "quartering", "output": "⠟⠥⠜⠞⠻⠬" }, { "input": "quarterlies", "output": "⠟⠥⠜⠞⠻⠇⠊⠑⠎" }, { "input": "quarterly", "output": "⠟⠥⠜⠞⠻⠇⠽" }, { "input": "quartermaster", "output": "⠟⠥⠜⠞⠻â â â Œâ »" }, { "input": "quartermasters", "output": "⠟⠥⠜⠞⠻â â â Œâ »â Ž" }, { "input": "quarters", "output": "⠟⠥⠜⠞⠻⠎" }, { "input": "quartet", "output": "⠟⠥⠜⠞⠑⠞" }, { "input": "quartets", "output": "⠟⠥⠜⠞⠑⠞⠎" }, { "input": "quartette", "output": "⠟⠥⠜⠞⠑⠞⠞⠑" }, { "input": "quartettes", "output": "⠟⠥⠜⠞⠑⠞⠞⠑⠎" }, { "input": "quarto", "output": "⠟⠥⠜⠞⠕" }, { "input": "quartos", "output": "⠟⠥⠜⠞⠕⠎" }, { "input": "quarts", "output": "⠟⠥⠜⠞⠎" }, { "input": "quartz", "output": "⠟⠥⠜⠞⠵" }, { "input": "quasar", "output": "â Ÿâ ¥â â Žâ œ" }, { "input": "quasars", "output": "â Ÿâ ¥â â Žâ œâ Ž" }, { "input": "quash", "output": "â Ÿâ ¥â â ©" }, { "input": "quashed", "output": "â Ÿâ ¥â â ©â «" }, { "input": "quashes", "output": "â Ÿâ ¥â â ©â ‘â Ž" }, { "input": "quashing", "output": "â Ÿâ ¥â â ©â ¬" }, { "input": "quasi", "output": "â Ÿâ ¥â â Žâ Š" }, { "input": "quatrain", "output": "â Ÿâ ¥â â žâ —â â ”" }, { "input": "quatrains", "output": "â Ÿâ ¥â â žâ —â â ”â Ž" }, { "input": "quaver", "output": "â Ÿâ ¥â â §â »" }, { "input": "quavered", "output": "â Ÿâ ¥â â §â »â «" }, { "input": "quavering", "output": "â Ÿâ ¥â â §â »â ¬" }, { "input": "quavers", "output": "â Ÿâ ¥â â §â »â Ž" }, { "input": "quavery", "output": "â Ÿâ ¥â â §â »â ½" }, { "input": "quay", "output": "â Ÿâ ¥â â ½" }, { "input": "quays", "output": "â Ÿâ ¥â â ½â Ž" }, { "input": "queasier", "output": "⠟⠥⠂⠎⠊⠻" }, { "input": "queasiest", "output": "⠟⠥⠂⠎⠊⠑⠌" }, { "input": "queasily", "output": "⠟⠥⠂⠎⠊⠇⠽" }, { "input": "queasiness", "output": "⠟⠥⠂⠎⠊⠰⠎" }, { "input": "queasy", "output": "⠟⠥⠂⠎⠽" }, { "input": "queen", "output": "⠟⠥⠑⠢" }, { "input": "queened", "output": "⠟⠥⠑⠢⠫" }, { "input": "queening", "output": "⠟⠥⠑⠢⠬" }, { "input": "queenlier", "output": "⠟⠥⠑⠢⠇⠊⠻" }, { "input": "queenliest", "output": "⠟⠥⠑⠢⠇⠊⠑⠌" }, { "input": "queenly", "output": "⠟⠥⠑⠢⠇⠽" }, { "input": "queens", "output": "⠟⠥⠑⠢⠎" }, { "input": "queer", "output": "⠟⠥⠑⠻" }, { "input": "queered", "output": "⠟⠥⠑⠻⠫" }, { "input": "queerer", "output": "⠟⠥⠑⠻⠻" }, { "input": "queerest", "output": "⠟⠥⠑⠻⠑⠌" }, { "input": "queering", "output": "⠟⠥⠑⠻⠬" }, { "input": "queerly", "output": "⠟⠥⠑⠻⠇⠽" }, { "input": "queerness", "output": "⠟⠥⠑⠻⠰⠎" }, { "input": "queers", "output": "⠟⠥⠑⠻⠎" }, { "input": "quell", "output": "⠟⠥⠑⠇⠇" }, { "input": "quelled", "output": "⠟⠥⠑⠇⠇⠫" }, { "input": "quelling", "output": "⠟⠥⠑⠇⠇⠬" }, { "input": "quells", "output": "⠟⠥⠑⠇⠇⠎" }, { "input": "quench", "output": "⠟⠥⠢⠡" }, { "input": "quenched", "output": "⠟⠥⠢⠡⠫" }, { "input": "quenches", "output": "⠟⠥⠢⠡⠑⠎" }, { "input": "quenching", "output": "⠟⠥⠢⠡⠬" }, { "input": "queried", "output": "⠟⠥⠻⠊⠫" }, { "input": "queries", "output": "⠟⠥⠻⠊⠑⠎" }, { "input": "querulous", "output": "⠟⠥⠻⠥⠇⠳⠎" }, { "input": "querulously", "output": "⠟⠥⠻⠥⠇⠳⠎⠇⠽" }, { "input": "query", "output": "⠟⠥⠻⠽" }, { "input": "querying", "output": "⠟⠥⠻⠽⠬" }, { "input": "quest", "output": "⠟⠥⠑⠌" }, { "input": "quested", "output": "⠟⠥⠑⠌⠫" }, { "input": "questing", "output": "⠟⠥⠑⠌⠬" }, { "input": "question", "output": "â â Ÿ" }, { "input": "questionable", "output": "â â Ÿâ â ƒâ ‡â ‘" }, { "input": "questionably", "output": "â â Ÿâ â ƒâ ‡â ½" }, { "input": "questioned", "output": "â â Ÿâ «" }, { "input": "questioner", "output": "â â Ÿâ »" }, { "input": "questioners", "output": "â â Ÿâ »â Ž" }, { "input": "questioning", "output": "â â Ÿâ ¬" }, { "input": "questioningly", "output": "â â Ÿâ ¬â ‡â ½" }, { "input": "questionnaire", "output": "â â Ÿâ â â Šâ —â ‘" }, { "input": "questionnaires", "output": "â â Ÿâ â â Šâ —â ‘â Ž" }, { "input": "questions", "output": "â â Ÿâ Ž" }, { "input": "quests", "output": "⠟⠥⠑⠌⠎" }, { "input": "queue", "output": "⠟⠥⠑⠥⠑" }, { "input": "queued", "output": "⠟⠥⠑⠥⠫" }, { "input": "queues", "output": "⠟⠥⠑⠥⠑⠎" }, { "input": "queuing", "output": "⠟⠥⠑⠥⠬" }, { "input": "quibble", "output": "⠟⠥⠊⠆⠇⠑" }, { "input": "quibbled", "output": "⠟⠥⠊⠆⠇⠫" }, { "input": "quibbler", "output": "⠟⠥⠊⠆⠇⠻" }, { "input": "quibblers", "output": "⠟⠥⠊⠆⠇⠻⠎" }, { "input": "quibbles", "output": "⠟⠥⠊⠆⠇⠑⠎" }, { "input": "quibbling", "output": "⠟⠥⠊⠆⠇⠬" }, { "input": "quiche", "output": "⠟⠥⠊⠡⠑" }, { "input": "quiches", "output": "⠟⠥⠊⠡⠑⠎" }, { "input": "quick", "output": "â Ÿâ …" }, { "input": "quicken", "output": "â Ÿâ …â ¢" }, { "input": "quickened", "output": "⠟⠅⠢⠫" }, { "input": "quickening", "output": "⠟⠅⠢⠬" }, { "input": "quickens", "output": "⠟⠅⠢⠎" }, { "input": "quicker", "output": "â Ÿâ …â »" }, { "input": "quickest", "output": "â Ÿâ …â ‘â Œ" }, { "input": "quickie", "output": "â Ÿâ …â Šâ ‘" }, { "input": "quickies", "output": "â Ÿâ …â Šâ ‘â Ž" }, { "input": "quicklime", "output": "⠟⠅⠇⠊â â ‘" }, { "input": "quickly", "output": "⠟⠅⠇⠽" }, { "input": "quickness", "output": "â Ÿâ …â °â Ž" }, { "input": "quicksand", "output": "â Ÿâ …â Žâ ¯" }, { "input": "quicksands", "output": "⠟⠅⠎⠯⠎" }, { "input": "quicksilver", "output": "⠟⠅⠎⠊⠇⠧⠻" }, { "input": "quid", "output": "⠟⠥⠊⠙" }, { "input": "quids", "output": "⠟⠥⠊⠙⠎" }, { "input": "quiescence", "output": "⠟⠥⠊⠑⠎⠉⠰⠑" }, { "input": "quiescent", "output": "⠟⠥⠊⠑⠎⠉⠢⠞" }, { "input": "quiet", "output": "⠟⠥⠊⠑⠞" }, { "input": "quieted", "output": "⠟⠥⠊⠑⠞⠫" }, { "input": "quieter", "output": "⠟⠥⠊⠑⠞⠻" }, { "input": "quietest", "output": "⠟⠥⠊⠑⠞⠑⠌" }, { "input": "quieting", "output": "⠟⠥⠊⠑⠞⠬" }, { "input": "quietly", "output": "⠟⠥⠊⠑⠞⠇⠽" }, { "input": "quietness", "output": "⠟⠥⠊⠑⠞⠰⠎" }, { "input": "quiets", "output": "⠟⠥⠊⠑⠞⠎" }, { "input": "quietude", "output": "⠟⠥⠊⠑⠞⠥⠙⠑" }, { "input": "quietus", "output": "⠟⠥⠊⠑⠞⠥⠎" }, { "input": "quietuses", "output": "⠟⠥⠊⠑⠞⠥⠎⠑⠎" }, { "input": "quill", "output": "⠟⠥⠊⠇⠇" }, { "input": "quills", "output": "⠟⠥⠊⠇⠇⠎" }, { "input": "quilt", "output": "⠟⠥⠊⠇⠞" }, { "input": "quilted", "output": "⠟⠥⠊⠇⠞⠫" }, { "input": "quilter", "output": "⠟⠥⠊⠇⠞⠻" }, { "input": "quilters", "output": "⠟⠥⠊⠇⠞⠻⠎" }, { "input": "quilting", "output": "⠟⠥⠊⠇⠞⠬" }, { "input": "quilts", "output": "⠟⠥⠊⠇⠞⠎" }, { "input": "quince", "output": "⠟⠥⠔⠉⠑" }, { "input": "quinces", "output": "⠟⠥⠔⠉⠑⠎" }, { "input": "quinine", "output": "⠟⠥⠔⠔⠑" }, { "input": "quintessence", "output": "⠟⠥⠔⠞⠑⠎⠎⠰⠑" }, { "input": "quintessences", "output": "⠟⠥⠔⠞⠑⠎⠎⠰⠑⠎" }, { "input": "quintessential", "output": "⠟⠥⠔⠞⠑⠎⠎⠢⠞⠊â â ‡" }, { "input": "quintet", "output": "⠟⠥⠔⠞⠑⠞" }, { "input": "quintets", "output": "⠟⠥⠔⠞⠑⠞⠎" }, { "input": "quintuple", "output": "⠟⠥⠔⠞⠥â â ‡â ‘" }, { "input": "quintupled", "output": "⠟⠥⠔⠞⠥â â ‡â «" }, { "input": "quintuples", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â Ž" }, { "input": "quintuplet", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â ž" }, { "input": "quintuplets", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â žâ Ž" }, { "input": "quintupling", "output": "⠟⠥⠔⠞⠥â â ‡â ¬" }, { "input": "quip", "output": "⠟⠥⠊â " }, { "input": "quipped", "output": "⠟⠥⠊â â â «" }, { "input": "quipping", "output": "⠟⠥⠊â â â ¬" }, { "input": "quips", "output": "⠟⠥⠊â â Ž" }, { "input": "quire", "output": "⠟⠥⠊⠗⠑" }, { "input": "quires", "output": "⠟⠥⠊⠗⠑⠎" }, { "input": "quirk", "output": "⠟⠥⠊⠗⠅" }, { "input": "quirked", "output": "⠟⠥⠊⠗⠅⠫" }, { "input": "quirkier", "output": "⠟⠥⠊⠗⠅⠊⠻" }, { "input": "quirkiest", "output": "⠟⠥⠊⠗⠅⠊⠑⠌" }, { "input": "quirking", "output": "⠟⠥⠊⠗⠅⠬" }, { "input": "quirks", "output": "⠟⠥⠊⠗⠅⠎" }, { "input": "quirky", "output": "⠟⠥⠊⠗⠅⠽" }, { "input": "quisling", "output": "⠟⠥⠊⠎⠇⠬" }, { "input": "quislings", "output": "⠟⠥⠊⠎⠇⠬⠎" }, { "input": "quit", "output": "⠟⠥⠊⠞" }, { "input": "quite", "output": "â Ÿ" }, { "input": "quits", "output": "⠟⠥⠊⠞⠎" }, { "input": "quitted", "output": "⠟⠥⠊⠞⠞⠫" }, { "input": "quitter", "output": "⠟⠥⠊⠞⠞⠻" }, { "input": "quitters", "output": "⠟⠥⠊⠞⠞⠻⠎" }, { "input": "quitting", "output": "⠟⠥⠊⠞⠞⠬" }, { "input": "quiver", "output": "⠟⠥⠊⠧⠻" }, { "input": "quivered", "output": "⠟⠥⠊⠧⠻⠫" }, { "input": "quivering", "output": "⠟⠥⠊⠧⠻⠬" }, { "input": "quivers", "output": "⠟⠥⠊⠧⠻⠎" }, { "input": "quixotic", "output": "⠟⠥⠊⠭⠕⠞⠊⠉" }, { "input": "quiz", "output": "⠟⠥⠊⠵" }, { "input": "quizzed", "output": "⠟⠥⠊⠵⠵⠫" }, { "input": "quizzes", "output": "⠟⠥⠊⠵⠵⠑⠎" }, { "input": "quizzical", "output": "⠟⠥⠊⠵⠵⠊⠉â â ‡" }, { "input": "quizzically", "output": "⠟⠥⠊⠵⠵⠊⠉â â ‡â ‡â ½" }, { "input": "quizzing", "output": "⠟⠥⠊⠵⠵⠬" }, { "input": "quoit", "output": "⠟⠥⠕⠊⠞" }, { "input": "quoited", "output": "⠟⠥⠕⠊⠞⠫" }, { "input": "quoiting", "output": "⠟⠥⠕⠊⠞⠬" }, { "input": "quoits", "output": "⠟⠥⠕⠊⠞⠎" }, { "input": "quondam", "output": "⠟⠥⠕â â ™â â " }, { "input": "quorum", "output": "⠟⠥⠕⠗⠥â " }, { "input": "quorums", "output": "⠟⠥⠕⠗⠥â â Ž" }, { "input": "quota", "output": "⠟⠥⠕⠞â " }, { "input": "quotable", "output": "⠟⠥⠕⠞â â ƒâ ‡â ‘" }, { "input": "quotas", "output": "⠟⠥⠕⠞â â Ž" }, { "input": "quotation", "output": "⠟⠥⠕⠞â â °â " }, { "input": "quotations", "output": "⠟⠥⠕⠞â â °â â Ž" }, { "input": "quote", "output": "⠟⠥⠕⠞⠑" }, { "input": "quoted", "output": "⠟⠥⠕⠞⠫" }, { "input": "quotes", "output": "⠟⠥⠕⠞⠑⠎" }, { "input": "quoth", "output": "⠟⠥⠕⠹" }, { "input": "quotidian", "output": "⠟⠥⠕⠞⠊⠙⠊â â " }, { "input": "quotient", "output": "⠟⠥⠕⠞⠊⠢⠞" }, { "input": "quotients", "output": "⠟⠥⠕⠞⠊⠢⠞⠎" }, { "input": "quoting", "output": "⠟⠥⠕⠞⠬" }, { "input": "r", "output": "â °â —" }, { "input": "rabbi", "output": "â —â â †â Š" }, { "input": "rabbinate", "output": "â —â â †â ”â â žâ ‘" }, { "input": "rabbinical", "output": "â —â â †â ”â Šâ ‰â â ‡" }, { "input": "rabbis", "output": "â —â â †â Šâ Ž" }, { "input": "rabbit", "output": "â —â â †â Šâ ž" }, { "input": "rabbited", "output": "â —â â †â Šâ žâ «" }, { "input": "rabbiting", "output": "â —â â †â Šâ žâ ¬" }, { "input": "rabbits", "output": "â —â â †â Šâ žâ Ž" }, { "input": "rabble", "output": "â —â â †â ‡â ‘" }, { "input": "rabbles", "output": "â —â â †â ‡â ‘â Ž" }, { "input": "rabid", "output": "â —â â ƒâ Šâ ™" }, { "input": "rabies", "output": "â —â â ƒâ Šâ ‘â Ž" }, { "input": "raccoon", "output": "â —â â ’â •â •â " }, { "input": "raccoons", "output": "â —â â ’â •â •â â Ž" }, { "input": "race", "output": "â —â â ‰â ‘" }, { "input": "racecourse", "output": "â —â â ‰â ‘⠉⠳⠗⠎⠑" }, { "input": "racecourses", "output": "â —â â ‰â ‘⠉⠳⠗⠎⠑⠎" }, { "input": "raced", "output": "â —â â ‰â «" }, { "input": "racehorse", "output": "â —â â ‰â ‘â “â •â —â Žâ ‘" }, { "input": "racehorses", "output": "â —â â ‰â ‘â “â •â —â Žâ ‘â Ž" }, { "input": "raceme", "output": "â —â â ‰â ‘â â ‘" }, { "input": "racemes", "output": "â —â â ‰â ‘â â ‘â Ž" }, { "input": "racer", "output": "â —â â ‰â »" }, { "input": "racers", "output": "â —â â ‰â »â Ž" }, { "input": "races", "output": "â —â â ‰â ‘â Ž" }, { "input": "racetrack", "output": "â —â â ‰â ‘â žâ —â â ‰â …" }, { "input": "racetracks", "output": "â —â â ‰â ‘â žâ —â â ‰â …â Ž" }, { "input": "raceway", "output": "â —â â ‰â ‘â ºâ â ½" }, { "input": "raceways", "output": "â —â â ‰â ‘â ºâ â ½â Ž" }, { "input": "racial", "output": "â —â â ‰â Šâ â ‡" }, { "input": "racially", "output": "â —â â ‰â Šâ â ‡â ‡â ½" }, { "input": "racier", "output": "â —â â ‰â Šâ »" }, { "input": "raciest", "output": "â —â â ‰â Šâ ‘â Œ" }, { "input": "racily", "output": "â —â â ‰â Šâ ‡â ½" }, { "input": "raciness", "output": "â —â â ‰â Šâ °â Ž" }, { "input": "racing", "output": "â —â â ‰â ¬" }, { "input": "racism", "output": "â —â â ‰â Šâ Žâ " }, { "input": "racist", "output": "â —â â ‰â Šâ Œ" }, { "input": "racists", "output": "â —â â ‰â Šâ Œâ Ž" }, { "input": "rack", "output": "â —â â ‰â …" }, { "input": "racked", "output": "â —â â ‰â …â «" }, { "input": "racket", "output": "â —â â ‰â …â ‘â ž" }, { "input": "racketed", "output": "â —â â ‰â …â ‘â žâ «" }, { "input": "racketeer", "output": "â —â â ‰â …â ‘â žâ ‘â »" }, { "input": "racketeered", "output": "â —â â ‰â …⠑⠞⠑⠻⠫" }, { "input": "racketeering", "output": "â —â â ‰â …⠑⠞⠑⠻⠬" }, { "input": "racketeers", "output": "â —â â ‰â …⠑⠞⠑⠻⠎" }, { "input": "racketing", "output": "â —â â ‰â …â ‘â žâ ¬" }, { "input": "rackets", "output": "â —â â ‰â …â ‘â žâ Ž" }, { "input": "racking", "output": "â —â â ‰â …â ¬" }, { "input": "racks", "output": "â —â â ‰â …â Ž" }, { "input": "raconteur", "output": "â —â â ‰â •â â žâ ‘⠥⠗" }, { "input": "raconteurs", "output": "â —â â ‰â •â â žâ ‘⠥⠗⠎" }, { "input": "racoon", "output": "â —â â ‰â •â •â " }, { "input": "racoons", "output": "â —â â ‰â •â •â â Ž" }, { "input": "racquet", "output": "â —â â ‰â Ÿâ ¥â ‘â ž" }, { "input": "racquetball", "output": "â —â â ‰â Ÿâ ¥â ‘â žâ ƒâ â ‡â ‡" }, { "input": "racquetballs", "output": "â —â â ‰â Ÿâ ¥â ‘â žâ ƒâ â ‡â ‡â Ž" }, { "input": "racquets", "output": "â —â â ‰â Ÿâ ¥â ‘â žâ Ž" }, { "input": "racy", "output": "â —â â ‰â ½" }, { "input": "radar", "output": "â —â â ™â œ" }, { "input": "radars", "output": "â —â â ™â œâ Ž" }, { "input": "radial", "output": "â —â â ™â Šâ â ‡" }, { "input": "radially", "output": "â —â â ™â Šâ â ‡â ‡â ½" }, { "input": "radials", "output": "â —â â ™â Šâ â ‡â Ž" }, { "input": "radiance", "output": "â —â â ™â Šâ ¨â ‘" }, { "input": "radiant", "output": "â —â â ™â Šâ â â ž" }, { "input": "radiantly", "output": "â —â â ™â Šâ â â žâ ‡â ½" }, { "input": "radiate", "output": "â —â â ™â Šâ â žâ ‘" }, { "input": "radiated", "output": "â —â â ™â Šâ â žâ «" }, { "input": "radiates", "output": "â —â â ™â Šâ â žâ ‘â Ž" }, { "input": "radiating", "output": "â —â â ™â Šâ â žâ ¬" }, { "input": "radiation", "output": "â —â â ™â Šâ â °â " }, { "input": "radiations", "output": "â —â â ™â Šâ â °â â Ž" }, { "input": "radiator", "output": "â —â â ™â Šâ â žâ •â —" }, { "input": "radiators", "output": "â —â â ™â Šâ â žâ •â —â Ž" }, { "input": "radical", "output": "â —â â ™â Šâ ‰â â ‡" }, { "input": "radicalism", "output": "â —â â ™â Šâ ‰â â ‡â Šâ Žâ " }, { "input": "radically", "output": "â —â â ™â Šâ ‰â â ‡â ‡â ½" }, { "input": "radicals", "output": "â —â â ™â Šâ ‰â â ‡â Ž" }, { "input": "radii", "output": "â —â â ™â Šâ Š" }, { "input": "radio", "output": "â —â â ™â Šâ •" }, { "input": "radioactive", "output": "â —â â ™â Šâ •â â ‰â žâ Šâ §â ‘" }, { "input": "radioactivity", "output": "â —â â ™â Šâ •â â ‰â žâ Šâ §â °â ½" }, { "input": "radioed", "output": "â —â â ™â Šâ •â «" }, { "input": "radiogram", "output": "â —â â ™â Šâ •⠛⠗â â " }, { "input": "radiograms", "output": "â —â â ™â Šâ •⠛⠗â â â Ž" }, { "input": "radioing", "output": "â —â â ™â Šâ •â ¬" }, { "input": "radioisotope", "output": "â —â â ™â Šâ •â Šâ Žâ •â žâ •â â ‘" }, { "input": "radioisotopes", "output": "â —â â ™â Šâ •â Šâ Žâ •â žâ •â â ‘â Ž" }, { "input": "radiologist", "output": "â —â â ™â Šâ •⠇⠕⠛⠊⠌" }, { "input": "radiologists", "output": "â —â â ™â Šâ •⠇⠕⠛⠊⠌⠎" }, { "input": "radiology", "output": "â —â â ™â Šâ •⠇⠕⠛⠽" }, { "input": "radios", "output": "â —â â ™â Šâ •â Ž" }, { "input": "radiotelephone", "output": "â —â â ™â Šâ •⠞⠑⠇⠑â â “â â •" }, { "input": "radiotelephones", "output": "â —â â ™â Šâ •⠞⠑⠇⠑â â “â â •â Ž" }, { "input": "radiotherapist", "output": "â —â â ™â Šâ •⠮⠗â â â Šâ Œ" }, { "input": "radiotherapists", "output": "â —â â ™â Šâ •⠮⠗â â â Šâ Œâ Ž" }, { "input": "radiotherapy", "output": "â —â â ™â Šâ •⠮⠗â â â ½" }, { "input": "radish", "output": "â —â â ™â Šâ ©" }, { "input": "radishes", "output": "â —â â ™â Šâ ©â ‘â Ž" }, { "input": "radium", "output": "â —â â ™â Šâ ¥â " }, { "input": "radius", "output": "â —â â ™â Šâ ¥â Ž" }, { "input": "radiuses", "output": "â —â â ™â Šâ ¥â Žâ ‘â Ž" }, { "input": "radon", "output": "â —â â ™â •â " }, { "input": "raffia", "output": "â —â â –â Šâ " }, { "input": "raffish", "output": "â —â â –â Šâ ©" }, { "input": "raffle", "output": "â —â â –⠇⠑" }, { "input": "raffled", "output": "â —â â –⠇⠫" }, { "input": "raffles", "output": "â —â â –⠇⠑⠎" }, { "input": "raffling", "output": "â —â â –⠇⠬" }, { "input": "raft", "output": "â —â â ‹â ž" }, { "input": "rafted", "output": "â —â â ‹â žâ «" }, { "input": "rafter", "output": "â —â â ‹â žâ »" }, { "input": "rafters", "output": "â —â â ‹â žâ »â Ž" }, { "input": "rafting", "output": "â —â â ‹â žâ ¬" }, { "input": "rafts", "output": "â —â â ‹â žâ Ž" }, { "input": "rag", "output": "â —â â ›" }, { "input": "raga", "output": "â —â â ›â " }, { "input": "ragamuffin", "output": "â —â â ›â â â ¥â –â ”" }, { "input": "ragamuffins", "output": "â —â â ›â â â ¥â –⠔⠎" }, { "input": "ragas", "output": "â —â â ›â â Ž" }, { "input": "rage", "output": "â —â â ›â ‘" }, { "input": "raged", "output": "â —â â ›â «" }, { "input": "rages", "output": "â —â â ›â ‘â Ž" }, { "input": "ragged", "output": "â —â â ¶â «" }, { "input": "raggeder", "output": "â —â â ¶â «â »" }, { "input": "raggedest", "output": "â —â â ¶â «â ‘â Œ" }, { "input": "raggedier", "output": "â —â â ¶â «â Šâ »" }, { "input": "raggediest", "output": "â —â â ¶â «â Šâ ‘â Œ" }, { "input": "raggedly", "output": "â —â â ¶â «â ‡â ½" }, { "input": "raggedness", "output": "â —â â ¶â «â °â Ž" }, { "input": "raggedy", "output": "â —â â ¶â «â ½" }, { "input": "ragging", "output": "â —â â ¶â ¬" }, { "input": "raging", "output": "â —â â ›â ¬" }, { "input": "raglan", "output": "â —â â ›â ‡â â " }, { "input": "raglans", "output": "â —â â ›â ‡â â â Ž" }, { "input": "ragout", "output": "â —â â ›â ³â ž" }, { "input": "ragouts", "output": "â —â â ›â ³â žâ Ž" }, { "input": "rags", "output": "â —â â ›â Ž" }, { "input": "ragtag", "output": "â —â â ›â žâ â ›" }, { "input": "ragtags", "output": "â —â â ›â žâ â ›â Ž" }, { "input": "ragtime", "output": "â —â â ›â â ž" }, { "input": "ragweed", "output": "â —â â ›â ºâ ‘â «" }, { "input": "raid", "output": "â —â â Šâ ™" }, { "input": "raided", "output": "â —â â Šâ ™â «" }, { "input": "raider", "output": "â —â â Šâ ™â »" }, { "input": "raiders", "output": "â —â â Šâ ™â »â Ž" }, { "input": "raiding", "output": "â —â â Šâ ™â ¬" }, { "input": "raids", "output": "â —â â Šâ ™â Ž" }, { "input": "rail", "output": "â —â â Šâ ‡" }, { "input": "railed", "output": "â —â â Šâ ‡â «" }, { "input": "railing", "output": "â —â â Šâ ‡â ¬" }, { "input": "railings", "output": "â —â â Šâ ‡â ¬â Ž" }, { "input": "railleries", "output": "â —â â Šâ ‡â ‡â »â Šâ ‘â Ž" }, { "input": "raillery", "output": "â —â â Šâ ‡â ‡â »â ½" }, { "input": "railroad", "output": "â —â â Šâ ‡â —â •â â ™" }, { "input": "railroaded", "output": "â —â â Šâ ‡â —â •â â ™â «" }, { "input": "railroading", "output": "â —â â Šâ ‡â —â •â â ™â ¬" }, { "input": "railroads", "output": "â —â â Šâ ‡â —â •â â ™â Ž" }, { "input": "rails", "output": "â —â â Šâ ‡â Ž" }, { "input": "railway", "output": "â —â â Šâ ‡â ºâ â ½" }, { "input": "railways", "output": "â —â â Šâ ‡â ºâ â ½â Ž" }, { "input": "raiment", "output": "â —â â Šâ °â ž" }, { "input": "rain", "output": "â —â â ”" }, { "input": "rainbow", "output": "â —â â ”⠃⠪" }, { "input": "rainbows", "output": "â —â â ”⠃⠪⠎" }, { "input": "raincoat", "output": "â —â â ”⠉⠕â â ž" }, { "input": "raincoats", "output": "â —â â ”⠉⠕â â žâ Ž" }, { "input": "raindrop", "output": "â —â â ”⠙⠗⠕â " }, { "input": "raindrops", "output": "â —â â ”⠙⠗⠕â â Ž" }, { "input": "rained", "output": "â —â â ”â «" }, { "input": "rainfall", "output": "â —â â ”â ‹â â ‡â ‡" }, { "input": "rainfalls", "output": "â —â â ”â ‹â â ‡â ‡â Ž" }, { "input": "rainforest", "output": "â —â â ”â ¿â ‘â Œ" }, { "input": "rainier", "output": "â —â â ”â Šâ »" }, { "input": "rainiest", "output": "â —â â ”â Šâ ‘â Œ" }, { "input": "raining", "output": "â —â â ”â ¬" }, { "input": "rainmaker", "output": "â —â â ”â â â …â »" }, { "input": "rainmakers", "output": "â —â â ”â â â …⠻⠎" }, { "input": "rains", "output": "â —â â ”â Ž" }, { "input": "rainstorm", "output": "â —â â ”⠌⠕⠗â " }, { "input": "rainstorms", "output": "â —â â ”⠌⠕⠗â â Ž" }, { "input": "rainwater", "output": "â —â â ”â ºâ â žâ »" }, { "input": "rainy", "output": "â —â â ”â ½" }, { "input": "raise", "output": "â —â â Šâ Žâ ‘" }, { "input": "raised", "output": "â —â â Šâ Žâ «" }, { "input": "raises", "output": "â —â â Šâ Žâ ‘â Ž" }, { "input": "raisin", "output": "â —â â Šâ Žâ ”" }, { "input": "raising", "output": "â —â â Šâ Žâ ¬" }, { "input": "raisins", "output": "â —â â Šâ Žâ ”â Ž" }, { "input": "raja", "output": "â —â â šâ " }, { "input": "rajah", "output": "â —â â šâ â “" }, { "input": "rajahs", "output": "â —â â šâ â “â Ž" }, { "input": "rajas", "output": "â —â â šâ â Ž" }, { "input": "rake", "output": "â —â â …â ‘" }, { "input": "raked", "output": "â —â â …â «" }, { "input": "rakes", "output": "â —â â …â ‘â Ž" }, { "input": "raking", "output": "â —â â …â ¬" }, { "input": "rakish", "output": "â —â â …â Šâ ©" }, { "input": "rakishly", "output": "â —â â …⠊⠩⠇⠽" }, { "input": "rakishness", "output": "â —â â …â Šâ ©â °â Ž" }, { "input": "rallied", "output": "â —â â ‡â ‡â Šâ «" }, { "input": "rallies", "output": "â —â â ‡â ‡â Šâ ‘â Ž" }, { "input": "rally", "output": "â —â â ‡â ‡â ½" }, { "input": "rallying", "output": "â —â â ‡â ‡â ½â ¬" }, { "input": "ram", "output": "â —â â " }, { "input": "ramble", "output": "â —â â â ƒâ ‡â ‘" }, { "input": "rambled", "output": "â —â â â ƒâ ‡â «" }, { "input": "rambler", "output": "â —â â â ƒâ ‡â »" }, { "input": "ramblers", "output": "â —â â â ƒâ ‡â »â Ž" }, { "input": "rambles", "output": "â —â â â ƒâ ‡â ‘â Ž" }, { "input": "rambling", "output": "â —â â â ƒâ ‡â ¬" }, { "input": "rambunctious", "output": "â —â â â ƒâ ¥â â ‰â žâ Šâ ³â Ž" }, { "input": "rambunctiousness", "output": "â —â â â ƒâ ¥â â ‰â žâ Šâ ³â Žâ °â Ž" }, { "input": "ramification", "output": "â —â â â Šâ ‹â Šâ ‰â â °â " }, { "input": "ramifications", "output": "â —â â â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "ramified", "output": "â —â â â Šâ ‹â Šâ «" }, { "input": "ramifies", "output": "â —â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "ramify", "output": "â —â â â Šâ ‹â ½" }, { "input": "ramifying", "output": "â —â â â Šâ ‹â ½â ¬" }, { "input": "rammed", "output": "â —â â â â «" }, { "input": "ramming", "output": "â —â â â â ¬" }, { "input": "ramp", "output": "â —â â â " }, { "input": "rampage", "output": "â —â â â â â ›â ‘" }, { "input": "rampaged", "output": "â —â â â â â ›â «" }, { "input": "rampages", "output": "â —â â â â â ›â ‘â Ž" }, { "input": "rampaging", "output": "â —â â â â â ›â ¬" }, { "input": "rampant", "output": "â —â â â â â â ž" }, { "input": "rampantly", "output": "â —â â â â â â žâ ‡â ½" }, { "input": "rampart", "output": "â —â â â â " }, { "input": "ramparts", "output": "â —â â â â â Ž" }, { "input": "ramps", "output": "â —â â â â Ž" }, { "input": "ramrod", "output": "â —â â â —â •â ™" }, { "input": "ramrodded", "output": "â —â â â —⠕⠙⠙⠫" }, { "input": "ramrodding", "output": "â —â â â —⠕⠙⠙⠬" }, { "input": "ramrods", "output": "â —â â â —⠕⠙⠎" }, { "input": "rams", "output": "â —â â â Ž" }, { "input": "ramshackle", "output": "â —â â â ©â â ‰â …⠇⠑" }, { "input": "ran", "output": "â —â â " }, { "input": "ranch", "output": "â —â â â ¡" }, { "input": "ranched", "output": "â —â â â ¡â «" }, { "input": "rancher", "output": "â —â â â ¡â »" }, { "input": "ranchers", "output": "â —â â â ¡â »â Ž" }, { "input": "ranches", "output": "â —â â â ¡â ‘â Ž" }, { "input": "ranching", "output": "â —â â â ¡â ¬" }, { "input": "rancid", "output": "â —â â â ‰â Šâ ™" }, { "input": "rancidity", "output": "â —â â â ‰â Šâ ™â °â ½" }, { "input": "rancor", "output": "â —â â â ‰â •â —" }, { "input": "rancorous", "output": "â —â â â ‰â •⠗⠳⠎" }, { "input": "rancorously", "output": "â —â â â ‰â •⠗⠳⠎⠇⠽" }, { "input": "randier", "output": "⠗⠯⠊⠻" }, { "input": "randiest", "output": "⠗⠯⠊⠑⠌" }, { "input": "random", "output": "⠗⠯⠕â " }, { "input": "randomize", "output": "⠗⠯⠕â â Šâ µâ ‘" }, { "input": "randomized", "output": "⠗⠯⠕â â Šâ µâ «" }, { "input": "randomizes", "output": "⠗⠯⠕â â Šâ µâ ‘â Ž" }, { "input": "randomizing", "output": "⠗⠯⠕â â Šâ µâ ¬" }, { "input": "randomly", "output": "⠗⠯⠕â â ‡â ½" }, { "input": "randomness", "output": "⠗⠯⠕â â °â Ž" }, { "input": "randy", "output": "⠗⠯⠽" }, { "input": "rang", "output": "â —â â â ›" }, { "input": "range", "output": "â —â â â ›â ‘" }, { "input": "ranged", "output": "â —â â â ›â «" }, { "input": "ranger", "output": "â —â â â ›â »" }, { "input": "rangers", "output": "â —â â â ›â »â Ž" }, { "input": "ranges", "output": "â —â â â ›â ‘â Ž" }, { "input": "rangier", "output": "â —â â â ›â Šâ »" }, { "input": "rangiest", "output": "â —â â â ›â Šâ ‘â Œ" }, { "input": "ranginess", "output": "â —â â â ›â Šâ °â Ž" }, { "input": "ranging", "output": "â —â â â ›â ¬" }, { "input": "rangy", "output": "â —â â â ›â ½" }, { "input": "rank", "output": "â —â â â …" }, { "input": "ranked", "output": "â —â â â …â «" }, { "input": "ranker", "output": "â —â â â …â »" }, { "input": "rankest", "output": "â —â â â …â ‘â Œ" }, { "input": "ranking", "output": "â —â â â …â ¬" }, { "input": "rankings", "output": "â —â â â …⠬⠎" }, { "input": "rankle", "output": "â —â â â …⠇⠑" }, { "input": "rankled", "output": "â —â â â …⠇⠫" }, { "input": "rankles", "output": "â —â â â …⠇⠑⠎" }, { "input": "rankling", "output": "â —â â â …⠇⠬" }, { "input": "rankness", "output": "â —â â â …â °â Ž" }, { "input": "ranks", "output": "â —â â â …â Ž" }, { "input": "ransack", "output": "â —â â â Žâ â ‰â …" }, { "input": "ransacked", "output": "â —â â â Žâ â ‰â …â «" }, { "input": "ransacking", "output": "â —â â â Žâ â ‰â …â ¬" }, { "input": "ransacks", "output": "â —â â â Žâ â ‰â …â Ž" }, { "input": "ransom", "output": "â —â â â Žâ •â " }, { "input": "ransomed", "output": "â —â â â Žâ •â â «" }, { "input": "ransoming", "output": "â —â â â Žâ •â â ¬" }, { "input": "ransoms", "output": "â —â â â Žâ •â â Ž" }, { "input": "rant", "output": "â —â â â ž" }, { "input": "ranted", "output": "â —â â â žâ «" }, { "input": "ranter", "output": "â —â â â žâ »" }, { "input": "ranting", "output": "â —â â â žâ ¬" }, { "input": "rants", "output": "â —â â â žâ Ž" }, { "input": "rap", "output": "â —â â " }, { "input": "rapacious", "output": "â —â â â â ‰â Šâ ³â Ž" }, { "input": "rapaciously", "output": "â —â â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "rapaciousness", "output": "â —â â â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "rapacity", "output": "â —â â â â ‰â °â ½" }, { "input": "rape", "output": "â —â â â ‘" }, { "input": "raped", "output": "â —â â â «" }, { "input": "rapes", "output": "â —â â â ‘â Ž" }, { "input": "rapid", "output": "â —â â â Šâ ™" }, { "input": "rapider", "output": "â —â â â Šâ ™â »" }, { "input": "rapidest", "output": "â —â â â Šâ ™â ‘â Œ" }, { "input": "rapidity", "output": "â —â â â Šâ ™â °â ½" }, { "input": "rapidly", "output": "â —â â â Šâ ™â ‡â ½" }, { "input": "rapids", "output": "â —â â â Šâ ™â Ž" }, { "input": "rapier", "output": "â —â â â Šâ »" }, { "input": "rapiers", "output": "â —â â â Šâ »â Ž" }, { "input": "rapine", "output": "â —â â â ”â ‘" }, { "input": "raping", "output": "â —â â â ¬" }, { "input": "rapist", "output": "â —â â â Šâ Œ" }, { "input": "rapists", "output": "â —â â â Šâ Œâ Ž" }, { "input": "rapped", "output": "â —â â â â «" }, { "input": "rapper", "output": "â —â â â â »" }, { "input": "rappers", "output": "â —â â â â »â Ž" }, { "input": "rapping", "output": "â —â â â â ¬" }, { "input": "rapport", "output": "â —â â â â •â —â ž" }, { "input": "rapports", "output": "â —â â â â •â —â žâ Ž" }, { "input": "rapprochement", "output": "â —â â â â —â •â ¡â ‘â °â ž" }, { "input": "rapprochements", "output": "â —â â â â —â •â ¡â ‘â °â žâ Ž" }, { "input": "raps", "output": "â —â â â Ž" }, { "input": "rapscallion", "output": "â —â â â Žâ ‰â â ‡â ‡â Šâ •â " }, { "input": "rapscallions", "output": "â —â â â Žâ ‰â â ‡â ‡â Šâ •â â Ž" }, { "input": "rapt", "output": "â —â â â ž" }, { "input": "rapture", "output": "â —â â â žâ ¥â —â ‘" }, { "input": "raptures", "output": "â —â â â žâ ¥â —â ‘â Ž" }, { "input": "rapturous", "output": "â —â â â žâ ¥â —⠳⠎" }, { "input": "rare", "output": "⠗⠜⠑" }, { "input": "rared", "output": "â —â â —â «" }, { "input": "rarefied", "output": "⠗⠜⠑⠋⠊⠫" }, { "input": "rarefies", "output": "⠗⠜⠑⠋⠊⠑⠎" }, { "input": "rarefy", "output": "⠗⠜⠑⠋⠽" }, { "input": "rarefying", "output": "⠗⠜⠑⠋⠽⠬" }, { "input": "rarely", "output": "⠗⠜⠑⠇⠽" }, { "input": "rareness", "output": "⠗⠜⠑⠰⠎" }, { "input": "rarer", "output": "⠗⠜⠻" }, { "input": "rares", "output": "⠗⠜⠑⠎" }, { "input": "rarest", "output": "⠗⠜⠑⠌" }, { "input": "raring", "output": "⠗⠜⠬" }, { "input": "rarities", "output": "⠗⠜⠊⠞⠊⠑⠎" }, { "input": "rarity", "output": "⠗⠜⠰⠽" }, { "input": "rascal", "output": "â —â â Žâ ‰â â ‡" }, { "input": "rascally", "output": "â —â â Žâ ‰â â ‡â ‡â ½" }, { "input": "rascals", "output": "â —â â Žâ ‰â â ‡â Ž" }, { "input": "rash", "output": "â —â â ©" }, { "input": "rasher", "output": "â —â â ©â »" }, { "input": "rashers", "output": "â —â â ©â »â Ž" }, { "input": "rashes", "output": "â —â â ©â ‘â Ž" }, { "input": "rashest", "output": "â —â â ©â ‘â Œ" }, { "input": "rashly", "output": "â —â â ©â ‡â ½" }, { "input": "rashness", "output": "â —â â ©â °â Ž" }, { "input": "rasp", "output": "â —â â Žâ " }, { "input": "raspberries", "output": "â —â â Žâ â ƒâ »â —â Šâ ‘â Ž" }, { "input": "raspberry", "output": "â —â â Žâ â ƒâ »â —â ½" }, { "input": "rasped", "output": "â —â â Žâ â «" }, { "input": "raspier", "output": "â —â â Žâ â Šâ »" }, { "input": "raspiest", "output": "â —â â Žâ â Šâ ‘â Œ" }, { "input": "rasping", "output": "â —â â Žâ â ¬" }, { "input": "rasps", "output": "â —â â Žâ â Ž" }, { "input": "raspy", "output": "â —â â Žâ â ½" }, { "input": "raster", "output": "â —â â Œâ »" }, { "input": "rat", "output": "â —â â ž" }, { "input": "ratchet", "output": "â —â â žâ ¡â ‘â ž" }, { "input": "ratcheted", "output": "â —â â žâ ¡â ‘â žâ «" }, { "input": "ratcheting", "output": "â —â â žâ ¡â ‘â žâ ¬" }, { "input": "ratchets", "output": "â —â â žâ ¡â ‘â žâ Ž" }, { "input": "rate", "output": "â —â â žâ ‘" }, { "input": "rated", "output": "â —â â žâ «" }, { "input": "rates", "output": "â —â â žâ ‘â Ž" }, { "input": "rather", "output": "â —" }, { "input": "rathskeller", "output": "â —â â ¹â Žâ …⠑⠇⠇⠻" }, { "input": "rathskellers", "output": "â —â â ¹â Žâ …⠑⠇⠇⠻⠎" }, { "input": "ratification", "output": "â —â â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "ratified", "output": "â —â â žâ Šâ ‹â Šâ «" }, { "input": "ratifies", "output": "â —â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "ratify", "output": "â —â â žâ Šâ ‹â ½" }, { "input": "ratifying", "output": "â —â â žâ Šâ ‹â ½â ¬" }, { "input": "rating", "output": "â —â â žâ ¬" }, { "input": "ratings", "output": "â —â â žâ ¬â Ž" }, { "input": "ratio", "output": "â —â â žâ Šâ •" }, { "input": "ration", "output": "â —â â °â " }, { "input": "rational", "output": "â —â â °â â â ‡" }, { "input": "rationale", "output": "â —â â °â â â ‡â ‘" }, { "input": "rationales", "output": "â —â â °â â â ‡â ‘â Ž" }, { "input": "rationalism", "output": "â —â â °â â â ‡â Šâ Žâ " }, { "input": "rationalist", "output": "â —â â °â â â ‡â Šâ Œ" }, { "input": "rationalistic", "output": "â —â â °â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "rationalists", "output": "â —â â °â â â ‡â Šâ Œâ Ž" }, { "input": "rationality", "output": "â —â â °â â â ‡â °â ½" }, { "input": "rationalization", "output": "â —â â °â â â ‡â Šâ µâ â °â " }, { "input": "rationalizations", "output": "â —â â °â â â ‡â Šâ µâ â °â â Ž" }, { "input": "rationalize", "output": "â —â â °â â â ‡â Šâ µâ ‘" }, { "input": "rationalized", "output": "â —â â °â â â ‡â Šâ µâ «" }, { "input": "rationalizes", "output": "â —â â °â â â ‡â Šâ µâ ‘â Ž" }, { "input": "rationalizing", "output": "â —â â °â â â ‡â Šâ µâ ¬" }, { "input": "rationally", "output": "â —â â °â â â ‡â ‡â ½" }, { "input": "rationals", "output": "â —â â °â â â ‡â Ž" }, { "input": "rationed", "output": "â —â â °â â «" }, { "input": "rationing", "output": "â —â â °â â ¬" }, { "input": "rations", "output": "â —â â °â â Ž" }, { "input": "ratios", "output": "â —â â žâ Šâ •â Ž" }, { "input": "rats", "output": "â —â â žâ Ž" }, { "input": "rattan", "output": "â —â â žâ žâ â " }, { "input": "rattans", "output": "â —â â žâ žâ â â Ž" }, { "input": "ratted", "output": "â —â â žâ žâ «" }, { "input": "rattier", "output": "â —â â žâ žâ Šâ »" }, { "input": "rattiest", "output": "â —â â žâ žâ Šâ ‘â Œ" }, { "input": "ratting", "output": "â —â â žâ žâ ¬" }, { "input": "rattle", "output": "â —â â žâ žâ ‡â ‘" }, { "input": "rattled", "output": "â —â â žâ žâ ‡â «" }, { "input": "rattler", "output": "â —â â žâ žâ ‡â »" }, { "input": "rattlers", "output": "â —â â žâ žâ ‡â »â Ž" }, { "input": "rattles", "output": "â —â â žâ žâ ‡â ‘â Ž" }, { "input": "rattlesnake", "output": "â —â â žâ žâ ‡â ‘â Žâ â â …â ‘" }, { "input": "rattlesnakes", "output": "â —â â žâ žâ ‡â ‘â Žâ â â …â ‘â Ž" }, { "input": "rattletrap", "output": "â —â â žâ žâ ‡â ‘â žâ —â â " }, { "input": "rattletraps", "output": "â —â â žâ žâ ‡â ‘â žâ —â â â Ž" }, { "input": "rattling", "output": "â —â â žâ žâ ‡â ¬" }, { "input": "rattlings", "output": "â —â â žâ žâ ‡â ¬â Ž" }, { "input": "rattrap", "output": "â —â â žâ žâ —â â " }, { "input": "rattraps", "output": "â —â â žâ žâ —â â â Ž" }, { "input": "ratty", "output": "â —â â žâ žâ ½" }, { "input": "raucous", "output": "â —â â ¥â ‰â ³â Ž" }, { "input": "raucously", "output": "â —â â ¥â ‰â ³â Žâ ‡â ½" }, { "input": "raucousness", "output": "â —â â ¥â ‰â ³â Žâ °â Ž" }, { "input": "raunchier", "output": "â —â â ¥â â ¡â Šâ »" }, { "input": "raunchiest", "output": "â —â â ¥â â ¡â Šâ ‘â Œ" }, { "input": "raunchiness", "output": "â —â â ¥â â ¡â Šâ °â Ž" }, { "input": "raunchy", "output": "â —â â ¥â â ¡â ½" }, { "input": "ravage", "output": "â —â â §â â ›â ‘" }, { "input": "ravaged", "output": "â —â â §â â ›â «" }, { "input": "ravages", "output": "â —â â §â â ›â ‘â Ž" }, { "input": "ravaging", "output": "â —â â §â â ›â ¬" }, { "input": "rave", "output": "â —â â §â ‘" }, { "input": "raved", "output": "â —â â §â «" }, { "input": "ravel", "output": "â —â â §â ‘â ‡" }, { "input": "raveled", "output": "â —â â §â ‘⠇⠫" }, { "input": "raveling", "output": "â —â â §â ‘⠇⠬" }, { "input": "ravelled", "output": "â —â â §â ‘⠇⠇⠫" }, { "input": "ravelling", "output": "â —â â §â ‘⠇⠇⠬" }, { "input": "ravels", "output": "â —â â §â ‘⠇⠎" }, { "input": "raven", "output": "â —â â §â ¢" }, { "input": "ravened", "output": "â —â â §â ¢â «" }, { "input": "ravening", "output": "â —â â §â ¢â ¬" }, { "input": "ravenous", "output": "â —â â §â ¢â ³â Ž" }, { "input": "ravenously", "output": "â —â â §â ¢â ³â Žâ ‡â ½" }, { "input": "ravens", "output": "â —â â §â ¢â Ž" }, { "input": "raves", "output": "â —â â §â ‘â Ž" }, { "input": "ravine", "output": "â —â â §â ”â ‘" }, { "input": "ravines", "output": "â —â â §â ”â ‘â Ž" }, { "input": "raving", "output": "â —â â §â ¬" }, { "input": "ravings", "output": "â —â â §â ¬â Ž" }, { "input": "ravioli", "output": "â —â â §â Šâ •⠇⠊" }, { "input": "raviolis", "output": "â —â â §â Šâ •⠇⠊⠎" }, { "input": "ravish", "output": "â —â â §â Šâ ©" }, { "input": "ravished", "output": "â —â â §â Šâ ©â «" }, { "input": "ravishes", "output": "â —â â §â Šâ ©â ‘â Ž" }, { "input": "ravishing", "output": "â —â â §â Šâ ©â ¬" }, { "input": "ravishingly", "output": "â —â â §â Šâ ©â ¬â ‡â ½" }, { "input": "ravishment", "output": "â —â â §â Šâ ©â °â ž" }, { "input": "raw", "output": "â —â â º" }, { "input": "rawboned", "output": "â —â â ºâ ƒâ •â â «" }, { "input": "rawer", "output": "â —â â ºâ »" }, { "input": "rawest", "output": "â —â â ºâ ‘â Œ" }, { "input": "rawhide", "output": "â —â â ºâ “⠊⠙⠑" }, { "input": "rawness", "output": "â —â â ºâ °â Ž" }, { "input": "ray", "output": "â —â â ½" }, { "input": "rayon", "output": "â —â â ½â •â " }, { "input": "rays", "output": "â —â â ½â Ž" }, { "input": "raze", "output": "â —â â µâ ‘" }, { "input": "razed", "output": "â —â â µâ «" }, { "input": "razes", "output": "â —â â µâ ‘â Ž" }, { "input": "razing", "output": "â —â â µâ ¬" }, { "input": "razor", "output": "â —â â µâ •â —" }, { "input": "razors", "output": "â —â â µâ •â —â Ž" }, { "input": "razz", "output": "â —â â µâ µ" }, { "input": "razzed", "output": "â —â â µâ µâ «" }, { "input": "razzes", "output": "â —â â µâ µâ ‘â Ž" }, { "input": "razzing", "output": "â —â â µâ µâ ¬" }, { "input": "re", "output": "â —â ‘" }, { "input": "reach", "output": "â —â ‚â ¡" }, { "input": "reachable", "output": "â —â ‚â ¡â â ƒâ ‡â ‘" }, { "input": "reached", "output": "â —â ‚â ¡â «" }, { "input": "reaches", "output": "â —â ‚â ¡â ‘â Ž" }, { "input": "reaching", "output": "â —â ‚â ¡â ¬" }, { "input": "react", "output": "â —â ‘â â ‰â ž" }, { "input": "reacted", "output": "â —â ‘â â ‰â žâ «" }, { "input": "reacting", "output": "â —â ‘â â ‰â žâ ¬" }, { "input": "reaction", "output": "â —â ‘â â ‰â °â " }, { "input": "reactionaries", "output": "â —â ‘â â ‰â °â â œâ Šâ ‘â Ž" }, { "input": "reactionary", "output": "â —â ‘â â ‰â °â â œâ ½" }, { "input": "reactions", "output": "â —â ‘â â ‰â °â â Ž" }, { "input": "reactivate", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "reactivated", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ «" }, { "input": "reactivates", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "reactivating", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ ¬" }, { "input": "reactivation", "output": "â —â ‘â â ‰â žâ Šâ §â â °â " }, { "input": "reactive", "output": "â —â ‘â â ‰â žâ Šâ §â ‘" }, { "input": "reactor", "output": "â —â ‘â â ‰â žâ •â —" }, { "input": "reactors", "output": "â —â ‘â â ‰â žâ •â —â Ž" }, { "input": "reacts", "output": "â —â ‘â â ‰â žâ Ž" }, { "input": "read", "output": "â —â ‚â ™" }, { "input": "readabilities", "output": "â —â ‚â ™â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "readability", "output": "â —â ‚â ™â â ƒâ Šâ ‡â °â ½" }, { "input": "readable", "output": "â —â ‚â ™â â ƒâ ‡â ‘" }, { "input": "reader", "output": "⠗⠂⠙⠻" }, { "input": "readers", "output": "⠗⠂⠙⠻⠎" }, { "input": "readership", "output": "⠗⠂⠙⠻⠩⠊â " }, { "input": "readerships", "output": "⠗⠂⠙⠻⠩⠊â â Ž" }, { "input": "readied", "output": "⠗⠂⠙⠊⠫" }, { "input": "readier", "output": "⠗⠂⠙⠊⠻" }, { "input": "readies", "output": "⠗⠂⠙⠊⠑⠎" }, { "input": "readiest", "output": "⠗⠂⠙⠊⠑⠌" }, { "input": "readily", "output": "⠗⠂⠙⠊⠇⠽" }, { "input": "readiness", "output": "⠗⠂⠙⠊⠰⠎" }, { "input": "reading", "output": "⠗⠂⠙⠬" }, { "input": "readings", "output": "⠗⠂⠙⠬⠎" }, { "input": "readjust", "output": "â —â ‘â â ™â šâ ¥â Œ" }, { "input": "readjusted", "output": "â —â ‘â â ™â šâ ¥â Œâ «" }, { "input": "readjusting", "output": "â —â ‘â â ™â šâ ¥â Œâ ¬" }, { "input": "readjustment", "output": "â —â ‘â â ™â šâ ¥â Œâ °â ž" }, { "input": "readjustments", "output": "â —â ‘â â ™â šâ ¥â Œâ °â žâ Ž" }, { "input": "readjusts", "output": "â —â ‘â â ™â šâ ¥â Œâ Ž" }, { "input": "readmit", "output": "â —â ‘â â ™â â Šâ ž" }, { "input": "readmits", "output": "â —â ‘â â ™â â Šâ žâ Ž" }, { "input": "readmitted", "output": "â —â ‘â â ™â â Šâ žâ žâ «" }, { "input": "readmitting", "output": "â —â ‘â â ™â â Šâ žâ žâ ¬" }, { "input": "readout", "output": "⠗⠂⠙⠳⠞" }, { "input": "readouts", "output": "⠗⠂⠙⠳⠞⠎" }, { "input": "reads", "output": "⠗⠂⠙⠎" }, { "input": "ready", "output": "⠗⠂⠙⠽" }, { "input": "readying", "output": "⠗⠂⠙⠽⠬" }, { "input": "reaffirm", "output": "â —â ‘â â –â Šâ —â " }, { "input": "reaffirmed", "output": "â —â ‘â â –â Šâ —â â «" }, { "input": "reaffirming", "output": "â —â ‘â â –â Šâ —â â ¬" }, { "input": "reaffirms", "output": "â —â ‘â â –â Šâ —â â Ž" }, { "input": "reagent", "output": "â —â ‘â â ›â ¢â ž" }, { "input": "reagents", "output": "â —â ‘â â ›â ¢â žâ Ž" }, { "input": "real", "output": "â —â ‚â ‡" }, { "input": "realer", "output": "⠗⠂⠇⠻" }, { "input": "reales", "output": "⠗⠂⠇⠑⠎" }, { "input": "realest", "output": "⠗⠂⠇⠑⠌" }, { "input": "realign", "output": "â —â ‘â â ‡â Šâ ›â " }, { "input": "realism", "output": "⠗⠂⠇⠊⠎â " }, { "input": "realist", "output": "⠗⠂⠇⠊⠌" }, { "input": "realistic", "output": "⠗⠂⠇⠊⠌⠊⠉" }, { "input": "realistically", "output": "⠗⠂⠇⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "realists", "output": "⠗⠂⠇⠊⠌⠎" }, { "input": "realities", "output": "⠗⠂⠇⠊⠞⠊⠑⠎" }, { "input": "reality", "output": "⠗⠂⠇⠰⠽" }, { "input": "realizable", "output": "⠗⠂⠇⠊⠵â â ƒâ ‡â ‘" }, { "input": "realization", "output": "⠗⠂⠇⠊⠵â â °â " }, { "input": "realize", "output": "⠗⠂⠇⠊⠵⠑" }, { "input": "realized", "output": "⠗⠂⠇⠊⠵⠫" }, { "input": "realizes", "output": "⠗⠂⠇⠊⠵⠑⠎" }, { "input": "realizing", "output": "⠗⠂⠇⠊⠵⠬" }, { "input": "reallocate", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ ‘" }, { "input": "reallocated", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ «" }, { "input": "reallocates", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ ‘â Ž" }, { "input": "reallocating", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ ¬" }, { "input": "reallocation", "output": "â —â ‘â â ‡â ‡â •â ‰â â °â " }, { "input": "really", "output": "⠗⠂⠇⠇⠽" }, { "input": "realm", "output": "â —â ‚â ‡â " }, { "input": "realms", "output": "â —â ‚â ‡â â Ž" }, { "input": "reals", "output": "⠗⠂⠇⠎" }, { "input": "realtor", "output": "⠗⠂⠇⠞⠕⠗" }, { "input": "realtors", "output": "⠗⠂⠇⠞⠕⠗⠎" }, { "input": "realty", "output": "⠗⠂⠇⠞⠽" }, { "input": "ream", "output": "â —â ‚â " }, { "input": "reamed", "output": "â —â ‚â â «" }, { "input": "reamer", "output": "â —â ‚â â »" }, { "input": "reamers", "output": "â —â ‚â â »â Ž" }, { "input": "reaming", "output": "â —â ‚â â ¬" }, { "input": "reams", "output": "â —â ‚â â Ž" }, { "input": "reanimate", "output": "â —â ‘â â â Šâ â â žâ ‘" }, { "input": "reanimated", "output": "â —â ‘â â â Šâ â â žâ «" }, { "input": "reanimates", "output": "â —â ‘â â â Šâ â â žâ ‘â Ž" }, { "input": "reanimating", "output": "â —â ‘â â â Šâ â â žâ ¬" }, { "input": "reap", "output": "â —â ‚â " }, { "input": "reaped", "output": "â —â ‚â â «" }, { "input": "reaper", "output": "â —â ‚â â »" }, { "input": "reapers", "output": "â —â ‚â â »â Ž" }, { "input": "reaping", "output": "â —â ‚â â ¬" }, { "input": "reappear", "output": "â —â ‘â â â â ‘â œ" }, { "input": "reappearance", "output": "â —â ‘â â â â ‘⠜⠨⠑" }, { "input": "reappearances", "output": "â —â ‘â â â â ‘⠜⠨⠑⠎" }, { "input": "reappeared", "output": "â —â ‘â â â â ‘⠜⠫" }, { "input": "reappearing", "output": "â —â ‘â â â â ‘⠜⠬" }, { "input": "reappears", "output": "â —â ‘â â â â ‘⠜⠎" }, { "input": "reapplied", "output": "â —â ‘â â â â ‡â Šâ «" }, { "input": "reapplies", "output": "â —â ‘â â â â ‡â Šâ ‘â Ž" }, { "input": "reapply", "output": "â —â ‘â â â â ‡â ½" }, { "input": "reapplying", "output": "â —â ‘â â â â ‡â ½â ¬" }, { "input": "reappoint", "output": "â —â ‘â â â â •⠔⠞" }, { "input": "reappointed", "output": "â —â ‘â â â â •⠔⠞⠫" }, { "input": "reappointing", "output": "â —â ‘â â â â •⠔⠞⠬" }, { "input": "reappointment", "output": "â —â ‘â â â â •⠔⠞⠰⠞" }, { "input": "reappoints", "output": "â —â ‘â â â â •⠔⠞⠎" }, { "input": "reapportion", "output": "â —â ‘â â â â •â —â °â " }, { "input": "reapportioned", "output": "â —â ‘â â â â •â —â °â â «" }, { "input": "reapportioning", "output": "â —â ‘â â â â •â —â °â â ¬" }, { "input": "reapportionment", "output": "â —â ‘â â â â •â —â °â â °â ž" }, { "input": "reapportions", "output": "â —â ‘â â â â •â —â °â â Ž" }, { "input": "reappraisal", "output": "â —â ‘â â â â —â â Šâ Žâ â ‡" }, { "input": "reappraisals", "output": "â —â ‘â â â â —â â Šâ Žâ â ‡â Ž" }, { "input": "reappraise", "output": "â —â ‘â â â â —â â Šâ Žâ ‘" }, { "input": "reappraised", "output": "â —â ‘â â â â —â â Šâ Žâ «" }, { "input": "reappraises", "output": "â —â ‘â â â â —â â Šâ Žâ ‘â Ž" }, { "input": "reappraising", "output": "â —â ‘â â â â —â â Šâ Žâ ¬" }, { "input": "reaps", "output": "â —â ‚â â Ž" }, { "input": "rear", "output": "â —â ‘â œ" }, { "input": "reared", "output": "⠗⠑⠜⠫" }, { "input": "rearing", "output": "⠗⠑⠜⠬" }, { "input": "rearm", "output": "â —â ‘â œâ " }, { "input": "rearmament", "output": "â —â ‘â œâ â â °â ž" }, { "input": "rearmed", "output": "â —â ‘â œâ â «" }, { "input": "rearming", "output": "â —â ‘â œâ â ¬" }, { "input": "rearmost", "output": "â —â ‘â œâ â •â Œ" }, { "input": "rearms", "output": "â —â ‘â œâ â Ž" }, { "input": "rearrange", "output": "⠗⠑⠜⠗â â â ›â ‘" }, { "input": "rearranged", "output": "⠗⠑⠜⠗â â â ›â «" }, { "input": "rearrangement", "output": "⠗⠑⠜⠗â â â ›â ‘â °â ž" }, { "input": "rearrangements", "output": "⠗⠑⠜⠗â â â ›â ‘â °â žâ Ž" }, { "input": "rearranges", "output": "⠗⠑⠜⠗â â â ›â ‘â Ž" }, { "input": "rearranging", "output": "⠗⠑⠜⠗â â â ›â ¬" }, { "input": "rears", "output": "⠗⠑⠜⠎" }, { "input": "rearward", "output": "⠗⠑⠜⠺⠜⠙" }, { "input": "rearwards", "output": "⠗⠑⠜⠺⠜⠙⠎" }, { "input": "reason", "output": "â —â ‚â Žâ •â " }, { "input": "reasonable", "output": "â —â ‚â Žâ •â â â ƒâ ‡â ‘" }, { "input": "reasonableness", "output": "â —â ‚â Žâ •â â â ƒâ ‡â ‘â °â Ž" }, { "input": "reasonably", "output": "â —â ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "reasoned", "output": "â —â ‚â Žâ •â â «" }, { "input": "reasoning", "output": "â —â ‚â Žâ •â â ¬" }, { "input": "reasons", "output": "â —â ‚â Žâ •â â Ž" }, { "input": "reassemble", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â ‘" }, { "input": "reassembled", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â «" }, { "input": "reassembles", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â ‘â Ž" }, { "input": "reassembling", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â ¬" }, { "input": "reassert", "output": "â —â ‘â â Žâ Žâ »â ž" }, { "input": "reasserted", "output": "â —â ‘â â Žâ Žâ »â žâ «" }, { "input": "reasserting", "output": "â —â ‘â â Žâ Žâ »â žâ ¬" }, { "input": "reasserts", "output": "â —â ‘â â Žâ Žâ »â žâ Ž" }, { "input": "reassess", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Ž" }, { "input": "reassessed", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "reassesses", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "reassessing", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ ¬" }, { "input": "reassessment", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ °â ž" }, { "input": "reassessments", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ °â žâ Ž" }, { "input": "reassign", "output": "â —â ‘â â Žâ Žâ Šâ ›â " }, { "input": "reassigned", "output": "â —â ‘â â Žâ Žâ Šâ ›â â «" }, { "input": "reassigning", "output": "â —â ‘â â Žâ Žâ Šâ ›â â ¬" }, { "input": "reassigns", "output": "â —â ‘â â Žâ Žâ Šâ ›â â Ž" }, { "input": "reassurance", "output": "â —â ‘â â Žâ Žâ ¥â —⠨⠑" }, { "input": "reassurances", "output": "â —â ‘â â Žâ Žâ ¥â —⠨⠑⠎" }, { "input": "reassure", "output": "â —â ‘â â Žâ Žâ ¥â —â ‘" }, { "input": "reassured", "output": "â —â ‘â â Žâ Žâ ¥â —â «" }, { "input": "reassures", "output": "â —â ‘â â Žâ Žâ ¥â —â ‘â Ž" }, { "input": "reassuring", "output": "â —â ‘â â Žâ Žâ ¥â —â ¬" }, { "input": "reassuringly", "output": "â —â ‘â â Žâ Žâ ¥â —⠬⠇⠽" }, { "input": "reawaken", "output": "â —â ‘â â ºâ â …â ¢" }, { "input": "reawakened", "output": "â —â ‘â â ºâ â …⠢⠫" }, { "input": "reawakening", "output": "â —â ‘â â ºâ â …⠢⠬" }, { "input": "reawakens", "output": "â —â ‘â â ºâ â …⠢⠎" }, { "input": "rebate", "output": "â —â ‘â ƒâ â žâ ‘" }, { "input": "rebated", "output": "â —â ‘â ƒâ â žâ «" }, { "input": "rebates", "output": "â —â ‘â ƒâ â žâ ‘â Ž" }, { "input": "rebating", "output": "â —â ‘â ƒâ â žâ ¬" }, { "input": "rebel", "output": "⠗⠑⠃⠑⠇" }, { "input": "rebelled", "output": "⠗⠑⠃⠑⠇⠇⠫" }, { "input": "rebelling", "output": "⠗⠑⠃⠑⠇⠇⠬" }, { "input": "rebellion", "output": "⠗⠑⠃⠑⠇⠇⠊⠕â " }, { "input": "rebellions", "output": "⠗⠑⠃⠑⠇⠇⠊⠕â â Ž" }, { "input": "rebellious", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎" }, { "input": "rebelliously", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎⠇⠽" }, { "input": "rebelliousness", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎⠰⠎" }, { "input": "rebels", "output": "⠗⠑⠃⠑⠇⠎" }, { "input": "rebind", "output": "⠗⠑⠃⠔⠙" }, { "input": "rebinding", "output": "⠗⠑⠃⠔⠙⠬" }, { "input": "rebinds", "output": "⠗⠑⠃⠔⠙⠎" }, { "input": "rebirth", "output": "⠗⠑⠃⠊⠗⠹" }, { "input": "rebirths", "output": "⠗⠑⠃⠊⠗⠹⠎" }, { "input": "reborn", "output": "⠗⠑⠃⠕⠗â " }, { "input": "rebound", "output": "⠗⠑⠃⠨⠙" }, { "input": "rebounded", "output": "⠗⠑⠃⠨⠙⠫" }, { "input": "rebounding", "output": "⠗⠑⠃⠨⠙⠬" }, { "input": "rebounds", "output": "⠗⠑⠃⠨⠙⠎" }, { "input": "rebroadcast", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œ" }, { "input": "rebroadcasted", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œâ «" }, { "input": "rebroadcasting", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œâ ¬" }, { "input": "rebroadcasts", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œâ Ž" }, { "input": "rebuff", "output": "⠗⠑⠃⠥⠋⠋" }, { "input": "rebuffed", "output": "⠗⠑⠃⠥⠖⠫" }, { "input": "rebuffing", "output": "⠗⠑⠃⠥⠖⠬" }, { "input": "rebuffs", "output": "⠗⠑⠃⠥⠖⠎" }, { "input": "rebuild", "output": "⠗⠑⠃⠥⠊⠇⠙" }, { "input": "rebuilding", "output": "⠗⠑⠃⠥⠊⠇⠙⠬" }, { "input": "rebuilds", "output": "⠗⠑⠃⠥⠊⠇⠙⠎" }, { "input": "rebuilt", "output": "⠗⠑⠃⠥⠊⠇⠞" }, { "input": "rebuke", "output": "⠗⠑⠃⠥⠅⠑" }, { "input": "rebuked", "output": "⠗⠑⠃⠥⠅⠫" }, { "input": "rebukes", "output": "⠗⠑⠃⠥⠅⠑⠎" }, { "input": "rebuking", "output": "⠗⠑⠃⠥⠅⠬" }, { "input": "rebus", "output": "⠗⠑⠃⠥⠎" }, { "input": "rebuses", "output": "⠗⠑⠃⠥⠎⠑⠎" }, { "input": "rebut", "output": "⠗⠑⠃⠥⠞" }, { "input": "rebuts", "output": "⠗⠑⠃⠥⠞⠎" }, { "input": "rebuttal", "output": "⠗⠑⠃⠥⠞⠞â â ‡" }, { "input": "rebuttals", "output": "⠗⠑⠃⠥⠞⠞â â ‡â Ž" }, { "input": "rebutted", "output": "⠗⠑⠃⠥⠞⠞⠫" }, { "input": "rebutting", "output": "⠗⠑⠃⠥⠞⠞⠬" }, { "input": "recalcitrance", "output": "â —â ‘â ‰â â ‡â ‰â Šâ žâ —⠨⠑" }, { "input": "recalcitrant", "output": "â —â ‘â ‰â â ‡â ‰â Šâ žâ —â â â ž" }, { "input": "recall", "output": "â —â ‘â ‰â â ‡â ‡" }, { "input": "recalled", "output": "â —â ‘â ‰â â ‡â ‡â «" }, { "input": "recalling", "output": "â —â ‘â ‰â â ‡â ‡â ¬" }, { "input": "recalls", "output": "â —â ‘â ‰â â ‡â ‡â Ž" }, { "input": "recant", "output": "â —â ‘â ‰â â â ž" }, { "input": "recantation", "output": "â —â ‘â ‰â â â žâ â °â " }, { "input": "recantations", "output": "â —â ‘â ‰â â â žâ â °â â Ž" }, { "input": "recanted", "output": "â —â ‘â ‰â â â žâ «" }, { "input": "recanting", "output": "â —â ‘â ‰â â â žâ ¬" }, { "input": "recants", "output": "â —â ‘â ‰â â â žâ Ž" }, { "input": "recap", "output": "â —â ‘â ‰â â " }, { "input": "recapitulate", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ ‘" }, { "input": "recapitulated", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ «" }, { "input": "recapitulates", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "recapitulating", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ ¬" }, { "input": "recapitulation", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â °â " }, { "input": "recapitulations", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â °â â Ž" }, { "input": "recapped", "output": "â —â ‘â ‰â â â â «" }, { "input": "recapping", "output": "â —â ‘â ‰â â â â ¬" }, { "input": "recaps", "output": "â —â ‘â ‰â â â Ž" }, { "input": "recapture", "output": "â —â ‘â ‰â â â žâ ¥â —â ‘" }, { "input": "recaptured", "output": "â —â ‘â ‰â â â žâ ¥â —â «" }, { "input": "recaptures", "output": "â —â ‘â ‰â â â žâ ¥â —â ‘â Ž" }, { "input": "recapturing", "output": "â —â ‘â ‰â â â žâ ¥â —â ¬" }, { "input": "recast", "output": "â —â ‘â ‰â â Œ" }, { "input": "recasting", "output": "â —â ‘â ‰â â Œâ ¬" }, { "input": "recasts", "output": "â —â ‘â ‰â â Œâ Ž" }, { "input": "recede", "output": "⠗⠑⠉⠫⠑" }, { "input": "receded", "output": "⠗⠑⠉⠫⠫" }, { "input": "recedes", "output": "⠗⠑⠉⠫⠑⠎" }, { "input": "receding", "output": "⠗⠑⠉⠫⠬" }, { "input": "receipt", "output": "⠗⠑⠉⠑⠊â â ž" }, { "input": "receipted", "output": "⠗⠑⠉⠑⠊â â žâ «" }, { "input": "receipting", "output": "⠗⠑⠉⠑⠊â â žâ ¬" }, { "input": "receipts", "output": "⠗⠑⠉⠑⠊â â žâ Ž" }, { "input": "receivable", "output": "⠗⠑⠉⠑⠊⠧â â ƒâ ‡â ‘" }, { "input": "receive", "output": "⠗⠉⠧" }, { "input": "received", "output": "⠗⠉⠧⠙" }, { "input": "receiver", "output": "⠗⠉⠧⠗" }, { "input": "receivers", "output": "⠗⠉⠧⠗⠎" }, { "input": "receivership", "output": "⠗⠉⠧⠗⠩⠊â " }, { "input": "receives", "output": "⠗⠉⠧⠎" }, { "input": "receiving", "output": "⠗⠉⠧⠛" }, { "input": "recent", "output": "⠗⠑⠉⠢⠞" }, { "input": "recenter", "output": "⠗⠑⠉⠢⠞⠻" }, { "input": "recentest", "output": "⠗⠑⠉⠢⠞⠑⠌" }, { "input": "recently", "output": "⠗⠑⠉⠢⠞⠇⠽" }, { "input": "receptacle", "output": "⠗⠑⠉⠑â â žâ â ‰â ‡â ‘" }, { "input": "receptacles", "output": "⠗⠑⠉⠑â â žâ â ‰â ‡â ‘â Ž" }, { "input": "reception", "output": "⠗⠑⠉⠑â â °â " }, { "input": "receptionist", "output": "⠗⠑⠉⠑â â °â â Šâ Œ" }, { "input": "receptionists", "output": "⠗⠑⠉⠑â â °â â Šâ Œâ Ž" }, { "input": "receptions", "output": "⠗⠑⠉⠑â â °â â Ž" }, { "input": "receptive", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘" }, { "input": "receptively", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘⠇⠽" }, { "input": "receptiveness", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘â °â Ž" }, { "input": "receptivity", "output": "⠗⠑⠉⠑â â žâ Šâ §â °â ½" }, { "input": "receptor", "output": "⠗⠑⠉⠑â â žâ •â —" }, { "input": "receptors", "output": "⠗⠑⠉⠑â â žâ •â —â Ž" }, { "input": "recess", "output": "⠗⠑⠉⠑⠎⠎" }, { "input": "recessed", "output": "⠗⠑⠉⠑⠎⠎⠫" }, { "input": "recesses", "output": "⠗⠑⠉⠑⠎⠎⠑⠎" }, { "input": "recessing", "output": "⠗⠑⠉⠑⠎⠎⠬" }, { "input": "recession", "output": "⠗⠑⠉⠑⠎⠨â " }, { "input": "recessional", "output": "⠗⠑⠉⠑⠎⠨â â â ‡" }, { "input": "recessionals", "output": "⠗⠑⠉⠑⠎⠨â â â ‡â Ž" }, { "input": "recessions", "output": "⠗⠑⠉⠑⠎⠨â â Ž" }, { "input": "recessive", "output": "⠗⠑⠉⠑⠎⠎⠊⠧⠑" }, { "input": "recessives", "output": "⠗⠑⠉⠑⠎⠎⠊⠧⠑⠎" }, { "input": "recharge", "output": "⠗⠑⠡⠜⠛⠑" }, { "input": "rechargeable", "output": "⠗⠑⠡⠜⠛⠂⠃⠇⠑" }, { "input": "recharged", "output": "⠗⠑⠡⠜⠛⠫" }, { "input": "recharges", "output": "⠗⠑⠡⠜⠛⠑⠎" }, { "input": "recharging", "output": "⠗⠑⠡⠜⠛⠬" }, { "input": "recheck", "output": "⠗⠑⠡⠑⠉⠅" }, { "input": "rechecked", "output": "⠗⠑⠡⠑⠉⠅⠫" }, { "input": "rechecking", "output": "⠗⠑⠡⠑⠉⠅⠬" }, { "input": "rechecks", "output": "⠗⠑⠡⠑⠉⠅⠎" }, { "input": "recherché", "output": "⠗⠑⠡⠻⠡⠠⠘⠻â â ˜â ‰" }, { "input": "recidivism", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠎â " }, { "input": "recidivist", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠌" }, { "input": "recidivists", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠌⠎" }, { "input": "recipe", "output": "⠗⠑⠉⠊â â ‘" }, { "input": "recipes", "output": "⠗⠑⠉⠊â â ‘â Ž" }, { "input": "recipient", "output": "⠗⠑⠉⠊â â Šâ ¢â ž" }, { "input": "recipients", "output": "⠗⠑⠉⠊â â Šâ ¢â žâ Ž" }, { "input": "reciprocal", "output": "⠗⠑⠉⠊â â —â •â ‰â â ‡" }, { "input": "reciprocally", "output": "⠗⠑⠉⠊â â —â •â ‰â â ‡â ‡â ½" }, { "input": "reciprocals", "output": "⠗⠑⠉⠊â â —â •â ‰â â ‡â Ž" }, { "input": "reciprocate", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ ‘" }, { "input": "reciprocated", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ «" }, { "input": "reciprocates", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ ‘â Ž" }, { "input": "reciprocating", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ ¬" }, { "input": "reciprocation", "output": "⠗⠑⠉⠊â â —â •â ‰â â °â " }, { "input": "reciprocity", "output": "⠗⠑⠉⠊â â —⠕⠉⠰⠽" }, { "input": "recital", "output": "⠗⠑⠉⠊⠞â â ‡" }, { "input": "recitals", "output": "⠗⠑⠉⠊⠞â â ‡â Ž" }, { "input": "recitation", "output": "⠗⠑⠉⠊⠞â â °â " }, { "input": "recitations", "output": "⠗⠑⠉⠊⠞â â °â â Ž" }, { "input": "recitative", "output": "⠗⠑⠉⠊⠞â â žâ Šâ §â ‘" }, { "input": "recitatives", "output": "⠗⠑⠉⠊⠞â â žâ Šâ §â ‘â Ž" }, { "input": "recite", "output": "⠗⠑⠉⠊⠞⠑" }, { "input": "recited", "output": "⠗⠑⠉⠊⠞⠫" }, { "input": "recites", "output": "⠗⠑⠉⠊⠞⠑⠎" }, { "input": "reciting", "output": "⠗⠑⠉⠊⠞⠬" }, { "input": "reckless", "output": "⠗⠑⠉⠅⠨⠎" }, { "input": "recklessly", "output": "⠗⠑⠉⠅⠨⠎⠇⠽" }, { "input": "recklessness", "output": "⠗⠑⠉⠅⠨⠎⠰⠎" }, { "input": "reckon", "output": "⠗⠑⠉⠅⠕â " }, { "input": "reckoned", "output": "⠗⠑⠉⠅⠕â â «" }, { "input": "reckoning", "output": "⠗⠑⠉⠅⠕â â ¬" }, { "input": "reckonings", "output": "⠗⠑⠉⠅⠕â â ¬â Ž" }, { "input": "reckons", "output": "⠗⠑⠉⠅⠕â â Ž" }, { "input": "reclaim", "output": "⠗⠑⠉⠇â â Šâ " }, { "input": "reclaimed", "output": "⠗⠑⠉⠇â â Šâ â «" }, { "input": "reclaiming", "output": "⠗⠑⠉⠇â â Šâ â ¬" }, { "input": "reclaims", "output": "⠗⠑⠉⠇â â Šâ â Ž" }, { "input": "reclamation", "output": "⠗⠑⠉⠇â â â â °â " }, { "input": "reclassified", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "reclassifies", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "reclassify", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â ½" }, { "input": "reclassifying", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â ½â ¬" }, { "input": "recline", "output": "⠗⠑⠉⠇⠔⠑" }, { "input": "reclined", "output": "⠗⠑⠉⠇⠔⠫" }, { "input": "recliner", "output": "⠗⠑⠉⠇⠔⠻" }, { "input": "recliners", "output": "⠗⠑⠉⠇⠔⠻⠎" }, { "input": "reclines", "output": "⠗⠑⠉⠇⠔⠑⠎" }, { "input": "reclining", "output": "⠗⠑⠉⠇⠔⠬" }, { "input": "recluse", "output": "⠗⠑⠉⠇⠥⠎⠑" }, { "input": "recluses", "output": "⠗⠑⠉⠇⠥⠎⠑⠎" }, { "input": "reclusive", "output": "⠗⠑⠉⠇⠥⠎⠊⠧⠑" }, { "input": "recognition", "output": "⠗⠑⠉⠕⠛â â Šâ °â " }, { "input": "recognizable", "output": "⠗⠑⠉⠕⠛â â Šâ µâ â ƒâ ‡â ‘" }, { "input": "recognizably", "output": "⠗⠑⠉⠕⠛â â Šâ µâ â ƒâ ‡â ½" }, { "input": "recognizance", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ¨â ‘" }, { "input": "recognize", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ‘" }, { "input": "recognized", "output": "⠗⠑⠉⠕⠛â â Šâ µâ «" }, { "input": "recognizer", "output": "⠗⠑⠉⠕⠛â â Šâ µâ »" }, { "input": "recognizes", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ‘â Ž" }, { "input": "recognizing", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ¬" }, { "input": "recoil", "output": "⠗⠑⠉⠕⠊⠇" }, { "input": "recoiled", "output": "⠗⠑⠉⠕⠊⠇⠫" }, { "input": "recoiling", "output": "⠗⠑⠉⠕⠊⠇⠬" }, { "input": "recoils", "output": "⠗⠑⠉⠕⠊⠇⠎" }, { "input": "recollect", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞" }, { "input": "recollected", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞⠫" }, { "input": "recollecting", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞⠬" }, { "input": "recollection", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠰â " }, { "input": "recollections", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠰â â Ž" }, { "input": "recollects", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞⠎" }, { "input": "recombination", "output": "⠗⠑⠉⠕â â ƒâ ”â â °â " }, { "input": "recombine", "output": "⠗⠑⠉⠕â â ƒâ ”â ‘" }, { "input": "recombined", "output": "⠗⠑⠉⠕â â ƒâ ”â «" }, { "input": "recombines", "output": "⠗⠑⠉⠕â â ƒâ ”â ‘â Ž" }, { "input": "recombining", "output": "⠗⠑⠉⠕â â ƒâ ”â ¬" }, { "input": "recommence", "output": "⠗⠑⠉⠕â â â °â ‘" }, { "input": "recommenced", "output": "⠗⠑⠉⠕â â â °â ‘â ™" }, { "input": "recommences", "output": "⠗⠑⠉⠕â â â °â ‘â Ž" }, { "input": "recommencing", "output": "⠗⠑⠉⠕â â â ¢â ‰â ¬" }, { "input": "recommend", "output": "⠗⠑⠉⠕â â â ¢â ™" }, { "input": "recommendation", "output": "⠗⠑⠉⠕â â â ¢â ™â â °â " }, { "input": "recommendations", "output": "⠗⠑⠉⠕â â â ¢â ™â â °â â Ž" }, { "input": "recommended", "output": "⠗⠑⠉⠕â â â ¢â ™â «" }, { "input": "recommending", "output": "⠗⠑⠉⠕â â â ¢â ™â ¬" }, { "input": "recommends", "output": "⠗⠑⠉⠕â â â ¢â ™â Ž" }, { "input": "recompense", "output": "⠗⠑⠉⠕â â â ¢â Žâ ‘" }, { "input": "recompensed", "output": "⠗⠑⠉⠕â â â ¢â Žâ «" }, { "input": "recompenses", "output": "⠗⠑⠉⠕â â â ¢â Žâ ‘â Ž" }, { "input": "recompensing", "output": "⠗⠑⠉⠕â â â ¢â Žâ ¬" }, { "input": "recompilation", "output": "⠗⠑⠉⠕â â â Šâ ‡â â °â " }, { "input": "recompile", "output": "⠗⠑⠉⠕â â â Šâ ‡â ‘" }, { "input": "recompiled", "output": "⠗⠑⠉⠕â â â Šâ ‡â «" }, { "input": "recompiling", "output": "⠗⠑⠉⠕â â â Šâ ‡â ¬" }, { "input": "reconcilable", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â â ƒâ ‡â ‘" }, { "input": "reconcile", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â ‘" }, { "input": "reconciled", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â «" }, { "input": "reconciles", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â ‘â Ž" }, { "input": "reconciliation", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â Šâ â °â " }, { "input": "reconciliations", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â Šâ â °â â Ž" }, { "input": "reconciling", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â ¬" }, { "input": "recondite", "output": "⠗⠑⠉⠕â â ™â Šâ žâ ‘" }, { "input": "recondition", "output": "⠗⠑⠉⠕â â ™â Šâ °â " }, { "input": "reconditioned", "output": "⠗⠑⠉⠕â â ™â Šâ °â â «" }, { "input": "reconditioning", "output": "⠗⠑⠉⠕â â ™â Šâ °â â ¬" }, { "input": "reconditions", "output": "⠗⠑⠉⠕â â ™â Šâ °â â Ž" }, { "input": "reconfiguration", "output": "⠗⠑⠉⠕â â ‹â Šâ ›â ¥â —â â °â " }, { "input": "reconfigure", "output": "⠗⠑⠉⠕â â ‹â Šâ ›â ¥â —â ‘" }, { "input": "reconfigured", "output": "⠗⠑⠉⠕â â ‹â Šâ ›â ¥â —â «" }, { "input": "reconnaissance", "output": "⠗⠑⠉⠕â â â â Šâ Žâ Žâ ¨â ‘" }, { "input": "reconnaissances", "output": "⠗⠑⠉⠕â â â â Šâ Žâ Žâ ¨â ‘â Ž" }, { "input": "reconnect", "output": "⠗⠑⠉⠕â â â ‘⠉⠞" }, { "input": "reconnected", "output": "⠗⠑⠉⠕â â â ‘⠉⠞⠫" }, { "input": "reconnecting", "output": "⠗⠑⠉⠕â â â ‘⠉⠞⠬" }, { "input": "reconnects", "output": "⠗⠑⠉⠕â â â ‘⠉⠞⠎" }, { "input": "reconnoiter", "output": "⠗⠑⠉⠕â â â •â Šâ žâ »" }, { "input": "reconnoitered", "output": "⠗⠑⠉⠕â â â •⠊⠞⠻⠫" }, { "input": "reconnoitering", "output": "⠗⠑⠉⠕â â â •⠊⠞⠻⠬" }, { "input": "reconnoiters", "output": "⠗⠑⠉⠕â â â •⠊⠞⠻⠎" }, { "input": "reconquer", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »" }, { "input": "reconquered", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »â «" }, { "input": "reconquering", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »â ¬" }, { "input": "reconquers", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »â Ž" }, { "input": "reconsider", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »" }, { "input": "reconsideration", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â â °â " }, { "input": "reconsidered", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â «" }, { "input": "reconsidering", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â ¬" }, { "input": "reconsiders", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â Ž" }, { "input": "reconstitute", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ ‘" }, { "input": "reconstituted", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ «" }, { "input": "reconstitutes", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ ‘â Ž" }, { "input": "reconstituting", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ ¬" }, { "input": "reconstruct", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞" }, { "input": "reconstructed", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞⠫" }, { "input": "reconstructing", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞⠬" }, { "input": "reconstruction", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠰â " }, { "input": "reconstructions", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠰â â Ž" }, { "input": "reconstructs", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞⠎" }, { "input": "reconvene", "output": "⠗⠑⠉⠕â â §â ¢â ‘" }, { "input": "reconvened", "output": "⠗⠑⠉⠕â â §â ¢â «" }, { "input": "reconvenes", "output": "⠗⠑⠉⠕â â §â ¢â ‘â Ž" }, { "input": "reconvening", "output": "⠗⠑⠉⠕â â §â ¢â ¬" }, { "input": "recopied", "output": "⠗⠑⠉⠕â â Šâ «" }, { "input": "recopies", "output": "⠗⠑⠉⠕â â Šâ ‘â Ž" }, { "input": "recopy", "output": "⠗⠑⠉⠕â â ½" }, { "input": "recopying", "output": "⠗⠑⠉⠕â â ½â ¬" }, { "input": "record", "output": "⠗⠑⠉⠕⠗⠙" }, { "input": "recorded", "output": "⠗⠑⠉⠕⠗⠙⠫" }, { "input": "recorder", "output": "⠗⠑⠉⠕⠗⠙⠻" }, { "input": "recorders", "output": "⠗⠑⠉⠕⠗⠙⠻⠎" }, { "input": "recording", "output": "⠗⠑⠉⠕⠗⠙⠬" }, { "input": "recordings", "output": "⠗⠑⠉⠕⠗⠙⠬⠎" }, { "input": "records", "output": "⠗⠑⠉⠕⠗⠙⠎" }, { "input": "recount", "output": "⠗⠑⠉⠨⠞" }, { "input": "recounted", "output": "⠗⠑⠉⠨⠞⠫" }, { "input": "recounting", "output": "⠗⠑⠉⠨⠞⠬" }, { "input": "recounts", "output": "⠗⠑⠉⠨⠞⠎" }, { "input": "recoup", "output": "⠗⠑⠉⠳â " }, { "input": "recouped", "output": "⠗⠑⠉⠳â â «" }, { "input": "recouping", "output": "⠗⠑⠉⠳â â ¬" }, { "input": "recoups", "output": "⠗⠑⠉⠳â â Ž" }, { "input": "recourse", "output": "⠗⠑⠉⠳⠗⠎⠑" }, { "input": "recover", "output": "⠗⠑⠉⠕⠧⠻" }, { "input": "recoverable", "output": "⠗⠑⠉⠕⠧⠻â â ƒâ ‡â ‘" }, { "input": "recovered", "output": "⠗⠑⠉⠕⠧⠻⠫" }, { "input": "recoveries", "output": "⠗⠑⠉⠕⠧⠻⠊⠑⠎" }, { "input": "recovering", "output": "⠗⠑⠉⠕⠧⠻⠬" }, { "input": "recovers", "output": "⠗⠑⠉⠕⠧⠻⠎" }, { "input": "recovery", "output": "⠗⠑⠉⠕⠧⠻⠽" }, { "input": "recreant", "output": "⠗⠑⠉⠗⠂â â ž" }, { "input": "recreants", "output": "⠗⠑⠉⠗⠂â â žâ Ž" }, { "input": "recreate", "output": "⠗⠑⠉⠗⠂⠞⠑" }, { "input": "recreated", "output": "⠗⠑⠉⠗⠂⠞⠫" }, { "input": "recreates", "output": "⠗⠑⠉⠗⠂⠞⠑⠎" }, { "input": "recreating", "output": "⠗⠑⠉⠗⠂⠞⠬" }, { "input": "recreation", "output": "⠗⠑⠉⠗⠂⠰â " }, { "input": "recreational", "output": "⠗⠑⠉⠗⠂⠰â â â ‡" }, { "input": "recreations", "output": "⠗⠑⠉⠗⠂⠰â â Ž" }, { "input": "recriminate", "output": "⠗⠑⠉⠗⠊â â ”â â žâ ‘" }, { "input": "recriminated", "output": "⠗⠑⠉⠗⠊â â ”â â žâ «" }, { "input": "recriminates", "output": "⠗⠑⠉⠗⠊â â ”â â žâ ‘â Ž" }, { "input": "recriminating", "output": "⠗⠑⠉⠗⠊â â ”â â žâ ¬" }, { "input": "recrimination", "output": "⠗⠑⠉⠗⠊â â ”â â °â " }, { "input": "recriminations", "output": "⠗⠑⠉⠗⠊â â ”â â °â â Ž" }, { "input": "recrudescence", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠰⠑" }, { "input": "recruit", "output": "⠗⠑⠉⠗⠥⠊⠞" }, { "input": "recruited", "output": "⠗⠑⠉⠗⠥⠊⠞⠫" }, { "input": "recruiter", "output": "⠗⠑⠉⠗⠥⠊⠞⠻" }, { "input": "recruiters", "output": "⠗⠑⠉⠗⠥⠊⠞⠻⠎" }, { "input": "recruiting", "output": "⠗⠑⠉⠗⠥⠊⠞⠬" }, { "input": "recruitment", "output": "⠗⠑⠉⠗⠥⠊⠞⠰⠞" }, { "input": "recruits", "output": "⠗⠑⠉⠗⠥⠊⠞⠎" }, { "input": "recta", "output": "⠗⠑⠉⠞â " }, { "input": "rectal", "output": "⠗⠑⠉⠞â â ‡" }, { "input": "rectangle", "output": "⠗⠑⠉⠞â â â ›â ‡â ‘" }, { "input": "rectangles", "output": "⠗⠑⠉⠞â â â ›â ‡â ‘â Ž" }, { "input": "rectangular", "output": "⠗⠑⠉⠞â â â ›â ¥â ‡â œ" }, { "input": "rectifiable", "output": "⠗⠑⠉⠞⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "rectification", "output": "⠗⠑⠉⠞⠊⠋⠊⠉â â °â " }, { "input": "rectifications", "output": "⠗⠑⠉⠞⠊⠋⠊⠉â â °â â Ž" }, { "input": "rectified", "output": "⠗⠑⠉⠞⠊⠋⠊⠫" }, { "input": "rectifier", "output": "⠗⠑⠉⠞⠊⠋⠊⠻" }, { "input": "rectifiers", "output": "⠗⠑⠉⠞⠊⠋⠊⠻⠎" }, { "input": "rectifies", "output": "⠗⠑⠉⠞⠊⠋⠊⠑⠎" }, { "input": "rectify", "output": "⠗⠑⠉⠞⠊⠋⠽" }, { "input": "rectifying", "output": "⠗⠑⠉⠞⠊⠋⠽⠬" }, { "input": "rectilinear", "output": "⠗⠑⠉⠞⠊⠇⠔⠑⠜" }, { "input": "rectitude", "output": "⠗⠑⠉⠞⠊⠞⠥⠙⠑" }, { "input": "rector", "output": "⠗⠑⠉⠞⠕⠗" }, { "input": "rectories", "output": "⠗⠑⠉⠞⠕⠗⠊⠑⠎" }, { "input": "rectors", "output": "⠗⠑⠉⠞⠕⠗⠎" }, { "input": "rectory", "output": "⠗⠑⠉⠞⠕⠗⠽" }, { "input": "rectum", "output": "⠗⠑⠉⠞⠥â " }, { "input": "rectums", "output": "⠗⠑⠉⠞⠥â â Ž" }, { "input": "recumbent", "output": "⠗⠑⠉⠥â â ƒâ ¢â ž" }, { "input": "recuperate", "output": "⠗⠑⠉⠥â â »â â žâ ‘" }, { "input": "recuperated", "output": "⠗⠑⠉⠥â â »â â žâ «" }, { "input": "recuperates", "output": "⠗⠑⠉⠥â â »â â žâ ‘â Ž" }, { "input": "recuperating", "output": "⠗⠑⠉⠥â â »â â žâ ¬" }, { "input": "recuperation", "output": "⠗⠑⠉⠥â â »â â °â " }, { "input": "recuperative", "output": "⠗⠑⠉⠥â â »â â žâ Šâ §â ‘" }, { "input": "recur", "output": "⠗⠑⠉⠥⠗" }, { "input": "recurred", "output": "⠗⠑⠉⠥⠗⠗⠫" }, { "input": "recurrence", "output": "⠗⠑⠉⠥⠗⠗⠰⠑" }, { "input": "recurrences", "output": "⠗⠑⠉⠥⠗⠗⠰⠑⠎" }, { "input": "recurrent", "output": "⠗⠑⠉⠥⠗⠗⠢⠞" }, { "input": "recurring", "output": "⠗⠑⠉⠥⠗⠗⠬" }, { "input": "recurs", "output": "⠗⠑⠉⠥⠗⠎" }, { "input": "recursion", "output": "⠗⠑⠉⠥⠗⠨â " }, { "input": "recursive", "output": "⠗⠑⠉⠥⠗⠎⠊⠧⠑" }, { "input": "recursively", "output": "⠗⠑⠉⠥⠗⠎⠊⠧⠑⠇⠽" }, { "input": "recyclable", "output": "⠗⠑⠉⠽⠉⠇â â ƒâ ‡â ‘" }, { "input": "recyclables", "output": "⠗⠑⠉⠽⠉⠇â â ƒâ ‡â ‘â Ž" }, { "input": "recycle", "output": "⠗⠑⠉⠽⠉⠇⠑" }, { "input": "recycled", "output": "⠗⠑⠉⠽⠉⠇⠫" }, { "input": "recycles", "output": "⠗⠑⠉⠽⠉⠇⠑⠎" }, { "input": "recycling", "output": "⠗⠑⠉⠽⠉⠇⠬" }, { "input": "red", "output": "â —â «" }, { "input": "redbreast", "output": "⠗⠫⠃⠗⠂⠌" }, { "input": "redbreasts", "output": "⠗⠫⠃⠗⠂⠌⠎" }, { "input": "redcap", "output": "â —â «â ‰â â " }, { "input": "redcaps", "output": "â —â «â ‰â â â Ž" }, { "input": "redcoat", "output": "⠗⠫⠉⠕â â ž" }, { "input": "redcoats", "output": "⠗⠫⠉⠕â â žâ Ž" }, { "input": "redden", "output": "⠗⠫⠙⠢" }, { "input": "reddened", "output": "⠗⠫⠙⠢⠫" }, { "input": "reddening", "output": "⠗⠫⠙⠢⠬" }, { "input": "reddens", "output": "⠗⠫⠙⠢⠎" }, { "input": "redder", "output": "⠗⠫⠙⠻" }, { "input": "reddest", "output": "⠗⠫⠙⠑⠌" }, { "input": "reddish", "output": "⠗⠫⠙⠊⠩" }, { "input": "redecorate", "output": "⠗⠫⠑⠉⠕⠗â â žâ ‘" }, { "input": "redecorated", "output": "⠗⠫⠑⠉⠕⠗â â žâ «" }, { "input": "redecorates", "output": "⠗⠫⠑⠉⠕⠗â â žâ ‘â Ž" }, { "input": "redecorating", "output": "⠗⠫⠑⠉⠕⠗â â žâ ¬" }, { "input": "rededicate", "output": "â —â «â «â Šâ ‰â â žâ ‘" }, { "input": "rededicated", "output": "â —â «â «â Šâ ‰â â žâ «" }, { "input": "rededicates", "output": "â —â «â «â Šâ ‰â â žâ ‘â Ž" }, { "input": "rededicating", "output": "â —â «â «â Šâ ‰â â žâ ¬" }, { "input": "redeem", "output": "â —â «â ‘â ‘â " }, { "input": "redeemable", "output": "â —â «â ‘â ‘â â â ƒâ ‡â ‘" }, { "input": "redeemed", "output": "â —â «â ‘â ‘â â «" }, { "input": "redeemer", "output": "â —â «â ‘â ‘â â »" }, { "input": "redeemers", "output": "â —â «â ‘â ‘â â »â Ž" }, { "input": "redeeming", "output": "â —â «â ‘â ‘â â ¬" }, { "input": "redeems", "output": "â —â «â ‘â ‘â â Ž" }, { "input": "redefine", "output": "⠗⠫⠑⠋⠔⠑" }, { "input": "redefined", "output": "⠗⠫⠑⠋⠔⠫" }, { "input": "redefines", "output": "⠗⠫⠑⠋⠔⠑⠎" }, { "input": "redefining", "output": "⠗⠫⠑⠋⠔⠬" }, { "input": "redefinition", "output": "⠗⠫⠑⠋⠔⠊⠰â " }, { "input": "redemption", "output": "â —â «â ‘â â â °â " }, { "input": "redeploy", "output": "â —â «â ‘â â ‡â •â ½" }, { "input": "redeployed", "output": "â —â «â ‘â â ‡â •⠽⠫" }, { "input": "redeploying", "output": "â —â «â ‘â â ‡â •⠽⠬" }, { "input": "redeployment", "output": "â —â «â ‘â â ‡â •⠽⠰⠞" }, { "input": "redeploys", "output": "â —â «â ‘â â ‡â •⠽⠎" }, { "input": "redesign", "output": "â —â «â ‘â Žâ Šâ ›â " }, { "input": "redesigned", "output": "â —â «â ‘â Žâ Šâ ›â â «" }, { "input": "redesigning", "output": "â —â «â ‘â Žâ Šâ ›â â ¬" }, { "input": "redesigns", "output": "â —â «â ‘â Žâ Šâ ›â â Ž" }, { "input": "redevelop", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â " }, { "input": "redeveloped", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â «" }, { "input": "redeveloping", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â ¬" }, { "input": "redevelopment", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â °â ž" }, { "input": "redevelopments", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â °â žâ Ž" }, { "input": "redevelops", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â Ž" }, { "input": "redhead", "output": "â —â «â “â ‚â ™" }, { "input": "redheaded", "output": "⠗⠫⠓⠂⠙⠫" }, { "input": "redheads", "output": "⠗⠫⠓⠂⠙⠎" }, { "input": "redid", "output": "â —â «â Šâ ™" }, { "input": "redirect", "output": "⠗⠫⠊⠗⠑⠉⠞" }, { "input": "redirected", "output": "⠗⠫⠊⠗⠑⠉⠞⠫" }, { "input": "redirecting", "output": "⠗⠫⠊⠗⠑⠉⠞⠬" }, { "input": "redirection", "output": "⠗⠫⠊⠗⠑⠉⠰â " }, { "input": "redirects", "output": "⠗⠫⠊⠗⠑⠉⠞⠎" }, { "input": "rediscover", "output": "⠗⠫⠊⠎⠉⠕⠧⠻" }, { "input": "rediscovered", "output": "⠗⠫⠊⠎⠉⠕⠧⠻⠫" }, { "input": "rediscovering", "output": "⠗⠫⠊⠎⠉⠕⠧⠻⠬" }, { "input": "rediscovers", "output": "⠗⠫⠊⠎⠉⠕⠧⠻⠎" }, { "input": "rediscovery", "output": "⠗⠫⠊⠎⠉⠕⠧⠻⠽" }, { "input": "redistribute", "output": "⠗⠫⠊⠌⠗⠊⠃⠥⠞⠑" }, { "input": "redistributed", "output": "⠗⠫⠊⠌⠗⠊⠃⠥⠞⠫" }, { "input": "redistributes", "output": "⠗⠫⠊⠌⠗⠊⠃⠥⠞⠑⠎" }, { "input": "redistributing", "output": "⠗⠫⠊⠌⠗⠊⠃⠥⠞⠬" }, { "input": "redistribution", "output": "⠗⠫⠊⠌⠗⠊⠃⠥⠰â " }, { "input": "redistrict", "output": "⠗⠫⠊⠌⠗⠊⠉⠞" }, { "input": "redistricted", "output": "⠗⠫⠊⠌⠗⠊⠉⠞⠫" }, { "input": "redistricting", "output": "⠗⠫⠊⠌⠗⠊⠉⠞⠬" }, { "input": "redistricts", "output": "⠗⠫⠊⠌⠗⠊⠉⠞⠎" }, { "input": "redneck", "output": "â —â «â â ‘⠉⠅" }, { "input": "rednecks", "output": "â —â «â â ‘⠉⠅⠎" }, { "input": "redness", "output": "â —â «â °â Ž" }, { "input": "redo", "output": "â —â «â •" }, { "input": "redoes", "output": "â —â «â •â ‘â Ž" }, { "input": "redoing", "output": "â —â «â •â ¬" }, { "input": "redolence", "output": "⠗⠫⠕⠇⠰⠑" }, { "input": "redolent", "output": "⠗⠫⠕⠇⠢⠞" }, { "input": "redone", "output": "â —â «â â •" }, { "input": "redouble", "output": "⠗⠫⠳⠃⠇⠑" }, { "input": "redoubled", "output": "⠗⠫⠳⠃⠇⠫" }, { "input": "redoubles", "output": "⠗⠫⠳⠃⠇⠑⠎" }, { "input": "redoubling", "output": "⠗⠫⠳⠃⠇⠬" }, { "input": "redoubt", "output": "⠗⠫⠳⠃⠞" }, { "input": "redoubtable", "output": "⠗⠫⠳⠃⠞â â ƒâ ‡â ‘" }, { "input": "redoubts", "output": "⠗⠫⠳⠃⠞⠎" }, { "input": "redound", "output": "⠗⠫⠨⠙" }, { "input": "redounded", "output": "⠗⠫⠨⠙⠫" }, { "input": "redounding", "output": "⠗⠫⠨⠙⠬" }, { "input": "redounds", "output": "⠗⠫⠨⠙⠎" }, { "input": "redraft", "output": "â —â «â —â â ‹â ž" }, { "input": "redrafted", "output": "â —â «â —â â ‹â žâ «" }, { "input": "redrafting", "output": "â —â «â —â â ‹â žâ ¬" }, { "input": "redrafts", "output": "â —â «â —â â ‹â žâ Ž" }, { "input": "redraw", "output": "â —â «â —â â º" }, { "input": "redrawing", "output": "â —â «â —â â ºâ ¬" }, { "input": "redrawn", "output": "⠗⠑⠙⠗â â ºâ " }, { "input": "redraws", "output": "â —â «â —â â ºâ Ž" }, { "input": "redress", "output": "â —â «â —â ‘â Žâ Ž" }, { "input": "redressed", "output": "â —â «â —â ‘â Žâ Žâ «" }, { "input": "redresses", "output": "â —â «â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "redressing", "output": "â —â «â —â ‘â Žâ Žâ ¬" }, { "input": "redrew", "output": "â —â «â —â ‘â º" }, { "input": "reds", "output": "â —â «â Ž" }, { "input": "redskin", "output": "â —â «â Žâ …â ”" }, { "input": "redskins", "output": "⠗⠫⠎⠅⠔⠎" }, { "input": "reduce", "output": "⠗⠫⠥⠉⠑" }, { "input": "reduced", "output": "⠗⠫⠥⠉⠫" }, { "input": "reduces", "output": "⠗⠫⠥⠉⠑⠎" }, { "input": "reducing", "output": "⠗⠫⠥⠉⠬" }, { "input": "reduction", "output": "⠗⠫⠥⠉⠰â " }, { "input": "reductions", "output": "⠗⠫⠥⠉⠰â â Ž" }, { "input": "redundancies", "output": "â —â «â ¥â â ™â â â ‰â Šâ ‘â Ž" }, { "input": "redundancy", "output": "â —â «â ¥â â ™â â â ‰â ½" }, { "input": "redundant", "output": "â —â «â ¥â â ™â â â ž" }, { "input": "redundantly", "output": "â —â «â ¥â â ™â â â žâ ‡â ½" }, { "input": "redwood", "output": "⠗⠫⠺⠕⠕⠙" }, { "input": "redwoods", "output": "⠗⠫⠺⠕⠕⠙⠎" }, { "input": "reed", "output": "â —â ‘â «" }, { "input": "reedier", "output": "â —â ‘â «â Šâ »" }, { "input": "reediest", "output": "â —â ‘â «â Šâ ‘â Œ" }, { "input": "reeds", "output": "â —â ‘â «â Ž" }, { "input": "reeducate", "output": "⠗⠑⠫⠥⠉â â žâ ‘" }, { "input": "reeducated", "output": "⠗⠑⠫⠥⠉â â žâ «" }, { "input": "reeducates", "output": "⠗⠑⠫⠥⠉â â žâ ‘â Ž" }, { "input": "reeducating", "output": "⠗⠑⠫⠥⠉â â žâ ¬" }, { "input": "reeducation", "output": "⠗⠑⠫⠥⠉â â °â " }, { "input": "reedy", "output": "â —â ‘â «â ½" }, { "input": "reef", "output": "â —â ‘â ‘â ‹" }, { "input": "reefed", "output": "â —â ‘â ‘â ‹â «" }, { "input": "reefer", "output": "â —â ‘â ‘â ‹â »" }, { "input": "reefers", "output": "⠗⠑⠑⠋⠻⠎" }, { "input": "reefing", "output": "â —â ‘â ‘â ‹â ¬" }, { "input": "reefs", "output": "â —â ‘â ‘â ‹â Ž" }, { "input": "reek", "output": "â —â ‘â ‘â …" }, { "input": "reeked", "output": "â —â ‘â ‘â …â «" }, { "input": "reeking", "output": "â —â ‘â ‘â …â ¬" }, { "input": "reeks", "output": "â —â ‘â ‘â …â Ž" }, { "input": "reel", "output": "â —â ‘â ‘â ‡" }, { "input": "reelect", "output": "⠗⠑⠑⠇⠑⠉⠞" }, { "input": "reelected", "output": "⠗⠑⠑⠇⠑⠉⠞⠫" }, { "input": "reelecting", "output": "⠗⠑⠑⠇⠑⠉⠞⠬" }, { "input": "reelection", "output": "⠗⠑⠑⠇⠑⠉⠰â " }, { "input": "reelections", "output": "⠗⠑⠑⠇⠑⠉⠰â â Ž" }, { "input": "reelects", "output": "⠗⠑⠑⠇⠑⠉⠞⠎" }, { "input": "reeled", "output": "⠗⠑⠑⠇⠫" }, { "input": "reeling", "output": "⠗⠑⠑⠇⠬" }, { "input": "reels", "output": "⠗⠑⠑⠇⠎" }, { "input": "reemerge", "output": "â —â ‘â ‘â â »â ›â ‘" }, { "input": "reemerged", "output": "â —â ‘â ‘â â »â ›â «" }, { "input": "reemerges", "output": "â —â ‘â ‘â â »â ›â ‘â Ž" }, { "input": "reemerging", "output": "â —â ‘â ‘â â »â ›â ¬" }, { "input": "reemphasize", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ ‘" }, { "input": "reemphasized", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ «" }, { "input": "reemphasizes", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ ‘â Ž" }, { "input": "reemphasizing", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ ¬" }, { "input": "reenact", "output": "â —â ‘â ¢â â ‰â ž" }, { "input": "reenacted", "output": "â —â ‘â ¢â â ‰â žâ «" }, { "input": "reenacting", "output": "â —â ‘â ¢â â ‰â žâ ¬" }, { "input": "reenactment", "output": "â —â ‘â ¢â â ‰â žâ °â ž" }, { "input": "reenactments", "output": "â —â ‘â ¢â â ‰â žâ °â žâ Ž" }, { "input": "reenacts", "output": "â —â ‘â ¢â â ‰â žâ Ž" }, { "input": "reenforce", "output": "⠗⠑⠢⠿⠉⠑" }, { "input": "reenforced", "output": "⠗⠑⠢⠿⠉⠫" }, { "input": "reenforces", "output": "⠗⠑⠢⠿⠉⠑⠎" }, { "input": "reenforcing", "output": "⠗⠑⠢⠿⠉⠬" }, { "input": "reenlist", "output": "⠗⠑⠢⠇⠊⠌" }, { "input": "reenlisted", "output": "⠗⠑⠢⠇⠊⠌⠫" }, { "input": "reenlisting", "output": "⠗⠑⠢⠇⠊⠌⠬" }, { "input": "reenlists", "output": "⠗⠑⠢⠇⠊⠌⠎" }, { "input": "reenter", "output": "⠗⠑⠢⠞⠻" }, { "input": "reentered", "output": "⠗⠑⠢⠞⠻⠫" }, { "input": "reentering", "output": "⠗⠑⠢⠞⠻⠬" }, { "input": "reenters", "output": "⠗⠑⠢⠞⠻⠎" }, { "input": "reentries", "output": "⠗⠑⠢⠞⠗⠊⠑⠎" }, { "input": "reentry", "output": "⠗⠑⠢⠞⠗⠽" }, { "input": "reestablish", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©" }, { "input": "reestablished", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â «" }, { "input": "reestablishes", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "reestablishing", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â ¬" }, { "input": "reevaluate", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ ‘" }, { "input": "reevaluated", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ «" }, { "input": "reevaluates", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ ‘â Ž" }, { "input": "reevaluating", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ ¬" }, { "input": "reeve", "output": "â —â ‘â ‘â §â ‘" }, { "input": "reeved", "output": "â —â ‘â ‘â §â «" }, { "input": "reeves", "output": "â —â ‘â ‘â §â ‘â Ž" }, { "input": "reeving", "output": "â —â ‘â ‘â §â ¬" }, { "input": "reexamine", "output": "â —â ‘â ‘â ­â â â ”â ‘" }, { "input": "reexamined", "output": "â —â ‘â ‘â ­â â â ”â «" }, { "input": "reexamines", "output": "â —â ‘â ‘â ­â â â ”â ‘â Ž" }, { "input": "reexamining", "output": "â —â ‘â ‘â ­â â â ”â ¬" }, { "input": "ref", "output": "â —â ‘â ‹" }, { "input": "refashion", "output": "â —â ‘â ‹â â ©â Šâ •â " }, { "input": "refashioned", "output": "â —â ‘â ‹â â ©â Šâ •â â «" }, { "input": "refashioning", "output": "â —â ‘â ‹â â ©â Šâ •â â ¬" }, { "input": "refashions", "output": "â —â ‘â ‹â â ©â Šâ •â â Ž" }, { "input": "refectories", "output": "⠗⠑⠋⠑⠉⠞⠕⠗⠊⠑⠎" }, { "input": "refectory", "output": "⠗⠑⠋⠑⠉⠞⠕⠗⠽" }, { "input": "refer", "output": "â —â ‘â ‹â »" }, { "input": "referee", "output": "⠗⠑⠋⠻⠑⠑" }, { "input": "refereed", "output": "⠗⠑⠋⠻⠑⠫" }, { "input": "refereeing", "output": "⠗⠑⠋⠻⠑⠑⠬" }, { "input": "referees", "output": "⠗⠑⠋⠻⠑⠑⠎" }, { "input": "reference", "output": "⠗⠑⠋⠻⠰⠑" }, { "input": "referenced", "output": "⠗⠑⠋⠻⠰⠑⠙" }, { "input": "references", "output": "⠗⠑⠋⠻⠰⠑⠎" }, { "input": "referencing", "output": "⠗⠑⠋⠻⠢⠉⠬" }, { "input": "referenda", "output": "⠗⠑⠋⠻⠢⠙â " }, { "input": "referendum", "output": "⠗⠑⠋⠻⠢⠙⠥â " }, { "input": "referendums", "output": "⠗⠑⠋⠻⠢⠙⠥â â Ž" }, { "input": "referent", "output": "⠗⠑⠋⠻⠢⠞" }, { "input": "referential", "output": "⠗⠑⠋⠻⠢⠞⠊â â ‡" }, { "input": "referral", "output": "⠗⠑⠋⠻⠗â â ‡" }, { "input": "referrals", "output": "⠗⠑⠋⠻⠗â â ‡â Ž" }, { "input": "referred", "output": "⠗⠑⠋⠻⠗⠫" }, { "input": "referring", "output": "⠗⠑⠋⠻⠗⠬" }, { "input": "refers", "output": "⠗⠑⠋⠻⠎" }, { "input": "reffed", "output": "â —â ‘â –â «" }, { "input": "reffing", "output": "â —â ‘â –â ¬" }, { "input": "refile", "output": "⠗⠑⠋⠊⠇⠑" }, { "input": "refiled", "output": "⠗⠑⠋⠊⠇⠫" }, { "input": "refiles", "output": "⠗⠑⠋⠊⠇⠑⠎" }, { "input": "refiling", "output": "⠗⠑⠋⠊⠇⠬" }, { "input": "refill", "output": "⠗⠑⠋⠊⠇⠇" }, { "input": "refillable", "output": "⠗⠑⠋⠊⠇⠇â â ƒâ ‡â ‘" }, { "input": "refilled", "output": "⠗⠑⠋⠊⠇⠇⠫" }, { "input": "refilling", "output": "⠗⠑⠋⠊⠇⠇⠬" }, { "input": "refills", "output": "⠗⠑⠋⠊⠇⠇⠎" }, { "input": "refinance", "output": "⠗⠑⠋⠔⠨⠑" }, { "input": "refinanced", "output": "⠗⠑⠋⠔⠨⠑⠙" }, { "input": "refinances", "output": "⠗⠑⠋⠔⠨⠑⠎" }, { "input": "refinancing", "output": "â —â ‘â ‹â ”â â â ‰â ¬" }, { "input": "refine", "output": "⠗⠑⠋⠔⠑" }, { "input": "refined", "output": "⠗⠑⠋⠔⠫" }, { "input": "refinement", "output": "⠗⠑⠋⠔⠑⠰⠞" }, { "input": "refinements", "output": "⠗⠑⠋⠔⠑⠰⠞⠎" }, { "input": "refiner", "output": "⠗⠑⠋⠔⠻" }, { "input": "refineries", "output": "⠗⠑⠋⠔⠻⠊⠑⠎" }, { "input": "refiners", "output": "⠗⠑⠋⠔⠻⠎" }, { "input": "refinery", "output": "⠗⠑⠋⠔⠻⠽" }, { "input": "refines", "output": "⠗⠑⠋⠔⠑⠎" }, { "input": "refining", "output": "⠗⠑⠋⠔⠬" }, { "input": "refinish", "output": "⠗⠑⠋⠔⠊⠩" }, { "input": "refinished", "output": "⠗⠑⠋⠔⠊⠩⠫" }, { "input": "refinishes", "output": "⠗⠑⠋⠔⠊⠩⠑⠎" }, { "input": "refinishing", "output": "⠗⠑⠋⠔⠊⠩⠬" }, { "input": "refit", "output": "â —â ‘â ‹â Šâ ž" }, { "input": "refits", "output": "â —â ‘â ‹â Šâ žâ Ž" }, { "input": "refitted", "output": "â —â ‘â ‹â Šâ žâ žâ «" }, { "input": "refitting", "output": "â —â ‘â ‹â Šâ žâ žâ ¬" }, { "input": "reflect", "output": "⠗⠑⠋⠇⠑⠉⠞" }, { "input": "reflected", "output": "⠗⠑⠋⠇⠑⠉⠞⠫" }, { "input": "reflecting", "output": "⠗⠑⠋⠇⠑⠉⠞⠬" }, { "input": "reflection", "output": "⠗⠑⠋⠇⠑⠉⠰â " }, { "input": "reflections", "output": "⠗⠑⠋⠇⠑⠉⠰â â Ž" }, { "input": "reflective", "output": "⠗⠑⠋⠇⠑⠉⠞⠊⠧⠑" }, { "input": "reflector", "output": "⠗⠑⠋⠇⠑⠉⠞⠕⠗" }, { "input": "reflectors", "output": "⠗⠑⠋⠇⠑⠉⠞⠕⠗⠎" }, { "input": "reflects", "output": "⠗⠑⠋⠇⠑⠉⠞⠎" }, { "input": "reflex", "output": "⠗⠑⠋⠇⠑⠭" }, { "input": "reflexes", "output": "⠗⠑⠋⠇⠑⠭⠑⠎" }, { "input": "reflexive", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑" }, { "input": "reflexively", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑⠇⠽" }, { "input": "reflexives", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑⠎" }, { "input": "refocus", "output": "⠗⠑⠋⠕⠉⠥⠎" }, { "input": "refocused", "output": "⠗⠑⠋⠕⠉⠥⠎⠫" }, { "input": "refocuses", "output": "⠗⠑⠋⠕⠉⠥⠎⠑⠎" }, { "input": "refocusing", "output": "⠗⠑⠋⠕⠉⠥⠎⠬" }, { "input": "refocussed", "output": "⠗⠑⠋⠕⠉⠥⠎⠎⠫" }, { "input": "refocusses", "output": "⠗⠑⠋⠕⠉⠥⠎⠎⠑⠎" }, { "input": "refocussing", "output": "⠗⠑⠋⠕⠉⠥⠎⠎⠬" }, { "input": "reforest", "output": "â —â ‘â ¿â ‘â Œ" }, { "input": "reforestation", "output": "â —â ‘â ¿â ‘â Œâ â °â " }, { "input": "reforested", "output": "⠗⠑⠿⠑⠌⠫" }, { "input": "reforesting", "output": "⠗⠑⠿⠑⠌⠬" }, { "input": "reforests", "output": "⠗⠑⠿⠑⠌⠎" }, { "input": "reform", "output": "â —â ‘â ¿â " }, { "input": "reformat", "output": "â —â ‘â ¿â â â ž" }, { "input": "reformation", "output": "â —â ‘â ¿â â â °â " }, { "input": "reformations", "output": "â —â ‘â ¿â â â °â â Ž" }, { "input": "reformatories", "output": "â —â ‘â ¿â â â žâ •â —â Šâ ‘â Ž" }, { "input": "reformatory", "output": "â —â ‘â ¿â â â žâ •â —â ½" }, { "input": "reformatted", "output": "â —â ‘â ¿â â â žâ žâ «" }, { "input": "reformatting", "output": "â —â ‘â ¿â â â žâ žâ ¬" }, { "input": "reformed", "output": "â —â ‘â ¿â â «" }, { "input": "reformer", "output": "â —â ‘â ¿â â »" }, { "input": "reformers", "output": "â —â ‘â ¿â â »â Ž" }, { "input": "reforming", "output": "â —â ‘â ¿â â ¬" }, { "input": "reforms", "output": "â —â ‘â ¿â â Ž" }, { "input": "reformulate", "output": "â —â ‘â ¿â â ¥â ‡â â žâ ‘" }, { "input": "reformulated", "output": "â —â ‘â ¿â â ¥â ‡â â žâ «" }, { "input": "reformulates", "output": "â —â ‘â ¿â â ¥â ‡â â žâ ‘â Ž" }, { "input": "reformulating", "output": "â —â ‘â ¿â â ¥â ‡â â žâ ¬" }, { "input": "refract", "output": "â —â ‘â ‹â —â â ‰â ž" }, { "input": "refracted", "output": "â —â ‘â ‹â —â â ‰â žâ «" }, { "input": "refracting", "output": "â —â ‘â ‹â —â â ‰â žâ ¬" }, { "input": "refraction", "output": "â —â ‘â ‹â —â â ‰â °â " }, { "input": "refractories", "output": "â —â ‘â ‹â —â â ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "refractory", "output": "â —â ‘â ‹â —â â ‰â žâ •â —â ½" }, { "input": "refracts", "output": "â —â ‘â ‹â —â â ‰â žâ Ž" }, { "input": "refrain", "output": "â —â ‘â ‹â —â â ”" }, { "input": "refrained", "output": "â —â ‘â ‹â —â â ”â «" }, { "input": "refraining", "output": "â —â ‘â ‹â —â â ”â ¬" }, { "input": "refrains", "output": "â —â ‘â ‹â —â â ”â Ž" }, { "input": "refresh", "output": "â —â ‘â ‹â —â ‘â ©" }, { "input": "refreshed", "output": "â —â ‘â ‹â —â ‘â ©â «" }, { "input": "refresher", "output": "â —â ‘â ‹â —â ‘â ©â »" }, { "input": "refreshers", "output": "⠗⠑⠋⠗⠑⠩⠻⠎" }, { "input": "refreshes", "output": "â —â ‘â ‹â —â ‘â ©â ‘â Ž" }, { "input": "refreshing", "output": "â —â ‘â ‹â —â ‘â ©â ¬" }, { "input": "refreshingly", "output": "⠗⠑⠋⠗⠑⠩⠬⠇⠽" }, { "input": "refreshment", "output": "â —â ‘â ‹â —â ‘â ©â °â ž" }, { "input": "refreshments", "output": "â —â ‘â ‹â —â ‘â ©â °â žâ Ž" }, { "input": "refrigerant", "output": "⠗⠑⠋⠗⠊⠛⠻â â â ž" }, { "input": "refrigerants", "output": "⠗⠑⠋⠗⠊⠛⠻â â â žâ Ž" }, { "input": "refrigerate", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ ‘" }, { "input": "refrigerated", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ «" }, { "input": "refrigerates", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ ‘â Ž" }, { "input": "refrigerating", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ ¬" }, { "input": "refrigeration", "output": "⠗⠑⠋⠗⠊⠛⠻â â °â " }, { "input": "refrigerator", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ •â —" }, { "input": "refrigerators", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ •â —â Ž" }, { "input": "refs", "output": "â —â ‘â ‹â Ž" }, { "input": "refuel", "output": "⠗⠑⠋⠥⠑⠇" }, { "input": "refueled", "output": "⠗⠑⠋⠥⠑⠇⠫" }, { "input": "refueling", "output": "⠗⠑⠋⠥⠑⠇⠬" }, { "input": "refuelled", "output": "⠗⠑⠋⠥⠑⠇⠇⠫" }, { "input": "refuelling", "output": "⠗⠑⠋⠥⠑⠇⠇⠬" }, { "input": "refuels", "output": "⠗⠑⠋⠥⠑⠇⠎" }, { "input": "refuge", "output": "⠗⠑⠋⠥⠛⠑" }, { "input": "refugee", "output": "⠗⠑⠋⠥⠛⠑⠑" }, { "input": "refugees", "output": "⠗⠑⠋⠥⠛⠑⠑⠎" }, { "input": "refuges", "output": "⠗⠑⠋⠥⠛⠑⠎" }, { "input": "refulgence", "output": "⠗⠑⠰⠇⠛⠰⠑" }, { "input": "refulgent", "output": "⠗⠑⠰⠇⠛⠢⠞" }, { "input": "refund", "output": "â —â ‘â ‹â ¥â â ™" }, { "input": "refundable", "output": "â —â ‘â ‹â ¥â â ™â â ƒâ ‡â ‘" }, { "input": "refunded", "output": "â —â ‘â ‹â ¥â â ™â «" }, { "input": "refunding", "output": "â —â ‘â ‹â ¥â â ™â ¬" }, { "input": "refunds", "output": "â —â ‘â ‹â ¥â â ™â Ž" }, { "input": "refurbish", "output": "⠗⠑⠋⠥⠗⠃⠊⠩" }, { "input": "refurbished", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠫" }, { "input": "refurbishes", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠑⠎" }, { "input": "refurbishing", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠬" }, { "input": "refurbishment", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠰⠞" }, { "input": "refurbishments", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠰⠞⠎" }, { "input": "refurnish", "output": "⠗⠑⠋⠥⠗â â Šâ ©" }, { "input": "refurnished", "output": "⠗⠑⠋⠥⠗â â Šâ ©â «" }, { "input": "refurnishes", "output": "⠗⠑⠋⠥⠗â â Šâ ©â ‘â Ž" }, { "input": "refurnishing", "output": "⠗⠑⠋⠥⠗â â Šâ ©â ¬" }, { "input": "refusal", "output": "⠗⠑⠋⠥⠎â â ‡" }, { "input": "refusals", "output": "⠗⠑⠋⠥⠎â â ‡â Ž" }, { "input": "refuse", "output": "⠗⠑⠋⠥⠎⠑" }, { "input": "refused", "output": "⠗⠑⠋⠥⠎⠫" }, { "input": "refuses", "output": "⠗⠑⠋⠥⠎⠑⠎" }, { "input": "refusing", "output": "⠗⠑⠋⠥⠎⠬" }, { "input": "refutation", "output": "⠗⠑⠋⠥⠞â â °â " }, { "input": "refutations", "output": "⠗⠑⠋⠥⠞â â °â â Ž" }, { "input": "refute", "output": "⠗⠑⠋⠥⠞⠑" }, { "input": "refuted", "output": "⠗⠑⠋⠥⠞⠫" }, { "input": "refutes", "output": "⠗⠑⠋⠥⠞⠑⠎" }, { "input": "refuting", "output": "⠗⠑⠋⠥⠞⠬" }, { "input": "regain", "output": "â —â ‘â ›â â ”" }, { "input": "regained", "output": "â —â ‘â ›â â ”â «" }, { "input": "regaining", "output": "â —â ‘â ›â â ”â ¬" }, { "input": "regains", "output": "â —â ‘â ›â â ”â Ž" }, { "input": "regal", "output": "â —â ‘â ›â â ‡" }, { "input": "regale", "output": "â —â ‘â ›â â ‡â ‘" }, { "input": "regaled", "output": "â —â ‘â ›â â ‡â «" }, { "input": "regales", "output": "â —â ‘â ›â â ‡â ‘â Ž" }, { "input": "regalia", "output": "â —â ‘â ›â â ‡â Šâ " }, { "input": "regaling", "output": "â —â ‘â ›â â ‡â ¬" }, { "input": "regally", "output": "â —â ‘â ›â â ‡â ‡â ½" }, { "input": "regard", "output": "⠗⠑⠛⠜⠙" }, { "input": "regarded", "output": "⠗⠑⠛⠜⠙⠫" }, { "input": "regarding", "output": "⠗⠑⠛⠜⠙⠬" }, { "input": "regardless", "output": "⠗⠑⠛⠜⠙⠨⠎" }, { "input": "regards", "output": "⠗⠑⠛⠜⠙⠎" }, { "input": "regatta", "output": "â —â ‘â ›â â žâ žâ " }, { "input": "regattas", "output": "â —â ‘â ›â â žâ žâ â Ž" }, { "input": "regencies", "output": "⠗⠑⠛⠢⠉⠊⠑⠎" }, { "input": "regency", "output": "⠗⠑⠛⠢⠉⠽" }, { "input": "regenerate", "output": "⠗⠑⠛⠢⠻â â žâ ‘" }, { "input": "regenerated", "output": "⠗⠑⠛⠢⠻â â žâ «" }, { "input": "regenerates", "output": "⠗⠑⠛⠢⠻â â žâ ‘â Ž" }, { "input": "regenerating", "output": "⠗⠑⠛⠢⠻â â žâ ¬" }, { "input": "regeneration", "output": "⠗⠑⠛⠢⠻â â °â " }, { "input": "regenerative", "output": "⠗⠑⠛⠢⠻â â žâ Šâ §â ‘" }, { "input": "regent", "output": "⠗⠑⠛⠢⠞" }, { "input": "regents", "output": "⠗⠑⠛⠢⠞⠎" }, { "input": "reggae", "output": "â —â ‘â ¶â â ‘" }, { "input": "regicide", "output": "⠗⠑⠛⠊⠉⠊⠙⠑" }, { "input": "regicides", "output": "⠗⠑⠛⠊⠉⠊⠙⠑⠎" }, { "input": "regime", "output": "⠗⠑⠛⠊â â ‘" }, { "input": "regimen", "output": "⠗⠑⠛⠊â â ¢" }, { "input": "regimens", "output": "⠗⠑⠛⠊â â ¢â Ž" }, { "input": "regiment", "output": "⠗⠑⠛⠊⠰⠞" }, { "input": "regimental", "output": "⠗⠑⠛⠊⠰⠞â â ‡" }, { "input": "regimentation", "output": "⠗⠑⠛⠊⠰⠞â â °â " }, { "input": "regimented", "output": "⠗⠑⠛⠊⠰⠞⠫" }, { "input": "regimenting", "output": "⠗⠑⠛⠊⠰⠞⠬" }, { "input": "regiments", "output": "⠗⠑⠛⠊⠰⠞⠎" }, { "input": "regimes", "output": "⠗⠑⠛⠊â â ‘â Ž" }, { "input": "region", "output": "⠗⠑⠛⠊⠕â " }, { "input": "regional", "output": "⠗⠑⠛⠊⠕â â â ‡" }, { "input": "regionalism", "output": "⠗⠑⠛⠊⠕â â â ‡â Šâ Žâ " }, { "input": "regionalisms", "output": "⠗⠑⠛⠊⠕â â â ‡â Šâ Žâ â Ž" }, { "input": "regionally", "output": "⠗⠑⠛⠊⠕â â â ‡â ‡â ½" }, { "input": "regions", "output": "⠗⠑⠛⠊⠕â â Ž" }, { "input": "register", "output": "⠗⠑⠛⠊⠌⠻" }, { "input": "registered", "output": "⠗⠑⠛⠊⠌⠻⠫" }, { "input": "registering", "output": "⠗⠑⠛⠊⠌⠻⠬" }, { "input": "registers", "output": "⠗⠑⠛⠊⠌⠻⠎" }, { "input": "registrant", "output": "⠗⠑⠛⠊⠌⠗â â â ž" }, { "input": "registrants", "output": "⠗⠑⠛⠊⠌⠗â â â žâ Ž" }, { "input": "registrar", "output": "⠗⠑⠛⠊⠌⠗⠜" }, { "input": "registrars", "output": "⠗⠑⠛⠊⠌⠗⠜⠎" }, { "input": "registration", "output": "⠗⠑⠛⠊⠌⠗â â °â " }, { "input": "registrations", "output": "⠗⠑⠛⠊⠌⠗â â °â â Ž" }, { "input": "registries", "output": "⠗⠑⠛⠊⠌⠗⠊⠑⠎" }, { "input": "registry", "output": "⠗⠑⠛⠊⠌⠗⠽" }, { "input": "regress", "output": "⠗⠑⠛⠗⠑⠎⠎" }, { "input": "regressed", "output": "⠗⠑⠛⠗⠑⠎⠎⠫" }, { "input": "regresses", "output": "⠗⠑⠛⠗⠑⠎⠎⠑⠎" }, { "input": "regressing", "output": "⠗⠑⠛⠗⠑⠎⠎⠬" }, { "input": "regression", "output": "⠗⠑⠛⠗⠑⠎⠨â " }, { "input": "regressions", "output": "⠗⠑⠛⠗⠑⠎⠨â â Ž" }, { "input": "regressive", "output": "⠗⠑⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "regret", "output": "⠗⠑⠛⠗⠑⠞" }, { "input": "regretful", "output": "⠗⠑⠛⠗⠑⠞⠰⠇" }, { "input": "regretfully", "output": "⠗⠑⠛⠗⠑⠞⠰⠇⠇⠽" }, { "input": "regrets", "output": "⠗⠑⠛⠗⠑⠞⠎" }, { "input": "regrettable", "output": "⠗⠑⠛⠗⠑⠞⠞â â ƒâ ‡â ‘" }, { "input": "regrettably", "output": "⠗⠑⠛⠗⠑⠞⠞â â ƒâ ‡â ½" }, { "input": "regretted", "output": "⠗⠑⠛⠗⠑⠞⠞⠫" }, { "input": "regretting", "output": "⠗⠑⠛⠗⠑⠞⠞⠬" }, { "input": "regroup", "output": "⠗⠑⠛⠗⠳â " }, { "input": "regrouped", "output": "⠗⠑⠛⠗⠳â â «" }, { "input": "regrouping", "output": "⠗⠑⠛⠗⠳â â ¬" }, { "input": "regroups", "output": "⠗⠑⠛⠗⠳â â Ž" }, { "input": "regular", "output": "⠗⠑⠛⠥⠇⠜" }, { "input": "regularity", "output": "⠗⠑⠛⠥⠇⠜⠰⠽" }, { "input": "regularize", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠑" }, { "input": "regularized", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠫" }, { "input": "regularizes", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠑⠎" }, { "input": "regularizing", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠬" }, { "input": "regularly", "output": "⠗⠑⠛⠥⠇⠜⠇⠽" }, { "input": "regulars", "output": "⠗⠑⠛⠥⠇⠜⠎" }, { "input": "regulate", "output": "⠗⠑⠛⠥⠇â â žâ ‘" }, { "input": "regulated", "output": "⠗⠑⠛⠥⠇â â žâ «" }, { "input": "regulates", "output": "⠗⠑⠛⠥⠇â â žâ ‘â Ž" }, { "input": "regulating", "output": "⠗⠑⠛⠥⠇â â žâ ¬" }, { "input": "regulation", "output": "⠗⠑⠛⠥⠇â â °â " }, { "input": "regulations", "output": "⠗⠑⠛⠥⠇â â °â â Ž" }, { "input": "regulator", "output": "⠗⠑⠛⠥⠇â â žâ •â —" }, { "input": "regulators", "output": "⠗⠑⠛⠥⠇â â žâ •â —â Ž" }, { "input": "regulatory", "output": "⠗⠑⠛⠥⠇â â žâ •â —â ½" }, { "input": "regurgitate", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ ‘" }, { "input": "regurgitated", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ «" }, { "input": "regurgitates", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ ‘â Ž" }, { "input": "regurgitating", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ ¬" }, { "input": "regurgitation", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â °â " }, { "input": "rehab", "output": "â —â ‘â “â â ƒ" }, { "input": "rehabbed", "output": "â —â ‘â “â â †â «" }, { "input": "rehabbing", "output": "â —â ‘â “â â †â ¬" }, { "input": "rehabilitate", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ ‘" }, { "input": "rehabilitated", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ «" }, { "input": "rehabilitates", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ ‘â Ž" }, { "input": "rehabilitating", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ ¬" }, { "input": "rehabilitation", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â °â " }, { "input": "rehabs", "output": "â —â ‘â “â â ƒâ Ž" }, { "input": "rehash", "output": "â —â ‘â “â â ©" }, { "input": "rehashed", "output": "â —â ‘â “â â ©â «" }, { "input": "rehashes", "output": "â —â ‘â “â â ©â ‘â Ž" }, { "input": "rehashing", "output": "â —â ‘â “â â ©â ¬" }, { "input": "rehearsal", "output": "⠗⠑⠓⠑⠜⠎â â ‡" }, { "input": "rehearsals", "output": "⠗⠑⠓⠑⠜⠎â â ‡â Ž" }, { "input": "rehearse", "output": "⠗⠑⠓⠑⠜⠎⠑" }, { "input": "rehearsed", "output": "⠗⠑⠓⠑⠜⠎⠫" }, { "input": "rehearses", "output": "⠗⠑⠓⠑⠜⠎⠑⠎" }, { "input": "rehearsing", "output": "⠗⠑⠓⠑⠜⠎⠬" }, { "input": "reheat", "output": "â —â ‘â “â ‚â ž" }, { "input": "reheated", "output": "â —â ‘â “â ‚â žâ «" }, { "input": "reheating", "output": "â —â ‘â “â ‚â žâ ¬" }, { "input": "reheats", "output": "â —â ‘â “â ‚â žâ Ž" }, { "input": "rehire", "output": "â —â ‘â “â Šâ —â ‘" }, { "input": "rehired", "output": "â —â ‘â “â Šâ —â «" }, { "input": "rehires", "output": "â —â ‘â “â Šâ —â ‘â Ž" }, { "input": "rehiring", "output": "â —â ‘â “â Šâ —â ¬" }, { "input": "reign", "output": "â —â ‘â Šâ ›â " }, { "input": "reigned", "output": "â —â ‘â Šâ ›â â «" }, { "input": "reigning", "output": "â —â ‘â Šâ ›â â ¬" }, { "input": "reigns", "output": "â —â ‘â Šâ ›â â Ž" }, { "input": "reimburse", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘" }, { "input": "reimbursed", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ «" }, { "input": "reimbursement", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â °â ž" }, { "input": "reimbursements", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â °â žâ Ž" }, { "input": "reimburses", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â Ž" }, { "input": "reimbursing", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ¬" }, { "input": "reimpose", "output": "â —â ‘â Šâ â â •â Žâ ‘" }, { "input": "reimposed", "output": "â —â ‘â Šâ â â •â Žâ «" }, { "input": "reimposes", "output": "â —â ‘â Šâ â â •â Žâ ‘â Ž" }, { "input": "reimposing", "output": "â —â ‘â Šâ â â •â Žâ ¬" }, { "input": "rein", "output": "â —â ‘â ”" }, { "input": "reincarnate", "output": "⠗⠑⠔⠉⠜â â â žâ ‘" }, { "input": "reincarnated", "output": "⠗⠑⠔⠉⠜â â â žâ «" }, { "input": "reincarnates", "output": "⠗⠑⠔⠉⠜â â â žâ ‘â Ž" }, { "input": "reincarnating", "output": "⠗⠑⠔⠉⠜â â â žâ ¬" }, { "input": "reincarnation", "output": "⠗⠑⠔⠉⠜â â â °â " }, { "input": "reincarnations", "output": "⠗⠑⠔⠉⠜â â â °â â Ž" }, { "input": "reindeer", "output": "⠗⠑⠔⠙⠑⠻" }, { "input": "reindeers", "output": "⠗⠑⠔⠙⠑⠻⠎" }, { "input": "reined", "output": "⠗⠑⠔⠫" }, { "input": "reinforce", "output": "⠗⠑⠔⠿⠉⠑" }, { "input": "reinforced", "output": "⠗⠑⠔⠿⠉⠫" }, { "input": "reinforcement", "output": "⠗⠑⠔⠿⠉⠑⠰⠞" }, { "input": "reinforcements", "output": "⠗⠑⠔⠿⠉⠑⠰⠞⠎" }, { "input": "reinforces", "output": "⠗⠑⠔⠿⠉⠑⠎" }, { "input": "reinforcing", "output": "⠗⠑⠔⠿⠉⠬" }, { "input": "reining", "output": "⠗⠑⠔⠬" }, { "input": "reinitialize", "output": "⠗⠑⠔⠊⠞⠊â â ‡â Šâ µâ ‘" }, { "input": "reinitialized", "output": "⠗⠑⠔⠊⠞⠊â â ‡â Šâ µâ «" }, { "input": "reins", "output": "⠗⠑⠔⠎" }, { "input": "reinsert", "output": "⠗⠑⠔⠎⠻⠞" }, { "input": "reinserted", "output": "⠗⠑⠔⠎⠻⠞⠫" }, { "input": "reinserting", "output": "⠗⠑⠔⠎⠻⠞⠬" }, { "input": "reinserts", "output": "⠗⠑⠔⠎⠻⠞⠎" }, { "input": "reinstate", "output": "⠗⠑⠔⠌â â žâ ‘" }, { "input": "reinstated", "output": "⠗⠑⠔⠌â â žâ «" }, { "input": "reinstatement", "output": "⠗⠑⠔⠌â â žâ ‘â °â ž" }, { "input": "reinstates", "output": "⠗⠑⠔⠌â â žâ ‘â Ž" }, { "input": "reinstating", "output": "⠗⠑⠔⠌â â žâ ¬" }, { "input": "reinterpret", "output": "⠗⠑⠔⠞⠻â â —â ‘â ž" }, { "input": "reinterpretation", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ â °â " }, { "input": "reinterpretations", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ â °â â Ž" }, { "input": "reinterpreted", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ «" }, { "input": "reinterpreting", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ ¬" }, { "input": "reinterprets", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ Ž" }, { "input": "reinvent", "output": "⠗⠑⠔⠧⠢⠞" }, { "input": "reinvented", "output": "⠗⠑⠔⠧⠢⠞⠫" }, { "input": "reinventing", "output": "⠗⠑⠔⠧⠢⠞⠬" }, { "input": "reinvents", "output": "⠗⠑⠔⠧⠢⠞⠎" }, { "input": "reinvest", "output": "⠗⠑⠔⠧⠑⠌" }, { "input": "reinvested", "output": "⠗⠑⠔⠧⠑⠌⠫" }, { "input": "reinvesting", "output": "⠗⠑⠔⠧⠑⠌⠬" }, { "input": "reinvests", "output": "⠗⠑⠔⠧⠑⠌⠎" }, { "input": "reis", "output": "â —â ‘â Šâ Ž" }, { "input": "reissue", "output": "⠗⠑⠊⠎⠎⠥⠑" }, { "input": "reissued", "output": "⠗⠑⠊⠎⠎⠥⠫" }, { "input": "reissues", "output": "⠗⠑⠊⠎⠎⠥⠑⠎" }, { "input": "reissuing", "output": "⠗⠑⠊⠎⠎⠥⠬" }, { "input": "reiterate", "output": "â —â ‘â Šâ žâ »â â žâ ‘" }, { "input": "reiterated", "output": "â —â ‘â Šâ žâ »â â žâ «" }, { "input": "reiterates", "output": "â —â ‘â Šâ žâ »â â žâ ‘â Ž" }, { "input": "reiterating", "output": "â —â ‘â Šâ žâ »â â žâ ¬" }, { "input": "reiteration", "output": "â —â ‘â Šâ žâ »â â °â " }, { "input": "reiterations", "output": "â —â ‘â Šâ žâ »â â °â â Ž" }, { "input": "reject", "output": "⠗⠑⠚⠑⠉⠞" }, { "input": "rejected", "output": "⠗⠑⠚⠑⠉⠞⠫" }, { "input": "rejecting", "output": "⠗⠑⠚⠑⠉⠞⠬" }, { "input": "rejection", "output": "⠗⠑⠚⠑⠉⠰â " }, { "input": "rejections", "output": "⠗⠑⠚⠑⠉⠰â â Ž" }, { "input": "rejects", "output": "⠗⠑⠚⠑⠉⠞⠎" }, { "input": "rejoice", "output": "â —â šâ ‰" }, { "input": "rejoiced", "output": "⠗⠚⠉⠙" }, { "input": "rejoices", "output": "⠗⠚⠉⠎" }, { "input": "rejoicing", "output": "⠗⠚⠉⠛" }, { "input": "rejoicings", "output": "⠗⠚⠉⠛⠎" }, { "input": "rejoin", "output": "â —â ‘â šâ •â ”" }, { "input": "rejoinder", "output": "⠗⠑⠚⠕⠔⠙⠻" }, { "input": "rejoinders", "output": "⠗⠑⠚⠕⠔⠙⠻⠎" }, { "input": "rejoined", "output": "⠗⠑⠚⠕⠔⠫" }, { "input": "rejoining", "output": "⠗⠑⠚⠕⠔⠬" }, { "input": "rejoins", "output": "⠗⠑⠚⠕⠔⠎" }, { "input": "rejuvenate", "output": "⠗⠑⠚⠥⠧⠢â â žâ ‘" }, { "input": "rejuvenated", "output": "⠗⠑⠚⠥⠧⠢â â žâ «" }, { "input": "rejuvenates", "output": "⠗⠑⠚⠥⠧⠢â â žâ ‘â Ž" }, { "input": "rejuvenating", "output": "⠗⠑⠚⠥⠧⠢â â žâ ¬" }, { "input": "rejuvenation", "output": "⠗⠑⠚⠥⠧⠢â â °â " }, { "input": "rekindle", "output": "⠗⠑⠅⠔⠙⠇⠑" }, { "input": "rekindled", "output": "⠗⠑⠅⠔⠙⠇⠫" }, { "input": "rekindles", "output": "⠗⠑⠅⠔⠙⠇⠑⠎" }, { "input": "rekindling", "output": "⠗⠑⠅⠔⠙⠇⠬" }, { "input": "relabel", "output": "â —â ‘â ‡â â ƒâ ‘â ‡" }, { "input": "relabeled", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠫" }, { "input": "relabeling", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠬" }, { "input": "relabelled", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠇⠫" }, { "input": "relabelling", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠇⠬" }, { "input": "relabels", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠎" }, { "input": "relaid", "output": "â —â ‘â ‡â â Šâ ™" }, { "input": "relapse", "output": "â —â ‘â ‡â â â Žâ ‘" }, { "input": "relapsed", "output": "â —â ‘â ‡â â â Žâ «" }, { "input": "relapses", "output": "â —â ‘â ‡â â â Žâ ‘â Ž" }, { "input": "relapsing", "output": "â —â ‘â ‡â â â Žâ ¬" }, { "input": "relate", "output": "â —â ‘â ‡â â žâ ‘" }, { "input": "related", "output": "â —â ‘â ‡â â žâ «" }, { "input": "relates", "output": "â —â ‘â ‡â â žâ ‘â Ž" }, { "input": "relating", "output": "â —â ‘â ‡â â žâ ¬" }, { "input": "relation", "output": "â —â ‘â ‡â â °â " }, { "input": "relational", "output": "â —â ‘â ‡â â °â â â ‡" }, { "input": "relations", "output": "â —â ‘â ‡â â °â â Ž" }, { "input": "relationship", "output": "â —â ‘â ‡â â °â â ©â Šâ " }, { "input": "relationships", "output": "â —â ‘â ‡â â °â â ©â Šâ â Ž" }, { "input": "relative", "output": "â —â ‘â ‡â â žâ Šâ §â ‘" }, { "input": "relatively", "output": "â —â ‘â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "relatives", "output": "â —â ‘â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "relativistic", "output": "â —â ‘â ‡â â žâ Šâ §â Šâ Œâ Šâ ‰" }, { "input": "relativity", "output": "â —â ‘â ‡â â žâ Šâ §â °â ½" }, { "input": "relax", "output": "â —â ‘â ‡â â ­" }, { "input": "relaxant", "output": "â —â ‘â ‡â â ­â â â ž" }, { "input": "relaxants", "output": "â —â ‘â ‡â â ­â â â žâ Ž" }, { "input": "relaxation", "output": "â —â ‘â ‡â â ­â â °â " }, { "input": "relaxations", "output": "â —â ‘â ‡â â ­â â °â â Ž" }, { "input": "relaxed", "output": "â —â ‘â ‡â â ­â «" }, { "input": "relaxes", "output": "â —â ‘â ‡â â ­â ‘â Ž" }, { "input": "relaxing", "output": "â —â ‘â ‡â â ­â ¬" }, { "input": "relay", "output": "â —â ‘â ‡â â ½" }, { "input": "relayed", "output": "â —â ‘â ‡â â ½â «" }, { "input": "relaying", "output": "â —â ‘â ‡â â ½â ¬" }, { "input": "relays", "output": "â —â ‘â ‡â â ½â Ž" }, { "input": "relearn", "output": "⠗⠑⠇⠑⠜â " }, { "input": "relearned", "output": "⠗⠑⠇⠑⠜â â «" }, { "input": "relearning", "output": "⠗⠑⠇⠑⠜â â ¬" }, { "input": "relearns", "output": "⠗⠑⠇⠑⠜â â Ž" }, { "input": "releasable", "output": "⠗⠑⠇⠂⠎â â ƒâ ‡â ‘" }, { "input": "release", "output": "⠗⠑⠇⠂⠎⠑" }, { "input": "released", "output": "⠗⠑⠇⠂⠎⠫" }, { "input": "releases", "output": "⠗⠑⠇⠂⠎⠑⠎" }, { "input": "releasing", "output": "⠗⠑⠇⠂⠎⠬" }, { "input": "relegate", "output": "⠗⠑⠇⠑⠛â â žâ ‘" }, { "input": "relegated", "output": "⠗⠑⠇⠑⠛â â žâ «" }, { "input": "relegates", "output": "⠗⠑⠇⠑⠛â â žâ ‘â Ž" }, { "input": "relegating", "output": "⠗⠑⠇⠑⠛â â žâ ¬" }, { "input": "relegation", "output": "⠗⠑⠇⠑⠛â â °â " }, { "input": "relent", "output": "⠗⠑⠇⠢⠞" }, { "input": "relented", "output": "⠗⠑⠇⠢⠞⠫" }, { "input": "relenting", "output": "⠗⠑⠇⠢⠞⠬" }, { "input": "relentless", "output": "⠗⠑⠇⠢⠞⠨⠎" }, { "input": "relentlessly", "output": "⠗⠑⠇⠢⠞⠨⠎⠇⠽" }, { "input": "relentlessness", "output": "⠗⠑⠇⠢⠞⠨⠎⠰⠎" }, { "input": "relents", "output": "⠗⠑⠇⠢⠞⠎" }, { "input": "relevance", "output": "⠗⠑⠇⠑⠧⠨⠑" }, { "input": "relevancy", "output": "⠗⠑⠇⠑⠧â â â ‰â ½" }, { "input": "relevant", "output": "⠗⠑⠇⠑⠧â â â ž" }, { "input": "relevantly", "output": "⠗⠑⠇⠑⠧â â â žâ ‡â ½" }, { "input": "reliability", "output": "⠗⠑⠇⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "reliable", "output": "⠗⠑⠇⠊â â ƒâ ‡â ‘" }, { "input": "reliably", "output": "⠗⠑⠇⠊â â ƒâ ‡â ½" }, { "input": "reliance", "output": "⠗⠑⠇⠊⠨⠑" }, { "input": "reliant", "output": "⠗⠑⠇⠊â â â ž" }, { "input": "relic", "output": "⠗⠑⠇⠊⠉" }, { "input": "relics", "output": "⠗⠑⠇⠊⠉⠎" }, { "input": "relied", "output": "⠗⠑⠇⠊⠫" }, { "input": "relief", "output": "⠗⠑⠇⠊⠑⠋" }, { "input": "reliefs", "output": "⠗⠑⠇⠊⠑⠋⠎" }, { "input": "relies", "output": "⠗⠑⠇⠊⠑⠎" }, { "input": "relieve", "output": "⠗⠑⠇⠊⠑⠧⠑" }, { "input": "relieved", "output": "⠗⠑⠇⠊⠑⠧⠫" }, { "input": "relieves", "output": "⠗⠑⠇⠊⠑⠧⠑⠎" }, { "input": "relieving", "output": "⠗⠑⠇⠊⠑⠧⠬" }, { "input": "religion", "output": "⠗⠑⠇⠊⠛⠊⠕â " }, { "input": "religions", "output": "⠗⠑⠇⠊⠛⠊⠕â â Ž" }, { "input": "religious", "output": "⠗⠑⠇⠊⠛⠊⠳⠎" }, { "input": "religiously", "output": "⠗⠑⠇⠊⠛⠊⠳⠎⠇⠽" }, { "input": "relinquish", "output": "⠗⠑⠇⠔⠟⠥⠊⠩" }, { "input": "relinquished", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠫" }, { "input": "relinquishes", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠑⠎" }, { "input": "relinquishing", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠬" }, { "input": "relinquishment", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠰⠞" }, { "input": "relish", "output": "⠗⠑⠇⠊⠩" }, { "input": "relished", "output": "⠗⠑⠇⠊⠩⠫" }, { "input": "relishes", "output": "⠗⠑⠇⠊⠩⠑⠎" }, { "input": "relishing", "output": "⠗⠑⠇⠊⠩⠬" }, { "input": "relive", "output": "⠗⠑⠇⠊⠧⠑" }, { "input": "relived", "output": "⠗⠑⠇⠊⠧⠫" }, { "input": "relives", "output": "⠗⠑⠇⠊⠧⠑⠎" }, { "input": "reliving", "output": "⠗⠑⠇⠊⠧⠬" }, { "input": "reload", "output": "⠗⠑⠇⠕â â ™" }, { "input": "reloaded", "output": "⠗⠑⠇⠕â â ™â «" }, { "input": "reloading", "output": "⠗⠑⠇⠕â â ™â ¬" }, { "input": "reloads", "output": "⠗⠑⠇⠕â â ™â Ž" }, { "input": "relocatable", "output": "⠗⠑⠇⠕⠉â â žâ â ƒâ ‡â ‘" }, { "input": "relocate", "output": "⠗⠑⠇⠕⠉â â žâ ‘" }, { "input": "relocated", "output": "⠗⠑⠇⠕⠉â â žâ «" }, { "input": "relocates", "output": "⠗⠑⠇⠕⠉â â žâ ‘â Ž" }, { "input": "relocating", "output": "⠗⠑⠇⠕⠉â â žâ ¬" }, { "input": "relocation", "output": "⠗⠑⠇⠕⠉â â °â " }, { "input": "reluctance", "output": "⠗⠑⠇⠥⠉⠞⠨⠑" }, { "input": "reluctant", "output": "⠗⠑⠇⠥⠉⠞â â â ž" }, { "input": "reluctantly", "output": "⠗⠑⠇⠥⠉⠞â â â žâ ‡â ½" }, { "input": "rely", "output": "⠗⠑⠇⠽" }, { "input": "relying", "output": "⠗⠑⠇⠽⠬" }, { "input": "remade", "output": "â —â ‘â â â ™â ‘" }, { "input": "remain", "output": "â —â ‘â â â ”" }, { "input": "remainder", "output": "â —â ‘â â â ”⠙⠻" }, { "input": "remaindered", "output": "â —â ‘â â â ”⠙⠻⠫" }, { "input": "remainders", "output": "â —â ‘â â â ”⠙⠻⠎" }, { "input": "remained", "output": "â —â ‘â â â ”â «" }, { "input": "remaining", "output": "â —â ‘â â â ”â ¬" }, { "input": "remains", "output": "â —â ‘â â â ”â Ž" }, { "input": "remake", "output": "â —â ‘â â â …â ‘" }, { "input": "remakes", "output": "â —â ‘â â â …â ‘â Ž" }, { "input": "remaking", "output": "â —â ‘â â â …â ¬" }, { "input": "remand", "output": "â —â ‘â â ¯" }, { "input": "remanded", "output": "â —â ‘â â ¯â «" }, { "input": "remanding", "output": "â —â ‘â â ¯â ¬" }, { "input": "remands", "output": "â —â ‘â â ¯â Ž" }, { "input": "remark", "output": "â —â ‘â â œâ …" }, { "input": "remarkable", "output": "â —â ‘â â œâ …â â ƒâ ‡â ‘" }, { "input": "remarkably", "output": "â —â ‘â â œâ …â â ƒâ ‡â ½" }, { "input": "remarked", "output": "â —â ‘â â œâ …â «" }, { "input": "remarking", "output": "â —â ‘â â œâ …â ¬" }, { "input": "remarks", "output": "â —â ‘â â œâ …â Ž" }, { "input": "remarriage", "output": "â —â ‘â â œâ —â Šâ â ›â ‘" }, { "input": "remarriages", "output": "â —â ‘â â œâ —â Šâ â ›â ‘â Ž" }, { "input": "remarried", "output": "â —â ‘â â œâ —â Šâ «" }, { "input": "remarries", "output": "â —â ‘â â œâ —â Šâ ‘â Ž" }, { "input": "remarry", "output": "â —â ‘â â œâ —â ½" }, { "input": "remarrying", "output": "â —â ‘â â œâ —⠽⠬" }, { "input": "rematch", "output": "â —â ‘â â â žâ ¡" }, { "input": "rematches", "output": "â —â ‘â â â žâ ¡â ‘â Ž" }, { "input": "remediable", "output": "â —â ‘â â «â Šâ â ƒâ ‡â ‘" }, { "input": "remedial", "output": "â —â ‘â â «â Šâ â ‡" }, { "input": "remedied", "output": "â —â ‘â â «â Šâ «" }, { "input": "remedies", "output": "â —â ‘â â «â Šâ ‘â Ž" }, { "input": "remedy", "output": "â —â ‘â â «â ½" }, { "input": "remedying", "output": "â —â ‘â â «â ½â ¬" }, { "input": "remember", "output": "â —â ‘â â ‘â â ƒâ »" }, { "input": "remembered", "output": "â —â ‘â â ‘â â ƒâ »â «" }, { "input": "remembering", "output": "â —â ‘â â ‘â â ƒâ »â ¬" }, { "input": "remembers", "output": "â —â ‘â â ‘â â ƒâ »â Ž" }, { "input": "remembrance", "output": "â —â ‘â â ‘â â ƒâ —⠨⠑" }, { "input": "remembrances", "output": "â —â ‘â â ‘â â ƒâ —⠨⠑⠎" }, { "input": "remind", "output": "â —â ‘â â ”â ™" }, { "input": "reminded", "output": "â —â ‘â â ”⠙⠫" }, { "input": "reminder", "output": "â —â ‘â â ”⠙⠻" }, { "input": "reminders", "output": "â —â ‘â â ”⠙⠻⠎" }, { "input": "reminding", "output": "â —â ‘â â ”⠙⠬" }, { "input": "reminds", "output": "â —â ‘â â ”⠙⠎" }, { "input": "reminisce", "output": "â —â ‘â â ”⠊⠎⠉⠑" }, { "input": "reminisced", "output": "â —â ‘â â ”⠊⠎⠉⠫" }, { "input": "reminiscence", "output": "â —â ‘â â ”⠊⠎⠉⠰⠑" }, { "input": "reminiscences", "output": "â —â ‘â â ”⠊⠎⠉⠰⠑⠎" }, { "input": "reminiscent", "output": "â —â ‘â â ”⠊⠎⠉⠢⠞" }, { "input": "reminisces", "output": "â —â ‘â â ”⠊⠎⠉⠑⠎" }, { "input": "reminiscing", "output": "â —â ‘â â ”⠊⠎⠉⠬" }, { "input": "remiss", "output": "â —â ‘â â Šâ Žâ Ž" }, { "input": "remission", "output": "â —â ‘â â Šâ Žâ ¨â " }, { "input": "remissions", "output": "â —â ‘â â Šâ Žâ ¨â â Ž" }, { "input": "remissness", "output": "â —â ‘â â Šâ Žâ Žâ °â Ž" }, { "input": "remit", "output": "â —â ‘â â Šâ ž" }, { "input": "remits", "output": "â —â ‘â â Šâ žâ Ž" }, { "input": "remittance", "output": "â —â ‘â â Šâ žâ žâ ¨â ‘" }, { "input": "remittances", "output": "â —â ‘â â Šâ žâ žâ ¨â ‘â Ž" }, { "input": "remitted", "output": "â —â ‘â â Šâ žâ žâ «" }, { "input": "remitting", "output": "â —â ‘â â Šâ žâ žâ ¬" }, { "input": "remnant", "output": "â —â ‘â â â â â ž" }, { "input": "remnants", "output": "â —â ‘â â â â â žâ Ž" }, { "input": "remodel", "output": "â —â ‘â â •⠙⠑⠇" }, { "input": "remodeled", "output": "â —â ‘â â •⠙⠑⠇⠫" }, { "input": "remodeling", "output": "â —â ‘â â •⠙⠑⠇⠬" }, { "input": "remodelled", "output": "â —â ‘â â •⠙⠑⠇⠇⠫" }, { "input": "remodelling", "output": "â —â ‘â â •⠙⠑⠇⠇⠬" }, { "input": "remodels", "output": "â —â ‘â â •⠙⠑⠇⠎" }, { "input": "remonstrance", "output": "â —â ‘â â •â â Œâ —⠨⠑" }, { "input": "remonstrances", "output": "â —â ‘â â •â â Œâ —⠨⠑⠎" }, { "input": "remonstrate", "output": "â —â ‘â â •â â Œâ —â â žâ ‘" }, { "input": "remonstrated", "output": "â —â ‘â â •â â Œâ —â â žâ «" }, { "input": "remonstrates", "output": "â —â ‘â â •â â Œâ —â â žâ ‘â Ž" }, { "input": "remonstrating", "output": "â —â ‘â â •â â Œâ —â â žâ ¬" }, { "input": "remorse", "output": "â —â ‘â â •â —â Žâ ‘" }, { "input": "remorseful", "output": "â —â ‘â â •â —â Žâ ‘â °â ‡" }, { "input": "remorsefully", "output": "â —â ‘â â •⠗⠎⠑⠰⠇⠇⠽" }, { "input": "remorseless", "output": "â —â ‘â â •⠗⠎⠑⠨⠎" }, { "input": "remorselessly", "output": "â —â ‘â â •⠗⠎⠑⠨⠎⠇⠽" }, { "input": "remote", "output": "â —â ‘â â •â žâ ‘" }, { "input": "remotely", "output": "â —â ‘â â •⠞⠑⠇⠽" }, { "input": "remoteness", "output": "â —â ‘â â •â žâ ‘â °â Ž" }, { "input": "remoter", "output": "â —â ‘â â •â žâ »" }, { "input": "remotes", "output": "â —â ‘â â •â žâ ‘â Ž" }, { "input": "remotest", "output": "â —â ‘â â •â žâ ‘â Œ" }, { "input": "remount", "output": "â —â ‘â â ¨â ž" }, { "input": "remounted", "output": "â —â ‘â â ¨â žâ «" }, { "input": "remounting", "output": "â —â ‘â â ¨â žâ ¬" }, { "input": "remounts", "output": "â —â ‘â â ¨â žâ Ž" }, { "input": "removable", "output": "â —â ‘â â •â §â â ƒâ ‡â ‘" }, { "input": "removal", "output": "â —â ‘â â •â §â â ‡" }, { "input": "removals", "output": "â —â ‘â â •â §â â ‡â Ž" }, { "input": "remove", "output": "â —â ‘â â •â §â ‘" }, { "input": "removed", "output": "â —â ‘â â •â §â «" }, { "input": "remover", "output": "â —â ‘â â •â §â »" }, { "input": "removers", "output": "â —â ‘â â •⠧⠻⠎" }, { "input": "removes", "output": "â —â ‘â â •â §â ‘â Ž" }, { "input": "removing", "output": "â —â ‘â â •â §â ¬" }, { "input": "remunerate", "output": "â —â ‘â â ¥â â »â â žâ ‘" }, { "input": "remunerated", "output": "â —â ‘â â ¥â â »â â žâ «" }, { "input": "remunerates", "output": "â —â ‘â â ¥â â »â â žâ ‘â Ž" }, { "input": "remunerating", "output": "â —â ‘â â ¥â â »â â žâ ¬" }, { "input": "remuneration", "output": "â —â ‘â â ¥â â »â â °â " }, { "input": "remunerations", "output": "â —â ‘â â ¥â â »â â °â â Ž" }, { "input": "remunerative", "output": "â —â ‘â â ¥â â »â â žâ Šâ §â ‘" }, { "input": "renaissance", "output": "â —â ¢â â Šâ Žâ Žâ ¨â ‘" }, { "input": "renaissances", "output": "â —â ¢â â Šâ Žâ Žâ ¨â ‘â Ž" }, { "input": "renal", "output": "â —â ¢â â ‡" }, { "input": "rename", "output": "â —â ‘â â " }, { "input": "renamed", "output": "â —â ‘â â â ™" }, { "input": "renames", "output": "â —â ‘â â â Ž" }, { "input": "renaming", "output": "â —â ¢â â â ¬" }, { "input": "renascence", "output": "â —â ¢â â Žâ ‰â °â ‘" }, { "input": "renascences", "output": "â —â ¢â â Žâ ‰â °â ‘â Ž" }, { "input": "renascent", "output": "â —â ¢â â Žâ ‰â ¢â ž" }, { "input": "rend", "output": "⠗⠢⠙" }, { "input": "render", "output": "⠗⠢⠙⠻" }, { "input": "rendered", "output": "⠗⠢⠙⠻⠫" }, { "input": "rendering", "output": "⠗⠢⠙⠻⠬" }, { "input": "renderings", "output": "⠗⠢⠙⠻⠬⠎" }, { "input": "renders", "output": "⠗⠢⠙⠻⠎" }, { "input": "rendezvous", "output": "⠗⠢⠙⠑⠵⠧⠳⠎" }, { "input": "rendezvoused", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠫" }, { "input": "rendezvouses", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠑⠎" }, { "input": "rendezvousing", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠬" }, { "input": "rending", "output": "⠗⠢⠙⠬" }, { "input": "rendition", "output": "⠗⠢⠙⠊⠰â " }, { "input": "renditions", "output": "⠗⠢⠙⠊⠰â â Ž" }, { "input": "rends", "output": "⠗⠢⠙⠎" }, { "input": "renegade", "output": "⠗⠢⠑⠛â â ™â ‘" }, { "input": "renegaded", "output": "⠗⠢⠑⠛â â ™â «" }, { "input": "renegades", "output": "⠗⠢⠑⠛â â ™â ‘â Ž" }, { "input": "renegading", "output": "⠗⠢⠑⠛â â ™â ¬" }, { "input": "renege", "output": "⠗⠢⠑⠛⠑" }, { "input": "reneged", "output": "⠗⠢⠑⠛⠫" }, { "input": "reneges", "output": "⠗⠢⠑⠛⠑⠎" }, { "input": "reneging", "output": "⠗⠢⠑⠛⠬" }, { "input": "renegotiate", "output": "⠗⠢⠑⠛⠕⠞⠊â â žâ ‘" }, { "input": "renegotiated", "output": "⠗⠢⠑⠛⠕⠞⠊â â žâ «" }, { "input": "renegotiates", "output": "⠗⠢⠑⠛⠕⠞⠊â â žâ ‘â Ž" }, { "input": "renegotiating", "output": "⠗⠢⠑⠛⠕⠞⠊â â žâ ¬" }, { "input": "renew", "output": "⠗⠢⠑⠺" }, { "input": "renewable", "output": "⠗⠢⠑⠺â â ƒâ ‡â ‘" }, { "input": "renewal", "output": "⠗⠢⠑⠺â â ‡" }, { "input": "renewals", "output": "⠗⠢⠑⠺â â ‡â Ž" }, { "input": "renewed", "output": "⠗⠢⠑⠺⠫" }, { "input": "renewing", "output": "⠗⠢⠑⠺⠬" }, { "input": "renews", "output": "⠗⠢⠑⠺⠎" }, { "input": "rennet", "output": "â —â ¢â â ‘â ž" }, { "input": "renounce", "output": "⠗⠢⠳â â ‰â ‘" }, { "input": "renounced", "output": "⠗⠢⠳â â ‰â «" }, { "input": "renounces", "output": "⠗⠢⠳â â ‰â ‘â Ž" }, { "input": "renouncing", "output": "⠗⠢⠳â â ‰â ¬" }, { "input": "renovate", "output": "⠗⠢⠕⠧â â žâ ‘" }, { "input": "renovated", "output": "⠗⠢⠕⠧â â žâ «" }, { "input": "renovates", "output": "⠗⠢⠕⠧â â žâ ‘â Ž" }, { "input": "renovating", "output": "⠗⠢⠕⠧â â žâ ¬" }, { "input": "renovation", "output": "⠗⠢⠕⠧â â °â " }, { "input": "renovations", "output": "⠗⠢⠕⠧â â °â â Ž" }, { "input": "renovator", "output": "⠗⠢⠕⠧â â žâ •â —" }, { "input": "renovators", "output": "⠗⠢⠕⠧â â žâ •â —â Ž" }, { "input": "renown", "output": "⠗⠢⠪â " }, { "input": "renowned", "output": "⠗⠢⠪â â «" }, { "input": "rent", "output": "⠗⠢⠞" }, { "input": "rental", "output": "⠗⠢⠞â â ‡" }, { "input": "rentals", "output": "⠗⠢⠞â â ‡â Ž" }, { "input": "rented", "output": "⠗⠢⠞⠫" }, { "input": "renter", "output": "⠗⠢⠞⠻" }, { "input": "renters", "output": "⠗⠢⠞⠻⠎" }, { "input": "renting", "output": "⠗⠢⠞⠬" }, { "input": "rents", "output": "⠗⠢⠞⠎" }, { "input": "renumber", "output": "⠗⠢⠥â â ƒâ »" }, { "input": "renumbered", "output": "⠗⠢⠥â â ƒâ »â «" }, { "input": "renumbering", "output": "⠗⠢⠥â â ƒâ »â ¬" }, { "input": "renumbers", "output": "⠗⠢⠥â â ƒâ »â Ž" }, { "input": "renunciation", "output": "⠗⠢⠥â â ‰â Šâ â °â " }, { "input": "renunciations", "output": "⠗⠢⠥â â ‰â Šâ â °â â Ž" }, { "input": "reoccupied", "output": "â —â ‘â •â ’â ¥â â Šâ «" }, { "input": "reoccupies", "output": "â —â ‘â •â ’â ¥â â Šâ ‘â Ž" }, { "input": "reoccupy", "output": "â —â ‘â •â ’â ¥â â ½" }, { "input": "reoccupying", "output": "â —â ‘â •â ’â ¥â â ½â ¬" }, { "input": "reoccur", "output": "⠗⠑⠕⠒⠥⠗" }, { "input": "reoccurred", "output": "⠗⠑⠕⠒⠥⠗⠗⠫" }, { "input": "reoccurring", "output": "⠗⠑⠕⠒⠥⠗⠗⠬" }, { "input": "reoccurs", "output": "⠗⠑⠕⠒⠥⠗⠎" }, { "input": "reopen", "output": "â —â ‘â •â â ¢" }, { "input": "reopened", "output": "â —â ‘â •â â ¢â «" }, { "input": "reopening", "output": "â —â ‘â •â â ¢â ¬" }, { "input": "reopens", "output": "â —â ‘â •â â ¢â Ž" }, { "input": "reorder", "output": "⠗⠑⠕⠗⠙⠻" }, { "input": "reordered", "output": "⠗⠑⠕⠗⠙⠻⠫" }, { "input": "reordering", "output": "⠗⠑⠕⠗⠙⠻⠬" }, { "input": "reorders", "output": "⠗⠑⠕⠗⠙⠻⠎" }, { "input": "reorganization", "output": "â —â ‘â •â —â ›â â â Šâ µâ â °â " }, { "input": "reorganizations", "output": "â —â ‘â •â —â ›â â â Šâ µâ â °â â Ž" }, { "input": "reorganize", "output": "â —â ‘â •â —â ›â â â Šâ µâ ‘" }, { "input": "reorganized", "output": "â —â ‘â •â —â ›â â â Šâ µâ «" }, { "input": "reorganizes", "output": "â —â ‘â •â —â ›â â â Šâ µâ ‘â Ž" }, { "input": "reorganizing", "output": "â —â ‘â •â —â ›â â â Šâ µâ ¬" }, { "input": "rep", "output": "â —â ‘â " }, { "input": "repackage", "output": "â —â ‘â â â ‰â …â â ›â ‘" }, { "input": "repackaged", "output": "â —â ‘â â â ‰â …â â ›â «" }, { "input": "repackages", "output": "â —â ‘â â â ‰â …â â ›â ‘â Ž" }, { "input": "repackaging", "output": "â —â ‘â â â ‰â …â â ›â ¬" }, { "input": "repaid", "output": "â —â ‘â â ™" }, { "input": "repaint", "output": "â —â ‘â â â ”â ž" }, { "input": "repainted", "output": "â —â ‘â â â ”â žâ «" }, { "input": "repainting", "output": "â —â ‘â â â ”â žâ ¬" }, { "input": "repaints", "output": "â —â ‘â â â ”â žâ Ž" }, { "input": "repair", "output": "â —â ‘â â â Šâ —" }, { "input": "repairable", "output": "â —â ‘â â â Šâ —â â ƒâ ‡â ‘" }, { "input": "repaired", "output": "â —â ‘â â â Šâ —â «" }, { "input": "repairing", "output": "â —â ‘â â â Šâ —â ¬" }, { "input": "repairman", "output": "â —â ‘â â â Šâ —â â â " }, { "input": "repairmen", "output": "â —â ‘â â â Šâ —â â ¢" }, { "input": "repairs", "output": "â —â ‘â â â Šâ —â Ž" }, { "input": "reparation", "output": "â —â ‘â â œâ â °â " }, { "input": "reparations", "output": "â —â ‘â â œâ â °â â Ž" }, { "input": "repartee", "output": "â —â ‘â â â ‘â ‘" }, { "input": "repast", "output": "â —â ‘â â â Œ" }, { "input": "repasts", "output": "â —â ‘â â â Œâ Ž" }, { "input": "repatriate", "output": "â —â ‘â â â žâ —â Šâ â žâ ‘" }, { "input": "repatriated", "output": "â —â ‘â â â žâ —â Šâ â žâ «" }, { "input": "repatriates", "output": "â —â ‘â â â žâ —â Šâ â žâ ‘â Ž" }, { "input": "repatriating", "output": "â —â ‘â â â žâ —â Šâ â žâ ¬" }, { "input": "repatriation", "output": "â —â ‘â â â žâ —â Šâ â °â " }, { "input": "repay", "output": "â —â ‘â â â ½" }, { "input": "repayable", "output": "â —â ‘â â â ½â â ƒâ ‡â ‘" }, { "input": "repaying", "output": "â —â ‘â â â ½â ¬" }, { "input": "repayment", "output": "â —â ‘â â â ½â °â ž" }, { "input": "repayments", "output": "â —â ‘â â â ½â °â žâ Ž" }, { "input": "repays", "output": "â —â ‘â â â ½â Ž" }, { "input": "repeal", "output": "â —â ‘â â ‚â ‡" }, { "input": "repealed", "output": "â —â ‘â â ‚⠇⠫" }, { "input": "repealing", "output": "â —â ‘â â ‚⠇⠬" }, { "input": "repeals", "output": "â —â ‘â â ‚⠇⠎" }, { "input": "repeat", "output": "â —â ‘â â ‚â ž" }, { "input": "repeatable", "output": "â —â ‘â â ‚â žâ â ƒâ ‡â ‘" }, { "input": "repeatably", "output": "â —â ‘â â ‚â žâ â ƒâ ‡â ½" }, { "input": "repeated", "output": "â —â ‘â â ‚â žâ «" }, { "input": "repeatedly", "output": "â —â ‘â â ‚⠞⠫⠇⠽" }, { "input": "repeater", "output": "â —â ‘â â ‚â žâ »" }, { "input": "repeaters", "output": "â —â ‘â â ‚⠞⠻⠎" }, { "input": "repeating", "output": "â —â ‘â â ‚â žâ ¬" }, { "input": "repeats", "output": "â —â ‘â â ‚â žâ Ž" }, { "input": "repel", "output": "â —â ‘â â ‘â ‡" }, { "input": "repellant", "output": "â —â ‘â â ‘⠇⠇â â â ž" }, { "input": "repellants", "output": "â —â ‘â â ‘⠇⠇â â â žâ Ž" }, { "input": "repelled", "output": "â —â ‘â â ‘⠇⠇⠫" }, { "input": "repellent", "output": "â —â ‘â â ‘⠇⠇⠢⠞" }, { "input": "repellents", "output": "â —â ‘â â ‘⠇⠇⠢⠞⠎" }, { "input": "repelling", "output": "â —â ‘â â ‘⠇⠇⠬" }, { "input": "repels", "output": "â —â ‘â â ‘⠇⠎" }, { "input": "repent", "output": "â —â ‘â â ¢â ž" }, { "input": "repentance", "output": "â —â ‘â â ¢â žâ ¨â ‘" }, { "input": "repentant", "output": "â —â ‘â â ¢â žâ â â ž" }, { "input": "repented", "output": "â —â ‘â â ¢â žâ «" }, { "input": "repenting", "output": "â —â ‘â â ¢â žâ ¬" }, { "input": "repents", "output": "â —â ‘â â ¢â žâ Ž" }, { "input": "repercussion", "output": "â —â ‘â â »â ‰â ¥â Žâ ¨â " }, { "input": "repercussions", "output": "â —â ‘â â »â ‰â ¥â Žâ ¨â â Ž" }, { "input": "repertoire", "output": "â —â ‘â â »â žâ •â Šâ —â ‘" }, { "input": "repertoires", "output": "â —â ‘â â »â žâ •â Šâ —â ‘â Ž" }, { "input": "repertories", "output": "â —â ‘â â »â žâ •â —â Šâ ‘â Ž" }, { "input": "repertory", "output": "â —â ‘â â »â žâ •â —â ½" }, { "input": "repetition", "output": "â —â ‘â â ‘â žâ Šâ °â " }, { "input": "repetitions", "output": "â —â ‘â â ‘â žâ Šâ °â â Ž" }, { "input": "repetitious", "output": "â —â ‘â â ‘⠞⠊⠞⠊⠳⠎" }, { "input": "repetitive", "output": "â —â ‘â â ‘â žâ Šâ žâ Šâ §â ‘" }, { "input": "rephrase", "output": "â —â ‘â â “â —â â Žâ ‘" }, { "input": "rephrased", "output": "â —â ‘â â “â —â â Žâ «" }, { "input": "rephrases", "output": "â —â ‘â â “â —â â Žâ ‘â Ž" }, { "input": "rephrasing", "output": "â —â ‘â â “â —â â Žâ ¬" }, { "input": "replace", "output": "â —â ‘â â ‡â â ‰â ‘" }, { "input": "replaceable", "output": "â —â ‘â â ‡â â ‰â ‚⠃⠇⠑" }, { "input": "replaced", "output": "â —â ‘â â ‡â â ‰â «" }, { "input": "replacement", "output": "â —â ‘â â ‡â â ‰â ‘â °â ž" }, { "input": "replacements", "output": "â —â ‘â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "replaces", "output": "â —â ‘â â ‡â â ‰â ‘â Ž" }, { "input": "replacing", "output": "â —â ‘â â ‡â â ‰â ¬" }, { "input": "replay", "output": "â —â ‘â â ‡â â ½" }, { "input": "replayed", "output": "â —â ‘â â ‡â â ½â «" }, { "input": "replaying", "output": "â —â ‘â â ‡â â ½â ¬" }, { "input": "replays", "output": "â —â ‘â â ‡â â ½â Ž" }, { "input": "replenish", "output": "â —â ‘â â ‡â ¢â Šâ ©" }, { "input": "replenished", "output": "â —â ‘â â ‡â ¢â Šâ ©â «" }, { "input": "replenishes", "output": "â —â ‘â â ‡â ¢â Šâ ©â ‘â Ž" }, { "input": "replenishing", "output": "â —â ‘â â ‡â ¢â Šâ ©â ¬" }, { "input": "replenishment", "output": "â —â ‘â â ‡â ¢â Šâ ©â °â ž" }, { "input": "replete", "output": "â —â ‘â â ‡â ‘â žâ ‘" }, { "input": "repleted", "output": "â —â ‘â â ‡â ‘â žâ «" }, { "input": "repletes", "output": "â —â ‘â â ‡â ‘â žâ ‘â Ž" }, { "input": "repleting", "output": "â —â ‘â â ‡â ‘â žâ ¬" }, { "input": "repletion", "output": "â —â ‘â â ‡â ‘â °â " }, { "input": "replica", "output": "â —â ‘â â ‡â Šâ ‰â " }, { "input": "replicas", "output": "â —â ‘â â ‡â Šâ ‰â â Ž" }, { "input": "replicate", "output": "â —â ‘â â ‡â Šâ ‰â â žâ ‘" }, { "input": "replicated", "output": "â —â ‘â â ‡â Šâ ‰â â žâ «" }, { "input": "replicates", "output": "â —â ‘â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "replicating", "output": "â —â ‘â â ‡â Šâ ‰â â žâ ¬" }, { "input": "replication", "output": "â —â ‘â â ‡â Šâ ‰â â °â " }, { "input": "replications", "output": "â —â ‘â â ‡â Šâ ‰â â °â â Ž" }, { "input": "replied", "output": "â —â ‘â â ‡â Šâ «" }, { "input": "replies", "output": "â —â ‘â â ‡â Šâ ‘â Ž" }, { "input": "reply", "output": "â —â ‘â â ‡â ½" }, { "input": "replying", "output": "â —â ‘â â ‡â ½â ¬" }, { "input": "report", "output": "â —â ‘â â •â —â ž" }, { "input": "reportage", "output": "â —â ‘â â •â —â žâ â ›â ‘" }, { "input": "reported", "output": "â —â ‘â â •â —â žâ «" }, { "input": "reportedly", "output": "â —â ‘â â •⠗⠞⠫⠇⠽" }, { "input": "reporter", "output": "â —â ‘â â •â —â žâ »" }, { "input": "reporters", "output": "â —â ‘â â •⠗⠞⠻⠎" }, { "input": "reporting", "output": "â —â ‘â â •â —â žâ ¬" }, { "input": "reports", "output": "â —â ‘â â •â —â žâ Ž" }, { "input": "repose", "output": "â —â ‘â â •â Žâ ‘" }, { "input": "reposed", "output": "â —â ‘â â •â Žâ «" }, { "input": "reposeful", "output": "â —â ‘â â •â Žâ ‘â °â ‡" }, { "input": "reposes", "output": "â —â ‘â â •â Žâ ‘â Ž" }, { "input": "reposing", "output": "â —â ‘â â •â Žâ ¬" }, { "input": "repositories", "output": "â —â ‘â â •â Žâ Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "repository", "output": "â —â ‘â â •â Žâ Šâ žâ •â —â ½" }, { "input": "repossess", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "repossessed", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "repossesses", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "repossessing", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ ¬" }, { "input": "repossession", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "repossessions", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â â Ž" }, { "input": "reprehend", "output": "â —â ‘â â —⠑⠓⠢⠙" }, { "input": "reprehended", "output": "â —â ‘â â —⠑⠓⠢⠙⠫" }, { "input": "reprehending", "output": "â —â ‘â â —⠑⠓⠢⠙⠬" }, { "input": "reprehends", "output": "â —â ‘â â —⠑⠓⠢⠙⠎" }, { "input": "reprehensible", "output": "â —â ‘â â —⠑⠓⠢⠎⠊⠃⠇⠑" }, { "input": "reprehensibly", "output": "â —â ‘â â —⠑⠓⠢⠎⠊⠃⠇⠽" }, { "input": "represent", "output": "â —â ‘â â —⠑⠎⠢⠞" }, { "input": "representation", "output": "â —â ‘â â —⠑⠎⠢⠞â â °â " }, { "input": "representational", "output": "â —â ‘â â —⠑⠎⠢⠞â â °â â â ‡" }, { "input": "representations", "output": "â —â ‘â â —⠑⠎⠢⠞â â °â â Ž" }, { "input": "representative", "output": "â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘" }, { "input": "representatives", "output": "â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘â Ž" }, { "input": "represented", "output": "â —â ‘â â —⠑⠎⠢⠞⠫" }, { "input": "representing", "output": "â —â ‘â â —⠑⠎⠢⠞⠬" }, { "input": "represents", "output": "â —â ‘â â —⠑⠎⠢⠞⠎" }, { "input": "repress", "output": "â —â ‘â â —â ‘â Žâ Ž" }, { "input": "repressed", "output": "â —â ‘â â —â ‘â Žâ Žâ «" }, { "input": "represses", "output": "â —â ‘â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "repressing", "output": "â —â ‘â â —â ‘â Žâ Žâ ¬" }, { "input": "repression", "output": "â —â ‘â â —â ‘â Žâ ¨â " }, { "input": "repressions", "output": "â —â ‘â â —â ‘â Žâ ¨â â Ž" }, { "input": "repressive", "output": "â —â ‘â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "reprieve", "output": "â —â ‘â â —â Šâ ‘â §â ‘" }, { "input": "reprieved", "output": "â —â ‘â â —â Šâ ‘â §â «" }, { "input": "reprieves", "output": "â —â ‘â â —â Šâ ‘â §â ‘â Ž" }, { "input": "reprieving", "output": "â —â ‘â â —â Šâ ‘â §â ¬" }, { "input": "reprimand", "output": "â —â ‘â â —â Šâ â ¯" }, { "input": "reprimanded", "output": "â —â ‘â â —â Šâ â ¯â «" }, { "input": "reprimanding", "output": "â —â ‘â â —â Šâ â ¯â ¬" }, { "input": "reprimands", "output": "â —â ‘â â —â Šâ â ¯â Ž" }, { "input": "reprint", "output": "â —â ‘â â —⠔⠞" }, { "input": "reprinted", "output": "â —â ‘â â —⠔⠞⠫" }, { "input": "reprinting", "output": "â —â ‘â â —⠔⠞⠬" }, { "input": "reprints", "output": "â —â ‘â â —⠔⠞⠎" }, { "input": "reprisal", "output": "â —â ‘â â —â Šâ Žâ â ‡" }, { "input": "reprisals", "output": "â —â ‘â â —â Šâ Žâ â ‡â Ž" }, { "input": "reprise", "output": "â —â ‘â â —â Šâ Žâ ‘" }, { "input": "reprises", "output": "â —â ‘â â —â Šâ Žâ ‘â Ž" }, { "input": "reprising", "output": "â —â ‘â â —â Šâ Žâ ¬" }, { "input": "reprized", "output": "â —â ‘â â —⠊⠵⠫" }, { "input": "reproach", "output": "â —â ‘â â —â •â â ¡" }, { "input": "reproached", "output": "â —â ‘â â —â •â â ¡â «" }, { "input": "reproaches", "output": "â —â ‘â â —â •â â ¡â ‘â Ž" }, { "input": "reproachful", "output": "â —â ‘â â —â •â â ¡â °â ‡" }, { "input": "reproachfully", "output": "â —â ‘â â —â •â â ¡â °â ‡â ‡â ½" }, { "input": "reproaching", "output": "â —â ‘â â —â •â â ¡â ¬" }, { "input": "reprobate", "output": "â —â ‘â â —â •â ƒâ â žâ ‘" }, { "input": "reprobates", "output": "â —â ‘â â —â •â ƒâ â žâ ‘â Ž" }, { "input": "reprocess", "output": "â —â ‘â â —⠕⠉⠑⠎⠎" }, { "input": "reprocessed", "output": "â —â ‘â â —⠕⠉⠑⠎⠎⠫" }, { "input": "reprocesses", "output": "â —â ‘â â —⠕⠉⠑⠎⠎⠑⠎" }, { "input": "reprocessing", "output": "â —â ‘â â —⠕⠉⠑⠎⠎⠬" }, { "input": "reproduce", "output": "â —â ‘â â —⠕⠙⠥⠉⠑" }, { "input": "reproduced", "output": "â —â ‘â â —⠕⠙⠥⠉⠫" }, { "input": "reproduces", "output": "â —â ‘â â —⠕⠙⠥⠉⠑⠎" }, { "input": "reproducible", "output": "â —â ‘â â —⠕⠙⠥⠉⠊⠃⠇⠑" }, { "input": "reproducing", "output": "â —â ‘â â —⠕⠙⠥⠉⠬" }, { "input": "reproduction", "output": "â —â ‘â â —⠕⠙⠥⠉⠰â " }, { "input": "reproductions", "output": "â —â ‘â â —⠕⠙⠥⠉⠰â â Ž" }, { "input": "reproductive", "output": "â —â ‘â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "reprogram", "output": "â —â ‘â â —⠕⠛⠗â â " }, { "input": "reprogramed", "output": "â —â ‘â â —⠕⠛⠗â â â «" }, { "input": "reprograming", "output": "â —â ‘â â —⠕⠛⠗â â â ¬" }, { "input": "reprogrammed", "output": "â —â ‘â â —⠕⠛⠗â â â â «" }, { "input": "reprogramming", "output": "â —â ‘â â —⠕⠛⠗â â â â ¬" }, { "input": "reprograms", "output": "â —â ‘â â —⠕⠛⠗â â â Ž" }, { "input": "reproof", "output": "â —â ‘â â —â •â ·" }, { "input": "reproofed", "output": "â —â ‘â â —â •â ·â «" }, { "input": "reproofing", "output": "â —â ‘â â —â •â ·â ¬" }, { "input": "reproofs", "output": "â —â ‘â â —â •â ·â Ž" }, { "input": "reprove", "output": "â —â ‘â â —â •â §â ‘" }, { "input": "reproved", "output": "â —â ‘â â —â •â §â «" }, { "input": "reproves", "output": "â —â ‘â â —â •â §â ‘â Ž" }, { "input": "reproving", "output": "â —â ‘â â —â •â §â ¬" }, { "input": "reps", "output": "â —â ‘â â Ž" }, { "input": "reptile", "output": "â —â ‘â â žâ Šâ ‡â ‘" }, { "input": "reptiles", "output": "â —â ‘â â žâ Šâ ‡â ‘â Ž" }, { "input": "reptilian", "output": "â —â ‘â â žâ Šâ ‡â Šâ â " }, { "input": "reptilians", "output": "â —â ‘â â žâ Šâ ‡â Šâ â â Ž" }, { "input": "republic", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰" }, { "input": "republican", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â " }, { "input": "republicanism", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â Šâ Žâ " }, { "input": "republicans", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â Ž" }, { "input": "republics", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â Ž" }, { "input": "republish", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©" }, { "input": "republished", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©â «" }, { "input": "republishes", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "republishing", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©â ¬" }, { "input": "repudiate", "output": "â —â ‘â â ¥â ™â Šâ â žâ ‘" }, { "input": "repudiated", "output": "â —â ‘â â ¥â ™â Šâ â žâ «" }, { "input": "repudiates", "output": "â —â ‘â â ¥â ™â Šâ â žâ ‘â Ž" }, { "input": "repudiating", "output": "â —â ‘â â ¥â ™â Šâ â žâ ¬" }, { "input": "repudiation", "output": "â —â ‘â â ¥â ™â Šâ â °â " }, { "input": "repudiations", "output": "â —â ‘â â ¥â ™â Šâ â °â â Ž" }, { "input": "repugnance", "output": "â —â ‘â â ¥â ›â â ¨â ‘" }, { "input": "repugnant", "output": "â —â ‘â â ¥â ›â â â â ž" }, { "input": "repulse", "output": "â —â ‘â â ¥â ‡â Žâ ‘" }, { "input": "repulsed", "output": "â —â ‘â â ¥â ‡â Žâ «" }, { "input": "repulses", "output": "â —â ‘â â ¥â ‡â Žâ ‘â Ž" }, { "input": "repulsing", "output": "â —â ‘â â ¥â ‡â Žâ ¬" }, { "input": "repulsion", "output": "â —â ‘â â ¥â ‡â ¨â " }, { "input": "repulsive", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "repulsively", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘⠇⠽" }, { "input": "repulsiveness", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘â °â Ž" }, { "input": "reputable", "output": "â —â ‘â â ¥â žâ â ƒâ ‡â ‘" }, { "input": "reputably", "output": "â —â ‘â â ¥â žâ â ƒâ ‡â ½" }, { "input": "reputation", "output": "â —â ‘â â ¥â žâ â °â " }, { "input": "reputations", "output": "â —â ‘â â ¥â žâ â °â â Ž" }, { "input": "repute", "output": "â —â ‘â â ¥â žâ ‘" }, { "input": "reputed", "output": "â —â ‘â â ¥â žâ «" }, { "input": "reputedly", "output": "â —â ‘â â ¥â žâ «â ‡â ½" }, { "input": "reputes", "output": "â —â ‘â â ¥â žâ ‘â Ž" }, { "input": "reputing", "output": "â —â ‘â â ¥â žâ ¬" }, { "input": "request", "output": "⠗⠑⠟⠥⠑⠌" }, { "input": "requested", "output": "⠗⠑⠟⠥⠑⠌⠫" }, { "input": "requester", "output": "⠗⠑⠟⠥⠑⠌⠻" }, { "input": "requesting", "output": "⠗⠑⠟⠥⠑⠌⠬" }, { "input": "requests", "output": "⠗⠑⠟⠥⠑⠌⠎" }, { "input": "requiem", "output": "⠗⠑⠟⠥⠊⠑â " }, { "input": "requiems", "output": "⠗⠑⠟⠥⠊⠑â â Ž" }, { "input": "require", "output": "⠗⠑⠟⠥⠊⠗⠑" }, { "input": "required", "output": "⠗⠑⠟⠥⠊⠗⠫" }, { "input": "requirement", "output": "⠗⠑⠟⠥⠊⠗⠑⠰⠞" }, { "input": "requirements", "output": "⠗⠑⠟⠥⠊⠗⠑⠰⠞⠎" }, { "input": "requires", "output": "⠗⠑⠟⠥⠊⠗⠑⠎" }, { "input": "requiring", "output": "⠗⠑⠟⠥⠊⠗⠬" }, { "input": "requisite", "output": "⠗⠑⠟⠥⠊⠎⠊⠞⠑" }, { "input": "requisites", "output": "⠗⠑⠟⠥⠊⠎⠊⠞⠑⠎" }, { "input": "requisition", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â " }, { "input": "requisitioned", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â «" }, { "input": "requisitioning", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â ¬" }, { "input": "requisitions", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â Ž" }, { "input": "requital", "output": "⠗⠑⠟⠥⠊⠞â â ‡" }, { "input": "requite", "output": "⠗⠑⠟⠥⠊⠞⠑" }, { "input": "requited", "output": "⠗⠑⠟⠥⠊⠞⠫" }, { "input": "requites", "output": "⠗⠑⠟⠥⠊⠞⠑⠎" }, { "input": "requiting", "output": "⠗⠑⠟⠥⠊⠞⠬" }, { "input": "reran", "output": "â —â »â â " }, { "input": "reread", "output": "⠗⠻⠂⠙" }, { "input": "rereading", "output": "⠗⠻⠂⠙⠬" }, { "input": "rereads", "output": "⠗⠻⠂⠙⠎" }, { "input": "reroute", "output": "⠗⠻⠳⠞⠑" }, { "input": "rerouted", "output": "⠗⠻⠳⠞⠫" }, { "input": "reroutes", "output": "⠗⠻⠳⠞⠑⠎" }, { "input": "rerouting", "output": "⠗⠻⠳⠞⠬" }, { "input": "rerun", "output": "⠗⠻⠥â " }, { "input": "rerunning", "output": "â —â ‘â —â ¥â â â ¬" }, { "input": "reruns", "output": "⠗⠻⠥â â Ž" }, { "input": "resale", "output": "â —â ‘â Žâ â ‡â ‘" }, { "input": "resales", "output": "â —â ‘â Žâ â ‡â ‘â Ž" }, { "input": "reschedule", "output": "⠗⠑⠎⠡⠫⠥⠇⠑" }, { "input": "rescheduled", "output": "⠗⠑⠎⠡⠫⠥⠇⠫" }, { "input": "reschedules", "output": "⠗⠑⠎⠡⠫⠥⠇⠑⠎" }, { "input": "rescheduling", "output": "⠗⠑⠎⠡⠫⠥⠇⠬" }, { "input": "rescind", "output": "⠗⠑⠎⠉⠔⠙" }, { "input": "rescinded", "output": "⠗⠑⠎⠉⠔⠙⠫" }, { "input": "rescinding", "output": "⠗⠑⠎⠉⠔⠙⠬" }, { "input": "rescinds", "output": "⠗⠑⠎⠉⠔⠙⠎" }, { "input": "rescission", "output": "⠗⠑⠎⠉⠊⠎⠨â " }, { "input": "rescue", "output": "⠗⠑⠎⠉⠥⠑" }, { "input": "rescued", "output": "⠗⠑⠎⠉⠥⠫" }, { "input": "rescuer", "output": "⠗⠑⠎⠉⠥⠻" }, { "input": "rescuers", "output": "⠗⠑⠎⠉⠥⠻⠎" }, { "input": "rescues", "output": "⠗⠑⠎⠉⠥⠑⠎" }, { "input": "rescuing", "output": "⠗⠑⠎⠉⠥⠬" }, { "input": "research", "output": "⠗⠑⠎⠑⠜⠡" }, { "input": "researched", "output": "⠗⠑⠎⠑⠜⠡⠫" }, { "input": "researcher", "output": "⠗⠑⠎⠑⠜⠡⠻" }, { "input": "researchers", "output": "⠗⠑⠎⠑⠜⠡⠻⠎" }, { "input": "researches", "output": "⠗⠑⠎⠑⠜⠡⠑⠎" }, { "input": "researching", "output": "⠗⠑⠎⠑⠜⠡⠬" }, { "input": "resell", "output": "⠗⠑⠎⠑⠇⠇" }, { "input": "reselling", "output": "⠗⠑⠎⠑⠇⠇⠬" }, { "input": "resells", "output": "⠗⠑⠎⠑⠇⠇⠎" }, { "input": "resemblance", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ¨â ‘" }, { "input": "resemblances", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ¨â ‘â Ž" }, { "input": "resemble", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ‘" }, { "input": "resembled", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â «" }, { "input": "resembles", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ‘â Ž" }, { "input": "resembling", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ¬" }, { "input": "resend", "output": "⠗⠑⠎⠢⠙" }, { "input": "resent", "output": "⠗⠑⠎⠢⠞" }, { "input": "resented", "output": "⠗⠑⠎⠢⠞⠫" }, { "input": "resentful", "output": "⠗⠑⠎⠢⠞⠰⠇" }, { "input": "resentfully", "output": "⠗⠑⠎⠢⠞⠰⠇⠇⠽" }, { "input": "resenting", "output": "⠗⠑⠎⠢⠞⠬" }, { "input": "resentment", "output": "⠗⠑⠎⠢⠞⠰⠞" }, { "input": "resentments", "output": "⠗⠑⠎⠢⠞⠰⠞⠎" }, { "input": "resents", "output": "⠗⠑⠎⠢⠞⠎" }, { "input": "reservation", "output": "⠗⠑⠎⠻⠧â â °â " }, { "input": "reservations", "output": "⠗⠑⠎⠻⠧â â °â â Ž" }, { "input": "reserve", "output": "⠗⠑⠎⠻⠧⠑" }, { "input": "reserved", "output": "⠗⠑⠎⠻⠧⠫" }, { "input": "reservedly", "output": "⠗⠑⠎⠻⠧⠫⠇⠽" }, { "input": "reserves", "output": "⠗⠑⠎⠻⠧⠑⠎" }, { "input": "reserving", "output": "⠗⠑⠎⠻⠧⠬" }, { "input": "reservist", "output": "⠗⠑⠎⠻⠧⠊⠌" }, { "input": "reservists", "output": "⠗⠑⠎⠻⠧⠊⠌⠎" }, { "input": "reservoir", "output": "⠗⠑⠎⠻⠧⠕⠊⠗" }, { "input": "reservoirs", "output": "⠗⠑⠎⠻⠧⠕⠊⠗⠎" }, { "input": "reset", "output": "â —â ‘â Žâ ‘â ž" }, { "input": "resets", "output": "â —â ‘â Žâ ‘â žâ Ž" }, { "input": "resetting", "output": "â —â ‘â Žâ ‘â žâ žâ ¬" }, { "input": "resettle", "output": "⠗⠑⠎⠑⠞⠞⠇⠑" }, { "input": "resettled", "output": "⠗⠑⠎⠑⠞⠞⠇⠫" }, { "input": "resettles", "output": "⠗⠑⠎⠑⠞⠞⠇⠑⠎" }, { "input": "resettling", "output": "⠗⠑⠎⠑⠞⠞⠇⠬" }, { "input": "reshuffle", "output": "⠗⠑⠩⠥⠖⠇⠑" }, { "input": "reshuffled", "output": "⠗⠑⠩⠥⠖⠇⠫" }, { "input": "reshuffles", "output": "⠗⠑⠩⠥⠖⠇⠑⠎" }, { "input": "reshuffling", "output": "⠗⠑⠩⠥⠖⠇⠬" }, { "input": "reside", "output": "⠗⠑⠎⠊⠙⠑" }, { "input": "resided", "output": "⠗⠑⠎⠊⠙⠫" }, { "input": "residence", "output": "⠗⠑⠎⠊⠙⠰⠑" }, { "input": "residences", "output": "⠗⠑⠎⠊⠙⠰⠑⠎" }, { "input": "residencies", "output": "⠗⠑⠎⠊⠙⠢⠉⠊⠑⠎" }, { "input": "residency", "output": "⠗⠑⠎⠊⠙⠢⠉⠽" }, { "input": "resident", "output": "⠗⠑⠎⠊⠙⠢⠞" }, { "input": "residential", "output": "⠗⠑⠎⠊⠙⠢⠞⠊â â ‡" }, { "input": "residents", "output": "⠗⠑⠎⠊⠙⠢⠞⠎" }, { "input": "resides", "output": "⠗⠑⠎⠊⠙⠑⠎" }, { "input": "residing", "output": "⠗⠑⠎⠊⠙⠬" }, { "input": "residual", "output": "⠗⠑⠎⠊⠙⠥â â ‡" }, { "input": "residuals", "output": "⠗⠑⠎⠊⠙⠥â â ‡â Ž" }, { "input": "residue", "output": "⠗⠑⠎⠊⠙⠥⠑" }, { "input": "residues", "output": "⠗⠑⠎⠊⠙⠥⠑⠎" }, { "input": "resign", "output": "â —â ‘â Žâ Šâ ›â " }, { "input": "resignation", "output": "â —â ‘â Žâ Šâ ›â â â °â " }, { "input": "resignations", "output": "â —â ‘â Žâ Šâ ›â â â °â â Ž" }, { "input": "resigned", "output": "â —â ‘â Žâ Šâ ›â â «" }, { "input": "resignedly", "output": "â —â ‘â Žâ Šâ ›â â «â ‡â ½" }, { "input": "resigning", "output": "â —â ‘â Žâ Šâ ›â â ¬" }, { "input": "resigns", "output": "â —â ‘â Žâ Šâ ›â â Ž" }, { "input": "resilience", "output": "⠗⠑⠎⠊⠇⠊⠰⠑" }, { "input": "resiliency", "output": "⠗⠑⠎⠊⠇⠊⠢⠉⠽" }, { "input": "resilient", "output": "⠗⠑⠎⠊⠇⠊⠢⠞" }, { "input": "resin", "output": "â —â ‘â Žâ ”" }, { "input": "resinous", "output": "⠗⠑⠎⠔⠳⠎" }, { "input": "resins", "output": "⠗⠑⠎⠔⠎" }, { "input": "resist", "output": "â —â ‘â Žâ Šâ Œ" }, { "input": "resistance", "output": "⠗⠑⠎⠊⠌⠨⠑" }, { "input": "resistances", "output": "⠗⠑⠎⠊⠌⠨⠑⠎" }, { "input": "resistant", "output": "â —â ‘â Žâ Šâ Œâ â â ž" }, { "input": "resisted", "output": "⠗⠑⠎⠊⠌⠫" }, { "input": "resister", "output": "⠗⠑⠎⠊⠌⠻" }, { "input": "resisters", "output": "⠗⠑⠎⠊⠌⠻⠎" }, { "input": "resisting", "output": "⠗⠑⠎⠊⠌⠬" }, { "input": "resistor", "output": "⠗⠑⠎⠊⠌⠕⠗" }, { "input": "resistors", "output": "⠗⠑⠎⠊⠌⠕⠗⠎" }, { "input": "resists", "output": "⠗⠑⠎⠊⠌⠎" }, { "input": "resold", "output": "⠗⠑⠎⠕⠇⠙" }, { "input": "resolute", "output": "⠗⠑⠎⠕⠇⠥⠞⠑" }, { "input": "resolutely", "output": "⠗⠑⠎⠕⠇⠥⠞⠑⠇⠽" }, { "input": "resoluteness", "output": "⠗⠑⠎⠕⠇⠥⠞⠑⠰⠎" }, { "input": "resolution", "output": "⠗⠑⠎⠕⠇⠥⠰â " }, { "input": "resolutions", "output": "⠗⠑⠎⠕⠇⠥⠰â â Ž" }, { "input": "resolve", "output": "⠗⠑⠎⠕⠇⠧⠑" }, { "input": "resolved", "output": "⠗⠑⠎⠕⠇⠧⠫" }, { "input": "resolver", "output": "⠗⠑⠎⠕⠇⠧⠻" }, { "input": "resolves", "output": "⠗⠑⠎⠕⠇⠧⠑⠎" }, { "input": "resolving", "output": "⠗⠑⠎⠕⠇⠧⠬" }, { "input": "resonance", "output": "â —â ‘â Žâ •â â ¨â ‘" }, { "input": "resonances", "output": "â —â ‘â Žâ •â â ¨â ‘â Ž" }, { "input": "resonant", "output": "â —â ‘â Žâ •â â â â ž" }, { "input": "resonantly", "output": "â —â ‘â Žâ •â â â â žâ ‡â ½" }, { "input": "resonate", "output": "â —â ‘â Žâ •â â â žâ ‘" }, { "input": "resonated", "output": "â —â ‘â Žâ •â â â žâ «" }, { "input": "resonates", "output": "â —â ‘â Žâ •â â â žâ ‘â Ž" }, { "input": "resonating", "output": "â —â ‘â Žâ •â â â žâ ¬" }, { "input": "resonator", "output": "â —â ‘â Žâ •â â â žâ •â —" }, { "input": "resonators", "output": "â —â ‘â Žâ •â â â žâ •â —â Ž" }, { "input": "resort", "output": "â —â ‘â Žâ •â —â ž" }, { "input": "resorted", "output": "â —â ‘â Žâ •â —â žâ «" }, { "input": "resorting", "output": "â —â ‘â Žâ •â —â žâ ¬" }, { "input": "resorts", "output": "â —â ‘â Žâ •â —â žâ Ž" }, { "input": "resound", "output": "⠗⠑⠎⠨⠙" }, { "input": "resounded", "output": "⠗⠑⠎⠨⠙⠫" }, { "input": "resounding", "output": "⠗⠑⠎⠨⠙⠬" }, { "input": "resoundingly", "output": "⠗⠑⠎⠨⠙⠬⠇⠽" }, { "input": "resounds", "output": "⠗⠑⠎⠨⠙⠎" }, { "input": "resource", "output": "⠗⠑⠎⠳⠗⠉⠑" }, { "input": "resourced", "output": "⠗⠑⠎⠳⠗⠉⠫" }, { "input": "resourceful", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇" }, { "input": "resourcefully", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇⠇⠽" }, { "input": "resourcefulness", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇⠰⠎" }, { "input": "resources", "output": "⠗⠑⠎⠳⠗⠉⠑⠎" }, { "input": "resourcing", "output": "⠗⠑⠎⠳⠗⠉⠬" }, { "input": "respect", "output": "â —â ‘â Žâ â ‘⠉⠞" }, { "input": "respectability", "output": "â —â ‘â Žâ â ‘⠉⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "respectable", "output": "â —â ‘â Žâ â ‘⠉⠞â â ƒâ ‡â ‘" }, { "input": "respectably", "output": "â —â ‘â Žâ â ‘⠉⠞â â ƒâ ‡â ½" }, { "input": "respected", "output": "â —â ‘â Žâ â ‘⠉⠞⠫" }, { "input": "respectful", "output": "â —â ‘â Žâ â ‘⠉⠞⠰⠇" }, { "input": "respectfully", "output": "â —â ‘â Žâ â ‘⠉⠞⠰⠇⠇⠽" }, { "input": "respecting", "output": "â —â ‘â Žâ â ‘⠉⠞⠬" }, { "input": "respective", "output": "â —â ‘â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "respectively", "output": "â —â ‘â Žâ â ‘⠉⠞⠊⠧⠑⠇⠽" }, { "input": "respects", "output": "â —â ‘â Žâ â ‘⠉⠞⠎" }, { "input": "respell", "output": "â —â ‘â Žâ â ‘⠇⠇" }, { "input": "respelled", "output": "â —â ‘â Žâ â ‘⠇⠇⠫" }, { "input": "respelling", "output": "â —â ‘â Žâ â ‘⠇⠇⠬" }, { "input": "respells", "output": "â —â ‘â Žâ â ‘⠇⠇⠎" }, { "input": "respelt", "output": "â —â ‘â Žâ â ‘⠇⠞" }, { "input": "respiration", "output": "â —â ‘â Žâ â Šâ —â â °â " }, { "input": "respirator", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —" }, { "input": "respirators", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —â Ž" }, { "input": "respiratory", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —â ½" }, { "input": "respire", "output": "â —â ‘â Žâ â Šâ —â ‘" }, { "input": "respired", "output": "â —â ‘â Žâ â Šâ —â «" }, { "input": "respires", "output": "â —â ‘â Žâ â Šâ —â ‘â Ž" }, { "input": "respiring", "output": "â —â ‘â Žâ â Šâ —â ¬" }, { "input": "respite", "output": "â —â ‘â Žâ â Šâ žâ ‘" }, { "input": "respites", "output": "â —â ‘â Žâ â Šâ žâ ‘â Ž" }, { "input": "resplendence", "output": "â —â ‘â Žâ â ‡â ¢â ™â °â ‘" }, { "input": "resplendent", "output": "â —â ‘â Žâ â ‡â ¢â ™â ¢â ž" }, { "input": "resplendently", "output": "â —â ‘â Žâ â ‡â ¢â ™â ¢â žâ ‡â ½" }, { "input": "respond", "output": "â —â ‘â Žâ â •â â ™" }, { "input": "responded", "output": "â —â ‘â Žâ â •â â ™â «" }, { "input": "respondent", "output": "â —â ‘â Žâ â •â â ™â ¢â ž" }, { "input": "respondents", "output": "â —â ‘â Žâ â •â â ™â ¢â žâ Ž" }, { "input": "responding", "output": "â —â ‘â Žâ â •â â ™â ¬" }, { "input": "responds", "output": "â —â ‘â Žâ â •â â ™â Ž" }, { "input": "response", "output": "â —â ‘â Žâ â •â â Žâ ‘" }, { "input": "responses", "output": "â —â ‘â Žâ â •â â Žâ ‘â Ž" }, { "input": "responsibilities", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "responsibility", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "responsible", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ ‡â ‘" }, { "input": "responsibly", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ ‡â ½" }, { "input": "responsive", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘" }, { "input": "responsively", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘⠇⠽" }, { "input": "responsiveness", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘â °â Ž" }, { "input": "rest", "output": "â —â ‘â Œ" }, { "input": "restart", "output": "⠗⠑⠌⠜⠞" }, { "input": "restarted", "output": "⠗⠑⠌⠜⠞⠫" }, { "input": "restarting", "output": "⠗⠑⠌⠜⠞⠬" }, { "input": "restarts", "output": "⠗⠑⠌⠜⠞⠎" }, { "input": "restate", "output": "â —â ‘â Œâ â žâ ‘" }, { "input": "restated", "output": "â —â ‘â Œâ â žâ «" }, { "input": "restatement", "output": "â —â ‘â Œâ â žâ ‘â °â ž" }, { "input": "restatements", "output": "â —â ‘â Œâ â žâ ‘â °â žâ Ž" }, { "input": "restates", "output": "â —â ‘â Œâ â žâ ‘â Ž" }, { "input": "restating", "output": "â —â ‘â Œâ â žâ ¬" }, { "input": "restaurant", "output": "â —â ‘â Œâ â ¥â —â â â ž" }, { "input": "restauranteur", "output": "â —â ‘â Œâ â ¥â —â â â žâ ‘⠥⠗" }, { "input": "restauranteurs", "output": "â —â ‘â Œâ â ¥â —â â â žâ ‘⠥⠗⠎" }, { "input": "restaurants", "output": "â —â ‘â Œâ â ¥â —â â â žâ Ž" }, { "input": "restaurateur", "output": "â —â ‘â Œâ â ¥â —â â žâ ‘⠥⠗" }, { "input": "restaurateurs", "output": "â —â ‘â Œâ â ¥â —â â žâ ‘⠥⠗⠎" }, { "input": "rested", "output": "⠗⠑⠌⠫" }, { "input": "restful", "output": "⠗⠑⠌⠰⠇" }, { "input": "restfuller", "output": "⠗⠑⠌⠰⠇⠇⠻" }, { "input": "restfullest", "output": "⠗⠑⠌⠰⠇⠇⠑⠌" }, { "input": "restfully", "output": "⠗⠑⠌⠰⠇⠇⠽" }, { "input": "restfulness", "output": "⠗⠑⠌⠰⠇⠰⠎" }, { "input": "resting", "output": "⠗⠑⠌⠬" }, { "input": "restitution", "output": "⠗⠑⠌⠊⠞⠥⠰â " }, { "input": "restive", "output": "⠗⠑⠌⠊⠧⠑" }, { "input": "restively", "output": "⠗⠑⠌⠊⠧⠑⠇⠽" }, { "input": "restiveness", "output": "⠗⠑⠌⠊⠧⠑⠰⠎" }, { "input": "restless", "output": "⠗⠑⠌⠨⠎" }, { "input": "restlessly", "output": "⠗⠑⠌⠨⠎⠇⠽" }, { "input": "restlessness", "output": "⠗⠑⠌⠨⠎⠰⠎" }, { "input": "restock", "output": "⠗⠑⠌⠕⠉⠅" }, { "input": "restocked", "output": "⠗⠑⠌⠕⠉⠅⠫" }, { "input": "restocking", "output": "⠗⠑⠌⠕⠉⠅⠬" }, { "input": "restocks", "output": "⠗⠑⠌⠕⠉⠅⠎" }, { "input": "restoration", "output": "⠗⠑⠌⠕⠗â â °â " }, { "input": "restorations", "output": "⠗⠑⠌⠕⠗â â °â â Ž" }, { "input": "restorative", "output": "⠗⠑⠌⠕⠗â â žâ Šâ §â ‘" }, { "input": "restoratives", "output": "⠗⠑⠌⠕⠗â â žâ Šâ §â ‘â Ž" }, { "input": "restore", "output": "⠗⠑⠌⠕⠗⠑" }, { "input": "restored", "output": "⠗⠑⠌⠕⠗⠫" }, { "input": "restorer", "output": "⠗⠑⠌⠕⠗⠻" }, { "input": "restorers", "output": "⠗⠑⠌⠕⠗⠻⠎" }, { "input": "restores", "output": "⠗⠑⠌⠕⠗⠑⠎" }, { "input": "restoring", "output": "⠗⠑⠌⠕⠗⠬" }, { "input": "restrain", "output": "⠗⠑⠌⠗â â ”" }, { "input": "restrained", "output": "⠗⠑⠌⠗â â ”â «" }, { "input": "restraining", "output": "⠗⠑⠌⠗â â ”â ¬" }, { "input": "restrains", "output": "⠗⠑⠌⠗â â ”â Ž" }, { "input": "restraint", "output": "⠗⠑⠌⠗â â ”â ž" }, { "input": "restraints", "output": "⠗⠑⠌⠗â â ”â žâ Ž" }, { "input": "restrict", "output": "⠗⠑⠌⠗⠊⠉⠞" }, { "input": "restricted", "output": "⠗⠑⠌⠗⠊⠉⠞⠫" }, { "input": "restricting", "output": "⠗⠑⠌⠗⠊⠉⠞⠬" }, { "input": "restriction", "output": "⠗⠑⠌⠗⠊⠉⠰â " }, { "input": "restrictions", "output": "⠗⠑⠌⠗⠊⠉⠰â â Ž" }, { "input": "restrictive", "output": "⠗⠑⠌⠗⠊⠉⠞⠊⠧⠑" }, { "input": "restrictively", "output": "⠗⠑⠌⠗⠊⠉⠞⠊⠧⠑⠇⠽" }, { "input": "restricts", "output": "⠗⠑⠌⠗⠊⠉⠞⠎" }, { "input": "restroom", "output": "⠗⠑⠌⠗⠕⠕â " }, { "input": "restrooms", "output": "⠗⠑⠌⠗⠕⠕â â Ž" }, { "input": "restructure", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠑" }, { "input": "restructured", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠫" }, { "input": "restructures", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠑⠎" }, { "input": "restructuring", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠬" }, { "input": "restructurings", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠬⠎" }, { "input": "rests", "output": "⠗⠑⠌⠎" }, { "input": "restudied", "output": "⠗⠑⠌⠥⠙⠊⠫" }, { "input": "restudies", "output": "⠗⠑⠌⠥⠙⠊⠑⠎" }, { "input": "restudy", "output": "⠗⠑⠌⠥⠙⠽" }, { "input": "restudying", "output": "⠗⠑⠌⠥⠙⠽⠬" }, { "input": "resubmit", "output": "⠗⠑⠎⠥⠃â â Šâ ž" }, { "input": "resubmits", "output": "⠗⠑⠎⠥⠃â â Šâ žâ Ž" }, { "input": "resubmitted", "output": "⠗⠑⠎⠥⠃â â Šâ žâ žâ «" }, { "input": "resubmitting", "output": "⠗⠑⠎⠥⠃â â Šâ žâ žâ ¬" }, { "input": "result", "output": "⠗⠑⠎⠥⠇⠞" }, { "input": "resultant", "output": "⠗⠑⠎⠥⠇⠞â â â ž" }, { "input": "resultants", "output": "⠗⠑⠎⠥⠇⠞â â â žâ Ž" }, { "input": "resulted", "output": "⠗⠑⠎⠥⠇⠞⠫" }, { "input": "resulting", "output": "⠗⠑⠎⠥⠇⠞⠬" }, { "input": "results", "output": "⠗⠑⠎⠥⠇⠞⠎" }, { "input": "resume", "output": "â —â ‘â Žâ ¥â â ‘" }, { "input": "resumed", "output": "â —â ‘â Žâ ¥â â «" }, { "input": "resumes", "output": "â —â ‘â Žâ ¥â â ‘â Ž" }, { "input": "resuming", "output": "â —â ‘â Žâ ¥â â ¬" }, { "input": "resumption", "output": "â —â ‘â Žâ ¥â â â °â " }, { "input": "resumptions", "output": "â —â ‘â Žâ ¥â â â °â â Ž" }, { "input": "resupplied", "output": "â —â ‘â Žâ ¥â â â ‡â Šâ «" }, { "input": "resupplies", "output": "â —â ‘â Žâ ¥â â â ‡â Šâ ‘â Ž" }, { "input": "resupply", "output": "â —â ‘â Žâ ¥â â â ‡â ½" }, { "input": "resupplying", "output": "â —â ‘â Žâ ¥â â â ‡â ½â ¬" }, { "input": "resurface", "output": "⠗⠑⠎⠥⠗⠋â â ‰â ‘" }, { "input": "resurfaced", "output": "⠗⠑⠎⠥⠗⠋â â ‰â «" }, { "input": "resurfaces", "output": "⠗⠑⠎⠥⠗⠋â â ‰â ‘â Ž" }, { "input": "resurfacing", "output": "⠗⠑⠎⠥⠗⠋â â ‰â ¬" }, { "input": "resurgence", "output": "⠗⠑⠎⠥⠗⠛⠰⠑" }, { "input": "resurgences", "output": "⠗⠑⠎⠥⠗⠛⠰⠑⠎" }, { "input": "resurgent", "output": "⠗⠑⠎⠥⠗⠛⠢⠞" }, { "input": "resurrect", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞" }, { "input": "resurrected", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞⠫" }, { "input": "resurrecting", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞⠬" }, { "input": "resurrection", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠰â " }, { "input": "resurrections", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠰â â Ž" }, { "input": "resurrects", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞⠎" }, { "input": "resuscitate", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ ‘" }, { "input": "resuscitated", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ «" }, { "input": "resuscitates", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ ‘â Ž" }, { "input": "resuscitating", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ ¬" }, { "input": "resuscitation", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â °â " }, { "input": "resuscitator", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ •â —" }, { "input": "resuscitators", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ •â —â Ž" }, { "input": "retail", "output": "â —â ‘â žâ â Šâ ‡" }, { "input": "retailed", "output": "â —â ‘â žâ â Šâ ‡â «" }, { "input": "retailer", "output": "â —â ‘â žâ â Šâ ‡â »" }, { "input": "retailers", "output": "â —â ‘â žâ â Šâ ‡â »â Ž" }, { "input": "retailing", "output": "â —â ‘â žâ â Šâ ‡â ¬" }, { "input": "retails", "output": "â —â ‘â žâ â Šâ ‡â Ž" }, { "input": "retain", "output": "â —â ‘â žâ â ”" }, { "input": "retained", "output": "â —â ‘â žâ â ”â «" }, { "input": "retainer", "output": "â —â ‘â žâ â ”â »" }, { "input": "retainers", "output": "â —â ‘â žâ â ”⠻⠎" }, { "input": "retaining", "output": "â —â ‘â žâ â ”â ¬" }, { "input": "retains", "output": "â —â ‘â žâ â ”â Ž" }, { "input": "retake", "output": "â —â ‘â žâ â …â ‘" }, { "input": "retaken", "output": "â —â ‘â žâ â …â ¢" }, { "input": "retakes", "output": "â —â ‘â žâ â …â ‘â Ž" }, { "input": "retaking", "output": "â —â ‘â žâ â …â ¬" }, { "input": "retaliate", "output": "â —â ‘â žâ â ‡â Šâ â žâ ‘" }, { "input": "retaliated", "output": "â —â ‘â žâ â ‡â Šâ â žâ «" }, { "input": "retaliates", "output": "â —â ‘â žâ â ‡â Šâ â žâ ‘â Ž" }, { "input": "retaliating", "output": "â —â ‘â žâ â ‡â Šâ â žâ ¬" }, { "input": "retaliation", "output": "â —â ‘â žâ â ‡â Šâ â °â " }, { "input": "retaliations", "output": "â —â ‘â žâ â ‡â Šâ â °â â Ž" }, { "input": "retaliatory", "output": "â —â ‘â žâ â ‡â Šâ â žâ •â —â ½" }, { "input": "retard", "output": "⠗⠑⠞⠜⠙" }, { "input": "retardant", "output": "⠗⠑⠞⠜⠙â â â ž" }, { "input": "retardants", "output": "⠗⠑⠞⠜⠙â â â žâ Ž" }, { "input": "retardation", "output": "⠗⠑⠞⠜⠙â â °â " }, { "input": "retarded", "output": "⠗⠑⠞⠜⠙⠫" }, { "input": "retarding", "output": "⠗⠑⠞⠜⠙⠬" }, { "input": "retards", "output": "⠗⠑⠞⠜⠙⠎" }, { "input": "retch", "output": "â —â ‘â žâ ¡" }, { "input": "retched", "output": "â —â ‘â žâ ¡â «" }, { "input": "retches", "output": "â —â ‘â žâ ¡â ‘â Ž" }, { "input": "retching", "output": "â —â ‘â žâ ¡â ¬" }, { "input": "retell", "output": "⠗⠑⠞⠑⠇⠇" }, { "input": "retelling", "output": "⠗⠑⠞⠑⠇⠇⠬" }, { "input": "retells", "output": "⠗⠑⠞⠑⠇⠇⠎" }, { "input": "retention", "output": "⠗⠑⠞⠢⠰â " }, { "input": "retentive", "output": "⠗⠑⠞⠢⠞⠊⠧⠑" }, { "input": "retentiveness", "output": "⠗⠑⠞⠢⠞⠊⠧⠑⠰⠎" }, { "input": "rethink", "output": "⠗⠑⠹⠔⠅" }, { "input": "rethinking", "output": "⠗⠑⠹⠔⠅⠬" }, { "input": "rethinks", "output": "⠗⠑⠹⠔⠅⠎" }, { "input": "rethought", "output": "â —â ‘â ¹â â ³" }, { "input": "reticence", "output": "⠗⠑⠞⠊⠉⠰⠑" }, { "input": "reticent", "output": "⠗⠑⠞⠊⠉⠢⠞" }, { "input": "retina", "output": "â —â ‘â žâ ”â " }, { "input": "retinae", "output": "â —â ‘â žâ ”â â ‘" }, { "input": "retinal", "output": "â —â ‘â žâ ”â â ‡" }, { "input": "retinas", "output": "â —â ‘â žâ ”â â Ž" }, { "input": "retinue", "output": "⠗⠑⠞⠔⠥⠑" }, { "input": "retinues", "output": "⠗⠑⠞⠔⠥⠑⠎" }, { "input": "retire", "output": "â —â ‘â žâ Šâ —â ‘" }, { "input": "retired", "output": "â —â ‘â žâ Šâ —â «" }, { "input": "retiree", "output": "â —â ‘â žâ Šâ —â ‘â ‘" }, { "input": "retirees", "output": "â —â ‘â žâ Šâ —â ‘â ‘â Ž" }, { "input": "retirement", "output": "â —â ‘â žâ Šâ —â ‘â °â ž" }, { "input": "retirements", "output": "â —â ‘â žâ Šâ —â ‘â °â žâ Ž" }, { "input": "retires", "output": "â —â ‘â žâ Šâ —â ‘â Ž" }, { "input": "retiring", "output": "â —â ‘â žâ Šâ —â ¬" }, { "input": "retold", "output": "⠗⠑⠞⠕⠇⠙" }, { "input": "retook", "output": "â —â ‘â žâ •â •â …" }, { "input": "retool", "output": "â —â ‘â žâ •â •â ‡" }, { "input": "retooled", "output": "⠗⠑⠞⠕⠕⠇⠫" }, { "input": "retooling", "output": "⠗⠑⠞⠕⠕⠇⠬" }, { "input": "retools", "output": "⠗⠑⠞⠕⠕⠇⠎" }, { "input": "retort", "output": "â —â ‘â žâ •â —â ž" }, { "input": "retorted", "output": "â —â ‘â žâ •â —â žâ «" }, { "input": "retorting", "output": "â —â ‘â žâ •â —â žâ ¬" }, { "input": "retorts", "output": "â —â ‘â žâ •â —â žâ Ž" }, { "input": "retouch", "output": "⠗⠑⠞⠳⠡" }, { "input": "retouched", "output": "⠗⠑⠞⠳⠡⠫" }, { "input": "retouches", "output": "⠗⠑⠞⠳⠡⠑⠎" }, { "input": "retouching", "output": "⠗⠑⠞⠳⠡⠬" }, { "input": "retrace", "output": "â —â ‘â žâ —â â ‰â ‘" }, { "input": "retraced", "output": "â —â ‘â žâ —â â ‰â «" }, { "input": "retraces", "output": "â —â ‘â žâ —â â ‰â ‘â Ž" }, { "input": "retracing", "output": "â —â ‘â žâ —â â ‰â ¬" }, { "input": "retract", "output": "â —â ‘â žâ —â â ‰â ž" }, { "input": "retractable", "output": "â —â ‘â žâ —â â ‰â žâ â ƒâ ‡â ‘" }, { "input": "retracted", "output": "â —â ‘â žâ —â â ‰â žâ «" }, { "input": "retracting", "output": "â —â ‘â žâ —â â ‰â žâ ¬" }, { "input": "retraction", "output": "â —â ‘â žâ —â â ‰â °â " }, { "input": "retractions", "output": "â —â ‘â žâ —â â ‰â °â â Ž" }, { "input": "retracts", "output": "â —â ‘â žâ —â â ‰â žâ Ž" }, { "input": "retrain", "output": "â —â ‘â žâ —â â ”" }, { "input": "retrained", "output": "â —â ‘â žâ —â â ”â «" }, { "input": "retraining", "output": "â —â ‘â žâ —â â ”â ¬" }, { "input": "retrains", "output": "â —â ‘â žâ —â â ”â Ž" }, { "input": "retread", "output": "â —â ‘â žâ —â ‚â ™" }, { "input": "retreaded", "output": "⠗⠑⠞⠗⠂⠙⠫" }, { "input": "retreading", "output": "⠗⠑⠞⠗⠂⠙⠬" }, { "input": "retreads", "output": "⠗⠑⠞⠗⠂⠙⠎" }, { "input": "retreat", "output": "â —â ‘â žâ —â ‚â ž" }, { "input": "retreated", "output": "â —â ‘â žâ —â ‚â žâ «" }, { "input": "retreating", "output": "â —â ‘â žâ —â ‚â žâ ¬" }, { "input": "retreats", "output": "â —â ‘â žâ —â ‚â žâ Ž" }, { "input": "retrench", "output": "⠗⠑⠞⠗⠢⠡" }, { "input": "retrenched", "output": "⠗⠑⠞⠗⠢⠡⠫" }, { "input": "retrenches", "output": "⠗⠑⠞⠗⠢⠡⠑⠎" }, { "input": "retrenching", "output": "⠗⠑⠞⠗⠢⠡⠬" }, { "input": "retrenchment", "output": "⠗⠑⠞⠗⠢⠡⠰⠞" }, { "input": "retrenchments", "output": "⠗⠑⠞⠗⠢⠡⠰⠞⠎" }, { "input": "retrial", "output": "â —â ‘â žâ —â Šâ â ‡" }, { "input": "retrials", "output": "â —â ‘â žâ —â Šâ â ‡â Ž" }, { "input": "retribution", "output": "⠗⠑⠞⠗⠊⠃⠥⠰â " }, { "input": "retributions", "output": "⠗⠑⠞⠗⠊⠃⠥⠰â â Ž" }, { "input": "retributive", "output": "⠗⠑⠞⠗⠊⠃⠥⠞⠊⠧⠑" }, { "input": "retried", "output": "â —â ‘â žâ —â Šâ «" }, { "input": "retries", "output": "â —â ‘â žâ —â Šâ ‘â Ž" }, { "input": "retrievable", "output": "â —â ‘â žâ —â Šâ ‘â §â â ƒâ ‡â ‘" }, { "input": "retrieval", "output": "â —â ‘â žâ —â Šâ ‘â §â â ‡" }, { "input": "retrievals", "output": "â —â ‘â žâ —â Šâ ‘â §â â ‡â Ž" }, { "input": "retrieve", "output": "â —â ‘â žâ —â Šâ ‘â §â ‘" }, { "input": "retrieved", "output": "â —â ‘â žâ —â Šâ ‘â §â «" }, { "input": "retriever", "output": "â —â ‘â žâ —â Šâ ‘â §â »" }, { "input": "retrievers", "output": "⠗⠑⠞⠗⠊⠑⠧⠻⠎" }, { "input": "retrieves", "output": "â —â ‘â žâ —â Šâ ‘â §â ‘â Ž" }, { "input": "retrieving", "output": "â —â ‘â žâ —â Šâ ‘â §â ¬" }, { "input": "retroactive", "output": "â —â ‘â žâ —â •â â ‰â žâ Šâ §â ‘" }, { "input": "retroactively", "output": "â —â ‘â žâ —â •â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "retrod", "output": "â —â ‘â žâ —â •â ™" }, { "input": "retrodden", "output": "⠗⠑⠞⠗⠕⠙⠙⠢" }, { "input": "retrofit", "output": "â —â ‘â žâ —â •â ‹â Šâ ž" }, { "input": "retrofits", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ Ž" }, { "input": "retrofitted", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ žâ «" }, { "input": "retrofitting", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ žâ ¬" }, { "input": "retrograde", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â ‘" }, { "input": "retrograded", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â «" }, { "input": "retrogrades", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â ‘â Ž" }, { "input": "retrograding", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â ¬" }, { "input": "retrogress", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎" }, { "input": "retrogressed", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠫" }, { "input": "retrogresses", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠑⠎" }, { "input": "retrogressing", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠬" }, { "input": "retrogression", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠨â " }, { "input": "retrogressive", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "retrorocket", "output": "⠗⠑⠞⠗⠕⠗⠕⠉⠅⠑⠞" }, { "input": "retrorockets", "output": "⠗⠑⠞⠗⠕⠗⠕⠉⠅⠑⠞⠎" }, { "input": "retrospect", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞" }, { "input": "retrospected", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠫" }, { "input": "retrospecting", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠬" }, { "input": "retrospection", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠰â " }, { "input": "retrospective", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "retrospectively", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑⠇⠽" }, { "input": "retrospectives", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑⠎" }, { "input": "retrospects", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠎" }, { "input": "retry", "output": "â —â ‘â žâ —â ½" }, { "input": "retrying", "output": "⠗⠑⠞⠗⠽⠬" }, { "input": "return", "output": "⠗⠑⠞⠥⠗â " }, { "input": "returnable", "output": "⠗⠑⠞⠥⠗â â â ƒâ ‡â ‘" }, { "input": "returnables", "output": "⠗⠑⠞⠥⠗â â â ƒâ ‡â ‘â Ž" }, { "input": "returned", "output": "⠗⠑⠞⠥⠗â â «" }, { "input": "returnee", "output": "⠗⠑⠞⠥⠗â â ‘â ‘" }, { "input": "returnees", "output": "⠗⠑⠞⠥⠗â â ‘â ‘â Ž" }, { "input": "returning", "output": "⠗⠑⠞⠥⠗â â ¬" }, { "input": "returns", "output": "⠗⠑⠞⠥⠗â â Ž" }, { "input": "retype", "output": "â —â ‘â žâ ½â â ‘" }, { "input": "retyped", "output": "â —â ‘â žâ ½â â «" }, { "input": "retypes", "output": "â —â ‘â žâ ½â â ‘â Ž" }, { "input": "retyping", "output": "â —â ‘â žâ ½â â ¬" }, { "input": "reunification", "output": "â —â ‘â ¥â â Šâ ‹â Šâ ‰â â °â " }, { "input": "reunified", "output": "â —â ‘â ¥â â Šâ ‹â Šâ «" }, { "input": "reunifies", "output": "â —â ‘â ¥â â Šâ ‹â Šâ ‘â Ž" }, { "input": "reunify", "output": "â —â ‘â ¥â â Šâ ‹â ½" }, { "input": "reunifying", "output": "â —â ‘â ¥â â Šâ ‹â ½â ¬" }, { "input": "reunion", "output": "â —â ‘â ¥â â Šâ •â " }, { "input": "reunions", "output": "â —â ‘â ¥â â Šâ •â â Ž" }, { "input": "reunite", "output": "â —â ‘â ¥â â Šâ žâ ‘" }, { "input": "reunited", "output": "â —â ‘â ¥â â Šâ žâ «" }, { "input": "reunites", "output": "â —â ‘â ¥â â Šâ žâ ‘â Ž" }, { "input": "reuniting", "output": "â —â ‘â ¥â â Šâ žâ ¬" }, { "input": "reupholster", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻" }, { "input": "reupholstered", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻⠫" }, { "input": "reupholstering", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻⠬" }, { "input": "reupholsters", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻⠎" }, { "input": "reusable", "output": "⠗⠑⠥⠎â â ƒâ ‡â ‘" }, { "input": "reuse", "output": "⠗⠑⠥⠎⠑" }, { "input": "reused", "output": "⠗⠑⠥⠎⠫" }, { "input": "reuses", "output": "⠗⠑⠥⠎⠑⠎" }, { "input": "reusing", "output": "⠗⠑⠥⠎⠬" }, { "input": "rev", "output": "â —â ‘â §" }, { "input": "revaluation", "output": "â —â ‘â §â â ‡â ¥â â °â " }, { "input": "revaluations", "output": "â —â ‘â §â â ‡â ¥â â °â â Ž" }, { "input": "revalue", "output": "â —â ‘â §â â ‡â ¥â ‘" }, { "input": "revalued", "output": "â —â ‘â §â â ‡â ¥â «" }, { "input": "revalues", "output": "â —â ‘â §â â ‡â ¥â ‘â Ž" }, { "input": "revaluing", "output": "â —â ‘â §â â ‡â ¥â ¬" }, { "input": "revamp", "output": "â —â ‘â §â â â " }, { "input": "revamped", "output": "â —â ‘â §â â â â «" }, { "input": "revamping", "output": "â —â ‘â §â â â â ¬" }, { "input": "revamps", "output": "â —â ‘â §â â â â Ž" }, { "input": "reveal", "output": "â —â ‘â §â ‚â ‡" }, { "input": "revealed", "output": "⠗⠑⠧⠂⠇⠫" }, { "input": "revealing", "output": "⠗⠑⠧⠂⠇⠬" }, { "input": "revealings", "output": "⠗⠑⠧⠂⠇⠬⠎" }, { "input": "reveals", "output": "⠗⠑⠧⠂⠇⠎" }, { "input": "reveille", "output": "⠗⠑⠧⠑⠊⠇⠇⠑" }, { "input": "revel", "output": "â —â ‘â §â ‘â ‡" }, { "input": "revelation", "output": "â —â ‘â §â ‘â ‡â â °â " }, { "input": "revelations", "output": "â —â ‘â §â ‘â ‡â â °â â Ž" }, { "input": "reveled", "output": "⠗⠑⠧⠑⠇⠫" }, { "input": "reveler", "output": "⠗⠑⠧⠑⠇⠻" }, { "input": "revelers", "output": "⠗⠑⠧⠑⠇⠻⠎" }, { "input": "reveling", "output": "⠗⠑⠧⠑⠇⠬" }, { "input": "revelled", "output": "⠗⠑⠧⠑⠇⠇⠫" }, { "input": "reveller", "output": "⠗⠑⠧⠑⠇⠇⠻" }, { "input": "revellers", "output": "⠗⠑⠧⠑⠇⠇⠻⠎" }, { "input": "revelling", "output": "⠗⠑⠧⠑⠇⠇⠬" }, { "input": "revelries", "output": "⠗⠑⠧⠑⠇⠗⠊⠑⠎" }, { "input": "revelry", "output": "⠗⠑⠧⠑⠇⠗⠽" }, { "input": "revels", "output": "⠗⠑⠧⠑⠇⠎" }, { "input": "revenge", "output": "⠗⠑⠧⠢⠛⠑" }, { "input": "revenged", "output": "⠗⠑⠧⠢⠛⠫" }, { "input": "revengeful", "output": "⠗⠑⠧⠢⠛⠑⠰⠇" }, { "input": "revenges", "output": "⠗⠑⠧⠢⠛⠑⠎" }, { "input": "revenging", "output": "⠗⠑⠧⠢⠛⠬" }, { "input": "revenue", "output": "⠗⠑⠧⠢⠥⠑" }, { "input": "revenues", "output": "⠗⠑⠧⠢⠥⠑⠎" }, { "input": "reverberate", "output": "⠗⠑⠧⠻⠃⠻â â žâ ‘" }, { "input": "reverberated", "output": "⠗⠑⠧⠻⠃⠻â â žâ «" }, { "input": "reverberates", "output": "⠗⠑⠧⠻⠃⠻â â žâ ‘â Ž" }, { "input": "reverberating", "output": "⠗⠑⠧⠻⠃⠻â â žâ ¬" }, { "input": "reverberation", "output": "⠗⠑⠧⠻⠃⠻â â °â " }, { "input": "reverberations", "output": "⠗⠑⠧⠻⠃⠻â â °â â Ž" }, { "input": "revere", "output": "⠗⠑⠧⠻⠑" }, { "input": "revered", "output": "⠗⠑⠧⠻⠫" }, { "input": "reverence", "output": "â —â â ‘â °â ‘" }, { "input": "reverenced", "output": "â —â â ‘â °â ‘â ™" }, { "input": "reverences", "output": "â —â â ‘â °â ‘â Ž" }, { "input": "reverencing", "output": "â —â â ‘⠢⠉⠬" }, { "input": "reverend", "output": "â —â â ‘⠢⠙" }, { "input": "reverends", "output": "â —â â ‘⠢⠙⠎" }, { "input": "reverent", "output": "â —â â ‘⠢⠞" }, { "input": "reverential", "output": "â —â â ‘⠢⠞⠊â â ‡" }, { "input": "reverently", "output": "â —â â ‘⠢⠞⠇⠽" }, { "input": "reveres", "output": "⠗⠑⠧⠻⠑⠎" }, { "input": "reverie", "output": "â —â â ‘â Šâ ‘" }, { "input": "reveries", "output": "â —â â ‘â Šâ ‘â Ž" }, { "input": "revering", "output": "⠗⠑⠧⠻⠬" }, { "input": "reversal", "output": "⠗⠑⠧⠻⠎â â ‡" }, { "input": "reversals", "output": "⠗⠑⠧⠻⠎â â ‡â Ž" }, { "input": "reverse", "output": "⠗⠑⠧⠻⠎⠑" }, { "input": "reversed", "output": "⠗⠑⠧⠻⠎⠫" }, { "input": "reverses", "output": "⠗⠑⠧⠻⠎⠑⠎" }, { "input": "reversible", "output": "⠗⠑⠧⠻⠎⠊⠃⠇⠑" }, { "input": "reversing", "output": "⠗⠑⠧⠻⠎⠬" }, { "input": "reversion", "output": "⠗⠑⠧⠻⠨â " }, { "input": "revert", "output": "⠗⠑⠧⠻⠞" }, { "input": "reverted", "output": "⠗⠑⠧⠻⠞⠫" }, { "input": "reverting", "output": "⠗⠑⠧⠻⠞⠬" }, { "input": "reverts", "output": "⠗⠑⠧⠻⠞⠎" }, { "input": "revery", "output": "â —â â ‘â ½" }, { "input": "review", "output": "â —â ‘â §â Šâ ‘â º" }, { "input": "reviewed", "output": "⠗⠑⠧⠊⠑⠺⠫" }, { "input": "reviewer", "output": "⠗⠑⠧⠊⠑⠺⠻" }, { "input": "reviewers", "output": "⠗⠑⠧⠊⠑⠺⠻⠎" }, { "input": "reviewing", "output": "⠗⠑⠧⠊⠑⠺⠬" }, { "input": "reviews", "output": "⠗⠑⠧⠊⠑⠺⠎" }, { "input": "revile", "output": "⠗⠑⠧⠊⠇⠑" }, { "input": "reviled", "output": "⠗⠑⠧⠊⠇⠫" }, { "input": "revilement", "output": "⠗⠑⠧⠊⠇⠑⠰⠞" }, { "input": "reviler", "output": "⠗⠑⠧⠊⠇⠻" }, { "input": "revilers", "output": "⠗⠑⠧⠊⠇⠻⠎" }, { "input": "reviles", "output": "⠗⠑⠧⠊⠇⠑⠎" }, { "input": "reviling", "output": "⠗⠑⠧⠊⠇⠬" }, { "input": "revise", "output": "â —â ‘â §â Šâ Žâ ‘" }, { "input": "revised", "output": "â —â ‘â §â Šâ Žâ «" }, { "input": "revises", "output": "â —â ‘â §â Šâ Žâ ‘â Ž" }, { "input": "revising", "output": "â —â ‘â §â Šâ Žâ ¬" }, { "input": "revision", "output": "â —â ‘â §â Šâ ¨â " }, { "input": "revisions", "output": "â —â ‘â §â Šâ ¨â â Ž" }, { "input": "revisit", "output": "â —â ‘â §â Šâ Žâ Šâ ž" }, { "input": "revisited", "output": "â —â ‘â §â Šâ Žâ Šâ žâ «" }, { "input": "revisiting", "output": "â —â ‘â §â Šâ Žâ Šâ žâ ¬" }, { "input": "revisits", "output": "â —â ‘â §â Šâ Žâ Šâ žâ Ž" }, { "input": "revitalization", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ â °â " }, { "input": "revitalize", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "revitalized", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ «" }, { "input": "revitalizes", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "revitalizing", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ ¬" }, { "input": "revival", "output": "â —â ‘â §â Šâ §â â ‡" }, { "input": "revivalist", "output": "â —â ‘â §â Šâ §â â ‡â Šâ Œ" }, { "input": "revivalists", "output": "â —â ‘â §â Šâ §â â ‡â Šâ Œâ Ž" }, { "input": "revivals", "output": "â —â ‘â §â Šâ §â â ‡â Ž" }, { "input": "revive", "output": "â —â ‘â §â Šâ §â ‘" }, { "input": "revived", "output": "â —â ‘â §â Šâ §â «" }, { "input": "revives", "output": "â —â ‘â §â Šâ §â ‘â Ž" }, { "input": "revivification", "output": "â —â ‘â §â Šâ §â Šâ ‹â Šâ ‰â â °â " }, { "input": "revivified", "output": "â —â ‘â §â Šâ §â Šâ ‹â Šâ «" }, { "input": "revivifies", "output": "â —â ‘â §â Šâ §â Šâ ‹â Šâ ‘â Ž" }, { "input": "revivify", "output": "â —â ‘â §â Šâ §â Šâ ‹â ½" }, { "input": "revivifying", "output": "⠗⠑⠧⠊⠧⠊⠋⠽⠬" }, { "input": "reviving", "output": "â —â ‘â §â Šâ §â ¬" }, { "input": "revocable", "output": "â —â ‘â §â •â ‰â â ƒâ ‡â ‘" }, { "input": "revocation", "output": "â —â ‘â §â •â ‰â â °â " }, { "input": "revocations", "output": "â —â ‘â §â •â ‰â â °â â Ž" }, { "input": "revokable", "output": "â —â ‘â §â •â …â â ƒâ ‡â ‘" }, { "input": "revoke", "output": "â —â ‘â §â •â …â ‘" }, { "input": "revoked", "output": "â —â ‘â §â •â …â «" }, { "input": "revokes", "output": "â —â ‘â §â •â …â ‘â Ž" }, { "input": "revoking", "output": "â —â ‘â §â •â …â ¬" }, { "input": "revolt", "output": "⠗⠑⠧⠕⠇⠞" }, { "input": "revolted", "output": "⠗⠑⠧⠕⠇⠞⠫" }, { "input": "revolting", "output": "⠗⠑⠧⠕⠇⠞⠬" }, { "input": "revoltingly", "output": "⠗⠑⠧⠕⠇⠞⠬⠇⠽" }, { "input": "revolts", "output": "⠗⠑⠧⠕⠇⠞⠎" }, { "input": "revolution", "output": "⠗⠑⠧⠕⠇⠥⠰â " }, { "input": "revolutionaries", "output": "⠗⠑⠧⠕⠇⠥⠰â â œâ Šâ ‘â Ž" }, { "input": "revolutionary", "output": "⠗⠑⠧⠕⠇⠥⠰â â œâ ½" }, { "input": "revolutionist", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ Œ" }, { "input": "revolutionists", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ Œâ Ž" }, { "input": "revolutionize", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ ‘" }, { "input": "revolutionized", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ «" }, { "input": "revolutionizes", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ ‘â Ž" }, { "input": "revolutionizing", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ ¬" }, { "input": "revolutions", "output": "⠗⠑⠧⠕⠇⠥⠰â â Ž" }, { "input": "revolve", "output": "⠗⠑⠧⠕⠇⠧⠑" }, { "input": "revolved", "output": "⠗⠑⠧⠕⠇⠧⠫" }, { "input": "revolver", "output": "⠗⠑⠧⠕⠇⠧⠻" }, { "input": "revolvers", "output": "⠗⠑⠧⠕⠇⠧⠻⠎" }, { "input": "revolves", "output": "⠗⠑⠧⠕⠇⠧⠑⠎" }, { "input": "revolving", "output": "⠗⠑⠧⠕⠇⠧⠬" }, { "input": "revs", "output": "â —â ‘â §â Ž" }, { "input": "revue", "output": "⠗⠑⠧⠥⠑" }, { "input": "revues", "output": "⠗⠑⠧⠥⠑⠎" }, { "input": "revulsion", "output": "⠗⠑⠧⠥⠇⠨â " }, { "input": "revved", "output": "â —â ‘â §â §â «" }, { "input": "revving", "output": "â —â ‘â §â §â ¬" }, { "input": "reward", "output": "⠗⠑⠺⠜⠙" }, { "input": "rewarded", "output": "⠗⠑⠺⠜⠙⠫" }, { "input": "rewarding", "output": "⠗⠑⠺⠜⠙⠬" }, { "input": "rewards", "output": "⠗⠑⠺⠜⠙⠎" }, { "input": "rewind", "output": "⠗⠑⠺⠔⠙" }, { "input": "rewindable", "output": "⠗⠑⠺⠔⠙â â ƒâ ‡â ‘" }, { "input": "rewinding", "output": "⠗⠑⠺⠔⠙⠬" }, { "input": "rewinds", "output": "⠗⠑⠺⠔⠙⠎" }, { "input": "rewire", "output": "⠗⠑⠺⠊⠗⠑" }, { "input": "rewired", "output": "⠗⠑⠺⠊⠗⠫" }, { "input": "rewires", "output": "⠗⠑⠺⠊⠗⠑⠎" }, { "input": "rewiring", "output": "⠗⠑⠺⠊⠗⠬" }, { "input": "reword", "output": "⠗⠑⠘⠺" }, { "input": "reworded", "output": "⠗⠑⠘⠺⠫" }, { "input": "rewording", "output": "⠗⠑⠘⠺⠬" }, { "input": "rewords", "output": "⠗⠑⠘⠺⠎" }, { "input": "rework", "output": "â —â ‘â â º" }, { "input": "reworked", "output": "â —â ‘â â ºâ «" }, { "input": "reworking", "output": "â —â ‘â â ºâ ¬" }, { "input": "reworks", "output": "â —â ‘â â ºâ Ž" }, { "input": "rewound", "output": "⠗⠑⠺⠨⠙" }, { "input": "rewrite", "output": "⠗⠑⠺⠗⠊⠞⠑" }, { "input": "rewrites", "output": "⠗⠑⠺⠗⠊⠞⠑⠎" }, { "input": "rewriting", "output": "⠗⠑⠺⠗⠊⠞⠬" }, { "input": "rewritten", "output": "⠗⠑⠺⠗⠊⠞⠞⠢" }, { "input": "rewrote", "output": "⠗⠑⠺⠗⠕⠞⠑" }, { "input": "rhapsodic", "output": "â —â “â â â Žâ •⠙⠊⠉" }, { "input": "rhapsodies", "output": "â —â “â â â Žâ •⠙⠊⠑⠎" }, { "input": "rhapsodize", "output": "â —â “â â â Žâ •⠙⠊⠵⠑" }, { "input": "rhapsodized", "output": "â —â “â â â Žâ •⠙⠊⠵⠫" }, { "input": "rhapsodizes", "output": "â —â “â â â Žâ •⠙⠊⠵⠑⠎" }, { "input": "rhapsodizing", "output": "â —â “â â â Žâ •⠙⠊⠵⠬" }, { "input": "rhapsody", "output": "â —â “â â â Žâ •⠙⠽" }, { "input": "rhea", "output": "â —â “â ‘â " }, { "input": "rheas", "output": "â —â “â ‚â Ž" }, { "input": "rheostat", "output": "â —â “â ‘â •â Œâ â ž" }, { "input": "rheostats", "output": "â —â “â ‘â •â Œâ â žâ Ž" }, { "input": "rhetoric", "output": "â —â “â ‘â žâ •â —â Šâ ‰" }, { "input": "rhetorical", "output": "â —â “â ‘â žâ •â —â Šâ ‰â â ‡" }, { "input": "rhetorically", "output": "â —â “â ‘â žâ •â —â Šâ ‰â â ‡â ‡â ½" }, { "input": "rhetorician", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠊â â " }, { "input": "rhetoricians", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠊â â â Ž" }, { "input": "rheum", "output": "â —â “â ‘â ¥â " }, { "input": "rheumatic", "output": "â —â “â ‘â ¥â â â žâ Šâ ‰" }, { "input": "rheumatics", "output": "â —â “â ‘â ¥â â â žâ Šâ ‰â Ž" }, { "input": "rheumatism", "output": "â —â “â ‘â ¥â â â žâ Šâ Žâ " }, { "input": "rheumier", "output": "â —â “â ‘â ¥â â Šâ »" }, { "input": "rheumiest", "output": "â —â “â ‘â ¥â â Šâ ‘â Œ" }, { "input": "rheumy", "output": "â —â “â ‘â ¥â â ½" }, { "input": "rhinestone", "output": "⠗⠓⠔⠑⠌â â •" }, { "input": "rhinestones", "output": "⠗⠓⠔⠑⠌â â •â Ž" }, { "input": "rhino", "output": "⠗⠓⠔⠕" }, { "input": "rhinoceri", "output": "⠗⠓⠔⠕⠉⠻⠊" }, { "input": "rhinoceros", "output": "⠗⠓⠔⠕⠉⠻⠕⠎" }, { "input": "rhinoceroses", "output": "⠗⠓⠔⠕⠉⠻⠕⠎⠑⠎" }, { "input": "rhinos", "output": "⠗⠓⠔⠕⠎" }, { "input": "rhizome", "output": "⠗⠓⠊⠵⠕â â ‘" }, { "input": "rhizomes", "output": "⠗⠓⠊⠵⠕â â ‘â Ž" }, { "input": "rho", "output": "â —â “â •" }, { "input": "rhodium", "output": "⠗⠓⠕⠙⠊⠥â " }, { "input": "rhododendron", "output": "⠗⠓⠕⠙⠕⠙⠢⠙⠗⠕â " }, { "input": "rhododendrons", "output": "⠗⠓⠕⠙⠕⠙⠢⠙⠗⠕â â Ž" }, { "input": "rhombi", "output": "â —â “â •â â ƒâ Š" }, { "input": "rhomboid", "output": "â —â “â •â â ƒâ •â Šâ ™" }, { "input": "rhomboids", "output": "â —â “â •â â ƒâ •⠊⠙⠎" }, { "input": "rhombus", "output": "â —â “â •â â ƒâ ¥â Ž" }, { "input": "rhombuses", "output": "â —â “â •â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "rhubarb", "output": "⠗⠓⠥⠃⠜⠃" }, { "input": "rhubarbs", "output": "⠗⠓⠥⠃⠜⠃⠎" }, { "input": "rhyme", "output": "â —â “â ½â â ‘" }, { "input": "rhymed", "output": "â —â “â ½â â «" }, { "input": "rhymes", "output": "â —â “â ½â â ‘â Ž" }, { "input": "rhyming", "output": "â —â “â ½â â ¬" }, { "input": "rhythm", "output": "⠗⠓⠽⠹â " }, { "input": "rhythmic", "output": "⠗⠓⠽⠹â â Šâ ‰" }, { "input": "rhythmical", "output": "⠗⠓⠽⠹â â Šâ ‰â â ‡" }, { "input": "rhythmically", "output": "⠗⠓⠽⠹â â Šâ ‰â â ‡â ‡â ½" }, { "input": "rhythms", "output": "⠗⠓⠽⠹â â Ž" }, { "input": "rib", "output": "â —â Šâ ƒ" }, { "input": "ribald", "output": "â —â Šâ ƒâ â ‡â ™" }, { "input": "ribaldry", "output": "â —â Šâ ƒâ â ‡â ™â —â ½" }, { "input": "ribbed", "output": "⠗⠊⠆⠫" }, { "input": "ribbing", "output": "⠗⠊⠆⠬" }, { "input": "ribbon", "output": "⠗⠊⠆⠕â " }, { "input": "ribbons", "output": "⠗⠊⠆⠕â â Ž" }, { "input": "riboflavin", "output": "⠗⠊⠃⠕⠋⠇â â §â ”" }, { "input": "ribs", "output": "⠗⠊⠃⠎" }, { "input": "rice", "output": "⠗⠊⠉⠑" }, { "input": "riced", "output": "⠗⠊⠉⠫" }, { "input": "rices", "output": "⠗⠊⠉⠑⠎" }, { "input": "rich", "output": "â —â Šâ ¡" }, { "input": "richer", "output": "â —â Šâ ¡â »" }, { "input": "riches", "output": "â —â Šâ ¡â ‘â Ž" }, { "input": "richest", "output": "â —â Šâ ¡â ‘â Œ" }, { "input": "richly", "output": "⠗⠊⠡⠇⠽" }, { "input": "richness", "output": "â —â Šâ ¡â °â Ž" }, { "input": "ricing", "output": "⠗⠊⠉⠬" }, { "input": "rick", "output": "⠗⠊⠉⠅" }, { "input": "ricked", "output": "⠗⠊⠉⠅⠫" }, { "input": "ricketier", "output": "⠗⠊⠉⠅⠑⠞⠊⠻" }, { "input": "ricketiest", "output": "⠗⠊⠉⠅⠑⠞⠊⠑⠌" }, { "input": "rickets", "output": "⠗⠊⠉⠅⠑⠞⠎" }, { "input": "rickety", "output": "⠗⠊⠉⠅⠑⠞⠽" }, { "input": "ricking", "output": "⠗⠊⠉⠅⠬" }, { "input": "ricks", "output": "⠗⠊⠉⠅⠎" }, { "input": "ricksha", "output": "⠗⠊⠉⠅⠩â " }, { "input": "rickshas", "output": "⠗⠊⠉⠅⠩â â Ž" }, { "input": "rickshaw", "output": "⠗⠊⠉⠅⠩â â º" }, { "input": "rickshaws", "output": "⠗⠊⠉⠅⠩â â ºâ Ž" }, { "input": "ricochet", "output": "⠗⠊⠉⠕⠡⠑⠞" }, { "input": "ricocheted", "output": "⠗⠊⠉⠕⠡⠑⠞⠫" }, { "input": "ricocheting", "output": "⠗⠊⠉⠕⠡⠑⠞⠬" }, { "input": "ricochets", "output": "⠗⠊⠉⠕⠡⠑⠞⠎" }, { "input": "ricochetted", "output": "⠗⠊⠉⠕⠡⠑⠞⠞⠫" }, { "input": "ricochetting", "output": "⠗⠊⠉⠕⠡⠑⠞⠞⠬" }, { "input": "ricotta", "output": "⠗⠊⠉⠕⠞⠞â " }, { "input": "rid", "output": "â —â Šâ ™" }, { "input": "riddance", "output": "⠗⠊⠙⠙⠨⠑" }, { "input": "ridded", "output": "⠗⠊⠙⠙⠫" }, { "input": "ridden", "output": "⠗⠊⠙⠙⠢" }, { "input": "ridding", "output": "⠗⠊⠙⠙⠬" }, { "input": "riddle", "output": "⠗⠊⠙⠙⠇⠑" }, { "input": "riddled", "output": "⠗⠊⠙⠙⠇⠫" }, { "input": "riddles", "output": "⠗⠊⠙⠙⠇⠑⠎" }, { "input": "riddling", "output": "⠗⠊⠙⠙⠇⠬" }, { "input": "ride", "output": "⠗⠊⠙⠑" }, { "input": "rider", "output": "⠗⠊⠙⠻" }, { "input": "riders", "output": "⠗⠊⠙⠻⠎" }, { "input": "rides", "output": "⠗⠊⠙⠑⠎" }, { "input": "ridge", "output": "⠗⠊⠙⠛⠑" }, { "input": "ridged", "output": "⠗⠊⠙⠛⠫" }, { "input": "ridgepole", "output": "⠗⠊⠙⠛⠑â â •⠇⠑" }, { "input": "ridgepoles", "output": "⠗⠊⠙⠛⠑â â •⠇⠑⠎" }, { "input": "ridges", "output": "⠗⠊⠙⠛⠑⠎" }, { "input": "ridging", "output": "⠗⠊⠙⠛⠬" }, { "input": "ridicule", "output": "⠗⠊⠙⠊⠉⠥⠇⠑" }, { "input": "ridiculed", "output": "⠗⠊⠙⠊⠉⠥⠇⠫" }, { "input": "ridicules", "output": "⠗⠊⠙⠊⠉⠥⠇⠑⠎" }, { "input": "ridiculing", "output": "⠗⠊⠙⠊⠉⠥⠇⠬" }, { "input": "ridiculous", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎" }, { "input": "ridiculously", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎⠇⠽" }, { "input": "ridiculousness", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎⠰⠎" }, { "input": "riding", "output": "⠗⠊⠙⠬" }, { "input": "rids", "output": "⠗⠊⠙⠎" }, { "input": "rife", "output": "â —â Šâ ‹â ‘" }, { "input": "rifer", "output": "â —â Šâ ‹â »" }, { "input": "rifest", "output": "â —â Šâ ‹â ‘â Œ" }, { "input": "riff", "output": "â —â Šâ ‹â ‹" }, { "input": "riffed", "output": "â —â Šâ –â «" }, { "input": "riffing", "output": "â —â Šâ –â ¬" }, { "input": "riffle", "output": "⠗⠊⠖⠇⠑" }, { "input": "riffled", "output": "⠗⠊⠖⠇⠫" }, { "input": "riffles", "output": "⠗⠊⠖⠇⠑⠎" }, { "input": "riffling", "output": "⠗⠊⠖⠇⠬" }, { "input": "riffraff", "output": "â —â Šâ –â —â â ‹â ‹" }, { "input": "riffs", "output": "â —â Šâ –â Ž" }, { "input": "rifle", "output": "⠗⠊⠋⠇⠑" }, { "input": "rifled", "output": "⠗⠊⠋⠇⠫" }, { "input": "rifleman", "output": "⠗⠊⠋⠇⠑â â â " }, { "input": "riflemen", "output": "⠗⠊⠋⠇⠑â â ¢" }, { "input": "rifles", "output": "⠗⠊⠋⠇⠑⠎" }, { "input": "rifling", "output": "⠗⠊⠋⠇⠬" }, { "input": "rift", "output": "â —â Šâ ‹â ž" }, { "input": "rifted", "output": "â —â Šâ ‹â žâ «" }, { "input": "rifting", "output": "â —â Šâ ‹â žâ ¬" }, { "input": "rifts", "output": "â —â Šâ ‹â žâ Ž" }, { "input": "rig", "output": "â —â Šâ ›" }, { "input": "rigamarole", "output": "â —â Šâ ›â â â œâ •⠇⠑" }, { "input": "rigamaroles", "output": "â —â Šâ ›â â â œâ •⠇⠑⠎" }, { "input": "rigged", "output": "â —â Šâ ¶â «" }, { "input": "rigging", "output": "â —â Šâ ¶â ¬" }, { "input": "right", "output": "â â —" }, { "input": "righted", "output": "â â —â «" }, { "input": "righteous", "output": "â â —⠑⠳⠎" }, { "input": "righteously", "output": "â â —⠑⠳⠎⠇⠽" }, { "input": "righteousness", "output": "â â —⠑⠳⠎⠰⠎" }, { "input": "righter", "output": "â â —â »" }, { "input": "rightest", "output": "â â —â ‘â Œ" }, { "input": "rightful", "output": "â â —â °â ‡" }, { "input": "rightfully", "output": "â â —⠰⠇⠇⠽" }, { "input": "rightfulness", "output": "â â —⠰⠇⠰⠎" }, { "input": "righting", "output": "â â —â ¬" }, { "input": "rightist", "output": "â â —â Šâ Œ" }, { "input": "rightists", "output": "â â —⠊⠌⠎" }, { "input": "rightly", "output": "â â —⠇⠽" }, { "input": "rightmost", "output": "â â —â â •â Œ" }, { "input": "rightness", "output": "â â —â °â Ž" }, { "input": "rights", "output": "â â —â Ž" }, { "input": "rigid", "output": "⠗⠊⠛⠊⠙" }, { "input": "rigidity", "output": "⠗⠊⠛⠊⠙⠰⠽" }, { "input": "rigidly", "output": "⠗⠊⠛⠊⠙⠇⠽" }, { "input": "rigidness", "output": "⠗⠊⠛⠊⠙⠰⠎" }, { "input": "rigmarole", "output": "â —â Šâ ›â â œâ •⠇⠑" }, { "input": "rigmaroles", "output": "â —â Šâ ›â â œâ •⠇⠑⠎" }, { "input": "rigor", "output": "⠗⠊⠛⠕⠗" }, { "input": "rigorous", "output": "⠗⠊⠛⠕⠗⠳⠎" }, { "input": "rigorously", "output": "⠗⠊⠛⠕⠗⠳⠎⠇⠽" }, { "input": "rigors", "output": "⠗⠊⠛⠕⠗⠎" }, { "input": "rigs", "output": "⠗⠊⠛⠎" }, { "input": "rile", "output": "⠗⠊⠇⠑" }, { "input": "riled", "output": "⠗⠊⠇⠫" }, { "input": "riles", "output": "⠗⠊⠇⠑⠎" }, { "input": "riling", "output": "⠗⠊⠇⠬" }, { "input": "rill", "output": "⠗⠊⠇⠇" }, { "input": "rills", "output": "⠗⠊⠇⠇⠎" }, { "input": "rim", "output": "â —â Šâ " }, { "input": "rime", "output": "â —â Šâ â ‘" }, { "input": "rimed", "output": "â —â Šâ â «" }, { "input": "rimes", "output": "â —â Šâ â ‘â Ž" }, { "input": "riming", "output": "â —â Šâ â ¬" }, { "input": "rimmed", "output": "â —â Šâ â â «" }, { "input": "rimming", "output": "â —â Šâ â â ¬" }, { "input": "rims", "output": "â —â Šâ â Ž" }, { "input": "rind", "output": "⠗⠔⠙" }, { "input": "rinds", "output": "⠗⠔⠙⠎" }, { "input": "ring", "output": "â —â ¬" }, { "input": "ringed", "output": "⠗⠬⠫" }, { "input": "ringer", "output": "⠗⠬⠻" }, { "input": "ringers", "output": "⠗⠬⠻⠎" }, { "input": "ringing", "output": "⠗⠬⠬" }, { "input": "ringleader", "output": "⠗⠬⠇⠂⠙⠻" }, { "input": "ringleaders", "output": "⠗⠬⠇⠂⠙⠻⠎" }, { "input": "ringlet", "output": "⠗⠬⠇⠑⠞" }, { "input": "ringlets", "output": "⠗⠬⠇⠑⠞⠎" }, { "input": "ringmaster", "output": "â —â ¬â â â Œâ »" }, { "input": "ringmasters", "output": "â —â ¬â â â Œâ »â Ž" }, { "input": "rings", "output": "⠗⠬⠎" }, { "input": "ringside", "output": "⠗⠬⠎⠊⠙⠑" }, { "input": "ringworm", "output": "⠗⠬⠺⠕⠗â " }, { "input": "rink", "output": "⠗⠔⠅" }, { "input": "rinks", "output": "⠗⠔⠅⠎" }, { "input": "rinse", "output": "⠗⠔⠎⠑" }, { "input": "rinsed", "output": "⠗⠔⠎⠫" }, { "input": "rinses", "output": "⠗⠔⠎⠑⠎" }, { "input": "rinsing", "output": "⠗⠔⠎⠬" }, { "input": "riot", "output": "â —â Šâ •â ž" }, { "input": "rioted", "output": "â —â Šâ •â žâ «" }, { "input": "rioter", "output": "â —â Šâ •â žâ »" }, { "input": "rioters", "output": "⠗⠊⠕⠞⠻⠎" }, { "input": "rioting", "output": "â —â Šâ •â žâ ¬" }, { "input": "riotous", "output": "⠗⠊⠕⠞⠳⠎" }, { "input": "riots", "output": "â —â Šâ •â žâ Ž" }, { "input": "rip", "output": "â —â Šâ " }, { "input": "ripe", "output": "â —â Šâ â ‘" }, { "input": "ripely", "output": "â —â Šâ â ‘⠇⠽" }, { "input": "ripen", "output": "â —â Šâ â ¢" }, { "input": "ripened", "output": "â —â Šâ â ¢â «" }, { "input": "ripeness", "output": "â —â Šâ â ‘â °â Ž" }, { "input": "ripening", "output": "â —â Šâ â ¢â ¬" }, { "input": "ripens", "output": "â —â Šâ â ¢â Ž" }, { "input": "riper", "output": "â —â Šâ â »" }, { "input": "ripest", "output": "â —â Šâ â ‘â Œ" }, { "input": "riposte", "output": "â —â Šâ â •⠌⠑" }, { "input": "riposted", "output": "â —â Šâ â •⠌⠫" }, { "input": "ripostes", "output": "â —â Šâ â •⠌⠑⠎" }, { "input": "riposting", "output": "â —â Šâ â •⠌⠬" }, { "input": "ripped", "output": "â —â Šâ â â «" }, { "input": "ripper", "output": "â —â Šâ â â »" }, { "input": "rippers", "output": "â —â Šâ â â »â Ž" }, { "input": "ripping", "output": "â —â Šâ â â ¬" }, { "input": "ripple", "output": "â —â Šâ â â ‡â ‘" }, { "input": "rippled", "output": "â —â Šâ â â ‡â «" }, { "input": "ripples", "output": "â —â Šâ â â ‡â ‘â Ž" }, { "input": "rippling", "output": "â —â Šâ â â ‡â ¬" }, { "input": "rips", "output": "â —â Šâ â Ž" }, { "input": "ripsaw", "output": "â —â Šâ â Žâ â º" }, { "input": "ripsaws", "output": "â —â Šâ â Žâ â ºâ Ž" }, { "input": "rise", "output": "â —â Šâ Žâ ‘" }, { "input": "risen", "output": "â —â Šâ Žâ ¢" }, { "input": "riser", "output": "â —â Šâ Žâ »" }, { "input": "risers", "output": "⠗⠊⠎⠻⠎" }, { "input": "rises", "output": "â —â Šâ Žâ ‘â Ž" }, { "input": "risible", "output": "⠗⠊⠎⠊⠃⠇⠑" }, { "input": "rising", "output": "â —â Šâ Žâ ¬" }, { "input": "risk", "output": "â —â Šâ Žâ …" }, { "input": "risked", "output": "â —â Šâ Žâ …â «" }, { "input": "riskier", "output": "â —â Šâ Žâ …â Šâ »" }, { "input": "riskiest", "output": "â —â Šâ Žâ …â Šâ ‘â Œ" }, { "input": "riskiness", "output": "â —â Šâ Žâ …â Šâ °â Ž" }, { "input": "risking", "output": "â —â Šâ Žâ …â ¬" }, { "input": "risks", "output": "â —â Šâ Žâ …â Ž" }, { "input": "risky", "output": "â —â Šâ Žâ …â ½" }, { "input": "risqué", "output": "⠗⠊⠎⠟⠥⠠⠘⠻â â ˜â ‰" }, { "input": "rite", "output": "â —â Šâ žâ ‘" }, { "input": "rites", "output": "â —â Šâ žâ ‘â Ž" }, { "input": "ritual", "output": "â —â Šâ žâ ¥â â ‡" }, { "input": "ritualism", "output": "â —â Šâ žâ ¥â â ‡â Šâ Žâ " }, { "input": "ritualistic", "output": "â —â Šâ žâ ¥â â ‡â Šâ Œâ Šâ ‰" }, { "input": "ritually", "output": "â —â Šâ žâ ¥â â ‡â ‡â ½" }, { "input": "rituals", "output": "â —â Šâ žâ ¥â â ‡â Ž" }, { "input": "ritzier", "output": "⠗⠊⠞⠵⠊⠻" }, { "input": "ritziest", "output": "⠗⠊⠞⠵⠊⠑⠌" }, { "input": "ritzy", "output": "⠗⠊⠞⠵⠽" }, { "input": "rival", "output": "â —â Šâ §â â ‡" }, { "input": "rivaled", "output": "â —â Šâ §â â ‡â «" }, { "input": "rivaling", "output": "â —â Šâ §â â ‡â ¬" }, { "input": "rivalled", "output": "â —â Šâ §â â ‡â ‡â «" }, { "input": "rivalling", "output": "â —â Šâ §â â ‡â ‡â ¬" }, { "input": "rivalries", "output": "â —â Šâ §â â ‡â —â Šâ ‘â Ž" }, { "input": "rivalry", "output": "â —â Šâ §â â ‡â —â ½" }, { "input": "rivals", "output": "â —â Šâ §â â ‡â Ž" }, { "input": "riven", "output": "â —â Šâ §â ¢" }, { "input": "river", "output": "â —â Šâ §â »" }, { "input": "riverbed", "output": "⠗⠊⠧⠻⠃⠫" }, { "input": "riverbeds", "output": "⠗⠊⠧⠻⠃⠫⠎" }, { "input": "riverfront", "output": "⠗⠊⠧⠻⠋⠗⠕â â ž" }, { "input": "rivers", "output": "⠗⠊⠧⠻⠎" }, { "input": "riverside", "output": "⠗⠊⠧⠻⠎⠊⠙⠑" }, { "input": "riversides", "output": "⠗⠊⠧⠻⠎⠊⠙⠑⠎" }, { "input": "rivet", "output": "â —â Šâ §â ‘â ž" }, { "input": "riveted", "output": "â —â Šâ §â ‘â žâ «" }, { "input": "riveting", "output": "â —â Šâ §â ‘â žâ ¬" }, { "input": "rivets", "output": "â —â Šâ §â ‘â žâ Ž" }, { "input": "rivetted", "output": "â —â Šâ §â ‘â žâ žâ «" }, { "input": "rivetting", "output": "â —â Šâ §â ‘â žâ žâ ¬" }, { "input": "rivulet", "output": "⠗⠊⠧⠥⠇⠑⠞" }, { "input": "rivulets", "output": "⠗⠊⠧⠥⠇⠑⠞⠎" }, { "input": "roach", "output": "â —â •â â ¡" }, { "input": "roaches", "output": "â —â •â â ¡â ‘â Ž" }, { "input": "road", "output": "â —â •â â ™" }, { "input": "roadbed", "output": "â —â •â â ™â ƒâ «" }, { "input": "roadbeds", "output": "â —â •â â ™â ƒâ «â Ž" }, { "input": "roadblock", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅" }, { "input": "roadblocked", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠫" }, { "input": "roadblocking", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠬" }, { "input": "roadblocks", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠎" }, { "input": "roadhouse", "output": "â —â •â â ™â “⠳⠎⠑" }, { "input": "roadhouses", "output": "â —â •â â ™â “⠳⠎⠑⠎" }, { "input": "roadkill", "output": "â —â •â â ™â …⠊⠇⠇" }, { "input": "roadrunner", "output": "â —â •â â ™â —â ¥â â â »" }, { "input": "roadrunners", "output": "â —â •â â ™â —â ¥â â â »â Ž" }, { "input": "roads", "output": "â —â •â â ™â Ž" }, { "input": "roadshow", "output": "â —â •â â ™â ©â ª" }, { "input": "roadside", "output": "â —â •â â ™â Žâ Šâ ™â ‘" }, { "input": "roadsides", "output": "â —â •â â ™â Žâ Šâ ™â ‘â Ž" }, { "input": "roadster", "output": "â —â •â â ™â Œâ »" }, { "input": "roadsters", "output": "â —â •â â ™â Œâ »â Ž" }, { "input": "roadway", "output": "â —â •â â ™â ºâ â ½" }, { "input": "roadways", "output": "â —â •â â ™â ºâ â ½â Ž" }, { "input": "roadwork", "output": "â —â •â â ™â â º" }, { "input": "roadworthy", "output": "â —â •â â ™â ºâ •⠗⠹⠽" }, { "input": "roam", "output": "â —â •â â " }, { "input": "roamed", "output": "â —â •â â â «" }, { "input": "roamer", "output": "â —â •â â â »" }, { "input": "roamers", "output": "â —â •â â â »â Ž" }, { "input": "roaming", "output": "â —â •â â â ¬" }, { "input": "roams", "output": "â —â •â â â Ž" }, { "input": "roan", "output": "â —â •â â " }, { "input": "roans", "output": "â —â •â â â Ž" }, { "input": "roar", "output": "â —â •â œ" }, { "input": "roared", "output": "⠗⠕⠜⠫" }, { "input": "roaring", "output": "⠗⠕⠜⠬" }, { "input": "roars", "output": "⠗⠕⠜⠎" }, { "input": "roast", "output": "â —â •â â Œ" }, { "input": "roasted", "output": "â —â •â â Œâ «" }, { "input": "roaster", "output": "â —â •â â Œâ »" }, { "input": "roasters", "output": "â —â •â â Œâ »â Ž" }, { "input": "roasting", "output": "â —â •â â Œâ ¬" }, { "input": "roasts", "output": "â —â •â â Œâ Ž" }, { "input": "rob", "output": "â —â •â ƒ" }, { "input": "robbed", "output": "⠗⠕⠆⠫" }, { "input": "robber", "output": "⠗⠕⠆⠻" }, { "input": "robberies", "output": "⠗⠕⠆⠻⠊⠑⠎" }, { "input": "robbers", "output": "⠗⠕⠆⠻⠎" }, { "input": "robbery", "output": "⠗⠕⠆⠻⠽" }, { "input": "robbing", "output": "⠗⠕⠆⠬" }, { "input": "robe", "output": "⠗⠕⠃⠑" }, { "input": "robed", "output": "⠗⠕⠃⠫" }, { "input": "robes", "output": "⠗⠕⠃⠑⠎" }, { "input": "robin", "output": "⠗⠕⠃⠔" }, { "input": "robing", "output": "⠗⠕⠃⠬" }, { "input": "robins", "output": "⠗⠕⠃⠔⠎" }, { "input": "robot", "output": "⠗⠕⠃⠕⠞" }, { "input": "robotic", "output": "⠗⠕⠃⠕⠞⠊⠉" }, { "input": "robotics", "output": "⠗⠕⠃⠕⠞⠊⠉⠎" }, { "input": "robots", "output": "⠗⠕⠃⠕⠞⠎" }, { "input": "robs", "output": "⠗⠕⠃⠎" }, { "input": "robust", "output": "⠗⠕⠃⠥⠌" }, { "input": "robuster", "output": "⠗⠕⠃⠥⠌⠻" }, { "input": "robustest", "output": "⠗⠕⠃⠥⠌⠑⠌" }, { "input": "robustly", "output": "⠗⠕⠃⠥⠌⠇⠽" }, { "input": "robustness", "output": "⠗⠕⠃⠥⠌⠰⠎" }, { "input": "rock", "output": "⠗⠕⠉⠅" }, { "input": "rocked", "output": "⠗⠕⠉⠅⠫" }, { "input": "rocker", "output": "⠗⠕⠉⠅⠻" }, { "input": "rockers", "output": "⠗⠕⠉⠅⠻⠎" }, { "input": "rocket", "output": "⠗⠕⠉⠅⠑⠞" }, { "input": "rocketed", "output": "⠗⠕⠉⠅⠑⠞⠫" }, { "input": "rocketing", "output": "⠗⠕⠉⠅⠑⠞⠬" }, { "input": "rocketry", "output": "⠗⠕⠉⠅⠑⠞⠗⠽" }, { "input": "rockets", "output": "⠗⠕⠉⠅⠑⠞⠎" }, { "input": "rockier", "output": "⠗⠕⠉⠅⠊⠻" }, { "input": "rockiest", "output": "⠗⠕⠉⠅⠊⠑⠌" }, { "input": "rockiness", "output": "⠗⠕⠉⠅⠊⠰⠎" }, { "input": "rocking", "output": "⠗⠕⠉⠅⠬" }, { "input": "rocks", "output": "⠗⠕⠉⠅⠎" }, { "input": "rocky", "output": "⠗⠕⠉⠅⠽" }, { "input": "rococo", "output": "⠗⠕⠉⠕⠉⠕" }, { "input": "rod", "output": "â —â •â ™" }, { "input": "rode", "output": "⠗⠕⠙⠑" }, { "input": "rodent", "output": "⠗⠕⠙⠢⠞" }, { "input": "rodents", "output": "⠗⠕⠙⠢⠞⠎" }, { "input": "rodeo", "output": "⠗⠕⠙⠑⠕" }, { "input": "rodeos", "output": "⠗⠕⠙⠑⠕⠎" }, { "input": "rods", "output": "⠗⠕⠙⠎" }, { "input": "roe", "output": "â —â •â ‘" }, { "input": "roebuck", "output": "⠗⠕⠑⠃⠥⠉⠅" }, { "input": "roebucks", "output": "⠗⠕⠑⠃⠥⠉⠅⠎" }, { "input": "roentgen", "output": "⠗⠕⠢⠞⠛⠢" }, { "input": "roentgens", "output": "⠗⠕⠢⠞⠛⠢⠎" }, { "input": "roes", "output": "â —â •â ‘â Ž" }, { "input": "roger", "output": "⠗⠕⠛⠻" }, { "input": "rogered", "output": "⠗⠕⠛⠻⠫" }, { "input": "rogering", "output": "⠗⠕⠛⠻⠬" }, { "input": "rogers", "output": "⠗⠕⠛⠻⠎" }, { "input": "rogue", "output": "⠗⠕⠛⠥⠑" }, { "input": "roguery", "output": "⠗⠕⠛⠥⠻⠽" }, { "input": "rogues", "output": "⠗⠕⠛⠥⠑⠎" }, { "input": "roguish", "output": "⠗⠕⠛⠥⠊⠩" }, { "input": "roguishly", "output": "⠗⠕⠛⠥⠊⠩⠇⠽" }, { "input": "roil", "output": "â —â •â Šâ ‡" }, { "input": "roiled", "output": "⠗⠕⠊⠇⠫" }, { "input": "roiling", "output": "⠗⠕⠊⠇⠬" }, { "input": "roils", "output": "⠗⠕⠊⠇⠎" }, { "input": "roister", "output": "⠗⠕⠊⠌⠻" }, { "input": "roistered", "output": "⠗⠕⠊⠌⠻⠫" }, { "input": "roisterer", "output": "⠗⠕⠊⠌⠻⠻" }, { "input": "roisterers", "output": "⠗⠕⠊⠌⠻⠻⠎" }, { "input": "roistering", "output": "⠗⠕⠊⠌⠻⠬" }, { "input": "roisters", "output": "⠗⠕⠊⠌⠻⠎" }, { "input": "role", "output": "⠗⠕⠇⠑" }, { "input": "roles", "output": "⠗⠕⠇⠑⠎" }, { "input": "roll", "output": "⠗⠕⠇⠇" }, { "input": "rollback", "output": "⠗⠕⠇⠇⠃â â ‰â …" }, { "input": "rollbacks", "output": "⠗⠕⠇⠇⠃â â ‰â …â Ž" }, { "input": "rolled", "output": "⠗⠕⠇⠇⠫" }, { "input": "roller", "output": "⠗⠕⠇⠇⠻" }, { "input": "rollers", "output": "⠗⠕⠇⠇⠻⠎" }, { "input": "rollerskating", "output": "⠗⠕⠇⠇⠻⠎⠅â â žâ ¬" }, { "input": "rollick", "output": "⠗⠕⠇⠇⠊⠉⠅" }, { "input": "rollicked", "output": "⠗⠕⠇⠇⠊⠉⠅⠫" }, { "input": "rollicking", "output": "⠗⠕⠇⠇⠊⠉⠅⠬" }, { "input": "rollicks", "output": "⠗⠕⠇⠇⠊⠉⠅⠎" }, { "input": "rolling", "output": "⠗⠕⠇⠇⠬" }, { "input": "rolls", "output": "⠗⠕⠇⠇⠎" }, { "input": "romaine", "output": "â —â •â â â ”â ‘" }, { "input": "roman", "output": "â —â •â â â " }, { "input": "romance", "output": "â —â •â â ¨â ‘" }, { "input": "romanced", "output": "â —â •â â ¨â ‘â ™" }, { "input": "romances", "output": "â —â •â â ¨â ‘â Ž" }, { "input": "romancing", "output": "â —â •â â â â ‰â ¬" }, { "input": "romantic", "output": "â —â •â â â â žâ Šâ ‰" }, { "input": "romantically", "output": "â —â •â â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "romanticism", "output": "â —â •â â â â žâ Šâ ‰â Šâ Žâ " }, { "input": "romanticist", "output": "â —â •â â â â žâ Šâ ‰â Šâ Œ" }, { "input": "romanticists", "output": "â —â •â â â â žâ Šâ ‰â Šâ Œâ Ž" }, { "input": "romanticize", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ ‘" }, { "input": "romanticized", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ «" }, { "input": "romanticizes", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "romanticizing", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ ¬" }, { "input": "romantics", "output": "â —â •â â â â žâ Šâ ‰â Ž" }, { "input": "romp", "output": "â —â •â â " }, { "input": "romped", "output": "â —â •â â â «" }, { "input": "romper", "output": "â —â •â â â »" }, { "input": "rompers", "output": "â —â •â â â »â Ž" }, { "input": "romping", "output": "â —â •â â â ¬" }, { "input": "romps", "output": "â —â •â â â Ž" }, { "input": "rood", "output": "â —â •â •â ™" }, { "input": "roods", "output": "⠗⠕⠕⠙⠎" }, { "input": "roof", "output": "â —â •â ·" }, { "input": "roofed", "output": "â —â •â ·â «" }, { "input": "roofing", "output": "â —â •â ·â ¬" }, { "input": "roofs", "output": "â —â •â ·â Ž" }, { "input": "rooftop", "output": "â —â •â ·â žâ •â " }, { "input": "rooftops", "output": "â —â •â ·â žâ •â â Ž" }, { "input": "rook", "output": "â —â •â •â …" }, { "input": "rooked", "output": "â —â •â •â …â «" }, { "input": "rookeries", "output": "⠗⠕⠕⠅⠻⠊⠑⠎" }, { "input": "rookery", "output": "⠗⠕⠕⠅⠻⠽" }, { "input": "rookie", "output": "â —â •â •â …â Šâ ‘" }, { "input": "rookies", "output": "â —â •â •â …â Šâ ‘â Ž" }, { "input": "rooking", "output": "â —â •â •â …â ¬" }, { "input": "rooks", "output": "â —â •â •â …â Ž" }, { "input": "room", "output": "â —â •â •â " }, { "input": "roomed", "output": "â —â •â •â â «" }, { "input": "roomer", "output": "â —â •â •â â »" }, { "input": "roomers", "output": "â —â •â •â â »â Ž" }, { "input": "roomful", "output": "â —â •â •â â °â ‡" }, { "input": "roomfuls", "output": "â —â •â •â â °â ‡â Ž" }, { "input": "roomier", "output": "â —â •â •â â Šâ »" }, { "input": "roomiest", "output": "â —â •â •â â Šâ ‘â Œ" }, { "input": "roominess", "output": "â —â •â •â â Šâ °â Ž" }, { "input": "rooming", "output": "â —â •â •â â ¬" }, { "input": "roommate", "output": "â —â •â •â â â â žâ ‘" }, { "input": "roommates", "output": "â —â •â •â â â â žâ ‘â Ž" }, { "input": "rooms", "output": "â —â •â •â â Ž" }, { "input": "roomy", "output": "â —â •â •â â ½" }, { "input": "roost", "output": "â —â •â •â Œ" }, { "input": "roosted", "output": "⠗⠕⠕⠌⠫" }, { "input": "rooster", "output": "⠗⠕⠕⠌⠻" }, { "input": "roosters", "output": "⠗⠕⠕⠌⠻⠎" }, { "input": "roosting", "output": "⠗⠕⠕⠌⠬" }, { "input": "roosts", "output": "⠗⠕⠕⠌⠎" }, { "input": "root", "output": "â —â •â •â ž" }, { "input": "rooted", "output": "â —â •â •â žâ «" }, { "input": "rooter", "output": "â —â •â •â žâ »" }, { "input": "rooting", "output": "â —â •â •â žâ ¬" }, { "input": "rootless", "output": "⠗⠕⠕⠞⠨⠎" }, { "input": "roots", "output": "â —â •â •â žâ Ž" }, { "input": "rope", "output": "â —â •â â ‘" }, { "input": "roped", "output": "â —â •â â «" }, { "input": "ropes", "output": "â —â •â â ‘â Ž" }, { "input": "roping", "output": "â —â •â â ¬" }, { "input": "rosaries", "output": "⠗⠕⠎⠜⠊⠑⠎" }, { "input": "rosary", "output": "⠗⠕⠎⠜⠽" }, { "input": "rose", "output": "â —â •â Žâ ‘" }, { "input": "roseate", "output": "â —â •â Žâ ‚â žâ ‘" }, { "input": "rosebud", "output": "⠗⠕⠎⠑⠃⠥⠙" }, { "input": "rosebuds", "output": "⠗⠕⠎⠑⠃⠥⠙⠎" }, { "input": "rosebush", "output": "⠗⠕⠎⠑⠃⠥⠩" }, { "input": "rosebushes", "output": "⠗⠕⠎⠑⠃⠥⠩⠑⠎" }, { "input": "rosemary", "output": "â —â •â Žâ ‘â â œâ ½" }, { "input": "roses", "output": "â —â •â Žâ ‘â Ž" }, { "input": "rosette", "output": "â —â •â Žâ ‘â žâ žâ ‘" }, { "input": "rosettes", "output": "â —â •â Žâ ‘â žâ žâ ‘â Ž" }, { "input": "rosewood", "output": "⠗⠕⠎⠑⠺⠕⠕⠙" }, { "input": "rosewoods", "output": "⠗⠕⠎⠑⠺⠕⠕⠙⠎" }, { "input": "rosier", "output": "â —â •â Žâ Šâ »" }, { "input": "rosiest", "output": "â —â •â Žâ Šâ ‘â Œ" }, { "input": "rosily", "output": "⠗⠕⠎⠊⠇⠽" }, { "input": "rosin", "output": "â —â •â Žâ ”" }, { "input": "rosined", "output": "⠗⠕⠎⠔⠫" }, { "input": "rosiness", "output": "â —â •â Žâ Šâ °â Ž" }, { "input": "rosining", "output": "⠗⠕⠎⠔⠬" }, { "input": "rosins", "output": "⠗⠕⠎⠔⠎" }, { "input": "roster", "output": "⠗⠕⠌⠻" }, { "input": "rosters", "output": "⠗⠕⠌⠻⠎" }, { "input": "rostra", "output": "⠗⠕⠌⠗â " }, { "input": "rostrum", "output": "⠗⠕⠌⠗⠥â " }, { "input": "rostrums", "output": "⠗⠕⠌⠗⠥â â Ž" }, { "input": "rosy", "output": "â —â •â Žâ ½" }, { "input": "rot", "output": "â —â •â ž" }, { "input": "rotaries", "output": "⠗⠕⠞⠜⠊⠑⠎" }, { "input": "rotary", "output": "⠗⠕⠞⠜⠽" }, { "input": "rotate", "output": "â —â •â žâ â žâ ‘" }, { "input": "rotated", "output": "â —â •â žâ â žâ «" }, { "input": "rotates", "output": "â —â •â žâ â žâ ‘â Ž" }, { "input": "rotating", "output": "â —â •â žâ â žâ ¬" }, { "input": "rotation", "output": "â —â •â žâ â °â " }, { "input": "rotational", "output": "â —â •â žâ â °â â â ‡" }, { "input": "rotations", "output": "â —â •â žâ â °â â Ž" }, { "input": "rote", "output": "â —â •â žâ ‘" }, { "input": "rotisserie", "output": "⠗⠕⠞⠊⠎⠎⠻⠊⠑" }, { "input": "rotisseries", "output": "⠗⠕⠞⠊⠎⠎⠻⠊⠑⠎" }, { "input": "rotogravure", "output": "⠗⠕⠞⠕⠛⠗â â §â ¥â —â ‘" }, { "input": "rotogravures", "output": "⠗⠕⠞⠕⠛⠗â â §â ¥â —â ‘â Ž" }, { "input": "rotor", "output": "â —â •â žâ •â —" }, { "input": "rotors", "output": "â —â •â žâ •â —â Ž" }, { "input": "rots", "output": "â —â •â žâ Ž" }, { "input": "rotted", "output": "â —â •â žâ žâ «" }, { "input": "rotten", "output": "â —â •â žâ žâ ¢" }, { "input": "rottener", "output": "⠗⠕⠞⠞⠢⠻" }, { "input": "rottenest", "output": "⠗⠕⠞⠞⠢⠑⠌" }, { "input": "rottenness", "output": "⠗⠕⠞⠞⠢⠰⠎" }, { "input": "rotting", "output": "â —â •â žâ žâ ¬" }, { "input": "rotund", "output": "â —â •â žâ ¥â â ™" }, { "input": "rotunda", "output": "â —â •â žâ ¥â â ™â " }, { "input": "rotundas", "output": "â —â •â žâ ¥â â ™â â Ž" }, { "input": "rotundity", "output": "â —â •â žâ ¥â â ™â °â ½" }, { "input": "rotundness", "output": "â —â •â žâ ¥â â ™â °â Ž" }, { "input": "rouge", "output": "⠗⠳⠛⠑" }, { "input": "rouged", "output": "⠗⠳⠛⠫" }, { "input": "rouges", "output": "⠗⠳⠛⠑⠎" }, { "input": "rough", "output": "⠗⠳⠣" }, { "input": "roughage", "output": "⠗⠳⠣â â ›â ‘" }, { "input": "roughed", "output": "⠗⠳⠣⠫" }, { "input": "roughen", "output": "⠗⠳⠣⠢" }, { "input": "roughened", "output": "⠗⠳⠣⠢⠫" }, { "input": "roughening", "output": "⠗⠳⠣⠢⠬" }, { "input": "roughens", "output": "⠗⠳⠣⠢⠎" }, { "input": "rougher", "output": "⠗⠳⠣⠻" }, { "input": "roughest", "output": "⠗⠳⠣⠑⠌" }, { "input": "roughhouse", "output": "⠗⠳⠣⠓⠳⠎⠑" }, { "input": "roughhoused", "output": "⠗⠳⠣⠓⠳⠎⠫" }, { "input": "roughhouses", "output": "⠗⠳⠣⠓⠳⠎⠑⠎" }, { "input": "roughhousing", "output": "⠗⠳⠣⠓⠳⠎⠬" }, { "input": "roughing", "output": "⠗⠳⠣⠬" }, { "input": "roughly", "output": "⠗⠳⠣⠇⠽" }, { "input": "roughneck", "output": "⠗⠳⠣â â ‘⠉⠅" }, { "input": "roughnecked", "output": "⠗⠳⠣â â ‘⠉⠅⠫" }, { "input": "roughnecking", "output": "⠗⠳⠣â â ‘⠉⠅⠬" }, { "input": "roughnecks", "output": "⠗⠳⠣â â ‘⠉⠅⠎" }, { "input": "roughness", "output": "⠗⠳⠣⠰⠎" }, { "input": "roughs", "output": "⠗⠳⠣⠎" }, { "input": "roughshod", "output": "⠗⠳⠣⠩⠕⠙" }, { "input": "rouging", "output": "⠗⠳⠛⠬" }, { "input": "roulette", "output": "⠗⠳⠇⠑⠞⠞⠑" }, { "input": "round", "output": "⠗⠨⠙" }, { "input": "roundabout", "output": "⠗⠨⠙â â ƒ" }, { "input": "roundabouts", "output": "⠗⠨⠙â â ƒâ Ž" }, { "input": "rounded", "output": "⠗⠨⠙⠫" }, { "input": "roundelay", "output": "⠗⠨⠙⠑⠇â â ½" }, { "input": "roundelays", "output": "⠗⠨⠙⠑⠇â â ½â Ž" }, { "input": "rounder", "output": "⠗⠨⠙⠻" }, { "input": "roundest", "output": "⠗⠨⠙⠑⠌" }, { "input": "roundhouse", "output": "⠗⠨⠙⠓⠳⠎⠑" }, { "input": "roundhouses", "output": "⠗⠨⠙⠓⠳⠎⠑⠎" }, { "input": "rounding", "output": "⠗⠨⠙⠬" }, { "input": "roundish", "output": "⠗⠨⠙⠊⠩" }, { "input": "roundly", "output": "⠗⠨⠙⠇⠽" }, { "input": "roundness", "output": "⠗⠨⠙⠰⠎" }, { "input": "rounds", "output": "⠗⠨⠙⠎" }, { "input": "roundup", "output": "⠗⠨⠙⠥â " }, { "input": "roundups", "output": "⠗⠨⠙⠥â â Ž" }, { "input": "roundworm", "output": "⠗⠨⠙⠺⠕⠗â " }, { "input": "roundworms", "output": "⠗⠨⠙⠺⠕⠗â â Ž" }, { "input": "rouse", "output": "⠗⠳⠎⠑" }, { "input": "roused", "output": "⠗⠳⠎⠫" }, { "input": "rouses", "output": "⠗⠳⠎⠑⠎" }, { "input": "rousing", "output": "⠗⠳⠎⠬" }, { "input": "roustabout", "output": "⠗⠳⠌â â ƒ" }, { "input": "roustabouts", "output": "⠗⠳⠌â â ƒâ Ž" }, { "input": "rout", "output": "⠗⠳⠞" }, { "input": "route", "output": "⠗⠳⠞⠑" }, { "input": "routed", "output": "⠗⠳⠞⠫" }, { "input": "routeing", "output": "⠗⠳⠞⠑⠬" }, { "input": "router", "output": "⠗⠳⠞⠻" }, { "input": "routes", "output": "⠗⠳⠞⠑⠎" }, { "input": "routine", "output": "⠗⠳⠞⠔⠑" }, { "input": "routinely", "output": "⠗⠳⠞⠔⠑⠇⠽" }, { "input": "routines", "output": "⠗⠳⠞⠔⠑⠎" }, { "input": "routing", "output": "⠗⠳⠞⠬" }, { "input": "routinize", "output": "⠗⠳⠞⠔⠊⠵⠑" }, { "input": "routinized", "output": "⠗⠳⠞⠔⠊⠵⠫" }, { "input": "routinizes", "output": "⠗⠳⠞⠔⠊⠵⠑⠎" }, { "input": "routinizing", "output": "⠗⠳⠞⠔⠊⠵⠬" }, { "input": "routs", "output": "⠗⠳⠞⠎" }, { "input": "roué", "output": "⠗⠳⠠⠘⠻â â ˜â ‰" }, { "input": "roués", "output": "⠗⠳⠠⠘⠻â â ˜â ‰â Ž" }, { "input": "rove", "output": "â —â •â §â ‘" }, { "input": "roved", "output": "â —â •â §â «" }, { "input": "rover", "output": "â —â •â §â »" }, { "input": "rovers", "output": "⠗⠕⠧⠻⠎" }, { "input": "roves", "output": "â —â •â §â ‘â Ž" }, { "input": "roving", "output": "â —â •â §â ¬" }, { "input": "row", "output": "â —â ª" }, { "input": "rowboat", "output": "⠗⠪⠃⠕â â ž" }, { "input": "rowboats", "output": "⠗⠪⠃⠕â â žâ Ž" }, { "input": "rowdier", "output": "⠗⠪⠙⠊⠻" }, { "input": "rowdies", "output": "⠗⠪⠙⠊⠑⠎" }, { "input": "rowdiest", "output": "⠗⠪⠙⠊⠑⠌" }, { "input": "rowdiness", "output": "⠗⠪⠙⠊⠰⠎" }, { "input": "rowdy", "output": "⠗⠪⠙⠽" }, { "input": "rowdyism", "output": "⠗⠪⠙⠽⠊⠎â " }, { "input": "rowed", "output": "⠗⠪⠫" }, { "input": "rowel", "output": "⠗⠪⠑⠇" }, { "input": "roweled", "output": "⠗⠪⠑⠇⠫" }, { "input": "roweling", "output": "⠗⠪⠑⠇⠬" }, { "input": "rowelled", "output": "⠗⠪⠑⠇⠇⠫" }, { "input": "rowelling", "output": "⠗⠪⠑⠇⠇⠬" }, { "input": "rowels", "output": "⠗⠪⠑⠇⠎" }, { "input": "rower", "output": "⠗⠪⠻" }, { "input": "rowers", "output": "⠗⠪⠻⠎" }, { "input": "rowing", "output": "⠗⠪⠬" }, { "input": "rows", "output": "⠗⠪⠎" }, { "input": "royal", "output": "â —â •â ½â â ‡" }, { "input": "royalist", "output": "â —â •â ½â â ‡â Šâ Œ" }, { "input": "royalists", "output": "â —â •â ½â â ‡â Šâ Œâ Ž" }, { "input": "royally", "output": "â —â •â ½â â ‡â ‡â ½" }, { "input": "royals", "output": "â —â •â ½â â ‡â Ž" }, { "input": "royalties", "output": "â —â •â ½â â ‡â žâ Šâ ‘â Ž" }, { "input": "royalty", "output": "â —â •â ½â â ‡â žâ ½" }, { "input": "rs", "output": "â —â Ž" }, { "input": "rub", "output": "⠗⠥⠃" }, { "input": "rubbed", "output": "⠗⠥⠆⠫" }, { "input": "rubber", "output": "⠗⠥⠆⠻" }, { "input": "rubberier", "output": "⠗⠥⠆⠻⠊⠻" }, { "input": "rubberiest", "output": "⠗⠥⠆⠻⠊⠑⠌" }, { "input": "rubberize", "output": "⠗⠥⠆⠻⠊⠵⠑" }, { "input": "rubberized", "output": "⠗⠥⠆⠻⠊⠵⠫" }, { "input": "rubberizes", "output": "⠗⠥⠆⠻⠊⠵⠑⠎" }, { "input": "rubberizing", "output": "⠗⠥⠆⠻⠊⠵⠬" }, { "input": "rubberneck", "output": "⠗⠥⠆⠻â â ‘⠉⠅" }, { "input": "rubbernecked", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠫" }, { "input": "rubbernecking", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠬" }, { "input": "rubbernecks", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠎" }, { "input": "rubbers", "output": "⠗⠥⠆⠻⠎" }, { "input": "rubbery", "output": "⠗⠥⠆⠻⠽" }, { "input": "rubbing", "output": "⠗⠥⠆⠬" }, { "input": "rubbish", "output": "⠗⠥⠆⠊⠩" }, { "input": "rubbished", "output": "⠗⠥⠆⠊⠩⠫" }, { "input": "rubbishes", "output": "⠗⠥⠆⠊⠩⠑⠎" }, { "input": "rubbishing", "output": "⠗⠥⠆⠊⠩⠬" }, { "input": "rubbishy", "output": "⠗⠥⠆⠊⠩⠽" }, { "input": "rubble", "output": "⠗⠥⠆⠇⠑" }, { "input": "rubdown", "output": "⠗⠥⠃⠙⠪â " }, { "input": "rubdowns", "output": "⠗⠥⠃⠙⠪â â Ž" }, { "input": "rube", "output": "⠗⠥⠃⠑" }, { "input": "rubella", "output": "⠗⠥⠃⠑⠇⠇â " }, { "input": "rubes", "output": "⠗⠥⠃⠑⠎" }, { "input": "rubicund", "output": "⠗⠥⠃⠊⠉⠥â â ™" }, { "input": "rubier", "output": "⠗⠥⠃⠊⠻" }, { "input": "rubies", "output": "⠗⠥⠃⠊⠑⠎" }, { "input": "rubiest", "output": "⠗⠥⠃⠊⠑⠌" }, { "input": "ruble", "output": "⠗⠥⠃⠇⠑" }, { "input": "rubles", "output": "⠗⠥⠃⠇⠑⠎" }, { "input": "rubric", "output": "⠗⠥⠃⠗⠊⠉" }, { "input": "rubrics", "output": "⠗⠥⠃⠗⠊⠉⠎" }, { "input": "rubs", "output": "⠗⠥⠃⠎" }, { "input": "ruby", "output": "⠗⠥⠃⠽" }, { "input": "rucksack", "output": "⠗⠥⠉⠅⠎â â ‰â …" }, { "input": "rucksacks", "output": "⠗⠥⠉⠅⠎â â ‰â …â Ž" }, { "input": "ruckus", "output": "⠗⠥⠉⠅⠥⠎" }, { "input": "ruckuses", "output": "⠗⠥⠉⠅⠥⠎⠑⠎" }, { "input": "rudder", "output": "⠗⠥⠙⠙⠻" }, { "input": "rudders", "output": "⠗⠥⠙⠙⠻⠎" }, { "input": "ruddier", "output": "⠗⠥⠙⠙⠊⠻" }, { "input": "ruddiest", "output": "⠗⠥⠙⠙⠊⠑⠌" }, { "input": "ruddiness", "output": "⠗⠥⠙⠙⠊⠰⠎" }, { "input": "ruddy", "output": "⠗⠥⠙⠙⠽" }, { "input": "rude", "output": "⠗⠥⠙⠑" }, { "input": "rudely", "output": "⠗⠥⠙⠑⠇⠽" }, { "input": "rudeness", "output": "⠗⠥⠙⠑⠰⠎" }, { "input": "ruder", "output": "⠗⠥⠙⠻" }, { "input": "rudest", "output": "⠗⠥⠙⠑⠌" }, { "input": "rudiment", "output": "⠗⠥⠙⠊⠰⠞" }, { "input": "rudimentary", "output": "⠗⠥⠙⠊⠰⠞⠜⠽" }, { "input": "rudiments", "output": "⠗⠥⠙⠊⠰⠞⠎" }, { "input": "rue", "output": "⠗⠥⠑" }, { "input": "rued", "output": "⠗⠥⠫" }, { "input": "rueful", "output": "⠗⠥⠑⠰⠇" }, { "input": "ruefully", "output": "⠗⠥⠑⠰⠇⠇⠽" }, { "input": "rues", "output": "⠗⠥⠑⠎" }, { "input": "ruff", "output": "⠗⠥⠋⠋" }, { "input": "ruffed", "output": "⠗⠥⠖⠫" }, { "input": "ruffian", "output": "⠗⠥⠖⠊â â " }, { "input": "ruffians", "output": "⠗⠥⠖⠊â â â Ž" }, { "input": "ruffing", "output": "⠗⠥⠖⠬" }, { "input": "ruffle", "output": "⠗⠥⠖⠇⠑" }, { "input": "ruffled", "output": "⠗⠥⠖⠇⠫" }, { "input": "ruffles", "output": "⠗⠥⠖⠇⠑⠎" }, { "input": "ruffling", "output": "⠗⠥⠖⠇⠬" }, { "input": "ruffs", "output": "⠗⠥⠖⠎" }, { "input": "rug", "output": "⠗⠥⠛" }, { "input": "rugby", "output": "⠗⠥⠛⠃⠽" }, { "input": "rugged", "output": "⠗⠥⠶⠫" }, { "input": "ruggeder", "output": "⠗⠥⠶⠫⠻" }, { "input": "ruggedest", "output": "⠗⠥⠶⠫⠑⠌" }, { "input": "ruggedly", "output": "⠗⠥⠶⠫⠇⠽" }, { "input": "ruggedness", "output": "⠗⠥⠶⠫⠰⠎" }, { "input": "rugs", "output": "⠗⠥⠛⠎" }, { "input": "ruin", "output": "⠗⠥⠔" }, { "input": "ruination", "output": "⠗⠥⠔â â °â " }, { "input": "ruined", "output": "⠗⠥⠔⠫" }, { "input": "ruing", "output": "⠗⠥⠬" }, { "input": "ruining", "output": "⠗⠥⠔⠬" }, { "input": "ruinous", "output": "⠗⠥⠔⠳⠎" }, { "input": "ruinously", "output": "⠗⠥⠔⠳⠎⠇⠽" }, { "input": "ruins", "output": "⠗⠥⠔⠎" }, { "input": "rule", "output": "⠗⠥⠇⠑" }, { "input": "ruled", "output": "⠗⠥⠇⠫" }, { "input": "ruler", "output": "⠗⠥⠇⠻" }, { "input": "rulers", "output": "⠗⠥⠇⠻⠎" }, { "input": "rules", "output": "⠗⠥⠇⠑⠎" }, { "input": "ruling", "output": "⠗⠥⠇⠬" }, { "input": "rulings", "output": "⠗⠥⠇⠬⠎" }, { "input": "rum", "output": "â —â ¥â " }, { "input": "rumba", "output": "â —â ¥â â ƒâ " }, { "input": "rumbaed", "output": "â —â ¥â â ƒâ â «" }, { "input": "rumbaing", "output": "â —â ¥â â ƒâ â ¬" }, { "input": "rumbas", "output": "â —â ¥â â ƒâ â Ž" }, { "input": "rumble", "output": "â —â ¥â â ƒâ ‡â ‘" }, { "input": "rumbled", "output": "â —â ¥â â ƒâ ‡â «" }, { "input": "rumbles", "output": "â —â ¥â â ƒâ ‡â ‘â Ž" }, { "input": "rumbling", "output": "â —â ¥â â ƒâ ‡â ¬" }, { "input": "rumblings", "output": "â —â ¥â â ƒâ ‡â ¬â Ž" }, { "input": "ruminant", "output": "â —â ¥â â ”â â â ž" }, { "input": "ruminants", "output": "â —â ¥â â ”â â â žâ Ž" }, { "input": "ruminate", "output": "â —â ¥â â ”â â žâ ‘" }, { "input": "ruminated", "output": "â —â ¥â â ”â â žâ «" }, { "input": "ruminates", "output": "â —â ¥â â ”â â žâ ‘â Ž" }, { "input": "ruminating", "output": "â —â ¥â â ”â â žâ ¬" }, { "input": "rumination", "output": "â —â ¥â â ”â â °â " }, { "input": "ruminations", "output": "â —â ¥â â ”â â °â â Ž" }, { "input": "rummage", "output": "â —â ¥â â â â ›â ‘" }, { "input": "rummaged", "output": "â —â ¥â â â â ›â «" }, { "input": "rummages", "output": "â —â ¥â â â â ›â ‘â Ž" }, { "input": "rummaging", "output": "â —â ¥â â â â ›â ¬" }, { "input": "rummer", "output": "â —â ¥â â â »" }, { "input": "rummest", "output": "â —â ¥â â â ‘â Œ" }, { "input": "rummy", "output": "â —â ¥â â â ½" }, { "input": "rumor", "output": "â —â ¥â â •â —" }, { "input": "rumored", "output": "â —â ¥â â •â —â «" }, { "input": "rumoring", "output": "â —â ¥â â •â —â ¬" }, { "input": "rumors", "output": "â —â ¥â â •â —â Ž" }, { "input": "rump", "output": "â —â ¥â â " }, { "input": "rumple", "output": "â —â ¥â â â ‡â ‘" }, { "input": "rumpled", "output": "â —â ¥â â â ‡â «" }, { "input": "rumples", "output": "â —â ¥â â â ‡â ‘â Ž" }, { "input": "rumpling", "output": "â —â ¥â â â ‡â ¬" }, { "input": "rumps", "output": "â —â ¥â â â Ž" }, { "input": "rumpus", "output": "â —â ¥â â â ¥â Ž" }, { "input": "rumpuses", "output": "â —â ¥â â â ¥â Žâ ‘â Ž" }, { "input": "rums", "output": "â —â ¥â â Ž" }, { "input": "run", "output": "â —â ¥â " }, { "input": "runabout", "output": "â —â ¥â â â ƒ" }, { "input": "runabouts", "output": "â —â ¥â â â ƒâ Ž" }, { "input": "runaround", "output": "â —â ¥â â œâ ¨â ™" }, { "input": "runarounds", "output": "â —â ¥â â œâ ¨â ™â Ž" }, { "input": "runaway", "output": "â —â ¥â â â ºâ â ½" }, { "input": "runaways", "output": "â —â ¥â â â ºâ â ½â Ž" }, { "input": "rundown", "output": "â —â ¥â â ™â ªâ " }, { "input": "rundowns", "output": "â —â ¥â â ™â ªâ â Ž" }, { "input": "rune", "output": "â —â ¥â â ‘" }, { "input": "runes", "output": "â —â ¥â â ‘â Ž" }, { "input": "rung", "output": "â —â ¥â â ›" }, { "input": "rungs", "output": "â —â ¥â â ›â Ž" }, { "input": "runnel", "output": "â —â ¥â â â ‘â ‡" }, { "input": "runnels", "output": "â —â ¥â â â ‘⠇⠎" }, { "input": "runner", "output": "â —â ¥â â â »" }, { "input": "runners", "output": "â —â ¥â â â »â Ž" }, { "input": "runnier", "output": "â —â ¥â â â Šâ »" }, { "input": "runniest", "output": "â —â ¥â â â Šâ ‘â Œ" }, { "input": "running", "output": "â —â ¥â â â ¬" }, { "input": "runny", "output": "â —â ¥â â â ½" }, { "input": "runoff", "output": "â —â ¥â â ·â ‹" }, { "input": "runoffs", "output": "â —â ¥â â ·â ‹â Ž" }, { "input": "runs", "output": "â —â ¥â â Ž" }, { "input": "runt", "output": "â —â ¥â â ž" }, { "input": "runts", "output": "â —â ¥â â žâ Ž" }, { "input": "runway", "output": "â —â ¥â â ºâ â ½" }, { "input": "runways", "output": "â —â ¥â â ºâ â ½â Ž" }, { "input": "rupee", "output": "â —â ¥â â ‘â ‘" }, { "input": "rupees", "output": "â —â ¥â â ‘â ‘â Ž" }, { "input": "rupture", "output": "â —â ¥â â žâ ¥â —â ‘" }, { "input": "ruptured", "output": "â —â ¥â â žâ ¥â —â «" }, { "input": "ruptures", "output": "â —â ¥â â žâ ¥â —â ‘â Ž" }, { "input": "rupturing", "output": "â —â ¥â â žâ ¥â —â ¬" }, { "input": "rural", "output": "⠗⠥⠗â â ‡" }, { "input": "ruse", "output": "⠗⠥⠎⠑" }, { "input": "ruses", "output": "⠗⠥⠎⠑⠎" }, { "input": "rush", "output": "⠗⠥⠩" }, { "input": "rushed", "output": "⠗⠥⠩⠫" }, { "input": "rushes", "output": "⠗⠥⠩⠑⠎" }, { "input": "rushing", "output": "⠗⠥⠩⠬" }, { "input": "rusk", "output": "⠗⠥⠎⠅" }, { "input": "rusks", "output": "⠗⠥⠎⠅⠎" }, { "input": "russet", "output": "⠗⠥⠎⠎⠑⠞" }, { "input": "russets", "output": "⠗⠥⠎⠎⠑⠞⠎" }, { "input": "rust", "output": "⠗⠥⠌" }, { "input": "rusted", "output": "⠗⠥⠌⠫" }, { "input": "rustic", "output": "⠗⠥⠌⠊⠉" }, { "input": "rustically", "output": "⠗⠥⠌⠊⠉â â ‡â ‡â ½" }, { "input": "rusticity", "output": "⠗⠥⠌⠊⠉⠰⠽" }, { "input": "rustics", "output": "⠗⠥⠌⠊⠉⠎" }, { "input": "rustier", "output": "⠗⠥⠌⠊⠻" }, { "input": "rustiest", "output": "⠗⠥⠌⠊⠑⠌" }, { "input": "rustiness", "output": "⠗⠥⠌⠊⠰⠎" }, { "input": "rusting", "output": "⠗⠥⠌⠬" }, { "input": "rustle", "output": "⠗⠥⠌⠇⠑" }, { "input": "rustled", "output": "⠗⠥⠌⠇⠫" }, { "input": "rustler", "output": "⠗⠥⠌⠇⠻" }, { "input": "rustlers", "output": "⠗⠥⠌⠇⠻⠎" }, { "input": "rustles", "output": "⠗⠥⠌⠇⠑⠎" }, { "input": "rustling", "output": "⠗⠥⠌⠇⠬" }, { "input": "rustproof", "output": "⠗⠥⠌â â —â •â ·" }, { "input": "rustproofed", "output": "⠗⠥⠌â â —â •â ·â «" }, { "input": "rustproofing", "output": "⠗⠥⠌â â —â •â ·â ¬" }, { "input": "rustproofs", "output": "⠗⠥⠌â â —â •â ·â Ž" }, { "input": "rusts", "output": "⠗⠥⠌⠎" }, { "input": "rusty", "output": "⠗⠥⠌⠽" }, { "input": "rut", "output": "⠗⠥⠞" }, { "input": "rutabaga", "output": "⠗⠥⠞â â ƒâ â ›â " }, { "input": "rutabagas", "output": "⠗⠥⠞â â ƒâ â ›â â Ž" }, { "input": "ruthless", "output": "⠗⠥⠹⠨⠎" }, { "input": "ruthlessly", "output": "⠗⠥⠹⠨⠎⠇⠽" }, { "input": "ruthlessness", "output": "⠗⠥⠹⠨⠎⠰⠎" }, { "input": "ruts", "output": "⠗⠥⠞⠎" }, { "input": "rutted", "output": "⠗⠥⠞⠞⠫" }, { "input": "rutting", "output": "⠗⠥⠞⠞⠬" }, { "input": "rye", "output": "⠗⠽⠑" }, { "input": "s", "output": "â °â Ž" }, { "input": "sabbatical", "output": "â Žâ â †â â žâ Šâ ‰â â ‡" }, { "input": "sabbaticals", "output": "â Žâ â †â â žâ Šâ ‰â â ‡â Ž" }, { "input": "saber", "output": "â Žâ â ƒâ »" }, { "input": "sabers", "output": "â Žâ â ƒâ »â Ž" }, { "input": "sable", "output": "â Žâ â ƒâ ‡â ‘" }, { "input": "sables", "output": "â Žâ â ƒâ ‡â ‘â Ž" }, { "input": "sabotage", "output": "â Žâ â ƒâ •â žâ â ›â ‘" }, { "input": "sabotaged", "output": "â Žâ â ƒâ •â žâ â ›â «" }, { "input": "sabotages", "output": "â Žâ â ƒâ •â žâ â ›â ‘â Ž" }, { "input": "sabotaging", "output": "â Žâ â ƒâ •â žâ â ›â ¬" }, { "input": "saboteur", "output": "â Žâ â ƒâ •⠞⠑⠥⠗" }, { "input": "saboteurs", "output": "â Žâ â ƒâ •⠞⠑⠥⠗⠎" }, { "input": "sabre", "output": "â Žâ â ƒâ —â ‘" }, { "input": "sabres", "output": "â Žâ â ƒâ —â ‘â Ž" }, { "input": "sac", "output": "â Žâ â ‰" }, { "input": "saccharin", "output": "â Žâ â ‰â ¡â œâ ”" }, { "input": "saccharine", "output": "â Žâ â ‰â ¡â œâ ”â ‘" }, { "input": "sacerdotal", "output": "â Žâ â ‰â »â ™â •â žâ â ‡" }, { "input": "sachem", "output": "â Žâ â ¡â ‘â " }, { "input": "sachems", "output": "â Žâ â ¡â ‘â â Ž" }, { "input": "sachet", "output": "â Žâ â ¡â ‘â ž" }, { "input": "sachets", "output": "â Žâ â ¡â ‘â žâ Ž" }, { "input": "sack", "output": "â Žâ â ‰â …" }, { "input": "sackcloth", "output": "â Žâ â ‰â …⠉⠇⠕⠹" }, { "input": "sacked", "output": "â Žâ â ‰â …â «" }, { "input": "sackful", "output": "â Žâ â ‰â …â °â ‡" }, { "input": "sackfuls", "output": "â Žâ â ‰â …⠰⠇⠎" }, { "input": "sacking", "output": "â Žâ â ‰â …â ¬" }, { "input": "sacks", "output": "â Žâ â ‰â …â Ž" }, { "input": "sacrament", "output": "â Žâ â ‰â —â â °â ž" }, { "input": "sacramental", "output": "â Žâ â ‰â —â â °â žâ â ‡" }, { "input": "sacraments", "output": "â Žâ â ‰â —â â °â žâ Ž" }, { "input": "sacred", "output": "â Žâ â ‰â —â «" }, { "input": "sacredly", "output": "â Žâ â ‰â —⠫⠇⠽" }, { "input": "sacredness", "output": "â Žâ â ‰â —â «â °â Ž" }, { "input": "sacrifice", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠑" }, { "input": "sacrificed", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠫" }, { "input": "sacrifices", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠑⠎" }, { "input": "sacrificial", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠊â â ‡" }, { "input": "sacrificing", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠬" }, { "input": "sacrilege", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠑" }, { "input": "sacrileges", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠑⠎" }, { "input": "sacrilegious", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠊⠳⠎" }, { "input": "sacristan", "output": "â Žâ â ‰â —â Šâ Œâ â " }, { "input": "sacristans", "output": "â Žâ â ‰â —â Šâ Œâ â â Ž" }, { "input": "sacristies", "output": "â Žâ â ‰â —⠊⠌⠊⠑⠎" }, { "input": "sacristy", "output": "â Žâ â ‰â —⠊⠌⠽" }, { "input": "sacrosanct", "output": "â Žâ â ‰â —â •â Žâ â â ‰â ž" }, { "input": "sacs", "output": "â Žâ â ‰â Ž" }, { "input": "sad", "output": "â Žâ â ™" }, { "input": "sadden", "output": "â Žâ â ™â ™â ¢" }, { "input": "saddened", "output": "â Žâ â ™â ™â ¢â «" }, { "input": "saddening", "output": "â Žâ â ™â ™â ¢â ¬" }, { "input": "saddens", "output": "â Žâ â ™â ™â ¢â Ž" }, { "input": "sadder", "output": "â Žâ â ™â ™â »" }, { "input": "saddest", "output": "â Žâ â ™â ™â ‘â Œ" }, { "input": "saddle", "output": "â Žâ â ™â ™â ‡â ‘" }, { "input": "saddlebag", "output": "â Žâ â ™â ™â ‡â ‘â ƒâ â ›" }, { "input": "saddlebags", "output": "â Žâ â ™â ™â ‡â ‘â ƒâ â ›â Ž" }, { "input": "saddled", "output": "â Žâ â ™â ™â ‡â «" }, { "input": "saddles", "output": "â Žâ â ™â ™â ‡â ‘â Ž" }, { "input": "saddling", "output": "â Žâ â ™â ™â ‡â ¬" }, { "input": "sades", "output": "â Žâ â ™â ‘â Ž" }, { "input": "sadism", "output": "â Žâ â ™â Šâ Žâ " }, { "input": "sadist", "output": "â Žâ â ™â Šâ Œ" }, { "input": "sadistic", "output": "â Žâ â ™â Šâ Œâ Šâ ‰" }, { "input": "sadistically", "output": "â Žâ â ™â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "sadists", "output": "â Žâ â ™â Šâ Œâ Ž" }, { "input": "sadly", "output": "â Žâ â ™â ‡â ½" }, { "input": "sadness", "output": "â Žâ â ™â °â Ž" }, { "input": "safari", "output": "â Žâ â ‹â œâ Š" }, { "input": "safaried", "output": "â Žâ â ‹â œâ Šâ «" }, { "input": "safariing", "output": "â Žâ â ‹â œâ Šâ ¬" }, { "input": "safaris", "output": "â Žâ â ‹â œâ Šâ Ž" }, { "input": "safe", "output": "â Žâ â ‹â ‘" }, { "input": "safeguard", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙" }, { "input": "safeguarded", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠫" }, { "input": "safeguarding", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠬" }, { "input": "safeguards", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠎" }, { "input": "safekeeping", "output": "â Žâ â ‹â ‘â …â ‘â ‘â â ¬" }, { "input": "safely", "output": "â Žâ â ‹â ‘⠇⠽" }, { "input": "safeness", "output": "â Žâ â ‹â ‘â °â Ž" }, { "input": "safer", "output": "â Žâ â ‹â »" }, { "input": "safes", "output": "â Žâ â ‹â ‘â Ž" }, { "input": "safest", "output": "â Žâ â ‹â ‘â Œ" }, { "input": "safeties", "output": "â Žâ â ‹â ‘â žâ Šâ ‘â Ž" }, { "input": "safety", "output": "â Žâ â ‹â ‘â žâ ½" }, { "input": "safflower", "output": "â Žâ â –⠇⠪⠻" }, { "input": "safflowers", "output": "â Žâ â –⠇⠪⠻⠎" }, { "input": "saffron", "output": "â Žâ â –â —â •â " }, { "input": "saffrons", "output": "â Žâ â –â —â •â â Ž" }, { "input": "sag", "output": "â Žâ â ›" }, { "input": "saga", "output": "â Žâ â ›â " }, { "input": "sagacious", "output": "â Žâ â ›â â ‰â Šâ ³â Ž" }, { "input": "sagacity", "output": "â Žâ â ›â â ‰â °â ½" }, { "input": "sagas", "output": "â Žâ â ›â â Ž" }, { "input": "sage", "output": "â Žâ â ›â ‘" }, { "input": "sagebrush", "output": "â Žâ â ›â ‘⠃⠗⠥⠩" }, { "input": "sager", "output": "â Žâ â ›â »" }, { "input": "sages", "output": "â Žâ â ›â ‘â Ž" }, { "input": "sagest", "output": "â Žâ â ›â ‘â Œ" }, { "input": "sagged", "output": "â Žâ â ¶â «" }, { "input": "sagging", "output": "â Žâ â ¶â ¬" }, { "input": "sago", "output": "â Žâ â ›â •" }, { "input": "sags", "output": "â Žâ â ›â Ž" }, { "input": "saguaro", "output": "â Žâ â ›â ¥â œâ •" }, { "input": "saguaros", "output": "â Žâ â ›â ¥â œâ •â Ž" }, { "input": "sahib", "output": "â Žâ â “â Šâ ƒ" }, { "input": "sahibs", "output": "â Žâ â “⠊⠃⠎" }, { "input": "said", "output": "â Žâ ™" }, { "input": "sail", "output": "â Žâ â Šâ ‡" }, { "input": "sailboard", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙" }, { "input": "sailboards", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠎" }, { "input": "sailboat", "output": "â Žâ â Šâ ‡â ƒâ •â â ž" }, { "input": "sailboats", "output": "â Žâ â Šâ ‡â ƒâ •â â žâ Ž" }, { "input": "sailcloth", "output": "â Žâ â Šâ ‡â ‰â ‡â •â ¹" }, { "input": "sailed", "output": "â Žâ â Šâ ‡â «" }, { "input": "sailfish", "output": "â Žâ â Šâ ‡â ‹â Šâ ©" }, { "input": "sailfishes", "output": "â Žâ â Šâ ‡â ‹â Šâ ©â ‘â Ž" }, { "input": "sailing", "output": "â Žâ â Šâ ‡â ¬" }, { "input": "sailings", "output": "â Žâ â Šâ ‡â ¬â Ž" }, { "input": "sailor", "output": "â Žâ â Šâ ‡â •â —" }, { "input": "sailors", "output": "â Žâ â Šâ ‡â •â —â Ž" }, { "input": "sails", "output": "â Žâ â Šâ ‡â Ž" }, { "input": "saint", "output": "â Žâ â ”â ž" }, { "input": "sainthood", "output": "â Žâ â ”â žâ “â •â •â ™" }, { "input": "saintlier", "output": "â Žâ â ”⠞⠇⠊⠻" }, { "input": "saintliest", "output": "â Žâ â ”⠞⠇⠊⠑⠌" }, { "input": "saintliness", "output": "â Žâ â ”⠞⠇⠊⠰⠎" }, { "input": "saintly", "output": "â Žâ â ”⠞⠇⠽" }, { "input": "saints", "output": "â Žâ â ”â žâ Ž" }, { "input": "saith", "output": "â Žâ â Šâ ¹" }, { "input": "sake", "output": "â Žâ â …â ‘" }, { "input": "saki", "output": "â Žâ â …â Š" }, { "input": "salaam", "output": "â Žâ â ‡â â â " }, { "input": "salaamed", "output": "â Žâ â ‡â â â â «" }, { "input": "salaaming", "output": "â Žâ â ‡â â â â ¬" }, { "input": "salaams", "output": "â Žâ â ‡â â â â Ž" }, { "input": "salable", "output": "â Žâ â ‡â â ƒâ ‡â ‘" }, { "input": "salacious", "output": "â Žâ â ‡â â ‰â Šâ ³â Ž" }, { "input": "salaciously", "output": "â Žâ â ‡â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "salaciousness", "output": "â Žâ â ‡â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "salad", "output": "â Žâ â ‡â â ™" }, { "input": "salads", "output": "â Žâ â ‡â â ™â Ž" }, { "input": "salamander", "output": "â Žâ â ‡â â â ¯â »" }, { "input": "salamanders", "output": "â Žâ â ‡â â â ¯â »â Ž" }, { "input": "salami", "output": "â Žâ â ‡â â â Š" }, { "input": "salamis", "output": "â Žâ â ‡â â â Šâ Ž" }, { "input": "salaried", "output": "â Žâ â ‡â œâ Šâ «" }, { "input": "salaries", "output": "â Žâ â ‡â œâ Šâ ‘â Ž" }, { "input": "salary", "output": "â Žâ â ‡â œâ ½" }, { "input": "sale", "output": "â Žâ â ‡â ‘" }, { "input": "saleable", "output": "â Žâ â ‡â ‚⠃⠇⠑" }, { "input": "sales", "output": "â Žâ â ‡â ‘â Ž" }, { "input": "salesclerk", "output": "â Žâ â ‡â ‘⠎⠉⠇⠻⠅" }, { "input": "salesclerks", "output": "â Žâ â ‡â ‘⠎⠉⠇⠻⠅⠎" }, { "input": "salesgirl", "output": "â Žâ â ‡â ‘⠎⠛⠊⠗⠇" }, { "input": "salesgirls", "output": "â Žâ â ‡â ‘⠎⠛⠊⠗⠇⠎" }, { "input": "salesman", "output": "â Žâ â ‡â ‘â Žâ â â " }, { "input": "salesmanship", "output": "â Žâ â ‡â ‘â Žâ â â â ©â Šâ " }, { "input": "salesmen", "output": "â Žâ â ‡â ‘â Žâ â ¢" }, { "input": "salespeople", "output": "â Žâ â ‡â ‘â Žâ â ‘â •â â ‡â ‘" }, { "input": "salesperson", "output": "â Žâ â ‡â ‘â Žâ â »â Žâ •â " }, { "input": "salespersons", "output": "â Žâ â ‡â ‘â Žâ â »â Žâ •â â Ž" }, { "input": "saleswoman", "output": "â Žâ â ‡â ‘⠎⠺⠕â â â " }, { "input": "saleswomen", "output": "â Žâ â ‡â ‘⠎⠺⠕â â ¢" }, { "input": "salient", "output": "â Žâ â ‡â Šâ ¢â ž" }, { "input": "salients", "output": "â Žâ â ‡â Šâ ¢â žâ Ž" }, { "input": "saline", "output": "â Žâ â ‡â ”â ‘" }, { "input": "salines", "output": "â Žâ â ‡â ”â ‘â Ž" }, { "input": "salinity", "output": "â Žâ â ‡â ”â °â ½" }, { "input": "saliva", "output": "â Žâ â ‡â Šâ §â " }, { "input": "salivary", "output": "â Žâ â ‡â Šâ §â œâ ½" }, { "input": "salivate", "output": "â Žâ â ‡â Šâ §â â žâ ‘" }, { "input": "salivated", "output": "â Žâ â ‡â Šâ §â â žâ «" }, { "input": "salivates", "output": "â Žâ â ‡â Šâ §â â žâ ‘â Ž" }, { "input": "salivating", "output": "â Žâ â ‡â Šâ §â â žâ ¬" }, { "input": "salivation", "output": "â Žâ â ‡â Šâ §â â °â " }, { "input": "sallied", "output": "â Žâ â ‡â ‡â Šâ «" }, { "input": "sallies", "output": "â Žâ â ‡â ‡â Šâ ‘â Ž" }, { "input": "sallow", "output": "â Žâ â ‡â ‡â ª" }, { "input": "sallower", "output": "â Žâ â ‡â ‡â ªâ »" }, { "input": "sallowest", "output": "â Žâ â ‡â ‡â ªâ ‘â Œ" }, { "input": "sally", "output": "â Žâ â ‡â ‡â ½" }, { "input": "sallying", "output": "â Žâ â ‡â ‡â ½â ¬" }, { "input": "salmon", "output": "â Žâ â ‡â â •â " }, { "input": "salmonella", "output": "â Žâ â ‡â â •â â ‘⠇⠇â " }, { "input": "salmonellae", "output": "â Žâ â ‡â â •â â ‘⠇⠇â â ‘" }, { "input": "salmonellas", "output": "â Žâ â ‡â â •â â ‘⠇⠇â â Ž" }, { "input": "salmons", "output": "â Žâ â ‡â â •â â Ž" }, { "input": "salon", "output": "â Žâ â ‡â •â " }, { "input": "salons", "output": "â Žâ â ‡â •â â Ž" }, { "input": "saloon", "output": "â Žâ â ‡â •â •â " }, { "input": "saloons", "output": "â Žâ â ‡â •â •â â Ž" }, { "input": "salsa", "output": "â Žâ â ‡â Žâ " }, { "input": "salsas", "output": "â Žâ â ‡â Žâ â Ž" }, { "input": "salt", "output": "â Žâ â ‡â ž" }, { "input": "saltcellar", "output": "â Žâ â ‡â žâ ‰â ‘⠇⠇⠜" }, { "input": "saltcellars", "output": "â Žâ â ‡â žâ ‰â ‘⠇⠇⠜⠎" }, { "input": "salted", "output": "â Žâ â ‡â žâ «" }, { "input": "salter", "output": "â Žâ â ‡â žâ »" }, { "input": "saltest", "output": "â Žâ â ‡â žâ ‘â Œ" }, { "input": "saltier", "output": "â Žâ â ‡â žâ Šâ »" }, { "input": "saltiest", "output": "â Žâ â ‡â žâ Šâ ‘â Œ" }, { "input": "saltine", "output": "â Žâ â ‡â žâ ”â ‘" }, { "input": "saltines", "output": "â Žâ â ‡â žâ ”â ‘â Ž" }, { "input": "saltiness", "output": "â Žâ â ‡â žâ Šâ °â Ž" }, { "input": "salting", "output": "â Žâ â ‡â žâ ¬" }, { "input": "saltpeter", "output": "â Žâ â ‡â žâ â ‘â žâ »" }, { "input": "saltpetre", "output": "â Žâ â ‡â žâ â ‘â žâ —â ‘" }, { "input": "salts", "output": "â Žâ â ‡â žâ Ž" }, { "input": "saltshaker", "output": "â Žâ â ‡â žâ ©â â …â »" }, { "input": "saltshakers", "output": "â Žâ â ‡â žâ ©â â …⠻⠎" }, { "input": "saltwater", "output": "â Žâ â ‡â žâ ºâ â žâ »" }, { "input": "salty", "output": "â Žâ â ‡â žâ ½" }, { "input": "salubrious", "output": "â Žâ â ‡â ¥â ƒâ —⠊⠳⠎" }, { "input": "salutary", "output": "â Žâ â ‡â ¥â žâ œâ ½" }, { "input": "salutation", "output": "â Žâ â ‡â ¥â žâ â °â " }, { "input": "salutations", "output": "â Žâ â ‡â ¥â žâ â °â â Ž" }, { "input": "salute", "output": "â Žâ â ‡â ¥â žâ ‘" }, { "input": "saluted", "output": "â Žâ â ‡â ¥â žâ «" }, { "input": "salutes", "output": "â Žâ â ‡â ¥â žâ ‘â Ž" }, { "input": "saluting", "output": "â Žâ â ‡â ¥â žâ ¬" }, { "input": "salvage", "output": "â Žâ â ‡â §â â ›â ‘" }, { "input": "salvageable", "output": "â Žâ â ‡â §â â ›â ‚⠃⠇⠑" }, { "input": "salvaged", "output": "â Žâ â ‡â §â â ›â «" }, { "input": "salvages", "output": "â Žâ â ‡â §â â ›â ‘â Ž" }, { "input": "salvaging", "output": "â Žâ â ‡â §â â ›â ¬" }, { "input": "salvation", "output": "â Žâ â ‡â §â â °â " }, { "input": "salve", "output": "â Žâ â ‡â §â ‘" }, { "input": "salved", "output": "â Žâ â ‡â §â «" }, { "input": "salver", "output": "â Žâ â ‡â §â »" }, { "input": "salvers", "output": "â Žâ â ‡â §â »â Ž" }, { "input": "salves", "output": "â Žâ â ‡â §â ‘â Ž" }, { "input": "salving", "output": "â Žâ â ‡â §â ¬" }, { "input": "salvo", "output": "â Žâ â ‡â §â •" }, { "input": "salvoes", "output": "â Žâ â ‡â §â •â ‘â Ž" }, { "input": "salvos", "output": "â Žâ â ‡â §â •â Ž" }, { "input": "samba", "output": "â Žâ â â ƒâ " }, { "input": "sambaed", "output": "â Žâ â â ƒâ â «" }, { "input": "sambaing", "output": "â Žâ â â ƒâ â ¬" }, { "input": "sambas", "output": "â Žâ â â ƒâ â Ž" }, { "input": "same", "output": "â Žâ â â ‘" }, { "input": "sameness", "output": "â Žâ â â ‘â °â Ž" }, { "input": "sames", "output": "â Žâ â â ‘â Ž" }, { "input": "samovar", "output": "â Žâ â â •â §â œ" }, { "input": "samovars", "output": "â Žâ â â •⠧⠜⠎" }, { "input": "sampan", "output": "â Žâ â â â â " }, { "input": "sampans", "output": "â Žâ â â â â â Ž" }, { "input": "sample", "output": "â Žâ â â â ‡â ‘" }, { "input": "sampled", "output": "â Žâ â â â ‡â «" }, { "input": "sampler", "output": "â Žâ â â â ‡â »" }, { "input": "samplers", "output": "â Žâ â â â ‡â »â Ž" }, { "input": "samples", "output": "â Žâ â â â ‡â ‘â Ž" }, { "input": "sampling", "output": "â Žâ â â â ‡â ¬" }, { "input": "samurai", "output": "â Žâ â â ¥â —â â Š" }, { "input": "sanatoria", "output": "â Žâ â â â žâ •â —â Šâ " }, { "input": "sanatorium", "output": "â Žâ â â â žâ •â —â Šâ ¥â " }, { "input": "sanatoriums", "output": "â Žâ â â â žâ •â —â Šâ ¥â â Ž" }, { "input": "sancta", "output": "â Žâ â â ‰â žâ " }, { "input": "sanctification", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "sanctified", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ «" }, { "input": "sanctifies", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "sanctify", "output": "â Žâ â â ‰â žâ Šâ ‹â ½" }, { "input": "sanctifying", "output": "â Žâ â â ‰â žâ Šâ ‹â ½â ¬" }, { "input": "sanctimonious", "output": "â Žâ â â ‰â žâ Šâ â •â â Šâ ³â Ž" }, { "input": "sanctimoniously", "output": "â Žâ â â ‰â žâ Šâ â •â â Šâ ³â Žâ ‡â ½" }, { "input": "sanction", "output": "â Žâ â â ‰â °â " }, { "input": "sanctioned", "output": "â Žâ â â ‰â °â â «" }, { "input": "sanctioning", "output": "â Žâ â â ‰â °â â ¬" }, { "input": "sanctions", "output": "â Žâ â â ‰â °â â Ž" }, { "input": "sanctity", "output": "â Žâ â â ‰â žâ °â ½" }, { "input": "sanctuaries", "output": "â Žâ â â ‰â žâ ¥â œâ Šâ ‘â Ž" }, { "input": "sanctuary", "output": "â Žâ â â ‰â žâ ¥â œâ ½" }, { "input": "sanctum", "output": "â Žâ â â ‰â žâ ¥â " }, { "input": "sanctums", "output": "â Žâ â â ‰â žâ ¥â â Ž" }, { "input": "sand", "output": "â Žâ ¯" }, { "input": "sandal", "output": "â Žâ ¯â â ‡" }, { "input": "sandals", "output": "â Žâ ¯â â ‡â Ž" }, { "input": "sandalwood", "output": "â Žâ ¯â â ‡â ºâ •â •â ™" }, { "input": "sandbag", "output": "⠎⠯⠃â â ›" }, { "input": "sandbagged", "output": "⠎⠯⠃â â ¶â «" }, { "input": "sandbagging", "output": "⠎⠯⠃â â ¶â ¬" }, { "input": "sandbags", "output": "⠎⠯⠃â â ›â Ž" }, { "input": "sandbank", "output": "⠎⠯⠃â â â …" }, { "input": "sandbanks", "output": "⠎⠯⠃â â â …â Ž" }, { "input": "sandbar", "output": "⠎⠯⠃⠜" }, { "input": "sandbars", "output": "⠎⠯⠃⠜⠎" }, { "input": "sandblast", "output": "⠎⠯⠃⠇â â Œ" }, { "input": "sandblasted", "output": "⠎⠯⠃⠇â â Œâ «" }, { "input": "sandblaster", "output": "⠎⠯⠃⠇â â Œâ »" }, { "input": "sandblasters", "output": "⠎⠯⠃⠇â â Œâ »â Ž" }, { "input": "sandblasting", "output": "⠎⠯⠃⠇â â Œâ ¬" }, { "input": "sandblasts", "output": "⠎⠯⠃⠇â â Œâ Ž" }, { "input": "sandbox", "output": "⠎⠯⠃⠕⠭" }, { "input": "sandboxes", "output": "⠎⠯⠃⠕⠭⠑⠎" }, { "input": "sandcastle", "output": "⠎⠯⠉â â Œâ ‡â ‘" }, { "input": "sandcastles", "output": "⠎⠯⠉â â Œâ ‡â ‘â Ž" }, { "input": "sanded", "output": "⠎⠯⠫" }, { "input": "sander", "output": "⠎⠯⠻" }, { "input": "sanders", "output": "⠎⠯⠻⠎" }, { "input": "sandhog", "output": "⠎⠯⠓⠕⠛" }, { "input": "sandhogs", "output": "⠎⠯⠓⠕⠛⠎" }, { "input": "sandier", "output": "⠎⠯⠊⠻" }, { "input": "sandiest", "output": "⠎⠯⠊⠑⠌" }, { "input": "sandiness", "output": "⠎⠯⠊⠰⠎" }, { "input": "sanding", "output": "⠎⠯⠬" }, { "input": "sandlot", "output": "⠎⠯⠇⠕⠞" }, { "input": "sandlots", "output": "⠎⠯⠇⠕⠞⠎" }, { "input": "sandman", "output": "â Žâ ¯â â â " }, { "input": "sandmen", "output": "â Žâ ¯â â ¢" }, { "input": "sandpaper", "output": "â Žâ ¯â â â â »" }, { "input": "sandpapered", "output": "â Žâ ¯â â â â »â «" }, { "input": "sandpapering", "output": "â Žâ ¯â â â â »â ¬" }, { "input": "sandpapers", "output": "â Žâ ¯â â â â »â Ž" }, { "input": "sandpiper", "output": "â Žâ ¯â â Šâ â »" }, { "input": "sandpipers", "output": "â Žâ ¯â â Šâ â »â Ž" }, { "input": "sands", "output": "⠎⠯⠎" }, { "input": "sandstone", "output": "⠎⠯⠌â â •" }, { "input": "sandstorm", "output": "⠎⠯⠌⠕⠗â " }, { "input": "sandstorms", "output": "⠎⠯⠌⠕⠗â â Ž" }, { "input": "sandwich", "output": "⠎⠯⠺⠊⠡" }, { "input": "sandwiched", "output": "⠎⠯⠺⠊⠡⠫" }, { "input": "sandwiches", "output": "⠎⠯⠺⠊⠡⠑⠎" }, { "input": "sandwiching", "output": "⠎⠯⠺⠊⠡⠬" }, { "input": "sandy", "output": "⠎⠯⠽" }, { "input": "sane", "output": "â Žâ â â ‘" }, { "input": "sanely", "output": "â Žâ â â ‘⠇⠽" }, { "input": "saner", "output": "â Žâ â â »" }, { "input": "sanest", "output": "â Žâ â â ‘â Œ" }, { "input": "sang", "output": "â Žâ â â ›" }, { "input": "sangfroid", "output": "â Žâ â â ›â ‹â —â •â Šâ ™" }, { "input": "sangs", "output": "â Žâ â â ›â Ž" }, { "input": "sanguinary", "output": "â Žâ â â ›â ¥â ”⠜⠽" }, { "input": "sanguine", "output": "â Žâ â â ›â ¥â ”â ‘" }, { "input": "sanitaria", "output": "â Žâ â â Šâ žâ œâ Šâ " }, { "input": "sanitarium", "output": "â Žâ â â Šâ žâ œâ Šâ ¥â " }, { "input": "sanitariums", "output": "â Žâ â â Šâ žâ œâ Šâ ¥â â Ž" }, { "input": "sanitary", "output": "â Žâ â â Šâ žâ œâ ½" }, { "input": "sanitation", "output": "â Žâ â â Šâ žâ â °â " }, { "input": "sanitize", "output": "â Žâ â â Šâ žâ Šâ µâ ‘" }, { "input": "sanitized", "output": "â Žâ â â Šâ žâ Šâ µâ «" }, { "input": "sanitizes", "output": "â Žâ â â Šâ žâ Šâ µâ ‘â Ž" }, { "input": "sanitizing", "output": "â Žâ â â Šâ žâ Šâ µâ ¬" }, { "input": "sanity", "output": "â Žâ â â °â ½" }, { "input": "sank", "output": "â Žâ â â …" }, { "input": "sans", "output": "â Žâ â â Ž" }, { "input": "sanserif", "output": "â Žâ â â Žâ »â Šâ ‹" }, { "input": "sap", "output": "â Žâ â " }, { "input": "sapience", "output": "â Žâ â â Šâ °â ‘" }, { "input": "sapient", "output": "â Žâ â â Šâ ¢â ž" }, { "input": "sapling", "output": "â Žâ â â ‡â ¬" }, { "input": "saplings", "output": "â Žâ â â ‡â ¬â Ž" }, { "input": "sapped", "output": "â Žâ â â â «" }, { "input": "sapphire", "output": "â Žâ â â â “â Šâ —â ‘" }, { "input": "sapphires", "output": "â Žâ â â â “â Šâ —â ‘â Ž" }, { "input": "sappier", "output": "â Žâ â â â Šâ »" }, { "input": "sappiest", "output": "â Žâ â â â Šâ ‘â Œ" }, { "input": "sapping", "output": "â Žâ â â â ¬" }, { "input": "sappy", "output": "â Žâ â â â ½" }, { "input": "saprophyte", "output": "â Žâ â â —â •â â “⠽⠞⠑" }, { "input": "saprophytes", "output": "â Žâ â â —â •â â “⠽⠞⠑⠎" }, { "input": "saps", "output": "â Žâ â â Ž" }, { "input": "sapsucker", "output": "â Žâ â â Žâ ¥â ‰â …â »" }, { "input": "sapsuckers", "output": "â Žâ â â Žâ ¥â ‰â …⠻⠎" }, { "input": "sarape", "output": "â Žâ œâ â â ‘" }, { "input": "sarapes", "output": "â Žâ œâ â â ‘â Ž" }, { "input": "sarcasm", "output": "⠎⠜⠉â â Žâ " }, { "input": "sarcasms", "output": "⠎⠜⠉â â Žâ â Ž" }, { "input": "sarcastic", "output": "⠎⠜⠉â â Œâ Šâ ‰" }, { "input": "sarcastically", "output": "⠎⠜⠉â â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "sarcoma", "output": "⠎⠜⠉⠕â â " }, { "input": "sarcomas", "output": "⠎⠜⠉⠕â â â Ž" }, { "input": "sarcomata", "output": "⠎⠜⠉⠕â â â žâ " }, { "input": "sarcophagi", "output": "⠎⠜⠉⠕â â “â â ›â Š" }, { "input": "sarcophagus", "output": "⠎⠜⠉⠕â â “â â ›â ¥â Ž" }, { "input": "sarcophaguses", "output": "⠎⠜⠉⠕â â “â â ›â ¥â Žâ ‘â Ž" }, { "input": "sardine", "output": "⠎⠜⠙⠔⠑" }, { "input": "sardines", "output": "⠎⠜⠙⠔⠑⠎" }, { "input": "sardonic", "output": "⠎⠜⠙⠕â â Šâ ‰" }, { "input": "sardonically", "output": "⠎⠜⠙⠕â â Šâ ‰â â ‡â ‡â ½" }, { "input": "saree", "output": "⠎⠜⠑⠑" }, { "input": "sarees", "output": "⠎⠜⠑⠑⠎" }, { "input": "sari", "output": "⠎⠜⠊" }, { "input": "saris", "output": "⠎⠜⠊⠎" }, { "input": "sarong", "output": "⠎⠜⠰⠛" }, { "input": "sarongs", "output": "⠎⠜⠰⠛⠎" }, { "input": "sarsaparilla", "output": "⠎⠜⠎â â â œâ Šâ ‡â ‡â " }, { "input": "sarsaparillas", "output": "⠎⠜⠎â â â œâ Šâ ‡â ‡â â Ž" }, { "input": "sartorial", "output": "⠎⠜⠞⠕⠗⠊â â ‡" }, { "input": "sartorially", "output": "⠎⠜⠞⠕⠗⠊â â ‡â ‡â ½" }, { "input": "sash", "output": "â Žâ â ©" }, { "input": "sashay", "output": "â Žâ â ©â â ½" }, { "input": "sashayed", "output": "â Žâ â ©â â ½â «" }, { "input": "sashaying", "output": "â Žâ â ©â â ½â ¬" }, { "input": "sashays", "output": "â Žâ â ©â â ½â Ž" }, { "input": "sashes", "output": "â Žâ â ©â ‘â Ž" }, { "input": "sass", "output": "â Žâ â Žâ Ž" }, { "input": "sassafras", "output": "â Žâ â Žâ Žâ â ‹â —â â Ž" }, { "input": "sassafrases", "output": "â Žâ â Žâ Žâ â ‹â —â â Žâ ‘â Ž" }, { "input": "sassed", "output": "â Žâ â Žâ Žâ «" }, { "input": "sasses", "output": "â Žâ â Žâ Žâ ‘â Ž" }, { "input": "sassier", "output": "â Žâ â Žâ Žâ Šâ »" }, { "input": "sassiest", "output": "â Žâ â Žâ Žâ Šâ ‘â Œ" }, { "input": "sassing", "output": "â Žâ â Žâ Žâ ¬" }, { "input": "sassy", "output": "â Žâ â Žâ Žâ ½" }, { "input": "sat", "output": "â Žâ â ž" }, { "input": "satanic", "output": "â Žâ â žâ â â Šâ ‰" }, { "input": "satanically", "output": "â Žâ â žâ â â Šâ ‰â â ‡â ‡â ½" }, { "input": "satanism", "output": "â Žâ â žâ â â Šâ Žâ " }, { "input": "satchel", "output": "â Žâ â žâ ¡â ‘â ‡" }, { "input": "satchels", "output": "â Žâ â žâ ¡â ‘⠇⠎" }, { "input": "sate", "output": "â Žâ â žâ ‘" }, { "input": "sated", "output": "â Žâ â žâ «" }, { "input": "sateen", "output": "â Žâ â žâ ‘â ¢" }, { "input": "satellite", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠑" }, { "input": "satellited", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠫" }, { "input": "satellites", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠑⠎" }, { "input": "satelliting", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠬" }, { "input": "sates", "output": "â Žâ â žâ ‘â Ž" }, { "input": "satiate", "output": "â Žâ â žâ Šâ â žâ ‘" }, { "input": "satiated", "output": "â Žâ â žâ Šâ â žâ «" }, { "input": "satiates", "output": "â Žâ â žâ Šâ â žâ ‘â Ž" }, { "input": "satiating", "output": "â Žâ â žâ Šâ â žâ ¬" }, { "input": "satiety", "output": "â Žâ â žâ Šâ ‘â žâ ½" }, { "input": "satin", "output": "â Žâ â žâ ”" }, { "input": "sating", "output": "â Žâ â žâ ¬" }, { "input": "satinwood", "output": "â Žâ â žâ ”⠺⠕⠕⠙" }, { "input": "satinwoods", "output": "â Žâ â žâ ”⠺⠕⠕⠙⠎" }, { "input": "satiny", "output": "â Žâ â žâ ”â ½" }, { "input": "satire", "output": "â Žâ â žâ Šâ —â ‘" }, { "input": "satires", "output": "â Žâ â žâ Šâ —â ‘â Ž" }, { "input": "satirical", "output": "â Žâ â žâ Šâ —â Šâ ‰â â ‡" }, { "input": "satirically", "output": "â Žâ â žâ Šâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "satirist", "output": "â Žâ â žâ Šâ —â Šâ Œ" }, { "input": "satirists", "output": "â Žâ â žâ Šâ —⠊⠌⠎" }, { "input": "satirize", "output": "â Žâ â žâ Šâ —⠊⠵⠑" }, { "input": "satirized", "output": "â Žâ â žâ Šâ —⠊⠵⠫" }, { "input": "satirizes", "output": "â Žâ â žâ Šâ —⠊⠵⠑⠎" }, { "input": "satirizing", "output": "â Žâ â žâ Šâ —⠊⠵⠬" }, { "input": "satisfaction", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â °â " }, { "input": "satisfactions", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â °â â Ž" }, { "input": "satisfactorily", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •⠗⠊⠇⠽" }, { "input": "satisfactory", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •â —â ½" }, { "input": "satisfied", "output": "â Žâ â žâ Šâ Žâ ‹â Šâ «" }, { "input": "satisfies", "output": "â Žâ â žâ Šâ Žâ ‹â Šâ ‘â Ž" }, { "input": "satisfy", "output": "â Žâ â žâ Šâ Žâ ‹â ½" }, { "input": "satisfying", "output": "â Žâ â žâ Šâ Žâ ‹â ½â ¬" }, { "input": "satrap", "output": "â Žâ â žâ —â â " }, { "input": "satraps", "output": "â Žâ â žâ —â â â Ž" }, { "input": "saturate", "output": "â Žâ â žâ ¥â —â â žâ ‘" }, { "input": "saturated", "output": "â Žâ â žâ ¥â —â â žâ «" }, { "input": "saturates", "output": "â Žâ â žâ ¥â —â â žâ ‘â Ž" }, { "input": "saturating", "output": "â Žâ â žâ ¥â —â â žâ ¬" }, { "input": "saturation", "output": "â Žâ â žâ ¥â —â â °â " }, { "input": "saturnine", "output": "â Žâ â žâ ¥â —â â ”â ‘" }, { "input": "satyr", "output": "â Žâ â žâ ½â —" }, { "input": "satyrs", "output": "â Žâ â žâ ½â —â Ž" }, { "input": "sauce", "output": "â Žâ â ¥â ‰â ‘" }, { "input": "sauced", "output": "â Žâ â ¥â ‰â «" }, { "input": "saucepan", "output": "â Žâ â ¥â ‰â ‘â â â " }, { "input": "saucepans", "output": "â Žâ â ¥â ‰â ‘â â â â Ž" }, { "input": "saucer", "output": "â Žâ â ¥â ‰â »" }, { "input": "saucers", "output": "â Žâ â ¥â ‰â »â Ž" }, { "input": "sauces", "output": "â Žâ â ¥â ‰â ‘â Ž" }, { "input": "saucier", "output": "â Žâ â ¥â ‰â Šâ »" }, { "input": "sauciest", "output": "â Žâ â ¥â ‰â Šâ ‘â Œ" }, { "input": "saucily", "output": "â Žâ â ¥â ‰â Šâ ‡â ½" }, { "input": "sauciness", "output": "â Žâ â ¥â ‰â Šâ °â Ž" }, { "input": "saucing", "output": "â Žâ â ¥â ‰â ¬" }, { "input": "saucy", "output": "â Žâ â ¥â ‰â ½" }, { "input": "sauerkraut", "output": "â Žâ â ¥â »â …â —â â ¥â ž" }, { "input": "sauna", "output": "â Žâ â ¥â â " }, { "input": "saunaed", "output": "â Žâ â ¥â â â «" }, { "input": "saunaing", "output": "â Žâ â ¥â â â ¬" }, { "input": "saunas", "output": "â Žâ â ¥â â â Ž" }, { "input": "saunter", "output": "â Žâ â ¥â â žâ »" }, { "input": "sauntered", "output": "â Žâ â ¥â â žâ »â «" }, { "input": "sauntering", "output": "â Žâ â ¥â â žâ »â ¬" }, { "input": "saunters", "output": "â Žâ â ¥â â žâ »â Ž" }, { "input": "sausage", "output": "â Žâ â ¥â Žâ â ›â ‘" }, { "input": "sausages", "output": "â Žâ â ¥â Žâ â ›â ‘â Ž" }, { "input": "sauted", "output": "â Žâ â ¥â žâ «" }, { "input": "sauté", "output": "â Žâ â ¥â žâ  â ˜â »â â ˜â ‰" }, { "input": "sautéed", "output": "â Žâ â ¥â žâ  â ˜â »â â ˜â ‰â «" }, { "input": "sautéing", "output": "â Žâ â ¥â žâ  â ˜â »â â ˜â ‰â ”â ›" }, { "input": "sautés", "output": "â Žâ â ¥â žâ  â ˜â »â â ˜â ‰â Ž" }, { "input": "savage", "output": "â Žâ â §â â ›â ‘" }, { "input": "savaged", "output": "â Žâ â §â â ›â «" }, { "input": "savagely", "output": "â Žâ â §â â ›â ‘⠇⠽" }, { "input": "savageness", "output": "â Žâ â §â â ›â ‘â °â Ž" }, { "input": "savager", "output": "â Žâ â §â â ›â »" }, { "input": "savageries", "output": "â Žâ â §â â ›â »â Šâ ‘â Ž" }, { "input": "savagery", "output": "â Žâ â §â â ›â »â ½" }, { "input": "savages", "output": "â Žâ â §â â ›â ‘â Ž" }, { "input": "savagest", "output": "â Žâ â §â â ›â ‘â Œ" }, { "input": "savaging", "output": "â Žâ â §â â ›â ¬" }, { "input": "savanna", "output": "â Žâ â §â â â â " }, { "input": "savannah", "output": "â Žâ â §â â â â â “" }, { "input": "savannahes", "output": "â Žâ â §â â â â â “â ‘â Ž" }, { "input": "savannahs", "output": "â Žâ â §â â â â â “â Ž" }, { "input": "savannas", "output": "â Žâ â §â â â â â Ž" }, { "input": "savant", "output": "â Žâ â §â â â ž" }, { "input": "savants", "output": "â Žâ â §â â â žâ Ž" }, { "input": "save", "output": "â Žâ â §â ‘" }, { "input": "saved", "output": "â Žâ â §â «" }, { "input": "saver", "output": "â Žâ â §â »" }, { "input": "savers", "output": "â Žâ â §â »â Ž" }, { "input": "saves", "output": "â Žâ â §â ‘â Ž" }, { "input": "saving", "output": "â Žâ â §â ¬" }, { "input": "savings", "output": "â Žâ â §â ¬â Ž" }, { "input": "savior", "output": "â Žâ â §â Šâ •â —" }, { "input": "saviors", "output": "â Žâ â §â Šâ •â —â Ž" }, { "input": "saviour", "output": "â Žâ â §â Šâ ³â —" }, { "input": "saviours", "output": "â Žâ â §â Šâ ³â —â Ž" }, { "input": "savor", "output": "â Žâ â §â •â —" }, { "input": "savored", "output": "â Žâ â §â •â —â «" }, { "input": "savorier", "output": "â Žâ â §â •â —â Šâ »" }, { "input": "savories", "output": "â Žâ â §â •â —â Šâ ‘â Ž" }, { "input": "savoriest", "output": "â Žâ â §â •â —â Šâ ‘â Œ" }, { "input": "savoring", "output": "â Žâ â §â •â —â ¬" }, { "input": "savors", "output": "â Žâ â §â •â —â Ž" }, { "input": "savory", "output": "â Žâ â §â •â —â ½" }, { "input": "savvied", "output": "â Žâ â §â §â Šâ «" }, { "input": "savvier", "output": "â Žâ â §â §â Šâ »" }, { "input": "savvies", "output": "â Žâ â §â §â Šâ ‘â Ž" }, { "input": "savviest", "output": "â Žâ â §â §â Šâ ‘â Œ" }, { "input": "savvy", "output": "â Žâ â §â §â ½" }, { "input": "savvying", "output": "â Žâ â §â §â ½â ¬" }, { "input": "saw", "output": "â Žâ â º" }, { "input": "sawdust", "output": "â Žâ â ºâ ™â ¥â Œ" }, { "input": "sawed", "output": "â Žâ â ºâ «" }, { "input": "sawhorse", "output": "â Žâ â ºâ “â •â —â Žâ ‘" }, { "input": "sawhorses", "output": "â Žâ â ºâ “â •â —â Žâ ‘â Ž" }, { "input": "sawing", "output": "â Žâ â ºâ ¬" }, { "input": "sawmill", "output": "â Žâ â ºâ â Šâ ‡â ‡" }, { "input": "sawmills", "output": "â Žâ â ºâ â Šâ ‡â ‡â Ž" }, { "input": "sawn", "output": "â Žâ â ºâ " }, { "input": "saws", "output": "â Žâ â ºâ Ž" }, { "input": "sawyer", "output": "â Žâ â ºâ ½â »" }, { "input": "sawyers", "output": "â Žâ â ºâ ½â »â Ž" }, { "input": "sax", "output": "â Žâ â ­" }, { "input": "saxes", "output": "â Žâ â ­â ‘â Ž" }, { "input": "saxophone", "output": "â Žâ â ­â •â â “â â •" }, { "input": "saxophones", "output": "â Žâ â ­â •â â “â â •â Ž" }, { "input": "saxophonist", "output": "â Žâ â ­â •â â “â •â â Šâ Œ" }, { "input": "saxophonists", "output": "â Žâ â ­â •â â “â •â â Šâ Œâ Ž" }, { "input": "say", "output": "â Žâ â ½" }, { "input": "saying", "output": "â Žâ â ½â ¬" }, { "input": "sayings", "output": "â Žâ â ½â ¬â Ž" }, { "input": "says", "output": "â Žâ â ½â Ž" }, { "input": "scab", "output": "â Žâ ‰â â ƒ" }, { "input": "scabbard", "output": "â Žâ ‰â â †â œâ ™" }, { "input": "scabbards", "output": "â Žâ ‰â â †â œâ ™â Ž" }, { "input": "scabbed", "output": "â Žâ ‰â â †â «" }, { "input": "scabbier", "output": "â Žâ ‰â â †â Šâ »" }, { "input": "scabbiest", "output": "â Žâ ‰â â †â Šâ ‘â Œ" }, { "input": "scabbing", "output": "â Žâ ‰â â †â ¬" }, { "input": "scabby", "output": "â Žâ ‰â â †â ½" }, { "input": "scabies", "output": "â Žâ ‰â â ƒâ Šâ ‘â Ž" }, { "input": "scabrous", "output": "â Žâ ‰â â ƒâ —⠳⠎" }, { "input": "scabs", "output": "â Žâ ‰â â ƒâ Ž" }, { "input": "scad", "output": "â Žâ ‰â â ™" }, { "input": "scads", "output": "â Žâ ‰â â ™â Ž" }, { "input": "scaffold", "output": "â Žâ ‰â â –⠕⠇⠙" }, { "input": "scaffolding", "output": "â Žâ ‰â â –⠕⠇⠙⠬" }, { "input": "scaffolds", "output": "â Žâ ‰â â –⠕⠇⠙⠎" }, { "input": "scalar", "output": "â Žâ ‰â â ‡â œ" }, { "input": "scalars", "output": "â Žâ ‰â â ‡â œâ Ž" }, { "input": "scalawag", "output": "â Žâ ‰â â ‡â â ºâ â ›" }, { "input": "scalawags", "output": "â Žâ ‰â â ‡â â ºâ â ›â Ž" }, { "input": "scald", "output": "â Žâ ‰â â ‡â ™" }, { "input": "scalded", "output": "â Žâ ‰â â ‡â ™â «" }, { "input": "scalding", "output": "â Žâ ‰â â ‡â ™â ¬" }, { "input": "scalds", "output": "â Žâ ‰â â ‡â ™â Ž" }, { "input": "scale", "output": "â Žâ ‰â â ‡â ‘" }, { "input": "scaled", "output": "â Žâ ‰â â ‡â «" }, { "input": "scalene", "output": "â Žâ ‰â â ‡â ¢â ‘" }, { "input": "scales", "output": "â Žâ ‰â â ‡â ‘â Ž" }, { "input": "scalier", "output": "â Žâ ‰â â ‡â Šâ »" }, { "input": "scaliest", "output": "â Žâ ‰â â ‡â Šâ ‘â Œ" }, { "input": "scaling", "output": "â Žâ ‰â â ‡â ¬" }, { "input": "scallion", "output": "â Žâ ‰â â ‡â ‡â Šâ •â " }, { "input": "scallions", "output": "â Žâ ‰â â ‡â ‡â Šâ •â â Ž" }, { "input": "scallop", "output": "â Žâ ‰â â ‡â ‡â •â " }, { "input": "scalloped", "output": "â Žâ ‰â â ‡â ‡â •â â «" }, { "input": "scalloping", "output": "â Žâ ‰â â ‡â ‡â •â â ¬" }, { "input": "scallops", "output": "â Žâ ‰â â ‡â ‡â •â â Ž" }, { "input": "scallywag", "output": "â Žâ ‰â â ‡â ‡â ½â ºâ â ›" }, { "input": "scallywags", "output": "â Žâ ‰â â ‡â ‡â ½â ºâ â ›â Ž" }, { "input": "scalp", "output": "â Žâ ‰â â ‡â " }, { "input": "scalped", "output": "â Žâ ‰â â ‡â â «" }, { "input": "scalpel", "output": "â Žâ ‰â â ‡â â ‘â ‡" }, { "input": "scalpels", "output": "â Žâ ‰â â ‡â â ‘⠇⠎" }, { "input": "scalper", "output": "â Žâ ‰â â ‡â â »" }, { "input": "scalpers", "output": "â Žâ ‰â â ‡â â »â Ž" }, { "input": "scalping", "output": "â Žâ ‰â â ‡â â ¬" }, { "input": "scalps", "output": "â Žâ ‰â â ‡â â Ž" }, { "input": "scaly", "output": "â Žâ ‰â â ‡â ½" }, { "input": "scam", "output": "â Žâ ‰â â " }, { "input": "scammed", "output": "â Žâ ‰â â â â «" }, { "input": "scamming", "output": "â Žâ ‰â â â â ¬" }, { "input": "scamp", "output": "â Žâ ‰â â â " }, { "input": "scamper", "output": "â Žâ ‰â â â â »" }, { "input": "scampered", "output": "â Žâ ‰â â â â »â «" }, { "input": "scampering", "output": "â Žâ ‰â â â â »â ¬" }, { "input": "scampers", "output": "â Žâ ‰â â â â »â Ž" }, { "input": "scampi", "output": "â Žâ ‰â â â â Š" }, { "input": "scampies", "output": "â Žâ ‰â â â â Šâ ‘â Ž" }, { "input": "scamps", "output": "â Žâ ‰â â â â Ž" }, { "input": "scams", "output": "â Žâ ‰â â â Ž" }, { "input": "scan", "output": "â Žâ ‰â â " }, { "input": "scandal", "output": "⠎⠉⠯â â ‡" }, { "input": "scandalize", "output": "⠎⠉⠯â â ‡â Šâ µâ ‘" }, { "input": "scandalized", "output": "⠎⠉⠯â â ‡â Šâ µâ «" }, { "input": "scandalizes", "output": "⠎⠉⠯â â ‡â Šâ µâ ‘â Ž" }, { "input": "scandalizing", "output": "⠎⠉⠯â â ‡â Šâ µâ ¬" }, { "input": "scandalmonger", "output": "⠎⠉⠯â â ‡â â °â ›â »" }, { "input": "scandalmongers", "output": "⠎⠉⠯â â ‡â â °â ›â »â Ž" }, { "input": "scandalous", "output": "⠎⠉⠯â â ‡â ³â Ž" }, { "input": "scandalously", "output": "⠎⠉⠯â â ‡â ³â Žâ ‡â ½" }, { "input": "scandals", "output": "⠎⠉⠯â â ‡â Ž" }, { "input": "scanned", "output": "â Žâ ‰â â â â «" }, { "input": "scanner", "output": "â Žâ ‰â â â â »" }, { "input": "scanners", "output": "â Žâ ‰â â â â »â Ž" }, { "input": "scanning", "output": "â Žâ ‰â â â â ¬" }, { "input": "scans", "output": "â Žâ ‰â â â Ž" }, { "input": "scansion", "output": "â Žâ ‰â â â ¨â " }, { "input": "scant", "output": "â Žâ ‰â â â ž" }, { "input": "scanted", "output": "â Žâ ‰â â â žâ «" }, { "input": "scanter", "output": "â Žâ ‰â â â žâ »" }, { "input": "scantest", "output": "â Žâ ‰â â â žâ ‘â Œ" }, { "input": "scantier", "output": "â Žâ ‰â â â žâ Šâ »" }, { "input": "scanties", "output": "â Žâ ‰â â â žâ Šâ ‘â Ž" }, { "input": "scantiest", "output": "â Žâ ‰â â â žâ Šâ ‘â Œ" }, { "input": "scantily", "output": "â Žâ ‰â â â žâ Šâ ‡â ½" }, { "input": "scantiness", "output": "â Žâ ‰â â â žâ Šâ °â Ž" }, { "input": "scanting", "output": "â Žâ ‰â â â žâ ¬" }, { "input": "scants", "output": "â Žâ ‰â â â žâ Ž" }, { "input": "scanty", "output": "â Žâ ‰â â â žâ ½" }, { "input": "scapegoat", "output": "â Žâ ‰â â â ‘⠛⠕â â ž" }, { "input": "scapegoated", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ «" }, { "input": "scapegoating", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ ¬" }, { "input": "scapegoats", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ Ž" }, { "input": "scapula", "output": "â Žâ ‰â â â ¥â ‡â " }, { "input": "scapulae", "output": "â Žâ ‰â â â ¥â ‡â â ‘" }, { "input": "scapulas", "output": "â Žâ ‰â â â ¥â ‡â â Ž" }, { "input": "scar", "output": "⠎⠉⠜" }, { "input": "scarab", "output": "⠎⠉⠜â â ƒ" }, { "input": "scarabs", "output": "⠎⠉⠜â â ƒâ Ž" }, { "input": "scarce", "output": "⠎⠉⠜⠉⠑" }, { "input": "scarcely", "output": "⠎⠉⠜⠉⠑⠇⠽" }, { "input": "scarceness", "output": "⠎⠉⠜⠉⠑⠰⠎" }, { "input": "scarcer", "output": "⠎⠉⠜⠉⠻" }, { "input": "scarcest", "output": "⠎⠉⠜⠉⠑⠌" }, { "input": "scarcity", "output": "⠎⠉⠜⠉⠰⠽" }, { "input": "scare", "output": "⠎⠉⠜⠑" }, { "input": "scarecrow", "output": "⠎⠉⠜⠑⠉⠗⠪" }, { "input": "scarecrows", "output": "⠎⠉⠜⠑⠉⠗⠪⠎" }, { "input": "scared", "output": "⠎⠉⠜⠫" }, { "input": "scares", "output": "⠎⠉⠜⠑⠎" }, { "input": "scarf", "output": "⠎⠉⠜⠋" }, { "input": "scarfed", "output": "⠎⠉⠜⠋⠫" }, { "input": "scarfing", "output": "⠎⠉⠜⠋⠬" }, { "input": "scarfs", "output": "⠎⠉⠜⠋⠎" }, { "input": "scarier", "output": "⠎⠉⠜⠊⠻" }, { "input": "scariest", "output": "⠎⠉⠜⠊⠑⠌" }, { "input": "scarified", "output": "⠎⠉⠜⠊⠋⠊⠫" }, { "input": "scarifies", "output": "⠎⠉⠜⠊⠋⠊⠑⠎" }, { "input": "scarify", "output": "⠎⠉⠜⠊⠋⠽" }, { "input": "scarifying", "output": "⠎⠉⠜⠊⠋⠽⠬" }, { "input": "scaring", "output": "⠎⠉⠜⠬" }, { "input": "scarlet", "output": "⠎⠉⠜⠇⠑⠞" }, { "input": "scarred", "output": "⠎⠉⠜⠗⠫" }, { "input": "scarring", "output": "⠎⠉⠜⠗⠬" }, { "input": "scars", "output": "⠎⠉⠜⠎" }, { "input": "scarves", "output": "⠎⠉⠜⠧⠑⠎" }, { "input": "scary", "output": "⠎⠉⠜⠽" }, { "input": "scat", "output": "â Žâ ‰â â ž" }, { "input": "scathing", "output": "â Žâ ‰â â ¹â ¬" }, { "input": "scathingly", "output": "â Žâ ‰â â ¹â ¬â ‡â ½" }, { "input": "scatological", "output": "â Žâ ‰â â žâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "scats", "output": "â Žâ ‰â â žâ Ž" }, { "input": "scatted", "output": "â Žâ ‰â â žâ žâ «" }, { "input": "scatter", "output": "â Žâ ‰â â žâ žâ »" }, { "input": "scatterbrain", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”" }, { "input": "scatterbrained", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”â «" }, { "input": "scatterbrains", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”â Ž" }, { "input": "scattered", "output": "â Žâ ‰â â žâ žâ »â «" }, { "input": "scattering", "output": "â Žâ ‰â â žâ žâ »â ¬" }, { "input": "scatters", "output": "â Žâ ‰â â žâ žâ »â Ž" }, { "input": "scatting", "output": "â Žâ ‰â â žâ žâ ¬" }, { "input": "scavenge", "output": "â Žâ ‰â â §â ¢â ›â ‘" }, { "input": "scavenged", "output": "â Žâ ‰â â §â ¢â ›â «" }, { "input": "scavenger", "output": "â Žâ ‰â â §â ¢â ›â »" }, { "input": "scavengers", "output": "â Žâ ‰â â §â ¢â ›â »â Ž" }, { "input": "scavenges", "output": "â Žâ ‰â â §â ¢â ›â ‘â Ž" }, { "input": "scavenging", "output": "â Žâ ‰â â §â ¢â ›â ¬" }, { "input": "scenario", "output": "⠎⠉⠢⠜⠊⠕" }, { "input": "scenarios", "output": "⠎⠉⠢⠜⠊⠕⠎" }, { "input": "scene", "output": "⠎⠉⠢⠑" }, { "input": "scenery", "output": "⠎⠉⠢⠻⠽" }, { "input": "scenes", "output": "⠎⠉⠢⠑⠎" }, { "input": "scenic", "output": "⠎⠉⠢⠊⠉" }, { "input": "scenically", "output": "⠎⠉⠢⠊⠉â â ‡â ‡â ½" }, { "input": "scent", "output": "⠎⠉⠢⠞" }, { "input": "scented", "output": "⠎⠉⠢⠞⠫" }, { "input": "scenting", "output": "⠎⠉⠢⠞⠬" }, { "input": "scents", "output": "⠎⠉⠢⠞⠎" }, { "input": "scepter", "output": "⠎⠉⠑â â žâ »" }, { "input": "scepters", "output": "⠎⠉⠑â â žâ »â Ž" }, { "input": "schedule", "output": "⠎⠡⠫⠥⠇⠑" }, { "input": "scheduled", "output": "⠎⠡⠫⠥⠇⠫" }, { "input": "scheduler", "output": "⠎⠡⠫⠥⠇⠻" }, { "input": "schedulers", "output": "⠎⠡⠫⠥⠇⠻⠎" }, { "input": "schedules", "output": "⠎⠡⠫⠥⠇⠑⠎" }, { "input": "scheduling", "output": "⠎⠡⠫⠥⠇⠬" }, { "input": "schema", "output": "â Žâ ¡â ‘â â " }, { "input": "schematic", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰" }, { "input": "schematically", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "schematics", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰â Ž" }, { "input": "scheme", "output": "â Žâ ¡â ‘â â ‘" }, { "input": "schemed", "output": "â Žâ ¡â ‘â â «" }, { "input": "schemer", "output": "â Žâ ¡â ‘â â »" }, { "input": "schemers", "output": "â Žâ ¡â ‘â â »â Ž" }, { "input": "schemes", "output": "â Žâ ¡â ‘â â ‘â Ž" }, { "input": "scheming", "output": "â Žâ ¡â ‘â â ¬" }, { "input": "scherzi", "output": "⠎⠡⠻⠵⠊" }, { "input": "scherzo", "output": "⠎⠡⠻⠵⠕" }, { "input": "scherzos", "output": "⠎⠡⠻⠵⠕⠎" }, { "input": "schism", "output": "â Žâ ¡â Šâ Žâ " }, { "input": "schismatic", "output": "â Žâ ¡â Šâ Žâ â â žâ Šâ ‰" }, { "input": "schismatics", "output": "â Žâ ¡â Šâ Žâ â â žâ Šâ ‰â Ž" }, { "input": "schisms", "output": "â Žâ ¡â Šâ Žâ â Ž" }, { "input": "schist", "output": "â Žâ ¡â Šâ Œ" }, { "input": "schizoid", "output": "⠎⠡⠊⠵⠕⠊⠙" }, { "input": "schizoids", "output": "⠎⠡⠊⠵⠕⠊⠙⠎" }, { "input": "schizophrenia", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊â " }, { "input": "schizophrenic", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊⠉" }, { "input": "schizophrenics", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊⠉⠎" }, { "input": "schlemiel", "output": "⠎⠡⠇⠑â â Šâ ‘â ‡" }, { "input": "schlemiels", "output": "⠎⠡⠇⠑â â Šâ ‘⠇⠎" }, { "input": "schlep", "output": "⠎⠡⠇⠑â " }, { "input": "schlepp", "output": "⠎⠡⠇⠑â â " }, { "input": "schlepped", "output": "⠎⠡⠇⠑â â â «" }, { "input": "schlepping", "output": "⠎⠡⠇⠑â â â ¬" }, { "input": "schlepps", "output": "⠎⠡⠇⠑â â â Ž" }, { "input": "schleps", "output": "⠎⠡⠇⠑â â Ž" }, { "input": "schlock", "output": "⠎⠡⠇⠕⠉⠅" }, { "input": "schlocky", "output": "⠎⠡⠇⠕⠉⠅⠽" }, { "input": "schmaltz", "output": "â Žâ ¡â â â ‡â žâ µ" }, { "input": "schmaltzier", "output": "â Žâ ¡â â â ‡â žâ µâ Šâ »" }, { "input": "schmaltziest", "output": "â Žâ ¡â â â ‡â žâ µâ Šâ ‘â Œ" }, { "input": "schmaltzy", "output": "â Žâ ¡â â â ‡â žâ µâ ½" }, { "input": "schmalz", "output": "â Žâ ¡â â â ‡â µ" }, { "input": "schmalzy", "output": "â Žâ ¡â â â ‡â µâ ½" }, { "input": "schmooze", "output": "â Žâ ¡â â •⠕⠵⠑" }, { "input": "schmoozed", "output": "â Žâ ¡â â •⠕⠵⠫" }, { "input": "schmoozes", "output": "â Žâ ¡â â •⠕⠵⠑⠎" }, { "input": "schmoozing", "output": "â Žâ ¡â â •⠕⠵⠬" }, { "input": "schmuck", "output": "â Žâ ¡â â ¥â ‰â …" }, { "input": "schmucks", "output": "â Žâ ¡â â ¥â ‰â …â Ž" }, { "input": "schnapps", "output": "â Žâ ¡â â â â â Ž" }, { "input": "schnauzer", "output": "â Žâ ¡â â â ¥â µâ »" }, { "input": "schnauzers", "output": "â Žâ ¡â â â ¥â µâ »â Ž" }, { "input": "scholar", "output": "⠎⠡⠕⠇⠜" }, { "input": "scholarly", "output": "⠎⠡⠕⠇⠜⠇⠽" }, { "input": "scholars", "output": "⠎⠡⠕⠇⠜⠎" }, { "input": "scholarship", "output": "⠎⠡⠕⠇⠜⠩⠊â " }, { "input": "scholarships", "output": "⠎⠡⠕⠇⠜⠩⠊â â Ž" }, { "input": "scholastic", "output": "â Žâ ¡â •â ‡â â Œâ Šâ ‰" }, { "input": "scholastically", "output": "â Žâ ¡â •â ‡â â Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "school", "output": "â Žâ ¡â •â •â ‡" }, { "input": "schoolbook", "output": "⠎⠡⠕⠕⠇⠃⠕⠕⠅" }, { "input": "schoolbooks", "output": "⠎⠡⠕⠕⠇⠃⠕⠕⠅⠎" }, { "input": "schoolboy", "output": "⠎⠡⠕⠕⠇⠃⠕⠽" }, { "input": "schoolboys", "output": "⠎⠡⠕⠕⠇⠃⠕⠽⠎" }, { "input": "schoolchild", "output": "⠎⠡⠕⠕⠇⠡⠊⠇⠙" }, { "input": "schoolchildren", "output": "⠎⠡⠕⠕⠇⠡â " }, { "input": "schooldays", "output": "â Žâ ¡â •â •â ‡â â ™â Ž" }, { "input": "schooled", "output": "⠎⠡⠕⠕⠇⠫" }, { "input": "schoolgirl", "output": "⠎⠡⠕⠕⠇⠛⠊⠗⠇" }, { "input": "schoolgirls", "output": "⠎⠡⠕⠕⠇⠛⠊⠗⠇⠎" }, { "input": "schoolhouse", "output": "⠎⠡⠕⠕⠇⠓⠳⠎⠑" }, { "input": "schoolhouses", "output": "⠎⠡⠕⠕⠇⠓⠳⠎⠑⠎" }, { "input": "schooling", "output": "⠎⠡⠕⠕⠇⠬" }, { "input": "schoolmarm", "output": "â Žâ ¡â •â •â ‡â â œâ " }, { "input": "schoolmarms", "output": "â Žâ ¡â •â •â ‡â â œâ â Ž" }, { "input": "schoolmaster", "output": "â Žâ ¡â •â •â ‡â â â Œâ »" }, { "input": "schoolmasters", "output": "â Žâ ¡â •â •â ‡â â â Œâ »â Ž" }, { "input": "schoolmate", "output": "â Žâ ¡â •â •â ‡â â â žâ ‘" }, { "input": "schoolmates", "output": "â Žâ ¡â •â •â ‡â â â žâ ‘â Ž" }, { "input": "schoolmistress", "output": "â Žâ ¡â •â •â ‡â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "schoolmistresses", "output": "â Žâ ¡â •â •â ‡â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "schoolroom", "output": "⠎⠡⠕⠕⠇⠗⠕⠕â " }, { "input": "schoolrooms", "output": "⠎⠡⠕⠕⠇⠗⠕⠕â â Ž" }, { "input": "schools", "output": "⠎⠡⠕⠕⠇⠎" }, { "input": "schoolteacher", "output": "⠎⠡⠕⠕⠇⠞⠂⠡⠻" }, { "input": "schoolteachers", "output": "⠎⠡⠕⠕⠇⠞⠂⠡⠻⠎" }, { "input": "schoolwork", "output": "â Žâ ¡â •â •â ‡â â º" }, { "input": "schoolyard", "output": "⠎⠡⠕⠕⠇⠽⠜⠙" }, { "input": "schoolyards", "output": "⠎⠡⠕⠕⠇⠽⠜⠙⠎" }, { "input": "schooner", "output": "â Žâ ¡â •â •â â »" }, { "input": "schooners", "output": "â Žâ ¡â •â •â â »â Ž" }, { "input": "schrod", "output": "â Žâ ¡â —â •â ™" }, { "input": "schrods", "output": "⠎⠡⠗⠕⠙⠎" }, { "input": "schtick", "output": "⠎⠡⠞⠊⠉⠅" }, { "input": "schticks", "output": "⠎⠡⠞⠊⠉⠅⠎" }, { "input": "schuss", "output": "⠎⠡⠥⠎⠎" }, { "input": "schussed", "output": "⠎⠡⠥⠎⠎⠫" }, { "input": "schusses", "output": "⠎⠡⠥⠎⠎⠑⠎" }, { "input": "schussing", "output": "⠎⠡⠥⠎⠎⠬" }, { "input": "schwa", "output": "â Žâ ¡â ºâ " }, { "input": "schwas", "output": "â Žâ ¡â ºâ â Ž" }, { "input": "sciatic", "output": "⠎⠉⠊â â žâ Šâ ‰" }, { "input": "sciatica", "output": "⠎⠉⠊â â žâ Šâ ‰â " }, { "input": "science", "output": "⠎⠉⠊⠰⠑" }, { "input": "sciences", "output": "⠎⠉⠊⠰⠑⠎" }, { "input": "scientific", "output": "⠎⠉⠊⠢⠞⠊⠋⠊⠉" }, { "input": "scientifically", "output": "⠎⠉⠊⠢⠞⠊⠋⠊⠉â â ‡â ‡â ½" }, { "input": "scientist", "output": "⠎⠉⠊⠢⠞⠊⠌" }, { "input": "scientists", "output": "⠎⠉⠊⠢⠞⠊⠌⠎" }, { "input": "scimitar", "output": "⠎⠉⠊â â Šâ žâ œ" }, { "input": "scimitars", "output": "⠎⠉⠊â â Šâ žâ œâ Ž" }, { "input": "scintilla", "output": "⠎⠉⠔⠞⠊⠇⠇â " }, { "input": "scintillas", "output": "⠎⠉⠔⠞⠊⠇⠇â â Ž" }, { "input": "scintillate", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ ‘" }, { "input": "scintillated", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ «" }, { "input": "scintillates", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ ‘â Ž" }, { "input": "scintillating", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ ¬" }, { "input": "scintillation", "output": "⠎⠉⠔⠞⠊⠇⠇â â °â " }, { "input": "scion", "output": "⠎⠉⠊⠕â " }, { "input": "scions", "output": "⠎⠉⠊⠕â â Ž" }, { "input": "scissor", "output": "⠎⠉⠊⠎⠎⠕⠗" }, { "input": "scissors", "output": "⠎⠉⠊⠎⠎⠕⠗⠎" }, { "input": "sclerosis", "output": "⠎⠉⠇⠻⠕⠎⠊⠎" }, { "input": "sclerotic", "output": "⠎⠉⠇⠻⠕⠞⠊⠉" }, { "input": "scoff", "output": "⠎⠉⠷⠋" }, { "input": "scoffed", "output": "⠎⠉⠷⠋⠫" }, { "input": "scoffing", "output": "⠎⠉⠷⠋⠬" }, { "input": "scofflaw", "output": "⠎⠉⠷⠋⠇â â º" }, { "input": "scofflaws", "output": "⠎⠉⠷⠋⠇â â ºâ Ž" }, { "input": "scoffs", "output": "⠎⠉⠷⠋⠎" }, { "input": "scold", "output": "⠎⠉⠕⠇⠙" }, { "input": "scolded", "output": "⠎⠉⠕⠇⠙⠫" }, { "input": "scolding", "output": "⠎⠉⠕⠇⠙⠬" }, { "input": "scoldings", "output": "⠎⠉⠕⠇⠙⠬⠎" }, { "input": "scolds", "output": "⠎⠉⠕⠇⠙⠎" }, { "input": "scoliosis", "output": "⠎⠉⠕⠇⠊⠕⠎⠊⠎" }, { "input": "scollop", "output": "⠎⠉⠕⠇⠇⠕â " }, { "input": "scolloped", "output": "⠎⠉⠕⠇⠇⠕â â «" }, { "input": "scolloping", "output": "⠎⠉⠕⠇⠇⠕â â ¬" }, { "input": "scollops", "output": "⠎⠉⠕⠇⠇⠕â â Ž" }, { "input": "sconce", "output": "⠎⠉⠕â â ‰â ‘" }, { "input": "sconces", "output": "⠎⠉⠕â â ‰â ‘â Ž" }, { "input": "scone", "output": "â Žâ ‰â â •" }, { "input": "scones", "output": "â Žâ ‰â â •â Ž" }, { "input": "scoop", "output": "⠎⠉⠕⠕â " }, { "input": "scooped", "output": "⠎⠉⠕⠕â â «" }, { "input": "scooping", "output": "⠎⠉⠕⠕â â ¬" }, { "input": "scoops", "output": "⠎⠉⠕⠕â â Ž" }, { "input": "scoot", "output": "⠎⠉⠕⠕⠞" }, { "input": "scooted", "output": "⠎⠉⠕⠕⠞⠫" }, { "input": "scooter", "output": "⠎⠉⠕⠕⠞⠻" }, { "input": "scooters", "output": "⠎⠉⠕⠕⠞⠻⠎" }, { "input": "scooting", "output": "⠎⠉⠕⠕⠞⠬" }, { "input": "scoots", "output": "⠎⠉⠕⠕⠞⠎" }, { "input": "scope", "output": "⠎⠉⠕â â ‘" }, { "input": "scoped", "output": "⠎⠉⠕â â «" }, { "input": "scopes", "output": "⠎⠉⠕â â ‘â Ž" }, { "input": "scoping", "output": "⠎⠉⠕â â ¬" }, { "input": "scorch", "output": "⠎⠉⠕⠗⠡" }, { "input": "scorched", "output": "⠎⠉⠕⠗⠡⠫" }, { "input": "scorcher", "output": "⠎⠉⠕⠗⠡⠻" }, { "input": "scorchers", "output": "⠎⠉⠕⠗⠡⠻⠎" }, { "input": "scorches", "output": "⠎⠉⠕⠗⠡⠑⠎" }, { "input": "scorching", "output": "⠎⠉⠕⠗⠡⠬" }, { "input": "score", "output": "⠎⠉⠕⠗⠑" }, { "input": "scoreboard", "output": "⠎⠉⠕⠗⠑⠃⠕⠜⠙" }, { "input": "scoreboards", "output": "⠎⠉⠕⠗⠑⠃⠕⠜⠙⠎" }, { "input": "scorecard", "output": "⠎⠉⠕⠗⠑⠉⠜⠙" }, { "input": "scorecards", "output": "⠎⠉⠕⠗⠑⠉⠜⠙⠎" }, { "input": "scored", "output": "⠎⠉⠕⠗⠫" }, { "input": "scoreless", "output": "⠎⠉⠕⠗⠑⠨⠎" }, { "input": "scorer", "output": "⠎⠉⠕⠗⠻" }, { "input": "scorers", "output": "⠎⠉⠕⠗⠻⠎" }, { "input": "scores", "output": "⠎⠉⠕⠗⠑⠎" }, { "input": "scoring", "output": "⠎⠉⠕⠗⠬" }, { "input": "scorn", "output": "⠎⠉⠕⠗â " }, { "input": "scorned", "output": "⠎⠉⠕⠗â â «" }, { "input": "scornful", "output": "⠎⠉⠕⠗â â °â ‡" }, { "input": "scornfully", "output": "⠎⠉⠕⠗â â °â ‡â ‡â ½" }, { "input": "scorning", "output": "⠎⠉⠕⠗â â ¬" }, { "input": "scorns", "output": "⠎⠉⠕⠗â â Ž" }, { "input": "scorpion", "output": "⠎⠉⠕⠗â â Šâ •â " }, { "input": "scorpions", "output": "⠎⠉⠕⠗â â Šâ •â â Ž" }, { "input": "scotch", "output": "⠎⠉⠕⠞⠡" }, { "input": "scotched", "output": "⠎⠉⠕⠞⠡⠫" }, { "input": "scotches", "output": "⠎⠉⠕⠞⠡⠑⠎" }, { "input": "scotching", "output": "⠎⠉⠕⠞⠡⠬" }, { "input": "scotchs", "output": "⠎⠉⠕⠞⠡⠎" }, { "input": "scoundrel", "output": "⠎⠉⠨⠙⠗⠑⠇" }, { "input": "scoundrels", "output": "⠎⠉⠨⠙⠗⠑⠇⠎" }, { "input": "scour", "output": "⠎⠉⠳⠗" }, { "input": "scoured", "output": "⠎⠉⠳⠗⠫" }, { "input": "scourge", "output": "⠎⠉⠳⠗⠛⠑" }, { "input": "scourged", "output": "⠎⠉⠳⠗⠛⠫" }, { "input": "scourges", "output": "⠎⠉⠳⠗⠛⠑⠎" }, { "input": "scourging", "output": "⠎⠉⠳⠗⠛⠬" }, { "input": "scouring", "output": "⠎⠉⠳⠗⠬" }, { "input": "scours", "output": "⠎⠉⠳⠗⠎" }, { "input": "scout", "output": "⠎⠉⠳⠞" }, { "input": "scouted", "output": "⠎⠉⠳⠞⠫" }, { "input": "scouting", "output": "⠎⠉⠳⠞⠬" }, { "input": "scoutmaster", "output": "⠎⠉⠳⠞â â â Œâ »" }, { "input": "scoutmasters", "output": "⠎⠉⠳⠞â â â Œâ »â Ž" }, { "input": "scouts", "output": "⠎⠉⠳⠞⠎" }, { "input": "scow", "output": "⠎⠉⠪" }, { "input": "scowl", "output": "⠎⠉⠪⠇" }, { "input": "scowled", "output": "⠎⠉⠪⠇⠫" }, { "input": "scowling", "output": "⠎⠉⠪⠇⠬" }, { "input": "scowls", "output": "⠎⠉⠪⠇⠎" }, { "input": "scows", "output": "⠎⠉⠪⠎" }, { "input": "scrabble", "output": "⠎⠉⠗â â †â ‡â ‘" }, { "input": "scrabbled", "output": "⠎⠉⠗â â †â ‡â «" }, { "input": "scrabbles", "output": "⠎⠉⠗â â †â ‡â ‘â Ž" }, { "input": "scrabbling", "output": "⠎⠉⠗â â †â ‡â ¬" }, { "input": "scragglier", "output": "⠎⠉⠗â â ¶â ‡â Šâ »" }, { "input": "scraggliest", "output": "⠎⠉⠗â â ¶â ‡â Šâ ‘â Œ" }, { "input": "scraggly", "output": "⠎⠉⠗â â ¶â ‡â ½" }, { "input": "scram", "output": "⠎⠉⠗â â " }, { "input": "scramble", "output": "⠎⠉⠗â â â ƒâ ‡â ‘" }, { "input": "scrambled", "output": "⠎⠉⠗â â â ƒâ ‡â «" }, { "input": "scrambler", "output": "⠎⠉⠗â â â ƒâ ‡â »" }, { "input": "scramblers", "output": "⠎⠉⠗â â â ƒâ ‡â »â Ž" }, { "input": "scrambles", "output": "⠎⠉⠗â â â ƒâ ‡â ‘â Ž" }, { "input": "scrambling", "output": "⠎⠉⠗â â â ƒâ ‡â ¬" }, { "input": "scrammed", "output": "⠎⠉⠗â â â â «" }, { "input": "scramming", "output": "⠎⠉⠗â â â â ¬" }, { "input": "scrams", "output": "⠎⠉⠗â â â Ž" }, { "input": "scrap", "output": "⠎⠉⠗â â " }, { "input": "scrapbook", "output": "⠎⠉⠗â â â ƒâ •â •â …" }, { "input": "scrapbooks", "output": "⠎⠉⠗â â â ƒâ •â •â …â Ž" }, { "input": "scrape", "output": "⠎⠉⠗â â â ‘" }, { "input": "scraped", "output": "⠎⠉⠗â â â «" }, { "input": "scraper", "output": "⠎⠉⠗â â â »" }, { "input": "scrapers", "output": "⠎⠉⠗â â â »â Ž" }, { "input": "scrapes", "output": "⠎⠉⠗â â â ‘â Ž" }, { "input": "scraping", "output": "⠎⠉⠗â â â ¬" }, { "input": "scrapped", "output": "⠎⠉⠗â â â â «" }, { "input": "scrappier", "output": "⠎⠉⠗â â â â Šâ »" }, { "input": "scrappiest", "output": "⠎⠉⠗â â â â Šâ ‘â Œ" }, { "input": "scrapping", "output": "⠎⠉⠗â â â â ¬" }, { "input": "scrappy", "output": "⠎⠉⠗â â â â ½" }, { "input": "scraps", "output": "⠎⠉⠗â â â Ž" }, { "input": "scratch", "output": "⠎⠉⠗â â žâ ¡" }, { "input": "scratched", "output": "⠎⠉⠗â â žâ ¡â «" }, { "input": "scratches", "output": "⠎⠉⠗â â žâ ¡â ‘â Ž" }, { "input": "scratchier", "output": "⠎⠉⠗â â žâ ¡â Šâ »" }, { "input": "scratchiest", "output": "⠎⠉⠗â â žâ ¡â Šâ ‘â Œ" }, { "input": "scratchiness", "output": "⠎⠉⠗â â žâ ¡â Šâ °â Ž" }, { "input": "scratching", "output": "⠎⠉⠗â â žâ ¡â ¬" }, { "input": "scratchy", "output": "⠎⠉⠗â â žâ ¡â ½" }, { "input": "scrawl", "output": "⠎⠉⠗â â ºâ ‡" }, { "input": "scrawled", "output": "⠎⠉⠗â â ºâ ‡â «" }, { "input": "scrawling", "output": "⠎⠉⠗â â ºâ ‡â ¬" }, { "input": "scrawls", "output": "⠎⠉⠗â â ºâ ‡â Ž" }, { "input": "scrawnier", "output": "⠎⠉⠗â â ºâ â Šâ »" }, { "input": "scrawniest", "output": "⠎⠉⠗â â ºâ â Šâ ‘â Œ" }, { "input": "scrawny", "output": "⠎⠉⠗â â ºâ â ½" }, { "input": "scream", "output": "⠎⠉⠗⠂â " }, { "input": "screamed", "output": "⠎⠉⠗⠂â â «" }, { "input": "screaming", "output": "⠎⠉⠗⠂â â ¬" }, { "input": "screams", "output": "⠎⠉⠗⠂â â Ž" }, { "input": "screech", "output": "⠎⠉⠗⠑⠑⠡" }, { "input": "screeched", "output": "⠎⠉⠗⠑⠑⠡⠫" }, { "input": "screeches", "output": "⠎⠉⠗⠑⠑⠡⠑⠎" }, { "input": "screechier", "output": "⠎⠉⠗⠑⠑⠡⠊⠻" }, { "input": "screechiest", "output": "⠎⠉⠗⠑⠑⠡⠊⠑⠌" }, { "input": "screeching", "output": "⠎⠉⠗⠑⠑⠡⠬" }, { "input": "screechy", "output": "⠎⠉⠗⠑⠑⠡⠽" }, { "input": "screen", "output": "⠎⠉⠗⠑⠢" }, { "input": "screened", "output": "⠎⠉⠗⠑⠢⠫" }, { "input": "screening", "output": "⠎⠉⠗⠑⠢⠬" }, { "input": "screenings", "output": "⠎⠉⠗⠑⠢⠬⠎" }, { "input": "screenplay", "output": "⠎⠉⠗⠑⠢â â ‡â â ½" }, { "input": "screenplays", "output": "⠎⠉⠗⠑⠢â â ‡â â ½â Ž" }, { "input": "screens", "output": "⠎⠉⠗⠑⠢⠎" }, { "input": "screenwriter", "output": "⠎⠉⠗⠑⠢⠺⠗⠊⠞⠻" }, { "input": "screenwriters", "output": "⠎⠉⠗⠑⠢⠺⠗⠊⠞⠻⠎" }, { "input": "screw", "output": "⠎⠉⠗⠑⠺" }, { "input": "screwball", "output": "⠎⠉⠗⠑⠺⠃â â ‡â ‡" }, { "input": "screwballs", "output": "⠎⠉⠗⠑⠺⠃â â ‡â ‡â Ž" }, { "input": "screwdriver", "output": "⠎⠉⠗⠑⠺⠙⠗⠊⠧⠻" }, { "input": "screwdrivers", "output": "⠎⠉⠗⠑⠺⠙⠗⠊⠧⠻⠎" }, { "input": "screwed", "output": "⠎⠉⠗⠑⠺⠫" }, { "input": "screwier", "output": "⠎⠉⠗⠑⠺⠊⠻" }, { "input": "screwiest", "output": "⠎⠉⠗⠑⠺⠊⠑⠌" }, { "input": "screwing", "output": "⠎⠉⠗⠑⠺⠬" }, { "input": "screws", "output": "⠎⠉⠗⠑⠺⠎" }, { "input": "screwy", "output": "⠎⠉⠗⠑⠺⠽" }, { "input": "scribble", "output": "⠎⠉⠗⠊⠆⠇⠑" }, { "input": "scribbled", "output": "⠎⠉⠗⠊⠆⠇⠫" }, { "input": "scribbler", "output": "⠎⠉⠗⠊⠆⠇⠻" }, { "input": "scribblers", "output": "⠎⠉⠗⠊⠆⠇⠻⠎" }, { "input": "scribbles", "output": "⠎⠉⠗⠊⠆⠇⠑⠎" }, { "input": "scribbling", "output": "⠎⠉⠗⠊⠆⠇⠬" }, { "input": "scribe", "output": "⠎⠉⠗⠊⠃⠑" }, { "input": "scribes", "output": "⠎⠉⠗⠊⠃⠑⠎" }, { "input": "scrimmage", "output": "⠎⠉⠗⠊â â â â ›â ‘" }, { "input": "scrimmaged", "output": "⠎⠉⠗⠊â â â â ›â «" }, { "input": "scrimmages", "output": "⠎⠉⠗⠊â â â â ›â ‘â Ž" }, { "input": "scrimmaging", "output": "⠎⠉⠗⠊â â â â ›â ¬" }, { "input": "scrimp", "output": "⠎⠉⠗⠊â â " }, { "input": "scrimped", "output": "⠎⠉⠗⠊â â â «" }, { "input": "scrimping", "output": "⠎⠉⠗⠊â â â ¬" }, { "input": "scrimps", "output": "⠎⠉⠗⠊â â â Ž" }, { "input": "scrimshaw", "output": "⠎⠉⠗⠊â â ©â â º" }, { "input": "scrimshawed", "output": "⠎⠉⠗⠊â â ©â â ºâ «" }, { "input": "scrimshawing", "output": "⠎⠉⠗⠊â â ©â â ºâ ¬" }, { "input": "scrimshaws", "output": "⠎⠉⠗⠊â â ©â â ºâ Ž" }, { "input": "scrip", "output": "⠎⠉⠗⠊â " }, { "input": "scrips", "output": "⠎⠉⠗⠊â â Ž" }, { "input": "script", "output": "⠎⠉⠗⠊â â ž" }, { "input": "scripted", "output": "⠎⠉⠗⠊â â žâ «" }, { "input": "scripting", "output": "⠎⠉⠗⠊â â žâ ¬" }, { "input": "scripts", "output": "⠎⠉⠗⠊â â žâ Ž" }, { "input": "scriptural", "output": "⠎⠉⠗⠊â â žâ ¥â —â â ‡" }, { "input": "scripture", "output": "⠎⠉⠗⠊â â žâ ¥â —â ‘" }, { "input": "scriptures", "output": "⠎⠉⠗⠊â â žâ ¥â —â ‘â Ž" }, { "input": "scriptwriter", "output": "⠎⠉⠗⠊â â žâ ºâ —â Šâ žâ »" }, { "input": "scriptwriters", "output": "⠎⠉⠗⠊â â žâ ºâ —⠊⠞⠻⠎" }, { "input": "scrod", "output": "⠎⠉⠗⠕⠙" }, { "input": "scrods", "output": "⠎⠉⠗⠕⠙⠎" }, { "input": "scrofula", "output": "⠎⠉⠗⠷⠥⠇â " }, { "input": "scroll", "output": "⠎⠉⠗⠕⠇⠇" }, { "input": "scrolled", "output": "⠎⠉⠗⠕⠇⠇⠫" }, { "input": "scrolling", "output": "⠎⠉⠗⠕⠇⠇⠬" }, { "input": "scrolls", "output": "⠎⠉⠗⠕⠇⠇⠎" }, { "input": "scrooge", "output": "⠎⠉⠗⠕⠕⠛⠑" }, { "input": "scrooges", "output": "⠎⠉⠗⠕⠕⠛⠑⠎" }, { "input": "scrota", "output": "⠎⠉⠗⠕⠞â " }, { "input": "scrotum", "output": "⠎⠉⠗⠕⠞⠥â " }, { "input": "scrotums", "output": "⠎⠉⠗⠕⠞⠥â â Ž" }, { "input": "scrounge", "output": "⠎⠉⠗⠳â â ›â ‘" }, { "input": "scrounged", "output": "⠎⠉⠗⠳â â ›â «" }, { "input": "scrounger", "output": "⠎⠉⠗⠳â â ›â »" }, { "input": "scroungers", "output": "⠎⠉⠗⠳â â ›â »â Ž" }, { "input": "scrounges", "output": "⠎⠉⠗⠳â â ›â ‘â Ž" }, { "input": "scrounging", "output": "⠎⠉⠗⠳â â ›â ¬" }, { "input": "scrub", "output": "⠎⠉⠗⠥⠃" }, { "input": "scrubbed", "output": "⠎⠉⠗⠥⠆⠫" }, { "input": "scrubber", "output": "⠎⠉⠗⠥⠆⠻" }, { "input": "scrubbers", "output": "⠎⠉⠗⠥⠆⠻⠎" }, { "input": "scrubbier", "output": "⠎⠉⠗⠥⠆⠊⠻" }, { "input": "scrubbiest", "output": "⠎⠉⠗⠥⠆⠊⠑⠌" }, { "input": "scrubbing", "output": "⠎⠉⠗⠥⠆⠬" }, { "input": "scrubby", "output": "⠎⠉⠗⠥⠆⠽" }, { "input": "scrubs", "output": "⠎⠉⠗⠥⠃⠎" }, { "input": "scruff", "output": "⠎⠉⠗⠥⠋⠋" }, { "input": "scruffier", "output": "⠎⠉⠗⠥⠖⠊⠻" }, { "input": "scruffiest", "output": "⠎⠉⠗⠥⠖⠊⠑⠌" }, { "input": "scruffs", "output": "⠎⠉⠗⠥⠖⠎" }, { "input": "scruffy", "output": "⠎⠉⠗⠥⠖⠽" }, { "input": "scrumptious", "output": "⠎⠉⠗⠥â â â žâ Šâ ³â Ž" }, { "input": "scrunch", "output": "⠎⠉⠗⠥â â ¡" }, { "input": "scrunched", "output": "⠎⠉⠗⠥â â ¡â «" }, { "input": "scrunches", "output": "⠎⠉⠗⠥â â ¡â ‘â Ž" }, { "input": "scrunching", "output": "⠎⠉⠗⠥â â ¡â ¬" }, { "input": "scruple", "output": "⠎⠉⠗⠥â â ‡â ‘" }, { "input": "scrupled", "output": "⠎⠉⠗⠥â â ‡â «" }, { "input": "scruples", "output": "⠎⠉⠗⠥â â ‡â ‘â Ž" }, { "input": "scrupling", "output": "⠎⠉⠗⠥â â ‡â ¬" }, { "input": "scrupulous", "output": "⠎⠉⠗⠥â â ¥â ‡â ³â Ž" }, { "input": "scrupulously", "output": "⠎⠉⠗⠥â â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "scrutinize", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠑" }, { "input": "scrutinized", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠫" }, { "input": "scrutinizes", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠑⠎" }, { "input": "scrutinizing", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠬" }, { "input": "scrutiny", "output": "⠎⠉⠗⠥⠞⠔⠽" }, { "input": "scuba", "output": "⠎⠉⠥⠃â " }, { "input": "scubaed", "output": "⠎⠉⠥⠃â â «" }, { "input": "scubaing", "output": "⠎⠉⠥⠃â â ¬" }, { "input": "scubas", "output": "⠎⠉⠥⠃â â Ž" }, { "input": "scud", "output": "⠎⠉⠥⠙" }, { "input": "scudded", "output": "⠎⠉⠥⠙⠙⠫" }, { "input": "scudding", "output": "⠎⠉⠥⠙⠙⠬" }, { "input": "scuds", "output": "⠎⠉⠥⠙⠎" }, { "input": "scuff", "output": "⠎⠉⠥⠋⠋" }, { "input": "scuffed", "output": "⠎⠉⠥⠖⠫" }, { "input": "scuffing", "output": "⠎⠉⠥⠖⠬" }, { "input": "scuffle", "output": "⠎⠉⠥⠖⠇⠑" }, { "input": "scuffled", "output": "⠎⠉⠥⠖⠇⠫" }, { "input": "scuffles", "output": "⠎⠉⠥⠖⠇⠑⠎" }, { "input": "scuffling", "output": "⠎⠉⠥⠖⠇⠬" }, { "input": "scuffs", "output": "⠎⠉⠥⠖⠎" }, { "input": "scull", "output": "⠎⠉⠥⠇⠇" }, { "input": "sculled", "output": "⠎⠉⠥⠇⠇⠫" }, { "input": "sculleries", "output": "⠎⠉⠥⠇⠇⠻⠊⠑⠎" }, { "input": "scullery", "output": "⠎⠉⠥⠇⠇⠻⠽" }, { "input": "sculling", "output": "⠎⠉⠥⠇⠇⠬" }, { "input": "scullion", "output": "⠎⠉⠥⠇⠇⠊⠕â " }, { "input": "scullions", "output": "⠎⠉⠥⠇⠇⠊⠕â â Ž" }, { "input": "sculls", "output": "⠎⠉⠥⠇⠇⠎" }, { "input": "sculpt", "output": "⠎⠉⠥⠇â â ž" }, { "input": "sculpted", "output": "⠎⠉⠥⠇â â žâ «" }, { "input": "sculpting", "output": "⠎⠉⠥⠇â â žâ ¬" }, { "input": "sculptor", "output": "⠎⠉⠥⠇â â žâ •â —" }, { "input": "sculptors", "output": "⠎⠉⠥⠇â â žâ •â —â Ž" }, { "input": "sculpts", "output": "⠎⠉⠥⠇â â žâ Ž" }, { "input": "sculptural", "output": "⠎⠉⠥⠇â â žâ ¥â —â â ‡" }, { "input": "sculpture", "output": "⠎⠉⠥⠇â â žâ ¥â —â ‘" }, { "input": "sculptured", "output": "⠎⠉⠥⠇â â žâ ¥â —â «" }, { "input": "sculptures", "output": "⠎⠉⠥⠇â â žâ ¥â —â ‘â Ž" }, { "input": "sculpturing", "output": "⠎⠉⠥⠇â â žâ ¥â —â ¬" }, { "input": "scum", "output": "⠎⠉⠥â " }, { "input": "scumbag", "output": "⠎⠉⠥â â ƒâ â ›" }, { "input": "scumbags", "output": "⠎⠉⠥â â ƒâ â ›â Ž" }, { "input": "scummed", "output": "⠎⠉⠥â â â «" }, { "input": "scummier", "output": "⠎⠉⠥â â â Šâ »" }, { "input": "scummiest", "output": "⠎⠉⠥â â â Šâ ‘â Œ" }, { "input": "scumming", "output": "⠎⠉⠥â â â ¬" }, { "input": "scummy", "output": "⠎⠉⠥â â â ½" }, { "input": "scums", "output": "⠎⠉⠥â â Ž" }, { "input": "scupper", "output": "⠎⠉⠥â â â »" }, { "input": "scuppered", "output": "⠎⠉⠥â â â »â «" }, { "input": "scuppering", "output": "⠎⠉⠥â â â »â ¬" }, { "input": "scuppers", "output": "⠎⠉⠥â â â »â Ž" }, { "input": "scurf", "output": "⠎⠉⠥⠗⠋" }, { "input": "scurfier", "output": "⠎⠉⠥⠗⠋⠊⠻" }, { "input": "scurfiest", "output": "⠎⠉⠥⠗⠋⠊⠑⠌" }, { "input": "scurfy", "output": "⠎⠉⠥⠗⠋⠽" }, { "input": "scurried", "output": "⠎⠉⠥⠗⠗⠊⠫" }, { "input": "scurries", "output": "⠎⠉⠥⠗⠗⠊⠑⠎" }, { "input": "scurrilous", "output": "⠎⠉⠥⠗⠗⠊⠇⠳⠎" }, { "input": "scurrilously", "output": "⠎⠉⠥⠗⠗⠊⠇⠳⠎⠇⠽" }, { "input": "scurry", "output": "⠎⠉⠥⠗⠗⠽" }, { "input": "scurrying", "output": "⠎⠉⠥⠗⠗⠽⠬" }, { "input": "scurvier", "output": "⠎⠉⠥⠗⠧⠊⠻" }, { "input": "scurviest", "output": "⠎⠉⠥⠗⠧⠊⠑⠌" }, { "input": "scurvy", "output": "⠎⠉⠥⠗⠧⠽" }, { "input": "scuttle", "output": "⠎⠉⠥⠞⠞⠇⠑" }, { "input": "scuttlebutt", "output": "⠎⠉⠥⠞⠞⠇⠑⠃⠥⠞⠞" }, { "input": "scuttled", "output": "⠎⠉⠥⠞⠞⠇⠫" }, { "input": "scuttles", "output": "⠎⠉⠥⠞⠞⠇⠑⠎" }, { "input": "scuttling", "output": "⠎⠉⠥⠞⠞⠇⠬" }, { "input": "scuzzier", "output": "⠎⠉⠥⠵⠵⠊⠻" }, { "input": "scuzziest", "output": "⠎⠉⠥⠵⠵⠊⠑⠌" }, { "input": "scuzzy", "output": "⠎⠉⠥⠵⠵⠽" }, { "input": "scythe", "output": "⠎⠉⠽⠮" }, { "input": "scythed", "output": "⠎⠉⠽⠮⠙" }, { "input": "scythes", "output": "⠎⠉⠽⠮⠎" }, { "input": "scything", "output": "⠎⠉⠽⠹⠬" }, { "input": "sea", "output": "â Žâ ‘â " }, { "input": "seabed", "output": "⠎⠂⠃⠫" }, { "input": "seabeds", "output": "⠎⠂⠃⠫⠎" }, { "input": "seabird", "output": "⠎⠂⠃⠊⠗⠙" }, { "input": "seabirds", "output": "⠎⠂⠃⠊⠗⠙⠎" }, { "input": "seaboard", "output": "⠎⠂⠃⠕⠜⠙" }, { "input": "seaboards", "output": "⠎⠂⠃⠕⠜⠙⠎" }, { "input": "seacoast", "output": "⠎⠂⠉⠕â â Œ" }, { "input": "seacoasts", "output": "⠎⠂⠉⠕â â Œâ Ž" }, { "input": "seafarer", "output": "⠎⠂⠋⠜⠻" }, { "input": "seafarers", "output": "⠎⠂⠋⠜⠻⠎" }, { "input": "seafaring", "output": "⠎⠂⠋⠜⠬" }, { "input": "seafood", "output": "â Žâ ‚â ‹â •â •â ™" }, { "input": "seagoing", "output": "⠎⠂⠛⠕⠬" }, { "input": "seal", "output": "â Žâ ‚â ‡" }, { "input": "sealant", "output": "â Žâ ‚â ‡â â â ž" }, { "input": "sealants", "output": "â Žâ ‚â ‡â â â žâ Ž" }, { "input": "sealed", "output": "⠎⠂⠇⠫" }, { "input": "sealer", "output": "⠎⠂⠇⠻" }, { "input": "sealers", "output": "⠎⠂⠇⠻⠎" }, { "input": "sealing", "output": "⠎⠂⠇⠬" }, { "input": "seals", "output": "⠎⠂⠇⠎" }, { "input": "sealskin", "output": "⠎⠂⠇⠎⠅⠔" }, { "input": "seam", "output": "â Žâ ‚â " }, { "input": "seaman", "output": "â Žâ ‚â â â " }, { "input": "seamanship", "output": "â Žâ ‚â â â â ©â Šâ " }, { "input": "seamed", "output": "â Žâ ‚â â «" }, { "input": "seamen", "output": "â Žâ ‚â â ¢" }, { "input": "seamier", "output": "â Žâ ‚â â Šâ »" }, { "input": "seamiest", "output": "â Žâ ‚â â Šâ ‘â Œ" }, { "input": "seaming", "output": "â Žâ ‚â â ¬" }, { "input": "seamless", "output": "â Žâ ‚â â ¨â Ž" }, { "input": "seams", "output": "â Žâ ‚â â Ž" }, { "input": "seamstress", "output": "â Žâ ‚â â Œâ —â ‘â Žâ Ž" }, { "input": "seamstresses", "output": "â Žâ ‚â â Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "seamy", "output": "â Žâ ‚â â ½" }, { "input": "seaplane", "output": "â Žâ ‚â â ‡â â â ‘" }, { "input": "seaplanes", "output": "â Žâ ‚â â ‡â â â ‘â Ž" }, { "input": "seaport", "output": "â Žâ ‚â â •â —â ž" }, { "input": "seaports", "output": "â Žâ ‚â â •â —â žâ Ž" }, { "input": "sear", "output": "â Žâ ‘â œ" }, { "input": "search", "output": "⠎⠑⠜⠡" }, { "input": "searched", "output": "⠎⠑⠜⠡⠫" }, { "input": "searcher", "output": "⠎⠑⠜⠡⠻" }, { "input": "searchers", "output": "⠎⠑⠜⠡⠻⠎" }, { "input": "searches", "output": "⠎⠑⠜⠡⠑⠎" }, { "input": "searching", "output": "⠎⠑⠜⠡⠬" }, { "input": "searchingly", "output": "⠎⠑⠜⠡⠬⠇⠽" }, { "input": "searchlight", "output": "⠎⠑⠜⠡⠇⠊⠣⠞" }, { "input": "searchlights", "output": "⠎⠑⠜⠡⠇⠊⠣⠞⠎" }, { "input": "seared", "output": "⠎⠑⠜⠫" }, { "input": "searing", "output": "⠎⠑⠜⠬" }, { "input": "sears", "output": "⠎⠑⠜⠎" }, { "input": "seas", "output": "â Žâ ‚â Ž" }, { "input": "seascape", "output": "â Žâ ‚â Žâ ‰â â â ‘" }, { "input": "seascapes", "output": "â Žâ ‚â Žâ ‰â â â ‘â Ž" }, { "input": "seashell", "output": "⠎⠂⠩⠑⠇⠇" }, { "input": "seashells", "output": "⠎⠂⠩⠑⠇⠇⠎" }, { "input": "seashore", "output": "â Žâ ‚â ©â •â —â ‘" }, { "input": "seashores", "output": "â Žâ ‚â ©â •â —â ‘â Ž" }, { "input": "seasick", "output": "⠎⠂⠎⠊⠉⠅" }, { "input": "seasickness", "output": "⠎⠂⠎⠊⠉⠅⠰⠎" }, { "input": "seaside", "output": "⠎⠂⠎⠊⠙⠑" }, { "input": "seasides", "output": "⠎⠂⠎⠊⠙⠑⠎" }, { "input": "season", "output": "â Žâ ‚â Žâ •â " }, { "input": "seasonable", "output": "â Žâ ‚â Žâ •â â â ƒâ ‡â ‘" }, { "input": "seasonal", "output": "â Žâ ‚â Žâ •â â â ‡" }, { "input": "seasonally", "output": "â Žâ ‚â Žâ •â â â ‡â ‡â ½" }, { "input": "seasoned", "output": "â Žâ ‚â Žâ •â â «" }, { "input": "seasoning", "output": "â Žâ ‚â Žâ •â â ¬" }, { "input": "seasonings", "output": "â Žâ ‚â Žâ •â â ¬â Ž" }, { "input": "seasons", "output": "â Žâ ‚â Žâ •â â Ž" }, { "input": "seat", "output": "â Žâ ‚â ž" }, { "input": "seated", "output": "â Žâ ‚â žâ «" }, { "input": "seating", "output": "â Žâ ‚â žâ ¬" }, { "input": "seats", "output": "â Žâ ‚â žâ Ž" }, { "input": "seaward", "output": "⠎⠂⠺⠜⠙" }, { "input": "seawards", "output": "⠎⠂⠺⠜⠙⠎" }, { "input": "seaway", "output": "â Žâ ‚â ºâ â ½" }, { "input": "seaways", "output": "â Žâ ‚â ºâ â ½â Ž" }, { "input": "seaweed", "output": "⠎⠂⠺⠑⠫" }, { "input": "seaworthier", "output": "⠎⠂⠺⠕⠗⠹⠊⠻" }, { "input": "seaworthiest", "output": "⠎⠂⠺⠕⠗⠹⠊⠑⠌" }, { "input": "seaworthy", "output": "⠎⠂⠺⠕⠗⠹⠽" }, { "input": "sebaceous", "output": "â Žâ ‘â ƒâ â ‰â ‘⠳⠎" }, { "input": "secede", "output": "⠎⠑⠉⠫⠑" }, { "input": "seceded", "output": "⠎⠑⠉⠫⠫" }, { "input": "secedes", "output": "⠎⠑⠉⠫⠑⠎" }, { "input": "seceding", "output": "⠎⠑⠉⠫⠬" }, { "input": "secession", "output": "⠎⠑⠉⠑⠎⠨â " }, { "input": "secessionist", "output": "⠎⠑⠉⠑⠎⠨â â Šâ Œ" }, { "input": "secessionists", "output": "⠎⠑⠉⠑⠎⠨â â Šâ Œâ Ž" }, { "input": "seclude", "output": "⠎⠑⠉⠇⠥⠙⠑" }, { "input": "secluded", "output": "⠎⠑⠉⠇⠥⠙⠫" }, { "input": "secludes", "output": "⠎⠑⠉⠇⠥⠙⠑⠎" }, { "input": "secluding", "output": "⠎⠑⠉⠇⠥⠙⠬" }, { "input": "seclusion", "output": "⠎⠑⠉⠇⠥⠨â " }, { "input": "seclusive", "output": "⠎⠑⠉⠇⠥⠎⠊⠧⠑" }, { "input": "second", "output": "⠎⠑⠉⠕â â ™" }, { "input": "secondaries", "output": "⠎⠑⠉⠕â â ™â œâ Šâ ‘â Ž" }, { "input": "secondarily", "output": "⠎⠑⠉⠕â â ™â œâ Šâ ‡â ½" }, { "input": "secondary", "output": "⠎⠑⠉⠕â â ™â œâ ½" }, { "input": "seconded", "output": "⠎⠑⠉⠕â â ™â «" }, { "input": "secondhand", "output": "⠎⠑⠉⠕â â ™â “â ¯" }, { "input": "seconding", "output": "⠎⠑⠉⠕â â ™â ¬" }, { "input": "secondly", "output": "⠎⠑⠉⠕â â ™â ‡â ½" }, { "input": "seconds", "output": "⠎⠑⠉⠕â â ™â Ž" }, { "input": "secrecy", "output": "⠎⠑⠉⠗⠑⠉⠽" }, { "input": "secret", "output": "⠎⠑⠉⠗⠑⠞" }, { "input": "secretarial", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â ‡" }, { "input": "secretariat", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â ž" }, { "input": "secretariats", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â žâ Ž" }, { "input": "secretaries", "output": "⠎⠑⠉⠗⠑⠞⠜⠊⠑⠎" }, { "input": "secretary", "output": "⠎⠑⠉⠗⠑⠞⠜⠽" }, { "input": "secrete", "output": "⠎⠑⠉⠗⠑⠞⠑" }, { "input": "secreted", "output": "⠎⠑⠉⠗⠑⠞⠫" }, { "input": "secretes", "output": "⠎⠑⠉⠗⠑⠞⠑⠎" }, { "input": "secreting", "output": "⠎⠑⠉⠗⠑⠞⠬" }, { "input": "secretion", "output": "⠎⠑⠉⠗⠑⠰â " }, { "input": "secretions", "output": "⠎⠑⠉⠗⠑⠰â â Ž" }, { "input": "secretive", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑" }, { "input": "secretively", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑⠇⠽" }, { "input": "secretiveness", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑⠰⠎" }, { "input": "secretly", "output": "⠎⠑⠉⠗⠑⠞⠇⠽" }, { "input": "secrets", "output": "⠎⠑⠉⠗⠑⠞⠎" }, { "input": "secs", "output": "⠎⠑⠉⠎" }, { "input": "sect", "output": "⠎⠑⠉⠞" }, { "input": "sectarian", "output": "⠎⠑⠉⠞⠜⠊â â " }, { "input": "sectarianism", "output": "⠎⠑⠉⠞⠜⠊â â â Šâ Žâ " }, { "input": "sectarians", "output": "⠎⠑⠉⠞⠜⠊â â â Ž" }, { "input": "section", "output": "⠎⠑⠉⠰â " }, { "input": "sectional", "output": "⠎⠑⠉⠰â â â ‡" }, { "input": "sectionalism", "output": "⠎⠑⠉⠰â â â ‡â Šâ Žâ " }, { "input": "sectionals", "output": "⠎⠑⠉⠰â â â ‡â Ž" }, { "input": "sectioned", "output": "⠎⠑⠉⠰â â «" }, { "input": "sectioning", "output": "⠎⠑⠉⠰â â ¬" }, { "input": "sections", "output": "⠎⠑⠉⠰â â Ž" }, { "input": "sector", "output": "⠎⠑⠉⠞⠕⠗" }, { "input": "sectors", "output": "⠎⠑⠉⠞⠕⠗⠎" }, { "input": "sects", "output": "⠎⠑⠉⠞⠎" }, { "input": "secular", "output": "⠎⠑⠉⠥⠇⠜" }, { "input": "secularism", "output": "⠎⠑⠉⠥⠇⠜⠊⠎â " }, { "input": "secularization", "output": "⠎⠑⠉⠥⠇⠜⠊⠵â â °â " }, { "input": "secularize", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠑" }, { "input": "secularized", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠫" }, { "input": "secularizes", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠑⠎" }, { "input": "secularizing", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠬" }, { "input": "secure", "output": "⠎⠑⠉⠥⠗⠑" }, { "input": "secured", "output": "⠎⠑⠉⠥⠗⠫" }, { "input": "securely", "output": "⠎⠑⠉⠥⠗⠑⠇⠽" }, { "input": "securer", "output": "⠎⠑⠉⠥⠗⠻" }, { "input": "secures", "output": "⠎⠑⠉⠥⠗⠑⠎" }, { "input": "securest", "output": "⠎⠑⠉⠥⠗⠑⠌" }, { "input": "securing", "output": "⠎⠑⠉⠥⠗⠬" }, { "input": "securities", "output": "⠎⠑⠉⠥⠗⠊⠞⠊⠑⠎" }, { "input": "security", "output": "⠎⠑⠉⠥⠗⠰⠽" }, { "input": "sedan", "output": "â Žâ «â â " }, { "input": "sedans", "output": "â Žâ «â â â Ž" }, { "input": "sedate", "output": "â Žâ «â â žâ ‘" }, { "input": "sedated", "output": "â Žâ «â â žâ «" }, { "input": "sedately", "output": "â Žâ «â â žâ ‘⠇⠽" }, { "input": "sedater", "output": "â Žâ «â â žâ »" }, { "input": "sedates", "output": "â Žâ «â â žâ ‘â Ž" }, { "input": "sedatest", "output": "â Žâ «â â žâ ‘â Œ" }, { "input": "sedating", "output": "â Žâ «â â žâ ¬" }, { "input": "sedation", "output": "â Žâ «â â °â " }, { "input": "sedative", "output": "â Žâ «â â žâ Šâ §â ‘" }, { "input": "sedatives", "output": "â Žâ «â â žâ Šâ §â ‘â Ž" }, { "input": "sedentary", "output": "⠎⠫⠢⠞⠜⠽" }, { "input": "sedge", "output": "⠎⠫⠛⠑" }, { "input": "sediment", "output": "â Žâ «â Šâ °â ž" }, { "input": "sedimentary", "output": "⠎⠫⠊⠰⠞⠜⠽" }, { "input": "sedimentation", "output": "â Žâ «â Šâ °â žâ â °â " }, { "input": "sediments", "output": "â Žâ «â Šâ °â žâ Ž" }, { "input": "sedition", "output": "â Žâ «â Šâ °â " }, { "input": "seditious", "output": "⠎⠫⠊⠞⠊⠳⠎" }, { "input": "seduce", "output": "⠎⠫⠥⠉⠑" }, { "input": "seduced", "output": "⠎⠫⠥⠉⠫" }, { "input": "seducer", "output": "⠎⠫⠥⠉⠻" }, { "input": "seducers", "output": "⠎⠫⠥⠉⠻⠎" }, { "input": "seduces", "output": "⠎⠫⠥⠉⠑⠎" }, { "input": "seducing", "output": "⠎⠫⠥⠉⠬" }, { "input": "seduction", "output": "⠎⠫⠥⠉⠰â " }, { "input": "seductions", "output": "⠎⠫⠥⠉⠰â â Ž" }, { "input": "seductive", "output": "⠎⠫⠥⠉⠞⠊⠧⠑" }, { "input": "seductively", "output": "⠎⠫⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "sedulous", "output": "⠎⠫⠥⠇⠳⠎" }, { "input": "see", "output": "â Žâ ‘â ‘" }, { "input": "seed", "output": "â Žâ ‘â «" }, { "input": "seeded", "output": "â Žâ ‘â «â «" }, { "input": "seedier", "output": "â Žâ ‘â «â Šâ »" }, { "input": "seediest", "output": "â Žâ ‘â «â Šâ ‘â Œ" }, { "input": "seediness", "output": "â Žâ ‘â «â Šâ °â Ž" }, { "input": "seeding", "output": "â Žâ ‘â «â ¬" }, { "input": "seedless", "output": "⠎⠑⠫⠨⠎" }, { "input": "seedling", "output": "⠎⠑⠫⠇⠬" }, { "input": "seedlings", "output": "⠎⠑⠫⠇⠬⠎" }, { "input": "seeds", "output": "â Žâ ‘â «â Ž" }, { "input": "seedy", "output": "â Žâ ‘â «â ½" }, { "input": "seeing", "output": "â Žâ ‘â ‘â ¬" }, { "input": "seeings", "output": "⠎⠑⠑⠬⠎" }, { "input": "seek", "output": "â Žâ ‘â ‘â …" }, { "input": "seeker", "output": "â Žâ ‘â ‘â …â »" }, { "input": "seekers", "output": "⠎⠑⠑⠅⠻⠎" }, { "input": "seeking", "output": "â Žâ ‘â ‘â …â ¬" }, { "input": "seeks", "output": "â Žâ ‘â ‘â …â Ž" }, { "input": "seem", "output": "â Žâ ‘â ‘â " }, { "input": "seemed", "output": "â Žâ ‘â ‘â â «" }, { "input": "seeming", "output": "â Žâ ‘â ‘â â ¬" }, { "input": "seemingly", "output": "â Žâ ‘â ‘â â ¬â ‡â ½" }, { "input": "seemlier", "output": "â Žâ ‘â ‘â â ‡â Šâ »" }, { "input": "seemliest", "output": "â Žâ ‘â ‘â â ‡â Šâ ‘â Œ" }, { "input": "seemliness", "output": "â Žâ ‘â ‘â â ‡â Šâ °â Ž" }, { "input": "seemly", "output": "â Žâ ‘â ‘â â ‡â ½" }, { "input": "seems", "output": "â Žâ ‘â ‘â â Ž" }, { "input": "seen", "output": "â Žâ ‘â ¢" }, { "input": "seep", "output": "â Žâ ‘â ‘â " }, { "input": "seepage", "output": "â Žâ ‘â ‘â â â ›â ‘" }, { "input": "seeped", "output": "â Žâ ‘â ‘â â «" }, { "input": "seeping", "output": "â Žâ ‘â ‘â â ¬" }, { "input": "seeps", "output": "â Žâ ‘â ‘â â Ž" }, { "input": "seer", "output": "â Žâ ‘â »" }, { "input": "seers", "output": "⠎⠑⠻⠎" }, { "input": "seersucker", "output": "⠎⠑⠻⠎⠥⠉⠅⠻" }, { "input": "sees", "output": "â Žâ ‘â ‘â Ž" }, { "input": "seesaw", "output": "â Žâ ‘â ‘â Žâ â º" }, { "input": "seesawed", "output": "â Žâ ‘â ‘â Žâ â ºâ «" }, { "input": "seesawing", "output": "â Žâ ‘â ‘â Žâ â ºâ ¬" }, { "input": "seesaws", "output": "â Žâ ‘â ‘â Žâ â ºâ Ž" }, { "input": "seethe", "output": "â Žâ ‘â ‘â ®" }, { "input": "seethed", "output": "⠎⠑⠑⠮⠙" }, { "input": "seethes", "output": "⠎⠑⠑⠮⠎" }, { "input": "seething", "output": "⠎⠑⠑⠹⠬" }, { "input": "segment", "output": "⠎⠑⠛⠰⠞" }, { "input": "segmentation", "output": "⠎⠑⠛⠰⠞â â °â " }, { "input": "segmented", "output": "⠎⠑⠛⠰⠞⠫" }, { "input": "segmenting", "output": "⠎⠑⠛⠰⠞⠬" }, { "input": "segments", "output": "⠎⠑⠛⠰⠞⠎" }, { "input": "segregate", "output": "⠎⠑⠛⠗⠑⠛â â žâ ‘" }, { "input": "segregated", "output": "⠎⠑⠛⠗⠑⠛â â žâ «" }, { "input": "segregates", "output": "⠎⠑⠛⠗⠑⠛â â žâ ‘â Ž" }, { "input": "segregating", "output": "⠎⠑⠛⠗⠑⠛â â žâ ¬" }, { "input": "segregation", "output": "⠎⠑⠛⠗⠑⠛â â °â " }, { "input": "segregationist", "output": "⠎⠑⠛⠗⠑⠛â â °â â Šâ Œ" }, { "input": "segregationists", "output": "⠎⠑⠛⠗⠑⠛â â °â â Šâ Œâ Ž" }, { "input": "segue", "output": "⠎⠑⠛⠥⠑" }, { "input": "segued", "output": "⠎⠑⠛⠥⠫" }, { "input": "segueing", "output": "⠎⠑⠛⠥⠑⠬" }, { "input": "segues", "output": "⠎⠑⠛⠥⠑⠎" }, { "input": "seismic", "output": "â Žâ ‘â Šâ Žâ â Šâ ‰" }, { "input": "seismically", "output": "â Žâ ‘â Šâ Žâ â Šâ ‰â â ‡â ‡â ½" }, { "input": "seismograph", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “" }, { "input": "seismographic", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â Šâ ‰" }, { "input": "seismographs", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â Ž" }, { "input": "seismologist", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠊⠌" }, { "input": "seismologists", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠊⠌⠎" }, { "input": "seismology", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠽" }, { "input": "seize", "output": "⠎⠑⠊⠵⠑" }, { "input": "seized", "output": "⠎⠑⠊⠵⠫" }, { "input": "seizes", "output": "⠎⠑⠊⠵⠑⠎" }, { "input": "seizing", "output": "⠎⠑⠊⠵⠬" }, { "input": "seizure", "output": "⠎⠑⠊⠵⠥⠗⠑" }, { "input": "seizures", "output": "⠎⠑⠊⠵⠥⠗⠑⠎" }, { "input": "seldom", "output": "⠎⠑⠇⠙⠕â " }, { "input": "select", "output": "⠎⠑⠇⠑⠉⠞" }, { "input": "selected", "output": "⠎⠑⠇⠑⠉⠞⠫" }, { "input": "selecting", "output": "⠎⠑⠇⠑⠉⠞⠬" }, { "input": "selection", "output": "⠎⠑⠇⠑⠉⠰â " }, { "input": "selections", "output": "⠎⠑⠇⠑⠉⠰â â Ž" }, { "input": "selective", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠑" }, { "input": "selectively", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "selectivity", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠰⠽" }, { "input": "selectman", "output": "⠎⠑⠇⠑⠉⠞â â â " }, { "input": "selectmen", "output": "⠎⠑⠇⠑⠉⠞â â ¢" }, { "input": "selector", "output": "⠎⠑⠇⠑⠉⠞⠕⠗" }, { "input": "selectors", "output": "⠎⠑⠇⠑⠉⠞⠕⠗⠎" }, { "input": "selects", "output": "⠎⠑⠇⠑⠉⠞⠎" }, { "input": "selenium", "output": "⠎⠑⠇⠢⠊⠥â " }, { "input": "self", "output": "⠎⠑⠇⠋" }, { "input": "selfish", "output": "⠎⠑⠇⠋⠊⠩" }, { "input": "selfishly", "output": "⠎⠑⠇⠋⠊⠩⠇⠽" }, { "input": "selfishness", "output": "⠎⠑⠇⠋⠊⠩⠰⠎" }, { "input": "selfless", "output": "⠎⠑⠇⠋⠨⠎" }, { "input": "selflessly", "output": "⠎⠑⠇⠋⠨⠎⠇⠽" }, { "input": "selflessness", "output": "⠎⠑⠇⠋⠨⠎⠰⠎" }, { "input": "selfsame", "output": "⠎⠑⠇⠋⠎â â â ‘" }, { "input": "sell", "output": "⠎⠑⠇⠇" }, { "input": "seller", "output": "⠎⠑⠇⠇⠻" }, { "input": "sellers", "output": "⠎⠑⠇⠇⠻⠎" }, { "input": "selling", "output": "⠎⠑⠇⠇⠬" }, { "input": "sellout", "output": "⠎⠑⠇⠇⠳⠞" }, { "input": "sellouts", "output": "⠎⠑⠇⠇⠳⠞⠎" }, { "input": "sells", "output": "⠎⠑⠇⠇⠎" }, { "input": "seltzer", "output": "⠎⠑⠇⠞⠵⠻" }, { "input": "selvage", "output": "⠎⠑⠇⠧â â ›â ‘" }, { "input": "selvages", "output": "⠎⠑⠇⠧â â ›â ‘â Ž" }, { "input": "selvedge", "output": "⠎⠑⠇⠧⠫⠛⠑" }, { "input": "selvedges", "output": "⠎⠑⠇⠧⠫⠛⠑⠎" }, { "input": "selves", "output": "⠎⠑⠇⠧⠑⠎" }, { "input": "semantic", "output": "â Žâ ‘â â â â žâ Šâ ‰" }, { "input": "semantically", "output": "â Žâ ‘â â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "semantics", "output": "â Žâ ‘â â â â žâ Šâ ‰â Ž" }, { "input": "semaphore", "output": "â Žâ ‘â â â â “â •â —â ‘" }, { "input": "semaphored", "output": "â Žâ ‘â â â â “â •â —â «" }, { "input": "semaphores", "output": "â Žâ ‘â â â â “â •â —â ‘â Ž" }, { "input": "semaphoring", "output": "â Žâ ‘â â â â “â •â —â ¬" }, { "input": "semblance", "output": "â Žâ ‘â â ƒâ ‡â ¨â ‘" }, { "input": "semblances", "output": "â Žâ ‘â â ƒâ ‡â ¨â ‘â Ž" }, { "input": "semen", "output": "â Žâ ‘â â ¢" }, { "input": "semester", "output": "â Žâ ‘â â ‘⠌⠻" }, { "input": "semesters", "output": "â Žâ ‘â â ‘⠌⠻⠎" }, { "input": "semi", "output": "â Žâ ‘â â Š" }, { "input": "semiannual", "output": "â Žâ ‘â â Šâ â â â ¥â â ‡" }, { "input": "semiautomatic", "output": "â Žâ ‘â â Šâ â ¥â žâ •â â â žâ Šâ ‰" }, { "input": "semiautomatics", "output": "â Žâ ‘â â Šâ â ¥â žâ •â â â žâ Šâ ‰â Ž" }, { "input": "semicircle", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠇⠑" }, { "input": "semicircles", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠇⠑⠎" }, { "input": "semicircular", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠥⠇⠜" }, { "input": "semicolon", "output": "â Žâ ‘â â Šâ ‰â •⠇⠕â " }, { "input": "semicolons", "output": "â Žâ ‘â â Šâ ‰â •⠇⠕â â Ž" }, { "input": "semiconductor", "output": "â Žâ ‘â â Šâ ‰â •â â ™â ¥â ‰â žâ •â —" }, { "input": "semiconductors", "output": "â Žâ ‘â â Šâ ‰â •â â ™â ¥â ‰â žâ •â —â Ž" }, { "input": "semiconscious", "output": "â Žâ ‘â â Šâ ‰â •â â Žâ ‰â Šâ ³â Ž" }, { "input": "semifinal", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡" }, { "input": "semifinalist", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Šâ Œ" }, { "input": "semifinalists", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Šâ Œâ Ž" }, { "input": "semifinals", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Ž" }, { "input": "semimonthlies", "output": "â Žâ ‘â â Šâ â •â â ¹â ‡â Šâ ‘â Ž" }, { "input": "semimonthly", "output": "â Žâ ‘â â Šâ â •â â ¹â ‡â ½" }, { "input": "seminal", "output": "â Žâ ‘â â ”â â ‡" }, { "input": "seminar", "output": "â Žâ ‘â â ”â œ" }, { "input": "seminarian", "output": "â Žâ ‘â â ”⠜⠊â â " }, { "input": "seminarians", "output": "â Žâ ‘â â ”⠜⠊â â â Ž" }, { "input": "seminaries", "output": "â Žâ ‘â â ”⠜⠊⠑⠎" }, { "input": "seminars", "output": "â Žâ ‘â â ”⠜⠎" }, { "input": "seminary", "output": "â Žâ ‘â â ”⠜⠽" }, { "input": "semipermeable", "output": "â Žâ ‘â â Šâ â »â â ‚⠃⠇⠑" }, { "input": "semiprecious", "output": "â Žâ ‘â â Šâ â —⠑⠉⠊⠳⠎" }, { "input": "semiprivate", "output": "â Žâ ‘â â Šâ â —â Šâ §â â žâ ‘" }, { "input": "semiprofessional", "output": "â Žâ ‘â â Šâ â —â ·â ‘â Žâ ¨â â â ‡" }, { "input": "semiprofessionals", "output": "â Žâ ‘â â Šâ â —â ·â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "semis", "output": "â Žâ ‘â â Šâ Ž" }, { "input": "semiskilled", "output": "â Žâ ‘â â Šâ Žâ …⠊⠇⠇⠫" }, { "input": "semitone", "output": "â Žâ ‘â â Šâ žâ â •" }, { "input": "semitones", "output": "â Žâ ‘â â Šâ žâ â •â Ž" }, { "input": "semitrailer", "output": "â Žâ ‘â â Šâ žâ —â â Šâ ‡â »" }, { "input": "semitrailers", "output": "â Žâ ‘â â Šâ žâ —â â Šâ ‡â »â Ž" }, { "input": "semitropical", "output": "â Žâ ‘â â Šâ žâ —â •â â Šâ ‰â â ‡" }, { "input": "semiweeklies", "output": "â Žâ ‘â â Šâ ºâ ‘⠑⠅⠇⠊⠑⠎" }, { "input": "semiweekly", "output": "â Žâ ‘â â Šâ ºâ ‘⠑⠅⠇⠽" }, { "input": "senate", "output": "â Žâ ¢â â žâ ‘" }, { "input": "senates", "output": "â Žâ ¢â â žâ ‘â Ž" }, { "input": "senator", "output": "â Žâ ¢â â žâ •â —" }, { "input": "senatorial", "output": "â Žâ ¢â â žâ •â —â Šâ â ‡" }, { "input": "senators", "output": "â Žâ ¢â â žâ •â —â Ž" }, { "input": "send", "output": "⠎⠢⠙" }, { "input": "sender", "output": "⠎⠢⠙⠻" }, { "input": "senders", "output": "⠎⠢⠙⠻⠎" }, { "input": "sending", "output": "⠎⠢⠙⠬" }, { "input": "sends", "output": "⠎⠢⠙⠎" }, { "input": "senile", "output": "⠎⠢⠊⠇⠑" }, { "input": "senility", "output": "⠎⠢⠊⠇⠰⠽" }, { "input": "senior", "output": "⠎⠢⠊⠕⠗" }, { "input": "seniority", "output": "⠎⠢⠊⠕⠗⠰⠽" }, { "input": "seniors", "output": "⠎⠢⠊⠕⠗⠎" }, { "input": "senna", "output": "â Žâ ¢â â " }, { "input": "sensation", "output": "⠎⠢⠎â â °â " }, { "input": "sensational", "output": "⠎⠢⠎â â °â â â ‡" }, { "input": "sensationalism", "output": "⠎⠢⠎â â °â â â ‡â Šâ Žâ " }, { "input": "sensationalist", "output": "⠎⠢⠎â â °â â â ‡â Šâ Œ" }, { "input": "sensationalists", "output": "⠎⠢⠎â â °â â â ‡â Šâ Œâ Ž" }, { "input": "sensationally", "output": "⠎⠢⠎â â °â â â ‡â ‡â ½" }, { "input": "sensations", "output": "⠎⠢⠎â â °â â Ž" }, { "input": "sense", "output": "⠎⠢⠎⠑" }, { "input": "sensed", "output": "⠎⠢⠎⠫" }, { "input": "senseless", "output": "⠎⠢⠎⠑⠨⠎" }, { "input": "senselessly", "output": "⠎⠢⠎⠑⠨⠎⠇⠽" }, { "input": "senselessness", "output": "⠎⠢⠎⠑⠨⠎⠰⠎" }, { "input": "senses", "output": "⠎⠢⠎⠑⠎" }, { "input": "sensibilities", "output": "⠎⠢⠎⠊⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "sensibility", "output": "⠎⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "sensible", "output": "⠎⠢⠎⠊⠃⠇⠑" }, { "input": "sensibly", "output": "⠎⠢⠎⠊⠃⠇⠽" }, { "input": "sensing", "output": "⠎⠢⠎⠬" }, { "input": "sensitive", "output": "⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "sensitively", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "sensitiveness", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠰⠎" }, { "input": "sensitives", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠎" }, { "input": "sensitivities", "output": "⠎⠢⠎⠊⠞⠊⠧⠊⠞⠊⠑⠎" }, { "input": "sensitivity", "output": "⠎⠢⠎⠊⠞⠊⠧⠰⠽" }, { "input": "sensitization", "output": "⠎⠢⠎⠊⠞⠊⠵â â °â " }, { "input": "sensitize", "output": "⠎⠢⠎⠊⠞⠊⠵⠑" }, { "input": "sensitized", "output": "⠎⠢⠎⠊⠞⠊⠵⠫" }, { "input": "sensitizes", "output": "⠎⠢⠎⠊⠞⠊⠵⠑⠎" }, { "input": "sensitizing", "output": "⠎⠢⠎⠊⠞⠊⠵⠬" }, { "input": "sensor", "output": "⠎⠢⠎⠕⠗" }, { "input": "sensors", "output": "⠎⠢⠎⠕⠗⠎" }, { "input": "sensory", "output": "⠎⠢⠎⠕⠗⠽" }, { "input": "sensual", "output": "⠎⠢⠎⠥â â ‡" }, { "input": "sensuality", "output": "⠎⠢⠎⠥â â ‡â °â ½" }, { "input": "sensually", "output": "⠎⠢⠎⠥â â ‡â ‡â ½" }, { "input": "sensuous", "output": "⠎⠢⠎⠥⠳⠎" }, { "input": "sensuously", "output": "⠎⠢⠎⠥⠳⠎⠇⠽" }, { "input": "sensuousness", "output": "⠎⠢⠎⠥⠳⠎⠰⠎" }, { "input": "sent", "output": "⠎⠢⠞" }, { "input": "sentence", "output": "⠎⠢⠞⠰⠑" }, { "input": "sentenced", "output": "⠎⠢⠞⠰⠑⠙" }, { "input": "sentences", "output": "⠎⠢⠞⠰⠑⠎" }, { "input": "sentencing", "output": "⠎⠢⠞⠢⠉⠬" }, { "input": "sententious", "output": "⠎⠢⠞⠢⠞⠊⠳⠎" }, { "input": "sentience", "output": "⠎⠢⠞⠊⠰⠑" }, { "input": "sentient", "output": "⠎⠢⠞⠊⠢⠞" }, { "input": "sentiment", "output": "⠎⠢⠞⠊⠰⠞" }, { "input": "sentimental", "output": "⠎⠢⠞⠊⠰⠞â â ‡" }, { "input": "sentimentalism", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Žâ " }, { "input": "sentimentalist", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Œ" }, { "input": "sentimentalists", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Œâ Ž" }, { "input": "sentimentality", "output": "⠎⠢⠞⠊⠰⠞â â ‡â °â ½" }, { "input": "sentimentalize", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ ‘" }, { "input": "sentimentalized", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ «" }, { "input": "sentimentalizes", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ ‘â Ž" }, { "input": "sentimentalizing", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ ¬" }, { "input": "sentimentally", "output": "⠎⠢⠞⠊⠰⠞â â ‡â ‡â ½" }, { "input": "sentiments", "output": "⠎⠢⠞⠊⠰⠞⠎" }, { "input": "sentinel", "output": "⠎⠢⠞⠔⠑⠇" }, { "input": "sentinels", "output": "⠎⠢⠞⠔⠑⠇⠎" }, { "input": "sentries", "output": "⠎⠢⠞⠗⠊⠑⠎" }, { "input": "sentry", "output": "⠎⠢⠞⠗⠽" }, { "input": "sepal", "output": "â Žâ ‘â â â ‡" }, { "input": "sepals", "output": "â Žâ ‘â â â ‡â Ž" }, { "input": "separable", "output": "â Žâ ‘â â œâ â ƒâ ‡â ‘" }, { "input": "separate", "output": "â Žâ ‘â â œâ â žâ ‘" }, { "input": "separated", "output": "â Žâ ‘â â œâ â žâ «" }, { "input": "separately", "output": "â Žâ ‘â â œâ â žâ ‘⠇⠽" }, { "input": "separates", "output": "â Žâ ‘â â œâ â žâ ‘â Ž" }, { "input": "separating", "output": "â Žâ ‘â â œâ â žâ ¬" }, { "input": "separation", "output": "â Žâ ‘â â œâ â °â " }, { "input": "separations", "output": "â Žâ ‘â â œâ â °â â Ž" }, { "input": "separatism", "output": "â Žâ ‘â â œâ â žâ Šâ Žâ " }, { "input": "separatist", "output": "â Žâ ‘â â œâ â žâ Šâ Œ" }, { "input": "separatists", "output": "â Žâ ‘â â œâ â žâ Šâ Œâ Ž" }, { "input": "separator", "output": "â Žâ ‘â â œâ â žâ •â —" }, { "input": "separators", "output": "â Žâ ‘â â œâ â žâ •â —â Ž" }, { "input": "sepia", "output": "â Žâ ‘â â Šâ " }, { "input": "sepsis", "output": "â Žâ ‘â â Žâ Šâ Ž" }, { "input": "septa", "output": "â Žâ ‘â â žâ " }, { "input": "septet", "output": "â Žâ ‘â â žâ ‘â ž" }, { "input": "septets", "output": "â Žâ ‘â â žâ ‘â žâ Ž" }, { "input": "septette", "output": "â Žâ ‘â â žâ ‘â žâ žâ ‘" }, { "input": "septettes", "output": "â Žâ ‘â â žâ ‘â žâ žâ ‘â Ž" }, { "input": "septic", "output": "â Žâ ‘â â žâ Šâ ‰" }, { "input": "septicemia", "output": "â Žâ ‘â â žâ Šâ ‰â ‘â â Šâ " }, { "input": "septuagenarian", "output": "â Žâ ‘â â žâ ¥â â ›â ¢â œâ Šâ â " }, { "input": "septuagenarians", "output": "â Žâ ‘â â žâ ¥â â ›â ¢â œâ Šâ â â Ž" }, { "input": "septum", "output": "â Žâ ‘â â žâ ¥â " }, { "input": "septums", "output": "â Žâ ‘â â žâ ¥â â Ž" }, { "input": "sepulcher", "output": "â Žâ ‘â â ¥â ‡â ¡â »" }, { "input": "sepulchered", "output": "â Žâ ‘â â ¥â ‡â ¡â »â «" }, { "input": "sepulchering", "output": "â Žâ ‘â â ¥â ‡â ¡â »â ¬" }, { "input": "sepulchers", "output": "â Žâ ‘â â ¥â ‡â ¡â »â Ž" }, { "input": "sepulchral", "output": "â Žâ ‘â â ¥â ‡â ¡â —â â ‡" }, { "input": "sequel", "output": "⠎⠑⠟⠥⠑⠇" }, { "input": "sequels", "output": "⠎⠑⠟⠥⠑⠇⠎" }, { "input": "sequence", "output": "⠎⠑⠟⠥⠰⠑" }, { "input": "sequenced", "output": "⠎⠑⠟⠥⠰⠑⠙" }, { "input": "sequencer", "output": "⠎⠑⠟⠥⠰⠑⠗" }, { "input": "sequencers", "output": "⠎⠑⠟⠥⠰⠑⠗⠎" }, { "input": "sequences", "output": "⠎⠑⠟⠥⠰⠑⠎" }, { "input": "sequencing", "output": "⠎⠑⠟⠥⠢⠉⠬" }, { "input": "sequential", "output": "⠎⠑⠟⠥⠢⠞⠊â â ‡" }, { "input": "sequentially", "output": "⠎⠑⠟⠥⠢⠞⠊â â ‡â ‡â ½" }, { "input": "sequester", "output": "⠎⠑⠟⠥⠑⠌⠻" }, { "input": "sequestered", "output": "⠎⠑⠟⠥⠑⠌⠻⠫" }, { "input": "sequestering", "output": "⠎⠑⠟⠥⠑⠌⠻⠬" }, { "input": "sequesters", "output": "⠎⠑⠟⠥⠑⠌⠻⠎" }, { "input": "sequestration", "output": "⠎⠑⠟⠥⠑⠌⠗â â °â " }, { "input": "sequestrations", "output": "⠎⠑⠟⠥⠑⠌⠗â â °â â Ž" }, { "input": "sequin", "output": "⠎⠑⠟⠥⠔" }, { "input": "sequined", "output": "⠎⠑⠟⠥⠔⠫" }, { "input": "sequins", "output": "⠎⠑⠟⠥⠔⠎" }, { "input": "sequoia", "output": "⠎⠑⠟⠥⠕⠊â " }, { "input": "sequoias", "output": "⠎⠑⠟⠥⠕⠊â â Ž" }, { "input": "sera", "output": "â Žâ »â " }, { "input": "seraglio", "output": "â Žâ »â â ›â ‡â Šâ •" }, { "input": "seraglios", "output": "â Žâ »â â ›â ‡â Šâ •â Ž" }, { "input": "serape", "output": "â Žâ »â â â ‘" }, { "input": "serapes", "output": "â Žâ »â â â ‘â Ž" }, { "input": "seraph", "output": "â Žâ »â â â “" }, { "input": "seraphic", "output": "â Žâ »â â â “â Šâ ‰" }, { "input": "seraphim", "output": "â Žâ »â â â “â Šâ " }, { "input": "seraphs", "output": "â Žâ »â â â “â Ž" }, { "input": "sere", "output": "⠎⠻⠑" }, { "input": "serenade", "output": "⠎⠻⠢â â ™â ‘" }, { "input": "serenaded", "output": "⠎⠻⠢â â ™â «" }, { "input": "serenades", "output": "⠎⠻⠢â â ™â ‘â Ž" }, { "input": "serenading", "output": "⠎⠻⠢â â ™â ¬" }, { "input": "serendipitous", "output": "⠎⠻⠢⠙⠊â â Šâ žâ ³â Ž" }, { "input": "serendipity", "output": "⠎⠻⠢⠙⠊â â °â ½" }, { "input": "serene", "output": "⠎⠻⠢⠑" }, { "input": "serenely", "output": "⠎⠻⠢⠑⠇⠽" }, { "input": "sereneness", "output": "⠎⠻⠢⠑⠰⠎" }, { "input": "serener", "output": "⠎⠻⠢⠻" }, { "input": "serenest", "output": "⠎⠻⠢⠑⠌" }, { "input": "serenity", "output": "⠎⠻⠢⠰⠽" }, { "input": "serer", "output": "⠎⠻⠻" }, { "input": "serest", "output": "⠎⠻⠑⠌" }, { "input": "serf", "output": "⠎⠻⠋" }, { "input": "serfdom", "output": "⠎⠻⠋⠙⠕â " }, { "input": "serfs", "output": "⠎⠻⠋⠎" }, { "input": "serge", "output": "⠎⠻⠛⠑" }, { "input": "sergeant", "output": "⠎⠻⠛⠂â â ž" }, { "input": "sergeants", "output": "⠎⠻⠛⠂â â žâ Ž" }, { "input": "serial", "output": "⠎⠻⠊â â ‡" }, { "input": "serialization", "output": "⠎⠻⠊â â ‡â Šâ µâ â °â " }, { "input": "serialize", "output": "⠎⠻⠊â â ‡â Šâ µâ ‘" }, { "input": "serialized", "output": "⠎⠻⠊â â ‡â Šâ µâ «" }, { "input": "serializes", "output": "⠎⠻⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "serializing", "output": "⠎⠻⠊â â ‡â Šâ µâ ¬" }, { "input": "serially", "output": "⠎⠻⠊â â ‡â ‡â ½" }, { "input": "serials", "output": "⠎⠻⠊â â ‡â Ž" }, { "input": "series", "output": "⠎⠻⠊⠑⠎" }, { "input": "serious", "output": "⠎⠻⠊⠳⠎" }, { "input": "seriously", "output": "⠎⠻⠊⠳⠎⠇⠽" }, { "input": "seriousness", "output": "⠎⠻⠊⠳⠎⠰⠎" }, { "input": "sermon", "output": "â Žâ »â â •â " }, { "input": "sermonize", "output": "â Žâ »â â •â â Šâ µâ ‘" }, { "input": "sermonized", "output": "â Žâ »â â •â â Šâ µâ «" }, { "input": "sermonizes", "output": "â Žâ »â â •â â Šâ µâ ‘â Ž" }, { "input": "sermonizing", "output": "â Žâ »â â •â â Šâ µâ ¬" }, { "input": "sermons", "output": "â Žâ »â â •â â Ž" }, { "input": "serous", "output": "⠎⠻⠳⠎" }, { "input": "serpent", "output": "â Žâ »â â ¢â ž" }, { "input": "serpentine", "output": "â Žâ »â â ¢â žâ ”â ‘" }, { "input": "serpents", "output": "â Žâ »â â ¢â žâ Ž" }, { "input": "serrated", "output": "⠎⠻⠗â â žâ «" }, { "input": "serried", "output": "⠎⠻⠗⠊⠫" }, { "input": "serum", "output": "⠎⠻⠥â " }, { "input": "serums", "output": "⠎⠻⠥â â Ž" }, { "input": "servant", "output": "⠎⠻⠧â â â ž" }, { "input": "servants", "output": "⠎⠻⠧â â â žâ Ž" }, { "input": "serve", "output": "⠎⠻⠧⠑" }, { "input": "served", "output": "⠎⠻⠧⠫" }, { "input": "server", "output": "⠎⠻⠧⠻" }, { "input": "servers", "output": "⠎⠻⠧⠻⠎" }, { "input": "serves", "output": "⠎⠻⠧⠑⠎" }, { "input": "service", "output": "⠎⠻⠧⠊⠉⠑" }, { "input": "serviceable", "output": "⠎⠻⠧⠊⠉⠂⠃⠇⠑" }, { "input": "serviced", "output": "⠎⠻⠧⠊⠉⠫" }, { "input": "serviceman", "output": "⠎⠻⠧⠊⠉⠑â â â " }, { "input": "servicemen", "output": "⠎⠻⠧⠊⠉⠑â â ¢" }, { "input": "services", "output": "⠎⠻⠧⠊⠉⠑⠎" }, { "input": "servicewoman", "output": "⠎⠻⠧⠊⠉⠑⠺⠕â â â " }, { "input": "servicewomen", "output": "⠎⠻⠧⠊⠉⠑⠺⠕â â ¢" }, { "input": "servicing", "output": "⠎⠻⠧⠊⠉⠬" }, { "input": "serviette", "output": "⠎⠻⠧⠊⠑⠞⠞⠑" }, { "input": "serviettes", "output": "⠎⠻⠧⠊⠑⠞⠞⠑⠎" }, { "input": "servile", "output": "⠎⠻⠧⠊⠇⠑" }, { "input": "servility", "output": "⠎⠻⠧⠊⠇⠰⠽" }, { "input": "serving", "output": "⠎⠻⠧⠬" }, { "input": "servings", "output": "⠎⠻⠧⠬⠎" }, { "input": "servitude", "output": "⠎⠻⠧⠊⠞⠥⠙⠑" }, { "input": "servo", "output": "⠎⠻⠧⠕" }, { "input": "servomechanism", "output": "⠎⠻⠧⠕â â ‘â ¡â â â Šâ Žâ " }, { "input": "servomechanisms", "output": "⠎⠻⠧⠕â â ‘â ¡â â â Šâ Žâ â Ž" }, { "input": "servos", "output": "⠎⠻⠧⠕⠎" }, { "input": "sesame", "output": "â Žâ ‘â Žâ â â ‘" }, { "input": "sesames", "output": "â Žâ ‘â Žâ â â ‘â Ž" }, { "input": "session", "output": "â Žâ ‘â Žâ ¨â " }, { "input": "sessions", "output": "â Žâ ‘â Žâ ¨â â Ž" }, { "input": "set", "output": "â Žâ ‘â ž" }, { "input": "setback", "output": "â Žâ ‘â žâ ƒâ â ‰â …" }, { "input": "setbacks", "output": "â Žâ ‘â žâ ƒâ â ‰â …â Ž" }, { "input": "sets", "output": "â Žâ ‘â žâ Ž" }, { "input": "settable", "output": "â Žâ ‘â žâ žâ â ƒâ ‡â ‘" }, { "input": "settee", "output": "â Žâ ‘â žâ žâ ‘â ‘" }, { "input": "settees", "output": "â Žâ ‘â žâ žâ ‘â ‘â Ž" }, { "input": "setter", "output": "â Žâ ‘â žâ žâ »" }, { "input": "setters", "output": "⠎⠑⠞⠞⠻⠎" }, { "input": "setting", "output": "â Žâ ‘â žâ žâ ¬" }, { "input": "settings", "output": "⠎⠑⠞⠞⠬⠎" }, { "input": "settle", "output": "⠎⠑⠞⠞⠇⠑" }, { "input": "settled", "output": "⠎⠑⠞⠞⠇⠫" }, { "input": "settlement", "output": "⠎⠑⠞⠞⠇⠑⠰⠞" }, { "input": "settlements", "output": "⠎⠑⠞⠞⠇⠑⠰⠞⠎" }, { "input": "settler", "output": "⠎⠑⠞⠞⠇⠻" }, { "input": "settlers", "output": "⠎⠑⠞⠞⠇⠻⠎" }, { "input": "settles", "output": "⠎⠑⠞⠞⠇⠑⠎" }, { "input": "settling", "output": "⠎⠑⠞⠞⠇⠬" }, { "input": "setup", "output": "â Žâ ‘â žâ ¥â " }, { "input": "setups", "output": "â Žâ ‘â žâ ¥â â Ž" }, { "input": "seven", "output": "â Žâ ‘â §â ¢" }, { "input": "sevens", "output": "⠎⠑⠧⠢⠎" }, { "input": "seventeen", "output": "⠎⠑⠧⠢⠞⠑⠢" }, { "input": "seventeens", "output": "⠎⠑⠧⠢⠞⠑⠢⠎" }, { "input": "seventeenth", "output": "⠎⠑⠧⠢⠞⠑⠢⠹" }, { "input": "seventeenths", "output": "⠎⠑⠧⠢⠞⠑⠢⠹⠎" }, { "input": "seventh", "output": "⠎⠑⠧⠢⠹" }, { "input": "sevenths", "output": "⠎⠑⠧⠢⠹⠎" }, { "input": "seventies", "output": "⠎⠑⠧⠢⠞⠊⠑⠎" }, { "input": "seventieth", "output": "⠎⠑⠧⠢⠞⠊⠑⠹" }, { "input": "seventieths", "output": "⠎⠑⠧⠢⠞⠊⠑⠹⠎" }, { "input": "seventy", "output": "⠎⠑⠧⠢⠞⠽" }, { "input": "sever", "output": "â Žâ â ‘" }, { "input": "several", "output": "â Žâ â ‘â â ‡" }, { "input": "severally", "output": "â Žâ â ‘â â ‡â ‡â ½" }, { "input": "severance", "output": "â Žâ â ‘⠨⠑" }, { "input": "severances", "output": "â Žâ â ‘⠨⠑⠎" }, { "input": "severe", "output": "⠎⠑⠧⠻⠑" }, { "input": "severed", "output": "â Žâ â ‘â «" }, { "input": "severely", "output": "⠎⠑⠧⠻⠑⠇⠽" }, { "input": "severer", "output": "⠎⠑⠧⠻⠻" }, { "input": "severest", "output": "⠎⠑⠧⠻⠑⠌" }, { "input": "severing", "output": "â Žâ â ‘â ¬" }, { "input": "severity", "output": "⠎⠑⠧⠻⠰⠽" }, { "input": "severs", "output": "â Žâ â ‘â Ž" }, { "input": "sew", "output": "â Žâ ‘â º" }, { "input": "sewage", "output": "â Žâ ‘â ºâ â ›â ‘" }, { "input": "sewed", "output": "⠎⠑⠺⠫" }, { "input": "sewer", "output": "⠎⠑⠺⠻" }, { "input": "sewerage", "output": "⠎⠑⠺⠻â â ›â ‘" }, { "input": "sewers", "output": "⠎⠑⠺⠻⠎" }, { "input": "sewing", "output": "⠎⠑⠺⠬" }, { "input": "sewn", "output": "â Žâ ‘â ºâ " }, { "input": "sews", "output": "⠎⠑⠺⠎" }, { "input": "sex", "output": "â Žâ ‘â ­" }, { "input": "sexagenarian", "output": "â Žâ ‘â ­â â ›â ¢â œâ Šâ â " }, { "input": "sexagenarians", "output": "â Žâ ‘â ­â â ›â ¢â œâ Šâ â â Ž" }, { "input": "sexed", "output": "â Žâ ‘â ­â «" }, { "input": "sexes", "output": "â Žâ ‘â ­â ‘â Ž" }, { "input": "sexier", "output": "â Žâ ‘â ­â Šâ »" }, { "input": "sexiest", "output": "â Žâ ‘â ­â Šâ ‘â Œ" }, { "input": "sexiness", "output": "â Žâ ‘â ­â Šâ °â Ž" }, { "input": "sexing", "output": "â Žâ ‘â ­â ¬" }, { "input": "sexism", "output": "â Žâ ‘â ­â Šâ Žâ " }, { "input": "sexist", "output": "â Žâ ‘â ­â Šâ Œ" }, { "input": "sexists", "output": "⠎⠑⠭⠊⠌⠎" }, { "input": "sexless", "output": "⠎⠑⠭⠨⠎" }, { "input": "sexpot", "output": "â Žâ ‘â ­â â •â ž" }, { "input": "sexpots", "output": "â Žâ ‘â ­â â •â žâ Ž" }, { "input": "sextant", "output": "â Žâ ‘â ­â žâ â â ž" }, { "input": "sextants", "output": "â Žâ ‘â ­â žâ â â žâ Ž" }, { "input": "sextet", "output": "â Žâ ‘â ­â žâ ‘â ž" }, { "input": "sextets", "output": "â Žâ ‘â ­â žâ ‘â žâ Ž" }, { "input": "sextette", "output": "â Žâ ‘â ­â žâ ‘â žâ žâ ‘" }, { "input": "sextettes", "output": "â Žâ ‘â ­â žâ ‘â žâ žâ ‘â Ž" }, { "input": "sexton", "output": "â Žâ ‘â ­â žâ •â " }, { "input": "sextons", "output": "â Žâ ‘â ­â žâ •â â Ž" }, { "input": "sexual", "output": "â Žâ ‘â ­â ¥â â ‡" }, { "input": "sexuality", "output": "â Žâ ‘â ­â ¥â â ‡â °â ½" }, { "input": "sexually", "output": "â Žâ ‘â ­â ¥â â ‡â ‡â ½" }, { "input": "sexy", "output": "â Žâ ‘â ­â ½" }, { "input": "sh", "output": "â Žâ “" }, { "input": "shabbier", "output": "â ©â â †â Šâ »" }, { "input": "shabbiest", "output": "â ©â â †â Šâ ‘â Œ" }, { "input": "shabbily", "output": "â ©â â †â Šâ ‡â ½" }, { "input": "shabbiness", "output": "â ©â â †â Šâ °â Ž" }, { "input": "shabby", "output": "â ©â â †â ½" }, { "input": "shack", "output": "â ©â â ‰â …" }, { "input": "shackle", "output": "â ©â â ‰â …⠇⠑" }, { "input": "shackled", "output": "â ©â â ‰â …⠇⠫" }, { "input": "shackles", "output": "â ©â â ‰â …⠇⠑⠎" }, { "input": "shackling", "output": "â ©â â ‰â …⠇⠬" }, { "input": "shacks", "output": "â ©â â ‰â …â Ž" }, { "input": "shad", "output": "â ©â â ™" }, { "input": "shade", "output": "â ©â â ™â ‘" }, { "input": "shaded", "output": "â ©â â ™â «" }, { "input": "shades", "output": "â ©â â ™â ‘â Ž" }, { "input": "shadier", "output": "â ©â â ™â Šâ »" }, { "input": "shadiest", "output": "â ©â â ™â Šâ ‘â Œ" }, { "input": "shadiness", "output": "â ©â â ™â Šâ °â Ž" }, { "input": "shading", "output": "â ©â â ™â ¬" }, { "input": "shadings", "output": "â ©â â ™â ¬â Ž" }, { "input": "shadow", "output": "â ©â â ™â ª" }, { "input": "shadowbox", "output": "â ©â â ™â ªâ ƒâ •â ­" }, { "input": "shadowboxed", "output": "â ©â â ™â ªâ ƒâ •â ­â «" }, { "input": "shadowboxes", "output": "â ©â â ™â ªâ ƒâ •â ­â ‘â Ž" }, { "input": "shadowboxing", "output": "â ©â â ™â ªâ ƒâ •â ­â ¬" }, { "input": "shadowed", "output": "â ©â â ™â ªâ «" }, { "input": "shadowier", "output": "â ©â â ™â ªâ Šâ »" }, { "input": "shadowiest", "output": "â ©â â ™â ªâ Šâ ‘â Œ" }, { "input": "shadowing", "output": "â ©â â ™â ªâ ¬" }, { "input": "shadows", "output": "â ©â â ™â ªâ Ž" }, { "input": "shadowy", "output": "â ©â â ™â ªâ ½" }, { "input": "shads", "output": "â ©â â ™â Ž" }, { "input": "shady", "output": "â ©â â ™â ½" }, { "input": "shaft", "output": "â ©â â ‹â ž" }, { "input": "shafted", "output": "â ©â â ‹â žâ «" }, { "input": "shafting", "output": "â ©â â ‹â žâ ¬" }, { "input": "shafts", "output": "â ©â â ‹â žâ Ž" }, { "input": "shag", "output": "â ©â â ›" }, { "input": "shagged", "output": "â ©â â ¶â «" }, { "input": "shaggier", "output": "â ©â â ¶â Šâ »" }, { "input": "shaggiest", "output": "â ©â â ¶â Šâ ‘â Œ" }, { "input": "shagginess", "output": "â ©â â ¶â Šâ °â Ž" }, { "input": "shagging", "output": "â ©â â ¶â ¬" }, { "input": "shaggy", "output": "â ©â â ¶â ½" }, { "input": "shags", "output": "â ©â â ›â Ž" }, { "input": "shah", "output": "â ©â â “" }, { "input": "shahs", "output": "â ©â â “â Ž" }, { "input": "shaikh", "output": "â ©â â Šâ …â “" }, { "input": "shaikhs", "output": "â ©â â Šâ …â “â Ž" }, { "input": "shake", "output": "â ©â â …â ‘" }, { "input": "shakedown", "output": "â ©â â …⠑⠙⠪â " }, { "input": "shakedowns", "output": "â ©â â …⠑⠙⠪â â Ž" }, { "input": "shaken", "output": "â ©â â …â ¢" }, { "input": "shaker", "output": "â ©â â …â »" }, { "input": "shakers", "output": "â ©â â …⠻⠎" }, { "input": "shakes", "output": "â ©â â …â ‘â Ž" }, { "input": "shakeup", "output": "â ©â â …â ‘â ¥â " }, { "input": "shakeups", "output": "â ©â â …â ‘â ¥â â Ž" }, { "input": "shakier", "output": "â ©â â …â Šâ »" }, { "input": "shakiest", "output": "â ©â â …â Šâ ‘â Œ" }, { "input": "shakily", "output": "â ©â â …⠊⠇⠽" }, { "input": "shakiness", "output": "â ©â â …â Šâ °â Ž" }, { "input": "shaking", "output": "â ©â â …â ¬" }, { "input": "shaky", "output": "â ©â â …â ½" }, { "input": "shale", "output": "â ©â â ‡â ‘" }, { "input": "shall", "output": "â ©" }, { "input": "shallot", "output": "â ©â â ‡â ‡â •â ž" }, { "input": "shallots", "output": "â ©â â ‡â ‡â •â žâ Ž" }, { "input": "shallow", "output": "â ©â â ‡â ‡â ª" }, { "input": "shallower", "output": "â ©â â ‡â ‡â ªâ »" }, { "input": "shallowest", "output": "â ©â â ‡â ‡â ªâ ‘â Œ" }, { "input": "shallowness", "output": "â ©â â ‡â ‡â ªâ °â Ž" }, { "input": "shallows", "output": "â ©â â ‡â ‡â ªâ Ž" }, { "input": "shalt", "output": "â ©â â ‡â ž" }, { "input": "sham", "output": "â ©â â " }, { "input": "shaman", "output": "â ©â â â â " }, { "input": "shamans", "output": "â ©â â â â â Ž" }, { "input": "shamble", "output": "â ©â â â ƒâ ‡â ‘" }, { "input": "shambled", "output": "â ©â â â ƒâ ‡â «" }, { "input": "shambles", "output": "â ©â â â ƒâ ‡â ‘â Ž" }, { "input": "shambling", "output": "â ©â â â ƒâ ‡â ¬" }, { "input": "shame", "output": "â ©â â â ‘" }, { "input": "shamed", "output": "â ©â â â «" }, { "input": "shamefaced", "output": "â ©â â â ‘â ‹â â ‰â «" }, { "input": "shameful", "output": "â ©â â â ‘â °â ‡" }, { "input": "shamefully", "output": "â ©â â â ‘⠰⠇⠇⠽" }, { "input": "shamefulness", "output": "â ©â â â ‘⠰⠇⠰⠎" }, { "input": "shameless", "output": "â ©â â â ‘⠨⠎" }, { "input": "shamelessly", "output": "â ©â â â ‘⠨⠎⠇⠽" }, { "input": "shames", "output": "â ©â â â ‘â Ž" }, { "input": "shaming", "output": "â ©â â â ¬" }, { "input": "shammed", "output": "â ©â â â â «" }, { "input": "shammies", "output": "â ©â â â â Šâ ‘â Ž" }, { "input": "shamming", "output": "â ©â â â â ¬" }, { "input": "shammy", "output": "â ©â â â â ½" }, { "input": "shampoo", "output": "â ©â â â â •â •" }, { "input": "shampooed", "output": "â ©â â â â •â •â «" }, { "input": "shampooing", "output": "â ©â â â â •â •â ¬" }, { "input": "shampoos", "output": "â ©â â â â •â •â Ž" }, { "input": "shamrock", "output": "â ©â â â —⠕⠉⠅" }, { "input": "shamrocks", "output": "â ©â â â —⠕⠉⠅⠎" }, { "input": "shams", "output": "â ©â â â Ž" }, { "input": "shandy", "output": "⠩⠯⠽" }, { "input": "shanghai", "output": "â ©â â â ›â “â â Š" }, { "input": "shanghaied", "output": "â ©â â â ›â “â â Šâ «" }, { "input": "shanghaiing", "output": "â ©â â â ›â “â â Šâ ¬" }, { "input": "shanghais", "output": "â ©â â â ›â “â â Šâ Ž" }, { "input": "shank", "output": "â ©â â â …" }, { "input": "shanks", "output": "â ©â â â …â Ž" }, { "input": "shanties", "output": "â ©â â â žâ Šâ ‘â Ž" }, { "input": "shantung", "output": "â ©â â â žâ ¥â â ›" }, { "input": "shanty", "output": "â ©â â â žâ ½" }, { "input": "shantytown", "output": "â ©â â â žâ ½â žâ ªâ " }, { "input": "shantytowns", "output": "â ©â â â žâ ½â žâ ªâ â Ž" }, { "input": "shape", "output": "â ©â â â ‘" }, { "input": "shaped", "output": "â ©â â â «" }, { "input": "shapeless", "output": "â ©â â â ‘⠨⠎" }, { "input": "shapelessly", "output": "â ©â â â ‘⠨⠎⠇⠽" }, { "input": "shapelessness", "output": "â ©â â â ‘⠨⠎⠰⠎" }, { "input": "shapelier", "output": "â ©â â â ‘⠇⠊⠻" }, { "input": "shapeliest", "output": "â ©â â â ‘⠇⠊⠑⠌" }, { "input": "shapeliness", "output": "â ©â â â ‘⠇⠊⠰⠎" }, { "input": "shapely", "output": "â ©â â â ‘⠇⠽" }, { "input": "shapes", "output": "â ©â â â ‘â Ž" }, { "input": "shaping", "output": "â ©â â â ¬" }, { "input": "shard", "output": "⠩⠜⠙" }, { "input": "shards", "output": "⠩⠜⠙⠎" }, { "input": "share", "output": "⠩⠜⠑" }, { "input": "sharecropper", "output": "⠩⠜⠑⠉⠗⠕â â â »" }, { "input": "sharecroppers", "output": "⠩⠜⠑⠉⠗⠕â â â »â Ž" }, { "input": "shared", "output": "⠩⠜⠫" }, { "input": "shareholder", "output": "⠩⠜⠑⠓⠕⠇⠙⠻" }, { "input": "shareholders", "output": "⠩⠜⠑⠓⠕⠇⠙⠻⠎" }, { "input": "shares", "output": "⠩⠜⠑⠎" }, { "input": "sharing", "output": "⠩⠜⠬" }, { "input": "shark", "output": "⠩⠜⠅" }, { "input": "sharked", "output": "⠩⠜⠅⠫" }, { "input": "sharking", "output": "⠩⠜⠅⠬" }, { "input": "sharks", "output": "⠩⠜⠅⠎" }, { "input": "sharkskin", "output": "⠩⠜⠅⠎⠅⠔" }, { "input": "sharp", "output": "â ©â œâ " }, { "input": "sharped", "output": "â ©â œâ â «" }, { "input": "sharpen", "output": "â ©â œâ â ¢" }, { "input": "sharpened", "output": "â ©â œâ â ¢â «" }, { "input": "sharpener", "output": "â ©â œâ â ¢â »" }, { "input": "sharpeners", "output": "â ©â œâ â ¢â »â Ž" }, { "input": "sharpening", "output": "â ©â œâ â ¢â ¬" }, { "input": "sharpens", "output": "â ©â œâ â ¢â Ž" }, { "input": "sharper", "output": "â ©â œâ â »" }, { "input": "sharpers", "output": "â ©â œâ â »â Ž" }, { "input": "sharpest", "output": "â ©â œâ â ‘â Œ" }, { "input": "sharping", "output": "â ©â œâ â ¬" }, { "input": "sharply", "output": "â ©â œâ â ‡â ½" }, { "input": "sharpness", "output": "â ©â œâ â °â Ž" }, { "input": "sharps", "output": "â ©â œâ â Ž" }, { "input": "sharpshooter", "output": "â ©â œâ â ©â •â •â žâ »" }, { "input": "sharpshooters", "output": "â ©â œâ â ©â •⠕⠞⠻⠎" }, { "input": "shat", "output": "â ©â â ž" }, { "input": "shatter", "output": "â ©â â žâ žâ »" }, { "input": "shattered", "output": "â ©â â žâ žâ »â «" }, { "input": "shattering", "output": "â ©â â žâ žâ »â ¬" }, { "input": "shatterproof", "output": "â ©â â žâ žâ »â â —â •â ·" }, { "input": "shatters", "output": "â ©â â žâ žâ »â Ž" }, { "input": "shave", "output": "â ©â â §â ‘" }, { "input": "shaved", "output": "â ©â â §â «" }, { "input": "shaven", "output": "â ©â â §â ¢" }, { "input": "shaver", "output": "â ©â â §â »" }, { "input": "shavers", "output": "â ©â â §â »â Ž" }, { "input": "shaves", "output": "â ©â â §â ‘â Ž" }, { "input": "shaving", "output": "â ©â â §â ¬" }, { "input": "shavings", "output": "â ©â â §â ¬â Ž" }, { "input": "shawl", "output": "â ©â â ºâ ‡" }, { "input": "shawls", "output": "â ©â â ºâ ‡â Ž" }, { "input": "shaykh", "output": "â ©â â ½â …â “" }, { "input": "shaykhs", "output": "â ©â â ½â …â “â Ž" }, { "input": "she", "output": "â ©â ‘" }, { "input": "sheaf", "output": "â ©â ‚â ‹" }, { "input": "shear", "output": "â ©â ‘â œ" }, { "input": "sheared", "output": "⠩⠑⠜⠫" }, { "input": "shearer", "output": "⠩⠑⠜⠻" }, { "input": "shearers", "output": "⠩⠑⠜⠻⠎" }, { "input": "shearing", "output": "⠩⠑⠜⠬" }, { "input": "shears", "output": "⠩⠑⠜⠎" }, { "input": "sheath", "output": "â ©â ‚â ¹" }, { "input": "sheathe", "output": "â ©â ‚â ®" }, { "input": "sheathed", "output": "⠩⠂⠮⠙" }, { "input": "sheathes", "output": "⠩⠂⠮⠎" }, { "input": "sheathing", "output": "⠩⠂⠹⠬" }, { "input": "sheathings", "output": "⠩⠂⠹⠬⠎" }, { "input": "sheaths", "output": "⠩⠂⠹⠎" }, { "input": "sheave", "output": "â ©â ‚â §â ‘" }, { "input": "sheaves", "output": "â ©â ‚â §â ‘â Ž" }, { "input": "shebang", "output": "â ©â ‘â ƒâ â â ›" }, { "input": "shebangs", "output": "â ©â ‘â ƒâ â â ›â Ž" }, { "input": "shed", "output": "â ©â «" }, { "input": "shedding", "output": "⠩⠫⠙⠬" }, { "input": "sheds", "output": "â ©â «â Ž" }, { "input": "sheen", "output": "â ©â ‘â ¢" }, { "input": "sheep", "output": "â ©â ‘â ‘â " }, { "input": "sheepdog", "output": "â ©â ‘â ‘â â ™â •â ›" }, { "input": "sheepdogs", "output": "â ©â ‘â ‘â â ™â •⠛⠎" }, { "input": "sheepfold", "output": "â ©â ‘â ‘â â ‹â •⠇⠙" }, { "input": "sheepfolds", "output": "â ©â ‘â ‘â â ‹â •⠇⠙⠎" }, { "input": "sheepish", "output": "â ©â ‘â ‘â â Šâ ©" }, { "input": "sheepishly", "output": "â ©â ‘â ‘â â Šâ ©â ‡â ½" }, { "input": "sheepishness", "output": "â ©â ‘â ‘â â Šâ ©â °â Ž" }, { "input": "sheepskin", "output": "â ©â ‘â ‘â â Žâ …â ”" }, { "input": "sheepskins", "output": "â ©â ‘â ‘â â Žâ …⠔⠎" }, { "input": "sheer", "output": "â ©â ‘â »" }, { "input": "sheered", "output": "⠩⠑⠻⠫" }, { "input": "sheerer", "output": "⠩⠑⠻⠻" }, { "input": "sheerest", "output": "⠩⠑⠻⠑⠌" }, { "input": "sheering", "output": "⠩⠑⠻⠬" }, { "input": "sheers", "output": "⠩⠑⠻⠎" }, { "input": "sheet", "output": "â ©â ‘â ‘â ž" }, { "input": "sheeting", "output": "â ©â ‘â ‘â žâ ¬" }, { "input": "sheets", "output": "â ©â ‘â ‘â žâ Ž" }, { "input": "sheik", "output": "â ©â ‘â Šâ …" }, { "input": "sheikdom", "output": "⠩⠑⠊⠅⠙⠕â " }, { "input": "sheikdoms", "output": "⠩⠑⠊⠅⠙⠕â â Ž" }, { "input": "sheikh", "output": "â ©â ‘â Šâ …â “" }, { "input": "sheikhdom", "output": "⠩⠑⠊⠅⠓⠙⠕â " }, { "input": "sheikhdoms", "output": "⠩⠑⠊⠅⠓⠙⠕â â Ž" }, { "input": "sheikhs", "output": "â ©â ‘â Šâ …â “â Ž" }, { "input": "sheiks", "output": "â ©â ‘â Šâ …â Ž" }, { "input": "shekel", "output": "â ©â ‘â …â ‘â ‡" }, { "input": "shekels", "output": "⠩⠑⠅⠑⠇⠎" }, { "input": "shelf", "output": "⠩⠑⠇⠋" }, { "input": "shell", "output": "⠩⠑⠇⠇" }, { "input": "shellac", "output": "⠩⠑⠇⠇â â ‰" }, { "input": "shellacked", "output": "⠩⠑⠇⠇â â ‰â …â «" }, { "input": "shellacking", "output": "⠩⠑⠇⠇â â ‰â …â ¬" }, { "input": "shellacs", "output": "⠩⠑⠇⠇â â ‰â Ž" }, { "input": "shelled", "output": "⠩⠑⠇⠇⠫" }, { "input": "sheller", "output": "⠩⠑⠇⠇⠻" }, { "input": "shellfish", "output": "⠩⠑⠇⠇⠋⠊⠩" }, { "input": "shellfishes", "output": "⠩⠑⠇⠇⠋⠊⠩⠑⠎" }, { "input": "shelling", "output": "⠩⠑⠇⠇⠬" }, { "input": "shells", "output": "⠩⠑⠇⠇⠎" }, { "input": "shelter", "output": "⠩⠑⠇⠞⠻" }, { "input": "sheltered", "output": "⠩⠑⠇⠞⠻⠫" }, { "input": "sheltering", "output": "⠩⠑⠇⠞⠻⠬" }, { "input": "shelters", "output": "⠩⠑⠇⠞⠻⠎" }, { "input": "shelve", "output": "⠩⠑⠇⠧⠑" }, { "input": "shelved", "output": "⠩⠑⠇⠧⠫" }, { "input": "shelves", "output": "⠩⠑⠇⠧⠑⠎" }, { "input": "shelving", "output": "⠩⠑⠇⠧⠬" }, { "input": "shenanigan", "output": "â ©â ¢â â â Šâ ›â â " }, { "input": "shenanigans", "output": "â ©â ¢â â â Šâ ›â â â Ž" }, { "input": "shepherd", "output": "â ©â ‘â â “⠻⠙" }, { "input": "shepherded", "output": "â ©â ‘â â “⠻⠙⠫" }, { "input": "shepherdess", "output": "â ©â ‘â â “⠻⠙⠑⠎⠎" }, { "input": "shepherdesses", "output": "â ©â ‘â â “⠻⠙⠑⠎⠎⠑⠎" }, { "input": "shepherding", "output": "â ©â ‘â â “⠻⠙⠬" }, { "input": "shepherds", "output": "â ©â ‘â â “⠻⠙⠎" }, { "input": "sherbert", "output": "⠩⠻⠃⠻⠞" }, { "input": "sherberts", "output": "⠩⠻⠃⠻⠞⠎" }, { "input": "sherbet", "output": "⠩⠻⠃⠑⠞" }, { "input": "sherbets", "output": "⠩⠻⠃⠑⠞⠎" }, { "input": "sherd", "output": "⠩⠻⠙" }, { "input": "sherds", "output": "⠩⠻⠙⠎" }, { "input": "sheriff", "output": "⠩⠻⠊⠋⠋" }, { "input": "sheriffs", "output": "⠩⠻⠊⠖⠎" }, { "input": "sherries", "output": "⠩⠻⠗⠊⠑⠎" }, { "input": "sherry", "output": "⠩⠻⠗⠽" }, { "input": "shes", "output": "â ©â ‘â Ž" }, { "input": "shibboleth", "output": "⠩⠊⠆⠕⠇⠑⠹" }, { "input": "shibboleths", "output": "⠩⠊⠆⠕⠇⠑⠹⠎" }, { "input": "shied", "output": "â ©â Šâ «" }, { "input": "shield", "output": "⠩⠊⠑⠇⠙" }, { "input": "shielded", "output": "⠩⠊⠑⠇⠙⠫" }, { "input": "shielding", "output": "⠩⠊⠑⠇⠙⠬" }, { "input": "shields", "output": "⠩⠊⠑⠇⠙⠎" }, { "input": "shies", "output": "â ©â Šâ ‘â Ž" }, { "input": "shift", "output": "â ©â Šâ ‹â ž" }, { "input": "shifted", "output": "â ©â Šâ ‹â žâ «" }, { "input": "shiftier", "output": "â ©â Šâ ‹â žâ Šâ »" }, { "input": "shiftiest", "output": "â ©â Šâ ‹â žâ Šâ ‘â Œ" }, { "input": "shiftily", "output": "⠩⠊⠋⠞⠊⠇⠽" }, { "input": "shiftiness", "output": "â ©â Šâ ‹â žâ Šâ °â Ž" }, { "input": "shifting", "output": "â ©â Šâ ‹â žâ ¬" }, { "input": "shiftless", "output": "⠩⠊⠋⠞⠨⠎" }, { "input": "shiftlessness", "output": "⠩⠊⠋⠞⠨⠎⠰⠎" }, { "input": "shifts", "output": "â ©â Šâ ‹â žâ Ž" }, { "input": "shifty", "output": "â ©â Šâ ‹â žâ ½" }, { "input": "shill", "output": "⠩⠊⠇⠇" }, { "input": "shillalah", "output": "⠩⠊⠇⠇â â ‡â â “" }, { "input": "shillalahs", "output": "⠩⠊⠇⠇â â ‡â â “â Ž" }, { "input": "shilled", "output": "⠩⠊⠇⠇⠫" }, { "input": "shillelagh", "output": "⠩⠊⠇⠇⠑⠇â â £" }, { "input": "shillelaghs", "output": "⠩⠊⠇⠇⠑⠇â â £â Ž" }, { "input": "shilling", "output": "⠩⠊⠇⠇⠬" }, { "input": "shillings", "output": "⠩⠊⠇⠇⠬⠎" }, { "input": "shills", "output": "⠩⠊⠇⠇⠎" }, { "input": "shim", "output": "â ©â Šâ " }, { "input": "shimmed", "output": "â ©â Šâ â â «" }, { "input": "shimmer", "output": "â ©â Šâ â â »" }, { "input": "shimmered", "output": "â ©â Šâ â â »â «" }, { "input": "shimmering", "output": "â ©â Šâ â â »â ¬" }, { "input": "shimmers", "output": "â ©â Šâ â â »â Ž" }, { "input": "shimmery", "output": "â ©â Šâ â â »â ½" }, { "input": "shimmied", "output": "â ©â Šâ â â Šâ «" }, { "input": "shimmies", "output": "â ©â Šâ â â Šâ ‘â Ž" }, { "input": "shimming", "output": "â ©â Šâ â â ¬" }, { "input": "shimmy", "output": "â ©â Šâ â â ½" }, { "input": "shimmying", "output": "â ©â Šâ â â ½â ¬" }, { "input": "shims", "output": "â ©â Šâ â Ž" }, { "input": "shin", "output": "â ©â ”" }, { "input": "shinbone", "output": "⠩⠔⠃â â •" }, { "input": "shinbones", "output": "⠩⠔⠃â â •â Ž" }, { "input": "shindig", "output": "⠩⠔⠙⠊⠛" }, { "input": "shindigs", "output": "⠩⠔⠙⠊⠛⠎" }, { "input": "shine", "output": "⠩⠔⠑" }, { "input": "shined", "output": "⠩⠔⠫" }, { "input": "shiner", "output": "⠩⠔⠻" }, { "input": "shiners", "output": "⠩⠔⠻⠎" }, { "input": "shines", "output": "⠩⠔⠑⠎" }, { "input": "shingle", "output": "⠩⠬⠇⠑" }, { "input": "shingled", "output": "⠩⠬⠇⠫" }, { "input": "shingles", "output": "⠩⠬⠇⠑⠎" }, { "input": "shingling", "output": "⠩⠬⠇⠬" }, { "input": "shinier", "output": "⠩⠔⠊⠻" }, { "input": "shiniest", "output": "⠩⠔⠊⠑⠌" }, { "input": "shininess", "output": "⠩⠔⠊⠰⠎" }, { "input": "shining", "output": "⠩⠔⠬" }, { "input": "shinned", "output": "â ©â ”â â «" }, { "input": "shinnied", "output": "â ©â ”â â Šâ «" }, { "input": "shinnies", "output": "â ©â ”â â Šâ ‘â Ž" }, { "input": "shinning", "output": "â ©â ”â â ¬" }, { "input": "shinny", "output": "â ©â ”â â ½" }, { "input": "shinnying", "output": "â ©â ”â â ½â ¬" }, { "input": "shins", "output": "⠩⠔⠎" }, { "input": "shiny", "output": "⠩⠔⠽" }, { "input": "ship", "output": "â ©â Šâ " }, { "input": "shipboard", "output": "â ©â Šâ â ƒâ •⠜⠙" }, { "input": "shipboards", "output": "â ©â Šâ â ƒâ •⠜⠙⠎" }, { "input": "shipbuilder", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â »" }, { "input": "shipbuilders", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â »â Ž" }, { "input": "shipbuilding", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â ¬" }, { "input": "shipload", "output": "â ©â Šâ â ‡â •â â ™" }, { "input": "shiploads", "output": "â ©â Šâ â ‡â •â â ™â Ž" }, { "input": "shipmate", "output": "â ©â Šâ â â â žâ ‘" }, { "input": "shipmates", "output": "â ©â Šâ â â â žâ ‘â Ž" }, { "input": "shipment", "output": "â ©â Šâ â °â ž" }, { "input": "shipments", "output": "â ©â Šâ â °â žâ Ž" }, { "input": "shipped", "output": "â ©â Šâ â â «" }, { "input": "shipper", "output": "â ©â Šâ â â »" }, { "input": "shippers", "output": "â ©â Šâ â â »â Ž" }, { "input": "shipping", "output": "â ©â Šâ â â ¬" }, { "input": "ships", "output": "â ©â Šâ â Ž" }, { "input": "shipshape", "output": "â ©â Šâ â ©â â â ‘" }, { "input": "shipwreck", "output": "â ©â Šâ â ºâ —⠑⠉⠅" }, { "input": "shipwrecked", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠫" }, { "input": "shipwrecking", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠬" }, { "input": "shipwrecks", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠎" }, { "input": "shipwright", "output": "â ©â Šâ â ºâ â —" }, { "input": "shipwrights", "output": "â ©â Šâ â ºâ â —â Ž" }, { "input": "shipyard", "output": "â ©â Šâ â ½â œâ ™" }, { "input": "shipyards", "output": "â ©â Šâ â ½â œâ ™â Ž" }, { "input": "shire", "output": "â ©â Šâ —â ‘" }, { "input": "shires", "output": "â ©â Šâ —â ‘â Ž" }, { "input": "shirk", "output": "â ©â Šâ —â …" }, { "input": "shirked", "output": "â ©â Šâ —â …â «" }, { "input": "shirker", "output": "â ©â Šâ —â …â »" }, { "input": "shirkers", "output": "⠩⠊⠗⠅⠻⠎" }, { "input": "shirking", "output": "â ©â Šâ —â …â ¬" }, { "input": "shirks", "output": "â ©â Šâ —â …â Ž" }, { "input": "shirr", "output": "â ©â Šâ —â —" }, { "input": "shirred", "output": "â ©â Šâ —â —â «" }, { "input": "shirring", "output": "â ©â Šâ —â —â ¬" }, { "input": "shirrings", "output": "⠩⠊⠗⠗⠬⠎" }, { "input": "shirrs", "output": "â ©â Šâ —â —â Ž" }, { "input": "shirt", "output": "â ©â Šâ —â ž" }, { "input": "shirted", "output": "â ©â Šâ —â žâ «" }, { "input": "shirting", "output": "â ©â Šâ —â žâ ¬" }, { "input": "shirts", "output": "â ©â Šâ —â žâ Ž" }, { "input": "shirtsleeve", "output": "⠩⠊⠗⠞⠎⠇⠑⠑⠧⠑" }, { "input": "shirtsleeves", "output": "⠩⠊⠗⠞⠎⠇⠑⠑⠧⠑⠎" }, { "input": "shirttail", "output": "â ©â Šâ —â žâ žâ â Šâ ‡" }, { "input": "shirttails", "output": "â ©â Šâ —â žâ žâ â Šâ ‡â Ž" }, { "input": "shirtwaist", "output": "â ©â Šâ —â žâ ºâ â Šâ Œ" }, { "input": "shirtwaists", "output": "â ©â Šâ —â žâ ºâ â Šâ Œâ Ž" }, { "input": "shit", "output": "â ©â Šâ ž" }, { "input": "shits", "output": "â ©â Šâ žâ Ž" }, { "input": "shittier", "output": "â ©â Šâ žâ žâ Šâ »" }, { "input": "shittiest", "output": "â ©â Šâ žâ žâ Šâ ‘â Œ" }, { "input": "shitting", "output": "â ©â Šâ žâ žâ ¬" }, { "input": "shitty", "output": "â ©â Šâ žâ žâ ½" }, { "input": "shiver", "output": "â ©â Šâ §â »" }, { "input": "shivered", "output": "⠩⠊⠧⠻⠫" }, { "input": "shivering", "output": "⠩⠊⠧⠻⠬" }, { "input": "shivers", "output": "⠩⠊⠧⠻⠎" }, { "input": "shivery", "output": "⠩⠊⠧⠻⠽" }, { "input": "shlemiel", "output": "⠩⠇⠑â â Šâ ‘â ‡" }, { "input": "shlemiels", "output": "⠩⠇⠑â â Šâ ‘⠇⠎" }, { "input": "shlep", "output": "⠩⠇⠑â " }, { "input": "shlepp", "output": "⠩⠇⠑â â " }, { "input": "shlepped", "output": "⠩⠇⠑â â â «" }, { "input": "shlepping", "output": "⠩⠇⠑â â â ¬" }, { "input": "shlepps", "output": "⠩⠇⠑â â â Ž" }, { "input": "shleps", "output": "⠩⠇⠑â â Ž" }, { "input": "shlock", "output": "⠩⠇⠕⠉⠅" }, { "input": "shlocky", "output": "⠩⠇⠕⠉⠅⠽" }, { "input": "shoal", "output": "â ©â •â â ‡" }, { "input": "shoaled", "output": "â ©â •â â ‡â «" }, { "input": "shoaling", "output": "â ©â •â â ‡â ¬" }, { "input": "shoals", "output": "â ©â •â â ‡â Ž" }, { "input": "shock", "output": "⠩⠕⠉⠅" }, { "input": "shocked", "output": "⠩⠕⠉⠅⠫" }, { "input": "shocker", "output": "⠩⠕⠉⠅⠻" }, { "input": "shockers", "output": "⠩⠕⠉⠅⠻⠎" }, { "input": "shocking", "output": "⠩⠕⠉⠅⠬" }, { "input": "shockingly", "output": "⠩⠕⠉⠅⠬⠇⠽" }, { "input": "shockproof", "output": "⠩⠕⠉⠅â â —â •â ·" }, { "input": "shocks", "output": "⠩⠕⠉⠅⠎" }, { "input": "shod", "output": "â ©â •â ™" }, { "input": "shodden", "output": "⠩⠕⠙⠙⠢" }, { "input": "shoddier", "output": "⠩⠕⠙⠙⠊⠻" }, { "input": "shoddiest", "output": "⠩⠕⠙⠙⠊⠑⠌" }, { "input": "shoddily", "output": "⠩⠕⠙⠙⠊⠇⠽" }, { "input": "shoddiness", "output": "⠩⠕⠙⠙⠊⠰⠎" }, { "input": "shoddy", "output": "⠩⠕⠙⠙⠽" }, { "input": "shoe", "output": "â ©â •â ‘" }, { "input": "shoed", "output": "â ©â •â «" }, { "input": "shoehorn", "output": "â ©â •â ‘â “â •â —â " }, { "input": "shoehorned", "output": "â ©â •â ‘â “â •â —â â «" }, { "input": "shoehorning", "output": "â ©â •â ‘â “â •â —â â ¬" }, { "input": "shoehorns", "output": "â ©â •â ‘â “â •â —â â Ž" }, { "input": "shoeing", "output": "â ©â •â ‘â ¬" }, { "input": "shoelace", "output": "â ©â •â ‘â ‡â â ‰â ‘" }, { "input": "shoelaces", "output": "â ©â •â ‘â ‡â â ‰â ‘â Ž" }, { "input": "shoemaker", "output": "â ©â •â ‘â â â …â »" }, { "input": "shoemakers", "output": "â ©â •â ‘â â â …⠻⠎" }, { "input": "shoes", "output": "â ©â •â ‘â Ž" }, { "input": "shoeshine", "output": "⠩⠕⠑⠩⠔⠑" }, { "input": "shoeshines", "output": "⠩⠕⠑⠩⠔⠑⠎" }, { "input": "shoestring", "output": "⠩⠕⠑⠌⠗⠬" }, { "input": "shoestrings", "output": "⠩⠕⠑⠌⠗⠬⠎" }, { "input": "shogun", "output": "⠩⠕⠛⠥â " }, { "input": "shoguns", "output": "⠩⠕⠛⠥â â Ž" }, { "input": "shone", "output": "â ©â â •" }, { "input": "shoo", "output": "â ©â •â •" }, { "input": "shooed", "output": "â ©â •â •â «" }, { "input": "shooing", "output": "â ©â •â •â ¬" }, { "input": "shook", "output": "â ©â •â •â …" }, { "input": "shoon", "output": "â ©â •â •â " }, { "input": "shoos", "output": "â ©â •â •â Ž" }, { "input": "shoot", "output": "â ©â •â •â ž" }, { "input": "shooter", "output": "â ©â •â •â žâ »" }, { "input": "shooters", "output": "⠩⠕⠕⠞⠻⠎" }, { "input": "shooting", "output": "â ©â •â •â žâ ¬" }, { "input": "shootings", "output": "⠩⠕⠕⠞⠬⠎" }, { "input": "shootout", "output": "⠩⠕⠕⠞⠳⠞" }, { "input": "shootouts", "output": "⠩⠕⠕⠞⠳⠞⠎" }, { "input": "shoots", "output": "â ©â •â •â žâ Ž" }, { "input": "shop", "output": "â ©â •â " }, { "input": "shopkeeper", "output": "â ©â •â â …â ‘â ‘â â »" }, { "input": "shopkeepers", "output": "â ©â •â â …â ‘â ‘â â »â Ž" }, { "input": "shoplift", "output": "â ©â •â â ‡â Šâ ‹â ž" }, { "input": "shoplifted", "output": "â ©â •â â ‡â Šâ ‹â žâ «" }, { "input": "shoplifter", "output": "â ©â •â â ‡â Šâ ‹â žâ »" }, { "input": "shoplifters", "output": "â ©â •â â ‡â Šâ ‹â žâ »â Ž" }, { "input": "shoplifting", "output": "â ©â •â â ‡â Šâ ‹â žâ ¬" }, { "input": "shoplifts", "output": "â ©â •â â ‡â Šâ ‹â žâ Ž" }, { "input": "shopped", "output": "â ©â •â â â «" }, { "input": "shopper", "output": "â ©â •â â â »" }, { "input": "shoppers", "output": "â ©â •â â â »â Ž" }, { "input": "shopping", "output": "â ©â •â â â ¬" }, { "input": "shops", "output": "â ©â •â â Ž" }, { "input": "shoptalk", "output": "â ©â •â â žâ â ‡â …" }, { "input": "shopworn", "output": "â ©â •â â ºâ •â —â " }, { "input": "shore", "output": "â ©â •â —â ‘" }, { "input": "shored", "output": "â ©â •â —â «" }, { "input": "shoreline", "output": "⠩⠕⠗⠑⠇⠔⠑" }, { "input": "shorelines", "output": "⠩⠕⠗⠑⠇⠔⠑⠎" }, { "input": "shores", "output": "â ©â •â —â ‘â Ž" }, { "input": "shoring", "output": "â ©â •â —â ¬" }, { "input": "shorn", "output": "â ©â •â —â " }, { "input": "short", "output": "â ©â •â —â ž" }, { "input": "shortage", "output": "â ©â •â —â žâ â ›â ‘" }, { "input": "shortages", "output": "â ©â •â —â žâ â ›â ‘â Ž" }, { "input": "shortbread", "output": "⠩⠕⠗⠞⠃⠗⠂⠙" }, { "input": "shortcake", "output": "â ©â •â —â žâ ‰â â …â ‘" }, { "input": "shortcakes", "output": "â ©â •â —â žâ ‰â â …â ‘â Ž" }, { "input": "shortchange", "output": "â ©â •â —â žâ ¡â â â ›â ‘" }, { "input": "shortchanged", "output": "â ©â •â —â žâ ¡â â â ›â «" }, { "input": "shortchanges", "output": "â ©â •â —â žâ ¡â â â ›â ‘â Ž" }, { "input": "shortchanging", "output": "â ©â •â —â žâ ¡â â â ›â ¬" }, { "input": "shortcoming", "output": "⠩⠕⠗⠞⠉⠕â â ¬" }, { "input": "shortcomings", "output": "⠩⠕⠗⠞⠉⠕â â ¬â Ž" }, { "input": "shortcut", "output": "⠩⠕⠗⠞⠉⠥⠞" }, { "input": "shortcuts", "output": "⠩⠕⠗⠞⠉⠥⠞⠎" }, { "input": "shorted", "output": "â ©â •â —â žâ «" }, { "input": "shorten", "output": "â ©â •â —â žâ ¢" }, { "input": "shortened", "output": "⠩⠕⠗⠞⠢⠫" }, { "input": "shortening", "output": "⠩⠕⠗⠞⠢⠬" }, { "input": "shortenings", "output": "⠩⠕⠗⠞⠢⠬⠎" }, { "input": "shortens", "output": "⠩⠕⠗⠞⠢⠎" }, { "input": "shorter", "output": "â ©â •â —â žâ »" }, { "input": "shortest", "output": "â ©â •â —â žâ ‘â Œ" }, { "input": "shortfall", "output": "â ©â •â —â žâ ‹â â ‡â ‡" }, { "input": "shortfalls", "output": "â ©â •â —â žâ ‹â â ‡â ‡â Ž" }, { "input": "shorthand", "output": "â ©â •â —â žâ “â ¯" }, { "input": "shorthorn", "output": "â ©â •â —â žâ “â •â —â " }, { "input": "shorthorns", "output": "â ©â •â —â žâ “â •â —â â Ž" }, { "input": "shorting", "output": "â ©â •â —â žâ ¬" }, { "input": "shortish", "output": "â ©â •â —â žâ Šâ ©" }, { "input": "shortlist", "output": "⠩⠕⠗⠞⠇⠊⠌" }, { "input": "shortly", "output": "⠩⠕⠗⠞⠇⠽" }, { "input": "shortness", "output": "â ©â •â —â žâ °â Ž" }, { "input": "shorts", "output": "â ©â •â —â žâ Ž" }, { "input": "shortsighted", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫" }, { "input": "shortsightedly", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫⠇⠽" }, { "input": "shortsightedness", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫⠰⠎" }, { "input": "shortstop", "output": "⠩⠕⠗⠞⠌⠕â " }, { "input": "shortstops", "output": "⠩⠕⠗⠞⠌⠕â â Ž" }, { "input": "shortwave", "output": "â ©â •â —â žâ ºâ â §â ‘" }, { "input": "shortwaves", "output": "â ©â •â —â žâ ºâ â §â ‘â Ž" }, { "input": "shot", "output": "â ©â •â ž" }, { "input": "shotgun", "output": "⠩⠕⠞⠛⠥â " }, { "input": "shotgunned", "output": "⠩⠕⠞⠛⠥â â â «" }, { "input": "shotgunning", "output": "⠩⠕⠞⠛⠥â â â ¬" }, { "input": "shotguns", "output": "⠩⠕⠞⠛⠥â â Ž" }, { "input": "shots", "output": "â ©â •â žâ Ž" }, { "input": "should", "output": "â ©â ™" }, { "input": "shoulder", "output": "⠩⠳⠇⠙⠻" }, { "input": "shouldered", "output": "⠩⠳⠇⠙⠻⠫" }, { "input": "shouldering", "output": "⠩⠳⠇⠙⠻⠬" }, { "input": "shoulders", "output": "⠩⠳⠇⠙⠻⠎" }, { "input": "shout", "output": "⠩⠳⠞" }, { "input": "shouted", "output": "⠩⠳⠞⠫" }, { "input": "shouting", "output": "⠩⠳⠞⠬" }, { "input": "shouts", "output": "⠩⠳⠞⠎" }, { "input": "shove", "output": "â ©â •â §â ‘" }, { "input": "shoved", "output": "â ©â •â §â «" }, { "input": "shovel", "output": "â ©â •â §â ‘â ‡" }, { "input": "shoveled", "output": "⠩⠕⠧⠑⠇⠫" }, { "input": "shovelful", "output": "⠩⠕⠧⠑⠇⠰⠇" }, { "input": "shovelfuls", "output": "⠩⠕⠧⠑⠇⠰⠇⠎" }, { "input": "shoveling", "output": "⠩⠕⠧⠑⠇⠬" }, { "input": "shovelled", "output": "⠩⠕⠧⠑⠇⠇⠫" }, { "input": "shovelling", "output": "⠩⠕⠧⠑⠇⠇⠬" }, { "input": "shovels", "output": "⠩⠕⠧⠑⠇⠎" }, { "input": "shoves", "output": "â ©â •â §â ‘â Ž" }, { "input": "shoving", "output": "â ©â •â §â ¬" }, { "input": "show", "output": "â ©â ª" }, { "input": "showbiz", "output": "⠩⠪⠃⠊⠵" }, { "input": "showboat", "output": "⠩⠪⠃⠕â â ž" }, { "input": "showboated", "output": "⠩⠪⠃⠕â â žâ «" }, { "input": "showboating", "output": "⠩⠪⠃⠕â â žâ ¬" }, { "input": "showboats", "output": "⠩⠪⠃⠕â â žâ Ž" }, { "input": "showcase", "output": "⠩⠪⠉â â Žâ ‘" }, { "input": "showcased", "output": "⠩⠪⠉â â Žâ «" }, { "input": "showcases", "output": "⠩⠪⠉â â Žâ ‘â Ž" }, { "input": "showcasing", "output": "⠩⠪⠉â â Žâ ¬" }, { "input": "showdown", "output": "⠩⠪⠙⠪â " }, { "input": "showdowns", "output": "⠩⠪⠙⠪â â Ž" }, { "input": "showed", "output": "⠩⠪⠫" }, { "input": "shower", "output": "⠩⠪⠻" }, { "input": "showered", "output": "⠩⠪⠻⠫" }, { "input": "showering", "output": "⠩⠪⠻⠬" }, { "input": "showers", "output": "⠩⠪⠻⠎" }, { "input": "showery", "output": "⠩⠪⠻⠽" }, { "input": "showgirl", "output": "⠩⠪⠛⠊⠗⠇" }, { "input": "showgirls", "output": "⠩⠪⠛⠊⠗⠇⠎" }, { "input": "showier", "output": "⠩⠪⠊⠻" }, { "input": "showiest", "output": "⠩⠪⠊⠑⠌" }, { "input": "showily", "output": "⠩⠪⠊⠇⠽" }, { "input": "showiness", "output": "⠩⠪⠊⠰⠎" }, { "input": "showing", "output": "⠩⠪⠬" }, { "input": "showings", "output": "⠩⠪⠬⠎" }, { "input": "showman", "output": "â ©â ªâ â â " }, { "input": "showmanship", "output": "â ©â ªâ â â â ©â Šâ " }, { "input": "showmen", "output": "â ©â ªâ â ¢" }, { "input": "shown", "output": "â ©â ªâ " }, { "input": "showoff", "output": "⠩⠪⠷⠋" }, { "input": "showoffs", "output": "⠩⠪⠷⠋⠎" }, { "input": "showpiece", "output": "â ©â ªâ â Šâ ‘⠉⠑" }, { "input": "showpieces", "output": "â ©â ªâ â Šâ ‘⠉⠑⠎" }, { "input": "showplace", "output": "â ©â ªâ â ‡â â ‰â ‘" }, { "input": "showplaces", "output": "â ©â ªâ â ‡â â ‰â ‘â Ž" }, { "input": "showroom", "output": "⠩⠪⠗⠕⠕â " }, { "input": "showrooms", "output": "⠩⠪⠗⠕⠕â â Ž" }, { "input": "shows", "output": "⠩⠪⠎" }, { "input": "showy", "output": "⠩⠪⠽" }, { "input": "shrank", "output": "â ©â —â â â …" }, { "input": "shrapnel", "output": "â ©â —â â â â ‘â ‡" }, { "input": "shred", "output": "â ©â —â «" }, { "input": "shredded", "output": "⠩⠗⠫⠙⠫" }, { "input": "shredder", "output": "⠩⠗⠫⠙⠻" }, { "input": "shredders", "output": "⠩⠗⠫⠙⠻⠎" }, { "input": "shredding", "output": "⠩⠗⠫⠙⠬" }, { "input": "shreds", "output": "â ©â —â «â Ž" }, { "input": "shrew", "output": "â ©â —â ‘â º" }, { "input": "shrewd", "output": "⠩⠗⠑⠺⠙" }, { "input": "shrewder", "output": "⠩⠗⠑⠺⠙⠻" }, { "input": "shrewdest", "output": "⠩⠗⠑⠺⠙⠑⠌" }, { "input": "shrewdly", "output": "⠩⠗⠑⠺⠙⠇⠽" }, { "input": "shrewdness", "output": "⠩⠗⠑⠺⠙⠰⠎" }, { "input": "shrewish", "output": "⠩⠗⠑⠺⠊⠩" }, { "input": "shrews", "output": "⠩⠗⠑⠺⠎" }, { "input": "shriek", "output": "â ©â —â Šâ ‘â …" }, { "input": "shrieked", "output": "â ©â —â Šâ ‘â …â «" }, { "input": "shrieking", "output": "â ©â —â Šâ ‘â …â ¬" }, { "input": "shrieks", "output": "â ©â —â Šâ ‘â …â Ž" }, { "input": "shrift", "output": "â ©â —â Šâ ‹â ž" }, { "input": "shrike", "output": "â ©â —â Šâ …â ‘" }, { "input": "shrikes", "output": "â ©â —â Šâ …â ‘â Ž" }, { "input": "shrill", "output": "⠩⠗⠊⠇⠇" }, { "input": "shrilled", "output": "⠩⠗⠊⠇⠇⠫" }, { "input": "shriller", "output": "⠩⠗⠊⠇⠇⠻" }, { "input": "shrillest", "output": "⠩⠗⠊⠇⠇⠑⠌" }, { "input": "shrilling", "output": "⠩⠗⠊⠇⠇⠬" }, { "input": "shrillness", "output": "⠩⠗⠊⠇⠇⠰⠎" }, { "input": "shrills", "output": "⠩⠗⠊⠇⠇⠎" }, { "input": "shrilly", "output": "⠩⠗⠊⠇⠇⠽" }, { "input": "shrimp", "output": "â ©â —â Šâ â " }, { "input": "shrimped", "output": "â ©â —â Šâ â â «" }, { "input": "shrimping", "output": "â ©â —â Šâ â â ¬" }, { "input": "shrimps", "output": "â ©â —â Šâ â â Ž" }, { "input": "shrine", "output": "⠩⠗⠔⠑" }, { "input": "shrines", "output": "⠩⠗⠔⠑⠎" }, { "input": "shrink", "output": "⠩⠗⠔⠅" }, { "input": "shrinkable", "output": "⠩⠗⠔⠅â â ƒâ ‡â ‘" }, { "input": "shrinkage", "output": "⠩⠗⠔⠅â â ›â ‘" }, { "input": "shrinking", "output": "⠩⠗⠔⠅⠬" }, { "input": "shrinks", "output": "⠩⠗⠔⠅⠎" }, { "input": "shrive", "output": "â ©â —â Šâ §â ‘" }, { "input": "shrived", "output": "â ©â —â Šâ §â «" }, { "input": "shrivel", "output": "â ©â —â Šâ §â ‘â ‡" }, { "input": "shriveled", "output": "⠩⠗⠊⠧⠑⠇⠫" }, { "input": "shriveling", "output": "⠩⠗⠊⠧⠑⠇⠬" }, { "input": "shrivelled", "output": "⠩⠗⠊⠧⠑⠇⠇⠫" }, { "input": "shrivelling", "output": "⠩⠗⠊⠧⠑⠇⠇⠬" }, { "input": "shrivels", "output": "⠩⠗⠊⠧⠑⠇⠎" }, { "input": "shriven", "output": "â ©â —â Šâ §â ¢" }, { "input": "shrives", "output": "â ©â —â Šâ §â ‘â Ž" }, { "input": "shriving", "output": "â ©â —â Šâ §â ¬" }, { "input": "shroud", "output": "⠩⠗⠳⠙" }, { "input": "shrouded", "output": "⠩⠗⠳⠙⠫" }, { "input": "shrouding", "output": "⠩⠗⠳⠙⠬" }, { "input": "shrouds", "output": "⠩⠗⠳⠙⠎" }, { "input": "shrove", "output": "â ©â —â •â §â ‘" }, { "input": "shrub", "output": "⠩⠗⠥⠃" }, { "input": "shrubberies", "output": "⠩⠗⠥⠆⠻⠊⠑⠎" }, { "input": "shrubbery", "output": "⠩⠗⠥⠆⠻⠽" }, { "input": "shrubbier", "output": "⠩⠗⠥⠆⠊⠻" }, { "input": "shrubbiest", "output": "⠩⠗⠥⠆⠊⠑⠌" }, { "input": "shrubby", "output": "⠩⠗⠥⠆⠽" }, { "input": "shrubs", "output": "⠩⠗⠥⠃⠎" }, { "input": "shrug", "output": "⠩⠗⠥⠛" }, { "input": "shrugged", "output": "⠩⠗⠥⠶⠫" }, { "input": "shrugging", "output": "⠩⠗⠥⠶⠬" }, { "input": "shrugs", "output": "⠩⠗⠥⠛⠎" }, { "input": "shrunk", "output": "â ©â —â ¥â â …" }, { "input": "shrunken", "output": "â ©â —â ¥â â …â ¢" }, { "input": "shtick", "output": "⠩⠞⠊⠉⠅" }, { "input": "shticks", "output": "⠩⠞⠊⠉⠅⠎" }, { "input": "shtik", "output": "â ©â žâ Šâ …" }, { "input": "shtiks", "output": "â ©â žâ Šâ …â Ž" }, { "input": "shuck", "output": "⠩⠥⠉⠅" }, { "input": "shucked", "output": "⠩⠥⠉⠅⠫" }, { "input": "shucking", "output": "⠩⠥⠉⠅⠬" }, { "input": "shucks", "output": "⠩⠥⠉⠅⠎" }, { "input": "shuckses", "output": "⠩⠥⠉⠅⠎⠑⠎" }, { "input": "shudder", "output": "⠩⠥⠙⠙⠻" }, { "input": "shuddered", "output": "⠩⠥⠙⠙⠻⠫" }, { "input": "shuddering", "output": "⠩⠥⠙⠙⠻⠬" }, { "input": "shudders", "output": "⠩⠥⠙⠙⠻⠎" }, { "input": "shuffle", "output": "⠩⠥⠖⠇⠑" }, { "input": "shuffleboard", "output": "⠩⠥⠖⠇⠑⠃⠕⠜⠙" }, { "input": "shuffleboards", "output": "⠩⠥⠖⠇⠑⠃⠕⠜⠙⠎" }, { "input": "shuffled", "output": "⠩⠥⠖⠇⠫" }, { "input": "shuffler", "output": "⠩⠥⠖⠇⠻" }, { "input": "shufflers", "output": "⠩⠥⠖⠇⠻⠎" }, { "input": "shuffles", "output": "⠩⠥⠖⠇⠑⠎" }, { "input": "shuffling", "output": "⠩⠥⠖⠇⠬" }, { "input": "shun", "output": "â ©â ¥â " }, { "input": "shunned", "output": "â ©â ¥â â â «" }, { "input": "shunning", "output": "â ©â ¥â â â ¬" }, { "input": "shuns", "output": "â ©â ¥â â Ž" }, { "input": "shunt", "output": "â ©â ¥â â ž" }, { "input": "shunted", "output": "â ©â ¥â â žâ «" }, { "input": "shunting", "output": "â ©â ¥â â žâ ¬" }, { "input": "shunts", "output": "â ©â ¥â â žâ Ž" }, { "input": "shush", "output": "⠩⠥⠩" }, { "input": "shushed", "output": "⠩⠥⠩⠫" }, { "input": "shushes", "output": "⠩⠥⠩⠑⠎" }, { "input": "shushing", "output": "⠩⠥⠩⠬" }, { "input": "shut", "output": "⠩⠥⠞" }, { "input": "shutdown", "output": "⠩⠥⠞⠙⠪â " }, { "input": "shutdowns", "output": "⠩⠥⠞⠙⠪â â Ž" }, { "input": "shuteye", "output": "⠩⠥⠞⠑⠽⠑" }, { "input": "shutout", "output": "⠩⠥⠞⠳⠞" }, { "input": "shutouts", "output": "⠩⠥⠞⠳⠞⠎" }, { "input": "shuts", "output": "⠩⠥⠞⠎" }, { "input": "shutter", "output": "⠩⠥⠞⠞⠻" }, { "input": "shutterbug", "output": "⠩⠥⠞⠞⠻⠃⠥⠛" }, { "input": "shutterbugs", "output": "⠩⠥⠞⠞⠻⠃⠥⠛⠎" }, { "input": "shuttered", "output": "⠩⠥⠞⠞⠻⠫" }, { "input": "shuttering", "output": "⠩⠥⠞⠞⠻⠬" }, { "input": "shutters", "output": "⠩⠥⠞⠞⠻⠎" }, { "input": "shutting", "output": "⠩⠥⠞⠞⠬" }, { "input": "shuttle", "output": "⠩⠥⠞⠞⠇⠑" }, { "input": "shuttlecock", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅" }, { "input": "shuttlecocked", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠫" }, { "input": "shuttlecocking", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠬" }, { "input": "shuttlecocks", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠎" }, { "input": "shuttled", "output": "⠩⠥⠞⠞⠇⠫" }, { "input": "shuttles", "output": "⠩⠥⠞⠞⠇⠑⠎" }, { "input": "shuttling", "output": "⠩⠥⠞⠞⠇⠬" }, { "input": "shy", "output": "â ©â ½" }, { "input": "shyer", "output": "⠩⠽⠻" }, { "input": "shyest", "output": "⠩⠽⠑⠌" }, { "input": "shying", "output": "⠩⠽⠬" }, { "input": "shyly", "output": "⠩⠽⠇⠽" }, { "input": "shyness", "output": "⠩⠽⠰⠎" }, { "input": "shyster", "output": "⠩⠽⠌⠻" }, { "input": "shysters", "output": "⠩⠽⠌⠻⠎" }, { "input": "sibilant", "output": "⠎⠊⠃⠊⠇â â â ž" }, { "input": "sibilants", "output": "⠎⠊⠃⠊⠇â â â žâ Ž" }, { "input": "sibling", "output": "⠎⠊⠃⠇⠬" }, { "input": "siblings", "output": "⠎⠊⠃⠇⠬⠎" }, { "input": "sibyl", "output": "⠎⠊⠃⠽⠇" }, { "input": "sibyls", "output": "⠎⠊⠃⠽⠇⠎" }, { "input": "sic", "output": "â Žâ Šâ ‰" }, { "input": "sick", "output": "⠎⠊⠉⠅" }, { "input": "sickbed", "output": "⠎⠊⠉⠅⠃⠫" }, { "input": "sickbeds", "output": "⠎⠊⠉⠅⠃⠫⠎" }, { "input": "sicked", "output": "⠎⠊⠉⠅⠫" }, { "input": "sicken", "output": "⠎⠊⠉⠅⠢" }, { "input": "sickened", "output": "⠎⠊⠉⠅⠢⠫" }, { "input": "sickening", "output": "⠎⠊⠉⠅⠢⠬" }, { "input": "sickeningly", "output": "⠎⠊⠉⠅⠢⠬⠇⠽" }, { "input": "sickens", "output": "⠎⠊⠉⠅⠢⠎" }, { "input": "sicker", "output": "⠎⠊⠉⠅⠻" }, { "input": "sickest", "output": "⠎⠊⠉⠅⠑⠌" }, { "input": "sicking", "output": "⠎⠊⠉⠅⠬" }, { "input": "sickle", "output": "⠎⠊⠉⠅⠇⠑" }, { "input": "sickles", "output": "⠎⠊⠉⠅⠇⠑⠎" }, { "input": "sicklier", "output": "⠎⠊⠉⠅⠇⠊⠻" }, { "input": "sickliest", "output": "⠎⠊⠉⠅⠇⠊⠑⠌" }, { "input": "sickly", "output": "⠎⠊⠉⠅⠇⠽" }, { "input": "sickness", "output": "⠎⠊⠉⠅⠰⠎" }, { "input": "sicknesses", "output": "⠎⠊⠉⠅⠰⠎⠑⠎" }, { "input": "sicks", "output": "⠎⠊⠉⠅⠎" }, { "input": "sics", "output": "⠎⠊⠉⠎" }, { "input": "side", "output": "⠎⠊⠙⠑" }, { "input": "sidearm", "output": "⠎⠊⠙⠑⠜â " }, { "input": "sidearms", "output": "⠎⠊⠙⠑⠜â â Ž" }, { "input": "sidebar", "output": "⠎⠊⠙⠑⠃⠜" }, { "input": "sidebars", "output": "⠎⠊⠙⠑⠃⠜⠎" }, { "input": "sideboard", "output": "⠎⠊⠙⠑⠃⠕⠜⠙" }, { "input": "sideboards", "output": "⠎⠊⠙⠑⠃⠕⠜⠙⠎" }, { "input": "sideburns", "output": "⠎⠊⠙⠑⠃⠥⠗â â Ž" }, { "input": "sidecar", "output": "⠎⠊⠙⠑⠉⠜" }, { "input": "sidecars", "output": "⠎⠊⠙⠑⠉⠜⠎" }, { "input": "sided", "output": "⠎⠊⠙⠫" }, { "input": "sidekick", "output": "⠎⠊⠙⠑⠅⠊⠉⠅" }, { "input": "sidekicks", "output": "⠎⠊⠙⠑⠅⠊⠉⠅⠎" }, { "input": "sidelight", "output": "⠎⠊⠙⠑⠇⠊⠣⠞" }, { "input": "sidelights", "output": "⠎⠊⠙⠑⠇⠊⠣⠞⠎" }, { "input": "sideline", "output": "⠎⠊⠙⠑⠇⠔⠑" }, { "input": "sidelined", "output": "⠎⠊⠙⠑⠇⠔⠫" }, { "input": "sidelines", "output": "⠎⠊⠙⠑⠇⠔⠑⠎" }, { "input": "sidelining", "output": "⠎⠊⠙⠑⠇⠔⠬" }, { "input": "sidelong", "output": "⠎⠊⠙⠑⠇⠰⠛" }, { "input": "sidereal", "output": "⠎⠊⠙⠻⠂⠇" }, { "input": "sides", "output": "⠎⠊⠙⠑⠎" }, { "input": "sidesaddle", "output": "⠎⠊⠙⠑⠎â â ™â ™â ‡â ‘" }, { "input": "sidesaddles", "output": "⠎⠊⠙⠑⠎â â ™â ™â ‡â ‘â Ž" }, { "input": "sideshow", "output": "⠎⠊⠙⠑⠩⠪" }, { "input": "sideshows", "output": "⠎⠊⠙⠑⠩⠪⠎" }, { "input": "sidesplitting", "output": "⠎⠊⠙⠑⠎â â ‡â Šâ žâ žâ ¬" }, { "input": "sidestep", "output": "⠎⠊⠙⠑⠌⠑â " }, { "input": "sidestepped", "output": "⠎⠊⠙⠑⠌⠑â â â «" }, { "input": "sidestepping", "output": "⠎⠊⠙⠑⠌⠑â â â ¬" }, { "input": "sidesteps", "output": "⠎⠊⠙⠑⠌⠑â â Ž" }, { "input": "sidestroke", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠑" }, { "input": "sidestroked", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠫" }, { "input": "sidestrokes", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠑⠎" }, { "input": "sidestroking", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠬" }, { "input": "sideswipe", "output": "⠎⠊⠙⠑⠎⠺⠊â â ‘" }, { "input": "sideswiped", "output": "⠎⠊⠙⠑⠎⠺⠊â â «" }, { "input": "sideswipes", "output": "⠎⠊⠙⠑⠎⠺⠊â â ‘â Ž" }, { "input": "sideswiping", "output": "⠎⠊⠙⠑⠎⠺⠊â â ¬" }, { "input": "sidetrack", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …" }, { "input": "sidetracked", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â «" }, { "input": "sidetracking", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â ¬" }, { "input": "sidetracks", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â Ž" }, { "input": "sidewalk", "output": "⠎⠊⠙⠑⠺â â ‡â …" }, { "input": "sidewalks", "output": "⠎⠊⠙⠑⠺â â ‡â …â Ž" }, { "input": "sidewall", "output": "⠎⠊⠙⠑⠺â â ‡â ‡" }, { "input": "sidewalls", "output": "⠎⠊⠙⠑⠺â â ‡â ‡â Ž" }, { "input": "sideways", "output": "⠎⠊⠙⠑⠺â â ½â Ž" }, { "input": "sidewise", "output": "⠎⠊⠙⠑⠺⠊⠎⠑" }, { "input": "siding", "output": "⠎⠊⠙⠬" }, { "input": "sidings", "output": "⠎⠊⠙⠬⠎" }, { "input": "sidle", "output": "⠎⠊⠙⠇⠑" }, { "input": "sidled", "output": "⠎⠊⠙⠇⠫" }, { "input": "sidles", "output": "⠎⠊⠙⠇⠑⠎" }, { "input": "sidling", "output": "⠎⠊⠙⠇⠬" }, { "input": "siege", "output": "⠎⠊⠑⠛⠑" }, { "input": "sieges", "output": "⠎⠊⠑⠛⠑⠎" }, { "input": "sierra", "output": "⠎⠊⠻⠗â " }, { "input": "sierras", "output": "⠎⠊⠻⠗â â Ž" }, { "input": "siesta", "output": "â Žâ Šâ ‘â Œâ " }, { "input": "siestas", "output": "â Žâ Šâ ‘â Œâ â Ž" }, { "input": "sieve", "output": "â Žâ Šâ ‘â §â ‘" }, { "input": "sieved", "output": "â Žâ Šâ ‘â §â «" }, { "input": "sieves", "output": "â Žâ Šâ ‘â §â ‘â Ž" }, { "input": "sieving", "output": "â Žâ Šâ ‘â §â ¬" }, { "input": "sift", "output": "â Žâ Šâ ‹â ž" }, { "input": "sifted", "output": "â Žâ Šâ ‹â žâ «" }, { "input": "sifter", "output": "â Žâ Šâ ‹â žâ »" }, { "input": "sifters", "output": "⠎⠊⠋⠞⠻⠎" }, { "input": "sifting", "output": "â Žâ Šâ ‹â žâ ¬" }, { "input": "sifts", "output": "â Žâ Šâ ‹â žâ Ž" }, { "input": "sigh", "output": "â Žâ Šâ £" }, { "input": "sighed", "output": "⠎⠊⠣⠫" }, { "input": "sighing", "output": "⠎⠊⠣⠬" }, { "input": "sighs", "output": "⠎⠊⠣⠎" }, { "input": "sight", "output": "⠎⠊⠣⠞" }, { "input": "sighted", "output": "⠎⠊⠣⠞⠫" }, { "input": "sighting", "output": "⠎⠊⠣⠞⠬" }, { "input": "sightings", "output": "⠎⠊⠣⠞⠬⠎" }, { "input": "sightless", "output": "⠎⠊⠣⠞⠨⠎" }, { "input": "sightread", "output": "⠎⠊⠣⠞⠗⠂⠙" }, { "input": "sights", "output": "⠎⠊⠣⠞⠎" }, { "input": "sightseeing", "output": "⠎⠊⠣⠞⠎⠑⠑⠬" }, { "input": "sightseer", "output": "⠎⠊⠣⠞⠎⠑⠻" }, { "input": "sightseers", "output": "⠎⠊⠣⠞⠎⠑⠻⠎" }, { "input": "sigma", "output": "â Žâ Šâ ›â â " }, { "input": "sign", "output": "â Žâ Šâ ›â " }, { "input": "signal", "output": "â Žâ Šâ ›â â â ‡" }, { "input": "signaled", "output": "â Žâ Šâ ›â â â ‡â «" }, { "input": "signaling", "output": "â Žâ Šâ ›â â â ‡â ¬" }, { "input": "signalize", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ ‘" }, { "input": "signalized", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ «" }, { "input": "signalizes", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ ‘â Ž" }, { "input": "signalizing", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ ¬" }, { "input": "signalled", "output": "â Žâ Šâ ›â â â ‡â ‡â «" }, { "input": "signalling", "output": "â Žâ Šâ ›â â â ‡â ‡â ¬" }, { "input": "signally", "output": "â Žâ Šâ ›â â â ‡â ‡â ½" }, { "input": "signals", "output": "â Žâ Šâ ›â â â ‡â Ž" }, { "input": "signatories", "output": "â Žâ Šâ ›â â â žâ •â —â Šâ ‘â Ž" }, { "input": "signatory", "output": "â Žâ Šâ ›â â â žâ •â —â ½" }, { "input": "signature", "output": "â Žâ Šâ ›â â â žâ ¥â —â ‘" }, { "input": "signatures", "output": "â Žâ Šâ ›â â â žâ ¥â —â ‘â Ž" }, { "input": "signboard", "output": "â Žâ Šâ ›â â ƒâ •⠜⠙" }, { "input": "signboards", "output": "â Žâ Šâ ›â â ƒâ •⠜⠙⠎" }, { "input": "signed", "output": "â Žâ Šâ ›â â «" }, { "input": "signer", "output": "â Žâ Šâ ›â â »" }, { "input": "signers", "output": "â Žâ Šâ ›â â »â Ž" }, { "input": "signet", "output": "â Žâ Šâ ›â â ‘â ž" }, { "input": "signets", "output": "â Žâ Šâ ›â â ‘â žâ Ž" }, { "input": "significance", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â ¨â ‘" }, { "input": "significant", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â â â ž" }, { "input": "significantly", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â â â žâ ‡â ½" }, { "input": "signification", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â â °â " }, { "input": "significations", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "signified", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ «" }, { "input": "signifies", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‘â Ž" }, { "input": "signify", "output": "â Žâ Šâ ›â â Šâ ‹â ½" }, { "input": "signifying", "output": "â Žâ Šâ ›â â Šâ ‹â ½â ¬" }, { "input": "signing", "output": "â Žâ Šâ ›â â ¬" }, { "input": "signings", "output": "â Žâ Šâ ›â â ¬â Ž" }, { "input": "signpost", "output": "â Žâ Šâ ›â â â •â Œ" }, { "input": "signposted", "output": "â Žâ Šâ ›â â â •⠌⠫" }, { "input": "signposting", "output": "â Žâ Šâ ›â â â •⠌⠬" }, { "input": "signposts", "output": "â Žâ Šâ ›â â â •⠌⠎" }, { "input": "signs", "output": "â Žâ Šâ ›â â Ž" }, { "input": "silage", "output": "â Žâ Šâ ‡â â ›â ‘" }, { "input": "silence", "output": "⠎⠊⠇⠰⠑" }, { "input": "silenced", "output": "⠎⠊⠇⠰⠑⠙" }, { "input": "silencer", "output": "⠎⠊⠇⠰⠑⠗" }, { "input": "silencers", "output": "⠎⠊⠇⠰⠑⠗⠎" }, { "input": "silences", "output": "⠎⠊⠇⠰⠑⠎" }, { "input": "silencing", "output": "⠎⠊⠇⠢⠉⠬" }, { "input": "silent", "output": "⠎⠊⠇⠢⠞" }, { "input": "silenter", "output": "⠎⠊⠇⠢⠞⠻" }, { "input": "silentest", "output": "⠎⠊⠇⠢⠞⠑⠌" }, { "input": "silently", "output": "⠎⠊⠇⠢⠞⠇⠽" }, { "input": "silents", "output": "⠎⠊⠇⠢⠞⠎" }, { "input": "silhouette", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠑" }, { "input": "silhouetted", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠫" }, { "input": "silhouettes", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠑⠎" }, { "input": "silhouetting", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠬" }, { "input": "silica", "output": "⠎⠊⠇⠊⠉â " }, { "input": "silicate", "output": "⠎⠊⠇⠊⠉â â žâ ‘" }, { "input": "silicates", "output": "⠎⠊⠇⠊⠉â â žâ ‘â Ž" }, { "input": "siliceous", "output": "⠎⠊⠇⠊⠉⠑⠳⠎" }, { "input": "silicious", "output": "⠎⠊⠇⠊⠉⠊⠳⠎" }, { "input": "silicon", "output": "⠎⠊⠇⠊⠉⠕â " }, { "input": "silicone", "output": "⠎⠊⠇⠊⠉â â •" }, { "input": "silicosis", "output": "⠎⠊⠇⠊⠉⠕⠎⠊⠎" }, { "input": "silk", "output": "⠎⠊⠇⠅" }, { "input": "silken", "output": "⠎⠊⠇⠅⠢" }, { "input": "silkier", "output": "⠎⠊⠇⠅⠊⠻" }, { "input": "silkiest", "output": "⠎⠊⠇⠅⠊⠑⠌" }, { "input": "silks", "output": "⠎⠊⠇⠅⠎" }, { "input": "silkworm", "output": "⠎⠊⠇⠅⠺⠕⠗â " }, { "input": "silkworms", "output": "⠎⠊⠇⠅⠺⠕⠗â â Ž" }, { "input": "silky", "output": "⠎⠊⠇⠅⠽" }, { "input": "sill", "output": "⠎⠊⠇⠇" }, { "input": "sillier", "output": "⠎⠊⠇⠇⠊⠻" }, { "input": "sillies", "output": "⠎⠊⠇⠇⠊⠑⠎" }, { "input": "silliest", "output": "⠎⠊⠇⠇⠊⠑⠌" }, { "input": "silliness", "output": "⠎⠊⠇⠇⠊⠰⠎" }, { "input": "sills", "output": "⠎⠊⠇⠇⠎" }, { "input": "silly", "output": "⠎⠊⠇⠇⠽" }, { "input": "silo", "output": "⠎⠊⠇⠕" }, { "input": "silos", "output": "⠎⠊⠇⠕⠎" }, { "input": "silt", "output": "⠎⠊⠇⠞" }, { "input": "silted", "output": "⠎⠊⠇⠞⠫" }, { "input": "silting", "output": "⠎⠊⠇⠞⠬" }, { "input": "silts", "output": "⠎⠊⠇⠞⠎" }, { "input": "silvan", "output": "⠎⠊⠇⠧â â " }, { "input": "silver", "output": "⠎⠊⠇⠧⠻" }, { "input": "silvered", "output": "⠎⠊⠇⠧⠻⠫" }, { "input": "silverfish", "output": "⠎⠊⠇⠧⠻⠋⠊⠩" }, { "input": "silverfishes", "output": "⠎⠊⠇⠧⠻⠋⠊⠩⠑⠎" }, { "input": "silvering", "output": "⠎⠊⠇⠧⠻⠬" }, { "input": "silvers", "output": "⠎⠊⠇⠧⠻⠎" }, { "input": "silversmith", "output": "⠎⠊⠇⠧⠻⠎â â Šâ ¹" }, { "input": "silversmiths", "output": "⠎⠊⠇⠧⠻⠎â â Šâ ¹â Ž" }, { "input": "silverware", "output": "⠎⠊⠇⠧⠻⠺⠜⠑" }, { "input": "silvery", "output": "⠎⠊⠇⠧⠻⠽" }, { "input": "simian", "output": "â Žâ Šâ â Šâ â " }, { "input": "simians", "output": "â Žâ Šâ â Šâ â â Ž" }, { "input": "similar", "output": "â Žâ Šâ â Šâ ‡â œ" }, { "input": "similarities", "output": "â Žâ Šâ â Šâ ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "similarity", "output": "â Žâ Šâ â Šâ ‡â œâ °â ½" }, { "input": "similarly", "output": "â Žâ Šâ â Šâ ‡â œâ ‡â ½" }, { "input": "simile", "output": "â Žâ Šâ â Šâ ‡â ‘" }, { "input": "similes", "output": "â Žâ Šâ â Šâ ‡â ‘â Ž" }, { "input": "simmer", "output": "â Žâ Šâ â â »" }, { "input": "simmered", "output": "â Žâ Šâ â â »â «" }, { "input": "simmering", "output": "â Žâ Šâ â â »â ¬" }, { "input": "simmers", "output": "â Žâ Šâ â â »â Ž" }, { "input": "simpatico", "output": "â Žâ Šâ â â â žâ Šâ ‰â •" }, { "input": "simper", "output": "â Žâ Šâ â â »" }, { "input": "simpered", "output": "â Žâ Šâ â â »â «" }, { "input": "simpering", "output": "â Žâ Šâ â â »â ¬" }, { "input": "simpers", "output": "â Žâ Šâ â â »â Ž" }, { "input": "simple", "output": "â Žâ Šâ â â ‡â ‘" }, { "input": "simpleness", "output": "â Žâ Šâ â â ‡â ‘â °â Ž" }, { "input": "simpler", "output": "â Žâ Šâ â â ‡â »" }, { "input": "simplest", "output": "â Žâ Šâ â â ‡â ‘â Œ" }, { "input": "simpleton", "output": "â Žâ Šâ â â ‡â ‘â žâ •â " }, { "input": "simpletons", "output": "â Žâ Šâ â â ‡â ‘â žâ •â â Ž" }, { "input": "simplex", "output": "â Žâ Šâ â â ‡â ‘â ­" }, { "input": "simplicity", "output": "â Žâ Šâ â â ‡â Šâ ‰â °â ½" }, { "input": "simplification", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‰â â °â " }, { "input": "simplifications", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‰â â °â â Ž" }, { "input": "simplified", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ «" }, { "input": "simplifies", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "simplify", "output": "â Žâ Šâ â â ‡â Šâ ‹â ½" }, { "input": "simplifying", "output": "â Žâ Šâ â â ‡â Šâ ‹â ½â ¬" }, { "input": "simplistic", "output": "â Žâ Šâ â â ‡â Šâ Œâ Šâ ‰" }, { "input": "simply", "output": "â Žâ Šâ â â ‡â ½" }, { "input": "simulate", "output": "â Žâ Šâ â ¥â ‡â â žâ ‘" }, { "input": "simulated", "output": "â Žâ Šâ â ¥â ‡â â žâ «" }, { "input": "simulates", "output": "â Žâ Šâ â ¥â ‡â â žâ ‘â Ž" }, { "input": "simulating", "output": "â Žâ Šâ â ¥â ‡â â žâ ¬" }, { "input": "simulation", "output": "â Žâ Šâ â ¥â ‡â â °â " }, { "input": "simulations", "output": "â Žâ Šâ â ¥â ‡â â °â â Ž" }, { "input": "simulator", "output": "â Žâ Šâ â ¥â ‡â â žâ •â —" }, { "input": "simulators", "output": "â Žâ Šâ â ¥â ‡â â žâ •â —â Ž" }, { "input": "simulcast", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œ" }, { "input": "simulcasted", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ «" }, { "input": "simulcasting", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ ¬" }, { "input": "simulcasts", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ Ž" }, { "input": "simultaneous", "output": "â Žâ Šâ â ¥â ‡â žâ â â ‘⠳⠎" }, { "input": "simultaneously", "output": "â Žâ Šâ â ¥â ‡â žâ â â ‘⠳⠎⠇⠽" }, { "input": "sin", "output": "â Žâ ”" }, { "input": "since", "output": "⠎⠔⠉⠑" }, { "input": "sincere", "output": "⠎⠔⠉⠻⠑" }, { "input": "sincerely", "output": "⠎⠔⠉⠻⠑⠇⠽" }, { "input": "sincerer", "output": "⠎⠔⠉⠻⠻" }, { "input": "sincerest", "output": "⠎⠔⠉⠻⠑⠌" }, { "input": "sincerity", "output": "⠎⠔⠉⠻⠰⠽" }, { "input": "sine", "output": "⠎⠔⠑" }, { "input": "sinecure", "output": "⠎⠔⠑⠉⠥⠗⠑" }, { "input": "sinecures", "output": "⠎⠔⠑⠉⠥⠗⠑⠎" }, { "input": "sinew", "output": "⠎⠔⠑⠺" }, { "input": "sinews", "output": "⠎⠔⠑⠺⠎" }, { "input": "sinewy", "output": "⠎⠔⠑⠺⠽" }, { "input": "sinful", "output": "⠎⠔⠰⠇" }, { "input": "sinfully", "output": "⠎⠔⠰⠇⠇⠽" }, { "input": "sinfulness", "output": "⠎⠔⠰⠇⠰⠎" }, { "input": "sing", "output": "â Žâ ¬" }, { "input": "singe", "output": "⠎⠬⠑" }, { "input": "singed", "output": "⠎⠬⠫" }, { "input": "singeing", "output": "⠎⠬⠑⠬" }, { "input": "singer", "output": "⠎⠬⠻" }, { "input": "singers", "output": "⠎⠬⠻⠎" }, { "input": "singes", "output": "⠎⠬⠑⠎" }, { "input": "singing", "output": "⠎⠬⠬" }, { "input": "single", "output": "⠎⠬⠇⠑" }, { "input": "singled", "output": "⠎⠬⠇⠫" }, { "input": "singles", "output": "⠎⠬⠇⠑⠎" }, { "input": "singleton", "output": "⠎⠬⠇⠑⠞⠕â " }, { "input": "singletons", "output": "⠎⠬⠇⠑⠞⠕â â Ž" }, { "input": "singling", "output": "⠎⠬⠇⠬" }, { "input": "singly", "output": "⠎⠬⠇⠽" }, { "input": "sings", "output": "⠎⠬⠎" }, { "input": "singsong", "output": "⠎⠬⠎⠰⠛" }, { "input": "singsonged", "output": "⠎⠬⠎⠰⠛⠫" }, { "input": "singsonging", "output": "⠎⠬⠎⠰⠛⠬" }, { "input": "singsongs", "output": "⠎⠬⠎⠰⠛⠎" }, { "input": "singular", "output": "⠎⠬⠥⠇⠜" }, { "input": "singularities", "output": "⠎⠬⠥⠇⠜⠊⠞⠊⠑⠎" }, { "input": "singularity", "output": "⠎⠬⠥⠇⠜⠰⠽" }, { "input": "singularly", "output": "⠎⠬⠥⠇⠜⠇⠽" }, { "input": "singulars", "output": "⠎⠬⠥⠇⠜⠎" }, { "input": "sinister", "output": "⠎⠔⠊⠌⠻" }, { "input": "sink", "output": "⠎⠔⠅" }, { "input": "sinkable", "output": "⠎⠔⠅â â ƒâ ‡â ‘" }, { "input": "sinker", "output": "⠎⠔⠅⠻" }, { "input": "sinkers", "output": "⠎⠔⠅⠻⠎" }, { "input": "sinkhole", "output": "⠎⠔⠅⠓⠕⠇⠑" }, { "input": "sinkholes", "output": "⠎⠔⠅⠓⠕⠇⠑⠎" }, { "input": "sinking", "output": "⠎⠔⠅⠬" }, { "input": "sinks", "output": "⠎⠔⠅⠎" }, { "input": "sinned", "output": "â Žâ ”â â «" }, { "input": "sinner", "output": "â Žâ ”â â »" }, { "input": "sinners", "output": "â Žâ ”â â »â Ž" }, { "input": "sinning", "output": "â Žâ ”â â ¬" }, { "input": "sins", "output": "⠎⠔⠎" }, { "input": "sinuous", "output": "⠎⠔⠥⠳⠎" }, { "input": "sinus", "output": "⠎⠔⠥⠎" }, { "input": "sinuses", "output": "⠎⠔⠥⠎⠑⠎" }, { "input": "sinusitis", "output": "⠎⠔⠥⠎⠊⠞⠊⠎" }, { "input": "sinusoidal", "output": "⠎⠔⠥⠎⠕⠊⠙â â ‡" }, { "input": "sip", "output": "â Žâ Šâ " }, { "input": "siphon", "output": "â Žâ Šâ â “â •â " }, { "input": "siphoned", "output": "â Žâ Šâ â “â •â â «" }, { "input": "siphoning", "output": "â Žâ Šâ â “â •â â ¬" }, { "input": "siphons", "output": "â Žâ Šâ â “â •â â Ž" }, { "input": "sipped", "output": "â Žâ Šâ â â «" }, { "input": "sipping", "output": "â Žâ Šâ â â ¬" }, { "input": "sips", "output": "â Žâ Šâ â Ž" }, { "input": "sir", "output": "â Žâ Šâ —" }, { "input": "sire", "output": "â Žâ Šâ —â ‘" }, { "input": "sired", "output": "â Žâ Šâ —â «" }, { "input": "siren", "output": "â Žâ Šâ —â ¢" }, { "input": "sirens", "output": "⠎⠊⠗⠢⠎" }, { "input": "sires", "output": "â Žâ Šâ —â ‘â Ž" }, { "input": "siring", "output": "â Žâ Šâ —â ¬" }, { "input": "sirloin", "output": "⠎⠊⠗⠇⠕⠔" }, { "input": "sirloins", "output": "⠎⠊⠗⠇⠕⠔⠎" }, { "input": "sirocco", "output": "â Žâ Šâ —â •â ’â •" }, { "input": "siroccos", "output": "â Žâ Šâ —â •â ’â •â Ž" }, { "input": "sirs", "output": "â Žâ Šâ —â Ž" }, { "input": "sirup", "output": "â Žâ Šâ —â ¥â " }, { "input": "sirups", "output": "â Žâ Šâ —â ¥â â Ž" }, { "input": "sis", "output": "â Žâ Šâ Ž" }, { "input": "sisal", "output": "â Žâ Šâ Žâ â ‡" }, { "input": "sises", "output": "â Žâ Šâ Žâ ‘â Ž" }, { "input": "sissier", "output": "â Žâ Šâ Žâ Žâ Šâ »" }, { "input": "sissies", "output": "â Žâ Šâ Žâ Žâ Šâ ‘â Ž" }, { "input": "sissiest", "output": "â Žâ Šâ Žâ Žâ Šâ ‘â Œ" }, { "input": "sissy", "output": "â Žâ Šâ Žâ Žâ ½" }, { "input": "sister", "output": "⠎⠊⠌⠻" }, { "input": "sisterhood", "output": "⠎⠊⠌⠻⠓⠕⠕⠙" }, { "input": "sisterhoods", "output": "⠎⠊⠌⠻⠓⠕⠕⠙⠎" }, { "input": "sisterly", "output": "⠎⠊⠌⠻⠇⠽" }, { "input": "sisters", "output": "⠎⠊⠌⠻⠎" }, { "input": "sit", "output": "â Žâ Šâ ž" }, { "input": "sitar", "output": "â Žâ Šâ žâ œ" }, { "input": "sitars", "output": "⠎⠊⠞⠜⠎" }, { "input": "sitcom", "output": "⠎⠊⠞⠉⠕â " }, { "input": "sitcoms", "output": "⠎⠊⠞⠉⠕â â Ž" }, { "input": "site", "output": "â Žâ Šâ žâ ‘" }, { "input": "sited", "output": "â Žâ Šâ žâ «" }, { "input": "sites", "output": "â Žâ Šâ žâ ‘â Ž" }, { "input": "siting", "output": "â Žâ Šâ žâ ¬" }, { "input": "sits", "output": "â Žâ Šâ žâ Ž" }, { "input": "sitter", "output": "â Žâ Šâ žâ žâ »" }, { "input": "sitters", "output": "⠎⠊⠞⠞⠻⠎" }, { "input": "sitting", "output": "â Žâ Šâ žâ žâ ¬" }, { "input": "sittings", "output": "⠎⠊⠞⠞⠬⠎" }, { "input": "situate", "output": "â Žâ Šâ žâ ¥â â žâ ‘" }, { "input": "situated", "output": "â Žâ Šâ žâ ¥â â žâ «" }, { "input": "situates", "output": "â Žâ Šâ žâ ¥â â žâ ‘â Ž" }, { "input": "situating", "output": "â Žâ Šâ žâ ¥â â žâ ¬" }, { "input": "situation", "output": "â Žâ Šâ žâ ¥â â °â " }, { "input": "situations", "output": "â Žâ Šâ žâ ¥â â °â â Ž" }, { "input": "six", "output": "â Žâ Šâ ­" }, { "input": "sixes", "output": "â Žâ Šâ ­â ‘â Ž" }, { "input": "sixpence", "output": "â Žâ Šâ ­â â °â ‘" }, { "input": "sixpences", "output": "â Žâ Šâ ­â â °â ‘â Ž" }, { "input": "sixteen", "output": "â Žâ Šâ ­â žâ ‘â ¢" }, { "input": "sixteens", "output": "⠎⠊⠭⠞⠑⠢⠎" }, { "input": "sixteenth", "output": "⠎⠊⠭⠞⠑⠢⠹" }, { "input": "sixteenths", "output": "⠎⠊⠭⠞⠑⠢⠹⠎" }, { "input": "sixth", "output": "â Žâ Šâ ­â ¹" }, { "input": "sixths", "output": "⠎⠊⠭⠹⠎" }, { "input": "sixties", "output": "â Žâ Šâ ­â žâ Šâ ‘â Ž" }, { "input": "sixtieth", "output": "â Žâ Šâ ­â žâ Šâ ‘â ¹" }, { "input": "sixtieths", "output": "⠎⠊⠭⠞⠊⠑⠹⠎" }, { "input": "sixty", "output": "â Žâ Šâ ­â žâ ½" }, { "input": "sizable", "output": "â Žâ Šâ µâ â ƒâ ‡â ‘" }, { "input": "size", "output": "⠎⠊⠵⠑" }, { "input": "sizeable", "output": "⠎⠊⠵⠂⠃⠇⠑" }, { "input": "sized", "output": "⠎⠊⠵⠫" }, { "input": "sizer", "output": "⠎⠊⠵⠻" }, { "input": "sizes", "output": "⠎⠊⠵⠑⠎" }, { "input": "sizing", "output": "⠎⠊⠵⠬" }, { "input": "sizzle", "output": "⠎⠊⠵⠵⠇⠑" }, { "input": "sizzled", "output": "⠎⠊⠵⠵⠇⠫" }, { "input": "sizzles", "output": "⠎⠊⠵⠵⠇⠑⠎" }, { "input": "sizzling", "output": "⠎⠊⠵⠵⠇⠬" }, { "input": "skate", "output": "â Žâ …â â žâ ‘" }, { "input": "skateboard", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙" }, { "input": "skateboarded", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠫" }, { "input": "skateboarder", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠻" }, { "input": "skateboarders", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠻⠎" }, { "input": "skateboarding", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠬" }, { "input": "skateboards", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠎" }, { "input": "skated", "output": "â Žâ …â â žâ «" }, { "input": "skater", "output": "â Žâ …â â žâ »" }, { "input": "skaters", "output": "â Žâ …â â žâ »â Ž" }, { "input": "skates", "output": "â Žâ …â â žâ ‘â Ž" }, { "input": "skating", "output": "â Žâ …â â žâ ¬" }, { "input": "skedaddle", "output": "â Žâ …â «â â ™â ™â ‡â ‘" }, { "input": "skedaddled", "output": "â Žâ …â «â â ™â ™â ‡â «" }, { "input": "skedaddles", "output": "â Žâ …â «â â ™â ™â ‡â ‘â Ž" }, { "input": "skedaddling", "output": "â Žâ …â «â â ™â ™â ‡â ¬" }, { "input": "skeet", "output": "â Žâ …â ‘â ‘â ž" }, { "input": "skein", "output": "â Žâ …â ‘â ”" }, { "input": "skeins", "output": "⠎⠅⠑⠔⠎" }, { "input": "skeletal", "output": "⠎⠅⠑⠇⠑⠞â â ‡" }, { "input": "skeleton", "output": "⠎⠅⠑⠇⠑⠞⠕â " }, { "input": "skeletons", "output": "⠎⠅⠑⠇⠑⠞⠕â â Ž" }, { "input": "skeptic", "output": "â Žâ …â ‘â â žâ Šâ ‰" }, { "input": "skeptical", "output": "â Žâ …â ‘â â žâ Šâ ‰â â ‡" }, { "input": "skeptically", "output": "â Žâ …â ‘â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "skepticism", "output": "â Žâ …â ‘â â žâ Šâ ‰â Šâ Žâ " }, { "input": "skeptics", "output": "â Žâ …â ‘â â žâ Šâ ‰â Ž" }, { "input": "sketch", "output": "â Žâ …â ‘â žâ ¡" }, { "input": "sketched", "output": "â Žâ …â ‘â žâ ¡â «" }, { "input": "sketches", "output": "â Žâ …â ‘â žâ ¡â ‘â Ž" }, { "input": "sketchier", "output": "â Žâ …â ‘â žâ ¡â Šâ »" }, { "input": "sketchiest", "output": "â Žâ …â ‘â žâ ¡â Šâ ‘â Œ" }, { "input": "sketching", "output": "â Žâ …â ‘â žâ ¡â ¬" }, { "input": "sketchy", "output": "â Žâ …â ‘â žâ ¡â ½" }, { "input": "skew", "output": "â Žâ …â ‘â º" }, { "input": "skewed", "output": "⠎⠅⠑⠺⠫" }, { "input": "skewer", "output": "⠎⠅⠑⠺⠻" }, { "input": "skewered", "output": "⠎⠅⠑⠺⠻⠫" }, { "input": "skewering", "output": "⠎⠅⠑⠺⠻⠬" }, { "input": "skewers", "output": "⠎⠅⠑⠺⠻⠎" }, { "input": "skewing", "output": "⠎⠅⠑⠺⠬" }, { "input": "skews", "output": "⠎⠅⠑⠺⠎" }, { "input": "ski", "output": "â Žâ …â Š" }, { "input": "skid", "output": "â Žâ …â Šâ ™" }, { "input": "skidded", "output": "⠎⠅⠊⠙⠙⠫" }, { "input": "skidding", "output": "⠎⠅⠊⠙⠙⠬" }, { "input": "skids", "output": "⠎⠅⠊⠙⠎" }, { "input": "skied", "output": "â Žâ …â Šâ «" }, { "input": "skier", "output": "â Žâ …â Šâ »" }, { "input": "skiers", "output": "⠎⠅⠊⠻⠎" }, { "input": "skies", "output": "â Žâ …â Šâ ‘â Ž" }, { "input": "skiff", "output": "â Žâ …â Šâ ‹â ‹" }, { "input": "skiffs", "output": "â Žâ …â Šâ –â Ž" }, { "input": "skiing", "output": "â Žâ …â Šâ ¬" }, { "input": "skilful", "output": "⠎⠅⠊⠇⠰⠇" }, { "input": "skill", "output": "⠎⠅⠊⠇⠇" }, { "input": "skilled", "output": "⠎⠅⠊⠇⠇⠫" }, { "input": "skillet", "output": "⠎⠅⠊⠇⠇⠑⠞" }, { "input": "skillets", "output": "⠎⠅⠊⠇⠇⠑⠞⠎" }, { "input": "skillful", "output": "⠎⠅⠊⠇⠇⠰⠇" }, { "input": "skillfully", "output": "⠎⠅⠊⠇⠇⠰⠇⠇⠽" }, { "input": "skills", "output": "⠎⠅⠊⠇⠇⠎" }, { "input": "skim", "output": "â Žâ …â Šâ " }, { "input": "skimmed", "output": "â Žâ …â Šâ â â «" }, { "input": "skimming", "output": "â Žâ …â Šâ â â ¬" }, { "input": "skimp", "output": "â Žâ …â Šâ â " }, { "input": "skimped", "output": "â Žâ …â Šâ â â «" }, { "input": "skimpier", "output": "â Žâ …â Šâ â â Šâ »" }, { "input": "skimpiest", "output": "â Žâ …â Šâ â â Šâ ‘â Œ" }, { "input": "skimpiness", "output": "â Žâ …â Šâ â â Šâ °â Ž" }, { "input": "skimping", "output": "â Žâ …â Šâ â â ¬" }, { "input": "skimps", "output": "â Žâ …â Šâ â â Ž" }, { "input": "skimpy", "output": "â Žâ …â Šâ â â ½" }, { "input": "skims", "output": "â Žâ …â Šâ â Ž" }, { "input": "skin", "output": "â Žâ …â ”" }, { "input": "skinflint", "output": "⠎⠅⠔⠋⠇⠔⠞" }, { "input": "skinflints", "output": "⠎⠅⠔⠋⠇⠔⠞⠎" }, { "input": "skinhead", "output": "⠎⠅⠔⠓⠂⠙" }, { "input": "skinheads", "output": "⠎⠅⠔⠓⠂⠙⠎" }, { "input": "skinless", "output": "⠎⠅⠔⠨⠎" }, { "input": "skinned", "output": "â Žâ …â ”â â «" }, { "input": "skinnier", "output": "â Žâ …â ”â â Šâ »" }, { "input": "skinniest", "output": "â Žâ …â ”â â Šâ ‘â Œ" }, { "input": "skinniness", "output": "â Žâ …â ”â â Šâ °â Ž" }, { "input": "skinning", "output": "â Žâ …â ”â â ¬" }, { "input": "skinny", "output": "â Žâ …â ”â â ½" }, { "input": "skins", "output": "⠎⠅⠔⠎" }, { "input": "skintight", "output": "⠎⠅⠔⠞⠊⠣⠞" }, { "input": "skip", "output": "â Žâ …â Šâ " }, { "input": "skipped", "output": "â Žâ …â Šâ â â «" }, { "input": "skipper", "output": "â Žâ …â Šâ â â »" }, { "input": "skippered", "output": "â Žâ …â Šâ â â »â «" }, { "input": "skippering", "output": "â Žâ …â Šâ â â »â ¬" }, { "input": "skippers", "output": "â Žâ …â Šâ â â »â Ž" }, { "input": "skipping", "output": "â Žâ …â Šâ â â ¬" }, { "input": "skips", "output": "â Žâ …â Šâ â Ž" }, { "input": "skirmish", "output": "â Žâ …â Šâ —â â Šâ ©" }, { "input": "skirmished", "output": "â Žâ …â Šâ —â â Šâ ©â «" }, { "input": "skirmishes", "output": "â Žâ …â Šâ —â â Šâ ©â ‘â Ž" }, { "input": "skirmishing", "output": "â Žâ …â Šâ —â â Šâ ©â ¬" }, { "input": "skirt", "output": "â Žâ …â Šâ —â ž" }, { "input": "skirted", "output": "â Žâ …â Šâ —â žâ «" }, { "input": "skirting", "output": "â Žâ …â Šâ —â žâ ¬" }, { "input": "skirts", "output": "â Žâ …â Šâ —â žâ Ž" }, { "input": "skis", "output": "â Žâ …â Šâ Ž" }, { "input": "skit", "output": "â Žâ …â Šâ ž" }, { "input": "skits", "output": "â Žâ …â Šâ žâ Ž" }, { "input": "skitter", "output": "â Žâ …â Šâ žâ žâ »" }, { "input": "skittered", "output": "⠎⠅⠊⠞⠞⠻⠫" }, { "input": "skittering", "output": "⠎⠅⠊⠞⠞⠻⠬" }, { "input": "skitters", "output": "⠎⠅⠊⠞⠞⠻⠎" }, { "input": "skittish", "output": "â Žâ …â Šâ žâ žâ Šâ ©" }, { "input": "skivvied", "output": "â Žâ …â Šâ §â §â Šâ «" }, { "input": "skivvies", "output": "â Žâ …â Šâ §â §â Šâ ‘â Ž" }, { "input": "skivvy", "output": "â Žâ …â Šâ §â §â ½" }, { "input": "skivvying", "output": "⠎⠅⠊⠧⠧⠽⠬" }, { "input": "skulduggery", "output": "⠎⠅⠥⠇⠙⠥⠶⠻⠽" }, { "input": "skulk", "output": "⠎⠅⠥⠇⠅" }, { "input": "skulked", "output": "⠎⠅⠥⠇⠅⠫" }, { "input": "skulking", "output": "⠎⠅⠥⠇⠅⠬" }, { "input": "skulks", "output": "⠎⠅⠥⠇⠅⠎" }, { "input": "skull", "output": "⠎⠅⠥⠇⠇" }, { "input": "skullcap", "output": "⠎⠅⠥⠇⠇⠉â â " }, { "input": "skullcaps", "output": "⠎⠅⠥⠇⠇⠉â â â Ž" }, { "input": "skullduggery", "output": "⠎⠅⠥⠇⠇⠙⠥⠶⠻⠽" }, { "input": "skulls", "output": "⠎⠅⠥⠇⠇⠎" }, { "input": "skunk", "output": "â Žâ …â ¥â â …" }, { "input": "skunked", "output": "â Žâ …â ¥â â …â «" }, { "input": "skunking", "output": "â Žâ …â ¥â â …â ¬" }, { "input": "skunks", "output": "â Žâ …â ¥â â …â Ž" }, { "input": "sky", "output": "â Žâ …â ½" }, { "input": "skycap", "output": "⠎⠅⠽⠉â â " }, { "input": "skycaps", "output": "⠎⠅⠽⠉â â â Ž" }, { "input": "skydive", "output": "⠎⠅⠽⠙⠊⠧⠑" }, { "input": "skydived", "output": "⠎⠅⠽⠙⠊⠧⠫" }, { "input": "skydiver", "output": "⠎⠅⠽⠙⠊⠧⠻" }, { "input": "skydivers", "output": "⠎⠅⠽⠙⠊⠧⠻⠎" }, { "input": "skydives", "output": "⠎⠅⠽⠙⠊⠧⠑⠎" }, { "input": "skydiving", "output": "⠎⠅⠽⠙⠊⠧⠬" }, { "input": "skydove", "output": "⠎⠅⠽⠙⠕⠧⠑" }, { "input": "skyed", "output": "⠎⠅⠽⠫" }, { "input": "skying", "output": "⠎⠅⠽⠬" }, { "input": "skyjack", "output": "⠎⠅⠽⠚â â ‰â …" }, { "input": "skyjacked", "output": "⠎⠅⠽⠚â â ‰â …â «" }, { "input": "skyjacker", "output": "⠎⠅⠽⠚â â ‰â …â »" }, { "input": "skyjackers", "output": "⠎⠅⠽⠚â â ‰â …⠻⠎" }, { "input": "skyjacking", "output": "⠎⠅⠽⠚â â ‰â …â ¬" }, { "input": "skyjacks", "output": "⠎⠅⠽⠚â â ‰â …â Ž" }, { "input": "skylark", "output": "⠎⠅⠽⠇⠜⠅" }, { "input": "skylarked", "output": "⠎⠅⠽⠇⠜⠅⠫" }, { "input": "skylarking", "output": "⠎⠅⠽⠇⠜⠅⠬" }, { "input": "skylarks", "output": "⠎⠅⠽⠇⠜⠅⠎" }, { "input": "skylight", "output": "⠎⠅⠽⠇⠊⠣⠞" }, { "input": "skylights", "output": "⠎⠅⠽⠇⠊⠣⠞⠎" }, { "input": "skyline", "output": "⠎⠅⠽⠇⠔⠑" }, { "input": "skylines", "output": "⠎⠅⠽⠇⠔⠑⠎" }, { "input": "skyrocket", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞" }, { "input": "skyrocketed", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠫" }, { "input": "skyrocketing", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠬" }, { "input": "skyrockets", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠎" }, { "input": "skyscraper", "output": "⠎⠅⠽⠎⠉⠗â â â »" }, { "input": "skyscrapers", "output": "⠎⠅⠽⠎⠉⠗â â â »â Ž" }, { "input": "skyward", "output": "⠎⠅⠽⠺⠜⠙" }, { "input": "skywards", "output": "⠎⠅⠽⠺⠜⠙⠎" }, { "input": "skywriter", "output": "⠎⠅⠽⠺⠗⠊⠞⠻" }, { "input": "skywriters", "output": "⠎⠅⠽⠺⠗⠊⠞⠻⠎" }, { "input": "skywriting", "output": "⠎⠅⠽⠺⠗⠊⠞⠬" }, { "input": "slab", "output": "â Žâ ‡â â ƒ" }, { "input": "slabbed", "output": "â Žâ ‡â â †â «" }, { "input": "slabbing", "output": "â Žâ ‡â â †â ¬" }, { "input": "slabs", "output": "â Žâ ‡â â ƒâ Ž" }, { "input": "slack", "output": "â Žâ ‡â â ‰â …" }, { "input": "slacked", "output": "â Žâ ‡â â ‰â …â «" }, { "input": "slacken", "output": "â Žâ ‡â â ‰â …â ¢" }, { "input": "slackened", "output": "â Žâ ‡â â ‰â …⠢⠫" }, { "input": "slackening", "output": "â Žâ ‡â â ‰â …⠢⠬" }, { "input": "slackens", "output": "â Žâ ‡â â ‰â …⠢⠎" }, { "input": "slacker", "output": "â Žâ ‡â â ‰â …â »" }, { "input": "slackers", "output": "â Žâ ‡â â ‰â …⠻⠎" }, { "input": "slackest", "output": "â Žâ ‡â â ‰â …â ‘â Œ" }, { "input": "slacking", "output": "â Žâ ‡â â ‰â …â ¬" }, { "input": "slackly", "output": "â Žâ ‡â â ‰â …⠇⠽" }, { "input": "slackness", "output": "â Žâ ‡â â ‰â …â °â Ž" }, { "input": "slacks", "output": "â Žâ ‡â â ‰â …â Ž" }, { "input": "slag", "output": "â Žâ ‡â â ›" }, { "input": "slags", "output": "â Žâ ‡â â ›â Ž" }, { "input": "slain", "output": "â Žâ ‡â â ”" }, { "input": "slake", "output": "â Žâ ‡â â …â ‘" }, { "input": "slaked", "output": "â Žâ ‡â â …â «" }, { "input": "slakes", "output": "â Žâ ‡â â …â ‘â Ž" }, { "input": "slaking", "output": "â Žâ ‡â â …â ¬" }, { "input": "slalom", "output": "â Žâ ‡â â ‡â •â " }, { "input": "slalomed", "output": "â Žâ ‡â â ‡â •â â «" }, { "input": "slaloming", "output": "â Žâ ‡â â ‡â •â â ¬" }, { "input": "slaloms", "output": "â Žâ ‡â â ‡â •â â Ž" }, { "input": "slam", "output": "â Žâ ‡â â " }, { "input": "slammed", "output": "â Žâ ‡â â â â «" }, { "input": "slammer", "output": "â Žâ ‡â â â â »" }, { "input": "slammers", "output": "â Žâ ‡â â â â »â Ž" }, { "input": "slamming", "output": "â Žâ ‡â â â â ¬" }, { "input": "slams", "output": "â Žâ ‡â â â Ž" }, { "input": "slander", "output": "⠎⠇⠯⠻" }, { "input": "slandered", "output": "⠎⠇⠯⠻⠫" }, { "input": "slanderer", "output": "⠎⠇⠯⠻⠻" }, { "input": "slanderers", "output": "⠎⠇⠯⠻⠻⠎" }, { "input": "slandering", "output": "⠎⠇⠯⠻⠬" }, { "input": "slanderous", "output": "⠎⠇⠯⠻⠳⠎" }, { "input": "slanders", "output": "⠎⠇⠯⠻⠎" }, { "input": "slang", "output": "â Žâ ‡â â â ›" }, { "input": "slangier", "output": "â Žâ ‡â â â ›â Šâ »" }, { "input": "slangiest", "output": "â Žâ ‡â â â ›â Šâ ‘â Œ" }, { "input": "slangy", "output": "â Žâ ‡â â â ›â ½" }, { "input": "slant", "output": "â Žâ ‡â â â ž" }, { "input": "slanted", "output": "â Žâ ‡â â â žâ «" }, { "input": "slanting", "output": "â Žâ ‡â â â žâ ¬" }, { "input": "slants", "output": "â Žâ ‡â â â žâ Ž" }, { "input": "slantwise", "output": "â Žâ ‡â â â žâ ºâ Šâ Žâ ‘" }, { "input": "slap", "output": "â Žâ ‡â â " }, { "input": "slapdash", "output": "â Žâ ‡â â â ™â â ©" }, { "input": "slaphappier", "output": "â Žâ ‡â â â “â â â â Šâ »" }, { "input": "slaphappiest", "output": "â Žâ ‡â â â “â â â â Šâ ‘â Œ" }, { "input": "slaphappy", "output": "â Žâ ‡â â â “â â â â ½" }, { "input": "slapped", "output": "â Žâ ‡â â â â «" }, { "input": "slapping", "output": "â Žâ ‡â â â â ¬" }, { "input": "slaps", "output": "â Žâ ‡â â â Ž" }, { "input": "slapstick", "output": "â Žâ ‡â â â Œâ Šâ ‰â …" }, { "input": "slash", "output": "â Žâ ‡â â ©" }, { "input": "slashed", "output": "â Žâ ‡â â ©â «" }, { "input": "slashes", "output": "â Žâ ‡â â ©â ‘â Ž" }, { "input": "slashing", "output": "â Žâ ‡â â ©â ¬" }, { "input": "slat", "output": "â Žâ ‡â â ž" }, { "input": "slate", "output": "â Žâ ‡â â žâ ‘" }, { "input": "slated", "output": "â Žâ ‡â â žâ «" }, { "input": "slates", "output": "â Žâ ‡â â žâ ‘â Ž" }, { "input": "slather", "output": "â Žâ ‡â â ®â —" }, { "input": "slathered", "output": "â Žâ ‡â â ®â —â «" }, { "input": "slathering", "output": "â Žâ ‡â â ®â —â ¬" }, { "input": "slathers", "output": "â Žâ ‡â â ®â —â Ž" }, { "input": "slating", "output": "â Žâ ‡â â žâ ¬" }, { "input": "slats", "output": "â Žâ ‡â â žâ Ž" }, { "input": "slattern", "output": "â Žâ ‡â â žâ žâ »â " }, { "input": "slatternly", "output": "â Žâ ‡â â žâ žâ »â â ‡â ½" }, { "input": "slatterns", "output": "â Žâ ‡â â žâ žâ »â â Ž" }, { "input": "slaughter", "output": "â Žâ ‡â â ¥â £â žâ »" }, { "input": "slaughtered", "output": "â Žâ ‡â â ¥â £â žâ »â «" }, { "input": "slaughterer", "output": "â Žâ ‡â â ¥â £â žâ »â »" }, { "input": "slaughterers", "output": "â Žâ ‡â â ¥â £â žâ »â »â Ž" }, { "input": "slaughterhouse", "output": "â Žâ ‡â â ¥â £â žâ »â “⠳⠎⠑" }, { "input": "slaughterhouses", "output": "â Žâ ‡â â ¥â £â žâ »â “⠳⠎⠑⠎" }, { "input": "slaughtering", "output": "â Žâ ‡â â ¥â £â žâ »â ¬" }, { "input": "slaughters", "output": "â Žâ ‡â â ¥â £â žâ »â Ž" }, { "input": "slave", "output": "â Žâ ‡â â §â ‘" }, { "input": "slaved", "output": "â Žâ ‡â â §â «" }, { "input": "slaver", "output": "â Žâ ‡â â §â »" }, { "input": "slavered", "output": "â Žâ ‡â â §â »â «" }, { "input": "slavering", "output": "â Žâ ‡â â §â »â ¬" }, { "input": "slavers", "output": "â Žâ ‡â â §â »â Ž" }, { "input": "slavery", "output": "â Žâ ‡â â §â »â ½" }, { "input": "slaves", "output": "â Žâ ‡â â §â ‘â Ž" }, { "input": "slaving", "output": "â Žâ ‡â â §â ¬" }, { "input": "slavish", "output": "â Žâ ‡â â §â Šâ ©" }, { "input": "slavishly", "output": "â Žâ ‡â â §â Šâ ©â ‡â ½" }, { "input": "slaw", "output": "â Žâ ‡â â º" }, { "input": "slay", "output": "â Žâ ‡â â ½" }, { "input": "slayer", "output": "â Žâ ‡â â ½â »" }, { "input": "slayers", "output": "â Žâ ‡â â ½â »â Ž" }, { "input": "slaying", "output": "â Žâ ‡â â ½â ¬" }, { "input": "slayings", "output": "â Žâ ‡â â ½â ¬â Ž" }, { "input": "slays", "output": "â Žâ ‡â â ½â Ž" }, { "input": "sleaze", "output": "⠎⠇⠂⠵⠑" }, { "input": "sleazes", "output": "⠎⠇⠂⠵⠑⠎" }, { "input": "sleazier", "output": "⠎⠇⠂⠵⠊⠻" }, { "input": "sleaziest", "output": "⠎⠇⠂⠵⠊⠑⠌" }, { "input": "sleazily", "output": "⠎⠇⠂⠵⠊⠇⠽" }, { "input": "sleaziness", "output": "⠎⠇⠂⠵⠊⠰⠎" }, { "input": "sleazy", "output": "⠎⠇⠂⠵⠽" }, { "input": "sled", "output": "⠎⠇⠫" }, { "input": "sledded", "output": "⠎⠇⠫⠙⠫" }, { "input": "sledding", "output": "⠎⠇⠫⠙⠬" }, { "input": "sledge", "output": "⠎⠇⠫⠛⠑" }, { "input": "sledged", "output": "⠎⠇⠫⠛⠫" }, { "input": "sledgehammer", "output": "⠎⠇⠫⠛⠑⠓â â â â »" }, { "input": "sledgehammered", "output": "⠎⠇⠫⠛⠑⠓â â â â »â «" }, { "input": "sledgehammering", "output": "⠎⠇⠫⠛⠑⠓â â â â »â ¬" }, { "input": "sledgehammers", "output": "⠎⠇⠫⠛⠑⠓â â â â »â Ž" }, { "input": "sledges", "output": "⠎⠇⠫⠛⠑⠎" }, { "input": "sledging", "output": "⠎⠇⠫⠛⠬" }, { "input": "sleds", "output": "⠎⠇⠫⠎" }, { "input": "sleek", "output": "⠎⠇⠑⠑⠅" }, { "input": "sleeked", "output": "⠎⠇⠑⠑⠅⠫" }, { "input": "sleeker", "output": "⠎⠇⠑⠑⠅⠻" }, { "input": "sleekest", "output": "⠎⠇⠑⠑⠅⠑⠌" }, { "input": "sleeking", "output": "⠎⠇⠑⠑⠅⠬" }, { "input": "sleekly", "output": "⠎⠇⠑⠑⠅⠇⠽" }, { "input": "sleekness", "output": "⠎⠇⠑⠑⠅⠰⠎" }, { "input": "sleeks", "output": "⠎⠇⠑⠑⠅⠎" }, { "input": "sleep", "output": "⠎⠇⠑⠑â " }, { "input": "sleeper", "output": "⠎⠇⠑⠑â â »" }, { "input": "sleepers", "output": "⠎⠇⠑⠑â â »â Ž" }, { "input": "sleepier", "output": "⠎⠇⠑⠑â â Šâ »" }, { "input": "sleepiest", "output": "⠎⠇⠑⠑â â Šâ ‘â Œ" }, { "input": "sleepily", "output": "⠎⠇⠑⠑â â Šâ ‡â ½" }, { "input": "sleepiness", "output": "⠎⠇⠑⠑â â Šâ °â Ž" }, { "input": "sleeping", "output": "⠎⠇⠑⠑â â ¬" }, { "input": "sleepless", "output": "⠎⠇⠑⠑â â ¨â Ž" }, { "input": "sleeplessness", "output": "⠎⠇⠑⠑â â ¨â Žâ °â Ž" }, { "input": "sleeps", "output": "⠎⠇⠑⠑â â Ž" }, { "input": "sleepwalk", "output": "⠎⠇⠑⠑â â ºâ â ‡â …" }, { "input": "sleepwalked", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â «" }, { "input": "sleepwalker", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â »" }, { "input": "sleepwalkers", "output": "⠎⠇⠑⠑â â ºâ â ‡â …⠻⠎" }, { "input": "sleepwalking", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â ¬" }, { "input": "sleepwalks", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â Ž" }, { "input": "sleepwear", "output": "⠎⠇⠑⠑â â ºâ ‘â œ" }, { "input": "sleepy", "output": "⠎⠇⠑⠑â â ½" }, { "input": "sleepyhead", "output": "⠎⠇⠑⠑â â ½â “â ‚â ™" }, { "input": "sleepyheads", "output": "⠎⠇⠑⠑â â ½â “⠂⠙⠎" }, { "input": "sleet", "output": "⠎⠇⠑⠑⠞" }, { "input": "sleeted", "output": "⠎⠇⠑⠑⠞⠫" }, { "input": "sleetier", "output": "⠎⠇⠑⠑⠞⠊⠻" }, { "input": "sleetiest", "output": "⠎⠇⠑⠑⠞⠊⠑⠌" }, { "input": "sleeting", "output": "⠎⠇⠑⠑⠞⠬" }, { "input": "sleets", "output": "⠎⠇⠑⠑⠞⠎" }, { "input": "sleety", "output": "⠎⠇⠑⠑⠞⠽" }, { "input": "sleeve", "output": "⠎⠇⠑⠑⠧⠑" }, { "input": "sleeveless", "output": "⠎⠇⠑⠑⠧⠑⠨⠎" }, { "input": "sleeves", "output": "⠎⠇⠑⠑⠧⠑⠎" }, { "input": "sleigh", "output": "⠎⠇⠑⠊⠣" }, { "input": "sleighed", "output": "⠎⠇⠑⠊⠣⠫" }, { "input": "sleighing", "output": "⠎⠇⠑⠊⠣⠬" }, { "input": "sleighs", "output": "⠎⠇⠑⠊⠣⠎" }, { "input": "slender", "output": "⠎⠇⠢⠙⠻" }, { "input": "slenderer", "output": "⠎⠇⠢⠙⠻⠻" }, { "input": "slenderest", "output": "⠎⠇⠢⠙⠻⠑⠌" }, { "input": "slenderize", "output": "⠎⠇⠢⠙⠻⠊⠵⠑" }, { "input": "slenderized", "output": "⠎⠇⠢⠙⠻⠊⠵⠫" }, { "input": "slenderizes", "output": "⠎⠇⠢⠙⠻⠊⠵⠑⠎" }, { "input": "slenderizing", "output": "⠎⠇⠢⠙⠻⠊⠵⠬" }, { "input": "slenderness", "output": "⠎⠇⠢⠙⠻⠰⠎" }, { "input": "slept", "output": "⠎⠇⠑â â ž" }, { "input": "sleuth", "output": "⠎⠇⠑⠥⠹" }, { "input": "sleuths", "output": "⠎⠇⠑⠥⠹⠎" }, { "input": "slew", "output": "⠎⠇⠑⠺" }, { "input": "slewed", "output": "⠎⠇⠑⠺⠫" }, { "input": "slewing", "output": "⠎⠇⠑⠺⠬" }, { "input": "slews", "output": "⠎⠇⠑⠺⠎" }, { "input": "slice", "output": "⠎⠇⠊⠉⠑" }, { "input": "sliced", "output": "⠎⠇⠊⠉⠫" }, { "input": "slicer", "output": "⠎⠇⠊⠉⠻" }, { "input": "slicers", "output": "⠎⠇⠊⠉⠻⠎" }, { "input": "slices", "output": "⠎⠇⠊⠉⠑⠎" }, { "input": "slicing", "output": "⠎⠇⠊⠉⠬" }, { "input": "slick", "output": "⠎⠇⠊⠉⠅" }, { "input": "slicked", "output": "⠎⠇⠊⠉⠅⠫" }, { "input": "slicker", "output": "⠎⠇⠊⠉⠅⠻" }, { "input": "slickers", "output": "⠎⠇⠊⠉⠅⠻⠎" }, { "input": "slickest", "output": "⠎⠇⠊⠉⠅⠑⠌" }, { "input": "slicking", "output": "⠎⠇⠊⠉⠅⠬" }, { "input": "slickly", "output": "⠎⠇⠊⠉⠅⠇⠽" }, { "input": "slickness", "output": "⠎⠇⠊⠉⠅⠰⠎" }, { "input": "slicks", "output": "⠎⠇⠊⠉⠅⠎" }, { "input": "slid", "output": "⠎⠇⠊⠙" }, { "input": "slide", "output": "⠎⠇⠊⠙⠑" }, { "input": "slider", "output": "⠎⠇⠊⠙⠻" }, { "input": "sliders", "output": "⠎⠇⠊⠙⠻⠎" }, { "input": "slides", "output": "⠎⠇⠊⠙⠑⠎" }, { "input": "sliding", "output": "⠎⠇⠊⠙⠬" }, { "input": "slier", "output": "⠎⠇⠊⠻" }, { "input": "sliest", "output": "⠎⠇⠊⠑⠌" }, { "input": "slight", "output": "⠎⠇⠊⠣⠞" }, { "input": "slighted", "output": "⠎⠇⠊⠣⠞⠫" }, { "input": "slighter", "output": "⠎⠇⠊⠣⠞⠻" }, { "input": "slightest", "output": "⠎⠇⠊⠣⠞⠑⠌" }, { "input": "slighting", "output": "⠎⠇⠊⠣⠞⠬" }, { "input": "slightly", "output": "⠎⠇⠊⠣⠞⠇⠽" }, { "input": "slightness", "output": "⠎⠇⠊⠣⠞⠰⠎" }, { "input": "slights", "output": "⠎⠇⠊⠣⠞⠎" }, { "input": "slily", "output": "⠎⠇⠊⠇⠽" }, { "input": "slim", "output": "⠎⠇⠊â " }, { "input": "slime", "output": "⠎⠇⠊â â ‘" }, { "input": "slimier", "output": "⠎⠇⠊â â Šâ »" }, { "input": "slimiest", "output": "⠎⠇⠊â â Šâ ‘â Œ" }, { "input": "slimmed", "output": "⠎⠇⠊â â â «" }, { "input": "slimmer", "output": "⠎⠇⠊â â â »" }, { "input": "slimmest", "output": "⠎⠇⠊â â â ‘â Œ" }, { "input": "slimming", "output": "⠎⠇⠊â â â ¬" }, { "input": "slimness", "output": "⠎⠇⠊â â °â Ž" }, { "input": "slims", "output": "⠎⠇⠊â â Ž" }, { "input": "slimy", "output": "⠎⠇⠊â â ½" }, { "input": "sling", "output": "⠎⠇⠬" }, { "input": "slinging", "output": "⠎⠇⠬⠬" }, { "input": "slings", "output": "⠎⠇⠬⠎" }, { "input": "slingshot", "output": "⠎⠇⠬⠩⠕⠞" }, { "input": "slingshots", "output": "⠎⠇⠬⠩⠕⠞⠎" }, { "input": "slink", "output": "⠎⠇⠔⠅" }, { "input": "slinked", "output": "⠎⠇⠔⠅⠫" }, { "input": "slinkier", "output": "⠎⠇⠔⠅⠊⠻" }, { "input": "slinkiest", "output": "⠎⠇⠔⠅⠊⠑⠌" }, { "input": "slinking", "output": "⠎⠇⠔⠅⠬" }, { "input": "slinks", "output": "⠎⠇⠔⠅⠎" }, { "input": "slinky", "output": "⠎⠇⠔⠅⠽" }, { "input": "slip", "output": "⠎⠇⠊â " }, { "input": "slipcover", "output": "⠎⠇⠊â â ‰â •â §â »" }, { "input": "slipcovers", "output": "⠎⠇⠊â â ‰â •⠧⠻⠎" }, { "input": "slipknot", "output": "⠎⠇⠊â â …â â •â ž" }, { "input": "slipknots", "output": "⠎⠇⠊â â …â â •â žâ Ž" }, { "input": "slippage", "output": "⠎⠇⠊â â â â ›â ‘" }, { "input": "slippages", "output": "⠎⠇⠊â â â â ›â ‘â Ž" }, { "input": "slipped", "output": "⠎⠇⠊â â â «" }, { "input": "slipper", "output": "⠎⠇⠊â â â »" }, { "input": "slipperier", "output": "⠎⠇⠊â â â »â Šâ »" }, { "input": "slipperiest", "output": "⠎⠇⠊â â â »â Šâ ‘â Œ" }, { "input": "slipperiness", "output": "⠎⠇⠊â â â »â Šâ °â Ž" }, { "input": "slippers", "output": "⠎⠇⠊â â â »â Ž" }, { "input": "slippery", "output": "⠎⠇⠊â â â »â ½" }, { "input": "slipping", "output": "⠎⠇⠊â â â ¬" }, { "input": "slips", "output": "⠎⠇⠊â â Ž" }, { "input": "slipshod", "output": "⠎⠇⠊â â ©â •â ™" }, { "input": "slit", "output": "⠎⠇⠊⠞" }, { "input": "slither", "output": "⠎⠇⠊⠮⠗" }, { "input": "slithered", "output": "⠎⠇⠊⠮⠗⠫" }, { "input": "slithering", "output": "⠎⠇⠊⠮⠗⠬" }, { "input": "slithers", "output": "⠎⠇⠊⠮⠗⠎" }, { "input": "slithery", "output": "⠎⠇⠊⠮⠗⠽" }, { "input": "slits", "output": "⠎⠇⠊⠞⠎" }, { "input": "slitter", "output": "⠎⠇⠊⠞⠞⠻" }, { "input": "slitting", "output": "⠎⠇⠊⠞⠞⠬" }, { "input": "sliver", "output": "⠎⠇⠊⠧⠻" }, { "input": "slivered", "output": "⠎⠇⠊⠧⠻⠫" }, { "input": "slivering", "output": "⠎⠇⠊⠧⠻⠬" }, { "input": "slivers", "output": "⠎⠇⠊⠧⠻⠎" }, { "input": "slob", "output": "⠎⠇⠕⠃" }, { "input": "slobber", "output": "⠎⠇⠕⠆⠻" }, { "input": "slobbered", "output": "⠎⠇⠕⠆⠻⠫" }, { "input": "slobbering", "output": "⠎⠇⠕⠆⠻⠬" }, { "input": "slobbers", "output": "⠎⠇⠕⠆⠻⠎" }, { "input": "slobs", "output": "⠎⠇⠕⠃⠎" }, { "input": "sloe", "output": "⠎⠇⠕⠑" }, { "input": "sloes", "output": "⠎⠇⠕⠑⠎" }, { "input": "slog", "output": "⠎⠇⠕⠛" }, { "input": "slogan", "output": "⠎⠇⠕⠛â â " }, { "input": "slogans", "output": "⠎⠇⠕⠛â â â Ž" }, { "input": "slogged", "output": "⠎⠇⠕⠶⠫" }, { "input": "slogging", "output": "⠎⠇⠕⠶⠬" }, { "input": "slogs", "output": "⠎⠇⠕⠛⠎" }, { "input": "sloop", "output": "⠎⠇⠕⠕â " }, { "input": "sloops", "output": "⠎⠇⠕⠕â â Ž" }, { "input": "slop", "output": "⠎⠇⠕â " }, { "input": "slope", "output": "⠎⠇⠕â â ‘" }, { "input": "sloped", "output": "⠎⠇⠕â â «" }, { "input": "slopes", "output": "⠎⠇⠕â â ‘â Ž" }, { "input": "sloping", "output": "⠎⠇⠕â â ¬" }, { "input": "slopped", "output": "⠎⠇⠕â â â «" }, { "input": "sloppier", "output": "⠎⠇⠕â â â Šâ »" }, { "input": "sloppiest", "output": "⠎⠇⠕â â â Šâ ‘â Œ" }, { "input": "sloppily", "output": "⠎⠇⠕â â â Šâ ‡â ½" }, { "input": "sloppiness", "output": "⠎⠇⠕â â â Šâ °â Ž" }, { "input": "slopping", "output": "⠎⠇⠕â â â ¬" }, { "input": "sloppy", "output": "⠎⠇⠕â â â ½" }, { "input": "slops", "output": "⠎⠇⠕â â Ž" }, { "input": "slosh", "output": "⠎⠇⠕⠩" }, { "input": "sloshed", "output": "⠎⠇⠕⠩⠫" }, { "input": "sloshes", "output": "⠎⠇⠕⠩⠑⠎" }, { "input": "sloshing", "output": "⠎⠇⠕⠩⠬" }, { "input": "slot", "output": "⠎⠇⠕⠞" }, { "input": "sloth", "output": "⠎⠇⠕⠹" }, { "input": "slothful", "output": "⠎⠇⠕⠹⠰⠇" }, { "input": "slothfulness", "output": "⠎⠇⠕⠹⠰⠇⠰⠎" }, { "input": "sloths", "output": "⠎⠇⠕⠹⠎" }, { "input": "slots", "output": "⠎⠇⠕⠞⠎" }, { "input": "slotted", "output": "⠎⠇⠕⠞⠞⠫" }, { "input": "slotting", "output": "⠎⠇⠕⠞⠞⠬" }, { "input": "slouch", "output": "⠎⠇⠳⠡" }, { "input": "slouched", "output": "⠎⠇⠳⠡⠫" }, { "input": "slouches", "output": "⠎⠇⠳⠡⠑⠎" }, { "input": "slouchier", "output": "⠎⠇⠳⠡⠊⠻" }, { "input": "slouchiest", "output": "⠎⠇⠳⠡⠊⠑⠌" }, { "input": "slouching", "output": "⠎⠇⠳⠡⠬" }, { "input": "slouchy", "output": "⠎⠇⠳⠡⠽" }, { "input": "slough", "output": "⠎⠇⠳⠣" }, { "input": "sloughed", "output": "⠎⠇⠳⠣⠫" }, { "input": "sloughing", "output": "⠎⠇⠳⠣⠬" }, { "input": "sloughs", "output": "⠎⠇⠳⠣⠎" }, { "input": "sloven", "output": "⠎⠇⠕⠧⠢" }, { "input": "slovenlier", "output": "⠎⠇⠕⠧⠢⠇⠊⠻" }, { "input": "slovenliest", "output": "⠎⠇⠕⠧⠢⠇⠊⠑⠌" }, { "input": "slovenliness", "output": "⠎⠇⠕⠧⠢⠇⠊⠰⠎" }, { "input": "slovenly", "output": "⠎⠇⠕⠧⠢⠇⠽" }, { "input": "slovens", "output": "⠎⠇⠕⠧⠢⠎" }, { "input": "slow", "output": "⠎⠇⠪" }, { "input": "slowdown", "output": "⠎⠇⠪⠙⠪â " }, { "input": "slowdowns", "output": "⠎⠇⠪⠙⠪â â Ž" }, { "input": "slowed", "output": "⠎⠇⠪⠫" }, { "input": "slower", "output": "⠎⠇⠪⠻" }, { "input": "slowest", "output": "⠎⠇⠪⠑⠌" }, { "input": "slowing", "output": "⠎⠇⠪⠬" }, { "input": "slowly", "output": "⠎⠇⠪⠇⠽" }, { "input": "slowness", "output": "⠎⠇⠪⠰⠎" }, { "input": "slowpoke", "output": "⠎⠇⠪â â •â …â ‘" }, { "input": "slowpokes", "output": "⠎⠇⠪â â •â …â ‘â Ž" }, { "input": "slows", "output": "⠎⠇⠪⠎" }, { "input": "sludge", "output": "⠎⠇⠥⠙⠛⠑" }, { "input": "slue", "output": "⠎⠇⠥⠑" }, { "input": "slued", "output": "⠎⠇⠥⠫" }, { "input": "slues", "output": "⠎⠇⠥⠑⠎" }, { "input": "slug", "output": "⠎⠇⠥⠛" }, { "input": "sluggard", "output": "⠎⠇⠥⠶⠜⠙" }, { "input": "sluggards", "output": "⠎⠇⠥⠶⠜⠙⠎" }, { "input": "slugged", "output": "⠎⠇⠥⠶⠫" }, { "input": "slugger", "output": "⠎⠇⠥⠶⠻" }, { "input": "sluggers", "output": "⠎⠇⠥⠶⠻⠎" }, { "input": "slugging", "output": "⠎⠇⠥⠶⠬" }, { "input": "sluggish", "output": "⠎⠇⠥⠶⠊⠩" }, { "input": "sluggishly", "output": "⠎⠇⠥⠶⠊⠩⠇⠽" }, { "input": "sluggishness", "output": "⠎⠇⠥⠶⠊⠩⠰⠎" }, { "input": "slugs", "output": "⠎⠇⠥⠛⠎" }, { "input": "sluice", "output": "⠎⠇⠥⠊⠉⠑" }, { "input": "sluiced", "output": "⠎⠇⠥⠊⠉⠫" }, { "input": "sluices", "output": "⠎⠇⠥⠊⠉⠑⠎" }, { "input": "sluicing", "output": "⠎⠇⠥⠊⠉⠬" }, { "input": "sluing", "output": "⠎⠇⠥⠬" }, { "input": "slum", "output": "⠎⠇⠥â " }, { "input": "slumber", "output": "⠎⠇⠥â â ƒâ »" }, { "input": "slumbered", "output": "⠎⠇⠥â â ƒâ »â «" }, { "input": "slumbering", "output": "⠎⠇⠥â â ƒâ »â ¬" }, { "input": "slumberous", "output": "⠎⠇⠥â â ƒâ »â ³â Ž" }, { "input": "slumbers", "output": "⠎⠇⠥â â ƒâ »â Ž" }, { "input": "slumbrous", "output": "⠎⠇⠥â â ƒâ —⠳⠎" }, { "input": "slumlord", "output": "⠎⠇⠥â â â ‡" }, { "input": "slumlords", "output": "⠎⠇⠥â â â ‡â Ž" }, { "input": "slummed", "output": "⠎⠇⠥â â â «" }, { "input": "slummer", "output": "⠎⠇⠥â â â »" }, { "input": "slumming", "output": "⠎⠇⠥â â â ¬" }, { "input": "slump", "output": "⠎⠇⠥â â " }, { "input": "slumped", "output": "⠎⠇⠥â â â «" }, { "input": "slumping", "output": "⠎⠇⠥â â â ¬" }, { "input": "slumps", "output": "⠎⠇⠥â â â Ž" }, { "input": "slums", "output": "⠎⠇⠥â â Ž" }, { "input": "slung", "output": "⠎⠇⠥â â ›" }, { "input": "slunk", "output": "⠎⠇⠥â â …" }, { "input": "slur", "output": "⠎⠇⠥⠗" }, { "input": "slurp", "output": "⠎⠇⠥⠗â " }, { "input": "slurped", "output": "⠎⠇⠥⠗â â «" }, { "input": "slurping", "output": "⠎⠇⠥⠗â â ¬" }, { "input": "slurps", "output": "⠎⠇⠥⠗â â Ž" }, { "input": "slurred", "output": "⠎⠇⠥⠗⠗⠫" }, { "input": "slurring", "output": "⠎⠇⠥⠗⠗⠬" }, { "input": "slurs", "output": "⠎⠇⠥⠗⠎" }, { "input": "slush", "output": "⠎⠇⠥⠩" }, { "input": "slushier", "output": "⠎⠇⠥⠩⠊⠻" }, { "input": "slushiest", "output": "⠎⠇⠥⠩⠊⠑⠌" }, { "input": "slushy", "output": "⠎⠇⠥⠩⠽" }, { "input": "slut", "output": "⠎⠇⠥⠞" }, { "input": "sluts", "output": "⠎⠇⠥⠞⠎" }, { "input": "sluttish", "output": "⠎⠇⠥⠞⠞⠊⠩" }, { "input": "sly", "output": "⠎⠇⠽" }, { "input": "slyer", "output": "⠎⠇⠽⠻" }, { "input": "slyest", "output": "⠎⠇⠽⠑⠌" }, { "input": "slyly", "output": "⠎⠇⠽⠇⠽" }, { "input": "slyness", "output": "⠎⠇⠽⠰⠎" }, { "input": "smack", "output": "â Žâ â â ‰â …" }, { "input": "smacked", "output": "â Žâ â â ‰â …â «" }, { "input": "smacker", "output": "â Žâ â â ‰â …â »" }, { "input": "smackers", "output": "â Žâ â â ‰â …⠻⠎" }, { "input": "smacking", "output": "â Žâ â â ‰â …â ¬" }, { "input": "smacks", "output": "â Žâ â â ‰â …â Ž" }, { "input": "small", "output": "â Žâ â â ‡â ‡" }, { "input": "smaller", "output": "â Žâ â â ‡â ‡â »" }, { "input": "smallest", "output": "â Žâ â â ‡â ‡â ‘â Œ" }, { "input": "smallish", "output": "â Žâ â â ‡â ‡â Šâ ©" }, { "input": "smallness", "output": "â Žâ â â ‡â ‡â °â Ž" }, { "input": "smallpox", "output": "â Žâ â â ‡â ‡â â •â ­" }, { "input": "smalls", "output": "â Žâ â â ‡â ‡â Ž" }, { "input": "smarmier", "output": "â Žâ â œâ â Šâ »" }, { "input": "smarmiest", "output": "â Žâ â œâ â Šâ ‘â Œ" }, { "input": "smarmy", "output": "â Žâ â œâ â ½" }, { "input": "smart", "output": "â Žâ â œâ ž" }, { "input": "smarted", "output": "â Žâ â œâ žâ «" }, { "input": "smarten", "output": "â Žâ â œâ žâ ¢" }, { "input": "smartened", "output": "â Žâ â œâ žâ ¢â «" }, { "input": "smartening", "output": "â Žâ â œâ žâ ¢â ¬" }, { "input": "smartens", "output": "â Žâ â œâ žâ ¢â Ž" }, { "input": "smarter", "output": "â Žâ â œâ žâ »" }, { "input": "smartest", "output": "â Žâ â œâ žâ ‘â Œ" }, { "input": "smarting", "output": "â Žâ â œâ žâ ¬" }, { "input": "smartly", "output": "â Žâ â œâ žâ ‡â ½" }, { "input": "smartness", "output": "â Žâ â œâ žâ °â Ž" }, { "input": "smarts", "output": "â Žâ â œâ žâ Ž" }, { "input": "smash", "output": "â Žâ â â ©" }, { "input": "smashed", "output": "â Žâ â â ©â «" }, { "input": "smashes", "output": "â Žâ â â ©â ‘â Ž" }, { "input": "smashing", "output": "â Žâ â â ©â ¬" }, { "input": "smattering", "output": "â Žâ â â žâ žâ »â ¬" }, { "input": "smatterings", "output": "â Žâ â â žâ žâ »â ¬â Ž" }, { "input": "smear", "output": "â Žâ â ‘â œ" }, { "input": "smeared", "output": "â Žâ â ‘⠜⠫" }, { "input": "smearing", "output": "â Žâ â ‘⠜⠬" }, { "input": "smears", "output": "â Žâ â ‘⠜⠎" }, { "input": "smell", "output": "â Žâ â ‘⠇⠇" }, { "input": "smelled", "output": "â Žâ â ‘⠇⠇⠫" }, { "input": "smellier", "output": "â Žâ â ‘⠇⠇⠊⠻" }, { "input": "smelliest", "output": "â Žâ â ‘⠇⠇⠊⠑⠌" }, { "input": "smelling", "output": "â Žâ â ‘⠇⠇⠬" }, { "input": "smells", "output": "â Žâ â ‘⠇⠇⠎" }, { "input": "smelly", "output": "â Žâ â ‘⠇⠇⠽" }, { "input": "smelt", "output": "â Žâ â ‘⠇⠞" }, { "input": "smelted", "output": "â Žâ â ‘⠇⠞⠫" }, { "input": "smelter", "output": "â Žâ â ‘⠇⠞⠻" }, { "input": "smelters", "output": "â Žâ â ‘⠇⠞⠻⠎" }, { "input": "smelting", "output": "â Žâ â ‘⠇⠞⠬" }, { "input": "smelts", "output": "â Žâ â ‘⠇⠞⠎" }, { "input": "smidge", "output": "â Žâ â Šâ ™â ›â ‘" }, { "input": "smidgen", "output": "â Žâ â Šâ ™â ›â ¢" }, { "input": "smidgens", "output": "â Žâ â Šâ ™â ›â ¢â Ž" }, { "input": "smidgeon", "output": "â Žâ â Šâ ™â ›â ‘â •â " }, { "input": "smidgeons", "output": "â Žâ â Šâ ™â ›â ‘â •â â Ž" }, { "input": "smidges", "output": "â Žâ â Šâ ™â ›â ‘â Ž" }, { "input": "smidgin", "output": "â Žâ â Šâ ™â ›â ”" }, { "input": "smidgins", "output": "â Žâ â Šâ ™â ›â ”â Ž" }, { "input": "smile", "output": "â Žâ â Šâ ‡â ‘" }, { "input": "smiled", "output": "â Žâ â Šâ ‡â «" }, { "input": "smiles", "output": "â Žâ â Šâ ‡â ‘â Ž" }, { "input": "smiling", "output": "â Žâ â Šâ ‡â ¬" }, { "input": "smilingly", "output": "â Žâ â Šâ ‡â ¬â ‡â ½" }, { "input": "smirch", "output": "â Žâ â Šâ —â ¡" }, { "input": "smirched", "output": "â Žâ â Šâ —â ¡â «" }, { "input": "smirches", "output": "â Žâ â Šâ —â ¡â ‘â Ž" }, { "input": "smirching", "output": "â Žâ â Šâ —â ¡â ¬" }, { "input": "smirk", "output": "â Žâ â Šâ —â …" }, { "input": "smirked", "output": "â Žâ â Šâ —â …â «" }, { "input": "smirking", "output": "â Žâ â Šâ —â …â ¬" }, { "input": "smirks", "output": "â Žâ â Šâ —â …â Ž" }, { "input": "smit", "output": "â Žâ â Šâ ž" }, { "input": "smite", "output": "â Žâ â Šâ žâ ‘" }, { "input": "smites", "output": "â Žâ â Šâ žâ ‘â Ž" }, { "input": "smith", "output": "â Žâ â Šâ ¹" }, { "input": "smithereens", "output": "â Žâ â Šâ ®â —⠑⠢⠎" }, { "input": "smithies", "output": "â Žâ â Šâ ¹â Šâ ‘â Ž" }, { "input": "smiths", "output": "â Žâ â Šâ ¹â Ž" }, { "input": "smithy", "output": "â Žâ â Šâ ¹â ½" }, { "input": "smiting", "output": "â Žâ â Šâ žâ ¬" }, { "input": "smitten", "output": "â Žâ â Šâ žâ žâ ¢" }, { "input": "smock", "output": "â Žâ â •⠉⠅" }, { "input": "smocked", "output": "â Žâ â •⠉⠅⠫" }, { "input": "smocking", "output": "â Žâ â •⠉⠅⠬" }, { "input": "smocks", "output": "â Žâ â •⠉⠅⠎" }, { "input": "smog", "output": "â Žâ â •â ›" }, { "input": "smoggier", "output": "â Žâ â •â ¶â Šâ »" }, { "input": "smoggiest", "output": "â Žâ â •â ¶â Šâ ‘â Œ" }, { "input": "smoggy", "output": "â Žâ â •â ¶â ½" }, { "input": "smoke", "output": "â Žâ â •â …â ‘" }, { "input": "smoked", "output": "â Žâ â •â …â «" }, { "input": "smokehouse", "output": "â Žâ â •⠅⠑⠓⠳⠎⠑" }, { "input": "smokehouses", "output": "â Žâ â •⠅⠑⠓⠳⠎⠑⠎" }, { "input": "smokeless", "output": "â Žâ â •⠅⠑⠨⠎" }, { "input": "smoker", "output": "â Žâ â •â …â »" }, { "input": "smokers", "output": "â Žâ â •⠅⠻⠎" }, { "input": "smokes", "output": "â Žâ â •â …â ‘â Ž" }, { "input": "smokestack", "output": "â Žâ â •â …â ‘â Œâ â ‰â …" }, { "input": "smokestacks", "output": "â Žâ â •â …â ‘â Œâ â ‰â …â Ž" }, { "input": "smokier", "output": "â Žâ â •â …â Šâ »" }, { "input": "smokiest", "output": "â Žâ â •â …â Šâ ‘â Œ" }, { "input": "smokiness", "output": "â Žâ â •â …â Šâ °â Ž" }, { "input": "smoking", "output": "â Žâ â •â …â ¬" }, { "input": "smoky", "output": "â Žâ â •â …â ½" }, { "input": "smolder", "output": "â Žâ â •⠇⠙⠻" }, { "input": "smoldered", "output": "â Žâ â •⠇⠙⠻⠫" }, { "input": "smoldering", "output": "â Žâ â •⠇⠙⠻⠬" }, { "input": "smolders", "output": "â Žâ â •⠇⠙⠻⠎" }, { "input": "smooch", "output": "â Žâ â •â •â ¡" }, { "input": "smooched", "output": "â Žâ â •â •â ¡â «" }, { "input": "smooches", "output": "â Žâ â •â •â ¡â ‘â Ž" }, { "input": "smooching", "output": "â Žâ â •â •â ¡â ¬" }, { "input": "smooth", "output": "â Žâ â •â •â ¹" }, { "input": "smoothed", "output": "â Žâ â •⠕⠮⠙" }, { "input": "smoother", "output": "â Žâ â •⠕⠮⠗" }, { "input": "smoothes", "output": "â Žâ â •⠕⠮⠎" }, { "input": "smoothest", "output": "â Žâ â •⠕⠮⠌" }, { "input": "smoothing", "output": "â Žâ â •⠕⠹⠬" }, { "input": "smoothly", "output": "â Žâ â •⠕⠹⠇⠽" }, { "input": "smoothness", "output": "â Žâ â •⠕⠹⠰⠎" }, { "input": "smooths", "output": "â Žâ â •⠕⠹⠎" }, { "input": "smote", "output": "â Žâ â •â žâ ‘" }, { "input": "smother", "output": "â Žâ â " }, { "input": "smothered", "output": "â Žâ â â «" }, { "input": "smothering", "output": "â Žâ â â ¬" }, { "input": "smothers", "output": "â Žâ â â Ž" }, { "input": "smoulder", "output": "â Žâ â ³â ‡â ™â »" }, { "input": "smouldered", "output": "â Žâ â ³â ‡â ™â »â «" }, { "input": "smouldering", "output": "â Žâ â ³â ‡â ™â »â ¬" }, { "input": "smoulders", "output": "â Žâ â ³â ‡â ™â »â Ž" }, { "input": "smudge", "output": "â Žâ â ¥â ™â ›â ‘" }, { "input": "smudged", "output": "â Žâ â ¥â ™â ›â «" }, { "input": "smudges", "output": "â Žâ â ¥â ™â ›â ‘â Ž" }, { "input": "smudgier", "output": "â Žâ â ¥â ™â ›â Šâ »" }, { "input": "smudgiest", "output": "â Žâ â ¥â ™â ›â Šâ ‘â Œ" }, { "input": "smudging", "output": "â Žâ â ¥â ™â ›â ¬" }, { "input": "smudgy", "output": "â Žâ â ¥â ™â ›â ½" }, { "input": "smug", "output": "â Žâ â ¥â ›" }, { "input": "smugger", "output": "â Žâ â ¥â ¶â »" }, { "input": "smuggest", "output": "â Žâ â ¥â ¶â ‘â Œ" }, { "input": "smuggle", "output": "â Žâ â ¥â ¶â ‡â ‘" }, { "input": "smuggled", "output": "â Žâ â ¥â ¶â ‡â «" }, { "input": "smuggler", "output": "â Žâ â ¥â ¶â ‡â »" }, { "input": "smugglers", "output": "â Žâ â ¥â ¶â ‡â »â Ž" }, { "input": "smuggles", "output": "â Žâ â ¥â ¶â ‡â ‘â Ž" }, { "input": "smuggling", "output": "â Žâ â ¥â ¶â ‡â ¬" }, { "input": "smugly", "output": "â Žâ â ¥â ›â ‡â ½" }, { "input": "smugness", "output": "â Žâ â ¥â ›â °â Ž" }, { "input": "smut", "output": "â Žâ â ¥â ž" }, { "input": "smuts", "output": "â Žâ â ¥â žâ Ž" }, { "input": "smuttier", "output": "â Žâ â ¥â žâ žâ Šâ »" }, { "input": "smuttiest", "output": "â Žâ â ¥â žâ žâ Šâ ‘â Œ" }, { "input": "smutty", "output": "â Žâ â ¥â žâ žâ ½" }, { "input": "smörgÃ¥sbord", "output": "â Žâ â  â ˜â »â â ˜â â —⠛⠠⠘⠻â â ˆâ ½â Žâ ƒâ •â —â ™" }, { "input": "smörgÃ¥sbords", "output": "â Žâ â  â ˜â »â â ˜â â —⠛⠠⠘⠻â â ˆâ ½â Žâ ƒâ •⠗⠙⠎" }, { "input": "snack", "output": "â Žâ â â ‰â …" }, { "input": "snacked", "output": "â Žâ â â ‰â …â «" }, { "input": "snacking", "output": "â Žâ â â ‰â …â ¬" }, { "input": "snacks", "output": "â Žâ â â ‰â …â Ž" }, { "input": "snaffle", "output": "â Žâ â â –⠇⠑" }, { "input": "snaffled", "output": "â Žâ â â –⠇⠫" }, { "input": "snaffles", "output": "â Žâ â â –⠇⠑⠎" }, { "input": "snaffling", "output": "â Žâ â â –⠇⠬" }, { "input": "snafu", "output": "â Žâ â â ‹â ¥" }, { "input": "snafus", "output": "â Žâ â â ‹â ¥â Ž" }, { "input": "snag", "output": "â Žâ â â ›" }, { "input": "snagged", "output": "â Žâ â â ¶â «" }, { "input": "snagging", "output": "â Žâ â â ¶â ¬" }, { "input": "snags", "output": "â Žâ â â ›â Ž" }, { "input": "snail", "output": "â Žâ â â Šâ ‡" }, { "input": "snailed", "output": "â Žâ â â Šâ ‡â «" }, { "input": "snailing", "output": "â Žâ â â Šâ ‡â ¬" }, { "input": "snails", "output": "â Žâ â â Šâ ‡â Ž" }, { "input": "snake", "output": "â Žâ â â …â ‘" }, { "input": "snakebite", "output": "â Žâ â â …⠑⠃⠊⠞⠑" }, { "input": "snakebites", "output": "â Žâ â â …⠑⠃⠊⠞⠑⠎" }, { "input": "snaked", "output": "â Žâ â â …â «" }, { "input": "snakes", "output": "â Žâ â â …â ‘â Ž" }, { "input": "snakier", "output": "â Žâ â â …â Šâ »" }, { "input": "snakiest", "output": "â Žâ â â …â Šâ ‘â Œ" }, { "input": "snaking", "output": "â Žâ â â …â ¬" }, { "input": "snaky", "output": "â Žâ â â …â ½" }, { "input": "snap", "output": "â Žâ â â " }, { "input": "snapdragon", "output": "â Žâ â â â ™â —â â ›â •â " }, { "input": "snapdragons", "output": "â Žâ â â â ™â —â â ›â •â â Ž" }, { "input": "snapped", "output": "â Žâ â â â â «" }, { "input": "snapper", "output": "â Žâ â â â â »" }, { "input": "snappers", "output": "â Žâ â â â â »â Ž" }, { "input": "snappier", "output": "â Žâ â â â â Šâ »" }, { "input": "snappiest", "output": "â Žâ â â â â Šâ ‘â Œ" }, { "input": "snapping", "output": "â Žâ â â â â ¬" }, { "input": "snappish", "output": "â Žâ â â â â Šâ ©" }, { "input": "snappy", "output": "â Žâ â â â â ½" }, { "input": "snaps", "output": "â Žâ â â â Ž" }, { "input": "snapshot", "output": "â Žâ â â â ©â •â ž" }, { "input": "snapshots", "output": "â Žâ â â â ©â •â žâ Ž" }, { "input": "snare", "output": "â Žâ â œâ ‘" }, { "input": "snared", "output": "â Žâ â œâ «" }, { "input": "snares", "output": "â Žâ â œâ ‘â Ž" }, { "input": "snaring", "output": "â Žâ â œâ ¬" }, { "input": "snarl", "output": "â Žâ â œâ ‡" }, { "input": "snarled", "output": "â Žâ â œâ ‡â «" }, { "input": "snarling", "output": "â Žâ â œâ ‡â ¬" }, { "input": "snarls", "output": "â Žâ â œâ ‡â Ž" }, { "input": "snatch", "output": "â Žâ â â žâ ¡" }, { "input": "snatched", "output": "â Žâ â â žâ ¡â «" }, { "input": "snatches", "output": "â Žâ â â žâ ¡â ‘â Ž" }, { "input": "snatching", "output": "â Žâ â â žâ ¡â ¬" }, { "input": "snazzier", "output": "â Žâ â â µâ µâ Šâ »" }, { "input": "snazziest", "output": "â Žâ â â µâ µâ Šâ ‘â Œ" }, { "input": "snazzy", "output": "â Žâ â â µâ µâ ½" }, { "input": "sneak", "output": "â Žâ â ‚â …" }, { "input": "sneaked", "output": "â Žâ â ‚â …â «" }, { "input": "sneaker", "output": "â Žâ â ‚â …â »" }, { "input": "sneakers", "output": "â Žâ â ‚⠅⠻⠎" }, { "input": "sneakier", "output": "â Žâ â ‚â …â Šâ »" }, { "input": "sneakiest", "output": "â Žâ â ‚â …â Šâ ‘â Œ" }, { "input": "sneaking", "output": "â Žâ â ‚â …â ¬" }, { "input": "sneaks", "output": "â Žâ â ‚â …â Ž" }, { "input": "sneaky", "output": "â Žâ â ‚â …â ½" }, { "input": "sneer", "output": "â Žâ â ‘â »" }, { "input": "sneered", "output": "â Žâ â ‘⠻⠫" }, { "input": "sneering", "output": "â Žâ â ‘⠻⠬" }, { "input": "sneeringly", "output": "â Žâ â ‘⠻⠬⠇⠽" }, { "input": "sneers", "output": "â Žâ â ‘⠻⠎" }, { "input": "sneeze", "output": "â Žâ â ‘⠑⠵⠑" }, { "input": "sneezed", "output": "â Žâ â ‘⠑⠵⠫" }, { "input": "sneezes", "output": "â Žâ â ‘⠑⠵⠑⠎" }, { "input": "sneezing", "output": "â Žâ â ‘⠑⠵⠬" }, { "input": "snicker", "output": "â Žâ â Šâ ‰â …â »" }, { "input": "snickered", "output": "â Žâ â Šâ ‰â …⠻⠫" }, { "input": "snickering", "output": "â Žâ â Šâ ‰â …⠻⠬" }, { "input": "snickers", "output": "â Žâ â Šâ ‰â …⠻⠎" }, { "input": "snide", "output": "â Žâ â Šâ ™â ‘" }, { "input": "snider", "output": "â Žâ â Šâ ™â »" }, { "input": "snidest", "output": "â Žâ â Šâ ™â ‘â Œ" }, { "input": "sniff", "output": "â Žâ â Šâ ‹â ‹" }, { "input": "sniffed", "output": "â Žâ â Šâ –â «" }, { "input": "sniffing", "output": "â Žâ â Šâ –â ¬" }, { "input": "sniffle", "output": "â Žâ â Šâ –⠇⠑" }, { "input": "sniffled", "output": "â Žâ â Šâ –⠇⠫" }, { "input": "sniffles", "output": "â Žâ â Šâ –⠇⠑⠎" }, { "input": "sniffling", "output": "â Žâ â Šâ –⠇⠬" }, { "input": "sniffs", "output": "â Žâ â Šâ –â Ž" }, { "input": "snifter", "output": "â Žâ â Šâ ‹â žâ »" }, { "input": "snifters", "output": "â Žâ â Šâ ‹â žâ »â Ž" }, { "input": "snigger", "output": "â Žâ â Šâ ¶â »" }, { "input": "sniggered", "output": "â Žâ â Šâ ¶â »â «" }, { "input": "sniggering", "output": "â Žâ â Šâ ¶â »â ¬" }, { "input": "sniggers", "output": "â Žâ â Šâ ¶â »â Ž" }, { "input": "snip", "output": "â Žâ â Šâ " }, { "input": "snipe", "output": "â Žâ â Šâ â ‘" }, { "input": "sniped", "output": "â Žâ â Šâ â «" }, { "input": "sniper", "output": "â Žâ â Šâ â »" }, { "input": "snipers", "output": "â Žâ â Šâ â »â Ž" }, { "input": "snipes", "output": "â Žâ â Šâ â ‘â Ž" }, { "input": "sniping", "output": "â Žâ â Šâ â ¬" }, { "input": "snipped", "output": "â Žâ â Šâ â â «" }, { "input": "snippet", "output": "â Žâ â Šâ â â ‘â ž" }, { "input": "snippets", "output": "â Žâ â Šâ â â ‘â žâ Ž" }, { "input": "snippier", "output": "â Žâ â Šâ â â Šâ »" }, { "input": "snippiest", "output": "â Žâ â Šâ â â Šâ ‘â Œ" }, { "input": "snipping", "output": "â Žâ â Šâ â â ¬" }, { "input": "snippy", "output": "â Žâ â Šâ â â ½" }, { "input": "snips", "output": "â Žâ â Šâ â Ž" }, { "input": "snit", "output": "â Žâ â Šâ ž" }, { "input": "snitch", "output": "â Žâ â Šâ žâ ¡" }, { "input": "snitched", "output": "â Žâ â Šâ žâ ¡â «" }, { "input": "snitches", "output": "â Žâ â Šâ žâ ¡â ‘â Ž" }, { "input": "snitching", "output": "â Žâ â Šâ žâ ¡â ¬" }, { "input": "snits", "output": "â Žâ â Šâ žâ Ž" }, { "input": "snivel", "output": "â Žâ â Šâ §â ‘â ‡" }, { "input": "sniveled", "output": "â Žâ â Šâ §â ‘⠇⠫" }, { "input": "sniveling", "output": "â Žâ â Šâ §â ‘⠇⠬" }, { "input": "snivelled", "output": "â Žâ â Šâ §â ‘⠇⠇⠫" }, { "input": "snivelling", "output": "â Žâ â Šâ §â ‘⠇⠇⠬" }, { "input": "snivels", "output": "â Žâ â Šâ §â ‘⠇⠎" }, { "input": "snob", "output": "â Žâ â •â ƒ" }, { "input": "snobbery", "output": "â Žâ â •⠆⠻⠽" }, { "input": "snobbier", "output": "â Žâ â •⠆⠊⠻" }, { "input": "snobbiest", "output": "â Žâ â •⠆⠊⠑⠌" }, { "input": "snobbish", "output": "â Žâ â •⠆⠊⠩" }, { "input": "snobbishness", "output": "â Žâ â •⠆⠊⠩⠰⠎" }, { "input": "snobby", "output": "â Žâ â •⠆⠽" }, { "input": "snobs", "output": "â Žâ â •⠃⠎" }, { "input": "snooker", "output": "â Žâ â •â •â …â »" }, { "input": "snoop", "output": "â Žâ â •â •â " }, { "input": "snooped", "output": "â Žâ â •â •â â «" }, { "input": "snooper", "output": "â Žâ â •â •â â »" }, { "input": "snoopers", "output": "â Žâ â •â •â â »â Ž" }, { "input": "snoopier", "output": "â Žâ â •â •â â Šâ »" }, { "input": "snoopiest", "output": "â Žâ â •â •â â Šâ ‘â Œ" }, { "input": "snooping", "output": "â Žâ â •â •â â ¬" }, { "input": "snoops", "output": "â Žâ â •â •â â Ž" }, { "input": "snoopy", "output": "â Žâ â •â •â â ½" }, { "input": "snoot", "output": "â Žâ â •â •â ž" }, { "input": "snootier", "output": "â Žâ â •â •â žâ Šâ »" }, { "input": "snootiest", "output": "â Žâ â •â •â žâ Šâ ‘â Œ" }, { "input": "snootiness", "output": "â Žâ â •â •â žâ Šâ °â Ž" }, { "input": "snoots", "output": "â Žâ â •â •â žâ Ž" }, { "input": "snooty", "output": "â Žâ â •â •â žâ ½" }, { "input": "snooze", "output": "â Žâ â •⠕⠵⠑" }, { "input": "snoozed", "output": "â Žâ â •⠕⠵⠫" }, { "input": "snoozes", "output": "â Žâ â •⠕⠵⠑⠎" }, { "input": "snoozing", "output": "â Žâ â •⠕⠵⠬" }, { "input": "snore", "output": "â Žâ â •â —â ‘" }, { "input": "snored", "output": "â Žâ â •â —â «" }, { "input": "snorer", "output": "â Žâ â •â —â »" }, { "input": "snorers", "output": "â Žâ â •⠗⠻⠎" }, { "input": "snores", "output": "â Žâ â •â —â ‘â Ž" }, { "input": "snoring", "output": "â Žâ â •â —â ¬" }, { "input": "snorkel", "output": "â Žâ â •â —â …â ‘â ‡" }, { "input": "snorkeled", "output": "â Žâ â •⠗⠅⠑⠇⠫" }, { "input": "snorkeler", "output": "â Žâ â •⠗⠅⠑⠇⠻" }, { "input": "snorkelers", "output": "â Žâ â •⠗⠅⠑⠇⠻⠎" }, { "input": "snorkeling", "output": "â Žâ â •⠗⠅⠑⠇⠬" }, { "input": "snorkelled", "output": "â Žâ â •⠗⠅⠑⠇⠇⠫" }, { "input": "snorkelling", "output": "â Žâ â •⠗⠅⠑⠇⠇⠬" }, { "input": "snorkels", "output": "â Žâ â •⠗⠅⠑⠇⠎" }, { "input": "snort", "output": "â Žâ â •â —â ž" }, { "input": "snorted", "output": "â Žâ â •â —â žâ «" }, { "input": "snorting", "output": "â Žâ â •â —â žâ ¬" }, { "input": "snorts", "output": "â Žâ â •â —â žâ Ž" }, { "input": "snot", "output": "â Žâ â •â ž" }, { "input": "snots", "output": "â Žâ â •â žâ Ž" }, { "input": "snottier", "output": "â Žâ â •â žâ žâ Šâ »" }, { "input": "snottiest", "output": "â Žâ â •â žâ žâ Šâ ‘â Œ" }, { "input": "snotty", "output": "â Žâ â •â žâ žâ ½" }, { "input": "snout", "output": "â Žâ â ³â ž" }, { "input": "snouts", "output": "â Žâ â ³â žâ Ž" }, { "input": "snow", "output": "â Žâ â ª" }, { "input": "snowball", "output": "â Žâ â ªâ ƒâ â ‡â ‡" }, { "input": "snowballed", "output": "â Žâ â ªâ ƒâ â ‡â ‡â «" }, { "input": "snowballing", "output": "â Žâ â ªâ ƒâ â ‡â ‡â ¬" }, { "input": "snowballs", "output": "â Žâ â ªâ ƒâ â ‡â ‡â Ž" }, { "input": "snowboard", "output": "â Žâ â ªâ ƒâ •⠜⠙" }, { "input": "snowboarded", "output": "â Žâ â ªâ ƒâ •⠜⠙⠫" }, { "input": "snowboarding", "output": "â Žâ â ªâ ƒâ •⠜⠙⠬" }, { "input": "snowboards", "output": "â Žâ â ªâ ƒâ •⠜⠙⠎" }, { "input": "snowbound", "output": "â Žâ â ªâ ƒâ ¨â ™" }, { "input": "snowdrift", "output": "â Žâ â ªâ ™â —â Šâ ‹â ž" }, { "input": "snowdrifts", "output": "â Žâ â ªâ ™â —â Šâ ‹â žâ Ž" }, { "input": "snowdrop", "output": "â Žâ â ªâ ™â —â •â " }, { "input": "snowdrops", "output": "â Žâ â ªâ ™â —â •â â Ž" }, { "input": "snowed", "output": "â Žâ â ªâ «" }, { "input": "snowfall", "output": "â Žâ â ªâ ‹â â ‡â ‡" }, { "input": "snowfalls", "output": "â Žâ â ªâ ‹â â ‡â ‡â Ž" }, { "input": "snowflake", "output": "â Žâ â ªâ ‹â ‡â â …â ‘" }, { "input": "snowflakes", "output": "â Žâ â ªâ ‹â ‡â â …â ‘â Ž" }, { "input": "snowier", "output": "â Žâ â ªâ Šâ »" }, { "input": "snowiest", "output": "â Žâ â ªâ Šâ ‘â Œ" }, { "input": "snowing", "output": "â Žâ â ªâ ¬" }, { "input": "snowman", "output": "â Žâ â ªâ â â " }, { "input": "snowmen", "output": "â Žâ â ªâ â ¢" }, { "input": "snowmobile", "output": "â Žâ â ªâ â •⠃⠊⠇⠑" }, { "input": "snowmobiled", "output": "â Žâ â ªâ â •⠃⠊⠇⠫" }, { "input": "snowmobiles", "output": "â Žâ â ªâ â •⠃⠊⠇⠑⠎" }, { "input": "snowmobiling", "output": "â Žâ â ªâ â •⠃⠊⠇⠬" }, { "input": "snowplow", "output": "â Žâ â ªâ â ‡â ª" }, { "input": "snowplowed", "output": "â Žâ â ªâ â ‡â ªâ «" }, { "input": "snowplowing", "output": "â Žâ â ªâ â ‡â ªâ ¬" }, { "input": "snowplows", "output": "â Žâ â ªâ â ‡â ªâ Ž" }, { "input": "snows", "output": "â Žâ â ªâ Ž" }, { "input": "snowshed", "output": "â Žâ â ªâ ©â «" }, { "input": "snowshoe", "output": "â Žâ â ªâ ©â •â ‘" }, { "input": "snowshoeing", "output": "â Žâ â ªâ ©â •â ‘â ¬" }, { "input": "snowshoes", "output": "â Žâ â ªâ ©â •â ‘â Ž" }, { "input": "snowstorm", "output": "â Žâ â ªâ Œâ •â —â " }, { "input": "snowstorms", "output": "â Žâ â ªâ Œâ •â —â â Ž" }, { "input": "snowsuit", "output": "â Žâ â ªâ Žâ ¥â Šâ ž" }, { "input": "snowsuits", "output": "â Žâ â ªâ Žâ ¥â Šâ žâ Ž" }, { "input": "snowy", "output": "â Žâ â ªâ ½" }, { "input": "snub", "output": "â Žâ â ¥â ƒ" }, { "input": "snubbed", "output": "â Žâ â ¥â †â «" }, { "input": "snubbing", "output": "â Žâ â ¥â †â ¬" }, { "input": "snubs", "output": "â Žâ â ¥â ƒâ Ž" }, { "input": "snuck", "output": "â Žâ â ¥â ‰â …" }, { "input": "snuff", "output": "â Žâ â ¥â ‹â ‹" }, { "input": "snuffbox", "output": "â Žâ â ¥â –⠃⠕⠭" }, { "input": "snuffboxes", "output": "â Žâ â ¥â –⠃⠕⠭⠑⠎" }, { "input": "snuffed", "output": "â Žâ â ¥â –â «" }, { "input": "snuffer", "output": "â Žâ â ¥â –â »" }, { "input": "snuffers", "output": "â Žâ â ¥â –⠻⠎" }, { "input": "snuffing", "output": "â Žâ â ¥â –â ¬" }, { "input": "snuffle", "output": "â Žâ â ¥â –⠇⠑" }, { "input": "snuffled", "output": "â Žâ â ¥â –⠇⠫" }, { "input": "snuffles", "output": "â Žâ â ¥â –⠇⠑⠎" }, { "input": "snuffling", "output": "â Žâ â ¥â –⠇⠬" }, { "input": "snuffs", "output": "â Žâ â ¥â –â Ž" }, { "input": "snug", "output": "â Žâ â ¥â ›" }, { "input": "snugged", "output": "â Žâ â ¥â ¶â «" }, { "input": "snugger", "output": "â Žâ â ¥â ¶â »" }, { "input": "snuggest", "output": "â Žâ â ¥â ¶â ‘â Œ" }, { "input": "snugging", "output": "â Žâ â ¥â ¶â ¬" }, { "input": "snuggle", "output": "â Žâ â ¥â ¶â ‡â ‘" }, { "input": "snuggled", "output": "â Žâ â ¥â ¶â ‡â «" }, { "input": "snuggles", "output": "â Žâ â ¥â ¶â ‡â ‘â Ž" }, { "input": "snuggling", "output": "â Žâ â ¥â ¶â ‡â ¬" }, { "input": "snugly", "output": "â Žâ â ¥â ›â ‡â ½" }, { "input": "snugs", "output": "â Žâ â ¥â ›â Ž" }, { "input": "so", "output": "â Ž" }, { "input": "soak", "output": "â Žâ •â â …" }, { "input": "soaked", "output": "â Žâ •â â …â «" }, { "input": "soaking", "output": "â Žâ •â â …â ¬" }, { "input": "soakings", "output": "â Žâ •â â …⠬⠎" }, { "input": "soaks", "output": "â Žâ •â â …â Ž" }, { "input": "soap", "output": "â Žâ •â â " }, { "input": "soapbox", "output": "â Žâ •â â â ƒâ •â ­" }, { "input": "soapboxes", "output": "â Žâ •â â â ƒâ •â ­â ‘â Ž" }, { "input": "soaped", "output": "â Žâ •â â â «" }, { "input": "soapier", "output": "â Žâ •â â â Šâ »" }, { "input": "soapiest", "output": "â Žâ •â â â Šâ ‘â Œ" }, { "input": "soapiness", "output": "â Žâ •â â â Šâ °â Ž" }, { "input": "soaping", "output": "â Žâ •â â â ¬" }, { "input": "soaps", "output": "â Žâ •â â â Ž" }, { "input": "soapstone", "output": "â Žâ •â â â Œâ â •" }, { "input": "soapsuds", "output": "â Žâ •â â â Žâ ¥â ™â Ž" }, { "input": "soapy", "output": "â Žâ •â â â ½" }, { "input": "soar", "output": "â Žâ •â œ" }, { "input": "soared", "output": "⠎⠕⠜⠫" }, { "input": "soaring", "output": "⠎⠕⠜⠬" }, { "input": "soars", "output": "⠎⠕⠜⠎" }, { "input": "sob", "output": "â Žâ •â ƒ" }, { "input": "sobbed", "output": "⠎⠕⠆⠫" }, { "input": "sobbing", "output": "⠎⠕⠆⠬" }, { "input": "sober", "output": "⠎⠕⠃⠻" }, { "input": "sobered", "output": "⠎⠕⠃⠻⠫" }, { "input": "soberer", "output": "⠎⠕⠃⠻⠻" }, { "input": "soberest", "output": "⠎⠕⠃⠻⠑⠌" }, { "input": "sobering", "output": "⠎⠕⠃⠻⠬" }, { "input": "soberly", "output": "⠎⠕⠃⠻⠇⠽" }, { "input": "soberness", "output": "⠎⠕⠃⠻⠰⠎" }, { "input": "sobers", "output": "⠎⠕⠃⠻⠎" }, { "input": "sobriety", "output": "⠎⠕⠃⠗⠊⠑⠞⠽" }, { "input": "sobriquet", "output": "⠎⠕⠃⠗⠊⠟⠥⠑⠞" }, { "input": "sobriquets", "output": "⠎⠕⠃⠗⠊⠟⠥⠑⠞⠎" }, { "input": "sobs", "output": "⠎⠕⠃⠎" }, { "input": "soccer", "output": "â Žâ •â ’â »" }, { "input": "sociability", "output": "⠎⠕⠉⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "sociable", "output": "⠎⠕⠉⠊â â ƒâ ‡â ‘" }, { "input": "sociables", "output": "⠎⠕⠉⠊â â ƒâ ‡â ‘â Ž" }, { "input": "sociably", "output": "⠎⠕⠉⠊â â ƒâ ‡â ½" }, { "input": "social", "output": "⠎⠕⠉⠊â â ‡" }, { "input": "socialism", "output": "⠎⠕⠉⠊â â ‡â Šâ Žâ " }, { "input": "socialist", "output": "⠎⠕⠉⠊â â ‡â Šâ Œ" }, { "input": "socialistic", "output": "⠎⠕⠉⠊â â ‡â Šâ Œâ Šâ ‰" }, { "input": "socialists", "output": "⠎⠕⠉⠊â â ‡â Šâ Œâ Ž" }, { "input": "socialite", "output": "⠎⠕⠉⠊â â ‡â Šâ žâ ‘" }, { "input": "socialites", "output": "⠎⠕⠉⠊â â ‡â Šâ žâ ‘â Ž" }, { "input": "socialization", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ â °â " }, { "input": "socialize", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ ‘" }, { "input": "socialized", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ «" }, { "input": "socializes", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "socializing", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ ¬" }, { "input": "socially", "output": "⠎⠕⠉⠊â â ‡â ‡â ½" }, { "input": "socials", "output": "⠎⠕⠉⠊â â ‡â Ž" }, { "input": "societal", "output": "⠎⠕⠉⠊⠑⠞â â ‡" }, { "input": "societies", "output": "⠎⠕⠉⠊⠑⠞⠊⠑⠎" }, { "input": "society", "output": "⠎⠕⠉⠊⠑⠞⠽" }, { "input": "socioeconomic", "output": "⠎⠕⠉⠊⠕⠑⠉⠕â â •â â Šâ ‰" }, { "input": "sociological", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "sociologist", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠌" }, { "input": "sociologists", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "sociology", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠽" }, { "input": "sociopath", "output": "⠎⠕⠉⠊⠕â â â ¹" }, { "input": "sociopaths", "output": "⠎⠕⠉⠊⠕â â â ¹â Ž" }, { "input": "sock", "output": "⠎⠕⠉⠅" }, { "input": "socked", "output": "⠎⠕⠉⠅⠫" }, { "input": "socket", "output": "⠎⠕⠉⠅⠑⠞" }, { "input": "sockets", "output": "⠎⠕⠉⠅⠑⠞⠎" }, { "input": "socking", "output": "⠎⠕⠉⠅⠬" }, { "input": "socks", "output": "⠎⠕⠉⠅⠎" }, { "input": "sod", "output": "â Žâ •â ™" }, { "input": "soda", "output": "â Žâ •â ™â " }, { "input": "sodas", "output": "â Žâ •â ™â â Ž" }, { "input": "sodded", "output": "⠎⠕⠙⠙⠫" }, { "input": "sodden", "output": "⠎⠕⠙⠙⠢" }, { "input": "sodding", "output": "⠎⠕⠙⠙⠬" }, { "input": "sodium", "output": "⠎⠕⠙⠊⠥â " }, { "input": "sodomite", "output": "⠎⠕⠙⠕â â Šâ žâ ‘" }, { "input": "sodomites", "output": "⠎⠕⠙⠕â â Šâ žâ ‘â Ž" }, { "input": "sodomy", "output": "⠎⠕⠙⠕â â ½" }, { "input": "sods", "output": "⠎⠕⠙⠎" }, { "input": "sofa", "output": "â Žâ ·â " }, { "input": "sofas", "output": "â Žâ ·â â Ž" }, { "input": "soft", "output": "â Žâ ·â ž" }, { "input": "softball", "output": "â Žâ ·â žâ ƒâ â ‡â ‡" }, { "input": "softballs", "output": "â Žâ ·â žâ ƒâ â ‡â ‡â Ž" }, { "input": "soften", "output": "â Žâ ·â žâ ¢" }, { "input": "softened", "output": "⠎⠷⠞⠢⠫" }, { "input": "softener", "output": "⠎⠷⠞⠢⠻" }, { "input": "softeners", "output": "⠎⠷⠞⠢⠻⠎" }, { "input": "softening", "output": "⠎⠷⠞⠢⠬" }, { "input": "softens", "output": "⠎⠷⠞⠢⠎" }, { "input": "softer", "output": "â Žâ ·â žâ »" }, { "input": "softest", "output": "â Žâ ·â žâ ‘â Œ" }, { "input": "softhearted", "output": "⠎⠷⠞⠓⠑⠜⠞⠫" }, { "input": "softie", "output": "â Žâ ·â žâ Šâ ‘" }, { "input": "softies", "output": "â Žâ ·â žâ Šâ ‘â Ž" }, { "input": "softly", "output": "⠎⠷⠞⠇⠽" }, { "input": "softness", "output": "â Žâ ·â žâ °â Ž" }, { "input": "software", "output": "⠎⠷⠞⠺⠜⠑" }, { "input": "softwood", "output": "⠎⠷⠞⠺⠕⠕⠙" }, { "input": "softwoods", "output": "⠎⠷⠞⠺⠕⠕⠙⠎" }, { "input": "softy", "output": "â Žâ ·â žâ ½" }, { "input": "soggier", "output": "â Žâ •â ¶â Šâ »" }, { "input": "soggiest", "output": "â Žâ •â ¶â Šâ ‘â Œ" }, { "input": "soggily", "output": "⠎⠕⠶⠊⠇⠽" }, { "input": "sogginess", "output": "â Žâ •â ¶â Šâ °â Ž" }, { "input": "soggy", "output": "â Žâ •â ¶â ½" }, { "input": "soil", "output": "â Žâ •â Šâ ‡" }, { "input": "soiled", "output": "⠎⠕⠊⠇⠫" }, { "input": "soiling", "output": "⠎⠕⠊⠇⠬" }, { "input": "soils", "output": "⠎⠕⠊⠇⠎" }, { "input": "soirée", "output": "⠎⠕⠊⠗⠠⠘⠻â â ˜â ‰â ‘" }, { "input": "soirées", "output": "⠎⠕⠊⠗⠠⠘⠻â â ˜â ‰â ‘â Ž" }, { "input": "sojourn", "output": "⠎⠕⠚⠳⠗â " }, { "input": "sojourned", "output": "⠎⠕⠚⠳⠗â â «" }, { "input": "sojourning", "output": "⠎⠕⠚⠳⠗â â ¬" }, { "input": "sojourns", "output": "⠎⠕⠚⠳⠗â â Ž" }, { "input": "sol", "output": "â Žâ •â ‡" }, { "input": "solace", "output": "â Žâ •â ‡â â ‰â ‘" }, { "input": "solaced", "output": "â Žâ •â ‡â â ‰â «" }, { "input": "solaces", "output": "â Žâ •â ‡â â ‰â ‘â Ž" }, { "input": "solacing", "output": "â Žâ •â ‡â â ‰â ¬" }, { "input": "solar", "output": "⠎⠕⠇⠜" }, { "input": "solaria", "output": "⠎⠕⠇⠜⠊â " }, { "input": "solarium", "output": "⠎⠕⠇⠜⠊⠥â " }, { "input": "solariums", "output": "⠎⠕⠇⠜⠊⠥â â Ž" }, { "input": "sold", "output": "⠎⠕⠇⠙" }, { "input": "solder", "output": "⠎⠕⠇⠙⠻" }, { "input": "soldered", "output": "⠎⠕⠇⠙⠻⠫" }, { "input": "soldering", "output": "⠎⠕⠇⠙⠻⠬" }, { "input": "solders", "output": "⠎⠕⠇⠙⠻⠎" }, { "input": "soldier", "output": "⠎⠕⠇⠙⠊⠻" }, { "input": "soldiered", "output": "⠎⠕⠇⠙⠊⠻⠫" }, { "input": "soldiering", "output": "⠎⠕⠇⠙⠊⠻⠬" }, { "input": "soldierly", "output": "⠎⠕⠇⠙⠊⠻⠇⠽" }, { "input": "soldiers", "output": "⠎⠕⠇⠙⠊⠻⠎" }, { "input": "sole", "output": "⠎⠕⠇⠑" }, { "input": "solecism", "output": "⠎⠕⠇⠑⠉⠊⠎â " }, { "input": "solecisms", "output": "⠎⠕⠇⠑⠉⠊⠎â â Ž" }, { "input": "soled", "output": "⠎⠕⠇⠫" }, { "input": "solely", "output": "⠎⠕⠇⠑⠇⠽" }, { "input": "solemn", "output": "⠎⠕⠇⠑â â " }, { "input": "solemner", "output": "⠎⠕⠇⠑â â â »" }, { "input": "solemnest", "output": "⠎⠕⠇⠑â â â ‘â Œ" }, { "input": "solemnity", "output": "⠎⠕⠇⠑â â â °â ½" }, { "input": "solemnize", "output": "⠎⠕⠇⠑â â â Šâ µâ ‘" }, { "input": "solemnized", "output": "⠎⠕⠇⠑â â â Šâ µâ «" }, { "input": "solemnizes", "output": "⠎⠕⠇⠑â â â Šâ µâ ‘â Ž" }, { "input": "solemnizing", "output": "⠎⠕⠇⠑â â â Šâ µâ ¬" }, { "input": "solemnly", "output": "⠎⠕⠇⠑â â â ‡â ½" }, { "input": "solenoid", "output": "⠎⠕⠇⠢⠕⠊⠙" }, { "input": "solenoids", "output": "⠎⠕⠇⠢⠕⠊⠙⠎" }, { "input": "soles", "output": "⠎⠕⠇⠑⠎" }, { "input": "soli", "output": "⠎⠕⠇⠊" }, { "input": "solicit", "output": "⠎⠕⠇⠊⠉⠊⠞" }, { "input": "solicitation", "output": "⠎⠕⠇⠊⠉⠊⠞â â °â " }, { "input": "solicitations", "output": "⠎⠕⠇⠊⠉⠊⠞â â °â â Ž" }, { "input": "solicited", "output": "⠎⠕⠇⠊⠉⠊⠞⠫" }, { "input": "soliciting", "output": "⠎⠕⠇⠊⠉⠊⠞⠬" }, { "input": "solicitor", "output": "⠎⠕⠇⠊⠉⠊⠞⠕⠗" }, { "input": "solicitors", "output": "⠎⠕⠇⠊⠉⠊⠞⠕⠗⠎" }, { "input": "solicitous", "output": "⠎⠕⠇⠊⠉⠊⠞⠳⠎" }, { "input": "solicitously", "output": "⠎⠕⠇⠊⠉⠊⠞⠳⠎⠇⠽" }, { "input": "solicits", "output": "⠎⠕⠇⠊⠉⠊⠞⠎" }, { "input": "solicitude", "output": "⠎⠕⠇⠊⠉⠊⠞⠥⠙⠑" }, { "input": "solid", "output": "⠎⠕⠇⠊⠙" }, { "input": "solidarity", "output": "⠎⠕⠇⠊⠙⠜⠰⠽" }, { "input": "solider", "output": "⠎⠕⠇⠊⠙⠻" }, { "input": "solidest", "output": "⠎⠕⠇⠊⠙⠑⠌" }, { "input": "solidification", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠉â â °â " }, { "input": "solidified", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠫" }, { "input": "solidifies", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠑⠎" }, { "input": "solidify", "output": "⠎⠕⠇⠊⠙⠊⠋⠽" }, { "input": "solidifying", "output": "⠎⠕⠇⠊⠙⠊⠋⠽⠬" }, { "input": "solidity", "output": "⠎⠕⠇⠊⠙⠰⠽" }, { "input": "solidly", "output": "⠎⠕⠇⠊⠙⠇⠽" }, { "input": "solidness", "output": "⠎⠕⠇⠊⠙⠰⠎" }, { "input": "solids", "output": "⠎⠕⠇⠊⠙⠎" }, { "input": "soliloquies", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠑⠎" }, { "input": "soliloquize", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠑" }, { "input": "soliloquized", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠫" }, { "input": "soliloquizes", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠑⠎" }, { "input": "soliloquizing", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠬" }, { "input": "soliloquy", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠽" }, { "input": "soling", "output": "⠎⠕⠇⠬" }, { "input": "solitaire", "output": "⠎⠕⠇⠊⠞â â Šâ —â ‘" }, { "input": "solitaires", "output": "⠎⠕⠇⠊⠞â â Šâ —â ‘â Ž" }, { "input": "solitaries", "output": "⠎⠕⠇⠊⠞⠜⠊⠑⠎" }, { "input": "solitary", "output": "⠎⠕⠇⠊⠞⠜⠽" }, { "input": "solitude", "output": "⠎⠕⠇⠊⠞⠥⠙⠑" }, { "input": "solo", "output": "⠎⠕⠇⠕" }, { "input": "soloed", "output": "⠎⠕⠇⠕⠫" }, { "input": "soloing", "output": "⠎⠕⠇⠕⠬" }, { "input": "soloist", "output": "⠎⠕⠇⠕⠊⠌" }, { "input": "soloists", "output": "⠎⠕⠇⠕⠊⠌⠎" }, { "input": "solos", "output": "⠎⠕⠇⠕⠎" }, { "input": "sols", "output": "⠎⠕⠇⠎" }, { "input": "solstice", "output": "⠎⠕⠇⠌⠊⠉⠑" }, { "input": "solstices", "output": "⠎⠕⠇⠌⠊⠉⠑⠎" }, { "input": "solubility", "output": "⠎⠕⠇⠥⠃⠊⠇⠰⠽" }, { "input": "soluble", "output": "⠎⠕⠇⠥⠃⠇⠑" }, { "input": "solubles", "output": "⠎⠕⠇⠥⠃⠇⠑⠎" }, { "input": "solution", "output": "⠎⠕⠇⠥⠰â " }, { "input": "solutions", "output": "⠎⠕⠇⠥⠰â â Ž" }, { "input": "solvable", "output": "⠎⠕⠇⠧â â ƒâ ‡â ‘" }, { "input": "solve", "output": "⠎⠕⠇⠧⠑" }, { "input": "solved", "output": "⠎⠕⠇⠧⠫" }, { "input": "solvency", "output": "⠎⠕⠇⠧⠢⠉⠽" }, { "input": "solvent", "output": "⠎⠕⠇⠧⠢⠞" }, { "input": "solvents", "output": "⠎⠕⠇⠧⠢⠞⠎" }, { "input": "solver", "output": "⠎⠕⠇⠧⠻" }, { "input": "solvers", "output": "⠎⠕⠇⠧⠻⠎" }, { "input": "solves", "output": "⠎⠕⠇⠧⠑⠎" }, { "input": "solving", "output": "⠎⠕⠇⠧⠬" }, { "input": "somber", "output": "â Žâ •â â ƒâ »" }, { "input": "somberly", "output": "â Žâ •â â ƒâ »â ‡â ½" }, { "input": "sombre", "output": "â Žâ •â â ƒâ —â ‘" }, { "input": "sombrely", "output": "â Žâ •â â ƒâ —⠑⠇⠽" }, { "input": "sombrero", "output": "â Žâ •â â ƒâ —⠻⠕" }, { "input": "sombreros", "output": "â Žâ •â â ƒâ —⠻⠕⠎" }, { "input": "some", "output": "â â Ž" }, { "input": "somebodies", "output": "â â Žâ ƒâ •⠙⠊⠑⠎" }, { "input": "somebody", "output": "â â Žâ ƒâ •⠙⠽" }, { "input": "someday", "output": "â â Žâ â ™" }, { "input": "somehow", "output": "â â Žâ “â ª" }, { "input": "someone", "output": "â â Žâ â •" }, { "input": "someones", "output": "â â Žâ â •â Ž" }, { "input": "someplace", "output": "â â Žâ â ‡â â ‰â ‘" }, { "input": "somersault", "output": "â Žâ •â â »â Žâ â ¥â ‡â ž" }, { "input": "somersaulted", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ «" }, { "input": "somersaulting", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ ¬" }, { "input": "somersaults", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ Ž" }, { "input": "something", "output": "â â Žâ ¹â ¬" }, { "input": "somethings", "output": "â â Žâ ¹â ¬â Ž" }, { "input": "sometime", "output": "â â Žâ â ž" }, { "input": "sometimes", "output": "â â Žâ â žâ Ž" }, { "input": "someway", "output": "â â Žâ ºâ â ½" }, { "input": "somewhat", "output": "â â Žâ ±â â ž" }, { "input": "somewhats", "output": "â â Žâ ±â â žâ Ž" }, { "input": "somewhere", "output": "â â Žâ â ±" }, { "input": "somnambulism", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Žâ " }, { "input": "somnambulist", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Œ" }, { "input": "somnambulists", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Œâ Ž" }, { "input": "somnolence", "output": "â Žâ •â â â •⠇⠰⠑" }, { "input": "somnolent", "output": "â Žâ •â â â •⠇⠢⠞" }, { "input": "son", "output": "â Žâ •â " }, { "input": "sonar", "output": "â Žâ •â â œ" }, { "input": "sonars", "output": "â Žâ •â â œâ Ž" }, { "input": "sonata", "output": "â Žâ •â â â žâ " }, { "input": "sonatas", "output": "â Žâ •â â â žâ â Ž" }, { "input": "song", "output": "â Žâ °â ›" }, { "input": "songbird", "output": "⠎⠰⠛⠃⠊⠗⠙" }, { "input": "songbirds", "output": "⠎⠰⠛⠃⠊⠗⠙⠎" }, { "input": "songs", "output": "⠎⠰⠛⠎" }, { "input": "songster", "output": "⠎⠰⠛⠌⠻" }, { "input": "songsters", "output": "⠎⠰⠛⠌⠻⠎" }, { "input": "songwriter", "output": "⠎⠰⠛⠺⠗⠊⠞⠻" }, { "input": "songwriters", "output": "⠎⠰⠛⠺⠗⠊⠞⠻⠎" }, { "input": "sonic", "output": "â Žâ •â â Šâ ‰" }, { "input": "sonnet", "output": "â Žâ •â â â ‘â ž" }, { "input": "sonnets", "output": "â Žâ •â â â ‘â žâ Ž" }, { "input": "sonnies", "output": "â Žâ •â â â Šâ ‘â Ž" }, { "input": "sonny", "output": "â Žâ •â â â ½" }, { "input": "sonority", "output": "â Žâ •â â •â —â °â ½" }, { "input": "sonorous", "output": "â Žâ •â â •⠗⠳⠎" }, { "input": "sons", "output": "â Žâ •â â Ž" }, { "input": "soon", "output": "â Žâ •â •â " }, { "input": "sooner", "output": "â Žâ •â •â â »" }, { "input": "soonest", "output": "â Žâ •â •â â ‘â Œ" }, { "input": "soot", "output": "â Žâ •â •â ž" }, { "input": "sooth", "output": "â Žâ •â •â ¹" }, { "input": "soothe", "output": "â Žâ •â •â ®" }, { "input": "soothed", "output": "⠎⠕⠕⠮⠙" }, { "input": "soothes", "output": "⠎⠕⠕⠮⠎" }, { "input": "soothing", "output": "⠎⠕⠕⠹⠬" }, { "input": "soothingly", "output": "⠎⠕⠕⠹⠬⠇⠽" }, { "input": "soothsayer", "output": "⠎⠕⠕⠹⠎â â ½â »" }, { "input": "soothsayers", "output": "⠎⠕⠕⠹⠎â â ½â »â Ž" }, { "input": "sootier", "output": "â Žâ •â •â žâ Šâ »" }, { "input": "sootiest", "output": "â Žâ •â •â žâ Šâ ‘â Œ" }, { "input": "sooty", "output": "â Žâ •â •â žâ ½" }, { "input": "sop", "output": "â Žâ •â " }, { "input": "sophism", "output": "â Žâ •â â “â Šâ Žâ " }, { "input": "sophist", "output": "â Žâ •â â “â Šâ Œ" }, { "input": "sophisticate", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ ‘" }, { "input": "sophisticated", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ «" }, { "input": "sophisticates", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ ‘â Ž" }, { "input": "sophisticating", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ ¬" }, { "input": "sophistication", "output": "â Žâ •â â “⠊⠌⠊⠉â â °â " }, { "input": "sophistries", "output": "â Žâ •â â “⠊⠌⠗⠊⠑⠎" }, { "input": "sophistry", "output": "â Žâ •â â “⠊⠌⠗⠽" }, { "input": "sophists", "output": "â Žâ •â â “⠊⠌⠎" }, { "input": "sophomore", "output": "â Žâ •â â “â •â â •â —â ‘" }, { "input": "sophomores", "output": "â Žâ •â â “â •â â •â —â ‘â Ž" }, { "input": "sophomoric", "output": "â Žâ •â â “â •â â •â —â Šâ ‰" }, { "input": "soporific", "output": "â Žâ •â â •â —â Šâ ‹â Šâ ‰" }, { "input": "soporifics", "output": "â Žâ •â â •⠗⠊⠋⠊⠉⠎" }, { "input": "sopped", "output": "â Žâ •â â â «" }, { "input": "soppier", "output": "â Žâ •â â â Šâ »" }, { "input": "soppiest", "output": "â Žâ •â â â Šâ ‘â Œ" }, { "input": "sopping", "output": "â Žâ •â â â ¬" }, { "input": "soppy", "output": "â Žâ •â â â ½" }, { "input": "soprano", "output": "â Žâ •â â —â â â •" }, { "input": "sopranos", "output": "â Žâ •â â —â â â •â Ž" }, { "input": "sops", "output": "â Žâ •â â Ž" }, { "input": "sorbet", "output": "⠎⠕⠗⠃⠑⠞" }, { "input": "sorbets", "output": "⠎⠕⠗⠃⠑⠞⠎" }, { "input": "sorcerer", "output": "⠎⠕⠗⠉⠻⠻" }, { "input": "sorcerers", "output": "⠎⠕⠗⠉⠻⠻⠎" }, { "input": "sorceress", "output": "⠎⠕⠗⠉⠻⠑⠎⠎" }, { "input": "sorceresses", "output": "⠎⠕⠗⠉⠻⠑⠎⠎⠑⠎" }, { "input": "sorcery", "output": "⠎⠕⠗⠉⠻⠽" }, { "input": "sordid", "output": "⠎⠕⠗⠙⠊⠙" }, { "input": "sordidly", "output": "⠎⠕⠗⠙⠊⠙⠇⠽" }, { "input": "sordidness", "output": "⠎⠕⠗⠙⠊⠙⠰⠎" }, { "input": "sore", "output": "â Žâ •â —â ‘" }, { "input": "sorehead", "output": "â Žâ •â —â ‘â “â ‚â ™" }, { "input": "soreheads", "output": "⠎⠕⠗⠑⠓⠂⠙⠎" }, { "input": "sorely", "output": "⠎⠕⠗⠑⠇⠽" }, { "input": "soreness", "output": "â Žâ •â —â ‘â °â Ž" }, { "input": "sorer", "output": "â Žâ •â —â »" }, { "input": "sores", "output": "â Žâ •â —â ‘â Ž" }, { "input": "sorest", "output": "â Žâ •â —â ‘â Œ" }, { "input": "sorghum", "output": "⠎⠕⠗⠣⠥â " }, { "input": "sororities", "output": "â Žâ •â —â •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "sorority", "output": "â Žâ •â —â •â —â °â ½" }, { "input": "sorrel", "output": "â Žâ •â —â —â ‘â ‡" }, { "input": "sorrels", "output": "⠎⠕⠗⠗⠑⠇⠎" }, { "input": "sorrier", "output": "â Žâ •â —â —â Šâ »" }, { "input": "sorriest", "output": "â Žâ •â —â —â Šâ ‘â Œ" }, { "input": "sorrow", "output": "â Žâ •â —â —â ª" }, { "input": "sorrowed", "output": "⠎⠕⠗⠗⠪⠫" }, { "input": "sorrowful", "output": "⠎⠕⠗⠗⠪⠰⠇" }, { "input": "sorrowfully", "output": "⠎⠕⠗⠗⠪⠰⠇⠇⠽" }, { "input": "sorrowing", "output": "⠎⠕⠗⠗⠪⠬" }, { "input": "sorrows", "output": "⠎⠕⠗⠗⠪⠎" }, { "input": "sorry", "output": "â Žâ •â —â —â ½" }, { "input": "sort", "output": "â Žâ •â —â ž" }, { "input": "sorta", "output": "â Žâ •â —â žâ " }, { "input": "sorted", "output": "â Žâ •â —â žâ «" }, { "input": "sorter", "output": "â Žâ •â —â žâ »" }, { "input": "sorters", "output": "⠎⠕⠗⠞⠻⠎" }, { "input": "sortie", "output": "â Žâ •â —â žâ Šâ ‘" }, { "input": "sortied", "output": "â Žâ •â —â žâ Šâ «" }, { "input": "sortieing", "output": "â Žâ •â —â žâ Šâ ‘â ¬" }, { "input": "sorties", "output": "â Žâ •â —â žâ Šâ ‘â Ž" }, { "input": "sorting", "output": "â Žâ •â —â žâ ¬" }, { "input": "sorts", "output": "â Žâ •â —â žâ Ž" }, { "input": "sos", "output": "â Žâ •â Ž" }, { "input": "sot", "output": "â Žâ •â ž" }, { "input": "sots", "output": "â Žâ •â žâ Ž" }, { "input": "sottish", "output": "â Žâ •â žâ žâ Šâ ©" }, { "input": "soubriquet", "output": "⠎⠳⠃⠗⠊⠟⠥⠑⠞" }, { "input": "soubriquets", "output": "⠎⠳⠃⠗⠊⠟⠥⠑⠞⠎" }, { "input": "soufflé", "output": "⠎⠳⠖⠇⠠⠘⠻â â ˜â ‰" }, { "input": "soufflés", "output": "⠎⠳⠖⠇⠠⠘⠻â â ˜â ‰â Ž" }, { "input": "sough", "output": "⠎⠳⠣" }, { "input": "soughed", "output": "⠎⠳⠣⠫" }, { "input": "soughing", "output": "⠎⠳⠣⠬" }, { "input": "soughs", "output": "⠎⠳⠣⠎" }, { "input": "sought", "output": "â Žâ â ³" }, { "input": "soul", "output": "⠎⠳⠇" }, { "input": "soulful", "output": "⠎⠳⠇⠰⠇" }, { "input": "soulfully", "output": "⠎⠳⠇⠰⠇⠇⠽" }, { "input": "soulfulness", "output": "⠎⠳⠇⠰⠇⠰⠎" }, { "input": "soulless", "output": "⠎⠳⠇⠨⠎" }, { "input": "souls", "output": "⠎⠳⠇⠎" }, { "input": "sound", "output": "⠎⠨⠙" }, { "input": "sounded", "output": "⠎⠨⠙⠫" }, { "input": "sounder", "output": "⠎⠨⠙⠻" }, { "input": "soundest", "output": "⠎⠨⠙⠑⠌" }, { "input": "sounding", "output": "⠎⠨⠙⠬" }, { "input": "soundings", "output": "⠎⠨⠙⠬⠎" }, { "input": "soundless", "output": "⠎⠨⠙⠨⠎" }, { "input": "soundlessly", "output": "⠎⠨⠙⠨⠎⠇⠽" }, { "input": "soundly", "output": "⠎⠨⠙⠇⠽" }, { "input": "soundness", "output": "⠎⠨⠙⠰⠎" }, { "input": "soundproof", "output": "⠎⠨⠙â â —â •â ·" }, { "input": "soundproofed", "output": "⠎⠨⠙â â —â •â ·â «" }, { "input": "soundproofing", "output": "⠎⠨⠙â â —â •â ·â ¬" }, { "input": "soundproofs", "output": "⠎⠨⠙â â —â •â ·â Ž" }, { "input": "sounds", "output": "⠎⠨⠙⠎" }, { "input": "soundtrack", "output": "⠎⠨⠙⠞⠗â â ‰â …" }, { "input": "soundtracks", "output": "⠎⠨⠙⠞⠗â â ‰â …â Ž" }, { "input": "soup", "output": "â Žâ ³â " }, { "input": "souped", "output": "â Žâ ³â â «" }, { "input": "soupier", "output": "â Žâ ³â â Šâ »" }, { "input": "soupiest", "output": "â Žâ ³â â Šâ ‘â Œ" }, { "input": "souping", "output": "â Žâ ³â â ¬" }, { "input": "soups", "output": "â Žâ ³â â Ž" }, { "input": "soupy", "output": "â Žâ ³â â ½" }, { "input": "soupçon", "output": "â Žâ ³â â  â ˜â »â â ˜â Žâ •â " }, { "input": "soupçons", "output": "â Žâ ³â â  â ˜â »â â ˜â Žâ •â â Ž" }, { "input": "sour", "output": "⠎⠳⠗" }, { "input": "source", "output": "⠎⠳⠗⠉⠑" }, { "input": "sourced", "output": "⠎⠳⠗⠉⠫" }, { "input": "sources", "output": "⠎⠳⠗⠉⠑⠎" }, { "input": "sourcing", "output": "⠎⠳⠗⠉⠬" }, { "input": "sourdough", "output": "⠎⠳⠗⠙⠳⠣" }, { "input": "sourdoughs", "output": "⠎⠳⠗⠙⠳⠣⠎" }, { "input": "soured", "output": "⠎⠳⠗⠫" }, { "input": "sourer", "output": "⠎⠳⠗⠻" }, { "input": "sourest", "output": "⠎⠳⠗⠑⠌" }, { "input": "souring", "output": "⠎⠳⠗⠬" }, { "input": "sourly", "output": "⠎⠳⠗⠇⠽" }, { "input": "sourness", "output": "⠎⠳⠗⠰⠎" }, { "input": "sourpuss", "output": "⠎⠳⠗â â ¥â Žâ Ž" }, { "input": "sourpusses", "output": "⠎⠳⠗â â ¥â Žâ Žâ ‘â Ž" }, { "input": "sours", "output": "⠎⠳⠗⠎" }, { "input": "souse", "output": "⠎⠳⠎⠑" }, { "input": "soused", "output": "⠎⠳⠎⠫" }, { "input": "souses", "output": "⠎⠳⠎⠑⠎" }, { "input": "sousing", "output": "⠎⠳⠎⠬" }, { "input": "south", "output": "⠎⠳⠹" }, { "input": "southbound", "output": "⠎⠳⠹⠃⠨⠙" }, { "input": "southeast", "output": "⠎⠳⠹⠂⠌" }, { "input": "southeasterly", "output": "⠎⠳⠹⠂⠌⠻⠇⠽" }, { "input": "southeastern", "output": "⠎⠳⠹⠂⠌⠻â " }, { "input": "southeastward", "output": "⠎⠳⠹⠂⠌⠺⠜⠙" }, { "input": "southerlies", "output": "⠎⠳⠮⠗⠇⠊⠑⠎" }, { "input": "southerly", "output": "⠎⠳⠮⠗⠇⠽" }, { "input": "southern", "output": "⠎⠳⠮⠗â " }, { "input": "southerner", "output": "⠎⠳⠮⠗â â »" }, { "input": "southerners", "output": "⠎⠳⠮⠗â â »â Ž" }, { "input": "southernmost", "output": "⠎⠳⠮⠗â â â •â Œ" }, { "input": "southerns", "output": "⠎⠳⠮⠗â â Ž" }, { "input": "southpaw", "output": "⠎⠳⠹â â â º" }, { "input": "southpaws", "output": "⠎⠳⠹â â â ºâ Ž" }, { "input": "southward", "output": "⠎⠳⠹⠺⠜⠙" }, { "input": "southwards", "output": "⠎⠳⠹⠺⠜⠙⠎" }, { "input": "southwest", "output": "⠎⠳⠹⠺⠑⠌" }, { "input": "southwester", "output": "⠎⠳⠹⠺⠑⠌⠻" }, { "input": "southwesterly", "output": "⠎⠳⠹⠺⠑⠌⠻⠇⠽" }, { "input": "southwestern", "output": "⠎⠳⠹⠺⠑⠌⠻â " }, { "input": "southwesters", "output": "⠎⠳⠹⠺⠑⠌⠻⠎" }, { "input": "southwestward", "output": "⠎⠳⠹⠺⠑⠌⠺⠜⠙" }, { "input": "souvenir", "output": "⠎⠳⠧⠢⠊⠗" }, { "input": "souvenirs", "output": "⠎⠳⠧⠢⠊⠗⠎" }, { "input": "sovereign", "output": "⠎⠕⠧⠻⠑⠊⠛â " }, { "input": "sovereigns", "output": "⠎⠕⠧⠻⠑⠊⠛â â Ž" }, { "input": "sovereignty", "output": "⠎⠕⠧⠻⠑⠊⠛â â žâ ½" }, { "input": "soviet", "output": "â Žâ •â §â Šâ ‘â ž" }, { "input": "soviets", "output": "â Žâ •â §â Šâ ‘â žâ Ž" }, { "input": "sow", "output": "â Žâ ª" }, { "input": "sowed", "output": "⠎⠪⠫" }, { "input": "sower", "output": "⠎⠪⠻" }, { "input": "sowers", "output": "⠎⠪⠻⠎" }, { "input": "sowing", "output": "⠎⠪⠬" }, { "input": "sown", "output": "â Žâ ªâ " }, { "input": "sows", "output": "⠎⠪⠎" }, { "input": "sox", "output": "â Žâ •â ­" }, { "input": "soy", "output": "â Žâ •â ½" }, { "input": "soya", "output": "â Žâ •â ½â " }, { "input": "soybean", "output": "⠎⠕⠽⠃⠂â " }, { "input": "soybeans", "output": "⠎⠕⠽⠃⠂â â Ž" }, { "input": "spa", "output": "â Žâ â " }, { "input": "space", "output": "â Žâ â â ‰â ‘" }, { "input": "spacecraft", "output": "â Žâ â â ‰â ‘⠉⠗â â ‹â ž" }, { "input": "spacecrafts", "output": "â Žâ â â ‰â ‘⠉⠗â â ‹â žâ Ž" }, { "input": "spaced", "output": "â Žâ â â ‰â «" }, { "input": "spaceflight", "output": "â Žâ â â ‰â ‘⠋⠇⠊⠣⠞" }, { "input": "spaceflights", "output": "â Žâ â â ‰â ‘⠋⠇⠊⠣⠞⠎" }, { "input": "spaceman", "output": "â Žâ â â ‰â ‘â â â " }, { "input": "spacemen", "output": "â Žâ â â ‰â ‘â â ¢" }, { "input": "spaces", "output": "â Žâ â â ‰â ‘â Ž" }, { "input": "spaceship", "output": "â Žâ â â ‰â ‘â ©â Šâ " }, { "input": "spaceships", "output": "â Žâ â â ‰â ‘â ©â Šâ â Ž" }, { "input": "spacesuit", "output": "â Žâ â â ‰â ‘⠎⠥⠊⠞" }, { "input": "spacesuits", "output": "â Žâ â â ‰â ‘⠎⠥⠊⠞⠎" }, { "input": "spacewalk", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …" }, { "input": "spacewalked", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â «" }, { "input": "spacewalking", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â ¬" }, { "input": "spacewalks", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â Ž" }, { "input": "spacey", "output": "â Žâ â â ‰â ‘â ½" }, { "input": "spacial", "output": "â Žâ â â ‰â Šâ â ‡" }, { "input": "spacier", "output": "â Žâ â â ‰â Šâ »" }, { "input": "spaciest", "output": "â Žâ â â ‰â Šâ ‘â Œ" }, { "input": "spacing", "output": "â Žâ â â ‰â ¬" }, { "input": "spacious", "output": "â Žâ â â ‰â Šâ ³â Ž" }, { "input": "spaciously", "output": "â Žâ â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "spaciousness", "output": "â Žâ â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "spacy", "output": "â Žâ â â ‰â ½" }, { "input": "spade", "output": "â Žâ â â ™â ‘" }, { "input": "spaded", "output": "â Žâ â â ™â «" }, { "input": "spadeful", "output": "â Žâ â â ™â ‘â °â ‡" }, { "input": "spadefuls", "output": "â Žâ â â ™â ‘⠰⠇⠎" }, { "input": "spades", "output": "â Žâ â â ™â ‘â Ž" }, { "input": "spadework", "output": "â Žâ â â ™â ‘â â º" }, { "input": "spading", "output": "â Žâ â â ™â ¬" }, { "input": "spaghetti", "output": "â Žâ â â £â ‘â žâ žâ Š" }, { "input": "spake", "output": "â Žâ â â …â ‘" }, { "input": "spammer", "output": "â Žâ â â â â »" }, { "input": "spammers", "output": "â Žâ â â â â »â Ž" }, { "input": "span", "output": "â Žâ â â " }, { "input": "spandex", "output": "â Žâ â ¯â ‘â ­" }, { "input": "spangle", "output": "â Žâ â â â ›â ‡â ‘" }, { "input": "spangled", "output": "â Žâ â â â ›â ‡â «" }, { "input": "spangles", "output": "â Žâ â â â ›â ‡â ‘â Ž" }, { "input": "spangling", "output": "â Žâ â â â ›â ‡â ¬" }, { "input": "spaniel", "output": "â Žâ â â â Šâ ‘â ‡" }, { "input": "spaniels", "output": "â Žâ â â â Šâ ‘⠇⠎" }, { "input": "spank", "output": "â Žâ â â â …" }, { "input": "spanked", "output": "â Žâ â â â …â «" }, { "input": "spanking", "output": "â Žâ â â â …â ¬" }, { "input": "spankings", "output": "â Žâ â â â …⠬⠎" }, { "input": "spanks", "output": "â Žâ â â â …â Ž" }, { "input": "spanned", "output": "â Žâ â â â â «" }, { "input": "spanner", "output": "â Žâ â â â â »" }, { "input": "spanners", "output": "â Žâ â â â â »â Ž" }, { "input": "spanning", "output": "â Žâ â â â â ¬" }, { "input": "spans", "output": "â Žâ â â â Ž" }, { "input": "spar", "output": "â Žâ â œ" }, { "input": "spare", "output": "â Žâ â œâ ‘" }, { "input": "spared", "output": "â Žâ â œâ «" }, { "input": "sparely", "output": "â Žâ â œâ ‘⠇⠽" }, { "input": "spareness", "output": "â Žâ â œâ ‘â °â Ž" }, { "input": "sparer", "output": "â Žâ â œâ »" }, { "input": "spareribs", "output": "â Žâ â œâ ‘⠗⠊⠃⠎" }, { "input": "spares", "output": "â Žâ â œâ ‘â Ž" }, { "input": "sparest", "output": "â Žâ â œâ ‘â Œ" }, { "input": "sparing", "output": "â Žâ â œâ ¬" }, { "input": "sparingly", "output": "â Žâ â œâ ¬â ‡â ½" }, { "input": "spark", "output": "â Žâ â œâ …" }, { "input": "sparked", "output": "â Žâ â œâ …â «" }, { "input": "sparking", "output": "â Žâ â œâ …â ¬" }, { "input": "sparkle", "output": "â Žâ â œâ …⠇⠑" }, { "input": "sparkled", "output": "â Žâ â œâ …⠇⠫" }, { "input": "sparkler", "output": "â Žâ â œâ …⠇⠻" }, { "input": "sparklers", "output": "â Žâ â œâ …⠇⠻⠎" }, { "input": "sparkles", "output": "â Žâ â œâ …⠇⠑⠎" }, { "input": "sparkling", "output": "â Žâ â œâ …⠇⠬" }, { "input": "sparks", "output": "â Žâ â œâ …â Ž" }, { "input": "sparred", "output": "â Žâ â œâ —â «" }, { "input": "sparring", "output": "â Žâ â œâ —â ¬" }, { "input": "sparrow", "output": "â Žâ â œâ —â ª" }, { "input": "sparrows", "output": "â Žâ â œâ —⠪⠎" }, { "input": "spars", "output": "â Žâ â œâ Ž" }, { "input": "sparse", "output": "â Žâ â œâ Žâ ‘" }, { "input": "sparsely", "output": "â Žâ â œâ Žâ ‘⠇⠽" }, { "input": "sparseness", "output": "â Žâ â œâ Žâ ‘â °â Ž" }, { "input": "sparser", "output": "â Žâ â œâ Žâ »" }, { "input": "sparsest", "output": "â Žâ â œâ Žâ ‘â Œ" }, { "input": "sparsity", "output": "â Žâ â œâ Žâ °â ½" }, { "input": "spartan", "output": "â Žâ â â â " }, { "input": "spas", "output": "â Žâ â â Ž" }, { "input": "spasm", "output": "â Žâ â â Žâ " }, { "input": "spasmodic", "output": "â Žâ â â Žâ â •⠙⠊⠉" }, { "input": "spasmodically", "output": "â Žâ â â Žâ â •⠙⠊⠉â â ‡â ‡â ½" }, { "input": "spasms", "output": "â Žâ â â Žâ â Ž" }, { "input": "spastic", "output": "â Žâ â â Œâ Šâ ‰" }, { "input": "spastics", "output": "â Žâ â â Œâ Šâ ‰â Ž" }, { "input": "spat", "output": "â Žâ â â ž" }, { "input": "spate", "output": "â Žâ â â žâ ‘" }, { "input": "spates", "output": "â Žâ â â žâ ‘â Ž" }, { "input": "spatial", "output": "â Žâ â â žâ Šâ â ‡" }, { "input": "spatially", "output": "â Žâ â â žâ Šâ â ‡â ‡â ½" }, { "input": "spats", "output": "â Žâ â â žâ Ž" }, { "input": "spatted", "output": "â Žâ â â žâ žâ «" }, { "input": "spatter", "output": "â Žâ â â žâ žâ »" }, { "input": "spattered", "output": "â Žâ â â žâ žâ »â «" }, { "input": "spattering", "output": "â Žâ â â žâ žâ »â ¬" }, { "input": "spatters", "output": "â Žâ â â žâ žâ »â Ž" }, { "input": "spatting", "output": "â Žâ â â žâ žâ ¬" }, { "input": "spatula", "output": "â Žâ â â žâ ¥â ‡â " }, { "input": "spatulas", "output": "â Žâ â â žâ ¥â ‡â â Ž" }, { "input": "spawn", "output": "â Žâ â â ºâ " }, { "input": "spawned", "output": "â Žâ â â ºâ â «" }, { "input": "spawning", "output": "â Žâ â â ºâ â ¬" }, { "input": "spawns", "output": "â Žâ â â ºâ â Ž" }, { "input": "spay", "output": "â Žâ â â ½" }, { "input": "spayed", "output": "â Žâ â â ½â «" }, { "input": "spaying", "output": "â Žâ â â ½â ¬" }, { "input": "spays", "output": "â Žâ â â ½â Ž" }, { "input": "speak", "output": "â Žâ â ‚â …" }, { "input": "speakeasies", "output": "â Žâ â ‚â …â ‚â Žâ Šâ ‘â Ž" }, { "input": "speakeasy", "output": "â Žâ â ‚â …â ‚â Žâ ½" }, { "input": "speaker", "output": "â Žâ â ‚â …â »" }, { "input": "speakers", "output": "â Žâ â ‚⠅⠻⠎" }, { "input": "speaking", "output": "â Žâ â ‚â …â ¬" }, { "input": "speaks", "output": "â Žâ â ‚â …â Ž" }, { "input": "spear", "output": "â Žâ â ‘â œ" }, { "input": "speared", "output": "â Žâ â ‘⠜⠫" }, { "input": "spearhead", "output": "â Žâ â ‘⠜⠓⠂⠙" }, { "input": "spearheaded", "output": "â Žâ â ‘⠜⠓⠂⠙⠫" }, { "input": "spearheading", "output": "â Žâ â ‘⠜⠓⠂⠙⠬" }, { "input": "spearheads", "output": "â Žâ â ‘⠜⠓⠂⠙⠎" }, { "input": "spearing", "output": "â Žâ â ‘⠜⠬" }, { "input": "spearmint", "output": "â Žâ â ‘â œâ â ”â ž" }, { "input": "spears", "output": "â Žâ â ‘⠜⠎" }, { "input": "spec", "output": "â Žâ â ‘â ‰" }, { "input": "specced", "output": "â Žâ â ‘â ’â «" }, { "input": "speccing", "output": "â Žâ â ‘â ’â ¬" }, { "input": "special", "output": "â Žâ â ‘⠉⠊â â ‡" }, { "input": "specialist", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ Œ" }, { "input": "specialists", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ Œâ Ž" }, { "input": "specialization", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ â °â " }, { "input": "specializations", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ â °â â Ž" }, { "input": "specialize", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ ‘" }, { "input": "specialized", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ «" }, { "input": "specializes", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "specializing", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ ¬" }, { "input": "specially", "output": "â Žâ â ‘⠉⠊â â ‡â ‡â ½" }, { "input": "specials", "output": "â Žâ â ‘⠉⠊â â ‡â Ž" }, { "input": "specialties", "output": "â Žâ â ‘⠉⠊â â ‡â žâ Šâ ‘â Ž" }, { "input": "specialty", "output": "â Žâ â ‘⠉⠊â â ‡â žâ ½" }, { "input": "specie", "output": "â Žâ â ‘⠉⠊⠑" }, { "input": "species", "output": "â Žâ â ‘⠉⠊⠑⠎" }, { "input": "specifiable", "output": "â Žâ â ‘⠉⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "specific", "output": "â Žâ â ‘⠉⠊⠋⠊⠉" }, { "input": "specifically", "output": "â Žâ â ‘⠉⠊⠋⠊⠉â â ‡â ‡â ½" }, { "input": "specification", "output": "â Žâ â ‘⠉⠊⠋⠊⠉â â °â " }, { "input": "specifications", "output": "â Žâ â ‘⠉⠊⠋⠊⠉â â °â â Ž" }, { "input": "specifics", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠎" }, { "input": "specified", "output": "â Žâ â ‘⠉⠊⠋⠊⠫" }, { "input": "specifier", "output": "â Žâ â ‘⠉⠊⠋⠊⠻" }, { "input": "specifiers", "output": "â Žâ â ‘⠉⠊⠋⠊⠻⠎" }, { "input": "specifies", "output": "â Žâ â ‘⠉⠊⠋⠊⠑⠎" }, { "input": "specify", "output": "â Žâ â ‘⠉⠊⠋⠽" }, { "input": "specifying", "output": "â Žâ â ‘⠉⠊⠋⠽⠬" }, { "input": "specimen", "output": "â Žâ â ‘⠉⠊â â ¢" }, { "input": "specimens", "output": "â Žâ â ‘⠉⠊â â ¢â Ž" }, { "input": "specious", "output": "â Žâ â ‘⠉⠊⠳⠎" }, { "input": "speciously", "output": "â Žâ â ‘⠉⠊⠳⠎⠇⠽" }, { "input": "speck", "output": "â Žâ â ‘⠉⠅" }, { "input": "specked", "output": "â Žâ â ‘⠉⠅⠫" }, { "input": "specking", "output": "â Žâ â ‘⠉⠅⠬" }, { "input": "speckle", "output": "â Žâ â ‘⠉⠅⠇⠑" }, { "input": "speckled", "output": "â Žâ â ‘⠉⠅⠇⠫" }, { "input": "speckles", "output": "â Žâ â ‘⠉⠅⠇⠑⠎" }, { "input": "speckling", "output": "â Žâ â ‘⠉⠅⠇⠬" }, { "input": "specks", "output": "â Žâ â ‘⠉⠅⠎" }, { "input": "specs", "output": "â Žâ â ‘⠉⠎" }, { "input": "spectacle", "output": "â Žâ â ‘⠉⠞â â ‰â ‡â ‘" }, { "input": "spectacles", "output": "â Žâ â ‘⠉⠞â â ‰â ‡â ‘â Ž" }, { "input": "spectacular", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œ" }, { "input": "spectacularly", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œâ ‡â ½" }, { "input": "spectaculars", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œâ Ž" }, { "input": "spectator", "output": "â Žâ â ‘⠉⠞â â žâ •â —" }, { "input": "spectators", "output": "â Žâ â ‘⠉⠞â â žâ •â —â Ž" }, { "input": "specter", "output": "â Žâ â ‘⠉⠞⠻" }, { "input": "specters", "output": "â Žâ â ‘⠉⠞⠻⠎" }, { "input": "spectra", "output": "â Žâ â ‘⠉⠞⠗â " }, { "input": "spectral", "output": "â Žâ â ‘⠉⠞⠗â â ‡" }, { "input": "spectroscope", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ‘" }, { "input": "spectroscopes", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "spectroscopic", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â Šâ ‰" }, { "input": "spectroscopy", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ½" }, { "input": "spectrum", "output": "â Žâ â ‘⠉⠞⠗⠥â " }, { "input": "spectrums", "output": "â Žâ â ‘⠉⠞⠗⠥â â Ž" }, { "input": "speculate", "output": "â Žâ â ‘⠉⠥⠇â â žâ ‘" }, { "input": "speculated", "output": "â Žâ â ‘⠉⠥⠇â â žâ «" }, { "input": "speculates", "output": "â Žâ â ‘⠉⠥⠇â â žâ ‘â Ž" }, { "input": "speculating", "output": "â Žâ â ‘⠉⠥⠇â â žâ ¬" }, { "input": "speculation", "output": "â Žâ â ‘⠉⠥⠇â â °â " }, { "input": "speculations", "output": "â Žâ â ‘⠉⠥⠇â â °â â Ž" }, { "input": "speculative", "output": "â Žâ â ‘⠉⠥⠇â â žâ Šâ §â ‘" }, { "input": "speculator", "output": "â Žâ â ‘⠉⠥⠇â â žâ •â —" }, { "input": "speculators", "output": "â Žâ â ‘⠉⠥⠇â â žâ •â —â Ž" }, { "input": "sped", "output": "â Žâ â «" }, { "input": "speech", "output": "â Žâ â ‘â ‘â ¡" }, { "input": "speeches", "output": "â Žâ â ‘â ‘â ¡â ‘â Ž" }, { "input": "speechless", "output": "â Žâ â ‘⠑⠡⠨⠎" }, { "input": "speed", "output": "â Žâ â ‘â «" }, { "input": "speedboat", "output": "â Žâ â ‘⠫⠃⠕â â ž" }, { "input": "speedboats", "output": "â Žâ â ‘⠫⠃⠕â â žâ Ž" }, { "input": "speeded", "output": "â Žâ â ‘â «â «" }, { "input": "speeder", "output": "â Žâ â ‘â «â »" }, { "input": "speeders", "output": "â Žâ â ‘⠫⠻⠎" }, { "input": "speedier", "output": "â Žâ â ‘â «â Šâ »" }, { "input": "speediest", "output": "â Žâ â ‘â «â Šâ ‘â Œ" }, { "input": "speedily", "output": "â Žâ â ‘⠫⠊⠇⠽" }, { "input": "speeding", "output": "â Žâ â ‘â «â ¬" }, { "input": "speedometer", "output": "â Žâ â ‘â «â •â â ‘â žâ »" }, { "input": "speedometers", "output": "â Žâ â ‘â «â •â â ‘⠞⠻⠎" }, { "input": "speeds", "output": "â Žâ â ‘â «â Ž" }, { "input": "speedster", "output": "â Žâ â ‘⠫⠌⠻" }, { "input": "speedsters", "output": "â Žâ â ‘⠫⠌⠻⠎" }, { "input": "speedup", "output": "â Žâ â ‘â «â ¥â " }, { "input": "speedups", "output": "â Žâ â ‘â «â ¥â â Ž" }, { "input": "speedway", "output": "â Žâ â ‘â «â ºâ â ½" }, { "input": "speedways", "output": "â Žâ â ‘â «â ºâ â ½â Ž" }, { "input": "speedy", "output": "â Žâ â ‘â «â ½" }, { "input": "spell", "output": "â Žâ â ‘⠇⠇" }, { "input": "spellbind", "output": "â Žâ â ‘⠇⠇⠃⠔⠙" }, { "input": "spellbinder", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠻" }, { "input": "spellbinders", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠻⠎" }, { "input": "spellbinding", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠬" }, { "input": "spellbinds", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠎" }, { "input": "spellbound", "output": "â Žâ â ‘⠇⠇⠃⠨⠙" }, { "input": "spelled", "output": "â Žâ â ‘⠇⠇⠫" }, { "input": "speller", "output": "â Žâ â ‘⠇⠇⠻" }, { "input": "spellers", "output": "â Žâ â ‘⠇⠇⠻⠎" }, { "input": "spelling", "output": "â Žâ â ‘⠇⠇⠬" }, { "input": "spellings", "output": "â Žâ â ‘⠇⠇⠬⠎" }, { "input": "spells", "output": "â Žâ â ‘⠇⠇⠎" }, { "input": "spelt", "output": "â Žâ â ‘⠇⠞" }, { "input": "spelunker", "output": "â Žâ â ‘⠇⠥â â …â »" }, { "input": "spelunkers", "output": "â Žâ â ‘⠇⠥â â …⠻⠎" }, { "input": "spend", "output": "â Žâ â ¢â ™" }, { "input": "spender", "output": "â Žâ â ¢â ™â »" }, { "input": "spenders", "output": "â Žâ â ¢â ™â »â Ž" }, { "input": "spending", "output": "â Žâ â ¢â ™â ¬" }, { "input": "spends", "output": "â Žâ â ¢â ™â Ž" }, { "input": "spendthrift", "output": "â Žâ â ¢â ™â ¹â —â Šâ ‹â ž" }, { "input": "spendthrifts", "output": "â Žâ â ¢â ™â ¹â —â Šâ ‹â žâ Ž" }, { "input": "spent", "output": "â Žâ â ¢â ž" }, { "input": "sperm", "output": "â Žâ â »â " }, { "input": "spermatozoa", "output": "â Žâ â »â â â žâ •⠵⠕â " }, { "input": "spermatozoon", "output": "â Žâ â »â â â žâ •⠵⠕⠕â " }, { "input": "spermicide", "output": "â Žâ â »â â Šâ ‰â Šâ ™â ‘" }, { "input": "spermicides", "output": "â Žâ â »â â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "sperms", "output": "â Žâ â »â â Ž" }, { "input": "spew", "output": "â Žâ â ‘â º" }, { "input": "spewed", "output": "â Žâ â ‘⠺⠫" }, { "input": "spewing", "output": "â Žâ â ‘⠺⠬" }, { "input": "spews", "output": "â Žâ â ‘⠺⠎" }, { "input": "sphere", "output": "â Žâ â â “" }, { "input": "spheres", "output": "â Žâ â â “â Ž" }, { "input": "spherical", "output": "â Žâ â “⠻⠊⠉â â ‡" }, { "input": "spheroid", "output": "â Žâ â “⠻⠕⠊⠙" }, { "input": "spheroidal", "output": "â Žâ â “⠻⠕⠊⠙â â ‡" }, { "input": "spheroids", "output": "â Žâ â “⠻⠕⠊⠙⠎" }, { "input": "sphincter", "output": "â Žâ â “⠔⠉⠞⠻" }, { "input": "sphincters", "output": "â Žâ â “⠔⠉⠞⠻⠎" }, { "input": "sphinges", "output": "â Žâ â “⠬⠑⠎" }, { "input": "sphinx", "output": "â Žâ â “⠔⠭" }, { "input": "sphinxes", "output": "â Žâ â “⠔⠭⠑⠎" }, { "input": "spice", "output": "â Žâ â Šâ ‰â ‘" }, { "input": "spiced", "output": "â Žâ â Šâ ‰â «" }, { "input": "spices", "output": "â Žâ â Šâ ‰â ‘â Ž" }, { "input": "spicier", "output": "â Žâ â Šâ ‰â Šâ »" }, { "input": "spiciest", "output": "â Žâ â Šâ ‰â Šâ ‘â Œ" }, { "input": "spiciness", "output": "â Žâ â Šâ ‰â Šâ °â Ž" }, { "input": "spicing", "output": "â Žâ â Šâ ‰â ¬" }, { "input": "spicy", "output": "â Žâ â Šâ ‰â ½" }, { "input": "spider", "output": "â Žâ â Šâ ™â »" }, { "input": "spiderier", "output": "â Žâ â Šâ ™â »â Šâ »" }, { "input": "spideriest", "output": "â Žâ â Šâ ™â »â Šâ ‘â Œ" }, { "input": "spiders", "output": "â Žâ â Šâ ™â »â Ž" }, { "input": "spidery", "output": "â Žâ â Šâ ™â »â ½" }, { "input": "spied", "output": "â Žâ â Šâ «" }, { "input": "spiel", "output": "â Žâ â Šâ ‘â ‡" }, { "input": "spieled", "output": "â Žâ â Šâ ‘⠇⠫" }, { "input": "spieling", "output": "â Žâ â Šâ ‘⠇⠬" }, { "input": "spiels", "output": "â Žâ â Šâ ‘⠇⠎" }, { "input": "spies", "output": "â Žâ â Šâ ‘â Ž" }, { "input": "spiffier", "output": "â Žâ â Šâ –â Šâ »" }, { "input": "spiffiest", "output": "â Žâ â Šâ –â Šâ ‘â Œ" }, { "input": "spiffy", "output": "â Žâ â Šâ –â ½" }, { "input": "spigot", "output": "â Žâ â Šâ ›â •â ž" }, { "input": "spigots", "output": "â Žâ â Šâ ›â •â žâ Ž" }, { "input": "spike", "output": "â Žâ â Šâ …â ‘" }, { "input": "spiked", "output": "â Žâ â Šâ …â «" }, { "input": "spikes", "output": "â Žâ â Šâ …â ‘â Ž" }, { "input": "spikier", "output": "â Žâ â Šâ …â Šâ »" }, { "input": "spikiest", "output": "â Žâ â Šâ …â Šâ ‘â Œ" }, { "input": "spiking", "output": "â Žâ â Šâ …â ¬" }, { "input": "spiky", "output": "â Žâ â Šâ …â ½" }, { "input": "spill", "output": "â Žâ â Šâ ‡â ‡" }, { "input": "spillage", "output": "â Žâ â Šâ ‡â ‡â â ›â ‘" }, { "input": "spillages", "output": "â Žâ â Šâ ‡â ‡â â ›â ‘â Ž" }, { "input": "spilled", "output": "â Žâ â Šâ ‡â ‡â «" }, { "input": "spilling", "output": "â Žâ â Šâ ‡â ‡â ¬" }, { "input": "spills", "output": "â Žâ â Šâ ‡â ‡â Ž" }, { "input": "spillway", "output": "â Žâ â Šâ ‡â ‡â ºâ â ½" }, { "input": "spillways", "output": "â Žâ â Šâ ‡â ‡â ºâ â ½â Ž" }, { "input": "spilt", "output": "â Žâ â Šâ ‡â ž" }, { "input": "spin", "output": "â Žâ â ”" }, { "input": "spinach", "output": "â Žâ â ”â â ¡" }, { "input": "spinal", "output": "â Žâ â ”â â ‡" }, { "input": "spinals", "output": "â Žâ â ”â â ‡â Ž" }, { "input": "spindle", "output": "â Žâ â ”⠙⠇⠑" }, { "input": "spindled", "output": "â Žâ â ”⠙⠇⠫" }, { "input": "spindles", "output": "â Žâ â ”⠙⠇⠑⠎" }, { "input": "spindlier", "output": "â Žâ â ”⠙⠇⠊⠻" }, { "input": "spindliest", "output": "â Žâ â ”⠙⠇⠊⠑⠌" }, { "input": "spindling", "output": "â Žâ â ”⠙⠇⠬" }, { "input": "spindly", "output": "â Žâ â ”⠙⠇⠽" }, { "input": "spine", "output": "â Žâ â ”â ‘" }, { "input": "spineless", "output": "â Žâ â ”⠑⠨⠎" }, { "input": "spines", "output": "â Žâ â ”â ‘â Ž" }, { "input": "spinet", "output": "â Žâ â ”â ‘â ž" }, { "input": "spinets", "output": "â Žâ â ”â ‘â žâ Ž" }, { "input": "spinier", "output": "â Žâ â ”â Šâ »" }, { "input": "spiniest", "output": "â Žâ â ”â Šâ ‘â Œ" }, { "input": "spinnaker", "output": "â Žâ â ”â â â …â »" }, { "input": "spinnakers", "output": "â Žâ â ”â â â …⠻⠎" }, { "input": "spinner", "output": "â Žâ â ”â â »" }, { "input": "spinners", "output": "â Žâ â ”â â »â Ž" }, { "input": "spinning", "output": "â Žâ â ”â â ¬" }, { "input": "spinoff", "output": "â Žâ â ”â ·â ‹" }, { "input": "spinoffs", "output": "â Žâ â ”â ·â ‹â Ž" }, { "input": "spins", "output": "â Žâ â ”â Ž" }, { "input": "spinster", "output": "â Žâ â ”⠌⠻" }, { "input": "spinsterhood", "output": "â Žâ â ”⠌⠻⠓⠕⠕⠙" }, { "input": "spinsters", "output": "â Žâ â ”⠌⠻⠎" }, { "input": "spiny", "output": "â Žâ â ”â ½" }, { "input": "spiraea", "output": "â Žâ â Šâ —â â ‘â " }, { "input": "spiraeas", "output": "â Žâ â Šâ —â â ‚â Ž" }, { "input": "spiral", "output": "â Žâ â Šâ —â â ‡" }, { "input": "spiraled", "output": "â Žâ â Šâ —â â ‡â «" }, { "input": "spiraling", "output": "â Žâ â Šâ —â â ‡â ¬" }, { "input": "spiralled", "output": "â Žâ â Šâ —â â ‡â ‡â «" }, { "input": "spiralling", "output": "â Žâ â Šâ —â â ‡â ‡â ¬" }, { "input": "spirally", "output": "â Žâ â Šâ —â â ‡â ‡â ½" }, { "input": "spirals", "output": "â Žâ â Šâ —â â ‡â Ž" }, { "input": "spire", "output": "â Žâ â Šâ —â ‘" }, { "input": "spirea", "output": "â Žâ â Šâ —â ‘â " }, { "input": "spireas", "output": "â Žâ â Šâ —â ‚â Ž" }, { "input": "spires", "output": "â Žâ â Šâ —â ‘â Ž" }, { "input": "spirit", "output": "⠸⠎" }, { "input": "spirited", "output": "⠸⠎⠫" }, { "input": "spiriting", "output": "⠸⠎⠬" }, { "input": "spiritless", "output": "⠸⠎⠨⠎" }, { "input": "spirits", "output": "⠸⠎⠎" }, { "input": "spiritual", "output": "⠸⠎⠥â â ‡" }, { "input": "spiritualism", "output": "⠸⠎⠥â â ‡â Šâ Žâ " }, { "input": "spiritualist", "output": "⠸⠎⠥â â ‡â Šâ Œ" }, { "input": "spiritualistic", "output": "⠸⠎⠥â â ‡â Šâ Œâ Šâ ‰" }, { "input": "spiritualists", "output": "⠸⠎⠥â â ‡â Šâ Œâ Ž" }, { "input": "spirituality", "output": "⠸⠎⠥â â ‡â °â ½" }, { "input": "spiritually", "output": "⠸⠎⠥â â ‡â ‡â ½" }, { "input": "spirituals", "output": "⠸⠎⠥â â ‡â Ž" }, { "input": "spirituous", "output": "⠸⠎⠥⠳⠎" }, { "input": "spit", "output": "â Žâ â Šâ ž" }, { "input": "spitball", "output": "â Žâ â Šâ žâ ƒâ â ‡â ‡" }, { "input": "spitballs", "output": "â Žâ â Šâ žâ ƒâ â ‡â ‡â Ž" }, { "input": "spite", "output": "â Žâ â Šâ žâ ‘" }, { "input": "spited", "output": "â Žâ â Šâ žâ «" }, { "input": "spiteful", "output": "â Žâ â Šâ žâ ‘â °â ‡" }, { "input": "spitefuller", "output": "â Žâ â Šâ žâ ‘⠰⠇⠇⠻" }, { "input": "spitefullest", "output": "â Žâ â Šâ žâ ‘⠰⠇⠇⠑⠌" }, { "input": "spitefully", "output": "â Žâ â Šâ žâ ‘⠰⠇⠇⠽" }, { "input": "spitefulness", "output": "â Žâ â Šâ žâ ‘⠰⠇⠰⠎" }, { "input": "spites", "output": "â Žâ â Šâ žâ ‘â Ž" }, { "input": "spitfire", "output": "â Žâ â Šâ žâ ‹â Šâ —â ‘" }, { "input": "spitfires", "output": "â Žâ â Šâ žâ ‹â Šâ —â ‘â Ž" }, { "input": "spiting", "output": "â Žâ â Šâ žâ ¬" }, { "input": "spits", "output": "â Žâ â Šâ žâ Ž" }, { "input": "spitted", "output": "â Žâ â Šâ žâ žâ «" }, { "input": "spitting", "output": "â Žâ â Šâ žâ žâ ¬" }, { "input": "spittle", "output": "â Žâ â Šâ žâ žâ ‡â ‘" }, { "input": "spittoon", "output": "â Žâ â Šâ žâ žâ •â •â " }, { "input": "spittoons", "output": "â Žâ â Šâ žâ žâ •â •â â Ž" }, { "input": "splash", "output": "â Žâ â ‡â â ©" }, { "input": "splashdown", "output": "â Žâ â ‡â â ©â ™â ªâ " }, { "input": "splashdowns", "output": "â Žâ â ‡â â ©â ™â ªâ â Ž" }, { "input": "splashed", "output": "â Žâ â ‡â â ©â «" }, { "input": "splashes", "output": "â Žâ â ‡â â ©â ‘â Ž" }, { "input": "splashier", "output": "â Žâ â ‡â â ©â Šâ »" }, { "input": "splashiest", "output": "â Žâ â ‡â â ©â Šâ ‘â Œ" }, { "input": "splashing", "output": "â Žâ â ‡â â ©â ¬" }, { "input": "splashy", "output": "â Žâ â ‡â â ©â ½" }, { "input": "splat", "output": "â Žâ â ‡â â ž" }, { "input": "splats", "output": "â Žâ â ‡â â žâ Ž" }, { "input": "splatted", "output": "â Žâ â ‡â â žâ žâ «" }, { "input": "splatter", "output": "â Žâ â ‡â â žâ žâ »" }, { "input": "splattered", "output": "â Žâ â ‡â â žâ žâ »â «" }, { "input": "splattering", "output": "â Žâ â ‡â â žâ žâ »â ¬" }, { "input": "splatters", "output": "â Žâ â ‡â â žâ žâ »â Ž" }, { "input": "splatting", "output": "â Žâ â ‡â â žâ žâ ¬" }, { "input": "splay", "output": "â Žâ â ‡â â ½" }, { "input": "splayed", "output": "â Žâ â ‡â â ½â «" }, { "input": "splaying", "output": "â Žâ â ‡â â ½â ¬" }, { "input": "splays", "output": "â Žâ â ‡â â ½â Ž" }, { "input": "spleen", "output": "â Žâ â ‡â ‘â ¢" }, { "input": "spleens", "output": "â Žâ â ‡â ‘⠢⠎" }, { "input": "splendid", "output": "â Žâ â ‡â ¢â ™â Šâ ™" }, { "input": "splendider", "output": "â Žâ â ‡â ¢â ™â Šâ ™â »" }, { "input": "splendidest", "output": "â Žâ â ‡â ¢â ™â Šâ ™â ‘â Œ" }, { "input": "splendidly", "output": "â Žâ â ‡â ¢â ™â Šâ ™â ‡â ½" }, { "input": "splendor", "output": "â Žâ â ‡â ¢â ™â •â —" }, { "input": "splenetic", "output": "â Žâ â ‡â ¢â ‘â žâ Šâ ‰" }, { "input": "splice", "output": "â Žâ â ‡â Šâ ‰â ‘" }, { "input": "spliced", "output": "â Žâ â ‡â Šâ ‰â «" }, { "input": "splicer", "output": "â Žâ â ‡â Šâ ‰â »" }, { "input": "splicers", "output": "â Žâ â ‡â Šâ ‰â »â Ž" }, { "input": "splices", "output": "â Žâ â ‡â Šâ ‰â ‘â Ž" }, { "input": "splicing", "output": "â Žâ â ‡â Šâ ‰â ¬" }, { "input": "spline", "output": "â Žâ â ‡â ”â ‘" }, { "input": "splines", "output": "â Žâ â ‡â ”â ‘â Ž" }, { "input": "splint", "output": "â Žâ â ‡â ”â ž" }, { "input": "splinted", "output": "â Žâ â ‡â ”â žâ «" }, { "input": "splinter", "output": "â Žâ â ‡â ”â žâ »" }, { "input": "splintered", "output": "â Žâ â ‡â ”⠞⠻⠫" }, { "input": "splintering", "output": "â Žâ â ‡â ”⠞⠻⠬" }, { "input": "splinters", "output": "â Žâ â ‡â ”⠞⠻⠎" }, { "input": "splinting", "output": "â Žâ â ‡â ”â žâ ¬" }, { "input": "splints", "output": "â Žâ â ‡â ”â žâ Ž" }, { "input": "split", "output": "â Žâ â ‡â Šâ ž" }, { "input": "splits", "output": "â Žâ â ‡â Šâ žâ Ž" }, { "input": "splitting", "output": "â Žâ â ‡â Šâ žâ žâ ¬" }, { "input": "splittings", "output": "â Žâ â ‡â Šâ žâ žâ ¬â Ž" }, { "input": "splodge", "output": "â Žâ â ‡â •⠙⠛⠑" }, { "input": "splotch", "output": "â Žâ â ‡â •â žâ ¡" }, { "input": "splotched", "output": "â Žâ â ‡â •â žâ ¡â «" }, { "input": "splotches", "output": "â Žâ â ‡â •â žâ ¡â ‘â Ž" }, { "input": "splotchier", "output": "â Žâ â ‡â •â žâ ¡â Šâ »" }, { "input": "splotchiest", "output": "â Žâ â ‡â •â žâ ¡â Šâ ‘â Œ" }, { "input": "splotching", "output": "â Žâ â ‡â •â žâ ¡â ¬" }, { "input": "splotchy", "output": "â Žâ â ‡â •â žâ ¡â ½" }, { "input": "splurge", "output": "â Žâ â ‡â ¥â —⠛⠑" }, { "input": "splurged", "output": "â Žâ â ‡â ¥â —⠛⠫" }, { "input": "splurges", "output": "â Žâ â ‡â ¥â —⠛⠑⠎" }, { "input": "splurging", "output": "â Žâ â ‡â ¥â —⠛⠬" }, { "input": "splutter", "output": "â Žâ â ‡â ¥â žâ žâ »" }, { "input": "spluttered", "output": "â Žâ â ‡â ¥â žâ žâ »â «" }, { "input": "spluttering", "output": "â Žâ â ‡â ¥â žâ žâ »â ¬" }, { "input": "splutters", "output": "â Žâ â ‡â ¥â žâ žâ »â Ž" }, { "input": "spoil", "output": "â Žâ â •â Šâ ‡" }, { "input": "spoilage", "output": "â Žâ â •â Šâ ‡â â ›â ‘" }, { "input": "spoiled", "output": "â Žâ â •⠊⠇⠫" }, { "input": "spoiler", "output": "â Žâ â •⠊⠇⠻" }, { "input": "spoilers", "output": "â Žâ â •⠊⠇⠻⠎" }, { "input": "spoiling", "output": "â Žâ â •⠊⠇⠬" }, { "input": "spoils", "output": "â Žâ â •⠊⠇⠎" }, { "input": "spoilsport", "output": "â Žâ â •⠊⠇⠎â â •â —â ž" }, { "input": "spoilsports", "output": "â Žâ â •⠊⠇⠎â â •â —â žâ Ž" }, { "input": "spoilt", "output": "â Žâ â •⠊⠇⠞" }, { "input": "spoke", "output": "â Žâ â •â …â ‘" }, { "input": "spoken", "output": "â Žâ â •â …â ¢" }, { "input": "spokes", "output": "â Žâ â •â …â ‘â Ž" }, { "input": "spokesman", "output": "â Žâ â •â …â ‘â Žâ â â " }, { "input": "spokesmen", "output": "â Žâ â •â …â ‘â Žâ â ¢" }, { "input": "spokespeople", "output": "â Žâ â •â …â ‘â Žâ â ‘â •â â ‡â ‘" }, { "input": "spokesperson", "output": "â Žâ â •â …â ‘â Žâ â »â Žâ •â " }, { "input": "spokespersons", "output": "â Žâ â •â …â ‘â Žâ â »â Žâ •â â Ž" }, { "input": "spokeswoman", "output": "â Žâ â •⠅⠑⠎⠺⠕â â â " }, { "input": "spokeswomen", "output": "â Žâ â •⠅⠑⠎⠺⠕â â ¢" }, { "input": "spoliation", "output": "â Žâ â •⠇⠊â â °â " }, { "input": "sponge", "output": "â Žâ â °â ›â ‘" }, { "input": "sponged", "output": "â Žâ â °â ›â «" }, { "input": "sponger", "output": "â Žâ â °â ›â »" }, { "input": "spongers", "output": "â Žâ â °â ›â »â Ž" }, { "input": "sponges", "output": "â Žâ â °â ›â ‘â Ž" }, { "input": "spongier", "output": "â Žâ â °â ›â Šâ »" }, { "input": "spongiest", "output": "â Žâ â °â ›â Šâ ‘â Œ" }, { "input": "sponging", "output": "â Žâ â °â ›â ¬" }, { "input": "spongy", "output": "â Žâ â °â ›â ½" }, { "input": "sponsor", "output": "â Žâ â •â â Žâ •â —" }, { "input": "sponsored", "output": "â Žâ â •â â Žâ •â —â «" }, { "input": "sponsoring", "output": "â Žâ â •â â Žâ •â —â ¬" }, { "input": "sponsors", "output": "â Žâ â •â â Žâ •â —â Ž" }, { "input": "sponsorship", "output": "â Žâ â •â â Žâ •â —â ©â Šâ " }, { "input": "spontaneity", "output": "â Žâ â •â â žâ â â ‘â °â ½" }, { "input": "spontaneous", "output": "â Žâ â •â â žâ â â ‘⠳⠎" }, { "input": "spontaneously", "output": "â Žâ â •â â žâ â â ‘⠳⠎⠇⠽" }, { "input": "spoof", "output": "â Žâ â •â ·" }, { "input": "spoofed", "output": "â Žâ â •â ·â «" }, { "input": "spoofing", "output": "â Žâ â •â ·â ¬" }, { "input": "spoofs", "output": "â Žâ â •â ·â Ž" }, { "input": "spook", "output": "â Žâ â •â •â …" }, { "input": "spooked", "output": "â Žâ â •â •â …â «" }, { "input": "spookier", "output": "â Žâ â •â •â …â Šâ »" }, { "input": "spookiest", "output": "â Žâ â •â •â …â Šâ ‘â Œ" }, { "input": "spooking", "output": "â Žâ â •â •â …â ¬" }, { "input": "spooks", "output": "â Žâ â •â •â …â Ž" }, { "input": "spooky", "output": "â Žâ â •â •â …â ½" }, { "input": "spool", "output": "â Žâ â •â •â ‡" }, { "input": "spooled", "output": "â Žâ â •⠕⠇⠫" }, { "input": "spooling", "output": "â Žâ â •⠕⠇⠬" }, { "input": "spools", "output": "â Žâ â •⠕⠇⠎" }, { "input": "spoon", "output": "â Žâ â •â •â " }, { "input": "spoonbill", "output": "â Žâ â •â •â â ƒâ Šâ ‡â ‡" }, { "input": "spoonbills", "output": "â Žâ â •â •â â ƒâ Šâ ‡â ‡â Ž" }, { "input": "spooned", "output": "â Žâ â •â •â â «" }, { "input": "spoonerism", "output": "â Žâ â •â •â â »â Šâ Žâ " }, { "input": "spoonerisms", "output": "â Žâ â •â •â â »â Šâ Žâ â Ž" }, { "input": "spoonful", "output": "â Žâ â •â •â â °â ‡" }, { "input": "spoonfuls", "output": "â Žâ â •â •â â °â ‡â Ž" }, { "input": "spooning", "output": "â Žâ â •â •â â ¬" }, { "input": "spoons", "output": "â Žâ â •â •â â Ž" }, { "input": "spoonsful", "output": "â Žâ â •â •â â Žâ °â ‡" }, { "input": "spoor", "output": "â Žâ â •â •â —" }, { "input": "spoored", "output": "â Žâ â •â •â —â «" }, { "input": "spooring", "output": "â Žâ â •â •â —â ¬" }, { "input": "spoors", "output": "â Žâ â •â •â —â Ž" }, { "input": "sporadic", "output": "â Žâ â •â —â â ™â Šâ ‰" }, { "input": "sporadically", "output": "â Žâ â •â —â â ™â Šâ ‰â â ‡â ‡â ½" }, { "input": "spore", "output": "â Žâ â •â —â ‘" }, { "input": "spored", "output": "â Žâ â •â —â «" }, { "input": "spores", "output": "â Žâ â •â —â ‘â Ž" }, { "input": "sporing", "output": "â Žâ â •â —â ¬" }, { "input": "sporran", "output": "â Žâ â •â —â —â â " }, { "input": "sport", "output": "â Žâ â •â —â ž" }, { "input": "sported", "output": "â Žâ â •â —â žâ «" }, { "input": "sportier", "output": "â Žâ â •â —â žâ Šâ »" }, { "input": "sportiest", "output": "â Žâ â •â —â žâ Šâ ‘â Œ" }, { "input": "sporting", "output": "â Žâ â •â —â žâ ¬" }, { "input": "sportive", "output": "â Žâ â •â —â žâ Šâ §â ‘" }, { "input": "sports", "output": "â Žâ â •â —â žâ Ž" }, { "input": "sportscast", "output": "â Žâ â •â —â žâ Žâ ‰â â Œ" }, { "input": "sportscaster", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ »" }, { "input": "sportscasters", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ »â Ž" }, { "input": "sportscasting", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ ¬" }, { "input": "sportscasts", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ Ž" }, { "input": "sportsman", "output": "â Žâ â •â —â žâ Žâ â â " }, { "input": "sportsmanlike", "output": "â Žâ â •â —â žâ Žâ â â â ‡â Šâ …â ‘" }, { "input": "sportsmanship", "output": "â Žâ â •â —â žâ Žâ â â â ©â Šâ " }, { "input": "sportsmen", "output": "â Žâ â •â —â žâ Žâ â ¢" }, { "input": "sportswear", "output": "â Žâ â •⠗⠞⠎⠺⠑⠜" }, { "input": "sportswoman", "output": "â Žâ â •⠗⠞⠎⠺⠕â â â " }, { "input": "sportswomen", "output": "â Žâ â •⠗⠞⠎⠺⠕â â ¢" }, { "input": "sporty", "output": "â Žâ â •â —â žâ ½" }, { "input": "spot", "output": "â Žâ â •â ž" }, { "input": "spotless", "output": "â Žâ â •⠞⠨⠎" }, { "input": "spotlessly", "output": "â Žâ â •⠞⠨⠎⠇⠽" }, { "input": "spotlessness", "output": "â Žâ â •⠞⠨⠎⠰⠎" }, { "input": "spotlight", "output": "â Žâ â •⠞⠇⠊⠣⠞" }, { "input": "spotlighted", "output": "â Žâ â •⠞⠇⠊⠣⠞⠫" }, { "input": "spotlighting", "output": "â Žâ â •⠞⠇⠊⠣⠞⠬" }, { "input": "spotlights", "output": "â Žâ â •⠞⠇⠊⠣⠞⠎" }, { "input": "spots", "output": "â Žâ â •â žâ Ž" }, { "input": "spotted", "output": "â Žâ â •â žâ žâ «" }, { "input": "spotter", "output": "â Žâ â •â žâ žâ »" }, { "input": "spotters", "output": "â Žâ â •⠞⠞⠻⠎" }, { "input": "spottier", "output": "â Žâ â •â žâ žâ Šâ »" }, { "input": "spottiest", "output": "â Žâ â •â žâ žâ Šâ ‘â Œ" }, { "input": "spottiness", "output": "â Žâ â •â žâ žâ Šâ °â Ž" }, { "input": "spotting", "output": "â Žâ â •â žâ žâ ¬" }, { "input": "spotty", "output": "â Žâ â •â žâ žâ ½" }, { "input": "spouse", "output": "â Žâ â ³â Žâ ‘" }, { "input": "spouses", "output": "â Žâ â ³â Žâ ‘â Ž" }, { "input": "spout", "output": "â Žâ â ³â ž" }, { "input": "spouted", "output": "â Žâ â ³â žâ «" }, { "input": "spouting", "output": "â Žâ â ³â žâ ¬" }, { "input": "spouts", "output": "â Žâ â ³â žâ Ž" }, { "input": "sprain", "output": "â Žâ â —â â ”" }, { "input": "sprained", "output": "â Žâ â —â â ”â «" }, { "input": "spraining", "output": "â Žâ â —â â ”â ¬" }, { "input": "sprains", "output": "â Žâ â —â â ”â Ž" }, { "input": "sprang", "output": "â Žâ â —â â â ›" }, { "input": "sprat", "output": "â Žâ â —â â ž" }, { "input": "sprats", "output": "â Žâ â —â â žâ Ž" }, { "input": "sprawl", "output": "â Žâ â —â â ºâ ‡" }, { "input": "sprawled", "output": "â Žâ â —â â ºâ ‡â «" }, { "input": "sprawling", "output": "â Žâ â —â â ºâ ‡â ¬" }, { "input": "sprawls", "output": "â Žâ â —â â ºâ ‡â Ž" }, { "input": "spray", "output": "â Žâ â —â â ½" }, { "input": "sprayed", "output": "â Žâ â —â â ½â «" }, { "input": "sprayer", "output": "â Žâ â —â â ½â »" }, { "input": "sprayers", "output": "â Žâ â —â â ½â »â Ž" }, { "input": "spraying", "output": "â Žâ â —â â ½â ¬" }, { "input": "sprays", "output": "â Žâ â —â â ½â Ž" }, { "input": "spread", "output": "â Žâ â —â ‚â ™" }, { "input": "spreader", "output": "â Žâ â —⠂⠙⠻" }, { "input": "spreaders", "output": "â Žâ â —⠂⠙⠻⠎" }, { "input": "spreading", "output": "â Žâ â —⠂⠙⠬" }, { "input": "spreads", "output": "â Žâ â —⠂⠙⠎" }, { "input": "spreadsheet", "output": "â Žâ â —⠂⠙⠩⠑⠑⠞" }, { "input": "spreadsheets", "output": "â Žâ â —⠂⠙⠩⠑⠑⠞⠎" }, { "input": "spree", "output": "â Žâ â —â ‘â ‘" }, { "input": "spreed", "output": "â Žâ â —â ‘â «" }, { "input": "spreeing", "output": "â Žâ â —â ‘â ‘â ¬" }, { "input": "sprees", "output": "â Žâ â —â ‘â ‘â Ž" }, { "input": "sprier", "output": "â Žâ â —â Šâ »" }, { "input": "spriest", "output": "â Žâ â —â Šâ ‘â Œ" }, { "input": "sprig", "output": "â Žâ â —â Šâ ›" }, { "input": "sprightlier", "output": "â Žâ â â —⠇⠊⠻" }, { "input": "sprightliest", "output": "â Žâ â â —⠇⠊⠑⠌" }, { "input": "sprightliness", "output": "â Žâ â â —⠇⠊⠰⠎" }, { "input": "sprightly", "output": "â Žâ â â —⠇⠽" }, { "input": "sprigs", "output": "â Žâ â —⠊⠛⠎" }, { "input": "spring", "output": "â Žâ â —â ¬" }, { "input": "springboard", "output": "â Žâ â —⠬⠃⠕⠜⠙" }, { "input": "springboards", "output": "â Žâ â —⠬⠃⠕⠜⠙⠎" }, { "input": "springier", "output": "â Žâ â —⠬⠊⠻" }, { "input": "springiest", "output": "â Žâ â —⠬⠊⠑⠌" }, { "input": "springiness", "output": "â Žâ â —⠬⠊⠰⠎" }, { "input": "springing", "output": "â Žâ â —⠬⠬" }, { "input": "springs", "output": "â Žâ â —⠬⠎" }, { "input": "springtime", "output": "â Žâ â —â ¬â â ž" }, { "input": "springy", "output": "â Žâ â —⠬⠽" }, { "input": "sprinkle", "output": "â Žâ â —⠔⠅⠇⠑" }, { "input": "sprinkled", "output": "â Žâ â —⠔⠅⠇⠫" }, { "input": "sprinkler", "output": "â Žâ â —⠔⠅⠇⠻" }, { "input": "sprinklers", "output": "â Žâ â —⠔⠅⠇⠻⠎" }, { "input": "sprinkles", "output": "â Žâ â —⠔⠅⠇⠑⠎" }, { "input": "sprinkling", "output": "â Žâ â —⠔⠅⠇⠬" }, { "input": "sprinklings", "output": "â Žâ â —⠔⠅⠇⠬⠎" }, { "input": "sprint", "output": "â Žâ â —⠔⠞" }, { "input": "sprinted", "output": "â Žâ â —⠔⠞⠫" }, { "input": "sprinter", "output": "â Žâ â —⠔⠞⠻" }, { "input": "sprinters", "output": "â Žâ â —⠔⠞⠻⠎" }, { "input": "sprinting", "output": "â Žâ â —⠔⠞⠬" }, { "input": "sprints", "output": "â Žâ â —⠔⠞⠎" }, { "input": "sprite", "output": "â Žâ â —â Šâ žâ ‘" }, { "input": "sprites", "output": "â Žâ â —â Šâ žâ ‘â Ž" }, { "input": "spritz", "output": "â Žâ â —â Šâ žâ µ" }, { "input": "spritzed", "output": "â Žâ â —⠊⠞⠵⠫" }, { "input": "spritzes", "output": "â Žâ â —⠊⠞⠵⠑⠎" }, { "input": "spritzing", "output": "â Žâ â —⠊⠞⠵⠬" }, { "input": "sprocket", "output": "â Žâ â —⠕⠉⠅⠑⠞" }, { "input": "sprockets", "output": "â Žâ â —⠕⠉⠅⠑⠞⠎" }, { "input": "sprout", "output": "â Žâ â —⠳⠞" }, { "input": "sprouted", "output": "â Žâ â —⠳⠞⠫" }, { "input": "sprouting", "output": "â Žâ â —⠳⠞⠬" }, { "input": "sprouts", "output": "â Žâ â —⠳⠞⠎" }, { "input": "spruce", "output": "â Žâ â —⠥⠉⠑" }, { "input": "spruced", "output": "â Žâ â —⠥⠉⠫" }, { "input": "sprucer", "output": "â Žâ â —⠥⠉⠻" }, { "input": "spruces", "output": "â Žâ â —⠥⠉⠑⠎" }, { "input": "sprucest", "output": "â Žâ â —⠥⠉⠑⠌" }, { "input": "sprucing", "output": "â Žâ â —⠥⠉⠬" }, { "input": "sprung", "output": "â Žâ â —â ¥â â ›" }, { "input": "spry", "output": "â Žâ â —â ½" }, { "input": "spryer", "output": "â Žâ â —⠽⠻" }, { "input": "spryest", "output": "â Žâ â —⠽⠑⠌" }, { "input": "spryly", "output": "â Žâ â —⠽⠇⠽" }, { "input": "spryness", "output": "â Žâ â —⠽⠰⠎" }, { "input": "spud", "output": "â Žâ â ¥â ™" }, { "input": "spuds", "output": "â Žâ â ¥â ™â Ž" }, { "input": "spume", "output": "â Žâ â ¥â â ‘" }, { "input": "spumed", "output": "â Žâ â ¥â â «" }, { "input": "spumes", "output": "â Žâ â ¥â â ‘â Ž" }, { "input": "spuming", "output": "â Žâ â ¥â â ¬" }, { "input": "spumone", "output": "â Žâ â ¥â â •â â ‘" }, { "input": "spumoni", "output": "â Žâ â ¥â â •â â Š" }, { "input": "spun", "output": "â Žâ â ¥â " }, { "input": "spunk", "output": "â Žâ â ¥â â …" }, { "input": "spunkier", "output": "â Žâ â ¥â â …â Šâ »" }, { "input": "spunkiest", "output": "â Žâ â ¥â â …â Šâ ‘â Œ" }, { "input": "spunky", "output": "â Žâ â ¥â â …â ½" }, { "input": "spur", "output": "â Žâ â ¥â —" }, { "input": "spurious", "output": "â Žâ â ¥â —⠊⠳⠎" }, { "input": "spuriously", "output": "â Žâ â ¥â —⠊⠳⠎⠇⠽" }, { "input": "spuriousness", "output": "â Žâ â ¥â —⠊⠳⠎⠰⠎" }, { "input": "spurn", "output": "â Žâ â ¥â —â " }, { "input": "spurned", "output": "â Žâ â ¥â —â â «" }, { "input": "spurning", "output": "â Žâ â ¥â —â â ¬" }, { "input": "spurns", "output": "â Žâ â ¥â —â â Ž" }, { "input": "spurred", "output": "â Žâ â ¥â —â —â «" }, { "input": "spurring", "output": "â Žâ â ¥â —â —â ¬" }, { "input": "spurs", "output": "â Žâ â ¥â —â Ž" }, { "input": "spurt", "output": "â Žâ â ¥â —â ž" }, { "input": "spurted", "output": "â Žâ â ¥â —â žâ «" }, { "input": "spurting", "output": "â Žâ â ¥â —â žâ ¬" }, { "input": "spurts", "output": "â Žâ â ¥â —â žâ Ž" }, { "input": "sputter", "output": "â Žâ â ¥â žâ žâ »" }, { "input": "sputtered", "output": "â Žâ â ¥â žâ žâ »â «" }, { "input": "sputtering", "output": "â Žâ â ¥â žâ žâ »â ¬" }, { "input": "sputters", "output": "â Žâ â ¥â žâ žâ »â Ž" }, { "input": "sputum", "output": "â Žâ â ¥â žâ ¥â " }, { "input": "spy", "output": "â Žâ â ½" }, { "input": "spyglass", "output": "â Žâ â ½â ›â ‡â â Žâ Ž" }, { "input": "spyglasses", "output": "â Žâ â ½â ›â ‡â â Žâ Žâ ‘â Ž" }, { "input": "spying", "output": "â Žâ â ½â ¬" }, { "input": "squab", "output": "â Žâ Ÿâ ¥â â ƒ" }, { "input": "squabble", "output": "â Žâ Ÿâ ¥â â †â ‡â ‘" }, { "input": "squabbled", "output": "â Žâ Ÿâ ¥â â †â ‡â «" }, { "input": "squabbles", "output": "â Žâ Ÿâ ¥â â †â ‡â ‘â Ž" }, { "input": "squabbling", "output": "â Žâ Ÿâ ¥â â †â ‡â ¬" }, { "input": "squabs", "output": "â Žâ Ÿâ ¥â â ƒâ Ž" }, { "input": "squad", "output": "â Žâ Ÿâ ¥â â ™" }, { "input": "squadron", "output": "â Žâ Ÿâ ¥â â ™â —â •â " }, { "input": "squadrons", "output": "â Žâ Ÿâ ¥â â ™â —â •â â Ž" }, { "input": "squads", "output": "â Žâ Ÿâ ¥â â ™â Ž" }, { "input": "squalid", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™" }, { "input": "squalider", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â »" }, { "input": "squalidest", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â ‘â Œ" }, { "input": "squall", "output": "â Žâ Ÿâ ¥â â ‡â ‡" }, { "input": "squalled", "output": "â Žâ Ÿâ ¥â â ‡â ‡â «" }, { "input": "squalling", "output": "â Žâ Ÿâ ¥â â ‡â ‡â ¬" }, { "input": "squalls", "output": "â Žâ Ÿâ ¥â â ‡â ‡â Ž" }, { "input": "squalor", "output": "â Žâ Ÿâ ¥â â ‡â •â —" }, { "input": "squander", "output": "⠎⠟⠥⠯⠻" }, { "input": "squandered", "output": "⠎⠟⠥⠯⠻⠫" }, { "input": "squandering", "output": "⠎⠟⠥⠯⠻⠬" }, { "input": "squanders", "output": "⠎⠟⠥⠯⠻⠎" }, { "input": "square", "output": "⠎⠟⠥⠜⠑" }, { "input": "squared", "output": "⠎⠟⠥⠜⠫" }, { "input": "squarely", "output": "⠎⠟⠥⠜⠑⠇⠽" }, { "input": "squareness", "output": "⠎⠟⠥⠜⠑⠰⠎" }, { "input": "squarer", "output": "⠎⠟⠥⠜⠻" }, { "input": "squares", "output": "⠎⠟⠥⠜⠑⠎" }, { "input": "squarest", "output": "⠎⠟⠥⠜⠑⠌" }, { "input": "squaring", "output": "⠎⠟⠥⠜⠬" }, { "input": "squash", "output": "â Žâ Ÿâ ¥â â ©" }, { "input": "squashed", "output": "â Žâ Ÿâ ¥â â ©â «" }, { "input": "squashes", "output": "â Žâ Ÿâ ¥â â ©â ‘â Ž" }, { "input": "squashier", "output": "â Žâ Ÿâ ¥â â ©â Šâ »" }, { "input": "squashiest", "output": "â Žâ Ÿâ ¥â â ©â Šâ ‘â Œ" }, { "input": "squashing", "output": "â Žâ Ÿâ ¥â â ©â ¬" }, { "input": "squashy", "output": "â Žâ Ÿâ ¥â â ©â ½" }, { "input": "squat", "output": "â Žâ Ÿâ ¥â â ž" }, { "input": "squats", "output": "â Žâ Ÿâ ¥â â žâ Ž" }, { "input": "squatted", "output": "â Žâ Ÿâ ¥â â žâ žâ «" }, { "input": "squatter", "output": "â Žâ Ÿâ ¥â â žâ žâ »" }, { "input": "squatters", "output": "â Žâ Ÿâ ¥â â žâ žâ »â Ž" }, { "input": "squattest", "output": "â Žâ Ÿâ ¥â â žâ žâ ‘â Œ" }, { "input": "squatting", "output": "â Žâ Ÿâ ¥â â žâ žâ ¬" }, { "input": "squaw", "output": "â Žâ Ÿâ ¥â â º" }, { "input": "squawk", "output": "â Žâ Ÿâ ¥â â ºâ …" }, { "input": "squawked", "output": "â Žâ Ÿâ ¥â â ºâ …â «" }, { "input": "squawking", "output": "â Žâ Ÿâ ¥â â ºâ …â ¬" }, { "input": "squawks", "output": "â Žâ Ÿâ ¥â â ºâ …â Ž" }, { "input": "squaws", "output": "â Žâ Ÿâ ¥â â ºâ Ž" }, { "input": "squeak", "output": "⠎⠟⠥⠂⠅" }, { "input": "squeaked", "output": "⠎⠟⠥⠂⠅⠫" }, { "input": "squeakier", "output": "⠎⠟⠥⠂⠅⠊⠻" }, { "input": "squeakiest", "output": "⠎⠟⠥⠂⠅⠊⠑⠌" }, { "input": "squeaking", "output": "⠎⠟⠥⠂⠅⠬" }, { "input": "squeaks", "output": "⠎⠟⠥⠂⠅⠎" }, { "input": "squeaky", "output": "⠎⠟⠥⠂⠅⠽" }, { "input": "squeal", "output": "⠎⠟⠥⠂⠇" }, { "input": "squealed", "output": "⠎⠟⠥⠂⠇⠫" }, { "input": "squealer", "output": "⠎⠟⠥⠂⠇⠻" }, { "input": "squealers", "output": "⠎⠟⠥⠂⠇⠻⠎" }, { "input": "squealing", "output": "⠎⠟⠥⠂⠇⠬" }, { "input": "squeals", "output": "⠎⠟⠥⠂⠇⠎" }, { "input": "squeamish", "output": "⠎⠟⠥⠂â â Šâ ©" }, { "input": "squeamishly", "output": "⠎⠟⠥⠂â â Šâ ©â ‡â ½" }, { "input": "squeamishness", "output": "⠎⠟⠥⠂â â Šâ ©â °â Ž" }, { "input": "squeegee", "output": "⠎⠟⠥⠑⠑⠛⠑⠑" }, { "input": "squeegeed", "output": "⠎⠟⠥⠑⠑⠛⠑⠫" }, { "input": "squeegeeing", "output": "⠎⠟⠥⠑⠑⠛⠑⠑⠬" }, { "input": "squeegees", "output": "⠎⠟⠥⠑⠑⠛⠑⠑⠎" }, { "input": "squeeze", "output": "⠎⠟⠥⠑⠑⠵⠑" }, { "input": "squeezed", "output": "⠎⠟⠥⠑⠑⠵⠫" }, { "input": "squeezer", "output": "⠎⠟⠥⠑⠑⠵⠻" }, { "input": "squeezers", "output": "⠎⠟⠥⠑⠑⠵⠻⠎" }, { "input": "squeezes", "output": "⠎⠟⠥⠑⠑⠵⠑⠎" }, { "input": "squeezing", "output": "⠎⠟⠥⠑⠑⠵⠬" }, { "input": "squelch", "output": "⠎⠟⠥⠑⠇⠡" }, { "input": "squelched", "output": "⠎⠟⠥⠑⠇⠡⠫" }, { "input": "squelches", "output": "⠎⠟⠥⠑⠇⠡⠑⠎" }, { "input": "squelching", "output": "⠎⠟⠥⠑⠇⠡⠬" }, { "input": "squid", "output": "⠎⠟⠥⠊⠙" }, { "input": "squids", "output": "⠎⠟⠥⠊⠙⠎" }, { "input": "squiggle", "output": "⠎⠟⠥⠊⠶⠇⠑" }, { "input": "squiggled", "output": "⠎⠟⠥⠊⠶⠇⠫" }, { "input": "squiggles", "output": "⠎⠟⠥⠊⠶⠇⠑⠎" }, { "input": "squigglier", "output": "⠎⠟⠥⠊⠶⠇⠊⠻" }, { "input": "squiggliest", "output": "⠎⠟⠥⠊⠶⠇⠊⠑⠌" }, { "input": "squiggling", "output": "⠎⠟⠥⠊⠶⠇⠬" }, { "input": "squiggly", "output": "⠎⠟⠥⠊⠶⠇⠽" }, { "input": "squint", "output": "⠎⠟⠥⠔⠞" }, { "input": "squinted", "output": "⠎⠟⠥⠔⠞⠫" }, { "input": "squinter", "output": "⠎⠟⠥⠔⠞⠻" }, { "input": "squintest", "output": "⠎⠟⠥⠔⠞⠑⠌" }, { "input": "squinting", "output": "⠎⠟⠥⠔⠞⠬" }, { "input": "squints", "output": "⠎⠟⠥⠔⠞⠎" }, { "input": "squire", "output": "⠎⠟⠥⠊⠗⠑" }, { "input": "squired", "output": "⠎⠟⠥⠊⠗⠫" }, { "input": "squires", "output": "⠎⠟⠥⠊⠗⠑⠎" }, { "input": "squiring", "output": "⠎⠟⠥⠊⠗⠬" }, { "input": "squirm", "output": "⠎⠟⠥⠊⠗â " }, { "input": "squirmed", "output": "⠎⠟⠥⠊⠗â â «" }, { "input": "squirmier", "output": "⠎⠟⠥⠊⠗â â Šâ »" }, { "input": "squirmiest", "output": "⠎⠟⠥⠊⠗â â Šâ ‘â Œ" }, { "input": "squirming", "output": "⠎⠟⠥⠊⠗â â ¬" }, { "input": "squirms", "output": "⠎⠟⠥⠊⠗â â Ž" }, { "input": "squirmy", "output": "⠎⠟⠥⠊⠗â â ½" }, { "input": "squirrel", "output": "⠎⠟⠥⠊⠗⠗⠑⠇" }, { "input": "squirreled", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠫" }, { "input": "squirreling", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠬" }, { "input": "squirrelled", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠇⠫" }, { "input": "squirrelling", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠇⠬" }, { "input": "squirrels", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠎" }, { "input": "squirt", "output": "⠎⠟⠥⠊⠗⠞" }, { "input": "squirted", "output": "⠎⠟⠥⠊⠗⠞⠫" }, { "input": "squirting", "output": "⠎⠟⠥⠊⠗⠞⠬" }, { "input": "squirts", "output": "⠎⠟⠥⠊⠗⠞⠎" }, { "input": "squish", "output": "⠎⠟⠥⠊⠩" }, { "input": "squished", "output": "⠎⠟⠥⠊⠩⠫" }, { "input": "squishes", "output": "⠎⠟⠥⠊⠩⠑⠎" }, { "input": "squishier", "output": "⠎⠟⠥⠊⠩⠊⠻" }, { "input": "squishiest", "output": "⠎⠟⠥⠊⠩⠊⠑⠌" }, { "input": "squishing", "output": "⠎⠟⠥⠊⠩⠬" }, { "input": "squishy", "output": "⠎⠟⠥⠊⠩⠽" }, { "input": "stab", "output": "â Œâ â ƒ" }, { "input": "stabbed", "output": "â Œâ â †â «" }, { "input": "stabbing", "output": "â Œâ â †â ¬" }, { "input": "stabbings", "output": "â Œâ â †â ¬â Ž" }, { "input": "stability", "output": "â Œâ â ƒâ Šâ ‡â °â ½" }, { "input": "stabilization", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ â °â " }, { "input": "stabilize", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ ‘" }, { "input": "stabilized", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ «" }, { "input": "stabilizer", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ »" }, { "input": "stabilizers", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ »â Ž" }, { "input": "stabilizes", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ ‘â Ž" }, { "input": "stabilizing", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ ¬" }, { "input": "stable", "output": "â Œâ â ƒâ ‡â ‘" }, { "input": "stabled", "output": "â Œâ â ƒâ ‡â «" }, { "input": "stabler", "output": "â Œâ â ƒâ ‡â »" }, { "input": "stables", "output": "â Œâ â ƒâ ‡â ‘â Ž" }, { "input": "stablest", "output": "â Œâ â ƒâ ‡â ‘â Œ" }, { "input": "stabling", "output": "â Œâ â ƒâ ‡â ¬" }, { "input": "stabs", "output": "â Œâ â ƒâ Ž" }, { "input": "staccati", "output": "â Œâ â ’â â žâ Š" }, { "input": "staccato", "output": "â Œâ â ’â â žâ •" }, { "input": "staccatos", "output": "â Œâ â ’â â žâ •â Ž" }, { "input": "stack", "output": "â Œâ â ‰â …" }, { "input": "stacked", "output": "â Œâ â ‰â …â «" }, { "input": "stacking", "output": "â Œâ â ‰â …â ¬" }, { "input": "stacks", "output": "â Œâ â ‰â …â Ž" }, { "input": "stadia", "output": "â Œâ â ™â Šâ " }, { "input": "stadium", "output": "â Œâ â ™â Šâ ¥â " }, { "input": "stadiums", "output": "â Œâ â ™â Šâ ¥â â Ž" }, { "input": "staff", "output": "â Œâ â ‹â ‹" }, { "input": "staffed", "output": "â Œâ â –â «" }, { "input": "staffer", "output": "â Œâ â –â »" }, { "input": "staffers", "output": "â Œâ â –⠻⠎" }, { "input": "staffing", "output": "â Œâ â –â ¬" }, { "input": "staffs", "output": "â Œâ â –â Ž" }, { "input": "stag", "output": "â Œâ â ›" }, { "input": "stage", "output": "â Œâ â ›â ‘" }, { "input": "stagecoach", "output": "â Œâ â ›â ‘⠉⠕â â ¡" }, { "input": "stagecoaches", "output": "â Œâ â ›â ‘⠉⠕â â ¡â ‘â Ž" }, { "input": "staged", "output": "â Œâ â ›â «" }, { "input": "stagehand", "output": "â Œâ â ›â ‘â “â ¯" }, { "input": "stagehands", "output": "â Œâ â ›â ‘⠓⠯⠎" }, { "input": "stages", "output": "â Œâ â ›â ‘â Ž" }, { "input": "stagflation", "output": "â Œâ â ›â ‹â ‡â â °â " }, { "input": "stagger", "output": "â Œâ â ¶â »" }, { "input": "staggered", "output": "â Œâ â ¶â »â «" }, { "input": "staggering", "output": "â Œâ â ¶â »â ¬" }, { "input": "staggeringly", "output": "â Œâ â ¶â »â ¬â ‡â ½" }, { "input": "staggers", "output": "â Œâ â ¶â »â Ž" }, { "input": "staging", "output": "â Œâ â ›â ¬" }, { "input": "stagings", "output": "â Œâ â ›â ¬â Ž" }, { "input": "stagnant", "output": "â Œâ â ›â â â â ž" }, { "input": "stagnate", "output": "â Œâ â ›â â â žâ ‘" }, { "input": "stagnated", "output": "â Œâ â ›â â â žâ «" }, { "input": "stagnates", "output": "â Œâ â ›â â â žâ ‘â Ž" }, { "input": "stagnating", "output": "â Œâ â ›â â â žâ ¬" }, { "input": "stagnation", "output": "â Œâ â ›â â â °â " }, { "input": "stags", "output": "â Œâ â ›â Ž" }, { "input": "staid", "output": "â Œâ â Šâ ™" }, { "input": "staider", "output": "â Œâ â Šâ ™â »" }, { "input": "staidest", "output": "â Œâ â Šâ ™â ‘â Œ" }, { "input": "staidly", "output": "â Œâ â Šâ ™â ‡â ½" }, { "input": "stain", "output": "â Œâ â ”" }, { "input": "stained", "output": "â Œâ â ”â «" }, { "input": "staining", "output": "â Œâ â ”â ¬" }, { "input": "stainless", "output": "â Œâ â ”⠨⠎" }, { "input": "stains", "output": "â Œâ â ”â Ž" }, { "input": "stair", "output": "â Œâ â Šâ —" }, { "input": "staircase", "output": "â Œâ â Šâ —â ‰â â Žâ ‘" }, { "input": "staircases", "output": "â Œâ â Šâ —â ‰â â Žâ ‘â Ž" }, { "input": "stairs", "output": "â Œâ â Šâ —â Ž" }, { "input": "stairway", "output": "â Œâ â Šâ —â ºâ â ½" }, { "input": "stairways", "output": "â Œâ â Šâ —â ºâ â ½â Ž" }, { "input": "stairwell", "output": "â Œâ â Šâ —⠺⠑⠇⠇" }, { "input": "stairwells", "output": "â Œâ â Šâ —⠺⠑⠇⠇⠎" }, { "input": "stake", "output": "â Œâ â …â ‘" }, { "input": "staked", "output": "â Œâ â …â «" }, { "input": "stakeout", "output": "â Œâ â …⠑⠳⠞" }, { "input": "stakeouts", "output": "â Œâ â …⠑⠳⠞⠎" }, { "input": "stakes", "output": "â Œâ â …â ‘â Ž" }, { "input": "staking", "output": "â Œâ â …â ¬" }, { "input": "stalactite", "output": "â Œâ â ‡â â ‰â žâ Šâ žâ ‘" }, { "input": "stalactites", "output": "â Œâ â ‡â â ‰â žâ Šâ žâ ‘â Ž" }, { "input": "stalagmite", "output": "â Œâ â ‡â â ›â â Šâ žâ ‘" }, { "input": "stalagmites", "output": "â Œâ â ‡â â ›â â Šâ žâ ‘â Ž" }, { "input": "stale", "output": "â Œâ â ‡â ‘" }, { "input": "staled", "output": "â Œâ â ‡â «" }, { "input": "stalemate", "output": "â Œâ â ‡â ‘â â â žâ ‘" }, { "input": "stalemated", "output": "â Œâ â ‡â ‘â â â žâ «" }, { "input": "stalemates", "output": "â Œâ â ‡â ‘â â â žâ ‘â Ž" }, { "input": "stalemating", "output": "â Œâ â ‡â ‘â â â žâ ¬" }, { "input": "staleness", "output": "â Œâ â ‡â ‘â °â Ž" }, { "input": "staler", "output": "â Œâ â ‡â »" }, { "input": "stales", "output": "â Œâ â ‡â ‘â Ž" }, { "input": "stalest", "output": "â Œâ â ‡â ‘â Œ" }, { "input": "staling", "output": "â Œâ â ‡â ¬" }, { "input": "stalk", "output": "â Œâ â ‡â …" }, { "input": "stalked", "output": "â Œâ â ‡â …â «" }, { "input": "stalker", "output": "â Œâ â ‡â …â »" }, { "input": "stalkers", "output": "â Œâ â ‡â …⠻⠎" }, { "input": "stalking", "output": "â Œâ â ‡â …â ¬" }, { "input": "stalkings", "output": "â Œâ â ‡â …⠬⠎" }, { "input": "stalks", "output": "â Œâ â ‡â …â Ž" }, { "input": "stall", "output": "â Œâ â ‡â ‡" }, { "input": "stalled", "output": "â Œâ â ‡â ‡â «" }, { "input": "stalling", "output": "â Œâ â ‡â ‡â ¬" }, { "input": "stallion", "output": "â Œâ â ‡â ‡â Šâ •â " }, { "input": "stallions", "output": "â Œâ â ‡â ‡â Šâ •â â Ž" }, { "input": "stalls", "output": "â Œâ â ‡â ‡â Ž" }, { "input": "stalwart", "output": "â Œâ â ‡â ºâ œâ ž" }, { "input": "stalwarts", "output": "â Œâ â ‡â ºâ œâ žâ Ž" }, { "input": "stamen", "output": "â Œâ â â ¢" }, { "input": "stamens", "output": "â Œâ â â ¢â Ž" }, { "input": "stamina", "output": "â Œâ â â ”â " }, { "input": "stammer", "output": "â Œâ â â â »" }, { "input": "stammered", "output": "â Œâ â â â »â «" }, { "input": "stammerer", "output": "â Œâ â â â »â »" }, { "input": "stammerers", "output": "â Œâ â â â »â »â Ž" }, { "input": "stammering", "output": "â Œâ â â â »â ¬" }, { "input": "stammers", "output": "â Œâ â â â »â Ž" }, { "input": "stamp", "output": "â Œâ â â " }, { "input": "stamped", "output": "â Œâ â â â «" }, { "input": "stampede", "output": "â Œâ â â â «â ‘" }, { "input": "stampeded", "output": "â Œâ â â â «â «" }, { "input": "stampedes", "output": "â Œâ â â â «â ‘â Ž" }, { "input": "stampeding", "output": "â Œâ â â â «â ¬" }, { "input": "stamping", "output": "â Œâ â â â ¬" }, { "input": "stamps", "output": "â Œâ â â â Ž" }, { "input": "stance", "output": "⠌⠨⠑" }, { "input": "stances", "output": "⠌⠨⠑⠎" }, { "input": "stanch", "output": "â Œâ â â ¡" }, { "input": "stanched", "output": "â Œâ â â ¡â «" }, { "input": "stancher", "output": "â Œâ â â ¡â »" }, { "input": "stanches", "output": "â Œâ â â ¡â ‘â Ž" }, { "input": "stanchest", "output": "â Œâ â â ¡â ‘â Œ" }, { "input": "stanching", "output": "â Œâ â â ¡â ¬" }, { "input": "stanchion", "output": "â Œâ â â ¡â Šâ •â " }, { "input": "stanchions", "output": "â Œâ â â ¡â Šâ •â â Ž" }, { "input": "stand", "output": "⠌⠯" }, { "input": "standard", "output": "⠌⠯⠜⠙" }, { "input": "standardization", "output": "⠌⠯⠜⠙⠊⠵â â °â " }, { "input": "standardize", "output": "⠌⠯⠜⠙⠊⠵⠑" }, { "input": "standardized", "output": "⠌⠯⠜⠙⠊⠵⠫" }, { "input": "standardizes", "output": "⠌⠯⠜⠙⠊⠵⠑⠎" }, { "input": "standardizing", "output": "⠌⠯⠜⠙⠊⠵⠬" }, { "input": "standards", "output": "⠌⠯⠜⠙⠎" }, { "input": "standby", "output": "⠌⠯⠃⠽" }, { "input": "standbys", "output": "⠌⠯⠃⠽⠎" }, { "input": "standing", "output": "⠌⠯⠬" }, { "input": "standings", "output": "⠌⠯⠬⠎" }, { "input": "standoff", "output": "⠌⠯⠷⠋" }, { "input": "standoffish", "output": "⠌⠯⠷⠋⠊⠩" }, { "input": "standoffs", "output": "⠌⠯⠷⠋⠎" }, { "input": "standout", "output": "⠌⠯⠳⠞" }, { "input": "standouts", "output": "⠌⠯⠳⠞⠎" }, { "input": "standpoint", "output": "⠌⠯â â •⠔⠞" }, { "input": "standpoints", "output": "⠌⠯â â •⠔⠞⠎" }, { "input": "stands", "output": "⠌⠯⠎" }, { "input": "standstill", "output": "⠌⠯⠌⠊⠇⠇" }, { "input": "standstills", "output": "⠌⠯⠌⠊⠇⠇⠎" }, { "input": "stank", "output": "â Œâ â â …" }, { "input": "stanza", "output": "â Œâ â â µâ " }, { "input": "stanzas", "output": "â Œâ â â µâ â Ž" }, { "input": "staph", "output": "â Œâ â â “" }, { "input": "staphylococci", "output": "â Œâ â â “⠽⠇⠕⠉⠕⠒⠊" }, { "input": "staphylococcus", "output": "â Œâ â â “⠽⠇⠕⠉⠕⠒⠥⠎" }, { "input": "staple", "output": "â Œâ â â ‡â ‘" }, { "input": "stapled", "output": "â Œâ â â ‡â «" }, { "input": "stapler", "output": "â Œâ â â ‡â »" }, { "input": "staplers", "output": "â Œâ â â ‡â »â Ž" }, { "input": "staples", "output": "â Œâ â â ‡â ‘â Ž" }, { "input": "stapling", "output": "â Œâ â â ‡â ¬" }, { "input": "star", "output": "⠌⠜" }, { "input": "starboard", "output": "⠌⠜⠃⠕⠜⠙" }, { "input": "starch", "output": "⠌⠜⠡" }, { "input": "starched", "output": "⠌⠜⠡⠫" }, { "input": "starches", "output": "⠌⠜⠡⠑⠎" }, { "input": "starchier", "output": "⠌⠜⠡⠊⠻" }, { "input": "starchiest", "output": "⠌⠜⠡⠊⠑⠌" }, { "input": "starching", "output": "⠌⠜⠡⠬" }, { "input": "starchy", "output": "⠌⠜⠡⠽" }, { "input": "stardom", "output": "⠌⠜⠙⠕â " }, { "input": "stare", "output": "⠌⠜⠑" }, { "input": "stared", "output": "⠌⠜⠫" }, { "input": "stares", "output": "⠌⠜⠑⠎" }, { "input": "starfish", "output": "⠌⠜⠋⠊⠩" }, { "input": "starfishes", "output": "⠌⠜⠋⠊⠩⠑⠎" }, { "input": "stargazer", "output": "⠌⠜⠛â â µâ »" }, { "input": "stargazers", "output": "⠌⠜⠛â â µâ »â Ž" }, { "input": "staring", "output": "⠌⠜⠬" }, { "input": "stark", "output": "⠌⠜⠅" }, { "input": "starker", "output": "⠌⠜⠅⠻" }, { "input": "starkest", "output": "⠌⠜⠅⠑⠌" }, { "input": "starkly", "output": "⠌⠜⠅⠇⠽" }, { "input": "starkness", "output": "⠌⠜⠅⠰⠎" }, { "input": "starless", "output": "⠌⠜⠨⠎" }, { "input": "starlet", "output": "⠌⠜⠇⠑⠞" }, { "input": "starlets", "output": "⠌⠜⠇⠑⠞⠎" }, { "input": "starlight", "output": "⠌⠜⠇⠊⠣⠞" }, { "input": "starling", "output": "⠌⠜⠇⠬" }, { "input": "starlings", "output": "⠌⠜⠇⠬⠎" }, { "input": "starlit", "output": "⠌⠜⠇⠊⠞" }, { "input": "starred", "output": "⠌⠜⠗⠫" }, { "input": "starrier", "output": "⠌⠜⠗⠊⠻" }, { "input": "starriest", "output": "⠌⠜⠗⠊⠑⠌" }, { "input": "starring", "output": "⠌⠜⠗⠬" }, { "input": "starry", "output": "⠌⠜⠗⠽" }, { "input": "stars", "output": "⠌⠜⠎" }, { "input": "start", "output": "⠌⠜⠞" }, { "input": "started", "output": "⠌⠜⠞⠫" }, { "input": "starter", "output": "⠌⠜⠞⠻" }, { "input": "starters", "output": "⠌⠜⠞⠻⠎" }, { "input": "starting", "output": "⠌⠜⠞⠬" }, { "input": "startle", "output": "⠌⠜⠞⠇⠑" }, { "input": "startled", "output": "⠌⠜⠞⠇⠫" }, { "input": "startles", "output": "⠌⠜⠞⠇⠑⠎" }, { "input": "startling", "output": "⠌⠜⠞⠇⠬" }, { "input": "startlingly", "output": "⠌⠜⠞⠇⠬⠇⠽" }, { "input": "starts", "output": "⠌⠜⠞⠎" }, { "input": "starvation", "output": "⠌⠜⠧â â °â " }, { "input": "starve", "output": "⠌⠜⠧⠑" }, { "input": "starved", "output": "⠌⠜⠧⠫" }, { "input": "starves", "output": "⠌⠜⠧⠑⠎" }, { "input": "starving", "output": "⠌⠜⠧⠬" }, { "input": "starvings", "output": "⠌⠜⠧⠬⠎" }, { "input": "stash", "output": "â Œâ â ©" }, { "input": "stashed", "output": "â Œâ â ©â «" }, { "input": "stashes", "output": "â Œâ â ©â ‘â Ž" }, { "input": "stashing", "output": "â Œâ â ©â ¬" }, { "input": "state", "output": "â Œâ â žâ ‘" }, { "input": "stated", "output": "â Œâ â žâ «" }, { "input": "statehood", "output": "â Œâ â žâ ‘â “â •â •â ™" }, { "input": "statehouse", "output": "â Œâ â žâ ‘⠓⠳⠎⠑" }, { "input": "statehouses", "output": "â Œâ â žâ ‘⠓⠳⠎⠑⠎" }, { "input": "stateless", "output": "â Œâ â žâ ‘⠨⠎" }, { "input": "statelier", "output": "â Œâ â žâ ‘⠇⠊⠻" }, { "input": "stateliest", "output": "â Œâ â žâ ‘⠇⠊⠑⠌" }, { "input": "stateliness", "output": "â Œâ â žâ ‘⠇⠊⠰⠎" }, { "input": "stately", "output": "â Œâ â žâ ‘⠇⠽" }, { "input": "statement", "output": "â Œâ â žâ ‘â °â ž" }, { "input": "statements", "output": "â Œâ â žâ ‘â °â žâ Ž" }, { "input": "stater", "output": "â Œâ â žâ »" }, { "input": "stateroom", "output": "â Œâ â žâ ‘â —â •â •â " }, { "input": "staterooms", "output": "â Œâ â žâ ‘â —â •â •â â Ž" }, { "input": "states", "output": "â Œâ â žâ ‘â Ž" }, { "input": "stateside", "output": "â Œâ â žâ ‘⠎⠊⠙⠑" }, { "input": "statesman", "output": "â Œâ â žâ ‘â Žâ â â " }, { "input": "statesmanlike", "output": "â Œâ â žâ ‘â Žâ â â â ‡â Šâ …â ‘" }, { "input": "statesmanship", "output": "â Œâ â žâ ‘â Žâ â â â ©â Šâ " }, { "input": "statesmen", "output": "â Œâ â žâ ‘â Žâ â ¢" }, { "input": "statewide", "output": "â Œâ â žâ ‘⠺⠊⠙⠑" }, { "input": "static", "output": "â Œâ â žâ Šâ ‰" }, { "input": "statically", "output": "â Œâ â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "stating", "output": "â Œâ â žâ ¬" }, { "input": "station", "output": "â Œâ â °â " }, { "input": "stationary", "output": "â Œâ â °â â œâ ½" }, { "input": "stationed", "output": "â Œâ â °â â «" }, { "input": "stationer", "output": "â Œâ â °â â »" }, { "input": "stationers", "output": "â Œâ â °â â »â Ž" }, { "input": "stationery", "output": "â Œâ â °â â »â ½" }, { "input": "stationing", "output": "â Œâ â °â â ¬" }, { "input": "stations", "output": "â Œâ â °â â Ž" }, { "input": "statistic", "output": "â Œâ â žâ Šâ Œâ Šâ ‰" }, { "input": "statistical", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â â ‡" }, { "input": "statistically", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "statistician", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Šâ â " }, { "input": "statisticians", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Šâ â â Ž" }, { "input": "statistics", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Ž" }, { "input": "stats", "output": "â Œâ â žâ Ž" }, { "input": "statuary", "output": "â Œâ â žâ ¥â œâ ½" }, { "input": "statue", "output": "â Œâ â žâ ¥â ‘" }, { "input": "statues", "output": "â Œâ â žâ ¥â ‘â Ž" }, { "input": "statuesque", "output": "â Œâ â žâ ¥â ‘⠎⠟⠥⠑" }, { "input": "statuette", "output": "â Œâ â žâ ¥â ‘â žâ žâ ‘" }, { "input": "statuettes", "output": "â Œâ â žâ ¥â ‘â žâ žâ ‘â Ž" }, { "input": "stature", "output": "â Œâ â žâ ¥â —â ‘" }, { "input": "statures", "output": "â Œâ â žâ ¥â —â ‘â Ž" }, { "input": "status", "output": "â Œâ â žâ ¥â Ž" }, { "input": "statuses", "output": "â Œâ â žâ ¥â Žâ ‘â Ž" }, { "input": "statute", "output": "â Œâ â žâ ¥â žâ ‘" }, { "input": "statutes", "output": "â Œâ â žâ ¥â žâ ‘â Ž" }, { "input": "statutory", "output": "â Œâ â žâ ¥â žâ •â —â ½" }, { "input": "staunch", "output": "â Œâ â ¥â â ¡" }, { "input": "staunched", "output": "â Œâ â ¥â â ¡â «" }, { "input": "stauncher", "output": "â Œâ â ¥â â ¡â »" }, { "input": "staunches", "output": "â Œâ â ¥â â ¡â ‘â Ž" }, { "input": "staunchest", "output": "â Œâ â ¥â â ¡â ‘â Œ" }, { "input": "staunching", "output": "â Œâ â ¥â â ¡â ¬" }, { "input": "staunchly", "output": "â Œâ â ¥â â ¡â ‡â ½" }, { "input": "stave", "output": "â Œâ â §â ‘" }, { "input": "staved", "output": "â Œâ â §â «" }, { "input": "staves", "output": "â Œâ â §â ‘â Ž" }, { "input": "staving", "output": "â Œâ â §â ¬" }, { "input": "stay", "output": "â Œâ â ½" }, { "input": "stayed", "output": "â Œâ â ½â «" }, { "input": "staying", "output": "â Œâ â ½â ¬" }, { "input": "stays", "output": "â Œâ â ½â Ž" }, { "input": "stead", "output": "⠌⠂⠙" }, { "input": "steadfast", "output": "⠌⠂⠙⠋â â Œ" }, { "input": "steadfastly", "output": "⠌⠂⠙⠋â â Œâ ‡â ½" }, { "input": "steadfastness", "output": "⠌⠂⠙⠋â â Œâ °â Ž" }, { "input": "steadied", "output": "⠌⠂⠙⠊⠫" }, { "input": "steadier", "output": "⠌⠂⠙⠊⠻" }, { "input": "steadies", "output": "⠌⠂⠙⠊⠑⠎" }, { "input": "steadiest", "output": "⠌⠂⠙⠊⠑⠌" }, { "input": "steadily", "output": "⠌⠂⠙⠊⠇⠽" }, { "input": "steadiness", "output": "⠌⠂⠙⠊⠰⠎" }, { "input": "steads", "output": "⠌⠂⠙⠎" }, { "input": "steady", "output": "⠌⠂⠙⠽" }, { "input": "steadying", "output": "⠌⠂⠙⠽⠬" }, { "input": "steak", "output": "⠌⠂⠅" }, { "input": "steakhouse", "output": "⠌⠂⠅⠓⠳⠎⠑" }, { "input": "steakhouses", "output": "⠌⠂⠅⠓⠳⠎⠑⠎" }, { "input": "steaks", "output": "⠌⠂⠅⠎" }, { "input": "steal", "output": "⠌⠂⠇" }, { "input": "stealing", "output": "⠌⠂⠇⠬" }, { "input": "steals", "output": "⠌⠂⠇⠎" }, { "input": "stealth", "output": "⠌⠂⠇⠹" }, { "input": "stealthier", "output": "⠌⠂⠇⠹⠊⠻" }, { "input": "stealthiest", "output": "⠌⠂⠇⠹⠊⠑⠌" }, { "input": "stealthily", "output": "⠌⠂⠇⠹⠊⠇⠽" }, { "input": "stealthy", "output": "⠌⠂⠇⠹⠽" }, { "input": "steam", "output": "⠌⠂â " }, { "input": "steamboat", "output": "⠌⠂â â ƒâ •â â ž" }, { "input": "steamboats", "output": "⠌⠂â â ƒâ •â â žâ Ž" }, { "input": "steamed", "output": "⠌⠂â â «" }, { "input": "steamer", "output": "⠌⠂â â »" }, { "input": "steamers", "output": "⠌⠂â â »â Ž" }, { "input": "steamier", "output": "⠌⠂â â Šâ »" }, { "input": "steamiest", "output": "⠌⠂â â Šâ ‘â Œ" }, { "input": "steaming", "output": "⠌⠂â â ¬" }, { "input": "steamroll", "output": "⠌⠂â â —⠕⠇⠇" }, { "input": "steamrolled", "output": "⠌⠂â â —⠕⠇⠇⠫" }, { "input": "steamroller", "output": "⠌⠂â â —⠕⠇⠇⠻" }, { "input": "steamrollered", "output": "⠌⠂â â —⠕⠇⠇⠻⠫" }, { "input": "steamrollering", "output": "⠌⠂â â —⠕⠇⠇⠻⠬" }, { "input": "steamrollers", "output": "⠌⠂â â —⠕⠇⠇⠻⠎" }, { "input": "steamrolling", "output": "⠌⠂â â —⠕⠇⠇⠬" }, { "input": "steamrolls", "output": "⠌⠂â â —⠕⠇⠇⠎" }, { "input": "steams", "output": "⠌⠂â â Ž" }, { "input": "steamship", "output": "⠌⠂â â ©â Šâ " }, { "input": "steamships", "output": "⠌⠂â â ©â Šâ â Ž" }, { "input": "steamy", "output": "⠌⠂â â ½" }, { "input": "steed", "output": "⠌⠑⠫" }, { "input": "steeds", "output": "⠌⠑⠫⠎" }, { "input": "steel", "output": "⠌⠑⠑⠇" }, { "input": "steeled", "output": "⠌⠑⠑⠇⠫" }, { "input": "steelier", "output": "⠌⠑⠑⠇⠊⠻" }, { "input": "steeliest", "output": "⠌⠑⠑⠇⠊⠑⠌" }, { "input": "steeling", "output": "⠌⠑⠑⠇⠬" }, { "input": "steels", "output": "⠌⠑⠑⠇⠎" }, { "input": "steely", "output": "⠌⠑⠑⠇⠽" }, { "input": "steep", "output": "⠌⠑⠑â " }, { "input": "steeped", "output": "⠌⠑⠑â â «" }, { "input": "steeper", "output": "⠌⠑⠑â â »" }, { "input": "steepest", "output": "⠌⠑⠑â â ‘â Œ" }, { "input": "steeping", "output": "⠌⠑⠑â â ¬" }, { "input": "steeple", "output": "⠌⠑⠑â â ‡â ‘" }, { "input": "steeplechase", "output": "⠌⠑⠑â â ‡â ‘â ¡â â Žâ ‘" }, { "input": "steeplechases", "output": "⠌⠑⠑â â ‡â ‘â ¡â â Žâ ‘â Ž" }, { "input": "steeplejack", "output": "⠌⠑⠑â â ‡â ‘â šâ â ‰â …" }, { "input": "steeplejacks", "output": "⠌⠑⠑â â ‡â ‘â šâ â ‰â …â Ž" }, { "input": "steeples", "output": "⠌⠑⠑â â ‡â ‘â Ž" }, { "input": "steeply", "output": "⠌⠑⠑â â ‡â ½" }, { "input": "steepness", "output": "⠌⠑⠑â â °â Ž" }, { "input": "steeps", "output": "⠌⠑⠑â â Ž" }, { "input": "steer", "output": "⠌⠑⠻" }, { "input": "steerage", "output": "⠌⠑⠻â â ›â ‘" }, { "input": "steered", "output": "⠌⠑⠻⠫" }, { "input": "steering", "output": "⠌⠑⠻⠬" }, { "input": "steers", "output": "⠌⠑⠻⠎" }, { "input": "stein", "output": "⠌⠑⠔" }, { "input": "steins", "output": "⠌⠑⠔⠎" }, { "input": "stellar", "output": "⠌⠑⠇⠇⠜" }, { "input": "stem", "output": "⠌⠑â " }, { "input": "stemmed", "output": "⠌⠑â â â «" }, { "input": "stemming", "output": "⠌⠑â â â ¬" }, { "input": "stems", "output": "⠌⠑â â Ž" }, { "input": "stench", "output": "⠌⠢⠡" }, { "input": "stenches", "output": "⠌⠢⠡⠑⠎" }, { "input": "stencil", "output": "⠌⠢⠉⠊⠇" }, { "input": "stenciled", "output": "⠌⠢⠉⠊⠇⠫" }, { "input": "stenciling", "output": "⠌⠢⠉⠊⠇⠬" }, { "input": "stencilled", "output": "⠌⠢⠉⠊⠇⠇⠫" }, { "input": "stencilling", "output": "⠌⠢⠉⠊⠇⠇⠬" }, { "input": "stencils", "output": "⠌⠢⠉⠊⠇⠎" }, { "input": "stenographer", "output": "⠌⠢⠕⠛⠗â â â “â »" }, { "input": "stenographers", "output": "⠌⠢⠕⠛⠗â â â “⠻⠎" }, { "input": "stenographic", "output": "⠌⠢⠕⠛⠗â â â “â Šâ ‰" }, { "input": "stenography", "output": "⠌⠢⠕⠛⠗â â â “â ½" }, { "input": "stentorian", "output": "⠌⠢⠞⠕⠗⠊â â " }, { "input": "step", "output": "⠌⠑â " }, { "input": "stepbrother", "output": "⠌⠑â â ƒâ —⠕⠮⠗" }, { "input": "stepbrothers", "output": "⠌⠑â â ƒâ —⠕⠮⠗⠎" }, { "input": "stepchild", "output": "⠌⠑â â ¡â Šâ ‡â ™" }, { "input": "stepchildren", "output": "⠌⠑â â ¡â " }, { "input": "stepdaughter", "output": "⠌⠑â â ™â â ¥â £â žâ »" }, { "input": "stepdaughters", "output": "⠌⠑â â ™â â ¥â £â žâ »â Ž" }, { "input": "stepfather", "output": "⠌⠑â â â ‹" }, { "input": "stepfathers", "output": "⠌⠑â â â ‹â Ž" }, { "input": "stepladder", "output": "⠌⠑â â ‡â â ™â ™â »" }, { "input": "stepladders", "output": "⠌⠑â â ‡â â ™â ™â »â Ž" }, { "input": "stepmother", "output": "⠌⠑â â â " }, { "input": "stepmothers", "output": "⠌⠑â â â â Ž" }, { "input": "stepparent", "output": "⠌⠑â â â œâ ¢â ž" }, { "input": "stepparents", "output": "⠌⠑â â â œâ ¢â žâ Ž" }, { "input": "steppe", "output": "⠌⠑â â â ‘" }, { "input": "stepped", "output": "⠌⠑â â â «" }, { "input": "steppes", "output": "⠌⠑â â â ‘â Ž" }, { "input": "stepping", "output": "⠌⠑â â â ¬" }, { "input": "steppingstone", "output": "⠌⠑â â â ¬â Œâ â •" }, { "input": "steppingstones", "output": "⠌⠑â â â ¬â Œâ â •â Ž" }, { "input": "steps", "output": "⠌⠑â â Ž" }, { "input": "stepsister", "output": "⠌⠑â â Žâ Šâ Œâ »" }, { "input": "stepsisters", "output": "⠌⠑â â Žâ Šâ Œâ »â Ž" }, { "input": "stepson", "output": "⠌⠑â â Žâ •â " }, { "input": "stepsons", "output": "⠌⠑â â Žâ •â â Ž" }, { "input": "stereo", "output": "⠌⠻⠑⠕" }, { "input": "stereophonic", "output": "⠌⠻⠑⠕â â “â •â â Šâ ‰" }, { "input": "stereos", "output": "⠌⠻⠑⠕⠎" }, { "input": "stereoscope", "output": "⠌⠻⠑⠕⠎⠉⠕â â ‘" }, { "input": "stereoscopes", "output": "⠌⠻⠑⠕⠎⠉⠕â â ‘â Ž" }, { "input": "stereotype", "output": "⠌⠻⠑⠕⠞⠽â â ‘" }, { "input": "stereotyped", "output": "⠌⠻⠑⠕⠞⠽â â «" }, { "input": "stereotypes", "output": "⠌⠻⠑⠕⠞⠽â â ‘â Ž" }, { "input": "stereotypical", "output": "⠌⠻⠑⠕⠞⠽â â Šâ ‰â â ‡" }, { "input": "stereotyping", "output": "⠌⠻⠑⠕⠞⠽â â ¬" }, { "input": "sterile", "output": "⠌⠻⠊⠇⠑" }, { "input": "sterility", "output": "⠌⠻⠊⠇⠰⠽" }, { "input": "sterilization", "output": "⠌⠻⠊⠇⠊⠵â â °â " }, { "input": "sterilize", "output": "⠌⠻⠊⠇⠊⠵⠑" }, { "input": "sterilized", "output": "⠌⠻⠊⠇⠊⠵⠫" }, { "input": "sterilizer", "output": "⠌⠻⠊⠇⠊⠵⠻" }, { "input": "sterilizers", "output": "⠌⠻⠊⠇⠊⠵⠻⠎" }, { "input": "sterilizes", "output": "⠌⠻⠊⠇⠊⠵⠑⠎" }, { "input": "sterilizing", "output": "⠌⠻⠊⠇⠊⠵⠬" }, { "input": "sterling", "output": "⠌⠻⠇⠬" }, { "input": "stern", "output": "⠌⠻â " }, { "input": "sterna", "output": "⠌⠻â â " }, { "input": "sterner", "output": "⠌⠻â â »" }, { "input": "sternest", "output": "⠌⠻â â ‘â Œ" }, { "input": "sternly", "output": "⠌⠻â â ‡â ½" }, { "input": "sternness", "output": "⠌⠻â â °â Ž" }, { "input": "sterns", "output": "⠌⠻â â Ž" }, { "input": "sternum", "output": "⠌⠻â â ¥â " }, { "input": "sternums", "output": "⠌⠻â â ¥â â Ž" }, { "input": "steroid", "output": "⠌⠻⠕⠊⠙" }, { "input": "steroids", "output": "⠌⠻⠕⠊⠙⠎" }, { "input": "stethoscope", "output": "⠌⠑⠹⠕⠎⠉⠕â â ‘" }, { "input": "stethoscopes", "output": "⠌⠑⠹⠕⠎⠉⠕â â ‘â Ž" }, { "input": "stevedore", "output": "⠌⠑⠧⠫⠕⠗⠑" }, { "input": "stevedores", "output": "⠌⠑⠧⠫⠕⠗⠑⠎" }, { "input": "stew", "output": "⠌⠑⠺" }, { "input": "steward", "output": "⠌⠑⠺⠜⠙" }, { "input": "stewarded", "output": "⠌⠑⠺⠜⠙⠫" }, { "input": "stewardess", "output": "⠌⠑⠺⠜⠙⠑⠎⠎" }, { "input": "stewardesses", "output": "⠌⠑⠺⠜⠙⠑⠎⠎⠑⠎" }, { "input": "stewarding", "output": "⠌⠑⠺⠜⠙⠬" }, { "input": "stewards", "output": "⠌⠑⠺⠜⠙⠎" }, { "input": "stewardship", "output": "⠌⠑⠺⠜⠙⠩⠊â " }, { "input": "stewed", "output": "⠌⠑⠺⠫" }, { "input": "stewing", "output": "⠌⠑⠺⠬" }, { "input": "stews", "output": "⠌⠑⠺⠎" }, { "input": "stick", "output": "⠌⠊⠉⠅" }, { "input": "sticker", "output": "⠌⠊⠉⠅⠻" }, { "input": "stickers", "output": "⠌⠊⠉⠅⠻⠎" }, { "input": "stickier", "output": "⠌⠊⠉⠅⠊⠻" }, { "input": "stickies", "output": "⠌⠊⠉⠅⠊⠑⠎" }, { "input": "stickiest", "output": "⠌⠊⠉⠅⠊⠑⠌" }, { "input": "stickiness", "output": "⠌⠊⠉⠅⠊⠰⠎" }, { "input": "sticking", "output": "⠌⠊⠉⠅⠬" }, { "input": "stickleback", "output": "⠌⠊⠉⠅⠇⠑⠃â â ‰â …" }, { "input": "sticklebacks", "output": "⠌⠊⠉⠅⠇⠑⠃â â ‰â …â Ž" }, { "input": "stickler", "output": "⠌⠊⠉⠅⠇⠻" }, { "input": "sticklers", "output": "⠌⠊⠉⠅⠇⠻⠎" }, { "input": "stickpin", "output": "⠌⠊⠉⠅â â ”" }, { "input": "stickpins", "output": "⠌⠊⠉⠅â â ”â Ž" }, { "input": "sticks", "output": "⠌⠊⠉⠅⠎" }, { "input": "stickup", "output": "⠌⠊⠉⠅⠥â " }, { "input": "stickups", "output": "⠌⠊⠉⠅⠥â â Ž" }, { "input": "sticky", "output": "⠌⠊⠉⠅⠽" }, { "input": "sties", "output": "⠌⠊⠑⠎" }, { "input": "stiff", "output": "⠌⠊⠋⠋" }, { "input": "stiffed", "output": "⠌⠊⠖⠫" }, { "input": "stiffen", "output": "⠌⠊⠖⠢" }, { "input": "stiffened", "output": "⠌⠊⠖⠢⠫" }, { "input": "stiffener", "output": "⠌⠊⠖⠢⠻" }, { "input": "stiffeners", "output": "⠌⠊⠖⠢⠻⠎" }, { "input": "stiffening", "output": "⠌⠊⠖⠢⠬" }, { "input": "stiffens", "output": "⠌⠊⠖⠢⠎" }, { "input": "stiffer", "output": "⠌⠊⠖⠻" }, { "input": "stiffest", "output": "⠌⠊⠖⠑⠌" }, { "input": "stiffing", "output": "⠌⠊⠖⠬" }, { "input": "stiffly", "output": "⠌⠊⠖⠇⠽" }, { "input": "stiffness", "output": "⠌⠊⠖⠰⠎" }, { "input": "stiffs", "output": "⠌⠊⠖⠎" }, { "input": "stifle", "output": "⠌⠊⠋⠇⠑" }, { "input": "stifled", "output": "⠌⠊⠋⠇⠫" }, { "input": "stifles", "output": "⠌⠊⠋⠇⠑⠎" }, { "input": "stifling", "output": "⠌⠊⠋⠇⠬" }, { "input": "stiflings", "output": "⠌⠊⠋⠇⠬⠎" }, { "input": "stigma", "output": "⠌⠊⠛â â " }, { "input": "stigmas", "output": "⠌⠊⠛â â â Ž" }, { "input": "stigmata", "output": "⠌⠊⠛â â â žâ " }, { "input": "stigmatize", "output": "⠌⠊⠛â â â žâ Šâ µâ ‘" }, { "input": "stigmatized", "output": "⠌⠊⠛â â â žâ Šâ µâ «" }, { "input": "stigmatizes", "output": "⠌⠊⠛â â â žâ Šâ µâ ‘â Ž" }, { "input": "stigmatizing", "output": "⠌⠊⠛â â â žâ Šâ µâ ¬" }, { "input": "stile", "output": "⠌⠊⠇⠑" }, { "input": "stiles", "output": "⠌⠊⠇⠑⠎" }, { "input": "stiletto", "output": "⠌⠊⠇⠑⠞⠞⠕" }, { "input": "stilettoes", "output": "⠌⠊⠇⠑⠞⠞⠕⠑⠎" }, { "input": "stilettos", "output": "⠌⠊⠇⠑⠞⠞⠕⠎" }, { "input": "still", "output": "â Œ" }, { "input": "stillbirth", "output": "⠌⠊⠇⠇⠃⠊⠗⠹" }, { "input": "stillbirths", "output": "⠌⠊⠇⠇⠃⠊⠗⠹⠎" }, { "input": "stillborn", "output": "⠌⠊⠇⠇⠃⠕⠗â " }, { "input": "stilled", "output": "⠌⠊⠇⠇⠫" }, { "input": "stiller", "output": "⠌⠊⠇⠇⠻" }, { "input": "stillest", "output": "⠌⠊⠇⠇⠑⠌" }, { "input": "stilling", "output": "⠌⠊⠇⠇⠬" }, { "input": "stillness", "output": "⠌⠊⠇⠇⠰⠎" }, { "input": "stills", "output": "⠌⠊⠇⠇⠎" }, { "input": "stilt", "output": "⠌⠊⠇⠞" }, { "input": "stilted", "output": "⠌⠊⠇⠞⠫" }, { "input": "stilts", "output": "⠌⠊⠇⠞⠎" }, { "input": "stimulant", "output": "⠌⠊â â ¥â ‡â â â ž" }, { "input": "stimulants", "output": "⠌⠊â â ¥â ‡â â â žâ Ž" }, { "input": "stimulate", "output": "⠌⠊â â ¥â ‡â â žâ ‘" }, { "input": "stimulated", "output": "⠌⠊â â ¥â ‡â â žâ «" }, { "input": "stimulates", "output": "⠌⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "stimulating", "output": "⠌⠊â â ¥â ‡â â žâ ¬" }, { "input": "stimulation", "output": "⠌⠊â â ¥â ‡â â °â " }, { "input": "stimuli", "output": "⠌⠊â â ¥â ‡â Š" }, { "input": "stimulus", "output": "⠌⠊â â ¥â ‡â ¥â Ž" }, { "input": "sting", "output": "⠌⠬" }, { "input": "stinger", "output": "⠌⠬⠻" }, { "input": "stingers", "output": "⠌⠬⠻⠎" }, { "input": "stingier", "output": "⠌⠬⠊⠻" }, { "input": "stingiest", "output": "⠌⠬⠊⠑⠌" }, { "input": "stingily", "output": "⠌⠬⠊⠇⠽" }, { "input": "stinginess", "output": "⠌⠬⠊⠰⠎" }, { "input": "stinging", "output": "⠌⠬⠬" }, { "input": "stingray", "output": "⠌⠬⠗â â ½" }, { "input": "stingrays", "output": "⠌⠬⠗â â ½â Ž" }, { "input": "stings", "output": "⠌⠬⠎" }, { "input": "stingy", "output": "⠌⠬⠽" }, { "input": "stink", "output": "⠌⠔⠅" }, { "input": "stinker", "output": "⠌⠔⠅⠻" }, { "input": "stinkers", "output": "⠌⠔⠅⠻⠎" }, { "input": "stinking", "output": "⠌⠔⠅⠬" }, { "input": "stinks", "output": "⠌⠔⠅⠎" }, { "input": "stint", "output": "⠌⠔⠞" }, { "input": "stinted", "output": "⠌⠔⠞⠫" }, { "input": "stinting", "output": "⠌⠔⠞⠬" }, { "input": "stints", "output": "⠌⠔⠞⠎" }, { "input": "stipend", "output": "⠌⠊â â ¢â ™" }, { "input": "stipends", "output": "⠌⠊â â ¢â ™â Ž" }, { "input": "stipple", "output": "⠌⠊â â â ‡â ‘" }, { "input": "stippled", "output": "⠌⠊â â â ‡â «" }, { "input": "stipples", "output": "⠌⠊â â â ‡â ‘â Ž" }, { "input": "stippling", "output": "⠌⠊â â â ‡â ¬" }, { "input": "stipulate", "output": "⠌⠊â â ¥â ‡â â žâ ‘" }, { "input": "stipulated", "output": "⠌⠊â â ¥â ‡â â žâ «" }, { "input": "stipulates", "output": "⠌⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "stipulating", "output": "⠌⠊â â ¥â ‡â â žâ ¬" }, { "input": "stipulation", "output": "⠌⠊â â ¥â ‡â â °â " }, { "input": "stipulations", "output": "⠌⠊â â ¥â ‡â â °â â Ž" }, { "input": "stir", "output": "⠌⠊⠗" }, { "input": "stirred", "output": "⠌⠊⠗⠗⠫" }, { "input": "stirrer", "output": "⠌⠊⠗⠗⠻" }, { "input": "stirrers", "output": "⠌⠊⠗⠗⠻⠎" }, { "input": "stirring", "output": "⠌⠊⠗⠗⠬" }, { "input": "stirrings", "output": "⠌⠊⠗⠗⠬⠎" }, { "input": "stirrup", "output": "⠌⠊⠗⠗⠥â " }, { "input": "stirrups", "output": "⠌⠊⠗⠗⠥â â Ž" }, { "input": "stirs", "output": "⠌⠊⠗⠎" }, { "input": "stitch", "output": "⠌⠊⠞⠡" }, { "input": "stitched", "output": "⠌⠊⠞⠡⠫" }, { "input": "stitches", "output": "⠌⠊⠞⠡⠑⠎" }, { "input": "stitching", "output": "⠌⠊⠞⠡⠬" }, { "input": "stoat", "output": "⠌⠕â â ž" }, { "input": "stoats", "output": "⠌⠕â â žâ Ž" }, { "input": "stochastic", "output": "⠌⠕⠡â â Œâ Šâ ‰" }, { "input": "stock", "output": "⠌⠕⠉⠅" }, { "input": "stockade", "output": "⠌⠕⠉⠅â â ™â ‘" }, { "input": "stockaded", "output": "⠌⠕⠉⠅â â ™â «" }, { "input": "stockades", "output": "⠌⠕⠉⠅â â ™â ‘â Ž" }, { "input": "stockading", "output": "⠌⠕⠉⠅â â ™â ¬" }, { "input": "stockbroker", "output": "⠌⠕⠉⠅⠃⠗⠕⠅⠻" }, { "input": "stockbrokers", "output": "⠌⠕⠉⠅⠃⠗⠕⠅⠻⠎" }, { "input": "stocked", "output": "⠌⠕⠉⠅⠫" }, { "input": "stockholder", "output": "⠌⠕⠉⠅⠓⠕⠇⠙⠻" }, { "input": "stockholders", "output": "⠌⠕⠉⠅⠓⠕⠇⠙⠻⠎" }, { "input": "stockier", "output": "⠌⠕⠉⠅⠊⠻" }, { "input": "stockiest", "output": "⠌⠕⠉⠅⠊⠑⠌" }, { "input": "stockiness", "output": "⠌⠕⠉⠅⠊⠰⠎" }, { "input": "stocking", "output": "⠌⠕⠉⠅⠬" }, { "input": "stockings", "output": "⠌⠕⠉⠅⠬⠎" }, { "input": "stockpile", "output": "⠌⠕⠉⠅â â Šâ ‡â ‘" }, { "input": "stockpiled", "output": "⠌⠕⠉⠅â â Šâ ‡â «" }, { "input": "stockpiles", "output": "⠌⠕⠉⠅â â Šâ ‡â ‘â Ž" }, { "input": "stockpiling", "output": "⠌⠕⠉⠅â â Šâ ‡â ¬" }, { "input": "stockroom", "output": "⠌⠕⠉⠅⠗⠕⠕â " }, { "input": "stockrooms", "output": "⠌⠕⠉⠅⠗⠕⠕â â Ž" }, { "input": "stocks", "output": "⠌⠕⠉⠅⠎" }, { "input": "stocky", "output": "⠌⠕⠉⠅⠽" }, { "input": "stockyard", "output": "⠌⠕⠉⠅⠽⠜⠙" }, { "input": "stockyards", "output": "⠌⠕⠉⠅⠽⠜⠙⠎" }, { "input": "stodgier", "output": "⠌⠕⠙⠛⠊⠻" }, { "input": "stodgiest", "output": "⠌⠕⠙⠛⠊⠑⠌" }, { "input": "stodginess", "output": "⠌⠕⠙⠛⠊⠰⠎" }, { "input": "stodgy", "output": "⠌⠕⠙⠛⠽" }, { "input": "stoic", "output": "⠌⠕⠊⠉" }, { "input": "stoical", "output": "⠌⠕⠊⠉â â ‡" }, { "input": "stoically", "output": "⠌⠕⠊⠉â â ‡â ‡â ½" }, { "input": "stoicism", "output": "⠌⠕⠊⠉⠊⠎â " }, { "input": "stoics", "output": "⠌⠕⠊⠉⠎" }, { "input": "stoke", "output": "⠌⠕⠅⠑" }, { "input": "stoked", "output": "⠌⠕⠅⠫" }, { "input": "stoker", "output": "⠌⠕⠅⠻" }, { "input": "stokers", "output": "⠌⠕⠅⠻⠎" }, { "input": "stokes", "output": "⠌⠕⠅⠑⠎" }, { "input": "stoking", "output": "⠌⠕⠅⠬" }, { "input": "stole", "output": "⠌⠕⠇⠑" }, { "input": "stolen", "output": "⠌⠕⠇⠢" }, { "input": "stoles", "output": "⠌⠕⠇⠑⠎" }, { "input": "stolid", "output": "⠌⠕⠇⠊⠙" }, { "input": "stolider", "output": "⠌⠕⠇⠊⠙⠻" }, { "input": "stolidest", "output": "⠌⠕⠇⠊⠙⠑⠌" }, { "input": "stolidity", "output": "⠌⠕⠇⠊⠙⠰⠽" }, { "input": "stolidly", "output": "⠌⠕⠇⠊⠙⠇⠽" }, { "input": "stomach", "output": "⠌⠕â â â ¡" }, { "input": "stomachache", "output": "⠌⠕â â â ¡â â ¡â ‘" }, { "input": "stomachaches", "output": "⠌⠕â â â ¡â â ¡â ‘â Ž" }, { "input": "stomached", "output": "⠌⠕â â â ¡â «" }, { "input": "stomaching", "output": "⠌⠕â â â ¡â ¬" }, { "input": "stomachs", "output": "⠌⠕â â â ¡â Ž" }, { "input": "stomp", "output": "⠌⠕â â " }, { "input": "stomped", "output": "⠌⠕â â â «" }, { "input": "stomping", "output": "⠌⠕â â â ¬" }, { "input": "stomps", "output": "⠌⠕â â â Ž" }, { "input": "stone", "output": "â Œâ â •" }, { "input": "stoned", "output": "⠌⠕â â «" }, { "input": "stones", "output": "â Œâ â •â Ž" }, { "input": "stonewall", "output": "â Œâ â •â ºâ â ‡â ‡" }, { "input": "stonewalled", "output": "â Œâ â •â ºâ â ‡â ‡â «" }, { "input": "stonewalling", "output": "â Œâ â •â ºâ â ‡â ‡â ¬" }, { "input": "stonewalls", "output": "â Œâ â •â ºâ â ‡â ‡â Ž" }, { "input": "stoneware", "output": "â Œâ â •⠺⠜⠑" }, { "input": "stonework", "output": "â Œâ â •â â º" }, { "input": "stoney", "output": "â Œâ â •â ½" }, { "input": "stonier", "output": "⠌⠕â â Šâ »" }, { "input": "stoniest", "output": "⠌⠕â â Šâ ‘â Œ" }, { "input": "stonily", "output": "⠌⠕â â Šâ ‡â ½" }, { "input": "stoning", "output": "⠌⠕â â ¬" }, { "input": "stony", "output": "⠌⠕â â ½" }, { "input": "stood", "output": "⠌⠕⠕⠙" }, { "input": "stooge", "output": "⠌⠕⠕⠛⠑" }, { "input": "stooges", "output": "⠌⠕⠕⠛⠑⠎" }, { "input": "stool", "output": "⠌⠕⠕⠇" }, { "input": "stools", "output": "⠌⠕⠕⠇⠎" }, { "input": "stoop", "output": "⠌⠕⠕â " }, { "input": "stooped", "output": "⠌⠕⠕â â «" }, { "input": "stooping", "output": "⠌⠕⠕â â ¬" }, { "input": "stoops", "output": "⠌⠕⠕â â Ž" }, { "input": "stop", "output": "⠌⠕â " }, { "input": "stopcock", "output": "⠌⠕â â ‰â •⠉⠅" }, { "input": "stopcocks", "output": "⠌⠕â â ‰â •⠉⠅⠎" }, { "input": "stopgap", "output": "⠌⠕â â ›â â " }, { "input": "stopgaps", "output": "⠌⠕â â ›â â â Ž" }, { "input": "stoplight", "output": "⠌⠕â â ‡â Šâ £â ž" }, { "input": "stoplights", "output": "⠌⠕â â ‡â Šâ £â žâ Ž" }, { "input": "stopover", "output": "⠌⠕â â •â §â »" }, { "input": "stopovers", "output": "⠌⠕â â •⠧⠻⠎" }, { "input": "stoppable", "output": "⠌⠕â â â â ƒâ ‡â ‘" }, { "input": "stoppage", "output": "⠌⠕â â â â ›â ‘" }, { "input": "stoppages", "output": "⠌⠕â â â â ›â ‘â Ž" }, { "input": "stopped", "output": "⠌⠕â â â «" }, { "input": "stopper", "output": "⠌⠕â â â »" }, { "input": "stoppered", "output": "⠌⠕â â â »â «" }, { "input": "stoppering", "output": "⠌⠕â â â »â ¬" }, { "input": "stoppers", "output": "⠌⠕â â â »â Ž" }, { "input": "stopping", "output": "⠌⠕â â â ¬" }, { "input": "stops", "output": "⠌⠕â â Ž" }, { "input": "stopwatch", "output": "⠌⠕â â ºâ â žâ ¡" }, { "input": "stopwatches", "output": "⠌⠕â â ºâ â žâ ¡â ‘â Ž" }, { "input": "storage", "output": "⠌⠕⠗â â ›â ‘" }, { "input": "store", "output": "⠌⠕⠗⠑" }, { "input": "stored", "output": "⠌⠕⠗⠫" }, { "input": "storefront", "output": "⠌⠕⠗⠑⠋⠗⠕â â ž" }, { "input": "storefronts", "output": "⠌⠕⠗⠑⠋⠗⠕â â žâ Ž" }, { "input": "storehouse", "output": "⠌⠕⠗⠑⠓⠳⠎⠑" }, { "input": "storehouses", "output": "⠌⠕⠗⠑⠓⠳⠎⠑⠎" }, { "input": "storekeeper", "output": "⠌⠕⠗⠑⠅⠑⠑â â »" }, { "input": "storekeepers", "output": "⠌⠕⠗⠑⠅⠑⠑â â »â Ž" }, { "input": "storeroom", "output": "⠌⠕⠗⠑⠗⠕⠕â " }, { "input": "storerooms", "output": "⠌⠕⠗⠑⠗⠕⠕â â Ž" }, { "input": "stores", "output": "⠌⠕⠗⠑⠎" }, { "input": "storey", "output": "⠌⠕⠗⠑⠽" }, { "input": "storeys", "output": "⠌⠕⠗⠑⠽⠎" }, { "input": "storied", "output": "⠌⠕⠗⠊⠫" }, { "input": "stories", "output": "⠌⠕⠗⠊⠑⠎" }, { "input": "storing", "output": "⠌⠕⠗⠬" }, { "input": "stork", "output": "⠌⠕⠗⠅" }, { "input": "storks", "output": "⠌⠕⠗⠅⠎" }, { "input": "storm", "output": "⠌⠕⠗â " }, { "input": "stormed", "output": "⠌⠕⠗â â «" }, { "input": "stormier", "output": "⠌⠕⠗â â Šâ »" }, { "input": "stormiest", "output": "⠌⠕⠗â â Šâ ‘â Œ" }, { "input": "stormily", "output": "⠌⠕⠗â â Šâ ‡â ½" }, { "input": "storminess", "output": "⠌⠕⠗â â Šâ °â Ž" }, { "input": "storming", "output": "⠌⠕⠗â â ¬" }, { "input": "storms", "output": "⠌⠕⠗â â Ž" }, { "input": "stormy", "output": "⠌⠕⠗â â ½" }, { "input": "story", "output": "⠌⠕⠗⠽" }, { "input": "storybook", "output": "⠌⠕⠗⠽⠃⠕⠕⠅" }, { "input": "storybooks", "output": "⠌⠕⠗⠽⠃⠕⠕⠅⠎" }, { "input": "storyteller", "output": "⠌⠕⠗⠽⠞⠑⠇⠇⠻" }, { "input": "storytellers", "output": "⠌⠕⠗⠽⠞⠑⠇⠇⠻⠎" }, { "input": "stout", "output": "⠌⠳⠞" }, { "input": "stouter", "output": "⠌⠳⠞⠻" }, { "input": "stoutest", "output": "⠌⠳⠞⠑⠌" }, { "input": "stoutly", "output": "⠌⠳⠞⠇⠽" }, { "input": "stoutness", "output": "⠌⠳⠞⠰⠎" }, { "input": "stove", "output": "⠌⠕⠧⠑" }, { "input": "stovepipe", "output": "⠌⠕⠧⠑â â Šâ â ‘" }, { "input": "stovepipes", "output": "⠌⠕⠧⠑â â Šâ â ‘â Ž" }, { "input": "stoves", "output": "⠌⠕⠧⠑⠎" }, { "input": "stow", "output": "⠌⠪" }, { "input": "stowaway", "output": "⠌⠪â â ºâ â ½" }, { "input": "stowaways", "output": "⠌⠪â â ºâ â ½â Ž" }, { "input": "stowed", "output": "⠌⠪⠫" }, { "input": "stowing", "output": "⠌⠪⠬" }, { "input": "stows", "output": "⠌⠪⠎" }, { "input": "straddle", "output": "⠌⠗â â ™â ™â ‡â ‘" }, { "input": "straddled", "output": "⠌⠗â â ™â ™â ‡â «" }, { "input": "straddles", "output": "⠌⠗â â ™â ™â ‡â ‘â Ž" }, { "input": "straddling", "output": "⠌⠗â â ™â ™â ‡â ¬" }, { "input": "strafe", "output": "⠌⠗â â ‹â ‘" }, { "input": "strafed", "output": "⠌⠗â â ‹â «" }, { "input": "strafes", "output": "⠌⠗â â ‹â ‘â Ž" }, { "input": "strafing", "output": "⠌⠗â â ‹â ¬" }, { "input": "straggle", "output": "⠌⠗â â ¶â ‡â ‘" }, { "input": "straggled", "output": "⠌⠗â â ¶â ‡â «" }, { "input": "straggler", "output": "⠌⠗â â ¶â ‡â »" }, { "input": "stragglers", "output": "⠌⠗â â ¶â ‡â »â Ž" }, { "input": "straggles", "output": "⠌⠗â â ¶â ‡â ‘â Ž" }, { "input": "stragglier", "output": "⠌⠗â â ¶â ‡â Šâ »" }, { "input": "straggliest", "output": "⠌⠗â â ¶â ‡â Šâ ‘â Œ" }, { "input": "straggling", "output": "⠌⠗â â ¶â ‡â ¬" }, { "input": "straggly", "output": "⠌⠗â â ¶â ‡â ½" }, { "input": "straight", "output": "⠌⠗â â Šâ £â ž" }, { "input": "straightaway", "output": "⠌⠗â â Šâ £â žâ â ºâ â ½" }, { "input": "straightaways", "output": "⠌⠗â â Šâ £â žâ â ºâ â ½â Ž" }, { "input": "straightedge", "output": "⠌⠗â â Šâ £â žâ «â ›â ‘" }, { "input": "straightedges", "output": "⠌⠗â â Šâ £â žâ «â ›â ‘â Ž" }, { "input": "straighten", "output": "⠌⠗â â Šâ £â žâ ¢" }, { "input": "straightened", "output": "⠌⠗â â Šâ £â žâ ¢â «" }, { "input": "straightening", "output": "⠌⠗â â Šâ £â žâ ¢â ¬" }, { "input": "straightens", "output": "⠌⠗â â Šâ £â žâ ¢â Ž" }, { "input": "straighter", "output": "⠌⠗â â Šâ £â žâ »" }, { "input": "straightest", "output": "⠌⠗â â Šâ £â žâ ‘â Œ" }, { "input": "straightforward", "output": "⠌⠗â â Šâ £â žâ ¿â ºâ œâ ™" }, { "input": "straightforwardly", "output": "⠌⠗â â Šâ £â žâ ¿â ºâ œâ ™â ‡â ½" }, { "input": "straightjacket", "output": "⠌⠗â â Šâ £â žâ šâ â ‰â …â ‘â ž" }, { "input": "straightjacketed", "output": "⠌⠗â â Šâ £â žâ šâ â ‰â …â ‘â žâ «" }, { "input": "straightjacketing", "output": "⠌⠗â â Šâ £â žâ šâ â ‰â …â ‘â žâ ¬" }, { "input": "straightjackets", "output": "⠌⠗â â Šâ £â žâ šâ â ‰â …â ‘â žâ Ž" }, { "input": "straightness", "output": "⠌⠗â â Šâ £â žâ °â Ž" }, { "input": "straights", "output": "⠌⠗â â Šâ £â žâ Ž" }, { "input": "strain", "output": "⠌⠗â â ”" }, { "input": "strained", "output": "⠌⠗â â ”â «" }, { "input": "strainer", "output": "⠌⠗â â ”â »" }, { "input": "strainers", "output": "⠌⠗â â ”⠻⠎" }, { "input": "straining", "output": "⠌⠗â â ”â ¬" }, { "input": "strains", "output": "⠌⠗â â ”â Ž" }, { "input": "strait", "output": "⠌⠗â â Šâ ž" }, { "input": "straiten", "output": "⠌⠗â â Šâ žâ ¢" }, { "input": "straitened", "output": "⠌⠗â â Šâ žâ ¢â «" }, { "input": "straitening", "output": "⠌⠗â â Šâ žâ ¢â ¬" }, { "input": "straitens", "output": "⠌⠗â â Šâ žâ ¢â Ž" }, { "input": "straitjacket", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â ž" }, { "input": "straitjacketed", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ «" }, { "input": "straitjacketing", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ ¬" }, { "input": "straitjackets", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ Ž" }, { "input": "straits", "output": "⠌⠗â â Šâ žâ Ž" }, { "input": "strand", "output": "⠌⠗⠯" }, { "input": "stranded", "output": "⠌⠗⠯⠫" }, { "input": "stranding", "output": "⠌⠗⠯⠬" }, { "input": "strands", "output": "⠌⠗⠯⠎" }, { "input": "strange", "output": "⠌⠗â â â ›â ‘" }, { "input": "strangely", "output": "⠌⠗â â â ›â ‘⠇⠽" }, { "input": "strangeness", "output": "⠌⠗â â â ›â ‘â °â Ž" }, { "input": "stranger", "output": "⠌⠗â â â ›â »" }, { "input": "strangers", "output": "⠌⠗â â â ›â »â Ž" }, { "input": "strangest", "output": "⠌⠗â â â ›â ‘â Œ" }, { "input": "strangle", "output": "⠌⠗â â â ›â ‡â ‘" }, { "input": "strangled", "output": "⠌⠗â â â ›â ‡â «" }, { "input": "stranglehold", "output": "⠌⠗â â â ›â ‡â ‘⠓⠕⠇⠙" }, { "input": "strangleholds", "output": "⠌⠗â â â ›â ‡â ‘⠓⠕⠇⠙⠎" }, { "input": "strangler", "output": "⠌⠗â â â ›â ‡â »" }, { "input": "stranglers", "output": "⠌⠗â â â ›â ‡â »â Ž" }, { "input": "strangles", "output": "⠌⠗â â â ›â ‡â ‘â Ž" }, { "input": "strangling", "output": "⠌⠗â â â ›â ‡â ¬" }, { "input": "strangulate", "output": "⠌⠗â â â ›â ¥â ‡â â žâ ‘" }, { "input": "strangulated", "output": "⠌⠗â â â ›â ¥â ‡â â žâ «" }, { "input": "strangulates", "output": "⠌⠗â â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "strangulating", "output": "⠌⠗â â â ›â ¥â ‡â â žâ ¬" }, { "input": "strangulation", "output": "⠌⠗â â â ›â ¥â ‡â â °â " }, { "input": "strap", "output": "⠌⠗â â " }, { "input": "strapless", "output": "⠌⠗â â â ¨â Ž" }, { "input": "straplesses", "output": "⠌⠗â â â ¨â Žâ ‘â Ž" }, { "input": "strapped", "output": "⠌⠗â â â â «" }, { "input": "strapping", "output": "⠌⠗â â â â ¬" }, { "input": "straps", "output": "⠌⠗â â â Ž" }, { "input": "strata", "output": "⠌⠗â â žâ " }, { "input": "stratagem", "output": "⠌⠗â â žâ â ›â ‘â " }, { "input": "stratagems", "output": "⠌⠗â â žâ â ›â ‘â â Ž" }, { "input": "strategic", "output": "⠌⠗â â žâ ‘⠛⠊⠉" }, { "input": "strategically", "output": "⠌⠗â â žâ ‘⠛⠊⠉â â ‡â ‡â ½" }, { "input": "strategies", "output": "⠌⠗â â žâ ‘⠛⠊⠑⠎" }, { "input": "strategist", "output": "⠌⠗â â žâ ‘⠛⠊⠌" }, { "input": "strategists", "output": "⠌⠗â â žâ ‘⠛⠊⠌⠎" }, { "input": "strategy", "output": "⠌⠗â â žâ ‘⠛⠽" }, { "input": "stratification", "output": "⠌⠗â â žâ Šâ ‹â Šâ ‰â â °â " }, { "input": "stratified", "output": "⠌⠗â â žâ Šâ ‹â Šâ «" }, { "input": "stratifies", "output": "⠌⠗â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "stratify", "output": "⠌⠗â â žâ Šâ ‹â ½" }, { "input": "stratifying", "output": "⠌⠗â â žâ Šâ ‹â ½â ¬" }, { "input": "stratosphere", "output": "⠌⠗â â žâ •â Žâ â â “" }, { "input": "stratospheres", "output": "⠌⠗â â žâ •â Žâ â â “â Ž" }, { "input": "stratum", "output": "⠌⠗â â žâ ¥â " }, { "input": "stratums", "output": "⠌⠗â â žâ ¥â â Ž" }, { "input": "straw", "output": "⠌⠗â â º" }, { "input": "strawberries", "output": "⠌⠗â â ºâ ƒâ »â —â Šâ ‘â Ž" }, { "input": "strawberry", "output": "⠌⠗â â ºâ ƒâ »â —â ½" }, { "input": "strawed", "output": "⠌⠗â â ºâ «" }, { "input": "strawing", "output": "⠌⠗â â ºâ ¬" }, { "input": "straws", "output": "⠌⠗â â ºâ Ž" }, { "input": "stray", "output": "⠌⠗â â ½" }, { "input": "strayed", "output": "⠌⠗â â ½â «" }, { "input": "straying", "output": "⠌⠗â â ½â ¬" }, { "input": "strays", "output": "⠌⠗â â ½â Ž" }, { "input": "streak", "output": "⠌⠗⠂⠅" }, { "input": "streaked", "output": "⠌⠗⠂⠅⠫" }, { "input": "streakier", "output": "⠌⠗⠂⠅⠊⠻" }, { "input": "streakiest", "output": "⠌⠗⠂⠅⠊⠑⠌" }, { "input": "streaking", "output": "⠌⠗⠂⠅⠬" }, { "input": "streaks", "output": "⠌⠗⠂⠅⠎" }, { "input": "streaky", "output": "⠌⠗⠂⠅⠽" }, { "input": "stream", "output": "⠌⠗⠂â " }, { "input": "streamed", "output": "⠌⠗⠂â â «" }, { "input": "streamer", "output": "⠌⠗⠂â â »" }, { "input": "streamers", "output": "⠌⠗⠂â â »â Ž" }, { "input": "streaming", "output": "⠌⠗⠂â â ¬" }, { "input": "streamline", "output": "⠌⠗⠂â â ‡â ”â ‘" }, { "input": "streamlined", "output": "⠌⠗⠂â â ‡â ”â «" }, { "input": "streamlines", "output": "⠌⠗⠂â â ‡â ”â ‘â Ž" }, { "input": "streamlining", "output": "⠌⠗⠂â â ‡â ”â ¬" }, { "input": "streams", "output": "⠌⠗⠂â â Ž" }, { "input": "street", "output": "⠌⠗⠑⠑⠞" }, { "input": "streetcar", "output": "⠌⠗⠑⠑⠞⠉⠜" }, { "input": "streetcars", "output": "⠌⠗⠑⠑⠞⠉⠜⠎" }, { "input": "streetlight", "output": "⠌⠗⠑⠑⠞⠇⠊⠣⠞" }, { "input": "streetlights", "output": "⠌⠗⠑⠑⠞⠇⠊⠣⠞⠎" }, { "input": "streets", "output": "⠌⠗⠑⠑⠞⠎" }, { "input": "streetwalker", "output": "⠌⠗⠑⠑⠞⠺â â ‡â …â »" }, { "input": "streetwalkers", "output": "⠌⠗⠑⠑⠞⠺â â ‡â …⠻⠎" }, { "input": "streetwise", "output": "⠌⠗⠑⠑⠞⠺⠊⠎⠑" }, { "input": "strength", "output": "⠌⠗⠢⠛⠹" }, { "input": "strengthen", "output": "⠌⠗⠢⠛⠮â " }, { "input": "strengthened", "output": "⠌⠗⠢⠛⠮â â «" }, { "input": "strengthening", "output": "⠌⠗⠢⠛⠮â â ¬" }, { "input": "strengthens", "output": "⠌⠗⠢⠛⠮â â Ž" }, { "input": "strengths", "output": "⠌⠗⠢⠛⠹⠎" }, { "input": "strenuous", "output": "⠌⠗⠢⠥⠳⠎" }, { "input": "strenuously", "output": "⠌⠗⠢⠥⠳⠎⠇⠽" }, { "input": "strenuousness", "output": "⠌⠗⠢⠥⠳⠎⠰⠎" }, { "input": "strep", "output": "⠌⠗⠑â " }, { "input": "streptococcal", "output": "⠌⠗⠑â â žâ •⠉⠕⠒â â ‡" }, { "input": "streptococci", "output": "⠌⠗⠑â â žâ •⠉⠕⠒⠊" }, { "input": "streptococcus", "output": "⠌⠗⠑â â žâ •⠉⠕⠒⠥⠎" }, { "input": "streptomycin", "output": "⠌⠗⠑â â žâ •â â ½â ‰â ”" }, { "input": "stress", "output": "⠌⠗⠑⠎⠎" }, { "input": "stressed", "output": "⠌⠗⠑⠎⠎⠫" }, { "input": "stresses", "output": "⠌⠗⠑⠎⠎⠑⠎" }, { "input": "stressful", "output": "⠌⠗⠑⠎⠎⠰⠇" }, { "input": "stressing", "output": "⠌⠗⠑⠎⠎⠬" }, { "input": "stretch", "output": "⠌⠗⠑⠞⠡" }, { "input": "stretched", "output": "⠌⠗⠑⠞⠡⠫" }, { "input": "stretcher", "output": "⠌⠗⠑⠞⠡⠻" }, { "input": "stretchers", "output": "⠌⠗⠑⠞⠡⠻⠎" }, { "input": "stretches", "output": "⠌⠗⠑⠞⠡⠑⠎" }, { "input": "stretchier", "output": "⠌⠗⠑⠞⠡⠊⠻" }, { "input": "stretchiest", "output": "⠌⠗⠑⠞⠡⠊⠑⠌" }, { "input": "stretching", "output": "⠌⠗⠑⠞⠡⠬" }, { "input": "stretchy", "output": "⠌⠗⠑⠞⠡⠽" }, { "input": "strew", "output": "⠌⠗⠑⠺" }, { "input": "strewed", "output": "⠌⠗⠑⠺⠫" }, { "input": "strewing", "output": "⠌⠗⠑⠺⠬" }, { "input": "strewn", "output": "⠌⠗⠑⠺â " }, { "input": "strews", "output": "⠌⠗⠑⠺⠎" }, { "input": "striated", "output": "⠌⠗⠊â â žâ «" }, { "input": "stricken", "output": "⠌⠗⠊⠉⠅⠢" }, { "input": "strict", "output": "⠌⠗⠊⠉⠞" }, { "input": "stricter", "output": "⠌⠗⠊⠉⠞⠻" }, { "input": "strictest", "output": "⠌⠗⠊⠉⠞⠑⠌" }, { "input": "strictly", "output": "⠌⠗⠊⠉⠞⠇⠽" }, { "input": "strictness", "output": "⠌⠗⠊⠉⠞⠰⠎" }, { "input": "stricture", "output": "⠌⠗⠊⠉⠞⠥⠗⠑" }, { "input": "strictures", "output": "⠌⠗⠊⠉⠞⠥⠗⠑⠎" }, { "input": "stridden", "output": "⠌⠗⠊⠙⠙⠢" }, { "input": "stride", "output": "⠌⠗⠊⠙⠑" }, { "input": "strident", "output": "⠌⠗⠊⠙⠢⠞" }, { "input": "stridently", "output": "⠌⠗⠊⠙⠢⠞⠇⠽" }, { "input": "strides", "output": "⠌⠗⠊⠙⠑⠎" }, { "input": "striding", "output": "⠌⠗⠊⠙⠬" }, { "input": "strife", "output": "⠌⠗⠊⠋⠑" }, { "input": "strike", "output": "⠌⠗⠊⠅⠑" }, { "input": "strikeout", "output": "⠌⠗⠊⠅⠑⠳⠞" }, { "input": "strikeouts", "output": "⠌⠗⠊⠅⠑⠳⠞⠎" }, { "input": "striker", "output": "⠌⠗⠊⠅⠻" }, { "input": "strikers", "output": "⠌⠗⠊⠅⠻⠎" }, { "input": "strikes", "output": "⠌⠗⠊⠅⠑⠎" }, { "input": "striking", "output": "⠌⠗⠊⠅⠬" }, { "input": "strikingly", "output": "⠌⠗⠊⠅⠬⠇⠽" }, { "input": "strikings", "output": "⠌⠗⠊⠅⠬⠎" }, { "input": "string", "output": "⠌⠗⠬" }, { "input": "stringed", "output": "⠌⠗⠬⠫" }, { "input": "stringency", "output": "⠌⠗⠬⠢⠉⠽" }, { "input": "stringent", "output": "⠌⠗⠬⠢⠞" }, { "input": "stringently", "output": "⠌⠗⠬⠢⠞⠇⠽" }, { "input": "stringer", "output": "⠌⠗⠬⠻" }, { "input": "stringers", "output": "⠌⠗⠬⠻⠎" }, { "input": "stringier", "output": "⠌⠗⠬⠊⠻" }, { "input": "stringiest", "output": "⠌⠗⠬⠊⠑⠌" }, { "input": "stringing", "output": "⠌⠗⠬⠬" }, { "input": "strings", "output": "⠌⠗⠬⠎" }, { "input": "stringy", "output": "⠌⠗⠬⠽" }, { "input": "strip", "output": "⠌⠗⠊â " }, { "input": "stripe", "output": "⠌⠗⠊â â ‘" }, { "input": "striped", "output": "⠌⠗⠊â â «" }, { "input": "stripes", "output": "⠌⠗⠊â â ‘â Ž" }, { "input": "striping", "output": "⠌⠗⠊â â ¬" }, { "input": "stripling", "output": "⠌⠗⠊â â ‡â ¬" }, { "input": "striplings", "output": "⠌⠗⠊â â ‡â ¬â Ž" }, { "input": "stripped", "output": "⠌⠗⠊â â â «" }, { "input": "stripper", "output": "⠌⠗⠊â â â »" }, { "input": "strippers", "output": "⠌⠗⠊â â â »â Ž" }, { "input": "stripping", "output": "⠌⠗⠊â â â ¬" }, { "input": "strips", "output": "⠌⠗⠊â â Ž" }, { "input": "stript", "output": "⠌⠗⠊â â ž" }, { "input": "striptease", "output": "⠌⠗⠊â â žâ ‚â Žâ ‘" }, { "input": "stripteased", "output": "⠌⠗⠊â â žâ ‚â Žâ «" }, { "input": "stripteases", "output": "⠌⠗⠊â â žâ ‚â Žâ ‘â Ž" }, { "input": "stripteasing", "output": "⠌⠗⠊â â žâ ‚â Žâ ¬" }, { "input": "strive", "output": "⠌⠗⠊⠧⠑" }, { "input": "strived", "output": "⠌⠗⠊⠧⠫" }, { "input": "striven", "output": "⠌⠗⠊⠧⠢" }, { "input": "strives", "output": "⠌⠗⠊⠧⠑⠎" }, { "input": "striving", "output": "⠌⠗⠊⠧⠬" }, { "input": "strobe", "output": "⠌⠗⠕⠃⠑" }, { "input": "strobes", "output": "⠌⠗⠕⠃⠑⠎" }, { "input": "strode", "output": "⠌⠗⠕⠙⠑" }, { "input": "stroke", "output": "⠌⠗⠕⠅⠑" }, { "input": "stroked", "output": "⠌⠗⠕⠅⠫" }, { "input": "strokes", "output": "⠌⠗⠕⠅⠑⠎" }, { "input": "stroking", "output": "⠌⠗⠕⠅⠬" }, { "input": "stroll", "output": "⠌⠗⠕⠇⠇" }, { "input": "strolled", "output": "⠌⠗⠕⠇⠇⠫" }, { "input": "stroller", "output": "⠌⠗⠕⠇⠇⠻" }, { "input": "strollers", "output": "⠌⠗⠕⠇⠇⠻⠎" }, { "input": "strolling", "output": "⠌⠗⠕⠇⠇⠬" }, { "input": "strolls", "output": "⠌⠗⠕⠇⠇⠎" }, { "input": "strong", "output": "⠌⠗⠰⠛" }, { "input": "strongbox", "output": "⠌⠗⠰⠛⠃⠕⠭" }, { "input": "strongboxes", "output": "⠌⠗⠰⠛⠃⠕⠭⠑⠎" }, { "input": "stronger", "output": "⠌⠗⠰⠛⠻" }, { "input": "strongest", "output": "⠌⠗⠰⠛⠑⠌" }, { "input": "stronghold", "output": "⠌⠗⠰⠛⠓⠕⠇⠙" }, { "input": "strongholds", "output": "⠌⠗⠰⠛⠓⠕⠇⠙⠎" }, { "input": "strongly", "output": "⠌⠗⠰⠛⠇⠽" }, { "input": "strontium", "output": "⠌⠗⠕â â žâ Šâ ¥â " }, { "input": "strop", "output": "⠌⠗⠕â " }, { "input": "strophe", "output": "⠌⠗⠕â â “â ‘" }, { "input": "strophes", "output": "⠌⠗⠕â â “â ‘â Ž" }, { "input": "stropped", "output": "⠌⠗⠕â â â «" }, { "input": "stropping", "output": "⠌⠗⠕â â â ¬" }, { "input": "strops", "output": "⠌⠗⠕â â Ž" }, { "input": "strove", "output": "⠌⠗⠕⠧⠑" }, { "input": "struck", "output": "⠌⠗⠥⠉⠅" }, { "input": "structural", "output": "⠌⠗⠥⠉⠞⠥⠗â â ‡" }, { "input": "structuralist", "output": "⠌⠗⠥⠉⠞⠥⠗â â ‡â Šâ Œ" }, { "input": "structurally", "output": "⠌⠗⠥⠉⠞⠥⠗â â ‡â ‡â ½" }, { "input": "structure", "output": "⠌⠗⠥⠉⠞⠥⠗⠑" }, { "input": "structured", "output": "⠌⠗⠥⠉⠞⠥⠗⠫" }, { "input": "structures", "output": "⠌⠗⠥⠉⠞⠥⠗⠑⠎" }, { "input": "structuring", "output": "⠌⠗⠥⠉⠞⠥⠗⠬" }, { "input": "strudel", "output": "⠌⠗⠥⠙⠑⠇" }, { "input": "strudels", "output": "⠌⠗⠥⠙⠑⠇⠎" }, { "input": "struggle", "output": "⠌⠗⠥⠶⠇⠑" }, { "input": "struggled", "output": "⠌⠗⠥⠶⠇⠫" }, { "input": "struggles", "output": "⠌⠗⠥⠶⠇⠑⠎" }, { "input": "struggling", "output": "⠌⠗⠥⠶⠇⠬" }, { "input": "strum", "output": "⠌⠗⠥â " }, { "input": "strummed", "output": "⠌⠗⠥â â â «" }, { "input": "strumming", "output": "⠌⠗⠥â â â ¬" }, { "input": "strumpet", "output": "⠌⠗⠥â â â ‘â ž" }, { "input": "strumpets", "output": "⠌⠗⠥â â â ‘â žâ Ž" }, { "input": "strums", "output": "⠌⠗⠥â â Ž" }, { "input": "strung", "output": "⠌⠗⠥â â ›" }, { "input": "strut", "output": "⠌⠗⠥⠞" }, { "input": "struts", "output": "⠌⠗⠥⠞⠎" }, { "input": "strutted", "output": "⠌⠗⠥⠞⠞⠫" }, { "input": "strutting", "output": "⠌⠗⠥⠞⠞⠬" }, { "input": "strychnine", "output": "⠌⠗⠽⠡â â ”â ‘" }, { "input": "stub", "output": "⠌⠥⠃" }, { "input": "stubbed", "output": "⠌⠥⠆⠫" }, { "input": "stubbier", "output": "⠌⠥⠆⠊⠻" }, { "input": "stubbiest", "output": "⠌⠥⠆⠊⠑⠌" }, { "input": "stubbing", "output": "⠌⠥⠆⠬" }, { "input": "stubble", "output": "⠌⠥⠆⠇⠑" }, { "input": "stubblier", "output": "⠌⠥⠆⠇⠊⠻" }, { "input": "stubbliest", "output": "⠌⠥⠆⠇⠊⠑⠌" }, { "input": "stubbly", "output": "⠌⠥⠆⠇⠽" }, { "input": "stubborn", "output": "⠌⠥⠆⠕⠗â " }, { "input": "stubborner", "output": "⠌⠥⠆⠕⠗â â »" }, { "input": "stubbornest", "output": "⠌⠥⠆⠕⠗â â ‘â Œ" }, { "input": "stubbornly", "output": "⠌⠥⠆⠕⠗â â ‡â ½" }, { "input": "stubbornness", "output": "⠌⠥⠆⠕⠗â â °â Ž" }, { "input": "stubby", "output": "⠌⠥⠆⠽" }, { "input": "stubs", "output": "⠌⠥⠃⠎" }, { "input": "stucco", "output": "⠌⠥⠒⠕" }, { "input": "stuccoed", "output": "⠌⠥⠒⠕⠫" }, { "input": "stuccoes", "output": "⠌⠥⠒⠕⠑⠎" }, { "input": "stuccoing", "output": "⠌⠥⠒⠕⠬" }, { "input": "stuccos", "output": "⠌⠥⠒⠕⠎" }, { "input": "stuck", "output": "⠌⠥⠉⠅" }, { "input": "stud", "output": "⠌⠥⠙" }, { "input": "studded", "output": "⠌⠥⠙⠙⠫" }, { "input": "studding", "output": "⠌⠥⠙⠙⠬" }, { "input": "student", "output": "⠌⠥⠙⠢⠞" }, { "input": "students", "output": "⠌⠥⠙⠢⠞⠎" }, { "input": "studentship", "output": "⠌⠥⠙⠢⠞⠩⠊â " }, { "input": "studentships", "output": "⠌⠥⠙⠢⠞⠩⠊â â Ž" }, { "input": "studied", "output": "⠌⠥⠙⠊⠫" }, { "input": "studies", "output": "⠌⠥⠙⠊⠑⠎" }, { "input": "studio", "output": "⠌⠥⠙⠊⠕" }, { "input": "studios", "output": "⠌⠥⠙⠊⠕⠎" }, { "input": "studious", "output": "⠌⠥⠙⠊⠳⠎" }, { "input": "studiously", "output": "⠌⠥⠙⠊⠳⠎⠇⠽" }, { "input": "studs", "output": "⠌⠥⠙⠎" }, { "input": "study", "output": "⠌⠥⠙⠽" }, { "input": "studying", "output": "⠌⠥⠙⠽⠬" }, { "input": "stuff", "output": "⠌⠥⠋⠋" }, { "input": "stuffed", "output": "⠌⠥⠖⠫" }, { "input": "stuffier", "output": "⠌⠥⠖⠊⠻" }, { "input": "stuffiest", "output": "⠌⠥⠖⠊⠑⠌" }, { "input": "stuffily", "output": "⠌⠥⠖⠊⠇⠽" }, { "input": "stuffiness", "output": "⠌⠥⠖⠊⠰⠎" }, { "input": "stuffing", "output": "⠌⠥⠖⠬" }, { "input": "stuffs", "output": "⠌⠥⠖⠎" }, { "input": "stuffy", "output": "⠌⠥⠖⠽" }, { "input": "stultification", "output": "⠌⠥⠇⠞⠊⠋⠊⠉â â °â " }, { "input": "stultified", "output": "⠌⠥⠇⠞⠊⠋⠊⠫" }, { "input": "stultifies", "output": "⠌⠥⠇⠞⠊⠋⠊⠑⠎" }, { "input": "stultify", "output": "⠌⠥⠇⠞⠊⠋⠽" }, { "input": "stultifying", "output": "⠌⠥⠇⠞⠊⠋⠽⠬" }, { "input": "stumble", "output": "⠌⠥â â ƒâ ‡â ‘" }, { "input": "stumbled", "output": "⠌⠥â â ƒâ ‡â «" }, { "input": "stumbler", "output": "⠌⠥â â ƒâ ‡â »" }, { "input": "stumblers", "output": "⠌⠥â â ƒâ ‡â »â Ž" }, { "input": "stumbles", "output": "⠌⠥â â ƒâ ‡â ‘â Ž" }, { "input": "stumbling", "output": "⠌⠥â â ƒâ ‡â ¬" }, { "input": "stump", "output": "⠌⠥â â " }, { "input": "stumped", "output": "⠌⠥â â â «" }, { "input": "stumpier", "output": "⠌⠥â â â Šâ »" }, { "input": "stumpiest", "output": "⠌⠥â â â Šâ ‘â Œ" }, { "input": "stumping", "output": "⠌⠥â â â ¬" }, { "input": "stumps", "output": "⠌⠥â â â Ž" }, { "input": "stumpy", "output": "⠌⠥â â â ½" }, { "input": "stun", "output": "⠌⠥â " }, { "input": "stung", "output": "⠌⠥â â ›" }, { "input": "stunk", "output": "⠌⠥â â …" }, { "input": "stunned", "output": "⠌⠥â â â «" }, { "input": "stunning", "output": "⠌⠥â â â ¬" }, { "input": "stunningly", "output": "⠌⠥â â â ¬â ‡â ½" }, { "input": "stuns", "output": "⠌⠥â â Ž" }, { "input": "stunt", "output": "⠌⠥â â ž" }, { "input": "stunted", "output": "⠌⠥â â žâ «" }, { "input": "stunting", "output": "⠌⠥â â žâ ¬" }, { "input": "stunts", "output": "⠌⠥â â žâ Ž" }, { "input": "stupefaction", "output": "⠌⠥â â ‘â ‹â â ‰â °â " }, { "input": "stupefied", "output": "⠌⠥â â ‘â ‹â Šâ «" }, { "input": "stupefies", "output": "⠌⠥â â ‘â ‹â Šâ ‘â Ž" }, { "input": "stupefy", "output": "⠌⠥â â ‘â ‹â ½" }, { "input": "stupefying", "output": "⠌⠥â â ‘⠋⠽⠬" }, { "input": "stupendous", "output": "⠌⠥â â ¢â ™â ³â Ž" }, { "input": "stupendously", "output": "⠌⠥â â ¢â ™â ³â Žâ ‡â ½" }, { "input": "stupid", "output": "⠌⠥â â Šâ ™" }, { "input": "stupider", "output": "⠌⠥â â Šâ ™â »" }, { "input": "stupidest", "output": "⠌⠥â â Šâ ™â ‘â Œ" }, { "input": "stupidities", "output": "⠌⠥â â Šâ ™â Šâ žâ Šâ ‘â Ž" }, { "input": "stupidity", "output": "⠌⠥â â Šâ ™â °â ½" }, { "input": "stupidly", "output": "⠌⠥â â Šâ ™â ‡â ½" }, { "input": "stupids", "output": "⠌⠥â â Šâ ™â Ž" }, { "input": "stupor", "output": "⠌⠥â â •â —" }, { "input": "stupors", "output": "⠌⠥â â •â —â Ž" }, { "input": "sturdier", "output": "⠌⠥⠗⠙⠊⠻" }, { "input": "sturdiest", "output": "⠌⠥⠗⠙⠊⠑⠌" }, { "input": "sturdily", "output": "⠌⠥⠗⠙⠊⠇⠽" }, { "input": "sturdiness", "output": "⠌⠥⠗⠙⠊⠰⠎" }, { "input": "sturdy", "output": "⠌⠥⠗⠙⠽" }, { "input": "sturgeon", "output": "⠌⠥⠗⠛⠑⠕â " }, { "input": "sturgeons", "output": "⠌⠥⠗⠛⠑⠕â â Ž" }, { "input": "stutter", "output": "⠌⠥⠞⠞⠻" }, { "input": "stuttered", "output": "⠌⠥⠞⠞⠻⠫" }, { "input": "stutterer", "output": "⠌⠥⠞⠞⠻⠻" }, { "input": "stutterers", "output": "⠌⠥⠞⠞⠻⠻⠎" }, { "input": "stuttering", "output": "⠌⠥⠞⠞⠻⠬" }, { "input": "stutters", "output": "⠌⠥⠞⠞⠻⠎" }, { "input": "sty", "output": "⠌⠽" }, { "input": "stye", "output": "⠌⠽⠑" }, { "input": "styes", "output": "⠌⠽⠑⠎" }, { "input": "style", "output": "⠌⠽⠇⠑" }, { "input": "styled", "output": "⠌⠽⠇⠫" }, { "input": "styles", "output": "⠌⠽⠇⠑⠎" }, { "input": "styli", "output": "⠌⠽⠇⠊" }, { "input": "styling", "output": "⠌⠽⠇⠬" }, { "input": "stylish", "output": "⠌⠽⠇⠊⠩" }, { "input": "stylishly", "output": "⠌⠽⠇⠊⠩⠇⠽" }, { "input": "stylishness", "output": "⠌⠽⠇⠊⠩⠰⠎" }, { "input": "stylist", "output": "⠌⠽⠇⠊⠌" }, { "input": "stylistic", "output": "⠌⠽⠇⠊⠌⠊⠉" }, { "input": "stylistically", "output": "⠌⠽⠇⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "stylists", "output": "⠌⠽⠇⠊⠌⠎" }, { "input": "stylize", "output": "⠌⠽⠇⠊⠵⠑" }, { "input": "stylized", "output": "⠌⠽⠇⠊⠵⠫" }, { "input": "stylizes", "output": "⠌⠽⠇⠊⠵⠑⠎" }, { "input": "stylizing", "output": "⠌⠽⠇⠊⠵⠬" }, { "input": "stylus", "output": "⠌⠽⠇⠥⠎" }, { "input": "styluses", "output": "⠌⠽⠇⠥⠎⠑⠎" }, { "input": "stymie", "output": "⠌⠽â â Šâ ‘" }, { "input": "stymied", "output": "⠌⠽â â Šâ «" }, { "input": "stymieing", "output": "⠌⠽â â Šâ ‘â ¬" }, { "input": "stymies", "output": "⠌⠽â â Šâ ‘â Ž" }, { "input": "stymying", "output": "⠌⠽â â ½â ¬" }, { "input": "styptic", "output": "⠌⠽â â žâ Šâ ‰" }, { "input": "styptics", "output": "⠌⠽â â žâ Šâ ‰â Ž" }, { "input": "suave", "output": "â Žâ ¥â â §â ‘" }, { "input": "suavely", "output": "â Žâ ¥â â §â ‘⠇⠽" }, { "input": "suaver", "output": "â Žâ ¥â â §â »" }, { "input": "suavest", "output": "â Žâ ¥â â §â ‘â Œ" }, { "input": "suavity", "output": "â Žâ ¥â â §â °â ½" }, { "input": "sub", "output": "⠎⠥⠃" }, { "input": "subatomic", "output": "⠎⠥⠃â â žâ •â â Šâ ‰" }, { "input": "subbasement", "output": "⠎⠥⠃⠃â â Žâ ‘â °â ž" }, { "input": "subbasements", "output": "⠎⠥⠃⠃â â Žâ ‘â °â žâ Ž" }, { "input": "subbed", "output": "⠎⠥⠆⠫" }, { "input": "subbing", "output": "⠎⠥⠃⠃⠬" }, { "input": "subclass", "output": "⠎⠥⠃⠉⠇â â Žâ Ž" }, { "input": "subcommittee", "output": "⠎⠥⠃⠉⠕â â â Šâ žâ žâ ‘â ‘" }, { "input": "subcommittees", "output": "⠎⠥⠃⠉⠕â â â Šâ žâ žâ ‘â ‘â Ž" }, { "input": "subcompact", "output": "⠎⠥⠃⠉⠕â â â â ‰â ž" }, { "input": "subcompacts", "output": "⠎⠥⠃⠉⠕â â â â ‰â žâ Ž" }, { "input": "subconscious", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Ž" }, { "input": "subconsciously", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "subcontinent", "output": "⠎⠥⠃⠉⠕â â žâ ”⠢⠞" }, { "input": "subcontinents", "output": "⠎⠥⠃⠉⠕â â žâ ”⠢⠞⠎" }, { "input": "subcontract", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â ž" }, { "input": "subcontracted", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ «" }, { "input": "subcontracting", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ ¬" }, { "input": "subcontractor", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ •â —" }, { "input": "subcontractors", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ •â —â Ž" }, { "input": "subcontracts", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ Ž" }, { "input": "subculture", "output": "⠎⠥⠃⠉⠥⠇⠞⠥⠗⠑" }, { "input": "subcultures", "output": "⠎⠥⠃⠉⠥⠇⠞⠥⠗⠑⠎" }, { "input": "subcutaneous", "output": "⠎⠥⠃⠉⠥⠞â â â ‘⠳⠎" }, { "input": "subdivide", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠑" }, { "input": "subdivided", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠫" }, { "input": "subdivides", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠑⠎" }, { "input": "subdividing", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠬" }, { "input": "subdivision", "output": "⠎⠥⠃⠙⠊⠧⠊⠨â " }, { "input": "subdivisions", "output": "⠎⠥⠃⠙⠊⠧⠊⠨â â Ž" }, { "input": "subdue", "output": "⠎⠥⠃⠙⠥⠑" }, { "input": "subdued", "output": "⠎⠥⠃⠙⠥⠫" }, { "input": "subdues", "output": "⠎⠥⠃⠙⠥⠑⠎" }, { "input": "subduing", "output": "⠎⠥⠃⠙⠥⠬" }, { "input": "subgroup", "output": "⠎⠥⠃⠛⠗⠳â " }, { "input": "subgroups", "output": "⠎⠥⠃⠛⠗⠳â â Ž" }, { "input": "subhead", "output": "⠎⠥⠃⠓⠂⠙" }, { "input": "subheading", "output": "⠎⠥⠃⠓⠂⠙⠬" }, { "input": "subheadings", "output": "⠎⠥⠃⠓⠂⠙⠬⠎" }, { "input": "subheads", "output": "⠎⠥⠃⠓⠂⠙⠎" }, { "input": "subhuman", "output": "⠎⠥⠃⠓⠥â â â " }, { "input": "subhumans", "output": "⠎⠥⠃⠓⠥â â â â Ž" }, { "input": "subject", "output": "⠎⠥⠃⠚⠑⠉⠞" }, { "input": "subjected", "output": "⠎⠥⠃⠚⠑⠉⠞⠫" }, { "input": "subjecting", "output": "⠎⠥⠃⠚⠑⠉⠞⠬" }, { "input": "subjection", "output": "⠎⠥⠃⠚⠑⠉⠰â " }, { "input": "subjective", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠑" }, { "input": "subjectively", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "subjectivity", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠰⠽" }, { "input": "subjects", "output": "⠎⠥⠃⠚⠑⠉⠞⠎" }, { "input": "subjoin", "output": "⠎⠥⠃⠚⠕⠔" }, { "input": "subjoined", "output": "⠎⠥⠃⠚⠕⠔⠫" }, { "input": "subjoining", "output": "⠎⠥⠃⠚⠕⠔⠬" }, { "input": "subjoins", "output": "⠎⠥⠃⠚⠕⠔⠎" }, { "input": "subjugate", "output": "⠎⠥⠃⠚⠥⠛â â žâ ‘" }, { "input": "subjugated", "output": "⠎⠥⠃⠚⠥⠛â â žâ «" }, { "input": "subjugates", "output": "⠎⠥⠃⠚⠥⠛â â žâ ‘â Ž" }, { "input": "subjugating", "output": "⠎⠥⠃⠚⠥⠛â â žâ ¬" }, { "input": "subjugation", "output": "⠎⠥⠃⠚⠥⠛â â °â " }, { "input": "subjunctive", "output": "⠎⠥⠃⠚⠥â â ‰â žâ Šâ §â ‘" }, { "input": "subjunctives", "output": "⠎⠥⠃⠚⠥â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "sublease", "output": "⠎⠥⠃⠇⠂⠎⠑" }, { "input": "subleased", "output": "⠎⠥⠃⠇⠂⠎⠫" }, { "input": "subleases", "output": "⠎⠥⠃⠇⠂⠎⠑⠎" }, { "input": "subleasing", "output": "⠎⠥⠃⠇⠂⠎⠬" }, { "input": "sublet", "output": "⠎⠥⠃⠇⠑⠞" }, { "input": "sublets", "output": "⠎⠥⠃⠇⠑⠞⠎" }, { "input": "subletting", "output": "⠎⠥⠃⠇⠑⠞⠞⠬" }, { "input": "sublimate", "output": "⠎⠥⠃⠇⠊â â â žâ ‘" }, { "input": "sublimated", "output": "⠎⠥⠃⠇⠊â â â žâ «" }, { "input": "sublimates", "output": "⠎⠥⠃⠇⠊â â â žâ ‘â Ž" }, { "input": "sublimating", "output": "⠎⠥⠃⠇⠊â â â žâ ¬" }, { "input": "sublimation", "output": "⠎⠥⠃⠇⠊â â â °â " }, { "input": "sublime", "output": "⠎⠥⠃⠇⠊â â ‘" }, { "input": "sublimed", "output": "⠎⠥⠃⠇⠊â â «" }, { "input": "sublimely", "output": "⠎⠥⠃⠇⠊â â ‘⠇⠽" }, { "input": "sublimer", "output": "⠎⠥⠃⠇⠊â â »" }, { "input": "sublimes", "output": "⠎⠥⠃⠇⠊â â ‘â Ž" }, { "input": "sublimest", "output": "⠎⠥⠃⠇⠊â â ‘â Œ" }, { "input": "subliminal", "output": "⠎⠥⠃⠇⠊â â ”â â ‡" }, { "input": "subliminally", "output": "⠎⠥⠃⠇⠊â â ”â â ‡â ‡â ½" }, { "input": "subliming", "output": "⠎⠥⠃⠇⠊â â ¬" }, { "input": "sublimity", "output": "⠎⠥⠃⠇⠊â â °â ½" }, { "input": "submarine", "output": "⠎⠥⠃â â œâ ”â ‘" }, { "input": "submarines", "output": "⠎⠥⠃â â œâ ”â ‘â Ž" }, { "input": "submerge", "output": "⠎⠥⠃â â »â ›â ‘" }, { "input": "submerged", "output": "⠎⠥⠃â â »â ›â «" }, { "input": "submergence", "output": "⠎⠥⠃â â »â ›â °â ‘" }, { "input": "submerges", "output": "⠎⠥⠃â â »â ›â ‘â Ž" }, { "input": "submerging", "output": "⠎⠥⠃â â »â ›â ¬" }, { "input": "submerse", "output": "⠎⠥⠃â â »â Žâ ‘" }, { "input": "submersed", "output": "⠎⠥⠃â â »â Žâ «" }, { "input": "submerses", "output": "⠎⠥⠃â â »â Žâ ‘â Ž" }, { "input": "submersible", "output": "⠎⠥⠃â â »â Žâ Šâ ƒâ ‡â ‘" }, { "input": "submersibles", "output": "⠎⠥⠃â â »â Žâ Šâ ƒâ ‡â ‘â Ž" }, { "input": "submersing", "output": "⠎⠥⠃â â »â Žâ ¬" }, { "input": "submersion", "output": "⠎⠥⠃â â »â ¨â " }, { "input": "submission", "output": "⠎⠥⠃â â Šâ Žâ ¨â " }, { "input": "submissions", "output": "⠎⠥⠃â â Šâ Žâ ¨â â Ž" }, { "input": "submissive", "output": "⠎⠥⠃â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "submit", "output": "⠎⠥⠃â â Šâ ž" }, { "input": "submits", "output": "⠎⠥⠃â â Šâ žâ Ž" }, { "input": "submitted", "output": "⠎⠥⠃â â Šâ žâ žâ «" }, { "input": "submitter", "output": "⠎⠥⠃â â Šâ žâ žâ »" }, { "input": "submitting", "output": "⠎⠥⠃â â Šâ žâ žâ ¬" }, { "input": "subnormal", "output": "⠎⠥⠃â â •â —â â â ‡" }, { "input": "suborbital", "output": "⠎⠥⠃⠕⠗⠃⠊⠞â â ‡" }, { "input": "subordinate", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ ‘" }, { "input": "subordinated", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ «" }, { "input": "subordinates", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ ‘â Ž" }, { "input": "subordinating", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ ¬" }, { "input": "subordination", "output": "⠎⠥⠃⠕⠗⠙⠔â â °â " }, { "input": "suborn", "output": "⠎⠥⠃⠕⠗â " }, { "input": "subornation", "output": "⠎⠥⠃⠕⠗â â â °â " }, { "input": "suborned", "output": "⠎⠥⠃⠕⠗â â «" }, { "input": "suborning", "output": "⠎⠥⠃⠕⠗â â ¬" }, { "input": "suborns", "output": "⠎⠥⠃⠕⠗â â Ž" }, { "input": "subplot", "output": "⠎⠥⠃â â ‡â •â ž" }, { "input": "subplots", "output": "⠎⠥⠃â â ‡â •â žâ Ž" }, { "input": "subpoena", "output": "⠎⠥⠃â â •â ¢â " }, { "input": "subpoenaed", "output": "⠎⠥⠃â â •â ¢â â «" }, { "input": "subpoenaing", "output": "⠎⠥⠃â â •â ¢â â ¬" }, { "input": "subpoenas", "output": "⠎⠥⠃â â •â ¢â â Ž" }, { "input": "subprogram", "output": "⠎⠥⠃â â —⠕⠛⠗â â " }, { "input": "subprograms", "output": "⠎⠥⠃â â —⠕⠛⠗â â â Ž" }, { "input": "subroutine", "output": "⠎⠥⠃⠗⠳⠞⠔⠑" }, { "input": "subroutines", "output": "⠎⠥⠃⠗⠳⠞⠔⠑⠎" }, { "input": "subs", "output": "⠎⠥⠃⠎" }, { "input": "subscribe", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠑" }, { "input": "subscribed", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠫" }, { "input": "subscriber", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠻" }, { "input": "subscribers", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠻⠎" }, { "input": "subscribes", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠑⠎" }, { "input": "subscribing", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠬" }, { "input": "subscript", "output": "⠎⠥⠃⠎⠉⠗⠊â â ž" }, { "input": "subscription", "output": "⠎⠥⠃⠎⠉⠗⠊â â °â " }, { "input": "subscriptions", "output": "⠎⠥⠃⠎⠉⠗⠊â â °â â Ž" }, { "input": "subscripts", "output": "⠎⠥⠃⠎⠉⠗⠊â â žâ Ž" }, { "input": "subsection", "output": "⠎⠥⠃⠎⠑⠉⠰â " }, { "input": "subsections", "output": "⠎⠥⠃⠎⠑⠉⠰â â Ž" }, { "input": "subsequent", "output": "⠎⠥⠃⠎⠑⠟⠥⠢⠞" }, { "input": "subsequently", "output": "⠎⠥⠃⠎⠑⠟⠥⠢⠞⠇⠽" }, { "input": "subservience", "output": "⠎⠥⠃⠎⠻⠧⠊⠰⠑" }, { "input": "subservient", "output": "⠎⠥⠃⠎⠻⠧⠊⠢⠞" }, { "input": "subset", "output": "⠎⠥⠃⠎⠑⠞" }, { "input": "subsets", "output": "⠎⠥⠃⠎⠑⠞⠎" }, { "input": "subside", "output": "⠎⠥⠃⠎⠊⠙⠑" }, { "input": "subsided", "output": "⠎⠥⠃⠎⠊⠙⠫" }, { "input": "subsidence", "output": "⠎⠥⠃⠎⠊⠙⠰⠑" }, { "input": "subsides", "output": "⠎⠥⠃⠎⠊⠙⠑⠎" }, { "input": "subsidiaries", "output": "⠎⠥⠃⠎⠊⠙⠊⠜⠊⠑⠎" }, { "input": "subsidiary", "output": "⠎⠥⠃⠎⠊⠙⠊⠜⠽" }, { "input": "subsidies", "output": "⠎⠥⠃⠎⠊⠙⠊⠑⠎" }, { "input": "subsiding", "output": "⠎⠥⠃⠎⠊⠙⠬" }, { "input": "subsidization", "output": "⠎⠥⠃⠎⠊⠙⠊⠵â â °â " }, { "input": "subsidize", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠑" }, { "input": "subsidized", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠫" }, { "input": "subsidizes", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠑⠎" }, { "input": "subsidizing", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠬" }, { "input": "subsidy", "output": "⠎⠥⠃⠎⠊⠙⠽" }, { "input": "subsist", "output": "⠎⠥⠃⠎⠊⠌" }, { "input": "subsisted", "output": "⠎⠥⠃⠎⠊⠌⠫" }, { "input": "subsistence", "output": "⠎⠥⠃⠎⠊⠌⠰⠑" }, { "input": "subsisting", "output": "⠎⠥⠃⠎⠊⠌⠬" }, { "input": "subsists", "output": "⠎⠥⠃⠎⠊⠌⠎" }, { "input": "subsoil", "output": "⠎⠥⠃⠎⠕⠊⠇" }, { "input": "subsonic", "output": "⠎⠥⠃⠎⠕â â Šâ ‰" }, { "input": "subspace", "output": "⠎⠥⠃⠎â â â ‰â ‘" }, { "input": "substance", "output": "⠎⠥⠃⠌⠨⠑" }, { "input": "substances", "output": "⠎⠥⠃⠌⠨⠑⠎" }, { "input": "substandard", "output": "⠎⠥⠃⠌⠯⠜⠙" }, { "input": "substantial", "output": "⠎⠥⠃⠌â â â žâ Šâ â ‡" }, { "input": "substantially", "output": "⠎⠥⠃⠌â â â žâ Šâ â ‡â ‡â ½" }, { "input": "substantiate", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ ‘" }, { "input": "substantiated", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ «" }, { "input": "substantiates", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ ‘â Ž" }, { "input": "substantiating", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ ¬" }, { "input": "substantiation", "output": "⠎⠥⠃⠌â â â žâ Šâ â °â " }, { "input": "substantiations", "output": "⠎⠥⠃⠌â â â žâ Šâ â °â â Ž" }, { "input": "substantive", "output": "⠎⠥⠃⠌â â â žâ Šâ §â ‘" }, { "input": "substantives", "output": "⠎⠥⠃⠌â â â žâ Šâ §â ‘â Ž" }, { "input": "substation", "output": "⠎⠥⠃⠌â â °â " }, { "input": "substations", "output": "⠎⠥⠃⠌â â °â â Ž" }, { "input": "substitute", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠑" }, { "input": "substituted", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠫" }, { "input": "substitutes", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠑⠎" }, { "input": "substituting", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠬" }, { "input": "substitution", "output": "⠎⠥⠃⠌⠊⠞⠥⠰â " }, { "input": "substitutions", "output": "⠎⠥⠃⠌⠊⠞⠥⠰â â Ž" }, { "input": "substrata", "output": "⠎⠥⠃⠌⠗â â žâ " }, { "input": "substrate", "output": "⠎⠥⠃⠌⠗â â žâ ‘" }, { "input": "substratum", "output": "⠎⠥⠃⠌⠗â â žâ ¥â " }, { "input": "substratums", "output": "⠎⠥⠃⠌⠗â â žâ ¥â â Ž" }, { "input": "substructure", "output": "⠎⠥⠃⠌⠗⠥⠉⠞⠥⠗⠑" }, { "input": "substructures", "output": "⠎⠥⠃⠌⠗⠥⠉⠞⠥⠗⠑⠎" }, { "input": "subsume", "output": "⠎⠥⠃⠎⠥â â ‘" }, { "input": "subsumed", "output": "⠎⠥⠃⠎⠥â â «" }, { "input": "subsumes", "output": "⠎⠥⠃⠎⠥â â ‘â Ž" }, { "input": "subsuming", "output": "⠎⠥⠃⠎⠥â â ¬" }, { "input": "subsystem", "output": "⠎⠥⠃⠎⠽⠌⠑â " }, { "input": "subsystems", "output": "⠎⠥⠃⠎⠽⠌⠑â â Ž" }, { "input": "subteen", "output": "⠎⠥⠃⠞⠑⠢" }, { "input": "subteens", "output": "⠎⠥⠃⠞⠑⠢⠎" }, { "input": "subterfuge", "output": "⠎⠥⠃⠞⠻⠋⠥⠛⠑" }, { "input": "subterfuges", "output": "⠎⠥⠃⠞⠻⠋⠥⠛⠑⠎" }, { "input": "subterranean", "output": "⠎⠥⠃⠞⠻⠗â â â ‚â " }, { "input": "subtitle", "output": "⠎⠥⠃⠞⠊⠞⠇⠑" }, { "input": "subtitled", "output": "⠎⠥⠃⠞⠊⠞⠇⠫" }, { "input": "subtitles", "output": "⠎⠥⠃⠞⠊⠞⠇⠑⠎" }, { "input": "subtitling", "output": "⠎⠥⠃⠞⠊⠞⠇⠬" }, { "input": "subtle", "output": "⠎⠥⠃⠞⠇⠑" }, { "input": "subtler", "output": "⠎⠥⠃⠞⠇⠻" }, { "input": "subtlest", "output": "⠎⠥⠃⠞⠇⠑⠌" }, { "input": "subtleties", "output": "⠎⠥⠃⠞⠇⠑⠞⠊⠑⠎" }, { "input": "subtlety", "output": "⠎⠥⠃⠞⠇⠑⠞⠽" }, { "input": "subtly", "output": "⠎⠥⠃⠞⠇⠽" }, { "input": "subtotal", "output": "⠎⠥⠃⠞⠕⠞â â ‡" }, { "input": "subtotaled", "output": "⠎⠥⠃⠞⠕⠞â â ‡â «" }, { "input": "subtotaling", "output": "⠎⠥⠃⠞⠕⠞â â ‡â ¬" }, { "input": "subtotalled", "output": "⠎⠥⠃⠞⠕⠞â â ‡â ‡â «" }, { "input": "subtotalling", "output": "⠎⠥⠃⠞⠕⠞â â ‡â ‡â ¬" }, { "input": "subtotals", "output": "⠎⠥⠃⠞⠕⠞â â ‡â Ž" }, { "input": "subtract", "output": "⠎⠥⠃⠞⠗â â ‰â ž" }, { "input": "subtracted", "output": "⠎⠥⠃⠞⠗â â ‰â žâ «" }, { "input": "subtracting", "output": "⠎⠥⠃⠞⠗â â ‰â žâ ¬" }, { "input": "subtraction", "output": "⠎⠥⠃⠞⠗â â ‰â °â " }, { "input": "subtractions", "output": "⠎⠥⠃⠞⠗â â ‰â °â â Ž" }, { "input": "subtracts", "output": "⠎⠥⠃⠞⠗â â ‰â žâ Ž" }, { "input": "subtrahend", "output": "⠎⠥⠃⠞⠗â â “⠢⠙" }, { "input": "subtrahends", "output": "⠎⠥⠃⠞⠗â â “⠢⠙⠎" }, { "input": "subtropical", "output": "⠎⠥⠃⠞⠗⠕â â Šâ ‰â â ‡" }, { "input": "suburb", "output": "⠎⠥⠃⠥⠗⠃" }, { "input": "suburban", "output": "⠎⠥⠃⠥⠗⠃â â " }, { "input": "suburbanite", "output": "⠎⠥⠃⠥⠗⠃â â â Šâ žâ ‘" }, { "input": "suburbanites", "output": "⠎⠥⠃⠥⠗⠃â â â Šâ žâ ‘â Ž" }, { "input": "suburbans", "output": "⠎⠥⠃⠥⠗⠃â â â Ž" }, { "input": "suburbia", "output": "⠎⠥⠃⠥⠗⠃⠊â " }, { "input": "suburbs", "output": "⠎⠥⠃⠥⠗⠃⠎" }, { "input": "subversion", "output": "⠎⠥⠃⠧⠻⠨â " }, { "input": "subversive", "output": "⠎⠥⠃⠧⠻⠎⠊⠧⠑" }, { "input": "subversives", "output": "⠎⠥⠃⠧⠻⠎⠊⠧⠑⠎" }, { "input": "subvert", "output": "⠎⠥⠃⠧⠻⠞" }, { "input": "subverted", "output": "⠎⠥⠃⠧⠻⠞⠫" }, { "input": "subverting", "output": "⠎⠥⠃⠧⠻⠞⠬" }, { "input": "subverts", "output": "⠎⠥⠃⠧⠻⠞⠎" }, { "input": "subway", "output": "⠎⠥⠃⠺â â ½" }, { "input": "subways", "output": "⠎⠥⠃⠺â â ½â Ž" }, { "input": "succeed", "output": "⠎⠥⠒⠑⠫" }, { "input": "succeeded", "output": "⠎⠥⠒⠑⠫⠫" }, { "input": "succeeding", "output": "⠎⠥⠒⠑⠫⠬" }, { "input": "succeeds", "output": "⠎⠥⠒⠑⠫⠎" }, { "input": "success", "output": "⠎⠥⠒⠑⠎⠎" }, { "input": "successes", "output": "⠎⠥⠒⠑⠎⠎⠑⠎" }, { "input": "successful", "output": "⠎⠥⠒⠑⠎⠎⠰⠇" }, { "input": "successfully", "output": "⠎⠥⠒⠑⠎⠎⠰⠇⠇⠽" }, { "input": "succession", "output": "⠎⠥⠒⠑⠎⠨â " }, { "input": "successions", "output": "⠎⠥⠒⠑⠎⠨â â Ž" }, { "input": "successive", "output": "⠎⠥⠒⠑⠎⠎⠊⠧⠑" }, { "input": "successively", "output": "⠎⠥⠒⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "successor", "output": "⠎⠥⠒⠑⠎⠎⠕⠗" }, { "input": "successors", "output": "⠎⠥⠒⠑⠎⠎⠕⠗⠎" }, { "input": "succinct", "output": "⠎⠥⠒⠔⠉⠞" }, { "input": "succincter", "output": "⠎⠥⠒⠔⠉⠞⠻" }, { "input": "succinctest", "output": "⠎⠥⠒⠔⠉⠞⠑⠌" }, { "input": "succinctly", "output": "⠎⠥⠒⠔⠉⠞⠇⠽" }, { "input": "succinctness", "output": "⠎⠥⠒⠔⠉⠞⠰⠎" }, { "input": "succor", "output": "⠎⠥⠒⠕⠗" }, { "input": "succored", "output": "⠎⠥⠒⠕⠗⠫" }, { "input": "succoring", "output": "⠎⠥⠒⠕⠗⠬" }, { "input": "succors", "output": "⠎⠥⠒⠕⠗⠎" }, { "input": "succotash", "output": "⠎⠥⠒⠕⠞â â ©" }, { "input": "succulence", "output": "⠎⠥⠒⠥⠇⠰⠑" }, { "input": "succulent", "output": "⠎⠥⠒⠥⠇⠢⠞" }, { "input": "succulents", "output": "⠎⠥⠒⠥⠇⠢⠞⠎" }, { "input": "succumb", "output": "⠎⠥⠒⠥â â ƒ" }, { "input": "succumbed", "output": "⠎⠥⠒⠥â â ƒâ «" }, { "input": "succumbing", "output": "⠎⠥⠒⠥â â ƒâ ¬" }, { "input": "succumbs", "output": "⠎⠥⠒⠥â â ƒâ Ž" }, { "input": "such", "output": "â Žâ ¡" }, { "input": "suchlike", "output": "⠎⠡⠇⠊⠅⠑" }, { "input": "suck", "output": "⠎⠥⠉⠅" }, { "input": "sucked", "output": "⠎⠥⠉⠅⠫" }, { "input": "sucker", "output": "⠎⠥⠉⠅⠻" }, { "input": "suckered", "output": "⠎⠥⠉⠅⠻⠫" }, { "input": "suckering", "output": "⠎⠥⠉⠅⠻⠬" }, { "input": "suckers", "output": "⠎⠥⠉⠅⠻⠎" }, { "input": "sucking", "output": "⠎⠥⠉⠅⠬" }, { "input": "suckle", "output": "⠎⠥⠉⠅⠇⠑" }, { "input": "suckled", "output": "⠎⠥⠉⠅⠇⠫" }, { "input": "suckles", "output": "⠎⠥⠉⠅⠇⠑⠎" }, { "input": "suckling", "output": "⠎⠥⠉⠅⠇⠬" }, { "input": "sucklings", "output": "⠎⠥⠉⠅⠇⠬⠎" }, { "input": "sucks", "output": "⠎⠥⠉⠅⠎" }, { "input": "sucrose", "output": "⠎⠥⠉⠗⠕⠎⠑" }, { "input": "suction", "output": "⠎⠥⠉⠰â " }, { "input": "suctioned", "output": "⠎⠥⠉⠰â â «" }, { "input": "suctioning", "output": "⠎⠥⠉⠰â â ¬" }, { "input": "suctions", "output": "⠎⠥⠉⠰â â Ž" }, { "input": "sudden", "output": "⠎⠥⠙⠙⠢" }, { "input": "suddenly", "output": "⠎⠥⠙⠙⠢⠇⠽" }, { "input": "suddenness", "output": "⠎⠥⠙⠙⠢⠰⠎" }, { "input": "suds", "output": "⠎⠥⠙⠎" }, { "input": "sudsier", "output": "⠎⠥⠙⠎⠊⠻" }, { "input": "sudsiest", "output": "⠎⠥⠙⠎⠊⠑⠌" }, { "input": "sudsy", "output": "⠎⠥⠙⠎⠽" }, { "input": "sue", "output": "⠎⠥⠑" }, { "input": "sued", "output": "⠎⠥⠫" }, { "input": "suede", "output": "⠎⠥⠫⠑" }, { "input": "sues", "output": "⠎⠥⠑⠎" }, { "input": "suet", "output": "⠎⠥⠑⠞" }, { "input": "suffer", "output": "⠎⠥⠖⠻" }, { "input": "sufferance", "output": "⠎⠥⠖⠻⠨⠑" }, { "input": "suffered", "output": "⠎⠥⠖⠻⠫" }, { "input": "sufferer", "output": "⠎⠥⠖⠻⠻" }, { "input": "sufferers", "output": "⠎⠥⠖⠻⠻⠎" }, { "input": "suffering", "output": "⠎⠥⠖⠻⠬" }, { "input": "sufferings", "output": "⠎⠥⠖⠻⠬⠎" }, { "input": "suffers", "output": "⠎⠥⠖⠻⠎" }, { "input": "suffice", "output": "⠎⠥⠖⠊⠉⠑" }, { "input": "sufficed", "output": "⠎⠥⠖⠊⠉⠫" }, { "input": "suffices", "output": "⠎⠥⠖⠊⠉⠑⠎" }, { "input": "sufficiency", "output": "⠎⠥⠖⠊⠉⠊⠢⠉⠽" }, { "input": "sufficient", "output": "⠎⠥⠖⠊⠉⠊⠢⠞" }, { "input": "sufficiently", "output": "⠎⠥⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "sufficing", "output": "⠎⠥⠖⠊⠉⠬" }, { "input": "suffix", "output": "⠎⠥⠖⠊⠭" }, { "input": "suffixed", "output": "⠎⠥⠖⠊⠭⠫" }, { "input": "suffixes", "output": "⠎⠥⠖⠊⠭⠑⠎" }, { "input": "suffixing", "output": "⠎⠥⠖⠊⠭⠬" }, { "input": "suffocate", "output": "⠎⠥⠖⠕⠉â â žâ ‘" }, { "input": "suffocated", "output": "⠎⠥⠖⠕⠉â â žâ «" }, { "input": "suffocates", "output": "⠎⠥⠖⠕⠉â â žâ ‘â Ž" }, { "input": "suffocating", "output": "⠎⠥⠖⠕⠉â â žâ ¬" }, { "input": "suffocation", "output": "⠎⠥⠖⠕⠉â â °â " }, { "input": "suffragan", "output": "⠎⠥⠖⠗â â ›â â " }, { "input": "suffragans", "output": "⠎⠥⠖⠗â â ›â â â Ž" }, { "input": "suffrage", "output": "⠎⠥⠖⠗â â ›â ‘" }, { "input": "suffragette", "output": "⠎⠥⠖⠗â â ›â ‘â žâ žâ ‘" }, { "input": "suffragettes", "output": "⠎⠥⠖⠗â â ›â ‘â žâ žâ ‘â Ž" }, { "input": "suffragist", "output": "⠎⠥⠖⠗â â ›â Šâ Œ" }, { "input": "suffragists", "output": "⠎⠥⠖⠗â â ›â Šâ Œâ Ž" }, { "input": "suffuse", "output": "⠎⠥⠖⠥⠎⠑" }, { "input": "suffused", "output": "⠎⠥⠖⠥⠎⠫" }, { "input": "suffuses", "output": "⠎⠥⠖⠥⠎⠑⠎" }, { "input": "suffusing", "output": "⠎⠥⠖⠥⠎⠬" }, { "input": "suffusion", "output": "⠎⠥⠖⠥⠨â " }, { "input": "sugar", "output": "⠎⠥⠛⠜" }, { "input": "sugarcane", "output": "⠎⠥⠛⠜⠉â â â ‘" }, { "input": "sugarcoat", "output": "⠎⠥⠛⠜⠉⠕â â ž" }, { "input": "sugarcoated", "output": "⠎⠥⠛⠜⠉⠕â â žâ «" }, { "input": "sugarcoating", "output": "⠎⠥⠛⠜⠉⠕â â žâ ¬" }, { "input": "sugarcoats", "output": "⠎⠥⠛⠜⠉⠕â â žâ Ž" }, { "input": "sugared", "output": "⠎⠥⠛⠜⠫" }, { "input": "sugarier", "output": "⠎⠥⠛⠜⠊⠻" }, { "input": "sugariest", "output": "⠎⠥⠛⠜⠊⠑⠌" }, { "input": "sugaring", "output": "⠎⠥⠛⠜⠬" }, { "input": "sugarless", "output": "⠎⠥⠛⠜⠨⠎" }, { "input": "sugars", "output": "⠎⠥⠛⠜⠎" }, { "input": "sugary", "output": "⠎⠥⠛⠜⠽" }, { "input": "suggest", "output": "⠎⠥⠶⠑⠌" }, { "input": "suggested", "output": "⠎⠥⠶⠑⠌⠫" }, { "input": "suggester", "output": "⠎⠥⠶⠑⠌⠻" }, { "input": "suggestible", "output": "⠎⠥⠶⠑⠌⠊⠃⠇⠑" }, { "input": "suggesting", "output": "⠎⠥⠶⠑⠌⠬" }, { "input": "suggestion", "output": "⠎⠥⠶⠑⠎⠰â " }, { "input": "suggestions", "output": "⠎⠥⠶⠑⠎⠰â â Ž" }, { "input": "suggestive", "output": "⠎⠥⠶⠑⠌⠊⠧⠑" }, { "input": "suggestively", "output": "⠎⠥⠶⠑⠌⠊⠧⠑⠇⠽" }, { "input": "suggests", "output": "⠎⠥⠶⠑⠌⠎" }, { "input": "suicidal", "output": "⠎⠥⠊⠉⠊⠙â â ‡" }, { "input": "suicide", "output": "⠎⠥⠊⠉⠊⠙⠑" }, { "input": "suicides", "output": "⠎⠥⠊⠉⠊⠙⠑⠎" }, { "input": "suing", "output": "⠎⠥⠬" }, { "input": "suit", "output": "⠎⠥⠊⠞" }, { "input": "suitability", "output": "⠎⠥⠊⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "suitable", "output": "⠎⠥⠊⠞â â ƒâ ‡â ‘" }, { "input": "suitably", "output": "⠎⠥⠊⠞â â ƒâ ‡â ½" }, { "input": "suitcase", "output": "⠎⠥⠊⠞⠉â â Žâ ‘" }, { "input": "suitcases", "output": "⠎⠥⠊⠞⠉â â Žâ ‘â Ž" }, { "input": "suite", "output": "⠎⠥⠊⠞⠑" }, { "input": "suited", "output": "⠎⠥⠊⠞⠫" }, { "input": "suites", "output": "⠎⠥⠊⠞⠑⠎" }, { "input": "suiting", "output": "⠎⠥⠊⠞⠬" }, { "input": "suitor", "output": "⠎⠥⠊⠞⠕⠗" }, { "input": "suitors", "output": "⠎⠥⠊⠞⠕⠗⠎" }, { "input": "suits", "output": "⠎⠥⠊⠞⠎" }, { "input": "sukiyaki", "output": "⠎⠥⠅⠊⠽â â …â Š" }, { "input": "sulfate", "output": "⠎⠥⠇⠋â â žâ ‘" }, { "input": "sulfates", "output": "⠎⠥⠇⠋â â žâ ‘â Ž" }, { "input": "sulfide", "output": "⠎⠥⠇⠋⠊⠙⠑" }, { "input": "sulfides", "output": "⠎⠥⠇⠋⠊⠙⠑⠎" }, { "input": "sulfur", "output": "⠎⠥⠇⠋⠥⠗" }, { "input": "sulfured", "output": "⠎⠥⠇⠋⠥⠗⠫" }, { "input": "sulfuric", "output": "⠎⠥⠇⠋⠥⠗⠊⠉" }, { "input": "sulfuring", "output": "⠎⠥⠇⠋⠥⠗⠬" }, { "input": "sulfurous", "output": "⠎⠥⠇⠋⠥⠗⠳⠎" }, { "input": "sulfurs", "output": "⠎⠥⠇⠋⠥⠗⠎" }, { "input": "sulk", "output": "⠎⠥⠇⠅" }, { "input": "sulked", "output": "⠎⠥⠇⠅⠫" }, { "input": "sulkier", "output": "⠎⠥⠇⠅⠊⠻" }, { "input": "sulkies", "output": "⠎⠥⠇⠅⠊⠑⠎" }, { "input": "sulkiest", "output": "⠎⠥⠇⠅⠊⠑⠌" }, { "input": "sulkily", "output": "⠎⠥⠇⠅⠊⠇⠽" }, { "input": "sulkiness", "output": "⠎⠥⠇⠅⠊⠰⠎" }, { "input": "sulking", "output": "⠎⠥⠇⠅⠬" }, { "input": "sulks", "output": "⠎⠥⠇⠅⠎" }, { "input": "sulky", "output": "⠎⠥⠇⠅⠽" }, { "input": "sullen", "output": "⠎⠥⠇⠇⠢" }, { "input": "sullener", "output": "⠎⠥⠇⠇⠢⠻" }, { "input": "sullenest", "output": "⠎⠥⠇⠇⠢⠑⠌" }, { "input": "sullenly", "output": "⠎⠥⠇⠇⠢⠇⠽" }, { "input": "sullenness", "output": "⠎⠥⠇⠇⠢⠰⠎" }, { "input": "sullied", "output": "⠎⠥⠇⠇⠊⠫" }, { "input": "sullies", "output": "⠎⠥⠇⠇⠊⠑⠎" }, { "input": "sully", "output": "⠎⠥⠇⠇⠽" }, { "input": "sullying", "output": "⠎⠥⠇⠇⠽⠬" }, { "input": "sulphur", "output": "⠎⠥⠇â â “⠥⠗" }, { "input": "sulphured", "output": "⠎⠥⠇â â “⠥⠗⠫" }, { "input": "sulphuring", "output": "⠎⠥⠇â â “⠥⠗⠬" }, { "input": "sulphurous", "output": "⠎⠥⠇â â “⠥⠗⠳⠎" }, { "input": "sulphurs", "output": "⠎⠥⠇â â “⠥⠗⠎" }, { "input": "sultan", "output": "⠎⠥⠇⠞â â " }, { "input": "sultana", "output": "⠎⠥⠇⠞â â â " }, { "input": "sultanas", "output": "⠎⠥⠇⠞â â â â Ž" }, { "input": "sultanate", "output": "⠎⠥⠇⠞â â â â žâ ‘" }, { "input": "sultanates", "output": "⠎⠥⠇⠞â â â â žâ ‘â Ž" }, { "input": "sultans", "output": "⠎⠥⠇⠞â â â Ž" }, { "input": "sultrier", "output": "⠎⠥⠇⠞⠗⠊⠻" }, { "input": "sultriest", "output": "⠎⠥⠇⠞⠗⠊⠑⠌" }, { "input": "sultry", "output": "⠎⠥⠇⠞⠗⠽" }, { "input": "sum", "output": "â Žâ ¥â " }, { "input": "sumac", "output": "â Žâ ¥â â â ‰" }, { "input": "sumach", "output": "â Žâ ¥â â â ¡" }, { "input": "summaries", "output": "â Žâ ¥â â â œâ Šâ ‘â Ž" }, { "input": "summarily", "output": "â Žâ ¥â â â œâ Šâ ‡â ½" }, { "input": "summarize", "output": "â Žâ ¥â â â œâ Šâ µâ ‘" }, { "input": "summarized", "output": "â Žâ ¥â â â œâ Šâ µâ «" }, { "input": "summarizes", "output": "â Žâ ¥â â â œâ Šâ µâ ‘â Ž" }, { "input": "summarizing", "output": "â Žâ ¥â â â œâ Šâ µâ ¬" }, { "input": "summary", "output": "â Žâ ¥â â â œâ ½" }, { "input": "summation", "output": "â Žâ ¥â â â â °â " }, { "input": "summations", "output": "â Žâ ¥â â â â °â â Ž" }, { "input": "summed", "output": "â Žâ ¥â â â «" }, { "input": "summer", "output": "â Žâ ¥â â â »" }, { "input": "summered", "output": "â Žâ ¥â â â »â «" }, { "input": "summerhouse", "output": "â Žâ ¥â â â »â “⠳⠎⠑" }, { "input": "summerhouses", "output": "â Žâ ¥â â â »â “⠳⠎⠑⠎" }, { "input": "summerier", "output": "â Žâ ¥â â â »â Šâ »" }, { "input": "summeriest", "output": "â Žâ ¥â â â »â Šâ ‘â Œ" }, { "input": "summering", "output": "â Žâ ¥â â â »â ¬" }, { "input": "summers", "output": "â Žâ ¥â â â »â Ž" }, { "input": "summertime", "output": "â Žâ ¥â â â »â â ž" }, { "input": "summery", "output": "â Žâ ¥â â â »â ½" }, { "input": "summing", "output": "â Žâ ¥â â â ¬" }, { "input": "summit", "output": "â Žâ ¥â â â Šâ ž" }, { "input": "summitry", "output": "â Žâ ¥â â â Šâ žâ —â ½" }, { "input": "summits", "output": "â Žâ ¥â â â Šâ žâ Ž" }, { "input": "summon", "output": "â Žâ ¥â â â •â " }, { "input": "summoned", "output": "â Žâ ¥â â â •â â «" }, { "input": "summoner", "output": "â Žâ ¥â â â •â â »" }, { "input": "summoners", "output": "â Žâ ¥â â â •â â »â Ž" }, { "input": "summoning", "output": "â Žâ ¥â â â •â â ¬" }, { "input": "summons", "output": "â Žâ ¥â â â •â â Ž" }, { "input": "summonsed", "output": "â Žâ ¥â â â •â â Žâ «" }, { "input": "summonses", "output": "â Žâ ¥â â â •â â Žâ ‘â Ž" }, { "input": "summonsing", "output": "â Žâ ¥â â â •â â Žâ ¬" }, { "input": "sumo", "output": "â Žâ ¥â â •" }, { "input": "sump", "output": "â Žâ ¥â â " }, { "input": "sumps", "output": "â Žâ ¥â â â Ž" }, { "input": "sumptuous", "output": "â Žâ ¥â â â žâ ¥â ³â Ž" }, { "input": "sums", "output": "â Žâ ¥â â Ž" }, { "input": "sun", "output": "â Žâ ¥â " }, { "input": "sunbathe", "output": "â Žâ ¥â â ƒâ â ®" }, { "input": "sunbathed", "output": "â Žâ ¥â â ƒâ â ®â ™" }, { "input": "sunbather", "output": "â Žâ ¥â â ƒâ â ®â —" }, { "input": "sunbathers", "output": "â Žâ ¥â â ƒâ â ®â —â Ž" }, { "input": "sunbathes", "output": "â Žâ ¥â â ƒâ â ®â Ž" }, { "input": "sunbathing", "output": "â Žâ ¥â â ƒâ â ¹â ¬" }, { "input": "sunbeam", "output": "â Žâ ¥â â ƒâ ‚â " }, { "input": "sunbeams", "output": "â Žâ ¥â â ƒâ ‚â â Ž" }, { "input": "sunblock", "output": "â Žâ ¥â â ƒâ ‡â •⠉⠅" }, { "input": "sunblocks", "output": "â Žâ ¥â â ƒâ ‡â •⠉⠅⠎" }, { "input": "sunbonnet", "output": "â Žâ ¥â â ƒâ •â â â ‘â ž" }, { "input": "sunbonnets", "output": "â Žâ ¥â â ƒâ •â â â ‘â žâ Ž" }, { "input": "sunburn", "output": "â Žâ ¥â â ƒâ ¥â —â " }, { "input": "sunburned", "output": "â Žâ ¥â â ƒâ ¥â —â â «" }, { "input": "sunburning", "output": "â Žâ ¥â â ƒâ ¥â —â â ¬" }, { "input": "sunburns", "output": "â Žâ ¥â â ƒâ ¥â —â â Ž" }, { "input": "sunburnt", "output": "â Žâ ¥â â ƒâ ¥â —â â ž" }, { "input": "sundae", "output": "â Žâ ¥â â ™â â ‘" }, { "input": "sundaes", "output": "â Žâ ¥â â ™â â ‘â Ž" }, { "input": "sunder", "output": "â Žâ â ¥" }, { "input": "sundered", "output": "â Žâ â ¥â «" }, { "input": "sundering", "output": "â Žâ â ¥â ¬" }, { "input": "sunders", "output": "â Žâ â ¥â Ž" }, { "input": "sundial", "output": "â Žâ ¥â â ™â Šâ â ‡" }, { "input": "sundials", "output": "â Žâ ¥â â ™â Šâ â ‡â Ž" }, { "input": "sundown", "output": "â Žâ ¥â â ™â ªâ " }, { "input": "sundowns", "output": "â Žâ ¥â â ™â ªâ â Ž" }, { "input": "sundries", "output": "â Žâ ¥â â ™â —â Šâ ‘â Ž" }, { "input": "sundry", "output": "â Žâ ¥â â ™â —â ½" }, { "input": "sunfish", "output": "â Žâ ¥â â ‹â Šâ ©" }, { "input": "sunfishes", "output": "â Žâ ¥â â ‹â Šâ ©â ‘â Ž" }, { "input": "sunflower", "output": "â Žâ ¥â â ‹â ‡â ªâ »" }, { "input": "sunflowers", "output": "â Žâ ¥â â ‹â ‡â ªâ »â Ž" }, { "input": "sung", "output": "â Žâ ¥â â ›" }, { "input": "sunglasses", "output": "â Žâ ¥â â ›â ‡â â Žâ Žâ ‘â Ž" }, { "input": "sunk", "output": "â Žâ ¥â â …" }, { "input": "sunken", "output": "â Žâ ¥â â …â ¢" }, { "input": "sunlamp", "output": "â Žâ ¥â â ‡â â â " }, { "input": "sunlamps", "output": "â Žâ ¥â â ‡â â â â Ž" }, { "input": "sunless", "output": "â Žâ ¥â â ¨â Ž" }, { "input": "sunlight", "output": "â Žâ ¥â â ‡â Šâ £â ž" }, { "input": "sunlit", "output": "â Žâ ¥â â ‡â Šâ ž" }, { "input": "sunned", "output": "â Žâ ¥â â â «" }, { "input": "sunnier", "output": "â Žâ ¥â â â Šâ »" }, { "input": "sunniest", "output": "â Žâ ¥â â â Šâ ‘â Œ" }, { "input": "sunning", "output": "â Žâ ¥â â â ¬" }, { "input": "sunny", "output": "â Žâ ¥â â â ½" }, { "input": "sunrise", "output": "â Žâ ¥â â —â Šâ Žâ ‘" }, { "input": "sunrises", "output": "â Žâ ¥â â —â Šâ Žâ ‘â Ž" }, { "input": "sunroof", "output": "â Žâ ¥â â —â •â ·" }, { "input": "sunroofs", "output": "â Žâ ¥â â —â •â ·â Ž" }, { "input": "suns", "output": "â Žâ ¥â â Ž" }, { "input": "sunscreen", "output": "â Žâ ¥â â Žâ ‰â —â ‘â ¢" }, { "input": "sunscreens", "output": "â Žâ ¥â â Žâ ‰â —⠑⠢⠎" }, { "input": "sunset", "output": "â Žâ ¥â â Žâ ‘â ž" }, { "input": "sunsets", "output": "â Žâ ¥â â Žâ ‘â žâ Ž" }, { "input": "sunshine", "output": "â Žâ ¥â â ©â ”â ‘" }, { "input": "sunspot", "output": "â Žâ ¥â â Žâ â •â ž" }, { "input": "sunspots", "output": "â Žâ ¥â â Žâ â •â žâ Ž" }, { "input": "sunstroke", "output": "â Žâ ¥â â Œâ —â •â …â ‘" }, { "input": "suntan", "output": "â Žâ ¥â â žâ â " }, { "input": "suntanned", "output": "â Žâ ¥â â žâ â â â «" }, { "input": "suntanning", "output": "â Žâ ¥â â žâ â â â ¬" }, { "input": "suntans", "output": "â Žâ ¥â â žâ â â Ž" }, { "input": "sunup", "output": "â Žâ ¥â â ¥â " }, { "input": "sup", "output": "â Žâ ¥â " }, { "input": "super", "output": "â Žâ ¥â â »" }, { "input": "superabundance", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â ¨â ‘" }, { "input": "superabundances", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â ¨â ‘â Ž" }, { "input": "superabundant", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â â â ž" }, { "input": "superannuate", "output": "â Žâ ¥â â »â â â â ¥â â žâ ‘" }, { "input": "superannuated", "output": "â Žâ ¥â â »â â â â ¥â â žâ «" }, { "input": "superannuates", "output": "â Žâ ¥â â »â â â â ¥â â žâ ‘â Ž" }, { "input": "superannuating", "output": "â Žâ ¥â â »â â â â ¥â â žâ ¬" }, { "input": "superb", "output": "â Žâ ¥â â »â ƒ" }, { "input": "superber", "output": "â Žâ ¥â â »â ƒâ »" }, { "input": "superbest", "output": "â Žâ ¥â â »â ƒâ ‘â Œ" }, { "input": "superbly", "output": "â Žâ ¥â â »â ƒâ ‡â ½" }, { "input": "supercharge", "output": "â Žâ ¥â â »â ¡â œâ ›â ‘" }, { "input": "supercharged", "output": "â Žâ ¥â â »â ¡â œâ ›â «" }, { "input": "supercharger", "output": "â Žâ ¥â â »â ¡â œâ ›â »" }, { "input": "superchargers", "output": "â Žâ ¥â â »â ¡â œâ ›â »â Ž" }, { "input": "supercharges", "output": "â Žâ ¥â â »â ¡â œâ ›â ‘â Ž" }, { "input": "supercharging", "output": "â Žâ ¥â â »â ¡â œâ ›â ¬" }, { "input": "supercilious", "output": "â Žâ ¥â â »â ‰â Šâ ‡â Šâ ³â Ž" }, { "input": "supercomputer", "output": "â Žâ ¥â â »â ‰â •â â â ¥â žâ »" }, { "input": "supercomputers", "output": "â Žâ ¥â â »â ‰â •â â â ¥â žâ »â Ž" }, { "input": "superconductivity", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ Šâ §â °â ½" }, { "input": "superconductor", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ •â —" }, { "input": "superconductors", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ •â —â Ž" }, { "input": "superego", "output": "â Žâ ¥â â »â ‘⠛⠕" }, { "input": "superegos", "output": "â Žâ ¥â â »â ‘⠛⠕⠎" }, { "input": "superficial", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ â ‡" }, { "input": "superficiality", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ â ‡â °â ½" }, { "input": "superficially", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ â ‡â ‡â ½" }, { "input": "superfluity", "output": "â Žâ ¥â â »â ‹â ‡â ¥â °â ½" }, { "input": "superfluous", "output": "â Žâ ¥â â »â ‹â ‡â ¥â ³â Ž" }, { "input": "superhighway", "output": "â Žâ ¥â â »â “⠊⠣⠺â â ½" }, { "input": "superhighways", "output": "â Žâ ¥â â »â “⠊⠣⠺â â ½â Ž" }, { "input": "superhuman", "output": "â Žâ ¥â â »â “â ¥â â â " }, { "input": "superimpose", "output": "â Žâ ¥â â »â Šâ â â •â Žâ ‘" }, { "input": "superimposed", "output": "â Žâ ¥â â »â Šâ â â •â Žâ «" }, { "input": "superimposes", "output": "â Žâ ¥â â »â Šâ â â •â Žâ ‘â Ž" }, { "input": "superimposing", "output": "â Žâ ¥â â »â Šâ â â •â Žâ ¬" }, { "input": "superintend", "output": "â Žâ ¥â â »â ”⠞⠢⠙" }, { "input": "superintended", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠫" }, { "input": "superintendence", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠰⠑" }, { "input": "superintendency", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠉⠽" }, { "input": "superintendent", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠞" }, { "input": "superintendents", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠞⠎" }, { "input": "superintending", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠬" }, { "input": "superintends", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠎" }, { "input": "superior", "output": "â Žâ ¥â â »â Šâ •â —" }, { "input": "superiority", "output": "â Žâ ¥â â »â Šâ •â —â °â ½" }, { "input": "superiors", "output": "â Žâ ¥â â »â Šâ •â —â Ž" }, { "input": "superlative", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘" }, { "input": "superlatively", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "superlatives", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "superman", "output": "â Žâ ¥â â »â â â " }, { "input": "supermarket", "output": "â Žâ ¥â â »â â œâ …â ‘â ž" }, { "input": "supermarkets", "output": "â Žâ ¥â â »â â œâ …â ‘â žâ Ž" }, { "input": "supermen", "output": "â Žâ ¥â â »â â ¢" }, { "input": "supernatural", "output": "â Žâ ¥â â »â â â žâ ¥â —â â ‡" }, { "input": "supernaturals", "output": "â Žâ ¥â â »â â â žâ ¥â —â â ‡â Ž" }, { "input": "supernova", "output": "â Žâ ¥â â »â â •â §â " }, { "input": "supernovae", "output": "â Žâ ¥â â »â â •â §â â ‘" }, { "input": "supernovas", "output": "â Žâ ¥â â »â â •â §â â Ž" }, { "input": "supernumeraries", "output": "â Žâ ¥â â »â â ¥â â »â œâ Šâ ‘â Ž" }, { "input": "supernumerary", "output": "â Žâ ¥â â »â â ¥â â »â œâ ½" }, { "input": "superpower", "output": "â Žâ ¥â â »â â ªâ »" }, { "input": "superpowers", "output": "â Žâ ¥â â »â â ªâ »â Ž" }, { "input": "supers", "output": "â Žâ ¥â â »â Ž" }, { "input": "superscript", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â ž" }, { "input": "superscripts", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â žâ Ž" }, { "input": "supersede", "output": "â Žâ ¥â â »â Žâ «â ‘" }, { "input": "superseded", "output": "â Žâ ¥â â »â Žâ «â «" }, { "input": "supersedes", "output": "â Žâ ¥â â »â Žâ «â ‘â Ž" }, { "input": "superseding", "output": "â Žâ ¥â â »â Žâ «â ¬" }, { "input": "supersonic", "output": "â Žâ ¥â â »â Žâ •â â Šâ ‰" }, { "input": "superstar", "output": "â Žâ ¥â â »â Œâ œ" }, { "input": "superstars", "output": "â Žâ ¥â â »â Œâ œâ Ž" }, { "input": "superstition", "output": "â Žâ ¥â â »â Œâ Šâ °â " }, { "input": "superstitions", "output": "â Žâ ¥â â »â Œâ Šâ °â â Ž" }, { "input": "superstitious", "output": "â Žâ ¥â â »â Œâ Šâ žâ Šâ ³â Ž" }, { "input": "superstitiously", "output": "â Žâ ¥â â »â Œâ Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "superstructure", "output": "â Žâ ¥â â »â Œâ —⠥⠉⠞⠥⠗⠑" }, { "input": "superstructures", "output": "â Žâ ¥â â »â Œâ —⠥⠉⠞⠥⠗⠑⠎" }, { "input": "supertanker", "output": "â Žâ ¥â â »â žâ â â …â »" }, { "input": "supertankers", "output": "â Žâ ¥â â »â žâ â â …⠻⠎" }, { "input": "supervene", "output": "â Žâ ¥â â »â §â ¢â ‘" }, { "input": "supervened", "output": "â Žâ ¥â â »â §â ¢â «" }, { "input": "supervenes", "output": "â Žâ ¥â â »â §â ¢â ‘â Ž" }, { "input": "supervening", "output": "â Žâ ¥â â »â §â ¢â ¬" }, { "input": "supervise", "output": "â Žâ ¥â â »â §â Šâ Žâ ‘" }, { "input": "supervised", "output": "â Žâ ¥â â »â §â Šâ Žâ «" }, { "input": "supervises", "output": "â Žâ ¥â â »â §â Šâ Žâ ‘â Ž" }, { "input": "supervising", "output": "â Žâ ¥â â »â §â Šâ Žâ ¬" }, { "input": "supervision", "output": "â Žâ ¥â â »â §â Šâ ¨â " }, { "input": "supervisions", "output": "â Žâ ¥â â »â §â Šâ ¨â â Ž" }, { "input": "supervisor", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —" }, { "input": "supervisors", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —â Ž" }, { "input": "supervisory", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —â ½" }, { "input": "supine", "output": "â Žâ ¥â â ”â ‘" }, { "input": "supped", "output": "â Žâ ¥â â â «" }, { "input": "supper", "output": "â Žâ ¥â â â »" }, { "input": "suppers", "output": "â Žâ ¥â â â »â Ž" }, { "input": "supping", "output": "â Žâ ¥â â â ¬" }, { "input": "supplant", "output": "â Žâ ¥â â â ‡â â â ž" }, { "input": "supplanted", "output": "â Žâ ¥â â â ‡â â â žâ «" }, { "input": "supplanting", "output": "â Žâ ¥â â â ‡â â â žâ ¬" }, { "input": "supplants", "output": "â Žâ ¥â â â ‡â â â žâ Ž" }, { "input": "supple", "output": "â Žâ ¥â â â ‡â ‘" }, { "input": "supplement", "output": "â Žâ ¥â â â ‡â ‘â °â ž" }, { "input": "supplemental", "output": "â Žâ ¥â â â ‡â ‘â °â žâ â ‡" }, { "input": "supplementary", "output": "â Žâ ¥â â â ‡â ‘⠰⠞⠜⠽" }, { "input": "supplemented", "output": "â Žâ ¥â â â ‡â ‘â °â žâ «" }, { "input": "supplementing", "output": "â Žâ ¥â â â ‡â ‘â °â žâ ¬" }, { "input": "supplements", "output": "â Žâ ¥â â â ‡â ‘â °â žâ Ž" }, { "input": "suppleness", "output": "â Žâ ¥â â â ‡â ‘â °â Ž" }, { "input": "suppler", "output": "â Žâ ¥â â â ‡â »" }, { "input": "supplest", "output": "â Žâ ¥â â â ‡â ‘â Œ" }, { "input": "suppliant", "output": "â Žâ ¥â â â ‡â Šâ â â ž" }, { "input": "suppliants", "output": "â Žâ ¥â â â ‡â Šâ â â žâ Ž" }, { "input": "supplicant", "output": "â Žâ ¥â â â ‡â Šâ ‰â â â ž" }, { "input": "supplicants", "output": "â Žâ ¥â â â ‡â Šâ ‰â â â žâ Ž" }, { "input": "supplicate", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ ‘" }, { "input": "supplicated", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ «" }, { "input": "supplicates", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "supplicating", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ ¬" }, { "input": "supplication", "output": "â Žâ ¥â â â ‡â Šâ ‰â â °â " }, { "input": "supplications", "output": "â Žâ ¥â â â ‡â Šâ ‰â â °â â Ž" }, { "input": "supplied", "output": "â Žâ ¥â â â ‡â Šâ «" }, { "input": "supplier", "output": "â Žâ ¥â â â ‡â Šâ »" }, { "input": "suppliers", "output": "â Žâ ¥â â â ‡â Šâ »â Ž" }, { "input": "supplies", "output": "â Žâ ¥â â â ‡â Šâ ‘â Ž" }, { "input": "supply", "output": "â Žâ ¥â â â ‡â ½" }, { "input": "supplying", "output": "â Žâ ¥â â â ‡â ½â ¬" }, { "input": "support", "output": "â Žâ ¥â â â •â —â ž" }, { "input": "supportable", "output": "â Žâ ¥â â â •â —â žâ â ƒâ ‡â ‘" }, { "input": "supported", "output": "â Žâ ¥â â â •â —â žâ «" }, { "input": "supporter", "output": "â Žâ ¥â â â •â —â žâ »" }, { "input": "supporters", "output": "â Žâ ¥â â â •⠗⠞⠻⠎" }, { "input": "supporting", "output": "â Žâ ¥â â â •â —â žâ ¬" }, { "input": "supportive", "output": "â Žâ ¥â â â •â —â žâ Šâ §â ‘" }, { "input": "supports", "output": "â Žâ ¥â â â •â —â žâ Ž" }, { "input": "suppose", "output": "â Žâ ¥â â â •â Žâ ‘" }, { "input": "supposed", "output": "â Žâ ¥â â â •â Žâ «" }, { "input": "supposedly", "output": "â Žâ ¥â â â •⠎⠫⠇⠽" }, { "input": "supposes", "output": "â Žâ ¥â â â •â Žâ ‘â Ž" }, { "input": "supposing", "output": "â Žâ ¥â â â •â Žâ ¬" }, { "input": "supposition", "output": "â Žâ ¥â â â •â Žâ Šâ °â " }, { "input": "suppositions", "output": "â Žâ ¥â â â •â Žâ Šâ °â â Ž" }, { "input": "suppositories", "output": "â Žâ ¥â â â •â Žâ Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "suppository", "output": "â Žâ ¥â â â •â Žâ Šâ žâ •â —â ½" }, { "input": "suppress", "output": "â Žâ ¥â â â —â ‘â Žâ Ž" }, { "input": "suppressed", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ «" }, { "input": "suppresses", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "suppressing", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ ¬" }, { "input": "suppression", "output": "â Žâ ¥â â â —â ‘â Žâ ¨â " }, { "input": "suppurate", "output": "â Žâ ¥â â â ¥â —â â žâ ‘" }, { "input": "suppurated", "output": "â Žâ ¥â â â ¥â —â â žâ «" }, { "input": "suppurates", "output": "â Žâ ¥â â â ¥â —â â žâ ‘â Ž" }, { "input": "suppurating", "output": "â Žâ ¥â â â ¥â —â â žâ ¬" }, { "input": "suppuration", "output": "â Žâ ¥â â â ¥â —â â °â " }, { "input": "supranational", "output": "â Žâ ¥â â —â â â â °â â â ‡" }, { "input": "supremacist", "output": "â Žâ ¥â â —â ‘â â â ‰â Šâ Œ" }, { "input": "supremacists", "output": "â Žâ ¥â â —â ‘â â â ‰â Šâ Œâ Ž" }, { "input": "supremacy", "output": "â Žâ ¥â â —â ‘â â â ‰â ½" }, { "input": "supreme", "output": "â Žâ ¥â â —â ‘â â ‘" }, { "input": "supremely", "output": "â Žâ ¥â â —â ‘â â ‘⠇⠽" }, { "input": "sups", "output": "â Žâ ¥â â Ž" }, { "input": "surcease", "output": "⠎⠥⠗⠉⠂⠎⠑" }, { "input": "surceased", "output": "⠎⠥⠗⠉⠂⠎⠫" }, { "input": "surceases", "output": "⠎⠥⠗⠉⠂⠎⠑⠎" }, { "input": "surceasing", "output": "⠎⠥⠗⠉⠂⠎⠬" }, { "input": "surcharge", "output": "⠎⠥⠗⠡⠜⠛⠑" }, { "input": "surcharged", "output": "⠎⠥⠗⠡⠜⠛⠫" }, { "input": "surcharges", "output": "⠎⠥⠗⠡⠜⠛⠑⠎" }, { "input": "surcharging", "output": "⠎⠥⠗⠡⠜⠛⠬" }, { "input": "sure", "output": "⠎⠥⠗⠑" }, { "input": "surefire", "output": "⠎⠥⠗⠑⠋⠊⠗⠑" }, { "input": "surefooted", "output": "⠎⠥⠗⠑⠋⠕⠕⠞⠫" }, { "input": "surely", "output": "⠎⠥⠗⠑⠇⠽" }, { "input": "sureness", "output": "⠎⠥⠗⠑⠰⠎" }, { "input": "surer", "output": "⠎⠥⠗⠻" }, { "input": "surest", "output": "⠎⠥⠗⠑⠌" }, { "input": "sureties", "output": "⠎⠥⠗⠑⠞⠊⠑⠎" }, { "input": "surety", "output": "⠎⠥⠗⠑⠞⠽" }, { "input": "surf", "output": "⠎⠥⠗⠋" }, { "input": "surface", "output": "⠎⠥⠗⠋â â ‰â ‘" }, { "input": "surfaced", "output": "⠎⠥⠗⠋â â ‰â «" }, { "input": "surfaces", "output": "⠎⠥⠗⠋â â ‰â ‘â Ž" }, { "input": "surfacing", "output": "⠎⠥⠗⠋â â ‰â ¬" }, { "input": "surfboard", "output": "⠎⠥⠗⠋⠃⠕⠜⠙" }, { "input": "surfboarded", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠫" }, { "input": "surfboarding", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠬" }, { "input": "surfboards", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠎" }, { "input": "surfed", "output": "⠎⠥⠗⠋⠫" }, { "input": "surfeit", "output": "⠎⠥⠗⠋⠑⠊⠞" }, { "input": "surfeited", "output": "⠎⠥⠗⠋⠑⠊⠞⠫" }, { "input": "surfeiting", "output": "⠎⠥⠗⠋⠑⠊⠞⠬" }, { "input": "surfeits", "output": "⠎⠥⠗⠋⠑⠊⠞⠎" }, { "input": "surfer", "output": "⠎⠥⠗⠋⠻" }, { "input": "surfers", "output": "⠎⠥⠗⠋⠻⠎" }, { "input": "surfing", "output": "⠎⠥⠗⠋⠬" }, { "input": "surfs", "output": "⠎⠥⠗⠋⠎" }, { "input": "surge", "output": "⠎⠥⠗⠛⠑" }, { "input": "surged", "output": "⠎⠥⠗⠛⠫" }, { "input": "surgeon", "output": "⠎⠥⠗⠛⠑⠕â " }, { "input": "surgeons", "output": "⠎⠥⠗⠛⠑⠕â â Ž" }, { "input": "surgeries", "output": "⠎⠥⠗⠛⠻⠊⠑⠎" }, { "input": "surgery", "output": "⠎⠥⠗⠛⠻⠽" }, { "input": "surges", "output": "⠎⠥⠗⠛⠑⠎" }, { "input": "surgical", "output": "⠎⠥⠗⠛⠊⠉â â ‡" }, { "input": "surgically", "output": "⠎⠥⠗⠛⠊⠉â â ‡â ‡â ½" }, { "input": "surging", "output": "⠎⠥⠗⠛⠬" }, { "input": "surlier", "output": "⠎⠥⠗⠇⠊⠻" }, { "input": "surliest", "output": "⠎⠥⠗⠇⠊⠑⠌" }, { "input": "surliness", "output": "⠎⠥⠗⠇⠊⠰⠎" }, { "input": "surly", "output": "⠎⠥⠗⠇⠽" }, { "input": "surmise", "output": "⠎⠥⠗â â Šâ Žâ ‘" }, { "input": "surmised", "output": "⠎⠥⠗â â Šâ Žâ «" }, { "input": "surmises", "output": "⠎⠥⠗â â Šâ Žâ ‘â Ž" }, { "input": "surmising", "output": "⠎⠥⠗â â Šâ Žâ ¬" }, { "input": "surmount", "output": "⠎⠥⠗â â ¨â ž" }, { "input": "surmountable", "output": "⠎⠥⠗â â ¨â žâ â ƒâ ‡â ‘" }, { "input": "surmounted", "output": "⠎⠥⠗â â ¨â žâ «" }, { "input": "surmounting", "output": "⠎⠥⠗â â ¨â žâ ¬" }, { "input": "surmounts", "output": "⠎⠥⠗â â ¨â žâ Ž" }, { "input": "surname", "output": "⠎⠥⠗â â " }, { "input": "surnames", "output": "⠎⠥⠗â â â Ž" }, { "input": "surpass", "output": "⠎⠥⠗â â â Žâ Ž" }, { "input": "surpassed", "output": "⠎⠥⠗â â â Žâ Žâ «" }, { "input": "surpasses", "output": "⠎⠥⠗â â â Žâ Žâ ‘â Ž" }, { "input": "surpassing", "output": "⠎⠥⠗â â â Žâ Žâ ¬" }, { "input": "surplice", "output": "⠎⠥⠗â â ‡â Šâ ‰â ‘" }, { "input": "surplices", "output": "⠎⠥⠗â â ‡â Šâ ‰â ‘â Ž" }, { "input": "surplus", "output": "⠎⠥⠗â â ‡â ¥â Ž" }, { "input": "surplused", "output": "⠎⠥⠗â â ‡â ¥â Žâ «" }, { "input": "surpluses", "output": "⠎⠥⠗â â ‡â ¥â Žâ ‘â Ž" }, { "input": "surplusing", "output": "⠎⠥⠗â â ‡â ¥â Žâ ¬" }, { "input": "surplussed", "output": "⠎⠥⠗â â ‡â ¥â Žâ Žâ «" }, { "input": "surplussing", "output": "⠎⠥⠗â â ‡â ¥â Žâ Žâ ¬" }, { "input": "surprise", "output": "⠎⠥⠗â â —â Šâ Žâ ‘" }, { "input": "surprised", "output": "⠎⠥⠗â â —â Šâ Žâ «" }, { "input": "surprises", "output": "⠎⠥⠗â â —â Šâ Žâ ‘â Ž" }, { "input": "surprising", "output": "⠎⠥⠗â â —â Šâ Žâ ¬" }, { "input": "surprisingly", "output": "⠎⠥⠗â â —⠊⠎⠬⠇⠽" }, { "input": "surprisings", "output": "⠎⠥⠗â â —⠊⠎⠬⠎" }, { "input": "surreal", "output": "⠎⠥⠗⠗⠂⠇" }, { "input": "surrealism", "output": "⠎⠥⠗⠗⠂⠇⠊⠎â " }, { "input": "surrealist", "output": "⠎⠥⠗⠗⠂⠇⠊⠌" }, { "input": "surrealistic", "output": "⠎⠥⠗⠗⠂⠇⠊⠌⠊⠉" }, { "input": "surrealists", "output": "⠎⠥⠗⠗⠂⠇⠊⠌⠎" }, { "input": "surrender", "output": "⠎⠥⠗⠗⠢⠙⠻" }, { "input": "surrendered", "output": "⠎⠥⠗⠗⠢⠙⠻⠫" }, { "input": "surrendering", "output": "⠎⠥⠗⠗⠢⠙⠻⠬" }, { "input": "surrenders", "output": "⠎⠥⠗⠗⠢⠙⠻⠎" }, { "input": "surreptitious", "output": "⠎⠥⠗⠗⠑â â žâ Šâ žâ Šâ ³â Ž" }, { "input": "surreptitiously", "output": "⠎⠥⠗⠗⠑â â žâ Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "surrey", "output": "⠎⠥⠗⠗⠑⠽" }, { "input": "surreys", "output": "⠎⠥⠗⠗⠑⠽⠎" }, { "input": "surrogate", "output": "⠎⠥⠗⠗⠕⠛â â žâ ‘" }, { "input": "surrogates", "output": "⠎⠥⠗⠗⠕⠛â â žâ ‘â Ž" }, { "input": "surround", "output": "⠎⠥⠗⠗⠨⠙" }, { "input": "surrounded", "output": "⠎⠥⠗⠗⠨⠙⠫" }, { "input": "surrounding", "output": "⠎⠥⠗⠗⠨⠙⠬" }, { "input": "surroundings", "output": "⠎⠥⠗⠗⠨⠙⠬⠎" }, { "input": "surrounds", "output": "⠎⠥⠗⠗⠨⠙⠎" }, { "input": "surtax", "output": "⠎⠥⠗⠞â â ­" }, { "input": "surtaxed", "output": "⠎⠥⠗⠞â â ­â «" }, { "input": "surtaxes", "output": "⠎⠥⠗⠞â â ­â ‘â Ž" }, { "input": "surtaxing", "output": "⠎⠥⠗⠞â â ­â ¬" }, { "input": "surveillance", "output": "⠎⠥⠗⠧⠑⠊⠇⠇⠨⠑" }, { "input": "survey", "output": "⠎⠥⠗⠧⠑⠽" }, { "input": "surveyed", "output": "⠎⠥⠗⠧⠑⠽⠫" }, { "input": "surveying", "output": "⠎⠥⠗⠧⠑⠽⠬" }, { "input": "surveyor", "output": "⠎⠥⠗⠧⠑⠽⠕⠗" }, { "input": "surveyors", "output": "⠎⠥⠗⠧⠑⠽⠕⠗⠎" }, { "input": "surveys", "output": "⠎⠥⠗⠧⠑⠽⠎" }, { "input": "survival", "output": "⠎⠥⠗⠧⠊⠧â â ‡" }, { "input": "survivals", "output": "⠎⠥⠗⠧⠊⠧â â ‡â Ž" }, { "input": "survive", "output": "⠎⠥⠗⠧⠊⠧⠑" }, { "input": "survived", "output": "⠎⠥⠗⠧⠊⠧⠫" }, { "input": "survives", "output": "⠎⠥⠗⠧⠊⠧⠑⠎" }, { "input": "surviving", "output": "⠎⠥⠗⠧⠊⠧⠬" }, { "input": "survivor", "output": "⠎⠥⠗⠧⠊⠧⠕⠗" }, { "input": "survivors", "output": "⠎⠥⠗⠧⠊⠧⠕⠗⠎" }, { "input": "susceptibility", "output": "⠎⠥⠎⠉⠑â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "susceptible", "output": "⠎⠥⠎⠉⠑â â žâ Šâ ƒâ ‡â ‘" }, { "input": "sushi", "output": "⠎⠥⠩⠊" }, { "input": "suspect", "output": "⠎⠥⠎â â ‘⠉⠞" }, { "input": "suspected", "output": "⠎⠥⠎â â ‘⠉⠞⠫" }, { "input": "suspecting", "output": "⠎⠥⠎â â ‘⠉⠞⠬" }, { "input": "suspects", "output": "⠎⠥⠎â â ‘⠉⠞⠎" }, { "input": "suspend", "output": "⠎⠥⠎â â ¢â ™" }, { "input": "suspended", "output": "⠎⠥⠎â â ¢â ™â «" }, { "input": "suspender", "output": "⠎⠥⠎â â ¢â ™â »" }, { "input": "suspenders", "output": "⠎⠥⠎â â ¢â ™â »â Ž" }, { "input": "suspending", "output": "⠎⠥⠎â â ¢â ™â ¬" }, { "input": "suspends", "output": "⠎⠥⠎â â ¢â ™â Ž" }, { "input": "suspense", "output": "⠎⠥⠎â â ¢â Žâ ‘" }, { "input": "suspenseful", "output": "⠎⠥⠎â â ¢â Žâ ‘â °â ‡" }, { "input": "suspension", "output": "⠎⠥⠎â â ¢â ¨â " }, { "input": "suspensions", "output": "⠎⠥⠎â â ¢â ¨â â Ž" }, { "input": "suspicion", "output": "⠎⠥⠎â â Šâ ‰â Šâ •â " }, { "input": "suspicions", "output": "⠎⠥⠎â â Šâ ‰â Šâ •â â Ž" }, { "input": "suspicious", "output": "⠎⠥⠎â â Šâ ‰â Šâ ³â Ž" }, { "input": "suspiciously", "output": "⠎⠥⠎â â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "sustain", "output": "⠎⠥⠌â â ”" }, { "input": "sustainable", "output": "⠎⠥⠌â â ”â â ƒâ ‡â ‘" }, { "input": "sustained", "output": "⠎⠥⠌â â ”â «" }, { "input": "sustaining", "output": "⠎⠥⠌â â ”â ¬" }, { "input": "sustains", "output": "⠎⠥⠌â â ”â Ž" }, { "input": "sustenance", "output": "⠎⠥⠌⠢⠨⠑" }, { "input": "suture", "output": "⠎⠥⠞⠥⠗⠑" }, { "input": "sutured", "output": "⠎⠥⠞⠥⠗⠫" }, { "input": "sutures", "output": "⠎⠥⠞⠥⠗⠑⠎" }, { "input": "suturing", "output": "⠎⠥⠞⠥⠗⠬" }, { "input": "svelte", "output": "⠎⠧⠑⠇⠞⠑" }, { "input": "svelter", "output": "⠎⠧⠑⠇⠞⠻" }, { "input": "sveltest", "output": "⠎⠧⠑⠇⠞⠑⠌" }, { "input": "swab", "output": "â Žâ ºâ â ƒ" }, { "input": "swabbed", "output": "â Žâ ºâ â †â «" }, { "input": "swabbing", "output": "â Žâ ºâ â †â ¬" }, { "input": "swabs", "output": "â Žâ ºâ â ƒâ Ž" }, { "input": "swaddle", "output": "â Žâ ºâ â ™â ™â ‡â ‘" }, { "input": "swaddled", "output": "â Žâ ºâ â ™â ™â ‡â «" }, { "input": "swaddles", "output": "â Žâ ºâ â ™â ™â ‡â ‘â Ž" }, { "input": "swaddling", "output": "â Žâ ºâ â ™â ™â ‡â ¬" }, { "input": "swag", "output": "â Žâ ºâ â ›" }, { "input": "swagged", "output": "â Žâ ºâ â ¶â «" }, { "input": "swagger", "output": "â Žâ ºâ â ¶â »" }, { "input": "swaggered", "output": "â Žâ ºâ â ¶â »â «" }, { "input": "swaggerer", "output": "â Žâ ºâ â ¶â »â »" }, { "input": "swaggering", "output": "â Žâ ºâ â ¶â »â ¬" }, { "input": "swaggers", "output": "â Žâ ºâ â ¶â »â Ž" }, { "input": "swagging", "output": "â Žâ ºâ â ¶â ¬" }, { "input": "swags", "output": "â Žâ ºâ â ›â Ž" }, { "input": "swain", "output": "â Žâ ºâ â ”" }, { "input": "swains", "output": "â Žâ ºâ â ”â Ž" }, { "input": "swallow", "output": "â Žâ ºâ â ‡â ‡â ª" }, { "input": "swallowed", "output": "â Žâ ºâ â ‡â ‡â ªâ «" }, { "input": "swallowing", "output": "â Žâ ºâ â ‡â ‡â ªâ ¬" }, { "input": "swallows", "output": "â Žâ ºâ â ‡â ‡â ªâ Ž" }, { "input": "swallowtail", "output": "â Žâ ºâ â ‡â ‡â ªâ žâ â Šâ ‡" }, { "input": "swallowtails", "output": "â Žâ ºâ â ‡â ‡â ªâ žâ â Šâ ‡â Ž" }, { "input": "swam", "output": "â Žâ ºâ â " }, { "input": "swami", "output": "â Žâ ºâ â â Š" }, { "input": "swamis", "output": "â Žâ ºâ â â Šâ Ž" }, { "input": "swamp", "output": "â Žâ ºâ â â " }, { "input": "swamped", "output": "â Žâ ºâ â â â «" }, { "input": "swampier", "output": "â Žâ ºâ â â â Šâ »" }, { "input": "swampiest", "output": "â Žâ ºâ â â â Šâ ‘â Œ" }, { "input": "swamping", "output": "â Žâ ºâ â â â ¬" }, { "input": "swamps", "output": "â Žâ ºâ â â â Ž" }, { "input": "swampy", "output": "â Žâ ºâ â â â ½" }, { "input": "swan", "output": "â Žâ ºâ â " }, { "input": "swank", "output": "â Žâ ºâ â â …" }, { "input": "swanked", "output": "â Žâ ºâ â â …â «" }, { "input": "swanker", "output": "â Žâ ºâ â â …â »" }, { "input": "swankest", "output": "â Žâ ºâ â â …â ‘â Œ" }, { "input": "swankier", "output": "â Žâ ºâ â â …â Šâ »" }, { "input": "swankiest", "output": "â Žâ ºâ â â …â Šâ ‘â Œ" }, { "input": "swanking", "output": "â Žâ ºâ â â …â ¬" }, { "input": "swanks", "output": "â Žâ ºâ â â …â Ž" }, { "input": "swanky", "output": "â Žâ ºâ â â …â ½" }, { "input": "swans", "output": "â Žâ ºâ â â Ž" }, { "input": "swap", "output": "â Žâ ºâ â " }, { "input": "swapped", "output": "â Žâ ºâ â â â «" }, { "input": "swapping", "output": "â Žâ ºâ â â â ¬" }, { "input": "swaps", "output": "â Žâ ºâ â â Ž" }, { "input": "sward", "output": "⠎⠺⠜⠙" }, { "input": "swards", "output": "⠎⠺⠜⠙⠎" }, { "input": "swarm", "output": "⠎⠺⠜â " }, { "input": "swarmed", "output": "⠎⠺⠜â â «" }, { "input": "swarming", "output": "⠎⠺⠜â â ¬" }, { "input": "swarms", "output": "⠎⠺⠜â â Ž" }, { "input": "swarthier", "output": "⠎⠺⠜⠹⠊⠻" }, { "input": "swarthiest", "output": "⠎⠺⠜⠹⠊⠑⠌" }, { "input": "swarthy", "output": "⠎⠺⠜⠹⠽" }, { "input": "swash", "output": "â Žâ ºâ â ©" }, { "input": "swashbuckler", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠻" }, { "input": "swashbucklers", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠻⠎" }, { "input": "swashbuckling", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠬" }, { "input": "swashed", "output": "â Žâ ºâ â ©â «" }, { "input": "swashes", "output": "â Žâ ºâ â ©â ‘â Ž" }, { "input": "swashing", "output": "â Žâ ºâ â ©â ¬" }, { "input": "swastika", "output": "â Žâ ºâ â Œâ Šâ …â " }, { "input": "swastikas", "output": "â Žâ ºâ â Œâ Šâ …â â Ž" }, { "input": "swat", "output": "â Žâ ºâ â ž" }, { "input": "swatch", "output": "â Žâ ºâ â žâ ¡" }, { "input": "swatches", "output": "â Žâ ºâ â žâ ¡â ‘â Ž" }, { "input": "swath", "output": "â Žâ ºâ â ¹" }, { "input": "swathe", "output": "â Žâ ºâ â ®" }, { "input": "swathed", "output": "â Žâ ºâ â ®â ™" }, { "input": "swathes", "output": "â Žâ ºâ â ®â Ž" }, { "input": "swathing", "output": "â Žâ ºâ â ¹â ¬" }, { "input": "swaths", "output": "â Žâ ºâ â ¹â Ž" }, { "input": "swats", "output": "â Žâ ºâ â žâ Ž" }, { "input": "swatted", "output": "â Žâ ºâ â žâ žâ «" }, { "input": "swatter", "output": "â Žâ ºâ â žâ žâ »" }, { "input": "swattered", "output": "â Žâ ºâ â žâ žâ »â «" }, { "input": "swattering", "output": "â Žâ ºâ â žâ žâ »â ¬" }, { "input": "swatters", "output": "â Žâ ºâ â žâ žâ »â Ž" }, { "input": "swatting", "output": "â Žâ ºâ â žâ žâ ¬" }, { "input": "sway", "output": "â Žâ ºâ â ½" }, { "input": "swaybacked", "output": "â Žâ ºâ â ½â ƒâ â ‰â …â «" }, { "input": "swayed", "output": "â Žâ ºâ â ½â «" }, { "input": "swaying", "output": "â Žâ ºâ â ½â ¬" }, { "input": "sways", "output": "â Žâ ºâ â ½â Ž" }, { "input": "swear", "output": "⠎⠺⠑⠜" }, { "input": "swearer", "output": "⠎⠺⠑⠜⠻" }, { "input": "swearers", "output": "⠎⠺⠑⠜⠻⠎" }, { "input": "swearing", "output": "⠎⠺⠑⠜⠬" }, { "input": "swears", "output": "⠎⠺⠑⠜⠎" }, { "input": "swearword", "output": "⠎⠺⠑⠜⠘⠺" }, { "input": "swearwords", "output": "⠎⠺⠑⠜⠘⠺⠎" }, { "input": "sweat", "output": "⠎⠺⠂⠞" }, { "input": "sweater", "output": "⠎⠺⠂⠞⠻" }, { "input": "sweaters", "output": "⠎⠺⠂⠞⠻⠎" }, { "input": "sweatier", "output": "⠎⠺⠂⠞⠊⠻" }, { "input": "sweatiest", "output": "⠎⠺⠂⠞⠊⠑⠌" }, { "input": "sweating", "output": "⠎⠺⠂⠞⠬" }, { "input": "sweatpants", "output": "⠎⠺⠂⠞â â â â žâ Ž" }, { "input": "sweats", "output": "⠎⠺⠂⠞⠎" }, { "input": "sweatshirt", "output": "⠎⠺⠂⠞⠩⠊⠗⠞" }, { "input": "sweatshirts", "output": "⠎⠺⠂⠞⠩⠊⠗⠞⠎" }, { "input": "sweatshop", "output": "⠎⠺⠂⠞⠩⠕â " }, { "input": "sweatshops", "output": "⠎⠺⠂⠞⠩⠕â â Ž" }, { "input": "sweaty", "output": "⠎⠺⠂⠞⠽" }, { "input": "sweep", "output": "⠎⠺⠑⠑â " }, { "input": "sweeper", "output": "⠎⠺⠑⠑â â »" }, { "input": "sweepers", "output": "⠎⠺⠑⠑â â »â Ž" }, { "input": "sweeping", "output": "⠎⠺⠑⠑â â ¬" }, { "input": "sweepings", "output": "⠎⠺⠑⠑â â ¬â Ž" }, { "input": "sweeps", "output": "⠎⠺⠑⠑â â Ž" }, { "input": "sweepstake", "output": "⠎⠺⠑⠑â â Œâ â …â ‘" }, { "input": "sweepstakes", "output": "⠎⠺⠑⠑â â Œâ â …â ‘â Ž" }, { "input": "sweet", "output": "⠎⠺⠑⠑⠞" }, { "input": "sweetbread", "output": "⠎⠺⠑⠑⠞⠃⠗⠂⠙" }, { "input": "sweetbreads", "output": "⠎⠺⠑⠑⠞⠃⠗⠂⠙⠎" }, { "input": "sweetbriar", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠜" }, { "input": "sweetbriars", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠜⠎" }, { "input": "sweetbrier", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠻" }, { "input": "sweetbriers", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠻⠎" }, { "input": "sweeten", "output": "⠎⠺⠑⠑⠞⠢" }, { "input": "sweetened", "output": "⠎⠺⠑⠑⠞⠢⠫" }, { "input": "sweetener", "output": "⠎⠺⠑⠑⠞⠢⠻" }, { "input": "sweeteners", "output": "⠎⠺⠑⠑⠞⠢⠻⠎" }, { "input": "sweetening", "output": "⠎⠺⠑⠑⠞⠢⠬" }, { "input": "sweetens", "output": "⠎⠺⠑⠑⠞⠢⠎" }, { "input": "sweeter", "output": "⠎⠺⠑⠑⠞⠻" }, { "input": "sweetest", "output": "⠎⠺⠑⠑⠞⠑⠌" }, { "input": "sweetheart", "output": "⠎⠺⠑⠑⠞⠓⠑⠜⠞" }, { "input": "sweethearts", "output": "⠎⠺⠑⠑⠞⠓⠑⠜⠞⠎" }, { "input": "sweetie", "output": "⠎⠺⠑⠑⠞⠊⠑" }, { "input": "sweeties", "output": "⠎⠺⠑⠑⠞⠊⠑⠎" }, { "input": "sweetish", "output": "⠎⠺⠑⠑⠞⠊⠩" }, { "input": "sweetly", "output": "⠎⠺⠑⠑⠞⠇⠽" }, { "input": "sweetmeat", "output": "⠎⠺⠑⠑⠞â â ‚â ž" }, { "input": "sweetmeats", "output": "⠎⠺⠑⠑⠞â â ‚â žâ Ž" }, { "input": "sweetness", "output": "⠎⠺⠑⠑⠞⠰⠎" }, { "input": "sweets", "output": "⠎⠺⠑⠑⠞⠎" }, { "input": "swell", "output": "⠎⠺⠑⠇⠇" }, { "input": "swelled", "output": "⠎⠺⠑⠇⠇⠫" }, { "input": "sweller", "output": "⠎⠺⠑⠇⠇⠻" }, { "input": "swellest", "output": "⠎⠺⠑⠇⠇⠑⠌" }, { "input": "swellhead", "output": "⠎⠺⠑⠇⠇⠓⠂⠙" }, { "input": "swellheaded", "output": "⠎⠺⠑⠇⠇⠓⠂⠙⠫" }, { "input": "swellheads", "output": "⠎⠺⠑⠇⠇⠓⠂⠙⠎" }, { "input": "swelling", "output": "⠎⠺⠑⠇⠇⠬" }, { "input": "swellings", "output": "⠎⠺⠑⠇⠇⠬⠎" }, { "input": "swells", "output": "⠎⠺⠑⠇⠇⠎" }, { "input": "swelter", "output": "⠎⠺⠑⠇⠞⠻" }, { "input": "sweltered", "output": "⠎⠺⠑⠇⠞⠻⠫" }, { "input": "sweltering", "output": "⠎⠺⠑⠇⠞⠻⠬" }, { "input": "swelters", "output": "⠎⠺⠑⠇⠞⠻⠎" }, { "input": "swept", "output": "⠎⠺⠑â â ž" }, { "input": "swerve", "output": "⠎⠺⠻⠧⠑" }, { "input": "swerved", "output": "⠎⠺⠻⠧⠫" }, { "input": "swerves", "output": "⠎⠺⠻⠧⠑⠎" }, { "input": "swerving", "output": "⠎⠺⠻⠧⠬" }, { "input": "swift", "output": "⠎⠺⠊⠋⠞" }, { "input": "swifter", "output": "⠎⠺⠊⠋⠞⠻" }, { "input": "swiftest", "output": "⠎⠺⠊⠋⠞⠑⠌" }, { "input": "swiftly", "output": "⠎⠺⠊⠋⠞⠇⠽" }, { "input": "swiftness", "output": "⠎⠺⠊⠋⠞⠰⠎" }, { "input": "swifts", "output": "⠎⠺⠊⠋⠞⠎" }, { "input": "swig", "output": "⠎⠺⠊⠛" }, { "input": "swigged", "output": "⠎⠺⠊⠶⠫" }, { "input": "swigging", "output": "⠎⠺⠊⠶⠬" }, { "input": "swigs", "output": "⠎⠺⠊⠛⠎" }, { "input": "swill", "output": "⠎⠺⠊⠇⠇" }, { "input": "swilled", "output": "⠎⠺⠊⠇⠇⠫" }, { "input": "swilling", "output": "⠎⠺⠊⠇⠇⠬" }, { "input": "swills", "output": "⠎⠺⠊⠇⠇⠎" }, { "input": "swim", "output": "⠎⠺⠊â " }, { "input": "swimmer", "output": "⠎⠺⠊â â â »" }, { "input": "swimmers", "output": "⠎⠺⠊â â â »â Ž" }, { "input": "swimming", "output": "⠎⠺⠊â â â ¬" }, { "input": "swims", "output": "⠎⠺⠊â â Ž" }, { "input": "swimsuit", "output": "⠎⠺⠊â â Žâ ¥â Šâ ž" }, { "input": "swimsuits", "output": "⠎⠺⠊â â Žâ ¥â Šâ žâ Ž" }, { "input": "swindle", "output": "⠎⠺⠔⠙⠇⠑" }, { "input": "swindled", "output": "⠎⠺⠔⠙⠇⠫" }, { "input": "swindler", "output": "⠎⠺⠔⠙⠇⠻" }, { "input": "swindlers", "output": "⠎⠺⠔⠙⠇⠻⠎" }, { "input": "swindles", "output": "⠎⠺⠔⠙⠇⠑⠎" }, { "input": "swindling", "output": "⠎⠺⠔⠙⠇⠬" }, { "input": "swine", "output": "⠎⠺⠔⠑" }, { "input": "swines", "output": "⠎⠺⠔⠑⠎" }, { "input": "swing", "output": "⠎⠺⠬" }, { "input": "swinger", "output": "⠎⠺⠬⠻" }, { "input": "swingers", "output": "⠎⠺⠬⠻⠎" }, { "input": "swinging", "output": "⠎⠺⠬⠬" }, { "input": "swings", "output": "⠎⠺⠬⠎" }, { "input": "swinish", "output": "⠎⠺⠔⠊⠩" }, { "input": "swipe", "output": "⠎⠺⠊â â ‘" }, { "input": "swiped", "output": "⠎⠺⠊â â «" }, { "input": "swipes", "output": "⠎⠺⠊â â ‘â Ž" }, { "input": "swiping", "output": "⠎⠺⠊â â ¬" }, { "input": "swirl", "output": "⠎⠺⠊⠗⠇" }, { "input": "swirled", "output": "⠎⠺⠊⠗⠇⠫" }, { "input": "swirlier", "output": "⠎⠺⠊⠗⠇⠊⠻" }, { "input": "swirliest", "output": "⠎⠺⠊⠗⠇⠊⠑⠌" }, { "input": "swirling", "output": "⠎⠺⠊⠗⠇⠬" }, { "input": "swirls", "output": "⠎⠺⠊⠗⠇⠎" }, { "input": "swirly", "output": "⠎⠺⠊⠗⠇⠽" }, { "input": "swish", "output": "⠎⠺⠊⠩" }, { "input": "swished", "output": "⠎⠺⠊⠩⠫" }, { "input": "swisher", "output": "⠎⠺⠊⠩⠻" }, { "input": "swishes", "output": "⠎⠺⠊⠩⠑⠎" }, { "input": "swishest", "output": "⠎⠺⠊⠩⠑⠌" }, { "input": "swishing", "output": "⠎⠺⠊⠩⠬" }, { "input": "switch", "output": "⠎⠺⠊⠞⠡" }, { "input": "switchable", "output": "⠎⠺⠊⠞⠡â â ƒâ ‡â ‘" }, { "input": "switchback", "output": "⠎⠺⠊⠞⠡⠃â â ‰â …" }, { "input": "switchbacks", "output": "⠎⠺⠊⠞⠡⠃â â ‰â …â Ž" }, { "input": "switchblade", "output": "⠎⠺⠊⠞⠡⠃⠇â â ™â ‘" }, { "input": "switchblades", "output": "⠎⠺⠊⠞⠡⠃⠇â â ™â ‘â Ž" }, { "input": "switchboard", "output": "⠎⠺⠊⠞⠡⠃⠕⠜⠙" }, { "input": "switchboards", "output": "⠎⠺⠊⠞⠡⠃⠕⠜⠙⠎" }, { "input": "switched", "output": "⠎⠺⠊⠞⠡⠫" }, { "input": "switcher", "output": "⠎⠺⠊⠞⠡⠻" }, { "input": "switches", "output": "⠎⠺⠊⠞⠡⠑⠎" }, { "input": "switching", "output": "⠎⠺⠊⠞⠡⠬" }, { "input": "swivel", "output": "⠎⠺⠊⠧⠑⠇" }, { "input": "swiveled", "output": "⠎⠺⠊⠧⠑⠇⠫" }, { "input": "swiveling", "output": "⠎⠺⠊⠧⠑⠇⠬" }, { "input": "swivelled", "output": "⠎⠺⠊⠧⠑⠇⠇⠫" }, { "input": "swivelling", "output": "⠎⠺⠊⠧⠑⠇⠇⠬" }, { "input": "swivels", "output": "⠎⠺⠊⠧⠑⠇⠎" }, { "input": "swollen", "output": "⠎⠺⠕⠇⠇⠢" }, { "input": "swoon", "output": "⠎⠺⠕⠕â " }, { "input": "swooned", "output": "⠎⠺⠕⠕â â «" }, { "input": "swooning", "output": "⠎⠺⠕⠕â â ¬" }, { "input": "swoons", "output": "⠎⠺⠕⠕â â Ž" }, { "input": "swoop", "output": "⠎⠺⠕⠕â " }, { "input": "swooped", "output": "⠎⠺⠕⠕â â «" }, { "input": "swooping", "output": "⠎⠺⠕⠕â â ¬" }, { "input": "swoops", "output": "⠎⠺⠕⠕â â Ž" }, { "input": "swop", "output": "⠎⠺⠕â " }, { "input": "swopped", "output": "⠎⠺⠕â â â «" }, { "input": "swopping", "output": "⠎⠺⠕â â â ¬" }, { "input": "swops", "output": "⠎⠺⠕â â Ž" }, { "input": "sword", "output": "⠎⠘⠺" }, { "input": "swordfish", "output": "⠎⠘⠺⠋⠊⠩" }, { "input": "swordfishes", "output": "⠎⠘⠺⠋⠊⠩⠑⠎" }, { "input": "swordplay", "output": "⠎⠘⠺â â ‡â â ½" }, { "input": "swords", "output": "⠎⠘⠺⠎" }, { "input": "swordsman", "output": "⠎⠘⠺⠎â â â " }, { "input": "swordsmen", "output": "⠎⠘⠺⠎â â ¢" }, { "input": "swore", "output": "⠎⠺⠕⠗⠑" }, { "input": "sworn", "output": "⠎⠺⠕⠗â " }, { "input": "swum", "output": "⠎⠺⠥â " }, { "input": "swung", "output": "⠎⠺⠥â â ›" }, { "input": "sybarite", "output": "⠎⠽⠃⠜⠊⠞⠑" }, { "input": "sybarites", "output": "⠎⠽⠃⠜⠊⠞⠑⠎" }, { "input": "sybaritic", "output": "⠎⠽⠃⠜⠊⠞⠊⠉" }, { "input": "sycamore", "output": "⠎⠽⠉â â â •â —â ‘" }, { "input": "sycamores", "output": "⠎⠽⠉â â â •â —â ‘â Ž" }, { "input": "sycophant", "output": "⠎⠽⠉⠕â â “â â â ž" }, { "input": "sycophantic", "output": "⠎⠽⠉⠕â â “â â â žâ Šâ ‰" }, { "input": "sycophants", "output": "⠎⠽⠉⠕â â “â â â žâ Ž" }, { "input": "syllabi", "output": "⠎⠽⠇⠇â â ƒâ Š" }, { "input": "syllabic", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰" }, { "input": "syllabication", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â â °â " }, { "input": "syllabification", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ ‰â â °â " }, { "input": "syllabified", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ «" }, { "input": "syllabifies", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ ‘â Ž" }, { "input": "syllabify", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â ½" }, { "input": "syllabifying", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â ½â ¬" }, { "input": "syllable", "output": "⠎⠽⠇⠇â â ƒâ ‡â ‘" }, { "input": "syllables", "output": "⠎⠽⠇⠇â â ƒâ ‡â ‘â Ž" }, { "input": "syllabus", "output": "⠎⠽⠇⠇â â ƒâ ¥â Ž" }, { "input": "syllabuses", "output": "⠎⠽⠇⠇â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "syllogism", "output": "⠎⠽⠇⠇⠕⠛⠊⠎â " }, { "input": "syllogisms", "output": "⠎⠽⠇⠇⠕⠛⠊⠎â â Ž" }, { "input": "syllogistic", "output": "⠎⠽⠇⠇⠕⠛⠊⠌⠊⠉" }, { "input": "sylph", "output": "⠎⠽⠇â â “" }, { "input": "sylphs", "output": "⠎⠽⠇â â “â Ž" }, { "input": "sylvan", "output": "⠎⠽⠇⠧â â " }, { "input": "symbioses", "output": "â Žâ ½â â ƒâ Šâ •â Žâ ‘â Ž" }, { "input": "symbiosis", "output": "â Žâ ½â â ƒâ Šâ •â Žâ Šâ Ž" }, { "input": "symbiotic", "output": "â Žâ ½â â ƒâ Šâ •â žâ Šâ ‰" }, { "input": "symbol", "output": "â Žâ ½â â ƒâ •â ‡" }, { "input": "symbolic", "output": "â Žâ ½â â ƒâ •⠇⠊⠉" }, { "input": "symbolically", "output": "â Žâ ½â â ƒâ •⠇⠊⠉â â ‡â ‡â ½" }, { "input": "symbolism", "output": "â Žâ ½â â ƒâ •⠇⠊⠎â " }, { "input": "symbolization", "output": "â Žâ ½â â ƒâ •⠇⠊⠵â â °â " }, { "input": "symbolize", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠑" }, { "input": "symbolized", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠫" }, { "input": "symbolizes", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠑⠎" }, { "input": "symbolizing", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠬" }, { "input": "symbols", "output": "â Žâ ½â â ƒâ •⠇⠎" }, { "input": "symmetric", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‰" }, { "input": "symmetrical", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "symmetrically", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "symmetricly", "output": "â Žâ ½â â â ‘⠞⠗⠊⠉⠇⠽" }, { "input": "symmetries", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‘â Ž" }, { "input": "symmetry", "output": "â Žâ ½â â â ‘â žâ —â ½" }, { "input": "sympathetic", "output": "â Žâ ½â â â â ®â žâ Šâ ‰" }, { "input": "sympathetically", "output": "â Žâ ½â â â â ®â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "sympathies", "output": "â Žâ ½â â â â ¹â Šâ ‘â Ž" }, { "input": "sympathize", "output": "â Žâ ½â â â â ¹â Šâ µâ ‘" }, { "input": "sympathized", "output": "â Žâ ½â â â â ¹â Šâ µâ «" }, { "input": "sympathizer", "output": "â Žâ ½â â â â ¹â Šâ µâ »" }, { "input": "sympathizers", "output": "â Žâ ½â â â â ¹â Šâ µâ »â Ž" }, { "input": "sympathizes", "output": "â Žâ ½â â â â ¹â Šâ µâ ‘â Ž" }, { "input": "sympathizing", "output": "â Žâ ½â â â â ¹â Šâ µâ ¬" }, { "input": "sympathy", "output": "â Žâ ½â â â â ¹â ½" }, { "input": "symphonic", "output": "â Žâ ½â â â “â •â â Šâ ‰" }, { "input": "symphonies", "output": "â Žâ ½â â â “â •â â Šâ ‘â Ž" }, { "input": "symphony", "output": "â Žâ ½â â â “â •â â ½" }, { "input": "symposia", "output": "â Žâ ½â â â •â Žâ Šâ " }, { "input": "symposium", "output": "â Žâ ½â â â •â Žâ Šâ ¥â " }, { "input": "symposiums", "output": "â Žâ ½â â â •â Žâ Šâ ¥â â Ž" }, { "input": "symptom", "output": "â Žâ ½â â â žâ •â " }, { "input": "symptomatic", "output": "â Žâ ½â â â žâ •â â â žâ Šâ ‰" }, { "input": "symptoms", "output": "â Žâ ½â â â žâ •â â Ž" }, { "input": "synagog", "output": "â Žâ ½â â â ›â •â ›" }, { "input": "synagogs", "output": "â Žâ ½â â â ›â •⠛⠎" }, { "input": "synagogue", "output": "â Žâ ½â â â ›â •⠛⠥⠑" }, { "input": "synagogues", "output": "â Žâ ½â â â ›â •⠛⠥⠑⠎" }, { "input": "synapse", "output": "â Žâ ½â â â â Žâ ‘" }, { "input": "synapses", "output": "â Žâ ½â â â â Žâ ‘â Ž" }, { "input": "sync", "output": "â Žâ ½â â ‰" }, { "input": "synced", "output": "â Žâ ½â â ‰â «" }, { "input": "synch", "output": "â Žâ ½â â ¡" }, { "input": "synched", "output": "â Žâ ½â â ¡â «" }, { "input": "synches", "output": "â Žâ ½â â ¡â ‘â Ž" }, { "input": "synching", "output": "â Žâ ½â â ¡â ¬" }, { "input": "synchronization", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ â °â " }, { "input": "synchronizations", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ â °â â Ž" }, { "input": "synchronize", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ ‘" }, { "input": "synchronized", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ «" }, { "input": "synchronizes", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ ‘â Ž" }, { "input": "synchronizing", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ ¬" }, { "input": "synchronous", "output": "â Žâ ½â â ¡â —â •â â ³â Ž" }, { "input": "synchronously", "output": "â Žâ ½â â ¡â —â •â â ³â Žâ ‡â ½" }, { "input": "synchs", "output": "â Žâ ½â â ¡â Ž" }, { "input": "syncing", "output": "â Žâ ½â â ‰â ¬" }, { "input": "syncopate", "output": "â Žâ ½â â ‰â •â â â žâ ‘" }, { "input": "syncopated", "output": "â Žâ ½â â ‰â •â â â žâ «" }, { "input": "syncopates", "output": "â Žâ ½â â ‰â •â â â žâ ‘â Ž" }, { "input": "syncopating", "output": "â Žâ ½â â ‰â •â â â žâ ¬" }, { "input": "syncopation", "output": "â Žâ ½â â ‰â •â â â °â " }, { "input": "syncs", "output": "â Žâ ½â â ‰â Ž" }, { "input": "syndicate", "output": "â Žâ ½â â ™â Šâ ‰â â žâ ‘" }, { "input": "syndicated", "output": "â Žâ ½â â ™â Šâ ‰â â žâ «" }, { "input": "syndicates", "output": "â Žâ ½â â ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "syndicating", "output": "â Žâ ½â â ™â Šâ ‰â â žâ ¬" }, { "input": "syndication", "output": "â Žâ ½â â ™â Šâ ‰â â °â " }, { "input": "syndrome", "output": "â Žâ ½â â ™â —â •â â ‘" }, { "input": "syndromes", "output": "â Žâ ½â â ™â —â •â â ‘â Ž" }, { "input": "synergism", "output": "â Žâ ½â â »â ›â Šâ Žâ " }, { "input": "synergistic", "output": "â Žâ ½â â »â ›â Šâ Œâ Šâ ‰" }, { "input": "synergy", "output": "â Žâ ½â â »â ›â ½" }, { "input": "synod", "output": "â Žâ ½â â •â ™" }, { "input": "synods", "output": "â Žâ ½â â •⠙⠎" }, { "input": "synonym", "output": "â Žâ ½â â •â â ½â " }, { "input": "synonymous", "output": "â Žâ ½â â •â â ½â â ³â Ž" }, { "input": "synonyms", "output": "â Žâ ½â â •â â ½â â Ž" }, { "input": "synopses", "output": "â Žâ ½â â •â â Žâ ‘â Ž" }, { "input": "synopsis", "output": "â Žâ ½â â •â â Žâ Šâ Ž" }, { "input": "syntactic", "output": "â Žâ ½â â žâ â ‰â žâ Šâ ‰" }, { "input": "syntactical", "output": "â Žâ ½â â žâ â ‰â žâ Šâ ‰â â ‡" }, { "input": "syntactically", "output": "â Žâ ½â â žâ â ‰â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "syntax", "output": "â Žâ ½â â žâ â ­" }, { "input": "syntheses", "output": "â Žâ ½â â ®â Žâ ‘â Ž" }, { "input": "synthesis", "output": "â Žâ ½â â ®â Žâ Šâ Ž" }, { "input": "synthesize", "output": "â Žâ ½â â ®â Žâ Šâ µâ ‘" }, { "input": "synthesized", "output": "â Žâ ½â â ®â Žâ Šâ µâ «" }, { "input": "synthesizer", "output": "â Žâ ½â â ®â Žâ Šâ µâ »" }, { "input": "synthesizers", "output": "â Žâ ½â â ®â Žâ Šâ µâ »â Ž" }, { "input": "synthesizes", "output": "â Žâ ½â â ®â Žâ Šâ µâ ‘â Ž" }, { "input": "synthesizing", "output": "â Žâ ½â â ®â Žâ Šâ µâ ¬" }, { "input": "synthetic", "output": "â Žâ ½â â ®â žâ Šâ ‰" }, { "input": "synthetically", "output": "â Žâ ½â â ®â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "synthetics", "output": "â Žâ ½â â ®â žâ Šâ ‰â Ž" }, { "input": "syphilis", "output": "â Žâ ½â â “⠊⠇⠊⠎" }, { "input": "syphilitic", "output": "â Žâ ½â â “⠊⠇⠊⠞⠊⠉" }, { "input": "syphilitics", "output": "â Žâ ½â â “⠊⠇⠊⠞⠊⠉⠎" }, { "input": "syphon", "output": "â Žâ ½â â “â •â " }, { "input": "syphoned", "output": "â Žâ ½â â “â •â â «" }, { "input": "syphoning", "output": "â Žâ ½â â “â •â â ¬" }, { "input": "syphons", "output": "â Žâ ½â â “â •â â Ž" }, { "input": "syringe", "output": "⠎⠽⠗⠬⠑" }, { "input": "syringed", "output": "⠎⠽⠗⠬⠫" }, { "input": "syringes", "output": "⠎⠽⠗⠬⠑⠎" }, { "input": "syringing", "output": "⠎⠽⠗⠬⠬" }, { "input": "syrup", "output": "⠎⠽⠗⠥â " }, { "input": "syrups", "output": "⠎⠽⠗⠥â â Ž" }, { "input": "syrupy", "output": "⠎⠽⠗⠥â â ½" }, { "input": "system", "output": "⠎⠽⠌⠑â " }, { "input": "systematic", "output": "⠎⠽⠌⠑â â â žâ Šâ ‰" }, { "input": "systematically", "output": "⠎⠽⠌⠑â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "systematize", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ ‘" }, { "input": "systematized", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ «" }, { "input": "systematizes", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ ‘â Ž" }, { "input": "systematizing", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ ¬" }, { "input": "systemic", "output": "⠎⠽⠌⠑â â Šâ ‰" }, { "input": "systemics", "output": "⠎⠽⠌⠑â â Šâ ‰â Ž" }, { "input": "systems", "output": "⠎⠽⠌⠑â â Ž" }, { "input": "systolic", "output": "⠎⠽⠌⠕⠇⠊⠉" }, { "input": "séance", "output": "⠎⠠⠘⠻â â ˜â ‰â â â ‰â ‘" }, { "input": "séances", "output": "⠎⠠⠘⠻â â ˜â ‰â â â ‰â ‘â Ž" }, { "input": "t", "output": "â °â ž" }, { "input": "tab", "output": "â žâ â ƒ" }, { "input": "tabbed", "output": "â žâ â †â «" }, { "input": "tabbies", "output": "â žâ â †â Šâ ‘â Ž" }, { "input": "tabbing", "output": "â žâ â †â ¬" }, { "input": "tabby", "output": "â žâ â †â ½" }, { "input": "tabernacle", "output": "â žâ â ƒâ »â â â ‰â ‡â ‘" }, { "input": "tabernacles", "output": "â žâ â ƒâ »â â â ‰â ‡â ‘â Ž" }, { "input": "table", "output": "â žâ â ƒâ ‡â ‘" }, { "input": "tableau", "output": "â žâ â ƒâ ‡â ‚â ¥" }, { "input": "tableaus", "output": "â žâ â ƒâ ‡â ‚⠥⠎" }, { "input": "tableaux", "output": "â žâ â ƒâ ‡â ‚⠥⠭" }, { "input": "tablecloth", "output": "â žâ â ƒâ ‡â ‘⠉⠇⠕⠹" }, { "input": "tablecloths", "output": "â žâ â ƒâ ‡â ‘⠉⠇⠕⠹⠎" }, { "input": "tabled", "output": "â žâ â ƒâ ‡â «" }, { "input": "tableland", "output": "â žâ â ƒâ ‡â ‘⠇⠯" }, { "input": "tablelands", "output": "â žâ â ƒâ ‡â ‘⠇⠯⠎" }, { "input": "tables", "output": "â žâ â ƒâ ‡â ‘â Ž" }, { "input": "tablespoon", "output": "â žâ â ƒâ ‡â ‘â Žâ â •â •â " }, { "input": "tablespoonful", "output": "â žâ â ƒâ ‡â ‘â Žâ â •â •â â °â ‡" }, { "input": "tablespoonfuls", "output": "â žâ â ƒâ ‡â ‘â Žâ â •â •â â °â ‡â Ž" }, { "input": "tablespoons", "output": "â žâ â ƒâ ‡â ‘â Žâ â •â •â â Ž" }, { "input": "tablespoonsful", "output": "â žâ â ƒâ ‡â ‘â Žâ â •â •â â Žâ °â ‡" }, { "input": "tablet", "output": "â žâ â ƒâ ‡â ‘â ž" }, { "input": "tablets", "output": "â žâ â ƒâ ‡â ‘â žâ Ž" }, { "input": "tableware", "output": "â žâ â ƒâ ‡â ‘⠺⠜⠑" }, { "input": "tabling", "output": "â žâ â ƒâ ‡â ¬" }, { "input": "tabloid", "output": "â žâ â ƒâ ‡â •â Šâ ™" }, { "input": "tabloids", "output": "â žâ â ƒâ ‡â •⠊⠙⠎" }, { "input": "taboo", "output": "â žâ â ƒâ •â •" }, { "input": "tabooed", "output": "â žâ â ƒâ •â •â «" }, { "input": "tabooing", "output": "â žâ â ƒâ •â •â ¬" }, { "input": "taboos", "output": "â žâ â ƒâ •â •â Ž" }, { "input": "tabs", "output": "â žâ â ƒâ Ž" }, { "input": "tabu", "output": "â žâ â ƒâ ¥" }, { "input": "tabued", "output": "â žâ â ƒâ ¥â «" }, { "input": "tabuing", "output": "â žâ â ƒâ ¥â ¬" }, { "input": "tabular", "output": "â žâ â ƒâ ¥â ‡â œ" }, { "input": "tabulate", "output": "â žâ â ƒâ ¥â ‡â â žâ ‘" }, { "input": "tabulated", "output": "â žâ â ƒâ ¥â ‡â â žâ «" }, { "input": "tabulates", "output": "â žâ â ƒâ ¥â ‡â â žâ ‘â Ž" }, { "input": "tabulating", "output": "â žâ â ƒâ ¥â ‡â â žâ ¬" }, { "input": "tabulation", "output": "â žâ â ƒâ ¥â ‡â â °â " }, { "input": "tabulator", "output": "â žâ â ƒâ ¥â ‡â â žâ •â —" }, { "input": "tabulators", "output": "â žâ â ƒâ ¥â ‡â â žâ •â —â Ž" }, { "input": "tabus", "output": "â žâ â ƒâ ¥â Ž" }, { "input": "tachometer", "output": "â žâ â ¡â •â â ‘â žâ »" }, { "input": "tachometers", "output": "â žâ â ¡â •â â ‘⠞⠻⠎" }, { "input": "tacit", "output": "â žâ â ‰â Šâ ž" }, { "input": "tacitly", "output": "â žâ â ‰â Šâ žâ ‡â ½" }, { "input": "tacitness", "output": "â žâ â ‰â Šâ žâ °â Ž" }, { "input": "taciturn", "output": "â žâ â ‰â Šâ žâ ¥â —â " }, { "input": "taciturnity", "output": "â žâ â ‰â Šâ žâ ¥â —â â °â ½" }, { "input": "tack", "output": "â žâ â ‰â …" }, { "input": "tacked", "output": "â žâ â ‰â …â «" }, { "input": "tackier", "output": "â žâ â ‰â …â Šâ »" }, { "input": "tackiest", "output": "â žâ â ‰â …â Šâ ‘â Œ" }, { "input": "tackiness", "output": "â žâ â ‰â …â Šâ °â Ž" }, { "input": "tacking", "output": "â žâ â ‰â …â ¬" }, { "input": "tackle", "output": "â žâ â ‰â …⠇⠑" }, { "input": "tackled", "output": "â žâ â ‰â …⠇⠫" }, { "input": "tackler", "output": "â žâ â ‰â …⠇⠻" }, { "input": "tacklers", "output": "â žâ â ‰â …⠇⠻⠎" }, { "input": "tackles", "output": "â žâ â ‰â …⠇⠑⠎" }, { "input": "tackling", "output": "â žâ â ‰â …⠇⠬" }, { "input": "tacks", "output": "â žâ â ‰â …â Ž" }, { "input": "tacky", "output": "â žâ â ‰â …â ½" }, { "input": "taco", "output": "â žâ â ‰â •" }, { "input": "tacos", "output": "â žâ â ‰â •â Ž" }, { "input": "tact", "output": "â žâ â ‰â ž" }, { "input": "tactful", "output": "â žâ â ‰â žâ °â ‡" }, { "input": "tactfully", "output": "â žâ â ‰â žâ °â ‡â ‡â ½" }, { "input": "tactic", "output": "â žâ â ‰â žâ Šâ ‰" }, { "input": "tactical", "output": "â žâ â ‰â žâ Šâ ‰â â ‡" }, { "input": "tactically", "output": "â žâ â ‰â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "tactician", "output": "â žâ â ‰â žâ Šâ ‰â Šâ â " }, { "input": "tacticians", "output": "â žâ â ‰â žâ Šâ ‰â Šâ â â Ž" }, { "input": "tactics", "output": "â žâ â ‰â žâ Šâ ‰â Ž" }, { "input": "tactile", "output": "â žâ â ‰â žâ Šâ ‡â ‘" }, { "input": "tactless", "output": "â žâ â ‰â žâ ¨â Ž" }, { "input": "tactlessly", "output": "â žâ â ‰â žâ ¨â Žâ ‡â ½" }, { "input": "tactlessness", "output": "â žâ â ‰â žâ ¨â Žâ °â Ž" }, { "input": "tad", "output": "â žâ â ™" }, { "input": "tadpole", "output": "â žâ â ™â â •⠇⠑" }, { "input": "tadpoles", "output": "â žâ â ™â â •⠇⠑⠎" }, { "input": "tads", "output": "â žâ â ™â Ž" }, { "input": "taffeta", "output": "â žâ â –â ‘â žâ " }, { "input": "taffies", "output": "â žâ â –â Šâ ‘â Ž" }, { "input": "taffy", "output": "â žâ â –â ½" }, { "input": "tag", "output": "â žâ â ›" }, { "input": "tagged", "output": "â žâ â ¶â «" }, { "input": "tagging", "output": "â žâ â ¶â ¬" }, { "input": "tags", "output": "â žâ â ›â Ž" }, { "input": "tail", "output": "â žâ â Šâ ‡" }, { "input": "tailcoat", "output": "â žâ â Šâ ‡â ‰â •â â ž" }, { "input": "tailcoats", "output": "â žâ â Šâ ‡â ‰â •â â žâ Ž" }, { "input": "tailed", "output": "â žâ â Šâ ‡â «" }, { "input": "tailgate", "output": "â žâ â Šâ ‡â ›â â žâ ‘" }, { "input": "tailgated", "output": "â žâ â Šâ ‡â ›â â žâ «" }, { "input": "tailgates", "output": "â žâ â Šâ ‡â ›â â žâ ‘â Ž" }, { "input": "tailgating", "output": "â žâ â Šâ ‡â ›â â žâ ¬" }, { "input": "tailing", "output": "â žâ â Šâ ‡â ¬" }, { "input": "tailless", "output": "â žâ â Šâ ‡â ¨â Ž" }, { "input": "taillight", "output": "â žâ â Šâ ‡â ‡â Šâ £â ž" }, { "input": "taillights", "output": "â žâ â Šâ ‡â ‡â Šâ £â žâ Ž" }, { "input": "tailor", "output": "â žâ â Šâ ‡â •â —" }, { "input": "tailored", "output": "â žâ â Šâ ‡â •â —â «" }, { "input": "tailoring", "output": "â žâ â Šâ ‡â •â —â ¬" }, { "input": "tailors", "output": "â žâ â Šâ ‡â •â —â Ž" }, { "input": "tailpipe", "output": "â žâ â Šâ ‡â â Šâ â ‘" }, { "input": "tailpipes", "output": "â žâ â Šâ ‡â â Šâ â ‘â Ž" }, { "input": "tails", "output": "â žâ â Šâ ‡â Ž" }, { "input": "tailspin", "output": "â žâ â Šâ ‡â Žâ â ”" }, { "input": "tailspins", "output": "â žâ â Šâ ‡â Žâ â ”â Ž" }, { "input": "tailwind", "output": "â žâ â Šâ ‡â ºâ ”â ™" }, { "input": "tailwinds", "output": "â žâ â Šâ ‡â ºâ ”⠙⠎" }, { "input": "taint", "output": "â žâ â ”â ž" }, { "input": "tainted", "output": "â žâ â ”â žâ «" }, { "input": "tainting", "output": "â žâ â ”â žâ ¬" }, { "input": "taints", "output": "â žâ â ”â žâ Ž" }, { "input": "take", "output": "â žâ â …â ‘" }, { "input": "takeaways", "output": "â žâ â …â ‘â â ºâ â ½â Ž" }, { "input": "taken", "output": "â žâ â …â ¢" }, { "input": "takeoff", "output": "â žâ â …â ‘â ·â ‹" }, { "input": "takeoffs", "output": "â žâ â …â ‘â ·â ‹â Ž" }, { "input": "takeout", "output": "â žâ â …⠑⠳⠞" }, { "input": "takeouts", "output": "â žâ â …⠑⠳⠞⠎" }, { "input": "takeover", "output": "â žâ â …â ‘â •â §â »" }, { "input": "takeovers", "output": "â žâ â …⠑⠕⠧⠻⠎" }, { "input": "taker", "output": "â žâ â …â »" }, { "input": "takers", "output": "â žâ â …⠻⠎" }, { "input": "takes", "output": "â žâ â …â ‘â Ž" }, { "input": "taking", "output": "â žâ â …â ¬" }, { "input": "takings", "output": "â žâ â …⠬⠎" }, { "input": "talc", "output": "â žâ â ‡â ‰" }, { "input": "tale", "output": "â žâ â ‡â ‘" }, { "input": "talent", "output": "â žâ â ‡â ¢â ž" }, { "input": "talented", "output": "â žâ â ‡â ¢â žâ «" }, { "input": "talents", "output": "â žâ â ‡â ¢â žâ Ž" }, { "input": "tales", "output": "â žâ â ‡â ‘â Ž" }, { "input": "talisman", "output": "â žâ â ‡â Šâ Žâ â â " }, { "input": "talismans", "output": "â žâ â ‡â Šâ Žâ â â â Ž" }, { "input": "talk", "output": "â žâ â ‡â …" }, { "input": "talkative", "output": "â žâ â ‡â …â â žâ Šâ §â ‘" }, { "input": "talkativeness", "output": "â žâ â ‡â …â â žâ Šâ §â ‘â °â Ž" }, { "input": "talked", "output": "â žâ â ‡â …â «" }, { "input": "talker", "output": "â žâ â ‡â …â »" }, { "input": "talkers", "output": "â žâ â ‡â …⠻⠎" }, { "input": "talking", "output": "â žâ â ‡â …â ¬" }, { "input": "talks", "output": "â žâ â ‡â …â Ž" }, { "input": "tall", "output": "â žâ â ‡â ‡" }, { "input": "taller", "output": "â žâ â ‡â ‡â »" }, { "input": "tallest", "output": "â žâ â ‡â ‡â ‘â Œ" }, { "input": "tallied", "output": "â žâ â ‡â ‡â Šâ «" }, { "input": "tallies", "output": "â žâ â ‡â ‡â Šâ ‘â Ž" }, { "input": "tallness", "output": "â žâ â ‡â ‡â °â Ž" }, { "input": "tallow", "output": "â žâ â ‡â ‡â ª" }, { "input": "tally", "output": "â žâ â ‡â ‡â ½" }, { "input": "tallyho", "output": "â žâ â ‡â ‡â ½â “â •" }, { "input": "tallyhoed", "output": "â žâ â ‡â ‡â ½â “â •â «" }, { "input": "tallyhoing", "output": "â žâ â ‡â ‡â ½â “â •â ¬" }, { "input": "tallyhos", "output": "â žâ â ‡â ‡â ½â “â •â Ž" }, { "input": "tallying", "output": "â žâ â ‡â ‡â ½â ¬" }, { "input": "talon", "output": "â žâ â ‡â •â " }, { "input": "talons", "output": "â žâ â ‡â •â â Ž" }, { "input": "tam", "output": "â žâ â " }, { "input": "tamable", "output": "â žâ â â â ƒâ ‡â ‘" }, { "input": "tamale", "output": "â žâ â â â ‡â ‘" }, { "input": "tamales", "output": "â žâ â â â ‡â ‘â Ž" }, { "input": "tamarind", "output": "â žâ â â œâ ”â ™" }, { "input": "tamarinds", "output": "â žâ â â œâ ”⠙⠎" }, { "input": "tambourine", "output": "â žâ â â ƒâ ³â —⠔⠑" }, { "input": "tambourines", "output": "â žâ â â ƒâ ³â —⠔⠑⠎" }, { "input": "tame", "output": "â žâ â â ‘" }, { "input": "tameable", "output": "â žâ â â ‚⠃⠇⠑" }, { "input": "tamed", "output": "â žâ â â «" }, { "input": "tamely", "output": "â žâ â â ‘⠇⠽" }, { "input": "tameness", "output": "â žâ â â ‘â °â Ž" }, { "input": "tamer", "output": "â žâ â â »" }, { "input": "tamers", "output": "â žâ â â »â Ž" }, { "input": "tames", "output": "â žâ â â ‘â Ž" }, { "input": "tamest", "output": "â žâ â â ‘â Œ" }, { "input": "taming", "output": "â žâ â â ¬" }, { "input": "tamp", "output": "â žâ â â " }, { "input": "tamped", "output": "â žâ â â â «" }, { "input": "tamper", "output": "â žâ â â â »" }, { "input": "tampered", "output": "â žâ â â â »â «" }, { "input": "tampering", "output": "â žâ â â â »â ¬" }, { "input": "tampers", "output": "â žâ â â â »â Ž" }, { "input": "tamping", "output": "â žâ â â â ¬" }, { "input": "tampon", "output": "â žâ â â â •â " }, { "input": "tampons", "output": "â žâ â â â •â â Ž" }, { "input": "tamps", "output": "â žâ â â â Ž" }, { "input": "tams", "output": "â žâ â â Ž" }, { "input": "tan", "output": "â žâ â " }, { "input": "tanager", "output": "â žâ â â â ›â »" }, { "input": "tanagers", "output": "â žâ â â â ›â »â Ž" }, { "input": "tandem", "output": "⠞⠯⠑â " }, { "input": "tandems", "output": "⠞⠯⠑â â Ž" }, { "input": "tang", "output": "â žâ â â ›" }, { "input": "tangelo", "output": "â žâ â â ›â ‘⠇⠕" }, { "input": "tangelos", "output": "â žâ â â ›â ‘⠇⠕⠎" }, { "input": "tangent", "output": "â žâ â â ›â ¢â ž" }, { "input": "tangential", "output": "â žâ â â ›â ¢â žâ Šâ â ‡" }, { "input": "tangents", "output": "â žâ â â ›â ¢â žâ Ž" }, { "input": "tangerine", "output": "â žâ â â ›â »â ”â ‘" }, { "input": "tangerines", "output": "â žâ â â ›â »â ”â ‘â Ž" }, { "input": "tangibility", "output": "â žâ â â ›â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "tangible", "output": "â žâ â â ›â Šâ ƒâ ‡â ‘" }, { "input": "tangibles", "output": "â žâ â â ›â Šâ ƒâ ‡â ‘â Ž" }, { "input": "tangibly", "output": "â žâ â â ›â Šâ ƒâ ‡â ½" }, { "input": "tangier", "output": "â žâ â â ›â Šâ »" }, { "input": "tangiest", "output": "â žâ â â ›â Šâ ‘â Œ" }, { "input": "tangle", "output": "â žâ â â ›â ‡â ‘" }, { "input": "tangled", "output": "â žâ â â ›â ‡â «" }, { "input": "tangles", "output": "â žâ â â ›â ‡â ‘â Ž" }, { "input": "tangling", "output": "â žâ â â ›â ‡â ¬" }, { "input": "tango", "output": "â žâ â â ›â •" }, { "input": "tangoed", "output": "â žâ â â ›â •â «" }, { "input": "tangoing", "output": "â žâ â â ›â •â ¬" }, { "input": "tangos", "output": "â žâ â â ›â •â Ž" }, { "input": "tangs", "output": "â žâ â â ›â Ž" }, { "input": "tangy", "output": "â žâ â â ›â ½" }, { "input": "tank", "output": "â žâ â â …" }, { "input": "tankard", "output": "â žâ â â …⠜⠙" }, { "input": "tankards", "output": "â žâ â â …⠜⠙⠎" }, { "input": "tanked", "output": "â žâ â â …â «" }, { "input": "tanker", "output": "â žâ â â …â »" }, { "input": "tankers", "output": "â žâ â â …⠻⠎" }, { "input": "tankful", "output": "â žâ â â …â °â ‡" }, { "input": "tankfuls", "output": "â žâ â â …⠰⠇⠎" }, { "input": "tanking", "output": "â žâ â â …â ¬" }, { "input": "tanks", "output": "â žâ â â …â Ž" }, { "input": "tanned", "output": "â žâ â â â «" }, { "input": "tanner", "output": "â žâ â â â »" }, { "input": "tanneries", "output": "â žâ â â â »â Šâ ‘â Ž" }, { "input": "tanners", "output": "â žâ â â â »â Ž" }, { "input": "tannery", "output": "â žâ â â â »â ½" }, { "input": "tannest", "output": "â žâ â â â ‘â Œ" }, { "input": "tannin", "output": "â žâ â â â ”" }, { "input": "tanning", "output": "â žâ â â â ¬" }, { "input": "tans", "output": "â žâ â â Ž" }, { "input": "tansy", "output": "â žâ â â Žâ ½" }, { "input": "tantalize", "output": "â žâ â â žâ â ‡â Šâ µâ ‘" }, { "input": "tantalized", "output": "â žâ â â žâ â ‡â Šâ µâ «" }, { "input": "tantalizes", "output": "â žâ â â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "tantalizing", "output": "â žâ â â žâ â ‡â Šâ µâ ¬" }, { "input": "tantalizingly", "output": "â žâ â â žâ â ‡â Šâ µâ ¬â ‡â ½" }, { "input": "tantamount", "output": "â žâ â â žâ â â ¨â ž" }, { "input": "tantrum", "output": "â žâ â â žâ —â ¥â " }, { "input": "tantrums", "output": "â žâ â â žâ —â ¥â â Ž" }, { "input": "tap", "output": "â žâ â " }, { "input": "tape", "output": "â žâ â â ‘" }, { "input": "taped", "output": "â žâ â â «" }, { "input": "taper", "output": "â žâ â â »" }, { "input": "tapered", "output": "â žâ â â »â «" }, { "input": "tapering", "output": "â žâ â â »â ¬" }, { "input": "tapers", "output": "â žâ â â »â Ž" }, { "input": "tapes", "output": "â žâ â â ‘â Ž" }, { "input": "tapestries", "output": "â žâ â â ‘⠌⠗⠊⠑⠎" }, { "input": "tapestry", "output": "â žâ â â ‘⠌⠗⠽" }, { "input": "tapeworm", "output": "â žâ â â ‘⠺⠕⠗â " }, { "input": "tapeworms", "output": "â žâ â â ‘⠺⠕⠗â â Ž" }, { "input": "taping", "output": "â žâ â â ¬" }, { "input": "tapioca", "output": "â žâ â â Šâ •â ‰â " }, { "input": "tapir", "output": "â žâ â â Šâ —" }, { "input": "tapirs", "output": "â žâ â â Šâ —â Ž" }, { "input": "tapped", "output": "â žâ â â â «" }, { "input": "tapping", "output": "â žâ â â â ¬" }, { "input": "taproom", "output": "â žâ â â —â •â •â " }, { "input": "taprooms", "output": "â žâ â â —â •â •â â Ž" }, { "input": "taproot", "output": "â žâ â â —â •â •â ž" }, { "input": "taproots", "output": "â žâ â â —â •â •â žâ Ž" }, { "input": "taps", "output": "â žâ â â Ž" }, { "input": "tar", "output": "â žâ œ" }, { "input": "tarantula", "output": "â žâ œâ â â žâ ¥â ‡â " }, { "input": "tarantulae", "output": "â žâ œâ â â žâ ¥â ‡â â ‘" }, { "input": "tarantulas", "output": "â žâ œâ â â žâ ¥â ‡â â Ž" }, { "input": "tardier", "output": "⠞⠜⠙⠊⠻" }, { "input": "tardiest", "output": "⠞⠜⠙⠊⠑⠌" }, { "input": "tardily", "output": "⠞⠜⠙⠊⠇⠽" }, { "input": "tardiness", "output": "⠞⠜⠙⠊⠰⠎" }, { "input": "tardy", "output": "⠞⠜⠙⠽" }, { "input": "tare", "output": "⠞⠜⠑" }, { "input": "tared", "output": "⠞⠜⠫" }, { "input": "tares", "output": "⠞⠜⠑⠎" }, { "input": "target", "output": "⠞⠜⠛⠑⠞" }, { "input": "targeted", "output": "⠞⠜⠛⠑⠞⠫" }, { "input": "targeting", "output": "⠞⠜⠛⠑⠞⠬" }, { "input": "targets", "output": "⠞⠜⠛⠑⠞⠎" }, { "input": "tariff", "output": "⠞⠜⠊⠋⠋" }, { "input": "tariffs", "output": "⠞⠜⠊⠖⠎" }, { "input": "taring", "output": "⠞⠜⠬" }, { "input": "tarmac", "output": "â žâ œâ â â ‰" }, { "input": "tarmacked", "output": "â žâ œâ â â ‰â …â «" }, { "input": "tarmacking", "output": "â žâ œâ â â ‰â …â ¬" }, { "input": "tarmacs", "output": "â žâ œâ â â ‰â Ž" }, { "input": "tarnish", "output": "â žâ œâ â Šâ ©" }, { "input": "tarnished", "output": "â žâ œâ â Šâ ©â «" }, { "input": "tarnishes", "output": "â žâ œâ â Šâ ©â ‘â Ž" }, { "input": "tarnishing", "output": "â žâ œâ â Šâ ©â ¬" }, { "input": "taro", "output": "⠞⠜⠕" }, { "input": "taros", "output": "⠞⠜⠕⠎" }, { "input": "tarot", "output": "⠞⠜⠕⠞" }, { "input": "tarots", "output": "⠞⠜⠕⠞⠎" }, { "input": "tarp", "output": "â žâ œâ " }, { "input": "tarpaulin", "output": "â žâ œâ â â ¥â ‡â ”" }, { "input": "tarpaulins", "output": "â žâ œâ â â ¥â ‡â ”â Ž" }, { "input": "tarpon", "output": "â žâ œâ â •â " }, { "input": "tarpons", "output": "â žâ œâ â •â â Ž" }, { "input": "tarps", "output": "â žâ œâ â Ž" }, { "input": "tarragon", "output": "⠞⠜⠗â â ›â •â " }, { "input": "tarragons", "output": "⠞⠜⠗â â ›â •â â Ž" }, { "input": "tarred", "output": "⠞⠜⠗⠫" }, { "input": "tarried", "output": "⠞⠜⠗⠊⠫" }, { "input": "tarrier", "output": "⠞⠜⠗⠊⠻" }, { "input": "tarries", "output": "⠞⠜⠗⠊⠑⠎" }, { "input": "tarriest", "output": "⠞⠜⠗⠊⠑⠌" }, { "input": "tarring", "output": "⠞⠜⠗⠬" }, { "input": "tarry", "output": "⠞⠜⠗⠽" }, { "input": "tarrying", "output": "⠞⠜⠗⠽⠬" }, { "input": "tars", "output": "⠞⠜⠎" }, { "input": "tart", "output": "⠞⠜⠞" }, { "input": "tartan", "output": "⠞⠜⠞â â " }, { "input": "tartans", "output": "⠞⠜⠞â â â Ž" }, { "input": "tartar", "output": "⠞⠜⠞⠜" }, { "input": "tartars", "output": "⠞⠜⠞⠜⠎" }, { "input": "tarter", "output": "⠞⠜⠞⠻" }, { "input": "tartest", "output": "⠞⠜⠞⠑⠌" }, { "input": "tartly", "output": "⠞⠜⠞⠇⠽" }, { "input": "tartness", "output": "⠞⠜⠞⠰⠎" }, { "input": "tarts", "output": "⠞⠜⠞⠎" }, { "input": "task", "output": "â žâ â Žâ …" }, { "input": "tasked", "output": "â žâ â Žâ …â «" }, { "input": "tasking", "output": "â žâ â Žâ …â ¬" }, { "input": "taskmaster", "output": "â žâ â Žâ …â â â Œâ »" }, { "input": "taskmasters", "output": "â žâ â Žâ …â â â Œâ »â Ž" }, { "input": "tasks", "output": "â žâ â Žâ …â Ž" }, { "input": "tassel", "output": "â žâ â Žâ Žâ ‘â ‡" }, { "input": "tasseled", "output": "â žâ â Žâ Žâ ‘⠇⠫" }, { "input": "tasseling", "output": "â žâ â Žâ Žâ ‘⠇⠬" }, { "input": "tasselled", "output": "â žâ â Žâ Žâ ‘⠇⠇⠫" }, { "input": "tasselling", "output": "â žâ â Žâ Žâ ‘⠇⠇⠬" }, { "input": "tassels", "output": "â žâ â Žâ Žâ ‘⠇⠎" }, { "input": "taste", "output": "â žâ â Œâ ‘" }, { "input": "tasted", "output": "â žâ â Œâ «" }, { "input": "tasteful", "output": "â žâ â Œâ ‘â °â ‡" }, { "input": "tastefully", "output": "â žâ â Œâ ‘⠰⠇⠇⠽" }, { "input": "tasteless", "output": "â žâ â Œâ ‘⠨⠎" }, { "input": "tastelessly", "output": "â žâ â Œâ ‘⠨⠎⠇⠽" }, { "input": "tastelessness", "output": "â žâ â Œâ ‘⠨⠎⠰⠎" }, { "input": "taster", "output": "â žâ â Œâ »" }, { "input": "tasters", "output": "â žâ â Œâ »â Ž" }, { "input": "tastes", "output": "â žâ â Œâ ‘â Ž" }, { "input": "tastier", "output": "â žâ â Œâ Šâ »" }, { "input": "tastiest", "output": "â žâ â Œâ Šâ ‘â Œ" }, { "input": "tastiness", "output": "â žâ â Œâ Šâ °â Ž" }, { "input": "tasting", "output": "â žâ â Œâ ¬" }, { "input": "tasty", "output": "â žâ â Œâ ½" }, { "input": "tat", "output": "â žâ â ž" }, { "input": "tats", "output": "â žâ â žâ Ž" }, { "input": "tatted", "output": "â žâ â žâ žâ «" }, { "input": "tatter", "output": "â žâ â žâ žâ »" }, { "input": "tattered", "output": "â žâ â žâ žâ »â «" }, { "input": "tattering", "output": "â žâ â žâ žâ »â ¬" }, { "input": "tatters", "output": "â žâ â žâ žâ »â Ž" }, { "input": "tatting", "output": "â žâ â žâ žâ ¬" }, { "input": "tattle", "output": "â žâ â žâ žâ ‡â ‘" }, { "input": "tattled", "output": "â žâ â žâ žâ ‡â «" }, { "input": "tattler", "output": "â žâ â žâ žâ ‡â »" }, { "input": "tattlers", "output": "â žâ â žâ žâ ‡â »â Ž" }, { "input": "tattles", "output": "â žâ â žâ žâ ‡â ‘â Ž" }, { "input": "tattletale", "output": "â žâ â žâ žâ ‡â ‘â žâ â ‡â ‘" }, { "input": "tattletales", "output": "â žâ â žâ žâ ‡â ‘â žâ â ‡â ‘â Ž" }, { "input": "tattling", "output": "â žâ â žâ žâ ‡â ¬" }, { "input": "tattoo", "output": "â žâ â žâ žâ •â •" }, { "input": "tattooed", "output": "â žâ â žâ žâ •â •â «" }, { "input": "tattooing", "output": "â žâ â žâ žâ •â •â ¬" }, { "input": "tattooist", "output": "â žâ â žâ žâ •â •â Šâ Œ" }, { "input": "tattooists", "output": "â žâ â žâ žâ •⠕⠊⠌⠎" }, { "input": "tattoos", "output": "â žâ â žâ žâ •â •â Ž" }, { "input": "tatty", "output": "â žâ â žâ žâ ½" }, { "input": "taught", "output": "â žâ â ¥â £â ž" }, { "input": "taunt", "output": "â žâ â ¥â â ž" }, { "input": "taunted", "output": "â žâ â ¥â â žâ «" }, { "input": "taunting", "output": "â žâ â ¥â â žâ ¬" }, { "input": "taunts", "output": "â žâ â ¥â â žâ Ž" }, { "input": "taupe", "output": "â žâ â ¥â â ‘" }, { "input": "taut", "output": "â žâ â ¥â ž" }, { "input": "tauter", "output": "â žâ â ¥â žâ »" }, { "input": "tautest", "output": "â žâ â ¥â žâ ‘â Œ" }, { "input": "tautly", "output": "â žâ â ¥â žâ ‡â ½" }, { "input": "tautness", "output": "â žâ â ¥â žâ °â Ž" }, { "input": "tautological", "output": "â žâ â ¥â žâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "tautologies", "output": "â žâ â ¥â žâ •⠇⠕⠛⠊⠑⠎" }, { "input": "tautology", "output": "â žâ â ¥â žâ •⠇⠕⠛⠽" }, { "input": "tavern", "output": "â žâ â §â »â " }, { "input": "taverns", "output": "â žâ â §â »â â Ž" }, { "input": "tawdrier", "output": "â žâ â ºâ ™â —â Šâ »" }, { "input": "tawdriest", "output": "â žâ â ºâ ™â —â Šâ ‘â Œ" }, { "input": "tawdriness", "output": "â žâ â ºâ ™â —â Šâ °â Ž" }, { "input": "tawdry", "output": "â žâ â ºâ ™â —â ½" }, { "input": "tawnier", "output": "â žâ â ºâ â Šâ »" }, { "input": "tawniest", "output": "â žâ â ºâ â Šâ ‘â Œ" }, { "input": "tawny", "output": "â žâ â ºâ â ½" }, { "input": "tax", "output": "â žâ â ­" }, { "input": "taxable", "output": "â žâ â ­â â ƒâ ‡â ‘" }, { "input": "taxation", "output": "â žâ â ­â â °â " }, { "input": "taxed", "output": "â žâ â ­â «" }, { "input": "taxes", "output": "â žâ â ­â ‘â Ž" }, { "input": "taxi", "output": "â žâ â ­â Š" }, { "input": "taxicab", "output": "â žâ â ­â Šâ ‰â â ƒ" }, { "input": "taxicabs", "output": "â žâ â ­â Šâ ‰â â ƒâ Ž" }, { "input": "taxidermist", "output": "â žâ â ­â Šâ ™â »â â Šâ Œ" }, { "input": "taxidermists", "output": "â žâ â ­â Šâ ™â »â â Šâ Œâ Ž" }, { "input": "taxidermy", "output": "â žâ â ­â Šâ ™â »â â ½" }, { "input": "taxied", "output": "â žâ â ­â Šâ «" }, { "input": "taxies", "output": "â žâ â ­â Šâ ‘â Ž" }, { "input": "taxiing", "output": "â žâ â ­â Šâ ¬" }, { "input": "taxing", "output": "â žâ â ­â ¬" }, { "input": "taxis", "output": "â žâ â ­â Šâ Ž" }, { "input": "taxonomic", "output": "â žâ â ­â •â â •â â Šâ ‰" }, { "input": "taxonomies", "output": "â žâ â ­â •â â •â â Šâ ‘â Ž" }, { "input": "taxonomy", "output": "â žâ â ­â •â â •â â ½" }, { "input": "taxpayer", "output": "â žâ â ­â â â ½â »" }, { "input": "taxpayers", "output": "â žâ â ­â â â ½â »â Ž" }, { "input": "taxying", "output": "â žâ â ­â ½â ¬" }, { "input": "tea", "output": "â žâ ‘â " }, { "input": "teabag", "output": "â žâ ‚â ƒâ â ›" }, { "input": "teach", "output": "â žâ ‚â ¡" }, { "input": "teachable", "output": "â žâ ‚â ¡â â ƒâ ‡â ‘" }, { "input": "teacher", "output": "â žâ ‚â ¡â »" }, { "input": "teachers", "output": "⠞⠂⠡⠻⠎" }, { "input": "teaches", "output": "â žâ ‚â ¡â ‘â Ž" }, { "input": "teaching", "output": "â žâ ‚â ¡â ¬" }, { "input": "teachings", "output": "⠞⠂⠡⠬⠎" }, { "input": "teacup", "output": "⠞⠂⠉⠥â " }, { "input": "teacups", "output": "⠞⠂⠉⠥â â Ž" }, { "input": "teak", "output": "â žâ ‚â …" }, { "input": "teakettle", "output": "⠞⠂⠅⠑⠞⠞⠇⠑" }, { "input": "teakettles", "output": "⠞⠂⠅⠑⠞⠞⠇⠑⠎" }, { "input": "teaks", "output": "â žâ ‚â …â Ž" }, { "input": "teal", "output": "â žâ ‚â ‡" }, { "input": "teals", "output": "⠞⠂⠇⠎" }, { "input": "team", "output": "â žâ ‚â " }, { "input": "teamed", "output": "â žâ ‚â â «" }, { "input": "teaming", "output": "â žâ ‚â â ¬" }, { "input": "teammate", "output": "â žâ ‚â â â â žâ ‘" }, { "input": "teammates", "output": "â žâ ‚â â â â žâ ‘â Ž" }, { "input": "teams", "output": "â žâ ‚â â Ž" }, { "input": "teamster", "output": "â žâ ‚â â Œâ »" }, { "input": "teamsters", "output": "â žâ ‚â â Œâ »â Ž" }, { "input": "teamwork", "output": "â žâ ‚â â â º" }, { "input": "teapot", "output": "â žâ ‚â â •â ž" }, { "input": "teapots", "output": "â žâ ‚â â •â žâ Ž" }, { "input": "tear", "output": "â žâ ‘â œ" }, { "input": "teardrop", "output": "⠞⠑⠜⠙⠗⠕â " }, { "input": "teardrops", "output": "⠞⠑⠜⠙⠗⠕â â Ž" }, { "input": "teared", "output": "⠞⠑⠜⠫" }, { "input": "tearful", "output": "⠞⠑⠜⠰⠇" }, { "input": "tearfully", "output": "⠞⠑⠜⠰⠇⠇⠽" }, { "input": "teargas", "output": "⠞⠑⠜⠛â â Ž" }, { "input": "teargases", "output": "⠞⠑⠜⠛â â Žâ ‘â Ž" }, { "input": "teargassed", "output": "⠞⠑⠜⠛â â Žâ Žâ «" }, { "input": "teargasses", "output": "⠞⠑⠜⠛â â Žâ Žâ ‘â Ž" }, { "input": "teargassing", "output": "⠞⠑⠜⠛â â Žâ Žâ ¬" }, { "input": "tearier", "output": "⠞⠑⠜⠊⠻" }, { "input": "teariest", "output": "⠞⠑⠜⠊⠑⠌" }, { "input": "tearing", "output": "⠞⠑⠜⠬" }, { "input": "tearjerker", "output": "⠞⠑⠜⠚⠻⠅⠻" }, { "input": "tearjerkers", "output": "⠞⠑⠜⠚⠻⠅⠻⠎" }, { "input": "tearoom", "output": "â žâ ‚â —â •â •â " }, { "input": "tearooms", "output": "â žâ ‚â —â •â •â â Ž" }, { "input": "tears", "output": "⠞⠑⠜⠎" }, { "input": "teary", "output": "⠞⠑⠜⠽" }, { "input": "teas", "output": "â žâ ‚â Ž" }, { "input": "tease", "output": "â žâ ‚â Žâ ‘" }, { "input": "teased", "output": "â žâ ‚â Žâ «" }, { "input": "teasel", "output": "â žâ ‚â Žâ ‘â ‡" }, { "input": "teasels", "output": "⠞⠂⠎⠑⠇⠎" }, { "input": "teaser", "output": "â žâ ‚â Žâ »" }, { "input": "teasers", "output": "⠞⠂⠎⠻⠎" }, { "input": "teases", "output": "â žâ ‚â Žâ ‘â Ž" }, { "input": "teasing", "output": "â žâ ‚â Žâ ¬" }, { "input": "teaspoon", "output": "â žâ ‚â Žâ â •â •â " }, { "input": "teaspoonful", "output": "â žâ ‚â Žâ â •â •â â °â ‡" }, { "input": "teaspoonfuls", "output": "â žâ ‚â Žâ â •â •â â °â ‡â Ž" }, { "input": "teaspoons", "output": "â žâ ‚â Žâ â •â •â â Ž" }, { "input": "teaspoonsful", "output": "â žâ ‚â Žâ â •â •â â Žâ °â ‡" }, { "input": "teat", "output": "â žâ ‚â ž" }, { "input": "teatime", "output": "â žâ ‚â â ž" }, { "input": "teats", "output": "â žâ ‚â žâ Ž" }, { "input": "teazel", "output": "⠞⠂⠵⠑⠇" }, { "input": "teazels", "output": "⠞⠂⠵⠑⠇⠎" }, { "input": "teazle", "output": "⠞⠂⠵⠇⠑" }, { "input": "teazles", "output": "⠞⠂⠵⠇⠑⠎" }, { "input": "technical", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡" }, { "input": "technicalities", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "technicality", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡â °â ½" }, { "input": "technically", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡â ‡â ½" }, { "input": "technician", "output": "â žâ ‘â ¡â â Šâ ‰â Šâ â " }, { "input": "technicians", "output": "â žâ ‘â ¡â â Šâ ‰â Šâ â â Ž" }, { "input": "technique", "output": "â žâ ‘â ¡â â Šâ Ÿâ ¥â ‘" }, { "input": "techniques", "output": "â žâ ‘â ¡â â Šâ Ÿâ ¥â ‘â Ž" }, { "input": "technocracy", "output": "â žâ ‘â ¡â â •⠉⠗â â ‰â ½" }, { "input": "technocrat", "output": "â žâ ‘â ¡â â •⠉⠗â â ž" }, { "input": "technocrats", "output": "â žâ ‘â ¡â â •⠉⠗â â žâ Ž" }, { "input": "technological", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "technologically", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "technologies", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠑⠎" }, { "input": "technologist", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠌" }, { "input": "technologists", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠌⠎" }, { "input": "technology", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠽" }, { "input": "techs", "output": "â žâ ‘â ¡â Ž" }, { "input": "tectonics", "output": "⠞⠑⠉⠞⠕â â Šâ ‰â Ž" }, { "input": "tedious", "output": "⠞⠫⠊⠳⠎" }, { "input": "tediously", "output": "⠞⠫⠊⠳⠎⠇⠽" }, { "input": "tediousness", "output": "⠞⠫⠊⠳⠎⠰⠎" }, { "input": "tedium", "output": "â žâ «â Šâ ¥â " }, { "input": "tee", "output": "â žâ ‘â ‘" }, { "input": "teed", "output": "â žâ ‘â «" }, { "input": "teeing", "output": "â žâ ‘â ‘â ¬" }, { "input": "teem", "output": "â žâ ‘â ‘â " }, { "input": "teemed", "output": "â žâ ‘â ‘â â «" }, { "input": "teeming", "output": "â žâ ‘â ‘â â ¬" }, { "input": "teems", "output": "â žâ ‘â ‘â â Ž" }, { "input": "teen", "output": "â žâ ‘â ¢" }, { "input": "teenage", "output": "â žâ ‘â ¢â â ›â ‘" }, { "input": "teenaged", "output": "â žâ ‘â ¢â â ›â «" }, { "input": "teenager", "output": "â žâ ‘â ¢â â ›â »" }, { "input": "teenagers", "output": "â žâ ‘â ¢â â ›â »â Ž" }, { "input": "teenier", "output": "⠞⠑⠢⠊⠻" }, { "input": "teeniest", "output": "⠞⠑⠢⠊⠑⠌" }, { "input": "teens", "output": "⠞⠑⠢⠎" }, { "input": "teensier", "output": "⠞⠑⠢⠎⠊⠻" }, { "input": "teensiest", "output": "⠞⠑⠢⠎⠊⠑⠌" }, { "input": "teensy", "output": "⠞⠑⠢⠎⠽" }, { "input": "teeny", "output": "⠞⠑⠢⠽" }, { "input": "teepee", "output": "â žâ ‘â ‘â â ‘â ‘" }, { "input": "teepees", "output": "â žâ ‘â ‘â â ‘â ‘â Ž" }, { "input": "tees", "output": "â žâ ‘â ‘â Ž" }, { "input": "teeter", "output": "â žâ ‘â ‘â žâ »" }, { "input": "teetered", "output": "⠞⠑⠑⠞⠻⠫" }, { "input": "teetering", "output": "⠞⠑⠑⠞⠻⠬" }, { "input": "teeters", "output": "⠞⠑⠑⠞⠻⠎" }, { "input": "teeth", "output": "â žâ ‘â ‘â ¹" }, { "input": "teethe", "output": "â žâ ‘â ‘â ®" }, { "input": "teethed", "output": "⠞⠑⠑⠮⠙" }, { "input": "teethes", "output": "⠞⠑⠑⠮⠎" }, { "input": "teething", "output": "⠞⠑⠑⠹⠬" }, { "input": "teetotal", "output": "â žâ ‘â ‘â žâ •â žâ â ‡" }, { "input": "teetotaler", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â »" }, { "input": "teetotalers", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â »â Ž" }, { "input": "teetotaller", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â ‡â »" }, { "input": "teetotallers", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â ‡â »â Ž" }, { "input": "telecast", "output": "⠞⠑⠇⠑⠉â â Œ" }, { "input": "telecasted", "output": "⠞⠑⠇⠑⠉â â Œâ «" }, { "input": "telecaster", "output": "⠞⠑⠇⠑⠉â â Œâ »" }, { "input": "telecasters", "output": "⠞⠑⠇⠑⠉â â Œâ »â Ž" }, { "input": "telecasting", "output": "⠞⠑⠇⠑⠉â â Œâ ¬" }, { "input": "telecasts", "output": "⠞⠑⠇⠑⠉â â Œâ Ž" }, { "input": "telecommunication", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â â Šâ ‰â â °â " }, { "input": "telecommunications", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â â Šâ ‰â â °â â Ž" }, { "input": "telecommute", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ ‘" }, { "input": "telecommuted", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ «" }, { "input": "telecommuter", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ »" }, { "input": "telecommuters", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ »â Ž" }, { "input": "telecommutes", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ ‘â Ž" }, { "input": "telecommuting", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ ¬" }, { "input": "teleconference", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘" }, { "input": "teleconferenced", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘â ™" }, { "input": "teleconferences", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘â Ž" }, { "input": "teleconferencing", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â ¢â ‰â ¬" }, { "input": "telegram", "output": "⠞⠑⠇⠑⠛⠗â â " }, { "input": "telegrams", "output": "⠞⠑⠇⠑⠛⠗â â â Ž" }, { "input": "telegraph", "output": "⠞⠑⠇⠑⠛⠗â â â “" }, { "input": "telegraphed", "output": "⠞⠑⠇⠑⠛⠗â â â “â «" }, { "input": "telegrapher", "output": "⠞⠑⠇⠑⠛⠗â â â “â »" }, { "input": "telegraphers", "output": "⠞⠑⠇⠑⠛⠗â â â “⠻⠎" }, { "input": "telegraphic", "output": "⠞⠑⠇⠑⠛⠗â â â “â Šâ ‰" }, { "input": "telegraphing", "output": "⠞⠑⠇⠑⠛⠗â â â “â ¬" }, { "input": "telegraphs", "output": "⠞⠑⠇⠑⠛⠗â â â “â Ž" }, { "input": "telegraphy", "output": "⠞⠑⠇⠑⠛⠗â â â “â ½" }, { "input": "telekinesis", "output": "⠞⠑⠇⠑⠅⠔⠑⠎⠊⠎" }, { "input": "telemarketing", "output": "⠞⠑⠇⠑â â œâ …â ‘â žâ ¬" }, { "input": "telemeter", "output": "⠞⠑⠇⠑â â ‘â žâ »" }, { "input": "telemeters", "output": "⠞⠑⠇⠑â â ‘⠞⠻⠎" }, { "input": "telemetries", "output": "⠞⠑⠇⠑â â ‘â žâ —â Šâ ‘â Ž" }, { "input": "telemetry", "output": "⠞⠑⠇⠑â â ‘â žâ —â ½" }, { "input": "telepathic", "output": "⠞⠑⠇⠑â â â ¹â Šâ ‰" }, { "input": "telepathically", "output": "⠞⠑⠇⠑â â â ¹â Šâ ‰â â ‡â ‡â ½" }, { "input": "telepathy", "output": "⠞⠑⠇⠑â â â ¹â ½" }, { "input": "telephone", "output": "⠞⠑⠇⠑â â “â â •" }, { "input": "telephoned", "output": "⠞⠑⠇⠑â â “â •â â «" }, { "input": "telephones", "output": "⠞⠑⠇⠑â â “â â •â Ž" }, { "input": "telephonic", "output": "⠞⠑⠇⠑â â “â •â â Šâ ‰" }, { "input": "telephoning", "output": "⠞⠑⠇⠑â â “â •â â ¬" }, { "input": "telephony", "output": "⠞⠑⠇⠑â â “â •â â ½" }, { "input": "telephoto", "output": "⠞⠑⠇⠑â â “â •â žâ •" }, { "input": "telephotos", "output": "⠞⠑⠇⠑â â “â •â žâ •â Ž" }, { "input": "telescope", "output": "⠞⠑⠇⠑⠎⠉⠕â â ‘" }, { "input": "telescoped", "output": "⠞⠑⠇⠑⠎⠉⠕â â «" }, { "input": "telescopes", "output": "⠞⠑⠇⠑⠎⠉⠕â â ‘â Ž" }, { "input": "telescopic", "output": "⠞⠑⠇⠑⠎⠉⠕â â Šâ ‰" }, { "input": "telescoping", "output": "⠞⠑⠇⠑⠎⠉⠕â â ¬" }, { "input": "telethon", "output": "⠞⠑⠇⠑⠹⠕â " }, { "input": "telethons", "output": "⠞⠑⠇⠑⠹⠕â â Ž" }, { "input": "teletype", "output": "⠞⠑⠇⠑⠞⠽â â ‘" }, { "input": "teletypes", "output": "⠞⠑⠇⠑⠞⠽â â ‘â Ž" }, { "input": "teletypewriter", "output": "⠞⠑⠇⠑⠞⠽â â ‘⠺⠗⠊⠞⠻" }, { "input": "teletypewriters", "output": "⠞⠑⠇⠑⠞⠽â â ‘⠺⠗⠊⠞⠻⠎" }, { "input": "televangelist", "output": "⠞⠑⠇⠑⠧â â â ›â ‘⠇⠊⠌" }, { "input": "televangelists", "output": "⠞⠑⠇⠑⠧â â â ›â ‘⠇⠊⠌⠎" }, { "input": "televise", "output": "⠞⠑⠇⠑⠧⠊⠎⠑" }, { "input": "televised", "output": "⠞⠑⠇⠑⠧⠊⠎⠫" }, { "input": "televises", "output": "⠞⠑⠇⠑⠧⠊⠎⠑⠎" }, { "input": "televising", "output": "⠞⠑⠇⠑⠧⠊⠎⠬" }, { "input": "television", "output": "⠞⠑⠇⠑⠧⠊⠨â " }, { "input": "televisions", "output": "⠞⠑⠇⠑⠧⠊⠨â â Ž" }, { "input": "telex", "output": "⠞⠑⠇⠑⠭" }, { "input": "telexed", "output": "⠞⠑⠇⠑⠭⠫" }, { "input": "telexes", "output": "⠞⠑⠇⠑⠭⠑⠎" }, { "input": "telexing", "output": "⠞⠑⠇⠑⠭⠬" }, { "input": "tell", "output": "⠞⠑⠇⠇" }, { "input": "teller", "output": "⠞⠑⠇⠇⠻" }, { "input": "tellers", "output": "⠞⠑⠇⠇⠻⠎" }, { "input": "telling", "output": "⠞⠑⠇⠇⠬" }, { "input": "tellingly", "output": "⠞⠑⠇⠇⠬⠇⠽" }, { "input": "tells", "output": "⠞⠑⠇⠇⠎" }, { "input": "telltale", "output": "⠞⠑⠇⠇⠞â â ‡â ‘" }, { "input": "telltales", "output": "⠞⠑⠇⠇⠞â â ‡â ‘â Ž" }, { "input": "temblor", "output": "â žâ ‘â â ƒâ ‡â •â —" }, { "input": "temblors", "output": "â žâ ‘â â ƒâ ‡â •â —â Ž" }, { "input": "temerity", "output": "â žâ ‘â â »â °â ½" }, { "input": "temp", "output": "â žâ ‘â â " }, { "input": "temped", "output": "â žâ ‘â â â «" }, { "input": "temper", "output": "â žâ ‘â â â »" }, { "input": "tempera", "output": "â žâ ‘â â â »â " }, { "input": "temperament", "output": "â žâ ‘â â â »â â °â ž" }, { "input": "temperamental", "output": "â žâ ‘â â â »â â °â žâ â ‡" }, { "input": "temperamentally", "output": "â žâ ‘â â â »â â °â žâ â ‡â ‡â ½" }, { "input": "temperaments", "output": "â žâ ‘â â â »â â °â žâ Ž" }, { "input": "temperance", "output": "â žâ ‘â â â »â ¨â ‘" }, { "input": "temperas", "output": "â žâ ‘â â â »â â Ž" }, { "input": "temperate", "output": "â žâ ‘â â â »â â žâ ‘" }, { "input": "temperature", "output": "â žâ ‘â â â »â â žâ ¥â —â ‘" }, { "input": "temperatures", "output": "â žâ ‘â â â »â â žâ ¥â —â ‘â Ž" }, { "input": "tempered", "output": "â žâ ‘â â â »â «" }, { "input": "tempering", "output": "â žâ ‘â â â »â ¬" }, { "input": "tempers", "output": "â žâ ‘â â â »â Ž" }, { "input": "tempest", "output": "â žâ ‘â â â ‘â Œ" }, { "input": "tempests", "output": "â žâ ‘â â â ‘⠌⠎" }, { "input": "tempestuous", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎" }, { "input": "tempestuously", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎⠇⠽" }, { "input": "tempestuousness", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎⠰⠎" }, { "input": "tempi", "output": "â žâ ‘â â â Š" }, { "input": "temping", "output": "â žâ ‘â â â ¬" }, { "input": "template", "output": "â žâ ‘â â â ‡â â žâ ‘" }, { "input": "templates", "output": "â žâ ‘â â â ‡â â žâ ‘â Ž" }, { "input": "temple", "output": "â žâ ‘â â â ‡â ‘" }, { "input": "temples", "output": "â žâ ‘â â â ‡â ‘â Ž" }, { "input": "tempo", "output": "â žâ ‘â â â •" }, { "input": "temporal", "output": "â žâ ‘â â â •â —â â ‡" }, { "input": "temporally", "output": "â žâ ‘â â â •â —â â ‡â ‡â ½" }, { "input": "temporaries", "output": "â žâ ‘â â â •⠗⠜⠊⠑⠎" }, { "input": "temporarily", "output": "â žâ ‘â â â •⠗⠜⠊⠇⠽" }, { "input": "temporary", "output": "â žâ ‘â â â •⠗⠜⠽" }, { "input": "temporize", "output": "â žâ ‘â â â •⠗⠊⠵⠑" }, { "input": "temporized", "output": "â žâ ‘â â â •⠗⠊⠵⠫" }, { "input": "temporizes", "output": "â žâ ‘â â â •⠗⠊⠵⠑⠎" }, { "input": "temporizing", "output": "â žâ ‘â â â •⠗⠊⠵⠬" }, { "input": "tempos", "output": "â žâ ‘â â â •â Ž" }, { "input": "temps", "output": "â žâ ‘â â â Ž" }, { "input": "tempt", "output": "â žâ ‘â â â ž" }, { "input": "temptation", "output": "â žâ ‘â â â žâ â °â " }, { "input": "temptations", "output": "â žâ ‘â â â žâ â °â â Ž" }, { "input": "tempted", "output": "â žâ ‘â â â žâ «" }, { "input": "tempter", "output": "â žâ ‘â â â žâ »" }, { "input": "tempters", "output": "â žâ ‘â â â žâ »â Ž" }, { "input": "tempting", "output": "â žâ ‘â â â žâ ¬" }, { "input": "temptingly", "output": "â žâ ‘â â â žâ ¬â ‡â ½" }, { "input": "temptress", "output": "â žâ ‘â â â žâ —â ‘â Žâ Ž" }, { "input": "temptresses", "output": "â žâ ‘â â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "tempts", "output": "â žâ ‘â â â žâ Ž" }, { "input": "tempura", "output": "â žâ ‘â â â ¥â —â " }, { "input": "ten", "output": "â žâ ¢" }, { "input": "tenability", "output": "â žâ ¢â â ƒâ Šâ ‡â °â ½" }, { "input": "tenable", "output": "â žâ ¢â â ƒâ ‡â ‘" }, { "input": "tenacious", "output": "â žâ ¢â â ‰â Šâ ³â Ž" }, { "input": "tenaciously", "output": "â žâ ¢â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "tenacity", "output": "â žâ ¢â â ‰â °â ½" }, { "input": "tenancies", "output": "â žâ ¢â â â ‰â Šâ ‘â Ž" }, { "input": "tenancy", "output": "â žâ ¢â â â ‰â ½" }, { "input": "tenant", "output": "â žâ ¢â â â ž" }, { "input": "tenanted", "output": "â žâ ¢â â â žâ «" }, { "input": "tenanting", "output": "â žâ ¢â â â žâ ¬" }, { "input": "tenants", "output": "â žâ ¢â â â žâ Ž" }, { "input": "tend", "output": "⠞⠢⠙" }, { "input": "tended", "output": "⠞⠢⠙⠫" }, { "input": "tendencies", "output": "⠞⠢⠙⠢⠉⠊⠑⠎" }, { "input": "tendency", "output": "⠞⠢⠙⠢⠉⠽" }, { "input": "tendentious", "output": "⠞⠢⠙⠢⠞⠊⠳⠎" }, { "input": "tendentiously", "output": "⠞⠢⠙⠢⠞⠊⠳⠎⠇⠽" }, { "input": "tendentiousness", "output": "⠞⠢⠙⠢⠞⠊⠳⠎⠰⠎" }, { "input": "tender", "output": "⠞⠢⠙⠻" }, { "input": "tendered", "output": "⠞⠢⠙⠻⠫" }, { "input": "tenderer", "output": "⠞⠢⠙⠻⠻" }, { "input": "tenderest", "output": "⠞⠢⠙⠻⠑⠌" }, { "input": "tenderfeet", "output": "⠞⠢⠙⠻⠋⠑⠑⠞" }, { "input": "tenderfoot", "output": "⠞⠢⠙⠻⠋⠕⠕⠞" }, { "input": "tenderfoots", "output": "⠞⠢⠙⠻⠋⠕⠕⠞⠎" }, { "input": "tenderhearted", "output": "⠞⠢⠙⠻⠓⠑⠜⠞⠫" }, { "input": "tendering", "output": "⠞⠢⠙⠻⠬" }, { "input": "tenderize", "output": "⠞⠢⠙⠻⠊⠵⠑" }, { "input": "tenderized", "output": "⠞⠢⠙⠻⠊⠵⠫" }, { "input": "tenderizer", "output": "⠞⠢⠙⠻⠊⠵⠻" }, { "input": "tenderizers", "output": "⠞⠢⠙⠻⠊⠵⠻⠎" }, { "input": "tenderizes", "output": "⠞⠢⠙⠻⠊⠵⠑⠎" }, { "input": "tenderizing", "output": "⠞⠢⠙⠻⠊⠵⠬" }, { "input": "tenderloin", "output": "⠞⠢⠙⠻⠇⠕⠔" }, { "input": "tenderloins", "output": "⠞⠢⠙⠻⠇⠕⠔⠎" }, { "input": "tenderly", "output": "⠞⠢⠙⠻⠇⠽" }, { "input": "tenderness", "output": "⠞⠢⠙⠻⠰⠎" }, { "input": "tenders", "output": "⠞⠢⠙⠻⠎" }, { "input": "tending", "output": "⠞⠢⠙⠬" }, { "input": "tendinitis", "output": "⠞⠢⠙⠔⠊⠞⠊⠎" }, { "input": "tendon", "output": "⠞⠢⠙⠕â " }, { "input": "tendonitis", "output": "⠞⠢⠙⠕â â Šâ žâ Šâ Ž" }, { "input": "tendons", "output": "⠞⠢⠙⠕â â Ž" }, { "input": "tendril", "output": "⠞⠢⠙⠗⠊⠇" }, { "input": "tendrils", "output": "⠞⠢⠙⠗⠊⠇⠎" }, { "input": "tends", "output": "⠞⠢⠙⠎" }, { "input": "tenement", "output": "⠞⠢⠑⠰⠞" }, { "input": "tenements", "output": "⠞⠢⠑⠰⠞⠎" }, { "input": "tenet", "output": "⠞⠢⠑⠞" }, { "input": "tenets", "output": "⠞⠢⠑⠞⠎" }, { "input": "tenfold", "output": "⠞⠢⠋⠕⠇⠙" }, { "input": "tennis", "output": "â žâ ¢â â Šâ Ž" }, { "input": "tenon", "output": "⠞⠢⠕â " }, { "input": "tenoned", "output": "⠞⠢⠕â â «" }, { "input": "tenoning", "output": "⠞⠢⠕â â ¬" }, { "input": "tenons", "output": "⠞⠢⠕â â Ž" }, { "input": "tenor", "output": "⠞⠢⠕⠗" }, { "input": "tenors", "output": "⠞⠢⠕⠗⠎" }, { "input": "tenpin", "output": "â žâ ¢â â ”" }, { "input": "tenpins", "output": "â žâ ¢â â ”â Ž" }, { "input": "tens", "output": "⠞⠢⠎" }, { "input": "tense", "output": "⠞⠢⠎⠑" }, { "input": "tensed", "output": "⠞⠢⠎⠫" }, { "input": "tensely", "output": "⠞⠢⠎⠑⠇⠽" }, { "input": "tenseness", "output": "⠞⠢⠎⠑⠰⠎" }, { "input": "tenser", "output": "⠞⠢⠎⠻" }, { "input": "tenses", "output": "⠞⠢⠎⠑⠎" }, { "input": "tensest", "output": "⠞⠢⠎⠑⠌" }, { "input": "tensile", "output": "⠞⠢⠎⠊⠇⠑" }, { "input": "tensing", "output": "⠞⠢⠎⠬" }, { "input": "tension", "output": "⠞⠢⠨â " }, { "input": "tensions", "output": "⠞⠢⠨â â Ž" }, { "input": "tensor", "output": "⠞⠢⠎⠕⠗" }, { "input": "tensors", "output": "⠞⠢⠎⠕⠗⠎" }, { "input": "tent", "output": "⠞⠢⠞" }, { "input": "tentacle", "output": "⠞⠢⠞â â ‰â ‡â ‘" }, { "input": "tentacles", "output": "⠞⠢⠞â â ‰â ‡â ‘â Ž" }, { "input": "tentative", "output": "⠞⠢⠞â â žâ Šâ §â ‘" }, { "input": "tentatively", "output": "⠞⠢⠞â â žâ Šâ §â ‘⠇⠽" }, { "input": "tented", "output": "⠞⠢⠞⠫" }, { "input": "tenth", "output": "⠞⠢⠹" }, { "input": "tenths", "output": "⠞⠢⠹⠎" }, { "input": "tenting", "output": "⠞⠢⠞⠬" }, { "input": "tents", "output": "⠞⠢⠞⠎" }, { "input": "tenuous", "output": "⠞⠢⠥⠳⠎" }, { "input": "tenuously", "output": "⠞⠢⠥⠳⠎⠇⠽" }, { "input": "tenuousness", "output": "⠞⠢⠥⠳⠎⠰⠎" }, { "input": "tenure", "output": "⠞⠢⠥⠗⠑" }, { "input": "tenured", "output": "⠞⠢⠥⠗⠫" }, { "input": "tenures", "output": "⠞⠢⠥⠗⠑⠎" }, { "input": "tenuring", "output": "⠞⠢⠥⠗⠬" }, { "input": "tepee", "output": "â žâ ‘â â ‘â ‘" }, { "input": "tepees", "output": "â žâ ‘â â ‘â ‘â Ž" }, { "input": "tepid", "output": "â žâ ‘â â Šâ ™" }, { "input": "tequila", "output": "⠞⠑⠟⠥⠊⠇â " }, { "input": "tequilas", "output": "⠞⠑⠟⠥⠊⠇â â Ž" }, { "input": "terabit", "output": "â žâ »â â ƒâ Šâ ž" }, { "input": "terabits", "output": "â žâ »â â ƒâ Šâ žâ Ž" }, { "input": "terabyte", "output": "â žâ »â â ƒâ ½â žâ ‘" }, { "input": "terabytes", "output": "â žâ »â â ƒâ ½â žâ ‘â Ž" }, { "input": "tercentenaries", "output": "⠞⠻⠉⠢⠞⠢⠜⠊⠑⠎" }, { "input": "tercentenary", "output": "⠞⠻⠉⠢⠞⠢⠜⠽" }, { "input": "term", "output": "â žâ »â " }, { "input": "termagant", "output": "â žâ »â â â ›â â â ž" }, { "input": "termagants", "output": "â žâ »â â â ›â â â žâ Ž" }, { "input": "termed", "output": "â žâ »â â «" }, { "input": "terminable", "output": "â žâ »â â ”â â ƒâ ‡â ‘" }, { "input": "terminal", "output": "â žâ »â â ”â â ‡" }, { "input": "terminally", "output": "â žâ »â â ”â â ‡â ‡â ½" }, { "input": "terminals", "output": "â žâ »â â ”â â ‡â Ž" }, { "input": "terminate", "output": "â žâ »â â ”â â žâ ‘" }, { "input": "terminated", "output": "â žâ »â â ”â â žâ «" }, { "input": "terminates", "output": "â žâ »â â ”â â žâ ‘â Ž" }, { "input": "terminating", "output": "â žâ »â â ”â â žâ ¬" }, { "input": "termination", "output": "â žâ »â â ”â â °â " }, { "input": "terminations", "output": "â žâ »â â ”â â °â â Ž" }, { "input": "terminator", "output": "â žâ »â â ”â â žâ •â —" }, { "input": "terminators", "output": "â žâ »â â ”â â žâ •â —â Ž" }, { "input": "terming", "output": "â žâ »â â ¬" }, { "input": "termini", "output": "â žâ »â â ”â Š" }, { "input": "terminological", "output": "â žâ »â â ”⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "terminologies", "output": "â žâ »â â ”⠕⠇⠕⠛⠊⠑⠎" }, { "input": "terminology", "output": "â žâ »â â ”⠕⠇⠕⠛⠽" }, { "input": "terminus", "output": "â žâ »â â ”⠥⠎" }, { "input": "terminuses", "output": "â žâ »â â ”⠥⠎⠑⠎" }, { "input": "termite", "output": "â žâ »â â Šâ žâ ‘" }, { "input": "termites", "output": "â žâ »â â Šâ žâ ‘â Ž" }, { "input": "termly", "output": "â žâ »â â ‡â ½" }, { "input": "terms", "output": "â žâ »â â Ž" }, { "input": "tern", "output": "â žâ »â " }, { "input": "terns", "output": "â žâ »â â Ž" }, { "input": "terrace", "output": "⠞⠻⠗â â ‰â ‘" }, { "input": "terraced", "output": "⠞⠻⠗â â ‰â «" }, { "input": "terraces", "output": "⠞⠻⠗â â ‰â ‘â Ž" }, { "input": "terracing", "output": "⠞⠻⠗â â ‰â ¬" }, { "input": "terrain", "output": "⠞⠻⠗â â ”" }, { "input": "terrains", "output": "⠞⠻⠗â â ”â Ž" }, { "input": "terrapin", "output": "⠞⠻⠗â â â ”" }, { "input": "terrapins", "output": "⠞⠻⠗â â â ”â Ž" }, { "input": "terraria", "output": "⠞⠻⠗⠜⠊â " }, { "input": "terrarium", "output": "⠞⠻⠗⠜⠊⠥â " }, { "input": "terrariums", "output": "⠞⠻⠗⠜⠊⠥â â Ž" }, { "input": "terrestrial", "output": "⠞⠻⠗⠑⠌⠗⠊â â ‡" }, { "input": "terrestrials", "output": "⠞⠻⠗⠑⠌⠗⠊â â ‡â Ž" }, { "input": "terrible", "output": "⠞⠻⠗⠊⠃⠇⠑" }, { "input": "terribly", "output": "⠞⠻⠗⠊⠃⠇⠽" }, { "input": "terrier", "output": "⠞⠻⠗⠊⠻" }, { "input": "terriers", "output": "⠞⠻⠗⠊⠻⠎" }, { "input": "terrific", "output": "⠞⠻⠗⠊⠋⠊⠉" }, { "input": "terrifically", "output": "⠞⠻⠗⠊⠋⠊⠉â â ‡â ‡â ½" }, { "input": "terrified", "output": "⠞⠻⠗⠊⠋⠊⠫" }, { "input": "terrifies", "output": "⠞⠻⠗⠊⠋⠊⠑⠎" }, { "input": "terrify", "output": "⠞⠻⠗⠊⠋⠽" }, { "input": "terrifying", "output": "⠞⠻⠗⠊⠋⠽⠬" }, { "input": "terrifyingly", "output": "⠞⠻⠗⠊⠋⠽⠬⠇⠽" }, { "input": "territorial", "output": "⠞⠻⠗⠊⠞⠕⠗⠊â â ‡" }, { "input": "territorials", "output": "⠞⠻⠗⠊⠞⠕⠗⠊â â ‡â Ž" }, { "input": "territories", "output": "⠞⠻⠗⠊⠞⠕⠗⠊⠑⠎" }, { "input": "territory", "output": "⠞⠻⠗⠊⠞⠕⠗⠽" }, { "input": "terror", "output": "⠞⠻⠗⠕⠗" }, { "input": "terrorism", "output": "⠞⠻⠗⠕⠗⠊⠎â " }, { "input": "terrorist", "output": "⠞⠻⠗⠕⠗⠊⠌" }, { "input": "terrorists", "output": "⠞⠻⠗⠕⠗⠊⠌⠎" }, { "input": "terrorize", "output": "⠞⠻⠗⠕⠗⠊⠵⠑" }, { "input": "terrorized", "output": "⠞⠻⠗⠕⠗⠊⠵⠫" }, { "input": "terrorizes", "output": "⠞⠻⠗⠕⠗⠊⠵⠑⠎" }, { "input": "terrorizing", "output": "⠞⠻⠗⠕⠗⠊⠵⠬" }, { "input": "terrors", "output": "⠞⠻⠗⠕⠗⠎" }, { "input": "terry", "output": "⠞⠻⠗⠽" }, { "input": "terse", "output": "⠞⠻⠎⠑" }, { "input": "tersely", "output": "⠞⠻⠎⠑⠇⠽" }, { "input": "terseness", "output": "⠞⠻⠎⠑⠰⠎" }, { "input": "terser", "output": "⠞⠻⠎⠻" }, { "input": "tersest", "output": "⠞⠻⠎⠑⠌" }, { "input": "tertiary", "output": "⠞⠻⠞⠊⠜⠽" }, { "input": "test", "output": "â žâ ‘â Œ" }, { "input": "testable", "output": "â žâ ‘â Œâ â ƒâ ‡â ‘" }, { "input": "testament", "output": "â žâ ‘â Œâ â °â ž" }, { "input": "testamentary", "output": "â žâ ‘â Œâ â °â žâ œâ ½" }, { "input": "testaments", "output": "â žâ ‘â Œâ â °â žâ Ž" }, { "input": "testate", "output": "â žâ ‘â Œâ â žâ ‘" }, { "input": "testates", "output": "â žâ ‘â Œâ â žâ ‘â Ž" }, { "input": "tested", "output": "⠞⠑⠌⠫" }, { "input": "tester", "output": "⠞⠑⠌⠻" }, { "input": "testers", "output": "⠞⠑⠌⠻⠎" }, { "input": "testes", "output": "⠞⠑⠌⠑⠎" }, { "input": "testicle", "output": "⠞⠑⠌⠊⠉⠇⠑" }, { "input": "testicles", "output": "⠞⠑⠌⠊⠉⠇⠑⠎" }, { "input": "testier", "output": "⠞⠑⠌⠊⠻" }, { "input": "testiest", "output": "⠞⠑⠌⠊⠑⠌" }, { "input": "testified", "output": "⠞⠑⠌⠊⠋⠊⠫" }, { "input": "testifies", "output": "⠞⠑⠌⠊⠋⠊⠑⠎" }, { "input": "testify", "output": "⠞⠑⠌⠊⠋⠽" }, { "input": "testifying", "output": "⠞⠑⠌⠊⠋⠽⠬" }, { "input": "testily", "output": "⠞⠑⠌⠊⠇⠽" }, { "input": "testimonial", "output": "⠞⠑⠌⠊â â •â â Šâ â ‡" }, { "input": "testimonials", "output": "⠞⠑⠌⠊â â •â â Šâ â ‡â Ž" }, { "input": "testimonies", "output": "⠞⠑⠌⠊â â •â â Šâ ‘â Ž" }, { "input": "testimony", "output": "⠞⠑⠌⠊â â •â â ½" }, { "input": "testiness", "output": "⠞⠑⠌⠊⠰⠎" }, { "input": "testing", "output": "⠞⠑⠌⠬" }, { "input": "testis", "output": "⠞⠑⠌⠊⠎" }, { "input": "testosterone", "output": "⠞⠑⠌⠕⠌⠻â â •" }, { "input": "tests", "output": "⠞⠑⠌⠎" }, { "input": "testy", "output": "⠞⠑⠌⠽" }, { "input": "tetanus", "output": "â žâ ‘â žâ â â ¥â Ž" }, { "input": "tether", "output": "⠞⠑⠮⠗" }, { "input": "tethered", "output": "⠞⠑⠮⠗⠫" }, { "input": "tethering", "output": "⠞⠑⠮⠗⠬" }, { "input": "tethers", "output": "⠞⠑⠮⠗⠎" }, { "input": "tetrahedra", "output": "â žâ ‘â žâ —â â “â «â —â " }, { "input": "tetrahedron", "output": "â žâ ‘â žâ —â â “â «â —â •â " }, { "input": "tetrahedrons", "output": "â žâ ‘â žâ —â â “â «â —â •â â Ž" }, { "input": "text", "output": "â žâ ‘â ­â ž" }, { "input": "textbook", "output": "⠞⠑⠭⠞⠃⠕⠕⠅" }, { "input": "textbooks", "output": "⠞⠑⠭⠞⠃⠕⠕⠅⠎" }, { "input": "textile", "output": "⠞⠑⠭⠞⠊⠇⠑" }, { "input": "textiles", "output": "⠞⠑⠭⠞⠊⠇⠑⠎" }, { "input": "texts", "output": "â žâ ‘â ­â žâ Ž" }, { "input": "textual", "output": "â žâ ‘â ­â žâ ¥â â ‡" }, { "input": "textually", "output": "â žâ ‘â ­â žâ ¥â â ‡â ‡â ½" }, { "input": "textural", "output": "⠞⠑⠭⠞⠥⠗â â ‡" }, { "input": "texture", "output": "⠞⠑⠭⠞⠥⠗⠑" }, { "input": "textured", "output": "⠞⠑⠭⠞⠥⠗⠫" }, { "input": "textures", "output": "⠞⠑⠭⠞⠥⠗⠑⠎" }, { "input": "texturing", "output": "⠞⠑⠭⠞⠥⠗⠬" }, { "input": "thalami", "output": "â ¹â â ‡â â â Š" }, { "input": "thalamus", "output": "â ¹â â ‡â â â ¥â Ž" }, { "input": "thallium", "output": "â ¹â â ‡â ‡â Šâ ¥â " }, { "input": "than", "output": "â ¹â â " }, { "input": "thank", "output": "â ¹â â â …" }, { "input": "thanked", "output": "â ¹â â â …â «" }, { "input": "thankful", "output": "â ¹â â â …â °â ‡" }, { "input": "thankfully", "output": "â ¹â â â …⠰⠇⠇⠽" }, { "input": "thankfulness", "output": "â ¹â â â …⠰⠇⠰⠎" }, { "input": "thanking", "output": "â ¹â â â …â ¬" }, { "input": "thankless", "output": "â ¹â â â …⠨⠎" }, { "input": "thanklessly", "output": "â ¹â â â …⠨⠎⠇⠽" }, { "input": "thanks", "output": "â ¹â â â …â Ž" }, { "input": "thanksgiving", "output": "â ¹â â â …⠎⠛⠊⠧⠬" }, { "input": "thanksgivings", "output": "â ¹â â â …⠎⠛⠊⠧⠬⠎" }, { "input": "that", "output": "â ž" }, { "input": "thatch", "output": "â ¹â â žâ ¡" }, { "input": "thatched", "output": "â ¹â â žâ ¡â «" }, { "input": "thatcher", "output": "â ¹â â žâ ¡â »" }, { "input": "thatches", "output": "â ¹â â žâ ¡â ‘â Ž" }, { "input": "thatching", "output": "â ¹â â žâ ¡â ¬" }, { "input": "thaw", "output": "â ¹â â º" }, { "input": "thawed", "output": "â ¹â â ºâ «" }, { "input": "thawing", "output": "â ¹â â ºâ ¬" }, { "input": "thaws", "output": "â ¹â â ºâ Ž" }, { "input": "the", "output": "â ®" }, { "input": "theater", "output": "â ®â â žâ »" }, { "input": "theaters", "output": "â ®â â žâ »â Ž" }, { "input": "theatre", "output": "â ®â â žâ —â ‘" }, { "input": "theatres", "output": "â ®â â žâ —â ‘â Ž" }, { "input": "theatrical", "output": "â ®â â žâ —â Šâ ‰â â ‡" }, { "input": "theatrically", "output": "â ®â â žâ —â Šâ ‰â â ‡â ‡â ½" }, { "input": "thee", "output": "⠮⠑" }, { "input": "thees", "output": "⠮⠑⠎" }, { "input": "theft", "output": "⠮⠋⠞" }, { "input": "thefts", "output": "⠮⠋⠞⠎" }, { "input": "their", "output": "⠸⠮" }, { "input": "theirs", "output": "⠸⠮⠎" }, { "input": "theism", "output": "⠮⠊⠎â " }, { "input": "theist", "output": "⠮⠊⠌" }, { "input": "theistic", "output": "⠮⠊⠌⠊⠉" }, { "input": "theists", "output": "⠮⠊⠌⠎" }, { "input": "them", "output": "â ®â " }, { "input": "thematic", "output": "â ®â â â žâ Šâ ‰" }, { "input": "thematically", "output": "â ®â â â žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "theme", "output": "â ®â â ‘" }, { "input": "themes", "output": "â ®â â ‘â Ž" }, { "input": "themselves", "output": "â ®â â §â Ž" }, { "input": "then", "output": "â ®â " }, { "input": "thence", "output": "⠹⠰⠑" }, { "input": "thenceforth", "output": "⠹⠰⠑⠿⠹" }, { "input": "thenceforward", "output": "⠹⠰⠑⠿⠺⠜⠙" }, { "input": "theocracies", "output": "⠮⠕⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "theocracy", "output": "⠮⠕⠉⠗â â ‰â ½" }, { "input": "theocratic", "output": "⠮⠕⠉⠗â â žâ Šâ ‰" }, { "input": "theologian", "output": "⠮⠕⠇⠕⠛⠊â â " }, { "input": "theologians", "output": "⠮⠕⠇⠕⠛⠊â â â Ž" }, { "input": "theological", "output": "⠮⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "theologies", "output": "⠮⠕⠇⠕⠛⠊⠑⠎" }, { "input": "theology", "output": "⠮⠕⠇⠕⠛⠽" }, { "input": "theorem", "output": "⠮⠕⠗⠑â " }, { "input": "theorems", "output": "⠮⠕⠗⠑â â Ž" }, { "input": "theoretic", "output": "⠮⠕⠗⠑⠞⠊⠉" }, { "input": "theoretical", "output": "⠮⠕⠗⠑⠞⠊⠉â â ‡" }, { "input": "theoretically", "output": "⠮⠕⠗⠑⠞⠊⠉â â ‡â ‡â ½" }, { "input": "theoretician", "output": "⠮⠕⠗⠑⠞⠊⠉⠊â â " }, { "input": "theoreticians", "output": "⠮⠕⠗⠑⠞⠊⠉⠊â â â Ž" }, { "input": "theories", "output": "⠮⠕⠗⠊⠑⠎" }, { "input": "theorist", "output": "⠮⠕⠗⠊⠌" }, { "input": "theorists", "output": "⠮⠕⠗⠊⠌⠎" }, { "input": "theorize", "output": "⠮⠕⠗⠊⠵⠑" }, { "input": "theorized", "output": "⠮⠕⠗⠊⠵⠫" }, { "input": "theorizes", "output": "⠮⠕⠗⠊⠵⠑⠎" }, { "input": "theorizing", "output": "⠮⠕⠗⠊⠵⠬" }, { "input": "theory", "output": "⠮⠕⠗⠽" }, { "input": "theosophy", "output": "⠮⠕⠎⠕â â “â ½" }, { "input": "therapeutic", "output": "⠮⠗â â â ‘⠥⠞⠊⠉" }, { "input": "therapeutically", "output": "⠮⠗â â â ‘⠥⠞⠊⠉â â ‡â ‡â ½" }, { "input": "therapeutics", "output": "⠮⠗â â â ‘⠥⠞⠊⠉⠎" }, { "input": "therapies", "output": "⠮⠗â â â Šâ ‘â Ž" }, { "input": "therapist", "output": "⠮⠗â â â Šâ Œ" }, { "input": "therapists", "output": "⠮⠗â â â Šâ Œâ Ž" }, { "input": "therapy", "output": "⠮⠗â â â ½" }, { "input": "there", "output": "â â ®" }, { "input": "thereabout", "output": "â â ®â â ƒ" }, { "input": "thereabouts", "output": "â â ®â â ƒâ Ž" }, { "input": "thereafter", "output": "â â ®â â ‹" }, { "input": "thereby", "output": "â â ®â ƒâ ½" }, { "input": "therefore", "output": "â â ®â ¿â ‘" }, { "input": "therefrom", "output": "â â ®â ‹â —â •â " }, { "input": "therein", "output": "â â ®â ”" }, { "input": "thereof", "output": "â â ®â ·" }, { "input": "thereon", "output": "â â ®â •â " }, { "input": "thereto", "output": "â â ®â žâ •" }, { "input": "thereupon", "output": "â â ®â ˜â ¥" }, { "input": "therewith", "output": "â â ®â ¾" }, { "input": "thermal", "output": "⠮⠗â â â ‡" }, { "input": "thermally", "output": "⠮⠗â â â ‡â ‡â ½" }, { "input": "thermals", "output": "⠮⠗â â â ‡â Ž" }, { "input": "thermionic", "output": "⠮⠗â â Šâ •â â Šâ ‰" }, { "input": "thermodynamic", "output": "⠮⠗â â •⠙⠽â â â â Šâ ‰" }, { "input": "thermodynamics", "output": "⠮⠗â â •⠙⠽â â â â Šâ ‰â Ž" }, { "input": "thermometer", "output": "⠮⠗â â •â â ‘â žâ »" }, { "input": "thermometers", "output": "⠮⠗â â •â â ‘⠞⠻⠎" }, { "input": "thermonuclear", "output": "⠮⠗â â •â â ¥â ‰â ‡â ‘â œ" }, { "input": "thermoplastic", "output": "⠮⠗â â •â â ‡â â Œâ Šâ ‰" }, { "input": "thermoplastics", "output": "⠮⠗â â •â â ‡â â Œâ Šâ ‰â Ž" }, { "input": "thermos", "output": "⠮⠗â â •â Ž" }, { "input": "thermoses", "output": "⠮⠗â â •â Žâ ‘â Ž" }, { "input": "thermostat", "output": "⠮⠗â â •â Œâ â ž" }, { "input": "thermostatic", "output": "⠮⠗â â •â Œâ â žâ Šâ ‰" }, { "input": "thermostats", "output": "⠮⠗â â •â Œâ â žâ Ž" }, { "input": "thesauri", "output": "⠮⠎â â ¥â —â Š" }, { "input": "thesaurus", "output": "⠮⠎â â ¥â —⠥⠎" }, { "input": "thesauruses", "output": "⠮⠎â â ¥â —⠥⠎⠑⠎" }, { "input": "these", "output": "⠘⠮" }, { "input": "theses", "output": "⠮⠎⠑⠎" }, { "input": "thesis", "output": "⠮⠎⠊⠎" }, { "input": "thespian", "output": "⠮⠎â â Šâ â " }, { "input": "thespians", "output": "⠮⠎â â Šâ â â Ž" }, { "input": "theta", "output": "⠮⠞â " }, { "input": "they", "output": "⠮⠽" }, { "input": "thiamin", "output": "⠹⠊â â â ”" }, { "input": "thiamine", "output": "⠹⠊â â â ”â ‘" }, { "input": "thick", "output": "⠹⠊⠉⠅" }, { "input": "thicken", "output": "⠹⠊⠉⠅⠢" }, { "input": "thickened", "output": "⠹⠊⠉⠅⠢⠫" }, { "input": "thickener", "output": "⠹⠊⠉⠅⠢⠻" }, { "input": "thickeners", "output": "⠹⠊⠉⠅⠢⠻⠎" }, { "input": "thickening", "output": "⠹⠊⠉⠅⠢⠬" }, { "input": "thickenings", "output": "⠹⠊⠉⠅⠢⠬⠎" }, { "input": "thickens", "output": "⠹⠊⠉⠅⠢⠎" }, { "input": "thicker", "output": "⠹⠊⠉⠅⠻" }, { "input": "thickest", "output": "⠹⠊⠉⠅⠑⠌" }, { "input": "thicket", "output": "⠹⠊⠉⠅⠑⠞" }, { "input": "thickets", "output": "⠹⠊⠉⠅⠑⠞⠎" }, { "input": "thickly", "output": "⠹⠊⠉⠅⠇⠽" }, { "input": "thickness", "output": "⠹⠊⠉⠅⠰⠎" }, { "input": "thicknesses", "output": "⠹⠊⠉⠅⠰⠎⠑⠎" }, { "input": "thickset", "output": "⠹⠊⠉⠅⠎⠑⠞" }, { "input": "thief", "output": "⠹⠊⠑⠋" }, { "input": "thieve", "output": "⠹⠊⠑⠧⠑" }, { "input": "thieved", "output": "⠹⠊⠑⠧⠫" }, { "input": "thievery", "output": "⠹⠊⠑⠧⠻⠽" }, { "input": "thieves", "output": "⠹⠊⠑⠧⠑⠎" }, { "input": "thieving", "output": "⠹⠊⠑⠧⠬" }, { "input": "thievish", "output": "⠹⠊⠑⠧⠊⠩" }, { "input": "thigh", "output": "⠹⠊⠣" }, { "input": "thighbone", "output": "⠹⠊⠣⠃â â •" }, { "input": "thighbones", "output": "⠹⠊⠣⠃â â •â Ž" }, { "input": "thighs", "output": "⠹⠊⠣⠎" }, { "input": "thimble", "output": "⠹⠊â â ƒâ ‡â ‘" }, { "input": "thimbleful", "output": "⠹⠊â â ƒâ ‡â ‘â °â ‡" }, { "input": "thimblefuls", "output": "⠹⠊â â ƒâ ‡â ‘⠰⠇⠎" }, { "input": "thimbles", "output": "⠹⠊â â ƒâ ‡â ‘â Ž" }, { "input": "thin", "output": "⠹⠔" }, { "input": "thine", "output": "⠹⠔⠑" }, { "input": "thing", "output": "⠹⠬" }, { "input": "thingamajig", "output": "⠹⠬â â â â šâ Šâ ›" }, { "input": "thingamajigs", "output": "⠹⠬â â â â šâ Šâ ›â Ž" }, { "input": "things", "output": "⠹⠬⠎" }, { "input": "think", "output": "⠹⠔⠅" }, { "input": "thinker", "output": "⠹⠔⠅⠻" }, { "input": "thinkers", "output": "⠹⠔⠅⠻⠎" }, { "input": "thinking", "output": "⠹⠔⠅⠬" }, { "input": "thinks", "output": "⠹⠔⠅⠎" }, { "input": "thinly", "output": "⠹⠔⠇⠽" }, { "input": "thinned", "output": "⠹⠔â â «" }, { "input": "thinner", "output": "⠹⠔â â »" }, { "input": "thinners", "output": "⠹⠔â â »â Ž" }, { "input": "thinness", "output": "⠹⠔⠰⠎" }, { "input": "thinnest", "output": "⠹⠔â â ‘â Œ" }, { "input": "thinning", "output": "⠹⠔â â ¬" }, { "input": "thins", "output": "⠹⠔⠎" }, { "input": "third", "output": "⠹⠊⠗⠙" }, { "input": "thirdly", "output": "⠹⠊⠗⠙⠇⠽" }, { "input": "thirds", "output": "⠹⠊⠗⠙⠎" }, { "input": "thirst", "output": "⠹⠊⠗⠌" }, { "input": "thirsted", "output": "⠹⠊⠗⠌⠫" }, { "input": "thirstier", "output": "⠹⠊⠗⠌⠊⠻" }, { "input": "thirstiest", "output": "⠹⠊⠗⠌⠊⠑⠌" }, { "input": "thirstily", "output": "⠹⠊⠗⠌⠊⠇⠽" }, { "input": "thirsting", "output": "⠹⠊⠗⠌⠬" }, { "input": "thirsts", "output": "⠹⠊⠗⠌⠎" }, { "input": "thirsty", "output": "⠹⠊⠗⠌⠽" }, { "input": "thirteen", "output": "⠹⠊⠗⠞⠑⠢" }, { "input": "thirteens", "output": "⠹⠊⠗⠞⠑⠢⠎" }, { "input": "thirteenth", "output": "⠹⠊⠗⠞⠑⠢⠹" }, { "input": "thirteenths", "output": "⠹⠊⠗⠞⠑⠢⠹⠎" }, { "input": "thirties", "output": "⠹⠊⠗⠞⠊⠑⠎" }, { "input": "thirtieth", "output": "⠹⠊⠗⠞⠊⠑⠹" }, { "input": "thirtieths", "output": "⠹⠊⠗⠞⠊⠑⠹⠎" }, { "input": "thirty", "output": "⠹⠊⠗⠞⠽" }, { "input": "this", "output": "â ¹" }, { "input": "thistle", "output": "⠹⠊⠌⠇⠑" }, { "input": "thistledown", "output": "⠹⠊⠌⠇⠑⠙⠪â " }, { "input": "thistles", "output": "⠹⠊⠌⠇⠑⠎" }, { "input": "thither", "output": "⠹⠊⠮⠗" }, { "input": "tho", "output": "⠹⠕" }, { "input": "thong", "output": "⠹⠰⠛" }, { "input": "thongs", "output": "⠹⠰⠛⠎" }, { "input": "thoraces", "output": "⠹⠕⠗â â ‰â ‘â Ž" }, { "input": "thoracic", "output": "⠹⠕⠗â â ‰â Šâ ‰" }, { "input": "thorax", "output": "⠹⠕⠗â â ­" }, { "input": "thoraxes", "output": "⠹⠕⠗â â ­â ‘â Ž" }, { "input": "thorium", "output": "⠹⠕⠗⠊⠥â " }, { "input": "thorn", "output": "⠹⠕⠗â " }, { "input": "thornier", "output": "⠹⠕⠗â â Šâ »" }, { "input": "thorniest", "output": "⠹⠕⠗â â Šâ ‘â Œ" }, { "input": "thorns", "output": "⠹⠕⠗â â Ž" }, { "input": "thorny", "output": "⠹⠕⠗â â ½" }, { "input": "thorough", "output": "⠹⠕⠗⠳⠣" }, { "input": "thoroughbred", "output": "⠹⠕⠗⠳⠣⠃⠗⠫" }, { "input": "thoroughbreds", "output": "⠹⠕⠗⠳⠣⠃⠗⠫⠎" }, { "input": "thorougher", "output": "⠹⠕⠗⠳⠣⠻" }, { "input": "thoroughest", "output": "⠹⠕⠗⠳⠣⠑⠌" }, { "input": "thoroughfare", "output": "⠹⠕⠗⠳⠣⠋⠜⠑" }, { "input": "thoroughfares", "output": "⠹⠕⠗⠳⠣⠋⠜⠑⠎" }, { "input": "thoroughgoing", "output": "⠹⠕⠗⠳⠣⠛⠕⠬" }, { "input": "thoroughly", "output": "⠹⠕⠗⠳⠣⠇⠽" }, { "input": "thoroughness", "output": "⠹⠕⠗⠳⠣⠰⠎" }, { "input": "those", "output": "⠘⠹" }, { "input": "thou", "output": "⠹⠳" }, { "input": "though", "output": "⠹⠳⠣" }, { "input": "thought", "output": "â ¹â â ³" }, { "input": "thoughtful", "output": "â ¹â â ³â °â ‡" }, { "input": "thoughtfully", "output": "â ¹â â ³â °â ‡â ‡â ½" }, { "input": "thoughtfulness", "output": "â ¹â â ³â °â ‡â °â Ž" }, { "input": "thoughtless", "output": "â ¹â â ³â ¨â Ž" }, { "input": "thoughtlessly", "output": "â ¹â â ³â ¨â Žâ ‡â ½" }, { "input": "thoughtlessness", "output": "â ¹â â ³â ¨â Žâ °â Ž" }, { "input": "thoughts", "output": "â ¹â â ³â Ž" }, { "input": "thous", "output": "⠹⠳⠎" }, { "input": "thousand", "output": "⠹⠳⠎⠯" }, { "input": "thousands", "output": "⠹⠳⠎⠯⠎" }, { "input": "thousandth", "output": "⠹⠳⠎⠯⠹" }, { "input": "thousandths", "output": "⠹⠳⠎⠯⠹⠎" }, { "input": "thraldom", "output": "⠹⠗â â ‡â ™â •â " }, { "input": "thrall", "output": "⠹⠗â â ‡â ‡" }, { "input": "thralldom", "output": "⠹⠗â â ‡â ‡â ™â •â " }, { "input": "thralled", "output": "⠹⠗â â ‡â ‡â «" }, { "input": "thralling", "output": "⠹⠗â â ‡â ‡â ¬" }, { "input": "thralls", "output": "⠹⠗â â ‡â ‡â Ž" }, { "input": "thrash", "output": "⠹⠗â â ©" }, { "input": "thrashed", "output": "⠹⠗â â ©â «" }, { "input": "thrasher", "output": "⠹⠗â â ©â »" }, { "input": "thrashers", "output": "⠹⠗â â ©â »â Ž" }, { "input": "thrashes", "output": "⠹⠗â â ©â ‘â Ž" }, { "input": "thrashing", "output": "⠹⠗â â ©â ¬" }, { "input": "thrashings", "output": "⠹⠗â â ©â ¬â Ž" }, { "input": "thread", "output": "⠹⠗⠂⠙" }, { "input": "threadbare", "output": "⠹⠗⠂⠙⠃⠜⠑" }, { "input": "threaded", "output": "⠹⠗⠂⠙⠫" }, { "input": "threading", "output": "⠹⠗⠂⠙⠬" }, { "input": "threads", "output": "⠹⠗⠂⠙⠎" }, { "input": "threat", "output": "⠹⠗⠂⠞" }, { "input": "threaten", "output": "⠹⠗⠂⠞⠢" }, { "input": "threatened", "output": "⠹⠗⠂⠞⠢⠫" }, { "input": "threatening", "output": "⠹⠗⠂⠞⠢⠬" }, { "input": "threateningly", "output": "⠹⠗⠂⠞⠢⠬⠇⠽" }, { "input": "threatens", "output": "⠹⠗⠂⠞⠢⠎" }, { "input": "threats", "output": "⠹⠗⠂⠞⠎" }, { "input": "three", "output": "⠹⠗⠑⠑" }, { "input": "threefold", "output": "⠹⠗⠑⠑⠋⠕⠇⠙" }, { "input": "threes", "output": "⠹⠗⠑⠑⠎" }, { "input": "threescore", "output": "⠹⠗⠑⠑⠎⠉⠕⠗⠑" }, { "input": "threescores", "output": "⠹⠗⠑⠑⠎⠉⠕⠗⠑⠎" }, { "input": "threesome", "output": "⠹⠗⠑⠑â â Ž" }, { "input": "threesomes", "output": "⠹⠗⠑⠑â â Žâ Ž" }, { "input": "threnodies", "output": "⠹⠗⠢⠕⠙⠊⠑⠎" }, { "input": "threnody", "output": "⠹⠗⠢⠕⠙⠽" }, { "input": "thresh", "output": "⠹⠗⠑⠩" }, { "input": "threshed", "output": "⠹⠗⠑⠩⠫" }, { "input": "thresher", "output": "⠹⠗⠑⠩⠻" }, { "input": "threshers", "output": "⠹⠗⠑⠩⠻⠎" }, { "input": "threshes", "output": "⠹⠗⠑⠩⠑⠎" }, { "input": "threshing", "output": "⠹⠗⠑⠩⠬" }, { "input": "threshold", "output": "⠹⠗⠑⠩⠕⠇⠙" }, { "input": "thresholds", "output": "⠹⠗⠑⠩⠕⠇⠙⠎" }, { "input": "threw", "output": "⠹⠗⠑⠺" }, { "input": "thrice", "output": "⠹⠗⠊⠉⠑" }, { "input": "thrift", "output": "⠹⠗⠊⠋⠞" }, { "input": "thriftier", "output": "⠹⠗⠊⠋⠞⠊⠻" }, { "input": "thriftiest", "output": "⠹⠗⠊⠋⠞⠊⠑⠌" }, { "input": "thriftily", "output": "⠹⠗⠊⠋⠞⠊⠇⠽" }, { "input": "thriftiness", "output": "⠹⠗⠊⠋⠞⠊⠰⠎" }, { "input": "thrifts", "output": "⠹⠗⠊⠋⠞⠎" }, { "input": "thrifty", "output": "⠹⠗⠊⠋⠞⠽" }, { "input": "thrill", "output": "⠹⠗⠊⠇⠇" }, { "input": "thrilled", "output": "⠹⠗⠊⠇⠇⠫" }, { "input": "thriller", "output": "⠹⠗⠊⠇⠇⠻" }, { "input": "thrillers", "output": "⠹⠗⠊⠇⠇⠻⠎" }, { "input": "thrilling", "output": "⠹⠗⠊⠇⠇⠬" }, { "input": "thrills", "output": "⠹⠗⠊⠇⠇⠎" }, { "input": "thrive", "output": "⠹⠗⠊⠧⠑" }, { "input": "thrived", "output": "⠹⠗⠊⠧⠫" }, { "input": "thriven", "output": "⠹⠗⠊⠧⠢" }, { "input": "thrives", "output": "⠹⠗⠊⠧⠑⠎" }, { "input": "thriving", "output": "⠹⠗⠊⠧⠬" }, { "input": "throat", "output": "⠹⠗⠕â â ž" }, { "input": "throatier", "output": "⠹⠗⠕â â žâ Šâ »" }, { "input": "throatiest", "output": "⠹⠗⠕â â žâ Šâ ‘â Œ" }, { "input": "throatily", "output": "⠹⠗⠕â â žâ Šâ ‡â ½" }, { "input": "throatiness", "output": "⠹⠗⠕â â žâ Šâ °â Ž" }, { "input": "throats", "output": "⠹⠗⠕â â žâ Ž" }, { "input": "throaty", "output": "⠹⠗⠕â â žâ ½" }, { "input": "throb", "output": "⠹⠗⠕⠃" }, { "input": "throbbed", "output": "⠹⠗⠕⠆⠫" }, { "input": "throbbing", "output": "⠹⠗⠕⠆⠬" }, { "input": "throbs", "output": "⠹⠗⠕⠃⠎" }, { "input": "throe", "output": "⠹⠗⠕⠑" }, { "input": "throes", "output": "⠹⠗⠕⠑⠎" }, { "input": "thromboses", "output": "⠹⠗⠕â â ƒâ •â Žâ ‘â Ž" }, { "input": "thrombosis", "output": "⠹⠗⠕â â ƒâ •â Žâ Šâ Ž" }, { "input": "throne", "output": "⠹⠗â â •" }, { "input": "thrones", "output": "⠹⠗â â •â Ž" }, { "input": "throng", "output": "⠹⠗⠰⠛" }, { "input": "thronged", "output": "⠹⠗⠰⠛⠫" }, { "input": "thronging", "output": "⠹⠗⠰⠛⠬" }, { "input": "throngs", "output": "⠹⠗⠰⠛⠎" }, { "input": "throttle", "output": "⠹⠗⠕⠞⠞⠇⠑" }, { "input": "throttled", "output": "⠹⠗⠕⠞⠞⠇⠫" }, { "input": "throttles", "output": "⠹⠗⠕⠞⠞⠇⠑⠎" }, { "input": "throttling", "output": "⠹⠗⠕⠞⠞⠇⠬" }, { "input": "through", "output": "â â ¹" }, { "input": "throughout", "output": "â â ¹â ³â ž" }, { "input": "throughput", "output": "â â ¹â â ¥â ž" }, { "input": "throughway", "output": "â â ¹â ºâ â ½" }, { "input": "throughways", "output": "â â ¹â ºâ â ½â Ž" }, { "input": "throve", "output": "⠹⠗⠕⠧⠑" }, { "input": "throw", "output": "⠹⠗⠪" }, { "input": "throwaway", "output": "⠹⠗⠪â â ºâ â ½" }, { "input": "throwaways", "output": "⠹⠗⠪â â ºâ â ½â Ž" }, { "input": "throwback", "output": "⠹⠗⠪⠃â â ‰â …" }, { "input": "throwbacks", "output": "⠹⠗⠪⠃â â ‰â …â Ž" }, { "input": "thrower", "output": "⠹⠗⠪⠻" }, { "input": "throwers", "output": "⠹⠗⠪⠻⠎" }, { "input": "throwing", "output": "⠹⠗⠪⠬" }, { "input": "thrown", "output": "⠹⠗⠪â " }, { "input": "throws", "output": "⠹⠗⠪⠎" }, { "input": "thru", "output": "⠹⠗⠥" }, { "input": "thrum", "output": "⠹⠗⠥â " }, { "input": "thrummed", "output": "⠹⠗⠥â â â «" }, { "input": "thrumming", "output": "⠹⠗⠥â â â ¬" }, { "input": "thrums", "output": "⠹⠗⠥â â Ž" }, { "input": "thrush", "output": "⠹⠗⠥⠩" }, { "input": "thrushes", "output": "⠹⠗⠥⠩⠑⠎" }, { "input": "thrust", "output": "⠹⠗⠥⠌" }, { "input": "thrusting", "output": "⠹⠗⠥⠌⠬" }, { "input": "thrusts", "output": "⠹⠗⠥⠌⠎" }, { "input": "thruway", "output": "⠹⠗⠥⠺â â ½" }, { "input": "thruways", "output": "⠹⠗⠥⠺â â ½â Ž" }, { "input": "thud", "output": "⠹⠥⠙" }, { "input": "thudded", "output": "⠹⠥⠙⠙⠫" }, { "input": "thudding", "output": "⠹⠥⠙⠙⠬" }, { "input": "thuds", "output": "⠹⠥⠙⠎" }, { "input": "thug", "output": "⠹⠥⠛" }, { "input": "thugs", "output": "⠹⠥⠛⠎" }, { "input": "thumb", "output": "⠹⠥â â ƒ" }, { "input": "thumbed", "output": "⠹⠥â â ƒâ «" }, { "input": "thumbing", "output": "⠹⠥â â ƒâ ¬" }, { "input": "thumbnail", "output": "⠹⠥â â ƒâ â â Šâ ‡" }, { "input": "thumbnails", "output": "⠹⠥â â ƒâ â â Šâ ‡â Ž" }, { "input": "thumbs", "output": "⠹⠥â â ƒâ Ž" }, { "input": "thumbscrew", "output": "⠹⠥â â ƒâ Žâ ‰â —â ‘â º" }, { "input": "thumbscrews", "output": "⠹⠥â â ƒâ Žâ ‰â —⠑⠺⠎" }, { "input": "thumbtack", "output": "⠹⠥â â ƒâ žâ â ‰â …" }, { "input": "thumbtacks", "output": "⠹⠥â â ƒâ žâ â ‰â …â Ž" }, { "input": "thump", "output": "⠹⠥â â " }, { "input": "thumped", "output": "⠹⠥â â â «" }, { "input": "thumping", "output": "⠹⠥â â â ¬" }, { "input": "thumps", "output": "⠹⠥â â â Ž" }, { "input": "thunder", "output": "â ¹â â ¥" }, { "input": "thunderbolt", "output": "â ¹â â ¥â ƒâ •⠇⠞" }, { "input": "thunderbolts", "output": "â ¹â â ¥â ƒâ •⠇⠞⠎" }, { "input": "thunderclap", "output": "â ¹â â ¥â ‰â ‡â â " }, { "input": "thunderclaps", "output": "â ¹â â ¥â ‰â ‡â â â Ž" }, { "input": "thundercloud", "output": "â ¹â â ¥â ‰â ‡â ³â ™" }, { "input": "thunderclouds", "output": "â ¹â â ¥â ‰â ‡â ³â ™â Ž" }, { "input": "thundered", "output": "â ¹â â ¥â «" }, { "input": "thunderhead", "output": "â ¹â â ¥â “â ‚â ™" }, { "input": "thunderheads", "output": "â ¹â â ¥â “⠂⠙⠎" }, { "input": "thundering", "output": "â ¹â â ¥â ¬" }, { "input": "thunderous", "output": "â ¹â â ¥â ³â Ž" }, { "input": "thunders", "output": "â ¹â â ¥â Ž" }, { "input": "thundershower", "output": "â ¹â â ¥â ©â ªâ »" }, { "input": "thundershowers", "output": "â ¹â â ¥â ©â ªâ »â Ž" }, { "input": "thunderstorm", "output": "â ¹â â ¥â Œâ •â —â " }, { "input": "thunderstorms", "output": "â ¹â â ¥â Œâ •â —â â Ž" }, { "input": "thunderstruck", "output": "â ¹â â ¥â Œâ —⠥⠉⠅" }, { "input": "thus", "output": "⠹⠥⠎" }, { "input": "thwack", "output": "⠹⠺â â ‰â …" }, { "input": "thwacked", "output": "⠹⠺â â ‰â …â «" }, { "input": "thwacking", "output": "⠹⠺â â ‰â …â ¬" }, { "input": "thwacks", "output": "⠹⠺â â ‰â …â Ž" }, { "input": "thwart", "output": "⠹⠺⠜⠞" }, { "input": "thwarted", "output": "⠹⠺⠜⠞⠫" }, { "input": "thwarting", "output": "⠹⠺⠜⠞⠬" }, { "input": "thwarts", "output": "⠹⠺⠜⠞⠎" }, { "input": "thy", "output": "⠹⠽" }, { "input": "thyme", "output": "⠹⠽â â ‘" }, { "input": "thymi", "output": "⠹⠽â â Š" }, { "input": "thymus", "output": "⠹⠽â â ¥â Ž" }, { "input": "thymuses", "output": "⠹⠽â â ¥â Žâ ‘â Ž" }, { "input": "thyroid", "output": "⠹⠽⠗⠕⠊⠙" }, { "input": "thyroids", "output": "⠹⠽⠗⠕⠊⠙⠎" }, { "input": "thyself", "output": "⠹⠽⠋" }, { "input": "ti", "output": "â žâ Š" }, { "input": "tiara", "output": "â žâ Šâ œâ " }, { "input": "tiaras", "output": "â žâ Šâ œâ â Ž" }, { "input": "tibia", "output": "⠞⠊⠃⠊â " }, { "input": "tibiae", "output": "⠞⠊⠃⠊â â ‘" }, { "input": "tibias", "output": "⠞⠊⠃⠊â â Ž" }, { "input": "tic", "output": "â žâ Šâ ‰" }, { "input": "tick", "output": "⠞⠊⠉⠅" }, { "input": "ticked", "output": "⠞⠊⠉⠅⠫" }, { "input": "ticker", "output": "⠞⠊⠉⠅⠻" }, { "input": "tickers", "output": "⠞⠊⠉⠅⠻⠎" }, { "input": "ticket", "output": "⠞⠊⠉⠅⠑⠞" }, { "input": "ticketed", "output": "⠞⠊⠉⠅⠑⠞⠫" }, { "input": "ticketing", "output": "⠞⠊⠉⠅⠑⠞⠬" }, { "input": "tickets", "output": "⠞⠊⠉⠅⠑⠞⠎" }, { "input": "ticking", "output": "⠞⠊⠉⠅⠬" }, { "input": "tickle", "output": "⠞⠊⠉⠅⠇⠑" }, { "input": "tickled", "output": "⠞⠊⠉⠅⠇⠫" }, { "input": "tickles", "output": "⠞⠊⠉⠅⠇⠑⠎" }, { "input": "tickling", "output": "⠞⠊⠉⠅⠇⠬" }, { "input": "ticklish", "output": "⠞⠊⠉⠅⠇⠊⠩" }, { "input": "ticks", "output": "⠞⠊⠉⠅⠎" }, { "input": "tics", "output": "⠞⠊⠉⠎" }, { "input": "tidal", "output": "â žâ Šâ ™â â ‡" }, { "input": "tidbit", "output": "⠞⠊⠙⠃⠊⠞" }, { "input": "tidbits", "output": "⠞⠊⠙⠃⠊⠞⠎" }, { "input": "tiddlywinks", "output": "⠞⠊⠙⠙⠇⠽⠺⠔⠅⠎" }, { "input": "tide", "output": "⠞⠊⠙⠑" }, { "input": "tided", "output": "⠞⠊⠙⠫" }, { "input": "tides", "output": "⠞⠊⠙⠑⠎" }, { "input": "tidewater", "output": "⠞⠊⠙⠑⠺â â žâ »" }, { "input": "tidewaters", "output": "⠞⠊⠙⠑⠺â â žâ »â Ž" }, { "input": "tidied", "output": "⠞⠊⠙⠊⠫" }, { "input": "tidier", "output": "⠞⠊⠙⠊⠻" }, { "input": "tidies", "output": "⠞⠊⠙⠊⠑⠎" }, { "input": "tidiest", "output": "⠞⠊⠙⠊⠑⠌" }, { "input": "tidily", "output": "⠞⠊⠙⠊⠇⠽" }, { "input": "tidiness", "output": "⠞⠊⠙⠊⠰⠎" }, { "input": "tiding", "output": "⠞⠊⠙⠬" }, { "input": "tidings", "output": "⠞⠊⠙⠬⠎" }, { "input": "tidy", "output": "⠞⠊⠙⠽" }, { "input": "tidying", "output": "⠞⠊⠙⠽⠬" }, { "input": "tie", "output": "â žâ Šâ ‘" }, { "input": "tiebreaker", "output": "⠞⠊⠑⠃⠗⠂⠅⠻" }, { "input": "tiebreakers", "output": "⠞⠊⠑⠃⠗⠂⠅⠻⠎" }, { "input": "tied", "output": "â žâ Šâ «" }, { "input": "tieing", "output": "â žâ Šâ ‘â ¬" }, { "input": "tier", "output": "â žâ Šâ »" }, { "input": "tiers", "output": "⠞⠊⠻⠎" }, { "input": "ties", "output": "â žâ Šâ ‘â Ž" }, { "input": "tiff", "output": "â žâ Šâ ‹â ‹" }, { "input": "tiffed", "output": "â žâ Šâ –â «" }, { "input": "tiffing", "output": "â žâ Šâ –â ¬" }, { "input": "tiffs", "output": "â žâ Šâ –â Ž" }, { "input": "tiger", "output": "⠞⠊⠛⠻" }, { "input": "tigers", "output": "⠞⠊⠛⠻⠎" }, { "input": "tight", "output": "⠞⠊⠣⠞" }, { "input": "tighten", "output": "⠞⠊⠣⠞⠢" }, { "input": "tightened", "output": "⠞⠊⠣⠞⠢⠫" }, { "input": "tightening", "output": "⠞⠊⠣⠞⠢⠬" }, { "input": "tightens", "output": "⠞⠊⠣⠞⠢⠎" }, { "input": "tighter", "output": "⠞⠊⠣⠞⠻" }, { "input": "tightest", "output": "⠞⠊⠣⠞⠑⠌" }, { "input": "tightfisted", "output": "⠞⠊⠣⠞⠋⠊⠌⠫" }, { "input": "tightly", "output": "⠞⠊⠣⠞⠇⠽" }, { "input": "tightness", "output": "⠞⠊⠣⠞⠰⠎" }, { "input": "tightrope", "output": "⠞⠊⠣⠞⠗⠕â â ‘" }, { "input": "tightropes", "output": "⠞⠊⠣⠞⠗⠕â â ‘â Ž" }, { "input": "tights", "output": "⠞⠊⠣⠞⠎" }, { "input": "tightwad", "output": "⠞⠊⠣⠞⠺â â ™" }, { "input": "tightwads", "output": "⠞⠊⠣⠞⠺â â ™â Ž" }, { "input": "tigress", "output": "⠞⠊⠛⠗⠑⠎⠎" }, { "input": "tigresses", "output": "⠞⠊⠛⠗⠑⠎⠎⠑⠎" }, { "input": "tike", "output": "â žâ Šâ …â ‘" }, { "input": "tikes", "output": "â žâ Šâ …â ‘â Ž" }, { "input": "tilde", "output": "⠞⠊⠇⠙⠑" }, { "input": "tildes", "output": "⠞⠊⠇⠙⠑⠎" }, { "input": "tile", "output": "⠞⠊⠇⠑" }, { "input": "tiled", "output": "⠞⠊⠇⠫" }, { "input": "tiles", "output": "⠞⠊⠇⠑⠎" }, { "input": "tiling", "output": "⠞⠊⠇⠬" }, { "input": "till", "output": "⠞⠊⠇⠇" }, { "input": "tillable", "output": "⠞⠊⠇⠇â â ƒâ ‡â ‘" }, { "input": "tillage", "output": "⠞⠊⠇⠇â â ›â ‘" }, { "input": "tilled", "output": "⠞⠊⠇⠇⠫" }, { "input": "tiller", "output": "⠞⠊⠇⠇⠻" }, { "input": "tillers", "output": "⠞⠊⠇⠇⠻⠎" }, { "input": "tilling", "output": "⠞⠊⠇⠇⠬" }, { "input": "tills", "output": "⠞⠊⠇⠇⠎" }, { "input": "tilt", "output": "⠞⠊⠇⠞" }, { "input": "tilted", "output": "⠞⠊⠇⠞⠫" }, { "input": "tilting", "output": "⠞⠊⠇⠞⠬" }, { "input": "tilts", "output": "⠞⠊⠇⠞⠎" }, { "input": "timber", "output": "â žâ Šâ â ƒâ »" }, { "input": "timbered", "output": "â žâ Šâ â ƒâ »â «" }, { "input": "timbering", "output": "â žâ Šâ â ƒâ »â ¬" }, { "input": "timberland", "output": "â žâ Šâ â ƒâ »â ‡â ¯" }, { "input": "timberline", "output": "â žâ Šâ â ƒâ »â ‡â ”â ‘" }, { "input": "timberlines", "output": "â žâ Šâ â ƒâ »â ‡â ”â ‘â Ž" }, { "input": "timbers", "output": "â žâ Šâ â ƒâ »â Ž" }, { "input": "timbre", "output": "â žâ Šâ â ƒâ —â ‘" }, { "input": "timbres", "output": "â žâ Šâ â ƒâ —â ‘â Ž" }, { "input": "time", "output": "â â ž" }, { "input": "timed", "output": "â â žâ ™" }, { "input": "timekeeper", "output": "â â žâ …â ‘â ‘â â »" }, { "input": "timekeepers", "output": "â â žâ …â ‘â ‘â â »â Ž" }, { "input": "timeless", "output": "â â žâ ¨â Ž" }, { "input": "timelessness", "output": "â â žâ ¨â Žâ °â Ž" }, { "input": "timelier", "output": "â â žâ ‡â Šâ »" }, { "input": "timeliest", "output": "â â žâ ‡â Šâ ‘â Œ" }, { "input": "timeliness", "output": "â â žâ ‡â Šâ °â Ž" }, { "input": "timely", "output": "â â žâ ‡â ½" }, { "input": "timepiece", "output": "â â žâ â Šâ ‘⠉⠑" }, { "input": "timepieces", "output": "â â žâ â Šâ ‘⠉⠑⠎" }, { "input": "timer", "output": "â â žâ —" }, { "input": "timers", "output": "â â žâ —â Ž" }, { "input": "times", "output": "â â žâ Ž" }, { "input": "timescale", "output": "â â žâ Žâ ‰â â ‡â ‘" }, { "input": "timescales", "output": "â â žâ Žâ ‰â â ‡â ‘â Ž" }, { "input": "timetable", "output": "â â žâ žâ â ƒâ ‡â ‘" }, { "input": "timetabled", "output": "â â žâ žâ â ƒâ ‡â «" }, { "input": "timetables", "output": "â â žâ žâ â ƒâ ‡â ‘â Ž" }, { "input": "timetabling", "output": "â â žâ žâ â ƒâ ‡â ¬" }, { "input": "timeworn", "output": "â â žâ ºâ •â —â " }, { "input": "timezone", "output": "â â žâ µâ â •" }, { "input": "timid", "output": "â žâ Šâ â Šâ ™" }, { "input": "timider", "output": "â žâ Šâ â Šâ ™â »" }, { "input": "timidest", "output": "â žâ Šâ â Šâ ™â ‘â Œ" }, { "input": "timidity", "output": "â žâ Šâ â Šâ ™â °â ½" }, { "input": "timidly", "output": "â žâ Šâ â Šâ ™â ‡â ½" }, { "input": "timing", "output": "â žâ Šâ â ¬" }, { "input": "timings", "output": "â žâ Šâ â ¬â Ž" }, { "input": "timorous", "output": "â žâ Šâ â •⠗⠳⠎" }, { "input": "timorously", "output": "â žâ Šâ â •⠗⠳⠎⠇⠽" }, { "input": "timpani", "output": "â žâ Šâ â â â â Š" }, { "input": "timpanist", "output": "â žâ Šâ â â â â Šâ Œ" }, { "input": "timpanists", "output": "â žâ Šâ â â â â Šâ Œâ Ž" }, { "input": "tin", "output": "â žâ ”" }, { "input": "tincture", "output": "⠞⠔⠉⠞⠥⠗⠑" }, { "input": "tinctured", "output": "⠞⠔⠉⠞⠥⠗⠫" }, { "input": "tinctures", "output": "⠞⠔⠉⠞⠥⠗⠑⠎" }, { "input": "tincturing", "output": "⠞⠔⠉⠞⠥⠗⠬" }, { "input": "tinder", "output": "⠞⠔⠙⠻" }, { "input": "tinderbox", "output": "⠞⠔⠙⠻⠃⠕⠭" }, { "input": "tinderboxes", "output": "⠞⠔⠙⠻⠃⠕⠭⠑⠎" }, { "input": "tine", "output": "⠞⠔⠑" }, { "input": "tines", "output": "⠞⠔⠑⠎" }, { "input": "tinfoil", "output": "⠞⠔⠋⠕⠊⠇" }, { "input": "ting", "output": "â žâ ¬" }, { "input": "tinge", "output": "⠞⠬⠑" }, { "input": "tinged", "output": "⠞⠬⠫" }, { "input": "tingeing", "output": "⠞⠬⠑⠬" }, { "input": "tinges", "output": "⠞⠬⠑⠎" }, { "input": "tinging", "output": "⠞⠬⠬" }, { "input": "tingle", "output": "⠞⠬⠇⠑" }, { "input": "tingled", "output": "⠞⠬⠇⠫" }, { "input": "tingles", "output": "⠞⠬⠇⠑⠎" }, { "input": "tinglier", "output": "⠞⠬⠇⠊⠻" }, { "input": "tingliest", "output": "⠞⠬⠇⠊⠑⠌" }, { "input": "tingling", "output": "⠞⠬⠇⠬" }, { "input": "tinglings", "output": "⠞⠬⠇⠬⠎" }, { "input": "tingly", "output": "⠞⠬⠇⠽" }, { "input": "tings", "output": "⠞⠬⠎" }, { "input": "tinier", "output": "⠞⠔⠊⠻" }, { "input": "tiniest", "output": "⠞⠔⠊⠑⠌" }, { "input": "tinker", "output": "⠞⠔⠅⠻" }, { "input": "tinkered", "output": "⠞⠔⠅⠻⠫" }, { "input": "tinkering", "output": "⠞⠔⠅⠻⠬" }, { "input": "tinkers", "output": "⠞⠔⠅⠻⠎" }, { "input": "tinkle", "output": "⠞⠔⠅⠇⠑" }, { "input": "tinkled", "output": "⠞⠔⠅⠇⠫" }, { "input": "tinkles", "output": "⠞⠔⠅⠇⠑⠎" }, { "input": "tinkling", "output": "⠞⠔⠅⠇⠬" }, { "input": "tinned", "output": "â žâ ”â â «" }, { "input": "tinnier", "output": "â žâ ”â â Šâ »" }, { "input": "tinniest", "output": "â žâ ”â â Šâ ‘â Œ" }, { "input": "tinning", "output": "â žâ ”â â ¬" }, { "input": "tinny", "output": "â žâ ”â â ½" }, { "input": "tins", "output": "⠞⠔⠎" }, { "input": "tinsel", "output": "⠞⠔⠎⠑⠇" }, { "input": "tinseled", "output": "⠞⠔⠎⠑⠇⠫" }, { "input": "tinseling", "output": "⠞⠔⠎⠑⠇⠬" }, { "input": "tinselled", "output": "⠞⠔⠎⠑⠇⠇⠫" }, { "input": "tinselling", "output": "⠞⠔⠎⠑⠇⠇⠬" }, { "input": "tinsels", "output": "⠞⠔⠎⠑⠇⠎" }, { "input": "tinsmith", "output": "⠞⠔⠎â â Šâ ¹" }, { "input": "tinsmiths", "output": "⠞⠔⠎â â Šâ ¹â Ž" }, { "input": "tint", "output": "⠞⠔⠞" }, { "input": "tinted", "output": "⠞⠔⠞⠫" }, { "input": "tinting", "output": "⠞⠔⠞⠬" }, { "input": "tintinnabulation", "output": "⠞⠔⠞⠔â â â ƒâ ¥â ‡â â °â " }, { "input": "tintinnabulations", "output": "⠞⠔⠞⠔â â â ƒâ ¥â ‡â â °â â Ž" }, { "input": "tints", "output": "⠞⠔⠞⠎" }, { "input": "tiny", "output": "⠞⠔⠽" }, { "input": "tip", "output": "â žâ Šâ " }, { "input": "tipi", "output": "â žâ Šâ â Š" }, { "input": "tipis", "output": "â žâ Šâ â Šâ Ž" }, { "input": "tipped", "output": "â žâ Šâ â â «" }, { "input": "tipper", "output": "â žâ Šâ â â »" }, { "input": "tippers", "output": "â žâ Šâ â â »â Ž" }, { "input": "tipping", "output": "â žâ Šâ â â ¬" }, { "input": "tipple", "output": "â žâ Šâ â â ‡â ‘" }, { "input": "tippled", "output": "â žâ Šâ â â ‡â «" }, { "input": "tippler", "output": "â žâ Šâ â â ‡â »" }, { "input": "tipplers", "output": "â žâ Šâ â â ‡â »â Ž" }, { "input": "tipples", "output": "â žâ Šâ â â ‡â ‘â Ž" }, { "input": "tippling", "output": "â žâ Šâ â â ‡â ¬" }, { "input": "tips", "output": "â žâ Šâ â Ž" }, { "input": "tipsier", "output": "â žâ Šâ â Žâ Šâ »" }, { "input": "tipsiest", "output": "â žâ Šâ â Žâ Šâ ‘â Œ" }, { "input": "tipsily", "output": "â žâ Šâ â Žâ Šâ ‡â ½" }, { "input": "tipster", "output": "â žâ Šâ â Œâ »" }, { "input": "tipsters", "output": "â žâ Šâ â Œâ »â Ž" }, { "input": "tipsy", "output": "â žâ Šâ â Žâ ½" }, { "input": "tiptoe", "output": "â žâ Šâ â žâ •â ‘" }, { "input": "tiptoed", "output": "â žâ Šâ â žâ •â «" }, { "input": "tiptoeing", "output": "â žâ Šâ â žâ •â ‘â ¬" }, { "input": "tiptoes", "output": "â žâ Šâ â žâ •â ‘â Ž" }, { "input": "tiptop", "output": "â žâ Šâ â žâ •â " }, { "input": "tiptops", "output": "â žâ Šâ â žâ •â â Ž" }, { "input": "tirade", "output": "â žâ Šâ —â â ™â ‘" }, { "input": "tirades", "output": "â žâ Šâ —â â ™â ‘â Ž" }, { "input": "tire", "output": "â žâ Šâ —â ‘" }, { "input": "tired", "output": "â žâ Šâ —â «" }, { "input": "tireder", "output": "â žâ Šâ —â «â »" }, { "input": "tiredest", "output": "â žâ Šâ —â «â ‘â Œ" }, { "input": "tiredness", "output": "â žâ Šâ —â «â °â Ž" }, { "input": "tireless", "output": "⠞⠊⠗⠑⠨⠎" }, { "input": "tirelessly", "output": "⠞⠊⠗⠑⠨⠎⠇⠽" }, { "input": "tirelessness", "output": "⠞⠊⠗⠑⠨⠎⠰⠎" }, { "input": "tires", "output": "â žâ Šâ —â ‘â Ž" }, { "input": "tiresome", "output": "â žâ Šâ —â ‘â â Ž" }, { "input": "tiresomely", "output": "â žâ Šâ —â ‘â â Žâ ‡â ½" }, { "input": "tiresomeness", "output": "â žâ Šâ —â ‘â â Žâ °â Ž" }, { "input": "tiring", "output": "â žâ Šâ —â ¬" }, { "input": "tiro", "output": "â žâ Šâ —â •" }, { "input": "tiros", "output": "â žâ Šâ —â •â Ž" }, { "input": "tissue", "output": "⠞⠊⠎⠎⠥⠑" }, { "input": "tissues", "output": "⠞⠊⠎⠎⠥⠑⠎" }, { "input": "tit", "output": "â žâ Šâ ž" }, { "input": "titan", "output": "â žâ Šâ žâ â " }, { "input": "titanic", "output": "â žâ Šâ žâ â â Šâ ‰" }, { "input": "titanium", "output": "â žâ Šâ žâ â â Šâ ¥â " }, { "input": "titans", "output": "â žâ Šâ žâ â â Ž" }, { "input": "titbit", "output": "⠞⠊⠞⠃⠊⠞" }, { "input": "titbits", "output": "⠞⠊⠞⠃⠊⠞⠎" }, { "input": "tithe", "output": "â žâ Šâ ®" }, { "input": "tithed", "output": "⠞⠊⠮⠙" }, { "input": "tithes", "output": "⠞⠊⠮⠎" }, { "input": "tithing", "output": "⠞⠊⠹⠬" }, { "input": "titillate", "output": "⠞⠊⠞⠊⠇⠇â â žâ ‘" }, { "input": "titillated", "output": "⠞⠊⠞⠊⠇⠇â â žâ «" }, { "input": "titillates", "output": "⠞⠊⠞⠊⠇⠇â â žâ ‘â Ž" }, { "input": "titillating", "output": "⠞⠊⠞⠊⠇⠇â â žâ ¬" }, { "input": "titillation", "output": "⠞⠊⠞⠊⠇⠇â â °â " }, { "input": "title", "output": "⠞⠊⠞⠇⠑" }, { "input": "titled", "output": "⠞⠊⠞⠇⠫" }, { "input": "titles", "output": "⠞⠊⠞⠇⠑⠎" }, { "input": "titling", "output": "⠞⠊⠞⠇⠬" }, { "input": "titmice", "output": "â žâ Šâ žâ â Šâ ‰â ‘" }, { "input": "titmouse", "output": "â žâ Šâ žâ â ³â Žâ ‘" }, { "input": "tits", "output": "â žâ Šâ žâ Ž" }, { "input": "titter", "output": "â žâ Šâ žâ žâ »" }, { "input": "tittered", "output": "⠞⠊⠞⠞⠻⠫" }, { "input": "tittering", "output": "⠞⠊⠞⠞⠻⠬" }, { "input": "titters", "output": "⠞⠊⠞⠞⠻⠎" }, { "input": "tittle", "output": "⠞⠊⠞⠞⠇⠑" }, { "input": "tittles", "output": "⠞⠊⠞⠞⠇⠑⠎" }, { "input": "titular", "output": "⠞⠊⠞⠥⠇⠜" }, { "input": "tizzies", "output": "⠞⠊⠵⠵⠊⠑⠎" }, { "input": "tizzy", "output": "⠞⠊⠵⠵⠽" }, { "input": "to", "output": "â žâ •" }, { "input": "toad", "output": "â žâ •â â ™" }, { "input": "toadied", "output": "â žâ •â â ™â Šâ «" }, { "input": "toadies", "output": "â žâ •â â ™â Šâ ‘â Ž" }, { "input": "toads", "output": "â žâ •â â ™â Ž" }, { "input": "toadstool", "output": "â žâ •â â ™â Œâ •â •â ‡" }, { "input": "toadstools", "output": "â žâ •â â ™â Œâ •⠕⠇⠎" }, { "input": "toady", "output": "â žâ •â â ™â ½" }, { "input": "toadying", "output": "â žâ •â â ™â ½â ¬" }, { "input": "toast", "output": "â žâ •â â Œ" }, { "input": "toasted", "output": "â žâ •â â Œâ «" }, { "input": "toaster", "output": "â žâ •â â Œâ »" }, { "input": "toasters", "output": "â žâ •â â Œâ »â Ž" }, { "input": "toastier", "output": "â žâ •â â Œâ Šâ »" }, { "input": "toastiest", "output": "â žâ •â â Œâ Šâ ‘â Œ" }, { "input": "toasting", "output": "â žâ •â â Œâ ¬" }, { "input": "toastmaster", "output": "â žâ •â â Œâ â â Œâ »" }, { "input": "toastmasters", "output": "â žâ •â â Œâ â â Œâ »â Ž" }, { "input": "toasts", "output": "â žâ •â â Œâ Ž" }, { "input": "toasty", "output": "â žâ •â â Œâ ½" }, { "input": "tobacco", "output": "â žâ •â ƒâ â ’â •" }, { "input": "tobaccoes", "output": "â žâ •â ƒâ â ’â •â ‘â Ž" }, { "input": "tobacconist", "output": "â žâ •â ƒâ â ’â •â â Šâ Œ" }, { "input": "tobacconists", "output": "â žâ •â ƒâ â ’â •â â Šâ Œâ Ž" }, { "input": "tobaccos", "output": "â žâ •â ƒâ â ’â •â Ž" }, { "input": "toboggan", "output": "⠞⠕⠃⠕⠶â â " }, { "input": "tobogganed", "output": "⠞⠕⠃⠕⠶â â â «" }, { "input": "tobogganing", "output": "⠞⠕⠃⠕⠶â â â ¬" }, { "input": "toboggans", "output": "⠞⠕⠃⠕⠶â â â Ž" }, { "input": "tocsin", "output": "⠞⠕⠉⠎⠔" }, { "input": "tocsins", "output": "⠞⠕⠉⠎⠔⠎" }, { "input": "today", "output": "â žâ ™" }, { "input": "toddies", "output": "⠞⠕⠙⠙⠊⠑⠎" }, { "input": "toddle", "output": "⠞⠕⠙⠙⠇⠑" }, { "input": "toddled", "output": "⠞⠕⠙⠙⠇⠫" }, { "input": "toddler", "output": "⠞⠕⠙⠙⠇⠻" }, { "input": "toddlers", "output": "⠞⠕⠙⠙⠇⠻⠎" }, { "input": "toddles", "output": "⠞⠕⠙⠙⠇⠑⠎" }, { "input": "toddling", "output": "⠞⠕⠙⠙⠇⠬" }, { "input": "toddy", "output": "⠞⠕⠙⠙⠽" }, { "input": "toe", "output": "â žâ •â ‘" }, { "input": "toed", "output": "â žâ •â «" }, { "input": "toehold", "output": "⠞⠕⠑⠓⠕⠇⠙" }, { "input": "toeholds", "output": "⠞⠕⠑⠓⠕⠇⠙⠎" }, { "input": "toeing", "output": "â žâ •â ‘â ¬" }, { "input": "toenail", "output": "â žâ •â ‘â â â Šâ ‡" }, { "input": "toenails", "output": "â žâ •â ‘â â â Šâ ‡â Ž" }, { "input": "toes", "output": "â žâ •â ‘â Ž" }, { "input": "toffee", "output": "â žâ ·â ‹â ‘â ‘" }, { "input": "toffees", "output": "â žâ ·â ‹â ‘â ‘â Ž" }, { "input": "toffies", "output": "â žâ ·â ‹â Šâ ‘â Ž" }, { "input": "toffy", "output": "â žâ ·â ‹â ½" }, { "input": "tofu", "output": "â žâ ·â ¥" }, { "input": "tog", "output": "â žâ •â ›" }, { "input": "toga", "output": "â žâ •â ›â " }, { "input": "togae", "output": "â žâ •â ›â â ‘" }, { "input": "togas", "output": "â žâ •â ›â â Ž" }, { "input": "together", "output": "⠞⠛⠗" }, { "input": "togetherness", "output": "⠞⠛⠗⠰⠎" }, { "input": "toggle", "output": "⠞⠕⠶⠇⠑" }, { "input": "toggled", "output": "⠞⠕⠶⠇⠫" }, { "input": "toggles", "output": "⠞⠕⠶⠇⠑⠎" }, { "input": "toggling", "output": "⠞⠕⠶⠇⠬" }, { "input": "togs", "output": "⠞⠕⠛⠎" }, { "input": "toil", "output": "â žâ •â Šâ ‡" }, { "input": "toiled", "output": "⠞⠕⠊⠇⠫" }, { "input": "toiler", "output": "⠞⠕⠊⠇⠻" }, { "input": "toilers", "output": "⠞⠕⠊⠇⠻⠎" }, { "input": "toilet", "output": "⠞⠕⠊⠇⠑⠞" }, { "input": "toileted", "output": "⠞⠕⠊⠇⠑⠞⠫" }, { "input": "toileting", "output": "⠞⠕⠊⠇⠑⠞⠬" }, { "input": "toiletries", "output": "⠞⠕⠊⠇⠑⠞⠗⠊⠑⠎" }, { "input": "toiletry", "output": "⠞⠕⠊⠇⠑⠞⠗⠽" }, { "input": "toilets", "output": "⠞⠕⠊⠇⠑⠞⠎" }, { "input": "toilette", "output": "⠞⠕⠊⠇⠑⠞⠞⠑" }, { "input": "toiling", "output": "⠞⠕⠊⠇⠬" }, { "input": "toils", "output": "⠞⠕⠊⠇⠎" }, { "input": "toilsome", "output": "â žâ •â Šâ ‡â â Ž" }, { "input": "toke", "output": "â žâ •â …â ‘" }, { "input": "toked", "output": "â žâ •â …â «" }, { "input": "token", "output": "â žâ •â …â ¢" }, { "input": "tokenism", "output": "⠞⠕⠅⠢⠊⠎â " }, { "input": "tokens", "output": "⠞⠕⠅⠢⠎" }, { "input": "tokes", "output": "â žâ •â …â ‘â Ž" }, { "input": "toking", "output": "â žâ •â …â ¬" }, { "input": "told", "output": "⠞⠕⠇⠙" }, { "input": "tolerable", "output": "⠞⠕⠇⠻â â ƒâ ‡â ‘" }, { "input": "tolerably", "output": "⠞⠕⠇⠻â â ƒâ ‡â ½" }, { "input": "tolerance", "output": "⠞⠕⠇⠻⠨⠑" }, { "input": "tolerances", "output": "⠞⠕⠇⠻⠨⠑⠎" }, { "input": "tolerant", "output": "⠞⠕⠇⠻â â â ž" }, { "input": "tolerantly", "output": "⠞⠕⠇⠻â â â žâ ‡â ½" }, { "input": "tolerate", "output": "⠞⠕⠇⠻â â žâ ‘" }, { "input": "tolerated", "output": "⠞⠕⠇⠻â â žâ «" }, { "input": "tolerates", "output": "⠞⠕⠇⠻â â žâ ‘â Ž" }, { "input": "tolerating", "output": "⠞⠕⠇⠻â â žâ ¬" }, { "input": "toleration", "output": "⠞⠕⠇⠻â â °â " }, { "input": "toll", "output": "⠞⠕⠇⠇" }, { "input": "tollbooth", "output": "⠞⠕⠇⠇⠃⠕⠕⠹" }, { "input": "tollbooths", "output": "⠞⠕⠇⠇⠃⠕⠕⠹⠎" }, { "input": "tolled", "output": "⠞⠕⠇⠇⠫" }, { "input": "tollgate", "output": "⠞⠕⠇⠇⠛â â žâ ‘" }, { "input": "tollgates", "output": "⠞⠕⠇⠇⠛â â žâ ‘â Ž" }, { "input": "tolling", "output": "⠞⠕⠇⠇⠬" }, { "input": "tolls", "output": "⠞⠕⠇⠇⠎" }, { "input": "tom", "output": "â žâ •â " }, { "input": "tomahawk", "output": "â žâ •â â â “â â ºâ …" }, { "input": "tomahawked", "output": "â žâ •â â â “â â ºâ …â «" }, { "input": "tomahawking", "output": "â žâ •â â â “â â ºâ …â ¬" }, { "input": "tomahawks", "output": "â žâ •â â â “â â ºâ …â Ž" }, { "input": "tomato", "output": "â žâ •â â â žâ •" }, { "input": "tomatoes", "output": "â žâ •â â â žâ •â ‘â Ž" }, { "input": "tomb", "output": "â žâ •â â ƒ" }, { "input": "tombed", "output": "â žâ •â â ƒâ «" }, { "input": "tombing", "output": "â žâ •â â ƒâ ¬" }, { "input": "tomboy", "output": "â žâ •â â ƒâ •â ½" }, { "input": "tomboys", "output": "â žâ •â â ƒâ •⠽⠎" }, { "input": "tombs", "output": "â žâ •â â ƒâ Ž" }, { "input": "tombstone", "output": "â žâ •â â ƒâ Œâ â •" }, { "input": "tombstones", "output": "â žâ •â â ƒâ Œâ â •â Ž" }, { "input": "tomcat", "output": "â žâ •â â ‰â â ž" }, { "input": "tomcats", "output": "â žâ •â â ‰â â žâ Ž" }, { "input": "tome", "output": "â žâ •â â ‘" }, { "input": "tomes", "output": "â žâ •â â ‘â Ž" }, { "input": "tomfooleries", "output": "â žâ •â â ‹â •⠕⠇⠻⠊⠑⠎" }, { "input": "tomfoolery", "output": "â žâ •â â ‹â •⠕⠇⠻⠽" }, { "input": "tomorrow", "output": "â žâ " }, { "input": "tomorrows", "output": "â žâ â Ž" }, { "input": "toms", "output": "â žâ •â â Ž" }, { "input": "ton", "output": "â žâ •â " }, { "input": "tonal", "output": "â žâ •â â â ‡" }, { "input": "tonalities", "output": "â žâ •â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "tonality", "output": "â žâ •â â â ‡â °â ½" }, { "input": "tone", "output": "â žâ â •" }, { "input": "toned", "output": "â žâ •â â «" }, { "input": "toneless", "output": "â žâ â •⠨⠎" }, { "input": "toner", "output": "â žâ •â â »" }, { "input": "tones", "output": "â žâ â •â Ž" }, { "input": "tong", "output": "â žâ °â ›" }, { "input": "tongs", "output": "⠞⠰⠛⠎" }, { "input": "tongue", "output": "⠞⠰⠛⠥⠑" }, { "input": "tongued", "output": "⠞⠰⠛⠥⠫" }, { "input": "tongues", "output": "⠞⠰⠛⠥⠑⠎" }, { "input": "tonguing", "output": "⠞⠰⠛⠥⠬" }, { "input": "tonic", "output": "â žâ •â â Šâ ‰" }, { "input": "tonics", "output": "â žâ •â â Šâ ‰â Ž" }, { "input": "tonier", "output": "â žâ •â â Šâ »" }, { "input": "toniest", "output": "â žâ •â â Šâ ‘â Œ" }, { "input": "tonight", "output": "â žâ " }, { "input": "toning", "output": "â žâ •â â ¬" }, { "input": "tonnage", "output": "â žâ •â â â â ›â ‘" }, { "input": "tonnages", "output": "â žâ •â â â â ›â ‘â Ž" }, { "input": "tonne", "output": "â žâ •â â â ‘" }, { "input": "tonnes", "output": "â žâ •â â â ‘â Ž" }, { "input": "tons", "output": "â žâ •â â Ž" }, { "input": "tonsil", "output": "â žâ •â â Žâ Šâ ‡" }, { "input": "tonsillectomies", "output": "â žâ •â â Žâ Šâ ‡â ‡â ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "tonsillectomy", "output": "â žâ •â â Žâ Šâ ‡â ‡â ‘⠉⠞⠕â â ½" }, { "input": "tonsillitis", "output": "â žâ •â â Žâ Šâ ‡â ‡â Šâ žâ Šâ Ž" }, { "input": "tonsils", "output": "â žâ •â â Žâ Šâ ‡â Ž" }, { "input": "tonsorial", "output": "â žâ •â â Žâ •â —â Šâ â ‡" }, { "input": "tonsure", "output": "â žâ •â â Žâ ¥â —â ‘" }, { "input": "tonsured", "output": "â žâ •â â Žâ ¥â —â «" }, { "input": "tonsures", "output": "â žâ •â â Žâ ¥â —â ‘â Ž" }, { "input": "tonsuring", "output": "â žâ •â â Žâ ¥â —â ¬" }, { "input": "tony", "output": "â žâ •â â ½" }, { "input": "too", "output": "â žâ •â •" }, { "input": "took", "output": "â žâ •â •â …" }, { "input": "tool", "output": "â žâ •â •â ‡" }, { "input": "toolbar", "output": "⠞⠕⠕⠇⠃⠜" }, { "input": "toolbox", "output": "⠞⠕⠕⠇⠃⠕⠭" }, { "input": "toolboxes", "output": "⠞⠕⠕⠇⠃⠕⠭⠑⠎" }, { "input": "tooled", "output": "⠞⠕⠕⠇⠫" }, { "input": "tooling", "output": "⠞⠕⠕⠇⠬" }, { "input": "toolkit", "output": "⠞⠕⠕⠇⠅⠊⠞" }, { "input": "tools", "output": "⠞⠕⠕⠇⠎" }, { "input": "toot", "output": "â žâ •â •â ž" }, { "input": "tooted", "output": "â žâ •â •â žâ «" }, { "input": "tooth", "output": "â žâ •â •â ¹" }, { "input": "toothache", "output": "â žâ •â •â ¹â â ¡â ‘" }, { "input": "toothaches", "output": "â žâ •â •â ¹â â ¡â ‘â Ž" }, { "input": "toothbrush", "output": "⠞⠕⠕⠹⠃⠗⠥⠩" }, { "input": "toothbrushes", "output": "⠞⠕⠕⠹⠃⠗⠥⠩⠑⠎" }, { "input": "toothed", "output": "⠞⠕⠕⠮⠙" }, { "input": "toothier", "output": "⠞⠕⠕⠹⠊⠻" }, { "input": "toothiest", "output": "⠞⠕⠕⠹⠊⠑⠌" }, { "input": "toothless", "output": "⠞⠕⠕⠹⠨⠎" }, { "input": "toothpaste", "output": "â žâ •â •â ¹â â â Œâ ‘" }, { "input": "toothpastes", "output": "â žâ •â •â ¹â â â Œâ ‘â Ž" }, { "input": "toothpick", "output": "â žâ •â •â ¹â â Šâ ‰â …" }, { "input": "toothpicks", "output": "â žâ •â •â ¹â â Šâ ‰â …â Ž" }, { "input": "toothsome", "output": "â žâ •â •â ¹â â Ž" }, { "input": "toothy", "output": "⠞⠕⠕⠹⠽" }, { "input": "tooting", "output": "â žâ •â •â žâ ¬" }, { "input": "toots", "output": "â žâ •â •â žâ Ž" }, { "input": "top", "output": "â žâ •â " }, { "input": "topaz", "output": "â žâ •â â â µ" }, { "input": "topazes", "output": "â žâ •â â â µâ ‘â Ž" }, { "input": "topcoat", "output": "â žâ •â â ‰â •â â ž" }, { "input": "topcoats", "output": "â žâ •â â ‰â •â â žâ Ž" }, { "input": "topic", "output": "â žâ •â â Šâ ‰" }, { "input": "topical", "output": "â žâ •â â Šâ ‰â â ‡" }, { "input": "topically", "output": "â žâ •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "topics", "output": "â žâ •â â Šâ ‰â Ž" }, { "input": "topknot", "output": "â žâ •â â …â â •â ž" }, { "input": "topknots", "output": "â žâ •â â …â â •â žâ Ž" }, { "input": "topless", "output": "â žâ •â â ¨â Ž" }, { "input": "topmast", "output": "â žâ •â â â â Œ" }, { "input": "topmasts", "output": "â žâ •â â â â Œâ Ž" }, { "input": "topmost", "output": "â žâ •â â â •â Œ" }, { "input": "topographer", "output": "â žâ •â â •⠛⠗â â â “â »" }, { "input": "topographers", "output": "â žâ •â â •⠛⠗â â â “⠻⠎" }, { "input": "topographic", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‰" }, { "input": "topographical", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "topographies", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "topography", "output": "â žâ •â â •⠛⠗â â â “â ½" }, { "input": "topological", "output": "â žâ •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "topologically", "output": "â žâ •â â •⠇⠕⠛⠊⠉â â ‡â ‡â ½" }, { "input": "topology", "output": "â žâ •â â •⠇⠕⠛⠽" }, { "input": "topped", "output": "â žâ •â â â «" }, { "input": "topping", "output": "â žâ •â â â ¬" }, { "input": "toppings", "output": "â žâ •â â â ¬â Ž" }, { "input": "topple", "output": "â žâ •â â â ‡â ‘" }, { "input": "toppled", "output": "â žâ •â â â ‡â «" }, { "input": "topples", "output": "â žâ •â â â ‡â ‘â Ž" }, { "input": "toppling", "output": "â žâ •â â â ‡â ¬" }, { "input": "tops", "output": "â žâ •â â Ž" }, { "input": "topsail", "output": "â žâ •â â Žâ â Šâ ‡" }, { "input": "topsails", "output": "â žâ •â â Žâ â Šâ ‡â Ž" }, { "input": "topside", "output": "â žâ •â â Žâ Šâ ™â ‘" }, { "input": "topsides", "output": "â žâ •â â Žâ Šâ ™â ‘â Ž" }, { "input": "topsoil", "output": "â žâ •â â Žâ •â Šâ ‡" }, { "input": "toque", "output": "⠞⠕⠟⠥⠑" }, { "input": "toques", "output": "⠞⠕⠟⠥⠑⠎" }, { "input": "tor", "output": "â žâ •â —" }, { "input": "torch", "output": "â žâ •â —â ¡" }, { "input": "torched", "output": "â žâ •â —â ¡â «" }, { "input": "torches", "output": "â žâ •â —â ¡â ‘â Ž" }, { "input": "torching", "output": "â žâ •â —â ¡â ¬" }, { "input": "torchlight", "output": "⠞⠕⠗⠡⠇⠊⠣⠞" }, { "input": "tore", "output": "â žâ •â —â ‘" }, { "input": "toreador", "output": "â žâ •â —â ‘â â ™â •â —" }, { "input": "toreadors", "output": "â žâ •â —â ‘â â ™â •â —â Ž" }, { "input": "torment", "output": "â žâ •â —â °â ž" }, { "input": "tormented", "output": "â žâ •â —â °â žâ «" }, { "input": "tormenter", "output": "â žâ •â —â °â žâ »" }, { "input": "tormenters", "output": "⠞⠕⠗⠰⠞⠻⠎" }, { "input": "tormenting", "output": "â žâ •â —â °â žâ ¬" }, { "input": "tormentor", "output": "â žâ •â —â °â žâ •â —" }, { "input": "tormentors", "output": "â žâ •â —â °â žâ •â —â Ž" }, { "input": "torments", "output": "â žâ •â —â °â žâ Ž" }, { "input": "torn", "output": "â žâ •â —â " }, { "input": "tornado", "output": "â žâ •â —â â â ™â •" }, { "input": "tornadoes", "output": "â žâ •â —â â â ™â •â ‘â Ž" }, { "input": "tornados", "output": "â žâ •â —â â â ™â •â Ž" }, { "input": "torpedo", "output": "â žâ •â —â â «â •" }, { "input": "torpedoed", "output": "â žâ •â —â â «â •â «" }, { "input": "torpedoes", "output": "â žâ •â —â â «â •â ‘â Ž" }, { "input": "torpedoing", "output": "â žâ •â —â â «â •â ¬" }, { "input": "torpedos", "output": "â žâ •â —â â «â •â Ž" }, { "input": "torpid", "output": "â žâ •â —â â Šâ ™" }, { "input": "torpidity", "output": "â žâ •â —â â Šâ ™â °â ½" }, { "input": "torpor", "output": "â žâ •â —â â •â —" }, { "input": "torque", "output": "⠞⠕⠗⠟⠥⠑" }, { "input": "torqued", "output": "⠞⠕⠗⠟⠥⠫" }, { "input": "torques", "output": "⠞⠕⠗⠟⠥⠑⠎" }, { "input": "torquing", "output": "⠞⠕⠗⠟⠥⠬" }, { "input": "torrent", "output": "⠞⠕⠗⠗⠢⠞" }, { "input": "torrential", "output": "⠞⠕⠗⠗⠢⠞⠊â â ‡" }, { "input": "torrents", "output": "⠞⠕⠗⠗⠢⠞⠎" }, { "input": "torrid", "output": "â žâ •â —â —â Šâ ™" }, { "input": "torrider", "output": "⠞⠕⠗⠗⠊⠙⠻" }, { "input": "torridest", "output": "⠞⠕⠗⠗⠊⠙⠑⠌" }, { "input": "tors", "output": "â žâ •â —â Ž" }, { "input": "torsi", "output": "â žâ •â —â Žâ Š" }, { "input": "torsion", "output": "â žâ •â —â ¨â " }, { "input": "torso", "output": "â žâ •â —â Žâ •" }, { "input": "torsos", "output": "â žâ •â —â Žâ •â Ž" }, { "input": "tort", "output": "â žâ •â —â ž" }, { "input": "torte", "output": "â žâ •â —â žâ ‘" }, { "input": "tortes", "output": "â žâ •â —â žâ ‘â Ž" }, { "input": "tortilla", "output": "⠞⠕⠗⠞⠊⠇⠇â " }, { "input": "tortillas", "output": "⠞⠕⠗⠞⠊⠇⠇â â Ž" }, { "input": "tortoise", "output": "â žâ •â —â žâ •â Šâ Žâ ‘" }, { "input": "tortoises", "output": "â žâ •â —â žâ •â Šâ Žâ ‘â Ž" }, { "input": "tortoiseshell", "output": "⠞⠕⠗⠞⠕⠊⠎⠑⠩⠑⠇⠇" }, { "input": "tortoiseshells", "output": "⠞⠕⠗⠞⠕⠊⠎⠑⠩⠑⠇⠇⠎" }, { "input": "torts", "output": "â žâ •â —â žâ Ž" }, { "input": "tortuous", "output": "⠞⠕⠗⠞⠥⠳⠎" }, { "input": "tortuously", "output": "⠞⠕⠗⠞⠥⠳⠎⠇⠽" }, { "input": "torture", "output": "⠞⠕⠗⠞⠥⠗⠑" }, { "input": "tortured", "output": "⠞⠕⠗⠞⠥⠗⠫" }, { "input": "torturer", "output": "⠞⠕⠗⠞⠥⠗⠻" }, { "input": "torturers", "output": "⠞⠕⠗⠞⠥⠗⠻⠎" }, { "input": "tortures", "output": "⠞⠕⠗⠞⠥⠗⠑⠎" }, { "input": "torturing", "output": "⠞⠕⠗⠞⠥⠗⠬" }, { "input": "torus", "output": "⠞⠕⠗⠥⠎" }, { "input": "toss", "output": "â žâ •â Žâ Ž" }, { "input": "tossed", "output": "â žâ •â Žâ Žâ «" }, { "input": "tosses", "output": "â žâ •â Žâ Žâ ‘â Ž" }, { "input": "tossing", "output": "â žâ •â Žâ Žâ ¬" }, { "input": "tossup", "output": "â žâ •â Žâ Žâ ¥â " }, { "input": "tossups", "output": "â žâ •â Žâ Žâ ¥â â Ž" }, { "input": "tost", "output": "â žâ •â Œ" }, { "input": "tot", "output": "â žâ •â ž" }, { "input": "total", "output": "â žâ •â žâ â ‡" }, { "input": "totaled", "output": "â žâ •â žâ â ‡â «" }, { "input": "totaling", "output": "â žâ •â žâ â ‡â ¬" }, { "input": "totalitarian", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â " }, { "input": "totalitarianism", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "totalitarians", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â â Ž" }, { "input": "totalities", "output": "â žâ •â žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "totality", "output": "â žâ •â žâ â ‡â °â ½" }, { "input": "totalled", "output": "â žâ •â žâ â ‡â ‡â «" }, { "input": "totalling", "output": "â žâ •â žâ â ‡â ‡â ¬" }, { "input": "totally", "output": "â žâ •â žâ â ‡â ‡â ½" }, { "input": "totals", "output": "â žâ •â žâ â ‡â Ž" }, { "input": "tote", "output": "â žâ •â žâ ‘" }, { "input": "toted", "output": "â žâ •â žâ «" }, { "input": "totem", "output": "â žâ •â žâ ‘â " }, { "input": "totemic", "output": "â žâ •â žâ ‘â â Šâ ‰" }, { "input": "totems", "output": "â žâ •â žâ ‘â â Ž" }, { "input": "totes", "output": "â žâ •â žâ ‘â Ž" }, { "input": "toting", "output": "â žâ •â žâ ¬" }, { "input": "tots", "output": "â žâ •â žâ Ž" }, { "input": "totted", "output": "â žâ •â žâ žâ «" }, { "input": "totter", "output": "â žâ •â žâ žâ »" }, { "input": "tottered", "output": "⠞⠕⠞⠞⠻⠫" }, { "input": "tottering", "output": "⠞⠕⠞⠞⠻⠬" }, { "input": "totters", "output": "⠞⠕⠞⠞⠻⠎" }, { "input": "totting", "output": "â žâ •â žâ žâ ¬" }, { "input": "toucan", "output": "⠞⠳⠉â â " }, { "input": "toucans", "output": "⠞⠳⠉â â â Ž" }, { "input": "touch", "output": "⠞⠳⠡" }, { "input": "touchdown", "output": "⠞⠳⠡⠙⠪â " }, { "input": "touchdowns", "output": "⠞⠳⠡⠙⠪â â Ž" }, { "input": "touched", "output": "⠞⠳⠡⠫" }, { "input": "touches", "output": "⠞⠳⠡⠑⠎" }, { "input": "touchier", "output": "⠞⠳⠡⠊⠻" }, { "input": "touchiest", "output": "⠞⠳⠡⠊⠑⠌" }, { "input": "touching", "output": "⠞⠳⠡⠬" }, { "input": "touchingly", "output": "⠞⠳⠡⠬⠇⠽" }, { "input": "touchings", "output": "⠞⠳⠡⠬⠎" }, { "input": "touchstone", "output": "⠞⠳⠡⠌â â •" }, { "input": "touchstones", "output": "⠞⠳⠡⠌â â •â Ž" }, { "input": "touchy", "output": "⠞⠳⠡⠽" }, { "input": "touché", "output": "⠞⠳⠡⠠⠘⠻â â ˜â ‰" }, { "input": "tough", "output": "⠞⠳⠣" }, { "input": "toughen", "output": "⠞⠳⠣⠢" }, { "input": "toughened", "output": "⠞⠳⠣⠢⠫" }, { "input": "toughening", "output": "⠞⠳⠣⠢⠬" }, { "input": "toughens", "output": "⠞⠳⠣⠢⠎" }, { "input": "tougher", "output": "⠞⠳⠣⠻" }, { "input": "toughest", "output": "⠞⠳⠣⠑⠌" }, { "input": "toughly", "output": "⠞⠳⠣⠇⠽" }, { "input": "toughness", "output": "⠞⠳⠣⠰⠎" }, { "input": "toughs", "output": "⠞⠳⠣⠎" }, { "input": "toupee", "output": "â žâ ³â â ‘â ‘" }, { "input": "toupees", "output": "â žâ ³â â ‘â ‘â Ž" }, { "input": "tour", "output": "⠞⠳⠗" }, { "input": "toured", "output": "⠞⠳⠗⠫" }, { "input": "touring", "output": "⠞⠳⠗⠬" }, { "input": "tourism", "output": "⠞⠳⠗⠊⠎â " }, { "input": "tourist", "output": "⠞⠳⠗⠊⠌" }, { "input": "tourists", "output": "⠞⠳⠗⠊⠌⠎" }, { "input": "tourmaline", "output": "⠞⠳⠗â â â ‡â ”â ‘" }, { "input": "tournament", "output": "⠞⠳⠗â â â °â ž" }, { "input": "tournaments", "output": "⠞⠳⠗â â â °â žâ Ž" }, { "input": "tourney", "output": "⠞⠳⠗â â ‘â ½" }, { "input": "tourneys", "output": "⠞⠳⠗â â ‘⠽⠎" }, { "input": "tourniquet", "output": "⠞⠳⠗â â Šâ Ÿâ ¥â ‘â ž" }, { "input": "tourniquets", "output": "⠞⠳⠗â â Šâ Ÿâ ¥â ‘â žâ Ž" }, { "input": "tours", "output": "⠞⠳⠗⠎" }, { "input": "tousle", "output": "⠞⠳⠎⠇⠑" }, { "input": "tousled", "output": "⠞⠳⠎⠇⠫" }, { "input": "tousles", "output": "⠞⠳⠎⠇⠑⠎" }, { "input": "tousling", "output": "⠞⠳⠎⠇⠬" }, { "input": "tout", "output": "⠞⠳⠞" }, { "input": "touted", "output": "⠞⠳⠞⠫" }, { "input": "touting", "output": "⠞⠳⠞⠬" }, { "input": "touts", "output": "⠞⠳⠞⠎" }, { "input": "tow", "output": "â žâ ª" }, { "input": "toward", "output": "⠞⠪⠜⠙" }, { "input": "towards", "output": "⠞⠪⠜⠙⠎" }, { "input": "towed", "output": "⠞⠪⠫" }, { "input": "towel", "output": "⠞⠪⠑⠇" }, { "input": "toweled", "output": "⠞⠪⠑⠇⠫" }, { "input": "toweling", "output": "⠞⠪⠑⠇⠬" }, { "input": "towelings", "output": "⠞⠪⠑⠇⠬⠎" }, { "input": "towelled", "output": "⠞⠪⠑⠇⠇⠫" }, { "input": "towelling", "output": "⠞⠪⠑⠇⠇⠬" }, { "input": "towellings", "output": "⠞⠪⠑⠇⠇⠬⠎" }, { "input": "towels", "output": "⠞⠪⠑⠇⠎" }, { "input": "tower", "output": "⠞⠪⠻" }, { "input": "towered", "output": "⠞⠪⠻⠫" }, { "input": "towering", "output": "⠞⠪⠻⠬" }, { "input": "towers", "output": "⠞⠪⠻⠎" }, { "input": "towhead", "output": "⠞⠪⠓⠂⠙" }, { "input": "towheaded", "output": "⠞⠪⠓⠂⠙⠫" }, { "input": "towheads", "output": "⠞⠪⠓⠂⠙⠎" }, { "input": "towing", "output": "⠞⠪⠬" }, { "input": "town", "output": "â žâ ªâ " }, { "input": "townhouse", "output": "â žâ ªâ â “⠳⠎⠑" }, { "input": "townhouses", "output": "â žâ ªâ â “⠳⠎⠑⠎" }, { "input": "towns", "output": "â žâ ªâ â Ž" }, { "input": "townsfolk", "output": "â žâ ªâ â Žâ ‹â •⠇⠅" }, { "input": "township", "output": "â žâ ªâ â ©â Šâ " }, { "input": "townships", "output": "â žâ ªâ â ©â Šâ â Ž" }, { "input": "townsman", "output": "â žâ ªâ â Žâ â â " }, { "input": "townsmen", "output": "â žâ ªâ â Žâ â ¢" }, { "input": "townspeople", "output": "â žâ ªâ â Žâ â ‘â •â â ‡â ‘" }, { "input": "towpath", "output": "â žâ ªâ â â ¹" }, { "input": "towpaths", "output": "â žâ ªâ â â ¹â Ž" }, { "input": "tows", "output": "⠞⠪⠎" }, { "input": "toxemia", "output": "â žâ •â ­â ‘â â Šâ " }, { "input": "toxic", "output": "â žâ •â ­â Šâ ‰" }, { "input": "toxicity", "output": "⠞⠕⠭⠊⠉⠰⠽" }, { "input": "toxicologist", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠊⠌" }, { "input": "toxicologists", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠊⠌⠎" }, { "input": "toxicology", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠽" }, { "input": "toxin", "output": "â žâ •â ­â ”" }, { "input": "toxins", "output": "⠞⠕⠭⠔⠎" }, { "input": "toy", "output": "â žâ •â ½" }, { "input": "toyed", "output": "⠞⠕⠽⠫" }, { "input": "toying", "output": "⠞⠕⠽⠬" }, { "input": "toys", "output": "⠞⠕⠽⠎" }, { "input": "trace", "output": "â žâ —â â ‰â ‘" }, { "input": "traceable", "output": "â žâ —â â ‰â ‚⠃⠇⠑" }, { "input": "traced", "output": "â žâ —â â ‰â «" }, { "input": "tracer", "output": "â žâ —â â ‰â »" }, { "input": "traceries", "output": "â žâ —â â ‰â »â Šâ ‘â Ž" }, { "input": "tracers", "output": "â žâ —â â ‰â »â Ž" }, { "input": "tracery", "output": "â žâ —â â ‰â »â ½" }, { "input": "traces", "output": "â žâ —â â ‰â ‘â Ž" }, { "input": "trachea", "output": "â žâ —â â ¡â ‘â " }, { "input": "tracheae", "output": "â žâ —â â ¡â ‚â ‘" }, { "input": "tracheas", "output": "â žâ —â â ¡â ‚â Ž" }, { "input": "tracheotomies", "output": "â žâ —â â ¡â ‘â •â žâ •â â Šâ ‘â Ž" }, { "input": "tracheotomy", "output": "â žâ —â â ¡â ‘â •â žâ •â â ½" }, { "input": "tracing", "output": "â žâ —â â ‰â ¬" }, { "input": "tracings", "output": "â žâ —â â ‰â ¬â Ž" }, { "input": "track", "output": "â žâ —â â ‰â …" }, { "input": "tracked", "output": "â žâ —â â ‰â …â «" }, { "input": "tracker", "output": "â žâ —â â ‰â …â »" }, { "input": "trackers", "output": "â žâ —â â ‰â …⠻⠎" }, { "input": "tracking", "output": "â žâ —â â ‰â …â ¬" }, { "input": "tracks", "output": "â žâ —â â ‰â …â Ž" }, { "input": "tract", "output": "â žâ —â â ‰â ž" }, { "input": "tractable", "output": "â žâ —â â ‰â žâ â ƒâ ‡â ‘" }, { "input": "traction", "output": "â žâ —â â ‰â °â " }, { "input": "tractor", "output": "â žâ —â â ‰â žâ •â —" }, { "input": "tractors", "output": "â žâ —â â ‰â žâ •â —â Ž" }, { "input": "tracts", "output": "â žâ —â â ‰â žâ Ž" }, { "input": "trade", "output": "â žâ —â â ™â ‘" }, { "input": "traded", "output": "â žâ —â â ™â «" }, { "input": "trademark", "output": "â žâ —â â ™â ‘â â œâ …" }, { "input": "trademarked", "output": "â žâ —â â ™â ‘â â œâ …â «" }, { "input": "trademarking", "output": "â žâ —â â ™â ‘â â œâ …â ¬" }, { "input": "trademarks", "output": "â žâ —â â ™â ‘â â œâ …â Ž" }, { "input": "trader", "output": "â žâ —â â ™â »" }, { "input": "traders", "output": "â žâ —â â ™â »â Ž" }, { "input": "trades", "output": "â žâ —â â ™â ‘â Ž" }, { "input": "tradesman", "output": "â žâ —â â ™â ‘â Žâ â â " }, { "input": "tradesmen", "output": "â žâ —â â ™â ‘â Žâ â ¢" }, { "input": "trading", "output": "â žâ —â â ™â ¬" }, { "input": "tradition", "output": "â žâ —â â ™â Šâ °â " }, { "input": "traditional", "output": "â žâ —â â ™â Šâ °â â â ‡" }, { "input": "traditionalist", "output": "â žâ —â â ™â Šâ °â â â ‡â Šâ Œ" }, { "input": "traditionalists", "output": "â žâ —â â ™â Šâ °â â â ‡â Šâ Œâ Ž" }, { "input": "traditionally", "output": "â žâ —â â ™â Šâ °â â â ‡â ‡â ½" }, { "input": "traditions", "output": "â žâ —â â ™â Šâ °â â Ž" }, { "input": "traduce", "output": "â žâ —â â ™â ¥â ‰â ‘" }, { "input": "traduced", "output": "â žâ —â â ™â ¥â ‰â «" }, { "input": "traduces", "output": "â žâ —â â ™â ¥â ‰â ‘â Ž" }, { "input": "traducing", "output": "â žâ —â â ™â ¥â ‰â ¬" }, { "input": "traffic", "output": "â žâ —â â –â Šâ ‰" }, { "input": "trafficked", "output": "â žâ —â â –⠊⠉⠅⠫" }, { "input": "trafficker", "output": "â žâ —â â –⠊⠉⠅⠻" }, { "input": "traffickers", "output": "â žâ —â â –⠊⠉⠅⠻⠎" }, { "input": "trafficking", "output": "â žâ —â â –⠊⠉⠅⠬" }, { "input": "traffics", "output": "â žâ —â â –⠊⠉⠎" }, { "input": "tragedian", "output": "â žâ —â â ›â «â Šâ â " }, { "input": "tragedians", "output": "â žâ —â â ›â «â Šâ â â Ž" }, { "input": "tragedies", "output": "â žâ —â â ›â «â Šâ ‘â Ž" }, { "input": "tragedy", "output": "â žâ —â â ›â «â ½" }, { "input": "tragic", "output": "â žâ —â â ›â Šâ ‰" }, { "input": "tragically", "output": "â žâ —â â ›â Šâ ‰â â ‡â ‡â ½" }, { "input": "tragicomedies", "output": "â žâ —â â ›â Šâ ‰â •â â «â Šâ ‘â Ž" }, { "input": "tragicomedy", "output": "â žâ —â â ›â Šâ ‰â •â â «â ½" }, { "input": "trail", "output": "â žâ —â â Šâ ‡" }, { "input": "trailblazer", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ »" }, { "input": "trailblazers", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ »â Ž" }, { "input": "trailed", "output": "â žâ —â â Šâ ‡â «" }, { "input": "trailer", "output": "â žâ —â â Šâ ‡â »" }, { "input": "trailers", "output": "â žâ —â â Šâ ‡â »â Ž" }, { "input": "trailing", "output": "â žâ —â â Šâ ‡â ¬" }, { "input": "trails", "output": "â žâ —â â Šâ ‡â Ž" }, { "input": "train", "output": "â žâ —â â ”" }, { "input": "trained", "output": "â žâ —â â ”â «" }, { "input": "trainee", "output": "â žâ —â â ”â ‘â ‘" }, { "input": "trainees", "output": "â žâ —â â ”â ‘â ‘â Ž" }, { "input": "trainer", "output": "â žâ —â â ”â »" }, { "input": "trainers", "output": "â žâ —â â ”⠻⠎" }, { "input": "training", "output": "â žâ —â â ”â ¬" }, { "input": "trains", "output": "â žâ —â â ”â Ž" }, { "input": "traipse", "output": "â žâ —â â Šâ â Žâ ‘" }, { "input": "traipsed", "output": "â žâ —â â Šâ â Žâ «" }, { "input": "traipses", "output": "â žâ —â â Šâ â Žâ ‘â Ž" }, { "input": "traipsing", "output": "â žâ —â â Šâ â Žâ ¬" }, { "input": "trait", "output": "â žâ —â â Šâ ž" }, { "input": "traitor", "output": "â žâ —â â Šâ žâ •â —" }, { "input": "traitorous", "output": "â žâ —â â Šâ žâ •⠗⠳⠎" }, { "input": "traitors", "output": "â žâ —â â Šâ žâ •â —â Ž" }, { "input": "traits", "output": "â žâ —â â Šâ žâ Ž" }, { "input": "trajectories", "output": "â žâ —â â šâ ‘⠉⠞⠕⠗⠊⠑⠎" }, { "input": "trajectory", "output": "â žâ —â â šâ ‘⠉⠞⠕⠗⠽" }, { "input": "tram", "output": "â žâ —â â " }, { "input": "trammed", "output": "â žâ —â â â â «" }, { "input": "trammel", "output": "â žâ —â â â â ‘â ‡" }, { "input": "trammeled", "output": "â žâ —â â â â ‘⠇⠫" }, { "input": "trammeling", "output": "â žâ —â â â â ‘⠇⠬" }, { "input": "trammelled", "output": "â žâ —â â â â ‘⠇⠇⠫" }, { "input": "trammelling", "output": "â žâ —â â â â ‘⠇⠇⠬" }, { "input": "trammels", "output": "â žâ —â â â â ‘⠇⠎" }, { "input": "tramming", "output": "â žâ —â â â â ¬" }, { "input": "tramp", "output": "â žâ —â â â " }, { "input": "tramped", "output": "â žâ —â â â â «" }, { "input": "tramping", "output": "â žâ —â â â â ¬" }, { "input": "trample", "output": "â žâ —â â â â ‡â ‘" }, { "input": "trampled", "output": "â žâ —â â â â ‡â «" }, { "input": "tramples", "output": "â žâ —â â â â ‡â ‘â Ž" }, { "input": "trampling", "output": "â žâ —â â â â ‡â ¬" }, { "input": "trampoline", "output": "â žâ —â â â â •⠇⠔⠑" }, { "input": "trampolines", "output": "â žâ —â â â â •⠇⠔⠑⠎" }, { "input": "tramps", "output": "â žâ —â â â â Ž" }, { "input": "trams", "output": "â žâ —â â â Ž" }, { "input": "trance", "output": "⠞⠗⠨⠑" }, { "input": "trances", "output": "⠞⠗⠨⠑⠎" }, { "input": "tranquil", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡" }, { "input": "tranquiler", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â »" }, { "input": "tranquilest", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‘â Œ" }, { "input": "tranquility", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â °â ½" }, { "input": "tranquilize", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ ‘" }, { "input": "tranquilized", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ «" }, { "input": "tranquilizer", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ »" }, { "input": "tranquilizers", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ »â Ž" }, { "input": "tranquilizes", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ ‘â Ž" }, { "input": "tranquilizing", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ ¬" }, { "input": "tranquiller", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â »" }, { "input": "tranquillest", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â ‘â Œ" }, { "input": "tranquillity", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â °â ½" }, { "input": "tranquillize", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â Šâ µâ ‘" }, { "input": "tranquillized", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â Šâ µâ «" }, { "input": "tranquillizer", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â Šâ µâ »" }, { "input": "tranquillizers", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â Šâ µâ »â Ž" }, { "input": "tranquillizes", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â Šâ µâ ‘â Ž" }, { "input": "tranquillizing", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â Šâ µâ ¬" }, { "input": "tranquilly", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â ½" }, { "input": "transact", "output": "â žâ —â â â Žâ â ‰â ž" }, { "input": "transacted", "output": "â žâ —â â â Žâ â ‰â žâ «" }, { "input": "transacting", "output": "â žâ —â â â Žâ â ‰â žâ ¬" }, { "input": "transaction", "output": "â žâ —â â â Žâ â ‰â °â " }, { "input": "transactions", "output": "â žâ —â â â Žâ â ‰â °â â Ž" }, { "input": "transacts", "output": "â žâ —â â â Žâ â ‰â žâ Ž" }, { "input": "transatlantic", "output": "â žâ —â â â Žâ â žâ ‡â â â žâ Šâ ‰" }, { "input": "transceiver", "output": "â žâ —â â â Žâ ‰â ‘â Šâ §â »" }, { "input": "transceivers", "output": "â žâ —â â â Žâ ‰â ‘⠊⠧⠻⠎" }, { "input": "transcend", "output": "â žâ —â â â Žâ ‰â ¢â ™" }, { "input": "transcended", "output": "â žâ —â â â Žâ ‰â ¢â ™â «" }, { "input": "transcendence", "output": "â žâ —â â â Žâ ‰â ¢â ™â °â ‘" }, { "input": "transcendent", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â ž" }, { "input": "transcendental", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡" }, { "input": "transcendentalism", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Žâ " }, { "input": "transcendentalist", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Œ" }, { "input": "transcendentalists", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Œâ Ž" }, { "input": "transcendentally", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â ‡â ½" }, { "input": "transcending", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¬" }, { "input": "transcends", "output": "â žâ —â â â Žâ ‰â ¢â ™â Ž" }, { "input": "transcontinental", "output": "â žâ —â â â Žâ ‰â •â â žâ ”⠢⠞â â ‡" }, { "input": "transcribe", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠑" }, { "input": "transcribed", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠫" }, { "input": "transcribes", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "transcribing", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠬" }, { "input": "transcript", "output": "â žâ —â â â Žâ ‰â —â Šâ â ž" }, { "input": "transcription", "output": "â žâ —â â â Žâ ‰â —â Šâ â °â " }, { "input": "transcriptions", "output": "â žâ —â â â Žâ ‰â —â Šâ â °â â Ž" }, { "input": "transcripts", "output": "â žâ —â â â Žâ ‰â —â Šâ â žâ Ž" }, { "input": "transducer", "output": "â žâ —â â â Žâ ™â ¥â ‰â »" }, { "input": "transducers", "output": "â žâ —â â â Žâ ™â ¥â ‰â »â Ž" }, { "input": "transept", "output": "â žâ —â â â Žâ ‘â â ž" }, { "input": "transepts", "output": "â žâ —â â â Žâ ‘â â žâ Ž" }, { "input": "transfer", "output": "â žâ —â â â Žâ ‹â »" }, { "input": "transferable", "output": "â žâ —â â â Žâ ‹â »â â ƒâ ‡â ‘" }, { "input": "transferal", "output": "â žâ —â â â Žâ ‹â »â â ‡" }, { "input": "transferals", "output": "â žâ —â â â Žâ ‹â »â â ‡â Ž" }, { "input": "transference", "output": "â žâ —â â â Žâ ‹â »â °â ‘" }, { "input": "transferred", "output": "â žâ —â â â Žâ ‹â »â —â «" }, { "input": "transferring", "output": "â žâ —â â â Žâ ‹â »â —â ¬" }, { "input": "transfers", "output": "â žâ —â â â Žâ ‹â »â Ž" }, { "input": "transfiguration", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â â °â " }, { "input": "transfigure", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â ‘" }, { "input": "transfigured", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â «" }, { "input": "transfigures", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â ‘â Ž" }, { "input": "transfiguring", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â ¬" }, { "input": "transfinite", "output": "â žâ —â â â Žâ ‹â ”â Šâ žâ ‘" }, { "input": "transfix", "output": "â žâ —â â â Žâ ‹â Šâ ­" }, { "input": "transfixed", "output": "â žâ —â â â Žâ ‹â Šâ ­â «" }, { "input": "transfixes", "output": "â žâ —â â â Žâ ‹â Šâ ­â ‘â Ž" }, { "input": "transfixing", "output": "â žâ —â â â Žâ ‹â Šâ ­â ¬" }, { "input": "transfixt", "output": "â žâ —â â â Žâ ‹â Šâ ­â ž" }, { "input": "transform", "output": "â žâ —â â â Žâ ¿â " }, { "input": "transformation", "output": "â žâ —â â â Žâ ¿â â â °â " }, { "input": "transformations", "output": "â žâ —â â â Žâ ¿â â â °â â Ž" }, { "input": "transformed", "output": "â žâ —â â â Žâ ¿â â «" }, { "input": "transformer", "output": "â žâ —â â â Žâ ¿â â »" }, { "input": "transformers", "output": "â žâ —â â â Žâ ¿â â »â Ž" }, { "input": "transforming", "output": "â žâ —â â â Žâ ¿â â ¬" }, { "input": "transforms", "output": "â žâ —â â â Žâ ¿â â Ž" }, { "input": "transfuse", "output": "â žâ —â â â Žâ ‹â ¥â Žâ ‘" }, { "input": "transfused", "output": "â žâ —â â â Žâ ‹â ¥â Žâ «" }, { "input": "transfuses", "output": "â žâ —â â â Žâ ‹â ¥â Žâ ‘â Ž" }, { "input": "transfusing", "output": "â žâ —â â â Žâ ‹â ¥â Žâ ¬" }, { "input": "transfusion", "output": "â žâ —â â â Žâ ‹â ¥â ¨â " }, { "input": "transfusions", "output": "â žâ —â â â Žâ ‹â ¥â ¨â â Ž" }, { "input": "transgress", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Ž" }, { "input": "transgressed", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ «" }, { "input": "transgresses", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "transgressing", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ ¬" }, { "input": "transgression", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ ¨â " }, { "input": "transgressions", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ ¨â â Ž" }, { "input": "transgressor", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ •â —" }, { "input": "transgressors", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "transience", "output": "â žâ —â â â Žâ Šâ °â ‘" }, { "input": "transiency", "output": "â žâ —â â â Žâ Šâ ¢â ‰â ½" }, { "input": "transient", "output": "â žâ —â â â Žâ Šâ ¢â ž" }, { "input": "transients", "output": "â žâ —â â â Žâ Šâ ¢â žâ Ž" }, { "input": "transistor", "output": "â žâ —â â â Žâ Šâ Œâ •â —" }, { "input": "transistors", "output": "â žâ —â â â Žâ Šâ Œâ •â —â Ž" }, { "input": "transit", "output": "â žâ —â â â Žâ Šâ ž" }, { "input": "transited", "output": "â žâ —â â â Žâ Šâ žâ «" }, { "input": "transiting", "output": "â žâ —â â â Žâ Šâ žâ ¬" }, { "input": "transition", "output": "â žâ —â â â Žâ Šâ °â " }, { "input": "transitional", "output": "â žâ —â â â Žâ Šâ °â â â ‡" }, { "input": "transitioned", "output": "â žâ —â â â Žâ Šâ °â â «" }, { "input": "transitioning", "output": "â žâ —â â â Žâ Šâ °â â ¬" }, { "input": "transitions", "output": "â žâ —â â â Žâ Šâ °â â Ž" }, { "input": "transitive", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘" }, { "input": "transitively", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "transitives", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "transitory", "output": "â žâ —â â â Žâ Šâ žâ •â —â ½" }, { "input": "transits", "output": "â žâ —â â â Žâ Šâ žâ Ž" }, { "input": "transitted", "output": "â žâ —â â â Žâ Šâ žâ žâ «" }, { "input": "transitting", "output": "â žâ —â â â Žâ Šâ žâ žâ ¬" }, { "input": "translate", "output": "â žâ —â â â Žâ ‡â â žâ ‘" }, { "input": "translated", "output": "â žâ —â â â Žâ ‡â â žâ «" }, { "input": "translates", "output": "â žâ —â â â Žâ ‡â â žâ ‘â Ž" }, { "input": "translating", "output": "â žâ —â â â Žâ ‡â â žâ ¬" }, { "input": "translation", "output": "â žâ —â â â Žâ ‡â â °â " }, { "input": "translations", "output": "â žâ —â â â Žâ ‡â â °â â Ž" }, { "input": "translator", "output": "â žâ —â â â Žâ ‡â â žâ •â —" }, { "input": "translators", "output": "â žâ —â â â Žâ ‡â â žâ •â —â Ž" }, { "input": "transliterate", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ ‘" }, { "input": "transliterated", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ «" }, { "input": "transliterates", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ ‘â Ž" }, { "input": "transliterating", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ ¬" }, { "input": "transliteration", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â °â " }, { "input": "transliterations", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â °â â Ž" }, { "input": "translucence", "output": "â žâ —â â â Žâ ‡â ¥â ‰â °â ‘" }, { "input": "translucent", "output": "â žâ —â â â Žâ ‡â ¥â ‰â ¢â ž" }, { "input": "transmigrate", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ ‘" }, { "input": "transmigrated", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ «" }, { "input": "transmigrates", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ ‘â Ž" }, { "input": "transmigrating", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ ¬" }, { "input": "transmigration", "output": "â žâ —â â â Žâ â Šâ ›â —â â °â " }, { "input": "transmissible", "output": "â žâ —â â â Žâ â Šâ Žâ Žâ Šâ ƒâ ‡â ‘" }, { "input": "transmission", "output": "â žâ —â â â Žâ â Šâ Žâ ¨â " }, { "input": "transmissions", "output": "â žâ —â â â Žâ â Šâ Žâ ¨â â Ž" }, { "input": "transmit", "output": "â žâ —â â â Žâ â Šâ ž" }, { "input": "transmits", "output": "â žâ —â â â Žâ â Šâ žâ Ž" }, { "input": "transmittable", "output": "â žâ —â â â Žâ â Šâ žâ žâ â ƒâ ‡â ‘" }, { "input": "transmittal", "output": "â žâ —â â â Žâ â Šâ žâ žâ â ‡" }, { "input": "transmitted", "output": "â žâ —â â â Žâ â Šâ žâ žâ «" }, { "input": "transmitter", "output": "â žâ —â â â Žâ â Šâ žâ žâ »" }, { "input": "transmitters", "output": "â žâ —â â â Žâ â Šâ žâ žâ »â Ž" }, { "input": "transmitting", "output": "â žâ —â â â Žâ â Šâ žâ žâ ¬" }, { "input": "transmutation", "output": "â žâ —â â â Žâ â ¥â žâ â °â " }, { "input": "transmutations", "output": "â žâ —â â â Žâ â ¥â žâ â °â â Ž" }, { "input": "transmute", "output": "â žâ —â â â Žâ â ¥â žâ ‘" }, { "input": "transmuted", "output": "â žâ —â â â Žâ â ¥â žâ «" }, { "input": "transmutes", "output": "â žâ —â â â Žâ â ¥â žâ ‘â Ž" }, { "input": "transmuting", "output": "â žâ —â â â Žâ â ¥â žâ ¬" }, { "input": "transnational", "output": "â žâ —â â â Žâ â â °â â â ‡" }, { "input": "transnationals", "output": "â žâ —â â â Žâ â â °â â â ‡â Ž" }, { "input": "transoceanic", "output": "â žâ —â â â Žâ •⠉⠂â â Šâ ‰" }, { "input": "transom", "output": "â žâ —â â â Žâ •â " }, { "input": "transoms", "output": "â žâ —â â â Žâ •â â Ž" }, { "input": "transparencies", "output": "â žâ —â â â Žâ â œâ ¢â ‰â Šâ ‘â Ž" }, { "input": "transparency", "output": "â žâ —â â â Žâ â œâ ¢â ‰â ½" }, { "input": "transparent", "output": "â žâ —â â â Žâ â œâ ¢â ž" }, { "input": "transparently", "output": "â žâ —â â â Žâ â œâ ¢â žâ ‡â ½" }, { "input": "transpiration", "output": "â žâ —â â â Žâ â Šâ —â â °â " }, { "input": "transpire", "output": "â žâ —â â â Žâ â Šâ —â ‘" }, { "input": "transpired", "output": "â žâ —â â â Žâ â Šâ —â «" }, { "input": "transpires", "output": "â žâ —â â â Žâ â Šâ —â ‘â Ž" }, { "input": "transpiring", "output": "â žâ —â â â Žâ â Šâ —â ¬" }, { "input": "transplant", "output": "â žâ —â â â Žâ â ‡â â â ž" }, { "input": "transplantation", "output": "â žâ —â â â Žâ â ‡â â â žâ â °â " }, { "input": "transplanted", "output": "â žâ —â â â Žâ â ‡â â â žâ «" }, { "input": "transplanting", "output": "â žâ —â â â Žâ â ‡â â â žâ ¬" }, { "input": "transplants", "output": "â žâ —â â â Žâ â ‡â â â žâ Ž" }, { "input": "transponder", "output": "â žâ —â â â Žâ â •â â ™â »" }, { "input": "transponders", "output": "â žâ —â â â Žâ â •â â ™â »â Ž" }, { "input": "transport", "output": "â žâ —â â â Žâ â •â —â ž" }, { "input": "transportable", "output": "â žâ —â â â Žâ â •â —â žâ â ƒâ ‡â ‘" }, { "input": "transportation", "output": "â žâ —â â â Žâ â •â —â žâ â °â " }, { "input": "transported", "output": "â žâ —â â â Žâ â •â —â žâ «" }, { "input": "transporter", "output": "â žâ —â â â Žâ â •â —â žâ »" }, { "input": "transporters", "output": "â žâ —â â â Žâ â •⠗⠞⠻⠎" }, { "input": "transporting", "output": "â žâ —â â â Žâ â •â —â žâ ¬" }, { "input": "transports", "output": "â žâ —â â â Žâ â •â —â žâ Ž" }, { "input": "transpose", "output": "â žâ —â â â Žâ â •â Žâ ‘" }, { "input": "transposed", "output": "â žâ —â â â Žâ â •â Žâ «" }, { "input": "transposes", "output": "â žâ —â â â Žâ â •â Žâ ‘â Ž" }, { "input": "transposing", "output": "â žâ —â â â Žâ â •â Žâ ¬" }, { "input": "transposition", "output": "â žâ —â â â Žâ â •â Žâ Šâ °â " }, { "input": "transpositions", "output": "â žâ —â â â Žâ â •â Žâ Šâ °â â Ž" }, { "input": "transsexual", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡" }, { "input": "transsexuals", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡â Ž" }, { "input": "transship", "output": "â žâ —â â â Žâ ©â Šâ " }, { "input": "transshipment", "output": "â žâ —â â â Žâ ©â Šâ â °â ž" }, { "input": "transshipped", "output": "â žâ —â â â Žâ ©â Šâ â â «" }, { "input": "transshipping", "output": "â žâ —â â â Žâ ©â Šâ â â ¬" }, { "input": "transships", "output": "â žâ —â â â Žâ ©â Šâ â Ž" }, { "input": "transubstantiation", "output": "â žâ —â â â Žâ ¥â ƒâ Œâ â â žâ Šâ â °â " }, { "input": "transverse", "output": "â žâ —â â â Žâ §â »â Žâ ‘" }, { "input": "transversely", "output": "â žâ —â â â Žâ §â »â Žâ ‘⠇⠽" }, { "input": "transverses", "output": "â žâ —â â â Žâ §â »â Žâ ‘â Ž" }, { "input": "transvestism", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠎â " }, { "input": "transvestite", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠞⠑" }, { "input": "transvestites", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠞⠑⠎" }, { "input": "trap", "output": "â žâ —â â " }, { "input": "trapdoor", "output": "â žâ —â â â ™â •â •â —" }, { "input": "trapdoors", "output": "â žâ —â â â ™â •â •â —â Ž" }, { "input": "trapeze", "output": "â žâ —â â â ‘⠵⠑" }, { "input": "trapezes", "output": "â žâ —â â â ‘⠵⠑⠎" }, { "input": "trapezoid", "output": "â žâ —â â â ‘⠵⠕⠊⠙" }, { "input": "trapezoidal", "output": "â žâ —â â â ‘⠵⠕⠊⠙â â ‡" }, { "input": "trapezoids", "output": "â žâ —â â â ‘⠵⠕⠊⠙⠎" }, { "input": "trappable", "output": "â žâ —â â â â â ƒâ ‡â ‘" }, { "input": "trapped", "output": "â žâ —â â â â «" }, { "input": "trapper", "output": "â žâ —â â â â »" }, { "input": "trappers", "output": "â žâ —â â â â »â Ž" }, { "input": "trapping", "output": "â žâ —â â â â ¬" }, { "input": "trappings", "output": "â žâ —â â â â ¬â Ž" }, { "input": "traps", "output": "â žâ —â â â Ž" }, { "input": "trapshooting", "output": "â žâ —â â â ©â •â •â žâ ¬" }, { "input": "trash", "output": "â žâ —â â ©" }, { "input": "trashcan", "output": "â žâ —â â ©â ‰â â " }, { "input": "trashcans", "output": "â žâ —â â ©â ‰â â â Ž" }, { "input": "trashed", "output": "â žâ —â â ©â «" }, { "input": "trashes", "output": "â žâ —â â ©â ‘â Ž" }, { "input": "trashier", "output": "â žâ —â â ©â Šâ »" }, { "input": "trashiest", "output": "â žâ —â â ©â Šâ ‘â Œ" }, { "input": "trashing", "output": "â žâ —â â ©â ¬" }, { "input": "trashy", "output": "â žâ —â â ©â ½" }, { "input": "trauma", "output": "â žâ —â â ¥â â " }, { "input": "traumas", "output": "â žâ —â â ¥â â â Ž" }, { "input": "traumata", "output": "â žâ —â â ¥â â â žâ " }, { "input": "traumatic", "output": "â žâ —â â ¥â â â žâ Šâ ‰" }, { "input": "traumatize", "output": "â žâ —â â ¥â â â žâ Šâ µâ ‘" }, { "input": "traumatized", "output": "â žâ —â â ¥â â â žâ Šâ µâ «" }, { "input": "traumatizes", "output": "â žâ —â â ¥â â â žâ Šâ µâ ‘â Ž" }, { "input": "traumatizing", "output": "â žâ —â â ¥â â â žâ Šâ µâ ¬" }, { "input": "travail", "output": "â žâ —â â §â â Šâ ‡" }, { "input": "travailed", "output": "â žâ —â â §â â Šâ ‡â «" }, { "input": "travailing", "output": "â žâ —â â §â â Šâ ‡â ¬" }, { "input": "travails", "output": "â žâ —â â §â â Šâ ‡â Ž" }, { "input": "travel", "output": "â žâ —â â §â ‘â ‡" }, { "input": "traveled", "output": "â žâ —â â §â ‘⠇⠫" }, { "input": "traveler", "output": "â žâ —â â §â ‘⠇⠻" }, { "input": "travelers", "output": "â žâ —â â §â ‘⠇⠻⠎" }, { "input": "traveling", "output": "â žâ —â â §â ‘⠇⠬" }, { "input": "travelings", "output": "â žâ —â â §â ‘⠇⠬⠎" }, { "input": "travelled", "output": "â žâ —â â §â ‘⠇⠇⠫" }, { "input": "traveller", "output": "â žâ —â â §â ‘⠇⠇⠻" }, { "input": "travellers", "output": "â žâ —â â §â ‘⠇⠇⠻⠎" }, { "input": "travelling", "output": "â žâ —â â §â ‘⠇⠇⠬" }, { "input": "travelog", "output": "â žâ —â â §â ‘⠇⠕⠛" }, { "input": "travelogs", "output": "â žâ —â â §â ‘⠇⠕⠛⠎" }, { "input": "travelogue", "output": "â žâ —â â §â ‘⠇⠕⠛⠥⠑" }, { "input": "travelogues", "output": "â žâ —â â §â ‘⠇⠕⠛⠥⠑⠎" }, { "input": "travels", "output": "â žâ —â â §â ‘⠇⠎" }, { "input": "traverse", "output": "â žâ —â â §â »â Žâ ‘" }, { "input": "traversed", "output": "â žâ —â â §â »â Žâ «" }, { "input": "traverses", "output": "â žâ —â â §â »â Žâ ‘â Ž" }, { "input": "traversing", "output": "â žâ —â â §â »â Žâ ¬" }, { "input": "travestied", "output": "â žâ —â â §â ‘⠌⠊⠫" }, { "input": "travesties", "output": "â žâ —â â §â ‘⠌⠊⠑⠎" }, { "input": "travesty", "output": "â žâ —â â §â ‘⠌⠽" }, { "input": "travestying", "output": "â žâ —â â §â ‘⠌⠽⠬" }, { "input": "trawl", "output": "â žâ —â â ºâ ‡" }, { "input": "trawled", "output": "â žâ —â â ºâ ‡â «" }, { "input": "trawler", "output": "â žâ —â â ºâ ‡â »" }, { "input": "trawlers", "output": "â žâ —â â ºâ ‡â »â Ž" }, { "input": "trawling", "output": "â žâ —â â ºâ ‡â ¬" }, { "input": "trawls", "output": "â žâ —â â ºâ ‡â Ž" }, { "input": "tray", "output": "â žâ —â â ½" }, { "input": "trays", "output": "â žâ —â â ½â Ž" }, { "input": "treacheries", "output": "⠞⠗⠂⠡⠻⠊⠑⠎" }, { "input": "treacherous", "output": "⠞⠗⠂⠡⠻⠳⠎" }, { "input": "treacherously", "output": "⠞⠗⠂⠡⠻⠳⠎⠇⠽" }, { "input": "treachery", "output": "⠞⠗⠂⠡⠻⠽" }, { "input": "treacle", "output": "⠞⠗⠂⠉⠇⠑" }, { "input": "tread", "output": "â žâ —â ‚â ™" }, { "input": "treading", "output": "⠞⠗⠂⠙⠬" }, { "input": "treadle", "output": "⠞⠗⠂⠙⠇⠑" }, { "input": "treadled", "output": "⠞⠗⠂⠙⠇⠫" }, { "input": "treadles", "output": "⠞⠗⠂⠙⠇⠑⠎" }, { "input": "treadling", "output": "⠞⠗⠂⠙⠇⠬" }, { "input": "treadmill", "output": "â žâ —â ‚â ™â â Šâ ‡â ‡" }, { "input": "treadmills", "output": "â žâ —â ‚â ™â â Šâ ‡â ‡â Ž" }, { "input": "treads", "output": "⠞⠗⠂⠙⠎" }, { "input": "treason", "output": "â žâ —â ‚â Žâ •â " }, { "input": "treasonable", "output": "â žâ —â ‚â Žâ •â â â ƒâ ‡â ‘" }, { "input": "treasonous", "output": "â žâ —â ‚â Žâ •â â ³â Ž" }, { "input": "treasure", "output": "⠞⠗⠂⠎⠥⠗⠑" }, { "input": "treasured", "output": "⠞⠗⠂⠎⠥⠗⠫" }, { "input": "treasurer", "output": "⠞⠗⠂⠎⠥⠗⠻" }, { "input": "treasurers", "output": "⠞⠗⠂⠎⠥⠗⠻⠎" }, { "input": "treasures", "output": "⠞⠗⠂⠎⠥⠗⠑⠎" }, { "input": "treasuries", "output": "⠞⠗⠂⠎⠥⠗⠊⠑⠎" }, { "input": "treasuring", "output": "⠞⠗⠂⠎⠥⠗⠬" }, { "input": "treasury", "output": "⠞⠗⠂⠎⠥⠗⠽" }, { "input": "treat", "output": "â žâ —â ‚â ž" }, { "input": "treatable", "output": "â žâ —â ‚â žâ â ƒâ ‡â ‘" }, { "input": "treated", "output": "â žâ —â ‚â žâ «" }, { "input": "treaties", "output": "â žâ —â ‚â žâ Šâ ‘â Ž" }, { "input": "treating", "output": "â žâ —â ‚â žâ ¬" }, { "input": "treatise", "output": "â žâ —â ‚â žâ Šâ Žâ ‘" }, { "input": "treatises", "output": "â žâ —â ‚â žâ Šâ Žâ ‘â Ž" }, { "input": "treatment", "output": "â žâ —â ‚â žâ °â ž" }, { "input": "treatments", "output": "â žâ —â ‚â žâ °â žâ Ž" }, { "input": "treats", "output": "â žâ —â ‚â žâ Ž" }, { "input": "treaty", "output": "â žâ —â ‚â žâ ½" }, { "input": "treble", "output": "⠞⠗⠑⠃⠇⠑" }, { "input": "trebled", "output": "⠞⠗⠑⠃⠇⠫" }, { "input": "trebles", "output": "⠞⠗⠑⠃⠇⠑⠎" }, { "input": "trebling", "output": "⠞⠗⠑⠃⠇⠬" }, { "input": "tree", "output": "â žâ —â ‘â ‘" }, { "input": "treed", "output": "â žâ —â ‘â «" }, { "input": "treeing", "output": "â žâ —â ‘â ‘â ¬" }, { "input": "treeless", "output": "⠞⠗⠑⠑⠨⠎" }, { "input": "trees", "output": "â žâ —â ‘â ‘â Ž" }, { "input": "treetop", "output": "â žâ —â ‘â ‘â žâ •â " }, { "input": "treetops", "output": "â žâ —â ‘â ‘â žâ •â â Ž" }, { "input": "trefoil", "output": "â žâ —â ‘â ‹â •â Šâ ‡" }, { "input": "trefoils", "output": "⠞⠗⠑⠋⠕⠊⠇⠎" }, { "input": "trek", "output": "â žâ —â ‘â …" }, { "input": "trekked", "output": "â žâ —â ‘â …â …â «" }, { "input": "trekking", "output": "â žâ —â ‘â …â …â ¬" }, { "input": "treks", "output": "â žâ —â ‘â …â Ž" }, { "input": "trellis", "output": "⠞⠗⠑⠇⠇⠊⠎" }, { "input": "trellised", "output": "⠞⠗⠑⠇⠇⠊⠎⠫" }, { "input": "trellises", "output": "⠞⠗⠑⠇⠇⠊⠎⠑⠎" }, { "input": "trellising", "output": "⠞⠗⠑⠇⠇⠊⠎⠬" }, { "input": "tremble", "output": "â žâ —â ‘â â ƒâ ‡â ‘" }, { "input": "trembled", "output": "â žâ —â ‘â â ƒâ ‡â «" }, { "input": "trembles", "output": "â žâ —â ‘â â ƒâ ‡â ‘â Ž" }, { "input": "trembling", "output": "â žâ —â ‘â â ƒâ ‡â ¬" }, { "input": "tremendous", "output": "â žâ —â ‘â â ¢â ™â ³â Ž" }, { "input": "tremendously", "output": "â žâ —â ‘â â ¢â ™â ³â Žâ ‡â ½" }, { "input": "tremolo", "output": "â žâ —â ‘â â •⠇⠕" }, { "input": "tremolos", "output": "â žâ —â ‘â â •⠇⠕⠎" }, { "input": "tremor", "output": "â žâ —â ‘â â •â —" }, { "input": "tremors", "output": "â žâ —â ‘â â •â —â Ž" }, { "input": "tremulous", "output": "â žâ —â ‘â â ¥â ‡â ³â Ž" }, { "input": "tremulously", "output": "â žâ —â ‘â â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "trench", "output": "⠞⠗⠢⠡" }, { "input": "trenchant", "output": "⠞⠗⠢⠡â â â ž" }, { "input": "trenched", "output": "⠞⠗⠢⠡⠫" }, { "input": "trenches", "output": "⠞⠗⠢⠡⠑⠎" }, { "input": "trenching", "output": "⠞⠗⠢⠡⠬" }, { "input": "trend", "output": "⠞⠗⠢⠙" }, { "input": "trended", "output": "⠞⠗⠢⠙⠫" }, { "input": "trendier", "output": "⠞⠗⠢⠙⠊⠻" }, { "input": "trendies", "output": "⠞⠗⠢⠙⠊⠑⠎" }, { "input": "trendiest", "output": "⠞⠗⠢⠙⠊⠑⠌" }, { "input": "trending", "output": "⠞⠗⠢⠙⠬" }, { "input": "trends", "output": "⠞⠗⠢⠙⠎" }, { "input": "trendy", "output": "⠞⠗⠢⠙⠽" }, { "input": "trepidation", "output": "â žâ —â ‘â â Šâ ™â â °â " }, { "input": "trespass", "output": "â žâ —â ‘â Žâ â â Žâ Ž" }, { "input": "trespassed", "output": "â žâ —â ‘â Žâ â â Žâ Žâ «" }, { "input": "trespasser", "output": "â žâ —â ‘â Žâ â â Žâ Žâ »" }, { "input": "trespassers", "output": "â žâ —â ‘â Žâ â â Žâ Žâ »â Ž" }, { "input": "trespasses", "output": "â žâ —â ‘â Žâ â â Žâ Žâ ‘â Ž" }, { "input": "trespassing", "output": "â žâ —â ‘â Žâ â â Žâ Žâ ¬" }, { "input": "tress", "output": "â žâ —â ‘â Žâ Ž" }, { "input": "tresses", "output": "â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "trestle", "output": "⠞⠗⠑⠌⠇⠑" }, { "input": "trestles", "output": "⠞⠗⠑⠌⠇⠑⠎" }, { "input": "triad", "output": "â žâ —â Šâ â ™" }, { "input": "triads", "output": "â žâ —â Šâ â ™â Ž" }, { "input": "triage", "output": "â žâ —â Šâ â ›â ‘" }, { "input": "trial", "output": "â žâ —â Šâ â ‡" }, { "input": "trialed", "output": "â žâ —â Šâ â ‡â «" }, { "input": "trialing", "output": "â žâ —â Šâ â ‡â ¬" }, { "input": "trials", "output": "â žâ —â Šâ â ‡â Ž" }, { "input": "triangle", "output": "â žâ —â Šâ â â ›â ‡â ‘" }, { "input": "triangles", "output": "â žâ —â Šâ â â ›â ‡â ‘â Ž" }, { "input": "triangular", "output": "â žâ —â Šâ â â ›â ¥â ‡â œ" }, { "input": "triangulation", "output": "â žâ —â Šâ â â ›â ¥â ‡â â °â " }, { "input": "triathlon", "output": "â žâ —â Šâ â ¹â ‡â •â " }, { "input": "triathlons", "output": "â žâ —â Šâ â ¹â ‡â •â â Ž" }, { "input": "tribal", "output": "â žâ —â Šâ ƒâ â ‡" }, { "input": "tribalism", "output": "â žâ —â Šâ ƒâ â ‡â Šâ Žâ " }, { "input": "tribe", "output": "⠞⠗⠊⠃⠑" }, { "input": "tribes", "output": "⠞⠗⠊⠃⠑⠎" }, { "input": "tribesman", "output": "⠞⠗⠊⠃⠑⠎â â â " }, { "input": "tribesmen", "output": "⠞⠗⠊⠃⠑⠎â â ¢" }, { "input": "tribulation", "output": "⠞⠗⠊⠃⠥⠇â â °â " }, { "input": "tribulations", "output": "⠞⠗⠊⠃⠥⠇â â °â â Ž" }, { "input": "tribunal", "output": "⠞⠗⠊⠃⠥â â â ‡" }, { "input": "tribunals", "output": "⠞⠗⠊⠃⠥â â â ‡â Ž" }, { "input": "tribune", "output": "⠞⠗⠊⠃⠥â â ‘" }, { "input": "tribunes", "output": "⠞⠗⠊⠃⠥â â ‘â Ž" }, { "input": "tributaries", "output": "⠞⠗⠊⠃⠥⠞⠜⠊⠑⠎" }, { "input": "tributary", "output": "⠞⠗⠊⠃⠥⠞⠜⠽" }, { "input": "tribute", "output": "⠞⠗⠊⠃⠥⠞⠑" }, { "input": "tributes", "output": "⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "trice", "output": "⠞⠗⠊⠉⠑" }, { "input": "triceps", "output": "⠞⠗⠊⠉⠑â â Ž" }, { "input": "tricepses", "output": "⠞⠗⠊⠉⠑â â Žâ ‘â Ž" }, { "input": "triceratops", "output": "⠞⠗⠊⠉⠻â â žâ •â â Ž" }, { "input": "triceratopses", "output": "⠞⠗⠊⠉⠻â â žâ •â â Žâ ‘â Ž" }, { "input": "trick", "output": "⠞⠗⠊⠉⠅" }, { "input": "tricked", "output": "⠞⠗⠊⠉⠅⠫" }, { "input": "trickery", "output": "⠞⠗⠊⠉⠅⠻⠽" }, { "input": "trickier", "output": "⠞⠗⠊⠉⠅⠊⠻" }, { "input": "trickiest", "output": "⠞⠗⠊⠉⠅⠊⠑⠌" }, { "input": "trickiness", "output": "⠞⠗⠊⠉⠅⠊⠰⠎" }, { "input": "tricking", "output": "⠞⠗⠊⠉⠅⠬" }, { "input": "trickle", "output": "⠞⠗⠊⠉⠅⠇⠑" }, { "input": "trickled", "output": "⠞⠗⠊⠉⠅⠇⠫" }, { "input": "trickles", "output": "⠞⠗⠊⠉⠅⠇⠑⠎" }, { "input": "trickling", "output": "⠞⠗⠊⠉⠅⠇⠬" }, { "input": "tricks", "output": "⠞⠗⠊⠉⠅⠎" }, { "input": "trickster", "output": "⠞⠗⠊⠉⠅⠌⠻" }, { "input": "tricksters", "output": "⠞⠗⠊⠉⠅⠌⠻⠎" }, { "input": "tricky", "output": "⠞⠗⠊⠉⠅⠽" }, { "input": "tricolor", "output": "⠞⠗⠊⠉⠕⠇⠕⠗" }, { "input": "tricolors", "output": "⠞⠗⠊⠉⠕⠇⠕⠗⠎" }, { "input": "tricycle", "output": "⠞⠗⠊⠉⠽⠉⠇⠑" }, { "input": "tricycles", "output": "⠞⠗⠊⠉⠽⠉⠇⠑⠎" }, { "input": "trident", "output": "⠞⠗⠊⠙⠢⠞" }, { "input": "tridents", "output": "⠞⠗⠊⠙⠢⠞⠎" }, { "input": "tried", "output": "â žâ —â Šâ «" }, { "input": "triennial", "output": "â žâ —â Šâ ¢â â Šâ â ‡" }, { "input": "triennials", "output": "â žâ —â Šâ ¢â â Šâ â ‡â Ž" }, { "input": "tries", "output": "â žâ —â Šâ ‘â Ž" }, { "input": "trifle", "output": "⠞⠗⠊⠋⠇⠑" }, { "input": "trifled", "output": "⠞⠗⠊⠋⠇⠫" }, { "input": "trifler", "output": "⠞⠗⠊⠋⠇⠻" }, { "input": "triflers", "output": "⠞⠗⠊⠋⠇⠻⠎" }, { "input": "trifles", "output": "⠞⠗⠊⠋⠇⠑⠎" }, { "input": "trifling", "output": "⠞⠗⠊⠋⠇⠬" }, { "input": "trifocals", "output": "â žâ —â Šâ ‹â •â ‰â â ‡â Ž" }, { "input": "trig", "output": "â žâ —â Šâ ›" }, { "input": "trigger", "output": "â žâ —â Šâ ¶â »" }, { "input": "triggered", "output": "⠞⠗⠊⠶⠻⠫" }, { "input": "triggering", "output": "⠞⠗⠊⠶⠻⠬" }, { "input": "triggers", "output": "⠞⠗⠊⠶⠻⠎" }, { "input": "triglyceride", "output": "⠞⠗⠊⠛⠇⠽⠉⠻⠊⠙⠑" }, { "input": "triglycerides", "output": "⠞⠗⠊⠛⠇⠽⠉⠻⠊⠙⠑⠎" }, { "input": "trigonometric", "output": "⠞⠗⠊⠛⠕â â •â â ‘â žâ —â Šâ ‰" }, { "input": "trigonometry", "output": "⠞⠗⠊⠛⠕â â •â â ‘â žâ —â ½" }, { "input": "trike", "output": "â žâ —â Šâ …â ‘" }, { "input": "trikes", "output": "â žâ —â Šâ …â ‘â Ž" }, { "input": "trilateral", "output": "â žâ —â Šâ ‡â â žâ »â â ‡" }, { "input": "trilaterals", "output": "â žâ —â Šâ ‡â â žâ »â â ‡â Ž" }, { "input": "trill", "output": "⠞⠗⠊⠇⠇" }, { "input": "trilled", "output": "⠞⠗⠊⠇⠇⠫" }, { "input": "trilling", "output": "⠞⠗⠊⠇⠇⠬" }, { "input": "trillion", "output": "⠞⠗⠊⠇⠇⠊⠕â " }, { "input": "trillions", "output": "⠞⠗⠊⠇⠇⠊⠕â â Ž" }, { "input": "trillionth", "output": "⠞⠗⠊⠇⠇⠊⠕â â ¹" }, { "input": "trillionths", "output": "⠞⠗⠊⠇⠇⠊⠕â â ¹â Ž" }, { "input": "trills", "output": "⠞⠗⠊⠇⠇⠎" }, { "input": "trilogies", "output": "⠞⠗⠊⠇⠕⠛⠊⠑⠎" }, { "input": "trilogy", "output": "⠞⠗⠊⠇⠕⠛⠽" }, { "input": "trim", "output": "â žâ —â Šâ " }, { "input": "trimaran", "output": "â žâ —â Šâ â œâ â " }, { "input": "trimarans", "output": "â žâ —â Šâ â œâ â â Ž" }, { "input": "trimester", "output": "â žâ —â Šâ â ‘⠌⠻" }, { "input": "trimesters", "output": "â žâ —â Šâ â ‘⠌⠻⠎" }, { "input": "trimly", "output": "â žâ —â Šâ â ‡â ½" }, { "input": "trimmed", "output": "â žâ —â Šâ â â «" }, { "input": "trimmer", "output": "â žâ —â Šâ â â »" }, { "input": "trimmers", "output": "â žâ —â Šâ â â »â Ž" }, { "input": "trimmest", "output": "â žâ —â Šâ â â ‘â Œ" }, { "input": "trimming", "output": "â žâ —â Šâ â â ¬" }, { "input": "trimmings", "output": "â žâ —â Šâ â â ¬â Ž" }, { "input": "trimness", "output": "â žâ —â Šâ â °â Ž" }, { "input": "trims", "output": "â žâ —â Šâ â Ž" }, { "input": "trinities", "output": "⠞⠗⠔⠊⠞⠊⠑⠎" }, { "input": "trinity", "output": "⠞⠗⠔⠰⠽" }, { "input": "trinket", "output": "⠞⠗⠔⠅⠑⠞" }, { "input": "trinkets", "output": "⠞⠗⠔⠅⠑⠞⠎" }, { "input": "trio", "output": "â žâ —â Šâ •" }, { "input": "trios", "output": "â žâ —â Šâ •â Ž" }, { "input": "trip", "output": "â žâ —â Šâ " }, { "input": "tripartite", "output": "â žâ —â Šâ â â Šâ žâ ‘" }, { "input": "tripe", "output": "â žâ —â Šâ â ‘" }, { "input": "triple", "output": "â žâ —â Šâ â ‡â ‘" }, { "input": "tripled", "output": "â žâ —â Šâ â ‡â «" }, { "input": "triples", "output": "â žâ —â Šâ â ‡â ‘â Ž" }, { "input": "triplet", "output": "â žâ —â Šâ â ‡â ‘â ž" }, { "input": "triplets", "output": "â žâ —â Šâ â ‡â ‘â žâ Ž" }, { "input": "triplicate", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ ‘" }, { "input": "triplicated", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ «" }, { "input": "triplicates", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "triplicating", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ ¬" }, { "input": "tripling", "output": "â žâ —â Šâ â ‡â ¬" }, { "input": "triply", "output": "â žâ —â Šâ â ‡â ½" }, { "input": "tripod", "output": "â žâ —â Šâ â •â ™" }, { "input": "tripods", "output": "â žâ —â Šâ â •⠙⠎" }, { "input": "tripos", "output": "â žâ —â Šâ â •â Ž" }, { "input": "tripped", "output": "â žâ —â Šâ â â «" }, { "input": "tripping", "output": "â žâ —â Šâ â â ¬" }, { "input": "trips", "output": "â žâ —â Šâ â Ž" }, { "input": "triptych", "output": "â žâ —â Šâ â žâ ½â ¡" }, { "input": "triptychs", "output": "â žâ —â Šâ â žâ ½â ¡â Ž" }, { "input": "trisect", "output": "⠞⠗⠊⠎⠑⠉⠞" }, { "input": "trisected", "output": "⠞⠗⠊⠎⠑⠉⠞⠫" }, { "input": "trisecting", "output": "⠞⠗⠊⠎⠑⠉⠞⠬" }, { "input": "trisects", "output": "⠞⠗⠊⠎⠑⠉⠞⠎" }, { "input": "trite", "output": "â žâ —â Šâ žâ ‘" }, { "input": "tritely", "output": "⠞⠗⠊⠞⠑⠇⠽" }, { "input": "triteness", "output": "â žâ —â Šâ žâ ‘â °â Ž" }, { "input": "triter", "output": "â žâ —â Šâ žâ »" }, { "input": "tritest", "output": "â žâ —â Šâ žâ ‘â Œ" }, { "input": "triumph", "output": "â žâ —â Šâ ¥â â â “" }, { "input": "triumphal", "output": "â žâ —â Šâ ¥â â â “â â ‡" }, { "input": "triumphant", "output": "â žâ —â Šâ ¥â â â “â â â ž" }, { "input": "triumphantly", "output": "â žâ —â Šâ ¥â â â “â â â žâ ‡â ½" }, { "input": "triumphed", "output": "â žâ —â Šâ ¥â â â “â «" }, { "input": "triumphing", "output": "â žâ —â Šâ ¥â â â “â ¬" }, { "input": "triumphs", "output": "â žâ —â Šâ ¥â â â “â Ž" }, { "input": "triumvirate", "output": "â žâ —â Šâ ¥â â §â Šâ —â â žâ ‘" }, { "input": "triumvirates", "output": "â žâ —â Šâ ¥â â §â Šâ —â â žâ ‘â Ž" }, { "input": "trivet", "output": "â žâ —â Šâ §â ‘â ž" }, { "input": "trivets", "output": "â žâ —â Šâ §â ‘â žâ Ž" }, { "input": "trivia", "output": "â žâ —â Šâ §â Šâ " }, { "input": "trivial", "output": "â žâ —â Šâ §â Šâ â ‡" }, { "input": "trivialities", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "triviality", "output": "â žâ —â Šâ §â Šâ â ‡â °â ½" }, { "input": "trivialize", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ ‘" }, { "input": "trivialized", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ «" }, { "input": "trivializes", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "trivializing", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ ¬" }, { "input": "trivially", "output": "â žâ —â Šâ §â Šâ â ‡â ‡â ½" }, { "input": "trochee", "output": "â žâ —â •â ¡â ‘â ‘" }, { "input": "trochees", "output": "â žâ —â •â ¡â ‘â ‘â Ž" }, { "input": "trod", "output": "â žâ —â •â ™" }, { "input": "trodden", "output": "⠞⠗⠕⠙⠙⠢" }, { "input": "troika", "output": "â žâ —â •â Šâ …â " }, { "input": "troikas", "output": "â žâ —â •â Šâ …â â Ž" }, { "input": "troll", "output": "⠞⠗⠕⠇⠇" }, { "input": "trolled", "output": "⠞⠗⠕⠇⠇⠫" }, { "input": "trolley", "output": "⠞⠗⠕⠇⠇⠑⠽" }, { "input": "trolleys", "output": "⠞⠗⠕⠇⠇⠑⠽⠎" }, { "input": "trollies", "output": "⠞⠗⠕⠇⠇⠊⠑⠎" }, { "input": "trolling", "output": "⠞⠗⠕⠇⠇⠬" }, { "input": "trollop", "output": "⠞⠗⠕⠇⠇⠕â " }, { "input": "trollops", "output": "⠞⠗⠕⠇⠇⠕â â Ž" }, { "input": "trolls", "output": "⠞⠗⠕⠇⠇⠎" }, { "input": "trolly", "output": "⠞⠗⠕⠇⠇⠽" }, { "input": "trombone", "output": "â žâ —â •â â ƒâ â •" }, { "input": "trombones", "output": "â žâ —â •â â ƒâ â •â Ž" }, { "input": "trombonist", "output": "â žâ —â •â â ƒâ •â â Šâ Œ" }, { "input": "trombonists", "output": "â žâ —â •â â ƒâ •â â Šâ Œâ Ž" }, { "input": "tromp", "output": "â žâ —â •â â " }, { "input": "tromped", "output": "â žâ —â •â â â «" }, { "input": "tromping", "output": "â žâ —â •â â â ¬" }, { "input": "tromps", "output": "â žâ —â •â â â Ž" }, { "input": "troop", "output": "â žâ —â •â •â " }, { "input": "trooped", "output": "â žâ —â •â •â â «" }, { "input": "trooper", "output": "â žâ —â •â •â â »" }, { "input": "troopers", "output": "â žâ —â •â •â â »â Ž" }, { "input": "trooping", "output": "â žâ —â •â •â â ¬" }, { "input": "troops", "output": "â žâ —â •â •â â Ž" }, { "input": "troopship", "output": "â žâ —â •â •â â ©â Šâ " }, { "input": "troopships", "output": "â žâ —â •â •â â ©â Šâ â Ž" }, { "input": "trope", "output": "â žâ —â •â â ‘" }, { "input": "tropes", "output": "â žâ —â •â â ‘â Ž" }, { "input": "trophies", "output": "â žâ —â •â â “â Šâ ‘â Ž" }, { "input": "trophy", "output": "â žâ —â •â â “â ½" }, { "input": "tropic", "output": "â žâ —â •â â Šâ ‰" }, { "input": "tropical", "output": "â žâ —â •â â Šâ ‰â â ‡" }, { "input": "tropics", "output": "â žâ —â •â â Šâ ‰â Ž" }, { "input": "tropism", "output": "â žâ —â •â â Šâ Žâ " }, { "input": "tropisms", "output": "â žâ —â •â â Šâ Žâ â Ž" }, { "input": "troposphere", "output": "â žâ —â •â â •â Žâ â â “" }, { "input": "tropospheres", "output": "â žâ —â •â â •â Žâ â â “â Ž" }, { "input": "trot", "output": "â žâ —â •â ž" }, { "input": "troth", "output": "â žâ —â •â ¹" }, { "input": "trots", "output": "â žâ —â •â žâ Ž" }, { "input": "trotted", "output": "â žâ —â •â žâ žâ «" }, { "input": "trotter", "output": "â žâ —â •â žâ žâ »" }, { "input": "trotters", "output": "⠞⠗⠕⠞⠞⠻⠎" }, { "input": "trotting", "output": "â žâ —â •â žâ žâ ¬" }, { "input": "troubadour", "output": "⠞⠗⠳⠃â â ™â ³â —" }, { "input": "troubadours", "output": "⠞⠗⠳⠃â â ™â ³â —â Ž" }, { "input": "trouble", "output": "⠞⠗⠳⠃⠇⠑" }, { "input": "troubled", "output": "⠞⠗⠳⠃⠇⠫" }, { "input": "troublemaker", "output": "⠞⠗⠳⠃⠇⠑â â â …â »" }, { "input": "troublemakers", "output": "⠞⠗⠳⠃⠇⠑â â â …⠻⠎" }, { "input": "troubles", "output": "⠞⠗⠳⠃⠇⠑⠎" }, { "input": "troubleshoot", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠕⠞" }, { "input": "troubleshooted", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠕⠞⠫" }, { "input": "troubleshooter", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠕⠞⠻" }, { "input": "troubleshooters", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠕⠞⠻⠎" }, { "input": "troubleshooting", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠕⠞⠬" }, { "input": "troubleshoots", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠕⠞⠎" }, { "input": "troubleshot", "output": "⠞⠗⠳⠃⠇⠑⠩⠕⠞" }, { "input": "troublesome", "output": "⠞⠗⠳⠃⠇⠑â â Ž" }, { "input": "troubling", "output": "⠞⠗⠳⠃⠇⠬" }, { "input": "trough", "output": "⠞⠗⠳⠣" }, { "input": "troughs", "output": "⠞⠗⠳⠣⠎" }, { "input": "trounce", "output": "â žâ —â ³â â ‰â ‘" }, { "input": "trounced", "output": "â žâ —â ³â â ‰â «" }, { "input": "trounces", "output": "â žâ —â ³â â ‰â ‘â Ž" }, { "input": "trouncing", "output": "â žâ —â ³â â ‰â ¬" }, { "input": "troupe", "output": "â žâ —â ³â â ‘" }, { "input": "trouped", "output": "â žâ —â ³â â «" }, { "input": "trouper", "output": "â žâ —â ³â â »" }, { "input": "troupers", "output": "â žâ —â ³â â »â Ž" }, { "input": "troupes", "output": "â žâ —â ³â â ‘â Ž" }, { "input": "trouping", "output": "â žâ —â ³â â ¬" }, { "input": "trouser", "output": "⠞⠗⠳⠎⠻" }, { "input": "trousers", "output": "⠞⠗⠳⠎⠻⠎" }, { "input": "trousseau", "output": "⠞⠗⠳⠎⠎⠂⠥" }, { "input": "trousseaus", "output": "⠞⠗⠳⠎⠎⠂⠥⠎" }, { "input": "trousseaux", "output": "⠞⠗⠳⠎⠎⠂⠥⠭" }, { "input": "trout", "output": "⠞⠗⠳⠞" }, { "input": "trouts", "output": "⠞⠗⠳⠞⠎" }, { "input": "trowel", "output": "⠞⠗⠪⠑⠇" }, { "input": "troweled", "output": "⠞⠗⠪⠑⠇⠫" }, { "input": "troweling", "output": "⠞⠗⠪⠑⠇⠬" }, { "input": "trowelled", "output": "⠞⠗⠪⠑⠇⠇⠫" }, { "input": "trowelling", "output": "⠞⠗⠪⠑⠇⠇⠬" }, { "input": "trowels", "output": "⠞⠗⠪⠑⠇⠎" }, { "input": "troy", "output": "â žâ —â •â ½" }, { "input": "troys", "output": "⠞⠗⠕⠽⠎" }, { "input": "truancy", "output": "â žâ —â ¥â â â ‰â ½" }, { "input": "truant", "output": "â žâ —â ¥â â â ž" }, { "input": "truanted", "output": "â žâ —â ¥â â â žâ «" }, { "input": "truanting", "output": "â žâ —â ¥â â â žâ ¬" }, { "input": "truants", "output": "â žâ —â ¥â â â žâ Ž" }, { "input": "truce", "output": "⠞⠗⠥⠉⠑" }, { "input": "truces", "output": "⠞⠗⠥⠉⠑⠎" }, { "input": "truck", "output": "⠞⠗⠥⠉⠅" }, { "input": "trucked", "output": "⠞⠗⠥⠉⠅⠫" }, { "input": "trucker", "output": "⠞⠗⠥⠉⠅⠻" }, { "input": "truckers", "output": "⠞⠗⠥⠉⠅⠻⠎" }, { "input": "trucking", "output": "⠞⠗⠥⠉⠅⠬" }, { "input": "truckle", "output": "⠞⠗⠥⠉⠅⠇⠑" }, { "input": "truckled", "output": "⠞⠗⠥⠉⠅⠇⠫" }, { "input": "truckles", "output": "⠞⠗⠥⠉⠅⠇⠑⠎" }, { "input": "truckling", "output": "⠞⠗⠥⠉⠅⠇⠬" }, { "input": "truckload", "output": "⠞⠗⠥⠉⠅⠇⠕â â ™" }, { "input": "truckloads", "output": "⠞⠗⠥⠉⠅⠇⠕â â ™â Ž" }, { "input": "trucks", "output": "⠞⠗⠥⠉⠅⠎" }, { "input": "truculence", "output": "⠞⠗⠥⠉⠥⠇⠰⠑" }, { "input": "truculent", "output": "⠞⠗⠥⠉⠥⠇⠢⠞" }, { "input": "truculently", "output": "⠞⠗⠥⠉⠥⠇⠢⠞⠇⠽" }, { "input": "trudge", "output": "⠞⠗⠥⠙⠛⠑" }, { "input": "trudged", "output": "⠞⠗⠥⠙⠛⠫" }, { "input": "trudges", "output": "⠞⠗⠥⠙⠛⠑⠎" }, { "input": "trudging", "output": "⠞⠗⠥⠙⠛⠬" }, { "input": "true", "output": "⠞⠗⠥⠑" }, { "input": "trued", "output": "⠞⠗⠥⠫" }, { "input": "trueing", "output": "⠞⠗⠥⠑⠬" }, { "input": "truer", "output": "⠞⠗⠥⠻" }, { "input": "trues", "output": "⠞⠗⠥⠑⠎" }, { "input": "truest", "output": "⠞⠗⠥⠑⠌" }, { "input": "truffle", "output": "⠞⠗⠥⠖⠇⠑" }, { "input": "truffles", "output": "⠞⠗⠥⠖⠇⠑⠎" }, { "input": "truing", "output": "⠞⠗⠥⠬" }, { "input": "truism", "output": "⠞⠗⠥⠊⠎â " }, { "input": "truisms", "output": "⠞⠗⠥⠊⠎â â Ž" }, { "input": "truly", "output": "⠞⠗⠥⠇⠽" }, { "input": "trump", "output": "â žâ —â ¥â â " }, { "input": "trumped", "output": "â žâ —â ¥â â â «" }, { "input": "trumpery", "output": "â žâ —â ¥â â â »â ½" }, { "input": "trumpet", "output": "â žâ —â ¥â â â ‘â ž" }, { "input": "trumpeted", "output": "â žâ —â ¥â â â ‘â žâ «" }, { "input": "trumpeter", "output": "â žâ —â ¥â â â ‘â žâ »" }, { "input": "trumpeters", "output": "â žâ —â ¥â â â ‘⠞⠻⠎" }, { "input": "trumpeting", "output": "â žâ —â ¥â â â ‘â žâ ¬" }, { "input": "trumpets", "output": "â žâ —â ¥â â â ‘â žâ Ž" }, { "input": "trumping", "output": "â žâ —â ¥â â â ¬" }, { "input": "trumps", "output": "â žâ —â ¥â â â Ž" }, { "input": "truncate", "output": "â žâ —â ¥â â ‰â â žâ ‘" }, { "input": "truncated", "output": "â žâ —â ¥â â ‰â â žâ «" }, { "input": "truncates", "output": "â žâ —â ¥â â ‰â â žâ ‘â Ž" }, { "input": "truncating", "output": "â žâ —â ¥â â ‰â â žâ ¬" }, { "input": "truncation", "output": "â žâ —â ¥â â ‰â â °â " }, { "input": "truncheon", "output": "â žâ —â ¥â â ¡â ‘â •â " }, { "input": "truncheons", "output": "â žâ —â ¥â â ¡â ‘â •â â Ž" }, { "input": "trundle", "output": "â žâ —â ¥â â ™â ‡â ‘" }, { "input": "trundled", "output": "â žâ —â ¥â â ™â ‡â «" }, { "input": "trundles", "output": "â žâ —â ¥â â ™â ‡â ‘â Ž" }, { "input": "trundling", "output": "â žâ —â ¥â â ™â ‡â ¬" }, { "input": "trunk", "output": "â žâ —â ¥â â …" }, { "input": "trunking", "output": "â žâ —â ¥â â …â ¬" }, { "input": "trunks", "output": "â žâ —â ¥â â …â Ž" }, { "input": "truss", "output": "⠞⠗⠥⠎⠎" }, { "input": "trussed", "output": "⠞⠗⠥⠎⠎⠫" }, { "input": "trusses", "output": "⠞⠗⠥⠎⠎⠑⠎" }, { "input": "trussing", "output": "⠞⠗⠥⠎⠎⠬" }, { "input": "trust", "output": "⠞⠗⠥⠌" }, { "input": "trusted", "output": "⠞⠗⠥⠌⠫" }, { "input": "trustee", "output": "⠞⠗⠥⠌⠑⠑" }, { "input": "trustees", "output": "⠞⠗⠥⠌⠑⠑⠎" }, { "input": "trusteeship", "output": "⠞⠗⠥⠌⠑⠑⠩⠊â " }, { "input": "trusteeships", "output": "⠞⠗⠥⠌⠑⠑⠩⠊â â Ž" }, { "input": "trustful", "output": "⠞⠗⠥⠌⠰⠇" }, { "input": "trustfully", "output": "⠞⠗⠥⠌⠰⠇⠇⠽" }, { "input": "trustfulness", "output": "⠞⠗⠥⠌⠰⠇⠰⠎" }, { "input": "trustier", "output": "⠞⠗⠥⠌⠊⠻" }, { "input": "trusties", "output": "⠞⠗⠥⠌⠊⠑⠎" }, { "input": "trustiest", "output": "⠞⠗⠥⠌⠊⠑⠌" }, { "input": "trusting", "output": "⠞⠗⠥⠌⠬" }, { "input": "trusts", "output": "⠞⠗⠥⠌⠎" }, { "input": "trustworthier", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠻" }, { "input": "trustworthiest", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠑⠌" }, { "input": "trustworthiness", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠰⠎" }, { "input": "trustworthy", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠽" }, { "input": "trusty", "output": "⠞⠗⠥⠌⠽" }, { "input": "truth", "output": "⠞⠗⠥⠹" }, { "input": "truthful", "output": "⠞⠗⠥⠹⠰⠇" }, { "input": "truthfully", "output": "⠞⠗⠥⠹⠰⠇⠇⠽" }, { "input": "truthfulness", "output": "⠞⠗⠥⠹⠰⠇⠰⠎" }, { "input": "truths", "output": "⠞⠗⠥⠹⠎" }, { "input": "try", "output": "â žâ —â ½" }, { "input": "trying", "output": "⠞⠗⠽⠬" }, { "input": "tryout", "output": "⠞⠗⠽⠳⠞" }, { "input": "tryouts", "output": "⠞⠗⠽⠳⠞⠎" }, { "input": "tryst", "output": "⠞⠗⠽⠌" }, { "input": "trysted", "output": "⠞⠗⠽⠌⠫" }, { "input": "trysting", "output": "⠞⠗⠽⠌⠬" }, { "input": "trysts", "output": "⠞⠗⠽⠌⠎" }, { "input": "ts", "output": "â žâ Ž" }, { "input": "tsar", "output": "â žâ Žâ œ" }, { "input": "tsarina", "output": "⠞⠎⠜⠔â " }, { "input": "tsarinas", "output": "⠞⠎⠜⠔â â Ž" }, { "input": "tsars", "output": "⠞⠎⠜⠎" }, { "input": "tsunami", "output": "â žâ Žâ ¥â â â â Š" }, { "input": "tsunamis", "output": "â žâ Žâ ¥â â â â Šâ Ž" }, { "input": "tub", "output": "⠞⠥⠃" }, { "input": "tuba", "output": "⠞⠥⠃â " }, { "input": "tubas", "output": "⠞⠥⠃â â Ž" }, { "input": "tubbier", "output": "⠞⠥⠆⠊⠻" }, { "input": "tubbiest", "output": "⠞⠥⠆⠊⠑⠌" }, { "input": "tubby", "output": "⠞⠥⠆⠽" }, { "input": "tube", "output": "⠞⠥⠃⠑" }, { "input": "tubed", "output": "⠞⠥⠃⠫" }, { "input": "tubeless", "output": "⠞⠥⠃⠑⠨⠎" }, { "input": "tuber", "output": "⠞⠥⠃⠻" }, { "input": "tubercle", "output": "⠞⠥⠃⠻⠉⠇⠑" }, { "input": "tubercles", "output": "⠞⠥⠃⠻⠉⠇⠑⠎" }, { "input": "tubercular", "output": "⠞⠥⠃⠻⠉⠥⠇⠜" }, { "input": "tuberculosis", "output": "⠞⠥⠃⠻⠉⠥⠇⠕⠎⠊⠎" }, { "input": "tuberculous", "output": "⠞⠥⠃⠻⠉⠥⠇⠳⠎" }, { "input": "tuberous", "output": "⠞⠥⠃⠻⠳⠎" }, { "input": "tubers", "output": "⠞⠥⠃⠻⠎" }, { "input": "tubes", "output": "⠞⠥⠃⠑⠎" }, { "input": "tubing", "output": "⠞⠥⠃⠬" }, { "input": "tubs", "output": "⠞⠥⠃⠎" }, { "input": "tubular", "output": "⠞⠥⠃⠥⠇⠜" }, { "input": "tuck", "output": "⠞⠥⠉⠅" }, { "input": "tucked", "output": "⠞⠥⠉⠅⠫" }, { "input": "tucker", "output": "⠞⠥⠉⠅⠻" }, { "input": "tuckered", "output": "⠞⠥⠉⠅⠻⠫" }, { "input": "tuckering", "output": "⠞⠥⠉⠅⠻⠬" }, { "input": "tuckers", "output": "⠞⠥⠉⠅⠻⠎" }, { "input": "tucking", "output": "⠞⠥⠉⠅⠬" }, { "input": "tucks", "output": "⠞⠥⠉⠅⠎" }, { "input": "tuft", "output": "⠞⠥⠋⠞" }, { "input": "tufted", "output": "⠞⠥⠋⠞⠫" }, { "input": "tufting", "output": "⠞⠥⠋⠞⠬" }, { "input": "tufts", "output": "⠞⠥⠋⠞⠎" }, { "input": "tug", "output": "⠞⠥⠛" }, { "input": "tugboat", "output": "⠞⠥⠛⠃⠕â â ž" }, { "input": "tugboats", "output": "⠞⠥⠛⠃⠕â â žâ Ž" }, { "input": "tugged", "output": "⠞⠥⠶⠫" }, { "input": "tugging", "output": "⠞⠥⠶⠬" }, { "input": "tugs", "output": "⠞⠥⠛⠎" }, { "input": "tuition", "output": "⠞⠥⠊⠰â " }, { "input": "tulip", "output": "⠞⠥⠇⠊â " }, { "input": "tulips", "output": "⠞⠥⠇⠊â â Ž" }, { "input": "tulle", "output": "⠞⠥⠇⠇⠑" }, { "input": "tumble", "output": "â žâ ¥â â ƒâ ‡â ‘" }, { "input": "tumbled", "output": "â žâ ¥â â ƒâ ‡â «" }, { "input": "tumbledown", "output": "â žâ ¥â â ƒâ ‡â ‘⠙⠪â " }, { "input": "tumbler", "output": "â žâ ¥â â ƒâ ‡â »" }, { "input": "tumblers", "output": "â žâ ¥â â ƒâ ‡â »â Ž" }, { "input": "tumbles", "output": "â žâ ¥â â ƒâ ‡â ‘â Ž" }, { "input": "tumbleweed", "output": "â žâ ¥â â ƒâ ‡â ‘⠺⠑⠫" }, { "input": "tumbleweeds", "output": "â žâ ¥â â ƒâ ‡â ‘⠺⠑⠫⠎" }, { "input": "tumbling", "output": "â žâ ¥â â ƒâ ‡â ¬" }, { "input": "tumbrel", "output": "â žâ ¥â â ƒâ —â ‘â ‡" }, { "input": "tumbrels", "output": "â žâ ¥â â ƒâ —⠑⠇⠎" }, { "input": "tumbril", "output": "â žâ ¥â â ƒâ —â Šâ ‡" }, { "input": "tumbrils", "output": "â žâ ¥â â ƒâ —⠊⠇⠎" }, { "input": "tumid", "output": "â žâ ¥â â Šâ ™" }, { "input": "tummies", "output": "â žâ ¥â â â Šâ ‘â Ž" }, { "input": "tummy", "output": "â žâ ¥â â â ½" }, { "input": "tumor", "output": "â žâ ¥â â •â —" }, { "input": "tumors", "output": "â žâ ¥â â •â —â Ž" }, { "input": "tumult", "output": "â žâ ¥â â ¥â ‡â ž" }, { "input": "tumults", "output": "â žâ ¥â â ¥â ‡â žâ Ž" }, { "input": "tumultuous", "output": "â žâ ¥â â ¥â ‡â žâ ¥â ³â Ž" }, { "input": "tun", "output": "â žâ ¥â " }, { "input": "tuna", "output": "â žâ ¥â â " }, { "input": "tunas", "output": "â žâ ¥â â â Ž" }, { "input": "tundra", "output": "â žâ ¥â â ™â —â " }, { "input": "tundras", "output": "â žâ ¥â â ™â —â â Ž" }, { "input": "tune", "output": "â žâ ¥â â ‘" }, { "input": "tuned", "output": "â žâ ¥â â «" }, { "input": "tuneful", "output": "â žâ ¥â â ‘â °â ‡" }, { "input": "tunefully", "output": "â žâ ¥â â ‘⠰⠇⠇⠽" }, { "input": "tuneless", "output": "â žâ ¥â â ‘⠨⠎" }, { "input": "tunelessly", "output": "â žâ ¥â â ‘⠨⠎⠇⠽" }, { "input": "tuner", "output": "â žâ ¥â â »" }, { "input": "tuners", "output": "â žâ ¥â â »â Ž" }, { "input": "tunes", "output": "â žâ ¥â â ‘â Ž" }, { "input": "tungsten", "output": "â žâ ¥â â ›â Œâ ¢" }, { "input": "tunic", "output": "â žâ ¥â â Šâ ‰" }, { "input": "tunics", "output": "â žâ ¥â â Šâ ‰â Ž" }, { "input": "tuning", "output": "â žâ ¥â â ¬" }, { "input": "tunnel", "output": "â žâ ¥â â â ‘â ‡" }, { "input": "tunneled", "output": "â žâ ¥â â â ‘⠇⠫" }, { "input": "tunneling", "output": "â žâ ¥â â â ‘⠇⠬" }, { "input": "tunnelings", "output": "â žâ ¥â â â ‘⠇⠬⠎" }, { "input": "tunnelled", "output": "â žâ ¥â â â ‘⠇⠇⠫" }, { "input": "tunnelling", "output": "â žâ ¥â â â ‘⠇⠇⠬" }, { "input": "tunnels", "output": "â žâ ¥â â â ‘⠇⠎" }, { "input": "tunnies", "output": "â žâ ¥â â â Šâ ‘â Ž" }, { "input": "tunny", "output": "â žâ ¥â â â ½" }, { "input": "tuns", "output": "â žâ ¥â â Ž" }, { "input": "turban", "output": "⠞⠥⠗⠃â â " }, { "input": "turbans", "output": "⠞⠥⠗⠃â â â Ž" }, { "input": "turbid", "output": "⠞⠥⠗⠃⠊⠙" }, { "input": "turbine", "output": "⠞⠥⠗⠃⠔⠑" }, { "input": "turbines", "output": "⠞⠥⠗⠃⠔⠑⠎" }, { "input": "turbojet", "output": "⠞⠥⠗⠃⠕⠚⠑⠞" }, { "input": "turbojets", "output": "⠞⠥⠗⠃⠕⠚⠑⠞⠎" }, { "input": "turboprop", "output": "⠞⠥⠗⠃⠕â â —â •â " }, { "input": "turboprops", "output": "⠞⠥⠗⠃⠕â â —â •â â Ž" }, { "input": "turbot", "output": "⠞⠥⠗⠃⠕⠞" }, { "input": "turbots", "output": "⠞⠥⠗⠃⠕⠞⠎" }, { "input": "turbulence", "output": "⠞⠥⠗⠃⠥⠇⠰⠑" }, { "input": "turbulent", "output": "⠞⠥⠗⠃⠥⠇⠢⠞" }, { "input": "turbulently", "output": "⠞⠥⠗⠃⠥⠇⠢⠞⠇⠽" }, { "input": "turd", "output": "⠞⠥⠗⠙" }, { "input": "turds", "output": "⠞⠥⠗⠙⠎" }, { "input": "tureen", "output": "⠞⠥⠗⠑⠢" }, { "input": "tureens", "output": "⠞⠥⠗⠑⠢⠎" }, { "input": "turf", "output": "⠞⠥⠗⠋" }, { "input": "turfed", "output": "⠞⠥⠗⠋⠫" }, { "input": "turfing", "output": "⠞⠥⠗⠋⠬" }, { "input": "turfs", "output": "⠞⠥⠗⠋⠎" }, { "input": "turgid", "output": "⠞⠥⠗⠛⠊⠙" }, { "input": "turgidity", "output": "⠞⠥⠗⠛⠊⠙⠰⠽" }, { "input": "turgidly", "output": "⠞⠥⠗⠛⠊⠙⠇⠽" }, { "input": "turkey", "output": "⠞⠥⠗⠅⠑⠽" }, { "input": "turkeys", "output": "⠞⠥⠗⠅⠑⠽⠎" }, { "input": "turmeric", "output": "⠞⠥⠗â â »â Šâ ‰" }, { "input": "turmerics", "output": "⠞⠥⠗â â »â Šâ ‰â Ž" }, { "input": "turmoil", "output": "⠞⠥⠗â â •â Šâ ‡" }, { "input": "turmoils", "output": "⠞⠥⠗â â •⠊⠇⠎" }, { "input": "turn", "output": "⠞⠥⠗â " }, { "input": "turnabout", "output": "⠞⠥⠗â â â ƒ" }, { "input": "turnabouts", "output": "⠞⠥⠗â â â ƒâ Ž" }, { "input": "turnaround", "output": "⠞⠥⠗â â œâ ¨â ™" }, { "input": "turnarounds", "output": "⠞⠥⠗â â œâ ¨â ™â Ž" }, { "input": "turncoat", "output": "⠞⠥⠗â â ‰â •â â ž" }, { "input": "turncoats", "output": "⠞⠥⠗â â ‰â •â â žâ Ž" }, { "input": "turned", "output": "⠞⠥⠗â â «" }, { "input": "turner", "output": "⠞⠥⠗â â »" }, { "input": "turners", "output": "⠞⠥⠗â â »â Ž" }, { "input": "turning", "output": "⠞⠥⠗â â ¬" }, { "input": "turnip", "output": "⠞⠥⠗â â Šâ " }, { "input": "turnips", "output": "⠞⠥⠗â â Šâ â Ž" }, { "input": "turnkey", "output": "⠞⠥⠗â â …â ‘â ½" }, { "input": "turnkeys", "output": "⠞⠥⠗â â …⠑⠽⠎" }, { "input": "turnoff", "output": "⠞⠥⠗â â ·â ‹" }, { "input": "turnoffs", "output": "⠞⠥⠗â â ·â ‹â Ž" }, { "input": "turnout", "output": "⠞⠥⠗â â ³â ž" }, { "input": "turnouts", "output": "⠞⠥⠗â â ³â žâ Ž" }, { "input": "turnover", "output": "⠞⠥⠗â â •â §â »" }, { "input": "turnovers", "output": "⠞⠥⠗â â •⠧⠻⠎" }, { "input": "turnpike", "output": "⠞⠥⠗â â â Šâ …â ‘" }, { "input": "turnpikes", "output": "⠞⠥⠗â â â Šâ …â ‘â Ž" }, { "input": "turns", "output": "⠞⠥⠗â â Ž" }, { "input": "turnstile", "output": "⠞⠥⠗â â Œâ Šâ ‡â ‘" }, { "input": "turnstiles", "output": "⠞⠥⠗â â Œâ Šâ ‡â ‘â Ž" }, { "input": "turntable", "output": "⠞⠥⠗â â žâ â ƒâ ‡â ‘" }, { "input": "turntables", "output": "⠞⠥⠗â â žâ â ƒâ ‡â ‘â Ž" }, { "input": "turpentine", "output": "⠞⠥⠗â â ¢â žâ ”â ‘" }, { "input": "turpitude", "output": "⠞⠥⠗â â Šâ žâ ¥â ™â ‘" }, { "input": "turquoise", "output": "⠞⠥⠗⠟⠥⠕⠊⠎⠑" }, { "input": "turquoises", "output": "⠞⠥⠗⠟⠥⠕⠊⠎⠑⠎" }, { "input": "turret", "output": "⠞⠥⠗⠗⠑⠞" }, { "input": "turrets", "output": "⠞⠥⠗⠗⠑⠞⠎" }, { "input": "turtle", "output": "⠞⠥⠗⠞⠇⠑" }, { "input": "turtledove", "output": "⠞⠥⠗⠞⠇⠑⠙⠕⠧⠑" }, { "input": "turtledoves", "output": "⠞⠥⠗⠞⠇⠑⠙⠕⠧⠑⠎" }, { "input": "turtleneck", "output": "⠞⠥⠗⠞⠇⠑â â ‘⠉⠅" }, { "input": "turtlenecks", "output": "⠞⠥⠗⠞⠇⠑â â ‘⠉⠅⠎" }, { "input": "turtles", "output": "⠞⠥⠗⠞⠇⠑⠎" }, { "input": "turves", "output": "⠞⠥⠗⠧⠑⠎" }, { "input": "tush", "output": "⠞⠥⠩" }, { "input": "tushes", "output": "⠞⠥⠩⠑⠎" }, { "input": "tusk", "output": "⠞⠥⠎⠅" }, { "input": "tusked", "output": "⠞⠥⠎⠅⠫" }, { "input": "tusks", "output": "⠞⠥⠎⠅⠎" }, { "input": "tussle", "output": "⠞⠥⠎⠎⠇⠑" }, { "input": "tussled", "output": "⠞⠥⠎⠎⠇⠫" }, { "input": "tussles", "output": "⠞⠥⠎⠎⠇⠑⠎" }, { "input": "tussling", "output": "⠞⠥⠎⠎⠇⠬" }, { "input": "tussock", "output": "⠞⠥⠎⠎⠕⠉⠅" }, { "input": "tussocks", "output": "⠞⠥⠎⠎⠕⠉⠅⠎" }, { "input": "tutelage", "output": "⠞⠥⠞⠑⠇â â ›â ‘" }, { "input": "tutor", "output": "⠞⠥⠞⠕⠗" }, { "input": "tutored", "output": "⠞⠥⠞⠕⠗⠫" }, { "input": "tutorial", "output": "⠞⠥⠞⠕⠗⠊â â ‡" }, { "input": "tutorials", "output": "⠞⠥⠞⠕⠗⠊â â ‡â Ž" }, { "input": "tutoring", "output": "⠞⠥⠞⠕⠗⠬" }, { "input": "tutors", "output": "⠞⠥⠞⠕⠗⠎" }, { "input": "tutu", "output": "⠞⠥⠞⠥" }, { "input": "tutus", "output": "⠞⠥⠞⠥⠎" }, { "input": "tux", "output": "⠞⠥⠭" }, { "input": "tuxedo", "output": "⠞⠥⠭⠫⠕" }, { "input": "tuxedoes", "output": "⠞⠥⠭⠫⠕⠑⠎" }, { "input": "tuxedos", "output": "⠞⠥⠭⠫⠕⠎" }, { "input": "tuxes", "output": "⠞⠥⠭⠑⠎" }, { "input": "twaddle", "output": "â žâ ºâ â ™â ™â ‡â ‘" }, { "input": "twaddled", "output": "â žâ ºâ â ™â ™â ‡â «" }, { "input": "twaddles", "output": "â žâ ºâ â ™â ™â ‡â ‘â Ž" }, { "input": "twaddling", "output": "â žâ ºâ â ™â ™â ‡â ¬" }, { "input": "twain", "output": "â žâ ºâ â ”" }, { "input": "twang", "output": "â žâ ºâ â â ›" }, { "input": "twanged", "output": "â žâ ºâ â â ›â «" }, { "input": "twanging", "output": "â žâ ºâ â â ›â ¬" }, { "input": "twangs", "output": "â žâ ºâ â â ›â Ž" }, { "input": "tweak", "output": "⠞⠺⠂⠅" }, { "input": "tweaked", "output": "⠞⠺⠂⠅⠫" }, { "input": "tweaking", "output": "⠞⠺⠂⠅⠬" }, { "input": "tweaks", "output": "⠞⠺⠂⠅⠎" }, { "input": "twee", "output": "⠞⠺⠑⠑" }, { "input": "tweed", "output": "⠞⠺⠑⠫" }, { "input": "tweedier", "output": "⠞⠺⠑⠫⠊⠻" }, { "input": "tweediest", "output": "⠞⠺⠑⠫⠊⠑⠌" }, { "input": "tweeds", "output": "⠞⠺⠑⠫⠎" }, { "input": "tweedy", "output": "⠞⠺⠑⠫⠽" }, { "input": "tweet", "output": "⠞⠺⠑⠑⠞" }, { "input": "tweeted", "output": "⠞⠺⠑⠑⠞⠫" }, { "input": "tweeter", "output": "⠞⠺⠑⠑⠞⠻" }, { "input": "tweeters", "output": "⠞⠺⠑⠑⠞⠻⠎" }, { "input": "tweeting", "output": "⠞⠺⠑⠑⠞⠬" }, { "input": "tweets", "output": "⠞⠺⠑⠑⠞⠎" }, { "input": "tweezers", "output": "⠞⠺⠑⠑⠵⠻⠎" }, { "input": "twelfth", "output": "⠞⠺⠑⠇⠋⠹" }, { "input": "twelfths", "output": "⠞⠺⠑⠇⠋⠹⠎" }, { "input": "twelve", "output": "⠞⠺⠑⠇⠧⠑" }, { "input": "twelves", "output": "⠞⠺⠑⠇⠧⠑⠎" }, { "input": "twenties", "output": "⠞⠺⠢⠞⠊⠑⠎" }, { "input": "twentieth", "output": "⠞⠺⠢⠞⠊⠑⠹" }, { "input": "twentieths", "output": "⠞⠺⠢⠞⠊⠑⠹⠎" }, { "input": "twenty", "output": "⠞⠺⠢⠞⠽" }, { "input": "twerp", "output": "⠞⠺⠻â " }, { "input": "twerps", "output": "⠞⠺⠻â â Ž" }, { "input": "twice", "output": "⠞⠺⠊⠉⠑" }, { "input": "twiddle", "output": "⠞⠺⠊⠙⠙⠇⠑" }, { "input": "twiddled", "output": "⠞⠺⠊⠙⠙⠇⠫" }, { "input": "twiddles", "output": "⠞⠺⠊⠙⠙⠇⠑⠎" }, { "input": "twiddling", "output": "⠞⠺⠊⠙⠙⠇⠬" }, { "input": "twig", "output": "⠞⠺⠊⠛" }, { "input": "twigged", "output": "⠞⠺⠊⠶⠫" }, { "input": "twiggier", "output": "⠞⠺⠊⠶⠊⠻" }, { "input": "twiggiest", "output": "⠞⠺⠊⠶⠊⠑⠌" }, { "input": "twigging", "output": "⠞⠺⠊⠶⠬" }, { "input": "twiggy", "output": "⠞⠺⠊⠶⠽" }, { "input": "twigs", "output": "⠞⠺⠊⠛⠎" }, { "input": "twilight", "output": "⠞⠺⠊⠇⠊⠣⠞" }, { "input": "twill", "output": "⠞⠺⠊⠇⠇" }, { "input": "twilled", "output": "⠞⠺⠊⠇⠇⠫" }, { "input": "twin", "output": "⠞⠺⠔" }, { "input": "twine", "output": "⠞⠺⠔⠑" }, { "input": "twined", "output": "⠞⠺⠔⠫" }, { "input": "twines", "output": "⠞⠺⠔⠑⠎" }, { "input": "twinge", "output": "⠞⠺⠬⠑" }, { "input": "twinged", "output": "⠞⠺⠬⠫" }, { "input": "twingeing", "output": "⠞⠺⠬⠑⠬" }, { "input": "twinges", "output": "⠞⠺⠬⠑⠎" }, { "input": "twinging", "output": "⠞⠺⠬⠬" }, { "input": "twining", "output": "⠞⠺⠔⠬" }, { "input": "twinkle", "output": "⠞⠺⠔⠅⠇⠑" }, { "input": "twinkled", "output": "⠞⠺⠔⠅⠇⠫" }, { "input": "twinkles", "output": "⠞⠺⠔⠅⠇⠑⠎" }, { "input": "twinkling", "output": "⠞⠺⠔⠅⠇⠬" }, { "input": "twinklings", "output": "⠞⠺⠔⠅⠇⠬⠎" }, { "input": "twinned", "output": "⠞⠺⠔â â «" }, { "input": "twinning", "output": "⠞⠺⠔â â ¬" }, { "input": "twins", "output": "⠞⠺⠔⠎" }, { "input": "twirl", "output": "⠞⠺⠊⠗⠇" }, { "input": "twirled", "output": "⠞⠺⠊⠗⠇⠫" }, { "input": "twirler", "output": "⠞⠺⠊⠗⠇⠻" }, { "input": "twirlers", "output": "⠞⠺⠊⠗⠇⠻⠎" }, { "input": "twirling", "output": "⠞⠺⠊⠗⠇⠬" }, { "input": "twirls", "output": "⠞⠺⠊⠗⠇⠎" }, { "input": "twist", "output": "⠞⠺⠊⠌" }, { "input": "twisted", "output": "⠞⠺⠊⠌⠫" }, { "input": "twister", "output": "⠞⠺⠊⠌⠻" }, { "input": "twisters", "output": "⠞⠺⠊⠌⠻⠎" }, { "input": "twisting", "output": "⠞⠺⠊⠌⠬" }, { "input": "twists", "output": "⠞⠺⠊⠌⠎" }, { "input": "twit", "output": "⠞⠺⠊⠞" }, { "input": "twitch", "output": "⠞⠺⠊⠞⠡" }, { "input": "twitched", "output": "⠞⠺⠊⠞⠡⠫" }, { "input": "twitches", "output": "⠞⠺⠊⠞⠡⠑⠎" }, { "input": "twitching", "output": "⠞⠺⠊⠞⠡⠬" }, { "input": "twits", "output": "⠞⠺⠊⠞⠎" }, { "input": "twitted", "output": "⠞⠺⠊⠞⠞⠫" }, { "input": "twitter", "output": "⠞⠺⠊⠞⠞⠻" }, { "input": "twittered", "output": "⠞⠺⠊⠞⠞⠻⠫" }, { "input": "twittering", "output": "⠞⠺⠊⠞⠞⠻⠬" }, { "input": "twitters", "output": "⠞⠺⠊⠞⠞⠻⠎" }, { "input": "twitting", "output": "⠞⠺⠊⠞⠞⠬" }, { "input": "two", "output": "⠞⠺⠕" }, { "input": "twofer", "output": "⠞⠺⠕⠋⠻" }, { "input": "twofers", "output": "⠞⠺⠕⠋⠻⠎" }, { "input": "twofold", "output": "⠞⠺⠕⠋⠕⠇⠙" }, { "input": "twos", "output": "⠞⠺⠕⠎" }, { "input": "twosome", "output": "⠞⠺⠕â â Ž" }, { "input": "twosomes", "output": "⠞⠺⠕â â Žâ Ž" }, { "input": "tycoon", "output": "⠞⠽⠉⠕⠕â " }, { "input": "tycoons", "output": "⠞⠽⠉⠕⠕â â Ž" }, { "input": "tying", "output": "⠞⠽⠬" }, { "input": "tyke", "output": "⠞⠽⠅⠑" }, { "input": "tykes", "output": "⠞⠽⠅⠑⠎" }, { "input": "tympana", "output": "â žâ ½â â â â â " }, { "input": "tympanum", "output": "â žâ ½â â â â â ¥â " }, { "input": "tympanums", "output": "â žâ ½â â â â â ¥â â Ž" }, { "input": "type", "output": "â žâ ½â â ‘" }, { "input": "typecast", "output": "â žâ ½â â ‘â ‰â â Œ" }, { "input": "typecasting", "output": "â žâ ½â â ‘â ‰â â Œâ ¬" }, { "input": "typecasts", "output": "â žâ ½â â ‘â ‰â â Œâ Ž" }, { "input": "typed", "output": "â žâ ½â â «" }, { "input": "typeface", "output": "â žâ ½â â ‘â ‹â â ‰â ‘" }, { "input": "typefaces", "output": "â žâ ½â â ‘â ‹â â ‰â ‘â Ž" }, { "input": "types", "output": "â žâ ½â â ‘â Ž" }, { "input": "typescript", "output": "â žâ ½â â ‘⠎⠉⠗⠊â â ž" }, { "input": "typescripts", "output": "â žâ ½â â ‘⠎⠉⠗⠊â â žâ Ž" }, { "input": "typeset", "output": "â žâ ½â â ‘â Žâ ‘â ž" }, { "input": "typesets", "output": "â žâ ½â â ‘â Žâ ‘â žâ Ž" }, { "input": "typesetter", "output": "â žâ ½â â ‘â Žâ ‘â žâ žâ »" }, { "input": "typesetters", "output": "â žâ ½â â ‘⠎⠑⠞⠞⠻⠎" }, { "input": "typesetting", "output": "â žâ ½â â ‘â Žâ ‘â žâ žâ ¬" }, { "input": "typewrite", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠑" }, { "input": "typewriter", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠻" }, { "input": "typewriters", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠻⠎" }, { "input": "typewrites", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠑⠎" }, { "input": "typewriting", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠬" }, { "input": "typewritten", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠞⠢" }, { "input": "typewrote", "output": "â žâ ½â â ‘⠺⠗⠕⠞⠑" }, { "input": "typhoid", "output": "â žâ ½â â “â •â Šâ ™" }, { "input": "typhoon", "output": "â žâ ½â â “â •â •â " }, { "input": "typhoons", "output": "â žâ ½â â “â •â •â â Ž" }, { "input": "typhus", "output": "â žâ ½â â “⠥⠎" }, { "input": "typical", "output": "â žâ ½â â Šâ ‰â â ‡" }, { "input": "typically", "output": "â žâ ½â â Šâ ‰â â ‡â ‡â ½" }, { "input": "typified", "output": "â žâ ½â â Šâ ‹â Šâ «" }, { "input": "typifies", "output": "â žâ ½â â Šâ ‹â Šâ ‘â Ž" }, { "input": "typify", "output": "â žâ ½â â Šâ ‹â ½" }, { "input": "typifying", "output": "â žâ ½â â Šâ ‹â ½â ¬" }, { "input": "typing", "output": "â žâ ½â â ¬" }, { "input": "typist", "output": "â žâ ½â â Šâ Œ" }, { "input": "typists", "output": "â žâ ½â â Šâ Œâ Ž" }, { "input": "typo", "output": "â žâ ½â â •" }, { "input": "typographer", "output": "â žâ ½â â •⠛⠗â â â “â »" }, { "input": "typographers", "output": "â žâ ½â â •⠛⠗â â â “⠻⠎" }, { "input": "typographic", "output": "â žâ ½â â •⠛⠗â â â “â Šâ ‰" }, { "input": "typographical", "output": "â žâ ½â â •⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "typographically", "output": "â žâ ½â â •⠛⠗â â â “â Šâ ‰â â ‡â ‡â ½" }, { "input": "typography", "output": "â žâ ½â â •⠛⠗â â â “â ½" }, { "input": "typos", "output": "â žâ ½â â •â Ž" }, { "input": "tyrannical", "output": "⠞⠽⠗â â â â Šâ ‰â â ‡" }, { "input": "tyrannically", "output": "⠞⠽⠗â â â â Šâ ‰â â ‡â ‡â ½" }, { "input": "tyrannies", "output": "⠞⠽⠗â â â â Šâ ‘â Ž" }, { "input": "tyrannize", "output": "⠞⠽⠗â â â â Šâ µâ ‘" }, { "input": "tyrannized", "output": "⠞⠽⠗â â â â Šâ µâ «" }, { "input": "tyrannizes", "output": "⠞⠽⠗â â â â Šâ µâ ‘â Ž" }, { "input": "tyrannizing", "output": "⠞⠽⠗â â â â Šâ µâ ¬" }, { "input": "tyrannosaur", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —" }, { "input": "tyrannosaurs", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —â Ž" }, { "input": "tyrannosaurus", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —⠥⠎" }, { "input": "tyrannosauruses", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —⠥⠎⠑⠎" }, { "input": "tyrannous", "output": "⠞⠽⠗â â â â ³â Ž" }, { "input": "tyranny", "output": "⠞⠽⠗â â â â ½" }, { "input": "tyrant", "output": "⠞⠽⠗â â â ž" }, { "input": "tyrants", "output": "⠞⠽⠗â â â žâ Ž" }, { "input": "tyro", "output": "⠞⠽⠗⠕" }, { "input": "tyroes", "output": "⠞⠽⠗⠕⠑⠎" }, { "input": "tyros", "output": "⠞⠽⠗⠕⠎" }, { "input": "tzar", "output": "⠞⠵⠜" }, { "input": "tzarina", "output": "⠞⠵⠜⠔â " }, { "input": "tzarinas", "output": "⠞⠵⠜⠔â â Ž" }, { "input": "tzars", "output": "⠞⠵⠜⠎" }, { "input": "u", "output": "â °â ¥" }, { "input": "ubiquitous", "output": "⠥⠃⠊⠟⠥⠊⠞⠳⠎" }, { "input": "ubiquitously", "output": "⠥⠃⠊⠟⠥⠊⠞⠳⠎⠇⠽" }, { "input": "ubiquity", "output": "⠥⠃⠊⠟⠥⠰⠽" }, { "input": "udder", "output": "⠥⠙⠙⠻" }, { "input": "udders", "output": "⠥⠙⠙⠻⠎" }, { "input": "ugh", "output": "⠥⠣" }, { "input": "uglier", "output": "⠥⠛⠇⠊⠻" }, { "input": "ugliest", "output": "⠥⠛⠇⠊⠑⠌" }, { "input": "ugliness", "output": "⠥⠛⠇⠊⠰⠎" }, { "input": "ugly", "output": "⠥⠛⠇⠽" }, { "input": "uh", "output": "⠥⠓" }, { "input": "ukelele", "output": "⠥⠅⠑⠇⠑⠇⠑" }, { "input": "ukeleles", "output": "⠥⠅⠑⠇⠑⠇⠑⠎" }, { "input": "ukulele", "output": "⠥⠅⠥⠇⠑⠇⠑" }, { "input": "ukuleles", "output": "⠥⠅⠥⠇⠑⠇⠑⠎" }, { "input": "ulcer", "output": "⠥⠇⠉⠻" }, { "input": "ulcerate", "output": "⠥⠇⠉⠻â â žâ ‘" }, { "input": "ulcerated", "output": "⠥⠇⠉⠻â â žâ «" }, { "input": "ulcerates", "output": "⠥⠇⠉⠻â â žâ ‘â Ž" }, { "input": "ulcerating", "output": "⠥⠇⠉⠻â â žâ ¬" }, { "input": "ulceration", "output": "⠥⠇⠉⠻â â °â " }, { "input": "ulcerous", "output": "⠥⠇⠉⠻⠳⠎" }, { "input": "ulcers", "output": "⠥⠇⠉⠻⠎" }, { "input": "ulna", "output": "⠥⠇â â " }, { "input": "ulnae", "output": "⠥⠇â â â ‘" }, { "input": "ulnas", "output": "⠥⠇â â â Ž" }, { "input": "ulterior", "output": "⠥⠇⠞⠻⠊⠕⠗" }, { "input": "ultimata", "output": "⠥⠇⠞⠊â â â žâ " }, { "input": "ultimate", "output": "⠥⠇⠞⠊â â â žâ ‘" }, { "input": "ultimately", "output": "⠥⠇⠞⠊â â â žâ ‘⠇⠽" }, { "input": "ultimatum", "output": "⠥⠇⠞⠊â â â žâ ¥â " }, { "input": "ultimatums", "output": "⠥⠇⠞⠊â â â žâ ¥â â Ž" }, { "input": "ultra", "output": "⠥⠇⠞⠗â " }, { "input": "ultraconservative", "output": "⠥⠇⠞⠗â â ‰â •â â Žâ »â §â â žâ Šâ §â ‘" }, { "input": "ultraconservatives", "output": "⠥⠇⠞⠗â â ‰â •â â Žâ »â §â â žâ Šâ §â ‘â Ž" }, { "input": "ultramarine", "output": "⠥⠇⠞⠗â â â œâ ”â ‘" }, { "input": "ultras", "output": "⠥⠇⠞⠗â â Ž" }, { "input": "ultrasonic", "output": "⠥⠇⠞⠗â â Žâ •â â Šâ ‰" }, { "input": "ultrasonically", "output": "⠥⠇⠞⠗â â Žâ •â â Šâ ‰â â ‡â ‡â ½" }, { "input": "ultrasound", "output": "⠥⠇⠞⠗â â Žâ ¨â ™" }, { "input": "ultrasounds", "output": "⠥⠇⠞⠗â â Žâ ¨â ™â Ž" }, { "input": "ultraviolet", "output": "⠥⠇⠞⠗â â §â Šâ •⠇⠑⠞" }, { "input": "ululate", "output": "⠥⠇⠥⠇â â žâ ‘" }, { "input": "ululated", "output": "⠥⠇⠥⠇â â žâ «" }, { "input": "ululates", "output": "⠥⠇⠥⠇â â žâ ‘â Ž" }, { "input": "ululating", "output": "⠥⠇⠥⠇â â žâ ¬" }, { "input": "um", "output": "â ¥â " }, { "input": "umbel", "output": "â ¥â â ƒâ ‘â ‡" }, { "input": "umbels", "output": "â ¥â â ƒâ ‘⠇⠎" }, { "input": "umber", "output": "â ¥â â ƒâ »" }, { "input": "umbilical", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â â ‡" }, { "input": "umbilici", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â Š" }, { "input": "umbilicus", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â ¥â Ž" }, { "input": "umbilicuses", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â ¥â Žâ ‘â Ž" }, { "input": "umbrage", "output": "â ¥â â ƒâ —â â ›â ‘" }, { "input": "umbrella", "output": "â ¥â â ƒâ —⠑⠇⠇â " }, { "input": "umbrellas", "output": "â ¥â â ƒâ —⠑⠇⠇â â Ž" }, { "input": "umiak", "output": "â ¥â â Šâ â …" }, { "input": "umiaks", "output": "â ¥â â Šâ â …â Ž" }, { "input": "umlaut", "output": "â ¥â â ‡â â ¥â ž" }, { "input": "umlauts", "output": "â ¥â â ‡â â ¥â žâ Ž" }, { "input": "ump", "output": "â ¥â â " }, { "input": "umped", "output": "â ¥â â â «" }, { "input": "umping", "output": "â ¥â â â ¬" }, { "input": "umpire", "output": "â ¥â â â Šâ —â ‘" }, { "input": "umpired", "output": "â ¥â â â Šâ —â «" }, { "input": "umpires", "output": "â ¥â â â Šâ —â ‘â Ž" }, { "input": "umpiring", "output": "â ¥â â â Šâ —â ¬" }, { "input": "umps", "output": "â ¥â â â Ž" }, { "input": "umpteen", "output": "â ¥â â â žâ ‘â ¢" }, { "input": "umpteenth", "output": "â ¥â â â žâ ‘⠢⠹" }, { "input": "unabashed", "output": "â ¥â â â ƒâ â ©â «" }, { "input": "unabated", "output": "â ¥â â â ƒâ â žâ «" }, { "input": "unable", "output": "â ¥â â â ƒâ ‡â ‘" }, { "input": "unabridged", "output": "â ¥â â â ƒâ —⠊⠙⠛⠫" }, { "input": "unabridgeds", "output": "â ¥â â â ƒâ —⠊⠙⠛⠫⠎" }, { "input": "unaccented", "output": "â ¥â â â ’⠢⠞⠫" }, { "input": "unacceptability", "output": "â ¥â â â ’â ‘â â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "unacceptable", "output": "â ¥â â â ’â ‘â â žâ â ƒâ ‡â ‘" }, { "input": "unacceptably", "output": "â ¥â â â ’â ‘â â žâ â ƒâ ‡â ½" }, { "input": "unaccepted", "output": "â ¥â â â ’â ‘â â žâ «" }, { "input": "unaccompanied", "output": "â ¥â â â ’â •â â â â â Šâ «" }, { "input": "unaccountable", "output": "â ¥â â â ’⠨⠞â â ƒâ ‡â ‘" }, { "input": "unaccountably", "output": "â ¥â â â ’⠨⠞â â ƒâ ‡â ½" }, { "input": "unaccustomed", "output": "â ¥â â â ’⠥⠌⠕â â «" }, { "input": "unacknowledged", "output": "â ¥â â â ‰â â …⠇⠫⠛⠫" }, { "input": "unacquainted", "output": "â ¥â â â ‰â Ÿâ ¥â â ”â žâ «" }, { "input": "unadorned", "output": "â ¥â â â ™â •â —â â «" }, { "input": "unadulterated", "output": "â ¥â â â ™â ¥â ‡â žâ »â â žâ «" }, { "input": "unadvised", "output": "â ¥â â â ™â §â Šâ Žâ «" }, { "input": "unaffected", "output": "â ¥â â â –⠑⠉⠞⠫" }, { "input": "unafraid", "output": "â ¥â â â ‹â —â â Šâ ™" }, { "input": "unaided", "output": "â ¥â â â Šâ ™â «" }, { "input": "unalterable", "output": "â ¥â â â ‡â žâ »â â ƒâ ‡â ‘" }, { "input": "unalterably", "output": "â ¥â â â ‡â žâ »â â ƒâ ‡â ½" }, { "input": "unaltered", "output": "â ¥â â â ‡â žâ »â «" }, { "input": "unambiguous", "output": "â ¥â â â â ƒâ Šâ ›â ¥â ³â Ž" }, { "input": "unambiguously", "output": "â ¥â â â â ƒâ Šâ ›â ¥â ³â Žâ ‡â ½" }, { "input": "unanimity", "output": "â ¥â â â â Šâ â °â ½" }, { "input": "unanimous", "output": "â ¥â â â â Šâ â ³â Ž" }, { "input": "unanimously", "output": "â ¥â â â â Šâ â ³â Žâ ‡â ½" }, { "input": "unannounced", "output": "â ¥â â â â â ³â â ‰â «" }, { "input": "unanswerable", "output": "â ¥â â â â Žâ ºâ »â â ƒâ ‡â ‘" }, { "input": "unanswered", "output": "â ¥â â â â Žâ ºâ »â «" }, { "input": "unanticipated", "output": "â ¥â â â â žâ Šâ ‰â Šâ â â žâ «" }, { "input": "unappealing", "output": "â ¥â â â â â ‚⠇⠬" }, { "input": "unappetizing", "output": "â ¥â â â â â ‘⠞⠊⠵⠬" }, { "input": "unappreciated", "output": "â ¥â â â â â —⠑⠉⠊â â žâ «" }, { "input": "unappreciative", "output": "â ¥â â â â â —⠑⠉⠊â â žâ Šâ §â ‘" }, { "input": "unapproachable", "output": "â ¥â â â â â —â •â â ¡â â ƒâ ‡â ‘" }, { "input": "unarmed", "output": "â ¥â â œâ â «" }, { "input": "unashamed", "output": "â ¥â â â ©â â â «" }, { "input": "unashamedly", "output": "â ¥â â â ©â â â «â ‡â ½" }, { "input": "unasked", "output": "â ¥â â â Žâ …â «" }, { "input": "unassailable", "output": "â ¥â â â Žâ Žâ â Šâ ‡â â ƒâ ‡â ‘" }, { "input": "unassigned", "output": "â ¥â â â Žâ Žâ Šâ ›â â «" }, { "input": "unassisted", "output": "â ¥â â â Žâ Žâ Šâ Œâ «" }, { "input": "unassuming", "output": "â ¥â â â Žâ Žâ ¥â â ¬" }, { "input": "unattached", "output": "â ¥â â â žâ žâ â ¡â «" }, { "input": "unattainable", "output": "â ¥â â â žâ žâ â ”â â ƒâ ‡â ‘" }, { "input": "unattended", "output": "â ¥â â â žâ žâ ¢â ™â «" }, { "input": "unattractive", "output": "â ¥â â â žâ žâ —â â ‰â žâ Šâ §â ‘" }, { "input": "unattributed", "output": "â ¥â â â žâ žâ —⠊⠃⠥⠞⠫" }, { "input": "unauthenticated", "output": "â ¥â â â ¥â ®â â žâ Šâ ‰â â žâ «" }, { "input": "unauthorized", "output": "â ¥â â â ¥â ¹â •⠗⠊⠵⠫" }, { "input": "unavailable", "output": "â ¥â â â §â â Šâ ‡â â ƒâ ‡â ‘" }, { "input": "unavailing", "output": "â ¥â â â §â â Šâ ‡â ¬" }, { "input": "unavoidable", "output": "â ¥â â â §â •â Šâ ™â â ƒâ ‡â ‘" }, { "input": "unavoidably", "output": "â ¥â â â §â •â Šâ ™â â ƒâ ‡â ½" }, { "input": "unaware", "output": "â ¥â â â ºâ œâ ‘" }, { "input": "unawares", "output": "â ¥â â â ºâ œâ ‘â Ž" }, { "input": "unbalanced", "output": "â ¥â â ƒâ â ‡â ¨â ‘â ™" }, { "input": "unbar", "output": "â ¥â â ƒâ œ" }, { "input": "unbarred", "output": "â ¥â â ƒâ œâ —â «" }, { "input": "unbarring", "output": "â ¥â â ƒâ œâ —â ¬" }, { "input": "unbars", "output": "â ¥â â ƒâ œâ Ž" }, { "input": "unbearable", "output": "â ¥â â ƒâ ‘â œâ â ƒâ ‡â ‘" }, { "input": "unbearably", "output": "â ¥â â ƒâ ‘â œâ â ƒâ ‡â ½" }, { "input": "unbeatable", "output": "â ¥â â ƒâ ‚â žâ â ƒâ ‡â ‘" }, { "input": "unbeaten", "output": "â ¥â â ƒâ ‚â žâ ¢" }, { "input": "unbecoming", "output": "â ¥â â ƒâ ‘⠉⠕â â ¬" }, { "input": "unbeknown", "output": "â ¥â â ƒâ ‘â â …â " }, { "input": "unbeknownst", "output": "â ¥â â ƒâ ‘â â …â â Œ" }, { "input": "unbelief", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠋" }, { "input": "unbelievable", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧â â ƒâ ‡â ‘" }, { "input": "unbelievably", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧â â ƒâ ‡â ½" }, { "input": "unbeliever", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧⠻" }, { "input": "unbelievers", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧⠻⠎" }, { "input": "unbend", "output": "â ¥â â ƒâ ¢â ™" }, { "input": "unbending", "output": "â ¥â â ƒâ ¢â ™â ¬" }, { "input": "unbends", "output": "â ¥â â ƒâ ¢â ™â Ž" }, { "input": "unbent", "output": "â ¥â â ƒâ ¢â ž" }, { "input": "unbiased", "output": "â ¥â â ƒâ Šâ â Žâ «" }, { "input": "unbiassed", "output": "â ¥â â ƒâ Šâ â Žâ Žâ «" }, { "input": "unbidden", "output": "â ¥â â ƒâ Šâ ™â ™â ¢" }, { "input": "unbind", "output": "â ¥â â ƒâ ”â ™" }, { "input": "unbinding", "output": "â ¥â â ƒâ ”⠙⠬" }, { "input": "unbinds", "output": "â ¥â â ƒâ ”⠙⠎" }, { "input": "unblock", "output": "â ¥â â ƒâ ‡â •⠉⠅" }, { "input": "unblocked", "output": "â ¥â â ƒâ ‡â •⠉⠅⠫" }, { "input": "unblocking", "output": "â ¥â â ƒâ ‡â •⠉⠅⠬" }, { "input": "unblocks", "output": "â ¥â â ƒâ ‡â •⠉⠅⠎" }, { "input": "unblushing", "output": "â ¥â â ƒâ ‡â ¥â ©â ¬" }, { "input": "unbolt", "output": "â ¥â â ƒâ •⠇⠞" }, { "input": "unbolted", "output": "â ¥â â ƒâ •⠇⠞⠫" }, { "input": "unbolting", "output": "â ¥â â ƒâ •⠇⠞⠬" }, { "input": "unbolts", "output": "â ¥â â ƒâ •⠇⠞⠎" }, { "input": "unborn", "output": "â ¥â â ƒâ •â —â " }, { "input": "unbosom", "output": "â ¥â â ƒâ •â Žâ •â " }, { "input": "unbosomed", "output": "â ¥â â ƒâ •â Žâ •â â «" }, { "input": "unbosoming", "output": "â ¥â â ƒâ •â Žâ •â â ¬" }, { "input": "unbosoms", "output": "â ¥â â ƒâ •â Žâ •â â Ž" }, { "input": "unbound", "output": "â ¥â â ƒâ ¨â ™" }, { "input": "unbounded", "output": "â ¥â â ƒâ ¨â ™â «" }, { "input": "unbranded", "output": "â ¥â â ƒâ —⠯⠫" }, { "input": "unbreakable", "output": "â ¥â â ƒâ —â ‚â …â â ƒâ ‡â ‘" }, { "input": "unbridled", "output": "â ¥â â ƒâ —⠊⠙⠇⠫" }, { "input": "unbroken", "output": "â ¥â â ƒâ —â •â …â ¢" }, { "input": "unbuckle", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠑" }, { "input": "unbuckled", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠫" }, { "input": "unbuckles", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠑⠎" }, { "input": "unbuckling", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠬" }, { "input": "unburden", "output": "â ¥â â ƒâ ¥â —⠙⠢" }, { "input": "unburdened", "output": "â ¥â â ƒâ ¥â —⠙⠢⠫" }, { "input": "unburdening", "output": "â ¥â â ƒâ ¥â —⠙⠢⠬" }, { "input": "unburdens", "output": "â ¥â â ƒâ ¥â —⠙⠢⠎" }, { "input": "unbutton", "output": "â ¥â â ƒâ ¥â žâ žâ •â " }, { "input": "unbuttoned", "output": "â ¥â â ƒâ ¥â žâ žâ •â â «" }, { "input": "unbuttoning", "output": "â ¥â â ƒâ ¥â žâ žâ •â â ¬" }, { "input": "unbuttons", "output": "â ¥â â ƒâ ¥â žâ žâ •â â Ž" }, { "input": "uncalled", "output": "â ¥â â ‰â â ‡â ‡â «" }, { "input": "uncannier", "output": "â ¥â â ‰â â â â Šâ »" }, { "input": "uncanniest", "output": "â ¥â â ‰â â â â Šâ ‘â Œ" }, { "input": "uncannily", "output": "â ¥â â ‰â â â â Šâ ‡â ½" }, { "input": "uncanny", "output": "â ¥â â ‰â â â â ½" }, { "input": "uncaring", "output": "â ¥â â ‰â œâ ¬" }, { "input": "uncased", "output": "â ¥â â ‰â â Žâ «" }, { "input": "uncatalogued", "output": "â ¥â â ‰â â žâ â ‡â •⠛⠥⠫" }, { "input": "unceasing", "output": "â ¥â â ‰â ‚â Žâ ¬" }, { "input": "unceasingly", "output": "â ¥â â ‰â ‚⠎⠬⠇⠽" }, { "input": "uncensored", "output": "â ¥â â ‰â ¢â Žâ •â —â «" }, { "input": "unceremonious", "output": "â ¥â â ‰â »â ‘â â •â â Šâ ³â Ž" }, { "input": "unceremoniously", "output": "â ¥â â ‰â »â ‘â â •â â Šâ ³â Žâ ‡â ½" }, { "input": "uncertain", "output": "â ¥â â ‰â »â žâ â ”" }, { "input": "uncertainly", "output": "â ¥â â ‰â »â žâ â ”⠇⠽" }, { "input": "uncertainties", "output": "â ¥â â ‰â »â žâ â ”â žâ Šâ ‘â Ž" }, { "input": "uncertainty", "output": "â ¥â â ‰â »â žâ â ”â žâ ½" }, { "input": "unchallenged", "output": "â ¥â â ¡â â ‡â ‡â ¢â ›â «" }, { "input": "unchanged", "output": "â ¥â â ¡â â â ›â «" }, { "input": "unchanging", "output": "â ¥â â ¡â â â ›â ¬" }, { "input": "uncharacteristic", "output": "â ¥â â â ¡â Šâ Œâ Šâ ‰" }, { "input": "uncharacteristically", "output": "â ¥â â â ¡â Šâ Œâ Šâ ‰â â ‡â ‡â ½" }, { "input": "uncharitable", "output": "â ¥â â ¡â œâ Šâ žâ â ƒâ ‡â ‘" }, { "input": "uncharitably", "output": "â ¥â â ¡â œâ Šâ žâ â ƒâ ‡â ½" }, { "input": "uncharted", "output": "â ¥â â ¡â œâ žâ «" }, { "input": "unchecked", "output": "â ¥â â ¡â ‘⠉⠅⠫" }, { "input": "unchristian", "output": "â ¥â â ¡â —⠊⠌⠊â â " }, { "input": "uncivil", "output": "â ¥â â ‰â Šâ §â Šâ ‡" }, { "input": "uncivilized", "output": "â ¥â â ‰â Šâ §â Šâ ‡â Šâ µâ «" }, { "input": "unclaimed", "output": "â ¥â â ‰â ‡â â Šâ â «" }, { "input": "unclasp", "output": "â ¥â â ‰â ‡â â Žâ " }, { "input": "unclasped", "output": "â ¥â â ‰â ‡â â Žâ â «" }, { "input": "unclasping", "output": "â ¥â â ‰â ‡â â Žâ â ¬" }, { "input": "unclasps", "output": "â ¥â â ‰â ‡â â Žâ â Ž" }, { "input": "unclassified", "output": "â ¥â â ‰â ‡â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "uncle", "output": "â ¥â â ‰â ‡â ‘" }, { "input": "unclean", "output": "â ¥â â ‰â ‡â ‚â " }, { "input": "uncleaner", "output": "â ¥â â ‰â ‡â ‚â â »" }, { "input": "uncleanest", "output": "â ¥â â ‰â ‡â ‚â â ‘â Œ" }, { "input": "uncleanlier", "output": "â ¥â â ‰â ‡â ‚â â ‡â Šâ »" }, { "input": "uncleanliest", "output": "â ¥â â ‰â ‡â ‚â â ‡â Šâ ‘â Œ" }, { "input": "uncleanly", "output": "â ¥â â ‰â ‡â ‚â â ‡â ½" }, { "input": "uncleanness", "output": "â ¥â â ‰â ‡â ‚â â °â Ž" }, { "input": "unclear", "output": "â ¥â â ‰â ‡â ‘â œ" }, { "input": "unclearer", "output": "â ¥â â ‰â ‡â ‘⠜⠻" }, { "input": "unclearest", "output": "â ¥â â ‰â ‡â ‘⠜⠑⠌" }, { "input": "uncles", "output": "â ¥â â ‰â ‡â ‘â Ž" }, { "input": "unclothe", "output": "â ¥â â ‰â ‡â •â ®" }, { "input": "unclothed", "output": "â ¥â â ‰â ‡â •⠮⠙" }, { "input": "unclothes", "output": "â ¥â â ‰â ‡â •⠮⠎" }, { "input": "unclothing", "output": "â ¥â â ‰â ‡â •⠹⠬" }, { "input": "uncluttered", "output": "â ¥â â ‰â ‡â ¥â žâ žâ »â «" }, { "input": "uncoil", "output": "â ¥â â ‰â •â Šâ ‡" }, { "input": "uncoiled", "output": "â ¥â â ‰â •⠊⠇⠫" }, { "input": "uncoiling", "output": "â ¥â â ‰â •⠊⠇⠬" }, { "input": "uncoils", "output": "â ¥â â ‰â •⠊⠇⠎" }, { "input": "uncollected", "output": "â ¥â â ‰â •⠇⠇⠑⠉⠞⠫" }, { "input": "uncomfortable", "output": "â ¥â â ‰â •â â ¿â žâ â ƒâ ‡â ‘" }, { "input": "uncomfortably", "output": "â ¥â â ‰â •â â ¿â žâ â ƒâ ‡â ½" }, { "input": "uncommitted", "output": "â ¥â â ‰â •â â â Šâ žâ žâ «" }, { "input": "uncommon", "output": "â ¥â â ‰â •â â â •â " }, { "input": "uncommoner", "output": "â ¥â â ‰â •â â â •â â »" }, { "input": "uncommonest", "output": "â ¥â â ‰â •â â â •â â ‘â Œ" }, { "input": "uncommonly", "output": "â ¥â â ‰â •â â â •â â ‡â ½" }, { "input": "uncommunicative", "output": "â ¥â â ‰â •â â â ¥â â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "uncomplaining", "output": "â ¥â â ‰â •â â â ‡â â ”â ¬" }, { "input": "uncompleted", "output": "â ¥â â ‰â •â â â ‡â ‘â žâ «" }, { "input": "uncomplicated", "output": "â ¥â â ‰â •â â â ‡â Šâ ‰â â žâ «" }, { "input": "uncomplimentary", "output": "â ¥â â ‰â •â â â ‡â Šâ °â žâ œâ ½" }, { "input": "uncomprehending", "output": "â ¥â â ‰â •â â â —⠑⠓⠢⠙⠬" }, { "input": "uncompressed", "output": "â ¥â â ‰â •â â â —â ‘â Žâ Žâ «" }, { "input": "uncompromising", "output": "â ¥â â ‰â •â â â —â •â â Šâ Žâ ¬" }, { "input": "uncompromisingly", "output": "â ¥â â ‰â •â â â —â •â â Šâ Žâ ¬â ‡â ½" }, { "input": "unconcern", "output": "â ¥â â ‰â •â â ‰â »â " }, { "input": "unconcerned", "output": "â ¥â â ‰â •â â ‰â »â â «" }, { "input": "unconcernedly", "output": "â ¥â â ‰â •â â ‰â »â â «â ‡â ½" }, { "input": "unconditional", "output": "â ¥â â ‰â •â â ™â Šâ °â â â ‡" }, { "input": "unconditionally", "output": "â ¥â â ‰â •â â ™â Šâ °â â â ‡â ‡â ½" }, { "input": "unconfirmed", "output": "â ¥â â ‰â •â â ‹â Šâ —â â «" }, { "input": "unconnected", "output": "â ¥â â ‰â •â â â ‘⠉⠞⠫" }, { "input": "unconquerable", "output": "â ¥â â ‰â •â â Ÿâ ¥â »â â ƒâ ‡â ‘" }, { "input": "unconscionable", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ •â â â ƒâ ‡â ‘" }, { "input": "unconscionably", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ •â â â ƒâ ‡â ½" }, { "input": "unconscious", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Ž" }, { "input": "unconsciously", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "unconsciousness", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "unconsidered", "output": "â ¥â â ‰â •â â Žâ Šâ ™â »â «" }, { "input": "unconstitutional", "output": "â ¥â â ‰â •â â Œâ Šâ žâ ¥â °â â â ‡" }, { "input": "uncontaminated", "output": "â ¥â â ‰â •â â žâ â â ”â â žâ «" }, { "input": "uncontested", "output": "â ¥â â ‰â •â â žâ ‘⠌⠫" }, { "input": "uncontrollable", "output": "â ¥â â ‰â •â â žâ —⠕⠇⠇â â ƒâ ‡â ‘" }, { "input": "uncontrollably", "output": "â ¥â â ‰â •â â žâ —⠕⠇⠇â â ƒâ ‡â ½" }, { "input": "uncontrolled", "output": "â ¥â â ‰â •â â žâ —⠕⠇⠇⠫" }, { "input": "uncontroversial", "output": "â ¥â â ‰â •â â žâ —⠕⠧⠻⠎⠊â â ‡" }, { "input": "unconventional", "output": "â ¥â â ‰â •â â §â ¢â °â â â ‡" }, { "input": "unconventionally", "output": "â ¥â â ‰â •â â §â ¢â °â â â ‡â ‡â ½" }, { "input": "unconvinced", "output": "â ¥â â ‰â •â â §â ”⠉⠫" }, { "input": "unconvincing", "output": "â ¥â â ‰â •â â §â ”⠉⠬" }, { "input": "unconvincingly", "output": "â ¥â â ‰â •â â §â ”⠉⠬⠇⠽" }, { "input": "uncooked", "output": "â ¥â â ‰â •â •â …â «" }, { "input": "uncooperative", "output": "â ¥â â ‰â •â •â â »â â žâ Šâ §â ‘" }, { "input": "uncoordinated", "output": "â ¥â â ‰â •⠕⠗⠙⠔â â žâ «" }, { "input": "uncork", "output": "â ¥â â ‰â •â —â …" }, { "input": "uncorked", "output": "â ¥â â ‰â •â —â …â «" }, { "input": "uncorking", "output": "â ¥â â ‰â •â —â …â ¬" }, { "input": "uncorks", "output": "â ¥â â ‰â •â —â …â Ž" }, { "input": "uncorrelated", "output": "â ¥â â ‰â •â —â —â ‘â ‡â â žâ «" }, { "input": "uncorroborated", "output": "â ¥â â ‰â •⠗⠗⠕⠃⠕⠗â â žâ «" }, { "input": "uncountable", "output": "â ¥â â ‰â ¨â žâ â ƒâ ‡â ‘" }, { "input": "uncounted", "output": "â ¥â â ‰â ¨â žâ «" }, { "input": "uncouple", "output": "â ¥â â ‰â ³â â ‡â ‘" }, { "input": "uncoupled", "output": "â ¥â â ‰â ³â â ‡â «" }, { "input": "uncouples", "output": "â ¥â â ‰â ³â â ‡â ‘â Ž" }, { "input": "uncoupling", "output": "â ¥â â ‰â ³â â ‡â ¬" }, { "input": "uncouth", "output": "â ¥â â ‰â ³â ¹" }, { "input": "uncover", "output": "â ¥â â ‰â •â §â »" }, { "input": "uncovered", "output": "â ¥â â ‰â •⠧⠻⠫" }, { "input": "uncovering", "output": "â ¥â â ‰â •⠧⠻⠬" }, { "input": "uncovers", "output": "â ¥â â ‰â •⠧⠻⠎" }, { "input": "uncritical", "output": "â ¥â â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "unction", "output": "â ¥â â ‰â °â " }, { "input": "unctions", "output": "â ¥â â ‰â °â â Ž" }, { "input": "unctuous", "output": "â ¥â â ‰â žâ ¥â ³â Ž" }, { "input": "unctuously", "output": "â ¥â â ‰â žâ ¥â ³â Žâ ‡â ½" }, { "input": "unctuousness", "output": "â ¥â â ‰â žâ ¥â ³â Žâ °â Ž" }, { "input": "uncultivated", "output": "â ¥â â ‰â ¥â ‡â žâ Šâ §â â žâ «" }, { "input": "uncultured", "output": "â ¥â â ‰â ¥â ‡â žâ ¥â —â «" }, { "input": "uncut", "output": "â ¥â â ‰â ¥â ž" }, { "input": "undamaged", "output": "â ¥â â ™â â â â ›â «" }, { "input": "undated", "output": "â ¥â â ™â â žâ «" }, { "input": "undaunted", "output": "â ¥â â ™â â ¥â â žâ «" }, { "input": "undeceive", "output": "â ¥â â ™â ‰â §" }, { "input": "undeceived", "output": "â ¥â â ™â ‰â §â ™" }, { "input": "undeceives", "output": "â ¥â â ™â ‰â §â Ž" }, { "input": "undeceiving", "output": "â ¥â â ™â ‰â §â ›" }, { "input": "undecidable", "output": "â ¥â â ™â ‘⠉⠊⠙â â ƒâ ‡â ‘" }, { "input": "undecided", "output": "â ¥â â ™â ‘⠉⠊⠙⠫" }, { "input": "undecideds", "output": "â ¥â â ™â ‘⠉⠊⠙⠫⠎" }, { "input": "undecipherable", "output": "â ¥â â ™â ‘⠉⠊â â “â »â â ƒâ ‡â ‘" }, { "input": "undeclared", "output": "â ¥â â ™â ‰â ‡â ™" }, { "input": "undefeated", "output": "â ¥â â ™â ‘â ‹â ‚â žâ «" }, { "input": "undefended", "output": "â ¥â â ™â ‘⠋⠢⠙⠫" }, { "input": "undefinable", "output": "â ¥â â ™â ‘â ‹â ”â â ƒâ ‡â ‘" }, { "input": "undefined", "output": "â ¥â â ™â ‘⠋⠔⠫" }, { "input": "undelivered", "output": "â ¥â â ™â ‘⠇⠊⠧⠻⠫" }, { "input": "undemanding", "output": "â ¥â â ™â ‘â â ¯â ¬" }, { "input": "undemocratic", "output": "â ¥â â ™â ‘â â •⠉⠗â â žâ Šâ ‰" }, { "input": "undemonstrative", "output": "â ¥â â ™â ‘â â •â â Œâ —â â žâ Šâ §â ‘" }, { "input": "undeniable", "output": "â ¥â â ™â ¢â Šâ â ƒâ ‡â ‘" }, { "input": "undeniably", "output": "â ¥â â ™â ¢â Šâ â ƒâ ‡â ½" }, { "input": "undependable", "output": "â ¥â â ™â ‘â â ¢â ™â â ƒâ ‡â ‘" }, { "input": "under", "output": "â â ¥" }, { "input": "underachieve", "output": "â â ¥â â ¡â Šâ ‘â §â ‘" }, { "input": "underachieved", "output": "â â ¥â â ¡â Šâ ‘â §â «" }, { "input": "underachiever", "output": "â â ¥â â ¡â Šâ ‘â §â »" }, { "input": "underachievers", "output": "â â ¥â â ¡â Šâ ‘⠧⠻⠎" }, { "input": "underachieves", "output": "â â ¥â â ¡â Šâ ‘â §â ‘â Ž" }, { "input": "underachieving", "output": "â â ¥â â ¡â Šâ ‘â §â ¬" }, { "input": "underact", "output": "â â ¥â â ‰â ž" }, { "input": "underacted", "output": "â â ¥â â ‰â žâ «" }, { "input": "underacting", "output": "â â ¥â â ‰â žâ ¬" }, { "input": "underacts", "output": "â â ¥â â ‰â žâ Ž" }, { "input": "underage", "output": "â â ¥â â ›â ‘" }, { "input": "underarm", "output": "â â ¥â œâ " }, { "input": "underarms", "output": "â â ¥â œâ â Ž" }, { "input": "underbellies", "output": "â â ¥â ƒâ ‘⠇⠇⠊⠑⠎" }, { "input": "underbelly", "output": "â â ¥â ƒâ ‘⠇⠇⠽" }, { "input": "underbid", "output": "â â ¥â ƒâ Šâ ™" }, { "input": "underbidding", "output": "â â ¥â ƒâ Šâ ™â ™â ¬" }, { "input": "underbids", "output": "â â ¥â ƒâ Šâ ™â Ž" }, { "input": "underbrush", "output": "â â ¥â ƒâ —⠥⠩" }, { "input": "undercarriage", "output": "â â ¥â ‰â œâ —â Šâ â ›â ‘" }, { "input": "undercarriages", "output": "â â ¥â ‰â œâ —â Šâ â ›â ‘â Ž" }, { "input": "undercharge", "output": "â â ¥â ¡â œâ ›â ‘" }, { "input": "undercharged", "output": "â â ¥â ¡â œâ ›â «" }, { "input": "undercharges", "output": "â â ¥â ¡â œâ ›â ‘â Ž" }, { "input": "undercharging", "output": "â â ¥â ¡â œâ ›â ¬" }, { "input": "underclass", "output": "â â ¥â ‰â ‡â â Žâ Ž" }, { "input": "underclassman", "output": "â â ¥â ‰â ‡â â Žâ Žâ â â " }, { "input": "underclassmen", "output": "â â ¥â ‰â ‡â â Žâ Žâ â ¢" }, { "input": "underclothes", "output": "â â ¥â ‰â ‡â •⠮⠎" }, { "input": "underclothing", "output": "â â ¥â ‰â ‡â •⠹⠬" }, { "input": "undercoat", "output": "â â ¥â ‰â •â â ž" }, { "input": "undercoated", "output": "â â ¥â ‰â •â â žâ «" }, { "input": "undercoating", "output": "â â ¥â ‰â •â â žâ ¬" }, { "input": "undercoats", "output": "â â ¥â ‰â •â â žâ Ž" }, { "input": "undercover", "output": "â â ¥â ‰â •â §â »" }, { "input": "undercurrent", "output": "â â ¥â ‰â ¥â —⠗⠢⠞" }, { "input": "undercurrents", "output": "â â ¥â ‰â ¥â —⠗⠢⠞⠎" }, { "input": "undercut", "output": "â â ¥â ‰â ¥â ž" }, { "input": "undercuts", "output": "â â ¥â ‰â ¥â žâ Ž" }, { "input": "undercutting", "output": "â â ¥â ‰â ¥â žâ žâ ¬" }, { "input": "underdeveloped", "output": "â â ¥â ™â ‘⠧⠑⠇⠕â â «" }, { "input": "underdog", "output": "â â ¥â ™â •â ›" }, { "input": "underdogs", "output": "â â ¥â ™â •⠛⠎" }, { "input": "underdone", "output": "â â ¥â ™â â •" }, { "input": "underemployed", "output": "â â ¥â ‘â â â ‡â •⠽⠫" }, { "input": "underestimate", "output": "â â ¥â ‘⠌⠊â â â žâ ‘" }, { "input": "underestimated", "output": "â â ¥â ‘⠌⠊â â â žâ «" }, { "input": "underestimates", "output": "â â ¥â ‘⠌⠊â â â žâ ‘â Ž" }, { "input": "underestimating", "output": "â â ¥â ‘⠌⠊â â â žâ ¬" }, { "input": "underexpose", "output": "â â ¥â ‘â ­â â •â Žâ ‘" }, { "input": "underexposed", "output": "â â ¥â ‘â ­â â •â Žâ «" }, { "input": "underexposes", "output": "â â ¥â ‘â ­â â •â Žâ ‘â Ž" }, { "input": "underexposing", "output": "â â ¥â ‘â ­â â •â Žâ ¬" }, { "input": "underfed", "output": "â â ¥â ‹â «" }, { "input": "underfeed", "output": "â â ¥â ‹â ‘â «" }, { "input": "underfeeding", "output": "â â ¥â ‹â ‘â «â ¬" }, { "input": "underfeeds", "output": "â â ¥â ‹â ‘â «â Ž" }, { "input": "underflow", "output": "â â ¥â ‹â ‡â ª" }, { "input": "underfoot", "output": "â â ¥â ‹â •â •â ž" }, { "input": "underfunded", "output": "â â ¥â ‹â ¥â â ™â «" }, { "input": "undergarment", "output": "â â ¥â ›â œâ °â ž" }, { "input": "undergarments", "output": "â â ¥â ›â œâ °â žâ Ž" }, { "input": "undergo", "output": "â â ¥â ›â •" }, { "input": "undergoes", "output": "â â ¥â ›â •â ‘â Ž" }, { "input": "undergoing", "output": "â â ¥â ›â •â ¬" }, { "input": "undergone", "output": "â â ¥â ›â â •" }, { "input": "undergrad", "output": "â â ¥â ›â —â â ™" }, { "input": "undergrads", "output": "â â ¥â ›â —â â ™â Ž" }, { "input": "undergraduate", "output": "â â ¥â ›â —â â ™â ¥â â žâ ‘" }, { "input": "undergraduates", "output": "â â ¥â ›â —â â ™â ¥â â žâ ‘â Ž" }, { "input": "underground", "output": "â â ¥â ›â —⠨⠙" }, { "input": "undergrounds", "output": "â â ¥â ›â —⠨⠙⠎" }, { "input": "undergrowth", "output": "â â ¥â ›â —⠪⠹" }, { "input": "underhand", "output": "â â ¥â “â ¯" }, { "input": "underhanded", "output": "â â ¥â “⠯⠫" }, { "input": "underhandedly", "output": "â â ¥â “⠯⠫⠇⠽" }, { "input": "underlain", "output": "â â ¥â ‡â â ”" }, { "input": "underlay", "output": "â â ¥â ‡â â ½" }, { "input": "underlays", "output": "â â ¥â ‡â â ½â Ž" }, { "input": "underlie", "output": "â â ¥â ‡â Šâ ‘" }, { "input": "underlies", "output": "â â ¥â ‡â Šâ ‘â Ž" }, { "input": "underline", "output": "â â ¥â ‡â ”â ‘" }, { "input": "underlined", "output": "â â ¥â ‡â ”â «" }, { "input": "underlines", "output": "â â ¥â ‡â ”â ‘â Ž" }, { "input": "underling", "output": "â â ¥â ‡â ¬" }, { "input": "underlings", "output": "â â ¥â ‡â ¬â Ž" }, { "input": "underlining", "output": "â â ¥â ‡â ”â ¬" }, { "input": "underlying", "output": "â â ¥â ‡â ½â ¬" }, { "input": "undermine", "output": "â â ¥â â ”â ‘" }, { "input": "undermined", "output": "â â ¥â â ”â «" }, { "input": "undermines", "output": "â â ¥â â ”â ‘â Ž" }, { "input": "undermining", "output": "â â ¥â â ”â ¬" }, { "input": "undermost", "output": "â â ¥â â •â Œ" }, { "input": "underneath", "output": "â â ¥â â ‚â ¹" }, { "input": "underneaths", "output": "â â ¥â â ‚⠹⠎" }, { "input": "undernourished", "output": "â â ¥â â ³â —â Šâ ©â «" }, { "input": "underpaid", "output": "â â ¥â â ™" }, { "input": "underpants", "output": "â â ¥â â â â žâ Ž" }, { "input": "underpass", "output": "â â ¥â â â Žâ Ž" }, { "input": "underpasses", "output": "â â ¥â â â Žâ Žâ ‘â Ž" }, { "input": "underpay", "output": "â â ¥â â â ½" }, { "input": "underpaying", "output": "â â ¥â â â ½â ¬" }, { "input": "underpays", "output": "â â ¥â â â ½â Ž" }, { "input": "underpin", "output": "â â ¥â â ”" }, { "input": "underpinned", "output": "â â ¥â â ”â â «" }, { "input": "underpinning", "output": "â â ¥â â ”â â ¬" }, { "input": "underpinnings", "output": "â â ¥â â ”â â ¬â Ž" }, { "input": "underpins", "output": "â â ¥â â ”â Ž" }, { "input": "underplay", "output": "â â ¥â â ‡â â ½" }, { "input": "underplayed", "output": "â â ¥â â ‡â â ½â «" }, { "input": "underplaying", "output": "â â ¥â â ‡â â ½â ¬" }, { "input": "underplays", "output": "â â ¥â â ‡â â ½â Ž" }, { "input": "underprivileged", "output": "â â ¥â â —⠊⠧⠊⠇⠑⠛⠫" }, { "input": "underrate", "output": "â â ¥â —â â žâ ‘" }, { "input": "underrated", "output": "â â ¥â —â â žâ «" }, { "input": "underrates", "output": "â â ¥â —â â žâ ‘â Ž" }, { "input": "underrating", "output": "â â ¥â —â â žâ ¬" }, { "input": "underscore", "output": "â â ¥â Žâ ‰â •â —â ‘" }, { "input": "underscored", "output": "â â ¥â Žâ ‰â •â —â «" }, { "input": "underscores", "output": "â â ¥â Žâ ‰â •â —â ‘â Ž" }, { "input": "underscoring", "output": "â â ¥â Žâ ‰â •â —â ¬" }, { "input": "undersea", "output": "â â ¥â Žâ ‘â " }, { "input": "undersecretaries", "output": "â â ¥â Žâ ‘⠉⠗⠑⠞⠜⠊⠑⠎" }, { "input": "undersecretary", "output": "â â ¥â Žâ ‘⠉⠗⠑⠞⠜⠽" }, { "input": "undersell", "output": "â â ¥â Žâ ‘⠇⠇" }, { "input": "underselling", "output": "â â ¥â Žâ ‘⠇⠇⠬" }, { "input": "undersells", "output": "â â ¥â Žâ ‘⠇⠇⠎" }, { "input": "undershirt", "output": "â â ¥â ©â Šâ —â ž" }, { "input": "undershirts", "output": "â â ¥â ©â Šâ —â žâ Ž" }, { "input": "undershoot", "output": "â â ¥â ©â •â •â ž" }, { "input": "undershooting", "output": "â â ¥â ©â •â •â žâ ¬" }, { "input": "undershoots", "output": "â â ¥â ©â •â •â žâ Ž" }, { "input": "undershorts", "output": "â â ¥â ©â •â —â žâ Ž" }, { "input": "undershot", "output": "â â ¥â ©â •â ž" }, { "input": "underside", "output": "â â ¥â Žâ Šâ ™â ‘" }, { "input": "undersides", "output": "â â ¥â Žâ Šâ ™â ‘â Ž" }, { "input": "undersign", "output": "â â ¥â Žâ Šâ ›â " }, { "input": "undersigned", "output": "â â ¥â Žâ Šâ ›â â «" }, { "input": "undersigning", "output": "â â ¥â Žâ Šâ ›â â ¬" }, { "input": "undersigns", "output": "â â ¥â Žâ Šâ ›â â Ž" }, { "input": "undersize", "output": "â â ¥â Žâ Šâ µâ ‘" }, { "input": "undersized", "output": "â â ¥â Žâ Šâ µâ «" }, { "input": "underskirt", "output": "â â ¥â Žâ …â Šâ —â ž" }, { "input": "underskirts", "output": "â â ¥â Žâ …â Šâ —â žâ Ž" }, { "input": "undersold", "output": "â â ¥â Žâ •⠇⠙" }, { "input": "understaffed", "output": "â â ¥â Œâ â –â «" }, { "input": "understand", "output": "â â ¥â Œâ ¯" }, { "input": "understandable", "output": "â â ¥â Œâ ¯â â ƒâ ‡â ‘" }, { "input": "understandably", "output": "â â ¥â Œâ ¯â â ƒâ ‡â ½" }, { "input": "understanding", "output": "â â ¥â Œâ ¯â ¬" }, { "input": "understandingly", "output": "â â ¥â Œâ ¯â ¬â ‡â ½" }, { "input": "understandings", "output": "â â ¥â Œâ ¯â ¬â Ž" }, { "input": "understands", "output": "â â ¥â Œâ ¯â Ž" }, { "input": "understate", "output": "â â ¥â Œâ â žâ ‘" }, { "input": "understated", "output": "â â ¥â Œâ â žâ «" }, { "input": "understatement", "output": "â â ¥â Œâ â žâ ‘â °â ž" }, { "input": "understatements", "output": "â â ¥â Œâ â žâ ‘â °â žâ Ž" }, { "input": "understates", "output": "â â ¥â Œâ â žâ ‘â Ž" }, { "input": "understating", "output": "â â ¥â Œâ â žâ ¬" }, { "input": "understood", "output": "â â ¥â Œâ •â •â ™" }, { "input": "understudied", "output": "â â ¥â Œâ ¥â ™â Šâ «" }, { "input": "understudies", "output": "â â ¥â Œâ ¥â ™â Šâ ‘â Ž" }, { "input": "understudy", "output": "â â ¥â Œâ ¥â ™â ½" }, { "input": "understudying", "output": "â â ¥â Œâ ¥â ™â ½â ¬" }, { "input": "undertake", "output": "â â ¥â žâ â …â ‘" }, { "input": "undertaken", "output": "â â ¥â žâ â …â ¢" }, { "input": "undertaker", "output": "â â ¥â žâ â …â »" }, { "input": "undertakers", "output": "â â ¥â žâ â …⠻⠎" }, { "input": "undertakes", "output": "â â ¥â žâ â …â ‘â Ž" }, { "input": "undertaking", "output": "â â ¥â žâ â …â ¬" }, { "input": "undertakings", "output": "â â ¥â žâ â …⠬⠎" }, { "input": "undertone", "output": "â â ¥â žâ â •" }, { "input": "undertones", "output": "â â ¥â žâ â •â Ž" }, { "input": "undertook", "output": "â â ¥â žâ •â •â …" }, { "input": "undertow", "output": "â â ¥â žâ ª" }, { "input": "undertows", "output": "â â ¥â žâ ªâ Ž" }, { "input": "underused", "output": "â â ¥â ¥â Žâ «" }, { "input": "undervalue", "output": "â â ¥â §â â ‡â ¥â ‘" }, { "input": "undervalued", "output": "â â ¥â §â â ‡â ¥â «" }, { "input": "undervalues", "output": "â â ¥â §â â ‡â ¥â ‘â Ž" }, { "input": "undervaluing", "output": "â â ¥â §â â ‡â ¥â ¬" }, { "input": "underwater", "output": "â â ¥â ºâ â žâ »" }, { "input": "underwear", "output": "â â ¥â ºâ ‘â œ" }, { "input": "underweight", "output": "â â ¥â ºâ ‘⠊⠣⠞" }, { "input": "underwent", "output": "â â ¥â ºâ ¢â ž" }, { "input": "underworld", "output": "â â ¥â ¸â º" }, { "input": "underworlds", "output": "â â ¥â ¸â ºâ Ž" }, { "input": "underwrite", "output": "â â ¥â ºâ —â Šâ žâ ‘" }, { "input": "underwriter", "output": "â â ¥â ºâ —â Šâ žâ »" }, { "input": "underwriters", "output": "â â ¥â ºâ —⠊⠞⠻⠎" }, { "input": "underwrites", "output": "â â ¥â ºâ —â Šâ žâ ‘â Ž" }, { "input": "underwriting", "output": "â â ¥â ºâ —â Šâ žâ ¬" }, { "input": "underwritten", "output": "â â ¥â ºâ —â Šâ žâ žâ ¢" }, { "input": "underwrote", "output": "â â ¥â ºâ —â •â žâ ‘" }, { "input": "undeserved", "output": "â ¥â â ™â ‘⠎⠻⠧⠫" }, { "input": "undeservedly", "output": "â ¥â â ™â ‘⠎⠻⠧⠫⠇⠽" }, { "input": "undeserving", "output": "â ¥â â ™â ‘⠎⠻⠧⠬" }, { "input": "undesirability", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ƒâ Šâ ‡â °â ½" }, { "input": "undesirable", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ƒâ ‡â ‘" }, { "input": "undesirables", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ƒâ ‡â ‘â Ž" }, { "input": "undetectable", "output": "â ¥â â ™â ‘⠞⠑⠉⠞â â ƒâ ‡â ‘" }, { "input": "undetected", "output": "â ¥â â ™â ‘⠞⠑⠉⠞⠫" }, { "input": "undetermined", "output": "â ¥â â ™â ‘â žâ »â â ”â «" }, { "input": "undeterred", "output": "â ¥â â ™â ‘⠞⠻⠗⠫" }, { "input": "undeveloped", "output": "â ¥â â ™â ‘⠧⠑⠇⠕â â «" }, { "input": "undid", "output": "â ¥â â ™â Šâ ™" }, { "input": "undies", "output": "â ¥â â ™â Šâ ‘â Ž" }, { "input": "undignified", "output": "â ¥â â ™â Šâ ›â â Šâ ‹â Šâ «" }, { "input": "undiluted", "output": "â ¥â â ™â Šâ ‡â ¥â žâ «" }, { "input": "undiminished", "output": "â ¥â â ™â Šâ â ”â Šâ ©â «" }, { "input": "undisciplined", "output": "â ¥â â ™â Šâ Žâ ‰â Šâ â ‡â ”â «" }, { "input": "undisclosed", "output": "â ¥â â ™â Šâ Žâ ‰â ‡â •â Žâ «" }, { "input": "undiscovered", "output": "â ¥â â ™â Šâ Žâ ‰â •⠧⠻⠫" }, { "input": "undiscriminating", "output": "â ¥â â ™â Šâ Žâ ‰â —â Šâ â ”â â žâ ¬" }, { "input": "undisguised", "output": "â ¥â â ™â Šâ Žâ ›â ¥â Šâ Žâ «" }, { "input": "undisputed", "output": "â ¥â â ™â Šâ Žâ â ¥â žâ «" }, { "input": "undistinguished", "output": "â ¥â â ™â Šâ Œâ ¬â ¥â Šâ ©â «" }, { "input": "undisturbed", "output": "â ¥â â ™â Šâ Œâ ¥â —⠃⠫" }, { "input": "undivided", "output": "â ¥â â ™â Šâ §â Šâ ™â «" }, { "input": "undo", "output": "â ¥â â ™â •" }, { "input": "undocumented", "output": "â ¥â â ™â •⠉⠥⠰⠞⠫" }, { "input": "undoes", "output": "â ¥â â ™â •â ‘â Ž" }, { "input": "undoing", "output": "â ¥â â ™â •â ¬" }, { "input": "undoings", "output": "â ¥â â ™â •⠬⠎" }, { "input": "undone", "output": "â ¥â â ™â â •" }, { "input": "undoubted", "output": "â ¥â â ™â ³â ƒâ žâ «" }, { "input": "undoubtedly", "output": "â ¥â â ™â ³â ƒâ žâ «â ‡â ½" }, { "input": "undress", "output": "â ¥â â ™â —â ‘â Žâ Ž" }, { "input": "undressed", "output": "â ¥â â ™â —â ‘â Žâ Žâ «" }, { "input": "undresses", "output": "â ¥â â ™â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "undressing", "output": "â ¥â â ™â —â ‘â Žâ Žâ ¬" }, { "input": "undue", "output": "â ¥â â ™â ¥â ‘" }, { "input": "undulant", "output": "â ¥â â ™â ¥â ‡â â â ž" }, { "input": "undulate", "output": "â ¥â â ™â ¥â ‡â â žâ ‘" }, { "input": "undulated", "output": "â ¥â â ™â ¥â ‡â â žâ «" }, { "input": "undulates", "output": "â ¥â â ™â ¥â ‡â â žâ ‘â Ž" }, { "input": "undulating", "output": "â ¥â â ™â ¥â ‡â â žâ ¬" }, { "input": "undulation", "output": "â ¥â â ™â ¥â ‡â â °â " }, { "input": "undulations", "output": "â ¥â â ™â ¥â ‡â â °â â Ž" }, { "input": "unduly", "output": "â ¥â â ™â ¥â ‡â ½" }, { "input": "undying", "output": "â ¥â â ™â ½â ¬" }, { "input": "unearned", "output": "â ¥â â ‘â œâ â «" }, { "input": "unearth", "output": "â ¥â â ‘⠜⠹" }, { "input": "unearthed", "output": "â ¥â â ‘⠜⠮⠙" }, { "input": "unearthing", "output": "â ¥â â ‘⠜⠹⠬" }, { "input": "unearthly", "output": "â ¥â â ‘⠜⠹⠇⠽" }, { "input": "unearths", "output": "â ¥â â ‘⠜⠹⠎" }, { "input": "unease", "output": "â ¥â â ‚â Žâ ‘" }, { "input": "uneasier", "output": "â ¥â â ‚â Žâ Šâ »" }, { "input": "uneasiest", "output": "â ¥â â ‚â Žâ Šâ ‘â Œ" }, { "input": "uneasily", "output": "â ¥â â ‚⠎⠊⠇⠽" }, { "input": "uneasiness", "output": "â ¥â â ‚â Žâ Šâ °â Ž" }, { "input": "uneasy", "output": "â ¥â â ‚â Žâ ½" }, { "input": "uneaten", "output": "â ¥â â ‚â žâ ¢" }, { "input": "uneconomic", "output": "â ¥â â ‘⠉⠕â â •â â Šâ ‰" }, { "input": "uneconomical", "output": "â ¥â â ‘⠉⠕â â •â â Šâ ‰â â ‡" }, { "input": "unedited", "output": "â ¥â â «â Šâ žâ «" }, { "input": "uneducated", "output": "â ¥â â «â ¥â ‰â â žâ «" }, { "input": "unembarrassed", "output": "â ¥â â ‘â â ƒâ œâ —â â Žâ Žâ «" }, { "input": "unemotional", "output": "â ¥â â ‘â â •â °â â â ‡" }, { "input": "unemployable", "output": "â ¥â â ‘â â â ‡â •â ½â â ƒâ ‡â ‘" }, { "input": "unemployed", "output": "â ¥â â ‘â â â ‡â •⠽⠫" }, { "input": "unemployment", "output": "â ¥â â ‘â â â ‡â •⠽⠰⠞" }, { "input": "unending", "output": "â ¥â â ¢â ™â ¬" }, { "input": "unendurable", "output": "â ¥â â ¢â ™â ¥â —â â ƒâ ‡â ‘" }, { "input": "unenforceable", "output": "â ¥â â ¢â ¿â ‰â ‚⠃⠇⠑" }, { "input": "unenlightened", "output": "â ¥â â ¢â ‡â Šâ £â žâ ¢â «" }, { "input": "unenthusiastic", "output": "â ¥â â ¢â ¹â ¥â Žâ Šâ â Œâ Šâ ‰" }, { "input": "unenviable", "output": "â ¥â â ¢â §â Šâ â ƒâ ‡â ‘" }, { "input": "unequal", "output": "â ¥â â ‘â Ÿâ ¥â â ‡" }, { "input": "unequaled", "output": "â ¥â â ‘â Ÿâ ¥â â ‡â «" }, { "input": "unequalled", "output": "â ¥â â ‘â Ÿâ ¥â â ‡â ‡â «" }, { "input": "unequally", "output": "â ¥â â ‘â Ÿâ ¥â â ‡â ‡â ½" }, { "input": "unequivocal", "output": "â ¥â â ‘⠟⠥⠊⠧⠕⠉â â ‡" }, { "input": "unequivocally", "output": "â ¥â â ‘⠟⠥⠊⠧⠕⠉â â ‡â ‡â ½" }, { "input": "unerring", "output": "â ¥â â »â —â ¬" }, { "input": "unerringly", "output": "â ¥â â »â —⠬⠇⠽" }, { "input": "unethical", "output": "â ¥â â ‘⠹⠊⠉â â ‡" }, { "input": "uneven", "output": "â ¥â â ‘â §â ¢" }, { "input": "unevener", "output": "â ¥â â ‘⠧⠢⠻" }, { "input": "unevenest", "output": "â ¥â â ‘⠧⠢⠑⠌" }, { "input": "unevenly", "output": "â ¥â â ‘⠧⠢⠇⠽" }, { "input": "unevenness", "output": "â ¥â â ‘⠧⠢⠰⠎" }, { "input": "uneventful", "output": "â ¥â â ‘⠧⠢⠞⠰⠇" }, { "input": "uneventfully", "output": "â ¥â â ‘⠧⠢⠞⠰⠇⠇⠽" }, { "input": "unexampled", "output": "â ¥â â ‘â ­â â â â ‡â «" }, { "input": "unexceptionable", "output": "â ¥â â ‘⠭⠉⠑â â °â â â ƒâ ‡â ‘" }, { "input": "unexceptional", "output": "â ¥â â ‘⠭⠉⠑â â °â â â ‡" }, { "input": "unexciting", "output": "â ¥â â ‘⠭⠉⠊⠞⠬" }, { "input": "unexpected", "output": "â ¥â â ‘â ­â â ‘⠉⠞⠫" }, { "input": "unexpectedly", "output": "â ¥â â ‘â ­â â ‘⠉⠞⠫⠇⠽" }, { "input": "unexplained", "output": "â ¥â â ‘â ­â â ‡â â ”â «" }, { "input": "unexplored", "output": "â ¥â â ‘â ­â â ‡â •â —â «" }, { "input": "unexpurgated", "output": "â ¥â â ‘â ­â â ¥â —â ›â â žâ «" }, { "input": "unfailing", "output": "â ¥â â ‹â â Šâ ‡â ¬" }, { "input": "unfailingly", "output": "â ¥â â ‹â â Šâ ‡â ¬â ‡â ½" }, { "input": "unfair", "output": "â ¥â â ‹â â Šâ —" }, { "input": "unfairer", "output": "â ¥â â ‹â â Šâ —â »" }, { "input": "unfairest", "output": "â ¥â â ‹â â Šâ —â ‘â Œ" }, { "input": "unfairly", "output": "â ¥â â ‹â â Šâ —⠇⠽" }, { "input": "unfairness", "output": "â ¥â â ‹â â Šâ —â °â Ž" }, { "input": "unfaithful", "output": "â ¥â â ‹â â Šâ ¹â °â ‡" }, { "input": "unfaithfully", "output": "â ¥â â ‹â â Šâ ¹â °â ‡â ‡â ½" }, { "input": "unfaithfulness", "output": "â ¥â â ‹â â Šâ ¹â °â ‡â °â Ž" }, { "input": "unfamiliar", "output": "â ¥â â ‹â â â Šâ ‡â Šâ œ" }, { "input": "unfamiliarity", "output": "â ¥â â ‹â â â Šâ ‡â Šâ œâ °â ½" }, { "input": "unfashionable", "output": "â ¥â â ‹â â ©â Šâ •â â â ƒâ ‡â ‘" }, { "input": "unfasten", "output": "â ¥â â ‹â â Œâ ¢" }, { "input": "unfastened", "output": "â ¥â â ‹â â Œâ ¢â «" }, { "input": "unfastening", "output": "â ¥â â ‹â â Œâ ¢â ¬" }, { "input": "unfastens", "output": "â ¥â â ‹â â Œâ ¢â Ž" }, { "input": "unfathomable", "output": "â ¥â â ‹â â ¹â •â â â ƒâ ‡â ‘" }, { "input": "unfavorable", "output": "â ¥â â ‹â â §â •â —â â ƒâ ‡â ‘" }, { "input": "unfavorably", "output": "â ¥â â ‹â â §â •â —â â ƒâ ‡â ½" }, { "input": "unfeasible", "output": "â ¥â â ‹â ‚⠎⠊⠃⠇⠑" }, { "input": "unfeeling", "output": "â ¥â â ‹â ‘⠑⠇⠬" }, { "input": "unfeelingly", "output": "â ¥â â ‹â ‘⠑⠇⠬⠇⠽" }, { "input": "unfeigned", "output": "â ¥â â ‹â ‘â Šâ ›â â «" }, { "input": "unfetter", "output": "â ¥â â ‹â ‘â žâ žâ »" }, { "input": "unfettered", "output": "â ¥â â ‹â ‘⠞⠞⠻⠫" }, { "input": "unfettering", "output": "â ¥â â ‹â ‘⠞⠞⠻⠬" }, { "input": "unfetters", "output": "â ¥â â ‹â ‘⠞⠞⠻⠎" }, { "input": "unfilled", "output": "â ¥â â ‹â Šâ ‡â ‡â «" }, { "input": "unfinished", "output": "â ¥â â ‹â ”â Šâ ©â «" }, { "input": "unfit", "output": "â ¥â â ‹â Šâ ž" }, { "input": "unfits", "output": "â ¥â â ‹â Šâ žâ Ž" }, { "input": "unfitted", "output": "â ¥â â ‹â Šâ žâ žâ «" }, { "input": "unfitting", "output": "â ¥â â ‹â Šâ žâ žâ ¬" }, { "input": "unflagging", "output": "â ¥â â ‹â ‡â â ¶â ¬" }, { "input": "unflappable", "output": "â ¥â â ‹â ‡â â â â â ƒâ ‡â ‘" }, { "input": "unflattering", "output": "â ¥â â ‹â ‡â â žâ žâ »â ¬" }, { "input": "unflinching", "output": "â ¥â â ‹â ‡â ”â ¡â ¬" }, { "input": "unflinchingly", "output": "â ¥â â ‹â ‡â ”⠡⠬⠇⠽" }, { "input": "unfold", "output": "â ¥â â ‹â •⠇⠙" }, { "input": "unfolded", "output": "â ¥â â ‹â •⠇⠙⠫" }, { "input": "unfolding", "output": "â ¥â â ‹â •⠇⠙⠬" }, { "input": "unfolds", "output": "â ¥â â ‹â •⠇⠙⠎" }, { "input": "unforeseeable", "output": "â ¥â â ¿â ‘⠎⠑⠂⠃⠇⠑" }, { "input": "unforeseen", "output": "â ¥â â ¿â ‘â Žâ ‘â ¢" }, { "input": "unforgettable", "output": "â ¥â â ¿â ›â ‘â žâ žâ â ƒâ ‡â ‘" }, { "input": "unforgettably", "output": "â ¥â â ¿â ›â ‘â žâ žâ â ƒâ ‡â ½" }, { "input": "unforgivable", "output": "â ¥â â ¿â ›â Šâ §â â ƒâ ‡â ‘" }, { "input": "unforgiving", "output": "â ¥â â ¿â ›â Šâ §â ¬" }, { "input": "unformed", "output": "â ¥â â ¿â â «" }, { "input": "unfortunate", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘" }, { "input": "unfortunately", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘⠇⠽" }, { "input": "unfortunates", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘â Ž" }, { "input": "unfounded", "output": "â ¥â â ‹â ¨â ™â «" }, { "input": "unfrequented", "output": "â ¥â â ‹â —⠑⠟⠥⠢⠞⠫" }, { "input": "unfriendlier", "output": "â ¥â â ‹â —⠇⠊⠻" }, { "input": "unfriendliest", "output": "â ¥â â ‹â —⠇⠊⠑⠌" }, { "input": "unfriendliness", "output": "â ¥â â ‹â —⠇⠊⠰⠎" }, { "input": "unfriendly", "output": "â ¥â â ‹â —⠇⠽" }, { "input": "unfrock", "output": "â ¥â â ‹â —⠕⠉⠅" }, { "input": "unfrocked", "output": "â ¥â â ‹â —⠕⠉⠅⠫" }, { "input": "unfrocking", "output": "â ¥â â ‹â —⠕⠉⠅⠬" }, { "input": "unfrocks", "output": "â ¥â â ‹â —⠕⠉⠅⠎" }, { "input": "unfulfilled", "output": "â ¥â â °â ‡â ‹â Šâ ‡â ‡â «" }, { "input": "unfunny", "output": "â ¥â â ‹â ¥â â â ½" }, { "input": "unfurl", "output": "â ¥â â ‹â ¥â —â ‡" }, { "input": "unfurled", "output": "â ¥â â ‹â ¥â —⠇⠫" }, { "input": "unfurling", "output": "â ¥â â ‹â ¥â —⠇⠬" }, { "input": "unfurls", "output": "â ¥â â ‹â ¥â —⠇⠎" }, { "input": "unfurnished", "output": "â ¥â â ‹â ¥â —â â Šâ ©â «" }, { "input": "ungainlier", "output": "â ¥â â ›â â ”⠇⠊⠻" }, { "input": "ungainliest", "output": "â ¥â â ›â â ”⠇⠊⠑⠌" }, { "input": "ungainliness", "output": "â ¥â â ›â â ”⠇⠊⠰⠎" }, { "input": "ungainly", "output": "â ¥â â ›â â ”⠇⠽" }, { "input": "ungentlemanly", "output": "â ¥â â ›â ¢â žâ ‡â ‘â â â â ‡â ½" }, { "input": "ungodlier", "output": "â ¥â â ›â •⠙⠇⠊⠻" }, { "input": "ungodliest", "output": "â ¥â â ›â •⠙⠇⠊⠑⠌" }, { "input": "ungodly", "output": "â ¥â â ›â •⠙⠇⠽" }, { "input": "ungovernable", "output": "â ¥â â ›â •â §â »â â â ƒâ ‡â ‘" }, { "input": "ungracious", "output": "â ¥â â ›â —â â ‰â Šâ ³â Ž" }, { "input": "ungrammatical", "output": "â ¥â â ›â —â â â â â žâ Šâ ‰â â ‡" }, { "input": "ungrateful", "output": "â ¥â â ›â —â â žâ ‘â °â ‡" }, { "input": "ungratefully", "output": "â ¥â â ›â —â â žâ ‘⠰⠇⠇⠽" }, { "input": "ungratefulness", "output": "â ¥â â ›â —â â žâ ‘⠰⠇⠰⠎" }, { "input": "ungrudging", "output": "â ¥â â ›â —⠥⠙⠛⠬" }, { "input": "unguarded", "output": "â ¥â â ›â ¥â œâ ™â «" }, { "input": "unguent", "output": "â ¥â â ›â ¥â ¢â ž" }, { "input": "unguents", "output": "â ¥â â ›â ¥â ¢â žâ Ž" }, { "input": "ungulate", "output": "â ¥â â ›â ¥â ‡â â žâ ‘" }, { "input": "ungulates", "output": "â ¥â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "unhand", "output": "â ¥â â “â ¯" }, { "input": "unhanded", "output": "â ¥â â “⠯⠫" }, { "input": "unhanding", "output": "â ¥â â “⠯⠬" }, { "input": "unhands", "output": "â ¥â â “⠯⠎" }, { "input": "unhappier", "output": "â ¥â â “â â â â Šâ »" }, { "input": "unhappiest", "output": "â ¥â â “â â â â Šâ ‘â Œ" }, { "input": "unhappily", "output": "â ¥â â “â â â â Šâ ‡â ½" }, { "input": "unhappiness", "output": "â ¥â â “â â â â Šâ °â Ž" }, { "input": "unhappy", "output": "â ¥â â “â â â â ½" }, { "input": "unharmed", "output": "â ¥â â “â œâ â «" }, { "input": "unhealthful", "output": "â ¥â â “⠂⠇⠹⠰⠇" }, { "input": "unhealthier", "output": "â ¥â â “⠂⠇⠹⠊⠻" }, { "input": "unhealthiest", "output": "â ¥â â “⠂⠇⠹⠊⠑⠌" }, { "input": "unhealthy", "output": "â ¥â â “⠂⠇⠹⠽" }, { "input": "unheard", "output": "â ¥â â “⠑⠜⠙" }, { "input": "unheeded", "output": "â ¥â â “â ‘â «â «" }, { "input": "unhelpful", "output": "â ¥â â “â ‘â ‡â â °â ‡" }, { "input": "unhesitating", "output": "â ¥â â “â ‘â Žâ Šâ žâ â žâ ¬" }, { "input": "unhesitatingly", "output": "â ¥â â “â ‘â Žâ Šâ žâ â žâ ¬â ‡â ½" }, { "input": "unhindered", "output": "â ¥â â “⠔⠙⠻⠫" }, { "input": "unhinge", "output": "â ¥â â “⠬⠑" }, { "input": "unhinged", "output": "â ¥â â “⠬⠫" }, { "input": "unhinges", "output": "â ¥â â “⠬⠑⠎" }, { "input": "unhinging", "output": "â ¥â â “⠬⠬" }, { "input": "unhitch", "output": "â ¥â â “â Šâ žâ ¡" }, { "input": "unhitched", "output": "â ¥â â “â Šâ žâ ¡â «" }, { "input": "unhitches", "output": "â ¥â â “â Šâ žâ ¡â ‘â Ž" }, { "input": "unhitching", "output": "â ¥â â “â Šâ žâ ¡â ¬" }, { "input": "unholier", "output": "â ¥â â “⠕⠇⠊⠻" }, { "input": "unholiest", "output": "â ¥â â “⠕⠇⠊⠑⠌" }, { "input": "unholy", "output": "â ¥â â “⠕⠇⠽" }, { "input": "unhook", "output": "â ¥â â “â •â •â …" }, { "input": "unhooked", "output": "â ¥â â “â •â •â …â «" }, { "input": "unhooking", "output": "â ¥â â “â •â •â …â ¬" }, { "input": "unhooks", "output": "â ¥â â “â •â •â …â Ž" }, { "input": "unhorse", "output": "â ¥â â “â •â —â Žâ ‘" }, { "input": "unhorsed", "output": "â ¥â â “â •â —â Žâ «" }, { "input": "unhorses", "output": "â ¥â â “â •â —â Žâ ‘â Ž" }, { "input": "unhorsing", "output": "â ¥â â “â •â —â Žâ ¬" }, { "input": "unhurried", "output": "â ¥â â “⠥⠗⠗⠊⠫" }, { "input": "unhurt", "output": "â ¥â â “⠥⠗⠞" }, { "input": "unicameral", "output": "â ¥â â Šâ ‰â â â »â â ‡" }, { "input": "unicorn", "output": "â ¥â â Šâ ‰â •â —â " }, { "input": "unicorns", "output": "â ¥â â Šâ ‰â •â —â â Ž" }, { "input": "unicycle", "output": "â ¥â â Šâ ‰â ½â ‰â ‡â ‘" }, { "input": "unicycles", "output": "â ¥â â Šâ ‰â ½â ‰â ‡â ‘â Ž" }, { "input": "unidentifiable", "output": "â ¥â â Šâ ™â ¢â žâ Šâ ‹â Šâ â ƒâ ‡â ‘" }, { "input": "unidentified", "output": "â ¥â â Šâ ™â ¢â žâ Šâ ‹â Šâ «" }, { "input": "unidirectional", "output": "â ¥â â Šâ ™â Šâ —⠑⠉⠰â â â ‡" }, { "input": "unification", "output": "â ¥â â Šâ ‹â Šâ ‰â â °â " }, { "input": "unified", "output": "â ¥â â Šâ ‹â Šâ «" }, { "input": "unifies", "output": "â ¥â â Šâ ‹â Šâ ‘â Ž" }, { "input": "uniform", "output": "â ¥â â Šâ ¿â " }, { "input": "uniformed", "output": "â ¥â â Šâ ¿â â «" }, { "input": "uniforming", "output": "â ¥â â Šâ ¿â â ¬" }, { "input": "uniformity", "output": "â ¥â â Šâ ¿â â °â ½" }, { "input": "uniformly", "output": "â ¥â â Šâ ¿â â ‡â ½" }, { "input": "uniforms", "output": "â ¥â â Šâ ¿â â Ž" }, { "input": "unify", "output": "â ¥â â Šâ ‹â ½" }, { "input": "unifying", "output": "â ¥â â Šâ ‹â ½â ¬" }, { "input": "unilateral", "output": "â ¥â â Šâ ‡â â žâ »â â ‡" }, { "input": "unilaterally", "output": "â ¥â â Šâ ‡â â žâ »â â ‡â ‡â ½" }, { "input": "unimaginable", "output": "â ¥â â Šâ â â ›â ”â â ƒâ ‡â ‘" }, { "input": "unimaginative", "output": "â ¥â â Šâ â â ›â ”â â žâ Šâ §â ‘" }, { "input": "unimpaired", "output": "â ¥â â Šâ â â â Šâ —â «" }, { "input": "unimpeachable", "output": "â ¥â â Šâ â â ‚â ¡â â ƒâ ‡â ‘" }, { "input": "unimplementable", "output": "â ¥â â Šâ â â ‡â ‘â °â žâ â ƒâ ‡â ‘" }, { "input": "unimplemented", "output": "â ¥â â Šâ â â ‡â ‘â °â žâ «" }, { "input": "unimportant", "output": "â ¥â â Šâ â â •â —â žâ â â ž" }, { "input": "unimpressed", "output": "â ¥â â Šâ â â —â ‘â Žâ Žâ «" }, { "input": "unimpressive", "output": "â ¥â â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "uninformative", "output": "â ¥â â ”â ¿â â â žâ Šâ §â ‘" }, { "input": "uninformed", "output": "â ¥â â ”â ¿â â «" }, { "input": "uninhabitable", "output": "â ¥â â ”â “â â ƒâ Šâ žâ â ƒâ ‡â ‘" }, { "input": "uninhabited", "output": "â ¥â â ”â “â â ƒâ Šâ žâ «" }, { "input": "uninhibited", "output": "â ¥â â ”⠓⠊⠃⠊⠞⠫" }, { "input": "uninitialized", "output": "â ¥â â ”â Šâ žâ Šâ â ‡â Šâ µâ «" }, { "input": "uninitiated", "output": "â ¥â â ”â Šâ žâ Šâ â žâ «" }, { "input": "uninjured", "output": "â ¥â â ”⠚⠥⠗⠫" }, { "input": "uninspired", "output": "â ¥â â ”â Žâ â Šâ —â «" }, { "input": "uninspiring", "output": "â ¥â â ”â Žâ â Šâ —â ¬" }, { "input": "uninstall", "output": "â ¥â â ”â Œâ â ‡â ‡" }, { "input": "uninstallable", "output": "â ¥â â ”â Œâ â ‡â ‡â â ƒâ ‡â ‘" }, { "input": "uninstalled", "output": "â ¥â â ”â Œâ â ‡â ‡â «" }, { "input": "uninstaller", "output": "â ¥â â ”â Œâ â ‡â ‡â »" }, { "input": "uninstallers", "output": "â ¥â â ”â Œâ â ‡â ‡â »â Ž" }, { "input": "uninstalling", "output": "â ¥â â ”â Œâ â ‡â ‡â ¬" }, { "input": "uninstalls", "output": "â ¥â â ”â Œâ â ‡â ‡â Ž" }, { "input": "uninsured", "output": "â ¥â â ”⠎⠥⠗⠫" }, { "input": "unintelligent", "output": "â ¥â â ”⠞⠑⠇⠇⠊⠛⠢⠞" }, { "input": "unintelligible", "output": "â ¥â â ”⠞⠑⠇⠇⠊⠛⠊⠃⠇⠑" }, { "input": "unintelligibly", "output": "â ¥â â ”⠞⠑⠇⠇⠊⠛⠊⠃⠇⠽" }, { "input": "unintended", "output": "â ¥â â ”⠞⠢⠙⠫" }, { "input": "unintentional", "output": "â ¥â â ”⠞⠢⠰â â â ‡" }, { "input": "unintentionally", "output": "â ¥â â ”⠞⠢⠰â â â ‡â ‡â ½" }, { "input": "uninterested", "output": "â ¥â â ”⠞⠻⠑⠌⠫" }, { "input": "uninteresting", "output": "â ¥â â ”⠞⠻⠑⠌⠬" }, { "input": "uninterpreted", "output": "â ¥â â ”â žâ »â â —â ‘â žâ «" }, { "input": "uninterrupted", "output": "â ¥â â ”⠞⠻⠗⠥â â žâ «" }, { "input": "uninvited", "output": "â ¥â â ”â §â Šâ žâ «" }, { "input": "uninviting", "output": "â ¥â â ”â §â Šâ žâ ¬" }, { "input": "union", "output": "â ¥â â Šâ •â " }, { "input": "unionization", "output": "â ¥â â Šâ •â â Šâ µâ â °â " }, { "input": "unionize", "output": "â ¥â â Šâ •â â Šâ µâ ‘" }, { "input": "unionized", "output": "â ¥â â Šâ •â â Šâ µâ «" }, { "input": "unionizes", "output": "â ¥â â Šâ •â â Šâ µâ ‘â Ž" }, { "input": "unionizing", "output": "â ¥â â Šâ •â â Šâ µâ ¬" }, { "input": "unions", "output": "â ¥â â Šâ •â â Ž" }, { "input": "unique", "output": "â ¥â â Šâ Ÿâ ¥â ‘" }, { "input": "uniquely", "output": "â ¥â â Šâ Ÿâ ¥â ‘⠇⠽" }, { "input": "uniqueness", "output": "â ¥â â Šâ Ÿâ ¥â ‘â °â Ž" }, { "input": "uniquer", "output": "â ¥â â Šâ Ÿâ ¥â »" }, { "input": "uniquest", "output": "â ¥â â Šâ Ÿâ ¥â ‘â Œ" }, { "input": "unisex", "output": "â ¥â â Šâ Žâ ‘â ­" }, { "input": "unison", "output": "â ¥â â Šâ Žâ •â " }, { "input": "unit", "output": "â ¥â â Šâ ž" }, { "input": "unitary", "output": "â ¥â â Šâ žâ œâ ½" }, { "input": "unite", "output": "â ¥â â Šâ žâ ‘" }, { "input": "united", "output": "â ¥â â Šâ žâ «" }, { "input": "unites", "output": "â ¥â â Šâ žâ ‘â Ž" }, { "input": "unities", "output": "â ¥â â Šâ žâ Šâ ‘â Ž" }, { "input": "uniting", "output": "â ¥â â Šâ žâ ¬" }, { "input": "units", "output": "â ¥â â Šâ žâ Ž" }, { "input": "unity", "output": "â ¥â â °â ½" }, { "input": "universal", "output": "â ¥â â Šâ §â »â Žâ â ‡" }, { "input": "universality", "output": "â ¥â â Šâ §â »â Žâ â ‡â °â ½" }, { "input": "universally", "output": "â ¥â â Šâ §â »â Žâ â ‡â ‡â ½" }, { "input": "universals", "output": "â ¥â â Šâ §â »â Žâ â ‡â Ž" }, { "input": "universe", "output": "â ¥â â Šâ §â »â Žâ ‘" }, { "input": "universes", "output": "â ¥â â Šâ §â »â Žâ ‘â Ž" }, { "input": "universities", "output": "â ¥â â Šâ §â »â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "university", "output": "â ¥â â Šâ §â »â Žâ °â ½" }, { "input": "unjust", "output": "â ¥â â šâ ¥â Œ" }, { "input": "unjustifiable", "output": "â ¥â â šâ ¥â Œâ Šâ ‹â Šâ â ƒâ ‡â ‘" }, { "input": "unjustified", "output": "â ¥â â šâ ¥â Œâ Šâ ‹â Šâ «" }, { "input": "unjustly", "output": "â ¥â â šâ ¥â Œâ ‡â ½" }, { "input": "unkempt", "output": "â ¥â â …â ‘â â â ž" }, { "input": "unkind", "output": "â ¥â â …⠔⠙" }, { "input": "unkinder", "output": "â ¥â â …⠔⠙⠻" }, { "input": "unkindest", "output": "â ¥â â …⠔⠙⠑⠌" }, { "input": "unkindlier", "output": "â ¥â â …⠔⠙⠇⠊⠻" }, { "input": "unkindliest", "output": "â ¥â â …⠔⠙⠇⠊⠑⠌" }, { "input": "unkindly", "output": "â ¥â â …⠔⠙⠇⠽" }, { "input": "unkindness", "output": "â ¥â â …⠔⠙⠰⠎" }, { "input": "unknowable", "output": "â ¥â â â …â â ƒâ ‡â ‘" }, { "input": "unknowing", "output": "â ¥â â â …â ¬" }, { "input": "unknowingly", "output": "â ¥â â â …⠬⠇⠽" }, { "input": "unknowings", "output": "â ¥â â â …⠬⠎" }, { "input": "unknown", "output": "â ¥â â â …â " }, { "input": "unknowns", "output": "â ¥â â â …â â Ž" }, { "input": "unlabeled", "output": "â ¥â â ‡â â ƒâ ‘⠇⠫" }, { "input": "unlace", "output": "â ¥â â ‡â â ‰â ‘" }, { "input": "unlaced", "output": "â ¥â â ‡â â ‰â «" }, { "input": "unlaces", "output": "â ¥â â ‡â â ‰â ‘â Ž" }, { "input": "unlacing", "output": "â ¥â â ‡â â ‰â ¬" }, { "input": "unlatch", "output": "â ¥â â ‡â â žâ ¡" }, { "input": "unlatched", "output": "â ¥â â ‡â â žâ ¡â «" }, { "input": "unlatches", "output": "â ¥â â ‡â â žâ ¡â ‘â Ž" }, { "input": "unlatching", "output": "â ¥â â ‡â â žâ ¡â ¬" }, { "input": "unlawful", "output": "â ¥â â ‡â â ºâ °â ‡" }, { "input": "unlawfully", "output": "â ¥â â ‡â â ºâ °â ‡â ‡â ½" }, { "input": "unleaded", "output": "â ¥â â ‡â ‚⠙⠫" }, { "input": "unlearn", "output": "â ¥â â ‡â ‘â œâ " }, { "input": "unlearned", "output": "â ¥â â ‡â ‘â œâ â «" }, { "input": "unlearning", "output": "â ¥â â ‡â ‘â œâ â ¬" }, { "input": "unlearns", "output": "â ¥â â ‡â ‘â œâ â Ž" }, { "input": "unleash", "output": "â ¥â â ‡â ‚â ©" }, { "input": "unleashed", "output": "â ¥â â ‡â ‚â ©â «" }, { "input": "unleashes", "output": "â ¥â â ‡â ‚â ©â ‘â Ž" }, { "input": "unleashing", "output": "â ¥â â ‡â ‚â ©â ¬" }, { "input": "unleavened", "output": "â ¥â â ‡â ‚⠧⠢⠫" }, { "input": "unless", "output": "â ¥â â ¨â Ž" }, { "input": "unlettered", "output": "â ¥â â ‡â —â «" }, { "input": "unlicensed", "output": "â ¥â â ‡â Šâ ‰â ¢â Žâ «" }, { "input": "unlike", "output": "â ¥â â ‡â Šâ …â ‘" }, { "input": "unlikelier", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠻" }, { "input": "unlikeliest", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠑⠌" }, { "input": "unlikelihood", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠓⠕⠕⠙" }, { "input": "unlikely", "output": "â ¥â â ‡â Šâ …⠑⠇⠽" }, { "input": "unlimited", "output": "â ¥â â ‡â Šâ â Šâ žâ «" }, { "input": "unlisted", "output": "â ¥â â ‡â Šâ Œâ «" }, { "input": "unload", "output": "â ¥â â ‡â •â â ™" }, { "input": "unloaded", "output": "â ¥â â ‡â •â â ™â «" }, { "input": "unloading", "output": "â ¥â â ‡â •â â ™â ¬" }, { "input": "unloads", "output": "â ¥â â ‡â •â â ™â Ž" }, { "input": "unlock", "output": "â ¥â â ‡â •⠉⠅" }, { "input": "unlocked", "output": "â ¥â â ‡â •⠉⠅⠫" }, { "input": "unlocking", "output": "â ¥â â ‡â •⠉⠅⠬" }, { "input": "unlocks", "output": "â ¥â â ‡â •⠉⠅⠎" }, { "input": "unloose", "output": "â ¥â â ‡â •â •â Žâ ‘" }, { "input": "unloosed", "output": "â ¥â â ‡â •â •â Žâ «" }, { "input": "unlooses", "output": "â ¥â â ‡â •â •â Žâ ‘â Ž" }, { "input": "unloosing", "output": "â ¥â â ‡â •â •â Žâ ¬" }, { "input": "unloved", "output": "â ¥â â ‡â •â §â «" }, { "input": "unluckier", "output": "â ¥â â ‡â ¥â ‰â …â Šâ »" }, { "input": "unluckiest", "output": "â ¥â â ‡â ¥â ‰â …â Šâ ‘â Œ" }, { "input": "unluckily", "output": "â ¥â â ‡â ¥â ‰â …⠊⠇⠽" }, { "input": "unlucky", "output": "â ¥â â ‡â ¥â ‰â …â ½" }, { "input": "unmade", "output": "â ¥â â â â ™â ‘" }, { "input": "unmake", "output": "â ¥â â â â …â ‘" }, { "input": "unmakes", "output": "â ¥â â â â …â ‘â Ž" }, { "input": "unmaking", "output": "â ¥â â â â …â ¬" }, { "input": "unman", "output": "â ¥â â â â " }, { "input": "unmanageable", "output": "â ¥â â â â â â ›â ‚⠃⠇⠑" }, { "input": "unmanlier", "output": "â ¥â â â â â ‡â Šâ »" }, { "input": "unmanliest", "output": "â ¥â â â â â ‡â Šâ ‘â Œ" }, { "input": "unmanly", "output": "â ¥â â â â â ‡â ½" }, { "input": "unmanned", "output": "â ¥â â â â â â «" }, { "input": "unmannerly", "output": "â ¥â â â â â â »â ‡â ½" }, { "input": "unmanning", "output": "â ¥â â â â â â ¬" }, { "input": "unmans", "output": "â ¥â â â â â Ž" }, { "input": "unmarked", "output": "â ¥â â â œâ …â «" }, { "input": "unmarried", "output": "â ¥â â â œâ —â Šâ «" }, { "input": "unmask", "output": "â ¥â â â â Žâ …" }, { "input": "unmasked", "output": "â ¥â â â â Žâ …â «" }, { "input": "unmasking", "output": "â ¥â â â â Žâ …â ¬" }, { "input": "unmasks", "output": "â ¥â â â â Žâ …â Ž" }, { "input": "unmatched", "output": "â ¥â â â â žâ ¡â «" }, { "input": "unmemorable", "output": "â ¥â â â ‘â â •â —â â ƒâ ‡â ‘" }, { "input": "unmentionable", "output": "â ¥â â â ¢â °â â â ƒâ ‡â ‘" }, { "input": "unmentionables", "output": "â ¥â â â ¢â °â â â ƒâ ‡â ‘â Ž" }, { "input": "unmerciful", "output": "â ¥â â â »â ‰â Šâ °â ‡" }, { "input": "unmercifully", "output": "â ¥â â â »â ‰â Šâ °â ‡â ‡â ½" }, { "input": "unmindful", "output": "â ¥â â â ”⠙⠰⠇" }, { "input": "unmistakable", "output": "â ¥â â â Šâ Œâ â …â â ƒâ ‡â ‘" }, { "input": "unmistakably", "output": "â ¥â â â Šâ Œâ â …â â ƒâ ‡â ½" }, { "input": "unmitigated", "output": "â ¥â â â Šâ žâ Šâ ›â â žâ «" }, { "input": "unmodified", "output": "â ¥â â â •⠙⠊⠋⠊⠫" }, { "input": "unmoral", "output": "â ¥â â â •â —â â ‡" }, { "input": "unmoved", "output": "â ¥â â â •â §â «" }, { "input": "unnamed", "output": "â ¥â â â â ™" }, { "input": "unnatural", "output": "â ¥â â â â žâ ¥â —â â ‡" }, { "input": "unnaturally", "output": "â ¥â â â â žâ ¥â —â â ‡â ‡â ½" }, { "input": "unnecessarily", "output": "â ¥â â â ‘⠉⠑⠎⠎⠜⠊⠇⠽" }, { "input": "unnecessary", "output": "â ¥â â â ‘â ‰" }, { "input": "unneeded", "output": "â ¥â â â ‘â «â «" }, { "input": "unnerve", "output": "â ¥â â â »â §â ‘" }, { "input": "unnerved", "output": "â ¥â â â »â §â «" }, { "input": "unnerves", "output": "â ¥â â â »â §â ‘â Ž" }, { "input": "unnerving", "output": "â ¥â â â »â §â ¬" }, { "input": "unnoticeable", "output": "â ¥â â â •⠞⠊⠉⠂⠃⠇⠑" }, { "input": "unnoticed", "output": "â ¥â â â •⠞⠊⠉⠫" }, { "input": "unnumbered", "output": "â ¥â â â ¥â â ƒâ »â «" }, { "input": "unobjectionable", "output": "â ¥â â •⠃⠚⠑⠉⠰â â â ƒâ ‡â ‘" }, { "input": "unobservant", "output": "â ¥â â •⠃⠎⠻⠧â â â ž" }, { "input": "unobserved", "output": "â ¥â â •⠃⠎⠻⠧⠫" }, { "input": "unobstructed", "output": "â ¥â â •⠃⠌⠗⠥⠉⠞⠫" }, { "input": "unobtainable", "output": "â ¥â â •⠃⠞â â ”â â ƒâ ‡â ‘" }, { "input": "unobtrusive", "output": "â ¥â â •⠃⠞⠗⠥⠎⠊⠧⠑" }, { "input": "unobtrusively", "output": "â ¥â â •⠃⠞⠗⠥⠎⠊⠧⠑⠇⠽" }, { "input": "unoccupied", "output": "â ¥â â •â ’â ¥â â Šâ «" }, { "input": "unoffensive", "output": "â ¥â â ·â ‹â ¢â Žâ Šâ §â ‘" }, { "input": "unofficial", "output": "â ¥â â ·â ‹â Šâ ‰â Šâ â ‡" }, { "input": "unofficially", "output": "â ¥â â ·â ‹â Šâ ‰â Šâ â ‡â ‡â ½" }, { "input": "unopened", "output": "â ¥â â •â â ¢â «" }, { "input": "unopposed", "output": "â ¥â â •â â â •â Žâ «" }, { "input": "unorganized", "output": "â ¥â â •â —â ›â â â Šâ µâ «" }, { "input": "unoriginal", "output": "â ¥â â •⠗⠊⠛⠔â â ‡" }, { "input": "unorthodox", "output": "â ¥â â •⠗⠹⠕⠙⠕⠭" }, { "input": "unpack", "output": "â ¥â â â â ‰â …" }, { "input": "unpacked", "output": "â ¥â â â â ‰â …â «" }, { "input": "unpacking", "output": "â ¥â â â â ‰â …â ¬" }, { "input": "unpacks", "output": "â ¥â â â â ‰â …â Ž" }, { "input": "unpaid", "output": "â ¥â â â ™" }, { "input": "unpainted", "output": "â ¥â â â â ”â žâ «" }, { "input": "unpalatable", "output": "â ¥â â â â ‡â â žâ â ƒâ ‡â ‘" }, { "input": "unparalleled", "output": "â ¥â â â œâ â ‡â ‡â ‘⠇⠫" }, { "input": "unpardonable", "output": "â ¥â â â œâ ™â •â â â ƒâ ‡â ‘" }, { "input": "unpatriotic", "output": "â ¥â â â â žâ —â Šâ •â žâ Šâ ‰" }, { "input": "unpaved", "output": "â ¥â â â â §â «" }, { "input": "unperturbed", "output": "â ¥â â â »â žâ ¥â —⠃⠫" }, { "input": "unpick", "output": "â ¥â â â Šâ ‰â …" }, { "input": "unpin", "output": "â ¥â â â ”" }, { "input": "unpinned", "output": "â ¥â â â ”â â «" }, { "input": "unpinning", "output": "â ¥â â â ”â â ¬" }, { "input": "unpins", "output": "â ¥â â â ”â Ž" }, { "input": "unplanned", "output": "â ¥â â â ‡â â â â «" }, { "input": "unpleasant", "output": "â ¥â â â ‡â ‚â Žâ â â ž" }, { "input": "unpleasantly", "output": "â ¥â â â ‡â ‚â Žâ â â žâ ‡â ½" }, { "input": "unpleasantness", "output": "â ¥â â â ‡â ‚â Žâ â â žâ °â Ž" }, { "input": "unplug", "output": "â ¥â â â ‡â ¥â ›" }, { "input": "unplugged", "output": "â ¥â â â ‡â ¥â ¶â «" }, { "input": "unplugging", "output": "â ¥â â â ‡â ¥â ¶â ¬" }, { "input": "unplugs", "output": "â ¥â â â ‡â ¥â ›â Ž" }, { "input": "unplumbed", "output": "â ¥â â â ‡â ¥â â ƒâ «" }, { "input": "unpolluted", "output": "â ¥â â â •⠇⠇⠥⠞⠫" }, { "input": "unpopular", "output": "â ¥â â â •â â ¥â ‡â œ" }, { "input": "unpopularity", "output": "â ¥â â â •â â ¥â ‡â œâ °â ½" }, { "input": "unprecedented", "output": "â ¥â â â —⠑⠉⠫⠢⠞⠫" }, { "input": "unpredictability", "output": "â ¥â â â —⠫⠊⠉⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "unpredictable", "output": "â ¥â â â —⠫⠊⠉⠞â â ƒâ ‡â ‘" }, { "input": "unprejudiced", "output": "â ¥â â â —⠑⠚⠥⠙⠊⠉⠫" }, { "input": "unpremeditated", "output": "â ¥â â â —â ‘â â «â Šâ žâ â žâ «" }, { "input": "unprepared", "output": "â ¥â â â —â ‘â â œâ «" }, { "input": "unpretentious", "output": "â ¥â â â —⠑⠞⠢⠞⠊⠳⠎" }, { "input": "unpreventable", "output": "â ¥â â â —⠑⠧⠢⠞â â ƒâ ‡â ‘" }, { "input": "unprincipled", "output": "â ¥â â â —⠔⠉⠊â â ‡â «" }, { "input": "unprintable", "output": "â ¥â â â —⠔⠞â â ƒâ ‡â ‘" }, { "input": "unprivileged", "output": "â ¥â â â —⠊⠧⠊⠇⠑⠛⠫" }, { "input": "unproductive", "output": "â ¥â â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "unprofessional", "output": "â ¥â â â —â ·â ‘â Žâ ¨â â â ‡" }, { "input": "unprofitable", "output": "â ¥â â â —â ·â Šâ žâ â ƒâ ‡â ‘" }, { "input": "unpromising", "output": "â ¥â â â —â •â â Šâ Žâ ¬" }, { "input": "unprompted", "output": "â ¥â â â —â •â â â žâ «" }, { "input": "unpronounceable", "output": "â ¥â â â —â •â â ³â â ‰â ‚⠃⠇⠑" }, { "input": "unprotected", "output": "â ¥â â â —⠕⠞⠑⠉⠞⠫" }, { "input": "unproved", "output": "â ¥â â â —â •â §â «" }, { "input": "unproven", "output": "â ¥â â â —â •â §â ¢" }, { "input": "unprovoked", "output": "â ¥â â â —â •â §â •â …â «" }, { "input": "unpublished", "output": "â ¥â â â ¥â ƒâ ‡â Šâ ©â «" }, { "input": "unpunished", "output": "â ¥â â â ¥â â Šâ ©â «" }, { "input": "unqualified", "output": "â ¥â â Ÿâ ¥â â ‡â Šâ ‹â Šâ «" }, { "input": "unquenchable", "output": "â ¥â â Ÿâ ¥â ¢â ¡â â ƒâ ‡â ‘" }, { "input": "unquestionable", "output": "â ¥â â â Ÿâ â ƒâ ‡â ‘" }, { "input": "unquestionably", "output": "â ¥â â â Ÿâ â ƒâ ‡â ½" }, { "input": "unquestioned", "output": "â ¥â â â Ÿâ «" }, { "input": "unquestioning", "output": "â ¥â â â Ÿâ ¬" }, { "input": "unquestioningly", "output": "â ¥â â â Ÿâ ¬â ‡â ½" }, { "input": "unquote", "output": "â ¥â â Ÿâ ¥â •â žâ ‘" }, { "input": "unquoted", "output": "â ¥â â Ÿâ ¥â •â žâ «" }, { "input": "unquotes", "output": "â ¥â â Ÿâ ¥â •â žâ ‘â Ž" }, { "input": "unquoting", "output": "â ¥â â Ÿâ ¥â •â žâ ¬" }, { "input": "unravel", "output": "â ¥â â —â â §â ‘â ‡" }, { "input": "unraveled", "output": "â ¥â â —â â §â ‘⠇⠫" }, { "input": "unraveling", "output": "â ¥â â —â â §â ‘⠇⠬" }, { "input": "unravelled", "output": "â ¥â â —â â §â ‘⠇⠇⠫" }, { "input": "unravelling", "output": "â ¥â â —â â §â ‘⠇⠇⠬" }, { "input": "unravels", "output": "â ¥â â —â â §â ‘⠇⠎" }, { "input": "unreachable", "output": "â ¥â â —â ‚â ¡â â ƒâ ‡â ‘" }, { "input": "unread", "output": "â ¥â â —â ‚â ™" }, { "input": "unreadable", "output": "â ¥â â —â ‚â ™â â ƒâ ‡â ‘" }, { "input": "unreadier", "output": "â ¥â â —⠂⠙⠊⠻" }, { "input": "unreadiest", "output": "â ¥â â —⠂⠙⠊⠑⠌" }, { "input": "unready", "output": "â ¥â â —⠂⠙⠽" }, { "input": "unreal", "output": "â ¥â â —â ‚â ‡" }, { "input": "unrealistic", "output": "â ¥â â —⠂⠇⠊⠌⠊⠉" }, { "input": "unrealistically", "output": "â ¥â â —⠂⠇⠊⠌⠊⠉â â ‡â ‡â ½" }, { "input": "unrealized", "output": "â ¥â â —⠂⠇⠊⠵⠫" }, { "input": "unreasonable", "output": "â ¥â â —â ‚â Žâ •â â â ƒâ ‡â ‘" }, { "input": "unreasonableness", "output": "â ¥â â —â ‚â Žâ •â â â ƒâ ‡â ‘â °â Ž" }, { "input": "unreasonably", "output": "â ¥â â —â ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "unreasoning", "output": "â ¥â â —â ‚â Žâ •â â ¬" }, { "input": "unrecognizable", "output": "â ¥â â —⠑⠉⠕⠛â â Šâ µâ â ƒâ ‡â ‘" }, { "input": "unrecognized", "output": "â ¥â â —⠑⠉⠕⠛â â Šâ µâ «" }, { "input": "unreconstructed", "output": "â ¥â â —⠑⠉⠕â â Œâ —⠥⠉⠞⠫" }, { "input": "unrecorded", "output": "â ¥â â —⠑⠉⠕⠗⠙⠫" }, { "input": "unrefined", "output": "â ¥â â —⠑⠋⠔⠫" }, { "input": "unregenerate", "output": "â ¥â â —⠑⠛⠢⠻â â žâ ‘" }, { "input": "unregistered", "output": "â ¥â â —⠑⠛⠊⠌⠻⠫" }, { "input": "unregulated", "output": "â ¥â â —⠑⠛⠥⠇â â žâ «" }, { "input": "unrehearsed", "output": "â ¥â â —⠑⠓⠑⠜⠎⠫" }, { "input": "unrelated", "output": "â ¥â â —â ‘â ‡â â žâ «" }, { "input": "unreleased", "output": "â ¥â â —⠑⠇⠂⠎⠫" }, { "input": "unrelenting", "output": "â ¥â â —⠑⠇⠢⠞⠬" }, { "input": "unrelentingly", "output": "â ¥â â —⠑⠇⠢⠞⠬⠇⠽" }, { "input": "unreliability", "output": "â ¥â â —⠑⠇⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "unreliable", "output": "â ¥â â —⠑⠇⠊â â ƒâ ‡â ‘" }, { "input": "unrelieved", "output": "â ¥â â —⠑⠇⠊⠑⠧⠫" }, { "input": "unremarkable", "output": "â ¥â â —â ‘â â œâ …â â ƒâ ‡â ‘" }, { "input": "unremitting", "output": "â ¥â â —â ‘â â Šâ žâ žâ ¬" }, { "input": "unrepeatable", "output": "â ¥â â —â ‘â â ‚â žâ â ƒâ ‡â ‘" }, { "input": "unrepentant", "output": "â ¥â â —â ‘â â ¢â žâ â â ž" }, { "input": "unrepresentative", "output": "â ¥â â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘" }, { "input": "unrequited", "output": "â ¥â â —⠑⠟⠥⠊⠞⠫" }, { "input": "unreserved", "output": "â ¥â â —⠑⠎⠻⠧⠫" }, { "input": "unreservedly", "output": "â ¥â â —⠑⠎⠻⠧⠫⠇⠽" }, { "input": "unresolved", "output": "â ¥â â —⠑⠎⠕⠇⠧⠫" }, { "input": "unresponsive", "output": "â ¥â â —â ‘â Žâ â •â â Žâ Šâ §â ‘" }, { "input": "unrest", "output": "â ¥â â —â ‘â Œ" }, { "input": "unrestrained", "output": "â ¥â â —⠑⠌⠗â â ”â «" }, { "input": "unrestricted", "output": "â ¥â â —⠑⠌⠗⠊⠉⠞⠫" }, { "input": "unrewarding", "output": "â ¥â â —⠑⠺⠜⠙⠬" }, { "input": "unripe", "output": "â ¥â â —â Šâ â ‘" }, { "input": "unriper", "output": "â ¥â â —â Šâ â »" }, { "input": "unripest", "output": "â ¥â â —â Šâ â ‘â Œ" }, { "input": "unrivaled", "output": "â ¥â â —â Šâ §â â ‡â «" }, { "input": "unrivalled", "output": "â ¥â â —â Šâ §â â ‡â ‡â «" }, { "input": "unroll", "output": "â ¥â â —⠕⠇⠇" }, { "input": "unrolled", "output": "â ¥â â —⠕⠇⠇⠫" }, { "input": "unrolling", "output": "â ¥â â —⠕⠇⠇⠬" }, { "input": "unrolls", "output": "â ¥â â —⠕⠇⠇⠎" }, { "input": "unromantic", "output": "â ¥â â —â •â â â â žâ Šâ ‰" }, { "input": "unruffled", "output": "â ¥â â —⠥⠖⠇⠫" }, { "input": "unrulier", "output": "â ¥â â —⠥⠇⠊⠻" }, { "input": "unruliest", "output": "â ¥â â —⠥⠇⠊⠑⠌" }, { "input": "unruliness", "output": "â ¥â â —⠥⠇⠊⠰⠎" }, { "input": "unruly", "output": "â ¥â â —⠥⠇⠽" }, { "input": "unsaddle", "output": "â ¥â â Žâ â ™â ™â ‡â ‘" }, { "input": "unsaddled", "output": "â ¥â â Žâ â ™â ™â ‡â «" }, { "input": "unsaddles", "output": "â ¥â â Žâ â ™â ™â ‡â ‘â Ž" }, { "input": "unsaddling", "output": "â ¥â â Žâ â ™â ™â ‡â ¬" }, { "input": "unsafe", "output": "â ¥â â Žâ â ‹â ‘" }, { "input": "unsafer", "output": "â ¥â â Žâ â ‹â »" }, { "input": "unsafest", "output": "â ¥â â Žâ â ‹â ‘â Œ" }, { "input": "unsaid", "output": "â ¥â â Žâ ™" }, { "input": "unsalted", "output": "â ¥â â Žâ â ‡â žâ «" }, { "input": "unsanctioned", "output": "â ¥â â Žâ â â ‰â °â â «" }, { "input": "unsanitary", "output": "â ¥â â Žâ â â Šâ žâ œâ ½" }, { "input": "unsatisfactory", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •â —â ½" }, { "input": "unsatisfied", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â Šâ «" }, { "input": "unsatisfying", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â ½â ¬" }, { "input": "unsaturated", "output": "â ¥â â Žâ â žâ ¥â —â â žâ «" }, { "input": "unsavory", "output": "â ¥â â Žâ â §â •â —â ½" }, { "input": "unsay", "output": "â ¥â â Žâ â ½" }, { "input": "unsaying", "output": "â ¥â â Žâ â ½â ¬" }, { "input": "unsays", "output": "â ¥â â Žâ â ½â Ž" }, { "input": "unscathed", "output": "â ¥â â Žâ ‰â â ®â ™" }, { "input": "unscheduled", "output": "â ¥â â Žâ ¡â «â ¥â ‡â «" }, { "input": "unschooled", "output": "â ¥â â Žâ ¡â •⠕⠇⠫" }, { "input": "unscientific", "output": "â ¥â â Žâ ‰â Šâ ¢â žâ Šâ ‹â Šâ ‰" }, { "input": "unscramble", "output": "â ¥â â Žâ ‰â —â â â ƒâ ‡â ‘" }, { "input": "unscrambled", "output": "â ¥â â Žâ ‰â —â â â ƒâ ‡â «" }, { "input": "unscrambles", "output": "â ¥â â Žâ ‰â —â â â ƒâ ‡â ‘â Ž" }, { "input": "unscrambling", "output": "â ¥â â Žâ ‰â —â â â ƒâ ‡â ¬" }, { "input": "unscrew", "output": "â ¥â â Žâ ‰â —â ‘â º" }, { "input": "unscrewed", "output": "â ¥â â Žâ ‰â —⠑⠺⠫" }, { "input": "unscrewing", "output": "â ¥â â Žâ ‰â —⠑⠺⠬" }, { "input": "unscrews", "output": "â ¥â â Žâ ‰â —⠑⠺⠎" }, { "input": "unscrupulous", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Ž" }, { "input": "unscrupulously", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "unscrupulousness", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Žâ °â Ž" }, { "input": "unseal", "output": "â ¥â â Žâ ‚â ‡" }, { "input": "unsealed", "output": "â ¥â â Žâ ‚⠇⠫" }, { "input": "unsealing", "output": "â ¥â â Žâ ‚⠇⠬" }, { "input": "unseals", "output": "â ¥â â Žâ ‚⠇⠎" }, { "input": "unseasonable", "output": "â ¥â â Žâ ‚â Žâ •â â â ƒâ ‡â ‘" }, { "input": "unseasonably", "output": "â ¥â â Žâ ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "unseasoned", "output": "â ¥â â Žâ ‚â Žâ •â â «" }, { "input": "unseat", "output": "â ¥â â Žâ ‚â ž" }, { "input": "unseated", "output": "â ¥â â Žâ ‚â žâ «" }, { "input": "unseating", "output": "â ¥â â Žâ ‚â žâ ¬" }, { "input": "unseats", "output": "â ¥â â Žâ ‚â žâ Ž" }, { "input": "unseeing", "output": "â ¥â â Žâ ‘â ‘â ¬" }, { "input": "unseemlier", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ »" }, { "input": "unseemliest", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ ‘â Œ" }, { "input": "unseemliness", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ °â Ž" }, { "input": "unseemly", "output": "â ¥â â Žâ ‘â ‘â â ‡â ½" }, { "input": "unseen", "output": "â ¥â â Žâ ‘â ¢" }, { "input": "unselfish", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩" }, { "input": "unselfishly", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩⠇⠽" }, { "input": "unselfishness", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩⠰⠎" }, { "input": "unsent", "output": "â ¥â â Žâ ¢â ž" }, { "input": "unsentimental", "output": "â ¥â â Žâ ¢â žâ Šâ °â žâ â ‡" }, { "input": "unset", "output": "â ¥â â Žâ ‘â ž" }, { "input": "unsettle", "output": "â ¥â â Žâ ‘⠞⠞⠇⠑" }, { "input": "unsettled", "output": "â ¥â â Žâ ‘⠞⠞⠇⠫" }, { "input": "unsettles", "output": "â ¥â â Žâ ‘⠞⠞⠇⠑⠎" }, { "input": "unsettling", "output": "â ¥â â Žâ ‘⠞⠞⠇⠬" }, { "input": "unshakable", "output": "â ¥â â ©â â …â â ƒâ ‡â ‘" }, { "input": "unshakeable", "output": "â ¥â â ©â â …⠂⠃⠇⠑" }, { "input": "unshaven", "output": "â ¥â â ©â â §â ¢" }, { "input": "unsheathe", "output": "â ¥â â ©â ‚â ®" }, { "input": "unsheathed", "output": "â ¥â â ©â ‚⠮⠙" }, { "input": "unsheathes", "output": "â ¥â â ©â ‚⠮⠎" }, { "input": "unsheathing", "output": "â ¥â â ©â ‚⠹⠬" }, { "input": "unsightlier", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ »" }, { "input": "unsightliest", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ ‘â Œ" }, { "input": "unsightliness", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ °â Ž" }, { "input": "unsightly", "output": "â ¥â â Žâ Šâ £â žâ ‡â ½" }, { "input": "unsigned", "output": "â ¥â â Žâ Šâ ›â â «" }, { "input": "unskilled", "output": "â ¥â â Žâ …⠊⠇⠇⠫" }, { "input": "unskillful", "output": "â ¥â â Žâ …⠊⠇⠇⠰⠇" }, { "input": "unsmiling", "output": "â ¥â â Žâ â Šâ ‡â ¬" }, { "input": "unsnap", "output": "â ¥â â Žâ â â " }, { "input": "unsnapped", "output": "â ¥â â Žâ â â â â «" }, { "input": "unsnapping", "output": "â ¥â â Žâ â â â â ¬" }, { "input": "unsnaps", "output": "â ¥â â Žâ â â â Ž" }, { "input": "unsnarl", "output": "â ¥â â Žâ â œâ ‡" }, { "input": "unsnarled", "output": "â ¥â â Žâ â œâ ‡â «" }, { "input": "unsnarling", "output": "â ¥â â Žâ â œâ ‡â ¬" }, { "input": "unsnarls", "output": "â ¥â â Žâ â œâ ‡â Ž" }, { "input": "unsociable", "output": "â ¥â â Žâ •⠉⠊â â ƒâ ‡â ‘" }, { "input": "unsold", "output": "â ¥â â Žâ •⠇⠙" }, { "input": "unsolicited", "output": "â ¥â â Žâ •⠇⠊⠉⠊⠞⠫" }, { "input": "unsolved", "output": "â ¥â â Žâ •⠇⠧⠫" }, { "input": "unsophisticated", "output": "â ¥â â Žâ •â â “⠊⠌⠊⠉â â žâ «" }, { "input": "unsound", "output": "â ¥â â Žâ ¨â ™" }, { "input": "unsounder", "output": "â ¥â â Žâ ¨â ™â »" }, { "input": "unsoundest", "output": "â ¥â â Žâ ¨â ™â ‘â Œ" }, { "input": "unsparing", "output": "â ¥â â Žâ â œâ ¬" }, { "input": "unspeakable", "output": "â ¥â â Žâ â ‚â …â â ƒâ ‡â ‘" }, { "input": "unspeakably", "output": "â ¥â â Žâ â ‚â …â â ƒâ ‡â ½" }, { "input": "unspecific", "output": "â ¥â â Žâ â ‘⠉⠊⠋⠊⠉" }, { "input": "unspecified", "output": "â ¥â â Žâ â ‘⠉⠊⠋⠊⠫" }, { "input": "unspoiled", "output": "â ¥â â Žâ â •⠊⠇⠫" }, { "input": "unspoilt", "output": "â ¥â â Žâ â •⠊⠇⠞" }, { "input": "unspoken", "output": "â ¥â â Žâ â •â …â ¢" }, { "input": "unsportsmanlike", "output": "â ¥â â Žâ â •â —â žâ Žâ â â â ‡â Šâ …â ‘" }, { "input": "unstable", "output": "â ¥â â Œâ â ƒâ ‡â ‘" }, { "input": "unstabler", "output": "â ¥â â Œâ â ƒâ ‡â »" }, { "input": "unstablest", "output": "â ¥â â Œâ â ƒâ ‡â ‘â Œ" }, { "input": "unstated", "output": "â ¥â â Œâ â žâ «" }, { "input": "unsteadier", "output": "â ¥â â Œâ ‚⠙⠊⠻" }, { "input": "unsteadiest", "output": "â ¥â â Œâ ‚⠙⠊⠑⠌" }, { "input": "unsteadily", "output": "â ¥â â Œâ ‚⠙⠊⠇⠽" }, { "input": "unsteadiness", "output": "â ¥â â Œâ ‚⠙⠊⠰⠎" }, { "input": "unsteady", "output": "â ¥â â Œâ ‚⠙⠽" }, { "input": "unstop", "output": "â ¥â â Œâ •â " }, { "input": "unstoppable", "output": "â ¥â â Œâ •â â â â ƒâ ‡â ‘" }, { "input": "unstopped", "output": "â ¥â â Œâ •â â â «" }, { "input": "unstopping", "output": "â ¥â â Œâ •â â â ¬" }, { "input": "unstops", "output": "â ¥â â Œâ •â â Ž" }, { "input": "unstressed", "output": "â ¥â â Œâ —â ‘â Žâ Žâ «" }, { "input": "unstructured", "output": "â ¥â â Œâ —⠥⠉⠞⠥⠗⠫" }, { "input": "unstrung", "output": "â ¥â â Œâ —â ¥â â ›" }, { "input": "unstuck", "output": "â ¥â â Œâ ¥â ‰â …" }, { "input": "unstudied", "output": "â ¥â â Œâ ¥â ™â Šâ «" }, { "input": "unsubscribe", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠑" }, { "input": "unsubscribed", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠫" }, { "input": "unsubscribes", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠑⠎" }, { "input": "unsubscribing", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠬" }, { "input": "unsubstantial", "output": "â ¥â â Žâ ¥â ƒâ Œâ â â žâ Šâ â ‡" }, { "input": "unsubstantiated", "output": "â ¥â â Žâ ¥â ƒâ Œâ â â žâ Šâ â žâ «" }, { "input": "unsubtle", "output": "â ¥â â Žâ ¥â ƒâ žâ ‡â ‘" }, { "input": "unsuccessful", "output": "â ¥â â Žâ ¥â ’â ‘â Žâ Žâ °â ‡" }, { "input": "unsuccessfully", "output": "â ¥â â Žâ ¥â ’⠑⠎⠎⠰⠇⠇⠽" }, { "input": "unsuitable", "output": "â ¥â â Žâ ¥â Šâ žâ â ƒâ ‡â ‘" }, { "input": "unsuitably", "output": "â ¥â â Žâ ¥â Šâ žâ â ƒâ ‡â ½" }, { "input": "unsuited", "output": "â ¥â â Žâ ¥â Šâ žâ «" }, { "input": "unsung", "output": "â ¥â â Žâ ¥â â ›" }, { "input": "unsupervised", "output": "â ¥â â Žâ ¥â â »â §â Šâ Žâ «" }, { "input": "unsupportable", "output": "â ¥â â Žâ ¥â â â •â —â žâ â ƒâ ‡â ‘" }, { "input": "unsupported", "output": "â ¥â â Žâ ¥â â â •â —â žâ «" }, { "input": "unsure", "output": "â ¥â â Žâ ¥â —â ‘" }, { "input": "unsurpassed", "output": "â ¥â â Žâ ¥â —â â â Žâ Žâ «" }, { "input": "unsurprising", "output": "â ¥â â Žâ ¥â —â â —â Šâ Žâ ¬" }, { "input": "unsuspected", "output": "â ¥â â Žâ ¥â Žâ â ‘⠉⠞⠫" }, { "input": "unsuspecting", "output": "â ¥â â Žâ ¥â Žâ â ‘⠉⠞⠬" }, { "input": "unsweetened", "output": "â ¥â â Žâ ºâ ‘⠑⠞⠢⠫" }, { "input": "unswerving", "output": "â ¥â â Žâ ºâ »â §â ¬" }, { "input": "unsympathetic", "output": "â ¥â â Žâ ½â â â â ®â žâ Šâ ‰" }, { "input": "untainted", "output": "â ¥â â žâ â ”â žâ «" }, { "input": "untamed", "output": "â ¥â â žâ â â «" }, { "input": "untangle", "output": "â ¥â â žâ â â ›â ‡â ‘" }, { "input": "untangled", "output": "â ¥â â žâ â â ›â ‡â «" }, { "input": "untangles", "output": "â ¥â â žâ â â ›â ‡â ‘â Ž" }, { "input": "untangling", "output": "â ¥â â žâ â â ›â ‡â ¬" }, { "input": "untapped", "output": "â ¥â â žâ â â â «" }, { "input": "untaught", "output": "â ¥â â žâ â ¥â £â ž" }, { "input": "untenable", "output": "â ¥â â žâ ¢â â ƒâ ‡â ‘" }, { "input": "untested", "output": "â ¥â â žâ ‘⠌⠫" }, { "input": "unthinkable", "output": "â ¥â â ¹â ”â …â â ƒâ ‡â ‘" }, { "input": "unthinking", "output": "â ¥â â ¹â ”â …â ¬" }, { "input": "unthinkingly", "output": "â ¥â â ¹â ”⠅⠬⠇⠽" }, { "input": "untidier", "output": "â ¥â â žâ Šâ ™â Šâ »" }, { "input": "untidiest", "output": "â ¥â â žâ Šâ ™â Šâ ‘â Œ" }, { "input": "untidiness", "output": "â ¥â â žâ Šâ ™â Šâ °â Ž" }, { "input": "untidy", "output": "â ¥â â žâ Šâ ™â ½" }, { "input": "untie", "output": "â ¥â â žâ Šâ ‘" }, { "input": "untied", "output": "â ¥â â žâ Šâ «" }, { "input": "unties", "output": "â ¥â â žâ Šâ ‘â Ž" }, { "input": "until", "output": "â ¥â â žâ Šâ ‡" }, { "input": "untimelier", "output": "â ¥â â â žâ ‡â Šâ »" }, { "input": "untimeliest", "output": "â ¥â â â žâ ‡â Šâ ‘â Œ" }, { "input": "untimeliness", "output": "â ¥â â â žâ ‡â Šâ °â Ž" }, { "input": "untimely", "output": "â ¥â â â žâ ‡â ½" }, { "input": "untiring", "output": "â ¥â â žâ Šâ —â ¬" }, { "input": "untiringly", "output": "â ¥â â žâ Šâ —⠬⠇⠽" }, { "input": "untitled", "output": "â ¥â â žâ Šâ žâ ‡â «" }, { "input": "unto", "output": "â ¥â â žâ •" }, { "input": "untold", "output": "â ¥â â žâ •⠇⠙" }, { "input": "untouchable", "output": "â ¥â â žâ ³â ¡â â ƒâ ‡â ‘" }, { "input": "untouchables", "output": "â ¥â â žâ ³â ¡â â ƒâ ‡â ‘â Ž" }, { "input": "untouched", "output": "â ¥â â žâ ³â ¡â «" }, { "input": "untoward", "output": "â ¥â â žâ ªâ œâ ™" }, { "input": "untrained", "output": "â ¥â â žâ —â â ”â «" }, { "input": "untreated", "output": "â ¥â â žâ —â ‚â žâ «" }, { "input": "untried", "output": "â ¥â â žâ —â Šâ «" }, { "input": "untroubled", "output": "â ¥â â žâ —⠳⠃⠇⠫" }, { "input": "untrue", "output": "â ¥â â žâ —⠥⠑" }, { "input": "untruer", "output": "â ¥â â žâ —⠥⠻" }, { "input": "untruest", "output": "â ¥â â žâ —⠥⠑⠌" }, { "input": "untrustworthy", "output": "â ¥â â žâ —⠥⠌⠺⠕⠗⠹⠽" }, { "input": "untruth", "output": "â ¥â â žâ —⠥⠹" }, { "input": "untruthful", "output": "â ¥â â žâ —⠥⠹⠰⠇" }, { "input": "untruthfully", "output": "â ¥â â žâ —⠥⠹⠰⠇⠇⠽" }, { "input": "untruths", "output": "â ¥â â žâ —⠥⠹⠎" }, { "input": "untutored", "output": "â ¥â â žâ ¥â žâ •â —â «" }, { "input": "untwist", "output": "â ¥â â žâ ºâ Šâ Œ" }, { "input": "untwisted", "output": "â ¥â â žâ ºâ Šâ Œâ «" }, { "input": "untwisting", "output": "â ¥â â žâ ºâ Šâ Œâ ¬" }, { "input": "untwists", "output": "â ¥â â žâ ºâ Šâ Œâ Ž" }, { "input": "untying", "output": "â ¥â â žâ ½â ¬" }, { "input": "unusable", "output": "â ¥â â ¥â Žâ â ƒâ ‡â ‘" }, { "input": "unused", "output": "â ¥â â ¥â Žâ «" }, { "input": "unusual", "output": "â ¥â â ¥â Žâ ¥â â ‡" }, { "input": "unusually", "output": "â ¥â â ¥â Žâ ¥â â ‡â ‡â ½" }, { "input": "unutterable", "output": "â ¥â â ¥â žâ žâ »â â ƒâ ‡â ‘" }, { "input": "unutterably", "output": "â ¥â â ¥â žâ žâ »â â ƒâ ‡â ½" }, { "input": "unvarnished", "output": "â ¥â â §â œâ â Šâ ©â «" }, { "input": "unvarying", "output": "â ¥â â §â œâ ½â ¬" }, { "input": "unveil", "output": "â ¥â â §â ‘â Šâ ‡" }, { "input": "unveiled", "output": "â ¥â â §â ‘⠊⠇⠫" }, { "input": "unveiling", "output": "â ¥â â §â ‘⠊⠇⠬" }, { "input": "unveils", "output": "â ¥â â §â ‘⠊⠇⠎" }, { "input": "unverified", "output": "â ¥â â §â »â Šâ ‹â Šâ «" }, { "input": "unvoiced", "output": "â ¥â â §â •⠊⠉⠫" }, { "input": "unwanted", "output": "â ¥â â ºâ â â žâ «" }, { "input": "unwarier", "output": "â ¥â â ºâ œâ Šâ »" }, { "input": "unwariest", "output": "â ¥â â ºâ œâ Šâ ‘â Œ" }, { "input": "unwariness", "output": "â ¥â â ºâ œâ Šâ °â Ž" }, { "input": "unwarranted", "output": "â ¥â â ºâ œâ —â â â žâ «" }, { "input": "unwary", "output": "â ¥â â ºâ œâ ½" }, { "input": "unwashed", "output": "â ¥â â ºâ â ©â «" }, { "input": "unwavering", "output": "â ¥â â ºâ â §â »â ¬" }, { "input": "unwed", "output": "â ¥â â ºâ «" }, { "input": "unwelcome", "output": "â ¥â â ºâ ‘⠇⠉⠕â â ‘" }, { "input": "unwell", "output": "â ¥â â ºâ ‘⠇⠇" }, { "input": "unwholesome", "output": "â ¥â â ±â •⠇⠑â â Ž" }, { "input": "unwieldier", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠻" }, { "input": "unwieldiest", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠑⠌" }, { "input": "unwieldiness", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠰⠎" }, { "input": "unwieldy", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠽" }, { "input": "unwilling", "output": "â ¥â â ºâ Šâ ‡â ‡â ¬" }, { "input": "unwillingly", "output": "â ¥â â ºâ Šâ ‡â ‡â ¬â ‡â ½" }, { "input": "unwillingness", "output": "â ¥â â ºâ Šâ ‡â ‡â ¬â °â Ž" }, { "input": "unwind", "output": "â ¥â â ºâ ”â ™" }, { "input": "unwinding", "output": "â ¥â â ºâ ”⠙⠬" }, { "input": "unwinds", "output": "â ¥â â ºâ ”⠙⠎" }, { "input": "unwise", "output": "â ¥â â ºâ Šâ Žâ ‘" }, { "input": "unwisely", "output": "â ¥â â ºâ Šâ Žâ ‘⠇⠽" }, { "input": "unwiser", "output": "â ¥â â ºâ Šâ Žâ »" }, { "input": "unwisest", "output": "â ¥â â ºâ Šâ Žâ ‘â Œ" }, { "input": "unwitting", "output": "â ¥â â ºâ Šâ žâ žâ ¬" }, { "input": "unwittingly", "output": "â ¥â â ºâ Šâ žâ žâ ¬â ‡â ½" }, { "input": "unwonted", "output": "â ¥â â ºâ •â â žâ «" }, { "input": "unworkable", "output": "â ¥â â â ºâ â ƒâ ‡â ‘" }, { "input": "unworldly", "output": "â ¥â â ¸â ºâ ‡â ½" }, { "input": "unworthier", "output": "â ¥â â ºâ •⠗⠹⠊⠻" }, { "input": "unworthiest", "output": "â ¥â â ºâ •⠗⠹⠊⠑⠌" }, { "input": "unworthiness", "output": "â ¥â â ºâ •⠗⠹⠊⠰⠎" }, { "input": "unworthy", "output": "â ¥â â ºâ •⠗⠹⠽" }, { "input": "unwound", "output": "â ¥â â ºâ ¨â ™" }, { "input": "unwrap", "output": "â ¥â â ºâ —â â " }, { "input": "unwrapped", "output": "â ¥â â ºâ —â â â â «" }, { "input": "unwrapping", "output": "â ¥â â ºâ —â â â â ¬" }, { "input": "unwraps", "output": "â ¥â â ºâ —â â â Ž" }, { "input": "unwritten", "output": "â ¥â â ºâ —â Šâ žâ žâ ¢" }, { "input": "unyielding", "output": "â ¥â â ½â Šâ ‘⠇⠙⠬" }, { "input": "unzip", "output": "â ¥â â µâ Šâ " }, { "input": "unzipped", "output": "â ¥â â µâ Šâ â â «" }, { "input": "unzipping", "output": "â ¥â â µâ Šâ â â ¬" }, { "input": "unzips", "output": "â ¥â â µâ Šâ â Ž" }, { "input": "up", "output": "â ¥â " }, { "input": "upbeat", "output": "â ¥â â ƒâ ‚â ž" }, { "input": "upbeats", "output": "â ¥â â ƒâ ‚â žâ Ž" }, { "input": "upbraid", "output": "â ¥â â ƒâ —â â Šâ ™" }, { "input": "upbraided", "output": "â ¥â â ƒâ —â â Šâ ™â «" }, { "input": "upbraiding", "output": "â ¥â â ƒâ —â â Šâ ™â ¬" }, { "input": "upbraids", "output": "â ¥â â ƒâ —â â Šâ ™â Ž" }, { "input": "upbringing", "output": "â ¥â â ƒâ —⠬⠬" }, { "input": "upbringings", "output": "â ¥â â ƒâ —⠬⠬⠎" }, { "input": "upchuck", "output": "â ¥â â ¡â ¥â ‰â …" }, { "input": "upchucked", "output": "â ¥â â ¡â ¥â ‰â …â «" }, { "input": "upchucking", "output": "â ¥â â ¡â ¥â ‰â …â ¬" }, { "input": "upchucks", "output": "â ¥â â ¡â ¥â ‰â …â Ž" }, { "input": "upcoming", "output": "â ¥â â ‰â •â â ¬" }, { "input": "upcountry", "output": "â ¥â â ‰â ¨â žâ —â ½" }, { "input": "update", "output": "â ¥â â ™â â žâ ‘" }, { "input": "updated", "output": "â ¥â â ™â â žâ «" }, { "input": "updater", "output": "â ¥â â ™â â žâ »" }, { "input": "updates", "output": "â ¥â â ™â â žâ ‘â Ž" }, { "input": "updating", "output": "â ¥â â ™â â žâ ¬" }, { "input": "updraft", "output": "â ¥â â ™â —â â ‹â ž" }, { "input": "updrafts", "output": "â ¥â â ™â —â â ‹â žâ Ž" }, { "input": "upend", "output": "â ¥â â ¢â ™" }, { "input": "upended", "output": "â ¥â â ¢â ™â «" }, { "input": "upending", "output": "â ¥â â ¢â ™â ¬" }, { "input": "upends", "output": "â ¥â â ¢â ™â Ž" }, { "input": "upfront", "output": "â ¥â â ‹â —â •â â ž" }, { "input": "upgrade", "output": "â ¥â â ›â —â â ™â ‘" }, { "input": "upgraded", "output": "â ¥â â ›â —â â ™â «" }, { "input": "upgrades", "output": "â ¥â â ›â —â â ™â ‘â Ž" }, { "input": "upgrading", "output": "â ¥â â ›â —â â ™â ¬" }, { "input": "upheaval", "output": "â ¥â â “â ‚â §â â ‡" }, { "input": "upheavals", "output": "â ¥â â “â ‚â §â â ‡â Ž" }, { "input": "upheld", "output": "â ¥â â “⠑⠇⠙" }, { "input": "uphill", "output": "â ¥â â “⠊⠇⠇" }, { "input": "uphills", "output": "â ¥â â “⠊⠇⠇⠎" }, { "input": "uphold", "output": "â ¥â â “⠕⠇⠙" }, { "input": "upholding", "output": "â ¥â â “⠕⠇⠙⠬" }, { "input": "upholds", "output": "â ¥â â “⠕⠇⠙⠎" }, { "input": "upholster", "output": "â ¥â â “⠕⠇⠌⠻" }, { "input": "upholstered", "output": "â ¥â â “⠕⠇⠌⠻⠫" }, { "input": "upholsterer", "output": "â ¥â â “⠕⠇⠌⠻⠻" }, { "input": "upholsterers", "output": "â ¥â â “⠕⠇⠌⠻⠻⠎" }, { "input": "upholstering", "output": "â ¥â â “⠕⠇⠌⠻⠬" }, { "input": "upholsters", "output": "â ¥â â “⠕⠇⠌⠻⠎" }, { "input": "upholstery", "output": "â ¥â â “⠕⠇⠌⠻⠽" }, { "input": "upkeep", "output": "â ¥â â …â ‘â ‘â " }, { "input": "upland", "output": "â ¥â â ‡â ¯" }, { "input": "uplands", "output": "â ¥â â ‡â ¯â Ž" }, { "input": "uplift", "output": "â ¥â â ‡â Šâ ‹â ž" }, { "input": "uplifted", "output": "â ¥â â ‡â Šâ ‹â žâ «" }, { "input": "uplifting", "output": "â ¥â â ‡â Šâ ‹â žâ ¬" }, { "input": "upliftings", "output": "â ¥â â ‡â Šâ ‹â žâ ¬â Ž" }, { "input": "uplifts", "output": "â ¥â â ‡â Šâ ‹â žâ Ž" }, { "input": "upload", "output": "â ¥â â ‡â •â â ™" }, { "input": "upmarket", "output": "â ¥â â â œâ …â ‘â ž" }, { "input": "upon", "output": "⠘⠥" }, { "input": "upped", "output": "â ¥â â â «" }, { "input": "upper", "output": "â ¥â â â »" }, { "input": "uppercase", "output": "â ¥â â â »â ‰â â Žâ ‘" }, { "input": "upperclassman", "output": "â ¥â â â »â ‰â ‡â â Žâ Žâ â â " }, { "input": "upperclassmen", "output": "â ¥â â â »â ‰â ‡â â Žâ Žâ â ¢" }, { "input": "uppercut", "output": "â ¥â â â »â ‰â ¥â ž" }, { "input": "uppercuts", "output": "â ¥â â â »â ‰â ¥â žâ Ž" }, { "input": "uppercutting", "output": "â ¥â â â »â ‰â ¥â žâ žâ ¬" }, { "input": "uppermost", "output": "â ¥â â â »â â •â Œ" }, { "input": "uppers", "output": "â ¥â â â »â Ž" }, { "input": "upping", "output": "â ¥â â â ¬" }, { "input": "uppity", "output": "â ¥â â â °â ½" }, { "input": "upraise", "output": "â ¥â â —â â Šâ Žâ ‘" }, { "input": "upraised", "output": "â ¥â â —â â Šâ Žâ «" }, { "input": "upraises", "output": "â ¥â â —â â Šâ Žâ ‘â Ž" }, { "input": "upraising", "output": "â ¥â â —â â Šâ Žâ ¬" }, { "input": "upright", "output": "â ¥â â â —" }, { "input": "uprights", "output": "â ¥â â â —â Ž" }, { "input": "uprising", "output": "â ¥â â —â Šâ Žâ ¬" }, { "input": "uprisings", "output": "â ¥â â —⠊⠎⠬⠎" }, { "input": "uproar", "output": "â ¥â â —â •â œ" }, { "input": "uproarious", "output": "â ¥â â —⠕⠜⠊⠳⠎" }, { "input": "uproariously", "output": "â ¥â â —⠕⠜⠊⠳⠎⠇⠽" }, { "input": "uproars", "output": "â ¥â â —⠕⠜⠎" }, { "input": "uproot", "output": "â ¥â â —â •â •â ž" }, { "input": "uprooted", "output": "â ¥â â —â •â •â žâ «" }, { "input": "uprooting", "output": "â ¥â â —â •â •â žâ ¬" }, { "input": "uproots", "output": "â ¥â â —â •â •â žâ Ž" }, { "input": "ups", "output": "â ¥â â Ž" }, { "input": "upscale", "output": "â ¥â â Žâ ‰â â ‡â ‘" }, { "input": "upset", "output": "â ¥â â Žâ ‘â ž" }, { "input": "upsets", "output": "â ¥â â Žâ ‘â žâ Ž" }, { "input": "upsetting", "output": "â ¥â â Žâ ‘â žâ žâ ¬" }, { "input": "upshot", "output": "â ¥â â ©â •â ž" }, { "input": "upshots", "output": "â ¥â â ©â •â žâ Ž" }, { "input": "upside", "output": "â ¥â â Žâ Šâ ™â ‘" }, { "input": "upsides", "output": "â ¥â â Žâ Šâ ™â ‘â Ž" }, { "input": "upstage", "output": "â ¥â â Œâ â ›â ‘" }, { "input": "upstaged", "output": "â ¥â â Œâ â ›â «" }, { "input": "upstages", "output": "â ¥â â Œâ â ›â ‘â Ž" }, { "input": "upstaging", "output": "â ¥â â Œâ â ›â ¬" }, { "input": "upstairs", "output": "â ¥â â Œâ â Šâ —â Ž" }, { "input": "upstanding", "output": "â ¥â â Œâ ¯â ¬" }, { "input": "upstart", "output": "â ¥â â Œâ œâ ž" }, { "input": "upstarted", "output": "â ¥â â Œâ œâ žâ «" }, { "input": "upstarting", "output": "â ¥â â Œâ œâ žâ ¬" }, { "input": "upstarts", "output": "â ¥â â Œâ œâ žâ Ž" }, { "input": "upstate", "output": "â ¥â â Œâ â žâ ‘" }, { "input": "upstream", "output": "â ¥â â Œâ —â ‚â " }, { "input": "upsurge", "output": "â ¥â â Žâ ¥â —⠛⠑" }, { "input": "upsurged", "output": "â ¥â â Žâ ¥â —⠛⠫" }, { "input": "upsurges", "output": "â ¥â â Žâ ¥â —⠛⠑⠎" }, { "input": "upsurging", "output": "â ¥â â Žâ ¥â —⠛⠬" }, { "input": "upswing", "output": "â ¥â â Žâ ºâ ¬" }, { "input": "upswings", "output": "â ¥â â Žâ ºâ ¬â Ž" }, { "input": "uptake", "output": "â ¥â â žâ â …â ‘" }, { "input": "uptakes", "output": "â ¥â â žâ â …â ‘â Ž" }, { "input": "uptight", "output": "â ¥â â žâ Šâ £â ž" }, { "input": "uptown", "output": "â ¥â â žâ ªâ " }, { "input": "upturn", "output": "â ¥â â žâ ¥â —â " }, { "input": "upturned", "output": "â ¥â â žâ ¥â —â â «" }, { "input": "upturning", "output": "â ¥â â žâ ¥â —â â ¬" }, { "input": "upturns", "output": "â ¥â â žâ ¥â —â â Ž" }, { "input": "upward", "output": "â ¥â â ºâ œâ ™" }, { "input": "upwardly", "output": "â ¥â â ºâ œâ ™â ‡â ½" }, { "input": "upwards", "output": "â ¥â â ºâ œâ ™â Ž" }, { "input": "uranium", "output": "⠥⠗â â â Šâ ¥â " }, { "input": "urban", "output": "⠥⠗⠃â â " }, { "input": "urbane", "output": "⠥⠗⠃â â â ‘" }, { "input": "urbaner", "output": "⠥⠗⠃â â â »" }, { "input": "urbanest", "output": "⠥⠗⠃â â â ‘â Œ" }, { "input": "urbanity", "output": "⠥⠗⠃â â â °â ½" }, { "input": "urbanization", "output": "⠥⠗⠃â â â Šâ µâ â °â " }, { "input": "urbanize", "output": "⠥⠗⠃â â â Šâ µâ ‘" }, { "input": "urbanized", "output": "⠥⠗⠃â â â Šâ µâ «" }, { "input": "urbanizes", "output": "⠥⠗⠃â â â Šâ µâ ‘â Ž" }, { "input": "urbanizing", "output": "⠥⠗⠃â â â Šâ µâ ¬" }, { "input": "urchin", "output": "⠥⠗⠡⠔" }, { "input": "urchins", "output": "⠥⠗⠡⠔⠎" }, { "input": "urea", "output": "⠥⠗⠑â " }, { "input": "urethra", "output": "⠥⠗⠑⠹⠗â " }, { "input": "urethrae", "output": "⠥⠗⠑⠹⠗â â ‘" }, { "input": "urethras", "output": "⠥⠗⠑⠹⠗â â Ž" }, { "input": "urge", "output": "⠥⠗⠛⠑" }, { "input": "urged", "output": "⠥⠗⠛⠫" }, { "input": "urgency", "output": "⠥⠗⠛⠢⠉⠽" }, { "input": "urgent", "output": "⠥⠗⠛⠢⠞" }, { "input": "urgently", "output": "⠥⠗⠛⠢⠞⠇⠽" }, { "input": "urges", "output": "⠥⠗⠛⠑⠎" }, { "input": "urging", "output": "⠥⠗⠛⠬" }, { "input": "uric", "output": "⠥⠗⠊⠉" }, { "input": "urinal", "output": "⠥⠗⠔â â ‡" }, { "input": "urinals", "output": "⠥⠗⠔â â ‡â Ž" }, { "input": "urinalyses", "output": "⠥⠗⠔â â ‡â ½â Žâ ‘â Ž" }, { "input": "urinalysis", "output": "⠥⠗⠔â â ‡â ½â Žâ Šâ Ž" }, { "input": "urinary", "output": "⠥⠗⠔⠜⠽" }, { "input": "urinate", "output": "⠥⠗⠔â â žâ ‘" }, { "input": "urinated", "output": "⠥⠗⠔â â žâ «" }, { "input": "urinates", "output": "⠥⠗⠔â â žâ ‘â Ž" }, { "input": "urinating", "output": "⠥⠗⠔â â žâ ¬" }, { "input": "urination", "output": "⠥⠗⠔â â °â " }, { "input": "urine", "output": "⠥⠗⠔⠑" }, { "input": "urn", "output": "⠥⠗â " }, { "input": "urns", "output": "⠥⠗â â Ž" }, { "input": "urologist", "output": "⠥⠗⠕⠇⠕⠛⠊⠌" }, { "input": "urologists", "output": "⠥⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "urology", "output": "⠥⠗⠕⠇⠕⠛⠽" }, { "input": "us", "output": "â ¥" }, { "input": "usable", "output": "⠥⠎â â ƒâ ‡â ‘" }, { "input": "usage", "output": "⠥⠎â â ›â ‘" }, { "input": "usages", "output": "⠥⠎â â ›â ‘â Ž" }, { "input": "use", "output": "⠥⠎⠑" }, { "input": "useable", "output": "⠥⠎⠂⠃⠇⠑" }, { "input": "used", "output": "⠥⠎⠫" }, { "input": "useful", "output": "⠥⠎⠑⠰⠇" }, { "input": "usefully", "output": "⠥⠎⠑⠰⠇⠇⠽" }, { "input": "usefulness", "output": "⠥⠎⠑⠰⠇⠰⠎" }, { "input": "useless", "output": "⠥⠎⠑⠨⠎" }, { "input": "uselessly", "output": "⠥⠎⠑⠨⠎⠇⠽" }, { "input": "uselessness", "output": "⠥⠎⠑⠨⠎⠰⠎" }, { "input": "user", "output": "⠥⠎⠻" }, { "input": "users", "output": "⠥⠎⠻⠎" }, { "input": "uses", "output": "⠥⠎⠑⠎" }, { "input": "usher", "output": "⠥⠩⠻" }, { "input": "ushered", "output": "⠥⠩⠻⠫" }, { "input": "usherette", "output": "⠥⠩⠻⠑⠞⠞⠑" }, { "input": "usherettes", "output": "⠥⠩⠻⠑⠞⠞⠑⠎" }, { "input": "ushering", "output": "⠥⠩⠻⠬" }, { "input": "ushers", "output": "⠥⠩⠻⠎" }, { "input": "using", "output": "⠥⠎⠬" }, { "input": "usual", "output": "⠥⠎⠥â â ‡" }, { "input": "usually", "output": "⠥⠎⠥â â ‡â ‡â ½" }, { "input": "usurer", "output": "⠥⠎⠥⠗⠻" }, { "input": "usurers", "output": "⠥⠎⠥⠗⠻⠎" }, { "input": "usurious", "output": "⠥⠎⠥⠗⠊⠳⠎" }, { "input": "usurp", "output": "⠥⠎⠥⠗â " }, { "input": "usurpation", "output": "⠥⠎⠥⠗â â â °â " }, { "input": "usurped", "output": "⠥⠎⠥⠗â â «" }, { "input": "usurper", "output": "⠥⠎⠥⠗â â »" }, { "input": "usurpers", "output": "⠥⠎⠥⠗â â »â Ž" }, { "input": "usurping", "output": "⠥⠎⠥⠗â â ¬" }, { "input": "usurps", "output": "⠥⠎⠥⠗â â Ž" }, { "input": "usury", "output": "⠥⠎⠥⠗⠽" }, { "input": "utensil", "output": "⠥⠞⠢⠎⠊⠇" }, { "input": "utensils", "output": "⠥⠞⠢⠎⠊⠇⠎" }, { "input": "uteri", "output": "⠥⠞⠻⠊" }, { "input": "uterine", "output": "⠥⠞⠻⠔⠑" }, { "input": "uterus", "output": "⠥⠞⠻⠥⠎" }, { "input": "uteruses", "output": "⠥⠞⠻⠥⠎⠑⠎" }, { "input": "utilitarian", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â " }, { "input": "utilitarianism", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â â Šâ Žâ " }, { "input": "utilitarians", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â â Ž" }, { "input": "utilities", "output": "⠥⠞⠊⠇⠊⠞⠊⠑⠎" }, { "input": "utility", "output": "⠥⠞⠊⠇⠰⠽" }, { "input": "utilization", "output": "⠥⠞⠊⠇⠊⠵â â °â " }, { "input": "utilize", "output": "⠥⠞⠊⠇⠊⠵⠑" }, { "input": "utilized", "output": "⠥⠞⠊⠇⠊⠵⠫" }, { "input": "utilizes", "output": "⠥⠞⠊⠇⠊⠵⠑⠎" }, { "input": "utilizing", "output": "⠥⠞⠊⠇⠊⠵⠬" }, { "input": "utmost", "output": "⠥⠞â â •â Œ" }, { "input": "utopia", "output": "⠥⠞⠕â â Šâ " }, { "input": "utopian", "output": "⠥⠞⠕â â Šâ â " }, { "input": "utopians", "output": "⠥⠞⠕â â Šâ â â Ž" }, { "input": "utopias", "output": "⠥⠞⠕â â Šâ â Ž" }, { "input": "utter", "output": "⠥⠞⠞⠻" }, { "input": "utterance", "output": "⠥⠞⠞⠻⠨⠑" }, { "input": "utterances", "output": "⠥⠞⠞⠻⠨⠑⠎" }, { "input": "uttered", "output": "⠥⠞⠞⠻⠫" }, { "input": "uttering", "output": "⠥⠞⠞⠻⠬" }, { "input": "utterly", "output": "⠥⠞⠞⠻⠇⠽" }, { "input": "uttermost", "output": "⠥⠞⠞⠻â â •â Œ" }, { "input": "utters", "output": "⠥⠞⠞⠻⠎" }, { "input": "uvula", "output": "⠥⠧⠥⠇â " }, { "input": "uvulae", "output": "⠥⠧⠥⠇â â ‘" }, { "input": "uvular", "output": "⠥⠧⠥⠇⠜" }, { "input": "uvulars", "output": "⠥⠧⠥⠇⠜⠎" }, { "input": "uvulas", "output": "⠥⠧⠥⠇â â Ž" }, { "input": "v", "output": "â °â §" }, { "input": "vacancies", "output": "â §â â ‰â â â ‰â Šâ ‘â Ž" }, { "input": "vacancy", "output": "â §â â ‰â â â ‰â ½" }, { "input": "vacant", "output": "â §â â ‰â â â ž" }, { "input": "vacantly", "output": "â §â â ‰â â â žâ ‡â ½" }, { "input": "vacate", "output": "â §â â ‰â â žâ ‘" }, { "input": "vacated", "output": "â §â â ‰â â žâ «" }, { "input": "vacates", "output": "â §â â ‰â â žâ ‘â Ž" }, { "input": "vacating", "output": "â §â â ‰â â žâ ¬" }, { "input": "vacation", "output": "â §â â ‰â â °â " }, { "input": "vacationed", "output": "â §â â ‰â â °â â «" }, { "input": "vacationer", "output": "â §â â ‰â â °â â »" }, { "input": "vacationers", "output": "â §â â ‰â â °â â »â Ž" }, { "input": "vacationing", "output": "â §â â ‰â â °â â ¬" }, { "input": "vacations", "output": "â §â â ‰â â °â â Ž" }, { "input": "vaccinate", "output": "â §â â ’â ”â â žâ ‘" }, { "input": "vaccinated", "output": "â §â â ’â ”â â žâ «" }, { "input": "vaccinates", "output": "â §â â ’â ”â â žâ ‘â Ž" }, { "input": "vaccinating", "output": "â §â â ’â ”â â žâ ¬" }, { "input": "vaccination", "output": "â §â â ’â ”â â °â " }, { "input": "vaccinations", "output": "â §â â ’â ”â â °â â Ž" }, { "input": "vaccine", "output": "â §â â ’⠔⠑" }, { "input": "vaccines", "output": "â §â â ’⠔⠑⠎" }, { "input": "vacillate", "output": "â §â â ‰â Šâ ‡â ‡â â žâ ‘" }, { "input": "vacillated", "output": "â §â â ‰â Šâ ‡â ‡â â žâ «" }, { "input": "vacillates", "output": "â §â â ‰â Šâ ‡â ‡â â žâ ‘â Ž" }, { "input": "vacillating", "output": "â §â â ‰â Šâ ‡â ‡â â žâ ¬" }, { "input": "vacillation", "output": "â §â â ‰â Šâ ‡â ‡â â °â " }, { "input": "vacillations", "output": "â §â â ‰â Šâ ‡â ‡â â °â â Ž" }, { "input": "vacua", "output": "â §â â ‰â ¥â " }, { "input": "vacuity", "output": "â §â â ‰â ¥â °â ½" }, { "input": "vacuous", "output": "â §â â ‰â ¥â ³â Ž" }, { "input": "vacuously", "output": "â §â â ‰â ¥â ³â Žâ ‡â ½" }, { "input": "vacuum", "output": "â §â â ‰â ¥â ¥â " }, { "input": "vacuumed", "output": "â §â â ‰â ¥â ¥â â «" }, { "input": "vacuuming", "output": "â §â â ‰â ¥â ¥â â ¬" }, { "input": "vacuums", "output": "â §â â ‰â ¥â ¥â â Ž" }, { "input": "vagabond", "output": "â §â â ›â â ƒâ •â â ™" }, { "input": "vagabonded", "output": "â §â â ›â â ƒâ •â â ™â «" }, { "input": "vagabonding", "output": "â §â â ›â â ƒâ •â â ™â ¬" }, { "input": "vagabonds", "output": "â §â â ›â â ƒâ •â â ™â Ž" }, { "input": "vagaries", "output": "â §â â ›â œâ Šâ ‘â Ž" }, { "input": "vagary", "output": "â §â â ›â œâ ½" }, { "input": "vagina", "output": "â §â â ›â ”â " }, { "input": "vaginae", "output": "â §â â ›â ”â â ‘" }, { "input": "vaginal", "output": "â §â â ›â ”â â ‡" }, { "input": "vaginas", "output": "â §â â ›â ”â â Ž" }, { "input": "vagrancy", "output": "â §â â ›â —â â â ‰â ½" }, { "input": "vagrant", "output": "â §â â ›â —â â â ž" }, { "input": "vagrants", "output": "â §â â ›â —â â â žâ Ž" }, { "input": "vague", "output": "â §â â ›â ¥â ‘" }, { "input": "vaguely", "output": "â §â â ›â ¥â ‘⠇⠽" }, { "input": "vagueness", "output": "â §â â ›â ¥â ‘â °â Ž" }, { "input": "vaguer", "output": "â §â â ›â ¥â »" }, { "input": "vaguest", "output": "â §â â ›â ¥â ‘â Œ" }, { "input": "vain", "output": "â §â â ”" }, { "input": "vainer", "output": "â §â â ”â »" }, { "input": "vainest", "output": "â §â â ”â ‘â Œ" }, { "input": "vainglorious", "output": "â §â â ”⠛⠇⠕⠗⠊⠳⠎" }, { "input": "vainglory", "output": "â §â â ”⠛⠇⠕⠗⠽" }, { "input": "vainly", "output": "â §â â ”⠇⠽" }, { "input": "valance", "output": "â §â â ‡â ¨â ‘" }, { "input": "valances", "output": "â §â â ‡â ¨â ‘â Ž" }, { "input": "vale", "output": "â §â â ‡â ‘" }, { "input": "valedictorian", "output": "â §â â ‡â «â Šâ ‰â žâ •â —â Šâ â " }, { "input": "valedictorians", "output": "â §â â ‡â «â Šâ ‰â žâ •â —â Šâ â â Ž" }, { "input": "valedictories", "output": "â §â â ‡â «â Šâ ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "valedictory", "output": "â §â â ‡â «â Šâ ‰â žâ •â —â ½" }, { "input": "valence", "output": "â §â â ‡â °â ‘" }, { "input": "valences", "output": "â §â â ‡â °â ‘â Ž" }, { "input": "valentine", "output": "â §â â ‡â ¢â žâ ”â ‘" }, { "input": "valentines", "output": "â §â â ‡â ¢â žâ ”â ‘â Ž" }, { "input": "vales", "output": "â §â â ‡â ‘â Ž" }, { "input": "valet", "output": "â §â â ‡â ‘â ž" }, { "input": "valeted", "output": "â §â â ‡â ‘â žâ «" }, { "input": "valeting", "output": "â §â â ‡â ‘â žâ ¬" }, { "input": "valets", "output": "â §â â ‡â ‘â žâ Ž" }, { "input": "valiant", "output": "â §â â ‡â Šâ â â ž" }, { "input": "valiantly", "output": "â §â â ‡â Šâ â â žâ ‡â ½" }, { "input": "valid", "output": "â §â â ‡â Šâ ™" }, { "input": "validate", "output": "â §â â ‡â Šâ ™â â žâ ‘" }, { "input": "validated", "output": "â §â â ‡â Šâ ™â â žâ «" }, { "input": "validates", "output": "â §â â ‡â Šâ ™â â žâ ‘â Ž" }, { "input": "validating", "output": "â §â â ‡â Šâ ™â â žâ ¬" }, { "input": "validation", "output": "â §â â ‡â Šâ ™â â °â " }, { "input": "validations", "output": "â §â â ‡â Šâ ™â â °â â Ž" }, { "input": "validity", "output": "â §â â ‡â Šâ ™â °â ½" }, { "input": "validly", "output": "â §â â ‡â Šâ ™â ‡â ½" }, { "input": "validness", "output": "â §â â ‡â Šâ ™â °â Ž" }, { "input": "valise", "output": "â §â â ‡â Šâ Žâ ‘" }, { "input": "valises", "output": "â §â â ‡â Šâ Žâ ‘â Ž" }, { "input": "valley", "output": "â §â â ‡â ‡â ‘â ½" }, { "input": "valleys", "output": "â §â â ‡â ‡â ‘⠽⠎" }, { "input": "valor", "output": "â §â â ‡â •â —" }, { "input": "valorous", "output": "â §â â ‡â •⠗⠳⠎" }, { "input": "valuable", "output": "â §â â ‡â ¥â â ƒâ ‡â ‘" }, { "input": "valuables", "output": "â §â â ‡â ¥â â ƒâ ‡â ‘â Ž" }, { "input": "valuation", "output": "â §â â ‡â ¥â â °â " }, { "input": "valuations", "output": "â §â â ‡â ¥â â °â â Ž" }, { "input": "value", "output": "â §â â ‡â ¥â ‘" }, { "input": "valued", "output": "â §â â ‡â ¥â «" }, { "input": "valueless", "output": "â §â â ‡â ¥â ‘⠨⠎" }, { "input": "values", "output": "â §â â ‡â ¥â ‘â Ž" }, { "input": "valuing", "output": "â §â â ‡â ¥â ¬" }, { "input": "valve", "output": "â §â â ‡â §â ‘" }, { "input": "valved", "output": "â §â â ‡â §â «" }, { "input": "valves", "output": "â §â â ‡â §â ‘â Ž" }, { "input": "valving", "output": "â §â â ‡â §â ¬" }, { "input": "vamoose", "output": "â §â â â •â •â Žâ ‘" }, { "input": "vamoosed", "output": "â §â â â •â •â Žâ «" }, { "input": "vamooses", "output": "â §â â â •â •â Žâ ‘â Ž" }, { "input": "vamoosing", "output": "â §â â â •â •â Žâ ¬" }, { "input": "vamp", "output": "â §â â â " }, { "input": "vamped", "output": "â §â â â â «" }, { "input": "vamping", "output": "â §â â â â ¬" }, { "input": "vampire", "output": "â §â â â â Šâ —â ‘" }, { "input": "vampires", "output": "â §â â â â Šâ —â ‘â Ž" }, { "input": "vamps", "output": "â §â â â â Ž" }, { "input": "van", "output": "â §â â " }, { "input": "vanadium", "output": "â §â â â â ™â Šâ ¥â " }, { "input": "vandal", "output": "â §â ¯â â ‡" }, { "input": "vandalism", "output": "â §â ¯â â ‡â Šâ Žâ " }, { "input": "vandalize", "output": "â §â ¯â â ‡â Šâ µâ ‘" }, { "input": "vandalized", "output": "â §â ¯â â ‡â Šâ µâ «" }, { "input": "vandalizes", "output": "â §â ¯â â ‡â Šâ µâ ‘â Ž" }, { "input": "vandalizing", "output": "â §â ¯â â ‡â Šâ µâ ¬" }, { "input": "vandals", "output": "â §â ¯â â ‡â Ž" }, { "input": "vane", "output": "â §â â â ‘" }, { "input": "vanes", "output": "â §â â â ‘â Ž" }, { "input": "vanguard", "output": "â §â â â ›â ¥â œâ ™" }, { "input": "vanguards", "output": "â §â â â ›â ¥â œâ ™â Ž" }, { "input": "vanilla", "output": "â §â â â Šâ ‡â ‡â " }, { "input": "vanillas", "output": "â §â â â Šâ ‡â ‡â â Ž" }, { "input": "vanish", "output": "â §â â â Šâ ©" }, { "input": "vanished", "output": "â §â â â Šâ ©â «" }, { "input": "vanishes", "output": "â §â â â Šâ ©â ‘â Ž" }, { "input": "vanishing", "output": "â §â â â Šâ ©â ¬" }, { "input": "vanishings", "output": "â §â â â Šâ ©â ¬â Ž" }, { "input": "vanities", "output": "â §â â â Šâ žâ Šâ ‘â Ž" }, { "input": "vanity", "output": "â §â â â °â ½" }, { "input": "vanned", "output": "â §â â â â «" }, { "input": "vanning", "output": "â §â â â â ¬" }, { "input": "vanquish", "output": "â §â â â Ÿâ ¥â Šâ ©" }, { "input": "vanquished", "output": "â §â â â Ÿâ ¥â Šâ ©â «" }, { "input": "vanquishes", "output": "â §â â â Ÿâ ¥â Šâ ©â ‘â Ž" }, { "input": "vanquishing", "output": "â §â â â Ÿâ ¥â Šâ ©â ¬" }, { "input": "vans", "output": "â §â â â Ž" }, { "input": "vantage", "output": "â §â â â žâ â ›â ‘" }, { "input": "vantages", "output": "â §â â â žâ â ›â ‘â Ž" }, { "input": "vapid", "output": "â §â â â Šâ ™" }, { "input": "vapidity", "output": "â §â â â Šâ ™â °â ½" }, { "input": "vapidness", "output": "â §â â â Šâ ™â °â Ž" }, { "input": "vapor", "output": "â §â â â •â —" }, { "input": "vaporization", "output": "â §â â â •â —â Šâ µâ â °â " }, { "input": "vaporize", "output": "â §â â â •⠗⠊⠵⠑" }, { "input": "vaporized", "output": "â §â â â •⠗⠊⠵⠫" }, { "input": "vaporizer", "output": "â §â â â •⠗⠊⠵⠻" }, { "input": "vaporizers", "output": "â §â â â •⠗⠊⠵⠻⠎" }, { "input": "vaporizes", "output": "â §â â â •⠗⠊⠵⠑⠎" }, { "input": "vaporizing", "output": "â §â â â •⠗⠊⠵⠬" }, { "input": "vaporous", "output": "â §â â â •⠗⠳⠎" }, { "input": "vapors", "output": "â §â â â •â —â Ž" }, { "input": "variability", "output": "⠧⠜⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "variable", "output": "⠧⠜⠊â â ƒâ ‡â ‘" }, { "input": "variables", "output": "⠧⠜⠊â â ƒâ ‡â ‘â Ž" }, { "input": "variably", "output": "⠧⠜⠊â â ƒâ ‡â ½" }, { "input": "variance", "output": "⠧⠜⠊⠨⠑" }, { "input": "variances", "output": "⠧⠜⠊⠨⠑⠎" }, { "input": "variant", "output": "⠧⠜⠊â â â ž" }, { "input": "variants", "output": "⠧⠜⠊â â â žâ Ž" }, { "input": "variate", "output": "⠧⠜⠊â â žâ ‘" }, { "input": "variation", "output": "⠧⠜⠊â â °â " }, { "input": "variations", "output": "⠧⠜⠊â â °â â Ž" }, { "input": "varicolored", "output": "⠧⠜⠊⠉⠕⠇⠕⠗⠫" }, { "input": "varicose", "output": "⠧⠜⠊⠉⠕⠎⠑" }, { "input": "varied", "output": "⠧⠜⠊⠫" }, { "input": "variegate", "output": "⠧⠜⠊⠑⠛â â žâ ‘" }, { "input": "variegated", "output": "⠧⠜⠊⠑⠛â â žâ «" }, { "input": "variegates", "output": "⠧⠜⠊⠑⠛â â žâ ‘â Ž" }, { "input": "variegating", "output": "⠧⠜⠊⠑⠛â â žâ ¬" }, { "input": "varies", "output": "⠧⠜⠊⠑⠎" }, { "input": "varieties", "output": "⠧⠜⠊⠑⠞⠊⠑⠎" }, { "input": "variety", "output": "⠧⠜⠊⠑⠞⠽" }, { "input": "various", "output": "⠧⠜⠊⠳⠎" }, { "input": "variously", "output": "⠧⠜⠊⠳⠎⠇⠽" }, { "input": "varlet", "output": "⠧⠜⠇⠑⠞" }, { "input": "varlets", "output": "⠧⠜⠇⠑⠞⠎" }, { "input": "varmint", "output": "â §â œâ â ”â ž" }, { "input": "varmints", "output": "â §â œâ â ”â žâ Ž" }, { "input": "varnish", "output": "â §â œâ â Šâ ©" }, { "input": "varnished", "output": "â §â œâ â Šâ ©â «" }, { "input": "varnishes", "output": "â §â œâ â Šâ ©â ‘â Ž" }, { "input": "varnishing", "output": "â §â œâ â Šâ ©â ¬" }, { "input": "varsities", "output": "⠧⠜⠎⠊⠞⠊⠑⠎" }, { "input": "varsity", "output": "⠧⠜⠎⠰⠽" }, { "input": "vary", "output": "⠧⠜⠽" }, { "input": "varying", "output": "⠧⠜⠽⠬" }, { "input": "vascular", "output": "â §â â Žâ ‰â ¥â ‡â œ" }, { "input": "vase", "output": "â §â â Žâ ‘" }, { "input": "vasectomies", "output": "â §â â Žâ ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "vasectomy", "output": "â §â â Žâ ‘⠉⠞⠕â â ½" }, { "input": "vases", "output": "â §â â Žâ ‘â Ž" }, { "input": "vassal", "output": "â §â â Žâ Žâ â ‡" }, { "input": "vassalage", "output": "â §â â Žâ Žâ â ‡â â ›â ‘" }, { "input": "vassals", "output": "â §â â Žâ Žâ â ‡â Ž" }, { "input": "vast", "output": "â §â â Œ" }, { "input": "vaster", "output": "â §â â Œâ »" }, { "input": "vastest", "output": "â §â â Œâ ‘â Œ" }, { "input": "vastly", "output": "â §â â Œâ ‡â ½" }, { "input": "vastness", "output": "â §â â Œâ °â Ž" }, { "input": "vasts", "output": "â §â â Œâ Ž" }, { "input": "vat", "output": "â §â â ž" }, { "input": "vats", "output": "â §â â žâ Ž" }, { "input": "vatted", "output": "â §â â žâ žâ «" }, { "input": "vatting", "output": "â §â â žâ žâ ¬" }, { "input": "vaudeville", "output": "â §â â ¥â ™â ‘⠧⠊⠇⠇⠑" }, { "input": "vault", "output": "â §â â ¥â ‡â ž" }, { "input": "vaulted", "output": "â §â â ¥â ‡â žâ «" }, { "input": "vaulter", "output": "â §â â ¥â ‡â žâ »" }, { "input": "vaulters", "output": "â §â â ¥â ‡â žâ »â Ž" }, { "input": "vaulting", "output": "â §â â ¥â ‡â žâ ¬" }, { "input": "vaults", "output": "â §â â ¥â ‡â žâ Ž" }, { "input": "vaunt", "output": "â §â â ¥â â ž" }, { "input": "vaunted", "output": "â §â â ¥â â žâ «" }, { "input": "vaunting", "output": "â §â â ¥â â žâ ¬" }, { "input": "vaunts", "output": "â §â â ¥â â žâ Ž" }, { "input": "veal", "output": "â §â ‚â ‡" }, { "input": "vector", "output": "⠧⠑⠉⠞⠕⠗" }, { "input": "vectored", "output": "⠧⠑⠉⠞⠕⠗⠫" }, { "input": "vectoring", "output": "⠧⠑⠉⠞⠕⠗⠬" }, { "input": "vectors", "output": "⠧⠑⠉⠞⠕⠗⠎" }, { "input": "veep", "output": "â §â ‘â ‘â " }, { "input": "veeps", "output": "â §â ‘â ‘â â Ž" }, { "input": "veer", "output": "â §â ‘â »" }, { "input": "veered", "output": "⠧⠑⠻⠫" }, { "input": "veering", "output": "⠧⠑⠻⠬" }, { "input": "veers", "output": "⠧⠑⠻⠎" }, { "input": "vegan", "output": "â §â ‘â ›â â " }, { "input": "vegans", "output": "â §â ‘â ›â â â Ž" }, { "input": "vegetable", "output": "⠧⠑⠛⠑⠞â â ƒâ ‡â ‘" }, { "input": "vegetables", "output": "⠧⠑⠛⠑⠞â â ƒâ ‡â ‘â Ž" }, { "input": "vegetarian", "output": "⠧⠑⠛⠑⠞⠜⠊â â " }, { "input": "vegetarianism", "output": "⠧⠑⠛⠑⠞⠜⠊â â â Šâ Žâ " }, { "input": "vegetarians", "output": "⠧⠑⠛⠑⠞⠜⠊â â â Ž" }, { "input": "vegetate", "output": "⠧⠑⠛⠑⠞â â žâ ‘" }, { "input": "vegetated", "output": "⠧⠑⠛⠑⠞â â žâ «" }, { "input": "vegetates", "output": "⠧⠑⠛⠑⠞â â žâ ‘â Ž" }, { "input": "vegetating", "output": "⠧⠑⠛⠑⠞â â žâ ¬" }, { "input": "vegetation", "output": "⠧⠑⠛⠑⠞â â °â " }, { "input": "vegetative", "output": "⠧⠑⠛⠑⠞â â žâ Šâ §â ‘" }, { "input": "veggie", "output": "â §â ‘â ¶â Šâ ‘" }, { "input": "veggies", "output": "â §â ‘â ¶â Šâ ‘â Ž" }, { "input": "vehemence", "output": "â §â ‘â “â ‘â â °â ‘" }, { "input": "vehement", "output": "â §â ‘â “â ‘â °â ž" }, { "input": "vehemently", "output": "⠧⠑⠓⠑⠰⠞⠇⠽" }, { "input": "vehicle", "output": "⠧⠑⠓⠊⠉⠇⠑" }, { "input": "vehicles", "output": "⠧⠑⠓⠊⠉⠇⠑⠎" }, { "input": "vehicular", "output": "⠧⠑⠓⠊⠉⠥⠇⠜" }, { "input": "veil", "output": "â §â ‘â Šâ ‡" }, { "input": "veiled", "output": "⠧⠑⠊⠇⠫" }, { "input": "veiling", "output": "⠧⠑⠊⠇⠬" }, { "input": "veils", "output": "⠧⠑⠊⠇⠎" }, { "input": "vein", "output": "â §â ‘â ”" }, { "input": "veined", "output": "⠧⠑⠔⠫" }, { "input": "veining", "output": "⠧⠑⠔⠬" }, { "input": "veins", "output": "⠧⠑⠔⠎" }, { "input": "veld", "output": "⠧⠑⠇⠙" }, { "input": "velds", "output": "⠧⠑⠇⠙⠎" }, { "input": "veldt", "output": "⠧⠑⠇⠙⠞" }, { "input": "veldts", "output": "⠧⠑⠇⠙⠞⠎" }, { "input": "vellum", "output": "⠧⠑⠇⠇⠥â " }, { "input": "velocities", "output": "⠧⠑⠇⠕⠉⠊⠞⠊⠑⠎" }, { "input": "velocity", "output": "⠧⠑⠇⠕⠉⠰⠽" }, { "input": "velour", "output": "⠧⠑⠇⠳⠗" }, { "input": "velours", "output": "⠧⠑⠇⠳⠗⠎" }, { "input": "velvet", "output": "⠧⠑⠇⠧⠑⠞" }, { "input": "velveteen", "output": "⠧⠑⠇⠧⠑⠞⠑⠢" }, { "input": "velvetier", "output": "⠧⠑⠇⠧⠑⠞⠊⠻" }, { "input": "velvetiest", "output": "⠧⠑⠇⠧⠑⠞⠊⠑⠌" }, { "input": "velvety", "output": "⠧⠑⠇⠧⠑⠞⠽" }, { "input": "venal", "output": "â §â ¢â â ‡" }, { "input": "venality", "output": "â §â ¢â â ‡â °â ½" }, { "input": "venally", "output": "â §â ¢â â ‡â ‡â ½" }, { "input": "vend", "output": "⠧⠢⠙" }, { "input": "vended", "output": "⠧⠢⠙⠫" }, { "input": "vender", "output": "⠧⠢⠙⠻" }, { "input": "venders", "output": "⠧⠢⠙⠻⠎" }, { "input": "vendetta", "output": "⠧⠢⠙⠑⠞⠞â " }, { "input": "vendettas", "output": "⠧⠢⠙⠑⠞⠞â â Ž" }, { "input": "vending", "output": "⠧⠢⠙⠬" }, { "input": "vendor", "output": "⠧⠢⠙⠕⠗" }, { "input": "vendors", "output": "⠧⠢⠙⠕⠗⠎" }, { "input": "vends", "output": "⠧⠢⠙⠎" }, { "input": "veneer", "output": "⠧⠢⠑⠻" }, { "input": "veneered", "output": "⠧⠢⠑⠻⠫" }, { "input": "veneering", "output": "⠧⠢⠑⠻⠬" }, { "input": "veneers", "output": "⠧⠢⠑⠻⠎" }, { "input": "venerable", "output": "⠧⠢⠻â â ƒâ ‡â ‘" }, { "input": "venerate", "output": "⠧⠢⠻â â žâ ‘" }, { "input": "venerated", "output": "⠧⠢⠻â â žâ «" }, { "input": "venerates", "output": "⠧⠢⠻â â žâ ‘â Ž" }, { "input": "venerating", "output": "⠧⠢⠻â â žâ ¬" }, { "input": "veneration", "output": "⠧⠢⠻â â °â " }, { "input": "venereal", "output": "⠧⠢⠻⠂⠇" }, { "input": "vengeance", "output": "⠧⠢⠛⠑⠨⠑" }, { "input": "vengeful", "output": "⠧⠢⠛⠑⠰⠇" }, { "input": "vengefully", "output": "⠧⠢⠛⠑⠰⠇⠇⠽" }, { "input": "venial", "output": "⠧⠢⠊â â ‡" }, { "input": "venison", "output": "⠧⠢⠊⠎⠕â " }, { "input": "venom", "output": "⠧⠢⠕â " }, { "input": "venomous", "output": "⠧⠢⠕â â ³â Ž" }, { "input": "venomously", "output": "⠧⠢⠕â â ³â Žâ ‡â ½" }, { "input": "venous", "output": "⠧⠢⠳⠎" }, { "input": "vent", "output": "⠧⠢⠞" }, { "input": "vented", "output": "⠧⠢⠞⠫" }, { "input": "ventilate", "output": "⠧⠢⠞⠊⠇â â žâ ‘" }, { "input": "ventilated", "output": "⠧⠢⠞⠊⠇â â žâ «" }, { "input": "ventilates", "output": "⠧⠢⠞⠊⠇â â žâ ‘â Ž" }, { "input": "ventilating", "output": "⠧⠢⠞⠊⠇â â žâ ¬" }, { "input": "ventilation", "output": "⠧⠢⠞⠊⠇â â °â " }, { "input": "ventilator", "output": "⠧⠢⠞⠊⠇â â žâ •â —" }, { "input": "ventilators", "output": "⠧⠢⠞⠊⠇â â žâ •â —â Ž" }, { "input": "venting", "output": "⠧⠢⠞⠬" }, { "input": "ventral", "output": "⠧⠢⠞⠗â â ‡" }, { "input": "ventricle", "output": "⠧⠢⠞⠗⠊⠉⠇⠑" }, { "input": "ventricles", "output": "⠧⠢⠞⠗⠊⠉⠇⠑⠎" }, { "input": "ventricular", "output": "⠧⠢⠞⠗⠊⠉⠥⠇⠜" }, { "input": "ventriloquism", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠎â " }, { "input": "ventriloquist", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠌" }, { "input": "ventriloquists", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠌⠎" }, { "input": "vents", "output": "⠧⠢⠞⠎" }, { "input": "venture", "output": "⠧⠢⠞⠥⠗⠑" }, { "input": "ventured", "output": "⠧⠢⠞⠥⠗⠫" }, { "input": "ventures", "output": "⠧⠢⠞⠥⠗⠑⠎" }, { "input": "venturesome", "output": "⠧⠢⠞⠥⠗⠑â â Ž" }, { "input": "venturing", "output": "⠧⠢⠞⠥⠗⠬" }, { "input": "venturous", "output": "⠧⠢⠞⠥⠗⠳⠎" }, { "input": "venue", "output": "⠧⠢⠥⠑" }, { "input": "venues", "output": "⠧⠢⠥⠑⠎" }, { "input": "veracious", "output": "â §â »â â ‰â Šâ ³â Ž" }, { "input": "veracity", "output": "â §â »â â ‰â °â ½" }, { "input": "veranda", "output": "⠧⠻⠯â " }, { "input": "verandah", "output": "⠧⠻⠯â â “" }, { "input": "verandahs", "output": "⠧⠻⠯â â “â Ž" }, { "input": "verandas", "output": "⠧⠻⠯â â Ž" }, { "input": "verb", "output": "⠧⠻⠃" }, { "input": "verbal", "output": "⠧⠻⠃â â ‡" }, { "input": "verbalize", "output": "⠧⠻⠃â â ‡â Šâ µâ ‘" }, { "input": "verbalized", "output": "⠧⠻⠃â â ‡â Šâ µâ «" }, { "input": "verbalizes", "output": "⠧⠻⠃â â ‡â Šâ µâ ‘â Ž" }, { "input": "verbalizing", "output": "⠧⠻⠃â â ‡â Šâ µâ ¬" }, { "input": "verbally", "output": "⠧⠻⠃â â ‡â ‡â ½" }, { "input": "verbals", "output": "⠧⠻⠃â â ‡â Ž" }, { "input": "verbatim", "output": "⠧⠻⠃â â žâ Šâ " }, { "input": "verbena", "output": "⠧⠻⠃⠢â " }, { "input": "verbenas", "output": "⠧⠻⠃⠢â â Ž" }, { "input": "verbiage", "output": "⠧⠻⠃⠊â â ›â ‘" }, { "input": "verbose", "output": "⠧⠻⠃⠕⠎⠑" }, { "input": "verbosity", "output": "⠧⠻⠃⠕⠎⠰⠽" }, { "input": "verbs", "output": "⠧⠻⠃⠎" }, { "input": "verdant", "output": "⠧⠻⠙â â â ž" }, { "input": "verdict", "output": "⠧⠻⠙⠊⠉⠞" }, { "input": "verdicts", "output": "⠧⠻⠙⠊⠉⠞⠎" }, { "input": "verdigris", "output": "⠧⠻⠙⠊⠛⠗⠊⠎" }, { "input": "verdigrised", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠫" }, { "input": "verdigrises", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠑⠎" }, { "input": "verdigrising", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠬" }, { "input": "verdure", "output": "⠧⠻⠙⠥⠗⠑" }, { "input": "verge", "output": "⠧⠻⠛⠑" }, { "input": "verged", "output": "⠧⠻⠛⠫" }, { "input": "verges", "output": "⠧⠻⠛⠑⠎" }, { "input": "verging", "output": "⠧⠻⠛⠬" }, { "input": "verier", "output": "⠧⠻⠊⠻" }, { "input": "veriest", "output": "⠧⠻⠊⠑⠌" }, { "input": "verifiable", "output": "⠧⠻⠊⠋⠊â â ƒâ ‡â ‘" }, { "input": "verification", "output": "⠧⠻⠊⠋⠊⠉â â °â " }, { "input": "verified", "output": "⠧⠻⠊⠋⠊⠫" }, { "input": "verifies", "output": "⠧⠻⠊⠋⠊⠑⠎" }, { "input": "verify", "output": "⠧⠻⠊⠋⠽" }, { "input": "verifying", "output": "⠧⠻⠊⠋⠽⠬" }, { "input": "verily", "output": "⠧⠻⠊⠇⠽" }, { "input": "verisimilitude", "output": "⠧⠻⠊⠎⠊â â Šâ ‡â Šâ žâ ¥â ™â ‘" }, { "input": "veritable", "output": "⠧⠻⠊⠞â â ƒâ ‡â ‘" }, { "input": "veritably", "output": "⠧⠻⠊⠞â â ƒâ ‡â ½" }, { "input": "verities", "output": "⠧⠻⠊⠞⠊⠑⠎" }, { "input": "verity", "output": "⠧⠻⠰⠽" }, { "input": "vermicelli", "output": "â §â »â â Šâ ‰â ‘⠇⠇⠊" }, { "input": "vermilion", "output": "â §â »â â Šâ ‡â Šâ •â " }, { "input": "vermillion", "output": "â §â »â â Šâ ‡â ‡â Šâ •â " }, { "input": "vermin", "output": "â §â »â â ”" }, { "input": "verminous", "output": "â §â »â â ”⠳⠎" }, { "input": "vermouth", "output": "â §â »â â ³â ¹" }, { "input": "vernacular", "output": "â §â »â â â ‰â ¥â ‡â œ" }, { "input": "vernaculars", "output": "â §â »â â â ‰â ¥â ‡â œâ Ž" }, { "input": "vernal", "output": "â §â »â â â ‡" }, { "input": "versatile", "output": "⠧⠻⠎â â žâ Šâ ‡â ‘" }, { "input": "versatility", "output": "⠧⠻⠎â â žâ Šâ ‡â °â ½" }, { "input": "verse", "output": "⠧⠻⠎⠑" }, { "input": "versed", "output": "⠧⠻⠎⠫" }, { "input": "verses", "output": "⠧⠻⠎⠑⠎" }, { "input": "versification", "output": "⠧⠻⠎⠊⠋⠊⠉â â °â " }, { "input": "versified", "output": "⠧⠻⠎⠊⠋⠊⠫" }, { "input": "versifies", "output": "⠧⠻⠎⠊⠋⠊⠑⠎" }, { "input": "versify", "output": "⠧⠻⠎⠊⠋⠽" }, { "input": "versifying", "output": "⠧⠻⠎⠊⠋⠽⠬" }, { "input": "versing", "output": "⠧⠻⠎⠬" }, { "input": "version", "output": "⠧⠻⠨â " }, { "input": "versions", "output": "⠧⠻⠨â â Ž" }, { "input": "versus", "output": "⠧⠻⠎⠥⠎" }, { "input": "vertebra", "output": "⠧⠻⠞⠑⠃⠗â " }, { "input": "vertebrae", "output": "⠧⠻⠞⠑⠃⠗â â ‘" }, { "input": "vertebral", "output": "⠧⠻⠞⠑⠃⠗â â ‡" }, { "input": "vertebras", "output": "⠧⠻⠞⠑⠃⠗â â Ž" }, { "input": "vertebrate", "output": "⠧⠻⠞⠑⠃⠗â â žâ ‘" }, { "input": "vertebrates", "output": "⠧⠻⠞⠑⠃⠗â â žâ ‘â Ž" }, { "input": "vertex", "output": "⠧⠻⠞⠑⠭" }, { "input": "vertexes", "output": "⠧⠻⠞⠑⠭⠑⠎" }, { "input": "vertical", "output": "⠧⠻⠞⠊⠉â â ‡" }, { "input": "vertically", "output": "⠧⠻⠞⠊⠉â â ‡â ‡â ½" }, { "input": "verticals", "output": "⠧⠻⠞⠊⠉â â ‡â Ž" }, { "input": "vertices", "output": "⠧⠻⠞⠊⠉⠑⠎" }, { "input": "vertiginous", "output": "⠧⠻⠞⠊⠛⠔⠳⠎" }, { "input": "vertigo", "output": "⠧⠻⠞⠊⠛⠕" }, { "input": "verve", "output": "⠧⠻⠧⠑" }, { "input": "very", "output": "â §" }, { "input": "vesicle", "output": "⠧⠑⠎⠊⠉⠇⠑" }, { "input": "vesicles", "output": "⠧⠑⠎⠊⠉⠇⠑⠎" }, { "input": "vesper", "output": "â §â ‘â Žâ â »" }, { "input": "vespers", "output": "â §â ‘â Žâ â »â Ž" }, { "input": "vessel", "output": "â §â ‘â Žâ Žâ ‘â ‡" }, { "input": "vessels", "output": "⠧⠑⠎⠎⠑⠇⠎" }, { "input": "vest", "output": "â §â ‘â Œ" }, { "input": "vested", "output": "⠧⠑⠌⠫" }, { "input": "vestibule", "output": "⠧⠑⠌⠊⠃⠥⠇⠑" }, { "input": "vestibules", "output": "⠧⠑⠌⠊⠃⠥⠇⠑⠎" }, { "input": "vestige", "output": "⠧⠑⠌⠊⠛⠑" }, { "input": "vestiges", "output": "⠧⠑⠌⠊⠛⠑⠎" }, { "input": "vestigial", "output": "⠧⠑⠌⠊⠛⠊â â ‡" }, { "input": "vesting", "output": "⠧⠑⠌⠬" }, { "input": "vestment", "output": "⠧⠑⠌⠰⠞" }, { "input": "vestments", "output": "⠧⠑⠌⠰⠞⠎" }, { "input": "vestries", "output": "⠧⠑⠌⠗⠊⠑⠎" }, { "input": "vestry", "output": "⠧⠑⠌⠗⠽" }, { "input": "vests", "output": "⠧⠑⠌⠎" }, { "input": "vet", "output": "â §â ‘â ž" }, { "input": "vetch", "output": "â §â ‘â žâ ¡" }, { "input": "vetches", "output": "â §â ‘â žâ ¡â ‘â Ž" }, { "input": "veteran", "output": "â §â ‘â žâ »â â " }, { "input": "veterans", "output": "â §â ‘â žâ »â â â Ž" }, { "input": "veterinarian", "output": "⠧⠑⠞⠻⠔⠜⠊â â " }, { "input": "veterinarians", "output": "⠧⠑⠞⠻⠔⠜⠊â â â Ž" }, { "input": "veterinaries", "output": "⠧⠑⠞⠻⠔⠜⠊⠑⠎" }, { "input": "veterinary", "output": "⠧⠑⠞⠻⠔⠜⠽" }, { "input": "veto", "output": "â §â ‘â žâ •" }, { "input": "vetoed", "output": "â §â ‘â žâ •â «" }, { "input": "vetoes", "output": "â §â ‘â žâ •â ‘â Ž" }, { "input": "vetoing", "output": "â §â ‘â žâ •â ¬" }, { "input": "vets", "output": "â §â ‘â žâ Ž" }, { "input": "vetted", "output": "â §â ‘â žâ žâ «" }, { "input": "vetting", "output": "â §â ‘â žâ žâ ¬" }, { "input": "vex", "output": "â §â ‘â ­" }, { "input": "vexation", "output": "â §â ‘â ­â â °â " }, { "input": "vexations", "output": "â §â ‘â ­â â °â â Ž" }, { "input": "vexatious", "output": "â §â ‘â ­â â žâ Šâ ³â Ž" }, { "input": "vexed", "output": "â §â ‘â ­â «" }, { "input": "vexes", "output": "â §â ‘â ­â ‘â Ž" }, { "input": "vexing", "output": "â §â ‘â ­â ¬" }, { "input": "via", "output": "â §â Šâ " }, { "input": "viability", "output": "â §â Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "viable", "output": "â §â Šâ â ƒâ ‡â ‘" }, { "input": "viaduct", "output": "â §â Šâ â ™â ¥â ‰â ž" }, { "input": "viaducts", "output": "â §â Šâ â ™â ¥â ‰â žâ Ž" }, { "input": "vial", "output": "â §â Šâ â ‡" }, { "input": "vials", "output": "â §â Šâ â ‡â Ž" }, { "input": "viand", "output": "â §â Šâ ¯" }, { "input": "viands", "output": "⠧⠊⠯⠎" }, { "input": "vibe", "output": "⠧⠊⠃⠑" }, { "input": "vibes", "output": "⠧⠊⠃⠑⠎" }, { "input": "vibrancy", "output": "⠧⠊⠃⠗â â â ‰â ½" }, { "input": "vibrant", "output": "⠧⠊⠃⠗â â â ž" }, { "input": "vibrantly", "output": "⠧⠊⠃⠗â â â žâ ‡â ½" }, { "input": "vibraphone", "output": "⠧⠊⠃⠗â â â “â â •" }, { "input": "vibraphones", "output": "⠧⠊⠃⠗â â â “â â •â Ž" }, { "input": "vibrate", "output": "⠧⠊⠃⠗â â žâ ‘" }, { "input": "vibrated", "output": "⠧⠊⠃⠗â â žâ «" }, { "input": "vibrates", "output": "⠧⠊⠃⠗â â žâ ‘â Ž" }, { "input": "vibrating", "output": "⠧⠊⠃⠗â â žâ ¬" }, { "input": "vibration", "output": "⠧⠊⠃⠗â â °â " }, { "input": "vibrations", "output": "⠧⠊⠃⠗â â °â â Ž" }, { "input": "vibrato", "output": "⠧⠊⠃⠗â â žâ •" }, { "input": "vibrator", "output": "⠧⠊⠃⠗â â žâ •â —" }, { "input": "vibrators", "output": "⠧⠊⠃⠗â â žâ •â —â Ž" }, { "input": "vibratos", "output": "⠧⠊⠃⠗â â žâ •â Ž" }, { "input": "viburnum", "output": "⠧⠊⠃⠥⠗â â ¥â " }, { "input": "viburnums", "output": "⠧⠊⠃⠥⠗â â ¥â â Ž" }, { "input": "vicar", "output": "⠧⠊⠉⠜" }, { "input": "vicarage", "output": "⠧⠊⠉⠜â â ›â ‘" }, { "input": "vicarages", "output": "⠧⠊⠉⠜â â ›â ‘â Ž" }, { "input": "vicarious", "output": "⠧⠊⠉⠜⠊⠳⠎" }, { "input": "vicariously", "output": "⠧⠊⠉⠜⠊⠳⠎⠇⠽" }, { "input": "vicars", "output": "⠧⠊⠉⠜⠎" }, { "input": "vice", "output": "⠧⠊⠉⠑" }, { "input": "viced", "output": "⠧⠊⠉⠑⠙" }, { "input": "viceroy", "output": "⠧⠊⠉⠑⠗⠕⠽" }, { "input": "viceroys", "output": "⠧⠊⠉⠑⠗⠕⠽⠎" }, { "input": "vices", "output": "⠧⠊⠉⠑⠎" }, { "input": "vichyssoise", "output": "⠧⠊⠡⠽⠎⠎⠕⠊⠎⠑" }, { "input": "vicing", "output": "⠧⠊⠉⠬" }, { "input": "vicinity", "output": "⠧⠊⠉⠔⠰⠽" }, { "input": "vicious", "output": "⠧⠊⠉⠊⠳⠎" }, { "input": "viciously", "output": "⠧⠊⠉⠊⠳⠎⠇⠽" }, { "input": "viciousness", "output": "⠧⠊⠉⠊⠳⠎⠰⠎" }, { "input": "vicissitude", "output": "⠧⠊⠉⠊⠎⠎⠊⠞⠥⠙⠑" }, { "input": "vicissitudes", "output": "⠧⠊⠉⠊⠎⠎⠊⠞⠥⠙⠑⠎" }, { "input": "victim", "output": "⠧⠊⠉⠞⠊â " }, { "input": "victimization", "output": "⠧⠊⠉⠞⠊â â Šâ µâ â °â " }, { "input": "victimize", "output": "⠧⠊⠉⠞⠊â â Šâ µâ ‘" }, { "input": "victimized", "output": "⠧⠊⠉⠞⠊â â Šâ µâ «" }, { "input": "victimizes", "output": "⠧⠊⠉⠞⠊â â Šâ µâ ‘â Ž" }, { "input": "victimizing", "output": "⠧⠊⠉⠞⠊â â Šâ µâ ¬" }, { "input": "victims", "output": "⠧⠊⠉⠞⠊â â Ž" }, { "input": "victor", "output": "⠧⠊⠉⠞⠕⠗" }, { "input": "victories", "output": "⠧⠊⠉⠞⠕⠗⠊⠑⠎" }, { "input": "victorious", "output": "⠧⠊⠉⠞⠕⠗⠊⠳⠎" }, { "input": "victoriously", "output": "⠧⠊⠉⠞⠕⠗⠊⠳⠎⠇⠽" }, { "input": "victors", "output": "⠧⠊⠉⠞⠕⠗⠎" }, { "input": "victory", "output": "⠧⠊⠉⠞⠕⠗⠽" }, { "input": "victual", "output": "⠧⠊⠉⠞⠥â â ‡" }, { "input": "victualed", "output": "⠧⠊⠉⠞⠥â â ‡â «" }, { "input": "victualing", "output": "⠧⠊⠉⠞⠥â â ‡â ¬" }, { "input": "victualled", "output": "⠧⠊⠉⠞⠥â â ‡â ‡â «" }, { "input": "victualling", "output": "⠧⠊⠉⠞⠥â â ‡â ‡â ¬" }, { "input": "victuals", "output": "⠧⠊⠉⠞⠥â â ‡â Ž" }, { "input": "vicuña", "output": "⠧⠊⠉⠥⠠⠘⠻â â ¸â –â " }, { "input": "vicuñas", "output": "⠧⠊⠉⠥⠠⠘⠻â â ¸â –â â Ž" }, { "input": "video", "output": "⠧⠊⠙⠑⠕" }, { "input": "videocassette", "output": "⠧⠊⠙⠑⠕⠉â â Žâ Žâ ‘â žâ žâ ‘" }, { "input": "videocassettes", "output": "⠧⠊⠙⠑⠕⠉â â Žâ Žâ ‘â žâ žâ ‘â Ž" }, { "input": "videodisc", "output": "⠧⠊⠙⠑⠕⠙⠊⠎⠉" }, { "input": "videodiscs", "output": "⠧⠊⠙⠑⠕⠙⠊⠎⠉⠎" }, { "input": "videos", "output": "⠧⠊⠙⠑⠕⠎" }, { "input": "videotape", "output": "⠧⠊⠙⠑⠕⠞â â â ‘" }, { "input": "videotaped", "output": "⠧⠊⠙⠑⠕⠞â â â «" }, { "input": "videotapes", "output": "⠧⠊⠙⠑⠕⠞â â â ‘â Ž" }, { "input": "videotaping", "output": "⠧⠊⠙⠑⠕⠞â â â ¬" }, { "input": "vie", "output": "â §â Šâ ‘" }, { "input": "vied", "output": "â §â Šâ «" }, { "input": "vies", "output": "â §â Šâ ‘â Ž" }, { "input": "view", "output": "â §â Šâ ‘â º" }, { "input": "viewed", "output": "⠧⠊⠑⠺⠫" }, { "input": "viewer", "output": "⠧⠊⠑⠺⠻" }, { "input": "viewers", "output": "⠧⠊⠑⠺⠻⠎" }, { "input": "viewfinder", "output": "⠧⠊⠑⠺⠋⠔⠙⠻" }, { "input": "viewfinders", "output": "⠧⠊⠑⠺⠋⠔⠙⠻⠎" }, { "input": "viewing", "output": "⠧⠊⠑⠺⠬" }, { "input": "viewings", "output": "⠧⠊⠑⠺⠬⠎" }, { "input": "viewpoint", "output": "â §â Šâ ‘â ºâ â •⠔⠞" }, { "input": "viewpoints", "output": "â §â Šâ ‘â ºâ â •⠔⠞⠎" }, { "input": "views", "output": "⠧⠊⠑⠺⠎" }, { "input": "vigil", "output": "⠧⠊⠛⠊⠇" }, { "input": "vigilance", "output": "⠧⠊⠛⠊⠇⠨⠑" }, { "input": "vigilant", "output": "⠧⠊⠛⠊⠇â â â ž" }, { "input": "vigilante", "output": "⠧⠊⠛⠊⠇â â â žâ ‘" }, { "input": "vigilantes", "output": "⠧⠊⠛⠊⠇â â â žâ ‘â Ž" }, { "input": "vigilantism", "output": "⠧⠊⠛⠊⠇â â â žâ Šâ Žâ " }, { "input": "vigilantly", "output": "⠧⠊⠛⠊⠇â â â žâ ‡â ½" }, { "input": "vigils", "output": "⠧⠊⠛⠊⠇⠎" }, { "input": "vignette", "output": "â §â Šâ ›â â ‘â žâ žâ ‘" }, { "input": "vignetted", "output": "â §â Šâ ›â â ‘â žâ žâ «" }, { "input": "vignettes", "output": "â §â Šâ ›â â ‘â žâ žâ ‘â Ž" }, { "input": "vignetting", "output": "â §â Šâ ›â â ‘â žâ žâ ¬" }, { "input": "vigor", "output": "⠧⠊⠛⠕⠗" }, { "input": "vigorous", "output": "⠧⠊⠛⠕⠗⠳⠎" }, { "input": "vigorously", "output": "⠧⠊⠛⠕⠗⠳⠎⠇⠽" }, { "input": "vile", "output": "⠧⠊⠇⠑" }, { "input": "vilely", "output": "⠧⠊⠇⠑⠇⠽" }, { "input": "vileness", "output": "⠧⠊⠇⠑⠰⠎" }, { "input": "viler", "output": "⠧⠊⠇⠻" }, { "input": "vilest", "output": "⠧⠊⠇⠑⠌" }, { "input": "vilification", "output": "⠧⠊⠇⠊⠋⠊⠉â â °â " }, { "input": "vilified", "output": "⠧⠊⠇⠊⠋⠊⠫" }, { "input": "vilifies", "output": "⠧⠊⠇⠊⠋⠊⠑⠎" }, { "input": "vilify", "output": "⠧⠊⠇⠊⠋⠽" }, { "input": "vilifying", "output": "⠧⠊⠇⠊⠋⠽⠬" }, { "input": "villa", "output": "⠧⠊⠇⠇â " }, { "input": "village", "output": "⠧⠊⠇⠇â â ›â ‘" }, { "input": "villager", "output": "⠧⠊⠇⠇â â ›â »" }, { "input": "villagers", "output": "⠧⠊⠇⠇â â ›â »â Ž" }, { "input": "villages", "output": "⠧⠊⠇⠇â â ›â ‘â Ž" }, { "input": "villain", "output": "⠧⠊⠇⠇â â ”" }, { "input": "villainies", "output": "⠧⠊⠇⠇â â ”â Šâ ‘â Ž" }, { "input": "villainous", "output": "⠧⠊⠇⠇â â ”⠳⠎" }, { "input": "villains", "output": "⠧⠊⠇⠇â â ”â Ž" }, { "input": "villainy", "output": "⠧⠊⠇⠇â â ”â ½" }, { "input": "villas", "output": "⠧⠊⠇⠇â â Ž" }, { "input": "villein", "output": "⠧⠊⠇⠇⠑⠔" }, { "input": "villeins", "output": "⠧⠊⠇⠇⠑⠔⠎" }, { "input": "vim", "output": "â §â Šâ " }, { "input": "vinaigrette", "output": "â §â ”â â Šâ ›â —â ‘â žâ žâ ‘" }, { "input": "vindicate", "output": "⠧⠔⠙⠊⠉â â žâ ‘" }, { "input": "vindicated", "output": "⠧⠔⠙⠊⠉â â žâ «" }, { "input": "vindicates", "output": "⠧⠔⠙⠊⠉â â žâ ‘â Ž" }, { "input": "vindicating", "output": "⠧⠔⠙⠊⠉â â žâ ¬" }, { "input": "vindication", "output": "⠧⠔⠙⠊⠉â â °â " }, { "input": "vindications", "output": "⠧⠔⠙⠊⠉â â °â â Ž" }, { "input": "vindicator", "output": "⠧⠔⠙⠊⠉â â žâ •â —" }, { "input": "vindicators", "output": "⠧⠔⠙⠊⠉â â žâ •â —â Ž" }, { "input": "vindictive", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑" }, { "input": "vindictively", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑⠇⠽" }, { "input": "vindictiveness", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑⠰⠎" }, { "input": "vine", "output": "⠧⠔⠑" }, { "input": "vinegar", "output": "⠧⠔⠑⠛⠜" }, { "input": "vinegary", "output": "⠧⠔⠑⠛⠜⠽" }, { "input": "vines", "output": "⠧⠔⠑⠎" }, { "input": "vineyard", "output": "⠧⠔⠑⠽⠜⠙" }, { "input": "vineyards", "output": "⠧⠔⠑⠽⠜⠙⠎" }, { "input": "vintage", "output": "⠧⠔⠞â â ›â ‘" }, { "input": "vintages", "output": "⠧⠔⠞â â ›â ‘â Ž" }, { "input": "vintner", "output": "⠧⠔⠞â â »" }, { "input": "vintners", "output": "⠧⠔⠞â â »â Ž" }, { "input": "vinyl", "output": "⠧⠔⠽⠇" }, { "input": "vinyls", "output": "⠧⠔⠽⠇⠎" }, { "input": "viol", "output": "â §â Šâ •â ‡" }, { "input": "viola", "output": "â §â Šâ •â ‡â " }, { "input": "violable", "output": "â §â Šâ •â ‡â â ƒâ ‡â ‘" }, { "input": "violas", "output": "â §â Šâ •â ‡â â Ž" }, { "input": "violate", "output": "â §â Šâ •â ‡â â žâ ‘" }, { "input": "violated", "output": "â §â Šâ •â ‡â â žâ «" }, { "input": "violates", "output": "â §â Šâ •â ‡â â žâ ‘â Ž" }, { "input": "violating", "output": "â §â Šâ •â ‡â â žâ ¬" }, { "input": "violation", "output": "â §â Šâ •â ‡â â °â " }, { "input": "violations", "output": "â §â Šâ •â ‡â â °â â Ž" }, { "input": "violator", "output": "â §â Šâ •â ‡â â žâ •â —" }, { "input": "violators", "output": "â §â Šâ •â ‡â â žâ •â —â Ž" }, { "input": "violence", "output": "⠧⠊⠕⠇⠰⠑" }, { "input": "violent", "output": "⠧⠊⠕⠇⠢⠞" }, { "input": "violently", "output": "⠧⠊⠕⠇⠢⠞⠇⠽" }, { "input": "violet", "output": "⠧⠊⠕⠇⠑⠞" }, { "input": "violets", "output": "⠧⠊⠕⠇⠑⠞⠎" }, { "input": "violin", "output": "⠧⠊⠕⠇⠔" }, { "input": "violinist", "output": "⠧⠊⠕⠇⠔⠊⠌" }, { "input": "violinists", "output": "⠧⠊⠕⠇⠔⠊⠌⠎" }, { "input": "violins", "output": "⠧⠊⠕⠇⠔⠎" }, { "input": "violist", "output": "⠧⠊⠕⠇⠊⠌" }, { "input": "violists", "output": "⠧⠊⠕⠇⠊⠌⠎" }, { "input": "violoncello", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠕" }, { "input": "violoncellos", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠕⠎" }, { "input": "viols", "output": "⠧⠊⠕⠇⠎" }, { "input": "viper", "output": "â §â Šâ â »" }, { "input": "vipers", "output": "â §â Šâ â »â Ž" }, { "input": "virago", "output": "â §â Šâ —â â ›â •" }, { "input": "viragoes", "output": "â §â Šâ —â â ›â •â ‘â Ž" }, { "input": "viragos", "output": "â §â Šâ —â â ›â •â Ž" }, { "input": "viral", "output": "â §â Šâ —â â ‡" }, { "input": "vireo", "output": "â §â Šâ —â ‘â •" }, { "input": "vireos", "output": "â §â Šâ —â ‘â •â Ž" }, { "input": "virgin", "output": "⠧⠊⠗⠛⠔" }, { "input": "virginal", "output": "⠧⠊⠗⠛⠔â â ‡" }, { "input": "virginals", "output": "⠧⠊⠗⠛⠔â â ‡â Ž" }, { "input": "virginity", "output": "⠧⠊⠗⠛⠔⠰⠽" }, { "input": "virgins", "output": "⠧⠊⠗⠛⠔⠎" }, { "input": "virgule", "output": "⠧⠊⠗⠛⠥⠇⠑" }, { "input": "virgules", "output": "⠧⠊⠗⠛⠥⠇⠑⠎" }, { "input": "virile", "output": "⠧⠊⠗⠊⠇⠑" }, { "input": "virility", "output": "⠧⠊⠗⠊⠇⠰⠽" }, { "input": "virology", "output": "⠧⠊⠗⠕⠇⠕⠛⠽" }, { "input": "virtual", "output": "â §â Šâ —â žâ ¥â â ‡" }, { "input": "virtually", "output": "â §â Šâ —â žâ ¥â â ‡â ‡â ½" }, { "input": "virtue", "output": "⠧⠊⠗⠞⠥⠑" }, { "input": "virtues", "output": "⠧⠊⠗⠞⠥⠑⠎" }, { "input": "virtuosi", "output": "⠧⠊⠗⠞⠥⠕⠎⠊" }, { "input": "virtuosity", "output": "⠧⠊⠗⠞⠥⠕⠎⠰⠽" }, { "input": "virtuoso", "output": "⠧⠊⠗⠞⠥⠕⠎⠕" }, { "input": "virtuosos", "output": "⠧⠊⠗⠞⠥⠕⠎⠕⠎" }, { "input": "virtuous", "output": "⠧⠊⠗⠞⠥⠳⠎" }, { "input": "virtuously", "output": "⠧⠊⠗⠞⠥⠳⠎⠇⠽" }, { "input": "virtuousness", "output": "⠧⠊⠗⠞⠥⠳⠎⠰⠎" }, { "input": "virulence", "output": "⠧⠊⠗⠥⠇⠰⠑" }, { "input": "virulent", "output": "⠧⠊⠗⠥⠇⠢⠞" }, { "input": "virulently", "output": "⠧⠊⠗⠥⠇⠢⠞⠇⠽" }, { "input": "virus", "output": "⠧⠊⠗⠥⠎" }, { "input": "viruses", "output": "⠧⠊⠗⠥⠎⠑⠎" }, { "input": "visa", "output": "â §â Šâ Žâ " }, { "input": "visaed", "output": "â §â Šâ Žâ â «" }, { "input": "visage", "output": "â §â Šâ Žâ â ›â ‘" }, { "input": "visages", "output": "â §â Šâ Žâ â ›â ‘â Ž" }, { "input": "visaing", "output": "â §â Šâ Žâ â ¬" }, { "input": "visas", "output": "â §â Šâ Žâ â Ž" }, { "input": "viscera", "output": "⠧⠊⠎⠉⠻â " }, { "input": "visceral", "output": "⠧⠊⠎⠉⠻â â ‡" }, { "input": "viscid", "output": "⠧⠊⠎⠉⠊⠙" }, { "input": "viscosity", "output": "⠧⠊⠎⠉⠕⠎⠰⠽" }, { "input": "viscount", "output": "⠧⠊⠎⠉⠨⠞" }, { "input": "viscountess", "output": "⠧⠊⠎⠉⠨⠞⠑⠎⠎" }, { "input": "viscountesses", "output": "⠧⠊⠎⠉⠨⠞⠑⠎⠎⠑⠎" }, { "input": "viscounts", "output": "⠧⠊⠎⠉⠨⠞⠎" }, { "input": "viscous", "output": "⠧⠊⠎⠉⠳⠎" }, { "input": "viscus", "output": "⠧⠊⠎⠉⠥⠎" }, { "input": "vise", "output": "â §â Šâ Žâ ‘" }, { "input": "vised", "output": "â §â Šâ Žâ «" }, { "input": "vises", "output": "â §â Šâ Žâ ‘â Ž" }, { "input": "visibility", "output": "⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "visible", "output": "⠧⠊⠎⠊⠃⠇⠑" }, { "input": "visibly", "output": "⠧⠊⠎⠊⠃⠇⠽" }, { "input": "vising", "output": "â §â Šâ Žâ ¬" }, { "input": "vision", "output": "â §â Šâ ¨â " }, { "input": "visionaries", "output": "â §â Šâ ¨â â œâ Šâ ‘â Ž" }, { "input": "visionary", "output": "â §â Šâ ¨â â œâ ½" }, { "input": "visioned", "output": "â §â Šâ ¨â â «" }, { "input": "visioning", "output": "â §â Šâ ¨â â ¬" }, { "input": "visions", "output": "â §â Šâ ¨â â Ž" }, { "input": "visit", "output": "â §â Šâ Žâ Šâ ž" }, { "input": "visitation", "output": "â §â Šâ Žâ Šâ žâ â °â " }, { "input": "visitations", "output": "â §â Šâ Žâ Šâ žâ â °â â Ž" }, { "input": "visited", "output": "â §â Šâ Žâ Šâ žâ «" }, { "input": "visiting", "output": "â §â Šâ Žâ Šâ žâ ¬" }, { "input": "visitor", "output": "â §â Šâ Žâ Šâ žâ •â —" }, { "input": "visitors", "output": "â §â Šâ Žâ Šâ žâ •â —â Ž" }, { "input": "visits", "output": "â §â Šâ Žâ Šâ žâ Ž" }, { "input": "visor", "output": "â §â Šâ Žâ •â —" }, { "input": "visors", "output": "â §â Šâ Žâ •â —â Ž" }, { "input": "vista", "output": "â §â Šâ Œâ " }, { "input": "vistas", "output": "â §â Šâ Œâ â Ž" }, { "input": "visual", "output": "â §â Šâ Žâ ¥â â ‡" }, { "input": "visualization", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ â °â " }, { "input": "visualize", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "visualized", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ «" }, { "input": "visualizes", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "visualizing", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ ¬" }, { "input": "visually", "output": "â §â Šâ Žâ ¥â â ‡â ‡â ½" }, { "input": "visuals", "output": "â §â Šâ Žâ ¥â â ‡â Ž" }, { "input": "vital", "output": "â §â Šâ žâ â ‡" }, { "input": "vitality", "output": "â §â Šâ žâ â ‡â °â ½" }, { "input": "vitalize", "output": "â §â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "vitalized", "output": "â §â Šâ žâ â ‡â Šâ µâ «" }, { "input": "vitalizes", "output": "â §â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "vitalizing", "output": "â §â Šâ žâ â ‡â Šâ µâ ¬" }, { "input": "vitally", "output": "â §â Šâ žâ â ‡â ‡â ½" }, { "input": "vitals", "output": "â §â Šâ žâ â ‡â Ž" }, { "input": "vitamin", "output": "â §â Šâ žâ â â ”" }, { "input": "vitamins", "output": "â §â Šâ žâ â â ”â Ž" }, { "input": "vitiate", "output": "â §â Šâ žâ Šâ â žâ ‘" }, { "input": "vitiated", "output": "â §â Šâ žâ Šâ â žâ «" }, { "input": "vitiates", "output": "â §â Šâ žâ Šâ â žâ ‘â Ž" }, { "input": "vitiating", "output": "â §â Šâ žâ Šâ â žâ ¬" }, { "input": "vitiation", "output": "â §â Šâ žâ Šâ â °â " }, { "input": "viticulture", "output": "⠧⠊⠞⠊⠉⠥⠇⠞⠥⠗⠑" }, { "input": "vitreous", "output": "⠧⠊⠞⠗⠑⠳⠎" }, { "input": "vitriol", "output": "â §â Šâ žâ —â Šâ •â ‡" }, { "input": "vitriolic", "output": "⠧⠊⠞⠗⠊⠕⠇⠊⠉" }, { "input": "vituperate", "output": "â §â Šâ žâ ¥â â »â â žâ ‘" }, { "input": "vituperated", "output": "â §â Šâ žâ ¥â â »â â žâ «" }, { "input": "vituperates", "output": "â §â Šâ žâ ¥â â »â â žâ ‘â Ž" }, { "input": "vituperating", "output": "â §â Šâ žâ ¥â â »â â žâ ¬" }, { "input": "vituperation", "output": "â §â Šâ žâ ¥â â »â â °â " }, { "input": "vituperative", "output": "â §â Šâ žâ ¥â â »â â žâ Šâ §â ‘" }, { "input": "viva", "output": "â §â Šâ §â " }, { "input": "vivace", "output": "â §â Šâ §â â ‰â ‘" }, { "input": "vivacious", "output": "â §â Šâ §â â ‰â Šâ ³â Ž" }, { "input": "vivaciously", "output": "â §â Šâ §â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "vivaciousness", "output": "â §â Šâ §â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "vivacity", "output": "â §â Šâ §â â ‰â °â ½" }, { "input": "vivas", "output": "â §â Šâ §â â Ž" }, { "input": "vivid", "output": "â §â Šâ §â Šâ ™" }, { "input": "vivider", "output": "⠧⠊⠧⠊⠙⠻" }, { "input": "vividest", "output": "⠧⠊⠧⠊⠙⠑⠌" }, { "input": "vividly", "output": "⠧⠊⠧⠊⠙⠇⠽" }, { "input": "vividness", "output": "⠧⠊⠧⠊⠙⠰⠎" }, { "input": "vivified", "output": "â §â Šâ §â Šâ ‹â Šâ «" }, { "input": "vivifies", "output": "â §â Šâ §â Šâ ‹â Šâ ‘â Ž" }, { "input": "vivify", "output": "â §â Šâ §â Šâ ‹â ½" }, { "input": "vivifying", "output": "⠧⠊⠧⠊⠋⠽⠬" }, { "input": "viviparous", "output": "â §â Šâ §â Šâ â œâ ³â Ž" }, { "input": "vivisection", "output": "⠧⠊⠧⠊⠎⠑⠉⠰â " }, { "input": "vixen", "output": "â §â Šâ ­â ¢" }, { "input": "vixenish", "output": "⠧⠊⠭⠢⠊⠩" }, { "input": "vixens", "output": "⠧⠊⠭⠢⠎" }, { "input": "vizier", "output": "⠧⠊⠵⠊⠻" }, { "input": "viziers", "output": "⠧⠊⠵⠊⠻⠎" }, { "input": "vizor", "output": "⠧⠊⠵⠕⠗" }, { "input": "vizors", "output": "⠧⠊⠵⠕⠗⠎" }, { "input": "vocabularies", "output": "â §â •â ‰â â ƒâ ¥â ‡â œâ Šâ ‘â Ž" }, { "input": "vocabulary", "output": "â §â •â ‰â â ƒâ ¥â ‡â œâ ½" }, { "input": "vocal", "output": "â §â •â ‰â â ‡" }, { "input": "vocalic", "output": "â §â •â ‰â â ‡â Šâ ‰" }, { "input": "vocalist", "output": "â §â •â ‰â â ‡â Šâ Œ" }, { "input": "vocalists", "output": "â §â •â ‰â â ‡â Šâ Œâ Ž" }, { "input": "vocalization", "output": "â §â •â ‰â â ‡â Šâ µâ â °â " }, { "input": "vocalizations", "output": "â §â •â ‰â â ‡â Šâ µâ â °â â Ž" }, { "input": "vocalize", "output": "â §â •â ‰â â ‡â Šâ µâ ‘" }, { "input": "vocalized", "output": "â §â •â ‰â â ‡â Šâ µâ «" }, { "input": "vocalizes", "output": "â §â •â ‰â â ‡â Šâ µâ ‘â Ž" }, { "input": "vocalizing", "output": "â §â •â ‰â â ‡â Šâ µâ ¬" }, { "input": "vocally", "output": "â §â •â ‰â â ‡â ‡â ½" }, { "input": "vocals", "output": "â §â •â ‰â â ‡â Ž" }, { "input": "vocation", "output": "â §â •â ‰â â °â " }, { "input": "vocational", "output": "â §â •â ‰â â °â â â ‡" }, { "input": "vocations", "output": "â §â •â ‰â â °â â Ž" }, { "input": "vocative", "output": "â §â •â ‰â â žâ Šâ §â ‘" }, { "input": "vocatives", "output": "â §â •â ‰â â žâ Šâ §â ‘â Ž" }, { "input": "vociferate", "output": "⠧⠕⠉⠊⠋⠻â â žâ ‘" }, { "input": "vociferated", "output": "⠧⠕⠉⠊⠋⠻â â žâ «" }, { "input": "vociferates", "output": "⠧⠕⠉⠊⠋⠻â â žâ ‘â Ž" }, { "input": "vociferating", "output": "⠧⠕⠉⠊⠋⠻â â žâ ¬" }, { "input": "vociferation", "output": "⠧⠕⠉⠊⠋⠻â â °â " }, { "input": "vociferous", "output": "⠧⠕⠉⠊⠋⠻⠳⠎" }, { "input": "vociferously", "output": "⠧⠕⠉⠊⠋⠻⠳⠎⠇⠽" }, { "input": "vodka", "output": "⠧⠕⠙⠅â " }, { "input": "vogue", "output": "⠧⠕⠛⠥⠑" }, { "input": "vogues", "output": "⠧⠕⠛⠥⠑⠎" }, { "input": "voguish", "output": "⠧⠕⠛⠥⠊⠩" }, { "input": "voice", "output": "⠧⠕⠊⠉⠑" }, { "input": "voiced", "output": "⠧⠕⠊⠉⠫" }, { "input": "voiceless", "output": "⠧⠕⠊⠉⠑⠨⠎" }, { "input": "voices", "output": "⠧⠕⠊⠉⠑⠎" }, { "input": "voicing", "output": "⠧⠕⠊⠉⠬" }, { "input": "void", "output": "â §â •â Šâ ™" }, { "input": "voided", "output": "⠧⠕⠊⠙⠫" }, { "input": "voiding", "output": "⠧⠕⠊⠙⠬" }, { "input": "voids", "output": "⠧⠕⠊⠙⠎" }, { "input": "voile", "output": "⠧⠕⠊⠇⠑" }, { "input": "volatile", "output": "â §â •â ‡â â žâ Šâ ‡â ‘" }, { "input": "volatility", "output": "â §â •â ‡â â žâ Šâ ‡â °â ½" }, { "input": "volcanic", "output": "⠧⠕⠇⠉â â â Šâ ‰" }, { "input": "volcano", "output": "⠧⠕⠇⠉â â â •" }, { "input": "volcanoes", "output": "⠧⠕⠇⠉â â â •â ‘â Ž" }, { "input": "volcanos", "output": "⠧⠕⠇⠉â â â •â Ž" }, { "input": "vole", "output": "⠧⠕⠇⠑" }, { "input": "voles", "output": "⠧⠕⠇⠑⠎" }, { "input": "volition", "output": "⠧⠕⠇⠊⠰â " }, { "input": "volley", "output": "⠧⠕⠇⠇⠑⠽" }, { "input": "volleyball", "output": "⠧⠕⠇⠇⠑⠽⠃â â ‡â ‡" }, { "input": "volleyballs", "output": "⠧⠕⠇⠇⠑⠽⠃â â ‡â ‡â Ž" }, { "input": "volleyed", "output": "⠧⠕⠇⠇⠑⠽⠫" }, { "input": "volleying", "output": "⠧⠕⠇⠇⠑⠽⠬" }, { "input": "volleys", "output": "⠧⠕⠇⠇⠑⠽⠎" }, { "input": "volt", "output": "⠧⠕⠇⠞" }, { "input": "voltage", "output": "⠧⠕⠇⠞â â ›â ‘" }, { "input": "voltages", "output": "⠧⠕⠇⠞â â ›â ‘â Ž" }, { "input": "voltaic", "output": "⠧⠕⠇⠞â â Šâ ‰" }, { "input": "voltmeter", "output": "⠧⠕⠇⠞â â ‘â žâ »" }, { "input": "voltmeters", "output": "⠧⠕⠇⠞â â ‘⠞⠻⠎" }, { "input": "volts", "output": "⠧⠕⠇⠞⠎" }, { "input": "volubility", "output": "⠧⠕⠇⠥⠃⠊⠇⠰⠽" }, { "input": "voluble", "output": "⠧⠕⠇⠥⠃⠇⠑" }, { "input": "volubly", "output": "⠧⠕⠇⠥⠃⠇⠽" }, { "input": "volume", "output": "⠧⠕⠇⠥â â ‘" }, { "input": "volumes", "output": "⠧⠕⠇⠥â â ‘â Ž" }, { "input": "voluminous", "output": "⠧⠕⠇⠥â â ”⠳⠎" }, { "input": "voluminously", "output": "⠧⠕⠇⠥â â ”⠳⠎⠇⠽" }, { "input": "voluntaries", "output": "⠧⠕⠇⠥â â žâ œâ Šâ ‘â Ž" }, { "input": "voluntarily", "output": "⠧⠕⠇⠥â â žâ œâ Šâ ‡â ½" }, { "input": "voluntary", "output": "⠧⠕⠇⠥â â žâ œâ ½" }, { "input": "volunteer", "output": "⠧⠕⠇⠥â â žâ ‘â »" }, { "input": "volunteered", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠫" }, { "input": "volunteering", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠬" }, { "input": "volunteers", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠎" }, { "input": "voluptuaries", "output": "⠧⠕⠇⠥â â žâ ¥â œâ Šâ ‘â Ž" }, { "input": "voluptuary", "output": "⠧⠕⠇⠥â â žâ ¥â œâ ½" }, { "input": "voluptuous", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Ž" }, { "input": "voluptuously", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "voluptuousness", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Žâ °â Ž" }, { "input": "vomit", "output": "â §â •â â Šâ ž" }, { "input": "vomited", "output": "â §â •â â Šâ žâ «" }, { "input": "vomiting", "output": "â §â •â â Šâ žâ ¬" }, { "input": "vomits", "output": "â §â •â â Šâ žâ Ž" }, { "input": "voodoo", "output": "⠧⠕⠕⠙⠕⠕" }, { "input": "voodooed", "output": "⠧⠕⠕⠙⠕⠕⠫" }, { "input": "voodooing", "output": "⠧⠕⠕⠙⠕⠕⠬" }, { "input": "voodooism", "output": "⠧⠕⠕⠙⠕⠕⠊⠎â " }, { "input": "voodoos", "output": "⠧⠕⠕⠙⠕⠕⠎" }, { "input": "voracious", "output": "â §â •â —â â ‰â Šâ ³â Ž" }, { "input": "voraciously", "output": "â §â •â —â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "voracity", "output": "â §â •â —â â ‰â °â ½" }, { "input": "vortex", "output": "â §â •â —â žâ ‘â ­" }, { "input": "vortexes", "output": "â §â •â —â žâ ‘â ­â ‘â Ž" }, { "input": "vortices", "output": "⠧⠕⠗⠞⠊⠉⠑⠎" }, { "input": "votaries", "output": "⠧⠕⠞⠜⠊⠑⠎" }, { "input": "votary", "output": "⠧⠕⠞⠜⠽" }, { "input": "vote", "output": "â §â •â žâ ‘" }, { "input": "voted", "output": "â §â •â žâ «" }, { "input": "voter", "output": "â §â •â žâ »" }, { "input": "voters", "output": "⠧⠕⠞⠻⠎" }, { "input": "votes", "output": "â §â •â žâ ‘â Ž" }, { "input": "voting", "output": "â §â •â žâ ¬" }, { "input": "votive", "output": "â §â •â žâ Šâ §â ‘" }, { "input": "vouch", "output": "⠧⠳⠡" }, { "input": "vouched", "output": "⠧⠳⠡⠫" }, { "input": "voucher", "output": "⠧⠳⠡⠻" }, { "input": "vouchers", "output": "⠧⠳⠡⠻⠎" }, { "input": "vouches", "output": "⠧⠳⠡⠑⠎" }, { "input": "vouching", "output": "⠧⠳⠡⠬" }, { "input": "vouchsafe", "output": "⠧⠳⠡⠎â â ‹â ‘" }, { "input": "vouchsafed", "output": "⠧⠳⠡⠎â â ‹â «" }, { "input": "vouchsafes", "output": "⠧⠳⠡⠎â â ‹â ‘â Ž" }, { "input": "vouchsafing", "output": "⠧⠳⠡⠎â â ‹â ¬" }, { "input": "vow", "output": "â §â ª" }, { "input": "vowed", "output": "⠧⠪⠫" }, { "input": "vowel", "output": "⠧⠪⠑⠇" }, { "input": "vowels", "output": "⠧⠪⠑⠇⠎" }, { "input": "vowing", "output": "⠧⠪⠬" }, { "input": "vows", "output": "⠧⠪⠎" }, { "input": "voyage", "output": "â §â •â ½â â ›â ‘" }, { "input": "voyaged", "output": "â §â •â ½â â ›â «" }, { "input": "voyager", "output": "â §â •â ½â â ›â »" }, { "input": "voyagers", "output": "â §â •â ½â â ›â »â Ž" }, { "input": "voyages", "output": "â §â •â ½â â ›â ‘â Ž" }, { "input": "voyaging", "output": "â §â •â ½â â ›â ¬" }, { "input": "voyeur", "output": "⠧⠕⠽⠑⠥⠗" }, { "input": "voyeurism", "output": "⠧⠕⠽⠑⠥⠗⠊⠎â " }, { "input": "voyeuristic", "output": "⠧⠕⠽⠑⠥⠗⠊⠌⠊⠉" }, { "input": "voyeurs", "output": "⠧⠕⠽⠑⠥⠗⠎" }, { "input": "vs", "output": "â §â Ž" }, { "input": "vulcanization", "output": "⠧⠥⠇⠉â â â Šâ µâ â °â " }, { "input": "vulcanize", "output": "⠧⠥⠇⠉â â â Šâ µâ ‘" }, { "input": "vulcanized", "output": "⠧⠥⠇⠉â â â Šâ µâ «" }, { "input": "vulcanizes", "output": "⠧⠥⠇⠉â â â Šâ µâ ‘â Ž" }, { "input": "vulcanizing", "output": "⠧⠥⠇⠉â â â Šâ µâ ¬" }, { "input": "vulgar", "output": "⠧⠥⠇⠛⠜" }, { "input": "vulgarer", "output": "⠧⠥⠇⠛⠜⠻" }, { "input": "vulgarest", "output": "⠧⠥⠇⠛⠜⠑⠌" }, { "input": "vulgarism", "output": "⠧⠥⠇⠛⠜⠊⠎â " }, { "input": "vulgarisms", "output": "⠧⠥⠇⠛⠜⠊⠎â â Ž" }, { "input": "vulgarities", "output": "⠧⠥⠇⠛⠜⠊⠞⠊⠑⠎" }, { "input": "vulgarity", "output": "⠧⠥⠇⠛⠜⠰⠽" }, { "input": "vulgarization", "output": "⠧⠥⠇⠛⠜⠊⠵â â °â " }, { "input": "vulgarize", "output": "⠧⠥⠇⠛⠜⠊⠵⠑" }, { "input": "vulgarized", "output": "⠧⠥⠇⠛⠜⠊⠵⠫" }, { "input": "vulgarizes", "output": "⠧⠥⠇⠛⠜⠊⠵⠑⠎" }, { "input": "vulgarizing", "output": "⠧⠥⠇⠛⠜⠊⠵⠬" }, { "input": "vulgarly", "output": "⠧⠥⠇⠛⠜⠇⠽" }, { "input": "vulnerabilities", "output": "⠧⠥⠇â â »â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "vulnerability", "output": "⠧⠥⠇â â »â â ƒâ Šâ ‡â °â ½" }, { "input": "vulnerable", "output": "⠧⠥⠇â â »â â ƒâ ‡â ‘" }, { "input": "vulnerably", "output": "⠧⠥⠇â â »â â ƒâ ‡â ½" }, { "input": "vulture", "output": "⠧⠥⠇⠞⠥⠗⠑" }, { "input": "vultures", "output": "⠧⠥⠇⠞⠥⠗⠑⠎" }, { "input": "vulva", "output": "⠧⠥⠇⠧â " }, { "input": "vulvae", "output": "⠧⠥⠇⠧â â ‘" }, { "input": "vulvas", "output": "⠧⠥⠇⠧â â Ž" }, { "input": "vying", "output": "⠧⠽⠬" }, { "input": "w", "output": "â °â º" }, { "input": "wackier", "output": "â ºâ â ‰â …â Šâ »" }, { "input": "wackiest", "output": "â ºâ â ‰â …â Šâ ‘â Œ" }, { "input": "wackiness", "output": "â ºâ â ‰â …â Šâ °â Ž" }, { "input": "wacko", "output": "â ºâ â ‰â …â •" }, { "input": "wackos", "output": "â ºâ â ‰â …â •â Ž" }, { "input": "wacky", "output": "â ºâ â ‰â …â ½" }, { "input": "wad", "output": "â ºâ â ™" }, { "input": "wadded", "output": "â ºâ â ™â ™â «" }, { "input": "wadding", "output": "â ºâ â ™â ™â ¬" }, { "input": "waddle", "output": "â ºâ â ™â ™â ‡â ‘" }, { "input": "waddled", "output": "â ºâ â ™â ™â ‡â «" }, { "input": "waddles", "output": "â ºâ â ™â ™â ‡â ‘â Ž" }, { "input": "waddling", "output": "â ºâ â ™â ™â ‡â ¬" }, { "input": "wade", "output": "â ºâ â ™â ‘" }, { "input": "waded", "output": "â ºâ â ™â «" }, { "input": "wader", "output": "â ºâ â ™â »" }, { "input": "waders", "output": "â ºâ â ™â »â Ž" }, { "input": "wades", "output": "â ºâ â ™â ‘â Ž" }, { "input": "wadi", "output": "â ºâ â ™â Š" }, { "input": "wading", "output": "â ºâ â ™â ¬" }, { "input": "wadis", "output": "â ºâ â ™â Šâ Ž" }, { "input": "wads", "output": "â ºâ â ™â Ž" }, { "input": "wafer", "output": "â ºâ â ‹â »" }, { "input": "wafers", "output": "â ºâ â ‹â »â Ž" }, { "input": "waffle", "output": "â ºâ â –⠇⠑" }, { "input": "waffled", "output": "â ºâ â –⠇⠫" }, { "input": "waffles", "output": "â ºâ â –⠇⠑⠎" }, { "input": "waffling", "output": "â ºâ â –⠇⠬" }, { "input": "waft", "output": "â ºâ â ‹â ž" }, { "input": "wafted", "output": "â ºâ â ‹â žâ «" }, { "input": "wafting", "output": "â ºâ â ‹â žâ ¬" }, { "input": "wafts", "output": "â ºâ â ‹â žâ Ž" }, { "input": "wag", "output": "â ºâ â ›" }, { "input": "wage", "output": "â ºâ â ›â ‘" }, { "input": "waged", "output": "â ºâ â ›â «" }, { "input": "wager", "output": "â ºâ â ›â »" }, { "input": "wagered", "output": "â ºâ â ›â »â «" }, { "input": "wagering", "output": "â ºâ â ›â »â ¬" }, { "input": "wagers", "output": "â ºâ â ›â »â Ž" }, { "input": "wages", "output": "â ºâ â ›â ‘â Ž" }, { "input": "wagged", "output": "â ºâ â ¶â «" }, { "input": "wagging", "output": "â ºâ â ¶â ¬" }, { "input": "waggish", "output": "â ºâ â ¶â Šâ ©" }, { "input": "waggle", "output": "â ºâ â ¶â ‡â ‘" }, { "input": "waggled", "output": "â ºâ â ¶â ‡â «" }, { "input": "waggles", "output": "â ºâ â ¶â ‡â ‘â Ž" }, { "input": "waggling", "output": "â ºâ â ¶â ‡â ¬" }, { "input": "waging", "output": "â ºâ â ›â ¬" }, { "input": "wagon", "output": "â ºâ â ›â •â " }, { "input": "wagoner", "output": "â ºâ â ›â •â â »" }, { "input": "wagoners", "output": "â ºâ â ›â •â â »â Ž" }, { "input": "wagons", "output": "â ºâ â ›â •â â Ž" }, { "input": "wags", "output": "â ºâ â ›â Ž" }, { "input": "waif", "output": "â ºâ â Šâ ‹" }, { "input": "waifs", "output": "â ºâ â Šâ ‹â Ž" }, { "input": "wail", "output": "â ºâ â Šâ ‡" }, { "input": "wailed", "output": "â ºâ â Šâ ‡â «" }, { "input": "wailing", "output": "â ºâ â Šâ ‡â ¬" }, { "input": "wails", "output": "â ºâ â Šâ ‡â Ž" }, { "input": "wainscot", "output": "â ºâ â ”⠎⠉⠕⠞" }, { "input": "wainscoted", "output": "â ºâ â ”⠎⠉⠕⠞⠫" }, { "input": "wainscoting", "output": "â ºâ â ”⠎⠉⠕⠞⠬" }, { "input": "wainscotings", "output": "â ºâ â ”⠎⠉⠕⠞⠬⠎" }, { "input": "wainscots", "output": "â ºâ â ”⠎⠉⠕⠞⠎" }, { "input": "wainscotted", "output": "â ºâ â ”⠎⠉⠕⠞⠞⠫" }, { "input": "wainscotting", "output": "â ºâ â ”⠎⠉⠕⠞⠞⠬" }, { "input": "wainscottings", "output": "â ºâ â ”⠎⠉⠕⠞⠞⠬⠎" }, { "input": "waist", "output": "â ºâ â Šâ Œ" }, { "input": "waistband", "output": "â ºâ â Šâ Œâ ƒâ ¯" }, { "input": "waistbands", "output": "â ºâ â Šâ Œâ ƒâ ¯â Ž" }, { "input": "waistcoat", "output": "â ºâ â Šâ Œâ ‰â •â â ž" }, { "input": "waistcoats", "output": "â ºâ â Šâ Œâ ‰â •â â žâ Ž" }, { "input": "waistline", "output": "â ºâ â Šâ Œâ ‡â ”â ‘" }, { "input": "waistlines", "output": "â ºâ â Šâ Œâ ‡â ”â ‘â Ž" }, { "input": "waists", "output": "â ºâ â Šâ Œâ Ž" }, { "input": "wait", "output": "â ºâ â Šâ ž" }, { "input": "waited", "output": "â ºâ â Šâ žâ «" }, { "input": "waiter", "output": "â ºâ â Šâ žâ »" }, { "input": "waiters", "output": "â ºâ â Šâ žâ »â Ž" }, { "input": "waiting", "output": "â ºâ â Šâ žâ ¬" }, { "input": "waitress", "output": "â ºâ â Šâ žâ —â ‘â Žâ Ž" }, { "input": "waitresses", "output": "â ºâ â Šâ žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "waits", "output": "â ºâ â Šâ žâ Ž" }, { "input": "waive", "output": "â ºâ â Šâ §â ‘" }, { "input": "waived", "output": "â ºâ â Šâ §â «" }, { "input": "waiver", "output": "â ºâ â Šâ §â »" }, { "input": "waivers", "output": "â ºâ â Šâ §â »â Ž" }, { "input": "waives", "output": "â ºâ â Šâ §â ‘â Ž" }, { "input": "waiving", "output": "â ºâ â Šâ §â ¬" }, { "input": "wake", "output": "â ºâ â …â ‘" }, { "input": "waked", "output": "â ºâ â …â «" }, { "input": "wakeful", "output": "â ºâ â …â ‘â °â ‡" }, { "input": "wakefulness", "output": "â ºâ â …⠑⠰⠇⠰⠎" }, { "input": "waken", "output": "â ºâ â …â ¢" }, { "input": "wakened", "output": "â ºâ â …⠢⠫" }, { "input": "wakening", "output": "â ºâ â …⠢⠬" }, { "input": "wakens", "output": "â ºâ â …⠢⠎" }, { "input": "wakes", "output": "â ºâ â …â ‘â Ž" }, { "input": "waking", "output": "â ºâ â …â ¬" }, { "input": "wale", "output": "â ºâ â ‡â ‘" }, { "input": "waled", "output": "â ºâ â ‡â «" }, { "input": "wales", "output": "â ºâ â ‡â ‘â Ž" }, { "input": "waling", "output": "â ºâ â ‡â ¬" }, { "input": "walk", "output": "â ºâ â ‡â …" }, { "input": "walked", "output": "â ºâ â ‡â …â «" }, { "input": "walker", "output": "â ºâ â ‡â …â »" }, { "input": "walkers", "output": "â ºâ â ‡â …⠻⠎" }, { "input": "walking", "output": "â ºâ â ‡â …â ¬" }, { "input": "walkout", "output": "â ºâ â ‡â …⠳⠞" }, { "input": "walkouts", "output": "â ºâ â ‡â …⠳⠞⠎" }, { "input": "walks", "output": "â ºâ â ‡â …â Ž" }, { "input": "walkway", "output": "â ºâ â ‡â …â ºâ â ½" }, { "input": "walkways", "output": "â ºâ â ‡â …â ºâ â ½â Ž" }, { "input": "wall", "output": "â ºâ â ‡â ‡" }, { "input": "wallabies", "output": "â ºâ â ‡â ‡â â ƒâ Šâ ‘â Ž" }, { "input": "wallaby", "output": "â ºâ â ‡â ‡â â ƒâ ½" }, { "input": "wallboard", "output": "â ºâ â ‡â ‡â ƒâ •⠜⠙" }, { "input": "walled", "output": "â ºâ â ‡â ‡â «" }, { "input": "wallet", "output": "â ºâ â ‡â ‡â ‘â ž" }, { "input": "wallets", "output": "â ºâ â ‡â ‡â ‘â žâ Ž" }, { "input": "walleye", "output": "â ºâ â ‡â ‡â ‘⠽⠑" }, { "input": "walleyed", "output": "â ºâ â ‡â ‡â ‘⠽⠫" }, { "input": "walleyes", "output": "â ºâ â ‡â ‡â ‘⠽⠑⠎" }, { "input": "wallflower", "output": "â ºâ â ‡â ‡â ‹â ‡â ªâ »" }, { "input": "wallflowers", "output": "â ºâ â ‡â ‡â ‹â ‡â ªâ »â Ž" }, { "input": "walling", "output": "â ºâ â ‡â ‡â ¬" }, { "input": "wallop", "output": "â ºâ â ‡â ‡â •â " }, { "input": "walloped", "output": "â ºâ â ‡â ‡â •â â «" }, { "input": "walloping", "output": "â ºâ â ‡â ‡â •â â ¬" }, { "input": "wallopings", "output": "â ºâ â ‡â ‡â •â â ¬â Ž" }, { "input": "wallops", "output": "â ºâ â ‡â ‡â •â â Ž" }, { "input": "wallow", "output": "â ºâ â ‡â ‡â ª" }, { "input": "wallowed", "output": "â ºâ â ‡â ‡â ªâ «" }, { "input": "wallowing", "output": "â ºâ â ‡â ‡â ªâ ¬" }, { "input": "wallows", "output": "â ºâ â ‡â ‡â ªâ Ž" }, { "input": "wallpaper", "output": "â ºâ â ‡â ‡â â â â »" }, { "input": "wallpapered", "output": "â ºâ â ‡â ‡â â â â »â «" }, { "input": "wallpapering", "output": "â ºâ â ‡â ‡â â â â »â ¬" }, { "input": "wallpapers", "output": "â ºâ â ‡â ‡â â â â »â Ž" }, { "input": "walls", "output": "â ºâ â ‡â ‡â Ž" }, { "input": "walnut", "output": "â ºâ â ‡â â ¥â ž" }, { "input": "walnuts", "output": "â ºâ â ‡â â ¥â žâ Ž" }, { "input": "walrus", "output": "â ºâ â ‡â —⠥⠎" }, { "input": "walruses", "output": "â ºâ â ‡â —⠥⠎⠑⠎" }, { "input": "waltz", "output": "â ºâ â ‡â žâ µ" }, { "input": "waltzed", "output": "â ºâ â ‡â žâ µâ «" }, { "input": "waltzes", "output": "â ºâ â ‡â žâ µâ ‘â Ž" }, { "input": "waltzing", "output": "â ºâ â ‡â žâ µâ ¬" }, { "input": "wampum", "output": "â ºâ â â â ¥â " }, { "input": "wan", "output": "â ºâ â " }, { "input": "wand", "output": "⠺⠯" }, { "input": "wander", "output": "⠺⠯⠻" }, { "input": "wandered", "output": "⠺⠯⠻⠫" }, { "input": "wanderer", "output": "⠺⠯⠻⠻" }, { "input": "wanderers", "output": "⠺⠯⠻⠻⠎" }, { "input": "wandering", "output": "⠺⠯⠻⠬" }, { "input": "wanderlust", "output": "⠺⠯⠻⠇⠥⠌" }, { "input": "wanderlusts", "output": "⠺⠯⠻⠇⠥⠌⠎" }, { "input": "wanders", "output": "⠺⠯⠻⠎" }, { "input": "wands", "output": "⠺⠯⠎" }, { "input": "wane", "output": "â ºâ â â ‘" }, { "input": "waned", "output": "â ºâ â â «" }, { "input": "wanes", "output": "â ºâ â â ‘â Ž" }, { "input": "wangle", "output": "â ºâ â â ›â ‡â ‘" }, { "input": "wangled", "output": "â ºâ â â ›â ‡â «" }, { "input": "wangles", "output": "â ºâ â â ›â ‡â ‘â Ž" }, { "input": "wangling", "output": "â ºâ â â ›â ‡â ¬" }, { "input": "waning", "output": "â ºâ â â ¬" }, { "input": "wanly", "output": "â ºâ â â ‡â ½" }, { "input": "wanna", "output": "â ºâ â â â " }, { "input": "wannabe", "output": "â ºâ â â â â ƒâ ‘" }, { "input": "wannabes", "output": "â ºâ â â â â ƒâ ‘â Ž" }, { "input": "wanner", "output": "â ºâ â â â »" }, { "input": "wannest", "output": "â ºâ â â â ‘â Œ" }, { "input": "want", "output": "â ºâ â â ž" }, { "input": "wanted", "output": "â ºâ â â žâ «" }, { "input": "wanting", "output": "â ºâ â â žâ ¬" }, { "input": "wanton", "output": "â ºâ â â žâ •â " }, { "input": "wantoned", "output": "â ºâ â â žâ •â â «" }, { "input": "wantoning", "output": "â ºâ â â žâ •â â ¬" }, { "input": "wantonly", "output": "â ºâ â â žâ •â â ‡â ½" }, { "input": "wantonness", "output": "â ºâ â â žâ •â â °â Ž" }, { "input": "wantons", "output": "â ºâ â â žâ •â â Ž" }, { "input": "wants", "output": "â ºâ â â žâ Ž" }, { "input": "wapiti", "output": "â ºâ â â Šâ žâ Š" }, { "input": "wapitis", "output": "â ºâ â â Šâ žâ Šâ Ž" }, { "input": "war", "output": "⠺⠜" }, { "input": "warble", "output": "⠺⠜⠃⠇⠑" }, { "input": "warbled", "output": "⠺⠜⠃⠇⠫" }, { "input": "warbler", "output": "⠺⠜⠃⠇⠻" }, { "input": "warblers", "output": "⠺⠜⠃⠇⠻⠎" }, { "input": "warbles", "output": "⠺⠜⠃⠇⠑⠎" }, { "input": "warbling", "output": "⠺⠜⠃⠇⠬" }, { "input": "ward", "output": "⠺⠜⠙" }, { "input": "warded", "output": "⠺⠜⠙⠫" }, { "input": "warden", "output": "⠺⠜⠙⠢" }, { "input": "wardens", "output": "⠺⠜⠙⠢⠎" }, { "input": "warder", "output": "⠺⠜⠙⠻" }, { "input": "warders", "output": "⠺⠜⠙⠻⠎" }, { "input": "warding", "output": "⠺⠜⠙⠬" }, { "input": "wardrobe", "output": "⠺⠜⠙⠗⠕⠃⠑" }, { "input": "wardrobes", "output": "⠺⠜⠙⠗⠕⠃⠑⠎" }, { "input": "wardroom", "output": "⠺⠜⠙⠗⠕⠕â " }, { "input": "wardrooms", "output": "⠺⠜⠙⠗⠕⠕â â Ž" }, { "input": "wards", "output": "⠺⠜⠙⠎" }, { "input": "ware", "output": "⠺⠜⠑" }, { "input": "warehouse", "output": "⠺⠜⠑⠓⠳⠎⠑" }, { "input": "warehoused", "output": "⠺⠜⠑⠓⠳⠎⠫" }, { "input": "warehouses", "output": "⠺⠜⠑⠓⠳⠎⠑⠎" }, { "input": "warehousing", "output": "⠺⠜⠑⠓⠳⠎⠬" }, { "input": "wares", "output": "⠺⠜⠑⠎" }, { "input": "warfare", "output": "⠺⠜⠋⠜⠑" }, { "input": "warhead", "output": "⠺⠜⠓⠂⠙" }, { "input": "warheads", "output": "⠺⠜⠓⠂⠙⠎" }, { "input": "warhorse", "output": "⠺⠜⠓⠕⠗⠎⠑" }, { "input": "warhorses", "output": "⠺⠜⠓⠕⠗⠎⠑⠎" }, { "input": "warier", "output": "⠺⠜⠊⠻" }, { "input": "wariest", "output": "⠺⠜⠊⠑⠌" }, { "input": "warily", "output": "⠺⠜⠊⠇⠽" }, { "input": "wariness", "output": "⠺⠜⠊⠰⠎" }, { "input": "warlike", "output": "⠺⠜⠇⠊⠅⠑" }, { "input": "warlock", "output": "⠺⠜⠇⠕⠉⠅" }, { "input": "warlocks", "output": "⠺⠜⠇⠕⠉⠅⠎" }, { "input": "warlord", "output": "⠺⠜â â ‡" }, { "input": "warlords", "output": "⠺⠜â â ‡â Ž" }, { "input": "warm", "output": "⠺⠜â " }, { "input": "warmed", "output": "⠺⠜â â «" }, { "input": "warmer", "output": "⠺⠜â â »" }, { "input": "warmers", "output": "⠺⠜â â »â Ž" }, { "input": "warmest", "output": "⠺⠜â â ‘â Œ" }, { "input": "warmhearted", "output": "⠺⠜â â “⠑⠜⠞⠫" }, { "input": "warming", "output": "⠺⠜â â ¬" }, { "input": "warmly", "output": "⠺⠜â â ‡â ½" }, { "input": "warmonger", "output": "⠺⠜â â °â ›â »" }, { "input": "warmongering", "output": "⠺⠜â â °â ›â »â ¬" }, { "input": "warmongers", "output": "⠺⠜â â °â ›â »â Ž" }, { "input": "warms", "output": "⠺⠜â â Ž" }, { "input": "warmth", "output": "⠺⠜â â ¹" }, { "input": "warn", "output": "⠺⠜â " }, { "input": "warned", "output": "⠺⠜â â «" }, { "input": "warning", "output": "⠺⠜â â ¬" }, { "input": "warnings", "output": "⠺⠜â â ¬â Ž" }, { "input": "warns", "output": "⠺⠜â â Ž" }, { "input": "warp", "output": "⠺⠜â " }, { "input": "warpath", "output": "⠺⠜â â â ¹" }, { "input": "warpaths", "output": "⠺⠜â â â ¹â Ž" }, { "input": "warped", "output": "⠺⠜â â «" }, { "input": "warping", "output": "⠺⠜â â ¬" }, { "input": "warps", "output": "⠺⠜â â Ž" }, { "input": "warrant", "output": "⠺⠜⠗â â â ž" }, { "input": "warranted", "output": "⠺⠜⠗â â â žâ «" }, { "input": "warrantied", "output": "⠺⠜⠗â â â žâ Šâ «" }, { "input": "warranties", "output": "⠺⠜⠗â â â žâ Šâ ‘â Ž" }, { "input": "warranting", "output": "⠺⠜⠗â â â žâ ¬" }, { "input": "warrants", "output": "⠺⠜⠗â â â žâ Ž" }, { "input": "warranty", "output": "⠺⠜⠗â â â žâ ½" }, { "input": "warrantying", "output": "⠺⠜⠗â â â žâ ½â ¬" }, { "input": "warred", "output": "⠺⠜⠗⠫" }, { "input": "warren", "output": "⠺⠜⠗⠢" }, { "input": "warrens", "output": "⠺⠜⠗⠢⠎" }, { "input": "warring", "output": "⠺⠜⠗⠬" }, { "input": "warrior", "output": "⠺⠜⠗⠊⠕⠗" }, { "input": "warriors", "output": "⠺⠜⠗⠊⠕⠗⠎" }, { "input": "wars", "output": "⠺⠜⠎" }, { "input": "warship", "output": "⠺⠜⠩⠊â " }, { "input": "warships", "output": "⠺⠜⠩⠊â â Ž" }, { "input": "wart", "output": "⠺⠜⠞" }, { "input": "warthog", "output": "⠺⠜⠞⠓⠕⠛" }, { "input": "warthogs", "output": "⠺⠜⠞⠓⠕⠛⠎" }, { "input": "wartier", "output": "⠺⠜⠞⠊⠻" }, { "input": "wartiest", "output": "⠺⠜⠞⠊⠑⠌" }, { "input": "wartime", "output": "⠺⠜â â ž" }, { "input": "warts", "output": "⠺⠜⠞⠎" }, { "input": "warty", "output": "⠺⠜⠞⠽" }, { "input": "wary", "output": "⠺⠜⠽" }, { "input": "was", "output": "â ´" }, { "input": "wash", "output": "â ºâ â ©" }, { "input": "washable", "output": "â ºâ â ©â â ƒâ ‡â ‘" }, { "input": "washables", "output": "â ºâ â ©â â ƒâ ‡â ‘â Ž" }, { "input": "washbasin", "output": "â ºâ â ©â ƒâ â Žâ ”" }, { "input": "washbasins", "output": "â ºâ â ©â ƒâ â Žâ ”â Ž" }, { "input": "washboard", "output": "â ºâ â ©â ƒâ •⠜⠙" }, { "input": "washboards", "output": "â ºâ â ©â ƒâ •⠜⠙⠎" }, { "input": "washbowl", "output": "â ºâ â ©â ƒâ ªâ ‡" }, { "input": "washbowls", "output": "â ºâ â ©â ƒâ ªâ ‡â Ž" }, { "input": "washcloth", "output": "â ºâ â ©â ‰â ‡â •â ¹" }, { "input": "washcloths", "output": "â ºâ â ©â ‰â ‡â •⠹⠎" }, { "input": "washed", "output": "â ºâ â ©â «" }, { "input": "washer", "output": "â ºâ â ©â »" }, { "input": "washers", "output": "â ºâ â ©â »â Ž" }, { "input": "washerwoman", "output": "â ºâ â ©â »â ºâ •â â â " }, { "input": "washerwomen", "output": "â ºâ â ©â »â ºâ •â â ¢" }, { "input": "washes", "output": "â ºâ â ©â ‘â Ž" }, { "input": "washing", "output": "â ºâ â ©â ¬" }, { "input": "washout", "output": "â ºâ â ©â ³â ž" }, { "input": "washouts", "output": "â ºâ â ©â ³â žâ Ž" }, { "input": "washroom", "output": "â ºâ â ©â —â •â •â " }, { "input": "washrooms", "output": "â ºâ â ©â —â •â •â â Ž" }, { "input": "washstand", "output": "â ºâ â ©â Œâ ¯" }, { "input": "washstands", "output": "â ºâ â ©â Œâ ¯â Ž" }, { "input": "washtub", "output": "â ºâ â ©â žâ ¥â ƒ" }, { "input": "washtubs", "output": "â ºâ â ©â žâ ¥â ƒâ Ž" }, { "input": "wasp", "output": "â ºâ â Žâ " }, { "input": "waspish", "output": "â ºâ â Žâ â Šâ ©" }, { "input": "wasps", "output": "â ºâ â Žâ â Ž" }, { "input": "wassail", "output": "â ºâ â Žâ Žâ â Šâ ‡" }, { "input": "wassailed", "output": "â ºâ â Žâ Žâ â Šâ ‡â «" }, { "input": "wassailing", "output": "â ºâ â Žâ Žâ â Šâ ‡â ¬" }, { "input": "wassails", "output": "â ºâ â Žâ Žâ â Šâ ‡â Ž" }, { "input": "wastage", "output": "â ºâ â Œâ â ›â ‘" }, { "input": "waste", "output": "â ºâ â Œâ ‘" }, { "input": "wastebasket", "output": "â ºâ â Œâ ‘â ƒâ â Žâ …â ‘â ž" }, { "input": "wastebaskets", "output": "â ºâ â Œâ ‘â ƒâ â Žâ …â ‘â žâ Ž" }, { "input": "wasted", "output": "â ºâ â Œâ «" }, { "input": "wasteful", "output": "â ºâ â Œâ ‘â °â ‡" }, { "input": "wastefully", "output": "â ºâ â Œâ ‘⠰⠇⠇⠽" }, { "input": "wastefulness", "output": "â ºâ â Œâ ‘⠰⠇⠰⠎" }, { "input": "wasteland", "output": "â ºâ â Œâ ‘⠇⠯" }, { "input": "wastelands", "output": "â ºâ â Œâ ‘⠇⠯⠎" }, { "input": "wastepaper", "output": "â ºâ â Œâ ‘â â â â »" }, { "input": "waster", "output": "â ºâ â Œâ »" }, { "input": "wasters", "output": "â ºâ â Œâ »â Ž" }, { "input": "wastes", "output": "â ºâ â Œâ ‘â Ž" }, { "input": "wasting", "output": "â ºâ â Œâ ¬" }, { "input": "wastrel", "output": "â ºâ â Œâ —â ‘â ‡" }, { "input": "wastrels", "output": "â ºâ â Œâ —⠑⠇⠎" }, { "input": "watch", "output": "â ºâ â žâ ¡" }, { "input": "watchband", "output": "â ºâ â žâ ¡â ƒâ ¯" }, { "input": "watchbands", "output": "â ºâ â žâ ¡â ƒâ ¯â Ž" }, { "input": "watchdog", "output": "â ºâ â žâ ¡â ™â •â ›" }, { "input": "watchdogs", "output": "â ºâ â žâ ¡â ™â •⠛⠎" }, { "input": "watched", "output": "â ºâ â žâ ¡â «" }, { "input": "watcher", "output": "â ºâ â žâ ¡â »" }, { "input": "watchers", "output": "â ºâ â žâ ¡â »â Ž" }, { "input": "watches", "output": "â ºâ â žâ ¡â ‘â Ž" }, { "input": "watchful", "output": "â ºâ â žâ ¡â °â ‡" }, { "input": "watchfully", "output": "â ºâ â žâ ¡â °â ‡â ‡â ½" }, { "input": "watchfulness", "output": "â ºâ â žâ ¡â °â ‡â °â Ž" }, { "input": "watching", "output": "â ºâ â žâ ¡â ¬" }, { "input": "watchmaker", "output": "â ºâ â žâ ¡â â â …â »" }, { "input": "watchmakers", "output": "â ºâ â žâ ¡â â â …⠻⠎" }, { "input": "watchman", "output": "â ºâ â žâ ¡â â â " }, { "input": "watchmen", "output": "â ºâ â žâ ¡â â ¢" }, { "input": "watchtower", "output": "â ºâ â žâ ¡â žâ ªâ »" }, { "input": "watchtowers", "output": "â ºâ â žâ ¡â žâ ªâ »â Ž" }, { "input": "watchword", "output": "â ºâ â žâ ¡â ˜â º" }, { "input": "watchwords", "output": "â ºâ â žâ ¡â ˜â ºâ Ž" }, { "input": "water", "output": "â ºâ â žâ »" }, { "input": "waterbed", "output": "â ºâ â žâ »â ƒâ «" }, { "input": "waterbeds", "output": "â ºâ â žâ »â ƒâ «â Ž" }, { "input": "watercolor", "output": "â ºâ â žâ »â ‰â •⠇⠕⠗" }, { "input": "watercolors", "output": "â ºâ â žâ »â ‰â •⠇⠕⠗⠎" }, { "input": "watercourse", "output": "â ºâ â žâ »â ‰â ³â —â Žâ ‘" }, { "input": "watercourses", "output": "â ºâ â žâ »â ‰â ³â —â Žâ ‘â Ž" }, { "input": "watercraft", "output": "â ºâ â žâ »â ‰â —â â ‹â ž" }, { "input": "watercress", "output": "â ºâ â žâ »â ‰â —â ‘â Žâ Ž" }, { "input": "watered", "output": "â ºâ â žâ »â «" }, { "input": "waterfall", "output": "â ºâ â žâ »â ‹â â ‡â ‡" }, { "input": "waterfalls", "output": "â ºâ â žâ »â ‹â â ‡â ‡â Ž" }, { "input": "waterfowl", "output": "â ºâ â žâ »â ‹â ªâ ‡" }, { "input": "waterfowls", "output": "â ºâ â žâ »â ‹â ªâ ‡â Ž" }, { "input": "waterfront", "output": "â ºâ â žâ »â ‹â —â •â â ž" }, { "input": "waterfronts", "output": "â ºâ â žâ »â ‹â —â •â â žâ Ž" }, { "input": "waterier", "output": "â ºâ â žâ »â Šâ »" }, { "input": "wateriest", "output": "â ºâ â žâ »â Šâ ‘â Œ" }, { "input": "watering", "output": "â ºâ â žâ »â ¬" }, { "input": "waterline", "output": "â ºâ â žâ »â ‡â ”â ‘" }, { "input": "waterlines", "output": "â ºâ â žâ »â ‡â ”â ‘â Ž" }, { "input": "waterlogged", "output": "â ºâ â žâ »â ‡â •â ¶â «" }, { "input": "watermark", "output": "â ºâ â žâ »â â œâ …" }, { "input": "watermarked", "output": "â ºâ â žâ »â â œâ …â «" }, { "input": "watermarking", "output": "â ºâ â žâ »â â œâ …â ¬" }, { "input": "watermarks", "output": "â ºâ â žâ »â â œâ …â Ž" }, { "input": "watermelon", "output": "â ºâ â žâ »â â ‘⠇⠕â " }, { "input": "watermelons", "output": "â ºâ â žâ »â â ‘⠇⠕â â Ž" }, { "input": "waterpower", "output": "â ºâ â žâ »â â ªâ »" }, { "input": "waterproof", "output": "â ºâ â žâ »â â —â •â ·" }, { "input": "waterproofed", "output": "â ºâ â žâ »â â —â •â ·â «" }, { "input": "waterproofing", "output": "â ºâ â žâ »â â —â •â ·â ¬" }, { "input": "waterproofs", "output": "â ºâ â žâ »â â —â •â ·â Ž" }, { "input": "waters", "output": "â ºâ â žâ »â Ž" }, { "input": "watershed", "output": "â ºâ â žâ »â ©â «" }, { "input": "watersheds", "output": "â ºâ â žâ »â ©â «â Ž" }, { "input": "waterside", "output": "â ºâ â žâ »â Žâ Šâ ™â ‘" }, { "input": "watersides", "output": "â ºâ â žâ »â Žâ Šâ ™â ‘â Ž" }, { "input": "waterspout", "output": "â ºâ â žâ »â Žâ â ³â ž" }, { "input": "waterspouts", "output": "â ºâ â žâ »â Žâ â ³â žâ Ž" }, { "input": "watertight", "output": "â ºâ â žâ »â žâ Šâ £â ž" }, { "input": "waterway", "output": "â ºâ â žâ »â ºâ â ½" }, { "input": "waterways", "output": "â ºâ â žâ »â ºâ â ½â Ž" }, { "input": "waterworks", "output": "â ºâ â žâ »â â ºâ Ž" }, { "input": "watery", "output": "â ºâ â žâ »â ½" }, { "input": "watt", "output": "â ºâ â žâ ž" }, { "input": "wattage", "output": "â ºâ â žâ žâ â ›â ‘" }, { "input": "wattle", "output": "â ºâ â žâ žâ ‡â ‘" }, { "input": "wattled", "output": "â ºâ â žâ žâ ‡â «" }, { "input": "wattles", "output": "â ºâ â žâ žâ ‡â ‘â Ž" }, { "input": "wattling", "output": "â ºâ â žâ žâ ‡â ¬" }, { "input": "watts", "output": "â ºâ â žâ žâ Ž" }, { "input": "wave", "output": "â ºâ â §â ‘" }, { "input": "waved", "output": "â ºâ â §â «" }, { "input": "waveform", "output": "â ºâ â §â ‘â ¿â " }, { "input": "wavelength", "output": "â ºâ â §â ‘⠇⠢⠛⠹" }, { "input": "wavelengths", "output": "â ºâ â §â ‘⠇⠢⠛⠹⠎" }, { "input": "wavelet", "output": "â ºâ â §â ‘⠇⠑⠞" }, { "input": "wavelets", "output": "â ºâ â §â ‘⠇⠑⠞⠎" }, { "input": "waver", "output": "â ºâ â §â »" }, { "input": "wavered", "output": "â ºâ â §â »â «" }, { "input": "wavering", "output": "â ºâ â §â »â ¬" }, { "input": "wavers", "output": "â ºâ â §â »â Ž" }, { "input": "waves", "output": "â ºâ â §â ‘â Ž" }, { "input": "wavier", "output": "â ºâ â §â Šâ »" }, { "input": "waviest", "output": "â ºâ â §â Šâ ‘â Œ" }, { "input": "waviness", "output": "â ºâ â §â Šâ °â Ž" }, { "input": "waving", "output": "â ºâ â §â ¬" }, { "input": "wavy", "output": "â ºâ â §â ½" }, { "input": "wax", "output": "â ºâ â ­" }, { "input": "waxed", "output": "â ºâ â ­â «" }, { "input": "waxen", "output": "â ºâ â ­â ¢" }, { "input": "waxes", "output": "â ºâ â ­â ‘â Ž" }, { "input": "waxier", "output": "â ºâ â ­â Šâ »" }, { "input": "waxiest", "output": "â ºâ â ­â Šâ ‘â Œ" }, { "input": "waxiness", "output": "â ºâ â ­â Šâ °â Ž" }, { "input": "waxing", "output": "â ºâ â ­â ¬" }, { "input": "waxwing", "output": "â ºâ â ­â ºâ ¬" }, { "input": "waxwings", "output": "â ºâ â ­â ºâ ¬â Ž" }, { "input": "waxwork", "output": "â ºâ â ­â â º" }, { "input": "waxworks", "output": "â ºâ â ­â â ºâ Ž" }, { "input": "waxy", "output": "â ºâ â ­â ½" }, { "input": "way", "output": "â ºâ â ½" }, { "input": "wayfarer", "output": "â ºâ â ½â ‹â œâ »" }, { "input": "wayfarers", "output": "â ºâ â ½â ‹â œâ »â Ž" }, { "input": "wayfaring", "output": "â ºâ â ½â ‹â œâ ¬" }, { "input": "wayfarings", "output": "â ºâ â ½â ‹â œâ ¬â Ž" }, { "input": "waylaid", "output": "â ºâ â ½â ‡â â Šâ ™" }, { "input": "waylay", "output": "â ºâ â ½â ‡â â ½" }, { "input": "waylaying", "output": "â ºâ â ½â ‡â â ½â ¬" }, { "input": "waylays", "output": "â ºâ â ½â ‡â â ½â Ž" }, { "input": "ways", "output": "â ºâ â ½â Ž" }, { "input": "wayside", "output": "â ºâ â ½â Žâ Šâ ™â ‘" }, { "input": "waysides", "output": "â ºâ â ½â Žâ Šâ ™â ‘â Ž" }, { "input": "wayward", "output": "â ºâ â ½â ºâ œâ ™" }, { "input": "waywardly", "output": "â ºâ â ½â ºâ œâ ™â ‡â ½" }, { "input": "waywardness", "output": "â ºâ â ½â ºâ œâ ™â °â Ž" }, { "input": "we", "output": "⠺⠑" }, { "input": "weak", "output": "⠺⠂⠅" }, { "input": "weaken", "output": "⠺⠂⠅⠢" }, { "input": "weakened", "output": "⠺⠂⠅⠢⠫" }, { "input": "weakening", "output": "⠺⠂⠅⠢⠬" }, { "input": "weakens", "output": "⠺⠂⠅⠢⠎" }, { "input": "weaker", "output": "⠺⠂⠅⠻" }, { "input": "weakest", "output": "⠺⠂⠅⠑⠌" }, { "input": "weakfish", "output": "⠺⠂⠅⠋⠊⠩" }, { "input": "weakfishes", "output": "⠺⠂⠅⠋⠊⠩⠑⠎" }, { "input": "weakling", "output": "⠺⠂⠅⠇⠬" }, { "input": "weaklings", "output": "⠺⠂⠅⠇⠬⠎" }, { "input": "weakly", "output": "⠺⠂⠅⠇⠽" }, { "input": "weakness", "output": "⠺⠂⠅⠰⠎" }, { "input": "weaknesses", "output": "⠺⠂⠅⠰⠎⠑⠎" }, { "input": "weal", "output": "⠺⠂⠇" }, { "input": "weals", "output": "⠺⠂⠇⠎" }, { "input": "wealth", "output": "⠺⠂⠇⠹" }, { "input": "wealthier", "output": "⠺⠂⠇⠹⠊⠻" }, { "input": "wealthiest", "output": "⠺⠂⠇⠹⠊⠑⠌" }, { "input": "wealthiness", "output": "⠺⠂⠇⠹⠊⠰⠎" }, { "input": "wealthy", "output": "⠺⠂⠇⠹⠽" }, { "input": "wean", "output": "⠺⠂â " }, { "input": "weaned", "output": "⠺⠂â â «" }, { "input": "weaning", "output": "⠺⠂â â ¬" }, { "input": "weans", "output": "⠺⠂â â Ž" }, { "input": "weapon", "output": "⠺⠂â â •â " }, { "input": "weaponless", "output": "⠺⠂â â •â â ¨â Ž" }, { "input": "weaponry", "output": "⠺⠂â â •â â —â ½" }, { "input": "weapons", "output": "⠺⠂â â •â â Ž" }, { "input": "wear", "output": "⠺⠑⠜" }, { "input": "wearable", "output": "⠺⠑⠜â â ƒâ ‡â ‘" }, { "input": "wearer", "output": "⠺⠑⠜⠻" }, { "input": "wearers", "output": "⠺⠑⠜⠻⠎" }, { "input": "wearied", "output": "⠺⠑⠜⠊⠫" }, { "input": "wearier", "output": "⠺⠑⠜⠊⠻" }, { "input": "wearies", "output": "⠺⠑⠜⠊⠑⠎" }, { "input": "weariest", "output": "⠺⠑⠜⠊⠑⠌" }, { "input": "wearily", "output": "⠺⠑⠜⠊⠇⠽" }, { "input": "weariness", "output": "⠺⠑⠜⠊⠰⠎" }, { "input": "wearing", "output": "⠺⠑⠜⠬" }, { "input": "wearisome", "output": "⠺⠑⠜⠊â â Ž" }, { "input": "wears", "output": "⠺⠑⠜⠎" }, { "input": "weary", "output": "⠺⠑⠜⠽" }, { "input": "wearying", "output": "⠺⠑⠜⠽⠬" }, { "input": "weasel", "output": "⠺⠂⠎⠑⠇" }, { "input": "weaseled", "output": "⠺⠂⠎⠑⠇⠫" }, { "input": "weaseling", "output": "⠺⠂⠎⠑⠇⠬" }, { "input": "weasels", "output": "⠺⠂⠎⠑⠇⠎" }, { "input": "weather", "output": "⠺⠂⠮⠗" }, { "input": "weathercock", "output": "⠺⠂⠮⠗⠉⠕⠉⠅" }, { "input": "weathercocks", "output": "⠺⠂⠮⠗⠉⠕⠉⠅⠎" }, { "input": "weathered", "output": "⠺⠂⠮⠗⠫" }, { "input": "weathering", "output": "⠺⠂⠮⠗⠬" }, { "input": "weatherize", "output": "⠺⠂⠮⠗⠊⠵⠑" }, { "input": "weatherized", "output": "⠺⠂⠮⠗⠊⠵⠫" }, { "input": "weatherizes", "output": "⠺⠂⠮⠗⠊⠵⠑⠎" }, { "input": "weatherizing", "output": "⠺⠂⠮⠗⠊⠵⠬" }, { "input": "weatherman", "output": "⠺⠂⠮⠗â â â " }, { "input": "weathermen", "output": "⠺⠂⠮⠗â â ¢" }, { "input": "weatherproof", "output": "⠺⠂⠮⠗â â —â •â ·" }, { "input": "weatherproofed", "output": "⠺⠂⠮⠗â â —â •â ·â «" }, { "input": "weatherproofing", "output": "⠺⠂⠮⠗â â —â •â ·â ¬" }, { "input": "weatherproofs", "output": "⠺⠂⠮⠗â â —â •â ·â Ž" }, { "input": "weathers", "output": "⠺⠂⠮⠗⠎" }, { "input": "weave", "output": "⠺⠂⠧⠑" }, { "input": "weaved", "output": "⠺⠂⠧⠫" }, { "input": "weaver", "output": "⠺⠂⠧⠻" }, { "input": "weavers", "output": "⠺⠂⠧⠻⠎" }, { "input": "weaves", "output": "⠺⠂⠧⠑⠎" }, { "input": "weaving", "output": "⠺⠂⠧⠬" }, { "input": "web", "output": "⠺⠑⠃" }, { "input": "webbed", "output": "⠺⠑⠆⠫" }, { "input": "webbing", "output": "⠺⠑⠆⠬" }, { "input": "webmaster", "output": "⠺⠑⠃â â â Œâ »" }, { "input": "webmasters", "output": "⠺⠑⠃â â â Œâ »â Ž" }, { "input": "webmistress", "output": "⠺⠑⠃â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "webmistresses", "output": "⠺⠑⠃â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "webs", "output": "⠺⠑⠃⠎" }, { "input": "website", "output": "⠺⠑⠃⠎⠊⠞⠑" }, { "input": "websites", "output": "⠺⠑⠃⠎⠊⠞⠑⠎" }, { "input": "wed", "output": "⠺⠫" }, { "input": "wedded", "output": "⠺⠫⠙⠫" }, { "input": "wedder", "output": "⠺⠫⠙⠻" }, { "input": "wedding", "output": "⠺⠫⠙⠬" }, { "input": "weddings", "output": "⠺⠫⠙⠬⠎" }, { "input": "wedge", "output": "⠺⠫⠛⠑" }, { "input": "wedged", "output": "⠺⠫⠛⠫" }, { "input": "wedges", "output": "⠺⠫⠛⠑⠎" }, { "input": "wedging", "output": "⠺⠫⠛⠬" }, { "input": "wedlock", "output": "⠺⠫⠇⠕⠉⠅" }, { "input": "weds", "output": "⠺⠫⠎" }, { "input": "wee", "output": "⠺⠑⠑" }, { "input": "weed", "output": "⠺⠑⠫" }, { "input": "weeded", "output": "⠺⠑⠫⠫" }, { "input": "weeder", "output": "⠺⠑⠫⠻" }, { "input": "weeders", "output": "⠺⠑⠫⠻⠎" }, { "input": "weedier", "output": "⠺⠑⠫⠊⠻" }, { "input": "weediest", "output": "⠺⠑⠫⠊⠑⠌" }, { "input": "weeding", "output": "⠺⠑⠫⠬" }, { "input": "weeds", "output": "⠺⠑⠫⠎" }, { "input": "weedy", "output": "⠺⠑⠫⠽" }, { "input": "weeing", "output": "⠺⠑⠑⠬" }, { "input": "week", "output": "⠺⠑⠑⠅" }, { "input": "weekday", "output": "⠺⠑⠑⠅â â ™" }, { "input": "weekdays", "output": "⠺⠑⠑⠅â â ™â Ž" }, { "input": "weekend", "output": "⠺⠑⠑⠅⠢⠙" }, { "input": "weekended", "output": "⠺⠑⠑⠅⠢⠙⠫" }, { "input": "weekending", "output": "⠺⠑⠑⠅⠢⠙⠬" }, { "input": "weekends", "output": "⠺⠑⠑⠅⠢⠙⠎" }, { "input": "weeklies", "output": "⠺⠑⠑⠅⠇⠊⠑⠎" }, { "input": "weekly", "output": "⠺⠑⠑⠅⠇⠽" }, { "input": "weeknight", "output": "⠺⠑⠑⠅â â Šâ £â ž" }, { "input": "weeknights", "output": "⠺⠑⠑⠅â â Šâ £â žâ Ž" }, { "input": "weeks", "output": "⠺⠑⠑⠅⠎" }, { "input": "weep", "output": "⠺⠑⠑â " }, { "input": "weeper", "output": "⠺⠑⠑â â »" }, { "input": "weepers", "output": "⠺⠑⠑â â »â Ž" }, { "input": "weepier", "output": "⠺⠑⠑â â Šâ »" }, { "input": "weepies", "output": "⠺⠑⠑â â Šâ ‘â Ž" }, { "input": "weepiest", "output": "⠺⠑⠑â â Šâ ‘â Œ" }, { "input": "weeping", "output": "⠺⠑⠑â â ¬" }, { "input": "weepings", "output": "⠺⠑⠑â â ¬â Ž" }, { "input": "weeps", "output": "⠺⠑⠑â â Ž" }, { "input": "weepy", "output": "⠺⠑⠑â â ½" }, { "input": "weer", "output": "⠺⠑⠻" }, { "input": "wees", "output": "⠺⠑⠑⠎" }, { "input": "weest", "output": "⠺⠑⠑⠌" }, { "input": "weevil", "output": "⠺⠑⠑⠧⠊⠇" }, { "input": "weevils", "output": "⠺⠑⠑⠧⠊⠇⠎" }, { "input": "weft", "output": "⠺⠑⠋⠞" }, { "input": "wefts", "output": "⠺⠑⠋⠞⠎" }, { "input": "weigh", "output": "⠺⠑⠊⠣" }, { "input": "weighed", "output": "⠺⠑⠊⠣⠫" }, { "input": "weighing", "output": "⠺⠑⠊⠣⠬" }, { "input": "weighs", "output": "⠺⠑⠊⠣⠎" }, { "input": "weight", "output": "⠺⠑⠊⠣⠞" }, { "input": "weighted", "output": "⠺⠑⠊⠣⠞⠫" }, { "input": "weightier", "output": "⠺⠑⠊⠣⠞⠊⠻" }, { "input": "weightiest", "output": "⠺⠑⠊⠣⠞⠊⠑⠌" }, { "input": "weightiness", "output": "⠺⠑⠊⠣⠞⠊⠰⠎" }, { "input": "weighting", "output": "⠺⠑⠊⠣⠞⠬" }, { "input": "weightless", "output": "⠺⠑⠊⠣⠞⠨⠎" }, { "input": "weightlessness", "output": "⠺⠑⠊⠣⠞⠨⠎⠰⠎" }, { "input": "weightlifter", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠻" }, { "input": "weightlifters", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠻⠎" }, { "input": "weightlifting", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠬" }, { "input": "weights", "output": "⠺⠑⠊⠣⠞⠎" }, { "input": "weighty", "output": "⠺⠑⠊⠣⠞⠽" }, { "input": "weir", "output": "⠺⠑⠊⠗" }, { "input": "weird", "output": "⠺⠑⠊⠗⠙" }, { "input": "weirder", "output": "⠺⠑⠊⠗⠙⠻" }, { "input": "weirdest", "output": "⠺⠑⠊⠗⠙⠑⠌" }, { "input": "weirdly", "output": "⠺⠑⠊⠗⠙⠇⠽" }, { "input": "weirdness", "output": "⠺⠑⠊⠗⠙⠰⠎" }, { "input": "weirdo", "output": "⠺⠑⠊⠗⠙⠕" }, { "input": "weirdos", "output": "⠺⠑⠊⠗⠙⠕⠎" }, { "input": "weirs", "output": "⠺⠑⠊⠗⠎" }, { "input": "welch", "output": "⠺⠑⠇⠡" }, { "input": "welched", "output": "⠺⠑⠇⠡⠫" }, { "input": "welches", "output": "⠺⠑⠇⠡⠑⠎" }, { "input": "welching", "output": "⠺⠑⠇⠡⠬" }, { "input": "welcome", "output": "⠺⠑⠇⠉⠕â â ‘" }, { "input": "welcomed", "output": "⠺⠑⠇⠉⠕â â «" }, { "input": "welcomes", "output": "⠺⠑⠇⠉⠕â â ‘â Ž" }, { "input": "welcoming", "output": "⠺⠑⠇⠉⠕â â ¬" }, { "input": "weld", "output": "⠺⠑⠇⠙" }, { "input": "welded", "output": "⠺⠑⠇⠙⠫" }, { "input": "welder", "output": "⠺⠑⠇⠙⠻" }, { "input": "welders", "output": "⠺⠑⠇⠙⠻⠎" }, { "input": "welding", "output": "⠺⠑⠇⠙⠬" }, { "input": "welds", "output": "⠺⠑⠇⠙⠎" }, { "input": "welfare", "output": "⠺⠑⠇⠋⠜⠑" }, { "input": "welkin", "output": "⠺⠑⠇⠅⠔" }, { "input": "well", "output": "⠺⠑⠇⠇" }, { "input": "welled", "output": "⠺⠑⠇⠇⠫" }, { "input": "welling", "output": "⠺⠑⠇⠇⠬" }, { "input": "wellington", "output": "⠺⠑⠇⠇⠬⠞⠕â " }, { "input": "wells", "output": "⠺⠑⠇⠇⠎" }, { "input": "wellspring", "output": "⠺⠑⠇⠇⠎â â —â ¬" }, { "input": "wellsprings", "output": "⠺⠑⠇⠇⠎â â —⠬⠎" }, { "input": "welsh", "output": "⠺⠑⠇⠩" }, { "input": "welshed", "output": "⠺⠑⠇⠩⠫" }, { "input": "welshes", "output": "⠺⠑⠇⠩⠑⠎" }, { "input": "welshing", "output": "⠺⠑⠇⠩⠬" }, { "input": "welt", "output": "⠺⠑⠇⠞" }, { "input": "welted", "output": "⠺⠑⠇⠞⠫" }, { "input": "welter", "output": "⠺⠑⠇⠞⠻" }, { "input": "weltered", "output": "⠺⠑⠇⠞⠻⠫" }, { "input": "weltering", "output": "⠺⠑⠇⠞⠻⠬" }, { "input": "welters", "output": "⠺⠑⠇⠞⠻⠎" }, { "input": "welterweight", "output": "⠺⠑⠇⠞⠻⠺⠑⠊⠣⠞" }, { "input": "welterweights", "output": "⠺⠑⠇⠞⠻⠺⠑⠊⠣⠞⠎" }, { "input": "welting", "output": "⠺⠑⠇⠞⠬" }, { "input": "welts", "output": "⠺⠑⠇⠞⠎" }, { "input": "wen", "output": "⠺⠢" }, { "input": "wench", "output": "⠺⠢⠡" }, { "input": "wenches", "output": "⠺⠢⠡⠑⠎" }, { "input": "wend", "output": "⠺⠢⠙" }, { "input": "wended", "output": "⠺⠢⠙⠫" }, { "input": "wending", "output": "⠺⠢⠙⠬" }, { "input": "wends", "output": "⠺⠢⠙⠎" }, { "input": "wens", "output": "⠺⠢⠎" }, { "input": "went", "output": "⠺⠢⠞" }, { "input": "wept", "output": "⠺⠑â â ž" }, { "input": "were", "output": "â ¶" }, { "input": "werewolf", "output": "⠺⠻⠑⠺⠕⠇⠋" }, { "input": "werewolves", "output": "⠺⠻⠑⠺⠕⠇⠧⠑⠎" }, { "input": "west", "output": "⠺⠑⠌" }, { "input": "westbound", "output": "⠺⠑⠌⠃⠨⠙" }, { "input": "westerlies", "output": "⠺⠑⠌⠻⠇⠊⠑⠎" }, { "input": "westerly", "output": "⠺⠑⠌⠻⠇⠽" }, { "input": "western", "output": "⠺⠑⠌⠻â " }, { "input": "westerner", "output": "⠺⠑⠌⠻â â »" }, { "input": "westerners", "output": "⠺⠑⠌⠻â â »â Ž" }, { "input": "westernize", "output": "⠺⠑⠌⠻â â Šâ µâ ‘" }, { "input": "westernized", "output": "⠺⠑⠌⠻â â Šâ µâ «" }, { "input": "westernizes", "output": "⠺⠑⠌⠻â â Šâ µâ ‘â Ž" }, { "input": "westernizing", "output": "⠺⠑⠌⠻â â Šâ µâ ¬" }, { "input": "westernmost", "output": "⠺⠑⠌⠻â â â •â Œ" }, { "input": "westerns", "output": "⠺⠑⠌⠻â â Ž" }, { "input": "westward", "output": "⠺⠑⠌⠺⠜⠙" }, { "input": "westwards", "output": "⠺⠑⠌⠺⠜⠙⠎" }, { "input": "wet", "output": "⠺⠑⠞" }, { "input": "wetback", "output": "⠺⠑⠞⠃â â ‰â …" }, { "input": "wetbacks", "output": "⠺⠑⠞⠃â â ‰â …â Ž" }, { "input": "wetland", "output": "⠺⠑⠞⠇⠯" }, { "input": "wetlands", "output": "⠺⠑⠞⠇⠯⠎" }, { "input": "wetly", "output": "⠺⠑⠞⠇⠽" }, { "input": "wetness", "output": "⠺⠑⠞⠰⠎" }, { "input": "wets", "output": "⠺⠑⠞⠎" }, { "input": "wetted", "output": "⠺⠑⠞⠞⠫" }, { "input": "wetter", "output": "⠺⠑⠞⠞⠻" }, { "input": "wettest", "output": "⠺⠑⠞⠞⠑⠌" }, { "input": "wetting", "output": "⠺⠑⠞⠞⠬" }, { "input": "whack", "output": "â ±â â ‰â …" }, { "input": "whacked", "output": "â ±â â ‰â …â «" }, { "input": "whackier", "output": "â ±â â ‰â …â Šâ »" }, { "input": "whackiest", "output": "â ±â â ‰â …â Šâ ‘â Œ" }, { "input": "whacking", "output": "â ±â â ‰â …â ¬" }, { "input": "whacks", "output": "â ±â â ‰â …â Ž" }, { "input": "whacky", "output": "â ±â â ‰â …â ½" }, { "input": "whale", "output": "â ±â â ‡â ‘" }, { "input": "whalebone", "output": "â ±â â ‡â ‘â ƒâ â •" }, { "input": "whaled", "output": "â ±â â ‡â «" }, { "input": "whaler", "output": "â ±â â ‡â »" }, { "input": "whalers", "output": "â ±â â ‡â »â Ž" }, { "input": "whales", "output": "â ±â â ‡â ‘â Ž" }, { "input": "whaling", "output": "â ±â â ‡â ¬" }, { "input": "wham", "output": "â ±â â " }, { "input": "whammed", "output": "â ±â â â â «" }, { "input": "whammies", "output": "â ±â â â â Šâ ‘â Ž" }, { "input": "whamming", "output": "â ±â â â â ¬" }, { "input": "whammy", "output": "â ±â â â â ½" }, { "input": "whams", "output": "â ±â â â Ž" }, { "input": "wharf", "output": "⠱⠜⠋" }, { "input": "wharfs", "output": "⠱⠜⠋⠎" }, { "input": "wharves", "output": "⠱⠜⠧⠑⠎" }, { "input": "what", "output": "â ±â â ž" }, { "input": "whatchamacallit", "output": "â ±â â žâ ¡â â â â ‰â â ‡â ‡â Šâ ž" }, { "input": "whatchamacallits", "output": "â ±â â žâ ¡â â â â ‰â â ‡â ‡â Šâ žâ Ž" }, { "input": "whatever", "output": "â ±â â žâ â ‘" }, { "input": "whatnot", "output": "â ±â â žâ â •â ž" }, { "input": "whats", "output": "â ±â â žâ Ž" }, { "input": "whatsoever", "output": "â ±â â žâ Žâ •â â ‘" }, { "input": "wheal", "output": "⠱⠂⠇" }, { "input": "wheals", "output": "⠱⠂⠇⠎" }, { "input": "wheat", "output": "⠱⠂⠞" }, { "input": "wheaten", "output": "⠱⠂⠞⠢" }, { "input": "wheedle", "output": "⠱⠑⠫⠇⠑" }, { "input": "wheedled", "output": "⠱⠑⠫⠇⠫" }, { "input": "wheedles", "output": "⠱⠑⠫⠇⠑⠎" }, { "input": "wheedling", "output": "⠱⠑⠫⠇⠬" }, { "input": "wheel", "output": "⠱⠑⠑⠇" }, { "input": "wheelbarrow", "output": "⠱⠑⠑⠇⠃⠜⠗⠪" }, { "input": "wheelbarrows", "output": "⠱⠑⠑⠇⠃⠜⠗⠪⠎" }, { "input": "wheelbase", "output": "⠱⠑⠑⠇⠃â â Žâ ‘" }, { "input": "wheelbases", "output": "⠱⠑⠑⠇⠃â â Žâ ‘â Ž" }, { "input": "wheelchair", "output": "⠱⠑⠑⠇⠡â â Šâ —" }, { "input": "wheelchairs", "output": "⠱⠑⠑⠇⠡â â Šâ —â Ž" }, { "input": "wheeled", "output": "⠱⠑⠑⠇⠫" }, { "input": "wheeler", "output": "⠱⠑⠑⠇⠻" }, { "input": "wheeling", "output": "⠱⠑⠑⠇⠬" }, { "input": "wheels", "output": "⠱⠑⠑⠇⠎" }, { "input": "wheelwright", "output": "⠱⠑⠑⠇⠺â â —" }, { "input": "wheelwrights", "output": "⠱⠑⠑⠇⠺â â —â Ž" }, { "input": "wheeze", "output": "⠱⠑⠑⠵⠑" }, { "input": "wheezed", "output": "⠱⠑⠑⠵⠫" }, { "input": "wheezes", "output": "⠱⠑⠑⠵⠑⠎" }, { "input": "wheezier", "output": "⠱⠑⠑⠵⠊⠻" }, { "input": "wheeziest", "output": "⠱⠑⠑⠵⠊⠑⠌" }, { "input": "wheezing", "output": "⠱⠑⠑⠵⠬" }, { "input": "wheezy", "output": "⠱⠑⠑⠵⠽" }, { "input": "whelk", "output": "⠱⠑⠇⠅" }, { "input": "whelked", "output": "⠱⠑⠇⠅⠫" }, { "input": "whelks", "output": "⠱⠑⠇⠅⠎" }, { "input": "whelp", "output": "⠱⠑⠇â " }, { "input": "whelped", "output": "⠱⠑⠇â â «" }, { "input": "whelping", "output": "⠱⠑⠇â â ¬" }, { "input": "whelps", "output": "⠱⠑⠇â â Ž" }, { "input": "when", "output": "⠱⠢" }, { "input": "whence", "output": "⠱⠰⠑" }, { "input": "whenever", "output": "⠱⠢â â ‘" }, { "input": "whens", "output": "⠱⠢⠎" }, { "input": "where", "output": "â â ±" }, { "input": "whereabouts", "output": "â â ±â â ƒâ Ž" }, { "input": "whereas", "output": "â â ±â â Ž" }, { "input": "whereat", "output": "â â ±â â ž" }, { "input": "whereby", "output": "â â ±â ƒâ ½" }, { "input": "wherefore", "output": "â â ±â ¿â ‘" }, { "input": "wherefores", "output": "â â ±â ¿â ‘â Ž" }, { "input": "wherein", "output": "â â ±â ”" }, { "input": "whereof", "output": "â â ±â ·" }, { "input": "whereon", "output": "â â ±â •â " }, { "input": "wheres", "output": "â â ±â Ž" }, { "input": "wheresoever", "output": "â â ±â Žâ •â â ‘" }, { "input": "whereupon", "output": "â â ±â ˜â ¥" }, { "input": "wherever", "output": "⠱⠻â â ‘" }, { "input": "wherewithal", "output": "â â ±â ¾â â ‡" }, { "input": "whet", "output": "⠱⠑⠞" }, { "input": "whether", "output": "⠱⠑⠮⠗" }, { "input": "whets", "output": "⠱⠑⠞⠎" }, { "input": "whetstone", "output": "⠱⠑⠞⠌â â •" }, { "input": "whetstones", "output": "⠱⠑⠞⠌â â •â Ž" }, { "input": "whetted", "output": "⠱⠑⠞⠞⠫" }, { "input": "whetting", "output": "⠱⠑⠞⠞⠬" }, { "input": "whew", "output": "⠱⠑⠺" }, { "input": "whey", "output": "⠱⠑⠽" }, { "input": "which", "output": "â ±" }, { "input": "whichever", "output": "⠱⠊⠡â â ‘" }, { "input": "whiff", "output": "⠱⠊⠋⠋" }, { "input": "whiffed", "output": "⠱⠊⠖⠫" }, { "input": "whiffing", "output": "⠱⠊⠖⠬" }, { "input": "whiffs", "output": "⠱⠊⠖⠎" }, { "input": "while", "output": "⠱⠊⠇⠑" }, { "input": "whiled", "output": "⠱⠊⠇⠫" }, { "input": "whiles", "output": "⠱⠊⠇⠑⠎" }, { "input": "whiling", "output": "⠱⠊⠇⠬" }, { "input": "whilst", "output": "⠱⠊⠇⠌" }, { "input": "whim", "output": "⠱⠊â " }, { "input": "whimper", "output": "⠱⠊â â â »" }, { "input": "whimpered", "output": "⠱⠊â â â »â «" }, { "input": "whimpering", "output": "⠱⠊â â â »â ¬" }, { "input": "whimpers", "output": "⠱⠊â â â »â Ž" }, { "input": "whims", "output": "⠱⠊â â Ž" }, { "input": "whimsey", "output": "⠱⠊â â Žâ ‘â ½" }, { "input": "whimseys", "output": "⠱⠊â â Žâ ‘⠽⠎" }, { "input": "whimsical", "output": "⠱⠊â â Žâ Šâ ‰â â ‡" }, { "input": "whimsicality", "output": "⠱⠊â â Žâ Šâ ‰â â ‡â °â ½" }, { "input": "whimsically", "output": "⠱⠊â â Žâ Šâ ‰â â ‡â ‡â ½" }, { "input": "whimsies", "output": "⠱⠊â â Žâ Šâ ‘â Ž" }, { "input": "whimsy", "output": "⠱⠊â â Žâ ½" }, { "input": "whine", "output": "⠱⠔⠑" }, { "input": "whined", "output": "⠱⠔⠫" }, { "input": "whiner", "output": "⠱⠔⠻" }, { "input": "whiners", "output": "⠱⠔⠻⠎" }, { "input": "whines", "output": "⠱⠔⠑⠎" }, { "input": "whinier", "output": "⠱⠔⠊⠻" }, { "input": "whiniest", "output": "⠱⠔⠊⠑⠌" }, { "input": "whining", "output": "⠱⠔⠬" }, { "input": "whinnied", "output": "⠱⠔â â Šâ «" }, { "input": "whinnies", "output": "⠱⠔â â Šâ ‘â Ž" }, { "input": "whinny", "output": "⠱⠔â â ½" }, { "input": "whinnying", "output": "⠱⠔â â ½â ¬" }, { "input": "whiny", "output": "⠱⠔⠽" }, { "input": "whip", "output": "⠱⠊â " }, { "input": "whipcord", "output": "⠱⠊â â ‰â •â —â ™" }, { "input": "whiplash", "output": "⠱⠊â â ‡â â ©" }, { "input": "whiplashes", "output": "⠱⠊â â ‡â â ©â ‘â Ž" }, { "input": "whipped", "output": "⠱⠊â â â «" }, { "input": "whippersnapper", "output": "⠱⠊â â â »â Žâ â â â â »" }, { "input": "whippersnappers", "output": "⠱⠊â â â »â Žâ â â â â »â Ž" }, { "input": "whippet", "output": "⠱⠊â â â ‘â ž" }, { "input": "whippets", "output": "⠱⠊â â â ‘â žâ Ž" }, { "input": "whipping", "output": "⠱⠊â â â ¬" }, { "input": "whippings", "output": "⠱⠊â â â ¬â Ž" }, { "input": "whippoorwill", "output": "⠱⠊â â â •⠕⠗⠺⠊⠇⠇" }, { "input": "whippoorwills", "output": "⠱⠊â â â •⠕⠗⠺⠊⠇⠇⠎" }, { "input": "whips", "output": "⠱⠊â â Ž" }, { "input": "whir", "output": "⠱⠊⠗" }, { "input": "whirl", "output": "⠱⠊⠗⠇" }, { "input": "whirled", "output": "⠱⠊⠗⠇⠫" }, { "input": "whirligig", "output": "⠱⠊⠗⠇⠊⠛⠊⠛" }, { "input": "whirligigs", "output": "⠱⠊⠗⠇⠊⠛⠊⠛⠎" }, { "input": "whirling", "output": "⠱⠊⠗⠇⠬" }, { "input": "whirlpool", "output": "⠱⠊⠗⠇â â •â •â ‡" }, { "input": "whirlpools", "output": "⠱⠊⠗⠇â â •⠕⠇⠎" }, { "input": "whirls", "output": "⠱⠊⠗⠇⠎" }, { "input": "whirlwind", "output": "⠱⠊⠗⠇⠺⠔⠙" }, { "input": "whirlwinds", "output": "⠱⠊⠗⠇⠺⠔⠙⠎" }, { "input": "whirr", "output": "⠱⠊⠗⠗" }, { "input": "whirred", "output": "⠱⠊⠗⠗⠫" }, { "input": "whirring", "output": "⠱⠊⠗⠗⠬" }, { "input": "whirrs", "output": "⠱⠊⠗⠗⠎" }, { "input": "whirs", "output": "⠱⠊⠗⠎" }, { "input": "whisk", "output": "⠱⠊⠎⠅" }, { "input": "whisked", "output": "⠱⠊⠎⠅⠫" }, { "input": "whisker", "output": "⠱⠊⠎⠅⠻" }, { "input": "whiskered", "output": "⠱⠊⠎⠅⠻⠫" }, { "input": "whiskers", "output": "⠱⠊⠎⠅⠻⠎" }, { "input": "whiskey", "output": "⠱⠊⠎⠅⠑⠽" }, { "input": "whiskeys", "output": "⠱⠊⠎⠅⠑⠽⠎" }, { "input": "whiskies", "output": "⠱⠊⠎⠅⠊⠑⠎" }, { "input": "whisking", "output": "⠱⠊⠎⠅⠬" }, { "input": "whisks", "output": "⠱⠊⠎⠅⠎" }, { "input": "whisky", "output": "⠱⠊⠎⠅⠽" }, { "input": "whiskys", "output": "⠱⠊⠎⠅⠽⠎" }, { "input": "whisper", "output": "⠱⠊⠎â â »" }, { "input": "whispered", "output": "⠱⠊⠎â â »â «" }, { "input": "whispering", "output": "⠱⠊⠎â â »â ¬" }, { "input": "whispers", "output": "⠱⠊⠎â â »â Ž" }, { "input": "whist", "output": "⠱⠊⠌" }, { "input": "whistle", "output": "⠱⠊⠌⠇⠑" }, { "input": "whistled", "output": "⠱⠊⠌⠇⠫" }, { "input": "whistler", "output": "⠱⠊⠌⠇⠻" }, { "input": "whistlers", "output": "⠱⠊⠌⠇⠻⠎" }, { "input": "whistles", "output": "⠱⠊⠌⠇⠑⠎" }, { "input": "whistling", "output": "⠱⠊⠌⠇⠬" }, { "input": "whit", "output": "⠱⠊⠞" }, { "input": "white", "output": "⠱⠊⠞⠑" }, { "input": "whitecap", "output": "⠱⠊⠞⠑⠉â â " }, { "input": "whitecaps", "output": "⠱⠊⠞⠑⠉â â â Ž" }, { "input": "whitefish", "output": "⠱⠊⠞⠑⠋⠊⠩" }, { "input": "whitefishes", "output": "⠱⠊⠞⠑⠋⠊⠩⠑⠎" }, { "input": "whiten", "output": "⠱⠊⠞⠢" }, { "input": "whitened", "output": "⠱⠊⠞⠢⠫" }, { "input": "whitener", "output": "⠱⠊⠞⠢⠻" }, { "input": "whiteners", "output": "⠱⠊⠞⠢⠻⠎" }, { "input": "whiteness", "output": "⠱⠊⠞⠑⠰⠎" }, { "input": "whitening", "output": "⠱⠊⠞⠢⠬" }, { "input": "whitens", "output": "⠱⠊⠞⠢⠎" }, { "input": "whiter", "output": "⠱⠊⠞⠻" }, { "input": "whites", "output": "⠱⠊⠞⠑⠎" }, { "input": "whitest", "output": "⠱⠊⠞⠑⠌" }, { "input": "whitewall", "output": "⠱⠊⠞⠑⠺â â ‡â ‡" }, { "input": "whitewalls", "output": "⠱⠊⠞⠑⠺â â ‡â ‡â Ž" }, { "input": "whitewash", "output": "⠱⠊⠞⠑⠺â â ©" }, { "input": "whitewashed", "output": "⠱⠊⠞⠑⠺â â ©â «" }, { "input": "whitewashes", "output": "⠱⠊⠞⠑⠺â â ©â ‘â Ž" }, { "input": "whitewashing", "output": "⠱⠊⠞⠑⠺â â ©â ¬" }, { "input": "whither", "output": "⠱⠊⠮⠗" }, { "input": "whiting", "output": "⠱⠊⠞⠬" }, { "input": "whitings", "output": "⠱⠊⠞⠬⠎" }, { "input": "whitish", "output": "⠱⠊⠞⠊⠩" }, { "input": "whits", "output": "⠱⠊⠞⠎" }, { "input": "whittle", "output": "⠱⠊⠞⠞⠇⠑" }, { "input": "whittled", "output": "⠱⠊⠞⠞⠇⠫" }, { "input": "whittler", "output": "⠱⠊⠞⠞⠇⠻" }, { "input": "whittlers", "output": "⠱⠊⠞⠞⠇⠻⠎" }, { "input": "whittles", "output": "⠱⠊⠞⠞⠇⠑⠎" }, { "input": "whittling", "output": "⠱⠊⠞⠞⠇⠬" }, { "input": "whiz", "output": "⠱⠊⠵" }, { "input": "whizz", "output": "⠱⠊⠵⠵" }, { "input": "whizzed", "output": "⠱⠊⠵⠵⠫" }, { "input": "whizzes", "output": "⠱⠊⠵⠵⠑⠎" }, { "input": "whizzing", "output": "⠱⠊⠵⠵⠬" }, { "input": "who", "output": "⠱⠕" }, { "input": "whoa", "output": "⠱⠕â " }, { "input": "whodunit", "output": "⠱⠕⠙⠥â â Šâ ž" }, { "input": "whodunits", "output": "⠱⠕⠙⠥â â Šâ žâ Ž" }, { "input": "whodunnit", "output": "⠱⠕⠙⠥â â â Šâ ž" }, { "input": "whodunnits", "output": "⠱⠕⠙⠥â â â Šâ žâ Ž" }, { "input": "whoever", "output": "⠱⠕â â ‘" }, { "input": "whole", "output": "⠱⠕⠇⠑" }, { "input": "wholehearted", "output": "⠱⠕⠇⠑⠓⠑⠜⠞⠫" }, { "input": "wholeheartedly", "output": "⠱⠕⠇⠑⠓⠑⠜⠞⠫⠇⠽" }, { "input": "wholeness", "output": "⠱⠕⠇⠑⠰⠎" }, { "input": "wholes", "output": "⠱⠕⠇⠑⠎" }, { "input": "wholesale", "output": "⠱⠕⠇⠑⠎â â ‡â ‘" }, { "input": "wholesaled", "output": "⠱⠕⠇⠑⠎â â ‡â «" }, { "input": "wholesaler", "output": "⠱⠕⠇⠑⠎â â ‡â »" }, { "input": "wholesalers", "output": "⠱⠕⠇⠑⠎â â ‡â »â Ž" }, { "input": "wholesales", "output": "⠱⠕⠇⠑⠎â â ‡â ‘â Ž" }, { "input": "wholesaling", "output": "⠱⠕⠇⠑⠎â â ‡â ¬" }, { "input": "wholesome", "output": "⠱⠕⠇⠑â â Ž" }, { "input": "wholesomeness", "output": "⠱⠕⠇⠑â â Žâ °â Ž" }, { "input": "wholly", "output": "⠱⠕⠇⠇⠽" }, { "input": "whom", "output": "⠱⠕â " }, { "input": "whomever", "output": "⠱⠕â â â ‘" }, { "input": "whomsoever", "output": "⠱⠕â â Žâ •â â ‘" }, { "input": "whoop", "output": "⠱⠕⠕â " }, { "input": "whooped", "output": "⠱⠕⠕â â «" }, { "input": "whoopee", "output": "⠱⠕⠕â â ‘â ‘" }, { "input": "whoopees", "output": "⠱⠕⠕â â ‘â ‘â Ž" }, { "input": "whooping", "output": "⠱⠕⠕â â ¬" }, { "input": "whoops", "output": "⠱⠕⠕â â Ž" }, { "input": "whoosh", "output": "⠱⠕⠕⠩" }, { "input": "whooshed", "output": "⠱⠕⠕⠩⠫" }, { "input": "whooshes", "output": "⠱⠕⠕⠩⠑⠎" }, { "input": "whooshing", "output": "⠱⠕⠕⠩⠬" }, { "input": "whopper", "output": "⠱⠕â â â »" }, { "input": "whoppers", "output": "⠱⠕â â â »â Ž" }, { "input": "whopping", "output": "⠱⠕â â â ¬" }, { "input": "whore", "output": "⠱⠕⠗⠑" }, { "input": "whorehouse", "output": "⠱⠕⠗⠑⠓⠳⠎⠑" }, { "input": "whorehouses", "output": "⠱⠕⠗⠑⠓⠳⠎⠑⠎" }, { "input": "whores", "output": "⠱⠕⠗⠑⠎" }, { "input": "whorl", "output": "⠱⠕⠗⠇" }, { "input": "whorled", "output": "⠱⠕⠗⠇⠫" }, { "input": "whorls", "output": "⠱⠕⠗⠇⠎" }, { "input": "whose", "output": "⠘⠱" }, { "input": "whosoever", "output": "⠱⠕⠎⠕â â ‘" }, { "input": "why", "output": "⠱⠽" }, { "input": "whys", "output": "⠱⠽⠎" }, { "input": "wick", "output": "⠺⠊⠉⠅" }, { "input": "wicked", "output": "⠺⠊⠉⠅⠫" }, { "input": "wickeder", "output": "⠺⠊⠉⠅⠫⠻" }, { "input": "wickedest", "output": "⠺⠊⠉⠅⠫⠑⠌" }, { "input": "wickedly", "output": "⠺⠊⠉⠅⠫⠇⠽" }, { "input": "wickedness", "output": "⠺⠊⠉⠅⠫⠰⠎" }, { "input": "wicker", "output": "⠺⠊⠉⠅⠻" }, { "input": "wickers", "output": "⠺⠊⠉⠅⠻⠎" }, { "input": "wickerwork", "output": "⠺⠊⠉⠅⠻â â º" }, { "input": "wicket", "output": "⠺⠊⠉⠅⠑⠞" }, { "input": "wickets", "output": "⠺⠊⠉⠅⠑⠞⠎" }, { "input": "wicks", "output": "⠺⠊⠉⠅⠎" }, { "input": "wide", "output": "⠺⠊⠙⠑" }, { "input": "widely", "output": "⠺⠊⠙⠑⠇⠽" }, { "input": "widen", "output": "⠺⠊⠙⠢" }, { "input": "widened", "output": "⠺⠊⠙⠢⠫" }, { "input": "wideness", "output": "⠺⠊⠙⠑⠰⠎" }, { "input": "widening", "output": "⠺⠊⠙⠢⠬" }, { "input": "widens", "output": "⠺⠊⠙⠢⠎" }, { "input": "wider", "output": "⠺⠊⠙⠻" }, { "input": "widespread", "output": "⠺⠊⠙⠑⠎â â —â ‚â ™" }, { "input": "widest", "output": "⠺⠊⠙⠑⠌" }, { "input": "widgeon", "output": "⠺⠊⠙⠛⠑⠕â " }, { "input": "widgeons", "output": "⠺⠊⠙⠛⠑⠕â â Ž" }, { "input": "widow", "output": "⠺⠊⠙⠪" }, { "input": "widowed", "output": "⠺⠊⠙⠪⠫" }, { "input": "widower", "output": "⠺⠊⠙⠪⠻" }, { "input": "widowers", "output": "⠺⠊⠙⠪⠻⠎" }, { "input": "widowhood", "output": "⠺⠊⠙⠪⠓⠕⠕⠙" }, { "input": "widowing", "output": "⠺⠊⠙⠪⠬" }, { "input": "widows", "output": "⠺⠊⠙⠪⠎" }, { "input": "width", "output": "⠺⠊⠙⠹" }, { "input": "widths", "output": "⠺⠊⠙⠹⠎" }, { "input": "wield", "output": "⠺⠊⠑⠇⠙" }, { "input": "wielded", "output": "⠺⠊⠑⠇⠙⠫" }, { "input": "wielding", "output": "⠺⠊⠑⠇⠙⠬" }, { "input": "wields", "output": "⠺⠊⠑⠇⠙⠎" }, { "input": "wiener", "output": "⠺⠊⠢⠻" }, { "input": "wieners", "output": "⠺⠊⠢⠻⠎" }, { "input": "wife", "output": "⠺⠊⠋⠑" }, { "input": "wifelier", "output": "⠺⠊⠋⠑⠇⠊⠻" }, { "input": "wifeliest", "output": "⠺⠊⠋⠑⠇⠊⠑⠌" }, { "input": "wifely", "output": "⠺⠊⠋⠑⠇⠽" }, { "input": "wig", "output": "⠺⠊⠛" }, { "input": "wigeon", "output": "⠺⠊⠛⠑⠕â " }, { "input": "wigeons", "output": "⠺⠊⠛⠑⠕â â Ž" }, { "input": "wigged", "output": "⠺⠊⠶⠫" }, { "input": "wigging", "output": "⠺⠊⠶⠬" }, { "input": "wiggle", "output": "⠺⠊⠶⠇⠑" }, { "input": "wiggled", "output": "⠺⠊⠶⠇⠫" }, { "input": "wiggler", "output": "⠺⠊⠶⠇⠻" }, { "input": "wigglers", "output": "⠺⠊⠶⠇⠻⠎" }, { "input": "wiggles", "output": "⠺⠊⠶⠇⠑⠎" }, { "input": "wigglier", "output": "⠺⠊⠶⠇⠊⠻" }, { "input": "wiggliest", "output": "⠺⠊⠶⠇⠊⠑⠌" }, { "input": "wiggling", "output": "⠺⠊⠶⠇⠬" }, { "input": "wiggly", "output": "⠺⠊⠶⠇⠽" }, { "input": "wight", "output": "⠺⠊⠣⠞" }, { "input": "wights", "output": "⠺⠊⠣⠞⠎" }, { "input": "wigs", "output": "⠺⠊⠛⠎" }, { "input": "wigwag", "output": "⠺⠊⠛⠺â â ›" }, { "input": "wigwagged", "output": "⠺⠊⠛⠺â â ¶â «" }, { "input": "wigwagging", "output": "⠺⠊⠛⠺â â ¶â ¬" }, { "input": "wigwags", "output": "⠺⠊⠛⠺â â ›â Ž" }, { "input": "wigwam", "output": "⠺⠊⠛⠺â â " }, { "input": "wigwams", "output": "⠺⠊⠛⠺â â â Ž" }, { "input": "wiki", "output": "⠺⠊⠅⠊" }, { "input": "wikis", "output": "⠺⠊⠅⠊⠎" }, { "input": "wild", "output": "⠺⠊⠇⠙" }, { "input": "wildcat", "output": "⠺⠊⠇⠙⠉â â ž" }, { "input": "wildcats", "output": "⠺⠊⠇⠙⠉â â žâ Ž" }, { "input": "wildcatted", "output": "⠺⠊⠇⠙⠉â â žâ žâ «" }, { "input": "wildcatting", "output": "⠺⠊⠇⠙⠉â â žâ žâ ¬" }, { "input": "wildebeest", "output": "⠺⠊⠇⠙⠑⠃⠑⠑⠌" }, { "input": "wildebeests", "output": "⠺⠊⠇⠙⠑⠃⠑⠑⠌⠎" }, { "input": "wilder", "output": "⠺⠊⠇⠙⠻" }, { "input": "wilderness", "output": "⠺⠊⠇⠙⠻⠰⠎" }, { "input": "wildernesses", "output": "⠺⠊⠇⠙⠻⠰⠎⠑⠎" }, { "input": "wildest", "output": "⠺⠊⠇⠙⠑⠌" }, { "input": "wildfire", "output": "⠺⠊⠇⠙⠋⠊⠗⠑" }, { "input": "wildfires", "output": "⠺⠊⠇⠙⠋⠊⠗⠑⠎" }, { "input": "wildflower", "output": "⠺⠊⠇⠙⠋⠇⠪⠻" }, { "input": "wildflowers", "output": "⠺⠊⠇⠙⠋⠇⠪⠻⠎" }, { "input": "wildfowl", "output": "⠺⠊⠇⠙⠋⠪⠇" }, { "input": "wildfowls", "output": "⠺⠊⠇⠙⠋⠪⠇⠎" }, { "input": "wildlife", "output": "⠺⠊⠇⠙⠇⠊⠋⠑" }, { "input": "wildly", "output": "⠺⠊⠇⠙⠇⠽" }, { "input": "wildness", "output": "⠺⠊⠇⠙⠰⠎" }, { "input": "wilds", "output": "⠺⠊⠇⠙⠎" }, { "input": "wile", "output": "⠺⠊⠇⠑" }, { "input": "wiled", "output": "⠺⠊⠇⠫" }, { "input": "wiles", "output": "⠺⠊⠇⠑⠎" }, { "input": "wilful", "output": "⠺⠊⠇⠰⠇" }, { "input": "wilfully", "output": "⠺⠊⠇⠰⠇⠇⠽" }, { "input": "wilfulness", "output": "⠺⠊⠇⠰⠇⠰⠎" }, { "input": "wilier", "output": "⠺⠊⠇⠊⠻" }, { "input": "wiliest", "output": "⠺⠊⠇⠊⠑⠌" }, { "input": "wiliness", "output": "⠺⠊⠇⠊⠰⠎" }, { "input": "wiling", "output": "⠺⠊⠇⠬" }, { "input": "will", "output": "â º" }, { "input": "willed", "output": "⠺⠊⠇⠇⠫" }, { "input": "willful", "output": "⠺⠊⠇⠇⠰⠇" }, { "input": "willfully", "output": "⠺⠊⠇⠇⠰⠇⠇⠽" }, { "input": "willfulness", "output": "⠺⠊⠇⠇⠰⠇⠰⠎" }, { "input": "willies", "output": "⠺⠊⠇⠇⠊⠑⠎" }, { "input": "willing", "output": "⠺⠊⠇⠇⠬" }, { "input": "willingly", "output": "⠺⠊⠇⠇⠬⠇⠽" }, { "input": "willingness", "output": "⠺⠊⠇⠇⠬⠰⠎" }, { "input": "willow", "output": "⠺⠊⠇⠇⠪" }, { "input": "willowier", "output": "⠺⠊⠇⠇⠪⠊⠻" }, { "input": "willowiest", "output": "⠺⠊⠇⠇⠪⠊⠑⠌" }, { "input": "willows", "output": "⠺⠊⠇⠇⠪⠎" }, { "input": "willowy", "output": "⠺⠊⠇⠇⠪⠽" }, { "input": "willpower", "output": "⠺⠊⠇⠇â â ªâ »" }, { "input": "wills", "output": "⠺⠊⠇⠇⠎" }, { "input": "wilt", "output": "⠺⠊⠇⠞" }, { "input": "wilted", "output": "⠺⠊⠇⠞⠫" }, { "input": "wilting", "output": "⠺⠊⠇⠞⠬" }, { "input": "wilts", "output": "⠺⠊⠇⠞⠎" }, { "input": "wily", "output": "⠺⠊⠇⠽" }, { "input": "wimp", "output": "⠺⠊â â " }, { "input": "wimpier", "output": "⠺⠊â â â Šâ »" }, { "input": "wimpiest", "output": "⠺⠊â â â Šâ ‘â Œ" }, { "input": "wimple", "output": "⠺⠊â â â ‡â ‘" }, { "input": "wimpled", "output": "⠺⠊â â â ‡â «" }, { "input": "wimples", "output": "⠺⠊â â â ‡â ‘â Ž" }, { "input": "wimpling", "output": "⠺⠊â â â ‡â ¬" }, { "input": "wimps", "output": "⠺⠊â â â Ž" }, { "input": "wimpy", "output": "⠺⠊â â â ½" }, { "input": "win", "output": "⠺⠔" }, { "input": "wince", "output": "⠺⠔⠉⠑" }, { "input": "winced", "output": "⠺⠔⠉⠫" }, { "input": "winces", "output": "⠺⠔⠉⠑⠎" }, { "input": "winch", "output": "⠺⠔⠡" }, { "input": "winched", "output": "⠺⠔⠡⠫" }, { "input": "winches", "output": "⠺⠔⠡⠑⠎" }, { "input": "winching", "output": "⠺⠔⠡⠬" }, { "input": "wincing", "output": "⠺⠔⠉⠬" }, { "input": "wind", "output": "⠺⠔⠙" }, { "input": "windbag", "output": "⠺⠔⠙⠃â â ›" }, { "input": "windbags", "output": "⠺⠔⠙⠃â â ›â Ž" }, { "input": "windbreak", "output": "⠺⠔⠙⠃⠗⠂⠅" }, { "input": "windbreaker", "output": "⠺⠔⠙⠃⠗⠂⠅⠻" }, { "input": "windbreakers", "output": "⠺⠔⠙⠃⠗⠂⠅⠻⠎" }, { "input": "windbreaks", "output": "⠺⠔⠙⠃⠗⠂⠅⠎" }, { "input": "windburn", "output": "⠺⠔⠙⠃⠥⠗â " }, { "input": "winded", "output": "⠺⠔⠙⠫" }, { "input": "windfall", "output": "⠺⠔⠙⠋â â ‡â ‡" }, { "input": "windfalls", "output": "⠺⠔⠙⠋â â ‡â ‡â Ž" }, { "input": "windier", "output": "⠺⠔⠙⠊⠻" }, { "input": "windiest", "output": "⠺⠔⠙⠊⠑⠌" }, { "input": "windiness", "output": "⠺⠔⠙⠊⠰⠎" }, { "input": "winding", "output": "⠺⠔⠙⠬" }, { "input": "windjammer", "output": "⠺⠔⠙⠚â â â â »" }, { "input": "windjammers", "output": "⠺⠔⠙⠚â â â â »â Ž" }, { "input": "windlass", "output": "⠺⠔⠙⠇â â Žâ Ž" }, { "input": "windlasses", "output": "⠺⠔⠙⠇â â Žâ Žâ ‘â Ž" }, { "input": "windmill", "output": "⠺⠔⠙â â Šâ ‡â ‡" }, { "input": "windmilled", "output": "⠺⠔⠙â â Šâ ‡â ‡â «" }, { "input": "windmilling", "output": "⠺⠔⠙â â Šâ ‡â ‡â ¬" }, { "input": "windmills", "output": "⠺⠔⠙â â Šâ ‡â ‡â Ž" }, { "input": "window", "output": "⠺⠔⠙⠪" }, { "input": "windowed", "output": "⠺⠔⠙⠪⠫" }, { "input": "windowing", "output": "⠺⠔⠙⠪⠬" }, { "input": "windowpane", "output": "⠺⠔⠙⠪â â â â ‘" }, { "input": "windowpanes", "output": "⠺⠔⠙⠪â â â â ‘â Ž" }, { "input": "windows", "output": "⠺⠔⠙⠪⠎" }, { "input": "windowsill", "output": "⠺⠔⠙⠪⠎⠊⠇⠇" }, { "input": "windowsills", "output": "⠺⠔⠙⠪⠎⠊⠇⠇⠎" }, { "input": "windpipe", "output": "⠺⠔⠙â â Šâ â ‘" }, { "input": "windpipes", "output": "⠺⠔⠙â â Šâ â ‘â Ž" }, { "input": "winds", "output": "⠺⠔⠙⠎" }, { "input": "windscreen", "output": "⠺⠔⠙⠎⠉⠗⠑⠢" }, { "input": "windscreens", "output": "⠺⠔⠙⠎⠉⠗⠑⠢⠎" }, { "input": "windshield", "output": "⠺⠔⠙⠩⠊⠑⠇⠙" }, { "input": "windshields", "output": "⠺⠔⠙⠩⠊⠑⠇⠙⠎" }, { "input": "windsock", "output": "⠺⠔⠙⠎⠕⠉⠅" }, { "input": "windsocks", "output": "⠺⠔⠙⠎⠕⠉⠅⠎" }, { "input": "windstorm", "output": "⠺⠔⠙⠌⠕⠗â " }, { "input": "windstorms", "output": "⠺⠔⠙⠌⠕⠗â â Ž" }, { "input": "windsurf", "output": "⠺⠔⠙⠎⠥⠗⠋" }, { "input": "windsurfed", "output": "⠺⠔⠙⠎⠥⠗⠋⠫" }, { "input": "windsurfing", "output": "⠺⠔⠙⠎⠥⠗⠋⠬" }, { "input": "windsurfs", "output": "⠺⠔⠙⠎⠥⠗⠋⠎" }, { "input": "windswept", "output": "⠺⠔⠙⠎⠺⠑â â ž" }, { "input": "windup", "output": "⠺⠔⠙⠥â " }, { "input": "windups", "output": "⠺⠔⠙⠥â â Ž" }, { "input": "windward", "output": "⠺⠔⠙⠺⠜⠙" }, { "input": "windy", "output": "⠺⠔⠙⠽" }, { "input": "wine", "output": "⠺⠔⠑" }, { "input": "wined", "output": "⠺⠔⠫" }, { "input": "wineglass", "output": "⠺⠔⠑⠛⠇â â Žâ Ž" }, { "input": "wineglasses", "output": "⠺⠔⠑⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "wineries", "output": "⠺⠔⠻⠊⠑⠎" }, { "input": "winery", "output": "⠺⠔⠻⠽" }, { "input": "wines", "output": "⠺⠔⠑⠎" }, { "input": "wing", "output": "⠺⠬" }, { "input": "winged", "output": "⠺⠬⠫" }, { "input": "winger", "output": "⠺⠬⠻" }, { "input": "wingers", "output": "⠺⠬⠻⠎" }, { "input": "winging", "output": "⠺⠬⠬" }, { "input": "wingless", "output": "⠺⠬⠨⠎" }, { "input": "wings", "output": "⠺⠬⠎" }, { "input": "wingspan", "output": "⠺⠬⠎â â â " }, { "input": "wingspans", "output": "⠺⠬⠎â â â â Ž" }, { "input": "wingspread", "output": "⠺⠬⠎â â —â ‚â ™" }, { "input": "wingspreads", "output": "⠺⠬⠎â â —⠂⠙⠎" }, { "input": "wingtip", "output": "⠺⠬⠞⠊â " }, { "input": "wingtips", "output": "⠺⠬⠞⠊â â Ž" }, { "input": "wining", "output": "⠺⠔⠬" }, { "input": "wink", "output": "⠺⠔⠅" }, { "input": "winked", "output": "⠺⠔⠅⠫" }, { "input": "winking", "output": "⠺⠔⠅⠬" }, { "input": "winks", "output": "⠺⠔⠅⠎" }, { "input": "winner", "output": "⠺⠔â â »" }, { "input": "winners", "output": "⠺⠔â â »â Ž" }, { "input": "winning", "output": "⠺⠔â â ¬" }, { "input": "winnings", "output": "⠺⠔â â ¬â Ž" }, { "input": "winnow", "output": "⠺⠔â â ª" }, { "input": "winnowed", "output": "⠺⠔â â ªâ «" }, { "input": "winnowing", "output": "⠺⠔â â ªâ ¬" }, { "input": "winnows", "output": "⠺⠔â â ªâ Ž" }, { "input": "wino", "output": "⠺⠔⠕" }, { "input": "winos", "output": "⠺⠔⠕⠎" }, { "input": "wins", "output": "⠺⠔⠎" }, { "input": "winsome", "output": "⠺⠔â â Ž" }, { "input": "winsomely", "output": "⠺⠔â â Žâ ‡â ½" }, { "input": "winsomer", "output": "⠺⠔â â Žâ —" }, { "input": "winsomest", "output": "⠺⠔â â Žâ Œ" }, { "input": "winter", "output": "⠺⠔⠞⠻" }, { "input": "wintered", "output": "⠺⠔⠞⠻⠫" }, { "input": "wintergreen", "output": "⠺⠔⠞⠻⠛⠗⠑⠢" }, { "input": "winterier", "output": "⠺⠔⠞⠻⠊⠻" }, { "input": "winteriest", "output": "⠺⠔⠞⠻⠊⠑⠌" }, { "input": "wintering", "output": "⠺⠔⠞⠻⠬" }, { "input": "winterize", "output": "⠺⠔⠞⠻⠊⠵⠑" }, { "input": "winterized", "output": "⠺⠔⠞⠻⠊⠵⠫" }, { "input": "winterizes", "output": "⠺⠔⠞⠻⠊⠵⠑⠎" }, { "input": "winterizing", "output": "⠺⠔⠞⠻⠊⠵⠬" }, { "input": "winters", "output": "⠺⠔⠞⠻⠎" }, { "input": "wintertime", "output": "⠺⠔⠞⠻â â ž" }, { "input": "wintery", "output": "⠺⠔⠞⠻⠽" }, { "input": "wintrier", "output": "⠺⠔⠞⠗⠊⠻" }, { "input": "wintriest", "output": "⠺⠔⠞⠗⠊⠑⠌" }, { "input": "wintry", "output": "⠺⠔⠞⠗⠽" }, { "input": "wipe", "output": "⠺⠊â â ‘" }, { "input": "wiped", "output": "⠺⠊â â «" }, { "input": "wiper", "output": "⠺⠊â â »" }, { "input": "wipers", "output": "⠺⠊â â »â Ž" }, { "input": "wipes", "output": "⠺⠊â â ‘â Ž" }, { "input": "wiping", "output": "⠺⠊â â ¬" }, { "input": "wire", "output": "⠺⠊⠗⠑" }, { "input": "wired", "output": "⠺⠊⠗⠫" }, { "input": "wireless", "output": "⠺⠊⠗⠑⠨⠎" }, { "input": "wirelesses", "output": "⠺⠊⠗⠑⠨⠎⠑⠎" }, { "input": "wires", "output": "⠺⠊⠗⠑⠎" }, { "input": "wiretap", "output": "⠺⠊⠗⠑⠞â â " }, { "input": "wiretapped", "output": "⠺⠊⠗⠑⠞â â â â «" }, { "input": "wiretapping", "output": "⠺⠊⠗⠑⠞â â â â ¬" }, { "input": "wiretaps", "output": "⠺⠊⠗⠑⠞â â â Ž" }, { "input": "wirier", "output": "⠺⠊⠗⠊⠻" }, { "input": "wiriest", "output": "⠺⠊⠗⠊⠑⠌" }, { "input": "wiriness", "output": "⠺⠊⠗⠊⠰⠎" }, { "input": "wiring", "output": "⠺⠊⠗⠬" }, { "input": "wiry", "output": "⠺⠊⠗⠽" }, { "input": "wisdom", "output": "⠺⠊⠎⠙⠕â " }, { "input": "wise", "output": "⠺⠊⠎⠑" }, { "input": "wiseacre", "output": "⠺⠊⠎⠑â â ‰â —â ‘" }, { "input": "wiseacres", "output": "⠺⠊⠎⠑â â ‰â —â ‘â Ž" }, { "input": "wisecrack", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …" }, { "input": "wisecracked", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â «" }, { "input": "wisecracking", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â ¬" }, { "input": "wisecracks", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â Ž" }, { "input": "wisely", "output": "⠺⠊⠎⠑⠇⠽" }, { "input": "wiser", "output": "⠺⠊⠎⠻" }, { "input": "wises", "output": "⠺⠊⠎⠑⠎" }, { "input": "wisest", "output": "⠺⠊⠎⠑⠌" }, { "input": "wish", "output": "⠺⠊⠩" }, { "input": "wishbone", "output": "⠺⠊⠩⠃â â •" }, { "input": "wishbones", "output": "⠺⠊⠩⠃â â •â Ž" }, { "input": "wished", "output": "⠺⠊⠩⠫" }, { "input": "wisher", "output": "⠺⠊⠩⠻" }, { "input": "wishers", "output": "⠺⠊⠩⠻⠎" }, { "input": "wishes", "output": "⠺⠊⠩⠑⠎" }, { "input": "wishful", "output": "⠺⠊⠩⠰⠇" }, { "input": "wishfully", "output": "⠺⠊⠩⠰⠇⠇⠽" }, { "input": "wishing", "output": "⠺⠊⠩⠬" }, { "input": "wisp", "output": "⠺⠊⠎â " }, { "input": "wispier", "output": "⠺⠊⠎â â Šâ »" }, { "input": "wispiest", "output": "⠺⠊⠎â â Šâ ‘â Œ" }, { "input": "wisps", "output": "⠺⠊⠎â â Ž" }, { "input": "wispy", "output": "⠺⠊⠎â â ½" }, { "input": "wist", "output": "⠺⠊⠌" }, { "input": "wistaria", "output": "⠺⠊⠌⠜⠊â " }, { "input": "wistarias", "output": "⠺⠊⠌⠜⠊â â Ž" }, { "input": "wisteria", "output": "⠺⠊⠌⠻⠊â " }, { "input": "wisterias", "output": "⠺⠊⠌⠻⠊â â Ž" }, { "input": "wistful", "output": "⠺⠊⠌⠰⠇" }, { "input": "wistfully", "output": "⠺⠊⠌⠰⠇⠇⠽" }, { "input": "wistfulness", "output": "⠺⠊⠌⠰⠇⠰⠎" }, { "input": "wit", "output": "⠺⠊⠞" }, { "input": "witch", "output": "⠺⠊⠞⠡" }, { "input": "witchcraft", "output": "⠺⠊⠞⠡⠉⠗â â ‹â ž" }, { "input": "witched", "output": "⠺⠊⠞⠡⠫" }, { "input": "witchery", "output": "⠺⠊⠞⠡⠻⠽" }, { "input": "witches", "output": "⠺⠊⠞⠡⠑⠎" }, { "input": "witching", "output": "⠺⠊⠞⠡⠬" }, { "input": "with", "output": "â ¾" }, { "input": "withal", "output": "â ¾â â ‡" }, { "input": "withdraw", "output": "⠾⠙⠗â â º" }, { "input": "withdrawal", "output": "⠾⠙⠗â â ºâ â ‡" }, { "input": "withdrawals", "output": "⠾⠙⠗â â ºâ â ‡â Ž" }, { "input": "withdrawing", "output": "⠾⠙⠗â â ºâ ¬" }, { "input": "withdrawn", "output": "⠾⠙⠗â â ºâ " }, { "input": "withdraws", "output": "⠾⠙⠗â â ºâ Ž" }, { "input": "withdrew", "output": "⠾⠙⠗⠑⠺" }, { "input": "wither", "output": "⠾⠻" }, { "input": "withered", "output": "⠾⠻⠫" }, { "input": "withering", "output": "⠾⠻⠬" }, { "input": "withers", "output": "⠾⠻⠎" }, { "input": "withheld", "output": "⠾⠓⠑⠇⠙" }, { "input": "withhold", "output": "⠾⠓⠕⠇⠙" }, { "input": "withholding", "output": "⠾⠓⠕⠇⠙⠬" }, { "input": "withholds", "output": "⠾⠓⠕⠇⠙⠎" }, { "input": "within", "output": "⠾⠔" }, { "input": "without", "output": "⠾⠳⠞" }, { "input": "withstand", "output": "⠾⠌⠯" }, { "input": "withstanding", "output": "⠾⠌⠯⠬" }, { "input": "withstands", "output": "⠾⠌⠯⠎" }, { "input": "withstood", "output": "⠾⠌⠕⠕⠙" }, { "input": "witless", "output": "⠺⠊⠞⠨⠎" }, { "input": "witlessly", "output": "⠺⠊⠞⠨⠎⠇⠽" }, { "input": "witness", "output": "⠺⠊⠞⠰⠎" }, { "input": "witnessed", "output": "⠺⠊⠞⠰⠎⠫" }, { "input": "witnesses", "output": "⠺⠊⠞⠰⠎⠑⠎" }, { "input": "witnessing", "output": "⠺⠊⠞⠰⠎⠬" }, { "input": "wits", "output": "⠺⠊⠞⠎" }, { "input": "witticism", "output": "⠺⠊⠞⠞⠊⠉⠊⠎â " }, { "input": "witticisms", "output": "⠺⠊⠞⠞⠊⠉⠊⠎â â Ž" }, { "input": "wittier", "output": "⠺⠊⠞⠞⠊⠻" }, { "input": "wittiest", "output": "⠺⠊⠞⠞⠊⠑⠌" }, { "input": "wittily", "output": "⠺⠊⠞⠞⠊⠇⠽" }, { "input": "wittiness", "output": "⠺⠊⠞⠞⠊⠰⠎" }, { "input": "witting", "output": "⠺⠊⠞⠞⠬" }, { "input": "wittingly", "output": "⠺⠊⠞⠞⠬⠇⠽" }, { "input": "witty", "output": "⠺⠊⠞⠞⠽" }, { "input": "wive", "output": "⠺⠊⠧⠑" }, { "input": "wives", "output": "⠺⠊⠧⠑⠎" }, { "input": "wiz", "output": "⠺⠊⠵" }, { "input": "wizard", "output": "⠺⠊⠵⠜⠙" }, { "input": "wizardry", "output": "⠺⠊⠵⠜⠙⠗⠽" }, { "input": "wizards", "output": "⠺⠊⠵⠜⠙⠎" }, { "input": "wizened", "output": "⠺⠊⠵⠢⠫" }, { "input": "wizes", "output": "⠺⠊⠵⠑⠎" }, { "input": "wizzes", "output": "⠺⠊⠵⠵⠑⠎" }, { "input": "wobble", "output": "⠺⠕⠆⠇⠑" }, { "input": "wobbled", "output": "⠺⠕⠆⠇⠫" }, { "input": "wobbles", "output": "⠺⠕⠆⠇⠑⠎" }, { "input": "wobblier", "output": "⠺⠕⠆⠇⠊⠻" }, { "input": "wobbliest", "output": "⠺⠕⠆⠇⠊⠑⠌" }, { "input": "wobbling", "output": "⠺⠕⠆⠇⠬" }, { "input": "wobbly", "output": "⠺⠕⠆⠇⠽" }, { "input": "woe", "output": "⠺⠕⠑" }, { "input": "woebegone", "output": "⠺⠕⠑⠃⠑⠛â â •" }, { "input": "woeful", "output": "⠺⠕⠑⠰⠇" }, { "input": "woefuller", "output": "⠺⠕⠑⠰⠇⠇⠻" }, { "input": "woefullest", "output": "⠺⠕⠑⠰⠇⠇⠑⠌" }, { "input": "woefully", "output": "⠺⠕⠑⠰⠇⠇⠽" }, { "input": "woes", "output": "⠺⠕⠑⠎" }, { "input": "wok", "output": "⠺⠕⠅" }, { "input": "woke", "output": "⠺⠕⠅⠑" }, { "input": "woken", "output": "⠺⠕⠅⠢" }, { "input": "woks", "output": "⠺⠕⠅⠎" }, { "input": "wolf", "output": "⠺⠕⠇⠋" }, { "input": "wolfed", "output": "⠺⠕⠇⠋⠫" }, { "input": "wolfhound", "output": "⠺⠕⠇⠋⠓⠨⠙" }, { "input": "wolfhounds", "output": "⠺⠕⠇⠋⠓⠨⠙⠎" }, { "input": "wolfing", "output": "⠺⠕⠇⠋⠬" }, { "input": "wolfish", "output": "⠺⠕⠇⠋⠊⠩" }, { "input": "wolfram", "output": "⠺⠕⠇⠋⠗â â " }, { "input": "wolfs", "output": "⠺⠕⠇⠋⠎" }, { "input": "wolverine", "output": "⠺⠕⠇⠧⠻⠔⠑" }, { "input": "wolverines", "output": "⠺⠕⠇⠧⠻⠔⠑⠎" }, { "input": "wolves", "output": "⠺⠕⠇⠧⠑⠎" }, { "input": "woman", "output": "⠺⠕â â â " }, { "input": "womanhood", "output": "⠺⠕â â â â “â •â •â ™" }, { "input": "womanish", "output": "⠺⠕â â â â Šâ ©" }, { "input": "womanize", "output": "⠺⠕â â â â Šâ µâ ‘" }, { "input": "womanized", "output": "⠺⠕â â â â Šâ µâ «" }, { "input": "womanizer", "output": "⠺⠕â â â â Šâ µâ »" }, { "input": "womanizers", "output": "⠺⠕â â â â Šâ µâ »â Ž" }, { "input": "womanizes", "output": "⠺⠕â â â â Šâ µâ ‘â Ž" }, { "input": "womanizing", "output": "⠺⠕â â â â Šâ µâ ¬" }, { "input": "womankind", "output": "⠺⠕â â â â …⠔⠙" }, { "input": "womanlier", "output": "⠺⠕â â â â ‡â Šâ »" }, { "input": "womanliest", "output": "⠺⠕â â â â ‡â Šâ ‘â Œ" }, { "input": "womanlike", "output": "⠺⠕â â â â ‡â Šâ …â ‘" }, { "input": "womanliness", "output": "⠺⠕â â â â ‡â Šâ °â Ž" }, { "input": "womanly", "output": "⠺⠕â â â â ‡â ½" }, { "input": "womb", "output": "⠺⠕â â ƒ" }, { "input": "wombat", "output": "⠺⠕â â ƒâ â ž" }, { "input": "wombats", "output": "⠺⠕â â ƒâ â žâ Ž" }, { "input": "wombs", "output": "⠺⠕â â ƒâ Ž" }, { "input": "women", "output": "⠺⠕â â ¢" }, { "input": "womenfolk", "output": "⠺⠕â â ¢â ‹â •⠇⠅" }, { "input": "womenfolks", "output": "⠺⠕â â ¢â ‹â •⠇⠅⠎" }, { "input": "won", "output": "⠺⠕â " }, { "input": "wonder", "output": "⠺⠕â â ™â »" }, { "input": "wondered", "output": "⠺⠕â â ™â »â «" }, { "input": "wonderful", "output": "⠺⠕â â ™â »â °â ‡" }, { "input": "wonderfully", "output": "⠺⠕â â ™â »â °â ‡â ‡â ½" }, { "input": "wondering", "output": "⠺⠕â â ™â »â ¬" }, { "input": "wonderland", "output": "⠺⠕â â ™â »â ‡â ¯" }, { "input": "wonderlands", "output": "⠺⠕â â ™â »â ‡â ¯â Ž" }, { "input": "wonderment", "output": "⠺⠕â â ™â »â °â ž" }, { "input": "wonders", "output": "⠺⠕â â ™â »â Ž" }, { "input": "wondrous", "output": "⠺⠕â â ™â —⠳⠎" }, { "input": "wondrously", "output": "⠺⠕â â ™â —⠳⠎⠇⠽" }, { "input": "wont", "output": "⠺⠕â â ž" }, { "input": "wonted", "output": "⠺⠕â â žâ «" }, { "input": "woo", "output": "⠺⠕⠕" }, { "input": "wood", "output": "⠺⠕⠕⠙" }, { "input": "woodbine", "output": "⠺⠕⠕⠙⠃⠔⠑" }, { "input": "woodcarving", "output": "⠺⠕⠕⠙⠉⠜⠧⠬" }, { "input": "woodcarvings", "output": "⠺⠕⠕⠙⠉⠜⠧⠬⠎" }, { "input": "woodchuck", "output": "⠺⠕⠕⠙⠡⠥⠉⠅" }, { "input": "woodchucks", "output": "⠺⠕⠕⠙⠡⠥⠉⠅⠎" }, { "input": "woodcock", "output": "⠺⠕⠕⠙⠉⠕⠉⠅" }, { "input": "woodcocks", "output": "⠺⠕⠕⠙⠉⠕⠉⠅⠎" }, { "input": "woodcraft", "output": "⠺⠕⠕⠙⠉⠗â â ‹â ž" }, { "input": "woodcut", "output": "⠺⠕⠕⠙⠉⠥⠞" }, { "input": "woodcuts", "output": "⠺⠕⠕⠙⠉⠥⠞⠎" }, { "input": "woodcutter", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠻" }, { "input": "woodcutters", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠻⠎" }, { "input": "woodcutting", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠬" }, { "input": "wooded", "output": "⠺⠕⠕⠙⠫" }, { "input": "wooden", "output": "⠺⠕⠕⠙⠢" }, { "input": "woodener", "output": "⠺⠕⠕⠙⠢⠻" }, { "input": "woodenest", "output": "⠺⠕⠕⠙⠢⠑⠌" }, { "input": "woodenly", "output": "⠺⠕⠕⠙⠢⠇⠽" }, { "input": "woodenness", "output": "⠺⠕⠕⠙⠢⠰⠎" }, { "input": "woodier", "output": "⠺⠕⠕⠙⠊⠻" }, { "input": "woodies", "output": "⠺⠕⠕⠙⠊⠑⠎" }, { "input": "woodiest", "output": "⠺⠕⠕⠙⠊⠑⠌" }, { "input": "woodiness", "output": "⠺⠕⠕⠙⠊⠰⠎" }, { "input": "wooding", "output": "⠺⠕⠕⠙⠬" }, { "input": "woodland", "output": "⠺⠕⠕⠙⠇⠯" }, { "input": "woodlands", "output": "⠺⠕⠕⠙⠇⠯⠎" }, { "input": "woodman", "output": "⠺⠕⠕⠙â â â " }, { "input": "woodmen", "output": "⠺⠕⠕⠙â â ¢" }, { "input": "woodpecker", "output": "⠺⠕⠕⠙â â ‘⠉⠅⠻" }, { "input": "woodpeckers", "output": "⠺⠕⠕⠙â â ‘⠉⠅⠻⠎" }, { "input": "woodpile", "output": "⠺⠕⠕⠙â â Šâ ‡â ‘" }, { "input": "woodpiles", "output": "⠺⠕⠕⠙â â Šâ ‡â ‘â Ž" }, { "input": "woods", "output": "⠺⠕⠕⠙⠎" }, { "input": "woodshed", "output": "⠺⠕⠕⠙⠩⠫" }, { "input": "woodsheds", "output": "⠺⠕⠕⠙⠩⠫⠎" }, { "input": "woodsier", "output": "⠺⠕⠕⠙⠎⠊⠻" }, { "input": "woodsiest", "output": "⠺⠕⠕⠙⠎⠊⠑⠌" }, { "input": "woodsman", "output": "⠺⠕⠕⠙⠎â â â " }, { "input": "woodsmen", "output": "⠺⠕⠕⠙⠎â â ¢" }, { "input": "woodsy", "output": "⠺⠕⠕⠙⠎⠽" }, { "input": "woodwind", "output": "⠺⠕⠕⠙⠺⠔⠙" }, { "input": "woodwinds", "output": "⠺⠕⠕⠙⠺⠔⠙⠎" }, { "input": "woodwork", "output": "⠺⠕⠕⠙â â º" }, { "input": "woodworking", "output": "⠺⠕⠕⠙â â ºâ ¬" }, { "input": "woodworm", "output": "⠺⠕⠕⠙⠺⠕⠗â " }, { "input": "woody", "output": "⠺⠕⠕⠙⠽" }, { "input": "wooed", "output": "⠺⠕⠕⠫" }, { "input": "wooer", "output": "⠺⠕⠕⠻" }, { "input": "wooers", "output": "⠺⠕⠕⠻⠎" }, { "input": "woof", "output": "⠺⠕⠷" }, { "input": "woofed", "output": "⠺⠕⠷⠫" }, { "input": "woofer", "output": "⠺⠕⠷⠻" }, { "input": "woofers", "output": "⠺⠕⠷⠻⠎" }, { "input": "woofing", "output": "⠺⠕⠷⠬" }, { "input": "woofs", "output": "⠺⠕⠷⠎" }, { "input": "wooing", "output": "⠺⠕⠕⠬" }, { "input": "wool", "output": "⠺⠕⠕⠇" }, { "input": "woolen", "output": "⠺⠕⠕⠇⠢" }, { "input": "woolens", "output": "⠺⠕⠕⠇⠢⠎" }, { "input": "woolgathering", "output": "⠺⠕⠕⠇⠛â â ®â —â ¬" }, { "input": "woolie", "output": "⠺⠕⠕⠇⠊⠑" }, { "input": "woolier", "output": "⠺⠕⠕⠇⠊⠻" }, { "input": "woolies", "output": "⠺⠕⠕⠇⠊⠑⠎" }, { "input": "wooliest", "output": "⠺⠕⠕⠇⠊⠑⠌" }, { "input": "woollier", "output": "⠺⠕⠕⠇⠇⠊⠻" }, { "input": "woollies", "output": "⠺⠕⠕⠇⠇⠊⠑⠎" }, { "input": "woolliest", "output": "⠺⠕⠕⠇⠇⠊⠑⠌" }, { "input": "woolliness", "output": "⠺⠕⠕⠇⠇⠊⠰⠎" }, { "input": "woolly", "output": "⠺⠕⠕⠇⠇⠽" }, { "input": "wooly", "output": "⠺⠕⠕⠇⠽" }, { "input": "woos", "output": "⠺⠕⠕⠎" }, { "input": "woozier", "output": "⠺⠕⠕⠵⠊⠻" }, { "input": "wooziest", "output": "⠺⠕⠕⠵⠊⠑⠌" }, { "input": "wooziness", "output": "⠺⠕⠕⠵⠊⠰⠎" }, { "input": "woozy", "output": "⠺⠕⠕⠵⠽" }, { "input": "word", "output": "⠘⠺" }, { "input": "worded", "output": "⠘⠺⠫" }, { "input": "wordier", "output": "⠘⠺⠊⠻" }, { "input": "wordiest", "output": "⠘⠺⠊⠑⠌" }, { "input": "wordiness", "output": "⠘⠺⠊⠰⠎" }, { "input": "wording", "output": "⠘⠺⠬" }, { "input": "wordings", "output": "⠘⠺⠬⠎" }, { "input": "wordplay", "output": "⠘⠺â â ‡â â ½" }, { "input": "words", "output": "⠘⠺⠎" }, { "input": "wordy", "output": "⠘⠺⠽" }, { "input": "wore", "output": "⠺⠕⠗⠑" }, { "input": "work", "output": "â â º" }, { "input": "workable", "output": "â â ºâ â ƒâ ‡â ‘" }, { "input": "workaday", "output": "â â ºâ â â ™" }, { "input": "workaholic", "output": "â â ºâ â “⠕⠇⠊⠉" }, { "input": "workaholics", "output": "â â ºâ â “⠕⠇⠊⠉⠎" }, { "input": "workbench", "output": "â â ºâ ƒâ ¢â ¡" }, { "input": "workbenches", "output": "â â ºâ ƒâ ¢â ¡â ‘â Ž" }, { "input": "workbook", "output": "â â ºâ ƒâ •â •â …" }, { "input": "workbooks", "output": "â â ºâ ƒâ •â •â …â Ž" }, { "input": "workday", "output": "â â ºâ â ™" }, { "input": "workdays", "output": "â â ºâ â ™â Ž" }, { "input": "worked", "output": "â â ºâ «" }, { "input": "worker", "output": "â â ºâ »" }, { "input": "workers", "output": "â â ºâ »â Ž" }, { "input": "workfare", "output": "â â ºâ ‹â œâ ‘" }, { "input": "workforce", "output": "â â ºâ ¿â ‰â ‘" }, { "input": "workhorse", "output": "â â ºâ “â •â —â Žâ ‘" }, { "input": "workhorses", "output": "â â ºâ “â •â —â Žâ ‘â Ž" }, { "input": "workhouse", "output": "â â ºâ “⠳⠎⠑" }, { "input": "workhouses", "output": "â â ºâ “⠳⠎⠑⠎" }, { "input": "working", "output": "â â ºâ ¬" }, { "input": "workingman", "output": "â â ºâ ¬â â â " }, { "input": "workingmen", "output": "â â ºâ ¬â â ¢" }, { "input": "workings", "output": "â â ºâ ¬â Ž" }, { "input": "workload", "output": "â â ºâ ‡â •â â ™" }, { "input": "workloads", "output": "â â ºâ ‡â •â â ™â Ž" }, { "input": "workman", "output": "â â ºâ â â " }, { "input": "workmanlike", "output": "â â ºâ â â â ‡â Šâ …â ‘" }, { "input": "workmanship", "output": "â â ºâ â â â ©â Šâ " }, { "input": "workmen", "output": "â â ºâ â ¢" }, { "input": "workout", "output": "â â ºâ ³â ž" }, { "input": "workouts", "output": "â â ºâ ³â žâ Ž" }, { "input": "workplace", "output": "â â ºâ â ‡â â ‰â ‘" }, { "input": "workplaces", "output": "â â ºâ â ‡â â ‰â ‘â Ž" }, { "input": "works", "output": "â â ºâ Ž" }, { "input": "worksheet", "output": "â â ºâ ©â ‘â ‘â ž" }, { "input": "worksheets", "output": "â â ºâ ©â ‘â ‘â žâ Ž" }, { "input": "workshop", "output": "â â ºâ ©â •â " }, { "input": "workshops", "output": "â â ºâ ©â •â â Ž" }, { "input": "workstation", "output": "â â ºâ Œâ â °â " }, { "input": "workstations", "output": "â â ºâ Œâ â °â â Ž" }, { "input": "workweek", "output": "â â ºâ ºâ ‘â ‘â …" }, { "input": "workweeks", "output": "â â ºâ ºâ ‘â ‘â …â Ž" }, { "input": "world", "output": "⠸⠺" }, { "input": "worldlier", "output": "⠸⠺⠇⠊⠻" }, { "input": "worldliest", "output": "⠸⠺⠇⠊⠑⠌" }, { "input": "worldliness", "output": "⠸⠺⠇⠊⠰⠎" }, { "input": "worldly", "output": "⠸⠺⠇⠽" }, { "input": "worlds", "output": "⠸⠺⠎" }, { "input": "worldwide", "output": "⠸⠺⠺⠊⠙⠑" }, { "input": "worm", "output": "⠺⠕⠗â " }, { "input": "wormed", "output": "⠺⠕⠗â â «" }, { "input": "wormhole", "output": "⠺⠕⠗â â “⠕⠇⠑" }, { "input": "wormholes", "output": "⠺⠕⠗â â “⠕⠇⠑⠎" }, { "input": "wormier", "output": "⠺⠕⠗â â Šâ »" }, { "input": "wormiest", "output": "⠺⠕⠗â â Šâ ‘â Œ" }, { "input": "worming", "output": "⠺⠕⠗â â ¬" }, { "input": "worms", "output": "⠺⠕⠗â â Ž" }, { "input": "wormwood", "output": "⠺⠕⠗â â ºâ •â •â ™" }, { "input": "wormy", "output": "⠺⠕⠗â â ½" }, { "input": "worn", "output": "⠺⠕⠗â " }, { "input": "worried", "output": "⠺⠕⠗⠗⠊⠫" }, { "input": "worrier", "output": "⠺⠕⠗⠗⠊⠻" }, { "input": "worriers", "output": "⠺⠕⠗⠗⠊⠻⠎" }, { "input": "worries", "output": "⠺⠕⠗⠗⠊⠑⠎" }, { "input": "worrisome", "output": "⠺⠕⠗⠗⠊â â Ž" }, { "input": "worry", "output": "⠺⠕⠗⠗⠽" }, { "input": "worrying", "output": "⠺⠕⠗⠗⠽⠬" }, { "input": "worryings", "output": "⠺⠕⠗⠗⠽⠬⠎" }, { "input": "worrywart", "output": "⠺⠕⠗⠗⠽⠺⠜⠞" }, { "input": "worrywarts", "output": "⠺⠕⠗⠗⠽⠺⠜⠞⠎" }, { "input": "worse", "output": "⠺⠕⠗⠎⠑" }, { "input": "worsen", "output": "⠺⠕⠗⠎⠢" }, { "input": "worsened", "output": "⠺⠕⠗⠎⠢⠫" }, { "input": "worsening", "output": "⠺⠕⠗⠎⠢⠬" }, { "input": "worsens", "output": "⠺⠕⠗⠎⠢⠎" }, { "input": "worship", "output": "⠺⠕⠗⠩⠊â " }, { "input": "worshiped", "output": "⠺⠕⠗⠩⠊â â «" }, { "input": "worshiper", "output": "⠺⠕⠗⠩⠊â â »" }, { "input": "worshipers", "output": "⠺⠕⠗⠩⠊â â »â Ž" }, { "input": "worshipful", "output": "⠺⠕⠗⠩⠊â â °â ‡" }, { "input": "worshiping", "output": "⠺⠕⠗⠩⠊â â ¬" }, { "input": "worshipped", "output": "⠺⠕⠗⠩⠊â â â «" }, { "input": "worshipper", "output": "⠺⠕⠗⠩⠊â â â »" }, { "input": "worshippers", "output": "⠺⠕⠗⠩⠊â â â »â Ž" }, { "input": "worshipping", "output": "⠺⠕⠗⠩⠊â â â ¬" }, { "input": "worships", "output": "⠺⠕⠗⠩⠊â â Ž" }, { "input": "worst", "output": "⠺⠕⠗⠌" }, { "input": "worsted", "output": "⠺⠕⠗⠌⠫" }, { "input": "worsting", "output": "⠺⠕⠗⠌⠬" }, { "input": "worsts", "output": "⠺⠕⠗⠌⠎" }, { "input": "worth", "output": "⠺⠕⠗⠹" }, { "input": "worthier", "output": "⠺⠕⠗⠹⠊⠻" }, { "input": "worthies", "output": "⠺⠕⠗⠹⠊⠑⠎" }, { "input": "worthiest", "output": "⠺⠕⠗⠹⠊⠑⠌" }, { "input": "worthily", "output": "⠺⠕⠗⠹⠊⠇⠽" }, { "input": "worthiness", "output": "⠺⠕⠗⠹⠊⠰⠎" }, { "input": "worthless", "output": "⠺⠕⠗⠹⠨⠎" }, { "input": "worthlessness", "output": "⠺⠕⠗⠹⠨⠎⠰⠎" }, { "input": "worthwhile", "output": "⠺⠕⠗⠹⠱⠊⠇⠑" }, { "input": "worthy", "output": "⠺⠕⠗⠹⠽" }, { "input": "wot", "output": "⠺⠕⠞" }, { "input": "would", "output": "⠺⠙" }, { "input": "woulds", "output": "⠺⠙⠎" }, { "input": "wound", "output": "⠺⠨⠙" }, { "input": "wounded", "output": "⠺⠨⠙⠫" }, { "input": "wounder", "output": "⠺⠨⠙⠻" }, { "input": "wounding", "output": "⠺⠨⠙⠬" }, { "input": "wounds", "output": "⠺⠨⠙⠎" }, { "input": "wove", "output": "⠺⠕⠧⠑" }, { "input": "woven", "output": "⠺⠕⠧⠢" }, { "input": "wow", "output": "⠺⠪" }, { "input": "wowed", "output": "⠺⠪⠫" }, { "input": "wowing", "output": "⠺⠪⠬" }, { "input": "wows", "output": "⠺⠪⠎" }, { "input": "wrack", "output": "⠺⠗â â ‰â …" }, { "input": "wraith", "output": "⠺⠗â â Šâ ¹" }, { "input": "wraiths", "output": "⠺⠗â â Šâ ¹â Ž" }, { "input": "wrangle", "output": "⠺⠗â â â ›â ‡â ‘" }, { "input": "wrangled", "output": "⠺⠗â â â ›â ‡â «" }, { "input": "wrangler", "output": "⠺⠗â â â ›â ‡â »" }, { "input": "wranglers", "output": "⠺⠗â â â ›â ‡â »â Ž" }, { "input": "wrangles", "output": "⠺⠗â â â ›â ‡â ‘â Ž" }, { "input": "wrangling", "output": "⠺⠗â â â ›â ‡â ¬" }, { "input": "wrap", "output": "⠺⠗â â " }, { "input": "wraparound", "output": "⠺⠗â â â œâ ¨â ™" }, { "input": "wraparounds", "output": "⠺⠗â â â œâ ¨â ™â Ž" }, { "input": "wrapped", "output": "⠺⠗â â â â «" }, { "input": "wrapper", "output": "⠺⠗â â â â »" }, { "input": "wrappers", "output": "⠺⠗â â â â »â Ž" }, { "input": "wrapping", "output": "⠺⠗â â â â ¬" }, { "input": "wrappings", "output": "⠺⠗â â â â ¬â Ž" }, { "input": "wraps", "output": "⠺⠗â â â Ž" }, { "input": "wrapt", "output": "⠺⠗â â â ž" }, { "input": "wrath", "output": "⠺⠗â â ¹" }, { "input": "wrathful", "output": "⠺⠗â â ¹â °â ‡" }, { "input": "wrathfully", "output": "⠺⠗â â ¹â °â ‡â ‡â ½" }, { "input": "wreak", "output": "⠺⠗⠂⠅" }, { "input": "wreaked", "output": "⠺⠗⠂⠅⠫" }, { "input": "wreaking", "output": "⠺⠗⠂⠅⠬" }, { "input": "wreaks", "output": "⠺⠗⠂⠅⠎" }, { "input": "wreath", "output": "⠺⠗⠂⠹" }, { "input": "wreathe", "output": "⠺⠗⠂⠮" }, { "input": "wreathed", "output": "⠺⠗⠂⠮⠙" }, { "input": "wreathes", "output": "⠺⠗⠂⠮⠎" }, { "input": "wreathing", "output": "⠺⠗⠂⠹⠬" }, { "input": "wreaths", "output": "⠺⠗⠂⠹⠎" }, { "input": "wreck", "output": "⠺⠗⠑⠉⠅" }, { "input": "wreckage", "output": "⠺⠗⠑⠉⠅â â ›â ‘" }, { "input": "wrecked", "output": "⠺⠗⠑⠉⠅⠫" }, { "input": "wrecker", "output": "⠺⠗⠑⠉⠅⠻" }, { "input": "wreckers", "output": "⠺⠗⠑⠉⠅⠻⠎" }, { "input": "wrecking", "output": "⠺⠗⠑⠉⠅⠬" }, { "input": "wrecks", "output": "⠺⠗⠑⠉⠅⠎" }, { "input": "wren", "output": "⠺⠗⠢" }, { "input": "wrench", "output": "⠺⠗⠢⠡" }, { "input": "wrenched", "output": "⠺⠗⠢⠡⠫" }, { "input": "wrenches", "output": "⠺⠗⠢⠡⠑⠎" }, { "input": "wrenching", "output": "⠺⠗⠢⠡⠬" }, { "input": "wrens", "output": "⠺⠗⠢⠎" }, { "input": "wrest", "output": "⠺⠗⠑⠌" }, { "input": "wrested", "output": "⠺⠗⠑⠌⠫" }, { "input": "wresting", "output": "⠺⠗⠑⠌⠬" }, { "input": "wrestle", "output": "⠺⠗⠑⠌⠇⠑" }, { "input": "wrestled", "output": "⠺⠗⠑⠌⠇⠫" }, { "input": "wrestler", "output": "⠺⠗⠑⠌⠇⠻" }, { "input": "wrestlers", "output": "⠺⠗⠑⠌⠇⠻⠎" }, { "input": "wrestles", "output": "⠺⠗⠑⠌⠇⠑⠎" }, { "input": "wrestling", "output": "⠺⠗⠑⠌⠇⠬" }, { "input": "wrests", "output": "⠺⠗⠑⠌⠎" }, { "input": "wretch", "output": "⠺⠗⠑⠞⠡" }, { "input": "wretched", "output": "⠺⠗⠑⠞⠡⠫" }, { "input": "wretcheder", "output": "⠺⠗⠑⠞⠡⠫⠻" }, { "input": "wretchedest", "output": "⠺⠗⠑⠞⠡⠫⠑⠌" }, { "input": "wretchedly", "output": "⠺⠗⠑⠞⠡⠫⠇⠽" }, { "input": "wretchedness", "output": "⠺⠗⠑⠞⠡⠫⠰⠎" }, { "input": "wretches", "output": "⠺⠗⠑⠞⠡⠑⠎" }, { "input": "wrier", "output": "⠺⠗⠊⠻" }, { "input": "wriest", "output": "⠺⠗⠊⠑⠌" }, { "input": "wriggle", "output": "⠺⠗⠊⠶⠇⠑" }, { "input": "wriggled", "output": "⠺⠗⠊⠶⠇⠫" }, { "input": "wriggler", "output": "⠺⠗⠊⠶⠇⠻" }, { "input": "wrigglers", "output": "⠺⠗⠊⠶⠇⠻⠎" }, { "input": "wriggles", "output": "⠺⠗⠊⠶⠇⠑⠎" }, { "input": "wrigglier", "output": "⠺⠗⠊⠶⠇⠊⠻" }, { "input": "wriggliest", "output": "⠺⠗⠊⠶⠇⠊⠑⠌" }, { "input": "wriggling", "output": "⠺⠗⠊⠶⠇⠬" }, { "input": "wriggly", "output": "⠺⠗⠊⠶⠇⠽" }, { "input": "wright", "output": "â ºâ â —" }, { "input": "wring", "output": "⠺⠗⠬" }, { "input": "wringer", "output": "⠺⠗⠬⠻" }, { "input": "wringers", "output": "⠺⠗⠬⠻⠎" }, { "input": "wringing", "output": "⠺⠗⠬⠬" }, { "input": "wrings", "output": "⠺⠗⠬⠎" }, { "input": "wrinkle", "output": "⠺⠗⠔⠅⠇⠑" }, { "input": "wrinkled", "output": "⠺⠗⠔⠅⠇⠫" }, { "input": "wrinkles", "output": "⠺⠗⠔⠅⠇⠑⠎" }, { "input": "wrinklier", "output": "⠺⠗⠔⠅⠇⠊⠻" }, { "input": "wrinklies", "output": "⠺⠗⠔⠅⠇⠊⠑⠎" }, { "input": "wrinkliest", "output": "⠺⠗⠔⠅⠇⠊⠑⠌" }, { "input": "wrinkling", "output": "⠺⠗⠔⠅⠇⠬" }, { "input": "wrinkly", "output": "⠺⠗⠔⠅⠇⠽" }, { "input": "wrist", "output": "⠺⠗⠊⠌" }, { "input": "wristband", "output": "⠺⠗⠊⠌⠃⠯" }, { "input": "wristbands", "output": "⠺⠗⠊⠌⠃⠯⠎" }, { "input": "wrists", "output": "⠺⠗⠊⠌⠎" }, { "input": "wristwatch", "output": "⠺⠗⠊⠌⠺â â žâ ¡" }, { "input": "wristwatches", "output": "⠺⠗⠊⠌⠺â â žâ ¡â ‘â Ž" }, { "input": "writ", "output": "⠺⠗⠊⠞" }, { "input": "writable", "output": "⠺⠗⠊⠞â â ƒâ ‡â ‘" }, { "input": "write", "output": "⠺⠗⠊⠞⠑" }, { "input": "writer", "output": "⠺⠗⠊⠞⠻" }, { "input": "writers", "output": "⠺⠗⠊⠞⠻⠎" }, { "input": "writes", "output": "⠺⠗⠊⠞⠑⠎" }, { "input": "writhe", "output": "⠺⠗⠊⠮" }, { "input": "writhed", "output": "⠺⠗⠊⠮⠙" }, { "input": "writhes", "output": "⠺⠗⠊⠮⠎" }, { "input": "writhing", "output": "⠺⠗⠊⠹⠬" }, { "input": "writing", "output": "⠺⠗⠊⠞⠬" }, { "input": "writings", "output": "⠺⠗⠊⠞⠬⠎" }, { "input": "writs", "output": "⠺⠗⠊⠞⠎" }, { "input": "written", "output": "⠺⠗⠊⠞⠞⠢" }, { "input": "wrong", "output": "⠺⠗⠰⠛" }, { "input": "wrongdoer", "output": "⠺⠗⠰⠛⠙⠕⠻" }, { "input": "wrongdoers", "output": "⠺⠗⠰⠛⠙⠕⠻⠎" }, { "input": "wrongdoing", "output": "⠺⠗⠰⠛⠙⠕⠬" }, { "input": "wrongdoings", "output": "⠺⠗⠰⠛⠙⠕⠬⠎" }, { "input": "wronged", "output": "⠺⠗⠰⠛⠫" }, { "input": "wronger", "output": "⠺⠗⠰⠛⠻" }, { "input": "wrongest", "output": "⠺⠗⠰⠛⠑⠌" }, { "input": "wrongful", "output": "⠺⠗⠰⠛⠰⠇" }, { "input": "wrongfully", "output": "⠺⠗⠰⠛⠰⠇⠇⠽" }, { "input": "wrongfulness", "output": "⠺⠗⠰⠛⠰⠇⠰⠎" }, { "input": "wrongheaded", "output": "⠺⠗⠰⠛⠓⠂⠙⠫" }, { "input": "wrongheadedly", "output": "⠺⠗⠰⠛⠓⠂⠙⠫⠇⠽" }, { "input": "wrongheadedness", "output": "⠺⠗⠰⠛⠓⠂⠙⠫⠰⠎" }, { "input": "wronging", "output": "⠺⠗⠰⠛⠬" }, { "input": "wrongly", "output": "⠺⠗⠰⠛⠇⠽" }, { "input": "wrongness", "output": "⠺⠗⠰⠛⠰⠎" }, { "input": "wrongs", "output": "⠺⠗⠰⠛⠎" }, { "input": "wrote", "output": "⠺⠗⠕⠞⠑" }, { "input": "wroth", "output": "⠺⠗⠕⠹" }, { "input": "wrought", "output": "⠺⠗â â ³" }, { "input": "wrung", "output": "⠺⠗⠥â â ›" }, { "input": "wry", "output": "⠺⠗⠽" }, { "input": "wryer", "output": "⠺⠗⠽⠻" }, { "input": "wryest", "output": "⠺⠗⠽⠑⠌" }, { "input": "wryly", "output": "⠺⠗⠽⠇⠽" }, { "input": "wryness", "output": "⠺⠗⠽⠰⠎" }, { "input": "wuss", "output": "⠺⠥⠎⠎" }, { "input": "wusses", "output": "⠺⠥⠎⠎⠑⠎" }, { "input": "x", "output": "â °â ­" }, { "input": "xenon", "output": "⠭⠢⠕â " }, { "input": "xenophobia", "output": "⠭⠢⠕â â “⠕⠃⠊â " }, { "input": "xenophobic", "output": "⠭⠢⠕â â “⠕⠃⠊⠉" }, { "input": "xerographic", "output": "⠭⠻⠕⠛⠗â â â “â Šâ ‰" }, { "input": "xerography", "output": "⠭⠻⠕⠛⠗â â â “â ½" }, { "input": "xylem", "output": "⠭⠽⠇⠑â " }, { "input": "xylophone", "output": "⠭⠽⠇⠕â â “â â •" }, { "input": "xylophones", "output": "⠭⠽⠇⠕â â “â â •â Ž" }, { "input": "xylophonist", "output": "⠭⠽⠇⠕â â “â •â â Šâ Œ" }, { "input": "xylophonists", "output": "⠭⠽⠇⠕â â “â •â â Šâ Œâ Ž" }, { "input": "y", "output": "â °â ½" }, { "input": "yacht", "output": "â ½â â ¡â ž" }, { "input": "yachted", "output": "â ½â â ¡â žâ «" }, { "input": "yachting", "output": "â ½â â ¡â žâ ¬" }, { "input": "yachts", "output": "â ½â â ¡â žâ Ž" }, { "input": "yachtsman", "output": "â ½â â ¡â žâ Žâ â â " }, { "input": "yachtsmen", "output": "â ½â â ¡â žâ Žâ â ¢" }, { "input": "yack", "output": "â ½â â ‰â …" }, { "input": "yacked", "output": "â ½â â ‰â …â «" }, { "input": "yacking", "output": "â ½â â ‰â …â ¬" }, { "input": "yacks", "output": "â ½â â ‰â …â Ž" }, { "input": "yahoo", "output": "â ½â â “â •â •" }, { "input": "yahoos", "output": "â ½â â “â •â •â Ž" }, { "input": "yak", "output": "â ½â â …" }, { "input": "yakked", "output": "â ½â â …â …â «" }, { "input": "yakking", "output": "â ½â â …â …â ¬" }, { "input": "yaks", "output": "â ½â â …â Ž" }, { "input": "yam", "output": "â ½â â " }, { "input": "yammer", "output": "â ½â â â â »" }, { "input": "yammered", "output": "â ½â â â â »â «" }, { "input": "yammering", "output": "â ½â â â â »â ¬" }, { "input": "yammers", "output": "â ½â â â â »â Ž" }, { "input": "yams", "output": "â ½â â â Ž" }, { "input": "yank", "output": "â ½â â â …" }, { "input": "yanked", "output": "â ½â â â …â «" }, { "input": "yanking", "output": "â ½â â â …â ¬" }, { "input": "yanks", "output": "â ½â â â …â Ž" }, { "input": "yap", "output": "â ½â â " }, { "input": "yapped", "output": "â ½â â â â «" }, { "input": "yapping", "output": "â ½â â â â ¬" }, { "input": "yaps", "output": "â ½â â â Ž" }, { "input": "yard", "output": "⠽⠜⠙" }, { "input": "yardage", "output": "⠽⠜⠙â â ›â ‘" }, { "input": "yardages", "output": "⠽⠜⠙â â ›â ‘â Ž" }, { "input": "yardarm", "output": "⠽⠜⠙⠜â " }, { "input": "yardarms", "output": "⠽⠜⠙⠜â â Ž" }, { "input": "yards", "output": "⠽⠜⠙⠎" }, { "input": "yardstick", "output": "⠽⠜⠙⠌⠊⠉⠅" }, { "input": "yardsticks", "output": "⠽⠜⠙⠌⠊⠉⠅⠎" }, { "input": "yarmulke", "output": "⠽⠜â â ¥â ‡â …â ‘" }, { "input": "yarmulkes", "output": "⠽⠜â â ¥â ‡â …â ‘â Ž" }, { "input": "yarn", "output": "⠽⠜â " }, { "input": "yarns", "output": "⠽⠜â â Ž" }, { "input": "yaw", "output": "â ½â â º" }, { "input": "yawed", "output": "â ½â â ºâ «" }, { "input": "yawing", "output": "â ½â â ºâ ¬" }, { "input": "yawl", "output": "â ½â â ºâ ‡" }, { "input": "yawls", "output": "â ½â â ºâ ‡â Ž" }, { "input": "yawn", "output": "â ½â â ºâ " }, { "input": "yawned", "output": "â ½â â ºâ â «" }, { "input": "yawning", "output": "â ½â â ºâ â ¬" }, { "input": "yawns", "output": "â ½â â ºâ â Ž" }, { "input": "yaws", "output": "â ½â â ºâ Ž" }, { "input": "ye", "output": "⠽⠑" }, { "input": "yea", "output": "⠽⠑â " }, { "input": "yeah", "output": "⠽⠂⠓" }, { "input": "yeahs", "output": "⠽⠂⠓⠎" }, { "input": "year", "output": "⠽⠑⠜" }, { "input": "yearbook", "output": "⠽⠑⠜⠃⠕⠕⠅" }, { "input": "yearbooks", "output": "⠽⠑⠜⠃⠕⠕⠅⠎" }, { "input": "yearlies", "output": "⠽⠑⠜⠇⠊⠑⠎" }, { "input": "yearling", "output": "⠽⠑⠜⠇⠬" }, { "input": "yearlings", "output": "⠽⠑⠜⠇⠬⠎" }, { "input": "yearly", "output": "⠽⠑⠜⠇⠽" }, { "input": "yearn", "output": "⠽⠑⠜â " }, { "input": "yearned", "output": "⠽⠑⠜â â «" }, { "input": "yearning", "output": "⠽⠑⠜â â ¬" }, { "input": "yearnings", "output": "⠽⠑⠜â â ¬â Ž" }, { "input": "yearns", "output": "⠽⠑⠜â â Ž" }, { "input": "years", "output": "⠽⠑⠜⠎" }, { "input": "yeas", "output": "⠽⠂⠎" }, { "input": "yeast", "output": "⠽⠂⠌" }, { "input": "yeastier", "output": "⠽⠂⠌⠊⠻" }, { "input": "yeastiest", "output": "⠽⠂⠌⠊⠑⠌" }, { "input": "yeasts", "output": "⠽⠂⠌⠎" }, { "input": "yeasty", "output": "⠽⠂⠌⠽" }, { "input": "yell", "output": "⠽⠑⠇⠇" }, { "input": "yelled", "output": "⠽⠑⠇⠇⠫" }, { "input": "yelling", "output": "⠽⠑⠇⠇⠬" }, { "input": "yellow", "output": "⠽⠑⠇⠇⠪" }, { "input": "yellowed", "output": "⠽⠑⠇⠇⠪⠫" }, { "input": "yellower", "output": "⠽⠑⠇⠇⠪⠻" }, { "input": "yellowest", "output": "⠽⠑⠇⠇⠪⠑⠌" }, { "input": "yellowing", "output": "⠽⠑⠇⠇⠪⠬" }, { "input": "yellowish", "output": "⠽⠑⠇⠇⠪⠊⠩" }, { "input": "yellows", "output": "⠽⠑⠇⠇⠪⠎" }, { "input": "yells", "output": "⠽⠑⠇⠇⠎" }, { "input": "yelp", "output": "⠽⠑⠇â " }, { "input": "yelped", "output": "⠽⠑⠇â â «" }, { "input": "yelping", "output": "⠽⠑⠇â â ¬" }, { "input": "yelps", "output": "⠽⠑⠇â â Ž" }, { "input": "yen", "output": "⠽⠢" }, { "input": "yens", "output": "⠽⠢⠎" }, { "input": "yeoman", "output": "⠽⠑⠕â â â " }, { "input": "yeomen", "output": "⠽⠑⠕â â ¢" }, { "input": "yep", "output": "⠽⠑â " }, { "input": "yeps", "output": "⠽⠑â â Ž" }, { "input": "yes", "output": "⠽⠑⠎" }, { "input": "yeses", "output": "⠽⠑⠎⠑⠎" }, { "input": "yeshiva", "output": "⠽⠑⠩⠊⠧â " }, { "input": "yeshivah", "output": "⠽⠑⠩⠊⠧â â “" }, { "input": "yeshivahs", "output": "⠽⠑⠩⠊⠧â â “â Ž" }, { "input": "yeshivas", "output": "⠽⠑⠩⠊⠧â â Ž" }, { "input": "yeshivot", "output": "⠽⠑⠩⠊⠧⠕⠞" }, { "input": "yeshivoth", "output": "⠽⠑⠩⠊⠧⠕⠹" }, { "input": "yessed", "output": "⠽⠑⠎⠎⠫" }, { "input": "yessing", "output": "⠽⠑⠎⠎⠬" }, { "input": "yest", "output": "⠽⠑⠌" }, { "input": "yesterday", "output": "⠽⠑⠌⠻â â ™" }, { "input": "yesterdays", "output": "⠽⠑⠌⠻â â ™â Ž" }, { "input": "yesteryear", "output": "⠽⠑⠌⠻⠽⠑⠜" }, { "input": "yet", "output": "⠽⠑⠞" }, { "input": "yeti", "output": "⠽⠑⠞⠊" }, { "input": "yew", "output": "⠽⠑⠺" }, { "input": "yews", "output": "⠽⠑⠺⠎" }, { "input": "yield", "output": "⠽⠊⠑⠇⠙" }, { "input": "yielded", "output": "⠽⠊⠑⠇⠙⠫" }, { "input": "yielding", "output": "⠽⠊⠑⠇⠙⠬" }, { "input": "yieldings", "output": "⠽⠊⠑⠇⠙⠬⠎" }, { "input": "yields", "output": "⠽⠊⠑⠇⠙⠎" }, { "input": "yip", "output": "⠽⠊â " }, { "input": "yipped", "output": "⠽⠊â â â «" }, { "input": "yippee", "output": "⠽⠊â â â ‘â ‘" }, { "input": "yipping", "output": "⠽⠊â â â ¬" }, { "input": "yips", "output": "⠽⠊â â Ž" }, { "input": "yo", "output": "⠽⠕" }, { "input": "yock", "output": "⠽⠕⠉⠅" }, { "input": "yocks", "output": "⠽⠕⠉⠅⠎" }, { "input": "yodel", "output": "⠽⠕⠙⠑⠇" }, { "input": "yodeled", "output": "⠽⠕⠙⠑⠇⠫" }, { "input": "yodeler", "output": "⠽⠕⠙⠑⠇⠻" }, { "input": "yodelers", "output": "⠽⠕⠙⠑⠇⠻⠎" }, { "input": "yodeling", "output": "⠽⠕⠙⠑⠇⠬" }, { "input": "yodelled", "output": "⠽⠕⠙⠑⠇⠇⠫" }, { "input": "yodeller", "output": "⠽⠕⠙⠑⠇⠇⠻" }, { "input": "yodellers", "output": "⠽⠕⠙⠑⠇⠇⠻⠎" }, { "input": "yodelling", "output": "⠽⠕⠙⠑⠇⠇⠬" }, { "input": "yodels", "output": "⠽⠕⠙⠑⠇⠎" }, { "input": "yoga", "output": "⠽⠕⠛â " }, { "input": "yoghourt", "output": "⠽⠕⠛⠓⠳⠗⠞" }, { "input": "yoghourts", "output": "⠽⠕⠛⠓⠳⠗⠞⠎" }, { "input": "yoghurt", "output": "⠽⠕⠣⠥⠗⠞" }, { "input": "yoghurts", "output": "⠽⠕⠣⠥⠗⠞⠎" }, { "input": "yogi", "output": "⠽⠕⠛⠊" }, { "input": "yogin", "output": "⠽⠕⠛⠔" }, { "input": "yogins", "output": "⠽⠕⠛⠔⠎" }, { "input": "yogis", "output": "⠽⠕⠛⠊⠎" }, { "input": "yogurt", "output": "⠽⠕⠛⠥⠗⠞" }, { "input": "yogurts", "output": "⠽⠕⠛⠥⠗⠞⠎" }, { "input": "yoke", "output": "⠽⠕⠅⠑" }, { "input": "yoked", "output": "⠽⠕⠅⠫" }, { "input": "yokel", "output": "⠽⠕⠅⠑⠇" }, { "input": "yokels", "output": "⠽⠕⠅⠑⠇⠎" }, { "input": "yokes", "output": "⠽⠕⠅⠑⠎" }, { "input": "yoking", "output": "⠽⠕⠅⠬" }, { "input": "yolk", "output": "⠽⠕⠇⠅" }, { "input": "yolks", "output": "⠽⠕⠇⠅⠎" }, { "input": "yon", "output": "⠽⠕â " }, { "input": "yonder", "output": "⠽⠕â â ™â »" }, { "input": "yore", "output": "⠽⠕⠗⠑" }, { "input": "you", "output": "â ½" }, { "input": "young", "output": "â â ½" }, { "input": "younger", "output": "â â ½â »" }, { "input": "youngest", "output": "â â ½â ‘â Œ" }, { "input": "youngish", "output": "â â ½â Šâ ©" }, { "input": "youngster", "output": "â â ½â Œâ »" }, { "input": "youngsters", "output": "â â ½â Œâ »â Ž" }, { "input": "your", "output": "⠽⠗" }, { "input": "yours", "output": "⠽⠗⠎" }, { "input": "yourself", "output": "⠽⠗⠋" }, { "input": "yourselves", "output": "⠽⠗⠧⠎" }, { "input": "yous", "output": "⠽⠳⠎" }, { "input": "youth", "output": "⠽⠳⠹" }, { "input": "youthful", "output": "⠽⠳⠹⠰⠇" }, { "input": "youthfully", "output": "⠽⠳⠹⠰⠇⠇⠽" }, { "input": "youthfulness", "output": "⠽⠳⠹⠰⠇⠰⠎" }, { "input": "youths", "output": "⠽⠳⠹⠎" }, { "input": "yowl", "output": "⠽⠪⠇" }, { "input": "yowled", "output": "⠽⠪⠇⠫" }, { "input": "yowling", "output": "⠽⠪⠇⠬" }, { "input": "yowls", "output": "⠽⠪⠇⠎" }, { "input": "yttrium", "output": "⠽⠞⠞⠗⠊⠥â " }, { "input": "yucca", "output": "⠽⠥⠒â " }, { "input": "yuccas", "output": "⠽⠥⠒â â Ž" }, { "input": "yuck", "output": "⠽⠥⠉⠅" }, { "input": "yucked", "output": "⠽⠥⠉⠅⠫" }, { "input": "yuckier", "output": "⠽⠥⠉⠅⠊⠻" }, { "input": "yuckiest", "output": "⠽⠥⠉⠅⠊⠑⠌" }, { "input": "yucking", "output": "⠽⠥⠉⠅⠬" }, { "input": "yucks", "output": "⠽⠥⠉⠅⠎" }, { "input": "yucky", "output": "⠽⠥⠉⠅⠽" }, { "input": "yuk", "output": "⠽⠥⠅" }, { "input": "yukked", "output": "⠽⠥⠅⠅⠫" }, { "input": "yukking", "output": "⠽⠥⠅⠅⠬" }, { "input": "yuks", "output": "⠽⠥⠅⠎" }, { "input": "yule", "output": "⠽⠥⠇⠑" }, { "input": "yuletide", "output": "⠽⠥⠇⠑⠞⠊⠙⠑" }, { "input": "yum", "output": "⠽⠥â " }, { "input": "yummier", "output": "⠽⠥â â â Šâ »" }, { "input": "yummiest", "output": "⠽⠥â â â Šâ ‘â Œ" }, { "input": "yummy", "output": "⠽⠥â â â ½" }, { "input": "yup", "output": "⠽⠥â " }, { "input": "yuppie", "output": "⠽⠥â â â Šâ ‘" }, { "input": "yuppies", "output": "⠽⠥â â â Šâ ‘â Ž" }, { "input": "yuppy", "output": "⠽⠥â â â ½" }, { "input": "yups", "output": "⠽⠥â â Ž" }, { "input": "z", "output": "â °â µ" }, { "input": "zanier", "output": "â µâ â â Šâ »" }, { "input": "zanies", "output": "â µâ â â Šâ ‘â Ž" }, { "input": "zaniest", "output": "â µâ â â Šâ ‘â Œ" }, { "input": "zaniness", "output": "â µâ â â Šâ °â Ž" }, { "input": "zany", "output": "â µâ â â ½" }, { "input": "zap", "output": "â µâ â " }, { "input": "zapped", "output": "â µâ â â â «" }, { "input": "zapping", "output": "â µâ â â â ¬" }, { "input": "zaps", "output": "â µâ â â Ž" }, { "input": "zeal", "output": "⠵⠂⠇" }, { "input": "zealot", "output": "⠵⠂⠇⠕⠞" }, { "input": "zealots", "output": "⠵⠂⠇⠕⠞⠎" }, { "input": "zealous", "output": "⠵⠂⠇⠳⠎" }, { "input": "zealously", "output": "⠵⠂⠇⠳⠎⠇⠽" }, { "input": "zealousness", "output": "⠵⠂⠇⠳⠎⠰⠎" }, { "input": "zebra", "output": "⠵⠑⠃⠗â " }, { "input": "zebras", "output": "⠵⠑⠃⠗â â Ž" }, { "input": "zebu", "output": "⠵⠑⠃⠥" }, { "input": "zebus", "output": "⠵⠑⠃⠥⠎" }, { "input": "zed", "output": "⠵⠫" }, { "input": "zeds", "output": "⠵⠫⠎" }, { "input": "zenith", "output": "⠵⠢⠊⠹" }, { "input": "zeniths", "output": "⠵⠢⠊⠹⠎" }, { "input": "zephyr", "output": "⠵⠑â â “⠽⠗" }, { "input": "zephyrs", "output": "⠵⠑â â “⠽⠗⠎" }, { "input": "zeppelin", "output": "⠵⠑â â â ‘⠇⠔" }, { "input": "zeppelins", "output": "⠵⠑â â â ‘⠇⠔⠎" }, { "input": "zero", "output": "⠵⠻⠕" }, { "input": "zeroed", "output": "⠵⠻⠕⠫" }, { "input": "zeroes", "output": "⠵⠻⠕⠑⠎" }, { "input": "zeroing", "output": "⠵⠻⠕⠬" }, { "input": "zeros", "output": "⠵⠻⠕⠎" }, { "input": "zest", "output": "⠵⠑⠌" }, { "input": "zestful", "output": "⠵⠑⠌⠰⠇" }, { "input": "zestfully", "output": "⠵⠑⠌⠰⠇⠇⠽" }, { "input": "zests", "output": "⠵⠑⠌⠎" }, { "input": "zeta", "output": "⠵⠑⠞â " }, { "input": "zigzag", "output": "⠵⠊⠛⠵â â ›" }, { "input": "zigzagged", "output": "⠵⠊⠛⠵â â ¶â «" }, { "input": "zigzagging", "output": "⠵⠊⠛⠵â â ¶â ¬" }, { "input": "zigzags", "output": "⠵⠊⠛⠵â â ›â Ž" }, { "input": "zilch", "output": "⠵⠊⠇⠡" }, { "input": "zillion", "output": "⠵⠊⠇⠇⠊⠕â " }, { "input": "zillions", "output": "⠵⠊⠇⠇⠊⠕â â Ž" }, { "input": "zinc", "output": "⠵⠔⠉" }, { "input": "zinced", "output": "⠵⠔⠉⠫" }, { "input": "zincing", "output": "⠵⠔⠉⠬" }, { "input": "zincked", "output": "⠵⠔⠉⠅⠫" }, { "input": "zincking", "output": "⠵⠔⠉⠅⠬" }, { "input": "zincs", "output": "⠵⠔⠉⠎" }, { "input": "zing", "output": "⠵⠬" }, { "input": "zinged", "output": "⠵⠬⠫" }, { "input": "zinger", "output": "⠵⠬⠻" }, { "input": "zingers", "output": "⠵⠬⠻⠎" }, { "input": "zinging", "output": "⠵⠬⠬" }, { "input": "zings", "output": "⠵⠬⠎" }, { "input": "zinnia", "output": "⠵⠔â â Šâ " }, { "input": "zinnias", "output": "⠵⠔â â Šâ â Ž" }, { "input": "zip", "output": "⠵⠊â " }, { "input": "zipped", "output": "⠵⠊â â â «" }, { "input": "zipper", "output": "⠵⠊â â â »" }, { "input": "zippered", "output": "⠵⠊â â â »â «" }, { "input": "zippering", "output": "⠵⠊â â â »â ¬" }, { "input": "zippers", "output": "⠵⠊â â â »â Ž" }, { "input": "zippier", "output": "⠵⠊â â â Šâ »" }, { "input": "zippiest", "output": "⠵⠊â â â Šâ ‘â Œ" }, { "input": "zipping", "output": "⠵⠊â â â ¬" }, { "input": "zippy", "output": "⠵⠊â â â ½" }, { "input": "zips", "output": "⠵⠊â â Ž" }, { "input": "zircon", "output": "⠵⠊⠗⠉⠕â " }, { "input": "zirconium", "output": "⠵⠊⠗⠉⠕â â Šâ ¥â " }, { "input": "zircons", "output": "⠵⠊⠗⠉⠕â â Ž" }, { "input": "zit", "output": "⠵⠊⠞" }, { "input": "zither", "output": "⠵⠊⠮⠗" }, { "input": "zithers", "output": "⠵⠊⠮⠗⠎" }, { "input": "zits", "output": "⠵⠊⠞⠎" }, { "input": "zodiac", "output": "⠵⠕⠙⠊â â ‰" }, { "input": "zodiacal", "output": "⠵⠕⠙⠊â â ‰â â ‡" }, { "input": "zodiacs", "output": "⠵⠕⠙⠊â â ‰â Ž" }, { "input": "zombi", "output": "⠵⠕â â ƒâ Š" }, { "input": "zombie", "output": "⠵⠕â â ƒâ Šâ ‘" }, { "input": "zombies", "output": "⠵⠕â â ƒâ Šâ ‘â Ž" }, { "input": "zombis", "output": "⠵⠕â â ƒâ Šâ Ž" }, { "input": "zonal", "output": "⠵⠕â â â ‡" }, { "input": "zone", "output": "â µâ â •" }, { "input": "zoned", "output": "⠵⠕â â «" }, { "input": "zones", "output": "â µâ â •â Ž" }, { "input": "zoning", "output": "⠵⠕â â ¬" }, { "input": "zonked", "output": "⠵⠕â â …â «" }, { "input": "zoo", "output": "⠵⠕⠕" }, { "input": "zoological", "output": "⠵⠕⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "zoologist", "output": "⠵⠕⠕⠇⠕⠛⠊⠌" }, { "input": "zoologists", "output": "⠵⠕⠕⠇⠕⠛⠊⠌⠎" }, { "input": "zoology", "output": "⠵⠕⠕⠇⠕⠛⠽" }, { "input": "zoom", "output": "⠵⠕⠕â " }, { "input": "zoomed", "output": "⠵⠕⠕â â «" }, { "input": "zooming", "output": "⠵⠕⠕â â ¬" }, { "input": "zooms", "output": "⠵⠕⠕â â Ž" }, { "input": "zoos", "output": "⠵⠕⠕⠎" }, { "input": "zucchini", "output": "⠵⠥⠉⠡⠔⠊" }, { "input": "zucchinis", "output": "⠵⠥⠉⠡⠔⠊⠎" }, { "input": "zwieback", "output": "⠵⠺⠊⠑⠃â â ‰â …" }, { "input": "zygote", "output": "⠵⠽⠛⠕⠞⠑" }, { "input": "zygotes", "output": "⠵⠽⠛⠕⠞⠑⠎" }, { "input": "Ã…ngström", "output": "⠠⠘⠻â â ²â ²â ²â â ›â Œâ —⠠⠘⠻â â ˜â â " }, { "input": "éclair", "output": "⠠⠘⠻â â ˜â ‰â ‰â ‡â â Šâ —" }, { "input": "éclairs", "output": "⠠⠘⠻â â ˜â ‰â ‰â ‡â â Šâ —â Ž" }, { "input": "éclat", "output": "⠠⠘⠻â â ˜â ‰â ‰â ‡â â ž" }, { "input": "élan", "output": "⠠⠘⠻â â ˜â ‰â ‡â â " }, { "input": "émigré", "output": "⠠⠘⠻â â ˜â ‰â â Šâ ›â —⠠⠘⠻â â ˜â ‰" }, { "input": "émigrés", "output": "⠠⠘⠻â â ˜â ‰â â Šâ ›â —⠠⠘⠻â â ˜â ‰â Ž" }, { "input": "épée", "output": "⠠⠘⠻â â ˜â ‰â â  â ˜â »â â ˜â ‰â ‘" }, { "input": "épées", "output": "⠠⠘⠻â â ˜â ‰â â  â ˜â »â â ˜â ‰â ‘â Ž" }, { "input": "étude", "output": "⠠⠘⠻â â ˜â ‰â žâ ¥â ™â ‘" }, { "input": "études", "output": "⠠⠘⠻â â ˜â ‰â žâ ¥â ™â ‘â Ž" } ], "flags": { "outputUniBrl": true } } ] } liblouis-2.5.3/tests/harness/hu-hu-comp8_harness.txt0000664000175000017500000002342112161041534017430 00000000000000{ "tables": [ "unicode.dis", "hu-hu-comp8.ctb" ], "tests": [ { "data": [ { "input": "â â ™â¢ˆâ Žâ Žâ µâ ‘⠗⢾", "output": "adásszerű" }, { "input": "â â ™â¢ˆâ Žâ Žâ µâ¢·â â ‘â ž", "output": "adásszünet" }, { "input": "â â ™â¢ªâ Žâ Žâ µâ¢ˆâ â ‡â ", "output": "adósszámla" }, { "input": "â¡â ›â ½â â ›â •⠎⠎⠵⠑⠗⠛⢡â â ½", "output": "Agyagosszergény" }, { "input": "â â ›â ½â â ›â ›â ½â¢¾â —⢾⠊⠅⠑â ", "output": "agyaggyűrűiken" }, { "input": "â â ›â ½â •â â â ½â •â ", "output": "agyonnyom" }, { "comment": [ "this testcase testing all accented letters back translation" ], "input": "⢈⠗⠧⢌⠵⠞⢾⠗⢻⠞⢷⠅⢟⠗⠋⢬⠗⢪⠛⢡â ", "output": "árvíztűrÅ‘tükörfúrógép" }, { "comment": [ "this testcase containing a sentence with have normal characters and numbers, but testing back translation." ], "input": "⡠⠞⠑⠇⠑⠋⠕â â Žâ µâ¢ˆâ â •â â ’ ⠬⠫⠤⠡⠤⠣⠱⠫⠤⠣⠱⠫⠄", "output": "A telefonszámom: 06-1-256-256." }, { "input": "⡠⠋⢟⠇⠙⠗⠑â â ›â¢¡â Ž ⠻⠂⠱ ⠑⠗⢻⠎⠎⢡⠛⢾ ⠧⠕⠇⠞⠄", "output": "A földrengés 7,5 erÅ‘sségű volt." }, { "input": "⡞â â â¢ˆâ Ž â â¢¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ ⠓⠕⠛⠽ â â Š ⠧⢈⠗ ⠗⢈⠄", "output": "Tamás még nem tudta, hogy mi vár rá." }, { "input": "⠈⡞â â â¢ˆâ Ž â â¢¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ ⠓⠕⠛⠽ â â Š ⠧⢈⠗ ⠗⢈⠄⠈", "output": "\"Tamás még nem tudta, hogy mi vár rá.\"" }, { "input": "⡊ ⠙⠕â â  â ž â â • ⠺⠓⠽ â “â â â â ‘â â ‘â ™ â žâ “â Šâ Ž â â —⠕⠃⠇⠑â â „", "output": "I don't no why happened this problem." }, { "input": "â¡â µ â ¡â¡” â â â —â â ›â —â â ‹â ¥â Ž â â ‡â â â šâ¢ˆâ  â  â …â ‘â ™â §â ‘â µâ â¢¡â â ½ ⠊⠛⢡â â ½â ƒâ ‘ ⠧⠑⠓⠑⠞⢻⠄", "output": "Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘." }, { "input": "â ¤ â¡ â Žâ Šâ §â â žâ â ›â Š â …â â —â â §â¢ˆâ â¢¬â žâ •â â ‚ â â ‘â ›â ½â §â ‘â  â §â â ›â ½ â¢Ÿâ žâ §â ‘â  â â¢¡â —⠋⢟⠇⠙â â ½â Šâ —â ‘ â Šâ â â ‘â â „ ⡑⠛⠽ ⡋⠕⠗⠙⠄ ⡙⠑ â â Š â â ‘â  â â ‘⠛⠽⢷â â … â â â ›â¢ˆâ §â â ‡â „ â ¤ ⡑⠇⢻⠧⠑⠞⠞⠑ â â µ â Šâ —â â žâ žâ¢ˆâ —⠉⢈⠚⢈⠞⠂ ⢡⠎ ⢈⠞â â ™â •â žâ ž â¡â â Žâ µâ Šâ ‹â â â … ⠑⠛⠽ â â â ›â •â ‡ â ‹â •â â žâ •â žâ „ â ¤ â¡“â  â §â Šâ Žâ Žâ µâ â šâ¢Ÿâ â ‚ â …â ‘â —â ‘â Žâ Žâ ‘â  â â ‘â › â  â §â â Žâ¢¬â žâ¢ˆâ ‡â ‡â •â â¢ˆâ Ž â â ‘⠇⠇⠑⠞⠞ â  â¡›â —â â â ™ ⡓⠕⠞⠑⠇⠃â â â „", "output": "- A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban." }, { "input": "⡠⠧⢡⠞⠑⠇⢈⠗ â ¡ ⡘⠄", "output": "A vételár 1 €." }, { "input": "⡙⠑ â â ‘â …â ‘â  â â â ›â ½â •â  â â ‘⠓⠑⠵⠑â â —â ‘ â ‘â Žâ Šâ … â  â ‡â ‘â §â¢¡â ‡â¢Œâ —â¢ˆâ Ž â ¦â â¢¡â µâ ™ â ‘â ‡ â  â “â ‘â ‡â ½â ‘â Žâ¢Œâ —â¢ˆâ Žâ Š ⠓⠊⠃⢈⠅â â ž ⢡⠎ â  â ‰â Žâ¢¬â â ½â  ⢌⠗⢈⠎⠕â â â žâ ´â „", "output": "De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat)." }, { "input": "⡠⠅⠊⢈⠇⠇⢌⠞⢈⠎ â â ‘â ›â â ½â Šâ žâ¢ªâ šâ¢ˆâ  â šâ ‘â ‡â ‘â  â §â •â ‡â ž â â µ â¡â¡§â¡›â¡½â¡•⡎⡵ â ‘â ‡â â¢Ÿâ …â ‘â „", "output": "A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke." }, { "input": "â¡ â â •â â žâ •â Ž ⠊⠙⢻ ⠡⠡⠒⠹⠱ â â ‘⠗⠉⠄", "output": "A pontos idÅ‘ 11:45 perc." }, { "input": "⠠⠔⡠⠅⠊â â ™â¢ˆâ Ž ⢬⠚⠙⠕â â Žâ¢ˆâ ›â â Šâ „", "output": "•A kiadás újdonságai." }, { "input": "⡠⠓⠥⡸⠇⠊⠎⠞ ⠋⢈⠚⠇ â â ‘â  â ‡â¢¡â žâ ‘â µâ Šâ …â „", "output": "A hu_list fájl nem létezik." }, { "input": "â¡â µ â ‘â ¤â â â Šâ ‡ ⠉⢌â â ‘â â ’ â â …â â —â â Šâ¡œâ â …â â —â â Šâ „⠓⠥⠄", "output": "Az e-mail címem: akarmi@akarmi.hu." } ], "flags": { "outputUniBrl": true, "testmode": "backtranslate" } }, { "data": [ { "input": "adásszerű", "output": "â â ™â¢ˆâ Žâ Žâ µâ ‘⠗⢾" }, { "input": "adásszünet", "output": "â â ™â¢ˆâ Žâ Žâ µâ¢·â â ‘â ž" }, { "input": "adósszámla", "output": "â â ™â¢ªâ Žâ Žâ µâ¢ˆâ â ‡â " }, { "input": "Agyagosszergény", "output": "â¡â ›â ½â â ›â •⠎⠎⠵⠑⠗⠛⢡â â ½" }, { "input": "agyaggyűrűiken", "output": "â â ›â ½â â ›â ›â ½â¢¾â —⢾⠊⠅⠑â " }, { "input": "agyonnyom", "output": "â â ›â ½â •â â â ½â •â " }, { "comment": [ "this testcase testing all accented letters" ], "input": "árvíztűrÅ‘tükörfúrógép", "output": "⢈⠗⠧⢌⠵⠞⢾⠗⢻⠞⢷⠅⢟⠗⠋⢬⠗⢪⠛⢡â " }, { "comment": [ "this testcase containing a sentence with have normal characters and numbers." ], "input": "A telefonszámom: 06-1-256-256.", "output": "⡠⠞⠑⠇⠑⠋⠕â â Žâ µâ¢ˆâ â •â â ’ ⠬⠫⠤⠡⠤⠣⠱⠫⠤⠣⠱⠫⠄" }, { "input": "A földrengés 7,5 erÅ‘sségű volt.", "output": "⡠⠋⢟⠇⠙⠗⠑â â ›â¢¡â Ž ⠻⠂⠱ ⠑⠗⢻⠎⠎⢡⠛⢾ ⠧⠕⠇⠞⠄" }, { "input": "Tamás még nem tudta, hogy mi vár rá.", "output": "⡞â â â¢ˆâ Ž â â¢¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ ⠓⠕⠛⠽ â â Š ⠧⢈⠗ ⠗⢈⠄" }, { "input": "\"Tamás még nem tudta, hogy mi vár rá.\"", "output": "⠈⡞â â â¢ˆâ Ž â â¢¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ ⠓⠕⠛⠽ â â Š ⠧⢈⠗ ⠗⢈⠄⠈" }, { "input": "I don't no why happened this problem.", "output": "⡊ ⠙⠕â â  â ž â â • ⠺⠓⠽ â “â â â â ‘â â ‘â ™ â žâ “â Šâ Ž â â —⠕⠃⠇⠑â â „" }, { "input": "Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘.", "output": "â¡â µ â ¡â¡” â â â —â â ›â —â â ‹â ¥â Ž â â ‡â â â šâ¢ˆâ  â  â …â ‘â ™â §â ‘â µâ â¢¡â â ½ ⠊⠛⢡â â ½â ƒâ ‘ ⠧⠑⠓⠑⠞⢻⠄" }, { "input": "- A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban.", "output": "â ¤ â¡ â Žâ Šâ §â â žâ â ›â Š â …â â —â â §â¢ˆâ â¢¬â žâ •â â ‚ â â ‘â ›â ½â §â ‘â  â §â â ›â ½ â¢Ÿâ žâ §â ‘â  â â¢¡â —⠋⢟⠇⠙â â ½â Šâ —â ‘ â Šâ â â ‘â â „ ⡑⠛⠽ ⡋⠕⠗⠙⠄ ⡙⠑ â â Š â â ‘â  â â ‘⠛⠽⢷â â … â â â ›â¢ˆâ §â â ‡â „ â ¤ ⡑⠇⢻⠧⠑⠞⠞⠑ â â µ â Šâ —â â žâ žâ¢ˆâ —⠉⢈⠚⢈⠞⠂ ⢡⠎ ⢈⠞â â ™â •â žâ ž â¡â â Žâ µâ Šâ ‹â â â … ⠑⠛⠽ â â â ›â •â ‡ â ‹â •â â žâ •â žâ „ â ¤ â¡“â  â §â Šâ Žâ Žâ µâ â šâ¢Ÿâ â ‚ â …â ‘â —â ‘â Žâ Žâ ‘â  â â ‘â › â  â §â â Žâ¢¬â žâ¢ˆâ ‡â ‡â •â â¢ˆâ Ž â â ‘⠇⠇⠑⠞⠞ â  â¡›â —â â â ™ ⡓⠕⠞⠑⠇⠃â â â „" }, { "input": "A vételár 1 €.", "output": "⡠⠧⢡⠞⠑⠇⢈⠗ â ¡ ⡘⠄" }, { "input": "De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat).", "output": "⡙⠑ â â ‘â …â ‘â  â â â ›â ½â •â  â â ‘⠓⠑⠵⠑â â —â ‘ â ‘â Žâ Šâ … â  â ‡â ‘â §â¢¡â ‡â¢Œâ —â¢ˆâ Ž â ¦â â¢¡â µâ ™ â ‘â ‡ â  â “â ‘â ‡â ½â ‘â Žâ¢Œâ —â¢ˆâ Žâ Š ⠓⠊⠃⢈⠅â â ž ⢡⠎ â  â ‰â Žâ¢¬â â ½â  ⢌⠗⢈⠎⠕â â â žâ ´â „" }, { "input": "A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke.", "output": "⡠⠅⠊⢈⠇⠇⢌⠞⢈⠎ â â ‘â ›â â ½â Šâ žâ¢ªâ šâ¢ˆâ  â šâ ‘â ‡â ‘â  â §â •â ‡â ž â â µ â¡â¡§â¡›â¡½â¡•⡎⡵ â ‘â ‡â â¢Ÿâ …â ‘â „" }, { "input": "A pontos idÅ‘ 11:45 perc.", "output": "â¡ â â •â â žâ •â Ž ⠊⠙⢻ ⠡⠡⠒⠹⠱ â â ‘⠗⠉⠄" }, { "input": "•A kiadás újdonságai.", "output": "⠠⠔⡠⠅⠊â â ™â¢ˆâ Ž ⢬⠚⠙⠕â â Žâ¢ˆâ ›â â Šâ „" }, { "input": "A hu_list fájl nem létezik.", "output": "⡠⠓⠥⡸⠇⠊⠎⠞ ⠋⢈⠚⠇ â â ‘â  â ‡â¢¡â žâ ‘â µâ Šâ …â „" }, { "input": "Az e-mail címem: akarmi@akarmi.hu.", "output": "â¡â µ â ‘â ¤â â â Šâ ‡ ⠉⢌â â ‘â â ’ â â …â â —â â Šâ¡œâ â …â â —â â Šâ „⠓⠥⠄" } ], "flags": { "outputUniBrl": true } } ] }liblouis-2.5.3/tests/harness/en-us-g2-dictionary_harness.txt0000664000175000017500003101512512161041534021064 00000000000000{ "tables": [ "unicode.dis", "en-us-g2.ctb" ], "tests": [ { "data": [ { "input": "AA's", "output": "â  â  â â â „â Ž" }, { "input": "AB's", "output": "â °â  â  â â ƒâ „â Ž" }, { "input": "ABM's", "output": "â  â  â â ƒâ â „â Ž" }, { "input": "AC's", "output": "â °â  â  â â ‰â „â Ž" }, { "input": "ACTH's", "output": "â  â  â â ‰â ¹â „â Ž" }, { "input": "AD's", "output": "â  â  â â ™â „â Ž" }, { "input": "ADP's", "output": "â  â  â â ™â â „â Ž" }, { "input": "AI's", "output": "â  â  â â Šâ „â Ž" }, { "input": "AIDS's", "output": "â  â  â â Šâ ™â Žâ „â Ž" }, { "input": "AM's", "output": "â  â  â â â „â Ž" }, { "input": "ASCII's", "output": "â  â  â â Žâ ‰â Šâ Šâ „â Ž" }, { "input": "ASL's", "output": "â  â  â â Žâ ‡â „â Ž" }, { "input": "ATM's", "output": "â  â  â â žâ â „â Ž" }, { "input": "ATP's", "output": "â  â  â â žâ â „â Ž" }, { "input": "AWOL's", "output": "â  â  â â ºâ •⠇⠄⠎" }, { "input": "AZ's", "output": "â  â  â â µâ „â Ž" }, { "input": "AZT's", "output": "â  â  â â µâ žâ „â Ž" }, { "input": "BA's", "output": "â  â  â ƒâ â „â Ž" }, { "input": "BASIC's", "output": "â  â  â ƒâ â Žâ Šâ ‰â „â Ž" }, { "input": "BB's", "output": "⠠⠠⠃⠃⠄⠎" }, { "input": "BC's", "output": "⠠⠠⠃⠉⠄⠎" }, { "input": "BLT's", "output": "⠠⠠⠃⠇⠞⠄⠎" }, { "input": "BM's", "output": "â  â  â ƒâ â „â Ž" }, { "input": "BS's", "output": "⠠⠠⠃⠎⠄⠎" }, { "input": "CAD's", "output": "â  â  â ‰â â ™â „â Ž" }, { "input": "CBC's", "output": "⠠⠠⠉⠃⠉⠄⠎" }, { "input": "CD's", "output": "⠰⠠⠠⠉⠙⠄⠎" }, { "input": "CEO's", "output": "⠠⠠⠉⠑⠕⠄⠎" }, { "input": "CFC's", "output": "⠠⠠⠉⠋⠉⠄⠎" }, { "input": "CIA's", "output": "⠠⠠⠉⠊â â „â Ž" }, { "input": "CNS's", "output": "â  â  â ‰â â Žâ „â Ž" }, { "input": "CO's", "output": "⠠⠠⠉⠕⠄⠎" }, { "input": "COBOL's", "output": "⠠⠠⠉⠕⠃⠕⠇⠄⠎" }, { "input": "CPA's", "output": "â  â  â ‰â â â „â Ž" }, { "input": "CPI's", "output": "â  â  â ‰â â Šâ „â Ž" }, { "input": "CPR's", "output": "â  â  â ‰â â —â „â Ž" }, { "input": "CPU's", "output": "â  â  â ‰â â ¥â „â Ž" }, { "input": "CRT's", "output": "⠠⠠⠉⠗⠞⠄⠎" }, { "input": "CST's", "output": "⠠⠠⠉⠎⠞⠄⠎" }, { "input": "CT's", "output": "⠠⠠⠉⠞⠄⠎" }, { "input": "DA's", "output": "â  â  â ™â â „â Ž" }, { "input": "DAT's", "output": "â  â  â ™â â žâ „â Ž" }, { "input": "DBMS's", "output": "⠠⠠⠙⠃â â Žâ „â Ž" }, { "input": "DC's", "output": "⠠⠠⠙⠉⠄⠎" }, { "input": "DD's", "output": "⠠⠠⠙⠙⠄⠎" }, { "input": "DDS's", "output": "⠠⠠⠙⠙⠎⠄⠎" }, { "input": "DMD's", "output": "â  â  â ™â â ™â „â Ž" }, { "input": "DNA's", "output": "â  â  â ™â â â „â Ž" }, { "input": "DOS's", "output": "⠠⠠⠙⠕⠎⠄⠎" }, { "input": "DP's", "output": "â  â  â ™â â „â Ž" }, { "input": "ECG's", "output": "⠠⠠⠑⠉⠛⠄⠎" }, { "input": "EDP's", "output": "â  â  â «â â „â Ž" }, { "input": "EEC's", "output": "⠠⠠⠑⠑⠉⠄⠎" }, { "input": "EEG's", "output": "⠠⠠⠑⠑⠛⠄⠎" }, { "input": "EKG's", "output": "⠠⠠⠑⠅⠛⠄⠎" }, { "input": "ELF's", "output": "⠠⠠⠑⠇⠋⠄⠎" }, { "input": "ENE's", "output": "⠠⠠⠢⠑⠄⠎" }, { "input": "EPA's", "output": "â  â  â ‘â â â „â Ž" }, { "input": "ESE's", "output": "â  â  â ‘â Žâ ‘â „â Ž" }, { "input": "ESP's", "output": "â  â  â ‘â Žâ â „â Ž" }, { "input": "EST's", "output": "â  â  â ‘â Žâ žâ „â Ž" }, { "input": "FBI's", "output": "⠠⠠⠋⠃⠊⠄⠎" }, { "input": "FDIC's", "output": "⠠⠠⠋⠙⠊⠉⠄⠎" }, { "input": "FHA's", "output": "â  â  â ‹â “â â „â Ž" }, { "input": "FICA's", "output": "â  â  â ‹â Šâ ‰â â „â Ž" }, { "input": "FM's", "output": "â  â  â ‹â â „â Ž" }, { "input": "FORTRAN's", "output": "â  â  â ¿â žâ —â â â „â Ž" }, { "input": "GATT's", "output": "â  â  â ›â â žâ žâ „â Ž" }, { "input": "GB's", "output": "⠠⠠⠛⠃⠄⠎" }, { "input": "GDP's", "output": "⠠⠠⠛⠙â â „â Ž" }, { "input": "GHQ's", "output": "⠠⠠⠛⠓⠟⠄⠎" }, { "input": "GMT's", "output": "â  â  â ›â â žâ „â Ž" }, { "input": "GNP's", "output": "â  â  â ›â â â „â Ž" }, { "input": "GOP's", "output": "⠠⠠⠛⠕â â „â Ž" }, { "input": "GP's", "output": "â  â  â ›â â „â Ž" }, { "input": "GUI's", "output": "⠠⠠⠛⠥⠊⠄⠎" }, { "input": "HF's", "output": "â  â  â “â ‹â „â Ž" }, { "input": "HIV's", "output": "â  â  â “â Šâ §â „â Ž" }, { "input": "HMO's", "output": "â  â  â “â â •â „â Ž" }, { "input": "HP's", "output": "â  â  â “â â „â Ž" }, { "input": "HQ's", "output": "â  â  â “â Ÿâ „â Ž" }, { "input": "HTML's", "output": "â  â  â “â žâ â ‡â „â Ž" }, { "input": "HUD's", "output": "⠠⠠⠓⠥⠙⠄⠎" }, { "input": "ICBM's", "output": "⠠⠠⠊⠉⠃â â „â Ž" }, { "input": "ID's", "output": "⠠⠠⠊⠙⠄⠎" }, { "input": "IMF's", "output": "â  â  â Šâ â ‹â „â Ž" }, { "input": "IOU's", "output": "⠠⠠⠊⠳⠄⠎" }, { "input": "IQ's", "output": "â  â  â Šâ Ÿâ „â Ž" }, { "input": "IRA's", "output": "â  â  â Šâ —â â „â Ž" }, { "input": "IRS's", "output": "â  â  â Šâ —â Žâ „â Ž" }, { "input": "IV's", "output": "â  â  â Šâ §â „â Ž" }, { "input": "KB's", "output": "⠠⠠⠅⠃⠄⠎" }, { "input": "KKK's", "output": "â  â  â …â …â …â „â Ž" }, { "input": "LAN's", "output": "â  â  â ‡â â â „â Ž" }, { "input": "LCD's", "output": "⠠⠠⠇⠉⠙⠄⠎" }, { "input": "LED's", "output": "⠠⠠⠇⠫⠄⠎" }, { "input": "LLB's", "output": "⠠⠠⠇⠇⠃⠄⠎" }, { "input": "LLD's", "output": "⠠⠠⠇⠇⠙⠄⠎" }, { "input": "LPN's", "output": "â  â  â ‡â â â „â Ž" }, { "input": "LSD's", "output": "⠠⠠⠇⠎⠙⠄⠎" }, { "input": "MA's", "output": "â  â  â â â „â Ž" }, { "input": "MB's", "output": "â  â  â â ƒâ „â Ž" }, { "input": "MBA's", "output": "â  â  â â ƒâ â „â Ž" }, { "input": "MD's", "output": "â  â  â â ™â „â Ž" }, { "input": "MFA's", "output": "â  â  â â ‹â â „â Ž" }, { "input": "MI's", "output": "â  â  â â Šâ „â Ž" }, { "input": "MIDI's", "output": "â  â  â â Šâ ™â Šâ „â Ž" }, { "input": "MP's", "output": "â  â  â â â „â Ž" }, { "input": "MRI's", "output": "â  â  â â —â Šâ „â Ž" }, { "input": "MS's", "output": "â  â  â â Žâ „â Ž" }, { "input": "MSG's", "output": "â  â  â â Žâ ›â „â Ž" }, { "input": "MST's", "output": "â  â  â â Žâ žâ „â Ž" }, { "input": "MT's", "output": "â  â  â â žâ „â Ž" }, { "input": "MVP's", "output": "â  â  â â §â â „â Ž" }, { "input": "NASA's", "output": "â  â  â â â Žâ â „â Ž" }, { "input": "NASDAQ's", "output": "â  â  â â â Žâ ™â â Ÿâ „â Ž" }, { "input": "NATO's", "output": "â  â  â â â žâ •â „â Ž" }, { "input": "NE's", "output": "â  â  â â ‘â „â Ž" }, { "input": "NW's", "output": "â  â  â â ºâ „â Ž" }, { "input": "OAS's", "output": "â  â  â •â â Žâ „â Ž" }, { "input": "OD's", "output": "⠠⠠⠕⠙⠄⠎" }, { "input": "OMB's", "output": "â  â  â •â â ƒâ „â Ž" }, { "input": "OPEC's", "output": "â  â  â •â â ‘⠉⠄⠎" }, { "input": "OS's", "output": "â  â  â •â Žâ „â Ž" }, { "input": "OSHA's", "output": "â  â  â •â ©â â „â Ž" }, { "input": "PA's", "output": "â  â  â â â „â Ž" }, { "input": "PAC's", "output": "â  â  â â â ‰â „â Ž" }, { "input": "PBS's", "output": "â  â  â â ƒâ Žâ „â Ž" }, { "input": "PC's", "output": "â  â  â â ‰â „â Ž" }, { "input": "PCP's", "output": "â  â  â â ‰â â „â Ž" }, { "input": "PET's", "output": "â  â  â â ‘â žâ „â Ž" }, { "input": "PM's", "output": "â  â  â â â „â Ž" }, { "input": "PMS's", "output": "â  â  â â â Žâ „â Ž" }, { "input": "POW's", "output": "â  â  â â •⠺⠄⠎" }, { "input": "PRC's", "output": "â  â  â â —⠉⠄⠎" }, { "input": "PS's", "output": "â  â  â â Žâ „â Ž" }, { "input": "PST's", "output": "â  â  â â Žâ žâ „â Ž" }, { "input": "PVC's", "output": "â  â  â â §â ‰â „â Ž" }, { "input": "RAF's", "output": "â  â  â —â â ‹â „â Ž" }, { "input": "RAM's", "output": "â  â  â —â â â „â Ž" }, { "input": "REM's", "output": "â  â  â —â ‘â â „â Ž" }, { "input": "RN's", "output": "â  â  â —â â „â Ž" }, { "input": "RNA's", "output": "â  â  â —â â â „â Ž" }, { "input": "ROM's", "output": "â  â  â —â •â â „â Ž" }, { "input": "ROTC's", "output": "⠠⠠⠗⠕⠞⠉⠄⠎" }, { "input": "RV's", "output": "â  â  â —â §â „â Ž" }, { "input": "SALT's", "output": "â  â  â Žâ â ‡â žâ „â Ž" }, { "input": "SAM's", "output": "â  â  â Žâ â â „â Ž" }, { "input": "SC's", "output": "⠠⠠⠎⠉⠄⠎" }, { "input": "SCSI's", "output": "⠠⠠⠎⠉⠎⠊⠄⠎" }, { "input": "SE's", "output": "â  â  â Žâ ‘â „â Ž" }, { "input": "SGML's", "output": "â  â  â Žâ ›â â ‡â „â Ž" }, { "input": "SIDS's", "output": "⠠⠠⠎⠊⠙⠎⠄⠎" }, { "input": "SOB's", "output": "⠠⠠⠎⠕⠃⠄⠎" }, { "input": "SOP's", "output": "â  â  â Žâ •â â „â Ž" }, { "input": "SOS's", "output": "â  â  â Žâ •â Žâ „â Ž" }, { "input": "SSE's", "output": "â  â  â Žâ Žâ ‘â „â Ž" }, { "input": "SSW's", "output": "⠠⠠⠎⠎⠺⠄⠎" }, { "input": "SW's", "output": "⠠⠠⠎⠺⠄⠎" }, { "input": "TB's", "output": "⠠⠠⠞⠃⠄⠎" }, { "input": "TKO's", "output": "â  â  â žâ …â •â „â Ž" }, { "input": "TLC's", "output": "⠠⠠⠞⠇⠉⠄⠎" }, { "input": "TNT's", "output": "â  â  â žâ â žâ „â Ž" }, { "input": "TV's", "output": "â  â  â žâ §â „â Ž" }, { "input": "UFO's", "output": "⠠⠠⠥⠋⠕⠄⠎" }, { "input": "UHF's", "output": "⠠⠠⠥⠓⠋⠄⠎" }, { "input": "UK's", "output": "⠠⠠⠥⠅⠄⠎" }, { "input": "UN's", "output": "â  â  â ¥â â „â Ž" }, { "input": "UNESCO's", "output": "â  â  â ¥â â ‘⠎⠉⠕⠄⠎" }, { "input": "UNICEF's", "output": "â  â  â ¥â â Šâ ‰â ‘â ‹â „â Ž" }, { "input": "UNIX's", "output": "â  â  â ¥â â Šâ ­â „â Ž" }, { "input": "US's", "output": "⠠⠠⠥⠎⠄⠎" }, { "input": "USA's", "output": "⠠⠠⠥⠎â â „â Ž" }, { "input": "USSR's", "output": "⠠⠠⠥⠎⠎⠗⠄⠎" }, { "input": "UT's", "output": "⠠⠠⠥⠞⠄⠎" }, { "input": "UV's", "output": "⠠⠠⠥⠧⠄⠎" }, { "input": "VAT's", "output": "â  â  â §â â žâ „â Ž" }, { "input": "VCR's", "output": "⠠⠠⠧⠉⠗⠄⠎" }, { "input": "VD's", "output": "⠠⠠⠧⠙⠄⠎" }, { "input": "VFW's", "output": "⠠⠠⠧⠋⠺⠄⠎" }, { "input": "VHF's", "output": "â  â  â §â “â ‹â „â Ž" }, { "input": "VI's", "output": "â  â  â §â Šâ „â Ž" }, { "input": "VIP's", "output": "â  â  â §â Šâ â „â Ž" }, { "input": "VLF's", "output": "⠠⠠⠧⠇⠋⠄⠎" }, { "input": "WASP's", "output": "â  â  â ºâ â Žâ â „â Ž" }, { "input": "WATS's", "output": "â  â  â ºâ â žâ Žâ „â Ž" }, { "input": "WHO's", "output": "⠠⠠⠱⠕⠄⠎" }, { "input": "WNW's", "output": "â  â  â ºâ â ºâ „â Ž" }, { "input": "WSW's", "output": "⠠⠠⠺⠎⠺⠄⠎" }, { "input": "WWW's", "output": "⠠⠠⠺⠺⠺⠄⠎" }, { "input": "XL's", "output": "⠠⠠⠭⠇⠄⠎" }, { "input": "a", "output": "â " }, { "input": "aardvark", "output": "â â œâ ™â §â œâ …" }, { "input": "aardvark's", "output": "â â œâ ™â §â œâ …â „â Ž" }, { "input": "aardvarks", "output": "â â œâ ™â §â œâ …â Ž" }, { "input": "aback", "output": "â â ƒâ â ‰â …" }, { "input": "abacus", "output": "â â ƒâ â ‰â ¥â Ž" }, { "input": "abacus's", "output": "â â ƒâ â ‰â ¥â Žâ „â Ž" }, { "input": "abacuses", "output": "â â ƒâ â ‰â ¥â Žâ ‘â Ž" }, { "input": "abaft", "output": "â â ƒâ â ‹â ž" }, { "input": "abalone", "output": "â â ƒâ â ‡â •â â ‘" }, { "input": "abalone's", "output": "â â ƒâ â ‡â •â â ‘â „â Ž" }, { "input": "abalones", "output": "â â ƒâ â ‡â â •â Ž" }, { "input": "abandon", "output": "â â ƒâ ¯â •â " }, { "input": "abandoned", "output": "â â ƒâ ¯â •â â «" }, { "input": "abandoning", "output": "â â ƒâ ¯â •â â Œ" }, { "input": "abandonment", "output": "â â ƒâ ¯â •â â °â ž" }, { "input": "abandonment's", "output": "â â ƒâ ¯â •â â °â žâ „â Ž" }, { "input": "abandons", "output": "â â ƒâ ¯â •â â Ž" }, { "input": "abase", "output": "â â ƒâ â Žâ ‘" }, { "input": "abased", "output": "â â ƒâ â Žâ «" }, { "input": "abasement", "output": "â â ƒâ â Žâ ‘â °â ž" }, { "input": "abasement's", "output": "â â ƒâ â Žâ ‘â °â žâ „â Ž" }, { "input": "abases", "output": "â â ƒâ â Žâ ‘â Ž" }, { "input": "abash", "output": "â â ƒâ â ©" }, { "input": "abashed", "output": "â â ƒâ â ©â «" }, { "input": "abashedly", "output": "â â ƒâ â ©â «â ‡â ½" }, { "input": "abashes", "output": "â â ƒâ â ©â ‘â Ž" }, { "input": "abashing", "output": "â â ƒâ â ©â Œ" }, { "input": "abashment", "output": "â â ƒâ â ©â °â ž" }, { "input": "abashment's", "output": "â â ƒâ â ©â °â žâ „â Ž" }, { "input": "abasing", "output": "â â ƒâ â Žâ Œ" }, { "input": "abate", "output": "â â ƒâ â žâ ‘" }, { "input": "abated", "output": "â â ƒâ â žâ «" }, { "input": "abatement", "output": "â â ƒâ â žâ ‘â °â ž" }, { "input": "abatement's", "output": "â â ƒâ â žâ ‘â °â žâ „â Ž" }, { "input": "abates", "output": "â â ƒâ â žâ ‘â Ž" }, { "input": "abating", "output": "â â ƒâ â žâ Œ" }, { "input": "abattoir", "output": "â â ƒâ â žâ žâ •â Šâ —" }, { "input": "abattoir's", "output": "â â ƒâ â žâ žâ •â Šâ —â „â Ž" }, { "input": "abattoirs", "output": "â â ƒâ â žâ žâ •â Šâ —â Ž" }, { "input": "abbess", "output": "â â †â ‘â Žâ Ž" }, { "input": "abbess's", "output": "â â †â ‘â Žâ Žâ „â Ž" }, { "input": "abbesses", "output": "â â †â ‘â Žâ Žâ ‘â Ž" }, { "input": "abbey", "output": "â â †â ‘â ½" }, { "input": "abbey's", "output": "â â †â ‘⠽⠄⠎" }, { "input": "abbeys", "output": "â â †â ‘⠽⠎" }, { "input": "abbot", "output": "â â †â •â ž" }, { "input": "abbot's", "output": "â â †â •â žâ „â Ž" }, { "input": "abbots", "output": "â â †â •â žâ Ž" }, { "input": "abbreviate", "output": "â â †â —â ‘â §â Šâ â žâ ‘" }, { "input": "abbreviated", "output": "â â †â —â ‘â §â Šâ â žâ «" }, { "input": "abbreviates", "output": "â â †â —â ‘â §â Šâ â žâ ‘â Ž" }, { "input": "abbreviating", "output": "â â †â —â ‘â §â Šâ â žâ Œ" }, { "input": "abbreviation", "output": "â â †â —â ‘â §â Šâ  â " }, { "input": "abbreviation's", "output": "â â †â —â ‘â §â Šâ  â â „â Ž" }, { "input": "abbreviations", "output": "â â †â —â ‘â §â Šâ  â â Ž" }, { "input": "abdicate", "output": "â â ƒâ ™â Šâ ‰â â žâ ‘" }, { "input": "abdicated", "output": "â â ƒâ ™â Šâ ‰â â žâ «" }, { "input": "abdicates", "output": "â â ƒâ ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "abdicating", "output": "â â ƒâ ™â Šâ ‰â â žâ Œ" }, { "input": "abdication", "output": "â â ƒâ ™â Šâ ‰â  â " }, { "input": "abdication's", "output": "â â ƒâ ™â Šâ ‰â  â â „â Ž" }, { "input": "abdications", "output": "â â ƒâ ™â Šâ ‰â  â â Ž" }, { "input": "abdomen", "output": "â â ƒâ ™â •â â ¢" }, { "input": "abdomen's", "output": "â â ƒâ ™â •â â ¢â „â Ž" }, { "input": "abdomens", "output": "â â ƒâ ™â •â â ¢â Ž" }, { "input": "abdominal", "output": "â â ƒâ ™â •â â ”â â ‡" }, { "input": "abduct", "output": "â â ƒâ ™â ¥â ‰â ž" }, { "input": "abducted", "output": "â â ƒâ ™â ¥â ‰â žâ «" }, { "input": "abducting", "output": "â â ƒâ ™â ¥â ‰â žâ Œ" }, { "input": "abduction", "output": "â â ƒâ ™â ¥â ‰â °â " }, { "input": "abduction's", "output": "â â ƒâ ™â ¥â ‰â °â â „â Ž" }, { "input": "abductions", "output": "â â ƒâ ™â ¥â ‰â °â â Ž" }, { "input": "abductor", "output": "â â ƒâ ™â ¥â ‰â žâ •â —" }, { "input": "abductor's", "output": "â â ƒâ ™â ¥â ‰â žâ •â —â „â Ž" }, { "input": "abductors", "output": "â â ƒâ ™â ¥â ‰â žâ •â —â Ž" }, { "input": "abducts", "output": "â â ƒâ ™â ¥â ‰â žâ Ž" }, { "input": "abeam", "output": "â â ƒâ ‚â " }, { "input": "abed", "output": "â â ƒâ «" }, { "input": "aberrant", "output": "â â ƒâ »â —â â â ž" }, { "input": "aberration", "output": "â â ƒâ »â —â  â " }, { "input": "aberration's", "output": "â â ƒâ »â —â  â â „â Ž" }, { "input": "aberrational", "output": "â â ƒâ »â —â  â â â ‡" }, { "input": "aberrations", "output": "â â ƒâ »â —â  â â Ž" }, { "input": "abet", "output": "â â ƒâ ‘â ž" }, { "input": "abets", "output": "â â ƒâ ‘â žâ Ž" }, { "input": "abetted", "output": "â â ƒâ ‘â žâ žâ «" }, { "input": "abetting", "output": "â â ƒâ ‘â žâ žâ Œ" }, { "input": "abettor", "output": "â â ƒâ ‘â žâ žâ •â —" }, { "input": "abettor's", "output": "â â ƒâ ‘â žâ žâ •â —â „â Ž" }, { "input": "abettors", "output": "â â ƒâ ‘â žâ žâ •â —â Ž" }, { "input": "abeyance", "output": "â â ƒâ ‘⠽⠨⠑" }, { "input": "abeyance's", "output": "â â ƒâ ‘⠽⠨⠑⠄⠎" }, { "input": "abhor", "output": "â â ƒâ “â •â —" }, { "input": "abhorred", "output": "â â ƒâ “â •â —â —â «" }, { "input": "abhorrence", "output": "â â ƒâ “â •â —â —â °â ‘" }, { "input": "abhorrence's", "output": "â â ƒâ “â •â —â —â °â ‘â „â Ž" }, { "input": "abhorrent", "output": "â â ƒâ “⠕⠗⠗⠢⠞" }, { "input": "abhorrently", "output": "â â ƒâ “⠕⠗⠗⠢⠞⠇⠽" }, { "input": "abhorring", "output": "â â ƒâ “â •â —â —â Œ" }, { "input": "abhors", "output": "â â ƒâ “â •â —â Ž" }, { "input": "abidance", "output": "â â ƒâ Šâ ™â ¨â ‘" }, { "input": "abidance's", "output": "â â ƒâ Šâ ™â ¨â ‘â „â Ž" }, { "input": "abide", "output": "â â ƒâ Šâ ™â ‘" }, { "input": "abides", "output": "â â ƒâ Šâ ™â ‘â Ž" }, { "input": "abiding", "output": "â â ƒâ Šâ ™â Œ" }, { "input": "abidingly", "output": "â â ƒâ Šâ ™â Œâ ‡â ½" }, { "input": "abilities", "output": "â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "ability", "output": "â â ƒâ Šâ ‡â °â ½" }, { "input": "ability's", "output": "â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "abject", "output": "â â ƒâ šâ ‘⠉⠞" }, { "input": "abjection", "output": "â â ƒâ šâ ‘⠉⠰â " }, { "input": "abjection's", "output": "â â ƒâ šâ ‘⠉⠰â â „â Ž" }, { "input": "abjectly", "output": "â â ƒâ šâ ‘⠉⠞⠇⠽" }, { "input": "abjectness", "output": "â â ƒâ šâ ‘⠉⠞⠰⠎" }, { "input": "abjectness's", "output": "â â ƒâ šâ ‘⠉⠞⠰⠎⠄⠎" }, { "input": "abjuration", "output": "â â ƒâ šâ ¥â —â  â " }, { "input": "abjuration's", "output": "â â ƒâ šâ ¥â —â  â â „â Ž" }, { "input": "abjurations", "output": "â â ƒâ šâ ¥â —â  â â Ž" }, { "input": "abjuratory", "output": "â â ƒâ šâ ¥â —â â žâ •â —â ½" }, { "input": "abjure", "output": "â â ƒâ šâ ¥â —â ‘" }, { "input": "abjured", "output": "â â ƒâ šâ ¥â —â «" }, { "input": "abjurer", "output": "â â ƒâ šâ ¥â —â »" }, { "input": "abjurer's", "output": "â â ƒâ šâ ¥â —⠻⠄⠎" }, { "input": "abjurers", "output": "â â ƒâ šâ ¥â —⠻⠎" }, { "input": "abjures", "output": "â â ƒâ šâ ¥â —â ‘â Ž" }, { "input": "abjuring", "output": "â â ƒâ šâ ¥â —â Œ" }, { "input": "ablate", "output": "â â ƒâ ‡â â žâ ‘" }, { "input": "ablated", "output": "â â ƒâ ‡â â žâ «" }, { "input": "ablates", "output": "â â ƒâ ‡â â žâ ‘â Ž" }, { "input": "ablating", "output": "â â ƒâ ‡â â žâ Œ" }, { "input": "ablation", "output": "â â ƒâ ‡â  â " }, { "input": "ablation's", "output": "â â ƒâ ‡â  â â „â Ž" }, { "input": "ablations", "output": "â â ƒâ ‡â  â â Ž" }, { "input": "ablative", "output": "â â ƒâ ‡â â žâ Šâ §â ‘" }, { "input": "ablative's", "output": "â â ƒâ ‡â â žâ Šâ §â ‘â „â Ž" }, { "input": "ablatives", "output": "â â ƒâ ‡â â žâ Šâ §â ‘â Ž" }, { "input": "ablaze", "output": "â â ƒâ ‡â â µâ ‘" }, { "input": "able", "output": "â â ¼" }, { "input": "abler", "output": "â â ¼â —" }, { "input": "ablest", "output": "â â ¼â Œ" }, { "input": "abloom", "output": "â â ƒâ ‡â •â •â " }, { "input": "ablution", "output": "â â ƒâ ‡â ¥â °â " }, { "input": "ablution's", "output": "â â ƒâ ‡â ¥â °â â „â Ž" }, { "input": "ablutions", "output": "â â ƒâ ‡â ¥â °â â Ž" }, { "input": "ably", "output": "â â ƒâ ‡â ½" }, { "input": "abnegate", "output": "â â ƒâ â ‘â ›â â žâ ‘" }, { "input": "abnegated", "output": "â â ƒâ â ‘â ›â â žâ «" }, { "input": "abnegates", "output": "â â ƒâ â ‘â ›â â žâ ‘â Ž" }, { "input": "abnegating", "output": "â â ƒâ â ‘â ›â â žâ Œ" }, { "input": "abnegation", "output": "â â ƒâ â ‘⠛⠠â " }, { "input": "abnegation's", "output": "â â ƒâ â ‘⠛⠠â â „â Ž" }, { "input": "abnormal", "output": "â â ƒâ â •â —â â â ‡" }, { "input": "abnormalities", "output": "â â ƒâ â •â —â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "abnormality", "output": "â â ƒâ â •â —â â â ‡â °â ½" }, { "input": "abnormality's", "output": "â â ƒâ â •â —â â â ‡â °â ½â „â Ž" }, { "input": "abnormally", "output": "â â ƒâ â •â —â â  â ½" }, { "input": "aboard", "output": "â â ƒâ •⠜⠙" }, { "input": "abode", "output": "â â ƒâ •⠙⠑" }, { "input": "abode's", "output": "â â ƒâ •⠙⠑⠄⠎" }, { "input": "abodes", "output": "â â ƒâ •⠙⠑⠎" }, { "input": "abolish", "output": "â â ƒâ •⠇⠊⠩" }, { "input": "abolished", "output": "â â ƒâ •⠇⠊⠩⠫" }, { "input": "abolishes", "output": "â â ƒâ •⠇⠊⠩⠑⠎" }, { "input": "abolishing", "output": "â â ƒâ •⠇⠊⠩⠌" }, { "input": "abolition", "output": "â â ƒâ •⠇⠊⠰â " }, { "input": "abolition's", "output": "â â ƒâ •⠇⠊⠰â â „â Ž" }, { "input": "abolitionism", "output": "â â ƒâ •⠇⠊⠰â â Šâ Žâ " }, { "input": "abolitionism's", "output": "â â ƒâ •⠇⠊⠰â â Šâ Žâ â „â Ž" }, { "input": "abolitionist", "output": "â â ƒâ •⠇⠊⠰â â Šâ Œ" }, { "input": "abolitionist's", "output": "â â ƒâ •⠇⠊⠰â â Šâ Œâ „â Ž" }, { "input": "abolitionists", "output": "â â ƒâ •⠇⠊⠰â â Šâ Œâ Ž" }, { "input": "abominable", "output": "â â ƒâ •â â ”â â ¼" }, { "input": "abominably", "output": "â â ƒâ •â â ”â â ƒâ ‡â ½" }, { "input": "abominate", "output": "â â ƒâ •â â ”â â žâ ‘" }, { "input": "abominated", "output": "â â ƒâ •â â ”â â žâ «" }, { "input": "abominates", "output": "â â ƒâ •â â ”â â žâ ‘â Ž" }, { "input": "abominating", "output": "â â ƒâ •â â ”â â žâ Œ" }, { "input": "abomination", "output": "â â ƒâ •â â ”â  â " }, { "input": "abomination's", "output": "â â ƒâ •â â ”â  â â „â Ž" }, { "input": "abominations", "output": "â â ƒâ •â â ”â  â â Ž" }, { "input": "aboriginal", "output": "â â ƒâ •⠗⠊⠛⠔â â ‡" }, { "input": "aboriginal's", "output": "â â ƒâ •⠗⠊⠛⠔â â ‡â „â Ž" }, { "input": "aboriginals", "output": "â â ƒâ •⠗⠊⠛⠔â â ‡â Ž" }, { "input": "aborigine", "output": "â â ƒâ •⠗⠊⠛⠔⠑" }, { "input": "aborigine's", "output": "â â ƒâ •⠗⠊⠛⠔⠑⠄⠎" }, { "input": "aborigines", "output": "â â ƒâ •⠗⠊⠛⠔⠑⠎" }, { "input": "aborning", "output": "â â ƒâ •â —â â Œ" }, { "input": "abort", "output": "â â ƒâ •â —â ž" }, { "input": "aborted", "output": "â â ƒâ •â —â žâ «" }, { "input": "aborting", "output": "â â ƒâ •â —â žâ Œ" }, { "input": "abortion", "output": "â â ƒâ •â —â °â " }, { "input": "abortion's", "output": "â â ƒâ •â —â °â â „â Ž" }, { "input": "abortionist", "output": "â â ƒâ •â —â °â â Šâ Œ" }, { "input": "abortionist's", "output": "â â ƒâ •â —â °â â Šâ Œâ „â Ž" }, { "input": "abortionists", "output": "â â ƒâ •â —â °â â Šâ Œâ Ž" }, { "input": "abortions", "output": "â â ƒâ •â —â °â â Ž" }, { "input": "abortive", "output": "â â ƒâ •â —â žâ Šâ §â ‘" }, { "input": "abortively", "output": "â â ƒâ •⠗⠞⠊⠧⠑⠇⠽" }, { "input": "aborts", "output": "â â ƒâ •â —â žâ Ž" }, { "input": "abound", "output": "â â ƒâ ¨â ™" }, { "input": "abounded", "output": "â â ƒâ ¨â ™â «" }, { "input": "abounding", "output": "â â ƒâ ¨â ™â Œ" }, { "input": "abounds", "output": "â â ƒâ ¨â ™â Ž" }, { "input": "about", "output": "â â ƒ" }, { "input": "above", "output": "â â ƒâ §" }, { "input": "above's", "output": "â â ƒâ §â „â Ž" }, { "input": "aboveboard", "output": "â â ƒâ §â ƒâ •⠜⠙" }, { "input": "abracadabra", "output": "â â ƒâ —â â ‰â â ™â â ƒâ —â " }, { "input": "abracadabra's", "output": "â â ƒâ —â â ‰â â ™â â ƒâ —â â „â Ž" }, { "input": "abrade", "output": "â â ƒâ —â â ™â ‘" }, { "input": "abraded", "output": "â â ƒâ —â â ™â «" }, { "input": "abrades", "output": "â â ƒâ —â â ™â ‘â Ž" }, { "input": "abrading", "output": "â â ƒâ —â â ™â Œ" }, { "input": "abrasion", "output": "â â ƒâ —â â ¨â " }, { "input": "abrasion's", "output": "â â ƒâ —â â ¨â â „â Ž" }, { "input": "abrasions", "output": "â â ƒâ —â â ¨â â Ž" }, { "input": "abrasive", "output": "â â ƒâ —â â Žâ Šâ §â ‘" }, { "input": "abrasive's", "output": "â â ƒâ —â â Žâ Šâ §â ‘â „â Ž" }, { "input": "abrasively", "output": "â â ƒâ —â â Žâ Šâ §â ‘⠇⠽" }, { "input": "abrasiveness", "output": "â â ƒâ —â â Žâ Šâ §â ‘â °â Ž" }, { "input": "abrasiveness's", "output": "â â ƒâ —â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "abrasives", "output": "â â ƒâ —â â Žâ Šâ §â ‘â Ž" }, { "input": "abreast", "output": "â â ƒâ —â ‚â Œ" }, { "input": "abridge", "output": "â â ƒâ —⠊⠙⠛⠑" }, { "input": "abridged", "output": "â â ƒâ —⠊⠙⠛⠫" }, { "input": "abridges", "output": "â â ƒâ —⠊⠙⠛⠑⠎" }, { "input": "abridging", "output": "â â ƒâ —⠊⠙⠛⠌" }, { "input": "abridgment", "output": "â â ƒâ —⠊⠙⠛⠰⠞" }, { "input": "abridgment's", "output": "â â ƒâ —⠊⠙⠛⠰⠞⠄⠎" }, { "input": "abridgments", "output": "â â ƒâ —⠊⠙⠛⠰⠞⠎" }, { "input": "abroad", "output": "â â ƒâ —â •â â ™" }, { "input": "abrogate", "output": "â â ƒâ —â •â ›â â žâ ‘" }, { "input": "abrogated", "output": "â â ƒâ —â •â ›â â žâ «" }, { "input": "abrogates", "output": "â â ƒâ —â •â ›â â žâ ‘â Ž" }, { "input": "abrogating", "output": "â â ƒâ —â •â ›â â žâ Œ" }, { "input": "abrogation", "output": "â â ƒâ —⠕⠛⠠â " }, { "input": "abrogation's", "output": "â â ƒâ —⠕⠛⠠â â „â Ž" }, { "input": "abrogations", "output": "â â ƒâ —⠕⠛⠠â â Ž" }, { "input": "abrogator", "output": "â â ƒâ —â •â ›â â žâ •â —" }, { "input": "abrogator's", "output": "â â ƒâ —â •â ›â â žâ •â —â „â Ž" }, { "input": "abrogators", "output": "â â ƒâ —â •â ›â â žâ •â —â Ž" }, { "input": "abrupt", "output": "â â ƒâ —â ¥â â ž" }, { "input": "abrupter", "output": "â â ƒâ —â ¥â â žâ »" }, { "input": "abruptest", "output": "â â ƒâ —â ¥â â žâ ‘â Œ" }, { "input": "abruptly", "output": "â â ƒâ —â ¥â â žâ ‡â ½" }, { "input": "abruptness", "output": "â â ƒâ —â ¥â â žâ °â Ž" }, { "input": "abruptness's", "output": "â â ƒâ —â ¥â â žâ °â Žâ „â Ž" }, { "input": "abs", "output": "â â ƒâ Ž" }, { "input": "abs's", "output": "â â ƒâ Žâ „â Ž" }, { "input": "abscess", "output": "â â ƒâ Žâ ‰â ‘â Žâ Ž" }, { "input": "abscess's", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ „â Ž" }, { "input": "abscessed", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ «" }, { "input": "abscesses", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ ‘â Ž" }, { "input": "abscessing", "output": "â â ƒâ Žâ ‰â ‘â Žâ Žâ Œ" }, { "input": "abscissa", "output": "â â ƒâ Žâ ‰â Šâ Žâ Žâ " }, { "input": "abscissa's", "output": "â â ƒâ Žâ ‰â Šâ Žâ Žâ â „â Ž" }, { "input": "abscissas", "output": "â â ƒâ Žâ ‰â Šâ Žâ Žâ â Ž" }, { "input": "abscission", "output": "â â ƒâ Žâ ‰â Šâ Žâ ¨â " }, { "input": "abscission's", "output": "â â ƒâ Žâ ‰â Šâ Žâ ¨â â „â Ž" }, { "input": "abscond", "output": "â â ƒâ Žâ ‰â •â â ™" }, { "input": "absconded", "output": "â â ƒâ Žâ ‰â •â â ™â «" }, { "input": "absconder", "output": "â â ƒâ Žâ ‰â •â â ™â »" }, { "input": "absconder's", "output": "â â ƒâ Žâ ‰â •â â ™â »â „â Ž" }, { "input": "absconders", "output": "â â ƒâ Žâ ‰â •â â ™â »â Ž" }, { "input": "absconding", "output": "â â ƒâ Žâ ‰â •â â ™â Œ" }, { "input": "absconds", "output": "â â ƒâ Žâ ‰â •â â ™â Ž" }, { "input": "absence", "output": "â â ƒâ Žâ °â ‘" }, { "input": "absence's", "output": "â â ƒâ Žâ °â ‘â „â Ž" }, { "input": "absences", "output": "â â ƒâ Žâ °â ‘â Ž" }, { "input": "absent", "output": "â â ƒâ Žâ ¢â ž" }, { "input": "absented", "output": "â â ƒâ Žâ ¢â žâ «" }, { "input": "absentee", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘" }, { "input": "absentee's", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘â „â Ž" }, { "input": "absenteeism", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘â Šâ Žâ " }, { "input": "absenteeism's", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘â Šâ Žâ â „â Ž" }, { "input": "absentees", "output": "â â ƒâ Žâ ¢â žâ ‘â ‘â Ž" }, { "input": "absenting", "output": "â â ƒâ Žâ ¢â žâ Œ" }, { "input": "absently", "output": "â â ƒâ Žâ ¢â žâ ‡â ½" }, { "input": "absentminded", "output": "â â ƒâ Žâ ¢â žâ â ”⠙⠫" }, { "input": "absentmindedly", "output": "â â ƒâ Žâ ¢â žâ â ”⠙⠫⠇⠽" }, { "input": "absentmindedness", "output": "â â ƒâ Žâ ¢â žâ â ”⠙⠫⠰⠎" }, { "input": "absentmindedness's", "output": "â â ƒâ Žâ ¢â žâ â ”⠙⠫⠰⠎⠄⠎" }, { "input": "absents", "output": "â â ƒâ Žâ ¢â žâ Ž" }, { "input": "absinthe", "output": "â â ƒâ Žâ ”â ®" }, { "input": "absinthe's", "output": "â â ƒâ Žâ ”⠮⠄⠎" }, { "input": "absolute", "output": "â â ƒâ Žâ •⠇⠥⠞⠑" }, { "input": "absolute's", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠄⠎" }, { "input": "absolutely", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠇⠽" }, { "input": "absoluteness", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠰⠎" }, { "input": "absoluteness's", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠰⠎⠄⠎" }, { "input": "absolutes", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠎" }, { "input": "absolutest", "output": "â â ƒâ Žâ •⠇⠥⠞⠑⠌" }, { "input": "absolution", "output": "â â ƒâ Žâ •⠇⠥⠰â " }, { "input": "absolution's", "output": "â â ƒâ Žâ •⠇⠥⠰â â „â Ž" }, { "input": "absolutism", "output": "â â ƒâ Žâ •⠇⠥⠞⠊⠎â " }, { "input": "absolutism's", "output": "â â ƒâ Žâ •⠇⠥⠞⠊⠎â â „â Ž" }, { "input": "absolve", "output": "â â ƒâ Žâ •⠇⠧⠑" }, { "input": "absolved", "output": "â â ƒâ Žâ •⠇⠧⠫" }, { "input": "absolves", "output": "â â ƒâ Žâ •⠇⠧⠑⠎" }, { "input": "absolving", "output": "â â ƒâ Žâ •⠇⠧⠌" }, { "input": "absorb", "output": "â â ƒâ Žâ •â —â ƒ" }, { "input": "absorbed", "output": "â â ƒâ Žâ •⠗⠃⠫" }, { "input": "absorbency", "output": "â â ƒâ Žâ •⠗⠃⠢⠉⠽" }, { "input": "absorbency's", "output": "â â ƒâ Žâ •⠗⠃⠢⠉⠽⠄⠎" }, { "input": "absorbent", "output": "â â ƒâ Žâ •⠗⠃⠢⠞" }, { "input": "absorbent's", "output": "â â ƒâ Žâ •⠗⠃⠢⠞⠄⠎" }, { "input": "absorbents", "output": "â â ƒâ Žâ •⠗⠃⠢⠞⠎" }, { "input": "absorbing", "output": "â â ƒâ Žâ •⠗⠃⠌" }, { "input": "absorbingly", "output": "â â ƒâ Žâ •⠗⠃⠌⠇⠽" }, { "input": "absorbs", "output": "â â ƒâ Žâ •⠗⠃⠎" }, { "input": "absorption", "output": "â â ƒâ Žâ •â —â â °â " }, { "input": "absorption's", "output": "â â ƒâ Žâ •â —â â °â â „â Ž" }, { "input": "absorptive", "output": "â â ƒâ Žâ •â —â â žâ Šâ §â ‘" }, { "input": "abstain", "output": "â â ƒâ Œâ â ”" }, { "input": "abstained", "output": "â â ƒâ Œâ â ”â «" }, { "input": "abstainer", "output": "â â ƒâ Œâ â ”â »" }, { "input": "abstainer's", "output": "â â ƒâ Œâ â ”⠻⠄⠎" }, { "input": "abstainers", "output": "â â ƒâ Œâ â ”⠻⠎" }, { "input": "abstaining", "output": "â â ƒâ Œâ â ”â Œ" }, { "input": "abstains", "output": "â â ƒâ Œâ â ”â Ž" }, { "input": "abstemious", "output": "â â ƒâ Œâ ‘â â Šâ ³â Ž" }, { "input": "abstemiously", "output": "â â ƒâ Œâ ‘â â Šâ ³â Žâ ‡â ½" }, { "input": "abstemiousness", "output": "â â ƒâ Œâ ‘â â Šâ ³â Žâ °â Ž" }, { "input": "abstemiousness's", "output": "â â ƒâ Œâ ‘â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "abstention", "output": "â â ƒâ Œâ ¢â °â " }, { "input": "abstention's", "output": "â â ƒâ Œâ ¢â °â â „â Ž" }, { "input": "abstentions", "output": "â â ƒâ Œâ ¢â °â â Ž" }, { "input": "abstinence", "output": "â â ƒâ Œâ ”â °â ‘" }, { "input": "abstinence's", "output": "â â ƒâ Œâ ”â °â ‘â „â Ž" }, { "input": "abstinent", "output": "â â ƒâ Œâ ”⠢⠞" }, { "input": "abstract", "output": "â â ƒâ Œâ —â â ‰â ž" }, { "input": "abstract's", "output": "â â ƒâ Œâ —â â ‰â žâ „â Ž" }, { "input": "abstracted", "output": "â â ƒâ Œâ —â â ‰â žâ «" }, { "input": "abstractedly", "output": "â â ƒâ Œâ —â â ‰â žâ «â ‡â ½" }, { "input": "abstractedness", "output": "â â ƒâ Œâ —â â ‰â žâ «â °â Ž" }, { "input": "abstractedness's", "output": "â â ƒâ Œâ —â â ‰â žâ «â °â Žâ „â Ž" }, { "input": "abstracting", "output": "â â ƒâ Œâ —â â ‰â žâ Œ" }, { "input": "abstraction", "output": "â â ƒâ Œâ —â â ‰â °â " }, { "input": "abstraction's", "output": "â â ƒâ Œâ —â â ‰â °â â „â Ž" }, { "input": "abstractions", "output": "â â ƒâ Œâ —â â ‰â °â â Ž" }, { "input": "abstractly", "output": "â â ƒâ Œâ —â â ‰â žâ ‡â ½" }, { "input": "abstractness", "output": "â â ƒâ Œâ —â â ‰â žâ °â Ž" }, { "input": "abstractness's", "output": "â â ƒâ Œâ —â â ‰â žâ °â Žâ „â Ž" }, { "input": "abstractnesses", "output": "â â ƒâ Œâ —â â ‰â žâ °â Žâ ‘â Ž" }, { "input": "abstracts", "output": "â â ƒâ Œâ —â â ‰â žâ Ž" }, { "input": "abstruse", "output": "â â ƒâ Œâ —⠥⠎⠑" }, { "input": "abstrusely", "output": "â â ƒâ Œâ —⠥⠎⠑⠇⠽" }, { "input": "abstruseness", "output": "â â ƒâ Œâ —⠥⠎⠑⠰⠎" }, { "input": "abstruseness's", "output": "â â ƒâ Œâ —⠥⠎⠑⠰⠎⠄⠎" }, { "input": "absurd", "output": "â â ƒâ Žâ ¥â —â ™" }, { "input": "absurder", "output": "â â ƒâ Žâ ¥â —⠙⠻" }, { "input": "absurdest", "output": "â â ƒâ Žâ ¥â —⠙⠑⠌" }, { "input": "absurdities", "output": "â â ƒâ Žâ ¥â —⠙⠊⠞⠊⠑⠎" }, { "input": "absurdity", "output": "â â ƒâ Žâ ¥â —⠙⠰⠽" }, { "input": "absurdity's", "output": "â â ƒâ Žâ ¥â —⠙⠰⠽⠄⠎" }, { "input": "absurdly", "output": "â â ƒâ Žâ ¥â —⠙⠇⠽" }, { "input": "absurdness", "output": "â â ƒâ Žâ ¥â —⠙⠰⠎" }, { "input": "absurdness's", "output": "â â ƒâ Žâ ¥â —⠙⠰⠎⠄⠎" }, { "input": "abundance", "output": "â â ƒâ ¥â â ™â ¨â ‘" }, { "input": "abundance's", "output": "â â ƒâ ¥â â ™â ¨â ‘â „â Ž" }, { "input": "abundances", "output": "â â ƒâ ¥â â ™â ¨â ‘â Ž" }, { "input": "abundant", "output": "â â ƒâ ¥â â ™â â â ž" }, { "input": "abundantly", "output": "â â ƒâ ¥â â ™â â â žâ ‡â ½" }, { "input": "abuse", "output": "â â ƒâ ¥â Žâ ‘" }, { "input": "abuse's", "output": "â â ƒâ ¥â Žâ ‘â „â Ž" }, { "input": "abused", "output": "â â ƒâ ¥â Žâ «" }, { "input": "abuser", "output": "â â ƒâ ¥â Žâ »" }, { "input": "abuser's", "output": "â â ƒâ ¥â Žâ »â „â Ž" }, { "input": "abusers", "output": "â â ƒâ ¥â Žâ »â Ž" }, { "input": "abuses", "output": "â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "abusing", "output": "â â ƒâ ¥â Žâ Œ" }, { "input": "abusive", "output": "â â ƒâ ¥â Žâ Šâ §â ‘" }, { "input": "abusively", "output": "â â ƒâ ¥â Žâ Šâ §â ‘⠇⠽" }, { "input": "abusiveness", "output": "â â ƒâ ¥â Žâ Šâ §â ‘â °â Ž" }, { "input": "abusiveness's", "output": "â â ƒâ ¥â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "abut", "output": "â â ƒâ ¥â ž" }, { "input": "abutment", "output": "â â ƒâ ¥â žâ °â ž" }, { "input": "abutment's", "output": "â â ƒâ ¥â žâ °â žâ „â Ž" }, { "input": "abutments", "output": "â â ƒâ ¥â žâ °â žâ Ž" }, { "input": "abuts", "output": "â â ƒâ ¥â žâ Ž" }, { "input": "abutted", "output": "â â ƒâ ¥â žâ žâ «" }, { "input": "abutting", "output": "â â ƒâ ¥â žâ žâ Œ" }, { "input": "abuzz", "output": "â â ƒâ ¥â µâ µ" }, { "input": "abysmal", "output": "â â ƒâ ½â Žâ â â ‡" }, { "input": "abysmally", "output": "â â ƒâ ½â Žâ â  â ½" }, { "input": "abyss", "output": "â â ƒâ ½â Žâ Ž" }, { "input": "abyss's", "output": "â â ƒâ ½â Žâ Žâ „â Ž" }, { "input": "abyssal", "output": "â â ƒâ ½â Žâ Žâ â ‡" }, { "input": "abysses", "output": "â â ƒâ ½â Žâ Žâ ‘â Ž" }, { "input": "acacia", "output": "â â ‰â â ‰â Šâ " }, { "input": "acacia's", "output": "â â ‰â â ‰â Šâ â „â Ž" }, { "input": "acacias", "output": "â â ‰â â ‰â Šâ â Ž" }, { "input": "academe's", "output": "â â ‰â â ™â ‘â â ‘â „â Ž" }, { "input": "academia", "output": "â â ‰â â ™â ‘â â Šâ " }, { "input": "academia's", "output": "â â ‰â â ™â ‘â â Šâ â „â Ž" }, { "input": "academic", "output": "â â ‰â â ™â ‘â â Šâ ‰" }, { "input": "academic's", "output": "â â ‰â â ™â ‘â â Šâ ‰â „â Ž" }, { "input": "academical", "output": "â â ‰â â ™â ‘â â Šâ ‰â â ‡" }, { "input": "academically", "output": "â â ‰â â ™â ‘â â Šâ ‰â  â ½" }, { "input": "academician", "output": "â â ‰â â ™â ‘â â Šâ ‰â Šâ â " }, { "input": "academician's", "output": "â â ‰â â ™â ‘â â Šâ ‰â Šâ â â „â Ž" }, { "input": "academicians", "output": "â â ‰â â ™â ‘â â Šâ ‰â Šâ â â Ž" }, { "input": "academics", "output": "â â ‰â â ™â ‘â â Šâ ‰â Ž" }, { "input": "academies", "output": "â â ‰â â ™â ‘â â Šâ ‘â Ž" }, { "input": "academy", "output": "â â ‰â â ™â ‘â â ½" }, { "input": "academy's", "output": "â â ‰â â ™â ‘â â ½â „â Ž" }, { "input": "acanthus", "output": "â â ‰â â â ¹â ¥â Ž" }, { "input": "acanthus's", "output": "â â ‰â â â ¹â ¥â Žâ „â Ž" }, { "input": "acanthuses", "output": "â â ‰â â â ¹â ¥â Žâ ‘â Ž" }, { "input": "accede", "output": "â â ’â «â ‘" }, { "input": "acceded", "output": "â â ’â «â «" }, { "input": "accedes", "output": "â â ’â «â ‘â Ž" }, { "input": "acceding", "output": "â â ’â «â Œ" }, { "input": "accelerate", "output": "â â ’⠑⠇⠻â â žâ ‘" }, { "input": "accelerated", "output": "â â ’⠑⠇⠻â â žâ «" }, { "input": "accelerates", "output": "â â ’⠑⠇⠻â â žâ ‘â Ž" }, { "input": "accelerating", "output": "â â ’⠑⠇⠻â â žâ Œ" }, { "input": "acceleration", "output": "â â ’⠑⠇⠻⠠â " }, { "input": "acceleration's", "output": "â â ’⠑⠇⠻⠠â â „â Ž" }, { "input": "accelerations", "output": "â â ’⠑⠇⠻⠠â â Ž" }, { "input": "accelerator", "output": "â â ’⠑⠇⠻â â žâ •â —" }, { "input": "accelerator's", "output": "â â ’⠑⠇⠻â â žâ •â —â „â Ž" }, { "input": "accelerators", "output": "â â ’⠑⠇⠻â â žâ •â —â Ž" }, { "input": "accent", "output": "â â ’⠢⠞" }, { "input": "accent's", "output": "â â ’⠢⠞⠄⠎" }, { "input": "accented", "output": "â â ’⠢⠞⠫" }, { "input": "accenting", "output": "â â ’⠢⠞⠌" }, { "input": "accents", "output": "â â ’⠢⠞⠎" }, { "input": "accentual", "output": "â â ’⠢⠞⠥â â ‡" }, { "input": "accentuate", "output": "â â ’⠢⠞⠥â â žâ ‘" }, { "input": "accentuated", "output": "â â ’⠢⠞⠥â â žâ «" }, { "input": "accentuates", "output": "â â ’⠢⠞⠥â â žâ ‘â Ž" }, { "input": "accentuating", "output": "â â ’⠢⠞⠥â â žâ Œ" }, { "input": "accentuation", "output": "â â ’⠢⠞⠥⠠â " }, { "input": "accentuation's", "output": "â â ’⠢⠞⠥⠠â â „â Ž" }, { "input": "accept", "output": "â â ’â ‘â â ž" }, { "input": "acceptability", "output": "â â ’â ‘â â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "acceptability's", "output": "â â ’â ‘â â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "acceptable", "output": "â â ’â ‘â â žâ â ¼" }, { "input": "acceptableness", "output": "â â ’â ‘â â žâ â ¼â °â Ž" }, { "input": "acceptableness's", "output": "â â ’â ‘â â žâ â ¼â °â Žâ „â Ž" }, { "input": "acceptably", "output": "â â ’â ‘â â žâ â ƒâ ‡â ½" }, { "input": "acceptance", "output": "â â ’â ‘â â žâ ¨â ‘" }, { "input": "acceptance's", "output": "â â ’â ‘â â žâ ¨â ‘â „â Ž" }, { "input": "acceptances", "output": "â â ’â ‘â â žâ ¨â ‘â Ž" }, { "input": "acceptation", "output": "â â ’â ‘â â žâ  â " }, { "input": "acceptation's", "output": "â â ’â ‘â â žâ  â â „â Ž" }, { "input": "acceptations", "output": "â â ’â ‘â â žâ  â â Ž" }, { "input": "accepted", "output": "â â ’â ‘â â žâ «" }, { "input": "accepting", "output": "â â ’â ‘â â žâ Œ" }, { "input": "accepts", "output": "â â ’â ‘â â žâ Ž" }, { "input": "access", "output": "â â ’â ‘â Žâ Ž" }, { "input": "access's", "output": "â â ’â ‘â Žâ Žâ „â Ž" }, { "input": "accessed", "output": "â â ’â ‘â Žâ Žâ «" }, { "input": "accesses", "output": "â â ’â ‘â Žâ Žâ ‘â Ž" }, { "input": "accessibility", "output": "â â ’⠑⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "accessibility's", "output": "â â ’⠑⠎⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "accessible", "output": "â â ’â ‘â Žâ Žâ Šâ ¼" }, { "input": "accessibly", "output": "â â ’⠑⠎⠎⠊⠃⠇⠽" }, { "input": "accessing", "output": "â â ’â ‘â Žâ Žâ Œ" }, { "input": "accession", "output": "â â ’â ‘â Žâ ¨â " }, { "input": "accession's", "output": "â â ’â ‘â Žâ ¨â â „â Ž" }, { "input": "accessioned", "output": "â â ’â ‘â Žâ ¨â â «" }, { "input": "accessioning", "output": "â â ’â ‘â Žâ ¨â â Œ" }, { "input": "accessions", "output": "â â ’â ‘â Žâ ¨â â Ž" }, { "input": "accessories", "output": "â â ’â ‘â Žâ Žâ •â —â Šâ ‘â Ž" }, { "input": "accessorize", "output": "â â ’⠑⠎⠎⠕⠗⠊⠵⠑" }, { "input": "accessorized", "output": "â â ’⠑⠎⠎⠕⠗⠊⠵⠫" }, { "input": "accessorizes", "output": "â â ’⠑⠎⠎⠕⠗⠊⠵⠑⠎" }, { "input": "accessorizing", "output": "â â ’⠑⠎⠎⠕⠗⠊⠵⠌" }, { "input": "accessory", "output": "â â ’â ‘â Žâ Žâ •â —â ½" }, { "input": "accessory's", "output": "â â ’⠑⠎⠎⠕⠗⠽⠄⠎" }, { "input": "accident", "output": "â â ’⠊⠙⠢⠞" }, { "input": "accident's", "output": "â â ’⠊⠙⠢⠞⠄⠎" }, { "input": "accidental", "output": "â â ’⠊⠙⠢⠞â â ‡" }, { "input": "accidental's", "output": "â â ’⠊⠙⠢⠞â â ‡â „â Ž" }, { "input": "accidentally", "output": "â â ’⠊⠙⠢⠞⠠⠽" }, { "input": "accidentals", "output": "â â ’⠊⠙⠢⠞â â ‡â Ž" }, { "input": "accidents", "output": "â â ’⠊⠙⠢⠞⠎" }, { "input": "acclaim", "output": "â â ’â ‡â â Šâ " }, { "input": "acclaim's", "output": "â â ’â ‡â â Šâ â „â Ž" }, { "input": "acclaimed", "output": "â â ’â ‡â â Šâ â «" }, { "input": "acclaiming", "output": "â â ’â ‡â â Šâ â Œ" }, { "input": "acclaims", "output": "â â ’â ‡â â Šâ â Ž" }, { "input": "acclamation", "output": "â â ’â ‡â â â  â " }, { "input": "acclamation's", "output": "â â ’â ‡â â â  â â „â Ž" }, { "input": "acclimate", "output": "â â ’⠇⠊â â â žâ ‘" }, { "input": "acclimated", "output": "â â ’⠇⠊â â â žâ «" }, { "input": "acclimates", "output": "â â ’⠇⠊â â â žâ ‘â Ž" }, { "input": "acclimating", "output": "â â ’⠇⠊â â â žâ Œ" }, { "input": "acclimation", "output": "â â ’⠇⠊â â  â " }, { "input": "acclimation's", "output": "â â ’⠇⠊â â  â â „â Ž" }, { "input": "acclimatization", "output": "â â ’⠇⠊â â â žâ Šâ µâ  â " }, { "input": "acclimatization's", "output": "â â ’⠇⠊â â â žâ Šâ µâ  â â „â Ž" }, { "input": "acclimatize", "output": "â â ’⠇⠊â â â žâ Šâ µâ ‘" }, { "input": "acclimatized", "output": "â â ’⠇⠊â â â žâ Šâ µâ «" }, { "input": "acclimatizes", "output": "â â ’⠇⠊â â â žâ Šâ µâ ‘â Ž" }, { "input": "acclimatizing", "output": "â â ’⠇⠊â â â žâ Šâ µâ Œ" }, { "input": "acclivities", "output": "â â ’⠇⠊⠧⠊⠞⠊⠑⠎" }, { "input": "acclivity", "output": "â â ’⠇⠊⠧⠰⠽" }, { "input": "acclivity's", "output": "â â ’⠇⠊⠧⠰⠽⠄⠎" }, { "input": "accolade", "output": "â â ’â •â ‡â â ™â ‘" }, { "input": "accolade's", "output": "â â ’â •â ‡â â ™â ‘â „â Ž" }, { "input": "accolades", "output": "â â ’â •â ‡â â ™â ‘â Ž" }, { "input": "accommodate", "output": "â â ’â •â â â •â ™â â žâ ‘" }, { "input": "accommodated", "output": "â â ’â •â â â •â ™â â žâ «" }, { "input": "accommodates", "output": "â â ’â •â â â •â ™â â žâ ‘â Ž" }, { "input": "accommodating", "output": "â â ’â •â â â •â ™â â žâ Œ" }, { "input": "accommodatingly", "output": "â â ’â •â â â •â ™â â žâ Œâ ‡â ½" }, { "input": "accommodation", "output": "â â ’â •â â â •⠙⠠â " }, { "input": "accommodation's", "output": "â â ’â •â â â •⠙⠠â â „â Ž" }, { "input": "accommodations", "output": "â â ’â •â â â •⠙⠠â â Ž" }, { "input": "accompanied", "output": "â â ’â •â â â â â Šâ «" }, { "input": "accompanies", "output": "â â ’â •â â â â â Šâ ‘â Ž" }, { "input": "accompaniment", "output": "â â ’â •â â â â â Šâ °â ž" }, { "input": "accompaniment's", "output": "â â ’â •â â â â â Šâ °â žâ „â Ž" }, { "input": "accompaniments", "output": "â â ’â •â â â â â Šâ °â žâ Ž" }, { "input": "accompanist", "output": "â â ’â •â â â â â Šâ Œ" }, { "input": "accompanist's", "output": "â â ’â •â â â â â Šâ Œâ „â Ž" }, { "input": "accompanists", "output": "â â ’â •â â â â â Šâ Œâ Ž" }, { "input": "accompany", "output": "â â ’â •â â â â â ½" }, { "input": "accompanying", "output": "â â ’â •â â â â â ½â Œ" }, { "input": "accomplice", "output": "â â ’â •â â â ‡â Šâ ‰â ‘" }, { "input": "accomplice's", "output": "â â ’â •â â â ‡â Šâ ‰â ‘â „â Ž" }, { "input": "accomplices", "output": "â â ’â •â â â ‡â Šâ ‰â ‘â Ž" }, { "input": "accomplish", "output": "â â ’â •â â â ‡â Šâ ©" }, { "input": "accomplished", "output": "â â ’â •â â â ‡â Šâ ©â «" }, { "input": "accomplishes", "output": "â â ’â •â â â ‡â Šâ ©â ‘â Ž" }, { "input": "accomplishing", "output": "â â ’â •â â â ‡â Šâ ©â Œ" }, { "input": "accomplishment", "output": "â â ’â •â â â ‡â Šâ ©â °â ž" }, { "input": "accomplishment's", "output": "â â ’â •â â â ‡â Šâ ©â °â žâ „â Ž" }, { "input": "accomplishments", "output": "â â ’â •â â â ‡â Šâ ©â °â žâ Ž" }, { "input": "accord", "output": "â â ’â •â —â ™" }, { "input": "accord's", "output": "â â ’⠕⠗⠙⠄⠎" }, { "input": "accordance", "output": "â â ’⠕⠗⠙⠨⠑" }, { "input": "accordance's", "output": "â â ’⠕⠗⠙⠨⠑⠄⠎" }, { "input": "accordant", "output": "â â ’â •â —â ™â â â ž" }, { "input": "accorded", "output": "â â ’⠕⠗⠙⠫" }, { "input": "according", "output": "â â ‰" }, { "input": "accordingly", "output": "â â ‰â ‡â ½" }, { "input": "accordion", "output": "â â ’⠕⠗⠙⠊⠕â " }, { "input": "accordion's", "output": "â â ’⠕⠗⠙⠊⠕â â „â Ž" }, { "input": "accordionist", "output": "â â ’⠕⠗⠙⠊⠕â â Šâ Œ" }, { "input": "accordionist's", "output": "â â ’⠕⠗⠙⠊⠕â â Šâ Œâ „â Ž" }, { "input": "accordionists", "output": "â â ’⠕⠗⠙⠊⠕â â Šâ Œâ Ž" }, { "input": "accordions", "output": "â â ’⠕⠗⠙⠊⠕â â Ž" }, { "input": "accords", "output": "â â ’⠕⠗⠙⠎" }, { "input": "accost", "output": "â â ’â •â Œ" }, { "input": "accost's", "output": "â â ’⠕⠌⠄⠎" }, { "input": "accosted", "output": "â â ’⠕⠌⠫" }, { "input": "accosting", "output": "â â ’⠕⠌⠌" }, { "input": "accosts", "output": "â â ’⠕⠌⠎" }, { "input": "account", "output": "â â ’⠨⠞" }, { "input": "account's", "output": "â â ’⠨⠞⠄⠎" }, { "input": "accountability", "output": "â â ’⠨⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "accountability's", "output": "â â ’⠨⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "accountable", "output": "â â ’⠨⠞â â ¼" }, { "input": "accountancy", "output": "â â ’⠨⠞â â â ‰â ½" }, { "input": "accountancy's", "output": "â â ’⠨⠞â â â ‰â ½â „â Ž" }, { "input": "accountant", "output": "â â ’⠨⠞â â â ž" }, { "input": "accountant's", "output": "â â ’⠨⠞â â â žâ „â Ž" }, { "input": "accountants", "output": "â â ’⠨⠞â â â žâ Ž" }, { "input": "accounted", "output": "â â ’⠨⠞⠫" }, { "input": "accounting", "output": "â â ’⠨⠞⠌" }, { "input": "accounting's", "output": "â â ’⠨⠞⠌⠄⠎" }, { "input": "accounts", "output": "â â ’⠨⠞⠎" }, { "input": "accouter", "output": "â â ’⠳⠞⠻" }, { "input": "accoutered", "output": "â â ’⠳⠞⠻⠫" }, { "input": "accoutering", "output": "â â ’⠳⠞⠻⠌" }, { "input": "accouterments", "output": "â â ’⠳⠞⠻⠰⠞⠎" }, { "input": "accouterments's", "output": "â â ’⠳⠞⠻⠰⠞⠎⠄⠎" }, { "input": "accouters", "output": "â â ’⠳⠞⠻⠎" }, { "input": "accredit", "output": "â â ’â —â «â Šâ ž" }, { "input": "accreditation", "output": "â â ’â —â «â Šâ žâ  â " }, { "input": "accreditation's", "output": "â â ’â —â «â Šâ žâ  â â „â Ž" }, { "input": "accredited", "output": "â â ’â —â «â Šâ žâ «" }, { "input": "accrediting", "output": "â â ’â —â «â Šâ žâ Œ" }, { "input": "accredits", "output": "â â ’â —â «â Šâ žâ Ž" }, { "input": "accretion", "output": "â â ’â —â ‘â °â " }, { "input": "accretion's", "output": "â â ’â —â ‘â °â â „â Ž" }, { "input": "accretions", "output": "â â ’â —â ‘â °â â Ž" }, { "input": "accrual", "output": "â â ’â —â ¥â â ‡" }, { "input": "accrual's", "output": "â â ’â —â ¥â â ‡â „â Ž" }, { "input": "accruals", "output": "â â ’â —â ¥â â ‡â Ž" }, { "input": "accrue", "output": "â â ’⠗⠥⠑" }, { "input": "accrued", "output": "â â ’⠗⠥⠫" }, { "input": "accrues", "output": "â â ’⠗⠥⠑⠎" }, { "input": "accruing", "output": "â â ’⠗⠥⠌" }, { "input": "acculturate", "output": "â â ’⠥⠇⠞⠥⠗â â žâ ‘" }, { "input": "acculturated", "output": "â â ’⠥⠇⠞⠥⠗â â žâ «" }, { "input": "acculturates", "output": "â â ’⠥⠇⠞⠥⠗â â žâ ‘â Ž" }, { "input": "acculturating", "output": "â â ’⠥⠇⠞⠥⠗â â žâ Œ" }, { "input": "acculturation", "output": "â â ’⠥⠇⠞⠥⠗⠠â " }, { "input": "acculturation's", "output": "â â ’⠥⠇⠞⠥⠗⠠â â „â Ž" }, { "input": "accumulate", "output": "â â ’â ¥â â ¥â ‡â â žâ ‘" }, { "input": "accumulated", "output": "â â ’â ¥â â ¥â ‡â â žâ «" }, { "input": "accumulates", "output": "â â ’â ¥â â ¥â ‡â â žâ ‘â Ž" }, { "input": "accumulating", "output": "â â ’â ¥â â ¥â ‡â â žâ Œ" }, { "input": "accumulation", "output": "â â ’â ¥â â ¥â ‡â  â " }, { "input": "accumulation's", "output": "â â ’â ¥â â ¥â ‡â  â â „â Ž" }, { "input": "accumulations", "output": "â â ’â ¥â â ¥â ‡â  â â Ž" }, { "input": "accumulative", "output": "â â ’â ¥â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "accumulator", "output": "â â ’â ¥â â ¥â ‡â â žâ •â —" }, { "input": "accuracy", "output": "â â ’⠥⠗â â ‰â ½" }, { "input": "accuracy's", "output": "â â ’⠥⠗â â ‰â ½â „â Ž" }, { "input": "accurate", "output": "â â ’⠥⠗â â žâ ‘" }, { "input": "accurately", "output": "â â ’⠥⠗â â žâ ‘⠇⠽" }, { "input": "accurateness", "output": "â â ’⠥⠗â â žâ ‘â °â Ž" }, { "input": "accurateness's", "output": "â â ’⠥⠗â â žâ ‘â °â Žâ „â Ž" }, { "input": "accursed", "output": "â â ’⠥⠗⠎⠫" }, { "input": "accursedness", "output": "â â ’⠥⠗⠎⠫⠰⠎" }, { "input": "accursedness's", "output": "â â ’⠥⠗⠎⠫⠰⠎⠄⠎" }, { "input": "accusation", "output": "â â ’⠥⠎⠠â " }, { "input": "accusation's", "output": "â â ’⠥⠎⠠â â „â Ž" }, { "input": "accusations", "output": "â â ’⠥⠎⠠â â Ž" }, { "input": "accusative", "output": "â â ’⠥⠎â â žâ Šâ §â ‘" }, { "input": "accusative's", "output": "â â ’⠥⠎â â žâ Šâ §â ‘â „â Ž" }, { "input": "accusatives", "output": "â â ’⠥⠎â â žâ Šâ §â ‘â Ž" }, { "input": "accusatory", "output": "â â ’⠥⠎â â žâ •â —â ½" }, { "input": "accuse", "output": "â â ’⠥⠎⠑" }, { "input": "accused", "output": "â â ’⠥⠎⠫" }, { "input": "accuser", "output": "â â ’⠥⠎⠻" }, { "input": "accuser's", "output": "â â ’⠥⠎⠻⠄⠎" }, { "input": "accusers", "output": "â â ’⠥⠎⠻⠎" }, { "input": "accuses", "output": "â â ’⠥⠎⠑⠎" }, { "input": "accusing", "output": "â â ’⠥⠎⠌" }, { "input": "accusingly", "output": "â â ’⠥⠎⠌⠇⠽" }, { "input": "accustom", "output": "â â ’⠥⠌⠕â " }, { "input": "accustomed", "output": "â â ’⠥⠌⠕â â «" }, { "input": "accustoming", "output": "â â ’⠥⠌⠕â â Œ" }, { "input": "accustoms", "output": "â â ’⠥⠌⠕â â Ž" }, { "input": "ace", "output": "â â ‰â ‘" }, { "input": "ace's", "output": "â â ‰â ‘â „â Ž" }, { "input": "aced", "output": "â â ‰â «" }, { "input": "acerbate", "output": "â â ‰â »â ƒâ â žâ ‘" }, { "input": "acerbated", "output": "â â ‰â »â ƒâ â žâ «" }, { "input": "acerbates", "output": "â â ‰â »â ƒâ â žâ ‘â Ž" }, { "input": "acerbating", "output": "â â ‰â »â ƒâ â žâ Œ" }, { "input": "acerbic", "output": "â â ‰â »â ƒâ Šâ ‰" }, { "input": "acerbically", "output": "â â ‰â »â ƒâ Šâ ‰â  â ½" }, { "input": "acerbity", "output": "â â ‰â »â ƒâ °â ½" }, { "input": "acerbity's", "output": "â â ‰â »â ƒâ °â ½â „â Ž" }, { "input": "aces", "output": "â â ‰â ‘â Ž" }, { "input": "acetaminophen", "output": "â â ‰â ‘â žâ â â ”â •â â “â ¢" }, { "input": "acetaminophen's", "output": "â â ‰â ‘â žâ â â ”â •â â “⠢⠄⠎" }, { "input": "acetate", "output": "â â ‰â ‘â žâ â žâ ‘" }, { "input": "acetate's", "output": "â â ‰â ‘â žâ â žâ ‘â „â Ž" }, { "input": "acetates", "output": "â â ‰â ‘â žâ â žâ ‘â Ž" }, { "input": "acetic", "output": "â â ‰â ‘â žâ Šâ ‰" }, { "input": "acetone", "output": "â â ‰â ‘â žâ â •" }, { "input": "acetone's", "output": "â â ‰â ‘â žâ â •â „â Ž" }, { "input": "acetonic", "output": "â â ‰â ‘â žâ •â â Šâ ‰" }, { "input": "acetylene", "output": "â â ‰â ‘⠞⠽⠇⠢⠑" }, { "input": "acetylene's", "output": "â â ‰â ‘⠞⠽⠇⠢⠑⠄⠎" }, { "input": "ache", "output": "â â ¡â ‘" }, { "input": "ache's", "output": "â â ¡â ‘â „â Ž" }, { "input": "ached", "output": "â â ¡â «" }, { "input": "achene", "output": "â â ¡â ¢â ‘" }, { "input": "achene's", "output": "â â ¡â ¢â ‘â „â Ž" }, { "input": "achenes", "output": "â â ¡â ¢â ‘â Ž" }, { "input": "aches", "output": "â â ¡â ‘â Ž" }, { "input": "achier", "output": "â â ¡â Šâ »" }, { "input": "achiest", "output": "â â ¡â Šâ ‘â Œ" }, { "input": "achievable", "output": "â â ¡â Šâ ‘â §â â ¼" }, { "input": "achieve", "output": "â â ¡â Šâ ‘â §â ‘" }, { "input": "achieved", "output": "â â ¡â Šâ ‘â §â «" }, { "input": "achievement", "output": "â â ¡â Šâ ‘â §â ‘â °â ž" }, { "input": "achievement's", "output": "â â ¡â Šâ ‘â §â ‘â °â žâ „â Ž" }, { "input": "achievements", "output": "â â ¡â Šâ ‘â §â ‘â °â žâ Ž" }, { "input": "achiever", "output": "â â ¡â Šâ ‘â §â »" }, { "input": "achiever's", "output": "â â ¡â Šâ ‘⠧⠻⠄⠎" }, { "input": "achievers", "output": "â â ¡â Šâ ‘⠧⠻⠎" }, { "input": "achieves", "output": "â â ¡â Šâ ‘â §â ‘â Ž" }, { "input": "achieving", "output": "â â ¡â Šâ ‘â §â Œ" }, { "input": "aching", "output": "â â ¡â Œ" }, { "input": "achoo", "output": "â â ¡â •â •" }, { "input": "achoo's", "output": "â â ¡â •â •â „â Ž" }, { "input": "achromatic", "output": "â â ¡â —â •â â â žâ Šâ ‰" }, { "input": "achy", "output": "â â ¡â ½" }, { "input": "acid", "output": "â â ‰â Šâ ™" }, { "input": "acid's", "output": "â â ‰â Šâ ™â „â Ž" }, { "input": "acidic", "output": "â â ‰â Šâ ™â Šâ ‰" }, { "input": "acidified", "output": "â â ‰â Šâ ™â Šâ ‹â Šâ «" }, { "input": "acidifies", "output": "â â ‰â Šâ ™â Šâ ‹â Šâ ‘â Ž" }, { "input": "acidify", "output": "â â ‰â Šâ ™â Šâ ‹â ½" }, { "input": "acidifying", "output": "â â ‰â Šâ ™â Šâ ‹â ½â Œ" }, { "input": "acidity", "output": "â â ‰â Šâ ™â °â ½" }, { "input": "acidity's", "output": "â â ‰â Šâ ™â °â ½â „â Ž" }, { "input": "acidly", "output": "â â ‰â Šâ ™â ‡â ½" }, { "input": "acidosis", "output": "â â ‰â Šâ ™â •â Žâ Šâ Ž" }, { "input": "acidosis's", "output": "â â ‰â Šâ ™â •â Žâ Šâ Žâ „â Ž" }, { "input": "acids", "output": "â â ‰â Šâ ™â Ž" }, { "input": "acidulous", "output": "â â ‰â Šâ ™â ¥â ‡â ³â Ž" }, { "input": "acing", "output": "â â ‰â Œ" }, { "input": "acknowledge", "output": "â â ‰â â …⠇⠫⠛⠑" }, { "input": "acknowledged", "output": "â â ‰â â …⠇⠫⠛⠫" }, { "input": "acknowledges", "output": "â â ‰â â …⠇⠫⠛⠑⠎" }, { "input": "acknowledging", "output": "â â ‰â â …⠇⠫⠛⠌" }, { "input": "acknowledgment", "output": "â â ‰â â …⠇⠫⠛⠰⠞" }, { "input": "acknowledgment's", "output": "â â ‰â â …⠇⠫⠛⠰⠞⠄⠎" }, { "input": "acknowledgments", "output": "â â ‰â â …⠇⠫⠛⠰⠞⠎" }, { "input": "acme", "output": "â â ‰â â ‘" }, { "input": "acme's", "output": "â â ‰â â ‘â „â Ž" }, { "input": "acmes", "output": "â â ‰â â ‘â Ž" }, { "input": "acne", "output": "â â ‰â â ‘" }, { "input": "acne's", "output": "â â ‰â â ‘â „â Ž" }, { "input": "acolyte", "output": "â â ‰â •⠇⠽⠞⠑" }, { "input": "acolyte's", "output": "â â ‰â •⠇⠽⠞⠑⠄⠎" }, { "input": "acolytes", "output": "â â ‰â •⠇⠽⠞⠑⠎" }, { "input": "aconite", "output": "â â ‰â •â â Šâ žâ ‘" }, { "input": "aconite's", "output": "â â ‰â •â â Šâ žâ ‘â „â Ž" }, { "input": "aconites", "output": "â â ‰â •â â Šâ žâ ‘â Ž" }, { "input": "acorn", "output": "â â ‰â •â —â " }, { "input": "acorn's", "output": "â â ‰â •â —â â „â Ž" }, { "input": "acorns", "output": "â â ‰â •â —â â Ž" }, { "input": "acoustic", "output": "â â ‰â ³â Œâ Šâ ‰" }, { "input": "acoustical", "output": "â â ‰â ³â Œâ Šâ ‰â â ‡" }, { "input": "acoustically", "output": "â â ‰â ³â Œâ Šâ ‰â  â ½" }, { "input": "acoustics", "output": "â â ‰â ³â Œâ Šâ ‰â Ž" }, { "input": "acoustics's", "output": "â â ‰â ³â Œâ Šâ ‰â Žâ „â Ž" }, { "input": "acquaint", "output": "â â ‰â Ÿâ ¥â â ”â ž" }, { "input": "acquaintance", "output": "â â ‰â Ÿâ ¥â â ”⠞⠨⠑" }, { "input": "acquaintance's", "output": "â â ‰â Ÿâ ¥â â ”⠞⠨⠑⠄⠎" }, { "input": "acquaintances", "output": "â â ‰â Ÿâ ¥â â ”⠞⠨⠑⠎" }, { "input": "acquaintanceship's", "output": "â â ‰â Ÿâ ¥â â ”⠞⠨⠑⠩⠊â â „â Ž" }, { "input": "acquainted", "output": "â â ‰â Ÿâ ¥â â ”â žâ «" }, { "input": "acquainting", "output": "â â ‰â Ÿâ ¥â â ”â žâ Œ" }, { "input": "acquaints", "output": "â â ‰â Ÿâ ¥â â ”â žâ Ž" }, { "input": "acquiesce", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠑" }, { "input": "acquiesced", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠫" }, { "input": "acquiescence", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠰⠑" }, { "input": "acquiescence's", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠰⠑⠄⠎" }, { "input": "acquiescent", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠢⠞" }, { "input": "acquiescently", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠢⠞⠇⠽" }, { "input": "acquiesces", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠑⠎" }, { "input": "acquiescing", "output": "â â ‰â Ÿâ ¥â Šâ ‘⠎⠉⠌" }, { "input": "acquirable", "output": "â â ‰â Ÿâ ¥â Šâ —â â ¼" }, { "input": "acquire", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘" }, { "input": "acquired", "output": "â â ‰â Ÿâ ¥â Šâ —â «" }, { "input": "acquirement", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘â °â ž" }, { "input": "acquirement's", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘â °â žâ „â Ž" }, { "input": "acquires", "output": "â â ‰â Ÿâ ¥â Šâ —â ‘â Ž" }, { "input": "acquiring", "output": "â â ‰â Ÿâ ¥â Šâ —â Œ" }, { "input": "acquisition", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ °â " }, { "input": "acquisition's", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ °â â „â Ž" }, { "input": "acquisitions", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ °â â Ž" }, { "input": "acquisitive", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ žâ Šâ §â ‘" }, { "input": "acquisitively", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "acquisitiveness", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "acquisitiveness's", "output": "â â ‰â Ÿâ ¥â Šâ Žâ Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "acquit", "output": "â â ‰â Ÿâ ¥â Šâ ž" }, { "input": "acquits", "output": "â â ‰â Ÿâ ¥â Šâ žâ Ž" }, { "input": "acquittal", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ â ‡" }, { "input": "acquittal's", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ â ‡â „â Ž" }, { "input": "acquittals", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ â ‡â Ž" }, { "input": "acquitted", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ «" }, { "input": "acquitting", "output": "â â ‰â Ÿâ ¥â Šâ žâ žâ Œ" }, { "input": "acre", "output": "â â ‰â —â ‘" }, { "input": "acre's", "output": "â â ‰â —â ‘â „â Ž" }, { "input": "acreage", "output": "â â ‰â —â ‘â â ›â ‘" }, { "input": "acreage's", "output": "â â ‰â —â ‘â â ›â ‘â „â Ž" }, { "input": "acreages", "output": "â â ‰â —â ‘â â ›â ‘â Ž" }, { "input": "acres", "output": "â â ‰â —â ‘â Ž" }, { "input": "acrid", "output": "â â ‰â —â Šâ ™" }, { "input": "acrider", "output": "â â ‰â —⠊⠙⠻" }, { "input": "acridest", "output": "â â ‰â —⠊⠙⠑⠌" }, { "input": "acridity", "output": "â â ‰â —⠊⠙⠰⠽" }, { "input": "acridity's", "output": "â â ‰â —⠊⠙⠰⠽⠄⠎" }, { "input": "acridly", "output": "â â ‰â —⠊⠙⠇⠽" }, { "input": "acridness", "output": "â â ‰â —⠊⠙⠰⠎" }, { "input": "acridness's", "output": "â â ‰â —⠊⠙⠰⠎⠄⠎" }, { "input": "acrimonious", "output": "â â ‰â —â Šâ â •â â Šâ ³â Ž" }, { "input": "acrimoniousness", "output": "â â ‰â —â Šâ â •â â Šâ ³â Žâ °â Ž" }, { "input": "acrimoniousness's", "output": "â â ‰â —â Šâ â •â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "acrimony", "output": "â â ‰â —â Šâ â •â â ½" }, { "input": "acrimony's", "output": "â â ‰â —â Šâ â •â â ½â „â Ž" }, { "input": "acrobat", "output": "â â ‰â —â •â ƒâ â ž" }, { "input": "acrobat's", "output": "â â ‰â —â •â ƒâ â žâ „â Ž" }, { "input": "acrobatic", "output": "â â ‰â —â •â ƒâ â žâ Šâ ‰" }, { "input": "acrobatically", "output": "â â ‰â —â •â ƒâ â žâ Šâ ‰â  â ½" }, { "input": "acrobatics", "output": "â â ‰â —â •â ƒâ â žâ Šâ ‰â Ž" }, { "input": "acrobatics's", "output": "â â ‰â —â •â ƒâ â žâ Šâ ‰â Žâ „â Ž" }, { "input": "acrobats", "output": "â â ‰â —â •â ƒâ â žâ Ž" }, { "input": "acronym", "output": "â â ‰â —â •â â ½â " }, { "input": "acronym's", "output": "â â ‰â —â •â â ½â â „â Ž" }, { "input": "acronyms", "output": "â â ‰â —â •â â ½â â Ž" }, { "input": "acrophobia", "output": "â â ‰â —â •â â “⠕⠃⠊â " }, { "input": "acrophobia's", "output": "â â ‰â —â •â â “⠕⠃⠊â â „â Ž" }, { "input": "acropolis", "output": "â â ‰â —â •â â •⠇⠊⠎" }, { "input": "acropolis's", "output": "â â ‰â —â •â â •⠇⠊⠎⠄⠎" }, { "input": "acropolises", "output": "â â ‰â —â •â â •⠇⠊⠎⠑⠎" }, { "input": "across", "output": "â â ‰â —" }, { "input": "acrostic", "output": "â â ‰â —⠕⠌⠊⠉" }, { "input": "acrostic's", "output": "â â ‰â —⠕⠌⠊⠉⠄⠎" }, { "input": "acrostics", "output": "â â ‰â —⠕⠌⠊⠉⠎" }, { "input": "acrylic", "output": "â â ‰â —⠽⠇⠊⠉" }, { "input": "acrylic's", "output": "â â ‰â —⠽⠇⠊⠉⠄⠎" }, { "input": "acrylics", "output": "â â ‰â —⠽⠇⠊⠉⠎" }, { "input": "act", "output": "â â ‰â ž" }, { "input": "act's", "output": "â â ‰â žâ „â Ž" }, { "input": "acted", "output": "â â ‰â žâ «" }, { "input": "acting", "output": "â â ‰â žâ Œ" }, { "input": "acting's", "output": "â â ‰â žâ Œâ „â Ž" }, { "input": "actinium", "output": "â â ‰â žâ ”â Šâ ¥â " }, { "input": "actinium's", "output": "â â ‰â žâ ”â Šâ ¥â â „â Ž" }, { "input": "action", "output": "â â ‰â °â " }, { "input": "action's", "output": "â â ‰â °â â „â Ž" }, { "input": "actionable", "output": "â â ‰â °â â â ¼" }, { "input": "actions", "output": "â â ‰â °â â Ž" }, { "input": "activate", "output": "â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "activated", "output": "â â ‰â žâ Šâ §â â žâ «" }, { "input": "activates", "output": "â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "activating", "output": "â â ‰â žâ Šâ §â â žâ Œ" }, { "input": "activation", "output": "â â ‰â žâ Šâ §â  â " }, { "input": "activation's", "output": "â â ‰â žâ Šâ §â  â â „â Ž" }, { "input": "activator", "output": "â â ‰â žâ Šâ §â â žâ •â —" }, { "input": "activator's", "output": "â â ‰â žâ Šâ §â â žâ •â —â „â Ž" }, { "input": "activators", "output": "â â ‰â žâ Šâ §â â žâ •â —â Ž" }, { "input": "active", "output": "â â ‰â žâ Šâ §â ‘" }, { "input": "active's", "output": "â â ‰â žâ Šâ §â ‘â „â Ž" }, { "input": "actively", "output": "â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "activeness", "output": "â â ‰â žâ Šâ §â ‘â °â Ž" }, { "input": "activeness's", "output": "â â ‰â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "actives", "output": "â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "activism", "output": "â â ‰â žâ Šâ §â Šâ Žâ " }, { "input": "activism's", "output": "â â ‰â žâ Šâ §â Šâ Žâ â „â Ž" }, { "input": "activist", "output": "â â ‰â žâ Šâ §â Šâ Œ" }, { "input": "activist's", "output": "â â ‰â žâ Šâ §â Šâ Œâ „â Ž" }, { "input": "activists", "output": "â â ‰â žâ Šâ §â Šâ Œâ Ž" }, { "input": "activities", "output": "â â ‰â žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "activity", "output": "â â ‰â žâ Šâ §â °â ½" }, { "input": "activity's", "output": "â â ‰â žâ Šâ §â °â ½â „â Ž" }, { "input": "actor", "output": "â â ‰â žâ •â —" }, { "input": "actor's", "output": "â â ‰â žâ •â —â „â Ž" }, { "input": "actors", "output": "â â ‰â žâ •â —â Ž" }, { "input": "actress", "output": "â â ‰â žâ —â ‘â Žâ Ž" }, { "input": "actress's", "output": "â â ‰â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "actresses", "output": "â â ‰â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "acts", "output": "â â ‰â žâ Ž" }, { "input": "actual", "output": "â â ‰â žâ ¥â â ‡" }, { "input": "actualities", "output": "â â ‰â žâ ¥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "actuality", "output": "â â ‰â žâ ¥â â ‡â °â ½" }, { "input": "actuality's", "output": "â â ‰â žâ ¥â â ‡â °â ½â „â Ž" }, { "input": "actualization", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ  â " }, { "input": "actualization's", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ  â â „â Ž" }, { "input": "actualize", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "actualized", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ «" }, { "input": "actualizes", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "actualizing", "output": "â â ‰â žâ ¥â â ‡â Šâ µâ Œ" }, { "input": "actually", "output": "â â ‰â žâ ¥â  â ½" }, { "input": "actuarial", "output": "â â ‰â žâ ¥â œâ Šâ â ‡" }, { "input": "actuaries", "output": "â â ‰â žâ ¥â œâ Šâ ‘â Ž" }, { "input": "actuary", "output": "â â ‰â žâ ¥â œâ ½" }, { "input": "actuary's", "output": "â â ‰â žâ ¥â œâ ½â „â Ž" }, { "input": "actuate", "output": "â â ‰â žâ ¥â â žâ ‘" }, { "input": "actuated", "output": "â â ‰â žâ ¥â â žâ «" }, { "input": "actuates", "output": "â â ‰â žâ ¥â â žâ ‘â Ž" }, { "input": "actuating", "output": "â â ‰â žâ ¥â â žâ Œ" }, { "input": "actuation", "output": "â â ‰â žâ ¥â  â " }, { "input": "actuation's", "output": "â â ‰â žâ ¥â  â â „â Ž" }, { "input": "actuator", "output": "â â ‰â žâ ¥â â žâ •â —" }, { "input": "actuator's", "output": "â â ‰â žâ ¥â â žâ •â —â „â Ž" }, { "input": "actuators", "output": "â â ‰â žâ ¥â â žâ •â —â Ž" }, { "input": "acuity", "output": "â â ‰â ¥â °â ½" }, { "input": "acuity's", "output": "â â ‰â ¥â °â ½â „â Ž" }, { "input": "acumen", "output": "â â ‰â ¥â â ¢" }, { "input": "acumen's", "output": "â â ‰â ¥â â ¢â „â Ž" }, { "input": "acupressure's", "output": "â â ‰â ¥â â —⠑⠎⠎⠥⠗⠑⠄⠎" }, { "input": "acupuncture", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —â ‘" }, { "input": "acupuncture's", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "acupuncturist", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —â Šâ Œ" }, { "input": "acupuncturist's", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —⠊⠌⠄⠎" }, { "input": "acupuncturists", "output": "â â ‰â ¥â â ¥â â ‰â žâ ¥â —⠊⠌⠎" }, { "input": "acute", "output": "â â ‰â ¥â žâ ‘" }, { "input": "acute's", "output": "â â ‰â ¥â žâ ‘â „â Ž" }, { "input": "acutely", "output": "â â ‰â ¥â žâ ‘⠇⠽" }, { "input": "acuteness", "output": "â â ‰â ¥â žâ ‘â °â Ž" }, { "input": "acuteness's", "output": "â â ‰â ¥â žâ ‘â °â Žâ „â Ž" }, { "input": "acuter", "output": "â â ‰â ¥â žâ »" }, { "input": "acutes", "output": "â â ‰â ¥â žâ ‘â Ž" }, { "input": "acutest", "output": "â â ‰â ¥â žâ ‘â Œ" }, { "input": "acyclovir", "output": "â â ‰â ½â ‰â ‡â •â §â Šâ —" }, { "input": "acyclovir's", "output": "â â ‰â ½â ‰â ‡â •â §â Šâ —â „â Ž" }, { "input": "ad", "output": "â â ™" }, { "input": "ad's", "output": "â â ™â „â Ž" }, { "input": "adage", "output": "â â ™â â ›â ‘" }, { "input": "adage's", "output": "â â ™â â ›â ‘â „â Ž" }, { "input": "adages", "output": "â â ™â â ›â ‘â Ž" }, { "input": "adagio", "output": "â â ™â â ›â Šâ •" }, { "input": "adagio's", "output": "â â ™â â ›â Šâ •â „â Ž" }, { "input": "adagios", "output": "â â ™â â ›â Šâ •â Ž" }, { "input": "adamant", "output": "â â ™â â â â â ž" }, { "input": "adamant's", "output": "â â ™â â â â â žâ „â Ž" }, { "input": "adamantly", "output": "â â ™â â â â â žâ ‡â ½" }, { "input": "adapt", "output": "â â ™â â â ž" }, { "input": "adaptability", "output": "â â ™â â â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "adaptability's", "output": "â â ™â â â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "adaptable", "output": "â â ™â â â žâ â ¼" }, { "input": "adaptation", "output": "â â ™â â â žâ  â " }, { "input": "adaptation's", "output": "â â ™â â â žâ  â â „â Ž" }, { "input": "adaptations", "output": "â â ™â â â žâ  â â Ž" }, { "input": "adapted", "output": "â â ™â â â žâ «" }, { "input": "adapter", "output": "â â ™â â â žâ »" }, { "input": "adapter's", "output": "â â ™â â â žâ »â „â Ž" }, { "input": "adapters", "output": "â â ™â â â žâ »â Ž" }, { "input": "adapting", "output": "â â ™â â â žâ Œ" }, { "input": "adaptive", "output": "â â ™â â â žâ Šâ §â ‘" }, { "input": "adapts", "output": "â â ™â â â žâ Ž" }, { "input": "add", "output": "â â ™â ™" }, { "input": "addable", "output": "â â ²â â ¼" }, { "input": "added", "output": "â â ²â «" }, { "input": "addend", "output": "â â ²â ¢â ™" }, { "input": "addend's", "output": "â â ²â ¢â ™â „â Ž" }, { "input": "addenda", "output": "â â ²â ¢â ™â " }, { "input": "addends", "output": "â â ²â ¢â ™â Ž" }, { "input": "addendum", "output": "â â ²â ¢â ™â ¥â " }, { "input": "addendum's", "output": "â â ²â ¢â ™â ¥â â „â Ž" }, { "input": "adder", "output": "â â ²â »" }, { "input": "adder's", "output": "â â ²â »â „â Ž" }, { "input": "adders", "output": "â â ²â »â Ž" }, { "input": "addict", "output": "â â ²â Šâ ‰â ž" }, { "input": "addict's", "output": "â â ²â Šâ ‰â žâ „â Ž" }, { "input": "addicted", "output": "â â ²â Šâ ‰â žâ «" }, { "input": "addicting", "output": "â â ²â Šâ ‰â žâ Œ" }, { "input": "addiction", "output": "â â ²â Šâ ‰â °â " }, { "input": "addiction's", "output": "â â ²â Šâ ‰â °â â „â Ž" }, { "input": "addictions", "output": "â â ²â Šâ ‰â °â â Ž" }, { "input": "addictive", "output": "â â ²â Šâ ‰â žâ Šâ §â ‘" }, { "input": "addicts", "output": "â â ²â Šâ ‰â žâ Ž" }, { "input": "adding", "output": "â â ²â Œ" }, { "input": "addition", "output": "â â ²â Šâ °â " }, { "input": "addition's", "output": "â â ²â Šâ °â â „â Ž" }, { "input": "additional", "output": "â â ²â Šâ °â â â ‡" }, { "input": "additionally", "output": "â â ²â Šâ °â â  â ½" }, { "input": "additions", "output": "â â ²â Šâ °â â Ž" }, { "input": "additive", "output": "â â ²â Šâ žâ Šâ §â ‘" }, { "input": "additive's", "output": "â â ²â Šâ žâ Šâ §â ‘â „â Ž" }, { "input": "additives", "output": "â â ²â Šâ žâ Šâ §â ‘â Ž" }, { "input": "addle", "output": "â â ²â ‡â ‘" }, { "input": "addled", "output": "â â ²â ‡â «" }, { "input": "addles", "output": "â â ²â ‡â ‘â Ž" }, { "input": "addling", "output": "â â ²â ‡â Œ" }, { "input": "address", "output": "â â ²â —â ‘â Žâ Ž" }, { "input": "address's", "output": "â â ²â —â ‘â Žâ Žâ „â Ž" }, { "input": "addressable", "output": "â â ²â —â ‘â Žâ Žâ â ¼" }, { "input": "addressed", "output": "â â ²â —â ‘â Žâ Žâ «" }, { "input": "addressee", "output": "â â ²â —â ‘â Žâ Žâ ‘â ‘" }, { "input": "addressee's", "output": "â â ²â —â ‘â Žâ Žâ ‘â ‘â „â Ž" }, { "input": "addressees", "output": "â â ²â —â ‘â Žâ Žâ ‘â ‘â Ž" }, { "input": "addresses", "output": "â â ²â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "addressing", "output": "â â ²â —â ‘â Žâ Žâ Œ" }, { "input": "adds", "output": "â â ²â Ž" }, { "input": "adduce", "output": "â â ²â ¥â ‰â ‘" }, { "input": "adduced", "output": "â â ²â ¥â ‰â «" }, { "input": "adduces", "output": "â â ²â ¥â ‰â ‘â Ž" }, { "input": "adducing", "output": "â â ²â ¥â ‰â Œ" }, { "input": "adenine", "output": "â â ™â ¢â ”â ‘" }, { "input": "adenine's", "output": "â â ™â ¢â ”â ‘â „â Ž" }, { "input": "adenoid", "output": "â â ™â ¢â •â Šâ ™" }, { "input": "adenoid's", "output": "â â ™â ¢â •⠊⠙⠄⠎" }, { "input": "adenoidal", "output": "â â ™â ¢â •â Šâ ™â â ‡" }, { "input": "adenoids", "output": "â â ™â ¢â •⠊⠙⠎" }, { "input": "adept", "output": "â â ™â ‘â â ž" }, { "input": "adept's", "output": "â â ™â ‘â â žâ „â Ž" }, { "input": "adeptly", "output": "â â ™â ‘â â žâ ‡â ½" }, { "input": "adeptness", "output": "â â ™â ‘â â žâ °â Ž" }, { "input": "adeptness's", "output": "â â ™â ‘â â žâ °â Žâ „â Ž" }, { "input": "adepts", "output": "â â ™â ‘â â žâ Ž" }, { "input": "adequacy", "output": "â â ™â ‘â Ÿâ ¥â â ‰â ½" }, { "input": "adequacy's", "output": "â â ™â ‘â Ÿâ ¥â â ‰â ½â „â Ž" }, { "input": "adequate", "output": "â â ™â ‘â Ÿâ ¥â â žâ ‘" }, { "input": "adequately", "output": "â â ™â ‘â Ÿâ ¥â â žâ ‘⠇⠽" }, { "input": "adequateness", "output": "â â ™â ‘â Ÿâ ¥â â žâ ‘â °â Ž" }, { "input": "adequateness's", "output": "â â ™â ‘â Ÿâ ¥â â žâ ‘â °â Žâ „â Ž" }, { "input": "adhere", "output": "â â ™â â “" }, { "input": "adhered", "output": "â â ™â “⠻⠫" }, { "input": "adherence", "output": "â â ™â “⠻⠰⠑" }, { "input": "adherence's", "output": "â â ™â “⠻⠰⠑⠄⠎" }, { "input": "adherent", "output": "â â ™â “⠻⠢⠞" }, { "input": "adherent's", "output": "â â ™â “⠻⠢⠞⠄⠎" }, { "input": "adherents", "output": "â â ™â “⠻⠢⠞⠎" }, { "input": "adheres", "output": "â â ™â â “â Ž" }, { "input": "adhering", "output": "â â ™â “⠻⠌" }, { "input": "adhesion", "output": "â â ™â “â ‘â ¨â " }, { "input": "adhesion's", "output": "â â ™â “â ‘â ¨â â „â Ž" }, { "input": "adhesive", "output": "â â ™â “â ‘â Žâ Šâ §â ‘" }, { "input": "adhesive's", "output": "â â ™â “â ‘â Žâ Šâ §â ‘â „â Ž" }, { "input": "adhesiveness", "output": "â â ™â “â ‘â Žâ Šâ §â ‘â °â Ž" }, { "input": "adhesiveness's", "output": "â â ™â “â ‘â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "adhesives", "output": "â â ™â “â ‘â Žâ Šâ §â ‘â Ž" }, { "input": "adiabatic", "output": "â â ™â Šâ â ƒâ â žâ Šâ ‰" }, { "input": "adieu", "output": "â â ™â Šâ ‘â ¥" }, { "input": "adieu's", "output": "â â ™â Šâ ‘⠥⠄⠎" }, { "input": "adieus", "output": "â â ™â Šâ ‘⠥⠎" }, { "input": "adipose", "output": "â â ™â Šâ â •â Žâ ‘" }, { "input": "adjacency", "output": "â â ™â šâ â ‰â ¢â ‰â ½" }, { "input": "adjacency's", "output": "â â ™â šâ â ‰â ¢â ‰â ½â „â Ž" }, { "input": "adjacent", "output": "â â ™â šâ â ‰â ¢â ž" }, { "input": "adjacently", "output": "â â ™â šâ â ‰â ¢â žâ ‡â ½" }, { "input": "adjectival", "output": "â â ™â šâ ‘⠉⠞⠊⠧â â ‡" }, { "input": "adjectivally", "output": "â â ™â šâ ‘⠉⠞⠊⠧⠠⠽" }, { "input": "adjective", "output": "â â ™â šâ ‘⠉⠞⠊⠧⠑" }, { "input": "adjective's", "output": "â â ™â šâ ‘⠉⠞⠊⠧⠑⠄⠎" }, { "input": "adjectives", "output": "â â ™â šâ ‘⠉⠞⠊⠧⠑⠎" }, { "input": "adjoin", "output": "â â ™â šâ •â ”" }, { "input": "adjoined", "output": "â â ™â šâ •⠔⠫" }, { "input": "adjoining", "output": "â â ™â šâ •⠔⠌" }, { "input": "adjoins", "output": "â â ™â šâ •⠔⠎" }, { "input": "adjourn", "output": "â â ™â šâ ³â —â " }, { "input": "adjourned", "output": "â â ™â šâ ³â —â â «" }, { "input": "adjourning", "output": "â â ™â šâ ³â —â â Œ" }, { "input": "adjournment", "output": "â â ™â šâ ³â —â â °â ž" }, { "input": "adjournment's", "output": "â â ™â šâ ³â —â â °â žâ „â Ž" }, { "input": "adjournments", "output": "â â ™â šâ ³â —â â °â žâ Ž" }, { "input": "adjourns", "output": "â â ™â šâ ³â —â â Ž" }, { "input": "adjudge", "output": "â â ™â šâ ¥â ™â ›â ‘" }, { "input": "adjudged", "output": "â â ™â šâ ¥â ™â ›â «" }, { "input": "adjudges", "output": "â â ™â šâ ¥â ™â ›â ‘â Ž" }, { "input": "adjudging", "output": "â â ™â šâ ¥â ™â ›â Œ" }, { "input": "adjudicate", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ ‘" }, { "input": "adjudicated", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ «" }, { "input": "adjudicates", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "adjudicating", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ Œ" }, { "input": "adjudication", "output": "â â ™â šâ ¥â ™â Šâ ‰â  â " }, { "input": "adjudication's", "output": "â â ™â šâ ¥â ™â Šâ ‰â  â â „â Ž" }, { "input": "adjudicative", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "adjudicator", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ •â —" }, { "input": "adjudicator's", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ •â —â „â Ž" }, { "input": "adjudicators", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ •â —â Ž" }, { "input": "adjudicatory", "output": "â â ™â šâ ¥â ™â Šâ ‰â â žâ •â —â ½" }, { "input": "adjunct", "output": "â â ™â šâ ¥â â ‰â ž" }, { "input": "adjunct's", "output": "â â ™â šâ ¥â â ‰â žâ „â Ž" }, { "input": "adjuncts", "output": "â â ™â šâ ¥â â ‰â žâ Ž" }, { "input": "adjuration", "output": "â â ™â šâ ¥â —â  â " }, { "input": "adjuration's", "output": "â â ™â šâ ¥â —â  â â „â Ž" }, { "input": "adjurations", "output": "â â ™â šâ ¥â —â  â â Ž" }, { "input": "adjure", "output": "â â ™â šâ ¥â —â ‘" }, { "input": "adjured", "output": "â â ™â šâ ¥â —â «" }, { "input": "adjures", "output": "â â ™â šâ ¥â —â ‘â Ž" }, { "input": "adjuring", "output": "â â ™â šâ ¥â —â Œ" }, { "input": "adjust", "output": "â â ™â šâ ¥â Œ" }, { "input": "adjustable", "output": "â â ™â šâ ¥â Œâ â ¼" }, { "input": "adjusted", "output": "â â ™â šâ ¥â Œâ «" }, { "input": "adjuster", "output": "â â ™â šâ ¥â Œâ »" }, { "input": "adjuster's", "output": "â â ™â šâ ¥â Œâ »â „â Ž" }, { "input": "adjusters", "output": "â â ™â šâ ¥â Œâ »â Ž" }, { "input": "adjusting", "output": "â â ™â šâ ¥â Œâ Œ" }, { "input": "adjustment", "output": "â â ™â šâ ¥â Œâ °â ž" }, { "input": "adjustment's", "output": "â â ™â šâ ¥â Œâ °â žâ „â Ž" }, { "input": "adjustments", "output": "â â ™â šâ ¥â Œâ °â žâ Ž" }, { "input": "adjusts", "output": "â â ™â šâ ¥â Œâ Ž" }, { "input": "adjutant", "output": "â â ™â šâ ¥â žâ â â ž" }, { "input": "adjutant's", "output": "â â ™â šâ ¥â žâ â â žâ „â Ž" }, { "input": "adjutants", "output": "â â ™â šâ ¥â žâ â â žâ Ž" }, { "input": "adman", "output": "â â ™â â â " }, { "input": "adman's", "output": "â â ™â â â â „â Ž" }, { "input": "admen", "output": "â â ™â â ¢" }, { "input": "administer", "output": "â â ™â â ”⠊⠌⠻" }, { "input": "administered", "output": "â â ™â â ”⠊⠌⠻⠫" }, { "input": "administering", "output": "â â ™â â ”⠊⠌⠻⠌" }, { "input": "administers", "output": "â â ™â â ”⠊⠌⠻⠎" }, { "input": "administrate", "output": "â â ™â â ”⠊⠌⠗â â žâ ‘" }, { "input": "administrated", "output": "â â ™â â ”⠊⠌⠗â â žâ «" }, { "input": "administrates", "output": "â â ™â â ”⠊⠌⠗â â žâ ‘â Ž" }, { "input": "administrating", "output": "â â ™â â ”⠊⠌⠗â â žâ Œ" }, { "input": "administration", "output": "â â ™â â ”⠊⠌⠗⠠â " }, { "input": "administration's", "output": "â â ™â â ”⠊⠌⠗⠠â â „â Ž" }, { "input": "administrations", "output": "â â ™â â ”⠊⠌⠗⠠â â Ž" }, { "input": "administrative", "output": "â â ™â â ”⠊⠌⠗â â žâ Šâ §â ‘" }, { "input": "administratively", "output": "â â ™â â ”⠊⠌⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "administrator", "output": "â â ™â â ”⠊⠌⠗â â žâ •â —" }, { "input": "administrator's", "output": "â â ™â â ”⠊⠌⠗â â žâ •â —â „â Ž" }, { "input": "administrators", "output": "â â ™â â ”⠊⠌⠗â â žâ •â —â Ž" }, { "input": "admirable", "output": "â â ™â â Šâ —â â ¼" }, { "input": "admirably", "output": "â â ™â â Šâ —â â ƒâ ‡â ½" }, { "input": "admiral", "output": "â â ™â â Šâ —â â ‡" }, { "input": "admiral's", "output": "â â ™â â Šâ —â â ‡â „â Ž" }, { "input": "admirals", "output": "â â ™â â Šâ —â â ‡â Ž" }, { "input": "admiralty", "output": "â â ™â â Šâ —â â ‡â žâ ½" }, { "input": "admiralty's", "output": "â â ™â â Šâ —â â ‡â žâ ½â „â Ž" }, { "input": "admiration", "output": "â â ™â â Šâ —â  â " }, { "input": "admiration's", "output": "â â ™â â Šâ —â  â â „â Ž" }, { "input": "admire", "output": "â â ™â â Šâ —â ‘" }, { "input": "admired", "output": "â â ™â â Šâ —â «" }, { "input": "admirer", "output": "â â ™â â Šâ —â »" }, { "input": "admirer's", "output": "â â ™â â Šâ —⠻⠄⠎" }, { "input": "admirers", "output": "â â ™â â Šâ —⠻⠎" }, { "input": "admires", "output": "â â ™â â Šâ —â ‘â Ž" }, { "input": "admiring", "output": "â â ™â â Šâ —â Œ" }, { "input": "admiringly", "output": "â â ™â â Šâ —⠌⠇⠽" }, { "input": "admissibility", "output": "â â ™â â Šâ Žâ Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "admissibility's", "output": "â â ™â â Šâ Žâ Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "admissible", "output": "â â ™â â Šâ Žâ Žâ Šâ ¼" }, { "input": "admissibly", "output": "â â ™â â Šâ Žâ Žâ Šâ ƒâ ‡â ½" }, { "input": "admission", "output": "â â ™â â Šâ Žâ ¨â " }, { "input": "admission's", "output": "â â ™â â Šâ Žâ ¨â â „â Ž" }, { "input": "admissions", "output": "â â ™â â Šâ Žâ ¨â â Ž" }, { "input": "admit", "output": "â â ™â â Šâ ž" }, { "input": "admits", "output": "â â ™â â Šâ žâ Ž" }, { "input": "admittance", "output": "â â ™â â Šâ žâ žâ ¨â ‘" }, { "input": "admittance's", "output": "â â ™â â Šâ žâ žâ ¨â ‘â „â Ž" }, { "input": "admitted", "output": "â â ™â â Šâ žâ žâ «" }, { "input": "admittedly", "output": "â â ™â â Šâ žâ žâ «â ‡â ½" }, { "input": "admitting", "output": "â â ™â â Šâ žâ žâ Œ" }, { "input": "admix", "output": "â â ™â â Šâ ­" }, { "input": "admixed", "output": "â â ™â â Šâ ­â «" }, { "input": "admixes", "output": "â â ™â â Šâ ­â ‘â Ž" }, { "input": "admixing", "output": "â â ™â â Šâ ­â Œ" }, { "input": "admixture", "output": "â â ™â â Šâ ­â žâ ¥â —â ‘" }, { "input": "admixture's", "output": "â â ™â â Šâ ­â žâ ¥â —â ‘â „â Ž" }, { "input": "admixtures", "output": "â â ™â â Šâ ­â žâ ¥â —â ‘â Ž" }, { "input": "admonish", "output": "â â ™â â •â â Šâ ©" }, { "input": "admonished", "output": "â â ™â â •â â Šâ ©â «" }, { "input": "admonishes", "output": "â â ™â â •â â Šâ ©â ‘â Ž" }, { "input": "admonishing", "output": "â â ™â â •â â Šâ ©â Œ" }, { "input": "admonishment", "output": "â â ™â â •â â Šâ ©â °â ž" }, { "input": "admonishment's", "output": "â â ™â â •â â Šâ ©â °â žâ „â Ž" }, { "input": "admonishments", "output": "â â ™â â •â â Šâ ©â °â žâ Ž" }, { "input": "admonition", "output": "â â ™â â •â â Šâ °â " }, { "input": "admonition's", "output": "â â ™â â •â â Šâ °â â „â Ž" }, { "input": "admonitions", "output": "â â ™â â •â â Šâ °â â Ž" }, { "input": "admonitory", "output": "â â ™â â •â â Šâ žâ •â —â ½" }, { "input": "ado", "output": "â â ™â •" }, { "input": "ado's", "output": "â â ™â •â „â Ž" }, { "input": "adobe", "output": "â â ™â •⠃⠑" }, { "input": "adobe's", "output": "â â ™â •⠃⠑⠄⠎" }, { "input": "adobes", "output": "â â ™â •⠃⠑⠎" }, { "input": "adolescence", "output": "â â ™â •⠇⠑⠎⠉⠰⠑" }, { "input": "adolescence's", "output": "â â ™â •⠇⠑⠎⠉⠰⠑⠄⠎" }, { "input": "adolescences", "output": "â â ™â •⠇⠑⠎⠉⠰⠑⠎" }, { "input": "adolescent", "output": "â â ™â •⠇⠑⠎⠉⠢⠞" }, { "input": "adolescent's", "output": "â â ™â •⠇⠑⠎⠉⠢⠞⠄⠎" }, { "input": "adolescents", "output": "â â ™â •⠇⠑⠎⠉⠢⠞⠎" }, { "input": "adopt", "output": "â â ™â •â â ž" }, { "input": "adoptable", "output": "â â ™â •â â žâ â ¼" }, { "input": "adopted", "output": "â â ™â •â â žâ «" }, { "input": "adopter", "output": "â â ™â •â â žâ »" }, { "input": "adopter's", "output": "â â ™â •â â žâ »â „â Ž" }, { "input": "adopters", "output": "â â ™â •â â žâ »â Ž" }, { "input": "adopting", "output": "â â ™â •â â žâ Œ" }, { "input": "adoption", "output": "â â ™â •â â °â " }, { "input": "adoption's", "output": "â â ™â •â â °â â „â Ž" }, { "input": "adoptions", "output": "â â ™â •â â °â â Ž" }, { "input": "adoptive", "output": "â â ™â •â â žâ Šâ §â ‘" }, { "input": "adopts", "output": "â â ™â •â â žâ Ž" }, { "input": "adorable", "output": "â â ™â •â —â â ¼" }, { "input": "adorableness", "output": "â â ™â •â —â â ¼â °â Ž" }, { "input": "adorableness's", "output": "â â ™â •â —â â ¼â °â Žâ „â Ž" }, { "input": "adorably", "output": "â â ™â •â —â â ƒâ ‡â ½" }, { "input": "adoration", "output": "â â ™â •â —â  â " }, { "input": "adoration's", "output": "â â ™â •â —â  â â „â Ž" }, { "input": "adore", "output": "â â ™â •â —â ‘" }, { "input": "adored", "output": "â â ™â •â —â «" }, { "input": "adorer", "output": "â â ™â •â —â »" }, { "input": "adorer's", "output": "â â ™â •⠗⠻⠄⠎" }, { "input": "adorers", "output": "â â ™â •⠗⠻⠎" }, { "input": "adores", "output": "â â ™â •â —â ‘â Ž" }, { "input": "adoring", "output": "â â ™â •â —â Œ" }, { "input": "adoringly", "output": "â â ™â •⠗⠌⠇⠽" }, { "input": "adorn", "output": "â â ™â •â —â " }, { "input": "adorned", "output": "â â ™â •â —â â «" }, { "input": "adorning", "output": "â â ™â •â —â â Œ" }, { "input": "adornment", "output": "â â ™â •â —â â °â ž" }, { "input": "adornment's", "output": "â â ™â •â —â â °â žâ „â Ž" }, { "input": "adornments", "output": "â â ™â •â —â â °â žâ Ž" }, { "input": "adorns", "output": "â â ™â •â —â â Ž" }, { "input": "adrenal", "output": "â â ™â —â ¢â â ‡" }, { "input": "adrenal's", "output": "â â ™â —â ¢â â ‡â „â Ž" }, { "input": "adrenalin's", "output": "â â ™â —â ¢â â ‡â ”â „â Ž" }, { "input": "adrenaline", "output": "â â ™â —â ¢â â ‡â ”â ‘" }, { "input": "adrenaline's", "output": "â â ™â —â ¢â â ‡â ”â ‘â „â Ž" }, { "input": "adrenals", "output": "â â ™â —â ¢â â ‡â Ž" }, { "input": "adrift", "output": "â â ™â —â Šâ ‹â ž" }, { "input": "adroit", "output": "â â ™â —â •â Šâ ž" }, { "input": "adroitly", "output": "â â ™â —⠕⠊⠞⠇⠽" }, { "input": "adroitness", "output": "â â ™â —â •â Šâ žâ °â Ž" }, { "input": "adroitness's", "output": "â â ™â —â •â Šâ žâ °â Žâ „â Ž" }, { "input": "ads", "output": "â â ™â Ž" }, { "input": "adsorb", "output": "â â ™â Žâ •â —â ƒ" }, { "input": "adsorbed", "output": "â â ™â Žâ •⠗⠃⠫" }, { "input": "adsorbent", "output": "â â ™â Žâ •⠗⠃⠢⠞" }, { "input": "adsorbent's", "output": "â â ™â Žâ •⠗⠃⠢⠞⠄⠎" }, { "input": "adsorbents", "output": "â â ™â Žâ •⠗⠃⠢⠞⠎" }, { "input": "adsorbing", "output": "â â ™â Žâ •⠗⠃⠌" }, { "input": "adsorbs", "output": "â â ™â Žâ •⠗⠃⠎" }, { "input": "adsorption", "output": "â â ™â Žâ •â —â â °â " }, { "input": "adsorption's", "output": "â â ™â Žâ •â —â â °â â „â Ž" }, { "input": "adsorptions", "output": "â â ™â Žâ •â —â â °â â Ž" }, { "input": "adulate", "output": "â â ™â ¥â ‡â â žâ ‘" }, { "input": "adulated", "output": "â â ™â ¥â ‡â â žâ «" }, { "input": "adulates", "output": "â â ™â ¥â ‡â â žâ ‘â Ž" }, { "input": "adulating", "output": "â â ™â ¥â ‡â â žâ Œ" }, { "input": "adulation", "output": "â â ™â ¥â ‡â  â " }, { "input": "adulation's", "output": "â â ™â ¥â ‡â  â â „â Ž" }, { "input": "adulator", "output": "â â ™â ¥â ‡â â žâ •â —" }, { "input": "adulator's", "output": "â â ™â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "adulators", "output": "â â ™â ¥â ‡â â žâ •â —â Ž" }, { "input": "adult", "output": "â â ™â ¥â ‡â ž" }, { "input": "adult's", "output": "â â ™â ¥â ‡â žâ „â Ž" }, { "input": "adulterant", "output": "â â ™â ¥â ‡â žâ »â â â ž" }, { "input": "adulterant's", "output": "â â ™â ¥â ‡â žâ »â â â žâ „â Ž" }, { "input": "adulterants", "output": "â â ™â ¥â ‡â žâ »â â â žâ Ž" }, { "input": "adulterate", "output": "â â ™â ¥â ‡â žâ »â â žâ ‘" }, { "input": "adulterated", "output": "â â ™â ¥â ‡â žâ »â â žâ «" }, { "input": "adulterates", "output": "â â ™â ¥â ‡â žâ »â â žâ ‘â Ž" }, { "input": "adulterating", "output": "â â ™â ¥â ‡â žâ »â â žâ Œ" }, { "input": "adulteration", "output": "â â ™â ¥â ‡â žâ »â  â " }, { "input": "adulteration's", "output": "â â ™â ¥â ‡â žâ »â  â â „â Ž" }, { "input": "adulterer", "output": "â â ™â ¥â ‡â žâ »â »" }, { "input": "adulterer's", "output": "â â ™â ¥â ‡â žâ »â »â „â Ž" }, { "input": "adulterers", "output": "â â ™â ¥â ‡â žâ »â »â Ž" }, { "input": "adulteress", "output": "â â ™â ¥â ‡â žâ »â ‘â Žâ Ž" }, { "input": "adulteress's", "output": "â â ™â ¥â ‡â žâ »â ‘â Žâ Žâ „â Ž" }, { "input": "adulteresses", "output": "â â ™â ¥â ‡â žâ »â ‘â Žâ Žâ ‘â Ž" }, { "input": "adulteries", "output": "â â ™â ¥â ‡â žâ »â Šâ ‘â Ž" }, { "input": "adulterous", "output": "â â ™â ¥â ‡â žâ »â ³â Ž" }, { "input": "adultery", "output": "â â ™â ¥â ‡â žâ »â ½" }, { "input": "adultery's", "output": "â â ™â ¥â ‡â žâ »â ½â „â Ž" }, { "input": "adulthood", "output": "â â ™â ¥â ‡â žâ “â •â •â ™" }, { "input": "adulthood's", "output": "â â ™â ¥â ‡â žâ “⠕⠕⠙⠄⠎" }, { "input": "adults", "output": "â â ™â ¥â ‡â žâ Ž" }, { "input": "adumbrate", "output": "â â ™â ¥â â ƒâ —â â žâ ‘" }, { "input": "adumbrated", "output": "â â ™â ¥â â ƒâ —â â žâ «" }, { "input": "adumbrates", "output": "â â ™â ¥â â ƒâ —â â žâ ‘â Ž" }, { "input": "adumbrating", "output": "â â ™â ¥â â ƒâ —â â žâ Œ" }, { "input": "adumbration", "output": "â â ™â ¥â â ƒâ —â  â " }, { "input": "adumbration's", "output": "â â ™â ¥â â ƒâ —â  â â „â Ž" }, { "input": "advance", "output": "â â ™â §â ¨â ‘" }, { "input": "advance's", "output": "â â ™â §â ¨â ‘â „â Ž" }, { "input": "advanced", "output": "â â ™â §â ¨â ‘â ™" }, { "input": "advancement", "output": "â â ™â §â ¨â ‘â °â ž" }, { "input": "advancement's", "output": "â â ™â §â ¨â ‘â °â žâ „â Ž" }, { "input": "advancements", "output": "â â ™â §â ¨â ‘â °â žâ Ž" }, { "input": "advances", "output": "â â ™â §â ¨â ‘â Ž" }, { "input": "advancing", "output": "â â ™â §â â â ‰â Œ" }, { "input": "advantage", "output": "â â ™â §â â â žâ â ›â ‘" }, { "input": "advantage's", "output": "â â ™â §â â â žâ â ›â ‘â „â Ž" }, { "input": "advantaged", "output": "â â ™â §â â â žâ â ›â «" }, { "input": "advantageous", "output": "â â ™â §â â â žâ â ›â ‘⠳⠎" }, { "input": "advantageously", "output": "â â ™â §â â â žâ â ›â ‘⠳⠎⠇⠽" }, { "input": "advantages", "output": "â â ™â §â â â žâ â ›â ‘â Ž" }, { "input": "advantaging", "output": "â â ™â §â â â žâ â ›â Œ" }, { "input": "advent", "output": "â â ™â §â ¢â ž" }, { "input": "advent's", "output": "â â ™â §â ¢â žâ „â Ž" }, { "input": "adventitious", "output": "â â ™â §â ¢â žâ Šâ žâ Šâ ³â Ž" }, { "input": "advents", "output": "â â ™â §â ¢â žâ Ž" }, { "input": "adventure", "output": "â â ™â §â ¢â žâ ¥â —â ‘" }, { "input": "adventure's", "output": "â â ™â §â ¢â žâ ¥â —â ‘â „â Ž" }, { "input": "adventured", "output": "â â ™â §â ¢â žâ ¥â —â «" }, { "input": "adventurer", "output": "â â ™â §â ¢â žâ ¥â —â »" }, { "input": "adventurer's", "output": "â â ™â §â ¢â žâ ¥â —⠻⠄⠎" }, { "input": "adventurers", "output": "â â ™â §â ¢â žâ ¥â —⠻⠎" }, { "input": "adventures", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Ž" }, { "input": "adventuresome", "output": "â â ™â §â ¢â žâ ¥â —â ‘â â Ž" }, { "input": "adventuress", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Žâ Ž" }, { "input": "adventuress's", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Žâ Žâ „â Ž" }, { "input": "adventuresses", "output": "â â ™â §â ¢â žâ ¥â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "adventuring", "output": "â â ™â §â ¢â žâ ¥â —â Œ" }, { "input": "adventurous", "output": "â â ™â §â ¢â žâ ¥â —⠳⠎" }, { "input": "adventurously", "output": "â â ™â §â ¢â žâ ¥â —⠳⠎⠇⠽" }, { "input": "adventurousness", "output": "â â ™â §â ¢â žâ ¥â —⠳⠎⠰⠎" }, { "input": "adventurousness's", "output": "â â ™â §â ¢â žâ ¥â —⠳⠎⠰⠎⠄⠎" }, { "input": "adverb", "output": "â â ™â §â »â ƒ" }, { "input": "adverb's", "output": "â â ™â §â »â ƒâ „â Ž" }, { "input": "adverbial", "output": "â â ™â §â »â ƒâ Šâ â ‡" }, { "input": "adverbial's", "output": "â â ™â §â »â ƒâ Šâ â ‡â „â Ž" }, { "input": "adverbially", "output": "â â ™â §â »â ƒâ Šâ  â ½" }, { "input": "adverbials", "output": "â â ™â §â »â ƒâ Šâ â ‡â Ž" }, { "input": "adverbs", "output": "â â ™â §â »â ƒâ Ž" }, { "input": "adversarial", "output": "â â ™â §â »â Žâ œâ Šâ â ‡" }, { "input": "adversaries", "output": "â â ™â §â »â Žâ œâ Šâ ‘â Ž" }, { "input": "adversary", "output": "â â ™â §â »â Žâ œâ ½" }, { "input": "adversary's", "output": "â â ™â §â »â Žâ œâ ½â „â Ž" }, { "input": "adverse", "output": "â â ™â §â »â Žâ ‘" }, { "input": "adversely", "output": "â â ™â §â »â Žâ ‘⠇⠽" }, { "input": "adverseness", "output": "â â ™â §â »â Žâ ‘â °â Ž" }, { "input": "adverseness's", "output": "â â ™â §â »â Žâ ‘â °â Žâ „â Ž" }, { "input": "adverser", "output": "â â ™â §â »â Žâ »" }, { "input": "adversest", "output": "â â ™â §â »â Žâ ‘â Œ" }, { "input": "adversities", "output": "â â ™â §â »â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "adversity", "output": "â â ™â §â »â Žâ °â ½" }, { "input": "adversity's", "output": "â â ™â §â »â Žâ °â ½â „â Ž" }, { "input": "advert", "output": "â â ™â §â »â ž" }, { "input": "advert's", "output": "â â ™â §â »â žâ „â Ž" }, { "input": "adverted", "output": "â â ™â §â »â žâ «" }, { "input": "adverting", "output": "â â ™â §â »â žâ Œ" }, { "input": "advertise", "output": "â â ™â §â »â žâ Šâ Žâ ‘" }, { "input": "advertised", "output": "â â ™â §â »â žâ Šâ Žâ «" }, { "input": "advertisement", "output": "â â ™â §â »â žâ Šâ Žâ ‘â °â ž" }, { "input": "advertisement's", "output": "â â ™â §â »â žâ Šâ Žâ ‘â °â žâ „â Ž" }, { "input": "advertisements", "output": "â â ™â §â »â žâ Šâ Žâ ‘â °â žâ Ž" }, { "input": "advertiser", "output": "â â ™â §â »â žâ Šâ Žâ »" }, { "input": "advertiser's", "output": "â â ™â §â »â žâ Šâ Žâ »â „â Ž" }, { "input": "advertisers", "output": "â â ™â §â »â žâ Šâ Žâ »â Ž" }, { "input": "advertises", "output": "â â ™â §â »â žâ Šâ Žâ ‘â Ž" }, { "input": "advertising", "output": "â â ™â §â »â žâ Šâ Žâ Œ" }, { "input": "advertising's", "output": "â â ™â §â »â žâ Šâ Žâ Œâ „â Ž" }, { "input": "adverts", "output": "â â ™â §â »â žâ Ž" }, { "input": "advice", "output": "â â ™â §â Šâ ‰â ‘" }, { "input": "advice's", "output": "â â ™â §â Šâ ‰â ‘â „â Ž" }, { "input": "advisability", "output": "â â ™â §â Šâ Žâ â ƒâ Šâ ‡â °â ½" }, { "input": "advisability's", "output": "â â ™â §â Šâ Žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "advisable", "output": "â â ™â §â Šâ Žâ â ¼" }, { "input": "advisably", "output": "â â ™â §â Šâ Žâ â ƒâ ‡â ½" }, { "input": "advise", "output": "â â ™â §â Šâ Žâ ‘" }, { "input": "advised", "output": "â â ™â §â Šâ Žâ «" }, { "input": "advisedly", "output": "â â ™â §â Šâ Žâ «â ‡â ½" }, { "input": "advisement", "output": "â â ™â §â Šâ Žâ ‘â °â ž" }, { "input": "advisement's", "output": "â â ™â §â Šâ Žâ ‘â °â žâ „â Ž" }, { "input": "adviser", "output": "â â ™â §â Šâ Žâ »" }, { "input": "adviser's", "output": "â â ™â §â Šâ Žâ »â „â Ž" }, { "input": "advisers", "output": "â â ™â §â Šâ Žâ »â Ž" }, { "input": "advises", "output": "â â ™â §â Šâ Žâ ‘â Ž" }, { "input": "advising", "output": "â â ™â §â Šâ Žâ Œ" }, { "input": "advisories", "output": "â â ™â §â Šâ Žâ •â —â Šâ ‘â Ž" }, { "input": "advisory", "output": "â â ™â §â Šâ Žâ •â —â ½" }, { "input": "advisory's", "output": "â â ™â §â Šâ Žâ •⠗⠽⠄⠎" }, { "input": "advocacy", "output": "â â ™â §â •â ‰â â ‰â ½" }, { "input": "advocacy's", "output": "â â ™â §â •â ‰â â ‰â ½â „â Ž" }, { "input": "advocate", "output": "â â ™â §â •â ‰â â žâ ‘" }, { "input": "advocate's", "output": "â â ™â §â •â ‰â â žâ ‘â „â Ž" }, { "input": "advocated", "output": "â â ™â §â •â ‰â â žâ «" }, { "input": "advocates", "output": "â â ™â §â •â ‰â â žâ ‘â Ž" }, { "input": "advocating", "output": "â â ™â §â •â ‰â â žâ Œ" }, { "input": "adze", "output": "â â ™â µâ ‘" }, { "input": "adze's", "output": "â â ™â µâ ‘â „â Ž" }, { "input": "adzes", "output": "â â ™â µâ ‘â Ž" }, { "input": "aegis", "output": "â â ‘⠛⠊⠎" }, { "input": "aegis's", "output": "â â ‘⠛⠊⠎⠄⠎" }, { "input": "aerate", "output": "â â ‘â —â â žâ ‘" }, { "input": "aerated", "output": "â â ‘â —â â žâ «" }, { "input": "aerates", "output": "â â ‘â —â â žâ ‘â Ž" }, { "input": "aerating", "output": "â â ‘â —â â žâ Œ" }, { "input": "aeration", "output": "â â ‘â —â  â " }, { "input": "aeration's", "output": "â â ‘â —â  â â „â Ž" }, { "input": "aerator", "output": "â â ‘â —â â žâ •â —" }, { "input": "aerator's", "output": "â â ‘â —â â žâ •â —â „â Ž" }, { "input": "aerators", "output": "â â ‘â —â â žâ •â —â Ž" }, { "input": "aerial", "output": "â â ‘â —â Šâ â ‡" }, { "input": "aerial's", "output": "â â ‘â —â Šâ â ‡â „â Ž" }, { "input": "aerialist", "output": "â â ‘â —â Šâ â ‡â Šâ Œ" }, { "input": "aerialist's", "output": "â â ‘â —â Šâ â ‡â Šâ Œâ „â Ž" }, { "input": "aerialists", "output": "â â ‘â —â Šâ â ‡â Šâ Œâ Ž" }, { "input": "aerially", "output": "â â ‘â —â Šâ  â ½" }, { "input": "aerials", "output": "â â ‘â —â Šâ â ‡â Ž" }, { "input": "aerie", "output": "â â ‘â —â Šâ ‘" }, { "input": "aerie's", "output": "â â ‘â —â Šâ ‘â „â Ž" }, { "input": "aerier", "output": "â â ‘â —â Šâ »" }, { "input": "aeries", "output": "â â ‘â —â Šâ ‘â Ž" }, { "input": "aeriest", "output": "â â ‘â —â Šâ ‘â Œ" }, { "input": "aerobatics", "output": "â â ‘â —â •â ƒâ â žâ Šâ ‰â Ž" }, { "input": "aerobatics's", "output": "â â ‘â —â •â ƒâ â žâ Šâ ‰â Žâ „â Ž" }, { "input": "aerobic", "output": "â â ‘⠗⠕⠃⠊⠉" }, { "input": "aerobically", "output": "â â ‘⠗⠕⠃⠊⠉⠠⠽" }, { "input": "aerobics", "output": "â â ‘⠗⠕⠃⠊⠉⠎" }, { "input": "aerobics's", "output": "â â ‘⠗⠕⠃⠊⠉⠎⠄⠎" }, { "input": "aerodynamic", "output": "â â ‘⠗⠕⠙⠽â â â â Šâ ‰" }, { "input": "aerodynamically", "output": "â â ‘⠗⠕⠙⠽â â â â Šâ ‰â  â ½" }, { "input": "aerodynamics", "output": "â â ‘⠗⠕⠙⠽â â â â Šâ ‰â Ž" }, { "input": "aerodynamics's", "output": "â â ‘⠗⠕⠙⠽â â â â Šâ ‰â Žâ „â Ž" }, { "input": "aeronautical", "output": "â â ‘â —â •â â â ¥â žâ Šâ ‰â â ‡" }, { "input": "aeronautics", "output": "â â ‘â —â •â â â ¥â žâ Šâ ‰â Ž" }, { "input": "aeronautics's", "output": "â â ‘â —â •â â â ¥â žâ Šâ ‰â Žâ „â Ž" }, { "input": "aerosol", "output": "â â ‘â —â •â Žâ •â ‡" }, { "input": "aerosol's", "output": "â â ‘⠗⠕⠎⠕⠇⠄⠎" }, { "input": "aerosols", "output": "â â ‘⠗⠕⠎⠕⠇⠎" }, { "input": "aerospace", "output": "â â ‘â —â •â Žâ â â ‰â ‘" }, { "input": "aerospace's", "output": "â â ‘â —â •â Žâ â â ‰â ‘â „â Ž" }, { "input": "aesthete", "output": "â â ‘⠎⠮⠞⠑" }, { "input": "aesthete's", "output": "â â ‘⠎⠮⠞⠑⠄⠎" }, { "input": "aesthetes", "output": "â â ‘⠎⠮⠞⠑⠎" }, { "input": "aesthetic", "output": "â â ‘⠎⠮⠞⠊⠉" }, { "input": "aesthetically", "output": "â â ‘⠎⠮⠞⠊⠉⠠⠽" }, { "input": "aestheticism", "output": "â â ‘⠎⠮⠞⠊⠉⠊⠎â " }, { "input": "aestheticism's", "output": "â â ‘⠎⠮⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "aesthetics", "output": "â â ‘⠎⠮⠞⠊⠉⠎" }, { "input": "aesthetics's", "output": "â â ‘⠎⠮⠞⠊⠉⠎⠄⠎" }, { "input": "afar", "output": "â â ‹â œ" }, { "input": "affability", "output": "â â –â â ƒâ Šâ ‡â °â ½" }, { "input": "affability's", "output": "â â –â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "affable", "output": "â â –â â ¼" }, { "input": "affably", "output": "â â –â â ƒâ ‡â ½" }, { "input": "affair", "output": "â â –â â Šâ —" }, { "input": "affair's", "output": "â â –â â Šâ —â „â Ž" }, { "input": "affairs", "output": "â â –â â Šâ —â Ž" }, { "input": "affect", "output": "â â –⠑⠉⠞" }, { "input": "affect's", "output": "â â –⠑⠉⠞⠄⠎" }, { "input": "affectation", "output": "â â –⠑⠉⠞⠠â " }, { "input": "affectation's", "output": "â â –⠑⠉⠞⠠â â „â Ž" }, { "input": "affectations", "output": "â â –⠑⠉⠞⠠â â Ž" }, { "input": "affected", "output": "â â –⠑⠉⠞⠫" }, { "input": "affecting", "output": "â â –⠑⠉⠞⠌" }, { "input": "affectingly", "output": "â â –⠑⠉⠞⠌⠇⠽" }, { "input": "affection", "output": "â â –⠑⠉⠰â " }, { "input": "affection's", "output": "â â –⠑⠉⠰â â „â Ž" }, { "input": "affectionate", "output": "â â –⠑⠉⠰â â â žâ ‘" }, { "input": "affectionately", "output": "â â –⠑⠉⠰â â â žâ ‘⠇⠽" }, { "input": "affections", "output": "â â –⠑⠉⠰â â Ž" }, { "input": "affects", "output": "â â –⠑⠉⠞⠎" }, { "input": "afferent", "output": "â â –⠻⠢⠞" }, { "input": "affiance", "output": "â â –⠊⠨⠑" }, { "input": "affianced", "output": "â â –⠊⠨⠑⠙" }, { "input": "affiances", "output": "â â –⠊⠨⠑⠎" }, { "input": "affiancing", "output": "â â –â Šâ â â ‰â Œ" }, { "input": "affidavit", "output": "â â –â Šâ ™â â §â Šâ ž" }, { "input": "affidavit's", "output": "â â –â Šâ ™â â §â Šâ žâ „â Ž" }, { "input": "affidavits", "output": "â â –â Šâ ™â â §â Šâ žâ Ž" }, { "input": "affiliate", "output": "â â –⠊⠇⠊â â žâ ‘" }, { "input": "affiliate's", "output": "â â –⠊⠇⠊â â žâ ‘â „â Ž" }, { "input": "affiliated", "output": "â â –⠊⠇⠊â â žâ «" }, { "input": "affiliates", "output": "â â –⠊⠇⠊â â žâ ‘â Ž" }, { "input": "affiliating", "output": "â â –⠊⠇⠊â â žâ Œ" }, { "input": "affiliation", "output": "â â –⠊⠇⠊⠠â " }, { "input": "affiliation's", "output": "â â –⠊⠇⠊⠠â â „â Ž" }, { "input": "affiliations", "output": "â â –⠊⠇⠊⠠â â Ž" }, { "input": "affinities", "output": "â â –⠔⠊⠞⠊⠑⠎" }, { "input": "affinity", "output": "â â –⠔⠰⠽" }, { "input": "affinity's", "output": "â â –⠔⠰⠽⠄⠎" }, { "input": "affirm", "output": "â â –â Šâ —â " }, { "input": "affirmation", "output": "â â –â Šâ —â â  â " }, { "input": "affirmation's", "output": "â â –â Šâ —â â  â â „â Ž" }, { "input": "affirmations", "output": "â â –â Šâ —â â  â â Ž" }, { "input": "affirmative", "output": "â â –â Šâ —â â â žâ Šâ §â ‘" }, { "input": "affirmative's", "output": "â â –â Šâ —â â â žâ Šâ §â ‘â „â Ž" }, { "input": "affirmatively", "output": "â â –â Šâ —â â â žâ Šâ §â ‘⠇⠽" }, { "input": "affirmatives", "output": "â â –â Šâ —â â â žâ Šâ §â ‘â Ž" }, { "input": "affirmed", "output": "â â –â Šâ —â â «" }, { "input": "affirming", "output": "â â –â Šâ —â â Œ" }, { "input": "affirms", "output": "â â –â Šâ —â â Ž" }, { "input": "affix", "output": "â â –â Šâ ­" }, { "input": "affix's", "output": "â â –â Šâ ­â „â Ž" }, { "input": "affixed", "output": "â â –â Šâ ­â «" }, { "input": "affixes", "output": "â â –â Šâ ­â ‘â Ž" }, { "input": "affixing", "output": "â â –â Šâ ­â Œ" }, { "input": "afflatus", "output": "â â –â ‡â â žâ ¥â Ž" }, { "input": "afflatus's", "output": "â â –â ‡â â žâ ¥â Žâ „â Ž" }, { "input": "afflict", "output": "â â –⠇⠊⠉⠞" }, { "input": "afflicted", "output": "â â –⠇⠊⠉⠞⠫" }, { "input": "afflicting", "output": "â â –⠇⠊⠉⠞⠌" }, { "input": "affliction", "output": "â â –⠇⠊⠉⠰â " }, { "input": "affliction's", "output": "â â –⠇⠊⠉⠰â â „â Ž" }, { "input": "afflictions", "output": "â â –⠇⠊⠉⠰â â Ž" }, { "input": "afflicts", "output": "â â –⠇⠊⠉⠞⠎" }, { "input": "affluence", "output": "â â –⠇⠥⠰⠑" }, { "input": "affluence's", "output": "â â –⠇⠥⠰⠑⠄⠎" }, { "input": "affluent", "output": "â â –⠇⠥⠢⠞" }, { "input": "affluently", "output": "â â –⠇⠥⠢⠞⠇⠽" }, { "input": "afford", "output": "â â ‹â ¿â ™" }, { "input": "affordable", "output": "â â ‹â ¿â ™â â ¼" }, { "input": "afforded", "output": "â â ‹â ¿â ™â «" }, { "input": "affording", "output": "â â ‹â ¿â ™â Œ" }, { "input": "affords", "output": "â â ‹â ¿â ™â Ž" }, { "input": "afforest", "output": "â â ‹â ¿â ‘â Œ" }, { "input": "afforestation", "output": "â â ‹â ¿â ‘⠌⠠â " }, { "input": "afforestation's", "output": "â â ‹â ¿â ‘⠌⠠â â „â Ž" }, { "input": "afforested", "output": "â â ‹â ¿â ‘⠌⠫" }, { "input": "afforesting", "output": "â â ‹â ¿â ‘⠌⠌" }, { "input": "afforests", "output": "â â ‹â ¿â ‘⠌⠎" }, { "input": "affray", "output": "â â –â —â â ½" }, { "input": "affray's", "output": "â â –â —â â ½â „â Ž" }, { "input": "affrays", "output": "â â –â —â â ½â Ž" }, { "input": "affront", "output": "â â –â —â •â â ž" }, { "input": "affront's", "output": "â â –â —â •â â žâ „â Ž" }, { "input": "affronted", "output": "â â –â —â •â â žâ «" }, { "input": "affronting", "output": "â â –â —â •â â žâ Œ" }, { "input": "affronts", "output": "â â –â —â •â â žâ Ž" }, { "input": "afghan", "output": "â â ‹â £â â " }, { "input": "afghan's", "output": "â â ‹â £â â â „â Ž" }, { "input": "afghans", "output": "â â ‹â £â â â Ž" }, { "input": "aficionado", "output": "â â ‹â Šâ ‰â Šâ •â â â ™â •" }, { "input": "aficionado's", "output": "â â ‹â Šâ ‰â Šâ •â â â ™â •â „â Ž" }, { "input": "aficionados", "output": "â â ‹â Šâ ‰â Šâ •â â â ™â •â Ž" }, { "input": "afield", "output": "â â ‹â Šâ ‘⠇⠙" }, { "input": "afire", "output": "â â ‹â Šâ —â ‘" }, { "input": "aflame", "output": "â â ‹â ‡â â â ‘" }, { "input": "afloat", "output": "â â ‹â ‡â •â â ž" }, { "input": "aflutter", "output": "â â ‹â ‡â ¥â žâ žâ »" }, { "input": "afoot", "output": "â â ‹â •â •â ž" }, { "input": "aforementioned", "output": "â â ¿â ‘â â ¢â °â â «" }, { "input": "aforesaid", "output": "â â ¿â ‘â Žâ ™" }, { "input": "aforethought", "output": "â â ¿â ‘â ¹â â ³" }, { "input": "afoul", "output": "â â ‹â ³â ‡" }, { "input": "afraid", "output": "â â ‹â —â â Šâ ™" }, { "input": "afresh", "output": "â â ‹â —â ‘â ©" }, { "input": "aft", "output": "â â ‹â ž" }, { "input": "after", "output": "â â ‹" }, { "input": "afterbirth", "output": "â â ‹â ƒâ Šâ —â ¹" }, { "input": "afterbirth's", "output": "â â ‹â ƒâ Šâ —⠹⠄⠎" }, { "input": "afterbirths", "output": "â â ‹â ƒâ Šâ —⠹⠎" }, { "input": "afterburner", "output": "â â ‹â ƒâ ¥â —â â »" }, { "input": "afterburner's", "output": "â â ‹â ƒâ ¥â —â â »â „â Ž" }, { "input": "afterburners", "output": "â â ‹â ƒâ ¥â —â â »â Ž" }, { "input": "aftercare", "output": "â â ‹â ‰â œâ ‘" }, { "input": "aftercare's", "output": "â â ‹â ‰â œâ ‘â „â Ž" }, { "input": "aftereffect", "output": "â â ‹â žâ »â ‘⠖⠑⠉⠞" }, { "input": "aftereffect's", "output": "â â ‹â žâ »â ‘⠖⠑⠉⠞⠄⠎" }, { "input": "aftereffects", "output": "â â ‹â žâ »â ‘⠖⠑⠉⠞⠎" }, { "input": "afterglow", "output": "â â ‹â ›â ‡â ª" }, { "input": "afterglow's", "output": "â â ‹â ›â ‡â ªâ „â Ž" }, { "input": "afterglows", "output": "â â ‹â ›â ‡â ªâ Ž" }, { "input": "afterimage", "output": "â â ‹â žâ »â Šâ â â ›â ‘" }, { "input": "afterimage's", "output": "â â ‹â žâ »â Šâ â â ›â ‘â „â Ž" }, { "input": "afterimages", "output": "â â ‹â žâ »â Šâ â â ›â ‘â Ž" }, { "input": "afterlife", "output": "â â ‹â ‡â Šâ ‹â ‘" }, { "input": "afterlife's", "output": "â â ‹â ‡â Šâ ‹â ‘â „â Ž" }, { "input": "afterlives", "output": "â â ‹â ‡â Šâ §â ‘â Ž" }, { "input": "aftermarket", "output": "â â ‹â â œâ …â ‘â ž" }, { "input": "aftermarket's", "output": "â â ‹â â œâ …â ‘â žâ „â Ž" }, { "input": "aftermarkets", "output": "â â ‹â â œâ …â ‘â žâ Ž" }, { "input": "aftermath", "output": "â â ‹â â â ¹" }, { "input": "aftermath's", "output": "â â ‹â â â ¹â „â Ž" }, { "input": "aftermaths", "output": "â â ‹â â â ¹â Ž" }, { "input": "afternoon", "output": "â â ‹â " }, { "input": "afternoon's", "output": "â â ‹â â „â Ž" }, { "input": "afternoons", "output": "â â ‹â â Ž" }, { "input": "aftershave", "output": "â â ‹â ©â â §â ‘" }, { "input": "aftershave's", "output": "â â ‹â ©â â §â ‘â „â Ž" }, { "input": "aftershaves", "output": "â â ‹â ©â â §â ‘â Ž" }, { "input": "aftershock", "output": "â â ‹â ©â •⠉⠅" }, { "input": "aftershock's", "output": "â â ‹â ©â •⠉⠅⠄⠎" }, { "input": "aftershocks", "output": "â â ‹â ©â •⠉⠅⠎" }, { "input": "aftertaste", "output": "â â ‹â žâ â Œâ ‘" }, { "input": "aftertaste's", "output": "â â ‹â žâ â Œâ ‘â „â Ž" }, { "input": "aftertastes", "output": "â â ‹â žâ â Œâ ‘â Ž" }, { "input": "afterthought", "output": "â â ‹â ¹â â ³" }, { "input": "afterthought's", "output": "â â ‹â ¹â â ³â „â Ž" }, { "input": "afterthoughts", "output": "â â ‹â ¹â â ³â Ž" }, { "input": "afterward", "output": "â â ‹â º" }, { "input": "afterwards", "output": "â â ‹â ºâ Ž" }, { "input": "afterword", "output": "â â ‹â ˜â º" }, { "input": "afterword's", "output": "â â ‹â ˜â ºâ „â Ž" }, { "input": "afterwords", "output": "â â ‹â ˜â ºâ Ž" }, { "input": "again", "output": "â â ›" }, { "input": "against", "output": "â â ›â Œ" }, { "input": "agape", "output": "â â ›â â â ‘" }, { "input": "agape's", "output": "â â ›â â â ‘â „â Ž" }, { "input": "agar", "output": "â â ›â œ" }, { "input": "agar's", "output": "â â ›â œâ „â Ž" }, { "input": "agate", "output": "â â ›â â žâ ‘" }, { "input": "agate's", "output": "â â ›â â žâ ‘â „â Ž" }, { "input": "agates", "output": "â â ›â â žâ ‘â Ž" }, { "input": "agave", "output": "â â ›â â §â ‘" }, { "input": "agave's", "output": "â â ›â â §â ‘â „â Ž" }, { "input": "age", "output": "â â ›â ‘" }, { "input": "age's", "output": "â â ›â ‘â „â Ž" }, { "input": "aged", "output": "â â ›â «" }, { "input": "ageism", "output": "â â ›â ‘â Šâ Žâ " }, { "input": "ageism's", "output": "â â ›â ‘â Šâ Žâ â „â Ž" }, { "input": "ageless", "output": "â â ›â ‘⠨⠎" }, { "input": "agelessly", "output": "â â ›â ‘⠨⠎⠇⠽" }, { "input": "agelessness", "output": "â â ›â ‘⠨⠎⠰⠎" }, { "input": "agelessness's", "output": "â â ›â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "agencies", "output": "â â ›â ¢â ‰â Šâ ‘â Ž" }, { "input": "agency", "output": "â â ›â ¢â ‰â ½" }, { "input": "agency's", "output": "â â ›â ¢â ‰â ½â „â Ž" }, { "input": "agenda", "output": "â â ›â ¢â ™â " }, { "input": "agenda's", "output": "â â ›â ¢â ™â â „â Ž" }, { "input": "agendas", "output": "â â ›â ¢â ™â â Ž" }, { "input": "agent", "output": "â â ›â ¢â ž" }, { "input": "agent's", "output": "â â ›â ¢â žâ „â Ž" }, { "input": "agents", "output": "â â ›â ¢â žâ Ž" }, { "input": "ageratum", "output": "â â ›â »â â žâ ¥â " }, { "input": "ageratum's", "output": "â â ›â »â â žâ ¥â â „â Ž" }, { "input": "ages", "output": "â â ›â ‘â Ž" }, { "input": "agglomerate", "output": "â â ¶â ‡â •â â »â â žâ ‘" }, { "input": "agglomerate's", "output": "â â ¶â ‡â •â â »â â žâ ‘â „â Ž" }, { "input": "agglomerated", "output": "â â ¶â ‡â •â â »â â žâ «" }, { "input": "agglomerates", "output": "â â ¶â ‡â •â â »â â žâ ‘â Ž" }, { "input": "agglomerating", "output": "â â ¶â ‡â •â â »â â žâ Œ" }, { "input": "agglomeration", "output": "â â ¶â ‡â •â â »â  â " }, { "input": "agglomeration's", "output": "â â ¶â ‡â •â â »â  â â „â Ž" }, { "input": "agglomerations", "output": "â â ¶â ‡â •â â »â  â â Ž" }, { "input": "agglutinate", "output": "â â ¶â ‡â ¥â žâ ”â â žâ ‘" }, { "input": "agglutinated", "output": "â â ¶â ‡â ¥â žâ ”â â žâ «" }, { "input": "agglutinates", "output": "â â ¶â ‡â ¥â žâ ”â â žâ ‘â Ž" }, { "input": "agglutinating", "output": "â â ¶â ‡â ¥â žâ ”â â žâ Œ" }, { "input": "agglutination", "output": "â â ¶â ‡â ¥â žâ ”â  â " }, { "input": "agglutination's", "output": "â â ¶â ‡â ¥â žâ ”â  â â „â Ž" }, { "input": "agglutinations", "output": "â â ¶â ‡â ¥â žâ ”â  â â Ž" }, { "input": "aggrandize", "output": "â â ¶â —⠯⠊⠵⠑" }, { "input": "aggrandized", "output": "â â ¶â —⠯⠊⠵⠫" }, { "input": "aggrandizement", "output": "â â ¶â —⠯⠊⠵⠑⠰⠞" }, { "input": "aggrandizement's", "output": "â â ¶â —⠯⠊⠵⠑⠰⠞⠄⠎" }, { "input": "aggrandizes", "output": "â â ¶â —⠯⠊⠵⠑⠎" }, { "input": "aggrandizing", "output": "â â ¶â —⠯⠊⠵⠌" }, { "input": "aggravate", "output": "â â ¶â —â â §â â žâ ‘" }, { "input": "aggravated", "output": "â â ¶â —â â §â â žâ «" }, { "input": "aggravates", "output": "â â ¶â —â â §â â žâ ‘â Ž" }, { "input": "aggravating", "output": "â â ¶â —â â §â â žâ Œ" }, { "input": "aggravatingly", "output": "â â ¶â —â â §â â žâ Œâ ‡â ½" }, { "input": "aggravation", "output": "â â ¶â —â â §â  â " }, { "input": "aggravation's", "output": "â â ¶â —â â §â  â â „â Ž" }, { "input": "aggravations", "output": "â â ¶â —â â §â  â â Ž" }, { "input": "aggregate", "output": "â â ¶â —â ‘â ›â â žâ ‘" }, { "input": "aggregate's", "output": "â â ¶â —â ‘â ›â â žâ ‘â „â Ž" }, { "input": "aggregated", "output": "â â ¶â —â ‘â ›â â žâ «" }, { "input": "aggregates", "output": "â â ¶â —â ‘â ›â â žâ ‘â Ž" }, { "input": "aggregating", "output": "â â ¶â —â ‘â ›â â žâ Œ" }, { "input": "aggregation", "output": "â â ¶â —⠑⠛⠠â " }, { "input": "aggregation's", "output": "â â ¶â —⠑⠛⠠â â „â Ž" }, { "input": "aggregations", "output": "â â ¶â —⠑⠛⠠â â Ž" }, { "input": "aggression", "output": "â â ¶â —â ‘â Žâ ¨â " }, { "input": "aggression's", "output": "â â ¶â —â ‘â Žâ ¨â â „â Ž" }, { "input": "aggressive", "output": "â â ¶â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "aggressively", "output": "â â ¶â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "aggressiveness", "output": "â â ¶â —â ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "aggressiveness's", "output": "â â ¶â —â ‘â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "aggressor", "output": "â â ¶â —â ‘â Žâ Žâ •â —" }, { "input": "aggressor's", "output": "â â ¶â —â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "aggressors", "output": "â â ¶â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "aggrieve", "output": "â â ¶â —â Šâ ‘â §â ‘" }, { "input": "aggrieved", "output": "â â ¶â —â Šâ ‘â §â «" }, { "input": "aggrieves", "output": "â â ¶â —â Šâ ‘â §â ‘â Ž" }, { "input": "aggrieving", "output": "â â ¶â —â Šâ ‘â §â Œ" }, { "input": "aghast", "output": "â â £â â Œ" }, { "input": "agile", "output": "â â ›â Šâ ‡â ‘" }, { "input": "agilely", "output": "â â ›â Šâ ‡â ‘⠇⠽" }, { "input": "agiler", "output": "â â ›â Šâ ‡â »" }, { "input": "agilest", "output": "â â ›â Šâ ‡â ‘â Œ" }, { "input": "agility", "output": "â â ›â Šâ ‡â °â ½" }, { "input": "agility's", "output": "â â ›â Šâ ‡â °â ½â „â Ž" }, { "input": "aging", "output": "â â ›â Œ" }, { "input": "aging's", "output": "â â ›â Œâ „â Ž" }, { "input": "agings", "output": "â â ›â Œâ Ž" }, { "input": "agitate", "output": "â â ›â Šâ žâ â žâ ‘" }, { "input": "agitated", "output": "â â ›â Šâ žâ â žâ «" }, { "input": "agitates", "output": "â â ›â Šâ žâ â žâ ‘â Ž" }, { "input": "agitating", "output": "â â ›â Šâ žâ â žâ Œ" }, { "input": "agitation", "output": "â â ›â Šâ žâ  â " }, { "input": "agitation's", "output": "â â ›â Šâ žâ  â â „â Ž" }, { "input": "agitations", "output": "â â ›â Šâ žâ  â â Ž" }, { "input": "agitator", "output": "â â ›â Šâ žâ â žâ •â —" }, { "input": "agitator's", "output": "â â ›â Šâ žâ â žâ •â —â „â Ž" }, { "input": "agitators", "output": "â â ›â Šâ žâ â žâ •â —â Ž" }, { "input": "agitprop's", "output": "â â ›â Šâ žâ â —â •â â „â Ž" }, { "input": "agleam", "output": "â â ›â ‡â ‚â " }, { "input": "aglitter", "output": "â â ›â ‡â Šâ žâ žâ »" }, { "input": "aglow", "output": "â â ›â ‡â ª" }, { "input": "agnostic", "output": "â â ›â â •⠌⠊⠉" }, { "input": "agnostic's", "output": "â â ›â â •⠌⠊⠉⠄⠎" }, { "input": "agnosticism", "output": "â â ›â â •⠌⠊⠉⠊⠎â " }, { "input": "agnosticism's", "output": "â â ›â â •⠌⠊⠉⠊⠎â â „â Ž" }, { "input": "agnostics", "output": "â â ›â â •⠌⠊⠉⠎" }, { "input": "ago", "output": "â â ›â •" }, { "input": "agog", "output": "â â ›â •â ›" }, { "input": "agonies", "output": "â â ›â •â â Šâ ‘â Ž" }, { "input": "agonize", "output": "â â ›â •â â Šâ µâ ‘" }, { "input": "agonized", "output": "â â ›â •â â Šâ µâ «" }, { "input": "agonizes", "output": "â â ›â •â â Šâ µâ ‘â Ž" }, { "input": "agonizing", "output": "â â ›â •â â Šâ µâ Œ" }, { "input": "agonizingly", "output": "â â ›â •â â Šâ µâ Œâ ‡â ½" }, { "input": "agony", "output": "â â ›â •â â ½" }, { "input": "agony's", "output": "â â ›â •â â ½â „â Ž" }, { "input": "agoraphobia's", "output": "â â ›â •â —â â â “⠕⠃⠊â â „â Ž" }, { "input": "agrarian", "output": "â â ›â —⠜⠊â â " }, { "input": "agrarian's", "output": "â â ›â —⠜⠊â â â „â Ž" }, { "input": "agrarianism", "output": "â â ›â —⠜⠊â â â Šâ Žâ " }, { "input": "agrarianism's", "output": "â â ›â —⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "agrarians", "output": "â â ›â —⠜⠊â â â Ž" }, { "input": "agree", "output": "â â ›â —â ‘â ‘" }, { "input": "agreeable", "output": "â â ›â —â ‘â ‘â â ¼" }, { "input": "agreeableness", "output": "â â ›â —â ‘â ‘â â ¼â °â Ž" }, { "input": "agreeableness's", "output": "â â ›â —â ‘â ‘â â ¼â °â Žâ „â Ž" }, { "input": "agreeably", "output": "â â ›â —â ‘â ‘â â ƒâ ‡â ½" }, { "input": "agreed", "output": "â â ›â —â ‘â «" }, { "input": "agreeing", "output": "â â ›â —â ‘â ‘â Œ" }, { "input": "agreement", "output": "â â ›â —â ‘â ‘â °â ž" }, { "input": "agreement's", "output": "â â ›â —â ‘â ‘â °â žâ „â Ž" }, { "input": "agreements", "output": "â â ›â —â ‘â ‘â °â žâ Ž" }, { "input": "agrees", "output": "â â ›â —â ‘â ‘â Ž" }, { "input": "agribusiness", "output": "â â ›â —⠊⠃⠥⠎⠊⠰⠎" }, { "input": "agribusiness's", "output": "â â ›â —⠊⠃⠥⠎⠊⠰⠎⠄⠎" }, { "input": "agribusinesses", "output": "â â ›â —⠊⠃⠥⠎⠊⠰⠎⠑⠎" }, { "input": "agricultural", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "agriculturalist", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡â Šâ Œ" }, { "input": "agriculturalist's", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡â Šâ Œâ „â Ž" }, { "input": "agriculturalists", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗â â ‡â Šâ Œâ Ž" }, { "input": "agriculturally", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠠⠽" }, { "input": "agriculture", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠑" }, { "input": "agriculture's", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "agriculturist", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠊⠌" }, { "input": "agriculturist's", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠊⠌⠄⠎" }, { "input": "agriculturists", "output": "â â ›â —⠊⠉⠥⠇⠞⠥⠗⠊⠌⠎" }, { "input": "agronomic", "output": "â â ›â —â •â â •â â Šâ ‰" }, { "input": "agronomist", "output": "â â ›â —â •â â •â â Šâ Œ" }, { "input": "agronomist's", "output": "â â ›â —â •â â •â â Šâ Œâ „â Ž" }, { "input": "agronomists", "output": "â â ›â —â •â â •â â Šâ Œâ Ž" }, { "input": "agronomy", "output": "â â ›â —â •â â •â â ½" }, { "input": "agronomy's", "output": "â â ›â —â •â â •â â ½â „â Ž" }, { "input": "aground", "output": "â â ›â —⠨⠙" }, { "input": "ague", "output": "â â ›â ¥â ‘" }, { "input": "ague's", "output": "â â ›â ¥â ‘â „â Ž" }, { "input": "ah", "output": "â â “" }, { "input": "aha", "output": "â â “â " }, { "input": "ahead", "output": "â â “â ‚â ™" }, { "input": "ahem", "output": "â â “â ‘â " }, { "input": "ahoy", "output": "â â “â •â ½" }, { "input": "aid", "output": "â â Šâ ™" }, { "input": "aid's", "output": "â â Šâ ™â „â Ž" }, { "input": "aide", "output": "â â Šâ ™â ‘" }, { "input": "aide's", "output": "â â Šâ ™â ‘â „â Ž" }, { "input": "aided", "output": "â â Šâ ™â «" }, { "input": "aides", "output": "â â Šâ ™â ‘â Ž" }, { "input": "aiding", "output": "â â Šâ ™â Œ" }, { "input": "aids", "output": "â â Šâ ™â Ž" }, { "input": "aigrette", "output": "â â Šâ ›â —â ‘â žâ žâ ‘" }, { "input": "aigrette's", "output": "â â Šâ ›â —â ‘â žâ žâ ‘â „â Ž" }, { "input": "aigrettes", "output": "â â Šâ ›â —â ‘â žâ žâ ‘â Ž" }, { "input": "ail", "output": "â â Šâ ‡" }, { "input": "ailed", "output": "â â Šâ ‡â «" }, { "input": "aileron", "output": "â â Šâ ‡â »â •â " }, { "input": "aileron's", "output": "â â Šâ ‡â »â •â â „â Ž" }, { "input": "ailerons", "output": "â â Šâ ‡â »â •â â Ž" }, { "input": "ailing", "output": "â â Šâ ‡â Œ" }, { "input": "ailment", "output": "â â Šâ ‡â °â ž" }, { "input": "ailment's", "output": "â â Šâ ‡â °â žâ „â Ž" }, { "input": "ailments", "output": "â â Šâ ‡â °â žâ Ž" }, { "input": "ails", "output": "â â Šâ ‡â Ž" }, { "input": "aim", "output": "â â Šâ " }, { "input": "aim's", "output": "â â Šâ â „â Ž" }, { "input": "aimed", "output": "â â Šâ â «" }, { "input": "aiming", "output": "â â Šâ â Œ" }, { "input": "aimless", "output": "â â Šâ â ¨â Ž" }, { "input": "aimlessly", "output": "â â Šâ â ¨â Žâ ‡â ½" }, { "input": "aimlessness", "output": "â â Šâ â ¨â Žâ °â Ž" }, { "input": "aimlessness's", "output": "â â Šâ â ¨â Žâ °â Žâ „â Ž" }, { "input": "aims", "output": "â â Šâ â Ž" }, { "input": "air", "output": "â â Šâ —" }, { "input": "air's", "output": "â â Šâ —â „â Ž" }, { "input": "airborne", "output": "â â Šâ —⠃⠕⠗â â ‘" }, { "input": "airbrush", "output": "â â Šâ —⠃⠗⠥⠩" }, { "input": "airbrush's", "output": "â â Šâ —⠃⠗⠥⠩⠄⠎" }, { "input": "airbrushed", "output": "â â Šâ —⠃⠗⠥⠩⠫" }, { "input": "airbrushes", "output": "â â Šâ —⠃⠗⠥⠩⠑⠎" }, { "input": "airbrushing", "output": "â â Šâ —⠃⠗⠥⠩⠌" }, { "input": "airbus", "output": "â â Šâ —⠃⠥⠎" }, { "input": "airbus's", "output": "â â Šâ —⠃⠥⠎⠄⠎" }, { "input": "airbuses", "output": "â â Šâ —⠃⠥⠎⠑⠎" }, { "input": "aircraft", "output": "â â Šâ —⠉⠗â â ‹â ž" }, { "input": "aircraft's", "output": "â â Šâ —⠉⠗â â ‹â žâ „â Ž" }, { "input": "airdrop", "output": "â â Šâ —⠙⠗⠕â " }, { "input": "airdrop's", "output": "â â Šâ —⠙⠗⠕â â „â Ž" }, { "input": "airdropped", "output": "â â Šâ —⠙⠗⠕â â â «" }, { "input": "airdropping", "output": "â â Šâ —⠙⠗⠕â â â Œ" }, { "input": "airdrops", "output": "â â Šâ —⠙⠗⠕â â Ž" }, { "input": "aired", "output": "â â Šâ —â «" }, { "input": "airfare", "output": "â â Šâ —⠋⠜⠑" }, { "input": "airfare's", "output": "â â Šâ —⠋⠜⠑⠄⠎" }, { "input": "airfares", "output": "â â Šâ —⠋⠜⠑⠎" }, { "input": "airfield", "output": "â â Šâ —⠋⠊⠑⠇⠙" }, { "input": "airfield's", "output": "â â Šâ —⠋⠊⠑⠇⠙⠄⠎" }, { "input": "airfields", "output": "â â Šâ —⠋⠊⠑⠇⠙⠎" }, { "input": "airflow's", "output": "â â Šâ —⠋⠇⠪⠄⠎" }, { "input": "airfoil", "output": "â â Šâ —â ‹â •â Šâ ‡" }, { "input": "airfoil's", "output": "â â Šâ —⠋⠕⠊⠇⠄⠎" }, { "input": "airfoils", "output": "â â Šâ —⠋⠕⠊⠇⠎" }, { "input": "airfreight", "output": "â â Šâ —⠋⠗⠑⠊⠣⠞" }, { "input": "airfreight's", "output": "â â Šâ —⠋⠗⠑⠊⠣⠞⠄⠎" }, { "input": "airhead", "output": "â â Šâ —â “â ‚â ™" }, { "input": "airhead's", "output": "â â Šâ —⠓⠂⠙⠄⠎" }, { "input": "airheads", "output": "â â Šâ —⠓⠂⠙⠎" }, { "input": "airier", "output": "â â Šâ —â Šâ »" }, { "input": "airiest", "output": "â â Šâ —â Šâ ‘â Œ" }, { "input": "airily", "output": "â â Šâ —⠊⠇⠽" }, { "input": "airiness", "output": "â â Šâ —â Šâ °â Ž" }, { "input": "airiness's", "output": "â â Šâ —â Šâ °â Žâ „â Ž" }, { "input": "airing", "output": "â â Šâ —â Œ" }, { "input": "airing's", "output": "â â Šâ —⠌⠄⠎" }, { "input": "airings", "output": "â â Šâ —⠌⠎" }, { "input": "airless", "output": "â â Šâ —⠨⠎" }, { "input": "airlessness", "output": "â â Šâ —⠨⠎⠰⠎" }, { "input": "airlessness's", "output": "â â Šâ —⠨⠎⠰⠎⠄⠎" }, { "input": "airlift", "output": "â â Šâ —⠇⠊⠋⠞" }, { "input": "airlift's", "output": "â â Šâ —⠇⠊⠋⠞⠄⠎" }, { "input": "airlifted", "output": "â â Šâ —⠇⠊⠋⠞⠫" }, { "input": "airlifting", "output": "â â Šâ —⠇⠊⠋⠞⠌" }, { "input": "airlifts", "output": "â â Šâ —⠇⠊⠋⠞⠎" }, { "input": "airline", "output": "â â Šâ —⠇⠔⠑" }, { "input": "airline's", "output": "â â Šâ —⠇⠔⠑⠄⠎" }, { "input": "airliner", "output": "â â Šâ —⠇⠔⠻" }, { "input": "airliner's", "output": "â â Šâ —⠇⠔⠻⠄⠎" }, { "input": "airliners", "output": "â â Šâ —⠇⠔⠻⠎" }, { "input": "airlines", "output": "â â Šâ —⠇⠔⠑⠎" }, { "input": "airmail", "output": "â â Šâ —â â â Šâ ‡" }, { "input": "airmail's", "output": "â â Šâ —â â â Šâ ‡â „â Ž" }, { "input": "airmailed", "output": "â â Šâ —â â â Šâ ‡â «" }, { "input": "airmailing", "output": "â â Šâ —â â â Šâ ‡â Œ" }, { "input": "airmails", "output": "â â Šâ —â â â Šâ ‡â Ž" }, { "input": "airman", "output": "â â Šâ —â â â " }, { "input": "airman's", "output": "â â Šâ —â â â â „â Ž" }, { "input": "airmen", "output": "â â Šâ —â â ¢" }, { "input": "airplane", "output": "â â Šâ —â â ‡â â â ‘" }, { "input": "airplane's", "output": "â â Šâ —â â ‡â â â ‘â „â Ž" }, { "input": "airplanes", "output": "â â Šâ —â â ‡â â â ‘â Ž" }, { "input": "airplay's", "output": "â â Šâ —â â ‡â â ½â „â Ž" }, { "input": "airport", "output": "â â Šâ —â â •â —â ž" }, { "input": "airport's", "output": "â â Šâ —â â •â —â žâ „â Ž" }, { "input": "airports", "output": "â â Šâ —â â •â —â žâ Ž" }, { "input": "airs", "output": "â â Šâ —â Ž" }, { "input": "airship", "output": "â â Šâ —â ©â Šâ " }, { "input": "airship's", "output": "â â Šâ —â ©â Šâ â „â Ž" }, { "input": "airships", "output": "â â Šâ —â ©â Šâ â Ž" }, { "input": "airsick", "output": "â â Šâ —⠎⠊⠉⠅" }, { "input": "airsickness", "output": "â â Šâ —⠎⠊⠉⠅⠰⠎" }, { "input": "airsickness's", "output": "â â Šâ —⠎⠊⠉⠅⠰⠎⠄⠎" }, { "input": "airspace", "output": "â â Šâ —â Žâ â â ‰â ‘" }, { "input": "airspace's", "output": "â â Šâ —â Žâ â â ‰â ‘â „â Ž" }, { "input": "airstrip", "output": "â â Šâ —⠌⠗⠊â " }, { "input": "airstrip's", "output": "â â Šâ —⠌⠗⠊â â „â Ž" }, { "input": "airstrips", "output": "â â Šâ —⠌⠗⠊â â Ž" }, { "input": "airtight", "output": "â â Šâ —⠞⠊⠣⠞" }, { "input": "airtime's", "output": "â â Šâ —â â žâ „â Ž" }, { "input": "airwaves", "output": "â â Šâ —â ºâ â §â ‘â Ž" }, { "input": "airwaves's", "output": "â â Šâ —â ºâ â §â ‘â Žâ „â Ž" }, { "input": "airway", "output": "â â Šâ —â ºâ â ½" }, { "input": "airway's", "output": "â â Šâ —â ºâ â ½â „â Ž" }, { "input": "airways", "output": "â â Šâ —â ºâ â ½â Ž" }, { "input": "airworthier", "output": "â â Šâ —⠺⠕⠗⠹⠊⠻" }, { "input": "airworthiest", "output": "â â Šâ —⠺⠕⠗⠹⠊⠑⠌" }, { "input": "airworthiness's", "output": "â â Šâ —⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "airworthy", "output": "â â Šâ —⠺⠕⠗⠹⠽" }, { "input": "airy", "output": "â â Šâ —â ½" }, { "input": "aisle", "output": "â â Šâ Žâ ‡â ‘" }, { "input": "aisle's", "output": "â â Šâ Žâ ‡â ‘â „â Ž" }, { "input": "aisles", "output": "â â Šâ Žâ ‡â ‘â Ž" }, { "input": "ajar", "output": "â â šâ œ" }, { "input": "aka", "output": "â â …â " }, { "input": "akimbo", "output": "â â …â Šâ â ƒâ •" }, { "input": "akin", "output": "â â …â ”" }, { "input": "alabaster", "output": "â â ‡â â ƒâ â Œâ »" }, { "input": "alabaster's", "output": "â â ‡â â ƒâ â Œâ »â „â Ž" }, { "input": "alack", "output": "â â ‡â â ‰â …" }, { "input": "alacrity", "output": "â â ‡â â ‰â —â °â ½" }, { "input": "alacrity's", "output": "â â ‡â â ‰â —⠰⠽⠄⠎" }, { "input": "alarm", "output": "â â ‡â œâ " }, { "input": "alarm's", "output": "â â ‡â œâ â „â Ž" }, { "input": "alarmed", "output": "â â ‡â œâ â «" }, { "input": "alarming", "output": "â â ‡â œâ â Œ" }, { "input": "alarmingly", "output": "â â ‡â œâ â Œâ ‡â ½" }, { "input": "alarmist", "output": "â â ‡â œâ â Šâ Œ" }, { "input": "alarmist's", "output": "â â ‡â œâ â Šâ Œâ „â Ž" }, { "input": "alarmists", "output": "â â ‡â œâ â Šâ Œâ Ž" }, { "input": "alarms", "output": "â â ‡â œâ â Ž" }, { "input": "alas", "output": "â â ‡â â Ž" }, { "input": "alb", "output": "â â ‡â ƒ" }, { "input": "alb's", "output": "â â ‡â ƒâ „â Ž" }, { "input": "albacore", "output": "â â ‡â ƒâ â ‰â •â —â ‘" }, { "input": "albacore's", "output": "â â ‡â ƒâ â ‰â •â —â ‘â „â Ž" }, { "input": "albacores", "output": "â â ‡â ƒâ â ‰â •â —â ‘â Ž" }, { "input": "albatross", "output": "â â ‡â ƒâ â žâ —â •â Žâ Ž" }, { "input": "albatross's", "output": "â â ‡â ƒâ â žâ —â •â Žâ Žâ „â Ž" }, { "input": "albatrosses", "output": "â â ‡â ƒâ â žâ —â •â Žâ Žâ ‘â Ž" }, { "input": "albeit", "output": "â â ‡â ƒâ ‘â Šâ ž" }, { "input": "albinism", "output": "â â ‡â ƒâ ”â Šâ Žâ " }, { "input": "albinism's", "output": "â â ‡â ƒâ ”â Šâ Žâ â „â Ž" }, { "input": "albino", "output": "â â ‡â ƒâ ”â •" }, { "input": "albino's", "output": "â â ‡â ƒâ ”â •â „â Ž" }, { "input": "albinos", "output": "â â ‡â ƒâ ”â •â Ž" }, { "input": "albs", "output": "â â ‡â ƒâ Ž" }, { "input": "album", "output": "â â ‡â ƒâ ¥â " }, { "input": "album's", "output": "â â ‡â ƒâ ¥â â „â Ž" }, { "input": "albumen", "output": "â â ‡â ƒâ ¥â â ¢" }, { "input": "albumen's", "output": "â â ‡â ƒâ ¥â â ¢â „â Ž" }, { "input": "albumin", "output": "â â ‡â ƒâ ¥â â ”" }, { "input": "albumin's", "output": "â â ‡â ƒâ ¥â â ”â „â Ž" }, { "input": "albuminous", "output": "â â ‡â ƒâ ¥â â ”⠳⠎" }, { "input": "albums", "output": "â â ‡â ƒâ ¥â â Ž" }, { "input": "alchemist", "output": "â â ‡â ¡â ‘â â Šâ Œ" }, { "input": "alchemist's", "output": "â â ‡â ¡â ‘â â Šâ Œâ „â Ž" }, { "input": "alchemists", "output": "â â ‡â ¡â ‘â â Šâ Œâ Ž" }, { "input": "alchemy", "output": "â â ‡â ¡â ‘â â ½" }, { "input": "alchemy's", "output": "â â ‡â ¡â ‘â â ½â „â Ž" }, { "input": "alcohol", "output": "â â ‡â ‰â •â “â •â ‡" }, { "input": "alcohol's", "output": "â â ‡â ‰â •⠓⠕⠇⠄⠎" }, { "input": "alcoholic", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠉" }, { "input": "alcoholic's", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠉⠄⠎" }, { "input": "alcoholically", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠉⠠⠽" }, { "input": "alcoholics", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠉⠎" }, { "input": "alcoholism", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠎â " }, { "input": "alcoholism's", "output": "â â ‡â ‰â •⠓⠕⠇⠊⠎â â „â Ž" }, { "input": "alcohols", "output": "â â ‡â ‰â •⠓⠕⠇⠎" }, { "input": "alcove", "output": "â â ‡â ‰â •â §â ‘" }, { "input": "alcove's", "output": "â â ‡â ‰â •â §â ‘â „â Ž" }, { "input": "alcoves", "output": "â â ‡â ‰â •â §â ‘â Ž" }, { "input": "alder", "output": "â â ‡â ™â »" }, { "input": "alder's", "output": "â â ‡â ™â »â „â Ž" }, { "input": "alderman", "output": "â â ‡â ™â »â â â " }, { "input": "alderman's", "output": "â â ‡â ™â »â â â â „â Ž" }, { "input": "aldermen", "output": "â â ‡â ™â »â â ¢" }, { "input": "alders", "output": "â â ‡â ™â »â Ž" }, { "input": "alderwoman", "output": "â â ‡â ™â »â ºâ •â â â " }, { "input": "alderwoman's", "output": "â â ‡â ™â »â ºâ •â â â â „â Ž" }, { "input": "alderwomen", "output": "â â ‡â ™â »â ºâ •â â ¢" }, { "input": "ale", "output": "â â ‡â ‘" }, { "input": "ale's", "output": "â â ‡â ‘â „â Ž" }, { "input": "aleatory", "output": "â â ‡â ‚â žâ •â —â ½" }, { "input": "alembic", "output": "â â ‡â ‘â â ƒâ Šâ ‰" }, { "input": "alembic's", "output": "â â ‡â ‘â â ƒâ Šâ ‰â „â Ž" }, { "input": "alembics", "output": "â â ‡â ‘â â ƒâ Šâ ‰â Ž" }, { "input": "alert", "output": "â â ‡â »â ž" }, { "input": "alert's", "output": "â â ‡â »â žâ „â Ž" }, { "input": "alerted", "output": "â â ‡â »â žâ «" }, { "input": "alerting", "output": "â â ‡â »â žâ Œ" }, { "input": "alertly", "output": "â â ‡â »â žâ ‡â ½" }, { "input": "alertness", "output": "â â ‡â »â žâ °â Ž" }, { "input": "alertness's", "output": "â â ‡â »â žâ °â Žâ „â Ž" }, { "input": "alerts", "output": "â â ‡â »â žâ Ž" }, { "input": "ales", "output": "â â ‡â ‘â Ž" }, { "input": "alewife", "output": "â â ‡â ‘⠺⠊⠋⠑" }, { "input": "alewife's", "output": "â â ‡â ‘⠺⠊⠋⠑⠄⠎" }, { "input": "alewives", "output": "â â ‡â ‘⠺⠊⠧⠑⠎" }, { "input": "alfalfa", "output": "â â ‡â ‹â â ‡â ‹â " }, { "input": "alfalfa's", "output": "â â ‡â ‹â â ‡â ‹â â „â Ž" }, { "input": "alfresco", "output": "â â ‡â ‹â —⠑⠎⠉⠕" }, { "input": "alga", "output": "â â ‡â ›â " }, { "input": "alga's", "output": "â â ‡â ›â â „â Ž" }, { "input": "algae", "output": "â â ‡â ›â â ‘" }, { "input": "algebra", "output": "â â ‡â ›â ‘⠃⠗â " }, { "input": "algebra's", "output": "â â ‡â ›â ‘⠃⠗â â „â Ž" }, { "input": "algebraic", "output": "â â ‡â ›â ‘⠃⠗â â Šâ ‰" }, { "input": "algebraically", "output": "â â ‡â ›â ‘⠃⠗â â Šâ ‰â  â ½" }, { "input": "algebras", "output": "â â ‡â ›â ‘⠃⠗â â Ž" }, { "input": "algorithm", "output": "â â ‡â ›â •â —â Šâ ¹â " }, { "input": "algorithm's", "output": "â â ‡â ›â •â —â Šâ ¹â â „â Ž" }, { "input": "algorithmic", "output": "â â ‡â ›â •â —â Šâ ¹â â Šâ ‰" }, { "input": "algorithms", "output": "â â ‡â ›â •â —â Šâ ¹â â Ž" }, { "input": "alias", "output": "â â ‡â Šâ â Ž" }, { "input": "alias's", "output": "â â ‡â Šâ â Žâ „â Ž" }, { "input": "aliased", "output": "â â ‡â Šâ â Žâ «" }, { "input": "aliases", "output": "â â ‡â Šâ â Žâ ‘â Ž" }, { "input": "aliasing", "output": "â â ‡â Šâ â Žâ Œ" }, { "input": "alibi", "output": "â â ‡â Šâ ƒâ Š" }, { "input": "alibi's", "output": "â â ‡â Šâ ƒâ Šâ „â Ž" }, { "input": "alibied", "output": "â â ‡â Šâ ƒâ Šâ «" }, { "input": "alibiing", "output": "â â ‡â Šâ ƒâ Šâ Œ" }, { "input": "alibis", "output": "â â ‡â Šâ ƒâ Šâ Ž" }, { "input": "alien", "output": "â â ‡â Šâ ¢" }, { "input": "alien's", "output": "â â ‡â Šâ ¢â „â Ž" }, { "input": "alienable", "output": "â â ‡â Šâ ¢â â ¼" }, { "input": "alienate", "output": "â â ‡â Šâ ¢â â žâ ‘" }, { "input": "alienated", "output": "â â ‡â Šâ ¢â â žâ «" }, { "input": "alienates", "output": "â â ‡â Šâ ¢â â žâ ‘â Ž" }, { "input": "alienating", "output": "â â ‡â Šâ ¢â â žâ Œ" }, { "input": "alienation", "output": "â â ‡â Šâ ¢â  â " }, { "input": "alienation's", "output": "â â ‡â Šâ ¢â  â â „â Ž" }, { "input": "aliened", "output": "â â ‡â Šâ ¢â «" }, { "input": "aliening", "output": "â â ‡â Šâ ¢â Œ" }, { "input": "alienist", "output": "â â ‡â Šâ ¢â Šâ Œ" }, { "input": "alienist's", "output": "â â ‡â Šâ ¢â Šâ Œâ „â Ž" }, { "input": "alienists", "output": "â â ‡â Šâ ¢â Šâ Œâ Ž" }, { "input": "aliens", "output": "â â ‡â Šâ ¢â Ž" }, { "input": "alight", "output": "â â ‡â Šâ £â ž" }, { "input": "alighted", "output": "â â ‡â Šâ £â žâ «" }, { "input": "alighting", "output": "â â ‡â Šâ £â žâ Œ" }, { "input": "alights", "output": "â â ‡â Šâ £â žâ Ž" }, { "input": "align", "output": "â â ‡â Šâ ›â " }, { "input": "aligned", "output": "â â ‡â Šâ ›â â «" }, { "input": "aligner", "output": "â â ‡â Šâ ›â â »" }, { "input": "aligner's", "output": "â â ‡â Šâ ›â â »â „â Ž" }, { "input": "aligners", "output": "â â ‡â Šâ ›â â »â Ž" }, { "input": "aligning", "output": "â â ‡â Šâ ›â â Œ" }, { "input": "alignment", "output": "â â ‡â Šâ ›â â °â ž" }, { "input": "alignment's", "output": "â â ‡â Šâ ›â â °â žâ „â Ž" }, { "input": "alignments", "output": "â â ‡â Šâ ›â â °â žâ Ž" }, { "input": "aligns", "output": "â â ‡â Šâ ›â â Ž" }, { "input": "alike", "output": "â â ‡â Šâ …â ‘" }, { "input": "aliment", "output": "â â ‡â Šâ °â ž" }, { "input": "aliment's", "output": "â â ‡â Šâ °â žâ „â Ž" }, { "input": "alimentary", "output": "â â ‡â Šâ °â žâ œâ ½" }, { "input": "alimented", "output": "â â ‡â Šâ °â žâ «" }, { "input": "alimenting", "output": "â â ‡â Šâ °â žâ Œ" }, { "input": "aliments", "output": "â â ‡â Šâ °â žâ Ž" }, { "input": "alimony", "output": "â â ‡â Šâ â •â â ½" }, { "input": "alimony's", "output": "â â ‡â Šâ â •â â ½â „â Ž" }, { "input": "alive", "output": "â â ‡â Šâ §â ‘" }, { "input": "aliveness", "output": "â â ‡â Šâ §â ‘â °â Ž" }, { "input": "aliveness's", "output": "â â ‡â Šâ §â ‘â °â Žâ „â Ž" }, { "input": "aliyah", "output": "â â ‡â Šâ ½â â “" }, { "input": "aliyah's", "output": "â â ‡â Šâ ½â â “â „â Ž" }, { "input": "aliyahs", "output": "â â ‡â Šâ ½â â “â Ž" }, { "input": "alkali", "output": "â â ‡â …â â ‡â Š" }, { "input": "alkali's", "output": "â â ‡â …â â ‡â Šâ „â Ž" }, { "input": "alkalies", "output": "â â ‡â …â â ‡â Šâ ‘â Ž" }, { "input": "alkaline", "output": "â â ‡â …â â ‡â ”â ‘" }, { "input": "alkalinity", "output": "â â ‡â …â â ‡â ”â °â ½" }, { "input": "alkalinity's", "output": "â â ‡â …â â ‡â ”⠰⠽⠄⠎" }, { "input": "alkalize", "output": "â â ‡â …â â ‡â Šâ µâ ‘" }, { "input": "alkalized", "output": "â â ‡â …â â ‡â Šâ µâ «" }, { "input": "alkalizes", "output": "â â ‡â …â â ‡â Šâ µâ ‘â Ž" }, { "input": "alkalizing", "output": "â â ‡â …â â ‡â Šâ µâ Œ" }, { "input": "alkaloid", "output": "â â ‡â …â â ‡â •â Šâ ™" }, { "input": "alkaloid's", "output": "â â ‡â …â â ‡â •⠊⠙⠄⠎" }, { "input": "alkaloids", "output": "â â ‡â …â â ‡â •⠊⠙⠎" }, { "input": "alkyd", "output": "â â ‡â …⠽⠙" }, { "input": "alkyd's", "output": "â â ‡â …⠽⠙⠄⠎" }, { "input": "alkyds", "output": "â â ‡â …⠽⠙⠎" }, { "input": "all", "output": "â â ‡â ‡" }, { "input": "all's", "output": "â â ‡â ‡â „â Ž" }, { "input": "allay", "output": "â â ‡â ‡â â ½" }, { "input": "allayed", "output": "â â ‡â ‡â â ½â «" }, { "input": "allaying", "output": "â â ‡â ‡â â ½â Œ" }, { "input": "allays", "output": "â â ‡â ‡â â ½â Ž" }, { "input": "allegation", "output": "â â ‡â ‡â ‘⠛⠠â " }, { "input": "allegation's", "output": "â â ‡â ‡â ‘⠛⠠â â „â Ž" }, { "input": "allegations", "output": "â â ‡â ‡â ‘⠛⠠â â Ž" }, { "input": "allege", "output": "â â ‡â ‡â ‘⠛⠑" }, { "input": "alleged", "output": "â â ‡â ‡â ‘⠛⠫" }, { "input": "allegedly", "output": "â â ‡â ‡â ‘⠛⠫⠇⠽" }, { "input": "alleges", "output": "â â ‡â ‡â ‘⠛⠑⠎" }, { "input": "allegiance", "output": "â â ‡â ‡â ‘⠛⠊⠨⠑" }, { "input": "allegiance's", "output": "â â ‡â ‡â ‘⠛⠊⠨⠑⠄⠎" }, { "input": "allegiances", "output": "â â ‡â ‡â ‘⠛⠊⠨⠑⠎" }, { "input": "alleging", "output": "â â ‡â ‡â ‘⠛⠌" }, { "input": "allegoric", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠉" }, { "input": "allegorical", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠉â â ‡" }, { "input": "allegorically", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠉⠠⠽" }, { "input": "allegories", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠑⠎" }, { "input": "allegorist", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠌" }, { "input": "allegorist's", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠌⠄⠎" }, { "input": "allegorists", "output": "â â ‡â ‡â ‘⠛⠕⠗⠊⠌⠎" }, { "input": "allegory", "output": "â â ‡â ‡â ‘⠛⠕⠗⠽" }, { "input": "allegory's", "output": "â â ‡â ‡â ‘⠛⠕⠗⠽⠄⠎" }, { "input": "allegretto", "output": "â â ‡â ‡â ‘⠛⠗⠑⠞⠞⠕" }, { "input": "allegretto's", "output": "â â ‡â ‡â ‘⠛⠗⠑⠞⠞⠕⠄⠎" }, { "input": "allegrettos", "output": "â â ‡â ‡â ‘⠛⠗⠑⠞⠞⠕⠎" }, { "input": "allegro", "output": "â â ‡â ‡â ‘⠛⠗⠕" }, { "input": "allegro's", "output": "â â ‡â ‡â ‘⠛⠗⠕⠄⠎" }, { "input": "allegros", "output": "â â ‡â ‡â ‘⠛⠗⠕⠎" }, { "input": "allele", "output": "â â ‡â ‡â ‘⠇⠑" }, { "input": "allele's", "output": "â â ‡â ‡â ‘⠇⠑⠄⠎" }, { "input": "alleles", "output": "â â ‡â ‡â ‘⠇⠑⠎" }, { "input": "alleluia", "output": "â â ‡â ‡â ‘⠇⠥⠊â " }, { "input": "alleluia's", "output": "â â ‡â ‡â ‘⠇⠥⠊â â „â Ž" }, { "input": "alleluias", "output": "â â ‡â ‡â ‘⠇⠥⠊â â Ž" }, { "input": "allergen", "output": "â â ‡â ‡â »â ›â ¢" }, { "input": "allergen's", "output": "â â ‡â ‡â »â ›â ¢â „â Ž" }, { "input": "allergenic", "output": "â â ‡â ‡â »â ›â ¢â Šâ ‰" }, { "input": "allergens", "output": "â â ‡â ‡â »â ›â ¢â Ž" }, { "input": "allergic", "output": "â â ‡â ‡â »â ›â Šâ ‰" }, { "input": "allergically", "output": "â â ‡â ‡â »â ›â Šâ ‰â  â ½" }, { "input": "allergies", "output": "â â ‡â ‡â »â ›â Šâ ‘â Ž" }, { "input": "allergist", "output": "â â ‡â ‡â »â ›â Šâ Œ" }, { "input": "allergist's", "output": "â â ‡â ‡â »â ›â Šâ Œâ „â Ž" }, { "input": "allergists", "output": "â â ‡â ‡â »â ›â Šâ Œâ Ž" }, { "input": "allergy", "output": "â â ‡â ‡â »â ›â ½" }, { "input": "allergy's", "output": "â â ‡â ‡â »â ›â ½â „â Ž" }, { "input": "alleviate", "output": "â â ‡â ‡â ‘â §â Šâ â žâ ‘" }, { "input": "alleviated", "output": "â â ‡â ‡â ‘â §â Šâ â žâ «" }, { "input": "alleviates", "output": "â â ‡â ‡â ‘â §â Šâ â žâ ‘â Ž" }, { "input": "alleviating", "output": "â â ‡â ‡â ‘â §â Šâ â žâ Œ" }, { "input": "alleviation", "output": "â â ‡â ‡â ‘â §â Šâ  â " }, { "input": "alleviation's", "output": "â â ‡â ‡â ‘â §â Šâ  â â „â Ž" }, { "input": "alley", "output": "â â ‡â ‡â ‘â ½" }, { "input": "alley's", "output": "â â ‡â ‡â ‘⠽⠄⠎" }, { "input": "alleys", "output": "â â ‡â ‡â ‘⠽⠎" }, { "input": "alleyway", "output": "â â ‡â ‡â ‘⠽⠺â â ½" }, { "input": "alleyway's", "output": "â â ‡â ‡â ‘⠽⠺â â ½â „â Ž" }, { "input": "alleyways", "output": "â â ‡â ‡â ‘⠽⠺â â ½â Ž" }, { "input": "alliance", "output": "â â ‡â ‡â Šâ ¨â ‘" }, { "input": "alliance's", "output": "â â ‡â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "alliances", "output": "â â ‡â ‡â Šâ ¨â ‘â Ž" }, { "input": "allied", "output": "â â ‡â ‡â Šâ «" }, { "input": "allies", "output": "â â ‡â ‡â Šâ ‘â Ž" }, { "input": "alligator", "output": "â â ‡â ‡â Šâ ›â â žâ •â —" }, { "input": "alligator's", "output": "â â ‡â ‡â Šâ ›â â žâ •â —â „â Ž" }, { "input": "alligators", "output": "â â ‡â ‡â Šâ ›â â žâ •â —â Ž" }, { "input": "alliterate", "output": "â â ‡â ‡â Šâ žâ »â â žâ ‘" }, { "input": "alliterated", "output": "â â ‡â ‡â Šâ žâ »â â žâ «" }, { "input": "alliterates", "output": "â â ‡â ‡â Šâ žâ »â â žâ ‘â Ž" }, { "input": "alliterating", "output": "â â ‡â ‡â Šâ žâ »â â žâ Œ" }, { "input": "alliteration", "output": "â â ‡â ‡â Šâ žâ »â  â " }, { "input": "alliteration's", "output": "â â ‡â ‡â Šâ žâ »â  â â „â Ž" }, { "input": "alliterations", "output": "â â ‡â ‡â Šâ žâ »â  â â Ž" }, { "input": "alliterative", "output": "â â ‡â ‡â Šâ žâ »â â žâ Šâ §â ‘" }, { "input": "alliteratively", "output": "â â ‡â ‡â Šâ žâ »â â žâ Šâ §â ‘⠇⠽" }, { "input": "allocate", "output": "â â ‡â ‡â •â ‰â â žâ ‘" }, { "input": "allocated", "output": "â â ‡â ‡â •â ‰â â žâ «" }, { "input": "allocates", "output": "â â ‡â ‡â •â ‰â â žâ ‘â Ž" }, { "input": "allocating", "output": "â â ‡â ‡â •â ‰â â žâ Œ" }, { "input": "allocation", "output": "â â ‡â ‡â •⠉⠠â " }, { "input": "allocation's", "output": "â â ‡â ‡â •⠉⠠â â „â Ž" }, { "input": "allocations", "output": "â â ‡â ‡â •⠉⠠â â Ž" }, { "input": "allot", "output": "â â ‡â ‡â •â ž" }, { "input": "allotment", "output": "â â ‡â ‡â •â žâ °â ž" }, { "input": "allotment's", "output": "â â ‡â ‡â •â žâ °â žâ „â Ž" }, { "input": "allotments", "output": "â â ‡â ‡â •â žâ °â žâ Ž" }, { "input": "allots", "output": "â â ‡â ‡â •â žâ Ž" }, { "input": "allotted", "output": "â â ‡â ‡â •â žâ žâ «" }, { "input": "allotting", "output": "â â ‡â ‡â •â žâ žâ Œ" }, { "input": "allover", "output": "â â ‡â ‡â •â §â »" }, { "input": "allow", "output": "â â ‡â ‡â ª" }, { "input": "allowable", "output": "â â ‡â ‡â ªâ â ¼" }, { "input": "allowably", "output": "â â ‡â ‡â ªâ â ƒâ ‡â ½" }, { "input": "allowance", "output": "â â ‡â ‡â ªâ ¨â ‘" }, { "input": "allowance's", "output": "â â ‡â ‡â ªâ ¨â ‘â „â Ž" }, { "input": "allowances", "output": "â â ‡â ‡â ªâ ¨â ‘â Ž" }, { "input": "allowed", "output": "â â ‡â ‡â ªâ «" }, { "input": "allowing", "output": "â â ‡â ‡â ªâ Œ" }, { "input": "allows", "output": "â â ‡â ‡â ªâ Ž" }, { "input": "alloy", "output": "â â ‡â ‡â •â ½" }, { "input": "alloy's", "output": "â â ‡â ‡â •⠽⠄⠎" }, { "input": "alloyed", "output": "â â ‡â ‡â •⠽⠫" }, { "input": "alloying", "output": "â â ‡â ‡â •⠽⠌" }, { "input": "alloys", "output": "â â ‡â ‡â •⠽⠎" }, { "input": "allspice", "output": "â â ‡â ‡â Žâ â Šâ ‰â ‘" }, { "input": "allspice's", "output": "â â ‡â ‡â Žâ â Šâ ‰â ‘â „â Ž" }, { "input": "allude", "output": "â â ‡â ‡â ¥â ™â ‘" }, { "input": "alluded", "output": "â â ‡â ‡â ¥â ™â «" }, { "input": "alludes", "output": "â â ‡â ‡â ¥â ™â ‘â Ž" }, { "input": "alluding", "output": "â â ‡â ‡â ¥â ™â Œ" }, { "input": "allure", "output": "â â ‡â ‡â ¥â —â ‘" }, { "input": "allure's", "output": "â â ‡â ‡â ¥â —â ‘â „â Ž" }, { "input": "allured", "output": "â â ‡â ‡â ¥â —â «" }, { "input": "allurement", "output": "â â ‡â ‡â ¥â —â ‘â °â ž" }, { "input": "allurement's", "output": "â â ‡â ‡â ¥â —â ‘â °â žâ „â Ž" }, { "input": "allurements", "output": "â â ‡â ‡â ¥â —â ‘â °â žâ Ž" }, { "input": "allures", "output": "â â ‡â ‡â ¥â —â ‘â Ž" }, { "input": "alluring", "output": "â â ‡â ‡â ¥â —â Œ" }, { "input": "allusion", "output": "â â ‡â ‡â ¥â ¨â " }, { "input": "allusion's", "output": "â â ‡â ‡â ¥â ¨â â „â Ž" }, { "input": "allusions", "output": "â â ‡â ‡â ¥â ¨â â Ž" }, { "input": "allusive", "output": "â â ‡â ‡â ¥â Žâ Šâ §â ‘" }, { "input": "allusively", "output": "â â ‡â ‡â ¥â Žâ Šâ §â ‘⠇⠽" }, { "input": "allusiveness", "output": "â â ‡â ‡â ¥â Žâ Šâ §â ‘â °â Ž" }, { "input": "allusiveness's", "output": "â â ‡â ‡â ¥â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "alluvial", "output": "â â ‡â ‡â ¥â §â Šâ â ‡" }, { "input": "alluvial's", "output": "â â ‡â ‡â ¥â §â Šâ â ‡â „â Ž" }, { "input": "alluvium", "output": "â â ‡â ‡â ¥â §â Šâ ¥â " }, { "input": "alluvium's", "output": "â â ‡â ‡â ¥â §â Šâ ¥â â „â Ž" }, { "input": "alluviums", "output": "â â ‡â ‡â ¥â §â Šâ ¥â â Ž" }, { "input": "ally", "output": "â â ‡â ‡â ½" }, { "input": "ally's", "output": "â â ‡â ‡â ½â „â Ž" }, { "input": "allying", "output": "â â ‡â ‡â ½â Œ" }, { "input": "almanac", "output": "â â ‡â â â â â ‰" }, { "input": "almanac's", "output": "â â ‡â â â â â ‰â „â Ž" }, { "input": "almanacs", "output": "â â ‡â â â â â ‰â Ž" }, { "input": "almighty", "output": "â â ‡â â Šâ £â žâ ½" }, { "input": "almond", "output": "â â ‡â â •â â ™" }, { "input": "almond's", "output": "â â ‡â â •â â ™â „â Ž" }, { "input": "almonds", "output": "â â ‡â â •â â ™â Ž" }, { "input": "almost", "output": "â â ‡â " }, { "input": "alms", "output": "â â ‡â â Ž" }, { "input": "alms's", "output": "â â ‡â â Žâ „â Ž" }, { "input": "aloe", "output": "â â ‡â •â ‘" }, { "input": "aloe's", "output": "â â ‡â •â ‘â „â Ž" }, { "input": "aloes", "output": "â â ‡â •â ‘â Ž" }, { "input": "aloft", "output": "â â ‡â ·â ž" }, { "input": "aloha", "output": "â â ‡â •â “â " }, { "input": "aloha's", "output": "â â ‡â •â “â â „â Ž" }, { "input": "alohas", "output": "â â ‡â •â “â â Ž" }, { "input": "alone", "output": "â â ‡â â •" }, { "input": "along", "output": "â â ‡â °â ›" }, { "input": "alongshore", "output": "â â ‡â °â ›â ©â •â —â ‘" }, { "input": "alongside", "output": "â â ‡â °â ›â Žâ Šâ ™â ‘" }, { "input": "aloof", "output": "â â ‡â •â ·" }, { "input": "aloofly", "output": "â â ‡â •⠷⠇⠽" }, { "input": "aloofness", "output": "â â ‡â •â ·â °â Ž" }, { "input": "aloofness's", "output": "â â ‡â •â ·â °â Žâ „â Ž" }, { "input": "aloud", "output": "â â ‡â ³â ™" }, { "input": "alp", "output": "â â ‡â " }, { "input": "alp's", "output": "â â ‡â â „â Ž" }, { "input": "alpaca", "output": "â â ‡â â â ‰â " }, { "input": "alpaca's", "output": "â â ‡â â â ‰â â „â Ž" }, { "input": "alpacas", "output": "â â ‡â â â ‰â â Ž" }, { "input": "alpha", "output": "â â ‡â â “â " }, { "input": "alpha's", "output": "â â ‡â â “â â „â Ž" }, { "input": "alphabet", "output": "â â ‡â â “â â ƒâ ‘â ž" }, { "input": "alphabet's", "output": "â â ‡â â “â â ƒâ ‘â žâ „â Ž" }, { "input": "alphabetic", "output": "â â ‡â â “â â ƒâ ‘â žâ Šâ ‰" }, { "input": "alphabetical", "output": "â â ‡â â “â â ƒâ ‘â žâ Šâ ‰â â ‡" }, { "input": "alphabetically", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠉⠠⠽" }, { "input": "alphabetization", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠠â " }, { "input": "alphabetization's", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠠â â „â Ž" }, { "input": "alphabetizations", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠠â â Ž" }, { "input": "alphabetize", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠑" }, { "input": "alphabetized", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠫" }, { "input": "alphabetizer", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠻" }, { "input": "alphabetizer's", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠻⠄⠎" }, { "input": "alphabetizers", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠻⠎" }, { "input": "alphabetizes", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠑⠎" }, { "input": "alphabetizing", "output": "â â ‡â â “â â ƒâ ‘⠞⠊⠵⠌" }, { "input": "alphabets", "output": "â â ‡â â “â â ƒâ ‘â žâ Ž" }, { "input": "alphanumeric", "output": "â â ‡â â “â â â ¥â â »â Šâ ‰" }, { "input": "alphanumerical", "output": "â â ‡â â “â â â ¥â â »â Šâ ‰â â ‡" }, { "input": "alphanumerically", "output": "â â ‡â â “â â â ¥â â »â Šâ ‰â  â ½" }, { "input": "alphas", "output": "â â ‡â â “â â Ž" }, { "input": "alpine", "output": "â â ‡â â ”â ‘" }, { "input": "alps", "output": "â â ‡â â Ž" }, { "input": "already", "output": "â â ‡â —" }, { "input": "alright", "output": "â â ‡â â —" }, { "input": "also", "output": "â â ‡" }, { "input": "altar", "output": "â â ‡â žâ œ" }, { "input": "altar's", "output": "â â ‡â žâ œâ „â Ž" }, { "input": "altars", "output": "â â ‡â žâ œâ Ž" }, { "input": "alter", "output": "â â ‡â žâ »" }, { "input": "alterable", "output": "â â ‡â žâ »â â ¼" }, { "input": "alteration", "output": "â â ‡â žâ »â  â " }, { "input": "alteration's", "output": "â â ‡â žâ »â  â â „â Ž" }, { "input": "alterations", "output": "â â ‡â žâ »â  â â Ž" }, { "input": "altercation", "output": "â â ‡â žâ »â ‰â  â " }, { "input": "altercation's", "output": "â â ‡â žâ »â ‰â  â â „â Ž" }, { "input": "altercations", "output": "â â ‡â žâ »â ‰â  â â Ž" }, { "input": "altered", "output": "â â ‡â žâ »â «" }, { "input": "altering", "output": "â â ‡â žâ »â Œ" }, { "input": "alternate", "output": "â â ‡â žâ »â â â žâ ‘" }, { "input": "alternate's", "output": "â â ‡â žâ »â â â žâ ‘â „â Ž" }, { "input": "alternated", "output": "â â ‡â žâ »â â â žâ «" }, { "input": "alternately", "output": "â â ‡â žâ »â â â žâ ‘⠇⠽" }, { "input": "alternates", "output": "â â ‡â žâ »â â â žâ ‘â Ž" }, { "input": "alternating", "output": "â â ‡â žâ »â â â žâ Œ" }, { "input": "alternation", "output": "â â ‡â žâ »â â  â " }, { "input": "alternation's", "output": "â â ‡â žâ »â â  â â „â Ž" }, { "input": "alternations", "output": "â â ‡â žâ »â â  â â Ž" }, { "input": "alternative", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘" }, { "input": "alternative's", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘â „â Ž" }, { "input": "alternatively", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘⠇⠽" }, { "input": "alternatives", "output": "â â ‡â žâ »â â â žâ Šâ §â ‘â Ž" }, { "input": "alternator", "output": "â â ‡â žâ »â â â žâ •â —" }, { "input": "alternator's", "output": "â â ‡â žâ »â â â žâ •â —â „â Ž" }, { "input": "alternators", "output": "â â ‡â žâ »â â â žâ •â —â Ž" }, { "input": "alters", "output": "â â ‡â žâ »â Ž" }, { "input": "although", "output": "â â ‡â ¹" }, { "input": "altimeter", "output": "â â ‡â žâ Šâ â ‘â žâ »" }, { "input": "altimeter's", "output": "â â ‡â žâ Šâ â ‘⠞⠻⠄⠎" }, { "input": "altimeters", "output": "â â ‡â žâ Šâ â ‘⠞⠻⠎" }, { "input": "altitude", "output": "â â ‡â žâ Šâ žâ ¥â ™â ‘" }, { "input": "altitude's", "output": "â â ‡â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "altitudes", "output": "â â ‡â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "alto", "output": "â â ‡â žâ •" }, { "input": "alto's", "output": "â â ‡â žâ •â „â Ž" }, { "input": "altogether", "output": "â â ‡â ž" }, { "input": "altos", "output": "â â ‡â žâ •â Ž" }, { "input": "altruism", "output": "â â ‡â žâ —⠥⠊⠎â " }, { "input": "altruism's", "output": "â â ‡â žâ —⠥⠊⠎â â „â Ž" }, { "input": "altruist", "output": "â â ‡â žâ —⠥⠊⠌" }, { "input": "altruist's", "output": "â â ‡â žâ —⠥⠊⠌⠄⠎" }, { "input": "altruistic", "output": "â â ‡â žâ —⠥⠊⠌⠊⠉" }, { "input": "altruistically", "output": "â â ‡â žâ —⠥⠊⠌⠊⠉⠠⠽" }, { "input": "altruists", "output": "â â ‡â žâ —⠥⠊⠌⠎" }, { "input": "alum", "output": "â â ‡â ¥â " }, { "input": "alum's", "output": "â â ‡â ¥â â „â Ž" }, { "input": "alumina", "output": "â â ‡â ¥â â ”â " }, { "input": "alumina's", "output": "â â ‡â ¥â â ”â â „â Ž" }, { "input": "aluminum", "output": "â â ‡â ¥â â ”â ¥â " }, { "input": "aluminum's", "output": "â â ‡â ¥â â ”â ¥â â „â Ž" }, { "input": "alumna", "output": "â â ‡â ¥â â â " }, { "input": "alumna's", "output": "â â ‡â ¥â â â â „â Ž" }, { "input": "alumnae", "output": "â â ‡â ¥â â â â ‘" }, { "input": "alumni", "output": "â â ‡â ¥â â â Š" }, { "input": "alumnus", "output": "â â ‡â ¥â â â ¥â Ž" }, { "input": "alumnus's", "output": "â â ‡â ¥â â â ¥â Žâ „â Ž" }, { "input": "alums", "output": "â â ‡â ¥â â Ž" }, { "input": "always", "output": "â â ‡â º" }, { "input": "am", "output": "â â " }, { "input": "amalgam", "output": "â â â â ‡â ›â â " }, { "input": "amalgam's", "output": "â â â â ‡â ›â â â „â Ž" }, { "input": "amalgamate", "output": "â â â â ‡â ›â â â â žâ ‘" }, { "input": "amalgamated", "output": "â â â â ‡â ›â â â â žâ «" }, { "input": "amalgamates", "output": "â â â â ‡â ›â â â â žâ ‘â Ž" }, { "input": "amalgamating", "output": "â â â â ‡â ›â â â â žâ Œ" }, { "input": "amalgamation", "output": "â â â â ‡â ›â â â  â " }, { "input": "amalgamation's", "output": "â â â â ‡â ›â â â  â â „â Ž" }, { "input": "amalgamations", "output": "â â â â ‡â ›â â â  â â Ž" }, { "input": "amalgams", "output": "â â â â ‡â ›â â â Ž" }, { "input": "amanuenses", "output": "â â â â â ¥â ¢â Žâ ‘â Ž" }, { "input": "amanuensis", "output": "â â â â â ¥â ¢â Žâ Šâ Ž" }, { "input": "amanuensis's", "output": "â â â â â ¥â ¢â Žâ Šâ Žâ „â Ž" }, { "input": "amaranth", "output": "â â â œâ â â ¹" }, { "input": "amaranth's", "output": "â â â œâ â â ¹â „â Ž" }, { "input": "amaranths", "output": "â â â œâ â â ¹â Ž" }, { "input": "amaretto", "output": "â â â œâ ‘â žâ žâ •" }, { "input": "amaretto's", "output": "â â â œâ ‘â žâ žâ •â „â Ž" }, { "input": "amaryllis", "output": "â â â œâ ½â ‡â ‡â Šâ Ž" }, { "input": "amaryllis's", "output": "â â â œâ ½â ‡â ‡â Šâ Žâ „â Ž" }, { "input": "amaryllises", "output": "â â â œâ ½â ‡â ‡â Šâ Žâ ‘â Ž" }, { "input": "amass", "output": "â â â â Žâ Ž" }, { "input": "amassed", "output": "â â â â Žâ Žâ «" }, { "input": "amasses", "output": "â â â â Žâ Žâ ‘â Ž" }, { "input": "amassing", "output": "â â â â Žâ Žâ Œ" }, { "input": "amateur", "output": "â â â â žâ ‘⠥⠗" }, { "input": "amateur's", "output": "â â â â žâ ‘⠥⠗⠄⠎" }, { "input": "amateurish", "output": "â â â â žâ ‘⠥⠗⠊⠩" }, { "input": "amateurishness's", "output": "â â â â žâ ‘⠥⠗⠊⠩⠰⠎⠄⠎" }, { "input": "amateurism", "output": "â â â â žâ ‘⠥⠗⠊⠎â " }, { "input": "amateurism's", "output": "â â â â žâ ‘⠥⠗⠊⠎â â „â Ž" }, { "input": "amateurs", "output": "â â â â žâ ‘⠥⠗⠎" }, { "input": "amatory", "output": "â â â â žâ •â —â ½" }, { "input": "amaze", "output": "â â â â µâ ‘" }, { "input": "amaze's", "output": "â â â â µâ ‘â „â Ž" }, { "input": "amazed", "output": "â â â â µâ «" }, { "input": "amazement", "output": "â â â â µâ ‘â °â ž" }, { "input": "amazement's", "output": "â â â â µâ ‘â °â žâ „â Ž" }, { "input": "amazes", "output": "â â â â µâ ‘â Ž" }, { "input": "amazing", "output": "â â â â µâ Œ" }, { "input": "amazingly", "output": "â â â â µâ Œâ ‡â ½" }, { "input": "amazon", "output": "â â â â µâ •â " }, { "input": "amazon's", "output": "â â â â µâ •â â „â Ž" }, { "input": "amazons", "output": "â â â â µâ •â â Ž" }, { "input": "ambassador", "output": "â â â ƒâ â Žâ Žâ â ™â •â —" }, { "input": "ambassador's", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â „â Ž" }, { "input": "ambassadorial", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â Šâ â ‡" }, { "input": "ambassadors", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â Ž" }, { "input": "ambassadorship", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â ©â Šâ " }, { "input": "ambassadorship's", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â ©â Šâ â „â Ž" }, { "input": "ambassadorships", "output": "â â â ƒâ â Žâ Žâ â ™â •â —â ©â Šâ â Ž" }, { "input": "ambassadress", "output": "â â â ƒâ â Žâ Žâ â ™â —â ‘â Žâ Ž" }, { "input": "ambassadress's", "output": "â â â ƒâ â Žâ Žâ â ™â —â ‘â Žâ Žâ „â Ž" }, { "input": "ambassadresses", "output": "â â â ƒâ â Žâ Žâ â ™â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "amber", "output": "â â â ƒâ »" }, { "input": "amber's", "output": "â â â ƒâ »â „â Ž" }, { "input": "ambergris", "output": "â â â ƒâ »â ›â —â Šâ Ž" }, { "input": "ambergris's", "output": "â â â ƒâ »â ›â —â Šâ Žâ „â Ž" }, { "input": "ambiance", "output": "â â â ƒâ Šâ ¨â ‘" }, { "input": "ambiance's", "output": "â â â ƒâ Šâ ¨â ‘â „â Ž" }, { "input": "ambiances", "output": "â â â ƒâ Šâ ¨â ‘â Ž" }, { "input": "ambidexterity", "output": "â â â ƒâ Šâ ™â ‘⠭⠞⠻⠰⠽" }, { "input": "ambidexterity's", "output": "â â â ƒâ Šâ ™â ‘⠭⠞⠻⠰⠽⠄⠎" }, { "input": "ambidextrous", "output": "â â â ƒâ Šâ ™â ‘⠭⠞⠗⠳⠎" }, { "input": "ambidextrously", "output": "â â â ƒâ Šâ ™â ‘⠭⠞⠗⠳⠎⠇⠽" }, { "input": "ambient", "output": "â â â ƒâ Šâ ¢â ž" }, { "input": "ambiguities", "output": "â â â ƒâ Šâ ›â ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "ambiguity", "output": "â â â ƒâ Šâ ›â ¥â °â ½" }, { "input": "ambiguity's", "output": "â â â ƒâ Šâ ›â ¥â °â ½â „â Ž" }, { "input": "ambiguous", "output": "â â â ƒâ Šâ ›â ¥â ³â Ž" }, { "input": "ambiguously", "output": "â â â ƒâ Šâ ›â ¥â ³â Žâ ‡â ½" }, { "input": "ambition", "output": "â â â ƒâ Šâ °â " }, { "input": "ambition's", "output": "â â â ƒâ Šâ °â â „â Ž" }, { "input": "ambitions", "output": "â â â ƒâ Šâ °â â Ž" }, { "input": "ambitious", "output": "â â â ƒâ Šâ žâ Šâ ³â Ž" }, { "input": "ambitiously", "output": "â â â ƒâ Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "ambitiousness", "output": "â â â ƒâ Šâ žâ Šâ ³â Žâ °â Ž" }, { "input": "ambitiousness's", "output": "â â â ƒâ Šâ žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "ambivalence", "output": "â â â ƒâ Šâ §â â ‡â °â ‘" }, { "input": "ambivalence's", "output": "â â â ƒâ Šâ §â â ‡â °â ‘â „â Ž" }, { "input": "ambivalent", "output": "â â â ƒâ Šâ §â â ‡â ¢â ž" }, { "input": "ambivalently", "output": "â â â ƒâ Šâ §â â ‡â ¢â žâ ‡â ½" }, { "input": "amble", "output": "â â â ¼" }, { "input": "amble's", "output": "â â â ¼â „â Ž" }, { "input": "ambled", "output": "â â â ¼â ™" }, { "input": "ambler", "output": "â â â ¼â —" }, { "input": "ambler's", "output": "â â â ¼â —â „â Ž" }, { "input": "amblers", "output": "â â â ¼â —â Ž" }, { "input": "ambles", "output": "â â â ¼â Ž" }, { "input": "ambling", "output": "â â â ƒâ ‡â Œ" }, { "input": "ambrosia", "output": "â â â ƒâ —â •â Žâ Šâ " }, { "input": "ambrosia's", "output": "â â â ƒâ —â •â Žâ Šâ â „â Ž" }, { "input": "ambrosial", "output": "â â â ƒâ —â •â Žâ Šâ â ‡" }, { "input": "ambulance", "output": "â â â ƒâ ¥â ‡â ¨â ‘" }, { "input": "ambulance's", "output": "â â â ƒâ ¥â ‡â ¨â ‘â „â Ž" }, { "input": "ambulances", "output": "â â â ƒâ ¥â ‡â ¨â ‘â Ž" }, { "input": "ambulant", "output": "â â â ƒâ ¥â ‡â â â ž" }, { "input": "ambulate", "output": "â â â ƒâ ¥â ‡â â žâ ‘" }, { "input": "ambulated", "output": "â â â ƒâ ¥â ‡â â žâ «" }, { "input": "ambulates", "output": "â â â ƒâ ¥â ‡â â žâ ‘â Ž" }, { "input": "ambulating", "output": "â â â ƒâ ¥â ‡â â žâ Œ" }, { "input": "ambulation", "output": "â â â ƒâ ¥â ‡â  â " }, { "input": "ambulation's", "output": "â â â ƒâ ¥â ‡â  â â „â Ž" }, { "input": "ambulations", "output": "â â â ƒâ ¥â ‡â  â â Ž" }, { "input": "ambulatories", "output": "â â â ƒâ ¥â ‡â â žâ •â —â Šâ ‘â Ž" }, { "input": "ambulatory", "output": "â â â ƒâ ¥â ‡â â žâ •â —â ½" }, { "input": "ambulatory's", "output": "â â â ƒâ ¥â ‡â â žâ •⠗⠽⠄⠎" }, { "input": "ambuscade", "output": "â â â ƒâ ¥â Žâ ‰â â ™â ‘" }, { "input": "ambuscade's", "output": "â â â ƒâ ¥â Žâ ‰â â ™â ‘â „â Ž" }, { "input": "ambuscaded", "output": "â â â ƒâ ¥â Žâ ‰â â ™â «" }, { "input": "ambuscades", "output": "â â â ƒâ ¥â Žâ ‰â â ™â ‘â Ž" }, { "input": "ambuscading", "output": "â â â ƒâ ¥â Žâ ‰â â ™â Œ" }, { "input": "ambush", "output": "â â â ƒâ ¥â ©" }, { "input": "ambush's", "output": "â â â ƒâ ¥â ©â „â Ž" }, { "input": "ambushed", "output": "â â â ƒâ ¥â ©â «" }, { "input": "ambushes", "output": "â â â ƒâ ¥â ©â ‘â Ž" }, { "input": "ambushing", "output": "â â â ƒâ ¥â ©â Œ" }, { "input": "ameliorate", "output": "â â â ‘⠇⠊⠕⠗â â žâ ‘" }, { "input": "ameliorated", "output": "â â â ‘⠇⠊⠕⠗â â žâ «" }, { "input": "ameliorates", "output": "â â â ‘⠇⠊⠕⠗â â žâ ‘â Ž" }, { "input": "ameliorating", "output": "â â â ‘⠇⠊⠕⠗â â žâ Œ" }, { "input": "amelioration", "output": "â â â ‘⠇⠊⠕⠗⠠â " }, { "input": "amelioration's", "output": "â â â ‘⠇⠊⠕⠗⠠â â „â Ž" }, { "input": "ameliorative", "output": "â â â ‘⠇⠊⠕⠗â â žâ Šâ §â ‘" }, { "input": "amen", "output": "â â â ¢" }, { "input": "amenability", "output": "â â â ¢â â ƒâ Šâ ‡â °â ½" }, { "input": "amenability's", "output": "â â â ¢â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "amenable", "output": "â â â ¢â â ¼" }, { "input": "amenably", "output": "â â â ¢â â ƒâ ‡â ½" }, { "input": "amend", "output": "â â â ¢â ™" }, { "input": "amendable", "output": "â â â ¢â ™â â ¼" }, { "input": "amended", "output": "â â â ¢â ™â «" }, { "input": "amending", "output": "â â â ¢â ™â Œ" }, { "input": "amendment", "output": "â â â ¢â ™â °â ž" }, { "input": "amendment's", "output": "â â â ¢â ™â °â žâ „â Ž" }, { "input": "amendments", "output": "â â â ¢â ™â °â žâ Ž" }, { "input": "amends", "output": "â â â ¢â ™â Ž" }, { "input": "amenities", "output": "â â â ¢â Šâ žâ Šâ ‘â Ž" }, { "input": "amenity", "output": "â â â ¢â °â ½" }, { "input": "amenity's", "output": "â â â ¢â °â ½â „â Ž" }, { "input": "amerce", "output": "â â â »â ‰â ‘" }, { "input": "amerced", "output": "â â â »â ‰â «" }, { "input": "amercement", "output": "â â â »â ‰â ‘â °â ž" }, { "input": "amercement's", "output": "â â â »â ‰â ‘â °â žâ „â Ž" }, { "input": "amercements", "output": "â â â »â ‰â ‘â °â žâ Ž" }, { "input": "amerces", "output": "â â â »â ‰â ‘â Ž" }, { "input": "amercing", "output": "â â â »â ‰â Œ" }, { "input": "americium", "output": "â â â »â Šâ ‰â Šâ ¥â " }, { "input": "americium's", "output": "â â â »â Šâ ‰â Šâ ¥â â „â Ž" }, { "input": "amethyst", "output": "â â â ‘⠹⠽⠌" }, { "input": "amethyst's", "output": "â â â ‘⠹⠽⠌⠄⠎" }, { "input": "amethysts", "output": "â â â ‘⠹⠽⠌⠎" }, { "input": "amiability", "output": "â â â Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "amiability's", "output": "â â â Šâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "amiable", "output": "â â â Šâ â ¼" }, { "input": "amiably", "output": "â â â Šâ â ƒâ ‡â ½" }, { "input": "amicability", "output": "â â â Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "amicability's", "output": "â â â Šâ ‰â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "amicable", "output": "â â â Šâ ‰â â ¼" }, { "input": "amicably", "output": "â â â Šâ ‰â â ƒâ ‡â ½" }, { "input": "amid", "output": "â â â Šâ ™" }, { "input": "amide", "output": "â â â Šâ ™â ‘" }, { "input": "amide's", "output": "â â â Šâ ™â ‘â „â Ž" }, { "input": "amides", "output": "â â â Šâ ™â ‘â Ž" }, { "input": "amidships", "output": "â â â Šâ ™â ©â Šâ â Ž" }, { "input": "amigo", "output": "â â â Šâ ›â •" }, { "input": "amigo's", "output": "â â â Šâ ›â •â „â Ž" }, { "input": "amigos", "output": "â â â Šâ ›â •â Ž" }, { "input": "amiss", "output": "â â â Šâ Žâ Ž" }, { "input": "amity", "output": "â â â °â ½" }, { "input": "amity's", "output": "â â â °â ½â „â Ž" }, { "input": "ammeter", "output": "â â â â ‘â žâ »" }, { "input": "ammeter's", "output": "â â â â ‘⠞⠻⠄⠎" }, { "input": "ammeters", "output": "â â â â ‘⠞⠻⠎" }, { "input": "ammo", "output": "â â â â •" }, { "input": "ammo's", "output": "â â â â •â „â Ž" }, { "input": "ammonia", "output": "â â â â •â â Šâ " }, { "input": "ammonia's", "output": "â â â â •â â Šâ â „â Ž" }, { "input": "ammunition", "output": "â â â â ¥â â Šâ °â " }, { "input": "ammunition's", "output": "â â â â ¥â â Šâ °â â „â Ž" }, { "input": "amnesia", "output": "â â â â ‘â Žâ Šâ " }, { "input": "amnesia's", "output": "â â â â ‘â Žâ Šâ â „â Ž" }, { "input": "amnesiac", "output": "â â â â ‘â Žâ Šâ â ‰" }, { "input": "amnesiac's", "output": "â â â â ‘â Žâ Šâ â ‰â „â Ž" }, { "input": "amnesiacs", "output": "â â â â ‘â Žâ Šâ â ‰â Ž" }, { "input": "amnesic", "output": "â â â â ‘â Žâ Šâ ‰" }, { "input": "amnesic's", "output": "â â â â ‘⠎⠊⠉⠄⠎" }, { "input": "amnesics", "output": "â â â â ‘⠎⠊⠉⠎" }, { "input": "amnestied", "output": "â â â â ‘⠌⠊⠫" }, { "input": "amnesties", "output": "â â â â ‘⠌⠊⠑⠎" }, { "input": "amnesty", "output": "â â â â ‘⠌⠽" }, { "input": "amnesty's", "output": "â â â â ‘⠌⠽⠄⠎" }, { "input": "amnestying", "output": "â â â â ‘⠌⠽⠌" }, { "input": "amniocenteses", "output": "â â â â Šâ •⠉⠢⠞⠑⠎⠑⠎" }, { "input": "amniocentesis", "output": "â â â â Šâ •⠉⠢⠞⠑⠎⠊⠎" }, { "input": "amniocentesis's", "output": "â â â â Šâ •⠉⠢⠞⠑⠎⠊⠎⠄⠎" }, { "input": "amnion", "output": "â â â â Šâ •â " }, { "input": "amnion's", "output": "â â â â Šâ •â â „â Ž" }, { "input": "amnions", "output": "â â â â Šâ •â â Ž" }, { "input": "amniotic", "output": "â â â â Šâ •â žâ Šâ ‰" }, { "input": "amoeba", "output": "â â â •â ‘â ƒâ " }, { "input": "amoeba's", "output": "â â â •â ‘â ƒâ â „â Ž" }, { "input": "amoebae", "output": "â â â •â ‘â ƒâ â ‘" }, { "input": "amoebas", "output": "â â â •â ‘â ƒâ â Ž" }, { "input": "amoebic", "output": "â â â •⠑⠃⠊⠉" }, { "input": "amok", "output": "â â â •â …" }, { "input": "among", "output": "â â â °â ›" }, { "input": "amontillado", "output": "â â â •â â žâ Šâ ‡â ‡â â ™â •" }, { "input": "amontillado's", "output": "â â â •â â žâ Šâ ‡â ‡â â ™â •â „â Ž" }, { "input": "amontillados", "output": "â â â •â â žâ Šâ ‡â ‡â â ™â •â Ž" }, { "input": "amoral", "output": "â â â •â —â â ‡" }, { "input": "amorality", "output": "â â â •â —â â ‡â °â ½" }, { "input": "amorality's", "output": "â â â •â —â â ‡â °â ½â „â Ž" }, { "input": "amorally", "output": "â â â •â —â  â ½" }, { "input": "amorous", "output": "â â â •⠗⠳⠎" }, { "input": "amorously", "output": "â â â •⠗⠳⠎⠇⠽" }, { "input": "amorousness", "output": "â â â •⠗⠳⠎⠰⠎" }, { "input": "amorousness's", "output": "â â â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "amorphous", "output": "â â â •â —â â “⠳⠎" }, { "input": "amorphously", "output": "â â â •â —â â “⠳⠎⠇⠽" }, { "input": "amorphousness", "output": "â â â •â —â â “⠳⠎⠰⠎" }, { "input": "amorphousness's", "output": "â â â •â —â â “⠳⠎⠰⠎⠄⠎" }, { "input": "amortizable", "output": "â â â •â —â žâ Šâ µâ â ¼" }, { "input": "amortization", "output": "â â â •⠗⠞⠊⠵⠠â " }, { "input": "amortization's", "output": "â â â •⠗⠞⠊⠵⠠â â „â Ž" }, { "input": "amortizations", "output": "â â â •⠗⠞⠊⠵⠠â â Ž" }, { "input": "amortize", "output": "â â â •⠗⠞⠊⠵⠑" }, { "input": "amortized", "output": "â â â •⠗⠞⠊⠵⠫" }, { "input": "amortizes", "output": "â â â •⠗⠞⠊⠵⠑⠎" }, { "input": "amortizing", "output": "â â â •⠗⠞⠊⠵⠌" }, { "input": "amount", "output": "â â â ¨â ž" }, { "input": "amount's", "output": "â â â ¨â žâ „â Ž" }, { "input": "amounted", "output": "â â â ¨â žâ «" }, { "input": "amounting", "output": "â â â ¨â žâ Œ" }, { "input": "amounts", "output": "â â â ¨â žâ Ž" }, { "input": "amour", "output": "â â â ³â —" }, { "input": "amour's", "output": "â â â ³â —â „â Ž" }, { "input": "amours", "output": "â â â ³â —â Ž" }, { "input": "amp", "output": "â â â " }, { "input": "amp's", "output": "â â â â „â Ž" }, { "input": "amperage", "output": "â â â â »â â ›â ‘" }, { "input": "amperage's", "output": "â â â â »â â ›â ‘â „â Ž" }, { "input": "ampere", "output": "â â â â »â ‘" }, { "input": "ampere's", "output": "â â â â »â ‘â „â Ž" }, { "input": "amperes", "output": "â â â â »â ‘â Ž" }, { "input": "ampersand", "output": "â â â â »â Žâ ¯" }, { "input": "ampersand's", "output": "â â â â »â Žâ ¯â „â Ž" }, { "input": "ampersands", "output": "â â â â »â Žâ ¯â Ž" }, { "input": "amphetamine", "output": "â â â â “â ‘â žâ â â ”â ‘" }, { "input": "amphetamine's", "output": "â â â â “â ‘â žâ â â ”â ‘â „â Ž" }, { "input": "amphetamines", "output": "â â â â “â ‘â žâ â â ”â ‘â Ž" }, { "input": "amphibian", "output": "â â â â “⠊⠃⠊â â " }, { "input": "amphibian's", "output": "â â â â “⠊⠃⠊â â â „â Ž" }, { "input": "amphibians", "output": "â â â â “⠊⠃⠊â â â Ž" }, { "input": "amphibious", "output": "â â â â “⠊⠃⠊⠳⠎" }, { "input": "amphibiously", "output": "â â â â “⠊⠃⠊⠳⠎⠇⠽" }, { "input": "amphitheater", "output": "â â â â “â Šâ ®â â žâ »" }, { "input": "amphitheater's", "output": "â â â â “â Šâ ®â â žâ »â „â Ž" }, { "input": "amphitheaters", "output": "â â â â “â Šâ ®â â žâ »â Ž" }, { "input": "amphora's", "output": "â â â â “â •â —â â „â Ž" }, { "input": "amphorae", "output": "â â â â “â •â —â â ‘" }, { "input": "ample", "output": "â â â â ‡â ‘" }, { "input": "ampler", "output": "â â â â ‡â »" }, { "input": "amplest", "output": "â â â â ‡â ‘â Œ" }, { "input": "amplification", "output": "â â â â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "amplification's", "output": "â â â â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "amplifications", "output": "â â â â ‡â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "amplified", "output": "â â â â ‡â Šâ ‹â Šâ «" }, { "input": "amplifier", "output": "â â â â ‡â Šâ ‹â Šâ »" }, { "input": "amplifier's", "output": "â â â â ‡â Šâ ‹â Šâ »â „â Ž" }, { "input": "amplifiers", "output": "â â â â ‡â Šâ ‹â Šâ »â Ž" }, { "input": "amplifies", "output": "â â â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "amplify", "output": "â â â â ‡â Šâ ‹â ½" }, { "input": "amplifying", "output": "â â â â ‡â Šâ ‹â ½â Œ" }, { "input": "amplitude", "output": "â â â â ‡â Šâ žâ ¥â ™â ‘" }, { "input": "amplitude's", "output": "â â â â ‡â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "amplitudes", "output": "â â â â ‡â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "amply", "output": "â â â â ‡â ½" }, { "input": "amps", "output": "â â â â Ž" }, { "input": "ampule", "output": "â â â â ¥â ‡â ‘" }, { "input": "ampule's", "output": "â â â â ¥â ‡â ‘â „â Ž" }, { "input": "ampules", "output": "â â â â ¥â ‡â ‘â Ž" }, { "input": "amputate", "output": "â â â â ¥â žâ â žâ ‘" }, { "input": "amputated", "output": "â â â â ¥â žâ â žâ «" }, { "input": "amputates", "output": "â â â â ¥â žâ â žâ ‘â Ž" }, { "input": "amputating", "output": "â â â â ¥â žâ â žâ Œ" }, { "input": "amputation", "output": "â â â â ¥â žâ  â " }, { "input": "amputation's", "output": "â â â â ¥â žâ  â â „â Ž" }, { "input": "amputations", "output": "â â â â ¥â žâ  â â Ž" }, { "input": "amputee", "output": "â â â â ¥â žâ ‘â ‘" }, { "input": "amputee's", "output": "â â â â ¥â žâ ‘â ‘â „â Ž" }, { "input": "amputees", "output": "â â â â ¥â žâ ‘â ‘â Ž" }, { "input": "amulet", "output": "â â â ¥â ‡â ‘â ž" }, { "input": "amulet's", "output": "â â â ¥â ‡â ‘â žâ „â Ž" }, { "input": "amulets", "output": "â â â ¥â ‡â ‘â žâ Ž" }, { "input": "amuse", "output": "â â â ¥â Žâ ‘" }, { "input": "amused", "output": "â â â ¥â Žâ «" }, { "input": "amusement", "output": "â â â ¥â Žâ ‘â °â ž" }, { "input": "amusement's", "output": "â â â ¥â Žâ ‘â °â žâ „â Ž" }, { "input": "amusements", "output": "â â â ¥â Žâ ‘â °â žâ Ž" }, { "input": "amuses", "output": "â â â ¥â Žâ ‘â Ž" }, { "input": "amusing", "output": "â â â ¥â Žâ Œ" }, { "input": "amusingly", "output": "â â â ¥â Žâ Œâ ‡â ½" }, { "input": "amylase", "output": "â â â ½â ‡â â Žâ ‘" }, { "input": "amylase's", "output": "â â â ½â ‡â â Žâ ‘â „â Ž" }, { "input": "an", "output": "â â " }, { "input": "anabolism", "output": "â â â â ƒâ •⠇⠊⠎â " }, { "input": "anabolism's", "output": "â â â â ƒâ •⠇⠊⠎â â „â Ž" }, { "input": "anachronism", "output": "â â â â ¡â —â •â â Šâ Žâ " }, { "input": "anachronism's", "output": "â â â â ¡â —â •â â Šâ Žâ â „â Ž" }, { "input": "anachronisms", "output": "â â â â ¡â —â •â â Šâ Žâ â Ž" }, { "input": "anachronistic", "output": "â â â â ¡â —â •â â Šâ Œâ Šâ ‰" }, { "input": "anaconda", "output": "â â â â ‰â •â â ™â " }, { "input": "anaconda's", "output": "â â â â ‰â •â â ™â â „â Ž" }, { "input": "anacondas", "output": "â â â â ‰â •â â ™â â Ž" }, { "input": "anaerobe", "output": "â â â â ‘⠗⠕⠃⠑" }, { "input": "anaerobe's", "output": "â â â â ‘⠗⠕⠃⠑⠄⠎" }, { "input": "anaerobes", "output": "â â â â ‘⠗⠕⠃⠑⠎" }, { "input": "anaerobic", "output": "â â â â ‘⠗⠕⠃⠊⠉" }, { "input": "anaerobically", "output": "â â â â ‘⠗⠕⠃⠊⠉⠠⠽" }, { "input": "anagram", "output": "â â â â ›â —â â " }, { "input": "anagram's", "output": "â â â â ›â —â â â „â Ž" }, { "input": "anagrams", "output": "â â â â ›â —â â â Ž" }, { "input": "anal", "output": "â â â â ‡" }, { "input": "analgesia", "output": "â â â â ‡â ›â ‘â Žâ Šâ " }, { "input": "analgesia's", "output": "â â â â ‡â ›â ‘â Žâ Šâ â „â Ž" }, { "input": "analgesic", "output": "â â â â ‡â ›â ‘â Žâ Šâ ‰" }, { "input": "analgesic's", "output": "â â â â ‡â ›â ‘⠎⠊⠉⠄⠎" }, { "input": "analgesics", "output": "â â â â ‡â ›â ‘⠎⠊⠉⠎" }, { "input": "analog", "output": "â â â â ‡â •â ›" }, { "input": "analog's", "output": "â â â â ‡â •⠛⠄⠎" }, { "input": "analogical", "output": "â â â â ‡â •⠛⠊⠉â â ‡" }, { "input": "analogically", "output": "â â â â ‡â •⠛⠊⠉⠠⠽" }, { "input": "analogies", "output": "â â â â ‡â •⠛⠊⠑⠎" }, { "input": "analogize", "output": "â â â â ‡â •⠛⠊⠵⠑" }, { "input": "analogized", "output": "â â â â ‡â •⠛⠊⠵⠫" }, { "input": "analogizes", "output": "â â â â ‡â •⠛⠊⠵⠑⠎" }, { "input": "analogizing", "output": "â â â â ‡â •⠛⠊⠵⠌" }, { "input": "analogous", "output": "â â â â ‡â •⠛⠳⠎" }, { "input": "analogously", "output": "â â â â ‡â •⠛⠳⠎⠇⠽" }, { "input": "analogousness", "output": "â â â â ‡â •⠛⠳⠎⠰⠎" }, { "input": "analogousness's", "output": "â â â â ‡â •⠛⠳⠎⠰⠎⠄⠎" }, { "input": "analogs", "output": "â â â â ‡â •⠛⠎" }, { "input": "analogue", "output": "â â â â ‡â •⠛⠥⠑" }, { "input": "analogue's", "output": "â â â â ‡â •⠛⠥⠑⠄⠎" }, { "input": "analogues", "output": "â â â â ‡â •⠛⠥⠑⠎" }, { "input": "analogy", "output": "â â â â ‡â •⠛⠽" }, { "input": "analogy's", "output": "â â â â ‡â •⠛⠽⠄⠎" }, { "input": "analysand", "output": "â â â â ‡â ½â Žâ ¯" }, { "input": "analysand's", "output": "â â â â ‡â ½â Žâ ¯â „â Ž" }, { "input": "analysands", "output": "â â â â ‡â ½â Žâ ¯â Ž" }, { "input": "analyses", "output": "â â â â ‡â ½â Žâ ‘â Ž" }, { "input": "analysis", "output": "â â â â ‡â ½â Žâ Šâ Ž" }, { "input": "analysis's", "output": "â â â â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "analyst", "output": "â â â â ‡â ½â Œ" }, { "input": "analyst's", "output": "â â â â ‡â ½â Œâ „â Ž" }, { "input": "analysts", "output": "â â â â ‡â ½â Œâ Ž" }, { "input": "analytic", "output": "â â â â ‡â ½â žâ Šâ ‰" }, { "input": "analytically", "output": "â â â â ‡â ½â žâ Šâ ‰â  â ½" }, { "input": "analyzable", "output": "â â â â ‡â ½â µâ â ¼" }, { "input": "analyze", "output": "â â â â ‡â ½â µâ ‘" }, { "input": "analyzed", "output": "â â â â ‡â ½â µâ «" }, { "input": "analyzer", "output": "â â â â ‡â ½â µâ »" }, { "input": "analyzer's", "output": "â â â â ‡â ½â µâ »â „â Ž" }, { "input": "analyzers", "output": "â â â â ‡â ½â µâ »â Ž" }, { "input": "analyzes", "output": "â â â â ‡â ½â µâ ‘â Ž" }, { "input": "analyzing", "output": "â â â â ‡â ½â µâ Œ" }, { "input": "anapest", "output": "â â â â â ‘â Œ" }, { "input": "anapest's", "output": "â â â â â ‘⠌⠄⠎" }, { "input": "anapestic", "output": "â â â â â ‘⠌⠊⠉" }, { "input": "anapestic's", "output": "â â â â â ‘⠌⠊⠉⠄⠎" }, { "input": "anapestics", "output": "â â â â â ‘⠌⠊⠉⠎" }, { "input": "anapests", "output": "â â â â â ‘⠌⠎" }, { "input": "anarchic", "output": "â â â œâ ¡â Šâ ‰" }, { "input": "anarchically", "output": "â â â œâ ¡â Šâ ‰â  â ½" }, { "input": "anarchism", "output": "â â â œâ ¡â Šâ Žâ " }, { "input": "anarchism's", "output": "â â â œâ ¡â Šâ Žâ â „â Ž" }, { "input": "anarchist", "output": "â â â œâ ¡â Šâ Œ" }, { "input": "anarchist's", "output": "â â â œâ ¡â Šâ Œâ „â Ž" }, { "input": "anarchistic", "output": "â â â œâ ¡â Šâ Œâ Šâ ‰" }, { "input": "anarchists", "output": "â â â œâ ¡â Šâ Œâ Ž" }, { "input": "anarchy", "output": "â â â œâ ¡â ½" }, { "input": "anarchy's", "output": "â â â œâ ¡â ½â „â Ž" }, { "input": "anathema", "output": "â â â â ®â â " }, { "input": "anathema's", "output": "â â â â ®â â â „â Ž" }, { "input": "anathemas", "output": "â â â â ®â â â Ž" }, { "input": "anathematize", "output": "â â â â ®â â â žâ Šâ µâ ‘" }, { "input": "anathematized", "output": "â â â â ®â â â žâ Šâ µâ «" }, { "input": "anathematizes", "output": "â â â â ®â â â žâ Šâ µâ ‘â Ž" }, { "input": "anathematizing", "output": "â â â â ®â â â žâ Šâ µâ Œ" }, { "input": "anatomic", "output": "â â â â žâ •â â Šâ ‰" }, { "input": "anatomical", "output": "â â â â žâ •â â Šâ ‰â â ‡" }, { "input": "anatomically", "output": "â â â â žâ •â â Šâ ‰â  â ½" }, { "input": "anatomies", "output": "â â â â žâ •â â Šâ ‘â Ž" }, { "input": "anatomist", "output": "â â â â žâ •â â Šâ Œ" }, { "input": "anatomist's", "output": "â â â â žâ •â â Šâ Œâ „â Ž" }, { "input": "anatomists", "output": "â â â â žâ •â â Šâ Œâ Ž" }, { "input": "anatomize", "output": "â â â â žâ •â â Šâ µâ ‘" }, { "input": "anatomized", "output": "â â â â žâ •â â Šâ µâ «" }, { "input": "anatomizes", "output": "â â â â žâ •â â Šâ µâ ‘â Ž" }, { "input": "anatomizing", "output": "â â â â žâ •â â Šâ µâ Œ" }, { "input": "anatomy", "output": "â â â â žâ •â â ½" }, { "input": "anatomy's", "output": "â â â â žâ •â â ½â „â Ž" }, { "input": "ancestor", "output": "â â â ‰â ‘⠌⠕⠗" }, { "input": "ancestor's", "output": "â â â ‰â ‘⠌⠕⠗⠄⠎" }, { "input": "ancestors", "output": "â â â ‰â ‘⠌⠕⠗⠎" }, { "input": "ancestral", "output": "â â â ‰â ‘⠌⠗â â ‡" }, { "input": "ancestrally", "output": "â â â ‰â ‘⠌⠗⠠⠽" }, { "input": "ancestress", "output": "â â â ‰â ‘⠌⠗⠑⠎⠎" }, { "input": "ancestress's", "output": "â â â ‰â ‘⠌⠗⠑⠎⠎⠄⠎" }, { "input": "ancestresses", "output": "â â â ‰â ‘⠌⠗⠑⠎⠎⠑⠎" }, { "input": "ancestries", "output": "â â â ‰â ‘⠌⠗⠊⠑⠎" }, { "input": "ancestry", "output": "â â â ‰â ‘⠌⠗⠽" }, { "input": "ancestry's", "output": "â â â ‰â ‘⠌⠗⠽⠄⠎" }, { "input": "anchor", "output": "â â â ¡â •â —" }, { "input": "anchor's", "output": "â â â ¡â •â —â „â Ž" }, { "input": "anchorage", "output": "â â â ¡â •â —â â ›â ‘" }, { "input": "anchorage's", "output": "â â â ¡â •â —â â ›â ‘â „â Ž" }, { "input": "anchorages", "output": "â â â ¡â •â —â â ›â ‘â Ž" }, { "input": "anchored", "output": "â â â ¡â •â —â «" }, { "input": "anchoring", "output": "â â â ¡â •â —â Œ" }, { "input": "anchorite", "output": "â â â ¡â •â —â Šâ žâ ‘" }, { "input": "anchorite's", "output": "â â â ¡â •â —â Šâ žâ ‘â „â Ž" }, { "input": "anchorites", "output": "â â â ¡â •â —â Šâ žâ ‘â Ž" }, { "input": "anchorman", "output": "â â â ¡â •â —â â â " }, { "input": "anchorman's", "output": "â â â ¡â •â —â â â â „â Ž" }, { "input": "anchormen", "output": "â â â ¡â •â —â â ¢" }, { "input": "anchorpeople", "output": "â â â ¡â •â —â â ‘â •â â ‡â ‘" }, { "input": "anchorperson", "output": "â â â ¡â •â —â â »â Žâ •â " }, { "input": "anchorperson's", "output": "â â â ¡â •â —â â »â Žâ •â â „â Ž" }, { "input": "anchorpersons", "output": "â â â ¡â •â —â â »â Žâ •â â Ž" }, { "input": "anchors", "output": "â â â ¡â •â —â Ž" }, { "input": "anchorwoman", "output": "â â â ¡â •⠗⠺⠕â â â " }, { "input": "anchorwoman's", "output": "â â â ¡â •⠗⠺⠕â â â â „â Ž" }, { "input": "anchorwomen", "output": "â â â ¡â •⠗⠺⠕â â ¢" }, { "input": "anchovies", "output": "â â â ¡â •â §â Šâ ‘â Ž" }, { "input": "anchovy", "output": "â â â ¡â •â §â ½" }, { "input": "anchovy's", "output": "â â â ¡â •⠧⠽⠄⠎" }, { "input": "ancient", "output": "â â â ‰â Šâ ¢â ž" }, { "input": "ancient's", "output": "â â â ‰â Šâ ¢â žâ „â Ž" }, { "input": "ancienter", "output": "â â â ‰â Šâ ¢â žâ »" }, { "input": "ancientest", "output": "â â â ‰â Šâ ¢â žâ ‘â Œ" }, { "input": "ancientness", "output": "â â â ‰â Šâ ¢â žâ °â Ž" }, { "input": "ancientness's", "output": "â â â ‰â Šâ ¢â žâ °â Žâ „â Ž" }, { "input": "ancients", "output": "â â â ‰â Šâ ¢â žâ Ž" }, { "input": "ancillaries", "output": "â â â ‰â Šâ ‡â ‡â œâ Šâ ‘â Ž" }, { "input": "ancillary", "output": "â â â ‰â Šâ ‡â ‡â œâ ½" }, { "input": "ancillary's", "output": "â â â ‰â Šâ ‡â ‡â œâ ½â „â Ž" }, { "input": "and", "output": "â ¯" }, { "input": "andante", "output": "â ¯â â â žâ ‘" }, { "input": "andante's", "output": "â ¯â â â žâ ‘â „â Ž" }, { "input": "andantes", "output": "â ¯â â â žâ ‘â Ž" }, { "input": "andiron", "output": "⠯⠊⠗⠕â " }, { "input": "andiron's", "output": "⠯⠊⠗⠕â â „â Ž" }, { "input": "andirons", "output": "⠯⠊⠗⠕â â Ž" }, { "input": "androgen", "output": "⠯⠗⠕⠛⠢" }, { "input": "androgen's", "output": "⠯⠗⠕⠛⠢⠄⠎" }, { "input": "androgenic", "output": "⠯⠗⠕⠛⠢⠊⠉" }, { "input": "androgynous", "output": "⠯⠗⠕⠛⠽â â ³â Ž" }, { "input": "androgyny's", "output": "⠯⠗⠕⠛⠽â â ½â „â Ž" }, { "input": "android", "output": "⠯⠗⠕⠊⠙" }, { "input": "android's", "output": "⠯⠗⠕⠊⠙⠄⠎" }, { "input": "androids", "output": "⠯⠗⠕⠊⠙⠎" }, { "input": "anecdotal", "output": "â â â ‘⠉⠙⠕⠞â â ‡" }, { "input": "anecdote", "output": "â â â ‘⠉⠙⠕⠞⠑" }, { "input": "anecdote's", "output": "â â â ‘⠉⠙⠕⠞⠑⠄⠎" }, { "input": "anecdotes", "output": "â â â ‘⠉⠙⠕⠞⠑⠎" }, { "input": "anemia", "output": "â â â ‘â â Šâ " }, { "input": "anemia's", "output": "â â â ‘â â Šâ â „â Ž" }, { "input": "anemic", "output": "â â â ‘â â Šâ ‰" }, { "input": "anemically", "output": "â â â ‘â â Šâ ‰â  â ½" }, { "input": "anemometer", "output": "â â â ‘â â •â â ‘â žâ »" }, { "input": "anemometer's", "output": "â â â ‘â â •â â ‘⠞⠻⠄⠎" }, { "input": "anemometers", "output": "â â â ‘â â •â â ‘⠞⠻⠎" }, { "input": "anemone", "output": "â â â ‘â â •â â ‘" }, { "input": "anemone's", "output": "â â â ‘â â •â â ‘â „â Ž" }, { "input": "anemones", "output": "â â â ‘â â •â â ‘â Ž" }, { "input": "anent", "output": "â â â ¢â ž" }, { "input": "anesthesia", "output": "â â â ‘⠎⠮⠎⠊â " }, { "input": "anesthesia's", "output": "â â â ‘⠎⠮⠎⠊â â „â Ž" }, { "input": "anesthesiologist", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠊⠌" }, { "input": "anesthesiologist's", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "anesthesiologists", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "anesthesiology", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠽" }, { "input": "anesthesiology's", "output": "â â â ‘⠎⠮⠎⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "anesthetic", "output": "â â â ‘⠎⠮⠞⠊⠉" }, { "input": "anesthetic's", "output": "â â â ‘⠎⠮⠞⠊⠉⠄⠎" }, { "input": "anesthetics", "output": "â â â ‘⠎⠮⠞⠊⠉⠎" }, { "input": "anesthetist", "output": "â â â ‘⠎⠮⠞⠊⠌" }, { "input": "anesthetist's", "output": "â â â ‘⠎⠮⠞⠊⠌⠄⠎" }, { "input": "anesthetists", "output": "â â â ‘⠎⠮⠞⠊⠌⠎" }, { "input": "anesthetization", "output": "â â â ‘⠎⠮⠞⠊⠵⠠â " }, { "input": "anesthetization's", "output": "â â â ‘⠎⠮⠞⠊⠵⠠â â „â Ž" }, { "input": "anesthetize", "output": "â â â ‘⠎⠮⠞⠊⠵⠑" }, { "input": "anesthetized", "output": "â â â ‘⠎⠮⠞⠊⠵⠫" }, { "input": "anesthetizes", "output": "â â â ‘⠎⠮⠞⠊⠵⠑⠎" }, { "input": "anesthetizing", "output": "â â â ‘⠎⠮⠞⠊⠵⠌" }, { "input": "aneurysm", "output": "â â â ‘⠥⠗⠽⠎â " }, { "input": "aneurysm's", "output": "â â â ‘⠥⠗⠽⠎â â „â Ž" }, { "input": "aneurysms", "output": "â â â ‘⠥⠗⠽⠎â â Ž" }, { "input": "anew", "output": "â â â ‘â º" }, { "input": "angel", "output": "â â â ›â ‘â ‡" }, { "input": "angel's", "output": "â â â ›â ‘⠇⠄⠎" }, { "input": "angelfish", "output": "â â â ›â ‘⠇⠋⠊⠩" }, { "input": "angelfish's", "output": "â â â ›â ‘⠇⠋⠊⠩⠄⠎" }, { "input": "angelfishes", "output": "â â â ›â ‘⠇⠋⠊⠩⠑⠎" }, { "input": "angelic", "output": "â â â ›â ‘⠇⠊⠉" }, { "input": "angelica's", "output": "â â â ›â ‘⠇⠊⠉â â „â Ž" }, { "input": "angelical", "output": "â â â ›â ‘⠇⠊⠉â â ‡" }, { "input": "angelically", "output": "â â â ›â ‘⠇⠊⠉⠠⠽" }, { "input": "angels", "output": "â â â ›â ‘⠇⠎" }, { "input": "anger", "output": "â â â ›â »" }, { "input": "anger's", "output": "â â â ›â »â „â Ž" }, { "input": "angered", "output": "â â â ›â »â «" }, { "input": "angering", "output": "â â â ›â »â Œ" }, { "input": "angers", "output": "â â â ›â »â Ž" }, { "input": "angina", "output": "â â â ›â ”â " }, { "input": "angina's", "output": "â â â ›â ”â â „â Ž" }, { "input": "angioplasties", "output": "â â â ›â Šâ •â â ‡â â Œâ Šâ ‘â Ž" }, { "input": "angioplasty", "output": "â â â ›â Šâ •â â ‡â â Œâ ½" }, { "input": "angioplasty's", "output": "â â â ›â Šâ •â â ‡â â Œâ ½â „â Ž" }, { "input": "angiosperm", "output": "â â â ›â Šâ •â Žâ â »â " }, { "input": "angiosperm's", "output": "â â â ›â Šâ •â Žâ â »â â „â Ž" }, { "input": "angiosperms", "output": "â â â ›â Šâ •â Žâ â »â â Ž" }, { "input": "angle", "output": "â â â ›â ‡â ‘" }, { "input": "angle's", "output": "â â â ›â ‡â ‘â „â Ž" }, { "input": "angled", "output": "â â â ›â ‡â «" }, { "input": "angler", "output": "â â â ›â ‡â »" }, { "input": "angler's", "output": "â â â ›â ‡â »â „â Ž" }, { "input": "anglers", "output": "â â â ›â ‡â »â Ž" }, { "input": "angles", "output": "â â â ›â ‡â ‘â Ž" }, { "input": "angleworm", "output": "â â â ›â ‡â ‘⠺⠕⠗â " }, { "input": "angleworm's", "output": "â â â ›â ‡â ‘⠺⠕⠗â â „â Ž" }, { "input": "angleworms", "output": "â â â ›â ‡â ‘⠺⠕⠗â â Ž" }, { "input": "anglicize", "output": "â â â ›â ‡â Šâ ‰â Šâ µâ ‘" }, { "input": "anglicized", "output": "â â â ›â ‡â Šâ ‰â Šâ µâ «" }, { "input": "anglicizes", "output": "â â â ›â ‡â Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "anglicizing", "output": "â â â ›â ‡â Šâ ‰â Šâ µâ Œ" }, { "input": "angling", "output": "â â â ›â ‡â Œ" }, { "input": "angling's", "output": "â â â ›â ‡â Œâ „â Ž" }, { "input": "angora", "output": "â â â ›â •â —â " }, { "input": "angora's", "output": "â â â ›â •â —â â „â Ž" }, { "input": "angoras", "output": "â â â ›â •â —â â Ž" }, { "input": "angrier", "output": "â â â ›â —â Šâ »" }, { "input": "angriest", "output": "â â â ›â —â Šâ ‘â Œ" }, { "input": "angrily", "output": "â â â ›â —⠊⠇⠽" }, { "input": "angry", "output": "â â â ›â —â ½" }, { "input": "angst", "output": "â â â ›â Œ" }, { "input": "angst's", "output": "â â â ›â Œâ „â Ž" }, { "input": "angstrom", "output": "â â â ›â Œâ —â •â " }, { "input": "angstrom's", "output": "â â â ›â Œâ —â •â â „â Ž" }, { "input": "angstroms", "output": "â â â ›â Œâ —â •â â Ž" }, { "input": "anguish", "output": "â â â ›â ¥â Šâ ©" }, { "input": "anguish's", "output": "â â â ›â ¥â Šâ ©â „â Ž" }, { "input": "anguished", "output": "â â â ›â ¥â Šâ ©â «" }, { "input": "anguishes", "output": "â â â ›â ¥â Šâ ©â ‘â Ž" }, { "input": "anguishing", "output": "â â â ›â ¥â Šâ ©â Œ" }, { "input": "angular", "output": "â â â ›â ¥â ‡â œ" }, { "input": "angularities", "output": "â â â ›â ¥â ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "angularity", "output": "â â â ›â ¥â ‡â œâ °â ½" }, { "input": "angularity's", "output": "â â â ›â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "anhydrous", "output": "â â â “⠽⠙⠗⠳⠎" }, { "input": "aniline", "output": "â â â Šâ ‡â ”â ‘" }, { "input": "aniline's", "output": "â â â Šâ ‡â ”â ‘â „â Ž" }, { "input": "animadversion", "output": "â â â Šâ â â ™â §â »â ¨â " }, { "input": "animadversion's", "output": "â â â Šâ â â ™â §â »â ¨â â „â Ž" }, { "input": "animadversions", "output": "â â â Šâ â â ™â §â »â ¨â â Ž" }, { "input": "animadvert", "output": "â â â Šâ â â ™â §â »â ž" }, { "input": "animadverted", "output": "â â â Šâ â â ™â §â »â žâ «" }, { "input": "animadverting", "output": "â â â Šâ â â ™â §â »â žâ Œ" }, { "input": "animadverts", "output": "â â â Šâ â â ™â §â »â žâ Ž" }, { "input": "animal", "output": "â â â Šâ â â ‡" }, { "input": "animal's", "output": "â â â Šâ â â ‡â „â Ž" }, { "input": "animalcule", "output": "â â â Šâ â â ‡â ‰â ¥â ‡â ‘" }, { "input": "animalcule's", "output": "â â â Šâ â â ‡â ‰â ¥â ‡â ‘â „â Ž" }, { "input": "animalcules", "output": "â â â Šâ â â ‡â ‰â ¥â ‡â ‘â Ž" }, { "input": "animals", "output": "â â â Šâ â â ‡â Ž" }, { "input": "animate", "output": "â â â Šâ â â žâ ‘" }, { "input": "animated", "output": "â â â Šâ â â žâ «" }, { "input": "animatedly", "output": "â â â Šâ â â žâ «â ‡â ½" }, { "input": "animates", "output": "â â â Šâ â â žâ ‘â Ž" }, { "input": "animating", "output": "â â â Šâ â â žâ Œ" }, { "input": "animation", "output": "â â â Šâ â  â " }, { "input": "animation's", "output": "â â â Šâ â  â â „â Ž" }, { "input": "animations", "output": "â â â Šâ â  â â Ž" }, { "input": "animator", "output": "â â â Šâ â â žâ •â —" }, { "input": "animator's", "output": "â â â Šâ â â žâ •â —â „â Ž" }, { "input": "animators", "output": "â â â Šâ â â žâ •â —â Ž" }, { "input": "animism", "output": "â â â Šâ â Šâ Žâ " }, { "input": "animism's", "output": "â â â Šâ â Šâ Žâ â „â Ž" }, { "input": "animist", "output": "â â â Šâ â Šâ Œ" }, { "input": "animist's", "output": "â â â Šâ â Šâ Œâ „â Ž" }, { "input": "animistic", "output": "â â â Šâ â Šâ Œâ Šâ ‰" }, { "input": "animists", "output": "â â â Šâ â Šâ Œâ Ž" }, { "input": "animosities", "output": "â â â Šâ â •â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "animosity", "output": "â â â Šâ â •â Žâ °â ½" }, { "input": "animosity's", "output": "â â â Šâ â •⠎⠰⠽⠄⠎" }, { "input": "animus", "output": "â â â Šâ â ¥â Ž" }, { "input": "animus's", "output": "â â â Šâ â ¥â Žâ „â Ž" }, { "input": "anion", "output": "â â â Šâ •â " }, { "input": "anion's", "output": "â â â Šâ •â â „â Ž" }, { "input": "anionic", "output": "â â â Šâ •â â Šâ ‰" }, { "input": "anions", "output": "â â â Šâ •â â Ž" }, { "input": "anise", "output": "â â â Šâ Žâ ‘" }, { "input": "anise's", "output": "â â â Šâ Žâ ‘â „â Ž" }, { "input": "aniseed", "output": "â â â Šâ Žâ ‘â «" }, { "input": "aniseed's", "output": "â â â Šâ Žâ ‘â «â „â Ž" }, { "input": "anisette", "output": "â â â Šâ Žâ ‘â žâ žâ ‘" }, { "input": "anisette's", "output": "â â â Šâ Žâ ‘â žâ žâ ‘â „â Ž" }, { "input": "ankh", "output": "â â â …â “" }, { "input": "ankh's", "output": "â â â …â “â „â Ž" }, { "input": "ankhs", "output": "â â â …â “â Ž" }, { "input": "ankle", "output": "â â â …⠇⠑" }, { "input": "ankle's", "output": "â â â …⠇⠑⠄⠎" }, { "input": "anklebone", "output": "â â â …⠇⠑⠃â â •" }, { "input": "anklebone's", "output": "â â â …⠇⠑⠃â â •â „â Ž" }, { "input": "anklebones", "output": "â â â …⠇⠑⠃â â •â Ž" }, { "input": "ankles", "output": "â â â …⠇⠑⠎" }, { "input": "anklet", "output": "â â â …⠇⠑⠞" }, { "input": "anklet's", "output": "â â â …⠇⠑⠞⠄⠎" }, { "input": "anklets", "output": "â â â …⠇⠑⠞⠎" }, { "input": "annalist", "output": "â â â â â ‡â Šâ Œ" }, { "input": "annalist's", "output": "â â â â â ‡â Šâ Œâ „â Ž" }, { "input": "annalists", "output": "â â â â â ‡â Šâ Œâ Ž" }, { "input": "annals", "output": "â â â â â ‡â Ž" }, { "input": "annals's", "output": "â â â â â ‡â Žâ „â Ž" }, { "input": "anneal", "output": "â â â â ‚â ‡" }, { "input": "annealed", "output": "â â â â ‚⠇⠫" }, { "input": "annealing", "output": "â â â â ‚⠇⠌" }, { "input": "anneals", "output": "â â â â ‚⠇⠎" }, { "input": "annelid", "output": "â â â â ‘⠇⠊⠙" }, { "input": "annelid's", "output": "â â â â ‘⠇⠊⠙⠄⠎" }, { "input": "annelids", "output": "â â â â ‘⠇⠊⠙⠎" }, { "input": "annex", "output": "â â â â ‘â ­" }, { "input": "annex's", "output": "â â â â ‘â ­â „â Ž" }, { "input": "annexation", "output": "â â â â ‘â ­â  â " }, { "input": "annexation's", "output": "â â â â ‘â ­â  â â „â Ž" }, { "input": "annexations", "output": "â â â â ‘â ­â  â â Ž" }, { "input": "annexed", "output": "â â â â ‘â ­â «" }, { "input": "annexes", "output": "â â â â ‘â ­â ‘â Ž" }, { "input": "annexing", "output": "â â â â ‘â ­â Œ" }, { "input": "annihilate", "output": "â â â â Šâ “â Šâ ‡â â žâ ‘" }, { "input": "annihilated", "output": "â â â â Šâ “â Šâ ‡â â žâ «" }, { "input": "annihilates", "output": "â â â â Šâ “â Šâ ‡â â žâ ‘â Ž" }, { "input": "annihilating", "output": "â â â â Šâ “â Šâ ‡â â žâ Œ" }, { "input": "annihilation", "output": "â â â â Šâ “⠊⠇⠠â " }, { "input": "annihilation's", "output": "â â â â Šâ “⠊⠇⠠â â „â Ž" }, { "input": "annihilator", "output": "â â â â Šâ “â Šâ ‡â â žâ •â —" }, { "input": "annihilator's", "output": "â â â â Šâ “â Šâ ‡â â žâ •â —â „â Ž" }, { "input": "annihilators", "output": "â â â â Šâ “â Šâ ‡â â žâ •â —â Ž" }, { "input": "anniversaries", "output": "â â â â Šâ §â »â Žâ œâ Šâ ‘â Ž" }, { "input": "anniversary", "output": "â â â â Šâ §â »â Žâ œâ ½" }, { "input": "anniversary's", "output": "â â â â Šâ §â »â Žâ œâ ½â „â Ž" }, { "input": "annotate", "output": "â â â â •â žâ â žâ ‘" }, { "input": "annotated", "output": "â â â â •â žâ â žâ «" }, { "input": "annotates", "output": "â â â â •â žâ â žâ ‘â Ž" }, { "input": "annotating", "output": "â â â â •â žâ â žâ Œ" }, { "input": "annotation", "output": "â â â â •â žâ  â " }, { "input": "annotation's", "output": "â â â â •â žâ  â â „â Ž" }, { "input": "annotations", "output": "â â â â •â žâ  â â Ž" }, { "input": "annotative", "output": "â â â â •â žâ â žâ Šâ §â ‘" }, { "input": "annotator", "output": "â â â â •â žâ â žâ •â —" }, { "input": "annotator's", "output": "â â â â •â žâ â žâ •â —â „â Ž" }, { "input": "annotators", "output": "â â â â •â žâ â žâ •â —â Ž" }, { "input": "announce", "output": "â â â â ³â â ‰â ‘" }, { "input": "announced", "output": "â â â â ³â â ‰â «" }, { "input": "announcement", "output": "â â â â ³â â ‰â ‘â °â ž" }, { "input": "announcement's", "output": "â â â â ³â â ‰â ‘â °â žâ „â Ž" }, { "input": "announcements", "output": "â â â â ³â â ‰â ‘â °â žâ Ž" }, { "input": "announcer", "output": "â â â â ³â â ‰â »" }, { "input": "announcer's", "output": "â â â â ³â â ‰â »â „â Ž" }, { "input": "announcers", "output": "â â â â ³â â ‰â »â Ž" }, { "input": "announces", "output": "â â â â ³â â ‰â ‘â Ž" }, { "input": "announcing", "output": "â â â â ³â â ‰â Œ" }, { "input": "annoy", "output": "â â â â •â ½" }, { "input": "annoyance", "output": "â â â â •⠽⠨⠑" }, { "input": "annoyance's", "output": "â â â â •⠽⠨⠑⠄⠎" }, { "input": "annoyances", "output": "â â â â •⠽⠨⠑⠎" }, { "input": "annoyed", "output": "â â â â •⠽⠫" }, { "input": "annoying", "output": "â â â â •⠽⠌" }, { "input": "annoyingly", "output": "â â â â •⠽⠌⠇⠽" }, { "input": "annoys", "output": "â â â â •⠽⠎" }, { "input": "annual", "output": "â â â â ¥â â ‡" }, { "input": "annual's", "output": "â â â â ¥â â ‡â „â Ž" }, { "input": "annualized", "output": "â â â â ¥â â ‡â Šâ µâ «" }, { "input": "annually", "output": "â â â â ¥â  â ½" }, { "input": "annuals", "output": "â â â â ¥â â ‡â Ž" }, { "input": "annuitant", "output": "â â â â ¥â Šâ žâ â â ž" }, { "input": "annuitant's", "output": "â â â â ¥â Šâ žâ â â žâ „â Ž" }, { "input": "annuitants", "output": "â â â â ¥â Šâ žâ â â žâ Ž" }, { "input": "annuities", "output": "â â â â ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "annuity", "output": "â â â â ¥â °â ½" }, { "input": "annuity's", "output": "â â â â ¥â °â ½â „â Ž" }, { "input": "annul", "output": "â â â â ¥â ‡" }, { "input": "annular", "output": "â â â â ¥â ‡â œ" }, { "input": "annulled", "output": "â â â â ¥â ‡â ‡â «" }, { "input": "annulling", "output": "â â â â ¥â ‡â ‡â Œ" }, { "input": "annulment", "output": "â â â â ¥â ‡â °â ž" }, { "input": "annulment's", "output": "â â â â ¥â ‡â °â žâ „â Ž" }, { "input": "annulments", "output": "â â â â ¥â ‡â °â žâ Ž" }, { "input": "annuls", "output": "â â â â ¥â ‡â Ž" }, { "input": "annunciation", "output": "â â â â ¥â â ‰â Šâ  â " }, { "input": "annunciation's", "output": "â â â â ¥â â ‰â Šâ  â â „â Ž" }, { "input": "annunciations", "output": "â â â â ¥â â ‰â Šâ  â â Ž" }, { "input": "anode", "output": "â â â •⠙⠑" }, { "input": "anode's", "output": "â â â •⠙⠑⠄⠎" }, { "input": "anodes", "output": "â â â •⠙⠑⠎" }, { "input": "anodize", "output": "â â â •⠙⠊⠵⠑" }, { "input": "anodized", "output": "â â â •⠙⠊⠵⠫" }, { "input": "anodizes", "output": "â â â •⠙⠊⠵⠑⠎" }, { "input": "anodizing", "output": "â â â •⠙⠊⠵⠌" }, { "input": "anodyne", "output": "â â â •⠙⠽â â ‘" }, { "input": "anodyne's", "output": "â â â •⠙⠽â â ‘â „â Ž" }, { "input": "anodynes", "output": "â â â •⠙⠽â â ‘â Ž" }, { "input": "anoint", "output": "â â â •⠔⠞" }, { "input": "anointed", "output": "â â â •⠔⠞⠫" }, { "input": "anointing", "output": "â â â •⠔⠞⠌" }, { "input": "anointment", "output": "â â â •⠔⠞⠰⠞" }, { "input": "anointment's", "output": "â â â •⠔⠞⠰⠞⠄⠎" }, { "input": "anoints", "output": "â â â •⠔⠞⠎" }, { "input": "anomalies", "output": "â â â •â â â ‡â Šâ ‘â Ž" }, { "input": "anomalous", "output": "â â â •â â â ‡â ³â Ž" }, { "input": "anomaly", "output": "â â â •â â â ‡â ½" }, { "input": "anomaly's", "output": "â â â •â â â ‡â ½â „â Ž" }, { "input": "anon", "output": "â â â •â " }, { "input": "anons", "output": "â â â •â â Ž" }, { "input": "anonymity", "output": "â â â •â â ½â â °â ½" }, { "input": "anonymity's", "output": "â â â •â â ½â â °â ½â „â Ž" }, { "input": "anonymous", "output": "â â â •â â ½â â ³â Ž" }, { "input": "anonymously", "output": "â â â •â â ½â â ³â Žâ ‡â ½" }, { "input": "anopheles", "output": "â â â •â â “⠑⠇⠑⠎" }, { "input": "anopheles's", "output": "â â â •â â “⠑⠇⠑⠎⠄⠎" }, { "input": "anorak", "output": "â â â •â —â â …" }, { "input": "anorak's", "output": "â â â •â —â â …â „â Ž" }, { "input": "anoraks", "output": "â â â •â —â â …â Ž" }, { "input": "anorectic", "output": "â â â •⠗⠑⠉⠞⠊⠉" }, { "input": "anorectic's", "output": "â â â •⠗⠑⠉⠞⠊⠉⠄⠎" }, { "input": "anorectics", "output": "â â â •⠗⠑⠉⠞⠊⠉⠎" }, { "input": "anorexia", "output": "â â â •â —â ‘â ­â Šâ " }, { "input": "anorexia's", "output": "â â â •â —â ‘â ­â Šâ â „â Ž" }, { "input": "anorexic", "output": "â â â •â —â ‘â ­â Šâ ‰" }, { "input": "anorexic's", "output": "â â â •⠗⠑⠭⠊⠉⠄⠎" }, { "input": "anorexics", "output": "â â â •⠗⠑⠭⠊⠉⠎" }, { "input": "another", "output": "â â â •⠮⠗" }, { "input": "ans", "output": "â â â Ž" }, { "input": "answer", "output": "â â â Žâ ºâ »" }, { "input": "answer's", "output": "â â â Žâ ºâ »â „â Ž" }, { "input": "answerable", "output": "â â â Žâ ºâ »â â ¼" }, { "input": "answered", "output": "â â â Žâ ºâ »â «" }, { "input": "answering", "output": "â â â Žâ ºâ »â Œ" }, { "input": "answers", "output": "â â â Žâ ºâ »â Ž" }, { "input": "ant", "output": "â â â ž" }, { "input": "ant's", "output": "â â â žâ „â Ž" }, { "input": "antacid", "output": "â â â žâ â ‰â Šâ ™" }, { "input": "antacid's", "output": "â â â žâ â ‰â Šâ ™â „â Ž" }, { "input": "antacids", "output": "â â â žâ â ‰â Šâ ™â Ž" }, { "input": "antagonism", "output": "â â â žâ â ›â •â â Šâ Žâ " }, { "input": "antagonism's", "output": "â â â žâ â ›â •â â Šâ Žâ â „â Ž" }, { "input": "antagonisms", "output": "â â â žâ â ›â •â â Šâ Žâ â Ž" }, { "input": "antagonist", "output": "â â â žâ â ›â •â â Šâ Œ" }, { "input": "antagonist's", "output": "â â â žâ â ›â •â â Šâ Œâ „â Ž" }, { "input": "antagonistic", "output": "â â â žâ â ›â •â â Šâ Œâ Šâ ‰" }, { "input": "antagonistically", "output": "â â â žâ â ›â •â â Šâ Œâ Šâ ‰â  â ½" }, { "input": "antagonists", "output": "â â â žâ â ›â •â â Šâ Œâ Ž" }, { "input": "antagonize", "output": "â â â žâ â ›â •â â Šâ µâ ‘" }, { "input": "antagonized", "output": "â â â žâ â ›â •â â Šâ µâ «" }, { "input": "antagonizes", "output": "â â â žâ â ›â •â â Šâ µâ ‘â Ž" }, { "input": "antagonizing", "output": "â â â žâ â ›â •â â Šâ µâ Œ" }, { "input": "antarctic", "output": "â â â žâ œâ ‰â žâ Šâ ‰" }, { "input": "ante", "output": "â â â žâ ‘" }, { "input": "ante's", "output": "â â â žâ ‘â „â Ž" }, { "input": "anteater", "output": "â â â žâ ‘â â žâ »" }, { "input": "anteater's", "output": "â â â žâ ‘â â žâ »â „â Ž" }, { "input": "anteaters", "output": "â â â žâ ‘â â žâ »â Ž" }, { "input": "antebellum", "output": "â â â žâ ‘⠃⠑⠇⠇⠥â " }, { "input": "antecedence", "output": "â â â žâ ‘⠉⠫⠰⠑" }, { "input": "antecedence's", "output": "â â â žâ ‘⠉⠫⠰⠑⠄⠎" }, { "input": "antecedent", "output": "â â â žâ ‘⠉⠫⠢⠞" }, { "input": "antecedent's", "output": "â â â žâ ‘⠉⠫⠢⠞⠄⠎" }, { "input": "antecedents", "output": "â â â žâ ‘⠉⠫⠢⠞⠎" }, { "input": "antechamber", "output": "â â â žâ ‘â ¡â â â ƒâ »" }, { "input": "antechamber's", "output": "â â â žâ ‘â ¡â â â ƒâ »â „â Ž" }, { "input": "antechambers", "output": "â â â žâ ‘â ¡â â â ƒâ »â Ž" }, { "input": "anted", "output": "â â â žâ ‘â ™" }, { "input": "antedate", "output": "â â â žâ ‘â ™â â žâ ‘" }, { "input": "antedated", "output": "â â â žâ ‘â ™â â žâ «" }, { "input": "antedates", "output": "â â â žâ ‘â ™â â žâ ‘â Ž" }, { "input": "antedating", "output": "â â â žâ ‘â ™â â žâ Œ" }, { "input": "antediluvian", "output": "â â â žâ ‘⠙⠊⠇⠥⠧⠊â â " }, { "input": "anteing", "output": "â â â žâ ‘⠔⠛" }, { "input": "antelope", "output": "â â â žâ ‘⠇⠕â â ‘" }, { "input": "antelope's", "output": "â â â žâ ‘⠇⠕â â ‘â „â Ž" }, { "input": "antelopes", "output": "â â â žâ ‘⠇⠕â â ‘â Ž" }, { "input": "antenna", "output": "â â â žâ ¢â â " }, { "input": "antenna's", "output": "â â â žâ ¢â â â „â Ž" }, { "input": "antennae", "output": "â â â žâ ¢â â â ‘" }, { "input": "antennas", "output": "â â â žâ ¢â â â Ž" }, { "input": "anterior", "output": "â â â žâ »â Šâ •â —" }, { "input": "anteroom", "output": "â â â žâ ‘â —â •â •â " }, { "input": "anteroom's", "output": "â â â žâ ‘â —â •â •â â „â Ž" }, { "input": "anterooms", "output": "â â â žâ ‘â —â •â •â â Ž" }, { "input": "antes", "output": "â â â žâ ‘â Ž" }, { "input": "anthem", "output": "â â â ®â " }, { "input": "anthem's", "output": "â â â ®â â „â Ž" }, { "input": "anthems", "output": "â â â ®â â Ž" }, { "input": "anther", "output": "â â â ®â —" }, { "input": "anther's", "output": "â â â ®â —â „â Ž" }, { "input": "anthers", "output": "â â â ®â —â Ž" }, { "input": "anthill", "output": "â â â žâ “⠊⠇⠇" }, { "input": "anthill's", "output": "â â â žâ “⠊⠇⠇⠄⠎" }, { "input": "anthills", "output": "â â â žâ “⠊⠇⠇⠎" }, { "input": "anthologies", "output": "â â â ¹â •⠇⠕⠛⠊⠑⠎" }, { "input": "anthologist", "output": "â â â ¹â •⠇⠕⠛⠊⠌" }, { "input": "anthologist's", "output": "â â â ¹â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "anthologists", "output": "â â â ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "anthologize", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠑" }, { "input": "anthologized", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠫" }, { "input": "anthologizes", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠑⠎" }, { "input": "anthologizing", "output": "â â â ¹â •⠇⠕⠛⠊⠵⠌" }, { "input": "anthology", "output": "â â â ¹â •⠇⠕⠛⠽" }, { "input": "anthology's", "output": "â â â ¹â •⠇⠕⠛⠽⠄⠎" }, { "input": "anthracite", "output": "â â â ¹â —â â ‰â Šâ žâ ‘" }, { "input": "anthracite's", "output": "â â â ¹â —â â ‰â Šâ žâ ‘â „â Ž" }, { "input": "anthrax", "output": "â â â ¹â —â â ­" }, { "input": "anthrax's", "output": "â â â ¹â —â â ­â „â Ž" }, { "input": "anthropocentric", "output": "â â â ¹â —â •â â •⠉⠢⠞⠗⠊⠉" }, { "input": "anthropoid", "output": "â â â ¹â —â •â â •â Šâ ™" }, { "input": "anthropoid's", "output": "â â â ¹â —â •â â •⠊⠙⠄⠎" }, { "input": "anthropoids", "output": "â â â ¹â —â •â â •⠊⠙⠎" }, { "input": "anthropological", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "anthropologically", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "anthropologist", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠌" }, { "input": "anthropologist's", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "anthropologists", "output": "â â â ¹â —â •â â •⠇⠕⠛⠊⠌⠎" }, { "input": "anthropology", "output": "â â â ¹â —â •â â •⠇⠕⠛⠽" }, { "input": "anthropology's", "output": "â â â ¹â —â •â â •⠇⠕⠛⠽⠄⠎" }, { "input": "anthropomorphic", "output": "â â â ¹â —â •â â •â â •â —â â “â Šâ ‰" }, { "input": "anthropomorphically", "output": "â â â ¹â —â •â â •â â •â —â â “⠊⠉⠠⠽" }, { "input": "anthropomorphism", "output": "â â â ¹â —â •â â •â â •â —â â “â Šâ Žâ " }, { "input": "anthropomorphism's", "output": "â â â ¹â —â •â â •â â •â —â â “â Šâ Žâ â „â Ž" }, { "input": "anthropomorphous", "output": "â â â ¹â —â •â â •â â •â —â â “⠳⠎" }, { "input": "anti", "output": "â â â žâ Š" }, { "input": "anti's", "output": "â â â žâ Šâ „â Ž" }, { "input": "antiabortion", "output": "â â â žâ Šâ â ƒâ •â —â °â " }, { "input": "antiabortionist", "output": "â â â žâ Šâ â ƒâ •â —â °â â Šâ Œ" }, { "input": "antiabortionist's", "output": "â â â žâ Šâ â ƒâ •â —â °â â Šâ Œâ „â Ž" }, { "input": "antiabortionists", "output": "â â â žâ Šâ â ƒâ •â —â °â â Šâ Œâ Ž" }, { "input": "antiaircraft", "output": "â â â žâ Šâ â Šâ —⠉⠗â â ‹â ž" }, { "input": "antibacterial's", "output": "â â â žâ Šâ ƒâ â ‰â žâ »â Šâ â ‡â „â Ž" }, { "input": "antibacterials", "output": "â â â žâ Šâ ƒâ â ‰â žâ »â Šâ â ‡â Ž" }, { "input": "antibiotic", "output": "â â â žâ Šâ ƒâ Šâ •â žâ Šâ ‰" }, { "input": "antibiotic's", "output": "â â â žâ Šâ ƒâ Šâ •⠞⠊⠉⠄⠎" }, { "input": "antibiotics", "output": "â â â žâ Šâ ƒâ Šâ •⠞⠊⠉⠎" }, { "input": "antibodies", "output": "â â â žâ Šâ ƒâ •⠙⠊⠑⠎" }, { "input": "antibody", "output": "â â â žâ Šâ ƒâ •⠙⠽" }, { "input": "antibody's", "output": "â â â žâ Šâ ƒâ •⠙⠽⠄⠎" }, { "input": "antic", "output": "â â â žâ Šâ ‰" }, { "input": "antic's", "output": "â â â žâ Šâ ‰â „â Ž" }, { "input": "anticancer", "output": "â â â žâ Šâ ‰â ¨â ‘â —" }, { "input": "anticipate", "output": "â â â žâ Šâ ‰â Šâ â â žâ ‘" }, { "input": "anticipated", "output": "â â â žâ Šâ ‰â Šâ â â žâ «" }, { "input": "anticipates", "output": "â â â žâ Šâ ‰â Šâ â â žâ ‘â Ž" }, { "input": "anticipating", "output": "â â â žâ Šâ ‰â Šâ â â žâ Œ" }, { "input": "anticipation", "output": "â â â žâ Šâ ‰â Šâ â  â " }, { "input": "anticipation's", "output": "â â â žâ Šâ ‰â Šâ â  â â „â Ž" }, { "input": "anticipations", "output": "â â â žâ Šâ ‰â Šâ â  â â Ž" }, { "input": "anticipatory", "output": "â â â žâ Šâ ‰â Šâ â â žâ •â —â ½" }, { "input": "anticked", "output": "â â â žâ Šâ ‰â …â «" }, { "input": "anticking", "output": "â â â žâ Šâ ‰â …â Œ" }, { "input": "anticlerical", "output": "â â â žâ Šâ ‰â ‡â »â Šâ ‰â â ‡" }, { "input": "anticlimactic", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ‰â žâ Šâ ‰" }, { "input": "anticlimactically", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ‰â žâ Šâ ‰â  â ½" }, { "input": "anticlimax", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ­" }, { "input": "anticlimax's", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ­â „â Ž" }, { "input": "anticlimaxes", "output": "â â â žâ Šâ ‰â ‡â Šâ â â ­â ‘â Ž" }, { "input": "anticline", "output": "â â â žâ Šâ ‰â ‡â ”â ‘" }, { "input": "anticline's", "output": "â â â žâ Šâ ‰â ‡â ”â ‘â „â Ž" }, { "input": "anticlines", "output": "â â â žâ Šâ ‰â ‡â ”â ‘â Ž" }, { "input": "anticlockwise", "output": "â â â žâ Šâ ‰â ‡â •⠉⠅⠺⠊⠎⠑" }, { "input": "anticommunism", "output": "â â â žâ Šâ ‰â •â â â ¥â â Šâ Žâ " }, { "input": "anticommunism's", "output": "â â â žâ Šâ ‰â •â â â ¥â â Šâ Žâ â „â Ž" }, { "input": "anticommunist", "output": "â â â žâ Šâ ‰â •â â â ¥â â Šâ Œ" }, { "input": "anticommunist's", "output": "â â â žâ Šâ ‰â •â â â ¥â â Šâ Œâ „â Ž" }, { "input": "anticommunists", "output": "â â â žâ Šâ ‰â •â â â ¥â â Šâ Œâ Ž" }, { "input": "antics", "output": "â â â žâ Šâ ‰â Ž" }, { "input": "anticyclone", "output": "â â â žâ Šâ ‰â ½â ‰â ‡â â •" }, { "input": "anticyclone's", "output": "â â â žâ Šâ ‰â ½â ‰â ‡â â •â „â Ž" }, { "input": "anticyclones", "output": "â â â žâ Šâ ‰â ½â ‰â ‡â â •â Ž" }, { "input": "anticyclonic", "output": "â â â žâ Šâ ‰â ½â ‰â ‡â •â â Šâ ‰" }, { "input": "antidemocratic", "output": "â â â žâ Šâ ™â ‘â â •⠉⠗â â žâ Šâ ‰" }, { "input": "antidepressant", "output": "â â â žâ Šâ ™â ‘â â —â ‘â Žâ Žâ â â ž" }, { "input": "antidepressant's", "output": "â â â žâ Šâ ™â ‘â â —â ‘â Žâ Žâ â â žâ „â Ž" }, { "input": "antidepressants", "output": "â â â žâ Šâ ™â ‘â â —â ‘â Žâ Žâ â â žâ Ž" }, { "input": "antidote", "output": "â â â žâ Šâ ™â •â žâ ‘" }, { "input": "antidote's", "output": "â â â žâ Šâ ™â •â žâ ‘â „â Ž" }, { "input": "antidotes", "output": "â â â žâ Šâ ™â •â žâ ‘â Ž" }, { "input": "antifascist", "output": "â â â žâ Šâ ‹â â Žâ ‰â Šâ Œ" }, { "input": "antifascist's", "output": "â â â žâ Šâ ‹â â Žâ ‰â Šâ Œâ „â Ž" }, { "input": "antifascists", "output": "â â â žâ Šâ ‹â â Žâ ‰â Šâ Œâ Ž" }, { "input": "antifreeze", "output": "â â â žâ Šâ ‹â —⠑⠑⠵⠑" }, { "input": "antifreeze's", "output": "â â â žâ Šâ ‹â —⠑⠑⠵⠑⠄⠎" }, { "input": "antigen", "output": "â â â žâ Šâ ›â ¢" }, { "input": "antigen's", "output": "â â â žâ Šâ ›â ¢â „â Ž" }, { "input": "antigenic", "output": "â â â žâ Šâ ›â ¢â Šâ ‰" }, { "input": "antigenicity", "output": "â â â žâ Šâ ›â ¢â Šâ ‰â °â ½" }, { "input": "antigenicity's", "output": "â â â žâ Šâ ›â ¢â Šâ ‰â °â ½â „â Ž" }, { "input": "antigens", "output": "â â â žâ Šâ ›â ¢â Ž" }, { "input": "antihero", "output": "â â â žâ Šâ “⠻⠕" }, { "input": "antihero's", "output": "â â â žâ Šâ “⠻⠕⠄⠎" }, { "input": "antiheroes", "output": "â â â žâ Šâ “⠻⠕⠑⠎" }, { "input": "antihistamine", "output": "â â â žâ Šâ “â Šâ Œâ â â ”â ‘" }, { "input": "antihistamine's", "output": "â â â žâ Šâ “â Šâ Œâ â â ”â ‘â „â Ž" }, { "input": "antihistamines", "output": "â â â žâ Šâ “â Šâ Œâ â â ”â ‘â Ž" }, { "input": "antiknock", "output": "â â â žâ Šâ …â â •⠉⠅" }, { "input": "antiknock's", "output": "â â â žâ Šâ …â â •⠉⠅⠄⠎" }, { "input": "antilabor", "output": "â â â žâ Šâ ‡â â ƒâ •â —" }, { "input": "antilogarithm", "output": "â â â žâ Šâ ‡â •⠛⠜⠊⠹â " }, { "input": "antilogarithm's", "output": "â â â žâ Šâ ‡â •⠛⠜⠊⠹â â „â Ž" }, { "input": "antilogarithms", "output": "â â â žâ Šâ ‡â •⠛⠜⠊⠹â â Ž" }, { "input": "antimalarial", "output": "â â â žâ Šâ â â ‡â œâ Šâ â ‡" }, { "input": "antimatter", "output": "â â â žâ Šâ â â žâ žâ »" }, { "input": "antimatter's", "output": "â â â žâ Šâ â â žâ žâ »â „â Ž" }, { "input": "antimicrobial", "output": "â â â žâ Šâ â Šâ ‰â —⠕⠃⠊â â ‡" }, { "input": "antimissile", "output": "â â â žâ Šâ â Šâ Žâ Žâ Šâ ‡â ‘" }, { "input": "antimony", "output": "â â â žâ Šâ â •â â ½" }, { "input": "antimony's", "output": "â â â žâ Šâ â •â â ½â „â Ž" }, { "input": "antinuclear", "output": "â â â žâ Šâ â ¥â ‰â ‡â ‘â œ" }, { "input": "antioxidant", "output": "â â â žâ Šâ •â ­â Šâ ™â â â ž" }, { "input": "antioxidant's", "output": "â â â žâ Šâ •â ­â Šâ ™â â â žâ „â Ž" }, { "input": "antioxidants", "output": "â â â žâ Šâ •â ­â Šâ ™â â â žâ Ž" }, { "input": "antiparticle", "output": "â â â žâ Šâ â â Šâ ‰â ‡â ‘" }, { "input": "antiparticle's", "output": "â â â žâ Šâ â â Šâ ‰â ‡â ‘â „â Ž" }, { "input": "antiparticles", "output": "â â â žâ Šâ â â Šâ ‰â ‡â ‘â Ž" }, { "input": "antipasti", "output": "â â â žâ Šâ â â Œâ Š" }, { "input": "antipasto", "output": "â â â žâ Šâ â â Œâ •" }, { "input": "antipasto's", "output": "â â â žâ Šâ â â Œâ •â „â Ž" }, { "input": "antipastos", "output": "â â â žâ Šâ â â Œâ •â Ž" }, { "input": "antipathetic", "output": "â â â žâ Šâ â â ®â žâ Šâ ‰" }, { "input": "antipathies", "output": "â â â žâ Šâ â â ¹â Šâ ‘â Ž" }, { "input": "antipathy", "output": "â â â žâ Šâ â â ¹â ½" }, { "input": "antipathy's", "output": "â â â žâ Šâ â â ¹â ½â „â Ž" }, { "input": "antipersonnel", "output": "â â â žâ Šâ â »â Žâ •â â â ‘â ‡" }, { "input": "antiperspirant", "output": "â â â žâ Šâ â »â Žâ â Šâ —â â â ž" }, { "input": "antiperspirant's", "output": "â â â žâ Šâ â »â Žâ â Šâ —â â â žâ „â Ž" }, { "input": "antiperspirants", "output": "â â â žâ Šâ â »â Žâ â Šâ —â â â žâ Ž" }, { "input": "antiphon", "output": "â â â žâ Šâ â “â •â " }, { "input": "antiphon's", "output": "â â â žâ Šâ â “â •â â „â Ž" }, { "input": "antiphonal", "output": "â â â žâ Šâ â “â •â â â ‡" }, { "input": "antiphonal's", "output": "â â â žâ Šâ â “â •â â â ‡â „â Ž" }, { "input": "antiphonally", "output": "â â â žâ Šâ â “â •â â  â ½" }, { "input": "antiphonals", "output": "â â â žâ Šâ â “â •â â â ‡â Ž" }, { "input": "antiphons", "output": "â â â žâ Šâ â “â •â â Ž" }, { "input": "antipodal", "output": "â â â žâ Šâ â •â ™â â ‡" }, { "input": "antipodals", "output": "â â â žâ Šâ â •â ™â â ‡â Ž" }, { "input": "antipodean", "output": "â â â žâ Šâ â •⠙⠂â " }, { "input": "antipodean's", "output": "â â â žâ Šâ â •⠙⠂â â „â Ž" }, { "input": "antipodeans", "output": "â â â žâ Šâ â •⠙⠂â â Ž" }, { "input": "antipodes", "output": "â â â žâ Šâ â •⠙⠑⠎" }, { "input": "antipodes's", "output": "â â â žâ Šâ â •⠙⠑⠎⠄⠎" }, { "input": "antipollution", "output": "â â â žâ Šâ â •⠇⠇⠥⠰â " }, { "input": "antipoverty", "output": "â â â žâ Šâ â •⠧⠻⠞⠽" }, { "input": "antiquarian", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â " }, { "input": "antiquarian's", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â â „â Ž" }, { "input": "antiquarianism", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â â Šâ Žâ " }, { "input": "antiquarianism's", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â â Šâ Žâ â „â Ž" }, { "input": "antiquarians", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ â â Ž" }, { "input": "antiquaries", "output": "â â â žâ Šâ Ÿâ ¥â œâ Šâ ‘â Ž" }, { "input": "antiquary", "output": "â â â žâ Šâ Ÿâ ¥â œâ ½" }, { "input": "antiquary's", "output": "â â â žâ Šâ Ÿâ ¥â œâ ½â „â Ž" }, { "input": "antiquate", "output": "â â â žâ Šâ Ÿâ ¥â â žâ ‘" }, { "input": "antiquated", "output": "â â â žâ Šâ Ÿâ ¥â â žâ «" }, { "input": "antiquates", "output": "â â â žâ Šâ Ÿâ ¥â â žâ ‘â Ž" }, { "input": "antiquating", "output": "â â â žâ Šâ Ÿâ ¥â â žâ Œ" }, { "input": "antique", "output": "â â â žâ Šâ Ÿâ ¥â ‘" }, { "input": "antique's", "output": "â â â žâ Šâ Ÿâ ¥â ‘â „â Ž" }, { "input": "antiqued", "output": "â â â žâ Šâ Ÿâ ¥â «" }, { "input": "antiques", "output": "â â â žâ Šâ Ÿâ ¥â ‘â Ž" }, { "input": "antiquing", "output": "â â â žâ Šâ Ÿâ ¥â Œ" }, { "input": "antiquities", "output": "â â â žâ Šâ Ÿâ ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "antiquity", "output": "â â â žâ Šâ Ÿâ ¥â °â ½" }, { "input": "antiquity's", "output": "â â â žâ Šâ Ÿâ ¥â °â ½â „â Ž" }, { "input": "antis", "output": "â â â žâ Šâ Ž" }, { "input": "antisemitic", "output": "â â â žâ Šâ Žâ ‘â â Šâ žâ Šâ ‰" }, { "input": "antisemitism", "output": "â â â žâ Šâ Žâ ‘â â Šâ žâ Šâ Žâ " }, { "input": "antisemitism's", "output": "â â â žâ Šâ Žâ ‘â â Šâ žâ Šâ Žâ â „â Ž" }, { "input": "antisepsis", "output": "â â â žâ Šâ Žâ ‘â â Žâ Šâ Ž" }, { "input": "antisepsis's", "output": "â â â žâ Šâ Žâ ‘â â Žâ Šâ Žâ „â Ž" }, { "input": "antiseptic", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰" }, { "input": "antiseptic's", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰â „â Ž" }, { "input": "antiseptically", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰â  â ½" }, { "input": "antiseptics", "output": "â â â žâ Šâ Žâ ‘â â žâ Šâ ‰â Ž" }, { "input": "antiserum", "output": "â â â žâ Šâ Žâ »â ¥â " }, { "input": "antiserum's", "output": "â â â žâ Šâ Žâ »â ¥â â „â Ž" }, { "input": "antiserums", "output": "â â â žâ Šâ Žâ »â ¥â â Ž" }, { "input": "antislavery", "output": "â â â žâ Šâ Žâ ‡â â §â »â ½" }, { "input": "antisocial", "output": "â â â žâ Šâ Žâ •⠉⠊â â ‡" }, { "input": "antisocially", "output": "â â â žâ Šâ Žâ •⠉⠊⠠⠽" }, { "input": "antispasmodic", "output": "â â â žâ Šâ Žâ â â Žâ â •⠙⠊⠉" }, { "input": "antispasmodic's", "output": "â â â žâ Šâ Žâ â â Žâ â •⠙⠊⠉⠄⠎" }, { "input": "antispasmodics", "output": "â â â žâ Šâ Žâ â â Žâ â •⠙⠊⠉⠎" }, { "input": "antisubmarine", "output": "â â â žâ Šâ Žâ ¥â ƒâ â œâ ”â ‘" }, { "input": "antitank", "output": "â â â žâ Šâ žâ â â …" }, { "input": "antitheses", "output": "â â â žâ Šâ ®â Žâ ‘â Ž" }, { "input": "antithesis", "output": "â â â žâ Šâ ®â Žâ Šâ Ž" }, { "input": "antithesis's", "output": "â â â žâ Šâ ®â Žâ Šâ Žâ „â Ž" }, { "input": "antithetical", "output": "â â â žâ Šâ ®â žâ Šâ ‰â â ‡" }, { "input": "antithetically", "output": "â â â žâ Šâ ®â žâ Šâ ‰â  â ½" }, { "input": "antitoxin", "output": "â â â žâ Šâ žâ •â ­â ”" }, { "input": "antitoxin's", "output": "â â â žâ Šâ žâ •⠭⠔⠄⠎" }, { "input": "antitoxins", "output": "â â â žâ Šâ žâ •⠭⠔⠎" }, { "input": "antitrust", "output": "â â â žâ Šâ žâ —⠥⠌" }, { "input": "antivenin", "output": "â â â žâ Šâ §â ¢â ”" }, { "input": "antivenin's", "output": "â â â žâ Šâ §â ¢â ”â „â Ž" }, { "input": "antivenins", "output": "â â â žâ Šâ §â ¢â ”â Ž" }, { "input": "antiviral", "output": "â â â žâ Šâ §â Šâ —â â ‡" }, { "input": "antiviral's", "output": "â â â žâ Šâ §â Šâ —â â ‡â „â Ž" }, { "input": "antivirals", "output": "â â â žâ Šâ §â Šâ —â â ‡â Ž" }, { "input": "antivivisectionist", "output": "â â â žâ Šâ §â Šâ §â Šâ Žâ ‘⠉⠰â â Šâ Œ" }, { "input": "antivivisectionist's", "output": "â â â žâ Šâ §â Šâ §â Šâ Žâ ‘⠉⠰â â Šâ Œâ „â Ž" }, { "input": "antivivisectionists", "output": "â â â žâ Šâ §â Šâ §â Šâ Žâ ‘⠉⠰â â Šâ Œâ Ž" }, { "input": "antiwar", "output": "â â â žâ Šâ ºâ œ" }, { "input": "antler", "output": "â â â žâ ‡â »" }, { "input": "antler's", "output": "â â â žâ ‡â »â „â Ž" }, { "input": "antlered", "output": "â â â žâ ‡â »â «" }, { "input": "antlers", "output": "â â â žâ ‡â »â Ž" }, { "input": "antonym", "output": "â â â žâ •â â ½â " }, { "input": "antonym's", "output": "â â â žâ •â â ½â â „â Ž" }, { "input": "antonyms", "output": "â â â žâ •â â ½â â Ž" }, { "input": "ants", "output": "â â â žâ Ž" }, { "input": "antsier", "output": "â â â žâ Žâ Šâ »" }, { "input": "antsiest", "output": "â â â žâ Žâ Šâ ‘â Œ" }, { "input": "anus", "output": "â â â ¥â Ž" }, { "input": "anus's", "output": "â â â ¥â Žâ „â Ž" }, { "input": "anuses", "output": "â â â ¥â Žâ ‘â Ž" }, { "input": "anvil", "output": "â â â §â Šâ ‡" }, { "input": "anvil's", "output": "â â â §â Šâ ‡â „â Ž" }, { "input": "anvils", "output": "â â â §â Šâ ‡â Ž" }, { "input": "anxieties", "output": "â â â ­â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "anxiety", "output": "â â â ­â Šâ ‘â žâ ½" }, { "input": "anxiety's", "output": "â â â ­â Šâ ‘⠞⠽⠄⠎" }, { "input": "anxious", "output": "â â â ­â Šâ ³â Ž" }, { "input": "anxiously", "output": "â â â ­â Šâ ³â Žâ ‡â ½" }, { "input": "anxiousness", "output": "â â â ­â Šâ ³â Žâ °â Ž" }, { "input": "anxiousness's", "output": "â â â ­â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "any", "output": "â â â ½" }, { "input": "anybodies", "output": "â â â ½â ƒâ •⠙⠊⠑⠎" }, { "input": "anybody", "output": "â â â ½â ƒâ •⠙⠽" }, { "input": "anybody's", "output": "â â â ½â ƒâ •⠙⠽⠄⠎" }, { "input": "anyhow", "output": "â â â ½â “â ª" }, { "input": "anymore", "output": "â â â ½â â •â —â ‘" }, { "input": "anyone", "output": "â â â ½â â •" }, { "input": "anyone's", "output": "â â â ½â â •â „â Ž" }, { "input": "anyplace", "output": "â â â ½â â ‡â â ‰â ‘" }, { "input": "anything", "output": "â â â ½â ¹â Œ" }, { "input": "anything's", "output": "â â â ½â ¹â Œâ „â Ž" }, { "input": "anythings", "output": "â â â ½â ¹â Œâ Ž" }, { "input": "anytime", "output": "â â â ½â â ž" }, { "input": "anyway", "output": "â â â ½â ºâ â ½" }, { "input": "anywhere", "output": "â â â ½â â ±" }, { "input": "anywise", "output": "â â â ½â ºâ Šâ Žâ ‘" }, { "input": "aorta", "output": "â â •â —â žâ " }, { "input": "aorta's", "output": "â â •â —â žâ â „â Ž" }, { "input": "aortas", "output": "â â •â —â žâ â Ž" }, { "input": "aortic", "output": "â â •â —â žâ Šâ ‰" }, { "input": "apace", "output": "â â â â ‰â ‘" }, { "input": "apart", "output": "â â â " }, { "input": "apartheid", "output": "â â â â “â ‘â Šâ ™" }, { "input": "apartheid's", "output": "â â â â “⠑⠊⠙⠄⠎" }, { "input": "apartment", "output": "â â â â °â ž" }, { "input": "apartment's", "output": "â â â â °â žâ „â Ž" }, { "input": "apartments", "output": "â â â â °â žâ Ž" }, { "input": "apathetic", "output": "â â â â ®â žâ Šâ ‰" }, { "input": "apathetically", "output": "â â â â ®â žâ Šâ ‰â  â ½" }, { "input": "apathy", "output": "â â â â ¹â ½" }, { "input": "apathy's", "output": "â â â â ¹â ½â „â Ž" }, { "input": "apatite", "output": "â â â â žâ Šâ žâ ‘" }, { "input": "apatite's", "output": "â â â â žâ Šâ žâ ‘â „â Ž" }, { "input": "ape", "output": "â â â ‘" }, { "input": "ape's", "output": "â â â ‘â „â Ž" }, { "input": "aped", "output": "â â â «" }, { "input": "apelike", "output": "â â â ‘⠇⠊⠅⠑" }, { "input": "aperitif", "output": "â â â »â Šâ žâ Šâ ‹" }, { "input": "aperitif's", "output": "â â â »â Šâ žâ Šâ ‹â „â Ž" }, { "input": "aperitifs", "output": "â â â »â Šâ žâ Šâ ‹â Ž" }, { "input": "aperture", "output": "â â â »â žâ ¥â —â ‘" }, { "input": "aperture's", "output": "â â â »â žâ ¥â —â ‘â „â Ž" }, { "input": "apertures", "output": "â â â »â žâ ¥â —â ‘â Ž" }, { "input": "apes", "output": "â â â ‘â Ž" }, { "input": "apex", "output": "â â â ‘â ­" }, { "input": "apex's", "output": "â â â ‘â ­â „â Ž" }, { "input": "apexes", "output": "â â â ‘â ­â ‘â Ž" }, { "input": "aphasia", "output": "â â â “â â Žâ Šâ " }, { "input": "aphasia's", "output": "â â â “â â Žâ Šâ â „â Ž" }, { "input": "aphasic", "output": "â â â “â â Žâ Šâ ‰" }, { "input": "aphasic's", "output": "â â â “â â Žâ Šâ ‰â „â Ž" }, { "input": "aphasics", "output": "â â â “â â Žâ Šâ ‰â Ž" }, { "input": "aphelia", "output": "â â â “⠑⠇⠊â " }, { "input": "aphelion", "output": "â â â “⠑⠇⠊⠕â " }, { "input": "aphelion's", "output": "â â â “⠑⠇⠊⠕â â „â Ž" }, { "input": "aphelions", "output": "â â â “⠑⠇⠊⠕â â Ž" }, { "input": "aphid", "output": "â â â “â Šâ ™" }, { "input": "aphid's", "output": "â â â “⠊⠙⠄⠎" }, { "input": "aphids", "output": "â â â “⠊⠙⠎" }, { "input": "aphorism", "output": "â â â “â •â —â Šâ Žâ " }, { "input": "aphorism's", "output": "â â â “â •â —â Šâ Žâ â „â Ž" }, { "input": "aphorisms", "output": "â â â “â •â —â Šâ Žâ â Ž" }, { "input": "aphoristic", "output": "â â â “⠕⠗⠊⠌⠊⠉" }, { "input": "aphoristically", "output": "â â â “⠕⠗⠊⠌⠊⠉⠠⠽" }, { "input": "aphrodisiac", "output": "â â â “⠗⠕⠙⠊⠎⠊â â ‰" }, { "input": "aphrodisiac's", "output": "â â â “⠗⠕⠙⠊⠎⠊â â ‰â „â Ž" }, { "input": "aphrodisiacs", "output": "â â â “⠗⠕⠙⠊⠎⠊â â ‰â Ž" }, { "input": "apiaries", "output": "â â â Šâ œâ Šâ ‘â Ž" }, { "input": "apiarist", "output": "â â â Šâ œâ Šâ Œ" }, { "input": "apiarist's", "output": "â â â Šâ œâ Šâ Œâ „â Ž" }, { "input": "apiarists", "output": "â â â Šâ œâ Šâ Œâ Ž" }, { "input": "apiary", "output": "â â â Šâ œâ ½" }, { "input": "apiary's", "output": "â â â Šâ œâ ½â „â Ž" }, { "input": "apical", "output": "â â â Šâ ‰â â ‡" }, { "input": "apically", "output": "â â â Šâ ‰â  â ½" }, { "input": "apiece", "output": "â â â Šâ ‘⠉⠑" }, { "input": "aping", "output": "â â â Œ" }, { "input": "apish", "output": "â â â Šâ ©" }, { "input": "apishly", "output": "â â â Šâ ©â ‡â ½" }, { "input": "aplenty", "output": "â â â ‡â ¢â žâ ½" }, { "input": "aplomb", "output": "â â â ‡â •â â ƒ" }, { "input": "aplomb's", "output": "â â â ‡â •â â ƒâ „â Ž" }, { "input": "apocalypse", "output": "â â â •â ‰â â ‡â ½â â Žâ ‘" }, { "input": "apocalypse's", "output": "â â â •â ‰â â ‡â ½â â Žâ ‘â „â Ž" }, { "input": "apocalypses", "output": "â â â •â ‰â â ‡â ½â â Žâ ‘â Ž" }, { "input": "apocalyptic", "output": "â â â •â ‰â â ‡â ½â â žâ Šâ ‰" }, { "input": "apocrypha", "output": "â â â •⠉⠗⠽â â “â " }, { "input": "apocrypha's", "output": "â â â •⠉⠗⠽â â “â â „â Ž" }, { "input": "apocryphal", "output": "â â â •⠉⠗⠽â â “â â ‡" }, { "input": "apocryphally", "output": "â â â •⠉⠗⠽â â “â  â ½" }, { "input": "apogee", "output": "â â â •⠛⠑⠑" }, { "input": "apogee's", "output": "â â â •⠛⠑⠑⠄⠎" }, { "input": "apogees", "output": "â â â •⠛⠑⠑⠎" }, { "input": "apolitical", "output": "â â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "apolitically", "output": "â â â •⠇⠊⠞⠊⠉⠠⠽" }, { "input": "apologetic", "output": "â â â •⠇⠕⠛⠑⠞⠊⠉" }, { "input": "apologetically", "output": "â â â •⠇⠕⠛⠑⠞⠊⠉⠠⠽" }, { "input": "apologia", "output": "â â â •⠇⠕⠛⠊â " }, { "input": "apologia's", "output": "â â â •⠇⠕⠛⠊â â „â Ž" }, { "input": "apologias", "output": "â â â •⠇⠕⠛⠊â â Ž" }, { "input": "apologies", "output": "â â â •⠇⠕⠛⠊⠑⠎" }, { "input": "apologist", "output": "â â â •⠇⠕⠛⠊⠌" }, { "input": "apologist's", "output": "â â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "apologists", "output": "â â â •⠇⠕⠛⠊⠌⠎" }, { "input": "apologize", "output": "â â â •⠇⠕⠛⠊⠵⠑" }, { "input": "apologized", "output": "â â â •⠇⠕⠛⠊⠵⠫" }, { "input": "apologizes", "output": "â â â •⠇⠕⠛⠊⠵⠑⠎" }, { "input": "apologizing", "output": "â â â •⠇⠕⠛⠊⠵⠌" }, { "input": "apology", "output": "â â â •⠇⠕⠛⠽" }, { "input": "apology's", "output": "â â â •⠇⠕⠛⠽⠄⠎" }, { "input": "apoplectic", "output": "â â â •â â ‡â ‘⠉⠞⠊⠉" }, { "input": "apoplexies", "output": "â â â •â â ‡â ‘â ­â Šâ ‘â Ž" }, { "input": "apoplexy", "output": "â â â •â â ‡â ‘â ­â ½" }, { "input": "apoplexy's", "output": "â â â •â â ‡â ‘⠭⠽⠄⠎" }, { "input": "apostasies", "output": "â â â •â Œâ â Žâ Šâ ‘â Ž" }, { "input": "apostasy", "output": "â â â •â Œâ â Žâ ½" }, { "input": "apostasy's", "output": "â â â •â Œâ â Žâ ½â „â Ž" }, { "input": "apostate", "output": "â â â •â Œâ â žâ ‘" }, { "input": "apostate's", "output": "â â â •â Œâ â žâ ‘â „â Ž" }, { "input": "apostates", "output": "â â â •â Œâ â žâ ‘â Ž" }, { "input": "apostatize", "output": "â â â •â Œâ â žâ Šâ µâ ‘" }, { "input": "apostatized", "output": "â â â •â Œâ â žâ Šâ µâ «" }, { "input": "apostatizes", "output": "â â â •â Œâ â žâ Šâ µâ ‘â Ž" }, { "input": "apostatizing", "output": "â â â •â Œâ â žâ Šâ µâ Œ" }, { "input": "apostle", "output": "â â â •⠌⠇⠑" }, { "input": "apostle's", "output": "â â â •⠌⠇⠑⠄⠎" }, { "input": "apostles", "output": "â â â •⠌⠇⠑⠎" }, { "input": "apostleship", "output": "â â â •⠌⠇⠑⠩⠊â " }, { "input": "apostleship's", "output": "â â â •⠌⠇⠑⠩⠊â â „â Ž" }, { "input": "apostolic", "output": "â â â •⠌⠕⠇⠊⠉" }, { "input": "apostrophe", "output": "â â â •⠌⠗⠕â â “â ‘" }, { "input": "apostrophe's", "output": "â â â •⠌⠗⠕â â “â ‘â „â Ž" }, { "input": "apostrophes", "output": "â â â •⠌⠗⠕â â “â ‘â Ž" }, { "input": "apothecaries", "output": "â â â •⠮⠉⠜⠊⠑⠎" }, { "input": "apothecary", "output": "â â â •⠮⠉⠜⠽" }, { "input": "apothecary's", "output": "â â â •⠮⠉⠜⠽⠄⠎" }, { "input": "apothegm", "output": "â â â •⠮⠛â " }, { "input": "apothegm's", "output": "â â â •⠮⠛â â „â Ž" }, { "input": "apothegms", "output": "â â â •⠮⠛â â Ž" }, { "input": "apotheoses", "output": "â â â •⠮⠕⠎⠑⠎" }, { "input": "apotheosis", "output": "â â â •⠮⠕⠎⠊⠎" }, { "input": "apotheosis's", "output": "â â â •⠮⠕⠎⠊⠎⠄⠎" }, { "input": "appall", "output": "â â â â â ‡â ‡" }, { "input": "appalled", "output": "â â â â â ‡â ‡â «" }, { "input": "appalling", "output": "â â â â â ‡â ‡â Œ" }, { "input": "appallingly", "output": "â â â â â ‡â ‡â Œâ ‡â ½" }, { "input": "appalls", "output": "â â â â â ‡â ‡â Ž" }, { "input": "appaloosa", "output": "â â â â â ‡â •â •â Žâ " }, { "input": "appaloosa's", "output": "â â â â â ‡â •â •â Žâ â „â Ž" }, { "input": "appaloosas", "output": "â â â â â ‡â •â •â Žâ â Ž" }, { "input": "apparatus", "output": "â â â â œâ â žâ ¥â Ž" }, { "input": "apparatus's", "output": "â â â â œâ â žâ ¥â Žâ „â Ž" }, { "input": "apparatuses", "output": "â â â â œâ â žâ ¥â Žâ ‘â Ž" }, { "input": "apparel", "output": "â â â â œâ ‘â ‡" }, { "input": "apparel's", "output": "â â â â œâ ‘⠇⠄⠎" }, { "input": "appareled", "output": "â â â â œâ ‘⠇⠫" }, { "input": "appareling", "output": "â â â â œâ ‘⠇⠌" }, { "input": "apparels", "output": "â â â â œâ ‘⠇⠎" }, { "input": "apparent", "output": "â â â â œâ ¢â ž" }, { "input": "apparently", "output": "â â â â œâ ¢â žâ ‡â ½" }, { "input": "apparition", "output": "â â â â œâ Šâ °â " }, { "input": "apparition's", "output": "â â â â œâ Šâ °â â „â Ž" }, { "input": "apparitions", "output": "â â â â œâ Šâ °â â Ž" }, { "input": "appeal", "output": "â â â â ‚â ‡" }, { "input": "appeal's", "output": "â â â â ‚⠇⠄⠎" }, { "input": "appealed", "output": "â â â â ‚⠇⠫" }, { "input": "appealing", "output": "â â â â ‚⠇⠌" }, { "input": "appeals", "output": "â â â â ‚⠇⠎" }, { "input": "appear", "output": "â â â â ‘â œ" }, { "input": "appearance", "output": "â â â â ‘⠜⠨⠑" }, { "input": "appearance's", "output": "â â â â ‘⠜⠨⠑⠄⠎" }, { "input": "appearances", "output": "â â â â ‘⠜⠨⠑⠎" }, { "input": "appeared", "output": "â â â â ‘⠜⠫" }, { "input": "appearing", "output": "â â â â ‘⠜⠌" }, { "input": "appears", "output": "â â â â ‘⠜⠎" }, { "input": "appease", "output": "â â â â ‚â Žâ ‘" }, { "input": "appeased", "output": "â â â â ‚â Žâ «" }, { "input": "appeasement", "output": "â â â â ‚â Žâ ‘â °â ž" }, { "input": "appeasement's", "output": "â â â â ‚â Žâ ‘â °â žâ „â Ž" }, { "input": "appeasements", "output": "â â â â ‚â Žâ ‘â °â žâ Ž" }, { "input": "appeaser", "output": "â â â â ‚â Žâ »" }, { "input": "appeaser's", "output": "â â â â ‚⠎⠻⠄⠎" }, { "input": "appeasers", "output": "â â â â ‚⠎⠻⠎" }, { "input": "appeases", "output": "â â â â ‚â Žâ ‘â Ž" }, { "input": "appeasing", "output": "â â â â ‚â Žâ Œ" }, { "input": "appellant", "output": "â â â â ‘⠇⠇â â â ž" }, { "input": "appellant's", "output": "â â â â ‘⠇⠇â â â žâ „â Ž" }, { "input": "appellants", "output": "â â â â ‘⠇⠇â â â žâ Ž" }, { "input": "appellate", "output": "â â â â ‘⠇⠇â â žâ ‘" }, { "input": "appellation", "output": "â â â â ‘⠇⠇⠠â " }, { "input": "appellation's", "output": "â â â â ‘⠇⠇⠠â â „â Ž" }, { "input": "appellations", "output": "â â â â ‘⠇⠇⠠â â Ž" }, { "input": "append", "output": "â â â â ¢â ™" }, { "input": "appendage", "output": "â â â â ¢â ™â â ›â ‘" }, { "input": "appendage's", "output": "â â â â ¢â ™â â ›â ‘â „â Ž" }, { "input": "appendages", "output": "â â â â ¢â ™â â ›â ‘â Ž" }, { "input": "appendectomies", "output": "â â â â ¢â ™â ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "appendectomy", "output": "â â â â ¢â ™â ‘⠉⠞⠕â â ½" }, { "input": "appendectomy's", "output": "â â â â ¢â ™â ‘⠉⠞⠕â â ½â „â Ž" }, { "input": "appended", "output": "â â â â ¢â ™â «" }, { "input": "appendices", "output": "â â â â ¢â ™â Šâ ‰â ‘â Ž" }, { "input": "appendicitis", "output": "â â â â ¢â ™â Šâ ‰â Šâ žâ Šâ Ž" }, { "input": "appendicitis's", "output": "â â â â ¢â ™â Šâ ‰â Šâ žâ Šâ Žâ „â Ž" }, { "input": "appending", "output": "â â â â ¢â ™â Œ" }, { "input": "appendix", "output": "â â â â ¢â ™â Šâ ­" }, { "input": "appendix's", "output": "â â â â ¢â ™â Šâ ­â „â Ž" }, { "input": "appendixes", "output": "â â â â ¢â ™â Šâ ­â ‘â Ž" }, { "input": "appends", "output": "â â â â ¢â ™â Ž" }, { "input": "appertain", "output": "â â â â »â žâ â ”" }, { "input": "appertained", "output": "â â â â »â žâ â ”â «" }, { "input": "appertaining", "output": "â â â â »â žâ â ”â Œ" }, { "input": "appertains", "output": "â â â â »â žâ â ”â Ž" }, { "input": "appetite", "output": "â â â â ‘â žâ Šâ žâ ‘" }, { "input": "appetite's", "output": "â â â â ‘â žâ Šâ žâ ‘â „â Ž" }, { "input": "appetites", "output": "â â â â ‘â žâ Šâ žâ ‘â Ž" }, { "input": "appetizer", "output": "â â â â ‘⠞⠊⠵⠻" }, { "input": "appetizer's", "output": "â â â â ‘⠞⠊⠵⠻⠄⠎" }, { "input": "appetizers", "output": "â â â â ‘⠞⠊⠵⠻⠎" }, { "input": "appetizing", "output": "â â â â ‘⠞⠊⠵⠌" }, { "input": "appetizingly", "output": "â â â â ‘⠞⠊⠵⠌⠇⠽" }, { "input": "applaud", "output": "â â â â ‡â â ¥â ™" }, { "input": "applauded", "output": "â â â â ‡â â ¥â ™â «" }, { "input": "applauder", "output": "â â â â ‡â â ¥â ™â »" }, { "input": "applauder's", "output": "â â â â ‡â â ¥â ™â »â „â Ž" }, { "input": "applauders", "output": "â â â â ‡â â ¥â ™â »â Ž" }, { "input": "applauding", "output": "â â â â ‡â â ¥â ™â Œ" }, { "input": "applauds", "output": "â â â â ‡â â ¥â ™â Ž" }, { "input": "applause", "output": "â â â â ‡â â ¥â Žâ ‘" }, { "input": "applause's", "output": "â â â â ‡â â ¥â Žâ ‘â „â Ž" }, { "input": "apple", "output": "â â â â ‡â ‘" }, { "input": "apple's", "output": "â â â â ‡â ‘â „â Ž" }, { "input": "applejack", "output": "â â â â ‡â ‘â šâ â ‰â …" }, { "input": "applejack's", "output": "â â â â ‡â ‘â šâ â ‰â …â „â Ž" }, { "input": "apples", "output": "â â â â ‡â ‘â Ž" }, { "input": "applesauce", "output": "â â â â ‡â ‘â Žâ â ¥â ‰â ‘" }, { "input": "applesauce's", "output": "â â â â ‡â ‘â Žâ â ¥â ‰â ‘â „â Ž" }, { "input": "appliance", "output": "â â â â ‡â Šâ ¨â ‘" }, { "input": "appliance's", "output": "â â â â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "appliances", "output": "â â â â ‡â Šâ ¨â ‘â Ž" }, { "input": "applicability", "output": "â â â â ‡â Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "applicability's", "output": "â â â â ‡â Šâ ‰â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "applicable", "output": "â â â â ‡â Šâ ‰â â ¼" }, { "input": "applicably", "output": "â â â â ‡â Šâ ‰â â ƒâ ‡â ½" }, { "input": "applicant", "output": "â â â â ‡â Šâ ‰â â â ž" }, { "input": "applicant's", "output": "â â â â ‡â Šâ ‰â â â žâ „â Ž" }, { "input": "applicants", "output": "â â â â ‡â Šâ ‰â â â žâ Ž" }, { "input": "application", "output": "â â â â ‡â Šâ ‰â  â " }, { "input": "application's", "output": "â â â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "applications", "output": "â â â â ‡â Šâ ‰â  â â Ž" }, { "input": "applicator", "output": "â â â â ‡â Šâ ‰â â žâ •â —" }, { "input": "applicator's", "output": "â â â â ‡â Šâ ‰â â žâ •â —â „â Ž" }, { "input": "applicators", "output": "â â â â ‡â Šâ ‰â â žâ •â —â Ž" }, { "input": "applied", "output": "â â â â ‡â Šâ «" }, { "input": "applier", "output": "â â â â ‡â Šâ »" }, { "input": "applier's", "output": "â â â â ‡â Šâ »â „â Ž" }, { "input": "appliers", "output": "â â â â ‡â Šâ »â Ž" }, { "input": "applies", "output": "â â â â ‡â Šâ ‘â Ž" }, { "input": "apply", "output": "â â â â ‡â ½" }, { "input": "applying", "output": "â â â â ‡â ½â Œ" }, { "input": "appoint", "output": "â â â â •⠔⠞" }, { "input": "appointed", "output": "â â â â •⠔⠞⠫" }, { "input": "appointee", "output": "â â â â •⠔⠞⠑⠑" }, { "input": "appointee's", "output": "â â â â •⠔⠞⠑⠑⠄⠎" }, { "input": "appointees", "output": "â â â â •⠔⠞⠑⠑⠎" }, { "input": "appointing", "output": "â â â â •⠔⠞⠌" }, { "input": "appointive", "output": "â â â â •⠔⠞⠊⠧⠑" }, { "input": "appointment", "output": "â â â â •⠔⠞⠰⠞" }, { "input": "appointment's", "output": "â â â â •⠔⠞⠰⠞⠄⠎" }, { "input": "appointments", "output": "â â â â •⠔⠞⠰⠞⠎" }, { "input": "appoints", "output": "â â â â •⠔⠞⠎" }, { "input": "apportion", "output": "â â â â •â —â °â " }, { "input": "apportioned", "output": "â â â â •â —â °â â «" }, { "input": "apportioning", "output": "â â â â •â —â °â â Œ" }, { "input": "apportionment", "output": "â â â â •â —â °â â °â ž" }, { "input": "apportionment's", "output": "â â â â •â —â °â â °â žâ „â Ž" }, { "input": "apportions", "output": "â â â â •â —â °â â Ž" }, { "input": "appose", "output": "â â â â •â Žâ ‘" }, { "input": "apposed", "output": "â â â â •â Žâ «" }, { "input": "apposes", "output": "â â â â •â Žâ ‘â Ž" }, { "input": "apposing", "output": "â â â â •â Žâ Œ" }, { "input": "apposite", "output": "â â â â •â Žâ Šâ žâ ‘" }, { "input": "appositely", "output": "â â â â •⠎⠊⠞⠑⠇⠽" }, { "input": "appositeness", "output": "â â â â •â Žâ Šâ žâ ‘â °â Ž" }, { "input": "appositeness's", "output": "â â â â •â Žâ Šâ žâ ‘â °â Žâ „â Ž" }, { "input": "apposition", "output": "â â â â •â Žâ Šâ °â " }, { "input": "apposition's", "output": "â â â â •â Žâ Šâ °â â „â Ž" }, { "input": "appositive", "output": "â â â â •â Žâ Šâ žâ Šâ §â ‘" }, { "input": "appositive's", "output": "â â â â •â Žâ Šâ žâ Šâ §â ‘â „â Ž" }, { "input": "appositives", "output": "â â â â •â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "appraisal", "output": "â â â â —â â Šâ Žâ â ‡" }, { "input": "appraisal's", "output": "â â â â —â â Šâ Žâ â ‡â „â Ž" }, { "input": "appraisals", "output": "â â â â —â â Šâ Žâ â ‡â Ž" }, { "input": "appraise", "output": "â â â â —â â Šâ Žâ ‘" }, { "input": "appraised", "output": "â â â â —â â Šâ Žâ «" }, { "input": "appraiser", "output": "â â â â —â â Šâ Žâ »" }, { "input": "appraiser's", "output": "â â â â —â â Šâ Žâ »â „â Ž" }, { "input": "appraisers", "output": "â â â â —â â Šâ Žâ »â Ž" }, { "input": "appraises", "output": "â â â â —â â Šâ Žâ ‘â Ž" }, { "input": "appraising", "output": "â â â â —â â Šâ Žâ Œ" }, { "input": "appreciable", "output": "â â â â —⠑⠉⠊â â ¼" }, { "input": "appreciably", "output": "â â â â —⠑⠉⠊â â ƒâ ‡â ½" }, { "input": "appreciate", "output": "â â â â —⠑⠉⠊â â žâ ‘" }, { "input": "appreciated", "output": "â â â â —⠑⠉⠊â â žâ «" }, { "input": "appreciates", "output": "â â â â —⠑⠉⠊â â žâ ‘â Ž" }, { "input": "appreciating", "output": "â â â â —⠑⠉⠊â â žâ Œ" }, { "input": "appreciation", "output": "â â â â —⠑⠉⠊⠠â " }, { "input": "appreciation's", "output": "â â â â —⠑⠉⠊⠠â â „â Ž" }, { "input": "appreciations", "output": "â â â â —⠑⠉⠊⠠â â Ž" }, { "input": "appreciative", "output": "â â â â —⠑⠉⠊â â žâ Šâ §â ‘" }, { "input": "appreciatively", "output": "â â â â —⠑⠉⠊â â žâ Šâ §â ‘⠇⠽" }, { "input": "appreciator", "output": "â â â â —⠑⠉⠊â â žâ •â —" }, { "input": "appreciator's", "output": "â â â â —⠑⠉⠊â â žâ •â —â „â Ž" }, { "input": "appreciators", "output": "â â â â —⠑⠉⠊â â žâ •â —â Ž" }, { "input": "appreciatory", "output": "â â â â —⠑⠉⠊â â žâ •â —â ½" }, { "input": "apprehend", "output": "â â â â —⠑⠓⠢⠙" }, { "input": "apprehended", "output": "â â â â —⠑⠓⠢⠙⠫" }, { "input": "apprehending", "output": "â â â â —⠑⠓⠢⠙⠌" }, { "input": "apprehends", "output": "â â â â —⠑⠓⠢⠙⠎" }, { "input": "apprehension", "output": "â â â â —⠑⠓⠢⠨â " }, { "input": "apprehension's", "output": "â â â â —⠑⠓⠢⠨â â „â Ž" }, { "input": "apprehensions", "output": "â â â â —⠑⠓⠢⠨â â Ž" }, { "input": "apprehensive", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑" }, { "input": "apprehensively", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑⠇⠽" }, { "input": "apprehensiveness", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑⠰⠎" }, { "input": "apprehensiveness's", "output": "â â â â —⠑⠓⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "apprentice", "output": "â â â â —⠢⠞⠊⠉⠑" }, { "input": "apprentice's", "output": "â â â â —⠢⠞⠊⠉⠑⠄⠎" }, { "input": "apprenticed", "output": "â â â â —⠢⠞⠊⠉⠫" }, { "input": "apprentices", "output": "â â â â —⠢⠞⠊⠉⠑⠎" }, { "input": "apprenticeship", "output": "â â â â —⠢⠞⠊⠉⠑⠩⠊â " }, { "input": "apprenticeship's", "output": "â â â â —⠢⠞⠊⠉⠑⠩⠊â â „â Ž" }, { "input": "apprenticeships", "output": "â â â â —⠢⠞⠊⠉⠑⠩⠊â â Ž" }, { "input": "apprenticing", "output": "â â â â —⠢⠞⠊⠉⠌" }, { "input": "apprise", "output": "â â â â —â Šâ Žâ ‘" }, { "input": "apprised", "output": "â â â â —â Šâ Žâ «" }, { "input": "apprises", "output": "â â â â —â Šâ Žâ ‘â Ž" }, { "input": "apprising", "output": "â â â â —â Šâ Žâ Œ" }, { "input": "approach", "output": "â â â â —â •â â ¡" }, { "input": "approach's", "output": "â â â â —â •â â ¡â „â Ž" }, { "input": "approachable", "output": "â â â â —â •â â ¡â â ¼" }, { "input": "approached", "output": "â â â â —â •â â ¡â «" }, { "input": "approaches", "output": "â â â â —â •â â ¡â ‘â Ž" }, { "input": "approaching", "output": "â â â â —â •â â ¡â Œ" }, { "input": "approbation", "output": "â â â â —⠕⠃⠠â " }, { "input": "approbation's", "output": "â â â â —⠕⠃⠠â â „â Ž" }, { "input": "approbations", "output": "â â â â —⠕⠃⠠â â Ž" }, { "input": "appropriate", "output": "â â â â —â •â â —â Šâ â žâ ‘" }, { "input": "appropriated", "output": "â â â â —â •â â —â Šâ â žâ «" }, { "input": "appropriately", "output": "â â â â —â •â â —â Šâ â žâ ‘⠇⠽" }, { "input": "appropriateness", "output": "â â â â —â •â â —â Šâ â žâ ‘â °â Ž" }, { "input": "appropriateness's", "output": "â â â â —â •â â —â Šâ â žâ ‘â °â Žâ „â Ž" }, { "input": "appropriates", "output": "â â â â —â •â â —â Šâ â žâ ‘â Ž" }, { "input": "appropriating", "output": "â â â â —â •â â —â Šâ â žâ Œ" }, { "input": "appropriation", "output": "â â â â —â •â â —â Šâ  â " }, { "input": "appropriation's", "output": "â â â â —â •â â —â Šâ  â â „â Ž" }, { "input": "appropriations", "output": "â â â â —â •â â —â Šâ  â â Ž" }, { "input": "appropriator", "output": "â â â â —â •â â —â Šâ â žâ •â —" }, { "input": "appropriator's", "output": "â â â â —â •â â —â Šâ â žâ •â —â „â Ž" }, { "input": "appropriators", "output": "â â â â —â •â â —â Šâ â žâ •â —â Ž" }, { "input": "approval", "output": "â â â â —â •â §â â ‡" }, { "input": "approval's", "output": "â â â â —â •â §â â ‡â „â Ž" }, { "input": "approvals", "output": "â â â â —â •â §â â ‡â Ž" }, { "input": "approve", "output": "â â â â —â •â §â ‘" }, { "input": "approved", "output": "â â â â —â •â §â «" }, { "input": "approves", "output": "â â â â —â •â §â ‘â Ž" }, { "input": "approving", "output": "â â â â —â •â §â Œ" }, { "input": "approvingly", "output": "â â â â —⠕⠧⠌⠇⠽" }, { "input": "approximate", "output": "â â â â —â •â ­â Šâ â â žâ ‘" }, { "input": "approximated", "output": "â â â â —â •â ­â Šâ â â žâ «" }, { "input": "approximately", "output": "â â â â —â •â ­â Šâ â â žâ ‘⠇⠽" }, { "input": "approximates", "output": "â â â â —â •â ­â Šâ â â žâ ‘â Ž" }, { "input": "approximating", "output": "â â â â —â •â ­â Šâ â â žâ Œ" }, { "input": "approximation", "output": "â â â â —â •â ­â Šâ â  â " }, { "input": "approximation's", "output": "â â â â —â •â ­â Šâ â  â â „â Ž" }, { "input": "approximations", "output": "â â â â —â •â ­â Šâ â  â â Ž" }, { "input": "appurtenance", "output": "â â â â ¥â —⠞⠢⠨⠑" }, { "input": "appurtenance's", "output": "â â â â ¥â —⠞⠢⠨⠑⠄⠎" }, { "input": "appurtenances", "output": "â â â â ¥â —⠞⠢⠨⠑⠎" }, { "input": "appurtenant", "output": "â â â â ¥â —â žâ ¢â â â ž" }, { "input": "apricot", "output": "â â â —⠊⠉⠕⠞" }, { "input": "apricot's", "output": "â â â —⠊⠉⠕⠞⠄⠎" }, { "input": "apricots", "output": "â â â —⠊⠉⠕⠞⠎" }, { "input": "apron", "output": "â â â —â •â " }, { "input": "apron's", "output": "â â â —â •â â „â Ž" }, { "input": "aprons", "output": "â â â —â •â â Ž" }, { "input": "apropos", "output": "â â â —â •â â •â Ž" }, { "input": "apse", "output": "â â â Žâ ‘" }, { "input": "apse's", "output": "â â â Žâ ‘â „â Ž" }, { "input": "apses", "output": "â â â Žâ ‘â Ž" }, { "input": "apt", "output": "â â â ž" }, { "input": "apter", "output": "â â â žâ »" }, { "input": "aptest", "output": "â â â žâ ‘â Œ" }, { "input": "aptitude", "output": "â â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "aptitude's", "output": "â â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "aptitudes", "output": "â â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "aptly", "output": "â â â žâ ‡â ½" }, { "input": "aptness", "output": "â â â žâ °â Ž" }, { "input": "aptness's", "output": "â â â žâ °â Žâ „â Ž" }, { "input": "aqua", "output": "â â Ÿâ ¥â " }, { "input": "aqua's", "output": "â â Ÿâ ¥â â „â Ž" }, { "input": "aquaculture", "output": "â â Ÿâ ¥â â ‰â ¥â ‡â žâ ¥â —â ‘" }, { "input": "aquaculture's", "output": "â â Ÿâ ¥â â ‰â ¥â ‡â žâ ¥â —â ‘â „â Ž" }, { "input": "aqualung", "output": "â â Ÿâ ¥â â ‡â ¥â â ›" }, { "input": "aqualung's", "output": "â â Ÿâ ¥â â ‡â ¥â â ›â „â Ž" }, { "input": "aqualungs", "output": "â â Ÿâ ¥â â ‡â ¥â â ›â Ž" }, { "input": "aquamarine", "output": "â â Ÿâ ¥â â â œâ ”â ‘" }, { "input": "aquamarine's", "output": "â â Ÿâ ¥â â â œâ ”â ‘â „â Ž" }, { "input": "aquamarines", "output": "â â Ÿâ ¥â â â œâ ”â ‘â Ž" }, { "input": "aquanaut", "output": "â â Ÿâ ¥â â â â ¥â ž" }, { "input": "aquanaut's", "output": "â â Ÿâ ¥â â â â ¥â žâ „â Ž" }, { "input": "aquanauts", "output": "â â Ÿâ ¥â â â â ¥â žâ Ž" }, { "input": "aquaplane", "output": "â â Ÿâ ¥â â â ‡â â â ‘" }, { "input": "aquaplane's", "output": "â â Ÿâ ¥â â â ‡â â â ‘â „â Ž" }, { "input": "aquaplaned", "output": "â â Ÿâ ¥â â â ‡â â â «" }, { "input": "aquaplanes", "output": "â â Ÿâ ¥â â â ‡â â â ‘â Ž" }, { "input": "aquaplaning", "output": "â â Ÿâ ¥â â â ‡â â â Œ" }, { "input": "aquarium", "output": "â â Ÿâ ¥â œâ Šâ ¥â " }, { "input": "aquarium's", "output": "â â Ÿâ ¥â œâ Šâ ¥â â „â Ž" }, { "input": "aquariums", "output": "â â Ÿâ ¥â œâ Šâ ¥â â Ž" }, { "input": "aquas", "output": "â â Ÿâ ¥â â Ž" }, { "input": "aquatic", "output": "â â Ÿâ ¥â â žâ Šâ ‰" }, { "input": "aquatic's", "output": "â â Ÿâ ¥â â žâ Šâ ‰â „â Ž" }, { "input": "aquatics", "output": "â â Ÿâ ¥â â žâ Šâ ‰â Ž" }, { "input": "aquatics's", "output": "â â Ÿâ ¥â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "aquavit", "output": "â â Ÿâ ¥â â §â Šâ ž" }, { "input": "aquavit's", "output": "â â Ÿâ ¥â â §â Šâ žâ „â Ž" }, { "input": "aqueduct", "output": "â â Ÿâ ¥â ‘⠙⠥⠉⠞" }, { "input": "aqueduct's", "output": "â â Ÿâ ¥â ‘⠙⠥⠉⠞⠄⠎" }, { "input": "aqueducts", "output": "â â Ÿâ ¥â ‘⠙⠥⠉⠞⠎" }, { "input": "aqueous", "output": "â â Ÿâ ¥â ‘⠳⠎" }, { "input": "aquifer", "output": "â â Ÿâ ¥â Šâ ‹â »" }, { "input": "aquifer's", "output": "â â Ÿâ ¥â Šâ ‹â »â „â Ž" }, { "input": "aquifers", "output": "â â Ÿâ ¥â Šâ ‹â »â Ž" }, { "input": "aquiline", "output": "â â Ÿâ ¥â Šâ ‡â ”â ‘" }, { "input": "arabesque", "output": "â œâ â ƒâ ‘⠎⠟⠥⠑" }, { "input": "arabesque's", "output": "â œâ â ƒâ ‘⠎⠟⠥⠑⠄⠎" }, { "input": "arabesques", "output": "â œâ â ƒâ ‘⠎⠟⠥⠑⠎" }, { "input": "arability", "output": "â œâ â ƒâ Šâ ‡â °â ½" }, { "input": "arability's", "output": "â œâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "arable", "output": "â œâ â ¼" }, { "input": "arachnid", "output": "â œâ â ¡â â Šâ ™" }, { "input": "arachnid's", "output": "â œâ â ¡â â Šâ ™â „â Ž" }, { "input": "arachnids", "output": "â œâ â ¡â â Šâ ™â Ž" }, { "input": "arbiter", "output": "⠜⠃⠊⠞⠻" }, { "input": "arbiter's", "output": "⠜⠃⠊⠞⠻⠄⠎" }, { "input": "arbiters", "output": "⠜⠃⠊⠞⠻⠎" }, { "input": "arbitrage's", "output": "⠜⠃⠊⠞⠗â â ›â ‘â „â Ž" }, { "input": "arbitraged", "output": "⠜⠃⠊⠞⠗â â ›â «" }, { "input": "arbitrages", "output": "⠜⠃⠊⠞⠗â â ›â ‘â Ž" }, { "input": "arbitraging", "output": "⠜⠃⠊⠞⠗â â ›â Œ" }, { "input": "arbitrament", "output": "⠜⠃⠊⠞⠗â â °â ž" }, { "input": "arbitrament's", "output": "⠜⠃⠊⠞⠗â â °â žâ „â Ž" }, { "input": "arbitraments", "output": "⠜⠃⠊⠞⠗â â °â žâ Ž" }, { "input": "arbitrarily", "output": "⠜⠃⠊⠞⠗⠜⠊⠇⠽" }, { "input": "arbitrariness", "output": "⠜⠃⠊⠞⠗⠜⠊⠰⠎" }, { "input": "arbitrariness's", "output": "⠜⠃⠊⠞⠗⠜⠊⠰⠎⠄⠎" }, { "input": "arbitrary", "output": "⠜⠃⠊⠞⠗⠜⠽" }, { "input": "arbitrate", "output": "⠜⠃⠊⠞⠗â â žâ ‘" }, { "input": "arbitrated", "output": "⠜⠃⠊⠞⠗â â žâ «" }, { "input": "arbitrates", "output": "⠜⠃⠊⠞⠗â â žâ ‘â Ž" }, { "input": "arbitrating", "output": "⠜⠃⠊⠞⠗â â žâ Œ" }, { "input": "arbitration", "output": "⠜⠃⠊⠞⠗⠠â " }, { "input": "arbitration's", "output": "⠜⠃⠊⠞⠗⠠â â „â Ž" }, { "input": "arbitrator", "output": "⠜⠃⠊⠞⠗â â žâ •â —" }, { "input": "arbitrator's", "output": "⠜⠃⠊⠞⠗â â žâ •â —â „â Ž" }, { "input": "arbitrators", "output": "⠜⠃⠊⠞⠗â â žâ •â —â Ž" }, { "input": "arbor", "output": "⠜⠃⠕⠗" }, { "input": "arbor's", "output": "⠜⠃⠕⠗⠄⠎" }, { "input": "arboreal", "output": "⠜⠃⠕⠗⠂⠇" }, { "input": "arboretum", "output": "⠜⠃⠕⠗⠑⠞⠥â " }, { "input": "arboretum's", "output": "⠜⠃⠕⠗⠑⠞⠥â â „â Ž" }, { "input": "arboretums", "output": "⠜⠃⠕⠗⠑⠞⠥â â Ž" }, { "input": "arbors", "output": "⠜⠃⠕⠗⠎" }, { "input": "arborvitae", "output": "⠜⠃⠕⠗⠧⠊⠞â â ‘" }, { "input": "arborvitae's", "output": "⠜⠃⠕⠗⠧⠊⠞â â ‘â „â Ž" }, { "input": "arborvitaes", "output": "⠜⠃⠕⠗⠧⠊⠞â â ‘â Ž" }, { "input": "arbutus", "output": "⠜⠃⠥⠞⠥⠎" }, { "input": "arbutus's", "output": "⠜⠃⠥⠞⠥⠎⠄⠎" }, { "input": "arbutuses", "output": "⠜⠃⠥⠞⠥⠎⠑⠎" }, { "input": "arc", "output": "⠜⠉" }, { "input": "arc's", "output": "⠜⠉⠄⠎" }, { "input": "arcade", "output": "⠜⠉â â ™â ‘" }, { "input": "arcade's", "output": "⠜⠉â â ™â ‘â „â Ž" }, { "input": "arcades", "output": "⠜⠉â â ™â ‘â Ž" }, { "input": "arcane", "output": "⠜⠉â â â ‘" }, { "input": "arced", "output": "⠜⠉⠫" }, { "input": "arch", "output": "⠜⠡" }, { "input": "arch's", "output": "⠜⠡⠄⠎" }, { "input": "archaeological", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "archaeologist", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠌" }, { "input": "archaeologist's", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "archaeologists", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠊⠌⠎" }, { "input": "archaeology", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠽" }, { "input": "archaeology's", "output": "⠜⠡â â ‘⠕⠇⠕⠛⠽⠄⠎" }, { "input": "archaic", "output": "⠜⠡â â Šâ ‰" }, { "input": "archaically", "output": "⠜⠡â â Šâ ‰â  â ½" }, { "input": "archaism", "output": "⠜⠡â â Šâ Žâ " }, { "input": "archaism's", "output": "⠜⠡â â Šâ Žâ â „â Ž" }, { "input": "archaisms", "output": "⠜⠡â â Šâ Žâ â Ž" }, { "input": "archaist", "output": "⠜⠡â â Šâ Œ" }, { "input": "archaist's", "output": "⠜⠡â â Šâ Œâ „â Ž" }, { "input": "archaists", "output": "⠜⠡â â Šâ Œâ Ž" }, { "input": "archangel", "output": "⠜⠡â â â ›â ‘â ‡" }, { "input": "archangel's", "output": "⠜⠡â â â ›â ‘⠇⠄⠎" }, { "input": "archangels", "output": "⠜⠡â â â ›â ‘⠇⠎" }, { "input": "archbishop", "output": "⠜⠡⠃⠊⠩⠕â " }, { "input": "archbishop's", "output": "⠜⠡⠃⠊⠩⠕â â „â Ž" }, { "input": "archbishopric", "output": "⠜⠡⠃⠊⠩⠕â â —â Šâ ‰" }, { "input": "archbishopric's", "output": "⠜⠡⠃⠊⠩⠕â â —⠊⠉⠄⠎" }, { "input": "archbishoprics", "output": "⠜⠡⠃⠊⠩⠕â â —⠊⠉⠎" }, { "input": "archbishops", "output": "⠜⠡⠃⠊⠩⠕â â Ž" }, { "input": "archdeacon", "output": "⠜⠡⠙⠂⠉⠕â " }, { "input": "archdeacon's", "output": "⠜⠡⠙⠂⠉⠕â â „â Ž" }, { "input": "archdeacons", "output": "⠜⠡⠙⠂⠉⠕â â Ž" }, { "input": "archdiocesan", "output": "⠜⠡⠙⠊⠕⠉⠑⠎â â " }, { "input": "archdiocese", "output": "⠜⠡⠙⠊⠕⠉⠑⠎⠑" }, { "input": "archdiocese's", "output": "⠜⠡⠙⠊⠕⠉⠑⠎⠑⠄⠎" }, { "input": "archdioceses", "output": "⠜⠡⠙⠊⠕⠉⠑⠎⠑⠎" }, { "input": "archduke", "output": "⠜⠡⠙⠥⠅⠑" }, { "input": "archduke's", "output": "⠜⠡⠙⠥⠅⠑⠄⠎" }, { "input": "archdukes", "output": "⠜⠡⠙⠥⠅⠑⠎" }, { "input": "arched", "output": "⠜⠡⠫" }, { "input": "archenemies", "output": "⠜⠡⠢⠑â â Šâ ‘â Ž" }, { "input": "archenemy", "output": "⠜⠡⠢⠑â â ½" }, { "input": "archenemy's", "output": "⠜⠡⠢⠑â â ½â „â Ž" }, { "input": "archer", "output": "⠜⠡⠻" }, { "input": "archer's", "output": "⠜⠡⠻⠄⠎" }, { "input": "archers", "output": "⠜⠡⠻⠎" }, { "input": "archery", "output": "⠜⠡⠻⠽" }, { "input": "archery's", "output": "⠜⠡⠻⠽⠄⠎" }, { "input": "arches", "output": "⠜⠡⠑⠎" }, { "input": "archest", "output": "⠜⠡⠑⠌" }, { "input": "archetypal", "output": "⠜⠡⠑⠞⠽â â â ‡" }, { "input": "archetype", "output": "⠜⠡⠑⠞⠽â â ‘" }, { "input": "archetype's", "output": "⠜⠡⠑⠞⠽â â ‘â „â Ž" }, { "input": "archetypes", "output": "⠜⠡⠑⠞⠽â â ‘â Ž" }, { "input": "archfiend", "output": "⠜⠡⠋⠊⠢⠙" }, { "input": "archfiend's", "output": "⠜⠡⠋⠊⠢⠙⠄⠎" }, { "input": "archfiends", "output": "⠜⠡⠋⠊⠢⠙⠎" }, { "input": "archiepiscopal", "output": "⠜⠡⠊⠑â â Šâ Žâ ‰â •â â â ‡" }, { "input": "arching", "output": "⠜⠡⠌" }, { "input": "archipelago", "output": "⠜⠡⠊â â ‘â ‡â â ›â •" }, { "input": "archipelago's", "output": "⠜⠡⠊â â ‘â ‡â â ›â •â „â Ž" }, { "input": "archipelagos", "output": "⠜⠡⠊â â ‘â ‡â â ›â •â Ž" }, { "input": "architect", "output": "⠜⠡⠊⠞⠑⠉⠞" }, { "input": "architect's", "output": "⠜⠡⠊⠞⠑⠉⠞⠄⠎" }, { "input": "architectonic", "output": "⠜⠡⠊⠞⠑⠉⠞⠕â â Šâ ‰" }, { "input": "architectonics", "output": "⠜⠡⠊⠞⠑⠉⠞⠕â â Šâ ‰â Ž" }, { "input": "architectonics's", "output": "⠜⠡⠊⠞⠑⠉⠞⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "architects", "output": "⠜⠡⠊⠞⠑⠉⠞⠎" }, { "input": "architectural", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗â â ‡" }, { "input": "architecturally", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗⠠⠽" }, { "input": "architecture", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗⠑" }, { "input": "architecture's", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗⠑⠄⠎" }, { "input": "architectures", "output": "⠜⠡⠊⠞⠑⠉⠞⠥⠗⠑⠎" }, { "input": "architrave", "output": "⠜⠡⠊⠞⠗â â §â ‘" }, { "input": "architrave's", "output": "⠜⠡⠊⠞⠗â â §â ‘â „â Ž" }, { "input": "architraves", "output": "⠜⠡⠊⠞⠗â â §â ‘â Ž" }, { "input": "archive", "output": "⠜⠡⠊⠧⠑" }, { "input": "archive's", "output": "⠜⠡⠊⠧⠑⠄⠎" }, { "input": "archived", "output": "⠜⠡⠊⠧⠫" }, { "input": "archives", "output": "⠜⠡⠊⠧⠑⠎" }, { "input": "archiving", "output": "⠜⠡⠊⠧⠌" }, { "input": "archivist", "output": "⠜⠡⠊⠧⠊⠌" }, { "input": "archivist's", "output": "⠜⠡⠊⠧⠊⠌⠄⠎" }, { "input": "archivists", "output": "⠜⠡⠊⠧⠊⠌⠎" }, { "input": "archly", "output": "⠜⠡⠇⠽" }, { "input": "archness", "output": "⠜⠡⠰⠎" }, { "input": "archness's", "output": "⠜⠡⠰⠎⠄⠎" }, { "input": "archway", "output": "⠜⠡⠺â â ½" }, { "input": "archway's", "output": "⠜⠡⠺â â ½â „â Ž" }, { "input": "archways", "output": "⠜⠡⠺â â ½â Ž" }, { "input": "arcing", "output": "⠜⠉⠌" }, { "input": "arcs", "output": "⠜⠉⠎" }, { "input": "arctic", "output": "⠜⠉⠞⠊⠉" }, { "input": "arctic's", "output": "⠜⠉⠞⠊⠉⠄⠎" }, { "input": "arctics", "output": "⠜⠉⠞⠊⠉⠎" }, { "input": "ardent", "output": "⠜⠙⠢⠞" }, { "input": "ardently", "output": "⠜⠙⠢⠞⠇⠽" }, { "input": "ardor", "output": "⠜⠙⠕⠗" }, { "input": "ardor's", "output": "⠜⠙⠕⠗⠄⠎" }, { "input": "ardors", "output": "⠜⠙⠕⠗⠎" }, { "input": "arduous", "output": "⠜⠙⠥⠳⠎" }, { "input": "arduously", "output": "⠜⠙⠥⠳⠎⠇⠽" }, { "input": "arduousness", "output": "⠜⠙⠥⠳⠎⠰⠎" }, { "input": "arduousness's", "output": "⠜⠙⠥⠳⠎⠰⠎⠄⠎" }, { "input": "are", "output": "⠜⠑" }, { "input": "are's", "output": "⠜⠑⠄⠎" }, { "input": "area", "output": "⠜⠑â " }, { "input": "area's", "output": "⠜⠑â â „â Ž" }, { "input": "areal", "output": "⠜⠂⠇" }, { "input": "areas", "output": "⠜⠂⠎" }, { "input": "arena", "output": "⠜⠢â " }, { "input": "arena's", "output": "⠜⠢â â „â Ž" }, { "input": "arenas", "output": "⠜⠢â â Ž" }, { "input": "ares", "output": "⠜⠑⠎" }, { "input": "argent", "output": "⠜⠛⠢⠞" }, { "input": "argent's", "output": "⠜⠛⠢⠞⠄⠎" }, { "input": "argon", "output": "⠜⠛⠕â " }, { "input": "argon's", "output": "⠜⠛⠕â â „â Ž" }, { "input": "argosies", "output": "⠜⠛⠕⠎⠊⠑⠎" }, { "input": "argosy", "output": "⠜⠛⠕⠎⠽" }, { "input": "argosy's", "output": "⠜⠛⠕⠎⠽⠄⠎" }, { "input": "argot", "output": "⠜⠛⠕⠞" }, { "input": "argot's", "output": "⠜⠛⠕⠞⠄⠎" }, { "input": "argots", "output": "⠜⠛⠕⠞⠎" }, { "input": "arguable", "output": "⠜⠛⠥â â ¼" }, { "input": "arguably", "output": "⠜⠛⠥â â ƒâ ‡â ½" }, { "input": "argue", "output": "⠜⠛⠥⠑" }, { "input": "argued", "output": "⠜⠛⠥⠫" }, { "input": "arguer", "output": "⠜⠛⠥⠻" }, { "input": "arguer's", "output": "⠜⠛⠥⠻⠄⠎" }, { "input": "arguers", "output": "⠜⠛⠥⠻⠎" }, { "input": "argues", "output": "⠜⠛⠥⠑⠎" }, { "input": "arguing", "output": "⠜⠛⠥⠌" }, { "input": "argument", "output": "⠜⠛⠥⠰⠞" }, { "input": "argument's", "output": "⠜⠛⠥⠰⠞⠄⠎" }, { "input": "argumentation", "output": "⠜⠛⠥⠰⠞⠠â " }, { "input": "argumentation's", "output": "⠜⠛⠥⠰⠞⠠â â „â Ž" }, { "input": "argumentative", "output": "⠜⠛⠥⠰⠞â â žâ Šâ §â ‘" }, { "input": "argumentatively", "output": "⠜⠛⠥⠰⠞â â žâ Šâ §â ‘⠇⠽" }, { "input": "argumentativeness", "output": "⠜⠛⠥⠰⠞â â žâ Šâ §â ‘â °â Ž" }, { "input": "argumentativeness's", "output": "⠜⠛⠥⠰⠞â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "arguments", "output": "⠜⠛⠥⠰⠞⠎" }, { "input": "argyle", "output": "⠜⠛⠽⠇⠑" }, { "input": "argyle's", "output": "⠜⠛⠽⠇⠑⠄⠎" }, { "input": "argyles", "output": "⠜⠛⠽⠇⠑⠎" }, { "input": "aria", "output": "⠜⠊â " }, { "input": "aria's", "output": "⠜⠊â â „â Ž" }, { "input": "arias", "output": "⠜⠊â â Ž" }, { "input": "arid", "output": "⠜⠊⠙" }, { "input": "aridity", "output": "⠜⠊⠙⠰⠽" }, { "input": "aridity's", "output": "⠜⠊⠙⠰⠽⠄⠎" }, { "input": "aridly", "output": "⠜⠊⠙⠇⠽" }, { "input": "aright", "output": "â â â —" }, { "input": "arise", "output": "⠜⠊⠎⠑" }, { "input": "arisen", "output": "⠜⠊⠎⠢" }, { "input": "arises", "output": "⠜⠊⠎⠑⠎" }, { "input": "arising", "output": "⠜⠊⠎⠌" }, { "input": "aristocracies", "output": "⠜⠊⠌⠕⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "aristocracy", "output": "⠜⠊⠌⠕⠉⠗â â ‰â ½" }, { "input": "aristocracy's", "output": "⠜⠊⠌⠕⠉⠗â â ‰â ½â „â Ž" }, { "input": "aristocrat", "output": "⠜⠊⠌⠕⠉⠗â â ž" }, { "input": "aristocrat's", "output": "⠜⠊⠌⠕⠉⠗â â žâ „â Ž" }, { "input": "aristocratic", "output": "⠜⠊⠌⠕⠉⠗â â žâ Šâ ‰" }, { "input": "aristocratically", "output": "⠜⠊⠌⠕⠉⠗â â žâ Šâ ‰â  â ½" }, { "input": "aristocrats", "output": "⠜⠊⠌⠕⠉⠗â â žâ Ž" }, { "input": "arithmetic", "output": "⠜⠊⠹â â ‘â žâ Šâ ‰" }, { "input": "arithmetic's", "output": "⠜⠊⠹â â ‘⠞⠊⠉⠄⠎" }, { "input": "arithmetical", "output": "⠜⠊⠹â â ‘â žâ Šâ ‰â â ‡" }, { "input": "arithmetically", "output": "⠜⠊⠹â â ‘⠞⠊⠉⠠⠽" }, { "input": "arithmetician", "output": "⠜⠊⠹â â ‘⠞⠊⠉⠊â â " }, { "input": "arithmetician's", "output": "⠜⠊⠹â â ‘⠞⠊⠉⠊â â â „â Ž" }, { "input": "arithmeticians", "output": "⠜⠊⠹â â ‘⠞⠊⠉⠊â â â Ž" }, { "input": "ark", "output": "⠜⠅" }, { "input": "ark's", "output": "⠜⠅⠄⠎" }, { "input": "arks", "output": "⠜⠅⠎" }, { "input": "arm", "output": "â œâ " }, { "input": "arm's", "output": "â œâ â „â Ž" }, { "input": "armada", "output": "â œâ â â ™â " }, { "input": "armada's", "output": "â œâ â â ™â â „â Ž" }, { "input": "armadas", "output": "â œâ â â ™â â Ž" }, { "input": "armadillo", "output": "â œâ â â ™â Šâ ‡â ‡â •" }, { "input": "armadillo's", "output": "â œâ â â ™â Šâ ‡â ‡â •â „â Ž" }, { "input": "armadillos", "output": "â œâ â â ™â Šâ ‡â ‡â •â Ž" }, { "input": "armament", "output": "â œâ â â °â ž" }, { "input": "armament's", "output": "â œâ â â °â žâ „â Ž" }, { "input": "armaments", "output": "â œâ â â °â žâ Ž" }, { "input": "armature", "output": "â œâ â â žâ ¥â —â ‘" }, { "input": "armature's", "output": "â œâ â â žâ ¥â —â ‘â „â Ž" }, { "input": "armatures", "output": "â œâ â â žâ ¥â —â ‘â Ž" }, { "input": "armband", "output": "â œâ â ƒâ ¯" }, { "input": "armband's", "output": "â œâ â ƒâ ¯â „â Ž" }, { "input": "armbands", "output": "â œâ â ƒâ ¯â Ž" }, { "input": "armchair", "output": "â œâ â ¡â â Šâ —" }, { "input": "armchair's", "output": "â œâ â ¡â â Šâ —â „â Ž" }, { "input": "armchairs", "output": "â œâ â ¡â â Šâ —â Ž" }, { "input": "armed", "output": "â œâ â «" }, { "input": "armful", "output": "â œâ â °â ‡" }, { "input": "armful's", "output": "â œâ â °â ‡â „â Ž" }, { "input": "armfuls", "output": "â œâ â °â ‡â Ž" }, { "input": "armhole", "output": "â œâ â “⠕⠇⠑" }, { "input": "armhole's", "output": "â œâ â “⠕⠇⠑⠄⠎" }, { "input": "armholes", "output": "â œâ â “⠕⠇⠑⠎" }, { "input": "armies", "output": "â œâ â Šâ ‘â Ž" }, { "input": "arming", "output": "â œâ â Œ" }, { "input": "armistice", "output": "â œâ â Šâ Œâ Šâ ‰â ‘" }, { "input": "armistice's", "output": "â œâ â Šâ Œâ Šâ ‰â ‘â „â Ž" }, { "input": "armistices", "output": "â œâ â Šâ Œâ Šâ ‰â ‘â Ž" }, { "input": "armlet", "output": "â œâ â ‡â ‘â ž" }, { "input": "armlet's", "output": "â œâ â ‡â ‘â žâ „â Ž" }, { "input": "armlets", "output": "â œâ â ‡â ‘â žâ Ž" }, { "input": "armor", "output": "â œâ â •â —" }, { "input": "armor's", "output": "â œâ â •â —â „â Ž" }, { "input": "armored", "output": "â œâ â •â —â «" }, { "input": "armorer", "output": "â œâ â •â —â »" }, { "input": "armorer's", "output": "â œâ â •⠗⠻⠄⠎" }, { "input": "armorers", "output": "â œâ â •⠗⠻⠎" }, { "input": "armorial", "output": "â œâ â •â —â Šâ â ‡" }, { "input": "armories", "output": "â œâ â •â —â Šâ ‘â Ž" }, { "input": "armoring", "output": "â œâ â •â —â Œ" }, { "input": "armors", "output": "â œâ â •â —â Ž" }, { "input": "armory", "output": "â œâ â •â —â ½" }, { "input": "armory's", "output": "â œâ â •⠗⠽⠄⠎" }, { "input": "armpit", "output": "â œâ â â Šâ ž" }, { "input": "armpit's", "output": "â œâ â â Šâ žâ „â Ž" }, { "input": "armpits", "output": "â œâ â â Šâ žâ Ž" }, { "input": "armrest", "output": "â œâ â —â ‘â Œ" }, { "input": "armrest's", "output": "â œâ â —⠑⠌⠄⠎" }, { "input": "armrests", "output": "â œâ â —⠑⠌⠎" }, { "input": "arms", "output": "â œâ â Ž" }, { "input": "army", "output": "â œâ â ½" }, { "input": "army's", "output": "â œâ â ½â „â Ž" }, { "input": "aroma", "output": "⠜⠕â â " }, { "input": "aroma's", "output": "⠜⠕â â â „â Ž" }, { "input": "aromas", "output": "⠜⠕â â â Ž" }, { "input": "aromatherapy", "output": "⠜⠕â â â ®â —â â â ½" }, { "input": "aromatherapy's", "output": "⠜⠕â â â ®â —â â â ½â „â Ž" }, { "input": "aromatic", "output": "⠜⠕â â â žâ Šâ ‰" }, { "input": "aromatic's", "output": "⠜⠕â â â žâ Šâ ‰â „â Ž" }, { "input": "aromatically", "output": "⠜⠕â â â žâ Šâ ‰â  â ½" }, { "input": "aromatics", "output": "⠜⠕â â â žâ Šâ ‰â Ž" }, { "input": "arose", "output": "⠜⠕⠎⠑" }, { "input": "around", "output": "⠜⠨⠙" }, { "input": "arousal", "output": "⠜⠳⠎â â ‡" }, { "input": "arousal's", "output": "⠜⠳⠎â â ‡â „â Ž" }, { "input": "arouse", "output": "⠜⠳⠎⠑" }, { "input": "aroused", "output": "⠜⠳⠎⠫" }, { "input": "arouses", "output": "⠜⠳⠎⠑⠎" }, { "input": "arousing", "output": "⠜⠳⠎⠌" }, { "input": "arpeggio", "output": "â œâ â ‘â ¶â Šâ •" }, { "input": "arpeggio's", "output": "â œâ â ‘â ¶â Šâ •â „â Ž" }, { "input": "arpeggios", "output": "â œâ â ‘â ¶â Šâ •â Ž" }, { "input": "arraign", "output": "⠜⠗â â Šâ ›â " }, { "input": "arraigned", "output": "⠜⠗â â Šâ ›â â «" }, { "input": "arraigning", "output": "⠜⠗â â Šâ ›â â Œ" }, { "input": "arraignment", "output": "⠜⠗â â Šâ ›â â °â ž" }, { "input": "arraignment's", "output": "⠜⠗â â Šâ ›â â °â žâ „â Ž" }, { "input": "arraignments", "output": "⠜⠗â â Šâ ›â â °â žâ Ž" }, { "input": "arraigns", "output": "⠜⠗â â Šâ ›â â Ž" }, { "input": "arrange", "output": "⠜⠗â â â ›â ‘" }, { "input": "arranged", "output": "⠜⠗â â â ›â «" }, { "input": "arrangement", "output": "⠜⠗â â â ›â ‘â °â ž" }, { "input": "arrangement's", "output": "⠜⠗â â â ›â ‘â °â žâ „â Ž" }, { "input": "arrangements", "output": "⠜⠗â â â ›â ‘â °â žâ Ž" }, { "input": "arranger", "output": "⠜⠗â â â ›â »" }, { "input": "arranger's", "output": "⠜⠗â â â ›â »â „â Ž" }, { "input": "arrangers", "output": "⠜⠗â â â ›â »â Ž" }, { "input": "arranges", "output": "⠜⠗â â â ›â ‘â Ž" }, { "input": "arranging", "output": "⠜⠗â â â ›â Œ" }, { "input": "arrant", "output": "⠜⠗â â â ž" }, { "input": "arras", "output": "⠜⠗â â Ž" }, { "input": "arras's", "output": "⠜⠗â â Žâ „â Ž" }, { "input": "arrases", "output": "⠜⠗â â Žâ ‘â Ž" }, { "input": "array", "output": "⠜⠗â â ½" }, { "input": "array's", "output": "⠜⠗â â ½â „â Ž" }, { "input": "arrayed", "output": "⠜⠗â â ½â «" }, { "input": "arraying", "output": "⠜⠗â â ½â Œ" }, { "input": "arrays", "output": "⠜⠗â â ½â Ž" }, { "input": "arrears", "output": "⠜⠗⠑⠜⠎" }, { "input": "arrears's", "output": "⠜⠗⠑⠜⠎⠄⠎" }, { "input": "arrest", "output": "⠜⠗⠑⠌" }, { "input": "arrest's", "output": "⠜⠗⠑⠌⠄⠎" }, { "input": "arrested", "output": "⠜⠗⠑⠌⠫" }, { "input": "arresting", "output": "⠜⠗⠑⠌⠌" }, { "input": "arrests", "output": "⠜⠗⠑⠌⠎" }, { "input": "arrhythmia", "output": "⠜⠗⠓⠽⠹â â Šâ " }, { "input": "arrhythmia's", "output": "⠜⠗⠓⠽⠹â â Šâ â „â Ž" }, { "input": "arrhythmic", "output": "⠜⠗⠓⠽⠹â â Šâ ‰" }, { "input": "arrhythmical", "output": "⠜⠗⠓⠽⠹â â Šâ ‰â â ‡" }, { "input": "arrival", "output": "⠜⠗⠊⠧â â ‡" }, { "input": "arrival's", "output": "⠜⠗⠊⠧â â ‡â „â Ž" }, { "input": "arrivals", "output": "⠜⠗⠊⠧â â ‡â Ž" }, { "input": "arrive", "output": "⠜⠗⠊⠧⠑" }, { "input": "arrived", "output": "⠜⠗⠊⠧⠫" }, { "input": "arrives", "output": "⠜⠗⠊⠧⠑⠎" }, { "input": "arriving", "output": "⠜⠗⠊⠧⠌" }, { "input": "arrogance", "output": "⠜⠗⠕⠛⠨⠑" }, { "input": "arrogance's", "output": "⠜⠗⠕⠛⠨⠑⠄⠎" }, { "input": "arrogant", "output": "⠜⠗⠕⠛â â â ž" }, { "input": "arrogantly", "output": "⠜⠗⠕⠛â â â žâ ‡â ½" }, { "input": "arrogate", "output": "⠜⠗⠕⠛â â žâ ‘" }, { "input": "arrogated", "output": "⠜⠗⠕⠛â â žâ «" }, { "input": "arrogates", "output": "⠜⠗⠕⠛â â žâ ‘â Ž" }, { "input": "arrogating", "output": "⠜⠗⠕⠛â â žâ Œ" }, { "input": "arrogation", "output": "⠜⠗⠕⠛⠠â " }, { "input": "arrogation's", "output": "⠜⠗⠕⠛⠠â â „â Ž" }, { "input": "arrow", "output": "⠜⠗⠪" }, { "input": "arrow's", "output": "⠜⠗⠪⠄⠎" }, { "input": "arrowhead", "output": "⠜⠗⠪⠓⠂⠙" }, { "input": "arrowhead's", "output": "⠜⠗⠪⠓⠂⠙⠄⠎" }, { "input": "arrowheads", "output": "⠜⠗⠪⠓⠂⠙⠎" }, { "input": "arrowroot", "output": "⠜⠗⠪⠗⠕⠕⠞" }, { "input": "arrowroot's", "output": "⠜⠗⠪⠗⠕⠕⠞⠄⠎" }, { "input": "arrows", "output": "⠜⠗⠪⠎" }, { "input": "arroyo", "output": "⠜⠗⠕⠽⠕" }, { "input": "arroyo's", "output": "⠜⠗⠕⠽⠕⠄⠎" }, { "input": "arroyos", "output": "⠜⠗⠕⠽⠕⠎" }, { "input": "arsenal", "output": "⠜⠎⠢â â ‡" }, { "input": "arsenal's", "output": "⠜⠎⠢â â ‡â „â Ž" }, { "input": "arsenals", "output": "⠜⠎⠢â â ‡â Ž" }, { "input": "arsenic", "output": "⠜⠎⠢⠊⠉" }, { "input": "arsenic's", "output": "⠜⠎⠢⠊⠉⠄⠎" }, { "input": "arson", "output": "⠜⠎⠕â " }, { "input": "arson's", "output": "⠜⠎⠕â â „â Ž" }, { "input": "arsonist", "output": "⠜⠎⠕â â Šâ Œ" }, { "input": "arsonist's", "output": "⠜⠎⠕â â Šâ Œâ „â Ž" }, { "input": "arsonists", "output": "⠜⠎⠕â â Šâ Œâ Ž" }, { "input": "art", "output": "⠜⠞" }, { "input": "art's", "output": "⠜⠞⠄⠎" }, { "input": "arterial", "output": "⠜⠞⠻⠊â â ‡" }, { "input": "arteries", "output": "⠜⠞⠻⠊⠑⠎" }, { "input": "arteriole", "output": "⠜⠞⠻⠊⠕⠇⠑" }, { "input": "arteriole's", "output": "⠜⠞⠻⠊⠕⠇⠑⠄⠎" }, { "input": "arterioles", "output": "⠜⠞⠻⠊⠕⠇⠑⠎" }, { "input": "arteriosclerosis", "output": "⠜⠞⠻⠊⠕⠎⠉⠇⠻⠕⠎⠊⠎" }, { "input": "arteriosclerosis's", "output": "⠜⠞⠻⠊⠕⠎⠉⠇⠻⠕⠎⠊⠎⠄⠎" }, { "input": "artery", "output": "⠜⠞⠻⠽" }, { "input": "artery's", "output": "⠜⠞⠻⠽⠄⠎" }, { "input": "artful", "output": "⠜⠞⠰⠇" }, { "input": "artfully", "output": "⠜⠞⠰⠇⠇⠽" }, { "input": "artfulness", "output": "⠜⠞⠰⠇⠰⠎" }, { "input": "artfulness's", "output": "⠜⠞⠰⠇⠰⠎⠄⠎" }, { "input": "arthritic", "output": "⠜⠹⠗⠊⠞⠊⠉" }, { "input": "arthritic's", "output": "⠜⠹⠗⠊⠞⠊⠉⠄⠎" }, { "input": "arthritics", "output": "⠜⠹⠗⠊⠞⠊⠉⠎" }, { "input": "arthritis", "output": "⠜⠹⠗⠊⠞⠊⠎" }, { "input": "arthritis's", "output": "⠜⠹⠗⠊⠞⠊⠎⠄⠎" }, { "input": "arthropod", "output": "⠜⠹⠗⠕â â •â ™" }, { "input": "arthropod's", "output": "⠜⠹⠗⠕â â •⠙⠄⠎" }, { "input": "arthropods", "output": "⠜⠹⠗⠕â â •⠙⠎" }, { "input": "arthroscope", "output": "⠜⠹⠗⠕⠎⠉⠕â â ‘" }, { "input": "arthroscope's", "output": "⠜⠹⠗⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "arthroscopes", "output": "⠜⠹⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "arthroscopic", "output": "⠜⠹⠗⠕⠎⠉⠕â â Šâ ‰" }, { "input": "artichoke", "output": "⠜⠞⠊⠡⠕⠅⠑" }, { "input": "artichoke's", "output": "⠜⠞⠊⠡⠕⠅⠑⠄⠎" }, { "input": "artichokes", "output": "⠜⠞⠊⠡⠕⠅⠑⠎" }, { "input": "article", "output": "⠜⠞⠊⠉⠇⠑" }, { "input": "article's", "output": "⠜⠞⠊⠉⠇⠑⠄⠎" }, { "input": "articles", "output": "⠜⠞⠊⠉⠇⠑⠎" }, { "input": "articular", "output": "⠜⠞⠊⠉⠥⠇⠜" }, { "input": "articulate", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘" }, { "input": "articulated", "output": "⠜⠞⠊⠉⠥⠇â â žâ «" }, { "input": "articulately", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘⠇⠽" }, { "input": "articulateness", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘â °â Ž" }, { "input": "articulateness's", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘â °â Žâ „â Ž" }, { "input": "articulates", "output": "⠜⠞⠊⠉⠥⠇â â žâ ‘â Ž" }, { "input": "articulating", "output": "⠜⠞⠊⠉⠥⠇â â žâ Œ" }, { "input": "articulation", "output": "⠜⠞⠊⠉⠥⠇⠠â " }, { "input": "articulation's", "output": "⠜⠞⠊⠉⠥⠇⠠â â „â Ž" }, { "input": "articulations", "output": "⠜⠞⠊⠉⠥⠇⠠â â Ž" }, { "input": "artier", "output": "⠜⠞⠊⠻" }, { "input": "artiest", "output": "⠜⠞⠊⠑⠌" }, { "input": "artifact", "output": "⠜⠞⠊⠋â â ‰â ž" }, { "input": "artifact's", "output": "⠜⠞⠊⠋â â ‰â žâ „â Ž" }, { "input": "artifacts", "output": "⠜⠞⠊⠋â â ‰â žâ Ž" }, { "input": "artifice", "output": "⠜⠞⠊⠋⠊⠉⠑" }, { "input": "artifice's", "output": "⠜⠞⠊⠋⠊⠉⠑⠄⠎" }, { "input": "artificer", "output": "⠜⠞⠊⠋⠊⠉⠻" }, { "input": "artificer's", "output": "⠜⠞⠊⠋⠊⠉⠻⠄⠎" }, { "input": "artificers", "output": "⠜⠞⠊⠋⠊⠉⠻⠎" }, { "input": "artifices", "output": "⠜⠞⠊⠋⠊⠉⠑⠎" }, { "input": "artificial", "output": "⠜⠞⠊⠋⠊⠉⠊â â ‡" }, { "input": "artificiality", "output": "⠜⠞⠊⠋⠊⠉⠊â â ‡â °â ½" }, { "input": "artificiality's", "output": "⠜⠞⠊⠋⠊⠉⠊â â ‡â °â ½â „â Ž" }, { "input": "artificially", "output": "⠜⠞⠊⠋⠊⠉⠊⠠⠽" }, { "input": "artillery", "output": "⠜⠞⠊⠇⠇⠻⠽" }, { "input": "artillery's", "output": "⠜⠞⠊⠇⠇⠻⠽⠄⠎" }, { "input": "artilleryman", "output": "⠜⠞⠊⠇⠇⠻⠽â â â " }, { "input": "artilleryman's", "output": "⠜⠞⠊⠇⠇⠻⠽â â â â „â Ž" }, { "input": "artillerymen", "output": "⠜⠞⠊⠇⠇⠻⠽â â ¢" }, { "input": "artiness", "output": "⠜⠞⠊⠰⠎" }, { "input": "artiness's", "output": "⠜⠞⠊⠰⠎⠄⠎" }, { "input": "artisan", "output": "⠜⠞⠊⠎â â " }, { "input": "artisan's", "output": "⠜⠞⠊⠎â â â „â Ž" }, { "input": "artisans", "output": "⠜⠞⠊⠎â â â Ž" }, { "input": "artist", "output": "⠜⠞⠊⠌" }, { "input": "artist's", "output": "⠜⠞⠊⠌⠄⠎" }, { "input": "artiste", "output": "⠜⠞⠊⠌⠑" }, { "input": "artiste's", "output": "⠜⠞⠊⠌⠑⠄⠎" }, { "input": "artistes", "output": "⠜⠞⠊⠌⠑⠎" }, { "input": "artistic", "output": "⠜⠞⠊⠌⠊⠉" }, { "input": "artistically", "output": "⠜⠞⠊⠌⠊⠉⠠⠽" }, { "input": "artistry", "output": "⠜⠞⠊⠌⠗⠽" }, { "input": "artistry's", "output": "⠜⠞⠊⠌⠗⠽⠄⠎" }, { "input": "artists", "output": "⠜⠞⠊⠌⠎" }, { "input": "artless", "output": "⠜⠞⠨⠎" }, { "input": "artlessly", "output": "⠜⠞⠨⠎⠇⠽" }, { "input": "artlessness", "output": "⠜⠞⠨⠎⠰⠎" }, { "input": "artlessness's", "output": "⠜⠞⠨⠎⠰⠎⠄⠎" }, { "input": "arts", "output": "⠜⠞⠎" }, { "input": "artsier", "output": "⠜⠞⠎⠊⠻" }, { "input": "artsiest", "output": "⠜⠞⠎⠊⠑⠌" }, { "input": "artsy", "output": "⠜⠞⠎⠽" }, { "input": "artwork", "output": "⠜⠞â â º" }, { "input": "artwork's", "output": "⠜⠞â â ºâ „â Ž" }, { "input": "artworks", "output": "⠜⠞â â ºâ Ž" }, { "input": "arty", "output": "⠜⠞⠽" }, { "input": "arum", "output": "⠜⠥â " }, { "input": "arum's", "output": "⠜⠥â â „â Ž" }, { "input": "arums", "output": "⠜⠥â â Ž" }, { "input": "as", "output": "â µ" }, { "input": "asap", "output": "â â Žâ â " }, { "input": "asbestos", "output": "â â Žâ ƒâ ‘⠌⠕⠎" }, { "input": "asbestos's", "output": "â â Žâ ƒâ ‘⠌⠕⠎⠄⠎" }, { "input": "ascend", "output": "â â Žâ ‰â ¢â ™" }, { "input": "ascendance", "output": "â â Žâ ‰â ¢â ™â ¨â ‘" }, { "input": "ascendance's", "output": "â â Žâ ‰â ¢â ™â ¨â ‘â „â Ž" }, { "input": "ascendancy", "output": "â â Žâ ‰â ¢â ™â â â ‰â ½" }, { "input": "ascendancy's", "output": "â â Žâ ‰â ¢â ™â â â ‰â ½â „â Ž" }, { "input": "ascendant", "output": "â â Žâ ‰â ¢â ™â â â ž" }, { "input": "ascendant's", "output": "â â Žâ ‰â ¢â ™â â â žâ „â Ž" }, { "input": "ascendants", "output": "â â Žâ ‰â ¢â ™â â â žâ Ž" }, { "input": "ascended", "output": "â â Žâ ‰â ¢â ™â «" }, { "input": "ascending", "output": "â â Žâ ‰â ¢â ™â Œ" }, { "input": "ascends", "output": "â â Žâ ‰â ¢â ™â Ž" }, { "input": "ascension", "output": "â â Žâ ‰â ¢â ¨â " }, { "input": "ascension's", "output": "â â Žâ ‰â ¢â ¨â â „â Ž" }, { "input": "ascensions", "output": "â â Žâ ‰â ¢â ¨â â Ž" }, { "input": "ascent", "output": "â â Žâ ‰â ¢â ž" }, { "input": "ascent's", "output": "â â Žâ ‰â ¢â žâ „â Ž" }, { "input": "ascents", "output": "â â Žâ ‰â ¢â žâ Ž" }, { "input": "ascertain", "output": "â â Žâ ‰â »â žâ â ”" }, { "input": "ascertainable", "output": "â â Žâ ‰â »â žâ â ”â â ¼" }, { "input": "ascertained", "output": "â â Žâ ‰â »â žâ â ”â «" }, { "input": "ascertaining", "output": "â â Žâ ‰â »â žâ â ”â Œ" }, { "input": "ascertainment", "output": "â â Žâ ‰â »â žâ â ”â °â ž" }, { "input": "ascertainment's", "output": "â â Žâ ‰â »â žâ â ”â °â žâ „â Ž" }, { "input": "ascertains", "output": "â â Žâ ‰â »â žâ â ”â Ž" }, { "input": "ascetic", "output": "â â Žâ ‰â ‘â žâ Šâ ‰" }, { "input": "ascetic's", "output": "â â Žâ ‰â ‘⠞⠊⠉⠄⠎" }, { "input": "asceticism", "output": "â â Žâ ‰â ‘⠞⠊⠉⠊⠎â " }, { "input": "asceticism's", "output": "â â Žâ ‰â ‘⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "ascetics", "output": "â â Žâ ‰â ‘⠞⠊⠉⠎" }, { "input": "ascot", "output": "â â Žâ ‰â •â ž" }, { "input": "ascot's", "output": "â â Žâ ‰â •â žâ „â Ž" }, { "input": "ascots", "output": "â â Žâ ‰â •â žâ Ž" }, { "input": "ascribable", "output": "â â Žâ ‰â —â Šâ ƒâ â ¼" }, { "input": "ascribe", "output": "â â Žâ ‰â —⠊⠃⠑" }, { "input": "ascribed", "output": "â â Žâ ‰â —⠊⠃⠫" }, { "input": "ascribes", "output": "â â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "ascribing", "output": "â â Žâ ‰â —⠊⠃⠌" }, { "input": "ascription", "output": "â â Žâ ‰â —â Šâ â °â " }, { "input": "ascription's", "output": "â â Žâ ‰â —â Šâ â °â â „â Ž" }, { "input": "aseptic", "output": "â â Žâ ‘â â žâ Šâ ‰" }, { "input": "aseptically", "output": "â â Žâ ‘â â žâ Šâ ‰â  â ½" }, { "input": "asexual", "output": "â â Žâ ‘â ­â ¥â â ‡" }, { "input": "asexuality", "output": "â â Žâ ‘â ­â ¥â â ‡â °â ½" }, { "input": "asexuality's", "output": "â â Žâ ‘â ­â ¥â â ‡â °â ½â „â Ž" }, { "input": "asexually", "output": "â â Žâ ‘⠭⠥⠠⠽" }, { "input": "ash", "output": "â â ©" }, { "input": "ash's", "output": "â â ©â „â Ž" }, { "input": "ashamed", "output": "â â ©â â â «" }, { "input": "ashamedly", "output": "â â ©â â â «â ‡â ½" }, { "input": "ashcan", "output": "â â ©â ‰â â " }, { "input": "ashcan's", "output": "â â ©â ‰â â â „â Ž" }, { "input": "ashcans", "output": "â â ©â ‰â â â Ž" }, { "input": "ashed", "output": "â â ©â «" }, { "input": "ashen", "output": "â â ©â ¢" }, { "input": "ashes", "output": "â â ©â ‘â Ž" }, { "input": "ashier", "output": "â â ©â Šâ »" }, { "input": "ashiest", "output": "â â ©â Šâ ‘â Œ" }, { "input": "ashing", "output": "â â ©â Œ" }, { "input": "ashlar", "output": "â â ©â ‡â œ" }, { "input": "ashlar's", "output": "â â ©â ‡â œâ „â Ž" }, { "input": "ashlars", "output": "â â ©â ‡â œâ Ž" }, { "input": "ashore", "output": "â â ©â •â —â ‘" }, { "input": "ashram", "output": "â â ©â —â â " }, { "input": "ashram's", "output": "â â ©â —â â â „â Ž" }, { "input": "ashrams", "output": "â â ©â —â â â Ž" }, { "input": "ashtray", "output": "â â ©â žâ —â â ½" }, { "input": "ashtray's", "output": "â â ©â žâ —â â ½â „â Ž" }, { "input": "ashtrays", "output": "â â ©â žâ —â â ½â Ž" }, { "input": "ashy", "output": "â â ©â ½" }, { "input": "aside", "output": "â â Žâ Šâ ™â ‘" }, { "input": "aside's", "output": "â â Žâ Šâ ™â ‘â „â Ž" }, { "input": "asides", "output": "â â Žâ Šâ ™â ‘â Ž" }, { "input": "asinine", "output": "â â Žâ ”⠔⠑" }, { "input": "asininely", "output": "â â Žâ ”⠔⠑⠇⠽" }, { "input": "asininities", "output": "â â Žâ ”⠔⠊⠞⠊⠑⠎" }, { "input": "asininity", "output": "â â Žâ ”⠔⠰⠽" }, { "input": "asininity's", "output": "â â Žâ ”⠔⠰⠽⠄⠎" }, { "input": "ask", "output": "â â Žâ …" }, { "input": "askance", "output": "â â Žâ …⠨⠑" }, { "input": "asked", "output": "â â Žâ …â «" }, { "input": "askew", "output": "â â Žâ …â ‘â º" }, { "input": "asking", "output": "â â Žâ …â Œ" }, { "input": "asks", "output": "â â Žâ …â Ž" }, { "input": "aslant", "output": "â â Žâ ‡â â â ž" }, { "input": "asleep", "output": "â â Žâ ‡â ‘â ‘â " }, { "input": "asocial", "output": "â â Žâ •⠉⠊â â ‡" }, { "input": "asp", "output": "â â Žâ " }, { "input": "asp's", "output": "â â Žâ â „â Ž" }, { "input": "asparagus", "output": "â â Žâ â œâ â ›â ¥â Ž" }, { "input": "asparagus's", "output": "â â Žâ â œâ â ›â ¥â Žâ „â Ž" }, { "input": "aspartame", "output": "â â Žâ â œâ žâ â â ‘" }, { "input": "aspartame's", "output": "â â Žâ â œâ žâ â â ‘â „â Ž" }, { "input": "aspect", "output": "â â Žâ â ‘⠉⠞" }, { "input": "aspect's", "output": "â â Žâ â ‘⠉⠞⠄⠎" }, { "input": "aspects", "output": "â â Žâ â ‘⠉⠞⠎" }, { "input": "aspen", "output": "â â Žâ â ¢" }, { "input": "aspen's", "output": "â â Žâ â ¢â „â Ž" }, { "input": "aspens", "output": "â â Žâ â ¢â Ž" }, { "input": "asperities", "output": "â â Žâ â »â Šâ žâ Šâ ‘â Ž" }, { "input": "asperity", "output": "â â Žâ â »â °â ½" }, { "input": "asperity's", "output": "â â Žâ â »â °â ½â „â Ž" }, { "input": "aspersion", "output": "â â Žâ â »â ¨â " }, { "input": "aspersion's", "output": "â â Žâ â »â ¨â â „â Ž" }, { "input": "aspersions", "output": "â â Žâ â »â ¨â â Ž" }, { "input": "asphalt", "output": "â â Žâ â “â â ‡â ž" }, { "input": "asphalt's", "output": "â â Žâ â “â â ‡â žâ „â Ž" }, { "input": "asphalted", "output": "â â Žâ â “â â ‡â žâ «" }, { "input": "asphalting", "output": "â â Žâ â “â â ‡â žâ Œ" }, { "input": "asphalts", "output": "â â Žâ â “â â ‡â žâ Ž" }, { "input": "asphodel", "output": "â â Žâ â “⠕⠙⠑⠇" }, { "input": "asphodel's", "output": "â â Žâ â “⠕⠙⠑⠇⠄⠎" }, { "input": "asphodels", "output": "â â Žâ â “⠕⠙⠑⠇⠎" }, { "input": "asphyxia", "output": "â â Žâ â “⠽⠭⠊â " }, { "input": "asphyxia's", "output": "â â Žâ â “⠽⠭⠊â â „â Ž" }, { "input": "asphyxiate", "output": "â â Žâ â “⠽⠭⠊â â žâ ‘" }, { "input": "asphyxiated", "output": "â â Žâ â “⠽⠭⠊â â žâ «" }, { "input": "asphyxiates", "output": "â â Žâ â “⠽⠭⠊â â žâ ‘â Ž" }, { "input": "asphyxiating", "output": "â â Žâ â “⠽⠭⠊â â žâ Œ" }, { "input": "asphyxiation", "output": "â â Žâ â “⠽⠭⠊⠠â " }, { "input": "asphyxiation's", "output": "â â Žâ â “⠽⠭⠊⠠â â „â Ž" }, { "input": "asphyxiations", "output": "â â Žâ â “⠽⠭⠊⠠â â Ž" }, { "input": "aspic", "output": "â â Žâ â Šâ ‰" }, { "input": "aspic's", "output": "â â Žâ â Šâ ‰â „â Ž" }, { "input": "aspics", "output": "â â Žâ â Šâ ‰â Ž" }, { "input": "aspirant", "output": "â â Žâ â Šâ —â â â ž" }, { "input": "aspirant's", "output": "â â Žâ â Šâ —â â â žâ „â Ž" }, { "input": "aspirants", "output": "â â Žâ â Šâ —â â â žâ Ž" }, { "input": "aspirate", "output": "â â Žâ â Šâ —â â žâ ‘" }, { "input": "aspirate's", "output": "â â Žâ â Šâ —â â žâ ‘â „â Ž" }, { "input": "aspirated", "output": "â â Žâ â Šâ —â â žâ «" }, { "input": "aspirates", "output": "â â Žâ â Šâ —â â žâ ‘â Ž" }, { "input": "aspirating", "output": "â â Žâ â Šâ —â â žâ Œ" }, { "input": "aspiration", "output": "â â Žâ â Šâ —â  â " }, { "input": "aspiration's", "output": "â â Žâ â Šâ —â  â â „â Ž" }, { "input": "aspirations", "output": "â â Žâ â Šâ —â  â â Ž" }, { "input": "aspirator", "output": "â â Žâ â Šâ —â â žâ •â —" }, { "input": "aspirator's", "output": "â â Žâ â Šâ —â â žâ •â —â „â Ž" }, { "input": "aspirators", "output": "â â Žâ â Šâ —â â žâ •â —â Ž" }, { "input": "aspire", "output": "â â Žâ â Šâ —â ‘" }, { "input": "aspired", "output": "â â Žâ â Šâ —â «" }, { "input": "aspires", "output": "â â Žâ â Šâ —â ‘â Ž" }, { "input": "aspirin", "output": "â â Žâ â Šâ —â ”" }, { "input": "aspirin's", "output": "â â Žâ â Šâ —⠔⠄⠎" }, { "input": "aspiring", "output": "â â Žâ â Šâ —â Œ" }, { "input": "aspirins", "output": "â â Žâ â Šâ —⠔⠎" }, { "input": "asps", "output": "â â Žâ â Ž" }, { "input": "ass", "output": "â â Žâ Ž" }, { "input": "ass's", "output": "â â Žâ Žâ „â Ž" }, { "input": "assail", "output": "â â Žâ Žâ â Šâ ‡" }, { "input": "assailable", "output": "â â Žâ Žâ â Šâ ‡â â ¼" }, { "input": "assailant", "output": "â â Žâ Žâ â Šâ ‡â â â ž" }, { "input": "assailant's", "output": "â â Žâ Žâ â Šâ ‡â â â žâ „â Ž" }, { "input": "assailants", "output": "â â Žâ Žâ â Šâ ‡â â â žâ Ž" }, { "input": "assailed", "output": "â â Žâ Žâ â Šâ ‡â «" }, { "input": "assailing", "output": "â â Žâ Žâ â Šâ ‡â Œ" }, { "input": "assails", "output": "â â Žâ Žâ â Šâ ‡â Ž" }, { "input": "assassin", "output": "â â Žâ Žâ â Žâ Žâ ”" }, { "input": "assassin's", "output": "â â Žâ Žâ â Žâ Žâ ”â „â Ž" }, { "input": "assassinate", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ ‘" }, { "input": "assassinated", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ «" }, { "input": "assassinates", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ ‘â Ž" }, { "input": "assassinating", "output": "â â Žâ Žâ â Žâ Žâ ”â â žâ Œ" }, { "input": "assassination", "output": "â â Žâ Žâ â Žâ Žâ ”â  â " }, { "input": "assassination's", "output": "â â Žâ Žâ â Žâ Žâ ”â  â â „â Ž" }, { "input": "assassinations", "output": "â â Žâ Žâ â Žâ Žâ ”â  â â Ž" }, { "input": "assassins", "output": "â â Žâ Žâ â Žâ Žâ ”â Ž" }, { "input": "assault", "output": "â â Žâ Žâ â ¥â ‡â ž" }, { "input": "assault's", "output": "â â Žâ Žâ â ¥â ‡â žâ „â Ž" }, { "input": "assaulted", "output": "â â Žâ Žâ â ¥â ‡â žâ «" }, { "input": "assaulter", "output": "â â Žâ Žâ â ¥â ‡â žâ »" }, { "input": "assaulting", "output": "â â Žâ Žâ â ¥â ‡â žâ Œ" }, { "input": "assaults", "output": "â â Žâ Žâ â ¥â ‡â žâ Ž" }, { "input": "assay", "output": "â â Žâ Žâ â ½" }, { "input": "assay's", "output": "â â Žâ Žâ â ½â „â Ž" }, { "input": "assayed", "output": "â â Žâ Žâ â ½â «" }, { "input": "assayer", "output": "â â Žâ Žâ â ½â »" }, { "input": "assayer's", "output": "â â Žâ Žâ â ½â »â „â Ž" }, { "input": "assayers", "output": "â â Žâ Žâ â ½â »â Ž" }, { "input": "assaying", "output": "â â Žâ Žâ â ½â Œ" }, { "input": "assays", "output": "â â Žâ Žâ â ½â Ž" }, { "input": "assemblage", "output": "â â Žâ Žâ ‘â â ƒâ ‡â â ›â ‘" }, { "input": "assemblage's", "output": "â â Žâ Žâ ‘â â ƒâ ‡â â ›â ‘â „â Ž" }, { "input": "assemblages", "output": "â â Žâ Žâ ‘â â ƒâ ‡â â ›â ‘â Ž" }, { "input": "assemble", "output": "â â Žâ Žâ ‘â â ¼" }, { "input": "assembled", "output": "â â Žâ Žâ ‘â â ¼â ™" }, { "input": "assembler", "output": "â â Žâ Žâ ‘â â ¼â —" }, { "input": "assembler's", "output": "â â Žâ Žâ ‘â â ¼â —â „â Ž" }, { "input": "assemblers", "output": "â â Žâ Žâ ‘â â ¼â —â Ž" }, { "input": "assembles", "output": "â â Žâ Žâ ‘â â ¼â Ž" }, { "input": "assemblies", "output": "â â Žâ Žâ ‘â â ƒâ ‡â Šâ ‘â Ž" }, { "input": "assembling", "output": "â â Žâ Žâ ‘â â ƒâ ‡â Œ" }, { "input": "assembly", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½" }, { "input": "assembly's", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â „â Ž" }, { "input": "assemblyman", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â â â " }, { "input": "assemblyman's", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â â â â „â Ž" }, { "input": "assemblymen", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â â ¢" }, { "input": "assemblywoman", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â ºâ •â â â " }, { "input": "assemblywoman's", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â ºâ •â â â â „â Ž" }, { "input": "assemblywomen", "output": "â â Žâ Žâ ‘â â ƒâ ‡â ½â ºâ •â â ¢" }, { "input": "assent", "output": "â â Žâ Žâ ¢â ž" }, { "input": "assent's", "output": "â â Žâ Žâ ¢â žâ „â Ž" }, { "input": "assented", "output": "â â Žâ Žâ ¢â žâ «" }, { "input": "assenting", "output": "â â Žâ Žâ ¢â žâ Œ" }, { "input": "assents", "output": "â â Žâ Žâ ¢â žâ Ž" }, { "input": "assert", "output": "â â Žâ Žâ »â ž" }, { "input": "asserted", "output": "â â Žâ Žâ »â žâ «" }, { "input": "asserting", "output": "â â Žâ Žâ »â žâ Œ" }, { "input": "assertion", "output": "â â Žâ Žâ »â °â " }, { "input": "assertion's", "output": "â â Žâ Žâ »â °â â „â Ž" }, { "input": "assertions", "output": "â â Žâ Žâ »â °â â Ž" }, { "input": "assertive", "output": "â â Žâ Žâ »â žâ Šâ §â ‘" }, { "input": "assertively", "output": "â â Žâ Žâ »â žâ Šâ §â ‘⠇⠽" }, { "input": "assertiveness", "output": "â â Žâ Žâ »â žâ Šâ §â ‘â °â Ž" }, { "input": "assertiveness's", "output": "â â Žâ Žâ »â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "asserts", "output": "â â Žâ Žâ »â žâ Ž" }, { "input": "asses", "output": "â â Žâ Žâ ‘â Ž" }, { "input": "assess", "output": "â â Žâ Žâ ‘â Žâ Ž" }, { "input": "assessed", "output": "â â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "assesses", "output": "â â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "assessing", "output": "â â Žâ Žâ ‘â Žâ Žâ Œ" }, { "input": "assessment", "output": "â â Žâ Žâ ‘â Žâ Žâ °â ž" }, { "input": "assessment's", "output": "â â Žâ Žâ ‘â Žâ Žâ °â žâ „â Ž" }, { "input": "assessments", "output": "â â Žâ Žâ ‘â Žâ Žâ °â žâ Ž" }, { "input": "assessor", "output": "â â Žâ Žâ ‘â Žâ Žâ •â —" }, { "input": "assessor's", "output": "â â Žâ Žâ ‘â Žâ Žâ •â —â „â Ž" }, { "input": "assessors", "output": "â â Žâ Žâ ‘â Žâ Žâ •â —â Ž" }, { "input": "asset", "output": "â â Žâ Žâ ‘â ž" }, { "input": "asset's", "output": "â â Žâ Žâ ‘â žâ „â Ž" }, { "input": "assets", "output": "â â Žâ Žâ ‘â žâ Ž" }, { "input": "asseverate", "output": "â â Žâ Žâ â ‘â â žâ ‘" }, { "input": "asseverated", "output": "â â Žâ Žâ â ‘â â žâ «" }, { "input": "asseverates", "output": "â â Žâ Žâ â ‘â â žâ ‘â Ž" }, { "input": "asseverating", "output": "â â Žâ Žâ â ‘â â žâ Œ" }, { "input": "asseveration", "output": "â â Žâ Žâ â ‘â  â " }, { "input": "asseveration's", "output": "â â Žâ Žâ â ‘â  â â „â Ž" }, { "input": "asshole", "output": "â â Žâ Žâ “⠕⠇⠑" }, { "input": "asshole's", "output": "â â Žâ Žâ “⠕⠇⠑⠄⠎" }, { "input": "assholes", "output": "â â Žâ Žâ “⠕⠇⠑⠎" }, { "input": "assiduity's", "output": "â â Žâ Žâ Šâ ™â ¥â °â ½â „â Ž" }, { "input": "assiduous", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Ž" }, { "input": "assiduously", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Žâ ‡â ½" }, { "input": "assiduousness", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Žâ °â Ž" }, { "input": "assiduousness's", "output": "â â Žâ Žâ Šâ ™â ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "assign", "output": "â â Žâ Žâ Šâ ›â " }, { "input": "assign's", "output": "â â Žâ Žâ Šâ ›â â „â Ž" }, { "input": "assignable", "output": "â â Žâ Žâ Šâ ›â â â ¼" }, { "input": "assignation", "output": "â â Žâ Žâ Šâ ›â â  â " }, { "input": "assignation's", "output": "â â Žâ Žâ Šâ ›â â  â â „â Ž" }, { "input": "assignations", "output": "â â Žâ Žâ Šâ ›â â  â â Ž" }, { "input": "assigned", "output": "â â Žâ Žâ Šâ ›â â «" }, { "input": "assigner", "output": "â â Žâ Žâ Šâ ›â â »" }, { "input": "assigner's", "output": "â â Žâ Žâ Šâ ›â â »â „â Ž" }, { "input": "assigners", "output": "â â Žâ Žâ Šâ ›â â »â Ž" }, { "input": "assigning", "output": "â â Žâ Žâ Šâ ›â â Œ" }, { "input": "assignment", "output": "â â Žâ Žâ Šâ ›â â °â ž" }, { "input": "assignment's", "output": "â â Žâ Žâ Šâ ›â â °â žâ „â Ž" }, { "input": "assignments", "output": "â â Žâ Žâ Šâ ›â â °â žâ Ž" }, { "input": "assignor", "output": "â â Žâ Žâ Šâ ›â â •â —" }, { "input": "assignor's", "output": "â â Žâ Žâ Šâ ›â â •â —â „â Ž" }, { "input": "assignors", "output": "â â Žâ Žâ Šâ ›â â •â —â Ž" }, { "input": "assigns", "output": "â â Žâ Žâ Šâ ›â â Ž" }, { "input": "assimilate", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ ‘" }, { "input": "assimilated", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ «" }, { "input": "assimilates", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ ‘â Ž" }, { "input": "assimilating", "output": "â â Žâ Žâ Šâ â Šâ ‡â â žâ Œ" }, { "input": "assimilation", "output": "â â Žâ Žâ Šâ â Šâ ‡â  â " }, { "input": "assimilation's", "output": "â â Žâ Žâ Šâ â Šâ ‡â  â â „â Ž" }, { "input": "assist", "output": "â â Žâ Žâ Šâ Œ" }, { "input": "assist's", "output": "â â Žâ Žâ Šâ Œâ „â Ž" }, { "input": "assistance", "output": "â â Žâ Žâ Šâ Œâ ¨â ‘" }, { "input": "assistance's", "output": "â â Žâ Žâ Šâ Œâ ¨â ‘â „â Ž" }, { "input": "assistant", "output": "â â Žâ Žâ Šâ Œâ â â ž" }, { "input": "assistant's", "output": "â â Žâ Žâ Šâ Œâ â â žâ „â Ž" }, { "input": "assistants", "output": "â â Žâ Žâ Šâ Œâ â â žâ Ž" }, { "input": "assisted", "output": "â â Žâ Žâ Šâ Œâ «" }, { "input": "assisting", "output": "â â Žâ Žâ Šâ Œâ Œ" }, { "input": "assists", "output": "â â Žâ Žâ Šâ Œâ Ž" }, { "input": "assize", "output": "â â Žâ Žâ Šâ µâ ‘" }, { "input": "assize's", "output": "â â Žâ Žâ Šâ µâ ‘â „â Ž" }, { "input": "assizes", "output": "â â Žâ Žâ Šâ µâ ‘â Ž" }, { "input": "associate", "output": "â â Žâ Žâ •⠉⠊â â žâ ‘" }, { "input": "associate's", "output": "â â Žâ Žâ •⠉⠊â â žâ ‘â „â Ž" }, { "input": "associated", "output": "â â Žâ Žâ •⠉⠊â â žâ «" }, { "input": "associates", "output": "â â Žâ Žâ •⠉⠊â â žâ ‘â Ž" }, { "input": "associating", "output": "â â Žâ Žâ •⠉⠊â â žâ Œ" }, { "input": "association", "output": "â â Žâ Žâ •⠉⠊⠠â " }, { "input": "association's", "output": "â â Žâ Žâ •⠉⠊⠠â â „â Ž" }, { "input": "associations", "output": "â â Žâ Žâ •⠉⠊⠠â â Ž" }, { "input": "associative", "output": "â â Žâ Žâ •⠉⠊â â žâ Šâ §â ‘" }, { "input": "assonance", "output": "â â Žâ Žâ •â â ¨â ‘" }, { "input": "assonance's", "output": "â â Žâ Žâ •â â ¨â ‘â „â Ž" }, { "input": "assonant", "output": "â â Žâ Žâ •â â â â ž" }, { "input": "assonant's", "output": "â â Žâ Žâ •â â â â žâ „â Ž" }, { "input": "assonants", "output": "â â Žâ Žâ •â â â â žâ Ž" }, { "input": "assort", "output": "â â Žâ Žâ •â —â ž" }, { "input": "assorted", "output": "â â Žâ Žâ •â —â žâ «" }, { "input": "assorting", "output": "â â Žâ Žâ •â —â žâ Œ" }, { "input": "assortment", "output": "â â Žâ Žâ •â —â žâ °â ž" }, { "input": "assortment's", "output": "â â Žâ Žâ •â —â žâ °â žâ „â Ž" }, { "input": "assortments", "output": "â â Žâ Žâ •â —â žâ °â žâ Ž" }, { "input": "assorts", "output": "â â Žâ Žâ •â —â žâ Ž" }, { "input": "assuage", "output": "â â Žâ Žâ ¥â â ›â ‘" }, { "input": "assuaged", "output": "â â Žâ Žâ ¥â â ›â «" }, { "input": "assuages", "output": "â â Žâ Žâ ¥â â ›â ‘â Ž" }, { "input": "assuaging", "output": "â â Žâ Žâ ¥â â ›â Œ" }, { "input": "assumable", "output": "â â Žâ Žâ ¥â â â ¼" }, { "input": "assume", "output": "â â Žâ Žâ ¥â â ‘" }, { "input": "assumed", "output": "â â Žâ Žâ ¥â â «" }, { "input": "assumes", "output": "â â Žâ Žâ ¥â â ‘â Ž" }, { "input": "assuming", "output": "â â Žâ Žâ ¥â â Œ" }, { "input": "assumption", "output": "â â Žâ Žâ ¥â â â °â " }, { "input": "assumption's", "output": "â â Žâ Žâ ¥â â â °â â „â Ž" }, { "input": "assumptions", "output": "â â Žâ Žâ ¥â â â °â â Ž" }, { "input": "assumptive", "output": "â â Žâ Žâ ¥â â â žâ Šâ §â ‘" }, { "input": "assurance", "output": "â â Žâ Žâ ¥â —⠨⠑" }, { "input": "assurance's", "output": "â â Žâ Žâ ¥â —⠨⠑⠄⠎" }, { "input": "assurances", "output": "â â Žâ Žâ ¥â —⠨⠑⠎" }, { "input": "assure", "output": "â â Žâ Žâ ¥â —â ‘" }, { "input": "assured", "output": "â â Žâ Žâ ¥â —â «" }, { "input": "assured's", "output": "â â Žâ Žâ ¥â —â «â „â Ž" }, { "input": "assuredly", "output": "â â Žâ Žâ ¥â —⠫⠇⠽" }, { "input": "assureds", "output": "â â Žâ Žâ ¥â —â «â Ž" }, { "input": "assures", "output": "â â Žâ Žâ ¥â —â ‘â Ž" }, { "input": "assuring", "output": "â â Žâ Žâ ¥â —â Œ" }, { "input": "astatine", "output": "â â Œâ â žâ ”â ‘" }, { "input": "astatine's", "output": "â â Œâ â žâ ”â ‘â „â Ž" }, { "input": "aster", "output": "â â Œâ »" }, { "input": "aster's", "output": "â â Œâ »â „â Ž" }, { "input": "asterisk", "output": "â â Œâ »â Šâ Žâ …" }, { "input": "asterisk's", "output": "â â Œâ »â Šâ Žâ …â „â Ž" }, { "input": "asterisked", "output": "â â Œâ »â Šâ Žâ …â «" }, { "input": "asterisking", "output": "â â Œâ »â Šâ Žâ …â Œ" }, { "input": "asterisks", "output": "â â Œâ »â Šâ Žâ …â Ž" }, { "input": "astern", "output": "â â Œâ »â " }, { "input": "asteroid", "output": "â â Œâ »â •â Šâ ™" }, { "input": "asteroid's", "output": "â â Œâ »â •⠊⠙⠄⠎" }, { "input": "asteroids", "output": "â â Œâ »â •⠊⠙⠎" }, { "input": "asters", "output": "â â Œâ »â Ž" }, { "input": "asthma", "output": "â â Žâ ¹â â " }, { "input": "asthma's", "output": "â â Žâ ¹â â â „â Ž" }, { "input": "asthmatic", "output": "â â Žâ ¹â â â žâ Šâ ‰" }, { "input": "asthmatic's", "output": "â â Žâ ¹â â â žâ Šâ ‰â „â Ž" }, { "input": "asthmatics", "output": "â â Žâ ¹â â â žâ Šâ ‰â Ž" }, { "input": "astigmatic", "output": "â â Œâ Šâ ›â â â žâ Šâ ‰" }, { "input": "astigmatism", "output": "â â Œâ Šâ ›â â â žâ Šâ Žâ " }, { "input": "astigmatism's", "output": "â â Œâ Šâ ›â â â žâ Šâ Žâ â „â Ž" }, { "input": "astigmatisms", "output": "â â Œâ Šâ ›â â â žâ Šâ Žâ â Ž" }, { "input": "astir", "output": "â â Œâ Šâ —" }, { "input": "astonish", "output": "â â Œâ •â â Šâ ©" }, { "input": "astonished", "output": "â â Œâ •â â Šâ ©â «" }, { "input": "astonishes", "output": "â â Œâ •â â Šâ ©â ‘â Ž" }, { "input": "astonishing", "output": "â â Œâ •â â Šâ ©â Œ" }, { "input": "astonishingly", "output": "â â Œâ •â â Šâ ©â Œâ ‡â ½" }, { "input": "astonishment", "output": "â â Œâ •â â Šâ ©â °â ž" }, { "input": "astonishment's", "output": "â â Œâ •â â Šâ ©â °â žâ „â Ž" }, { "input": "astound", "output": "â â Œâ ¨â ™" }, { "input": "astounded", "output": "â â Œâ ¨â ™â «" }, { "input": "astounding", "output": "â â Œâ ¨â ™â Œ" }, { "input": "astoundingly", "output": "â â Œâ ¨â ™â Œâ ‡â ½" }, { "input": "astounds", "output": "â â Œâ ¨â ™â Ž" }, { "input": "astraddle", "output": "â â Œâ —â â ²â ‡â ‘" }, { "input": "astrakhan", "output": "â â Œâ —â â …â “â â " }, { "input": "astrakhan's", "output": "â â Œâ —â â …â “â â â „â Ž" }, { "input": "astral", "output": "â â Œâ —â â ‡" }, { "input": "astray", "output": "â â Œâ —â â ½" }, { "input": "astride", "output": "â â Œâ —⠊⠙⠑" }, { "input": "astringency", "output": "â â Œâ —⠌⠢⠉⠽" }, { "input": "astringency's", "output": "â â Œâ —⠌⠢⠉⠽⠄⠎" }, { "input": "astringent", "output": "â â Œâ —⠌⠢⠞" }, { "input": "astringent's", "output": "â â Œâ —⠌⠢⠞⠄⠎" }, { "input": "astringently", "output": "â â Œâ —⠌⠢⠞⠇⠽" }, { "input": "astringents", "output": "â â Œâ —⠌⠢⠞⠎" }, { "input": "astrolabe", "output": "â â Œâ —â •â ‡â â ƒâ ‘" }, { "input": "astrolabe's", "output": "â â Œâ —â •â ‡â â ƒâ ‘â „â Ž" }, { "input": "astrolabes", "output": "â â Œâ —â •â ‡â â ƒâ ‘â Ž" }, { "input": "astrologer", "output": "â â Œâ —⠕⠇⠕⠛⠻" }, { "input": "astrologer's", "output": "â â Œâ —⠕⠇⠕⠛⠻⠄⠎" }, { "input": "astrologers", "output": "â â Œâ —⠕⠇⠕⠛⠻⠎" }, { "input": "astrological", "output": "â â Œâ —⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "astrologist", "output": "â â Œâ —⠕⠇⠕⠛⠊⠌" }, { "input": "astrologist's", "output": "â â Œâ —⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "astrologists", "output": "â â Œâ —⠕⠇⠕⠛⠊⠌⠎" }, { "input": "astrology", "output": "â â Œâ —⠕⠇⠕⠛⠽" }, { "input": "astrology's", "output": "â â Œâ —⠕⠇⠕⠛⠽⠄⠎" }, { "input": "astronaut", "output": "â â Œâ —â •â â â ¥â ž" }, { "input": "astronaut's", "output": "â â Œâ —â •â â â ¥â žâ „â Ž" }, { "input": "astronautic", "output": "â â Œâ —â •â â â ¥â žâ Šâ ‰" }, { "input": "astronautical", "output": "â â Œâ —â •â â â ¥â žâ Šâ ‰â â ‡" }, { "input": "astronautics", "output": "â â Œâ —â •â â â ¥â žâ Šâ ‰â Ž" }, { "input": "astronautics's", "output": "â â Œâ —â •â â â ¥â žâ Šâ ‰â Žâ „â Ž" }, { "input": "astronauts", "output": "â â Œâ —â •â â â ¥â žâ Ž" }, { "input": "astronomer", "output": "â â Œâ —â •â â •â â »" }, { "input": "astronomer's", "output": "â â Œâ —â •â â •â â »â „â Ž" }, { "input": "astronomers", "output": "â â Œâ —â •â â •â â »â Ž" }, { "input": "astronomic", "output": "â â Œâ —â •â â •â â Šâ ‰" }, { "input": "astronomical", "output": "â â Œâ —â •â â •â â Šâ ‰â â ‡" }, { "input": "astronomically", "output": "â â Œâ —â •â â •â â Šâ ‰â  â ½" }, { "input": "astronomy", "output": "â â Œâ —â •â â •â â ½" }, { "input": "astronomy's", "output": "â â Œâ —â •â â •â â ½â „â Ž" }, { "input": "astrophysicist", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠊⠌" }, { "input": "astrophysicist's", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠊⠌⠄⠎" }, { "input": "astrophysicists", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠊⠌⠎" }, { "input": "astrophysics", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠎" }, { "input": "astrophysics's", "output": "â â Œâ —â •â â “⠽⠎⠊⠉⠎⠄⠎" }, { "input": "astute", "output": "â â Œâ ¥â žâ ‘" }, { "input": "astutely", "output": "â â Œâ ¥â žâ ‘⠇⠽" }, { "input": "astuteness", "output": "â â Œâ ¥â žâ ‘â °â Ž" }, { "input": "astuteness's", "output": "â â Œâ ¥â žâ ‘â °â Žâ „â Ž" }, { "input": "astuter", "output": "â â Œâ ¥â žâ »" }, { "input": "astutest", "output": "â â Œâ ¥â žâ ‘â Œ" }, { "input": "asunder", "output": "â â Žâ â ¥" }, { "input": "asylum", "output": "â â Žâ ½â ‡â ¥â " }, { "input": "asylum's", "output": "â â Žâ ½â ‡â ¥â â „â Ž" }, { "input": "asylums", "output": "â â Žâ ½â ‡â ¥â â Ž" }, { "input": "asymmetric", "output": "â â Žâ ½â â â ‘â žâ —â Šâ ‰" }, { "input": "asymmetrical", "output": "â â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "asymmetrically", "output": "â â Žâ ½â â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "asymmetry", "output": "â â Žâ ½â â â ‘â žâ —â ½" }, { "input": "asymmetry's", "output": "â â Žâ ½â â â ‘⠞⠗⠽⠄⠎" }, { "input": "asymptotic", "output": "â â Žâ ½â â â žâ •â žâ Šâ ‰" }, { "input": "asymptotically", "output": "â â Žâ ½â â â žâ •⠞⠊⠉⠠⠽" }, { "input": "asynchronous", "output": "â â Žâ ½â â ¡â —â •â â ³â Ž" }, { "input": "asynchronously", "output": "â â Žâ ½â â ¡â —â •â â ³â Žâ ‡â ½" }, { "input": "at", "output": "â â ž" }, { "input": "atavism", "output": "â â žâ â §â Šâ Žâ " }, { "input": "atavism's", "output": "â â žâ â §â Šâ Žâ â „â Ž" }, { "input": "atavist", "output": "â â žâ â §â Šâ Œ" }, { "input": "atavist's", "output": "â â žâ â §â Šâ Œâ „â Ž" }, { "input": "atavistic", "output": "â â žâ â §â Šâ Œâ Šâ ‰" }, { "input": "atavists", "output": "â â žâ â §â Šâ Œâ Ž" }, { "input": "ataxia", "output": "â â žâ â ­â Šâ " }, { "input": "ataxia's", "output": "â â žâ â ­â Šâ â „â Ž" }, { "input": "ataxic", "output": "â â žâ â ­â Šâ ‰" }, { "input": "ataxic's", "output": "â â žâ â ­â Šâ ‰â „â Ž" }, { "input": "ataxics", "output": "â â žâ â ­â Šâ ‰â Ž" }, { "input": "ate", "output": "â â žâ ‘" }, { "input": "atelier", "output": "â â žâ ‘⠇⠊⠻" }, { "input": "atelier's", "output": "â â žâ ‘⠇⠊⠻⠄⠎" }, { "input": "ateliers", "output": "â â žâ ‘⠇⠊⠻⠎" }, { "input": "atheism", "output": "â â ®â Šâ Žâ " }, { "input": "atheism's", "output": "â â ®â Šâ Žâ â „â Ž" }, { "input": "atheist", "output": "â â ®â Šâ Œ" }, { "input": "atheist's", "output": "â â ®â Šâ Œâ „â Ž" }, { "input": "atheistic", "output": "â â ®â Šâ Œâ Šâ ‰" }, { "input": "atheists", "output": "â â ®â Šâ Œâ Ž" }, { "input": "atherosclerosis", "output": "â â ®â —⠕⠎⠉⠇⠻⠕⠎⠊⠎" }, { "input": "atherosclerosis's", "output": "â â ®â —⠕⠎⠉⠇⠻⠕⠎⠊⠎⠄⠎" }, { "input": "athirst", "output": "â â ¹â Šâ —â Œ" }, { "input": "athlete", "output": "â â ¹â ‡â ‘â žâ ‘" }, { "input": "athlete's", "output": "â â ¹â ‡â ‘â žâ ‘â „â Ž" }, { "input": "athletes", "output": "â â ¹â ‡â ‘â žâ ‘â Ž" }, { "input": "athletic", "output": "â â ¹â ‡â ‘â žâ Šâ ‰" }, { "input": "athletically", "output": "â â ¹â ‡â ‘⠞⠊⠉⠠⠽" }, { "input": "athletics", "output": "â â ¹â ‡â ‘⠞⠊⠉⠎" }, { "input": "athletics's", "output": "â â ¹â ‡â ‘⠞⠊⠉⠎⠄⠎" }, { "input": "athwart", "output": "â â ¹â ºâ œâ ž" }, { "input": "atilt", "output": "â â žâ Šâ ‡â ž" }, { "input": "atlas", "output": "â â žâ ‡â â Ž" }, { "input": "atlas's", "output": "â â žâ ‡â â Žâ „â Ž" }, { "input": "atlases", "output": "â â žâ ‡â â Žâ ‘â Ž" }, { "input": "atmosphere", "output": "â â žâ â •â Žâ â “⠻⠑" }, { "input": "atmosphere's", "output": "â â žâ â •â Žâ â “⠻⠑⠄⠎" }, { "input": "atmospheres", "output": "â â žâ â •â Žâ â “⠻⠑⠎" }, { "input": "atmospheric", "output": "â â žâ â •â Žâ â “⠻⠊⠉" }, { "input": "atmospherically", "output": "â â žâ â •â Žâ â “⠻⠊⠉⠠⠽" }, { "input": "atmospherics's", "output": "â â žâ â •â Žâ â “⠻⠊⠉⠎⠄⠎" }, { "input": "atoll", "output": "â â žâ •⠇⠇" }, { "input": "atoll's", "output": "â â žâ •⠇⠇⠄⠎" }, { "input": "atolls", "output": "â â žâ •⠇⠇⠎" }, { "input": "atom", "output": "â â žâ •â " }, { "input": "atom's", "output": "â â žâ •â â „â Ž" }, { "input": "atomic", "output": "â â žâ •â â Šâ ‰" }, { "input": "atomically", "output": "â â žâ •â â Šâ ‰â  â ½" }, { "input": "atomize", "output": "â â žâ •â â Šâ µâ ‘" }, { "input": "atomized", "output": "â â žâ •â â Šâ µâ «" }, { "input": "atomizer", "output": "â â žâ •â â Šâ µâ »" }, { "input": "atomizer's", "output": "â â žâ •â â Šâ µâ »â „â Ž" }, { "input": "atomizers", "output": "â â žâ •â â Šâ µâ »â Ž" }, { "input": "atomizes", "output": "â â žâ •â â Šâ µâ ‘â Ž" }, { "input": "atomizing", "output": "â â žâ •â â Šâ µâ Œ" }, { "input": "atoms", "output": "â â žâ •â â Ž" }, { "input": "atonal", "output": "â â žâ •â â â ‡" }, { "input": "atonality", "output": "â â žâ •â â â ‡â °â ½" }, { "input": "atonality's", "output": "â â žâ •â â â ‡â °â ½â „â Ž" }, { "input": "atonally", "output": "â â žâ •â â  â ½" }, { "input": "atone", "output": "â â žâ â •" }, { "input": "atoned", "output": "â â žâ •â â «" }, { "input": "atonement", "output": "â â žâ â •â °â ž" }, { "input": "atonement's", "output": "â â žâ â •â °â žâ „â Ž" }, { "input": "atones", "output": "â â žâ â •â Ž" }, { "input": "atoning", "output": "â â žâ •â â Œ" }, { "input": "atop", "output": "â â žâ •â " }, { "input": "atria", "output": "â â žâ —â Šâ " }, { "input": "atrial", "output": "â â žâ —â Šâ â ‡" }, { "input": "atrium", "output": "â â žâ —â Šâ ¥â " }, { "input": "atrium's", "output": "â â žâ —â Šâ ¥â â „â Ž" }, { "input": "atrocious", "output": "â â žâ —⠕⠉⠊⠳⠎" }, { "input": "atrociously", "output": "â â žâ —⠕⠉⠊⠳⠎⠇⠽" }, { "input": "atrociousness", "output": "â â žâ —⠕⠉⠊⠳⠎⠰⠎" }, { "input": "atrociousness's", "output": "â â žâ —⠕⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "atrocities", "output": "â â žâ —⠕⠉⠊⠞⠊⠑⠎" }, { "input": "atrocity", "output": "â â žâ —⠕⠉⠰⠽" }, { "input": "atrocity's", "output": "â â žâ —⠕⠉⠰⠽⠄⠎" }, { "input": "atrophied", "output": "â â žâ —â •â â “â Šâ «" }, { "input": "atrophies", "output": "â â žâ —â •â â “â Šâ ‘â Ž" }, { "input": "atrophy", "output": "â â žâ —â •â â “â ½" }, { "input": "atrophy's", "output": "â â žâ —â •â â “⠽⠄⠎" }, { "input": "atrophying", "output": "â â žâ —â •â â “⠽⠌" }, { "input": "atropine", "output": "â â žâ —â •â â ”â ‘" }, { "input": "atropine's", "output": "â â žâ —â •â â ”â ‘â „â Ž" }, { "input": "attach", "output": "â â žâ žâ â ¡" }, { "input": "attachable", "output": "â â žâ žâ â ¡â â ¼" }, { "input": "attached", "output": "â â žâ žâ â ¡â «" }, { "input": "attaching", "output": "â â žâ žâ â ¡â Œ" }, { "input": "attachment", "output": "â â žâ žâ â ¡â °â ž" }, { "input": "attachment's", "output": "â â žâ žâ â ¡â °â žâ „â Ž" }, { "input": "attachments", "output": "â â žâ žâ â ¡â °â žâ Ž" }, { "input": "attack", "output": "â â žâ žâ â ‰â …" }, { "input": "attack's", "output": "â â žâ žâ â ‰â …â „â Ž" }, { "input": "attacked", "output": "â â žâ žâ â ‰â …â «" }, { "input": "attacker", "output": "â â žâ žâ â ‰â …â »" }, { "input": "attacker's", "output": "â â žâ žâ â ‰â …⠻⠄⠎" }, { "input": "attackers", "output": "â â žâ žâ â ‰â …⠻⠎" }, { "input": "attacking", "output": "â â žâ žâ â ‰â …â Œ" }, { "input": "attacks", "output": "â â žâ žâ â ‰â …â Ž" }, { "input": "attain", "output": "â â žâ žâ â ”" }, { "input": "attainability", "output": "â â žâ žâ â ”â â ƒâ Šâ ‡â °â ½" }, { "input": "attainability's", "output": "â â žâ žâ â ”â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "attainable", "output": "â â žâ žâ â ”â â ¼" }, { "input": "attainder", "output": "â â žâ žâ â ”⠙⠻" }, { "input": "attainder's", "output": "â â žâ žâ â ”⠙⠻⠄⠎" }, { "input": "attained", "output": "â â žâ žâ â ”â «" }, { "input": "attaining", "output": "â â žâ žâ â ”â Œ" }, { "input": "attainment", "output": "â â žâ žâ â ”â °â ž" }, { "input": "attainment's", "output": "â â žâ žâ â ”â °â žâ „â Ž" }, { "input": "attainments", "output": "â â žâ žâ â ”â °â žâ Ž" }, { "input": "attains", "output": "â â žâ žâ â ”â Ž" }, { "input": "attar", "output": "â â žâ žâ œ" }, { "input": "attar's", "output": "â â žâ žâ œâ „â Ž" }, { "input": "attempt", "output": "â â žâ žâ ‘â â â ž" }, { "input": "attempt's", "output": "â â žâ žâ ‘â â â žâ „â Ž" }, { "input": "attempted", "output": "â â žâ žâ ‘â â â žâ «" }, { "input": "attempting", "output": "â â žâ žâ ‘â â â žâ Œ" }, { "input": "attempts", "output": "â â žâ žâ ‘â â â žâ Ž" }, { "input": "attend", "output": "â â žâ žâ ¢â ™" }, { "input": "attendance", "output": "â â žâ žâ ¢â ™â ¨â ‘" }, { "input": "attendance's", "output": "â â žâ žâ ¢â ™â ¨â ‘â „â Ž" }, { "input": "attendances", "output": "â â žâ žâ ¢â ™â ¨â ‘â Ž" }, { "input": "attendant", "output": "â â žâ žâ ¢â ™â â â ž" }, { "input": "attendant's", "output": "â â žâ žâ ¢â ™â â â žâ „â Ž" }, { "input": "attendants", "output": "â â žâ žâ ¢â ™â â â žâ Ž" }, { "input": "attended", "output": "â â žâ žâ ¢â ™â «" }, { "input": "attender", "output": "â â žâ žâ ¢â ™â »" }, { "input": "attending", "output": "â â žâ žâ ¢â ™â Œ" }, { "input": "attends", "output": "â â žâ žâ ¢â ™â Ž" }, { "input": "attention", "output": "â â žâ žâ ¢â °â " }, { "input": "attention's", "output": "â â žâ žâ ¢â °â â „â Ž" }, { "input": "attentions", "output": "â â žâ žâ ¢â °â â Ž" }, { "input": "attentive", "output": "â â žâ žâ ¢â žâ Šâ §â ‘" }, { "input": "attentively", "output": "â â žâ žâ ¢â žâ Šâ §â ‘⠇⠽" }, { "input": "attentiveness", "output": "â â žâ žâ ¢â žâ Šâ §â ‘â °â Ž" }, { "input": "attentiveness's", "output": "â â žâ žâ ¢â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "attenuate", "output": "â â žâ žâ ¢â ¥â â žâ ‘" }, { "input": "attenuated", "output": "â â žâ žâ ¢â ¥â â žâ «" }, { "input": "attenuates", "output": "â â žâ žâ ¢â ¥â â žâ ‘â Ž" }, { "input": "attenuating", "output": "â â žâ žâ ¢â ¥â â žâ Œ" }, { "input": "attenuation", "output": "â â žâ žâ ¢â ¥â  â " }, { "input": "attenuation's", "output": "â â žâ žâ ¢â ¥â  â â „â Ž" }, { "input": "attest", "output": "â â žâ žâ ‘â Œ" }, { "input": "attestation", "output": "â â žâ žâ ‘⠌⠠â " }, { "input": "attestation's", "output": "â â žâ žâ ‘⠌⠠â â „â Ž" }, { "input": "attestations", "output": "â â žâ žâ ‘⠌⠠â â Ž" }, { "input": "attested", "output": "â â žâ žâ ‘⠌⠫" }, { "input": "attesting", "output": "â â žâ žâ ‘⠌⠌" }, { "input": "attests", "output": "â â žâ žâ ‘⠌⠎" }, { "input": "attic", "output": "â â žâ žâ Šâ ‰" }, { "input": "attic's", "output": "â â žâ žâ Šâ ‰â „â Ž" }, { "input": "attics", "output": "â â žâ žâ Šâ ‰â Ž" }, { "input": "attire", "output": "â â žâ žâ Šâ —â ‘" }, { "input": "attire's", "output": "â â žâ žâ Šâ —â ‘â „â Ž" }, { "input": "attired", "output": "â â žâ žâ Šâ —â «" }, { "input": "attires", "output": "â â žâ žâ Šâ —â ‘â Ž" }, { "input": "attiring", "output": "â â žâ žâ Šâ —â Œ" }, { "input": "attitude", "output": "â â žâ žâ Šâ žâ ¥â ™â ‘" }, { "input": "attitude's", "output": "â â žâ žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "attitudes", "output": "â â žâ žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "attitudinize", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠑" }, { "input": "attitudinized", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠫" }, { "input": "attitudinizes", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠑⠎" }, { "input": "attitudinizing", "output": "â â žâ žâ Šâ žâ ¥â ™â ”⠊⠵⠌" }, { "input": "attorney", "output": "â â žâ žâ •â —â â ‘â ½" }, { "input": "attorney's", "output": "â â žâ žâ •â —â â ‘⠽⠄⠎" }, { "input": "attorneys", "output": "â â žâ žâ •â —â â ‘⠽⠎" }, { "input": "attract", "output": "â â žâ žâ —â â ‰â ž" }, { "input": "attractable", "output": "â â žâ žâ —â â ‰â žâ â ¼" }, { "input": "attractant", "output": "â â žâ žâ —â â ‰â žâ â â ž" }, { "input": "attractant's", "output": "â â žâ žâ —â â ‰â žâ â â žâ „â Ž" }, { "input": "attractants", "output": "â â žâ žâ —â â ‰â žâ â â žâ Ž" }, { "input": "attracted", "output": "â â žâ žâ —â â ‰â žâ «" }, { "input": "attracting", "output": "â â žâ žâ —â â ‰â žâ Œ" }, { "input": "attraction", "output": "â â žâ žâ —â â ‰â °â " }, { "input": "attraction's", "output": "â â žâ žâ —â â ‰â °â â „â Ž" }, { "input": "attractions", "output": "â â žâ žâ —â â ‰â °â â Ž" }, { "input": "attractive", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘" }, { "input": "attractively", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "attractiveness", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘â °â Ž" }, { "input": "attractiveness's", "output": "â â žâ žâ —â â ‰â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "attracts", "output": "â â žâ žâ —â â ‰â žâ Ž" }, { "input": "attributable", "output": "â â žâ žâ —⠊⠃⠥⠞â â ¼" }, { "input": "attribute", "output": "â â žâ žâ —⠊⠃⠥⠞⠑" }, { "input": "attribute's", "output": "â â žâ žâ —⠊⠃⠥⠞⠑⠄⠎" }, { "input": "attributed", "output": "â â žâ žâ —⠊⠃⠥⠞⠫" }, { "input": "attributes", "output": "â â žâ žâ —⠊⠃⠥⠞⠑⠎" }, { "input": "attributing", "output": "â â žâ žâ —⠊⠃⠥⠞⠌" }, { "input": "attribution", "output": "â â žâ žâ —⠊⠃⠥⠰â " }, { "input": "attribution's", "output": "â â žâ žâ —⠊⠃⠥⠰â â „â Ž" }, { "input": "attributions", "output": "â â žâ žâ —⠊⠃⠥⠰â â Ž" }, { "input": "attributive", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑" }, { "input": "attributive's", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑⠄⠎" }, { "input": "attributively", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑⠇⠽" }, { "input": "attributives", "output": "â â žâ žâ —⠊⠃⠥⠞⠊⠧⠑⠎" }, { "input": "attrition", "output": "â â žâ žâ —â Šâ °â " }, { "input": "attrition's", "output": "â â žâ žâ —â Šâ °â â „â Ž" }, { "input": "attune", "output": "â â žâ žâ ¥â â ‘" }, { "input": "attuned", "output": "â â žâ žâ ¥â â «" }, { "input": "attunes", "output": "â â žâ žâ ¥â â ‘â Ž" }, { "input": "attuning", "output": "â â žâ žâ ¥â â Œ" }, { "input": "atwitter", "output": "â â žâ ºâ Šâ žâ žâ »" }, { "input": "atypical", "output": "â â žâ ½â â Šâ ‰â â ‡" }, { "input": "atypically", "output": "â â žâ ½â â Šâ ‰â  â ½" }, { "input": "auburn", "output": "â â ¥â ƒâ ¥â —â " }, { "input": "auburn's", "output": "â â ¥â ƒâ ¥â —â â „â Ž" }, { "input": "auction", "output": "â â ¥â ‰â °â " }, { "input": "auction's", "output": "â â ¥â ‰â °â â „â Ž" }, { "input": "auctioned", "output": "â â ¥â ‰â °â â «" }, { "input": "auctioneer", "output": "â â ¥â ‰â °â â ‘â »" }, { "input": "auctioneer's", "output": "â â ¥â ‰â °â â ‘⠻⠄⠎" }, { "input": "auctioneers", "output": "â â ¥â ‰â °â â ‘⠻⠎" }, { "input": "auctioning", "output": "â â ¥â ‰â °â â Œ" }, { "input": "auctions", "output": "â â ¥â ‰â °â â Ž" }, { "input": "audacious", "output": "â â ¥â ™â â ‰â Šâ ³â Ž" }, { "input": "audaciously", "output": "â â ¥â ™â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "audaciousness", "output": "â â ¥â ™â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "audaciousness's", "output": "â â ¥â ™â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "audacity", "output": "â â ¥â ™â â ‰â °â ½" }, { "input": "audacity's", "output": "â â ¥â ™â â ‰â °â ½â „â Ž" }, { "input": "audibility", "output": "â â ¥â ™â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "audibility's", "output": "â â ¥â ™â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "audible", "output": "â â ¥â ™â Šâ ¼" }, { "input": "audible's", "output": "â â ¥â ™â Šâ ¼â „â Ž" }, { "input": "audibles", "output": "â â ¥â ™â Šâ ¼â Ž" }, { "input": "audibly", "output": "â â ¥â ™â Šâ ƒâ ‡â ½" }, { "input": "audience", "output": "â â ¥â ™â Šâ °â ‘" }, { "input": "audience's", "output": "â â ¥â ™â Šâ °â ‘â „â Ž" }, { "input": "audiences", "output": "â â ¥â ™â Šâ °â ‘â Ž" }, { "input": "audio", "output": "â â ¥â ™â Šâ •" }, { "input": "audio's", "output": "â â ¥â ™â Šâ •â „â Ž" }, { "input": "audiological", "output": "â â ¥â ™â Šâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "audiologist", "output": "â â ¥â ™â Šâ •⠇⠕⠛⠊⠌" }, { "input": "audiologist's", "output": "â â ¥â ™â Šâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "audiologists", "output": "â â ¥â ™â Šâ •⠇⠕⠛⠊⠌⠎" }, { "input": "audiology", "output": "â â ¥â ™â Šâ •⠇⠕⠛⠽" }, { "input": "audiology's", "output": "â â ¥â ™â Šâ •⠇⠕⠛⠽⠄⠎" }, { "input": "audiometer", "output": "â â ¥â ™â Šâ •â â ‘â žâ »" }, { "input": "audiometer's", "output": "â â ¥â ™â Šâ •â â ‘⠞⠻⠄⠎" }, { "input": "audiometers", "output": "â â ¥â ™â Šâ •â â ‘⠞⠻⠎" }, { "input": "audiophile", "output": "â â ¥â ™â Šâ •â â “⠊⠇⠑" }, { "input": "audiophile's", "output": "â â ¥â ™â Šâ •â â “⠊⠇⠑⠄⠎" }, { "input": "audiophiles", "output": "â â ¥â ™â Šâ •â â “⠊⠇⠑⠎" }, { "input": "audios", "output": "â â ¥â ™â Šâ •â Ž" }, { "input": "audiovisual", "output": "â â ¥â ™â Šâ •â §â Šâ Žâ ¥â â ‡" }, { "input": "audiovisuals", "output": "â â ¥â ™â Šâ •â §â Šâ Žâ ¥â â ‡â Ž" }, { "input": "audiovisuals's", "output": "â â ¥â ™â Šâ •â §â Šâ Žâ ¥â â ‡â Žâ „â Ž" }, { "input": "audit", "output": "â â ¥â ™â Šâ ž" }, { "input": "audit's", "output": "â â ¥â ™â Šâ žâ „â Ž" }, { "input": "audited", "output": "â â ¥â ™â Šâ žâ «" }, { "input": "auditing", "output": "â â ¥â ™â Šâ žâ Œ" }, { "input": "audition", "output": "â â ¥â ™â Šâ °â " }, { "input": "audition's", "output": "â â ¥â ™â Šâ °â â „â Ž" }, { "input": "auditioned", "output": "â â ¥â ™â Šâ °â â «" }, { "input": "auditioning", "output": "â â ¥â ™â Šâ °â â Œ" }, { "input": "auditions", "output": "â â ¥â ™â Šâ °â â Ž" }, { "input": "auditor", "output": "â â ¥â ™â Šâ žâ •â —" }, { "input": "auditor's", "output": "â â ¥â ™â Šâ žâ •â —â „â Ž" }, { "input": "auditorium", "output": "â â ¥â ™â Šâ žâ •â —â Šâ ¥â " }, { "input": "auditorium's", "output": "â â ¥â ™â Šâ žâ •â —â Šâ ¥â â „â Ž" }, { "input": "auditoriums", "output": "â â ¥â ™â Šâ žâ •â —â Šâ ¥â â Ž" }, { "input": "auditors", "output": "â â ¥â ™â Šâ žâ •â —â Ž" }, { "input": "auditory", "output": "â â ¥â ™â Šâ žâ •â —â ½" }, { "input": "audits", "output": "â â ¥â ™â Šâ žâ Ž" }, { "input": "auger", "output": "â â ¥â ›â »" }, { "input": "auger's", "output": "â â ¥â ›â »â „â Ž" }, { "input": "augers", "output": "â â ¥â ›â »â Ž" }, { "input": "aught", "output": "â â ¥â £â ž" }, { "input": "aught's", "output": "â â ¥â £â žâ „â Ž" }, { "input": "aughts", "output": "â â ¥â £â žâ Ž" }, { "input": "augment", "output": "â â ¥â ›â °â ž" }, { "input": "augmentation", "output": "â â ¥â ›â °â žâ  â " }, { "input": "augmentation's", "output": "â â ¥â ›â °â žâ  â â „â Ž" }, { "input": "augmentations", "output": "â â ¥â ›â °â žâ  â â Ž" }, { "input": "augmentative", "output": "â â ¥â ›â °â žâ â žâ Šâ §â ‘" }, { "input": "augmented", "output": "â â ¥â ›â °â žâ «" }, { "input": "augmenter", "output": "â â ¥â ›â °â žâ »" }, { "input": "augmenter's", "output": "â â ¥â ›â °â žâ »â „â Ž" }, { "input": "augmenters", "output": "â â ¥â ›â °â žâ »â Ž" }, { "input": "augmenting", "output": "â â ¥â ›â °â žâ Œ" }, { "input": "augments", "output": "â â ¥â ›â °â žâ Ž" }, { "input": "augur", "output": "â â ¥â ›â ¥â —" }, { "input": "augur's", "output": "â â ¥â ›â ¥â —â „â Ž" }, { "input": "augured", "output": "â â ¥â ›â ¥â —â «" }, { "input": "auguries", "output": "â â ¥â ›â ¥â —â Šâ ‘â Ž" }, { "input": "auguring", "output": "â â ¥â ›â ¥â —â Œ" }, { "input": "augurs", "output": "â â ¥â ›â ¥â —â Ž" }, { "input": "augury", "output": "â â ¥â ›â ¥â —â ½" }, { "input": "augury's", "output": "â â ¥â ›â ¥â —⠽⠄⠎" }, { "input": "august", "output": "â â ¥â ›â ¥â Œ" }, { "input": "auguster", "output": "â â ¥â ›â ¥â Œâ »" }, { "input": "augustest", "output": "â â ¥â ›â ¥â Œâ ‘â Œ" }, { "input": "augustly", "output": "â â ¥â ›â ¥â Œâ ‡â ½" }, { "input": "augustness", "output": "â â ¥â ›â ¥â Œâ °â Ž" }, { "input": "augustness's", "output": "â â ¥â ›â ¥â Œâ °â Žâ „â Ž" }, { "input": "auk", "output": "â â ¥â …" }, { "input": "auk's", "output": "â â ¥â …â „â Ž" }, { "input": "auks", "output": "â â ¥â …â Ž" }, { "input": "aunt", "output": "â â ¥â â ž" }, { "input": "aunt's", "output": "â â ¥â â žâ „â Ž" }, { "input": "aunts", "output": "â â ¥â â žâ Ž" }, { "input": "aura", "output": "â â ¥â —â " }, { "input": "aura's", "output": "â â ¥â —â â „â Ž" }, { "input": "aural", "output": "â â ¥â —â â ‡" }, { "input": "aurally", "output": "â â ¥â —â  â ½" }, { "input": "auras", "output": "â â ¥â —â â Ž" }, { "input": "aureole", "output": "â â ¥â —⠑⠕⠇⠑" }, { "input": "aureole's", "output": "â â ¥â —⠑⠕⠇⠑⠄⠎" }, { "input": "aureoles", "output": "â â ¥â —⠑⠕⠇⠑⠎" }, { "input": "auricle", "output": "â â ¥â —⠊⠉⠇⠑" }, { "input": "auricle's", "output": "â â ¥â —⠊⠉⠇⠑⠄⠎" }, { "input": "auricles", "output": "â â ¥â —⠊⠉⠇⠑⠎" }, { "input": "auricular", "output": "â â ¥â —⠊⠉⠥⠇⠜" }, { "input": "aurora", "output": "â â ¥â —â •â —â " }, { "input": "aurora's", "output": "â â ¥â —â •â —â â „â Ž" }, { "input": "auroras", "output": "â â ¥â —â •â —â â Ž" }, { "input": "auscultate", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ â žâ ‘" }, { "input": "auscultated", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ â žâ «" }, { "input": "auscultates", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ â žâ ‘â Ž" }, { "input": "auscultating", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ â žâ Œ" }, { "input": "auscultation", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ  â " }, { "input": "auscultation's", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ  â â „â Ž" }, { "input": "auscultations", "output": "â â ¥â Žâ ‰â ¥â ‡â žâ  â â Ž" }, { "input": "auspice", "output": "â â ¥â Žâ â Šâ ‰â ‘" }, { "input": "auspice's", "output": "â â ¥â Žâ â Šâ ‰â ‘â „â Ž" }, { "input": "auspices", "output": "â â ¥â Žâ â Šâ ‰â ‘â Ž" }, { "input": "auspicious", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Ž" }, { "input": "auspiciously", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "auspiciousness", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "auspiciousness's", "output": "â â ¥â Žâ â Šâ ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "austere", "output": "â â ¥â Œâ »â ‘" }, { "input": "austerely", "output": "â â ¥â Œâ »â ‘⠇⠽" }, { "input": "austerer", "output": "â â ¥â Œâ »â »" }, { "input": "austerest", "output": "â â ¥â Œâ »â ‘â Œ" }, { "input": "austerities", "output": "â â ¥â Œâ »â Šâ žâ Šâ ‘â Ž" }, { "input": "austerity", "output": "â â ¥â Œâ »â °â ½" }, { "input": "austerity's", "output": "â â ¥â Œâ »â °â ½â „â Ž" }, { "input": "austral", "output": "â â ¥â Œâ —â â ‡" }, { "input": "authentic", "output": "â â ¥â ®â â žâ Šâ ‰" }, { "input": "authentically", "output": "â â ¥â ®â â žâ Šâ ‰â  â ½" }, { "input": "authenticate", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ ‘" }, { "input": "authenticated", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ «" }, { "input": "authenticates", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ ‘â Ž" }, { "input": "authenticating", "output": "â â ¥â ®â â žâ Šâ ‰â â žâ Œ" }, { "input": "authentication", "output": "â â ¥â ®â â žâ Šâ ‰â  â " }, { "input": "authentication's", "output": "â â ¥â ®â â žâ Šâ ‰â  â â „â Ž" }, { "input": "authentications", "output": "â â ¥â ®â â žâ Šâ ‰â  â â Ž" }, { "input": "authenticity", "output": "â â ¥â ®â â žâ Šâ ‰â °â ½" }, { "input": "authenticity's", "output": "â â ¥â ®â â žâ Šâ ‰â °â ½â „â Ž" }, { "input": "author", "output": "â â ¥â ¹â •â —" }, { "input": "author's", "output": "â â ¥â ¹â •â —â „â Ž" }, { "input": "authored", "output": "â â ¥â ¹â •â —â «" }, { "input": "authoring", "output": "â â ¥â ¹â •â —â Œ" }, { "input": "authoritarian", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â " }, { "input": "authoritarian's", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â â „â Ž" }, { "input": "authoritarianism", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â â Šâ Žâ " }, { "input": "authoritarianism's", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "authoritarians", "output": "â â ¥â ¹â •⠗⠊⠞⠜⠊â â â Ž" }, { "input": "authoritative", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘" }, { "input": "authoritatively", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "authoritativeness", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘â °â Ž" }, { "input": "authoritativeness's", "output": "â â ¥â ¹â •â —â Šâ žâ â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "authorities", "output": "â â ¥â ¹â •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "authority", "output": "â â ¥â ¹â •â —â °â ½" }, { "input": "authority's", "output": "â â ¥â ¹â •⠗⠰⠽⠄⠎" }, { "input": "authorization", "output": "â â ¥â ¹â •⠗⠊⠵⠠â " }, { "input": "authorization's", "output": "â â ¥â ¹â •⠗⠊⠵⠠â â „â Ž" }, { "input": "authorizations", "output": "â â ¥â ¹â •⠗⠊⠵⠠â â Ž" }, { "input": "authorize", "output": "â â ¥â ¹â •⠗⠊⠵⠑" }, { "input": "authorized", "output": "â â ¥â ¹â •⠗⠊⠵⠫" }, { "input": "authorizes", "output": "â â ¥â ¹â •⠗⠊⠵⠑⠎" }, { "input": "authorizing", "output": "â â ¥â ¹â •⠗⠊⠵⠌" }, { "input": "authors", "output": "â â ¥â ¹â •â —â Ž" }, { "input": "authorship", "output": "â â ¥â ¹â •â —â ©â Šâ " }, { "input": "authorship's", "output": "â â ¥â ¹â •â —â ©â Šâ â „â Ž" }, { "input": "autism", "output": "â â ¥â žâ Šâ Žâ " }, { "input": "autism's", "output": "â â ¥â žâ Šâ Žâ â „â Ž" }, { "input": "autistic", "output": "â â ¥â žâ Šâ Œâ Šâ ‰" }, { "input": "auto", "output": "â â ¥â žâ •" }, { "input": "auto's", "output": "â â ¥â žâ •â „â Ž" }, { "input": "autobiographer", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â »" }, { "input": "autobiographer's", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "autobiographers", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “⠻⠎" }, { "input": "autobiographic", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â Šâ ‰" }, { "input": "autobiographical", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "autobiographically", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "autobiographies", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "autobiography", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “â ½" }, { "input": "autobiography's", "output": "â â ¥â žâ •⠃⠊⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "autoclave", "output": "â â ¥â žâ •⠉⠇â â §â ‘" }, { "input": "autoclave's", "output": "â â ¥â žâ •⠉⠇â â §â ‘â „â Ž" }, { "input": "autoclaves", "output": "â â ¥â žâ •⠉⠇â â §â ‘â Ž" }, { "input": "autocracies", "output": "â â ¥â žâ •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "autocracy", "output": "â â ¥â žâ •⠉⠗â â ‰â ½" }, { "input": "autocracy's", "output": "â â ¥â žâ •⠉⠗â â ‰â ½â „â Ž" }, { "input": "autocrat", "output": "â â ¥â žâ •⠉⠗â â ž" }, { "input": "autocrat's", "output": "â â ¥â žâ •⠉⠗â â žâ „â Ž" }, { "input": "autocratic", "output": "â â ¥â žâ •⠉⠗â â žâ Šâ ‰" }, { "input": "autocratically", "output": "â â ¥â žâ •⠉⠗â â žâ Šâ ‰â  â ½" }, { "input": "autocrats", "output": "â â ¥â žâ •⠉⠗â â žâ Ž" }, { "input": "autodidact", "output": "â â ¥â žâ •⠙⠊⠙â â ‰â ž" }, { "input": "autodidact's", "output": "â â ¥â žâ •⠙⠊⠙â â ‰â žâ „â Ž" }, { "input": "autodidacts", "output": "â â ¥â žâ •⠙⠊⠙â â ‰â žâ Ž" }, { "input": "autograph", "output": "â â ¥â žâ •⠛⠗â â â “" }, { "input": "autograph's", "output": "â â ¥â žâ •⠛⠗â â â “â „â Ž" }, { "input": "autographed", "output": "â â ¥â žâ •⠛⠗â â â “â «" }, { "input": "autographing", "output": "â â ¥â žâ •⠛⠗â â â “â Œ" }, { "input": "autographs", "output": "â â ¥â žâ •⠛⠗â â â “â Ž" }, { "input": "autoimmune", "output": "â â ¥â žâ •â Šâ â â ¥â â ‘" }, { "input": "autoimmunity", "output": "â â ¥â žâ •â Šâ â â ¥â â °â ½" }, { "input": "autoimmunity's", "output": "â â ¥â žâ •â Šâ â â ¥â â °â ½â „â Ž" }, { "input": "automate", "output": "â â ¥â žâ •â â â žâ ‘" }, { "input": "automated", "output": "â â ¥â žâ •â â â žâ «" }, { "input": "automates", "output": "â â ¥â žâ •â â â žâ ‘â Ž" }, { "input": "automatic", "output": "â â ¥â žâ •â â â žâ Šâ ‰" }, { "input": "automatic's", "output": "â â ¥â žâ •â â â žâ Šâ ‰â „â Ž" }, { "input": "automatically", "output": "â â ¥â žâ •â â â žâ Šâ ‰â  â ½" }, { "input": "automatics", "output": "â â ¥â žâ •â â â žâ Šâ ‰â Ž" }, { "input": "automating", "output": "â â ¥â žâ •â â â žâ Œ" }, { "input": "automation", "output": "â â ¥â žâ •â â  â " }, { "input": "automation's", "output": "â â ¥â žâ •â â  â â „â Ž" }, { "input": "automatism", "output": "â â ¥â žâ •â â â žâ Šâ Žâ " }, { "input": "automatism's", "output": "â â ¥â žâ •â â â žâ Šâ Žâ â „â Ž" }, { "input": "automatize", "output": "â â ¥â žâ •â â â žâ Šâ µâ ‘" }, { "input": "automatized", "output": "â â ¥â žâ •â â â žâ Šâ µâ «" }, { "input": "automatizes", "output": "â â ¥â žâ •â â â žâ Šâ µâ ‘â Ž" }, { "input": "automatizing", "output": "â â ¥â žâ •â â â žâ Šâ µâ Œ" }, { "input": "automaton", "output": "â â ¥â žâ •â â â žâ •â " }, { "input": "automaton's", "output": "â â ¥â žâ •â â â žâ •â â „â Ž" }, { "input": "automatons", "output": "â â ¥â žâ •â â â žâ •â â Ž" }, { "input": "automobile", "output": "â â ¥â žâ •â â •⠃⠊⠇⠑" }, { "input": "automobile's", "output": "â â ¥â žâ •â â •⠃⠊⠇⠑⠄⠎" }, { "input": "automobiled", "output": "â â ¥â žâ •â â •⠃⠊⠇⠫" }, { "input": "automobiles", "output": "â â ¥â žâ •â â •⠃⠊⠇⠑⠎" }, { "input": "automobiling", "output": "â â ¥â žâ •â â •⠃⠊⠇⠌" }, { "input": "automotive", "output": "â â ¥â žâ •â â •â žâ Šâ §â ‘" }, { "input": "autonomic", "output": "â â ¥â žâ •â â •â â Šâ ‰" }, { "input": "autonomous", "output": "â â ¥â žâ •â â •â â ³â Ž" }, { "input": "autonomously", "output": "â â ¥â žâ •â â •â â ³â Žâ ‡â ½" }, { "input": "autonomy", "output": "â â ¥â žâ •â â •â â ½" }, { "input": "autonomy's", "output": "â â ¥â žâ •â â •â â ½â „â Ž" }, { "input": "autopilot", "output": "â â ¥â žâ •â â Šâ ‡â •â ž" }, { "input": "autopilot's", "output": "â â ¥â žâ •â â Šâ ‡â •â žâ „â Ž" }, { "input": "autopilots", "output": "â â ¥â žâ •â â Šâ ‡â •â žâ Ž" }, { "input": "autopsied", "output": "â â ¥â žâ •â â Žâ Šâ «" }, { "input": "autopsies", "output": "â â ¥â žâ •â â Žâ Šâ ‘â Ž" }, { "input": "autopsy", "output": "â â ¥â žâ •â â Žâ ½" }, { "input": "autopsy's", "output": "â â ¥â žâ •â â Žâ ½â „â Ž" }, { "input": "autopsying", "output": "â â ¥â žâ •â â Žâ ½â Œ" }, { "input": "autos", "output": "â â ¥â žâ •â Ž" }, { "input": "autoworker", "output": "â â ¥â žâ •â â ºâ »" }, { "input": "autoworker's", "output": "â â ¥â žâ •â â ºâ »â „â Ž" }, { "input": "autoworkers", "output": "â â ¥â žâ •â â ºâ »â Ž" }, { "input": "autumn", "output": "â â ¥â žâ ¥â â " }, { "input": "autumn's", "output": "â â ¥â žâ ¥â â â „â Ž" }, { "input": "autumnal", "output": "â â ¥â žâ ¥â â â â ‡" }, { "input": "autumns", "output": "â â ¥â žâ ¥â â â Ž" }, { "input": "auxiliaries", "output": "â â ¥â ­â Šâ ‡â Šâ œâ Šâ ‘â Ž" }, { "input": "auxiliary", "output": "â â ¥â ­â Šâ ‡â Šâ œâ ½" }, { "input": "auxiliary's", "output": "â â ¥â ­â Šâ ‡â Šâ œâ ½â „â Ž" }, { "input": "auxin", "output": "â â ¥â ­â ”" }, { "input": "auxin's", "output": "â â ¥â ­â ”â „â Ž" }, { "input": "avail", "output": "â â §â â Šâ ‡" }, { "input": "avail's", "output": "â â §â â Šâ ‡â „â Ž" }, { "input": "availability", "output": "â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½" }, { "input": "availability's", "output": "â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "available", "output": "â â §â â Šâ ‡â â ¼" }, { "input": "availed", "output": "â â §â â Šâ ‡â «" }, { "input": "availing", "output": "â â §â â Šâ ‡â Œ" }, { "input": "avails", "output": "â â §â â Šâ ‡â Ž" }, { "input": "avalanche", "output": "â â §â â ‡â â â ¡â ‘" }, { "input": "avalanche's", "output": "â â §â â ‡â â â ¡â ‘â „â Ž" }, { "input": "avalanches", "output": "â â §â â ‡â â â ¡â ‘â Ž" }, { "input": "avarice", "output": "â â §â œâ Šâ ‰â ‘" }, { "input": "avarice's", "output": "â â §â œâ Šâ ‰â ‘â „â Ž" }, { "input": "avaricious", "output": "â â §â œâ Šâ ‰â Šâ ³â Ž" }, { "input": "avariciously", "output": "â â §â œâ Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "avast", "output": "â â §â â Œ" }, { "input": "avatar", "output": "â â §â â žâ œ" }, { "input": "avatar's", "output": "â â §â â žâ œâ „â Ž" }, { "input": "avatars", "output": "â â §â â žâ œâ Ž" }, { "input": "avaunt", "output": "â â §â â ¥â â ž" }, { "input": "avenge", "output": "â â §â ¢â ›â ‘" }, { "input": "avenged", "output": "â â §â ¢â ›â «" }, { "input": "avenger", "output": "â â §â ¢â ›â »" }, { "input": "avenger's", "output": "â â §â ¢â ›â »â „â Ž" }, { "input": "avengers", "output": "â â §â ¢â ›â »â Ž" }, { "input": "avenges", "output": "â â §â ¢â ›â ‘â Ž" }, { "input": "avenging", "output": "â â §â ¢â ›â Œ" }, { "input": "avenue", "output": "â â §â ¢â ¥â ‘" }, { "input": "avenue's", "output": "â â §â ¢â ¥â ‘â „â Ž" }, { "input": "avenues", "output": "â â §â ¢â ¥â ‘â Ž" }, { "input": "aver", "output": "â â §â »" }, { "input": "average", "output": "â â §â »â â ›â ‘" }, { "input": "average's", "output": "â â §â »â â ›â ‘â „â Ž" }, { "input": "averaged", "output": "â â §â »â â ›â «" }, { "input": "averages", "output": "â â §â »â â ›â ‘â Ž" }, { "input": "averaging", "output": "â â §â »â â ›â Œ" }, { "input": "averred", "output": "â â §â »â —â «" }, { "input": "averring", "output": "â â §â »â —â Œ" }, { "input": "avers", "output": "â â §â »â Ž" }, { "input": "averse", "output": "â â §â »â Žâ ‘" }, { "input": "aversion", "output": "â â §â »â ¨â " }, { "input": "aversion's", "output": "â â §â »â ¨â â „â Ž" }, { "input": "aversions", "output": "â â §â »â ¨â â Ž" }, { "input": "avert", "output": "â â §â »â ž" }, { "input": "averted", "output": "â â §â »â žâ «" }, { "input": "averting", "output": "â â §â »â žâ Œ" }, { "input": "averts", "output": "â â §â »â žâ Ž" }, { "input": "avian", "output": "â â §â Šâ â " }, { "input": "aviaries", "output": "â â §â Šâ œâ Šâ ‘â Ž" }, { "input": "aviary", "output": "â â §â Šâ œâ ½" }, { "input": "aviary's", "output": "â â §â Šâ œâ ½â „â Ž" }, { "input": "aviation", "output": "â â §â Šâ  â " }, { "input": "aviation's", "output": "â â §â Šâ  â â „â Ž" }, { "input": "aviator", "output": "â â §â Šâ â žâ •â —" }, { "input": "aviator's", "output": "â â §â Šâ â žâ •â —â „â Ž" }, { "input": "aviators", "output": "â â §â Šâ â žâ •â —â Ž" }, { "input": "aviatrices", "output": "â â §â Šâ â žâ —⠊⠉⠑⠎" }, { "input": "aviatrix", "output": "â â §â Šâ â žâ —â Šâ ­" }, { "input": "aviatrix's", "output": "â â §â Šâ â žâ —â Šâ ­â „â Ž" }, { "input": "aviatrixes", "output": "â â §â Šâ â žâ —â Šâ ­â ‘â Ž" }, { "input": "avid", "output": "â â §â Šâ ™" }, { "input": "avidity", "output": "â â §â Šâ ™â °â ½" }, { "input": "avidity's", "output": "â â §â Šâ ™â °â ½â „â Ž" }, { "input": "avidly", "output": "â â §â Šâ ™â ‡â ½" }, { "input": "avionics", "output": "â â §â Šâ •â â Šâ ‰â Ž" }, { "input": "avionics's", "output": "â â §â Šâ •â â Šâ ‰â Žâ „â Ž" }, { "input": "avitaminosis", "output": "â â §â Šâ žâ â â ”â •â Žâ Šâ Ž" }, { "input": "avitaminosis's", "output": "â â §â Šâ žâ â â ”â •â Žâ Šâ Žâ „â Ž" }, { "input": "avocado", "output": "â â §â •â ‰â â ™â •" }, { "input": "avocado's", "output": "â â §â •â ‰â â ™â •â „â Ž" }, { "input": "avocados", "output": "â â §â •â ‰â â ™â •â Ž" }, { "input": "avocation", "output": "â â §â •⠉⠠â " }, { "input": "avocation's", "output": "â â §â •⠉⠠â â „â Ž" }, { "input": "avocational", "output": "â â §â •⠉⠠â â â ‡" }, { "input": "avocations", "output": "â â §â •⠉⠠â â Ž" }, { "input": "avoid", "output": "â â §â •â Šâ ™" }, { "input": "avoidable", "output": "â â §â •â Šâ ™â â ¼" }, { "input": "avoidably", "output": "â â §â •â Šâ ™â â ƒâ ‡â ½" }, { "input": "avoidance", "output": "â â §â •⠊⠙⠨⠑" }, { "input": "avoidance's", "output": "â â §â •⠊⠙⠨⠑⠄⠎" }, { "input": "avoided", "output": "â â §â •⠊⠙⠫" }, { "input": "avoiding", "output": "â â §â •⠊⠙⠌" }, { "input": "avoids", "output": "â â §â •⠊⠙⠎" }, { "input": "avoirdupois", "output": "â â §â •⠊⠗⠙⠥â â •â Šâ Ž" }, { "input": "avoirdupois's", "output": "â â §â •⠊⠗⠙⠥â â •â Šâ Žâ „â Ž" }, { "input": "avouch", "output": "â â §â ³â ¡" }, { "input": "avouched", "output": "â â §â ³â ¡â «" }, { "input": "avouches", "output": "â â §â ³â ¡â ‘â Ž" }, { "input": "avouching", "output": "â â §â ³â ¡â Œ" }, { "input": "avow", "output": "â â §â ª" }, { "input": "avowal", "output": "â â §â ªâ â ‡" }, { "input": "avowal's", "output": "â â §â ªâ â ‡â „â Ž" }, { "input": "avowals", "output": "â â §â ªâ â ‡â Ž" }, { "input": "avowed", "output": "â â §â ªâ «" }, { "input": "avowedly", "output": "â â §â ªâ «â ‡â ½" }, { "input": "avowing", "output": "â â §â ªâ Œ" }, { "input": "avows", "output": "â â §â ªâ Ž" }, { "input": "avuncular", "output": "â â §â ¥â â ‰â ¥â ‡â œ" }, { "input": "await", "output": "â â ºâ â Šâ ž" }, { "input": "awaited", "output": "â â ºâ â Šâ žâ «" }, { "input": "awaiting", "output": "â â ºâ â Šâ žâ Œ" }, { "input": "awaits", "output": "â â ºâ â Šâ žâ Ž" }, { "input": "awake", "output": "â â ºâ â …â ‘" }, { "input": "awaken", "output": "â â ºâ â …â ¢" }, { "input": "awakened", "output": "â â ºâ â …⠢⠫" }, { "input": "awakening", "output": "â â ºâ â …⠢⠌" }, { "input": "awakening's", "output": "â â ºâ â …⠢⠌⠄⠎" }, { "input": "awakenings", "output": "â â ºâ â …⠢⠌⠎" }, { "input": "awakens", "output": "â â ºâ â …⠢⠎" }, { "input": "awakes", "output": "â â ºâ â …â ‘â Ž" }, { "input": "awaking", "output": "â â ºâ â …â Œ" }, { "input": "award", "output": "â â ºâ œâ ™" }, { "input": "award's", "output": "â â ºâ œâ ™â „â Ž" }, { "input": "awarded", "output": "â â ºâ œâ ™â «" }, { "input": "awarding", "output": "â â ºâ œâ ™â Œ" }, { "input": "awards", "output": "â â ºâ œâ ™â Ž" }, { "input": "aware", "output": "â â ºâ œâ ‘" }, { "input": "awareness", "output": "â â ºâ œâ ‘â °â Ž" }, { "input": "awareness's", "output": "â â ºâ œâ ‘â °â Žâ „â Ž" }, { "input": "awash", "output": "â â ºâ â ©" }, { "input": "away", "output": "â â ºâ â ½" }, { "input": "awe", "output": "â â ºâ ‘" }, { "input": "awe's", "output": "â â ºâ ‘â „â Ž" }, { "input": "awed", "output": "â â ºâ «" }, { "input": "aweigh", "output": "â â ºâ ‘â Šâ £" }, { "input": "awes", "output": "â â ºâ ‘â Ž" }, { "input": "awesome", "output": "â â ºâ ‘â â Ž" }, { "input": "awesomely", "output": "â â ºâ ‘â â Žâ ‡â ½" }, { "input": "awesomeness", "output": "â â ºâ ‘â â Žâ °â Ž" }, { "input": "awesomeness's", "output": "â â ºâ ‘â â Žâ °â Žâ „â Ž" }, { "input": "awestruck", "output": "â â ºâ ‘⠌⠗⠥⠉⠅" }, { "input": "awful", "output": "â â ºâ °â ‡" }, { "input": "awfuller", "output": "â â ºâ °â ‡â ‡â »" }, { "input": "awfullest", "output": "â â ºâ °â ‡â ‡â ‘â Œ" }, { "input": "awfully", "output": "â â ºâ °â ‡â ‡â ½" }, { "input": "awfulness", "output": "â â ºâ °â ‡â °â Ž" }, { "input": "awfulness's", "output": "â â ºâ °â ‡â °â Žâ „â Ž" }, { "input": "awhile", "output": "â â ±â Šâ ‡â ‘" }, { "input": "awing", "output": "â â ºâ Œ" }, { "input": "awkward", "output": "â â ºâ …⠺⠜⠙" }, { "input": "awkwarder", "output": "â â ºâ …⠺⠜⠙⠻" }, { "input": "awkwardest", "output": "â â ºâ …⠺⠜⠙⠑⠌" }, { "input": "awkwardly", "output": "â â ºâ …⠺⠜⠙⠇⠽" }, { "input": "awkwardness", "output": "â â ºâ …⠺⠜⠙⠰⠎" }, { "input": "awkwardness's", "output": "â â ºâ …⠺⠜⠙⠰⠎⠄⠎" }, { "input": "awl", "output": "â â ºâ ‡" }, { "input": "awl's", "output": "â â ºâ ‡â „â Ž" }, { "input": "awls", "output": "â â ºâ ‡â Ž" }, { "input": "awn", "output": "â â ºâ " }, { "input": "awn's", "output": "â â ºâ â „â Ž" }, { "input": "awning", "output": "â â ºâ â Œ" }, { "input": "awning's", "output": "â â ºâ â Œâ „â Ž" }, { "input": "awnings", "output": "â â ºâ â Œâ Ž" }, { "input": "awns", "output": "â â ºâ â Ž" }, { "input": "awoke", "output": "â â ºâ •â …â ‘" }, { "input": "awoken", "output": "â â ºâ •â …â ¢" }, { "input": "awry", "output": "â â ºâ —â ½" }, { "input": "ax", "output": "â â ­" }, { "input": "ax's", "output": "â â ­â „â Ž" }, { "input": "axed", "output": "â â ­â «" }, { "input": "axes", "output": "â â ­â ‘â Ž" }, { "input": "axial", "output": "â â ­â Šâ â ‡" }, { "input": "axially", "output": "â â ­â Šâ  â ½" }, { "input": "axing", "output": "â â ­â Œ" }, { "input": "axiom", "output": "â â ­â Šâ •â " }, { "input": "axiom's", "output": "â â ­â Šâ •â â „â Ž" }, { "input": "axiomatic", "output": "â â ­â Šâ •â â â žâ Šâ ‰" }, { "input": "axiomatically", "output": "â â ­â Šâ •â â â žâ Šâ ‰â  â ½" }, { "input": "axioms", "output": "â â ­â Šâ •â â Ž" }, { "input": "axis", "output": "â â ­â Šâ Ž" }, { "input": "axis's", "output": "â â ­â Šâ Žâ „â Ž" }, { "input": "axle", "output": "â â ­â ‡â ‘" }, { "input": "axle's", "output": "â â ­â ‡â ‘â „â Ž" }, { "input": "axles", "output": "â â ­â ‡â ‘â Ž" }, { "input": "axletree", "output": "â â ­â ‡â ‘â žâ —â ‘â ‘" }, { "input": "axletree's", "output": "â â ­â ‡â ‘â žâ —â ‘â ‘â „â Ž" }, { "input": "axletrees", "output": "â â ­â ‡â ‘â žâ —â ‘â ‘â Ž" }, { "input": "axolotl", "output": "â â ­â •⠇⠕⠞⠇" }, { "input": "axolotl's", "output": "â â ­â •⠇⠕⠞⠇⠄⠎" }, { "input": "axolotls", "output": "â â ­â •⠇⠕⠞⠇⠎" }, { "input": "axon", "output": "â â ­â •â " }, { "input": "axon's", "output": "â â ­â •â â „â Ž" }, { "input": "axons", "output": "â â ­â •â â Ž" }, { "input": "ayah", "output": "â â ½â â “" }, { "input": "ayah's", "output": "â â ½â â “â „â Ž" }, { "input": "ayahs", "output": "â â ½â â “â Ž" }, { "input": "ayatollah", "output": "â â ½â â žâ •⠇⠇â â “" }, { "input": "ayatollah's", "output": "â â ½â â žâ •⠇⠇â â “â „â Ž" }, { "input": "ayatollahs", "output": "â â ½â â žâ •⠇⠇â â “â Ž" }, { "input": "aye", "output": "â â ½â ‘" }, { "input": "aye's", "output": "â â ½â ‘â „â Ž" }, { "input": "ayes", "output": "â â ½â ‘â Ž" }, { "input": "azalea", "output": "â â µâ â ‡â ‘â " }, { "input": "azalea's", "output": "â â µâ â ‡â ‘â â „â Ž" }, { "input": "azaleas", "output": "â â µâ â ‡â ‚â Ž" }, { "input": "azimuth", "output": "â â µâ Šâ â ¥â ¹" }, { "input": "azimuth's", "output": "â â µâ Šâ â ¥â ¹â „â Ž" }, { "input": "azimuths", "output": "â â µâ Šâ â ¥â ¹â Ž" }, { "input": "azure", "output": "â â µâ ¥â —â ‘" }, { "input": "azure's", "output": "â â µâ ¥â —â ‘â „â Ž" }, { "input": "azures", "output": "â â µâ ¥â —â ‘â Ž" }, { "input": "b", "output": "â °â ƒ" }, { "input": "baa", "output": "â ƒâ â " }, { "input": "baa's", "output": "â ƒâ â â „â Ž" }, { "input": "baaed", "output": "â ƒâ â â «" }, { "input": "baaing", "output": "â ƒâ â â Œ" }, { "input": "baas", "output": "â ƒâ â â Ž" }, { "input": "babble", "output": "â ƒâ â ƒâ ¼" }, { "input": "babble's", "output": "â ƒâ â ƒâ ¼â „â Ž" }, { "input": "babbled", "output": "â ƒâ â ƒâ ¼â ™" }, { "input": "babbler", "output": "â ƒâ â ƒâ ¼â —" }, { "input": "babbler's", "output": "â ƒâ â ƒâ ¼â —â „â Ž" }, { "input": "babblers", "output": "â ƒâ â ƒâ ¼â —â Ž" }, { "input": "babbles", "output": "â ƒâ â ƒâ ¼â Ž" }, { "input": "babbling", "output": "â ƒâ â †â ‡â Œ" }, { "input": "babe", "output": "â ƒâ â ƒâ ‘" }, { "input": "babe's", "output": "â ƒâ â ƒâ ‘â „â Ž" }, { "input": "babel", "output": "â ƒâ â ƒâ ‘â ‡" }, { "input": "babel's", "output": "â ƒâ â ƒâ ‘⠇⠄⠎" }, { "input": "babels", "output": "â ƒâ â ƒâ ‘⠇⠎" }, { "input": "babes", "output": "â ƒâ â ƒâ ‘â Ž" }, { "input": "babied", "output": "â ƒâ â ƒâ Šâ «" }, { "input": "babier", "output": "â ƒâ â ƒâ Šâ »" }, { "input": "babies", "output": "â ƒâ â ƒâ Šâ ‘â Ž" }, { "input": "babiest", "output": "â ƒâ â ƒâ Šâ ‘â Œ" }, { "input": "baboon", "output": "â ƒâ â ƒâ •â •â " }, { "input": "baboon's", "output": "â ƒâ â ƒâ •â •â â „â Ž" }, { "input": "baboons", "output": "â ƒâ â ƒâ •â •â â Ž" }, { "input": "babushka", "output": "â ƒâ â ƒâ ¥â ©â …â " }, { "input": "babushka's", "output": "â ƒâ â ƒâ ¥â ©â …â â „â Ž" }, { "input": "babushkas", "output": "â ƒâ â ƒâ ¥â ©â …â â Ž" }, { "input": "baby", "output": "â ƒâ â ƒâ ½" }, { "input": "baby's", "output": "â ƒâ â ƒâ ½â „â Ž" }, { "input": "babyhood", "output": "â ƒâ â ƒâ ½â “â •â •â ™" }, { "input": "babyhood's", "output": "â ƒâ â ƒâ ½â “⠕⠕⠙⠄⠎" }, { "input": "babying", "output": "â ƒâ â ƒâ ½â Œ" }, { "input": "babyish", "output": "â ƒâ â ƒâ ½â Šâ ©" }, { "input": "babysat", "output": "â ƒâ â ƒâ ½â Žâ â ž" }, { "input": "babysit", "output": "â ƒâ â ƒâ ½â Žâ Šâ ž" }, { "input": "babysits", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ Ž" }, { "input": "babysitter", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ »" }, { "input": "babysitter's", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ »â „â Ž" }, { "input": "babysitters", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ »â Ž" }, { "input": "babysitting", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ Œ" }, { "input": "babysitting's", "output": "â ƒâ â ƒâ ½â Žâ Šâ žâ žâ Œâ „â Ž" }, { "input": "baccalaureate", "output": "â ƒâ â ’â â ‡â â ¥â —â ‚â žâ ‘" }, { "input": "baccalaureate's", "output": "â ƒâ â ’â â ‡â â ¥â —â ‚â žâ ‘â „â Ž" }, { "input": "baccalaureates", "output": "â ƒâ â ’â â ‡â â ¥â —â ‚â žâ ‘â Ž" }, { "input": "baccarat", "output": "â ƒâ â ’â œâ â ž" }, { "input": "baccarat's", "output": "â ƒâ â ’â œâ â žâ „â Ž" }, { "input": "bacchanal", "output": "â ƒâ â ‰â ¡â â â â ‡" }, { "input": "bacchanal's", "output": "â ƒâ â ‰â ¡â â â â ‡â „â Ž" }, { "input": "bacchanalia", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ " }, { "input": "bacchanalia's", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ â „â Ž" }, { "input": "bacchanalian", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ â " }, { "input": "bacchanalian's", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ â â „â Ž" }, { "input": "bacchanalians", "output": "â ƒâ â ‰â ¡â â â â ‡â Šâ â â Ž" }, { "input": "bacchanals", "output": "â ƒâ â ‰â ¡â â â â ‡â Ž" }, { "input": "bachelor", "output": "â ƒâ â ¡â ‘⠇⠕⠗" }, { "input": "bachelor's", "output": "â ƒâ â ¡â ‘⠇⠕⠗⠄⠎" }, { "input": "bachelorhood", "output": "â ƒâ â ¡â ‘⠇⠕⠗⠓⠕⠕⠙" }, { "input": "bachelorhood's", "output": "â ƒâ â ¡â ‘⠇⠕⠗⠓⠕⠕⠙⠄⠎" }, { "input": "bachelors", "output": "â ƒâ â ¡â ‘⠇⠕⠗⠎" }, { "input": "bacillary", "output": "â ƒâ â ‰â Šâ ‡â ‡â œâ ½" }, { "input": "bacilli", "output": "â ƒâ â ‰â Šâ ‡â ‡â Š" }, { "input": "bacillus", "output": "â ƒâ â ‰â Šâ ‡â ‡â ¥â Ž" }, { "input": "bacillus's", "output": "â ƒâ â ‰â Šâ ‡â ‡â ¥â Žâ „â Ž" }, { "input": "back", "output": "â ƒâ â ‰â …" }, { "input": "back's", "output": "â ƒâ â ‰â …â „â Ž" }, { "input": "backache", "output": "â ƒâ â ‰â …â â ¡â ‘" }, { "input": "backache's", "output": "â ƒâ â ‰â …â â ¡â ‘â „â Ž" }, { "input": "backaches", "output": "â ƒâ â ‰â …â â ¡â ‘â Ž" }, { "input": "backbit", "output": "â ƒâ â ‰â …⠃⠊⠞" }, { "input": "backbite", "output": "â ƒâ â ‰â …⠃⠊⠞⠑" }, { "input": "backbiter", "output": "â ƒâ â ‰â …⠃⠊⠞⠻" }, { "input": "backbiter's", "output": "â ƒâ â ‰â …⠃⠊⠞⠻⠄⠎" }, { "input": "backbiters", "output": "â ƒâ â ‰â …⠃⠊⠞⠻⠎" }, { "input": "backbites", "output": "â ƒâ â ‰â …⠃⠊⠞⠑⠎" }, { "input": "backbiting", "output": "â ƒâ â ‰â …⠃⠊⠞⠌" }, { "input": "backbitten", "output": "â ƒâ â ‰â …⠃⠊⠞⠞⠢" }, { "input": "backboard", "output": "â ƒâ â ‰â …⠃⠕⠜⠙" }, { "input": "backboard's", "output": "â ƒâ â ‰â …⠃⠕⠜⠙⠄⠎" }, { "input": "backboards", "output": "â ƒâ â ‰â …⠃⠕⠜⠙⠎" }, { "input": "backbone", "output": "â ƒâ â ‰â …â ƒâ â •" }, { "input": "backbone's", "output": "â ƒâ â ‰â …â ƒâ â •â „â Ž" }, { "input": "backbones", "output": "â ƒâ â ‰â …â ƒâ â •â Ž" }, { "input": "backbreaking", "output": "â ƒâ â ‰â …⠃⠗⠂⠅⠌" }, { "input": "backdate", "output": "â ƒâ â ‰â …â ™â â žâ ‘" }, { "input": "backdated", "output": "â ƒâ â ‰â …â ™â â žâ «" }, { "input": "backdates", "output": "â ƒâ â ‰â …â ™â â žâ ‘â Ž" }, { "input": "backdating", "output": "â ƒâ â ‰â …â ™â â žâ Œ" }, { "input": "backdrop", "output": "â ƒâ â ‰â …⠙⠗⠕â " }, { "input": "backdrop's", "output": "â ƒâ â ‰â …⠙⠗⠕â â „â Ž" }, { "input": "backdrops", "output": "â ƒâ â ‰â …⠙⠗⠕â â Ž" }, { "input": "backed", "output": "â ƒâ â ‰â …â «" }, { "input": "backer", "output": "â ƒâ â ‰â …â »" }, { "input": "backer's", "output": "â ƒâ â ‰â …⠻⠄⠎" }, { "input": "backers", "output": "â ƒâ â ‰â …⠻⠎" }, { "input": "backfield", "output": "â ƒâ â ‰â …⠋⠊⠑⠇⠙" }, { "input": "backfield's", "output": "â ƒâ â ‰â …⠋⠊⠑⠇⠙⠄⠎" }, { "input": "backfields", "output": "â ƒâ â ‰â …⠋⠊⠑⠇⠙⠎" }, { "input": "backfire", "output": "â ƒâ â ‰â …â ‹â Šâ —â ‘" }, { "input": "backfire's", "output": "â ƒâ â ‰â …â ‹â Šâ —â ‘â „â Ž" }, { "input": "backfired", "output": "â ƒâ â ‰â …â ‹â Šâ —â «" }, { "input": "backfires", "output": "â ƒâ â ‰â …â ‹â Šâ —â ‘â Ž" }, { "input": "backfiring", "output": "â ƒâ â ‰â …â ‹â Šâ —â Œ" }, { "input": "backgammon", "output": "â ƒâ â ‰â …â ›â â â â •â " }, { "input": "backgammon's", "output": "â ƒâ â ‰â …â ›â â â â •â â „â Ž" }, { "input": "background", "output": "â ƒâ â ‰â …⠛⠗⠨⠙" }, { "input": "background's", "output": "â ƒâ â ‰â …⠛⠗⠨⠙⠄⠎" }, { "input": "backgrounder", "output": "â ƒâ â ‰â …⠛⠗⠨⠙⠻" }, { "input": "backgrounder's", "output": "â ƒâ â ‰â …⠛⠗⠨⠙⠻⠄⠎" }, { "input": "backgrounders", "output": "â ƒâ â ‰â …⠛⠗⠨⠙⠻⠎" }, { "input": "backgrounds", "output": "â ƒâ â ‰â …⠛⠗⠨⠙⠎" }, { "input": "backhand", "output": "â ƒâ â ‰â …â “â ¯" }, { "input": "backhand's", "output": "â ƒâ â ‰â …⠓⠯⠄⠎" }, { "input": "backhanded", "output": "â ƒâ â ‰â …⠓⠯⠫" }, { "input": "backhandedly", "output": "â ƒâ â ‰â …⠓⠯⠫⠇⠽" }, { "input": "backhanding", "output": "â ƒâ â ‰â …⠓⠯⠌" }, { "input": "backhands", "output": "â ƒâ â ‰â …⠓⠯⠎" }, { "input": "backhoe", "output": "â ƒâ â ‰â …â “â •â ‘" }, { "input": "backhoe's", "output": "â ƒâ â ‰â …â “â •â ‘â „â Ž" }, { "input": "backhoes", "output": "â ƒâ â ‰â …â “â •â ‘â Ž" }, { "input": "backing", "output": "â ƒâ â ‰â …â Œ" }, { "input": "backing's", "output": "â ƒâ â ‰â …⠌⠄⠎" }, { "input": "backings", "output": "â ƒâ â ‰â …⠌⠎" }, { "input": "backlash", "output": "â ƒâ â ‰â …â ‡â â ©" }, { "input": "backlash's", "output": "â ƒâ â ‰â …â ‡â â ©â „â Ž" }, { "input": "backlashes", "output": "â ƒâ â ‰â …â ‡â â ©â ‘â Ž" }, { "input": "backless", "output": "â ƒâ â ‰â …⠨⠎" }, { "input": "backlog", "output": "â ƒâ â ‰â …⠇⠕⠛" }, { "input": "backlog's", "output": "â ƒâ â ‰â …⠇⠕⠛⠄⠎" }, { "input": "backlogged", "output": "â ƒâ â ‰â …⠇⠕⠶⠫" }, { "input": "backlogging", "output": "â ƒâ â ‰â …⠇⠕⠶⠌" }, { "input": "backlogs", "output": "â ƒâ â ‰â …⠇⠕⠛⠎" }, { "input": "backpack", "output": "â ƒâ â ‰â …â â â ‰â …" }, { "input": "backpack's", "output": "â ƒâ â ‰â …â â â ‰â …â „â Ž" }, { "input": "backpacked", "output": "â ƒâ â ‰â …â â â ‰â …â «" }, { "input": "backpacker", "output": "â ƒâ â ‰â …â â â ‰â …â »" }, { "input": "backpacker's", "output": "â ƒâ â ‰â …â â â ‰â …⠻⠄⠎" }, { "input": "backpackers", "output": "â ƒâ â ‰â …â â â ‰â …⠻⠎" }, { "input": "backpacking", "output": "â ƒâ â ‰â …â â â ‰â …â Œ" }, { "input": "backpacking's", "output": "â ƒâ â ‰â …â â â ‰â …⠌⠄⠎" }, { "input": "backpacks", "output": "â ƒâ â ‰â …â â â ‰â …â Ž" }, { "input": "backpedal", "output": "â ƒâ â ‰â …â â «â â ‡" }, { "input": "backpedaled", "output": "â ƒâ â ‰â …â â «â â ‡â «" }, { "input": "backpedaling", "output": "â ƒâ â ‰â …â â «â â ‡â Œ" }, { "input": "backpedals", "output": "â ƒâ â ‰â …â â «â â ‡â Ž" }, { "input": "backrest", "output": "â ƒâ â ‰â …â —â ‘â Œ" }, { "input": "backrest's", "output": "â ƒâ â ‰â …⠗⠑⠌⠄⠎" }, { "input": "backrests", "output": "â ƒâ â ‰â …⠗⠑⠌⠎" }, { "input": "backs", "output": "â ƒâ â ‰â …â Ž" }, { "input": "backscratching's", "output": "â ƒâ â ‰â …⠎⠉⠗â â žâ ¡â Œâ „â Ž" }, { "input": "backseat", "output": "â ƒâ â ‰â …â Žâ ‚â ž" }, { "input": "backseat's", "output": "â ƒâ â ‰â …â Žâ ‚â žâ „â Ž" }, { "input": "backseats", "output": "â ƒâ â ‰â …â Žâ ‚â žâ Ž" }, { "input": "backside", "output": "â ƒâ â ‰â …⠎⠊⠙⠑" }, { "input": "backside's", "output": "â ƒâ â ‰â …⠎⠊⠙⠑⠄⠎" }, { "input": "backsides", "output": "â ƒâ â ‰â …⠎⠊⠙⠑⠎" }, { "input": "backslapper", "output": "â ƒâ â ‰â …â Žâ ‡â â â â »" }, { "input": "backslapper's", "output": "â ƒâ â ‰â …â Žâ ‡â â â â »â „â Ž" }, { "input": "backslappers", "output": "â ƒâ â ‰â …â Žâ ‡â â â â »â Ž" }, { "input": "backslapping's", "output": "â ƒâ â ‰â …â Žâ ‡â â â â Œâ „â Ž" }, { "input": "backslash", "output": "â ƒâ â ‰â …â Žâ ‡â â ©" }, { "input": "backslid", "output": "â ƒâ â ‰â …⠎⠇⠊⠙" }, { "input": "backslide", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠑" }, { "input": "backslider", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠻" }, { "input": "backslider's", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠻⠄⠎" }, { "input": "backsliders", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠻⠎" }, { "input": "backslides", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠑⠎" }, { "input": "backsliding", "output": "â ƒâ â ‰â …⠎⠇⠊⠙⠌" }, { "input": "backspace", "output": "â ƒâ â ‰â …â Žâ â â ‰â ‘" }, { "input": "backspace's", "output": "â ƒâ â ‰â …â Žâ â â ‰â ‘â „â Ž" }, { "input": "backspaced", "output": "â ƒâ â ‰â …â Žâ â â ‰â «" }, { "input": "backspaces", "output": "â ƒâ â ‰â …â Žâ â â ‰â ‘â Ž" }, { "input": "backspacing", "output": "â ƒâ â ‰â …â Žâ â â ‰â Œ" }, { "input": "backspin", "output": "â ƒâ â ‰â …â Žâ â ”" }, { "input": "backspin's", "output": "â ƒâ â ‰â …â Žâ â ”â „â Ž" }, { "input": "backstabber", "output": "â ƒâ â ‰â …â Œâ â †â »" }, { "input": "backstabber's", "output": "â ƒâ â ‰â …â Œâ â †â »â „â Ž" }, { "input": "backstabbers", "output": "â ƒâ â ‰â …â Œâ â †â »â Ž" }, { "input": "backstabbing", "output": "â ƒâ â ‰â …â Œâ â †â Œ" }, { "input": "backstage", "output": "â ƒâ â ‰â …â Œâ â ›â ‘" }, { "input": "backstage's", "output": "â ƒâ â ‰â …â Œâ â ›â ‘â „â Ž" }, { "input": "backstair", "output": "â ƒâ â ‰â …â Œâ â Šâ —" }, { "input": "backstairs", "output": "â ƒâ â ‰â …â Œâ â Šâ —â Ž" }, { "input": "backstop", "output": "â ƒâ â ‰â …⠌⠕â " }, { "input": "backstop's", "output": "â ƒâ â ‰â …⠌⠕â â „â Ž" }, { "input": "backstopped", "output": "â ƒâ â ‰â …⠌⠕â â â «" }, { "input": "backstopping", "output": "â ƒâ â ‰â …⠌⠕â â â Œ" }, { "input": "backstops", "output": "â ƒâ â ‰â …⠌⠕â â Ž" }, { "input": "backstretch", "output": "â ƒâ â ‰â …⠌⠗⠑⠞⠡" }, { "input": "backstretch's", "output": "â ƒâ â ‰â …⠌⠗⠑⠞⠡⠄⠎" }, { "input": "backstretches", "output": "â ƒâ â ‰â …⠌⠗⠑⠞⠡⠑⠎" }, { "input": "backstroke", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠑" }, { "input": "backstroke's", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠑⠄⠎" }, { "input": "backstroked", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠫" }, { "input": "backstrokes", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠑⠎" }, { "input": "backstroking", "output": "â ƒâ â ‰â …⠌⠗⠕⠅⠌" }, { "input": "backtalk", "output": "â ƒâ â ‰â …â žâ â ‡â …" }, { "input": "backtalk's", "output": "â ƒâ â ‰â …â žâ â ‡â …â „â Ž" }, { "input": "backtrack", "output": "â ƒâ â ‰â …â žâ —â â ‰â …" }, { "input": "backtracked", "output": "â ƒâ â ‰â …â žâ —â â ‰â …â «" }, { "input": "backtracking", "output": "â ƒâ â ‰â …â žâ —â â ‰â …â Œ" }, { "input": "backtracks", "output": "â ƒâ â ‰â …â žâ —â â ‰â …â Ž" }, { "input": "backup", "output": "â ƒâ â ‰â …â ¥â " }, { "input": "backup's", "output": "â ƒâ â ‰â …â ¥â â „â Ž" }, { "input": "backups", "output": "â ƒâ â ‰â …â ¥â â Ž" }, { "input": "backward", "output": "â ƒâ â ‰â …⠺⠜⠙" }, { "input": "backwardly", "output": "â ƒâ â ‰â …⠺⠜⠙⠇⠽" }, { "input": "backwardness", "output": "â ƒâ â ‰â …⠺⠜⠙⠰⠎" }, { "input": "backwardness's", "output": "â ƒâ â ‰â …⠺⠜⠙⠰⠎⠄⠎" }, { "input": "backwards", "output": "â ƒâ â ‰â …⠺⠜⠙⠎" }, { "input": "backwash", "output": "â ƒâ â ‰â …â ºâ â ©" }, { "input": "backwash's", "output": "â ƒâ â ‰â …â ºâ â ©â „â Ž" }, { "input": "backwater", "output": "â ƒâ â ‰â …â ºâ â žâ »" }, { "input": "backwater's", "output": "â ƒâ â ‰â …â ºâ â žâ »â „â Ž" }, { "input": "backwaters", "output": "â ƒâ â ‰â …â ºâ â žâ »â Ž" }, { "input": "backwoods", "output": "â ƒâ â ‰â …⠺⠕⠕⠙⠎" }, { "input": "backwoods's", "output": "â ƒâ â ‰â …⠺⠕⠕⠙⠎⠄⠎" }, { "input": "backyard", "output": "â ƒâ â ‰â …⠽⠜⠙" }, { "input": "backyard's", "output": "â ƒâ â ‰â …⠽⠜⠙⠄⠎" }, { "input": "backyards", "output": "â ƒâ â ‰â …⠽⠜⠙⠎" }, { "input": "bacon", "output": "â ƒâ â ‰â •â " }, { "input": "bacon's", "output": "â ƒâ â ‰â •â â „â Ž" }, { "input": "bacteria", "output": "â ƒâ â ‰â žâ »â Šâ " }, { "input": "bacteria's", "output": "â ƒâ â ‰â žâ »â Šâ â „â Ž" }, { "input": "bacterial", "output": "â ƒâ â ‰â žâ »â Šâ â ‡" }, { "input": "bactericidal", "output": "â ƒâ â ‰â žâ »â Šâ ‰â Šâ ™â â ‡" }, { "input": "bactericide", "output": "â ƒâ â ‰â žâ »â Šâ ‰â Šâ ™â ‘" }, { "input": "bactericide's", "output": "â ƒâ â ‰â žâ »â Šâ ‰â Šâ ™â ‘â „â Ž" }, { "input": "bactericides", "output": "â ƒâ â ‰â žâ »â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "bacteriologic", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠉" }, { "input": "bacteriological", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "bacteriologist", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠌" }, { "input": "bacteriologist's", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "bacteriologists", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠊⠌⠎" }, { "input": "bacteriology", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠽" }, { "input": "bacteriology's", "output": "â ƒâ â ‰â žâ »â Šâ •⠇⠕⠛⠽⠄⠎" }, { "input": "bacterium", "output": "â ƒâ â ‰â žâ »â Šâ ¥â " }, { "input": "bacterium's", "output": "â ƒâ â ‰â žâ »â Šâ ¥â â „â Ž" }, { "input": "bad", "output": "â ƒâ â ™" }, { "input": "bad's", "output": "â ƒâ â ™â „â Ž" }, { "input": "badder", "output": "â ƒâ â ²â »" }, { "input": "baddest", "output": "â ƒâ â ²â ‘â Œ" }, { "input": "bade", "output": "â ƒâ â ™â ‘" }, { "input": "badge", "output": "â ƒâ â ™â ›â ‘" }, { "input": "badge's", "output": "â ƒâ â ™â ›â ‘â „â Ž" }, { "input": "badger", "output": "â ƒâ â ™â ›â »" }, { "input": "badger's", "output": "â ƒâ â ™â ›â »â „â Ž" }, { "input": "badgered", "output": "â ƒâ â ™â ›â »â «" }, { "input": "badgering", "output": "â ƒâ â ™â ›â »â Œ" }, { "input": "badgers", "output": "â ƒâ â ™â ›â »â Ž" }, { "input": "badges", "output": "â ƒâ â ™â ›â ‘â Ž" }, { "input": "badinage", "output": "â ƒâ â ™â ”â â ›â ‘" }, { "input": "badinage's", "output": "â ƒâ â ™â ”â â ›â ‘â „â Ž" }, { "input": "badlands", "output": "â ƒâ â ™â ‡â ¯â Ž" }, { "input": "badlands's", "output": "â ƒâ â ™â ‡â ¯â Žâ „â Ž" }, { "input": "badly", "output": "â ƒâ â ™â ‡â ½" }, { "input": "badman", "output": "â ƒâ â ™â â â " }, { "input": "badman's", "output": "â ƒâ â ™â â â â „â Ž" }, { "input": "badmen", "output": "â ƒâ â ™â â ¢" }, { "input": "badminton", "output": "â ƒâ â ™â â ”â žâ •â " }, { "input": "badminton's", "output": "â ƒâ â ™â â ”â žâ •â â „â Ž" }, { "input": "badmouth", "output": "â ƒâ â ™â â ³â ¹" }, { "input": "badmouthed", "output": "â ƒâ â ™â â ³â ®â ™" }, { "input": "badmouthing", "output": "â ƒâ â ™â â ³â ¹â Œ" }, { "input": "badmouths", "output": "â ƒâ â ™â â ³â ¹â Ž" }, { "input": "badness", "output": "â ƒâ â ™â °â Ž" }, { "input": "badness's", "output": "â ƒâ â ™â °â Žâ „â Ž" }, { "input": "baffle", "output": "â ƒâ â –⠇⠑" }, { "input": "baffle's", "output": "â ƒâ â –⠇⠑⠄⠎" }, { "input": "baffled", "output": "â ƒâ â –⠇⠫" }, { "input": "bafflement", "output": "â ƒâ â –⠇⠑⠰⠞" }, { "input": "bafflement's", "output": "â ƒâ â –⠇⠑⠰⠞⠄⠎" }, { "input": "baffler", "output": "â ƒâ â –⠇⠻" }, { "input": "baffler's", "output": "â ƒâ â –⠇⠻⠄⠎" }, { "input": "bafflers", "output": "â ƒâ â –⠇⠻⠎" }, { "input": "baffles", "output": "â ƒâ â –⠇⠑⠎" }, { "input": "baffling", "output": "â ƒâ â –⠇⠌" }, { "input": "bag", "output": "â ƒâ â ›" }, { "input": "bag's", "output": "â ƒâ â ›â „â Ž" }, { "input": "bagatelle", "output": "â ƒâ â ›â â žâ ‘⠇⠇⠑" }, { "input": "bagatelle's", "output": "â ƒâ â ›â â žâ ‘⠇⠇⠑⠄⠎" }, { "input": "bagatelles", "output": "â ƒâ â ›â â žâ ‘⠇⠇⠑⠎" }, { "input": "bagel", "output": "â ƒâ â ›â ‘â ‡" }, { "input": "bagel's", "output": "â ƒâ â ›â ‘⠇⠄⠎" }, { "input": "bagels", "output": "â ƒâ â ›â ‘⠇⠎" }, { "input": "baggage", "output": "â ƒâ â ¶â â ›â ‘" }, { "input": "baggage's", "output": "â ƒâ â ¶â â ›â ‘â „â Ž" }, { "input": "bagged", "output": "â ƒâ â ¶â «" }, { "input": "baggie", "output": "â ƒâ â ¶â Šâ ‘" }, { "input": "baggie's", "output": "â ƒâ â ¶â Šâ ‘â „â Ž" }, { "input": "baggier", "output": "â ƒâ â ¶â Šâ »" }, { "input": "baggies", "output": "â ƒâ â ¶â Šâ ‘â Ž" }, { "input": "baggiest", "output": "â ƒâ â ¶â Šâ ‘â Œ" }, { "input": "baggily", "output": "â ƒâ â ¶â Šâ ‡â ½" }, { "input": "bagginess", "output": "â ƒâ â ¶â Šâ °â Ž" }, { "input": "bagginess's", "output": "â ƒâ â ¶â Šâ °â Žâ „â Ž" }, { "input": "bagging", "output": "â ƒâ â ¶â Œ" }, { "input": "baggy", "output": "â ƒâ â ¶â ½" }, { "input": "bagpipe", "output": "â ƒâ â ›â â Šâ â ‘" }, { "input": "bagpipe's", "output": "â ƒâ â ›â â Šâ â ‘â „â Ž" }, { "input": "bagpiper", "output": "â ƒâ â ›â â Šâ â »" }, { "input": "bagpiper's", "output": "â ƒâ â ›â â Šâ â »â „â Ž" }, { "input": "bagpipers", "output": "â ƒâ â ›â â Šâ â »â Ž" }, { "input": "bagpipes", "output": "â ƒâ â ›â â Šâ â ‘â Ž" }, { "input": "bags", "output": "â ƒâ â ›â Ž" }, { "input": "bah", "output": "â ƒâ â “" }, { "input": "baht", "output": "â ƒâ â “â ž" }, { "input": "baht's", "output": "â ƒâ â “â žâ „â Ž" }, { "input": "bahts", "output": "â ƒâ â “â žâ Ž" }, { "input": "bail", "output": "â ƒâ â Šâ ‡" }, { "input": "bail's", "output": "â ƒâ â Šâ ‡â „â Ž" }, { "input": "bailable", "output": "â ƒâ â Šâ ‡â â ¼" }, { "input": "bailed", "output": "â ƒâ â Šâ ‡â «" }, { "input": "bailiff", "output": "â ƒâ â Šâ ‡â Šâ ‹â ‹" }, { "input": "bailiffs", "output": "â ƒâ â Šâ ‡â Šâ –â Ž" }, { "input": "bailing", "output": "â ƒâ â Šâ ‡â Œ" }, { "input": "bailiwick", "output": "â ƒâ â Šâ ‡â Šâ ºâ Šâ ‰â …" }, { "input": "bailiwick's", "output": "â ƒâ â Šâ ‡â Šâ ºâ Šâ ‰â …â „â Ž" }, { "input": "bailiwicks", "output": "â ƒâ â Šâ ‡â Šâ ºâ Šâ ‰â …â Ž" }, { "input": "bailout", "output": "â ƒâ â Šâ ‡â ³â ž" }, { "input": "bailout's", "output": "â ƒâ â Šâ ‡â ³â žâ „â Ž" }, { "input": "bailouts", "output": "â ƒâ â Šâ ‡â ³â žâ Ž" }, { "input": "bails", "output": "â ƒâ â Šâ ‡â Ž" }, { "input": "bailsman", "output": "â ƒâ â Šâ ‡â Žâ â â " }, { "input": "bailsman's", "output": "â ƒâ â Šâ ‡â Žâ â â â „â Ž" }, { "input": "bailsmen", "output": "â ƒâ â Šâ ‡â Žâ â ¢" }, { "input": "bait", "output": "â ƒâ â Šâ ž" }, { "input": "bait's", "output": "â ƒâ â Šâ žâ „â Ž" }, { "input": "baited", "output": "â ƒâ â Šâ žâ «" }, { "input": "baiting", "output": "â ƒâ â Šâ žâ Œ" }, { "input": "baits", "output": "â ƒâ â Šâ žâ Ž" }, { "input": "baize", "output": "â ƒâ â Šâ µâ ‘" }, { "input": "baize's", "output": "â ƒâ â Šâ µâ ‘â „â Ž" }, { "input": "bake", "output": "â ƒâ â …â ‘" }, { "input": "bake's", "output": "â ƒâ â …â ‘â „â Ž" }, { "input": "baked", "output": "â ƒâ â …â «" }, { "input": "baker", "output": "â ƒâ â …â »" }, { "input": "baker's", "output": "â ƒâ â …⠻⠄⠎" }, { "input": "bakeries", "output": "â ƒâ â …⠻⠊⠑⠎" }, { "input": "bakers", "output": "â ƒâ â …⠻⠎" }, { "input": "bakery", "output": "â ƒâ â …⠻⠽" }, { "input": "bakery's", "output": "â ƒâ â …⠻⠽⠄⠎" }, { "input": "bakes", "output": "â ƒâ â …â ‘â Ž" }, { "input": "bakeshop", "output": "â ƒâ â …â ‘â ©â •â " }, { "input": "bakeshop's", "output": "â ƒâ â …â ‘â ©â •â â „â Ž" }, { "input": "bakeshops", "output": "â ƒâ â …â ‘â ©â •â â Ž" }, { "input": "baking", "output": "â ƒâ â …â Œ" }, { "input": "baklava", "output": "â ƒâ â …â ‡â â §â " }, { "input": "baklava's", "output": "â ƒâ â …â ‡â â §â â „â Ž" }, { "input": "baksheesh", "output": "â ƒâ â …â ©â ‘â ‘â ©" }, { "input": "baksheesh's", "output": "â ƒâ â …â ©â ‘â ‘â ©â „â Ž" }, { "input": "balalaika", "output": "â ƒâ â ‡â â ‡â â Šâ …â " }, { "input": "balalaika's", "output": "â ƒâ â ‡â â ‡â â Šâ …â â „â Ž" }, { "input": "balalaikas", "output": "â ƒâ â ‡â â ‡â â Šâ …â â Ž" }, { "input": "balance", "output": "â ƒâ â ‡â ¨â ‘" }, { "input": "balance's", "output": "â ƒâ â ‡â ¨â ‘â „â Ž" }, { "input": "balanced", "output": "â ƒâ â ‡â ¨â ‘â ™" }, { "input": "balances", "output": "â ƒâ â ‡â ¨â ‘â Ž" }, { "input": "balancing", "output": "â ƒâ â ‡â â â ‰â Œ" }, { "input": "balboa", "output": "â ƒâ â ‡â ƒâ •â " }, { "input": "balboa's", "output": "â ƒâ â ‡â ƒâ •â â „â Ž" }, { "input": "balboas", "output": "â ƒâ â ‡â ƒâ •â â Ž" }, { "input": "balconies", "output": "â ƒâ â ‡â ‰â •â â Šâ ‘â Ž" }, { "input": "balcony", "output": "â ƒâ â ‡â ‰â •â â ½" }, { "input": "balcony's", "output": "â ƒâ â ‡â ‰â •â â ½â „â Ž" }, { "input": "bald", "output": "â ƒâ â ‡â ™" }, { "input": "balded", "output": "â ƒâ â ‡â ™â «" }, { "input": "balder", "output": "â ƒâ â ‡â ™â »" }, { "input": "balderdash", "output": "â ƒâ â ‡â ™â »â ™â â ©" }, { "input": "balderdash's", "output": "â ƒâ â ‡â ™â »â ™â â ©â „â Ž" }, { "input": "baldest", "output": "â ƒâ â ‡â ™â ‘â Œ" }, { "input": "baldfaced", "output": "â ƒâ â ‡â ™â ‹â â ‰â «" }, { "input": "balding", "output": "â ƒâ â ‡â ™â Œ" }, { "input": "baldly", "output": "â ƒâ â ‡â ™â ‡â ½" }, { "input": "baldness", "output": "â ƒâ â ‡â ™â °â Ž" }, { "input": "baldness's", "output": "â ƒâ â ‡â ™â °â Žâ „â Ž" }, { "input": "baldric", "output": "â ƒâ â ‡â ™â —â Šâ ‰" }, { "input": "baldric's", "output": "â ƒâ â ‡â ™â —⠊⠉⠄⠎" }, { "input": "baldrics", "output": "â ƒâ â ‡â ™â —⠊⠉⠎" }, { "input": "balds", "output": "â ƒâ â ‡â ™â Ž" }, { "input": "bale", "output": "â ƒâ â ‡â ‘" }, { "input": "bale's", "output": "â ƒâ â ‡â ‘â „â Ž" }, { "input": "baled", "output": "â ƒâ â ‡â «" }, { "input": "baleen", "output": "â ƒâ â ‡â ‘â ¢" }, { "input": "baleen's", "output": "â ƒâ â ‡â ‘⠢⠄⠎" }, { "input": "baleful", "output": "â ƒâ â ‡â ‘â °â ‡" }, { "input": "balefully", "output": "â ƒâ â ‡â ‘⠰⠇⠇⠽" }, { "input": "balefulness", "output": "â ƒâ â ‡â ‘⠰⠇⠰⠎" }, { "input": "balefulness's", "output": "â ƒâ â ‡â ‘⠰⠇⠰⠎⠄⠎" }, { "input": "baler", "output": "â ƒâ â ‡â »" }, { "input": "baler's", "output": "â ƒâ â ‡â »â „â Ž" }, { "input": "balers", "output": "â ƒâ â ‡â »â Ž" }, { "input": "bales", "output": "â ƒâ â ‡â ‘â Ž" }, { "input": "baling", "output": "â ƒâ â ‡â Œ" }, { "input": "balk", "output": "â ƒâ â ‡â …" }, { "input": "balk's", "output": "â ƒâ â ‡â …â „â Ž" }, { "input": "balked", "output": "â ƒâ â ‡â …â «" }, { "input": "balkier", "output": "â ƒâ â ‡â …â Šâ »" }, { "input": "balkiest", "output": "â ƒâ â ‡â …â Šâ ‘â Œ" }, { "input": "balking", "output": "â ƒâ â ‡â …â Œ" }, { "input": "balks", "output": "â ƒâ â ‡â …â Ž" }, { "input": "balky", "output": "â ƒâ â ‡â …â ½" }, { "input": "ball", "output": "â ƒâ â ‡â ‡" }, { "input": "ball's", "output": "â ƒâ â ‡â ‡â „â Ž" }, { "input": "ballad", "output": "â ƒâ â ‡â ‡â â ™" }, { "input": "ballad's", "output": "â ƒâ â ‡â ‡â â ™â „â Ž" }, { "input": "balladeer", "output": "â ƒâ â ‡â ‡â â ™â ‘â »" }, { "input": "balladeer's", "output": "â ƒâ â ‡â ‡â â ™â ‘⠻⠄⠎" }, { "input": "balladeers", "output": "â ƒâ â ‡â ‡â â ™â ‘⠻⠎" }, { "input": "balladry", "output": "â ƒâ â ‡â ‡â â ™â —â ½" }, { "input": "balladry's", "output": "â ƒâ â ‡â ‡â â ™â —⠽⠄⠎" }, { "input": "ballads", "output": "â ƒâ â ‡â ‡â â ™â Ž" }, { "input": "ballast", "output": "â ƒâ â ‡â ‡â â Œ" }, { "input": "ballast's", "output": "â ƒâ â ‡â ‡â â Œâ „â Ž" }, { "input": "ballasted", "output": "â ƒâ â ‡â ‡â â Œâ «" }, { "input": "ballasting", "output": "â ƒâ â ‡â ‡â â Œâ Œ" }, { "input": "ballasts", "output": "â ƒâ â ‡â ‡â â Œâ Ž" }, { "input": "balled", "output": "â ƒâ â ‡â ‡â «" }, { "input": "ballerina", "output": "â ƒâ â ‡â ‡â »â ”â " }, { "input": "ballerina's", "output": "â ƒâ â ‡â ‡â »â ”â â „â Ž" }, { "input": "ballerinas", "output": "â ƒâ â ‡â ‡â »â ”â â Ž" }, { "input": "ballet", "output": "â ƒâ â ‡â ‡â ‘â ž" }, { "input": "ballet's", "output": "â ƒâ â ‡â ‡â ‘â žâ „â Ž" }, { "input": "ballets", "output": "â ƒâ â ‡â ‡â ‘â žâ Ž" }, { "input": "ballgame", "output": "â ƒâ â ‡â ‡â ›â â â ‘" }, { "input": "ballgame's", "output": "â ƒâ â ‡â ‡â ›â â â ‘â „â Ž" }, { "input": "ballgames", "output": "â ƒâ â ‡â ‡â ›â â â ‘â Ž" }, { "input": "balling", "output": "â ƒâ â ‡â ‡â Œ" }, { "input": "ballistic", "output": "â ƒâ â ‡â ‡â Šâ Œâ Šâ ‰" }, { "input": "ballistics", "output": "â ƒâ â ‡â ‡â Šâ Œâ Šâ ‰â Ž" }, { "input": "ballistics's", "output": "â ƒâ â ‡â ‡â Šâ Œâ Šâ ‰â Žâ „â Ž" }, { "input": "balloon", "output": "â ƒâ â ‡â ‡â •â •â " }, { "input": "balloon's", "output": "â ƒâ â ‡â ‡â •â •â â „â Ž" }, { "input": "ballooned", "output": "â ƒâ â ‡â ‡â •â •â â «" }, { "input": "ballooning", "output": "â ƒâ â ‡â ‡â •â •â â Œ" }, { "input": "balloonist", "output": "â ƒâ â ‡â ‡â •â •â â Šâ Œ" }, { "input": "balloonist's", "output": "â ƒâ â ‡â ‡â •â •â â Šâ Œâ „â Ž" }, { "input": "balloonists", "output": "â ƒâ â ‡â ‡â •â •â â Šâ Œâ Ž" }, { "input": "balloons", "output": "â ƒâ â ‡â ‡â •â •â â Ž" }, { "input": "ballot", "output": "â ƒâ â ‡â ‡â •â ž" }, { "input": "ballot's", "output": "â ƒâ â ‡â ‡â •â žâ „â Ž" }, { "input": "balloted", "output": "â ƒâ â ‡â ‡â •â žâ «" }, { "input": "balloting", "output": "â ƒâ â ‡â ‡â •â žâ Œ" }, { "input": "ballots", "output": "â ƒâ â ‡â ‡â •â žâ Ž" }, { "input": "ballpark", "output": "â ƒâ â ‡â ‡â â œâ …" }, { "input": "ballpark's", "output": "â ƒâ â ‡â ‡â â œâ …â „â Ž" }, { "input": "ballparks", "output": "â ƒâ â ‡â ‡â â œâ …â Ž" }, { "input": "ballplayer", "output": "â ƒâ â ‡â ‡â â ‡â â ½â »" }, { "input": "ballplayer's", "output": "â ƒâ â ‡â ‡â â ‡â â ½â »â „â Ž" }, { "input": "ballplayers", "output": "â ƒâ â ‡â ‡â â ‡â â ½â »â Ž" }, { "input": "ballpoint", "output": "â ƒâ â ‡â ‡â â •⠔⠞" }, { "input": "ballpoint's", "output": "â ƒâ â ‡â ‡â â •⠔⠞⠄⠎" }, { "input": "ballpoints", "output": "â ƒâ â ‡â ‡â â •⠔⠞⠎" }, { "input": "ballroom", "output": "â ƒâ â ‡â ‡â —â •â •â " }, { "input": "ballroom's", "output": "â ƒâ â ‡â ‡â —â •â •â â „â Ž" }, { "input": "ballrooms", "output": "â ƒâ â ‡â ‡â —â •â •â â Ž" }, { "input": "balls", "output": "â ƒâ â ‡â ‡â Ž" }, { "input": "ballsier", "output": "â ƒâ â ‡â ‡â Žâ Šâ »" }, { "input": "ballsiest", "output": "â ƒâ â ‡â ‡â Žâ Šâ ‘â Œ" }, { "input": "ballsy", "output": "â ƒâ â ‡â ‡â Žâ ½" }, { "input": "ballyhoo", "output": "⠃⠠⠽⠓⠕⠕" }, { "input": "ballyhoo's", "output": "⠃⠠⠽⠓⠕⠕⠄⠎" }, { "input": "ballyhooed", "output": "⠃⠠⠽⠓⠕⠕⠫" }, { "input": "ballyhooing", "output": "⠃⠠⠽⠓⠕⠕⠌" }, { "input": "ballyhoos", "output": "⠃⠠⠽⠓⠕⠕⠎" }, { "input": "balm", "output": "â ƒâ â ‡â " }, { "input": "balm's", "output": "â ƒâ â ‡â â „â Ž" }, { "input": "balmier", "output": "â ƒâ â ‡â â Šâ »" }, { "input": "balmiest", "output": "â ƒâ â ‡â â Šâ ‘â Œ" }, { "input": "balminess", "output": "â ƒâ â ‡â â Šâ °â Ž" }, { "input": "balminess's", "output": "â ƒâ â ‡â â Šâ °â Žâ „â Ž" }, { "input": "balms", "output": "â ƒâ â ‡â â Ž" }, { "input": "balmy", "output": "â ƒâ â ‡â â ½" }, { "input": "baloney", "output": "â ƒâ â ‡â •â â ‘â ½" }, { "input": "baloney's", "output": "â ƒâ â ‡â •â â ‘⠽⠄⠎" }, { "input": "balsa", "output": "â ƒâ â ‡â Žâ " }, { "input": "balsa's", "output": "â ƒâ â ‡â Žâ â „â Ž" }, { "input": "balsam", "output": "â ƒâ â ‡â Žâ â " }, { "input": "balsam's", "output": "â ƒâ â ‡â Žâ â â „â Ž" }, { "input": "balsamic", "output": "â ƒâ â ‡â Žâ â â Šâ ‰" }, { "input": "balsams", "output": "â ƒâ â ‡â Žâ â â Ž" }, { "input": "balsas", "output": "â ƒâ â ‡â Žâ â Ž" }, { "input": "baluster", "output": "â ƒâ â ‡â ¥â Œâ »" }, { "input": "baluster's", "output": "â ƒâ â ‡â ¥â Œâ »â „â Ž" }, { "input": "balusters", "output": "â ƒâ â ‡â ¥â Œâ »â Ž" }, { "input": "balustrade", "output": "â ƒâ â ‡â ¥â Œâ —â â ™â ‘" }, { "input": "balustrade's", "output": "â ƒâ â ‡â ¥â Œâ —â â ™â ‘â „â Ž" }, { "input": "balustrades", "output": "â ƒâ â ‡â ¥â Œâ —â â ™â ‘â Ž" }, { "input": "bamboo", "output": "â ƒâ â â ƒâ •â •" }, { "input": "bamboo's", "output": "â ƒâ â â ƒâ •â •â „â Ž" }, { "input": "bamboos", "output": "â ƒâ â â ƒâ •â •â Ž" }, { "input": "bamboozle", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠑" }, { "input": "bamboozled", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠫" }, { "input": "bamboozles", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠑⠎" }, { "input": "bamboozling", "output": "â ƒâ â â ƒâ •⠕⠵⠇⠌" }, { "input": "ban", "output": "â ƒâ â " }, { "input": "ban's", "output": "â ƒâ â â „â Ž" }, { "input": "banal", "output": "â ƒâ â â â ‡" }, { "input": "banalities", "output": "â ƒâ â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "banality", "output": "â ƒâ â â â ‡â °â ½" }, { "input": "banality's", "output": "â ƒâ â â â ‡â °â ½â „â Ž" }, { "input": "banally", "output": "â ƒâ â â  â ½" }, { "input": "banana", "output": "â ƒâ â â â â " }, { "input": "banana's", "output": "â ƒâ â â â â â „â Ž" }, { "input": "bananas", "output": "â ƒâ â â â â â Ž" }, { "input": "band", "output": "⠃⠯" }, { "input": "band's", "output": "⠃⠯⠄⠎" }, { "input": "bandage", "output": "⠃⠯â â ›â ‘" }, { "input": "bandage's", "output": "⠃⠯â â ›â ‘â „â Ž" }, { "input": "bandaged", "output": "⠃⠯â â ›â «" }, { "input": "bandages", "output": "⠃⠯â â ›â ‘â Ž" }, { "input": "bandaging", "output": "⠃⠯â â ›â Œ" }, { "input": "bandanna", "output": "⠃⠯â â â â " }, { "input": "bandanna's", "output": "⠃⠯â â â â â „â Ž" }, { "input": "bandannas", "output": "⠃⠯â â â â â Ž" }, { "input": "bandbox", "output": "⠃⠯⠃⠕⠭" }, { "input": "bandbox's", "output": "⠃⠯⠃⠕⠭⠄⠎" }, { "input": "bandboxes", "output": "⠃⠯⠃⠕⠭⠑⠎" }, { "input": "bandeau", "output": "⠃⠯⠂⠥" }, { "input": "bandeau's", "output": "⠃⠯⠂⠥⠄⠎" }, { "input": "bandeaux", "output": "⠃⠯⠂⠥⠭" }, { "input": "banded", "output": "⠃⠯⠫" }, { "input": "bandied", "output": "⠃⠯⠊⠫" }, { "input": "bandier", "output": "⠃⠯⠊⠻" }, { "input": "bandies", "output": "⠃⠯⠊⠑⠎" }, { "input": "bandiest", "output": "⠃⠯⠊⠑⠌" }, { "input": "banding", "output": "⠃⠯⠌" }, { "input": "bandit", "output": "⠃⠯⠊⠞" }, { "input": "bandit's", "output": "⠃⠯⠊⠞⠄⠎" }, { "input": "banditry", "output": "⠃⠯⠊⠞⠗⠽" }, { "input": "banditry's", "output": "⠃⠯⠊⠞⠗⠽⠄⠎" }, { "input": "bandits", "output": "⠃⠯⠊⠞⠎" }, { "input": "bandoleer", "output": "⠃⠯⠕⠇⠑⠻" }, { "input": "bandoleer's", "output": "⠃⠯⠕⠇⠑⠻⠄⠎" }, { "input": "bandoleers", "output": "⠃⠯⠕⠇⠑⠻⠎" }, { "input": "bands", "output": "⠃⠯⠎" }, { "input": "bandstand", "output": "⠃⠯⠌⠯" }, { "input": "bandstand's", "output": "⠃⠯⠌⠯⠄⠎" }, { "input": "bandstands", "output": "⠃⠯⠌⠯⠎" }, { "input": "bandwagon", "output": "⠃⠯⠺â â ›â •â " }, { "input": "bandwagon's", "output": "⠃⠯⠺â â ›â •â â „â Ž" }, { "input": "bandwagons", "output": "⠃⠯⠺â â ›â •â â Ž" }, { "input": "bandwidth", "output": "⠃⠯⠺⠊⠙⠹" }, { "input": "bandy", "output": "⠃⠯⠽" }, { "input": "bandying", "output": "⠃⠯⠽⠌" }, { "input": "bane", "output": "â ƒâ â â ‘" }, { "input": "bane's", "output": "â ƒâ â â ‘â „â Ž" }, { "input": "baneful", "output": "â ƒâ â â ‘â °â ‡" }, { "input": "banes", "output": "â ƒâ â â ‘â Ž" }, { "input": "bang", "output": "â ƒâ â â ›" }, { "input": "bang's", "output": "â ƒâ â â ›â „â Ž" }, { "input": "banged", "output": "â ƒâ â â ›â «" }, { "input": "banging", "output": "â ƒâ â â ›â Œ" }, { "input": "bangle", "output": "â ƒâ â â ›â ‡â ‘" }, { "input": "bangle's", "output": "â ƒâ â â ›â ‡â ‘â „â Ž" }, { "input": "bangles", "output": "â ƒâ â â ›â ‡â ‘â Ž" }, { "input": "bangs", "output": "â ƒâ â â ›â Ž" }, { "input": "bani", "output": "â ƒâ â â Š" }, { "input": "banish", "output": "â ƒâ â â Šâ ©" }, { "input": "banished", "output": "â ƒâ â â Šâ ©â «" }, { "input": "banishes", "output": "â ƒâ â â Šâ ©â ‘â Ž" }, { "input": "banishing", "output": "â ƒâ â â Šâ ©â Œ" }, { "input": "banishment", "output": "â ƒâ â â Šâ ©â °â ž" }, { "input": "banishment's", "output": "â ƒâ â â Šâ ©â °â žâ „â Ž" }, { "input": "banister", "output": "â ƒâ â â Šâ Œâ »" }, { "input": "banister's", "output": "â ƒâ â â Šâ Œâ »â „â Ž" }, { "input": "banisters", "output": "â ƒâ â â Šâ Œâ »â Ž" }, { "input": "banjo", "output": "â ƒâ â â šâ •" }, { "input": "banjo's", "output": "â ƒâ â â šâ •â „â Ž" }, { "input": "banjoist", "output": "â ƒâ â â šâ •â Šâ Œ" }, { "input": "banjoist's", "output": "â ƒâ â â šâ •⠊⠌⠄⠎" }, { "input": "banjoists", "output": "â ƒâ â â šâ •⠊⠌⠎" }, { "input": "banjos", "output": "â ƒâ â â šâ •â Ž" }, { "input": "bank", "output": "â ƒâ â â …" }, { "input": "bank's", "output": "â ƒâ â â …â „â Ž" }, { "input": "bankbook", "output": "â ƒâ â â …⠃⠕⠕⠅" }, { "input": "bankbook's", "output": "â ƒâ â â …⠃⠕⠕⠅⠄⠎" }, { "input": "bankbooks", "output": "â ƒâ â â …⠃⠕⠕⠅⠎" }, { "input": "bankcard", "output": "â ƒâ â â …⠉⠜⠙" }, { "input": "bankcard's", "output": "â ƒâ â â …⠉⠜⠙⠄⠎" }, { "input": "bankcards", "output": "â ƒâ â â …⠉⠜⠙⠎" }, { "input": "banked", "output": "â ƒâ â â …â «" }, { "input": "banker", "output": "â ƒâ â â …â »" }, { "input": "banker's", "output": "â ƒâ â â …⠻⠄⠎" }, { "input": "bankers", "output": "â ƒâ â â …⠻⠎" }, { "input": "banking", "output": "â ƒâ â â …â Œ" }, { "input": "banking's", "output": "â ƒâ â â …⠌⠄⠎" }, { "input": "banknote", "output": "â ƒâ â â …â â •â žâ ‘" }, { "input": "banknote's", "output": "â ƒâ â â …â â •â žâ ‘â „â Ž" }, { "input": "banknotes", "output": "â ƒâ â â …â â •â žâ ‘â Ž" }, { "input": "bankroll", "output": "â ƒâ â â …⠗⠕⠇⠇" }, { "input": "bankroll's", "output": "â ƒâ â â …⠗⠕⠇⠇⠄⠎" }, { "input": "bankrolled", "output": "â ƒâ â â …⠗⠕⠇⠇⠫" }, { "input": "bankrolling", "output": "â ƒâ â â …⠗⠕⠇⠇⠌" }, { "input": "bankrolls", "output": "â ƒâ â â …⠗⠕⠇⠇⠎" }, { "input": "bankrupt", "output": "â ƒâ â â …â —â ¥â â ž" }, { "input": "bankrupt's", "output": "â ƒâ â â …â —â ¥â â žâ „â Ž" }, { "input": "bankruptcies", "output": "â ƒâ â â …â —â ¥â â žâ ‰â Šâ ‘â Ž" }, { "input": "bankruptcy", "output": "â ƒâ â â …â —â ¥â â žâ ‰â ½" }, { "input": "bankruptcy's", "output": "â ƒâ â â …â —â ¥â â žâ ‰â ½â „â Ž" }, { "input": "bankrupted", "output": "â ƒâ â â …â —â ¥â â žâ «" }, { "input": "bankrupting", "output": "â ƒâ â â …â —â ¥â â žâ Œ" }, { "input": "bankrupts", "output": "â ƒâ â â …â —â ¥â â žâ Ž" }, { "input": "banks", "output": "â ƒâ â â …â Ž" }, { "input": "banned", "output": "â ƒâ â â â «" }, { "input": "banner", "output": "â ƒâ â â â »" }, { "input": "banner's", "output": "â ƒâ â â â »â „â Ž" }, { "input": "banners", "output": "â ƒâ â â â »â Ž" }, { "input": "banning", "output": "â ƒâ â â â Œ" }, { "input": "banns", "output": "â ƒâ â â â Ž" }, { "input": "banns's", "output": "â ƒâ â â â Žâ „â Ž" }, { "input": "banquet", "output": "â ƒâ â â Ÿâ ¥â ‘â ž" }, { "input": "banquet's", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ „â Ž" }, { "input": "banqueted", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ «" }, { "input": "banqueter", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ »" }, { "input": "banqueter's", "output": "â ƒâ â â Ÿâ ¥â ‘⠞⠻⠄⠎" }, { "input": "banqueters", "output": "â ƒâ â â Ÿâ ¥â ‘⠞⠻⠎" }, { "input": "banqueting", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ Œ" }, { "input": "banquets", "output": "â ƒâ â â Ÿâ ¥â ‘â žâ Ž" }, { "input": "bans", "output": "â ƒâ â â Ž" }, { "input": "banshee", "output": "â ƒâ â â ©â ‘â ‘" }, { "input": "banshee's", "output": "â ƒâ â â ©â ‘â ‘â „â Ž" }, { "input": "banshees", "output": "â ƒâ â â ©â ‘â ‘â Ž" }, { "input": "bantam", "output": "â ƒâ â â žâ â " }, { "input": "bantam's", "output": "â ƒâ â â žâ â â „â Ž" }, { "input": "bantams", "output": "â ƒâ â â žâ â â Ž" }, { "input": "bantamweight", "output": "â ƒâ â â žâ â â ºâ ‘⠊⠣⠞" }, { "input": "bantamweight's", "output": "â ƒâ â â žâ â â ºâ ‘⠊⠣⠞⠄⠎" }, { "input": "bantamweights", "output": "â ƒâ â â žâ â â ºâ ‘⠊⠣⠞⠎" }, { "input": "banter", "output": "â ƒâ â â žâ »" }, { "input": "banter's", "output": "â ƒâ â â žâ »â „â Ž" }, { "input": "bantered", "output": "â ƒâ â â žâ »â «" }, { "input": "bantering", "output": "â ƒâ â â žâ »â Œ" }, { "input": "banteringly", "output": "â ƒâ â â žâ »â Œâ ‡â ½" }, { "input": "banters", "output": "â ƒâ â â žâ »â Ž" }, { "input": "banyan", "output": "â ƒâ â â ½â â " }, { "input": "banyan's", "output": "â ƒâ â â ½â â â „â Ž" }, { "input": "banyans", "output": "â ƒâ â â ½â â â Ž" }, { "input": "banzai", "output": "â ƒâ â â µâ â Š" }, { "input": "banzai's", "output": "â ƒâ â â µâ â Šâ „â Ž" }, { "input": "banzais", "output": "â ƒâ â â µâ â Šâ Ž" }, { "input": "baobab", "output": "â ƒâ â •â ƒâ â ƒ" }, { "input": "baobab's", "output": "â ƒâ â •â ƒâ â ƒâ „â Ž" }, { "input": "baobabs", "output": "â ƒâ â •â ƒâ â ƒâ Ž" }, { "input": "baptism", "output": "â ƒâ â â žâ Šâ Žâ " }, { "input": "baptism's", "output": "â ƒâ â â žâ Šâ Žâ â „â Ž" }, { "input": "baptismal", "output": "â ƒâ â â žâ Šâ Žâ â â ‡" }, { "input": "baptisms", "output": "â ƒâ â â žâ Šâ Žâ â Ž" }, { "input": "baptist", "output": "â ƒâ â â žâ Šâ Œ" }, { "input": "baptisteries", "output": "â ƒâ â â žâ Šâ Œâ »â Šâ ‘â Ž" }, { "input": "baptistery", "output": "â ƒâ â â žâ Šâ Œâ »â ½" }, { "input": "baptistery's", "output": "â ƒâ â â žâ Šâ Œâ »â ½â „â Ž" }, { "input": "baptists", "output": "â ƒâ â â žâ Šâ Œâ Ž" }, { "input": "baptize", "output": "â ƒâ â â žâ Šâ µâ ‘" }, { "input": "baptized", "output": "â ƒâ â â žâ Šâ µâ «" }, { "input": "baptizer", "output": "â ƒâ â â žâ Šâ µâ »" }, { "input": "baptizer's", "output": "â ƒâ â â žâ Šâ µâ »â „â Ž" }, { "input": "baptizers", "output": "â ƒâ â â žâ Šâ µâ »â Ž" }, { "input": "baptizes", "output": "â ƒâ â â žâ Šâ µâ ‘â Ž" }, { "input": "baptizing", "output": "â ƒâ â â žâ Šâ µâ Œ" }, { "input": "bar", "output": "⠃⠜" }, { "input": "bar's", "output": "⠃⠜⠄⠎" }, { "input": "barb", "output": "⠃⠜⠃" }, { "input": "barb's", "output": "⠃⠜⠃⠄⠎" }, { "input": "barbarian", "output": "⠃⠜⠃⠜⠊â â " }, { "input": "barbarian's", "output": "⠃⠜⠃⠜⠊â â â „â Ž" }, { "input": "barbarianism", "output": "⠃⠜⠃⠜⠊â â â Šâ Žâ " }, { "input": "barbarianism's", "output": "⠃⠜⠃⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "barbarianisms", "output": "⠃⠜⠃⠜⠊â â â Šâ Žâ â Ž" }, { "input": "barbarians", "output": "⠃⠜⠃⠜⠊â â â Ž" }, { "input": "barbaric", "output": "⠃⠜⠃⠜⠊⠉" }, { "input": "barbarically", "output": "⠃⠜⠃⠜⠊⠉⠠⠽" }, { "input": "barbarism", "output": "⠃⠜⠃⠜⠊⠎â " }, { "input": "barbarism's", "output": "⠃⠜⠃⠜⠊⠎â â „â Ž" }, { "input": "barbarisms", "output": "⠃⠜⠃⠜⠊⠎â â Ž" }, { "input": "barbarities", "output": "⠃⠜⠃⠜⠊⠞⠊⠑⠎" }, { "input": "barbarity", "output": "⠃⠜⠃⠜⠰⠽" }, { "input": "barbarity's", "output": "⠃⠜⠃⠜⠰⠽⠄⠎" }, { "input": "barbarize", "output": "⠃⠜⠃⠜⠊⠵⠑" }, { "input": "barbarized", "output": "⠃⠜⠃⠜⠊⠵⠫" }, { "input": "barbarizes", "output": "⠃⠜⠃⠜⠊⠵⠑⠎" }, { "input": "barbarizing", "output": "⠃⠜⠃⠜⠊⠵⠌" }, { "input": "barbarous", "output": "⠃⠜⠃⠜⠳⠎" }, { "input": "barbarously", "output": "⠃⠜⠃⠜⠳⠎⠇⠽" }, { "input": "barbecue", "output": "⠃⠜⠃⠑⠉⠥⠑" }, { "input": "barbecue's", "output": "⠃⠜⠃⠑⠉⠥⠑⠄⠎" }, { "input": "barbecued", "output": "⠃⠜⠃⠑⠉⠥⠫" }, { "input": "barbecues", "output": "⠃⠜⠃⠑⠉⠥⠑⠎" }, { "input": "barbecuing", "output": "⠃⠜⠃⠑⠉⠥⠌" }, { "input": "barbed", "output": "⠃⠜⠃⠫" }, { "input": "barbel", "output": "⠃⠜⠃⠑⠇" }, { "input": "barbel's", "output": "⠃⠜⠃⠑⠇⠄⠎" }, { "input": "barbell", "output": "⠃⠜⠃⠑⠇⠇" }, { "input": "barbell's", "output": "⠃⠜⠃⠑⠇⠇⠄⠎" }, { "input": "barbells", "output": "⠃⠜⠃⠑⠇⠇⠎" }, { "input": "barbels", "output": "⠃⠜⠃⠑⠇⠎" }, { "input": "barber", "output": "⠃⠜⠃⠻" }, { "input": "barber's", "output": "⠃⠜⠃⠻⠄⠎" }, { "input": "barbered", "output": "⠃⠜⠃⠻⠫" }, { "input": "barbering", "output": "⠃⠜⠃⠻⠌" }, { "input": "barberries", "output": "⠃⠜⠃⠻⠗⠊⠑⠎" }, { "input": "barberry", "output": "⠃⠜⠃⠻⠗⠽" }, { "input": "barberry's", "output": "⠃⠜⠃⠻⠗⠽⠄⠎" }, { "input": "barbers", "output": "⠃⠜⠃⠻⠎" }, { "input": "barbershop", "output": "⠃⠜⠃⠻⠩⠕â " }, { "input": "barbershop's", "output": "⠃⠜⠃⠻⠩⠕â â „â Ž" }, { "input": "barbershops", "output": "⠃⠜⠃⠻⠩⠕â â Ž" }, { "input": "barbing", "output": "⠃⠜⠃⠌" }, { "input": "barbiturate", "output": "⠃⠜⠃⠊⠞⠥⠗â â žâ ‘" }, { "input": "barbiturate's", "output": "⠃⠜⠃⠊⠞⠥⠗â â žâ ‘â „â Ž" }, { "input": "barbiturates", "output": "⠃⠜⠃⠊⠞⠥⠗â â žâ ‘â Ž" }, { "input": "barbs", "output": "⠃⠜⠃⠎" }, { "input": "barbwire", "output": "⠃⠜⠃⠺⠊⠗⠑" }, { "input": "barbwire's", "output": "⠃⠜⠃⠺⠊⠗⠑⠄⠎" }, { "input": "barcarole", "output": "⠃⠜⠉⠜⠕⠇⠑" }, { "input": "barcarole's", "output": "⠃⠜⠉⠜⠕⠇⠑⠄⠎" }, { "input": "barcaroles", "output": "⠃⠜⠉⠜⠕⠇⠑⠎" }, { "input": "bard", "output": "⠃⠜⠙" }, { "input": "bard's", "output": "⠃⠜⠙⠄⠎" }, { "input": "bardic", "output": "⠃⠜⠙⠊⠉" }, { "input": "bards", "output": "⠃⠜⠙⠎" }, { "input": "bare", "output": "⠃⠜⠑" }, { "input": "bareback", "output": "⠃⠜⠑⠃â â ‰â …" }, { "input": "barebacked", "output": "⠃⠜⠑⠃â â ‰â …â «" }, { "input": "bared", "output": "⠃⠜⠫" }, { "input": "barefaced", "output": "⠃⠜⠑⠋â â ‰â «" }, { "input": "barefacedly", "output": "⠃⠜⠑⠋â â ‰â «â ‡â ½" }, { "input": "barefoot", "output": "⠃⠜⠑⠋⠕⠕⠞" }, { "input": "barefooted", "output": "⠃⠜⠑⠋⠕⠕⠞⠫" }, { "input": "barehanded", "output": "⠃⠜⠑⠓⠯⠫" }, { "input": "bareheaded", "output": "⠃⠜⠑⠓⠂⠙⠫" }, { "input": "barelegged", "output": "⠃⠜⠑⠇⠑⠶⠫" }, { "input": "barely", "output": "⠃⠜⠑⠇⠽" }, { "input": "bareness", "output": "⠃⠜⠑⠰⠎" }, { "input": "bareness's", "output": "⠃⠜⠑⠰⠎⠄⠎" }, { "input": "barer", "output": "⠃⠜⠻" }, { "input": "bares", "output": "⠃⠜⠑⠎" }, { "input": "barest", "output": "⠃⠜⠑⠌" }, { "input": "barf", "output": "⠃⠜⠋" }, { "input": "barf's", "output": "⠃⠜⠋⠄⠎" }, { "input": "barfed", "output": "⠃⠜⠋⠫" }, { "input": "barfing", "output": "⠃⠜⠋⠌" }, { "input": "barfs", "output": "⠃⠜⠋⠎" }, { "input": "bargain", "output": "⠃⠜⠛â â ”" }, { "input": "bargain's", "output": "⠃⠜⠛â â ”â „â Ž" }, { "input": "bargained", "output": "⠃⠜⠛â â ”â «" }, { "input": "bargainer", "output": "⠃⠜⠛â â ”â »" }, { "input": "bargainer's", "output": "⠃⠜⠛â â ”⠻⠄⠎" }, { "input": "bargainers", "output": "⠃⠜⠛â â ”⠻⠎" }, { "input": "bargaining", "output": "⠃⠜⠛â â ”â Œ" }, { "input": "bargains", "output": "⠃⠜⠛â â ”â Ž" }, { "input": "barge", "output": "⠃⠜⠛⠑" }, { "input": "barge's", "output": "⠃⠜⠛⠑⠄⠎" }, { "input": "barged", "output": "⠃⠜⠛⠫" }, { "input": "bargeman", "output": "⠃⠜⠛⠑â â â " }, { "input": "bargeman's", "output": "⠃⠜⠛⠑â â â â „â Ž" }, { "input": "bargemen", "output": "⠃⠜⠛⠑â â ¢" }, { "input": "barges", "output": "⠃⠜⠛⠑⠎" }, { "input": "barging", "output": "⠃⠜⠛⠌" }, { "input": "barhop", "output": "⠃⠜⠓⠕â " }, { "input": "barhopped", "output": "⠃⠜⠓⠕â â â «" }, { "input": "barhopping", "output": "⠃⠜⠓⠕â â â Œ" }, { "input": "barhops", "output": "⠃⠜⠓⠕â â Ž" }, { "input": "baring", "output": "⠃⠜⠌" }, { "input": "baritone", "output": "⠃⠜⠊⠞â â •" }, { "input": "baritone's", "output": "⠃⠜⠊⠞â â •â „â Ž" }, { "input": "baritones", "output": "⠃⠜⠊⠞â â •â Ž" }, { "input": "barium", "output": "⠃⠜⠊⠥â " }, { "input": "barium's", "output": "⠃⠜⠊⠥â â „â Ž" }, { "input": "bark", "output": "⠃⠜⠅" }, { "input": "bark's", "output": "⠃⠜⠅⠄⠎" }, { "input": "barked", "output": "⠃⠜⠅⠫" }, { "input": "barkeep", "output": "⠃⠜⠅⠑⠑â " }, { "input": "barkeep's", "output": "⠃⠜⠅⠑⠑â â „â Ž" }, { "input": "barkeeps", "output": "⠃⠜⠅⠑⠑â â Ž" }, { "input": "barker", "output": "⠃⠜⠅⠻" }, { "input": "barker's", "output": "⠃⠜⠅⠻⠄⠎" }, { "input": "barkers", "output": "⠃⠜⠅⠻⠎" }, { "input": "barking", "output": "⠃⠜⠅⠌" }, { "input": "barks", "output": "⠃⠜⠅⠎" }, { "input": "barley", "output": "⠃⠜⠇⠑⠽" }, { "input": "barley's", "output": "⠃⠜⠇⠑⠽⠄⠎" }, { "input": "barmaid", "output": "⠃⠜â â â Šâ ™" }, { "input": "barmaid's", "output": "⠃⠜â â â Šâ ™â „â Ž" }, { "input": "barmaids", "output": "⠃⠜â â â Šâ ™â Ž" }, { "input": "barman", "output": "⠃⠜â â â " }, { "input": "barn", "output": "⠃⠜â " }, { "input": "barn's", "output": "⠃⠜â â „â Ž" }, { "input": "barnacle", "output": "⠃⠜â â â ‰â ‡â ‘" }, { "input": "barnacle's", "output": "⠃⠜â â â ‰â ‡â ‘â „â Ž" }, { "input": "barnacled", "output": "⠃⠜â â â ‰â ‡â «" }, { "input": "barnacles", "output": "⠃⠜â â â ‰â ‡â ‘â Ž" }, { "input": "barns", "output": "⠃⠜â â Ž" }, { "input": "barnstorm", "output": "⠃⠜â â Œâ •â —â " }, { "input": "barnstormed", "output": "⠃⠜â â Œâ •â —â â «" }, { "input": "barnstormer", "output": "⠃⠜â â Œâ •â —â â »" }, { "input": "barnstormer's", "output": "⠃⠜â â Œâ •â —â â »â „â Ž" }, { "input": "barnstormers", "output": "⠃⠜â â Œâ •â —â â »â Ž" }, { "input": "barnstorming", "output": "⠃⠜â â Œâ •â —â â Œ" }, { "input": "barnstorms", "output": "⠃⠜â â Œâ •â —â â Ž" }, { "input": "barnyard", "output": "⠃⠜â â ½â œâ ™" }, { "input": "barnyard's", "output": "⠃⠜â â ½â œâ ™â „â Ž" }, { "input": "barnyards", "output": "⠃⠜â â ½â œâ ™â Ž" }, { "input": "barometer", "output": "⠃⠜⠕â â ‘â žâ »" }, { "input": "barometer's", "output": "⠃⠜⠕â â ‘⠞⠻⠄⠎" }, { "input": "barometers", "output": "⠃⠜⠕â â ‘⠞⠻⠎" }, { "input": "barometric", "output": "⠃⠜⠕â â ‘â žâ —â Šâ ‰" }, { "input": "barometrically", "output": "⠃⠜⠕â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "baron", "output": "⠃⠜⠕â " }, { "input": "baron's", "output": "⠃⠜⠕â â „â Ž" }, { "input": "baronage", "output": "⠃⠜⠕â â â ›â ‘" }, { "input": "baronage's", "output": "⠃⠜⠕â â â ›â ‘â „â Ž" }, { "input": "baronages", "output": "⠃⠜⠕â â â ›â ‘â Ž" }, { "input": "baroness", "output": "⠃⠜⠕⠰⠎" }, { "input": "baroness's", "output": "⠃⠜⠕⠰⠎⠄⠎" }, { "input": "baronesses", "output": "⠃⠜⠕⠰⠎⠑⠎" }, { "input": "baronet", "output": "⠃⠜⠕â â ‘â ž" }, { "input": "baronet's", "output": "⠃⠜⠕â â ‘â žâ „â Ž" }, { "input": "baronets", "output": "⠃⠜⠕â â ‘â žâ Ž" }, { "input": "baronial", "output": "⠃⠜⠕â â Šâ â ‡" }, { "input": "barons", "output": "⠃⠜⠕â â Ž" }, { "input": "baroque", "output": "⠃⠜⠕⠟⠥⠑" }, { "input": "baroque's", "output": "⠃⠜⠕⠟⠥⠑⠄⠎" }, { "input": "barrack", "output": "⠃⠜⠗â â ‰â …" }, { "input": "barrack's", "output": "⠃⠜⠗â â ‰â …â „â Ž" }, { "input": "barracks", "output": "⠃⠜⠗â â ‰â …â Ž" }, { "input": "barracuda", "output": "⠃⠜⠗â â ‰â ¥â ™â " }, { "input": "barracuda's", "output": "⠃⠜⠗â â ‰â ¥â ™â â „â Ž" }, { "input": "barracudas", "output": "⠃⠜⠗â â ‰â ¥â ™â â Ž" }, { "input": "barrage", "output": "⠃⠜⠗â â ›â ‘" }, { "input": "barrage's", "output": "⠃⠜⠗â â ›â ‘â „â Ž" }, { "input": "barraged", "output": "⠃⠜⠗â â ›â «" }, { "input": "barrages", "output": "⠃⠜⠗â â ›â ‘â Ž" }, { "input": "barraging", "output": "⠃⠜⠗â â ›â Œ" }, { "input": "barre", "output": "⠃⠜⠗⠑" }, { "input": "barre's", "output": "⠃⠜⠗⠑⠄⠎" }, { "input": "barred", "output": "⠃⠜⠗⠫" }, { "input": "barrel", "output": "⠃⠜⠗⠑⠇" }, { "input": "barrel's", "output": "⠃⠜⠗⠑⠇⠄⠎" }, { "input": "barreled", "output": "⠃⠜⠗⠑⠇⠫" }, { "input": "barreling", "output": "⠃⠜⠗⠑⠇⠌" }, { "input": "barrels", "output": "⠃⠜⠗⠑⠇⠎" }, { "input": "barren", "output": "⠃⠜⠗⠢" }, { "input": "barren's", "output": "⠃⠜⠗⠢⠄⠎" }, { "input": "barrener", "output": "⠃⠜⠗⠢⠻" }, { "input": "barrenest", "output": "⠃⠜⠗⠢⠑⠌" }, { "input": "barrenness", "output": "⠃⠜⠗⠢⠰⠎" }, { "input": "barrenness's", "output": "⠃⠜⠗⠢⠰⠎⠄⠎" }, { "input": "barrens", "output": "⠃⠜⠗⠢⠎" }, { "input": "barres", "output": "⠃⠜⠗⠑⠎" }, { "input": "barrette", "output": "⠃⠜⠗⠑⠞⠞⠑" }, { "input": "barrette's", "output": "⠃⠜⠗⠑⠞⠞⠑⠄⠎" }, { "input": "barrettes", "output": "⠃⠜⠗⠑⠞⠞⠑⠎" }, { "input": "barricade", "output": "⠃⠜⠗⠊⠉â â ™â ‘" }, { "input": "barricade's", "output": "⠃⠜⠗⠊⠉â â ™â ‘â „â Ž" }, { "input": "barricaded", "output": "⠃⠜⠗⠊⠉â â ™â «" }, { "input": "barricades", "output": "⠃⠜⠗⠊⠉â â ™â ‘â Ž" }, { "input": "barricading", "output": "⠃⠜⠗⠊⠉â â ™â Œ" }, { "input": "barrier", "output": "⠃⠜⠗⠊⠻" }, { "input": "barrier's", "output": "⠃⠜⠗⠊⠻⠄⠎" }, { "input": "barriers", "output": "⠃⠜⠗⠊⠻⠎" }, { "input": "barring", "output": "⠃⠜⠗⠌" }, { "input": "barrings", "output": "⠃⠜⠗⠌⠎" }, { "input": "barrio", "output": "⠃⠜⠗⠊⠕" }, { "input": "barrio's", "output": "⠃⠜⠗⠊⠕⠄⠎" }, { "input": "barrios", "output": "⠃⠜⠗⠊⠕⠎" }, { "input": "barrister", "output": "⠃⠜⠗⠊⠌⠻" }, { "input": "barrister's", "output": "⠃⠜⠗⠊⠌⠻⠄⠎" }, { "input": "barristers", "output": "⠃⠜⠗⠊⠌⠻⠎" }, { "input": "barroom", "output": "⠃⠜⠗⠕⠕â " }, { "input": "barroom's", "output": "⠃⠜⠗⠕⠕â â „â Ž" }, { "input": "barrooms", "output": "⠃⠜⠗⠕⠕â â Ž" }, { "input": "barrow", "output": "⠃⠜⠗⠪" }, { "input": "barrow's", "output": "⠃⠜⠗⠪⠄⠎" }, { "input": "barrows", "output": "⠃⠜⠗⠪⠎" }, { "input": "bars", "output": "⠃⠜⠎" }, { "input": "bartender", "output": "⠃⠜⠞⠢⠙⠻" }, { "input": "bartender's", "output": "⠃⠜⠞⠢⠙⠻⠄⠎" }, { "input": "bartenders", "output": "⠃⠜⠞⠢⠙⠻⠎" }, { "input": "barter", "output": "⠃⠜⠞⠻" }, { "input": "barter's", "output": "⠃⠜⠞⠻⠄⠎" }, { "input": "bartered", "output": "⠃⠜⠞⠻⠫" }, { "input": "barterer", "output": "⠃⠜⠞⠻⠻" }, { "input": "barterer's", "output": "⠃⠜⠞⠻⠻⠄⠎" }, { "input": "barterers", "output": "⠃⠜⠞⠻⠻⠎" }, { "input": "bartering", "output": "⠃⠜⠞⠻⠌" }, { "input": "barters", "output": "⠃⠜⠞⠻⠎" }, { "input": "baryon", "output": "⠃⠜⠽⠕â " }, { "input": "baryon's", "output": "⠃⠜⠽⠕â â „â Ž" }, { "input": "baryons", "output": "⠃⠜⠽⠕â â Ž" }, { "input": "basal", "output": "â ƒâ â Žâ â ‡" }, { "input": "basally", "output": "â ƒâ â Žâ  â ½" }, { "input": "basalt", "output": "â ƒâ â Žâ â ‡â ž" }, { "input": "basalt's", "output": "â ƒâ â Žâ â ‡â žâ „â Ž" }, { "input": "basaltic", "output": "â ƒâ â Žâ â ‡â žâ Šâ ‰" }, { "input": "base", "output": "â ƒâ â Žâ ‘" }, { "input": "base's", "output": "â ƒâ â Žâ ‘â „â Ž" }, { "input": "baseball", "output": "â ƒâ â Žâ ‘â ƒâ â ‡â ‡" }, { "input": "baseball's", "output": "â ƒâ â Žâ ‘â ƒâ â ‡â ‡â „â Ž" }, { "input": "baseballs", "output": "â ƒâ â Žâ ‘â ƒâ â ‡â ‡â Ž" }, { "input": "baseboard", "output": "â ƒâ â Žâ ‘⠃⠕⠜⠙" }, { "input": "baseboard's", "output": "â ƒâ â Žâ ‘⠃⠕⠜⠙⠄⠎" }, { "input": "baseboards", "output": "â ƒâ â Žâ ‘⠃⠕⠜⠙⠎" }, { "input": "based", "output": "â ƒâ â Žâ «" }, { "input": "baseless", "output": "â ƒâ â Žâ ‘⠨⠎" }, { "input": "baseline", "output": "â ƒâ â Žâ ‘⠇⠔⠑" }, { "input": "baseline's", "output": "â ƒâ â Žâ ‘⠇⠔⠑⠄⠎" }, { "input": "baselines", "output": "â ƒâ â Žâ ‘⠇⠔⠑⠎" }, { "input": "basely", "output": "â ƒâ â Žâ ‘⠇⠽" }, { "input": "baseman", "output": "â ƒâ â Žâ ‘â â â " }, { "input": "baseman's", "output": "â ƒâ â Žâ ‘â â â â „â Ž" }, { "input": "basemen", "output": "â ƒâ â Žâ ‘â â ¢" }, { "input": "basement", "output": "â ƒâ â Žâ ‘â °â ž" }, { "input": "basement's", "output": "â ƒâ â Žâ ‘â °â žâ „â Ž" }, { "input": "basements", "output": "â ƒâ â Žâ ‘â °â žâ Ž" }, { "input": "baseness", "output": "â ƒâ â Žâ ‘â °â Ž" }, { "input": "baseness's", "output": "â ƒâ â Žâ ‘â °â Žâ „â Ž" }, { "input": "baser", "output": "â ƒâ â Žâ »" }, { "input": "bases", "output": "â ƒâ â Žâ ‘â Ž" }, { "input": "basest", "output": "â ƒâ â Žâ ‘â Œ" }, { "input": "bash", "output": "â ƒâ â ©" }, { "input": "bash's", "output": "â ƒâ â ©â „â Ž" }, { "input": "bashed", "output": "â ƒâ â ©â «" }, { "input": "bashes", "output": "â ƒâ â ©â ‘â Ž" }, { "input": "bashful", "output": "â ƒâ â ©â °â ‡" }, { "input": "bashfully", "output": "â ƒâ â ©â °â ‡â ‡â ½" }, { "input": "bashfulness", "output": "â ƒâ â ©â °â ‡â °â Ž" }, { "input": "bashfulness's", "output": "â ƒâ â ©â °â ‡â °â Žâ „â Ž" }, { "input": "bashing", "output": "â ƒâ â ©â Œ" }, { "input": "bashing's", "output": "â ƒâ â ©â Œâ „â Ž" }, { "input": "basic", "output": "â ƒâ â Žâ Šâ ‰" }, { "input": "basic's", "output": "â ƒâ â Žâ Šâ ‰â „â Ž" }, { "input": "basically", "output": "â ƒâ â Žâ Šâ ‰â  â ½" }, { "input": "basics", "output": "â ƒâ â Žâ Šâ ‰â Ž" }, { "input": "basil", "output": "â ƒâ â Žâ Šâ ‡" }, { "input": "basil's", "output": "â ƒâ â Žâ Šâ ‡â „â Ž" }, { "input": "basilica", "output": "â ƒâ â Žâ Šâ ‡â Šâ ‰â " }, { "input": "basilica's", "output": "â ƒâ â Žâ Šâ ‡â Šâ ‰â â „â Ž" }, { "input": "basilicas", "output": "â ƒâ â Žâ Šâ ‡â Šâ ‰â â Ž" }, { "input": "basin", "output": "â ƒâ â Žâ ”" }, { "input": "basin's", "output": "â ƒâ â Žâ ”â „â Ž" }, { "input": "basinful", "output": "â ƒâ â Žâ ”â °â ‡" }, { "input": "basinful's", "output": "â ƒâ â Žâ ”⠰⠇⠄⠎" }, { "input": "basinfuls", "output": "â ƒâ â Žâ ”⠰⠇⠎" }, { "input": "basing", "output": "â ƒâ â Žâ Œ" }, { "input": "basins", "output": "â ƒâ â Žâ ”â Ž" }, { "input": "basis", "output": "â ƒâ â Žâ Šâ Ž" }, { "input": "basis's", "output": "â ƒâ â Žâ Šâ Žâ „â Ž" }, { "input": "bask", "output": "â ƒâ â Žâ …" }, { "input": "basked", "output": "â ƒâ â Žâ …â «" }, { "input": "basket", "output": "â ƒâ â Žâ …â ‘â ž" }, { "input": "basket's", "output": "â ƒâ â Žâ …â ‘â žâ „â Ž" }, { "input": "basketball", "output": "â ƒâ â Žâ …â ‘â žâ ƒâ â ‡â ‡" }, { "input": "basketball's", "output": "â ƒâ â Žâ …â ‘â žâ ƒâ â ‡â ‡â „â Ž" }, { "input": "basketballs", "output": "â ƒâ â Žâ …â ‘â žâ ƒâ â ‡â ‡â Ž" }, { "input": "basketry's", "output": "â ƒâ â Žâ …⠑⠞⠗⠽⠄⠎" }, { "input": "baskets", "output": "â ƒâ â Žâ …â ‘â žâ Ž" }, { "input": "basketwork's", "output": "â ƒâ â Žâ …â ‘â žâ â ºâ „â Ž" }, { "input": "basking", "output": "â ƒâ â Žâ …â Œ" }, { "input": "basks", "output": "â ƒâ â Žâ …â Ž" }, { "input": "bass", "output": "â ƒâ â Žâ Ž" }, { "input": "bass's", "output": "â ƒâ â Žâ Žâ „â Ž" }, { "input": "basses", "output": "â ƒâ â Žâ Žâ ‘â Ž" }, { "input": "bassinet", "output": "â ƒâ â Žâ Žâ ”â ‘â ž" }, { "input": "bassinet's", "output": "â ƒâ â Žâ Žâ ”â ‘â žâ „â Ž" }, { "input": "bassinets", "output": "â ƒâ â Žâ Žâ ”â ‘â žâ Ž" }, { "input": "bassist", "output": "â ƒâ â Žâ Žâ Šâ Œ" }, { "input": "bassist's", "output": "â ƒâ â Žâ Žâ Šâ Œâ „â Ž" }, { "input": "bassists", "output": "â ƒâ â Žâ Žâ Šâ Œâ Ž" }, { "input": "basso", "output": "â ƒâ â Žâ Žâ •" }, { "input": "basso's", "output": "â ƒâ â Žâ Žâ •â „â Ž" }, { "input": "bassoon", "output": "â ƒâ â Žâ Žâ •â •â " }, { "input": "bassoon's", "output": "â ƒâ â Žâ Žâ •â •â â „â Ž" }, { "input": "bassoonist", "output": "â ƒâ â Žâ Žâ •â •â â Šâ Œ" }, { "input": "bassoonist's", "output": "â ƒâ â Žâ Žâ •â •â â Šâ Œâ „â Ž" }, { "input": "bassoonists", "output": "â ƒâ â Žâ Žâ •â •â â Šâ Œâ Ž" }, { "input": "bassoons", "output": "â ƒâ â Žâ Žâ •â •â â Ž" }, { "input": "bassos", "output": "â ƒâ â Žâ Žâ •â Ž" }, { "input": "basswood", "output": "â ƒâ â Žâ Žâ ºâ •â •â ™" }, { "input": "basswood's", "output": "â ƒâ â Žâ Žâ ºâ •⠕⠙⠄⠎" }, { "input": "basswoods", "output": "â ƒâ â Žâ Žâ ºâ •⠕⠙⠎" }, { "input": "bast", "output": "â ƒâ â Œ" }, { "input": "bast's", "output": "â ƒâ â Œâ „â Ž" }, { "input": "bastard", "output": "â ƒâ â Œâ œâ ™" }, { "input": "bastard's", "output": "â ƒâ â Œâ œâ ™â „â Ž" }, { "input": "bastardization", "output": "â ƒâ â Œâ œâ ™â Šâ µâ  â " }, { "input": "bastardization's", "output": "â ƒâ â Œâ œâ ™â Šâ µâ  â â „â Ž" }, { "input": "bastardizations", "output": "â ƒâ â Œâ œâ ™â Šâ µâ  â â Ž" }, { "input": "bastardize", "output": "â ƒâ â Œâ œâ ™â Šâ µâ ‘" }, { "input": "bastardized", "output": "â ƒâ â Œâ œâ ™â Šâ µâ «" }, { "input": "bastardizes", "output": "â ƒâ â Œâ œâ ™â Šâ µâ ‘â Ž" }, { "input": "bastardizing", "output": "â ƒâ â Œâ œâ ™â Šâ µâ Œ" }, { "input": "bastards", "output": "â ƒâ â Œâ œâ ™â Ž" }, { "input": "bastardy", "output": "â ƒâ â Œâ œâ ™â ½" }, { "input": "bastardy's", "output": "â ƒâ â Œâ œâ ™â ½â „â Ž" }, { "input": "baste", "output": "â ƒâ â Œâ ‘" }, { "input": "basted", "output": "â ƒâ â Œâ «" }, { "input": "baster", "output": "â ƒâ â Œâ »" }, { "input": "baster's", "output": "â ƒâ â Œâ »â „â Ž" }, { "input": "basters", "output": "â ƒâ â Œâ »â Ž" }, { "input": "bastes", "output": "â ƒâ â Œâ ‘â Ž" }, { "input": "basting", "output": "â ƒâ â Œâ Œ" }, { "input": "bastion", "output": "â ƒâ â Žâ °â " }, { "input": "bastion's", "output": "â ƒâ â Žâ °â â „â Ž" }, { "input": "bastions", "output": "â ƒâ â Žâ °â â Ž" }, { "input": "bat", "output": "â ƒâ â ž" }, { "input": "bat's", "output": "â ƒâ â žâ „â Ž" }, { "input": "batch", "output": "â ƒâ â žâ ¡" }, { "input": "batch's", "output": "â ƒâ â žâ ¡â „â Ž" }, { "input": "batched", "output": "â ƒâ â žâ ¡â «" }, { "input": "batches", "output": "â ƒâ â žâ ¡â ‘â Ž" }, { "input": "batching", "output": "â ƒâ â žâ ¡â Œ" }, { "input": "bate", "output": "â ƒâ â žâ ‘" }, { "input": "bated", "output": "â ƒâ â žâ «" }, { "input": "bates", "output": "â ƒâ â žâ ‘â Ž" }, { "input": "bath", "output": "â ƒâ â ¹" }, { "input": "bath's", "output": "â ƒâ â ¹â „â Ž" }, { "input": "bathe", "output": "â ƒâ â ®" }, { "input": "bathe's", "output": "â ƒâ â ®â „â Ž" }, { "input": "bathed", "output": "â ƒâ â ®â ™" }, { "input": "bather", "output": "â ƒâ â ®â —" }, { "input": "bather's", "output": "â ƒâ â ®â —â „â Ž" }, { "input": "bathers", "output": "â ƒâ â ®â —â Ž" }, { "input": "bathes", "output": "â ƒâ â ®â Ž" }, { "input": "bathetic", "output": "â ƒâ â ®â žâ Šâ ‰" }, { "input": "bathhouse", "output": "â ƒâ â ¹â “⠳⠎⠑" }, { "input": "bathhouse's", "output": "â ƒâ â ¹â “⠳⠎⠑⠄⠎" }, { "input": "bathhouses", "output": "â ƒâ â ¹â “⠳⠎⠑⠎" }, { "input": "bathing", "output": "â ƒâ â ¹â Œ" }, { "input": "bathing's", "output": "â ƒâ â ¹â Œâ „â Ž" }, { "input": "bathmat", "output": "â ƒâ â ¹â â â ž" }, { "input": "bathmat's", "output": "â ƒâ â ¹â â â žâ „â Ž" }, { "input": "bathmats", "output": "â ƒâ â ¹â â â žâ Ž" }, { "input": "bathos", "output": "â ƒâ â ¹â •â Ž" }, { "input": "bathos's", "output": "â ƒâ â ¹â •â Žâ „â Ž" }, { "input": "bathrobe", "output": "â ƒâ â ¹â —⠕⠃⠑" }, { "input": "bathrobe's", "output": "â ƒâ â ¹â —⠕⠃⠑⠄⠎" }, { "input": "bathrobes", "output": "â ƒâ â ¹â —⠕⠃⠑⠎" }, { "input": "bathroom", "output": "â ƒâ â ¹â —â •â •â " }, { "input": "bathroom's", "output": "â ƒâ â ¹â —â •â •â â „â Ž" }, { "input": "bathrooms", "output": "â ƒâ â ¹â —â •â •â â Ž" }, { "input": "baths", "output": "â ƒâ â ¹â Ž" }, { "input": "bathtub", "output": "â ƒâ â ¹â žâ ¥â ƒ" }, { "input": "bathtub's", "output": "â ƒâ â ¹â žâ ¥â ƒâ „â Ž" }, { "input": "bathtubs", "output": "â ƒâ â ¹â žâ ¥â ƒâ Ž" }, { "input": "bathyscaphe", "output": "â ƒâ â ¹â ½â Žâ ‰â â â “â ‘" }, { "input": "bathyscaphe's", "output": "â ƒâ â ¹â ½â Žâ ‰â â â “â ‘â „â Ž" }, { "input": "bathyscaphes", "output": "â ƒâ â ¹â ½â Žâ ‰â â â “â ‘â Ž" }, { "input": "bathysphere", "output": "â ƒâ â ¹â ½â Žâ â “⠻⠑" }, { "input": "bathysphere's", "output": "â ƒâ â ¹â ½â Žâ â “⠻⠑⠄⠎" }, { "input": "bathyspheres", "output": "â ƒâ â ¹â ½â Žâ â “⠻⠑⠎" }, { "input": "batik", "output": "â ƒâ â žâ Šâ …" }, { "input": "batik's", "output": "â ƒâ â žâ Šâ …â „â Ž" }, { "input": "batiks", "output": "â ƒâ â žâ Šâ …â Ž" }, { "input": "bating", "output": "â ƒâ â žâ Œ" }, { "input": "batiste", "output": "â ƒâ â žâ Šâ Œâ ‘" }, { "input": "batiste's", "output": "â ƒâ â žâ Šâ Œâ ‘â „â Ž" }, { "input": "baton", "output": "â ƒâ â žâ •â " }, { "input": "baton's", "output": "â ƒâ â žâ •â â „â Ž" }, { "input": "batons", "output": "â ƒâ â žâ •â â Ž" }, { "input": "bats", "output": "â ƒâ â žâ Ž" }, { "input": "batsman", "output": "â ƒâ â žâ Žâ â â " }, { "input": "batsman's", "output": "â ƒâ â žâ Žâ â â â „â Ž" }, { "input": "batsmen", "output": "â ƒâ â žâ Žâ â ¢" }, { "input": "battalion", "output": "â ƒâ â žâ žâ â ‡â Šâ •â " }, { "input": "battalion's", "output": "â ƒâ â žâ žâ â ‡â Šâ •â â „â Ž" }, { "input": "battalions", "output": "â ƒâ â žâ žâ â ‡â Šâ •â â Ž" }, { "input": "batted", "output": "â ƒâ â žâ žâ «" }, { "input": "batten", "output": "â ƒâ â žâ žâ ¢" }, { "input": "batten's", "output": "â ƒâ â žâ žâ ¢â „â Ž" }, { "input": "battened", "output": "â ƒâ â žâ žâ ¢â «" }, { "input": "battening", "output": "â ƒâ â žâ žâ ¢â Œ" }, { "input": "battens", "output": "â ƒâ â žâ žâ ¢â Ž" }, { "input": "batter", "output": "â ƒâ â žâ žâ »" }, { "input": "batter's", "output": "â ƒâ â žâ žâ »â „â Ž" }, { "input": "battered", "output": "â ƒâ â žâ žâ »â «" }, { "input": "batterer", "output": "â ƒâ â žâ žâ »â »" }, { "input": "batterer's", "output": "â ƒâ â žâ žâ »â »â „â Ž" }, { "input": "batterers", "output": "â ƒâ â žâ žâ »â »â Ž" }, { "input": "batteries", "output": "â ƒâ â žâ žâ »â Šâ ‘â Ž" }, { "input": "battering", "output": "â ƒâ â žâ žâ »â Œ" }, { "input": "batters", "output": "â ƒâ â žâ žâ »â Ž" }, { "input": "battery", "output": "â ƒâ â žâ žâ »â ½" }, { "input": "battery's", "output": "â ƒâ â žâ žâ »â ½â „â Ž" }, { "input": "battier", "output": "â ƒâ â žâ žâ Šâ »" }, { "input": "battiest", "output": "â ƒâ â žâ žâ Šâ ‘â Œ" }, { "input": "batting", "output": "â ƒâ â žâ žâ Œ" }, { "input": "batting's", "output": "â ƒâ â žâ žâ Œâ „â Ž" }, { "input": "battle", "output": "â ƒâ â žâ žâ ‡â ‘" }, { "input": "battle's", "output": "â ƒâ â žâ žâ ‡â ‘â „â Ž" }, { "input": "battled", "output": "â ƒâ â žâ žâ ‡â «" }, { "input": "battledore", "output": "â ƒâ â žâ žâ ‡â ‘⠙⠕⠗⠑" }, { "input": "battledore's", "output": "â ƒâ â žâ žâ ‡â ‘⠙⠕⠗⠑⠄⠎" }, { "input": "battledores", "output": "â ƒâ â žâ žâ ‡â ‘⠙⠕⠗⠑⠎" }, { "input": "battlefield", "output": "â ƒâ â žâ žâ ‡â ‘⠋⠊⠑⠇⠙" }, { "input": "battlefield's", "output": "â ƒâ â žâ žâ ‡â ‘⠋⠊⠑⠇⠙⠄⠎" }, { "input": "battlefields", "output": "â ƒâ â žâ žâ ‡â ‘⠋⠊⠑⠇⠙⠎" }, { "input": "battlefront", "output": "â ƒâ â žâ žâ ‡â ‘â ‹â —â •â â ž" }, { "input": "battlefront's", "output": "â ƒâ â žâ žâ ‡â ‘â ‹â —â •â â žâ „â Ž" }, { "input": "battlefronts", "output": "â ƒâ â žâ žâ ‡â ‘â ‹â —â •â â žâ Ž" }, { "input": "battleground", "output": "â ƒâ â žâ žâ ‡â ‘⠛⠗⠨⠙" }, { "input": "battleground's", "output": "â ƒâ â žâ žâ ‡â ‘⠛⠗⠨⠙⠄⠎" }, { "input": "battlegrounds", "output": "â ƒâ â žâ žâ ‡â ‘⠛⠗⠨⠙⠎" }, { "input": "battlement", "output": "â ƒâ â žâ žâ ‡â ‘â °â ž" }, { "input": "battlement's", "output": "â ƒâ â žâ žâ ‡â ‘â °â žâ „â Ž" }, { "input": "battlements", "output": "â ƒâ â žâ žâ ‡â ‘â °â žâ Ž" }, { "input": "battles", "output": "â ƒâ â žâ žâ ‡â ‘â Ž" }, { "input": "battleship", "output": "â ƒâ â žâ žâ ‡â ‘â ©â Šâ " }, { "input": "battleship's", "output": "â ƒâ â žâ žâ ‡â ‘â ©â Šâ â „â Ž" }, { "input": "battleships", "output": "â ƒâ â žâ žâ ‡â ‘â ©â Šâ â Ž" }, { "input": "battling", "output": "â ƒâ â žâ žâ ‡â Œ" }, { "input": "batty", "output": "â ƒâ â žâ žâ ½" }, { "input": "bauble", "output": "â ƒâ â ¥â ¼" }, { "input": "bauble's", "output": "â ƒâ â ¥â ¼â „â Ž" }, { "input": "baubles", "output": "â ƒâ â ¥â ¼â Ž" }, { "input": "baud", "output": "â ƒâ â ¥â ™" }, { "input": "baud's", "output": "â ƒâ â ¥â ™â „â Ž" }, { "input": "bauxite", "output": "â ƒâ â ¥â ­â Šâ žâ ‘" }, { "input": "bauxite's", "output": "â ƒâ â ¥â ­â Šâ žâ ‘â „â Ž" }, { "input": "bawd", "output": "â ƒâ â ºâ ™" }, { "input": "bawd's", "output": "â ƒâ â ºâ ™â „â Ž" }, { "input": "bawdier", "output": "â ƒâ â ºâ ™â Šâ »" }, { "input": "bawdiest", "output": "â ƒâ â ºâ ™â Šâ ‘â Œ" }, { "input": "bawdily", "output": "â ƒâ â ºâ ™â Šâ ‡â ½" }, { "input": "bawdiness", "output": "â ƒâ â ºâ ™â Šâ °â Ž" }, { "input": "bawdiness's", "output": "â ƒâ â ºâ ™â Šâ °â Žâ „â Ž" }, { "input": "bawds", "output": "â ƒâ â ºâ ™â Ž" }, { "input": "bawdy", "output": "â ƒâ â ºâ ™â ½" }, { "input": "bawl", "output": "â ƒâ â ºâ ‡" }, { "input": "bawl's", "output": "â ƒâ â ºâ ‡â „â Ž" }, { "input": "bawled", "output": "â ƒâ â ºâ ‡â «" }, { "input": "bawling", "output": "â ƒâ â ºâ ‡â Œ" }, { "input": "bawls", "output": "â ƒâ â ºâ ‡â Ž" }, { "input": "bay", "output": "â ƒâ â ½" }, { "input": "bay's", "output": "â ƒâ â ½â „â Ž" }, { "input": "bayberries", "output": "â ƒâ â ½â ƒâ »â —â Šâ ‘â Ž" }, { "input": "bayberry", "output": "â ƒâ â ½â ƒâ »â —â ½" }, { "input": "bayberry's", "output": "â ƒâ â ½â ƒâ »â —⠽⠄⠎" }, { "input": "bayed", "output": "â ƒâ â ½â «" }, { "input": "baying", "output": "â ƒâ â ½â Œ" }, { "input": "bayonet", "output": "â ƒâ â ½â •â â ‘â ž" }, { "input": "bayonet's", "output": "â ƒâ â ½â •â â ‘â žâ „â Ž" }, { "input": "bayoneted", "output": "â ƒâ â ½â •â â ‘â žâ «" }, { "input": "bayoneting", "output": "â ƒâ â ½â •â â ‘â žâ Œ" }, { "input": "bayonets", "output": "â ƒâ â ½â •â â ‘â žâ Ž" }, { "input": "bayou", "output": "â ƒâ â ½â ³" }, { "input": "bayou's", "output": "â ƒâ â ½â ³â „â Ž" }, { "input": "bayous", "output": "â ƒâ â ½â ³â Ž" }, { "input": "bays", "output": "â ƒâ â ½â Ž" }, { "input": "bazaar", "output": "â ƒâ â µâ â œ" }, { "input": "bazaar's", "output": "â ƒâ â µâ â œâ „â Ž" }, { "input": "bazaars", "output": "â ƒâ â µâ â œâ Ž" }, { "input": "bazillion", "output": "â ƒâ â µâ Šâ ‡â ‡â Šâ •â " }, { "input": "bazillions", "output": "â ƒâ â µâ Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "bazooka", "output": "â ƒâ â µâ •â •â …â " }, { "input": "bazooka's", "output": "â ƒâ â µâ •â •â …â â „â Ž" }, { "input": "bazookas", "output": "â ƒâ â µâ •â •â …â â Ž" }, { "input": "be", "output": "â †" }, { "input": "beach", "output": "⠃⠂⠡" }, { "input": "beach's", "output": "⠃⠂⠡⠄⠎" }, { "input": "beachcomber", "output": "⠃⠂⠡⠉⠕â â ƒâ »" }, { "input": "beachcomber's", "output": "⠃⠂⠡⠉⠕â â ƒâ »â „â Ž" }, { "input": "beachcombers", "output": "⠃⠂⠡⠉⠕â â ƒâ »â Ž" }, { "input": "beached", "output": "⠃⠂⠡⠫" }, { "input": "beaches", "output": "⠃⠂⠡⠑⠎" }, { "input": "beachhead", "output": "⠃⠂⠡⠓⠂⠙" }, { "input": "beachhead's", "output": "⠃⠂⠡⠓⠂⠙⠄⠎" }, { "input": "beachheads", "output": "⠃⠂⠡⠓⠂⠙⠎" }, { "input": "beaching", "output": "⠃⠂⠡⠌" }, { "input": "beachwear's", "output": "⠃⠂⠡⠺⠑⠜⠄⠎" }, { "input": "beacon", "output": "⠃⠂⠉⠕â " }, { "input": "beacon's", "output": "⠃⠂⠉⠕â â „â Ž" }, { "input": "beacons", "output": "⠃⠂⠉⠕â â Ž" }, { "input": "bead", "output": "⠃⠂⠙" }, { "input": "bead's", "output": "⠃⠂⠙⠄⠎" }, { "input": "beaded", "output": "⠃⠂⠙⠫" }, { "input": "beadier", "output": "⠃⠂⠙⠊⠻" }, { "input": "beadiest", "output": "⠃⠂⠙⠊⠑⠌" }, { "input": "beading", "output": "⠃⠂⠙⠌" }, { "input": "beading's", "output": "⠃⠂⠙⠌⠄⠎" }, { "input": "beadle", "output": "⠃⠂⠙⠇⠑" }, { "input": "beadle's", "output": "⠃⠂⠙⠇⠑⠄⠎" }, { "input": "beadles", "output": "⠃⠂⠙⠇⠑⠎" }, { "input": "beads", "output": "⠃⠂⠙⠎" }, { "input": "beady", "output": "⠃⠂⠙⠽" }, { "input": "beagle", "output": "⠃⠂⠛⠇⠑" }, { "input": "beagle's", "output": "⠃⠂⠛⠇⠑⠄⠎" }, { "input": "beagles", "output": "⠃⠂⠛⠇⠑⠎" }, { "input": "beak", "output": "⠃⠂⠅" }, { "input": "beak's", "output": "⠃⠂⠅⠄⠎" }, { "input": "beaked", "output": "⠃⠂⠅⠫" }, { "input": "beaker", "output": "⠃⠂⠅⠻" }, { "input": "beaker's", "output": "⠃⠂⠅⠻⠄⠎" }, { "input": "beakers", "output": "⠃⠂⠅⠻⠎" }, { "input": "beaks", "output": "⠃⠂⠅⠎" }, { "input": "beam", "output": "⠃⠂â " }, { "input": "beam's", "output": "⠃⠂â â „â Ž" }, { "input": "beamed", "output": "⠃⠂â â «" }, { "input": "beaming", "output": "⠃⠂â â Œ" }, { "input": "beams", "output": "⠃⠂â â Ž" }, { "input": "bean", "output": "⠃⠂â " }, { "input": "bean's", "output": "⠃⠂â â „â Ž" }, { "input": "beanbag", "output": "⠃⠂â â ƒâ â ›" }, { "input": "beanbag's", "output": "⠃⠂â â ƒâ â ›â „â Ž" }, { "input": "beanbags", "output": "⠃⠂â â ƒâ â ›â Ž" }, { "input": "beaned", "output": "⠃⠂â â «" }, { "input": "beaning", "output": "⠃⠂â â Œ" }, { "input": "beans", "output": "⠃⠂â â Ž" }, { "input": "beanstalk", "output": "⠃⠂â â Œâ â ‡â …" }, { "input": "beanstalk's", "output": "⠃⠂â â Œâ â ‡â …â „â Ž" }, { "input": "beanstalks", "output": "⠃⠂â â Œâ â ‡â …â Ž" }, { "input": "bear", "output": "⠃⠑⠜" }, { "input": "bear's", "output": "⠃⠑⠜⠄⠎" }, { "input": "bearable", "output": "⠃⠑⠜â â ¼" }, { "input": "bearably", "output": "⠃⠑⠜â â ƒâ ‡â ½" }, { "input": "beard", "output": "⠃⠑⠜⠙" }, { "input": "beard's", "output": "⠃⠑⠜⠙⠄⠎" }, { "input": "bearded", "output": "⠃⠑⠜⠙⠫" }, { "input": "bearding", "output": "⠃⠑⠜⠙⠌" }, { "input": "beardless", "output": "⠃⠑⠜⠙⠨⠎" }, { "input": "beards", "output": "⠃⠑⠜⠙⠎" }, { "input": "bearer", "output": "⠃⠑⠜⠻" }, { "input": "bearer's", "output": "⠃⠑⠜⠻⠄⠎" }, { "input": "bearers", "output": "⠃⠑⠜⠻⠎" }, { "input": "bearing", "output": "⠃⠑⠜⠌" }, { "input": "bearing's", "output": "⠃⠑⠜⠌⠄⠎" }, { "input": "bearings", "output": "⠃⠑⠜⠌⠎" }, { "input": "bearish", "output": "⠃⠑⠜⠊⠩" }, { "input": "bearishly", "output": "⠃⠑⠜⠊⠩⠇⠽" }, { "input": "bearishness", "output": "⠃⠑⠜⠊⠩⠰⠎" }, { "input": "bearishness's", "output": "⠃⠑⠜⠊⠩⠰⠎⠄⠎" }, { "input": "bearlike", "output": "⠃⠑⠜⠇⠊⠅⠑" }, { "input": "bears", "output": "⠃⠑⠜⠎" }, { "input": "bearskin", "output": "⠃⠑⠜⠎⠅⠔" }, { "input": "bearskin's", "output": "⠃⠑⠜⠎⠅⠔⠄⠎" }, { "input": "bearskins", "output": "⠃⠑⠜⠎⠅⠔⠎" }, { "input": "beast", "output": "⠃⠂⠌" }, { "input": "beast's", "output": "⠃⠂⠌⠄⠎" }, { "input": "beastlier", "output": "⠃⠂⠌⠇⠊⠻" }, { "input": "beastliest", "output": "⠃⠂⠌⠇⠊⠑⠌" }, { "input": "beastliness", "output": "⠃⠂⠌⠇⠊⠰⠎" }, { "input": "beastliness's", "output": "⠃⠂⠌⠇⠊⠰⠎⠄⠎" }, { "input": "beastly", "output": "⠃⠂⠌⠇⠽" }, { "input": "beastly's", "output": "⠃⠂⠌⠇⠽⠄⠎" }, { "input": "beasts", "output": "⠃⠂⠌⠎" }, { "input": "beat", "output": "⠃⠂⠞" }, { "input": "beat's", "output": "⠃⠂⠞⠄⠎" }, { "input": "beatable", "output": "⠃⠂⠞â â ¼" }, { "input": "beaten", "output": "⠃⠂⠞⠢" }, { "input": "beater", "output": "⠃⠂⠞⠻" }, { "input": "beater's", "output": "⠃⠂⠞⠻⠄⠎" }, { "input": "beaters", "output": "⠃⠂⠞⠻⠎" }, { "input": "beatific", "output": "â †â â žâ Šâ ‹â Šâ ‰" }, { "input": "beatification", "output": "â †â â žâ Šâ ‹â Šâ ‰â  â " }, { "input": "beatification's", "output": "â †â â žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "beatifications", "output": "â †â â žâ Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "beatified", "output": "â †â â žâ Šâ ‹â Šâ «" }, { "input": "beatifies", "output": "â †â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "beatify", "output": "â †â â žâ Šâ ‹â ½" }, { "input": "beatifying", "output": "â †â â žâ Šâ ‹â ½â Œ" }, { "input": "beating", "output": "⠃⠂⠞⠌" }, { "input": "beating's", "output": "⠃⠂⠞⠌⠄⠎" }, { "input": "beatings", "output": "⠃⠂⠞⠌⠎" }, { "input": "beatitude", "output": "â †â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "beatitude's", "output": "â †â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "beatitudes", "output": "â †â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "beatnik", "output": "⠃⠂⠞â â Šâ …" }, { "input": "beatnik's", "output": "⠃⠂⠞â â Šâ …â „â Ž" }, { "input": "beatniks", "output": "⠃⠂⠞â â Šâ …â Ž" }, { "input": "beats", "output": "⠃⠂⠞⠎" }, { "input": "beau", "output": "⠃⠂⠥" }, { "input": "beau's", "output": "⠃⠂⠥⠄⠎" }, { "input": "beaus", "output": "⠃⠂⠥⠎" }, { "input": "beauteous", "output": "⠃⠂⠥⠞⠑⠳⠎" }, { "input": "beauteously", "output": "⠃⠂⠥⠞⠑⠳⠎⠇⠽" }, { "input": "beautician", "output": "⠃⠂⠥⠞⠊⠉⠊â â " }, { "input": "beautician's", "output": "⠃⠂⠥⠞⠊⠉⠊â â â „â Ž" }, { "input": "beauticians", "output": "⠃⠂⠥⠞⠊⠉⠊â â â Ž" }, { "input": "beauties", "output": "⠃⠂⠥⠞⠊⠑⠎" }, { "input": "beautification", "output": "⠃⠂⠥⠞⠊⠋⠊⠉⠠â " }, { "input": "beautification's", "output": "⠃⠂⠥⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "beautified", "output": "⠃⠂⠥⠞⠊⠋⠊⠫" }, { "input": "beautifier", "output": "⠃⠂⠥⠞⠊⠋⠊⠻" }, { "input": "beautifier's", "output": "⠃⠂⠥⠞⠊⠋⠊⠻⠄⠎" }, { "input": "beautifiers", "output": "⠃⠂⠥⠞⠊⠋⠊⠻⠎" }, { "input": "beautifies", "output": "⠃⠂⠥⠞⠊⠋⠊⠑⠎" }, { "input": "beautiful", "output": "⠃⠂⠥⠞⠊⠰⠇" }, { "input": "beautifully", "output": "⠃⠂⠥⠞⠊⠰⠇⠇⠽" }, { "input": "beautify", "output": "⠃⠂⠥⠞⠊⠋⠽" }, { "input": "beautifying", "output": "⠃⠂⠥⠞⠊⠋⠽⠌" }, { "input": "beauty", "output": "⠃⠂⠥⠞⠽" }, { "input": "beauty's", "output": "⠃⠂⠥⠞⠽⠄⠎" }, { "input": "beaver", "output": "⠃⠂⠧⠻" }, { "input": "beaver's", "output": "⠃⠂⠧⠻⠄⠎" }, { "input": "beavered", "output": "⠃⠂⠧⠻⠫" }, { "input": "beavering", "output": "⠃⠂⠧⠻⠌" }, { "input": "beavers", "output": "⠃⠂⠧⠻⠎" }, { "input": "bebop", "output": "⠆⠃⠕â " }, { "input": "bebop's", "output": "⠆⠃⠕â â „â Ž" }, { "input": "bebops", "output": "⠆⠃⠕â â Ž" }, { "input": "becalm", "output": "⠆⠉â â ‡â " }, { "input": "becalmed", "output": "⠆⠉â â ‡â â «" }, { "input": "becalming", "output": "⠆⠉â â ‡â â Œ" }, { "input": "becalms", "output": "⠆⠉â â ‡â â Ž" }, { "input": "became", "output": "⠆⠉â â â ‘" }, { "input": "because", "output": "⠆⠉" }, { "input": "beck", "output": "⠃⠑⠉⠅" }, { "input": "beck's", "output": "⠃⠑⠉⠅⠄⠎" }, { "input": "beckon", "output": "⠃⠑⠉⠅⠕â " }, { "input": "beckoned", "output": "⠃⠑⠉⠅⠕â â «" }, { "input": "beckoning", "output": "⠃⠑⠉⠅⠕â â Œ" }, { "input": "beckons", "output": "⠃⠑⠉⠅⠕â â Ž" }, { "input": "becks", "output": "⠃⠑⠉⠅⠎" }, { "input": "becloud", "output": "⠆⠉⠇⠳⠙" }, { "input": "beclouded", "output": "⠆⠉⠇⠳⠙⠫" }, { "input": "beclouding", "output": "⠆⠉⠇⠳⠙⠌" }, { "input": "beclouds", "output": "⠆⠉⠇⠳⠙⠎" }, { "input": "become", "output": "⠆⠉⠕â â ‘" }, { "input": "becomes", "output": "⠆⠉⠕â â ‘â Ž" }, { "input": "becoming", "output": "⠆⠉⠕â â Œ" }, { "input": "becomingly", "output": "⠆⠉⠕â â Œâ ‡â ½" }, { "input": "bed", "output": "⠃⠫" }, { "input": "bed's", "output": "⠃⠫⠄⠎" }, { "input": "bedazzle", "output": "⠆⠙â â µâ µâ ‡â ‘" }, { "input": "bedazzled", "output": "⠆⠙â â µâ µâ ‡â «" }, { "input": "bedazzlement", "output": "⠆⠙â â µâ µâ ‡â ‘â °â ž" }, { "input": "bedazzlement's", "output": "⠆⠙â â µâ µâ ‡â ‘â °â žâ „â Ž" }, { "input": "bedazzles", "output": "⠆⠙â â µâ µâ ‡â ‘â Ž" }, { "input": "bedazzling", "output": "⠆⠙â â µâ µâ ‡â Œ" }, { "input": "bedbug", "output": "⠃⠫⠃⠥⠛" }, { "input": "bedbug's", "output": "⠃⠫⠃⠥⠛⠄⠎" }, { "input": "bedbugs", "output": "⠃⠫⠃⠥⠛⠎" }, { "input": "bedclothes", "output": "⠃⠫⠉⠇⠕⠮⠎" }, { "input": "bedclothes's", "output": "⠃⠫⠉⠇⠕⠮⠎⠄⠎" }, { "input": "bedded", "output": "⠃⠫⠙⠫" }, { "input": "bedder", "output": "⠃⠫⠙⠻" }, { "input": "bedding", "output": "⠃⠫⠙⠌" }, { "input": "bedding's", "output": "⠃⠫⠙⠌⠄⠎" }, { "input": "bedeck", "output": "⠆⠙⠑⠉⠅" }, { "input": "bedecked", "output": "⠆⠙⠑⠉⠅⠫" }, { "input": "bedecking", "output": "⠆⠙⠑⠉⠅⠌" }, { "input": "bedecks", "output": "⠆⠙⠑⠉⠅⠎" }, { "input": "bedevil", "output": "⠆⠙⠑⠧⠊⠇" }, { "input": "bedeviled", "output": "⠆⠙⠑⠧⠊⠇⠫" }, { "input": "bedeviling", "output": "⠆⠙⠑⠧⠊⠇⠌" }, { "input": "bedevilment", "output": "⠆⠙⠑⠧⠊⠇⠰⠞" }, { "input": "bedevilment's", "output": "⠆⠙⠑⠧⠊⠇⠰⠞⠄⠎" }, { "input": "bedevils", "output": "⠆⠙⠑⠧⠊⠇⠎" }, { "input": "bedfellow", "output": "⠃⠫⠋⠑⠇⠇⠪" }, { "input": "bedfellow's", "output": "⠃⠫⠋⠑⠇⠇⠪⠄⠎" }, { "input": "bedfellows", "output": "⠃⠫⠋⠑⠇⠇⠪⠎" }, { "input": "bedim", "output": "⠆⠙⠊â " }, { "input": "bedimmed", "output": "⠆⠙⠊â â â «" }, { "input": "bedimming", "output": "⠆⠙⠊â â â Œ" }, { "input": "bedims", "output": "⠆⠙⠊â â Ž" }, { "input": "bedizen", "output": "⠆⠙⠊⠵⠢" }, { "input": "bedizened", "output": "⠆⠙⠊⠵⠢⠫" }, { "input": "bedizening", "output": "⠆⠙⠊⠵⠢⠌" }, { "input": "bedizens", "output": "⠆⠙⠊⠵⠢⠎" }, { "input": "bedlam", "output": "⠃⠫⠇â â " }, { "input": "bedlam's", "output": "⠃⠫⠇â â â „â Ž" }, { "input": "bedlams", "output": "⠃⠫⠇â â â Ž" }, { "input": "bedpan", "output": "⠃⠫â â â " }, { "input": "bedpan's", "output": "⠃⠫â â â â „â Ž" }, { "input": "bedpans", "output": "⠃⠫â â â â Ž" }, { "input": "bedraggle", "output": "⠆⠙⠗â â ¶â ‡â ‘" }, { "input": "bedraggled", "output": "⠆⠙⠗â â ¶â ‡â «" }, { "input": "bedraggles", "output": "⠆⠙⠗â â ¶â ‡â ‘â Ž" }, { "input": "bedraggling", "output": "⠆⠙⠗â â ¶â ‡â Œ" }, { "input": "bedridden", "output": "⠃⠫⠗⠊⠲⠢" }, { "input": "bedrock", "output": "⠃⠫⠗⠕⠉⠅" }, { "input": "bedrock's", "output": "⠃⠫⠗⠕⠉⠅⠄⠎" }, { "input": "bedrocks", "output": "⠃⠫⠗⠕⠉⠅⠎" }, { "input": "bedroll", "output": "⠃⠫⠗⠕⠇⠇" }, { "input": "bedroll's", "output": "⠃⠫⠗⠕⠇⠇⠄⠎" }, { "input": "bedrolls", "output": "⠃⠫⠗⠕⠇⠇⠎" }, { "input": "bedroom", "output": "⠃⠫⠗⠕⠕â " }, { "input": "bedroom's", "output": "⠃⠫⠗⠕⠕â â „â Ž" }, { "input": "bedrooms", "output": "⠃⠫⠗⠕⠕â â Ž" }, { "input": "beds", "output": "⠃⠫⠎" }, { "input": "bedside", "output": "⠃⠫⠎⠊⠙⠑" }, { "input": "bedside's", "output": "⠃⠫⠎⠊⠙⠑⠄⠎" }, { "input": "bedsides", "output": "⠃⠫⠎⠊⠙⠑⠎" }, { "input": "bedsore", "output": "⠃⠫⠎⠕⠗⠑" }, { "input": "bedsore's", "output": "⠃⠫⠎⠕⠗⠑⠄⠎" }, { "input": "bedsores", "output": "⠃⠫⠎⠕⠗⠑⠎" }, { "input": "bedspread", "output": "⠃⠫⠎â â —â ‚â ™" }, { "input": "bedspread's", "output": "⠃⠫⠎â â —⠂⠙⠄⠎" }, { "input": "bedspreads", "output": "⠃⠫⠎â â —⠂⠙⠎" }, { "input": "bedstead", "output": "⠃⠫⠌⠂⠙" }, { "input": "bedstead's", "output": "⠃⠫⠌⠂⠙⠄⠎" }, { "input": "bedsteads", "output": "⠃⠫⠌⠂⠙⠎" }, { "input": "bedtime", "output": "⠃⠫â â ž" }, { "input": "bedtime's", "output": "⠃⠫â â žâ „â Ž" }, { "input": "bedtimes", "output": "⠃⠫â â žâ Ž" }, { "input": "bee", "output": "⠃⠑⠑" }, { "input": "bee's", "output": "⠃⠑⠑⠄⠎" }, { "input": "beebread", "output": "⠃⠑⠑⠃⠗⠂⠙" }, { "input": "beebread's", "output": "⠃⠑⠑⠃⠗⠂⠙⠄⠎" }, { "input": "beech", "output": "⠃⠑⠑⠡" }, { "input": "beech's", "output": "⠃⠑⠑⠡⠄⠎" }, { "input": "beeches", "output": "⠃⠑⠑⠡⠑⠎" }, { "input": "beechnut", "output": "⠃⠑⠑⠡â â ¥â ž" }, { "input": "beechnut's", "output": "⠃⠑⠑⠡â â ¥â žâ „â Ž" }, { "input": "beechnuts", "output": "⠃⠑⠑⠡â â ¥â žâ Ž" }, { "input": "beef", "output": "⠃⠑⠑⠋" }, { "input": "beef's", "output": "⠃⠑⠑⠋⠄⠎" }, { "input": "beefburger", "output": "⠃⠑⠑⠋⠃⠥⠗⠛⠻" }, { "input": "beefed", "output": "⠃⠑⠑⠋⠫" }, { "input": "beefier", "output": "⠃⠑⠑⠋⠊⠻" }, { "input": "beefiest", "output": "⠃⠑⠑⠋⠊⠑⠌" }, { "input": "beefiness", "output": "⠃⠑⠑⠋⠊⠰⠎" }, { "input": "beefiness's", "output": "⠃⠑⠑⠋⠊⠰⠎⠄⠎" }, { "input": "beefing", "output": "⠃⠑⠑⠋⠌" }, { "input": "beefs", "output": "⠃⠑⠑⠋⠎" }, { "input": "beefsteak", "output": "⠃⠑⠑⠋⠌⠂⠅" }, { "input": "beefsteak's", "output": "⠃⠑⠑⠋⠌⠂⠅⠄⠎" }, { "input": "beefsteaks", "output": "⠃⠑⠑⠋⠌⠂⠅⠎" }, { "input": "beefy", "output": "⠃⠑⠑⠋⠽" }, { "input": "beehive", "output": "⠃⠑⠑⠓⠊⠧⠑" }, { "input": "beehive's", "output": "⠃⠑⠑⠓⠊⠧⠑⠄⠎" }, { "input": "beehives", "output": "⠃⠑⠑⠓⠊⠧⠑⠎" }, { "input": "beekeeper", "output": "⠃⠑⠑⠅⠑⠑â â »" }, { "input": "beekeeper's", "output": "⠃⠑⠑⠅⠑⠑â â »â „â Ž" }, { "input": "beekeepers", "output": "⠃⠑⠑⠅⠑⠑â â »â Ž" }, { "input": "beekeeping", "output": "⠃⠑⠑⠅⠑⠑â â Œ" }, { "input": "beekeeping's", "output": "⠃⠑⠑⠅⠑⠑â â Œâ „â Ž" }, { "input": "beeline", "output": "⠃⠑⠑⠇⠔⠑" }, { "input": "beeline's", "output": "⠃⠑⠑⠇⠔⠑⠄⠎" }, { "input": "beelines", "output": "⠃⠑⠑⠇⠔⠑⠎" }, { "input": "been", "output": "⠃⠑⠢" }, { "input": "beep", "output": "⠃⠑⠑â " }, { "input": "beep's", "output": "⠃⠑⠑â â „â Ž" }, { "input": "beeped", "output": "⠃⠑⠑â â «" }, { "input": "beeper", "output": "⠃⠑⠑â â »" }, { "input": "beeper's", "output": "⠃⠑⠑â â »â „â Ž" }, { "input": "beepers", "output": "⠃⠑⠑â â »â Ž" }, { "input": "beeping", "output": "⠃⠑⠑â â Œ" }, { "input": "beeps", "output": "⠃⠑⠑â â Ž" }, { "input": "beer", "output": "⠃⠑⠻" }, { "input": "beer's", "output": "⠃⠑⠻⠄⠎" }, { "input": "beerier", "output": "⠃⠑⠻⠊⠻" }, { "input": "beeriest", "output": "⠃⠑⠻⠊⠑⠌" }, { "input": "beers", "output": "⠃⠑⠻⠎" }, { "input": "bees", "output": "⠃⠑⠑⠎" }, { "input": "beeswax", "output": "⠃⠑⠑⠎⠺â â ­" }, { "input": "beeswax's", "output": "⠃⠑⠑⠎⠺â â ­â „â Ž" }, { "input": "beet", "output": "⠃⠑⠑⠞" }, { "input": "beet's", "output": "⠃⠑⠑⠞⠄⠎" }, { "input": "beetle", "output": "⠃⠑⠑⠞⠇⠑" }, { "input": "beetle's", "output": "⠃⠑⠑⠞⠇⠑⠄⠎" }, { "input": "beetled", "output": "⠃⠑⠑⠞⠇⠫" }, { "input": "beetles", "output": "⠃⠑⠑⠞⠇⠑⠎" }, { "input": "beetling", "output": "⠃⠑⠑⠞⠇⠌" }, { "input": "beets", "output": "⠃⠑⠑⠞⠎" }, { "input": "beeves", "output": "⠃⠑⠑⠧⠑⠎" }, { "input": "befall", "output": "⠆⠋â â ‡â ‡" }, { "input": "befallen", "output": "⠆⠋â â ‡â ‡â ¢" }, { "input": "befalling", "output": "⠆⠋â â ‡â ‡â Œ" }, { "input": "befalls", "output": "⠆⠋â â ‡â ‡â Ž" }, { "input": "befell", "output": "⠆⠋⠑⠇⠇" }, { "input": "befit", "output": "⠆⠋⠊⠞" }, { "input": "befits", "output": "⠆⠋⠊⠞⠎" }, { "input": "befitted", "output": "⠆⠋⠊⠞⠞⠫" }, { "input": "befitting", "output": "⠆⠋⠊⠞⠞⠌" }, { "input": "befittingly", "output": "⠆⠋⠊⠞⠞⠌⠇⠽" }, { "input": "befog", "output": "⠆⠋⠕⠛" }, { "input": "befogged", "output": "⠆⠋⠕⠶⠫" }, { "input": "befogging", "output": "⠆⠋⠕⠶⠌" }, { "input": "befogs", "output": "⠆⠋⠕⠛⠎" }, { "input": "before", "output": "⠆⠋" }, { "input": "beforehand", "output": "⠆⠋⠓⠯" }, { "input": "befoul", "output": "⠆⠋⠳⠇" }, { "input": "befouled", "output": "⠆⠋⠳⠇⠫" }, { "input": "befouling", "output": "⠆⠋⠳⠇⠌" }, { "input": "befouls", "output": "⠆⠋⠳⠇⠎" }, { "input": "befriend", "output": "⠆⠋⠗" }, { "input": "befriended", "output": "⠆⠋⠗⠊⠢⠙⠫" }, { "input": "befriending", "output": "⠆⠋⠗⠊⠢⠙⠌" }, { "input": "befriends", "output": "⠆⠋⠗⠎" }, { "input": "befuddle", "output": "⠆⠋⠥⠲⠇⠑" }, { "input": "befuddled", "output": "⠆⠋⠥⠲⠇⠫" }, { "input": "befuddlement", "output": "⠆⠋⠥⠲⠇⠑⠰⠞" }, { "input": "befuddlement's", "output": "⠆⠋⠥⠲⠇⠑⠰⠞⠄⠎" }, { "input": "befuddles", "output": "⠆⠋⠥⠲⠇⠑⠎" }, { "input": "befuddling", "output": "⠆⠋⠥⠲⠇⠌" }, { "input": "beg", "output": "⠃⠑⠛" }, { "input": "began", "output": "⠆⠛â â " }, { "input": "begat", "output": "⠆⠛â â ž" }, { "input": "beget", "output": "⠆⠛⠑⠞" }, { "input": "begets", "output": "⠆⠛⠑⠞⠎" }, { "input": "begetting", "output": "⠆⠛⠑⠞⠞⠌" }, { "input": "beggar", "output": "⠃⠑⠶⠜" }, { "input": "beggar's", "output": "⠃⠑⠶⠜⠄⠎" }, { "input": "beggared", "output": "⠃⠑⠶⠜⠫" }, { "input": "beggaring", "output": "⠃⠑⠶⠜⠌" }, { "input": "beggarly", "output": "⠃⠑⠶⠜⠇⠽" }, { "input": "beggars", "output": "⠃⠑⠶⠜⠎" }, { "input": "beggary", "output": "⠃⠑⠶⠜⠽" }, { "input": "beggary's", "output": "⠃⠑⠶⠜⠽⠄⠎" }, { "input": "begged", "output": "⠃⠑⠶⠫" }, { "input": "begging", "output": "⠃⠑⠶⠌" }, { "input": "begin", "output": "⠆⠛⠔" }, { "input": "beginner", "output": "⠆⠛⠔â â »" }, { "input": "beginner's", "output": "⠆⠛⠔â â »â „â Ž" }, { "input": "beginners", "output": "⠆⠛⠔â â »â Ž" }, { "input": "beginning", "output": "⠆⠛⠔â â Œ" }, { "input": "beginning's", "output": "⠆⠛⠔â â Œâ „â Ž" }, { "input": "beginnings", "output": "⠆⠛⠔â â Œâ Ž" }, { "input": "begins", "output": "⠆⠛⠔⠎" }, { "input": "begone", "output": "⠆⠛â â •" }, { "input": "begonia", "output": "⠆⠛⠕â â Šâ " }, { "input": "begonia's", "output": "⠆⠛⠕â â Šâ â „â Ž" }, { "input": "begonias", "output": "⠆⠛⠕â â Šâ â Ž" }, { "input": "begot", "output": "⠆⠛⠕⠞" }, { "input": "begotten", "output": "⠆⠛⠕⠞⠞⠢" }, { "input": "begrime", "output": "⠆⠛⠗⠊â â ‘" }, { "input": "begrimed", "output": "⠆⠛⠗⠊â â «" }, { "input": "begrimes", "output": "⠆⠛⠗⠊â â ‘â Ž" }, { "input": "begriming", "output": "⠆⠛⠗⠊â â Œ" }, { "input": "begrudge", "output": "⠆⠛⠗⠥⠙⠛⠑" }, { "input": "begrudged", "output": "⠆⠛⠗⠥⠙⠛⠫" }, { "input": "begrudges", "output": "⠆⠛⠗⠥⠙⠛⠑⠎" }, { "input": "begrudging", "output": "⠆⠛⠗⠥⠙⠛⠌" }, { "input": "begrudgingly", "output": "⠆⠛⠗⠥⠙⠛⠌⠇⠽" }, { "input": "begs", "output": "⠃⠑⠛⠎" }, { "input": "beguile", "output": "⠆⠛⠥⠊⠇⠑" }, { "input": "beguiled", "output": "⠆⠛⠥⠊⠇⠫" }, { "input": "beguilement", "output": "⠆⠛⠥⠊⠇⠑⠰⠞" }, { "input": "beguilement's", "output": "⠆⠛⠥⠊⠇⠑⠰⠞⠄⠎" }, { "input": "beguiler", "output": "⠆⠛⠥⠊⠇⠻" }, { "input": "beguiler's", "output": "⠆⠛⠥⠊⠇⠻⠄⠎" }, { "input": "beguilers", "output": "⠆⠛⠥⠊⠇⠻⠎" }, { "input": "beguiles", "output": "⠆⠛⠥⠊⠇⠑⠎" }, { "input": "beguiling", "output": "⠆⠛⠥⠊⠇⠌" }, { "input": "beguilingly", "output": "⠆⠛⠥⠊⠇⠌⠇⠽" }, { "input": "beguine", "output": "⠃⠑⠛⠥⠔⠑" }, { "input": "beguine's", "output": "⠃⠑⠛⠥⠔⠑⠄⠎" }, { "input": "beguines", "output": "⠃⠑⠛⠥⠔⠑⠎" }, { "input": "begun", "output": "⠆⠛⠥â " }, { "input": "behalf", "output": "⠆⠓â â ‡â ‹" }, { "input": "behalf's", "output": "⠆⠓â â ‡â ‹â „â Ž" }, { "input": "behalves", "output": "⠆⠓â â ‡â §â ‘â Ž" }, { "input": "behave", "output": "⠆⠓â â §â ‘" }, { "input": "behaved", "output": "⠆⠓â â §â «" }, { "input": "behaves", "output": "⠆⠓â â §â ‘â Ž" }, { "input": "behaving", "output": "⠆⠓â â §â Œ" }, { "input": "behavior", "output": "⠆⠓â â §â Šâ •â —" }, { "input": "behavior's", "output": "⠆⠓â â §â Šâ •â —â „â Ž" }, { "input": "behavioral", "output": "⠆⠓â â §â Šâ •â —â â ‡" }, { "input": "behaviorally", "output": "⠆⠓â â §â Šâ •â —â  â ½" }, { "input": "behaviorism", "output": "⠆⠓â â §â Šâ •â —â Šâ Žâ " }, { "input": "behaviorism's", "output": "⠆⠓â â §â Šâ •â —â Šâ Žâ â „â Ž" }, { "input": "behaviorist", "output": "⠆⠓â â §â Šâ •â —â Šâ Œ" }, { "input": "behaviorist's", "output": "⠆⠓â â §â Šâ •⠗⠊⠌⠄⠎" }, { "input": "behaviorists", "output": "⠆⠓â â §â Šâ •⠗⠊⠌⠎" }, { "input": "behaviors", "output": "⠆⠓â â §â Šâ •â —â Ž" }, { "input": "behead", "output": "⠆⠓⠂⠙" }, { "input": "beheaded", "output": "⠆⠓⠂⠙⠫" }, { "input": "beheading", "output": "⠆⠓⠂⠙⠌" }, { "input": "beheads", "output": "⠆⠓⠂⠙⠎" }, { "input": "beheld", "output": "⠆⠓⠑⠇⠙" }, { "input": "behemoth", "output": "⠆⠓⠑â â •â ¹" }, { "input": "behemoth's", "output": "⠆⠓⠑â â •⠹⠄⠎" }, { "input": "behemoths", "output": "⠆⠓⠑â â •⠹⠎" }, { "input": "behest", "output": "⠆⠓⠑⠌" }, { "input": "behest's", "output": "⠆⠓⠑⠌⠄⠎" }, { "input": "behests", "output": "⠆⠓⠑⠌⠎" }, { "input": "behind", "output": "⠆⠓" }, { "input": "behind's", "output": "⠆⠓⠄⠎" }, { "input": "behinds", "output": "⠆⠓⠎" }, { "input": "behold", "output": "⠆⠓⠕⠇⠙" }, { "input": "beholden", "output": "⠆⠓⠕⠇⠙⠢" }, { "input": "beholder", "output": "⠆⠓⠕⠇⠙⠻" }, { "input": "beholder's", "output": "⠆⠓⠕⠇⠙⠻⠄⠎" }, { "input": "beholders", "output": "⠆⠓⠕⠇⠙⠻⠎" }, { "input": "beholding", "output": "⠆⠓⠕⠇⠙⠌" }, { "input": "beholds", "output": "⠆⠓⠕⠇⠙⠎" }, { "input": "behoove", "output": "⠆⠓⠕⠕⠧⠑" }, { "input": "behooved", "output": "⠆⠓⠕⠕⠧⠫" }, { "input": "behooves", "output": "⠆⠓⠕⠕⠧⠑⠎" }, { "input": "behooving", "output": "⠆⠓⠕⠕⠧⠌" }, { "input": "beige", "output": "⠃⠑⠊⠛⠑" }, { "input": "beige's", "output": "⠃⠑⠊⠛⠑⠄⠎" }, { "input": "being", "output": "⠆⠌" }, { "input": "being's", "output": "⠆⠌⠄⠎" }, { "input": "beings", "output": "⠆⠌⠎" }, { "input": "bejeweled", "output": "⠆⠚⠑⠺⠑⠇⠫" }, { "input": "bejeweling", "output": "⠆⠚⠑⠺⠑⠇⠌" }, { "input": "belabor", "output": "⠆⠇â â ƒâ •â —" }, { "input": "belabored", "output": "⠆⠇â â ƒâ •â —â «" }, { "input": "belaboring", "output": "⠆⠇â â ƒâ •â —â Œ" }, { "input": "belabors", "output": "⠆⠇â â ƒâ •â —â Ž" }, { "input": "belated", "output": "⠆⠇â â žâ «" }, { "input": "belatedly", "output": "⠆⠇â â žâ «â ‡â ½" }, { "input": "belay", "output": "⠆⠇â â ½" }, { "input": "belayed", "output": "⠆⠇â â ½â «" }, { "input": "belaying", "output": "⠆⠇â â ½â Œ" }, { "input": "belays", "output": "⠆⠇â â ½â Ž" }, { "input": "belch", "output": "⠃⠑⠇⠡" }, { "input": "belch's", "output": "⠃⠑⠇⠡⠄⠎" }, { "input": "belched", "output": "⠃⠑⠇⠡⠫" }, { "input": "belches", "output": "⠃⠑⠇⠡⠑⠎" }, { "input": "belching", "output": "⠃⠑⠇⠡⠌" }, { "input": "beleaguer", "output": "⠆⠇⠂⠛⠥⠻" }, { "input": "beleaguered", "output": "⠆⠇⠂⠛⠥⠻⠫" }, { "input": "beleaguering", "output": "⠆⠇⠂⠛⠥⠻⠌" }, { "input": "beleaguers", "output": "⠆⠇⠂⠛⠥⠻⠎" }, { "input": "belfries", "output": "⠃⠑⠇⠋⠗⠊⠑⠎" }, { "input": "belfry", "output": "⠃⠑⠇⠋⠗⠽" }, { "input": "belfry's", "output": "⠃⠑⠇⠋⠗⠽⠄⠎" }, { "input": "belie", "output": "⠆⠇⠊⠑" }, { "input": "belied", "output": "⠆⠇⠊⠫" }, { "input": "belief", "output": "⠆⠇⠊⠑⠋" }, { "input": "belief's", "output": "⠆⠇⠊⠑⠋⠄⠎" }, { "input": "beliefs", "output": "⠆⠇⠊⠑⠋⠎" }, { "input": "belies", "output": "⠆⠇⠊⠑⠎" }, { "input": "believable", "output": "⠆⠇⠊⠑⠧â â ¼" }, { "input": "believably", "output": "⠆⠇⠊⠑⠧â â ƒâ ‡â ½" }, { "input": "believe", "output": "⠆⠇⠊⠑⠧⠑" }, { "input": "believed", "output": "⠆⠇⠊⠑⠧⠫" }, { "input": "believer", "output": "⠆⠇⠊⠑⠧⠻" }, { "input": "believer's", "output": "⠆⠇⠊⠑⠧⠻⠄⠎" }, { "input": "believers", "output": "⠆⠇⠊⠑⠧⠻⠎" }, { "input": "believes", "output": "⠆⠇⠊⠑⠧⠑⠎" }, { "input": "believing", "output": "⠆⠇⠊⠑⠧⠌" }, { "input": "belittle", "output": "⠆⠇⠇" }, { "input": "belittled", "output": "⠆⠇⠇⠙" }, { "input": "belittlement", "output": "⠆⠇⠇⠰⠞" }, { "input": "belittlement's", "output": "⠆⠇⠇⠰⠞⠄⠎" }, { "input": "belittles", "output": "⠆⠇⠇⠎" }, { "input": "belittling", "output": "⠆⠇⠊⠞⠞⠇⠌" }, { "input": "bell", "output": "⠃⠑⠇⠇" }, { "input": "bell's", "output": "⠃⠑⠇⠇⠄⠎" }, { "input": "belladonna", "output": "⠃⠑⠇⠇â â ™â •â â â " }, { "input": "belladonna's", "output": "⠃⠑⠇⠇â â ™â •â â â â „â Ž" }, { "input": "bellboy", "output": "⠃⠑⠇⠇⠃⠕⠽" }, { "input": "bellboy's", "output": "⠃⠑⠇⠇⠃⠕⠽⠄⠎" }, { "input": "bellboys", "output": "⠃⠑⠇⠇⠃⠕⠽⠎" }, { "input": "belle", "output": "⠃⠑⠇⠇⠑" }, { "input": "belle's", "output": "⠃⠑⠇⠇⠑⠄⠎" }, { "input": "belled", "output": "⠃⠑⠇⠇⠫" }, { "input": "belles", "output": "⠃⠑⠇⠇⠑⠎" }, { "input": "belletrist", "output": "⠃⠑⠇⠇⠑⠞⠗⠊⠌" }, { "input": "belletrist's", "output": "⠃⠑⠇⠇⠑⠞⠗⠊⠌⠄⠎" }, { "input": "belletristic", "output": "⠃⠑⠇⠇⠑⠞⠗⠊⠌⠊⠉" }, { "input": "belletrists", "output": "⠃⠑⠇⠇⠑⠞⠗⠊⠌⠎" }, { "input": "bellhop", "output": "⠃⠑⠇⠇⠓⠕â " }, { "input": "bellhop's", "output": "⠃⠑⠇⠇⠓⠕â â „â Ž" }, { "input": "bellhops", "output": "⠃⠑⠇⠇⠓⠕â â Ž" }, { "input": "bellicose", "output": "⠃⠑⠇⠇⠊⠉⠕⠎⠑" }, { "input": "bellicosity", "output": "⠃⠑⠇⠇⠊⠉⠕⠎⠰⠽" }, { "input": "bellicosity's", "output": "⠃⠑⠇⠇⠊⠉⠕⠎⠰⠽⠄⠎" }, { "input": "bellied", "output": "⠃⠑⠇⠇⠊⠫" }, { "input": "bellies", "output": "⠃⠑⠇⠇⠊⠑⠎" }, { "input": "belligerence", "output": "⠃⠑⠇⠇⠊⠛⠻⠰⠑" }, { "input": "belligerence's", "output": "⠃⠑⠇⠇⠊⠛⠻⠰⠑⠄⠎" }, { "input": "belligerency", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠉⠽" }, { "input": "belligerency's", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠉⠽⠄⠎" }, { "input": "belligerent", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞" }, { "input": "belligerent's", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞⠄⠎" }, { "input": "belligerently", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞⠇⠽" }, { "input": "belligerents", "output": "⠃⠑⠇⠇⠊⠛⠻⠢⠞⠎" }, { "input": "belling", "output": "⠃⠑⠇⠇⠌" }, { "input": "bellman", "output": "⠃⠑⠇⠇â â â " }, { "input": "bellman's", "output": "⠃⠑⠇⠇â â â â „â Ž" }, { "input": "bellmen", "output": "⠃⠑⠇⠇â â ¢" }, { "input": "bellow", "output": "⠃⠑⠇⠇⠪" }, { "input": "bellow's", "output": "⠃⠑⠇⠇⠪⠄⠎" }, { "input": "bellowed", "output": "⠃⠑⠇⠇⠪⠫" }, { "input": "bellowing", "output": "⠃⠑⠇⠇⠪⠌" }, { "input": "bellows", "output": "⠃⠑⠇⠇⠪⠎" }, { "input": "bells", "output": "⠃⠑⠇⠇⠎" }, { "input": "bellwether", "output": "⠃⠑⠇⠇⠺⠑⠮⠗" }, { "input": "bellwether's", "output": "⠃⠑⠇⠇⠺⠑⠮⠗⠄⠎" }, { "input": "bellwethers", "output": "⠃⠑⠇⠇⠺⠑⠮⠗⠎" }, { "input": "belly", "output": "⠃⠑⠇⠇⠽" }, { "input": "belly's", "output": "⠃⠑⠇⠇⠽⠄⠎" }, { "input": "bellyache", "output": "⠃⠑⠇⠇⠽â â ¡â ‘" }, { "input": "bellyache's", "output": "⠃⠑⠇⠇⠽â â ¡â ‘â „â Ž" }, { "input": "bellyached", "output": "⠃⠑⠇⠇⠽â â ¡â «" }, { "input": "bellyaches", "output": "⠃⠑⠇⠇⠽â â ¡â ‘â Ž" }, { "input": "bellyaching", "output": "⠃⠑⠇⠇⠽â â ¡â Œ" }, { "input": "bellybutton", "output": "⠃⠑⠇⠇⠽⠃⠥⠞⠞⠕â " }, { "input": "bellybutton's", "output": "⠃⠑⠇⠇⠽⠃⠥⠞⠞⠕â â „â Ž" }, { "input": "bellybuttons", "output": "⠃⠑⠇⠇⠽⠃⠥⠞⠞⠕â â Ž" }, { "input": "bellyful", "output": "⠃⠑⠇⠇⠽⠰⠇" }, { "input": "bellyful's", "output": "⠃⠑⠇⠇⠽⠰⠇⠄⠎" }, { "input": "bellyfuls", "output": "⠃⠑⠇⠇⠽⠰⠇⠎" }, { "input": "bellying", "output": "⠃⠑⠇⠇⠽⠌" }, { "input": "belong", "output": "⠆⠇⠰⠛" }, { "input": "belonged", "output": "⠆⠇⠰⠛⠫" }, { "input": "belonging", "output": "⠆⠇⠰⠛⠌" }, { "input": "belonging's", "output": "⠆⠇⠰⠛⠌⠄⠎" }, { "input": "belongings", "output": "⠆⠇⠰⠛⠌⠎" }, { "input": "belongs", "output": "⠆⠇⠰⠛⠎" }, { "input": "beloved", "output": "⠆⠇⠕⠧⠫" }, { "input": "beloved's", "output": "⠆⠇⠕⠧⠫⠄⠎" }, { "input": "beloveds", "output": "⠆⠇⠕⠧⠫⠎" }, { "input": "below", "output": "⠆⠇" }, { "input": "belt", "output": "⠃⠑⠇⠞" }, { "input": "belt's", "output": "⠃⠑⠇⠞⠄⠎" }, { "input": "belted", "output": "⠃⠑⠇⠞⠫" }, { "input": "belting", "output": "⠃⠑⠇⠞⠌" }, { "input": "belts", "output": "⠃⠑⠇⠞⠎" }, { "input": "beltway", "output": "⠃⠑⠇⠞⠺â â ½" }, { "input": "beltway's", "output": "⠃⠑⠇⠞⠺â â ½â „â Ž" }, { "input": "beltways", "output": "⠃⠑⠇⠞⠺â â ½â Ž" }, { "input": "beluga", "output": "⠆⠇⠥⠛â " }, { "input": "beluga's", "output": "⠆⠇⠥⠛â â „â Ž" }, { "input": "belugas", "output": "⠆⠇⠥⠛â â Ž" }, { "input": "belying", "output": "⠆⠇⠽⠌" }, { "input": "bemire", "output": "â †â â Šâ —â ‘" }, { "input": "bemired", "output": "â †â â Šâ —â «" }, { "input": "bemires", "output": "â †â â Šâ —â ‘â Ž" }, { "input": "bemiring", "output": "â †â â Šâ —â Œ" }, { "input": "bemoan", "output": "â †â â •â â " }, { "input": "bemoaned", "output": "â †â â •â â â «" }, { "input": "bemoaning", "output": "â †â â •â â â Œ" }, { "input": "bemoans", "output": "â †â â •â â â Ž" }, { "input": "bemuse", "output": "â †â â ¥â Žâ ‘" }, { "input": "bemused", "output": "â †â â ¥â Žâ «" }, { "input": "bemusedly", "output": "â †â â ¥â Žâ «â ‡â ½" }, { "input": "bemusement", "output": "â †â â ¥â Žâ ‘â °â ž" }, { "input": "bemusement's", "output": "â †â â ¥â Žâ ‘â °â žâ „â Ž" }, { "input": "bemuses", "output": "â †â â ¥â Žâ ‘â Ž" }, { "input": "bemusing", "output": "â †â â ¥â Žâ Œ" }, { "input": "bench", "output": "⠃⠢⠡" }, { "input": "bench's", "output": "⠃⠢⠡⠄⠎" }, { "input": "benched", "output": "⠃⠢⠡⠫" }, { "input": "benches", "output": "⠃⠢⠡⠑⠎" }, { "input": "benching", "output": "⠃⠢⠡⠌" }, { "input": "benchmark", "output": "⠃⠢⠡â â œâ …" }, { "input": "benchmark's", "output": "⠃⠢⠡â â œâ …â „â Ž" }, { "input": "benchmarks", "output": "⠃⠢⠡â â œâ …â Ž" }, { "input": "bend", "output": "⠃⠢⠙" }, { "input": "bend's", "output": "⠃⠢⠙⠄⠎" }, { "input": "bender", "output": "⠃⠢⠙⠻" }, { "input": "bending", "output": "⠃⠢⠙⠌" }, { "input": "bends", "output": "⠃⠢⠙⠎" }, { "input": "beneath", "output": "â †â " }, { "input": "benediction", "output": "⠃⠢⠑⠙⠊⠉⠰â " }, { "input": "benediction's", "output": "⠃⠢⠑⠙⠊⠉⠰â â „â Ž" }, { "input": "benedictions", "output": "⠃⠢⠑⠙⠊⠉⠰â â Ž" }, { "input": "benedictory", "output": "⠃⠢⠑⠙⠊⠉⠞⠕⠗⠽" }, { "input": "benefaction", "output": "⠃⠢⠑⠋â â ‰â °â " }, { "input": "benefaction's", "output": "⠃⠢⠑⠋â â ‰â °â â „â Ž" }, { "input": "benefactions", "output": "⠃⠢⠑⠋â â ‰â °â â Ž" }, { "input": "benefactor", "output": "⠃⠢⠑⠋â â ‰â žâ •â —" }, { "input": "benefactor's", "output": "⠃⠢⠑⠋â â ‰â žâ •â —â „â Ž" }, { "input": "benefactors", "output": "⠃⠢⠑⠋â â ‰â žâ •â —â Ž" }, { "input": "benefactress", "output": "⠃⠢⠑⠋â â ‰â žâ —â ‘â Žâ Ž" }, { "input": "benefactress's", "output": "⠃⠢⠑⠋â â ‰â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "benefactresses", "output": "⠃⠢⠑⠋â â ‰â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "benefice", "output": "⠃⠢⠑⠋⠊⠉⠑" }, { "input": "benefice's", "output": "⠃⠢⠑⠋⠊⠉⠑⠄⠎" }, { "input": "beneficence", "output": "â †â â ‘⠋⠊⠉⠰⠑" }, { "input": "beneficence's", "output": "â †â â ‘⠋⠊⠉⠰⠑⠄⠎" }, { "input": "beneficent", "output": "â †â â ‘⠋⠊⠉⠢⠞" }, { "input": "beneficently", "output": "â †â â ‘⠋⠊⠉⠢⠞⠇⠽" }, { "input": "benefices", "output": "⠃⠢⠑⠋⠊⠉⠑⠎" }, { "input": "beneficial", "output": "⠃⠢⠑⠋⠊⠉⠊â â ‡" }, { "input": "beneficially", "output": "⠃⠢⠑⠋⠊⠉⠊⠠⠽" }, { "input": "beneficiaries", "output": "⠃⠢⠑⠋⠊⠉⠊⠜⠊⠑⠎" }, { "input": "beneficiary", "output": "⠃⠢⠑⠋⠊⠉⠊⠜⠽" }, { "input": "beneficiary's", "output": "⠃⠢⠑⠋⠊⠉⠊⠜⠽⠄⠎" }, { "input": "benefit", "output": "⠃⠢⠑⠋⠊⠞" }, { "input": "benefit's", "output": "⠃⠢⠑⠋⠊⠞⠄⠎" }, { "input": "benefited", "output": "⠃⠢⠑⠋⠊⠞⠫" }, { "input": "benefiting", "output": "⠃⠢⠑⠋⠊⠞⠌" }, { "input": "benefits", "output": "⠃⠢⠑⠋⠊⠞⠎" }, { "input": "benevolence", "output": "â †â â ‘⠧⠕⠇⠰⠑" }, { "input": "benevolence's", "output": "â †â â ‘⠧⠕⠇⠰⠑⠄⠎" }, { "input": "benevolences", "output": "â †â â ‘⠧⠕⠇⠰⠑⠎" }, { "input": "benevolent", "output": "â †â â ‘⠧⠕⠇⠢⠞" }, { "input": "benevolently", "output": "â †â â ‘⠧⠕⠇⠢⠞⠇⠽" }, { "input": "benighted", "output": "â †â â Šâ £â žâ «" }, { "input": "benightedly", "output": "â †â â Šâ £â žâ «â ‡â ½" }, { "input": "benign", "output": "â †â â Šâ ›â " }, { "input": "benignant", "output": "â †â â Šâ ›â â â â ž" }, { "input": "benignity", "output": "â †â â Šâ ›â â °â ½" }, { "input": "benignity's", "output": "â †â â Šâ ›â â °â ½â „â Ž" }, { "input": "benignly", "output": "â †â â Šâ ›â â ‡â ½" }, { "input": "bent", "output": "⠃⠢⠞" }, { "input": "bent's", "output": "⠃⠢⠞⠄⠎" }, { "input": "bents", "output": "⠃⠢⠞⠎" }, { "input": "bentwood", "output": "⠃⠢⠞⠺⠕⠕⠙" }, { "input": "bentwood's", "output": "⠃⠢⠞⠺⠕⠕⠙⠄⠎" }, { "input": "benumb", "output": "â †â â ¥â â ƒ" }, { "input": "benumbed", "output": "â †â â ¥â â ƒâ «" }, { "input": "benumbing", "output": "â †â â ¥â â ƒâ Œ" }, { "input": "benumbs", "output": "â †â â ¥â â ƒâ Ž" }, { "input": "benzene", "output": "⠃⠢⠵⠢⠑" }, { "input": "benzene's", "output": "⠃⠢⠵⠢⠑⠄⠎" }, { "input": "benzine", "output": "⠃⠢⠵⠔⠑" }, { "input": "benzine's", "output": "⠃⠢⠵⠔⠑⠄⠎" }, { "input": "bequeath", "output": "⠆⠟⠥⠂⠹" }, { "input": "bequeathed", "output": "⠆⠟⠥⠂⠮⠙" }, { "input": "bequeathing", "output": "⠆⠟⠥⠂⠹⠌" }, { "input": "bequeaths", "output": "⠆⠟⠥⠂⠹⠎" }, { "input": "bequest", "output": "⠆⠟⠥⠑⠌" }, { "input": "bequest's", "output": "⠆⠟⠥⠑⠌⠄⠎" }, { "input": "bequests", "output": "⠆⠟⠥⠑⠌⠎" }, { "input": "berate", "output": "⠆⠗â â žâ ‘" }, { "input": "berated", "output": "⠆⠗â â žâ «" }, { "input": "berates", "output": "⠆⠗â â žâ ‘â Ž" }, { "input": "berating", "output": "⠆⠗â â žâ Œ" }, { "input": "bereave", "output": "⠆⠗⠂⠧⠑" }, { "input": "bereaved", "output": "⠆⠗⠂⠧⠫" }, { "input": "bereavement", "output": "⠆⠗⠂⠧⠑⠰⠞" }, { "input": "bereavement's", "output": "⠆⠗⠂⠧⠑⠰⠞⠄⠎" }, { "input": "bereavements", "output": "⠆⠗⠂⠧⠑⠰⠞⠎" }, { "input": "bereaves", "output": "⠆⠗⠂⠧⠑⠎" }, { "input": "bereaving", "output": "⠆⠗⠂⠧⠌" }, { "input": "bereft", "output": "⠆⠗⠑⠋⠞" }, { "input": "beret", "output": "⠆⠗⠑⠞" }, { "input": "beret's", "output": "⠆⠗⠑⠞⠄⠎" }, { "input": "berets", "output": "⠆⠗⠑⠞⠎" }, { "input": "berg", "output": "⠃⠻⠛" }, { "input": "berg's", "output": "⠃⠻⠛⠄⠎" }, { "input": "bergs", "output": "⠃⠻⠛⠎" }, { "input": "beriberi", "output": "⠃⠻⠊⠃⠻⠊" }, { "input": "beriberi's", "output": "⠃⠻⠊⠃⠻⠊⠄⠎" }, { "input": "berkelium", "output": "⠃⠻⠅⠑⠇⠊⠥â " }, { "input": "berkelium's", "output": "⠃⠻⠅⠑⠇⠊⠥â â „â Ž" }, { "input": "berm", "output": "⠃⠻â " }, { "input": "berm's", "output": "⠃⠻â â „â Ž" }, { "input": "berms", "output": "⠃⠻â â Ž" }, { "input": "berried", "output": "⠃⠻⠗⠊⠫" }, { "input": "berries", "output": "⠃⠻⠗⠊⠑⠎" }, { "input": "berry", "output": "⠃⠻⠗⠽" }, { "input": "berry's", "output": "⠃⠻⠗⠽⠄⠎" }, { "input": "berrying", "output": "⠃⠻⠗⠽⠌" }, { "input": "berrylike", "output": "⠃⠻⠗⠽⠇⠊⠅⠑" }, { "input": "berserk", "output": "⠃⠻⠎⠻⠅" }, { "input": "berth", "output": "⠃⠻⠹" }, { "input": "berth's", "output": "⠃⠻⠹⠄⠎" }, { "input": "berthed", "output": "⠃⠻⠮⠙" }, { "input": "berthing", "output": "⠃⠻⠹⠌" }, { "input": "berths", "output": "⠃⠻⠹⠎" }, { "input": "beryl", "output": "⠃⠻⠽⠇" }, { "input": "beryl's", "output": "⠃⠻⠽⠇⠄⠎" }, { "input": "beryllium", "output": "⠆⠗⠽⠇⠇⠊⠥â " }, { "input": "beryllium's", "output": "⠆⠗⠽⠇⠇⠊⠥â â „â Ž" }, { "input": "beryls", "output": "⠃⠻⠽⠇⠎" }, { "input": "beseech", "output": "⠆⠎⠑⠑⠡" }, { "input": "beseecher", "output": "⠆⠎⠑⠑⠡⠻" }, { "input": "beseecher's", "output": "⠆⠎⠑⠑⠡⠻⠄⠎" }, { "input": "beseechers", "output": "⠆⠎⠑⠑⠡⠻⠎" }, { "input": "beseeches", "output": "⠆⠎⠑⠑⠡⠑⠎" }, { "input": "beseeching", "output": "⠆⠎⠑⠑⠡⠌" }, { "input": "beseem", "output": "⠆⠎⠑⠑â " }, { "input": "beseemed", "output": "⠆⠎⠑⠑â â «" }, { "input": "beseeming", "output": "⠆⠎⠑⠑â â Œ" }, { "input": "beseems", "output": "⠆⠎⠑⠑â â Ž" }, { "input": "beset", "output": "⠆⠎⠑⠞" }, { "input": "besets", "output": "⠆⠎⠑⠞⠎" }, { "input": "besetting", "output": "⠆⠎⠑⠞⠞⠌" }, { "input": "beside", "output": "⠆⠎" }, { "input": "besides", "output": "⠆⠎⠎" }, { "input": "besiege", "output": "⠆⠎⠊⠑⠛⠑" }, { "input": "besieged", "output": "⠆⠎⠊⠑⠛⠫" }, { "input": "besieger", "output": "⠆⠎⠊⠑⠛⠻" }, { "input": "besieger's", "output": "⠆⠎⠊⠑⠛⠻⠄⠎" }, { "input": "besiegers", "output": "⠆⠎⠊⠑⠛⠻⠎" }, { "input": "besieges", "output": "⠆⠎⠊⠑⠛⠑⠎" }, { "input": "besieging", "output": "⠆⠎⠊⠑⠛⠌" }, { "input": "besmear", "output": "⠆⠎â â ‘â œ" }, { "input": "besmeared", "output": "⠆⠎â â ‘⠜⠫" }, { "input": "besmearing", "output": "⠆⠎â â ‘⠜⠌" }, { "input": "besmears", "output": "⠆⠎â â ‘⠜⠎" }, { "input": "besmirch", "output": "⠆⠎â â Šâ —â ¡" }, { "input": "besmirched", "output": "⠆⠎â â Šâ —â ¡â «" }, { "input": "besmirches", "output": "⠆⠎â â Šâ —â ¡â ‘â Ž" }, { "input": "besmirching", "output": "⠆⠎â â Šâ —â ¡â Œ" }, { "input": "besom", "output": "⠆⠎⠕â " }, { "input": "besom's", "output": "⠆⠎⠕â â „â Ž" }, { "input": "besoms", "output": "⠆⠎⠕â â Ž" }, { "input": "besot", "output": "⠆⠎⠕⠞" }, { "input": "besots", "output": "⠆⠎⠕⠞⠎" }, { "input": "besotted", "output": "⠆⠎⠕⠞⠞⠫" }, { "input": "besotting", "output": "⠆⠎⠕⠞⠞⠌" }, { "input": "besought", "output": "⠆⠎â â ³" }, { "input": "bespangle", "output": "⠆⠎â â â â ›â ‡â ‘" }, { "input": "bespangled", "output": "⠆⠎â â â â ›â ‡â «" }, { "input": "bespangles", "output": "⠆⠎â â â â ›â ‡â ‘â Ž" }, { "input": "bespangling", "output": "⠆⠎â â â â ›â ‡â Œ" }, { "input": "bespatter", "output": "⠆⠎â â â žâ žâ »" }, { "input": "bespattered", "output": "⠆⠎â â â žâ žâ »â «" }, { "input": "bespattering", "output": "⠆⠎â â â žâ žâ »â Œ" }, { "input": "bespatters", "output": "⠆⠎â â â žâ žâ »â Ž" }, { "input": "bespeak", "output": "⠆⠎â â ‚â …" }, { "input": "bespeaking", "output": "⠆⠎â â ‚â …â Œ" }, { "input": "bespeaks", "output": "⠆⠎â â ‚â …â Ž" }, { "input": "bespoke", "output": "⠆⠎â â •â …â ‘" }, { "input": "bespoken", "output": "⠆⠎â â •â …â ¢" }, { "input": "best", "output": "⠃⠑⠌" }, { "input": "best's", "output": "⠃⠑⠌⠄⠎" }, { "input": "bested", "output": "⠃⠑⠌⠫" }, { "input": "bestial", "output": "⠃⠑⠌⠊â â ‡" }, { "input": "bestiality", "output": "⠃⠑⠌⠊â â ‡â °â ½" }, { "input": "bestiality's", "output": "⠃⠑⠌⠊â â ‡â °â ½â „â Ž" }, { "input": "bestially", "output": "⠃⠑⠌⠊⠠⠽" }, { "input": "bestiaries", "output": "⠃⠑⠌⠊⠜⠊⠑⠎" }, { "input": "bestiary", "output": "⠃⠑⠌⠊⠜⠽" }, { "input": "bestiary's", "output": "⠃⠑⠌⠊⠜⠽⠄⠎" }, { "input": "besting", "output": "⠃⠑⠌⠌" }, { "input": "bestir", "output": "⠆⠌⠊⠗" }, { "input": "bestirred", "output": "⠆⠌⠊⠗⠗⠫" }, { "input": "bestirring", "output": "⠆⠌⠊⠗⠗⠌" }, { "input": "bestirs", "output": "⠆⠌⠊⠗⠎" }, { "input": "bestow", "output": "⠆⠌⠪" }, { "input": "bestowal", "output": "⠆⠌⠪â â ‡" }, { "input": "bestowal's", "output": "⠆⠌⠪â â ‡â „â Ž" }, { "input": "bestowals", "output": "⠆⠌⠪â â ‡â Ž" }, { "input": "bestowed", "output": "⠆⠌⠪⠫" }, { "input": "bestowing", "output": "⠆⠌⠪⠌" }, { "input": "bestows", "output": "⠆⠌⠪⠎" }, { "input": "bestrew", "output": "⠆⠌⠗⠑⠺" }, { "input": "bestrewed", "output": "⠆⠌⠗⠑⠺⠫" }, { "input": "bestrewing", "output": "⠆⠌⠗⠑⠺⠌" }, { "input": "bestrewn", "output": "⠆⠌⠗⠑⠺â " }, { "input": "bestrews", "output": "⠆⠌⠗⠑⠺⠎" }, { "input": "bestridden", "output": "⠆⠌⠗⠊⠲⠢" }, { "input": "bestride", "output": "⠆⠌⠗⠊⠙⠑" }, { "input": "bestrides", "output": "⠆⠌⠗⠊⠙⠑⠎" }, { "input": "bestriding", "output": "⠆⠌⠗⠊⠙⠌" }, { "input": "bestrode", "output": "⠆⠌⠗⠕⠙⠑" }, { "input": "bests", "output": "⠃⠑⠌⠎" }, { "input": "bestseller", "output": "⠃⠑⠌⠎⠑⠇⠇⠻" }, { "input": "bestseller's", "output": "⠃⠑⠌⠎⠑⠇⠇⠻⠄⠎" }, { "input": "bestsellers", "output": "⠃⠑⠌⠎⠑⠇⠇⠻⠎" }, { "input": "bet", "output": "⠃⠑⠞" }, { "input": "bet's", "output": "⠃⠑⠞⠄⠎" }, { "input": "beta", "output": "⠆⠞â " }, { "input": "beta's", "output": "⠆⠞â â „â Ž" }, { "input": "betake", "output": "⠆⠞â â …â ‘" }, { "input": "betaken", "output": "⠆⠞â â …â ¢" }, { "input": "betakes", "output": "⠆⠞â â …â ‘â Ž" }, { "input": "betaking", "output": "⠆⠞â â …â Œ" }, { "input": "betas", "output": "⠆⠞â â Ž" }, { "input": "betcha", "output": "⠃⠑⠞⠡â " }, { "input": "betel's", "output": "⠆⠞⠑⠇⠄⠎" }, { "input": "bethink", "output": "⠃⠑⠹⠔⠅" }, { "input": "bethinking", "output": "⠃⠑⠹⠔⠅⠌" }, { "input": "bethinks", "output": "⠃⠑⠹⠔⠅⠎" }, { "input": "bethought", "output": "⠆⠹â â ³" }, { "input": "betide", "output": "⠆⠞⠊⠙⠑" }, { "input": "betided", "output": "⠆⠞⠊⠙⠫" }, { "input": "betides", "output": "⠆⠞⠊⠙⠑⠎" }, { "input": "betiding", "output": "⠆⠞⠊⠙⠌" }, { "input": "betimes", "output": "â †â â žâ Ž" }, { "input": "betoken", "output": "⠆⠞⠕⠅⠢" }, { "input": "betokened", "output": "⠆⠞⠕⠅⠢⠫" }, { "input": "betokening", "output": "⠆⠞⠕⠅⠢⠌" }, { "input": "betokens", "output": "⠆⠞⠕⠅⠢⠎" }, { "input": "betook", "output": "⠆⠞⠕⠕⠅" }, { "input": "betray", "output": "⠆⠞⠗â â ½" }, { "input": "betrayal", "output": "⠆⠞⠗â â ½â â ‡" }, { "input": "betrayal's", "output": "⠆⠞⠗â â ½â â ‡â „â Ž" }, { "input": "betrayals", "output": "⠆⠞⠗â â ½â â ‡â Ž" }, { "input": "betrayed", "output": "⠆⠞⠗â â ½â «" }, { "input": "betrayer", "output": "⠆⠞⠗â â ½â »" }, { "input": "betrayer's", "output": "⠆⠞⠗â â ½â »â „â Ž" }, { "input": "betrayers", "output": "⠆⠞⠗â â ½â »â Ž" }, { "input": "betraying", "output": "⠆⠞⠗â â ½â Œ" }, { "input": "betrays", "output": "⠆⠞⠗â â ½â Ž" }, { "input": "betroth", "output": "⠆⠞⠗⠕⠹" }, { "input": "betrothal", "output": "⠆⠞⠗⠕⠹â â ‡" }, { "input": "betrothal's", "output": "⠆⠞⠗⠕⠹â â ‡â „â Ž" }, { "input": "betrothals", "output": "⠆⠞⠗⠕⠹â â ‡â Ž" }, { "input": "betrothed", "output": "⠆⠞⠗⠕⠮⠙" }, { "input": "betrothed's", "output": "⠆⠞⠗⠕⠮⠙⠄⠎" }, { "input": "betrothing", "output": "⠆⠞⠗⠕⠹⠌" }, { "input": "betroths", "output": "⠆⠞⠗⠕⠹⠎" }, { "input": "bets", "output": "⠃⠑⠞⠎" }, { "input": "better", "output": "⠃⠑⠞⠞⠻" }, { "input": "better's", "output": "⠃⠑⠞⠞⠻⠄⠎" }, { "input": "bettered", "output": "⠃⠑⠞⠞⠻⠫" }, { "input": "bettering", "output": "⠃⠑⠞⠞⠻⠌" }, { "input": "betterment", "output": "⠃⠑⠞⠞⠻⠰⠞" }, { "input": "betterment's", "output": "⠃⠑⠞⠞⠻⠰⠞⠄⠎" }, { "input": "betters", "output": "⠃⠑⠞⠞⠻⠎" }, { "input": "betting", "output": "⠃⠑⠞⠞⠌" }, { "input": "bettor", "output": "⠃⠑⠞⠞⠕⠗" }, { "input": "bettor's", "output": "⠃⠑⠞⠞⠕⠗⠄⠎" }, { "input": "bettors", "output": "⠃⠑⠞⠞⠕⠗⠎" }, { "input": "between", "output": "⠆⠞" }, { "input": "betwixt", "output": "⠆⠞⠺⠊⠭⠞" }, { "input": "bevel", "output": "⠃⠑⠧⠑⠇" }, { "input": "bevel's", "output": "⠃⠑⠧⠑⠇⠄⠎" }, { "input": "beveled", "output": "⠃⠑⠧⠑⠇⠫" }, { "input": "beveling", "output": "⠃⠑⠧⠑⠇⠌" }, { "input": "bevels", "output": "⠃⠑⠧⠑⠇⠎" }, { "input": "beverage", "output": "â ƒâ â ‘â â ›â ‘" }, { "input": "beverage's", "output": "â ƒâ â ‘â â ›â ‘â „â Ž" }, { "input": "beverages", "output": "â ƒâ â ‘â â ›â ‘â Ž" }, { "input": "bevies", "output": "⠃⠑⠧⠊⠑⠎" }, { "input": "bevy", "output": "⠃⠑⠧⠽" }, { "input": "bevy's", "output": "⠃⠑⠧⠽⠄⠎" }, { "input": "bewail", "output": "⠆⠺â â Šâ ‡" }, { "input": "bewailed", "output": "⠆⠺â â Šâ ‡â «" }, { "input": "bewailing", "output": "⠆⠺â â Šâ ‡â Œ" }, { "input": "bewails", "output": "⠆⠺â â Šâ ‡â Ž" }, { "input": "beware", "output": "⠆⠺⠜⠑" }, { "input": "bewared", "output": "⠆⠺⠜⠫" }, { "input": "bewares", "output": "⠆⠺⠜⠑⠎" }, { "input": "bewaring", "output": "⠆⠺⠜⠌" }, { "input": "bewhiskered", "output": "⠆⠱⠊⠎⠅⠻⠫" }, { "input": "bewilder", "output": "⠆⠺⠊⠇⠙⠻" }, { "input": "bewildered", "output": "⠆⠺⠊⠇⠙⠻⠫" }, { "input": "bewildering", "output": "⠆⠺⠊⠇⠙⠻⠌" }, { "input": "bewilderment", "output": "⠆⠺⠊⠇⠙⠻⠰⠞" }, { "input": "bewilderment's", "output": "⠆⠺⠊⠇⠙⠻⠰⠞⠄⠎" }, { "input": "bewilders", "output": "⠆⠺⠊⠇⠙⠻⠎" }, { "input": "bewitch", "output": "⠆⠺⠊⠞⠡" }, { "input": "bewitched", "output": "⠆⠺⠊⠞⠡⠫" }, { "input": "bewitches", "output": "⠆⠺⠊⠞⠡⠑⠎" }, { "input": "bewitching", "output": "⠆⠺⠊⠞⠡⠌" }, { "input": "bewitchingly", "output": "⠆⠺⠊⠞⠡⠌⠇⠽" }, { "input": "bewitchment", "output": "⠆⠺⠊⠞⠡⠰⠞" }, { "input": "bewitchment's", "output": "⠆⠺⠊⠞⠡⠰⠞⠄⠎" }, { "input": "bey", "output": "⠃⠑⠽" }, { "input": "bey's", "output": "⠃⠑⠽⠄⠎" }, { "input": "beyond", "output": "⠆⠽" }, { "input": "beys", "output": "⠃⠑⠽⠎" }, { "input": "bezel", "output": "⠃⠑⠵⠑⠇" }, { "input": "bezel's", "output": "⠃⠑⠵⠑⠇⠄⠎" }, { "input": "bezels", "output": "⠃⠑⠵⠑⠇⠎" }, { "input": "bi", "output": "⠃⠊" }, { "input": "bi's", "output": "⠃⠊⠄⠎" }, { "input": "biannual", "output": "⠃⠊â â â â ¥â â ‡" }, { "input": "biannually", "output": "⠃⠊â â â â ¥â  â ½" }, { "input": "bias", "output": "⠃⠊â â Ž" }, { "input": "bias's", "output": "⠃⠊â â Žâ „â Ž" }, { "input": "biased", "output": "⠃⠊â â Žâ «" }, { "input": "biases", "output": "⠃⠊â â Žâ ‘â Ž" }, { "input": "biasing", "output": "⠃⠊â â Žâ Œ" }, { "input": "biathlon", "output": "⠃⠊â â ¹â ‡â •â " }, { "input": "biathlon's", "output": "⠃⠊â â ¹â ‡â •â â „â Ž" }, { "input": "biathlons", "output": "⠃⠊â â ¹â ‡â •â â Ž" }, { "input": "bib", "output": "⠃⠊⠃" }, { "input": "bib's", "output": "⠃⠊⠃⠄⠎" }, { "input": "bible", "output": "⠃⠊⠼" }, { "input": "bible's", "output": "⠃⠊⠼⠄⠎" }, { "input": "bibles", "output": "⠃⠊⠼⠎" }, { "input": "biblical", "output": "⠃⠊⠃⠇⠊⠉â â ‡" }, { "input": "bibliographer", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â »" }, { "input": "bibliographer's", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "bibliographers", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “⠻⠎" }, { "input": "bibliographic", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â Šâ ‰" }, { "input": "bibliographical", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "bibliographically", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "bibliographies", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "bibliography", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “â ½" }, { "input": "bibliography's", "output": "⠃⠊⠃⠇⠊⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "bibliophile", "output": "⠃⠊⠃⠇⠊⠕â â “⠊⠇⠑" }, { "input": "bibliophile's", "output": "⠃⠊⠃⠇⠊⠕â â “⠊⠇⠑⠄⠎" }, { "input": "bibliophiles", "output": "⠃⠊⠃⠇⠊⠕â â “⠊⠇⠑⠎" }, { "input": "bibs", "output": "⠃⠊⠃⠎" }, { "input": "bibulous", "output": "⠃⠊⠃⠥⠇⠳⠎" }, { "input": "bicameral", "output": "⠃⠊⠉â â â »â â ‡" }, { "input": "bicameralism", "output": "⠃⠊⠉â â â »â â ‡â Šâ Žâ " }, { "input": "bicameralism's", "output": "⠃⠊⠉â â â »â â ‡â Šâ Žâ â „â Ž" }, { "input": "bicarb's", "output": "⠃⠊⠉⠜⠃⠄⠎" }, { "input": "bicarbonate's", "output": "⠃⠊⠉⠜⠃⠕â â â žâ ‘â „â Ž" }, { "input": "bicarbonates", "output": "⠃⠊⠉⠜⠃⠕â â â žâ ‘â Ž" }, { "input": "bicarbs", "output": "⠃⠊⠉⠜⠃⠎" }, { "input": "bicentennial", "output": "⠃⠊⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "bicentennial's", "output": "⠃⠊⠉⠢⠞⠢â â Šâ â ‡â „â Ž" }, { "input": "bicentennials", "output": "⠃⠊⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "bicep", "output": "⠃⠊⠉⠑â " }, { "input": "bicep's", "output": "⠃⠊⠉⠑â â „â Ž" }, { "input": "biceps", "output": "⠃⠊⠉⠑â â Ž" }, { "input": "biceps's", "output": "⠃⠊⠉⠑â â Žâ „â Ž" }, { "input": "bicker", "output": "⠃⠊⠉⠅⠻" }, { "input": "bicker's", "output": "⠃⠊⠉⠅⠻⠄⠎" }, { "input": "bickered", "output": "⠃⠊⠉⠅⠻⠫" }, { "input": "bickerer", "output": "⠃⠊⠉⠅⠻⠻" }, { "input": "bickerer's", "output": "⠃⠊⠉⠅⠻⠻⠄⠎" }, { "input": "bickerers", "output": "⠃⠊⠉⠅⠻⠻⠎" }, { "input": "bickering", "output": "⠃⠊⠉⠅⠻⠌" }, { "input": "bickers", "output": "⠃⠊⠉⠅⠻⠎" }, { "input": "biconcave", "output": "⠃⠊⠉⠕â â ‰â â §â ‘" }, { "input": "biconvex", "output": "⠃⠊⠉⠕â â §â ‘â ­" }, { "input": "bicuspid", "output": "⠃⠊⠉⠥⠎â â Šâ ™" }, { "input": "bicuspid's", "output": "⠃⠊⠉⠥⠎â â Šâ ™â „â Ž" }, { "input": "bicuspids", "output": "⠃⠊⠉⠥⠎â â Šâ ™â Ž" }, { "input": "bicycle", "output": "⠃⠊⠉⠽⠉⠇⠑" }, { "input": "bicycle's", "output": "⠃⠊⠉⠽⠉⠇⠑⠄⠎" }, { "input": "bicycled", "output": "⠃⠊⠉⠽⠉⠇⠫" }, { "input": "bicycler", "output": "⠃⠊⠉⠽⠉⠇⠻" }, { "input": "bicycler's", "output": "⠃⠊⠉⠽⠉⠇⠻⠄⠎" }, { "input": "bicyclers", "output": "⠃⠊⠉⠽⠉⠇⠻⠎" }, { "input": "bicycles", "output": "⠃⠊⠉⠽⠉⠇⠑⠎" }, { "input": "bicycling", "output": "⠃⠊⠉⠽⠉⠇⠌" }, { "input": "bicyclist", "output": "⠃⠊⠉⠽⠉⠇⠊⠌" }, { "input": "bicyclist's", "output": "⠃⠊⠉⠽⠉⠇⠊⠌⠄⠎" }, { "input": "bicyclists", "output": "⠃⠊⠉⠽⠉⠇⠊⠌⠎" }, { "input": "bid", "output": "⠃⠊⠙" }, { "input": "bid's", "output": "⠃⠊⠙⠄⠎" }, { "input": "biddable", "output": "⠃⠊⠲â â ¼" }, { "input": "bidden", "output": "⠃⠊⠲⠢" }, { "input": "bidder", "output": "⠃⠊⠲⠻" }, { "input": "bidder's", "output": "⠃⠊⠲⠻⠄⠎" }, { "input": "bidders", "output": "⠃⠊⠲⠻⠎" }, { "input": "biddies", "output": "⠃⠊⠲⠊⠑⠎" }, { "input": "bidding", "output": "⠃⠊⠲⠌" }, { "input": "bidding's", "output": "⠃⠊⠲⠌⠄⠎" }, { "input": "biddy", "output": "⠃⠊⠲⠽" }, { "input": "biddy's", "output": "⠃⠊⠲⠽⠄⠎" }, { "input": "bide", "output": "⠃⠊⠙⠑" }, { "input": "bides", "output": "⠃⠊⠙⠑⠎" }, { "input": "bidet", "output": "⠃⠊⠙⠑⠞" }, { "input": "bidet's", "output": "⠃⠊⠙⠑⠞⠄⠎" }, { "input": "bidets", "output": "⠃⠊⠙⠑⠞⠎" }, { "input": "biding", "output": "⠃⠊⠙⠌" }, { "input": "bidirectional", "output": "⠃⠊⠙⠊⠗⠑⠉⠰â â â ‡" }, { "input": "bidirectionally", "output": "⠃⠊⠙⠊⠗⠑⠉⠰â â  â ½" }, { "input": "bids", "output": "⠃⠊⠙⠎" }, { "input": "biennial", "output": "⠃⠊⠢â â Šâ â ‡" }, { "input": "biennial's", "output": "⠃⠊⠢â â Šâ â ‡â „â Ž" }, { "input": "biennially", "output": "⠃⠊⠢â â Šâ  â ½" }, { "input": "biennials", "output": "⠃⠊⠢â â Šâ â ‡â Ž" }, { "input": "biennium", "output": "⠃⠊⠢â â Šâ ¥â " }, { "input": "biennium's", "output": "⠃⠊⠢â â Šâ ¥â â „â Ž" }, { "input": "bienniums", "output": "⠃⠊⠢â â Šâ ¥â â Ž" }, { "input": "bier", "output": "⠃⠊⠻" }, { "input": "bier's", "output": "⠃⠊⠻⠄⠎" }, { "input": "biers", "output": "⠃⠊⠻⠎" }, { "input": "bifocal", "output": "⠃⠊⠋⠕⠉â â ‡" }, { "input": "bifocals", "output": "⠃⠊⠋⠕⠉â â ‡â Ž" }, { "input": "bifocals's", "output": "⠃⠊⠋⠕⠉â â ‡â Žâ „â Ž" }, { "input": "bifurcate", "output": "⠃⠊⠋⠥⠗⠉â â žâ ‘" }, { "input": "bifurcated", "output": "⠃⠊⠋⠥⠗⠉â â žâ «" }, { "input": "bifurcates", "output": "⠃⠊⠋⠥⠗⠉â â žâ ‘â Ž" }, { "input": "bifurcating", "output": "⠃⠊⠋⠥⠗⠉â â žâ Œ" }, { "input": "bifurcation", "output": "⠃⠊⠋⠥⠗⠉⠠â " }, { "input": "bifurcation's", "output": "⠃⠊⠋⠥⠗⠉⠠â â „â Ž" }, { "input": "bifurcations", "output": "⠃⠊⠋⠥⠗⠉⠠â â Ž" }, { "input": "big", "output": "⠃⠊⠛" }, { "input": "bigamist", "output": "⠃⠊⠛â â â Šâ Œ" }, { "input": "bigamist's", "output": "⠃⠊⠛â â â Šâ Œâ „â Ž" }, { "input": "bigamists", "output": "⠃⠊⠛â â â Šâ Œâ Ž" }, { "input": "bigamous", "output": "⠃⠊⠛â â â ³â Ž" }, { "input": "bigamy", "output": "⠃⠊⠛â â â ½" }, { "input": "bigamy's", "output": "⠃⠊⠛â â â ½â „â Ž" }, { "input": "bigger", "output": "⠃⠊⠶⠻" }, { "input": "biggest", "output": "⠃⠊⠶⠑⠌" }, { "input": "biggie", "output": "⠃⠊⠶⠊⠑" }, { "input": "biggie's", "output": "⠃⠊⠶⠊⠑⠄⠎" }, { "input": "biggies", "output": "⠃⠊⠶⠊⠑⠎" }, { "input": "biggish", "output": "⠃⠊⠶⠊⠩" }, { "input": "bighead", "output": "⠃⠊⠛⠓⠂⠙" }, { "input": "bighead's", "output": "⠃⠊⠛⠓⠂⠙⠄⠎" }, { "input": "bigheads", "output": "⠃⠊⠛⠓⠂⠙⠎" }, { "input": "bighearted", "output": "⠃⠊⠛⠓⠑⠜⠞⠫" }, { "input": "bigheartedness", "output": "⠃⠊⠛⠓⠑⠜⠞⠫⠰⠎" }, { "input": "bigheartedness's", "output": "⠃⠊⠛⠓⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "bighorn", "output": "⠃⠊⠛⠓⠕⠗â " }, { "input": "bighorn's", "output": "⠃⠊⠛⠓⠕⠗â â „â Ž" }, { "input": "bighorns", "output": "⠃⠊⠛⠓⠕⠗â â Ž" }, { "input": "bight", "output": "⠃⠊⠣⠞" }, { "input": "bight's", "output": "⠃⠊⠣⠞⠄⠎" }, { "input": "bights", "output": "⠃⠊⠣⠞⠎" }, { "input": "bigmouth", "output": "⠃⠊⠛â â ³â ¹" }, { "input": "bigmouth's", "output": "⠃⠊⠛â â ³â ¹â „â Ž" }, { "input": "bigmouths", "output": "⠃⠊⠛â â ³â ¹â Ž" }, { "input": "bigness", "output": "⠃⠊⠛⠰⠎" }, { "input": "bigness's", "output": "⠃⠊⠛⠰⠎⠄⠎" }, { "input": "bigot", "output": "⠃⠊⠛⠕⠞" }, { "input": "bigot's", "output": "⠃⠊⠛⠕⠞⠄⠎" }, { "input": "bigoted", "output": "⠃⠊⠛⠕⠞⠫" }, { "input": "bigotries", "output": "⠃⠊⠛⠕⠞⠗⠊⠑⠎" }, { "input": "bigotry", "output": "⠃⠊⠛⠕⠞⠗⠽" }, { "input": "bigotry's", "output": "⠃⠊⠛⠕⠞⠗⠽⠄⠎" }, { "input": "bigots", "output": "⠃⠊⠛⠕⠞⠎" }, { "input": "bigwig", "output": "⠃⠊⠛⠺⠊⠛" }, { "input": "bigwig's", "output": "⠃⠊⠛⠺⠊⠛⠄⠎" }, { "input": "bigwigs", "output": "⠃⠊⠛⠺⠊⠛⠎" }, { "input": "bijou's", "output": "⠃⠊⠚⠳⠄⠎" }, { "input": "bijoux", "output": "⠃⠊⠚⠳⠭" }, { "input": "bike", "output": "⠃⠊⠅⠑" }, { "input": "bike's", "output": "⠃⠊⠅⠑⠄⠎" }, { "input": "biked", "output": "⠃⠊⠅⠫" }, { "input": "biker", "output": "⠃⠊⠅⠻" }, { "input": "biker's", "output": "⠃⠊⠅⠻⠄⠎" }, { "input": "bikers", "output": "⠃⠊⠅⠻⠎" }, { "input": "bikes", "output": "⠃⠊⠅⠑⠎" }, { "input": "biking", "output": "⠃⠊⠅⠌" }, { "input": "bikini", "output": "⠃⠊⠅⠔⠊" }, { "input": "bikini's", "output": "⠃⠊⠅⠔⠊⠄⠎" }, { "input": "bikinis", "output": "⠃⠊⠅⠔⠊⠎" }, { "input": "bilateral", "output": "⠃⠊⠇â â žâ »â â ‡" }, { "input": "bilaterally", "output": "⠃⠊⠇â â žâ »â  â ½" }, { "input": "bile", "output": "⠃⠊⠇⠑" }, { "input": "bile's", "output": "⠃⠊⠇⠑⠄⠎" }, { "input": "bilge", "output": "⠃⠊⠇⠛⠑" }, { "input": "bilge's", "output": "⠃⠊⠇⠛⠑⠄⠎" }, { "input": "bilges", "output": "⠃⠊⠇⠛⠑⠎" }, { "input": "bilingual", "output": "⠃⠊⠇⠌⠥â â ‡" }, { "input": "bilingual's", "output": "⠃⠊⠇⠌⠥â â ‡â „â Ž" }, { "input": "bilingualism", "output": "⠃⠊⠇⠌⠥â â ‡â Šâ Žâ " }, { "input": "bilingualism's", "output": "⠃⠊⠇⠌⠥â â ‡â Šâ Žâ â „â Ž" }, { "input": "bilingually", "output": "⠃⠊⠇⠌⠥⠠⠽" }, { "input": "bilinguals", "output": "⠃⠊⠇⠌⠥â â ‡â Ž" }, { "input": "bilious", "output": "⠃⠊⠇⠊⠳⠎" }, { "input": "biliousness", "output": "⠃⠊⠇⠊⠳⠎⠰⠎" }, { "input": "biliousness's", "output": "⠃⠊⠇⠊⠳⠎⠰⠎⠄⠎" }, { "input": "bilk", "output": "⠃⠊⠇⠅" }, { "input": "bilked", "output": "⠃⠊⠇⠅⠫" }, { "input": "bilker", "output": "⠃⠊⠇⠅⠻" }, { "input": "bilker's", "output": "⠃⠊⠇⠅⠻⠄⠎" }, { "input": "bilkers", "output": "⠃⠊⠇⠅⠻⠎" }, { "input": "bilking", "output": "⠃⠊⠇⠅⠌" }, { "input": "bilks", "output": "⠃⠊⠇⠅⠎" }, { "input": "bill", "output": "⠃⠊⠇⠇" }, { "input": "bill's", "output": "⠃⠊⠇⠇⠄⠎" }, { "input": "billable", "output": "⠃⠊⠇⠇â â ¼" }, { "input": "billboard", "output": "⠃⠊⠇⠇⠃⠕⠜⠙" }, { "input": "billboard's", "output": "⠃⠊⠇⠇⠃⠕⠜⠙⠄⠎" }, { "input": "billboards", "output": "⠃⠊⠇⠇⠃⠕⠜⠙⠎" }, { "input": "billed", "output": "⠃⠊⠇⠇⠫" }, { "input": "billet", "output": "⠃⠊⠇⠇⠑⠞" }, { "input": "billet's", "output": "⠃⠊⠇⠇⠑⠞⠄⠎" }, { "input": "billeted", "output": "⠃⠊⠇⠇⠑⠞⠫" }, { "input": "billeting", "output": "⠃⠊⠇⠇⠑⠞⠌" }, { "input": "billets", "output": "⠃⠊⠇⠇⠑⠞⠎" }, { "input": "billfold", "output": "⠃⠊⠇⠇⠋⠕⠇⠙" }, { "input": "billfold's", "output": "⠃⠊⠇⠇⠋⠕⠇⠙⠄⠎" }, { "input": "billfolds", "output": "⠃⠊⠇⠇⠋⠕⠇⠙⠎" }, { "input": "billiards", "output": "⠃⠊⠇⠇⠊⠜⠙⠎" }, { "input": "billiards's", "output": "⠃⠊⠇⠇⠊⠜⠙⠎⠄⠎" }, { "input": "billies", "output": "⠃⠊⠇⠇⠊⠑⠎" }, { "input": "billing", "output": "⠃⠊⠇⠇⠌" }, { "input": "billing's", "output": "⠃⠊⠇⠇⠌⠄⠎" }, { "input": "billings", "output": "⠃⠊⠇⠇⠌⠎" }, { "input": "billingsgate", "output": "⠃⠊⠇⠇⠌⠎⠛â â žâ ‘" }, { "input": "billingsgate's", "output": "⠃⠊⠇⠇⠌⠎⠛â â žâ ‘â „â Ž" }, { "input": "billion", "output": "⠃⠊⠇⠇⠊⠕â " }, { "input": "billion's", "output": "⠃⠊⠇⠇⠊⠕â â „â Ž" }, { "input": "billionaire", "output": "⠃⠊⠇⠇⠊⠕â â â Šâ —â ‘" }, { "input": "billionaire's", "output": "⠃⠊⠇⠇⠊⠕â â â Šâ —â ‘â „â Ž" }, { "input": "billionaires", "output": "⠃⠊⠇⠇⠊⠕â â â Šâ —â ‘â Ž" }, { "input": "billions", "output": "⠃⠊⠇⠇⠊⠕â â Ž" }, { "input": "billionth", "output": "⠃⠊⠇⠇⠊⠕â â ¹" }, { "input": "billionth's", "output": "⠃⠊⠇⠇⠊⠕â â ¹â „â Ž" }, { "input": "billionths", "output": "⠃⠊⠇⠇⠊⠕â â ¹â Ž" }, { "input": "billow", "output": "⠃⠊⠇⠇⠪" }, { "input": "billow's", "output": "⠃⠊⠇⠇⠪⠄⠎" }, { "input": "billowed", "output": "⠃⠊⠇⠇⠪⠫" }, { "input": "billowier", "output": "⠃⠊⠇⠇⠪⠊⠻" }, { "input": "billowiest", "output": "⠃⠊⠇⠇⠪⠊⠑⠌" }, { "input": "billowing", "output": "⠃⠊⠇⠇⠪⠌" }, { "input": "billows", "output": "⠃⠊⠇⠇⠪⠎" }, { "input": "billowy", "output": "⠃⠊⠇⠇⠪⠽" }, { "input": "bills", "output": "⠃⠊⠇⠇⠎" }, { "input": "billy", "output": "⠃⠊⠇⠇⠽" }, { "input": "billy's", "output": "⠃⠊⠇⠇⠽⠄⠎" }, { "input": "bimbo", "output": "⠃⠊â â ƒâ •" }, { "input": "bimbo's", "output": "⠃⠊â â ƒâ •â „â Ž" }, { "input": "bimbos", "output": "⠃⠊â â ƒâ •â Ž" }, { "input": "bimetallic", "output": "⠃⠊â â ‘â žâ â ‡â ‡â Šâ ‰" }, { "input": "bimetallic's", "output": "⠃⠊â â ‘â žâ â ‡â ‡â Šâ ‰â „â Ž" }, { "input": "bimetallics", "output": "⠃⠊â â ‘â žâ â ‡â ‡â Šâ ‰â Ž" }, { "input": "bimetallism", "output": "⠃⠊â â ‘â žâ â ‡â ‡â Šâ Žâ " }, { "input": "bimetallism's", "output": "⠃⠊â â ‘â žâ â ‡â ‡â Šâ Žâ â „â Ž" }, { "input": "bimonthlies", "output": "⠃⠊â â •â â ¹â ‡â Šâ ‘â Ž" }, { "input": "bimonthly", "output": "⠃⠊â â •â â ¹â ‡â ½" }, { "input": "bimonthly's", "output": "⠃⠊â â •â â ¹â ‡â ½â „â Ž" }, { "input": "bin", "output": "⠃⠔" }, { "input": "bin's", "output": "⠃⠔⠄⠎" }, { "input": "binaries", "output": "⠃⠔⠜⠊⠑⠎" }, { "input": "binary", "output": "⠃⠔⠜⠽" }, { "input": "binary's", "output": "⠃⠔⠜⠽⠄⠎" }, { "input": "bind", "output": "⠃⠔⠙" }, { "input": "bind's", "output": "⠃⠔⠙⠄⠎" }, { "input": "binder", "output": "⠃⠔⠙⠻" }, { "input": "binder's", "output": "⠃⠔⠙⠻⠄⠎" }, { "input": "binderies", "output": "⠃⠔⠙⠻⠊⠑⠎" }, { "input": "binders", "output": "⠃⠔⠙⠻⠎" }, { "input": "bindery", "output": "⠃⠔⠙⠻⠽" }, { "input": "bindery's", "output": "⠃⠔⠙⠻⠽⠄⠎" }, { "input": "binding", "output": "⠃⠔⠙⠌" }, { "input": "binding's", "output": "⠃⠔⠙⠌⠄⠎" }, { "input": "bindings", "output": "⠃⠔⠙⠌⠎" }, { "input": "binds", "output": "⠃⠔⠙⠎" }, { "input": "bindweed's", "output": "⠃⠔⠙⠺⠑⠫⠄⠎" }, { "input": "binge", "output": "⠃⠌⠑" }, { "input": "binge's", "output": "⠃⠌⠑⠄⠎" }, { "input": "binged", "output": "⠃⠌⠫" }, { "input": "binges", "output": "⠃⠌⠑⠎" }, { "input": "bingo", "output": "⠃⠌⠕" }, { "input": "bingo's", "output": "⠃⠌⠕⠄⠎" }, { "input": "binnacle", "output": "⠃⠔â â â ‰â ‡â ‘" }, { "input": "binnacle's", "output": "⠃⠔â â â ‰â ‡â ‘â „â Ž" }, { "input": "binnacles", "output": "⠃⠔â â â ‰â ‡â ‘â Ž" }, { "input": "binned", "output": "⠃⠔â â «" }, { "input": "binning", "output": "⠃⠔â â Œ" }, { "input": "binocular", "output": "⠃⠔⠕⠉⠥⠇⠜" }, { "input": "binocular's", "output": "⠃⠔⠕⠉⠥⠇⠜⠄⠎" }, { "input": "binoculars", "output": "⠃⠔⠕⠉⠥⠇⠜⠎" }, { "input": "binomial", "output": "⠃⠊â â •â â Šâ â ‡" }, { "input": "binomial's", "output": "⠃⠊â â •â â Šâ â ‡â „â Ž" }, { "input": "binomials", "output": "⠃⠊â â •â â Šâ â ‡â Ž" }, { "input": "bins", "output": "⠃⠔⠎" }, { "input": "bio's", "output": "⠃⠊⠕⠄⠎" }, { "input": "biochemical", "output": "⠃⠊⠕⠡⠑â â Šâ ‰â â ‡" }, { "input": "biochemical's", "output": "⠃⠊⠕⠡⠑â â Šâ ‰â â ‡â „â Ž" }, { "input": "biochemically", "output": "⠃⠊⠕⠡⠑â â Šâ ‰â  â ½" }, { "input": "biochemicals", "output": "⠃⠊⠕⠡⠑â â Šâ ‰â â ‡â Ž" }, { "input": "biochemist", "output": "⠃⠊⠕⠡⠑â â Šâ Œ" }, { "input": "biochemist's", "output": "⠃⠊⠕⠡⠑â â Šâ Œâ „â Ž" }, { "input": "biochemistry", "output": "⠃⠊⠕⠡⠑â â Šâ Œâ —â ½" }, { "input": "biochemistry's", "output": "⠃⠊⠕⠡⠑â â Šâ Œâ —⠽⠄⠎" }, { "input": "biochemists", "output": "⠃⠊⠕⠡⠑â â Šâ Œâ Ž" }, { "input": "biodegradability", "output": "⠃⠊⠕⠙⠑⠛⠗â â ™â â ƒâ Šâ ‡â °â ½" }, { "input": "biodegradability's", "output": "⠃⠊⠕⠙⠑⠛⠗â â ™â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "biodegradable", "output": "⠃⠊⠕⠙⠑⠛⠗â â ™â â ¼" }, { "input": "biodiversity", "output": "⠃⠊⠕⠙⠊⠧⠻⠎⠰⠽" }, { "input": "biodiversity's", "output": "⠃⠊⠕⠙⠊⠧⠻⠎⠰⠽⠄⠎" }, { "input": "bioethics", "output": "⠃⠊⠕⠑⠹⠊⠉⠎" }, { "input": "bioethics's", "output": "⠃⠊⠕⠑⠹⠊⠉⠎⠄⠎" }, { "input": "biofeedback", "output": "⠃⠊⠕⠋⠑⠫⠃â â ‰â …" }, { "input": "biofeedback's", "output": "⠃⠊⠕⠋⠑⠫⠃â â ‰â …â „â Ž" }, { "input": "biographer", "output": "⠃⠊⠕⠛⠗â â â “â »" }, { "input": "biographer's", "output": "⠃⠊⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "biographers", "output": "⠃⠊⠕⠛⠗â â â “⠻⠎" }, { "input": "biographic", "output": "⠃⠊⠕⠛⠗â â â “â Šâ ‰" }, { "input": "biographical", "output": "⠃⠊⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "biographically", "output": "⠃⠊⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "biographies", "output": "⠃⠊⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "biography", "output": "⠃⠊⠕⠛⠗â â â “â ½" }, { "input": "biography's", "output": "⠃⠊⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "biologic", "output": "⠃⠊⠕⠇⠕⠛⠊⠉" }, { "input": "biological", "output": "⠃⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "biologically", "output": "⠃⠊⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "biologist", "output": "⠃⠊⠕⠇⠕⠛⠊⠌" }, { "input": "biologist's", "output": "⠃⠊⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "biologists", "output": "⠃⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "biology", "output": "⠃⠊⠕⠇⠕⠛⠽" }, { "input": "biology's", "output": "⠃⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "biomass's", "output": "⠃⠊⠕â â â Žâ Žâ „â Ž" }, { "input": "bionic", "output": "⠃⠊⠕â â Šâ ‰" }, { "input": "bionically", "output": "⠃⠊⠕â â Šâ ‰â  â ½" }, { "input": "bionics", "output": "⠃⠊⠕â â Šâ ‰â Ž" }, { "input": "bionics's", "output": "⠃⠊⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "biophysical", "output": "⠃⠊⠕â â “⠽⠎⠊⠉â â ‡" }, { "input": "biophysicist", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠊⠌" }, { "input": "biophysicist's", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠊⠌⠄⠎" }, { "input": "biophysicists", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠊⠌⠎" }, { "input": "biophysics", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠎" }, { "input": "biophysics's", "output": "⠃⠊⠕â â “⠽⠎⠊⠉⠎⠄⠎" }, { "input": "biopsied", "output": "⠃⠊⠕â â Žâ Šâ «" }, { "input": "biopsies", "output": "⠃⠊⠕â â Žâ Šâ ‘â Ž" }, { "input": "biopsy", "output": "⠃⠊⠕â â Žâ ½" }, { "input": "biopsy's", "output": "⠃⠊⠕â â Žâ ½â „â Ž" }, { "input": "biopsying", "output": "⠃⠊⠕â â Žâ ½â Œ" }, { "input": "biorhythm", "output": "⠃⠊⠕⠗⠓⠽⠹â " }, { "input": "biorhythm's", "output": "⠃⠊⠕⠗⠓⠽⠹â â „â Ž" }, { "input": "biorhythms", "output": "⠃⠊⠕⠗⠓⠽⠹â â Ž" }, { "input": "bios", "output": "⠃⠊⠕⠎" }, { "input": "biosphere", "output": "⠃⠊⠕⠎â â “⠻⠑" }, { "input": "biosphere's", "output": "⠃⠊⠕⠎â â “⠻⠑⠄⠎" }, { "input": "biospheres", "output": "⠃⠊⠕⠎â â “⠻⠑⠎" }, { "input": "biotechnological", "output": "⠃⠊⠕⠞⠑⠡â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "biotechnology", "output": "⠃⠊⠕⠞⠑⠡â â •⠇⠕⠛⠽" }, { "input": "biotechnology's", "output": "⠃⠊⠕⠞⠑⠡â â •⠇⠕⠛⠽⠄⠎" }, { "input": "biotin", "output": "⠃⠊⠕⠞⠔" }, { "input": "biotin's", "output": "⠃⠊⠕⠞⠔⠄⠎" }, { "input": "bipartisan", "output": "⠃⠊â â â Šâ Žâ â " }, { "input": "bipartisanship", "output": "⠃⠊â â â Šâ Žâ â â ©â Šâ " }, { "input": "bipartisanship's", "output": "⠃⠊â â â Šâ Žâ â â ©â Šâ â „â Ž" }, { "input": "bipartite", "output": "⠃⠊â â â Šâ žâ ‘" }, { "input": "biped", "output": "⠃⠊â â «" }, { "input": "biped's", "output": "⠃⠊â â «â „â Ž" }, { "input": "bipedal", "output": "⠃⠊â â «â â ‡" }, { "input": "bipeds", "output": "⠃⠊â â «â Ž" }, { "input": "biplane", "output": "⠃⠊â â ‡â â â ‘" }, { "input": "biplane's", "output": "⠃⠊â â ‡â â â ‘â „â Ž" }, { "input": "biplanes", "output": "⠃⠊â â ‡â â â ‘â Ž" }, { "input": "bipolar", "output": "⠃⠊â â •⠇⠜" }, { "input": "bipolarity", "output": "⠃⠊â â •⠇⠜⠰⠽" }, { "input": "bipolarity's", "output": "⠃⠊â â •⠇⠜⠰⠽⠄⠎" }, { "input": "biracial", "output": "⠃⠊⠗â â ‰â Šâ â ‡" }, { "input": "birch", "output": "⠃⠊⠗⠡" }, { "input": "birch's", "output": "⠃⠊⠗⠡⠄⠎" }, { "input": "birched", "output": "⠃⠊⠗⠡⠫" }, { "input": "birches", "output": "⠃⠊⠗⠡⠑⠎" }, { "input": "birching", "output": "⠃⠊⠗⠡⠌" }, { "input": "bird", "output": "⠃⠊⠗⠙" }, { "input": "bird's", "output": "⠃⠊⠗⠙⠄⠎" }, { "input": "birdbath", "output": "⠃⠊⠗⠙⠃â â ¹" }, { "input": "birdbath's", "output": "⠃⠊⠗⠙⠃â â ¹â „â Ž" }, { "input": "birdbaths", "output": "⠃⠊⠗⠙⠃â â ¹â Ž" }, { "input": "birdbrained", "output": "⠃⠊⠗⠙⠃⠗â â ”â «" }, { "input": "birdcage", "output": "⠃⠊⠗⠙⠉â â ›â ‘" }, { "input": "birdcages", "output": "⠃⠊⠗⠙⠉â â ›â ‘â Ž" }, { "input": "birded", "output": "⠃⠊⠗⠙⠫" }, { "input": "birder", "output": "⠃⠊⠗⠙⠻" }, { "input": "birder's", "output": "⠃⠊⠗⠙⠻⠄⠎" }, { "input": "birders", "output": "⠃⠊⠗⠙⠻⠎" }, { "input": "birdhouse", "output": "⠃⠊⠗⠙⠓⠳⠎⠑" }, { "input": "birdhouse's", "output": "⠃⠊⠗⠙⠓⠳⠎⠑⠄⠎" }, { "input": "birdhouses", "output": "⠃⠊⠗⠙⠓⠳⠎⠑⠎" }, { "input": "birdie", "output": "⠃⠊⠗⠙⠊⠑" }, { "input": "birdie's", "output": "⠃⠊⠗⠙⠊⠑⠄⠎" }, { "input": "birdied", "output": "⠃⠊⠗⠙⠊⠫" }, { "input": "birdieing", "output": "⠃⠊⠗⠙⠊⠑⠌" }, { "input": "birdies", "output": "⠃⠊⠗⠙⠊⠑⠎" }, { "input": "birding", "output": "⠃⠊⠗⠙⠌" }, { "input": "birdlime", "output": "⠃⠊⠗⠙⠇⠊â â ‘" }, { "input": "birdlime's", "output": "⠃⠊⠗⠙⠇⠊â â ‘â „â Ž" }, { "input": "birds", "output": "⠃⠊⠗⠙⠎" }, { "input": "birdseed", "output": "⠃⠊⠗⠙⠎⠑⠫" }, { "input": "birdseed's", "output": "⠃⠊⠗⠙⠎⠑⠫⠄⠎" }, { "input": "birdwatcher", "output": "⠃⠊⠗⠙⠺â â žâ ¡â »" }, { "input": "birdwatcher's", "output": "⠃⠊⠗⠙⠺â â žâ ¡â »â „â Ž" }, { "input": "birdwatchers", "output": "⠃⠊⠗⠙⠺â â žâ ¡â »â Ž" }, { "input": "biretta", "output": "⠃⠊⠗⠑⠞⠞â " }, { "input": "biretta's", "output": "⠃⠊⠗⠑⠞⠞â â „â Ž" }, { "input": "birettas", "output": "⠃⠊⠗⠑⠞⠞â â Ž" }, { "input": "birth", "output": "⠃⠊⠗⠹" }, { "input": "birth's", "output": "⠃⠊⠗⠹⠄⠎" }, { "input": "birthday", "output": "⠃⠊⠗⠹â â ™" }, { "input": "birthday's", "output": "⠃⠊⠗⠹â â ™â „â Ž" }, { "input": "birthdays", "output": "⠃⠊⠗⠹â â ™â Ž" }, { "input": "birthed", "output": "⠃⠊⠗⠮⠙" }, { "input": "birthing", "output": "⠃⠊⠗⠹⠌" }, { "input": "birthmark", "output": "⠃⠊⠗⠹â â œâ …" }, { "input": "birthmark's", "output": "⠃⠊⠗⠹â â œâ …â „â Ž" }, { "input": "birthmarks", "output": "⠃⠊⠗⠹â â œâ …â Ž" }, { "input": "birthplace", "output": "⠃⠊⠗⠹â â ‡â â ‰â ‘" }, { "input": "birthplace's", "output": "⠃⠊⠗⠹â â ‡â â ‰â ‘â „â Ž" }, { "input": "birthplaces", "output": "⠃⠊⠗⠹â â ‡â â ‰â ‘â Ž" }, { "input": "birthrate", "output": "⠃⠊⠗⠹⠗â â žâ ‘" }, { "input": "birthrate's", "output": "⠃⠊⠗⠹⠗â â žâ ‘â „â Ž" }, { "input": "birthrates", "output": "⠃⠊⠗⠹⠗â â žâ ‘â Ž" }, { "input": "birthright", "output": "⠃⠊⠗⠹â â —" }, { "input": "birthright's", "output": "⠃⠊⠗⠹â â —â „â Ž" }, { "input": "birthrights", "output": "⠃⠊⠗⠹â â —â Ž" }, { "input": "births", "output": "⠃⠊⠗⠹⠎" }, { "input": "birthstone", "output": "⠃⠊⠗⠹⠌â â •" }, { "input": "birthstone's", "output": "⠃⠊⠗⠹⠌â â •â „â Ž" }, { "input": "birthstones", "output": "⠃⠊⠗⠹⠌â â •â Ž" }, { "input": "bis", "output": "⠃⠊⠎" }, { "input": "biscuit", "output": "⠃⠊⠎⠉⠥⠊⠞" }, { "input": "biscuit's", "output": "⠃⠊⠎⠉⠥⠊⠞⠄⠎" }, { "input": "biscuits", "output": "⠃⠊⠎⠉⠥⠊⠞⠎" }, { "input": "bisect", "output": "⠃⠊⠎⠑⠉⠞" }, { "input": "bisected", "output": "⠃⠊⠎⠑⠉⠞⠫" }, { "input": "bisecting", "output": "⠃⠊⠎⠑⠉⠞⠌" }, { "input": "bisection", "output": "⠃⠊⠎⠑⠉⠰â " }, { "input": "bisection's", "output": "⠃⠊⠎⠑⠉⠰â â „â Ž" }, { "input": "bisections", "output": "⠃⠊⠎⠑⠉⠰â â Ž" }, { "input": "bisector", "output": "⠃⠊⠎⠑⠉⠞⠕⠗" }, { "input": "bisector's", "output": "⠃⠊⠎⠑⠉⠞⠕⠗⠄⠎" }, { "input": "bisectors", "output": "⠃⠊⠎⠑⠉⠞⠕⠗⠎" }, { "input": "bisects", "output": "⠃⠊⠎⠑⠉⠞⠎" }, { "input": "bisexual", "output": "⠃⠊⠎⠑⠭⠥â â ‡" }, { "input": "bisexual's", "output": "⠃⠊⠎⠑⠭⠥â â ‡â „â Ž" }, { "input": "bisexuality", "output": "⠃⠊⠎⠑⠭⠥â â ‡â °â ½" }, { "input": "bisexuality's", "output": "⠃⠊⠎⠑⠭⠥â â ‡â °â ½â „â Ž" }, { "input": "bisexually", "output": "⠃⠊⠎⠑⠭⠥⠠⠽" }, { "input": "bisexuals", "output": "⠃⠊⠎⠑⠭⠥â â ‡â Ž" }, { "input": "bishop", "output": "⠃⠊⠩⠕â " }, { "input": "bishop's", "output": "⠃⠊⠩⠕â â „â Ž" }, { "input": "bishopric", "output": "⠃⠊⠩⠕â â —â Šâ ‰" }, { "input": "bishopric's", "output": "⠃⠊⠩⠕â â —⠊⠉⠄⠎" }, { "input": "bishoprics", "output": "⠃⠊⠩⠕â â —⠊⠉⠎" }, { "input": "bishops", "output": "⠃⠊⠩⠕â â Ž" }, { "input": "bismuth", "output": "⠃⠊⠎â â ¥â ¹" }, { "input": "bismuth's", "output": "⠃⠊⠎â â ¥â ¹â „â Ž" }, { "input": "bison", "output": "⠃⠊⠎⠕â " }, { "input": "bison's", "output": "⠃⠊⠎⠕â â „â Ž" }, { "input": "bisque", "output": "⠃⠊⠎⠟⠥⠑" }, { "input": "bisque's", "output": "⠃⠊⠎⠟⠥⠑⠄⠎" }, { "input": "bistro", "output": "⠃⠊⠌⠗⠕" }, { "input": "bistro's", "output": "⠃⠊⠌⠗⠕⠄⠎" }, { "input": "bistros", "output": "⠃⠊⠌⠗⠕⠎" }, { "input": "bit", "output": "⠃⠊⠞" }, { "input": "bit's", "output": "⠃⠊⠞⠄⠎" }, { "input": "bitch", "output": "⠃⠊⠞⠡" }, { "input": "bitch's", "output": "⠃⠊⠞⠡⠄⠎" }, { "input": "bitched", "output": "⠃⠊⠞⠡⠫" }, { "input": "bitches", "output": "⠃⠊⠞⠡⠑⠎" }, { "input": "bitchier", "output": "⠃⠊⠞⠡⠊⠻" }, { "input": "bitchiest", "output": "⠃⠊⠞⠡⠊⠑⠌" }, { "input": "bitchily", "output": "⠃⠊⠞⠡⠊⠇⠽" }, { "input": "bitchiness's", "output": "⠃⠊⠞⠡⠊⠰⠎⠄⠎" }, { "input": "bitching", "output": "⠃⠊⠞⠡⠌" }, { "input": "bitchy", "output": "⠃⠊⠞⠡⠽" }, { "input": "bite", "output": "⠃⠊⠞⠑" }, { "input": "bite's", "output": "⠃⠊⠞⠑⠄⠎" }, { "input": "biter", "output": "⠃⠊⠞⠻" }, { "input": "biter's", "output": "⠃⠊⠞⠻⠄⠎" }, { "input": "biters", "output": "⠃⠊⠞⠻⠎" }, { "input": "bites", "output": "⠃⠊⠞⠑⠎" }, { "input": "biting", "output": "⠃⠊⠞⠌" }, { "input": "bitingly", "output": "⠃⠊⠞⠌⠇⠽" }, { "input": "bitmap", "output": "⠃⠊⠞â â â " }, { "input": "bits", "output": "⠃⠊⠞⠎" }, { "input": "bitten", "output": "⠃⠊⠞⠞⠢" }, { "input": "bitter", "output": "⠃⠊⠞⠞⠻" }, { "input": "bitter's", "output": "⠃⠊⠞⠞⠻⠄⠎" }, { "input": "bitterer", "output": "⠃⠊⠞⠞⠻⠻" }, { "input": "bitterest", "output": "⠃⠊⠞⠞⠻⠑⠌" }, { "input": "bitterly", "output": "⠃⠊⠞⠞⠻⠇⠽" }, { "input": "bittern", "output": "⠃⠊⠞⠞⠻â " }, { "input": "bittern's", "output": "⠃⠊⠞⠞⠻â â „â Ž" }, { "input": "bitterness", "output": "⠃⠊⠞⠞⠻⠰⠎" }, { "input": "bitterness's", "output": "⠃⠊⠞⠞⠻⠰⠎⠄⠎" }, { "input": "bitterns", "output": "⠃⠊⠞⠞⠻â â Ž" }, { "input": "bitters", "output": "⠃⠊⠞⠞⠻⠎" }, { "input": "bitters's", "output": "⠃⠊⠞⠞⠻⠎⠄⠎" }, { "input": "bittersweet", "output": "⠃⠊⠞⠞⠻⠎⠺⠑⠑⠞" }, { "input": "bittersweet's", "output": "⠃⠊⠞⠞⠻⠎⠺⠑⠑⠞⠄⠎" }, { "input": "bittersweets", "output": "⠃⠊⠞⠞⠻⠎⠺⠑⠑⠞⠎" }, { "input": "bittier", "output": "⠃⠊⠞⠞⠊⠻" }, { "input": "bittiest", "output": "⠃⠊⠞⠞⠊⠑⠌" }, { "input": "bitumen", "output": "⠃⠊⠞⠥â â ¢" }, { "input": "bitumen's", "output": "⠃⠊⠞⠥â â ¢â „â Ž" }, { "input": "bituminous", "output": "⠃⠊⠞⠥â â ”⠳⠎" }, { "input": "bivalent", "output": "⠃⠊⠧â â ‡â ¢â ž" }, { "input": "bivalve", "output": "⠃⠊⠧â â ‡â §â ‘" }, { "input": "bivalve's", "output": "⠃⠊⠧â â ‡â §â ‘â „â Ž" }, { "input": "bivalves", "output": "⠃⠊⠧â â ‡â §â ‘â Ž" }, { "input": "bivouac", "output": "⠃⠊⠧⠳â â ‰" }, { "input": "bivouac's", "output": "⠃⠊⠧⠳â â ‰â „â Ž" }, { "input": "bivouacked", "output": "⠃⠊⠧⠳â â ‰â …â «" }, { "input": "bivouacking", "output": "⠃⠊⠧⠳â â ‰â …â Œ" }, { "input": "bivouacs", "output": "⠃⠊⠧⠳â â ‰â Ž" }, { "input": "biweeklies", "output": "⠃⠊⠺⠑⠑⠅⠇⠊⠑⠎" }, { "input": "biweekly", "output": "⠃⠊⠺⠑⠑⠅⠇⠽" }, { "input": "biweekly's", "output": "⠃⠊⠺⠑⠑⠅⠇⠽⠄⠎" }, { "input": "biyearly", "output": "⠃⠊⠽⠑⠜⠇⠽" }, { "input": "biz's", "output": "⠃⠊⠵⠄⠎" }, { "input": "bizarre", "output": "⠃⠊⠵⠜⠗⠑" }, { "input": "bizarrely", "output": "⠃⠊⠵⠜⠗⠑⠇⠽" }, { "input": "blab", "output": "⠃⠇â â ƒ" }, { "input": "blab's", "output": "⠃⠇â â ƒâ „â Ž" }, { "input": "blabbed", "output": "⠃⠇â â †â «" }, { "input": "blabbermouth", "output": "⠃⠇â â †â »â â ³â ¹" }, { "input": "blabbermouth's", "output": "⠃⠇â â †â »â â ³â ¹â „â Ž" }, { "input": "blabbermouths", "output": "⠃⠇â â †â »â â ³â ¹â Ž" }, { "input": "blabbing", "output": "⠃⠇â â †â Œ" }, { "input": "blabs", "output": "⠃⠇â â ƒâ Ž" }, { "input": "black", "output": "⠃⠇â â ‰â …" }, { "input": "black's", "output": "⠃⠇â â ‰â …â „â Ž" }, { "input": "blackamoor", "output": "⠃⠇â â ‰â …â â â •â •â —" }, { "input": "blackamoor's", "output": "⠃⠇â â ‰â …â â â •â •â —â „â Ž" }, { "input": "blackamoors", "output": "⠃⠇â â ‰â …â â â •â •â —â Ž" }, { "input": "blackball", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡" }, { "input": "blackball's", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â „â Ž" }, { "input": "blackballed", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â «" }, { "input": "blackballing", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â Œ" }, { "input": "blackballs", "output": "⠃⠇â â ‰â …â ƒâ â ‡â ‡â Ž" }, { "input": "blackberries", "output": "⠃⠇â â ‰â …⠃⠻⠗⠊⠑⠎" }, { "input": "blackberry", "output": "⠃⠇â â ‰â …⠃⠻⠗⠽" }, { "input": "blackberry's", "output": "⠃⠇â â ‰â …⠃⠻⠗⠽⠄⠎" }, { "input": "blackberrying", "output": "⠃⠇â â ‰â …⠃⠻⠗⠽⠌" }, { "input": "blackbird", "output": "⠃⠇â â ‰â …⠃⠊⠗⠙" }, { "input": "blackbird's", "output": "⠃⠇â â ‰â …⠃⠊⠗⠙⠄⠎" }, { "input": "blackbirds", "output": "⠃⠇â â ‰â …⠃⠊⠗⠙⠎" }, { "input": "blackboard", "output": "⠃⠇â â ‰â …⠃⠕⠜⠙" }, { "input": "blackboard's", "output": "⠃⠇â â ‰â …⠃⠕⠜⠙⠄⠎" }, { "input": "blackboards", "output": "⠃⠇â â ‰â …⠃⠕⠜⠙⠎" }, { "input": "blackcurrant", "output": "⠃⠇â â ‰â …⠉⠥⠗⠗â â â ž" }, { "input": "blacked", "output": "⠃⠇â â ‰â …â «" }, { "input": "blacken", "output": "⠃⠇â â ‰â …â ¢" }, { "input": "blackened", "output": "⠃⠇â â ‰â …⠢⠫" }, { "input": "blackening", "output": "⠃⠇â â ‰â …⠢⠌" }, { "input": "blackens", "output": "⠃⠇â â ‰â …⠢⠎" }, { "input": "blacker", "output": "⠃⠇â â ‰â …â »" }, { "input": "blackest", "output": "⠃⠇â â ‰â …â ‘â Œ" }, { "input": "blackguard", "output": "⠃⠇â â ‰â …⠛⠥⠜⠙" }, { "input": "blackguard's", "output": "⠃⠇â â ‰â …⠛⠥⠜⠙⠄⠎" }, { "input": "blackguards", "output": "⠃⠇â â ‰â …⠛⠥⠜⠙⠎" }, { "input": "blackhead", "output": "⠃⠇â â ‰â …â “â ‚â ™" }, { "input": "blackhead's", "output": "⠃⠇â â ‰â …⠓⠂⠙⠄⠎" }, { "input": "blackheads", "output": "⠃⠇â â ‰â …⠓⠂⠙⠎" }, { "input": "blacking", "output": "⠃⠇â â ‰â …â Œ" }, { "input": "blacking's", "output": "⠃⠇â â ‰â …⠌⠄⠎" }, { "input": "blackish", "output": "⠃⠇â â ‰â …â Šâ ©" }, { "input": "blackjack", "output": "⠃⠇â â ‰â …â šâ â ‰â …" }, { "input": "blackjack's", "output": "⠃⠇â â ‰â …â šâ â ‰â …â „â Ž" }, { "input": "blackjacked", "output": "⠃⠇â â ‰â …â šâ â ‰â …â «" }, { "input": "blackjacking", "output": "⠃⠇â â ‰â …â šâ â ‰â …â Œ" }, { "input": "blackjacks", "output": "⠃⠇â â ‰â …â šâ â ‰â …â Ž" }, { "input": "blacklist", "output": "⠃⠇â â ‰â …⠇⠊⠌" }, { "input": "blacklist's", "output": "⠃⠇â â ‰â …⠇⠊⠌⠄⠎" }, { "input": "blacklisted", "output": "⠃⠇â â ‰â …⠇⠊⠌⠫" }, { "input": "blacklisting", "output": "⠃⠇â â ‰â …⠇⠊⠌⠌" }, { "input": "blacklists", "output": "⠃⠇â â ‰â …⠇⠊⠌⠎" }, { "input": "blackly", "output": "⠃⠇â â ‰â …⠇⠽" }, { "input": "blackmail", "output": "⠃⠇â â ‰â …â â â Šâ ‡" }, { "input": "blackmail's", "output": "⠃⠇â â ‰â …â â â Šâ ‡â „â Ž" }, { "input": "blackmailed", "output": "⠃⠇â â ‰â …â â â Šâ ‡â «" }, { "input": "blackmailer", "output": "⠃⠇â â ‰â …â â â Šâ ‡â »" }, { "input": "blackmailer's", "output": "⠃⠇â â ‰â …â â â Šâ ‡â »â „â Ž" }, { "input": "blackmailers", "output": "⠃⠇â â ‰â …â â â Šâ ‡â »â Ž" }, { "input": "blackmailing", "output": "⠃⠇â â ‰â …â â â Šâ ‡â Œ" }, { "input": "blackmails", "output": "⠃⠇â â ‰â …â â â Šâ ‡â Ž" }, { "input": "blackness", "output": "⠃⠇â â ‰â …â °â Ž" }, { "input": "blackness's", "output": "⠃⠇â â ‰â …â °â Žâ „â Ž" }, { "input": "blackout", "output": "⠃⠇â â ‰â …⠳⠞" }, { "input": "blackout's", "output": "⠃⠇â â ‰â …⠳⠞⠄⠎" }, { "input": "blackouts", "output": "⠃⠇â â ‰â …⠳⠞⠎" }, { "input": "blacks", "output": "⠃⠇â â ‰â …â Ž" }, { "input": "blacksmith", "output": "⠃⠇â â ‰â …â Žâ â Šâ ¹" }, { "input": "blacksmith's", "output": "⠃⠇â â ‰â …â Žâ â Šâ ¹â „â Ž" }, { "input": "blacksmiths", "output": "⠃⠇â â ‰â …â Žâ â Šâ ¹â Ž" }, { "input": "blacksnake", "output": "⠃⠇â â ‰â …â Žâ â â …â ‘" }, { "input": "blacksnake's", "output": "⠃⠇â â ‰â …â Žâ â â …â ‘â „â Ž" }, { "input": "blacksnakes", "output": "⠃⠇â â ‰â …â Žâ â â …â ‘â Ž" }, { "input": "blackthorn", "output": "⠃⠇â â ‰â …⠹⠕⠗â " }, { "input": "blackthorn's", "output": "⠃⠇â â ‰â …⠹⠕⠗â â „â Ž" }, { "input": "blackthorns", "output": "⠃⠇â â ‰â …⠹⠕⠗â â Ž" }, { "input": "blacktop", "output": "⠃⠇â â ‰â …â žâ •â " }, { "input": "blacktop's", "output": "⠃⠇â â ‰â …â žâ •â â „â Ž" }, { "input": "blacktopped", "output": "⠃⠇â â ‰â …â žâ •â â â «" }, { "input": "blacktopping", "output": "⠃⠇â â ‰â …â žâ •â â â Œ" }, { "input": "blacktops", "output": "⠃⠇â â ‰â …â žâ •â â Ž" }, { "input": "bladder", "output": "⠃⠇â â ²â »" }, { "input": "bladder's", "output": "⠃⠇â â ²â »â „â Ž" }, { "input": "bladders", "output": "⠃⠇â â ²â »â Ž" }, { "input": "blade", "output": "⠃⠇â â ™â ‘" }, { "input": "blade's", "output": "⠃⠇â â ™â ‘â „â Ž" }, { "input": "bladed", "output": "⠃⠇â â ™â «" }, { "input": "blades", "output": "⠃⠇â â ™â ‘â Ž" }, { "input": "blah", "output": "⠃⠇â â “" }, { "input": "blah's", "output": "⠃⠇â â “â „â Ž" }, { "input": "blahs", "output": "⠃⠇â â “â Ž" }, { "input": "blahs's", "output": "⠃⠇â â “â Žâ „â Ž" }, { "input": "blamable", "output": "⠃⠇â â â â ¼" }, { "input": "blame", "output": "⠃⠇â â â ‘" }, { "input": "blame's", "output": "⠃⠇â â â ‘â „â Ž" }, { "input": "blamed", "output": "⠃⠇â â â «" }, { "input": "blameless", "output": "⠃⠇â â â ‘⠨⠎" }, { "input": "blamelessly", "output": "⠃⠇â â â ‘⠨⠎⠇⠽" }, { "input": "blamelessness", "output": "⠃⠇â â â ‘⠨⠎⠰⠎" }, { "input": "blamelessness's", "output": "⠃⠇â â â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "blamer", "output": "⠃⠇â â â »" }, { "input": "blames", "output": "⠃⠇â â â ‘â Ž" }, { "input": "blameworthiness", "output": "⠃⠇â â â ‘⠺⠕⠗⠹⠊⠰⠎" }, { "input": "blameworthiness's", "output": "⠃⠇â â â ‘⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "blameworthy", "output": "⠃⠇â â â ‘⠺⠕⠗⠹⠽" }, { "input": "blaming", "output": "⠃⠇â â â Œ" }, { "input": "blanch", "output": "⠃⠇â â â ¡" }, { "input": "blanched", "output": "⠃⠇â â â ¡â «" }, { "input": "blanches", "output": "⠃⠇â â â ¡â ‘â Ž" }, { "input": "blanching", "output": "⠃⠇â â â ¡â Œ" }, { "input": "blancmange", "output": "⠃⠇â â â ‰â â â â ›â ‘" }, { "input": "bland", "output": "⠃⠇⠯" }, { "input": "blander", "output": "⠃⠇⠯⠻" }, { "input": "blandest", "output": "⠃⠇⠯⠑⠌" }, { "input": "blandish", "output": "⠃⠇⠯⠊⠩" }, { "input": "blandished", "output": "⠃⠇⠯⠊⠩⠫" }, { "input": "blandishes", "output": "⠃⠇⠯⠊⠩⠑⠎" }, { "input": "blandishing", "output": "⠃⠇⠯⠊⠩⠌" }, { "input": "blandishment", "output": "⠃⠇⠯⠊⠩⠰⠞" }, { "input": "blandishment's", "output": "⠃⠇⠯⠊⠩⠰⠞⠄⠎" }, { "input": "blandishments", "output": "⠃⠇⠯⠊⠩⠰⠞⠎" }, { "input": "blandly", "output": "⠃⠇⠯⠇⠽" }, { "input": "blandness", "output": "⠃⠇⠯⠰⠎" }, { "input": "blandness's", "output": "⠃⠇⠯⠰⠎⠄⠎" }, { "input": "blank", "output": "⠃⠇â â â …" }, { "input": "blank's", "output": "⠃⠇â â â …â „â Ž" }, { "input": "blanked", "output": "⠃⠇â â â …â «" }, { "input": "blanker", "output": "⠃⠇â â â …â »" }, { "input": "blankest", "output": "⠃⠇â â â …â ‘â Œ" }, { "input": "blanket", "output": "⠃⠇â â â …â ‘â ž" }, { "input": "blanket's", "output": "⠃⠇â â â …â ‘â žâ „â Ž" }, { "input": "blanketed", "output": "⠃⠇â â â …â ‘â žâ «" }, { "input": "blanketing", "output": "⠃⠇â â â …â ‘â žâ Œ" }, { "input": "blankets", "output": "⠃⠇â â â …â ‘â žâ Ž" }, { "input": "blanking", "output": "⠃⠇â â â …â Œ" }, { "input": "blankly", "output": "⠃⠇â â â …⠇⠽" }, { "input": "blankness", "output": "⠃⠇â â â …â °â Ž" }, { "input": "blankness's", "output": "⠃⠇â â â …â °â Žâ „â Ž" }, { "input": "blanks", "output": "⠃⠇â â â …â Ž" }, { "input": "blare", "output": "⠃⠇⠜⠑" }, { "input": "blare's", "output": "⠃⠇⠜⠑⠄⠎" }, { "input": "blared", "output": "⠃⠇⠜⠫" }, { "input": "blares", "output": "⠃⠇⠜⠑⠎" }, { "input": "blaring", "output": "⠃⠇⠜⠌" }, { "input": "blarney", "output": "⠃⠇⠜â â ‘â ½" }, { "input": "blarney's", "output": "⠃⠇⠜â â ‘⠽⠄⠎" }, { "input": "blarneyed", "output": "⠃⠇⠜â â ‘⠽⠫" }, { "input": "blarneying", "output": "⠃⠇⠜â â ‘⠽⠌" }, { "input": "blarneys", "output": "⠃⠇⠜â â ‘⠽⠎" }, { "input": "blaspheme", "output": "⠃⠇â â Žâ â “â ‘â â ‘" }, { "input": "blasphemed", "output": "⠃⠇â â Žâ â “â ‘â â «" }, { "input": "blasphemer", "output": "⠃⠇â â Žâ â “â ‘â â »" }, { "input": "blasphemer's", "output": "⠃⠇â â Žâ â “â ‘â â »â „â Ž" }, { "input": "blasphemers", "output": "⠃⠇â â Žâ â “â ‘â â »â Ž" }, { "input": "blasphemes", "output": "⠃⠇â â Žâ â “â ‘â â ‘â Ž" }, { "input": "blasphemies", "output": "⠃⠇â â Žâ â “â ‘â â Šâ ‘â Ž" }, { "input": "blaspheming", "output": "⠃⠇â â Žâ â “â ‘â â Œ" }, { "input": "blasphemous", "output": "⠃⠇â â Žâ â “â ‘â â ³â Ž" }, { "input": "blasphemously", "output": "⠃⠇â â Žâ â “â ‘â â ³â Žâ ‡â ½" }, { "input": "blasphemy", "output": "⠃⠇â â Žâ â “â ‘â â ½" }, { "input": "blasphemy's", "output": "⠃⠇â â Žâ â “â ‘â â ½â „â Ž" }, { "input": "blast", "output": "⠃⠇â â Œ" }, { "input": "blast's", "output": "⠃⠇â â Œâ „â Ž" }, { "input": "blasted", "output": "⠃⠇â â Œâ «" }, { "input": "blaster", "output": "⠃⠇â â Œâ »" }, { "input": "blaster's", "output": "⠃⠇â â Œâ »â „â Ž" }, { "input": "blasters", "output": "⠃⠇â â Œâ »â Ž" }, { "input": "blasting", "output": "⠃⠇â â Œâ Œ" }, { "input": "blastoff", "output": "⠃⠇â â Œâ ·â ‹" }, { "input": "blastoff's", "output": "⠃⠇â â Œâ ·â ‹â „â Ž" }, { "input": "blastoffs", "output": "⠃⠇â â Œâ ·â ‹â Ž" }, { "input": "blasts", "output": "⠃⠇â â Œâ Ž" }, { "input": "blatancies", "output": "⠃⠇â â žâ â â ‰â Šâ ‘â Ž" }, { "input": "blatancy", "output": "⠃⠇â â žâ â â ‰â ½" }, { "input": "blatancy's", "output": "⠃⠇â â žâ â â ‰â ½â „â Ž" }, { "input": "blatant", "output": "⠃⠇â â žâ â â ž" }, { "input": "blatantly", "output": "⠃⠇â â žâ â â žâ ‡â ½" }, { "input": "blather's", "output": "⠃⠇â â ®â —â „â Ž" }, { "input": "blaze", "output": "⠃⠇â â µâ ‘" }, { "input": "blaze's", "output": "⠃⠇â â µâ ‘â „â Ž" }, { "input": "blazed", "output": "⠃⠇â â µâ «" }, { "input": "blazer", "output": "⠃⠇â â µâ »" }, { "input": "blazer's", "output": "⠃⠇â â µâ »â „â Ž" }, { "input": "blazers", "output": "⠃⠇â â µâ »â Ž" }, { "input": "blazes", "output": "⠃⠇â â µâ ‘â Ž" }, { "input": "blazing", "output": "⠃⠇â â µâ Œ" }, { "input": "blazon", "output": "⠃⠇â â µâ •â " }, { "input": "blazon's", "output": "⠃⠇â â µâ •â â „â Ž" }, { "input": "blazoned", "output": "⠃⠇â â µâ •â â «" }, { "input": "blazoning", "output": "⠃⠇â â µâ •â â Œ" }, { "input": "blazons", "output": "⠃⠇â â µâ •â â Ž" }, { "input": "bleach", "output": "⠃⠇⠂⠡" }, { "input": "bleach's", "output": "⠃⠇⠂⠡⠄⠎" }, { "input": "bleached", "output": "⠃⠇⠂⠡⠫" }, { "input": "bleacher", "output": "⠃⠇⠂⠡⠻" }, { "input": "bleacher's", "output": "⠃⠇⠂⠡⠻⠄⠎" }, { "input": "bleachers", "output": "⠃⠇⠂⠡⠻⠎" }, { "input": "bleaches", "output": "⠃⠇⠂⠡⠑⠎" }, { "input": "bleaching", "output": "⠃⠇⠂⠡⠌" }, { "input": "bleak", "output": "⠃⠇⠂⠅" }, { "input": "bleaker", "output": "⠃⠇⠂⠅⠻" }, { "input": "bleakest", "output": "⠃⠇⠂⠅⠑⠌" }, { "input": "bleakly", "output": "⠃⠇⠂⠅⠇⠽" }, { "input": "bleakness", "output": "⠃⠇⠂⠅⠰⠎" }, { "input": "bleakness's", "output": "⠃⠇⠂⠅⠰⠎⠄⠎" }, { "input": "blear", "output": "⠃⠇⠑⠜" }, { "input": "blearier", "output": "⠃⠇⠑⠜⠊⠻" }, { "input": "bleariest", "output": "⠃⠇⠑⠜⠊⠑⠌" }, { "input": "blearily", "output": "⠃⠇⠑⠜⠊⠇⠽" }, { "input": "bleariness", "output": "⠃⠇⠑⠜⠊⠰⠎" }, { "input": "bleariness's", "output": "⠃⠇⠑⠜⠊⠰⠎⠄⠎" }, { "input": "bleary", "output": "⠃⠇⠑⠜⠽" }, { "input": "bleat", "output": "⠃⠇⠂⠞" }, { "input": "bleat's", "output": "⠃⠇⠂⠞⠄⠎" }, { "input": "bleated", "output": "⠃⠇⠂⠞⠫" }, { "input": "bleating", "output": "⠃⠇⠂⠞⠌" }, { "input": "bleats", "output": "⠃⠇⠂⠞⠎" }, { "input": "bled", "output": "⠃⠇⠫" }, { "input": "bleed", "output": "⠃⠇⠑⠫" }, { "input": "bleeder", "output": "⠃⠇⠑⠫⠻" }, { "input": "bleeder's", "output": "⠃⠇⠑⠫⠻⠄⠎" }, { "input": "bleeders", "output": "⠃⠇⠑⠫⠻⠎" }, { "input": "bleeding", "output": "⠃⠇⠑⠫⠌" }, { "input": "bleeding's", "output": "⠃⠇⠑⠫⠌⠄⠎" }, { "input": "bleeds", "output": "⠃⠇⠑⠫⠎" }, { "input": "bleep", "output": "⠃⠇⠑⠑â " }, { "input": "bleep's", "output": "⠃⠇⠑⠑â â „â Ž" }, { "input": "bleeped", "output": "⠃⠇⠑⠑â â «" }, { "input": "bleeping", "output": "⠃⠇⠑⠑â â Œ" }, { "input": "bleeps", "output": "⠃⠇⠑⠑â â Ž" }, { "input": "blemish", "output": "⠃⠇⠑â â Šâ ©" }, { "input": "blemish's", "output": "⠃⠇⠑â â Šâ ©â „â Ž" }, { "input": "blemished", "output": "⠃⠇⠑â â Šâ ©â «" }, { "input": "blemishes", "output": "⠃⠇⠑â â Šâ ©â ‘â Ž" }, { "input": "blemishing", "output": "⠃⠇⠑â â Šâ ©â Œ" }, { "input": "blench", "output": "⠃⠇⠢⠡" }, { "input": "blenched", "output": "⠃⠇⠢⠡⠫" }, { "input": "blenches", "output": "⠃⠇⠢⠡⠑⠎" }, { "input": "blenching", "output": "⠃⠇⠢⠡⠌" }, { "input": "blend", "output": "⠃⠇⠢⠙" }, { "input": "blend's", "output": "⠃⠇⠢⠙⠄⠎" }, { "input": "blended", "output": "⠃⠇⠢⠙⠫" }, { "input": "blender", "output": "⠃⠇⠢⠙⠻" }, { "input": "blender's", "output": "⠃⠇⠢⠙⠻⠄⠎" }, { "input": "blenders", "output": "⠃⠇⠢⠙⠻⠎" }, { "input": "blending", "output": "⠃⠇⠢⠙⠌" }, { "input": "blends", "output": "⠃⠇⠢⠙⠎" }, { "input": "bless", "output": "⠃⠨⠎" }, { "input": "blessed", "output": "⠃⠨⠎⠫" }, { "input": "blessedly", "output": "⠃⠨⠎⠫⠇⠽" }, { "input": "blessedness", "output": "⠃⠨⠎⠫⠰⠎" }, { "input": "blessedness's", "output": "⠃⠨⠎⠫⠰⠎⠄⠎" }, { "input": "blesses", "output": "⠃⠨⠎⠑⠎" }, { "input": "blessing", "output": "⠃⠨⠎⠌" }, { "input": "blessing's", "output": "⠃⠨⠎⠌⠄⠎" }, { "input": "blessings", "output": "⠃⠨⠎⠌⠎" }, { "input": "blew", "output": "⠃⠇⠑⠺" }, { "input": "blight", "output": "⠃⠇⠊⠣⠞" }, { "input": "blight's", "output": "⠃⠇⠊⠣⠞⠄⠎" }, { "input": "blighted", "output": "⠃⠇⠊⠣⠞⠫" }, { "input": "blighting", "output": "⠃⠇⠊⠣⠞⠌" }, { "input": "blights", "output": "⠃⠇⠊⠣⠞⠎" }, { "input": "blimp", "output": "⠃⠇⠊â â " }, { "input": "blimp's", "output": "⠃⠇⠊â â â „â Ž" }, { "input": "blimps", "output": "⠃⠇⠊â â â Ž" }, { "input": "blind", "output": "⠃⠇" }, { "input": "blind's", "output": "⠃⠇⠄⠎" }, { "input": "blinded", "output": "⠃⠇⠔⠙⠫" }, { "input": "blinder", "output": "⠃⠇⠔⠙⠻" }, { "input": "blinder's", "output": "⠃⠇⠔⠙⠻⠄⠎" }, { "input": "blinders", "output": "⠃⠇⠔⠙⠻⠎" }, { "input": "blindest", "output": "⠃⠇⠔⠙⠑⠌" }, { "input": "blindfold", "output": "⠃⠇⠋⠕⠇⠙" }, { "input": "blindfold's", "output": "⠃⠇⠋⠕⠇⠙⠄⠎" }, { "input": "blindfolded", "output": "⠃⠇⠋⠕⠇⠙⠫" }, { "input": "blindfolding", "output": "⠃⠇⠋⠕⠇⠙⠌" }, { "input": "blindfolds", "output": "⠃⠇⠋⠕⠇⠙⠎" }, { "input": "blinding", "output": "⠃⠇⠔⠙⠌" }, { "input": "blindingly", "output": "⠃⠇⠔⠙⠌⠇⠽" }, { "input": "blindly", "output": "⠃⠇⠇⠽" }, { "input": "blindness", "output": "⠃⠇⠰⠎" }, { "input": "blindness's", "output": "⠃⠇⠰⠎⠄⠎" }, { "input": "blinds", "output": "⠃⠇⠎" }, { "input": "blindside", "output": "⠃⠇⠎⠊⠙⠑" }, { "input": "blindsided", "output": "⠃⠇⠎⠊⠙⠫" }, { "input": "blindsides", "output": "⠃⠇⠎⠊⠙⠑⠎" }, { "input": "blindsiding", "output": "⠃⠇⠎⠊⠙⠌" }, { "input": "blini", "output": "⠃⠇⠔⠊" }, { "input": "blini's", "output": "⠃⠇⠔⠊⠄⠎" }, { "input": "blinis", "output": "⠃⠇⠔⠊⠎" }, { "input": "blink", "output": "⠃⠇⠔⠅" }, { "input": "blink's", "output": "⠃⠇⠔⠅⠄⠎" }, { "input": "blinked", "output": "⠃⠇⠔⠅⠫" }, { "input": "blinker", "output": "⠃⠇⠔⠅⠻" }, { "input": "blinker's", "output": "⠃⠇⠔⠅⠻⠄⠎" }, { "input": "blinkered", "output": "⠃⠇⠔⠅⠻⠫" }, { "input": "blinkering", "output": "⠃⠇⠔⠅⠻⠌" }, { "input": "blinkers", "output": "⠃⠇⠔⠅⠻⠎" }, { "input": "blinking", "output": "⠃⠇⠔⠅⠌" }, { "input": "blinks", "output": "⠃⠇⠔⠅⠎" }, { "input": "blintz", "output": "⠃⠇⠔⠞⠵" }, { "input": "blintz's", "output": "⠃⠇⠔⠞⠵⠄⠎" }, { "input": "blintze", "output": "⠃⠇⠔⠞⠵⠑" }, { "input": "blintze's", "output": "⠃⠇⠔⠞⠵⠑⠄⠎" }, { "input": "blintzes", "output": "⠃⠇⠔⠞⠵⠑⠎" }, { "input": "blip", "output": "⠃⠇⠊â " }, { "input": "blip's", "output": "⠃⠇⠊â â „â Ž" }, { "input": "blips", "output": "⠃⠇⠊â â Ž" }, { "input": "bliss", "output": "⠃⠇⠊⠎⠎" }, { "input": "bliss's", "output": "⠃⠇⠊⠎⠎⠄⠎" }, { "input": "blissful", "output": "⠃⠇⠊⠎⠎⠰⠇" }, { "input": "blissfully", "output": "⠃⠇⠊⠎⠎⠰⠇⠇⠽" }, { "input": "blissfulness", "output": "⠃⠇⠊⠎⠎⠰⠇⠰⠎" }, { "input": "blissfulness's", "output": "⠃⠇⠊⠎⠎⠰⠇⠰⠎⠄⠎" }, { "input": "blister", "output": "⠃⠇⠊⠌⠻" }, { "input": "blister's", "output": "⠃⠇⠊⠌⠻⠄⠎" }, { "input": "blistered", "output": "⠃⠇⠊⠌⠻⠫" }, { "input": "blistering", "output": "⠃⠇⠊⠌⠻⠌" }, { "input": "blisteringly", "output": "⠃⠇⠊⠌⠻⠌⠇⠽" }, { "input": "blisters", "output": "⠃⠇⠊⠌⠻⠎" }, { "input": "blistery", "output": "⠃⠇⠊⠌⠻⠽" }, { "input": "blithe", "output": "⠃⠇⠊⠮" }, { "input": "blithely", "output": "⠃⠇⠊⠮⠇⠽" }, { "input": "blitheness", "output": "⠃⠇⠊⠮⠰⠎" }, { "input": "blitheness's", "output": "⠃⠇⠊⠮⠰⠎⠄⠎" }, { "input": "blither", "output": "⠃⠇⠊⠮⠗" }, { "input": "blithering", "output": "⠃⠇⠊⠮⠗⠌" }, { "input": "blithesome", "output": "⠃⠇⠊⠮â â Ž" }, { "input": "blithest", "output": "⠃⠇⠊⠮⠌" }, { "input": "blitz", "output": "⠃⠇⠊⠞⠵" }, { "input": "blitz's", "output": "⠃⠇⠊⠞⠵⠄⠎" }, { "input": "blitzed", "output": "⠃⠇⠊⠞⠵⠫" }, { "input": "blitzes", "output": "⠃⠇⠊⠞⠵⠑⠎" }, { "input": "blitzing", "output": "⠃⠇⠊⠞⠵⠌" }, { "input": "blizzard", "output": "⠃⠇⠊⠵⠵⠜⠙" }, { "input": "blizzard's", "output": "⠃⠇⠊⠵⠵⠜⠙⠄⠎" }, { "input": "blizzards", "output": "⠃⠇⠊⠵⠵⠜⠙⠎" }, { "input": "bloat", "output": "⠃⠇⠕â â ž" }, { "input": "bloated", "output": "⠃⠇⠕â â žâ «" }, { "input": "bloating", "output": "⠃⠇⠕â â žâ Œ" }, { "input": "bloats", "output": "⠃⠇⠕â â žâ Ž" }, { "input": "blob", "output": "⠃⠇⠕⠃" }, { "input": "blob's", "output": "⠃⠇⠕⠃⠄⠎" }, { "input": "blobbed", "output": "⠃⠇⠕⠆⠫" }, { "input": "blobbing", "output": "⠃⠇⠕⠆⠌" }, { "input": "blobs", "output": "⠃⠇⠕⠃⠎" }, { "input": "bloc", "output": "⠃⠇⠕⠉" }, { "input": "bloc's", "output": "⠃⠇⠕⠉⠄⠎" }, { "input": "block", "output": "⠃⠇⠕⠉⠅" }, { "input": "block's", "output": "⠃⠇⠕⠉⠅⠄⠎" }, { "input": "blockade", "output": "⠃⠇⠕⠉⠅â â ™â ‘" }, { "input": "blockade's", "output": "⠃⠇⠕⠉⠅â â ™â ‘â „â Ž" }, { "input": "blockaded", "output": "⠃⠇⠕⠉⠅â â ™â «" }, { "input": "blockader", "output": "⠃⠇⠕⠉⠅â â ™â »" }, { "input": "blockader's", "output": "⠃⠇⠕⠉⠅â â ™â »â „â Ž" }, { "input": "blockaders", "output": "⠃⠇⠕⠉⠅â â ™â »â Ž" }, { "input": "blockades", "output": "⠃⠇⠕⠉⠅â â ™â ‘â Ž" }, { "input": "blockading", "output": "⠃⠇⠕⠉⠅â â ™â Œ" }, { "input": "blockage", "output": "⠃⠇⠕⠉⠅â â ›â ‘" }, { "input": "blockage's", "output": "⠃⠇⠕⠉⠅â â ›â ‘â „â Ž" }, { "input": "blockages", "output": "⠃⠇⠕⠉⠅â â ›â ‘â Ž" }, { "input": "blockbuster", "output": "⠃⠇⠕⠉⠅⠃⠥⠌⠻" }, { "input": "blockbuster's", "output": "⠃⠇⠕⠉⠅⠃⠥⠌⠻⠄⠎" }, { "input": "blockbusters", "output": "⠃⠇⠕⠉⠅⠃⠥⠌⠻⠎" }, { "input": "blockbusting's", "output": "⠃⠇⠕⠉⠅⠃⠥⠌⠌⠄⠎" }, { "input": "blocked", "output": "⠃⠇⠕⠉⠅⠫" }, { "input": "blocker", "output": "⠃⠇⠕⠉⠅⠻" }, { "input": "blocker's", "output": "⠃⠇⠕⠉⠅⠻⠄⠎" }, { "input": "blockers", "output": "⠃⠇⠕⠉⠅⠻⠎" }, { "input": "blockhead", "output": "⠃⠇⠕⠉⠅⠓⠂⠙" }, { "input": "blockhead's", "output": "⠃⠇⠕⠉⠅⠓⠂⠙⠄⠎" }, { "input": "blockheads", "output": "⠃⠇⠕⠉⠅⠓⠂⠙⠎" }, { "input": "blockhouse", "output": "⠃⠇⠕⠉⠅⠓⠳⠎⠑" }, { "input": "blockhouse's", "output": "⠃⠇⠕⠉⠅⠓⠳⠎⠑⠄⠎" }, { "input": "blockhouses", "output": "⠃⠇⠕⠉⠅⠓⠳⠎⠑⠎" }, { "input": "blocking", "output": "⠃⠇⠕⠉⠅⠌" }, { "input": "blocks", "output": "⠃⠇⠕⠉⠅⠎" }, { "input": "blocs", "output": "⠃⠇⠕⠉⠎" }, { "input": "blog", "output": "⠃⠇⠕⠛" }, { "input": "blog's", "output": "⠃⠇⠕⠛⠄⠎" }, { "input": "blogged", "output": "⠃⠇⠕⠶⠫" }, { "input": "blogger", "output": "⠃⠇⠕⠶⠻" }, { "input": "blogger's", "output": "⠃⠇⠕⠶⠻⠄⠎" }, { "input": "bloggers", "output": "⠃⠇⠕⠶⠻⠎" }, { "input": "blogging", "output": "⠃⠇⠕⠶⠌" }, { "input": "blogs", "output": "⠃⠇⠕⠛⠎" }, { "input": "blond", "output": "⠃⠇⠕â â ™" }, { "input": "blond's", "output": "⠃⠇⠕â â ™â „â Ž" }, { "input": "blonde", "output": "⠃⠇⠕â â ™â ‘" }, { "input": "blonde's", "output": "⠃⠇⠕â â ™â ‘â „â Ž" }, { "input": "blonder", "output": "⠃⠇⠕â â ™â »" }, { "input": "blondes", "output": "⠃⠇⠕â â ™â ‘â Ž" }, { "input": "blondest", "output": "⠃⠇⠕â â ™â ‘â Œ" }, { "input": "blondish", "output": "⠃⠇⠕â â ™â Šâ ©" }, { "input": "blondness", "output": "⠃⠇⠕â â ™â °â Ž" }, { "input": "blondness's", "output": "⠃⠇⠕â â ™â °â Žâ „â Ž" }, { "input": "blonds", "output": "⠃⠇⠕â â ™â Ž" }, { "input": "blood", "output": "⠃⠇⠕⠕⠙" }, { "input": "blood's", "output": "⠃⠇⠕⠕⠙⠄⠎" }, { "input": "bloodbath", "output": "⠃⠇⠕⠕⠙⠃â â ¹" }, { "input": "bloodbath's", "output": "⠃⠇⠕⠕⠙⠃â â ¹â „â Ž" }, { "input": "bloodbaths", "output": "⠃⠇⠕⠕⠙⠃â â ¹â Ž" }, { "input": "bloodcurdling", "output": "⠃⠇⠕⠕⠙⠉⠥⠗⠙⠇⠌" }, { "input": "blooded", "output": "⠃⠇⠕⠕⠙⠫" }, { "input": "bloodhound", "output": "⠃⠇⠕⠕⠙⠓⠨⠙" }, { "input": "bloodhound's", "output": "⠃⠇⠕⠕⠙⠓⠨⠙⠄⠎" }, { "input": "bloodhounds", "output": "⠃⠇⠕⠕⠙⠓⠨⠙⠎" }, { "input": "bloodied", "output": "⠃⠇⠕⠕⠙⠊⠫" }, { "input": "bloodier", "output": "⠃⠇⠕⠕⠙⠊⠻" }, { "input": "bloodies", "output": "⠃⠇⠕⠕⠙⠊⠑⠎" }, { "input": "bloodiest", "output": "⠃⠇⠕⠕⠙⠊⠑⠌" }, { "input": "bloodiness", "output": "⠃⠇⠕⠕⠙⠊⠰⠎" }, { "input": "bloodiness's", "output": "⠃⠇⠕⠕⠙⠊⠰⠎⠄⠎" }, { "input": "blooding", "output": "⠃⠇⠕⠕⠙⠌" }, { "input": "bloodless", "output": "⠃⠇⠕⠕⠙⠨⠎" }, { "input": "bloodlessly", "output": "⠃⠇⠕⠕⠙⠨⠎⠇⠽" }, { "input": "bloodlessness", "output": "⠃⠇⠕⠕⠙⠨⠎⠰⠎" }, { "input": "bloodlessness's", "output": "⠃⠇⠕⠕⠙⠨⠎⠰⠎⠄⠎" }, { "input": "bloodletting's", "output": "⠃⠇⠕⠕⠙⠇⠑⠞⠞⠌⠄⠎" }, { "input": "bloodmobile", "output": "⠃⠇⠕⠕⠙â â •⠃⠊⠇⠑" }, { "input": "bloodmobile's", "output": "⠃⠇⠕⠕⠙â â •⠃⠊⠇⠑⠄⠎" }, { "input": "bloodmobiles", "output": "⠃⠇⠕⠕⠙â â •⠃⠊⠇⠑⠎" }, { "input": "bloods", "output": "⠃⠇⠕⠕⠙⠎" }, { "input": "bloodshed", "output": "⠃⠇⠕⠕⠙⠩⠫" }, { "input": "bloodshed's", "output": "⠃⠇⠕⠕⠙⠩⠫⠄⠎" }, { "input": "bloodshot", "output": "⠃⠇⠕⠕⠙⠩⠕⠞" }, { "input": "bloodstain", "output": "⠃⠇⠕⠕⠙⠌â â ”" }, { "input": "bloodstain's", "output": "⠃⠇⠕⠕⠙⠌â â ”â „â Ž" }, { "input": "bloodstained", "output": "⠃⠇⠕⠕⠙⠌â â ”â «" }, { "input": "bloodstains", "output": "⠃⠇⠕⠕⠙⠌â â ”â Ž" }, { "input": "bloodstock's", "output": "⠃⠇⠕⠕⠙⠌⠕⠉⠅⠄⠎" }, { "input": "bloodstream", "output": "⠃⠇⠕⠕⠙⠌⠗⠂â " }, { "input": "bloodstream's", "output": "⠃⠇⠕⠕⠙⠌⠗⠂â â „â Ž" }, { "input": "bloodstreams", "output": "⠃⠇⠕⠕⠙⠌⠗⠂â â Ž" }, { "input": "bloodsucker", "output": "⠃⠇⠕⠕⠙⠎⠥⠉⠅⠻" }, { "input": "bloodsucker's", "output": "⠃⠇⠕⠕⠙⠎⠥⠉⠅⠻⠄⠎" }, { "input": "bloodsuckers", "output": "⠃⠇⠕⠕⠙⠎⠥⠉⠅⠻⠎" }, { "input": "bloodsucking", "output": "⠃⠇⠕⠕⠙⠎⠥⠉⠅⠌" }, { "input": "bloodthirstier", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠻" }, { "input": "bloodthirstiest", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠑⠌" }, { "input": "bloodthirstily", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠇⠽" }, { "input": "bloodthirstiness", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠰⠎" }, { "input": "bloodthirstiness's", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠊⠰⠎⠄⠎" }, { "input": "bloodthirsty", "output": "⠃⠇⠕⠕⠙⠹⠊⠗⠌⠽" }, { "input": "bloody", "output": "⠃⠇⠕⠕⠙⠽" }, { "input": "bloodying", "output": "⠃⠇⠕⠕⠙⠽⠌" }, { "input": "bloom", "output": "⠃⠇⠕⠕â " }, { "input": "bloom's", "output": "⠃⠇⠕⠕â â „â Ž" }, { "input": "bloomed", "output": "⠃⠇⠕⠕â â «" }, { "input": "bloomer", "output": "⠃⠇⠕⠕â â »" }, { "input": "bloomer's", "output": "⠃⠇⠕⠕â â »â „â Ž" }, { "input": "bloomers", "output": "⠃⠇⠕⠕â â »â Ž" }, { "input": "blooming", "output": "⠃⠇⠕⠕â â Œ" }, { "input": "blooms", "output": "⠃⠇⠕⠕â â Ž" }, { "input": "bloop", "output": "⠃⠇⠕⠕â " }, { "input": "bloop's", "output": "⠃⠇⠕⠕â â „â Ž" }, { "input": "blooped", "output": "⠃⠇⠕⠕â â «" }, { "input": "blooper", "output": "⠃⠇⠕⠕â â »" }, { "input": "blooper's", "output": "⠃⠇⠕⠕â â »â „â Ž" }, { "input": "bloopers", "output": "⠃⠇⠕⠕â â »â Ž" }, { "input": "blooping", "output": "⠃⠇⠕⠕â â Œ" }, { "input": "bloops", "output": "⠃⠇⠕⠕â â Ž" }, { "input": "blossom", "output": "⠃⠇⠕⠎⠎⠕â " }, { "input": "blossom's", "output": "⠃⠇⠕⠎⠎⠕â â „â Ž" }, { "input": "blossomed", "output": "⠃⠇⠕⠎⠎⠕â â «" }, { "input": "blossoming", "output": "⠃⠇⠕⠎⠎⠕â â Œ" }, { "input": "blossoms", "output": "⠃⠇⠕⠎⠎⠕â â Ž" }, { "input": "blossomy", "output": "⠃⠇⠕⠎⠎⠕â â ½" }, { "input": "blot", "output": "⠃⠇⠕⠞" }, { "input": "blot's", "output": "⠃⠇⠕⠞⠄⠎" }, { "input": "blotch", "output": "⠃⠇⠕⠞⠡" }, { "input": "blotch's", "output": "⠃⠇⠕⠞⠡⠄⠎" }, { "input": "blotched", "output": "⠃⠇⠕⠞⠡⠫" }, { "input": "blotches", "output": "⠃⠇⠕⠞⠡⠑⠎" }, { "input": "blotchier", "output": "⠃⠇⠕⠞⠡⠊⠻" }, { "input": "blotchiest", "output": "⠃⠇⠕⠞⠡⠊⠑⠌" }, { "input": "blotching", "output": "⠃⠇⠕⠞⠡⠌" }, { "input": "blotchy", "output": "⠃⠇⠕⠞⠡⠽" }, { "input": "blots", "output": "⠃⠇⠕⠞⠎" }, { "input": "blotted", "output": "⠃⠇⠕⠞⠞⠫" }, { "input": "blotter", "output": "⠃⠇⠕⠞⠞⠻" }, { "input": "blotter's", "output": "⠃⠇⠕⠞⠞⠻⠄⠎" }, { "input": "blotters", "output": "⠃⠇⠕⠞⠞⠻⠎" }, { "input": "blotting", "output": "⠃⠇⠕⠞⠞⠌" }, { "input": "blouse", "output": "⠃⠇⠳⠎⠑" }, { "input": "blouse's", "output": "⠃⠇⠳⠎⠑⠄⠎" }, { "input": "bloused", "output": "⠃⠇⠳⠎⠫" }, { "input": "blouses", "output": "⠃⠇⠳⠎⠑⠎" }, { "input": "blousing", "output": "⠃⠇⠳⠎⠌" }, { "input": "blow", "output": "⠃⠇⠪" }, { "input": "blow's", "output": "⠃⠇⠪⠄⠎" }, { "input": "blower", "output": "⠃⠇⠪⠻" }, { "input": "blower's", "output": "⠃⠇⠪⠻⠄⠎" }, { "input": "blowers", "output": "⠃⠇⠪⠻⠎" }, { "input": "blowflies", "output": "⠃⠇⠪⠋⠇⠊⠑⠎" }, { "input": "blowfly", "output": "⠃⠇⠪⠋⠇⠽" }, { "input": "blowfly's", "output": "⠃⠇⠪⠋⠇⠽⠄⠎" }, { "input": "blowgun", "output": "⠃⠇⠪⠛⠥â " }, { "input": "blowgun's", "output": "⠃⠇⠪⠛⠥â â „â Ž" }, { "input": "blowguns", "output": "⠃⠇⠪⠛⠥â â Ž" }, { "input": "blowier", "output": "⠃⠇⠪⠊⠻" }, { "input": "blowiest", "output": "⠃⠇⠪⠊⠑⠌" }, { "input": "blowing", "output": "⠃⠇⠪⠌" }, { "input": "blown", "output": "⠃⠇⠪â " }, { "input": "blowout", "output": "⠃⠇⠪⠳⠞" }, { "input": "blowout's", "output": "⠃⠇⠪⠳⠞⠄⠎" }, { "input": "blowouts", "output": "⠃⠇⠪⠳⠞⠎" }, { "input": "blows", "output": "⠃⠇⠪⠎" }, { "input": "blowtorch", "output": "⠃⠇⠪⠞⠕⠗⠡" }, { "input": "blowtorch's", "output": "⠃⠇⠪⠞⠕⠗⠡⠄⠎" }, { "input": "blowtorches", "output": "⠃⠇⠪⠞⠕⠗⠡⠑⠎" }, { "input": "blowup", "output": "⠃⠇⠪⠥â " }, { "input": "blowup's", "output": "⠃⠇⠪⠥â â „â Ž" }, { "input": "blowups", "output": "⠃⠇⠪⠥â â Ž" }, { "input": "blowzier", "output": "⠃⠇⠪⠵⠊⠻" }, { "input": "blowziest", "output": "⠃⠇⠪⠵⠊⠑⠌" }, { "input": "blowzy", "output": "⠃⠇⠪⠵⠽" }, { "input": "blubber", "output": "⠃⠇⠥⠆⠻" }, { "input": "blubber's", "output": "⠃⠇⠥⠆⠻⠄⠎" }, { "input": "blubbered", "output": "⠃⠇⠥⠆⠻⠫" }, { "input": "blubbering", "output": "⠃⠇⠥⠆⠻⠌" }, { "input": "blubbers", "output": "⠃⠇⠥⠆⠻⠎" }, { "input": "blubbery", "output": "⠃⠇⠥⠆⠻⠽" }, { "input": "bludgeon", "output": "⠃⠇⠥⠙⠛⠑⠕â " }, { "input": "bludgeon's", "output": "⠃⠇⠥⠙⠛⠑⠕â â „â Ž" }, { "input": "bludgeoned", "output": "⠃⠇⠥⠙⠛⠑⠕â â «" }, { "input": "bludgeoning", "output": "⠃⠇⠥⠙⠛⠑⠕â â Œ" }, { "input": "bludgeons", "output": "⠃⠇⠥⠙⠛⠑⠕â â Ž" }, { "input": "blue", "output": "⠃⠇⠥⠑" }, { "input": "blue's", "output": "⠃⠇⠥⠑⠄⠎" }, { "input": "bluebell", "output": "⠃⠇⠥⠑⠃⠑⠇⠇" }, { "input": "bluebell's", "output": "⠃⠇⠥⠑⠃⠑⠇⠇⠄⠎" }, { "input": "bluebells", "output": "⠃⠇⠥⠑⠃⠑⠇⠇⠎" }, { "input": "blueberries", "output": "⠃⠇⠥⠑⠃⠻⠗⠊⠑⠎" }, { "input": "blueberry", "output": "⠃⠇⠥⠑⠃⠻⠗⠽" }, { "input": "blueberry's", "output": "⠃⠇⠥⠑⠃⠻⠗⠽⠄⠎" }, { "input": "bluebird", "output": "⠃⠇⠥⠑⠃⠊⠗⠙" }, { "input": "bluebird's", "output": "⠃⠇⠥⠑⠃⠊⠗⠙⠄⠎" }, { "input": "bluebirds", "output": "⠃⠇⠥⠑⠃⠊⠗⠙⠎" }, { "input": "bluebonnet", "output": "⠃⠇⠥⠑⠃⠕â â â ‘â ž" }, { "input": "bluebonnet's", "output": "⠃⠇⠥⠑⠃⠕â â â ‘â žâ „â Ž" }, { "input": "bluebonnets", "output": "⠃⠇⠥⠑⠃⠕â â â ‘â žâ Ž" }, { "input": "bluebottle", "output": "⠃⠇⠥⠑⠃⠕⠞⠞⠇⠑" }, { "input": "bluebottle's", "output": "⠃⠇⠥⠑⠃⠕⠞⠞⠇⠑⠄⠎" }, { "input": "bluebottles", "output": "⠃⠇⠥⠑⠃⠕⠞⠞⠇⠑⠎" }, { "input": "blued", "output": "⠃⠇⠥⠫" }, { "input": "bluefish", "output": "⠃⠇⠥⠑⠋⠊⠩" }, { "input": "bluefish's", "output": "⠃⠇⠥⠑⠋⠊⠩⠄⠎" }, { "input": "bluefishes", "output": "⠃⠇⠥⠑⠋⠊⠩⠑⠎" }, { "input": "bluegill", "output": "⠃⠇⠥⠑⠛⠊⠇⠇" }, { "input": "bluegill's", "output": "⠃⠇⠥⠑⠛⠊⠇⠇⠄⠎" }, { "input": "bluegills", "output": "⠃⠇⠥⠑⠛⠊⠇⠇⠎" }, { "input": "bluegrass", "output": "⠃⠇⠥⠑⠛⠗â â Žâ Ž" }, { "input": "bluegrass's", "output": "⠃⠇⠥⠑⠛⠗â â Žâ Žâ „â Ž" }, { "input": "bluejacket", "output": "⠃⠇⠥⠑⠚â â ‰â …â ‘â ž" }, { "input": "bluejacket's", "output": "⠃⠇⠥⠑⠚â â ‰â …â ‘â žâ „â Ž" }, { "input": "bluejackets", "output": "⠃⠇⠥⠑⠚â â ‰â …â ‘â žâ Ž" }, { "input": "bluejeans", "output": "⠃⠇⠥⠑⠚⠂â â Ž" }, { "input": "bluejeans's", "output": "⠃⠇⠥⠑⠚⠂â â Žâ „â Ž" }, { "input": "blueness", "output": "⠃⠇⠥⠑⠰⠎" }, { "input": "blueness's", "output": "⠃⠇⠥⠑⠰⠎⠄⠎" }, { "input": "bluenose", "output": "⠃⠇⠥⠑â â •â Žâ ‘" }, { "input": "bluenose's", "output": "⠃⠇⠥⠑â â •â Žâ ‘â „â Ž" }, { "input": "bluenoses", "output": "⠃⠇⠥⠑â â •â Žâ ‘â Ž" }, { "input": "bluepoint", "output": "⠃⠇⠥⠑â â •⠔⠞" }, { "input": "bluepoint's", "output": "⠃⠇⠥⠑â â •⠔⠞⠄⠎" }, { "input": "bluepoints", "output": "⠃⠇⠥⠑â â •⠔⠞⠎" }, { "input": "blueprint", "output": "⠃⠇⠥⠑â â —⠔⠞" }, { "input": "blueprint's", "output": "⠃⠇⠥⠑â â —⠔⠞⠄⠎" }, { "input": "blueprinted", "output": "⠃⠇⠥⠑â â —⠔⠞⠫" }, { "input": "blueprinting", "output": "⠃⠇⠥⠑â â —⠔⠞⠌" }, { "input": "blueprints", "output": "⠃⠇⠥⠑â â —⠔⠞⠎" }, { "input": "bluer", "output": "⠃⠇⠥⠻" }, { "input": "blues", "output": "⠃⠇⠥⠑⠎" }, { "input": "bluesier", "output": "⠃⠇⠥⠑⠎⠊⠻" }, { "input": "bluesiest", "output": "⠃⠇⠥⠑⠎⠊⠑⠌" }, { "input": "bluest", "output": "⠃⠇⠥⠑⠌" }, { "input": "bluet", "output": "⠃⠇⠥⠑⠞" }, { "input": "bluet's", "output": "⠃⠇⠥⠑⠞⠄⠎" }, { "input": "bluets", "output": "⠃⠇⠥⠑⠞⠎" }, { "input": "bluff", "output": "⠃⠇⠥⠋⠋" }, { "input": "bluff's", "output": "⠃⠇⠥⠋⠋⠄⠎" }, { "input": "bluffed", "output": "⠃⠇⠥⠖⠫" }, { "input": "bluffer", "output": "⠃⠇⠥⠖⠻" }, { "input": "bluffer's", "output": "⠃⠇⠥⠖⠻⠄⠎" }, { "input": "bluffers", "output": "⠃⠇⠥⠖⠻⠎" }, { "input": "bluffest", "output": "⠃⠇⠥⠖⠑⠌" }, { "input": "bluffing", "output": "⠃⠇⠥⠖⠌" }, { "input": "bluffly", "output": "⠃⠇⠥⠖⠇⠽" }, { "input": "bluffness", "output": "⠃⠇⠥⠖⠰⠎" }, { "input": "bluffness's", "output": "⠃⠇⠥⠖⠰⠎⠄⠎" }, { "input": "bluffs", "output": "⠃⠇⠥⠖⠎" }, { "input": "bluing", "output": "⠃⠇⠥⠌" }, { "input": "bluing's", "output": "⠃⠇⠥⠌⠄⠎" }, { "input": "bluish", "output": "⠃⠇⠥⠊⠩" }, { "input": "blunder", "output": "⠃⠇â â ¥" }, { "input": "blunder's", "output": "⠃⠇â â ¥â „â Ž" }, { "input": "blunderbuss", "output": "⠃⠇â â ¥â ƒâ ¥â Žâ Ž" }, { "input": "blunderbuss's", "output": "⠃⠇â â ¥â ƒâ ¥â Žâ Žâ „â Ž" }, { "input": "blunderbusses", "output": "⠃⠇â â ¥â ƒâ ¥â Žâ Žâ ‘â Ž" }, { "input": "blundered", "output": "⠃⠇â â ¥â «" }, { "input": "blunderer", "output": "⠃⠇â â ¥â »" }, { "input": "blunderer's", "output": "⠃⠇â â ¥â »â „â Ž" }, { "input": "blunderers", "output": "⠃⠇â â ¥â »â Ž" }, { "input": "blundering", "output": "⠃⠇â â ¥â Œ" }, { "input": "blunders", "output": "⠃⠇â â ¥â Ž" }, { "input": "blunt", "output": "⠃⠇⠥â â ž" }, { "input": "blunted", "output": "⠃⠇⠥â â žâ «" }, { "input": "blunter", "output": "⠃⠇⠥â â žâ »" }, { "input": "bluntest", "output": "⠃⠇⠥â â žâ ‘â Œ" }, { "input": "blunting", "output": "⠃⠇⠥â â žâ Œ" }, { "input": "bluntly", "output": "⠃⠇⠥â â žâ ‡â ½" }, { "input": "bluntness", "output": "⠃⠇⠥â â žâ °â Ž" }, { "input": "bluntness's", "output": "⠃⠇⠥â â žâ °â Žâ „â Ž" }, { "input": "blunts", "output": "⠃⠇⠥â â žâ Ž" }, { "input": "blur", "output": "⠃⠇⠥⠗" }, { "input": "blur's", "output": "⠃⠇⠥⠗⠄⠎" }, { "input": "blurb", "output": "⠃⠇⠥⠗⠃" }, { "input": "blurb's", "output": "⠃⠇⠥⠗⠃⠄⠎" }, { "input": "blurbs", "output": "⠃⠇⠥⠗⠃⠎" }, { "input": "blurred", "output": "⠃⠇⠥⠗⠗⠫" }, { "input": "blurrier", "output": "⠃⠇⠥⠗⠗⠊⠻" }, { "input": "blurriest", "output": "⠃⠇⠥⠗⠗⠊⠑⠌" }, { "input": "blurriness", "output": "⠃⠇⠥⠗⠗⠊⠰⠎" }, { "input": "blurriness's", "output": "⠃⠇⠥⠗⠗⠊⠰⠎⠄⠎" }, { "input": "blurring", "output": "⠃⠇⠥⠗⠗⠌" }, { "input": "blurry", "output": "⠃⠇⠥⠗⠗⠽" }, { "input": "blurs", "output": "⠃⠇⠥⠗⠎" }, { "input": "blurt", "output": "⠃⠇⠥⠗⠞" }, { "input": "blurted", "output": "⠃⠇⠥⠗⠞⠫" }, { "input": "blurting", "output": "⠃⠇⠥⠗⠞⠌" }, { "input": "blurts", "output": "⠃⠇⠥⠗⠞⠎" }, { "input": "blush", "output": "⠃⠇⠥⠩" }, { "input": "blush's", "output": "⠃⠇⠥⠩⠄⠎" }, { "input": "blushed", "output": "⠃⠇⠥⠩⠫" }, { "input": "blusher", "output": "⠃⠇⠥⠩⠻" }, { "input": "blusher's", "output": "⠃⠇⠥⠩⠻⠄⠎" }, { "input": "blushers", "output": "⠃⠇⠥⠩⠻⠎" }, { "input": "blushes", "output": "⠃⠇⠥⠩⠑⠎" }, { "input": "blushing", "output": "⠃⠇⠥⠩⠌" }, { "input": "bluster", "output": "⠃⠇⠥⠌⠻" }, { "input": "bluster's", "output": "⠃⠇⠥⠌⠻⠄⠎" }, { "input": "blustered", "output": "⠃⠇⠥⠌⠻⠫" }, { "input": "blusterer", "output": "⠃⠇⠥⠌⠻⠻" }, { "input": "blusterer's", "output": "⠃⠇⠥⠌⠻⠻⠄⠎" }, { "input": "blusterers", "output": "⠃⠇⠥⠌⠻⠻⠎" }, { "input": "blustering", "output": "⠃⠇⠥⠌⠻⠌" }, { "input": "blusterous", "output": "⠃⠇⠥⠌⠻⠳⠎" }, { "input": "blusters", "output": "⠃⠇⠥⠌⠻⠎" }, { "input": "blustery", "output": "⠃⠇⠥⠌⠻⠽" }, { "input": "boa", "output": "⠃⠕â " }, { "input": "boa's", "output": "⠃⠕â â „â Ž" }, { "input": "boar", "output": "⠃⠕⠜" }, { "input": "boar's", "output": "⠃⠕⠜⠄⠎" }, { "input": "board", "output": "⠃⠕⠜⠙" }, { "input": "board's", "output": "⠃⠕⠜⠙⠄⠎" }, { "input": "boarded", "output": "⠃⠕⠜⠙⠫" }, { "input": "boarder", "output": "⠃⠕⠜⠙⠻" }, { "input": "boarder's", "output": "⠃⠕⠜⠙⠻⠄⠎" }, { "input": "boarders", "output": "⠃⠕⠜⠙⠻⠎" }, { "input": "boarding", "output": "⠃⠕⠜⠙⠌" }, { "input": "boarding's", "output": "⠃⠕⠜⠙⠌⠄⠎" }, { "input": "boardinghouse", "output": "⠃⠕⠜⠙⠌⠓⠳⠎⠑" }, { "input": "boardinghouse's", "output": "⠃⠕⠜⠙⠌⠓⠳⠎⠑⠄⠎" }, { "input": "boardinghouses", "output": "⠃⠕⠜⠙⠌⠓⠳⠎⠑⠎" }, { "input": "boardroom", "output": "⠃⠕⠜⠙⠗⠕⠕â " }, { "input": "boardroom's", "output": "⠃⠕⠜⠙⠗⠕⠕â â „â Ž" }, { "input": "boardrooms", "output": "⠃⠕⠜⠙⠗⠕⠕â â Ž" }, { "input": "boards", "output": "⠃⠕⠜⠙⠎" }, { "input": "boardwalk", "output": "⠃⠕⠜⠙⠺â â ‡â …" }, { "input": "boardwalk's", "output": "⠃⠕⠜⠙⠺â â ‡â …â „â Ž" }, { "input": "boardwalks", "output": "⠃⠕⠜⠙⠺â â ‡â …â Ž" }, { "input": "boars", "output": "⠃⠕⠜⠎" }, { "input": "boas", "output": "⠃⠕â â Ž" }, { "input": "boast", "output": "⠃⠕â â Œ" }, { "input": "boast's", "output": "⠃⠕â â Œâ „â Ž" }, { "input": "boasted", "output": "⠃⠕â â Œâ «" }, { "input": "boaster", "output": "⠃⠕â â Œâ »" }, { "input": "boaster's", "output": "⠃⠕â â Œâ »â „â Ž" }, { "input": "boasters", "output": "⠃⠕â â Œâ »â Ž" }, { "input": "boastful", "output": "⠃⠕â â Œâ °â ‡" }, { "input": "boastfully", "output": "⠃⠕â â Œâ °â ‡â ‡â ½" }, { "input": "boastfulness", "output": "⠃⠕â â Œâ °â ‡â °â Ž" }, { "input": "boastfulness's", "output": "⠃⠕â â Œâ °â ‡â °â Žâ „â Ž" }, { "input": "boasting", "output": "⠃⠕â â Œâ Œ" }, { "input": "boasts", "output": "⠃⠕â â Œâ Ž" }, { "input": "boat", "output": "⠃⠕â â ž" }, { "input": "boat's", "output": "⠃⠕â â žâ „â Ž" }, { "input": "boated", "output": "⠃⠕â â žâ «" }, { "input": "boater", "output": "⠃⠕â â žâ »" }, { "input": "boater's", "output": "⠃⠕â â žâ »â „â Ž" }, { "input": "boaters", "output": "⠃⠕â â žâ »â Ž" }, { "input": "boating", "output": "⠃⠕â â žâ Œ" }, { "input": "boating's", "output": "⠃⠕â â žâ Œâ „â Ž" }, { "input": "boatman", "output": "⠃⠕â â žâ â â " }, { "input": "boatman's", "output": "⠃⠕â â žâ â â â „â Ž" }, { "input": "boatmen", "output": "⠃⠕â â žâ â ¢" }, { "input": "boats", "output": "⠃⠕â â žâ Ž" }, { "input": "boatswain", "output": "⠃⠕â â žâ Žâ ºâ â ”" }, { "input": "boatswain's", "output": "⠃⠕â â žâ Žâ ºâ â ”â „â Ž" }, { "input": "boatswains", "output": "⠃⠕â â žâ Žâ ºâ â ”â Ž" }, { "input": "bob", "output": "⠃⠕⠃" }, { "input": "bob's", "output": "⠃⠕⠃⠄⠎" }, { "input": "bobbed", "output": "⠃⠕⠆⠫" }, { "input": "bobbies", "output": "⠃⠕⠆⠊⠑⠎" }, { "input": "bobbin", "output": "⠃⠕⠆⠔" }, { "input": "bobbin's", "output": "⠃⠕⠆⠔⠄⠎" }, { "input": "bobbing", "output": "⠃⠕⠆⠌" }, { "input": "bobbins", "output": "⠃⠕⠆⠔⠎" }, { "input": "bobble", "output": "⠃⠕⠃⠼" }, { "input": "bobble's", "output": "⠃⠕⠃⠼⠄⠎" }, { "input": "bobbled", "output": "⠃⠕⠃⠼⠙" }, { "input": "bobbles", "output": "⠃⠕⠃⠼⠎" }, { "input": "bobbling", "output": "⠃⠕⠆⠇⠌" }, { "input": "bobby", "output": "⠃⠕⠆⠽" }, { "input": "bobby's", "output": "⠃⠕⠆⠽⠄⠎" }, { "input": "bobbysoxer", "output": "⠃⠕⠆⠽⠎⠕⠭⠻" }, { "input": "bobbysoxer's", "output": "⠃⠕⠆⠽⠎⠕⠭⠻⠄⠎" }, { "input": "bobbysoxers", "output": "⠃⠕⠆⠽⠎⠕⠭⠻⠎" }, { "input": "bobcat", "output": "⠃⠕⠃⠉â â ž" }, { "input": "bobcat's", "output": "⠃⠕⠃⠉â â žâ „â Ž" }, { "input": "bobcats", "output": "⠃⠕⠃⠉â â žâ Ž" }, { "input": "bobolink", "output": "⠃⠕⠃⠕⠇⠔⠅" }, { "input": "bobolink's", "output": "⠃⠕⠃⠕⠇⠔⠅⠄⠎" }, { "input": "bobolinks", "output": "⠃⠕⠃⠕⠇⠔⠅⠎" }, { "input": "bobs", "output": "⠃⠕⠃⠎" }, { "input": "bobsled", "output": "⠃⠕⠃⠎⠇⠫" }, { "input": "bobsled's", "output": "⠃⠕⠃⠎⠇⠫⠄⠎" }, { "input": "bobsledded", "output": "⠃⠕⠃⠎⠇⠫⠙⠫" }, { "input": "bobsledder", "output": "⠃⠕⠃⠎⠇⠫⠙⠻" }, { "input": "bobsledder's", "output": "⠃⠕⠃⠎⠇⠫⠙⠻⠄⠎" }, { "input": "bobsledders", "output": "⠃⠕⠃⠎⠇⠫⠙⠻⠎" }, { "input": "bobsledding", "output": "⠃⠕⠃⠎⠇⠫⠙⠌" }, { "input": "bobsleds", "output": "⠃⠕⠃⠎⠇⠫⠎" }, { "input": "bobtail", "output": "⠃⠕⠃⠞â â Šâ ‡" }, { "input": "bobtail's", "output": "⠃⠕⠃⠞â â Šâ ‡â „â Ž" }, { "input": "bobtails", "output": "⠃⠕⠃⠞â â Šâ ‡â Ž" }, { "input": "bobwhite", "output": "⠃⠕⠃⠱⠊⠞⠑" }, { "input": "bobwhite's", "output": "⠃⠕⠃⠱⠊⠞⠑⠄⠎" }, { "input": "bobwhites", "output": "⠃⠕⠃⠱⠊⠞⠑⠎" }, { "input": "boccie", "output": "⠃⠕⠒⠊⠑" }, { "input": "boccie's", "output": "⠃⠕⠒⠊⠑⠄⠎" }, { "input": "bock", "output": "⠃⠕⠉⠅" }, { "input": "bock's", "output": "⠃⠕⠉⠅⠄⠎" }, { "input": "bode", "output": "⠃⠕⠙⠑" }, { "input": "boded", "output": "⠃⠕⠙⠫" }, { "input": "bodega", "output": "⠃⠕⠙⠑⠛â " }, { "input": "bodega's", "output": "⠃⠕⠙⠑⠛â â „â Ž" }, { "input": "bodegas", "output": "⠃⠕⠙⠑⠛â â Ž" }, { "input": "bodes", "output": "⠃⠕⠙⠑⠎" }, { "input": "bodice", "output": "⠃⠕⠙⠊⠉⠑" }, { "input": "bodice's", "output": "⠃⠕⠙⠊⠉⠑⠄⠎" }, { "input": "bodices", "output": "⠃⠕⠙⠊⠉⠑⠎" }, { "input": "bodied", "output": "⠃⠕⠙⠊⠫" }, { "input": "bodies", "output": "⠃⠕⠙⠊⠑⠎" }, { "input": "bodily", "output": "⠃⠕⠙⠊⠇⠽" }, { "input": "boding", "output": "⠃⠕⠙⠌" }, { "input": "bodkin", "output": "⠃⠕⠙⠅⠔" }, { "input": "bodkin's", "output": "⠃⠕⠙⠅⠔⠄⠎" }, { "input": "bodkins", "output": "⠃⠕⠙⠅⠔⠎" }, { "input": "body", "output": "⠃⠕⠙⠽" }, { "input": "body's", "output": "⠃⠕⠙⠽⠄⠎" }, { "input": "bodybuilder", "output": "⠃⠕⠙⠽⠃⠥⠊⠇⠙⠻" }, { "input": "bodybuilder's", "output": "⠃⠕⠙⠽⠃⠥⠊⠇⠙⠻⠄⠎" }, { "input": "bodybuilders", "output": "⠃⠕⠙⠽⠃⠥⠊⠇⠙⠻⠎" }, { "input": "bodybuilding", "output": "⠃⠕⠙⠽⠃⠥⠊⠇⠙⠌" }, { "input": "bodybuilding's", "output": "⠃⠕⠙⠽⠃⠥⠊⠇⠙⠌⠄⠎" }, { "input": "bodyguard", "output": "⠃⠕⠙⠽⠛⠥⠜⠙" }, { "input": "bodyguard's", "output": "⠃⠕⠙⠽⠛⠥⠜⠙⠄⠎" }, { "input": "bodyguards", "output": "⠃⠕⠙⠽⠛⠥⠜⠙⠎" }, { "input": "bodywork", "output": "⠃⠕⠙⠽â â º" }, { "input": "bodywork's", "output": "⠃⠕⠙⠽â â ºâ „â Ž" }, { "input": "boffo", "output": "⠃⠷⠋⠕" }, { "input": "bog", "output": "⠃⠕⠛" }, { "input": "bog's", "output": "⠃⠕⠛⠄⠎" }, { "input": "bogey", "output": "⠃⠕⠛⠑⠽" }, { "input": "bogey's", "output": "⠃⠕⠛⠑⠽⠄⠎" }, { "input": "bogeyed", "output": "⠃⠕⠛⠑⠽⠫" }, { "input": "bogeying", "output": "⠃⠕⠛⠑⠽⠌" }, { "input": "bogeyman", "output": "⠃⠕⠛⠑⠽â â â " }, { "input": "bogeyman's", "output": "⠃⠕⠛⠑⠽â â â â „â Ž" }, { "input": "bogeymen", "output": "⠃⠕⠛⠑⠽â â ¢" }, { "input": "bogeys", "output": "⠃⠕⠛⠑⠽⠎" }, { "input": "bogged", "output": "⠃⠕⠶⠫" }, { "input": "boggier", "output": "⠃⠕⠶⠊⠻" }, { "input": "boggiest", "output": "⠃⠕⠶⠊⠑⠌" }, { "input": "bogging", "output": "⠃⠕⠶⠌" }, { "input": "boggle", "output": "⠃⠕⠶⠇⠑" }, { "input": "boggled", "output": "⠃⠕⠶⠇⠫" }, { "input": "boggles", "output": "⠃⠕⠶⠇⠑⠎" }, { "input": "boggling", "output": "⠃⠕⠶⠇⠌" }, { "input": "boggy", "output": "⠃⠕⠶⠽" }, { "input": "bogie", "output": "⠃⠕⠛⠊⠑" }, { "input": "bogie's", "output": "⠃⠕⠛⠊⠑⠄⠎" }, { "input": "bogies", "output": "⠃⠕⠛⠊⠑⠎" }, { "input": "bogs", "output": "⠃⠕⠛⠎" }, { "input": "bogus", "output": "⠃⠕⠛⠥⠎" }, { "input": "bogyman", "output": "⠃⠕⠛⠽â â â " }, { "input": "bogyman's", "output": "⠃⠕⠛⠽â â â â „â Ž" }, { "input": "bogymen", "output": "⠃⠕⠛⠽â â ¢" }, { "input": "bohemian", "output": "⠃⠕⠓⠑â â Šâ â " }, { "input": "bohemian's", "output": "⠃⠕⠓⠑â â Šâ â â „â Ž" }, { "input": "bohemianism", "output": "⠃⠕⠓⠑â â Šâ â â Šâ Žâ " }, { "input": "bohemianism's", "output": "⠃⠕⠓⠑â â Šâ â â Šâ Žâ â „â Ž" }, { "input": "bohemians", "output": "⠃⠕⠓⠑â â Šâ â â Ž" }, { "input": "boil", "output": "⠃⠕⠊⠇" }, { "input": "boil's", "output": "⠃⠕⠊⠇⠄⠎" }, { "input": "boiled", "output": "⠃⠕⠊⠇⠫" }, { "input": "boiler", "output": "⠃⠕⠊⠇⠻" }, { "input": "boiler's", "output": "⠃⠕⠊⠇⠻⠄⠎" }, { "input": "boilermaker", "output": "⠃⠕⠊⠇⠻â â â …â »" }, { "input": "boilermaker's", "output": "⠃⠕⠊⠇⠻â â â …⠻⠄⠎" }, { "input": "boilermakers", "output": "⠃⠕⠊⠇⠻â â â …⠻⠎" }, { "input": "boilerplate", "output": "⠃⠕⠊⠇⠻â â ‡â â žâ ‘" }, { "input": "boilerplate's", "output": "⠃⠕⠊⠇⠻â â ‡â â žâ ‘â „â Ž" }, { "input": "boilers", "output": "⠃⠕⠊⠇⠻⠎" }, { "input": "boiling", "output": "⠃⠕⠊⠇⠌" }, { "input": "boilings", "output": "⠃⠕⠊⠇⠌⠎" }, { "input": "boils", "output": "⠃⠕⠊⠇⠎" }, { "input": "boisterous", "output": "⠃⠕⠊⠌⠻⠳⠎" }, { "input": "boisterously", "output": "⠃⠕⠊⠌⠻⠳⠎⠇⠽" }, { "input": "boisterousness", "output": "⠃⠕⠊⠌⠻⠳⠎⠰⠎" }, { "input": "boisterousness's", "output": "⠃⠕⠊⠌⠻⠳⠎⠰⠎⠄⠎" }, { "input": "bola", "output": "⠃⠕⠇â " }, { "input": "bola's", "output": "⠃⠕⠇â â „â Ž" }, { "input": "bolas", "output": "⠃⠕⠇â â Ž" }, { "input": "bold", "output": "⠃⠕⠇⠙" }, { "input": "bolder", "output": "⠃⠕⠇⠙⠻" }, { "input": "boldest", "output": "⠃⠕⠇⠙⠑⠌" }, { "input": "boldface", "output": "⠃⠕⠇⠙⠋â â ‰â ‘" }, { "input": "boldface's", "output": "⠃⠕⠇⠙⠋â â ‰â ‘â „â Ž" }, { "input": "boldfaced", "output": "⠃⠕⠇⠙⠋â â ‰â «" }, { "input": "boldly", "output": "⠃⠕⠇⠙⠇⠽" }, { "input": "boldness", "output": "⠃⠕⠇⠙⠰⠎" }, { "input": "boldness's", "output": "⠃⠕⠇⠙⠰⠎⠄⠎" }, { "input": "bole", "output": "⠃⠕⠇⠑" }, { "input": "bole's", "output": "⠃⠕⠇⠑⠄⠎" }, { "input": "bolero", "output": "⠃⠕⠇⠻⠕" }, { "input": "bolero's", "output": "⠃⠕⠇⠻⠕⠄⠎" }, { "input": "boleros", "output": "⠃⠕⠇⠻⠕⠎" }, { "input": "boles", "output": "⠃⠕⠇⠑⠎" }, { "input": "bolivar", "output": "⠃⠕⠇⠊⠧⠜" }, { "input": "bolivar's", "output": "⠃⠕⠇⠊⠧⠜⠄⠎" }, { "input": "bolivares", "output": "⠃⠕⠇⠊⠧⠜⠑⠎" }, { "input": "bolivars", "output": "⠃⠕⠇⠊⠧⠜⠎" }, { "input": "boll", "output": "⠃⠕⠇⠇" }, { "input": "boll's", "output": "⠃⠕⠇⠇⠄⠎" }, { "input": "bollix", "output": "⠃⠕⠇⠇⠊⠭" }, { "input": "bollix's", "output": "⠃⠕⠇⠇⠊⠭⠄⠎" }, { "input": "bollixed", "output": "⠃⠕⠇⠇⠊⠭⠫" }, { "input": "bollixes", "output": "⠃⠕⠇⠇⠊⠭⠑⠎" }, { "input": "bollixing", "output": "⠃⠕⠇⠇⠊⠭⠌" }, { "input": "bolls", "output": "⠃⠕⠇⠇⠎" }, { "input": "bologna", "output": "⠃⠕⠇⠕⠛â â " }, { "input": "bologna's", "output": "⠃⠕⠇⠕⠛â â â „â Ž" }, { "input": "bolster", "output": "⠃⠕⠇⠌⠻" }, { "input": "bolster's", "output": "⠃⠕⠇⠌⠻⠄⠎" }, { "input": "bolstered", "output": "⠃⠕⠇⠌⠻⠫" }, { "input": "bolstering", "output": "⠃⠕⠇⠌⠻⠌" }, { "input": "bolsters", "output": "⠃⠕⠇⠌⠻⠎" }, { "input": "bolt", "output": "⠃⠕⠇⠞" }, { "input": "bolt's", "output": "⠃⠕⠇⠞⠄⠎" }, { "input": "bolted", "output": "⠃⠕⠇⠞⠫" }, { "input": "bolting", "output": "⠃⠕⠇⠞⠌" }, { "input": "bolts", "output": "⠃⠕⠇⠞⠎" }, { "input": "bolus", "output": "⠃⠕⠇⠥⠎" }, { "input": "bolus's", "output": "⠃⠕⠇⠥⠎⠄⠎" }, { "input": "boluses", "output": "⠃⠕⠇⠥⠎⠑⠎" }, { "input": "bomb", "output": "⠃⠕â â ƒ" }, { "input": "bomb's", "output": "⠃⠕â â ƒâ „â Ž" }, { "input": "bombard", "output": "⠃⠕â â ƒâ œâ ™" }, { "input": "bombarded", "output": "⠃⠕â â ƒâ œâ ™â «" }, { "input": "bombardier", "output": "⠃⠕â â ƒâ œâ ™â Šâ »" }, { "input": "bombardier's", "output": "⠃⠕â â ƒâ œâ ™â Šâ »â „â Ž" }, { "input": "bombardiers", "output": "⠃⠕â â ƒâ œâ ™â Šâ »â Ž" }, { "input": "bombarding", "output": "⠃⠕â â ƒâ œâ ™â Œ" }, { "input": "bombardment", "output": "⠃⠕â â ƒâ œâ ™â °â ž" }, { "input": "bombardment's", "output": "⠃⠕â â ƒâ œâ ™â °â žâ „â Ž" }, { "input": "bombardments", "output": "⠃⠕â â ƒâ œâ ™â °â žâ Ž" }, { "input": "bombards", "output": "⠃⠕â â ƒâ œâ ™â Ž" }, { "input": "bombast", "output": "⠃⠕â â ƒâ â Œ" }, { "input": "bombast's", "output": "⠃⠕â â ƒâ â Œâ „â Ž" }, { "input": "bombastic", "output": "⠃⠕â â ƒâ â Œâ Šâ ‰" }, { "input": "bombastically", "output": "⠃⠕â â ƒâ â Œâ Šâ ‰â  â ½" }, { "input": "bombed", "output": "⠃⠕â â ƒâ «" }, { "input": "bomber", "output": "⠃⠕â â ƒâ »" }, { "input": "bomber's", "output": "⠃⠕â â ƒâ »â „â Ž" }, { "input": "bombers", "output": "⠃⠕â â ƒâ »â Ž" }, { "input": "bombing", "output": "⠃⠕â â ƒâ Œ" }, { "input": "bombings", "output": "⠃⠕â â ƒâ Œâ Ž" }, { "input": "bombproof", "output": "⠃⠕â â ƒâ â —â •â ·" }, { "input": "bombs", "output": "⠃⠕â â ƒâ Ž" }, { "input": "bombshell", "output": "⠃⠕â â ƒâ ©â ‘⠇⠇" }, { "input": "bombshell's", "output": "⠃⠕â â ƒâ ©â ‘⠇⠇⠄⠎" }, { "input": "bombshells", "output": "⠃⠕â â ƒâ ©â ‘⠇⠇⠎" }, { "input": "bonanza", "output": "⠃⠕â â â â µâ " }, { "input": "bonanza's", "output": "⠃⠕â â â â µâ â „â Ž" }, { "input": "bonanzas", "output": "⠃⠕â â â â µâ â Ž" }, { "input": "bonbon", "output": "⠃⠕â â ƒâ •â " }, { "input": "bonbon's", "output": "⠃⠕â â ƒâ •â â „â Ž" }, { "input": "bonbons", "output": "⠃⠕â â ƒâ •â â Ž" }, { "input": "bond", "output": "⠃⠕â â ™" }, { "input": "bond's", "output": "⠃⠕â â ™â „â Ž" }, { "input": "bondage", "output": "⠃⠕â â ™â â ›â ‘" }, { "input": "bondage's", "output": "⠃⠕â â ™â â ›â ‘â „â Ž" }, { "input": "bonded", "output": "⠃⠕â â ™â «" }, { "input": "bonding", "output": "⠃⠕â â ™â Œ" }, { "input": "bonding's", "output": "⠃⠕â â ™â Œâ „â Ž" }, { "input": "bondman", "output": "⠃⠕â â ™â â â " }, { "input": "bondman's", "output": "⠃⠕â â ™â â â â „â Ž" }, { "input": "bondmen", "output": "⠃⠕â â ™â â ¢" }, { "input": "bonds", "output": "⠃⠕â â ™â Ž" }, { "input": "bondsman", "output": "⠃⠕â â ™â Žâ â â " }, { "input": "bondsman's", "output": "⠃⠕â â ™â Žâ â â â „â Ž" }, { "input": "bondsmen", "output": "⠃⠕â â ™â Žâ â ¢" }, { "input": "bondwoman", "output": "⠃⠕â â ™â ºâ •â â â " }, { "input": "bondwoman's", "output": "⠃⠕â â ™â ºâ •â â â â „â Ž" }, { "input": "bondwomen", "output": "⠃⠕â â ™â ºâ •â â ¢" }, { "input": "bone", "output": "â ƒâ â •" }, { "input": "bone's", "output": "â ƒâ â •â „â Ž" }, { "input": "boned", "output": "⠃⠕â â «" }, { "input": "bonehead", "output": "â ƒâ â •â “â ‚â ™" }, { "input": "bonehead's", "output": "â ƒâ â •⠓⠂⠙⠄⠎" }, { "input": "boneheaded", "output": "â ƒâ â •⠓⠂⠙⠫" }, { "input": "boneheads", "output": "â ƒâ â •⠓⠂⠙⠎" }, { "input": "boneless", "output": "â ƒâ â •⠨⠎" }, { "input": "boner", "output": "⠃⠕â â »" }, { "input": "boner's", "output": "⠃⠕â â »â „â Ž" }, { "input": "boners", "output": "⠃⠕â â »â Ž" }, { "input": "bones", "output": "â ƒâ â •â Ž" }, { "input": "bonfire", "output": "⠃⠕â â ‹â Šâ —â ‘" }, { "input": "bonfire's", "output": "⠃⠕â â ‹â Šâ —â ‘â „â Ž" }, { "input": "bonfires", "output": "⠃⠕â â ‹â Šâ —â ‘â Ž" }, { "input": "bong", "output": "⠃⠰⠛" }, { "input": "bong's", "output": "⠃⠰⠛⠄⠎" }, { "input": "bonged", "output": "⠃⠰⠛⠫" }, { "input": "bonging", "output": "⠃⠰⠛⠌" }, { "input": "bongo", "output": "⠃⠰⠛⠕" }, { "input": "bongo's", "output": "⠃⠰⠛⠕⠄⠎" }, { "input": "bongos", "output": "⠃⠰⠛⠕⠎" }, { "input": "bongs", "output": "⠃⠰⠛⠎" }, { "input": "bonhomie's", "output": "⠃⠕â â “â •â â Šâ ‘â „â Ž" }, { "input": "bonier", "output": "⠃⠕â â Šâ »" }, { "input": "boniest", "output": "⠃⠕â â Šâ ‘â Œ" }, { "input": "boniness", "output": "⠃⠕â â Šâ °â Ž" }, { "input": "boniness's", "output": "⠃⠕â â Šâ °â Žâ „â Ž" }, { "input": "boning", "output": "⠃⠕â â Œ" }, { "input": "bonito", "output": "⠃⠕â â Šâ žâ •" }, { "input": "bonito's", "output": "⠃⠕â â Šâ žâ •â „â Ž" }, { "input": "bonitos", "output": "⠃⠕â â Šâ žâ •â Ž" }, { "input": "bonkers", "output": "⠃⠕â â …⠻⠎" }, { "input": "bonnet", "output": "⠃⠕â â â ‘â ž" }, { "input": "bonnet's", "output": "⠃⠕â â â ‘â žâ „â Ž" }, { "input": "bonnets", "output": "⠃⠕â â â ‘â žâ Ž" }, { "input": "bonnier", "output": "⠃⠕â â â Šâ »" }, { "input": "bonniest", "output": "⠃⠕â â â Šâ ‘â Œ" }, { "input": "bonny", "output": "⠃⠕â â â ½" }, { "input": "bonsai", "output": "⠃⠕â â Žâ â Š" }, { "input": "bonsai's", "output": "⠃⠕â â Žâ â Šâ „â Ž" }, { "input": "bonus", "output": "⠃⠕â â ¥â Ž" }, { "input": "bonus's", "output": "⠃⠕â â ¥â Žâ „â Ž" }, { "input": "bonuses", "output": "⠃⠕â â ¥â Žâ ‘â Ž" }, { "input": "bony", "output": "⠃⠕â â ½" }, { "input": "boo", "output": "⠃⠕⠕" }, { "input": "boo's", "output": "⠃⠕⠕⠄⠎" }, { "input": "boob", "output": "⠃⠕⠕⠃" }, { "input": "boob's", "output": "⠃⠕⠕⠃⠄⠎" }, { "input": "boobed", "output": "⠃⠕⠕⠃⠫" }, { "input": "boobies", "output": "⠃⠕⠕⠃⠊⠑⠎" }, { "input": "boobing", "output": "⠃⠕⠕⠃⠌" }, { "input": "boobs", "output": "⠃⠕⠕⠃⠎" }, { "input": "booby", "output": "⠃⠕⠕⠃⠽" }, { "input": "booby's", "output": "⠃⠕⠕⠃⠽⠄⠎" }, { "input": "boodle", "output": "⠃⠕⠕⠙⠇⠑" }, { "input": "boodle's", "output": "⠃⠕⠕⠙⠇⠑⠄⠎" }, { "input": "boodles", "output": "⠃⠕⠕⠙⠇⠑⠎" }, { "input": "booed", "output": "⠃⠕⠕⠫" }, { "input": "boogie", "output": "⠃⠕⠕⠛⠊⠑" }, { "input": "boogie's", "output": "⠃⠕⠕⠛⠊⠑⠄⠎" }, { "input": "boogied", "output": "⠃⠕⠕⠛⠊⠫" }, { "input": "boogieing", "output": "⠃⠕⠕⠛⠊⠑⠌" }, { "input": "boogieman", "output": "⠃⠕⠕⠛⠊⠑â â â " }, { "input": "boogieman's", "output": "⠃⠕⠕⠛⠊⠑â â â â „â Ž" }, { "input": "boogies", "output": "⠃⠕⠕⠛⠊⠑⠎" }, { "input": "boohoo's", "output": "⠃⠕⠕⠓⠕⠕⠄⠎" }, { "input": "boohooed", "output": "⠃⠕⠕⠓⠕⠕⠫" }, { "input": "boohooing", "output": "⠃⠕⠕⠓⠕⠕⠌" }, { "input": "boohoos", "output": "⠃⠕⠕⠓⠕⠕⠎" }, { "input": "booing", "output": "⠃⠕⠕⠌" }, { "input": "book", "output": "⠃⠕⠕⠅" }, { "input": "book's", "output": "⠃⠕⠕⠅⠄⠎" }, { "input": "bookbinderies", "output": "⠃⠕⠕⠅⠃⠔⠙⠻⠊⠑⠎" }, { "input": "bookbindery", "output": "⠃⠕⠕⠅⠃⠔⠙⠻⠽" }, { "input": "bookbindery's", "output": "⠃⠕⠕⠅⠃⠔⠙⠻⠽⠄⠎" }, { "input": "bookbinding's", "output": "⠃⠕⠕⠅⠃⠔⠙⠌⠄⠎" }, { "input": "bookcase", "output": "⠃⠕⠕⠅⠉â â Žâ ‘" }, { "input": "bookcase's", "output": "⠃⠕⠕⠅⠉â â Žâ ‘â „â Ž" }, { "input": "bookcases", "output": "⠃⠕⠕⠅⠉â â Žâ ‘â Ž" }, { "input": "booked", "output": "⠃⠕⠕⠅⠫" }, { "input": "bookend", "output": "⠃⠕⠕⠅⠢⠙" }, { "input": "bookend's", "output": "⠃⠕⠕⠅⠢⠙⠄⠎" }, { "input": "bookends", "output": "⠃⠕⠕⠅⠢⠙⠎" }, { "input": "bookie", "output": "⠃⠕⠕⠅⠊⠑" }, { "input": "bookie's", "output": "⠃⠕⠕⠅⠊⠑⠄⠎" }, { "input": "bookies", "output": "⠃⠕⠕⠅⠊⠑⠎" }, { "input": "booking", "output": "⠃⠕⠕⠅⠌" }, { "input": "booking's", "output": "⠃⠕⠕⠅⠌⠄⠎" }, { "input": "bookings", "output": "⠃⠕⠕⠅⠌⠎" }, { "input": "bookish", "output": "⠃⠕⠕⠅⠊⠩" }, { "input": "bookkeeper", "output": "⠃⠕⠕⠅⠅⠑⠑â â »" }, { "input": "bookkeeper's", "output": "⠃⠕⠕⠅⠅⠑⠑â â »â „â Ž" }, { "input": "bookkeepers", "output": "⠃⠕⠕⠅⠅⠑⠑â â »â Ž" }, { "input": "bookkeeping", "output": "⠃⠕⠕⠅⠅⠑⠑â â Œ" }, { "input": "bookkeeping's", "output": "⠃⠕⠕⠅⠅⠑⠑â â Œâ „â Ž" }, { "input": "booklet", "output": "⠃⠕⠕⠅⠇⠑⠞" }, { "input": "booklet's", "output": "⠃⠕⠕⠅⠇⠑⠞⠄⠎" }, { "input": "booklets", "output": "⠃⠕⠕⠅⠇⠑⠞⠎" }, { "input": "bookmaker", "output": "⠃⠕⠕⠅â â â …â »" }, { "input": "bookmaker's", "output": "⠃⠕⠕⠅â â â …⠻⠄⠎" }, { "input": "bookmakers", "output": "⠃⠕⠕⠅â â â …⠻⠎" }, { "input": "bookmaking", "output": "⠃⠕⠕⠅â â â …â Œ" }, { "input": "bookmaking's", "output": "⠃⠕⠕⠅â â â …⠌⠄⠎" }, { "input": "bookmark", "output": "⠃⠕⠕⠅â â œâ …" }, { "input": "bookmark's", "output": "⠃⠕⠕⠅â â œâ …â „â Ž" }, { "input": "bookmarked", "output": "⠃⠕⠕⠅â â œâ …â «" }, { "input": "bookmarking", "output": "⠃⠕⠕⠅â â œâ …â Œ" }, { "input": "bookmarks", "output": "⠃⠕⠕⠅â â œâ …â Ž" }, { "input": "bookmobile", "output": "⠃⠕⠕⠅â â •⠃⠊⠇⠑" }, { "input": "bookmobile's", "output": "⠃⠕⠕⠅â â •⠃⠊⠇⠑⠄⠎" }, { "input": "bookmobiles", "output": "⠃⠕⠕⠅â â •⠃⠊⠇⠑⠎" }, { "input": "books", "output": "⠃⠕⠕⠅⠎" }, { "input": "bookseller", "output": "⠃⠕⠕⠅⠎⠑⠇⠇⠻" }, { "input": "bookseller's", "output": "⠃⠕⠕⠅⠎⠑⠇⠇⠻⠄⠎" }, { "input": "booksellers", "output": "⠃⠕⠕⠅⠎⠑⠇⠇⠻⠎" }, { "input": "bookshelf", "output": "⠃⠕⠕⠅⠩⠑⠇⠋" }, { "input": "bookshelf's", "output": "⠃⠕⠕⠅⠩⠑⠇⠋⠄⠎" }, { "input": "bookshelves", "output": "⠃⠕⠕⠅⠩⠑⠇⠧⠑⠎" }, { "input": "bookshop", "output": "⠃⠕⠕⠅⠩⠕â " }, { "input": "bookshop's", "output": "⠃⠕⠕⠅⠩⠕â â „â Ž" }, { "input": "bookshops", "output": "⠃⠕⠕⠅⠩⠕â â Ž" }, { "input": "bookstore", "output": "⠃⠕⠕⠅⠌⠕⠗⠑" }, { "input": "bookstore's", "output": "⠃⠕⠕⠅⠌⠕⠗⠑⠄⠎" }, { "input": "bookstores", "output": "⠃⠕⠕⠅⠌⠕⠗⠑⠎" }, { "input": "bookworm", "output": "⠃⠕⠕⠅⠺⠕⠗â " }, { "input": "bookworm's", "output": "⠃⠕⠕⠅⠺⠕⠗â â „â Ž" }, { "input": "bookworms", "output": "⠃⠕⠕⠅⠺⠕⠗â â Ž" }, { "input": "boom", "output": "⠃⠕⠕â " }, { "input": "boom's", "output": "⠃⠕⠕â â „â Ž" }, { "input": "boombox", "output": "⠃⠕⠕â â ƒâ •â ­" }, { "input": "boombox's", "output": "⠃⠕⠕â â ƒâ •â ­â „â Ž" }, { "input": "boomboxes", "output": "⠃⠕⠕â â ƒâ •â ­â ‘â Ž" }, { "input": "boomed", "output": "⠃⠕⠕â â «" }, { "input": "boomerang", "output": "⠃⠕⠕â â »â â â ›" }, { "input": "boomerang's", "output": "⠃⠕⠕â â »â â â ›â „â Ž" }, { "input": "boomeranged", "output": "⠃⠕⠕â â »â â â ›â «" }, { "input": "boomeranging", "output": "⠃⠕⠕â â »â â â ›â Œ" }, { "input": "boomerangs", "output": "⠃⠕⠕â â »â â â ›â Ž" }, { "input": "booming", "output": "⠃⠕⠕â â Œ" }, { "input": "booms", "output": "⠃⠕⠕â â Ž" }, { "input": "boon", "output": "⠃⠕⠕â " }, { "input": "boon's", "output": "⠃⠕⠕â â „â Ž" }, { "input": "boondocks", "output": "⠃⠕⠕â â ™â •⠉⠅⠎" }, { "input": "boondocks's", "output": "⠃⠕⠕â â ™â •⠉⠅⠎⠄⠎" }, { "input": "boondoggle", "output": "⠃⠕⠕â â ™â •⠶⠇⠑" }, { "input": "boondoggle's", "output": "⠃⠕⠕â â ™â •⠶⠇⠑⠄⠎" }, { "input": "boondoggled", "output": "⠃⠕⠕â â ™â •⠶⠇⠫" }, { "input": "boondoggler", "output": "⠃⠕⠕â â ™â •⠶⠇⠻" }, { "input": "boondoggler's", "output": "⠃⠕⠕â â ™â •⠶⠇⠻⠄⠎" }, { "input": "boondogglers", "output": "⠃⠕⠕â â ™â •⠶⠇⠻⠎" }, { "input": "boondoggles", "output": "⠃⠕⠕â â ™â •⠶⠇⠑⠎" }, { "input": "boondoggling", "output": "⠃⠕⠕â â ™â •⠶⠇⠌" }, { "input": "boonies's", "output": "⠃⠕⠕â â Šâ ‘â Žâ „â Ž" }, { "input": "boons", "output": "⠃⠕⠕â â Ž" }, { "input": "boor", "output": "⠃⠕⠕⠗" }, { "input": "boor's", "output": "⠃⠕⠕⠗⠄⠎" }, { "input": "boorish", "output": "⠃⠕⠕⠗⠊⠩" }, { "input": "boorishly", "output": "⠃⠕⠕⠗⠊⠩⠇⠽" }, { "input": "boorishness", "output": "⠃⠕⠕⠗⠊⠩⠰⠎" }, { "input": "boorishness's", "output": "⠃⠕⠕⠗⠊⠩⠰⠎⠄⠎" }, { "input": "boorishnesses", "output": "⠃⠕⠕⠗⠊⠩⠰⠎⠑⠎" }, { "input": "boors", "output": "⠃⠕⠕⠗⠎" }, { "input": "boos", "output": "⠃⠕⠕⠎" }, { "input": "boost", "output": "⠃⠕⠕⠌" }, { "input": "boost's", "output": "⠃⠕⠕⠌⠄⠎" }, { "input": "boosted", "output": "⠃⠕⠕⠌⠫" }, { "input": "booster", "output": "⠃⠕⠕⠌⠻" }, { "input": "booster's", "output": "⠃⠕⠕⠌⠻⠄⠎" }, { "input": "boosters", "output": "⠃⠕⠕⠌⠻⠎" }, { "input": "boosting", "output": "⠃⠕⠕⠌⠌" }, { "input": "boosts", "output": "⠃⠕⠕⠌⠎" }, { "input": "boot", "output": "⠃⠕⠕⠞" }, { "input": "boot's", "output": "⠃⠕⠕⠞⠄⠎" }, { "input": "bootblack", "output": "⠃⠕⠕⠞⠃⠇â â ‰â …" }, { "input": "bootblack's", "output": "⠃⠕⠕⠞⠃⠇â â ‰â …â „â Ž" }, { "input": "bootblacks", "output": "⠃⠕⠕⠞⠃⠇â â ‰â …â Ž" }, { "input": "booted", "output": "⠃⠕⠕⠞⠫" }, { "input": "bootee", "output": "⠃⠕⠕⠞⠑⠑" }, { "input": "bootee's", "output": "⠃⠕⠕⠞⠑⠑⠄⠎" }, { "input": "bootees", "output": "⠃⠕⠕⠞⠑⠑⠎" }, { "input": "booth", "output": "⠃⠕⠕⠹" }, { "input": "booth's", "output": "⠃⠕⠕⠹⠄⠎" }, { "input": "booths", "output": "⠃⠕⠕⠹⠎" }, { "input": "booties", "output": "⠃⠕⠕⠞⠊⠑⠎" }, { "input": "booting", "output": "⠃⠕⠕⠞⠌" }, { "input": "bootleg", "output": "⠃⠕⠕⠞⠇⠑⠛" }, { "input": "bootleg's", "output": "⠃⠕⠕⠞⠇⠑⠛⠄⠎" }, { "input": "bootlegged", "output": "⠃⠕⠕⠞⠇⠑⠶⠫" }, { "input": "bootlegger", "output": "⠃⠕⠕⠞⠇⠑⠶⠻" }, { "input": "bootlegger's", "output": "⠃⠕⠕⠞⠇⠑⠶⠻⠄⠎" }, { "input": "bootleggers", "output": "⠃⠕⠕⠞⠇⠑⠶⠻⠎" }, { "input": "bootlegging", "output": "⠃⠕⠕⠞⠇⠑⠶⠌" }, { "input": "bootlegging's", "output": "⠃⠕⠕⠞⠇⠑⠶⠌⠄⠎" }, { "input": "bootlegs", "output": "⠃⠕⠕⠞⠇⠑⠛⠎" }, { "input": "bootless", "output": "⠃⠕⠕⠞⠨⠎" }, { "input": "boots", "output": "⠃⠕⠕⠞⠎" }, { "input": "bootstrap", "output": "⠃⠕⠕⠞⠌⠗â â " }, { "input": "bootstrap's", "output": "⠃⠕⠕⠞⠌⠗â â â „â Ž" }, { "input": "bootstrapped", "output": "⠃⠕⠕⠞⠌⠗â â â â «" }, { "input": "bootstrapping", "output": "⠃⠕⠕⠞⠌⠗â â â â Œ" }, { "input": "bootstraps", "output": "⠃⠕⠕⠞⠌⠗â â â Ž" }, { "input": "booty", "output": "⠃⠕⠕⠞⠽" }, { "input": "booty's", "output": "⠃⠕⠕⠞⠽⠄⠎" }, { "input": "booze", "output": "⠃⠕⠕⠵⠑" }, { "input": "booze's", "output": "⠃⠕⠕⠵⠑⠄⠎" }, { "input": "boozed", "output": "⠃⠕⠕⠵⠫" }, { "input": "boozer", "output": "⠃⠕⠕⠵⠻" }, { "input": "boozer's", "output": "⠃⠕⠕⠵⠻⠄⠎" }, { "input": "boozers", "output": "⠃⠕⠕⠵⠻⠎" }, { "input": "boozes", "output": "⠃⠕⠕⠵⠑⠎" }, { "input": "boozier", "output": "⠃⠕⠕⠵⠊⠻" }, { "input": "booziest", "output": "⠃⠕⠕⠵⠊⠑⠌" }, { "input": "boozing", "output": "⠃⠕⠕⠵⠌" }, { "input": "boozy", "output": "⠃⠕⠕⠵⠽" }, { "input": "bop", "output": "⠃⠕â " }, { "input": "bop's", "output": "⠃⠕â â „â Ž" }, { "input": "bopped", "output": "⠃⠕â â â «" }, { "input": "bopping", "output": "⠃⠕â â â Œ" }, { "input": "bops", "output": "⠃⠕â â Ž" }, { "input": "borax", "output": "⠃⠕⠗â â ­" }, { "input": "borax's", "output": "⠃⠕⠗â â ­â „â Ž" }, { "input": "bordello", "output": "⠃⠕⠗⠙⠑⠇⠇⠕" }, { "input": "bordello's", "output": "⠃⠕⠗⠙⠑⠇⠇⠕⠄⠎" }, { "input": "bordellos", "output": "⠃⠕⠗⠙⠑⠇⠇⠕⠎" }, { "input": "border", "output": "⠃⠕⠗⠙⠻" }, { "input": "border's", "output": "⠃⠕⠗⠙⠻⠄⠎" }, { "input": "bordered", "output": "⠃⠕⠗⠙⠻⠫" }, { "input": "bordering", "output": "⠃⠕⠗⠙⠻⠌" }, { "input": "borderland", "output": "⠃⠕⠗⠙⠻⠇⠯" }, { "input": "borderland's", "output": "⠃⠕⠗⠙⠻⠇⠯⠄⠎" }, { "input": "borderlands", "output": "⠃⠕⠗⠙⠻⠇⠯⠎" }, { "input": "borderline", "output": "⠃⠕⠗⠙⠻⠇⠔⠑" }, { "input": "borderline's", "output": "⠃⠕⠗⠙⠻⠇⠔⠑⠄⠎" }, { "input": "borderlines", "output": "⠃⠕⠗⠙⠻⠇⠔⠑⠎" }, { "input": "borders", "output": "⠃⠕⠗⠙⠻⠎" }, { "input": "bore", "output": "⠃⠕⠗⠑" }, { "input": "bore's", "output": "⠃⠕⠗⠑⠄⠎" }, { "input": "bored", "output": "⠃⠕⠗⠫" }, { "input": "boredom", "output": "⠃⠕⠗⠑⠙⠕â " }, { "input": "boredom's", "output": "⠃⠕⠗⠑⠙⠕â â „â Ž" }, { "input": "borer", "output": "⠃⠕⠗⠻" }, { "input": "borer's", "output": "⠃⠕⠗⠻⠄⠎" }, { "input": "borers", "output": "⠃⠕⠗⠻⠎" }, { "input": "bores", "output": "⠃⠕⠗⠑⠎" }, { "input": "boring", "output": "⠃⠕⠗⠌" }, { "input": "boringly", "output": "⠃⠕⠗⠌⠇⠽" }, { "input": "born", "output": "⠃⠕⠗â " }, { "input": "borne", "output": "⠃⠕⠗â â ‘" }, { "input": "boron", "output": "⠃⠕⠗⠕â " }, { "input": "boron's", "output": "⠃⠕⠗⠕â â „â Ž" }, { "input": "borough", "output": "⠃⠕⠗⠳⠣" }, { "input": "borough's", "output": "⠃⠕⠗⠳⠣⠄⠎" }, { "input": "boroughs", "output": "⠃⠕⠗⠳⠣⠎" }, { "input": "borrow", "output": "⠃⠕⠗⠗⠪" }, { "input": "borrowed", "output": "⠃⠕⠗⠗⠪⠫" }, { "input": "borrower", "output": "⠃⠕⠗⠗⠪⠻" }, { "input": "borrower's", "output": "⠃⠕⠗⠗⠪⠻⠄⠎" }, { "input": "borrowers", "output": "⠃⠕⠗⠗⠪⠻⠎" }, { "input": "borrowing", "output": "⠃⠕⠗⠗⠪⠌" }, { "input": "borrows", "output": "⠃⠕⠗⠗⠪⠎" }, { "input": "borscht", "output": "⠃⠕⠗⠎⠡⠞" }, { "input": "borscht's", "output": "⠃⠕⠗⠎⠡⠞⠄⠎" }, { "input": "borzoi", "output": "⠃⠕⠗⠵⠕⠊" }, { "input": "borzoi's", "output": "⠃⠕⠗⠵⠕⠊⠄⠎" }, { "input": "borzois", "output": "⠃⠕⠗⠵⠕⠊⠎" }, { "input": "bosh", "output": "⠃⠕⠩" }, { "input": "bosh's", "output": "⠃⠕⠩⠄⠎" }, { "input": "bosom", "output": "⠃⠕⠎⠕â " }, { "input": "bosom's", "output": "⠃⠕⠎⠕â â „â Ž" }, { "input": "bosoms", "output": "⠃⠕⠎⠕â â Ž" }, { "input": "boss", "output": "⠃⠕⠎⠎" }, { "input": "boss's", "output": "⠃⠕⠎⠎⠄⠎" }, { "input": "bossed", "output": "⠃⠕⠎⠎⠫" }, { "input": "bosses", "output": "⠃⠕⠎⠎⠑⠎" }, { "input": "bossier", "output": "⠃⠕⠎⠎⠊⠻" }, { "input": "bossiest", "output": "⠃⠕⠎⠎⠊⠑⠌" }, { "input": "bossily", "output": "⠃⠕⠎⠎⠊⠇⠽" }, { "input": "bossiness", "output": "⠃⠕⠎⠎⠊⠰⠎" }, { "input": "bossiness's", "output": "⠃⠕⠎⠎⠊⠰⠎⠄⠎" }, { "input": "bossing", "output": "⠃⠕⠎⠎⠌" }, { "input": "bossism", "output": "⠃⠕⠎⠎⠊⠎â " }, { "input": "bossism's", "output": "⠃⠕⠎⠎⠊⠎â â „â Ž" }, { "input": "bossy", "output": "⠃⠕⠎⠎⠽" }, { "input": "botanic", "output": "⠃⠕⠞â â â Šâ ‰" }, { "input": "botanical", "output": "⠃⠕⠞â â â Šâ ‰â â ‡" }, { "input": "botanically", "output": "⠃⠕⠞â â â Šâ ‰â  â ½" }, { "input": "botanist", "output": "⠃⠕⠞â â â Šâ Œ" }, { "input": "botanist's", "output": "⠃⠕⠞â â â Šâ Œâ „â Ž" }, { "input": "botanists", "output": "⠃⠕⠞â â â Šâ Œâ Ž" }, { "input": "botany", "output": "⠃⠕⠞â â â ½" }, { "input": "botany's", "output": "⠃⠕⠞â â â ½â „â Ž" }, { "input": "botch", "output": "⠃⠕⠞⠡" }, { "input": "botch's", "output": "⠃⠕⠞⠡⠄⠎" }, { "input": "botched", "output": "⠃⠕⠞⠡⠫" }, { "input": "botcher", "output": "⠃⠕⠞⠡⠻" }, { "input": "botcher's", "output": "⠃⠕⠞⠡⠻⠄⠎" }, { "input": "botchers", "output": "⠃⠕⠞⠡⠻⠎" }, { "input": "botches", "output": "⠃⠕⠞⠡⠑⠎" }, { "input": "botching", "output": "⠃⠕⠞⠡⠌" }, { "input": "both", "output": "⠃⠕⠹" }, { "input": "bother", "output": "⠃⠕⠮⠗" }, { "input": "bother's", "output": "⠃⠕⠮⠗⠄⠎" }, { "input": "bothered", "output": "⠃⠕⠮⠗⠫" }, { "input": "bothering", "output": "⠃⠕⠮⠗⠌" }, { "input": "bothers", "output": "⠃⠕⠮⠗⠎" }, { "input": "bothersome", "output": "⠃⠕⠮⠗â â Ž" }, { "input": "bots", "output": "⠃⠕⠞⠎" }, { "input": "bottle", "output": "⠃⠕⠞⠞⠇⠑" }, { "input": "bottle's", "output": "⠃⠕⠞⠞⠇⠑⠄⠎" }, { "input": "bottled", "output": "⠃⠕⠞⠞⠇⠫" }, { "input": "bottleneck", "output": "⠃⠕⠞⠞⠇⠑â â ‘⠉⠅" }, { "input": "bottleneck's", "output": "⠃⠕⠞⠞⠇⠑â â ‘⠉⠅⠄⠎" }, { "input": "bottlenecks", "output": "⠃⠕⠞⠞⠇⠑â â ‘⠉⠅⠎" }, { "input": "bottles", "output": "⠃⠕⠞⠞⠇⠑⠎" }, { "input": "bottling", "output": "⠃⠕⠞⠞⠇⠌" }, { "input": "bottom", "output": "⠃⠕⠞⠞⠕â " }, { "input": "bottom's", "output": "⠃⠕⠞⠞⠕â â „â Ž" }, { "input": "bottomed", "output": "⠃⠕⠞⠞⠕â â «" }, { "input": "bottoming", "output": "⠃⠕⠞⠞⠕â â Œ" }, { "input": "bottomless", "output": "⠃⠕⠞⠞⠕â â ¨â Ž" }, { "input": "bottoms", "output": "⠃⠕⠞⠞⠕â â Ž" }, { "input": "botulism", "output": "⠃⠕⠞⠥⠇⠊⠎â " }, { "input": "botulism's", "output": "⠃⠕⠞⠥⠇⠊⠎â â „â Ž" }, { "input": "boudoir", "output": "⠃⠳⠙⠕⠊⠗" }, { "input": "boudoir's", "output": "⠃⠳⠙⠕⠊⠗⠄⠎" }, { "input": "boudoirs", "output": "⠃⠳⠙⠕⠊⠗⠎" }, { "input": "bouffant", "output": "⠃⠳⠖â â â ž" }, { "input": "bouffant's", "output": "⠃⠳⠖â â â žâ „â Ž" }, { "input": "bouffants", "output": "⠃⠳⠖â â â žâ Ž" }, { "input": "bough", "output": "⠃⠳⠣" }, { "input": "bough's", "output": "⠃⠳⠣⠄⠎" }, { "input": "boughs", "output": "⠃⠳⠣⠎" }, { "input": "bought", "output": "â ƒâ â ³" }, { "input": "bouillabaisse", "output": "⠃⠳⠊⠇⠇â â ƒâ â Šâ Žâ Žâ ‘" }, { "input": "bouillabaisse's", "output": "⠃⠳⠊⠇⠇â â ƒâ â Šâ Žâ Žâ ‘â „â Ž" }, { "input": "bouillabaisses", "output": "⠃⠳⠊⠇⠇â â ƒâ â Šâ Žâ Žâ ‘â Ž" }, { "input": "bouillon", "output": "⠃⠳⠊⠇⠇⠕â " }, { "input": "bouillon's", "output": "⠃⠳⠊⠇⠇⠕â â „â Ž" }, { "input": "bouillons", "output": "⠃⠳⠊⠇⠇⠕â â Ž" }, { "input": "boulder", "output": "⠃⠳⠇⠙⠻" }, { "input": "boulder's", "output": "⠃⠳⠇⠙⠻⠄⠎" }, { "input": "boulders", "output": "⠃⠳⠇⠙⠻⠎" }, { "input": "boulevard", "output": "⠃⠳⠇⠑⠧⠜⠙" }, { "input": "boulevard's", "output": "⠃⠳⠇⠑⠧⠜⠙⠄⠎" }, { "input": "boulevards", "output": "⠃⠳⠇⠑⠧⠜⠙⠎" }, { "input": "bounce", "output": "⠃⠳â â ‰â ‘" }, { "input": "bounce's", "output": "⠃⠳â â ‰â ‘â „â Ž" }, { "input": "bounced", "output": "⠃⠳â â ‰â «" }, { "input": "bouncer", "output": "⠃⠳â â ‰â »" }, { "input": "bouncer's", "output": "⠃⠳â â ‰â »â „â Ž" }, { "input": "bouncers", "output": "⠃⠳â â ‰â »â Ž" }, { "input": "bounces", "output": "⠃⠳â â ‰â ‘â Ž" }, { "input": "bouncier", "output": "⠃⠳â â ‰â Šâ »" }, { "input": "bounciest", "output": "⠃⠳â â ‰â Šâ ‘â Œ" }, { "input": "bouncily", "output": "⠃⠳â â ‰â Šâ ‡â ½" }, { "input": "bounciness", "output": "⠃⠳â â ‰â Šâ °â Ž" }, { "input": "bounciness's", "output": "⠃⠳â â ‰â Šâ °â Žâ „â Ž" }, { "input": "bouncing", "output": "⠃⠳â â ‰â Œ" }, { "input": "bouncy", "output": "⠃⠳â â ‰â ½" }, { "input": "bound", "output": "⠃⠨⠙" }, { "input": "bound's", "output": "⠃⠨⠙⠄⠎" }, { "input": "boundaries", "output": "⠃⠨⠙⠜⠊⠑⠎" }, { "input": "boundary", "output": "⠃⠨⠙⠜⠽" }, { "input": "boundary's", "output": "⠃⠨⠙⠜⠽⠄⠎" }, { "input": "bounded", "output": "⠃⠨⠙⠫" }, { "input": "bounden", "output": "⠃⠨⠙⠢" }, { "input": "bounder", "output": "⠃⠨⠙⠻" }, { "input": "bounder's", "output": "⠃⠨⠙⠻⠄⠎" }, { "input": "bounders", "output": "⠃⠨⠙⠻⠎" }, { "input": "bounding", "output": "⠃⠨⠙⠌" }, { "input": "boundless", "output": "⠃⠨⠙⠨⠎" }, { "input": "boundlessly", "output": "⠃⠨⠙⠨⠎⠇⠽" }, { "input": "boundlessness", "output": "⠃⠨⠙⠨⠎⠰⠎" }, { "input": "boundlessness's", "output": "⠃⠨⠙⠨⠎⠰⠎⠄⠎" }, { "input": "bounds", "output": "⠃⠨⠙⠎" }, { "input": "bounteous", "output": "⠃⠨⠞⠑⠳⠎" }, { "input": "bounteously", "output": "⠃⠨⠞⠑⠳⠎⠇⠽" }, { "input": "bounteousness", "output": "⠃⠨⠞⠑⠳⠎⠰⠎" }, { "input": "bounteousness's", "output": "⠃⠨⠞⠑⠳⠎⠰⠎⠄⠎" }, { "input": "bounties", "output": "⠃⠨⠞⠊⠑⠎" }, { "input": "bountiful", "output": "⠃⠨⠞⠊⠰⠇" }, { "input": "bountifully", "output": "⠃⠨⠞⠊⠰⠇⠇⠽" }, { "input": "bountifulness", "output": "⠃⠨⠞⠊⠰⠇⠰⠎" }, { "input": "bountifulness's", "output": "⠃⠨⠞⠊⠰⠇⠰⠎⠄⠎" }, { "input": "bounty", "output": "⠃⠨⠞⠽" }, { "input": "bounty's", "output": "⠃⠨⠞⠽⠄⠎" }, { "input": "bouquet", "output": "⠃⠳⠟⠥⠑⠞" }, { "input": "bouquet's", "output": "⠃⠳⠟⠥⠑⠞⠄⠎" }, { "input": "bouquets", "output": "⠃⠳⠟⠥⠑⠞⠎" }, { "input": "bourbon", "output": "⠃⠳⠗⠃⠕â " }, { "input": "bourbon's", "output": "⠃⠳⠗⠃⠕â â „â Ž" }, { "input": "bourgeois", "output": "⠃⠳⠗⠛⠑⠕⠊⠎" }, { "input": "bourgeois's", "output": "⠃⠳⠗⠛⠑⠕⠊⠎⠄⠎" }, { "input": "bourgeoisie", "output": "⠃⠳⠗⠛⠑⠕⠊⠎⠊⠑" }, { "input": "bourgeoisie's", "output": "⠃⠳⠗⠛⠑⠕⠊⠎⠊⠑⠄⠎" }, { "input": "bout", "output": "⠃⠳⠞" }, { "input": "bout's", "output": "⠃⠳⠞⠄⠎" }, { "input": "boutique", "output": "⠃⠳⠞⠊⠟⠥⠑" }, { "input": "boutique's", "output": "⠃⠳⠞⠊⠟⠥⠑⠄⠎" }, { "input": "boutiques", "output": "⠃⠳⠞⠊⠟⠥⠑⠎" }, { "input": "bouts", "output": "⠃⠳⠞⠎" }, { "input": "bouzouki", "output": "⠃⠳⠵⠳⠅⠊" }, { "input": "bouzouki's", "output": "⠃⠳⠵⠳⠅⠊⠄⠎" }, { "input": "bouzoukis", "output": "⠃⠳⠵⠳⠅⠊⠎" }, { "input": "bovine", "output": "⠃⠕⠧⠔⠑" }, { "input": "bovine's", "output": "⠃⠕⠧⠔⠑⠄⠎" }, { "input": "bovines", "output": "⠃⠕⠧⠔⠑⠎" }, { "input": "bow", "output": "⠃⠪" }, { "input": "bow's", "output": "⠃⠪⠄⠎" }, { "input": "bowdlerization", "output": "⠃⠪⠙⠇⠻⠊⠵⠠â " }, { "input": "bowdlerization's", "output": "⠃⠪⠙⠇⠻⠊⠵⠠â â „â Ž" }, { "input": "bowdlerizations", "output": "⠃⠪⠙⠇⠻⠊⠵⠠â â Ž" }, { "input": "bowdlerize", "output": "⠃⠪⠙⠇⠻⠊⠵⠑" }, { "input": "bowdlerized", "output": "⠃⠪⠙⠇⠻⠊⠵⠫" }, { "input": "bowdlerizes", "output": "⠃⠪⠙⠇⠻⠊⠵⠑⠎" }, { "input": "bowdlerizing", "output": "⠃⠪⠙⠇⠻⠊⠵⠌" }, { "input": "bowed", "output": "⠃⠪⠫" }, { "input": "bowel", "output": "⠃⠪⠑⠇" }, { "input": "bowel's", "output": "⠃⠪⠑⠇⠄⠎" }, { "input": "bowels", "output": "⠃⠪⠑⠇⠎" }, { "input": "bower", "output": "⠃⠪⠻" }, { "input": "bower's", "output": "⠃⠪⠻⠄⠎" }, { "input": "bowers", "output": "⠃⠪⠻⠎" }, { "input": "bowing", "output": "⠃⠪⠌" }, { "input": "bowl", "output": "⠃⠪⠇" }, { "input": "bowl's", "output": "⠃⠪⠇⠄⠎" }, { "input": "bowled", "output": "⠃⠪⠇⠫" }, { "input": "bowleg", "output": "⠃⠪⠇⠑⠛" }, { "input": "bowleg's", "output": "⠃⠪⠇⠑⠛⠄⠎" }, { "input": "bowlegged", "output": "⠃⠪⠇⠑⠶⠫" }, { "input": "bowlegs", "output": "⠃⠪⠇⠑⠛⠎" }, { "input": "bowler", "output": "⠃⠪⠇⠻" }, { "input": "bowler's", "output": "⠃⠪⠇⠻⠄⠎" }, { "input": "bowlers", "output": "⠃⠪⠇⠻⠎" }, { "input": "bowlful", "output": "⠃⠪⠇⠰⠇" }, { "input": "bowlful's", "output": "⠃⠪⠇⠰⠇⠄⠎" }, { "input": "bowlfuls", "output": "⠃⠪⠇⠰⠇⠎" }, { "input": "bowline", "output": "⠃⠪⠇⠔⠑" }, { "input": "bowline's", "output": "⠃⠪⠇⠔⠑⠄⠎" }, { "input": "bowlines", "output": "⠃⠪⠇⠔⠑⠎" }, { "input": "bowling", "output": "⠃⠪⠇⠌" }, { "input": "bowling's", "output": "⠃⠪⠇⠌⠄⠎" }, { "input": "bowls", "output": "⠃⠪⠇⠎" }, { "input": "bowman", "output": "⠃⠪â â â " }, { "input": "bowman's", "output": "⠃⠪â â â â „â Ž" }, { "input": "bowmen", "output": "⠃⠪â â ¢" }, { "input": "bows", "output": "⠃⠪⠎" }, { "input": "bowsprit", "output": "⠃⠪⠎â â —â Šâ ž" }, { "input": "bowsprit's", "output": "⠃⠪⠎â â —â Šâ žâ „â Ž" }, { "input": "bowsprits", "output": "⠃⠪⠎â â —â Šâ žâ Ž" }, { "input": "bowstring", "output": "⠃⠪⠌⠗⠌" }, { "input": "bowstring's", "output": "⠃⠪⠌⠗⠌⠄⠎" }, { "input": "bowstrings", "output": "⠃⠪⠌⠗⠌⠎" }, { "input": "bowwow", "output": "⠃⠪⠺⠪" }, { "input": "bowwow's", "output": "⠃⠪⠺⠪⠄⠎" }, { "input": "bowwows", "output": "⠃⠪⠺⠪⠎" }, { "input": "box", "output": "⠃⠕⠭" }, { "input": "box's", "output": "⠃⠕⠭⠄⠎" }, { "input": "boxcar", "output": "⠃⠕⠭⠉⠜" }, { "input": "boxcar's", "output": "⠃⠕⠭⠉⠜⠄⠎" }, { "input": "boxcars", "output": "⠃⠕⠭⠉⠜⠎" }, { "input": "boxed", "output": "⠃⠕⠭⠫" }, { "input": "boxer", "output": "⠃⠕⠭⠻" }, { "input": "boxer's", "output": "⠃⠕⠭⠻⠄⠎" }, { "input": "boxers", "output": "⠃⠕⠭⠻⠎" }, { "input": "boxes", "output": "⠃⠕⠭⠑⠎" }, { "input": "boxier", "output": "⠃⠕⠭⠊⠻" }, { "input": "boxiest", "output": "⠃⠕⠭⠊⠑⠌" }, { "input": "boxing", "output": "⠃⠕⠭⠌" }, { "input": "boxing's", "output": "⠃⠕⠭⠌⠄⠎" }, { "input": "boxlike", "output": "⠃⠕⠭⠇⠊⠅⠑" }, { "input": "boxwood", "output": "⠃⠕⠭⠺⠕⠕⠙" }, { "input": "boxwood's", "output": "⠃⠕⠭⠺⠕⠕⠙⠄⠎" }, { "input": "boy", "output": "⠃⠕⠽" }, { "input": "boy's", "output": "⠃⠕⠽⠄⠎" }, { "input": "boycott", "output": "⠃⠕⠽⠉⠕⠞⠞" }, { "input": "boycott's", "output": "⠃⠕⠽⠉⠕⠞⠞⠄⠎" }, { "input": "boycotted", "output": "⠃⠕⠽⠉⠕⠞⠞⠫" }, { "input": "boycotting", "output": "⠃⠕⠽⠉⠕⠞⠞⠌" }, { "input": "boycotts", "output": "⠃⠕⠽⠉⠕⠞⠞⠎" }, { "input": "boyfriend", "output": "⠃⠕⠽⠋⠗" }, { "input": "boyfriend's", "output": "⠃⠕⠽⠋⠗⠄⠎" }, { "input": "boyfriends", "output": "⠃⠕⠽⠋⠗⠎" }, { "input": "boyhood", "output": "⠃⠕⠽⠓⠕⠕⠙" }, { "input": "boyhood's", "output": "⠃⠕⠽⠓⠕⠕⠙⠄⠎" }, { "input": "boyhoods", "output": "⠃⠕⠽⠓⠕⠕⠙⠎" }, { "input": "boyish", "output": "⠃⠕⠽⠊⠩" }, { "input": "boyishly", "output": "⠃⠕⠽⠊⠩⠇⠽" }, { "input": "boyishness", "output": "⠃⠕⠽⠊⠩⠰⠎" }, { "input": "boyishness's", "output": "⠃⠕⠽⠊⠩⠰⠎⠄⠎" }, { "input": "boys", "output": "⠃⠕⠽⠎" }, { "input": "boysenberries", "output": "⠃⠕⠽⠎⠢⠃⠻⠗⠊⠑⠎" }, { "input": "boysenberry", "output": "⠃⠕⠽⠎⠢⠃⠻⠗⠽" }, { "input": "boysenberry's", "output": "⠃⠕⠽⠎⠢⠃⠻⠗⠽⠄⠎" }, { "input": "bozo", "output": "⠃⠕⠵⠕" }, { "input": "bozo's", "output": "⠃⠕⠵⠕⠄⠎" }, { "input": "bozos", "output": "⠃⠕⠵⠕⠎" }, { "input": "bra", "output": "⠃⠗â " }, { "input": "bra's", "output": "⠃⠗â â „â Ž" }, { "input": "brace", "output": "⠃⠗â â ‰â ‘" }, { "input": "brace's", "output": "⠃⠗â â ‰â ‘â „â Ž" }, { "input": "braced", "output": "⠃⠗â â ‰â «" }, { "input": "bracelet", "output": "⠃⠗â â ‰â ‘⠇⠑⠞" }, { "input": "bracelet's", "output": "⠃⠗â â ‰â ‘⠇⠑⠞⠄⠎" }, { "input": "bracelets", "output": "⠃⠗â â ‰â ‘⠇⠑⠞⠎" }, { "input": "bracer", "output": "⠃⠗â â ‰â »" }, { "input": "bracer's", "output": "⠃⠗â â ‰â »â „â Ž" }, { "input": "bracero", "output": "⠃⠗â â ‰â »â •" }, { "input": "bracero's", "output": "⠃⠗â â ‰â »â •â „â Ž" }, { "input": "braceros", "output": "⠃⠗â â ‰â »â •â Ž" }, { "input": "bracers", "output": "⠃⠗â â ‰â »â Ž" }, { "input": "braces", "output": "⠃⠗â â ‰â ‘â Ž" }, { "input": "bracing", "output": "⠃⠗â â ‰â Œ" }, { "input": "bracken", "output": "⠃⠗â â ‰â …â ¢" }, { "input": "bracken's", "output": "⠃⠗â â ‰â …⠢⠄⠎" }, { "input": "bracket", "output": "⠃⠗â â ‰â …â ‘â ž" }, { "input": "bracket's", "output": "⠃⠗â â ‰â …â ‘â žâ „â Ž" }, { "input": "bracketed", "output": "⠃⠗â â ‰â …â ‘â žâ «" }, { "input": "bracketing", "output": "⠃⠗â â ‰â …â ‘â žâ Œ" }, { "input": "brackets", "output": "⠃⠗â â ‰â …â ‘â žâ Ž" }, { "input": "brackish", "output": "⠃⠗â â ‰â …â Šâ ©" }, { "input": "brackishness", "output": "⠃⠗â â ‰â …â Šâ ©â °â Ž" }, { "input": "brackishness's", "output": "⠃⠗â â ‰â …â Šâ ©â °â Žâ „â Ž" }, { "input": "bract", "output": "⠃⠗â â ‰â ž" }, { "input": "bract's", "output": "⠃⠗â â ‰â žâ „â Ž" }, { "input": "bracts", "output": "⠃⠗â â ‰â žâ Ž" }, { "input": "brad", "output": "⠃⠗â â ™" }, { "input": "brad's", "output": "⠃⠗â â ™â „â Ž" }, { "input": "brads", "output": "⠃⠗â â ™â Ž" }, { "input": "brae's", "output": "⠃⠗â â ‘â „â Ž" }, { "input": "braes", "output": "⠃⠗â â ‘â Ž" }, { "input": "brag", "output": "⠃⠗â â ›" }, { "input": "brag's", "output": "⠃⠗â â ›â „â Ž" }, { "input": "braggadocio", "output": "⠃⠗â â ¶â â ™â •⠉⠊⠕" }, { "input": "braggadocio's", "output": "⠃⠗â â ¶â â ™â •⠉⠊⠕⠄⠎" }, { "input": "braggadocios", "output": "⠃⠗â â ¶â â ™â •⠉⠊⠕⠎" }, { "input": "braggart", "output": "⠃⠗â â ¶â œâ ž" }, { "input": "braggart's", "output": "⠃⠗â â ¶â œâ žâ „â Ž" }, { "input": "braggarts", "output": "⠃⠗â â ¶â œâ žâ Ž" }, { "input": "bragged", "output": "⠃⠗â â ¶â «" }, { "input": "bragger", "output": "⠃⠗â â ¶â »" }, { "input": "bragger's", "output": "⠃⠗â â ¶â »â „â Ž" }, { "input": "braggers", "output": "⠃⠗â â ¶â »â Ž" }, { "input": "bragging", "output": "⠃⠗â â ¶â Œ" }, { "input": "brags", "output": "⠃⠗â â ›â Ž" }, { "input": "braid", "output": "⠃⠗â â Šâ ™" }, { "input": "braid's", "output": "⠃⠗â â Šâ ™â „â Ž" }, { "input": "braided", "output": "⠃⠗â â Šâ ™â «" }, { "input": "braiding", "output": "⠃⠗â â Šâ ™â Œ" }, { "input": "braiding's", "output": "⠃⠗â â Šâ ™â Œâ „â Ž" }, { "input": "braids", "output": "⠃⠗â â Šâ ™â Ž" }, { "input": "braille", "output": "⠃⠗⠇" }, { "input": "braille's", "output": "⠃⠗⠇⠄⠎" }, { "input": "brain", "output": "⠃⠗â â ”" }, { "input": "brain's", "output": "⠃⠗â â ”â „â Ž" }, { "input": "brainchild", "output": "⠃⠗â â ”⠡⠊⠇⠙" }, { "input": "brainchild's", "output": "⠃⠗â â ”⠡⠊⠇⠙⠄⠎" }, { "input": "brainchildren", "output": "⠃⠗â â ”â ¡â " }, { "input": "brained", "output": "⠃⠗â â ”â «" }, { "input": "brainier", "output": "⠃⠗â â ”â Šâ »" }, { "input": "brainiest", "output": "⠃⠗â â ”â Šâ ‘â Œ" }, { "input": "braininess", "output": "⠃⠗â â ”â Šâ °â Ž" }, { "input": "braininess's", "output": "⠃⠗â â ”â Šâ °â Žâ „â Ž" }, { "input": "braining", "output": "⠃⠗â â ”â Œ" }, { "input": "brainless", "output": "⠃⠗â â ”⠨⠎" }, { "input": "brainlessly", "output": "⠃⠗â â ”⠨⠎⠇⠽" }, { "input": "brains", "output": "⠃⠗â â ”â Ž" }, { "input": "brainstorm", "output": "⠃⠗â â ”⠌⠕⠗â " }, { "input": "brainstorm's", "output": "⠃⠗â â ”⠌⠕⠗â â „â Ž" }, { "input": "brainstormed", "output": "⠃⠗â â ”⠌⠕⠗â â «" }, { "input": "brainstorming", "output": "⠃⠗â â ”⠌⠕⠗â â Œ" }, { "input": "brainstorming's", "output": "⠃⠗â â ”⠌⠕⠗â â Œâ „â Ž" }, { "input": "brainstorms", "output": "⠃⠗â â ”⠌⠕⠗â â Ž" }, { "input": "brainteaser", "output": "⠃⠗â â ”â žâ ‚â Žâ »" }, { "input": "brainteaser's", "output": "⠃⠗â â ”⠞⠂⠎⠻⠄⠎" }, { "input": "brainteasers", "output": "⠃⠗â â ”⠞⠂⠎⠻⠎" }, { "input": "brainwash", "output": "⠃⠗â â ”â ºâ â ©" }, { "input": "brainwashed", "output": "⠃⠗â â ”â ºâ â ©â «" }, { "input": "brainwashes", "output": "⠃⠗â â ”â ºâ â ©â ‘â Ž" }, { "input": "brainwashing", "output": "⠃⠗â â ”â ºâ â ©â Œ" }, { "input": "brainwashing's", "output": "⠃⠗â â ”â ºâ â ©â Œâ „â Ž" }, { "input": "brainy", "output": "⠃⠗â â ”â ½" }, { "input": "braise", "output": "⠃⠗â â Šâ Žâ ‘" }, { "input": "braised", "output": "⠃⠗â â Šâ Žâ «" }, { "input": "braises", "output": "⠃⠗â â Šâ Žâ ‘â Ž" }, { "input": "braising", "output": "⠃⠗â â Šâ Žâ Œ" }, { "input": "brake", "output": "⠃⠗â â …â ‘" }, { "input": "brake's", "output": "⠃⠗â â …â ‘â „â Ž" }, { "input": "braked", "output": "⠃⠗â â …â «" }, { "input": "brakeman", "output": "⠃⠗â â …â ‘â â â " }, { "input": "brakeman's", "output": "⠃⠗â â …â ‘â â â â „â Ž" }, { "input": "brakemen", "output": "⠃⠗â â …â ‘â â ¢" }, { "input": "brakes", "output": "⠃⠗â â …â ‘â Ž" }, { "input": "braking", "output": "⠃⠗â â …â Œ" }, { "input": "bramble", "output": "⠃⠗â â â ¼" }, { "input": "bramble's", "output": "⠃⠗â â â ¼â „â Ž" }, { "input": "brambles", "output": "⠃⠗â â â ¼â Ž" }, { "input": "bramblier", "output": "⠃⠗â â â ƒâ ‡â Šâ »" }, { "input": "brambliest", "output": "⠃⠗â â â ƒâ ‡â Šâ ‘â Œ" }, { "input": "brambly", "output": "⠃⠗â â â ƒâ ‡â ½" }, { "input": "bran", "output": "⠃⠗â â " }, { "input": "bran's", "output": "⠃⠗â â â „â Ž" }, { "input": "branch", "output": "⠃⠗â â â ¡" }, { "input": "branch's", "output": "⠃⠗â â â ¡â „â Ž" }, { "input": "branched", "output": "⠃⠗â â â ¡â «" }, { "input": "branches", "output": "⠃⠗â â â ¡â ‘â Ž" }, { "input": "branching", "output": "⠃⠗â â â ¡â Œ" }, { "input": "branchlike", "output": "⠃⠗â â â ¡â ‡â Šâ …â ‘" }, { "input": "brand", "output": "⠃⠗⠯" }, { "input": "brand's", "output": "⠃⠗⠯⠄⠎" }, { "input": "branded", "output": "⠃⠗⠯⠫" }, { "input": "brander", "output": "⠃⠗⠯⠻" }, { "input": "brander's", "output": "⠃⠗⠯⠻⠄⠎" }, { "input": "branders", "output": "⠃⠗⠯⠻⠎" }, { "input": "brandied", "output": "⠃⠗⠯⠊⠫" }, { "input": "brandies", "output": "⠃⠗⠯⠊⠑⠎" }, { "input": "branding", "output": "⠃⠗⠯⠌" }, { "input": "brandish", "output": "⠃⠗⠯⠊⠩" }, { "input": "brandished", "output": "⠃⠗⠯⠊⠩⠫" }, { "input": "brandishes", "output": "⠃⠗⠯⠊⠩⠑⠎" }, { "input": "brandishing", "output": "⠃⠗⠯⠊⠩⠌" }, { "input": "brands", "output": "⠃⠗⠯⠎" }, { "input": "brandy", "output": "⠃⠗⠯⠽" }, { "input": "brandy's", "output": "⠃⠗⠯⠽⠄⠎" }, { "input": "brandying", "output": "⠃⠗⠯⠽⠌" }, { "input": "bras", "output": "⠃⠗â â Ž" }, { "input": "brash", "output": "⠃⠗â â ©" }, { "input": "brasher", "output": "⠃⠗â â ©â »" }, { "input": "brashest", "output": "⠃⠗â â ©â ‘â Œ" }, { "input": "brashly", "output": "⠃⠗â â ©â ‡â ½" }, { "input": "brashness", "output": "⠃⠗â â ©â °â Ž" }, { "input": "brashness's", "output": "⠃⠗â â ©â °â Žâ „â Ž" }, { "input": "brass", "output": "⠃⠗â â Žâ Ž" }, { "input": "brass's", "output": "⠃⠗â â Žâ Žâ „â Ž" }, { "input": "brasses", "output": "⠃⠗â â Žâ Žâ ‘â Ž" }, { "input": "brassier", "output": "⠃⠗â â Žâ Žâ Šâ »" }, { "input": "brassiere", "output": "⠃⠗â â Žâ Žâ Šâ »â ‘" }, { "input": "brassiere's", "output": "⠃⠗â â Žâ Žâ Šâ »â ‘â „â Ž" }, { "input": "brassieres", "output": "⠃⠗â â Žâ Žâ Šâ »â ‘â Ž" }, { "input": "brassiest", "output": "⠃⠗â â Žâ Žâ Šâ ‘â Œ" }, { "input": "brassily", "output": "⠃⠗â â Žâ Žâ Šâ ‡â ½" }, { "input": "brassiness", "output": "⠃⠗â â Žâ Žâ Šâ °â Ž" }, { "input": "brassiness's", "output": "⠃⠗â â Žâ Žâ Šâ °â Žâ „â Ž" }, { "input": "brassy", "output": "⠃⠗â â Žâ Žâ ½" }, { "input": "brat", "output": "⠃⠗â â ž" }, { "input": "brat's", "output": "⠃⠗â â žâ „â Ž" }, { "input": "brats", "output": "⠃⠗â â žâ Ž" }, { "input": "brattier", "output": "⠃⠗â â žâ žâ Šâ »" }, { "input": "brattiest", "output": "⠃⠗â â žâ žâ Šâ ‘â Œ" }, { "input": "bratty", "output": "⠃⠗â â žâ žâ ½" }, { "input": "bratwurst", "output": "⠃⠗â â žâ ºâ ¥â —â Œ" }, { "input": "bratwurst's", "output": "⠃⠗â â žâ ºâ ¥â —⠌⠄⠎" }, { "input": "bratwursts", "output": "⠃⠗â â žâ ºâ ¥â —⠌⠎" }, { "input": "bravado", "output": "⠃⠗â â §â â ™â •" }, { "input": "bravado's", "output": "⠃⠗â â §â â ™â •â „â Ž" }, { "input": "brave", "output": "⠃⠗â â §â ‘" }, { "input": "brave's", "output": "⠃⠗â â §â ‘â „â Ž" }, { "input": "braved", "output": "⠃⠗â â §â «" }, { "input": "bravely", "output": "⠃⠗â â §â ‘⠇⠽" }, { "input": "braveness", "output": "⠃⠗â â §â ‘â °â Ž" }, { "input": "braveness's", "output": "⠃⠗â â §â ‘â °â Žâ „â Ž" }, { "input": "braver", "output": "⠃⠗â â §â »" }, { "input": "bravery", "output": "⠃⠗â â §â »â ½" }, { "input": "bravery's", "output": "⠃⠗â â §â »â ½â „â Ž" }, { "input": "braves", "output": "⠃⠗â â §â ‘â Ž" }, { "input": "bravest", "output": "⠃⠗â â §â ‘â Œ" }, { "input": "braving", "output": "⠃⠗â â §â Œ" }, { "input": "bravo", "output": "⠃⠗â â §â •" }, { "input": "bravo's", "output": "⠃⠗â â §â •â „â Ž" }, { "input": "bravos", "output": "⠃⠗â â §â •â Ž" }, { "input": "bravura", "output": "⠃⠗â â §â ¥â —â " }, { "input": "bravura's", "output": "⠃⠗â â §â ¥â —â â „â Ž" }, { "input": "bravuras", "output": "⠃⠗â â §â ¥â —â â Ž" }, { "input": "brawl", "output": "⠃⠗â â ºâ ‡" }, { "input": "brawl's", "output": "⠃⠗â â ºâ ‡â „â Ž" }, { "input": "brawled", "output": "⠃⠗â â ºâ ‡â «" }, { "input": "brawler", "output": "⠃⠗â â ºâ ‡â »" }, { "input": "brawler's", "output": "⠃⠗â â ºâ ‡â »â „â Ž" }, { "input": "brawlers", "output": "⠃⠗â â ºâ ‡â »â Ž" }, { "input": "brawling", "output": "⠃⠗â â ºâ ‡â Œ" }, { "input": "brawls", "output": "⠃⠗â â ºâ ‡â Ž" }, { "input": "brawn", "output": "⠃⠗â â ºâ " }, { "input": "brawn's", "output": "⠃⠗â â ºâ â „â Ž" }, { "input": "brawnier", "output": "⠃⠗â â ºâ â Šâ »" }, { "input": "brawniest", "output": "⠃⠗â â ºâ â Šâ ‘â Œ" }, { "input": "brawniness", "output": "⠃⠗â â ºâ â Šâ °â Ž" }, { "input": "brawniness's", "output": "⠃⠗â â ºâ â Šâ °â Žâ „â Ž" }, { "input": "brawny", "output": "⠃⠗â â ºâ â ½" }, { "input": "bray", "output": "⠃⠗â â ½" }, { "input": "bray's", "output": "⠃⠗â â ½â „â Ž" }, { "input": "brayed", "output": "⠃⠗â â ½â «" }, { "input": "braying", "output": "⠃⠗â â ½â Œ" }, { "input": "brays", "output": "⠃⠗â â ½â Ž" }, { "input": "braze", "output": "⠃⠗â â µâ ‘" }, { "input": "brazed", "output": "⠃⠗â â µâ «" }, { "input": "brazen", "output": "⠃⠗â â µâ ¢" }, { "input": "brazened", "output": "⠃⠗â â µâ ¢â «" }, { "input": "brazening", "output": "⠃⠗â â µâ ¢â Œ" }, { "input": "brazenly", "output": "⠃⠗â â µâ ¢â ‡â ½" }, { "input": "brazenness", "output": "⠃⠗â â µâ ¢â °â Ž" }, { "input": "brazenness's", "output": "⠃⠗â â µâ ¢â °â Žâ „â Ž" }, { "input": "brazens", "output": "⠃⠗â â µâ ¢â Ž" }, { "input": "brazer", "output": "⠃⠗â â µâ »" }, { "input": "brazer's", "output": "⠃⠗â â µâ »â „â Ž" }, { "input": "brazers", "output": "⠃⠗â â µâ »â Ž" }, { "input": "brazes", "output": "⠃⠗â â µâ ‘â Ž" }, { "input": "brazier", "output": "⠃⠗â â µâ Šâ »" }, { "input": "brazier's", "output": "⠃⠗â â µâ Šâ »â „â Ž" }, { "input": "braziers", "output": "⠃⠗â â µâ Šâ »â Ž" }, { "input": "brazing", "output": "⠃⠗â â µâ Œ" }, { "input": "breach", "output": "⠃⠗⠂⠡" }, { "input": "breach's", "output": "⠃⠗⠂⠡⠄⠎" }, { "input": "breached", "output": "⠃⠗⠂⠡⠫" }, { "input": "breaches", "output": "⠃⠗⠂⠡⠑⠎" }, { "input": "breaching", "output": "⠃⠗⠂⠡⠌" }, { "input": "bread", "output": "⠃⠗⠂⠙" }, { "input": "bread's", "output": "⠃⠗⠂⠙⠄⠎" }, { "input": "breadbasket", "output": "⠃⠗⠂⠙⠃â â Žâ …â ‘â ž" }, { "input": "breadbasket's", "output": "⠃⠗⠂⠙⠃â â Žâ …â ‘â žâ „â Ž" }, { "input": "breadbaskets", "output": "⠃⠗⠂⠙⠃â â Žâ …â ‘â žâ Ž" }, { "input": "breaded", "output": "⠃⠗⠂⠙⠫" }, { "input": "breadfruit", "output": "⠃⠗⠂⠙⠋⠗⠥⠊⠞" }, { "input": "breadfruit's", "output": "⠃⠗⠂⠙⠋⠗⠥⠊⠞⠄⠎" }, { "input": "breadfruits", "output": "⠃⠗⠂⠙⠋⠗⠥⠊⠞⠎" }, { "input": "breading", "output": "⠃⠗⠂⠙⠌" }, { "input": "breadline's", "output": "⠃⠗⠂⠙⠇⠔⠑⠄⠎" }, { "input": "breadlines", "output": "⠃⠗⠂⠙⠇⠔⠑⠎" }, { "input": "breads", "output": "⠃⠗⠂⠙⠎" }, { "input": "breadth", "output": "⠃⠗⠂⠙⠹" }, { "input": "breadth's", "output": "⠃⠗⠂⠙⠹⠄⠎" }, { "input": "breadths", "output": "⠃⠗⠂⠙⠹⠎" }, { "input": "breadwinner", "output": "⠃⠗⠂⠙⠺⠔â â »" }, { "input": "breadwinner's", "output": "⠃⠗⠂⠙⠺⠔â â »â „â Ž" }, { "input": "breadwinners", "output": "⠃⠗⠂⠙⠺⠔â â »â Ž" }, { "input": "break", "output": "⠃⠗⠂⠅" }, { "input": "break's", "output": "⠃⠗⠂⠅⠄⠎" }, { "input": "breakable", "output": "⠃⠗⠂⠅â â ¼" }, { "input": "breakable's", "output": "⠃⠗⠂⠅â â ¼â „â Ž" }, { "input": "breakables", "output": "⠃⠗⠂⠅â â ¼â Ž" }, { "input": "breakage", "output": "⠃⠗⠂⠅â â ›â ‘" }, { "input": "breakage's", "output": "⠃⠗⠂⠅â â ›â ‘â „â Ž" }, { "input": "breakages", "output": "⠃⠗⠂⠅â â ›â ‘â Ž" }, { "input": "breakdown", "output": "⠃⠗⠂⠅⠙⠪â " }, { "input": "breakdown's", "output": "⠃⠗⠂⠅⠙⠪â â „â Ž" }, { "input": "breakdowns", "output": "⠃⠗⠂⠅⠙⠪â â Ž" }, { "input": "breaker", "output": "⠃⠗⠂⠅⠻" }, { "input": "breaker's", "output": "⠃⠗⠂⠅⠻⠄⠎" }, { "input": "breakers", "output": "⠃⠗⠂⠅⠻⠎" }, { "input": "breakfast", "output": "⠃⠗⠂⠅⠋â â Œ" }, { "input": "breakfast's", "output": "⠃⠗⠂⠅⠋â â Œâ „â Ž" }, { "input": "breakfasted", "output": "⠃⠗⠂⠅⠋â â Œâ «" }, { "input": "breakfasting", "output": "⠃⠗⠂⠅⠋â â Œâ Œ" }, { "input": "breakfasts", "output": "⠃⠗⠂⠅⠋â â Œâ Ž" }, { "input": "breakfront", "output": "⠃⠗⠂⠅⠋⠗⠕â â ž" }, { "input": "breakfront's", "output": "⠃⠗⠂⠅⠋⠗⠕â â žâ „â Ž" }, { "input": "breakfronts", "output": "⠃⠗⠂⠅⠋⠗⠕â â žâ Ž" }, { "input": "breaking", "output": "⠃⠗⠂⠅⠌" }, { "input": "breakneck", "output": "⠃⠗⠂⠅â â ‘⠉⠅" }, { "input": "breakpoints", "output": "⠃⠗⠂⠅â â •⠔⠞⠎" }, { "input": "breaks", "output": "⠃⠗⠂⠅⠎" }, { "input": "breakthrough", "output": "⠃⠗⠂⠅â â ¹" }, { "input": "breakthrough's", "output": "⠃⠗⠂⠅â â ¹â „â Ž" }, { "input": "breakthroughs", "output": "⠃⠗⠂⠅â â ¹â Ž" }, { "input": "breakup", "output": "⠃⠗⠂⠅⠥â " }, { "input": "breakup's", "output": "⠃⠗⠂⠅⠥â â „â Ž" }, { "input": "breakups", "output": "⠃⠗⠂⠅⠥â â Ž" }, { "input": "breakwater", "output": "⠃⠗⠂⠅⠺â â žâ »" }, { "input": "breakwater's", "output": "⠃⠗⠂⠅⠺â â žâ »â „â Ž" }, { "input": "breakwaters", "output": "⠃⠗⠂⠅⠺â â žâ »â Ž" }, { "input": "breast", "output": "⠃⠗⠂⠌" }, { "input": "breast's", "output": "⠃⠗⠂⠌⠄⠎" }, { "input": "breastbone", "output": "⠃⠗⠂⠌⠃â â •" }, { "input": "breastbone's", "output": "⠃⠗⠂⠌⠃â â •â „â Ž" }, { "input": "breastbones", "output": "⠃⠗⠂⠌⠃â â •â Ž" }, { "input": "breasted", "output": "⠃⠗⠂⠌⠫" }, { "input": "breasting", "output": "⠃⠗⠂⠌⠌" }, { "input": "breastplate", "output": "⠃⠗⠂⠌â â ‡â â žâ ‘" }, { "input": "breastplate's", "output": "⠃⠗⠂⠌â â ‡â â žâ ‘â „â Ž" }, { "input": "breastplates", "output": "⠃⠗⠂⠌â â ‡â â žâ ‘â Ž" }, { "input": "breasts", "output": "⠃⠗⠂⠌⠎" }, { "input": "breaststroke", "output": "⠃⠗⠂⠌⠌⠗⠕⠅⠑" }, { "input": "breaststroke's", "output": "⠃⠗⠂⠌⠌⠗⠕⠅⠑⠄⠎" }, { "input": "breaststrokes", "output": "⠃⠗⠂⠌⠌⠗⠕⠅⠑⠎" }, { "input": "breastwork", "output": "⠃⠗⠂⠌â â º" }, { "input": "breastwork's", "output": "⠃⠗⠂⠌â â ºâ „â Ž" }, { "input": "breastworks", "output": "⠃⠗⠂⠌â â ºâ Ž" }, { "input": "breath", "output": "⠃⠗⠂⠹" }, { "input": "breath's", "output": "⠃⠗⠂⠹⠄⠎" }, { "input": "breathable", "output": "⠃⠗⠂⠹â â ¼" }, { "input": "breathalyze", "output": "⠃⠗⠂⠹â â ‡â ½â µâ ‘" }, { "input": "breathalyzed", "output": "⠃⠗⠂⠹â â ‡â ½â µâ «" }, { "input": "breathalyzer", "output": "⠃⠗⠂⠹â â ‡â ½â µâ »" }, { "input": "breathalyzers", "output": "⠃⠗⠂⠹â â ‡â ½â µâ »â Ž" }, { "input": "breathalyzes", "output": "⠃⠗⠂⠹â â ‡â ½â µâ ‘â Ž" }, { "input": "breathalyzing", "output": "⠃⠗⠂⠹â â ‡â ½â µâ Œ" }, { "input": "breathe", "output": "⠃⠗⠂⠮" }, { "input": "breathed", "output": "⠃⠗⠂⠮⠙" }, { "input": "breather", "output": "⠃⠗⠂⠮⠗" }, { "input": "breather's", "output": "⠃⠗⠂⠮⠗⠄⠎" }, { "input": "breathers", "output": "⠃⠗⠂⠮⠗⠎" }, { "input": "breathes", "output": "⠃⠗⠂⠮⠎" }, { "input": "breathier", "output": "⠃⠗⠂⠹⠊⠻" }, { "input": "breathiest", "output": "⠃⠗⠂⠹⠊⠑⠌" }, { "input": "breathing", "output": "⠃⠗⠂⠹⠌" }, { "input": "breathing's", "output": "⠃⠗⠂⠹⠌⠄⠎" }, { "input": "breathless", "output": "⠃⠗⠂⠹⠨⠎" }, { "input": "breathlessly", "output": "⠃⠗⠂⠹⠨⠎⠇⠽" }, { "input": "breathlessness", "output": "⠃⠗⠂⠹⠨⠎⠰⠎" }, { "input": "breathlessness's", "output": "⠃⠗⠂⠹⠨⠎⠰⠎⠄⠎" }, { "input": "breaths", "output": "⠃⠗⠂⠹⠎" }, { "input": "breathtaking", "output": "⠃⠗⠂⠹⠞â â …â Œ" }, { "input": "breathtakingly", "output": "⠃⠗⠂⠹⠞â â …⠌⠇⠽" }, { "input": "breathy", "output": "⠃⠗⠂⠹⠽" }, { "input": "bred", "output": "⠃⠗⠫" }, { "input": "breech", "output": "⠃⠗⠑⠑⠡" }, { "input": "breech's", "output": "⠃⠗⠑⠑⠡⠄⠎" }, { "input": "breeches", "output": "⠃⠗⠑⠑⠡⠑⠎" }, { "input": "breed", "output": "⠃⠗⠑⠫" }, { "input": "breed's", "output": "⠃⠗⠑⠫⠄⠎" }, { "input": "breeder", "output": "⠃⠗⠑⠫⠻" }, { "input": "breeder's", "output": "⠃⠗⠑⠫⠻⠄⠎" }, { "input": "breeders", "output": "⠃⠗⠑⠫⠻⠎" }, { "input": "breeding", "output": "⠃⠗⠑⠫⠌" }, { "input": "breeding's", "output": "⠃⠗⠑⠫⠌⠄⠎" }, { "input": "breeds", "output": "⠃⠗⠑⠫⠎" }, { "input": "breeze", "output": "⠃⠗⠑⠑⠵⠑" }, { "input": "breeze's", "output": "⠃⠗⠑⠑⠵⠑⠄⠎" }, { "input": "breezed", "output": "⠃⠗⠑⠑⠵⠫" }, { "input": "breezes", "output": "⠃⠗⠑⠑⠵⠑⠎" }, { "input": "breezeway", "output": "⠃⠗⠑⠑⠵⠑⠺â â ½" }, { "input": "breezeway's", "output": "⠃⠗⠑⠑⠵⠑⠺â â ½â „â Ž" }, { "input": "breezeways", "output": "⠃⠗⠑⠑⠵⠑⠺â â ½â Ž" }, { "input": "breezier", "output": "⠃⠗⠑⠑⠵⠊⠻" }, { "input": "breeziest", "output": "⠃⠗⠑⠑⠵⠊⠑⠌" }, { "input": "breezily", "output": "⠃⠗⠑⠑⠵⠊⠇⠽" }, { "input": "breeziness", "output": "⠃⠗⠑⠑⠵⠊⠰⠎" }, { "input": "breeziness's", "output": "⠃⠗⠑⠑⠵⠊⠰⠎⠄⠎" }, { "input": "breezing", "output": "⠃⠗⠑⠑⠵⠌" }, { "input": "breezy", "output": "⠃⠗⠑⠑⠵⠽" }, { "input": "brethren", "output": "⠃⠗⠑⠹⠗⠢" }, { "input": "breve", "output": "⠃⠗⠑⠧⠑" }, { "input": "breve's", "output": "⠃⠗⠑⠧⠑⠄⠎" }, { "input": "breves", "output": "⠃⠗⠑⠧⠑⠎" }, { "input": "brevet", "output": "⠃⠗⠑⠧⠑⠞" }, { "input": "brevet's", "output": "⠃⠗⠑⠧⠑⠞⠄⠎" }, { "input": "brevets", "output": "⠃⠗⠑⠧⠑⠞⠎" }, { "input": "brevetted", "output": "⠃⠗⠑⠧⠑⠞⠞⠫" }, { "input": "brevetting", "output": "⠃⠗⠑⠧⠑⠞⠞⠌" }, { "input": "breviaries", "output": "⠃⠗⠑⠧⠊⠜⠊⠑⠎" }, { "input": "breviary", "output": "⠃⠗⠑⠧⠊⠜⠽" }, { "input": "breviary's", "output": "⠃⠗⠑⠧⠊⠜⠽⠄⠎" }, { "input": "brevity", "output": "⠃⠗⠑⠧⠰⠽" }, { "input": "brevity's", "output": "⠃⠗⠑⠧⠰⠽⠄⠎" }, { "input": "brew", "output": "⠃⠗⠑⠺" }, { "input": "brew's", "output": "⠃⠗⠑⠺⠄⠎" }, { "input": "brewed", "output": "⠃⠗⠑⠺⠫" }, { "input": "brewer", "output": "⠃⠗⠑⠺⠻" }, { "input": "brewer's", "output": "⠃⠗⠑⠺⠻⠄⠎" }, { "input": "breweries", "output": "⠃⠗⠑⠺⠻⠊⠑⠎" }, { "input": "brewers", "output": "⠃⠗⠑⠺⠻⠎" }, { "input": "brewery", "output": "⠃⠗⠑⠺⠻⠽" }, { "input": "brewery's", "output": "⠃⠗⠑⠺⠻⠽⠄⠎" }, { "input": "brewing", "output": "⠃⠗⠑⠺⠌" }, { "input": "brewpub", "output": "⠃⠗⠑⠺â â ¥â ƒ" }, { "input": "brewpub's", "output": "⠃⠗⠑⠺â â ¥â ƒâ „â Ž" }, { "input": "brewpubs", "output": "⠃⠗⠑⠺â â ¥â ƒâ Ž" }, { "input": "brews", "output": "⠃⠗⠑⠺⠎" }, { "input": "bribe", "output": "⠃⠗⠊⠃⠑" }, { "input": "bribe's", "output": "⠃⠗⠊⠃⠑⠄⠎" }, { "input": "bribed", "output": "⠃⠗⠊⠃⠫" }, { "input": "briber", "output": "⠃⠗⠊⠃⠻" }, { "input": "briber's", "output": "⠃⠗⠊⠃⠻⠄⠎" }, { "input": "bribers", "output": "⠃⠗⠊⠃⠻⠎" }, { "input": "bribery", "output": "⠃⠗⠊⠃⠻⠽" }, { "input": "bribery's", "output": "⠃⠗⠊⠃⠻⠽⠄⠎" }, { "input": "bribes", "output": "⠃⠗⠊⠃⠑⠎" }, { "input": "bribing", "output": "⠃⠗⠊⠃⠌" }, { "input": "brick", "output": "⠃⠗⠊⠉⠅" }, { "input": "brick's", "output": "⠃⠗⠊⠉⠅⠄⠎" }, { "input": "brickbat", "output": "⠃⠗⠊⠉⠅⠃â â ž" }, { "input": "brickbat's", "output": "⠃⠗⠊⠉⠅⠃â â žâ „â Ž" }, { "input": "brickbats", "output": "⠃⠗⠊⠉⠅⠃â â žâ Ž" }, { "input": "bricked", "output": "⠃⠗⠊⠉⠅⠫" }, { "input": "bricking", "output": "⠃⠗⠊⠉⠅⠌" }, { "input": "bricklayer", "output": "⠃⠗⠊⠉⠅⠇â â ½â »" }, { "input": "bricklayer's", "output": "⠃⠗⠊⠉⠅⠇â â ½â »â „â Ž" }, { "input": "bricklayers", "output": "⠃⠗⠊⠉⠅⠇â â ½â »â Ž" }, { "input": "bricklaying", "output": "⠃⠗⠊⠉⠅⠇â â ½â Œ" }, { "input": "bricklaying's", "output": "⠃⠗⠊⠉⠅⠇â â ½â Œâ „â Ž" }, { "input": "bricks", "output": "⠃⠗⠊⠉⠅⠎" }, { "input": "brickwork's", "output": "⠃⠗⠊⠉⠅â â ºâ „â Ž" }, { "input": "bridal", "output": "⠃⠗⠊⠙â â ‡" }, { "input": "bridal's", "output": "⠃⠗⠊⠙â â ‡â „â Ž" }, { "input": "bridals", "output": "⠃⠗⠊⠙â â ‡â Ž" }, { "input": "bride", "output": "⠃⠗⠊⠙⠑" }, { "input": "bride's", "output": "⠃⠗⠊⠙⠑⠄⠎" }, { "input": "bridegroom", "output": "⠃⠗⠊⠙⠑⠛⠗⠕⠕â " }, { "input": "bridegroom's", "output": "⠃⠗⠊⠙⠑⠛⠗⠕⠕â â „â Ž" }, { "input": "bridegrooms", "output": "⠃⠗⠊⠙⠑⠛⠗⠕⠕â â Ž" }, { "input": "brides", "output": "⠃⠗⠊⠙⠑⠎" }, { "input": "bridesmaid", "output": "⠃⠗⠊⠙⠑⠎â â â Šâ ™" }, { "input": "bridesmaid's", "output": "⠃⠗⠊⠙⠑⠎â â â Šâ ™â „â Ž" }, { "input": "bridesmaids", "output": "⠃⠗⠊⠙⠑⠎â â â Šâ ™â Ž" }, { "input": "bridge", "output": "⠃⠗⠊⠙⠛⠑" }, { "input": "bridge's", "output": "⠃⠗⠊⠙⠛⠑⠄⠎" }, { "input": "bridgeable", "output": "⠃⠗⠊⠙⠛⠑â â ¼" }, { "input": "bridged", "output": "⠃⠗⠊⠙⠛⠫" }, { "input": "bridgehead", "output": "⠃⠗⠊⠙⠛⠑⠓⠂⠙" }, { "input": "bridgehead's", "output": "⠃⠗⠊⠙⠛⠑⠓⠂⠙⠄⠎" }, { "input": "bridgeheads", "output": "⠃⠗⠊⠙⠛⠑⠓⠂⠙⠎" }, { "input": "bridges", "output": "⠃⠗⠊⠙⠛⠑⠎" }, { "input": "bridgework", "output": "⠃⠗⠊⠙⠛⠑â â º" }, { "input": "bridgework's", "output": "⠃⠗⠊⠙⠛⠑â â ºâ „â Ž" }, { "input": "bridging", "output": "⠃⠗⠊⠙⠛⠌" }, { "input": "bridle", "output": "⠃⠗⠊⠙⠇⠑" }, { "input": "bridle's", "output": "⠃⠗⠊⠙⠇⠑⠄⠎" }, { "input": "bridled", "output": "⠃⠗⠊⠙⠇⠫" }, { "input": "bridles", "output": "⠃⠗⠊⠙⠇⠑⠎" }, { "input": "bridling", "output": "⠃⠗⠊⠙⠇⠌" }, { "input": "brie's", "output": "⠃⠗⠊⠑⠄⠎" }, { "input": "brief", "output": "⠃⠗⠊⠑⠋" }, { "input": "brief's", "output": "⠃⠗⠊⠑⠋⠄⠎" }, { "input": "briefcase", "output": "⠃⠗⠊⠑⠋⠉â â Žâ ‘" }, { "input": "briefcase's", "output": "⠃⠗⠊⠑⠋⠉â â Žâ ‘â „â Ž" }, { "input": "briefcases", "output": "⠃⠗⠊⠑⠋⠉â â Žâ ‘â Ž" }, { "input": "briefed", "output": "⠃⠗⠊⠑⠋⠫" }, { "input": "briefer", "output": "⠃⠗⠊⠑⠋⠻" }, { "input": "briefest", "output": "⠃⠗⠊⠑⠋⠑⠌" }, { "input": "briefing", "output": "⠃⠗⠊⠑⠋⠌" }, { "input": "briefing's", "output": "⠃⠗⠊⠑⠋⠌⠄⠎" }, { "input": "briefings", "output": "⠃⠗⠊⠑⠋⠌⠎" }, { "input": "briefly", "output": "⠃⠗⠊⠑⠋⠇⠽" }, { "input": "briefness", "output": "⠃⠗⠊⠑⠋⠰⠎" }, { "input": "briefness's", "output": "⠃⠗⠊⠑⠋⠰⠎⠄⠎" }, { "input": "briefs", "output": "⠃⠗⠊⠑⠋⠎" }, { "input": "brier", "output": "⠃⠗⠊⠻" }, { "input": "brier's", "output": "⠃⠗⠊⠻⠄⠎" }, { "input": "briers", "output": "⠃⠗⠊⠻⠎" }, { "input": "brig", "output": "⠃⠗⠊⠛" }, { "input": "brig's", "output": "⠃⠗⠊⠛⠄⠎" }, { "input": "brigade", "output": "⠃⠗⠊⠛â â ™â ‘" }, { "input": "brigade's", "output": "⠃⠗⠊⠛â â ™â ‘â „â Ž" }, { "input": "brigades", "output": "⠃⠗⠊⠛â â ™â ‘â Ž" }, { "input": "brigand", "output": "⠃⠗⠊⠛⠯" }, { "input": "brigand's", "output": "⠃⠗⠊⠛⠯⠄⠎" }, { "input": "brigandage", "output": "⠃⠗⠊⠛⠯â â ›â ‘" }, { "input": "brigandage's", "output": "⠃⠗⠊⠛⠯â â ›â ‘â „â Ž" }, { "input": "brigands", "output": "⠃⠗⠊⠛⠯⠎" }, { "input": "brigantine", "output": "⠃⠗⠊⠛â â â žâ ”â ‘" }, { "input": "brigantine's", "output": "⠃⠗⠊⠛â â â žâ ”â ‘â „â Ž" }, { "input": "brigantines", "output": "⠃⠗⠊⠛â â â žâ ”â ‘â Ž" }, { "input": "bright", "output": "â ƒâ â —" }, { "input": "brighten", "output": "â ƒâ â —â ¢" }, { "input": "brightened", "output": "â ƒâ â —⠢⠫" }, { "input": "brightener", "output": "â ƒâ â —⠢⠻" }, { "input": "brightener's", "output": "â ƒâ â —⠢⠻⠄⠎" }, { "input": "brighteners", "output": "â ƒâ â —⠢⠻⠎" }, { "input": "brightening", "output": "â ƒâ â —⠢⠌" }, { "input": "brightens", "output": "â ƒâ â —⠢⠎" }, { "input": "brighter", "output": "â ƒâ â —â »" }, { "input": "brightest", "output": "â ƒâ â —â ‘â Œ" }, { "input": "brightly", "output": "â ƒâ â —⠇⠽" }, { "input": "brightness", "output": "â ƒâ â —â °â Ž" }, { "input": "brightness's", "output": "â ƒâ â —â °â Žâ „â Ž" }, { "input": "brights's", "output": "â ƒâ â —â Žâ „â Ž" }, { "input": "brigs", "output": "⠃⠗⠊⠛⠎" }, { "input": "brilliance", "output": "⠃⠗⠊⠇⠇⠊⠨⠑" }, { "input": "brilliance's", "output": "⠃⠗⠊⠇⠇⠊⠨⠑⠄⠎" }, { "input": "brilliancy", "output": "⠃⠗⠊⠇⠇⠊â â â ‰â ½" }, { "input": "brilliancy's", "output": "⠃⠗⠊⠇⠇⠊â â â ‰â ½â „â Ž" }, { "input": "brilliant", "output": "⠃⠗⠊⠇⠇⠊â â â ž" }, { "input": "brilliant's", "output": "⠃⠗⠊⠇⠇⠊â â â žâ „â Ž" }, { "input": "brilliantine's", "output": "⠃⠗⠊⠇⠇⠊â â â žâ ”â ‘â „â Ž" }, { "input": "brilliantly", "output": "⠃⠗⠊⠇⠇⠊â â â žâ ‡â ½" }, { "input": "brilliants", "output": "⠃⠗⠊⠇⠇⠊â â â žâ Ž" }, { "input": "brim", "output": "⠃⠗⠊â " }, { "input": "brim's", "output": "⠃⠗⠊â â „â Ž" }, { "input": "brimful", "output": "⠃⠗⠊â â °â ‡" }, { "input": "brimless", "output": "⠃⠗⠊â â ¨â Ž" }, { "input": "brimmed", "output": "⠃⠗⠊â â â «" }, { "input": "brimming", "output": "⠃⠗⠊â â â Œ" }, { "input": "brims", "output": "⠃⠗⠊â â Ž" }, { "input": "brimstone", "output": "⠃⠗⠊â â Œâ â •" }, { "input": "brimstone's", "output": "⠃⠗⠊â â Œâ â •â „â Ž" }, { "input": "brindle", "output": "⠃⠗⠔⠙⠇⠑" }, { "input": "brindle's", "output": "⠃⠗⠔⠙⠇⠑⠄⠎" }, { "input": "brindled", "output": "⠃⠗⠔⠙⠇⠫" }, { "input": "brine", "output": "⠃⠗⠔⠑" }, { "input": "brine's", "output": "⠃⠗⠔⠑⠄⠎" }, { "input": "bring", "output": "⠃⠗⠌" }, { "input": "bringer", "output": "⠃⠗⠌⠻" }, { "input": "bringer's", "output": "⠃⠗⠌⠻⠄⠎" }, { "input": "bringers", "output": "⠃⠗⠌⠻⠎" }, { "input": "bringing", "output": "⠃⠗⠌⠌" }, { "input": "brings", "output": "⠃⠗⠌⠎" }, { "input": "brinier", "output": "⠃⠗⠔⠊⠻" }, { "input": "briniest", "output": "⠃⠗⠔⠊⠑⠌" }, { "input": "brininess", "output": "⠃⠗⠔⠊⠰⠎" }, { "input": "brininess's", "output": "⠃⠗⠔⠊⠰⠎⠄⠎" }, { "input": "brink", "output": "⠃⠗⠔⠅" }, { "input": "brink's", "output": "⠃⠗⠔⠅⠄⠎" }, { "input": "brinkmanship", "output": "⠃⠗⠔⠅â â â â ©â Šâ " }, { "input": "brinkmanship's", "output": "⠃⠗⠔⠅â â â â ©â Šâ â „â Ž" }, { "input": "brinks", "output": "⠃⠗⠔⠅⠎" }, { "input": "briny", "output": "⠃⠗⠔⠽" }, { "input": "briquette", "output": "⠃⠗⠊⠟⠥⠑⠞⠞⠑" }, { "input": "briquette's", "output": "⠃⠗⠊⠟⠥⠑⠞⠞⠑⠄⠎" }, { "input": "briquettes", "output": "⠃⠗⠊⠟⠥⠑⠞⠞⠑⠎" }, { "input": "brisk", "output": "⠃⠗⠊⠎⠅" }, { "input": "brisked", "output": "⠃⠗⠊⠎⠅⠫" }, { "input": "brisker", "output": "⠃⠗⠊⠎⠅⠻" }, { "input": "briskest", "output": "⠃⠗⠊⠎⠅⠑⠌" }, { "input": "brisket", "output": "⠃⠗⠊⠎⠅⠑⠞" }, { "input": "brisket's", "output": "⠃⠗⠊⠎⠅⠑⠞⠄⠎" }, { "input": "briskets", "output": "⠃⠗⠊⠎⠅⠑⠞⠎" }, { "input": "brisking", "output": "⠃⠗⠊⠎⠅⠌" }, { "input": "briskly", "output": "⠃⠗⠊⠎⠅⠇⠽" }, { "input": "briskness", "output": "⠃⠗⠊⠎⠅⠰⠎" }, { "input": "briskness's", "output": "⠃⠗⠊⠎⠅⠰⠎⠄⠎" }, { "input": "brisks", "output": "⠃⠗⠊⠎⠅⠎" }, { "input": "bristle", "output": "⠃⠗⠊⠌⠇⠑" }, { "input": "bristle's", "output": "⠃⠗⠊⠌⠇⠑⠄⠎" }, { "input": "bristled", "output": "⠃⠗⠊⠌⠇⠫" }, { "input": "bristles", "output": "⠃⠗⠊⠌⠇⠑⠎" }, { "input": "bristlier", "output": "⠃⠗⠊⠌⠇⠊⠻" }, { "input": "bristliest", "output": "⠃⠗⠊⠌⠇⠊⠑⠌" }, { "input": "bristling", "output": "⠃⠗⠊⠌⠇⠌" }, { "input": "bristly", "output": "⠃⠗⠊⠌⠇⠽" }, { "input": "britches", "output": "⠃⠗⠊⠞⠡⠑⠎" }, { "input": "britches's", "output": "⠃⠗⠊⠞⠡⠑⠎⠄⠎" }, { "input": "brittle", "output": "⠃⠗⠊⠞⠞⠇⠑" }, { "input": "brittle's", "output": "⠃⠗⠊⠞⠞⠇⠑⠄⠎" }, { "input": "brittleness", "output": "⠃⠗⠊⠞⠞⠇⠑⠰⠎" }, { "input": "brittleness's", "output": "⠃⠗⠊⠞⠞⠇⠑⠰⠎⠄⠎" }, { "input": "brittler", "output": "⠃⠗⠊⠞⠞⠇⠻" }, { "input": "brittlest", "output": "⠃⠗⠊⠞⠞⠇⠑⠌" }, { "input": "broach", "output": "⠃⠗⠕â â ¡" }, { "input": "broach's", "output": "⠃⠗⠕â â ¡â „â Ž" }, { "input": "broached", "output": "⠃⠗⠕â â ¡â «" }, { "input": "broaches", "output": "⠃⠗⠕â â ¡â ‘â Ž" }, { "input": "broaching", "output": "⠃⠗⠕â â ¡â Œ" }, { "input": "broad", "output": "⠃⠗⠕â â ™" }, { "input": "broad's", "output": "⠃⠗⠕â â ™â „â Ž" }, { "input": "broadband", "output": "⠃⠗⠕â â ™â ƒâ ¯" }, { "input": "broadband's", "output": "⠃⠗⠕â â ™â ƒâ ¯â „â Ž" }, { "input": "broadcast", "output": "⠃⠗⠕â â ™â ‰â â Œ" }, { "input": "broadcast's", "output": "⠃⠗⠕â â ™â ‰â â Œâ „â Ž" }, { "input": "broadcaster", "output": "⠃⠗⠕â â ™â ‰â â Œâ »" }, { "input": "broadcaster's", "output": "⠃⠗⠕â â ™â ‰â â Œâ »â „â Ž" }, { "input": "broadcasters", "output": "⠃⠗⠕â â ™â ‰â â Œâ »â Ž" }, { "input": "broadcasting", "output": "⠃⠗⠕â â ™â ‰â â Œâ Œ" }, { "input": "broadcasting's", "output": "⠃⠗⠕â â ™â ‰â â Œâ Œâ „â Ž" }, { "input": "broadcasts", "output": "⠃⠗⠕â â ™â ‰â â Œâ Ž" }, { "input": "broadcloth", "output": "⠃⠗⠕â â ™â ‰â ‡â •â ¹" }, { "input": "broadcloth's", "output": "⠃⠗⠕â â ™â ‰â ‡â •⠹⠄⠎" }, { "input": "broaden", "output": "⠃⠗⠕â â ™â ¢" }, { "input": "broadened", "output": "⠃⠗⠕â â ™â ¢â «" }, { "input": "broadening", "output": "⠃⠗⠕â â ™â ¢â Œ" }, { "input": "broadens", "output": "⠃⠗⠕â â ™â ¢â Ž" }, { "input": "broader", "output": "⠃⠗⠕â â ™â »" }, { "input": "broadest", "output": "⠃⠗⠕â â ™â ‘â Œ" }, { "input": "broadloom", "output": "⠃⠗⠕â â ™â ‡â •â •â " }, { "input": "broadloom's", "output": "⠃⠗⠕â â ™â ‡â •â •â â „â Ž" }, { "input": "broadly", "output": "⠃⠗⠕â â ™â ‡â ½" }, { "input": "broadness", "output": "⠃⠗⠕â â ™â °â Ž" }, { "input": "broadness's", "output": "⠃⠗⠕â â ™â °â Žâ „â Ž" }, { "input": "broads", "output": "⠃⠗⠕â â ™â Ž" }, { "input": "broadside", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â ‘" }, { "input": "broadside's", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â ‘â „â Ž" }, { "input": "broadsided", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â «" }, { "input": "broadsides", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â ‘â Ž" }, { "input": "broadsiding", "output": "⠃⠗⠕â â ™â Žâ Šâ ™â Œ" }, { "input": "broadsword", "output": "⠃⠗⠕â â ™â Žâ ºâ •â —â ™" }, { "input": "broadsword's", "output": "⠃⠗⠕â â ™â Žâ ºâ •⠗⠙⠄⠎" }, { "input": "broadswords", "output": "⠃⠗⠕â â ™â Žâ ºâ •⠗⠙⠎" }, { "input": "brocade", "output": "⠃⠗⠕⠉â â ™â ‘" }, { "input": "brocade's", "output": "⠃⠗⠕⠉â â ™â ‘â „â Ž" }, { "input": "brocaded", "output": "⠃⠗⠕⠉â â ™â «" }, { "input": "brocades", "output": "⠃⠗⠕⠉â â ™â ‘â Ž" }, { "input": "brocading", "output": "⠃⠗⠕⠉â â ™â Œ" }, { "input": "broccoli", "output": "⠃⠗⠕⠒⠕⠇⠊" }, { "input": "broccoli's", "output": "⠃⠗⠕⠒⠕⠇⠊⠄⠎" }, { "input": "brochette", "output": "⠃⠗⠕⠡⠑⠞⠞⠑" }, { "input": "brochette's", "output": "⠃⠗⠕⠡⠑⠞⠞⠑⠄⠎" }, { "input": "brochettes", "output": "⠃⠗⠕⠡⠑⠞⠞⠑⠎" }, { "input": "brochure", "output": "⠃⠗⠕⠡⠥⠗⠑" }, { "input": "brochure's", "output": "⠃⠗⠕⠡⠥⠗⠑⠄⠎" }, { "input": "brochures", "output": "⠃⠗⠕⠡⠥⠗⠑⠎" }, { "input": "brogan", "output": "⠃⠗⠕⠛â â " }, { "input": "brogan's", "output": "⠃⠗⠕⠛â â â „â Ž" }, { "input": "brogans", "output": "⠃⠗⠕⠛â â â Ž" }, { "input": "brogue", "output": "⠃⠗⠕⠛⠥⠑" }, { "input": "brogue's", "output": "⠃⠗⠕⠛⠥⠑⠄⠎" }, { "input": "brogues", "output": "⠃⠗⠕⠛⠥⠑⠎" }, { "input": "broil", "output": "⠃⠗⠕⠊⠇" }, { "input": "broil's", "output": "⠃⠗⠕⠊⠇⠄⠎" }, { "input": "broiled", "output": "⠃⠗⠕⠊⠇⠫" }, { "input": "broiler", "output": "⠃⠗⠕⠊⠇⠻" }, { "input": "broiler's", "output": "⠃⠗⠕⠊⠇⠻⠄⠎" }, { "input": "broilers", "output": "⠃⠗⠕⠊⠇⠻⠎" }, { "input": "broiling", "output": "⠃⠗⠕⠊⠇⠌" }, { "input": "broils", "output": "⠃⠗⠕⠊⠇⠎" }, { "input": "broke", "output": "⠃⠗⠕⠅⠑" }, { "input": "broken", "output": "⠃⠗⠕⠅⠢" }, { "input": "brokenhearted", "output": "⠃⠗⠕⠅⠢⠓⠑⠜⠞⠫" }, { "input": "brokenheartedly", "output": "⠃⠗⠕⠅⠢⠓⠑⠜⠞⠫⠇⠽" }, { "input": "brokenly", "output": "⠃⠗⠕⠅⠢⠇⠽" }, { "input": "brokenness", "output": "⠃⠗⠕⠅⠢⠰⠎" }, { "input": "brokenness's", "output": "⠃⠗⠕⠅⠢⠰⠎⠄⠎" }, { "input": "broker", "output": "⠃⠗⠕⠅⠻" }, { "input": "broker's", "output": "⠃⠗⠕⠅⠻⠄⠎" }, { "input": "brokerage", "output": "⠃⠗⠕⠅⠻â â ›â ‘" }, { "input": "brokerage's", "output": "⠃⠗⠕⠅⠻â â ›â ‘â „â Ž" }, { "input": "brokerages", "output": "⠃⠗⠕⠅⠻â â ›â ‘â Ž" }, { "input": "brokered", "output": "⠃⠗⠕⠅⠻⠫" }, { "input": "brokering", "output": "⠃⠗⠕⠅⠻⠌" }, { "input": "brokers", "output": "⠃⠗⠕⠅⠻⠎" }, { "input": "bromide", "output": "⠃⠗⠕â â Šâ ™â ‘" }, { "input": "bromide's", "output": "⠃⠗⠕â â Šâ ™â ‘â „â Ž" }, { "input": "bromides", "output": "⠃⠗⠕â â Šâ ™â ‘â Ž" }, { "input": "bromidic", "output": "⠃⠗⠕â â Šâ ™â Šâ ‰" }, { "input": "bromine", "output": "⠃⠗⠕â â ”â ‘" }, { "input": "bromine's", "output": "⠃⠗⠕â â ”â ‘â „â Ž" }, { "input": "bronc", "output": "⠃⠗⠕â â ‰" }, { "input": "bronc's", "output": "⠃⠗⠕â â ‰â „â Ž" }, { "input": "bronchi", "output": "⠃⠗⠕â â ¡â Š" }, { "input": "bronchial", "output": "⠃⠗⠕â â ¡â Šâ â ‡" }, { "input": "bronchitis", "output": "⠃⠗⠕â â ¡â Šâ žâ Šâ Ž" }, { "input": "bronchitis's", "output": "⠃⠗⠕â â ¡â Šâ žâ Šâ Žâ „â Ž" }, { "input": "bronchus", "output": "⠃⠗⠕â â ¡â ¥â Ž" }, { "input": "bronchus's", "output": "⠃⠗⠕â â ¡â ¥â Žâ „â Ž" }, { "input": "bronco", "output": "⠃⠗⠕â â ‰â •" }, { "input": "bronco's", "output": "⠃⠗⠕â â ‰â •â „â Ž" }, { "input": "broncobuster", "output": "⠃⠗⠕â â ‰â •⠃⠥⠌⠻" }, { "input": "broncobuster's", "output": "⠃⠗⠕â â ‰â •⠃⠥⠌⠻⠄⠎" }, { "input": "broncobusters", "output": "⠃⠗⠕â â ‰â •⠃⠥⠌⠻⠎" }, { "input": "broncos", "output": "⠃⠗⠕â â ‰â •â Ž" }, { "input": "broncs", "output": "⠃⠗⠕â â ‰â Ž" }, { "input": "brontosaur", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —" }, { "input": "brontosaur's", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —â „â Ž" }, { "input": "brontosaurs", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —â Ž" }, { "input": "brontosaurus", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —⠥⠎" }, { "input": "brontosaurus's", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —⠥⠎⠄⠎" }, { "input": "brontosauruses", "output": "⠃⠗⠕â â žâ •â Žâ â ¥â —⠥⠎⠑⠎" }, { "input": "bronze", "output": "⠃⠗⠕â â µâ ‘" }, { "input": "bronze's", "output": "⠃⠗⠕â â µâ ‘â „â Ž" }, { "input": "bronzed", "output": "⠃⠗⠕â â µâ «" }, { "input": "bronzes", "output": "⠃⠗⠕â â µâ ‘â Ž" }, { "input": "bronzing", "output": "⠃⠗⠕â â µâ Œ" }, { "input": "brooch", "output": "⠃⠗⠕⠕⠡" }, { "input": "brooch's", "output": "⠃⠗⠕⠕⠡⠄⠎" }, { "input": "brooches", "output": "⠃⠗⠕⠕⠡⠑⠎" }, { "input": "brood", "output": "⠃⠗⠕⠕⠙" }, { "input": "brood's", "output": "⠃⠗⠕⠕⠙⠄⠎" }, { "input": "brooded", "output": "⠃⠗⠕⠕⠙⠫" }, { "input": "brooder", "output": "⠃⠗⠕⠕⠙⠻" }, { "input": "brooder's", "output": "⠃⠗⠕⠕⠙⠻⠄⠎" }, { "input": "brooders", "output": "⠃⠗⠕⠕⠙⠻⠎" }, { "input": "broodier", "output": "⠃⠗⠕⠕⠙⠊⠻" }, { "input": "broodiest", "output": "⠃⠗⠕⠕⠙⠊⠑⠌" }, { "input": "brooding", "output": "⠃⠗⠕⠕⠙⠌" }, { "input": "brooding's", "output": "⠃⠗⠕⠕⠙⠌⠄⠎" }, { "input": "broodingly", "output": "⠃⠗⠕⠕⠙⠌⠇⠽" }, { "input": "broodmare", "output": "⠃⠗⠕⠕⠙â â œâ ‘" }, { "input": "broodmare's", "output": "⠃⠗⠕⠕⠙â â œâ ‘â „â Ž" }, { "input": "broodmares", "output": "⠃⠗⠕⠕⠙â â œâ ‘â Ž" }, { "input": "broods", "output": "⠃⠗⠕⠕⠙⠎" }, { "input": "broody's", "output": "⠃⠗⠕⠕⠙⠽⠄⠎" }, { "input": "brook", "output": "⠃⠗⠕⠕⠅" }, { "input": "brook's", "output": "⠃⠗⠕⠕⠅⠄⠎" }, { "input": "brooked", "output": "⠃⠗⠕⠕⠅⠫" }, { "input": "brooking", "output": "⠃⠗⠕⠕⠅⠌" }, { "input": "brooklet", "output": "⠃⠗⠕⠕⠅⠇⠑⠞" }, { "input": "brooklet's", "output": "⠃⠗⠕⠕⠅⠇⠑⠞⠄⠎" }, { "input": "brooklets", "output": "⠃⠗⠕⠕⠅⠇⠑⠞⠎" }, { "input": "brooks", "output": "⠃⠗⠕⠕⠅⠎" }, { "input": "broom", "output": "⠃⠗⠕⠕â " }, { "input": "broom's", "output": "⠃⠗⠕⠕â â „â Ž" }, { "input": "brooms", "output": "⠃⠗⠕⠕â â Ž" }, { "input": "broomstick", "output": "⠃⠗⠕⠕â â Œâ Šâ ‰â …" }, { "input": "broomstick's", "output": "⠃⠗⠕⠕â â Œâ Šâ ‰â …â „â Ž" }, { "input": "broomsticks", "output": "⠃⠗⠕⠕â â Œâ Šâ ‰â …â Ž" }, { "input": "broth", "output": "⠃⠗⠕⠹" }, { "input": "broth's", "output": "⠃⠗⠕⠹⠄⠎" }, { "input": "brothel", "output": "⠃⠗⠕⠮⠇" }, { "input": "brothel's", "output": "⠃⠗⠕⠮⠇⠄⠎" }, { "input": "brothels", "output": "⠃⠗⠕⠮⠇⠎" }, { "input": "brother", "output": "⠃⠗⠕⠮⠗" }, { "input": "brother's", "output": "⠃⠗⠕⠮⠗⠄⠎" }, { "input": "brotherhood", "output": "⠃⠗⠕⠮⠗⠓⠕⠕⠙" }, { "input": "brotherhood's", "output": "⠃⠗⠕⠮⠗⠓⠕⠕⠙⠄⠎" }, { "input": "brotherhoods", "output": "⠃⠗⠕⠮⠗⠓⠕⠕⠙⠎" }, { "input": "brotherliness", "output": "⠃⠗⠕⠮⠗⠇⠊⠰⠎" }, { "input": "brotherliness's", "output": "⠃⠗⠕⠮⠗⠇⠊⠰⠎⠄⠎" }, { "input": "brotherly", "output": "⠃⠗⠕⠮⠗⠇⠽" }, { "input": "brothers", "output": "⠃⠗⠕⠮⠗⠎" }, { "input": "broths", "output": "⠃⠗⠕⠹⠎" }, { "input": "brought", "output": "⠃⠗â â ³" }, { "input": "brouhaha", "output": "⠃⠗⠳⠓â â “â " }, { "input": "brouhaha's", "output": "⠃⠗⠳⠓â â “â â „â Ž" }, { "input": "brouhahas", "output": "⠃⠗⠳⠓â â “â â Ž" }, { "input": "brow", "output": "⠃⠗⠪" }, { "input": "brow's", "output": "⠃⠗⠪⠄⠎" }, { "input": "browbeat", "output": "⠃⠗⠪⠃⠂⠞" }, { "input": "browbeaten", "output": "⠃⠗⠪⠃⠂⠞⠢" }, { "input": "browbeating", "output": "⠃⠗⠪⠃⠂⠞⠌" }, { "input": "browbeats", "output": "⠃⠗⠪⠃⠂⠞⠎" }, { "input": "brown", "output": "⠃⠗⠪â " }, { "input": "brown's", "output": "⠃⠗⠪â â „â Ž" }, { "input": "browned", "output": "⠃⠗⠪â â «" }, { "input": "browner", "output": "⠃⠗⠪â â »" }, { "input": "brownest", "output": "⠃⠗⠪â â ‘â Œ" }, { "input": "brownie", "output": "⠃⠗⠪â â Šâ ‘" }, { "input": "brownie's", "output": "⠃⠗⠪â â Šâ ‘â „â Ž" }, { "input": "brownies", "output": "⠃⠗⠪â â Šâ ‘â Ž" }, { "input": "browning", "output": "⠃⠗⠪â â Œ" }, { "input": "brownish", "output": "⠃⠗⠪â â Šâ ©" }, { "input": "brownness", "output": "⠃⠗⠪â â °â Ž" }, { "input": "brownness's", "output": "⠃⠗⠪â â °â Žâ „â Ž" }, { "input": "brownout", "output": "⠃⠗⠪â â ³â ž" }, { "input": "brownout's", "output": "⠃⠗⠪â â ³â žâ „â Ž" }, { "input": "brownouts", "output": "⠃⠗⠪â â ³â žâ Ž" }, { "input": "browns", "output": "⠃⠗⠪â â Ž" }, { "input": "brownstone", "output": "⠃⠗⠪â â Œâ â •" }, { "input": "brownstone's", "output": "⠃⠗⠪â â Œâ â •â „â Ž" }, { "input": "brownstones", "output": "⠃⠗⠪â â Œâ â •â Ž" }, { "input": "brows", "output": "⠃⠗⠪⠎" }, { "input": "browse", "output": "⠃⠗⠪⠎⠑" }, { "input": "browse's", "output": "⠃⠗⠪⠎⠑⠄⠎" }, { "input": "browsed", "output": "⠃⠗⠪⠎⠫" }, { "input": "browser", "output": "⠃⠗⠪⠎⠻" }, { "input": "browser's", "output": "⠃⠗⠪⠎⠻⠄⠎" }, { "input": "browsers", "output": "⠃⠗⠪⠎⠻⠎" }, { "input": "browses", "output": "⠃⠗⠪⠎⠑⠎" }, { "input": "browsing", "output": "⠃⠗⠪⠎⠌" }, { "input": "brr", "output": "⠃⠗⠗" }, { "input": "bruin", "output": "⠃⠗⠥⠔" }, { "input": "bruin's", "output": "⠃⠗⠥⠔⠄⠎" }, { "input": "bruins", "output": "⠃⠗⠥⠔⠎" }, { "input": "bruise", "output": "⠃⠗⠥⠊⠎⠑" }, { "input": "bruise's", "output": "⠃⠗⠥⠊⠎⠑⠄⠎" }, { "input": "bruised", "output": "⠃⠗⠥⠊⠎⠫" }, { "input": "bruiser", "output": "⠃⠗⠥⠊⠎⠻" }, { "input": "bruiser's", "output": "⠃⠗⠥⠊⠎⠻⠄⠎" }, { "input": "bruisers", "output": "⠃⠗⠥⠊⠎⠻⠎" }, { "input": "bruises", "output": "⠃⠗⠥⠊⠎⠑⠎" }, { "input": "bruising", "output": "⠃⠗⠥⠊⠎⠌" }, { "input": "bruising's", "output": "⠃⠗⠥⠊⠎⠌⠄⠎" }, { "input": "brunch", "output": "⠃⠗⠥â â ¡" }, { "input": "brunch's", "output": "⠃⠗⠥â â ¡â „â Ž" }, { "input": "brunched", "output": "⠃⠗⠥â â ¡â «" }, { "input": "brunches", "output": "⠃⠗⠥â â ¡â ‘â Ž" }, { "input": "brunching", "output": "⠃⠗⠥â â ¡â Œ" }, { "input": "brunet", "output": "⠃⠗⠥â â ‘â ž" }, { "input": "brunet's", "output": "⠃⠗⠥â â ‘â žâ „â Ž" }, { "input": "brunets", "output": "⠃⠗⠥â â ‘â žâ Ž" }, { "input": "brunette", "output": "⠃⠗⠥â â ‘â žâ žâ ‘" }, { "input": "brunette's", "output": "⠃⠗⠥â â ‘â žâ žâ ‘â „â Ž" }, { "input": "brunettes", "output": "⠃⠗⠥â â ‘â žâ žâ ‘â Ž" }, { "input": "brunt", "output": "⠃⠗⠥â â ž" }, { "input": "brunt's", "output": "⠃⠗⠥â â žâ „â Ž" }, { "input": "brush", "output": "⠃⠗⠥⠩" }, { "input": "brush's", "output": "⠃⠗⠥⠩⠄⠎" }, { "input": "brushed", "output": "⠃⠗⠥⠩⠫" }, { "input": "brushes", "output": "⠃⠗⠥⠩⠑⠎" }, { "input": "brushing", "output": "⠃⠗⠥⠩⠌" }, { "input": "brushoff", "output": "⠃⠗⠥⠩⠷⠋" }, { "input": "brushoff's", "output": "⠃⠗⠥⠩⠷⠋⠄⠎" }, { "input": "brushoffs", "output": "⠃⠗⠥⠩⠷⠋⠎" }, { "input": "brushwood", "output": "⠃⠗⠥⠩⠺⠕⠕⠙" }, { "input": "brushwood's", "output": "⠃⠗⠥⠩⠺⠕⠕⠙⠄⠎" }, { "input": "brushwork's", "output": "⠃⠗⠥⠩â â ºâ „â Ž" }, { "input": "brusque", "output": "⠃⠗⠥⠎⠟⠥⠑" }, { "input": "brusquely", "output": "⠃⠗⠥⠎⠟⠥⠑⠇⠽" }, { "input": "brusqueness", "output": "⠃⠗⠥⠎⠟⠥⠑⠰⠎" }, { "input": "brusqueness's", "output": "⠃⠗⠥⠎⠟⠥⠑⠰⠎⠄⠎" }, { "input": "brusquer", "output": "⠃⠗⠥⠎⠟⠥⠻" }, { "input": "brusquest", "output": "⠃⠗⠥⠎⠟⠥⠑⠌" }, { "input": "brutal", "output": "⠃⠗⠥⠞â â ‡" }, { "input": "brutalities", "output": "⠃⠗⠥⠞â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "brutality", "output": "⠃⠗⠥⠞â â ‡â °â ½" }, { "input": "brutality's", "output": "⠃⠗⠥⠞â â ‡â °â ½â „â Ž" }, { "input": "brutalization", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ  â " }, { "input": "brutalization's", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ  â â „â Ž" }, { "input": "brutalize", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ ‘" }, { "input": "brutalized", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ «" }, { "input": "brutalizes", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ ‘â Ž" }, { "input": "brutalizing", "output": "⠃⠗⠥⠞â â ‡â Šâ µâ Œ" }, { "input": "brutally", "output": "⠃⠗⠥⠞⠠⠽" }, { "input": "brute", "output": "⠃⠗⠥⠞⠑" }, { "input": "brute's", "output": "⠃⠗⠥⠞⠑⠄⠎" }, { "input": "brutes", "output": "⠃⠗⠥⠞⠑⠎" }, { "input": "brutish", "output": "⠃⠗⠥⠞⠊⠩" }, { "input": "brutishly", "output": "⠃⠗⠥⠞⠊⠩⠇⠽" }, { "input": "brutishness's", "output": "⠃⠗⠥⠞⠊⠩⠰⠎⠄⠎" }, { "input": "bubble", "output": "⠃⠥⠃⠼" }, { "input": "bubble's", "output": "⠃⠥⠃⠼⠄⠎" }, { "input": "bubbled", "output": "⠃⠥⠃⠼⠙" }, { "input": "bubblegum's", "output": "⠃⠥⠃⠼⠛⠥â â „â Ž" }, { "input": "bubbles", "output": "⠃⠥⠃⠼⠎" }, { "input": "bubblier", "output": "⠃⠥⠆⠇⠊⠻" }, { "input": "bubbliest", "output": "⠃⠥⠆⠇⠊⠑⠌" }, { "input": "bubbling", "output": "⠃⠥⠆⠇⠌" }, { "input": "bubbly", "output": "⠃⠥⠆⠇⠽" }, { "input": "bubbly's", "output": "⠃⠥⠆⠇⠽⠄⠎" }, { "input": "bubo", "output": "⠃⠥⠃⠕" }, { "input": "bubo's", "output": "⠃⠥⠃⠕⠄⠎" }, { "input": "buboes", "output": "⠃⠥⠃⠕⠑⠎" }, { "input": "buccaneer", "output": "⠃⠥⠒â â â ‘â »" }, { "input": "buccaneer's", "output": "⠃⠥⠒â â â ‘⠻⠄⠎" }, { "input": "buccaneered", "output": "⠃⠥⠒â â â ‘⠻⠫" }, { "input": "buccaneering", "output": "⠃⠥⠒â â â ‘⠻⠌" }, { "input": "buccaneers", "output": "⠃⠥⠒â â â ‘⠻⠎" }, { "input": "buck", "output": "⠃⠥⠉⠅" }, { "input": "buck's", "output": "⠃⠥⠉⠅⠄⠎" }, { "input": "buckaroo", "output": "⠃⠥⠉⠅⠜⠕⠕" }, { "input": "buckaroo's", "output": "⠃⠥⠉⠅⠜⠕⠕⠄⠎" }, { "input": "buckaroos", "output": "⠃⠥⠉⠅⠜⠕⠕⠎" }, { "input": "buckboard", "output": "⠃⠥⠉⠅⠃⠕⠜⠙" }, { "input": "buckboard's", "output": "⠃⠥⠉⠅⠃⠕⠜⠙⠄⠎" }, { "input": "buckboards", "output": "⠃⠥⠉⠅⠃⠕⠜⠙⠎" }, { "input": "bucked", "output": "⠃⠥⠉⠅⠫" }, { "input": "bucket", "output": "⠃⠥⠉⠅⠑⠞" }, { "input": "bucket's", "output": "⠃⠥⠉⠅⠑⠞⠄⠎" }, { "input": "bucketed", "output": "⠃⠥⠉⠅⠑⠞⠫" }, { "input": "bucketful", "output": "⠃⠥⠉⠅⠑⠞⠰⠇" }, { "input": "bucketful's", "output": "⠃⠥⠉⠅⠑⠞⠰⠇⠄⠎" }, { "input": "bucketfuls", "output": "⠃⠥⠉⠅⠑⠞⠰⠇⠎" }, { "input": "bucketing", "output": "⠃⠥⠉⠅⠑⠞⠌" }, { "input": "buckets", "output": "⠃⠥⠉⠅⠑⠞⠎" }, { "input": "buckeye", "output": "⠃⠥⠉⠅⠑⠽⠑" }, { "input": "buckeye's", "output": "⠃⠥⠉⠅⠑⠽⠑⠄⠎" }, { "input": "buckeyes", "output": "⠃⠥⠉⠅⠑⠽⠑⠎" }, { "input": "bucking", "output": "⠃⠥⠉⠅⠌" }, { "input": "buckle", "output": "⠃⠥⠉⠅⠇⠑" }, { "input": "buckle's", "output": "⠃⠥⠉⠅⠇⠑⠄⠎" }, { "input": "buckled", "output": "⠃⠥⠉⠅⠇⠫" }, { "input": "buckler", "output": "⠃⠥⠉⠅⠇⠻" }, { "input": "buckler's", "output": "⠃⠥⠉⠅⠇⠻⠄⠎" }, { "input": "bucklers", "output": "⠃⠥⠉⠅⠇⠻⠎" }, { "input": "buckles", "output": "⠃⠥⠉⠅⠇⠑⠎" }, { "input": "buckling", "output": "⠃⠥⠉⠅⠇⠌" }, { "input": "buckram", "output": "⠃⠥⠉⠅⠗â â " }, { "input": "buckram's", "output": "⠃⠥⠉⠅⠗â â â „â Ž" }, { "input": "bucks", "output": "⠃⠥⠉⠅⠎" }, { "input": "bucksaw", "output": "⠃⠥⠉⠅⠎â â º" }, { "input": "bucksaw's", "output": "⠃⠥⠉⠅⠎â â ºâ „â Ž" }, { "input": "bucksaws", "output": "⠃⠥⠉⠅⠎â â ºâ Ž" }, { "input": "buckshot", "output": "⠃⠥⠉⠅⠩⠕⠞" }, { "input": "buckshot's", "output": "⠃⠥⠉⠅⠩⠕⠞⠄⠎" }, { "input": "buckskin", "output": "⠃⠥⠉⠅⠎⠅⠔" }, { "input": "buckskin's", "output": "⠃⠥⠉⠅⠎⠅⠔⠄⠎" }, { "input": "buckskins", "output": "⠃⠥⠉⠅⠎⠅⠔⠎" }, { "input": "buckteeth", "output": "⠃⠥⠉⠅⠞⠑⠑⠹" }, { "input": "bucktooth", "output": "⠃⠥⠉⠅⠞⠕⠕⠹" }, { "input": "bucktooth's", "output": "⠃⠥⠉⠅⠞⠕⠕⠹⠄⠎" }, { "input": "bucktoothed", "output": "⠃⠥⠉⠅⠞⠕⠕⠮⠙" }, { "input": "buckwheat", "output": "⠃⠥⠉⠅⠱⠂⠞" }, { "input": "buckwheat's", "output": "⠃⠥⠉⠅⠱⠂⠞⠄⠎" }, { "input": "bucolic", "output": "⠃⠥⠉⠕⠇⠊⠉" }, { "input": "bucolic's", "output": "⠃⠥⠉⠕⠇⠊⠉⠄⠎" }, { "input": "bucolically", "output": "⠃⠥⠉⠕⠇⠊⠉⠠⠽" }, { "input": "bucolics", "output": "⠃⠥⠉⠕⠇⠊⠉⠎" }, { "input": "bud", "output": "⠃⠥⠙" }, { "input": "bud's", "output": "⠃⠥⠙⠄⠎" }, { "input": "budded", "output": "⠃⠥⠲⠫" }, { "input": "buddies", "output": "⠃⠥⠲⠊⠑⠎" }, { "input": "budding", "output": "⠃⠥⠲⠌" }, { "input": "buddings", "output": "⠃⠥⠲⠌⠎" }, { "input": "buddy", "output": "⠃⠥⠲⠽" }, { "input": "buddy's", "output": "⠃⠥⠲⠽⠄⠎" }, { "input": "budge", "output": "⠃⠥⠙⠛⠑" }, { "input": "budged", "output": "⠃⠥⠙⠛⠫" }, { "input": "budgerigar", "output": "⠃⠥⠙⠛⠻⠊⠛⠜" }, { "input": "budgerigar's", "output": "⠃⠥⠙⠛⠻⠊⠛⠜⠄⠎" }, { "input": "budgerigars", "output": "⠃⠥⠙⠛⠻⠊⠛⠜⠎" }, { "input": "budges", "output": "⠃⠥⠙⠛⠑⠎" }, { "input": "budget", "output": "⠃⠥⠙⠛⠑⠞" }, { "input": "budget's", "output": "⠃⠥⠙⠛⠑⠞⠄⠎" }, { "input": "budgetary", "output": "⠃⠥⠙⠛⠑⠞⠜⠽" }, { "input": "budgeted", "output": "⠃⠥⠙⠛⠑⠞⠫" }, { "input": "budgeting", "output": "⠃⠥⠙⠛⠑⠞⠌" }, { "input": "budgets", "output": "⠃⠥⠙⠛⠑⠞⠎" }, { "input": "budgie", "output": "⠃⠥⠙⠛⠊⠑" }, { "input": "budgie's", "output": "⠃⠥⠙⠛⠊⠑⠄⠎" }, { "input": "budgies", "output": "⠃⠥⠙⠛⠊⠑⠎" }, { "input": "budging", "output": "⠃⠥⠙⠛⠌" }, { "input": "buds", "output": "⠃⠥⠙⠎" }, { "input": "buff", "output": "⠃⠥⠋⠋" }, { "input": "buff's", "output": "⠃⠥⠋⠋⠄⠎" }, { "input": "buffalo", "output": "⠃⠥⠖â â ‡â •" }, { "input": "buffalo's", "output": "⠃⠥⠖â â ‡â •â „â Ž" }, { "input": "buffaloed", "output": "⠃⠥⠖â â ‡â •â «" }, { "input": "buffaloes", "output": "⠃⠥⠖â â ‡â •â ‘â Ž" }, { "input": "buffaloing", "output": "⠃⠥⠖â â ‡â •â Œ" }, { "input": "buffed", "output": "⠃⠥⠖⠫" }, { "input": "buffer", "output": "⠃⠥⠖⠻" }, { "input": "buffer's", "output": "⠃⠥⠖⠻⠄⠎" }, { "input": "buffered", "output": "⠃⠥⠖⠻⠫" }, { "input": "buffering", "output": "⠃⠥⠖⠻⠌" }, { "input": "buffers", "output": "⠃⠥⠖⠻⠎" }, { "input": "buffet", "output": "⠃⠥⠖⠑⠞" }, { "input": "buffet's", "output": "⠃⠥⠖⠑⠞⠄⠎" }, { "input": "buffeted", "output": "⠃⠥⠖⠑⠞⠫" }, { "input": "buffeting", "output": "⠃⠥⠖⠑⠞⠌" }, { "input": "buffets", "output": "⠃⠥⠖⠑⠞⠎" }, { "input": "buffing", "output": "⠃⠥⠖⠌" }, { "input": "buffoon", "output": "⠃⠥⠖⠕⠕â " }, { "input": "buffoon's", "output": "⠃⠥⠖⠕⠕â â „â Ž" }, { "input": "buffoonery", "output": "⠃⠥⠖⠕⠕â â »â ½" }, { "input": "buffoonery's", "output": "⠃⠥⠖⠕⠕â â »â ½â „â Ž" }, { "input": "buffoonish", "output": "⠃⠥⠖⠕⠕â â Šâ ©" }, { "input": "buffoons", "output": "⠃⠥⠖⠕⠕â â Ž" }, { "input": "buffs", "output": "⠃⠥⠖⠎" }, { "input": "bug", "output": "⠃⠥⠛" }, { "input": "bug's", "output": "⠃⠥⠛⠄⠎" }, { "input": "bugaboo", "output": "⠃⠥⠛â â ƒâ •â •" }, { "input": "bugaboo's", "output": "⠃⠥⠛â â ƒâ •â •â „â Ž" }, { "input": "bugaboos", "output": "⠃⠥⠛â â ƒâ •â •â Ž" }, { "input": "bugbear", "output": "⠃⠥⠛⠃⠑⠜" }, { "input": "bugbear's", "output": "⠃⠥⠛⠃⠑⠜⠄⠎" }, { "input": "bugbears", "output": "⠃⠥⠛⠃⠑⠜⠎" }, { "input": "bugged", "output": "⠃⠥⠶⠫" }, { "input": "bugger", "output": "⠃⠥⠶⠻" }, { "input": "bugger's", "output": "⠃⠥⠶⠻⠄⠎" }, { "input": "buggers", "output": "⠃⠥⠶⠻⠎" }, { "input": "buggier", "output": "⠃⠥⠶⠊⠻" }, { "input": "buggies", "output": "⠃⠥⠶⠊⠑⠎" }, { "input": "buggiest", "output": "⠃⠥⠶⠊⠑⠌" }, { "input": "bugging", "output": "⠃⠥⠶⠌" }, { "input": "buggy", "output": "⠃⠥⠶⠽" }, { "input": "buggy's", "output": "⠃⠥⠶⠽⠄⠎" }, { "input": "bugle", "output": "⠃⠥⠛⠇⠑" }, { "input": "bugle's", "output": "⠃⠥⠛⠇⠑⠄⠎" }, { "input": "bugled", "output": "⠃⠥⠛⠇⠫" }, { "input": "bugler", "output": "⠃⠥⠛⠇⠻" }, { "input": "bugler's", "output": "⠃⠥⠛⠇⠻⠄⠎" }, { "input": "buglers", "output": "⠃⠥⠛⠇⠻⠎" }, { "input": "bugles", "output": "⠃⠥⠛⠇⠑⠎" }, { "input": "bugling", "output": "⠃⠥⠛⠇⠌" }, { "input": "bugs", "output": "⠃⠥⠛⠎" }, { "input": "build", "output": "⠃⠥⠊⠇⠙" }, { "input": "build's", "output": "⠃⠥⠊⠇⠙⠄⠎" }, { "input": "builder", "output": "⠃⠥⠊⠇⠙⠻" }, { "input": "builder's", "output": "⠃⠥⠊⠇⠙⠻⠄⠎" }, { "input": "builders", "output": "⠃⠥⠊⠇⠙⠻⠎" }, { "input": "building", "output": "⠃⠥⠊⠇⠙⠌" }, { "input": "building's", "output": "⠃⠥⠊⠇⠙⠌⠄⠎" }, { "input": "buildings", "output": "⠃⠥⠊⠇⠙⠌⠎" }, { "input": "builds", "output": "⠃⠥⠊⠇⠙⠎" }, { "input": "buildup", "output": "⠃⠥⠊⠇⠙⠥â " }, { "input": "buildup's", "output": "⠃⠥⠊⠇⠙⠥â â „â Ž" }, { "input": "buildups", "output": "⠃⠥⠊⠇⠙⠥â â Ž" }, { "input": "built", "output": "⠃⠥⠊⠇⠞" }, { "input": "bulb", "output": "⠃⠥⠇⠃" }, { "input": "bulb's", "output": "⠃⠥⠇⠃⠄⠎" }, { "input": "bulbous", "output": "⠃⠥⠇⠃⠳⠎" }, { "input": "bulbs", "output": "⠃⠥⠇⠃⠎" }, { "input": "bulge", "output": "⠃⠥⠇⠛⠑" }, { "input": "bulge's", "output": "⠃⠥⠇⠛⠑⠄⠎" }, { "input": "bulged", "output": "⠃⠥⠇⠛⠫" }, { "input": "bulges", "output": "⠃⠥⠇⠛⠑⠎" }, { "input": "bulgier", "output": "⠃⠥⠇⠛⠊⠻" }, { "input": "bulgiest", "output": "⠃⠥⠇⠛⠊⠑⠌" }, { "input": "bulging", "output": "⠃⠥⠇⠛⠌" }, { "input": "bulgy", "output": "⠃⠥⠇⠛⠽" }, { "input": "bulimarexia", "output": "⠃⠥⠇⠊â â œâ ‘â ­â Šâ " }, { "input": "bulimarexia's", "output": "⠃⠥⠇⠊â â œâ ‘â ­â Šâ â „â Ž" }, { "input": "bulimia", "output": "⠃⠥⠇⠊â â Šâ " }, { "input": "bulimia's", "output": "⠃⠥⠇⠊â â Šâ â „â Ž" }, { "input": "bulimic", "output": "⠃⠥⠇⠊â â Šâ ‰" }, { "input": "bulimic's", "output": "⠃⠥⠇⠊â â Šâ ‰â „â Ž" }, { "input": "bulimics", "output": "⠃⠥⠇⠊â â Šâ ‰â Ž" }, { "input": "bulk", "output": "⠃⠥⠇⠅" }, { "input": "bulk's", "output": "⠃⠥⠇⠅⠄⠎" }, { "input": "bulked", "output": "⠃⠥⠇⠅⠫" }, { "input": "bulkhead", "output": "⠃⠥⠇⠅⠓⠂⠙" }, { "input": "bulkhead's", "output": "⠃⠥⠇⠅⠓⠂⠙⠄⠎" }, { "input": "bulkheads", "output": "⠃⠥⠇⠅⠓⠂⠙⠎" }, { "input": "bulkier", "output": "⠃⠥⠇⠅⠊⠻" }, { "input": "bulkiest", "output": "⠃⠥⠇⠅⠊⠑⠌" }, { "input": "bulkiness", "output": "⠃⠥⠇⠅⠊⠰⠎" }, { "input": "bulkiness's", "output": "⠃⠥⠇⠅⠊⠰⠎⠄⠎" }, { "input": "bulking", "output": "⠃⠥⠇⠅⠌" }, { "input": "bulks", "output": "⠃⠥⠇⠅⠎" }, { "input": "bulky", "output": "⠃⠥⠇⠅⠽" }, { "input": "bull", "output": "⠃⠥⠇⠇" }, { "input": "bull's", "output": "⠃⠥⠇⠇⠄⠎" }, { "input": "bulldog", "output": "⠃⠥⠇⠇⠙⠕⠛" }, { "input": "bulldog's", "output": "⠃⠥⠇⠇⠙⠕⠛⠄⠎" }, { "input": "bulldogged", "output": "⠃⠥⠇⠇⠙⠕⠶⠫" }, { "input": "bulldogging", "output": "⠃⠥⠇⠇⠙⠕⠶⠌" }, { "input": "bulldogs", "output": "⠃⠥⠇⠇⠙⠕⠛⠎" }, { "input": "bulldoze", "output": "⠃⠥⠇⠇⠙⠕⠵⠑" }, { "input": "bulldozed", "output": "⠃⠥⠇⠇⠙⠕⠵⠫" }, { "input": "bulldozer", "output": "⠃⠥⠇⠇⠙⠕⠵⠻" }, { "input": "bulldozer's", "output": "⠃⠥⠇⠇⠙⠕⠵⠻⠄⠎" }, { "input": "bulldozers", "output": "⠃⠥⠇⠇⠙⠕⠵⠻⠎" }, { "input": "bulldozes", "output": "⠃⠥⠇⠇⠙⠕⠵⠑⠎" }, { "input": "bulldozing", "output": "⠃⠥⠇⠇⠙⠕⠵⠌" }, { "input": "bulled", "output": "⠃⠥⠇⠇⠫" }, { "input": "bullet", "output": "⠃⠥⠇⠇⠑⠞" }, { "input": "bullet's", "output": "⠃⠥⠇⠇⠑⠞⠄⠎" }, { "input": "bulletin", "output": "⠃⠥⠇⠇⠑⠞⠔" }, { "input": "bulletin's", "output": "⠃⠥⠇⠇⠑⠞⠔⠄⠎" }, { "input": "bulletined", "output": "⠃⠥⠇⠇⠑⠞⠔⠫" }, { "input": "bulletining", "output": "⠃⠥⠇⠇⠑⠞⠔⠌" }, { "input": "bulletins", "output": "⠃⠥⠇⠇⠑⠞⠔⠎" }, { "input": "bulletproof", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·" }, { "input": "bulletproofed", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·â «" }, { "input": "bulletproofing", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·â Œ" }, { "input": "bulletproofs", "output": "⠃⠥⠇⠇⠑⠞â â —â •â ·â Ž" }, { "input": "bullets", "output": "⠃⠥⠇⠇⠑⠞⠎" }, { "input": "bullfight", "output": "⠃⠥⠇⠇⠋⠊⠣⠞" }, { "input": "bullfight's", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠄⠎" }, { "input": "bullfighter", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠻" }, { "input": "bullfighter's", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠻⠄⠎" }, { "input": "bullfighters", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠻⠎" }, { "input": "bullfighting", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠌" }, { "input": "bullfighting's", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠌⠄⠎" }, { "input": "bullfights", "output": "⠃⠥⠇⠇⠋⠊⠣⠞⠎" }, { "input": "bullfinch", "output": "⠃⠥⠇⠇⠋⠔⠡" }, { "input": "bullfinch's", "output": "⠃⠥⠇⠇⠋⠔⠡⠄⠎" }, { "input": "bullfinches", "output": "⠃⠥⠇⠇⠋⠔⠡⠑⠎" }, { "input": "bullfrog", "output": "⠃⠥⠇⠇⠋⠗⠕⠛" }, { "input": "bullfrog's", "output": "⠃⠥⠇⠇⠋⠗⠕⠛⠄⠎" }, { "input": "bullfrogs", "output": "⠃⠥⠇⠇⠋⠗⠕⠛⠎" }, { "input": "bullhead", "output": "⠃⠥⠇⠇⠓⠂⠙" }, { "input": "bullhead's", "output": "⠃⠥⠇⠇⠓⠂⠙⠄⠎" }, { "input": "bullheaded", "output": "⠃⠥⠇⠇⠓⠂⠙⠫" }, { "input": "bullheadedly", "output": "⠃⠥⠇⠇⠓⠂⠙⠫⠇⠽" }, { "input": "bullheadedness", "output": "⠃⠥⠇⠇⠓⠂⠙⠫⠰⠎" }, { "input": "bullheadedness's", "output": "⠃⠥⠇⠇⠓⠂⠙⠫⠰⠎⠄⠎" }, { "input": "bullheads", "output": "⠃⠥⠇⠇⠓⠂⠙⠎" }, { "input": "bullhorn", "output": "⠃⠥⠇⠇⠓⠕⠗â " }, { "input": "bullhorn's", "output": "⠃⠥⠇⠇⠓⠕⠗â â „â Ž" }, { "input": "bullhorns", "output": "⠃⠥⠇⠇⠓⠕⠗â â Ž" }, { "input": "bullied", "output": "⠃⠥⠇⠇⠊⠫" }, { "input": "bullies", "output": "⠃⠥⠇⠇⠊⠑⠎" }, { "input": "bulling", "output": "⠃⠥⠇⠇⠌" }, { "input": "bullion", "output": "⠃⠥⠇⠇⠊⠕â " }, { "input": "bullion's", "output": "⠃⠥⠇⠇⠊⠕â â „â Ž" }, { "input": "bullish", "output": "⠃⠥⠇⠇⠊⠩" }, { "input": "bullishly", "output": "⠃⠥⠇⠇⠊⠩⠇⠽" }, { "input": "bullishness", "output": "⠃⠥⠇⠇⠊⠩⠰⠎" }, { "input": "bullishness's", "output": "⠃⠥⠇⠇⠊⠩⠰⠎⠄⠎" }, { "input": "bullock", "output": "⠃⠥⠇⠇⠕⠉⠅" }, { "input": "bullock's", "output": "⠃⠥⠇⠇⠕⠉⠅⠄⠎" }, { "input": "bullocks", "output": "⠃⠥⠇⠇⠕⠉⠅⠎" }, { "input": "bullpen", "output": "⠃⠥⠇⠇â â ¢" }, { "input": "bullpen's", "output": "⠃⠥⠇⠇â â ¢â „â Ž" }, { "input": "bullpens", "output": "⠃⠥⠇⠇â â ¢â Ž" }, { "input": "bullring", "output": "⠃⠥⠇⠇⠗⠌" }, { "input": "bullring's", "output": "⠃⠥⠇⠇⠗⠌⠄⠎" }, { "input": "bullrings", "output": "⠃⠥⠇⠇⠗⠌⠎" }, { "input": "bulls", "output": "⠃⠥⠇⠇⠎" }, { "input": "bullshit", "output": "⠃⠥⠇⠇⠩⠊⠞" }, { "input": "bullshit's", "output": "⠃⠥⠇⠇⠩⠊⠞⠄⠎" }, { "input": "bullshits", "output": "⠃⠥⠇⠇⠩⠊⠞⠎" }, { "input": "bullshitted", "output": "⠃⠥⠇⠇⠩⠊⠞⠞⠫" }, { "input": "bullshitting", "output": "⠃⠥⠇⠇⠩⠊⠞⠞⠌" }, { "input": "bully", "output": "⠃⠥⠇⠇⠽" }, { "input": "bully's", "output": "⠃⠥⠇⠇⠽⠄⠎" }, { "input": "bullying", "output": "⠃⠥⠇⠇⠽⠌" }, { "input": "bulrush", "output": "⠃⠥⠇⠗⠥⠩" }, { "input": "bulrush's", "output": "⠃⠥⠇⠗⠥⠩⠄⠎" }, { "input": "bulrushes", "output": "⠃⠥⠇⠗⠥⠩⠑⠎" }, { "input": "bulwark", "output": "⠃⠥⠇⠺⠜⠅" }, { "input": "bulwark's", "output": "⠃⠥⠇⠺⠜⠅⠄⠎" }, { "input": "bulwarks", "output": "⠃⠥⠇⠺⠜⠅⠎" }, { "input": "bum", "output": "⠃⠥â " }, { "input": "bum's", "output": "⠃⠥â â „â Ž" }, { "input": "bumble", "output": "⠃⠥â â ¼" }, { "input": "bumblebee", "output": "⠃⠥â â ¼â ƒâ ‘â ‘" }, { "input": "bumblebee's", "output": "⠃⠥â â ¼â ƒâ ‘â ‘â „â Ž" }, { "input": "bumblebees", "output": "⠃⠥â â ¼â ƒâ ‘â ‘â Ž" }, { "input": "bumbled", "output": "⠃⠥â â ¼â ™" }, { "input": "bumbler", "output": "⠃⠥â â ¼â —" }, { "input": "bumbler's", "output": "⠃⠥â â ¼â —â „â Ž" }, { "input": "bumblers", "output": "⠃⠥â â ¼â —â Ž" }, { "input": "bumbles", "output": "⠃⠥â â ¼â Ž" }, { "input": "bumbling", "output": "⠃⠥â â ƒâ ‡â Œ" }, { "input": "bummed", "output": "⠃⠥â â â «" }, { "input": "bummer", "output": "⠃⠥â â â »" }, { "input": "bummer's", "output": "⠃⠥â â â »â „â Ž" }, { "input": "bummers", "output": "⠃⠥â â â »â Ž" }, { "input": "bummest", "output": "⠃⠥â â â ‘â Œ" }, { "input": "bumming", "output": "⠃⠥â â â Œ" }, { "input": "bump", "output": "⠃⠥â â " }, { "input": "bump's", "output": "⠃⠥â â â „â Ž" }, { "input": "bumped", "output": "⠃⠥â â â «" }, { "input": "bumper", "output": "⠃⠥â â â »" }, { "input": "bumper's", "output": "⠃⠥â â â »â „â Ž" }, { "input": "bumpers", "output": "⠃⠥â â â »â Ž" }, { "input": "bumpier", "output": "⠃⠥â â â Šâ »" }, { "input": "bumpiest", "output": "⠃⠥â â â Šâ ‘â Œ" }, { "input": "bumpiness", "output": "⠃⠥â â â Šâ °â Ž" }, { "input": "bumpiness's", "output": "⠃⠥â â â Šâ °â Žâ „â Ž" }, { "input": "bumping", "output": "⠃⠥â â â Œ" }, { "input": "bumpkin", "output": "⠃⠥â â â …â ”" }, { "input": "bumpkin's", "output": "⠃⠥â â â …⠔⠄⠎" }, { "input": "bumpkins", "output": "⠃⠥â â â …⠔⠎" }, { "input": "bumps", "output": "⠃⠥â â â Ž" }, { "input": "bumptious", "output": "⠃⠥â â â žâ Šâ ³â Ž" }, { "input": "bumptiously", "output": "⠃⠥â â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "bumptiousness's", "output": "⠃⠥â â â žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "bumpy", "output": "⠃⠥â â â ½" }, { "input": "bums", "output": "⠃⠥â â Ž" }, { "input": "bun", "output": "⠃⠥â " }, { "input": "bun's", "output": "⠃⠥â â „â Ž" }, { "input": "bunch", "output": "⠃⠥â â ¡" }, { "input": "bunch's", "output": "⠃⠥â â ¡â „â Ž" }, { "input": "bunched", "output": "⠃⠥â â ¡â «" }, { "input": "bunches", "output": "⠃⠥â â ¡â ‘â Ž" }, { "input": "bunchier", "output": "⠃⠥â â ¡â Šâ »" }, { "input": "bunchiest", "output": "⠃⠥â â ¡â Šâ ‘â Œ" }, { "input": "bunching", "output": "⠃⠥â â ¡â Œ" }, { "input": "bunchy", "output": "⠃⠥â â ¡â ½" }, { "input": "bunco", "output": "⠃⠥â â ‰â •" }, { "input": "bunco's", "output": "⠃⠥â â ‰â •â „â Ž" }, { "input": "buncoed", "output": "⠃⠥â â ‰â •â «" }, { "input": "buncoing", "output": "⠃⠥â â ‰â •â Œ" }, { "input": "buncos", "output": "⠃⠥â â ‰â •â Ž" }, { "input": "bundle", "output": "⠃⠥â â ™â ‡â ‘" }, { "input": "bundle's", "output": "⠃⠥â â ™â ‡â ‘â „â Ž" }, { "input": "bundled", "output": "⠃⠥â â ™â ‡â «" }, { "input": "bundles", "output": "⠃⠥â â ™â ‡â ‘â Ž" }, { "input": "bundling", "output": "⠃⠥â â ™â ‡â Œ" }, { "input": "bung", "output": "⠃⠥â â ›" }, { "input": "bung's", "output": "⠃⠥â â ›â „â Ž" }, { "input": "bungalow", "output": "⠃⠥â â ›â â ‡â ª" }, { "input": "bungalow's", "output": "⠃⠥â â ›â â ‡â ªâ „â Ž" }, { "input": "bungalows", "output": "⠃⠥â â ›â â ‡â ªâ Ž" }, { "input": "bunged", "output": "⠃⠥â â ›â «" }, { "input": "bunghole", "output": "⠃⠥â â ›â “⠕⠇⠑" }, { "input": "bunghole's", "output": "⠃⠥â â ›â “⠕⠇⠑⠄⠎" }, { "input": "bungholes", "output": "⠃⠥â â ›â “⠕⠇⠑⠎" }, { "input": "bunging", "output": "⠃⠥â â ›â Œ" }, { "input": "bungle", "output": "⠃⠥â â ›â ‡â ‘" }, { "input": "bungle's", "output": "⠃⠥â â ›â ‡â ‘â „â Ž" }, { "input": "bungled", "output": "⠃⠥â â ›â ‡â «" }, { "input": "bungler", "output": "⠃⠥â â ›â ‡â »" }, { "input": "bungler's", "output": "⠃⠥â â ›â ‡â »â „â Ž" }, { "input": "bunglers", "output": "⠃⠥â â ›â ‡â »â Ž" }, { "input": "bungles", "output": "⠃⠥â â ›â ‡â ‘â Ž" }, { "input": "bungling", "output": "⠃⠥â â ›â ‡â Œ" }, { "input": "bungs", "output": "⠃⠥â â ›â Ž" }, { "input": "bunion", "output": "⠃⠥â â Šâ •â " }, { "input": "bunion's", "output": "⠃⠥â â Šâ •â â „â Ž" }, { "input": "bunions", "output": "⠃⠥â â Šâ •â â Ž" }, { "input": "bunk", "output": "⠃⠥â â …" }, { "input": "bunk's", "output": "⠃⠥â â …â „â Ž" }, { "input": "bunked", "output": "⠃⠥â â …â «" }, { "input": "bunker", "output": "⠃⠥â â …â »" }, { "input": "bunker's", "output": "⠃⠥â â …⠻⠄⠎" }, { "input": "bunkers", "output": "⠃⠥â â …⠻⠎" }, { "input": "bunkhouse", "output": "⠃⠥â â …⠓⠳⠎⠑" }, { "input": "bunkhouse's", "output": "⠃⠥â â …⠓⠳⠎⠑⠄⠎" }, { "input": "bunkhouses", "output": "⠃⠥â â …⠓⠳⠎⠑⠎" }, { "input": "bunking", "output": "⠃⠥â â …â Œ" }, { "input": "bunks", "output": "⠃⠥â â …â Ž" }, { "input": "bunkum", "output": "⠃⠥â â …â ¥â " }, { "input": "bunkum's", "output": "⠃⠥â â …â ¥â â „â Ž" }, { "input": "bunnies", "output": "⠃⠥â â â Šâ ‘â Ž" }, { "input": "bunny", "output": "⠃⠥â â â ½" }, { "input": "bunny's", "output": "⠃⠥â â â ½â „â Ž" }, { "input": "buns", "output": "⠃⠥â â Ž" }, { "input": "bunt", "output": "⠃⠥â â ž" }, { "input": "bunt's", "output": "⠃⠥â â žâ „â Ž" }, { "input": "bunted", "output": "⠃⠥â â žâ «" }, { "input": "bunting", "output": "⠃⠥â â žâ Œ" }, { "input": "bunting's", "output": "⠃⠥â â žâ Œâ „â Ž" }, { "input": "buntings", "output": "⠃⠥â â žâ Œâ Ž" }, { "input": "bunts", "output": "⠃⠥â â žâ Ž" }, { "input": "buoy", "output": "⠃⠥⠕⠽" }, { "input": "buoy's", "output": "⠃⠥⠕⠽⠄⠎" }, { "input": "buoyancy", "output": "⠃⠥⠕⠽â â â ‰â ½" }, { "input": "buoyancy's", "output": "⠃⠥⠕⠽â â â ‰â ½â „â Ž" }, { "input": "buoyant", "output": "⠃⠥⠕⠽â â â ž" }, { "input": "buoyantly", "output": "⠃⠥⠕⠽â â â žâ ‡â ½" }, { "input": "buoyed", "output": "⠃⠥⠕⠽⠫" }, { "input": "buoying", "output": "⠃⠥⠕⠽⠌" }, { "input": "buoys", "output": "⠃⠥⠕⠽⠎" }, { "input": "bur", "output": "⠃⠥⠗" }, { "input": "bur's", "output": "⠃⠥⠗⠄⠎" }, { "input": "burble", "output": "⠃⠥⠗⠼" }, { "input": "burbled", "output": "⠃⠥⠗⠼⠙" }, { "input": "burbles", "output": "⠃⠥⠗⠼⠎" }, { "input": "burbling", "output": "⠃⠥⠗⠃⠇⠌" }, { "input": "burbs", "output": "⠃⠥⠗⠃⠎" }, { "input": "burbs's", "output": "⠃⠥⠗⠃⠎⠄⠎" }, { "input": "burden", "output": "⠃⠥⠗⠙⠢" }, { "input": "burden's", "output": "⠃⠥⠗⠙⠢⠄⠎" }, { "input": "burdened", "output": "⠃⠥⠗⠙⠢⠫" }, { "input": "burdening", "output": "⠃⠥⠗⠙⠢⠌" }, { "input": "burdens", "output": "⠃⠥⠗⠙⠢⠎" }, { "input": "burdensome", "output": "⠃⠥⠗⠙⠢â â Ž" }, { "input": "burdock", "output": "⠃⠥⠗⠙⠕⠉⠅" }, { "input": "burdock's", "output": "⠃⠥⠗⠙⠕⠉⠅⠄⠎" }, { "input": "bureau", "output": "⠃⠥⠗⠂⠥" }, { "input": "bureau's", "output": "⠃⠥⠗⠂⠥⠄⠎" }, { "input": "bureaucracies", "output": "⠃⠥⠗⠂⠥⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "bureaucracy", "output": "⠃⠥⠗⠂⠥⠉⠗â â ‰â ½" }, { "input": "bureaucracy's", "output": "⠃⠥⠗⠂⠥⠉⠗â â ‰â ½â „â Ž" }, { "input": "bureaucrat", "output": "⠃⠥⠗⠂⠥⠉⠗â â ž" }, { "input": "bureaucrat's", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ „â Ž" }, { "input": "bureaucratic", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ ‰" }, { "input": "bureaucratically", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ ‰â  â ½" }, { "input": "bureaucratization", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ µâ  â " }, { "input": "bureaucratization's", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ µâ  â â „â Ž" }, { "input": "bureaucratize", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ µâ ‘" }, { "input": "bureaucratized", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ µâ «" }, { "input": "bureaucratizes", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ µâ ‘â Ž" }, { "input": "bureaucratizing", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Šâ µâ Œ" }, { "input": "bureaucrats", "output": "⠃⠥⠗⠂⠥⠉⠗â â žâ Ž" }, { "input": "bureaus", "output": "⠃⠥⠗⠂⠥⠎" }, { "input": "burg", "output": "⠃⠥⠗⠛" }, { "input": "burg's", "output": "⠃⠥⠗⠛⠄⠎" }, { "input": "burgeon", "output": "⠃⠥⠗⠛⠑⠕â " }, { "input": "burgeoned", "output": "⠃⠥⠗⠛⠑⠕â â «" }, { "input": "burgeoning", "output": "⠃⠥⠗⠛⠑⠕â â Œ" }, { "input": "burgeons", "output": "⠃⠥⠗⠛⠑⠕â â Ž" }, { "input": "burger", "output": "⠃⠥⠗⠛⠻" }, { "input": "burger's", "output": "⠃⠥⠗⠛⠻⠄⠎" }, { "input": "burgers", "output": "⠃⠥⠗⠛⠻⠎" }, { "input": "burgher", "output": "⠃⠥⠗⠣⠻" }, { "input": "burgher's", "output": "⠃⠥⠗⠣⠻⠄⠎" }, { "input": "burghers", "output": "⠃⠥⠗⠣⠻⠎" }, { "input": "burglar", "output": "⠃⠥⠗⠛⠇⠜" }, { "input": "burglar's", "output": "⠃⠥⠗⠛⠇⠜⠄⠎" }, { "input": "burglaries", "output": "⠃⠥⠗⠛⠇⠜⠊⠑⠎" }, { "input": "burglarize", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠑" }, { "input": "burglarized", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠫" }, { "input": "burglarizes", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠑⠎" }, { "input": "burglarizing", "output": "⠃⠥⠗⠛⠇⠜⠊⠵⠌" }, { "input": "burglarproof", "output": "⠃⠥⠗⠛⠇⠜â â —â •â ·" }, { "input": "burglars", "output": "⠃⠥⠗⠛⠇⠜⠎" }, { "input": "burglary", "output": "⠃⠥⠗⠛⠇⠜⠽" }, { "input": "burglary's", "output": "⠃⠥⠗⠛⠇⠜⠽⠄⠎" }, { "input": "burgle", "output": "⠃⠥⠗⠛⠇⠑" }, { "input": "burgled", "output": "⠃⠥⠗⠛⠇⠫" }, { "input": "burgles", "output": "⠃⠥⠗⠛⠇⠑⠎" }, { "input": "burgling", "output": "⠃⠥⠗⠛⠇⠌" }, { "input": "burgomaster", "output": "⠃⠥⠗⠛⠕â â â Œâ »" }, { "input": "burgomaster's", "output": "⠃⠥⠗⠛⠕â â â Œâ »â „â Ž" }, { "input": "burgomasters", "output": "⠃⠥⠗⠛⠕â â â Œâ »â Ž" }, { "input": "burgs", "output": "⠃⠥⠗⠛⠎" }, { "input": "burial", "output": "⠃⠥⠗⠊â â ‡" }, { "input": "burial's", "output": "⠃⠥⠗⠊â â ‡â „â Ž" }, { "input": "burials", "output": "⠃⠥⠗⠊â â ‡â Ž" }, { "input": "buried", "output": "⠃⠥⠗⠊⠫" }, { "input": "buries", "output": "⠃⠥⠗⠊⠑⠎" }, { "input": "burl", "output": "⠃⠥⠗⠇" }, { "input": "burl's", "output": "⠃⠥⠗⠇⠄⠎" }, { "input": "burlap", "output": "⠃⠥⠗⠇â â " }, { "input": "burlap's", "output": "⠃⠥⠗⠇â â â „â Ž" }, { "input": "burled", "output": "⠃⠥⠗⠇⠫" }, { "input": "burlesque", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠑" }, { "input": "burlesque's", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠑⠄⠎" }, { "input": "burlesqued", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠫" }, { "input": "burlesques", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠑⠎" }, { "input": "burlesquing", "output": "⠃⠥⠗⠇⠑⠎⠟⠥⠌" }, { "input": "burlier", "output": "⠃⠥⠗⠇⠊⠻" }, { "input": "burliest", "output": "⠃⠥⠗⠇⠊⠑⠌" }, { "input": "burliness", "output": "⠃⠥⠗⠇⠊⠰⠎" }, { "input": "burliness's", "output": "⠃⠥⠗⠇⠊⠰⠎⠄⠎" }, { "input": "burls", "output": "⠃⠥⠗⠇⠎" }, { "input": "burly", "output": "⠃⠥⠗⠇⠽" }, { "input": "burn", "output": "⠃⠥⠗â " }, { "input": "burn's", "output": "⠃⠥⠗â â „â Ž" }, { "input": "burnable", "output": "⠃⠥⠗â â â ¼" }, { "input": "burnable's", "output": "⠃⠥⠗â â â ¼â „â Ž" }, { "input": "burnables", "output": "⠃⠥⠗â â â ¼â Ž" }, { "input": "burned", "output": "⠃⠥⠗â â «" }, { "input": "burner", "output": "⠃⠥⠗â â »" }, { "input": "burner's", "output": "⠃⠥⠗â â »â „â Ž" }, { "input": "burners", "output": "⠃⠥⠗â â »â Ž" }, { "input": "burning", "output": "⠃⠥⠗â â Œ" }, { "input": "burnish", "output": "⠃⠥⠗â â Šâ ©" }, { "input": "burnish's", "output": "⠃⠥⠗â â Šâ ©â „â Ž" }, { "input": "burnished", "output": "⠃⠥⠗â â Šâ ©â «" }, { "input": "burnisher", "output": "⠃⠥⠗â â Šâ ©â »" }, { "input": "burnisher's", "output": "⠃⠥⠗â â Šâ ©â »â „â Ž" }, { "input": "burnishers", "output": "⠃⠥⠗â â Šâ ©â »â Ž" }, { "input": "burnishes", "output": "⠃⠥⠗â â Šâ ©â ‘â Ž" }, { "input": "burnishing", "output": "⠃⠥⠗â â Šâ ©â Œ" }, { "input": "burnoose", "output": "⠃⠥⠗â â •â •â Žâ ‘" }, { "input": "burnoose's", "output": "⠃⠥⠗â â •â •â Žâ ‘â „â Ž" }, { "input": "burnooses", "output": "⠃⠥⠗â â •â •â Žâ ‘â Ž" }, { "input": "burnout", "output": "⠃⠥⠗â â ³â ž" }, { "input": "burnout's", "output": "⠃⠥⠗â â ³â žâ „â Ž" }, { "input": "burnouts", "output": "⠃⠥⠗â â ³â žâ Ž" }, { "input": "burns", "output": "⠃⠥⠗â â Ž" }, { "input": "burnt", "output": "⠃⠥⠗â â ž" }, { "input": "burp", "output": "⠃⠥⠗â " }, { "input": "burp's", "output": "⠃⠥⠗â â „â Ž" }, { "input": "burped", "output": "⠃⠥⠗â â «" }, { "input": "burping", "output": "⠃⠥⠗â â Œ" }, { "input": "burps", "output": "⠃⠥⠗â â Ž" }, { "input": "burr", "output": "⠃⠥⠗⠗" }, { "input": "burr's", "output": "⠃⠥⠗⠗⠄⠎" }, { "input": "burred", "output": "⠃⠥⠗⠗⠫" }, { "input": "burring", "output": "⠃⠥⠗⠗⠌" }, { "input": "burrito", "output": "⠃⠥⠗⠗⠊⠞⠕" }, { "input": "burrito's", "output": "⠃⠥⠗⠗⠊⠞⠕⠄⠎" }, { "input": "burritos", "output": "⠃⠥⠗⠗⠊⠞⠕⠎" }, { "input": "burro", "output": "⠃⠥⠗⠗⠕" }, { "input": "burro's", "output": "⠃⠥⠗⠗⠕⠄⠎" }, { "input": "burros", "output": "⠃⠥⠗⠗⠕⠎" }, { "input": "burrow", "output": "⠃⠥⠗⠗⠪" }, { "input": "burrow's", "output": "⠃⠥⠗⠗⠪⠄⠎" }, { "input": "burrowed", "output": "⠃⠥⠗⠗⠪⠫" }, { "input": "burrower", "output": "⠃⠥⠗⠗⠪⠻" }, { "input": "burrower's", "output": "⠃⠥⠗⠗⠪⠻⠄⠎" }, { "input": "burrowers", "output": "⠃⠥⠗⠗⠪⠻⠎" }, { "input": "burrowing", "output": "⠃⠥⠗⠗⠪⠌" }, { "input": "burrows", "output": "⠃⠥⠗⠗⠪⠎" }, { "input": "burrs", "output": "⠃⠥⠗⠗⠎" }, { "input": "burs", "output": "⠃⠥⠗⠎" }, { "input": "bursa", "output": "⠃⠥⠗⠎â " }, { "input": "bursa's", "output": "⠃⠥⠗⠎â â „â Ž" }, { "input": "bursae", "output": "⠃⠥⠗⠎â â ‘" }, { "input": "bursar", "output": "⠃⠥⠗⠎⠜" }, { "input": "bursar's", "output": "⠃⠥⠗⠎⠜⠄⠎" }, { "input": "bursars", "output": "⠃⠥⠗⠎⠜⠎" }, { "input": "bursitis", "output": "⠃⠥⠗⠎⠊⠞⠊⠎" }, { "input": "bursitis's", "output": "⠃⠥⠗⠎⠊⠞⠊⠎⠄⠎" }, { "input": "burst", "output": "⠃⠥⠗⠌" }, { "input": "burst's", "output": "⠃⠥⠗⠌⠄⠎" }, { "input": "bursting", "output": "⠃⠥⠗⠌⠌" }, { "input": "bursts", "output": "⠃⠥⠗⠌⠎" }, { "input": "bury", "output": "⠃⠥⠗⠽" }, { "input": "burying", "output": "⠃⠥⠗⠽⠌" }, { "input": "bus", "output": "⠃⠥⠎" }, { "input": "bus's", "output": "⠃⠥⠎⠄⠎" }, { "input": "busbies", "output": "⠃⠥⠎⠃⠊⠑⠎" }, { "input": "busboy", "output": "⠃⠥⠎⠃⠕⠽" }, { "input": "busboy's", "output": "⠃⠥⠎⠃⠕⠽⠄⠎" }, { "input": "busboys", "output": "⠃⠥⠎⠃⠕⠽⠎" }, { "input": "busby", "output": "⠃⠥⠎⠃⠽" }, { "input": "busby's", "output": "⠃⠥⠎⠃⠽⠄⠎" }, { "input": "bused", "output": "⠃⠥⠎⠫" }, { "input": "buses", "output": "⠃⠥⠎⠑⠎" }, { "input": "busgirl", "output": "⠃⠥⠎⠛⠊⠗⠇" }, { "input": "busgirl's", "output": "⠃⠥⠎⠛⠊⠗⠇⠄⠎" }, { "input": "busgirls", "output": "⠃⠥⠎⠛⠊⠗⠇⠎" }, { "input": "bush", "output": "⠃⠥⠩" }, { "input": "bush's", "output": "⠃⠥⠩⠄⠎" }, { "input": "bushed", "output": "⠃⠥⠩⠫" }, { "input": "bushel", "output": "⠃⠥⠩⠑⠇" }, { "input": "bushel's", "output": "⠃⠥⠩⠑⠇⠄⠎" }, { "input": "busheled", "output": "⠃⠥⠩⠑⠇⠫" }, { "input": "busheling", "output": "⠃⠥⠩⠑⠇⠌" }, { "input": "bushels", "output": "⠃⠥⠩⠑⠇⠎" }, { "input": "bushes", "output": "⠃⠥⠩⠑⠎" }, { "input": "bushier", "output": "⠃⠥⠩⠊⠻" }, { "input": "bushiest", "output": "⠃⠥⠩⠊⠑⠌" }, { "input": "bushiness", "output": "⠃⠥⠩⠊⠰⠎" }, { "input": "bushiness's", "output": "⠃⠥⠩⠊⠰⠎⠄⠎" }, { "input": "bushing", "output": "⠃⠥⠩⠌" }, { "input": "bushing's", "output": "⠃⠥⠩⠌⠄⠎" }, { "input": "bushings", "output": "⠃⠥⠩⠌⠎" }, { "input": "bushman", "output": "⠃⠥⠩â â â " }, { "input": "bushman's", "output": "⠃⠥⠩â â â â „â Ž" }, { "input": "bushmaster", "output": "⠃⠥⠩â â â Œâ »" }, { "input": "bushmaster's", "output": "⠃⠥⠩â â â Œâ »â „â Ž" }, { "input": "bushmasters", "output": "⠃⠥⠩â â â Œâ »â Ž" }, { "input": "bushmen", "output": "⠃⠥⠩â â ¢" }, { "input": "bushwhack", "output": "⠃⠥⠩⠱â â ‰â …" }, { "input": "bushwhacked", "output": "⠃⠥⠩⠱â â ‰â …â «" }, { "input": "bushwhacker", "output": "⠃⠥⠩⠱â â ‰â …â »" }, { "input": "bushwhacker's", "output": "⠃⠥⠩⠱â â ‰â …⠻⠄⠎" }, { "input": "bushwhackers", "output": "⠃⠥⠩⠱â â ‰â …⠻⠎" }, { "input": "bushwhacking", "output": "⠃⠥⠩⠱â â ‰â …â Œ" }, { "input": "bushwhacks", "output": "⠃⠥⠩⠱â â ‰â …â Ž" }, { "input": "bushy", "output": "⠃⠥⠩⠽" }, { "input": "busied", "output": "⠃⠥⠎⠊⠫" }, { "input": "busier", "output": "⠃⠥⠎⠊⠻" }, { "input": "busies", "output": "⠃⠥⠎⠊⠑⠎" }, { "input": "busiest", "output": "⠃⠥⠎⠊⠑⠌" }, { "input": "busily", "output": "⠃⠥⠎⠊⠇⠽" }, { "input": "business", "output": "⠃⠥⠎⠊⠰⠎" }, { "input": "business's", "output": "⠃⠥⠎⠊⠰⠎⠄⠎" }, { "input": "businesses", "output": "⠃⠥⠎⠊⠰⠎⠑⠎" }, { "input": "businesslike", "output": "⠃⠥⠎⠊⠰⠎⠇⠊⠅⠑" }, { "input": "businessman", "output": "⠃⠥⠎⠊⠰⠎â â â " }, { "input": "businessman's", "output": "⠃⠥⠎⠊⠰⠎â â â â „â Ž" }, { "input": "businessmen", "output": "⠃⠥⠎⠊⠰⠎â â ¢" }, { "input": "businessperson", "output": "⠃⠥⠎⠊⠰⠎â â »â Žâ •â " }, { "input": "businessperson's", "output": "⠃⠥⠎⠊⠰⠎â â »â Žâ •â â „â Ž" }, { "input": "businesspersons", "output": "⠃⠥⠎⠊⠰⠎â â »â Žâ •â â Ž" }, { "input": "businesswoman", "output": "⠃⠥⠎⠊⠰⠎⠺⠕â â â " }, { "input": "businesswoman's", "output": "⠃⠥⠎⠊⠰⠎⠺⠕â â â â „â Ž" }, { "input": "businesswomen", "output": "⠃⠥⠎⠊⠰⠎⠺⠕â â ¢" }, { "input": "busing", "output": "⠃⠥⠎⠌" }, { "input": "busing's", "output": "⠃⠥⠎⠌⠄⠎" }, { "input": "buskin", "output": "⠃⠥⠎⠅⠔" }, { "input": "buskin's", "output": "⠃⠥⠎⠅⠔⠄⠎" }, { "input": "buskins", "output": "⠃⠥⠎⠅⠔⠎" }, { "input": "buss", "output": "⠃⠥⠎⠎" }, { "input": "buss's", "output": "⠃⠥⠎⠎⠄⠎" }, { "input": "bust", "output": "⠃⠥⠌" }, { "input": "bust's", "output": "⠃⠥⠌⠄⠎" }, { "input": "busted", "output": "⠃⠥⠌⠫" }, { "input": "buster", "output": "⠃⠥⠌⠻" }, { "input": "buster's", "output": "⠃⠥⠌⠻⠄⠎" }, { "input": "busters", "output": "⠃⠥⠌⠻⠎" }, { "input": "busting", "output": "⠃⠥⠌⠌" }, { "input": "bustle", "output": "⠃⠥⠌⠇⠑" }, { "input": "bustle's", "output": "⠃⠥⠌⠇⠑⠄⠎" }, { "input": "bustled", "output": "⠃⠥⠌⠇⠫" }, { "input": "bustles", "output": "⠃⠥⠌⠇⠑⠎" }, { "input": "bustling", "output": "⠃⠥⠌⠇⠌" }, { "input": "busts", "output": "⠃⠥⠌⠎" }, { "input": "busy", "output": "⠃⠥⠎⠽" }, { "input": "busybodies", "output": "⠃⠥⠎⠽⠃⠕⠙⠊⠑⠎" }, { "input": "busybody", "output": "⠃⠥⠎⠽⠃⠕⠙⠽" }, { "input": "busybody's", "output": "⠃⠥⠎⠽⠃⠕⠙⠽⠄⠎" }, { "input": "busying", "output": "⠃⠥⠎⠽⠌" }, { "input": "busyness", "output": "⠃⠥⠎⠽⠰⠎" }, { "input": "busyness's", "output": "⠃⠥⠎⠽⠰⠎⠄⠎" }, { "input": "busywork", "output": "⠃⠥⠎⠽â â º" }, { "input": "busywork's", "output": "⠃⠥⠎⠽â â ºâ „â Ž" }, { "input": "but", "output": "â ƒ" }, { "input": "butane", "output": "⠃⠥⠞â â â ‘" }, { "input": "butane's", "output": "⠃⠥⠞â â â ‘â „â Ž" }, { "input": "butch", "output": "⠃⠥⠞⠡" }, { "input": "butch's", "output": "⠃⠥⠞⠡⠄⠎" }, { "input": "butcher", "output": "⠃⠥⠞⠡⠻" }, { "input": "butcher's", "output": "⠃⠥⠞⠡⠻⠄⠎" }, { "input": "butchered", "output": "⠃⠥⠞⠡⠻⠫" }, { "input": "butcheries", "output": "⠃⠥⠞⠡⠻⠊⠑⠎" }, { "input": "butchering", "output": "⠃⠥⠞⠡⠻⠌" }, { "input": "butchers", "output": "⠃⠥⠞⠡⠻⠎" }, { "input": "butchery", "output": "⠃⠥⠞⠡⠻⠽" }, { "input": "butchery's", "output": "⠃⠥⠞⠡⠻⠽⠄⠎" }, { "input": "butches", "output": "⠃⠥⠞⠡⠑⠎" }, { "input": "butler", "output": "⠃⠥⠞⠇⠻" }, { "input": "butler's", "output": "⠃⠥⠞⠇⠻⠄⠎" }, { "input": "butlers", "output": "⠃⠥⠞⠇⠻⠎" }, { "input": "buts", "output": "⠃⠥⠞⠎" }, { "input": "butt", "output": "⠃⠥⠞⠞" }, { "input": "butt's", "output": "⠃⠥⠞⠞⠄⠎" }, { "input": "butte", "output": "⠃⠥⠞⠞⠑" }, { "input": "butte's", "output": "⠃⠥⠞⠞⠑⠄⠎" }, { "input": "butted", "output": "⠃⠥⠞⠞⠫" }, { "input": "butter", "output": "⠃⠥⠞⠞⠻" }, { "input": "butter's", "output": "⠃⠥⠞⠞⠻⠄⠎" }, { "input": "butterball", "output": "⠃⠥⠞⠞⠻⠃â â ‡â ‡" }, { "input": "butterball's", "output": "⠃⠥⠞⠞⠻⠃â â ‡â ‡â „â Ž" }, { "input": "butterballs", "output": "⠃⠥⠞⠞⠻⠃â â ‡â ‡â Ž" }, { "input": "buttercup", "output": "⠃⠥⠞⠞⠻⠉⠥â " }, { "input": "buttercup's", "output": "⠃⠥⠞⠞⠻⠉⠥â â „â Ž" }, { "input": "buttercups", "output": "⠃⠥⠞⠞⠻⠉⠥â â Ž" }, { "input": "buttered", "output": "⠃⠥⠞⠞⠻⠫" }, { "input": "butterfat", "output": "⠃⠥⠞⠞⠻⠋â â ž" }, { "input": "butterfat's", "output": "⠃⠥⠞⠞⠻⠋â â žâ „â Ž" }, { "input": "butterfingered", "output": "⠃⠥⠞⠞⠻⠋⠌⠻⠫" }, { "input": "butterfingers", "output": "⠃⠥⠞⠞⠻⠋⠌⠻⠎" }, { "input": "butterfingers's", "output": "⠃⠥⠞⠞⠻⠋⠌⠻⠎⠄⠎" }, { "input": "butterflied", "output": "⠃⠥⠞⠞⠻⠋⠇⠊⠫" }, { "input": "butterflies", "output": "⠃⠥⠞⠞⠻⠋⠇⠊⠑⠎" }, { "input": "butterfly", "output": "⠃⠥⠞⠞⠻⠋⠇⠽" }, { "input": "butterfly's", "output": "⠃⠥⠞⠞⠻⠋⠇⠽⠄⠎" }, { "input": "butterflying", "output": "⠃⠥⠞⠞⠻⠋⠇⠽⠌" }, { "input": "butterier", "output": "⠃⠥⠞⠞⠻⠊⠻" }, { "input": "butteries", "output": "⠃⠥⠞⠞⠻⠊⠑⠎" }, { "input": "butteriest", "output": "⠃⠥⠞⠞⠻⠊⠑⠌" }, { "input": "buttering", "output": "⠃⠥⠞⠞⠻⠌" }, { "input": "buttermilk", "output": "⠃⠥⠞⠞⠻â â Šâ ‡â …" }, { "input": "buttermilk's", "output": "⠃⠥⠞⠞⠻â â Šâ ‡â …â „â Ž" }, { "input": "butternut", "output": "⠃⠥⠞⠞⠻â â ¥â ž" }, { "input": "butternut's", "output": "⠃⠥⠞⠞⠻â â ¥â žâ „â Ž" }, { "input": "butternuts", "output": "⠃⠥⠞⠞⠻â â ¥â žâ Ž" }, { "input": "butters", "output": "⠃⠥⠞⠞⠻⠎" }, { "input": "butterscotch", "output": "⠃⠥⠞⠞⠻⠎⠉⠕⠞⠡" }, { "input": "butterscotch's", "output": "⠃⠥⠞⠞⠻⠎⠉⠕⠞⠡⠄⠎" }, { "input": "buttery", "output": "⠃⠥⠞⠞⠻⠽" }, { "input": "buttery's", "output": "⠃⠥⠞⠞⠻⠽⠄⠎" }, { "input": "buttes", "output": "⠃⠥⠞⠞⠑⠎" }, { "input": "butting", "output": "⠃⠥⠞⠞⠌" }, { "input": "buttock", "output": "⠃⠥⠞⠞⠕⠉⠅" }, { "input": "buttock's", "output": "⠃⠥⠞⠞⠕⠉⠅⠄⠎" }, { "input": "buttocks", "output": "⠃⠥⠞⠞⠕⠉⠅⠎" }, { "input": "button", "output": "⠃⠥⠞⠞⠕â " }, { "input": "button's", "output": "⠃⠥⠞⠞⠕â â „â Ž" }, { "input": "buttoned", "output": "⠃⠥⠞⠞⠕â â «" }, { "input": "buttonhole", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠑" }, { "input": "buttonhole's", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠑⠄⠎" }, { "input": "buttonholed", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠫" }, { "input": "buttonholes", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠑⠎" }, { "input": "buttonholing", "output": "⠃⠥⠞⠞⠕â â “⠕⠇⠌" }, { "input": "buttoning", "output": "⠃⠥⠞⠞⠕â â Œ" }, { "input": "buttons", "output": "⠃⠥⠞⠞⠕â â Ž" }, { "input": "buttonwood", "output": "⠃⠥⠞⠞⠕â â ºâ •â •â ™" }, { "input": "buttonwood's", "output": "⠃⠥⠞⠞⠕â â ºâ •⠕⠙⠄⠎" }, { "input": "buttonwoods", "output": "⠃⠥⠞⠞⠕â â ºâ •⠕⠙⠎" }, { "input": "buttress", "output": "⠃⠥⠞⠞⠗⠑⠎⠎" }, { "input": "buttress's", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠄⠎" }, { "input": "buttressed", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠫" }, { "input": "buttresses", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠑⠎" }, { "input": "buttressing", "output": "⠃⠥⠞⠞⠗⠑⠎⠎⠌" }, { "input": "butts", "output": "⠃⠥⠞⠞⠎" }, { "input": "buxom", "output": "⠃⠥⠭⠕â " }, { "input": "buy", "output": "⠃⠥⠽" }, { "input": "buy's", "output": "⠃⠥⠽⠄⠎" }, { "input": "buyback", "output": "⠃⠥⠽⠃â â ‰â …" }, { "input": "buyback's", "output": "⠃⠥⠽⠃â â ‰â …â „â Ž" }, { "input": "buybacks", "output": "⠃⠥⠽⠃â â ‰â …â Ž" }, { "input": "buyer", "output": "⠃⠥⠽⠻" }, { "input": "buyer's", "output": "⠃⠥⠽⠻⠄⠎" }, { "input": "buyers", "output": "⠃⠥⠽⠻⠎" }, { "input": "buying", "output": "⠃⠥⠽⠌" }, { "input": "buyout", "output": "⠃⠥⠽⠳⠞" }, { "input": "buyout's", "output": "⠃⠥⠽⠳⠞⠄⠎" }, { "input": "buyouts", "output": "⠃⠥⠽⠳⠞⠎" }, { "input": "buys", "output": "⠃⠥⠽⠎" }, { "input": "buzz", "output": "⠃⠥⠵⠵" }, { "input": "buzz's", "output": "⠃⠥⠵⠵⠄⠎" }, { "input": "buzzard", "output": "⠃⠥⠵⠵⠜⠙" }, { "input": "buzzard's", "output": "⠃⠥⠵⠵⠜⠙⠄⠎" }, { "input": "buzzards", "output": "⠃⠥⠵⠵⠜⠙⠎" }, { "input": "buzzed", "output": "⠃⠥⠵⠵⠫" }, { "input": "buzzer", "output": "⠃⠥⠵⠵⠻" }, { "input": "buzzer's", "output": "⠃⠥⠵⠵⠻⠄⠎" }, { "input": "buzzers", "output": "⠃⠥⠵⠵⠻⠎" }, { "input": "buzzes", "output": "⠃⠥⠵⠵⠑⠎" }, { "input": "buzzing", "output": "⠃⠥⠵⠵⠌" }, { "input": "buzzword", "output": "⠃⠥⠵⠵⠘⠺" }, { "input": "buzzword's", "output": "⠃⠥⠵⠵⠘⠺⠄⠎" }, { "input": "buzzwords", "output": "⠃⠥⠵⠵⠘⠺⠎" }, { "input": "by", "output": "⠃⠽" }, { "input": "by's", "output": "⠃⠽⠄⠎" }, { "input": "bye", "output": "⠃⠽⠑" }, { "input": "bye's", "output": "⠃⠽⠑⠄⠎" }, { "input": "byes", "output": "⠃⠽⠑⠎" }, { "input": "bygone", "output": "⠃⠽⠛â â •" }, { "input": "bygone's", "output": "⠃⠽⠛â â •â „â Ž" }, { "input": "bygones", "output": "⠃⠽⠛â â •â Ž" }, { "input": "bylaw", "output": "⠃⠽⠇â â º" }, { "input": "bylaw's", "output": "⠃⠽⠇â â ºâ „â Ž" }, { "input": "bylaws", "output": "⠃⠽⠇â â ºâ Ž" }, { "input": "byline", "output": "⠃⠽⠇⠔⠑" }, { "input": "byline's", "output": "⠃⠽⠇⠔⠑⠄⠎" }, { "input": "bylines", "output": "⠃⠽⠇⠔⠑⠎" }, { "input": "bypass", "output": "⠃⠽â â â Žâ Ž" }, { "input": "bypass's", "output": "⠃⠽â â â Žâ Žâ „â Ž" }, { "input": "bypassed", "output": "⠃⠽â â â Žâ Žâ «" }, { "input": "bypasses", "output": "⠃⠽â â â Žâ Žâ ‘â Ž" }, { "input": "bypassing", "output": "⠃⠽â â â Žâ Žâ Œ" }, { "input": "bypath", "output": "⠃⠽â â â ¹" }, { "input": "bypath's", "output": "⠃⠽â â â ¹â „â Ž" }, { "input": "bypaths", "output": "⠃⠽â â â ¹â Ž" }, { "input": "byplay", "output": "⠃⠽â â ‡â â ½" }, { "input": "byplay's", "output": "⠃⠽â â ‡â â ½â „â Ž" }, { "input": "byproduct", "output": "⠃⠽â â —⠕⠙⠥⠉⠞" }, { "input": "byproduct's", "output": "⠃⠽â â —⠕⠙⠥⠉⠞⠄⠎" }, { "input": "byproducts", "output": "⠃⠽â â —⠕⠙⠥⠉⠞⠎" }, { "input": "byroad", "output": "⠃⠽⠗⠕â â ™" }, { "input": "byroad's", "output": "⠃⠽⠗⠕â â ™â „â Ž" }, { "input": "byroads", "output": "⠃⠽⠗⠕â â ™â Ž" }, { "input": "bystander", "output": "⠃⠽⠌⠯⠻" }, { "input": "bystander's", "output": "⠃⠽⠌⠯⠻⠄⠎" }, { "input": "bystanders", "output": "⠃⠽⠌⠯⠻⠎" }, { "input": "byte", "output": "⠃⠽⠞⠑" }, { "input": "byte's", "output": "⠃⠽⠞⠑⠄⠎" }, { "input": "bytes", "output": "⠃⠽⠞⠑⠎" }, { "input": "byway", "output": "⠃⠽⠺â â ½" }, { "input": "byway's", "output": "⠃⠽⠺â â ½â „â Ž" }, { "input": "byways", "output": "⠃⠽⠺â â ½â Ž" }, { "input": "byword", "output": "⠃⠽⠘⠺" }, { "input": "byword's", "output": "⠃⠽⠘⠺⠄⠎" }, { "input": "bywords", "output": "⠃⠽⠘⠺⠎" }, { "input": "c", "output": "â °â ‰" }, { "input": "cab", "output": "â ‰â â ƒ" }, { "input": "cab's", "output": "â ‰â â ƒâ „â Ž" }, { "input": "cabal", "output": "â ‰â â ƒâ â ‡" }, { "input": "cabal's", "output": "â ‰â â ƒâ â ‡â „â Ž" }, { "input": "cabala", "output": "â ‰â â ƒâ â ‡â " }, { "input": "cabala's", "output": "â ‰â â ƒâ â ‡â â „â Ž" }, { "input": "caballero", "output": "â ‰â â ƒâ â ‡â ‡â »â •" }, { "input": "caballero's", "output": "â ‰â â ƒâ â ‡â ‡â »â •â „â Ž" }, { "input": "caballeros", "output": "â ‰â â ƒâ â ‡â ‡â »â •â Ž" }, { "input": "cabals", "output": "â ‰â â ƒâ â ‡â Ž" }, { "input": "cabana", "output": "â ‰â â ƒâ â â " }, { "input": "cabana's", "output": "â ‰â â ƒâ â â â „â Ž" }, { "input": "cabanas", "output": "â ‰â â ƒâ â â â Ž" }, { "input": "cabaret", "output": "â ‰â â ƒâ œâ ‘â ž" }, { "input": "cabaret's", "output": "â ‰â â ƒâ œâ ‘â žâ „â Ž" }, { "input": "cabarets", "output": "â ‰â â ƒâ œâ ‘â žâ Ž" }, { "input": "cabbage", "output": "â ‰â â †â â ›â ‘" }, { "input": "cabbage's", "output": "â ‰â â †â â ›â ‘â „â Ž" }, { "input": "cabbages", "output": "â ‰â â †â â ›â ‘â Ž" }, { "input": "cabbed", "output": "â ‰â â †â «" }, { "input": "cabbies", "output": "â ‰â â †â Šâ ‘â Ž" }, { "input": "cabbing", "output": "â ‰â â †â Œ" }, { "input": "cabby", "output": "â ‰â â †â ½" }, { "input": "cabby's", "output": "â ‰â â †â ½â „â Ž" }, { "input": "cabin", "output": "â ‰â â ƒâ ”" }, { "input": "cabin's", "output": "â ‰â â ƒâ ”â „â Ž" }, { "input": "cabinet", "output": "â ‰â â ƒâ ”â ‘â ž" }, { "input": "cabinet's", "output": "â ‰â â ƒâ ”â ‘â žâ „â Ž" }, { "input": "cabinetmaker", "output": "â ‰â â ƒâ ”â ‘â žâ â â …â »" }, { "input": "cabinetmaker's", "output": "â ‰â â ƒâ ”â ‘â žâ â â …⠻⠄⠎" }, { "input": "cabinetmakers", "output": "â ‰â â ƒâ ”â ‘â žâ â â …⠻⠎" }, { "input": "cabinetmaking", "output": "â ‰â â ƒâ ”â ‘â žâ â â …â Œ" }, { "input": "cabinetmaking's", "output": "â ‰â â ƒâ ”â ‘â žâ â â …⠌⠄⠎" }, { "input": "cabinetry", "output": "â ‰â â ƒâ ”â ‘â žâ —â ½" }, { "input": "cabinetry's", "output": "â ‰â â ƒâ ”⠑⠞⠗⠽⠄⠎" }, { "input": "cabinets", "output": "â ‰â â ƒâ ”â ‘â žâ Ž" }, { "input": "cabinetwork", "output": "â ‰â â ƒâ ”â ‘â žâ â º" }, { "input": "cabinetwork's", "output": "â ‰â â ƒâ ”â ‘â žâ â ºâ „â Ž" }, { "input": "cabins", "output": "â ‰â â ƒâ ”â Ž" }, { "input": "cable", "output": "â ‰â â ¼" }, { "input": "cable's", "output": "â ‰â â ¼â „â Ž" }, { "input": "cablecast", "output": "â ‰â â ¼â ‰â â Œ" }, { "input": "cablecast's", "output": "â ‰â â ¼â ‰â â Œâ „â Ž" }, { "input": "cablecasting", "output": "â ‰â â ¼â ‰â â Œâ Œ" }, { "input": "cablecasts", "output": "â ‰â â ¼â ‰â â Œâ Ž" }, { "input": "cabled", "output": "â ‰â â ¼â ™" }, { "input": "cablegram", "output": "â ‰â â ¼â ›â —â â " }, { "input": "cablegram's", "output": "â ‰â â ¼â ›â —â â â „â Ž" }, { "input": "cablegrams", "output": "â ‰â â ¼â ›â —â â â Ž" }, { "input": "cables", "output": "â ‰â â ¼â Ž" }, { "input": "cabling", "output": "â ‰â â ƒâ ‡â Œ" }, { "input": "cabochon", "output": "â ‰â â ƒâ •â ¡â •â " }, { "input": "cabochon's", "output": "â ‰â â ƒâ •â ¡â •â â „â Ž" }, { "input": "cabochons", "output": "â ‰â â ƒâ •â ¡â •â â Ž" }, { "input": "caboodle", "output": "â ‰â â ƒâ •⠕⠙⠇⠑" }, { "input": "caboodle's", "output": "â ‰â â ƒâ •⠕⠙⠇⠑⠄⠎" }, { "input": "caboose", "output": "â ‰â â ƒâ •â •â Žâ ‘" }, { "input": "caboose's", "output": "â ‰â â ƒâ •â •â Žâ ‘â „â Ž" }, { "input": "cabooses", "output": "â ‰â â ƒâ •â •â Žâ ‘â Ž" }, { "input": "cabriolet", "output": "â ‰â â ƒâ —⠊⠕⠇⠑⠞" }, { "input": "cabriolet's", "output": "â ‰â â ƒâ —⠊⠕⠇⠑⠞⠄⠎" }, { "input": "cabriolets", "output": "â ‰â â ƒâ —⠊⠕⠇⠑⠞⠎" }, { "input": "cabs", "output": "â ‰â â ƒâ Ž" }, { "input": "cabstand", "output": "â ‰â â ƒâ Œâ ¯" }, { "input": "cabstand's", "output": "â ‰â â ƒâ Œâ ¯â „â Ž" }, { "input": "cabstands", "output": "â ‰â â ƒâ Œâ ¯â Ž" }, { "input": "cacao", "output": "â ‰â â ‰â â •" }, { "input": "cacao's", "output": "â ‰â â ‰â â •â „â Ž" }, { "input": "cacaos", "output": "â ‰â â ‰â â •â Ž" }, { "input": "cache", "output": "â ‰â â ¡â ‘" }, { "input": "cache's", "output": "â ‰â â ¡â ‘â „â Ž" }, { "input": "cached", "output": "â ‰â â ¡â «" }, { "input": "cachepot", "output": "â ‰â â ¡â ‘â â •â ž" }, { "input": "cachepot's", "output": "â ‰â â ¡â ‘â â •â žâ „â Ž" }, { "input": "cachepots", "output": "â ‰â â ¡â ‘â â •â žâ Ž" }, { "input": "caches", "output": "â ‰â â ¡â ‘â Ž" }, { "input": "cachet", "output": "â ‰â â ¡â ‘â ž" }, { "input": "cachet's", "output": "â ‰â â ¡â ‘â žâ „â Ž" }, { "input": "cachets", "output": "â ‰â â ¡â ‘â žâ Ž" }, { "input": "caching", "output": "â ‰â â ¡â Œ" }, { "input": "cackle", "output": "â ‰â â ‰â …⠇⠑" }, { "input": "cackle's", "output": "â ‰â â ‰â …⠇⠑⠄⠎" }, { "input": "cackled", "output": "â ‰â â ‰â …⠇⠫" }, { "input": "cackler", "output": "â ‰â â ‰â …⠇⠻" }, { "input": "cackler's", "output": "â ‰â â ‰â …⠇⠻⠄⠎" }, { "input": "cacklers", "output": "â ‰â â ‰â …⠇⠻⠎" }, { "input": "cackles", "output": "â ‰â â ‰â …⠇⠑⠎" }, { "input": "cackling", "output": "â ‰â â ‰â …⠇⠌" }, { "input": "cacophonies", "output": "â ‰â â ‰â •â â “â •â â Šâ ‘â Ž" }, { "input": "cacophonous", "output": "â ‰â â ‰â •â â “â •â â ³â Ž" }, { "input": "cacophony", "output": "â ‰â â ‰â •â â “â •â â ½" }, { "input": "cacophony's", "output": "â ‰â â ‰â •â â “â •â â ½â „â Ž" }, { "input": "cacti", "output": "â ‰â â ‰â žâ Š" }, { "input": "cactus", "output": "â ‰â â ‰â žâ ¥â Ž" }, { "input": "cactus's", "output": "â ‰â â ‰â žâ ¥â Žâ „â Ž" }, { "input": "cad", "output": "â ‰â â ™" }, { "input": "cad's", "output": "â ‰â â ™â „â Ž" }, { "input": "cadaver", "output": "â ‰â â ™â â §â »" }, { "input": "cadaver's", "output": "â ‰â â ™â â §â »â „â Ž" }, { "input": "cadaverous", "output": "â ‰â â ™â â §â »â ³â Ž" }, { "input": "cadavers", "output": "â ‰â â ™â â §â »â Ž" }, { "input": "caddie", "output": "â ‰â â ²â Šâ ‘" }, { "input": "caddie's", "output": "â ‰â â ²â Šâ ‘â „â Ž" }, { "input": "caddied", "output": "â ‰â â ²â Šâ «" }, { "input": "caddies", "output": "â ‰â â ²â Šâ ‘â Ž" }, { "input": "caddish", "output": "â ‰â â ²â Šâ ©" }, { "input": "caddishly", "output": "â ‰â â ²â Šâ ©â ‡â ½" }, { "input": "caddishness", "output": "â ‰â â ²â Šâ ©â °â Ž" }, { "input": "caddishness's", "output": "â ‰â â ²â Šâ ©â °â Žâ „â Ž" }, { "input": "caddying", "output": "â ‰â â ²â ½â Œ" }, { "input": "cadence", "output": "â ‰â â ™â °â ‘" }, { "input": "cadence's", "output": "â ‰â â ™â °â ‘â „â Ž" }, { "input": "cadenced", "output": "â ‰â â ™â °â ‘â ™" }, { "input": "cadences", "output": "â ‰â â ™â °â ‘â Ž" }, { "input": "cadenza", "output": "â ‰â â ™â ¢â µâ " }, { "input": "cadenza's", "output": "â ‰â â ™â ¢â µâ â „â Ž" }, { "input": "cadenzas", "output": "â ‰â â ™â ¢â µâ â Ž" }, { "input": "cadet", "output": "â ‰â â ™â ‘â ž" }, { "input": "cadet's", "output": "â ‰â â ™â ‘â žâ „â Ž" }, { "input": "cadets", "output": "â ‰â â ™â ‘â žâ Ž" }, { "input": "cadge", "output": "â ‰â â ™â ›â ‘" }, { "input": "cadged", "output": "â ‰â â ™â ›â «" }, { "input": "cadger", "output": "â ‰â â ™â ›â »" }, { "input": "cadger's", "output": "â ‰â â ™â ›â »â „â Ž" }, { "input": "cadgers", "output": "â ‰â â ™â ›â »â Ž" }, { "input": "cadges", "output": "â ‰â â ™â ›â ‘â Ž" }, { "input": "cadging", "output": "â ‰â â ™â ›â Œ" }, { "input": "cadmium", "output": "â ‰â â ™â â Šâ ¥â " }, { "input": "cadmium's", "output": "â ‰â â ™â â Šâ ¥â â „â Ž" }, { "input": "cadre", "output": "â ‰â â ™â —â ‘" }, { "input": "cadre's", "output": "â ‰â â ™â —â ‘â „â Ž" }, { "input": "cadres", "output": "â ‰â â ™â —â ‘â Ž" }, { "input": "cads", "output": "â ‰â â ™â Ž" }, { "input": "caducei", "output": "â ‰â â ™â ¥â ‰â ‘â Š" }, { "input": "caduceus", "output": "â ‰â â ™â ¥â ‰â ‘⠥⠎" }, { "input": "caduceus's", "output": "â ‰â â ™â ¥â ‰â ‘⠥⠎⠄⠎" }, { "input": "caesura", "output": "â ‰â â ‘⠎⠥⠗â " }, { "input": "caesura's", "output": "â ‰â â ‘⠎⠥⠗â â „â Ž" }, { "input": "caesuras", "output": "â ‰â â ‘⠎⠥⠗â â Ž" }, { "input": "cafeteria", "output": "â ‰â â ‹â ‘⠞⠻⠊â " }, { "input": "cafeteria's", "output": "â ‰â â ‹â ‘⠞⠻⠊â â „â Ž" }, { "input": "cafeterias", "output": "â ‰â â ‹â ‘⠞⠻⠊â â Ž" }, { "input": "caffeinated", "output": "â ‰â â –â ‘â ”â â žâ «" }, { "input": "caffeine", "output": "â ‰â â –⠑⠔⠑" }, { "input": "caffeine's", "output": "â ‰â â –⠑⠔⠑⠄⠎" }, { "input": "caftan", "output": "â ‰â â ‹â žâ â " }, { "input": "caftan's", "output": "â ‰â â ‹â žâ â â „â Ž" }, { "input": "caftans", "output": "â ‰â â ‹â žâ â â Ž" }, { "input": "cage", "output": "â ‰â â ›â ‘" }, { "input": "cage's", "output": "â ‰â â ›â ‘â „â Ž" }, { "input": "caged", "output": "â ‰â â ›â «" }, { "input": "cages", "output": "â ‰â â ›â ‘â Ž" }, { "input": "cagey", "output": "â ‰â â ›â ‘â ½" }, { "input": "cagier", "output": "â ‰â â ›â Šâ »" }, { "input": "cagiest", "output": "â ‰â â ›â Šâ ‘â Œ" }, { "input": "cagily", "output": "â ‰â â ›â Šâ ‡â ½" }, { "input": "caginess", "output": "â ‰â â ›â Šâ °â Ž" }, { "input": "caginess's", "output": "â ‰â â ›â Šâ °â Žâ „â Ž" }, { "input": "caging", "output": "â ‰â â ›â Œ" }, { "input": "cahoot", "output": "â ‰â â “â •â •â ž" }, { "input": "cahoot's", "output": "â ‰â â “â •â •â žâ „â Ž" }, { "input": "cahoots", "output": "â ‰â â “â •â •â žâ Ž" }, { "input": "cairn", "output": "â ‰â â Šâ —â " }, { "input": "cairn's", "output": "â ‰â â Šâ —â â „â Ž" }, { "input": "cairns", "output": "â ‰â â Šâ —â â Ž" }, { "input": "caisson", "output": "â ‰â â Šâ Žâ Žâ •â " }, { "input": "caisson's", "output": "â ‰â â Šâ Žâ Žâ •â â „â Ž" }, { "input": "caissons", "output": "â ‰â â Šâ Žâ Žâ •â â Ž" }, { "input": "caitiff", "output": "â ‰â â Šâ žâ Šâ ‹â ‹" }, { "input": "caitiff's", "output": "â ‰â â Šâ žâ Šâ ‹â ‹â „â Ž" }, { "input": "caitiffs", "output": "â ‰â â Šâ žâ Šâ –â Ž" }, { "input": "cajole", "output": "â ‰â â šâ •⠇⠑" }, { "input": "cajoled", "output": "â ‰â â šâ •⠇⠫" }, { "input": "cajolement", "output": "â ‰â â šâ •⠇⠑⠰⠞" }, { "input": "cajolement's", "output": "â ‰â â šâ •⠇⠑⠰⠞⠄⠎" }, { "input": "cajoler", "output": "â ‰â â šâ •⠇⠻" }, { "input": "cajoler's", "output": "â ‰â â šâ •⠇⠻⠄⠎" }, { "input": "cajolers", "output": "â ‰â â šâ •⠇⠻⠎" }, { "input": "cajolery", "output": "â ‰â â šâ •⠇⠻⠽" }, { "input": "cajolery's", "output": "â ‰â â šâ •⠇⠻⠽⠄⠎" }, { "input": "cajoles", "output": "â ‰â â šâ •⠇⠑⠎" }, { "input": "cajoling", "output": "â ‰â â šâ •⠇⠌" }, { "input": "cake", "output": "â ‰â â …â ‘" }, { "input": "cake's", "output": "â ‰â â …â ‘â „â Ž" }, { "input": "caked", "output": "â ‰â â …â «" }, { "input": "cakes", "output": "â ‰â â …â ‘â Ž" }, { "input": "cakewalk's", "output": "â ‰â â …â ‘â ºâ â ‡â …â „â Ž" }, { "input": "cakewalks", "output": "â ‰â â …â ‘â ºâ â ‡â …â Ž" }, { "input": "caking", "output": "â ‰â â …â Œ" }, { "input": "calabash", "output": "â ‰â â ‡â â ƒâ â ©" }, { "input": "calabash's", "output": "â ‰â â ‡â â ƒâ â ©â „â Ž" }, { "input": "calabashes", "output": "â ‰â â ‡â â ƒâ â ©â ‘â Ž" }, { "input": "calaboose", "output": "â ‰â â ‡â â ƒâ •â •â Žâ ‘" }, { "input": "calaboose's", "output": "â ‰â â ‡â â ƒâ •â •â Žâ ‘â „â Ž" }, { "input": "calabooses", "output": "â ‰â â ‡â â ƒâ •â •â Žâ ‘â Ž" }, { "input": "calamari", "output": "â ‰â â ‡â â â œâ Š" }, { "input": "calamari's", "output": "â ‰â â ‡â â â œâ Šâ „â Ž" }, { "input": "calamaris", "output": "â ‰â â ‡â â â œâ Šâ Ž" }, { "input": "calamine", "output": "â ‰â â ‡â â â ”â ‘" }, { "input": "calamine's", "output": "â ‰â â ‡â â â ”â ‘â „â Ž" }, { "input": "calamities", "output": "â ‰â â ‡â â â Šâ žâ Šâ ‘â Ž" }, { "input": "calamitous", "output": "â ‰â â ‡â â â Šâ žâ ³â Ž" }, { "input": "calamity", "output": "â ‰â â ‡â â â °â ½" }, { "input": "calamity's", "output": "â ‰â â ‡â â â °â ½â „â Ž" }, { "input": "calcareous", "output": "â ‰â â ‡â ‰â œâ ‘⠳⠎" }, { "input": "calciferous", "output": "â ‰â â ‡â ‰â Šâ ‹â »â ³â Ž" }, { "input": "calcification", "output": "â ‰â â ‡â ‰â Šâ ‹â Šâ ‰â  â " }, { "input": "calcification's", "output": "â ‰â â ‡â ‰â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "calcified", "output": "â ‰â â ‡â ‰â Šâ ‹â Šâ «" }, { "input": "calcifies", "output": "â ‰â â ‡â ‰â Šâ ‹â Šâ ‘â Ž" }, { "input": "calcify", "output": "â ‰â â ‡â ‰â Šâ ‹â ½" }, { "input": "calcifying", "output": "â ‰â â ‡â ‰â Šâ ‹â ½â Œ" }, { "input": "calcimine", "output": "â ‰â â ‡â ‰â Šâ â ”â ‘" }, { "input": "calcimine's", "output": "â ‰â â ‡â ‰â Šâ â ”â ‘â „â Ž" }, { "input": "calcimined", "output": "â ‰â â ‡â ‰â Šâ â ”â «" }, { "input": "calcimines", "output": "â ‰â â ‡â ‰â Šâ â ”â ‘â Ž" }, { "input": "calcimining", "output": "â ‰â â ‡â ‰â Šâ â ”â Œ" }, { "input": "calcine", "output": "â ‰â â ‡â ‰â ”â ‘" }, { "input": "calcined", "output": "â ‰â â ‡â ‰â ”â «" }, { "input": "calcines", "output": "â ‰â â ‡â ‰â ”â ‘â Ž" }, { "input": "calcining", "output": "â ‰â â ‡â ‰â ”â Œ" }, { "input": "calcite", "output": "â ‰â â ‡â ‰â Šâ žâ ‘" }, { "input": "calcite's", "output": "â ‰â â ‡â ‰â Šâ žâ ‘â „â Ž" }, { "input": "calcium", "output": "â ‰â â ‡â ‰â Šâ ¥â " }, { "input": "calcium's", "output": "â ‰â â ‡â ‰â Šâ ¥â â „â Ž" }, { "input": "calculable", "output": "â ‰â â ‡â ‰â ¥â ‡â â ¼" }, { "input": "calculate", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ ‘" }, { "input": "calculated", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ «" }, { "input": "calculatedly", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ «â ‡â ½" }, { "input": "calculates", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "calculating", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ Œ" }, { "input": "calculatingly", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ Œâ ‡â ½" }, { "input": "calculation", "output": "â ‰â â ‡â ‰â ¥â ‡â  â " }, { "input": "calculation's", "output": "â ‰â â ‡â ‰â ¥â ‡â  â â „â Ž" }, { "input": "calculations", "output": "â ‰â â ‡â ‰â ¥â ‡â  â â Ž" }, { "input": "calculative", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "calculator", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ •â —" }, { "input": "calculator's", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "calculators", "output": "â ‰â â ‡â ‰â ¥â ‡â â žâ •â —â Ž" }, { "input": "calculi", "output": "â ‰â â ‡â ‰â ¥â ‡â Š" }, { "input": "calculus", "output": "â ‰â â ‡â ‰â ¥â ‡â ¥â Ž" }, { "input": "calculus's", "output": "â ‰â â ‡â ‰â ¥â ‡â ¥â Žâ „â Ž" }, { "input": "caldera", "output": "â ‰â â ‡â ™â »â " }, { "input": "caldera's", "output": "â ‰â â ‡â ™â »â â „â Ž" }, { "input": "calderas", "output": "â ‰â â ‡â ™â »â â Ž" }, { "input": "calendar", "output": "â ‰â â ‡â ¢â ™â œ" }, { "input": "calendar's", "output": "â ‰â â ‡â ¢â ™â œâ „â Ž" }, { "input": "calendared", "output": "â ‰â â ‡â ¢â ™â œâ «" }, { "input": "calendaring", "output": "â ‰â â ‡â ¢â ™â œâ Œ" }, { "input": "calendars", "output": "â ‰â â ‡â ¢â ™â œâ Ž" }, { "input": "calender", "output": "â ‰â â ‡â ¢â ™â »" }, { "input": "calender's", "output": "â ‰â â ‡â ¢â ™â »â „â Ž" }, { "input": "calendered", "output": "â ‰â â ‡â ¢â ™â »â «" }, { "input": "calendering", "output": "â ‰â â ‡â ¢â ™â »â Œ" }, { "input": "calenders", "output": "â ‰â â ‡â ¢â ™â »â Ž" }, { "input": "calf", "output": "â ‰â â ‡â ‹" }, { "input": "calf's", "output": "â ‰â â ‡â ‹â „â Ž" }, { "input": "calfskin", "output": "â ‰â â ‡â ‹â Žâ …â ”" }, { "input": "calfskin's", "output": "â ‰â â ‡â ‹â Žâ …⠔⠄⠎" }, { "input": "caliber", "output": "â ‰â â ‡â Šâ ƒâ »" }, { "input": "caliber's", "output": "â ‰â â ‡â Šâ ƒâ »â „â Ž" }, { "input": "calibers", "output": "â ‰â â ‡â Šâ ƒâ »â Ž" }, { "input": "calibrate", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ ‘" }, { "input": "calibrated", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ «" }, { "input": "calibrates", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ ‘â Ž" }, { "input": "calibrating", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ Œ" }, { "input": "calibration", "output": "â ‰â â ‡â Šâ ƒâ —â  â " }, { "input": "calibration's", "output": "â ‰â â ‡â Šâ ƒâ —â  â â „â Ž" }, { "input": "calibrations", "output": "â ‰â â ‡â Šâ ƒâ —â  â â Ž" }, { "input": "calibrator", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ •â —" }, { "input": "calibrator's", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ •â —â „â Ž" }, { "input": "calibrators", "output": "â ‰â â ‡â Šâ ƒâ —â â žâ •â —â Ž" }, { "input": "calico", "output": "â ‰â â ‡â Šâ ‰â •" }, { "input": "calico's", "output": "â ‰â â ‡â Šâ ‰â •â „â Ž" }, { "input": "calicoes", "output": "â ‰â â ‡â Šâ ‰â •â ‘â Ž" }, { "input": "californium", "output": "â ‰â â ‡â Šâ ¿â â Šâ ¥â " }, { "input": "californium's", "output": "â ‰â â ‡â Šâ ¿â â Šâ ¥â â „â Ž" }, { "input": "caliper", "output": "â ‰â â ‡â Šâ â »" }, { "input": "caliper's", "output": "â ‰â â ‡â Šâ â »â „â Ž" }, { "input": "calipered", "output": "â ‰â â ‡â Šâ â »â «" }, { "input": "calipering", "output": "â ‰â â ‡â Šâ â »â Œ" }, { "input": "calipers", "output": "â ‰â â ‡â Šâ â »â Ž" }, { "input": "caliph", "output": "â ‰â â ‡â Šâ â “" }, { "input": "caliph's", "output": "â ‰â â ‡â Šâ â “â „â Ž" }, { "input": "caliphate", "output": "â ‰â â ‡â Šâ â “â â žâ ‘" }, { "input": "caliphate's", "output": "â ‰â â ‡â Šâ â “â â žâ ‘â „â Ž" }, { "input": "caliphates", "output": "â ‰â â ‡â Šâ â “â â žâ ‘â Ž" }, { "input": "caliphs", "output": "â ‰â â ‡â Šâ â “â Ž" }, { "input": "calisthenic", "output": "â ‰â â ‡â Šâ Žâ ®â â Šâ ‰" }, { "input": "calisthenics", "output": "â ‰â â ‡â Šâ Žâ ®â â Šâ ‰â Ž" }, { "input": "calisthenics's", "output": "â ‰â â ‡â Šâ Žâ ®â â Šâ ‰â Žâ „â Ž" }, { "input": "calk", "output": "â ‰â â ‡â …" }, { "input": "calk's", "output": "â ‰â â ‡â …â „â Ž" }, { "input": "calked", "output": "â ‰â â ‡â …â «" }, { "input": "calking", "output": "â ‰â â ‡â …â Œ" }, { "input": "calks", "output": "â ‰â â ‡â …â Ž" }, { "input": "call", "output": "â ‰â â ‡â ‡" }, { "input": "call's", "output": "â ‰â â ‡â ‡â „â Ž" }, { "input": "calla", "output": "â ‰â â ‡â ‡â " }, { "input": "calla's", "output": "â ‰â â ‡â ‡â â „â Ž" }, { "input": "callable", "output": "â ‰â â ‡â ‡â â ¼" }, { "input": "callas", "output": "â ‰â â ‡â ‡â â Ž" }, { "input": "callback", "output": "â ‰â â ‡â ‡â ƒâ â ‰â …" }, { "input": "callback's", "output": "â ‰â â ‡â ‡â ƒâ â ‰â …â „â Ž" }, { "input": "callbacks", "output": "â ‰â â ‡â ‡â ƒâ â ‰â …â Ž" }, { "input": "called", "output": "â ‰â â ‡â ‡â «" }, { "input": "caller", "output": "â ‰â â ‡â ‡â »" }, { "input": "caller's", "output": "â ‰â â ‡â ‡â »â „â Ž" }, { "input": "callers", "output": "â ‰â â ‡â ‡â »â Ž" }, { "input": "calligrapher", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “â »" }, { "input": "calligrapher's", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “⠻⠄⠎" }, { "input": "calligraphers", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “⠻⠎" }, { "input": "calligraphic", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “â Šâ ‰" }, { "input": "calligraphist", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “â Šâ Œ" }, { "input": "calligraphist's", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “⠊⠌⠄⠎" }, { "input": "calligraphists", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “⠊⠌⠎" }, { "input": "calligraphy", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “â ½" }, { "input": "calligraphy's", "output": "â ‰â â ‡â ‡â Šâ ›â —â â â “⠽⠄⠎" }, { "input": "calling", "output": "â ‰â â ‡â ‡â Œ" }, { "input": "calling's", "output": "â ‰â â ‡â ‡â Œâ „â Ž" }, { "input": "callings", "output": "â ‰â â ‡â ‡â Œâ Ž" }, { "input": "calliope", "output": "â ‰â â ‡â ‡â Šâ •â â ‘" }, { "input": "calliope's", "output": "â ‰â â ‡â ‡â Šâ •â â ‘â „â Ž" }, { "input": "calliopes", "output": "â ‰â â ‡â ‡â Šâ •â â ‘â Ž" }, { "input": "callosities", "output": "â ‰â â ‡â ‡â •â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "callosity", "output": "â ‰â â ‡â ‡â •â Žâ °â ½" }, { "input": "callosity's", "output": "â ‰â â ‡â ‡â •⠎⠰⠽⠄⠎" }, { "input": "callous", "output": "â ‰â â ‡â ‡â ³â Ž" }, { "input": "calloused", "output": "â ‰â â ‡â ‡â ³â Žâ «" }, { "input": "callouses", "output": "â ‰â â ‡â ‡â ³â Žâ ‘â Ž" }, { "input": "callousing", "output": "â ‰â â ‡â ‡â ³â Žâ Œ" }, { "input": "callously", "output": "â ‰â â ‡â ‡â ³â Žâ ‡â ½" }, { "input": "callousness", "output": "â ‰â â ‡â ‡â ³â Žâ °â Ž" }, { "input": "callousness's", "output": "â ‰â â ‡â ‡â ³â Žâ °â Žâ „â Ž" }, { "input": "callow", "output": "â ‰â â ‡â ‡â ª" }, { "input": "callower", "output": "â ‰â â ‡â ‡â ªâ »" }, { "input": "callowest", "output": "â ‰â â ‡â ‡â ªâ ‘â Œ" }, { "input": "callowness", "output": "â ‰â â ‡â ‡â ªâ °â Ž" }, { "input": "callowness's", "output": "â ‰â â ‡â ‡â ªâ °â Žâ „â Ž" }, { "input": "calls", "output": "â ‰â â ‡â ‡â Ž" }, { "input": "callus", "output": "â ‰â â ‡â ‡â ¥â Ž" }, { "input": "callus's", "output": "â ‰â â ‡â ‡â ¥â Žâ „â Ž" }, { "input": "callused", "output": "â ‰â â ‡â ‡â ¥â Žâ «" }, { "input": "calluses", "output": "â ‰â â ‡â ‡â ¥â Žâ ‘â Ž" }, { "input": "callusing", "output": "â ‰â â ‡â ‡â ¥â Žâ Œ" }, { "input": "calm", "output": "â ‰â â ‡â " }, { "input": "calm's", "output": "â ‰â â ‡â â „â Ž" }, { "input": "calmed", "output": "â ‰â â ‡â â «" }, { "input": "calmer", "output": "â ‰â â ‡â â »" }, { "input": "calmest", "output": "â ‰â â ‡â â ‘â Œ" }, { "input": "calming", "output": "â ‰â â ‡â â Œ" }, { "input": "calmly", "output": "â ‰â â ‡â â ‡â ½" }, { "input": "calmness", "output": "â ‰â â ‡â â °â Ž" }, { "input": "calmness's", "output": "â ‰â â ‡â â °â Žâ „â Ž" }, { "input": "calms", "output": "â ‰â â ‡â â Ž" }, { "input": "caloric", "output": "â ‰â â ‡â •â —â Šâ ‰" }, { "input": "calorie", "output": "â ‰â â ‡â •â —â Šâ ‘" }, { "input": "calorie's", "output": "â ‰â â ‡â •â —â Šâ ‘â „â Ž" }, { "input": "calories", "output": "â ‰â â ‡â •â —â Šâ ‘â Ž" }, { "input": "calorific", "output": "â ‰â â ‡â •â —â Šâ ‹â Šâ ‰" }, { "input": "calumet", "output": "â ‰â â ‡â ¥â â ‘â ž" }, { "input": "calumet's", "output": "â ‰â â ‡â ¥â â ‘â žâ „â Ž" }, { "input": "calumets", "output": "â ‰â â ‡â ¥â â ‘â žâ Ž" }, { "input": "calumniate", "output": "â ‰â â ‡â ¥â â â Šâ â žâ ‘" }, { "input": "calumniated", "output": "â ‰â â ‡â ¥â â â Šâ â žâ «" }, { "input": "calumniates", "output": "â ‰â â ‡â ¥â â â Šâ â žâ ‘â Ž" }, { "input": "calumniating", "output": "â ‰â â ‡â ¥â â â Šâ â žâ Œ" }, { "input": "calumniation", "output": "â ‰â â ‡â ¥â â â Šâ  â " }, { "input": "calumniation's", "output": "â ‰â â ‡â ¥â â â Šâ  â â „â Ž" }, { "input": "calumniator", "output": "â ‰â â ‡â ¥â â â Šâ â žâ •â —" }, { "input": "calumniator's", "output": "â ‰â â ‡â ¥â â â Šâ â žâ •â —â „â Ž" }, { "input": "calumniators", "output": "â ‰â â ‡â ¥â â â Šâ â žâ •â —â Ž" }, { "input": "calumnies", "output": "â ‰â â ‡â ¥â â â Šâ ‘â Ž" }, { "input": "calumnious", "output": "â ‰â â ‡â ¥â â â Šâ ³â Ž" }, { "input": "calumny", "output": "â ‰â â ‡â ¥â â â ½" }, { "input": "calumny's", "output": "â ‰â â ‡â ¥â â â ½â „â Ž" }, { "input": "calve", "output": "â ‰â â ‡â §â ‘" }, { "input": "calved", "output": "â ‰â â ‡â §â «" }, { "input": "calves", "output": "â ‰â â ‡â §â ‘â Ž" }, { "input": "calving", "output": "â ‰â â ‡â §â Œ" }, { "input": "calypso", "output": "â ‰â â ‡â ½â â Žâ •" }, { "input": "calypso's", "output": "â ‰â â ‡â ½â â Žâ •â „â Ž" }, { "input": "calypsos", "output": "â ‰â â ‡â ½â â Žâ •â Ž" }, { "input": "calyx", "output": "â ‰â â ‡â ½â ­" }, { "input": "calyx's", "output": "â ‰â â ‡â ½â ­â „â Ž" }, { "input": "calyxes", "output": "â ‰â â ‡â ½â ­â ‘â Ž" }, { "input": "cam", "output": "â ‰â â " }, { "input": "cam's", "output": "â ‰â â â „â Ž" }, { "input": "camaraderie", "output": "â ‰â â â œâ â ™â »â Šâ ‘" }, { "input": "camaraderie's", "output": "â ‰â â â œâ â ™â »â Šâ ‘â „â Ž" }, { "input": "camber", "output": "â ‰â â â ƒâ »" }, { "input": "camber's", "output": "â ‰â â â ƒâ »â „â Ž" }, { "input": "cambered", "output": "â ‰â â â ƒâ »â «" }, { "input": "cambering", "output": "â ‰â â â ƒâ »â Œ" }, { "input": "cambers", "output": "â ‰â â â ƒâ »â Ž" }, { "input": "cambial", "output": "â ‰â â â ƒâ Šâ â ‡" }, { "input": "cambium", "output": "â ‰â â â ƒâ Šâ ¥â " }, { "input": "cambium's", "output": "â ‰â â â ƒâ Šâ ¥â â „â Ž" }, { "input": "cambiums", "output": "â ‰â â â ƒâ Šâ ¥â â Ž" }, { "input": "cambric", "output": "â ‰â â â ƒâ —â Šâ ‰" }, { "input": "cambric's", "output": "â ‰â â â ƒâ —⠊⠉⠄⠎" }, { "input": "camcorder", "output": "â ‰â â â ‰â •⠗⠙⠻" }, { "input": "camcorder's", "output": "â ‰â â â ‰â •⠗⠙⠻⠄⠎" }, { "input": "camcorders", "output": "â ‰â â â ‰â •⠗⠙⠻⠎" }, { "input": "came", "output": "â ‰â â â ‘" }, { "input": "camel", "output": "â ‰â â â ‘â ‡" }, { "input": "camel's", "output": "â ‰â â â ‘⠇⠄⠎" }, { "input": "camelhair", "output": "â ‰â â â ‘⠇⠓â â Šâ —" }, { "input": "camellia", "output": "â ‰â â â ‘⠇⠇⠊â " }, { "input": "camellia's", "output": "â ‰â â â ‘⠇⠇⠊â â „â Ž" }, { "input": "camellias", "output": "â ‰â â â ‘⠇⠇⠊â â Ž" }, { "input": "camels", "output": "â ‰â â â ‘⠇⠎" }, { "input": "cameo", "output": "â ‰â â â ‘â •" }, { "input": "cameo's", "output": "â ‰â â â ‘â •â „â Ž" }, { "input": "cameos", "output": "â ‰â â â ‘â •â Ž" }, { "input": "camera", "output": "â ‰â â â »â " }, { "input": "camera's", "output": "â ‰â â â »â â „â Ž" }, { "input": "cameraman", "output": "â ‰â â â »â â â â " }, { "input": "cameraman's", "output": "â ‰â â â »â â â â â „â Ž" }, { "input": "cameramen", "output": "â ‰â â â »â â â ¢" }, { "input": "cameras", "output": "â ‰â â â »â â Ž" }, { "input": "camerawoman", "output": "â ‰â â â »â â ºâ •â â â " }, { "input": "camerawoman's", "output": "â ‰â â â »â â ºâ •â â â â „â Ž" }, { "input": "camerawomen", "output": "â ‰â â â »â â ºâ •â â ¢" }, { "input": "camisole", "output": "â ‰â â â Šâ Žâ •⠇⠑" }, { "input": "camisole's", "output": "â ‰â â â Šâ Žâ •⠇⠑⠄⠎" }, { "input": "camisoles", "output": "â ‰â â â Šâ Žâ •⠇⠑⠎" }, { "input": "camouflage", "output": "â ‰â â â ³â ‹â ‡â â ›â ‘" }, { "input": "camouflage's", "output": "â ‰â â â ³â ‹â ‡â â ›â ‘â „â Ž" }, { "input": "camouflaged", "output": "â ‰â â â ³â ‹â ‡â â ›â «" }, { "input": "camouflager", "output": "â ‰â â â ³â ‹â ‡â â ›â »" }, { "input": "camouflager's", "output": "â ‰â â â ³â ‹â ‡â â ›â »â „â Ž" }, { "input": "camouflagers", "output": "â ‰â â â ³â ‹â ‡â â ›â »â Ž" }, { "input": "camouflages", "output": "â ‰â â â ³â ‹â ‡â â ›â ‘â Ž" }, { "input": "camouflaging", "output": "â ‰â â â ³â ‹â ‡â â ›â Œ" }, { "input": "camp", "output": "â ‰â â â " }, { "input": "camp's", "output": "â ‰â â â â „â Ž" }, { "input": "campaign", "output": "â ‰â â â â â Šâ ›â " }, { "input": "campaign's", "output": "â ‰â â â â â Šâ ›â â „â Ž" }, { "input": "campaigned", "output": "â ‰â â â â â Šâ ›â â «" }, { "input": "campaigner", "output": "â ‰â â â â â Šâ ›â â »" }, { "input": "campaigner's", "output": "â ‰â â â â â Šâ ›â â »â „â Ž" }, { "input": "campaigners", "output": "â ‰â â â â â Šâ ›â â »â Ž" }, { "input": "campaigning", "output": "â ‰â â â â â Šâ ›â â Œ" }, { "input": "campaigns", "output": "â ‰â â â â â Šâ ›â â Ž" }, { "input": "campanile", "output": "â ‰â â â â â â Šâ ‡â ‘" }, { "input": "campanile's", "output": "â ‰â â â â â â Šâ ‡â ‘â „â Ž" }, { "input": "campaniles", "output": "â ‰â â â â â â Šâ ‡â ‘â Ž" }, { "input": "campanology's", "output": "â ‰â â â â â â •⠇⠕⠛⠽⠄⠎" }, { "input": "camped", "output": "â ‰â â â â «" }, { "input": "camper", "output": "â ‰â â â â »" }, { "input": "camper's", "output": "â ‰â â â â »â „â Ž" }, { "input": "campers", "output": "â ‰â â â â »â Ž" }, { "input": "campfire", "output": "â ‰â â â â ‹â Šâ —â ‘" }, { "input": "campfire's", "output": "â ‰â â â â ‹â Šâ —â ‘â „â Ž" }, { "input": "campfires", "output": "â ‰â â â â ‹â Šâ —â ‘â Ž" }, { "input": "campground", "output": "â ‰â â â â ›â —⠨⠙" }, { "input": "campground's", "output": "â ‰â â â â ›â —⠨⠙⠄⠎" }, { "input": "campgrounds", "output": "â ‰â â â â ›â —⠨⠙⠎" }, { "input": "camphor", "output": "â ‰â â â â “â •â —" }, { "input": "camphor's", "output": "â ‰â â â â “â •â —â „â Ž" }, { "input": "campier", "output": "â ‰â â â â Šâ »" }, { "input": "campiest", "output": "â ‰â â â â Šâ ‘â Œ" }, { "input": "camping", "output": "â ‰â â â â Œ" }, { "input": "camping's", "output": "â ‰â â â â Œâ „â Ž" }, { "input": "camps", "output": "â ‰â â â â Ž" }, { "input": "campsite", "output": "â ‰â â â â Žâ Šâ žâ ‘" }, { "input": "campsite's", "output": "â ‰â â â â Žâ Šâ žâ ‘â „â Ž" }, { "input": "campsites", "output": "â ‰â â â â Žâ Šâ žâ ‘â Ž" }, { "input": "campus", "output": "â ‰â â â â ¥â Ž" }, { "input": "campus's", "output": "â ‰â â â â ¥â Žâ „â Ž" }, { "input": "campuses", "output": "â ‰â â â â ¥â Žâ ‘â Ž" }, { "input": "campy", "output": "â ‰â â â â ½" }, { "input": "cams", "output": "â ‰â â â Ž" }, { "input": "camshaft", "output": "â ‰â â â ©â â ‹â ž" }, { "input": "camshaft's", "output": "â ‰â â â ©â â ‹â žâ „â Ž" }, { "input": "camshafts", "output": "â ‰â â â ©â â ‹â žâ Ž" }, { "input": "can", "output": "â ‰" }, { "input": "can's", "output": "⠉⠄⠎" }, { "input": "canal", "output": "â ‰â â â â ‡" }, { "input": "canal's", "output": "â ‰â â â â ‡â „â Ž" }, { "input": "canalization", "output": "â ‰â â â â ‡â Šâ µâ  â " }, { "input": "canalization's", "output": "â ‰â â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "canalize", "output": "â ‰â â â â ‡â Šâ µâ ‘" }, { "input": "canalized", "output": "â ‰â â â â ‡â Šâ µâ «" }, { "input": "canalizes", "output": "â ‰â â â â ‡â Šâ µâ ‘â Ž" }, { "input": "canalizing", "output": "â ‰â â â â ‡â Šâ µâ Œ" }, { "input": "canals", "output": "â ‰â â â â ‡â Ž" }, { "input": "canard", "output": "â ‰â â â œâ ™" }, { "input": "canard's", "output": "â ‰â â â œâ ™â „â Ž" }, { "input": "canards", "output": "â ‰â â â œâ ™â Ž" }, { "input": "canaries", "output": "â ‰â â â œâ Šâ ‘â Ž" }, { "input": "canary", "output": "â ‰â â â œâ ½" }, { "input": "canary's", "output": "â ‰â â â œâ ½â „â Ž" }, { "input": "canasta", "output": "â ‰â â â â Œâ " }, { "input": "canasta's", "output": "â ‰â â â â Œâ â „â Ž" }, { "input": "cancan", "output": "â ‰â â â ‰â â " }, { "input": "cancan's", "output": "â ‰â â â ‰â â â „â Ž" }, { "input": "cancans", "output": "â ‰â â â ‰â â â Ž" }, { "input": "cancel", "output": "⠉⠨⠑⠇" }, { "input": "canceled", "output": "⠉⠨⠑⠇⠫" }, { "input": "canceler", "output": "⠉⠨⠑⠇⠻" }, { "input": "canceler's", "output": "⠉⠨⠑⠇⠻⠄⠎" }, { "input": "cancelers", "output": "⠉⠨⠑⠇⠻⠎" }, { "input": "canceling", "output": "⠉⠨⠑⠇⠌" }, { "input": "cancellation", "output": "⠉⠨⠑⠇⠇⠠â " }, { "input": "cancellation's", "output": "⠉⠨⠑⠇⠇⠠â â „â Ž" }, { "input": "cancellations", "output": "⠉⠨⠑⠇⠇⠠â â Ž" }, { "input": "cancels", "output": "⠉⠨⠑⠇⠎" }, { "input": "cancer", "output": "⠉⠨⠑⠗" }, { "input": "cancer's", "output": "⠉⠨⠑⠗⠄⠎" }, { "input": "cancerous", "output": "⠉⠨⠑⠗⠳⠎" }, { "input": "cancers", "output": "⠉⠨⠑⠗⠎" }, { "input": "candelabra", "output": "⠉⠯⠑⠇â â ƒâ —â " }, { "input": "candelabra's", "output": "⠉⠯⠑⠇â â ƒâ —â â „â Ž" }, { "input": "candelabras", "output": "⠉⠯⠑⠇â â ƒâ —â â Ž" }, { "input": "candelabrum", "output": "⠉⠯⠑⠇â â ƒâ —â ¥â " }, { "input": "candelabrum's", "output": "⠉⠯⠑⠇â â ƒâ —â ¥â â „â Ž" }, { "input": "candid", "output": "⠉⠯⠊⠙" }, { "input": "candidacies", "output": "⠉⠯⠊⠙â â ‰â Šâ ‘â Ž" }, { "input": "candidacy", "output": "⠉⠯⠊⠙â â ‰â ½" }, { "input": "candidacy's", "output": "⠉⠯⠊⠙â â ‰â ½â „â Ž" }, { "input": "candidate", "output": "⠉⠯⠊⠙â â žâ ‘" }, { "input": "candidate's", "output": "⠉⠯⠊⠙â â žâ ‘â „â Ž" }, { "input": "candidates", "output": "⠉⠯⠊⠙â â žâ ‘â Ž" }, { "input": "candidly", "output": "⠉⠯⠊⠙⠇⠽" }, { "input": "candidness", "output": "⠉⠯⠊⠙⠰⠎" }, { "input": "candidness's", "output": "⠉⠯⠊⠙⠰⠎⠄⠎" }, { "input": "candied", "output": "⠉⠯⠊⠫" }, { "input": "candies", "output": "⠉⠯⠊⠑⠎" }, { "input": "candle", "output": "⠉⠯⠇⠑" }, { "input": "candle's", "output": "⠉⠯⠇⠑⠄⠎" }, { "input": "candled", "output": "⠉⠯⠇⠫" }, { "input": "candlelight", "output": "⠉⠯⠇⠑⠇⠊⠣⠞" }, { "input": "candlelight's", "output": "⠉⠯⠇⠑⠇⠊⠣⠞⠄⠎" }, { "input": "candlepower", "output": "⠉⠯⠇⠑â â ªâ »" }, { "input": "candlepower's", "output": "⠉⠯⠇⠑â â ªâ »â „â Ž" }, { "input": "candler", "output": "⠉⠯⠇⠻" }, { "input": "candler's", "output": "⠉⠯⠇⠻⠄⠎" }, { "input": "candlers", "output": "⠉⠯⠇⠻⠎" }, { "input": "candles", "output": "⠉⠯⠇⠑⠎" }, { "input": "candlestick", "output": "⠉⠯⠇⠑⠌⠊⠉⠅" }, { "input": "candlestick's", "output": "⠉⠯⠇⠑⠌⠊⠉⠅⠄⠎" }, { "input": "candlesticks", "output": "⠉⠯⠇⠑⠌⠊⠉⠅⠎" }, { "input": "candlewick's", "output": "⠉⠯⠇⠑⠺⠊⠉⠅⠄⠎" }, { "input": "candlewicks", "output": "⠉⠯⠇⠑⠺⠊⠉⠅⠎" }, { "input": "candling", "output": "⠉⠯⠇⠌" }, { "input": "candor", "output": "⠉⠯⠕⠗" }, { "input": "candor's", "output": "⠉⠯⠕⠗⠄⠎" }, { "input": "candy", "output": "⠉⠯⠽" }, { "input": "candy's", "output": "⠉⠯⠽⠄⠎" }, { "input": "candying", "output": "⠉⠯⠽⠌" }, { "input": "cane", "output": "â ‰â â â ‘" }, { "input": "cane's", "output": "â ‰â â â ‘â „â Ž" }, { "input": "canebrake", "output": "â ‰â â â ‘⠃⠗â â …â ‘" }, { "input": "canebrake's", "output": "â ‰â â â ‘⠃⠗â â …â ‘â „â Ž" }, { "input": "canebrakes", "output": "â ‰â â â ‘⠃⠗â â …â ‘â Ž" }, { "input": "caned", "output": "â ‰â â â «" }, { "input": "caner", "output": "â ‰â â â »" }, { "input": "caner's", "output": "â ‰â â â »â „â Ž" }, { "input": "caners", "output": "â ‰â â â »â Ž" }, { "input": "canes", "output": "â ‰â â â ‘â Ž" }, { "input": "canine", "output": "â ‰â â â ”â ‘" }, { "input": "canine's", "output": "â ‰â â â ”â ‘â „â Ž" }, { "input": "canines", "output": "â ‰â â â ”â ‘â Ž" }, { "input": "caning", "output": "â ‰â â â Œ" }, { "input": "canister", "output": "â ‰â â â Šâ Œâ »" }, { "input": "canister's", "output": "â ‰â â â Šâ Œâ »â „â Ž" }, { "input": "canisters", "output": "â ‰â â â Šâ Œâ »â Ž" }, { "input": "canker", "output": "â ‰â â â …â »" }, { "input": "canker's", "output": "â ‰â â â …⠻⠄⠎" }, { "input": "cankered", "output": "â ‰â â â …⠻⠫" }, { "input": "cankering", "output": "â ‰â â â …⠻⠌" }, { "input": "cankerous", "output": "â ‰â â â …⠻⠳⠎" }, { "input": "cankers", "output": "â ‰â â â …⠻⠎" }, { "input": "cannabis", "output": "â ‰â â â â â ƒâ Šâ Ž" }, { "input": "cannabis's", "output": "â ‰â â â â â ƒâ Šâ Žâ „â Ž" }, { "input": "cannabises", "output": "â ‰â â â â â ƒâ Šâ Žâ ‘â Ž" }, { "input": "canned", "output": "â ‰â â â â «" }, { "input": "cannelloni's", "output": "â ‰â â â â ‘⠇⠇⠕â â Šâ „â Ž" }, { "input": "canneries", "output": "â ‰â â â â »â Šâ ‘â Ž" }, { "input": "cannery", "output": "â ‰â â â â »â ½" }, { "input": "cannery's", "output": "â ‰â â â â »â ½â „â Ž" }, { "input": "cannibal", "output": "â ‰â â â â Šâ ƒâ â ‡" }, { "input": "cannibal's", "output": "â ‰â â â â Šâ ƒâ â ‡â „â Ž" }, { "input": "cannibalism", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ Žâ " }, { "input": "cannibalism's", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ Žâ â „â Ž" }, { "input": "cannibalistic", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "cannibalization", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ  â " }, { "input": "cannibalization's", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "cannibalize", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ ‘" }, { "input": "cannibalized", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ «" }, { "input": "cannibalizes", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ ‘â Ž" }, { "input": "cannibalizing", "output": "â ‰â â â â Šâ ƒâ â ‡â Šâ µâ Œ" }, { "input": "cannibals", "output": "â ‰â â â â Šâ ƒâ â ‡â Ž" }, { "input": "cannier", "output": "â ‰â â â â Šâ »" }, { "input": "canniest", "output": "â ‰â â â â Šâ ‘â Œ" }, { "input": "cannily", "output": "â ‰â â â â Šâ ‡â ½" }, { "input": "canniness", "output": "â ‰â â â â Šâ °â Ž" }, { "input": "canniness's", "output": "â ‰â â â â Šâ °â Žâ „â Ž" }, { "input": "canning", "output": "â ‰â â â â Œ" }, { "input": "cannon", "output": "â ‰â â â â •â " }, { "input": "cannon's", "output": "â ‰â â â â •â â „â Ž" }, { "input": "cannonade", "output": "â ‰â â â â •â â â ™â ‘" }, { "input": "cannonade's", "output": "â ‰â â â â •â â â ™â ‘â „â Ž" }, { "input": "cannonaded", "output": "â ‰â â â â •â â â ™â «" }, { "input": "cannonades", "output": "â ‰â â â â •â â â ™â ‘â Ž" }, { "input": "cannonading", "output": "â ‰â â â â •â â â ™â Œ" }, { "input": "cannonball", "output": "â ‰â â â â •â â ƒâ â ‡â ‡" }, { "input": "cannonball's", "output": "â ‰â â â â •â â ƒâ â ‡â ‡â „â Ž" }, { "input": "cannonballs", "output": "â ‰â â â â •â â ƒâ â ‡â ‡â Ž" }, { "input": "cannoned", "output": "â ‰â â â â •â â «" }, { "input": "cannoning", "output": "â ‰â â â â •â â Œ" }, { "input": "cannons", "output": "â ‰â â â â •â â Ž" }, { "input": "cannot", "output": "⠸⠉" }, { "input": "canny", "output": "â ‰â â â â ½" }, { "input": "canoe", "output": "â ‰â â â •â ‘" }, { "input": "canoe's", "output": "â ‰â â â •â ‘â „â Ž" }, { "input": "canoed", "output": "â ‰â â â •â «" }, { "input": "canoeing", "output": "â ‰â â â •â ‘â Œ" }, { "input": "canoeist", "output": "â ‰â â â •â ‘â Šâ Œ" }, { "input": "canoeist's", "output": "â ‰â â â •⠑⠊⠌⠄⠎" }, { "input": "canoeists", "output": "â ‰â â â •⠑⠊⠌⠎" }, { "input": "canoes", "output": "â ‰â â â •â ‘â Ž" }, { "input": "canola", "output": "â ‰â â â •â ‡â " }, { "input": "canola's", "output": "â ‰â â â •â ‡â â „â Ž" }, { "input": "canon", "output": "â ‰â â â •â " }, { "input": "canon's", "output": "â ‰â â â •â â „â Ž" }, { "input": "canonical", "output": "â ‰â â â •â â Šâ ‰â â ‡" }, { "input": "canonically", "output": "â ‰â â â •â â Šâ ‰â  â ½" }, { "input": "canonization", "output": "â ‰â â â •â â Šâ µâ  â " }, { "input": "canonization's", "output": "â ‰â â â •â â Šâ µâ  â â „â Ž" }, { "input": "canonizations", "output": "â ‰â â â •â â Šâ µâ  â â Ž" }, { "input": "canonize", "output": "â ‰â â â •â â Šâ µâ ‘" }, { "input": "canonized", "output": "â ‰â â â •â â Šâ µâ «" }, { "input": "canonizes", "output": "â ‰â â â •â â Šâ µâ ‘â Ž" }, { "input": "canonizing", "output": "â ‰â â â •â â Šâ µâ Œ" }, { "input": "canons", "output": "â ‰â â â •â â Ž" }, { "input": "canopied", "output": "â ‰â â â •â â Šâ «" }, { "input": "canopies", "output": "â ‰â â â •â â Šâ ‘â Ž" }, { "input": "canopy", "output": "â ‰â â â •â â ½" }, { "input": "canopy's", "output": "â ‰â â â •â â ½â „â Ž" }, { "input": "canopying", "output": "â ‰â â â •â â ½â Œ" }, { "input": "cans", "output": "â ‰â â â Ž" }, { "input": "canst", "output": "â ‰â â â Œ" }, { "input": "cant", "output": "â ‰â â â ž" }, { "input": "cant's", "output": "â ‰â â â žâ „â Ž" }, { "input": "cantabile", "output": "â ‰â â â žâ â ƒâ Šâ ‡â ‘" }, { "input": "cantaloupe", "output": "â ‰â â â žâ â ‡â ³â â ‘" }, { "input": "cantaloupe's", "output": "â ‰â â â žâ â ‡â ³â â ‘â „â Ž" }, { "input": "cantaloupes", "output": "â ‰â â â žâ â ‡â ³â â ‘â Ž" }, { "input": "cantankerous", "output": "â ‰â â â žâ â â …⠻⠳⠎" }, { "input": "cantankerously", "output": "â ‰â â â žâ â â …⠻⠳⠎⠇⠽" }, { "input": "cantankerousness", "output": "â ‰â â â žâ â â …⠻⠳⠎⠰⠎" }, { "input": "cantankerousness's", "output": "â ‰â â â žâ â â …⠻⠳⠎⠰⠎⠄⠎" }, { "input": "cantata", "output": "â ‰â â â žâ â žâ " }, { "input": "cantata's", "output": "â ‰â â â žâ â žâ â „â Ž" }, { "input": "cantatas", "output": "â ‰â â â žâ â žâ â Ž" }, { "input": "canted", "output": "â ‰â â â žâ «" }, { "input": "canteen", "output": "â ‰â â â žâ ‘â ¢" }, { "input": "canteen's", "output": "â ‰â â â žâ ‘⠢⠄⠎" }, { "input": "canteens", "output": "â ‰â â â žâ ‘⠢⠎" }, { "input": "canter", "output": "â ‰â â â žâ »" }, { "input": "canter's", "output": "â ‰â â â žâ »â „â Ž" }, { "input": "cantered", "output": "â ‰â â â žâ »â «" }, { "input": "cantering", "output": "â ‰â â â žâ »â Œ" }, { "input": "canters", "output": "â ‰â â â žâ »â Ž" }, { "input": "canticle", "output": "â ‰â â â žâ Šâ ‰â ‡â ‘" }, { "input": "canticle's", "output": "â ‰â â â žâ Šâ ‰â ‡â ‘â „â Ž" }, { "input": "canticles", "output": "â ‰â â â žâ Šâ ‰â ‡â ‘â Ž" }, { "input": "cantilever", "output": "â ‰â â â žâ Šâ ‡â â ‘" }, { "input": "cantilever's", "output": "â ‰â â â žâ Šâ ‡â â ‘â „â Ž" }, { "input": "cantilevered", "output": "â ‰â â â žâ Šâ ‡â â ‘â «" }, { "input": "cantilevering", "output": "â ‰â â â žâ Šâ ‡â â ‘â Œ" }, { "input": "cantilevers", "output": "â ‰â â â žâ Šâ ‡â â ‘â Ž" }, { "input": "canting", "output": "â ‰â â â žâ Œ" }, { "input": "canto", "output": "â ‰â â â žâ •" }, { "input": "canto's", "output": "â ‰â â â žâ •â „â Ž" }, { "input": "canton", "output": "â ‰â â â žâ •â " }, { "input": "canton's", "output": "â ‰â â â žâ •â â „â Ž" }, { "input": "cantonal", "output": "â ‰â â â žâ •â â â ‡" }, { "input": "cantons", "output": "â ‰â â â žâ •â â Ž" }, { "input": "cantor", "output": "â ‰â â â žâ •â —" }, { "input": "cantor's", "output": "â ‰â â â žâ •â —â „â Ž" }, { "input": "cantors", "output": "â ‰â â â žâ •â —â Ž" }, { "input": "cantos", "output": "â ‰â â â žâ •â Ž" }, { "input": "cants", "output": "â ‰â â â žâ Ž" }, { "input": "canvas", "output": "â ‰â â â §â â Ž" }, { "input": "canvas's", "output": "â ‰â â â §â â Žâ „â Ž" }, { "input": "canvasback", "output": "â ‰â â â §â â Žâ ƒâ â ‰â …" }, { "input": "canvasback's", "output": "â ‰â â â §â â Žâ ƒâ â ‰â …â „â Ž" }, { "input": "canvasbacks", "output": "â ‰â â â §â â Žâ ƒâ â ‰â …â Ž" }, { "input": "canvased", "output": "â ‰â â â §â â Žâ «" }, { "input": "canvases", "output": "â ‰â â â §â â Žâ ‘â Ž" }, { "input": "canvasing", "output": "â ‰â â â §â â Žâ Œ" }, { "input": "canvass", "output": "â ‰â â â §â â Žâ Ž" }, { "input": "canvass's", "output": "â ‰â â â §â â Žâ Žâ „â Ž" }, { "input": "canvassed", "output": "â ‰â â â §â â Žâ Žâ «" }, { "input": "canvasser", "output": "â ‰â â â §â â Žâ Žâ »" }, { "input": "canvasser's", "output": "â ‰â â â §â â Žâ Žâ »â „â Ž" }, { "input": "canvassers", "output": "â ‰â â â §â â Žâ Žâ »â Ž" }, { "input": "canvasses", "output": "â ‰â â â §â â Žâ Žâ ‘â Ž" }, { "input": "canvassing", "output": "â ‰â â â §â â Žâ Žâ Œ" }, { "input": "canyon", "output": "â ‰â â â ½â •â " }, { "input": "canyon's", "output": "â ‰â â â ½â •â â „â Ž" }, { "input": "canyons", "output": "â ‰â â â ½â •â â Ž" }, { "input": "cap", "output": "â ‰â â " }, { "input": "cap's", "output": "â ‰â â â „â Ž" }, { "input": "capabilities", "output": "â ‰â â â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "capability", "output": "â ‰â â â â ƒâ Šâ ‡â °â ½" }, { "input": "capability's", "output": "â ‰â â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "capable", "output": "â ‰â â â â ¼" }, { "input": "capably", "output": "â ‰â â â â ƒâ ‡â ½" }, { "input": "capacious", "output": "â ‰â â â â ‰â Šâ ³â Ž" }, { "input": "capaciously", "output": "â ‰â â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "capaciousness", "output": "â ‰â â â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "capaciousness's", "output": "â ‰â â â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "capacitance", "output": "â ‰â â â â ‰â Šâ žâ ¨â ‘" }, { "input": "capacitance's", "output": "â ‰â â â â ‰â Šâ žâ ¨â ‘â „â Ž" }, { "input": "capacities", "output": "â ‰â â â â ‰â Šâ žâ Šâ ‘â Ž" }, { "input": "capacitor", "output": "â ‰â â â â ‰â Šâ žâ •â —" }, { "input": "capacitor's", "output": "â ‰â â â â ‰â Šâ žâ •â —â „â Ž" }, { "input": "capacitors", "output": "â ‰â â â â ‰â Šâ žâ •â —â Ž" }, { "input": "capacity", "output": "â ‰â â â â ‰â °â ½" }, { "input": "capacity's", "output": "â ‰â â â â ‰â °â ½â „â Ž" }, { "input": "caparison", "output": "â ‰â â â œâ Šâ Žâ •â " }, { "input": "caparison's", "output": "â ‰â â â œâ Šâ Žâ •â â „â Ž" }, { "input": "caparisoned", "output": "â ‰â â â œâ Šâ Žâ •â â «" }, { "input": "caparisoning", "output": "â ‰â â â œâ Šâ Žâ •â â Œ" }, { "input": "caparisons", "output": "â ‰â â â œâ Šâ Žâ •â â Ž" }, { "input": "cape", "output": "â ‰â â â ‘" }, { "input": "cape's", "output": "â ‰â â â ‘â „â Ž" }, { "input": "caped", "output": "â ‰â â â «" }, { "input": "caper", "output": "â ‰â â â »" }, { "input": "caper's", "output": "â ‰â â â »â „â Ž" }, { "input": "capered", "output": "â ‰â â â »â «" }, { "input": "capering", "output": "â ‰â â â »â Œ" }, { "input": "capers", "output": "â ‰â â â »â Ž" }, { "input": "capes", "output": "â ‰â â â ‘â Ž" }, { "input": "capeskin", "output": "â ‰â â â ‘â Žâ …â ”" }, { "input": "capeskin's", "output": "â ‰â â â ‘⠎⠅⠔⠄⠎" }, { "input": "capillaries", "output": "â ‰â â â Šâ ‡â ‡â œâ Šâ ‘â Ž" }, { "input": "capillarity", "output": "â ‰â â â Šâ ‡â ‡â œâ °â ½" }, { "input": "capillarity's", "output": "â ‰â â â Šâ ‡â ‡â œâ °â ½â „â Ž" }, { "input": "capillary", "output": "â ‰â â â Šâ ‡â ‡â œâ ½" }, { "input": "capillary's", "output": "â ‰â â â Šâ ‡â ‡â œâ ½â „â Ž" }, { "input": "capital", "output": "â ‰â â â Šâ žâ â ‡" }, { "input": "capital's", "output": "â ‰â â â Šâ žâ â ‡â „â Ž" }, { "input": "capitalism", "output": "â ‰â â â Šâ žâ â ‡â Šâ Žâ " }, { "input": "capitalism's", "output": "â ‰â â â Šâ žâ â ‡â Šâ Žâ â „â Ž" }, { "input": "capitalist", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œ" }, { "input": "capitalist's", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œâ „â Ž" }, { "input": "capitalistic", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "capitalistically", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "capitalists", "output": "â ‰â â â Šâ žâ â ‡â Šâ Œâ Ž" }, { "input": "capitalization", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ  â " }, { "input": "capitalization's", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "capitalize", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "capitalized", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ «" }, { "input": "capitalizes", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "capitalizing", "output": "â ‰â â â Šâ žâ â ‡â Šâ µâ Œ" }, { "input": "capitally", "output": "â ‰â â â Šâ žâ  â ½" }, { "input": "capitals", "output": "â ‰â â â Šâ žâ â ‡â Ž" }, { "input": "capitol", "output": "â ‰â â â Šâ žâ •â ‡" }, { "input": "capitol's", "output": "â ‰â â â Šâ žâ •⠇⠄⠎" }, { "input": "capitols", "output": "â ‰â â â Šâ žâ •⠇⠎" }, { "input": "capitulate", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ ‘" }, { "input": "capitulated", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ «" }, { "input": "capitulates", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "capitulating", "output": "â ‰â â â Šâ žâ ¥â ‡â â žâ Œ" }, { "input": "capitulation", "output": "â ‰â â â Šâ žâ ¥â ‡â  â " }, { "input": "capitulation's", "output": "â ‰â â â Šâ žâ ¥â ‡â  â â „â Ž" }, { "input": "capitulations", "output": "â ‰â â â Šâ žâ ¥â ‡â  â â Ž" }, { "input": "caplet", "output": "â ‰â â â ‡â ‘â ž" }, { "input": "caplet's", "output": "â ‰â â â ‡â ‘â žâ „â Ž" }, { "input": "caplets", "output": "â ‰â â â ‡â ‘â žâ Ž" }, { "input": "capo", "output": "â ‰â â â •" }, { "input": "capo's", "output": "â ‰â â â •â „â Ž" }, { "input": "capon", "output": "â ‰â â â •â " }, { "input": "capon's", "output": "â ‰â â â •â â „â Ž" }, { "input": "capons", "output": "â ‰â â â •â â Ž" }, { "input": "capos", "output": "â ‰â â â •â Ž" }, { "input": "capped", "output": "â ‰â â â â «" }, { "input": "capping", "output": "â ‰â â â â Œ" }, { "input": "cappuccino", "output": "â ‰â â â â ¥â ’⠔⠕" }, { "input": "cappuccino's", "output": "â ‰â â â â ¥â ’⠔⠕⠄⠎" }, { "input": "cappuccinos", "output": "â ‰â â â â ¥â ’⠔⠕⠎" }, { "input": "caprice", "output": "â ‰â â â —⠊⠉⠑" }, { "input": "caprice's", "output": "â ‰â â â —⠊⠉⠑⠄⠎" }, { "input": "caprices", "output": "â ‰â â â —⠊⠉⠑⠎" }, { "input": "capricious", "output": "â ‰â â â —⠊⠉⠊⠳⠎" }, { "input": "capriciously", "output": "â ‰â â â —⠊⠉⠊⠳⠎⠇⠽" }, { "input": "capriciousness", "output": "â ‰â â â —⠊⠉⠊⠳⠎⠰⠎" }, { "input": "capriciousness's", "output": "â ‰â â â —⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "caps", "output": "â ‰â â â Ž" }, { "input": "capsize", "output": "â ‰â â â Žâ Šâ µâ ‘" }, { "input": "capsized", "output": "â ‰â â â Žâ Šâ µâ «" }, { "input": "capsizes", "output": "â ‰â â â Žâ Šâ µâ ‘â Ž" }, { "input": "capsizing", "output": "â ‰â â â Žâ Šâ µâ Œ" }, { "input": "capstan", "output": "â ‰â â â Œâ â " }, { "input": "capstan's", "output": "â ‰â â â Œâ â â „â Ž" }, { "input": "capstans", "output": "â ‰â â â Œâ â â Ž" }, { "input": "capstone", "output": "â ‰â â â Œâ â •" }, { "input": "capstone's", "output": "â ‰â â â Œâ â •â „â Ž" }, { "input": "capstones", "output": "â ‰â â â Œâ â •â Ž" }, { "input": "capsular", "output": "â ‰â â â Žâ ¥â ‡â œ" }, { "input": "capsule", "output": "â ‰â â â Žâ ¥â ‡â ‘" }, { "input": "capsule's", "output": "â ‰â â â Žâ ¥â ‡â ‘â „â Ž" }, { "input": "capsuled", "output": "â ‰â â â Žâ ¥â ‡â «" }, { "input": "capsules", "output": "â ‰â â â Žâ ¥â ‡â ‘â Ž" }, { "input": "capsuling", "output": "â ‰â â â Žâ ¥â ‡â Œ" }, { "input": "capsulize", "output": "â ‰â â â Žâ ¥â ‡â Šâ µâ ‘" }, { "input": "capsulized", "output": "â ‰â â â Žâ ¥â ‡â Šâ µâ «" }, { "input": "capsulizes", "output": "â ‰â â â Žâ ¥â ‡â Šâ µâ ‘â Ž" }, { "input": "capsulizing", "output": "â ‰â â â Žâ ¥â ‡â Šâ µâ Œ" }, { "input": "captain", "output": "â ‰â â â žâ â ”" }, { "input": "captain's", "output": "â ‰â â â žâ â ”â „â Ž" }, { "input": "captaincies", "output": "â ‰â â â žâ â ”⠉⠊⠑⠎" }, { "input": "captaincy", "output": "â ‰â â â žâ â ”⠉⠽" }, { "input": "captaincy's", "output": "â ‰â â â žâ â ”⠉⠽⠄⠎" }, { "input": "captained", "output": "â ‰â â â žâ â ”â «" }, { "input": "captaining", "output": "â ‰â â â žâ â ”â Œ" }, { "input": "captains", "output": "â ‰â â â žâ â ”â Ž" }, { "input": "caption", "output": "â ‰â â â °â " }, { "input": "caption's", "output": "â ‰â â â °â â „â Ž" }, { "input": "captioned", "output": "â ‰â â â °â â «" }, { "input": "captioning", "output": "â ‰â â â °â â Œ" }, { "input": "captions", "output": "â ‰â â â °â â Ž" }, { "input": "captious", "output": "â ‰â â â žâ Šâ ³â Ž" }, { "input": "captiously", "output": "â ‰â â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "captiousness", "output": "â ‰â â â žâ Šâ ³â Žâ °â Ž" }, { "input": "captiousness's", "output": "â ‰â â â žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "captivate", "output": "â ‰â â â žâ Šâ §â â žâ ‘" }, { "input": "captivated", "output": "â ‰â â â žâ Šâ §â â žâ «" }, { "input": "captivates", "output": "â ‰â â â žâ Šâ §â â žâ ‘â Ž" }, { "input": "captivating", "output": "â ‰â â â žâ Šâ §â â žâ Œ" }, { "input": "captivation", "output": "â ‰â â â žâ Šâ §â  â " }, { "input": "captivation's", "output": "â ‰â â â žâ Šâ §â  â â „â Ž" }, { "input": "captivator", "output": "â ‰â â â žâ Šâ §â â žâ •â —" }, { "input": "captivator's", "output": "â ‰â â â žâ Šâ §â â žâ •â —â „â Ž" }, { "input": "captivators", "output": "â ‰â â â žâ Šâ §â â žâ •â —â Ž" }, { "input": "captive", "output": "â ‰â â â žâ Šâ §â ‘" }, { "input": "captive's", "output": "â ‰â â â žâ Šâ §â ‘â „â Ž" }, { "input": "captives", "output": "â ‰â â â žâ Šâ §â ‘â Ž" }, { "input": "captivities", "output": "â ‰â â â žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "captivity", "output": "â ‰â â â žâ Šâ §â °â ½" }, { "input": "captivity's", "output": "â ‰â â â žâ Šâ §â °â ½â „â Ž" }, { "input": "captor", "output": "â ‰â â â žâ •â —" }, { "input": "captor's", "output": "â ‰â â â žâ •â —â „â Ž" }, { "input": "captors", "output": "â ‰â â â žâ •â —â Ž" }, { "input": "capture", "output": "â ‰â â â žâ ¥â —â ‘" }, { "input": "capture's", "output": "â ‰â â â žâ ¥â —â ‘â „â Ž" }, { "input": "captured", "output": "â ‰â â â žâ ¥â —â «" }, { "input": "captures", "output": "â ‰â â â žâ ¥â —â ‘â Ž" }, { "input": "capturing", "output": "â ‰â â â žâ ¥â —â Œ" }, { "input": "car", "output": "⠉⠜" }, { "input": "car's", "output": "⠉⠜⠄⠎" }, { "input": "carafe", "output": "⠉⠜â â ‹â ‘" }, { "input": "carafe's", "output": "⠉⠜â â ‹â ‘â „â Ž" }, { "input": "carafes", "output": "⠉⠜â â ‹â ‘â Ž" }, { "input": "caramel", "output": "⠉⠜â â â ‘â ‡" }, { "input": "caramel's", "output": "⠉⠜â â â ‘⠇⠄⠎" }, { "input": "caramelize", "output": "⠉⠜â â â ‘⠇⠊⠵⠑" }, { "input": "caramelized", "output": "⠉⠜â â â ‘⠇⠊⠵⠫" }, { "input": "caramelizes", "output": "⠉⠜â â â ‘⠇⠊⠵⠑⠎" }, { "input": "caramelizing", "output": "⠉⠜â â â ‘⠇⠊⠵⠌" }, { "input": "caramels", "output": "⠉⠜â â â ‘⠇⠎" }, { "input": "carapace", "output": "⠉⠜â â â â ‰â ‘" }, { "input": "carapace's", "output": "⠉⠜â â â â ‰â ‘â „â Ž" }, { "input": "carapaces", "output": "⠉⠜â â â â ‰â ‘â Ž" }, { "input": "carat", "output": "⠉⠜â â ž" }, { "input": "carat's", "output": "⠉⠜â â žâ „â Ž" }, { "input": "carats", "output": "⠉⠜â â žâ Ž" }, { "input": "caravan", "output": "⠉⠜â â §â â " }, { "input": "caravan's", "output": "⠉⠜â â §â â â „â Ž" }, { "input": "caravans", "output": "⠉⠜â â §â â â Ž" }, { "input": "caravansaries", "output": "⠉⠜â â §â â â Žâ œâ Šâ ‘â Ž" }, { "input": "caravansary", "output": "⠉⠜â â §â â â Žâ œâ ½" }, { "input": "caravansary's", "output": "⠉⠜â â §â â â Žâ œâ ½â „â Ž" }, { "input": "caravel", "output": "⠉⠜â â §â ‘â ‡" }, { "input": "caravel's", "output": "⠉⠜â â §â ‘⠇⠄⠎" }, { "input": "caravels", "output": "⠉⠜â â §â ‘⠇⠎" }, { "input": "caraway", "output": "⠉⠜â â ºâ â ½" }, { "input": "caraway's", "output": "⠉⠜â â ºâ â ½â „â Ž" }, { "input": "caraways", "output": "⠉⠜â â ºâ â ½â Ž" }, { "input": "carbide", "output": "⠉⠜⠃⠊⠙⠑" }, { "input": "carbide's", "output": "⠉⠜⠃⠊⠙⠑⠄⠎" }, { "input": "carbides", "output": "⠉⠜⠃⠊⠙⠑⠎" }, { "input": "carbine", "output": "⠉⠜⠃⠔⠑" }, { "input": "carbine's", "output": "⠉⠜⠃⠔⠑⠄⠎" }, { "input": "carbines", "output": "⠉⠜⠃⠔⠑⠎" }, { "input": "carbohydrate", "output": "⠉⠜⠃⠕⠓⠽⠙⠗â â žâ ‘" }, { "input": "carbohydrate's", "output": "⠉⠜⠃⠕⠓⠽⠙⠗â â žâ ‘â „â Ž" }, { "input": "carbohydrates", "output": "⠉⠜⠃⠕⠓⠽⠙⠗â â žâ ‘â Ž" }, { "input": "carbon", "output": "⠉⠜⠃⠕â " }, { "input": "carbon's", "output": "⠉⠜⠃⠕â â „â Ž" }, { "input": "carbonaceous", "output": "⠉⠜⠃⠕â â â ‰â ‘⠳⠎" }, { "input": "carbonate", "output": "⠉⠜⠃⠕â â â žâ ‘" }, { "input": "carbonate's", "output": "⠉⠜⠃⠕â â â žâ ‘â „â Ž" }, { "input": "carbonated", "output": "⠉⠜⠃⠕â â â žâ «" }, { "input": "carbonates", "output": "⠉⠜⠃⠕â â â žâ ‘â Ž" }, { "input": "carbonating", "output": "⠉⠜⠃⠕â â â žâ Œ" }, { "input": "carbonation", "output": "⠉⠜⠃⠕â â  â " }, { "input": "carbonation's", "output": "⠉⠜⠃⠕â â  â â „â Ž" }, { "input": "carbonize", "output": "⠉⠜⠃⠕â â Šâ µâ ‘" }, { "input": "carbonized", "output": "⠉⠜⠃⠕â â Šâ µâ «" }, { "input": "carbonizes", "output": "⠉⠜⠃⠕â â Šâ µâ ‘â Ž" }, { "input": "carbonizing", "output": "⠉⠜⠃⠕â â Šâ µâ Œ" }, { "input": "carbons", "output": "⠉⠜⠃⠕â â Ž" }, { "input": "carborundum", "output": "⠉⠜⠃⠕⠗⠥â â ™â ¥â " }, { "input": "carborundum's", "output": "⠉⠜⠃⠕⠗⠥â â ™â ¥â â „â Ž" }, { "input": "carboy", "output": "⠉⠜⠃⠕⠽" }, { "input": "carboy's", "output": "⠉⠜⠃⠕⠽⠄⠎" }, { "input": "carboys", "output": "⠉⠜⠃⠕⠽⠎" }, { "input": "carbuncle", "output": "⠉⠜⠃⠥â â ‰â ‡â ‘" }, { "input": "carbuncle's", "output": "⠉⠜⠃⠥â â ‰â ‡â ‘â „â Ž" }, { "input": "carbuncles", "output": "⠉⠜⠃⠥â â ‰â ‡â ‘â Ž" }, { "input": "carbuncular", "output": "⠉⠜⠃⠥â â ‰â ¥â ‡â œ" }, { "input": "carburetor", "output": "⠉⠜⠃⠥⠗⠑⠞⠕⠗" }, { "input": "carburetor's", "output": "⠉⠜⠃⠥⠗⠑⠞⠕⠗⠄⠎" }, { "input": "carburetors", "output": "⠉⠜⠃⠥⠗⠑⠞⠕⠗⠎" }, { "input": "carcass", "output": "⠉⠜⠉â â Žâ Ž" }, { "input": "carcass's", "output": "⠉⠜⠉â â Žâ Žâ „â Ž" }, { "input": "carcasses", "output": "⠉⠜⠉â â Žâ Žâ ‘â Ž" }, { "input": "carcinogen", "output": "⠉⠜⠉⠔⠕⠛⠢" }, { "input": "carcinogen's", "output": "⠉⠜⠉⠔⠕⠛⠢⠄⠎" }, { "input": "carcinogenic", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉" }, { "input": "carcinogenic's", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉⠄⠎" }, { "input": "carcinogenicity", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉⠰⠽" }, { "input": "carcinogenicity's", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉⠰⠽⠄⠎" }, { "input": "carcinogenics", "output": "⠉⠜⠉⠔⠕⠛⠢⠊⠉⠎" }, { "input": "carcinogens", "output": "⠉⠜⠉⠔⠕⠛⠢⠎" }, { "input": "carcinoma", "output": "⠉⠜⠉⠔⠕â â " }, { "input": "carcinoma's", "output": "⠉⠜⠉⠔⠕â â â „â Ž" }, { "input": "carcinomas", "output": "⠉⠜⠉⠔⠕â â â Ž" }, { "input": "card", "output": "⠉⠜⠙" }, { "input": "card's", "output": "⠉⠜⠙⠄⠎" }, { "input": "cardboard", "output": "⠉⠜⠙⠃⠕⠜⠙" }, { "input": "cardboard's", "output": "⠉⠜⠙⠃⠕⠜⠙⠄⠎" }, { "input": "carded", "output": "⠉⠜⠙⠫" }, { "input": "carder", "output": "⠉⠜⠙⠻" }, { "input": "carder's", "output": "⠉⠜⠙⠻⠄⠎" }, { "input": "carders", "output": "⠉⠜⠙⠻⠎" }, { "input": "cardiac", "output": "⠉⠜⠙⠊â â ‰" }, { "input": "cardie", "output": "⠉⠜⠙⠊⠑" }, { "input": "cardigan", "output": "⠉⠜⠙⠊⠛â â " }, { "input": "cardigan's", "output": "⠉⠜⠙⠊⠛â â â „â Ž" }, { "input": "cardigans", "output": "⠉⠜⠙⠊⠛â â â Ž" }, { "input": "cardinal", "output": "⠉⠜⠙⠔â â ‡" }, { "input": "cardinal's", "output": "⠉⠜⠙⠔â â ‡â „â Ž" }, { "input": "cardinally", "output": "⠉⠜⠙⠔⠠⠽" }, { "input": "cardinals", "output": "⠉⠜⠙⠔â â ‡â Ž" }, { "input": "carding", "output": "⠉⠜⠙⠌" }, { "input": "cardiogram", "output": "⠉⠜⠙⠊⠕⠛⠗â â " }, { "input": "cardiogram's", "output": "⠉⠜⠙⠊⠕⠛⠗â â â „â Ž" }, { "input": "cardiograms", "output": "⠉⠜⠙⠊⠕⠛⠗â â â Ž" }, { "input": "cardiograph", "output": "⠉⠜⠙⠊⠕⠛⠗â â â “" }, { "input": "cardiograph's", "output": "⠉⠜⠙⠊⠕⠛⠗â â â “â „â Ž" }, { "input": "cardiographs", "output": "⠉⠜⠙⠊⠕⠛⠗â â â “â Ž" }, { "input": "cardiologist", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠊⠌" }, { "input": "cardiologist's", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "cardiologists", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "cardiology", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠽" }, { "input": "cardiology's", "output": "⠉⠜⠙⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "cardiopulmonary", "output": "⠉⠜⠙⠊⠕â â ¥â ‡â â •â â œâ ½" }, { "input": "cardiovascular", "output": "⠉⠜⠙⠊⠕⠧â â Žâ ‰â ¥â ‡â œ" }, { "input": "cards", "output": "⠉⠜⠙⠎" }, { "input": "cardsharp", "output": "⠉⠜⠙⠩⠜â " }, { "input": "cardsharp's", "output": "⠉⠜⠙⠩⠜â â „â Ž" }, { "input": "cardsharper", "output": "⠉⠜⠙⠩⠜â â »" }, { "input": "cardsharper's", "output": "⠉⠜⠙⠩⠜â â »â „â Ž" }, { "input": "cardsharpers", "output": "⠉⠜⠙⠩⠜â â »â Ž" }, { "input": "cardsharps", "output": "⠉⠜⠙⠩⠜â â Ž" }, { "input": "care", "output": "⠉⠜⠑" }, { "input": "care's", "output": "⠉⠜⠑⠄⠎" }, { "input": "cared", "output": "⠉⠜⠫" }, { "input": "careen", "output": "⠉⠜⠑⠢" }, { "input": "careened", "output": "⠉⠜⠑⠢⠫" }, { "input": "careening", "output": "⠉⠜⠑⠢⠌" }, { "input": "careens", "output": "⠉⠜⠑⠢⠎" }, { "input": "career", "output": "⠉⠜⠑⠻" }, { "input": "career's", "output": "⠉⠜⠑⠻⠄⠎" }, { "input": "careered", "output": "⠉⠜⠑⠻⠫" }, { "input": "careering", "output": "⠉⠜⠑⠻⠌" }, { "input": "careers", "output": "⠉⠜⠑⠻⠎" }, { "input": "carefree", "output": "⠉⠜⠑⠋⠗⠑⠑" }, { "input": "careful", "output": "⠉⠜⠑⠰⠇" }, { "input": "carefuller", "output": "⠉⠜⠑⠰⠇⠇⠻" }, { "input": "carefullest", "output": "⠉⠜⠑⠰⠇⠇⠑⠌" }, { "input": "carefully", "output": "⠉⠜⠑⠰⠇⠇⠽" }, { "input": "carefulness", "output": "⠉⠜⠑⠰⠇⠰⠎" }, { "input": "carefulness's", "output": "⠉⠜⠑⠰⠇⠰⠎⠄⠎" }, { "input": "caregiver", "output": "⠉⠜⠑⠛⠊⠧⠻" }, { "input": "caregiver's", "output": "⠉⠜⠑⠛⠊⠧⠻⠄⠎" }, { "input": "caregivers", "output": "⠉⠜⠑⠛⠊⠧⠻⠎" }, { "input": "careless", "output": "⠉⠜⠑⠨⠎" }, { "input": "carelessly", "output": "⠉⠜⠑⠨⠎⠇⠽" }, { "input": "carelessness", "output": "⠉⠜⠑⠨⠎⠰⠎" }, { "input": "carelessness's", "output": "⠉⠜⠑⠨⠎⠰⠎⠄⠎" }, { "input": "cares", "output": "⠉⠜⠑⠎" }, { "input": "caress", "output": "⠉⠜⠑⠎⠎" }, { "input": "caress's", "output": "⠉⠜⠑⠎⠎⠄⠎" }, { "input": "caressed", "output": "⠉⠜⠑⠎⠎⠫" }, { "input": "caresses", "output": "⠉⠜⠑⠎⠎⠑⠎" }, { "input": "caressing", "output": "⠉⠜⠑⠎⠎⠌" }, { "input": "caret", "output": "⠉⠜⠑⠞" }, { "input": "caret's", "output": "⠉⠜⠑⠞⠄⠎" }, { "input": "caretaker", "output": "⠉⠜⠑⠞â â …â »" }, { "input": "caretaker's", "output": "⠉⠜⠑⠞â â …⠻⠄⠎" }, { "input": "caretakers", "output": "⠉⠜⠑⠞â â …⠻⠎" }, { "input": "carets", "output": "⠉⠜⠑⠞⠎" }, { "input": "careworn", "output": "⠉⠜⠑⠺⠕⠗â " }, { "input": "carfare", "output": "⠉⠜⠋⠜⠑" }, { "input": "carfare's", "output": "⠉⠜⠋⠜⠑⠄⠎" }, { "input": "cargo", "output": "⠉⠜⠛⠕" }, { "input": "cargo's", "output": "⠉⠜⠛⠕⠄⠎" }, { "input": "cargoes", "output": "⠉⠜⠛⠕⠑⠎" }, { "input": "caribou", "output": "⠉⠜⠊⠃⠳" }, { "input": "caribou's", "output": "⠉⠜⠊⠃⠳⠄⠎" }, { "input": "caribous", "output": "⠉⠜⠊⠃⠳⠎" }, { "input": "caricature", "output": "⠉⠜⠊⠉â â žâ ¥â —â ‘" }, { "input": "caricature's", "output": "⠉⠜⠊⠉â â žâ ¥â —â ‘â „â Ž" }, { "input": "caricatured", "output": "⠉⠜⠊⠉â â žâ ¥â —â «" }, { "input": "caricatures", "output": "⠉⠜⠊⠉â â žâ ¥â —â ‘â Ž" }, { "input": "caricaturing", "output": "⠉⠜⠊⠉â â žâ ¥â —â Œ" }, { "input": "caricaturist", "output": "⠉⠜⠊⠉â â žâ ¥â —â Šâ Œ" }, { "input": "caricaturist's", "output": "⠉⠜⠊⠉â â žâ ¥â —⠊⠌⠄⠎" }, { "input": "caricaturists", "output": "⠉⠜⠊⠉â â žâ ¥â —⠊⠌⠎" }, { "input": "caries", "output": "⠉⠜⠊⠑⠎" }, { "input": "caries's", "output": "⠉⠜⠊⠑⠎⠄⠎" }, { "input": "carillon", "output": "⠉⠜⠊⠇⠇⠕â " }, { "input": "carillon's", "output": "⠉⠜⠊⠇⠇⠕â â „â Ž" }, { "input": "carillons", "output": "⠉⠜⠊⠇⠇⠕â â Ž" }, { "input": "caring", "output": "⠉⠜⠌" }, { "input": "caring's", "output": "⠉⠜⠌⠄⠎" }, { "input": "carious", "output": "⠉⠜⠊⠳⠎" }, { "input": "carjack", "output": "⠉⠜⠚â â ‰â …" }, { "input": "carjacked", "output": "⠉⠜⠚â â ‰â …â «" }, { "input": "carjacker", "output": "⠉⠜⠚â â ‰â …â »" }, { "input": "carjacker's", "output": "⠉⠜⠚â â ‰â …⠻⠄⠎" }, { "input": "carjackers", "output": "⠉⠜⠚â â ‰â …⠻⠎" }, { "input": "carjacking", "output": "⠉⠜⠚â â ‰â …â Œ" }, { "input": "carjacking's", "output": "⠉⠜⠚â â ‰â …⠌⠄⠎" }, { "input": "carjackings", "output": "⠉⠜⠚â â ‰â …⠌⠎" }, { "input": "carjacks", "output": "⠉⠜⠚â â ‰â …â Ž" }, { "input": "carmine", "output": "⠉⠜â â ”â ‘" }, { "input": "carmine's", "output": "⠉⠜â â ”â ‘â „â Ž" }, { "input": "carmines", "output": "⠉⠜â â ”â ‘â Ž" }, { "input": "carnage", "output": "⠉⠜â â â ›â ‘" }, { "input": "carnage's", "output": "⠉⠜â â â ›â ‘â „â Ž" }, { "input": "carnal", "output": "⠉⠜â â â ‡" }, { "input": "carnality", "output": "⠉⠜â â â ‡â °â ½" }, { "input": "carnality's", "output": "⠉⠜â â â ‡â °â ½â „â Ž" }, { "input": "carnally", "output": "⠉⠜â â  â ½" }, { "input": "carnation", "output": "⠉⠜â â  â " }, { "input": "carnation's", "output": "⠉⠜â â  â â „â Ž" }, { "input": "carnations", "output": "⠉⠜â â  â â Ž" }, { "input": "carnelian", "output": "⠉⠜â â ‘⠇⠊â â " }, { "input": "carnelian's", "output": "⠉⠜â â ‘⠇⠊â â â „â Ž" }, { "input": "carnelians", "output": "⠉⠜â â ‘⠇⠊â â â Ž" }, { "input": "carnies", "output": "⠉⠜â â Šâ ‘â Ž" }, { "input": "carnival", "output": "⠉⠜â â Šâ §â â ‡" }, { "input": "carnival's", "output": "⠉⠜â â Šâ §â â ‡â „â Ž" }, { "input": "carnivals", "output": "⠉⠜â â Šâ §â â ‡â Ž" }, { "input": "carnivore", "output": "⠉⠜â â Šâ §â •â —â ‘" }, { "input": "carnivore's", "output": "⠉⠜â â Šâ §â •â —â ‘â „â Ž" }, { "input": "carnivores", "output": "⠉⠜â â Šâ §â •â —â ‘â Ž" }, { "input": "carnivorous", "output": "⠉⠜â â Šâ §â •⠗⠳⠎" }, { "input": "carnivorously", "output": "⠉⠜â â Šâ §â •⠗⠳⠎⠇⠽" }, { "input": "carnivorousness", "output": "⠉⠜â â Šâ §â •⠗⠳⠎⠰⠎" }, { "input": "carnivorousness's", "output": "⠉⠜â â Šâ §â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "carny", "output": "⠉⠜â â ½" }, { "input": "carny's", "output": "⠉⠜â â ½â „â Ž" }, { "input": "carob's", "output": "⠉⠜⠕⠃⠄⠎" }, { "input": "carol", "output": "⠉⠜⠕⠇" }, { "input": "carol's", "output": "⠉⠜⠕⠇⠄⠎" }, { "input": "caroled", "output": "⠉⠜⠕⠇⠫" }, { "input": "caroler", "output": "⠉⠜⠕⠇⠻" }, { "input": "caroler's", "output": "⠉⠜⠕⠇⠻⠄⠎" }, { "input": "carolers", "output": "⠉⠜⠕⠇⠻⠎" }, { "input": "caroling", "output": "⠉⠜⠕⠇⠌" }, { "input": "carols", "output": "⠉⠜⠕⠇⠎" }, { "input": "carom", "output": "⠉⠜⠕â " }, { "input": "carom's", "output": "⠉⠜⠕â â „â Ž" }, { "input": "caromed", "output": "⠉⠜⠕â â «" }, { "input": "caroming", "output": "⠉⠜⠕â â Œ" }, { "input": "caroms", "output": "⠉⠜⠕â â Ž" }, { "input": "carotene", "output": "⠉⠜⠕⠞⠢⠑" }, { "input": "carotene's", "output": "⠉⠜⠕⠞⠢⠑⠄⠎" }, { "input": "carotid", "output": "⠉⠜⠕⠞⠊⠙" }, { "input": "carotid's", "output": "⠉⠜⠕⠞⠊⠙⠄⠎" }, { "input": "carotids", "output": "⠉⠜⠕⠞⠊⠙⠎" }, { "input": "carousal", "output": "⠉⠜⠳⠎â â ‡" }, { "input": "carousal's", "output": "⠉⠜⠳⠎â â ‡â „â Ž" }, { "input": "carousals", "output": "⠉⠜⠳⠎â â ‡â Ž" }, { "input": "carouse", "output": "⠉⠜⠳⠎⠑" }, { "input": "carouse's", "output": "⠉⠜⠳⠎⠑⠄⠎" }, { "input": "caroused", "output": "⠉⠜⠳⠎⠫" }, { "input": "carousel", "output": "⠉⠜⠳⠎⠑⠇" }, { "input": "carousel's", "output": "⠉⠜⠳⠎⠑⠇⠄⠎" }, { "input": "carousels", "output": "⠉⠜⠳⠎⠑⠇⠎" }, { "input": "carouser", "output": "⠉⠜⠳⠎⠻" }, { "input": "carouser's", "output": "⠉⠜⠳⠎⠻⠄⠎" }, { "input": "carousers", "output": "⠉⠜⠳⠎⠻⠎" }, { "input": "carouses", "output": "⠉⠜⠳⠎⠑⠎" }, { "input": "carousing", "output": "⠉⠜⠳⠎⠌" }, { "input": "carp", "output": "⠉⠜â " }, { "input": "carp's", "output": "⠉⠜â â „â Ž" }, { "input": "carpal", "output": "⠉⠜â â â ‡" }, { "input": "carpal's", "output": "⠉⠜â â â ‡â „â Ž" }, { "input": "carpals", "output": "⠉⠜â â â ‡â Ž" }, { "input": "carped", "output": "⠉⠜â â «" }, { "input": "carpel", "output": "⠉⠜â â ‘â ‡" }, { "input": "carpel's", "output": "⠉⠜â â ‘⠇⠄⠎" }, { "input": "carpels", "output": "⠉⠜â â ‘⠇⠎" }, { "input": "carpenter", "output": "⠉⠜â â ¢â žâ »" }, { "input": "carpenter's", "output": "⠉⠜â â ¢â žâ »â „â Ž" }, { "input": "carpentered", "output": "⠉⠜â â ¢â žâ »â «" }, { "input": "carpentering", "output": "⠉⠜â â ¢â žâ »â Œ" }, { "input": "carpenters", "output": "⠉⠜â â ¢â žâ »â Ž" }, { "input": "carpentry", "output": "⠉⠜â â ¢â žâ —â ½" }, { "input": "carpentry's", "output": "⠉⠜â â ¢â žâ —⠽⠄⠎" }, { "input": "carper", "output": "⠉⠜â â »" }, { "input": "carper's", "output": "⠉⠜â â »â „â Ž" }, { "input": "carpers", "output": "⠉⠜â â »â Ž" }, { "input": "carpet", "output": "⠉⠜â â ‘â ž" }, { "input": "carpet's", "output": "⠉⠜â â ‘â žâ „â Ž" }, { "input": "carpetbag", "output": "⠉⠜â â ‘â žâ ƒâ â ›" }, { "input": "carpetbag's", "output": "⠉⠜â â ‘â žâ ƒâ â ›â „â Ž" }, { "input": "carpetbagged", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â «" }, { "input": "carpetbagger", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â »" }, { "input": "carpetbagger's", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â »â „â Ž" }, { "input": "carpetbaggers", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â »â Ž" }, { "input": "carpetbagging", "output": "⠉⠜â â ‘â žâ ƒâ â ¶â Œ" }, { "input": "carpetbags", "output": "⠉⠜â â ‘â žâ ƒâ â ›â Ž" }, { "input": "carpeted", "output": "⠉⠜â â ‘â žâ «" }, { "input": "carpeting", "output": "⠉⠜â â ‘â žâ Œ" }, { "input": "carpeting's", "output": "⠉⠜â â ‘⠞⠌⠄⠎" }, { "input": "carpets", "output": "⠉⠜â â ‘â žâ Ž" }, { "input": "carpi", "output": "⠉⠜â â Š" }, { "input": "carping", "output": "⠉⠜â â Œ" }, { "input": "carport", "output": "⠉⠜â â •â —â ž" }, { "input": "carport's", "output": "⠉⠜â â •â —â žâ „â Ž" }, { "input": "carports", "output": "⠉⠜â â •â —â žâ Ž" }, { "input": "carps", "output": "⠉⠜â â Ž" }, { "input": "carpus", "output": "⠉⠜â â ¥â Ž" }, { "input": "carpus's", "output": "⠉⠜â â ¥â Žâ „â Ž" }, { "input": "carrel", "output": "⠉⠜⠗⠑⠇" }, { "input": "carrel's", "output": "⠉⠜⠗⠑⠇⠄⠎" }, { "input": "carrels", "output": "⠉⠜⠗⠑⠇⠎" }, { "input": "carriage", "output": "⠉⠜⠗⠊â â ›â ‘" }, { "input": "carriage's", "output": "⠉⠜⠗⠊â â ›â ‘â „â Ž" }, { "input": "carriages", "output": "⠉⠜⠗⠊â â ›â ‘â Ž" }, { "input": "carriageway", "output": "⠉⠜⠗⠊â â ›â ‘â ºâ â ½" }, { "input": "carried", "output": "⠉⠜⠗⠊⠫" }, { "input": "carrier", "output": "⠉⠜⠗⠊⠻" }, { "input": "carrier's", "output": "⠉⠜⠗⠊⠻⠄⠎" }, { "input": "carriers", "output": "⠉⠜⠗⠊⠻⠎" }, { "input": "carries", "output": "⠉⠜⠗⠊⠑⠎" }, { "input": "carrion", "output": "⠉⠜⠗⠊⠕â " }, { "input": "carrion's", "output": "⠉⠜⠗⠊⠕â â „â Ž" }, { "input": "carrot", "output": "⠉⠜⠗⠕⠞" }, { "input": "carrot's", "output": "⠉⠜⠗⠕⠞⠄⠎" }, { "input": "carrots", "output": "⠉⠜⠗⠕⠞⠎" }, { "input": "carry", "output": "⠉⠜⠗⠽" }, { "input": "carry's", "output": "⠉⠜⠗⠽⠄⠎" }, { "input": "carryall", "output": "⠉⠜⠗⠽â â ‡â ‡" }, { "input": "carryall's", "output": "⠉⠜⠗⠽â â ‡â ‡â „â Ž" }, { "input": "carryalls", "output": "⠉⠜⠗⠽â â ‡â ‡â Ž" }, { "input": "carrying", "output": "⠉⠜⠗⠽⠌" }, { "input": "carryout", "output": "⠉⠜⠗⠽⠳⠞" }, { "input": "carryover", "output": "⠉⠜⠗⠽⠕⠧⠻" }, { "input": "carryover's", "output": "⠉⠜⠗⠽⠕⠧⠻⠄⠎" }, { "input": "carryovers", "output": "⠉⠜⠗⠽⠕⠧⠻⠎" }, { "input": "cars", "output": "⠉⠜⠎" }, { "input": "carsick", "output": "⠉⠜⠎⠊⠉⠅" }, { "input": "carsickness", "output": "⠉⠜⠎⠊⠉⠅⠰⠎" }, { "input": "carsickness's", "output": "⠉⠜⠎⠊⠉⠅⠰⠎⠄⠎" }, { "input": "cart", "output": "⠉⠜⠞" }, { "input": "cart's", "output": "⠉⠜⠞⠄⠎" }, { "input": "cartage", "output": "⠉⠜⠞â â ›â ‘" }, { "input": "cartage's", "output": "⠉⠜⠞â â ›â ‘â „â Ž" }, { "input": "carted", "output": "⠉⠜⠞⠫" }, { "input": "cartel", "output": "⠉⠜⠞⠑⠇" }, { "input": "cartel's", "output": "⠉⠜⠞⠑⠇⠄⠎" }, { "input": "cartels", "output": "⠉⠜⠞⠑⠇⠎" }, { "input": "cartilage", "output": "⠉⠜⠞⠊⠇â â ›â ‘" }, { "input": "cartilage's", "output": "⠉⠜⠞⠊⠇â â ›â ‘â „â Ž" }, { "input": "cartilages", "output": "⠉⠜⠞⠊⠇â â ›â ‘â Ž" }, { "input": "cartilaginous", "output": "⠉⠜⠞⠊⠇â â ›â ”⠳⠎" }, { "input": "carting", "output": "⠉⠜⠞⠌" }, { "input": "cartographer", "output": "⠉⠜⠞⠕⠛⠗â â â “â »" }, { "input": "cartographer's", "output": "⠉⠜⠞⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "cartographers", "output": "⠉⠜⠞⠕⠛⠗â â â “⠻⠎" }, { "input": "cartographic", "output": "⠉⠜⠞⠕⠛⠗â â â “â Šâ ‰" }, { "input": "cartography", "output": "⠉⠜⠞⠕⠛⠗â â â “â ½" }, { "input": "cartography's", "output": "⠉⠜⠞⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "carton", "output": "⠉⠜⠞⠕â " }, { "input": "carton's", "output": "⠉⠜⠞⠕â â „â Ž" }, { "input": "cartons", "output": "⠉⠜⠞⠕â â Ž" }, { "input": "cartoon", "output": "⠉⠜⠞⠕⠕â " }, { "input": "cartoon's", "output": "⠉⠜⠞⠕⠕â â „â Ž" }, { "input": "cartooned", "output": "⠉⠜⠞⠕⠕â â «" }, { "input": "cartooning", "output": "⠉⠜⠞⠕⠕â â Œ" }, { "input": "cartoonist", "output": "⠉⠜⠞⠕⠕â â Šâ Œ" }, { "input": "cartoonist's", "output": "⠉⠜⠞⠕⠕â â Šâ Œâ „â Ž" }, { "input": "cartoonists", "output": "⠉⠜⠞⠕⠕â â Šâ Œâ Ž" }, { "input": "cartoons", "output": "⠉⠜⠞⠕⠕â â Ž" }, { "input": "cartridge", "output": "⠉⠜⠞⠗⠊⠙⠛⠑" }, { "input": "cartridge's", "output": "⠉⠜⠞⠗⠊⠙⠛⠑⠄⠎" }, { "input": "cartridges", "output": "⠉⠜⠞⠗⠊⠙⠛⠑⠎" }, { "input": "carts", "output": "⠉⠜⠞⠎" }, { "input": "cartwheel", "output": "⠉⠜⠞⠱⠑⠑⠇" }, { "input": "cartwheel's", "output": "⠉⠜⠞⠱⠑⠑⠇⠄⠎" }, { "input": "cartwheeled", "output": "⠉⠜⠞⠱⠑⠑⠇⠫" }, { "input": "cartwheeling", "output": "⠉⠜⠞⠱⠑⠑⠇⠌" }, { "input": "cartwheels", "output": "⠉⠜⠞⠱⠑⠑⠇⠎" }, { "input": "carve", "output": "⠉⠜⠧⠑" }, { "input": "carved", "output": "⠉⠜⠧⠫" }, { "input": "carver", "output": "⠉⠜⠧⠻" }, { "input": "carver's", "output": "⠉⠜⠧⠻⠄⠎" }, { "input": "carvers", "output": "⠉⠜⠧⠻⠎" }, { "input": "carves", "output": "⠉⠜⠧⠑⠎" }, { "input": "carving", "output": "⠉⠜⠧⠌" }, { "input": "carving's", "output": "⠉⠜⠧⠌⠄⠎" }, { "input": "carvings", "output": "⠉⠜⠧⠌⠎" }, { "input": "caryatid", "output": "⠉⠜⠽â â žâ Šâ ™" }, { "input": "caryatid's", "output": "⠉⠜⠽â â žâ Šâ ™â „â Ž" }, { "input": "caryatids", "output": "⠉⠜⠽â â žâ Šâ ™â Ž" }, { "input": "casaba", "output": "â ‰â â Žâ â ƒâ " }, { "input": "casaba's", "output": "â ‰â â Žâ â ƒâ â „â Ž" }, { "input": "casabas", "output": "â ‰â â Žâ â ƒâ â Ž" }, { "input": "cascade", "output": "â ‰â â Žâ ‰â â ™â ‘" }, { "input": "cascade's", "output": "â ‰â â Žâ ‰â â ™â ‘â „â Ž" }, { "input": "cascaded", "output": "â ‰â â Žâ ‰â â ™â «" }, { "input": "cascades", "output": "â ‰â â Žâ ‰â â ™â ‘â Ž" }, { "input": "cascading", "output": "â ‰â â Žâ ‰â â ™â Œ" }, { "input": "cascara", "output": "â ‰â â Žâ ‰â œâ " }, { "input": "cascara's", "output": "â ‰â â Žâ ‰â œâ â „â Ž" }, { "input": "cascaras", "output": "â ‰â â Žâ ‰â œâ â Ž" }, { "input": "case", "output": "â ‰â â Žâ ‘" }, { "input": "case's", "output": "â ‰â â Žâ ‘â „â Ž" }, { "input": "cased", "output": "â ‰â â Žâ «" }, { "input": "caseharden", "output": "â ‰â â Žâ ‘⠓⠜⠙⠢" }, { "input": "casehardened", "output": "â ‰â â Žâ ‘⠓⠜⠙⠢⠫" }, { "input": "casehardening", "output": "â ‰â â Žâ ‘⠓⠜⠙⠢⠌" }, { "input": "casehardens", "output": "â ‰â â Žâ ‘⠓⠜⠙⠢⠎" }, { "input": "casein", "output": "â ‰â â Žâ ‘â ”" }, { "input": "casein's", "output": "â ‰â â Žâ ‘⠔⠄⠎" }, { "input": "caseload", "output": "â ‰â â Žâ ‘⠇⠕â â ™" }, { "input": "caseload's", "output": "â ‰â â Žâ ‘⠇⠕â â ™â „â Ž" }, { "input": "caseloads", "output": "â ‰â â Žâ ‘⠇⠕â â ™â Ž" }, { "input": "casement", "output": "â ‰â â Žâ ‘â °â ž" }, { "input": "casement's", "output": "â ‰â â Žâ ‘â °â žâ „â Ž" }, { "input": "casements", "output": "â ‰â â Žâ ‘â °â žâ Ž" }, { "input": "cases", "output": "â ‰â â Žâ ‘â Ž" }, { "input": "casework", "output": "â ‰â â Žâ ‘â â º" }, { "input": "casework's", "output": "â ‰â â Žâ ‘â â ºâ „â Ž" }, { "input": "caseworker", "output": "â ‰â â Žâ ‘â â ºâ »" }, { "input": "caseworker's", "output": "â ‰â â Žâ ‘â â ºâ »â „â Ž" }, { "input": "caseworkers", "output": "â ‰â â Žâ ‘â â ºâ »â Ž" }, { "input": "cash", "output": "â ‰â â ©" }, { "input": "cash's", "output": "â ‰â â ©â „â Ž" }, { "input": "cashbook", "output": "â ‰â â ©â ƒâ •â •â …" }, { "input": "cashbook's", "output": "â ‰â â ©â ƒâ •â •â …â „â Ž" }, { "input": "cashbooks", "output": "â ‰â â ©â ƒâ •â •â …â Ž" }, { "input": "cashed", "output": "â ‰â â ©â «" }, { "input": "cashes", "output": "â ‰â â ©â ‘â Ž" }, { "input": "cashew", "output": "â ‰â â ©â ‘â º" }, { "input": "cashew's", "output": "â ‰â â ©â ‘⠺⠄⠎" }, { "input": "cashews", "output": "â ‰â â ©â ‘⠺⠎" }, { "input": "cashier", "output": "â ‰â â ©â Šâ »" }, { "input": "cashier's", "output": "â ‰â â ©â Šâ »â „â Ž" }, { "input": "cashiered", "output": "â ‰â â ©â Šâ »â «" }, { "input": "cashiering", "output": "â ‰â â ©â Šâ »â Œ" }, { "input": "cashiers", "output": "â ‰â â ©â Šâ »â Ž" }, { "input": "cashing", "output": "â ‰â â ©â Œ" }, { "input": "cashmere", "output": "â ‰â â ©â â »â ‘" }, { "input": "cashmere's", "output": "â ‰â â ©â â »â ‘â „â Ž" }, { "input": "casing", "output": "â ‰â â Žâ Œ" }, { "input": "casing's", "output": "â ‰â â Žâ Œâ „â Ž" }, { "input": "casings", "output": "â ‰â â Žâ Œâ Ž" }, { "input": "casino", "output": "â ‰â â Žâ ”â •" }, { "input": "casino's", "output": "â ‰â â Žâ ”â •â „â Ž" }, { "input": "casinos", "output": "â ‰â â Žâ ”â •â Ž" }, { "input": "cask", "output": "â ‰â â Žâ …" }, { "input": "cask's", "output": "â ‰â â Žâ …â „â Ž" }, { "input": "casket", "output": "â ‰â â Žâ …â ‘â ž" }, { "input": "casket's", "output": "â ‰â â Žâ …â ‘â žâ „â Ž" }, { "input": "caskets", "output": "â ‰â â Žâ …â ‘â žâ Ž" }, { "input": "casks", "output": "â ‰â â Žâ …â Ž" }, { "input": "cassava", "output": "â ‰â â Žâ Žâ â §â " }, { "input": "cassava's", "output": "â ‰â â Žâ Žâ â §â â „â Ž" }, { "input": "cassavas", "output": "â ‰â â Žâ Žâ â §â â Ž" }, { "input": "casserole", "output": "â ‰â â Žâ Žâ »â •⠇⠑" }, { "input": "casserole's", "output": "â ‰â â Žâ Žâ »â •⠇⠑⠄⠎" }, { "input": "casseroled", "output": "â ‰â â Žâ Žâ »â •⠇⠫" }, { "input": "casseroles", "output": "â ‰â â Žâ Žâ »â •⠇⠑⠎" }, { "input": "casseroling", "output": "â ‰â â Žâ Žâ »â •⠇⠌" }, { "input": "cassette", "output": "â ‰â â Žâ Žâ ‘â žâ žâ ‘" }, { "input": "cassette's", "output": "â ‰â â Žâ Žâ ‘â žâ žâ ‘â „â Ž" }, { "input": "cassettes", "output": "â ‰â â Žâ Žâ ‘â žâ žâ ‘â Ž" }, { "input": "cassia", "output": "â ‰â â Žâ Žâ Šâ " }, { "input": "cassia's", "output": "â ‰â â Žâ Žâ Šâ â „â Ž" }, { "input": "cassias", "output": "â ‰â â Žâ Žâ Šâ â Ž" }, { "input": "cassock", "output": "â ‰â â Žâ Žâ •⠉⠅" }, { "input": "cassock's", "output": "â ‰â â Žâ Žâ •⠉⠅⠄⠎" }, { "input": "cassocks", "output": "â ‰â â Žâ Žâ •⠉⠅⠎" }, { "input": "cassowaries", "output": "â ‰â â Žâ Žâ ªâ œâ Šâ ‘â Ž" }, { "input": "cassowary", "output": "â ‰â â Žâ Žâ ªâ œâ ½" }, { "input": "cassowary's", "output": "â ‰â â Žâ Žâ ªâ œâ ½â „â Ž" }, { "input": "cast", "output": "â ‰â â Œ" }, { "input": "cast's", "output": "â ‰â â Œâ „â Ž" }, { "input": "castanet", "output": "â ‰â â Œâ â â ‘â ž" }, { "input": "castanet's", "output": "â ‰â â Œâ â â ‘â žâ „â Ž" }, { "input": "castanets", "output": "â ‰â â Œâ â â ‘â žâ Ž" }, { "input": "castaway", "output": "â ‰â â Œâ â ºâ â ½" }, { "input": "castaway's", "output": "â ‰â â Œâ â ºâ â ½â „â Ž" }, { "input": "castaways", "output": "â ‰â â Œâ â ºâ â ½â Ž" }, { "input": "caste", "output": "â ‰â â Œâ ‘" }, { "input": "caste's", "output": "â ‰â â Œâ ‘â „â Ž" }, { "input": "caster", "output": "â ‰â â Œâ »" }, { "input": "caster's", "output": "â ‰â â Œâ »â „â Ž" }, { "input": "casters", "output": "â ‰â â Œâ »â Ž" }, { "input": "castes", "output": "â ‰â â Œâ ‘â Ž" }, { "input": "castigate", "output": "â ‰â â Œâ Šâ ›â â žâ ‘" }, { "input": "castigated", "output": "â ‰â â Œâ Šâ ›â â žâ «" }, { "input": "castigates", "output": "â ‰â â Œâ Šâ ›â â žâ ‘â Ž" }, { "input": "castigating", "output": "â ‰â â Œâ Šâ ›â â žâ Œ" }, { "input": "castigation", "output": "â ‰â â Œâ Šâ ›â  â " }, { "input": "castigation's", "output": "â ‰â â Œâ Šâ ›â  â â „â Ž" }, { "input": "castigator", "output": "â ‰â â Œâ Šâ ›â â žâ •â —" }, { "input": "castigator's", "output": "â ‰â â Œâ Šâ ›â â žâ •â —â „â Ž" }, { "input": "castigators", "output": "â ‰â â Œâ Šâ ›â â žâ •â —â Ž" }, { "input": "casting", "output": "â ‰â â Œâ Œ" }, { "input": "casting's", "output": "â ‰â â Œâ Œâ „â Ž" }, { "input": "castings", "output": "â ‰â â Œâ Œâ Ž" }, { "input": "castle", "output": "â ‰â â Œâ ‡â ‘" }, { "input": "castle's", "output": "â ‰â â Œâ ‡â ‘â „â Ž" }, { "input": "castled", "output": "â ‰â â Œâ ‡â «" }, { "input": "castles", "output": "â ‰â â Œâ ‡â ‘â Ž" }, { "input": "castling", "output": "â ‰â â Œâ ‡â Œ" }, { "input": "castoff", "output": "â ‰â â Œâ ·â ‹" }, { "input": "castoff's", "output": "â ‰â â Œâ ·â ‹â „â Ž" }, { "input": "castoffs", "output": "â ‰â â Œâ ·â ‹â Ž" }, { "input": "castor", "output": "â ‰â â Œâ •â —" }, { "input": "castor's", "output": "â ‰â â Œâ •â —â „â Ž" }, { "input": "castors", "output": "â ‰â â Œâ •â —â Ž" }, { "input": "castrate", "output": "â ‰â â Œâ —â â žâ ‘" }, { "input": "castrated", "output": "â ‰â â Œâ —â â žâ «" }, { "input": "castrates", "output": "â ‰â â Œâ —â â žâ ‘â Ž" }, { "input": "castrating", "output": "â ‰â â Œâ —â â žâ Œ" }, { "input": "castration", "output": "â ‰â â Œâ —â  â " }, { "input": "castration's", "output": "â ‰â â Œâ —â  â â „â Ž" }, { "input": "castrations", "output": "â ‰â â Œâ —â  â â Ž" }, { "input": "casts", "output": "â ‰â â Œâ Ž" }, { "input": "casual", "output": "â ‰â â Žâ ¥â â ‡" }, { "input": "casual's", "output": "â ‰â â Žâ ¥â â ‡â „â Ž" }, { "input": "casually", "output": "â ‰â â Žâ ¥â  â ½" }, { "input": "casualness", "output": "â ‰â â Žâ ¥â â ‡â °â Ž" }, { "input": "casualness's", "output": "â ‰â â Žâ ¥â â ‡â °â Žâ „â Ž" }, { "input": "casuals", "output": "â ‰â â Žâ ¥â â ‡â Ž" }, { "input": "casualties", "output": "â ‰â â Žâ ¥â â ‡â žâ Šâ ‘â Ž" }, { "input": "casualty", "output": "â ‰â â Žâ ¥â â ‡â žâ ½" }, { "input": "casualty's", "output": "â ‰â â Žâ ¥â â ‡â žâ ½â „â Ž" }, { "input": "casuist", "output": "â ‰â â Žâ ¥â Šâ Œ" }, { "input": "casuist's", "output": "â ‰â â Žâ ¥â Šâ Œâ „â Ž" }, { "input": "casuistic", "output": "â ‰â â Žâ ¥â Šâ Œâ Šâ ‰" }, { "input": "casuistry", "output": "â ‰â â Žâ ¥â Šâ Œâ —â ½" }, { "input": "casuistry's", "output": "â ‰â â Žâ ¥â Šâ Œâ —⠽⠄⠎" }, { "input": "casuists", "output": "â ‰â â Žâ ¥â Šâ Œâ Ž" }, { "input": "cat", "output": "â ‰â â ž" }, { "input": "cat's", "output": "â ‰â â žâ „â Ž" }, { "input": "cataclysm", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ " }, { "input": "cataclysm's", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ â „â Ž" }, { "input": "cataclysmal", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ â â ‡" }, { "input": "cataclysmic", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ â Šâ ‰" }, { "input": "cataclysms", "output": "â ‰â â žâ â ‰â ‡â ½â Žâ â Ž" }, { "input": "catacomb", "output": "â ‰â â žâ â ‰â •â â ƒ" }, { "input": "catacomb's", "output": "â ‰â â žâ â ‰â •â â ƒâ „â Ž" }, { "input": "catacombs", "output": "â ‰â â žâ â ‰â •â â ƒâ Ž" }, { "input": "catafalque", "output": "â ‰â â žâ â ‹â â ‡â Ÿâ ¥â ‘" }, { "input": "catafalque's", "output": "â ‰â â žâ â ‹â â ‡â Ÿâ ¥â ‘â „â Ž" }, { "input": "catafalques", "output": "â ‰â â žâ â ‹â â ‡â Ÿâ ¥â ‘â Ž" }, { "input": "catalepsy", "output": "â ‰â â žâ â ‡â ‘â â Žâ ½" }, { "input": "catalepsy's", "output": "â ‰â â žâ â ‡â ‘â â Žâ ½â „â Ž" }, { "input": "cataleptic", "output": "â ‰â â žâ â ‡â ‘â â žâ Šâ ‰" }, { "input": "cataleptic's", "output": "â ‰â â žâ â ‡â ‘â â žâ Šâ ‰â „â Ž" }, { "input": "cataleptics", "output": "â ‰â â žâ â ‡â ‘â â žâ Šâ ‰â Ž" }, { "input": "catalog", "output": "â ‰â â žâ â ‡â •â ›" }, { "input": "catalog's", "output": "â ‰â â žâ â ‡â •⠛⠄⠎" }, { "input": "cataloged", "output": "â ‰â â žâ â ‡â •⠛⠫" }, { "input": "cataloger", "output": "â ‰â â žâ â ‡â •⠛⠻" }, { "input": "cataloger's", "output": "â ‰â â žâ â ‡â •⠛⠻⠄⠎" }, { "input": "catalogers", "output": "â ‰â â žâ â ‡â •⠛⠻⠎" }, { "input": "cataloging", "output": "â ‰â â žâ â ‡â •⠛⠌" }, { "input": "catalogs", "output": "â ‰â â žâ â ‡â •⠛⠎" }, { "input": "catalpa", "output": "â ‰â â žâ â ‡â â " }, { "input": "catalpa's", "output": "â ‰â â žâ â ‡â â â „â Ž" }, { "input": "catalpas", "output": "â ‰â â žâ â ‡â â â Ž" }, { "input": "catalysis", "output": "â ‰â â žâ â ‡â ½â Žâ Šâ Ž" }, { "input": "catalysis's", "output": "â ‰â â žâ â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "catalyst", "output": "â ‰â â žâ â ‡â ½â Œ" }, { "input": "catalyst's", "output": "â ‰â â žâ â ‡â ½â Œâ „â Ž" }, { "input": "catalysts", "output": "â ‰â â žâ â ‡â ½â Œâ Ž" }, { "input": "catalytic", "output": "â ‰â â žâ â ‡â ½â žâ Šâ ‰" }, { "input": "catalytic's", "output": "â ‰â â žâ â ‡â ½â žâ Šâ ‰â „â Ž" }, { "input": "catalyze", "output": "â ‰â â žâ â ‡â ½â µâ ‘" }, { "input": "catalyzed", "output": "â ‰â â žâ â ‡â ½â µâ «" }, { "input": "catalyzes", "output": "â ‰â â žâ â ‡â ½â µâ ‘â Ž" }, { "input": "catalyzing", "output": "â ‰â â žâ â ‡â ½â µâ Œ" }, { "input": "catamaran", "output": "â ‰â â žâ â â œâ â " }, { "input": "catamaran's", "output": "â ‰â â žâ â â œâ â â „â Ž" }, { "input": "catamarans", "output": "â ‰â â žâ â â œâ â â Ž" }, { "input": "catapult", "output": "â ‰â â žâ â â ¥â ‡â ž" }, { "input": "catapult's", "output": "â ‰â â žâ â â ¥â ‡â žâ „â Ž" }, { "input": "catapulted", "output": "â ‰â â žâ â â ¥â ‡â žâ «" }, { "input": "catapulting", "output": "â ‰â â žâ â â ¥â ‡â žâ Œ" }, { "input": "catapults", "output": "â ‰â â žâ â â ¥â ‡â žâ Ž" }, { "input": "cataract", "output": "â ‰â â žâ œâ â ‰â ž" }, { "input": "cataract's", "output": "â ‰â â žâ œâ â ‰â žâ „â Ž" }, { "input": "cataracts", "output": "â ‰â â žâ œâ â ‰â žâ Ž" }, { "input": "catarrh", "output": "â ‰â â žâ œâ —â “" }, { "input": "catarrh's", "output": "â ‰â â žâ œâ —â “â „â Ž" }, { "input": "catastrophe", "output": "â ‰â â žâ â Œâ —â •â â “â ‘" }, { "input": "catastrophe's", "output": "â ‰â â žâ â Œâ —â •â â “â ‘â „â Ž" }, { "input": "catastrophes", "output": "â ‰â â žâ â Œâ —â •â â “â ‘â Ž" }, { "input": "catastrophic", "output": "â ‰â â žâ â Œâ —â •â â “â Šâ ‰" }, { "input": "catastrophically", "output": "â ‰â â žâ â Œâ —â •â â “⠊⠉⠠⠽" }, { "input": "catatonia", "output": "â ‰â â žâ â žâ •â â Šâ " }, { "input": "catatonia's", "output": "â ‰â â žâ â žâ •â â Šâ â „â Ž" }, { "input": "catatonic", "output": "â ‰â â žâ â žâ •â â Šâ ‰" }, { "input": "catatonic's", "output": "â ‰â â žâ â žâ •â â Šâ ‰â „â Ž" }, { "input": "catatonics", "output": "â ‰â â žâ â žâ •â â Šâ ‰â Ž" }, { "input": "catbird", "output": "â ‰â â žâ ƒâ Šâ —â ™" }, { "input": "catbird's", "output": "â ‰â â žâ ƒâ Šâ —⠙⠄⠎" }, { "input": "catbirds", "output": "â ‰â â žâ ƒâ Šâ —⠙⠎" }, { "input": "catboat", "output": "â ‰â â žâ ƒâ •â â ž" }, { "input": "catboat's", "output": "â ‰â â žâ ƒâ •â â žâ „â Ž" }, { "input": "catboats", "output": "â ‰â â žâ ƒâ •â â žâ Ž" }, { "input": "catcall", "output": "â ‰â â žâ ‰â â ‡â ‡" }, { "input": "catcall's", "output": "â ‰â â žâ ‰â â ‡â ‡â „â Ž" }, { "input": "catcalled", "output": "â ‰â â žâ ‰â â ‡â ‡â «" }, { "input": "catcalling", "output": "â ‰â â žâ ‰â â ‡â ‡â Œ" }, { "input": "catcalls", "output": "â ‰â â žâ ‰â â ‡â ‡â Ž" }, { "input": "catch", "output": "â ‰â â žâ ¡" }, { "input": "catch's", "output": "â ‰â â žâ ¡â „â Ž" }, { "input": "catchall", "output": "â ‰â â žâ ¡â â ‡â ‡" }, { "input": "catchall's", "output": "â ‰â â žâ ¡â â ‡â ‡â „â Ž" }, { "input": "catchalls", "output": "â ‰â â žâ ¡â â ‡â ‡â Ž" }, { "input": "catcher", "output": "â ‰â â žâ ¡â »" }, { "input": "catcher's", "output": "â ‰â â žâ ¡â »â „â Ž" }, { "input": "catchers", "output": "â ‰â â žâ ¡â »â Ž" }, { "input": "catches", "output": "â ‰â â žâ ¡â ‘â Ž" }, { "input": "catchier", "output": "â ‰â â žâ ¡â Šâ »" }, { "input": "catchiest", "output": "â ‰â â žâ ¡â Šâ ‘â Œ" }, { "input": "catching", "output": "â ‰â â žâ ¡â Œ" }, { "input": "catchings", "output": "â ‰â â žâ ¡â Œâ Ž" }, { "input": "catchment", "output": "â ‰â â žâ ¡â °â ž" }, { "input": "catchpenny", "output": "â ‰â â žâ ¡â â ¢â â ½" }, { "input": "catchphrase", "output": "â ‰â â žâ ¡â â “â —â â Žâ ‘" }, { "input": "catchword", "output": "â ‰â â žâ ¡â ˜â º" }, { "input": "catchword's", "output": "â ‰â â žâ ¡â ˜â ºâ „â Ž" }, { "input": "catchwords", "output": "â ‰â â žâ ¡â ˜â ºâ Ž" }, { "input": "catchy", "output": "â ‰â â žâ ¡â ½" }, { "input": "catechism", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ " }, { "input": "catechism's", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ â „â Ž" }, { "input": "catechisms", "output": "â ‰â â žâ ‘â ¡â Šâ Žâ â Ž" }, { "input": "catechist", "output": "â ‰â â žâ ‘â ¡â Šâ Œ" }, { "input": "catechist's", "output": "â ‰â â žâ ‘⠡⠊⠌⠄⠎" }, { "input": "catechists", "output": "â ‰â â žâ ‘⠡⠊⠌⠎" }, { "input": "catechize", "output": "â ‰â â žâ ‘⠡⠊⠵⠑" }, { "input": "catechized", "output": "â ‰â â žâ ‘⠡⠊⠵⠫" }, { "input": "catechizes", "output": "â ‰â â žâ ‘⠡⠊⠵⠑⠎" }, { "input": "catechizing", "output": "â ‰â â žâ ‘⠡⠊⠵⠌" }, { "input": "categorical", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠉â â ‡" }, { "input": "categorically", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠉⠠⠽" }, { "input": "categories", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠑⠎" }, { "input": "categorization", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠠â " }, { "input": "categorization's", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠠â â „â Ž" }, { "input": "categorizations", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠠â â Ž" }, { "input": "categorize", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠑" }, { "input": "categorized", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠫" }, { "input": "categorizes", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠑⠎" }, { "input": "categorizing", "output": "â ‰â â žâ ‘⠛⠕⠗⠊⠵⠌" }, { "input": "category", "output": "â ‰â â žâ ‘⠛⠕⠗⠽" }, { "input": "category's", "output": "â ‰â â žâ ‘⠛⠕⠗⠽⠄⠎" }, { "input": "cater", "output": "â ‰â â žâ »" }, { "input": "catercorner", "output": "â ‰â â žâ »â ‰â •â —â â »" }, { "input": "catered", "output": "â ‰â â žâ »â «" }, { "input": "caterer", "output": "â ‰â â žâ »â »" }, { "input": "caterer's", "output": "â ‰â â žâ »â »â „â Ž" }, { "input": "caterers", "output": "â ‰â â žâ »â »â Ž" }, { "input": "catering", "output": "â ‰â â žâ »â Œ" }, { "input": "caterings", "output": "â ‰â â žâ »â Œâ Ž" }, { "input": "caterpillar", "output": "â ‰â â žâ »â â Šâ ‡â ‡â œ" }, { "input": "caterpillar's", "output": "â ‰â â žâ »â â Šâ ‡â ‡â œâ „â Ž" }, { "input": "caterpillars", "output": "â ‰â â žâ »â â Šâ ‡â ‡â œâ Ž" }, { "input": "caters", "output": "â ‰â â žâ »â Ž" }, { "input": "caterwaul", "output": "â ‰â â žâ »â ºâ â ¥â ‡" }, { "input": "caterwaul's", "output": "â ‰â â žâ »â ºâ â ¥â ‡â „â Ž" }, { "input": "caterwauled", "output": "â ‰â â žâ »â ºâ â ¥â ‡â «" }, { "input": "caterwauling", "output": "â ‰â â žâ »â ºâ â ¥â ‡â Œ" }, { "input": "caterwauls", "output": "â ‰â â žâ »â ºâ â ¥â ‡â Ž" }, { "input": "catfish", "output": "â ‰â â žâ ‹â Šâ ©" }, { "input": "catfish's", "output": "â ‰â â žâ ‹â Šâ ©â „â Ž" }, { "input": "catfishes", "output": "â ‰â â žâ ‹â Šâ ©â ‘â Ž" }, { "input": "catgut", "output": "â ‰â â žâ ›â ¥â ž" }, { "input": "catgut's", "output": "â ‰â â žâ ›â ¥â žâ „â Ž" }, { "input": "catharses", "output": "â ‰â â ¹â œâ Žâ ‘â Ž" }, { "input": "catharsis", "output": "â ‰â â ¹â œâ Žâ Šâ Ž" }, { "input": "catharsis's", "output": "â ‰â â ¹â œâ Žâ Šâ Žâ „â Ž" }, { "input": "cathartic", "output": "â ‰â â ¹â œâ žâ Šâ ‰" }, { "input": "cathartic's", "output": "â ‰â â ¹â œâ žâ Šâ ‰â „â Ž" }, { "input": "cathartics", "output": "â ‰â â ¹â œâ žâ Šâ ‰â Ž" }, { "input": "cathedral", "output": "â ‰â â ®â ™â —â â ‡" }, { "input": "cathedral's", "output": "â ‰â â ®â ™â —â â ‡â „â Ž" }, { "input": "cathedrals", "output": "â ‰â â ®â ™â —â â ‡â Ž" }, { "input": "catheter", "output": "â ‰â â ®â žâ »" }, { "input": "catheter's", "output": "â ‰â â ®â žâ »â „â Ž" }, { "input": "catheterize", "output": "â ‰â â ®â žâ »â Šâ µâ ‘" }, { "input": "catheterized", "output": "â ‰â â ®â žâ »â Šâ µâ «" }, { "input": "catheterizes", "output": "â ‰â â ®â žâ »â Šâ µâ ‘â Ž" }, { "input": "catheterizing", "output": "â ‰â â ®â žâ »â Šâ µâ Œ" }, { "input": "catheters", "output": "â ‰â â ®â žâ »â Ž" }, { "input": "cathode", "output": "â ‰â â ¹â •⠙⠑" }, { "input": "cathode's", "output": "â ‰â â ¹â •⠙⠑⠄⠎" }, { "input": "cathodes", "output": "â ‰â â ¹â •⠙⠑⠎" }, { "input": "cathodic", "output": "â ‰â â ¹â •⠙⠊⠉" }, { "input": "catholic", "output": "â ‰â â ¹â •⠇⠊⠉" }, { "input": "catholicity", "output": "â ‰â â ¹â •⠇⠊⠉⠰⠽" }, { "input": "catholicity's", "output": "â ‰â â ¹â •⠇⠊⠉⠰⠽⠄⠎" }, { "input": "cation", "output": "â ‰â â žâ Šâ •â " }, { "input": "cation's", "output": "â ‰â â žâ Šâ •â â „â Ž" }, { "input": "cations", "output": "â ‰â â žâ Šâ •â â Ž" }, { "input": "catkin", "output": "â ‰â â žâ …â ”" }, { "input": "catkin's", "output": "â ‰â â žâ …⠔⠄⠎" }, { "input": "catkins", "output": "â ‰â â žâ …⠔⠎" }, { "input": "catlike", "output": "â ‰â â žâ ‡â Šâ …â ‘" }, { "input": "catnap", "output": "â ‰â â žâ â â " }, { "input": "catnap's", "output": "â ‰â â žâ â â â „â Ž" }, { "input": "catnapped", "output": "â ‰â â žâ â â â â «" }, { "input": "catnapping", "output": "â ‰â â žâ â â â â Œ" }, { "input": "catnaps", "output": "â ‰â â žâ â â â Ž" }, { "input": "catnip", "output": "â ‰â â žâ â Šâ " }, { "input": "catnip's", "output": "â ‰â â žâ â Šâ â „â Ž" }, { "input": "cats", "output": "â ‰â â žâ Ž" }, { "input": "cattail", "output": "â ‰â â žâ žâ â Šâ ‡" }, { "input": "cattail's", "output": "â ‰â â žâ žâ â Šâ ‡â „â Ž" }, { "input": "cattails", "output": "â ‰â â žâ žâ â Šâ ‡â Ž" }, { "input": "cattier", "output": "â ‰â â žâ žâ Šâ »" }, { "input": "cattiest", "output": "â ‰â â žâ žâ Šâ ‘â Œ" }, { "input": "cattily", "output": "â ‰â â žâ žâ Šâ ‡â ½" }, { "input": "cattiness", "output": "â ‰â â žâ žâ Šâ °â Ž" }, { "input": "cattiness's", "output": "â ‰â â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "cattle", "output": "â ‰â â žâ žâ ‡â ‘" }, { "input": "cattle's", "output": "â ‰â â žâ žâ ‡â ‘â „â Ž" }, { "input": "cattleman", "output": "â ‰â â žâ žâ ‡â ‘â â â " }, { "input": "cattleman's", "output": "â ‰â â žâ žâ ‡â ‘â â â â „â Ž" }, { "input": "cattlemen", "output": "â ‰â â žâ žâ ‡â ‘â â ¢" }, { "input": "catty", "output": "â ‰â â žâ žâ ½" }, { "input": "catwalk", "output": "â ‰â â žâ ºâ â ‡â …" }, { "input": "catwalk's", "output": "â ‰â â žâ ºâ â ‡â …â „â Ž" }, { "input": "catwalks", "output": "â ‰â â žâ ºâ â ‡â …â Ž" }, { "input": "caucus", "output": "â ‰â â ¥â ‰â ¥â Ž" }, { "input": "caucus's", "output": "â ‰â â ¥â ‰â ¥â Žâ „â Ž" }, { "input": "caucused", "output": "â ‰â â ¥â ‰â ¥â Žâ «" }, { "input": "caucuses", "output": "â ‰â â ¥â ‰â ¥â Žâ ‘â Ž" }, { "input": "caucusing", "output": "â ‰â â ¥â ‰â ¥â Žâ Œ" }, { "input": "caudal", "output": "â ‰â â ¥â ™â â ‡" }, { "input": "caudally", "output": "â ‰â â ¥â ™â  â ½" }, { "input": "caught", "output": "â ‰â â ¥â £â ž" }, { "input": "cauldron", "output": "â ‰â â ¥â ‡â ™â —â •â " }, { "input": "cauldron's", "output": "â ‰â â ¥â ‡â ™â —â •â â „â Ž" }, { "input": "cauldrons", "output": "â ‰â â ¥â ‡â ™â —â •â â Ž" }, { "input": "cauliflower", "output": "â ‰â â ¥â ‡â Šâ ‹â ‡â ªâ »" }, { "input": "cauliflower's", "output": "â ‰â â ¥â ‡â Šâ ‹â ‡â ªâ »â „â Ž" }, { "input": "cauliflowers", "output": "â ‰â â ¥â ‡â Šâ ‹â ‡â ªâ »â Ž" }, { "input": "caulk", "output": "â ‰â â ¥â ‡â …" }, { "input": "caulk's", "output": "â ‰â â ¥â ‡â …â „â Ž" }, { "input": "caulked", "output": "â ‰â â ¥â ‡â …â «" }, { "input": "caulker", "output": "â ‰â â ¥â ‡â …â »" }, { "input": "caulker's", "output": "â ‰â â ¥â ‡â …⠻⠄⠎" }, { "input": "caulkers", "output": "â ‰â â ¥â ‡â …⠻⠎" }, { "input": "caulking", "output": "â ‰â â ¥â ‡â …â Œ" }, { "input": "caulks", "output": "â ‰â â ¥â ‡â …â Ž" }, { "input": "causal", "output": "â ‰â â ¥â Žâ â ‡" }, { "input": "causalities", "output": "â ‰â â ¥â Žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "causality", "output": "â ‰â â ¥â Žâ â ‡â °â ½" }, { "input": "causality's", "output": "â ‰â â ¥â Žâ â ‡â °â ½â „â Ž" }, { "input": "causally", "output": "â ‰â â ¥â Žâ  â ½" }, { "input": "causation", "output": "â ‰â â ¥â Žâ  â " }, { "input": "causation's", "output": "â ‰â â ¥â Žâ  â â „â Ž" }, { "input": "causative", "output": "â ‰â â ¥â Žâ â žâ Šâ §â ‘" }, { "input": "cause", "output": "â ‰â â ¥â Žâ ‘" }, { "input": "cause's", "output": "â ‰â â ¥â Žâ ‘â „â Ž" }, { "input": "caused", "output": "â ‰â â ¥â Žâ «" }, { "input": "causeless", "output": "â ‰â â ¥â Žâ ‘⠨⠎" }, { "input": "causer", "output": "â ‰â â ¥â Žâ »" }, { "input": "causer's", "output": "â ‰â â ¥â Žâ »â „â Ž" }, { "input": "causerie", "output": "â ‰â â ¥â Žâ »â Šâ ‘" }, { "input": "causerie's", "output": "â ‰â â ¥â Žâ »â Šâ ‘â „â Ž" }, { "input": "causeries", "output": "â ‰â â ¥â Žâ »â Šâ ‘â Ž" }, { "input": "causers", "output": "â ‰â â ¥â Žâ »â Ž" }, { "input": "causes", "output": "â ‰â â ¥â Žâ ‘â Ž" }, { "input": "causeway", "output": "â ‰â â ¥â Žâ ‘â ºâ â ½" }, { "input": "causeway's", "output": "â ‰â â ¥â Žâ ‘â ºâ â ½â „â Ž" }, { "input": "causeways", "output": "â ‰â â ¥â Žâ ‘â ºâ â ½â Ž" }, { "input": "causing", "output": "â ‰â â ¥â Žâ Œ" }, { "input": "caustic", "output": "â ‰â â ¥â Œâ Šâ ‰" }, { "input": "caustic's", "output": "â ‰â â ¥â Œâ Šâ ‰â „â Ž" }, { "input": "caustically", "output": "â ‰â â ¥â Œâ Šâ ‰â  â ½" }, { "input": "causticity", "output": "â ‰â â ¥â Œâ Šâ ‰â °â ½" }, { "input": "causticity's", "output": "â ‰â â ¥â Œâ Šâ ‰â °â ½â „â Ž" }, { "input": "caustics", "output": "â ‰â â ¥â Œâ Šâ ‰â Ž" }, { "input": "cauterization", "output": "â ‰â â ¥â žâ »â Šâ µâ  â " }, { "input": "cauterization's", "output": "â ‰â â ¥â žâ »â Šâ µâ  â â „â Ž" }, { "input": "cauterize", "output": "â ‰â â ¥â žâ »â Šâ µâ ‘" }, { "input": "cauterized", "output": "â ‰â â ¥â žâ »â Šâ µâ «" }, { "input": "cauterizes", "output": "â ‰â â ¥â žâ »â Šâ µâ ‘â Ž" }, { "input": "cauterizing", "output": "â ‰â â ¥â žâ »â Šâ µâ Œ" }, { "input": "caution", "output": "â ‰â â ¥â °â " }, { "input": "caution's", "output": "â ‰â â ¥â °â â „â Ž" }, { "input": "cautionary", "output": "â ‰â â ¥â °â â œâ ½" }, { "input": "cautioned", "output": "â ‰â â ¥â °â â «" }, { "input": "cautioning", "output": "â ‰â â ¥â °â â Œ" }, { "input": "cautions", "output": "â ‰â â ¥â °â â Ž" }, { "input": "cautious", "output": "â ‰â â ¥â žâ Šâ ³â Ž" }, { "input": "cautiously", "output": "â ‰â â ¥â žâ Šâ ³â Žâ ‡â ½" }, { "input": "cautiousness", "output": "â ‰â â ¥â žâ Šâ ³â Žâ °â Ž" }, { "input": "cautiousness's", "output": "â ‰â â ¥â žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "cavalcade", "output": "â ‰â â §â â ‡â ‰â â ™â ‘" }, { "input": "cavalcade's", "output": "â ‰â â §â â ‡â ‰â â ™â ‘â „â Ž" }, { "input": "cavalcades", "output": "â ‰â â §â â ‡â ‰â â ™â ‘â Ž" }, { "input": "cavalier", "output": "â ‰â â §â â ‡â Šâ »" }, { "input": "cavalier's", "output": "â ‰â â §â â ‡â Šâ »â „â Ž" }, { "input": "cavalierly", "output": "â ‰â â §â â ‡â Šâ »â ‡â ½" }, { "input": "cavaliers", "output": "â ‰â â §â â ‡â Šâ »â Ž" }, { "input": "cavalries", "output": "â ‰â â §â â ‡â —â Šâ ‘â Ž" }, { "input": "cavalry", "output": "â ‰â â §â â ‡â —â ½" }, { "input": "cavalry's", "output": "â ‰â â §â â ‡â —⠽⠄⠎" }, { "input": "cavalryman", "output": "â ‰â â §â â ‡â —â ½â â â " }, { "input": "cavalryman's", "output": "â ‰â â §â â ‡â —â ½â â â â „â Ž" }, { "input": "cavalrymen", "output": "â ‰â â §â â ‡â —â ½â â ¢" }, { "input": "cave", "output": "â ‰â â §â ‘" }, { "input": "cave's", "output": "â ‰â â §â ‘â „â Ž" }, { "input": "caveat", "output": "â ‰â â §â ‚â ž" }, { "input": "caveat's", "output": "â ‰â â §â ‚â žâ „â Ž" }, { "input": "caveats", "output": "â ‰â â §â ‚â žâ Ž" }, { "input": "caved", "output": "â ‰â â §â «" }, { "input": "caveman", "output": "â ‰â â §â ‘â â â " }, { "input": "caveman's", "output": "â ‰â â §â ‘â â â â „â Ž" }, { "input": "cavemen", "output": "â ‰â â §â ‘â â ¢" }, { "input": "cavern", "output": "â ‰â â §â »â " }, { "input": "cavern's", "output": "â ‰â â §â »â â „â Ž" }, { "input": "cavernous", "output": "â ‰â â §â »â â ³â Ž" }, { "input": "cavernously", "output": "â ‰â â §â »â â ³â Žâ ‡â ½" }, { "input": "caverns", "output": "â ‰â â §â »â â Ž" }, { "input": "caves", "output": "â ‰â â §â ‘â Ž" }, { "input": "caviar", "output": "â ‰â â §â Šâ œ" }, { "input": "caviar's", "output": "â ‰â â §â Šâ œâ „â Ž" }, { "input": "cavil", "output": "â ‰â â §â Šâ ‡" }, { "input": "cavil's", "output": "â ‰â â §â Šâ ‡â „â Ž" }, { "input": "caviled", "output": "â ‰â â §â Šâ ‡â «" }, { "input": "caviler", "output": "â ‰â â §â Šâ ‡â »" }, { "input": "caviler's", "output": "â ‰â â §â Šâ ‡â »â „â Ž" }, { "input": "cavilers", "output": "â ‰â â §â Šâ ‡â »â Ž" }, { "input": "caviling", "output": "â ‰â â §â Šâ ‡â Œ" }, { "input": "cavilings", "output": "â ‰â â §â Šâ ‡â Œâ Ž" }, { "input": "cavils", "output": "â ‰â â §â Šâ ‡â Ž" }, { "input": "caving", "output": "â ‰â â §â Œ" }, { "input": "caving's", "output": "â ‰â â §â Œâ „â Ž" }, { "input": "cavities", "output": "â ‰â â §â Šâ žâ Šâ ‘â Ž" }, { "input": "cavity", "output": "â ‰â â §â °â ½" }, { "input": "cavity's", "output": "â ‰â â §â °â ½â „â Ž" }, { "input": "cavort", "output": "â ‰â â §â •â —â ž" }, { "input": "cavorted", "output": "â ‰â â §â •â —â žâ «" }, { "input": "cavorting", "output": "â ‰â â §â •â —â žâ Œ" }, { "input": "cavorts", "output": "â ‰â â §â •â —â žâ Ž" }, { "input": "caw", "output": "â ‰â â º" }, { "input": "caw's", "output": "â ‰â â ºâ „â Ž" }, { "input": "cawed", "output": "â ‰â â ºâ «" }, { "input": "cawing", "output": "â ‰â â ºâ Œ" }, { "input": "caws", "output": "â ‰â â ºâ Ž" }, { "input": "cay", "output": "â ‰â â ½" }, { "input": "cay's", "output": "â ‰â â ½â „â Ž" }, { "input": "cayenne", "output": "â ‰â â ½â ¢â â ‘" }, { "input": "cayenne's", "output": "â ‰â â ½â ¢â â ‘â „â Ž" }, { "input": "cays", "output": "â ‰â â ½â Ž" }, { "input": "cayuse", "output": "â ‰â â ½â ¥â Žâ ‘" }, { "input": "cayuse's", "output": "â ‰â â ½â ¥â Žâ ‘â „â Ž" }, { "input": "cayuses", "output": "â ‰â â ½â ¥â Žâ ‘â Ž" }, { "input": "cease", "output": "⠉⠂⠎⠑" }, { "input": "cease's", "output": "⠉⠂⠎⠑⠄⠎" }, { "input": "ceased", "output": "⠉⠂⠎⠫" }, { "input": "ceasefire", "output": "⠉⠂⠎⠑⠋⠊⠗⠑" }, { "input": "ceaseless", "output": "⠉⠂⠎⠑⠨⠎" }, { "input": "ceaselessly", "output": "⠉⠂⠎⠑⠨⠎⠇⠽" }, { "input": "ceaselessness", "output": "⠉⠂⠎⠑⠨⠎⠰⠎" }, { "input": "ceaselessness's", "output": "⠉⠂⠎⠑⠨⠎⠰⠎⠄⠎" }, { "input": "ceases", "output": "⠉⠂⠎⠑⠎" }, { "input": "ceasing", "output": "⠉⠂⠎⠌" }, { "input": "ceca", "output": "⠉⠑⠉â " }, { "input": "cecal", "output": "⠉⠑⠉â â ‡" }, { "input": "cecum", "output": "⠉⠑⠉⠥â " }, { "input": "cecum's", "output": "⠉⠑⠉⠥â â „â Ž" }, { "input": "cedar", "output": "⠉⠫⠜" }, { "input": "cedar's", "output": "⠉⠫⠜⠄⠎" }, { "input": "cedars", "output": "⠉⠫⠜⠎" }, { "input": "cede", "output": "⠉⠫⠑" }, { "input": "ceded", "output": "⠉⠫⠫" }, { "input": "ceder", "output": "⠉⠫⠻" }, { "input": "ceder's", "output": "⠉⠫⠻⠄⠎" }, { "input": "ceders", "output": "⠉⠫⠻⠎" }, { "input": "cedes", "output": "⠉⠫⠑⠎" }, { "input": "cedilla", "output": "⠉⠫⠊⠇⠇â " }, { "input": "cedilla's", "output": "⠉⠫⠊⠇⠇â â „â Ž" }, { "input": "cedillas", "output": "⠉⠫⠊⠇⠇â â Ž" }, { "input": "ceding", "output": "⠉⠫⠌" }, { "input": "ceiling", "output": "⠉⠑⠊⠇⠌" }, { "input": "ceiling's", "output": "⠉⠑⠊⠇⠌⠄⠎" }, { "input": "ceilings", "output": "⠉⠑⠊⠇⠌⠎" }, { "input": "celandine", "output": "⠉⠑⠇⠯⠔⠑" }, { "input": "celandine's", "output": "⠉⠑⠇⠯⠔⠑⠄⠎" }, { "input": "celebrant", "output": "⠉⠑⠇⠑⠃⠗â â â ž" }, { "input": "celebrant's", "output": "⠉⠑⠇⠑⠃⠗â â â žâ „â Ž" }, { "input": "celebrants", "output": "⠉⠑⠇⠑⠃⠗â â â žâ Ž" }, { "input": "celebrate", "output": "⠉⠑⠇⠑⠃⠗â â žâ ‘" }, { "input": "celebrated", "output": "⠉⠑⠇⠑⠃⠗â â žâ «" }, { "input": "celebrates", "output": "⠉⠑⠇⠑⠃⠗â â žâ ‘â Ž" }, { "input": "celebrating", "output": "⠉⠑⠇⠑⠃⠗â â žâ Œ" }, { "input": "celebration", "output": "⠉⠑⠇⠑⠃⠗⠠â " }, { "input": "celebration's", "output": "⠉⠑⠇⠑⠃⠗⠠â â „â Ž" }, { "input": "celebrations", "output": "⠉⠑⠇⠑⠃⠗⠠â â Ž" }, { "input": "celebrator", "output": "⠉⠑⠇⠑⠃⠗â â žâ •â —" }, { "input": "celebrator's", "output": "⠉⠑⠇⠑⠃⠗â â žâ •â —â „â Ž" }, { "input": "celebrators", "output": "⠉⠑⠇⠑⠃⠗â â žâ •â —â Ž" }, { "input": "celebratory", "output": "⠉⠑⠇⠑⠃⠗â â žâ •â —â ½" }, { "input": "celebrities", "output": "⠉⠑⠇⠑⠃⠗⠊⠞⠊⠑⠎" }, { "input": "celebrity", "output": "⠉⠑⠇⠑⠃⠗⠰⠽" }, { "input": "celebrity's", "output": "⠉⠑⠇⠑⠃⠗⠰⠽⠄⠎" }, { "input": "celerity", "output": "⠉⠑⠇⠻⠰⠽" }, { "input": "celerity's", "output": "⠉⠑⠇⠻⠰⠽⠄⠎" }, { "input": "celery", "output": "⠉⠑⠇⠻⠽" }, { "input": "celery's", "output": "⠉⠑⠇⠻⠽⠄⠎" }, { "input": "celesta", "output": "⠉⠑⠇⠑⠌â " }, { "input": "celesta's", "output": "⠉⠑⠇⠑⠌â â „â Ž" }, { "input": "celestas", "output": "⠉⠑⠇⠑⠌â â Ž" }, { "input": "celestial", "output": "⠉⠑⠇⠑⠌⠊â â ‡" }, { "input": "celestially", "output": "⠉⠑⠇⠑⠌⠊⠠⠽" }, { "input": "celibacy", "output": "⠉⠑⠇⠊⠃â â ‰â ½" }, { "input": "celibacy's", "output": "⠉⠑⠇⠊⠃â â ‰â ½â „â Ž" }, { "input": "celibate", "output": "⠉⠑⠇⠊⠃â â žâ ‘" }, { "input": "celibate's", "output": "⠉⠑⠇⠊⠃â â žâ ‘â „â Ž" }, { "input": "celibates", "output": "⠉⠑⠇⠊⠃â â žâ ‘â Ž" }, { "input": "cell", "output": "⠉⠑⠇⠇" }, { "input": "cell's", "output": "⠉⠑⠇⠇⠄⠎" }, { "input": "cellar", "output": "⠉⠑⠇⠇⠜" }, { "input": "cellar's", "output": "⠉⠑⠇⠇⠜⠄⠎" }, { "input": "cellars", "output": "⠉⠑⠇⠇⠜⠎" }, { "input": "celled", "output": "⠉⠑⠇⠇⠫" }, { "input": "cellist", "output": "⠉⠑⠇⠇⠊⠌" }, { "input": "cellist's", "output": "⠉⠑⠇⠇⠊⠌⠄⠎" }, { "input": "cellists", "output": "⠉⠑⠇⠇⠊⠌⠎" }, { "input": "cello", "output": "⠉⠑⠇⠇⠕" }, { "input": "cello's", "output": "⠉⠑⠇⠇⠕⠄⠎" }, { "input": "cellophane", "output": "⠉⠑⠇⠇⠕â â “â â â ‘" }, { "input": "cellophane's", "output": "⠉⠑⠇⠇⠕â â “â â â ‘â „â Ž" }, { "input": "cellos", "output": "⠉⠑⠇⠇⠕⠎" }, { "input": "cells", "output": "⠉⠑⠇⠇⠎" }, { "input": "cellular", "output": "⠉⠑⠇⠇⠥⠇⠜" }, { "input": "cellular's", "output": "⠉⠑⠇⠇⠥⠇⠜⠄⠎" }, { "input": "cellulars", "output": "⠉⠑⠇⠇⠥⠇⠜⠎" }, { "input": "cellulite", "output": "⠉⠑⠇⠇⠥⠇⠊⠞⠑" }, { "input": "cellulite's", "output": "⠉⠑⠇⠇⠥⠇⠊⠞⠑⠄⠎" }, { "input": "celluloid", "output": "⠉⠑⠇⠇⠥⠇⠕⠊⠙" }, { "input": "celluloid's", "output": "⠉⠑⠇⠇⠥⠇⠕⠊⠙⠄⠎" }, { "input": "cellulose", "output": "⠉⠑⠇⠇⠥⠇⠕⠎⠑" }, { "input": "cellulose's", "output": "⠉⠑⠇⠇⠥⠇⠕⠎⠑⠄⠎" }, { "input": "cement", "output": "⠉⠑⠰⠞" }, { "input": "cement's", "output": "⠉⠑⠰⠞⠄⠎" }, { "input": "cemented", "output": "⠉⠑⠰⠞⠫" }, { "input": "cementer", "output": "⠉⠑⠰⠞⠻" }, { "input": "cementer's", "output": "⠉⠑⠰⠞⠻⠄⠎" }, { "input": "cementers", "output": "⠉⠑⠰⠞⠻⠎" }, { "input": "cementing", "output": "⠉⠑⠰⠞⠌" }, { "input": "cements", "output": "⠉⠑⠰⠞⠎" }, { "input": "cementum", "output": "⠉⠑⠰⠞⠥â " }, { "input": "cementum's", "output": "⠉⠑⠰⠞⠥â â „â Ž" }, { "input": "cemeteries", "output": "⠉⠑â â ‘⠞⠻⠊⠑⠎" }, { "input": "cemetery", "output": "⠉⠑â â ‘⠞⠻⠽" }, { "input": "cemetery's", "output": "⠉⠑â â ‘⠞⠻⠽⠄⠎" }, { "input": "cenobite", "output": "⠉⠢⠕⠃⠊⠞⠑" }, { "input": "cenobite's", "output": "⠉⠢⠕⠃⠊⠞⠑⠄⠎" }, { "input": "cenobites", "output": "⠉⠢⠕⠃⠊⠞⠑⠎" }, { "input": "cenobitic", "output": "⠉⠢⠕⠃⠊⠞⠊⠉" }, { "input": "cenotaph", "output": "⠉⠢⠕⠞â â â “" }, { "input": "cenotaph's", "output": "⠉⠢⠕⠞â â â “â „â Ž" }, { "input": "cenotaphs", "output": "⠉⠢⠕⠞â â â “â Ž" }, { "input": "censer", "output": "⠉⠢⠎⠻" }, { "input": "censer's", "output": "⠉⠢⠎⠻⠄⠎" }, { "input": "censers", "output": "⠉⠢⠎⠻⠎" }, { "input": "censor", "output": "⠉⠢⠎⠕⠗" }, { "input": "censor's", "output": "⠉⠢⠎⠕⠗⠄⠎" }, { "input": "censored", "output": "⠉⠢⠎⠕⠗⠫" }, { "input": "censorial", "output": "⠉⠢⠎⠕⠗⠊â â ‡" }, { "input": "censoring", "output": "⠉⠢⠎⠕⠗⠌" }, { "input": "censorious", "output": "⠉⠢⠎⠕⠗⠊⠳⠎" }, { "input": "censoriously", "output": "⠉⠢⠎⠕⠗⠊⠳⠎⠇⠽" }, { "input": "censoriousness", "output": "⠉⠢⠎⠕⠗⠊⠳⠎⠰⠎" }, { "input": "censoriousness's", "output": "⠉⠢⠎⠕⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "censors", "output": "⠉⠢⠎⠕⠗⠎" }, { "input": "censorship", "output": "⠉⠢⠎⠕⠗⠩⠊â " }, { "input": "censorship's", "output": "⠉⠢⠎⠕⠗⠩⠊â â „â Ž" }, { "input": "censurable", "output": "⠉⠢⠎⠥⠗â â ¼" }, { "input": "censure", "output": "⠉⠢⠎⠥⠗⠑" }, { "input": "censure's", "output": "⠉⠢⠎⠥⠗⠑⠄⠎" }, { "input": "censured", "output": "⠉⠢⠎⠥⠗⠫" }, { "input": "censurer", "output": "⠉⠢⠎⠥⠗⠻" }, { "input": "censurer's", "output": "⠉⠢⠎⠥⠗⠻⠄⠎" }, { "input": "censurers", "output": "⠉⠢⠎⠥⠗⠻⠎" }, { "input": "censures", "output": "⠉⠢⠎⠥⠗⠑⠎" }, { "input": "censuring", "output": "⠉⠢⠎⠥⠗⠌" }, { "input": "census", "output": "⠉⠢⠎⠥⠎" }, { "input": "census's", "output": "⠉⠢⠎⠥⠎⠄⠎" }, { "input": "censused", "output": "⠉⠢⠎⠥⠎⠫" }, { "input": "censuses", "output": "⠉⠢⠎⠥⠎⠑⠎" }, { "input": "censusing", "output": "⠉⠢⠎⠥⠎⠌" }, { "input": "cent", "output": "⠉⠢⠞" }, { "input": "cent's", "output": "⠉⠢⠞⠄⠎" }, { "input": "centaur", "output": "⠉⠢⠞â â ¥â —" }, { "input": "centaur's", "output": "⠉⠢⠞â â ¥â —â „â Ž" }, { "input": "centaurs", "output": "⠉⠢⠞â â ¥â —â Ž" }, { "input": "centavo", "output": "⠉⠢⠞â â §â •" }, { "input": "centavo's", "output": "⠉⠢⠞â â §â •â „â Ž" }, { "input": "centavos", "output": "⠉⠢⠞â â §â •â Ž" }, { "input": "centenarian", "output": "⠉⠢⠞⠢⠜⠊â â " }, { "input": "centenarian's", "output": "⠉⠢⠞⠢⠜⠊â â â „â Ž" }, { "input": "centenarians", "output": "⠉⠢⠞⠢⠜⠊â â â Ž" }, { "input": "centenaries", "output": "⠉⠢⠞⠢⠜⠊⠑⠎" }, { "input": "centenary", "output": "⠉⠢⠞⠢⠜⠽" }, { "input": "centenary's", "output": "⠉⠢⠞⠢⠜⠽⠄⠎" }, { "input": "centennial", "output": "⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "centennial's", "output": "⠉⠢⠞⠢â â Šâ â ‡â „â Ž" }, { "input": "centennially", "output": "⠉⠢⠞⠢â â Šâ  â ½" }, { "input": "centennials", "output": "⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "center", "output": "⠉⠢⠞⠻" }, { "input": "center's", "output": "⠉⠢⠞⠻⠄⠎" }, { "input": "centerboard", "output": "⠉⠢⠞⠻⠃⠕⠜⠙" }, { "input": "centerboard's", "output": "⠉⠢⠞⠻⠃⠕⠜⠙⠄⠎" }, { "input": "centerboards", "output": "⠉⠢⠞⠻⠃⠕⠜⠙⠎" }, { "input": "centered", "output": "⠉⠢⠞⠻⠫" }, { "input": "centerfold", "output": "⠉⠢⠞⠻⠋⠕⠇⠙" }, { "input": "centerfold's", "output": "⠉⠢⠞⠻⠋⠕⠇⠙⠄⠎" }, { "input": "centerfolds", "output": "⠉⠢⠞⠻⠋⠕⠇⠙⠎" }, { "input": "centering", "output": "⠉⠢⠞⠻⠌" }, { "input": "centerpiece", "output": "⠉⠢⠞⠻â â Šâ ‘⠉⠑" }, { "input": "centerpiece's", "output": "⠉⠢⠞⠻â â Šâ ‘⠉⠑⠄⠎" }, { "input": "centerpieces", "output": "⠉⠢⠞⠻â â Šâ ‘⠉⠑⠎" }, { "input": "centers", "output": "⠉⠢⠞⠻⠎" }, { "input": "centigrade", "output": "⠉⠢⠞⠊⠛⠗â â ™â ‘" }, { "input": "centigram", "output": "⠉⠢⠞⠊⠛⠗â â " }, { "input": "centigram's", "output": "⠉⠢⠞⠊⠛⠗â â â „â Ž" }, { "input": "centigrams", "output": "⠉⠢⠞⠊⠛⠗â â â Ž" }, { "input": "centiliter", "output": "⠉⠢⠞⠊⠇⠊⠞⠻" }, { "input": "centiliter's", "output": "⠉⠢⠞⠊⠇⠊⠞⠻⠄⠎" }, { "input": "centiliters", "output": "⠉⠢⠞⠊⠇⠊⠞⠻⠎" }, { "input": "centime", "output": "⠉⠢⠞⠊â â ‘" }, { "input": "centime's", "output": "⠉⠢⠞⠊â â ‘â „â Ž" }, { "input": "centimes", "output": "⠉⠢⠞⠊â â ‘â Ž" }, { "input": "centimeter", "output": "⠉⠢⠞⠊â â ‘â žâ »" }, { "input": "centimeter's", "output": "⠉⠢⠞⠊â â ‘⠞⠻⠄⠎" }, { "input": "centimeters", "output": "⠉⠢⠞⠊â â ‘⠞⠻⠎" }, { "input": "centipede", "output": "⠉⠢⠞⠊â â «â ‘" }, { "input": "centipede's", "output": "⠉⠢⠞⠊â â «â ‘â „â Ž" }, { "input": "centipedes", "output": "⠉⠢⠞⠊â â «â ‘â Ž" }, { "input": "central", "output": "⠉⠢⠞⠗â â ‡" }, { "input": "central's", "output": "⠉⠢⠞⠗â â ‡â „â Ž" }, { "input": "centrality's", "output": "⠉⠢⠞⠗â â ‡â °â ½â „â Ž" }, { "input": "centralization", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ  â " }, { "input": "centralization's", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ  â â „â Ž" }, { "input": "centralize", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ ‘" }, { "input": "centralized", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ «" }, { "input": "centralizer", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ »" }, { "input": "centralizer's", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ »â „â Ž" }, { "input": "centralizers", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ »â Ž" }, { "input": "centralizes", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ ‘â Ž" }, { "input": "centralizing", "output": "⠉⠢⠞⠗â â ‡â Šâ µâ Œ" }, { "input": "centrally", "output": "⠉⠢⠞⠗⠠⠽" }, { "input": "centrals", "output": "⠉⠢⠞⠗â â ‡â Ž" }, { "input": "centrifugal", "output": "⠉⠢⠞⠗⠊⠋⠥⠛â â ‡" }, { "input": "centrifugally", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠠⠽" }, { "input": "centrifuge", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠑" }, { "input": "centrifuge's", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠑⠄⠎" }, { "input": "centrifuged", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠫" }, { "input": "centrifuges", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠑⠎" }, { "input": "centrifuging", "output": "⠉⠢⠞⠗⠊⠋⠥⠛⠌" }, { "input": "centripetal", "output": "⠉⠢⠞⠗⠊â â ‘â žâ â ‡" }, { "input": "centripetally", "output": "⠉⠢⠞⠗⠊â â ‘â žâ  â ½" }, { "input": "centrism", "output": "⠉⠢⠞⠗⠊⠎â " }, { "input": "centrism's", "output": "⠉⠢⠞⠗⠊⠎â â „â Ž" }, { "input": "centrist", "output": "⠉⠢⠞⠗⠊⠌" }, { "input": "centrist's", "output": "⠉⠢⠞⠗⠊⠌⠄⠎" }, { "input": "centrists", "output": "⠉⠢⠞⠗⠊⠌⠎" }, { "input": "cents", "output": "⠉⠢⠞⠎" }, { "input": "centuries", "output": "⠉⠢⠞⠥⠗⠊⠑⠎" }, { "input": "centurion", "output": "⠉⠢⠞⠥⠗⠊⠕â " }, { "input": "centurion's", "output": "⠉⠢⠞⠥⠗⠊⠕â â „â Ž" }, { "input": "centurions", "output": "⠉⠢⠞⠥⠗⠊⠕â â Ž" }, { "input": "century", "output": "⠉⠢⠞⠥⠗⠽" }, { "input": "century's", "output": "⠉⠢⠞⠥⠗⠽⠄⠎" }, { "input": "cephalic", "output": "⠉⠑â â “â â ‡â Šâ ‰" }, { "input": "ceramic", "output": "⠉⠻â â â Šâ ‰" }, { "input": "ceramic's", "output": "⠉⠻â â â Šâ ‰â „â Ž" }, { "input": "ceramicist", "output": "⠉⠻â â â Šâ ‰â Šâ Œ" }, { "input": "ceramicist's", "output": "⠉⠻â â â Šâ ‰â Šâ Œâ „â Ž" }, { "input": "ceramicists", "output": "⠉⠻â â â Šâ ‰â Šâ Œâ Ž" }, { "input": "ceramics", "output": "⠉⠻â â â Šâ ‰â Ž" }, { "input": "ceramics's", "output": "⠉⠻â â â Šâ ‰â Žâ „â Ž" }, { "input": "ceramist", "output": "⠉⠻â â â Šâ Œ" }, { "input": "ceramist's", "output": "⠉⠻â â â Šâ Œâ „â Ž" }, { "input": "ceramists", "output": "⠉⠻â â â Šâ Œâ Ž" }, { "input": "cereal", "output": "⠉⠻⠂⠇" }, { "input": "cereal's", "output": "⠉⠻⠂⠇⠄⠎" }, { "input": "cereals", "output": "⠉⠻⠂⠇⠎" }, { "input": "cerebellar", "output": "⠉⠻⠑⠃⠑⠇⠇⠜" }, { "input": "cerebellum", "output": "⠉⠻⠑⠃⠑⠇⠇⠥â " }, { "input": "cerebellum's", "output": "⠉⠻⠑⠃⠑⠇⠇⠥â â „â Ž" }, { "input": "cerebellums", "output": "⠉⠻⠑⠃⠑⠇⠇⠥â â Ž" }, { "input": "cerebra", "output": "⠉⠻⠑⠃⠗â " }, { "input": "cerebral", "output": "⠉⠻⠑⠃⠗â â ‡" }, { "input": "cerebrate", "output": "⠉⠻⠑⠃⠗â â žâ ‘" }, { "input": "cerebrated", "output": "⠉⠻⠑⠃⠗â â žâ «" }, { "input": "cerebrates", "output": "⠉⠻⠑⠃⠗â â žâ ‘â Ž" }, { "input": "cerebrating", "output": "⠉⠻⠑⠃⠗â â žâ Œ" }, { "input": "cerebration's", "output": "⠉⠻⠑⠃⠗⠠â â „â Ž" }, { "input": "cerebrum", "output": "⠉⠻⠑⠃⠗⠥â " }, { "input": "cerebrum's", "output": "⠉⠻⠑⠃⠗⠥â â „â Ž" }, { "input": "cerebrums", "output": "⠉⠻⠑⠃⠗⠥â â Ž" }, { "input": "cerement", "output": "⠉⠻⠑⠰⠞" }, { "input": "cerement's", "output": "⠉⠻⠑⠰⠞⠄⠎" }, { "input": "cerements", "output": "⠉⠻⠑⠰⠞⠎" }, { "input": "ceremonial", "output": "⠉⠻⠑â â •â â Šâ â ‡" }, { "input": "ceremonial's", "output": "⠉⠻⠑â â •â â Šâ â ‡â „â Ž" }, { "input": "ceremonially", "output": "⠉⠻⠑â â •â â Šâ  â ½" }, { "input": "ceremonials", "output": "⠉⠻⠑â â •â â Šâ â ‡â Ž" }, { "input": "ceremonies", "output": "⠉⠻⠑â â •â â Šâ ‘â Ž" }, { "input": "ceremonious", "output": "⠉⠻⠑â â •â â Šâ ³â Ž" }, { "input": "ceremoniously", "output": "⠉⠻⠑â â •â â Šâ ³â Žâ ‡â ½" }, { "input": "ceremoniousness", "output": "⠉⠻⠑â â •â â Šâ ³â Žâ °â Ž" }, { "input": "ceremoniousness's", "output": "⠉⠻⠑â â •â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "ceremony", "output": "⠉⠻⠑â â •â â ½" }, { "input": "ceremony's", "output": "⠉⠻⠑â â •â â ½â „â Ž" }, { "input": "cerise", "output": "⠉⠻⠊⠎⠑" }, { "input": "cerise's", "output": "⠉⠻⠊⠎⠑⠄⠎" }, { "input": "cerium", "output": "⠉⠻⠊⠥â " }, { "input": "cerium's", "output": "⠉⠻⠊⠥â â „â Ž" }, { "input": "cermet", "output": "⠉⠻â â ‘â ž" }, { "input": "cermet's", "output": "⠉⠻â â ‘â žâ „â Ž" }, { "input": "certain", "output": "⠉⠻⠞â â ”" }, { "input": "certainly", "output": "⠉⠻⠞â â ”⠇⠽" }, { "input": "certainties", "output": "⠉⠻⠞â â ”â žâ Šâ ‘â Ž" }, { "input": "certainty", "output": "⠉⠻⠞â â ”â žâ ½" }, { "input": "certainty's", "output": "⠉⠻⠞â â ”⠞⠽⠄⠎" }, { "input": "certifiable", "output": "⠉⠻⠞⠊⠋⠊â â ¼" }, { "input": "certifiably", "output": "⠉⠻⠞⠊⠋⠊â â ƒâ ‡â ½" }, { "input": "certificate", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ ‘" }, { "input": "certificate's", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ ‘â „â Ž" }, { "input": "certificated", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ «" }, { "input": "certificates", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ ‘â Ž" }, { "input": "certificating", "output": "⠉⠻⠞⠊⠋⠊⠉â â žâ Œ" }, { "input": "certification", "output": "⠉⠻⠞⠊⠋⠊⠉⠠â " }, { "input": "certification's", "output": "⠉⠻⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "certifications", "output": "⠉⠻⠞⠊⠋⠊⠉⠠â â Ž" }, { "input": "certified", "output": "⠉⠻⠞⠊⠋⠊⠫" }, { "input": "certifies", "output": "⠉⠻⠞⠊⠋⠊⠑⠎" }, { "input": "certify", "output": "⠉⠻⠞⠊⠋⠽" }, { "input": "certifying", "output": "⠉⠻⠞⠊⠋⠽⠌" }, { "input": "certitude", "output": "⠉⠻⠞⠊⠞⠥⠙⠑" }, { "input": "certitude's", "output": "⠉⠻⠞⠊⠞⠥⠙⠑⠄⠎" }, { "input": "cerulean", "output": "⠉⠻⠥⠇⠂â " }, { "input": "cerulean's", "output": "⠉⠻⠥⠇⠂â â „â Ž" }, { "input": "cervical", "output": "⠉⠻⠧⠊⠉â â ‡" }, { "input": "cervices", "output": "⠉⠻⠧⠊⠉⠑⠎" }, { "input": "cervix", "output": "⠉⠻⠧⠊⠭" }, { "input": "cervix's", "output": "⠉⠻⠧⠊⠭⠄⠎" }, { "input": "cesarean", "output": "⠉⠑⠎⠜⠂â " }, { "input": "cesarean's", "output": "⠉⠑⠎⠜⠂â â „â Ž" }, { "input": "cesareans", "output": "⠉⠑⠎⠜⠂â â Ž" }, { "input": "cesium", "output": "⠉⠑⠎⠊⠥â " }, { "input": "cesium's", "output": "⠉⠑⠎⠊⠥â â „â Ž" }, { "input": "cessation", "output": "⠉⠑⠎⠎⠠â " }, { "input": "cessation's", "output": "⠉⠑⠎⠎⠠â â „â Ž" }, { "input": "cessations", "output": "⠉⠑⠎⠎⠠â â Ž" }, { "input": "cession", "output": "⠉⠑⠎⠨â " }, { "input": "cession's", "output": "⠉⠑⠎⠨â â „â Ž" }, { "input": "cessions", "output": "⠉⠑⠎⠨â â Ž" }, { "input": "cesspool", "output": "⠉⠑⠎⠎â â •â •â ‡" }, { "input": "cesspool's", "output": "⠉⠑⠎⠎â â •⠕⠇⠄⠎" }, { "input": "cesspools", "output": "⠉⠑⠎⠎â â •⠕⠇⠎" }, { "input": "cetacean", "output": "⠉⠑⠞â â ‰â ‚â " }, { "input": "cetacean's", "output": "⠉⠑⠞â â ‰â ‚â â „â Ž" }, { "input": "cetaceans", "output": "⠉⠑⠞â â ‰â ‚â â Ž" }, { "input": "chafe", "output": "â ¡â â ‹â ‘" }, { "input": "chafed", "output": "â ¡â â ‹â «" }, { "input": "chafes", "output": "â ¡â â ‹â ‘â Ž" }, { "input": "chaff", "output": "â ¡â â ‹â ‹" }, { "input": "chaff's", "output": "â ¡â â ‹â ‹â „â Ž" }, { "input": "chaffed", "output": "â ¡â â –â «" }, { "input": "chaffinch", "output": "â ¡â â –⠔⠡" }, { "input": "chaffinch's", "output": "â ¡â â –⠔⠡⠄⠎" }, { "input": "chaffinches", "output": "â ¡â â –⠔⠡⠑⠎" }, { "input": "chaffing", "output": "â ¡â â –â Œ" }, { "input": "chaffs", "output": "â ¡â â –â Ž" }, { "input": "chafing", "output": "â ¡â â ‹â Œ" }, { "input": "chagrin", "output": "â ¡â â ›â —â ”" }, { "input": "chagrin's", "output": "â ¡â â ›â —⠔⠄⠎" }, { "input": "chagrined", "output": "â ¡â â ›â —⠔⠫" }, { "input": "chagrining", "output": "â ¡â â ›â —⠔⠌" }, { "input": "chagrins", "output": "â ¡â â ›â —⠔⠎" }, { "input": "chain", "output": "â ¡â â ”" }, { "input": "chain's", "output": "â ¡â â ”â „â Ž" }, { "input": "chained", "output": "â ¡â â ”â «" }, { "input": "chaining", "output": "â ¡â â ”â Œ" }, { "input": "chains", "output": "â ¡â â ”â Ž" }, { "input": "chainsaw", "output": "â ¡â â ”â Žâ â º" }, { "input": "chainsaw's", "output": "â ¡â â ”â Žâ â ºâ „â Ž" }, { "input": "chainsawed", "output": "â ¡â â ”â Žâ â ºâ «" }, { "input": "chainsawing", "output": "â ¡â â ”â Žâ â ºâ Œ" }, { "input": "chainsaws", "output": "â ¡â â ”â Žâ â ºâ Ž" }, { "input": "chair", "output": "â ¡â â Šâ —" }, { "input": "chair's", "output": "â ¡â â Šâ —â „â Ž" }, { "input": "chaired", "output": "â ¡â â Šâ —â «" }, { "input": "chairing", "output": "â ¡â â Šâ —â Œ" }, { "input": "chairlift", "output": "â ¡â â Šâ —⠇⠊⠋⠞" }, { "input": "chairlift's", "output": "â ¡â â Šâ —⠇⠊⠋⠞⠄⠎" }, { "input": "chairlifts", "output": "â ¡â â Šâ —⠇⠊⠋⠞⠎" }, { "input": "chairman", "output": "â ¡â â Šâ —â â â " }, { "input": "chairman's", "output": "â ¡â â Šâ —â â â â „â Ž" }, { "input": "chairmanship", "output": "â ¡â â Šâ —â â â â ©â Šâ " }, { "input": "chairmanship's", "output": "â ¡â â Šâ —â â â â ©â Šâ â „â Ž" }, { "input": "chairmen", "output": "â ¡â â Šâ —â â ¢" }, { "input": "chairperson", "output": "â ¡â â Šâ —â â »â Žâ •â " }, { "input": "chairperson's", "output": "â ¡â â Šâ —â â »â Žâ •â â „â Ž" }, { "input": "chairpersons", "output": "â ¡â â Šâ —â â »â Žâ •â â Ž" }, { "input": "chairs", "output": "â ¡â â Šâ —â Ž" }, { "input": "chairwoman", "output": "â ¡â â Šâ —⠺⠕â â â " }, { "input": "chairwoman's", "output": "â ¡â â Šâ —⠺⠕â â â â „â Ž" }, { "input": "chairwomen", "output": "â ¡â â Šâ —⠺⠕â â ¢" }, { "input": "chaise", "output": "â ¡â â Šâ Žâ ‘" }, { "input": "chaise's", "output": "â ¡â â Šâ Žâ ‘â „â Ž" }, { "input": "chaises", "output": "â ¡â â Šâ Žâ ‘â Ž" }, { "input": "chalcedony", "output": "â ¡â â ‡â ‰â «â •â â ½" }, { "input": "chalcedony's", "output": "â ¡â â ‡â ‰â «â •â â ½â „â Ž" }, { "input": "chalet", "output": "â ¡â â ‡â ‘â ž" }, { "input": "chalet's", "output": "â ¡â â ‡â ‘â žâ „â Ž" }, { "input": "chalets", "output": "â ¡â â ‡â ‘â žâ Ž" }, { "input": "chalice", "output": "â ¡â â ‡â Šâ ‰â ‘" }, { "input": "chalice's", "output": "â ¡â â ‡â Šâ ‰â ‘â „â Ž" }, { "input": "chalices", "output": "â ¡â â ‡â Šâ ‰â ‘â Ž" }, { "input": "chalk", "output": "â ¡â â ‡â …" }, { "input": "chalk's", "output": "â ¡â â ‡â …â „â Ž" }, { "input": "chalkboard", "output": "â ¡â â ‡â …⠃⠕⠜⠙" }, { "input": "chalkboard's", "output": "â ¡â â ‡â …⠃⠕⠜⠙⠄⠎" }, { "input": "chalkboards", "output": "â ¡â â ‡â …⠃⠕⠜⠙⠎" }, { "input": "chalked", "output": "â ¡â â ‡â …â «" }, { "input": "chalkier", "output": "â ¡â â ‡â …â Šâ »" }, { "input": "chalkiest", "output": "â ¡â â ‡â …â Šâ ‘â Œ" }, { "input": "chalkiness's", "output": "â ¡â â ‡â …â Šâ °â Žâ „â Ž" }, { "input": "chalking", "output": "â ¡â â ‡â …â Œ" }, { "input": "chalks", "output": "â ¡â â ‡â …â Ž" }, { "input": "chalky", "output": "â ¡â â ‡â …â ½" }, { "input": "challenge", "output": "â ¡â â ‡â ‡â ¢â ›â ‘" }, { "input": "challenge's", "output": "â ¡â â ‡â ‡â ¢â ›â ‘â „â Ž" }, { "input": "challenged", "output": "â ¡â â ‡â ‡â ¢â ›â «" }, { "input": "challenger", "output": "â ¡â â ‡â ‡â ¢â ›â »" }, { "input": "challenger's", "output": "â ¡â â ‡â ‡â ¢â ›â »â „â Ž" }, { "input": "challengers", "output": "â ¡â â ‡â ‡â ¢â ›â »â Ž" }, { "input": "challenges", "output": "â ¡â â ‡â ‡â ¢â ›â ‘â Ž" }, { "input": "challenging", "output": "â ¡â â ‡â ‡â ¢â ›â Œ" }, { "input": "challis", "output": "â ¡â â ‡â ‡â Šâ Ž" }, { "input": "challis's", "output": "â ¡â â ‡â ‡â Šâ Žâ „â Ž" }, { "input": "chamber", "output": "â ¡â â â ƒâ »" }, { "input": "chamber's", "output": "â ¡â â â ƒâ »â „â Ž" }, { "input": "chambered", "output": "â ¡â â â ƒâ »â «" }, { "input": "chamberlain", "output": "â ¡â â â ƒâ »â ‡â â ”" }, { "input": "chamberlain's", "output": "â ¡â â â ƒâ »â ‡â â ”â „â Ž" }, { "input": "chamberlains", "output": "â ¡â â â ƒâ »â ‡â â ”â Ž" }, { "input": "chambermaid", "output": "â ¡â â â ƒâ »â â â Šâ ™" }, { "input": "chambermaid's", "output": "â ¡â â â ƒâ »â â â Šâ ™â „â Ž" }, { "input": "chambermaids", "output": "â ¡â â â ƒâ »â â â Šâ ™â Ž" }, { "input": "chambers", "output": "â ¡â â â ƒâ »â Ž" }, { "input": "chambray", "output": "â ¡â â â ƒâ —â â ½" }, { "input": "chambray's", "output": "â ¡â â â ƒâ —â â ½â „â Ž" }, { "input": "chameleon", "output": "â ¡â â â ‘⠇⠑⠕â " }, { "input": "chameleon's", "output": "â ¡â â â ‘⠇⠑⠕â â „â Ž" }, { "input": "chameleons", "output": "â ¡â â â ‘⠇⠑⠕â â Ž" }, { "input": "chamois", "output": "â ¡â â â •â Šâ Ž" }, { "input": "chamois's", "output": "â ¡â â â •â Šâ Žâ „â Ž" }, { "input": "chamomile", "output": "â ¡â â â •â â Šâ ‡â ‘" }, { "input": "chamomile's", "output": "â ¡â â â •â â Šâ ‡â ‘â „â Ž" }, { "input": "chamomiles", "output": "â ¡â â â •â â Šâ ‡â ‘â Ž" }, { "input": "champ", "output": "â ¡â â â " }, { "input": "champ's", "output": "â ¡â â â â „â Ž" }, { "input": "champagne", "output": "â ¡â â â â â ›â â ‘" }, { "input": "champagne's", "output": "â ¡â â â â â ›â â ‘â „â Ž" }, { "input": "champagnes", "output": "â ¡â â â â â ›â â ‘â Ž" }, { "input": "champed", "output": "â ¡â â â â «" }, { "input": "champing", "output": "â ¡â â â â Œ" }, { "input": "champion", "output": "â ¡â â â â Šâ •â " }, { "input": "champion's", "output": "â ¡â â â â Šâ •â â „â Ž" }, { "input": "championed", "output": "â ¡â â â â Šâ •â â «" }, { "input": "championing", "output": "â ¡â â â â Šâ •â â Œ" }, { "input": "champions", "output": "â ¡â â â â Šâ •â â Ž" }, { "input": "championship", "output": "â ¡â â â â Šâ •â â ©â Šâ " }, { "input": "championship's", "output": "â ¡â â â â Šâ •â â ©â Šâ â „â Ž" }, { "input": "championships", "output": "â ¡â â â â Šâ •â â ©â Šâ â Ž" }, { "input": "champs", "output": "â ¡â â â â Ž" }, { "input": "chance", "output": "⠡⠨⠑" }, { "input": "chance's", "output": "⠡⠨⠑⠄⠎" }, { "input": "chanced", "output": "⠡⠨⠑⠙" }, { "input": "chancel", "output": "⠡⠨⠑⠇" }, { "input": "chancel's", "output": "⠡⠨⠑⠇⠄⠎" }, { "input": "chancelleries", "output": "⠡⠨⠑⠇⠇⠻⠊⠑⠎" }, { "input": "chancellery", "output": "⠡⠨⠑⠇⠇⠻⠽" }, { "input": "chancellery's", "output": "⠡⠨⠑⠇⠇⠻⠽⠄⠎" }, { "input": "chancellor", "output": "⠡⠨⠑⠇⠇⠕⠗" }, { "input": "chancellor's", "output": "⠡⠨⠑⠇⠇⠕⠗⠄⠎" }, { "input": "chancellors", "output": "⠡⠨⠑⠇⠇⠕⠗⠎" }, { "input": "chancellorship", "output": "⠡⠨⠑⠇⠇⠕⠗⠩⠊â " }, { "input": "chancellorship's", "output": "⠡⠨⠑⠇⠇⠕⠗⠩⠊â â „â Ž" }, { "input": "chancels", "output": "⠡⠨⠑⠇⠎" }, { "input": "chanceries", "output": "⠡⠨⠑⠗⠊⠑⠎" }, { "input": "chancery", "output": "⠡⠨⠑⠗⠽" }, { "input": "chancery's", "output": "⠡⠨⠑⠗⠽⠄⠎" }, { "input": "chances", "output": "⠡⠨⠑⠎" }, { "input": "chancier", "output": "â ¡â â â ‰â Šâ »" }, { "input": "chanciest", "output": "â ¡â â â ‰â Šâ ‘â Œ" }, { "input": "chanciness", "output": "â ¡â â â ‰â Šâ °â Ž" }, { "input": "chanciness's", "output": "â ¡â â â ‰â Šâ °â Žâ „â Ž" }, { "input": "chancing", "output": "â ¡â â â ‰â Œ" }, { "input": "chancre", "output": "â ¡â â â ‰â —â ‘" }, { "input": "chancre's", "output": "â ¡â â â ‰â —â ‘â „â Ž" }, { "input": "chancres", "output": "â ¡â â â ‰â —â ‘â Ž" }, { "input": "chancy", "output": "â ¡â â â ‰â ½" }, { "input": "chandelier", "output": "⠡⠯⠑⠇⠊⠻" }, { "input": "chandelier's", "output": "⠡⠯⠑⠇⠊⠻⠄⠎" }, { "input": "chandeliers", "output": "⠡⠯⠑⠇⠊⠻⠎" }, { "input": "chandler", "output": "⠡⠯⠇⠻" }, { "input": "chandler's", "output": "⠡⠯⠇⠻⠄⠎" }, { "input": "chandlers", "output": "⠡⠯⠇⠻⠎" }, { "input": "change", "output": "â ¡â â â ›â ‘" }, { "input": "change's", "output": "â ¡â â â ›â ‘â „â Ž" }, { "input": "changeability's", "output": "â ¡â â â ›â ‘â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "changeable", "output": "â ¡â â â ›â ‘â â ¼" }, { "input": "changeableness", "output": "â ¡â â â ›â ‘â â ¼â °â Ž" }, { "input": "changeableness's", "output": "â ¡â â â ›â ‘â â ¼â °â Žâ „â Ž" }, { "input": "changeably", "output": "â ¡â â â ›â ‘â â ƒâ ‡â ½" }, { "input": "changed", "output": "â ¡â â â ›â «" }, { "input": "changelessly", "output": "â ¡â â â ›â ‘⠨⠎⠇⠽" }, { "input": "changeling", "output": "â ¡â â â ›â ‘⠇⠌" }, { "input": "changeling's", "output": "â ¡â â â ›â ‘⠇⠌⠄⠎" }, { "input": "changelings", "output": "â ¡â â â ›â ‘⠇⠌⠎" }, { "input": "changeover", "output": "â ¡â â â ›â ‘â •â §â »" }, { "input": "changeover's", "output": "â ¡â â â ›â ‘⠕⠧⠻⠄⠎" }, { "input": "changeovers", "output": "â ¡â â â ›â ‘⠕⠧⠻⠎" }, { "input": "changer", "output": "â ¡â â â ›â »" }, { "input": "changer's", "output": "â ¡â â â ›â »â „â Ž" }, { "input": "changers", "output": "â ¡â â â ›â »â Ž" }, { "input": "changes", "output": "â ¡â â â ›â ‘â Ž" }, { "input": "changing", "output": "â ¡â â â ›â Œ" }, { "input": "channel", "output": "â ¡â â â â ‘â ‡" }, { "input": "channel's", "output": "â ¡â â â â ‘⠇⠄⠎" }, { "input": "channeled", "output": "â ¡â â â â ‘⠇⠫" }, { "input": "channeling", "output": "â ¡â â â â ‘⠇⠌" }, { "input": "channelization", "output": "â ¡â â â â ‘⠇⠊⠵⠠â " }, { "input": "channelization's", "output": "â ¡â â â â ‘⠇⠊⠵⠠â â „â Ž" }, { "input": "channelize", "output": "â ¡â â â â ‘⠇⠊⠵⠑" }, { "input": "channelized", "output": "â ¡â â â â ‘⠇⠊⠵⠫" }, { "input": "channelizes", "output": "â ¡â â â â ‘⠇⠊⠵⠑⠎" }, { "input": "channelizing", "output": "â ¡â â â â ‘⠇⠊⠵⠌" }, { "input": "channels", "output": "â ¡â â â â ‘⠇⠎" }, { "input": "chanson", "output": "â ¡â â â Žâ •â " }, { "input": "chanson's", "output": "â ¡â â â Žâ •â â „â Ž" }, { "input": "chansons", "output": "â ¡â â â Žâ •â â Ž" }, { "input": "chant", "output": "â ¡â â â ž" }, { "input": "chant's", "output": "â ¡â â â žâ „â Ž" }, { "input": "chanted", "output": "â ¡â â â žâ «" }, { "input": "chanter", "output": "â ¡â â â žâ »" }, { "input": "chanter's", "output": "â ¡â â â žâ »â „â Ž" }, { "input": "chanters", "output": "â ¡â â â žâ »â Ž" }, { "input": "chanteuse", "output": "â ¡â â â žâ ‘⠥⠎⠑" }, { "input": "chanteuse's", "output": "â ¡â â â žâ ‘⠥⠎⠑⠄⠎" }, { "input": "chanteuses", "output": "â ¡â â â žâ ‘⠥⠎⠑⠎" }, { "input": "chantey", "output": "â ¡â â â žâ ‘â ½" }, { "input": "chantey's", "output": "â ¡â â â žâ ‘⠽⠄⠎" }, { "input": "chanteys", "output": "â ¡â â â žâ ‘⠽⠎" }, { "input": "chanticleer", "output": "â ¡â â â žâ Šâ ‰â ‡â ‘â »" }, { "input": "chanticleer's", "output": "â ¡â â â žâ Šâ ‰â ‡â ‘⠻⠄⠎" }, { "input": "chanticleers", "output": "â ¡â â â žâ Šâ ‰â ‡â ‘⠻⠎" }, { "input": "chanting", "output": "â ¡â â â žâ Œ" }, { "input": "chants", "output": "â ¡â â â žâ Ž" }, { "input": "chaos", "output": "â ¡â â •â Ž" }, { "input": "chaos's", "output": "â ¡â â •â Žâ „â Ž" }, { "input": "chaotic", "output": "â ¡â â •â žâ Šâ ‰" }, { "input": "chaotically", "output": "â ¡â â •⠞⠊⠉⠠⠽" }, { "input": "chap", "output": "â ¡â â " }, { "input": "chap's", "output": "â ¡â â â „â Ž" }, { "input": "chaparral", "output": "â ¡â â â œâ —â â ‡" }, { "input": "chaparral's", "output": "â ¡â â â œâ —â â ‡â „â Ž" }, { "input": "chaparrals", "output": "â ¡â â â œâ —â â ‡â Ž" }, { "input": "chapbook", "output": "â ¡â â â ƒâ •â •â …" }, { "input": "chapbook's", "output": "â ¡â â â ƒâ •â •â …â „â Ž" }, { "input": "chapbooks", "output": "â ¡â â â ƒâ •â •â …â Ž" }, { "input": "chapeau", "output": "â ¡â â â ‚â ¥" }, { "input": "chapeau's", "output": "â ¡â â â ‚⠥⠄⠎" }, { "input": "chapeaus", "output": "â ¡â â â ‚⠥⠎" }, { "input": "chapel", "output": "â ¡â â â ‘â ‡" }, { "input": "chapel's", "output": "â ¡â â â ‘⠇⠄⠎" }, { "input": "chapels", "output": "â ¡â â â ‘⠇⠎" }, { "input": "chaperon", "output": "â ¡â â â »â •â " }, { "input": "chaperon's", "output": "â ¡â â â »â •â â „â Ž" }, { "input": "chaperonage", "output": "â ¡â â â »â •â â â ›â ‘" }, { "input": "chaperonage's", "output": "â ¡â â â »â •â â â ›â ‘â „â Ž" }, { "input": "chaperoned", "output": "â ¡â â â »â •â â «" }, { "input": "chaperoning", "output": "â ¡â â â »â •â â Œ" }, { "input": "chaperons", "output": "â ¡â â â »â •â â Ž" }, { "input": "chaplain", "output": "â ¡â â â ‡â â ”" }, { "input": "chaplain's", "output": "â ¡â â â ‡â â ”â „â Ž" }, { "input": "chaplaincies", "output": "â ¡â â â ‡â â ”⠉⠊⠑⠎" }, { "input": "chaplaincy", "output": "â ¡â â â ‡â â ”⠉⠽" }, { "input": "chaplaincy's", "output": "â ¡â â â ‡â â ”⠉⠽⠄⠎" }, { "input": "chaplains", "output": "â ¡â â â ‡â â ”â Ž" }, { "input": "chaplet", "output": "â ¡â â â ‡â ‘â ž" }, { "input": "chaplet's", "output": "â ¡â â â ‡â ‘â žâ „â Ž" }, { "input": "chaplets", "output": "â ¡â â â ‡â ‘â žâ Ž" }, { "input": "chapped", "output": "â ¡â â â â «" }, { "input": "chapping", "output": "â ¡â â â â Œ" }, { "input": "chaps", "output": "â ¡â â â Ž" }, { "input": "chapter", "output": "â ¡â â â žâ »" }, { "input": "chapter's", "output": "â ¡â â â žâ »â „â Ž" }, { "input": "chapters", "output": "â ¡â â â žâ »â Ž" }, { "input": "char", "output": "â ¡â œ" }, { "input": "char's", "output": "⠡⠜⠄⠎" }, { "input": "character", "output": "â â ¡" }, { "input": "character's", "output": "â â ¡â „â Ž" }, { "input": "characteristic", "output": "â â ¡â Šâ Œâ Šâ ‰" }, { "input": "characteristic's", "output": "â â ¡â Šâ Œâ Šâ ‰â „â Ž" }, { "input": "characteristically", "output": "â â ¡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "characteristics", "output": "â â ¡â Šâ Œâ Šâ ‰â Ž" }, { "input": "characterization", "output": "â â ¡â Šâ µâ  â " }, { "input": "characterization's", "output": "â â ¡â Šâ µâ  â â „â Ž" }, { "input": "characterizations", "output": "â â ¡â Šâ µâ  â â Ž" }, { "input": "characterize", "output": "â â ¡â Šâ µâ ‘" }, { "input": "characterized", "output": "â â ¡â Šâ µâ «" }, { "input": "characterizes", "output": "â â ¡â Šâ µâ ‘â Ž" }, { "input": "characterizing", "output": "â â ¡â Šâ µâ Œ" }, { "input": "characters", "output": "â â ¡â Ž" }, { "input": "charade", "output": "â ¡â œâ â ™â ‘" }, { "input": "charade's", "output": "â ¡â œâ â ™â ‘â „â Ž" }, { "input": "charades", "output": "â ¡â œâ â ™â ‘â Ž" }, { "input": "charbroil", "output": "⠡⠜⠃⠗⠕⠊⠇" }, { "input": "charbroiled", "output": "⠡⠜⠃⠗⠕⠊⠇⠫" }, { "input": "charbroiling", "output": "⠡⠜⠃⠗⠕⠊⠇⠌" }, { "input": "charbroils", "output": "⠡⠜⠃⠗⠕⠊⠇⠎" }, { "input": "charcoal", "output": "⠡⠜⠉⠕â â ‡" }, { "input": "charcoal's", "output": "⠡⠜⠉⠕â â ‡â „â Ž" }, { "input": "charcoals", "output": "⠡⠜⠉⠕â â ‡â Ž" }, { "input": "chard's", "output": "⠡⠜⠙⠄⠎" }, { "input": "chardonnay", "output": "⠡⠜⠙⠕â â â â ½" }, { "input": "chardonnay's", "output": "⠡⠜⠙⠕â â â â ½â „â Ž" }, { "input": "chardonnays", "output": "⠡⠜⠙⠕â â â â ½â Ž" }, { "input": "charge", "output": "⠡⠜⠛⠑" }, { "input": "charge's", "output": "⠡⠜⠛⠑⠄⠎" }, { "input": "chargeable", "output": "⠡⠜⠛⠑â â ¼" }, { "input": "charged", "output": "⠡⠜⠛⠫" }, { "input": "charger", "output": "⠡⠜⠛⠻" }, { "input": "charger's", "output": "⠡⠜⠛⠻⠄⠎" }, { "input": "chargers", "output": "⠡⠜⠛⠻⠎" }, { "input": "charges", "output": "⠡⠜⠛⠑⠎" }, { "input": "charging", "output": "⠡⠜⠛⠌" }, { "input": "charier", "output": "⠡⠜⠊⠻" }, { "input": "chariest", "output": "⠡⠜⠊⠑⠌" }, { "input": "charily", "output": "⠡⠜⠊⠇⠽" }, { "input": "chariness", "output": "⠡⠜⠊⠰⠎" }, { "input": "chariness's", "output": "⠡⠜⠊⠰⠎⠄⠎" }, { "input": "chariot", "output": "⠡⠜⠊⠕⠞" }, { "input": "chariot's", "output": "⠡⠜⠊⠕⠞⠄⠎" }, { "input": "charioteer", "output": "⠡⠜⠊⠕⠞⠑⠻" }, { "input": "charioteer's", "output": "⠡⠜⠊⠕⠞⠑⠻⠄⠎" }, { "input": "charioteers", "output": "⠡⠜⠊⠕⠞⠑⠻⠎" }, { "input": "chariots", "output": "⠡⠜⠊⠕⠞⠎" }, { "input": "charisma", "output": "⠡⠜⠊⠎â â " }, { "input": "charisma's", "output": "⠡⠜⠊⠎â â â „â Ž" }, { "input": "charismatic", "output": "⠡⠜⠊⠎â â â žâ Šâ ‰" }, { "input": "charismatic's", "output": "⠡⠜⠊⠎â â â žâ Šâ ‰â „â Ž" }, { "input": "charismatics", "output": "⠡⠜⠊⠎â â â žâ Šâ ‰â Ž" }, { "input": "charitable", "output": "⠡⠜⠊⠞â â ¼" }, { "input": "charitableness", "output": "⠡⠜⠊⠞â â ¼â °â Ž" }, { "input": "charitableness's", "output": "⠡⠜⠊⠞â â ¼â °â Žâ „â Ž" }, { "input": "charitably", "output": "⠡⠜⠊⠞â â ƒâ ‡â ½" }, { "input": "charities", "output": "⠡⠜⠊⠞⠊⠑⠎" }, { "input": "charity", "output": "⠡⠜⠰⠽" }, { "input": "charity's", "output": "⠡⠜⠰⠽⠄⠎" }, { "input": "charlatan", "output": "⠡⠜⠇â â žâ â " }, { "input": "charlatan's", "output": "⠡⠜⠇â â žâ â â „â Ž" }, { "input": "charlatanism", "output": "⠡⠜⠇â â žâ â â Šâ Žâ " }, { "input": "charlatanism's", "output": "⠡⠜⠇â â žâ â â Šâ Žâ â „â Ž" }, { "input": "charlatanry", "output": "⠡⠜⠇â â žâ â â —â ½" }, { "input": "charlatanry's", "output": "⠡⠜⠇â â žâ â â —⠽⠄⠎" }, { "input": "charlatans", "output": "⠡⠜⠇â â žâ â â Ž" }, { "input": "charm", "output": "â ¡â œâ " }, { "input": "charm's", "output": "â ¡â œâ â „â Ž" }, { "input": "charmed", "output": "â ¡â œâ â «" }, { "input": "charmer", "output": "â ¡â œâ â »" }, { "input": "charmer's", "output": "â ¡â œâ â »â „â Ž" }, { "input": "charmers", "output": "â ¡â œâ â »â Ž" }, { "input": "charming", "output": "â ¡â œâ â Œ" }, { "input": "charmingly", "output": "â ¡â œâ â Œâ ‡â ½" }, { "input": "charms", "output": "â ¡â œâ â Ž" }, { "input": "charred", "output": "⠡⠜⠗⠫" }, { "input": "charring", "output": "⠡⠜⠗⠌" }, { "input": "chars", "output": "⠡⠜⠎" }, { "input": "chart", "output": "⠡⠜⠞" }, { "input": "chart's", "output": "⠡⠜⠞⠄⠎" }, { "input": "charted", "output": "⠡⠜⠞⠫" }, { "input": "charter", "output": "⠡⠜⠞⠻" }, { "input": "charter's", "output": "⠡⠜⠞⠻⠄⠎" }, { "input": "chartered", "output": "⠡⠜⠞⠻⠫" }, { "input": "charterer", "output": "⠡⠜⠞⠻⠻" }, { "input": "charterer's", "output": "⠡⠜⠞⠻⠻⠄⠎" }, { "input": "charterers", "output": "⠡⠜⠞⠻⠻⠎" }, { "input": "chartering", "output": "⠡⠜⠞⠻⠌" }, { "input": "charters", "output": "⠡⠜⠞⠻⠎" }, { "input": "charting", "output": "⠡⠜⠞⠌" }, { "input": "chartreuse", "output": "⠡⠜⠞⠗⠑⠥⠎⠑" }, { "input": "chartreuse's", "output": "⠡⠜⠞⠗⠑⠥⠎⠑⠄⠎" }, { "input": "charts", "output": "⠡⠜⠞⠎" }, { "input": "charwoman", "output": "⠡⠜⠺⠕â â â " }, { "input": "charwoman's", "output": "⠡⠜⠺⠕â â â â „â Ž" }, { "input": "charwomen", "output": "⠡⠜⠺⠕â â ¢" }, { "input": "chary", "output": "⠡⠜⠽" }, { "input": "chase", "output": "â ¡â â Žâ ‘" }, { "input": "chase's", "output": "â ¡â â Žâ ‘â „â Ž" }, { "input": "chased", "output": "â ¡â â Žâ «" }, { "input": "chaser", "output": "â ¡â â Žâ »" }, { "input": "chaser's", "output": "â ¡â â Žâ »â „â Ž" }, { "input": "chasers", "output": "â ¡â â Žâ »â Ž" }, { "input": "chases", "output": "â ¡â â Žâ ‘â Ž" }, { "input": "chasing", "output": "â ¡â â Žâ Œ" }, { "input": "chasm", "output": "â ¡â â Žâ " }, { "input": "chasm's", "output": "â ¡â â Žâ â „â Ž" }, { "input": "chasms", "output": "â ¡â â Žâ â Ž" }, { "input": "chassis", "output": "â ¡â â Žâ Žâ Šâ Ž" }, { "input": "chassis's", "output": "â ¡â â Žâ Žâ Šâ Žâ „â Ž" }, { "input": "chaste", "output": "â ¡â â Œâ ‘" }, { "input": "chastely", "output": "â ¡â â Œâ ‘⠇⠽" }, { "input": "chasten", "output": "â ¡â â Œâ ¢" }, { "input": "chastened", "output": "â ¡â â Œâ ¢â «" }, { "input": "chasteness", "output": "â ¡â â Œâ ‘â °â Ž" }, { "input": "chasteness's", "output": "â ¡â â Œâ ‘â °â Žâ „â Ž" }, { "input": "chastening", "output": "â ¡â â Œâ ¢â Œ" }, { "input": "chastens", "output": "â ¡â â Œâ ¢â Ž" }, { "input": "chaster", "output": "â ¡â â Œâ »" }, { "input": "chastest", "output": "â ¡â â Œâ ‘â Œ" }, { "input": "chastise", "output": "â ¡â â Œâ Šâ Žâ ‘" }, { "input": "chastised", "output": "â ¡â â Œâ Šâ Žâ «" }, { "input": "chastisement", "output": "â ¡â â Œâ Šâ Žâ ‘â °â ž" }, { "input": "chastisement's", "output": "â ¡â â Œâ Šâ Žâ ‘â °â žâ „â Ž" }, { "input": "chastisements", "output": "â ¡â â Œâ Šâ Žâ ‘â °â žâ Ž" }, { "input": "chastiser", "output": "â ¡â â Œâ Šâ Žâ »" }, { "input": "chastiser's", "output": "â ¡â â Œâ Šâ Žâ »â „â Ž" }, { "input": "chastisers", "output": "â ¡â â Œâ Šâ Žâ »â Ž" }, { "input": "chastises", "output": "â ¡â â Œâ Šâ Žâ ‘â Ž" }, { "input": "chastising", "output": "â ¡â â Œâ Šâ Žâ Œ" }, { "input": "chastity", "output": "â ¡â â Œâ °â ½" }, { "input": "chastity's", "output": "â ¡â â Œâ °â ½â „â Ž" }, { "input": "chasuble", "output": "â ¡â â Žâ ¥â ¼" }, { "input": "chasuble's", "output": "â ¡â â Žâ ¥â ¼â „â Ž" }, { "input": "chasubles", "output": "â ¡â â Žâ ¥â ¼â Ž" }, { "input": "chat", "output": "â ¡â â ž" }, { "input": "chat's", "output": "â ¡â â žâ „â Ž" }, { "input": "chateaus", "output": "â ¡â â žâ ‚⠥⠎" }, { "input": "chats", "output": "â ¡â â žâ Ž" }, { "input": "chatted", "output": "â ¡â â žâ žâ «" }, { "input": "chattel", "output": "â ¡â â žâ žâ ‘â ‡" }, { "input": "chattel's", "output": "â ¡â â žâ žâ ‘⠇⠄⠎" }, { "input": "chattels", "output": "â ¡â â žâ žâ ‘⠇⠎" }, { "input": "chatter", "output": "â ¡â â žâ žâ »" }, { "input": "chatter's", "output": "â ¡â â žâ žâ »â „â Ž" }, { "input": "chatterbox", "output": "â ¡â â žâ žâ »â ƒâ •â ­" }, { "input": "chatterbox's", "output": "â ¡â â žâ žâ »â ƒâ •â ­â „â Ž" }, { "input": "chatterboxes", "output": "â ¡â â žâ žâ »â ƒâ •â ­â ‘â Ž" }, { "input": "chattered", "output": "â ¡â â žâ žâ »â «" }, { "input": "chatterer", "output": "â ¡â â žâ žâ »â »" }, { "input": "chatterer's", "output": "â ¡â â žâ žâ »â »â „â Ž" }, { "input": "chatterers", "output": "â ¡â â žâ žâ »â »â Ž" }, { "input": "chattering", "output": "â ¡â â žâ žâ »â Œ" }, { "input": "chatters", "output": "â ¡â â žâ žâ »â Ž" }, { "input": "chattier", "output": "â ¡â â žâ žâ Šâ »" }, { "input": "chattiest", "output": "â ¡â â žâ žâ Šâ ‘â Œ" }, { "input": "chattily", "output": "â ¡â â žâ žâ Šâ ‡â ½" }, { "input": "chattiness", "output": "â ¡â â žâ žâ Šâ °â Ž" }, { "input": "chattiness's", "output": "â ¡â â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "chatting", "output": "â ¡â â žâ žâ Œ" }, { "input": "chatty", "output": "â ¡â â žâ žâ ½" }, { "input": "chauffeur", "output": "â ¡â â ¥â –⠑⠥⠗" }, { "input": "chauffeur's", "output": "â ¡â â ¥â –⠑⠥⠗⠄⠎" }, { "input": "chauffeured", "output": "â ¡â â ¥â –⠑⠥⠗⠫" }, { "input": "chauffeuring", "output": "â ¡â â ¥â –⠑⠥⠗⠌" }, { "input": "chauffeurs", "output": "â ¡â â ¥â –⠑⠥⠗⠎" }, { "input": "chauvinism", "output": "â ¡â â ¥â §â ”â Šâ Žâ " }, { "input": "chauvinism's", "output": "â ¡â â ¥â §â ”â Šâ Žâ â „â Ž" }, { "input": "chauvinist", "output": "â ¡â â ¥â §â ”â Šâ Œ" }, { "input": "chauvinist's", "output": "â ¡â â ¥â §â ”⠊⠌⠄⠎" }, { "input": "chauvinistic", "output": "â ¡â â ¥â §â ”⠊⠌⠊⠉" }, { "input": "chauvinists", "output": "â ¡â â ¥â §â ”⠊⠌⠎" }, { "input": "cheap", "output": "â ¡â ‚â " }, { "input": "cheapen", "output": "â ¡â ‚â â ¢" }, { "input": "cheapened", "output": "â ¡â ‚â â ¢â «" }, { "input": "cheapening", "output": "â ¡â ‚â â ¢â Œ" }, { "input": "cheapens", "output": "â ¡â ‚â â ¢â Ž" }, { "input": "cheaper", "output": "â ¡â ‚â â »" }, { "input": "cheapest", "output": "â ¡â ‚â â ‘â Œ" }, { "input": "cheaply", "output": "â ¡â ‚â â ‡â ½" }, { "input": "cheapness", "output": "â ¡â ‚â â °â Ž" }, { "input": "cheapness's", "output": "â ¡â ‚â â °â Žâ „â Ž" }, { "input": "cheapskate", "output": "â ¡â ‚â â Žâ …â â žâ ‘" }, { "input": "cheapskate's", "output": "â ¡â ‚â â Žâ …â â žâ ‘â „â Ž" }, { "input": "cheapskates", "output": "â ¡â ‚â â Žâ …â â žâ ‘â Ž" }, { "input": "cheat", "output": "â ¡â ‚â ž" }, { "input": "cheat's", "output": "â ¡â ‚â žâ „â Ž" }, { "input": "cheated", "output": "â ¡â ‚â žâ «" }, { "input": "cheater", "output": "â ¡â ‚â žâ »" }, { "input": "cheater's", "output": "⠡⠂⠞⠻⠄⠎" }, { "input": "cheaters", "output": "⠡⠂⠞⠻⠎" }, { "input": "cheating", "output": "â ¡â ‚â žâ Œ" }, { "input": "cheats", "output": "â ¡â ‚â žâ Ž" }, { "input": "check", "output": "⠡⠑⠉⠅" }, { "input": "check's", "output": "⠡⠑⠉⠅⠄⠎" }, { "input": "checkbook", "output": "⠡⠑⠉⠅⠃⠕⠕⠅" }, { "input": "checkbook's", "output": "⠡⠑⠉⠅⠃⠕⠕⠅⠄⠎" }, { "input": "checkbooks", "output": "⠡⠑⠉⠅⠃⠕⠕⠅⠎" }, { "input": "checked", "output": "⠡⠑⠉⠅⠫" }, { "input": "checker", "output": "⠡⠑⠉⠅⠻" }, { "input": "checker's", "output": "⠡⠑⠉⠅⠻⠄⠎" }, { "input": "checkerboard", "output": "⠡⠑⠉⠅⠻⠃⠕⠜⠙" }, { "input": "checkerboard's", "output": "⠡⠑⠉⠅⠻⠃⠕⠜⠙⠄⠎" }, { "input": "checkerboards", "output": "⠡⠑⠉⠅⠻⠃⠕⠜⠙⠎" }, { "input": "checkered", "output": "⠡⠑⠉⠅⠻⠫" }, { "input": "checkering", "output": "⠡⠑⠉⠅⠻⠌" }, { "input": "checkers", "output": "⠡⠑⠉⠅⠻⠎" }, { "input": "checkers's", "output": "⠡⠑⠉⠅⠻⠎⠄⠎" }, { "input": "checking", "output": "⠡⠑⠉⠅⠌" }, { "input": "checklist", "output": "⠡⠑⠉⠅⠇⠊⠌" }, { "input": "checklist's", "output": "⠡⠑⠉⠅⠇⠊⠌⠄⠎" }, { "input": "checklists", "output": "⠡⠑⠉⠅⠇⠊⠌⠎" }, { "input": "checkmate", "output": "⠡⠑⠉⠅â â â žâ ‘" }, { "input": "checkmate's", "output": "⠡⠑⠉⠅â â â žâ ‘â „â Ž" }, { "input": "checkmated", "output": "⠡⠑⠉⠅â â â žâ «" }, { "input": "checkmates", "output": "⠡⠑⠉⠅â â â žâ ‘â Ž" }, { "input": "checkmating", "output": "⠡⠑⠉⠅â â â žâ Œ" }, { "input": "checkoff", "output": "⠡⠑⠉⠅⠷⠋" }, { "input": "checkoff's", "output": "⠡⠑⠉⠅⠷⠋⠄⠎" }, { "input": "checkoffs", "output": "⠡⠑⠉⠅⠷⠋⠎" }, { "input": "checkout", "output": "⠡⠑⠉⠅⠳⠞" }, { "input": "checkout's", "output": "⠡⠑⠉⠅⠳⠞⠄⠎" }, { "input": "checkouts", "output": "⠡⠑⠉⠅⠳⠞⠎" }, { "input": "checkpoint", "output": "⠡⠑⠉⠅â â •⠔⠞" }, { "input": "checkpoint's", "output": "⠡⠑⠉⠅â â •⠔⠞⠄⠎" }, { "input": "checkpoints", "output": "⠡⠑⠉⠅â â •⠔⠞⠎" }, { "input": "checkroom", "output": "⠡⠑⠉⠅⠗⠕⠕â " }, { "input": "checkroom's", "output": "⠡⠑⠉⠅⠗⠕⠕â â „â Ž" }, { "input": "checkrooms", "output": "⠡⠑⠉⠅⠗⠕⠕â â Ž" }, { "input": "checks", "output": "⠡⠑⠉⠅⠎" }, { "input": "checkup", "output": "⠡⠑⠉⠅⠥â " }, { "input": "checkup's", "output": "⠡⠑⠉⠅⠥â â „â Ž" }, { "input": "checkups", "output": "⠡⠑⠉⠅⠥â â Ž" }, { "input": "cheddar", "output": "⠡⠫⠙⠜" }, { "input": "cheddar's", "output": "⠡⠫⠙⠜⠄⠎" }, { "input": "cheek", "output": "â ¡â ‘â ‘â …" }, { "input": "cheek's", "output": "â ¡â ‘â ‘â …â „â Ž" }, { "input": "cheekbone", "output": "â ¡â ‘â ‘â …â ƒâ â •" }, { "input": "cheekbone's", "output": "â ¡â ‘â ‘â …â ƒâ â •â „â Ž" }, { "input": "cheekbones", "output": "â ¡â ‘â ‘â …â ƒâ â •â Ž" }, { "input": "cheeked", "output": "â ¡â ‘â ‘â …â «" }, { "input": "cheekier", "output": "â ¡â ‘â ‘â …â Šâ »" }, { "input": "cheekiest", "output": "â ¡â ‘â ‘â …â Šâ ‘â Œ" }, { "input": "cheekily", "output": "⠡⠑⠑⠅⠊⠇⠽" }, { "input": "cheekiness", "output": "â ¡â ‘â ‘â …â Šâ °â Ž" }, { "input": "cheekiness's", "output": "â ¡â ‘â ‘â …â Šâ °â Žâ „â Ž" }, { "input": "cheeking", "output": "â ¡â ‘â ‘â …â Œ" }, { "input": "cheeks", "output": "â ¡â ‘â ‘â …â Ž" }, { "input": "cheeky", "output": "â ¡â ‘â ‘â …â ½" }, { "input": "cheep", "output": "â ¡â ‘â ‘â " }, { "input": "cheep's", "output": "â ¡â ‘â ‘â â „â Ž" }, { "input": "cheeped", "output": "â ¡â ‘â ‘â â «" }, { "input": "cheeping", "output": "â ¡â ‘â ‘â â Œ" }, { "input": "cheeps", "output": "â ¡â ‘â ‘â â Ž" }, { "input": "cheer", "output": "â ¡â ‘â »" }, { "input": "cheer's", "output": "⠡⠑⠻⠄⠎" }, { "input": "cheered", "output": "⠡⠑⠻⠫" }, { "input": "cheerer", "output": "⠡⠑⠻⠻" }, { "input": "cheerer's", "output": "⠡⠑⠻⠻⠄⠎" }, { "input": "cheerers", "output": "⠡⠑⠻⠻⠎" }, { "input": "cheerful", "output": "⠡⠑⠻⠰⠇" }, { "input": "cheerfuller", "output": "⠡⠑⠻⠰⠇⠇⠻" }, { "input": "cheerfullest", "output": "⠡⠑⠻⠰⠇⠇⠑⠌" }, { "input": "cheerfully", "output": "⠡⠑⠻⠰⠇⠇⠽" }, { "input": "cheerfulness", "output": "⠡⠑⠻⠰⠇⠰⠎" }, { "input": "cheerfulness's", "output": "⠡⠑⠻⠰⠇⠰⠎⠄⠎" }, { "input": "cheerier", "output": "⠡⠑⠻⠊⠻" }, { "input": "cheeriest", "output": "⠡⠑⠻⠊⠑⠌" }, { "input": "cheerily", "output": "⠡⠑⠻⠊⠇⠽" }, { "input": "cheeriness", "output": "⠡⠑⠻⠊⠰⠎" }, { "input": "cheeriness's", "output": "⠡⠑⠻⠊⠰⠎⠄⠎" }, { "input": "cheering", "output": "⠡⠑⠻⠌" }, { "input": "cheerio's", "output": "⠡⠑⠻⠊⠕⠄⠎" }, { "input": "cheerios", "output": "⠡⠑⠻⠊⠕⠎" }, { "input": "cheerleader", "output": "⠡⠑⠻⠇⠂⠙⠻" }, { "input": "cheerleader's", "output": "⠡⠑⠻⠇⠂⠙⠻⠄⠎" }, { "input": "cheerleaders", "output": "⠡⠑⠻⠇⠂⠙⠻⠎" }, { "input": "cheerless", "output": "⠡⠑⠻⠨⠎" }, { "input": "cheerlessly", "output": "⠡⠑⠻⠨⠎⠇⠽" }, { "input": "cheerlessness", "output": "⠡⠑⠻⠨⠎⠰⠎" }, { "input": "cheerlessness's", "output": "⠡⠑⠻⠨⠎⠰⠎⠄⠎" }, { "input": "cheers", "output": "⠡⠑⠻⠎" }, { "input": "cheery", "output": "⠡⠑⠻⠽" }, { "input": "cheese", "output": "â ¡â ‘â ‘â Žâ ‘" }, { "input": "cheese's", "output": "â ¡â ‘â ‘â Žâ ‘â „â Ž" }, { "input": "cheeseburger", "output": "⠡⠑⠑⠎⠑⠃⠥⠗⠛⠻" }, { "input": "cheeseburger's", "output": "⠡⠑⠑⠎⠑⠃⠥⠗⠛⠻⠄⠎" }, { "input": "cheeseburgers", "output": "⠡⠑⠑⠎⠑⠃⠥⠗⠛⠻⠎" }, { "input": "cheesecake", "output": "â ¡â ‘â ‘â Žâ ‘â ‰â â …â ‘" }, { "input": "cheesecake's", "output": "â ¡â ‘â ‘â Žâ ‘â ‰â â …â ‘â „â Ž" }, { "input": "cheesecakes", "output": "â ¡â ‘â ‘â Žâ ‘â ‰â â …â ‘â Ž" }, { "input": "cheesecloth", "output": "⠡⠑⠑⠎⠑⠉⠇⠕⠹" }, { "input": "cheesecloth's", "output": "⠡⠑⠑⠎⠑⠉⠇⠕⠹⠄⠎" }, { "input": "cheesed", "output": "â ¡â ‘â ‘â Žâ «" }, { "input": "cheeseparing's", "output": "â ¡â ‘â ‘â Žâ ‘â â œâ Œâ „â Ž" }, { "input": "cheeses", "output": "â ¡â ‘â ‘â Žâ ‘â Ž" }, { "input": "cheesier", "output": "â ¡â ‘â ‘â Žâ Šâ »" }, { "input": "cheesiest", "output": "â ¡â ‘â ‘â Žâ Šâ ‘â Œ" }, { "input": "cheesiness", "output": "â ¡â ‘â ‘â Žâ Šâ °â Ž" }, { "input": "cheesiness's", "output": "â ¡â ‘â ‘â Žâ Šâ °â Žâ „â Ž" }, { "input": "cheesing", "output": "â ¡â ‘â ‘â Žâ Œ" }, { "input": "cheesy", "output": "â ¡â ‘â ‘â Žâ ½" }, { "input": "cheetah", "output": "â ¡â ‘â ‘â žâ â “" }, { "input": "cheetah's", "output": "â ¡â ‘â ‘â žâ â “â „â Ž" }, { "input": "cheetahs", "output": "â ¡â ‘â ‘â žâ â “â Ž" }, { "input": "chef", "output": "â ¡â ‘â ‹" }, { "input": "chef's", "output": "â ¡â ‘â ‹â „â Ž" }, { "input": "chefs", "output": "â ¡â ‘â ‹â Ž" }, { "input": "chemical", "output": "â ¡â ‘â â Šâ ‰â â ‡" }, { "input": "chemical's", "output": "â ¡â ‘â â Šâ ‰â â ‡â „â Ž" }, { "input": "chemically", "output": "â ¡â ‘â â Šâ ‰â  â ½" }, { "input": "chemicals", "output": "â ¡â ‘â â Šâ ‰â â ‡â Ž" }, { "input": "chemise", "output": "â ¡â ‘â â Šâ Žâ ‘" }, { "input": "chemise's", "output": "â ¡â ‘â â Šâ Žâ ‘â „â Ž" }, { "input": "chemises", "output": "â ¡â ‘â â Šâ Žâ ‘â Ž" }, { "input": "chemist", "output": "â ¡â ‘â â Šâ Œ" }, { "input": "chemist's", "output": "â ¡â ‘â â Šâ Œâ „â Ž" }, { "input": "chemistry", "output": "â ¡â ‘â â Šâ Œâ —â ½" }, { "input": "chemistry's", "output": "â ¡â ‘â â Šâ Œâ —⠽⠄⠎" }, { "input": "chemists", "output": "â ¡â ‘â â Šâ Œâ Ž" }, { "input": "chemo", "output": "â ¡â ‘â â •" }, { "input": "chemo's", "output": "â ¡â ‘â â •â „â Ž" }, { "input": "chemotherapeutic", "output": "â ¡â ‘â â •⠮⠗â â â ‘⠥⠞⠊⠉" }, { "input": "chemotherapy", "output": "â ¡â ‘â â •⠮⠗â â â ½" }, { "input": "chemotherapy's", "output": "â ¡â ‘â â •⠮⠗â â â ½â „â Ž" }, { "input": "chemurgy", "output": "â ¡â ‘â â ¥â —⠛⠽" }, { "input": "chemurgy's", "output": "â ¡â ‘â â ¥â —⠛⠽⠄⠎" }, { "input": "chenille", "output": "⠡⠢⠊⠇⠇⠑" }, { "input": "chenille's", "output": "⠡⠢⠊⠇⠇⠑⠄⠎" }, { "input": "cherish", "output": "⠡⠻⠊⠩" }, { "input": "cherished", "output": "⠡⠻⠊⠩⠫" }, { "input": "cherishes", "output": "⠡⠻⠊⠩⠑⠎" }, { "input": "cherishing", "output": "⠡⠻⠊⠩⠌" }, { "input": "cheroot", "output": "⠡⠻⠕⠕⠞" }, { "input": "cheroot's", "output": "⠡⠻⠕⠕⠞⠄⠎" }, { "input": "cheroots", "output": "⠡⠻⠕⠕⠞⠎" }, { "input": "cherries", "output": "⠡⠻⠗⠊⠑⠎" }, { "input": "cherry", "output": "⠡⠻⠗⠽" }, { "input": "cherry's", "output": "⠡⠻⠗⠽⠄⠎" }, { "input": "chert", "output": "⠡⠻⠞" }, { "input": "chert's", "output": "⠡⠻⠞⠄⠎" }, { "input": "cherub", "output": "⠡⠻⠥⠃" }, { "input": "cherub's", "output": "⠡⠻⠥⠃⠄⠎" }, { "input": "cherubic", "output": "⠡⠻⠥⠃⠊⠉" }, { "input": "cherubim", "output": "⠡⠻⠥⠃⠊â " }, { "input": "cherubs", "output": "⠡⠻⠥⠃⠎" }, { "input": "chervil", "output": "⠡⠻⠧⠊⠇" }, { "input": "chervil's", "output": "⠡⠻⠧⠊⠇⠄⠎" }, { "input": "chess", "output": "â ¡â ‘â Žâ Ž" }, { "input": "chess's", "output": "â ¡â ‘â Žâ Žâ „â Ž" }, { "input": "chessboard", "output": "⠡⠑⠎⠎⠃⠕⠜⠙" }, { "input": "chessboard's", "output": "⠡⠑⠎⠎⠃⠕⠜⠙⠄⠎" }, { "input": "chessboards", "output": "⠡⠑⠎⠎⠃⠕⠜⠙⠎" }, { "input": "chessman", "output": "â ¡â ‘â Žâ Žâ â â " }, { "input": "chessman's", "output": "â ¡â ‘â Žâ Žâ â â â „â Ž" }, { "input": "chessmen", "output": "â ¡â ‘â Žâ Žâ â ¢" }, { "input": "chest", "output": "â ¡â ‘â Œ" }, { "input": "chest's", "output": "⠡⠑⠌⠄⠎" }, { "input": "chested", "output": "⠡⠑⠌⠫" }, { "input": "chesterfield", "output": "⠡⠑⠌⠻⠋⠊⠑⠇⠙" }, { "input": "chesterfield's", "output": "⠡⠑⠌⠻⠋⠊⠑⠇⠙⠄⠎" }, { "input": "chesterfields", "output": "⠡⠑⠌⠻⠋⠊⠑⠇⠙⠎" }, { "input": "chestful", "output": "⠡⠑⠌⠰⠇" }, { "input": "chestful's", "output": "⠡⠑⠌⠰⠇⠄⠎" }, { "input": "chestfuls", "output": "⠡⠑⠌⠰⠇⠎" }, { "input": "chestier", "output": "⠡⠑⠌⠊⠻" }, { "input": "chestiest", "output": "⠡⠑⠌⠊⠑⠌" }, { "input": "chestnut", "output": "â ¡â ‘â Œâ â ¥â ž" }, { "input": "chestnut's", "output": "â ¡â ‘â Œâ â ¥â žâ „â Ž" }, { "input": "chestnuts", "output": "â ¡â ‘â Œâ â ¥â žâ Ž" }, { "input": "chests", "output": "⠡⠑⠌⠎" }, { "input": "chevalier", "output": "â ¡â ‘â §â â ‡â Šâ »" }, { "input": "chevalier's", "output": "â ¡â ‘â §â â ‡â Šâ »â „â Ž" }, { "input": "chevaliers", "output": "â ¡â ‘â §â â ‡â Šâ »â Ž" }, { "input": "cheviot", "output": "â ¡â ‘â §â Šâ •â ž" }, { "input": "cheviot's", "output": "â ¡â ‘â §â Šâ •â žâ „â Ž" }, { "input": "chevron", "output": "â ¡â ‘â §â —â •â " }, { "input": "chevron's", "output": "â ¡â ‘â §â —â •â â „â Ž" }, { "input": "chevrons", "output": "â ¡â ‘â §â —â •â â Ž" }, { "input": "chew", "output": "â ¡â ‘â º" }, { "input": "chew's", "output": "⠡⠑⠺⠄⠎" }, { "input": "chewed", "output": "⠡⠑⠺⠫" }, { "input": "chewer", "output": "⠡⠑⠺⠻" }, { "input": "chewer's", "output": "⠡⠑⠺⠻⠄⠎" }, { "input": "chewers", "output": "⠡⠑⠺⠻⠎" }, { "input": "chewier", "output": "⠡⠑⠺⠊⠻" }, { "input": "chewiest", "output": "⠡⠑⠺⠊⠑⠌" }, { "input": "chewiness", "output": "⠡⠑⠺⠊⠰⠎" }, { "input": "chewiness's", "output": "⠡⠑⠺⠊⠰⠎⠄⠎" }, { "input": "chewing", "output": "⠡⠑⠺⠌" }, { "input": "chews", "output": "⠡⠑⠺⠎" }, { "input": "chewy", "output": "⠡⠑⠺⠽" }, { "input": "chi", "output": "â ¡â Š" }, { "input": "chi's", "output": "â ¡â Šâ „â Ž" }, { "input": "chiaroscuro", "output": "⠡⠊⠜⠕⠎⠉⠥⠗⠕" }, { "input": "chiaroscuro's", "output": "⠡⠊⠜⠕⠎⠉⠥⠗⠕⠄⠎" }, { "input": "chic", "output": "â ¡â Šâ ‰" }, { "input": "chic's", "output": "⠡⠊⠉⠄⠎" }, { "input": "chicaneries", "output": "â ¡â Šâ ‰â â â »â Šâ ‘â Ž" }, { "input": "chicanery", "output": "â ¡â Šâ ‰â â â »â ½" }, { "input": "chicanery's", "output": "â ¡â Šâ ‰â â â »â ½â „â Ž" }, { "input": "chicer", "output": "⠡⠊⠉⠻" }, { "input": "chicest", "output": "⠡⠊⠉⠑⠌" }, { "input": "chichi", "output": "â ¡â Šâ ¡â Š" }, { "input": "chichi's", "output": "â ¡â Šâ ¡â Šâ „â Ž" }, { "input": "chichis", "output": "â ¡â Šâ ¡â Šâ Ž" }, { "input": "chick", "output": "⠡⠊⠉⠅" }, { "input": "chick's", "output": "⠡⠊⠉⠅⠄⠎" }, { "input": "chickadee", "output": "⠡⠊⠉⠅â â ™â ‘â ‘" }, { "input": "chickadee's", "output": "⠡⠊⠉⠅â â ™â ‘â ‘â „â Ž" }, { "input": "chickadees", "output": "⠡⠊⠉⠅â â ™â ‘â ‘â Ž" }, { "input": "chicken", "output": "⠡⠊⠉⠅⠢" }, { "input": "chicken's", "output": "⠡⠊⠉⠅⠢⠄⠎" }, { "input": "chickened", "output": "⠡⠊⠉⠅⠢⠫" }, { "input": "chickenfeed's", "output": "⠡⠊⠉⠅⠢⠋⠑⠫⠄⠎" }, { "input": "chickenhearted", "output": "⠡⠊⠉⠅⠢⠓⠑⠜⠞⠫" }, { "input": "chickening", "output": "⠡⠊⠉⠅⠢⠌" }, { "input": "chickenpox", "output": "⠡⠊⠉⠅⠢â â •â ­" }, { "input": "chickenpox's", "output": "⠡⠊⠉⠅⠢â â •â ­â „â Ž" }, { "input": "chickens", "output": "⠡⠊⠉⠅⠢⠎" }, { "input": "chickpea", "output": "⠡⠊⠉⠅â â ‘â " }, { "input": "chickpea's", "output": "⠡⠊⠉⠅â â ‘â â „â Ž" }, { "input": "chickpeas", "output": "⠡⠊⠉⠅â â ‚â Ž" }, { "input": "chicks", "output": "⠡⠊⠉⠅⠎" }, { "input": "chickweed", "output": "⠡⠊⠉⠅⠺⠑⠫" }, { "input": "chickweed's", "output": "⠡⠊⠉⠅⠺⠑⠫⠄⠎" }, { "input": "chicle", "output": "⠡⠊⠉⠇⠑" }, { "input": "chicle's", "output": "⠡⠊⠉⠇⠑⠄⠎" }, { "input": "chicness", "output": "⠡⠊⠉⠰⠎" }, { "input": "chicness's", "output": "⠡⠊⠉⠰⠎⠄⠎" }, { "input": "chicories", "output": "⠡⠊⠉⠕⠗⠊⠑⠎" }, { "input": "chicory", "output": "⠡⠊⠉⠕⠗⠽" }, { "input": "chicory's", "output": "⠡⠊⠉⠕⠗⠽⠄⠎" }, { "input": "chide", "output": "⠡⠊⠙⠑" }, { "input": "chided", "output": "⠡⠊⠙⠫" }, { "input": "chides", "output": "⠡⠊⠙⠑⠎" }, { "input": "chiding", "output": "⠡⠊⠙⠌" }, { "input": "chidingly", "output": "⠡⠊⠙⠌⠇⠽" }, { "input": "chief", "output": "â ¡â Šâ ‘â ‹" }, { "input": "chief's", "output": "â ¡â Šâ ‘â ‹â „â Ž" }, { "input": "chiefdom", "output": "⠡⠊⠑⠋⠙⠕â " }, { "input": "chiefdom's", "output": "⠡⠊⠑⠋⠙⠕â â „â Ž" }, { "input": "chiefer", "output": "â ¡â Šâ ‘â ‹â »" }, { "input": "chiefest", "output": "â ¡â Šâ ‘â ‹â ‘â Œ" }, { "input": "chiefly", "output": "⠡⠊⠑⠋⠇⠽" }, { "input": "chiefs", "output": "â ¡â Šâ ‘â ‹â Ž" }, { "input": "chieftain", "output": "â ¡â Šâ ‘â ‹â žâ â ”" }, { "input": "chieftain's", "output": "â ¡â Šâ ‘â ‹â žâ â ”â „â Ž" }, { "input": "chieftains", "output": "â ¡â Šâ ‘â ‹â žâ â ”â Ž" }, { "input": "chieftainship", "output": "â ¡â Šâ ‘â ‹â žâ â ”â ©â Šâ " }, { "input": "chieftainship's", "output": "â ¡â Šâ ‘â ‹â žâ â ”â ©â Šâ â „â Ž" }, { "input": "chieftainships", "output": "â ¡â Šâ ‘â ‹â žâ â ”â ©â Šâ â Ž" }, { "input": "chiffon", "output": "â ¡â Šâ –â •â " }, { "input": "chiffon's", "output": "â ¡â Šâ –â •â â „â Ž" }, { "input": "chiffonier", "output": "â ¡â Šâ –â •â â Šâ »" }, { "input": "chiffonier's", "output": "â ¡â Šâ –â •â â Šâ »â „â Ž" }, { "input": "chiffoniers", "output": "â ¡â Šâ –â •â â Šâ »â Ž" }, { "input": "chigger", "output": "â ¡â Šâ ¶â »" }, { "input": "chigger's", "output": "⠡⠊⠶⠻⠄⠎" }, { "input": "chiggers", "output": "⠡⠊⠶⠻⠎" }, { "input": "chignon", "output": "â ¡â Šâ ›â â •â " }, { "input": "chignon's", "output": "â ¡â Šâ ›â â •â â „â Ž" }, { "input": "chignons", "output": "â ¡â Šâ ›â â •â â Ž" }, { "input": "chilblain", "output": "⠡⠊⠇⠃⠇â â ”" }, { "input": "chilblain's", "output": "⠡⠊⠇⠃⠇â â ”â „â Ž" }, { "input": "chilblains", "output": "⠡⠊⠇⠃⠇â â ”â Ž" }, { "input": "child", "output": "â ¡" }, { "input": "child's", "output": "â ¡â „â Ž" }, { "input": "childbearing", "output": "⠡⠊⠇⠙⠃⠑⠜⠌" }, { "input": "childbearing's", "output": "⠡⠊⠇⠙⠃⠑⠜⠌⠄⠎" }, { "input": "childbirth", "output": "⠡⠊⠇⠙⠃⠊⠗⠹" }, { "input": "childbirth's", "output": "⠡⠊⠇⠙⠃⠊⠗⠹⠄⠎" }, { "input": "childbirths", "output": "⠡⠊⠇⠙⠃⠊⠗⠹⠎" }, { "input": "childcare", "output": "⠡⠊⠇⠙⠉⠜⠑" }, { "input": "childcare's", "output": "⠡⠊⠇⠙⠉⠜⠑⠄⠎" }, { "input": "childhood", "output": "⠡⠊⠇⠙⠓⠕⠕⠙" }, { "input": "childhood's", "output": "⠡⠊⠇⠙⠓⠕⠕⠙⠄⠎" }, { "input": "childhoods", "output": "⠡⠊⠇⠙⠓⠕⠕⠙⠎" }, { "input": "childish", "output": "⠡⠊⠇⠙⠊⠩" }, { "input": "childishly", "output": "⠡⠊⠇⠙⠊⠩⠇⠽" }, { "input": "childishness", "output": "⠡⠊⠇⠙⠊⠩⠰⠎" }, { "input": "childishness's", "output": "⠡⠊⠇⠙⠊⠩⠰⠎⠄⠎" }, { "input": "childless", "output": "⠡⠊⠇⠙⠨⠎" }, { "input": "childlessness", "output": "⠡⠊⠇⠙⠨⠎⠰⠎" }, { "input": "childlessness's", "output": "⠡⠊⠇⠙⠨⠎⠰⠎⠄⠎" }, { "input": "childlike", "output": "⠡⠊⠇⠙⠇⠊⠅⠑" }, { "input": "childproof", "output": "⠡⠊⠇⠙â â —â •â ·" }, { "input": "childproofed", "output": "⠡⠊⠇⠙â â —â •â ·â «" }, { "input": "childproofing", "output": "⠡⠊⠇⠙â â —â •â ·â Œ" }, { "input": "childproofs", "output": "⠡⠊⠇⠙â â —â •â ·â Ž" }, { "input": "children", "output": "â ¡â " }, { "input": "chili", "output": "⠡⠊⠇⠊" }, { "input": "chili's", "output": "⠡⠊⠇⠊⠄⠎" }, { "input": "chilies", "output": "⠡⠊⠇⠊⠑⠎" }, { "input": "chill", "output": "⠡⠊⠇⠇" }, { "input": "chill's", "output": "⠡⠊⠇⠇⠄⠎" }, { "input": "chilled", "output": "⠡⠊⠇⠇⠫" }, { "input": "chiller", "output": "⠡⠊⠇⠇⠻" }, { "input": "chiller's", "output": "⠡⠊⠇⠇⠻⠄⠎" }, { "input": "chillers", "output": "⠡⠊⠇⠇⠻⠎" }, { "input": "chillest", "output": "⠡⠊⠇⠇⠑⠌" }, { "input": "chillier", "output": "⠡⠊⠇⠇⠊⠻" }, { "input": "chilliest", "output": "⠡⠊⠇⠇⠊⠑⠌" }, { "input": "chilliness", "output": "⠡⠊⠇⠇⠊⠰⠎" }, { "input": "chilliness's", "output": "⠡⠊⠇⠇⠊⠰⠎⠄⠎" }, { "input": "chilling", "output": "⠡⠊⠇⠇⠌" }, { "input": "chillings", "output": "⠡⠊⠇⠇⠌⠎" }, { "input": "chillness", "output": "⠡⠊⠇⠇⠰⠎" }, { "input": "chillness's", "output": "⠡⠊⠇⠇⠰⠎⠄⠎" }, { "input": "chills", "output": "⠡⠊⠇⠇⠎" }, { "input": "chilly", "output": "⠡⠊⠇⠇⠽" }, { "input": "chime", "output": "â ¡â Šâ â ‘" }, { "input": "chime's", "output": "â ¡â Šâ â ‘â „â Ž" }, { "input": "chimed", "output": "â ¡â Šâ â «" }, { "input": "chimer", "output": "â ¡â Šâ â »" }, { "input": "chimer's", "output": "â ¡â Šâ â »â „â Ž" }, { "input": "chimera", "output": "â ¡â Šâ â »â " }, { "input": "chimera's", "output": "â ¡â Šâ â »â â „â Ž" }, { "input": "chimeras", "output": "â ¡â Šâ â »â â Ž" }, { "input": "chimeric", "output": "â ¡â Šâ â »â Šâ ‰" }, { "input": "chimerical", "output": "â ¡â Šâ â »â Šâ ‰â â ‡" }, { "input": "chimers", "output": "â ¡â Šâ â »â Ž" }, { "input": "chimes", "output": "â ¡â Šâ â ‘â Ž" }, { "input": "chiming", "output": "â ¡â Šâ â Œ" }, { "input": "chimney", "output": "â ¡â Šâ â â ‘â ½" }, { "input": "chimney's", "output": "â ¡â Šâ â â ‘⠽⠄⠎" }, { "input": "chimneys", "output": "â ¡â Šâ â â ‘⠽⠎" }, { "input": "chimp", "output": "â ¡â Šâ â " }, { "input": "chimp's", "output": "â ¡â Šâ â â „â Ž" }, { "input": "chimpanzee", "output": "â ¡â Šâ â â â â µâ ‘â ‘" }, { "input": "chimpanzee's", "output": "â ¡â Šâ â â â â µâ ‘â ‘â „â Ž" }, { "input": "chimpanzees", "output": "â ¡â Šâ â â â â µâ ‘â ‘â Ž" }, { "input": "chimps", "output": "â ¡â Šâ â â Ž" }, { "input": "chin", "output": "â ¡â ”" }, { "input": "chin's", "output": "⠡⠔⠄⠎" }, { "input": "china", "output": "â ¡â ”â " }, { "input": "china's", "output": "â ¡â ”â â „â Ž" }, { "input": "chinaware", "output": "â ¡â ”â â ºâ œâ ‘" }, { "input": "chinaware's", "output": "â ¡â ”â â ºâ œâ ‘â „â Ž" }, { "input": "chinchilla", "output": "⠡⠔⠡⠊⠇⠇â " }, { "input": "chinchilla's", "output": "⠡⠔⠡⠊⠇⠇â â „â Ž" }, { "input": "chinchillas", "output": "⠡⠔⠡⠊⠇⠇â â Ž" }, { "input": "chine", "output": "⠡⠔⠑" }, { "input": "chine's", "output": "⠡⠔⠑⠄⠎" }, { "input": "chines", "output": "⠡⠔⠑⠎" }, { "input": "chink", "output": "⠡⠔⠅" }, { "input": "chink's", "output": "⠡⠔⠅⠄⠎" }, { "input": "chinked", "output": "⠡⠔⠅⠫" }, { "input": "chinking", "output": "⠡⠔⠅⠌" }, { "input": "chinks", "output": "⠡⠔⠅⠎" }, { "input": "chinned", "output": "â ¡â ”â â «" }, { "input": "chinning", "output": "â ¡â ”â â Œ" }, { "input": "chino", "output": "⠡⠔⠕" }, { "input": "chino's", "output": "⠡⠔⠕⠄⠎" }, { "input": "chinos", "output": "⠡⠔⠕⠎" }, { "input": "chins", "output": "⠡⠔⠎" }, { "input": "chinstrap", "output": "⠡⠔⠌⠗â â " }, { "input": "chinstrap's", "output": "⠡⠔⠌⠗â â â „â Ž" }, { "input": "chinstraps", "output": "⠡⠔⠌⠗â â â Ž" }, { "input": "chintz", "output": "⠡⠔⠞⠵" }, { "input": "chintz's", "output": "⠡⠔⠞⠵⠄⠎" }, { "input": "chintzier", "output": "⠡⠔⠞⠵⠊⠻" }, { "input": "chintziest", "output": "⠡⠔⠞⠵⠊⠑⠌" }, { "input": "chintzy", "output": "⠡⠔⠞⠵⠽" }, { "input": "chip", "output": "â ¡â Šâ " }, { "input": "chip's", "output": "â ¡â Šâ â „â Ž" }, { "input": "chipmunk", "output": "â ¡â Šâ â â ¥â â …" }, { "input": "chipmunk's", "output": "â ¡â Šâ â â ¥â â …â „â Ž" }, { "input": "chipmunks", "output": "â ¡â Šâ â â ¥â â …â Ž" }, { "input": "chipped", "output": "â ¡â Šâ â â «" }, { "input": "chipper", "output": "â ¡â Šâ â â »" }, { "input": "chipper's", "output": "â ¡â Šâ â â »â „â Ž" }, { "input": "chippers", "output": "â ¡â Šâ â â »â Ž" }, { "input": "chipping", "output": "â ¡â Šâ â â Œ" }, { "input": "chips", "output": "â ¡â Šâ â Ž" }, { "input": "chirography", "output": "⠡⠊⠗⠕⠛⠗â â â “â ½" }, { "input": "chirography's", "output": "⠡⠊⠗⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "chiropodist", "output": "â ¡â Šâ —â •â â •⠙⠊⠌" }, { "input": "chiropodist's", "output": "â ¡â Šâ —â •â â •⠙⠊⠌⠄⠎" }, { "input": "chiropodists", "output": "â ¡â Šâ —â •â â •⠙⠊⠌⠎" }, { "input": "chiropody", "output": "â ¡â Šâ —â •â â •⠙⠽" }, { "input": "chiropody's", "output": "â ¡â Šâ —â •â â •⠙⠽⠄⠎" }, { "input": "chiropractic", "output": "â ¡â Šâ —â •â â —â â ‰â žâ Šâ ‰" }, { "input": "chiropractic's", "output": "â ¡â Šâ —â •â â —â â ‰â žâ Šâ ‰â „â Ž" }, { "input": "chiropractics", "output": "â ¡â Šâ —â •â â —â â ‰â žâ Šâ ‰â Ž" }, { "input": "chiropractor", "output": "â ¡â Šâ —â •â â —â â ‰â žâ •â —" }, { "input": "chiropractor's", "output": "â ¡â Šâ —â •â â —â â ‰â žâ •â —â „â Ž" }, { "input": "chiropractors", "output": "â ¡â Šâ —â •â â —â â ‰â žâ •â —â Ž" }, { "input": "chirp", "output": "â ¡â Šâ —â " }, { "input": "chirp's", "output": "â ¡â Šâ —â â „â Ž" }, { "input": "chirped", "output": "â ¡â Šâ —â â «" }, { "input": "chirping", "output": "â ¡â Šâ —â â Œ" }, { "input": "chirps", "output": "â ¡â Šâ —â â Ž" }, { "input": "chirrup", "output": "â ¡â Šâ —â —â ¥â " }, { "input": "chirrup's", "output": "â ¡â Šâ —â —â ¥â â „â Ž" }, { "input": "chirruped", "output": "â ¡â Šâ —â —â ¥â â «" }, { "input": "chirruping", "output": "â ¡â Šâ —â —â ¥â â Œ" }, { "input": "chirrups", "output": "â ¡â Šâ —â —â ¥â â Ž" }, { "input": "chis", "output": "â ¡â Šâ Ž" }, { "input": "chisel", "output": "â ¡â Šâ Žâ ‘â ‡" }, { "input": "chisel's", "output": "⠡⠊⠎⠑⠇⠄⠎" }, { "input": "chiseled", "output": "⠡⠊⠎⠑⠇⠫" }, { "input": "chiseler", "output": "⠡⠊⠎⠑⠇⠻" }, { "input": "chiseler's", "output": "⠡⠊⠎⠑⠇⠻⠄⠎" }, { "input": "chiselers", "output": "⠡⠊⠎⠑⠇⠻⠎" }, { "input": "chiseling", "output": "⠡⠊⠎⠑⠇⠌" }, { "input": "chisels", "output": "⠡⠊⠎⠑⠇⠎" }, { "input": "chit", "output": "â ¡â Šâ ž" }, { "input": "chit's", "output": "â ¡â Šâ žâ „â Ž" }, { "input": "chitchat", "output": "â ¡â Šâ žâ ¡â â ž" }, { "input": "chitchat's", "output": "â ¡â Šâ žâ ¡â â žâ „â Ž" }, { "input": "chitchats", "output": "â ¡â Šâ žâ ¡â â žâ Ž" }, { "input": "chitchatted", "output": "â ¡â Šâ žâ ¡â â žâ žâ «" }, { "input": "chitchatting", "output": "â ¡â Šâ žâ ¡â â žâ žâ Œ" }, { "input": "chitin", "output": "â ¡â Šâ žâ ”" }, { "input": "chitin's", "output": "⠡⠊⠞⠔⠄⠎" }, { "input": "chitinous", "output": "⠡⠊⠞⠔⠳⠎" }, { "input": "chits", "output": "â ¡â Šâ žâ Ž" }, { "input": "chitterlings", "output": "⠡⠊⠞⠞⠻⠇⠌⠎" }, { "input": "chitterlings's", "output": "⠡⠊⠞⠞⠻⠇⠌⠎⠄⠎" }, { "input": "chivalrous", "output": "â ¡â Šâ §â â ‡â —⠳⠎" }, { "input": "chivalrously", "output": "â ¡â Šâ §â â ‡â —⠳⠎⠇⠽" }, { "input": "chivalrousness", "output": "â ¡â Šâ §â â ‡â —⠳⠎⠰⠎" }, { "input": "chivalrousness's", "output": "â ¡â Šâ §â â ‡â —⠳⠎⠰⠎⠄⠎" }, { "input": "chivalry", "output": "â ¡â Šâ §â â ‡â —â ½" }, { "input": "chivalry's", "output": "â ¡â Šâ §â â ‡â —⠽⠄⠎" }, { "input": "chive", "output": "â ¡â Šâ §â ‘" }, { "input": "chive's", "output": "â ¡â Šâ §â ‘â „â Ž" }, { "input": "chives", "output": "â ¡â Šâ §â ‘â Ž" }, { "input": "chlamydia", "output": "â ¡â ‡â â â ½â ™â Šâ " }, { "input": "chlamydia's", "output": "â ¡â ‡â â â ½â ™â Šâ â „â Ž" }, { "input": "chlamydiae", "output": "â ¡â ‡â â â ½â ™â Šâ â ‘" }, { "input": "chlamydias", "output": "â ¡â ‡â â â ½â ™â Šâ â Ž" }, { "input": "chloral", "output": "⠡⠇⠕⠗â â ‡" }, { "input": "chloral's", "output": "⠡⠇⠕⠗â â ‡â „â Ž" }, { "input": "chlordane", "output": "⠡⠇⠕⠗⠙â â â ‘" }, { "input": "chlordane's", "output": "⠡⠇⠕⠗⠙â â â ‘â „â Ž" }, { "input": "chloride", "output": "⠡⠇⠕⠗⠊⠙⠑" }, { "input": "chloride's", "output": "⠡⠇⠕⠗⠊⠙⠑⠄⠎" }, { "input": "chlorides", "output": "⠡⠇⠕⠗⠊⠙⠑⠎" }, { "input": "chlorinate", "output": "⠡⠇⠕⠗⠔â â žâ ‘" }, { "input": "chlorinated", "output": "⠡⠇⠕⠗⠔â â žâ «" }, { "input": "chlorinates", "output": "⠡⠇⠕⠗⠔â â žâ ‘â Ž" }, { "input": "chlorinating", "output": "⠡⠇⠕⠗⠔â â žâ Œ" }, { "input": "chlorination", "output": "⠡⠇⠕⠗⠔⠠â " }, { "input": "chlorination's", "output": "⠡⠇⠕⠗⠔⠠â â „â Ž" }, { "input": "chlorine", "output": "⠡⠇⠕⠗⠔⠑" }, { "input": "chlorine's", "output": "⠡⠇⠕⠗⠔⠑⠄⠎" }, { "input": "chlorofluorocarbon", "output": "⠡⠇⠕⠗⠕⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â " }, { "input": "chlorofluorocarbon's", "output": "⠡⠇⠕⠗⠕⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â â „â Ž" }, { "input": "chlorofluorocarbons", "output": "⠡⠇⠕⠗⠕⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â â Ž" }, { "input": "chloroform", "output": "⠡⠇⠕⠗⠕⠿â " }, { "input": "chloroform's", "output": "⠡⠇⠕⠗⠕⠿â â „â Ž" }, { "input": "chloroformed", "output": "⠡⠇⠕⠗⠕⠿â â «" }, { "input": "chloroforming", "output": "⠡⠇⠕⠗⠕⠿â â Œ" }, { "input": "chloroforms", "output": "⠡⠇⠕⠗⠕⠿â â Ž" }, { "input": "chlorophyll", "output": "⠡⠇⠕⠗⠕â â “⠽⠇⠇" }, { "input": "chlorophyll's", "output": "⠡⠇⠕⠗⠕â â “⠽⠇⠇⠄⠎" }, { "input": "chloroplast", "output": "⠡⠇⠕⠗⠕â â ‡â â Œ" }, { "input": "chloroplast's", "output": "⠡⠇⠕⠗⠕â â ‡â â Œâ „â Ž" }, { "input": "chloroplasts", "output": "⠡⠇⠕⠗⠕â â ‡â â Œâ Ž" }, { "input": "chock", "output": "⠡⠕⠉⠅" }, { "input": "chock's", "output": "⠡⠕⠉⠅⠄⠎" }, { "input": "chockablock", "output": "⠡⠕⠉⠅â â ƒâ ‡â •⠉⠅" }, { "input": "chocked", "output": "⠡⠕⠉⠅⠫" }, { "input": "chocking", "output": "⠡⠕⠉⠅⠌" }, { "input": "chocks", "output": "⠡⠕⠉⠅⠎" }, { "input": "chocolate", "output": "⠡⠕⠉⠕⠇â â žâ ‘" }, { "input": "chocolate's", "output": "⠡⠕⠉⠕⠇â â žâ ‘â „â Ž" }, { "input": "chocolates", "output": "⠡⠕⠉⠕⠇â â žâ ‘â Ž" }, { "input": "chocolaty", "output": "⠡⠕⠉⠕⠇â â žâ ½" }, { "input": "choice", "output": "⠡⠕⠊⠉⠑" }, { "input": "choice's", "output": "⠡⠕⠊⠉⠑⠄⠎" }, { "input": "choicer", "output": "⠡⠕⠊⠉⠻" }, { "input": "choices", "output": "⠡⠕⠊⠉⠑⠎" }, { "input": "choicest", "output": "⠡⠕⠊⠉⠑⠌" }, { "input": "choir", "output": "â ¡â •â Šâ —" }, { "input": "choir's", "output": "â ¡â •â Šâ —â „â Ž" }, { "input": "choirs", "output": "â ¡â •â Šâ —â Ž" }, { "input": "choke", "output": "â ¡â •â …â ‘" }, { "input": "choke's", "output": "â ¡â •â …â ‘â „â Ž" }, { "input": "chokecherries", "output": "⠡⠕⠅⠑⠡⠻⠗⠊⠑⠎" }, { "input": "chokecherry", "output": "⠡⠕⠅⠑⠡⠻⠗⠽" }, { "input": "chokecherry's", "output": "⠡⠕⠅⠑⠡⠻⠗⠽⠄⠎" }, { "input": "choked", "output": "â ¡â •â …â «" }, { "input": "choker", "output": "â ¡â •â …â »" }, { "input": "choker's", "output": "⠡⠕⠅⠻⠄⠎" }, { "input": "chokers", "output": "⠡⠕⠅⠻⠎" }, { "input": "chokes", "output": "â ¡â •â …â ‘â Ž" }, { "input": "choking", "output": "â ¡â •â …â Œ" }, { "input": "choler", "output": "⠡⠕⠇⠻" }, { "input": "choler's", "output": "⠡⠕⠇⠻⠄⠎" }, { "input": "cholera", "output": "⠡⠕⠇⠻â " }, { "input": "cholera's", "output": "⠡⠕⠇⠻â â „â Ž" }, { "input": "choleric", "output": "⠡⠕⠇⠻⠊⠉" }, { "input": "cholesterol", "output": "⠡⠕⠇⠑⠌⠻⠕⠇" }, { "input": "cholesterol's", "output": "⠡⠕⠇⠑⠌⠻⠕⠇⠄⠎" }, { "input": "chomp", "output": "â ¡â •â â " }, { "input": "chomp's", "output": "â ¡â •â â â „â Ž" }, { "input": "chomped", "output": "â ¡â •â â â «" }, { "input": "chomping", "output": "â ¡â •â â â Œ" }, { "input": "chomps", "output": "â ¡â •â â â Ž" }, { "input": "choose", "output": "â ¡â •â •â Žâ ‘" }, { "input": "chooser", "output": "â ¡â •â •â Žâ »" }, { "input": "chooser's", "output": "⠡⠕⠕⠎⠻⠄⠎" }, { "input": "choosers", "output": "⠡⠕⠕⠎⠻⠎" }, { "input": "chooses", "output": "â ¡â •â •â Žâ ‘â Ž" }, { "input": "choosier", "output": "â ¡â •â •â Žâ Šâ »" }, { "input": "choosiest", "output": "â ¡â •â •â Žâ Šâ ‘â Œ" }, { "input": "choosiness", "output": "â ¡â •â •â Žâ Šâ °â Ž" }, { "input": "choosiness's", "output": "â ¡â •â •â Žâ Šâ °â Žâ „â Ž" }, { "input": "choosing", "output": "â ¡â •â •â Žâ Œ" }, { "input": "choosy", "output": "â ¡â •â •â Žâ ½" }, { "input": "chop", "output": "â ¡â •â " }, { "input": "chop's", "output": "â ¡â •â â „â Ž" }, { "input": "chophouse", "output": "â ¡â •â â “⠳⠎⠑" }, { "input": "chophouse's", "output": "â ¡â •â â “⠳⠎⠑⠄⠎" }, { "input": "chophouses", "output": "â ¡â •â â “⠳⠎⠑⠎" }, { "input": "chopped", "output": "â ¡â •â â â «" }, { "input": "chopper", "output": "â ¡â •â â â »" }, { "input": "chopper's", "output": "â ¡â •â â â »â „â Ž" }, { "input": "choppered", "output": "â ¡â •â â â »â «" }, { "input": "choppering", "output": "â ¡â •â â â »â Œ" }, { "input": "choppers", "output": "â ¡â •â â â »â Ž" }, { "input": "choppier", "output": "â ¡â •â â â Šâ »" }, { "input": "choppiest", "output": "â ¡â •â â â Šâ ‘â Œ" }, { "input": "choppily", "output": "â ¡â •â â â Šâ ‡â ½" }, { "input": "choppiness", "output": "â ¡â •â â â Šâ °â Ž" }, { "input": "choppiness's", "output": "â ¡â •â â â Šâ °â Žâ „â Ž" }, { "input": "chopping", "output": "â ¡â •â â â Œ" }, { "input": "choppy", "output": "â ¡â •â â â ½" }, { "input": "chops", "output": "â ¡â •â â Ž" }, { "input": "chopstick", "output": "â ¡â •â â Œâ Šâ ‰â …" }, { "input": "chopstick's", "output": "â ¡â •â â Œâ Šâ ‰â …â „â Ž" }, { "input": "chopsticks", "output": "â ¡â •â â Œâ Šâ ‰â …â Ž" }, { "input": "choral", "output": "â ¡â •â —â â ‡" }, { "input": "choral's", "output": "â ¡â •â —â â ‡â „â Ž" }, { "input": "chorale", "output": "â ¡â •â —â â ‡â ‘" }, { "input": "chorale's", "output": "â ¡â •â —â â ‡â ‘â „â Ž" }, { "input": "chorales", "output": "â ¡â •â —â â ‡â ‘â Ž" }, { "input": "chorally", "output": "â ¡â •â —â  â ½" }, { "input": "chorals", "output": "â ¡â •â —â â ‡â Ž" }, { "input": "chord", "output": "â ¡â •â —â ™" }, { "input": "chord's", "output": "⠡⠕⠗⠙⠄⠎" }, { "input": "chordal", "output": "â ¡â •â —â ™â â ‡" }, { "input": "chordate", "output": "â ¡â •â —â ™â â žâ ‘" }, { "input": "chordate's", "output": "â ¡â •â —â ™â â žâ ‘â „â Ž" }, { "input": "chordates", "output": "â ¡â •â —â ™â â žâ ‘â Ž" }, { "input": "chords", "output": "⠡⠕⠗⠙⠎" }, { "input": "chore", "output": "â ¡â •â —â ‘" }, { "input": "chore's", "output": "â ¡â •â —â ‘â „â Ž" }, { "input": "chorea", "output": "â ¡â •â —â ‘â " }, { "input": "chorea's", "output": "â ¡â •â —â ‘â â „â Ž" }, { "input": "choreograph", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “" }, { "input": "choreographed", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â «" }, { "input": "choreographer", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â »" }, { "input": "choreographer's", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "choreographers", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “⠻⠎" }, { "input": "choreographic", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â Šâ ‰" }, { "input": "choreographically", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "choreographing", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â Œ" }, { "input": "choreographs", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â Ž" }, { "input": "choreography", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “â ½" }, { "input": "choreography's", "output": "⠡⠕⠗⠑⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "chores", "output": "â ¡â •â —â ‘â Ž" }, { "input": "chorister", "output": "⠡⠕⠗⠊⠌⠻" }, { "input": "chorister's", "output": "⠡⠕⠗⠊⠌⠻⠄⠎" }, { "input": "choristers", "output": "⠡⠕⠗⠊⠌⠻⠎" }, { "input": "choroid", "output": "â ¡â •â —â •â Šâ ™" }, { "input": "choroid's", "output": "⠡⠕⠗⠕⠊⠙⠄⠎" }, { "input": "choroids", "output": "⠡⠕⠗⠕⠊⠙⠎" }, { "input": "chortle", "output": "⠡⠕⠗⠞⠇⠑" }, { "input": "chortle's", "output": "⠡⠕⠗⠞⠇⠑⠄⠎" }, { "input": "chortled", "output": "⠡⠕⠗⠞⠇⠫" }, { "input": "chortler", "output": "⠡⠕⠗⠞⠇⠻" }, { "input": "chortler's", "output": "⠡⠕⠗⠞⠇⠻⠄⠎" }, { "input": "chortlers", "output": "⠡⠕⠗⠞⠇⠻⠎" }, { "input": "chortles", "output": "⠡⠕⠗⠞⠇⠑⠎" }, { "input": "chortling", "output": "⠡⠕⠗⠞⠇⠌" }, { "input": "chorus", "output": "⠡⠕⠗⠥⠎" }, { "input": "chorus's", "output": "⠡⠕⠗⠥⠎⠄⠎" }, { "input": "chorused", "output": "⠡⠕⠗⠥⠎⠫" }, { "input": "choruses", "output": "⠡⠕⠗⠥⠎⠑⠎" }, { "input": "chorusing", "output": "⠡⠕⠗⠥⠎⠌" }, { "input": "chose", "output": "â ¡â •â Žâ ‘" }, { "input": "chosen", "output": "â ¡â •â Žâ ¢" }, { "input": "chow", "output": "â ¡â ª" }, { "input": "chow's", "output": "⠡⠪⠄⠎" }, { "input": "chowder", "output": "⠡⠪⠙⠻" }, { "input": "chowder's", "output": "⠡⠪⠙⠻⠄⠎" }, { "input": "chowders", "output": "⠡⠪⠙⠻⠎" }, { "input": "chowed", "output": "⠡⠪⠫" }, { "input": "chowing", "output": "⠡⠪⠌" }, { "input": "chows", "output": "⠡⠪⠎" }, { "input": "chrism", "output": "â ¡â —â Šâ Žâ " }, { "input": "chrism's", "output": "â ¡â —â Šâ Žâ â „â Ž" }, { "input": "christen", "output": "⠡⠗⠊⠌⠢" }, { "input": "christened", "output": "⠡⠗⠊⠌⠢⠫" }, { "input": "christening", "output": "⠡⠗⠊⠌⠢⠌" }, { "input": "christening's", "output": "⠡⠗⠊⠌⠢⠌⠄⠎" }, { "input": "christenings", "output": "⠡⠗⠊⠌⠢⠌⠎" }, { "input": "christens", "output": "⠡⠗⠊⠌⠢⠎" }, { "input": "chromatic", "output": "â ¡â —â •â â â žâ Šâ ‰" }, { "input": "chromatically", "output": "â ¡â —â •â â â žâ Šâ ‰â  â ½" }, { "input": "chromatin", "output": "â ¡â —â •â â â žâ ”" }, { "input": "chromatin's", "output": "â ¡â —â •â â â žâ ”â „â Ž" }, { "input": "chrome", "output": "â ¡â —â •â â ‘" }, { "input": "chrome's", "output": "â ¡â —â •â â ‘â „â Ž" }, { "input": "chromed", "output": "â ¡â —â •â â «" }, { "input": "chromes", "output": "â ¡â —â •â â ‘â Ž" }, { "input": "chroming", "output": "â ¡â —â •â â Œ" }, { "input": "chromium", "output": "â ¡â —â •â â Šâ ¥â " }, { "input": "chromium's", "output": "â ¡â —â •â â Šâ ¥â â „â Ž" }, { "input": "chromosome", "output": "â ¡â —â •â â •â Žâ •â â ‘" }, { "input": "chromosome's", "output": "â ¡â —â •â â •â Žâ •â â ‘â „â Ž" }, { "input": "chromosomes", "output": "â ¡â —â •â â •â Žâ •â â ‘â Ž" }, { "input": "chronic", "output": "â ¡â —â •â â Šâ ‰" }, { "input": "chronically", "output": "â ¡â —â •â â Šâ ‰â  â ½" }, { "input": "chronicle", "output": "â ¡â —â •â â Šâ ‰â ‡â ‘" }, { "input": "chronicle's", "output": "â ¡â —â •â â Šâ ‰â ‡â ‘â „â Ž" }, { "input": "chronicled", "output": "â ¡â —â •â â Šâ ‰â ‡â «" }, { "input": "chronicler", "output": "â ¡â —â •â â Šâ ‰â ‡â »" }, { "input": "chronicler's", "output": "â ¡â —â •â â Šâ ‰â ‡â »â „â Ž" }, { "input": "chroniclers", "output": "â ¡â —â •â â Šâ ‰â ‡â »â Ž" }, { "input": "chronicles", "output": "â ¡â —â •â â Šâ ‰â ‡â ‘â Ž" }, { "input": "chronicling", "output": "â ¡â —â •â â Šâ ‰â ‡â Œ" }, { "input": "chronological", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "chronologically", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "chronologies", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠑⠎" }, { "input": "chronologist", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠌" }, { "input": "chronologist's", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "chronologists", "output": "â ¡â —â •â â •⠇⠕⠛⠊⠌⠎" }, { "input": "chronology", "output": "â ¡â —â •â â •⠇⠕⠛⠽" }, { "input": "chronology's", "output": "â ¡â —â •â â •⠇⠕⠛⠽⠄⠎" }, { "input": "chronometer", "output": "â ¡â —â •â â •â â ‘â žâ »" }, { "input": "chronometer's", "output": "â ¡â —â •â â •â â ‘⠞⠻⠄⠎" }, { "input": "chronometers", "output": "â ¡â —â •â â •â â ‘⠞⠻⠎" }, { "input": "chrysalis", "output": "⠡⠗⠽⠎â â ‡â Šâ Ž" }, { "input": "chrysalis's", "output": "⠡⠗⠽⠎â â ‡â Šâ Žâ „â Ž" }, { "input": "chrysalises", "output": "⠡⠗⠽⠎â â ‡â Šâ Žâ ‘â Ž" }, { "input": "chrysanthemum", "output": "⠡⠗⠽⠎â â â ®â â ¥â " }, { "input": "chrysanthemum's", "output": "⠡⠗⠽⠎â â â ®â â ¥â â „â Ž" }, { "input": "chrysanthemums", "output": "⠡⠗⠽⠎â â â ®â â ¥â â Ž" }, { "input": "chub", "output": "⠡⠥⠃" }, { "input": "chub's", "output": "⠡⠥⠃⠄⠎" }, { "input": "chubbier", "output": "⠡⠥⠆⠊⠻" }, { "input": "chubbiest", "output": "⠡⠥⠆⠊⠑⠌" }, { "input": "chubbiness", "output": "⠡⠥⠆⠊⠰⠎" }, { "input": "chubbiness's", "output": "⠡⠥⠆⠊⠰⠎⠄⠎" }, { "input": "chubby", "output": "⠡⠥⠆⠽" }, { "input": "chubs", "output": "⠡⠥⠃⠎" }, { "input": "chuck", "output": "⠡⠥⠉⠅" }, { "input": "chuck's", "output": "⠡⠥⠉⠅⠄⠎" }, { "input": "chucked", "output": "⠡⠥⠉⠅⠫" }, { "input": "chuckhole", "output": "⠡⠥⠉⠅⠓⠕⠇⠑" }, { "input": "chuckhole's", "output": "⠡⠥⠉⠅⠓⠕⠇⠑⠄⠎" }, { "input": "chuckholes", "output": "⠡⠥⠉⠅⠓⠕⠇⠑⠎" }, { "input": "chucking", "output": "⠡⠥⠉⠅⠌" }, { "input": "chuckle", "output": "⠡⠥⠉⠅⠇⠑" }, { "input": "chuckle's", "output": "⠡⠥⠉⠅⠇⠑⠄⠎" }, { "input": "chuckled", "output": "⠡⠥⠉⠅⠇⠫" }, { "input": "chuckles", "output": "⠡⠥⠉⠅⠇⠑⠎" }, { "input": "chuckling", "output": "⠡⠥⠉⠅⠇⠌" }, { "input": "chucks", "output": "⠡⠥⠉⠅⠎" }, { "input": "chug", "output": "⠡⠥⠛" }, { "input": "chug's", "output": "⠡⠥⠛⠄⠎" }, { "input": "chugged", "output": "⠡⠥⠶⠫" }, { "input": "chugging", "output": "⠡⠥⠶⠌" }, { "input": "chugs", "output": "⠡⠥⠛⠎" }, { "input": "chukka", "output": "⠡⠥⠅⠅â " }, { "input": "chukka's", "output": "⠡⠥⠅⠅â â „â Ž" }, { "input": "chukkas", "output": "⠡⠥⠅⠅â â Ž" }, { "input": "chum", "output": "â ¡â ¥â " }, { "input": "chum's", "output": "â ¡â ¥â â „â Ž" }, { "input": "chummed", "output": "â ¡â ¥â â â «" }, { "input": "chummier", "output": "â ¡â ¥â â â Šâ »" }, { "input": "chummiest", "output": "â ¡â ¥â â â Šâ ‘â Œ" }, { "input": "chumminess", "output": "â ¡â ¥â â â Šâ °â Ž" }, { "input": "chumminess's", "output": "â ¡â ¥â â â Šâ °â Žâ „â Ž" }, { "input": "chumming", "output": "â ¡â ¥â â â Œ" }, { "input": "chummy", "output": "â ¡â ¥â â â ½" }, { "input": "chump", "output": "â ¡â ¥â â " }, { "input": "chump's", "output": "â ¡â ¥â â â „â Ž" }, { "input": "chumps", "output": "â ¡â ¥â â â Ž" }, { "input": "chums", "output": "â ¡â ¥â â Ž" }, { "input": "chunk", "output": "â ¡â ¥â â …" }, { "input": "chunk's", "output": "â ¡â ¥â â …â „â Ž" }, { "input": "chunkier", "output": "â ¡â ¥â â …â Šâ »" }, { "input": "chunkiest", "output": "â ¡â ¥â â …â Šâ ‘â Œ" }, { "input": "chunkiness", "output": "â ¡â ¥â â …â Šâ °â Ž" }, { "input": "chunkiness's", "output": "â ¡â ¥â â …â Šâ °â Žâ „â Ž" }, { "input": "chunks", "output": "â ¡â ¥â â …â Ž" }, { "input": "chunky", "output": "â ¡â ¥â â …â ½" }, { "input": "church", "output": "⠡⠥⠗⠡" }, { "input": "church's", "output": "⠡⠥⠗⠡⠄⠎" }, { "input": "churches", "output": "⠡⠥⠗⠡⠑⠎" }, { "input": "churchgoer", "output": "⠡⠥⠗⠡⠛⠕⠻" }, { "input": "churchgoer's", "output": "⠡⠥⠗⠡⠛⠕⠻⠄⠎" }, { "input": "churchgoers", "output": "⠡⠥⠗⠡⠛⠕⠻⠎" }, { "input": "churchgoing's", "output": "⠡⠥⠗⠡⠛⠕⠌⠄⠎" }, { "input": "churchman", "output": "⠡⠥⠗⠡â â â " }, { "input": "churchman's", "output": "⠡⠥⠗⠡â â â â „â Ž" }, { "input": "churchmen", "output": "⠡⠥⠗⠡â â ¢" }, { "input": "churchyard", "output": "⠡⠥⠗⠡⠽⠜⠙" }, { "input": "churchyard's", "output": "⠡⠥⠗⠡⠽⠜⠙⠄⠎" }, { "input": "churchyards", "output": "⠡⠥⠗⠡⠽⠜⠙⠎" }, { "input": "churl", "output": "⠡⠥⠗⠇" }, { "input": "churl's", "output": "⠡⠥⠗⠇⠄⠎" }, { "input": "churlish", "output": "⠡⠥⠗⠇⠊⠩" }, { "input": "churlishly", "output": "⠡⠥⠗⠇⠊⠩⠇⠽" }, { "input": "churlishness", "output": "⠡⠥⠗⠇⠊⠩⠰⠎" }, { "input": "churlishness's", "output": "⠡⠥⠗⠇⠊⠩⠰⠎⠄⠎" }, { "input": "churls", "output": "⠡⠥⠗⠇⠎" }, { "input": "churn", "output": "⠡⠥⠗â " }, { "input": "churn's", "output": "⠡⠥⠗â â „â Ž" }, { "input": "churned", "output": "⠡⠥⠗â â «" }, { "input": "churner", "output": "⠡⠥⠗â â »" }, { "input": "churner's", "output": "⠡⠥⠗â â »â „â Ž" }, { "input": "churners", "output": "⠡⠥⠗â â »â Ž" }, { "input": "churning", "output": "⠡⠥⠗â â Œ" }, { "input": "churns", "output": "⠡⠥⠗â â Ž" }, { "input": "chute", "output": "⠡⠥⠞⠑" }, { "input": "chute's", "output": "⠡⠥⠞⠑⠄⠎" }, { "input": "chutes", "output": "⠡⠥⠞⠑⠎" }, { "input": "chutney", "output": "⠡⠥⠞â â ‘â ½" }, { "input": "chutney's", "output": "⠡⠥⠞â â ‘⠽⠄⠎" }, { "input": "chutzpah", "output": "⠡⠥⠞⠵â â â “" }, { "input": "chutzpah's", "output": "⠡⠥⠞⠵â â â “â „â Ž" }, { "input": "chyme", "output": "â ¡â ½â â ‘" }, { "input": "chyme's", "output": "â ¡â ½â â ‘â „â Ž" }, { "input": "ciaos", "output": "⠉⠊â â •â Ž" }, { "input": "cicada", "output": "⠉⠊⠉â â ™â " }, { "input": "cicada's", "output": "⠉⠊⠉â â ™â â „â Ž" }, { "input": "cicadas", "output": "⠉⠊⠉â â ™â â Ž" }, { "input": "cicatrices", "output": "⠉⠊⠉â â žâ —⠊⠉⠑⠎" }, { "input": "cicatrix", "output": "⠉⠊⠉â â žâ —â Šâ ­" }, { "input": "cicatrix's", "output": "⠉⠊⠉â â žâ —â Šâ ­â „â Ž" }, { "input": "cicerone", "output": "⠉⠊⠉⠻â â •" }, { "input": "cicerone's", "output": "⠉⠊⠉⠻â â •â „â Ž" }, { "input": "cicerones", "output": "⠉⠊⠉⠻â â •â Ž" }, { "input": "ciceroni", "output": "⠉⠊⠉⠻⠕â â Š" }, { "input": "cider", "output": "⠉⠊⠙⠻" }, { "input": "cider's", "output": "⠉⠊⠙⠻⠄⠎" }, { "input": "ciders", "output": "⠉⠊⠙⠻⠎" }, { "input": "cigar", "output": "⠉⠊⠛⠜" }, { "input": "cigar's", "output": "⠉⠊⠛⠜⠄⠎" }, { "input": "cigarette", "output": "⠉⠊⠛⠜⠑⠞⠞⠑" }, { "input": "cigarette's", "output": "⠉⠊⠛⠜⠑⠞⠞⠑⠄⠎" }, { "input": "cigarettes", "output": "⠉⠊⠛⠜⠑⠞⠞⠑⠎" }, { "input": "cigarillo", "output": "⠉⠊⠛⠜⠊⠇⠇⠕" }, { "input": "cigarillo's", "output": "⠉⠊⠛⠜⠊⠇⠇⠕⠄⠎" }, { "input": "cigarillos", "output": "⠉⠊⠛⠜⠊⠇⠇⠕⠎" }, { "input": "cigars", "output": "⠉⠊⠛⠜⠎" }, { "input": "cilantro", "output": "⠉⠊⠇â â â žâ —â •" }, { "input": "cilantro's", "output": "⠉⠊⠇â â â žâ —â •â „â Ž" }, { "input": "cilia", "output": "⠉⠊⠇⠊â " }, { "input": "cilium", "output": "⠉⠊⠇⠊⠥â " }, { "input": "cilium's", "output": "⠉⠊⠇⠊⠥â â „â Ž" }, { "input": "cinch", "output": "⠉⠔⠡" }, { "input": "cinch's", "output": "⠉⠔⠡⠄⠎" }, { "input": "cinched", "output": "⠉⠔⠡⠫" }, { "input": "cinches", "output": "⠉⠔⠡⠑⠎" }, { "input": "cinching", "output": "⠉⠔⠡⠌" }, { "input": "cinchona", "output": "⠉⠔⠡⠕â â " }, { "input": "cinchona's", "output": "⠉⠔⠡⠕â â â „â Ž" }, { "input": "cinchonas", "output": "⠉⠔⠡⠕â â â Ž" }, { "input": "cincture", "output": "⠉⠔⠉⠞⠥⠗⠑" }, { "input": "cincture's", "output": "⠉⠔⠉⠞⠥⠗⠑⠄⠎" }, { "input": "cinctures", "output": "⠉⠔⠉⠞⠥⠗⠑⠎" }, { "input": "cinder", "output": "⠉⠔⠙⠻" }, { "input": "cinder's", "output": "⠉⠔⠙⠻⠄⠎" }, { "input": "cindered", "output": "⠉⠔⠙⠻⠫" }, { "input": "cindering", "output": "⠉⠔⠙⠻⠌" }, { "input": "cinders", "output": "⠉⠔⠙⠻⠎" }, { "input": "cinema", "output": "⠉⠔⠑â â " }, { "input": "cinema's", "output": "⠉⠔⠑â â â „â Ž" }, { "input": "cinemas", "output": "⠉⠔⠑â â â Ž" }, { "input": "cinematic", "output": "⠉⠔⠑â â â žâ Šâ ‰" }, { "input": "cinematographer", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “â »" }, { "input": "cinematographer's", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “⠻⠄⠎" }, { "input": "cinematographers", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “⠻⠎" }, { "input": "cinematographic", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “â Šâ ‰" }, { "input": "cinematography", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “â ½" }, { "input": "cinematography's", "output": "⠉⠔⠑â â â žâ •⠛⠗â â â “⠽⠄⠎" }, { "input": "cinnabar", "output": "⠉⠔â â â ƒâ œ" }, { "input": "cinnabar's", "output": "⠉⠔â â â ƒâ œâ „â Ž" }, { "input": "cinnamon", "output": "⠉⠔â â â â •â " }, { "input": "cinnamon's", "output": "⠉⠔â â â â •â â „â Ž" }, { "input": "cipher", "output": "⠉⠊â â “â »" }, { "input": "cipher's", "output": "⠉⠊â â “⠻⠄⠎" }, { "input": "ciphered", "output": "⠉⠊â â “⠻⠫" }, { "input": "ciphering", "output": "⠉⠊â â “⠻⠌" }, { "input": "ciphers", "output": "⠉⠊â â “⠻⠎" }, { "input": "circa", "output": "⠉⠊⠗⠉â " }, { "input": "circadian", "output": "⠉⠊⠗⠉â â ™â Šâ â " }, { "input": "circle", "output": "⠉⠊⠗⠉⠇⠑" }, { "input": "circle's", "output": "⠉⠊⠗⠉⠇⠑⠄⠎" }, { "input": "circled", "output": "⠉⠊⠗⠉⠇⠫" }, { "input": "circles", "output": "⠉⠊⠗⠉⠇⠑⠎" }, { "input": "circlet", "output": "⠉⠊⠗⠉⠇⠑⠞" }, { "input": "circlet's", "output": "⠉⠊⠗⠉⠇⠑⠞⠄⠎" }, { "input": "circlets", "output": "⠉⠊⠗⠉⠇⠑⠞⠎" }, { "input": "circling", "output": "⠉⠊⠗⠉⠇⠌" }, { "input": "circuit", "output": "⠉⠊⠗⠉⠥⠊⠞" }, { "input": "circuit's", "output": "⠉⠊⠗⠉⠥⠊⠞⠄⠎" }, { "input": "circuital", "output": "⠉⠊⠗⠉⠥⠊⠞â â ‡" }, { "input": "circuited", "output": "⠉⠊⠗⠉⠥⠊⠞⠫" }, { "input": "circuiting", "output": "⠉⠊⠗⠉⠥⠊⠞⠌" }, { "input": "circuitous", "output": "⠉⠊⠗⠉⠥⠊⠞⠳⠎" }, { "input": "circuitously", "output": "⠉⠊⠗⠉⠥⠊⠞⠳⠎⠇⠽" }, { "input": "circuitousness", "output": "⠉⠊⠗⠉⠥⠊⠞⠳⠎⠰⠎" }, { "input": "circuitousness's", "output": "⠉⠊⠗⠉⠥⠊⠞⠳⠎⠰⠎⠄⠎" }, { "input": "circuitry", "output": "⠉⠊⠗⠉⠥⠊⠞⠗⠽" }, { "input": "circuitry's", "output": "⠉⠊⠗⠉⠥⠊⠞⠗⠽⠄⠎" }, { "input": "circuits", "output": "⠉⠊⠗⠉⠥⠊⠞⠎" }, { "input": "circuity", "output": "⠉⠊⠗⠉⠥⠰⠽" }, { "input": "circuity's", "output": "⠉⠊⠗⠉⠥⠰⠽⠄⠎" }, { "input": "circular", "output": "⠉⠊⠗⠉⠥⠇⠜" }, { "input": "circular's", "output": "⠉⠊⠗⠉⠥⠇⠜⠄⠎" }, { "input": "circularity", "output": "⠉⠊⠗⠉⠥⠇⠜⠰⠽" }, { "input": "circularity's", "output": "⠉⠊⠗⠉⠥⠇⠜⠰⠽⠄⠎" }, { "input": "circularize", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠑" }, { "input": "circularized", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠫" }, { "input": "circularizes", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠑⠎" }, { "input": "circularizing", "output": "⠉⠊⠗⠉⠥⠇⠜⠊⠵⠌" }, { "input": "circularly", "output": "⠉⠊⠗⠉⠥⠇⠜⠇⠽" }, { "input": "circulars", "output": "⠉⠊⠗⠉⠥⠇⠜⠎" }, { "input": "circulate", "output": "⠉⠊⠗⠉⠥⠇â â žâ ‘" }, { "input": "circulated", "output": "⠉⠊⠗⠉⠥⠇â â žâ «" }, { "input": "circulates", "output": "⠉⠊⠗⠉⠥⠇â â žâ ‘â Ž" }, { "input": "circulating", "output": "⠉⠊⠗⠉⠥⠇â â žâ Œ" }, { "input": "circulation", "output": "⠉⠊⠗⠉⠥⠇⠠â " }, { "input": "circulation's", "output": "⠉⠊⠗⠉⠥⠇⠠â â „â Ž" }, { "input": "circulations", "output": "⠉⠊⠗⠉⠥⠇⠠â â Ž" }, { "input": "circulatory", "output": "⠉⠊⠗⠉⠥⠇â â žâ •â —â ½" }, { "input": "circumcise", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ ‘" }, { "input": "circumcised", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ «" }, { "input": "circumcises", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ ‘â Ž" }, { "input": "circumcising", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ Žâ Œ" }, { "input": "circumcision", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ ¨â " }, { "input": "circumcision's", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ ¨â â „â Ž" }, { "input": "circumcisions", "output": "⠉⠊⠗⠉⠥â â ‰â Šâ ¨â â Ž" }, { "input": "circumference", "output": "⠉⠊⠗⠉⠥â â ‹â »â °â ‘" }, { "input": "circumference's", "output": "⠉⠊⠗⠉⠥â â ‹â »â °â ‘â „â Ž" }, { "input": "circumferences", "output": "⠉⠊⠗⠉⠥â â ‹â »â °â ‘â Ž" }, { "input": "circumferential", "output": "⠉⠊⠗⠉⠥â â ‹â »â ¢â žâ Šâ â ‡" }, { "input": "circumflex", "output": "⠉⠊⠗⠉⠥â â ‹â ‡â ‘â ­" }, { "input": "circumflex's", "output": "⠉⠊⠗⠉⠥â â ‹â ‡â ‘â ­â „â Ž" }, { "input": "circumflexes", "output": "⠉⠊⠗⠉⠥â â ‹â ‡â ‘â ­â ‘â Ž" }, { "input": "circumlocution", "output": "⠉⠊⠗⠉⠥â â ‡â •⠉⠥⠰â " }, { "input": "circumlocution's", "output": "⠉⠊⠗⠉⠥â â ‡â •⠉⠥⠰â â „â Ž" }, { "input": "circumlocutions", "output": "⠉⠊⠗⠉⠥â â ‡â •⠉⠥⠰â â Ž" }, { "input": "circumnavigate", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ ‘" }, { "input": "circumnavigated", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ «" }, { "input": "circumnavigates", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ ‘â Ž" }, { "input": "circumnavigating", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â â žâ Œ" }, { "input": "circumnavigation", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â  â " }, { "input": "circumnavigation's", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â  â â „â Ž" }, { "input": "circumnavigations", "output": "⠉⠊⠗⠉⠥â â â â §â Šâ ›â  â â Ž" }, { "input": "circumpolar", "output": "⠉⠊⠗⠉⠥â â â •⠇⠜" }, { "input": "circumscribe", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠑" }, { "input": "circumscribed", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠫" }, { "input": "circumscribes", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "circumscribing", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —⠊⠃⠌" }, { "input": "circumscription", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —â Šâ â °â " }, { "input": "circumscription's", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —â Šâ â °â â „â Ž" }, { "input": "circumscriptions", "output": "⠉⠊⠗⠉⠥â â Žâ ‰â —â Šâ â °â â Ž" }, { "input": "circumspect", "output": "⠉⠊⠗⠉⠥â â Žâ â ‘⠉⠞" }, { "input": "circumspection", "output": "⠉⠊⠗⠉⠥â â Žâ â ‘⠉⠰â " }, { "input": "circumspection's", "output": "⠉⠊⠗⠉⠥â â Žâ â ‘⠉⠰â â „â Ž" }, { "input": "circumstance", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘" }, { "input": "circumstance's", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘â „â Ž" }, { "input": "circumstanced", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘â ™" }, { "input": "circumstances", "output": "⠉⠊⠗⠉⠥â â Œâ ¨â ‘â Ž" }, { "input": "circumstancing", "output": "⠉⠊⠗⠉⠥â â Œâ â â ‰â Œ" }, { "input": "circumstantial", "output": "⠉⠊⠗⠉⠥â â Œâ â â žâ Šâ â ‡" }, { "input": "circumstantially", "output": "⠉⠊⠗⠉⠥â â Œâ â â žâ Šâ  â ½" }, { "input": "circumvent", "output": "⠉⠊⠗⠉⠥â â §â ¢â ž" }, { "input": "circumvented", "output": "⠉⠊⠗⠉⠥â â §â ¢â žâ «" }, { "input": "circumventing", "output": "⠉⠊⠗⠉⠥â â §â ¢â žâ Œ" }, { "input": "circumvention", "output": "⠉⠊⠗⠉⠥â â §â ¢â °â " }, { "input": "circumvention's", "output": "⠉⠊⠗⠉⠥â â §â ¢â °â â „â Ž" }, { "input": "circumvents", "output": "⠉⠊⠗⠉⠥â â §â ¢â žâ Ž" }, { "input": "circus", "output": "⠉⠊⠗⠉⠥⠎" }, { "input": "circus's", "output": "⠉⠊⠗⠉⠥⠎⠄⠎" }, { "input": "circuses", "output": "⠉⠊⠗⠉⠥⠎⠑⠎" }, { "input": "cirque", "output": "⠉⠊⠗⠟⠥⠑" }, { "input": "cirque's", "output": "⠉⠊⠗⠟⠥⠑⠄⠎" }, { "input": "cirques", "output": "⠉⠊⠗⠟⠥⠑⠎" }, { "input": "cirrhosis", "output": "⠉⠊⠗⠗⠓⠕⠎⠊⠎" }, { "input": "cirrhosis's", "output": "⠉⠊⠗⠗⠓⠕⠎⠊⠎⠄⠎" }, { "input": "cirrhotic", "output": "⠉⠊⠗⠗⠓⠕⠞⠊⠉" }, { "input": "cirrhotic's", "output": "⠉⠊⠗⠗⠓⠕⠞⠊⠉⠄⠎" }, { "input": "cirrhotics", "output": "⠉⠊⠗⠗⠓⠕⠞⠊⠉⠎" }, { "input": "cirri", "output": "⠉⠊⠗⠗⠊" }, { "input": "cirrus", "output": "⠉⠊⠗⠗⠥⠎" }, { "input": "cirrus's", "output": "⠉⠊⠗⠗⠥⠎⠄⠎" }, { "input": "cistern", "output": "⠉⠊⠌⠻â " }, { "input": "cistern's", "output": "⠉⠊⠌⠻â â „â Ž" }, { "input": "cisterns", "output": "⠉⠊⠌⠻â â Ž" }, { "input": "citadel", "output": "⠉⠊⠞â â ™â ‘â ‡" }, { "input": "citadel's", "output": "⠉⠊⠞â â ™â ‘⠇⠄⠎" }, { "input": "citadels", "output": "⠉⠊⠞â â ™â ‘⠇⠎" }, { "input": "citation", "output": "⠉⠊⠞⠠â " }, { "input": "citation's", "output": "⠉⠊⠞⠠â â „â Ž" }, { "input": "citations", "output": "⠉⠊⠞⠠â â Ž" }, { "input": "cite", "output": "⠉⠊⠞⠑" }, { "input": "cite's", "output": "⠉⠊⠞⠑⠄⠎" }, { "input": "cited", "output": "⠉⠊⠞⠫" }, { "input": "cites", "output": "⠉⠊⠞⠑⠎" }, { "input": "cities", "output": "⠉⠊⠞⠊⠑⠎" }, { "input": "citified", "output": "⠉⠊⠞⠊⠋⠊⠫" }, { "input": "citing", "output": "⠉⠊⠞⠌" }, { "input": "citizen", "output": "⠉⠊⠞⠊⠵⠢" }, { "input": "citizen's", "output": "⠉⠊⠞⠊⠵⠢⠄⠎" }, { "input": "citizenry", "output": "⠉⠊⠞⠊⠵⠢⠗⠽" }, { "input": "citizenry's", "output": "⠉⠊⠞⠊⠵⠢⠗⠽⠄⠎" }, { "input": "citizens", "output": "⠉⠊⠞⠊⠵⠢⠎" }, { "input": "citizenship", "output": "⠉⠊⠞⠊⠵⠢⠩⠊â " }, { "input": "citizenship's", "output": "⠉⠊⠞⠊⠵⠢⠩⠊â â „â Ž" }, { "input": "citric", "output": "⠉⠊⠞⠗⠊⠉" }, { "input": "citron", "output": "⠉⠊⠞⠗⠕â " }, { "input": "citron's", "output": "⠉⠊⠞⠗⠕â â „â Ž" }, { "input": "citronella", "output": "⠉⠊⠞⠗⠕â â ‘⠇⠇â " }, { "input": "citronella's", "output": "⠉⠊⠞⠗⠕â â ‘⠇⠇â â „â Ž" }, { "input": "citrons", "output": "⠉⠊⠞⠗⠕â â Ž" }, { "input": "citrus", "output": "⠉⠊⠞⠗⠥⠎" }, { "input": "citrus's", "output": "⠉⠊⠞⠗⠥⠎⠄⠎" }, { "input": "citruses", "output": "⠉⠊⠞⠗⠥⠎⠑⠎" }, { "input": "city", "output": "⠉⠰⠽" }, { "input": "city's", "output": "⠉⠰⠽⠄⠎" }, { "input": "civet", "output": "⠉⠊⠧⠑⠞" }, { "input": "civet's", "output": "⠉⠊⠧⠑⠞⠄⠎" }, { "input": "civets", "output": "⠉⠊⠧⠑⠞⠎" }, { "input": "civic", "output": "⠉⠊⠧⠊⠉" }, { "input": "civics", "output": "⠉⠊⠧⠊⠉⠎" }, { "input": "civics's", "output": "⠉⠊⠧⠊⠉⠎⠄⠎" }, { "input": "civil", "output": "⠉⠊⠧⠊⠇" }, { "input": "civilian", "output": "⠉⠊⠧⠊⠇⠊â â " }, { "input": "civilian's", "output": "⠉⠊⠧⠊⠇⠊â â â „â Ž" }, { "input": "civilians", "output": "⠉⠊⠧⠊⠇⠊â â â Ž" }, { "input": "civilities", "output": "⠉⠊⠧⠊⠇⠊⠞⠊⠑⠎" }, { "input": "civility", "output": "⠉⠊⠧⠊⠇⠰⠽" }, { "input": "civility's", "output": "⠉⠊⠧⠊⠇⠰⠽⠄⠎" }, { "input": "civilization", "output": "⠉⠊⠧⠊⠇⠊⠵⠠â " }, { "input": "civilization's", "output": "⠉⠊⠧⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "civilizations", "output": "⠉⠊⠧⠊⠇⠊⠵⠠â â Ž" }, { "input": "civilize", "output": "⠉⠊⠧⠊⠇⠊⠵⠑" }, { "input": "civilized", "output": "⠉⠊⠧⠊⠇⠊⠵⠫" }, { "input": "civilizes", "output": "⠉⠊⠧⠊⠇⠊⠵⠑⠎" }, { "input": "civilizing", "output": "⠉⠊⠧⠊⠇⠊⠵⠌" }, { "input": "civilly", "output": "⠉⠊⠧⠊⠇⠇⠽" }, { "input": "civvies", "output": "⠉⠊⠧⠧⠊⠑⠎" }, { "input": "civvies's", "output": "⠉⠊⠧⠧⠊⠑⠎⠄⠎" }, { "input": "clack", "output": "⠉⠇â â ‰â …" }, { "input": "clack's", "output": "⠉⠇â â ‰â …â „â Ž" }, { "input": "clacked", "output": "⠉⠇â â ‰â …â «" }, { "input": "clacking", "output": "⠉⠇â â ‰â …â Œ" }, { "input": "clacks", "output": "⠉⠇â â ‰â …â Ž" }, { "input": "clad", "output": "⠉⠇â â ™" }, { "input": "cladding's", "output": "⠉⠇â â ²â Œâ „â Ž" }, { "input": "claim", "output": "⠉⠇â â Šâ " }, { "input": "claim's", "output": "⠉⠇â â Šâ â „â Ž" }, { "input": "claimable", "output": "⠉⠇â â Šâ â â ¼" }, { "input": "claimant", "output": "⠉⠇â â Šâ â â â ž" }, { "input": "claimant's", "output": "⠉⠇â â Šâ â â â žâ „â Ž" }, { "input": "claimants", "output": "⠉⠇â â Šâ â â â žâ Ž" }, { "input": "claimed", "output": "⠉⠇â â Šâ â «" }, { "input": "claimer", "output": "⠉⠇â â Šâ â »" }, { "input": "claimer's", "output": "⠉⠇â â Šâ â »â „â Ž" }, { "input": "claimers", "output": "⠉⠇â â Šâ â »â Ž" }, { "input": "claiming", "output": "⠉⠇â â Šâ â Œ" }, { "input": "claims", "output": "⠉⠇â â Šâ â Ž" }, { "input": "clairvoyance", "output": "⠉⠇â â Šâ —⠧⠕⠽⠨⠑" }, { "input": "clairvoyance's", "output": "⠉⠇â â Šâ —⠧⠕⠽⠨⠑⠄⠎" }, { "input": "clairvoyant", "output": "⠉⠇â â Šâ —â §â •â ½â â â ž" }, { "input": "clairvoyant's", "output": "⠉⠇â â Šâ —â §â •â ½â â â žâ „â Ž" }, { "input": "clairvoyants", "output": "⠉⠇â â Šâ —â §â •â ½â â â žâ Ž" }, { "input": "clam", "output": "⠉⠇â â " }, { "input": "clam's", "output": "⠉⠇â â â „â Ž" }, { "input": "clambake", "output": "⠉⠇â â â ƒâ â …â ‘" }, { "input": "clambake's", "output": "⠉⠇â â â ƒâ â …â ‘â „â Ž" }, { "input": "clambakes", "output": "⠉⠇â â â ƒâ â …â ‘â Ž" }, { "input": "clamber", "output": "⠉⠇â â â ƒâ »" }, { "input": "clamber's", "output": "⠉⠇â â â ƒâ »â „â Ž" }, { "input": "clambered", "output": "⠉⠇â â â ƒâ »â «" }, { "input": "clamberer", "output": "⠉⠇â â â ƒâ »â »" }, { "input": "clamberer's", "output": "⠉⠇â â â ƒâ »â »â „â Ž" }, { "input": "clamberers", "output": "⠉⠇â â â ƒâ »â »â Ž" }, { "input": "clambering", "output": "⠉⠇â â â ƒâ »â Œ" }, { "input": "clambers", "output": "⠉⠇â â â ƒâ »â Ž" }, { "input": "clammed", "output": "⠉⠇â â â â «" }, { "input": "clammier", "output": "⠉⠇â â â â Šâ »" }, { "input": "clammiest", "output": "⠉⠇â â â â Šâ ‘â Œ" }, { "input": "clammily", "output": "⠉⠇â â â â Šâ ‡â ½" }, { "input": "clamminess", "output": "⠉⠇â â â â Šâ °â Ž" }, { "input": "clamminess's", "output": "⠉⠇â â â â Šâ °â Žâ „â Ž" }, { "input": "clamming", "output": "⠉⠇â â â â Œ" }, { "input": "clammy", "output": "⠉⠇â â â â ½" }, { "input": "clamor", "output": "⠉⠇â â â •â —" }, { "input": "clamor's", "output": "⠉⠇â â â •â —â „â Ž" }, { "input": "clamored", "output": "⠉⠇â â â •â —â «" }, { "input": "clamoring", "output": "⠉⠇â â â •â —â Œ" }, { "input": "clamorous", "output": "⠉⠇â â â •⠗⠳⠎" }, { "input": "clamors", "output": "⠉⠇â â â •â —â Ž" }, { "input": "clamp", "output": "⠉⠇â â â " }, { "input": "clamp's", "output": "⠉⠇â â â â „â Ž" }, { "input": "clampdown", "output": "⠉⠇â â â â ™â ªâ " }, { "input": "clampdown's", "output": "⠉⠇â â â â ™â ªâ â „â Ž" }, { "input": "clampdowns", "output": "⠉⠇â â â â ™â ªâ â Ž" }, { "input": "clamped", "output": "⠉⠇â â â â «" }, { "input": "clamping", "output": "⠉⠇â â â â Œ" }, { "input": "clamps", "output": "⠉⠇â â â â Ž" }, { "input": "clams", "output": "⠉⠇â â â Ž" }, { "input": "clan", "output": "⠉⠇â â " }, { "input": "clan's", "output": "⠉⠇â â â „â Ž" }, { "input": "clandestine", "output": "⠉⠇⠯⠑⠌⠔⠑" }, { "input": "clandestinely", "output": "⠉⠇⠯⠑⠌⠔⠑⠇⠽" }, { "input": "clang", "output": "⠉⠇â â â ›" }, { "input": "clang's", "output": "⠉⠇â â â ›â „â Ž" }, { "input": "clanged", "output": "⠉⠇â â â ›â «" }, { "input": "clanging", "output": "⠉⠇â â â ›â Œ" }, { "input": "clangor", "output": "⠉⠇â â â ›â •â —" }, { "input": "clangor's", "output": "⠉⠇â â â ›â •â —â „â Ž" }, { "input": "clangorous", "output": "⠉⠇â â â ›â •⠗⠳⠎" }, { "input": "clangorously", "output": "⠉⠇â â â ›â •⠗⠳⠎⠇⠽" }, { "input": "clangs", "output": "⠉⠇â â â ›â Ž" }, { "input": "clank", "output": "⠉⠇â â â …" }, { "input": "clank's", "output": "⠉⠇â â â …â „â Ž" }, { "input": "clanked", "output": "⠉⠇â â â …â «" }, { "input": "clanking", "output": "⠉⠇â â â …â Œ" }, { "input": "clanks", "output": "⠉⠇â â â …â Ž" }, { "input": "clannish", "output": "⠉⠇â â â â Šâ ©" }, { "input": "clannishness", "output": "⠉⠇â â â â Šâ ©â °â Ž" }, { "input": "clannishness's", "output": "⠉⠇â â â â Šâ ©â °â Žâ „â Ž" }, { "input": "clans", "output": "⠉⠇â â â Ž" }, { "input": "clap", "output": "⠉⠇â â " }, { "input": "clap's", "output": "⠉⠇â â â „â Ž" }, { "input": "clapboard", "output": "⠉⠇â â â ƒâ •⠜⠙" }, { "input": "clapboard's", "output": "⠉⠇â â â ƒâ •⠜⠙⠄⠎" }, { "input": "clapboarded", "output": "⠉⠇â â â ƒâ •⠜⠙⠫" }, { "input": "clapboarding", "output": "⠉⠇â â â ƒâ •⠜⠙⠌" }, { "input": "clapboards", "output": "⠉⠇â â â ƒâ •⠜⠙⠎" }, { "input": "clapped", "output": "⠉⠇â â â â «" }, { "input": "clapper", "output": "⠉⠇â â â â »" }, { "input": "clapper's", "output": "⠉⠇â â â â »â „â Ž" }, { "input": "clappers", "output": "⠉⠇â â â â »â Ž" }, { "input": "clapping", "output": "⠉⠇â â â â Œ" }, { "input": "clapping's", "output": "⠉⠇â â â â Œâ „â Ž" }, { "input": "claps", "output": "⠉⠇â â â Ž" }, { "input": "claptrap", "output": "⠉⠇â â â žâ —â â " }, { "input": "claptrap's", "output": "⠉⠇â â â žâ —â â â „â Ž" }, { "input": "claque", "output": "⠉⠇â â Ÿâ ¥â ‘" }, { "input": "claque's", "output": "⠉⠇â â Ÿâ ¥â ‘â „â Ž" }, { "input": "claques", "output": "⠉⠇â â Ÿâ ¥â ‘â Ž" }, { "input": "claret", "output": "⠉⠇⠜⠑⠞" }, { "input": "claret's", "output": "⠉⠇⠜⠑⠞⠄⠎" }, { "input": "clarets", "output": "⠉⠇⠜⠑⠞⠎" }, { "input": "clarification", "output": "⠉⠇⠜⠊⠋⠊⠉⠠â " }, { "input": "clarification's", "output": "⠉⠇⠜⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "clarifications", "output": "⠉⠇⠜⠊⠋⠊⠉⠠â â Ž" }, { "input": "clarified", "output": "⠉⠇⠜⠊⠋⠊⠫" }, { "input": "clarifies", "output": "⠉⠇⠜⠊⠋⠊⠑⠎" }, { "input": "clarify", "output": "⠉⠇⠜⠊⠋⠽" }, { "input": "clarifying", "output": "⠉⠇⠜⠊⠋⠽⠌" }, { "input": "clarinet", "output": "⠉⠇⠜⠔⠑⠞" }, { "input": "clarinet's", "output": "⠉⠇⠜⠔⠑⠞⠄⠎" }, { "input": "clarinetist", "output": "⠉⠇⠜⠔⠑⠞⠊⠌" }, { "input": "clarinetist's", "output": "⠉⠇⠜⠔⠑⠞⠊⠌⠄⠎" }, { "input": "clarinetists", "output": "⠉⠇⠜⠔⠑⠞⠊⠌⠎" }, { "input": "clarinets", "output": "⠉⠇⠜⠔⠑⠞⠎" }, { "input": "clarion", "output": "⠉⠇⠜⠊⠕â " }, { "input": "clarion's", "output": "⠉⠇⠜⠊⠕â â „â Ž" }, { "input": "clarioned", "output": "⠉⠇⠜⠊⠕â â «" }, { "input": "clarioning", "output": "⠉⠇⠜⠊⠕â â Œ" }, { "input": "clarions", "output": "⠉⠇⠜⠊⠕â â Ž" }, { "input": "clarity", "output": "⠉⠇⠜⠰⠽" }, { "input": "clarity's", "output": "⠉⠇⠜⠰⠽⠄⠎" }, { "input": "clash", "output": "⠉⠇â â ©" }, { "input": "clash's", "output": "⠉⠇â â ©â „â Ž" }, { "input": "clashed", "output": "⠉⠇â â ©â «" }, { "input": "clashes", "output": "⠉⠇â â ©â ‘â Ž" }, { "input": "clashing", "output": "⠉⠇â â ©â Œ" }, { "input": "clasp", "output": "⠉⠇â â Žâ " }, { "input": "clasp's", "output": "⠉⠇â â Žâ â „â Ž" }, { "input": "clasped", "output": "⠉⠇â â Žâ â «" }, { "input": "clasping", "output": "⠉⠇â â Žâ â Œ" }, { "input": "clasps", "output": "⠉⠇â â Žâ â Ž" }, { "input": "class", "output": "⠉⠇â â Žâ Ž" }, { "input": "class's", "output": "⠉⠇â â Žâ Žâ „â Ž" }, { "input": "classed", "output": "⠉⠇â â Žâ Žâ «" }, { "input": "classes", "output": "⠉⠇â â Žâ Žâ ‘â Ž" }, { "input": "classic", "output": "⠉⠇â â Žâ Žâ Šâ ‰" }, { "input": "classic's", "output": "⠉⠇â â Žâ Žâ Šâ ‰â „â Ž" }, { "input": "classical", "output": "⠉⠇â â Žâ Žâ Šâ ‰â â ‡" }, { "input": "classical's", "output": "⠉⠇â â Žâ Žâ Šâ ‰â â ‡â „â Ž" }, { "input": "classically", "output": "⠉⠇â â Žâ Žâ Šâ ‰â  â ½" }, { "input": "classicism", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Žâ " }, { "input": "classicism's", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "classicist", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Œ" }, { "input": "classicist's", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Œâ „â Ž" }, { "input": "classicists", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Šâ Œâ Ž" }, { "input": "classics", "output": "⠉⠇â â Žâ Žâ Šâ ‰â Ž" }, { "input": "classier", "output": "⠉⠇â â Žâ Žâ Šâ »" }, { "input": "classiest", "output": "⠉⠇â â Žâ Žâ Šâ ‘â Œ" }, { "input": "classifiable", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ â ¼" }, { "input": "classification", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â  â " }, { "input": "classification's", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "classifications", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "classified", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "classified's", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ «â „â Ž" }, { "input": "classifieds", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ «â Ž" }, { "input": "classifier", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ »" }, { "input": "classifier's", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ »â „â Ž" }, { "input": "classifiers", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ »â Ž" }, { "input": "classifies", "output": "⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "classify", "output": "⠉⠇â â Žâ Žâ Šâ ‹â ½" }, { "input": "classifying", "output": "⠉⠇â â Žâ Žâ Šâ ‹â ½â Œ" }, { "input": "classiness", "output": "⠉⠇â â Žâ Žâ Šâ °â Ž" }, { "input": "classiness's", "output": "⠉⠇â â Žâ Žâ Šâ °â Žâ „â Ž" }, { "input": "classing", "output": "⠉⠇â â Žâ Žâ Œ" }, { "input": "classless", "output": "⠉⠇â â Žâ Žâ ¨â Ž" }, { "input": "classmate", "output": "⠉⠇â â Žâ Žâ â â žâ ‘" }, { "input": "classmate's", "output": "⠉⠇â â Žâ Žâ â â žâ ‘â „â Ž" }, { "input": "classmates", "output": "⠉⠇â â Žâ Žâ â â žâ ‘â Ž" }, { "input": "classroom", "output": "⠉⠇â â Žâ Žâ —â •â •â " }, { "input": "classroom's", "output": "⠉⠇â â Žâ Žâ —â •â •â â „â Ž" }, { "input": "classrooms", "output": "⠉⠇â â Žâ Žâ —â •â •â â Ž" }, { "input": "classwork", "output": "⠉⠇â â Žâ Žâ â º" }, { "input": "classwork's", "output": "⠉⠇â â Žâ Žâ â ºâ „â Ž" }, { "input": "classy", "output": "⠉⠇â â Žâ Žâ ½" }, { "input": "clatter", "output": "⠉⠇â â žâ žâ »" }, { "input": "clatter's", "output": "⠉⠇â â žâ žâ »â „â Ž" }, { "input": "clattered", "output": "⠉⠇â â žâ žâ »â «" }, { "input": "clattering", "output": "⠉⠇â â žâ žâ »â Œ" }, { "input": "clatters", "output": "⠉⠇â â žâ žâ »â Ž" }, { "input": "clausal", "output": "⠉⠇â â ¥â Žâ â ‡" }, { "input": "clause", "output": "⠉⠇â â ¥â Žâ ‘" }, { "input": "clause's", "output": "⠉⠇â â ¥â Žâ ‘â „â Ž" }, { "input": "clauses", "output": "⠉⠇â â ¥â Žâ ‘â Ž" }, { "input": "claustrophobia", "output": "⠉⠇â â ¥â Œâ —â •â â “⠕⠃⠊â " }, { "input": "claustrophobia's", "output": "⠉⠇â â ¥â Œâ —â •â â “⠕⠃⠊â â „â Ž" }, { "input": "claustrophobic", "output": "⠉⠇â â ¥â Œâ —â •â â “⠕⠃⠊⠉" }, { "input": "clavichord", "output": "⠉⠇â â §â Šâ ¡â •â —â ™" }, { "input": "clavichord's", "output": "⠉⠇â â §â Šâ ¡â •⠗⠙⠄⠎" }, { "input": "clavichords", "output": "⠉⠇â â §â Šâ ¡â •⠗⠙⠎" }, { "input": "clavicle", "output": "⠉⠇â â §â Šâ ‰â ‡â ‘" }, { "input": "clavicle's", "output": "⠉⠇â â §â Šâ ‰â ‡â ‘â „â Ž" }, { "input": "clavicles", "output": "⠉⠇â â §â Šâ ‰â ‡â ‘â Ž" }, { "input": "clavier", "output": "⠉⠇â â §â Šâ »" }, { "input": "clavier's", "output": "⠉⠇â â §â Šâ »â „â Ž" }, { "input": "claviers", "output": "⠉⠇â â §â Šâ »â Ž" }, { "input": "claw", "output": "⠉⠇â â º" }, { "input": "claw's", "output": "⠉⠇â â ºâ „â Ž" }, { "input": "clawed", "output": "⠉⠇â â ºâ «" }, { "input": "clawing", "output": "⠉⠇â â ºâ Œ" }, { "input": "claws", "output": "⠉⠇â â ºâ Ž" }, { "input": "clay", "output": "⠉⠇â â ½" }, { "input": "clay's", "output": "⠉⠇â â ½â „â Ž" }, { "input": "clayey", "output": "⠉⠇â â ½â ‘â ½" }, { "input": "clayier", "output": "⠉⠇â â ½â Šâ »" }, { "input": "clayiest", "output": "⠉⠇â â ½â Šâ ‘â Œ" }, { "input": "clean", "output": "⠉⠇⠂â " }, { "input": "cleanable", "output": "⠉⠇⠂â â â ¼" }, { "input": "cleaned", "output": "⠉⠇⠂â â «" }, { "input": "cleaner", "output": "⠉⠇⠂â â »" }, { "input": "cleaner's", "output": "⠉⠇⠂â â »â „â Ž" }, { "input": "cleaners", "output": "⠉⠇⠂â â »â Ž" }, { "input": "cleanest", "output": "⠉⠇⠂â â ‘â Œ" }, { "input": "cleaning", "output": "⠉⠇⠂â â Œ" }, { "input": "cleaning's", "output": "⠉⠇⠂â â Œâ „â Ž" }, { "input": "cleanings", "output": "⠉⠇⠂â â Œâ Ž" }, { "input": "cleanlier", "output": "⠉⠇⠂â â ‡â Šâ »" }, { "input": "cleanliest", "output": "⠉⠇⠂â â ‡â Šâ ‘â Œ" }, { "input": "cleanliness", "output": "⠉⠇⠂â â ‡â Šâ °â Ž" }, { "input": "cleanliness's", "output": "⠉⠇⠂â â ‡â Šâ °â Žâ „â Ž" }, { "input": "cleanly", "output": "⠉⠇⠂â â ‡â ½" }, { "input": "cleanness", "output": "⠉⠇⠂â â °â Ž" }, { "input": "cleanness's", "output": "⠉⠇⠂â â °â Žâ „â Ž" }, { "input": "cleans", "output": "⠉⠇⠂â â Ž" }, { "input": "cleanse", "output": "⠉⠇⠂â â Žâ ‘" }, { "input": "cleansed", "output": "⠉⠇⠂â â Žâ «" }, { "input": "cleanser", "output": "⠉⠇⠂â â Žâ »" }, { "input": "cleanser's", "output": "⠉⠇⠂â â Žâ »â „â Ž" }, { "input": "cleansers", "output": "⠉⠇⠂â â Žâ »â Ž" }, { "input": "cleanses", "output": "⠉⠇⠂â â Žâ ‘â Ž" }, { "input": "cleansing", "output": "⠉⠇⠂â â Žâ Œ" }, { "input": "cleanup", "output": "⠉⠇⠂â â ¥â " }, { "input": "cleanup's", "output": "⠉⠇⠂â â ¥â â „â Ž" }, { "input": "cleanups", "output": "⠉⠇⠂â â ¥â â Ž" }, { "input": "clear", "output": "⠉⠇⠑⠜" }, { "input": "clear's", "output": "⠉⠇⠑⠜⠄⠎" }, { "input": "clearance", "output": "⠉⠇⠑⠜⠨⠑" }, { "input": "clearance's", "output": "⠉⠇⠑⠜⠨⠑⠄⠎" }, { "input": "clearances", "output": "⠉⠇⠑⠜⠨⠑⠎" }, { "input": "cleared", "output": "⠉⠇⠑⠜⠫" }, { "input": "clearer", "output": "⠉⠇⠑⠜⠻" }, { "input": "clearest", "output": "⠉⠇⠑⠜⠑⠌" }, { "input": "clearheaded", "output": "⠉⠇⠑⠜⠓⠂⠙⠫" }, { "input": "clearing", "output": "⠉⠇⠑⠜⠌" }, { "input": "clearing's", "output": "⠉⠇⠑⠜⠌⠄⠎" }, { "input": "clearinghouse", "output": "⠉⠇⠑⠜⠌⠓⠳⠎⠑" }, { "input": "clearinghouse's", "output": "⠉⠇⠑⠜⠌⠓⠳⠎⠑⠄⠎" }, { "input": "clearinghouses", "output": "⠉⠇⠑⠜⠌⠓⠳⠎⠑⠎" }, { "input": "clearings", "output": "⠉⠇⠑⠜⠌⠎" }, { "input": "clearly", "output": "⠉⠇⠑⠜⠇⠽" }, { "input": "clearness", "output": "⠉⠇⠑⠜⠰⠎" }, { "input": "clearness's", "output": "⠉⠇⠑⠜⠰⠎⠄⠎" }, { "input": "clears", "output": "⠉⠇⠑⠜⠎" }, { "input": "cleat", "output": "⠉⠇⠂⠞" }, { "input": "cleat's", "output": "⠉⠇⠂⠞⠄⠎" }, { "input": "cleats", "output": "⠉⠇⠂⠞⠎" }, { "input": "cleavage", "output": "⠉⠇⠂⠧â â ›â ‘" }, { "input": "cleavage's", "output": "⠉⠇⠂⠧â â ›â ‘â „â Ž" }, { "input": "cleavages", "output": "⠉⠇⠂⠧â â ›â ‘â Ž" }, { "input": "cleave", "output": "⠉⠇⠂⠧⠑" }, { "input": "cleaved", "output": "⠉⠇⠂⠧⠫" }, { "input": "cleaver", "output": "⠉⠇⠂⠧⠻" }, { "input": "cleaver's", "output": "⠉⠇⠂⠧⠻⠄⠎" }, { "input": "cleavers", "output": "⠉⠇⠂⠧⠻⠎" }, { "input": "cleaves", "output": "⠉⠇⠂⠧⠑⠎" }, { "input": "cleaving", "output": "⠉⠇⠂⠧⠌" }, { "input": "clef", "output": "⠉⠇⠑⠋" }, { "input": "clef's", "output": "⠉⠇⠑⠋⠄⠎" }, { "input": "clefs", "output": "⠉⠇⠑⠋⠎" }, { "input": "cleft", "output": "⠉⠇⠑⠋⠞" }, { "input": "cleft's", "output": "⠉⠇⠑⠋⠞⠄⠎" }, { "input": "clefts", "output": "⠉⠇⠑⠋⠞⠎" }, { "input": "clematis", "output": "⠉⠇⠑â â â žâ Šâ Ž" }, { "input": "clematis's", "output": "⠉⠇⠑â â â žâ Šâ Žâ „â Ž" }, { "input": "clematises", "output": "⠉⠇⠑â â â žâ Šâ Žâ ‘â Ž" }, { "input": "clemency", "output": "⠉⠇⠑â â ¢â ‰â ½" }, { "input": "clemency's", "output": "⠉⠇⠑â â ¢â ‰â ½â „â Ž" }, { "input": "clement", "output": "⠉⠇⠑⠰⠞" }, { "input": "clemently", "output": "⠉⠇⠑⠰⠞⠇⠽" }, { "input": "clench", "output": "⠉⠇⠢⠡" }, { "input": "clench's", "output": "⠉⠇⠢⠡⠄⠎" }, { "input": "clenched", "output": "⠉⠇⠢⠡⠫" }, { "input": "clenches", "output": "⠉⠇⠢⠡⠑⠎" }, { "input": "clenching", "output": "⠉⠇⠢⠡⠌" }, { "input": "clerestories", "output": "⠉⠇⠻⠑⠌⠕⠗⠊⠑⠎" }, { "input": "clerestory", "output": "⠉⠇⠻⠑⠌⠕⠗⠽" }, { "input": "clerestory's", "output": "⠉⠇⠻⠑⠌⠕⠗⠽⠄⠎" }, { "input": "clergies", "output": "⠉⠇⠻⠛⠊⠑⠎" }, { "input": "clergy", "output": "⠉⠇⠻⠛⠽" }, { "input": "clergy's", "output": "⠉⠇⠻⠛⠽⠄⠎" }, { "input": "clergyman", "output": "⠉⠇⠻⠛⠽â â â " }, { "input": "clergyman's", "output": "⠉⠇⠻⠛⠽â â â â „â Ž" }, { "input": "clergymen", "output": "⠉⠇⠻⠛⠽â â ¢" }, { "input": "clergywoman", "output": "⠉⠇⠻⠛⠽⠺⠕â â â " }, { "input": "clergywoman's", "output": "⠉⠇⠻⠛⠽⠺⠕â â â â „â Ž" }, { "input": "clergywomen", "output": "⠉⠇⠻⠛⠽⠺⠕â â ¢" }, { "input": "cleric", "output": "⠉⠇⠻⠊⠉" }, { "input": "cleric's", "output": "⠉⠇⠻⠊⠉⠄⠎" }, { "input": "clerical", "output": "⠉⠇⠻⠊⠉â â ‡" }, { "input": "clericalism", "output": "⠉⠇⠻⠊⠉â â ‡â Šâ Žâ " }, { "input": "clericalism's", "output": "⠉⠇⠻⠊⠉â â ‡â Šâ Žâ â „â Ž" }, { "input": "clerically", "output": "⠉⠇⠻⠊⠉⠠⠽" }, { "input": "clerics", "output": "⠉⠇⠻⠊⠉⠎" }, { "input": "clerk", "output": "⠉⠇⠻⠅" }, { "input": "clerk's", "output": "⠉⠇⠻⠅⠄⠎" }, { "input": "clerked", "output": "⠉⠇⠻⠅⠫" }, { "input": "clerking", "output": "⠉⠇⠻⠅⠌" }, { "input": "clerks", "output": "⠉⠇⠻⠅⠎" }, { "input": "clerkship", "output": "⠉⠇⠻⠅⠩⠊â " }, { "input": "clerkship's", "output": "⠉⠇⠻⠅⠩⠊â â „â Ž" }, { "input": "clever", "output": "⠉⠇â â ‘" }, { "input": "cleverer", "output": "⠉⠇â â ‘â »" }, { "input": "cleverest", "output": "⠉⠇â â ‘â ‘â Œ" }, { "input": "cleverly", "output": "⠉⠇â â ‘⠇⠽" }, { "input": "cleverness", "output": "⠉⠇â â ‘â °â Ž" }, { "input": "cleverness's", "output": "⠉⠇â â ‘â °â Žâ „â Ž" }, { "input": "clevis", "output": "⠉⠇⠑⠧⠊⠎" }, { "input": "clevis's", "output": "⠉⠇⠑⠧⠊⠎⠄⠎" }, { "input": "clevises", "output": "⠉⠇⠑⠧⠊⠎⠑⠎" }, { "input": "clew", "output": "⠉⠇⠑⠺" }, { "input": "clew's", "output": "⠉⠇⠑⠺⠄⠎" }, { "input": "clewed", "output": "⠉⠇⠑⠺⠫" }, { "input": "clewing", "output": "⠉⠇⠑⠺⠌" }, { "input": "clews", "output": "⠉⠇⠑⠺⠎" }, { "input": "click", "output": "⠉⠇⠊⠉⠅" }, { "input": "click's", "output": "⠉⠇⠊⠉⠅⠄⠎" }, { "input": "clickable", "output": "⠉⠇⠊⠉⠅â â ¼" }, { "input": "clicked", "output": "⠉⠇⠊⠉⠅⠫" }, { "input": "clicker", "output": "⠉⠇⠊⠉⠅⠻" }, { "input": "clicker's", "output": "⠉⠇⠊⠉⠅⠻⠄⠎" }, { "input": "clickers", "output": "⠉⠇⠊⠉⠅⠻⠎" }, { "input": "clicking", "output": "⠉⠇⠊⠉⠅⠌" }, { "input": "clicks", "output": "⠉⠇⠊⠉⠅⠎" }, { "input": "client", "output": "⠉⠇⠊⠢⠞" }, { "input": "client's", "output": "⠉⠇⠊⠢⠞⠄⠎" }, { "input": "clients", "output": "⠉⠇⠊⠢⠞⠎" }, { "input": "cliff", "output": "⠉⠇⠊⠋⠋" }, { "input": "cliff's", "output": "⠉⠇⠊⠋⠋⠄⠎" }, { "input": "cliffhanger", "output": "⠉⠇⠊⠖⠓â â â ›â »" }, { "input": "cliffhanger's", "output": "⠉⠇⠊⠖⠓â â â ›â »â „â Ž" }, { "input": "cliffhangers", "output": "⠉⠇⠊⠖⠓â â â ›â »â Ž" }, { "input": "cliffs", "output": "⠉⠇⠊⠖⠎" }, { "input": "climacteric", "output": "⠉⠇⠊â â â ‰â žâ »â Šâ ‰" }, { "input": "climacteric's", "output": "⠉⠇⠊â â â ‰â žâ »â Šâ ‰â „â Ž" }, { "input": "climactic", "output": "⠉⠇⠊â â â ‰â žâ Šâ ‰" }, { "input": "climate", "output": "⠉⠇⠊â â â žâ ‘" }, { "input": "climate's", "output": "⠉⠇⠊â â â žâ ‘â „â Ž" }, { "input": "climates", "output": "⠉⠇⠊â â â žâ ‘â Ž" }, { "input": "climatic", "output": "⠉⠇⠊â â â žâ Šâ ‰" }, { "input": "climatically", "output": "⠉⠇⠊â â â žâ Šâ ‰â  â ½" }, { "input": "climatology's", "output": "⠉⠇⠊â â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "climax", "output": "⠉⠇⠊â â â ­" }, { "input": "climax's", "output": "⠉⠇⠊â â â ­â „â Ž" }, { "input": "climaxed", "output": "⠉⠇⠊â â â ­â «" }, { "input": "climaxes", "output": "⠉⠇⠊â â â ­â ‘â Ž" }, { "input": "climaxing", "output": "⠉⠇⠊â â â ­â Œ" }, { "input": "climb", "output": "⠉⠇⠊â â ƒ" }, { "input": "climb's", "output": "⠉⠇⠊â â ƒâ „â Ž" }, { "input": "climbable", "output": "⠉⠇⠊â â ƒâ â ¼" }, { "input": "climbed", "output": "⠉⠇⠊â â ƒâ «" }, { "input": "climber", "output": "⠉⠇⠊â â ƒâ »" }, { "input": "climber's", "output": "⠉⠇⠊â â ƒâ »â „â Ž" }, { "input": "climbers", "output": "⠉⠇⠊â â ƒâ »â Ž" }, { "input": "climbing", "output": "⠉⠇⠊â â ƒâ Œ" }, { "input": "climbing's", "output": "⠉⠇⠊â â ƒâ Œâ „â Ž" }, { "input": "climbs", "output": "⠉⠇⠊â â ƒâ Ž" }, { "input": "clime", "output": "⠉⠇⠊â â ‘" }, { "input": "clime's", "output": "⠉⠇⠊â â ‘â „â Ž" }, { "input": "climes", "output": "⠉⠇⠊â â ‘â Ž" }, { "input": "clinch", "output": "⠉⠇⠔⠡" }, { "input": "clinch's", "output": "⠉⠇⠔⠡⠄⠎" }, { "input": "clinched", "output": "⠉⠇⠔⠡⠫" }, { "input": "clincher", "output": "⠉⠇⠔⠡⠻" }, { "input": "clincher's", "output": "⠉⠇⠔⠡⠻⠄⠎" }, { "input": "clinchers", "output": "⠉⠇⠔⠡⠻⠎" }, { "input": "clinches", "output": "⠉⠇⠔⠡⠑⠎" }, { "input": "clinching", "output": "⠉⠇⠔⠡⠌" }, { "input": "cling", "output": "⠉⠇⠌" }, { "input": "cling's", "output": "⠉⠇⠌⠄⠎" }, { "input": "clinger", "output": "⠉⠇⠌⠻" }, { "input": "clinger's", "output": "⠉⠇⠌⠻⠄⠎" }, { "input": "clingers", "output": "⠉⠇⠌⠻⠎" }, { "input": "clingier", "output": "⠉⠇⠌⠊⠻" }, { "input": "clingiest", "output": "⠉⠇⠌⠊⠑⠌" }, { "input": "clinging", "output": "⠉⠇⠌⠌" }, { "input": "clings", "output": "⠉⠇⠌⠎" }, { "input": "clingy", "output": "⠉⠇⠌⠽" }, { "input": "clinic", "output": "⠉⠇⠔⠊⠉" }, { "input": "clinic's", "output": "⠉⠇⠔⠊⠉⠄⠎" }, { "input": "clinical", "output": "⠉⠇⠔⠊⠉â â ‡" }, { "input": "clinically", "output": "⠉⠇⠔⠊⠉⠠⠽" }, { "input": "clinician", "output": "⠉⠇⠔⠊⠉⠊â â " }, { "input": "clinician's", "output": "⠉⠇⠔⠊⠉⠊â â â „â Ž" }, { "input": "clinicians", "output": "⠉⠇⠔⠊⠉⠊â â â Ž" }, { "input": "clinics", "output": "⠉⠇⠔⠊⠉⠎" }, { "input": "clink", "output": "⠉⠇⠔⠅" }, { "input": "clink's", "output": "⠉⠇⠔⠅⠄⠎" }, { "input": "clinked", "output": "⠉⠇⠔⠅⠫" }, { "input": "clinker", "output": "⠉⠇⠔⠅⠻" }, { "input": "clinker's", "output": "⠉⠇⠔⠅⠻⠄⠎" }, { "input": "clinkers", "output": "⠉⠇⠔⠅⠻⠎" }, { "input": "clinking", "output": "⠉⠇⠔⠅⠌" }, { "input": "clinks", "output": "⠉⠇⠔⠅⠎" }, { "input": "cliometric", "output": "⠉⠇⠊⠕â â ‘â žâ —â Šâ ‰" }, { "input": "cliometrician", "output": "⠉⠇⠊⠕â â ‘⠞⠗⠊⠉⠊â â " }, { "input": "cliometrician's", "output": "⠉⠇⠊⠕â â ‘⠞⠗⠊⠉⠊â â â „â Ž" }, { "input": "cliometricians", "output": "⠉⠇⠊⠕â â ‘⠞⠗⠊⠉⠊â â â Ž" }, { "input": "cliometrics", "output": "⠉⠇⠊⠕â â ‘⠞⠗⠊⠉⠎" }, { "input": "cliometrics's", "output": "⠉⠇⠊⠕â â ‘⠞⠗⠊⠉⠎⠄⠎" }, { "input": "clip", "output": "⠉⠇⠊â " }, { "input": "clip's", "output": "⠉⠇⠊â â „â Ž" }, { "input": "clipboard", "output": "⠉⠇⠊â â ƒâ •⠜⠙" }, { "input": "clipboard's", "output": "⠉⠇⠊â â ƒâ •⠜⠙⠄⠎" }, { "input": "clipboards", "output": "⠉⠇⠊â â ƒâ •⠜⠙⠎" }, { "input": "clipped", "output": "⠉⠇⠊â â â «" }, { "input": "clipper", "output": "⠉⠇⠊â â â »" }, { "input": "clipper's", "output": "⠉⠇⠊â â â »â „â Ž" }, { "input": "clippers", "output": "⠉⠇⠊â â â »â Ž" }, { "input": "clipping", "output": "⠉⠇⠊â â â Œ" }, { "input": "clipping's", "output": "⠉⠇⠊â â â Œâ „â Ž" }, { "input": "clippings", "output": "⠉⠇⠊â â â Œâ Ž" }, { "input": "clips", "output": "⠉⠇⠊â â Ž" }, { "input": "clique", "output": "⠉⠇⠊⠟⠥⠑" }, { "input": "clique's", "output": "⠉⠇⠊⠟⠥⠑⠄⠎" }, { "input": "cliques", "output": "⠉⠇⠊⠟⠥⠑⠎" }, { "input": "cliquier", "output": "⠉⠇⠊⠟⠥⠊⠻" }, { "input": "cliquiest", "output": "⠉⠇⠊⠟⠥⠊⠑⠌" }, { "input": "cliquish", "output": "⠉⠇⠊⠟⠥⠊⠩" }, { "input": "cliquishly", "output": "⠉⠇⠊⠟⠥⠊⠩⠇⠽" }, { "input": "cliquishness", "output": "⠉⠇⠊⠟⠥⠊⠩⠰⠎" }, { "input": "cliquishness's", "output": "⠉⠇⠊⠟⠥⠊⠩⠰⠎⠄⠎" }, { "input": "clitoral", "output": "⠉⠇⠊⠞⠕⠗â â ‡" }, { "input": "clitorides", "output": "⠉⠇⠊⠞⠕⠗⠊⠙⠑⠎" }, { "input": "clitoris", "output": "⠉⠇⠊⠞⠕⠗⠊⠎" }, { "input": "clitoris's", "output": "⠉⠇⠊⠞⠕⠗⠊⠎⠄⠎" }, { "input": "clitorises", "output": "⠉⠇⠊⠞⠕⠗⠊⠎⠑⠎" }, { "input": "cloaca", "output": "⠉⠇⠕â â ‰â " }, { "input": "cloaca's", "output": "⠉⠇⠕â â ‰â â „â Ž" }, { "input": "cloacae", "output": "⠉⠇⠕â â ‰â â ‘" }, { "input": "cloak", "output": "⠉⠇⠕â â …" }, { "input": "cloak's", "output": "⠉⠇⠕â â …â „â Ž" }, { "input": "cloaked", "output": "⠉⠇⠕â â …â «" }, { "input": "cloaking", "output": "⠉⠇⠕â â …â Œ" }, { "input": "cloakroom", "output": "⠉⠇⠕â â …â —â •â •â " }, { "input": "cloakroom's", "output": "⠉⠇⠕â â …â —â •â •â â „â Ž" }, { "input": "cloakrooms", "output": "⠉⠇⠕â â …â —â •â •â â Ž" }, { "input": "cloaks", "output": "⠉⠇⠕â â …â Ž" }, { "input": "clobber", "output": "⠉⠇⠕⠆⠻" }, { "input": "clobber's", "output": "⠉⠇⠕⠆⠻⠄⠎" }, { "input": "clobbered", "output": "⠉⠇⠕⠆⠻⠫" }, { "input": "clobbering", "output": "⠉⠇⠕⠆⠻⠌" }, { "input": "clobbers", "output": "⠉⠇⠕⠆⠻⠎" }, { "input": "cloche", "output": "⠉⠇⠕⠡⠑" }, { "input": "cloche's", "output": "⠉⠇⠕⠡⠑⠄⠎" }, { "input": "cloches", "output": "⠉⠇⠕⠡⠑⠎" }, { "input": "clock", "output": "⠉⠇⠕⠉⠅" }, { "input": "clock's", "output": "⠉⠇⠕⠉⠅⠄⠎" }, { "input": "clocked", "output": "⠉⠇⠕⠉⠅⠫" }, { "input": "clocking", "output": "⠉⠇⠕⠉⠅⠌" }, { "input": "clocks", "output": "⠉⠇⠕⠉⠅⠎" }, { "input": "clockwise", "output": "⠉⠇⠕⠉⠅⠺⠊⠎⠑" }, { "input": "clockwork", "output": "⠉⠇⠕⠉⠅â â º" }, { "input": "clockwork's", "output": "⠉⠇⠕⠉⠅â â ºâ „â Ž" }, { "input": "clockworks", "output": "⠉⠇⠕⠉⠅â â ºâ Ž" }, { "input": "clod", "output": "⠉⠇⠕⠙" }, { "input": "clod's", "output": "⠉⠇⠕⠙⠄⠎" }, { "input": "cloddish", "output": "⠉⠇⠕⠲⠊⠩" }, { "input": "clodhopper", "output": "⠉⠇⠕⠙⠓⠕â â â »" }, { "input": "clodhopper's", "output": "⠉⠇⠕⠙⠓⠕â â â »â „â Ž" }, { "input": "clodhoppers", "output": "⠉⠇⠕⠙⠓⠕â â â »â Ž" }, { "input": "clods", "output": "⠉⠇⠕⠙⠎" }, { "input": "clog", "output": "⠉⠇⠕⠛" }, { "input": "clog's", "output": "⠉⠇⠕⠛⠄⠎" }, { "input": "clogged", "output": "⠉⠇⠕⠶⠫" }, { "input": "clogging", "output": "⠉⠇⠕⠶⠌" }, { "input": "clogs", "output": "⠉⠇⠕⠛⠎" }, { "input": "cloister", "output": "⠉⠇⠕⠊⠌⠻" }, { "input": "cloister's", "output": "⠉⠇⠕⠊⠌⠻⠄⠎" }, { "input": "cloistered", "output": "⠉⠇⠕⠊⠌⠻⠫" }, { "input": "cloistering", "output": "⠉⠇⠕⠊⠌⠻⠌" }, { "input": "cloisters", "output": "⠉⠇⠕⠊⠌⠻⠎" }, { "input": "cloistral", "output": "⠉⠇⠕⠊⠌⠗â â ‡" }, { "input": "clomp", "output": "⠉⠇⠕â â " }, { "input": "clomped", "output": "⠉⠇⠕â â â «" }, { "input": "clomping", "output": "⠉⠇⠕â â â Œ" }, { "input": "clomps", "output": "⠉⠇⠕â â â Ž" }, { "input": "clonal", "output": "⠉⠇⠕â â â ‡" }, { "input": "clone", "output": "⠉⠇â â •" }, { "input": "clone's", "output": "⠉⠇â â •â „â Ž" }, { "input": "cloned", "output": "⠉⠇⠕â â «" }, { "input": "clones", "output": "⠉⠇â â •â Ž" }, { "input": "cloning", "output": "⠉⠇⠕â â Œ" }, { "input": "clop", "output": "⠉⠇⠕â " }, { "input": "clop's", "output": "⠉⠇⠕â â „â Ž" }, { "input": "clopped", "output": "⠉⠇⠕â â â «" }, { "input": "clopping", "output": "⠉⠇⠕â â â Œ" }, { "input": "clops", "output": "⠉⠇⠕â â Ž" }, { "input": "close", "output": "⠉⠇⠕⠎⠑" }, { "input": "close's", "output": "⠉⠇⠕⠎⠑⠄⠎" }, { "input": "closed", "output": "⠉⠇⠕⠎⠫" }, { "input": "closefisted", "output": "⠉⠇⠕⠎⠑⠋⠊⠌⠫" }, { "input": "closely", "output": "⠉⠇⠕⠎⠑⠇⠽" }, { "input": "closemouthed", "output": "⠉⠇⠕⠎⠑â â ³â ®â ™" }, { "input": "closeness", "output": "⠉⠇⠕⠎⠑⠰⠎" }, { "input": "closeness's", "output": "⠉⠇⠕⠎⠑⠰⠎⠄⠎" }, { "input": "closeout", "output": "⠉⠇⠕⠎⠑⠳⠞" }, { "input": "closeout's", "output": "⠉⠇⠕⠎⠑⠳⠞⠄⠎" }, { "input": "closeouts", "output": "⠉⠇⠕⠎⠑⠳⠞⠎" }, { "input": "closer", "output": "⠉⠇⠕⠎⠻" }, { "input": "closes", "output": "⠉⠇⠕⠎⠑⠎" }, { "input": "closest", "output": "⠉⠇⠕⠎⠑⠌" }, { "input": "closet", "output": "⠉⠇⠕⠎⠑⠞" }, { "input": "closet's", "output": "⠉⠇⠕⠎⠑⠞⠄⠎" }, { "input": "closeted", "output": "⠉⠇⠕⠎⠑⠞⠫" }, { "input": "closeting", "output": "⠉⠇⠕⠎⠑⠞⠌" }, { "input": "closets", "output": "⠉⠇⠕⠎⠑⠞⠎" }, { "input": "closeup", "output": "⠉⠇⠕⠎⠑⠥â " }, { "input": "closeup's", "output": "⠉⠇⠕⠎⠑⠥â â „â Ž" }, { "input": "closeups", "output": "⠉⠇⠕⠎⠑⠥â â Ž" }, { "input": "closing", "output": "⠉⠇⠕⠎⠌" }, { "input": "closing's", "output": "⠉⠇⠕⠎⠌⠄⠎" }, { "input": "closings", "output": "⠉⠇⠕⠎⠌⠎" }, { "input": "closure", "output": "⠉⠇⠕⠎⠥⠗⠑" }, { "input": "closure's", "output": "⠉⠇⠕⠎⠥⠗⠑⠄⠎" }, { "input": "closures", "output": "⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "clot", "output": "⠉⠇⠕⠞" }, { "input": "clot's", "output": "⠉⠇⠕⠞⠄⠎" }, { "input": "cloth", "output": "⠉⠇⠕⠹" }, { "input": "cloth's", "output": "⠉⠇⠕⠹⠄⠎" }, { "input": "clothe", "output": "⠉⠇⠕⠮" }, { "input": "clothed", "output": "⠉⠇⠕⠮⠙" }, { "input": "clothes", "output": "⠉⠇⠕⠮⠎" }, { "input": "clotheshorse", "output": "⠉⠇⠕⠮⠎⠓⠕⠗⠎⠑" }, { "input": "clotheshorse's", "output": "⠉⠇⠕⠮⠎⠓⠕⠗⠎⠑⠄⠎" }, { "input": "clotheshorses", "output": "⠉⠇⠕⠮⠎⠓⠕⠗⠎⠑⠎" }, { "input": "clothesline", "output": "⠉⠇⠕⠮⠎⠇⠔⠑" }, { "input": "clothesline's", "output": "⠉⠇⠕⠮⠎⠇⠔⠑⠄⠎" }, { "input": "clotheslines", "output": "⠉⠇⠕⠮⠎⠇⠔⠑⠎" }, { "input": "clothespin", "output": "⠉⠇⠕⠮⠎â â ”" }, { "input": "clothespin's", "output": "⠉⠇⠕⠮⠎â â ”â „â Ž" }, { "input": "clothespins", "output": "⠉⠇⠕⠮⠎â â ”â Ž" }, { "input": "clothier", "output": "⠉⠇⠕⠹⠊⠻" }, { "input": "clothier's", "output": "⠉⠇⠕⠹⠊⠻⠄⠎" }, { "input": "clothiers", "output": "⠉⠇⠕⠹⠊⠻⠎" }, { "input": "clothing", "output": "⠉⠇⠕⠹⠌" }, { "input": "clothing's", "output": "⠉⠇⠕⠹⠌⠄⠎" }, { "input": "cloths", "output": "⠉⠇⠕⠹⠎" }, { "input": "clots", "output": "⠉⠇⠕⠞⠎" }, { "input": "clotted", "output": "⠉⠇⠕⠞⠞⠫" }, { "input": "clotting", "output": "⠉⠇⠕⠞⠞⠌" }, { "input": "cloture", "output": "⠉⠇⠕⠞⠥⠗⠑" }, { "input": "cloture's", "output": "⠉⠇⠕⠞⠥⠗⠑⠄⠎" }, { "input": "clotures", "output": "⠉⠇⠕⠞⠥⠗⠑⠎" }, { "input": "cloud", "output": "⠉⠇⠳⠙" }, { "input": "cloud's", "output": "⠉⠇⠳⠙⠄⠎" }, { "input": "cloudburst", "output": "⠉⠇⠳⠙⠃⠥⠗⠌" }, { "input": "cloudburst's", "output": "⠉⠇⠳⠙⠃⠥⠗⠌⠄⠎" }, { "input": "cloudbursts", "output": "⠉⠇⠳⠙⠃⠥⠗⠌⠎" }, { "input": "clouded", "output": "⠉⠇⠳⠙⠫" }, { "input": "cloudier", "output": "⠉⠇⠳⠙⠊⠻" }, { "input": "cloudiest", "output": "⠉⠇⠳⠙⠊⠑⠌" }, { "input": "cloudiness", "output": "⠉⠇⠳⠙⠊⠰⠎" }, { "input": "cloudiness's", "output": "⠉⠇⠳⠙⠊⠰⠎⠄⠎" }, { "input": "clouding", "output": "⠉⠇⠳⠙⠌" }, { "input": "cloudless", "output": "⠉⠇⠳⠙⠨⠎" }, { "input": "clouds", "output": "⠉⠇⠳⠙⠎" }, { "input": "cloudy", "output": "⠉⠇⠳⠙⠽" }, { "input": "clout", "output": "⠉⠇⠳⠞" }, { "input": "clout's", "output": "⠉⠇⠳⠞⠄⠎" }, { "input": "clouted", "output": "⠉⠇⠳⠞⠫" }, { "input": "clouting", "output": "⠉⠇⠳⠞⠌" }, { "input": "clouts", "output": "⠉⠇⠳⠞⠎" }, { "input": "clove", "output": "⠉⠇⠕⠧⠑" }, { "input": "clove's", "output": "⠉⠇⠕⠧⠑⠄⠎" }, { "input": "cloven", "output": "⠉⠇⠕⠧⠢" }, { "input": "clover", "output": "⠉⠇⠕⠧⠻" }, { "input": "clover's", "output": "⠉⠇⠕⠧⠻⠄⠎" }, { "input": "cloverleaf", "output": "⠉⠇⠕⠧⠻⠇⠂⠋" }, { "input": "cloverleaf's", "output": "⠉⠇⠕⠧⠻⠇⠂⠋⠄⠎" }, { "input": "cloverleafs", "output": "⠉⠇⠕⠧⠻⠇⠂⠋⠎" }, { "input": "cloverleaves", "output": "⠉⠇⠕⠧⠻⠇⠂⠧⠑⠎" }, { "input": "clovers", "output": "⠉⠇⠕⠧⠻⠎" }, { "input": "cloves", "output": "⠉⠇⠕⠧⠑⠎" }, { "input": "clown", "output": "⠉⠇⠪â " }, { "input": "clown's", "output": "⠉⠇⠪â â „â Ž" }, { "input": "clowned", "output": "⠉⠇⠪â â «" }, { "input": "clowning", "output": "⠉⠇⠪â â Œ" }, { "input": "clownish", "output": "⠉⠇⠪â â Šâ ©" }, { "input": "clownishly", "output": "⠉⠇⠪â â Šâ ©â ‡â ½" }, { "input": "clownishness", "output": "⠉⠇⠪â â Šâ ©â °â Ž" }, { "input": "clownishness's", "output": "⠉⠇⠪â â Šâ ©â °â Žâ „â Ž" }, { "input": "clowns", "output": "⠉⠇⠪â â Ž" }, { "input": "cloy", "output": "⠉⠇⠕⠽" }, { "input": "cloyed", "output": "⠉⠇⠕⠽⠫" }, { "input": "cloying", "output": "⠉⠇⠕⠽⠌" }, { "input": "cloys", "output": "⠉⠇⠕⠽⠎" }, { "input": "club", "output": "⠉⠇⠥⠃" }, { "input": "club's", "output": "⠉⠇⠥⠃⠄⠎" }, { "input": "clubbed", "output": "⠉⠇⠥⠆⠫" }, { "input": "clubbing", "output": "⠉⠇⠥⠆⠌" }, { "input": "clubfeet", "output": "⠉⠇⠥⠃⠋⠑⠑⠞" }, { "input": "clubfoot", "output": "⠉⠇⠥⠃⠋⠕⠕⠞" }, { "input": "clubfoot's", "output": "⠉⠇⠥⠃⠋⠕⠕⠞⠄⠎" }, { "input": "clubfooted", "output": "⠉⠇⠥⠃⠋⠕⠕⠞⠫" }, { "input": "clubhouse", "output": "⠉⠇⠥⠃⠓⠳⠎⠑" }, { "input": "clubhouse's", "output": "⠉⠇⠥⠃⠓⠳⠎⠑⠄⠎" }, { "input": "clubhouses", "output": "⠉⠇⠥⠃⠓⠳⠎⠑⠎" }, { "input": "clubs", "output": "⠉⠇⠥⠃⠎" }, { "input": "cluck", "output": "⠉⠇⠥⠉⠅" }, { "input": "cluck's", "output": "⠉⠇⠥⠉⠅⠄⠎" }, { "input": "clucked", "output": "⠉⠇⠥⠉⠅⠫" }, { "input": "clucking", "output": "⠉⠇⠥⠉⠅⠌" }, { "input": "clucks", "output": "⠉⠇⠥⠉⠅⠎" }, { "input": "clue", "output": "⠉⠇⠥⠑" }, { "input": "clue's", "output": "⠉⠇⠥⠑⠄⠎" }, { "input": "clued", "output": "⠉⠇⠥⠫" }, { "input": "clueless", "output": "⠉⠇⠥⠑⠨⠎" }, { "input": "clues", "output": "⠉⠇⠥⠑⠎" }, { "input": "cluing", "output": "⠉⠇⠥⠌" }, { "input": "clump", "output": "⠉⠇⠥â â " }, { "input": "clump's", "output": "⠉⠇⠥â â â „â Ž" }, { "input": "clumped", "output": "⠉⠇⠥â â â «" }, { "input": "clumpier", "output": "⠉⠇⠥â â â Šâ »" }, { "input": "clumpiest", "output": "⠉⠇⠥â â â Šâ ‘â Œ" }, { "input": "clumping", "output": "⠉⠇⠥â â â Œ" }, { "input": "clumps", "output": "⠉⠇⠥â â â Ž" }, { "input": "clumsier", "output": "⠉⠇⠥â â Žâ Šâ »" }, { "input": "clumsiest", "output": "⠉⠇⠥â â Žâ Šâ ‘â Œ" }, { "input": "clumsily", "output": "⠉⠇⠥â â Žâ Šâ ‡â ½" }, { "input": "clumsiness", "output": "⠉⠇⠥â â Žâ Šâ °â Ž" }, { "input": "clumsiness's", "output": "⠉⠇⠥â â Žâ Šâ °â Žâ „â Ž" }, { "input": "clumsy", "output": "⠉⠇⠥â â Žâ ½" }, { "input": "clung", "output": "⠉⠇⠥â â ›" }, { "input": "clunk", "output": "⠉⠇⠥â â …" }, { "input": "clunk's", "output": "⠉⠇⠥â â …â „â Ž" }, { "input": "clunked", "output": "⠉⠇⠥â â …â «" }, { "input": "clunker", "output": "⠉⠇⠥â â …â »" }, { "input": "clunker's", "output": "⠉⠇⠥â â …⠻⠄⠎" }, { "input": "clunkers", "output": "⠉⠇⠥â â …⠻⠎" }, { "input": "clunkier", "output": "⠉⠇⠥â â …â Šâ »" }, { "input": "clunkiest", "output": "⠉⠇⠥â â …â Šâ ‘â Œ" }, { "input": "clunking", "output": "⠉⠇⠥â â …â Œ" }, { "input": "clunks", "output": "⠉⠇⠥â â …â Ž" }, { "input": "clunky", "output": "⠉⠇⠥â â …â ½" }, { "input": "cluster", "output": "⠉⠇⠥⠌⠻" }, { "input": "cluster's", "output": "⠉⠇⠥⠌⠻⠄⠎" }, { "input": "clustered", "output": "⠉⠇⠥⠌⠻⠫" }, { "input": "clustering", "output": "⠉⠇⠥⠌⠻⠌" }, { "input": "clusters", "output": "⠉⠇⠥⠌⠻⠎" }, { "input": "clutch", "output": "⠉⠇⠥⠞⠡" }, { "input": "clutch's", "output": "⠉⠇⠥⠞⠡⠄⠎" }, { "input": "clutched", "output": "⠉⠇⠥⠞⠡⠫" }, { "input": "clutches", "output": "⠉⠇⠥⠞⠡⠑⠎" }, { "input": "clutching", "output": "⠉⠇⠥⠞⠡⠌" }, { "input": "clutter", "output": "⠉⠇⠥⠞⠞⠻" }, { "input": "clutter's", "output": "⠉⠇⠥⠞⠞⠻⠄⠎" }, { "input": "cluttered", "output": "⠉⠇⠥⠞⠞⠻⠫" }, { "input": "cluttering", "output": "⠉⠇⠥⠞⠞⠻⠌" }, { "input": "clutters", "output": "⠉⠇⠥⠞⠞⠻⠎" }, { "input": "cnidarian", "output": "â ‰â â Šâ ™â œâ Šâ â " }, { "input": "cnidarian's", "output": "â ‰â â Šâ ™â œâ Šâ â â „â Ž" }, { "input": "cnidarians", "output": "â ‰â â Šâ ™â œâ Šâ â â Ž" }, { "input": "coach", "output": "⠉⠕â â ¡" }, { "input": "coach's", "output": "⠉⠕â â ¡â „â Ž" }, { "input": "coached", "output": "⠉⠕â â ¡â «" }, { "input": "coaches", "output": "⠉⠕â â ¡â ‘â Ž" }, { "input": "coaching", "output": "⠉⠕â â ¡â Œ" }, { "input": "coachman", "output": "⠉⠕â â ¡â â â " }, { "input": "coachman's", "output": "⠉⠕â â ¡â â â â „â Ž" }, { "input": "coachmen", "output": "⠉⠕â â ¡â â ¢" }, { "input": "coadjutor", "output": "⠉⠕â â ™â šâ ¥â žâ •â —" }, { "input": "coadjutor's", "output": "⠉⠕â â ™â šâ ¥â žâ •â —â „â Ž" }, { "input": "coadjutors", "output": "⠉⠕â â ™â šâ ¥â žâ •â —â Ž" }, { "input": "coagulant", "output": "⠉⠕â â ›â ¥â ‡â â â ž" }, { "input": "coagulant's", "output": "⠉⠕â â ›â ¥â ‡â â â žâ „â Ž" }, { "input": "coagulants", "output": "⠉⠕â â ›â ¥â ‡â â â žâ Ž" }, { "input": "coagulate", "output": "⠉⠕â â ›â ¥â ‡â â žâ ‘" }, { "input": "coagulated", "output": "⠉⠕â â ›â ¥â ‡â â žâ «" }, { "input": "coagulates", "output": "⠉⠕â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "coagulating", "output": "⠉⠕â â ›â ¥â ‡â â žâ Œ" }, { "input": "coagulation", "output": "⠉⠕â â ›â ¥â ‡â  â " }, { "input": "coagulation's", "output": "⠉⠕â â ›â ¥â ‡â  â â „â Ž" }, { "input": "coagulator", "output": "⠉⠕â â ›â ¥â ‡â â žâ •â —" }, { "input": "coagulator's", "output": "⠉⠕â â ›â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "coagulators", "output": "⠉⠕â â ›â ¥â ‡â â žâ •â —â Ž" }, { "input": "coal", "output": "⠉⠕â â ‡" }, { "input": "coal's", "output": "⠉⠕â â ‡â „â Ž" }, { "input": "coaled", "output": "⠉⠕â â ‡â «" }, { "input": "coalesce", "output": "⠉⠕â â ‡â ‘⠎⠉⠑" }, { "input": "coalesced", "output": "⠉⠕â â ‡â ‘⠎⠉⠫" }, { "input": "coalescence", "output": "⠉⠕â â ‡â ‘⠎⠉⠰⠑" }, { "input": "coalescence's", "output": "⠉⠕â â ‡â ‘⠎⠉⠰⠑⠄⠎" }, { "input": "coalescent", "output": "⠉⠕â â ‡â ‘⠎⠉⠢⠞" }, { "input": "coalesces", "output": "⠉⠕â â ‡â ‘⠎⠉⠑⠎" }, { "input": "coalescing", "output": "⠉⠕â â ‡â ‘⠎⠉⠌" }, { "input": "coaling", "output": "⠉⠕â â ‡â Œ" }, { "input": "coalition", "output": "⠉⠕â â ‡â Šâ °â " }, { "input": "coalition's", "output": "⠉⠕â â ‡â Šâ °â â „â Ž" }, { "input": "coalitionist", "output": "⠉⠕â â ‡â Šâ °â â Šâ Œ" }, { "input": "coalitionist's", "output": "⠉⠕â â ‡â Šâ °â â Šâ Œâ „â Ž" }, { "input": "coalitionists", "output": "⠉⠕â â ‡â Šâ °â â Šâ Œâ Ž" }, { "input": "coalitions", "output": "⠉⠕â â ‡â Šâ °â â Ž" }, { "input": "coals", "output": "⠉⠕â â ‡â Ž" }, { "input": "coarse", "output": "⠉⠕⠜⠎⠑" }, { "input": "coarsely", "output": "⠉⠕⠜⠎⠑⠇⠽" }, { "input": "coarsen", "output": "⠉⠕⠜⠎⠢" }, { "input": "coarsened", "output": "⠉⠕⠜⠎⠢⠫" }, { "input": "coarseness", "output": "⠉⠕⠜⠎⠑⠰⠎" }, { "input": "coarseness's", "output": "⠉⠕⠜⠎⠑⠰⠎⠄⠎" }, { "input": "coarsening", "output": "⠉⠕⠜⠎⠢⠌" }, { "input": "coarsens", "output": "⠉⠕⠜⠎⠢⠎" }, { "input": "coarser", "output": "⠉⠕⠜⠎⠻" }, { "input": "coarsest", "output": "⠉⠕⠜⠎⠑⠌" }, { "input": "coast", "output": "⠉⠕â â Œ" }, { "input": "coast's", "output": "⠉⠕â â Œâ „â Ž" }, { "input": "coastal", "output": "⠉⠕â â Œâ â ‡" }, { "input": "coasted", "output": "⠉⠕â â Œâ «" }, { "input": "coaster", "output": "⠉⠕â â Œâ »" }, { "input": "coaster's", "output": "⠉⠕â â Œâ »â „â Ž" }, { "input": "coasters", "output": "⠉⠕â â Œâ »â Ž" }, { "input": "coasting", "output": "⠉⠕â â Œâ Œ" }, { "input": "coastline", "output": "⠉⠕â â Œâ ‡â ”â ‘" }, { "input": "coastline's", "output": "⠉⠕â â Œâ ‡â ”â ‘â „â Ž" }, { "input": "coastlines", "output": "⠉⠕â â Œâ ‡â ”â ‘â Ž" }, { "input": "coasts", "output": "⠉⠕â â Œâ Ž" }, { "input": "coat", "output": "⠉⠕â â ž" }, { "input": "coat's", "output": "⠉⠕â â žâ „â Ž" }, { "input": "coated", "output": "⠉⠕â â žâ «" }, { "input": "coating", "output": "⠉⠕â â žâ Œ" }, { "input": "coating's", "output": "⠉⠕â â žâ Œâ „â Ž" }, { "input": "coatings", "output": "⠉⠕â â žâ Œâ Ž" }, { "input": "coats", "output": "⠉⠕â â žâ Ž" }, { "input": "coauthor", "output": "⠉⠕â â ¥â ¹â •â —" }, { "input": "coauthor's", "output": "⠉⠕â â ¥â ¹â •â —â „â Ž" }, { "input": "coauthored", "output": "⠉⠕â â ¥â ¹â •â —â «" }, { "input": "coauthoring", "output": "⠉⠕â â ¥â ¹â •â —â Œ" }, { "input": "coauthors", "output": "⠉⠕â â ¥â ¹â •â —â Ž" }, { "input": "coax", "output": "⠉⠕â â ­" }, { "input": "coaxed", "output": "⠉⠕â â ­â «" }, { "input": "coaxer", "output": "⠉⠕â â ­â »" }, { "input": "coaxer's", "output": "⠉⠕â â ­â »â „â Ž" }, { "input": "coaxers", "output": "⠉⠕â â ­â »â Ž" }, { "input": "coaxes", "output": "⠉⠕â â ­â ‘â Ž" }, { "input": "coaxial", "output": "⠉⠕â â ­â Šâ â ‡" }, { "input": "coaxing", "output": "⠉⠕â â ­â Œ" }, { "input": "cob", "output": "⠉⠕⠃" }, { "input": "cob's", "output": "⠉⠕⠃⠄⠎" }, { "input": "cobalt", "output": "⠉⠕⠃â â ‡â ž" }, { "input": "cobalt's", "output": "⠉⠕⠃â â ‡â žâ „â Ž" }, { "input": "cobble", "output": "⠉⠕⠃⠼" }, { "input": "cobble's", "output": "⠉⠕⠃⠼⠄⠎" }, { "input": "cobbled", "output": "⠉⠕⠃⠼⠙" }, { "input": "cobbler", "output": "⠉⠕⠃⠼⠗" }, { "input": "cobbler's", "output": "⠉⠕⠃⠼⠗⠄⠎" }, { "input": "cobblers", "output": "⠉⠕⠃⠼⠗⠎" }, { "input": "cobbles", "output": "⠉⠕⠃⠼⠎" }, { "input": "cobblestone", "output": "⠉⠕⠃⠼⠌â â •" }, { "input": "cobblestone's", "output": "⠉⠕⠃⠼⠌â â •â „â Ž" }, { "input": "cobblestones", "output": "⠉⠕⠃⠼⠌â â •â Ž" }, { "input": "cobbling", "output": "⠉⠕⠆⠇⠌" }, { "input": "cobra", "output": "⠉⠕⠃⠗â " }, { "input": "cobra's", "output": "⠉⠕⠃⠗â â „â Ž" }, { "input": "cobras", "output": "⠉⠕⠃⠗â â Ž" }, { "input": "cobs", "output": "⠉⠕⠃⠎" }, { "input": "cobweb", "output": "⠉⠕⠃⠺⠑⠃" }, { "input": "cobweb's", "output": "⠉⠕⠃⠺⠑⠃⠄⠎" }, { "input": "cobwebbier", "output": "⠉⠕⠃⠺⠑⠆⠊⠻" }, { "input": "cobwebbiest", "output": "⠉⠕⠃⠺⠑⠆⠊⠑⠌" }, { "input": "cobwebby", "output": "⠉⠕⠃⠺⠑⠆⠽" }, { "input": "cobwebs", "output": "⠉⠕⠃⠺⠑⠃⠎" }, { "input": "coca", "output": "⠉⠕⠉â " }, { "input": "coca's", "output": "⠉⠕⠉â â „â Ž" }, { "input": "cocaine", "output": "⠉⠕⠉â â ”â ‘" }, { "input": "cocaine's", "output": "⠉⠕⠉â â ”â ‘â „â Ž" }, { "input": "cocci", "output": "⠉⠕⠒⠊" }, { "input": "coccis", "output": "⠉⠕⠒⠊⠎" }, { "input": "coccus", "output": "⠉⠕⠒⠥⠎" }, { "input": "coccus's", "output": "⠉⠕⠒⠥⠎⠄⠎" }, { "input": "coccyges", "output": "⠉⠕⠒⠽⠛⠑⠎" }, { "input": "coccyx", "output": "⠉⠕⠒⠽⠭" }, { "input": "coccyx's", "output": "⠉⠕⠒⠽⠭⠄⠎" }, { "input": "cochineal's", "output": "⠉⠕⠡⠔⠂⠇⠄⠎" }, { "input": "cochlea", "output": "⠉⠕⠡⠇⠑â " }, { "input": "cochlea's", "output": "⠉⠕⠡⠇⠑â â „â Ž" }, { "input": "cochleae", "output": "⠉⠕⠡⠇⠑â â ‘" }, { "input": "cochlear", "output": "⠉⠕⠡⠇⠑⠜" }, { "input": "cochleas", "output": "⠉⠕⠡⠇⠂⠎" }, { "input": "cock", "output": "⠉⠕⠉⠅" }, { "input": "cock's", "output": "⠉⠕⠉⠅⠄⠎" }, { "input": "cockade", "output": "⠉⠕⠉⠅â â ™â ‘" }, { "input": "cockade's", "output": "⠉⠕⠉⠅â â ™â ‘â „â Ž" }, { "input": "cockades", "output": "⠉⠕⠉⠅â â ™â ‘â Ž" }, { "input": "cockamamie", "output": "⠉⠕⠉⠅â â â â â Šâ ‘" }, { "input": "cockatoo", "output": "⠉⠕⠉⠅â â žâ •â •" }, { "input": "cockatoo's", "output": "⠉⠕⠉⠅â â žâ •â •â „â Ž" }, { "input": "cockatoos", "output": "⠉⠕⠉⠅â â žâ •â •â Ž" }, { "input": "cockatrice", "output": "⠉⠕⠉⠅â â žâ —⠊⠉⠑" }, { "input": "cockatrice's", "output": "⠉⠕⠉⠅â â žâ —⠊⠉⠑⠄⠎" }, { "input": "cockatrices", "output": "⠉⠕⠉⠅â â žâ —⠊⠉⠑⠎" }, { "input": "cockcrow", "output": "⠉⠕⠉⠅⠉⠗⠪" }, { "input": "cockcrow's", "output": "⠉⠕⠉⠅⠉⠗⠪⠄⠎" }, { "input": "cockcrows", "output": "⠉⠕⠉⠅⠉⠗⠪⠎" }, { "input": "cocked", "output": "⠉⠕⠉⠅⠫" }, { "input": "cockerel", "output": "⠉⠕⠉⠅⠻⠑⠇" }, { "input": "cockerel's", "output": "⠉⠕⠉⠅⠻⠑⠇⠄⠎" }, { "input": "cockerels", "output": "⠉⠕⠉⠅⠻⠑⠇⠎" }, { "input": "cockeyed", "output": "⠉⠕⠉⠅⠑⠽⠫" }, { "input": "cockfight", "output": "⠉⠕⠉⠅⠋⠊⠣⠞" }, { "input": "cockfight's", "output": "⠉⠕⠉⠅⠋⠊⠣⠞⠄⠎" }, { "input": "cockfighting's", "output": "⠉⠕⠉⠅⠋⠊⠣⠞⠌⠄⠎" }, { "input": "cockfights", "output": "⠉⠕⠉⠅⠋⠊⠣⠞⠎" }, { "input": "cockier", "output": "⠉⠕⠉⠅⠊⠻" }, { "input": "cockiest", "output": "⠉⠕⠉⠅⠊⠑⠌" }, { "input": "cockily", "output": "⠉⠕⠉⠅⠊⠇⠽" }, { "input": "cockiness", "output": "⠉⠕⠉⠅⠊⠰⠎" }, { "input": "cockiness's", "output": "⠉⠕⠉⠅⠊⠰⠎⠄⠎" }, { "input": "cocking", "output": "⠉⠕⠉⠅⠌" }, { "input": "cockle", "output": "⠉⠕⠉⠅⠇⠑" }, { "input": "cockle's", "output": "⠉⠕⠉⠅⠇⠑⠄⠎" }, { "input": "cockles", "output": "⠉⠕⠉⠅⠇⠑⠎" }, { "input": "cockleshell", "output": "⠉⠕⠉⠅⠇⠑⠩⠑⠇⠇" }, { "input": "cockleshell's", "output": "⠉⠕⠉⠅⠇⠑⠩⠑⠇⠇⠄⠎" }, { "input": "cockleshells", "output": "⠉⠕⠉⠅⠇⠑⠩⠑⠇⠇⠎" }, { "input": "cockney", "output": "⠉⠕⠉⠅â â ‘â ½" }, { "input": "cockney's", "output": "⠉⠕⠉⠅â â ‘⠽⠄⠎" }, { "input": "cockneys", "output": "⠉⠕⠉⠅â â ‘⠽⠎" }, { "input": "cockpit", "output": "⠉⠕⠉⠅â â Šâ ž" }, { "input": "cockpit's", "output": "⠉⠕⠉⠅â â Šâ žâ „â Ž" }, { "input": "cockpits", "output": "⠉⠕⠉⠅â â Šâ žâ Ž" }, { "input": "cockroach", "output": "⠉⠕⠉⠅⠗⠕â â ¡" }, { "input": "cockroach's", "output": "⠉⠕⠉⠅⠗⠕â â ¡â „â Ž" }, { "input": "cockroaches", "output": "⠉⠕⠉⠅⠗⠕â â ¡â ‘â Ž" }, { "input": "cocks", "output": "⠉⠕⠉⠅⠎" }, { "input": "cockscomb", "output": "⠉⠕⠉⠅⠎⠉⠕â â ƒ" }, { "input": "cockscomb's", "output": "⠉⠕⠉⠅⠎⠉⠕â â ƒâ „â Ž" }, { "input": "cockscombs", "output": "⠉⠕⠉⠅⠎⠉⠕â â ƒâ Ž" }, { "input": "cocksucker", "output": "⠉⠕⠉⠅⠎⠥⠉⠅⠻" }, { "input": "cocksucker's", "output": "⠉⠕⠉⠅⠎⠥⠉⠅⠻⠄⠎" }, { "input": "cocksuckers", "output": "⠉⠕⠉⠅⠎⠥⠉⠅⠻⠎" }, { "input": "cocksure", "output": "⠉⠕⠉⠅⠎⠥⠗⠑" }, { "input": "cocktail", "output": "⠉⠕⠉⠅⠞â â Šâ ‡" }, { "input": "cocktail's", "output": "⠉⠕⠉⠅⠞â â Šâ ‡â „â Ž" }, { "input": "cocktails", "output": "⠉⠕⠉⠅⠞â â Šâ ‡â Ž" }, { "input": "cocky", "output": "⠉⠕⠉⠅⠽" }, { "input": "coco", "output": "⠉⠕⠉⠕" }, { "input": "coco's", "output": "⠉⠕⠉⠕⠄⠎" }, { "input": "cocoa", "output": "⠉⠕⠉⠕â " }, { "input": "cocoa's", "output": "⠉⠕⠉⠕â â „â Ž" }, { "input": "cocoas", "output": "⠉⠕⠉⠕â â Ž" }, { "input": "coconut", "output": "⠉⠕⠉⠕â â ¥â ž" }, { "input": "coconut's", "output": "⠉⠕⠉⠕â â ¥â žâ „â Ž" }, { "input": "coconuts", "output": "⠉⠕⠉⠕â â ¥â žâ Ž" }, { "input": "cocoon", "output": "⠉⠕⠉⠕⠕â " }, { "input": "cocoon's", "output": "⠉⠕⠉⠕⠕â â „â Ž" }, { "input": "cocooned", "output": "⠉⠕⠉⠕⠕â â «" }, { "input": "cocooning", "output": "⠉⠕⠉⠕⠕â â Œ" }, { "input": "cocoons", "output": "⠉⠕⠉⠕⠕â â Ž" }, { "input": "cocos", "output": "⠉⠕⠉⠕⠎" }, { "input": "cod", "output": "⠉⠕⠙" }, { "input": "cod's", "output": "⠉⠕⠙⠄⠎" }, { "input": "coda", "output": "⠉⠕⠙â " }, { "input": "coda's", "output": "⠉⠕⠙â â „â Ž" }, { "input": "codas", "output": "⠉⠕⠙â â Ž" }, { "input": "codded", "output": "⠉⠕⠲⠫" }, { "input": "codding", "output": "⠉⠕⠲⠌" }, { "input": "coddle", "output": "⠉⠕⠲⠇⠑" }, { "input": "coddled", "output": "⠉⠕⠲⠇⠫" }, { "input": "coddles", "output": "⠉⠕⠲⠇⠑⠎" }, { "input": "coddling", "output": "⠉⠕⠲⠇⠌" }, { "input": "code", "output": "⠉⠕⠙⠑" }, { "input": "code's", "output": "⠉⠕⠙⠑⠄⠎" }, { "input": "coded", "output": "⠉⠕⠙⠫" }, { "input": "codeine", "output": "⠉⠕⠙⠑⠔⠑" }, { "input": "codeine's", "output": "⠉⠕⠙⠑⠔⠑⠄⠎" }, { "input": "codependency", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â ‰â ½" }, { "input": "codependency's", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â ‰â ½â „â Ž" }, { "input": "codependent", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â ž" }, { "input": "codependent's", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â žâ „â Ž" }, { "input": "codependents", "output": "⠉⠕⠙⠑â â ¢â ™â ¢â žâ Ž" }, { "input": "coder", "output": "⠉⠕⠙⠻" }, { "input": "coder's", "output": "⠉⠕⠙⠻⠄⠎" }, { "input": "coders", "output": "⠉⠕⠙⠻⠎" }, { "input": "codes", "output": "⠉⠕⠙⠑⠎" }, { "input": "codex", "output": "⠉⠕⠙⠑⠭" }, { "input": "codex's", "output": "⠉⠕⠙⠑⠭⠄⠎" }, { "input": "codfish", "output": "⠉⠕⠙⠋⠊⠩" }, { "input": "codfish's", "output": "⠉⠕⠙⠋⠊⠩⠄⠎" }, { "input": "codfishes", "output": "⠉⠕⠙⠋⠊⠩⠑⠎" }, { "input": "codger", "output": "⠉⠕⠙⠛⠻" }, { "input": "codger's", "output": "⠉⠕⠙⠛⠻⠄⠎" }, { "input": "codgers", "output": "⠉⠕⠙⠛⠻⠎" }, { "input": "codices", "output": "⠉⠕⠙⠊⠉⠑⠎" }, { "input": "codicil", "output": "⠉⠕⠙⠊⠉⠊⠇" }, { "input": "codicil's", "output": "⠉⠕⠙⠊⠉⠊⠇⠄⠎" }, { "input": "codicils", "output": "⠉⠕⠙⠊⠉⠊⠇⠎" }, { "input": "codification", "output": "⠉⠕⠙⠊⠋⠊⠉⠠â " }, { "input": "codification's", "output": "⠉⠕⠙⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "codifications", "output": "⠉⠕⠙⠊⠋⠊⠉⠠â â Ž" }, { "input": "codified", "output": "⠉⠕⠙⠊⠋⠊⠫" }, { "input": "codifier", "output": "⠉⠕⠙⠊⠋⠊⠻" }, { "input": "codifier's", "output": "⠉⠕⠙⠊⠋⠊⠻⠄⠎" }, { "input": "codifiers", "output": "⠉⠕⠙⠊⠋⠊⠻⠎" }, { "input": "codifies", "output": "⠉⠕⠙⠊⠋⠊⠑⠎" }, { "input": "codify", "output": "⠉⠕⠙⠊⠋⠽" }, { "input": "codifying", "output": "⠉⠕⠙⠊⠋⠽⠌" }, { "input": "coding", "output": "⠉⠕⠙⠌" }, { "input": "cods", "output": "⠉⠕⠙⠎" }, { "input": "coed", "output": "⠉⠕⠫" }, { "input": "coed's", "output": "⠉⠕⠫⠄⠎" }, { "input": "coeds", "output": "⠉⠕⠫⠎" }, { "input": "coeducation", "output": "⠉⠕⠫⠥⠉⠠â " }, { "input": "coeducation's", "output": "⠉⠕⠫⠥⠉⠠â â „â Ž" }, { "input": "coeducational", "output": "⠉⠕⠫⠥⠉⠠â â â ‡" }, { "input": "coefficient", "output": "⠉⠕⠑⠖⠊⠉⠊⠢⠞" }, { "input": "coefficient's", "output": "⠉⠕⠑⠖⠊⠉⠊⠢⠞⠄⠎" }, { "input": "coefficients", "output": "⠉⠕⠑⠖⠊⠉⠊⠢⠞⠎" }, { "input": "coelenterate", "output": "⠉⠕⠑⠇⠢⠞⠻â â žâ ‘" }, { "input": "coelenterate's", "output": "⠉⠕⠑⠇⠢⠞⠻â â žâ ‘â „â Ž" }, { "input": "coelenterates", "output": "⠉⠕⠑⠇⠢⠞⠻â â žâ ‘â Ž" }, { "input": "coequal", "output": "⠉⠕⠑⠟⠥â â ‡" }, { "input": "coequal's", "output": "⠉⠕⠑⠟⠥â â ‡â „â Ž" }, { "input": "coequally", "output": "⠉⠕⠑⠟⠥⠠⠽" }, { "input": "coequals", "output": "⠉⠕⠑⠟⠥â â ‡â Ž" }, { "input": "coerce", "output": "⠉⠕⠻⠉⠑" }, { "input": "coerced", "output": "⠉⠕⠻⠉⠫" }, { "input": "coercer", "output": "⠉⠕⠻⠉⠻" }, { "input": "coercer's", "output": "⠉⠕⠻⠉⠻⠄⠎" }, { "input": "coercers", "output": "⠉⠕⠻⠉⠻⠎" }, { "input": "coerces", "output": "⠉⠕⠻⠉⠑⠎" }, { "input": "coercing", "output": "⠉⠕⠻⠉⠌" }, { "input": "coercion", "output": "⠉⠕⠻⠉⠊⠕â " }, { "input": "coercion's", "output": "⠉⠕⠻⠉⠊⠕â â „â Ž" }, { "input": "coercive", "output": "⠉⠕⠻⠉⠊⠧⠑" }, { "input": "coeval", "output": "⠉⠕⠑⠧â â ‡" }, { "input": "coeval's", "output": "⠉⠕⠑⠧â â ‡â „â Ž" }, { "input": "coevally", "output": "⠉⠕⠑⠧⠠⠽" }, { "input": "coevals", "output": "⠉⠕⠑⠧â â ‡â Ž" }, { "input": "coexist", "output": "⠉⠕⠑⠭⠊⠌" }, { "input": "coexisted", "output": "⠉⠕⠑⠭⠊⠌⠫" }, { "input": "coexistence", "output": "⠉⠕⠑⠭⠊⠌⠰⠑" }, { "input": "coexistence's", "output": "⠉⠕⠑⠭⠊⠌⠰⠑⠄⠎" }, { "input": "coexistent", "output": "⠉⠕⠑⠭⠊⠌⠢⠞" }, { "input": "coexisting", "output": "⠉⠕⠑⠭⠊⠌⠌" }, { "input": "coexists", "output": "⠉⠕⠑⠭⠊⠌⠎" }, { "input": "coextensive", "output": "⠉⠕⠑⠭⠞⠢⠎⠊⠧⠑" }, { "input": "coffee", "output": "⠉⠷⠋⠑⠑" }, { "input": "coffee's", "output": "⠉⠷⠋⠑⠑⠄⠎" }, { "input": "coffeecake", "output": "⠉⠷⠋⠑⠑⠉â â …â ‘" }, { "input": "coffeecake's", "output": "⠉⠷⠋⠑⠑⠉â â …â ‘â „â Ž" }, { "input": "coffeecakes", "output": "⠉⠷⠋⠑⠑⠉â â …â ‘â Ž" }, { "input": "coffeehouse", "output": "⠉⠷⠋⠑⠑⠓⠳⠎⠑" }, { "input": "coffeehouse's", "output": "⠉⠷⠋⠑⠑⠓⠳⠎⠑⠄⠎" }, { "input": "coffeehouses", "output": "⠉⠷⠋⠑⠑⠓⠳⠎⠑⠎" }, { "input": "coffeemaker", "output": "⠉⠷⠋⠑⠑â â â …â »" }, { "input": "coffeemaker's", "output": "⠉⠷⠋⠑⠑â â â …⠻⠄⠎" }, { "input": "coffeemakers", "output": "⠉⠷⠋⠑⠑â â â …⠻⠎" }, { "input": "coffeepot", "output": "⠉⠷⠋⠑⠑â â •â ž" }, { "input": "coffeepot's", "output": "⠉⠷⠋⠑⠑â â •â žâ „â Ž" }, { "input": "coffeepots", "output": "⠉⠷⠋⠑⠑â â •â žâ Ž" }, { "input": "coffees", "output": "⠉⠷⠋⠑⠑⠎" }, { "input": "coffer", "output": "⠉⠷⠋⠻" }, { "input": "coffer's", "output": "⠉⠷⠋⠻⠄⠎" }, { "input": "coffers", "output": "⠉⠷⠋⠻⠎" }, { "input": "coffin", "output": "⠉⠷⠋⠔" }, { "input": "coffin's", "output": "⠉⠷⠋⠔⠄⠎" }, { "input": "coffined", "output": "⠉⠷⠋⠔⠫" }, { "input": "coffining", "output": "⠉⠷⠋⠔⠌" }, { "input": "coffins", "output": "⠉⠷⠋⠔⠎" }, { "input": "cog", "output": "⠉⠕⠛" }, { "input": "cog's", "output": "⠉⠕⠛⠄⠎" }, { "input": "cogency", "output": "⠉⠕⠛⠢⠉⠽" }, { "input": "cogency's", "output": "⠉⠕⠛⠢⠉⠽⠄⠎" }, { "input": "cogent", "output": "⠉⠕⠛⠢⠞" }, { "input": "cogently", "output": "⠉⠕⠛⠢⠞⠇⠽" }, { "input": "cogitate", "output": "⠉⠕⠛⠊⠞â â žâ ‘" }, { "input": "cogitated", "output": "⠉⠕⠛⠊⠞â â žâ «" }, { "input": "cogitates", "output": "⠉⠕⠛⠊⠞â â žâ ‘â Ž" }, { "input": "cogitating", "output": "⠉⠕⠛⠊⠞â â žâ Œ" }, { "input": "cogitation", "output": "⠉⠕⠛⠊⠞⠠â " }, { "input": "cogitation's", "output": "⠉⠕⠛⠊⠞⠠â â „â Ž" }, { "input": "cogitative", "output": "⠉⠕⠛⠊⠞â â žâ Šâ §â ‘" }, { "input": "cogitator", "output": "⠉⠕⠛⠊⠞â â žâ •â —" }, { "input": "cogitator's", "output": "⠉⠕⠛⠊⠞â â žâ •â —â „â Ž" }, { "input": "cogitators", "output": "⠉⠕⠛⠊⠞â â žâ •â —â Ž" }, { "input": "cognac", "output": "⠉⠕⠛â â â ‰" }, { "input": "cognac's", "output": "⠉⠕⠛â â â ‰â „â Ž" }, { "input": "cognacs", "output": "⠉⠕⠛â â â ‰â Ž" }, { "input": "cognate", "output": "⠉⠕⠛â â â žâ ‘" }, { "input": "cognate's", "output": "⠉⠕⠛â â â žâ ‘â „â Ž" }, { "input": "cognates", "output": "⠉⠕⠛â â â žâ ‘â Ž" }, { "input": "cognition", "output": "⠉⠕⠛â â Šâ °â " }, { "input": "cognition's", "output": "⠉⠕⠛â â Šâ °â â „â Ž" }, { "input": "cognitional", "output": "⠉⠕⠛â â Šâ °â â â ‡" }, { "input": "cognitive", "output": "⠉⠕⠛â â Šâ žâ Šâ §â ‘" }, { "input": "cognitively", "output": "⠉⠕⠛â â Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "cognizable", "output": "⠉⠕⠛â â Šâ µâ â ¼" }, { "input": "cognizance", "output": "⠉⠕⠛â â Šâ µâ ¨â ‘" }, { "input": "cognizance's", "output": "⠉⠕⠛â â Šâ µâ ¨â ‘â „â Ž" }, { "input": "cognizant", "output": "⠉⠕⠛â â Šâ µâ â â ž" }, { "input": "cognomen", "output": "⠉⠕⠛â â •â â ¢" }, { "input": "cognomen's", "output": "⠉⠕⠛â â •â â ¢â „â Ž" }, { "input": "cognomens", "output": "⠉⠕⠛â â •â â ¢â Ž" }, { "input": "cogs", "output": "⠉⠕⠛⠎" }, { "input": "cogwheel", "output": "⠉⠕⠛⠱⠑⠑⠇" }, { "input": "cogwheel's", "output": "⠉⠕⠛⠱⠑⠑⠇⠄⠎" }, { "input": "cogwheels", "output": "⠉⠕⠛⠱⠑⠑⠇⠎" }, { "input": "cohabit", "output": "⠉⠕⠓â â ƒâ Šâ ž" }, { "input": "cohabitant", "output": "⠉⠕⠓â â ƒâ Šâ žâ â â ž" }, { "input": "cohabitant's", "output": "⠉⠕⠓â â ƒâ Šâ žâ â â žâ „â Ž" }, { "input": "cohabitants", "output": "⠉⠕⠓â â ƒâ Šâ žâ â â žâ Ž" }, { "input": "cohabitation", "output": "⠉⠕⠓â â ƒâ Šâ žâ  â " }, { "input": "cohabitation's", "output": "⠉⠕⠓â â ƒâ Šâ žâ  â â „â Ž" }, { "input": "cohabited", "output": "⠉⠕⠓â â ƒâ Šâ žâ «" }, { "input": "cohabiting", "output": "⠉⠕⠓â â ƒâ Šâ žâ Œ" }, { "input": "cohabits", "output": "⠉⠕⠓â â ƒâ Šâ žâ Ž" }, { "input": "coheir", "output": "⠉⠕⠓⠑⠊⠗" }, { "input": "coheir's", "output": "⠉⠕⠓⠑⠊⠗⠄⠎" }, { "input": "coheirs", "output": "⠉⠕⠓⠑⠊⠗⠎" }, { "input": "cohere", "output": "⠉⠕â â “" }, { "input": "cohered", "output": "⠉⠕⠓⠻⠫" }, { "input": "coherence", "output": "⠉⠕⠓⠻⠰⠑" }, { "input": "coherence's", "output": "⠉⠕⠓⠻⠰⠑⠄⠎" }, { "input": "coherency", "output": "⠉⠕⠓⠻⠢⠉⠽" }, { "input": "coherency's", "output": "⠉⠕⠓⠻⠢⠉⠽⠄⠎" }, { "input": "coherent", "output": "⠉⠕⠓⠻⠢⠞" }, { "input": "coherently", "output": "⠉⠕⠓⠻⠢⠞⠇⠽" }, { "input": "coheres", "output": "⠉⠕â â “â Ž" }, { "input": "cohering", "output": "⠉⠕⠓⠻⠌" }, { "input": "cohesion", "output": "⠉⠕⠓⠑⠨â " }, { "input": "cohesion's", "output": "⠉⠕⠓⠑⠨â â „â Ž" }, { "input": "cohesive", "output": "⠉⠕⠓⠑⠎⠊⠧⠑" }, { "input": "cohesively", "output": "⠉⠕⠓⠑⠎⠊⠧⠑⠇⠽" }, { "input": "cohesiveness", "output": "⠉⠕⠓⠑⠎⠊⠧⠑⠰⠎" }, { "input": "cohesiveness's", "output": "⠉⠕⠓⠑⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "coho", "output": "⠉⠕⠓⠕" }, { "input": "coho's", "output": "⠉⠕⠓⠕⠄⠎" }, { "input": "cohort", "output": "⠉⠕⠓⠕⠗⠞" }, { "input": "cohort's", "output": "⠉⠕⠓⠕⠗⠞⠄⠎" }, { "input": "cohorts", "output": "⠉⠕⠓⠕⠗⠞⠎" }, { "input": "cohos", "output": "⠉⠕⠓⠕⠎" }, { "input": "coif", "output": "⠉⠕⠊⠋" }, { "input": "coif's", "output": "⠉⠕⠊⠋⠄⠎" }, { "input": "coiffed", "output": "⠉⠕⠊⠖⠫" }, { "input": "coiffing", "output": "⠉⠕⠊⠖⠌" }, { "input": "coiffure", "output": "⠉⠕⠊⠖⠥⠗⠑" }, { "input": "coiffure's", "output": "⠉⠕⠊⠖⠥⠗⠑⠄⠎" }, { "input": "coiffured", "output": "⠉⠕⠊⠖⠥⠗⠫" }, { "input": "coiffures", "output": "⠉⠕⠊⠖⠥⠗⠑⠎" }, { "input": "coiffuring", "output": "⠉⠕⠊⠖⠥⠗⠌" }, { "input": "coifs", "output": "⠉⠕⠊⠋⠎" }, { "input": "coil", "output": "⠉⠕⠊⠇" }, { "input": "coil's", "output": "⠉⠕⠊⠇⠄⠎" }, { "input": "coiled", "output": "⠉⠕⠊⠇⠫" }, { "input": "coiling", "output": "⠉⠕⠊⠇⠌" }, { "input": "coils", "output": "⠉⠕⠊⠇⠎" }, { "input": "coin", "output": "⠉⠕⠔" }, { "input": "coin's", "output": "⠉⠕⠔⠄⠎" }, { "input": "coinage", "output": "⠉⠕⠔â â ›â ‘" }, { "input": "coinage's", "output": "⠉⠕⠔â â ›â ‘â „â Ž" }, { "input": "coinages", "output": "⠉⠕⠔â â ›â ‘â Ž" }, { "input": "coincide", "output": "⠉⠕⠔⠉⠊⠙⠑" }, { "input": "coincided", "output": "⠉⠕⠔⠉⠊⠙⠫" }, { "input": "coincidence", "output": "⠉⠕⠔⠉⠊⠙⠰⠑" }, { "input": "coincidence's", "output": "⠉⠕⠔⠉⠊⠙⠰⠑⠄⠎" }, { "input": "coincidences", "output": "⠉⠕⠔⠉⠊⠙⠰⠑⠎" }, { "input": "coincident", "output": "⠉⠕⠔⠉⠊⠙⠢⠞" }, { "input": "coincidental", "output": "⠉⠕⠔⠉⠊⠙⠢⠞â â ‡" }, { "input": "coincidentally", "output": "⠉⠕⠔⠉⠊⠙⠢⠞⠠⠽" }, { "input": "coincides", "output": "⠉⠕⠔⠉⠊⠙⠑⠎" }, { "input": "coinciding", "output": "⠉⠕⠔⠉⠊⠙⠌" }, { "input": "coined", "output": "⠉⠕⠔⠫" }, { "input": "coiner", "output": "⠉⠕⠔⠻" }, { "input": "coiner's", "output": "⠉⠕⠔⠻⠄⠎" }, { "input": "coiners", "output": "⠉⠕⠔⠻⠎" }, { "input": "coining", "output": "⠉⠕⠔⠌" }, { "input": "coins", "output": "⠉⠕⠔⠎" }, { "input": "coinsurance", "output": "⠉⠕⠔⠎⠥⠗⠨⠑" }, { "input": "coinsurance's", "output": "⠉⠕⠔⠎⠥⠗⠨⠑⠄⠎" }, { "input": "coital", "output": "⠉⠕⠊⠞â â ‡" }, { "input": "coitus", "output": "⠉⠕⠊⠞⠥⠎" }, { "input": "coitus's", "output": "⠉⠕⠊⠞⠥⠎⠄⠎" }, { "input": "coke", "output": "⠉⠕⠅⠑" }, { "input": "coke's", "output": "⠉⠕⠅⠑⠄⠎" }, { "input": "coked", "output": "⠉⠕⠅⠫" }, { "input": "cokes", "output": "⠉⠕⠅⠑⠎" }, { "input": "coking", "output": "⠉⠕⠅⠌" }, { "input": "cola", "output": "⠉⠕⠇â " }, { "input": "cola's", "output": "⠉⠕⠇â â „â Ž" }, { "input": "colander", "output": "⠉⠕⠇⠯⠻" }, { "input": "colander's", "output": "⠉⠕⠇⠯⠻⠄⠎" }, { "input": "colanders", "output": "⠉⠕⠇⠯⠻⠎" }, { "input": "colas", "output": "⠉⠕⠇â â Ž" }, { "input": "cold", "output": "⠉⠕⠇⠙" }, { "input": "cold's", "output": "⠉⠕⠇⠙⠄⠎" }, { "input": "coldblooded", "output": "⠉⠕⠇⠙⠃⠇⠕⠕⠙⠫" }, { "input": "colder", "output": "⠉⠕⠇⠙⠻" }, { "input": "coldest", "output": "⠉⠕⠇⠙⠑⠌" }, { "input": "coldly", "output": "⠉⠕⠇⠙⠇⠽" }, { "input": "coldness", "output": "⠉⠕⠇⠙⠰⠎" }, { "input": "coldness's", "output": "⠉⠕⠇⠙⠰⠎⠄⠎" }, { "input": "colds", "output": "⠉⠕⠇⠙⠎" }, { "input": "coleslaw", "output": "⠉⠕⠇⠑⠎⠇â â º" }, { "input": "coleslaw's", "output": "⠉⠕⠇⠑⠎⠇â â ºâ „â Ž" }, { "input": "coleus", "output": "⠉⠕⠇⠑⠥⠎" }, { "input": "coleus's", "output": "⠉⠕⠇⠑⠥⠎⠄⠎" }, { "input": "coleuses", "output": "⠉⠕⠇⠑⠥⠎⠑⠎" }, { "input": "colic", "output": "⠉⠕⠇⠊⠉" }, { "input": "colic's", "output": "⠉⠕⠇⠊⠉⠄⠎" }, { "input": "colicky", "output": "⠉⠕⠇⠊⠉⠅⠽" }, { "input": "coliseum", "output": "⠉⠕⠇⠊⠎⠑⠥â " }, { "input": "coliseum's", "output": "⠉⠕⠇⠊⠎⠑⠥â â „â Ž" }, { "input": "coliseums", "output": "⠉⠕⠇⠊⠎⠑⠥â â Ž" }, { "input": "colitis", "output": "⠉⠕⠇⠊⠞⠊⠎" }, { "input": "colitis's", "output": "⠉⠕⠇⠊⠞⠊⠎⠄⠎" }, { "input": "collaborate", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ ‘" }, { "input": "collaborated", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ «" }, { "input": "collaborates", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ ‘â Ž" }, { "input": "collaborating", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ Œ" }, { "input": "collaboration", "output": "⠉⠕⠇⠇â â ƒâ •â —â  â " }, { "input": "collaboration's", "output": "⠉⠕⠇⠇â â ƒâ •â —â  â â „â Ž" }, { "input": "collaborations", "output": "⠉⠕⠇⠇â â ƒâ •â —â  â â Ž" }, { "input": "collaborative", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ Šâ §â ‘" }, { "input": "collaborator", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ •â —" }, { "input": "collaborator's", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ •â —â „â Ž" }, { "input": "collaborators", "output": "⠉⠕⠇⠇â â ƒâ •â —â â žâ •â —â Ž" }, { "input": "collage", "output": "⠉⠕⠇⠇â â ›â ‘" }, { "input": "collage's", "output": "⠉⠕⠇⠇â â ›â ‘â „â Ž" }, { "input": "collages", "output": "⠉⠕⠇⠇â â ›â ‘â Ž" }, { "input": "collapse", "output": "⠉⠕⠇⠇â â â Žâ ‘" }, { "input": "collapse's", "output": "⠉⠕⠇⠇â â â Žâ ‘â „â Ž" }, { "input": "collapsed", "output": "⠉⠕⠇⠇â â â Žâ «" }, { "input": "collapses", "output": "⠉⠕⠇⠇â â â Žâ ‘â Ž" }, { "input": "collapsible", "output": "⠉⠕⠇⠇â â â Žâ Šâ ¼" }, { "input": "collapsing", "output": "⠉⠕⠇⠇â â â Žâ Œ" }, { "input": "collar", "output": "⠉⠕⠇⠇⠜" }, { "input": "collar's", "output": "⠉⠕⠇⠇⠜⠄⠎" }, { "input": "collarbone", "output": "⠉⠕⠇⠇⠜⠃â â •" }, { "input": "collarbone's", "output": "⠉⠕⠇⠇⠜⠃â â •â „â Ž" }, { "input": "collarbones", "output": "⠉⠕⠇⠇⠜⠃â â •â Ž" }, { "input": "collard", "output": "⠉⠕⠇⠇⠜⠙" }, { "input": "collard's", "output": "⠉⠕⠇⠇⠜⠙⠄⠎" }, { "input": "collards", "output": "⠉⠕⠇⠇⠜⠙⠎" }, { "input": "collared", "output": "⠉⠕⠇⠇⠜⠫" }, { "input": "collaring", "output": "⠉⠕⠇⠇⠜⠌" }, { "input": "collars", "output": "⠉⠕⠇⠇⠜⠎" }, { "input": "collate", "output": "⠉⠕⠇⠇â â žâ ‘" }, { "input": "collated", "output": "⠉⠕⠇⠇â â žâ «" }, { "input": "collateral", "output": "⠉⠕⠇⠇â â žâ »â â ‡" }, { "input": "collateral's", "output": "⠉⠕⠇⠇â â žâ »â â ‡â „â Ž" }, { "input": "collateralize", "output": "⠉⠕⠇⠇â â žâ »â â ‡â Šâ µâ ‘" }, { "input": "collaterally", "output": "⠉⠕⠇⠇â â žâ »â  â ½" }, { "input": "collates", "output": "⠉⠕⠇⠇â â žâ ‘â Ž" }, { "input": "collating", "output": "⠉⠕⠇⠇â â žâ Œ" }, { "input": "collation", "output": "⠉⠕⠇⠇⠠â " }, { "input": "collation's", "output": "⠉⠕⠇⠇⠠â â „â Ž" }, { "input": "collations", "output": "⠉⠕⠇⠇⠠â â Ž" }, { "input": "collator", "output": "⠉⠕⠇⠇â â žâ •â —" }, { "input": "collator's", "output": "⠉⠕⠇⠇â â žâ •â —â „â Ž" }, { "input": "collators", "output": "⠉⠕⠇⠇â â žâ •â —â Ž" }, { "input": "colleague", "output": "⠉⠕⠇⠇⠂⠛⠥⠑" }, { "input": "colleague's", "output": "⠉⠕⠇⠇⠂⠛⠥⠑⠄⠎" }, { "input": "colleagues", "output": "⠉⠕⠇⠇⠂⠛⠥⠑⠎" }, { "input": "collect", "output": "⠉⠕⠇⠇⠑⠉⠞" }, { "input": "collect's", "output": "⠉⠕⠇⠇⠑⠉⠞⠄⠎" }, { "input": "collected", "output": "⠉⠕⠇⠇⠑⠉⠞⠫" }, { "input": "collectedly", "output": "⠉⠕⠇⠇⠑⠉⠞⠫⠇⠽" }, { "input": "collectible", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠼" }, { "input": "collectible's", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠼⠄⠎" }, { "input": "collectibles", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠼⠎" }, { "input": "collecting", "output": "⠉⠕⠇⠇⠑⠉⠞⠌" }, { "input": "collection", "output": "⠉⠕⠇⠇⠑⠉⠰â " }, { "input": "collection's", "output": "⠉⠕⠇⠇⠑⠉⠰â â „â Ž" }, { "input": "collections", "output": "⠉⠕⠇⠇⠑⠉⠰â â Ž" }, { "input": "collective", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑" }, { "input": "collective's", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "collectively", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "collectives", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠑⠎" }, { "input": "collectivism", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠎â " }, { "input": "collectivism's", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠎â â „â Ž" }, { "input": "collectivist", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠌" }, { "input": "collectivist's", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠌⠄⠎" }, { "input": "collectivists", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠌⠎" }, { "input": "collectivization", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠠â " }, { "input": "collectivization's", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠠â â „â Ž" }, { "input": "collectivize", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠑" }, { "input": "collectivized", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠫" }, { "input": "collectivizes", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠑⠎" }, { "input": "collectivizing", "output": "⠉⠕⠇⠇⠑⠉⠞⠊⠧⠊⠵⠌" }, { "input": "collector", "output": "⠉⠕⠇⠇⠑⠉⠞⠕⠗" }, { "input": "collector's", "output": "⠉⠕⠇⠇⠑⠉⠞⠕⠗⠄⠎" }, { "input": "collectors", "output": "⠉⠕⠇⠇⠑⠉⠞⠕⠗⠎" }, { "input": "collects", "output": "⠉⠕⠇⠇⠑⠉⠞⠎" }, { "input": "colleen", "output": "⠉⠕⠇⠇⠑⠢" }, { "input": "colleen's", "output": "⠉⠕⠇⠇⠑⠢⠄⠎" }, { "input": "colleens", "output": "⠉⠕⠇⠇⠑⠢⠎" }, { "input": "college", "output": "⠉⠕⠇⠇⠑⠛⠑" }, { "input": "college's", "output": "⠉⠕⠇⠇⠑⠛⠑⠄⠎" }, { "input": "colleges", "output": "⠉⠕⠇⠇⠑⠛⠑⠎" }, { "input": "collegiality", "output": "⠉⠕⠇⠇⠑⠛⠊â â ‡â °â ½" }, { "input": "collegiality's", "output": "⠉⠕⠇⠇⠑⠛⠊â â ‡â °â ½â „â Ž" }, { "input": "collegian", "output": "⠉⠕⠇⠇⠑⠛⠊â â " }, { "input": "collegian's", "output": "⠉⠕⠇⠇⠑⠛⠊â â â „â Ž" }, { "input": "collegians", "output": "⠉⠕⠇⠇⠑⠛⠊â â â Ž" }, { "input": "collegiate", "output": "⠉⠕⠇⠇⠑⠛⠊â â žâ ‘" }, { "input": "collide", "output": "⠉⠕⠇⠇⠊⠙⠑" }, { "input": "collided", "output": "⠉⠕⠇⠇⠊⠙⠫" }, { "input": "collides", "output": "⠉⠕⠇⠇⠊⠙⠑⠎" }, { "input": "colliding", "output": "⠉⠕⠇⠇⠊⠙⠌" }, { "input": "collie", "output": "⠉⠕⠇⠇⠊⠑" }, { "input": "collie's", "output": "⠉⠕⠇⠇⠊⠑⠄⠎" }, { "input": "collier", "output": "⠉⠕⠇⠇⠊⠻" }, { "input": "collier's", "output": "⠉⠕⠇⠇⠊⠻⠄⠎" }, { "input": "collieries", "output": "⠉⠕⠇⠇⠊⠻⠊⠑⠎" }, { "input": "colliers", "output": "⠉⠕⠇⠇⠊⠻⠎" }, { "input": "colliery", "output": "⠉⠕⠇⠇⠊⠻⠽" }, { "input": "colliery's", "output": "⠉⠕⠇⠇⠊⠻⠽⠄⠎" }, { "input": "collies", "output": "⠉⠕⠇⠇⠊⠑⠎" }, { "input": "collision", "output": "⠉⠕⠇⠇⠊⠨â " }, { "input": "collision's", "output": "⠉⠕⠇⠇⠊⠨â â „â Ž" }, { "input": "collisions", "output": "⠉⠕⠇⠇⠊⠨â â Ž" }, { "input": "collocate", "output": "⠉⠕⠇⠇⠕⠉â â žâ ‘" }, { "input": "collocate's", "output": "⠉⠕⠇⠇⠕⠉â â žâ ‘â „â Ž" }, { "input": "collocated", "output": "⠉⠕⠇⠇⠕⠉â â žâ «" }, { "input": "collocates", "output": "⠉⠕⠇⠇⠕⠉â â žâ ‘â Ž" }, { "input": "collocating", "output": "⠉⠕⠇⠇⠕⠉â â žâ Œ" }, { "input": "collocation", "output": "⠉⠕⠇⠇⠕⠉⠠â " }, { "input": "collocation's", "output": "⠉⠕⠇⠇⠕⠉⠠â â „â Ž" }, { "input": "collocations", "output": "⠉⠕⠇⠇⠕⠉⠠â â Ž" }, { "input": "colloid", "output": "⠉⠕⠇⠇⠕⠊⠙" }, { "input": "colloid's", "output": "⠉⠕⠇⠇⠕⠊⠙⠄⠎" }, { "input": "colloidal", "output": "⠉⠕⠇⠇⠕⠊⠙â â ‡" }, { "input": "colloids", "output": "⠉⠕⠇⠇⠕⠊⠙⠎" }, { "input": "colloquial", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡" }, { "input": "colloquialism", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡â Šâ Žâ " }, { "input": "colloquialism's", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡â Šâ Žâ â „â Ž" }, { "input": "colloquialisms", "output": "⠉⠕⠇⠇⠕⠟⠥⠊â â ‡â Šâ Žâ â Ž" }, { "input": "colloquially", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠠⠽" }, { "input": "colloquies", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠑⠎" }, { "input": "colloquium", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠥â " }, { "input": "colloquium's", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠥â â „â Ž" }, { "input": "colloquiums", "output": "⠉⠕⠇⠇⠕⠟⠥⠊⠥â â Ž" }, { "input": "colloquy", "output": "⠉⠕⠇⠇⠕⠟⠥⠽" }, { "input": "colloquy's", "output": "⠉⠕⠇⠇⠕⠟⠥⠽⠄⠎" }, { "input": "collude", "output": "⠉⠕⠇⠇⠥⠙⠑" }, { "input": "colluded", "output": "⠉⠕⠇⠇⠥⠙⠫" }, { "input": "colludes", "output": "⠉⠕⠇⠇⠥⠙⠑⠎" }, { "input": "colluding", "output": "⠉⠕⠇⠇⠥⠙⠌" }, { "input": "collusion", "output": "⠉⠕⠇⠇⠥⠨â " }, { "input": "collusion's", "output": "⠉⠕⠇⠇⠥⠨â â „â Ž" }, { "input": "collusive", "output": "⠉⠕⠇⠇⠥⠎⠊⠧⠑" }, { "input": "cologne", "output": "⠉⠕⠇⠕⠛â â ‘" }, { "input": "cologne's", "output": "⠉⠕⠇⠕⠛â â ‘â „â Ž" }, { "input": "colognes", "output": "⠉⠕⠇⠕⠛â â ‘â Ž" }, { "input": "colon", "output": "⠉⠕⠇⠕â " }, { "input": "colon's", "output": "⠉⠕⠇⠕â â „â Ž" }, { "input": "colonel", "output": "⠉⠕⠇⠕â â ‘â ‡" }, { "input": "colonel's", "output": "⠉⠕⠇⠕â â ‘⠇⠄⠎" }, { "input": "colonelcy", "output": "⠉⠕⠇⠕â â ‘⠇⠉⠽" }, { "input": "colonelcy's", "output": "⠉⠕⠇⠕â â ‘⠇⠉⠽⠄⠎" }, { "input": "colonels", "output": "⠉⠕⠇⠕â â ‘⠇⠎" }, { "input": "colones", "output": "⠉⠕⠇⠕â â ‘â Ž" }, { "input": "colonial", "output": "⠉⠕⠇⠕â â Šâ â ‡" }, { "input": "colonial's", "output": "⠉⠕⠇⠕â â Šâ â ‡â „â Ž" }, { "input": "colonialism", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Žâ " }, { "input": "colonialism's", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "colonialist", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Œ" }, { "input": "colonialist's", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Œâ „â Ž" }, { "input": "colonialists", "output": "⠉⠕⠇⠕â â Šâ â ‡â Šâ Œâ Ž" }, { "input": "colonially", "output": "⠉⠕⠇⠕â â Šâ  â ½" }, { "input": "colonials", "output": "⠉⠕⠇⠕â â Šâ â ‡â Ž" }, { "input": "colonies", "output": "⠉⠕⠇⠕â â Šâ ‘â Ž" }, { "input": "colonist", "output": "⠉⠕⠇⠕â â Šâ Œ" }, { "input": "colonist's", "output": "⠉⠕⠇⠕â â Šâ Œâ „â Ž" }, { "input": "colonists", "output": "⠉⠕⠇⠕â â Šâ Œâ Ž" }, { "input": "colonization", "output": "⠉⠕⠇⠕â â Šâ µâ  â " }, { "input": "colonization's", "output": "⠉⠕⠇⠕â â Šâ µâ  â â „â Ž" }, { "input": "colonize", "output": "⠉⠕⠇⠕â â Šâ µâ ‘" }, { "input": "colonized", "output": "⠉⠕⠇⠕â â Šâ µâ «" }, { "input": "colonizer", "output": "⠉⠕⠇⠕â â Šâ µâ »" }, { "input": "colonizer's", "output": "⠉⠕⠇⠕â â Šâ µâ »â „â Ž" }, { "input": "colonizers", "output": "⠉⠕⠇⠕â â Šâ µâ »â Ž" }, { "input": "colonizes", "output": "⠉⠕⠇⠕â â Šâ µâ ‘â Ž" }, { "input": "colonizing", "output": "⠉⠕⠇⠕â â Šâ µâ Œ" }, { "input": "colonnade", "output": "⠉⠕⠇⠕â â â â ™â ‘" }, { "input": "colonnade's", "output": "⠉⠕⠇⠕â â â â ™â ‘â „â Ž" }, { "input": "colonnades", "output": "⠉⠕⠇⠕â â â â ™â ‘â Ž" }, { "input": "colons", "output": "⠉⠕⠇⠕â â Ž" }, { "input": "colony", "output": "⠉⠕⠇⠕â â ½" }, { "input": "colony's", "output": "⠉⠕⠇⠕â â ½â „â Ž" }, { "input": "colophon", "output": "⠉⠕⠇⠕â â “â •â " }, { "input": "colophon's", "output": "⠉⠕⠇⠕â â “â •â â „â Ž" }, { "input": "colophons", "output": "⠉⠕⠇⠕â â “â •â â Ž" }, { "input": "color", "output": "⠉⠕⠇⠕⠗" }, { "input": "color's", "output": "⠉⠕⠇⠕⠗⠄⠎" }, { "input": "colorant", "output": "⠉⠕⠇⠕⠗â â â ž" }, { "input": "colorant's", "output": "⠉⠕⠇⠕⠗â â â žâ „â Ž" }, { "input": "colorants", "output": "⠉⠕⠇⠕⠗â â â žâ Ž" }, { "input": "coloration", "output": "⠉⠕⠇⠕⠗⠠â " }, { "input": "coloration's", "output": "⠉⠕⠇⠕⠗⠠â â „â Ž" }, { "input": "coloratura", "output": "⠉⠕⠇⠕⠗â â žâ ¥â —â " }, { "input": "coloratura's", "output": "⠉⠕⠇⠕⠗â â žâ ¥â —â â „â Ž" }, { "input": "coloraturas", "output": "⠉⠕⠇⠕⠗â â žâ ¥â —â â Ž" }, { "input": "colorblind", "output": "⠉⠕⠇⠕⠗⠃⠇" }, { "input": "colorblindness", "output": "⠉⠕⠇⠕⠗⠃⠇⠰⠎" }, { "input": "colorblindness's", "output": "⠉⠕⠇⠕⠗⠃⠇⠰⠎⠄⠎" }, { "input": "colored", "output": "⠉⠕⠇⠕⠗⠫" }, { "input": "colored's", "output": "⠉⠕⠇⠕⠗⠫⠄⠎" }, { "input": "coloreds", "output": "⠉⠕⠇⠕⠗⠫⠎" }, { "input": "colorfast", "output": "⠉⠕⠇⠕⠗⠋â â Œ" }, { "input": "colorfastness", "output": "⠉⠕⠇⠕⠗⠋â â Œâ °â Ž" }, { "input": "colorfastness's", "output": "⠉⠕⠇⠕⠗⠋â â Œâ °â Žâ „â Ž" }, { "input": "colorful", "output": "⠉⠕⠇⠕⠗⠰⠇" }, { "input": "colorfully", "output": "⠉⠕⠇⠕⠗⠰⠇⠇⠽" }, { "input": "colorfulness", "output": "⠉⠕⠇⠕⠗⠰⠇⠰⠎" }, { "input": "colorfulness's", "output": "⠉⠕⠇⠕⠗⠰⠇⠰⠎⠄⠎" }, { "input": "coloring", "output": "⠉⠕⠇⠕⠗⠌" }, { "input": "coloring's", "output": "⠉⠕⠇⠕⠗⠌⠄⠎" }, { "input": "colorist", "output": "⠉⠕⠇⠕⠗⠊⠌" }, { "input": "colorists", "output": "⠉⠕⠇⠕⠗⠊⠌⠎" }, { "input": "colorization", "output": "⠉⠕⠇⠕⠗⠊⠵⠠â " }, { "input": "colorization's", "output": "⠉⠕⠇⠕⠗⠊⠵⠠â â „â Ž" }, { "input": "colorize", "output": "⠉⠕⠇⠕⠗⠊⠵⠑" }, { "input": "colorized", "output": "⠉⠕⠇⠕⠗⠊⠵⠫" }, { "input": "colorizes", "output": "⠉⠕⠇⠕⠗⠊⠵⠑⠎" }, { "input": "colorizing", "output": "⠉⠕⠇⠕⠗⠊⠵⠌" }, { "input": "colorless", "output": "⠉⠕⠇⠕⠗⠨⠎" }, { "input": "colorlessly", "output": "⠉⠕⠇⠕⠗⠨⠎⠇⠽" }, { "input": "colorlessness", "output": "⠉⠕⠇⠕⠗⠨⠎⠰⠎" }, { "input": "colorlessness's", "output": "⠉⠕⠇⠕⠗⠨⠎⠰⠎⠄⠎" }, { "input": "colors", "output": "⠉⠕⠇⠕⠗⠎" }, { "input": "colorway", "output": "⠉⠕⠇⠕⠗⠺â â ½" }, { "input": "colorways", "output": "⠉⠕⠇⠕⠗⠺â â ½â Ž" }, { "input": "colossal", "output": "⠉⠕⠇⠕⠎⠎â â ‡" }, { "input": "colossally", "output": "⠉⠕⠇⠕⠎⠎⠠⠽" }, { "input": "colossi", "output": "⠉⠕⠇⠕⠎⠎⠊" }, { "input": "colossus", "output": "⠉⠕⠇⠕⠎⠎⠥⠎" }, { "input": "colossus's", "output": "⠉⠕⠇⠕⠎⠎⠥⠎⠄⠎" }, { "input": "colostomies", "output": "⠉⠕⠇⠕⠌⠕â â Šâ ‘â Ž" }, { "input": "colostomy", "output": "⠉⠕⠇⠕⠌⠕â â ½" }, { "input": "colostomy's", "output": "⠉⠕⠇⠕⠌⠕â â ½â „â Ž" }, { "input": "colostrum", "output": "⠉⠕⠇⠕⠌⠗⠥â " }, { "input": "colostrum's", "output": "⠉⠕⠇⠕⠌⠗⠥â â „â Ž" }, { "input": "cols", "output": "⠉⠕⠇⠎" }, { "input": "colt", "output": "⠉⠕⠇⠞" }, { "input": "colt's", "output": "⠉⠕⠇⠞⠄⠎" }, { "input": "coltish", "output": "⠉⠕⠇⠞⠊⠩" }, { "input": "colts", "output": "⠉⠕⠇⠞⠎" }, { "input": "columbine", "output": "⠉⠕⠇⠥â â ƒâ ”â ‘" }, { "input": "columbine's", "output": "⠉⠕⠇⠥â â ƒâ ”â ‘â „â Ž" }, { "input": "columbines", "output": "⠉⠕⠇⠥â â ƒâ ”â ‘â Ž" }, { "input": "column", "output": "⠉⠕⠇⠥â â " }, { "input": "column's", "output": "⠉⠕⠇⠥â â â „â Ž" }, { "input": "columnar", "output": "⠉⠕⠇⠥â â â œ" }, { "input": "columned", "output": "⠉⠕⠇⠥â â â «" }, { "input": "columnist", "output": "⠉⠕⠇⠥â â â Šâ Œ" }, { "input": "columnist's", "output": "⠉⠕⠇⠥â â â Šâ Œâ „â Ž" }, { "input": "columnists", "output": "⠉⠕⠇⠥â â â Šâ Œâ Ž" }, { "input": "columns", "output": "⠉⠕⠇⠥â â â Ž" }, { "input": "coma", "output": "â ¤â " }, { "input": "coma's", "output": "â ¤â â „â Ž" }, { "input": "comaker", "output": "⠉⠕â â â …â »" }, { "input": "comaker's", "output": "⠉⠕â â â …⠻⠄⠎" }, { "input": "comakers", "output": "⠉⠕â â â …⠻⠎" }, { "input": "comas", "output": "â ¤â â Ž" }, { "input": "comatose", "output": "â ¤â â žâ •â Žâ ‘" }, { "input": "comb", "output": "⠤⠃" }, { "input": "comb's", "output": "⠤⠃⠄⠎" }, { "input": "combat", "output": "⠤⠃â â ž" }, { "input": "combat's", "output": "⠤⠃â â žâ „â Ž" }, { "input": "combatant", "output": "⠤⠃â â žâ â â ž" }, { "input": "combatant's", "output": "⠤⠃â â žâ â â žâ „â Ž" }, { "input": "combatants", "output": "⠤⠃â â žâ â â žâ Ž" }, { "input": "combated", "output": "⠤⠃â â žâ «" }, { "input": "combating", "output": "⠤⠃â â žâ Œ" }, { "input": "combative", "output": "⠤⠃â â žâ Šâ §â ‘" }, { "input": "combativeness's", "output": "⠤⠃â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "combats", "output": "⠤⠃â â žâ Ž" }, { "input": "combed", "output": "⠤⠃⠫" }, { "input": "comber", "output": "⠤⠃⠻" }, { "input": "comber's", "output": "⠤⠃⠻⠄⠎" }, { "input": "combers", "output": "⠤⠃⠻⠎" }, { "input": "combination", "output": "⠤⠃⠔⠠â " }, { "input": "combination's", "output": "⠤⠃⠔⠠â â „â Ž" }, { "input": "combinations", "output": "⠤⠃⠔⠠â â Ž" }, { "input": "combine", "output": "⠤⠃⠔⠑" }, { "input": "combine's", "output": "⠤⠃⠔⠑⠄⠎" }, { "input": "combined", "output": "⠤⠃⠔⠫" }, { "input": "combiner", "output": "⠤⠃⠔⠻" }, { "input": "combiner's", "output": "⠤⠃⠔⠻⠄⠎" }, { "input": "combiners", "output": "⠤⠃⠔⠻⠎" }, { "input": "combines", "output": "⠤⠃⠔⠑⠎" }, { "input": "combing", "output": "⠤⠃⠌" }, { "input": "combings", "output": "⠤⠃⠌⠎" }, { "input": "combings's", "output": "⠤⠃⠌⠎⠄⠎" }, { "input": "combining", "output": "⠤⠃⠔⠌" }, { "input": "combo", "output": "⠤⠃⠕" }, { "input": "combo's", "output": "⠤⠃⠕⠄⠎" }, { "input": "combos", "output": "⠤⠃⠕⠎" }, { "input": "combs", "output": "⠤⠃⠎" }, { "input": "combustibility", "output": "⠤⠃⠥⠌⠊⠃⠊⠇⠰⠽" }, { "input": "combustibility's", "output": "⠤⠃⠥⠌⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "combustible", "output": "⠤⠃⠥⠌⠊⠼" }, { "input": "combustible's", "output": "⠤⠃⠥⠌⠊⠼⠄⠎" }, { "input": "combustibles", "output": "⠤⠃⠥⠌⠊⠼⠎" }, { "input": "combustion", "output": "⠤⠃⠥⠎⠰â " }, { "input": "combustion's", "output": "⠤⠃⠥⠎⠰â â „â Ž" }, { "input": "combustive", "output": "⠤⠃⠥⠌⠊⠧⠑" }, { "input": "come", "output": "⠤⠑" }, { "input": "come's", "output": "⠤⠑⠄⠎" }, { "input": "comeback", "output": "⠤⠑⠃â â ‰â …" }, { "input": "comeback's", "output": "⠤⠑⠃â â ‰â …â „â Ž" }, { "input": "comebacks", "output": "⠤⠑⠃â â ‰â …â Ž" }, { "input": "comedian", "output": "⠤⠫⠊â â " }, { "input": "comedian's", "output": "⠤⠫⠊â â â „â Ž" }, { "input": "comedians", "output": "⠤⠫⠊â â â Ž" }, { "input": "comedic", "output": "⠤⠫⠊⠉" }, { "input": "comedienne", "output": "⠤⠫⠊⠢â â ‘" }, { "input": "comedienne's", "output": "⠤⠫⠊⠢â â ‘â „â Ž" }, { "input": "comediennes", "output": "⠤⠫⠊⠢â â ‘â Ž" }, { "input": "comedies", "output": "⠤⠫⠊⠑⠎" }, { "input": "comedown", "output": "⠤⠑⠙⠪â " }, { "input": "comedown's", "output": "⠤⠑⠙⠪â â „â Ž" }, { "input": "comedowns", "output": "⠤⠑⠙⠪â â Ž" }, { "input": "comedy", "output": "⠤⠫⠽" }, { "input": "comedy's", "output": "⠤⠫⠽⠄⠎" }, { "input": "comelier", "output": "⠤⠑⠇⠊⠻" }, { "input": "comeliest", "output": "⠤⠑⠇⠊⠑⠌" }, { "input": "comeliness", "output": "⠤⠑⠇⠊⠰⠎" }, { "input": "comeliness's", "output": "⠤⠑⠇⠊⠰⠎⠄⠎" }, { "input": "comely", "output": "⠤⠑⠇⠽" }, { "input": "comer", "output": "⠤⠻" }, { "input": "comer's", "output": "⠤⠻⠄⠎" }, { "input": "comers", "output": "⠤⠻⠎" }, { "input": "comes", "output": "⠤⠑⠎" }, { "input": "comestible", "output": "⠤⠑⠌⠊⠼" }, { "input": "comestible's", "output": "⠤⠑⠌⠊⠼⠄⠎" }, { "input": "comestibles", "output": "⠤⠑⠌⠊⠼⠎" }, { "input": "comet", "output": "⠤⠑⠞" }, { "input": "comet's", "output": "⠤⠑⠞⠄⠎" }, { "input": "comets", "output": "⠤⠑⠞⠎" }, { "input": "comeuppance", "output": "⠤⠑⠥â â â ¨â ‘" }, { "input": "comeuppance's", "output": "⠤⠑⠥â â â ¨â ‘â „â Ž" }, { "input": "comeuppances", "output": "⠤⠑⠥â â â ¨â ‘â Ž" }, { "input": "comfier", "output": "⠤⠋⠊⠻" }, { "input": "comfiest", "output": "⠤⠋⠊⠑⠌" }, { "input": "comfit", "output": "⠤⠋⠊⠞" }, { "input": "comfit's", "output": "⠤⠋⠊⠞⠄⠎" }, { "input": "comfits", "output": "⠤⠋⠊⠞⠎" }, { "input": "comfort", "output": "⠤⠿⠞" }, { "input": "comfort's", "output": "⠤⠿⠞⠄⠎" }, { "input": "comfortable", "output": "⠤⠿⠞â â ¼" }, { "input": "comfortableness", "output": "⠤⠿⠞â â ¼â °â Ž" }, { "input": "comfortableness's", "output": "⠤⠿⠞â â ¼â °â Žâ „â Ž" }, { "input": "comfortably", "output": "⠤⠿⠞â â ƒâ ‡â ½" }, { "input": "comforted", "output": "⠤⠿⠞⠫" }, { "input": "comforter", "output": "⠤⠿⠞⠻" }, { "input": "comforter's", "output": "⠤⠿⠞⠻⠄⠎" }, { "input": "comforters", "output": "⠤⠿⠞⠻⠎" }, { "input": "comforting", "output": "⠤⠿⠞⠌" }, { "input": "comfortingly", "output": "⠤⠿⠞⠌⠇⠽" }, { "input": "comforts", "output": "⠤⠿⠞⠎" }, { "input": "comfy", "output": "⠤⠋⠽" }, { "input": "comic", "output": "⠤⠊⠉" }, { "input": "comic's", "output": "⠤⠊⠉⠄⠎" }, { "input": "comical", "output": "⠤⠊⠉â â ‡" }, { "input": "comicality", "output": "⠤⠊⠉â â ‡â °â ½" }, { "input": "comicality's", "output": "⠤⠊⠉â â ‡â °â ½â „â Ž" }, { "input": "comically", "output": "⠤⠊⠉⠠⠽" }, { "input": "comics", "output": "⠤⠊⠉⠎" }, { "input": "coming", "output": "⠤⠌" }, { "input": "coming's", "output": "⠤⠌⠄⠎" }, { "input": "comings", "output": "⠤⠌⠎" }, { "input": "comity", "output": "⠤⠰⠽" }, { "input": "comity's", "output": "⠤⠰⠽⠄⠎" }, { "input": "comma", "output": "â ¤â â " }, { "input": "comma's", "output": "â ¤â â â „â Ž" }, { "input": "command", "output": "â ¤â â ¯" }, { "input": "command's", "output": "â ¤â â ¯â „â Ž" }, { "input": "commandant", "output": "â ¤â â ¯â â â ž" }, { "input": "commandant's", "output": "â ¤â â ¯â â â žâ „â Ž" }, { "input": "commandants", "output": "â ¤â â ¯â â â žâ Ž" }, { "input": "commanded", "output": "â ¤â â ¯â «" }, { "input": "commandeer", "output": "â ¤â â ¯â ‘â »" }, { "input": "commandeered", "output": "â ¤â â ¯â ‘⠻⠫" }, { "input": "commandeering", "output": "â ¤â â ¯â ‘⠻⠌" }, { "input": "commandeers", "output": "â ¤â â ¯â ‘⠻⠎" }, { "input": "commander", "output": "â ¤â â ¯â »" }, { "input": "commander's", "output": "â ¤â â ¯â »â „â Ž" }, { "input": "commanders", "output": "â ¤â â ¯â »â Ž" }, { "input": "commanding", "output": "â ¤â â ¯â Œ" }, { "input": "commandment", "output": "â ¤â â ¯â °â ž" }, { "input": "commandment's", "output": "â ¤â â ¯â °â žâ „â Ž" }, { "input": "commandments", "output": "â ¤â â ¯â °â žâ Ž" }, { "input": "commando", "output": "â ¤â â ¯â •" }, { "input": "commando's", "output": "â ¤â â ¯â •â „â Ž" }, { "input": "commandos", "output": "â ¤â â ¯â •â Ž" }, { "input": "commands", "output": "â ¤â â ¯â Ž" }, { "input": "commas", "output": "â ¤â â â Ž" }, { "input": "commemorate", "output": "â ¤â â ‘â â •â —â â žâ ‘" }, { "input": "commemorated", "output": "â ¤â â ‘â â •â —â â žâ «" }, { "input": "commemorates", "output": "â ¤â â ‘â â •â —â â žâ ‘â Ž" }, { "input": "commemorating", "output": "â ¤â â ‘â â •â —â â žâ Œ" }, { "input": "commemoration", "output": "â ¤â â ‘â â •â —â  â " }, { "input": "commemoration's", "output": "â ¤â â ‘â â •â —â  â â „â Ž" }, { "input": "commemorations", "output": "â ¤â â ‘â â •â —â  â â Ž" }, { "input": "commemorative", "output": "â ¤â â ‘â â •â —â â žâ Šâ §â ‘" }, { "input": "commemorator", "output": "â ¤â â ‘â â •â —â â žâ •â —" }, { "input": "commemorator's", "output": "â ¤â â ‘â â •â —â â žâ •â —â „â Ž" }, { "input": "commemorators", "output": "â ¤â â ‘â â •â —â â žâ •â —â Ž" }, { "input": "commence", "output": "â ¤â â °â ‘" }, { "input": "commenced", "output": "â ¤â â °â ‘â ™" }, { "input": "commencement", "output": "â ¤â â °â ‘â °â ž" }, { "input": "commencement's", "output": "â ¤â â °â ‘â °â žâ „â Ž" }, { "input": "commencements", "output": "â ¤â â °â ‘â °â žâ Ž" }, { "input": "commences", "output": "â ¤â â °â ‘â Ž" }, { "input": "commencing", "output": "â ¤â â ¢â ‰â Œ" }, { "input": "commend", "output": "â ¤â â ¢â ™" }, { "input": "commendable", "output": "â ¤â â ¢â ™â â ¼" }, { "input": "commendably", "output": "â ¤â â ¢â ™â â ƒâ ‡â ½" }, { "input": "commendation", "output": "â ¤â â ¢â ™â  â " }, { "input": "commendation's", "output": "â ¤â â ¢â ™â  â â „â Ž" }, { "input": "commendations", "output": "â ¤â â ¢â ™â  â â Ž" }, { "input": "commendatory", "output": "â ¤â â ¢â ™â â žâ •â —â ½" }, { "input": "commended", "output": "â ¤â â ¢â ™â «" }, { "input": "commending", "output": "â ¤â â ¢â ™â Œ" }, { "input": "commends", "output": "â ¤â â ¢â ™â Ž" }, { "input": "commensurable", "output": "â ¤â â ¢â Žâ ¥â —â â ¼" }, { "input": "commensurate", "output": "â ¤â â ¢â Žâ ¥â —â â žâ ‘" }, { "input": "comment", "output": "⠤⠰⠞" }, { "input": "comment's", "output": "⠤⠰⠞⠄⠎" }, { "input": "commentaries", "output": "⠤⠰⠞⠜⠊⠑⠎" }, { "input": "commentary", "output": "⠤⠰⠞⠜⠽" }, { "input": "commentary's", "output": "⠤⠰⠞⠜⠽⠄⠎" }, { "input": "commentate", "output": "⠤⠰⠞â â žâ ‘" }, { "input": "commentated", "output": "⠤⠰⠞â â žâ «" }, { "input": "commentates", "output": "⠤⠰⠞â â žâ ‘â Ž" }, { "input": "commentating", "output": "⠤⠰⠞â â žâ Œ" }, { "input": "commentator", "output": "⠤⠰⠞â â žâ •â —" }, { "input": "commentator's", "output": "⠤⠰⠞â â žâ •â —â „â Ž" }, { "input": "commentators", "output": "⠤⠰⠞â â žâ •â —â Ž" }, { "input": "commented", "output": "⠤⠰⠞⠫" }, { "input": "commenting", "output": "⠤⠰⠞⠌" }, { "input": "comments", "output": "⠤⠰⠞⠎" }, { "input": "commerce", "output": "â ¤â â »â ‰â ‘" }, { "input": "commerce's", "output": "â ¤â â »â ‰â ‘â „â Ž" }, { "input": "commercial", "output": "â ¤â â »â ‰â Šâ â ‡" }, { "input": "commercial's", "output": "â ¤â â »â ‰â Šâ â ‡â „â Ž" }, { "input": "commercialism", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ Žâ " }, { "input": "commercialism's", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "commercialization", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ µâ  â " }, { "input": "commercialization's", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "commercialize", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ µâ ‘" }, { "input": "commercialized", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ µâ «" }, { "input": "commercializes", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "commercializing", "output": "â ¤â â »â ‰â Šâ â ‡â Šâ µâ Œ" }, { "input": "commercially", "output": "â ¤â â »â ‰â Šâ  â ½" }, { "input": "commercials", "output": "â ¤â â »â ‰â Šâ â ‡â Ž" }, { "input": "commingle", "output": "â ¤â â Œâ ‡â ‘" }, { "input": "commingled", "output": "â ¤â â Œâ ‡â «" }, { "input": "commingles", "output": "â ¤â â Œâ ‡â ‘â Ž" }, { "input": "commingling", "output": "â ¤â â Œâ ‡â Œ" }, { "input": "commiserate", "output": "â ¤â â Šâ Žâ »â â žâ ‘" }, { "input": "commiserated", "output": "â ¤â â Šâ Žâ »â â žâ «" }, { "input": "commiserates", "output": "â ¤â â Šâ Žâ »â â žâ ‘â Ž" }, { "input": "commiserating", "output": "â ¤â â Šâ Žâ »â â žâ Œ" }, { "input": "commiseration", "output": "â ¤â â Šâ Žâ »â  â " }, { "input": "commiseration's", "output": "â ¤â â Šâ Žâ »â  â â „â Ž" }, { "input": "commiserations", "output": "â ¤â â Šâ Žâ »â  â â Ž" }, { "input": "commiserative", "output": "â ¤â â Šâ Žâ »â â žâ Šâ §â ‘" }, { "input": "commissar", "output": "â ¤â â Šâ Žâ Žâ œ" }, { "input": "commissar's", "output": "â ¤â â Šâ Žâ Žâ œâ „â Ž" }, { "input": "commissariat", "output": "â ¤â â Šâ Žâ Žâ œâ Šâ â ž" }, { "input": "commissariat's", "output": "â ¤â â Šâ Žâ Žâ œâ Šâ â žâ „â Ž" }, { "input": "commissariats", "output": "â ¤â â Šâ Žâ Žâ œâ Šâ â žâ Ž" }, { "input": "commissaries", "output": "â ¤â â Šâ Žâ Žâ œâ Šâ ‘â Ž" }, { "input": "commissars", "output": "â ¤â â Šâ Žâ Žâ œâ Ž" }, { "input": "commissary", "output": "â ¤â â Šâ Žâ Žâ œâ ½" }, { "input": "commissary's", "output": "â ¤â â Šâ Žâ Žâ œâ ½â „â Ž" }, { "input": "commission", "output": "â ¤â â Šâ Žâ ¨â " }, { "input": "commission's", "output": "â ¤â â Šâ Žâ ¨â â „â Ž" }, { "input": "commissioned", "output": "â ¤â â Šâ Žâ ¨â â «" }, { "input": "commissioner", "output": "â ¤â â Šâ Žâ ¨â â »" }, { "input": "commissioner's", "output": "â ¤â â Šâ Žâ ¨â â »â „â Ž" }, { "input": "commissioners", "output": "â ¤â â Šâ Žâ ¨â â »â Ž" }, { "input": "commissioning", "output": "â ¤â â Šâ Žâ ¨â â Œ" }, { "input": "commissions", "output": "â ¤â â Šâ Žâ ¨â â Ž" }, { "input": "commit", "output": "â ¤â â Šâ ž" }, { "input": "commitment", "output": "â ¤â â Šâ žâ °â ž" }, { "input": "commitment's", "output": "â ¤â â Šâ žâ °â žâ „â Ž" }, { "input": "commitments", "output": "â ¤â â Šâ žâ °â žâ Ž" }, { "input": "commits", "output": "â ¤â â Šâ žâ Ž" }, { "input": "committal", "output": "â ¤â â Šâ žâ žâ â ‡" }, { "input": "committal's", "output": "â ¤â â Šâ žâ žâ â ‡â „â Ž" }, { "input": "committals", "output": "â ¤â â Šâ žâ žâ â ‡â Ž" }, { "input": "committed", "output": "â ¤â â Šâ žâ žâ «" }, { "input": "committee", "output": "â ¤â â Šâ žâ žâ ‘â ‘" }, { "input": "committee's", "output": "â ¤â â Šâ žâ žâ ‘â ‘â „â Ž" }, { "input": "committeeman", "output": "â ¤â â Šâ žâ žâ ‘â ‘â â â " }, { "input": "committeeman's", "output": "â ¤â â Šâ žâ žâ ‘â ‘â â â â „â Ž" }, { "input": "committeemen", "output": "â ¤â â Šâ žâ žâ ‘â ‘â â ¢" }, { "input": "committees", "output": "â ¤â â Šâ žâ žâ ‘â ‘â Ž" }, { "input": "committeewoman", "output": "â ¤â â Šâ žâ žâ ‘⠑⠺⠕â â â " }, { "input": "committeewoman's", "output": "â ¤â â Šâ žâ žâ ‘⠑⠺⠕â â â â „â Ž" }, { "input": "committeewomen", "output": "â ¤â â Šâ žâ žâ ‘⠑⠺⠕â â ¢" }, { "input": "committing", "output": "â ¤â â Šâ žâ žâ Œ" }, { "input": "commode", "output": "â ¤â â •⠙⠑" }, { "input": "commode's", "output": "â ¤â â •⠙⠑⠄⠎" }, { "input": "commodes", "output": "â ¤â â •⠙⠑⠎" }, { "input": "commodious", "output": "â ¤â â •⠙⠊⠳⠎" }, { "input": "commodiously", "output": "â ¤â â •⠙⠊⠳⠎⠇⠽" }, { "input": "commodities", "output": "â ¤â â •⠙⠊⠞⠊⠑⠎" }, { "input": "commodity", "output": "â ¤â â •⠙⠰⠽" }, { "input": "commodity's", "output": "â ¤â â •⠙⠰⠽⠄⠎" }, { "input": "commodore", "output": "â ¤â â •⠙⠕⠗⠑" }, { "input": "commodore's", "output": "â ¤â â •⠙⠕⠗⠑⠄⠎" }, { "input": "commodores", "output": "â ¤â â •⠙⠕⠗⠑⠎" }, { "input": "common", "output": "â ¤â â •â " }, { "input": "common's", "output": "â ¤â â •â â „â Ž" }, { "input": "commonalty", "output": "â ¤â â •â â â ‡â žâ ½" }, { "input": "commonalty's", "output": "â ¤â â •â â â ‡â žâ ½â „â Ž" }, { "input": "commoner", "output": "â ¤â â •â â »" }, { "input": "commoner's", "output": "â ¤â â •â â »â „â Ž" }, { "input": "commoners", "output": "â ¤â â •â â »â Ž" }, { "input": "commonest", "output": "â ¤â â •â â ‘â Œ" }, { "input": "commonly", "output": "â ¤â â •â â ‡â ½" }, { "input": "commonness", "output": "â ¤â â •â â °â Ž" }, { "input": "commonness's", "output": "â ¤â â •â â °â Žâ „â Ž" }, { "input": "commonplace", "output": "â ¤â â •â â â ‡â â ‰â ‘" }, { "input": "commonplace's", "output": "â ¤â â •â â â ‡â â ‰â ‘â „â Ž" }, { "input": "commonplaces", "output": "â ¤â â •â â â ‡â â ‰â ‘â Ž" }, { "input": "commons", "output": "â ¤â â •â â Ž" }, { "input": "commonsense", "output": "â ¤â â •â â Žâ ¢â Žâ ‘" }, { "input": "commonweal", "output": "â ¤â â •â â ºâ ‚â ‡" }, { "input": "commonweal's", "output": "â ¤â â •â â ºâ ‚⠇⠄⠎" }, { "input": "commonwealth", "output": "â ¤â â •â â ºâ ‚⠇⠹" }, { "input": "commonwealth's", "output": "â ¤â â •â â ºâ ‚⠇⠹⠄⠎" }, { "input": "commonwealths", "output": "â ¤â â •â â ºâ ‚⠇⠹⠎" }, { "input": "commotion", "output": "â ¤â â •â °â " }, { "input": "commotion's", "output": "â ¤â â •â °â â „â Ž" }, { "input": "commotions", "output": "â ¤â â •â °â â Ž" }, { "input": "communal", "output": "â ¤â â ¥â â â ‡" }, { "input": "communally", "output": "â ¤â â ¥â â  â ½" }, { "input": "commune", "output": "â ¤â â ¥â â ‘" }, { "input": "commune's", "output": "â ¤â â ¥â â ‘â „â Ž" }, { "input": "communed", "output": "â ¤â â ¥â â «" }, { "input": "communes", "output": "â ¤â â ¥â â ‘â Ž" }, { "input": "communicability", "output": "â ¤â â ¥â â Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "communicability's", "output": "â ¤â â ¥â â Šâ ‰â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "communicable", "output": "â ¤â â ¥â â Šâ ‰â â ¼" }, { "input": "communicably", "output": "â ¤â â ¥â â Šâ ‰â â ƒâ ‡â ½" }, { "input": "communicant", "output": "â ¤â â ¥â â Šâ ‰â â â ž" }, { "input": "communicant's", "output": "â ¤â â ¥â â Šâ ‰â â â žâ „â Ž" }, { "input": "communicants", "output": "â ¤â â ¥â â Šâ ‰â â â žâ Ž" }, { "input": "communicate", "output": "â ¤â â ¥â â Šâ ‰â â žâ ‘" }, { "input": "communicated", "output": "â ¤â â ¥â â Šâ ‰â â žâ «" }, { "input": "communicates", "output": "â ¤â â ¥â â Šâ ‰â â žâ ‘â Ž" }, { "input": "communicating", "output": "â ¤â â ¥â â Šâ ‰â â žâ Œ" }, { "input": "communication", "output": "â ¤â â ¥â â Šâ ‰â  â " }, { "input": "communication's", "output": "â ¤â â ¥â â Šâ ‰â  â â „â Ž" }, { "input": "communications", "output": "â ¤â â ¥â â Šâ ‰â  â â Ž" }, { "input": "communicative", "output": "â ¤â â ¥â â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "communicator", "output": "â ¤â â ¥â â Šâ ‰â â žâ •â —" }, { "input": "communicator's", "output": "â ¤â â ¥â â Šâ ‰â â žâ •â —â „â Ž" }, { "input": "communicators", "output": "â ¤â â ¥â â Šâ ‰â â žâ •â —â Ž" }, { "input": "communing", "output": "â ¤â â ¥â â Œ" }, { "input": "communion", "output": "â ¤â â ¥â â Šâ •â " }, { "input": "communion's", "output": "â ¤â â ¥â â Šâ •â â „â Ž" }, { "input": "communions", "output": "â ¤â â ¥â â Šâ •â â Ž" }, { "input": "communique", "output": "â ¤â â ¥â â Šâ Ÿâ ¥â ‘" }, { "input": "communique's", "output": "â ¤â â ¥â â Šâ Ÿâ ¥â ‘â „â Ž" }, { "input": "communiques", "output": "â ¤â â ¥â â Šâ Ÿâ ¥â ‘â Ž" }, { "input": "communism", "output": "â ¤â â ¥â â Šâ Žâ " }, { "input": "communism's", "output": "â ¤â â ¥â â Šâ Žâ â „â Ž" }, { "input": "communist", "output": "â ¤â â ¥â â Šâ Œ" }, { "input": "communist's", "output": "â ¤â â ¥â â Šâ Œâ „â Ž" }, { "input": "communistic", "output": "â ¤â â ¥â â Šâ Œâ Šâ ‰" }, { "input": "communists", "output": "â ¤â â ¥â â Šâ Œâ Ž" }, { "input": "communities", "output": "â ¤â â ¥â â Šâ žâ Šâ ‘â Ž" }, { "input": "community", "output": "â ¤â â ¥â â °â ½" }, { "input": "community's", "output": "â ¤â â ¥â â °â ½â „â Ž" }, { "input": "commutation", "output": "â ¤â â ¥â žâ  â " }, { "input": "commutation's", "output": "â ¤â â ¥â žâ  â â „â Ž" }, { "input": "commutations", "output": "â ¤â â ¥â žâ  â â Ž" }, { "input": "commutative", "output": "â ¤â â ¥â žâ â žâ Šâ §â ‘" }, { "input": "commutator", "output": "â ¤â â ¥â žâ â žâ •â —" }, { "input": "commutator's", "output": "â ¤â â ¥â žâ â žâ •â —â „â Ž" }, { "input": "commutators", "output": "â ¤â â ¥â žâ â žâ •â —â Ž" }, { "input": "commute", "output": "â ¤â â ¥â žâ ‘" }, { "input": "commute's", "output": "â ¤â â ¥â žâ ‘â „â Ž" }, { "input": "commuted", "output": "â ¤â â ¥â žâ «" }, { "input": "commuter", "output": "â ¤â â ¥â žâ »" }, { "input": "commuter's", "output": "â ¤â â ¥â žâ »â „â Ž" }, { "input": "commuters", "output": "â ¤â â ¥â žâ »â Ž" }, { "input": "commutes", "output": "â ¤â â ¥â žâ ‘â Ž" }, { "input": "commuting", "output": "â ¤â â ¥â žâ Œ" }, { "input": "comp's", "output": "â ¤â â „â Ž" }, { "input": "compact", "output": "â ¤â â â ‰â ž" }, { "input": "compact's", "output": "â ¤â â â ‰â žâ „â Ž" }, { "input": "compacted", "output": "â ¤â â â ‰â žâ «" }, { "input": "compacter", "output": "â ¤â â â ‰â žâ »" }, { "input": "compactest", "output": "â ¤â â â ‰â žâ ‘â Œ" }, { "input": "compacting", "output": "â ¤â â â ‰â žâ Œ" }, { "input": "compaction", "output": "â ¤â â â ‰â °â " }, { "input": "compactly", "output": "â ¤â â â ‰â žâ ‡â ½" }, { "input": "compactness", "output": "â ¤â â â ‰â žâ °â Ž" }, { "input": "compactness's", "output": "â ¤â â â ‰â žâ °â Žâ „â Ž" }, { "input": "compactor", "output": "â ¤â â â ‰â žâ •â —" }, { "input": "compactor's", "output": "â ¤â â â ‰â žâ •â —â „â Ž" }, { "input": "compactors", "output": "â ¤â â â ‰â žâ •â —â Ž" }, { "input": "compacts", "output": "â ¤â â â ‰â žâ Ž" }, { "input": "companies", "output": "â ¤â â â â Šâ ‘â Ž" }, { "input": "companion", "output": "â ¤â â â â Šâ •â " }, { "input": "companion's", "output": "â ¤â â â â Šâ •â â „â Ž" }, { "input": "companionable", "output": "â ¤â â â â Šâ •â â â ¼" }, { "input": "companions", "output": "â ¤â â â â Šâ •â â Ž" }, { "input": "companionship", "output": "â ¤â â â â Šâ •â â ©â Šâ " }, { "input": "companionship's", "output": "â ¤â â â â Šâ •â â ©â Šâ â „â Ž" }, { "input": "companionway", "output": "â ¤â â â â Šâ •â â ºâ â ½" }, { "input": "companionway's", "output": "â ¤â â â â Šâ •â â ºâ â ½â „â Ž" }, { "input": "companionways", "output": "â ¤â â â â Šâ •â â ºâ â ½â Ž" }, { "input": "company", "output": "â ¤â â â â ½" }, { "input": "company's", "output": "â ¤â â â â ½â „â Ž" }, { "input": "comparability", "output": "â ¤â â œâ â ƒâ Šâ ‡â °â ½" }, { "input": "comparability's", "output": "â ¤â â œâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "comparable", "output": "â ¤â â œâ â ¼" }, { "input": "comparably", "output": "â ¤â â œâ â ƒâ ‡â ½" }, { "input": "comparative", "output": "â ¤â â œâ â žâ Šâ §â ‘" }, { "input": "comparative's", "output": "â ¤â â œâ â žâ Šâ §â ‘â „â Ž" }, { "input": "comparatively", "output": "â ¤â â œâ â žâ Šâ §â ‘⠇⠽" }, { "input": "comparatives", "output": "â ¤â â œâ â žâ Šâ §â ‘â Ž" }, { "input": "compare", "output": "â ¤â â œâ ‘" }, { "input": "compare's", "output": "â ¤â â œâ ‘â „â Ž" }, { "input": "compared", "output": "â ¤â â œâ «" }, { "input": "compares", "output": "â ¤â â œâ ‘â Ž" }, { "input": "comparing", "output": "â ¤â â œâ Œ" }, { "input": "comparison", "output": "â ¤â â œâ Šâ Žâ •â " }, { "input": "comparison's", "output": "â ¤â â œâ Šâ Žâ •â â „â Ž" }, { "input": "comparisons", "output": "â ¤â â œâ Šâ Žâ •â â Ž" }, { "input": "compartment", "output": "â ¤â â â °â ž" }, { "input": "compartment's", "output": "â ¤â â â °â žâ „â Ž" }, { "input": "compartmental", "output": "â ¤â â â °â žâ â ‡" }, { "input": "compartmentalization", "output": "â ¤â â â °â žâ â ‡â Šâ µâ  â " }, { "input": "compartmentalization's", "output": "â ¤â â â °â žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "compartmentalize", "output": "â ¤â â â °â žâ â ‡â Šâ µâ ‘" }, { "input": "compartmentalized", "output": "â ¤â â â °â žâ â ‡â Šâ µâ «" }, { "input": "compartmentalizes", "output": "â ¤â â â °â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "compartmentalizing", "output": "â ¤â â â °â žâ â ‡â Šâ µâ Œ" }, { "input": "compartments", "output": "â ¤â â â °â žâ Ž" }, { "input": "compass", "output": "â ¤â â â Žâ Ž" }, { "input": "compass's", "output": "â ¤â â â Žâ Žâ „â Ž" }, { "input": "compassed", "output": "â ¤â â â Žâ Žâ «" }, { "input": "compasses", "output": "â ¤â â â Žâ Žâ ‘â Ž" }, { "input": "compassing", "output": "â ¤â â â Žâ Žâ Œ" }, { "input": "compassion", "output": "â ¤â â â Žâ ¨â " }, { "input": "compassion's", "output": "â ¤â â â Žâ ¨â â „â Ž" }, { "input": "compassionate", "output": "â ¤â â â Žâ ¨â â â žâ ‘" }, { "input": "compassionately", "output": "â ¤â â â Žâ ¨â â â žâ ‘⠇⠽" }, { "input": "compatibility", "output": "â ¤â â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "compatibility's", "output": "â ¤â â â žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "compatible", "output": "â ¤â â â žâ Šâ ¼" }, { "input": "compatible's", "output": "â ¤â â â žâ Šâ ¼â „â Ž" }, { "input": "compatibles", "output": "â ¤â â â žâ Šâ ¼â Ž" }, { "input": "compatibly", "output": "â ¤â â â žâ Šâ ƒâ ‡â ½" }, { "input": "compatriot", "output": "â ¤â â â žâ —â Šâ •â ž" }, { "input": "compatriot's", "output": "â ¤â â â žâ —â Šâ •â žâ „â Ž" }, { "input": "compatriots", "output": "â ¤â â â žâ —â Šâ •â žâ Ž" }, { "input": "comped", "output": "â ¤â â «" }, { "input": "compeer", "output": "â ¤â â ‘â »" }, { "input": "compeer's", "output": "â ¤â â ‘⠻⠄⠎" }, { "input": "compeers", "output": "â ¤â â ‘⠻⠎" }, { "input": "compel", "output": "â ¤â â ‘â ‡" }, { "input": "compelled", "output": "â ¤â â ‘⠇⠇⠫" }, { "input": "compelling", "output": "â ¤â â ‘⠇⠇⠌" }, { "input": "compellingly", "output": "â ¤â â ‘⠇⠇⠌⠇⠽" }, { "input": "compels", "output": "â ¤â â ‘⠇⠎" }, { "input": "compendious", "output": "â ¤â â ¢â ™â Šâ ³â Ž" }, { "input": "compendium", "output": "â ¤â â ¢â ™â Šâ ¥â " }, { "input": "compendium's", "output": "â ¤â â ¢â ™â Šâ ¥â â „â Ž" }, { "input": "compendiums", "output": "â ¤â â ¢â ™â Šâ ¥â â Ž" }, { "input": "compensate", "output": "â ¤â â ¢â Žâ â žâ ‘" }, { "input": "compensated", "output": "â ¤â â ¢â Žâ â žâ «" }, { "input": "compensates", "output": "â ¤â â ¢â Žâ â žâ ‘â Ž" }, { "input": "compensating", "output": "â ¤â â ¢â Žâ â žâ Œ" }, { "input": "compensation", "output": "â ¤â â ¢â Žâ  â " }, { "input": "compensation's", "output": "â ¤â â ¢â Žâ  â â „â Ž" }, { "input": "compensations", "output": "â ¤â â ¢â Žâ  â â Ž" }, { "input": "compensatory", "output": "â ¤â â ¢â Žâ â žâ •â —â ½" }, { "input": "compete", "output": "â ¤â â ‘â žâ ‘" }, { "input": "competed", "output": "â ¤â â ‘â žâ «" }, { "input": "competence", "output": "â ¤â â ‘â žâ °â ‘" }, { "input": "competence's", "output": "â ¤â â ‘â žâ °â ‘â „â Ž" }, { "input": "competences", "output": "â ¤â â ‘â žâ °â ‘â Ž" }, { "input": "competencies", "output": "â ¤â â ‘⠞⠢⠉⠊⠑⠎" }, { "input": "competency", "output": "â ¤â â ‘⠞⠢⠉⠽" }, { "input": "competency's", "output": "â ¤â â ‘⠞⠢⠉⠽⠄⠎" }, { "input": "competent", "output": "â ¤â â ‘⠞⠢⠞" }, { "input": "competently", "output": "â ¤â â ‘⠞⠢⠞⠇⠽" }, { "input": "competes", "output": "â ¤â â ‘â žâ ‘â Ž" }, { "input": "competing", "output": "â ¤â â ‘â žâ Œ" }, { "input": "competition", "output": "â ¤â â ‘â žâ Šâ °â " }, { "input": "competition's", "output": "â ¤â â ‘â žâ Šâ °â â „â Ž" }, { "input": "competitions", "output": "â ¤â â ‘â žâ Šâ °â â Ž" }, { "input": "competitive", "output": "â ¤â â ‘â žâ Šâ žâ Šâ §â ‘" }, { "input": "competitively", "output": "â ¤â â ‘⠞⠊⠞⠊⠧⠑⠇⠽" }, { "input": "competitiveness", "output": "â ¤â â ‘â žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "competitiveness's", "output": "â ¤â â ‘â žâ Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "competitor", "output": "â ¤â â ‘â žâ Šâ žâ •â —" }, { "input": "competitor's", "output": "â ¤â â ‘â žâ Šâ žâ •â —â „â Ž" }, { "input": "competitors", "output": "â ¤â â ‘â žâ Šâ žâ •â —â Ž" }, { "input": "compilation", "output": "â ¤â â Šâ ‡â  â " }, { "input": "compilation's", "output": "â ¤â â Šâ ‡â  â â „â Ž" }, { "input": "compilations", "output": "â ¤â â Šâ ‡â  â â Ž" }, { "input": "compile", "output": "â ¤â â Šâ ‡â ‘" }, { "input": "compiled", "output": "â ¤â â Šâ ‡â «" }, { "input": "compiler", "output": "â ¤â â Šâ ‡â »" }, { "input": "compiler's", "output": "â ¤â â Šâ ‡â »â „â Ž" }, { "input": "compilers", "output": "â ¤â â Šâ ‡â »â Ž" }, { "input": "compiles", "output": "â ¤â â Šâ ‡â ‘â Ž" }, { "input": "compiling", "output": "â ¤â â Šâ ‡â Œ" }, { "input": "comping", "output": "â ¤â â Œ" }, { "input": "complacence", "output": "â ¤â â ‡â â ‰â °â ‘" }, { "input": "complacence's", "output": "â ¤â â ‡â â ‰â °â ‘â „â Ž" }, { "input": "complacency", "output": "â ¤â â ‡â â ‰â ¢â ‰â ½" }, { "input": "complacency's", "output": "â ¤â â ‡â â ‰â ¢â ‰â ½â „â Ž" }, { "input": "complacent", "output": "â ¤â â ‡â â ‰â ¢â ž" }, { "input": "complacently", "output": "â ¤â â ‡â â ‰â ¢â žâ ‡â ½" }, { "input": "complain", "output": "â ¤â â ‡â â ”" }, { "input": "complainant", "output": "â ¤â â ‡â â ”â â â ž" }, { "input": "complainant's", "output": "â ¤â â ‡â â ”â â â žâ „â Ž" }, { "input": "complainants", "output": "â ¤â â ‡â â ”â â â žâ Ž" }, { "input": "complained", "output": "â ¤â â ‡â â ”â «" }, { "input": "complainer", "output": "â ¤â â ‡â â ”â »" }, { "input": "complainer's", "output": "â ¤â â ‡â â ”⠻⠄⠎" }, { "input": "complainers", "output": "â ¤â â ‡â â ”⠻⠎" }, { "input": "complaining", "output": "â ¤â â ‡â â ”â Œ" }, { "input": "complains", "output": "â ¤â â ‡â â ”â Ž" }, { "input": "complaint", "output": "â ¤â â ‡â â ”â ž" }, { "input": "complaint's", "output": "â ¤â â ‡â â ”â žâ „â Ž" }, { "input": "complaints", "output": "â ¤â â ‡â â ”â žâ Ž" }, { "input": "complaisance", "output": "â ¤â â ‡â â Šâ Žâ ¨â ‘" }, { "input": "complaisance's", "output": "â ¤â â ‡â â Šâ Žâ ¨â ‘â „â Ž" }, { "input": "complaisant", "output": "â ¤â â ‡â â Šâ Žâ â â ž" }, { "input": "complaisantly", "output": "â ¤â â ‡â â Šâ Žâ â â žâ ‡â ½" }, { "input": "complected", "output": "â ¤â â ‡â ‘⠉⠞⠫" }, { "input": "complement", "output": "â ¤â â ‡â ‘â °â ž" }, { "input": "complement's", "output": "â ¤â â ‡â ‘â °â žâ „â Ž" }, { "input": "complementary", "output": "â ¤â â ‡â ‘⠰⠞⠜⠽" }, { "input": "complemented", "output": "â ¤â â ‡â ‘â °â žâ «" }, { "input": "complementing", "output": "â ¤â â ‡â ‘â °â žâ Œ" }, { "input": "complements", "output": "â ¤â â ‡â ‘â °â žâ Ž" }, { "input": "complete", "output": "â ¤â â ‡â ‘â žâ ‘" }, { "input": "completed", "output": "â ¤â â ‡â ‘â žâ «" }, { "input": "completely", "output": "â ¤â â ‡â ‘⠞⠑⠇⠽" }, { "input": "completeness", "output": "â ¤â â ‡â ‘â žâ ‘â °â Ž" }, { "input": "completeness's", "output": "â ¤â â ‡â ‘â žâ ‘â °â Žâ „â Ž" }, { "input": "completer", "output": "â ¤â â ‡â ‘â žâ »" }, { "input": "completes", "output": "â ¤â â ‡â ‘â žâ ‘â Ž" }, { "input": "completest", "output": "â ¤â â ‡â ‘â žâ ‘â Œ" }, { "input": "completing", "output": "â ¤â â ‡â ‘â žâ Œ" }, { "input": "completion", "output": "â ¤â â ‡â ‘â °â " }, { "input": "completion's", "output": "â ¤â â ‡â ‘â °â â „â Ž" }, { "input": "complex", "output": "â ¤â â ‡â ‘â ­" }, { "input": "complex's", "output": "â ¤â â ‡â ‘â ­â „â Ž" }, { "input": "complexes", "output": "â ¤â â ‡â ‘â ­â ‘â Ž" }, { "input": "complexion", "output": "â ¤â â ‡â ‘â ­â Šâ •â " }, { "input": "complexion's", "output": "â ¤â â ‡â ‘â ­â Šâ •â â „â Ž" }, { "input": "complexional", "output": "â ¤â â ‡â ‘â ­â Šâ •â â â ‡" }, { "input": "complexioned", "output": "â ¤â â ‡â ‘â ­â Šâ •â â «" }, { "input": "complexions", "output": "â ¤â â ‡â ‘â ­â Šâ •â â Ž" }, { "input": "complexities", "output": "â ¤â â ‡â ‘â ­â Šâ žâ Šâ ‘â Ž" }, { "input": "complexity", "output": "â ¤â â ‡â ‘â ­â °â ½" }, { "input": "complexity's", "output": "â ¤â â ‡â ‘⠭⠰⠽⠄⠎" }, { "input": "complexly", "output": "â ¤â â ‡â ‘⠭⠇⠽" }, { "input": "compliance", "output": "â ¤â â ‡â Šâ ¨â ‘" }, { "input": "compliance's", "output": "â ¤â â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "compliant", "output": "â ¤â â ‡â Šâ â â ž" }, { "input": "compliantly", "output": "â ¤â â ‡â Šâ â â žâ ‡â ½" }, { "input": "complicate", "output": "â ¤â â ‡â Šâ ‰â â žâ ‘" }, { "input": "complicated", "output": "â ¤â â ‡â Šâ ‰â â žâ «" }, { "input": "complicatedly", "output": "â ¤â â ‡â Šâ ‰â â žâ «â ‡â ½" }, { "input": "complicates", "output": "â ¤â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "complicating", "output": "â ¤â â ‡â Šâ ‰â â žâ Œ" }, { "input": "complication", "output": "â ¤â â ‡â Šâ ‰â  â " }, { "input": "complication's", "output": "â ¤â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "complications", "output": "â ¤â â ‡â Šâ ‰â  â â Ž" }, { "input": "complicit", "output": "â ¤â â ‡â Šâ ‰â Šâ ž" }, { "input": "complicity", "output": "â ¤â â ‡â Šâ ‰â °â ½" }, { "input": "complicity's", "output": "â ¤â â ‡â Šâ ‰â °â ½â „â Ž" }, { "input": "complied", "output": "â ¤â â ‡â Šâ «" }, { "input": "complies", "output": "â ¤â â ‡â Šâ ‘â Ž" }, { "input": "compliment", "output": "â ¤â â ‡â Šâ °â ž" }, { "input": "compliment's", "output": "â ¤â â ‡â Šâ °â žâ „â Ž" }, { "input": "complimentary", "output": "â ¤â â ‡â Šâ °â žâ œâ ½" }, { "input": "complimented", "output": "â ¤â â ‡â Šâ °â žâ «" }, { "input": "complimenting", "output": "â ¤â â ‡â Šâ °â žâ Œ" }, { "input": "compliments", "output": "â ¤â â ‡â Šâ °â žâ Ž" }, { "input": "comply", "output": "â ¤â â ‡â ½" }, { "input": "complying", "output": "â ¤â â ‡â ½â Œ" }, { "input": "component", "output": "â ¤â â •â â ¢â ž" }, { "input": "component's", "output": "â ¤â â •â â ¢â žâ „â Ž" }, { "input": "components", "output": "â ¤â â •â â ¢â žâ Ž" }, { "input": "comport", "output": "â ¤â â •â —â ž" }, { "input": "comported", "output": "â ¤â â •â —â žâ «" }, { "input": "comporting", "output": "â ¤â â •â —â žâ Œ" }, { "input": "comportment", "output": "â ¤â â •â —â žâ °â ž" }, { "input": "comportment's", "output": "â ¤â â •â —â žâ °â žâ „â Ž" }, { "input": "comports", "output": "â ¤â â •â —â žâ Ž" }, { "input": "compose", "output": "â ¤â â •â Žâ ‘" }, { "input": "composed", "output": "â ¤â â •â Žâ «" }, { "input": "composedly", "output": "â ¤â â •⠎⠫⠇⠽" }, { "input": "composer", "output": "â ¤â â •â Žâ »" }, { "input": "composer's", "output": "â ¤â â •⠎⠻⠄⠎" }, { "input": "composers", "output": "â ¤â â •⠎⠻⠎" }, { "input": "composes", "output": "â ¤â â •â Žâ ‘â Ž" }, { "input": "composing", "output": "â ¤â â •â Žâ Œ" }, { "input": "composite", "output": "â ¤â â •â Žâ Šâ žâ ‘" }, { "input": "composite's", "output": "â ¤â â •â Žâ Šâ žâ ‘â „â Ž" }, { "input": "compositely", "output": "â ¤â â •⠎⠊⠞⠑⠇⠽" }, { "input": "composites", "output": "â ¤â â •â Žâ Šâ žâ ‘â Ž" }, { "input": "composition", "output": "â ¤â â •â Žâ Šâ °â " }, { "input": "composition's", "output": "â ¤â â •â Žâ Šâ °â â „â Ž" }, { "input": "compositions", "output": "â ¤â â •â Žâ Šâ °â â Ž" }, { "input": "compositor", "output": "â ¤â â •â Žâ Šâ žâ •â —" }, { "input": "compositor's", "output": "â ¤â â •â Žâ Šâ žâ •â —â „â Ž" }, { "input": "compositors", "output": "â ¤â â •â Žâ Šâ žâ •â —â Ž" }, { "input": "compost", "output": "â ¤â â •â Œ" }, { "input": "compost's", "output": "â ¤â â •⠌⠄⠎" }, { "input": "composted", "output": "â ¤â â •⠌⠫" }, { "input": "composting", "output": "â ¤â â •⠌⠌" }, { "input": "composts", "output": "â ¤â â •⠌⠎" }, { "input": "composure", "output": "â ¤â â •⠎⠥⠗⠑" }, { "input": "composure's", "output": "â ¤â â •⠎⠥⠗⠑⠄⠎" }, { "input": "compote", "output": "â ¤â â •â žâ ‘" }, { "input": "compote's", "output": "â ¤â â •â žâ ‘â „â Ž" }, { "input": "compotes", "output": "â ¤â â •â žâ ‘â Ž" }, { "input": "compound", "output": "â ¤â â ¨â ™" }, { "input": "compound's", "output": "â ¤â â ¨â ™â „â Ž" }, { "input": "compoundable", "output": "â ¤â â ¨â ™â â ¼" }, { "input": "compounded", "output": "â ¤â â ¨â ™â «" }, { "input": "compounding", "output": "â ¤â â ¨â ™â Œ" }, { "input": "compounds", "output": "â ¤â â ¨â ™â Ž" }, { "input": "comprehend", "output": "â ¤â â —⠑⠓⠢⠙" }, { "input": "comprehended", "output": "â ¤â â —⠑⠓⠢⠙⠫" }, { "input": "comprehending", "output": "â ¤â â —⠑⠓⠢⠙⠌" }, { "input": "comprehends", "output": "â ¤â â —⠑⠓⠢⠙⠎" }, { "input": "comprehensibility", "output": "â ¤â â —⠑⠓⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "comprehensibility's", "output": "â ¤â â —⠑⠓⠢⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "comprehensible", "output": "â ¤â â —⠑⠓⠢⠎⠊⠼" }, { "input": "comprehension", "output": "â ¤â â —⠑⠓⠢⠨â " }, { "input": "comprehension's", "output": "â ¤â â —⠑⠓⠢⠨â â „â Ž" }, { "input": "comprehensions", "output": "â ¤â â —⠑⠓⠢⠨â â Ž" }, { "input": "comprehensive", "output": "â ¤â â —⠑⠓⠢⠎⠊⠧⠑" }, { "input": "comprehensive's", "output": "â ¤â â —⠑⠓⠢⠎⠊⠧⠑⠄⠎" }, { "input": "comprehensively", "output": "â ¤â â —⠑⠓⠢⠎⠊⠧⠑⠇⠽" }, { "input": "comprehensiveness", "output": "â ¤â â —⠑⠓⠢⠎⠊⠧⠑⠰⠎" }, { "input": "comprehensiveness's", "output": "â ¤â â —⠑⠓⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "comprehensives", "output": "â ¤â â —⠑⠓⠢⠎⠊⠧⠑⠎" }, { "input": "compress", "output": "â ¤â â —â ‘â Žâ Ž" }, { "input": "compress's", "output": "â ¤â â —â ‘â Žâ Žâ „â Ž" }, { "input": "compressed", "output": "â ¤â â —â ‘â Žâ Žâ «" }, { "input": "compresses", "output": "â ¤â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "compressing", "output": "â ¤â â —â ‘â Žâ Žâ Œ" }, { "input": "compression", "output": "â ¤â â —â ‘â Žâ ¨â " }, { "input": "compression's", "output": "â ¤â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "compressor", "output": "â ¤â â —â ‘â Žâ Žâ •â —" }, { "input": "compressor's", "output": "â ¤â â —â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "compressors", "output": "â ¤â â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "comprise", "output": "â ¤â â —â Šâ Žâ ‘" }, { "input": "comprised", "output": "â ¤â â —â Šâ Žâ «" }, { "input": "comprises", "output": "â ¤â â —â Šâ Žâ ‘â Ž" }, { "input": "comprising", "output": "â ¤â â —â Šâ Žâ Œ" }, { "input": "compromise", "output": "â ¤â â —â •â â Šâ Žâ ‘" }, { "input": "compromise's", "output": "â ¤â â —â •â â Šâ Žâ ‘â „â Ž" }, { "input": "compromised", "output": "â ¤â â —â •â â Šâ Žâ «" }, { "input": "compromises", "output": "â ¤â â —â •â â Šâ Žâ ‘â Ž" }, { "input": "compromising", "output": "â ¤â â —â •â â Šâ Žâ Œ" }, { "input": "comps", "output": "â ¤â â Ž" }, { "input": "comptroller", "output": "â ¤â â žâ —⠕⠇⠇⠻" }, { "input": "comptroller's", "output": "â ¤â â žâ —⠕⠇⠇⠻⠄⠎" }, { "input": "comptrollers", "output": "â ¤â â žâ —⠕⠇⠇⠻⠎" }, { "input": "compulsion", "output": "â ¤â â ¥â ‡â ¨â " }, { "input": "compulsion's", "output": "â ¤â â ¥â ‡â ¨â â „â Ž" }, { "input": "compulsions", "output": "â ¤â â ¥â ‡â ¨â â Ž" }, { "input": "compulsive", "output": "â ¤â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "compulsively", "output": "â ¤â â ¥â ‡â Žâ Šâ §â ‘⠇⠽" }, { "input": "compulsiveness", "output": "â ¤â â ¥â ‡â Žâ Šâ §â ‘â °â Ž" }, { "input": "compulsiveness's", "output": "â ¤â â ¥â ‡â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "compulsories", "output": "â ¤â â ¥â ‡â Žâ •â —â Šâ ‘â Ž" }, { "input": "compulsorily", "output": "â ¤â â ¥â ‡â Žâ •⠗⠊⠇⠽" }, { "input": "compulsory", "output": "â ¤â â ¥â ‡â Žâ •â —â ½" }, { "input": "compulsory's", "output": "â ¤â â ¥â ‡â Žâ •⠗⠽⠄⠎" }, { "input": "compunction", "output": "â ¤â â ¥â â ‰â °â " }, { "input": "compunction's", "output": "â ¤â â ¥â â ‰â °â â „â Ž" }, { "input": "compunctions", "output": "â ¤â â ¥â â ‰â °â â Ž" }, { "input": "computation", "output": "â ¤â â ¥â žâ  â " }, { "input": "computation's", "output": "â ¤â â ¥â žâ  â â „â Ž" }, { "input": "computational", "output": "â ¤â â ¥â žâ  â â â ‡" }, { "input": "computationally", "output": "â ¤â â ¥â žâ  â â  â ½" }, { "input": "computations", "output": "â ¤â â ¥â žâ  â â Ž" }, { "input": "compute", "output": "â ¤â â ¥â žâ ‘" }, { "input": "computed", "output": "â ¤â â ¥â žâ «" }, { "input": "computer", "output": "â ¤â â ¥â žâ »" }, { "input": "computer's", "output": "â ¤â â ¥â žâ »â „â Ž" }, { "input": "computerization", "output": "â ¤â â ¥â žâ »â Šâ µâ  â " }, { "input": "computerization's", "output": "â ¤â â ¥â žâ »â Šâ µâ  â â „â Ž" }, { "input": "computerize", "output": "â ¤â â ¥â žâ »â Šâ µâ ‘" }, { "input": "computerized", "output": "â ¤â â ¥â žâ »â Šâ µâ «" }, { "input": "computerizes", "output": "â ¤â â ¥â žâ »â Šâ µâ ‘â Ž" }, { "input": "computerizing", "output": "â ¤â â ¥â žâ »â Šâ µâ Œ" }, { "input": "computers", "output": "â ¤â â ¥â žâ »â Ž" }, { "input": "computes", "output": "â ¤â â ¥â žâ ‘â Ž" }, { "input": "computing", "output": "â ¤â â ¥â žâ Œ" }, { "input": "computing's", "output": "â ¤â â ¥â žâ Œâ „â Ž" }, { "input": "comrade", "output": "⠤⠗â â ™â ‘" }, { "input": "comrade's", "output": "⠤⠗â â ™â ‘â „â Ž" }, { "input": "comrades", "output": "⠤⠗â â ™â ‘â Ž" }, { "input": "comradeship", "output": "⠤⠗â â ™â ‘â ©â Šâ " }, { "input": "comradeship's", "output": "⠤⠗â â ™â ‘â ©â Šâ â „â Ž" }, { "input": "con", "output": "⠉⠕â " }, { "input": "con's", "output": "⠉⠕â â „â Ž" }, { "input": "concatenate", "output": "â ’â ‰â â žâ ¢â â žâ ‘" }, { "input": "concatenated", "output": "â ’â ‰â â žâ ¢â â žâ «" }, { "input": "concatenates", "output": "â ’â ‰â â žâ ¢â â žâ ‘â Ž" }, { "input": "concatenating", "output": "â ’â ‰â â žâ ¢â â žâ Œ" }, { "input": "concatenation", "output": "â ’â ‰â â žâ ¢â  â " }, { "input": "concatenation's", "output": "â ’â ‰â â žâ ¢â  â â „â Ž" }, { "input": "concatenations", "output": "â ’â ‰â â žâ ¢â  â â Ž" }, { "input": "concave", "output": "â ’â ‰â â §â ‘" }, { "input": "concavely", "output": "â ’â ‰â â §â ‘⠇⠽" }, { "input": "concaveness", "output": "â ’â ‰â â §â ‘â °â Ž" }, { "input": "concaveness's", "output": "â ’â ‰â â §â ‘â °â Žâ „â Ž" }, { "input": "concavities", "output": "â ’â ‰â â §â Šâ žâ Šâ ‘â Ž" }, { "input": "concavity", "output": "â ’â ‰â â §â °â ½" }, { "input": "concavity's", "output": "â ’â ‰â â §â °â ½â „â Ž" }, { "input": "conceal", "output": "⠒⠉⠂⠇" }, { "input": "concealable", "output": "⠒⠉⠂⠇â â ¼" }, { "input": "concealed", "output": "⠒⠉⠂⠇⠫" }, { "input": "concealer", "output": "⠒⠉⠂⠇⠻" }, { "input": "concealer's", "output": "⠒⠉⠂⠇⠻⠄⠎" }, { "input": "concealers", "output": "⠒⠉⠂⠇⠻⠎" }, { "input": "concealing", "output": "⠒⠉⠂⠇⠌" }, { "input": "concealment", "output": "⠒⠉⠂⠇⠰⠞" }, { "input": "concealment's", "output": "⠒⠉⠂⠇⠰⠞⠄⠎" }, { "input": "conceals", "output": "⠒⠉⠂⠇⠎" }, { "input": "concede", "output": "⠒⠉⠫⠑" }, { "input": "conceded", "output": "⠒⠉⠫⠫" }, { "input": "concedes", "output": "⠒⠉⠫⠑⠎" }, { "input": "conceding", "output": "⠒⠉⠫⠌" }, { "input": "conceit", "output": "⠒⠉⠑⠊⠞" }, { "input": "conceit's", "output": "⠒⠉⠑⠊⠞⠄⠎" }, { "input": "conceited", "output": "⠒⠉⠑⠊⠞⠫" }, { "input": "conceitedness", "output": "⠒⠉⠑⠊⠞⠫⠰⠎" }, { "input": "conceitedness's", "output": "⠒⠉⠑⠊⠞⠫⠰⠎⠄⠎" }, { "input": "conceits", "output": "⠒⠉⠑⠊⠞⠎" }, { "input": "conceivable", "output": "⠒⠉⠑⠊⠧â â ¼" }, { "input": "conceivably", "output": "⠒⠉⠑⠊⠧â â ƒâ ‡â ½" }, { "input": "conceive", "output": "⠒⠉⠧" }, { "input": "conceived", "output": "⠒⠉⠧⠙" }, { "input": "conceives", "output": "⠒⠉⠧⠎" }, { "input": "conceiving", "output": "⠒⠉⠧⠛" }, { "input": "concentrate", "output": "⠒⠉⠢⠞⠗â â žâ ‘" }, { "input": "concentrate's", "output": "⠒⠉⠢⠞⠗â â žâ ‘â „â Ž" }, { "input": "concentrated", "output": "⠒⠉⠢⠞⠗â â žâ «" }, { "input": "concentrates", "output": "⠒⠉⠢⠞⠗â â žâ ‘â Ž" }, { "input": "concentrating", "output": "⠒⠉⠢⠞⠗â â žâ Œ" }, { "input": "concentration", "output": "⠒⠉⠢⠞⠗⠠â " }, { "input": "concentration's", "output": "⠒⠉⠢⠞⠗⠠â â „â Ž" }, { "input": "concentrations", "output": "⠒⠉⠢⠞⠗⠠â â Ž" }, { "input": "concentric", "output": "⠒⠉⠢⠞⠗⠊⠉" }, { "input": "concentrically", "output": "⠒⠉⠢⠞⠗⠊⠉⠠⠽" }, { "input": "concept", "output": "⠒⠉⠑â â ž" }, { "input": "concept's", "output": "⠒⠉⠑â â žâ „â Ž" }, { "input": "conception", "output": "⠒⠉⠑â â °â " }, { "input": "conception's", "output": "⠒⠉⠑â â °â â „â Ž" }, { "input": "conceptional", "output": "⠒⠉⠑â â °â â â ‡" }, { "input": "conceptions", "output": "⠒⠉⠑â â °â â Ž" }, { "input": "concepts", "output": "⠒⠉⠑â â žâ Ž" }, { "input": "conceptual", "output": "⠒⠉⠑â â žâ ¥â â ‡" }, { "input": "conceptualization", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ  â " }, { "input": "conceptualization's", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ  â â „â Ž" }, { "input": "conceptualizations", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ  â â Ž" }, { "input": "conceptualize", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "conceptualized", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ «" }, { "input": "conceptualizes", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "conceptualizing", "output": "⠒⠉⠑â â žâ ¥â â ‡â Šâ µâ Œ" }, { "input": "conceptually", "output": "⠒⠉⠑â â žâ ¥â  â ½" }, { "input": "concern", "output": "⠒⠉⠻â " }, { "input": "concern's", "output": "⠒⠉⠻â â „â Ž" }, { "input": "concerned", "output": "⠒⠉⠻â â «" }, { "input": "concerning", "output": "⠒⠉⠻â â Œ" }, { "input": "concerns", "output": "⠒⠉⠻â â Ž" }, { "input": "concert", "output": "⠒⠉⠻⠞" }, { "input": "concert's", "output": "⠒⠉⠻⠞⠄⠎" }, { "input": "concerted", "output": "⠒⠉⠻⠞⠫" }, { "input": "concertedly", "output": "⠒⠉⠻⠞⠫⠇⠽" }, { "input": "concertina", "output": "⠒⠉⠻⠞⠔â " }, { "input": "concertina's", "output": "⠒⠉⠻⠞⠔â â „â Ž" }, { "input": "concertinaed", "output": "⠒⠉⠻⠞⠔â â «" }, { "input": "concertinaing", "output": "⠒⠉⠻⠞⠔â â Œ" }, { "input": "concertinas", "output": "⠒⠉⠻⠞⠔â â Ž" }, { "input": "concerting", "output": "⠒⠉⠻⠞⠌" }, { "input": "concertize", "output": "⠒⠉⠻⠞⠊⠵⠑" }, { "input": "concertized", "output": "⠒⠉⠻⠞⠊⠵⠫" }, { "input": "concertizes", "output": "⠒⠉⠻⠞⠊⠵⠑⠎" }, { "input": "concertizing", "output": "⠒⠉⠻⠞⠊⠵⠌" }, { "input": "concertmaster", "output": "⠒⠉⠻⠞â â â Œâ »" }, { "input": "concertmaster's", "output": "⠒⠉⠻⠞â â â Œâ »â „â Ž" }, { "input": "concertmasters", "output": "⠒⠉⠻⠞â â â Œâ »â Ž" }, { "input": "concerto", "output": "⠒⠉⠻⠞⠕" }, { "input": "concerto's", "output": "⠒⠉⠻⠞⠕⠄⠎" }, { "input": "concertos", "output": "⠒⠉⠻⠞⠕⠎" }, { "input": "concerts", "output": "⠒⠉⠻⠞⠎" }, { "input": "concession", "output": "⠒⠉⠑⠎⠨â " }, { "input": "concession's", "output": "⠒⠉⠑⠎⠨â â „â Ž" }, { "input": "concessionaire", "output": "⠒⠉⠑⠎⠨â â â Šâ —â ‘" }, { "input": "concessionaire's", "output": "⠒⠉⠑⠎⠨â â â Šâ —â ‘â „â Ž" }, { "input": "concessionaires", "output": "⠒⠉⠑⠎⠨â â â Šâ —â ‘â Ž" }, { "input": "concessional", "output": "⠒⠉⠑⠎⠨â â â ‡" }, { "input": "concessions", "output": "⠒⠉⠑⠎⠨â â Ž" }, { "input": "conch", "output": "⠉⠕â â ¡" }, { "input": "conch's", "output": "⠉⠕â â ¡â „â Ž" }, { "input": "conchs", "output": "â ’â ¡â Ž" }, { "input": "concierge", "output": "⠒⠉⠊⠻⠛⠑" }, { "input": "concierge's", "output": "⠒⠉⠊⠻⠛⠑⠄⠎" }, { "input": "concierges", "output": "⠒⠉⠊⠻⠛⠑⠎" }, { "input": "conciliate", "output": "⠒⠉⠊⠇⠊â â žâ ‘" }, { "input": "conciliated", "output": "⠒⠉⠊⠇⠊â â žâ «" }, { "input": "conciliates", "output": "⠒⠉⠊⠇⠊â â žâ ‘â Ž" }, { "input": "conciliating", "output": "⠒⠉⠊⠇⠊â â žâ Œ" }, { "input": "conciliation", "output": "⠒⠉⠊⠇⠊⠠â " }, { "input": "conciliation's", "output": "⠒⠉⠊⠇⠊⠠â â „â Ž" }, { "input": "conciliator", "output": "⠒⠉⠊⠇⠊â â žâ •â —" }, { "input": "conciliator's", "output": "⠒⠉⠊⠇⠊â â žâ •â —â „â Ž" }, { "input": "conciliators", "output": "⠒⠉⠊⠇⠊â â žâ •â —â Ž" }, { "input": "conciliatory", "output": "⠒⠉⠊⠇⠊â â žâ •â —â ½" }, { "input": "concise", "output": "⠒⠉⠊⠎⠑" }, { "input": "concisely", "output": "⠒⠉⠊⠎⠑⠇⠽" }, { "input": "conciseness", "output": "⠒⠉⠊⠎⠑⠰⠎" }, { "input": "conciseness's", "output": "⠒⠉⠊⠎⠑⠰⠎⠄⠎" }, { "input": "conciser", "output": "⠒⠉⠊⠎⠻" }, { "input": "concisest", "output": "⠒⠉⠊⠎⠑⠌" }, { "input": "concision's", "output": "⠒⠉⠊⠨â â „â Ž" }, { "input": "conclave", "output": "⠒⠉⠇â â §â ‘" }, { "input": "conclave's", "output": "⠒⠉⠇â â §â ‘â „â Ž" }, { "input": "conclaves", "output": "⠒⠉⠇â â §â ‘â Ž" }, { "input": "conclude", "output": "⠒⠉⠇⠥⠙⠑" }, { "input": "concluded", "output": "⠒⠉⠇⠥⠙⠫" }, { "input": "concludes", "output": "⠒⠉⠇⠥⠙⠑⠎" }, { "input": "concluding", "output": "⠒⠉⠇⠥⠙⠌" }, { "input": "conclusion", "output": "⠒⠉⠇⠥⠨â " }, { "input": "conclusion's", "output": "⠒⠉⠇⠥⠨â â „â Ž" }, { "input": "conclusions", "output": "⠒⠉⠇⠥⠨â â Ž" }, { "input": "conclusive", "output": "⠒⠉⠇⠥⠎⠊⠧⠑" }, { "input": "conclusively", "output": "⠒⠉⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "conclusiveness", "output": "⠒⠉⠇⠥⠎⠊⠧⠑⠰⠎" }, { "input": "conclusiveness's", "output": "⠒⠉⠇⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "concoct", "output": "⠒⠉⠕⠉⠞" }, { "input": "concocted", "output": "⠒⠉⠕⠉⠞⠫" }, { "input": "concocting", "output": "⠒⠉⠕⠉⠞⠌" }, { "input": "concoction", "output": "⠒⠉⠕⠉⠰â " }, { "input": "concoction's", "output": "⠒⠉⠕⠉⠰â â „â Ž" }, { "input": "concoctions", "output": "⠒⠉⠕⠉⠰â â Ž" }, { "input": "concocts", "output": "⠒⠉⠕⠉⠞⠎" }, { "input": "concomitant", "output": "⠒⠉⠕â â Šâ žâ â â ž" }, { "input": "concomitant's", "output": "⠒⠉⠕â â Šâ žâ â â žâ „â Ž" }, { "input": "concomitants", "output": "⠒⠉⠕â â Šâ žâ â â žâ Ž" }, { "input": "concord", "output": "⠒⠉⠕⠗⠙" }, { "input": "concord's", "output": "⠒⠉⠕⠗⠙⠄⠎" }, { "input": "concordance", "output": "⠒⠉⠕⠗⠙⠨⠑" }, { "input": "concordance's", "output": "⠒⠉⠕⠗⠙⠨⠑⠄⠎" }, { "input": "concordances", "output": "⠒⠉⠕⠗⠙⠨⠑⠎" }, { "input": "concordant", "output": "⠒⠉⠕⠗⠙â â â ž" }, { "input": "concourse", "output": "⠒⠉⠳⠗⠎⠑" }, { "input": "concourse's", "output": "⠒⠉⠳⠗⠎⠑⠄⠎" }, { "input": "concourses", "output": "⠒⠉⠳⠗⠎⠑⠎" }, { "input": "concrete", "output": "⠒⠉⠗⠑⠞⠑" }, { "input": "concrete's", "output": "⠒⠉⠗⠑⠞⠑⠄⠎" }, { "input": "concreted", "output": "⠒⠉⠗⠑⠞⠫" }, { "input": "concretely", "output": "⠒⠉⠗⠑⠞⠑⠇⠽" }, { "input": "concreteness", "output": "⠒⠉⠗⠑⠞⠑⠰⠎" }, { "input": "concreteness's", "output": "⠒⠉⠗⠑⠞⠑⠰⠎⠄⠎" }, { "input": "concretes", "output": "⠒⠉⠗⠑⠞⠑⠎" }, { "input": "concreting", "output": "⠒⠉⠗⠑⠞⠌" }, { "input": "concretion", "output": "⠒⠉⠗⠑⠰â " }, { "input": "concretion's", "output": "⠒⠉⠗⠑⠰â â „â Ž" }, { "input": "concretions", "output": "⠒⠉⠗⠑⠰â â Ž" }, { "input": "concubinage", "output": "⠒⠉⠥⠃⠔â â ›â ‘" }, { "input": "concubinage's", "output": "⠒⠉⠥⠃⠔â â ›â ‘â „â Ž" }, { "input": "concubine", "output": "⠒⠉⠥⠃⠔⠑" }, { "input": "concubine's", "output": "⠒⠉⠥⠃⠔⠑⠄⠎" }, { "input": "concubines", "output": "⠒⠉⠥⠃⠔⠑⠎" }, { "input": "concupiscence", "output": "⠒⠉⠥â â Šâ Žâ ‰â °â ‘" }, { "input": "concupiscence's", "output": "⠒⠉⠥â â Šâ Žâ ‰â °â ‘â „â Ž" }, { "input": "concupiscent", "output": "⠒⠉⠥â â Šâ Žâ ‰â ¢â ž" }, { "input": "concur", "output": "⠒⠉⠥⠗" }, { "input": "concurred", "output": "⠒⠉⠥⠗⠗⠫" }, { "input": "concurrence", "output": "⠒⠉⠥⠗⠗⠰⠑" }, { "input": "concurrence's", "output": "⠒⠉⠥⠗⠗⠰⠑⠄⠎" }, { "input": "concurrences", "output": "⠒⠉⠥⠗⠗⠰⠑⠎" }, { "input": "concurrency", "output": "⠒⠉⠥⠗⠗⠢⠉⠽" }, { "input": "concurrent", "output": "⠒⠉⠥⠗⠗⠢⠞" }, { "input": "concurrently", "output": "⠒⠉⠥⠗⠗⠢⠞⠇⠽" }, { "input": "concurring", "output": "⠒⠉⠥⠗⠗⠌" }, { "input": "concurs", "output": "⠒⠉⠥⠗⠎" }, { "input": "concussion", "output": "⠒⠉⠥⠎⠨â " }, { "input": "concussion's", "output": "⠒⠉⠥⠎⠨â â „â Ž" }, { "input": "concussions", "output": "⠒⠉⠥⠎⠨â â Ž" }, { "input": "concussive", "output": "⠒⠉⠥⠎⠎⠊⠧⠑" }, { "input": "condemn", "output": "⠒⠙⠑â â " }, { "input": "condemnation", "output": "⠒⠙⠑â â â  â " }, { "input": "condemnation's", "output": "⠒⠙⠑â â â  â â „â Ž" }, { "input": "condemnations", "output": "⠒⠙⠑â â â  â â Ž" }, { "input": "condemnatory", "output": "⠒⠙⠑â â â â žâ •â —â ½" }, { "input": "condemned", "output": "⠒⠙⠑â â â «" }, { "input": "condemner", "output": "⠒⠙⠑â â â »" }, { "input": "condemner's", "output": "⠒⠙⠑â â â »â „â Ž" }, { "input": "condemners", "output": "⠒⠙⠑â â â »â Ž" }, { "input": "condemning", "output": "⠒⠙⠑â â â Œ" }, { "input": "condemns", "output": "⠒⠙⠑â â â Ž" }, { "input": "condensate", "output": "⠒⠙⠢⠎â â žâ ‘" }, { "input": "condensate's", "output": "⠒⠙⠢⠎â â žâ ‘â „â Ž" }, { "input": "condensates", "output": "⠒⠙⠢⠎â â žâ ‘â Ž" }, { "input": "condensation", "output": "⠒⠙⠢⠎⠠â " }, { "input": "condensation's", "output": "⠒⠙⠢⠎⠠â â „â Ž" }, { "input": "condensations", "output": "⠒⠙⠢⠎⠠â â Ž" }, { "input": "condense", "output": "⠒⠙⠢⠎⠑" }, { "input": "condensed", "output": "⠒⠙⠢⠎⠫" }, { "input": "condenser", "output": "⠒⠙⠢⠎⠻" }, { "input": "condenser's", "output": "⠒⠙⠢⠎⠻⠄⠎" }, { "input": "condensers", "output": "⠒⠙⠢⠎⠻⠎" }, { "input": "condenses", "output": "⠒⠙⠢⠎⠑⠎" }, { "input": "condensing", "output": "⠒⠙⠢⠎⠌" }, { "input": "condescend", "output": "⠒⠙⠑⠎⠉⠢⠙" }, { "input": "condescended", "output": "⠒⠙⠑⠎⠉⠢⠙⠫" }, { "input": "condescending", "output": "⠒⠙⠑⠎⠉⠢⠙⠌" }, { "input": "condescendingly", "output": "⠒⠙⠑⠎⠉⠢⠙⠌⠇⠽" }, { "input": "condescends", "output": "⠒⠙⠑⠎⠉⠢⠙⠎" }, { "input": "condescension", "output": "⠒⠙⠑⠎⠉⠢⠨â " }, { "input": "condescension's", "output": "⠒⠙⠑⠎⠉⠢⠨â â „â Ž" }, { "input": "condign", "output": "⠒⠙⠊⠛â " }, { "input": "condiment", "output": "⠒⠙⠊⠰⠞" }, { "input": "condiment's", "output": "⠒⠙⠊⠰⠞⠄⠎" }, { "input": "condiments", "output": "⠒⠙⠊⠰⠞⠎" }, { "input": "condition", "output": "⠒⠙⠊⠰â " }, { "input": "condition's", "output": "⠒⠙⠊⠰â â „â Ž" }, { "input": "conditional", "output": "⠒⠙⠊⠰â â â ‡" }, { "input": "conditional's", "output": "⠒⠙⠊⠰â â â ‡â „â Ž" }, { "input": "conditionally", "output": "⠒⠙⠊⠰â â  â ½" }, { "input": "conditionals", "output": "⠒⠙⠊⠰â â â ‡â Ž" }, { "input": "conditioned", "output": "⠒⠙⠊⠰â â «" }, { "input": "conditioner", "output": "⠒⠙⠊⠰â â »" }, { "input": "conditioner's", "output": "⠒⠙⠊⠰â â »â „â Ž" }, { "input": "conditioners", "output": "⠒⠙⠊⠰â â »â Ž" }, { "input": "conditioning", "output": "⠒⠙⠊⠰â â Œ" }, { "input": "conditioning's", "output": "⠒⠙⠊⠰â â Œâ „â Ž" }, { "input": "conditions", "output": "⠒⠙⠊⠰â â Ž" }, { "input": "condo", "output": "⠒⠙⠕" }, { "input": "condo's", "output": "⠒⠙⠕⠄⠎" }, { "input": "condole", "output": "⠒⠙⠕⠇⠑" }, { "input": "condoled", "output": "⠒⠙⠕⠇⠫" }, { "input": "condolence", "output": "⠒⠙⠕⠇⠰⠑" }, { "input": "condolence's", "output": "⠒⠙⠕⠇⠰⠑⠄⠎" }, { "input": "condolences", "output": "⠒⠙⠕⠇⠰⠑⠎" }, { "input": "condoles", "output": "⠒⠙⠕⠇⠑⠎" }, { "input": "condoling", "output": "⠒⠙⠕⠇⠌" }, { "input": "condom", "output": "⠒⠙⠕â " }, { "input": "condom's", "output": "⠒⠙⠕â â „â Ž" }, { "input": "condominium", "output": "⠒⠙⠕â â ”â Šâ ¥â " }, { "input": "condominium's", "output": "⠒⠙⠕â â ”â Šâ ¥â â „â Ž" }, { "input": "condominiums", "output": "⠒⠙⠕â â ”â Šâ ¥â â Ž" }, { "input": "condoms", "output": "⠒⠙⠕â â Ž" }, { "input": "condone", "output": "â ’â ™â â •" }, { "input": "condoned", "output": "⠒⠙⠕â â «" }, { "input": "condones", "output": "â ’â ™â â •â Ž" }, { "input": "condoning", "output": "⠒⠙⠕â â Œ" }, { "input": "condor", "output": "⠒⠙⠕⠗" }, { "input": "condor's", "output": "⠒⠙⠕⠗⠄⠎" }, { "input": "condors", "output": "⠒⠙⠕⠗⠎" }, { "input": "condos", "output": "⠒⠙⠕⠎" }, { "input": "conduce", "output": "⠒⠙⠥⠉⠑" }, { "input": "conduced", "output": "⠒⠙⠥⠉⠫" }, { "input": "conduces", "output": "⠒⠙⠥⠉⠑⠎" }, { "input": "conducing", "output": "⠒⠙⠥⠉⠌" }, { "input": "conducive", "output": "⠒⠙⠥⠉⠊⠧⠑" }, { "input": "conduct", "output": "⠒⠙⠥⠉⠞" }, { "input": "conduct's", "output": "⠒⠙⠥⠉⠞⠄⠎" }, { "input": "conductance", "output": "⠒⠙⠥⠉⠞⠨⠑" }, { "input": "conductance's", "output": "⠒⠙⠥⠉⠞⠨⠑⠄⠎" }, { "input": "conducted", "output": "⠒⠙⠥⠉⠞⠫" }, { "input": "conductibility", "output": "⠒⠙⠥⠉⠞⠊⠃⠊⠇⠰⠽" }, { "input": "conductibility's", "output": "⠒⠙⠥⠉⠞⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "conductible", "output": "⠒⠙⠥⠉⠞⠊⠼" }, { "input": "conducting", "output": "⠒⠙⠥⠉⠞⠌" }, { "input": "conduction", "output": "⠒⠙⠥⠉⠰â " }, { "input": "conduction's", "output": "⠒⠙⠥⠉⠰â â „â Ž" }, { "input": "conductive", "output": "⠒⠙⠥⠉⠞⠊⠧⠑" }, { "input": "conductivity", "output": "⠒⠙⠥⠉⠞⠊⠧⠰⠽" }, { "input": "conductivity's", "output": "⠒⠙⠥⠉⠞⠊⠧⠰⠽⠄⠎" }, { "input": "conductor", "output": "⠒⠙⠥⠉⠞⠕⠗" }, { "input": "conductor's", "output": "⠒⠙⠥⠉⠞⠕⠗⠄⠎" }, { "input": "conductors", "output": "⠒⠙⠥⠉⠞⠕⠗⠎" }, { "input": "conducts", "output": "⠒⠙⠥⠉⠞⠎" }, { "input": "conduit", "output": "⠒⠙⠥⠊⠞" }, { "input": "conduit's", "output": "⠒⠙⠥⠊⠞⠄⠎" }, { "input": "conduits", "output": "⠒⠙⠥⠊⠞⠎" }, { "input": "cone", "output": "â ‰â â •" }, { "input": "cone's", "output": "â ‰â â •â „â Ž" }, { "input": "cones", "output": "â ‰â â •â Ž" }, { "input": "confab", "output": "â ’â ‹â â ƒ" }, { "input": "confab's", "output": "â ’â ‹â â ƒâ „â Ž" }, { "input": "confabbed", "output": "â ’â ‹â â †â «" }, { "input": "confabbing", "output": "â ’â ‹â â †â Œ" }, { "input": "confabs", "output": "â ’â ‹â â ƒâ Ž" }, { "input": "confabulate", "output": "â ’â ‹â â ƒâ ¥â ‡â â žâ ‘" }, { "input": "confabulated", "output": "â ’â ‹â â ƒâ ¥â ‡â â žâ «" }, { "input": "confabulates", "output": "â ’â ‹â â ƒâ ¥â ‡â â žâ ‘â Ž" }, { "input": "confabulating", "output": "â ’â ‹â â ƒâ ¥â ‡â â žâ Œ" }, { "input": "confabulation", "output": "â ’â ‹â â ƒâ ¥â ‡â  â " }, { "input": "confabulation's", "output": "â ’â ‹â â ƒâ ¥â ‡â  â â „â Ž" }, { "input": "confabulations", "output": "â ’â ‹â â ƒâ ¥â ‡â  â â Ž" }, { "input": "confection", "output": "⠒⠋⠑⠉⠰â " }, { "input": "confection's", "output": "⠒⠋⠑⠉⠰â â „â Ž" }, { "input": "confectioner", "output": "⠒⠋⠑⠉⠰â â »" }, { "input": "confectioner's", "output": "⠒⠋⠑⠉⠰â â »â „â Ž" }, { "input": "confectioneries", "output": "⠒⠋⠑⠉⠰â â »â Šâ ‘â Ž" }, { "input": "confectioners", "output": "⠒⠋⠑⠉⠰â â »â Ž" }, { "input": "confectionery", "output": "⠒⠋⠑⠉⠰â â »â ½" }, { "input": "confectionery's", "output": "⠒⠋⠑⠉⠰â â »â ½â „â Ž" }, { "input": "confections", "output": "⠒⠋⠑⠉⠰â â Ž" }, { "input": "confederacies", "output": "â ’â ‹â «â »â â ‰â Šâ ‘â Ž" }, { "input": "confederacy", "output": "â ’â ‹â «â »â â ‰â ½" }, { "input": "confederacy's", "output": "â ’â ‹â «â »â â ‰â ½â „â Ž" }, { "input": "confederate", "output": "â ’â ‹â «â »â â žâ ‘" }, { "input": "confederate's", "output": "â ’â ‹â «â »â â žâ ‘â „â Ž" }, { "input": "confederated", "output": "â ’â ‹â «â »â â žâ «" }, { "input": "confederates", "output": "â ’â ‹â «â »â â žâ ‘â Ž" }, { "input": "confederating", "output": "â ’â ‹â «â »â â žâ Œ" }, { "input": "confederation", "output": "⠒⠋⠫⠻⠠â " }, { "input": "confederation's", "output": "⠒⠋⠫⠻⠠â â „â Ž" }, { "input": "confederations", "output": "⠒⠋⠫⠻⠠â â Ž" }, { "input": "confer", "output": "â ’â ‹â »" }, { "input": "conferee", "output": "⠒⠋⠻⠑⠑" }, { "input": "conferee's", "output": "⠒⠋⠻⠑⠑⠄⠎" }, { "input": "conferees", "output": "⠒⠋⠻⠑⠑⠎" }, { "input": "conference", "output": "⠒⠋⠻⠰⠑" }, { "input": "conference's", "output": "⠒⠋⠻⠰⠑⠄⠎" }, { "input": "conferences", "output": "⠒⠋⠻⠰⠑⠎" }, { "input": "conferencing", "output": "⠒⠋⠻⠢⠉⠌" }, { "input": "conferment", "output": "⠒⠋⠻⠰⠞" }, { "input": "conferment's", "output": "⠒⠋⠻⠰⠞⠄⠎" }, { "input": "conferments", "output": "⠒⠋⠻⠰⠞⠎" }, { "input": "conferrable", "output": "⠒⠋⠻⠗â â ¼" }, { "input": "conferral", "output": "⠒⠋⠻⠗â â ‡" }, { "input": "conferral's", "output": "⠒⠋⠻⠗â â ‡â „â Ž" }, { "input": "conferred", "output": "⠒⠋⠻⠗⠫" }, { "input": "conferrer", "output": "⠒⠋⠻⠗⠻" }, { "input": "conferrer's", "output": "⠒⠋⠻⠗⠻⠄⠎" }, { "input": "conferrers", "output": "⠒⠋⠻⠗⠻⠎" }, { "input": "conferring", "output": "⠒⠋⠻⠗⠌" }, { "input": "confers", "output": "⠒⠋⠻⠎" }, { "input": "confess", "output": "â ’â ‹â ‘â Žâ Ž" }, { "input": "confessed", "output": "â ’â ‹â ‘â Žâ Žâ «" }, { "input": "confessedly", "output": "⠒⠋⠑⠎⠎⠫⠇⠽" }, { "input": "confesses", "output": "â ’â ‹â ‘â Žâ Žâ ‘â Ž" }, { "input": "confessing", "output": "â ’â ‹â ‘â Žâ Žâ Œ" }, { "input": "confession", "output": "â ’â ‹â ‘â Žâ ¨â " }, { "input": "confession's", "output": "â ’â ‹â ‘â Žâ ¨â â „â Ž" }, { "input": "confessional", "output": "â ’â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "confessional's", "output": "â ’â ‹â ‘â Žâ ¨â â â ‡â „â Ž" }, { "input": "confessionals", "output": "â ’â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "confessions", "output": "â ’â ‹â ‘â Žâ ¨â â Ž" }, { "input": "confessor", "output": "â ’â ‹â ‘â Žâ Žâ •â —" }, { "input": "confessor's", "output": "â ’â ‹â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "confessors", "output": "â ’â ‹â ‘â Žâ Žâ •â —â Ž" }, { "input": "confetti", "output": "â ’â ‹â ‘â žâ žâ Š" }, { "input": "confetti's", "output": "â ’â ‹â ‘â žâ žâ Šâ „â Ž" }, { "input": "confidant", "output": "â ’â ‹â Šâ ™â â â ž" }, { "input": "confidant's", "output": "â ’â ‹â Šâ ™â â â žâ „â Ž" }, { "input": "confidante", "output": "â ’â ‹â Šâ ™â â â žâ ‘" }, { "input": "confidante's", "output": "â ’â ‹â Šâ ™â â â žâ ‘â „â Ž" }, { "input": "confidantes", "output": "â ’â ‹â Šâ ™â â â žâ ‘â Ž" }, { "input": "confidants", "output": "â ’â ‹â Šâ ™â â â žâ Ž" }, { "input": "confide", "output": "⠒⠋⠊⠙⠑" }, { "input": "confided", "output": "⠒⠋⠊⠙⠫" }, { "input": "confidence", "output": "⠒⠋⠊⠙⠰⠑" }, { "input": "confidence's", "output": "⠒⠋⠊⠙⠰⠑⠄⠎" }, { "input": "confidences", "output": "⠒⠋⠊⠙⠰⠑⠎" }, { "input": "confident", "output": "⠒⠋⠊⠙⠢⠞" }, { "input": "confidential", "output": "⠒⠋⠊⠙⠢⠞⠊â â ‡" }, { "input": "confidentiality", "output": "⠒⠋⠊⠙⠢⠞⠊â â ‡â °â ½" }, { "input": "confidentiality's", "output": "⠒⠋⠊⠙⠢⠞⠊â â ‡â °â ½â „â Ž" }, { "input": "confidentially", "output": "⠒⠋⠊⠙⠢⠞⠊⠠⠽" }, { "input": "confidently", "output": "⠒⠋⠊⠙⠢⠞⠇⠽" }, { "input": "confider", "output": "⠒⠋⠊⠙⠻" }, { "input": "confider's", "output": "⠒⠋⠊⠙⠻⠄⠎" }, { "input": "confiders", "output": "⠒⠋⠊⠙⠻⠎" }, { "input": "confides", "output": "⠒⠋⠊⠙⠑⠎" }, { "input": "confiding", "output": "⠒⠋⠊⠙⠌" }, { "input": "configurable", "output": "⠒⠋⠊⠛⠥⠗â â ¼" }, { "input": "configuration", "output": "⠒⠋⠊⠛⠥⠗⠠â " }, { "input": "configuration's", "output": "⠒⠋⠊⠛⠥⠗⠠â â „â Ž" }, { "input": "configurations", "output": "⠒⠋⠊⠛⠥⠗⠠â â Ž" }, { "input": "configure", "output": "⠒⠋⠊⠛⠥⠗⠑" }, { "input": "configured", "output": "⠒⠋⠊⠛⠥⠗⠫" }, { "input": "configures", "output": "⠒⠋⠊⠛⠥⠗⠑⠎" }, { "input": "configuring", "output": "⠒⠋⠊⠛⠥⠗⠌" }, { "input": "confine", "output": "⠒⠋⠔⠑" }, { "input": "confine's", "output": "⠒⠋⠔⠑⠄⠎" }, { "input": "confined", "output": "⠒⠋⠔⠫" }, { "input": "confinement", "output": "⠒⠋⠔⠑⠰⠞" }, { "input": "confinement's", "output": "⠒⠋⠔⠑⠰⠞⠄⠎" }, { "input": "confinements", "output": "⠒⠋⠔⠑⠰⠞⠎" }, { "input": "confines", "output": "⠒⠋⠔⠑⠎" }, { "input": "confining", "output": "⠒⠋⠔⠌" }, { "input": "confirm", "output": "â ’â ‹â Šâ —â " }, { "input": "confirmation", "output": "â ’â ‹â Šâ —â â  â " }, { "input": "confirmation's", "output": "â ’â ‹â Šâ —â â  â â „â Ž" }, { "input": "confirmations", "output": "â ’â ‹â Šâ —â â  â â Ž" }, { "input": "confirmatory", "output": "â ’â ‹â Šâ —â â â žâ •â —â ½" }, { "input": "confirmed", "output": "â ’â ‹â Šâ —â â «" }, { "input": "confirming", "output": "â ’â ‹â Šâ —â â Œ" }, { "input": "confirms", "output": "â ’â ‹â Šâ —â â Ž" }, { "input": "confiscate", "output": "â ’â ‹â Šâ Žâ ‰â â žâ ‘" }, { "input": "confiscated", "output": "â ’â ‹â Šâ Žâ ‰â â žâ «" }, { "input": "confiscates", "output": "â ’â ‹â Šâ Žâ ‰â â žâ ‘â Ž" }, { "input": "confiscating", "output": "â ’â ‹â Šâ Žâ ‰â â žâ Œ" }, { "input": "confiscation", "output": "⠒⠋⠊⠎⠉⠠â " }, { "input": "confiscation's", "output": "⠒⠋⠊⠎⠉⠠â â „â Ž" }, { "input": "confiscations", "output": "⠒⠋⠊⠎⠉⠠â â Ž" }, { "input": "confiscator", "output": "â ’â ‹â Šâ Žâ ‰â â žâ •â —" }, { "input": "confiscator's", "output": "â ’â ‹â Šâ Žâ ‰â â žâ •â —â „â Ž" }, { "input": "confiscators", "output": "â ’â ‹â Šâ Žâ ‰â â žâ •â —â Ž" }, { "input": "confiscatory", "output": "â ’â ‹â Šâ Žâ ‰â â žâ •â —â ½" }, { "input": "conflagration", "output": "â ’â ‹â ‡â â ›â —â  â " }, { "input": "conflagration's", "output": "â ’â ‹â ‡â â ›â —â  â â „â Ž" }, { "input": "conflagrations", "output": "â ’â ‹â ‡â â ›â —â  â â Ž" }, { "input": "conflict", "output": "⠒⠋⠇⠊⠉⠞" }, { "input": "conflict's", "output": "⠒⠋⠇⠊⠉⠞⠄⠎" }, { "input": "conflicted", "output": "⠒⠋⠇⠊⠉⠞⠫" }, { "input": "conflicting", "output": "⠒⠋⠇⠊⠉⠞⠌" }, { "input": "conflicts", "output": "⠒⠋⠇⠊⠉⠞⠎" }, { "input": "confluence", "output": "⠒⠋⠇⠥⠰⠑" }, { "input": "confluence's", "output": "⠒⠋⠇⠥⠰⠑⠄⠎" }, { "input": "confluences", "output": "⠒⠋⠇⠥⠰⠑⠎" }, { "input": "confluent", "output": "⠒⠋⠇⠥⠢⠞" }, { "input": "conform", "output": "â ’â ¿â " }, { "input": "conformable", "output": "â ’â ¿â â â ¼" }, { "input": "conformance", "output": "â ’â ¿â â ¨â ‘" }, { "input": "conformance's", "output": "â ’â ¿â â ¨â ‘â „â Ž" }, { "input": "conformation", "output": "â ’â ¿â â  â " }, { "input": "conformation's", "output": "â ’â ¿â â  â â „â Ž" }, { "input": "conformations", "output": "â ’â ¿â â  â â Ž" }, { "input": "conformed", "output": "â ’â ¿â â «" }, { "input": "conformer", "output": "â ’â ¿â â »" }, { "input": "conformer's", "output": "â ’â ¿â â »â „â Ž" }, { "input": "conformers", "output": "â ’â ¿â â »â Ž" }, { "input": "conforming", "output": "â ’â ¿â â Œ" }, { "input": "conformism", "output": "â ’â ¿â â Šâ Žâ " }, { "input": "conformism's", "output": "â ’â ¿â â Šâ Žâ â „â Ž" }, { "input": "conformist", "output": "â ’â ¿â â Šâ Œ" }, { "input": "conformist's", "output": "â ’â ¿â â Šâ Œâ „â Ž" }, { "input": "conformists", "output": "â ’â ¿â â Šâ Œâ Ž" }, { "input": "conformity", "output": "â ’â ¿â â °â ½" }, { "input": "conformity's", "output": "â ’â ¿â â °â ½â „â Ž" }, { "input": "conforms", "output": "â ’â ¿â â Ž" }, { "input": "confound", "output": "⠒⠋⠨⠙" }, { "input": "confounded", "output": "⠒⠋⠨⠙⠫" }, { "input": "confounding", "output": "⠒⠋⠨⠙⠌" }, { "input": "confounds", "output": "⠒⠋⠨⠙⠎" }, { "input": "confraternities", "output": "â ’â ‹â —â â žâ »â â Šâ žâ Šâ ‘â Ž" }, { "input": "confraternity", "output": "â ’â ‹â —â â žâ »â â °â ½" }, { "input": "confraternity's", "output": "â ’â ‹â —â â žâ »â â °â ½â „â Ž" }, { "input": "confront", "output": "â ’â ‹â —â •â â ž" }, { "input": "confrontation", "output": "â ’â ‹â —â •â â žâ  â " }, { "input": "confrontation's", "output": "â ’â ‹â —â •â â žâ  â â „â Ž" }, { "input": "confrontational", "output": "â ’â ‹â —â •â â žâ  â â â ‡" }, { "input": "confrontations", "output": "â ’â ‹â —â •â â žâ  â â Ž" }, { "input": "confronted", "output": "â ’â ‹â —â •â â žâ «" }, { "input": "confronting", "output": "â ’â ‹â —â •â â žâ Œ" }, { "input": "confronts", "output": "â ’â ‹â —â •â â žâ Ž" }, { "input": "confuse", "output": "⠒⠋⠥⠎⠑" }, { "input": "confused", "output": "⠒⠋⠥⠎⠫" }, { "input": "confusedly", "output": "⠒⠋⠥⠎⠫⠇⠽" }, { "input": "confuses", "output": "⠒⠋⠥⠎⠑⠎" }, { "input": "confusing", "output": "⠒⠋⠥⠎⠌" }, { "input": "confusingly", "output": "⠒⠋⠥⠎⠌⠇⠽" }, { "input": "confusion", "output": "⠒⠋⠥⠨â " }, { "input": "confusion's", "output": "⠒⠋⠥⠨â â „â Ž" }, { "input": "confusions", "output": "⠒⠋⠥⠨â â Ž" }, { "input": "confutation", "output": "⠒⠋⠥⠞⠠â " }, { "input": "confutation's", "output": "⠒⠋⠥⠞⠠â â „â Ž" }, { "input": "confute", "output": "⠒⠋⠥⠞⠑" }, { "input": "confuted", "output": "⠒⠋⠥⠞⠫" }, { "input": "confutes", "output": "⠒⠋⠥⠞⠑⠎" }, { "input": "confuting", "output": "⠒⠋⠥⠞⠌" }, { "input": "conga", "output": "â ’â ›â " }, { "input": "conga's", "output": "â ’â ›â â „â Ž" }, { "input": "congaed", "output": "â ’â ›â â «" }, { "input": "congaing", "output": "â ’â ›â â Œ" }, { "input": "congas", "output": "â ’â ›â â Ž" }, { "input": "congeal", "output": "⠒⠛⠂⠇" }, { "input": "congealed", "output": "⠒⠛⠂⠇⠫" }, { "input": "congealing", "output": "⠒⠛⠂⠇⠌" }, { "input": "congealment", "output": "⠒⠛⠂⠇⠰⠞" }, { "input": "congealment's", "output": "⠒⠛⠂⠇⠰⠞⠄⠎" }, { "input": "congeals", "output": "⠒⠛⠂⠇⠎" }, { "input": "congenial", "output": "⠒⠛⠢⠊â â ‡" }, { "input": "congeniality", "output": "⠒⠛⠢⠊â â ‡â °â ½" }, { "input": "congeniality's", "output": "⠒⠛⠢⠊â â ‡â °â ½â „â Ž" }, { "input": "congenially", "output": "⠒⠛⠢⠊⠠⠽" }, { "input": "congenital", "output": "⠒⠛⠢⠊⠞â â ‡" }, { "input": "congenitally", "output": "⠒⠛⠢⠊⠞⠠⠽" }, { "input": "congeries", "output": "⠒⠛⠻⠊⠑⠎" }, { "input": "congeries's", "output": "⠒⠛⠻⠊⠑⠎⠄⠎" }, { "input": "congest", "output": "⠒⠛⠑⠌" }, { "input": "congested", "output": "⠒⠛⠑⠌⠫" }, { "input": "congesting", "output": "⠒⠛⠑⠌⠌" }, { "input": "congestion", "output": "⠒⠛⠑⠎⠰â " }, { "input": "congestion's", "output": "⠒⠛⠑⠎⠰â â „â Ž" }, { "input": "congestive", "output": "⠒⠛⠑⠌⠊⠧⠑" }, { "input": "congests", "output": "⠒⠛⠑⠌⠎" }, { "input": "conglomerate", "output": "⠒⠛⠇⠕â â »â â žâ ‘" }, { "input": "conglomerate's", "output": "⠒⠛⠇⠕â â »â â žâ ‘â „â Ž" }, { "input": "conglomerated", "output": "⠒⠛⠇⠕â â »â â žâ «" }, { "input": "conglomerates", "output": "⠒⠛⠇⠕â â »â â žâ ‘â Ž" }, { "input": "conglomerating", "output": "⠒⠛⠇⠕â â »â â žâ Œ" }, { "input": "conglomeration", "output": "⠒⠛⠇⠕â â »â  â " }, { "input": "conglomeration's", "output": "⠒⠛⠇⠕â â »â  â â „â Ž" }, { "input": "conglomerations", "output": "⠒⠛⠇⠕â â »â  â â Ž" }, { "input": "congrats", "output": "⠒⠛⠗â â žâ Ž" }, { "input": "congrats's", "output": "⠒⠛⠗â â žâ Žâ „â Ž" }, { "input": "congratulate", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ ‘" }, { "input": "congratulated", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ «" }, { "input": "congratulates", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "congratulating", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ Œ" }, { "input": "congratulation", "output": "⠒⠛⠗â â žâ ¥â ‡â  â " }, { "input": "congratulation's", "output": "⠒⠛⠗â â žâ ¥â ‡â  â â „â Ž" }, { "input": "congratulations", "output": "⠒⠛⠗â â žâ ¥â ‡â  â â Ž" }, { "input": "congratulatory", "output": "⠒⠛⠗â â žâ ¥â ‡â â žâ •â —â ½" }, { "input": "congregate", "output": "⠒⠛⠗⠑⠛â â žâ ‘" }, { "input": "congregated", "output": "⠒⠛⠗⠑⠛â â žâ «" }, { "input": "congregates", "output": "⠒⠛⠗⠑⠛â â žâ ‘â Ž" }, { "input": "congregating", "output": "⠒⠛⠗⠑⠛â â žâ Œ" }, { "input": "congregation", "output": "⠒⠛⠗⠑⠛⠠â " }, { "input": "congregation's", "output": "⠒⠛⠗⠑⠛⠠â â „â Ž" }, { "input": "congregational", "output": "⠒⠛⠗⠑⠛⠠â â â ‡" }, { "input": "congregationalism", "output": "⠒⠛⠗⠑⠛⠠â â â ‡â Šâ Žâ " }, { "input": "congregationalism's", "output": "⠒⠛⠗⠑⠛⠠â â â ‡â Šâ Žâ â „â Ž" }, { "input": "congregationalist", "output": "⠒⠛⠗⠑⠛⠠â â â ‡â Šâ Œ" }, { "input": "congregationalist's", "output": "⠒⠛⠗⠑⠛⠠â â â ‡â Šâ Œâ „â Ž" }, { "input": "congregationalists", "output": "⠒⠛⠗⠑⠛⠠â â â ‡â Šâ Œâ Ž" }, { "input": "congregations", "output": "⠒⠛⠗⠑⠛⠠â â Ž" }, { "input": "congress", "output": "⠒⠛⠗⠑⠎⠎" }, { "input": "congress's", "output": "⠒⠛⠗⠑⠎⠎⠄⠎" }, { "input": "congresses", "output": "⠒⠛⠗⠑⠎⠎⠑⠎" }, { "input": "congressional", "output": "⠒⠛⠗⠑⠎⠨â â â ‡" }, { "input": "congressman", "output": "⠒⠛⠗⠑⠎⠎â â â " }, { "input": "congressman's", "output": "⠒⠛⠗⠑⠎⠎â â â â „â Ž" }, { "input": "congressmen", "output": "⠒⠛⠗⠑⠎⠎â â ¢" }, { "input": "congresspeople", "output": "⠒⠛⠗⠑⠎⠎â â ‘â •â â ‡â ‘" }, { "input": "congressperson", "output": "⠒⠛⠗⠑⠎⠎â â »â Žâ •â " }, { "input": "congressperson's", "output": "⠒⠛⠗⠑⠎⠎â â »â Žâ •â â „â Ž" }, { "input": "congresspersons", "output": "⠒⠛⠗⠑⠎⠎â â »â Žâ •â â Ž" }, { "input": "congresswoman", "output": "⠒⠛⠗⠑⠎⠎⠺⠕â â â " }, { "input": "congresswoman's", "output": "⠒⠛⠗⠑⠎⠎⠺⠕â â â â „â Ž" }, { "input": "congresswomen", "output": "⠒⠛⠗⠑⠎⠎⠺⠕â â ¢" }, { "input": "congruence", "output": "⠒⠛⠗⠥⠰⠑" }, { "input": "congruence's", "output": "⠒⠛⠗⠥⠰⠑⠄⠎" }, { "input": "congruent", "output": "⠒⠛⠗⠥⠢⠞" }, { "input": "congruently", "output": "⠒⠛⠗⠥⠢⠞⠇⠽" }, { "input": "congruities", "output": "⠒⠛⠗⠥⠊⠞⠊⠑⠎" }, { "input": "congruity", "output": "⠒⠛⠗⠥⠰⠽" }, { "input": "congruity's", "output": "⠒⠛⠗⠥⠰⠽⠄⠎" }, { "input": "congruous", "output": "⠒⠛⠗⠥⠳⠎" }, { "input": "conic", "output": "â ’â Šâ ‰" }, { "input": "conic's", "output": "⠒⠊⠉⠄⠎" }, { "input": "conical", "output": "â ’â Šâ ‰â â ‡" }, { "input": "conically", "output": "⠒⠊⠉⠠⠽" }, { "input": "conics", "output": "⠒⠊⠉⠎" }, { "input": "conifer", "output": "â ’â Šâ ‹â »" }, { "input": "conifer's", "output": "⠒⠊⠋⠻⠄⠎" }, { "input": "coniferous", "output": "⠉⠕â â Šâ ‹â »â ³â Ž" }, { "input": "conifers", "output": "⠒⠊⠋⠻⠎" }, { "input": "conjectural", "output": "⠒⠚⠑⠉⠞⠥⠗â â ‡" }, { "input": "conjecture", "output": "⠒⠚⠑⠉⠞⠥⠗⠑" }, { "input": "conjecture's", "output": "⠒⠚⠑⠉⠞⠥⠗⠑⠄⠎" }, { "input": "conjectured", "output": "⠒⠚⠑⠉⠞⠥⠗⠫" }, { "input": "conjectures", "output": "⠒⠚⠑⠉⠞⠥⠗⠑⠎" }, { "input": "conjecturing", "output": "⠒⠚⠑⠉⠞⠥⠗⠌" }, { "input": "conjoin", "output": "â ’â šâ •â ”" }, { "input": "conjoined", "output": "⠒⠚⠕⠔⠫" }, { "input": "conjoiner", "output": "⠒⠚⠕⠔⠻" }, { "input": "conjoiner's", "output": "⠒⠚⠕⠔⠻⠄⠎" }, { "input": "conjoiners", "output": "⠒⠚⠕⠔⠻⠎" }, { "input": "conjoining", "output": "⠒⠚⠕⠔⠌" }, { "input": "conjoins", "output": "⠒⠚⠕⠔⠎" }, { "input": "conjoint", "output": "⠒⠚⠕⠔⠞" }, { "input": "conjointly", "output": "⠒⠚⠕⠔⠞⠇⠽" }, { "input": "conjugal", "output": "⠒⠚⠥⠛â â ‡" }, { "input": "conjugally", "output": "⠒⠚⠥⠛⠠⠽" }, { "input": "conjugate", "output": "⠒⠚⠥⠛â â žâ ‘" }, { "input": "conjugated", "output": "⠒⠚⠥⠛â â žâ «" }, { "input": "conjugates", "output": "⠒⠚⠥⠛â â žâ ‘â Ž" }, { "input": "conjugating", "output": "⠒⠚⠥⠛â â žâ Œ" }, { "input": "conjugation", "output": "⠒⠚⠥⠛⠠â " }, { "input": "conjugation's", "output": "⠒⠚⠥⠛⠠â â „â Ž" }, { "input": "conjugations", "output": "⠒⠚⠥⠛⠠â â Ž" }, { "input": "conjunct", "output": "â ’â šâ ¥â â ‰â ž" }, { "input": "conjunct's", "output": "â ’â šâ ¥â â ‰â žâ „â Ž" }, { "input": "conjunction", "output": "â ’â šâ ¥â â ‰â °â " }, { "input": "conjunction's", "output": "â ’â šâ ¥â â ‰â °â â „â Ž" }, { "input": "conjunctions", "output": "â ’â šâ ¥â â ‰â °â â Ž" }, { "input": "conjunctiva", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â " }, { "input": "conjunctiva's", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â â „â Ž" }, { "input": "conjunctivas", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â â Ž" }, { "input": "conjunctive", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â ‘" }, { "input": "conjunctive's", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â ‘â „â Ž" }, { "input": "conjunctives", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "conjunctivitis", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â Šâ žâ Šâ Ž" }, { "input": "conjunctivitis's", "output": "â ’â šâ ¥â â ‰â žâ Šâ §â Šâ žâ Šâ Žâ „â Ž" }, { "input": "conjuncts", "output": "â ’â šâ ¥â â ‰â žâ Ž" }, { "input": "conjuncture", "output": "â ’â šâ ¥â â ‰â žâ ¥â —â ‘" }, { "input": "conjuncture's", "output": "â ’â šâ ¥â â ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "conjunctures", "output": "â ’â šâ ¥â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "conjuration", "output": "⠒⠚⠥⠗⠠â " }, { "input": "conjuration's", "output": "⠒⠚⠥⠗⠠â â „â Ž" }, { "input": "conjurations", "output": "⠒⠚⠥⠗⠠â â Ž" }, { "input": "conjure", "output": "⠒⠚⠥⠗⠑" }, { "input": "conjured", "output": "⠒⠚⠥⠗⠫" }, { "input": "conjurer", "output": "⠒⠚⠥⠗⠻" }, { "input": "conjurer's", "output": "⠒⠚⠥⠗⠻⠄⠎" }, { "input": "conjurers", "output": "⠒⠚⠥⠗⠻⠎" }, { "input": "conjures", "output": "⠒⠚⠥⠗⠑⠎" }, { "input": "conjuring", "output": "⠒⠚⠥⠗⠌" }, { "input": "conk", "output": "⠉⠕â â …" }, { "input": "conk's", "output": "⠉⠕â â …â „â Ž" }, { "input": "conked", "output": "⠉⠕â â …â «" }, { "input": "conking", "output": "⠉⠕â â …â Œ" }, { "input": "conks", "output": "⠉⠕â â …â Ž" }, { "input": "conman", "output": "â ’â â â " }, { "input": "conman's", "output": "â ’â â â â „â Ž" }, { "input": "connect", "output": "â ’â â ‘⠉⠞" }, { "input": "connectable", "output": "â ’â â ‘⠉⠞â â ¼" }, { "input": "connected", "output": "â ’â â ‘⠉⠞⠫" }, { "input": "connecting", "output": "â ’â â ‘⠉⠞⠌" }, { "input": "connection", "output": "â ’â â ‘⠉⠰â " }, { "input": "connection's", "output": "â ’â â ‘⠉⠰â â „â Ž" }, { "input": "connections", "output": "â ’â â ‘⠉⠰â â Ž" }, { "input": "connective", "output": "â ’â â ‘⠉⠞⠊⠧⠑" }, { "input": "connective's", "output": "â ’â â ‘⠉⠞⠊⠧⠑⠄⠎" }, { "input": "connectives", "output": "â ’â â ‘⠉⠞⠊⠧⠑⠎" }, { "input": "connectivity", "output": "â ’â â ‘⠉⠞⠊⠧⠰⠽" }, { "input": "connectivity's", "output": "â ’â â ‘⠉⠞⠊⠧⠰⠽⠄⠎" }, { "input": "connector", "output": "â ’â â ‘⠉⠞⠕⠗" }, { "input": "connector's", "output": "â ’â â ‘⠉⠞⠕⠗⠄⠎" }, { "input": "connectors", "output": "â ’â â ‘⠉⠞⠕⠗⠎" }, { "input": "connects", "output": "â ’â â ‘⠉⠞⠎" }, { "input": "conned", "output": "⠉⠕â â â «" }, { "input": "conning", "output": "â ’â â Œ" }, { "input": "conniption", "output": "â ’â â Šâ â °â " }, { "input": "conniption's", "output": "â ’â â Šâ â °â â „â Ž" }, { "input": "conniptions", "output": "â ’â â Šâ â °â â Ž" }, { "input": "connivance", "output": "â ’â â Šâ §â ¨â ‘" }, { "input": "connivance's", "output": "â ’â â Šâ §â ¨â ‘â „â Ž" }, { "input": "connive", "output": "â ’â â Šâ §â ‘" }, { "input": "connived", "output": "â ’â â Šâ §â «" }, { "input": "conniver", "output": "â ’â â Šâ §â »" }, { "input": "conniver's", "output": "â ’â â Šâ §â »â „â Ž" }, { "input": "connivers", "output": "â ’â â Šâ §â »â Ž" }, { "input": "connives", "output": "â ’â â Šâ §â ‘â Ž" }, { "input": "conniving", "output": "â ’â â Šâ §â Œ" }, { "input": "connoisseur", "output": "â ’â â •⠊⠎⠎⠑⠥⠗" }, { "input": "connoisseur's", "output": "â ’â â •⠊⠎⠎⠑⠥⠗⠄⠎" }, { "input": "connoisseurs", "output": "â ’â â •⠊⠎⠎⠑⠥⠗⠎" }, { "input": "connotation", "output": "â ’â â •â žâ  â " }, { "input": "connotation's", "output": "â ’â â •â žâ  â â „â Ž" }, { "input": "connotations", "output": "â ’â â •â žâ  â â Ž" }, { "input": "connotative", "output": "â ’â â •â žâ â žâ Šâ §â ‘" }, { "input": "connote", "output": "â ’â â •â žâ ‘" }, { "input": "connoted", "output": "â ’â â •â žâ «" }, { "input": "connotes", "output": "â ’â â •â žâ ‘â Ž" }, { "input": "connoting", "output": "â ’â â •â žâ Œ" }, { "input": "connubial", "output": "â ’â â ¥â ƒâ Šâ â ‡" }, { "input": "conquer", "output": "⠒⠟⠥⠻" }, { "input": "conquerable", "output": "⠒⠟⠥⠻â â ¼" }, { "input": "conquered", "output": "⠒⠟⠥⠻⠫" }, { "input": "conquering", "output": "⠒⠟⠥⠻⠌" }, { "input": "conqueror", "output": "⠒⠟⠥⠻⠕⠗" }, { "input": "conqueror's", "output": "⠒⠟⠥⠻⠕⠗⠄⠎" }, { "input": "conquerors", "output": "⠒⠟⠥⠻⠕⠗⠎" }, { "input": "conquers", "output": "⠒⠟⠥⠻⠎" }, { "input": "conquest", "output": "⠒⠟⠥⠑⠌" }, { "input": "conquest's", "output": "⠒⠟⠥⠑⠌⠄⠎" }, { "input": "conquests", "output": "⠒⠟⠥⠑⠌⠎" }, { "input": "conquistador", "output": "⠒⠟⠥⠊⠌â â ™â •â —" }, { "input": "conquistador's", "output": "⠒⠟⠥⠊⠌â â ™â •â —â „â Ž" }, { "input": "conquistadors", "output": "⠒⠟⠥⠊⠌â â ™â •â —â Ž" }, { "input": "cons", "output": "⠉⠕â â Ž" }, { "input": "consanguineous", "output": "â ’â Žâ â â ›â ¥â ”⠑⠳⠎" }, { "input": "consanguinity", "output": "â ’â Žâ â â ›â ¥â ”â °â ½" }, { "input": "consanguinity's", "output": "â ’â Žâ â â ›â ¥â ”⠰⠽⠄⠎" }, { "input": "conscience", "output": "⠒⠎⠉⠊⠰⠑" }, { "input": "conscience's", "output": "⠒⠎⠉⠊⠰⠑⠄⠎" }, { "input": "conscienceless", "output": "⠒⠎⠉⠊⠰⠑⠨⠎" }, { "input": "consciences", "output": "⠒⠎⠉⠊⠰⠑⠎" }, { "input": "conscientious", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎" }, { "input": "conscientiously", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎⠇⠽" }, { "input": "conscientiousness", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎⠰⠎" }, { "input": "conscientiousness's", "output": "⠒⠎⠉⠊⠢⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "conscious", "output": "⠒⠎⠉⠊⠳⠎" }, { "input": "consciously", "output": "⠒⠎⠉⠊⠳⠎⠇⠽" }, { "input": "consciousness", "output": "⠒⠎⠉⠊⠳⠎⠰⠎" }, { "input": "consciousness's", "output": "⠒⠎⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "consciousnesses", "output": "⠒⠎⠉⠊⠳⠎⠰⠎⠑⠎" }, { "input": "conscript", "output": "⠒⠎⠉⠗⠊â â ž" }, { "input": "conscript's", "output": "⠒⠎⠉⠗⠊â â žâ „â Ž" }, { "input": "conscripted", "output": "⠒⠎⠉⠗⠊â â žâ «" }, { "input": "conscripting", "output": "⠒⠎⠉⠗⠊â â žâ Œ" }, { "input": "conscription", "output": "⠒⠎⠉⠗⠊â â °â " }, { "input": "conscription's", "output": "⠒⠎⠉⠗⠊â â °â â „â Ž" }, { "input": "conscripts", "output": "⠒⠎⠉⠗⠊â â žâ Ž" }, { "input": "consecrate", "output": "⠒⠎⠑⠉⠗â â žâ ‘" }, { "input": "consecrated", "output": "⠒⠎⠑⠉⠗â â žâ «" }, { "input": "consecrates", "output": "⠒⠎⠑⠉⠗â â žâ ‘â Ž" }, { "input": "consecrating", "output": "⠒⠎⠑⠉⠗â â žâ Œ" }, { "input": "consecration", "output": "⠒⠎⠑⠉⠗⠠â " }, { "input": "consecration's", "output": "⠒⠎⠑⠉⠗⠠â â „â Ž" }, { "input": "consecrations", "output": "⠒⠎⠑⠉⠗⠠â â Ž" }, { "input": "consecutive", "output": "⠒⠎⠑⠉⠥⠞⠊⠧⠑" }, { "input": "consecutively", "output": "⠒⠎⠑⠉⠥⠞⠊⠧⠑⠇⠽" }, { "input": "consensual", "output": "⠒⠎⠢⠎⠥â â ‡" }, { "input": "consensus", "output": "⠒⠎⠢⠎⠥⠎" }, { "input": "consensus's", "output": "⠒⠎⠢⠎⠥⠎⠄⠎" }, { "input": "consensuses", "output": "⠒⠎⠢⠎⠥⠎⠑⠎" }, { "input": "consent", "output": "⠒⠎⠢⠞" }, { "input": "consent's", "output": "⠒⠎⠢⠞⠄⠎" }, { "input": "consented", "output": "⠒⠎⠢⠞⠫" }, { "input": "consenting", "output": "⠒⠎⠢⠞⠌" }, { "input": "consents", "output": "⠒⠎⠢⠞⠎" }, { "input": "consequence", "output": "⠒⠎⠑⠟⠥⠰⠑" }, { "input": "consequence's", "output": "⠒⠎⠑⠟⠥⠰⠑⠄⠎" }, { "input": "consequences", "output": "⠒⠎⠑⠟⠥⠰⠑⠎" }, { "input": "consequent", "output": "⠒⠎⠑⠟⠥⠢⠞" }, { "input": "consequential", "output": "⠒⠎⠑⠟⠥⠢⠞⠊â â ‡" }, { "input": "consequently", "output": "⠒⠎⠑⠟⠥⠢⠞⠇⠽" }, { "input": "conservation", "output": "⠒⠎⠻⠧⠠â " }, { "input": "conservation's", "output": "⠒⠎⠻⠧⠠â â „â Ž" }, { "input": "conservationism", "output": "⠒⠎⠻⠧⠠â â Šâ Žâ " }, { "input": "conservationism's", "output": "⠒⠎⠻⠧⠠â â Šâ Žâ â „â Ž" }, { "input": "conservationist", "output": "⠒⠎⠻⠧⠠â â Šâ Œ" }, { "input": "conservationist's", "output": "⠒⠎⠻⠧⠠â â Šâ Œâ „â Ž" }, { "input": "conservationists", "output": "⠒⠎⠻⠧⠠â â Šâ Œâ Ž" }, { "input": "conservatism", "output": "⠒⠎⠻⠧â â žâ Šâ Žâ " }, { "input": "conservatism's", "output": "⠒⠎⠻⠧â â žâ Šâ Žâ â „â Ž" }, { "input": "conservative", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘" }, { "input": "conservative's", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘â „â Ž" }, { "input": "conservatively", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘⠇⠽" }, { "input": "conservatives", "output": "⠒⠎⠻⠧â â žâ Šâ §â ‘â Ž" }, { "input": "conservator", "output": "⠒⠎⠻⠧â â žâ •â —" }, { "input": "conservator's", "output": "⠒⠎⠻⠧â â žâ •â —â „â Ž" }, { "input": "conservatories", "output": "⠒⠎⠻⠧â â žâ •â —â Šâ ‘â Ž" }, { "input": "conservators", "output": "⠒⠎⠻⠧â â žâ •â —â Ž" }, { "input": "conservatory", "output": "⠒⠎⠻⠧â â žâ •â —â ½" }, { "input": "conservatory's", "output": "⠒⠎⠻⠧â â žâ •⠗⠽⠄⠎" }, { "input": "conserve", "output": "⠒⠎⠻⠧⠑" }, { "input": "conserve's", "output": "⠒⠎⠻⠧⠑⠄⠎" }, { "input": "conserved", "output": "⠒⠎⠻⠧⠫" }, { "input": "conserves", "output": "⠒⠎⠻⠧⠑⠎" }, { "input": "conserving", "output": "⠒⠎⠻⠧⠌" }, { "input": "consider", "output": "⠒⠎⠊⠙⠻" }, { "input": "considerable", "output": "⠒⠎⠊⠙⠻â â ¼" }, { "input": "considerably", "output": "⠒⠎⠊⠙⠻â â ƒâ ‡â ½" }, { "input": "considerate", "output": "⠒⠎⠊⠙⠻â â žâ ‘" }, { "input": "considerately", "output": "⠒⠎⠊⠙⠻â â žâ ‘⠇⠽" }, { "input": "considerateness", "output": "⠒⠎⠊⠙⠻â â žâ ‘â °â Ž" }, { "input": "considerateness's", "output": "⠒⠎⠊⠙⠻â â žâ ‘â °â Žâ „â Ž" }, { "input": "consideration", "output": "⠒⠎⠊⠙⠻⠠â " }, { "input": "consideration's", "output": "⠒⠎⠊⠙⠻⠠â â „â Ž" }, { "input": "considerations", "output": "⠒⠎⠊⠙⠻⠠â â Ž" }, { "input": "considered", "output": "⠒⠎⠊⠙⠻⠫" }, { "input": "considering", "output": "⠒⠎⠊⠙⠻⠌" }, { "input": "considers", "output": "⠒⠎⠊⠙⠻⠎" }, { "input": "consign", "output": "â ’â Žâ Šâ ›â " }, { "input": "consigned", "output": "â ’â Žâ Šâ ›â â «" }, { "input": "consigning", "output": "â ’â Žâ Šâ ›â â Œ" }, { "input": "consignment", "output": "â ’â Žâ Šâ ›â â °â ž" }, { "input": "consignment's", "output": "â ’â Žâ Šâ ›â â °â žâ „â Ž" }, { "input": "consignments", "output": "â ’â Žâ Šâ ›â â °â žâ Ž" }, { "input": "consignor", "output": "â ’â Žâ Šâ ›â â •â —" }, { "input": "consignor's", "output": "â ’â Žâ Šâ ›â â •â —â „â Ž" }, { "input": "consignors", "output": "â ’â Žâ Šâ ›â â •â —â Ž" }, { "input": "consigns", "output": "â ’â Žâ Šâ ›â â Ž" }, { "input": "consist", "output": "â ’â Žâ Šâ Œ" }, { "input": "consisted", "output": "⠒⠎⠊⠌⠫" }, { "input": "consistence", "output": "⠒⠎⠊⠌⠰⠑" }, { "input": "consistence's", "output": "⠒⠎⠊⠌⠰⠑⠄⠎" }, { "input": "consistences", "output": "⠒⠎⠊⠌⠰⠑⠎" }, { "input": "consistencies", "output": "⠒⠎⠊⠌⠢⠉⠊⠑⠎" }, { "input": "consistency", "output": "⠒⠎⠊⠌⠢⠉⠽" }, { "input": "consistency's", "output": "⠒⠎⠊⠌⠢⠉⠽⠄⠎" }, { "input": "consistent", "output": "⠒⠎⠊⠌⠢⠞" }, { "input": "consistently", "output": "⠒⠎⠊⠌⠢⠞⠇⠽" }, { "input": "consisting", "output": "⠒⠎⠊⠌⠌" }, { "input": "consistories", "output": "⠒⠎⠊⠌⠕⠗⠊⠑⠎" }, { "input": "consistory", "output": "⠒⠎⠊⠌⠕⠗⠽" }, { "input": "consistory's", "output": "⠒⠎⠊⠌⠕⠗⠽⠄⠎" }, { "input": "consists", "output": "⠒⠎⠊⠌⠎" }, { "input": "consolable", "output": "â ’â Žâ •â ‡â â ¼" }, { "input": "consolation", "output": "⠒⠎⠕⠇⠠â " }, { "input": "consolation's", "output": "⠒⠎⠕⠇⠠â â „â Ž" }, { "input": "consolations", "output": "⠒⠎⠕⠇⠠â â Ž" }, { "input": "console", "output": "⠒⠎⠕⠇⠑" }, { "input": "console's", "output": "⠒⠎⠕⠇⠑⠄⠎" }, { "input": "consoled", "output": "⠒⠎⠕⠇⠫" }, { "input": "consoles", "output": "⠒⠎⠕⠇⠑⠎" }, { "input": "consolidate", "output": "⠒⠎⠕⠇⠊⠙â â žâ ‘" }, { "input": "consolidated", "output": "⠒⠎⠕⠇⠊⠙â â žâ «" }, { "input": "consolidates", "output": "⠒⠎⠕⠇⠊⠙â â žâ ‘â Ž" }, { "input": "consolidating", "output": "⠒⠎⠕⠇⠊⠙â â žâ Œ" }, { "input": "consolidation", "output": "⠒⠎⠕⠇⠊⠙⠠â " }, { "input": "consolidation's", "output": "⠒⠎⠕⠇⠊⠙⠠â â „â Ž" }, { "input": "consolidations", "output": "⠒⠎⠕⠇⠊⠙⠠â â Ž" }, { "input": "consolidator", "output": "⠒⠎⠕⠇⠊⠙â â žâ •â —" }, { "input": "consolidator's", "output": "⠒⠎⠕⠇⠊⠙â â žâ •â —â „â Ž" }, { "input": "consolidators", "output": "⠒⠎⠕⠇⠊⠙â â žâ •â —â Ž" }, { "input": "consoling", "output": "⠒⠎⠕⠇⠌" }, { "input": "consolingly", "output": "⠒⠎⠕⠇⠌⠇⠽" }, { "input": "consonance", "output": "â ’â Žâ •â â ¨â ‘" }, { "input": "consonance's", "output": "â ’â Žâ •â â ¨â ‘â „â Ž" }, { "input": "consonances", "output": "â ’â Žâ •â â ¨â ‘â Ž" }, { "input": "consonant", "output": "â ’â Žâ •â â â â ž" }, { "input": "consonant's", "output": "â ’â Žâ •â â â â žâ „â Ž" }, { "input": "consonantly", "output": "â ’â Žâ •â â â â žâ ‡â ½" }, { "input": "consonants", "output": "â ’â Žâ •â â â â žâ Ž" }, { "input": "consort", "output": "â ’â Žâ •â —â ž" }, { "input": "consort's", "output": "â ’â Žâ •â —â žâ „â Ž" }, { "input": "consorted", "output": "â ’â Žâ •â —â žâ «" }, { "input": "consortia", "output": "â ’â Žâ •â —â žâ Šâ " }, { "input": "consorting", "output": "â ’â Žâ •â —â žâ Œ" }, { "input": "consortium", "output": "â ’â Žâ •â —â žâ Šâ ¥â " }, { "input": "consortium's", "output": "â ’â Žâ •â —â žâ Šâ ¥â â „â Ž" }, { "input": "consorts", "output": "â ’â Žâ •â —â žâ Ž" }, { "input": "conspectus", "output": "â ’â Žâ â ‘⠉⠞⠥⠎" }, { "input": "conspectus's", "output": "â ’â Žâ â ‘⠉⠞⠥⠎⠄⠎" }, { "input": "conspectuses", "output": "â ’â Žâ â ‘⠉⠞⠥⠎⠑⠎" }, { "input": "conspicuous", "output": "â ’â Žâ â Šâ ‰â ¥â ³â Ž" }, { "input": "conspicuously", "output": "â ’â Žâ â Šâ ‰â ¥â ³â Žâ ‡â ½" }, { "input": "conspicuousness's", "output": "â ’â Žâ â Šâ ‰â ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "conspiracies", "output": "â ’â Žâ â Šâ —â â ‰â Šâ ‘â Ž" }, { "input": "conspiracy", "output": "â ’â Žâ â Šâ —â â ‰â ½" }, { "input": "conspiracy's", "output": "â ’â Žâ â Šâ —â â ‰â ½â „â Ž" }, { "input": "conspirator", "output": "â ’â Žâ â Šâ —â â žâ •â —" }, { "input": "conspirator's", "output": "â ’â Žâ â Šâ —â â žâ •â —â „â Ž" }, { "input": "conspiratorial", "output": "â ’â Žâ â Šâ —â â žâ •â —â Šâ â ‡" }, { "input": "conspirators", "output": "â ’â Žâ â Šâ —â â žâ •â —â Ž" }, { "input": "conspire", "output": "â ’â Žâ â Šâ —â ‘" }, { "input": "conspired", "output": "â ’â Žâ â Šâ —â «" }, { "input": "conspires", "output": "â ’â Žâ â Šâ —â ‘â Ž" }, { "input": "conspiring", "output": "â ’â Žâ â Šâ —â Œ" }, { "input": "constable", "output": "â ’â Œâ â ¼" }, { "input": "constable's", "output": "â ’â Œâ â ¼â „â Ž" }, { "input": "constables", "output": "â ’â Œâ â ¼â Ž" }, { "input": "constabularies", "output": "â ’â Œâ â ƒâ ¥â ‡â œâ Šâ ‘â Ž" }, { "input": "constabulary", "output": "â ’â Œâ â ƒâ ¥â ‡â œâ ½" }, { "input": "constabulary's", "output": "â ’â Œâ â ƒâ ¥â ‡â œâ ½â „â Ž" }, { "input": "constancy", "output": "â ’â Œâ â â ‰â ½" }, { "input": "constancy's", "output": "â ’â Œâ â â ‰â ½â „â Ž" }, { "input": "constant", "output": "â ’â Œâ â â ž" }, { "input": "constant's", "output": "â ’â Œâ â â žâ „â Ž" }, { "input": "constantly", "output": "â ’â Œâ â â žâ ‡â ½" }, { "input": "constants", "output": "â ’â Œâ â â žâ Ž" }, { "input": "constellation", "output": "⠒⠌⠑⠇⠇⠠â " }, { "input": "constellation's", "output": "⠒⠌⠑⠇⠇⠠â â „â Ž" }, { "input": "constellations", "output": "⠒⠌⠑⠇⠇⠠â â Ž" }, { "input": "consternation", "output": "⠒⠌⠻â â  â " }, { "input": "consternation's", "output": "⠒⠌⠻â â  â â „â Ž" }, { "input": "constipate", "output": "⠒⠌⠊â â â žâ ‘" }, { "input": "constipated", "output": "⠒⠌⠊â â â žâ «" }, { "input": "constipates", "output": "⠒⠌⠊â â â žâ ‘â Ž" }, { "input": "constipating", "output": "⠒⠌⠊â â â žâ Œ" }, { "input": "constipation", "output": "⠒⠌⠊â â  â " }, { "input": "constipation's", "output": "⠒⠌⠊â â  â â „â Ž" }, { "input": "constituencies", "output": "⠒⠌⠊⠞⠥⠢⠉⠊⠑⠎" }, { "input": "constituency", "output": "⠒⠌⠊⠞⠥⠢⠉⠽" }, { "input": "constituency's", "output": "⠒⠌⠊⠞⠥⠢⠉⠽⠄⠎" }, { "input": "constituent", "output": "⠒⠌⠊⠞⠥⠢⠞" }, { "input": "constituent's", "output": "⠒⠌⠊⠞⠥⠢⠞⠄⠎" }, { "input": "constituents", "output": "⠒⠌⠊⠞⠥⠢⠞⠎" }, { "input": "constitute", "output": "⠒⠌⠊⠞⠥⠞⠑" }, { "input": "constituted", "output": "⠒⠌⠊⠞⠥⠞⠫" }, { "input": "constitutes", "output": "⠒⠌⠊⠞⠥⠞⠑⠎" }, { "input": "constituting", "output": "⠒⠌⠊⠞⠥⠞⠌" }, { "input": "constitution", "output": "⠒⠌⠊⠞⠥⠰â " }, { "input": "constitution's", "output": "⠒⠌⠊⠞⠥⠰â â „â Ž" }, { "input": "constitutional", "output": "⠒⠌⠊⠞⠥⠰â â â ‡" }, { "input": "constitutional's", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â „â Ž" }, { "input": "constitutionality", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â °â ½" }, { "input": "constitutionality's", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â °â ½â „â Ž" }, { "input": "constitutionally", "output": "⠒⠌⠊⠞⠥⠰â â  â ½" }, { "input": "constitutionals", "output": "⠒⠌⠊⠞⠥⠰â â â ‡â Ž" }, { "input": "constitutions", "output": "⠒⠌⠊⠞⠥⠰â â Ž" }, { "input": "constitutive", "output": "⠒⠌⠊⠞⠥⠞⠊⠧⠑" }, { "input": "constrain", "output": "⠒⠌⠗â â ”" }, { "input": "constrained", "output": "⠒⠌⠗â â ”â «" }, { "input": "constraining", "output": "⠒⠌⠗â â ”â Œ" }, { "input": "constrains", "output": "⠒⠌⠗â â ”â Ž" }, { "input": "constraint", "output": "⠒⠌⠗â â ”â ž" }, { "input": "constraint's", "output": "⠒⠌⠗â â ”â žâ „â Ž" }, { "input": "constraints", "output": "⠒⠌⠗â â ”â žâ Ž" }, { "input": "constrict", "output": "⠒⠌⠗⠊⠉⠞" }, { "input": "constricted", "output": "⠒⠌⠗⠊⠉⠞⠫" }, { "input": "constricting", "output": "⠒⠌⠗⠊⠉⠞⠌" }, { "input": "constriction", "output": "⠒⠌⠗⠊⠉⠰â " }, { "input": "constriction's", "output": "⠒⠌⠗⠊⠉⠰â â „â Ž" }, { "input": "constrictions", "output": "⠒⠌⠗⠊⠉⠰â â Ž" }, { "input": "constrictive", "output": "⠒⠌⠗⠊⠉⠞⠊⠧⠑" }, { "input": "constrictor", "output": "⠒⠌⠗⠊⠉⠞⠕⠗" }, { "input": "constrictor's", "output": "⠒⠌⠗⠊⠉⠞⠕⠗⠄⠎" }, { "input": "constrictors", "output": "⠒⠌⠗⠊⠉⠞⠕⠗⠎" }, { "input": "constricts", "output": "⠒⠌⠗⠊⠉⠞⠎" }, { "input": "construable", "output": "⠒⠌⠗⠥â â ¼" }, { "input": "construct", "output": "⠒⠌⠗⠥⠉⠞" }, { "input": "construct's", "output": "⠒⠌⠗⠥⠉⠞⠄⠎" }, { "input": "constructed", "output": "⠒⠌⠗⠥⠉⠞⠫" }, { "input": "constructing", "output": "⠒⠌⠗⠥⠉⠞⠌" }, { "input": "construction", "output": "⠒⠌⠗⠥⠉⠰â " }, { "input": "construction's", "output": "⠒⠌⠗⠥⠉⠰â â „â Ž" }, { "input": "constructional", "output": "⠒⠌⠗⠥⠉⠰â â â ‡" }, { "input": "constructionist", "output": "⠒⠌⠗⠥⠉⠰â â Šâ Œ" }, { "input": "constructionist's", "output": "⠒⠌⠗⠥⠉⠰â â Šâ Œâ „â Ž" }, { "input": "constructionists", "output": "⠒⠌⠗⠥⠉⠰â â Šâ Œâ Ž" }, { "input": "constructions", "output": "⠒⠌⠗⠥⠉⠰â â Ž" }, { "input": "constructive", "output": "⠒⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "constructively", "output": "⠒⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "constructiveness", "output": "⠒⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "constructiveness's", "output": "⠒⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "constructor", "output": "⠒⠌⠗⠥⠉⠞⠕⠗" }, { "input": "constructor's", "output": "⠒⠌⠗⠥⠉⠞⠕⠗⠄⠎" }, { "input": "constructors", "output": "⠒⠌⠗⠥⠉⠞⠕⠗⠎" }, { "input": "constructs", "output": "⠒⠌⠗⠥⠉⠞⠎" }, { "input": "construe", "output": "⠒⠌⠗⠥⠑" }, { "input": "construed", "output": "⠒⠌⠗⠥⠫" }, { "input": "construes", "output": "⠒⠌⠗⠥⠑⠎" }, { "input": "construing", "output": "⠒⠌⠗⠥⠌" }, { "input": "consubstantiation", "output": "⠒⠎⠥⠃⠌â â â žâ Šâ  â " }, { "input": "consubstantiation's", "output": "⠒⠎⠥⠃⠌â â â žâ Šâ  â â „â Ž" }, { "input": "consul", "output": "⠒⠎⠥⠇" }, { "input": "consul's", "output": "⠒⠎⠥⠇⠄⠎" }, { "input": "consular", "output": "⠒⠎⠥⠇⠜" }, { "input": "consulate", "output": "⠒⠎⠥⠇â â žâ ‘" }, { "input": "consulate's", "output": "⠒⠎⠥⠇â â žâ ‘â „â Ž" }, { "input": "consulates", "output": "⠒⠎⠥⠇â â žâ ‘â Ž" }, { "input": "consuls", "output": "⠒⠎⠥⠇⠎" }, { "input": "consulship", "output": "⠒⠎⠥⠇⠩⠊â " }, { "input": "consulship's", "output": "⠒⠎⠥⠇⠩⠊â â „â Ž" }, { "input": "consult", "output": "⠒⠎⠥⠇⠞" }, { "input": "consultancies", "output": "⠒⠎⠥⠇⠞â â â ‰â Šâ ‘â Ž" }, { "input": "consultancy", "output": "⠒⠎⠥⠇⠞â â â ‰â ½" }, { "input": "consultancy's", "output": "⠒⠎⠥⠇⠞â â â ‰â ½â „â Ž" }, { "input": "consultant", "output": "⠒⠎⠥⠇⠞â â â ž" }, { "input": "consultant's", "output": "⠒⠎⠥⠇⠞â â â žâ „â Ž" }, { "input": "consultants", "output": "⠒⠎⠥⠇⠞â â â žâ Ž" }, { "input": "consultation", "output": "⠒⠎⠥⠇⠞⠠â " }, { "input": "consultation's", "output": "⠒⠎⠥⠇⠞⠠â â „â Ž" }, { "input": "consultations", "output": "⠒⠎⠥⠇⠞⠠â â Ž" }, { "input": "consultative", "output": "⠒⠎⠥⠇⠞â â žâ Šâ §â ‘" }, { "input": "consulted", "output": "⠒⠎⠥⠇⠞⠫" }, { "input": "consulting", "output": "⠒⠎⠥⠇⠞⠌" }, { "input": "consults", "output": "⠒⠎⠥⠇⠞⠎" }, { "input": "consumable", "output": "â ’â Žâ ¥â â â ¼" }, { "input": "consumable's", "output": "â ’â Žâ ¥â â â ¼â „â Ž" }, { "input": "consumables", "output": "â ’â Žâ ¥â â â ¼â Ž" }, { "input": "consume", "output": "â ’â Žâ ¥â â ‘" }, { "input": "consumed", "output": "â ’â Žâ ¥â â «" }, { "input": "consumer", "output": "â ’â Žâ ¥â â »" }, { "input": "consumer's", "output": "â ’â Žâ ¥â â »â „â Ž" }, { "input": "consumerism", "output": "â ’â Žâ ¥â â »â Šâ Žâ " }, { "input": "consumerism's", "output": "â ’â Žâ ¥â â »â Šâ Žâ â „â Ž" }, { "input": "consumerist's", "output": "â ’â Žâ ¥â â »â Šâ Œâ „â Ž" }, { "input": "consumerists", "output": "â ’â Žâ ¥â â »â Šâ Œâ Ž" }, { "input": "consumers", "output": "â ’â Žâ ¥â â »â Ž" }, { "input": "consumes", "output": "â ’â Žâ ¥â â ‘â Ž" }, { "input": "consuming", "output": "â ’â Žâ ¥â â Œ" }, { "input": "consummate", "output": "â ’â Žâ ¥â â â â žâ ‘" }, { "input": "consummated", "output": "â ’â Žâ ¥â â â â žâ «" }, { "input": "consummates", "output": "â ’â Žâ ¥â â â â žâ ‘â Ž" }, { "input": "consummating", "output": "â ’â Žâ ¥â â â â žâ Œ" }, { "input": "consummation", "output": "â ’â Žâ ¥â â â  â " }, { "input": "consummation's", "output": "â ’â Žâ ¥â â â  â â „â Ž" }, { "input": "consummations", "output": "â ’â Žâ ¥â â â  â â Ž" }, { "input": "consumption", "output": "â ’â Žâ ¥â â â °â " }, { "input": "consumption's", "output": "â ’â Žâ ¥â â â °â â „â Ž" }, { "input": "consumptive", "output": "â ’â Žâ ¥â â â žâ Šâ §â ‘" }, { "input": "consumptive's", "output": "â ’â Žâ ¥â â â žâ Šâ §â ‘â „â Ž" }, { "input": "consumptives", "output": "â ’â Žâ ¥â â â žâ Šâ §â ‘â Ž" }, { "input": "contact", "output": "â ’â žâ â ‰â ž" }, { "input": "contact's", "output": "â ’â žâ â ‰â žâ „â Ž" }, { "input": "contactable", "output": "â ’â žâ â ‰â žâ â ¼" }, { "input": "contacted", "output": "â ’â žâ â ‰â žâ «" }, { "input": "contacting", "output": "â ’â žâ â ‰â žâ Œ" }, { "input": "contacts", "output": "â ’â žâ â ‰â žâ Ž" }, { "input": "contagion", "output": "â ’â žâ â ›â Šâ •â " }, { "input": "contagion's", "output": "â ’â žâ â ›â Šâ •â â „â Ž" }, { "input": "contagions", "output": "â ’â žâ â ›â Šâ •â â Ž" }, { "input": "contagious", "output": "â ’â žâ â ›â Šâ ³â Ž" }, { "input": "contagiousness", "output": "â ’â žâ â ›â Šâ ³â Žâ °â Ž" }, { "input": "contagiousness's", "output": "â ’â žâ â ›â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "contain", "output": "â ’â žâ â ”" }, { "input": "containable", "output": "â ’â žâ â ”â â ¼" }, { "input": "contained", "output": "â ’â žâ â ”â «" }, { "input": "container", "output": "â ’â žâ â ”â »" }, { "input": "container's", "output": "â ’â žâ â ”⠻⠄⠎" }, { "input": "containerization", "output": "â ’â žâ â ”⠻⠊⠵⠠â " }, { "input": "containerization's", "output": "â ’â žâ â ”⠻⠊⠵⠠â â „â Ž" }, { "input": "containerize", "output": "â ’â žâ â ”⠻⠊⠵⠑" }, { "input": "containerized", "output": "â ’â žâ â ”⠻⠊⠵⠫" }, { "input": "containerizes", "output": "â ’â žâ â ”⠻⠊⠵⠑⠎" }, { "input": "containerizing", "output": "â ’â žâ â ”⠻⠊⠵⠌" }, { "input": "containers", "output": "â ’â žâ â ”⠻⠎" }, { "input": "containing", "output": "â ’â žâ â ”â Œ" }, { "input": "containment", "output": "â ’â žâ â ”â °â ž" }, { "input": "containment's", "output": "â ’â žâ â ”â °â žâ „â Ž" }, { "input": "contains", "output": "â ’â žâ â ”â Ž" }, { "input": "contaminant", "output": "â ’â žâ â â ”â â â ž" }, { "input": "contaminant's", "output": "â ’â žâ â â ”â â â žâ „â Ž" }, { "input": "contaminants", "output": "â ’â žâ â â ”â â â žâ Ž" }, { "input": "contaminate", "output": "â ’â žâ â â ”â â žâ ‘" }, { "input": "contaminated", "output": "â ’â žâ â â ”â â žâ «" }, { "input": "contaminates", "output": "â ’â žâ â â ”â â žâ ‘â Ž" }, { "input": "contaminating", "output": "â ’â žâ â â ”â â žâ Œ" }, { "input": "contamination", "output": "â ’â žâ â â ”â  â " }, { "input": "contamination's", "output": "â ’â žâ â â ”â  â â „â Ž" }, { "input": "contaminator", "output": "â ’â žâ â â ”â â žâ •â —" }, { "input": "contaminator's", "output": "â ’â žâ â â ”â â žâ •â —â „â Ž" }, { "input": "contaminators", "output": "â ’â žâ â â ”â â žâ •â —â Ž" }, { "input": "contemn", "output": "â ’â žâ ‘â â " }, { "input": "contemned", "output": "â ’â žâ ‘â â â «" }, { "input": "contemning", "output": "â ’â žâ ‘â â â Œ" }, { "input": "contemns", "output": "â ’â žâ ‘â â â Ž" }, { "input": "contemplate", "output": "â ’â žâ ‘â â â ‡â â žâ ‘" }, { "input": "contemplated", "output": "â ’â žâ ‘â â â ‡â â žâ «" }, { "input": "contemplates", "output": "â ’â žâ ‘â â â ‡â â žâ ‘â Ž" }, { "input": "contemplating", "output": "â ’â žâ ‘â â â ‡â â žâ Œ" }, { "input": "contemplation", "output": "â ’â žâ ‘â â â ‡â  â " }, { "input": "contemplation's", "output": "â ’â žâ ‘â â â ‡â  â â „â Ž" }, { "input": "contemplative", "output": "â ’â žâ ‘â â â ‡â â žâ Šâ §â ‘" }, { "input": "contemplative's", "output": "â ’â žâ ‘â â â ‡â â žâ Šâ §â ‘â „â Ž" }, { "input": "contemplatives", "output": "â ’â žâ ‘â â â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "contemporaneity", "output": "â ’â žâ ‘â â â •â —â â â ‘â °â ½" }, { "input": "contemporaneity's", "output": "â ’â žâ ‘â â â •â —â â â ‘⠰⠽⠄⠎" }, { "input": "contemporaneous", "output": "â ’â žâ ‘â â â •â —â â â ‘⠳⠎" }, { "input": "contemporaneously", "output": "â ’â žâ ‘â â â •â —â â â ‘⠳⠎⠇⠽" }, { "input": "contemporaries", "output": "â ’â žâ ‘â â â •⠗⠜⠊⠑⠎" }, { "input": "contemporary", "output": "â ’â žâ ‘â â â •⠗⠜⠽" }, { "input": "contemporary's", "output": "â ’â žâ ‘â â â •⠗⠜⠽⠄⠎" }, { "input": "contempt", "output": "â ’â žâ ‘â â â ž" }, { "input": "contempt's", "output": "â ’â žâ ‘â â â žâ „â Ž" }, { "input": "contemptible", "output": "â ’â žâ ‘â â â žâ Šâ ¼" }, { "input": "contemptibly", "output": "â ’â žâ ‘â â â žâ Šâ ƒâ ‡â ½" }, { "input": "contemptuous", "output": "â ’â žâ ‘â â â žâ ¥â ³â Ž" }, { "input": "contemptuously", "output": "â ’â žâ ‘â â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "contemptuousness", "output": "â ’â žâ ‘â â â žâ ¥â ³â Žâ °â Ž" }, { "input": "contemptuousness's", "output": "â ’â žâ ‘â â â žâ ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "contend", "output": "⠒⠞⠢⠙" }, { "input": "contended", "output": "⠒⠞⠢⠙⠫" }, { "input": "contender", "output": "⠒⠞⠢⠙⠻" }, { "input": "contender's", "output": "⠒⠞⠢⠙⠻⠄⠎" }, { "input": "contenders", "output": "⠒⠞⠢⠙⠻⠎" }, { "input": "contending", "output": "⠒⠞⠢⠙⠌" }, { "input": "contends", "output": "⠒⠞⠢⠙⠎" }, { "input": "content", "output": "⠒⠞⠢⠞" }, { "input": "content's", "output": "⠒⠞⠢⠞⠄⠎" }, { "input": "contented", "output": "⠒⠞⠢⠞⠫" }, { "input": "contentedly", "output": "⠒⠞⠢⠞⠫⠇⠽" }, { "input": "contentedness", "output": "⠒⠞⠢⠞⠫⠰⠎" }, { "input": "contentedness's", "output": "⠒⠞⠢⠞⠫⠰⠎⠄⠎" }, { "input": "contenting", "output": "⠒⠞⠢⠞⠌" }, { "input": "contention", "output": "⠒⠞⠢⠰â " }, { "input": "contention's", "output": "⠒⠞⠢⠰â â „â Ž" }, { "input": "contentions", "output": "⠒⠞⠢⠰â â Ž" }, { "input": "contentious", "output": "⠒⠞⠢⠞⠊⠳⠎" }, { "input": "contentiously", "output": "⠒⠞⠢⠞⠊⠳⠎⠇⠽" }, { "input": "contentiousness's", "output": "⠒⠞⠢⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "contently", "output": "⠒⠞⠢⠞⠇⠽" }, { "input": "contentment", "output": "⠒⠞⠢⠞⠰⠞" }, { "input": "contentment's", "output": "⠒⠞⠢⠞⠰⠞⠄⠎" }, { "input": "contents", "output": "⠒⠞⠢⠞⠎" }, { "input": "conterminous", "output": "â ’â žâ »â â ”⠳⠎" }, { "input": "conterminously", "output": "â ’â žâ »â â ”⠳⠎⠇⠽" }, { "input": "contest", "output": "â ’â žâ ‘â Œ" }, { "input": "contest's", "output": "⠒⠞⠑⠌⠄⠎" }, { "input": "contestable", "output": "â ’â žâ ‘â Œâ â ¼" }, { "input": "contestant", "output": "â ’â žâ ‘â Œâ â â ž" }, { "input": "contestant's", "output": "â ’â žâ ‘â Œâ â â žâ „â Ž" }, { "input": "contestants", "output": "â ’â žâ ‘â Œâ â â žâ Ž" }, { "input": "contested", "output": "⠒⠞⠑⠌⠫" }, { "input": "contesting", "output": "⠒⠞⠑⠌⠌" }, { "input": "contests", "output": "⠒⠞⠑⠌⠎" }, { "input": "context", "output": "â ’â žâ ‘â ­â ž" }, { "input": "context's", "output": "â ’â žâ ‘â ­â žâ „â Ž" }, { "input": "contexts", "output": "â ’â žâ ‘â ­â žâ Ž" }, { "input": "contextual", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡" }, { "input": "contextualization", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡â Šâ µâ  â " }, { "input": "contextualize", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "contextualized", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡â Šâ µâ «" }, { "input": "contextualizes", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "contextualizing", "output": "â ’â žâ ‘â ­â žâ ¥â â ‡â Šâ µâ Œ" }, { "input": "contiguity", "output": "⠒⠞⠊⠛⠥⠰⠽" }, { "input": "contiguity's", "output": "⠒⠞⠊⠛⠥⠰⠽⠄⠎" }, { "input": "contiguous", "output": "⠒⠞⠊⠛⠥⠳⠎" }, { "input": "contiguously", "output": "⠒⠞⠊⠛⠥⠳⠎⠇⠽" }, { "input": "continence", "output": "⠒⠞⠔⠰⠑" }, { "input": "continence's", "output": "⠒⠞⠔⠰⠑⠄⠎" }, { "input": "continent", "output": "⠒⠞⠔⠢⠞" }, { "input": "continent's", "output": "⠒⠞⠔⠢⠞⠄⠎" }, { "input": "continental", "output": "⠒⠞⠔⠢⠞â â ‡" }, { "input": "continental's", "output": "⠒⠞⠔⠢⠞â â ‡â „â Ž" }, { "input": "continentals", "output": "⠒⠞⠔⠢⠞â â ‡â Ž" }, { "input": "continents", "output": "⠒⠞⠔⠢⠞⠎" }, { "input": "contingencies", "output": "⠒⠞⠌⠢⠉⠊⠑⠎" }, { "input": "contingency", "output": "⠒⠞⠌⠢⠉⠽" }, { "input": "contingency's", "output": "⠒⠞⠌⠢⠉⠽⠄⠎" }, { "input": "contingent", "output": "⠒⠞⠌⠢⠞" }, { "input": "contingent's", "output": "⠒⠞⠌⠢⠞⠄⠎" }, { "input": "contingents", "output": "⠒⠞⠌⠢⠞⠎" }, { "input": "continua", "output": "⠒⠞⠔⠥â " }, { "input": "continual", "output": "⠒⠞⠔⠥â â ‡" }, { "input": "continually", "output": "⠒⠞⠔⠥⠠⠽" }, { "input": "continuance", "output": "⠒⠞⠔⠥⠨⠑" }, { "input": "continuance's", "output": "⠒⠞⠔⠥⠨⠑⠄⠎" }, { "input": "continuances", "output": "⠒⠞⠔⠥⠨⠑⠎" }, { "input": "continuation", "output": "⠒⠞⠔⠥⠠â " }, { "input": "continuation's", "output": "⠒⠞⠔⠥⠠â â „â Ž" }, { "input": "continuations", "output": "⠒⠞⠔⠥⠠â â Ž" }, { "input": "continue", "output": "⠒⠞⠔⠥⠑" }, { "input": "continued", "output": "⠒⠞⠔⠥⠫" }, { "input": "continues", "output": "⠒⠞⠔⠥⠑⠎" }, { "input": "continuing", "output": "⠒⠞⠔⠥⠌" }, { "input": "continuity", "output": "⠒⠞⠔⠥⠰⠽" }, { "input": "continuity's", "output": "⠒⠞⠔⠥⠰⠽⠄⠎" }, { "input": "continuous", "output": "⠒⠞⠔⠥⠳⠎" }, { "input": "continuously", "output": "⠒⠞⠔⠥⠳⠎⠇⠽" }, { "input": "continuum", "output": "⠒⠞⠔⠥⠥â " }, { "input": "continuum's", "output": "⠒⠞⠔⠥⠥â â „â Ž" }, { "input": "contort", "output": "â ’â žâ •â —â ž" }, { "input": "contorted", "output": "â ’â žâ •â —â žâ «" }, { "input": "contorting", "output": "â ’â žâ •â —â žâ Œ" }, { "input": "contortion", "output": "â ’â žâ •â —â °â " }, { "input": "contortion's", "output": "â ’â žâ •â —â °â â „â Ž" }, { "input": "contortionist", "output": "â ’â žâ •â —â °â â Šâ Œ" }, { "input": "contortionist's", "output": "â ’â žâ •â —â °â â Šâ Œâ „â Ž" }, { "input": "contortionists", "output": "â ’â žâ •â —â °â â Šâ Œâ Ž" }, { "input": "contortions", "output": "â ’â žâ •â —â °â â Ž" }, { "input": "contorts", "output": "â ’â žâ •â —â žâ Ž" }, { "input": "contour", "output": "⠒⠞⠳⠗" }, { "input": "contour's", "output": "⠒⠞⠳⠗⠄⠎" }, { "input": "contoured", "output": "⠒⠞⠳⠗⠫" }, { "input": "contouring", "output": "⠒⠞⠳⠗⠌" }, { "input": "contours", "output": "⠒⠞⠳⠗⠎" }, { "input": "contraband", "output": "â ’â žâ —â â ƒâ ¯" }, { "input": "contraband's", "output": "â ’â žâ —â â ƒâ ¯â „â Ž" }, { "input": "contraception", "output": "â ’â žâ —â â ‰â ‘â â °â " }, { "input": "contraception's", "output": "â ’â žâ —â â ‰â ‘â â °â â „â Ž" }, { "input": "contraceptive", "output": "â ’â žâ —â â ‰â ‘â â žâ Šâ §â ‘" }, { "input": "contraceptive's", "output": "â ’â žâ —â â ‰â ‘â â žâ Šâ §â ‘â „â Ž" }, { "input": "contraceptives", "output": "â ’â žâ —â â ‰â ‘â â žâ Šâ §â ‘â Ž" }, { "input": "contract", "output": "â ’â žâ —â â ‰â ž" }, { "input": "contract's", "output": "â ’â žâ —â â ‰â žâ „â Ž" }, { "input": "contracted", "output": "â ’â žâ —â â ‰â žâ «" }, { "input": "contractible", "output": "â ’â žâ —â â ‰â žâ Šâ ¼" }, { "input": "contractile", "output": "â ’â žâ —â â ‰â žâ Šâ ‡â ‘" }, { "input": "contracting", "output": "â ’â žâ —â â ‰â žâ Œ" }, { "input": "contraction", "output": "â ’â žâ —â â ‰â °â " }, { "input": "contraction's", "output": "â ’â žâ —â â ‰â °â â „â Ž" }, { "input": "contractions", "output": "â ’â žâ —â â ‰â °â â Ž" }, { "input": "contractor", "output": "â ’â žâ —â â ‰â žâ •â —" }, { "input": "contractor's", "output": "â ’â žâ —â â ‰â žâ •â —â „â Ž" }, { "input": "contractors", "output": "â ’â žâ —â â ‰â žâ •â —â Ž" }, { "input": "contracts", "output": "â ’â žâ —â â ‰â žâ Ž" }, { "input": "contractual", "output": "â ’â žâ —â â ‰â žâ ¥â â ‡" }, { "input": "contractually", "output": "â ’â žâ —â â ‰â žâ ¥â  â ½" }, { "input": "contradict", "output": "â ’â žâ —â â ™â Šâ ‰â ž" }, { "input": "contradicted", "output": "â ’â žâ —â â ™â Šâ ‰â žâ «" }, { "input": "contradicting", "output": "â ’â žâ —â â ™â Šâ ‰â žâ Œ" }, { "input": "contradiction", "output": "â ’â žâ —â â ™â Šâ ‰â °â " }, { "input": "contradiction's", "output": "â ’â žâ —â â ™â Šâ ‰â °â â „â Ž" }, { "input": "contradictions", "output": "â ’â žâ —â â ™â Šâ ‰â °â â Ž" }, { "input": "contradictory", "output": "â ’â žâ —â â ™â Šâ ‰â žâ •â —â ½" }, { "input": "contradicts", "output": "â ’â žâ —â â ™â Šâ ‰â žâ Ž" }, { "input": "contradistinction", "output": "â ’â žâ —â â ™â Šâ Žâ žâ ”⠉⠰â " }, { "input": "contradistinction's", "output": "â ’â žâ —â â ™â Šâ Žâ žâ ”⠉⠰â â „â Ž" }, { "input": "contradistinctions", "output": "â ’â žâ —â â ™â Šâ Žâ žâ ”⠉⠰â â Ž" }, { "input": "contrail", "output": "â ’â žâ —â â Šâ ‡" }, { "input": "contrail's", "output": "â ’â žâ —â â Šâ ‡â „â Ž" }, { "input": "contrails", "output": "â ’â žâ —â â Šâ ‡â Ž" }, { "input": "contraindicate", "output": "â ’â žâ —â â ”⠙⠊⠉â â žâ ‘" }, { "input": "contraindicated", "output": "â ’â žâ —â â ”⠙⠊⠉â â žâ «" }, { "input": "contraindicates", "output": "â ’â žâ —â â ”⠙⠊⠉â â žâ ‘â Ž" }, { "input": "contraindicating", "output": "â ’â žâ —â â ”⠙⠊⠉â â žâ Œ" }, { "input": "contralto", "output": "â ’â žâ —â â ‡â žâ •" }, { "input": "contralto's", "output": "â ’â žâ —â â ‡â žâ •â „â Ž" }, { "input": "contraltos", "output": "â ’â žâ —â â ‡â žâ •â Ž" }, { "input": "contraption", "output": "â ’â žâ —â â â °â " }, { "input": "contraption's", "output": "â ’â žâ —â â â °â â „â Ž" }, { "input": "contraptions", "output": "â ’â žâ —â â â °â â Ž" }, { "input": "contrapuntal", "output": "â ’â žâ —â â â ¥â â žâ â ‡" }, { "input": "contrapuntally", "output": "â ’â žâ —â â â ¥â â žâ  â ½" }, { "input": "contraries", "output": "⠒⠞⠗⠜⠊⠑⠎" }, { "input": "contrariety", "output": "⠒⠞⠗⠜⠊⠑⠞⠽" }, { "input": "contrariety's", "output": "⠒⠞⠗⠜⠊⠑⠞⠽⠄⠎" }, { "input": "contrarily", "output": "⠒⠞⠗⠜⠊⠇⠽" }, { "input": "contrariness", "output": "⠒⠞⠗⠜⠊⠰⠎" }, { "input": "contrariness's", "output": "⠒⠞⠗⠜⠊⠰⠎⠄⠎" }, { "input": "contrariwise", "output": "⠒⠞⠗⠜⠊⠺⠊⠎⠑" }, { "input": "contrary", "output": "⠒⠞⠗⠜⠽" }, { "input": "contrary's", "output": "⠒⠞⠗⠜⠽⠄⠎" }, { "input": "contrast", "output": "â ’â žâ —â â Œ" }, { "input": "contrast's", "output": "â ’â žâ —â â Œâ „â Ž" }, { "input": "contrasted", "output": "â ’â žâ —â â Œâ «" }, { "input": "contrasting", "output": "â ’â žâ —â â Œâ Œ" }, { "input": "contrasts", "output": "â ’â žâ —â â Œâ Ž" }, { "input": "contravene", "output": "â ’â žâ —â â §â ¢â ‘" }, { "input": "contravened", "output": "â ’â žâ —â â §â ¢â «" }, { "input": "contravenes", "output": "â ’â žâ —â â §â ¢â ‘â Ž" }, { "input": "contravening", "output": "â ’â žâ —â â §â ¢â Œ" }, { "input": "contravention", "output": "â ’â žâ —â â §â ¢â °â " }, { "input": "contravention's", "output": "â ’â žâ —â â §â ¢â °â â „â Ž" }, { "input": "contraventions", "output": "â ’â žâ —â â §â ¢â °â â Ž" }, { "input": "contretemps", "output": "â ’â žâ —â ‘â žâ ‘â â â Ž" }, { "input": "contretemps's", "output": "â ’â žâ —â ‘â žâ ‘â â â Žâ „â Ž" }, { "input": "contribute", "output": "⠒⠞⠗⠊⠃⠥⠞⠑" }, { "input": "contributed", "output": "⠒⠞⠗⠊⠃⠥⠞⠫" }, { "input": "contributes", "output": "⠒⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "contributing", "output": "⠒⠞⠗⠊⠃⠥⠞⠌" }, { "input": "contribution", "output": "⠒⠞⠗⠊⠃⠥⠰â " }, { "input": "contribution's", "output": "⠒⠞⠗⠊⠃⠥⠰â â „â Ž" }, { "input": "contributions", "output": "⠒⠞⠗⠊⠃⠥⠰â â Ž" }, { "input": "contributor", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗" }, { "input": "contributor's", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗⠄⠎" }, { "input": "contributors", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗⠎" }, { "input": "contributory", "output": "⠒⠞⠗⠊⠃⠥⠞⠕⠗⠽" }, { "input": "contrite", "output": "â ’â žâ —â Šâ žâ ‘" }, { "input": "contritely", "output": "⠒⠞⠗⠊⠞⠑⠇⠽" }, { "input": "contriteness", "output": "â ’â žâ —â Šâ žâ ‘â °â Ž" }, { "input": "contriteness's", "output": "â ’â žâ —â Šâ žâ ‘â °â Žâ „â Ž" }, { "input": "contrition", "output": "â ’â žâ —â Šâ °â " }, { "input": "contrition's", "output": "â ’â žâ —â Šâ °â â „â Ž" }, { "input": "contrivance", "output": "⠒⠞⠗⠊⠧⠨⠑" }, { "input": "contrivance's", "output": "⠒⠞⠗⠊⠧⠨⠑⠄⠎" }, { "input": "contrivances", "output": "⠒⠞⠗⠊⠧⠨⠑⠎" }, { "input": "contrive", "output": "â ’â žâ —â Šâ §â ‘" }, { "input": "contrived", "output": "â ’â žâ —â Šâ §â «" }, { "input": "contriver", "output": "â ’â žâ —â Šâ §â »" }, { "input": "contriver's", "output": "⠒⠞⠗⠊⠧⠻⠄⠎" }, { "input": "contrivers", "output": "⠒⠞⠗⠊⠧⠻⠎" }, { "input": "contrives", "output": "â ’â žâ —â Šâ §â ‘â Ž" }, { "input": "contriving", "output": "â ’â žâ —â Šâ §â Œ" }, { "input": "control", "output": "â ’â žâ —â •â ‡" }, { "input": "control's", "output": "⠒⠞⠗⠕⠇⠄⠎" }, { "input": "controllable", "output": "⠒⠞⠗⠕⠇⠇â â ¼" }, { "input": "controlled", "output": "⠒⠞⠗⠕⠇⠇⠫" }, { "input": "controller", "output": "⠒⠞⠗⠕⠇⠇⠻" }, { "input": "controller's", "output": "⠒⠞⠗⠕⠇⠇⠻⠄⠎" }, { "input": "controllers", "output": "⠒⠞⠗⠕⠇⠇⠻⠎" }, { "input": "controlling", "output": "⠒⠞⠗⠕⠇⠇⠌" }, { "input": "controls", "output": "⠒⠞⠗⠕⠇⠎" }, { "input": "controversial", "output": "⠒⠞⠗⠕⠧⠻⠎⠊â â ‡" }, { "input": "controversially", "output": "⠒⠞⠗⠕⠧⠻⠎⠊⠠⠽" }, { "input": "controversies", "output": "⠒⠞⠗⠕⠧⠻⠎⠊⠑⠎" }, { "input": "controversy", "output": "⠒⠞⠗⠕⠧⠻⠎⠽" }, { "input": "controversy's", "output": "⠒⠞⠗⠕⠧⠻⠎⠽⠄⠎" }, { "input": "controvert", "output": "⠒⠞⠗⠕⠧⠻⠞" }, { "input": "controverted", "output": "⠒⠞⠗⠕⠧⠻⠞⠫" }, { "input": "controvertible", "output": "⠒⠞⠗⠕⠧⠻⠞⠊⠼" }, { "input": "controverting", "output": "⠒⠞⠗⠕⠧⠻⠞⠌" }, { "input": "controverts", "output": "⠒⠞⠗⠕⠧⠻⠞⠎" }, { "input": "contumacious", "output": "â ’â žâ ¥â â â ‰â Šâ ³â Ž" }, { "input": "contumaciously", "output": "â ’â žâ ¥â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "contumacy", "output": "â ’â žâ ¥â â â ‰â ½" }, { "input": "contumacy's", "output": "â ’â žâ ¥â â â ‰â ½â „â Ž" }, { "input": "contumelies", "output": "â ’â žâ ¥â â ‘⠇⠊⠑⠎" }, { "input": "contumelious", "output": "â ’â žâ ¥â â ‘⠇⠊⠳⠎" }, { "input": "contumely", "output": "â ’â žâ ¥â â ‘⠇⠽" }, { "input": "contumely's", "output": "â ’â žâ ¥â â ‘⠇⠽⠄⠎" }, { "input": "contuse", "output": "⠒⠞⠥⠎⠑" }, { "input": "contused", "output": "⠒⠞⠥⠎⠫" }, { "input": "contuses", "output": "⠒⠞⠥⠎⠑⠎" }, { "input": "contusing", "output": "⠒⠞⠥⠎⠌" }, { "input": "contusion", "output": "⠒⠞⠥⠨â " }, { "input": "contusion's", "output": "⠒⠞⠥⠨â â „â Ž" }, { "input": "contusions", "output": "⠒⠞⠥⠨â â Ž" }, { "input": "conundrum", "output": "⠉⠕â â ¥â â ™â —â ¥â " }, { "input": "conundrum's", "output": "⠉⠕â â ¥â â ™â —â ¥â â „â Ž" }, { "input": "conundrums", "output": "⠉⠕â â ¥â â ™â —â ¥â â Ž" }, { "input": "conurbation", "output": "⠉⠕â â ¥â —⠃⠠â " }, { "input": "conurbation's", "output": "⠉⠕â â ¥â —⠃⠠â â „â Ž" }, { "input": "conurbations", "output": "⠉⠕â â ¥â —⠃⠠â â Ž" }, { "input": "convalesce", "output": "â ’â §â â ‡â ‘⠎⠉⠑" }, { "input": "convalesced", "output": "â ’â §â â ‡â ‘⠎⠉⠫" }, { "input": "convalescence", "output": "â ’â §â â ‡â ‘⠎⠉⠰⠑" }, { "input": "convalescence's", "output": "â ’â §â â ‡â ‘⠎⠉⠰⠑⠄⠎" }, { "input": "convalescences", "output": "â ’â §â â ‡â ‘⠎⠉⠰⠑⠎" }, { "input": "convalescent", "output": "â ’â §â â ‡â ‘⠎⠉⠢⠞" }, { "input": "convalescent's", "output": "â ’â §â â ‡â ‘⠎⠉⠢⠞⠄⠎" }, { "input": "convalescents", "output": "â ’â §â â ‡â ‘⠎⠉⠢⠞⠎" }, { "input": "convalesces", "output": "â ’â §â â ‡â ‘⠎⠉⠑⠎" }, { "input": "convalescing", "output": "â ’â §â â ‡â ‘⠎⠉⠌" }, { "input": "convection", "output": "⠒⠧⠑⠉⠰â " }, { "input": "convection's", "output": "⠒⠧⠑⠉⠰â â „â Ž" }, { "input": "convectional", "output": "⠒⠧⠑⠉⠰â â â ‡" }, { "input": "convective", "output": "⠒⠧⠑⠉⠞⠊⠧⠑" }, { "input": "convene", "output": "⠒⠧⠢⠑" }, { "input": "convened", "output": "⠒⠧⠢⠫" }, { "input": "convenes", "output": "⠒⠧⠢⠑⠎" }, { "input": "convenience", "output": "⠒⠧⠢⠊⠰⠑" }, { "input": "convenience's", "output": "⠒⠧⠢⠊⠰⠑⠄⠎" }, { "input": "conveniences", "output": "⠒⠧⠢⠊⠰⠑⠎" }, { "input": "convenient", "output": "⠒⠧⠢⠊⠢⠞" }, { "input": "conveniently", "output": "⠒⠧⠢⠊⠢⠞⠇⠽" }, { "input": "convening", "output": "⠒⠧⠢⠌" }, { "input": "convent", "output": "⠒⠧⠢⠞" }, { "input": "convent's", "output": "⠒⠧⠢⠞⠄⠎" }, { "input": "conventicle", "output": "⠒⠧⠢⠞⠊⠉⠇⠑" }, { "input": "conventicle's", "output": "⠒⠧⠢⠞⠊⠉⠇⠑⠄⠎" }, { "input": "conventicles", "output": "⠒⠧⠢⠞⠊⠉⠇⠑⠎" }, { "input": "convention", "output": "⠒⠧⠢⠰â " }, { "input": "convention's", "output": "⠒⠧⠢⠰â â „â Ž" }, { "input": "conventional", "output": "⠒⠧⠢⠰â â â ‡" }, { "input": "conventionality", "output": "⠒⠧⠢⠰â â â ‡â °â ½" }, { "input": "conventionality's", "output": "⠒⠧⠢⠰â â â ‡â °â ½â „â Ž" }, { "input": "conventionalize", "output": "⠒⠧⠢⠰â â â ‡â Šâ µâ ‘" }, { "input": "conventionalized", "output": "⠒⠧⠢⠰â â â ‡â Šâ µâ «" }, { "input": "conventionalizes", "output": "⠒⠧⠢⠰â â â ‡â Šâ µâ ‘â Ž" }, { "input": "conventionalizing", "output": "⠒⠧⠢⠰â â â ‡â Šâ µâ Œ" }, { "input": "conventionally", "output": "⠒⠧⠢⠰â â  â ½" }, { "input": "conventions", "output": "⠒⠧⠢⠰â â Ž" }, { "input": "convents", "output": "⠒⠧⠢⠞⠎" }, { "input": "converge", "output": "⠒⠧⠻⠛⠑" }, { "input": "converged", "output": "⠒⠧⠻⠛⠫" }, { "input": "convergence", "output": "⠒⠧⠻⠛⠰⠑" }, { "input": "convergence's", "output": "⠒⠧⠻⠛⠰⠑⠄⠎" }, { "input": "convergences", "output": "⠒⠧⠻⠛⠰⠑⠎" }, { "input": "convergent", "output": "⠒⠧⠻⠛⠢⠞" }, { "input": "converges", "output": "⠒⠧⠻⠛⠑⠎" }, { "input": "converging", "output": "⠒⠧⠻⠛⠌" }, { "input": "conversant", "output": "⠒⠧⠻⠎â â â ž" }, { "input": "conversation", "output": "⠒⠧⠻⠎⠠â " }, { "input": "conversation's", "output": "⠒⠧⠻⠎⠠â â „â Ž" }, { "input": "conversational", "output": "⠒⠧⠻⠎⠠â â â ‡" }, { "input": "conversationalist", "output": "⠒⠧⠻⠎⠠â â â ‡â Šâ Œ" }, { "input": "conversationalist's", "output": "⠒⠧⠻⠎⠠â â â ‡â Šâ Œâ „â Ž" }, { "input": "conversationalists", "output": "⠒⠧⠻⠎⠠â â â ‡â Šâ Œâ Ž" }, { "input": "conversationally", "output": "⠒⠧⠻⠎⠠â â  â ½" }, { "input": "conversations", "output": "⠒⠧⠻⠎⠠â â Ž" }, { "input": "converse", "output": "⠒⠧⠻⠎⠑" }, { "input": "converse's", "output": "⠒⠧⠻⠎⠑⠄⠎" }, { "input": "conversed", "output": "⠒⠧⠻⠎⠫" }, { "input": "conversely", "output": "⠒⠧⠻⠎⠑⠇⠽" }, { "input": "converses", "output": "⠒⠧⠻⠎⠑⠎" }, { "input": "conversing", "output": "⠒⠧⠻⠎⠌" }, { "input": "conversion", "output": "⠒⠧⠻⠨â " }, { "input": "conversion's", "output": "⠒⠧⠻⠨â â „â Ž" }, { "input": "conversions", "output": "⠒⠧⠻⠨â â Ž" }, { "input": "convert", "output": "⠒⠧⠻⠞" }, { "input": "convert's", "output": "⠒⠧⠻⠞⠄⠎" }, { "input": "converted", "output": "⠒⠧⠻⠞⠫" }, { "input": "converter", "output": "⠒⠧⠻⠞⠻" }, { "input": "converter's", "output": "⠒⠧⠻⠞⠻⠄⠎" }, { "input": "converters", "output": "⠒⠧⠻⠞⠻⠎" }, { "input": "convertibility's", "output": "⠒⠧⠻⠞⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "convertible", "output": "⠒⠧⠻⠞⠊⠼" }, { "input": "convertible's", "output": "⠒⠧⠻⠞⠊⠼⠄⠎" }, { "input": "convertibles", "output": "⠒⠧⠻⠞⠊⠼⠎" }, { "input": "converting", "output": "⠒⠧⠻⠞⠌" }, { "input": "converts", "output": "⠒⠧⠻⠞⠎" }, { "input": "convex", "output": "â ’â §â ‘â ­" }, { "input": "convexity", "output": "â ’â §â ‘â ­â °â ½" }, { "input": "convexity's", "output": "⠒⠧⠑⠭⠰⠽⠄⠎" }, { "input": "convexly", "output": "⠒⠧⠑⠭⠇⠽" }, { "input": "convey", "output": "â ’â §â ‘â ½" }, { "input": "conveyable", "output": "â ’â §â ‘â ½â â ¼" }, { "input": "conveyance", "output": "⠒⠧⠑⠽⠨⠑" }, { "input": "conveyance's", "output": "⠒⠧⠑⠽⠨⠑⠄⠎" }, { "input": "conveyances", "output": "⠒⠧⠑⠽⠨⠑⠎" }, { "input": "conveyed", "output": "⠒⠧⠑⠽⠫" }, { "input": "conveying", "output": "⠒⠧⠑⠽⠌" }, { "input": "conveyor", "output": "⠒⠧⠑⠽⠕⠗" }, { "input": "conveyor's", "output": "⠒⠧⠑⠽⠕⠗⠄⠎" }, { "input": "conveyors", "output": "⠒⠧⠑⠽⠕⠗⠎" }, { "input": "conveys", "output": "⠒⠧⠑⠽⠎" }, { "input": "convict", "output": "⠒⠧⠊⠉⠞" }, { "input": "convict's", "output": "⠒⠧⠊⠉⠞⠄⠎" }, { "input": "convicted", "output": "⠒⠧⠊⠉⠞⠫" }, { "input": "convicting", "output": "⠒⠧⠊⠉⠞⠌" }, { "input": "conviction", "output": "⠒⠧⠊⠉⠰â " }, { "input": "conviction's", "output": "⠒⠧⠊⠉⠰â â „â Ž" }, { "input": "convictions", "output": "⠒⠧⠊⠉⠰â â Ž" }, { "input": "convicts", "output": "⠒⠧⠊⠉⠞⠎" }, { "input": "convince", "output": "⠒⠧⠔⠉⠑" }, { "input": "convinced", "output": "⠒⠧⠔⠉⠫" }, { "input": "convinces", "output": "⠒⠧⠔⠉⠑⠎" }, { "input": "convincing", "output": "⠒⠧⠔⠉⠌" }, { "input": "convincingly", "output": "⠒⠧⠔⠉⠌⠇⠽" }, { "input": "convivial", "output": "â ’â §â Šâ §â Šâ â ‡" }, { "input": "conviviality", "output": "â ’â §â Šâ §â Šâ â ‡â °â ½" }, { "input": "conviviality's", "output": "â ’â §â Šâ §â Šâ â ‡â °â ½â „â Ž" }, { "input": "convocation", "output": "⠒⠧⠕⠉⠠â " }, { "input": "convocation's", "output": "⠒⠧⠕⠉⠠â â „â Ž" }, { "input": "convocations", "output": "⠒⠧⠕⠉⠠â â Ž" }, { "input": "convoke", "output": "â ’â §â •â …â ‘" }, { "input": "convoked", "output": "â ’â §â •â …â «" }, { "input": "convokes", "output": "â ’â §â •â …â ‘â Ž" }, { "input": "convoking", "output": "â ’â §â •â …â Œ" }, { "input": "convoluted", "output": "⠒⠧⠕⠇⠥⠞⠫" }, { "input": "convolution", "output": "⠒⠧⠕⠇⠥⠰â " }, { "input": "convolution's", "output": "⠒⠧⠕⠇⠥⠰â â „â Ž" }, { "input": "convolutions", "output": "⠒⠧⠕⠇⠥⠰â â Ž" }, { "input": "convoy", "output": "â ’â §â •â ½" }, { "input": "convoy's", "output": "⠒⠧⠕⠽⠄⠎" }, { "input": "convoyed", "output": "⠒⠧⠕⠽⠫" }, { "input": "convoying", "output": "⠒⠧⠕⠽⠌" }, { "input": "convoys", "output": "⠒⠧⠕⠽⠎" }, { "input": "convulse", "output": "⠒⠧⠥⠇⠎⠑" }, { "input": "convulsed", "output": "⠒⠧⠥⠇⠎⠫" }, { "input": "convulses", "output": "⠒⠧⠥⠇⠎⠑⠎" }, { "input": "convulsing", "output": "⠒⠧⠥⠇⠎⠌" }, { "input": "convulsion", "output": "⠒⠧⠥⠇⠨â " }, { "input": "convulsion's", "output": "⠒⠧⠥⠇⠨â â „â Ž" }, { "input": "convulsions", "output": "⠒⠧⠥⠇⠨â â Ž" }, { "input": "convulsive", "output": "⠒⠧⠥⠇⠎⠊⠧⠑" }, { "input": "convulsively", "output": "⠒⠧⠥⠇⠎⠊⠧⠑⠇⠽" }, { "input": "coo", "output": "⠉⠕⠕" }, { "input": "coo's", "output": "⠉⠕⠕⠄⠎" }, { "input": "cooed", "output": "⠉⠕⠕⠫" }, { "input": "cooing", "output": "⠉⠕⠕⠌" }, { "input": "cook", "output": "⠉⠕⠕⠅" }, { "input": "cook's", "output": "⠉⠕⠕⠅⠄⠎" }, { "input": "cookbook", "output": "⠉⠕⠕⠅⠃⠕⠕⠅" }, { "input": "cookbook's", "output": "⠉⠕⠕⠅⠃⠕⠕⠅⠄⠎" }, { "input": "cookbooks", "output": "⠉⠕⠕⠅⠃⠕⠕⠅⠎" }, { "input": "cooked", "output": "⠉⠕⠕⠅⠫" }, { "input": "cooker", "output": "⠉⠕⠕⠅⠻" }, { "input": "cooker's", "output": "⠉⠕⠕⠅⠻⠄⠎" }, { "input": "cookeries", "output": "⠉⠕⠕⠅⠻⠊⠑⠎" }, { "input": "cookers", "output": "⠉⠕⠕⠅⠻⠎" }, { "input": "cookery", "output": "⠉⠕⠕⠅⠻⠽" }, { "input": "cookery's", "output": "⠉⠕⠕⠅⠻⠽⠄⠎" }, { "input": "cookie", "output": "⠉⠕⠕⠅⠊⠑" }, { "input": "cookie's", "output": "⠉⠕⠕⠅⠊⠑⠄⠎" }, { "input": "cookies", "output": "⠉⠕⠕⠅⠊⠑⠎" }, { "input": "cooking", "output": "⠉⠕⠕⠅⠌" }, { "input": "cooking's", "output": "⠉⠕⠕⠅⠌⠄⠎" }, { "input": "cookout", "output": "⠉⠕⠕⠅⠳⠞" }, { "input": "cookout's", "output": "⠉⠕⠕⠅⠳⠞⠄⠎" }, { "input": "cookouts", "output": "⠉⠕⠕⠅⠳⠞⠎" }, { "input": "cooks", "output": "⠉⠕⠕⠅⠎" }, { "input": "cookware's", "output": "⠉⠕⠕⠅⠺⠜⠑⠄⠎" }, { "input": "cookwares", "output": "⠉⠕⠕⠅⠺⠜⠑⠎" }, { "input": "cool", "output": "⠉⠕⠕⠇" }, { "input": "cool's", "output": "⠉⠕⠕⠇⠄⠎" }, { "input": "coolant", "output": "⠉⠕⠕⠇â â â ž" }, { "input": "coolant's", "output": "⠉⠕⠕⠇â â â žâ „â Ž" }, { "input": "coolants", "output": "⠉⠕⠕⠇â â â žâ Ž" }, { "input": "cooled", "output": "⠉⠕⠕⠇⠫" }, { "input": "cooler", "output": "⠉⠕⠕⠇⠻" }, { "input": "cooler's", "output": "⠉⠕⠕⠇⠻⠄⠎" }, { "input": "coolers", "output": "⠉⠕⠕⠇⠻⠎" }, { "input": "coolest", "output": "⠉⠕⠕⠇⠑⠌" }, { "input": "coolie", "output": "⠉⠕⠕⠇⠊⠑" }, { "input": "coolie's", "output": "⠉⠕⠕⠇⠊⠑⠄⠎" }, { "input": "coolies", "output": "⠉⠕⠕⠇⠊⠑⠎" }, { "input": "cooling", "output": "⠉⠕⠕⠇⠌" }, { "input": "coolly", "output": "⠉⠕⠕⠇⠇⠽" }, { "input": "coolness", "output": "⠉⠕⠕⠇⠰⠎" }, { "input": "coolness's", "output": "⠉⠕⠕⠇⠰⠎⠄⠎" }, { "input": "cools", "output": "⠉⠕⠕⠇⠎" }, { "input": "coon", "output": "⠉⠕⠕â " }, { "input": "coon's", "output": "⠉⠕⠕â â „â Ž" }, { "input": "coons", "output": "⠉⠕⠕â â Ž" }, { "input": "coonskin", "output": "⠉⠕⠕â â Žâ …â ”" }, { "input": "coonskin's", "output": "⠉⠕⠕â â Žâ …⠔⠄⠎" }, { "input": "coonskins", "output": "⠉⠕⠕â â Žâ …⠔⠎" }, { "input": "coop", "output": "⠉⠕⠕â " }, { "input": "coop's", "output": "⠉⠕⠕â â „â Ž" }, { "input": "cooped", "output": "⠉⠕⠕â â «" }, { "input": "cooper", "output": "⠉⠕⠕â â »" }, { "input": "cooper's", "output": "⠉⠕⠕â â »â „â Ž" }, { "input": "cooperage", "output": "⠉⠕⠕â â »â â ›â ‘" }, { "input": "cooperage's", "output": "⠉⠕⠕â â »â â ›â ‘â „â Ž" }, { "input": "cooperate", "output": "⠉⠕⠕â â »â â žâ ‘" }, { "input": "cooperated", "output": "⠉⠕⠕â â »â â žâ «" }, { "input": "cooperates", "output": "⠉⠕⠕â â »â â žâ ‘â Ž" }, { "input": "cooperating", "output": "⠉⠕⠕â â »â â žâ Œ" }, { "input": "cooperation", "output": "⠉⠕⠕â â »â  â " }, { "input": "cooperation's", "output": "⠉⠕⠕â â »â  â â „â Ž" }, { "input": "cooperative", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘" }, { "input": "cooperative's", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘â „â Ž" }, { "input": "cooperatively", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘⠇⠽" }, { "input": "cooperativeness", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘â °â Ž" }, { "input": "cooperativeness's", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "cooperatives", "output": "⠉⠕⠕â â »â â žâ Šâ §â ‘â Ž" }, { "input": "cooperator", "output": "⠉⠕⠕â â »â â žâ •â —" }, { "input": "cooperator's", "output": "⠉⠕⠕â â »â â žâ •â —â „â Ž" }, { "input": "cooperators", "output": "⠉⠕⠕â â »â â žâ •â —â Ž" }, { "input": "coopered", "output": "⠉⠕⠕â â »â «" }, { "input": "coopering", "output": "⠉⠕⠕â â »â Œ" }, { "input": "coopers", "output": "⠉⠕⠕â â »â Ž" }, { "input": "cooping", "output": "⠉⠕⠕â â Œ" }, { "input": "coops", "output": "⠉⠕⠕â â Ž" }, { "input": "coordinate", "output": "⠉⠕⠕⠗⠙⠔â â žâ ‘" }, { "input": "coordinate's", "output": "⠉⠕⠕⠗⠙⠔â â žâ ‘â „â Ž" }, { "input": "coordinated", "output": "⠉⠕⠕⠗⠙⠔â â žâ «" }, { "input": "coordinately", "output": "⠉⠕⠕⠗⠙⠔â â žâ ‘⠇⠽" }, { "input": "coordinates", "output": "⠉⠕⠕⠗⠙⠔â â žâ ‘â Ž" }, { "input": "coordinating", "output": "⠉⠕⠕⠗⠙⠔â â žâ Œ" }, { "input": "coordination", "output": "⠉⠕⠕⠗⠙⠔⠠â " }, { "input": "coordination's", "output": "⠉⠕⠕⠗⠙⠔⠠â â „â Ž" }, { "input": "coordinator", "output": "⠉⠕⠕⠗⠙⠔â â žâ •â —" }, { "input": "coordinator's", "output": "⠉⠕⠕⠗⠙⠔â â žâ •â —â „â Ž" }, { "input": "coordinators", "output": "⠉⠕⠕⠗⠙⠔â â žâ •â —â Ž" }, { "input": "coos", "output": "⠉⠕⠕⠎" }, { "input": "coot", "output": "⠉⠕⠕⠞" }, { "input": "coot's", "output": "⠉⠕⠕⠞⠄⠎" }, { "input": "cootie", "output": "⠉⠕⠕⠞⠊⠑" }, { "input": "cootie's", "output": "⠉⠕⠕⠞⠊⠑⠄⠎" }, { "input": "cooties", "output": "⠉⠕⠕⠞⠊⠑⠎" }, { "input": "coots", "output": "⠉⠕⠕⠞⠎" }, { "input": "cop", "output": "⠉⠕â " }, { "input": "cop's", "output": "⠉⠕â â „â Ž" }, { "input": "copacetic", "output": "⠉⠕â â â ‰â ‘â žâ Šâ ‰" }, { "input": "copay", "output": "⠉⠕â â â ½" }, { "input": "copay's", "output": "⠉⠕â â â ½â „â Ž" }, { "input": "cope", "output": "⠉⠕â â ‘" }, { "input": "cope's", "output": "⠉⠕â â ‘â „â Ž" }, { "input": "coped", "output": "⠉⠕â â «" }, { "input": "copes", "output": "⠉⠕â â ‘â Ž" }, { "input": "copied", "output": "⠉⠕â â Šâ «" }, { "input": "copier", "output": "⠉⠕â â Šâ »" }, { "input": "copier's", "output": "⠉⠕â â Šâ »â „â Ž" }, { "input": "copiers", "output": "⠉⠕â â Šâ »â Ž" }, { "input": "copies", "output": "⠉⠕â â Šâ ‘â Ž" }, { "input": "copilot", "output": "⠉⠕â â Šâ ‡â •â ž" }, { "input": "copilot's", "output": "⠉⠕â â Šâ ‡â •â žâ „â Ž" }, { "input": "copilots", "output": "⠉⠕â â Šâ ‡â •â žâ Ž" }, { "input": "coping", "output": "⠉⠕â â Œ" }, { "input": "coping's", "output": "⠉⠕â â Œâ „â Ž" }, { "input": "copings", "output": "⠉⠕â â Œâ Ž" }, { "input": "copious", "output": "⠉⠕â â Šâ ³â Ž" }, { "input": "copiously", "output": "⠉⠕â â Šâ ³â Žâ ‡â ½" }, { "input": "copiousness", "output": "⠉⠕â â Šâ ³â Žâ °â Ž" }, { "input": "copiousness's", "output": "⠉⠕â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "copped", "output": "⠉⠕â â â «" }, { "input": "copper", "output": "⠉⠕â â â »" }, { "input": "copper's", "output": "⠉⠕â â â »â „â Ž" }, { "input": "copperhead", "output": "⠉⠕â â â »â “â ‚â ™" }, { "input": "copperhead's", "output": "⠉⠕â â â »â “⠂⠙⠄⠎" }, { "input": "copperheads", "output": "⠉⠕â â â »â “⠂⠙⠎" }, { "input": "copperplate's", "output": "⠉⠕â â â »â â ‡â â žâ ‘â „â Ž" }, { "input": "coppers", "output": "⠉⠕â â â »â Ž" }, { "input": "coppery", "output": "⠉⠕â â â »â ½" }, { "input": "copping", "output": "⠉⠕â â â Œ" }, { "input": "copra", "output": "⠉⠕â â —â " }, { "input": "copra's", "output": "⠉⠕â â —â â „â Ž" }, { "input": "cops", "output": "⠉⠕â â Ž" }, { "input": "copse", "output": "⠉⠕â â Žâ ‘" }, { "input": "copse's", "output": "⠉⠕â â Žâ ‘â „â Ž" }, { "input": "copses", "output": "⠉⠕â â Žâ ‘â Ž" }, { "input": "copter", "output": "⠉⠕â â žâ »" }, { "input": "copter's", "output": "⠉⠕â â žâ »â „â Ž" }, { "input": "copters", "output": "⠉⠕â â žâ »â Ž" }, { "input": "copula", "output": "⠉⠕â â ¥â ‡â " }, { "input": "copula's", "output": "⠉⠕â â ¥â ‡â â „â Ž" }, { "input": "copulas", "output": "⠉⠕â â ¥â ‡â â Ž" }, { "input": "copulate", "output": "⠉⠕â â ¥â ‡â â žâ ‘" }, { "input": "copulated", "output": "⠉⠕â â ¥â ‡â â žâ «" }, { "input": "copulates", "output": "⠉⠕â â ¥â ‡â â žâ ‘â Ž" }, { "input": "copulating", "output": "⠉⠕â â ¥â ‡â â žâ Œ" }, { "input": "copulation", "output": "⠉⠕â â ¥â ‡â  â " }, { "input": "copulation's", "output": "⠉⠕â â ¥â ‡â  â â „â Ž" }, { "input": "copulative", "output": "⠉⠕â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "copulative's", "output": "⠉⠕â â ¥â ‡â â žâ Šâ §â ‘â „â Ž" }, { "input": "copulatives", "output": "⠉⠕â â ¥â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "copy", "output": "⠉⠕â â ½" }, { "input": "copy's", "output": "⠉⠕â â ½â „â Ž" }, { "input": "copybook's", "output": "⠉⠕â â ½â ƒâ •â •â …â „â Ž" }, { "input": "copybooks", "output": "⠉⠕â â ½â ƒâ •â •â …â Ž" }, { "input": "copycat", "output": "⠉⠕â â ½â ‰â â ž" }, { "input": "copycat's", "output": "⠉⠕â â ½â ‰â â žâ „â Ž" }, { "input": "copycats", "output": "⠉⠕â â ½â ‰â â žâ Ž" }, { "input": "copycatted", "output": "⠉⠕â â ½â ‰â â žâ žâ «" }, { "input": "copycatting", "output": "⠉⠕â â ½â ‰â â žâ žâ Œ" }, { "input": "copying", "output": "⠉⠕â â ½â Œ" }, { "input": "copyright", "output": "⠉⠕â â ½â â —" }, { "input": "copyright's", "output": "⠉⠕â â ½â â —â „â Ž" }, { "input": "copyrighted", "output": "⠉⠕â â ½â â —â «" }, { "input": "copyrighting", "output": "⠉⠕â â ½â â —â Œ" }, { "input": "copyrights", "output": "⠉⠕â â ½â â —â Ž" }, { "input": "copywriter", "output": "⠉⠕â â ½â ºâ —â Šâ žâ »" }, { "input": "copywriter's", "output": "⠉⠕â â ½â ºâ —⠊⠞⠻⠄⠎" }, { "input": "copywriters", "output": "⠉⠕â â ½â ºâ —⠊⠞⠻⠎" }, { "input": "coquetries", "output": "⠉⠕⠟⠥⠑⠞⠗⠊⠑⠎" }, { "input": "coquetry's", "output": "⠉⠕⠟⠥⠑⠞⠗⠽⠄⠎" }, { "input": "coquette", "output": "⠉⠕⠟⠥⠑⠞⠞⠑" }, { "input": "coquette's", "output": "⠉⠕⠟⠥⠑⠞⠞⠑⠄⠎" }, { "input": "coquetted", "output": "⠉⠕⠟⠥⠑⠞⠞⠫" }, { "input": "coquettes", "output": "⠉⠕⠟⠥⠑⠞⠞⠑⠎" }, { "input": "coquetting", "output": "⠉⠕⠟⠥⠑⠞⠞⠌" }, { "input": "coquettish", "output": "⠉⠕⠟⠥⠑⠞⠞⠊⠩" }, { "input": "coral", "output": "⠉⠕⠗â â ‡" }, { "input": "coral's", "output": "⠉⠕⠗â â ‡â „â Ž" }, { "input": "corals", "output": "⠉⠕⠗â â ‡â Ž" }, { "input": "corbel", "output": "⠉⠕⠗⠃⠑⠇" }, { "input": "corbel's", "output": "⠉⠕⠗⠃⠑⠇⠄⠎" }, { "input": "corbels", "output": "⠉⠕⠗⠃⠑⠇⠎" }, { "input": "cord", "output": "⠉⠕⠗⠙" }, { "input": "cord's", "output": "⠉⠕⠗⠙⠄⠎" }, { "input": "cordage", "output": "⠉⠕⠗⠙â â ›â ‘" }, { "input": "cordage's", "output": "⠉⠕⠗⠙â â ›â ‘â „â Ž" }, { "input": "corded", "output": "⠉⠕⠗⠙⠫" }, { "input": "cordial", "output": "⠉⠕⠗⠙⠊â â ‡" }, { "input": "cordial's", "output": "⠉⠕⠗⠙⠊â â ‡â „â Ž" }, { "input": "cordiality", "output": "⠉⠕⠗⠙⠊â â ‡â °â ½" }, { "input": "cordiality's", "output": "⠉⠕⠗⠙⠊â â ‡â °â ½â „â Ž" }, { "input": "cordially", "output": "⠉⠕⠗⠙⠊⠠⠽" }, { "input": "cordials", "output": "⠉⠕⠗⠙⠊â â ‡â Ž" }, { "input": "cordillera", "output": "⠉⠕⠗⠙⠊⠇⠇⠻â " }, { "input": "cordillera's", "output": "⠉⠕⠗⠙⠊⠇⠇⠻â â „â Ž" }, { "input": "cordilleras", "output": "⠉⠕⠗⠙⠊⠇⠇⠻â â Ž" }, { "input": "cording", "output": "⠉⠕⠗⠙⠌" }, { "input": "cordite", "output": "⠉⠕⠗⠙⠊⠞⠑" }, { "input": "cordite's", "output": "⠉⠕⠗⠙⠊⠞⠑⠄⠎" }, { "input": "cordless", "output": "⠉⠕⠗⠙⠨⠎" }, { "input": "cordon", "output": "⠉⠕⠗⠙⠕â " }, { "input": "cordon's", "output": "⠉⠕⠗⠙⠕â â „â Ž" }, { "input": "cordoned", "output": "⠉⠕⠗⠙⠕â â «" }, { "input": "cordoning", "output": "⠉⠕⠗⠙⠕â â Œ" }, { "input": "cordons", "output": "⠉⠕⠗⠙⠕â â Ž" }, { "input": "cordovan", "output": "⠉⠕⠗⠙⠕⠧â â " }, { "input": "cordovan's", "output": "⠉⠕⠗⠙⠕⠧â â â „â Ž" }, { "input": "cords", "output": "⠉⠕⠗⠙⠎" }, { "input": "corduroy", "output": "⠉⠕⠗⠙⠥⠗⠕⠽" }, { "input": "corduroy's", "output": "⠉⠕⠗⠙⠥⠗⠕⠽⠄⠎" }, { "input": "corduroys", "output": "⠉⠕⠗⠙⠥⠗⠕⠽⠎" }, { "input": "corduroys's", "output": "⠉⠕⠗⠙⠥⠗⠕⠽⠎⠄⠎" }, { "input": "core", "output": "⠉⠕⠗⠑" }, { "input": "core's", "output": "⠉⠕⠗⠑⠄⠎" }, { "input": "cored", "output": "⠉⠕⠗⠫" }, { "input": "corer", "output": "⠉⠕⠗⠻" }, { "input": "corer's", "output": "⠉⠕⠗⠻⠄⠎" }, { "input": "corers", "output": "⠉⠕⠗⠻⠎" }, { "input": "cores", "output": "⠉⠕⠗⠑⠎" }, { "input": "corespondent", "output": "⠉⠕⠗⠑⠎â â •â â ™â ¢â ž" }, { "input": "corespondent's", "output": "⠉⠕⠗⠑⠎â â •â â ™â ¢â žâ „â Ž" }, { "input": "corespondents", "output": "⠉⠕⠗⠑⠎â â •â â ™â ¢â žâ Ž" }, { "input": "coriander", "output": "⠉⠕⠗⠊⠯⠻" }, { "input": "coriander's", "output": "⠉⠕⠗⠊⠯⠻⠄⠎" }, { "input": "coring", "output": "⠉⠕⠗⠌" }, { "input": "cork", "output": "⠉⠕⠗⠅" }, { "input": "cork's", "output": "⠉⠕⠗⠅⠄⠎" }, { "input": "corked", "output": "⠉⠕⠗⠅⠫" }, { "input": "corking", "output": "⠉⠕⠗⠅⠌" }, { "input": "corks", "output": "⠉⠕⠗⠅⠎" }, { "input": "corkscrew", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺" }, { "input": "corkscrew's", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠄⠎" }, { "input": "corkscrewed", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠫" }, { "input": "corkscrewing", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠌" }, { "input": "corkscrews", "output": "⠉⠕⠗⠅⠎⠉⠗⠑⠺⠎" }, { "input": "corm", "output": "⠉⠕⠗â " }, { "input": "corm's", "output": "⠉⠕⠗â â „â Ž" }, { "input": "cormorant", "output": "⠉⠕⠗â â •â —â â â ž" }, { "input": "cormorant's", "output": "⠉⠕⠗â â •â —â â â žâ „â Ž" }, { "input": "cormorants", "output": "⠉⠕⠗â â •â —â â â žâ Ž" }, { "input": "corms", "output": "⠉⠕⠗â â Ž" }, { "input": "corn", "output": "⠉⠕⠗â " }, { "input": "corn's", "output": "⠉⠕⠗â â „â Ž" }, { "input": "cornball", "output": "⠉⠕⠗â â ƒâ â ‡â ‡" }, { "input": "cornball's", "output": "⠉⠕⠗â â ƒâ â ‡â ‡â „â Ž" }, { "input": "cornballs", "output": "⠉⠕⠗â â ƒâ â ‡â ‡â Ž" }, { "input": "cornbread", "output": "⠉⠕⠗â â ƒâ —â ‚â ™" }, { "input": "cornbread's", "output": "⠉⠕⠗â â ƒâ —⠂⠙⠄⠎" }, { "input": "corncob", "output": "⠉⠕⠗â â ‰â •â ƒ" }, { "input": "corncob's", "output": "⠉⠕⠗â â ‰â •⠃⠄⠎" }, { "input": "corncobs", "output": "⠉⠕⠗â â ‰â •⠃⠎" }, { "input": "cornea", "output": "⠉⠕⠗â â ‘â " }, { "input": "cornea's", "output": "⠉⠕⠗â â ‘â â „â Ž" }, { "input": "corneal", "output": "⠉⠕⠗â â ‚â ‡" }, { "input": "corneas", "output": "⠉⠕⠗â â ‚â Ž" }, { "input": "corned", "output": "⠉⠕⠗â â «" }, { "input": "corner", "output": "⠉⠕⠗â â »" }, { "input": "corner's", "output": "⠉⠕⠗â â »â „â Ž" }, { "input": "cornered", "output": "⠉⠕⠗â â »â «" }, { "input": "cornering", "output": "⠉⠕⠗â â »â Œ" }, { "input": "corners", "output": "⠉⠕⠗â â »â Ž" }, { "input": "cornerstone", "output": "⠉⠕⠗â â »â Œâ â •" }, { "input": "cornerstone's", "output": "⠉⠕⠗â â »â Œâ â •â „â Ž" }, { "input": "cornerstones", "output": "⠉⠕⠗â â »â Œâ â •â Ž" }, { "input": "cornet", "output": "⠉⠕⠗â â ‘â ž" }, { "input": "cornet's", "output": "⠉⠕⠗â â ‘â žâ „â Ž" }, { "input": "cornets", "output": "⠉⠕⠗â â ‘â žâ Ž" }, { "input": "cornflakes", "output": "⠉⠕⠗â â ‹â ‡â â …â ‘â Ž" }, { "input": "cornflakes's", "output": "⠉⠕⠗â â ‹â ‡â â …â ‘â Žâ „â Ž" }, { "input": "cornflower", "output": "⠉⠕⠗â â ‹â ‡â ªâ »" }, { "input": "cornflower's", "output": "⠉⠕⠗â â ‹â ‡â ªâ »â „â Ž" }, { "input": "cornflowers", "output": "⠉⠕⠗â â ‹â ‡â ªâ »â Ž" }, { "input": "cornice", "output": "⠉⠕⠗â â Šâ ‰â ‘" }, { "input": "cornice's", "output": "⠉⠕⠗â â Šâ ‰â ‘â „â Ž" }, { "input": "cornices", "output": "⠉⠕⠗â â Šâ ‰â ‘â Ž" }, { "input": "cornier", "output": "⠉⠕⠗â â Šâ »" }, { "input": "corniest", "output": "⠉⠕⠗â â Šâ ‘â Œ" }, { "input": "cornily", "output": "⠉⠕⠗â â Šâ ‡â ½" }, { "input": "corniness", "output": "⠉⠕⠗â â Šâ °â Ž" }, { "input": "corniness's", "output": "⠉⠕⠗â â Šâ °â Žâ „â Ž" }, { "input": "corning", "output": "⠉⠕⠗â â Œ" }, { "input": "cornmeal", "output": "⠉⠕⠗â â â ‚â ‡" }, { "input": "cornmeal's", "output": "⠉⠕⠗â â â ‚⠇⠄⠎" }, { "input": "cornrow", "output": "⠉⠕⠗â â —â ª" }, { "input": "cornrow's", "output": "⠉⠕⠗â â —⠪⠄⠎" }, { "input": "cornrowed", "output": "⠉⠕⠗â â —⠪⠫" }, { "input": "cornrowing", "output": "⠉⠕⠗â â —⠪⠌" }, { "input": "cornrows", "output": "⠉⠕⠗â â —⠪⠎" }, { "input": "corns", "output": "⠉⠕⠗â â Ž" }, { "input": "cornstalk", "output": "⠉⠕⠗â â Œâ â ‡â …" }, { "input": "cornstalk's", "output": "⠉⠕⠗â â Œâ â ‡â …â „â Ž" }, { "input": "cornstalks", "output": "⠉⠕⠗â â Œâ â ‡â …â Ž" }, { "input": "cornstarch", "output": "⠉⠕⠗â â Œâ œâ ¡" }, { "input": "cornstarch's", "output": "⠉⠕⠗â â Œâ œâ ¡â „â Ž" }, { "input": "cornucopia", "output": "⠉⠕⠗â â ¥â ‰â •â â Šâ " }, { "input": "cornucopia's", "output": "⠉⠕⠗â â ¥â ‰â •â â Šâ â „â Ž" }, { "input": "cornucopias", "output": "⠉⠕⠗â â ¥â ‰â •â â Šâ â Ž" }, { "input": "corny", "output": "⠉⠕⠗â â ½" }, { "input": "corolla", "output": "⠉⠕⠗⠕⠇⠇â " }, { "input": "corolla's", "output": "⠉⠕⠗⠕⠇⠇â â „â Ž" }, { "input": "corollaries", "output": "⠉⠕⠗⠕⠇⠇⠜⠊⠑⠎" }, { "input": "corollary", "output": "⠉⠕⠗⠕⠇⠇⠜⠽" }, { "input": "corollary's", "output": "⠉⠕⠗⠕⠇⠇⠜⠽⠄⠎" }, { "input": "corollas", "output": "⠉⠕⠗⠕⠇⠇â â Ž" }, { "input": "corona", "output": "⠉⠕⠗⠕â â " }, { "input": "corona's", "output": "⠉⠕⠗⠕â â â „â Ž" }, { "input": "coronal", "output": "⠉⠕⠗⠕â â â ‡" }, { "input": "coronal's", "output": "⠉⠕⠗⠕â â â ‡â „â Ž" }, { "input": "coronals", "output": "⠉⠕⠗⠕â â â ‡â Ž" }, { "input": "coronaries", "output": "⠉⠕⠗⠕â â œâ Šâ ‘â Ž" }, { "input": "coronary", "output": "⠉⠕⠗⠕â â œâ ½" }, { "input": "coronary's", "output": "⠉⠕⠗⠕â â œâ ½â „â Ž" }, { "input": "coronas", "output": "⠉⠕⠗⠕â â â Ž" }, { "input": "coronation", "output": "⠉⠕⠗⠕â â  â " }, { "input": "coronation's", "output": "⠉⠕⠗⠕â â  â â „â Ž" }, { "input": "coronations", "output": "⠉⠕⠗⠕â â  â â Ž" }, { "input": "coroner", "output": "⠉⠕⠗⠕â â »" }, { "input": "coroner's", "output": "⠉⠕⠗⠕â â »â „â Ž" }, { "input": "coroners", "output": "⠉⠕⠗⠕â â »â Ž" }, { "input": "coronet", "output": "⠉⠕⠗⠕â â ‘â ž" }, { "input": "coronet's", "output": "⠉⠕⠗⠕â â ‘â žâ „â Ž" }, { "input": "coronets", "output": "⠉⠕⠗⠕â â ‘â žâ Ž" }, { "input": "corpora", "output": "⠉⠕⠗â â •â —â " }, { "input": "corporal", "output": "⠉⠕⠗â â •â —â â ‡" }, { "input": "corporal's", "output": "⠉⠕⠗â â •â —â â ‡â „â Ž" }, { "input": "corporals", "output": "⠉⠕⠗â â •â —â â ‡â Ž" }, { "input": "corporate", "output": "⠉⠕⠗â â •â —â â žâ ‘" }, { "input": "corporately", "output": "⠉⠕⠗â â •â —â â žâ ‘⠇⠽" }, { "input": "corporation", "output": "⠉⠕⠗â â •â —â  â " }, { "input": "corporation's", "output": "⠉⠕⠗â â •â —â  â â „â Ž" }, { "input": "corporations", "output": "⠉⠕⠗â â •â —â  â â Ž" }, { "input": "corporeal", "output": "⠉⠕⠗â â •â —â ‚â ‡" }, { "input": "corporeality", "output": "⠉⠕⠗â â •⠗⠂⠇⠰⠽" }, { "input": "corporeality's", "output": "⠉⠕⠗â â •⠗⠂⠇⠰⠽⠄⠎" }, { "input": "corporeally", "output": "⠉⠕⠗â â •â —â ‘â  â ½" }, { "input": "corps", "output": "⠉⠕⠗â â Ž" }, { "input": "corps's", "output": "⠉⠕⠗â â Žâ „â Ž" }, { "input": "corpse", "output": "⠉⠕⠗â â Žâ ‘" }, { "input": "corpse's", "output": "⠉⠕⠗â â Žâ ‘â „â Ž" }, { "input": "corpses", "output": "⠉⠕⠗â â Žâ ‘â Ž" }, { "input": "corpsman", "output": "⠉⠕⠗â â Žâ â â " }, { "input": "corpsman's", "output": "⠉⠕⠗â â Žâ â â â „â Ž" }, { "input": "corpsmen", "output": "⠉⠕⠗â â Žâ â ¢" }, { "input": "corpulence", "output": "⠉⠕⠗â â ¥â ‡â °â ‘" }, { "input": "corpulence's", "output": "⠉⠕⠗â â ¥â ‡â °â ‘â „â Ž" }, { "input": "corpulent", "output": "⠉⠕⠗â â ¥â ‡â ¢â ž" }, { "input": "corpus", "output": "⠉⠕⠗â â ¥â Ž" }, { "input": "corpus's", "output": "⠉⠕⠗â â ¥â Žâ „â Ž" }, { "input": "corpuscle", "output": "⠉⠕⠗â â ¥â Žâ ‰â ‡â ‘" }, { "input": "corpuscle's", "output": "⠉⠕⠗â â ¥â Žâ ‰â ‡â ‘â „â Ž" }, { "input": "corpuscles", "output": "⠉⠕⠗â â ¥â Žâ ‰â ‡â ‘â Ž" }, { "input": "corpuscular", "output": "⠉⠕⠗â â ¥â Žâ ‰â ¥â ‡â œ" }, { "input": "corral", "output": "⠉⠕⠗⠗â â ‡" }, { "input": "corral's", "output": "⠉⠕⠗⠗â â ‡â „â Ž" }, { "input": "corralled", "output": "⠉⠕⠗⠗â â ‡â ‡â «" }, { "input": "corralling", "output": "⠉⠕⠗⠗â â ‡â ‡â Œ" }, { "input": "corrals", "output": "⠉⠕⠗⠗â â ‡â Ž" }, { "input": "correct", "output": "⠉⠕⠗⠗⠑⠉⠞" }, { "input": "correctable", "output": "⠉⠕⠗⠗⠑⠉⠞â â ¼" }, { "input": "corrected", "output": "⠉⠕⠗⠗⠑⠉⠞⠫" }, { "input": "correcter", "output": "⠉⠕⠗⠗⠑⠉⠞⠻" }, { "input": "correctest", "output": "⠉⠕⠗⠗⠑⠉⠞⠑⠌" }, { "input": "correcting", "output": "⠉⠕⠗⠗⠑⠉⠞⠌" }, { "input": "correction", "output": "⠉⠕⠗⠗⠑⠉⠰â " }, { "input": "correction's", "output": "⠉⠕⠗⠗⠑⠉⠰â â „â Ž" }, { "input": "correctional", "output": "⠉⠕⠗⠗⠑⠉⠰â â â ‡" }, { "input": "corrections", "output": "⠉⠕⠗⠗⠑⠉⠰â â Ž" }, { "input": "corrective", "output": "⠉⠕⠗⠗⠑⠉⠞⠊⠧⠑" }, { "input": "corrective's", "output": "⠉⠕⠗⠗⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "correctives", "output": "⠉⠕⠗⠗⠑⠉⠞⠊⠧⠑⠎" }, { "input": "correctly", "output": "⠉⠕⠗⠗⠑⠉⠞⠇⠽" }, { "input": "correctness", "output": "⠉⠕⠗⠗⠑⠉⠞⠰⠎" }, { "input": "correctness's", "output": "⠉⠕⠗⠗⠑⠉⠞⠰⠎⠄⠎" }, { "input": "corrector", "output": "⠉⠕⠗⠗⠑⠉⠞⠕⠗" }, { "input": "corrects", "output": "⠉⠕⠗⠗⠑⠉⠞⠎" }, { "input": "correlate", "output": "⠉⠕⠗⠗⠑⠇â â žâ ‘" }, { "input": "correlate's", "output": "⠉⠕⠗⠗⠑⠇â â žâ ‘â „â Ž" }, { "input": "correlated", "output": "⠉⠕⠗⠗⠑⠇â â žâ «" }, { "input": "correlates", "output": "⠉⠕⠗⠗⠑⠇â â žâ ‘â Ž" }, { "input": "correlating", "output": "⠉⠕⠗⠗⠑⠇â â žâ Œ" }, { "input": "correlation", "output": "⠉⠕⠗⠗⠑⠇⠠â " }, { "input": "correlation's", "output": "⠉⠕⠗⠗⠑⠇⠠â â „â Ž" }, { "input": "correlations", "output": "⠉⠕⠗⠗⠑⠇⠠â â Ž" }, { "input": "correlative", "output": "⠉⠕⠗⠗⠑⠇â â žâ Šâ §â ‘" }, { "input": "correlative's", "output": "⠉⠕⠗⠗⠑⠇â â žâ Šâ §â ‘â „â Ž" }, { "input": "correlatives", "output": "⠉⠕⠗⠗⠑⠇â â žâ Šâ §â ‘â Ž" }, { "input": "correspond", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™" }, { "input": "corresponded", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â «" }, { "input": "correspondence", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â °â ‘" }, { "input": "correspondence's", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â °â ‘â „â Ž" }, { "input": "correspondences", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â °â ‘â Ž" }, { "input": "correspondent", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¢â ž" }, { "input": "correspondent's", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¢â žâ „â Ž" }, { "input": "correspondents", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â ¢â žâ Ž" }, { "input": "corresponding", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â Œ" }, { "input": "correspondingly", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â Œâ ‡â ½" }, { "input": "corresponds", "output": "⠉⠕⠗⠗⠑⠎â â •â â ™â Ž" }, { "input": "corridor", "output": "⠉⠕⠗⠗⠊⠙⠕⠗" }, { "input": "corridor's", "output": "⠉⠕⠗⠗⠊⠙⠕⠗⠄⠎" }, { "input": "corridors", "output": "⠉⠕⠗⠗⠊⠙⠕⠗⠎" }, { "input": "corroborate", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ ‘" }, { "input": "corroborated", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ «" }, { "input": "corroborates", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ ‘â Ž" }, { "input": "corroborating", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ Œ" }, { "input": "corroboration", "output": "⠉⠕⠗⠗⠕⠃⠕⠗⠠â " }, { "input": "corroboration's", "output": "⠉⠕⠗⠗⠕⠃⠕⠗⠠â â „â Ž" }, { "input": "corroborations", "output": "⠉⠕⠗⠗⠕⠃⠕⠗⠠â â Ž" }, { "input": "corroborative", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ Šâ §â ‘" }, { "input": "corroborator", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ •â —" }, { "input": "corroborator's", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ •â —â „â Ž" }, { "input": "corroborators", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ •â —â Ž" }, { "input": "corroboratory", "output": "⠉⠕⠗⠗⠕⠃⠕⠗â â žâ •â —â ½" }, { "input": "corrode", "output": "⠉⠕⠗⠗⠕⠙⠑" }, { "input": "corroded", "output": "⠉⠕⠗⠗⠕⠙⠫" }, { "input": "corrodes", "output": "⠉⠕⠗⠗⠕⠙⠑⠎" }, { "input": "corroding", "output": "⠉⠕⠗⠗⠕⠙⠌" }, { "input": "corrosion", "output": "⠉⠕⠗⠗⠕⠨â " }, { "input": "corrosion's", "output": "⠉⠕⠗⠗⠕⠨â â „â Ž" }, { "input": "corrosive", "output": "⠉⠕⠗⠗⠕⠎⠊⠧⠑" }, { "input": "corrosive's", "output": "⠉⠕⠗⠗⠕⠎⠊⠧⠑⠄⠎" }, { "input": "corrosively", "output": "⠉⠕⠗⠗⠕⠎⠊⠧⠑⠇⠽" }, { "input": "corrosives", "output": "⠉⠕⠗⠗⠕⠎⠊⠧⠑⠎" }, { "input": "corrugate", "output": "⠉⠕⠗⠗⠥⠛â â žâ ‘" }, { "input": "corrugated", "output": "⠉⠕⠗⠗⠥⠛â â žâ «" }, { "input": "corrugates", "output": "⠉⠕⠗⠗⠥⠛â â žâ ‘â Ž" }, { "input": "corrugating", "output": "⠉⠕⠗⠗⠥⠛â â žâ Œ" }, { "input": "corrugation", "output": "⠉⠕⠗⠗⠥⠛⠠â " }, { "input": "corrugation's", "output": "⠉⠕⠗⠗⠥⠛⠠â â „â Ž" }, { "input": "corrugations", "output": "⠉⠕⠗⠗⠥⠛⠠â â Ž" }, { "input": "corrupt", "output": "⠉⠕⠗⠗⠥â â ž" }, { "input": "corrupted", "output": "⠉⠕⠗⠗⠥â â žâ «" }, { "input": "corrupter", "output": "⠉⠕⠗⠗⠥â â žâ »" }, { "input": "corruptest", "output": "⠉⠕⠗⠗⠥â â žâ ‘â Œ" }, { "input": "corruptibility", "output": "⠉⠕⠗⠗⠥â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "corruptibility's", "output": "⠉⠕⠗⠗⠥â â žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "corruptible", "output": "⠉⠕⠗⠗⠥â â žâ Šâ ¼" }, { "input": "corrupting", "output": "⠉⠕⠗⠗⠥â â žâ Œ" }, { "input": "corruption", "output": "⠉⠕⠗⠗⠥â â °â " }, { "input": "corruption's", "output": "⠉⠕⠗⠗⠥â â °â â „â Ž" }, { "input": "corruptions", "output": "⠉⠕⠗⠗⠥â â °â â Ž" }, { "input": "corruptly", "output": "⠉⠕⠗⠗⠥â â žâ ‡â ½" }, { "input": "corruptness", "output": "⠉⠕⠗⠗⠥â â žâ °â Ž" }, { "input": "corruptness's", "output": "⠉⠕⠗⠗⠥â â žâ °â Žâ „â Ž" }, { "input": "corrupts", "output": "⠉⠕⠗⠗⠥â â žâ Ž" }, { "input": "corsage", "output": "⠉⠕⠗⠎â â ›â ‘" }, { "input": "corsage's", "output": "⠉⠕⠗⠎â â ›â ‘â „â Ž" }, { "input": "corsages", "output": "⠉⠕⠗⠎â â ›â ‘â Ž" }, { "input": "corsair", "output": "⠉⠕⠗⠎â â Šâ —" }, { "input": "corsair's", "output": "⠉⠕⠗⠎â â Šâ —â „â Ž" }, { "input": "corsairs", "output": "⠉⠕⠗⠎â â Šâ —â Ž" }, { "input": "corset", "output": "⠉⠕⠗⠎⠑⠞" }, { "input": "corset's", "output": "⠉⠕⠗⠎⠑⠞⠄⠎" }, { "input": "corseted", "output": "⠉⠕⠗⠎⠑⠞⠫" }, { "input": "corseting", "output": "⠉⠕⠗⠎⠑⠞⠌" }, { "input": "corsets", "output": "⠉⠕⠗⠎⠑⠞⠎" }, { "input": "cortex", "output": "⠉⠕⠗⠞⠑⠭" }, { "input": "cortex's", "output": "⠉⠕⠗⠞⠑⠭⠄⠎" }, { "input": "cortical", "output": "⠉⠕⠗⠞⠊⠉â â ‡" }, { "input": "cortices", "output": "⠉⠕⠗⠞⠊⠉⠑⠎" }, { "input": "cortisone", "output": "⠉⠕⠗⠞⠊⠎â â •" }, { "input": "cortisone's", "output": "⠉⠕⠗⠞⠊⠎â â •â „â Ž" }, { "input": "corundum", "output": "⠉⠕⠗⠥â â ™â ¥â " }, { "input": "corundum's", "output": "⠉⠕⠗⠥â â ™â ¥â â „â Ž" }, { "input": "coruscate", "output": "⠉⠕⠗⠥⠎⠉â â žâ ‘" }, { "input": "coruscated", "output": "⠉⠕⠗⠥⠎⠉â â žâ «" }, { "input": "coruscates", "output": "⠉⠕⠗⠥⠎⠉â â žâ ‘â Ž" }, { "input": "coruscating", "output": "⠉⠕⠗⠥⠎⠉â â žâ Œ" }, { "input": "coruscation", "output": "⠉⠕⠗⠥⠎⠉⠠â " }, { "input": "coruscation's", "output": "⠉⠕⠗⠥⠎⠉⠠â â „â Ž" }, { "input": "corvette's", "output": "⠉⠕⠗⠧⠑⠞⠞⠑⠄⠎" }, { "input": "corvettes", "output": "⠉⠕⠗⠧⠑⠞⠞⠑⠎" }, { "input": "cos's", "output": "⠉⠕⠎⠄⠎" }, { "input": "cosign", "output": "⠉⠕⠎⠊⠛â " }, { "input": "cosignatories", "output": "⠉⠕⠎⠊⠛â â â žâ •â —â Šâ ‘â Ž" }, { "input": "cosignatory", "output": "⠉⠕⠎⠊⠛â â â žâ •â —â ½" }, { "input": "cosignatory's", "output": "⠉⠕⠎⠊⠛â â â žâ •⠗⠽⠄⠎" }, { "input": "cosigned", "output": "⠉⠕⠎⠊⠛â â «" }, { "input": "cosigner", "output": "⠉⠕⠎⠊⠛â â »" }, { "input": "cosigner's", "output": "⠉⠕⠎⠊⠛â â »â „â Ž" }, { "input": "cosigners", "output": "⠉⠕⠎⠊⠛â â »â Ž" }, { "input": "cosigning", "output": "⠉⠕⠎⠊⠛â â Œ" }, { "input": "cosigns", "output": "⠉⠕⠎⠊⠛â â Ž" }, { "input": "cosine", "output": "⠉⠕⠎⠔⠑" }, { "input": "cosmetic", "output": "⠉⠕⠎â â ‘â žâ Šâ ‰" }, { "input": "cosmetic's", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠄⠎" }, { "input": "cosmetically", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠠⠽" }, { "input": "cosmetician", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠊â â " }, { "input": "cosmetician's", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠊â â â „â Ž" }, { "input": "cosmeticians", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠊â â â Ž" }, { "input": "cosmetics", "output": "⠉⠕⠎â â ‘⠞⠊⠉⠎" }, { "input": "cosmetologist", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠊⠌" }, { "input": "cosmetologist's", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "cosmetologists", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠊⠌⠎" }, { "input": "cosmetology", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠽" }, { "input": "cosmetology's", "output": "⠉⠕⠎â â ‘⠞⠕⠇⠕⠛⠽⠄⠎" }, { "input": "cosmic", "output": "⠉⠕⠎â â Šâ ‰" }, { "input": "cosmically", "output": "⠉⠕⠎â â Šâ ‰â  â ½" }, { "input": "cosmogonies", "output": "⠉⠕⠎â â •⠛⠕â â Šâ ‘â Ž" }, { "input": "cosmogonist", "output": "⠉⠕⠎â â •⠛⠕â â Šâ Œ" }, { "input": "cosmogonist's", "output": "⠉⠕⠎â â •⠛⠕â â Šâ Œâ „â Ž" }, { "input": "cosmogonists", "output": "⠉⠕⠎â â •⠛⠕â â Šâ Œâ Ž" }, { "input": "cosmogony", "output": "⠉⠕⠎â â •⠛⠕â â ½" }, { "input": "cosmogony's", "output": "⠉⠕⠎â â •⠛⠕â â ½â „â Ž" }, { "input": "cosmological", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "cosmologies", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠑⠎" }, { "input": "cosmologist", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠌" }, { "input": "cosmologist's", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "cosmologists", "output": "⠉⠕⠎â â •⠇⠕⠛⠊⠌⠎" }, { "input": "cosmology", "output": "⠉⠕⠎â â •⠇⠕⠛⠽" }, { "input": "cosmology's", "output": "⠉⠕⠎â â •⠇⠕⠛⠽⠄⠎" }, { "input": "cosmonaut", "output": "⠉⠕⠎â â •â â â ¥â ž" }, { "input": "cosmonaut's", "output": "⠉⠕⠎â â •â â â ¥â žâ „â Ž" }, { "input": "cosmonauts", "output": "⠉⠕⠎â â •â â â ¥â žâ Ž" }, { "input": "cosmopolitan", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â " }, { "input": "cosmopolitan's", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â â „â Ž" }, { "input": "cosmopolitanism", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â â Šâ Žâ " }, { "input": "cosmopolitanism's", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â â Šâ Žâ â „â Ž" }, { "input": "cosmopolitans", "output": "⠉⠕⠎â â •â â •⠇⠊⠞â â â Ž" }, { "input": "cosmos", "output": "⠉⠕⠎â â •â Ž" }, { "input": "cosmos's", "output": "⠉⠕⠎â â •â Žâ „â Ž" }, { "input": "cosmoses", "output": "⠉⠕⠎â â •â Žâ ‘â Ž" }, { "input": "cosponsor", "output": "⠉⠕⠎â â •â â Žâ •â —" }, { "input": "cosponsor's", "output": "⠉⠕⠎â â •â â Žâ •â —â „â Ž" }, { "input": "cosponsored", "output": "⠉⠕⠎â â •â â Žâ •â —â «" }, { "input": "cosponsoring", "output": "⠉⠕⠎â â •â â Žâ •â —â Œ" }, { "input": "cosponsors", "output": "⠉⠕⠎â â •â â Žâ •â —â Ž" }, { "input": "cost", "output": "⠉⠕⠌" }, { "input": "cost's", "output": "⠉⠕⠌⠄⠎" }, { "input": "costar", "output": "⠉⠕⠌⠜" }, { "input": "costar's", "output": "⠉⠕⠌⠜⠄⠎" }, { "input": "costarred", "output": "⠉⠕⠌⠜⠗⠫" }, { "input": "costarring", "output": "⠉⠕⠌⠜⠗⠌" }, { "input": "costars", "output": "⠉⠕⠌⠜⠎" }, { "input": "costed", "output": "⠉⠕⠌⠫" }, { "input": "costing", "output": "⠉⠕⠌⠌" }, { "input": "costings", "output": "⠉⠕⠌⠌⠎" }, { "input": "costlier", "output": "⠉⠕⠌⠇⠊⠻" }, { "input": "costliest", "output": "⠉⠕⠌⠇⠊⠑⠌" }, { "input": "costliness", "output": "⠉⠕⠌⠇⠊⠰⠎" }, { "input": "costliness's", "output": "⠉⠕⠌⠇⠊⠰⠎⠄⠎" }, { "input": "costly", "output": "⠉⠕⠌⠇⠽" }, { "input": "costs", "output": "⠉⠕⠌⠎" }, { "input": "costume", "output": "⠉⠕⠌⠥â â ‘" }, { "input": "costume's", "output": "⠉⠕⠌⠥â â ‘â „â Ž" }, { "input": "costumed", "output": "⠉⠕⠌⠥â â «" }, { "input": "costumes", "output": "⠉⠕⠌⠥â â ‘â Ž" }, { "input": "costumier", "output": "⠉⠕⠌⠥â â Šâ »" }, { "input": "costuming", "output": "⠉⠕⠌⠥â â Œ" }, { "input": "cot", "output": "⠉⠕⠞" }, { "input": "cot's", "output": "⠉⠕⠞⠄⠎" }, { "input": "cotangent", "output": "⠉⠕⠞â â â ›â ¢â ž" }, { "input": "cotangent's", "output": "⠉⠕⠞â â â ›â ¢â žâ „â Ž" }, { "input": "cotangents", "output": "⠉⠕⠞â â â ›â ¢â žâ Ž" }, { "input": "cote", "output": "⠉⠕⠞⠑" }, { "input": "cote's", "output": "⠉⠕⠞⠑⠄⠎" }, { "input": "coterie", "output": "⠉⠕⠞⠻⠊⠑" }, { "input": "coterie's", "output": "⠉⠕⠞⠻⠊⠑⠄⠎" }, { "input": "coteries", "output": "⠉⠕⠞⠻⠊⠑⠎" }, { "input": "cotes", "output": "⠉⠕⠞⠑⠎" }, { "input": "cotillion", "output": "⠉⠕⠞⠊⠇⠇⠊⠕â " }, { "input": "cotillion's", "output": "⠉⠕⠞⠊⠇⠇⠊⠕â â „â Ž" }, { "input": "cotillions", "output": "⠉⠕⠞⠊⠇⠇⠊⠕â â Ž" }, { "input": "cots", "output": "⠉⠕⠞⠎" }, { "input": "cottage", "output": "⠉⠕⠞⠞â â ›â ‘" }, { "input": "cottage's", "output": "⠉⠕⠞⠞â â ›â ‘â „â Ž" }, { "input": "cottages", "output": "⠉⠕⠞⠞â â ›â ‘â Ž" }, { "input": "cottar", "output": "⠉⠕⠞⠞⠜" }, { "input": "cottar's", "output": "⠉⠕⠞⠞⠜⠄⠎" }, { "input": "cottars", "output": "⠉⠕⠞⠞⠜⠎" }, { "input": "cotter", "output": "⠉⠕⠞⠞⠻" }, { "input": "cotter's", "output": "⠉⠕⠞⠞⠻⠄⠎" }, { "input": "cotters", "output": "⠉⠕⠞⠞⠻⠎" }, { "input": "cotton", "output": "⠉⠕⠞⠞⠕â " }, { "input": "cotton's", "output": "⠉⠕⠞⠞⠕â â „â Ž" }, { "input": "cottoned", "output": "⠉⠕⠞⠞⠕â â «" }, { "input": "cottoning", "output": "⠉⠕⠞⠞⠕â â Œ" }, { "input": "cottonmouth", "output": "⠉⠕⠞⠞⠕â â â ³â ¹" }, { "input": "cottonmouth's", "output": "⠉⠕⠞⠞⠕â â â ³â ¹â „â Ž" }, { "input": "cottonmouths", "output": "⠉⠕⠞⠞⠕â â â ³â ¹â Ž" }, { "input": "cottons", "output": "⠉⠕⠞⠞⠕â â Ž" }, { "input": "cottonseed", "output": "⠉⠕⠞⠞⠕â â Žâ ‘â «" }, { "input": "cottonseed's", "output": "⠉⠕⠞⠞⠕â â Žâ ‘â «â „â Ž" }, { "input": "cottonseeds", "output": "⠉⠕⠞⠞⠕â â Žâ ‘â «â Ž" }, { "input": "cottontail", "output": "⠉⠕⠞⠞⠕â â žâ â Šâ ‡" }, { "input": "cottontail's", "output": "⠉⠕⠞⠞⠕â â žâ â Šâ ‡â „â Ž" }, { "input": "cottontails", "output": "⠉⠕⠞⠞⠕â â žâ â Šâ ‡â Ž" }, { "input": "cottonwood", "output": "⠉⠕⠞⠞⠕â â ºâ •â •â ™" }, { "input": "cottonwood's", "output": "⠉⠕⠞⠞⠕â â ºâ •⠕⠙⠄⠎" }, { "input": "cottonwoods", "output": "⠉⠕⠞⠞⠕â â ºâ •⠕⠙⠎" }, { "input": "cottony", "output": "⠉⠕⠞⠞⠕â â ½" }, { "input": "cotyledon", "output": "⠉⠕⠞⠽⠇⠫⠕â " }, { "input": "cotyledon's", "output": "⠉⠕⠞⠽⠇⠫⠕â â „â Ž" }, { "input": "cotyledons", "output": "⠉⠕⠞⠽⠇⠫⠕â â Ž" }, { "input": "couch", "output": "⠉⠳⠡" }, { "input": "couch's", "output": "⠉⠳⠡⠄⠎" }, { "input": "couched", "output": "⠉⠳⠡⠫" }, { "input": "couches", "output": "⠉⠳⠡⠑⠎" }, { "input": "couching", "output": "⠉⠳⠡⠌" }, { "input": "cougar", "output": "⠉⠳⠛⠜" }, { "input": "cougar's", "output": "⠉⠳⠛⠜⠄⠎" }, { "input": "cougars", "output": "⠉⠳⠛⠜⠎" }, { "input": "cough", "output": "⠉⠳⠣" }, { "input": "cough's", "output": "⠉⠳⠣⠄⠎" }, { "input": "coughed", "output": "⠉⠳⠣⠫" }, { "input": "coughing", "output": "⠉⠳⠣⠌" }, { "input": "coughs", "output": "⠉⠳⠣⠎" }, { "input": "could", "output": "⠉⠙" }, { "input": "coulomb", "output": "⠉⠳⠇⠕â â ƒ" }, { "input": "coulomb's", "output": "⠉⠳⠇⠕â â ƒâ „â Ž" }, { "input": "coulombs", "output": "⠉⠳⠇⠕â â ƒâ Ž" }, { "input": "council", "output": "⠉⠳â â ‰â Šâ ‡" }, { "input": "council's", "output": "⠉⠳â â ‰â Šâ ‡â „â Ž" }, { "input": "councilman", "output": "⠉⠳â â ‰â Šâ ‡â â â " }, { "input": "councilman's", "output": "⠉⠳â â ‰â Šâ ‡â â â â „â Ž" }, { "input": "councilmen", "output": "⠉⠳â â ‰â Šâ ‡â â ¢" }, { "input": "councilor", "output": "⠉⠳â â ‰â Šâ ‡â •â —" }, { "input": "councilor's", "output": "⠉⠳â â ‰â Šâ ‡â •â —â „â Ž" }, { "input": "councilors", "output": "⠉⠳â â ‰â Šâ ‡â •â —â Ž" }, { "input": "councilperson", "output": "⠉⠳â â ‰â Šâ ‡â â »â Žâ •â " }, { "input": "councilperson's", "output": "⠉⠳â â ‰â Šâ ‡â â »â Žâ •â â „â Ž" }, { "input": "councilpersons", "output": "⠉⠳â â ‰â Šâ ‡â â »â Žâ •â â Ž" }, { "input": "councils", "output": "⠉⠳â â ‰â Šâ ‡â Ž" }, { "input": "councilwoman", "output": "⠉⠳â â ‰â Šâ ‡â ºâ •â â â " }, { "input": "councilwoman's", "output": "⠉⠳â â ‰â Šâ ‡â ºâ •â â â â „â Ž" }, { "input": "councilwomen", "output": "⠉⠳â â ‰â Šâ ‡â ºâ •â â ¢" }, { "input": "counsel", "output": "⠉⠳â â Žâ ‘â ‡" }, { "input": "counsel's", "output": "⠉⠳â â Žâ ‘⠇⠄⠎" }, { "input": "counseled", "output": "⠉⠳â â Žâ ‘⠇⠫" }, { "input": "counseling", "output": "⠉⠳â â Žâ ‘⠇⠌" }, { "input": "counselings", "output": "⠉⠳â â Žâ ‘⠇⠌⠎" }, { "input": "counselor", "output": "⠉⠳â â Žâ ‘⠇⠕⠗" }, { "input": "counselor's", "output": "⠉⠳â â Žâ ‘⠇⠕⠗⠄⠎" }, { "input": "counselors", "output": "⠉⠳â â Žâ ‘⠇⠕⠗⠎" }, { "input": "counsels", "output": "⠉⠳â â Žâ ‘⠇⠎" }, { "input": "count", "output": "⠉⠨⠞" }, { "input": "count's", "output": "⠉⠨⠞⠄⠎" }, { "input": "countable", "output": "⠉⠨⠞â â ¼" }, { "input": "countably", "output": "⠉⠨⠞â â ƒâ ‡â ½" }, { "input": "countdown", "output": "⠉⠨⠞⠙⠪â " }, { "input": "countdown's", "output": "⠉⠨⠞⠙⠪â â „â Ž" }, { "input": "countdowns", "output": "⠉⠨⠞⠙⠪â â Ž" }, { "input": "counted", "output": "⠉⠨⠞⠫" }, { "input": "countenance", "output": "⠉⠨⠞⠢⠨⠑" }, { "input": "countenance's", "output": "⠉⠨⠞⠢⠨⠑⠄⠎" }, { "input": "countenanced", "output": "⠉⠨⠞⠢⠨⠑⠙" }, { "input": "countenances", "output": "⠉⠨⠞⠢⠨⠑⠎" }, { "input": "countenancing", "output": "⠉⠨⠞⠢â â â ‰â Œ" }, { "input": "counter", "output": "⠉⠨⠞⠻" }, { "input": "counter's", "output": "⠉⠨⠞⠻⠄⠎" }, { "input": "counteract", "output": "⠉⠨⠞⠻â â ‰â ž" }, { "input": "counteracted", "output": "⠉⠨⠞⠻â â ‰â žâ «" }, { "input": "counteracting", "output": "⠉⠨⠞⠻â â ‰â žâ Œ" }, { "input": "counteraction", "output": "⠉⠨⠞⠻â â ‰â °â " }, { "input": "counteraction's", "output": "⠉⠨⠞⠻â â ‰â °â â „â Ž" }, { "input": "counteractions", "output": "⠉⠨⠞⠻â â ‰â °â â Ž" }, { "input": "counteractive", "output": "⠉⠨⠞⠻â â ‰â žâ Šâ §â ‘" }, { "input": "counteracts", "output": "⠉⠨⠞⠻â â ‰â žâ Ž" }, { "input": "counterattack", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …" }, { "input": "counterattack's", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â „â Ž" }, { "input": "counterattacked", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â «" }, { "input": "counterattacking", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â Œ" }, { "input": "counterattacks", "output": "⠉⠨⠞⠻â â žâ žâ â ‰â …â Ž" }, { "input": "counterbalance", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘" }, { "input": "counterbalance's", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘â „â Ž" }, { "input": "counterbalanced", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘â ™" }, { "input": "counterbalances", "output": "⠉⠨⠞⠻⠃â â ‡â ¨â ‘â Ž" }, { "input": "counterbalancing", "output": "⠉⠨⠞⠻⠃â â ‡â â â ‰â Œ" }, { "input": "counterclaim", "output": "⠉⠨⠞⠻⠉⠇â â Šâ " }, { "input": "counterclaim's", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â „â Ž" }, { "input": "counterclaimed", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â «" }, { "input": "counterclaiming", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â Œ" }, { "input": "counterclaims", "output": "⠉⠨⠞⠻⠉⠇â â Šâ â Ž" }, { "input": "counterclockwise", "output": "⠉⠨⠞⠻⠉⠇⠕⠉⠅⠺⠊⠎⠑" }, { "input": "counterculture", "output": "⠉⠨⠞⠻⠉⠥⠇⠞⠥⠗⠑" }, { "input": "counterculture's", "output": "⠉⠨⠞⠻⠉⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "countered", "output": "⠉⠨⠞⠻⠫" }, { "input": "counterespionage", "output": "⠉⠨⠞⠻⠑⠎â â Šâ •â â â ›â ‘" }, { "input": "counterespionage's", "output": "⠉⠨⠞⠻⠑⠎â â Šâ •â â â ›â ‘â „â Ž" }, { "input": "counterexample", "output": "⠉⠨⠞⠻⠑⠭â â â â ‡â ‘" }, { "input": "counterexamples", "output": "⠉⠨⠞⠻⠑⠭â â â â ‡â ‘â Ž" }, { "input": "counterfeit", "output": "⠉⠨⠞⠻⠋⠑⠊⠞" }, { "input": "counterfeit's", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠄⠎" }, { "input": "counterfeited", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠫" }, { "input": "counterfeiter", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠻" }, { "input": "counterfeiter's", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠻⠄⠎" }, { "input": "counterfeiters", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠻⠎" }, { "input": "counterfeiting", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠌" }, { "input": "counterfeits", "output": "⠉⠨⠞⠻⠋⠑⠊⠞⠎" }, { "input": "countering", "output": "⠉⠨⠞⠻⠌" }, { "input": "counterinsurgencies", "output": "⠉⠨⠞⠻⠔⠎⠥⠗⠛⠢⠉⠊⠑⠎" }, { "input": "counterinsurgency's", "output": "⠉⠨⠞⠻⠔⠎⠥⠗⠛⠢⠉⠽⠄⠎" }, { "input": "counterintelligence", "output": "⠉⠨⠞⠻⠔⠞⠑⠇⠇⠊⠛⠰⠑" }, { "input": "counterintelligence's", "output": "⠉⠨⠞⠻⠔⠞⠑⠇⠇⠊⠛⠰⠑⠄⠎" }, { "input": "counterman", "output": "⠉⠨⠞⠻â â â " }, { "input": "counterman's", "output": "⠉⠨⠞⠻â â â â „â Ž" }, { "input": "countermand", "output": "⠉⠨⠞⠻â â ¯" }, { "input": "countermand's", "output": "⠉⠨⠞⠻â â ¯â „â Ž" }, { "input": "countermanded", "output": "⠉⠨⠞⠻â â ¯â «" }, { "input": "countermanding", "output": "⠉⠨⠞⠻â â ¯â Œ" }, { "input": "countermands", "output": "⠉⠨⠞⠻â â ¯â Ž" }, { "input": "countermen", "output": "⠉⠨⠞⠻â â ¢" }, { "input": "counteroffer", "output": "⠉⠨⠞⠻⠷⠋⠻" }, { "input": "counteroffer's", "output": "⠉⠨⠞⠻⠷⠋⠻⠄⠎" }, { "input": "counteroffers", "output": "⠉⠨⠞⠻⠷⠋⠻⠎" }, { "input": "counterpane", "output": "⠉⠨⠞⠻â â â â ‘" }, { "input": "counterpane's", "output": "⠉⠨⠞⠻â â â â ‘â „â Ž" }, { "input": "counterpanes", "output": "⠉⠨⠞⠻â â â â ‘â Ž" }, { "input": "counterpart", "output": "⠉⠨⠞⠻â â " }, { "input": "counterpart's", "output": "⠉⠨⠞⠻â â â „â Ž" }, { "input": "counterparts", "output": "⠉⠨⠞⠻â â â Ž" }, { "input": "counterpoint", "output": "⠉⠨⠞⠻â â •⠔⠞" }, { "input": "counterpoint's", "output": "⠉⠨⠞⠻â â •⠔⠞⠄⠎" }, { "input": "counterpoints", "output": "⠉⠨⠞⠻â â •⠔⠞⠎" }, { "input": "counterpoise", "output": "⠉⠨⠞⠻â â •â Šâ Žâ ‘" }, { "input": "counterpoise's", "output": "⠉⠨⠞⠻â â •â Šâ Žâ ‘â „â Ž" }, { "input": "counterpoised", "output": "⠉⠨⠞⠻â â •â Šâ Žâ «" }, { "input": "counterpoises", "output": "⠉⠨⠞⠻â â •â Šâ Žâ ‘â Ž" }, { "input": "counterpoising", "output": "⠉⠨⠞⠻â â •â Šâ Žâ Œ" }, { "input": "counterproductive", "output": "⠉⠨⠞⠻â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "counterrevolution", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â " }, { "input": "counterrevolution's", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â „â Ž" }, { "input": "counterrevolutionaries", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â œâ Šâ ‘â Ž" }, { "input": "counterrevolutionary", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â œâ ½" }, { "input": "counterrevolutionary's", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â œâ ½â „â Ž" }, { "input": "counterrevolutions", "output": "⠉⠨⠞⠻⠗⠑⠧⠕⠇⠥⠰â â Ž" }, { "input": "counters", "output": "⠉⠨⠞⠻⠎" }, { "input": "countersign", "output": "⠉⠨⠞⠻⠎⠊⠛â " }, { "input": "countersign's", "output": "⠉⠨⠞⠻⠎⠊⠛â â „â Ž" }, { "input": "countersignature", "output": "⠉⠨⠞⠻⠎⠊⠛â â â žâ ¥â —â ‘" }, { "input": "countersignature's", "output": "⠉⠨⠞⠻⠎⠊⠛â â â žâ ¥â —â ‘â „â Ž" }, { "input": "countersignatures", "output": "⠉⠨⠞⠻⠎⠊⠛â â â žâ ¥â —â ‘â Ž" }, { "input": "countersigned", "output": "⠉⠨⠞⠻⠎⠊⠛â â «" }, { "input": "countersigning", "output": "⠉⠨⠞⠻⠎⠊⠛â â Œ" }, { "input": "countersigns", "output": "⠉⠨⠞⠻⠎⠊⠛â â Ž" }, { "input": "countersink", "output": "⠉⠨⠞⠻⠎⠔⠅" }, { "input": "countersink's", "output": "⠉⠨⠞⠻⠎⠔⠅⠄⠎" }, { "input": "countersinking", "output": "⠉⠨⠞⠻⠎⠔⠅⠌" }, { "input": "countersinks", "output": "⠉⠨⠞⠻⠎⠔⠅⠎" }, { "input": "counterspies", "output": "⠉⠨⠞⠻⠎â â Šâ ‘â Ž" }, { "input": "counterspy", "output": "⠉⠨⠞⠻⠎â â ½" }, { "input": "counterspy's", "output": "⠉⠨⠞⠻⠎â â ½â „â Ž" }, { "input": "countersunk", "output": "⠉⠨⠞⠻⠎⠥â â …" }, { "input": "countertenor", "output": "⠉⠨⠞⠻⠞⠢⠕⠗" }, { "input": "countertenor's", "output": "⠉⠨⠞⠻⠞⠢⠕⠗⠄⠎" }, { "input": "countertenors", "output": "⠉⠨⠞⠻⠞⠢⠕⠗⠎" }, { "input": "counterweight", "output": "⠉⠨⠞⠻⠺⠑⠊⠣⠞" }, { "input": "counterweight's", "output": "⠉⠨⠞⠻⠺⠑⠊⠣⠞⠄⠎" }, { "input": "counterweights", "output": "⠉⠨⠞⠻⠺⠑⠊⠣⠞⠎" }, { "input": "countess", "output": "⠉⠨⠞⠑⠎⠎" }, { "input": "countess's", "output": "⠉⠨⠞⠑⠎⠎⠄⠎" }, { "input": "countesses", "output": "⠉⠨⠞⠑⠎⠎⠑⠎" }, { "input": "counties", "output": "⠉⠨⠞⠊⠑⠎" }, { "input": "counting", "output": "⠉⠨⠞⠌" }, { "input": "countless", "output": "⠉⠨⠞⠨⠎" }, { "input": "countries", "output": "⠉⠨⠞⠗⠊⠑⠎" }, { "input": "countrified", "output": "⠉⠨⠞⠗⠊⠋⠊⠫" }, { "input": "country", "output": "⠉⠨⠞⠗⠽" }, { "input": "country's", "output": "⠉⠨⠞⠗⠽⠄⠎" }, { "input": "countryman", "output": "⠉⠨⠞⠗⠽â â â " }, { "input": "countryman's", "output": "⠉⠨⠞⠗⠽â â â â „â Ž" }, { "input": "countrymen", "output": "⠉⠨⠞⠗⠽â â ¢" }, { "input": "countryside", "output": "⠉⠨⠞⠗⠽⠎⠊⠙⠑" }, { "input": "countryside's", "output": "⠉⠨⠞⠗⠽⠎⠊⠙⠑⠄⠎" }, { "input": "countrysides", "output": "⠉⠨⠞⠗⠽⠎⠊⠙⠑⠎" }, { "input": "countrywoman", "output": "⠉⠨⠞⠗⠽⠺⠕â â â " }, { "input": "countrywoman's", "output": "⠉⠨⠞⠗⠽⠺⠕â â â â „â Ž" }, { "input": "countrywomen", "output": "⠉⠨⠞⠗⠽⠺⠕â â ¢" }, { "input": "counts", "output": "⠉⠨⠞⠎" }, { "input": "county", "output": "⠉⠨⠞⠽" }, { "input": "county's", "output": "⠉⠨⠞⠽⠄⠎" }, { "input": "coup", "output": "⠉⠳â " }, { "input": "coup's", "output": "⠉⠳â â „â Ž" }, { "input": "coupe", "output": "⠉⠳â â ‘" }, { "input": "coupe's", "output": "⠉⠳â â ‘â „â Ž" }, { "input": "coupes", "output": "⠉⠳â â ‘â Ž" }, { "input": "couple", "output": "⠉⠳â â ‡â ‘" }, { "input": "couple's", "output": "⠉⠳â â ‡â ‘â „â Ž" }, { "input": "coupled", "output": "⠉⠳â â ‡â «" }, { "input": "couples", "output": "⠉⠳â â ‡â ‘â Ž" }, { "input": "couplet", "output": "⠉⠳â â ‡â ‘â ž" }, { "input": "couplet's", "output": "⠉⠳â â ‡â ‘â žâ „â Ž" }, { "input": "couplets", "output": "⠉⠳â â ‡â ‘â žâ Ž" }, { "input": "coupling", "output": "⠉⠳â â ‡â Œ" }, { "input": "coupling's", "output": "⠉⠳â â ‡â Œâ „â Ž" }, { "input": "couplings", "output": "⠉⠳â â ‡â Œâ Ž" }, { "input": "coupon", "output": "⠉⠳â â •â " }, { "input": "coupon's", "output": "⠉⠳â â •â â „â Ž" }, { "input": "coupons", "output": "⠉⠳â â •â â Ž" }, { "input": "coups", "output": "⠉⠳â â Ž" }, { "input": "courage", "output": "⠉⠳⠗â â ›â ‘" }, { "input": "courage's", "output": "⠉⠳⠗â â ›â ‘â „â Ž" }, { "input": "courageous", "output": "⠉⠳⠗â â ›â ‘⠳⠎" }, { "input": "courageously", "output": "⠉⠳⠗â â ›â ‘⠳⠎⠇⠽" }, { "input": "courageousness", "output": "⠉⠳⠗â â ›â ‘⠳⠎⠰⠎" }, { "input": "courageousness's", "output": "⠉⠳⠗â â ›â ‘⠳⠎⠰⠎⠄⠎" }, { "input": "courier", "output": "⠉⠳⠗⠊⠻" }, { "input": "courier's", "output": "⠉⠳⠗⠊⠻⠄⠎" }, { "input": "couriers", "output": "⠉⠳⠗⠊⠻⠎" }, { "input": "course", "output": "⠉⠳⠗⠎⠑" }, { "input": "course's", "output": "⠉⠳⠗⠎⠑⠄⠎" }, { "input": "coursed", "output": "⠉⠳⠗⠎⠫" }, { "input": "courser", "output": "⠉⠳⠗⠎⠻" }, { "input": "courser's", "output": "⠉⠳⠗⠎⠻⠄⠎" }, { "input": "coursers", "output": "⠉⠳⠗⠎⠻⠎" }, { "input": "courses", "output": "⠉⠳⠗⠎⠑⠎" }, { "input": "coursing", "output": "⠉⠳⠗⠎⠌" }, { "input": "court", "output": "⠉⠳⠗⠞" }, { "input": "court's", "output": "⠉⠳⠗⠞⠄⠎" }, { "input": "courted", "output": "⠉⠳⠗⠞⠫" }, { "input": "courteous", "output": "⠉⠳⠗⠞⠑⠳⠎" }, { "input": "courteously", "output": "⠉⠳⠗⠞⠑⠳⠎⠇⠽" }, { "input": "courteousness", "output": "⠉⠳⠗⠞⠑⠳⠎⠰⠎" }, { "input": "courteousness's", "output": "⠉⠳⠗⠞⠑⠳⠎⠰⠎⠄⠎" }, { "input": "courtesan", "output": "⠉⠳⠗⠞⠑⠎â â " }, { "input": "courtesan's", "output": "⠉⠳⠗⠞⠑⠎â â â „â Ž" }, { "input": "courtesans", "output": "⠉⠳⠗⠞⠑⠎â â â Ž" }, { "input": "courtesies", "output": "⠉⠳⠗⠞⠑⠎⠊⠑⠎" }, { "input": "courtesy", "output": "⠉⠳⠗⠞⠑⠎⠽" }, { "input": "courtesy's", "output": "⠉⠳⠗⠞⠑⠎⠽⠄⠎" }, { "input": "courthouse", "output": "⠉⠳⠗⠞⠓⠳⠎⠑" }, { "input": "courthouse's", "output": "⠉⠳⠗⠞⠓⠳⠎⠑⠄⠎" }, { "input": "courthouses", "output": "⠉⠳⠗⠞⠓⠳⠎⠑⠎" }, { "input": "courtier", "output": "⠉⠳⠗⠞⠊⠻" }, { "input": "courtier's", "output": "⠉⠳⠗⠞⠊⠻⠄⠎" }, { "input": "courtiers", "output": "⠉⠳⠗⠞⠊⠻⠎" }, { "input": "courting", "output": "⠉⠳⠗⠞⠌" }, { "input": "courtlier", "output": "⠉⠳⠗⠞⠇⠊⠻" }, { "input": "courtliest", "output": "⠉⠳⠗⠞⠇⠊⠑⠌" }, { "input": "courtliness", "output": "⠉⠳⠗⠞⠇⠊⠰⠎" }, { "input": "courtliness's", "output": "⠉⠳⠗⠞⠇⠊⠰⠎⠄⠎" }, { "input": "courtly", "output": "⠉⠳⠗⠞⠇⠽" }, { "input": "courtroom", "output": "⠉⠳⠗⠞⠗⠕⠕â " }, { "input": "courtroom's", "output": "⠉⠳⠗⠞⠗⠕⠕â â „â Ž" }, { "input": "courtrooms", "output": "⠉⠳⠗⠞⠗⠕⠕â â Ž" }, { "input": "courts", "output": "⠉⠳⠗⠞⠎" }, { "input": "courtship", "output": "⠉⠳⠗⠞⠩⠊â " }, { "input": "courtship's", "output": "⠉⠳⠗⠞⠩⠊â â „â Ž" }, { "input": "courtships", "output": "⠉⠳⠗⠞⠩⠊â â Ž" }, { "input": "courtyard", "output": "⠉⠳⠗⠞⠽⠜⠙" }, { "input": "courtyard's", "output": "⠉⠳⠗⠞⠽⠜⠙⠄⠎" }, { "input": "courtyards", "output": "⠉⠳⠗⠞⠽⠜⠙⠎" }, { "input": "couscous's", "output": "⠉⠳⠎⠉⠳⠎⠄⠎" }, { "input": "cousin", "output": "⠉⠳⠎⠔" }, { "input": "cousin's", "output": "⠉⠳⠎⠔⠄⠎" }, { "input": "cousins", "output": "⠉⠳⠎⠔⠎" }, { "input": "couture's", "output": "⠉⠳⠞⠥⠗⠑⠄⠎" }, { "input": "cove", "output": "⠉⠕⠧⠑" }, { "input": "cove's", "output": "⠉⠕⠧⠑⠄⠎" }, { "input": "coven", "output": "⠉⠕⠧⠢" }, { "input": "coven's", "output": "⠉⠕⠧⠢⠄⠎" }, { "input": "covenant", "output": "⠉⠕⠧⠢â â â ž" }, { "input": "covenant's", "output": "⠉⠕⠧⠢â â â žâ „â Ž" }, { "input": "covenanted", "output": "⠉⠕⠧⠢â â â žâ «" }, { "input": "covenanting", "output": "⠉⠕⠧⠢â â â žâ Œ" }, { "input": "covenants", "output": "⠉⠕⠧⠢â â â žâ Ž" }, { "input": "covens", "output": "⠉⠕⠧⠢⠎" }, { "input": "cover", "output": "⠉⠕⠧⠻" }, { "input": "cover's", "output": "⠉⠕⠧⠻⠄⠎" }, { "input": "coverage", "output": "⠉⠕⠧⠻â â ›â ‘" }, { "input": "coverage's", "output": "⠉⠕⠧⠻â â ›â ‘â „â Ž" }, { "input": "coverall", "output": "⠉⠕⠧⠻â â ‡â ‡" }, { "input": "coverall's", "output": "⠉⠕⠧⠻â â ‡â ‡â „â Ž" }, { "input": "coveralls", "output": "⠉⠕⠧⠻â â ‡â ‡â Ž" }, { "input": "covered", "output": "⠉⠕⠧⠻⠫" }, { "input": "covering", "output": "⠉⠕⠧⠻⠌" }, { "input": "covering's", "output": "⠉⠕⠧⠻⠌⠄⠎" }, { "input": "coverings", "output": "⠉⠕⠧⠻⠌⠎" }, { "input": "coverlet", "output": "⠉⠕⠧⠻⠇⠑⠞" }, { "input": "coverlet's", "output": "⠉⠕⠧⠻⠇⠑⠞⠄⠎" }, { "input": "coverlets", "output": "⠉⠕⠧⠻⠇⠑⠞⠎" }, { "input": "covers", "output": "⠉⠕⠧⠻⠎" }, { "input": "covert", "output": "⠉⠕⠧⠻⠞" }, { "input": "covert's", "output": "⠉⠕⠧⠻⠞⠄⠎" }, { "input": "covertly", "output": "⠉⠕⠧⠻⠞⠇⠽" }, { "input": "covertness", "output": "⠉⠕⠧⠻⠞⠰⠎" }, { "input": "covertness's", "output": "⠉⠕⠧⠻⠞⠰⠎⠄⠎" }, { "input": "coverts", "output": "⠉⠕⠧⠻⠞⠎" }, { "input": "coves", "output": "⠉⠕⠧⠑⠎" }, { "input": "covet", "output": "⠉⠕⠧⠑⠞" }, { "input": "coveted", "output": "⠉⠕⠧⠑⠞⠫" }, { "input": "coveting", "output": "⠉⠕⠧⠑⠞⠌" }, { "input": "covetous", "output": "⠉⠕⠧⠑⠞⠳⠎" }, { "input": "covetously", "output": "⠉⠕⠧⠑⠞⠳⠎⠇⠽" }, { "input": "covetousness", "output": "⠉⠕⠧⠑⠞⠳⠎⠰⠎" }, { "input": "covetousness's", "output": "⠉⠕⠧⠑⠞⠳⠎⠰⠎⠄⠎" }, { "input": "covets", "output": "⠉⠕⠧⠑⠞⠎" }, { "input": "covey", "output": "⠉⠕⠧⠑⠽" }, { "input": "covey's", "output": "⠉⠕⠧⠑⠽⠄⠎" }, { "input": "coveys", "output": "⠉⠕⠧⠑⠽⠎" }, { "input": "cow", "output": "⠉⠪" }, { "input": "cow's", "output": "⠉⠪⠄⠎" }, { "input": "coward", "output": "⠉⠪⠜⠙" }, { "input": "coward's", "output": "⠉⠪⠜⠙⠄⠎" }, { "input": "cowardice", "output": "⠉⠪⠜⠙⠊⠉⠑" }, { "input": "cowardice's", "output": "⠉⠪⠜⠙⠊⠉⠑⠄⠎" }, { "input": "cowardliness", "output": "⠉⠪⠜⠙⠇⠊⠰⠎" }, { "input": "cowardliness's", "output": "⠉⠪⠜⠙⠇⠊⠰⠎⠄⠎" }, { "input": "cowardly", "output": "⠉⠪⠜⠙⠇⠽" }, { "input": "cowards", "output": "⠉⠪⠜⠙⠎" }, { "input": "cowbird", "output": "⠉⠪⠃⠊⠗⠙" }, { "input": "cowbird's", "output": "⠉⠪⠃⠊⠗⠙⠄⠎" }, { "input": "cowbirds", "output": "⠉⠪⠃⠊⠗⠙⠎" }, { "input": "cowboy", "output": "⠉⠪⠃⠕⠽" }, { "input": "cowboy's", "output": "⠉⠪⠃⠕⠽⠄⠎" }, { "input": "cowboys", "output": "⠉⠪⠃⠕⠽⠎" }, { "input": "cowed", "output": "⠉⠪⠫" }, { "input": "cower", "output": "⠉⠪⠻" }, { "input": "cowered", "output": "⠉⠪⠻⠫" }, { "input": "cowering", "output": "⠉⠪⠻⠌" }, { "input": "cowers", "output": "⠉⠪⠻⠎" }, { "input": "cowgirl", "output": "⠉⠪⠛⠊⠗⠇" }, { "input": "cowgirl's", "output": "⠉⠪⠛⠊⠗⠇⠄⠎" }, { "input": "cowgirls", "output": "⠉⠪⠛⠊⠗⠇⠎" }, { "input": "cowhand", "output": "⠉⠪⠓⠯" }, { "input": "cowhand's", "output": "⠉⠪⠓⠯⠄⠎" }, { "input": "cowhands", "output": "⠉⠪⠓⠯⠎" }, { "input": "cowherd", "output": "⠉⠪⠓⠻⠙" }, { "input": "cowherd's", "output": "⠉⠪⠓⠻⠙⠄⠎" }, { "input": "cowherds", "output": "⠉⠪⠓⠻⠙⠎" }, { "input": "cowhide", "output": "⠉⠪⠓⠊⠙⠑" }, { "input": "cowhide's", "output": "⠉⠪⠓⠊⠙⠑⠄⠎" }, { "input": "cowhides", "output": "⠉⠪⠓⠊⠙⠑⠎" }, { "input": "cowing", "output": "⠉⠪⠌" }, { "input": "cowl", "output": "⠉⠪⠇" }, { "input": "cowl's", "output": "⠉⠪⠇⠄⠎" }, { "input": "cowlick", "output": "⠉⠪⠇⠊⠉⠅" }, { "input": "cowlick's", "output": "⠉⠪⠇⠊⠉⠅⠄⠎" }, { "input": "cowlicks", "output": "⠉⠪⠇⠊⠉⠅⠎" }, { "input": "cowling", "output": "⠉⠪⠇⠌" }, { "input": "cowling's", "output": "⠉⠪⠇⠌⠄⠎" }, { "input": "cowlings", "output": "⠉⠪⠇⠌⠎" }, { "input": "cowls", "output": "⠉⠪⠇⠎" }, { "input": "cowman", "output": "⠉⠪â â â " }, { "input": "cowman's", "output": "⠉⠪â â â â „â Ž" }, { "input": "cowmen", "output": "⠉⠪â â ¢" }, { "input": "coworker", "output": "⠉⠕â â ºâ »" }, { "input": "coworker's", "output": "⠉⠕â â ºâ »â „â Ž" }, { "input": "coworkers", "output": "⠉⠕â â ºâ »â Ž" }, { "input": "cowpoke", "output": "⠉⠪â â •â …â ‘" }, { "input": "cowpoke's", "output": "⠉⠪â â •â …â ‘â „â Ž" }, { "input": "cowpokes", "output": "⠉⠪â â •â …â ‘â Ž" }, { "input": "cowpox", "output": "⠉⠪â â •â ­" }, { "input": "cowpox's", "output": "⠉⠪â â •â ­â „â Ž" }, { "input": "cowpuncher", "output": "⠉⠪â â ¥â â ¡â »" }, { "input": "cowpuncher's", "output": "⠉⠪â â ¥â â ¡â »â „â Ž" }, { "input": "cowpunchers", "output": "⠉⠪â â ¥â â ¡â »â Ž" }, { "input": "cows", "output": "⠉⠪⠎" }, { "input": "cowslip", "output": "⠉⠪⠎⠇⠊â " }, { "input": "cowslip's", "output": "⠉⠪⠎⠇⠊â â „â Ž" }, { "input": "cowslips", "output": "⠉⠪⠎⠇⠊â â Ž" }, { "input": "cox", "output": "⠉⠕⠭" }, { "input": "coxcomb", "output": "⠉⠕⠭⠉⠕â â ƒ" }, { "input": "coxcomb's", "output": "⠉⠕⠭⠉⠕â â ƒâ „â Ž" }, { "input": "coxcombs", "output": "⠉⠕⠭⠉⠕â â ƒâ Ž" }, { "input": "coxswain", "output": "⠉⠕⠭⠎⠺â â ”" }, { "input": "coxswain's", "output": "⠉⠕⠭⠎⠺â â ”â „â Ž" }, { "input": "coxswains", "output": "⠉⠕⠭⠎⠺â â ”â Ž" }, { "input": "coy", "output": "⠉⠕⠽" }, { "input": "coyer", "output": "⠉⠕⠽⠻" }, { "input": "coyest", "output": "⠉⠕⠽⠑⠌" }, { "input": "coyly", "output": "⠉⠕⠽⠇⠽" }, { "input": "coyness", "output": "⠉⠕⠽⠰⠎" }, { "input": "coyness's", "output": "⠉⠕⠽⠰⠎⠄⠎" }, { "input": "coyote", "output": "⠉⠕⠽⠕⠞⠑" }, { "input": "coyote's", "output": "⠉⠕⠽⠕⠞⠑⠄⠎" }, { "input": "coyotes", "output": "⠉⠕⠽⠕⠞⠑⠎" }, { "input": "cozen", "output": "⠉⠕⠵⠢" }, { "input": "cozenage", "output": "⠉⠕⠵⠢â â ›â ‘" }, { "input": "cozenage's", "output": "⠉⠕⠵⠢â â ›â ‘â „â Ž" }, { "input": "cozened", "output": "⠉⠕⠵⠢⠫" }, { "input": "cozening", "output": "⠉⠕⠵⠢⠌" }, { "input": "cozens", "output": "⠉⠕⠵⠢⠎" }, { "input": "cozier", "output": "⠉⠕⠵⠊⠻" }, { "input": "cozies", "output": "⠉⠕⠵⠊⠑⠎" }, { "input": "coziest", "output": "⠉⠕⠵⠊⠑⠌" }, { "input": "cozily", "output": "⠉⠕⠵⠊⠇⠽" }, { "input": "coziness", "output": "⠉⠕⠵⠊⠰⠎" }, { "input": "coziness's", "output": "⠉⠕⠵⠊⠰⠎⠄⠎" }, { "input": "cozy", "output": "⠉⠕⠵⠽" }, { "input": "cozy's", "output": "⠉⠕⠵⠽⠄⠎" }, { "input": "crab", "output": "⠉⠗â â ƒ" }, { "input": "crab's", "output": "⠉⠗â â ƒâ „â Ž" }, { "input": "crabbed", "output": "⠉⠗â â †â «" }, { "input": "crabber", "output": "⠉⠗â â †â »" }, { "input": "crabber's", "output": "⠉⠗â â †â »â „â Ž" }, { "input": "crabbers", "output": "⠉⠗â â †â »â Ž" }, { "input": "crabbier", "output": "⠉⠗â â †â Šâ »" }, { "input": "crabbiest", "output": "⠉⠗â â †â Šâ ‘â Œ" }, { "input": "crabbily", "output": "⠉⠗â â †â Šâ ‡â ½" }, { "input": "crabbiness", "output": "⠉⠗â â †â Šâ °â Ž" }, { "input": "crabbiness's", "output": "⠉⠗â â †â Šâ °â Žâ „â Ž" }, { "input": "crabbing", "output": "⠉⠗â â †â Œ" }, { "input": "crabby", "output": "⠉⠗â â †â ½" }, { "input": "crabgrass's", "output": "⠉⠗â â ƒâ ›â —â â Žâ Žâ „â Ž" }, { "input": "crablike", "output": "⠉⠗â â ƒâ ‡â Šâ …â ‘" }, { "input": "crabs", "output": "⠉⠗â â ƒâ Ž" }, { "input": "crack", "output": "⠉⠗â â ‰â …" }, { "input": "crack's", "output": "⠉⠗â â ‰â …â „â Ž" }, { "input": "crackdown", "output": "⠉⠗â â ‰â …⠙⠪â " }, { "input": "crackdown's", "output": "⠉⠗â â ‰â …⠙⠪â â „â Ž" }, { "input": "crackdowns", "output": "⠉⠗â â ‰â …⠙⠪â â Ž" }, { "input": "cracked", "output": "⠉⠗â â ‰â …â «" }, { "input": "cracker", "output": "⠉⠗â â ‰â …â »" }, { "input": "cracker's", "output": "⠉⠗â â ‰â …⠻⠄⠎" }, { "input": "crackerjack", "output": "⠉⠗â â ‰â …⠻⠚â â ‰â …" }, { "input": "crackerjack's", "output": "⠉⠗â â ‰â …⠻⠚â â ‰â …â „â Ž" }, { "input": "crackerjacks", "output": "⠉⠗â â ‰â …⠻⠚â â ‰â …â Ž" }, { "input": "crackers", "output": "⠉⠗â â ‰â …⠻⠎" }, { "input": "crackhead", "output": "⠉⠗â â ‰â …â “â ‚â ™" }, { "input": "crackhead's", "output": "⠉⠗â â ‰â …⠓⠂⠙⠄⠎" }, { "input": "crackheads", "output": "⠉⠗â â ‰â …⠓⠂⠙⠎" }, { "input": "cracking", "output": "⠉⠗â â ‰â …â Œ" }, { "input": "crackle", "output": "⠉⠗â â ‰â …⠇⠑" }, { "input": "crackle's", "output": "⠉⠗â â ‰â …⠇⠑⠄⠎" }, { "input": "crackled", "output": "⠉⠗â â ‰â …⠇⠫" }, { "input": "crackles", "output": "⠉⠗â â ‰â …⠇⠑⠎" }, { "input": "cracklier", "output": "⠉⠗â â ‰â …⠇⠊⠻" }, { "input": "crackliest", "output": "⠉⠗â â ‰â …⠇⠊⠑⠌" }, { "input": "crackling", "output": "⠉⠗â â ‰â …⠇⠌" }, { "input": "crackly", "output": "⠉⠗â â ‰â …⠇⠽" }, { "input": "crackpot", "output": "⠉⠗â â ‰â …â â •â ž" }, { "input": "crackpot's", "output": "⠉⠗â â ‰â …â â •â žâ „â Ž" }, { "input": "crackpots", "output": "⠉⠗â â ‰â …â â •â žâ Ž" }, { "input": "cracks", "output": "⠉⠗â â ‰â …â Ž" }, { "input": "crackup", "output": "⠉⠗â â ‰â …â ¥â " }, { "input": "crackup's", "output": "⠉⠗â â ‰â …â ¥â â „â Ž" }, { "input": "crackups", "output": "⠉⠗â â ‰â …â ¥â â Ž" }, { "input": "cradle", "output": "⠉⠗â â ™â ‡â ‘" }, { "input": "cradle's", "output": "⠉⠗â â ™â ‡â ‘â „â Ž" }, { "input": "cradled", "output": "⠉⠗â â ™â ‡â «" }, { "input": "cradles", "output": "⠉⠗â â ™â ‡â ‘â Ž" }, { "input": "cradling", "output": "⠉⠗â â ™â ‡â Œ" }, { "input": "craft", "output": "⠉⠗â â ‹â ž" }, { "input": "craft's", "output": "⠉⠗â â ‹â žâ „â Ž" }, { "input": "crafted", "output": "⠉⠗â â ‹â žâ «" }, { "input": "craftier", "output": "⠉⠗â â ‹â žâ Šâ »" }, { "input": "craftiest", "output": "⠉⠗â â ‹â žâ Šâ ‘â Œ" }, { "input": "craftily", "output": "⠉⠗â â ‹â žâ Šâ ‡â ½" }, { "input": "craftiness", "output": "⠉⠗â â ‹â žâ Šâ °â Ž" }, { "input": "craftiness's", "output": "⠉⠗â â ‹â žâ Šâ °â Žâ „â Ž" }, { "input": "crafting", "output": "⠉⠗â â ‹â žâ Œ" }, { "input": "crafts", "output": "⠉⠗â â ‹â žâ Ž" }, { "input": "craftsman", "output": "⠉⠗â â ‹â žâ Žâ â â " }, { "input": "craftsman's", "output": "⠉⠗â â ‹â žâ Žâ â â â „â Ž" }, { "input": "craftsmanship", "output": "⠉⠗â â ‹â žâ Žâ â â â ©â Šâ " }, { "input": "craftsmanship's", "output": "⠉⠗â â ‹â žâ Žâ â â â ©â Šâ â „â Ž" }, { "input": "craftsmen", "output": "⠉⠗â â ‹â žâ Žâ â ¢" }, { "input": "crafty", "output": "⠉⠗â â ‹â žâ ½" }, { "input": "crag", "output": "⠉⠗â â ›" }, { "input": "crag's", "output": "⠉⠗â â ›â „â Ž" }, { "input": "craggier", "output": "⠉⠗â â ¶â Šâ »" }, { "input": "craggiest", "output": "⠉⠗â â ¶â Šâ ‘â Œ" }, { "input": "cragginess", "output": "⠉⠗â â ¶â Šâ °â Ž" }, { "input": "cragginess's", "output": "⠉⠗â â ¶â Šâ °â Žâ „â Ž" }, { "input": "craggy", "output": "⠉⠗â â ¶â ½" }, { "input": "crags", "output": "⠉⠗â â ›â Ž" }, { "input": "cram", "output": "⠉⠗â â " }, { "input": "crammed", "output": "⠉⠗â â â â «" }, { "input": "cramming", "output": "⠉⠗â â â â Œ" }, { "input": "cramp", "output": "⠉⠗â â â " }, { "input": "cramp's", "output": "⠉⠗â â â â „â Ž" }, { "input": "cramped", "output": "⠉⠗â â â â «" }, { "input": "cramping", "output": "⠉⠗â â â â Œ" }, { "input": "cramping's", "output": "⠉⠗â â â â Œâ „â Ž" }, { "input": "cramps", "output": "⠉⠗â â â â Ž" }, { "input": "crams", "output": "⠉⠗â â â Ž" }, { "input": "cranberries", "output": "⠉⠗â â â ƒâ »â —â Šâ ‘â Ž" }, { "input": "cranberry", "output": "⠉⠗â â â ƒâ »â —â ½" }, { "input": "cranberry's", "output": "⠉⠗â â â ƒâ »â —⠽⠄⠎" }, { "input": "crane", "output": "⠉⠗â â â ‘" }, { "input": "crane's", "output": "⠉⠗â â â ‘â „â Ž" }, { "input": "craned", "output": "⠉⠗â â â «" }, { "input": "cranes", "output": "⠉⠗â â â ‘â Ž" }, { "input": "cranial", "output": "⠉⠗â â â Šâ â ‡" }, { "input": "craning", "output": "⠉⠗â â â Œ" }, { "input": "cranium", "output": "⠉⠗â â â Šâ ¥â " }, { "input": "cranium's", "output": "⠉⠗â â â Šâ ¥â â „â Ž" }, { "input": "craniums", "output": "⠉⠗â â â Šâ ¥â â Ž" }, { "input": "crank", "output": "⠉⠗â â â …" }, { "input": "crank's", "output": "⠉⠗â â â …â „â Ž" }, { "input": "crankcase", "output": "⠉⠗â â â …â ‰â â Žâ ‘" }, { "input": "crankcase's", "output": "⠉⠗â â â …â ‰â â Žâ ‘â „â Ž" }, { "input": "crankcases", "output": "⠉⠗â â â …â ‰â â Žâ ‘â Ž" }, { "input": "cranked", "output": "⠉⠗â â â …â «" }, { "input": "crankier", "output": "⠉⠗â â â …â Šâ »" }, { "input": "crankiest", "output": "⠉⠗â â â …â Šâ ‘â Œ" }, { "input": "crankily", "output": "⠉⠗â â â …⠊⠇⠽" }, { "input": "crankiness", "output": "⠉⠗â â â …â Šâ °â Ž" }, { "input": "crankiness's", "output": "⠉⠗â â â …â Šâ °â Žâ „â Ž" }, { "input": "cranking", "output": "⠉⠗â â â …â Œ" }, { "input": "cranks", "output": "⠉⠗â â â …â Ž" }, { "input": "crankshaft", "output": "⠉⠗â â â …â ©â â ‹â ž" }, { "input": "crankshaft's", "output": "⠉⠗â â â …â ©â â ‹â žâ „â Ž" }, { "input": "crankshafts", "output": "⠉⠗â â â …â ©â â ‹â žâ Ž" }, { "input": "cranky", "output": "⠉⠗â â â …â ½" }, { "input": "crannied", "output": "⠉⠗â â â â Šâ «" }, { "input": "crannies", "output": "⠉⠗â â â â Šâ ‘â Ž" }, { "input": "cranny", "output": "⠉⠗â â â â ½" }, { "input": "cranny's", "output": "⠉⠗â â â â ½â „â Ž" }, { "input": "crap", "output": "⠉⠗â â " }, { "input": "crap's", "output": "⠉⠗â â â „â Ž" }, { "input": "crape", "output": "⠉⠗â â â ‘" }, { "input": "crape's", "output": "⠉⠗â â â ‘â „â Ž" }, { "input": "crapes", "output": "⠉⠗â â â ‘â Ž" }, { "input": "crapped", "output": "⠉⠗â â â â «" }, { "input": "crappie", "output": "⠉⠗â â â â Šâ ‘" }, { "input": "crappie's", "output": "⠉⠗â â â â Šâ ‘â „â Ž" }, { "input": "crappier", "output": "⠉⠗â â â â Šâ »" }, { "input": "crappies", "output": "⠉⠗â â â â Šâ ‘â Ž" }, { "input": "crappiest", "output": "⠉⠗â â â â Šâ ‘â Œ" }, { "input": "crapping", "output": "⠉⠗â â â â Œ" }, { "input": "crappy", "output": "⠉⠗â â â â ½" }, { "input": "craps", "output": "⠉⠗â â â Ž" }, { "input": "craps's", "output": "⠉⠗â â â Žâ „â Ž" }, { "input": "crapshooter", "output": "⠉⠗â â â ©â •â •â žâ »" }, { "input": "crapshooter's", "output": "⠉⠗â â â ©â •⠕⠞⠻⠄⠎" }, { "input": "crapshooters", "output": "⠉⠗â â â ©â •⠕⠞⠻⠎" }, { "input": "crash", "output": "⠉⠗â â ©" }, { "input": "crash's", "output": "⠉⠗â â ©â „â Ž" }, { "input": "crashed", "output": "⠉⠗â â ©â «" }, { "input": "crashes", "output": "⠉⠗â â ©â ‘â Ž" }, { "input": "crashing", "output": "⠉⠗â â ©â Œ" }, { "input": "crass", "output": "⠉⠗â â Žâ Ž" }, { "input": "crasser", "output": "⠉⠗â â Žâ Žâ »" }, { "input": "crassest", "output": "⠉⠗â â Žâ Žâ ‘â Œ" }, { "input": "crassly", "output": "⠉⠗â â Žâ Žâ ‡â ½" }, { "input": "crassness", "output": "⠉⠗â â Žâ Žâ °â Ž" }, { "input": "crassness's", "output": "⠉⠗â â Žâ Žâ °â Žâ „â Ž" }, { "input": "crate", "output": "⠉⠗â â žâ ‘" }, { "input": "crate's", "output": "⠉⠗â â žâ ‘â „â Ž" }, { "input": "crated", "output": "⠉⠗â â žâ «" }, { "input": "crater", "output": "⠉⠗â â žâ »" }, { "input": "crater's", "output": "⠉⠗â â žâ »â „â Ž" }, { "input": "cratered", "output": "⠉⠗â â žâ »â «" }, { "input": "cratering", "output": "⠉⠗â â žâ »â Œ" }, { "input": "craters", "output": "⠉⠗â â žâ »â Ž" }, { "input": "crates", "output": "⠉⠗â â žâ ‘â Ž" }, { "input": "crating", "output": "⠉⠗â â žâ Œ" }, { "input": "cravat", "output": "⠉⠗â â §â â ž" }, { "input": "cravat's", "output": "⠉⠗â â §â â žâ „â Ž" }, { "input": "cravats", "output": "⠉⠗â â §â â žâ Ž" }, { "input": "crave", "output": "⠉⠗â â §â ‘" }, { "input": "craved", "output": "⠉⠗â â §â «" }, { "input": "craven", "output": "⠉⠗â â §â ¢" }, { "input": "craven's", "output": "⠉⠗â â §â ¢â „â Ž" }, { "input": "cravenly", "output": "⠉⠗â â §â ¢â ‡â ½" }, { "input": "cravenness", "output": "⠉⠗â â §â ¢â °â Ž" }, { "input": "cravenness's", "output": "⠉⠗â â §â ¢â °â Žâ „â Ž" }, { "input": "cravens", "output": "⠉⠗â â §â ¢â Ž" }, { "input": "craves", "output": "⠉⠗â â §â ‘â Ž" }, { "input": "craving", "output": "⠉⠗â â §â Œ" }, { "input": "craving's", "output": "⠉⠗â â §â Œâ „â Ž" }, { "input": "cravings", "output": "⠉⠗â â §â Œâ Ž" }, { "input": "craw", "output": "⠉⠗â â º" }, { "input": "craw's", "output": "⠉⠗â â ºâ „â Ž" }, { "input": "crawdad", "output": "⠉⠗â â ºâ ™â â ™" }, { "input": "crawdad's", "output": "⠉⠗â â ºâ ™â â ™â „â Ž" }, { "input": "crawdads", "output": "⠉⠗â â ºâ ™â â ™â Ž" }, { "input": "crawl", "output": "⠉⠗â â ºâ ‡" }, { "input": "crawl's", "output": "⠉⠗â â ºâ ‡â „â Ž" }, { "input": "crawled", "output": "⠉⠗â â ºâ ‡â «" }, { "input": "crawlier", "output": "⠉⠗â â ºâ ‡â Šâ »" }, { "input": "crawlies", "output": "⠉⠗â â ºâ ‡â Šâ ‘â Ž" }, { "input": "crawliest", "output": "⠉⠗â â ºâ ‡â Šâ ‘â Œ" }, { "input": "crawling", "output": "⠉⠗â â ºâ ‡â Œ" }, { "input": "crawls", "output": "⠉⠗â â ºâ ‡â Ž" }, { "input": "crawlspace", "output": "⠉⠗â â ºâ ‡â Žâ â â ‰â ‘" }, { "input": "crawlspace's", "output": "⠉⠗â â ºâ ‡â Žâ â â ‰â ‘â „â Ž" }, { "input": "crawlspaces", "output": "⠉⠗â â ºâ ‡â Žâ â â ‰â ‘â Ž" }, { "input": "crawly", "output": "⠉⠗â â ºâ ‡â ½" }, { "input": "crawly's", "output": "⠉⠗â â ºâ ‡â ½â „â Ž" }, { "input": "craws", "output": "⠉⠗â â ºâ Ž" }, { "input": "crayfish", "output": "⠉⠗â â ½â ‹â Šâ ©" }, { "input": "crayfish's", "output": "⠉⠗â â ½â ‹â Šâ ©â „â Ž" }, { "input": "crayfishes", "output": "⠉⠗â â ½â ‹â Šâ ©â ‘â Ž" }, { "input": "crayon", "output": "⠉⠗â â ½â •â " }, { "input": "crayon's", "output": "⠉⠗â â ½â •â â „â Ž" }, { "input": "crayoned", "output": "⠉⠗â â ½â •â â «" }, { "input": "crayoning", "output": "⠉⠗â â ½â •â â Œ" }, { "input": "crayons", "output": "⠉⠗â â ½â •â â Ž" }, { "input": "craze", "output": "⠉⠗â â µâ ‘" }, { "input": "craze's", "output": "⠉⠗â â µâ ‘â „â Ž" }, { "input": "crazed", "output": "⠉⠗â â µâ «" }, { "input": "crazes", "output": "⠉⠗â â µâ ‘â Ž" }, { "input": "crazier", "output": "⠉⠗â â µâ Šâ »" }, { "input": "crazies", "output": "⠉⠗â â µâ Šâ ‘â Ž" }, { "input": "craziest", "output": "⠉⠗â â µâ Šâ ‘â Œ" }, { "input": "crazily", "output": "⠉⠗â â µâ Šâ ‡â ½" }, { "input": "craziness", "output": "⠉⠗â â µâ Šâ °â Ž" }, { "input": "craziness's", "output": "⠉⠗â â µâ Šâ °â Žâ „â Ž" }, { "input": "crazing", "output": "⠉⠗â â µâ Œ" }, { "input": "crazy", "output": "⠉⠗â â µâ ½" }, { "input": "crazy's", "output": "⠉⠗â â µâ ½â „â Ž" }, { "input": "creak", "output": "⠉⠗⠂⠅" }, { "input": "creak's", "output": "⠉⠗⠂⠅⠄⠎" }, { "input": "creaked", "output": "⠉⠗⠂⠅⠫" }, { "input": "creakier", "output": "⠉⠗⠂⠅⠊⠻" }, { "input": "creakiest", "output": "⠉⠗⠂⠅⠊⠑⠌" }, { "input": "creakiness's", "output": "⠉⠗⠂⠅⠊⠰⠎⠄⠎" }, { "input": "creaking", "output": "⠉⠗⠂⠅⠌" }, { "input": "creaks", "output": "⠉⠗⠂⠅⠎" }, { "input": "creaky", "output": "⠉⠗⠂⠅⠽" }, { "input": "cream", "output": "⠉⠗⠂â " }, { "input": "cream's", "output": "⠉⠗⠂â â „â Ž" }, { "input": "creamed", "output": "⠉⠗⠂â â «" }, { "input": "creamer", "output": "⠉⠗⠂â â »" }, { "input": "creamer's", "output": "⠉⠗⠂â â »â „â Ž" }, { "input": "creameries", "output": "⠉⠗⠂â â »â Šâ ‘â Ž" }, { "input": "creamers", "output": "⠉⠗⠂â â »â Ž" }, { "input": "creamery", "output": "⠉⠗⠂â â »â ½" }, { "input": "creamery's", "output": "⠉⠗⠂â â »â ½â „â Ž" }, { "input": "creamier", "output": "⠉⠗⠂â â Šâ »" }, { "input": "creamiest", "output": "⠉⠗⠂â â Šâ ‘â Œ" }, { "input": "creamily", "output": "⠉⠗⠂â â Šâ ‡â ½" }, { "input": "creaminess", "output": "⠉⠗⠂â â Šâ °â Ž" }, { "input": "creaminess's", "output": "⠉⠗⠂â â Šâ °â Žâ „â Ž" }, { "input": "creaming", "output": "⠉⠗⠂â â Œ" }, { "input": "creams", "output": "⠉⠗⠂â â Ž" }, { "input": "creamy", "output": "⠉⠗⠂â â ½" }, { "input": "crease", "output": "⠉⠗⠂⠎⠑" }, { "input": "crease's", "output": "⠉⠗⠂⠎⠑⠄⠎" }, { "input": "creased", "output": "⠉⠗⠂⠎⠫" }, { "input": "creases", "output": "⠉⠗⠂⠎⠑⠎" }, { "input": "creasing", "output": "⠉⠗⠂⠎⠌" }, { "input": "create", "output": "⠉⠗⠂⠞⠑" }, { "input": "created", "output": "⠉⠗⠂⠞⠫" }, { "input": "creates", "output": "⠉⠗⠂⠞⠑⠎" }, { "input": "creating", "output": "⠉⠗⠂⠞⠌" }, { "input": "creation", "output": "⠉⠗⠑⠠â " }, { "input": "creation's", "output": "⠉⠗⠑⠠â â „â Ž" }, { "input": "creationism", "output": "⠉⠗⠑⠠â â Šâ Žâ " }, { "input": "creationism's", "output": "⠉⠗⠑⠠â â Šâ Žâ â „â Ž" }, { "input": "creations", "output": "⠉⠗⠑⠠â â Ž" }, { "input": "creative", "output": "⠉⠗⠂⠞⠊⠧⠑" }, { "input": "creative's", "output": "⠉⠗⠂⠞⠊⠧⠑⠄⠎" }, { "input": "creatively", "output": "⠉⠗⠂⠞⠊⠧⠑⠇⠽" }, { "input": "creativeness", "output": "⠉⠗⠂⠞⠊⠧⠑⠰⠎" }, { "input": "creativeness's", "output": "⠉⠗⠂⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "creatives", "output": "⠉⠗⠂⠞⠊⠧⠑⠎" }, { "input": "creativity", "output": "⠉⠗⠂⠞⠊⠧⠰⠽" }, { "input": "creativity's", "output": "⠉⠗⠂⠞⠊⠧⠰⠽⠄⠎" }, { "input": "creator", "output": "⠉⠗⠂⠞⠕⠗" }, { "input": "creator's", "output": "⠉⠗⠂⠞⠕⠗⠄⠎" }, { "input": "creators", "output": "⠉⠗⠂⠞⠕⠗⠎" }, { "input": "creature", "output": "⠉⠗⠂⠞⠥⠗⠑" }, { "input": "creature's", "output": "⠉⠗⠂⠞⠥⠗⠑⠄⠎" }, { "input": "creatures", "output": "⠉⠗⠂⠞⠥⠗⠑⠎" }, { "input": "credence", "output": "⠉⠗⠫⠰⠑" }, { "input": "credence's", "output": "⠉⠗⠫⠰⠑⠄⠎" }, { "input": "credential", "output": "⠉⠗⠫⠢⠞⠊â â ‡" }, { "input": "credential's", "output": "⠉⠗⠫⠢⠞⠊â â ‡â „â Ž" }, { "input": "credentials", "output": "⠉⠗⠫⠢⠞⠊â â ‡â Ž" }, { "input": "credenza", "output": "⠉⠗⠫⠢⠵â " }, { "input": "credenza's", "output": "⠉⠗⠫⠢⠵â â „â Ž" }, { "input": "credenzas", "output": "⠉⠗⠫⠢⠵â â Ž" }, { "input": "credibility", "output": "⠉⠗⠫⠊⠃⠊⠇⠰⠽" }, { "input": "credibility's", "output": "⠉⠗⠫⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "credible", "output": "⠉⠗⠫⠊⠼" }, { "input": "credibly", "output": "⠉⠗⠫⠊⠃⠇⠽" }, { "input": "credit", "output": "⠉⠗⠫⠊⠞" }, { "input": "credit's", "output": "⠉⠗⠫⠊⠞⠄⠎" }, { "input": "creditable", "output": "⠉⠗⠫⠊⠞â â ¼" }, { "input": "creditably", "output": "⠉⠗⠫⠊⠞â â ƒâ ‡â ½" }, { "input": "credited", "output": "⠉⠗⠫⠊⠞⠫" }, { "input": "crediting", "output": "⠉⠗⠫⠊⠞⠌" }, { "input": "creditor", "output": "⠉⠗⠫⠊⠞⠕⠗" }, { "input": "creditor's", "output": "⠉⠗⠫⠊⠞⠕⠗⠄⠎" }, { "input": "creditors", "output": "⠉⠗⠫⠊⠞⠕⠗⠎" }, { "input": "credits", "output": "⠉⠗⠫⠊⠞⠎" }, { "input": "credo", "output": "⠉⠗⠫⠕" }, { "input": "credo's", "output": "⠉⠗⠫⠕⠄⠎" }, { "input": "credos", "output": "⠉⠗⠫⠕⠎" }, { "input": "credulity", "output": "⠉⠗⠫⠥⠇⠰⠽" }, { "input": "credulity's", "output": "⠉⠗⠫⠥⠇⠰⠽⠄⠎" }, { "input": "credulous", "output": "⠉⠗⠫⠥⠇⠳⠎" }, { "input": "credulously", "output": "⠉⠗⠫⠥⠇⠳⠎⠇⠽" }, { "input": "credulousness's", "output": "⠉⠗⠫⠥⠇⠳⠎⠰⠎⠄⠎" }, { "input": "creed", "output": "⠉⠗⠑⠫" }, { "input": "creed's", "output": "⠉⠗⠑⠫⠄⠎" }, { "input": "creeds", "output": "⠉⠗⠑⠫⠎" }, { "input": "creek", "output": "⠉⠗⠑⠑⠅" }, { "input": "creek's", "output": "⠉⠗⠑⠑⠅⠄⠎" }, { "input": "creeks", "output": "⠉⠗⠑⠑⠅⠎" }, { "input": "creel", "output": "⠉⠗⠑⠑⠇" }, { "input": "creel's", "output": "⠉⠗⠑⠑⠇⠄⠎" }, { "input": "creels", "output": "⠉⠗⠑⠑⠇⠎" }, { "input": "creep", "output": "⠉⠗⠑⠑â " }, { "input": "creep's", "output": "⠉⠗⠑⠑â â „â Ž" }, { "input": "creeper", "output": "⠉⠗⠑⠑â â »" }, { "input": "creeper's", "output": "⠉⠗⠑⠑â â »â „â Ž" }, { "input": "creepers", "output": "⠉⠗⠑⠑â â »â Ž" }, { "input": "creepier", "output": "⠉⠗⠑⠑â â Šâ »" }, { "input": "creepiest", "output": "⠉⠗⠑⠑â â Šâ ‘â Œ" }, { "input": "creepily", "output": "⠉⠗⠑⠑â â Šâ ‡â ½" }, { "input": "creepiness", "output": "⠉⠗⠑⠑â â Šâ °â Ž" }, { "input": "creepiness's", "output": "⠉⠗⠑⠑â â Šâ °â Žâ „â Ž" }, { "input": "creeping", "output": "⠉⠗⠑⠑â â Œ" }, { "input": "creeps", "output": "⠉⠗⠑⠑â â Ž" }, { "input": "creepy", "output": "⠉⠗⠑⠑â â ½" }, { "input": "cremains", "output": "⠉⠗⠑â â â ”â Ž" }, { "input": "cremains's", "output": "⠉⠗⠑â â â ”â Žâ „â Ž" }, { "input": "cremate", "output": "⠉⠗⠑â â â žâ ‘" }, { "input": "cremated", "output": "⠉⠗⠑â â â žâ «" }, { "input": "cremates", "output": "⠉⠗⠑â â â žâ ‘â Ž" }, { "input": "cremating", "output": "⠉⠗⠑â â â žâ Œ" }, { "input": "cremation", "output": "⠉⠗⠑â â  â " }, { "input": "cremation's", "output": "⠉⠗⠑â â  â â „â Ž" }, { "input": "cremations", "output": "⠉⠗⠑â â  â â Ž" }, { "input": "crematoria", "output": "⠉⠗⠑â â â žâ •â —â Šâ " }, { "input": "crematories", "output": "⠉⠗⠑â â â žâ •â —â Šâ ‘â Ž" }, { "input": "crematorium", "output": "⠉⠗⠑â â â žâ •â —â Šâ ¥â " }, { "input": "crematorium's", "output": "⠉⠗⠑â â â žâ •â —â Šâ ¥â â „â Ž" }, { "input": "crematoriums", "output": "⠉⠗⠑â â â žâ •â —â Šâ ¥â â Ž" }, { "input": "crematory", "output": "⠉⠗⠑â â â žâ •â —â ½" }, { "input": "crematory's", "output": "⠉⠗⠑â â â žâ •⠗⠽⠄⠎" }, { "input": "creme", "output": "⠉⠗⠑â â ‘" }, { "input": "creme's", "output": "⠉⠗⠑â â ‘â „â Ž" }, { "input": "cremes", "output": "⠉⠗⠑â â ‘â Ž" }, { "input": "crenelate", "output": "⠉⠗⠢⠑⠇â â žâ ‘" }, { "input": "crenelated", "output": "⠉⠗⠢⠑⠇â â žâ «" }, { "input": "crenelates", "output": "⠉⠗⠢⠑⠇â â žâ ‘â Ž" }, { "input": "crenelating", "output": "⠉⠗⠢⠑⠇â â žâ Œ" }, { "input": "crenelation", "output": "⠉⠗⠢⠑⠇⠠â " }, { "input": "crenelation's", "output": "⠉⠗⠢⠑⠇⠠â â „â Ž" }, { "input": "crenelations", "output": "⠉⠗⠢⠑⠇⠠â â Ž" }, { "input": "creole", "output": "⠉⠗⠑⠕⠇⠑" }, { "input": "creole's", "output": "⠉⠗⠑⠕⠇⠑⠄⠎" }, { "input": "creoles", "output": "⠉⠗⠑⠕⠇⠑⠎" }, { "input": "creosote", "output": "⠉⠗⠑⠕⠎⠕⠞⠑" }, { "input": "creosote's", "output": "⠉⠗⠑⠕⠎⠕⠞⠑⠄⠎" }, { "input": "creosoted", "output": "⠉⠗⠑⠕⠎⠕⠞⠫" }, { "input": "creosotes", "output": "⠉⠗⠑⠕⠎⠕⠞⠑⠎" }, { "input": "creosoting", "output": "⠉⠗⠑⠕⠎⠕⠞⠌" }, { "input": "crepe", "output": "⠉⠗⠑â â ‘" }, { "input": "crepe's", "output": "⠉⠗⠑â â ‘â „â Ž" }, { "input": "crepes", "output": "⠉⠗⠑â â ‘â Ž" }, { "input": "crept", "output": "⠉⠗⠑â â ž" }, { "input": "crescendo", "output": "⠉⠗⠑⠎⠉⠢⠙⠕" }, { "input": "crescendo's", "output": "⠉⠗⠑⠎⠉⠢⠙⠕⠄⠎" }, { "input": "crescendos", "output": "⠉⠗⠑⠎⠉⠢⠙⠕⠎" }, { "input": "crescent", "output": "⠉⠗⠑⠎⠉⠢⠞" }, { "input": "crescent's", "output": "⠉⠗⠑⠎⠉⠢⠞⠄⠎" }, { "input": "crescents", "output": "⠉⠗⠑⠎⠉⠢⠞⠎" }, { "input": "cress", "output": "⠉⠗⠑⠎⠎" }, { "input": "cress's", "output": "⠉⠗⠑⠎⠎⠄⠎" }, { "input": "crest", "output": "⠉⠗⠑⠌" }, { "input": "crest's", "output": "⠉⠗⠑⠌⠄⠎" }, { "input": "crested", "output": "⠉⠗⠑⠌⠫" }, { "input": "crestfallen", "output": "⠉⠗⠑⠌⠋â â ‡â ‡â ¢" }, { "input": "cresting", "output": "⠉⠗⠑⠌⠌" }, { "input": "crestless", "output": "⠉⠗⠑⠌⠨⠎" }, { "input": "crests", "output": "⠉⠗⠑⠌⠎" }, { "input": "cretaceous", "output": "⠉⠗⠑⠞â â ‰â ‘⠳⠎" }, { "input": "cretin", "output": "⠉⠗⠑⠞⠔" }, { "input": "cretin's", "output": "⠉⠗⠑⠞⠔⠄⠎" }, { "input": "cretinism", "output": "⠉⠗⠑⠞⠔⠊⠎â " }, { "input": "cretinism's", "output": "⠉⠗⠑⠞⠔⠊⠎â â „â Ž" }, { "input": "cretinous", "output": "⠉⠗⠑⠞⠔⠳⠎" }, { "input": "cretins", "output": "⠉⠗⠑⠞⠔⠎" }, { "input": "cretonne", "output": "⠉⠗⠑⠞⠕â â â ‘" }, { "input": "cretonne's", "output": "⠉⠗⠑⠞⠕â â â ‘â „â Ž" }, { "input": "crevasse", "output": "⠉⠗⠑⠧â â Žâ Žâ ‘" }, { "input": "crevasse's", "output": "⠉⠗⠑⠧â â Žâ Žâ ‘â „â Ž" }, { "input": "crevasses", "output": "⠉⠗⠑⠧â â Žâ Žâ ‘â Ž" }, { "input": "crevice", "output": "⠉⠗⠑⠧⠊⠉⠑" }, { "input": "crevice's", "output": "⠉⠗⠑⠧⠊⠉⠑⠄⠎" }, { "input": "crevices", "output": "⠉⠗⠑⠧⠊⠉⠑⠎" }, { "input": "crew", "output": "⠉⠗⠑⠺" }, { "input": "crew's", "output": "⠉⠗⠑⠺⠄⠎" }, { "input": "crewed", "output": "⠉⠗⠑⠺⠫" }, { "input": "crewel", "output": "⠉⠗⠑⠺⠑⠇" }, { "input": "crewel's", "output": "⠉⠗⠑⠺⠑⠇⠄⠎" }, { "input": "crewelwork", "output": "⠉⠗⠑⠺⠑⠇â â º" }, { "input": "crewelwork's", "output": "⠉⠗⠑⠺⠑⠇â â ºâ „â Ž" }, { "input": "crewing", "output": "⠉⠗⠑⠺⠌" }, { "input": "crewman", "output": "⠉⠗⠑⠺â â â " }, { "input": "crewman's", "output": "⠉⠗⠑⠺â â â â „â Ž" }, { "input": "crewmen", "output": "⠉⠗⠑⠺â â ¢" }, { "input": "crews", "output": "⠉⠗⠑⠺⠎" }, { "input": "crib", "output": "⠉⠗⠊⠃" }, { "input": "crib's", "output": "⠉⠗⠊⠃⠄⠎" }, { "input": "cribbage", "output": "⠉⠗⠊⠆â â ›â ‘" }, { "input": "cribbage's", "output": "⠉⠗⠊⠆â â ›â ‘â „â Ž" }, { "input": "cribbed", "output": "⠉⠗⠊⠆⠫" }, { "input": "cribber", "output": "⠉⠗⠊⠆⠻" }, { "input": "cribber's", "output": "⠉⠗⠊⠆⠻⠄⠎" }, { "input": "cribbers", "output": "⠉⠗⠊⠆⠻⠎" }, { "input": "cribbing", "output": "⠉⠗⠊⠆⠌" }, { "input": "cribs", "output": "⠉⠗⠊⠃⠎" }, { "input": "crick", "output": "⠉⠗⠊⠉⠅" }, { "input": "crick's", "output": "⠉⠗⠊⠉⠅⠄⠎" }, { "input": "cricked", "output": "⠉⠗⠊⠉⠅⠫" }, { "input": "cricket", "output": "⠉⠗⠊⠉⠅⠑⠞" }, { "input": "cricket's", "output": "⠉⠗⠊⠉⠅⠑⠞⠄⠎" }, { "input": "cricketer", "output": "⠉⠗⠊⠉⠅⠑⠞⠻" }, { "input": "cricketer's", "output": "⠉⠗⠊⠉⠅⠑⠞⠻⠄⠎" }, { "input": "cricketers", "output": "⠉⠗⠊⠉⠅⠑⠞⠻⠎" }, { "input": "crickets", "output": "⠉⠗⠊⠉⠅⠑⠞⠎" }, { "input": "cricking", "output": "⠉⠗⠊⠉⠅⠌" }, { "input": "cricks", "output": "⠉⠗⠊⠉⠅⠎" }, { "input": "cried", "output": "⠉⠗⠊⠫" }, { "input": "crier", "output": "⠉⠗⠊⠻" }, { "input": "crier's", "output": "⠉⠗⠊⠻⠄⠎" }, { "input": "criers", "output": "⠉⠗⠊⠻⠎" }, { "input": "cries", "output": "⠉⠗⠊⠑⠎" }, { "input": "crime", "output": "⠉⠗⠊â â ‘" }, { "input": "crime's", "output": "⠉⠗⠊â â ‘â „â Ž" }, { "input": "crimes", "output": "⠉⠗⠊â â ‘â Ž" }, { "input": "criminal", "output": "⠉⠗⠊â â ”â â ‡" }, { "input": "criminal's", "output": "⠉⠗⠊â â ”â â ‡â „â Ž" }, { "input": "criminality's", "output": "⠉⠗⠊â â ”â â ‡â °â ½â „â Ž" }, { "input": "criminalize", "output": "⠉⠗⠊â â ”â â ‡â Šâ µâ ‘" }, { "input": "criminalized", "output": "⠉⠗⠊â â ”â â ‡â Šâ µâ «" }, { "input": "criminalizes", "output": "⠉⠗⠊â â ”â â ‡â Šâ µâ ‘â Ž" }, { "input": "criminalizing", "output": "⠉⠗⠊â â ”â â ‡â Šâ µâ Œ" }, { "input": "criminally", "output": "⠉⠗⠊â â ”â  â ½" }, { "input": "criminals", "output": "⠉⠗⠊â â ”â â ‡â Ž" }, { "input": "criminologist", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠊⠌" }, { "input": "criminologist's", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "criminologists", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠊⠌⠎" }, { "input": "criminology", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠽" }, { "input": "criminology's", "output": "⠉⠗⠊â â ”⠕⠇⠕⠛⠽⠄⠎" }, { "input": "crimp", "output": "⠉⠗⠊â â " }, { "input": "crimp's", "output": "⠉⠗⠊â â â „â Ž" }, { "input": "crimped", "output": "⠉⠗⠊â â â «" }, { "input": "crimping", "output": "⠉⠗⠊â â â Œ" }, { "input": "crimps", "output": "⠉⠗⠊â â â Ž" }, { "input": "crimson", "output": "⠉⠗⠊â â Žâ •â " }, { "input": "crimson's", "output": "⠉⠗⠊â â Žâ •â â „â Ž" }, { "input": "crimsoned", "output": "⠉⠗⠊â â Žâ •â â «" }, { "input": "crimsoning", "output": "⠉⠗⠊â â Žâ •â â Œ" }, { "input": "crimsons", "output": "⠉⠗⠊â â Žâ •â â Ž" }, { "input": "cringe", "output": "⠉⠗⠌⠑" }, { "input": "cringe's", "output": "⠉⠗⠌⠑⠄⠎" }, { "input": "cringed", "output": "⠉⠗⠌⠫" }, { "input": "cringes", "output": "⠉⠗⠌⠑⠎" }, { "input": "cringing", "output": "⠉⠗⠌⠌" }, { "input": "crinkle", "output": "⠉⠗⠔⠅⠇⠑" }, { "input": "crinkle's", "output": "⠉⠗⠔⠅⠇⠑⠄⠎" }, { "input": "crinkled", "output": "⠉⠗⠔⠅⠇⠫" }, { "input": "crinkles", "output": "⠉⠗⠔⠅⠇⠑⠎" }, { "input": "crinklier", "output": "⠉⠗⠔⠅⠇⠊⠻" }, { "input": "crinkliest", "output": "⠉⠗⠔⠅⠇⠊⠑⠌" }, { "input": "crinkling", "output": "⠉⠗⠔⠅⠇⠌" }, { "input": "crinkly", "output": "⠉⠗⠔⠅⠇⠽" }, { "input": "crinoline", "output": "⠉⠗⠔⠕⠇⠔⠑" }, { "input": "crinoline's", "output": "⠉⠗⠔⠕⠇⠔⠑⠄⠎" }, { "input": "crinolines", "output": "⠉⠗⠔⠕⠇⠔⠑⠎" }, { "input": "cripple", "output": "⠉⠗⠊â â â ‡â ‘" }, { "input": "cripple's", "output": "⠉⠗⠊â â â ‡â ‘â „â Ž" }, { "input": "crippled", "output": "⠉⠗⠊â â â ‡â «" }, { "input": "crippler", "output": "⠉⠗⠊â â â ‡â »" }, { "input": "crippler's", "output": "⠉⠗⠊â â â ‡â »â „â Ž" }, { "input": "cripplers", "output": "⠉⠗⠊â â â ‡â »â Ž" }, { "input": "cripples", "output": "⠉⠗⠊â â â ‡â ‘â Ž" }, { "input": "crippling", "output": "⠉⠗⠊â â â ‡â Œ" }, { "input": "crises", "output": "⠉⠗⠊⠎⠑⠎" }, { "input": "crisis", "output": "⠉⠗⠊⠎⠊⠎" }, { "input": "crisis's", "output": "⠉⠗⠊⠎⠊⠎⠄⠎" }, { "input": "crisp", "output": "⠉⠗⠊⠎â " }, { "input": "crisp's", "output": "⠉⠗⠊⠎â â „â Ž" }, { "input": "crisped", "output": "⠉⠗⠊⠎â â «" }, { "input": "crisper", "output": "⠉⠗⠊⠎â â »" }, { "input": "crispest", "output": "⠉⠗⠊⠎â â ‘â Œ" }, { "input": "crispier", "output": "⠉⠗⠊⠎â â Šâ »" }, { "input": "crispiest", "output": "⠉⠗⠊⠎â â Šâ ‘â Œ" }, { "input": "crispiness", "output": "⠉⠗⠊⠎â â Šâ °â Ž" }, { "input": "crispiness's", "output": "⠉⠗⠊⠎â â Šâ °â Žâ „â Ž" }, { "input": "crisping", "output": "⠉⠗⠊⠎â â Œ" }, { "input": "crisply", "output": "⠉⠗⠊⠎â â ‡â ½" }, { "input": "crispness", "output": "⠉⠗⠊⠎â â °â Ž" }, { "input": "crispness's", "output": "⠉⠗⠊⠎â â °â Žâ „â Ž" }, { "input": "crisps", "output": "⠉⠗⠊⠎â â Ž" }, { "input": "crispy", "output": "⠉⠗⠊⠎â â ½" }, { "input": "crisscross", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎" }, { "input": "crisscross's", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠄⠎" }, { "input": "crisscrossed", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠫" }, { "input": "crisscrosses", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠑⠎" }, { "input": "crisscrossing", "output": "⠉⠗⠊⠎⠎⠉⠗⠕⠎⠎⠌" }, { "input": "criteria", "output": "⠉⠗⠊⠞⠻⠊â " }, { "input": "criterion", "output": "⠉⠗⠊⠞⠻⠊⠕â " }, { "input": "criterion's", "output": "⠉⠗⠊⠞⠻⠊⠕â â „â Ž" }, { "input": "critic", "output": "⠉⠗⠊⠞⠊⠉" }, { "input": "critic's", "output": "⠉⠗⠊⠞⠊⠉⠄⠎" }, { "input": "critical", "output": "⠉⠗⠊⠞⠊⠉â â ‡" }, { "input": "critically", "output": "⠉⠗⠊⠞⠊⠉⠠⠽" }, { "input": "criticism", "output": "⠉⠗⠊⠞⠊⠉⠊⠎â " }, { "input": "criticism's", "output": "⠉⠗⠊⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "criticisms", "output": "⠉⠗⠊⠞⠊⠉⠊⠎â â Ž" }, { "input": "criticize", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠑" }, { "input": "criticized", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠫" }, { "input": "criticizer", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠻" }, { "input": "criticizer's", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠻⠄⠎" }, { "input": "criticizers", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠻⠎" }, { "input": "criticizes", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠑⠎" }, { "input": "criticizing", "output": "⠉⠗⠊⠞⠊⠉⠊⠵⠌" }, { "input": "critics", "output": "⠉⠗⠊⠞⠊⠉⠎" }, { "input": "critique", "output": "⠉⠗⠊⠞⠊⠟⠥⠑" }, { "input": "critique's", "output": "⠉⠗⠊⠞⠊⠟⠥⠑⠄⠎" }, { "input": "critiqued", "output": "⠉⠗⠊⠞⠊⠟⠥⠫" }, { "input": "critiques", "output": "⠉⠗⠊⠞⠊⠟⠥⠑⠎" }, { "input": "critiquing", "output": "⠉⠗⠊⠞⠊⠟⠥⠌" }, { "input": "critter", "output": "⠉⠗⠊⠞⠞⠻" }, { "input": "critter's", "output": "⠉⠗⠊⠞⠞⠻⠄⠎" }, { "input": "critters", "output": "⠉⠗⠊⠞⠞⠻⠎" }, { "input": "croak", "output": "⠉⠗⠕â â …" }, { "input": "croak's", "output": "⠉⠗⠕â â …â „â Ž" }, { "input": "croaked", "output": "⠉⠗⠕â â …â «" }, { "input": "croakier", "output": "⠉⠗⠕â â …â Šâ »" }, { "input": "croakiest", "output": "⠉⠗⠕â â …â Šâ ‘â Œ" }, { "input": "croaking", "output": "⠉⠗⠕â â …â Œ" }, { "input": "croaks", "output": "⠉⠗⠕â â …â Ž" }, { "input": "croaky", "output": "⠉⠗⠕â â …â ½" }, { "input": "crochet", "output": "⠉⠗⠕⠡⠑⠞" }, { "input": "crochet's", "output": "⠉⠗⠕⠡⠑⠞⠄⠎" }, { "input": "crocheted", "output": "⠉⠗⠕⠡⠑⠞⠫" }, { "input": "crocheter", "output": "⠉⠗⠕⠡⠑⠞⠻" }, { "input": "crocheter's", "output": "⠉⠗⠕⠡⠑⠞⠻⠄⠎" }, { "input": "crocheters", "output": "⠉⠗⠕⠡⠑⠞⠻⠎" }, { "input": "crocheting", "output": "⠉⠗⠕⠡⠑⠞⠌" }, { "input": "crocheting's", "output": "⠉⠗⠕⠡⠑⠞⠌⠄⠎" }, { "input": "crochets", "output": "⠉⠗⠕⠡⠑⠞⠎" }, { "input": "crock", "output": "⠉⠗⠕⠉⠅" }, { "input": "crock's", "output": "⠉⠗⠕⠉⠅⠄⠎" }, { "input": "crocked", "output": "⠉⠗⠕⠉⠅⠫" }, { "input": "crockery", "output": "⠉⠗⠕⠉⠅⠻⠽" }, { "input": "crockery's", "output": "⠉⠗⠕⠉⠅⠻⠽⠄⠎" }, { "input": "crocks", "output": "⠉⠗⠕⠉⠅⠎" }, { "input": "crocodile", "output": "⠉⠗⠕⠉⠕⠙⠊⠇⠑" }, { "input": "crocodile's", "output": "⠉⠗⠕⠉⠕⠙⠊⠇⠑⠄⠎" }, { "input": "crocodiles", "output": "⠉⠗⠕⠉⠕⠙⠊⠇⠑⠎" }, { "input": "crocus", "output": "⠉⠗⠕⠉⠥⠎" }, { "input": "crocus's", "output": "⠉⠗⠕⠉⠥⠎⠄⠎" }, { "input": "crocuses", "output": "⠉⠗⠕⠉⠥⠎⠑⠎" }, { "input": "crofts", "output": "⠉⠗⠷⠞⠎" }, { "input": "croissant", "output": "⠉⠗⠕⠊⠎⠎â â â ž" }, { "input": "croissant's", "output": "⠉⠗⠕⠊⠎⠎â â â žâ „â Ž" }, { "input": "croissants", "output": "⠉⠗⠕⠊⠎⠎â â â žâ Ž" }, { "input": "crone", "output": "⠉⠗â â •" }, { "input": "crone's", "output": "⠉⠗â â •â „â Ž" }, { "input": "crones", "output": "⠉⠗â â •â Ž" }, { "input": "cronies", "output": "⠉⠗⠕â â Šâ ‘â Ž" }, { "input": "crony", "output": "⠉⠗⠕â â ½" }, { "input": "crony's", "output": "⠉⠗⠕â â ½â „â Ž" }, { "input": "cronyism's", "output": "⠉⠗⠕â â ½â Šâ Žâ â „â Ž" }, { "input": "crook", "output": "⠉⠗⠕⠕⠅" }, { "input": "crook's", "output": "⠉⠗⠕⠕⠅⠄⠎" }, { "input": "crooked", "output": "⠉⠗⠕⠕⠅⠫" }, { "input": "crookeder", "output": "⠉⠗⠕⠕⠅⠫⠻" }, { "input": "crookedest", "output": "⠉⠗⠕⠕⠅⠫⠑⠌" }, { "input": "crookedly", "output": "⠉⠗⠕⠕⠅⠫⠇⠽" }, { "input": "crookedness", "output": "⠉⠗⠕⠕⠅⠫⠰⠎" }, { "input": "crookedness's", "output": "⠉⠗⠕⠕⠅⠫⠰⠎⠄⠎" }, { "input": "crooking", "output": "⠉⠗⠕⠕⠅⠌" }, { "input": "crookneck", "output": "⠉⠗⠕⠕⠅â â ‘⠉⠅" }, { "input": "crookneck's", "output": "⠉⠗⠕⠕⠅â â ‘⠉⠅⠄⠎" }, { "input": "crooknecks", "output": "⠉⠗⠕⠕⠅â â ‘⠉⠅⠎" }, { "input": "crooks", "output": "⠉⠗⠕⠕⠅⠎" }, { "input": "croon", "output": "⠉⠗⠕⠕â " }, { "input": "croon's", "output": "⠉⠗⠕⠕â â „â Ž" }, { "input": "crooned", "output": "⠉⠗⠕⠕â â «" }, { "input": "crooner", "output": "⠉⠗⠕⠕â â »" }, { "input": "crooner's", "output": "⠉⠗⠕⠕â â »â „â Ž" }, { "input": "crooners", "output": "⠉⠗⠕⠕â â »â Ž" }, { "input": "crooning", "output": "⠉⠗⠕⠕â â Œ" }, { "input": "croons", "output": "⠉⠗⠕⠕â â Ž" }, { "input": "crop", "output": "⠉⠗⠕â " }, { "input": "crop's", "output": "⠉⠗⠕â â „â Ž" }, { "input": "cropland", "output": "⠉⠗⠕â â ‡â ¯" }, { "input": "cropland's", "output": "⠉⠗⠕â â ‡â ¯â „â Ž" }, { "input": "croplands", "output": "⠉⠗⠕â â ‡â ¯â Ž" }, { "input": "cropped", "output": "⠉⠗⠕â â â «" }, { "input": "cropper", "output": "⠉⠗⠕â â â »" }, { "input": "cropper's", "output": "⠉⠗⠕â â â »â „â Ž" }, { "input": "croppers", "output": "⠉⠗⠕â â â »â Ž" }, { "input": "cropping", "output": "⠉⠗⠕â â â Œ" }, { "input": "crops", "output": "⠉⠗⠕â â Ž" }, { "input": "croquet", "output": "⠉⠗⠕⠟⠥⠑⠞" }, { "input": "croquet's", "output": "⠉⠗⠕⠟⠥⠑⠞⠄⠎" }, { "input": "croquette", "output": "⠉⠗⠕⠟⠥⠑⠞⠞⠑" }, { "input": "croquette's", "output": "⠉⠗⠕⠟⠥⠑⠞⠞⠑⠄⠎" }, { "input": "croquettes", "output": "⠉⠗⠕⠟⠥⠑⠞⠞⠑⠎" }, { "input": "crosier", "output": "⠉⠗⠕⠎⠊⠻" }, { "input": "crosier's", "output": "⠉⠗⠕⠎⠊⠻⠄⠎" }, { "input": "crosiers", "output": "⠉⠗⠕⠎⠊⠻⠎" }, { "input": "cross", "output": "⠉⠗⠕⠎⠎" }, { "input": "cross's", "output": "⠉⠗⠕⠎⠎⠄⠎" }, { "input": "crossbar", "output": "⠉⠗⠕⠎⠎⠃⠜" }, { "input": "crossbar's", "output": "⠉⠗⠕⠎⠎⠃⠜⠄⠎" }, { "input": "crossbars", "output": "⠉⠗⠕⠎⠎⠃⠜⠎" }, { "input": "crossbeam", "output": "⠉⠗⠕⠎⠎⠃⠂â " }, { "input": "crossbeam's", "output": "⠉⠗⠕⠎⠎⠃⠂â â „â Ž" }, { "input": "crossbeams", "output": "⠉⠗⠕⠎⠎⠃⠂â â Ž" }, { "input": "crossbones", "output": "⠉⠗⠕⠎⠎⠃â â •â Ž" }, { "input": "crossbones's", "output": "⠉⠗⠕⠎⠎⠃â â •â Žâ „â Ž" }, { "input": "crossbow", "output": "⠉⠗⠕⠎⠎⠃⠪" }, { "input": "crossbow's", "output": "⠉⠗⠕⠎⠎⠃⠪⠄⠎" }, { "input": "crossbowman", "output": "⠉⠗⠕⠎⠎⠃⠪â â â " }, { "input": "crossbowman's", "output": "⠉⠗⠕⠎⠎⠃⠪â â â â „â Ž" }, { "input": "crossbowmen", "output": "⠉⠗⠕⠎⠎⠃⠪â â ¢" }, { "input": "crossbows", "output": "⠉⠗⠕⠎⠎⠃⠪⠎" }, { "input": "crossbred", "output": "⠉⠗⠕⠎⠎⠃⠗⠫" }, { "input": "crossbreed", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫" }, { "input": "crossbreed's", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫⠄⠎" }, { "input": "crossbreeding", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫⠌" }, { "input": "crossbreeds", "output": "⠉⠗⠕⠎⠎⠃⠗⠑⠫⠎" }, { "input": "crosscheck", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅" }, { "input": "crosscheck's", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠄⠎" }, { "input": "crosschecked", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠫" }, { "input": "crosschecking", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠌" }, { "input": "crosschecks", "output": "⠉⠗⠕⠎⠎⠡⠑⠉⠅⠎" }, { "input": "crosscut", "output": "⠉⠗⠕⠎⠎⠉⠥⠞" }, { "input": "crosscut's", "output": "⠉⠗⠕⠎⠎⠉⠥⠞⠄⠎" }, { "input": "crosscuts", "output": "⠉⠗⠕⠎⠎⠉⠥⠞⠎" }, { "input": "crosscutting", "output": "⠉⠗⠕⠎⠎⠉⠥⠞⠞⠌" }, { "input": "crossed", "output": "⠉⠗⠕⠎⠎⠫" }, { "input": "crosser", "output": "⠉⠗⠕⠎⠎⠻" }, { "input": "crosses", "output": "⠉⠗⠕⠎⠎⠑⠎" }, { "input": "crossest", "output": "⠉⠗⠕⠎⠎⠑⠌" }, { "input": "crossfire", "output": "⠉⠗⠕⠎⠎⠋⠊⠗⠑" }, { "input": "crossfire's", "output": "⠉⠗⠕⠎⠎⠋⠊⠗⠑⠄⠎" }, { "input": "crossfires", "output": "⠉⠗⠕⠎⠎⠋⠊⠗⠑⠎" }, { "input": "crosshatch", "output": "⠉⠗⠕⠎⠎⠓â â žâ ¡" }, { "input": "crosshatched", "output": "⠉⠗⠕⠎⠎⠓â â žâ ¡â «" }, { "input": "crosshatches", "output": "⠉⠗⠕⠎⠎⠓â â žâ ¡â ‘â Ž" }, { "input": "crosshatching", "output": "⠉⠗⠕⠎⠎⠓â â žâ ¡â Œ" }, { "input": "crossing", "output": "⠉⠗⠕⠎⠎⠌" }, { "input": "crossing's", "output": "⠉⠗⠕⠎⠎⠌⠄⠎" }, { "input": "crossings", "output": "⠉⠗⠕⠎⠎⠌⠎" }, { "input": "crossly", "output": "⠉⠗⠕⠎⠎⠇⠽" }, { "input": "crossness", "output": "⠉⠗⠕⠎⠎⠰⠎" }, { "input": "crossness's", "output": "⠉⠗⠕⠎⠎⠰⠎⠄⠎" }, { "input": "crossover", "output": "⠉⠗⠕⠎⠎⠕⠧⠻" }, { "input": "crossover's", "output": "⠉⠗⠕⠎⠎⠕⠧⠻⠄⠎" }, { "input": "crossovers", "output": "⠉⠗⠕⠎⠎⠕⠧⠻⠎" }, { "input": "crosspiece", "output": "⠉⠗⠕⠎⠎â â Šâ ‘⠉⠑" }, { "input": "crosspiece's", "output": "⠉⠗⠕⠎⠎â â Šâ ‘⠉⠑⠄⠎" }, { "input": "crosspieces", "output": "⠉⠗⠕⠎⠎â â Šâ ‘⠉⠑⠎" }, { "input": "crossroad", "output": "⠉⠗⠕⠎⠎⠗⠕â â ™" }, { "input": "crossroad's", "output": "⠉⠗⠕⠎⠎⠗⠕â â ™â „â Ž" }, { "input": "crossroads", "output": "⠉⠗⠕⠎⠎⠗⠕â â ™â Ž" }, { "input": "crossroads's", "output": "⠉⠗⠕⠎⠎⠗⠕â â ™â Žâ „â Ž" }, { "input": "crosstown", "output": "⠉⠗⠕⠎⠎⠞⠪â " }, { "input": "crosswalk", "output": "⠉⠗⠕⠎⠎⠺â â ‡â …" }, { "input": "crosswalk's", "output": "⠉⠗⠕⠎⠎⠺â â ‡â …â „â Ž" }, { "input": "crosswalks", "output": "⠉⠗⠕⠎⠎⠺â â ‡â …â Ž" }, { "input": "crosswise", "output": "⠉⠗⠕⠎⠎⠺⠊⠎⠑" }, { "input": "crossword", "output": "⠉⠗⠕⠎⠎⠘⠺" }, { "input": "crossword's", "output": "⠉⠗⠕⠎⠎⠘⠺⠄⠎" }, { "input": "crosswords", "output": "⠉⠗⠕⠎⠎⠘⠺⠎" }, { "input": "crotch", "output": "⠉⠗⠕⠞⠡" }, { "input": "crotch's", "output": "⠉⠗⠕⠞⠡⠄⠎" }, { "input": "crotches", "output": "⠉⠗⠕⠞⠡⠑⠎" }, { "input": "crotchet", "output": "⠉⠗⠕⠞⠡⠑⠞" }, { "input": "crotchet's", "output": "⠉⠗⠕⠞⠡⠑⠞⠄⠎" }, { "input": "crotchets", "output": "⠉⠗⠕⠞⠡⠑⠞⠎" }, { "input": "crotchety", "output": "⠉⠗⠕⠞⠡⠑⠞⠽" }, { "input": "crouch", "output": "⠉⠗⠳⠡" }, { "input": "crouch's", "output": "⠉⠗⠳⠡⠄⠎" }, { "input": "crouched", "output": "⠉⠗⠳⠡⠫" }, { "input": "crouches", "output": "⠉⠗⠳⠡⠑⠎" }, { "input": "crouching", "output": "⠉⠗⠳⠡⠌" }, { "input": "croup", "output": "⠉⠗⠳â " }, { "input": "croup's", "output": "⠉⠗⠳â â „â Ž" }, { "input": "croupier", "output": "⠉⠗⠳â â Šâ »" }, { "input": "croupier's", "output": "⠉⠗⠳â â Šâ »â „â Ž" }, { "input": "croupiers", "output": "⠉⠗⠳â â Šâ »â Ž" }, { "input": "croupiest", "output": "⠉⠗⠳â â Šâ ‘â Œ" }, { "input": "croupy", "output": "⠉⠗⠳â â ½" }, { "input": "crow", "output": "⠉⠗⠪" }, { "input": "crow's", "output": "⠉⠗⠪⠄⠎" }, { "input": "crowbar", "output": "⠉⠗⠪⠃⠜" }, { "input": "crowbar's", "output": "⠉⠗⠪⠃⠜⠄⠎" }, { "input": "crowbars", "output": "⠉⠗⠪⠃⠜⠎" }, { "input": "crowd", "output": "⠉⠗⠪⠙" }, { "input": "crowd's", "output": "⠉⠗⠪⠙⠄⠎" }, { "input": "crowded", "output": "⠉⠗⠪⠙⠫" }, { "input": "crowding", "output": "⠉⠗⠪⠙⠌" }, { "input": "crowds", "output": "⠉⠗⠪⠙⠎" }, { "input": "crowed", "output": "⠉⠗⠪⠫" }, { "input": "crowfeet", "output": "⠉⠗⠪⠋⠑⠑⠞" }, { "input": "crowfoot", "output": "⠉⠗⠪⠋⠕⠕⠞" }, { "input": "crowfoot's", "output": "⠉⠗⠪⠋⠕⠕⠞⠄⠎" }, { "input": "crowfoots", "output": "⠉⠗⠪⠋⠕⠕⠞⠎" }, { "input": "crowing", "output": "⠉⠗⠪⠌" }, { "input": "crown", "output": "⠉⠗⠪â " }, { "input": "crown's", "output": "⠉⠗⠪â â „â Ž" }, { "input": "crowned", "output": "⠉⠗⠪â â «" }, { "input": "crowning", "output": "⠉⠗⠪â â Œ" }, { "input": "crowns", "output": "⠉⠗⠪â â Ž" }, { "input": "crows", "output": "⠉⠗⠪⠎" }, { "input": "crucial", "output": "⠉⠗⠥⠉⠊â â ‡" }, { "input": "crucially", "output": "⠉⠗⠥⠉⠊⠠⠽" }, { "input": "crucible", "output": "⠉⠗⠥⠉⠊⠼" }, { "input": "crucible's", "output": "⠉⠗⠥⠉⠊⠼⠄⠎" }, { "input": "crucibles", "output": "⠉⠗⠥⠉⠊⠼⠎" }, { "input": "crucified", "output": "⠉⠗⠥⠉⠊⠋⠊⠫" }, { "input": "crucifies", "output": "⠉⠗⠥⠉⠊⠋⠊⠑⠎" }, { "input": "crucifix", "output": "⠉⠗⠥⠉⠊⠋⠊⠭" }, { "input": "crucifix's", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠄⠎" }, { "input": "crucifixes", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠑⠎" }, { "input": "crucifixion", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠊⠕â " }, { "input": "crucifixion's", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠊⠕â â „â Ž" }, { "input": "crucifixions", "output": "⠉⠗⠥⠉⠊⠋⠊⠭⠊⠕â â Ž" }, { "input": "cruciform", "output": "⠉⠗⠥⠉⠊⠿â " }, { "input": "cruciform's", "output": "⠉⠗⠥⠉⠊⠿â â „â Ž" }, { "input": "cruciforms", "output": "⠉⠗⠥⠉⠊⠿â â Ž" }, { "input": "crucify", "output": "⠉⠗⠥⠉⠊⠋⠽" }, { "input": "crucifying", "output": "⠉⠗⠥⠉⠊⠋⠽⠌" }, { "input": "crud", "output": "⠉⠗⠥⠙" }, { "input": "crud's", "output": "⠉⠗⠥⠙⠄⠎" }, { "input": "cruddier", "output": "⠉⠗⠥⠲⠊⠻" }, { "input": "cruddiest", "output": "⠉⠗⠥⠲⠊⠑⠌" }, { "input": "cruddy", "output": "⠉⠗⠥⠲⠽" }, { "input": "crude", "output": "⠉⠗⠥⠙⠑" }, { "input": "crude's", "output": "⠉⠗⠥⠙⠑⠄⠎" }, { "input": "crudely", "output": "⠉⠗⠥⠙⠑⠇⠽" }, { "input": "crudeness", "output": "⠉⠗⠥⠙⠑⠰⠎" }, { "input": "crudeness's", "output": "⠉⠗⠥⠙⠑⠰⠎⠄⠎" }, { "input": "cruder", "output": "⠉⠗⠥⠙⠻" }, { "input": "crudest", "output": "⠉⠗⠥⠙⠑⠌" }, { "input": "crudities", "output": "⠉⠗⠥⠙⠊⠞⠊⠑⠎" }, { "input": "crudity", "output": "⠉⠗⠥⠙⠰⠽" }, { "input": "crudity's", "output": "⠉⠗⠥⠙⠰⠽⠄⠎" }, { "input": "cruel", "output": "⠉⠗⠥⠑⠇" }, { "input": "crueler", "output": "⠉⠗⠥⠑⠇⠻" }, { "input": "cruelest", "output": "⠉⠗⠥⠑⠇⠑⠌" }, { "input": "cruelly", "output": "⠉⠗⠥⠑⠇⠇⠽" }, { "input": "cruelness", "output": "⠉⠗⠥⠑⠇⠰⠎" }, { "input": "cruelness's", "output": "⠉⠗⠥⠑⠇⠰⠎⠄⠎" }, { "input": "cruelties", "output": "⠉⠗⠥⠑⠇⠞⠊⠑⠎" }, { "input": "cruelty", "output": "⠉⠗⠥⠑⠇⠞⠽" }, { "input": "cruelty's", "output": "⠉⠗⠥⠑⠇⠞⠽⠄⠎" }, { "input": "cruet", "output": "⠉⠗⠥⠑⠞" }, { "input": "cruet's", "output": "⠉⠗⠥⠑⠞⠄⠎" }, { "input": "cruets", "output": "⠉⠗⠥⠑⠞⠎" }, { "input": "cruise", "output": "⠉⠗⠥⠊⠎⠑" }, { "input": "cruise's", "output": "⠉⠗⠥⠊⠎⠑⠄⠎" }, { "input": "cruised", "output": "⠉⠗⠥⠊⠎⠫" }, { "input": "cruiser", "output": "⠉⠗⠥⠊⠎⠻" }, { "input": "cruiser's", "output": "⠉⠗⠥⠊⠎⠻⠄⠎" }, { "input": "cruisers", "output": "⠉⠗⠥⠊⠎⠻⠎" }, { "input": "cruises", "output": "⠉⠗⠥⠊⠎⠑⠎" }, { "input": "cruising", "output": "⠉⠗⠥⠊⠎⠌" }, { "input": "cruller", "output": "⠉⠗⠥⠇⠇⠻" }, { "input": "cruller's", "output": "⠉⠗⠥⠇⠇⠻⠄⠎" }, { "input": "crullers", "output": "⠉⠗⠥⠇⠇⠻⠎" }, { "input": "crumb", "output": "⠉⠗⠥â â ƒ" }, { "input": "crumb's", "output": "⠉⠗⠥â â ƒâ „â Ž" }, { "input": "crumbed", "output": "⠉⠗⠥â â ƒâ «" }, { "input": "crumbier", "output": "⠉⠗⠥â â ƒâ Šâ »" }, { "input": "crumbiest", "output": "⠉⠗⠥â â ƒâ Šâ ‘â Œ" }, { "input": "crumbing", "output": "⠉⠗⠥â â ƒâ Œ" }, { "input": "crumble", "output": "⠉⠗⠥â â ¼" }, { "input": "crumble's", "output": "⠉⠗⠥â â ¼â „â Ž" }, { "input": "crumbled", "output": "⠉⠗⠥â â ¼â ™" }, { "input": "crumbles", "output": "⠉⠗⠥â â ¼â Ž" }, { "input": "crumblier", "output": "⠉⠗⠥â â ƒâ ‡â Šâ »" }, { "input": "crumbliest", "output": "⠉⠗⠥â â ƒâ ‡â Šâ ‘â Œ" }, { "input": "crumbliness", "output": "⠉⠗⠥â â ƒâ ‡â Šâ °â Ž" }, { "input": "crumbliness's", "output": "⠉⠗⠥â â ƒâ ‡â Šâ °â Žâ „â Ž" }, { "input": "crumbling", "output": "⠉⠗⠥â â ƒâ ‡â Œ" }, { "input": "crumbly", "output": "⠉⠗⠥â â ƒâ ‡â ½" }, { "input": "crumbs", "output": "⠉⠗⠥â â ƒâ Ž" }, { "input": "crumby", "output": "⠉⠗⠥â â ƒâ ½" }, { "input": "crummier", "output": "⠉⠗⠥â â â Šâ »" }, { "input": "crummiest", "output": "⠉⠗⠥â â â Šâ ‘â Œ" }, { "input": "crumminess", "output": "⠉⠗⠥â â â Šâ °â Ž" }, { "input": "crumminess's", "output": "⠉⠗⠥â â â Šâ °â Žâ „â Ž" }, { "input": "crummy", "output": "⠉⠗⠥â â â ½" }, { "input": "crumpet", "output": "⠉⠗⠥â â â ‘â ž" }, { "input": "crumpet's", "output": "⠉⠗⠥â â â ‘â žâ „â Ž" }, { "input": "crumpets", "output": "⠉⠗⠥â â â ‘â žâ Ž" }, { "input": "crumple", "output": "⠉⠗⠥â â â ‡â ‘" }, { "input": "crumple's", "output": "⠉⠗⠥â â â ‡â ‘â „â Ž" }, { "input": "crumpled", "output": "⠉⠗⠥â â â ‡â «" }, { "input": "crumples", "output": "⠉⠗⠥â â â ‡â ‘â Ž" }, { "input": "crumpling", "output": "⠉⠗⠥â â â ‡â Œ" }, { "input": "crunch", "output": "⠉⠗⠥â â ¡" }, { "input": "crunch's", "output": "⠉⠗⠥â â ¡â „â Ž" }, { "input": "crunched", "output": "⠉⠗⠥â â ¡â «" }, { "input": "cruncher", "output": "⠉⠗⠥â â ¡â »" }, { "input": "crunches", "output": "⠉⠗⠥â â ¡â ‘â Ž" }, { "input": "crunchier", "output": "⠉⠗⠥â â ¡â Šâ »" }, { "input": "crunchiest", "output": "⠉⠗⠥â â ¡â Šâ ‘â Œ" }, { "input": "crunchiness", "output": "⠉⠗⠥â â ¡â Šâ °â Ž" }, { "input": "crunchiness's", "output": "⠉⠗⠥â â ¡â Šâ °â Žâ „â Ž" }, { "input": "crunching", "output": "⠉⠗⠥â â ¡â Œ" }, { "input": "crunchy", "output": "⠉⠗⠥â â ¡â ½" }, { "input": "crupper", "output": "⠉⠗⠥â â â »" }, { "input": "crupper's", "output": "⠉⠗⠥â â â »â „â Ž" }, { "input": "cruppers", "output": "⠉⠗⠥â â â »â Ž" }, { "input": "crusade", "output": "⠉⠗⠥⠎â â ™â ‘" }, { "input": "crusade's", "output": "⠉⠗⠥⠎â â ™â ‘â „â Ž" }, { "input": "crusaded", "output": "⠉⠗⠥⠎â â ™â «" }, { "input": "crusader", "output": "⠉⠗⠥⠎â â ™â »" }, { "input": "crusader's", "output": "⠉⠗⠥⠎â â ™â »â „â Ž" }, { "input": "crusaders", "output": "⠉⠗⠥⠎â â ™â »â Ž" }, { "input": "crusades", "output": "⠉⠗⠥⠎â â ™â ‘â Ž" }, { "input": "crusading", "output": "⠉⠗⠥⠎â â ™â Œ" }, { "input": "cruse", "output": "⠉⠗⠥⠎⠑" }, { "input": "cruse's", "output": "⠉⠗⠥⠎⠑⠄⠎" }, { "input": "cruses", "output": "⠉⠗⠥⠎⠑⠎" }, { "input": "crush", "output": "⠉⠗⠥⠩" }, { "input": "crush's", "output": "⠉⠗⠥⠩⠄⠎" }, { "input": "crushed", "output": "⠉⠗⠥⠩⠫" }, { "input": "crushes", "output": "⠉⠗⠥⠩⠑⠎" }, { "input": "crushing", "output": "⠉⠗⠥⠩⠌" }, { "input": "crust", "output": "⠉⠗⠥⠌" }, { "input": "crust's", "output": "⠉⠗⠥⠌⠄⠎" }, { "input": "crustacean", "output": "⠉⠗⠥⠌â â ‰â ‚â " }, { "input": "crustacean's", "output": "⠉⠗⠥⠌â â ‰â ‚â â „â Ž" }, { "input": "crustaceans", "output": "⠉⠗⠥⠌â â ‰â ‚â â Ž" }, { "input": "crustal", "output": "⠉⠗⠥⠌â â ‡" }, { "input": "crusted", "output": "⠉⠗⠥⠌⠫" }, { "input": "crustier", "output": "⠉⠗⠥⠌⠊⠻" }, { "input": "crustiest", "output": "⠉⠗⠥⠌⠊⠑⠌" }, { "input": "crustily", "output": "⠉⠗⠥⠌⠊⠇⠽" }, { "input": "crustiness", "output": "⠉⠗⠥⠌⠊⠰⠎" }, { "input": "crustiness's", "output": "⠉⠗⠥⠌⠊⠰⠎⠄⠎" }, { "input": "crusting", "output": "⠉⠗⠥⠌⠌" }, { "input": "crusts", "output": "⠉⠗⠥⠌⠎" }, { "input": "crusty", "output": "⠉⠗⠥⠌⠽" }, { "input": "crutch", "output": "⠉⠗⠥⠞⠡" }, { "input": "crutch's", "output": "⠉⠗⠥⠞⠡⠄⠎" }, { "input": "crutches", "output": "⠉⠗⠥⠞⠡⠑⠎" }, { "input": "crux", "output": "⠉⠗⠥⠭" }, { "input": "crux's", "output": "⠉⠗⠥⠭⠄⠎" }, { "input": "cruxes", "output": "⠉⠗⠥⠭⠑⠎" }, { "input": "cry", "output": "⠉⠗⠽" }, { "input": "cry's", "output": "⠉⠗⠽⠄⠎" }, { "input": "crybabies", "output": "⠉⠗⠽⠃â â ƒâ Šâ ‘â Ž" }, { "input": "crybaby", "output": "⠉⠗⠽⠃â â ƒâ ½" }, { "input": "crybaby's", "output": "⠉⠗⠽⠃â â ƒâ ½â „â Ž" }, { "input": "crying", "output": "⠉⠗⠽⠌" }, { "input": "cryings", "output": "⠉⠗⠽⠌⠎" }, { "input": "cryogenics", "output": "⠉⠗⠽⠕⠛⠢⠊⠉⠎" }, { "input": "cryogenics's", "output": "⠉⠗⠽⠕⠛⠢⠊⠉⠎⠄⠎" }, { "input": "cryosurgery", "output": "⠉⠗⠽⠕⠎⠥⠗⠛⠻⠽" }, { "input": "cryosurgery's", "output": "⠉⠗⠽⠕⠎⠥⠗⠛⠻⠽⠄⠎" }, { "input": "crypt", "output": "⠉⠗⠽â â ž" }, { "input": "crypt's", "output": "⠉⠗⠽â â žâ „â Ž" }, { "input": "cryptic", "output": "⠉⠗⠽â â žâ Šâ ‰" }, { "input": "cryptically", "output": "⠉⠗⠽â â žâ Šâ ‰â  â ½" }, { "input": "cryptogram", "output": "⠉⠗⠽â â žâ •⠛⠗â â " }, { "input": "cryptogram's", "output": "⠉⠗⠽â â žâ •⠛⠗â â â „â Ž" }, { "input": "cryptograms", "output": "⠉⠗⠽â â žâ •⠛⠗â â â Ž" }, { "input": "cryptographer", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “â »" }, { "input": "cryptographer's", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “⠻⠄⠎" }, { "input": "cryptographers", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “⠻⠎" }, { "input": "cryptography", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “â ½" }, { "input": "cryptography's", "output": "⠉⠗⠽â â žâ •⠛⠗â â â “⠽⠄⠎" }, { "input": "crypts", "output": "⠉⠗⠽â â žâ Ž" }, { "input": "crystal", "output": "⠉⠗⠽⠌â â ‡" }, { "input": "crystal's", "output": "⠉⠗⠽⠌â â ‡â „â Ž" }, { "input": "crystalline", "output": "⠉⠗⠽⠌â â ‡â ‡â ”â ‘" }, { "input": "crystallization", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ  â " }, { "input": "crystallization's", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ  â â „â Ž" }, { "input": "crystallize", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ‘" }, { "input": "crystallized", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ «" }, { "input": "crystallizes", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ‘â Ž" }, { "input": "crystallizing", "output": "⠉⠗⠽⠌â â ‡â ‡â Šâ µâ Œ" }, { "input": "crystallographic", "output": "⠉⠗⠽⠌â â ‡â ‡â •⠛⠗â â â “â Šâ ‰" }, { "input": "crystallography", "output": "⠉⠗⠽⠌â â ‡â ‡â •⠛⠗â â â “â ½" }, { "input": "crystals", "output": "⠉⠗⠽⠌â â ‡â Ž" }, { "input": "cs", "output": "⠉⠎" }, { "input": "cub", "output": "⠉⠥⠃" }, { "input": "cub's", "output": "⠉⠥⠃⠄⠎" }, { "input": "cubbyhole", "output": "⠉⠥⠆⠽⠓⠕⠇⠑" }, { "input": "cubbyhole's", "output": "⠉⠥⠆⠽⠓⠕⠇⠑⠄⠎" }, { "input": "cubbyholes", "output": "⠉⠥⠆⠽⠓⠕⠇⠑⠎" }, { "input": "cube", "output": "⠉⠥⠃⠑" }, { "input": "cube's", "output": "⠉⠥⠃⠑⠄⠎" }, { "input": "cubed", "output": "⠉⠥⠃⠫" }, { "input": "cuber", "output": "⠉⠥⠃⠻" }, { "input": "cuber's", "output": "⠉⠥⠃⠻⠄⠎" }, { "input": "cubers", "output": "⠉⠥⠃⠻⠎" }, { "input": "cubes", "output": "⠉⠥⠃⠑⠎" }, { "input": "cubic", "output": "⠉⠥⠃⠊⠉" }, { "input": "cubical", "output": "⠉⠥⠃⠊⠉â â ‡" }, { "input": "cubicle", "output": "⠉⠥⠃⠊⠉⠇⠑" }, { "input": "cubicle's", "output": "⠉⠥⠃⠊⠉⠇⠑⠄⠎" }, { "input": "cubicles", "output": "⠉⠥⠃⠊⠉⠇⠑⠎" }, { "input": "cubing", "output": "⠉⠥⠃⠌" }, { "input": "cubism", "output": "⠉⠥⠃⠊⠎â " }, { "input": "cubism's", "output": "⠉⠥⠃⠊⠎â â „â Ž" }, { "input": "cubist", "output": "⠉⠥⠃⠊⠌" }, { "input": "cubist's", "output": "⠉⠥⠃⠊⠌⠄⠎" }, { "input": "cubists", "output": "⠉⠥⠃⠊⠌⠎" }, { "input": "cubit", "output": "⠉⠥⠃⠊⠞" }, { "input": "cubit's", "output": "⠉⠥⠃⠊⠞⠄⠎" }, { "input": "cubits", "output": "⠉⠥⠃⠊⠞⠎" }, { "input": "cubs", "output": "⠉⠥⠃⠎" }, { "input": "cuckold", "output": "⠉⠥⠉⠅⠕⠇⠙" }, { "input": "cuckold's", "output": "⠉⠥⠉⠅⠕⠇⠙⠄⠎" }, { "input": "cuckolded", "output": "⠉⠥⠉⠅⠕⠇⠙⠫" }, { "input": "cuckolding", "output": "⠉⠥⠉⠅⠕⠇⠙⠌" }, { "input": "cuckoldry", "output": "⠉⠥⠉⠅⠕⠇⠙⠗⠽" }, { "input": "cuckoldry's", "output": "⠉⠥⠉⠅⠕⠇⠙⠗⠽⠄⠎" }, { "input": "cuckolds", "output": "⠉⠥⠉⠅⠕⠇⠙⠎" }, { "input": "cuckoo", "output": "⠉⠥⠉⠅⠕⠕" }, { "input": "cuckoo's", "output": "⠉⠥⠉⠅⠕⠕⠄⠎" }, { "input": "cuckoos", "output": "⠉⠥⠉⠅⠕⠕⠎" }, { "input": "cucumber", "output": "⠉⠥⠉⠥â â ƒâ »" }, { "input": "cucumber's", "output": "⠉⠥⠉⠥â â ƒâ »â „â Ž" }, { "input": "cucumbers", "output": "⠉⠥⠉⠥â â ƒâ »â Ž" }, { "input": "cud", "output": "⠉⠥⠙" }, { "input": "cud's", "output": "⠉⠥⠙⠄⠎" }, { "input": "cuddle", "output": "⠉⠥⠲⠇⠑" }, { "input": "cuddle's", "output": "⠉⠥⠲⠇⠑⠄⠎" }, { "input": "cuddled", "output": "⠉⠥⠲⠇⠫" }, { "input": "cuddles", "output": "⠉⠥⠲⠇⠑⠎" }, { "input": "cuddlier", "output": "⠉⠥⠲⠇⠊⠻" }, { "input": "cuddliest", "output": "⠉⠥⠲⠇⠊⠑⠌" }, { "input": "cuddling", "output": "⠉⠥⠲⠇⠌" }, { "input": "cuddly", "output": "⠉⠥⠲⠇⠽" }, { "input": "cudgel", "output": "⠉⠥⠙⠛⠑⠇" }, { "input": "cudgel's", "output": "⠉⠥⠙⠛⠑⠇⠄⠎" }, { "input": "cudgeled", "output": "⠉⠥⠙⠛⠑⠇⠫" }, { "input": "cudgeling", "output": "⠉⠥⠙⠛⠑⠇⠌" }, { "input": "cudgelings", "output": "⠉⠥⠙⠛⠑⠇⠌⠎" }, { "input": "cudgels", "output": "⠉⠥⠙⠛⠑⠇⠎" }, { "input": "cuds", "output": "⠉⠥⠙⠎" }, { "input": "cue", "output": "⠉⠥⠑" }, { "input": "cue's", "output": "⠉⠥⠑⠄⠎" }, { "input": "cued", "output": "⠉⠥⠫" }, { "input": "cues", "output": "⠉⠥⠑⠎" }, { "input": "cuff", "output": "⠉⠥⠋⠋" }, { "input": "cuff's", "output": "⠉⠥⠋⠋⠄⠎" }, { "input": "cuffed", "output": "⠉⠥⠖⠫" }, { "input": "cuffing", "output": "⠉⠥⠖⠌" }, { "input": "cuffs", "output": "⠉⠥⠖⠎" }, { "input": "cuing", "output": "⠉⠥⠌" }, { "input": "cuisine", "output": "⠉⠥⠊⠎⠔⠑" }, { "input": "cuisine's", "output": "⠉⠥⠊⠎⠔⠑⠄⠎" }, { "input": "cuisines", "output": "⠉⠥⠊⠎⠔⠑⠎" }, { "input": "culinary", "output": "⠉⠥⠇⠔⠜⠽" }, { "input": "cull", "output": "⠉⠥⠇⠇" }, { "input": "cull's", "output": "⠉⠥⠇⠇⠄⠎" }, { "input": "culled", "output": "⠉⠥⠇⠇⠫" }, { "input": "culling", "output": "⠉⠥⠇⠇⠌" }, { "input": "culls", "output": "⠉⠥⠇⠇⠎" }, { "input": "culminate", "output": "⠉⠥⠇â â ”â â žâ ‘" }, { "input": "culminated", "output": "⠉⠥⠇â â ”â â žâ «" }, { "input": "culminates", "output": "⠉⠥⠇â â ”â â žâ ‘â Ž" }, { "input": "culminating", "output": "⠉⠥⠇â â ”â â žâ Œ" }, { "input": "culmination", "output": "⠉⠥⠇â â ”â  â " }, { "input": "culmination's", "output": "⠉⠥⠇â â ”â  â â „â Ž" }, { "input": "culminations", "output": "⠉⠥⠇â â ”â  â â Ž" }, { "input": "culotte", "output": "⠉⠥⠇⠕⠞⠞⠑" }, { "input": "culotte's", "output": "⠉⠥⠇⠕⠞⠞⠑⠄⠎" }, { "input": "culottes", "output": "⠉⠥⠇⠕⠞⠞⠑⠎" }, { "input": "culpability", "output": "⠉⠥⠇â â â ƒâ Šâ ‡â °â ½" }, { "input": "culpability's", "output": "⠉⠥⠇â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "culpable", "output": "⠉⠥⠇â â â ¼" }, { "input": "culprit", "output": "⠉⠥⠇â â —â Šâ ž" }, { "input": "culprit's", "output": "⠉⠥⠇â â —â Šâ žâ „â Ž" }, { "input": "culprits", "output": "⠉⠥⠇â â —â Šâ žâ Ž" }, { "input": "cult", "output": "⠉⠥⠇⠞" }, { "input": "cult's", "output": "⠉⠥⠇⠞⠄⠎" }, { "input": "cultism", "output": "⠉⠥⠇⠞⠊⠎â " }, { "input": "cultism's", "output": "⠉⠥⠇⠞⠊⠎â â „â Ž" }, { "input": "cultist", "output": "⠉⠥⠇⠞⠊⠌" }, { "input": "cultist's", "output": "⠉⠥⠇⠞⠊⠌⠄⠎" }, { "input": "cultists", "output": "⠉⠥⠇⠞⠊⠌⠎" }, { "input": "cultivatable", "output": "⠉⠥⠇⠞⠊⠧â â žâ â ¼" }, { "input": "cultivate", "output": "⠉⠥⠇⠞⠊⠧â â žâ ‘" }, { "input": "cultivated", "output": "⠉⠥⠇⠞⠊⠧â â žâ «" }, { "input": "cultivates", "output": "⠉⠥⠇⠞⠊⠧â â žâ ‘â Ž" }, { "input": "cultivating", "output": "⠉⠥⠇⠞⠊⠧â â žâ Œ" }, { "input": "cultivation", "output": "⠉⠥⠇⠞⠊⠧⠠â " }, { "input": "cultivation's", "output": "⠉⠥⠇⠞⠊⠧⠠â â „â Ž" }, { "input": "cultivator", "output": "⠉⠥⠇⠞⠊⠧â â žâ •â —" }, { "input": "cultivator's", "output": "⠉⠥⠇⠞⠊⠧â â žâ •â —â „â Ž" }, { "input": "cultivators", "output": "⠉⠥⠇⠞⠊⠧â â žâ •â —â Ž" }, { "input": "cults", "output": "⠉⠥⠇⠞⠎" }, { "input": "cultural", "output": "⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "culturally", "output": "⠉⠥⠇⠞⠥⠗⠠⠽" }, { "input": "culture", "output": "⠉⠥⠇⠞⠥⠗⠑" }, { "input": "culture's", "output": "⠉⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "cultured", "output": "⠉⠥⠇⠞⠥⠗⠫" }, { "input": "cultures", "output": "⠉⠥⠇⠞⠥⠗⠑⠎" }, { "input": "culturing", "output": "⠉⠥⠇⠞⠥⠗⠌" }, { "input": "culvert", "output": "⠉⠥⠇⠧⠻⠞" }, { "input": "culvert's", "output": "⠉⠥⠇⠧⠻⠞⠄⠎" }, { "input": "culverts", "output": "⠉⠥⠇⠧⠻⠞⠎" }, { "input": "cum's", "output": "⠉⠥â â „â Ž" }, { "input": "cumber", "output": "⠉⠥â â ƒâ »" }, { "input": "cumbered", "output": "⠉⠥â â ƒâ »â «" }, { "input": "cumbering", "output": "⠉⠥â â ƒâ »â Œ" }, { "input": "cumbers", "output": "⠉⠥â â ƒâ »â Ž" }, { "input": "cumbersome", "output": "⠉⠥â â ƒâ »â â Ž" }, { "input": "cumbersomeness", "output": "⠉⠥â â ƒâ »â â Žâ °â Ž" }, { "input": "cumbersomeness's", "output": "⠉⠥â â ƒâ »â â Žâ °â Žâ „â Ž" }, { "input": "cumbrous", "output": "⠉⠥â â ƒâ —⠳⠎" }, { "input": "cumin", "output": "⠉⠥â â ”" }, { "input": "cumin's", "output": "⠉⠥â â ”â „â Ž" }, { "input": "cummerbund", "output": "⠉⠥â â â »â ƒâ ¥â â ™" }, { "input": "cummerbund's", "output": "⠉⠥â â â »â ƒâ ¥â â ™â „â Ž" }, { "input": "cummerbunds", "output": "⠉⠥â â â »â ƒâ ¥â â ™â Ž" }, { "input": "cumming", "output": "⠉⠥â â â Œ" }, { "input": "cums", "output": "⠉⠥â â Ž" }, { "input": "cumulative", "output": "⠉⠥â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "cumulatively", "output": "⠉⠥â â ¥â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "cumuli", "output": "⠉⠥â â ¥â ‡â Š" }, { "input": "cumulonimbi", "output": "⠉⠥â â ¥â ‡â •â â Šâ â ƒâ Š" }, { "input": "cumulonimbus", "output": "⠉⠥â â ¥â ‡â •â â Šâ â ƒâ ¥â Ž" }, { "input": "cumulonimbus's", "output": "⠉⠥â â ¥â ‡â •â â Šâ â ƒâ ¥â Žâ „â Ž" }, { "input": "cumulus", "output": "⠉⠥â â ¥â ‡â ¥â Ž" }, { "input": "cumulus's", "output": "⠉⠥â â ¥â ‡â ¥â Žâ „â Ž" }, { "input": "cuneiform", "output": "⠉⠥â â ‘â Šâ ¿â " }, { "input": "cuneiform's", "output": "⠉⠥â â ‘â Šâ ¿â â „â Ž" }, { "input": "cunnilingus", "output": "⠉⠥â â â Šâ ‡â Œâ ¥â Ž" }, { "input": "cunnilingus's", "output": "⠉⠥â â â Šâ ‡â Œâ ¥â Žâ „â Ž" }, { "input": "cunning", "output": "⠉⠥â â â Œ" }, { "input": "cunning's", "output": "⠉⠥â â â Œâ „â Ž" }, { "input": "cunninger", "output": "⠉⠥â â â Œâ »" }, { "input": "cunningest", "output": "⠉⠥â â â Œâ ‘â Œ" }, { "input": "cunningly", "output": "⠉⠥â â â Œâ ‡â ½" }, { "input": "cunt", "output": "⠉⠥â â ž" }, { "input": "cunt's", "output": "⠉⠥â â žâ „â Ž" }, { "input": "cunts", "output": "⠉⠥â â žâ Ž" }, { "input": "cup", "output": "⠉⠥â " }, { "input": "cup's", "output": "⠉⠥â â „â Ž" }, { "input": "cupboard", "output": "⠉⠥â â ƒâ •⠜⠙" }, { "input": "cupboard's", "output": "⠉⠥â â ƒâ •⠜⠙⠄⠎" }, { "input": "cupboards", "output": "⠉⠥â â ƒâ •⠜⠙⠎" }, { "input": "cupcake", "output": "⠉⠥â â ‰â â …â ‘" }, { "input": "cupcake's", "output": "⠉⠥â â ‰â â …â ‘â „â Ž" }, { "input": "cupcakes", "output": "⠉⠥â â ‰â â …â ‘â Ž" }, { "input": "cupful", "output": "⠉⠥â â °â ‡" }, { "input": "cupful's", "output": "⠉⠥â â °â ‡â „â Ž" }, { "input": "cupfuls", "output": "⠉⠥â â °â ‡â Ž" }, { "input": "cupidity", "output": "⠉⠥â â Šâ ™â °â ½" }, { "input": "cupidity's", "output": "⠉⠥â â Šâ ™â °â ½â „â Ž" }, { "input": "cupola", "output": "⠉⠥â â •â ‡â " }, { "input": "cupola's", "output": "⠉⠥â â •â ‡â â „â Ž" }, { "input": "cupolaed", "output": "⠉⠥â â •â ‡â â «" }, { "input": "cupolas", "output": "⠉⠥â â •â ‡â â Ž" }, { "input": "cupped", "output": "⠉⠥â â â «" }, { "input": "cupping", "output": "⠉⠥â â â Œ" }, { "input": "cupric", "output": "⠉⠥â â —â Šâ ‰" }, { "input": "cups", "output": "⠉⠥â â Ž" }, { "input": "cur", "output": "⠉⠥⠗" }, { "input": "cur's", "output": "⠉⠥⠗⠄⠎" }, { "input": "curability", "output": "⠉⠥⠗â â ƒâ Šâ ‡â °â ½" }, { "input": "curability's", "output": "⠉⠥⠗â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "curable", "output": "⠉⠥⠗â â ¼" }, { "input": "curacies", "output": "⠉⠥⠗â â ‰â Šâ ‘â Ž" }, { "input": "curacy", "output": "⠉⠥⠗â â ‰â ½" }, { "input": "curacy's", "output": "⠉⠥⠗â â ‰â ½â „â Ž" }, { "input": "curare", "output": "⠉⠥⠗⠜⠑" }, { "input": "curare's", "output": "⠉⠥⠗⠜⠑⠄⠎" }, { "input": "curate", "output": "⠉⠥⠗â â žâ ‘" }, { "input": "curate's", "output": "⠉⠥⠗â â žâ ‘â „â Ž" }, { "input": "curates", "output": "⠉⠥⠗â â žâ ‘â Ž" }, { "input": "curative", "output": "⠉⠥⠗â â žâ Šâ §â ‘" }, { "input": "curative's", "output": "⠉⠥⠗â â žâ Šâ §â ‘â „â Ž" }, { "input": "curatives", "output": "⠉⠥⠗â â žâ Šâ §â ‘â Ž" }, { "input": "curator", "output": "⠉⠥⠗â â žâ •â —" }, { "input": "curator's", "output": "⠉⠥⠗â â žâ •â —â „â Ž" }, { "input": "curatorial", "output": "⠉⠥⠗â â žâ •â —â Šâ â ‡" }, { "input": "curators", "output": "⠉⠥⠗â â žâ •â —â Ž" }, { "input": "curb", "output": "⠉⠥⠗⠃" }, { "input": "curb's", "output": "⠉⠥⠗⠃⠄⠎" }, { "input": "curbed", "output": "⠉⠥⠗⠃⠫" }, { "input": "curbing", "output": "⠉⠥⠗⠃⠌" }, { "input": "curbing's", "output": "⠉⠥⠗⠃⠌⠄⠎" }, { "input": "curbs", "output": "⠉⠥⠗⠃⠎" }, { "input": "curbstone", "output": "⠉⠥⠗⠃⠌â â •" }, { "input": "curbstone's", "output": "⠉⠥⠗⠃⠌â â •â „â Ž" }, { "input": "curbstones", "output": "⠉⠥⠗⠃⠌â â •â Ž" }, { "input": "curd", "output": "⠉⠥⠗⠙" }, { "input": "curd's", "output": "⠉⠥⠗⠙⠄⠎" }, { "input": "curdle", "output": "⠉⠥⠗⠙⠇⠑" }, { "input": "curdled", "output": "⠉⠥⠗⠙⠇⠫" }, { "input": "curdles", "output": "⠉⠥⠗⠙⠇⠑⠎" }, { "input": "curdling", "output": "⠉⠥⠗⠙⠇⠌" }, { "input": "curds", "output": "⠉⠥⠗⠙⠎" }, { "input": "cure", "output": "⠉⠥⠗⠑" }, { "input": "cure's", "output": "⠉⠥⠗⠑⠄⠎" }, { "input": "cured", "output": "⠉⠥⠗⠫" }, { "input": "curer", "output": "⠉⠥⠗⠻" }, { "input": "curer's", "output": "⠉⠥⠗⠻⠄⠎" }, { "input": "curers", "output": "⠉⠥⠗⠻⠎" }, { "input": "cures", "output": "⠉⠥⠗⠑⠎" }, { "input": "curettage", "output": "⠉⠥⠗⠑⠞⠞â â ›â ‘" }, { "input": "curettage's", "output": "⠉⠥⠗⠑⠞⠞â â ›â ‘â „â Ž" }, { "input": "curfew", "output": "⠉⠥⠗⠋⠑⠺" }, { "input": "curfew's", "output": "⠉⠥⠗⠋⠑⠺⠄⠎" }, { "input": "curfews", "output": "⠉⠥⠗⠋⠑⠺⠎" }, { "input": "curia", "output": "⠉⠥⠗⠊â " }, { "input": "curia's", "output": "⠉⠥⠗⠊â â „â Ž" }, { "input": "curiae", "output": "⠉⠥⠗⠊â â ‘" }, { "input": "curie", "output": "⠉⠥⠗⠊⠑" }, { "input": "curie's", "output": "⠉⠥⠗⠊⠑⠄⠎" }, { "input": "curies", "output": "⠉⠥⠗⠊⠑⠎" }, { "input": "curing", "output": "⠉⠥⠗⠌" }, { "input": "curio", "output": "⠉⠥⠗⠊⠕" }, { "input": "curio's", "output": "⠉⠥⠗⠊⠕⠄⠎" }, { "input": "curios", "output": "⠉⠥⠗⠊⠕⠎" }, { "input": "curiosities", "output": "⠉⠥⠗⠊⠕⠎⠊⠞⠊⠑⠎" }, { "input": "curiosity", "output": "⠉⠥⠗⠊⠕⠎⠰⠽" }, { "input": "curiosity's", "output": "⠉⠥⠗⠊⠕⠎⠰⠽⠄⠎" }, { "input": "curious", "output": "⠉⠥⠗⠊⠳⠎" }, { "input": "curiously", "output": "⠉⠥⠗⠊⠳⠎⠇⠽" }, { "input": "curiousness", "output": "⠉⠥⠗⠊⠳⠎⠰⠎" }, { "input": "curiousness's", "output": "⠉⠥⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "curium", "output": "⠉⠥⠗⠊⠥â " }, { "input": "curium's", "output": "⠉⠥⠗⠊⠥â â „â Ž" }, { "input": "curl", "output": "⠉⠥⠗⠇" }, { "input": "curl's", "output": "⠉⠥⠗⠇⠄⠎" }, { "input": "curled", "output": "⠉⠥⠗⠇⠫" }, { "input": "curler", "output": "⠉⠥⠗⠇⠻" }, { "input": "curler's", "output": "⠉⠥⠗⠇⠻⠄⠎" }, { "input": "curlers", "output": "⠉⠥⠗⠇⠻⠎" }, { "input": "curlew", "output": "⠉⠥⠗⠇⠑⠺" }, { "input": "curlew's", "output": "⠉⠥⠗⠇⠑⠺⠄⠎" }, { "input": "curlews", "output": "⠉⠥⠗⠇⠑⠺⠎" }, { "input": "curlicue", "output": "⠉⠥⠗⠇⠊⠉⠥⠑" }, { "input": "curlicue's", "output": "⠉⠥⠗⠇⠊⠉⠥⠑⠄⠎" }, { "input": "curlicued", "output": "⠉⠥⠗⠇⠊⠉⠥⠫" }, { "input": "curlicues", "output": "⠉⠥⠗⠇⠊⠉⠥⠑⠎" }, { "input": "curlicuing", "output": "⠉⠥⠗⠇⠊⠉⠥⠌" }, { "input": "curlier", "output": "⠉⠥⠗⠇⠊⠻" }, { "input": "curliest", "output": "⠉⠥⠗⠇⠊⠑⠌" }, { "input": "curliness", "output": "⠉⠥⠗⠇⠊⠰⠎" }, { "input": "curliness's", "output": "⠉⠥⠗⠇⠊⠰⠎⠄⠎" }, { "input": "curling", "output": "⠉⠥⠗⠇⠌" }, { "input": "curling's", "output": "⠉⠥⠗⠇⠌⠄⠎" }, { "input": "curls", "output": "⠉⠥⠗⠇⠎" }, { "input": "curly", "output": "⠉⠥⠗⠇⠽" }, { "input": "curmudgeon", "output": "⠉⠥⠗â â ¥â ™â ›â ‘â •â " }, { "input": "curmudgeon's", "output": "⠉⠥⠗â â ¥â ™â ›â ‘â •â â „â Ž" }, { "input": "curmudgeons", "output": "⠉⠥⠗â â ¥â ™â ›â ‘â •â â Ž" }, { "input": "currant", "output": "⠉⠥⠗⠗â â â ž" }, { "input": "currant's", "output": "⠉⠥⠗⠗â â â žâ „â Ž" }, { "input": "currants", "output": "⠉⠥⠗⠗â â â žâ Ž" }, { "input": "currencies", "output": "⠉⠥⠗⠗⠢⠉⠊⠑⠎" }, { "input": "currency", "output": "⠉⠥⠗⠗⠢⠉⠽" }, { "input": "currency's", "output": "⠉⠥⠗⠗⠢⠉⠽⠄⠎" }, { "input": "current", "output": "⠉⠥⠗⠗⠢⠞" }, { "input": "current's", "output": "⠉⠥⠗⠗⠢⠞⠄⠎" }, { "input": "currently", "output": "⠉⠥⠗⠗⠢⠞⠇⠽" }, { "input": "currents", "output": "⠉⠥⠗⠗⠢⠞⠎" }, { "input": "curricula", "output": "⠉⠥⠗⠗⠊⠉⠥⠇â " }, { "input": "curriculum", "output": "⠉⠥⠗⠗⠊⠉⠥⠇⠥â " }, { "input": "curriculum's", "output": "⠉⠥⠗⠗⠊⠉⠥⠇⠥â â „â Ž" }, { "input": "curried", "output": "⠉⠥⠗⠗⠊⠫" }, { "input": "curries", "output": "⠉⠥⠗⠗⠊⠑⠎" }, { "input": "curry", "output": "⠉⠥⠗⠗⠽" }, { "input": "curry's", "output": "⠉⠥⠗⠗⠽⠄⠎" }, { "input": "currycomb", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒ" }, { "input": "currycomb's", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ „â Ž" }, { "input": "currycombed", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ «" }, { "input": "currycombing", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ Œ" }, { "input": "currycombs", "output": "⠉⠥⠗⠗⠽⠉⠕â â ƒâ Ž" }, { "input": "currying", "output": "⠉⠥⠗⠗⠽⠌" }, { "input": "curs", "output": "⠉⠥⠗⠎" }, { "input": "curse", "output": "⠉⠥⠗⠎⠑" }, { "input": "curse's", "output": "⠉⠥⠗⠎⠑⠄⠎" }, { "input": "cursed", "output": "⠉⠥⠗⠎⠫" }, { "input": "cursedly", "output": "⠉⠥⠗⠎⠫⠇⠽" }, { "input": "curses", "output": "⠉⠥⠗⠎⠑⠎" }, { "input": "cursing", "output": "⠉⠥⠗⠎⠌" }, { "input": "cursive", "output": "⠉⠥⠗⠎⠊⠧⠑" }, { "input": "cursive's", "output": "⠉⠥⠗⠎⠊⠧⠑⠄⠎" }, { "input": "cursively", "output": "⠉⠥⠗⠎⠊⠧⠑⠇⠽" }, { "input": "cursor", "output": "⠉⠥⠗⠎⠕⠗" }, { "input": "cursor's", "output": "⠉⠥⠗⠎⠕⠗⠄⠎" }, { "input": "cursorily", "output": "⠉⠥⠗⠎⠕⠗⠊⠇⠽" }, { "input": "cursoriness", "output": "⠉⠥⠗⠎⠕⠗⠊⠰⠎" }, { "input": "cursoriness's", "output": "⠉⠥⠗⠎⠕⠗⠊⠰⠎⠄⠎" }, { "input": "cursors", "output": "⠉⠥⠗⠎⠕⠗⠎" }, { "input": "cursory", "output": "⠉⠥⠗⠎⠕⠗⠽" }, { "input": "curt", "output": "⠉⠥⠗⠞" }, { "input": "curtail", "output": "⠉⠥⠗⠞â â Šâ ‡" }, { "input": "curtailed", "output": "⠉⠥⠗⠞â â Šâ ‡â «" }, { "input": "curtailing", "output": "⠉⠥⠗⠞â â Šâ ‡â Œ" }, { "input": "curtailment", "output": "⠉⠥⠗⠞â â Šâ ‡â °â ž" }, { "input": "curtailment's", "output": "⠉⠥⠗⠞â â Šâ ‡â °â žâ „â Ž" }, { "input": "curtailments", "output": "⠉⠥⠗⠞â â Šâ ‡â °â žâ Ž" }, { "input": "curtails", "output": "⠉⠥⠗⠞â â Šâ ‡â Ž" }, { "input": "curtain", "output": "⠉⠥⠗⠞â â ”" }, { "input": "curtain's", "output": "⠉⠥⠗⠞â â ”â „â Ž" }, { "input": "curtained", "output": "⠉⠥⠗⠞â â ”â «" }, { "input": "curtaining", "output": "⠉⠥⠗⠞â â ”â Œ" }, { "input": "curtains", "output": "⠉⠥⠗⠞â â ”â Ž" }, { "input": "curter", "output": "⠉⠥⠗⠞⠻" }, { "input": "curtest", "output": "⠉⠥⠗⠞⠑⠌" }, { "input": "curtly", "output": "⠉⠥⠗⠞⠇⠽" }, { "input": "curtness", "output": "⠉⠥⠗⠞⠰⠎" }, { "input": "curtness's", "output": "⠉⠥⠗⠞⠰⠎⠄⠎" }, { "input": "curtsied", "output": "⠉⠥⠗⠞⠎⠊⠫" }, { "input": "curtsies", "output": "⠉⠥⠗⠞⠎⠊⠑⠎" }, { "input": "curtsy", "output": "⠉⠥⠗⠞⠎⠽" }, { "input": "curtsy's", "output": "⠉⠥⠗⠞⠎⠽⠄⠎" }, { "input": "curtsying", "output": "⠉⠥⠗⠞⠎⠽⠌" }, { "input": "curvaceous", "output": "⠉⠥⠗⠧â â ‰â ‘⠳⠎" }, { "input": "curvaceousness", "output": "⠉⠥⠗⠧â â ‰â ‘⠳⠎⠰⠎" }, { "input": "curvaceousness's", "output": "⠉⠥⠗⠧â â ‰â ‘⠳⠎⠰⠎⠄⠎" }, { "input": "curvature", "output": "⠉⠥⠗⠧â â žâ ¥â —â ‘" }, { "input": "curvature's", "output": "⠉⠥⠗⠧â â žâ ¥â —â ‘â „â Ž" }, { "input": "curvatures", "output": "⠉⠥⠗⠧â â žâ ¥â —â ‘â Ž" }, { "input": "curve", "output": "⠉⠥⠗⠧⠑" }, { "input": "curve's", "output": "⠉⠥⠗⠧⠑⠄⠎" }, { "input": "curved", "output": "⠉⠥⠗⠧⠫" }, { "input": "curves", "output": "⠉⠥⠗⠧⠑⠎" }, { "input": "curvier", "output": "⠉⠥⠗⠧⠊⠻" }, { "input": "curviest", "output": "⠉⠥⠗⠧⠊⠑⠌" }, { "input": "curving", "output": "⠉⠥⠗⠧⠌" }, { "input": "curvy", "output": "⠉⠥⠗⠧⠽" }, { "input": "cushier", "output": "⠉⠥⠩⠊⠻" }, { "input": "cushiest", "output": "⠉⠥⠩⠊⠑⠌" }, { "input": "cushion", "output": "⠉⠥⠩⠊⠕â " }, { "input": "cushion's", "output": "⠉⠥⠩⠊⠕â â „â Ž" }, { "input": "cushioned", "output": "⠉⠥⠩⠊⠕â â «" }, { "input": "cushioning", "output": "⠉⠥⠩⠊⠕â â Œ" }, { "input": "cushions", "output": "⠉⠥⠩⠊⠕â â Ž" }, { "input": "cushy", "output": "⠉⠥⠩⠽" }, { "input": "cusp", "output": "⠉⠥⠎â " }, { "input": "cusp's", "output": "⠉⠥⠎â â „â Ž" }, { "input": "cuspid", "output": "⠉⠥⠎â â Šâ ™" }, { "input": "cuspid's", "output": "⠉⠥⠎â â Šâ ™â „â Ž" }, { "input": "cuspids", "output": "⠉⠥⠎â â Šâ ™â Ž" }, { "input": "cusps", "output": "⠉⠥⠎â â Ž" }, { "input": "cuss", "output": "⠉⠥⠎⠎" }, { "input": "cuss's", "output": "⠉⠥⠎⠎⠄⠎" }, { "input": "cussed", "output": "⠉⠥⠎⠎⠫" }, { "input": "cusses", "output": "⠉⠥⠎⠎⠑⠎" }, { "input": "cussing", "output": "⠉⠥⠎⠎⠌" }, { "input": "custard", "output": "⠉⠥⠌⠜⠙" }, { "input": "custard's", "output": "⠉⠥⠌⠜⠙⠄⠎" }, { "input": "custards", "output": "⠉⠥⠌⠜⠙⠎" }, { "input": "custodial", "output": "⠉⠥⠌⠕⠙⠊â â ‡" }, { "input": "custodian", "output": "⠉⠥⠌⠕⠙⠊â â " }, { "input": "custodian's", "output": "⠉⠥⠌⠕⠙⠊â â â „â Ž" }, { "input": "custodians", "output": "⠉⠥⠌⠕⠙⠊â â â Ž" }, { "input": "custodianship", "output": "⠉⠥⠌⠕⠙⠊â â â ©â Šâ " }, { "input": "custodianship's", "output": "⠉⠥⠌⠕⠙⠊â â â ©â Šâ â „â Ž" }, { "input": "custody", "output": "⠉⠥⠌⠕⠙⠽" }, { "input": "custody's", "output": "⠉⠥⠌⠕⠙⠽⠄⠎" }, { "input": "custom", "output": "⠉⠥⠌⠕â " }, { "input": "custom's", "output": "⠉⠥⠌⠕â â „â Ž" }, { "input": "customarily", "output": "⠉⠥⠌⠕â â œâ Šâ ‡â ½" }, { "input": "customary", "output": "⠉⠥⠌⠕â â œâ ½" }, { "input": "customer", "output": "⠉⠥⠌⠕â â »" }, { "input": "customer's", "output": "⠉⠥⠌⠕â â »â „â Ž" }, { "input": "customers", "output": "⠉⠥⠌⠕â â »â Ž" }, { "input": "customhouse", "output": "⠉⠥⠌⠕â â “⠳⠎⠑" }, { "input": "customhouse's", "output": "⠉⠥⠌⠕â â “⠳⠎⠑⠄⠎" }, { "input": "customhouses", "output": "⠉⠥⠌⠕â â “⠳⠎⠑⠎" }, { "input": "customization", "output": "⠉⠥⠌⠕â â Šâ µâ  â " }, { "input": "customization's", "output": "⠉⠥⠌⠕â â Šâ µâ  â â „â Ž" }, { "input": "customize", "output": "⠉⠥⠌⠕â â Šâ µâ ‘" }, { "input": "customized", "output": "⠉⠥⠌⠕â â Šâ µâ «" }, { "input": "customizes", "output": "⠉⠥⠌⠕â â Šâ µâ ‘â Ž" }, { "input": "customizing", "output": "⠉⠥⠌⠕â â Šâ µâ Œ" }, { "input": "customs", "output": "⠉⠥⠌⠕â â Ž" }, { "input": "cut", "output": "⠉⠥⠞" }, { "input": "cut's", "output": "⠉⠥⠞⠄⠎" }, { "input": "cutaneous", "output": "⠉⠥⠞â â â ‘⠳⠎" }, { "input": "cutback", "output": "⠉⠥⠞⠃â â ‰â …" }, { "input": "cutback's", "output": "⠉⠥⠞⠃â â ‰â …â „â Ž" }, { "input": "cutbacks", "output": "⠉⠥⠞⠃â â ‰â …â Ž" }, { "input": "cute", "output": "⠉⠥⠞⠑" }, { "input": "cutely", "output": "⠉⠥⠞⠑⠇⠽" }, { "input": "cuteness", "output": "⠉⠥⠞⠑⠰⠎" }, { "input": "cuteness's", "output": "⠉⠥⠞⠑⠰⠎⠄⠎" }, { "input": "cuter", "output": "⠉⠥⠞⠻" }, { "input": "cutesier", "output": "⠉⠥⠞⠑⠎⠊⠻" }, { "input": "cutesiest", "output": "⠉⠥⠞⠑⠎⠊⠑⠌" }, { "input": "cutest", "output": "⠉⠥⠞⠑⠌" }, { "input": "cutesy", "output": "⠉⠥⠞⠑⠎⠽" }, { "input": "cuticle", "output": "⠉⠥⠞⠊⠉⠇⠑" }, { "input": "cuticle's", "output": "⠉⠥⠞⠊⠉⠇⠑⠄⠎" }, { "input": "cuticles", "output": "⠉⠥⠞⠊⠉⠇⠑⠎" }, { "input": "cutlass", "output": "⠉⠥⠞⠇â â Žâ Ž" }, { "input": "cutlass's", "output": "⠉⠥⠞⠇â â Žâ Žâ „â Ž" }, { "input": "cutlasses", "output": "⠉⠥⠞⠇â â Žâ Žâ ‘â Ž" }, { "input": "cutler", "output": "⠉⠥⠞⠇⠻" }, { "input": "cutler's", "output": "⠉⠥⠞⠇⠻⠄⠎" }, { "input": "cutlers", "output": "⠉⠥⠞⠇⠻⠎" }, { "input": "cutlery", "output": "⠉⠥⠞⠇⠻⠽" }, { "input": "cutlery's", "output": "⠉⠥⠞⠇⠻⠽⠄⠎" }, { "input": "cutlet", "output": "⠉⠥⠞⠇⠑⠞" }, { "input": "cutlet's", "output": "⠉⠥⠞⠇⠑⠞⠄⠎" }, { "input": "cutlets", "output": "⠉⠥⠞⠇⠑⠞⠎" }, { "input": "cutoff", "output": "⠉⠥⠞⠷⠋" }, { "input": "cutoff's", "output": "⠉⠥⠞⠷⠋⠄⠎" }, { "input": "cutoffs", "output": "⠉⠥⠞⠷⠋⠎" }, { "input": "cuts", "output": "⠉⠥⠞⠎" }, { "input": "cutter", "output": "⠉⠥⠞⠞⠻" }, { "input": "cutter's", "output": "⠉⠥⠞⠞⠻⠄⠎" }, { "input": "cutters", "output": "⠉⠥⠞⠞⠻⠎" }, { "input": "cutthroat", "output": "⠉⠥⠞⠹⠗⠕â â ž" }, { "input": "cutthroat's", "output": "⠉⠥⠞⠹⠗⠕â â žâ „â Ž" }, { "input": "cutthroats", "output": "⠉⠥⠞⠹⠗⠕â â žâ Ž" }, { "input": "cutting", "output": "⠉⠥⠞⠞⠌" }, { "input": "cutting's", "output": "⠉⠥⠞⠞⠌⠄⠎" }, { "input": "cuttingly", "output": "⠉⠥⠞⠞⠌⠇⠽" }, { "input": "cuttings", "output": "⠉⠥⠞⠞⠌⠎" }, { "input": "cuttlefish", "output": "⠉⠥⠞⠞⠇⠑⠋⠊⠩" }, { "input": "cuttlefish's", "output": "⠉⠥⠞⠞⠇⠑⠋⠊⠩⠄⠎" }, { "input": "cuttlefishes", "output": "⠉⠥⠞⠞⠇⠑⠋⠊⠩⠑⠎" }, { "input": "cutup", "output": "⠉⠥⠞⠥â " }, { "input": "cutup's", "output": "⠉⠥⠞⠥â â „â Ž" }, { "input": "cutups", "output": "⠉⠥⠞⠥â â Ž" }, { "input": "cutworm", "output": "⠉⠥⠞⠺⠕⠗â " }, { "input": "cutworm's", "output": "⠉⠥⠞⠺⠕⠗â â „â Ž" }, { "input": "cutworms", "output": "⠉⠥⠞⠺⠕⠗â â Ž" }, { "input": "cw", "output": "⠉⠺" }, { "input": "cyan's", "output": "⠉⠽â â â „â Ž" }, { "input": "cyanide", "output": "⠉⠽â â â Šâ ™â ‘" }, { "input": "cyanide's", "output": "⠉⠽â â â Šâ ™â ‘â „â Ž" }, { "input": "cybernetic", "output": "⠉⠽⠃⠻â â ‘â žâ Šâ ‰" }, { "input": "cybernetics", "output": "⠉⠽⠃⠻â â ‘⠞⠊⠉⠎" }, { "input": "cybernetics's", "output": "⠉⠽⠃⠻â â ‘⠞⠊⠉⠎⠄⠎" }, { "input": "cyberpunk", "output": "⠉⠽⠃⠻â â ¥â â …" }, { "input": "cyberpunk's", "output": "⠉⠽⠃⠻â â ¥â â …â „â Ž" }, { "input": "cyberpunks", "output": "⠉⠽⠃⠻â â ¥â â …â Ž" }, { "input": "cyberspace", "output": "⠉⠽⠃⠻⠎â â â ‰â ‘" }, { "input": "cyberspace's", "output": "⠉⠽⠃⠻⠎â â â ‰â ‘â „â Ž" }, { "input": "cyclamen", "output": "⠉⠽⠉⠇â â â ¢" }, { "input": "cyclamen's", "output": "⠉⠽⠉⠇â â â ¢â „â Ž" }, { "input": "cyclamens", "output": "⠉⠽⠉⠇â â â ¢â Ž" }, { "input": "cycle", "output": "⠉⠽⠉⠇⠑" }, { "input": "cycle's", "output": "⠉⠽⠉⠇⠑⠄⠎" }, { "input": "cycled", "output": "⠉⠽⠉⠇⠫" }, { "input": "cycles", "output": "⠉⠽⠉⠇⠑⠎" }, { "input": "cyclic", "output": "⠉⠽⠉⠇⠊⠉" }, { "input": "cyclical", "output": "⠉⠽⠉⠇⠊⠉â â ‡" }, { "input": "cyclically", "output": "⠉⠽⠉⠇⠊⠉⠠⠽" }, { "input": "cycling", "output": "⠉⠽⠉⠇⠌" }, { "input": "cyclist", "output": "⠉⠽⠉⠇⠊⠌" }, { "input": "cyclist's", "output": "⠉⠽⠉⠇⠊⠌⠄⠎" }, { "input": "cyclists", "output": "⠉⠽⠉⠇⠊⠌⠎" }, { "input": "cyclometer", "output": "⠉⠽⠉⠇⠕â â ‘â žâ »" }, { "input": "cyclometer's", "output": "⠉⠽⠉⠇⠕â â ‘⠞⠻⠄⠎" }, { "input": "cyclometers", "output": "⠉⠽⠉⠇⠕â â ‘⠞⠻⠎" }, { "input": "cyclone", "output": "⠉⠽⠉⠇â â •" }, { "input": "cyclone's", "output": "⠉⠽⠉⠇â â •â „â Ž" }, { "input": "cyclones", "output": "⠉⠽⠉⠇â â •â Ž" }, { "input": "cyclonic", "output": "⠉⠽⠉⠇⠕â â Šâ ‰" }, { "input": "cyclopedia", "output": "⠉⠽⠉⠇⠕â â «â Šâ " }, { "input": "cyclopedia's", "output": "⠉⠽⠉⠇⠕â â «â Šâ â „â Ž" }, { "input": "cyclopedias", "output": "⠉⠽⠉⠇⠕â â «â Šâ â Ž" }, { "input": "cyclopes", "output": "⠉⠽⠉⠇⠕â â ‘â Ž" }, { "input": "cyclops", "output": "⠉⠽⠉⠇⠕â â Ž" }, { "input": "cyclops's", "output": "⠉⠽⠉⠇⠕â â Žâ „â Ž" }, { "input": "cyclotron", "output": "⠉⠽⠉⠇⠕⠞⠗⠕â " }, { "input": "cyclotron's", "output": "⠉⠽⠉⠇⠕⠞⠗⠕â â „â Ž" }, { "input": "cyclotrons", "output": "⠉⠽⠉⠇⠕⠞⠗⠕â â Ž" }, { "input": "cygnet", "output": "⠉⠽⠛â â ‘â ž" }, { "input": "cygnet's", "output": "⠉⠽⠛â â ‘â žâ „â Ž" }, { "input": "cygnets", "output": "⠉⠽⠛â â ‘â žâ Ž" }, { "input": "cylinder", "output": "⠉⠽⠇⠔⠙⠻" }, { "input": "cylinder's", "output": "⠉⠽⠇⠔⠙⠻⠄⠎" }, { "input": "cylinders", "output": "⠉⠽⠇⠔⠙⠻⠎" }, { "input": "cylindrical", "output": "⠉⠽⠇⠔⠙⠗⠊⠉â â ‡" }, { "input": "cymbal", "output": "⠉⠽â â ƒâ â ‡" }, { "input": "cymbal's", "output": "⠉⠽â â ƒâ â ‡â „â Ž" }, { "input": "cymbalist", "output": "⠉⠽â â ƒâ â ‡â Šâ Œ" }, { "input": "cymbalist's", "output": "⠉⠽â â ƒâ â ‡â Šâ Œâ „â Ž" }, { "input": "cymbalists", "output": "⠉⠽â â ƒâ â ‡â Šâ Œâ Ž" }, { "input": "cymbals", "output": "⠉⠽â â ƒâ â ‡â Ž" }, { "input": "cynic", "output": "⠉⠽â â Šâ ‰" }, { "input": "cynic's", "output": "⠉⠽â â Šâ ‰â „â Ž" }, { "input": "cynical", "output": "⠉⠽â â Šâ ‰â â ‡" }, { "input": "cynically", "output": "⠉⠽â â Šâ ‰â  â ½" }, { "input": "cynicism", "output": "⠉⠽â â Šâ ‰â Šâ Žâ " }, { "input": "cynicism's", "output": "⠉⠽â â Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "cynics", "output": "⠉⠽â â Šâ ‰â Ž" }, { "input": "cynosure", "output": "⠉⠽â â •⠎⠥⠗⠑" }, { "input": "cynosure's", "output": "⠉⠽â â •⠎⠥⠗⠑⠄⠎" }, { "input": "cynosures", "output": "⠉⠽â â •⠎⠥⠗⠑⠎" }, { "input": "cypress", "output": "⠉⠽â â —â ‘â Žâ Ž" }, { "input": "cypress's", "output": "⠉⠽â â —â ‘â Žâ Žâ „â Ž" }, { "input": "cypresses", "output": "⠉⠽â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "cyst", "output": "⠉⠽⠌" }, { "input": "cyst's", "output": "⠉⠽⠌⠄⠎" }, { "input": "cystic", "output": "⠉⠽⠌⠊⠉" }, { "input": "cysts", "output": "⠉⠽⠌⠎" }, { "input": "cytologist", "output": "⠉⠽⠞⠕⠇⠕⠛⠊⠌" }, { "input": "cytologist's", "output": "⠉⠽⠞⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "cytologists", "output": "⠉⠽⠞⠕⠇⠕⠛⠊⠌⠎" }, { "input": "cytology", "output": "⠉⠽⠞⠕⠇⠕⠛⠽" }, { "input": "cytology's", "output": "⠉⠽⠞⠕⠇⠕⠛⠽⠄⠎" }, { "input": "cytoplasm", "output": "⠉⠽⠞⠕â â ‡â â Žâ " }, { "input": "cytoplasm's", "output": "⠉⠽⠞⠕â â ‡â â Žâ â „â Ž" }, { "input": "cytoplasmic", "output": "⠉⠽⠞⠕â â ‡â â Žâ â Šâ ‰" }, { "input": "cytosine", "output": "⠉⠽⠞⠕⠎⠔⠑" }, { "input": "cytosine's", "output": "⠉⠽⠞⠕⠎⠔⠑⠄⠎" }, { "input": "czar", "output": "⠉⠵⠜" }, { "input": "czar's", "output": "⠉⠵⠜⠄⠎" }, { "input": "czarina", "output": "⠉⠵⠜⠔â " }, { "input": "czarina's", "output": "⠉⠵⠜⠔â â „â Ž" }, { "input": "czarinas", "output": "⠉⠵⠜⠔â â Ž" }, { "input": "czars", "output": "⠉⠵⠜⠎" }, { "input": "d", "output": "â °â ™" }, { "input": "dB", "output": "⠙⠠⠃" }, { "input": "dab", "output": "â ™â â ƒ" }, { "input": "dab's", "output": "â ™â â ƒâ „â Ž" }, { "input": "dabbed", "output": "â ™â â †â «" }, { "input": "dabber", "output": "â ™â â †â »" }, { "input": "dabber's", "output": "â ™â â †â »â „â Ž" }, { "input": "dabbers", "output": "â ™â â †â »â Ž" }, { "input": "dabbing", "output": "â ™â â †â Œ" }, { "input": "dabble", "output": "â ™â â ƒâ ¼" }, { "input": "dabbled", "output": "â ™â â ƒâ ¼â ™" }, { "input": "dabbler", "output": "â ™â â ƒâ ¼â —" }, { "input": "dabbler's", "output": "â ™â â ƒâ ¼â —â „â Ž" }, { "input": "dabblers", "output": "â ™â â ƒâ ¼â —â Ž" }, { "input": "dabbles", "output": "â ™â â ƒâ ¼â Ž" }, { "input": "dabbling", "output": "â ™â â †â ‡â Œ" }, { "input": "dabs", "output": "â ™â â ƒâ Ž" }, { "input": "dace", "output": "â ™â â ‰â ‘" }, { "input": "dace's", "output": "â ™â â ‰â ‘â „â Ž" }, { "input": "daces", "output": "â ™â â ‰â ‘â Ž" }, { "input": "dacha", "output": "â ™â â ¡â " }, { "input": "dacha's", "output": "â ™â â ¡â â „â Ž" }, { "input": "dachas", "output": "â ™â â ¡â â Ž" }, { "input": "dachshund", "output": "â ™â â ¡â Žâ “â ¥â â ™" }, { "input": "dachshund's", "output": "â ™â â ¡â Žâ “â ¥â â ™â „â Ž" }, { "input": "dachshunds", "output": "â ™â â ¡â Žâ “â ¥â â ™â Ž" }, { "input": "dactyl", "output": "â ™â â ‰â žâ ½â ‡" }, { "input": "dactyl's", "output": "â ™â â ‰â žâ ½â ‡â „â Ž" }, { "input": "dactylic", "output": "â ™â â ‰â žâ ½â ‡â Šâ ‰" }, { "input": "dactylic's", "output": "â ™â â ‰â žâ ½â ‡â Šâ ‰â „â Ž" }, { "input": "dactylics", "output": "â ™â â ‰â žâ ½â ‡â Šâ ‰â Ž" }, { "input": "dactyls", "output": "â ™â â ‰â žâ ½â ‡â Ž" }, { "input": "dad", "output": "â ™â â ™" }, { "input": "dad's", "output": "â ™â â ™â „â Ž" }, { "input": "dadaism", "output": "â ™â â ™â â Šâ Žâ " }, { "input": "dadaism's", "output": "â ™â â ™â â Šâ Žâ â „â Ž" }, { "input": "dadaist", "output": "â ™â â ™â â Šâ Œ" }, { "input": "dadaist's", "output": "â ™â â ™â â Šâ Œâ „â Ž" }, { "input": "dadaists", "output": "â ™â â ™â â Šâ Œâ Ž" }, { "input": "daddies", "output": "â ™â â ²â Šâ ‘â Ž" }, { "input": "daddy", "output": "â ™â â ²â ½" }, { "input": "daddy's", "output": "â ™â â ²â ½â „â Ž" }, { "input": "dado", "output": "â ™â â ™â •" }, { "input": "dado's", "output": "â ™â â ™â •â „â Ž" }, { "input": "dadoes", "output": "â ™â â ™â •â ‘â Ž" }, { "input": "dads", "output": "â ™â â ™â Ž" }, { "input": "daemon", "output": "â ™â â ‘â â •â " }, { "input": "daemon's", "output": "â ™â â ‘â â •â â „â Ž" }, { "input": "daemonic", "output": "â ™â â ‘â â •â â Šâ ‰" }, { "input": "daemons", "output": "â ™â â ‘â â •â â Ž" }, { "input": "daffier", "output": "â ™â â –â Šâ »" }, { "input": "daffiest", "output": "â ™â â –â Šâ ‘â Œ" }, { "input": "daffiness", "output": "â ™â â –â Šâ °â Ž" }, { "input": "daffiness's", "output": "â ™â â –â Šâ °â Žâ „â Ž" }, { "input": "daffodil", "output": "â ™â â –⠕⠙⠊⠇" }, { "input": "daffodil's", "output": "â ™â â –⠕⠙⠊⠇⠄⠎" }, { "input": "daffodils", "output": "â ™â â –⠕⠙⠊⠇⠎" }, { "input": "daffy", "output": "â ™â â –â ½" }, { "input": "daft", "output": "â ™â â ‹â ž" }, { "input": "dafter", "output": "â ™â â ‹â žâ »" }, { "input": "daftest", "output": "â ™â â ‹â žâ ‘â Œ" }, { "input": "daftly", "output": "â ™â â ‹â žâ ‡â ½" }, { "input": "daftness's", "output": "â ™â â ‹â žâ °â Žâ „â Ž" }, { "input": "dagger", "output": "â ™â â ¶â »" }, { "input": "dagger's", "output": "â ™â â ¶â »â „â Ž" }, { "input": "daggers", "output": "â ™â â ¶â »â Ž" }, { "input": "daguerreotype", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â ‘" }, { "input": "daguerreotype's", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â ‘â „â Ž" }, { "input": "daguerreotyped", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â «" }, { "input": "daguerreotypes", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â ‘â Ž" }, { "input": "daguerreotyping", "output": "â ™â â ›â ¥â »â —â ‘â •â žâ ½â â Œ" }, { "input": "dahlia", "output": "â ™â â “⠇⠊â " }, { "input": "dahlia's", "output": "â ™â â “⠇⠊â â „â Ž" }, { "input": "dahlias", "output": "â ™â â “⠇⠊â â Ž" }, { "input": "dailies", "output": "â ™â â Šâ ‡â Šâ ‘â Ž" }, { "input": "dailiness", "output": "â ™â â Šâ ‡â Šâ °â Ž" }, { "input": "dailiness's", "output": "â ™â â Šâ ‡â Šâ °â Žâ „â Ž" }, { "input": "daily", "output": "â ™â â Šâ ‡â ½" }, { "input": "daily's", "output": "â ™â â Šâ ‡â ½â „â Ž" }, { "input": "daintier", "output": "â ™â â ”â žâ Šâ »" }, { "input": "dainties", "output": "â ™â â ”â žâ Šâ ‘â Ž" }, { "input": "daintiest", "output": "â ™â â ”â žâ Šâ ‘â Œ" }, { "input": "daintily", "output": "â ™â â ”⠞⠊⠇⠽" }, { "input": "daintiness", "output": "â ™â â ”â žâ Šâ °â Ž" }, { "input": "daintiness's", "output": "â ™â â ”â žâ Šâ °â Žâ „â Ž" }, { "input": "dainty", "output": "â ™â â ”â žâ ½" }, { "input": "dainty's", "output": "â ™â â ”⠞⠽⠄⠎" }, { "input": "daiquiri", "output": "â ™â â Šâ Ÿâ ¥â Šâ —â Š" }, { "input": "daiquiri's", "output": "â ™â â Šâ Ÿâ ¥â Šâ —â Šâ „â Ž" }, { "input": "daiquiris", "output": "â ™â â Šâ Ÿâ ¥â Šâ —â Šâ Ž" }, { "input": "dairies", "output": "â ™â â Šâ —â Šâ ‘â Ž" }, { "input": "dairy", "output": "â ™â â Šâ —â ½" }, { "input": "dairy's", "output": "â ™â â Šâ —⠽⠄⠎" }, { "input": "dairying", "output": "â ™â â Šâ —⠽⠌" }, { "input": "dairying's", "output": "â ™â â Šâ —⠽⠌⠄⠎" }, { "input": "dairymaid", "output": "â ™â â Šâ —â ½â â â Šâ ™" }, { "input": "dairymaid's", "output": "â ™â â Šâ —â ½â â â Šâ ™â „â Ž" }, { "input": "dairymaids", "output": "â ™â â Šâ —â ½â â â Šâ ™â Ž" }, { "input": "dairyman", "output": "â ™â â Šâ —â ½â â â " }, { "input": "dairyman's", "output": "â ™â â Šâ —â ½â â â â „â Ž" }, { "input": "dairymen", "output": "â ™â â Šâ —â ½â â ¢" }, { "input": "dairywoman", "output": "â ™â â Šâ —⠽⠺⠕â â â " }, { "input": "dairywoman's", "output": "â ™â â Šâ —⠽⠺⠕â â â â „â Ž" }, { "input": "dairywomen", "output": "â ™â â Šâ —⠽⠺⠕â â ¢" }, { "input": "dais", "output": "â ™â â Šâ Ž" }, { "input": "dais's", "output": "â ™â â Šâ Žâ „â Ž" }, { "input": "daises", "output": "â ™â â Šâ Žâ ‘â Ž" }, { "input": "daisies", "output": "â ™â â Šâ Žâ Šâ ‘â Ž" }, { "input": "daisy", "output": "â ™â â Šâ Žâ ½" }, { "input": "daisy's", "output": "â ™â â Šâ Žâ ½â „â Ž" }, { "input": "dale", "output": "â ™â â ‡â ‘" }, { "input": "dale's", "output": "â ™â â ‡â ‘â „â Ž" }, { "input": "dales", "output": "â ™â â ‡â ‘â Ž" }, { "input": "dalliance", "output": "â ™â â ‡â ‡â Šâ ¨â ‘" }, { "input": "dalliance's", "output": "â ™â â ‡â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "dalliances", "output": "â ™â â ‡â ‡â Šâ ¨â ‘â Ž" }, { "input": "dallied", "output": "â ™â â ‡â ‡â Šâ «" }, { "input": "dallier", "output": "â ™â â ‡â ‡â Šâ »" }, { "input": "dallier's", "output": "â ™â â ‡â ‡â Šâ »â „â Ž" }, { "input": "dalliers", "output": "â ™â â ‡â ‡â Šâ »â Ž" }, { "input": "dallies", "output": "â ™â â ‡â ‡â Šâ ‘â Ž" }, { "input": "dally", "output": "⠙⠠⠽" }, { "input": "dallying", "output": "⠙⠠⠽⠌" }, { "input": "dalmatian", "output": "â ™â â ‡â â â žâ Šâ â " }, { "input": "dalmatian's", "output": "â ™â â ‡â â â žâ Šâ â â „â Ž" }, { "input": "dalmatians", "output": "â ™â â ‡â â â žâ Šâ â â Ž" }, { "input": "dam", "output": "â ™â â " }, { "input": "dam's", "output": "â ™â â â „â Ž" }, { "input": "damage", "output": "â ™â â â â ›â ‘" }, { "input": "damage's", "output": "â ™â â â â ›â ‘â „â Ž" }, { "input": "damageable", "output": "â ™â â â â ›â ‘â â ¼" }, { "input": "damaged", "output": "â ™â â â â ›â «" }, { "input": "damages", "output": "â ™â â â â ›â ‘â Ž" }, { "input": "damages's", "output": "â ™â â â â ›â ‘â Žâ „â Ž" }, { "input": "damaging", "output": "â ™â â â â ›â Œ" }, { "input": "damask", "output": "â ™â â â â Žâ …" }, { "input": "damask's", "output": "â ™â â â â Žâ …â „â Ž" }, { "input": "damasked", "output": "â ™â â â â Žâ …â «" }, { "input": "damasking", "output": "â ™â â â â Žâ …â Œ" }, { "input": "damasks", "output": "â ™â â â â Žâ …â Ž" }, { "input": "dame", "output": "â ™â â â ‘" }, { "input": "dame's", "output": "â ™â â â ‘â „â Ž" }, { "input": "dames", "output": "â ™â â â ‘â Ž" }, { "input": "dammed", "output": "â ™â â â â «" }, { "input": "damming", "output": "â ™â â â â Œ" }, { "input": "damn", "output": "â ™â â â " }, { "input": "damn's", "output": "â ™â â â â „â Ž" }, { "input": "damnable", "output": "â ™â â â â â ¼" }, { "input": "damnably", "output": "â ™â â â â â ƒâ ‡â ½" }, { "input": "damnation", "output": "â ™â â â â  â " }, { "input": "damnation's", "output": "â ™â â â â  â â „â Ž" }, { "input": "damned", "output": "â ™â â â â «" }, { "input": "damnedest", "output": "â ™â â â â «â ‘â Œ" }, { "input": "damning", "output": "â ™â â â â Œ" }, { "input": "damns", "output": "â ™â â â â Ž" }, { "input": "damp", "output": "â ™â â â " }, { "input": "damp's", "output": "â ™â â â â „â Ž" }, { "input": "damped", "output": "â ™â â â â «" }, { "input": "dampen", "output": "â ™â â â â ¢" }, { "input": "dampened", "output": "â ™â â â â ¢â «" }, { "input": "dampener", "output": "â ™â â â â ¢â »" }, { "input": "dampener's", "output": "â ™â â â â ¢â »â „â Ž" }, { "input": "dampeners", "output": "â ™â â â â ¢â »â Ž" }, { "input": "dampening", "output": "â ™â â â â ¢â Œ" }, { "input": "dampens", "output": "â ™â â â â ¢â Ž" }, { "input": "damper", "output": "â ™â â â â »" }, { "input": "damper's", "output": "â ™â â â â »â „â Ž" }, { "input": "dampers", "output": "â ™â â â â »â Ž" }, { "input": "dampest", "output": "â ™â â â â ‘â Œ" }, { "input": "damping", "output": "â ™â â â â Œ" }, { "input": "damply", "output": "â ™â â â â ‡â ½" }, { "input": "dampness", "output": "â ™â â â â °â Ž" }, { "input": "dampness's", "output": "â ™â â â â °â Žâ „â Ž" }, { "input": "damps", "output": "â ™â â â â Ž" }, { "input": "dams", "output": "â ™â â â Ž" }, { "input": "damsel", "output": "â ™â â â Žâ ‘â ‡" }, { "input": "damsel's", "output": "â ™â â â Žâ ‘⠇⠄⠎" }, { "input": "damselflies", "output": "â ™â â â Žâ ‘⠇⠋⠇⠊⠑⠎" }, { "input": "damselfly", "output": "â ™â â â Žâ ‘⠇⠋⠇⠽" }, { "input": "damselfly's", "output": "â ™â â â Žâ ‘⠇⠋⠇⠽⠄⠎" }, { "input": "damsels", "output": "â ™â â â Žâ ‘⠇⠎" }, { "input": "damson", "output": "â ™â â â Žâ •â " }, { "input": "damson's", "output": "â ™â â â Žâ •â â „â Ž" }, { "input": "damsons", "output": "â ™â â â Žâ •â â Ž" }, { "input": "dance", "output": "⠙⠨⠑" }, { "input": "dance's", "output": "⠙⠨⠑⠄⠎" }, { "input": "danced", "output": "⠙⠨⠑⠙" }, { "input": "dancer", "output": "⠙⠨⠑⠗" }, { "input": "dancer's", "output": "⠙⠨⠑⠗⠄⠎" }, { "input": "dancers", "output": "⠙⠨⠑⠗⠎" }, { "input": "dances", "output": "⠙⠨⠑⠎" }, { "input": "dancing", "output": "â ™â â â ‰â Œ" }, { "input": "dancing's", "output": "â ™â â â ‰â Œâ „â Ž" }, { "input": "dandelion", "output": "⠙⠯⠑⠇⠊⠕â " }, { "input": "dandelion's", "output": "⠙⠯⠑⠇⠊⠕â â „â Ž" }, { "input": "dandelions", "output": "⠙⠯⠑⠇⠊⠕â â Ž" }, { "input": "dander", "output": "⠙⠯⠻" }, { "input": "dander's", "output": "⠙⠯⠻⠄⠎" }, { "input": "dandier", "output": "⠙⠯⠊⠻" }, { "input": "dandies", "output": "⠙⠯⠊⠑⠎" }, { "input": "dandiest", "output": "⠙⠯⠊⠑⠌" }, { "input": "dandle", "output": "⠙⠯⠇⠑" }, { "input": "dandled", "output": "⠙⠯⠇⠫" }, { "input": "dandles", "output": "⠙⠯⠇⠑⠎" }, { "input": "dandling", "output": "⠙⠯⠇⠌" }, { "input": "dandruff", "output": "⠙⠯⠗⠥⠋⠋" }, { "input": "dandruff's", "output": "⠙⠯⠗⠥⠋⠋⠄⠎" }, { "input": "dandy", "output": "⠙⠯⠽" }, { "input": "dandy's", "output": "⠙⠯⠽⠄⠎" }, { "input": "danged", "output": "â ™â â â ›â «" }, { "input": "danger", "output": "â ™â â â ›â »" }, { "input": "danger's", "output": "â ™â â â ›â »â „â Ž" }, { "input": "dangerous", "output": "â ™â â â ›â »â ³â Ž" }, { "input": "dangerously", "output": "â ™â â â ›â »â ³â Žâ ‡â ½" }, { "input": "dangers", "output": "â ™â â â ›â »â Ž" }, { "input": "danging", "output": "â ™â â â ›â Œ" }, { "input": "dangle", "output": "â ™â â â ›â ‡â ‘" }, { "input": "dangled", "output": "â ™â â â ›â ‡â «" }, { "input": "dangler", "output": "â ™â â â ›â ‡â »" }, { "input": "dangler's", "output": "â ™â â â ›â ‡â »â „â Ž" }, { "input": "danglers", "output": "â ™â â â ›â ‡â »â Ž" }, { "input": "dangles", "output": "â ™â â â ›â ‡â ‘â Ž" }, { "input": "dangling", "output": "â ™â â â ›â ‡â Œ" }, { "input": "dangs", "output": "â ™â â â ›â Ž" }, { "input": "danish", "output": "â ™â â â Šâ ©" }, { "input": "danish's", "output": "â ™â â â Šâ ©â „â Ž" }, { "input": "danishes", "output": "â ™â â â Šâ ©â ‘â Ž" }, { "input": "dank", "output": "â ™â â â …" }, { "input": "danker", "output": "â ™â â â …â »" }, { "input": "dankest", "output": "â ™â â â …â ‘â Œ" }, { "input": "dankly", "output": "â ™â â â …⠇⠽" }, { "input": "dankness", "output": "â ™â â â …â °â Ž" }, { "input": "dankness's", "output": "â ™â â â …â °â Žâ „â Ž" }, { "input": "danseuse", "output": "â ™â â â Žâ ‘⠥⠎⠑" }, { "input": "danseuse's", "output": "â ™â â â Žâ ‘⠥⠎⠑⠄⠎" }, { "input": "danseuses", "output": "â ™â â â Žâ ‘⠥⠎⠑⠎" }, { "input": "dapper", "output": "â ™â â â â »" }, { "input": "dapperer", "output": "â ™â â â â »â »" }, { "input": "dapperest", "output": "â ™â â â â »â ‘â Œ" }, { "input": "dapple", "output": "â ™â â â â ‡â ‘" }, { "input": "dapple's", "output": "â ™â â â â ‡â ‘â „â Ž" }, { "input": "dappled", "output": "â ™â â â â ‡â «" }, { "input": "dapples", "output": "â ™â â â â ‡â ‘â Ž" }, { "input": "dappling", "output": "â ™â â â â ‡â Œ" }, { "input": "dare", "output": "⠙⠜⠑" }, { "input": "dare's", "output": "⠙⠜⠑⠄⠎" }, { "input": "dared", "output": "⠙⠜⠫" }, { "input": "daredevil", "output": "⠙⠜⠑⠙⠑⠧⠊⠇" }, { "input": "daredevil's", "output": "⠙⠜⠑⠙⠑⠧⠊⠇⠄⠎" }, { "input": "daredevilry", "output": "⠙⠜⠑⠙⠑⠧⠊⠇⠗⠽" }, { "input": "daredevilry's", "output": "⠙⠜⠑⠙⠑⠧⠊⠇⠗⠽⠄⠎" }, { "input": "daredevils", "output": "⠙⠜⠑⠙⠑⠧⠊⠇⠎" }, { "input": "darer", "output": "⠙⠜⠻" }, { "input": "darer's", "output": "⠙⠜⠻⠄⠎" }, { "input": "darers", "output": "⠙⠜⠻⠎" }, { "input": "dares", "output": "⠙⠜⠑⠎" }, { "input": "daring", "output": "⠙⠜⠌" }, { "input": "daring's", "output": "⠙⠜⠌⠄⠎" }, { "input": "daringly", "output": "⠙⠜⠌⠇⠽" }, { "input": "dark", "output": "⠙⠜⠅" }, { "input": "dark's", "output": "⠙⠜⠅⠄⠎" }, { "input": "darken", "output": "⠙⠜⠅⠢" }, { "input": "darkened", "output": "⠙⠜⠅⠢⠫" }, { "input": "darkener", "output": "⠙⠜⠅⠢⠻" }, { "input": "darkener's", "output": "⠙⠜⠅⠢⠻⠄⠎" }, { "input": "darkeners", "output": "⠙⠜⠅⠢⠻⠎" }, { "input": "darkening", "output": "⠙⠜⠅⠢⠌" }, { "input": "darkens", "output": "⠙⠜⠅⠢⠎" }, { "input": "darker", "output": "⠙⠜⠅⠻" }, { "input": "darkest", "output": "⠙⠜⠅⠑⠌" }, { "input": "darkly", "output": "⠙⠜⠅⠇⠽" }, { "input": "darkness", "output": "⠙⠜⠅⠰⠎" }, { "input": "darkness's", "output": "⠙⠜⠅⠰⠎⠄⠎" }, { "input": "darkroom", "output": "⠙⠜⠅⠗⠕⠕â " }, { "input": "darkroom's", "output": "⠙⠜⠅⠗⠕⠕â â „â Ž" }, { "input": "darkrooms", "output": "⠙⠜⠅⠗⠕⠕â â Ž" }, { "input": "darling", "output": "⠙⠜⠇⠌" }, { "input": "darling's", "output": "⠙⠜⠇⠌⠄⠎" }, { "input": "darlings", "output": "⠙⠜⠇⠌⠎" }, { "input": "darn", "output": "⠙⠜â " }, { "input": "darn's", "output": "⠙⠜â â „â Ž" }, { "input": "darned", "output": "⠙⠜â â «" }, { "input": "darneder", "output": "⠙⠜â â «â »" }, { "input": "darnedest", "output": "⠙⠜â â «â ‘â Œ" }, { "input": "darner", "output": "⠙⠜â â »" }, { "input": "darner's", "output": "⠙⠜â â »â „â Ž" }, { "input": "darners", "output": "⠙⠜â â »â Ž" }, { "input": "darning", "output": "⠙⠜â â Œ" }, { "input": "darns", "output": "⠙⠜â â Ž" }, { "input": "dart", "output": "⠙⠜⠞" }, { "input": "dart's", "output": "⠙⠜⠞⠄⠎" }, { "input": "dartboard", "output": "⠙⠜⠞⠃⠕⠜⠙" }, { "input": "dartboard's", "output": "⠙⠜⠞⠃⠕⠜⠙⠄⠎" }, { "input": "dartboards", "output": "⠙⠜⠞⠃⠕⠜⠙⠎" }, { "input": "darted", "output": "⠙⠜⠞⠫" }, { "input": "darter", "output": "⠙⠜⠞⠻" }, { "input": "darter's", "output": "⠙⠜⠞⠻⠄⠎" }, { "input": "darters", "output": "⠙⠜⠞⠻⠎" }, { "input": "darting", "output": "⠙⠜⠞⠌" }, { "input": "darts", "output": "⠙⠜⠞⠎" }, { "input": "dash", "output": "â ™â â ©" }, { "input": "dash's", "output": "â ™â â ©â „â Ž" }, { "input": "dashboard", "output": "â ™â â ©â ƒâ •⠜⠙" }, { "input": "dashboard's", "output": "â ™â â ©â ƒâ •⠜⠙⠄⠎" }, { "input": "dashboards", "output": "â ™â â ©â ƒâ •⠜⠙⠎" }, { "input": "dashed", "output": "â ™â â ©â «" }, { "input": "dasher", "output": "â ™â â ©â »" }, { "input": "dasher's", "output": "â ™â â ©â »â „â Ž" }, { "input": "dashers", "output": "â ™â â ©â »â Ž" }, { "input": "dashes", "output": "â ™â â ©â ‘â Ž" }, { "input": "dashiki", "output": "â ™â â ©â Šâ …â Š" }, { "input": "dashiki's", "output": "â ™â â ©â Šâ …â Šâ „â Ž" }, { "input": "dashikis", "output": "â ™â â ©â Šâ …â Šâ Ž" }, { "input": "dashing", "output": "â ™â â ©â Œ" }, { "input": "dashingly", "output": "â ™â â ©â Œâ ‡â ½" }, { "input": "dastard", "output": "â ™â â Œâ œâ ™" }, { "input": "dastard's", "output": "â ™â â Œâ œâ ™â „â Ž" }, { "input": "dastardliness", "output": "â ™â â Œâ œâ ™â ‡â Šâ °â Ž" }, { "input": "dastardliness's", "output": "â ™â â Œâ œâ ™â ‡â Šâ °â Žâ „â Ž" }, { "input": "dastardly", "output": "â ™â â Œâ œâ ™â ‡â ½" }, { "input": "dastards", "output": "â ™â â Œâ œâ ™â Ž" }, { "input": "data", "output": "â ™â â žâ " }, { "input": "database", "output": "â ™â â žâ â ƒâ â Žâ ‘" }, { "input": "database's", "output": "â ™â â žâ â ƒâ â Žâ ‘â „â Ž" }, { "input": "databases", "output": "â ™â â žâ â ƒâ â Žâ ‘â Ž" }, { "input": "date", "output": "â ™â â žâ ‘" }, { "input": "date's", "output": "â ™â â žâ ‘â „â Ž" }, { "input": "dated", "output": "â ™â â žâ «" }, { "input": "dateless", "output": "â ™â â žâ ‘⠨⠎" }, { "input": "dateline", "output": "â ™â â žâ ‘⠇⠔⠑" }, { "input": "dateline's", "output": "â ™â â žâ ‘⠇⠔⠑⠄⠎" }, { "input": "datelined", "output": "â ™â â žâ ‘⠇⠔⠫" }, { "input": "datelines", "output": "â ™â â žâ ‘⠇⠔⠑⠎" }, { "input": "datelining", "output": "â ™â â žâ ‘⠇⠔⠌" }, { "input": "dater", "output": "â ™â â žâ »" }, { "input": "dater's", "output": "â ™â â žâ »â „â Ž" }, { "input": "daters", "output": "â ™â â žâ »â Ž" }, { "input": "dates", "output": "â ™â â žâ ‘â Ž" }, { "input": "dating", "output": "â ™â â žâ Œ" }, { "input": "dative", "output": "â ™â â žâ Šâ §â ‘" }, { "input": "dative's", "output": "â ™â â žâ Šâ §â ‘â „â Ž" }, { "input": "datives", "output": "â ™â â žâ Šâ §â ‘â Ž" }, { "input": "datum", "output": "â ™â â žâ ¥â " }, { "input": "datum's", "output": "â ™â â žâ ¥â â „â Ž" }, { "input": "daub", "output": "â ™â â ¥â ƒ" }, { "input": "daub's", "output": "â ™â â ¥â ƒâ „â Ž" }, { "input": "daubed", "output": "â ™â â ¥â ƒâ «" }, { "input": "dauber", "output": "â ™â â ¥â ƒâ »" }, { "input": "dauber's", "output": "â ™â â ¥â ƒâ »â „â Ž" }, { "input": "daubers", "output": "â ™â â ¥â ƒâ »â Ž" }, { "input": "daubing", "output": "â ™â â ¥â ƒâ Œ" }, { "input": "daubs", "output": "â ™â â ¥â ƒâ Ž" }, { "input": "daughter", "output": "â ™â â ¥â £â žâ »" }, { "input": "daughter's", "output": "â ™â â ¥â £â žâ »â „â Ž" }, { "input": "daughterly", "output": "â ™â â ¥â £â žâ »â ‡â ½" }, { "input": "daughters", "output": "â ™â â ¥â £â žâ »â Ž" }, { "input": "daunt", "output": "â ™â â ¥â â ž" }, { "input": "daunted", "output": "â ™â â ¥â â žâ «" }, { "input": "daunting", "output": "â ™â â ¥â â žâ Œ" }, { "input": "dauntless", "output": "â ™â â ¥â â žâ ¨â Ž" }, { "input": "dauntlessly", "output": "â ™â â ¥â â žâ ¨â Žâ ‡â ½" }, { "input": "dauntlessness", "output": "â ™â â ¥â â žâ ¨â Žâ °â Ž" }, { "input": "dauntlessness's", "output": "â ™â â ¥â â žâ ¨â Žâ °â Žâ „â Ž" }, { "input": "daunts", "output": "â ™â â ¥â â žâ Ž" }, { "input": "dauphin", "output": "â ™â â ¥â â “â ”" }, { "input": "dauphin's", "output": "â ™â â ¥â â “⠔⠄⠎" }, { "input": "dauphins", "output": "â ™â â ¥â â “⠔⠎" }, { "input": "davenport", "output": "â ™â â §â ¢â â •â —â ž" }, { "input": "davenport's", "output": "â ™â â §â ¢â â •â —â žâ „â Ž" }, { "input": "davenports", "output": "â ™â â §â ¢â â •â —â žâ Ž" }, { "input": "davit", "output": "â ™â â §â Šâ ž" }, { "input": "davit's", "output": "â ™â â §â Šâ žâ „â Ž" }, { "input": "davits", "output": "â ™â â §â Šâ žâ Ž" }, { "input": "dawdle", "output": "â ™â â ºâ ™â ‡â ‘" }, { "input": "dawdled", "output": "â ™â â ºâ ™â ‡â «" }, { "input": "dawdler", "output": "â ™â â ºâ ™â ‡â »" }, { "input": "dawdler's", "output": "â ™â â ºâ ™â ‡â »â „â Ž" }, { "input": "dawdlers", "output": "â ™â â ºâ ™â ‡â »â Ž" }, { "input": "dawdles", "output": "â ™â â ºâ ™â ‡â ‘â Ž" }, { "input": "dawdling", "output": "â ™â â ºâ ™â ‡â Œ" }, { "input": "dawn", "output": "â ™â â ºâ " }, { "input": "dawn's", "output": "â ™â â ºâ â „â Ž" }, { "input": "dawned", "output": "â ™â â ºâ â «" }, { "input": "dawning", "output": "â ™â â ºâ â Œ" }, { "input": "dawns", "output": "â ™â â ºâ â Ž" }, { "input": "day", "output": "â â ™" }, { "input": "day's", "output": "â â ™â „â Ž" }, { "input": "daybed", "output": "â â ™â ƒâ «" }, { "input": "daybed's", "output": "â â ™â ƒâ «â „â Ž" }, { "input": "daybeds", "output": "â â ™â ƒâ «â Ž" }, { "input": "daybreak", "output": "â â ™â ƒâ —â ‚â …" }, { "input": "daybreak's", "output": "â â ™â ƒâ —â ‚â …â „â Ž" }, { "input": "daycare's", "output": "â â ™â ‰â œâ ‘â „â Ž" }, { "input": "daydream", "output": "â â ™â ™â —â ‚â " }, { "input": "daydream's", "output": "â â ™â ™â —â ‚â â „â Ž" }, { "input": "daydreamed", "output": "â â ™â ™â —â ‚â â «" }, { "input": "daydreamer", "output": "â â ™â ™â —â ‚â â »" }, { "input": "daydreamer's", "output": "â â ™â ™â —â ‚â â »â „â Ž" }, { "input": "daydreamers", "output": "â â ™â ™â —â ‚â â »â Ž" }, { "input": "daydreaming", "output": "â â ™â ™â —â ‚â â Œ" }, { "input": "daydreams", "output": "â â ™â ™â —â ‚â â Ž" }, { "input": "daylight", "output": "â â ™â ‡â Šâ £â ž" }, { "input": "daylight's", "output": "â â ™â ‡â Šâ £â žâ „â Ž" }, { "input": "daylights", "output": "â â ™â ‡â Šâ £â žâ Ž" }, { "input": "daylights's", "output": "â â ™â ‡â Šâ £â žâ Žâ „â Ž" }, { "input": "days", "output": "â â ™â Ž" }, { "input": "daytime", "output": "â â ™â â ž" }, { "input": "daytime's", "output": "â â ™â â žâ „â Ž" }, { "input": "daze", "output": "â ™â â µâ ‘" }, { "input": "daze's", "output": "â ™â â µâ ‘â „â Ž" }, { "input": "dazed", "output": "â ™â â µâ «" }, { "input": "dazedly", "output": "â ™â â µâ «â ‡â ½" }, { "input": "dazes", "output": "â ™â â µâ ‘â Ž" }, { "input": "dazing", "output": "â ™â â µâ Œ" }, { "input": "dazzle", "output": "â ™â â µâ µâ ‡â ‘" }, { "input": "dazzle's", "output": "â ™â â µâ µâ ‡â ‘â „â Ž" }, { "input": "dazzled", "output": "â ™â â µâ µâ ‡â «" }, { "input": "dazzler", "output": "â ™â â µâ µâ ‡â »" }, { "input": "dazzler's", "output": "â ™â â µâ µâ ‡â »â „â Ž" }, { "input": "dazzlers", "output": "â ™â â µâ µâ ‡â »â Ž" }, { "input": "dazzles", "output": "â ™â â µâ µâ ‡â ‘â Ž" }, { "input": "dazzling", "output": "â ™â â µâ µâ ‡â Œ" }, { "input": "db", "output": "⠙⠃" }, { "input": "dc", "output": "⠙⠉" }, { "input": "deacon", "output": "⠙⠂⠉⠕â " }, { "input": "deacon's", "output": "⠙⠂⠉⠕â â „â Ž" }, { "input": "deaconess", "output": "⠙⠂⠉⠕⠰⠎" }, { "input": "deaconess's", "output": "⠙⠂⠉⠕⠰⠎⠄⠎" }, { "input": "deaconesses", "output": "⠙⠂⠉⠕⠰⠎⠑⠎" }, { "input": "deacons", "output": "⠙⠂⠉⠕â â Ž" }, { "input": "deactivate", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "deactivated", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ «" }, { "input": "deactivates", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "deactivating", "output": "⠙⠑â â ‰â žâ Šâ §â â žâ Œ" }, { "input": "deactivation", "output": "⠙⠑â â ‰â žâ Šâ §â  â " }, { "input": "deactivation's", "output": "⠙⠑â â ‰â žâ Šâ §â  â â „â Ž" }, { "input": "dead", "output": "⠙⠂⠙" }, { "input": "dead's", "output": "⠙⠂⠙⠄⠎" }, { "input": "deadbeat", "output": "⠙⠂⠙⠃⠂⠞" }, { "input": "deadbeat's", "output": "⠙⠂⠙⠃⠂⠞⠄⠎" }, { "input": "deadbeats", "output": "⠙⠂⠙⠃⠂⠞⠎" }, { "input": "deadbolt", "output": "⠙⠂⠙⠃⠕⠇⠞" }, { "input": "deadbolt's", "output": "⠙⠂⠙⠃⠕⠇⠞⠄⠎" }, { "input": "deadbolts", "output": "⠙⠂⠙⠃⠕⠇⠞⠎" }, { "input": "deaden", "output": "⠙⠂⠙⠢" }, { "input": "deadened", "output": "⠙⠂⠙⠢⠫" }, { "input": "deadening", "output": "⠙⠂⠙⠢⠌" }, { "input": "deadens", "output": "⠙⠂⠙⠢⠎" }, { "input": "deader", "output": "⠙⠂⠙⠻" }, { "input": "deadest", "output": "⠙⠂⠙⠑⠌" }, { "input": "deadlier", "output": "⠙⠂⠙⠇⠊⠻" }, { "input": "deadliest", "output": "⠙⠂⠙⠇⠊⠑⠌" }, { "input": "deadline", "output": "⠙⠂⠙⠇⠔⠑" }, { "input": "deadline's", "output": "⠙⠂⠙⠇⠔⠑⠄⠎" }, { "input": "deadlines", "output": "⠙⠂⠙⠇⠔⠑⠎" }, { "input": "deadliness", "output": "⠙⠂⠙⠇⠊⠰⠎" }, { "input": "deadliness's", "output": "⠙⠂⠙⠇⠊⠰⠎⠄⠎" }, { "input": "deadlock", "output": "⠙⠂⠙⠇⠕⠉⠅" }, { "input": "deadlock's", "output": "⠙⠂⠙⠇⠕⠉⠅⠄⠎" }, { "input": "deadlocked", "output": "⠙⠂⠙⠇⠕⠉⠅⠫" }, { "input": "deadlocking", "output": "⠙⠂⠙⠇⠕⠉⠅⠌" }, { "input": "deadlocks", "output": "⠙⠂⠙⠇⠕⠉⠅⠎" }, { "input": "deadly", "output": "⠙⠂⠙⠇⠽" }, { "input": "deadpan", "output": "⠙⠂⠙â â â " }, { "input": "deadpan's", "output": "⠙⠂⠙â â â â „â Ž" }, { "input": "deadpanned", "output": "⠙⠂⠙â â â â â «" }, { "input": "deadpanning", "output": "⠙⠂⠙â â â â â Œ" }, { "input": "deadpans", "output": "⠙⠂⠙â â â â Ž" }, { "input": "deadwood", "output": "⠙⠂⠙⠺⠕⠕⠙" }, { "input": "deadwood's", "output": "⠙⠂⠙⠺⠕⠕⠙⠄⠎" }, { "input": "deaf", "output": "⠙⠂⠋" }, { "input": "deafen", "output": "⠙⠂⠋⠢" }, { "input": "deafened", "output": "⠙⠂⠋⠢⠫" }, { "input": "deafening", "output": "⠙⠂⠋⠢⠌" }, { "input": "deafeningly", "output": "⠙⠂⠋⠢⠌⠇⠽" }, { "input": "deafens", "output": "⠙⠂⠋⠢⠎" }, { "input": "deafer", "output": "⠙⠂⠋⠻" }, { "input": "deafest", "output": "⠙⠂⠋⠑⠌" }, { "input": "deafness", "output": "⠙⠂⠋⠰⠎" }, { "input": "deafness's", "output": "⠙⠂⠋⠰⠎⠄⠎" }, { "input": "deal", "output": "⠙⠂⠇" }, { "input": "deal's", "output": "⠙⠂⠇⠄⠎" }, { "input": "dealer", "output": "⠙⠂⠇⠻" }, { "input": "dealer's", "output": "⠙⠂⠇⠻⠄⠎" }, { "input": "dealers", "output": "⠙⠂⠇⠻⠎" }, { "input": "dealership", "output": "⠙⠂⠇⠻⠩⠊â " }, { "input": "dealership's", "output": "⠙⠂⠇⠻⠩⠊â â „â Ž" }, { "input": "dealerships", "output": "⠙⠂⠇⠻⠩⠊â â Ž" }, { "input": "dealing", "output": "⠙⠂⠇⠌" }, { "input": "dealing's", "output": "⠙⠂⠇⠌⠄⠎" }, { "input": "dealings", "output": "⠙⠂⠇⠌⠎" }, { "input": "deals", "output": "⠙⠂⠇⠎" }, { "input": "dealt", "output": "⠙⠂⠇⠞" }, { "input": "dean", "output": "⠙⠂â " }, { "input": "dean's", "output": "⠙⠂â â „â Ž" }, { "input": "deans", "output": "⠙⠂â â Ž" }, { "input": "deanship", "output": "⠙⠂â â ©â Šâ " }, { "input": "deanship's", "output": "⠙⠂â â ©â Šâ â „â Ž" }, { "input": "dear", "output": "⠙⠑⠜" }, { "input": "dear's", "output": "⠙⠑⠜⠄⠎" }, { "input": "dearer", "output": "⠙⠑⠜⠻" }, { "input": "dearest", "output": "⠙⠑⠜⠑⠌" }, { "input": "dearly", "output": "⠙⠑⠜⠇⠽" }, { "input": "dearness", "output": "⠙⠑⠜⠰⠎" }, { "input": "dearness's", "output": "⠙⠑⠜⠰⠎⠄⠎" }, { "input": "dears", "output": "⠙⠑⠜⠎" }, { "input": "dearth", "output": "⠙⠑⠜⠹" }, { "input": "dearth's", "output": "⠙⠑⠜⠹⠄⠎" }, { "input": "dearths", "output": "⠙⠑⠜⠹⠎" }, { "input": "death", "output": "⠙⠂⠹" }, { "input": "death's", "output": "⠙⠂⠹⠄⠎" }, { "input": "deathbed", "output": "⠙⠂⠹⠃⠫" }, { "input": "deathbed's", "output": "⠙⠂⠹⠃⠫⠄⠎" }, { "input": "deathbeds", "output": "⠙⠂⠹⠃⠫⠎" }, { "input": "deathblow", "output": "⠙⠂⠹⠃⠇⠪" }, { "input": "deathblow's", "output": "⠙⠂⠹⠃⠇⠪⠄⠎" }, { "input": "deathblows", "output": "⠙⠂⠹⠃⠇⠪⠎" }, { "input": "deathless", "output": "⠙⠂⠹⠨⠎" }, { "input": "deathlessly", "output": "⠙⠂⠹⠨⠎⠇⠽" }, { "input": "deathlike", "output": "⠙⠂⠹⠇⠊⠅⠑" }, { "input": "deathly", "output": "⠙⠂⠹⠇⠽" }, { "input": "deaths", "output": "⠙⠂⠹⠎" }, { "input": "deathtrap", "output": "⠙⠂⠹⠞⠗â â " }, { "input": "deathtrap's", "output": "⠙⠂⠹⠞⠗â â â „â Ž" }, { "input": "deathtraps", "output": "⠙⠂⠹⠞⠗â â â Ž" }, { "input": "deathwatch", "output": "⠙⠂⠹⠺â â žâ ¡" }, { "input": "deathwatch's", "output": "⠙⠂⠹⠺â â žâ ¡â „â Ž" }, { "input": "deathwatches", "output": "⠙⠂⠹⠺â â žâ ¡â ‘â Ž" }, { "input": "deaves", "output": "⠙⠂⠧⠑⠎" }, { "input": "deb", "output": "⠙⠑⠃" }, { "input": "deb's", "output": "⠙⠑⠃⠄⠎" }, { "input": "debacle", "output": "⠙⠑⠃â â ‰â ‡â ‘" }, { "input": "debacle's", "output": "⠙⠑⠃â â ‰â ‡â ‘â „â Ž" }, { "input": "debacles", "output": "⠙⠑⠃â â ‰â ‡â ‘â Ž" }, { "input": "debar", "output": "⠙⠑⠃⠜" }, { "input": "debark", "output": "⠙⠑⠃⠜⠅" }, { "input": "debarkation", "output": "⠙⠑⠃⠜⠅⠠â " }, { "input": "debarkation's", "output": "⠙⠑⠃⠜⠅⠠â â „â Ž" }, { "input": "debarked", "output": "⠙⠑⠃⠜⠅⠫" }, { "input": "debarking", "output": "⠙⠑⠃⠜⠅⠌" }, { "input": "debarks", "output": "⠙⠑⠃⠜⠅⠎" }, { "input": "debarment", "output": "⠙⠑⠃⠜⠰⠞" }, { "input": "debarment's", "output": "⠙⠑⠃⠜⠰⠞⠄⠎" }, { "input": "debarred", "output": "⠙⠑⠃⠜⠗⠫" }, { "input": "debarring", "output": "⠙⠑⠃⠜⠗⠌" }, { "input": "debars", "output": "⠙⠑⠃⠜⠎" }, { "input": "debase", "output": "⠙⠑⠃â â Žâ ‘" }, { "input": "debased", "output": "⠙⠑⠃â â Žâ «" }, { "input": "debasement", "output": "⠙⠑⠃â â Žâ ‘â °â ž" }, { "input": "debasement's", "output": "⠙⠑⠃â â Žâ ‘â °â žâ „â Ž" }, { "input": "debasements", "output": "⠙⠑⠃â â Žâ ‘â °â žâ Ž" }, { "input": "debases", "output": "⠙⠑⠃â â Žâ ‘â Ž" }, { "input": "debasing", "output": "⠙⠑⠃â â Žâ Œ" }, { "input": "debatable", "output": "⠙⠑⠃â â žâ â ¼" }, { "input": "debate", "output": "⠙⠑⠃â â žâ ‘" }, { "input": "debate's", "output": "⠙⠑⠃â â žâ ‘â „â Ž" }, { "input": "debated", "output": "⠙⠑⠃â â žâ «" }, { "input": "debater", "output": "⠙⠑⠃â â žâ »" }, { "input": "debater's", "output": "⠙⠑⠃â â žâ »â „â Ž" }, { "input": "debaters", "output": "⠙⠑⠃â â žâ »â Ž" }, { "input": "debates", "output": "⠙⠑⠃â â žâ ‘â Ž" }, { "input": "debating", "output": "⠙⠑⠃â â žâ Œ" }, { "input": "debating's", "output": "⠙⠑⠃â â žâ Œâ „â Ž" }, { "input": "debauch", "output": "⠙⠑⠃â â ¥â ¡" }, { "input": "debauch's", "output": "⠙⠑⠃â â ¥â ¡â „â Ž" }, { "input": "debauched", "output": "⠙⠑⠃â â ¥â ¡â «" }, { "input": "debaucheries", "output": "⠙⠑⠃â â ¥â ¡â »â Šâ ‘â Ž" }, { "input": "debauchery", "output": "⠙⠑⠃â â ¥â ¡â »â ½" }, { "input": "debauchery's", "output": "⠙⠑⠃â â ¥â ¡â »â ½â „â Ž" }, { "input": "debauches", "output": "⠙⠑⠃â â ¥â ¡â ‘â Ž" }, { "input": "debauching", "output": "⠙⠑⠃â â ¥â ¡â Œ" }, { "input": "debenture", "output": "⠙⠑⠃⠢⠞⠥⠗⠑" }, { "input": "debenture's", "output": "⠙⠑⠃⠢⠞⠥⠗⠑⠄⠎" }, { "input": "debentures", "output": "⠙⠑⠃⠢⠞⠥⠗⠑⠎" }, { "input": "debilitate", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ ‘" }, { "input": "debilitated", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ «" }, { "input": "debilitates", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ ‘â Ž" }, { "input": "debilitating", "output": "⠙⠑⠃⠊⠇⠊⠞â â žâ Œ" }, { "input": "debilitation", "output": "⠙⠑⠃⠊⠇⠊⠞⠠â " }, { "input": "debilitation's", "output": "⠙⠑⠃⠊⠇⠊⠞⠠â â „â Ž" }, { "input": "debilities", "output": "⠙⠑⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "debility", "output": "⠙⠑⠃⠊⠇⠰⠽" }, { "input": "debility's", "output": "⠙⠑⠃⠊⠇⠰⠽⠄⠎" }, { "input": "debit", "output": "⠙⠑⠃⠊⠞" }, { "input": "debit's", "output": "⠙⠑⠃⠊⠞⠄⠎" }, { "input": "debited", "output": "⠙⠑⠃⠊⠞⠫" }, { "input": "debiting", "output": "⠙⠑⠃⠊⠞⠌" }, { "input": "debits", "output": "⠙⠑⠃⠊⠞⠎" }, { "input": "debonair", "output": "⠙⠑⠃⠕â â â Šâ —" }, { "input": "debonairly", "output": "⠙⠑⠃⠕â â â Šâ —⠇⠽" }, { "input": "debonairness", "output": "⠙⠑⠃⠕â â â Šâ —â °â Ž" }, { "input": "debonairness's", "output": "⠙⠑⠃⠕â â â Šâ —â °â Žâ „â Ž" }, { "input": "debouch", "output": "⠙⠑⠃⠳⠡" }, { "input": "debouched", "output": "⠙⠑⠃⠳⠡⠫" }, { "input": "debouches", "output": "⠙⠑⠃⠳⠡⠑⠎" }, { "input": "debouching", "output": "⠙⠑⠃⠳⠡⠌" }, { "input": "debrief", "output": "⠙⠑⠃⠗⠊⠑⠋" }, { "input": "debriefed", "output": "⠙⠑⠃⠗⠊⠑⠋⠫" }, { "input": "debriefing", "output": "⠙⠑⠃⠗⠊⠑⠋⠌" }, { "input": "debriefing's", "output": "⠙⠑⠃⠗⠊⠑⠋⠌⠄⠎" }, { "input": "debriefings", "output": "⠙⠑⠃⠗⠊⠑⠋⠌⠎" }, { "input": "debriefs", "output": "⠙⠑⠃⠗⠊⠑⠋⠎" }, { "input": "debris", "output": "⠙⠑⠃⠗⠊⠎" }, { "input": "debris's", "output": "⠙⠑⠃⠗⠊⠎⠄⠎" }, { "input": "debs", "output": "⠙⠑⠃⠎" }, { "input": "debt", "output": "⠙⠑⠃⠞" }, { "input": "debt's", "output": "⠙⠑⠃⠞⠄⠎" }, { "input": "debtor", "output": "⠙⠑⠃⠞⠕⠗" }, { "input": "debtor's", "output": "⠙⠑⠃⠞⠕⠗⠄⠎" }, { "input": "debtors", "output": "⠙⠑⠃⠞⠕⠗⠎" }, { "input": "debts", "output": "⠙⠑⠃⠞⠎" }, { "input": "debug", "output": "⠙⠑⠃⠥⠛" }, { "input": "debugged", "output": "⠙⠑⠃⠥⠶⠫" }, { "input": "debugger", "output": "⠙⠑⠃⠥⠶⠻" }, { "input": "debuggers", "output": "⠙⠑⠃⠥⠶⠻⠎" }, { "input": "debugging", "output": "⠙⠑⠃⠥⠶⠌" }, { "input": "debugs", "output": "⠙⠑⠃⠥⠛⠎" }, { "input": "debunk", "output": "⠙⠑⠃⠥â â …" }, { "input": "debunked", "output": "⠙⠑⠃⠥â â …â «" }, { "input": "debunking", "output": "⠙⠑⠃⠥â â …â Œ" }, { "input": "debunks", "output": "⠙⠑⠃⠥â â …â Ž" }, { "input": "debut", "output": "⠙⠑⠃⠥⠞" }, { "input": "debut's", "output": "⠙⠑⠃⠥⠞⠄⠎" }, { "input": "debuted", "output": "⠙⠑⠃⠥⠞⠫" }, { "input": "debuting", "output": "⠙⠑⠃⠥⠞⠌" }, { "input": "debuts", "output": "⠙⠑⠃⠥⠞⠎" }, { "input": "decade", "output": "⠙⠑⠉â â ™â ‘" }, { "input": "decade's", "output": "⠙⠑⠉â â ™â ‘â „â Ž" }, { "input": "decadence", "output": "⠙⠑⠉â â ™â °â ‘" }, { "input": "decadence's", "output": "⠙⠑⠉â â ™â °â ‘â „â Ž" }, { "input": "decadency", "output": "⠙⠑⠉â â ™â ¢â ‰â ½" }, { "input": "decadency's", "output": "⠙⠑⠉â â ™â ¢â ‰â ½â „â Ž" }, { "input": "decadent", "output": "⠙⠑⠉â â ™â ¢â ž" }, { "input": "decadent's", "output": "⠙⠑⠉â â ™â ¢â žâ „â Ž" }, { "input": "decadently", "output": "⠙⠑⠉â â ™â ¢â žâ ‡â ½" }, { "input": "decadents", "output": "⠙⠑⠉â â ™â ¢â žâ Ž" }, { "input": "decades", "output": "⠙⠑⠉â â ™â ‘â Ž" }, { "input": "decaf", "output": "⠙⠑⠉â â ‹" }, { "input": "decaf's", "output": "⠙⠑⠉â â ‹â „â Ž" }, { "input": "decaffeinate", "output": "⠙⠑⠉â â –â ‘â ”â â žâ ‘" }, { "input": "decaffeinated", "output": "⠙⠑⠉â â –â ‘â ”â â žâ «" }, { "input": "decaffeinates", "output": "⠙⠑⠉â â –â ‘â ”â â žâ ‘â Ž" }, { "input": "decaffeinating", "output": "⠙⠑⠉â â –â ‘â ”â â žâ Œ" }, { "input": "decagon", "output": "⠙⠑⠉â â ›â •â " }, { "input": "decagon's", "output": "⠙⠑⠉â â ›â •â â „â Ž" }, { "input": "decagons", "output": "⠙⠑⠉â â ›â •â â Ž" }, { "input": "decal", "output": "⠙⠑⠉â â ‡" }, { "input": "decal's", "output": "⠙⠑⠉â â ‡â „â Ž" }, { "input": "decals", "output": "⠙⠑⠉â â ‡â Ž" }, { "input": "decamp", "output": "⠙⠑⠉â â â " }, { "input": "decamped", "output": "⠙⠑⠉â â â â «" }, { "input": "decamping", "output": "⠙⠑⠉â â â â Œ" }, { "input": "decampment", "output": "⠙⠑⠉â â â â °â ž" }, { "input": "decampment's", "output": "⠙⠑⠉â â â â °â žâ „â Ž" }, { "input": "decamps", "output": "⠙⠑⠉â â â â Ž" }, { "input": "decant", "output": "⠙⠑⠉â â â ž" }, { "input": "decanted", "output": "⠙⠑⠉â â â žâ «" }, { "input": "decanter", "output": "⠙⠑⠉â â â žâ »" }, { "input": "decanter's", "output": "⠙⠑⠉â â â žâ »â „â Ž" }, { "input": "decanters", "output": "⠙⠑⠉â â â žâ »â Ž" }, { "input": "decanting", "output": "⠙⠑⠉â â â žâ Œ" }, { "input": "decants", "output": "⠙⠑⠉â â â žâ Ž" }, { "input": "decapitate", "output": "⠙⠑⠉â â â Šâ žâ â žâ ‘" }, { "input": "decapitated", "output": "⠙⠑⠉â â â Šâ žâ â žâ «" }, { "input": "decapitates", "output": "⠙⠑⠉â â â Šâ žâ â žâ ‘â Ž" }, { "input": "decapitating", "output": "⠙⠑⠉â â â Šâ žâ â žâ Œ" }, { "input": "decapitation", "output": "⠙⠑⠉â â â Šâ žâ  â " }, { "input": "decapitation's", "output": "⠙⠑⠉â â â Šâ žâ  â â „â Ž" }, { "input": "decapitations", "output": "⠙⠑⠉â â â Šâ žâ  â â Ž" }, { "input": "decapitator", "output": "⠙⠑⠉â â â Šâ žâ â žâ •â —" }, { "input": "decapitator's", "output": "⠙⠑⠉â â â Šâ žâ â žâ •â —â „â Ž" }, { "input": "decapitators", "output": "⠙⠑⠉â â â Šâ žâ â žâ •â —â Ž" }, { "input": "decathlon", "output": "⠙⠑⠉â â ¹â ‡â •â " }, { "input": "decathlon's", "output": "⠙⠑⠉â â ¹â ‡â •â â „â Ž" }, { "input": "decathlons", "output": "⠙⠑⠉â â ¹â ‡â •â â Ž" }, { "input": "decay", "output": "⠙⠑⠉â â ½" }, { "input": "decay's", "output": "⠙⠑⠉â â ½â „â Ž" }, { "input": "decayed", "output": "⠙⠑⠉â â ½â «" }, { "input": "decaying", "output": "⠙⠑⠉â â ½â Œ" }, { "input": "decays", "output": "⠙⠑⠉â â ½â Ž" }, { "input": "decease", "output": "⠙⠑⠉⠂⠎⠑" }, { "input": "decease's", "output": "⠙⠑⠉⠂⠎⠑⠄⠎" }, { "input": "deceased", "output": "⠙⠑⠉⠂⠎⠫" }, { "input": "deceased's", "output": "⠙⠑⠉⠂⠎⠫⠄⠎" }, { "input": "deceases", "output": "⠙⠑⠉⠂⠎⠑⠎" }, { "input": "deceasing", "output": "⠙⠑⠉⠂⠎⠌" }, { "input": "decedent", "output": "⠙⠑⠉⠫⠢⠞" }, { "input": "decedent's", "output": "⠙⠑⠉⠫⠢⠞⠄⠎" }, { "input": "decedents", "output": "⠙⠑⠉⠫⠢⠞⠎" }, { "input": "deceit", "output": "⠙⠑⠉⠑⠊⠞" }, { "input": "deceit's", "output": "⠙⠑⠉⠑⠊⠞⠄⠎" }, { "input": "deceitful", "output": "⠙⠑⠉⠑⠊⠞⠰⠇" }, { "input": "deceitfully", "output": "⠙⠑⠉⠑⠊⠞⠰⠇⠇⠽" }, { "input": "deceitfulness", "output": "⠙⠑⠉⠑⠊⠞⠰⠇⠰⠎" }, { "input": "deceitfulness's", "output": "⠙⠑⠉⠑⠊⠞⠰⠇⠰⠎⠄⠎" }, { "input": "deceits", "output": "⠙⠑⠉⠑⠊⠞⠎" }, { "input": "deceive", "output": "⠙⠉⠧" }, { "input": "deceived", "output": "⠙⠉⠧⠙" }, { "input": "deceiver", "output": "⠙⠉⠧⠗" }, { "input": "deceiver's", "output": "⠙⠉⠧⠗⠄⠎" }, { "input": "deceivers", "output": "⠙⠉⠧⠗⠎" }, { "input": "deceives", "output": "⠙⠉⠧⠎" }, { "input": "deceiving", "output": "⠙⠉⠧⠛" }, { "input": "deceivingly", "output": "⠙⠉⠧⠛⠇⠽" }, { "input": "decelerate", "output": "⠙⠑⠉⠑⠇⠻â â žâ ‘" }, { "input": "decelerated", "output": "⠙⠑⠉⠑⠇⠻â â žâ «" }, { "input": "decelerates", "output": "⠙⠑⠉⠑⠇⠻â â žâ ‘â Ž" }, { "input": "decelerating", "output": "⠙⠑⠉⠑⠇⠻â â žâ Œ" }, { "input": "deceleration", "output": "⠙⠑⠉⠑⠇⠻⠠â " }, { "input": "deceleration's", "output": "⠙⠑⠉⠑⠇⠻⠠â â „â Ž" }, { "input": "decelerator", "output": "⠙⠑⠉⠑⠇⠻â â žâ •â —" }, { "input": "decelerator's", "output": "⠙⠑⠉⠑⠇⠻â â žâ •â —â „â Ž" }, { "input": "decelerators", "output": "⠙⠑⠉⠑⠇⠻â â žâ •â —â Ž" }, { "input": "decencies", "output": "⠙⠑⠉⠢⠉⠊⠑⠎" }, { "input": "decency", "output": "⠙⠑⠉⠢⠉⠽" }, { "input": "decency's", "output": "⠙⠑⠉⠢⠉⠽⠄⠎" }, { "input": "decennial", "output": "⠙⠑⠉⠢â â Šâ â ‡" }, { "input": "decennial's", "output": "⠙⠑⠉⠢â â Šâ â ‡â „â Ž" }, { "input": "decennials", "output": "⠙⠑⠉⠢â â Šâ â ‡â Ž" }, { "input": "decent", "output": "⠙⠑⠉⠢⠞" }, { "input": "decently", "output": "⠙⠑⠉⠢⠞⠇⠽" }, { "input": "decentralization", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ  â " }, { "input": "decentralization's", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ  â â „â Ž" }, { "input": "decentralize", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ ‘" }, { "input": "decentralized", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ «" }, { "input": "decentralizes", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ ‘â Ž" }, { "input": "decentralizing", "output": "⠙⠑⠉⠢⠞⠗â â ‡â Šâ µâ Œ" }, { "input": "deception", "output": "⠙⠑⠉⠑â â °â " }, { "input": "deception's", "output": "⠙⠑⠉⠑â â °â â „â Ž" }, { "input": "deceptions", "output": "⠙⠑⠉⠑â â °â â Ž" }, { "input": "deceptive", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘" }, { "input": "deceptively", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘⠇⠽" }, { "input": "deceptiveness", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘â °â Ž" }, { "input": "deceptiveness's", "output": "⠙⠑⠉⠑â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "decibel", "output": "⠙⠑⠉⠊⠃⠑⠇" }, { "input": "decibel's", "output": "⠙⠑⠉⠊⠃⠑⠇⠄⠎" }, { "input": "decibels", "output": "⠙⠑⠉⠊⠃⠑⠇⠎" }, { "input": "decidable", "output": "⠙⠑⠉⠊⠙â â ¼" }, { "input": "decide", "output": "⠙⠑⠉⠊⠙⠑" }, { "input": "decided", "output": "⠙⠑⠉⠊⠙⠫" }, { "input": "decidedly", "output": "⠙⠑⠉⠊⠙⠫⠇⠽" }, { "input": "decides", "output": "⠙⠑⠉⠊⠙⠑⠎" }, { "input": "deciding", "output": "⠙⠑⠉⠊⠙⠌" }, { "input": "deciduous", "output": "⠙⠑⠉⠊⠙⠥⠳⠎" }, { "input": "deciliter", "output": "⠙⠑⠉⠊⠇⠊⠞⠻" }, { "input": "deciliter's", "output": "⠙⠑⠉⠊⠇⠊⠞⠻⠄⠎" }, { "input": "deciliters", "output": "⠙⠑⠉⠊⠇⠊⠞⠻⠎" }, { "input": "decimal", "output": "⠙⠑⠉⠊â â â ‡" }, { "input": "decimal's", "output": "⠙⠑⠉⠊â â â ‡â „â Ž" }, { "input": "decimalization", "output": "⠙⠑⠉⠊â â â ‡â Šâ µâ  â " }, { "input": "decimals", "output": "⠙⠑⠉⠊â â â ‡â Ž" }, { "input": "decimate", "output": "⠙⠑⠉⠊â â â žâ ‘" }, { "input": "decimated", "output": "⠙⠑⠉⠊â â â žâ «" }, { "input": "decimates", "output": "⠙⠑⠉⠊â â â žâ ‘â Ž" }, { "input": "decimating", "output": "⠙⠑⠉⠊â â â žâ Œ" }, { "input": "decimation", "output": "⠙⠑⠉⠊â â  â " }, { "input": "decimation's", "output": "⠙⠑⠉⠊â â  â â „â Ž" }, { "input": "decimeter", "output": "⠙⠑⠉⠊â â ‘â žâ »" }, { "input": "decimeter's", "output": "⠙⠑⠉⠊â â ‘⠞⠻⠄⠎" }, { "input": "decimeters", "output": "⠙⠑⠉⠊â â ‘⠞⠻⠎" }, { "input": "decipher", "output": "⠙⠑⠉⠊â â “â »" }, { "input": "decipherable", "output": "⠙⠑⠉⠊â â “â »â â ¼" }, { "input": "deciphered", "output": "⠙⠑⠉⠊â â “⠻⠫" }, { "input": "deciphering", "output": "⠙⠑⠉⠊â â “⠻⠌" }, { "input": "deciphers", "output": "⠙⠑⠉⠊â â “⠻⠎" }, { "input": "decision", "output": "⠙⠑⠉⠊⠨â " }, { "input": "decision's", "output": "⠙⠑⠉⠊⠨â â „â Ž" }, { "input": "decisions", "output": "⠙⠑⠉⠊⠨â â Ž" }, { "input": "decisive", "output": "⠙⠑⠉⠊⠎⠊⠧⠑" }, { "input": "decisively", "output": "⠙⠑⠉⠊⠎⠊⠧⠑⠇⠽" }, { "input": "decisiveness", "output": "⠙⠑⠉⠊⠎⠊⠧⠑⠰⠎" }, { "input": "decisiveness's", "output": "⠙⠑⠉⠊⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "deck", "output": "⠙⠑⠉⠅" }, { "input": "deck's", "output": "⠙⠑⠉⠅⠄⠎" }, { "input": "decked", "output": "⠙⠑⠉⠅⠫" }, { "input": "deckhand", "output": "⠙⠑⠉⠅⠓⠯" }, { "input": "deckhand's", "output": "⠙⠑⠉⠅⠓⠯⠄⠎" }, { "input": "deckhands", "output": "⠙⠑⠉⠅⠓⠯⠎" }, { "input": "decking", "output": "⠙⠑⠉⠅⠌" }, { "input": "decks", "output": "⠙⠑⠉⠅⠎" }, { "input": "declaim", "output": "⠙⠑⠉⠇â â Šâ " }, { "input": "declaimed", "output": "⠙⠑⠉⠇â â Šâ â «" }, { "input": "declaimer", "output": "⠙⠑⠉⠇â â Šâ â »" }, { "input": "declaimer's", "output": "⠙⠑⠉⠇â â Šâ â »â „â Ž" }, { "input": "declaimers", "output": "⠙⠑⠉⠇â â Šâ â »â Ž" }, { "input": "declaiming", "output": "⠙⠑⠉⠇â â Šâ â Œ" }, { "input": "declaims", "output": "⠙⠑⠉⠇â â Šâ â Ž" }, { "input": "declamation", "output": "⠙⠑⠉⠇â â â  â " }, { "input": "declamation's", "output": "⠙⠑⠉⠇â â â  â â „â Ž" }, { "input": "declamations", "output": "⠙⠑⠉⠇â â â  â â Ž" }, { "input": "declamatory", "output": "⠙⠑⠉⠇â â â â žâ •â —â ½" }, { "input": "declaration", "output": "⠙⠑⠉⠇⠜⠠â " }, { "input": "declaration's", "output": "⠙⠑⠉⠇⠜⠠â â „â Ž" }, { "input": "declarations", "output": "⠙⠑⠉⠇⠜⠠â â Ž" }, { "input": "declarative", "output": "⠙⠑⠉⠇⠜â â žâ Šâ §â ‘" }, { "input": "declaratory", "output": "⠙⠑⠉⠇⠜â â žâ •â —â ½" }, { "input": "declare", "output": "⠙⠉⠇" }, { "input": "declared", "output": "⠙⠉⠇⠙" }, { "input": "declarer", "output": "⠙⠉⠇⠗" }, { "input": "declarer's", "output": "⠙⠉⠇⠗⠄⠎" }, { "input": "declarers", "output": "⠙⠉⠇⠗⠎" }, { "input": "declares", "output": "⠙⠉⠇⠎" }, { "input": "declaring", "output": "⠙⠉⠇⠛" }, { "input": "declassification's", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "declassified", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "declassifies", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "declassify", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â ½" }, { "input": "declassifying", "output": "⠙⠑⠉⠇â â Žâ Žâ Šâ ‹â ½â Œ" }, { "input": "declension", "output": "⠙⠑⠉⠇⠢⠨â " }, { "input": "declension's", "output": "⠙⠑⠉⠇⠢⠨â â „â Ž" }, { "input": "declensions", "output": "⠙⠑⠉⠇⠢⠨â â Ž" }, { "input": "declination", "output": "⠙⠑⠉⠇⠔⠠â " }, { "input": "declination's", "output": "⠙⠑⠉⠇⠔⠠â â „â Ž" }, { "input": "decline", "output": "⠙⠑⠉⠇⠔⠑" }, { "input": "decline's", "output": "⠙⠑⠉⠇⠔⠑⠄⠎" }, { "input": "declined", "output": "⠙⠑⠉⠇⠔⠫" }, { "input": "decliner", "output": "⠙⠑⠉⠇⠔⠻" }, { "input": "decliner's", "output": "⠙⠑⠉⠇⠔⠻⠄⠎" }, { "input": "decliners", "output": "⠙⠑⠉⠇⠔⠻⠎" }, { "input": "declines", "output": "⠙⠑⠉⠇⠔⠑⠎" }, { "input": "declining", "output": "⠙⠑⠉⠇⠔⠌" }, { "input": "declivities", "output": "⠙⠑⠉⠇⠊⠧⠊⠞⠊⠑⠎" }, { "input": "declivity", "output": "⠙⠑⠉⠇⠊⠧⠰⠽" }, { "input": "declivity's", "output": "⠙⠑⠉⠇⠊⠧⠰⠽⠄⠎" }, { "input": "decode", "output": "⠙⠑⠉⠕⠙⠑" }, { "input": "decoded", "output": "⠙⠑⠉⠕⠙⠫" }, { "input": "decoder", "output": "⠙⠑⠉⠕⠙⠻" }, { "input": "decodes", "output": "⠙⠑⠉⠕⠙⠑⠎" }, { "input": "decoding", "output": "⠙⠑⠉⠕⠙⠌" }, { "input": "decolonization", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ  â " }, { "input": "decolonization's", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ  â â „â Ž" }, { "input": "decolonize", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ ‘" }, { "input": "decolonized", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ «" }, { "input": "decolonizes", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ ‘â Ž" }, { "input": "decolonizing", "output": "⠙⠑⠉⠕⠇⠕â â Šâ µâ Œ" }, { "input": "decommission", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â " }, { "input": "decommissioned", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â â «" }, { "input": "decommissioning", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â â Œ" }, { "input": "decommissions", "output": "⠙⠑⠉⠕â â â Šâ Žâ ¨â â Ž" }, { "input": "decompose", "output": "⠙⠑⠉⠕â â â •â Žâ ‘" }, { "input": "decomposed", "output": "⠙⠑⠉⠕â â â •â Žâ «" }, { "input": "decomposes", "output": "⠙⠑⠉⠕â â â •â Žâ ‘â Ž" }, { "input": "decomposing", "output": "⠙⠑⠉⠕â â â •â Žâ Œ" }, { "input": "decomposition", "output": "⠙⠑⠉⠕â â â •â Žâ Šâ °â " }, { "input": "decomposition's", "output": "⠙⠑⠉⠕â â â •â Žâ Šâ °â â „â Ž" }, { "input": "decompress", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Ž" }, { "input": "decompressed", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Žâ «" }, { "input": "decompresses", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "decompressing", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ Žâ Œ" }, { "input": "decompression", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ ¨â " }, { "input": "decompression's", "output": "⠙⠑⠉⠕â â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "decongestant", "output": "⠙⠑⠉⠕â â ›â ‘â Œâ â â ž" }, { "input": "decongestant's", "output": "⠙⠑⠉⠕â â ›â ‘â Œâ â â žâ „â Ž" }, { "input": "decongestants", "output": "⠙⠑⠉⠕â â ›â ‘â Œâ â â žâ Ž" }, { "input": "deconstruction", "output": "⠙⠑⠉⠕â â Œâ —⠥⠉⠰â " }, { "input": "deconstruction's", "output": "⠙⠑⠉⠕â â Œâ —⠥⠉⠰â â „â Ž" }, { "input": "deconstructions", "output": "⠙⠑⠉⠕â â Œâ —⠥⠉⠰â â Ž" }, { "input": "decontaminate", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ ‘" }, { "input": "decontaminated", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ «" }, { "input": "decontaminates", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ ‘â Ž" }, { "input": "decontaminating", "output": "⠙⠑⠉⠕â â žâ â â ”â â žâ Œ" }, { "input": "decontamination", "output": "⠙⠑⠉⠕â â žâ â â ”â  â " }, { "input": "decontamination's", "output": "⠙⠑⠉⠕â â žâ â â ”â  â â „â Ž" }, { "input": "decor", "output": "⠙⠑⠉⠕⠗" }, { "input": "decor's", "output": "⠙⠑⠉⠕⠗⠄⠎" }, { "input": "decorate", "output": "⠙⠑⠉⠕⠗â â žâ ‘" }, { "input": "decorated", "output": "⠙⠑⠉⠕⠗â â žâ «" }, { "input": "decorates", "output": "⠙⠑⠉⠕⠗â â žâ ‘â Ž" }, { "input": "decorating", "output": "⠙⠑⠉⠕⠗â â žâ Œ" }, { "input": "decorating's", "output": "⠙⠑⠉⠕⠗â â žâ Œâ „â Ž" }, { "input": "decoration", "output": "⠙⠑⠉⠕⠗⠠â " }, { "input": "decoration's", "output": "⠙⠑⠉⠕⠗⠠â â „â Ž" }, { "input": "decorations", "output": "⠙⠑⠉⠕⠗⠠â â Ž" }, { "input": "decorative", "output": "⠙⠑⠉⠕⠗â â žâ Šâ §â ‘" }, { "input": "decorator", "output": "⠙⠑⠉⠕⠗â â žâ •â —" }, { "input": "decorator's", "output": "⠙⠑⠉⠕⠗â â žâ •â —â „â Ž" }, { "input": "decorators", "output": "⠙⠑⠉⠕⠗â â žâ •â —â Ž" }, { "input": "decorous", "output": "⠙⠑⠉⠕⠗⠳⠎" }, { "input": "decorously", "output": "⠙⠑⠉⠕⠗⠳⠎⠇⠽" }, { "input": "decorousness", "output": "⠙⠑⠉⠕⠗⠳⠎⠰⠎" }, { "input": "decorousness's", "output": "⠙⠑⠉⠕⠗⠳⠎⠰⠎⠄⠎" }, { "input": "decors", "output": "⠙⠑⠉⠕⠗⠎" }, { "input": "decorum", "output": "⠙⠑⠉⠕⠗⠥â " }, { "input": "decorum's", "output": "⠙⠑⠉⠕⠗⠥â â „â Ž" }, { "input": "decoupage", "output": "⠙⠑⠉⠳â â â ›â ‘" }, { "input": "decoupage's", "output": "⠙⠑⠉⠳â â â ›â ‘â „â Ž" }, { "input": "decoupaged", "output": "⠙⠑⠉⠳â â â ›â «" }, { "input": "decoupages", "output": "⠙⠑⠉⠳â â â ›â ‘â Ž" }, { "input": "decoupaging", "output": "⠙⠑⠉⠳â â â ›â Œ" }, { "input": "decoy", "output": "⠙⠑⠉⠕⠽" }, { "input": "decoy's", "output": "⠙⠑⠉⠕⠽⠄⠎" }, { "input": "decoyed", "output": "⠙⠑⠉⠕⠽⠫" }, { "input": "decoying", "output": "⠙⠑⠉⠕⠽⠌" }, { "input": "decoys", "output": "⠙⠑⠉⠕⠽⠎" }, { "input": "decrease", "output": "⠙⠑⠉⠗⠂⠎⠑" }, { "input": "decrease's", "output": "⠙⠑⠉⠗⠂⠎⠑⠄⠎" }, { "input": "decreased", "output": "⠙⠑⠉⠗⠂⠎⠫" }, { "input": "decreases", "output": "⠙⠑⠉⠗⠂⠎⠑⠎" }, { "input": "decreasing", "output": "⠙⠑⠉⠗⠂⠎⠌" }, { "input": "decreasingly", "output": "⠙⠑⠉⠗⠂⠎⠌⠇⠽" }, { "input": "decree", "output": "⠙⠑⠉⠗⠑⠑" }, { "input": "decree's", "output": "⠙⠑⠉⠗⠑⠑⠄⠎" }, { "input": "decreed", "output": "⠙⠑⠉⠗⠑⠫" }, { "input": "decreeing", "output": "⠙⠑⠉⠗⠑⠑⠌" }, { "input": "decrees", "output": "⠙⠑⠉⠗⠑⠑⠎" }, { "input": "decremented", "output": "⠙⠑⠉⠗⠑⠰⠞⠫" }, { "input": "decrements", "output": "⠙⠑⠉⠗⠑⠰⠞⠎" }, { "input": "decrepit", "output": "⠙⠑⠉⠗⠑â â Šâ ž" }, { "input": "decrepitude", "output": "⠙⠑⠉⠗⠑â â Šâ žâ ¥â ™â ‘" }, { "input": "decrepitude's", "output": "⠙⠑⠉⠗⠑â â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "decrescendo", "output": "⠙⠑⠉⠗⠑⠎⠉⠢⠙⠕" }, { "input": "decrescendo's", "output": "⠙⠑⠉⠗⠑⠎⠉⠢⠙⠕⠄⠎" }, { "input": "decrescendos", "output": "⠙⠑⠉⠗⠑⠎⠉⠢⠙⠕⠎" }, { "input": "decried", "output": "⠙⠑⠉⠗⠊⠫" }, { "input": "decries", "output": "⠙⠑⠉⠗⠊⠑⠎" }, { "input": "decriminalization", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ  â " }, { "input": "decriminalization's", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ  â â „â Ž" }, { "input": "decriminalize", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ ‘" }, { "input": "decriminalized", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ «" }, { "input": "decriminalizes", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ ‘â Ž" }, { "input": "decriminalizing", "output": "⠙⠑⠉⠗⠊â â ”â â ‡â Šâ µâ Œ" }, { "input": "decry", "output": "⠙⠑⠉⠗⠽" }, { "input": "decrying", "output": "⠙⠑⠉⠗⠽⠌" }, { "input": "decryption", "output": "⠙⠑⠉⠗⠽â â °â " }, { "input": "dedicate", "output": "⠙⠫⠊⠉â â žâ ‘" }, { "input": "dedicated", "output": "⠙⠫⠊⠉â â žâ «" }, { "input": "dedicates", "output": "⠙⠫⠊⠉â â žâ ‘â Ž" }, { "input": "dedicating", "output": "⠙⠫⠊⠉â â žâ Œ" }, { "input": "dedication", "output": "⠙⠫⠊⠉⠠â " }, { "input": "dedication's", "output": "⠙⠫⠊⠉⠠â â „â Ž" }, { "input": "dedications", "output": "⠙⠫⠊⠉⠠â â Ž" }, { "input": "dedicator", "output": "⠙⠫⠊⠉â â žâ •â —" }, { "input": "dedicator's", "output": "⠙⠫⠊⠉â â žâ •â —â „â Ž" }, { "input": "dedicators", "output": "⠙⠫⠊⠉â â žâ •â —â Ž" }, { "input": "dedicatory", "output": "⠙⠫⠊⠉â â žâ •â —â ½" }, { "input": "deduce", "output": "⠙⠑⠙⠥⠉⠑" }, { "input": "deduced", "output": "⠙⠑⠙⠥⠉⠫" }, { "input": "deduces", "output": "⠙⠑⠙⠥⠉⠑⠎" }, { "input": "deducible", "output": "⠙⠑⠙⠥⠉⠊⠼" }, { "input": "deducing", "output": "⠙⠑⠙⠥⠉⠌" }, { "input": "deduct", "output": "⠙⠑⠙⠥⠉⠞" }, { "input": "deducted", "output": "⠙⠑⠙⠥⠉⠞⠫" }, { "input": "deductible", "output": "⠙⠑⠙⠥⠉⠞⠊⠼" }, { "input": "deductible's", "output": "⠙⠑⠙⠥⠉⠞⠊⠼⠄⠎" }, { "input": "deductibles", "output": "⠙⠑⠙⠥⠉⠞⠊⠼⠎" }, { "input": "deducting", "output": "⠙⠑⠙⠥⠉⠞⠌" }, { "input": "deduction", "output": "⠙⠑⠙⠥⠉⠰â " }, { "input": "deduction's", "output": "⠙⠑⠙⠥⠉⠰â â „â Ž" }, { "input": "deductions", "output": "⠙⠑⠙⠥⠉⠰â â Ž" }, { "input": "deductive", "output": "⠙⠑⠙⠥⠉⠞⠊⠧⠑" }, { "input": "deductively", "output": "⠙⠑⠙⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "deducts", "output": "⠙⠑⠙⠥⠉⠞⠎" }, { "input": "deed", "output": "⠙⠑⠫" }, { "input": "deed's", "output": "⠙⠑⠫⠄⠎" }, { "input": "deeded", "output": "⠙⠑⠫⠫" }, { "input": "deeding", "output": "⠙⠑⠫⠌" }, { "input": "deeds", "output": "⠙⠑⠫⠎" }, { "input": "deejay", "output": "⠙⠑⠑⠚â â ½" }, { "input": "deejay's", "output": "⠙⠑⠑⠚â â ½â „â Ž" }, { "input": "deejays", "output": "⠙⠑⠑⠚â â ½â Ž" }, { "input": "deem", "output": "⠙⠑⠑â " }, { "input": "deemed", "output": "⠙⠑⠑â â «" }, { "input": "deeming", "output": "⠙⠑⠑â â Œ" }, { "input": "deems", "output": "⠙⠑⠑â â Ž" }, { "input": "deep", "output": "⠙⠑⠑â " }, { "input": "deep's", "output": "⠙⠑⠑â â „â Ž" }, { "input": "deepen", "output": "⠙⠑⠑â â ¢" }, { "input": "deepened", "output": "⠙⠑⠑â â ¢â «" }, { "input": "deepening", "output": "⠙⠑⠑â â ¢â Œ" }, { "input": "deepens", "output": "⠙⠑⠑â â ¢â Ž" }, { "input": "deeper", "output": "⠙⠑⠑â â »" }, { "input": "deepest", "output": "⠙⠑⠑â â ‘â Œ" }, { "input": "deeply", "output": "⠙⠑⠑â â ‡â ½" }, { "input": "deepness", "output": "⠙⠑⠑â â °â Ž" }, { "input": "deepness's", "output": "⠙⠑⠑â â °â Žâ „â Ž" }, { "input": "deeps", "output": "⠙⠑⠑â â Ž" }, { "input": "deer", "output": "⠙⠑⠻" }, { "input": "deer's", "output": "⠙⠑⠻⠄⠎" }, { "input": "deerskin", "output": "⠙⠑⠻⠎⠅⠔" }, { "input": "deerskin's", "output": "⠙⠑⠻⠎⠅⠔⠄⠎" }, { "input": "deescalate", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ ‘" }, { "input": "deescalated", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ «" }, { "input": "deescalates", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ ‘â Ž" }, { "input": "deescalating", "output": "⠙⠑⠑⠎⠉â â ‡â â žâ Œ" }, { "input": "deescalation", "output": "⠙⠑⠑⠎⠉â â ‡â  â " }, { "input": "deescalation's", "output": "⠙⠑⠑⠎⠉â â ‡â  â â „â Ž" }, { "input": "deface", "output": "⠙⠑⠋â â ‰â ‘" }, { "input": "defaced", "output": "⠙⠑⠋â â ‰â «" }, { "input": "defacement", "output": "⠙⠑⠋â â ‰â ‘â °â ž" }, { "input": "defacement's", "output": "⠙⠑⠋â â ‰â ‘â °â žâ „â Ž" }, { "input": "defacer", "output": "⠙⠑⠋â â ‰â »" }, { "input": "defacer's", "output": "⠙⠑⠋â â ‰â »â „â Ž" }, { "input": "defacers", "output": "⠙⠑⠋â â ‰â »â Ž" }, { "input": "defaces", "output": "⠙⠑⠋â â ‰â ‘â Ž" }, { "input": "defacing", "output": "⠙⠑⠋â â ‰â Œ" }, { "input": "defalcate", "output": "⠙⠑⠋â â ‡â ‰â â žâ ‘" }, { "input": "defalcated", "output": "⠙⠑⠋â â ‡â ‰â â žâ «" }, { "input": "defalcates", "output": "⠙⠑⠋â â ‡â ‰â â žâ ‘â Ž" }, { "input": "defalcating", "output": "⠙⠑⠋â â ‡â ‰â â žâ Œ" }, { "input": "defalcation", "output": "⠙⠑⠋â â ‡â ‰â  â " }, { "input": "defalcation's", "output": "⠙⠑⠋â â ‡â ‰â  â â „â Ž" }, { "input": "defalcations", "output": "⠙⠑⠋â â ‡â ‰â  â â Ž" }, { "input": "defamation", "output": "⠙⠑⠋â â â  â " }, { "input": "defamation's", "output": "⠙⠑⠋â â â  â â „â Ž" }, { "input": "defamatory", "output": "⠙⠑⠋â â â â žâ •â —â ½" }, { "input": "defame", "output": "⠙⠑⠋â â â ‘" }, { "input": "defamed", "output": "⠙⠑⠋â â â «" }, { "input": "defamer", "output": "⠙⠑⠋â â â »" }, { "input": "defamer's", "output": "⠙⠑⠋â â â »â „â Ž" }, { "input": "defamers", "output": "⠙⠑⠋â â â »â Ž" }, { "input": "defames", "output": "⠙⠑⠋â â â ‘â Ž" }, { "input": "defaming", "output": "⠙⠑⠋â â â Œ" }, { "input": "default", "output": "⠙⠑⠋â â ¥â ‡â ž" }, { "input": "default's", "output": "⠙⠑⠋â â ¥â ‡â žâ „â Ž" }, { "input": "defaulted", "output": "⠙⠑⠋â â ¥â ‡â žâ «" }, { "input": "defaulter", "output": "⠙⠑⠋â â ¥â ‡â žâ »" }, { "input": "defaulter's", "output": "⠙⠑⠋â â ¥â ‡â žâ »â „â Ž" }, { "input": "defaulters", "output": "⠙⠑⠋â â ¥â ‡â žâ »â Ž" }, { "input": "defaulting", "output": "⠙⠑⠋â â ¥â ‡â žâ Œ" }, { "input": "defaults", "output": "⠙⠑⠋â â ¥â ‡â žâ Ž" }, { "input": "defeat", "output": "⠙⠑⠋⠂⠞" }, { "input": "defeat's", "output": "⠙⠑⠋⠂⠞⠄⠎" }, { "input": "defeated", "output": "⠙⠑⠋⠂⠞⠫" }, { "input": "defeater", "output": "⠙⠑⠋⠂⠞⠻" }, { "input": "defeater's", "output": "⠙⠑⠋⠂⠞⠻⠄⠎" }, { "input": "defeaters", "output": "⠙⠑⠋⠂⠞⠻⠎" }, { "input": "defeating", "output": "⠙⠑⠋⠂⠞⠌" }, { "input": "defeatism", "output": "⠙⠑⠋⠂⠞⠊⠎â " }, { "input": "defeatism's", "output": "⠙⠑⠋⠂⠞⠊⠎â â „â Ž" }, { "input": "defeatist", "output": "⠙⠑⠋⠂⠞⠊⠌" }, { "input": "defeatist's", "output": "⠙⠑⠋⠂⠞⠊⠌⠄⠎" }, { "input": "defeatists", "output": "⠙⠑⠋⠂⠞⠊⠌⠎" }, { "input": "defeats", "output": "⠙⠑⠋⠂⠞⠎" }, { "input": "defecate", "output": "⠙⠑⠋⠑⠉â â žâ ‘" }, { "input": "defecated", "output": "⠙⠑⠋⠑⠉â â žâ «" }, { "input": "defecates", "output": "⠙⠑⠋⠑⠉â â žâ ‘â Ž" }, { "input": "defecating", "output": "⠙⠑⠋⠑⠉â â žâ Œ" }, { "input": "defecation", "output": "⠙⠑⠋⠑⠉⠠â " }, { "input": "defecation's", "output": "⠙⠑⠋⠑⠉⠠â â „â Ž" }, { "input": "defect", "output": "⠙⠑⠋⠑⠉⠞" }, { "input": "defect's", "output": "⠙⠑⠋⠑⠉⠞⠄⠎" }, { "input": "defected", "output": "⠙⠑⠋⠑⠉⠞⠫" }, { "input": "defecting", "output": "⠙⠑⠋⠑⠉⠞⠌" }, { "input": "defection", "output": "⠙⠑⠋⠑⠉⠰â " }, { "input": "defection's", "output": "⠙⠑⠋⠑⠉⠰â â „â Ž" }, { "input": "defections", "output": "⠙⠑⠋⠑⠉⠰â â Ž" }, { "input": "defective", "output": "⠙⠑⠋⠑⠉⠞⠊⠧⠑" }, { "input": "defective's", "output": "⠙⠑⠋⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "defectiveness's", "output": "⠙⠑⠋⠑⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "defectives", "output": "⠙⠑⠋⠑⠉⠞⠊⠧⠑⠎" }, { "input": "defector", "output": "⠙⠑⠋⠑⠉⠞⠕⠗" }, { "input": "defector's", "output": "⠙⠑⠋⠑⠉⠞⠕⠗⠄⠎" }, { "input": "defectors", "output": "⠙⠑⠋⠑⠉⠞⠕⠗⠎" }, { "input": "defects", "output": "⠙⠑⠋⠑⠉⠞⠎" }, { "input": "defend", "output": "⠙⠑⠋⠢⠙" }, { "input": "defendant", "output": "⠙⠑⠋⠢⠙â â â ž" }, { "input": "defendant's", "output": "⠙⠑⠋⠢⠙â â â žâ „â Ž" }, { "input": "defendants", "output": "⠙⠑⠋⠢⠙â â â žâ Ž" }, { "input": "defended", "output": "⠙⠑⠋⠢⠙⠫" }, { "input": "defender", "output": "⠙⠑⠋⠢⠙⠻" }, { "input": "defender's", "output": "⠙⠑⠋⠢⠙⠻⠄⠎" }, { "input": "defenders", "output": "⠙⠑⠋⠢⠙⠻⠎" }, { "input": "defending", "output": "⠙⠑⠋⠢⠙⠌" }, { "input": "defends", "output": "⠙⠑⠋⠢⠙⠎" }, { "input": "defense", "output": "⠙⠑⠋⠢⠎⠑" }, { "input": "defense's", "output": "⠙⠑⠋⠢⠎⠑⠄⠎" }, { "input": "defensed", "output": "⠙⠑⠋⠢⠎⠫" }, { "input": "defenseless", "output": "⠙⠑⠋⠢⠎⠑⠨⠎" }, { "input": "defenselessly", "output": "⠙⠑⠋⠢⠎⠑⠨⠎⠇⠽" }, { "input": "defenselessness", "output": "⠙⠑⠋⠢⠎⠑⠨⠎⠰⠎" }, { "input": "defenselessness's", "output": "⠙⠑⠋⠢⠎⠑⠨⠎⠰⠎⠄⠎" }, { "input": "defenses", "output": "⠙⠑⠋⠢⠎⠑⠎" }, { "input": "defensible", "output": "⠙⠑⠋⠢⠎⠊⠼" }, { "input": "defensibly", "output": "⠙⠑⠋⠢⠎⠊⠃⠇⠽" }, { "input": "defensing", "output": "⠙⠑⠋⠢⠎⠌" }, { "input": "defensive", "output": "⠙⠑⠋⠢⠎⠊⠧⠑" }, { "input": "defensive's", "output": "⠙⠑⠋⠢⠎⠊⠧⠑⠄⠎" }, { "input": "defensively", "output": "⠙⠑⠋⠢⠎⠊⠧⠑⠇⠽" }, { "input": "defensiveness", "output": "⠙⠑⠋⠢⠎⠊⠧⠑⠰⠎" }, { "input": "defensiveness's", "output": "⠙⠑⠋⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "defer", "output": "⠙⠑⠋⠻" }, { "input": "deference", "output": "⠙⠑⠋⠻⠰⠑" }, { "input": "deference's", "output": "⠙⠑⠋⠻⠰⠑⠄⠎" }, { "input": "deferential", "output": "⠙⠑⠋⠻⠢⠞⠊â â ‡" }, { "input": "deferentially", "output": "⠙⠑⠋⠻⠢⠞⠊⠠⠽" }, { "input": "deferment", "output": "⠙⠑⠋⠻⠰⠞" }, { "input": "deferment's", "output": "⠙⠑⠋⠻⠰⠞⠄⠎" }, { "input": "deferments", "output": "⠙⠑⠋⠻⠰⠞⠎" }, { "input": "deferred", "output": "⠙⠑⠋⠻⠗⠫" }, { "input": "deferring", "output": "⠙⠑⠋⠻⠗⠌" }, { "input": "defers", "output": "⠙⠑⠋⠻⠎" }, { "input": "deffer", "output": "⠙⠑⠋⠋⠻" }, { "input": "deffest", "output": "⠙⠑⠋⠋⠑⠌" }, { "input": "defiance", "output": "⠙⠑⠋⠊⠨⠑" }, { "input": "defiance's", "output": "⠙⠑⠋⠊⠨⠑⠄⠎" }, { "input": "defiant", "output": "⠙⠑⠋⠊â â â ž" }, { "input": "defiantly", "output": "⠙⠑⠋⠊â â â žâ ‡â ½" }, { "input": "deficiencies", "output": "⠙⠑⠋⠊⠉⠊⠢⠉⠊⠑⠎" }, { "input": "deficiency", "output": "⠙⠑⠋⠊⠉⠊⠢⠉⠽" }, { "input": "deficiency's", "output": "⠙⠑⠋⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "deficient", "output": "⠙⠑⠋⠊⠉⠊⠢⠞" }, { "input": "deficit", "output": "⠙⠑⠋⠊⠉⠊⠞" }, { "input": "deficit's", "output": "⠙⠑⠋⠊⠉⠊⠞⠄⠎" }, { "input": "deficits", "output": "⠙⠑⠋⠊⠉⠊⠞⠎" }, { "input": "defied", "output": "⠙⠑⠋⠊⠫" }, { "input": "defies", "output": "⠙⠑⠋⠊⠑⠎" }, { "input": "defile", "output": "⠙⠑⠋⠊⠇⠑" }, { "input": "defile's", "output": "⠙⠑⠋⠊⠇⠑⠄⠎" }, { "input": "defiled", "output": "⠙⠑⠋⠊⠇⠫" }, { "input": "defilement", "output": "⠙⠑⠋⠊⠇⠑⠰⠞" }, { "input": "defilement's", "output": "⠙⠑⠋⠊⠇⠑⠰⠞⠄⠎" }, { "input": "defiler", "output": "⠙⠑⠋⠊⠇⠻" }, { "input": "defiler's", "output": "⠙⠑⠋⠊⠇⠻⠄⠎" }, { "input": "defilers", "output": "⠙⠑⠋⠊⠇⠻⠎" }, { "input": "defiles", "output": "⠙⠑⠋⠊⠇⠑⠎" }, { "input": "defiling", "output": "⠙⠑⠋⠊⠇⠌" }, { "input": "definable", "output": "⠙⠑⠋⠔â â ¼" }, { "input": "define", "output": "⠙⠑⠋⠔⠑" }, { "input": "defined", "output": "⠙⠑⠋⠔⠫" }, { "input": "definer", "output": "⠙⠑⠋⠔⠻" }, { "input": "definer's", "output": "⠙⠑⠋⠔⠻⠄⠎" }, { "input": "definers", "output": "⠙⠑⠋⠔⠻⠎" }, { "input": "defines", "output": "⠙⠑⠋⠔⠑⠎" }, { "input": "defining", "output": "⠙⠑⠋⠔⠌" }, { "input": "definite", "output": "⠙⠑⠋⠔⠊⠞⠑" }, { "input": "definitely", "output": "⠙⠑⠋⠔⠊⠞⠑⠇⠽" }, { "input": "definiteness", "output": "⠙⠑⠋⠔⠊⠞⠑⠰⠎" }, { "input": "definiteness's", "output": "⠙⠑⠋⠔⠊⠞⠑⠰⠎⠄⠎" }, { "input": "definition", "output": "⠙⠑⠋⠔⠊⠰â " }, { "input": "definition's", "output": "⠙⠑⠋⠔⠊⠰â â „â Ž" }, { "input": "definitions", "output": "⠙⠑⠋⠔⠊⠰â â Ž" }, { "input": "definitive", "output": "⠙⠑⠋⠔⠊⠞⠊⠧⠑" }, { "input": "definitively", "output": "⠙⠑⠋⠔⠊⠞⠊⠧⠑⠇⠽" }, { "input": "deflate", "output": "⠙⠑⠋⠇â â žâ ‘" }, { "input": "deflated", "output": "⠙⠑⠋⠇â â žâ «" }, { "input": "deflates", "output": "⠙⠑⠋⠇â â žâ ‘â Ž" }, { "input": "deflating", "output": "⠙⠑⠋⠇â â žâ Œ" }, { "input": "deflation", "output": "⠙⠑⠋⠇⠠â " }, { "input": "deflation's", "output": "⠙⠑⠋⠇⠠â â „â Ž" }, { "input": "deflect", "output": "⠙⠑⠋⠇⠑⠉⠞" }, { "input": "deflected", "output": "⠙⠑⠋⠇⠑⠉⠞⠫" }, { "input": "deflecting", "output": "⠙⠑⠋⠇⠑⠉⠞⠌" }, { "input": "deflection", "output": "⠙⠑⠋⠇⠑⠉⠰â " }, { "input": "deflection's", "output": "⠙⠑⠋⠇⠑⠉⠰â â „â Ž" }, { "input": "deflections", "output": "⠙⠑⠋⠇⠑⠉⠰â â Ž" }, { "input": "deflective", "output": "⠙⠑⠋⠇⠑⠉⠞⠊⠧⠑" }, { "input": "deflector", "output": "⠙⠑⠋⠇⠑⠉⠞⠕⠗" }, { "input": "deflector's", "output": "⠙⠑⠋⠇⠑⠉⠞⠕⠗⠄⠎" }, { "input": "deflectors", "output": "⠙⠑⠋⠇⠑⠉⠞⠕⠗⠎" }, { "input": "deflects", "output": "⠙⠑⠋⠇⠑⠉⠞⠎" }, { "input": "defogger", "output": "⠙⠑⠋⠕⠶⠻" }, { "input": "defogger's", "output": "⠙⠑⠋⠕⠶⠻⠄⠎" }, { "input": "defoggers", "output": "⠙⠑⠋⠕⠶⠻⠎" }, { "input": "defoliant", "output": "⠙⠑⠋⠕⠇⠊â â â ž" }, { "input": "defoliant's", "output": "⠙⠑⠋⠕⠇⠊â â â žâ „â Ž" }, { "input": "defoliants", "output": "⠙⠑⠋⠕⠇⠊â â â žâ Ž" }, { "input": "defoliate", "output": "⠙⠑⠋⠕⠇⠊â â žâ ‘" }, { "input": "defoliated", "output": "⠙⠑⠋⠕⠇⠊â â žâ «" }, { "input": "defoliates", "output": "⠙⠑⠋⠕⠇⠊â â žâ ‘â Ž" }, { "input": "defoliating", "output": "⠙⠑⠋⠕⠇⠊â â žâ Œ" }, { "input": "defoliation", "output": "⠙⠑⠋⠕⠇⠊⠠â " }, { "input": "defoliation's", "output": "⠙⠑⠋⠕⠇⠊⠠â â „â Ž" }, { "input": "defoliator", "output": "⠙⠑⠋⠕⠇⠊â â žâ •â —" }, { "input": "defoliator's", "output": "⠙⠑⠋⠕⠇⠊â â žâ •â —â „â Ž" }, { "input": "defoliators", "output": "⠙⠑⠋⠕⠇⠊â â žâ •â —â Ž" }, { "input": "deforest", "output": "⠙⠑⠿⠑⠌" }, { "input": "deforestation", "output": "⠙⠑⠿⠑⠌⠠â " }, { "input": "deforestation's", "output": "⠙⠑⠿⠑⠌⠠â â „â Ž" }, { "input": "deforested", "output": "⠙⠑⠿⠑⠌⠫" }, { "input": "deforesting", "output": "⠙⠑⠿⠑⠌⠌" }, { "input": "deforests", "output": "⠙⠑⠿⠑⠌⠎" }, { "input": "deform", "output": "⠙⠑⠿â " }, { "input": "deformation", "output": "⠙⠑⠿â â  â " }, { "input": "deformation's", "output": "⠙⠑⠿â â  â â „â Ž" }, { "input": "deformations", "output": "⠙⠑⠿â â  â â Ž" }, { "input": "deformed", "output": "⠙⠑⠿â â «" }, { "input": "deforming", "output": "⠙⠑⠿â â Œ" }, { "input": "deformities", "output": "⠙⠑⠿â â Šâ žâ Šâ ‘â Ž" }, { "input": "deformity", "output": "⠙⠑⠿â â °â ½" }, { "input": "deformity's", "output": "⠙⠑⠿â â °â ½â „â Ž" }, { "input": "deforms", "output": "⠙⠑⠿â â Ž" }, { "input": "defraud", "output": "⠙⠑⠋⠗â â ¥â ™" }, { "input": "defrauded", "output": "⠙⠑⠋⠗â â ¥â ™â «" }, { "input": "defrauder", "output": "⠙⠑⠋⠗â â ¥â ™â »" }, { "input": "defrauder's", "output": "⠙⠑⠋⠗â â ¥â ™â »â „â Ž" }, { "input": "defrauders", "output": "⠙⠑⠋⠗â â ¥â ™â »â Ž" }, { "input": "defrauding", "output": "⠙⠑⠋⠗â â ¥â ™â Œ" }, { "input": "defrauds", "output": "⠙⠑⠋⠗â â ¥â ™â Ž" }, { "input": "defray", "output": "⠙⠑⠋⠗â â ½" }, { "input": "defrayal", "output": "⠙⠑⠋⠗â â ½â â ‡" }, { "input": "defrayal's", "output": "⠙⠑⠋⠗â â ½â â ‡â „â Ž" }, { "input": "defrayed", "output": "⠙⠑⠋⠗â â ½â «" }, { "input": "defraying", "output": "⠙⠑⠋⠗â â ½â Œ" }, { "input": "defrays", "output": "⠙⠑⠋⠗â â ½â Ž" }, { "input": "defrost", "output": "⠙⠑⠋⠗⠕⠌" }, { "input": "defrosted", "output": "⠙⠑⠋⠗⠕⠌⠫" }, { "input": "defroster", "output": "⠙⠑⠋⠗⠕⠌⠻" }, { "input": "defroster's", "output": "⠙⠑⠋⠗⠕⠌⠻⠄⠎" }, { "input": "defrosters", "output": "⠙⠑⠋⠗⠕⠌⠻⠎" }, { "input": "defrosting", "output": "⠙⠑⠋⠗⠕⠌⠌" }, { "input": "defrosts", "output": "⠙⠑⠋⠗⠕⠌⠎" }, { "input": "deft", "output": "⠙⠑⠋⠞" }, { "input": "defter", "output": "⠙⠑⠋⠞⠻" }, { "input": "deftest", "output": "⠙⠑⠋⠞⠑⠌" }, { "input": "deftly", "output": "⠙⠑⠋⠞⠇⠽" }, { "input": "deftness", "output": "⠙⠑⠋⠞⠰⠎" }, { "input": "deftness's", "output": "⠙⠑⠋⠞⠰⠎⠄⠎" }, { "input": "defunct", "output": "⠙⠑⠋⠥â â ‰â ž" }, { "input": "defuse", "output": "⠙⠑⠋⠥⠎⠑" }, { "input": "defused", "output": "⠙⠑⠋⠥⠎⠫" }, { "input": "defuses", "output": "⠙⠑⠋⠥⠎⠑⠎" }, { "input": "defusing", "output": "⠙⠑⠋⠥⠎⠌" }, { "input": "defy", "output": "⠙⠑⠋⠽" }, { "input": "defying", "output": "⠙⠑⠋⠽⠌" }, { "input": "degas", "output": "⠙⠑⠛â â Ž" }, { "input": "degases", "output": "⠙⠑⠛â â Žâ ‘â Ž" }, { "input": "degassed", "output": "⠙⠑⠛â â Žâ Žâ «" }, { "input": "degassing", "output": "⠙⠑⠛â â Žâ Žâ Œ" }, { "input": "degeneracy", "output": "⠙⠑⠛⠢⠻â â ‰â ½" }, { "input": "degeneracy's", "output": "⠙⠑⠛⠢⠻â â ‰â ½â „â Ž" }, { "input": "degenerate", "output": "⠙⠑⠛⠢⠻â â žâ ‘" }, { "input": "degenerate's", "output": "⠙⠑⠛⠢⠻â â žâ ‘â „â Ž" }, { "input": "degenerated", "output": "⠙⠑⠛⠢⠻â â žâ «" }, { "input": "degenerates", "output": "⠙⠑⠛⠢⠻â â žâ ‘â Ž" }, { "input": "degenerating", "output": "⠙⠑⠛⠢⠻â â žâ Œ" }, { "input": "degeneration", "output": "⠙⠑⠛⠢⠻⠠â " }, { "input": "degeneration's", "output": "⠙⠑⠛⠢⠻⠠â â „â Ž" }, { "input": "degenerative", "output": "⠙⠑⠛⠢⠻â â žâ Šâ §â ‘" }, { "input": "degradation", "output": "⠙⠑⠛⠗â â ™â  â " }, { "input": "degradation's", "output": "⠙⠑⠛⠗â â ™â  â â „â Ž" }, { "input": "degrade", "output": "⠙⠑⠛⠗â â ™â ‘" }, { "input": "degraded", "output": "⠙⠑⠛⠗â â ™â «" }, { "input": "degrades", "output": "⠙⠑⠛⠗â â ™â ‘â Ž" }, { "input": "degrading", "output": "⠙⠑⠛⠗â â ™â Œ" }, { "input": "degree", "output": "⠙⠑⠛⠗⠑⠑" }, { "input": "degree's", "output": "⠙⠑⠛⠗⠑⠑⠄⠎" }, { "input": "degrees", "output": "⠙⠑⠛⠗⠑⠑⠎" }, { "input": "dehumanization", "output": "⠙⠑⠓⠥â â â â Šâ µâ  â " }, { "input": "dehumanization's", "output": "⠙⠑⠓⠥â â â â Šâ µâ  â â „â Ž" }, { "input": "dehumanize", "output": "⠙⠑⠓⠥â â â â Šâ µâ ‘" }, { "input": "dehumanized", "output": "⠙⠑⠓⠥â â â â Šâ µâ «" }, { "input": "dehumanizes", "output": "⠙⠑⠓⠥â â â â Šâ µâ ‘â Ž" }, { "input": "dehumanizing", "output": "⠙⠑⠓⠥â â â â Šâ µâ Œ" }, { "input": "dehumidified", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ «" }, { "input": "dehumidifier", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ »" }, { "input": "dehumidifier's", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ »â „â Ž" }, { "input": "dehumidifiers", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ »â Ž" }, { "input": "dehumidifies", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â Šâ ‘â Ž" }, { "input": "dehumidify", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â ½" }, { "input": "dehumidifying", "output": "⠙⠑⠓⠥â â Šâ ™â Šâ ‹â ½â Œ" }, { "input": "dehydrate", "output": "⠙⠑⠓⠽⠙⠗â â žâ ‘" }, { "input": "dehydrated", "output": "⠙⠑⠓⠽⠙⠗â â žâ «" }, { "input": "dehydrates", "output": "⠙⠑⠓⠽⠙⠗â â žâ ‘â Ž" }, { "input": "dehydrating", "output": "⠙⠑⠓⠽⠙⠗â â žâ Œ" }, { "input": "dehydration", "output": "⠙⠑⠓⠽⠙⠗⠠â " }, { "input": "dehydration's", "output": "⠙⠑⠓⠽⠙⠗⠠â â „â Ž" }, { "input": "dehydrator", "output": "⠙⠑⠓⠽⠙⠗â â žâ •â —" }, { "input": "dehydrator's", "output": "⠙⠑⠓⠽⠙⠗â â žâ •â —â „â Ž" }, { "input": "dehydrators", "output": "⠙⠑⠓⠽⠙⠗â â žâ •â —â Ž" }, { "input": "dehydrogenate", "output": "⠙⠑⠓⠽⠙⠗⠕⠛⠢â â žâ ‘" }, { "input": "dehydrogenated", "output": "⠙⠑⠓⠽⠙⠗⠕⠛⠢â â žâ «" }, { "input": "dehydrogenates", "output": "⠙⠑⠓⠽⠙⠗⠕⠛⠢â â žâ ‘â Ž" }, { "input": "dehydrogenating", "output": "⠙⠑⠓⠽⠙⠗⠕⠛⠢â â žâ Œ" }, { "input": "deice", "output": "⠙⠑⠊⠉⠑" }, { "input": "deiced", "output": "⠙⠑⠊⠉⠫" }, { "input": "deicer", "output": "⠙⠑⠊⠉⠻" }, { "input": "deicer's", "output": "⠙⠑⠊⠉⠻⠄⠎" }, { "input": "deicers", "output": "⠙⠑⠊⠉⠻⠎" }, { "input": "deices", "output": "⠙⠑⠊⠉⠑⠎" }, { "input": "deicing", "output": "⠙⠑⠊⠉⠌" }, { "input": "deification", "output": "⠙⠑⠊⠋⠊⠉⠠â " }, { "input": "deification's", "output": "⠙⠑⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "deified", "output": "⠙⠑⠊⠋⠊⠫" }, { "input": "deifies", "output": "⠙⠑⠊⠋⠊⠑⠎" }, { "input": "deify", "output": "⠙⠑⠊⠋⠽" }, { "input": "deifying", "output": "⠙⠑⠊⠋⠽⠌" }, { "input": "deign", "output": "⠙⠑⠊⠛â " }, { "input": "deigned", "output": "⠙⠑⠊⠛â â «" }, { "input": "deigning", "output": "⠙⠑⠊⠛â â Œ" }, { "input": "deigns", "output": "⠙⠑⠊⠛â â Ž" }, { "input": "deism", "output": "⠙⠑⠊⠎â " }, { "input": "deism's", "output": "⠙⠑⠊⠎â â „â Ž" }, { "input": "deist", "output": "⠙⠑⠊⠌" }, { "input": "deist's", "output": "⠙⠑⠊⠌⠄⠎" }, { "input": "deistic", "output": "⠙⠑⠊⠌⠊⠉" }, { "input": "deists", "output": "⠙⠑⠊⠌⠎" }, { "input": "deities", "output": "⠙⠑⠊⠞⠊⠑⠎" }, { "input": "deity", "output": "⠙⠑⠰⠽" }, { "input": "deity's", "output": "⠙⠑⠰⠽⠄⠎" }, { "input": "deject", "output": "⠙⠑⠚⠑⠉⠞" }, { "input": "dejected", "output": "⠙⠑⠚⠑⠉⠞⠫" }, { "input": "dejectedly", "output": "⠙⠑⠚⠑⠉⠞⠫⠇⠽" }, { "input": "dejecting", "output": "⠙⠑⠚⠑⠉⠞⠌" }, { "input": "dejection", "output": "⠙⠑⠚⠑⠉⠰â " }, { "input": "dejection's", "output": "⠙⠑⠚⠑⠉⠰â â „â Ž" }, { "input": "dejects", "output": "⠙⠑⠚⠑⠉⠞⠎" }, { "input": "delay", "output": "⠙⠑⠇â â ½" }, { "input": "delay's", "output": "⠙⠑⠇â â ½â „â Ž" }, { "input": "delayed", "output": "⠙⠑⠇â â ½â «" }, { "input": "delayer", "output": "⠙⠑⠇â â ½â »" }, { "input": "delayer's", "output": "⠙⠑⠇â â ½â »â „â Ž" }, { "input": "delayers", "output": "⠙⠑⠇â â ½â »â Ž" }, { "input": "delaying", "output": "⠙⠑⠇â â ½â Œ" }, { "input": "delays", "output": "⠙⠑⠇â â ½â Ž" }, { "input": "delectable", "output": "⠙⠑⠇⠑⠉⠞â â ¼" }, { "input": "delectation", "output": "⠙⠑⠇⠑⠉⠞⠠â " }, { "input": "delectation's", "output": "⠙⠑⠇⠑⠉⠞⠠â â „â Ž" }, { "input": "delegate", "output": "⠙⠑⠇⠑⠛â â žâ ‘" }, { "input": "delegate's", "output": "⠙⠑⠇⠑⠛â â žâ ‘â „â Ž" }, { "input": "delegated", "output": "⠙⠑⠇⠑⠛â â žâ «" }, { "input": "delegates", "output": "⠙⠑⠇⠑⠛â â žâ ‘â Ž" }, { "input": "delegating", "output": "⠙⠑⠇⠑⠛â â žâ Œ" }, { "input": "delegation", "output": "⠙⠑⠇⠑⠛⠠â " }, { "input": "delegation's", "output": "⠙⠑⠇⠑⠛⠠â â „â Ž" }, { "input": "delegations", "output": "⠙⠑⠇⠑⠛⠠â â Ž" }, { "input": "delete", "output": "⠙⠑⠇⠑⠞⠑" }, { "input": "deleted", "output": "⠙⠑⠇⠑⠞⠫" }, { "input": "deleterious", "output": "⠙⠑⠇⠑⠞⠻⠊⠳⠎" }, { "input": "deletes", "output": "⠙⠑⠇⠑⠞⠑⠎" }, { "input": "deleting", "output": "⠙⠑⠇⠑⠞⠌" }, { "input": "deletion", "output": "⠙⠑⠇⠑⠰â " }, { "input": "deletion's", "output": "⠙⠑⠇⠑⠰â â „â Ž" }, { "input": "deletions", "output": "⠙⠑⠇⠑⠰â â Ž" }, { "input": "delft", "output": "⠙⠑⠇⠋⠞" }, { "input": "delft's", "output": "⠙⠑⠇⠋⠞⠄⠎" }, { "input": "delftware", "output": "⠙⠑⠇⠋⠞⠺⠜⠑" }, { "input": "delftware's", "output": "⠙⠑⠇⠋⠞⠺⠜⠑⠄⠎" }, { "input": "deli", "output": "⠙⠑⠇⠊" }, { "input": "deli's", "output": "⠙⠑⠇⠊⠄⠎" }, { "input": "deliberate", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘" }, { "input": "deliberated", "output": "⠙⠑⠇⠊⠃⠻â â žâ «" }, { "input": "deliberately", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘⠇⠽" }, { "input": "deliberateness", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘â °â Ž" }, { "input": "deliberateness's", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘â °â Žâ „â Ž" }, { "input": "deliberates", "output": "⠙⠑⠇⠊⠃⠻â â žâ ‘â Ž" }, { "input": "deliberating", "output": "⠙⠑⠇⠊⠃⠻â â žâ Œ" }, { "input": "deliberation", "output": "⠙⠑⠇⠊⠃⠻⠠â " }, { "input": "deliberation's", "output": "⠙⠑⠇⠊⠃⠻⠠â â „â Ž" }, { "input": "deliberations", "output": "⠙⠑⠇⠊⠃⠻⠠â â Ž" }, { "input": "delicacies", "output": "⠙⠑⠇⠊⠉â â ‰â Šâ ‘â Ž" }, { "input": "delicacy", "output": "⠙⠑⠇⠊⠉â â ‰â ½" }, { "input": "delicacy's", "output": "⠙⠑⠇⠊⠉â â ‰â ½â „â Ž" }, { "input": "delicate", "output": "⠙⠑⠇⠊⠉â â žâ ‘" }, { "input": "delicately", "output": "⠙⠑⠇⠊⠉â â žâ ‘⠇⠽" }, { "input": "delicateness", "output": "⠙⠑⠇⠊⠉â â žâ ‘â °â Ž" }, { "input": "delicateness's", "output": "⠙⠑⠇⠊⠉â â žâ ‘â °â Žâ „â Ž" }, { "input": "delicatessen", "output": "⠙⠑⠇⠊⠉â â žâ ‘â Žâ Žâ ¢" }, { "input": "delicatessen's", "output": "⠙⠑⠇⠊⠉â â žâ ‘⠎⠎⠢⠄⠎" }, { "input": "delicatessens", "output": "⠙⠑⠇⠊⠉â â žâ ‘⠎⠎⠢⠎" }, { "input": "delicious", "output": "⠙⠑⠇⠊⠉⠊⠳⠎" }, { "input": "deliciously", "output": "⠙⠑⠇⠊⠉⠊⠳⠎⠇⠽" }, { "input": "deliciousness", "output": "⠙⠑⠇⠊⠉⠊⠳⠎⠰⠎" }, { "input": "deliciousness's", "output": "⠙⠑⠇⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "delight", "output": "⠙⠑⠇⠊⠣⠞" }, { "input": "delight's", "output": "⠙⠑⠇⠊⠣⠞⠄⠎" }, { "input": "delighted", "output": "⠙⠑⠇⠊⠣⠞⠫" }, { "input": "delightful", "output": "⠙⠑⠇⠊⠣⠞⠰⠇" }, { "input": "delightfully", "output": "⠙⠑⠇⠊⠣⠞⠰⠇⠇⠽" }, { "input": "delighting", "output": "⠙⠑⠇⠊⠣⠞⠌" }, { "input": "delights", "output": "⠙⠑⠇⠊⠣⠞⠎" }, { "input": "delimit", "output": "⠙⠑⠇⠊â â Šâ ž" }, { "input": "delimitation", "output": "⠙⠑⠇⠊â â Šâ žâ  â " }, { "input": "delimitation's", "output": "⠙⠑⠇⠊â â Šâ žâ  â â „â Ž" }, { "input": "delimited", "output": "⠙⠑⠇⠊â â Šâ žâ «" }, { "input": "delimiter", "output": "⠙⠑⠇⠊â â Šâ žâ »" }, { "input": "delimiters", "output": "⠙⠑⠇⠊â â Šâ žâ »â Ž" }, { "input": "delimiting", "output": "⠙⠑⠇⠊â â Šâ žâ Œ" }, { "input": "delimits", "output": "⠙⠑⠇⠊â â Šâ žâ Ž" }, { "input": "delineate", "output": "⠙⠑⠇⠔⠂⠞⠑" }, { "input": "delineated", "output": "⠙⠑⠇⠔⠂⠞⠫" }, { "input": "delineates", "output": "⠙⠑⠇⠔⠂⠞⠑⠎" }, { "input": "delineating", "output": "⠙⠑⠇⠔⠂⠞⠌" }, { "input": "delineation", "output": "⠙⠑⠇⠔⠑⠠â " }, { "input": "delineation's", "output": "⠙⠑⠇⠔⠑⠠â â „â Ž" }, { "input": "delineations", "output": "⠙⠑⠇⠔⠑⠠â â Ž" }, { "input": "delinquencies", "output": "⠙⠑⠇⠔⠟⠥⠢⠉⠊⠑⠎" }, { "input": "delinquency", "output": "⠙⠑⠇⠔⠟⠥⠢⠉⠽" }, { "input": "delinquency's", "output": "⠙⠑⠇⠔⠟⠥⠢⠉⠽⠄⠎" }, { "input": "delinquent", "output": "⠙⠑⠇⠔⠟⠥⠢⠞" }, { "input": "delinquent's", "output": "⠙⠑⠇⠔⠟⠥⠢⠞⠄⠎" }, { "input": "delinquently", "output": "⠙⠑⠇⠔⠟⠥⠢⠞⠇⠽" }, { "input": "delinquents", "output": "⠙⠑⠇⠔⠟⠥⠢⠞⠎" }, { "input": "deliquesce", "output": "⠙⠑⠇⠊⠟⠥⠑⠎⠉⠑" }, { "input": "deliquesced", "output": "⠙⠑⠇⠊⠟⠥⠑⠎⠉⠫" }, { "input": "deliquescent", "output": "⠙⠑⠇⠊⠟⠥⠑⠎⠉⠢⠞" }, { "input": "deliquesces", "output": "⠙⠑⠇⠊⠟⠥⠑⠎⠉⠑⠎" }, { "input": "deliquescing", "output": "⠙⠑⠇⠊⠟⠥⠑⠎⠉⠌" }, { "input": "delirious", "output": "⠙⠑⠇⠊⠗⠊⠳⠎" }, { "input": "deliriously", "output": "⠙⠑⠇⠊⠗⠊⠳⠎⠇⠽" }, { "input": "deliriousness", "output": "⠙⠑⠇⠊⠗⠊⠳⠎⠰⠎" }, { "input": "deliriousness's", "output": "⠙⠑⠇⠊⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "delirium", "output": "⠙⠑⠇⠊⠗⠊⠥â " }, { "input": "delirium's", "output": "⠙⠑⠇⠊⠗⠊⠥â â „â Ž" }, { "input": "deliriums", "output": "⠙⠑⠇⠊⠗⠊⠥â â Ž" }, { "input": "delis", "output": "⠙⠑⠇⠊⠎" }, { "input": "deliver", "output": "⠙⠑⠇⠊⠧⠻" }, { "input": "deliverance", "output": "⠙⠑⠇⠊⠧⠻⠨⠑" }, { "input": "deliverance's", "output": "⠙⠑⠇⠊⠧⠻⠨⠑⠄⠎" }, { "input": "delivered", "output": "⠙⠑⠇⠊⠧⠻⠫" }, { "input": "deliverer", "output": "⠙⠑⠇⠊⠧⠻⠻" }, { "input": "deliverer's", "output": "⠙⠑⠇⠊⠧⠻⠻⠄⠎" }, { "input": "deliverers", "output": "⠙⠑⠇⠊⠧⠻⠻⠎" }, { "input": "deliveries", "output": "⠙⠑⠇⠊⠧⠻⠊⠑⠎" }, { "input": "delivering", "output": "⠙⠑⠇⠊⠧⠻⠌" }, { "input": "delivers", "output": "⠙⠑⠇⠊⠧⠻⠎" }, { "input": "delivery", "output": "⠙⠑⠇⠊⠧⠻⠽" }, { "input": "delivery's", "output": "⠙⠑⠇⠊⠧⠻⠽⠄⠎" }, { "input": "dell", "output": "⠙⠑⠇⠇" }, { "input": "dell's", "output": "⠙⠑⠇⠇⠄⠎" }, { "input": "dells", "output": "⠙⠑⠇⠇⠎" }, { "input": "delphinium", "output": "⠙⠑⠇â â “⠔⠊⠥â " }, { "input": "delphinium's", "output": "⠙⠑⠇â â “⠔⠊⠥â â „â Ž" }, { "input": "delphiniums", "output": "⠙⠑⠇â â “⠔⠊⠥â â Ž" }, { "input": "delta", "output": "⠙⠑⠇⠞â " }, { "input": "delta's", "output": "⠙⠑⠇⠞â â „â Ž" }, { "input": "deltas", "output": "⠙⠑⠇⠞â â Ž" }, { "input": "delude", "output": "⠙⠑⠇⠥⠙⠑" }, { "input": "deluded", "output": "⠙⠑⠇⠥⠙⠫" }, { "input": "deludes", "output": "⠙⠑⠇⠥⠙⠑⠎" }, { "input": "deluding", "output": "⠙⠑⠇⠥⠙⠌" }, { "input": "deluge", "output": "⠙⠑⠇⠥⠛⠑" }, { "input": "deluge's", "output": "⠙⠑⠇⠥⠛⠑⠄⠎" }, { "input": "deluged", "output": "⠙⠑⠇⠥⠛⠫" }, { "input": "deluges", "output": "⠙⠑⠇⠥⠛⠑⠎" }, { "input": "deluging", "output": "⠙⠑⠇⠥⠛⠌" }, { "input": "delusion", "output": "⠙⠑⠇⠥⠨â " }, { "input": "delusion's", "output": "⠙⠑⠇⠥⠨â â „â Ž" }, { "input": "delusional", "output": "⠙⠑⠇⠥⠨â â â ‡" }, { "input": "delusions", "output": "⠙⠑⠇⠥⠨â â Ž" }, { "input": "delusive", "output": "⠙⠑⠇⠥⠎⠊⠧⠑" }, { "input": "deluxe", "output": "⠙⠑⠇⠥⠭⠑" }, { "input": "delve", "output": "⠙⠑⠇⠧⠑" }, { "input": "delved", "output": "⠙⠑⠇⠧⠫" }, { "input": "delver", "output": "⠙⠑⠇⠧⠻" }, { "input": "delver's", "output": "⠙⠑⠇⠧⠻⠄⠎" }, { "input": "delvers", "output": "⠙⠑⠇⠧⠻⠎" }, { "input": "delves", "output": "⠙⠑⠇⠧⠑⠎" }, { "input": "delving", "output": "⠙⠑⠇⠧⠌" }, { "input": "demagnetization", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠠â " }, { "input": "demagnetization's", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠠â â „â Ž" }, { "input": "demagnetize", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠑" }, { "input": "demagnetized", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠫" }, { "input": "demagnetizes", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠑⠎" }, { "input": "demagnetizing", "output": "⠙⠑â â â ›â â ‘⠞⠊⠵⠌" }, { "input": "demagogic", "output": "⠙⠑â â â ›â •⠛⠊⠉" }, { "input": "demagogue", "output": "⠙⠑â â â ›â •⠛⠥⠑" }, { "input": "demagogue's", "output": "⠙⠑â â â ›â •⠛⠥⠑⠄⠎" }, { "input": "demagoguery", "output": "⠙⠑â â â ›â •⠛⠥⠻⠽" }, { "input": "demagoguery's", "output": "⠙⠑â â â ›â •⠛⠥⠻⠽⠄⠎" }, { "input": "demagogues", "output": "⠙⠑â â â ›â •⠛⠥⠑⠎" }, { "input": "demagogy", "output": "⠙⠑â â â ›â •⠛⠽" }, { "input": "demagogy's", "output": "⠙⠑â â â ›â •⠛⠽⠄⠎" }, { "input": "demand", "output": "⠙⠑â â ¯" }, { "input": "demand's", "output": "⠙⠑â â ¯â „â Ž" }, { "input": "demanded", "output": "⠙⠑â â ¯â «" }, { "input": "demanding", "output": "⠙⠑â â ¯â Œ" }, { "input": "demands", "output": "⠙⠑â â ¯â Ž" }, { "input": "demarcate", "output": "⠙⠑â â œâ ‰â â žâ ‘" }, { "input": "demarcated", "output": "⠙⠑â â œâ ‰â â žâ «" }, { "input": "demarcates", "output": "⠙⠑â â œâ ‰â â žâ ‘â Ž" }, { "input": "demarcating", "output": "⠙⠑â â œâ ‰â â žâ Œ" }, { "input": "demarcation", "output": "⠙⠑â â œâ ‰â  â " }, { "input": "demarcation's", "output": "⠙⠑â â œâ ‰â  â â „â Ž" }, { "input": "demean", "output": "⠙⠑â â ‚â " }, { "input": "demeaned", "output": "⠙⠑â â ‚â â «" }, { "input": "demeaning", "output": "⠙⠑â â ‚â â Œ" }, { "input": "demeanor", "output": "⠙⠑â â ‚â â •â —" }, { "input": "demeanor's", "output": "⠙⠑â â ‚â â •â —â „â Ž" }, { "input": "demeans", "output": "⠙⠑â â ‚â â Ž" }, { "input": "demented", "output": "⠙⠑⠰⠞⠫" }, { "input": "dementedly", "output": "⠙⠑⠰⠞⠫⠇⠽" }, { "input": "dementia", "output": "⠙⠑⠰⠞⠊â " }, { "input": "dementia's", "output": "⠙⠑⠰⠞⠊â â „â Ž" }, { "input": "demerit", "output": "⠙⠑â â »â Šâ ž" }, { "input": "demerit's", "output": "⠙⠑â â »â Šâ žâ „â Ž" }, { "input": "demerits", "output": "⠙⠑â â »â Šâ žâ Ž" }, { "input": "demesne", "output": "⠙⠑â â ‘â Žâ â ‘" }, { "input": "demesne's", "output": "⠙⠑â â ‘â Žâ â ‘â „â Ž" }, { "input": "demesnes", "output": "⠙⠑â â ‘â Žâ â ‘â Ž" }, { "input": "demigod", "output": "⠙⠑â â Šâ ›â •â ™" }, { "input": "demigod's", "output": "⠙⠑â â Šâ ›â •⠙⠄⠎" }, { "input": "demigods", "output": "⠙⠑â â Šâ ›â •⠙⠎" }, { "input": "demijohn", "output": "⠙⠑â â Šâ šâ •â “â " }, { "input": "demijohn's", "output": "⠙⠑â â Šâ šâ •â “â â „â Ž" }, { "input": "demijohns", "output": "⠙⠑â â Šâ šâ •â “â â Ž" }, { "input": "demilitarization", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ  â " }, { "input": "demilitarization's", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ  â â „â Ž" }, { "input": "demilitarize", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘" }, { "input": "demilitarized", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ «" }, { "input": "demilitarizes", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘â Ž" }, { "input": "demilitarizing", "output": "⠙⠑â â Šâ ‡â Šâ žâ œâ Šâ µâ Œ" }, { "input": "demimondaine", "output": "⠙⠑â â Šâ â •â â ™â â ”â ‘" }, { "input": "demimondaine's", "output": "⠙⠑â â Šâ â •â â ™â â ”â ‘â „â Ž" }, { "input": "demimondaines", "output": "⠙⠑â â Šâ â •â â ™â â ”â ‘â Ž" }, { "input": "demimonde", "output": "⠙⠑â â Šâ â •â â ™â ‘" }, { "input": "demimonde's", "output": "⠙⠑â â Šâ â •â â ™â ‘â „â Ž" }, { "input": "demise", "output": "⠙⠑â â Šâ Žâ ‘" }, { "input": "demise's", "output": "⠙⠑â â Šâ Žâ ‘â „â Ž" }, { "input": "demised", "output": "⠙⠑â â Šâ Žâ «" }, { "input": "demises", "output": "⠙⠑â â Šâ Žâ ‘â Ž" }, { "input": "demising", "output": "⠙⠑â â Šâ Žâ ”â ›" }, { "input": "demitasse", "output": "⠙⠑â â Šâ žâ â Žâ Žâ ‘" }, { "input": "demitasse's", "output": "⠙⠑â â Šâ žâ â Žâ Žâ ‘â „â Ž" }, { "input": "demitasses", "output": "⠙⠑â â Šâ žâ â Žâ Žâ ‘â Ž" }, { "input": "demo", "output": "⠙⠑â â •" }, { "input": "demo's", "output": "⠙⠑â â •â „â Ž" }, { "input": "demobilization", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠠â " }, { "input": "demobilization's", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "demobilize", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠑" }, { "input": "demobilized", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠫" }, { "input": "demobilizes", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠑⠎" }, { "input": "demobilizing", "output": "⠙⠑â â •⠃⠊⠇⠊⠵⠌" }, { "input": "democracies", "output": "⠙⠑â â •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "democracy", "output": "⠙⠑â â •⠉⠗â â ‰â ½" }, { "input": "democracy's", "output": "⠙⠑â â •⠉⠗â â ‰â ½â „â Ž" }, { "input": "democrat", "output": "⠙⠑â â •⠉⠗â â ž" }, { "input": "democrat's", "output": "⠙⠑â â •⠉⠗â â žâ „â Ž" }, { "input": "democratic", "output": "⠙⠑â â •⠉⠗â â žâ Šâ ‰" }, { "input": "democratically", "output": "⠙⠑â â •⠉⠗â â žâ Šâ ‰â  â ½" }, { "input": "democratization", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ  â " }, { "input": "democratization's", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ  â â „â Ž" }, { "input": "democratize", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ ‘" }, { "input": "democratized", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ «" }, { "input": "democratizes", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ ‘â Ž" }, { "input": "democratizing", "output": "⠙⠑â â •⠉⠗â â žâ Šâ µâ Œ" }, { "input": "democrats", "output": "⠙⠑â â •⠉⠗â â žâ Ž" }, { "input": "demodulate", "output": "⠙⠑â â •⠙⠥⠇â â žâ ‘" }, { "input": "demodulated", "output": "⠙⠑â â •⠙⠥⠇â â žâ «" }, { "input": "demodulates", "output": "⠙⠑â â •⠙⠥⠇â â žâ ‘â Ž" }, { "input": "demodulating", "output": "⠙⠑â â •⠙⠥⠇â â žâ Œ" }, { "input": "demodulation", "output": "⠙⠑â â •⠙⠥⠇⠠â " }, { "input": "demodulation's", "output": "⠙⠑â â •⠙⠥⠇⠠â â „â Ž" }, { "input": "demoed", "output": "⠙⠑â â •â «" }, { "input": "demographer", "output": "⠙⠑â â •⠛⠗â â â “â »" }, { "input": "demographer's", "output": "⠙⠑â â •⠛⠗â â â “⠻⠄⠎" }, { "input": "demographers", "output": "⠙⠑â â •⠛⠗â â â “⠻⠎" }, { "input": "demographic", "output": "⠙⠑â â •⠛⠗â â â “â Šâ ‰" }, { "input": "demographic's", "output": "⠙⠑â â •⠛⠗â â â “⠊⠉⠄⠎" }, { "input": "demographically", "output": "⠙⠑â â •⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "demographics", "output": "⠙⠑â â •⠛⠗â â â “⠊⠉⠎" }, { "input": "demographics's", "output": "⠙⠑â â •⠛⠗â â â “⠊⠉⠎⠄⠎" }, { "input": "demography", "output": "⠙⠑â â •⠛⠗â â â “â ½" }, { "input": "demography's", "output": "⠙⠑â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "demoing", "output": "⠙⠑â â •â Œ" }, { "input": "demolish", "output": "⠙⠑â â •⠇⠊⠩" }, { "input": "demolished", "output": "⠙⠑â â •⠇⠊⠩⠫" }, { "input": "demolishes", "output": "⠙⠑â â •⠇⠊⠩⠑⠎" }, { "input": "demolishing", "output": "⠙⠑â â •⠇⠊⠩⠌" }, { "input": "demolition", "output": "⠙⠑â â •⠇⠊⠰â " }, { "input": "demolition's", "output": "⠙⠑â â •⠇⠊⠰â â „â Ž" }, { "input": "demolitions", "output": "⠙⠑â â •⠇⠊⠰â â Ž" }, { "input": "demon", "output": "⠙⠑â â •â " }, { "input": "demon's", "output": "⠙⠑â â •â â „â Ž" }, { "input": "demonetization", "output": "⠙⠑â â â •⠞⠊⠵⠠â " }, { "input": "demonetization's", "output": "⠙⠑â â â •⠞⠊⠵⠠â â „â Ž" }, { "input": "demonetize", "output": "⠙⠑â â â •⠞⠊⠵⠑" }, { "input": "demonetized", "output": "⠙⠑â â â •⠞⠊⠵⠫" }, { "input": "demonetizes", "output": "⠙⠑â â â •⠞⠊⠵⠑⠎" }, { "input": "demonetizing", "output": "⠙⠑â â â •⠞⠊⠵⠌" }, { "input": "demoniac", "output": "⠙⠑â â •â â Šâ â ‰" }, { "input": "demoniacal", "output": "⠙⠑â â •â â Šâ â ‰â â ‡" }, { "input": "demonic", "output": "⠙⠑â â •â â Šâ ‰" }, { "input": "demonize", "output": "⠙⠑â â •â â Šâ µâ ‘" }, { "input": "demonized", "output": "⠙⠑â â •â â Šâ µâ «" }, { "input": "demonizes", "output": "⠙⠑â â •â â Šâ µâ ‘â Ž" }, { "input": "demonizing", "output": "⠙⠑â â •â â Šâ µâ Œ" }, { "input": "demonologies", "output": "⠙⠑â â •â â •⠇⠕⠛⠊⠑⠎" }, { "input": "demonology's", "output": "⠙⠑â â •â â •⠇⠕⠛⠽⠄⠎" }, { "input": "demons", "output": "⠙⠑â â •â â Ž" }, { "input": "demonstrable", "output": "⠙⠑â â •â â Œâ —â â ¼" }, { "input": "demonstrably", "output": "⠙⠑â â •â â Œâ —â â ƒâ ‡â ½" }, { "input": "demonstrate", "output": "⠙⠑â â •â â Œâ —â â žâ ‘" }, { "input": "demonstrated", "output": "⠙⠑â â •â â Œâ —â â žâ «" }, { "input": "demonstrates", "output": "⠙⠑â â •â â Œâ —â â žâ ‘â Ž" }, { "input": "demonstrating", "output": "⠙⠑â â •â â Œâ —â â žâ Œ" }, { "input": "demonstration", "output": "⠙⠑â â •â â Œâ —â  â " }, { "input": "demonstration's", "output": "⠙⠑â â •â â Œâ —â  â â „â Ž" }, { "input": "demonstrations", "output": "⠙⠑â â •â â Œâ —â  â â Ž" }, { "input": "demonstrative", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘" }, { "input": "demonstrative's", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘â „â Ž" }, { "input": "demonstratively", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘⠇⠽" }, { "input": "demonstrativeness", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘â °â Ž" }, { "input": "demonstrativeness's", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "demonstratives", "output": "⠙⠑â â •â â Œâ —â â žâ Šâ §â ‘â Ž" }, { "input": "demonstrator", "output": "⠙⠑â â •â â Œâ —â â žâ •â —" }, { "input": "demonstrator's", "output": "⠙⠑â â •â â Œâ —â â žâ •â —â „â Ž" }, { "input": "demonstrators", "output": "⠙⠑â â •â â Œâ —â â žâ •â —â Ž" }, { "input": "demoralization", "output": "⠙⠑â â •â —â â ‡â Šâ µâ  â " }, { "input": "demoralization's", "output": "⠙⠑â â •â —â â ‡â Šâ µâ  â â „â Ž" }, { "input": "demoralize", "output": "⠙⠑â â •â —â â ‡â Šâ µâ ‘" }, { "input": "demoralized", "output": "⠙⠑â â •â —â â ‡â Šâ µâ «" }, { "input": "demoralizes", "output": "⠙⠑â â •â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "demoralizing", "output": "⠙⠑â â •â —â â ‡â Šâ µâ Œ" }, { "input": "demos", "output": "⠙⠑â â •â Ž" }, { "input": "demote", "output": "⠙⠑â â •â žâ ‘" }, { "input": "demoted", "output": "⠙⠑â â •â žâ «" }, { "input": "demotes", "output": "⠙⠑â â •â žâ ‘â Ž" }, { "input": "demoting", "output": "⠙⠑â â •â žâ Œ" }, { "input": "demotion", "output": "⠙⠑â â •â °â " }, { "input": "demotion's", "output": "⠙⠑â â •â °â â „â Ž" }, { "input": "demotions", "output": "⠙⠑â â •â °â â Ž" }, { "input": "demount", "output": "⠙⠑â â ¨â ž" }, { "input": "demulcent", "output": "⠙⠑â â ¥â ‡â ‰â ¢â ž" }, { "input": "demulcent's", "output": "⠙⠑â â ¥â ‡â ‰â ¢â žâ „â Ž" }, { "input": "demulcents", "output": "⠙⠑â â ¥â ‡â ‰â ¢â žâ Ž" }, { "input": "demur", "output": "⠙⠑â â ¥â —" }, { "input": "demur's", "output": "⠙⠑â â ¥â —â „â Ž" }, { "input": "demure", "output": "⠙⠑â â ¥â —â ‘" }, { "input": "demurely", "output": "⠙⠑â â ¥â —⠑⠇⠽" }, { "input": "demureness's", "output": "⠙⠑â â ¥â —â ‘â °â Žâ „â Ž" }, { "input": "demurer", "output": "⠙⠑â â ¥â —â »" }, { "input": "demurest", "output": "⠙⠑â â ¥â —â ‘â Œ" }, { "input": "demurral", "output": "⠙⠑â â ¥â —â —â â ‡" }, { "input": "demurral's", "output": "⠙⠑â â ¥â —â —â â ‡â „â Ž" }, { "input": "demurrals", "output": "⠙⠑â â ¥â —â —â â ‡â Ž" }, { "input": "demurred", "output": "⠙⠑â â ¥â —â —â «" }, { "input": "demurrer", "output": "⠙⠑â â ¥â —â —â »" }, { "input": "demurrer's", "output": "⠙⠑â â ¥â —⠗⠻⠄⠎" }, { "input": "demurrers", "output": "⠙⠑â â ¥â —⠗⠻⠎" }, { "input": "demurring", "output": "⠙⠑â â ¥â —â —â Œ" }, { "input": "demurs", "output": "⠙⠑â â ¥â —â Ž" }, { "input": "demystification's", "output": "⠙⠑â â ½â Œâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "den", "output": "⠙⠢" }, { "input": "den's", "output": "⠙⠢⠄⠎" }, { "input": "denationalization", "output": "⠙⠑â â  â â â ‡â Šâ µâ  â " }, { "input": "denationalize", "output": "⠙⠑â â  â â â ‡â Šâ µâ ‘" }, { "input": "denationalized", "output": "⠙⠑â â  â â â ‡â Šâ µâ «" }, { "input": "denationalizes", "output": "⠙⠑â â  â â â ‡â Šâ µâ ‘â Ž" }, { "input": "denationalizing", "output": "⠙⠑â â  â â â ‡â Šâ µâ Œ" }, { "input": "denature", "output": "⠙⠑â â â žâ ¥â —â ‘" }, { "input": "denatured", "output": "⠙⠑â â â žâ ¥â —â «" }, { "input": "denatures", "output": "⠙⠑â â â žâ ¥â —â ‘â Ž" }, { "input": "denaturing", "output": "⠙⠑â â â žâ ¥â —â Œ" }, { "input": "dendrite", "output": "⠙⠢⠙⠗⠊⠞⠑" }, { "input": "dendrite's", "output": "⠙⠢⠙⠗⠊⠞⠑⠄⠎" }, { "input": "dendrites", "output": "⠙⠢⠙⠗⠊⠞⠑⠎" }, { "input": "dengue", "output": "⠙⠢⠛⠥⠑" }, { "input": "dengue's", "output": "⠙⠢⠛⠥⠑⠄⠎" }, { "input": "denial", "output": "⠙⠢⠊â â ‡" }, { "input": "denial's", "output": "⠙⠢⠊â â ‡â „â Ž" }, { "input": "denials", "output": "⠙⠢⠊â â ‡â Ž" }, { "input": "denied", "output": "⠙⠢⠊⠫" }, { "input": "denier", "output": "⠙⠢⠊⠻" }, { "input": "denier's", "output": "⠙⠢⠊⠻⠄⠎" }, { "input": "deniers", "output": "⠙⠢⠊⠻⠎" }, { "input": "denies", "output": "⠙⠢⠊⠑⠎" }, { "input": "denigrate", "output": "⠙⠢⠊⠛⠗â â žâ ‘" }, { "input": "denigrated", "output": "⠙⠢⠊⠛⠗â â žâ «" }, { "input": "denigrates", "output": "⠙⠢⠊⠛⠗â â žâ ‘â Ž" }, { "input": "denigrating", "output": "⠙⠢⠊⠛⠗â â žâ Œ" }, { "input": "denigration", "output": "⠙⠢⠊⠛⠗⠠â " }, { "input": "denigration's", "output": "⠙⠢⠊⠛⠗⠠â â „â Ž" }, { "input": "denim", "output": "⠙⠢⠊â " }, { "input": "denim's", "output": "⠙⠢⠊â â „â Ž" }, { "input": "denims", "output": "⠙⠢⠊â â Ž" }, { "input": "denizen", "output": "⠙⠢⠊⠵⠢" }, { "input": "denizen's", "output": "⠙⠢⠊⠵⠢⠄⠎" }, { "input": "denizens", "output": "⠙⠢⠊⠵⠢⠎" }, { "input": "denominate", "output": "⠙⠑â â •â â ”â â žâ ‘" }, { "input": "denominated", "output": "⠙⠑â â •â â ”â â žâ «" }, { "input": "denominates", "output": "⠙⠑â â •â â ”â â žâ ‘â Ž" }, { "input": "denominating", "output": "⠙⠑â â •â â ”â â žâ Œ" }, { "input": "denomination", "output": "⠙⠑â â •â â ”â  â " }, { "input": "denomination's", "output": "⠙⠑â â •â â ”â  â â „â Ž" }, { "input": "denominational", "output": "⠙⠑â â •â â ”â  â â â ‡" }, { "input": "denominations", "output": "⠙⠑â â •â â ”â  â â Ž" }, { "input": "denominator", "output": "⠙⠑â â •â â ”â â žâ •â —" }, { "input": "denominator's", "output": "⠙⠑â â •â â ”â â žâ •â —â „â Ž" }, { "input": "denominators", "output": "⠙⠑â â •â â ”â â žâ •â —â Ž" }, { "input": "denotation", "output": "⠙⠑â â •â žâ  â " }, { "input": "denotation's", "output": "⠙⠑â â •â žâ  â â „â Ž" }, { "input": "denotations", "output": "⠙⠑â â •â žâ  â â Ž" }, { "input": "denotative", "output": "⠙⠑â â •â žâ â žâ Šâ §â ‘" }, { "input": "denote", "output": "⠙⠑â â •â žâ ‘" }, { "input": "denoted", "output": "⠙⠑â â •â žâ «" }, { "input": "denotes", "output": "⠙⠑â â •â žâ ‘â Ž" }, { "input": "denoting", "output": "⠙⠑â â •â žâ Œ" }, { "input": "denouement", "output": "⠙⠑â â ³â ‘â °â ž" }, { "input": "denouement's", "output": "⠙⠑â â ³â ‘â °â žâ „â Ž" }, { "input": "denouements", "output": "⠙⠑â â ³â ‘â °â žâ Ž" }, { "input": "denounce", "output": "⠙⠑â â ³â â ‰â ‘" }, { "input": "denounced", "output": "⠙⠑â â ³â â ‰â «" }, { "input": "denouncement", "output": "⠙⠑â â ³â â ‰â ‘â °â ž" }, { "input": "denouncement's", "output": "⠙⠑â â ³â â ‰â ‘â °â žâ „â Ž" }, { "input": "denouncements", "output": "⠙⠑â â ³â â ‰â ‘â °â žâ Ž" }, { "input": "denounces", "output": "⠙⠑â â ³â â ‰â ‘â Ž" }, { "input": "denouncing", "output": "⠙⠑â â ³â â ‰â Œ" }, { "input": "dens", "output": "⠙⠢⠎" }, { "input": "dense", "output": "⠙⠢⠎⠑" }, { "input": "densely", "output": "⠙⠢⠎⠑⠇⠽" }, { "input": "denseness", "output": "⠙⠢⠎⠑⠰⠎" }, { "input": "denseness's", "output": "⠙⠢⠎⠑⠰⠎⠄⠎" }, { "input": "denser", "output": "⠙⠢⠎⠻" }, { "input": "densest", "output": "⠙⠢⠎⠑⠌" }, { "input": "densities", "output": "⠙⠢⠎⠊⠞⠊⠑⠎" }, { "input": "density", "output": "⠙⠢⠎⠰⠽" }, { "input": "density's", "output": "⠙⠢⠎⠰⠽⠄⠎" }, { "input": "dent", "output": "⠙⠢⠞" }, { "input": "dent's", "output": "⠙⠢⠞⠄⠎" }, { "input": "dental", "output": "⠙⠢⠞â â ‡" }, { "input": "dentally", "output": "⠙⠢⠞⠠⠽" }, { "input": "dented", "output": "⠙⠢⠞⠫" }, { "input": "dentifrice", "output": "⠙⠢⠞⠊⠋⠗⠊⠉⠑" }, { "input": "dentifrice's", "output": "⠙⠢⠞⠊⠋⠗⠊⠉⠑⠄⠎" }, { "input": "dentifrices", "output": "⠙⠢⠞⠊⠋⠗⠊⠉⠑⠎" }, { "input": "dentin", "output": "⠙⠢⠞⠔" }, { "input": "dentin's", "output": "⠙⠢⠞⠔⠄⠎" }, { "input": "denting", "output": "⠙⠢⠞⠌" }, { "input": "dentist", "output": "⠙⠢⠞⠊⠌" }, { "input": "dentist's", "output": "⠙⠢⠞⠊⠌⠄⠎" }, { "input": "dentistry", "output": "⠙⠢⠞⠊⠌⠗⠽" }, { "input": "dentistry's", "output": "⠙⠢⠞⠊⠌⠗⠽⠄⠎" }, { "input": "dentists", "output": "⠙⠢⠞⠊⠌⠎" }, { "input": "dentition", "output": "⠙⠢⠞⠊⠰â " }, { "input": "dentition's", "output": "⠙⠢⠞⠊⠰â â „â Ž" }, { "input": "dents", "output": "⠙⠢⠞⠎" }, { "input": "denture", "output": "⠙⠢⠞⠥⠗⠑" }, { "input": "denture's", "output": "⠙⠢⠞⠥⠗⠑⠄⠎" }, { "input": "dentures", "output": "⠙⠢⠞⠥⠗⠑⠎" }, { "input": "denuclearize", "output": "⠙⠢⠥⠉⠇⠑⠜⠊⠵⠑" }, { "input": "denuclearized", "output": "⠙⠢⠥⠉⠇⠑⠜⠊⠵⠫" }, { "input": "denuclearizes", "output": "⠙⠢⠥⠉⠇⠑⠜⠊⠵⠑⠎" }, { "input": "denuclearizing", "output": "⠙⠢⠥⠉⠇⠑⠜⠊⠵⠌" }, { "input": "denudation", "output": "⠙⠢⠥⠙⠠â " }, { "input": "denudation's", "output": "⠙⠢⠥⠙⠠â â „â Ž" }, { "input": "denude", "output": "⠙⠑â â ¥â ™â ‘" }, { "input": "denuded", "output": "⠙⠑â â ¥â ™â «" }, { "input": "denudes", "output": "⠙⠑â â ¥â ™â ‘â Ž" }, { "input": "denuding", "output": "⠙⠑â â ¥â ™â Œ" }, { "input": "denunciation", "output": "⠙⠑â â ¥â â ‰â Šâ  â " }, { "input": "denunciation's", "output": "⠙⠑â â ¥â â ‰â Šâ  â â „â Ž" }, { "input": "denunciations", "output": "⠙⠑â â ¥â â ‰â Šâ  â â Ž" }, { "input": "deny", "output": "⠙⠢⠽" }, { "input": "denying", "output": "⠙⠢⠽⠌" }, { "input": "deodorant", "output": "⠙⠑⠕⠙⠕⠗â â â ž" }, { "input": "deodorant's", "output": "⠙⠑⠕⠙⠕⠗â â â žâ „â Ž" }, { "input": "deodorants", "output": "⠙⠑⠕⠙⠕⠗â â â žâ Ž" }, { "input": "deodorization", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠠â " }, { "input": "deodorization's", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠠â â „â Ž" }, { "input": "deodorize", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠑" }, { "input": "deodorized", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠫" }, { "input": "deodorizer", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠻" }, { "input": "deodorizer's", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠻⠄⠎" }, { "input": "deodorizers", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠻⠎" }, { "input": "deodorizes", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠑⠎" }, { "input": "deodorizing", "output": "⠙⠑⠕⠙⠕⠗⠊⠵⠌" }, { "input": "depart", "output": "⠙⠑â â " }, { "input": "departed", "output": "⠙⠑â â â «" }, { "input": "departed's", "output": "⠙⠑â â â «â „â Ž" }, { "input": "departing", "output": "⠙⠑â â â Œ" }, { "input": "department", "output": "⠙⠑â â â °â ž" }, { "input": "department's", "output": "⠙⠑â â â °â žâ „â Ž" }, { "input": "departmental", "output": "⠙⠑â â â °â žâ â ‡" }, { "input": "departmentalization", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ  â " }, { "input": "departmentalization's", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "departmentalize", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ ‘" }, { "input": "departmentalized", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ «" }, { "input": "departmentalizes", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "departmentalizing", "output": "⠙⠑â â â °â žâ â ‡â Šâ µâ Œ" }, { "input": "departmentally", "output": "⠙⠑â â â °â žâ  â ½" }, { "input": "departments", "output": "⠙⠑â â â °â žâ Ž" }, { "input": "departs", "output": "⠙⠑â â â Ž" }, { "input": "departure", "output": "⠙⠑â â â ¥â —â ‘" }, { "input": "departure's", "output": "⠙⠑â â â ¥â —â ‘â „â Ž" }, { "input": "departures", "output": "⠙⠑â â â ¥â —â ‘â Ž" }, { "input": "depend", "output": "⠙⠑â â ¢â ™" }, { "input": "dependability", "output": "⠙⠑â â ¢â ™â â ƒâ Šâ ‡â °â ½" }, { "input": "dependability's", "output": "⠙⠑â â ¢â ™â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "dependable", "output": "⠙⠑â â ¢â ™â â ¼" }, { "input": "dependably", "output": "⠙⠑â â ¢â ™â â ƒâ ‡â ½" }, { "input": "depended", "output": "⠙⠑â â ¢â ™â «" }, { "input": "dependence", "output": "⠙⠑â â ¢â ™â °â ‘" }, { "input": "dependence's", "output": "⠙⠑â â ¢â ™â °â ‘â „â Ž" }, { "input": "dependencies", "output": "⠙⠑â â ¢â ™â ¢â ‰â Šâ ‘â Ž" }, { "input": "dependency", "output": "⠙⠑â â ¢â ™â ¢â ‰â ½" }, { "input": "dependency's", "output": "⠙⠑â â ¢â ™â ¢â ‰â ½â „â Ž" }, { "input": "dependent", "output": "⠙⠑â â ¢â ™â ¢â ž" }, { "input": "dependent's", "output": "⠙⠑â â ¢â ™â ¢â žâ „â Ž" }, { "input": "dependently", "output": "⠙⠑â â ¢â ™â ¢â žâ ‡â ½" }, { "input": "dependents", "output": "⠙⠑â â ¢â ™â ¢â žâ Ž" }, { "input": "depending", "output": "⠙⠑â â ¢â ™â Œ" }, { "input": "depends", "output": "⠙⠑â â ¢â ™â Ž" }, { "input": "depersonalize", "output": "⠙⠑â â »â Žâ •â â â ‡â Šâ µâ ‘" }, { "input": "depersonalized", "output": "⠙⠑â â »â Žâ •â â â ‡â Šâ µâ «" }, { "input": "depersonalizes", "output": "⠙⠑â â »â Žâ •â â â ‡â Šâ µâ ‘â Ž" }, { "input": "depersonalizing", "output": "⠙⠑â â »â Žâ •â â â ‡â Šâ µâ Œ" }, { "input": "depict", "output": "⠙⠑â â Šâ ‰â ž" }, { "input": "depicted", "output": "⠙⠑â â Šâ ‰â žâ «" }, { "input": "depicting", "output": "⠙⠑â â Šâ ‰â žâ Œ" }, { "input": "depiction", "output": "⠙⠑â â Šâ ‰â °â " }, { "input": "depiction's", "output": "⠙⠑â â Šâ ‰â °â â „â Ž" }, { "input": "depictions", "output": "⠙⠑â â Šâ ‰â °â â Ž" }, { "input": "depicts", "output": "⠙⠑â â Šâ ‰â žâ Ž" }, { "input": "depilatories", "output": "⠙⠑â â Šâ ‡â â žâ •â —â Šâ ‘â Ž" }, { "input": "depilatory", "output": "⠙⠑â â Šâ ‡â â žâ •â —â ½" }, { "input": "depilatory's", "output": "⠙⠑â â Šâ ‡â â žâ •⠗⠽⠄⠎" }, { "input": "deplane", "output": "⠙⠑â â ‡â â â ‘" }, { "input": "deplaned", "output": "⠙⠑â â ‡â â â «" }, { "input": "deplanes", "output": "⠙⠑â â ‡â â â ‘â Ž" }, { "input": "deplaning", "output": "⠙⠑â â ‡â â â Œ" }, { "input": "deplete", "output": "⠙⠑â â ‡â ‘â žâ ‘" }, { "input": "depleted", "output": "⠙⠑â â ‡â ‘â žâ «" }, { "input": "depletes", "output": "⠙⠑â â ‡â ‘â žâ ‘â Ž" }, { "input": "depleting", "output": "⠙⠑â â ‡â ‘â žâ Œ" }, { "input": "depletion", "output": "⠙⠑â â ‡â ‘â °â " }, { "input": "depletion's", "output": "⠙⠑â â ‡â ‘â °â â „â Ž" }, { "input": "deplorable", "output": "⠙⠑â â ‡â •â —â â ¼" }, { "input": "deplorably", "output": "⠙⠑â â ‡â •â —â â ƒâ ‡â ½" }, { "input": "deplore", "output": "⠙⠑â â ‡â •â —â ‘" }, { "input": "deplored", "output": "⠙⠑â â ‡â •â —â «" }, { "input": "deplores", "output": "⠙⠑â â ‡â •â —â ‘â Ž" }, { "input": "deploring", "output": "⠙⠑â â ‡â •â —â Œ" }, { "input": "deploy", "output": "⠙⠑â â ‡â •â ½" }, { "input": "deployed", "output": "⠙⠑â â ‡â •⠽⠫" }, { "input": "deploying", "output": "⠙⠑â â ‡â •⠽⠌" }, { "input": "deployment", "output": "⠙⠑â â ‡â •⠽⠰⠞" }, { "input": "deployment's", "output": "⠙⠑â â ‡â •⠽⠰⠞⠄⠎" }, { "input": "deployments", "output": "⠙⠑â â ‡â •⠽⠰⠞⠎" }, { "input": "deploys", "output": "⠙⠑â â ‡â •⠽⠎" }, { "input": "depolarization", "output": "⠙⠑â â •⠇⠜⠊⠵⠠â " }, { "input": "depolarization's", "output": "⠙⠑â â •⠇⠜⠊⠵⠠â â „â Ž" }, { "input": "depolarize", "output": "⠙⠑â â •⠇⠜⠊⠵⠑" }, { "input": "depolarized", "output": "⠙⠑â â •⠇⠜⠊⠵⠫" }, { "input": "depolarizes", "output": "⠙⠑â â •⠇⠜⠊⠵⠑⠎" }, { "input": "depolarizing", "output": "⠙⠑â â •⠇⠜⠊⠵⠌" }, { "input": "depoliticize", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠑" }, { "input": "depoliticized", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠫" }, { "input": "depoliticizes", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠑⠎" }, { "input": "depoliticizing", "output": "⠙⠑â â •⠇⠊⠞⠊⠉⠊⠵⠌" }, { "input": "deponent", "output": "⠙⠑â â •â â ¢â ž" }, { "input": "deponent's", "output": "⠙⠑â â •â â ¢â žâ „â Ž" }, { "input": "deponents", "output": "⠙⠑â â •â â ¢â žâ Ž" }, { "input": "depopulate", "output": "⠙⠑â â •â â ¥â ‡â â žâ ‘" }, { "input": "depopulated", "output": "⠙⠑â â •â â ¥â ‡â â žâ «" }, { "input": "depopulates", "output": "⠙⠑â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "depopulating", "output": "⠙⠑â â •â â ¥â ‡â â žâ Œ" }, { "input": "depopulation", "output": "⠙⠑â â •â â ¥â ‡â  â " }, { "input": "depopulation's", "output": "⠙⠑â â •â â ¥â ‡â  â â „â Ž" }, { "input": "deport", "output": "⠙⠑â â •â —â ž" }, { "input": "deportation", "output": "⠙⠑â â •â —â žâ  â " }, { "input": "deportation's", "output": "⠙⠑â â •â —â žâ  â â „â Ž" }, { "input": "deportations", "output": "⠙⠑â â •â —â žâ  â â Ž" }, { "input": "deported", "output": "⠙⠑â â •â —â žâ «" }, { "input": "deporting", "output": "⠙⠑â â •â —â žâ Œ" }, { "input": "deportment", "output": "⠙⠑â â •â —â žâ °â ž" }, { "input": "deportment's", "output": "⠙⠑â â •â —â žâ °â žâ „â Ž" }, { "input": "deports", "output": "⠙⠑â â •â —â žâ Ž" }, { "input": "depose", "output": "⠙⠑â â •â Žâ ‘" }, { "input": "deposed", "output": "⠙⠑â â •â Žâ «" }, { "input": "deposes", "output": "⠙⠑â â •â Žâ ‘â Ž" }, { "input": "deposing", "output": "⠙⠑â â •â Žâ Œ" }, { "input": "deposit", "output": "⠙⠑â â •â Žâ Šâ ž" }, { "input": "deposit's", "output": "⠙⠑â â •â Žâ Šâ žâ „â Ž" }, { "input": "deposited", "output": "⠙⠑â â •â Žâ Šâ žâ «" }, { "input": "depositing", "output": "⠙⠑â â •â Žâ Šâ žâ Œ" }, { "input": "deposition", "output": "⠙⠑â â •â Žâ Šâ °â " }, { "input": "deposition's", "output": "⠙⠑â â •â Žâ Šâ °â â „â Ž" }, { "input": "depositions", "output": "⠙⠑â â •â Žâ Šâ °â â Ž" }, { "input": "depositor", "output": "⠙⠑â â •â Žâ Šâ žâ •â —" }, { "input": "depositor's", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â „â Ž" }, { "input": "depositories", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "depositors", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â Ž" }, { "input": "depository", "output": "⠙⠑â â •â Žâ Šâ žâ •â —â ½" }, { "input": "depository's", "output": "⠙⠑â â •⠎⠊⠞⠕⠗⠽⠄⠎" }, { "input": "deposits", "output": "⠙⠑â â •â Žâ Šâ žâ Ž" }, { "input": "depot", "output": "⠙⠑â â •â ž" }, { "input": "depot's", "output": "⠙⠑â â •â žâ „â Ž" }, { "input": "depots", "output": "⠙⠑â â •â žâ Ž" }, { "input": "deprave", "output": "⠙⠑â â —â â §â ‘" }, { "input": "depraved", "output": "⠙⠑â â —â â §â «" }, { "input": "depraves", "output": "⠙⠑â â —â â §â ‘â Ž" }, { "input": "depraving", "output": "⠙⠑â â —â â §â Œ" }, { "input": "depravities", "output": "⠙⠑â â —â â §â Šâ žâ Šâ ‘â Ž" }, { "input": "depravity", "output": "⠙⠑â â —â â §â °â ½" }, { "input": "depravity's", "output": "⠙⠑â â —â â §â °â ½â „â Ž" }, { "input": "deprecate", "output": "⠙⠑â â —â ‘â ‰â â žâ ‘" }, { "input": "deprecated", "output": "⠙⠑â â —â ‘â ‰â â žâ «" }, { "input": "deprecates", "output": "⠙⠑â â —â ‘â ‰â â žâ ‘â Ž" }, { "input": "deprecating", "output": "⠙⠑â â —â ‘â ‰â â žâ Œ" }, { "input": "deprecation", "output": "⠙⠑â â —⠑⠉⠠â " }, { "input": "deprecation's", "output": "⠙⠑â â —⠑⠉⠠â â „â Ž" }, { "input": "deprecatory", "output": "⠙⠑â â —â ‘â ‰â â žâ •â —â ½" }, { "input": "depreciate", "output": "⠙⠑â â —⠑⠉⠊â â žâ ‘" }, { "input": "depreciated", "output": "⠙⠑â â —⠑⠉⠊â â žâ «" }, { "input": "depreciates", "output": "⠙⠑â â —⠑⠉⠊â â žâ ‘â Ž" }, { "input": "depreciating", "output": "⠙⠑â â —⠑⠉⠊â â žâ Œ" }, { "input": "depreciation", "output": "⠙⠑â â —⠑⠉⠊⠠â " }, { "input": "depreciation's", "output": "⠙⠑â â —⠑⠉⠊⠠â â „â Ž" }, { "input": "depredation", "output": "⠙⠑â â —â «â  â " }, { "input": "depredation's", "output": "⠙⠑â â —â «â  â â „â Ž" }, { "input": "depredations", "output": "⠙⠑â â —â «â  â â Ž" }, { "input": "depress", "output": "⠙⠑â â —â ‘â Žâ Ž" }, { "input": "depressant", "output": "⠙⠑â â —â ‘â Žâ Žâ â â ž" }, { "input": "depressant's", "output": "⠙⠑â â —â ‘â Žâ Žâ â â žâ „â Ž" }, { "input": "depressants", "output": "⠙⠑â â —â ‘â Žâ Žâ â â žâ Ž" }, { "input": "depressed", "output": "⠙⠑â â —â ‘â Žâ Žâ «" }, { "input": "depresses", "output": "⠙⠑â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "depressing", "output": "⠙⠑â â —â ‘â Žâ Žâ Œ" }, { "input": "depressingly", "output": "⠙⠑â â —⠑⠎⠎⠌⠇⠽" }, { "input": "depression", "output": "⠙⠑â â —â ‘â Žâ ¨â " }, { "input": "depression's", "output": "⠙⠑â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "depressions", "output": "⠙⠑â â —â ‘â Žâ ¨â â Ž" }, { "input": "depressive", "output": "⠙⠑â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "depressive's", "output": "⠙⠑â â —â ‘â Žâ Žâ Šâ §â ‘â „â Ž" }, { "input": "depressives", "output": "⠙⠑â â —â ‘â Žâ Žâ Šâ §â ‘â Ž" }, { "input": "depressor", "output": "⠙⠑â â —â ‘â Žâ Žâ •â —" }, { "input": "depressor's", "output": "⠙⠑â â —â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "depressors", "output": "⠙⠑â â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "depressurization", "output": "⠙⠑â â —⠑⠎⠎⠥⠗⠊⠵⠠â " }, { "input": "depressurize", "output": "⠙⠑â â —⠑⠎⠎⠥⠗⠊⠵⠑" }, { "input": "depressurized", "output": "⠙⠑â â —⠑⠎⠎⠥⠗⠊⠵⠫" }, { "input": "depressurizes", "output": "⠙⠑â â —⠑⠎⠎⠥⠗⠊⠵⠑⠎" }, { "input": "depressurizing", "output": "⠙⠑â â —⠑⠎⠎⠥⠗⠊⠵⠌" }, { "input": "deprivation", "output": "⠙⠑â â —â Šâ §â  â " }, { "input": "deprivation's", "output": "⠙⠑â â —â Šâ §â  â â „â Ž" }, { "input": "deprivations", "output": "⠙⠑â â —â Šâ §â  â â Ž" }, { "input": "deprive", "output": "⠙⠑â â —â Šâ §â ‘" }, { "input": "deprived", "output": "⠙⠑â â —â Šâ §â «" }, { "input": "deprives", "output": "⠙⠑â â —â Šâ §â ‘â Ž" }, { "input": "depriving", "output": "⠙⠑â â —â Šâ §â Œ" }, { "input": "deprogram", "output": "⠙⠑â â —⠕⠛⠗â â " }, { "input": "deprogrammed", "output": "⠙⠑â â —⠕⠛⠗â â â â «" }, { "input": "deprogramming", "output": "⠙⠑â â —⠕⠛⠗â â â â Œ" }, { "input": "deprograms", "output": "⠙⠑â â —⠕⠛⠗â â â Ž" }, { "input": "depth", "output": "⠙⠑â â ¹" }, { "input": "depth's", "output": "⠙⠑â â ¹â „â Ž" }, { "input": "depths", "output": "⠙⠑â â ¹â Ž" }, { "input": "deputation", "output": "⠙⠑â â ¥â žâ  â " }, { "input": "deputation's", "output": "⠙⠑â â ¥â žâ  â â „â Ž" }, { "input": "deputations", "output": "⠙⠑â â ¥â žâ  â â Ž" }, { "input": "depute", "output": "⠙⠑â â ¥â žâ ‘" }, { "input": "deputed", "output": "⠙⠑â â ¥â žâ «" }, { "input": "deputes", "output": "⠙⠑â â ¥â žâ ‘â Ž" }, { "input": "deputies", "output": "⠙⠑â â ¥â žâ Šâ ‘â Ž" }, { "input": "deputing", "output": "⠙⠑â â ¥â žâ Œ" }, { "input": "deputize", "output": "⠙⠑â â ¥â žâ Šâ µâ ‘" }, { "input": "deputized", "output": "⠙⠑â â ¥â žâ Šâ µâ «" }, { "input": "deputizes", "output": "⠙⠑â â ¥â žâ Šâ µâ ‘â Ž" }, { "input": "deputizing", "output": "⠙⠑â â ¥â žâ Šâ µâ Œ" }, { "input": "deputy", "output": "⠙⠑â â ¥â žâ ½" }, { "input": "deputy's", "output": "⠙⠑â â ¥â žâ ½â „â Ž" }, { "input": "derail", "output": "⠙⠑⠗â â Šâ ‡" }, { "input": "derailed", "output": "⠙⠑⠗â â Šâ ‡â «" }, { "input": "derailing", "output": "⠙⠑⠗â â Šâ ‡â Œ" }, { "input": "derailment", "output": "⠙⠑⠗â â Šâ ‡â °â ž" }, { "input": "derailment's", "output": "⠙⠑⠗â â Šâ ‡â °â žâ „â Ž" }, { "input": "derailments", "output": "⠙⠑⠗â â Šâ ‡â °â žâ Ž" }, { "input": "derails", "output": "⠙⠑⠗â â Šâ ‡â Ž" }, { "input": "derange", "output": "⠙⠑⠗â â â ›â ‘" }, { "input": "deranged", "output": "⠙⠑⠗â â â ›â «" }, { "input": "derangement", "output": "⠙⠑⠗â â â ›â ‘â °â ž" }, { "input": "derangement's", "output": "⠙⠑⠗â â â ›â ‘â °â žâ „â Ž" }, { "input": "deranges", "output": "⠙⠑⠗â â â ›â ‘â Ž" }, { "input": "deranging", "output": "⠙⠑⠗â â â ›â Œ" }, { "input": "derbies", "output": "⠙⠻⠃⠊⠑⠎" }, { "input": "derby", "output": "⠙⠻⠃⠽" }, { "input": "derby's", "output": "⠙⠻⠃⠽⠄⠎" }, { "input": "deregulate", "output": "⠙⠑⠗⠑⠛⠥⠇â â žâ ‘" }, { "input": "deregulated", "output": "⠙⠑⠗⠑⠛⠥⠇â â žâ «" }, { "input": "deregulates", "output": "⠙⠑⠗⠑⠛⠥⠇â â žâ ‘â Ž" }, { "input": "deregulating", "output": "⠙⠑⠗⠑⠛⠥⠇â â žâ Œ" }, { "input": "deregulation", "output": "⠙⠑⠗⠑⠛⠥⠇⠠â " }, { "input": "deregulation's", "output": "⠙⠑⠗⠑⠛⠥⠇⠠â â „â Ž" }, { "input": "derelict", "output": "⠙⠻⠑⠇⠊⠉⠞" }, { "input": "derelict's", "output": "⠙⠻⠑⠇⠊⠉⠞⠄⠎" }, { "input": "dereliction", "output": "⠙⠻⠑⠇⠊⠉⠰â " }, { "input": "dereliction's", "output": "⠙⠻⠑⠇⠊⠉⠰â â „â Ž" }, { "input": "derelicts", "output": "⠙⠻⠑⠇⠊⠉⠞⠎" }, { "input": "deride", "output": "⠙⠑⠗⠊⠙⠑" }, { "input": "derided", "output": "⠙⠑⠗⠊⠙⠫" }, { "input": "derides", "output": "⠙⠑⠗⠊⠙⠑⠎" }, { "input": "deriding", "output": "⠙⠑⠗⠊⠙⠌" }, { "input": "derision", "output": "⠙⠑⠗⠊⠨â " }, { "input": "derision's", "output": "⠙⠑⠗⠊⠨â â „â Ž" }, { "input": "derisive", "output": "⠙⠑⠗⠊⠎⠊⠧⠑" }, { "input": "derisively", "output": "⠙⠑⠗⠊⠎⠊⠧⠑⠇⠽" }, { "input": "derisiveness", "output": "⠙⠑⠗⠊⠎⠊⠧⠑⠰⠎" }, { "input": "derisiveness's", "output": "⠙⠑⠗⠊⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "derisory", "output": "⠙⠑⠗⠊⠎⠕⠗⠽" }, { "input": "derivable", "output": "⠙⠑⠗⠊⠧â â ¼" }, { "input": "derivation", "output": "⠙⠻⠊⠧⠠â " }, { "input": "derivation's", "output": "⠙⠻⠊⠧⠠â â „â Ž" }, { "input": "derivations", "output": "⠙⠻⠊⠧⠠â â Ž" }, { "input": "derivative", "output": "⠙⠑⠗⠊⠧â â žâ Šâ §â ‘" }, { "input": "derivative's", "output": "⠙⠑⠗⠊⠧â â žâ Šâ §â ‘â „â Ž" }, { "input": "derivatives", "output": "⠙⠑⠗⠊⠧â â žâ Šâ §â ‘â Ž" }, { "input": "derive", "output": "⠙⠑⠗⠊⠧⠑" }, { "input": "derived", "output": "⠙⠑⠗⠊⠧⠫" }, { "input": "derives", "output": "⠙⠑⠗⠊⠧⠑⠎" }, { "input": "deriving", "output": "⠙⠑⠗⠊⠧⠌" }, { "input": "dermal", "output": "⠙⠻â â â ‡" }, { "input": "dermatitis", "output": "⠙⠻â â â žâ Šâ žâ Šâ Ž" }, { "input": "dermatitis's", "output": "⠙⠻â â â žâ Šâ žâ Šâ Žâ „â Ž" }, { "input": "dermatological", "output": "⠙⠻â â â žâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "dermatologist", "output": "⠙⠻â â â žâ •⠇⠕⠛⠊⠌" }, { "input": "dermatologist's", "output": "⠙⠻â â â žâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "dermatologists", "output": "⠙⠻â â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "dermatology", "output": "⠙⠻â â â žâ •⠇⠕⠛⠽" }, { "input": "dermatology's", "output": "⠙⠻â â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "dermis", "output": "⠙⠻â â Šâ Ž" }, { "input": "dermis's", "output": "⠙⠻â â Šâ Žâ „â Ž" }, { "input": "derogate", "output": "⠙⠻⠕⠛â â žâ ‘" }, { "input": "derogated", "output": "⠙⠻⠕⠛â â žâ «" }, { "input": "derogates", "output": "⠙⠻⠕⠛â â žâ ‘â Ž" }, { "input": "derogating", "output": "⠙⠻⠕⠛â â žâ Œ" }, { "input": "derogation", "output": "⠙⠻⠕⠛⠠â " }, { "input": "derogation's", "output": "⠙⠻⠕⠛⠠â â „â Ž" }, { "input": "derogatorily", "output": "⠙⠑⠗⠕⠛â â žâ •⠗⠊⠇⠽" }, { "input": "derogatory", "output": "⠙⠑⠗⠕⠛â â žâ •â —â ½" }, { "input": "derrick", "output": "⠙⠻⠗⠊⠉⠅" }, { "input": "derrick's", "output": "⠙⠻⠗⠊⠉⠅⠄⠎" }, { "input": "derricks", "output": "⠙⠻⠗⠊⠉⠅⠎" }, { "input": "derringer", "output": "⠙⠻⠗⠌⠻" }, { "input": "derringer's", "output": "⠙⠻⠗⠌⠻⠄⠎" }, { "input": "derringers", "output": "⠙⠻⠗⠌⠻⠎" }, { "input": "dervish", "output": "⠙⠻⠧⠊⠩" }, { "input": "dervish's", "output": "⠙⠻⠧⠊⠩⠄⠎" }, { "input": "dervishes", "output": "⠙⠻⠧⠊⠩⠑⠎" }, { "input": "desalinate", "output": "⠙⠑⠎â â ‡â ”â â žâ ‘" }, { "input": "desalinated", "output": "⠙⠑⠎â â ‡â ”â â žâ «" }, { "input": "desalinates", "output": "⠙⠑⠎â â ‡â ”â â žâ ‘â Ž" }, { "input": "desalinating", "output": "⠙⠑⠎â â ‡â ”â â žâ Œ" }, { "input": "desalination", "output": "⠙⠑⠎â â ‡â ”â  â " }, { "input": "desalination's", "output": "⠙⠑⠎â â ‡â ”â  â â „â Ž" }, { "input": "desalinization", "output": "⠙⠑⠎â â ‡â ”⠊⠵⠠â " }, { "input": "desalinization's", "output": "⠙⠑⠎â â ‡â ”⠊⠵⠠â â „â Ž" }, { "input": "desalinize", "output": "⠙⠑⠎â â ‡â ”⠊⠵⠑" }, { "input": "desalinized", "output": "⠙⠑⠎â â ‡â ”⠊⠵⠫" }, { "input": "desalinizes", "output": "⠙⠑⠎â â ‡â ”⠊⠵⠑⠎" }, { "input": "desalinizing", "output": "⠙⠑⠎â â ‡â ”⠊⠵⠌" }, { "input": "desalt", "output": "⠙⠑⠎â â ‡â ž" }, { "input": "desalted", "output": "⠙⠑⠎â â ‡â žâ «" }, { "input": "desalting", "output": "⠙⠑⠎â â ‡â žâ Œ" }, { "input": "desalts", "output": "⠙⠑⠎â â ‡â žâ Ž" }, { "input": "descant", "output": "⠙⠑⠎⠉â â â ž" }, { "input": "descant's", "output": "⠙⠑⠎⠉â â â žâ „â Ž" }, { "input": "descanted", "output": "⠙⠑⠎⠉â â â žâ «" }, { "input": "descanting", "output": "⠙⠑⠎⠉â â â žâ Œ" }, { "input": "descants", "output": "⠙⠑⠎⠉â â â žâ Ž" }, { "input": "descend", "output": "⠙⠑⠎⠉⠢⠙" }, { "input": "descendant", "output": "⠙⠑⠎⠉⠢⠙â â â ž" }, { "input": "descendant's", "output": "⠙⠑⠎⠉⠢⠙â â â žâ „â Ž" }, { "input": "descendants", "output": "⠙⠑⠎⠉⠢⠙â â â žâ Ž" }, { "input": "descended", "output": "⠙⠑⠎⠉⠢⠙⠫" }, { "input": "descender", "output": "⠙⠑⠎⠉⠢⠙⠻" }, { "input": "descending", "output": "⠙⠑⠎⠉⠢⠙⠌" }, { "input": "descends", "output": "⠙⠑⠎⠉⠢⠙⠎" }, { "input": "descent", "output": "⠙⠑⠎⠉⠢⠞" }, { "input": "descent's", "output": "⠙⠑⠎⠉⠢⠞⠄⠎" }, { "input": "descents", "output": "⠙⠑⠎⠉⠢⠞⠎" }, { "input": "describable", "output": "⠙⠑⠎⠉⠗⠊⠃â â ¼" }, { "input": "describe", "output": "⠙⠑⠎⠉⠗⠊⠃⠑" }, { "input": "described", "output": "⠙⠑⠎⠉⠗⠊⠃⠫" }, { "input": "describer", "output": "⠙⠑⠎⠉⠗⠊⠃⠻" }, { "input": "describer's", "output": "⠙⠑⠎⠉⠗⠊⠃⠻⠄⠎" }, { "input": "describers", "output": "⠙⠑⠎⠉⠗⠊⠃⠻⠎" }, { "input": "describes", "output": "⠙⠑⠎⠉⠗⠊⠃⠑⠎" }, { "input": "describing", "output": "⠙⠑⠎⠉⠗⠊⠃⠌" }, { "input": "descried", "output": "⠙⠑⠎⠉⠗⠊⠫" }, { "input": "descries", "output": "⠙⠑⠎⠉⠗⠊⠑⠎" }, { "input": "description", "output": "⠙⠑⠎⠉⠗⠊â â °â " }, { "input": "description's", "output": "⠙⠑⠎⠉⠗⠊â â °â â „â Ž" }, { "input": "descriptions", "output": "⠙⠑⠎⠉⠗⠊â â °â â Ž" }, { "input": "descriptive", "output": "⠙⠑⠎⠉⠗⠊â â žâ Šâ §â ‘" }, { "input": "descriptively", "output": "⠙⠑⠎⠉⠗⠊â â žâ Šâ §â ‘⠇⠽" }, { "input": "descriptiveness", "output": "⠙⠑⠎⠉⠗⠊â â žâ Šâ §â ‘â °â Ž" }, { "input": "descriptiveness's", "output": "⠙⠑⠎⠉⠗⠊â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "descriptor", "output": "⠙⠑⠎⠉⠗⠊â â žâ •â —" }, { "input": "descriptors", "output": "⠙⠑⠎⠉⠗⠊â â žâ •â —â Ž" }, { "input": "descry", "output": "⠙⠑⠎⠉⠗⠽" }, { "input": "descrying", "output": "⠙⠑⠎⠉⠗⠽⠌" }, { "input": "desecrate", "output": "⠙⠑⠎⠑⠉⠗â â žâ ‘" }, { "input": "desecrated", "output": "⠙⠑⠎⠑⠉⠗â â žâ «" }, { "input": "desecrates", "output": "⠙⠑⠎⠑⠉⠗â â žâ ‘â Ž" }, { "input": "desecrating", "output": "⠙⠑⠎⠑⠉⠗â â žâ Œ" }, { "input": "desecration", "output": "⠙⠑⠎⠑⠉⠗⠠â " }, { "input": "desecration's", "output": "⠙⠑⠎⠑⠉⠗⠠â â „â Ž" }, { "input": "desegregate", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ ‘" }, { "input": "desegregated", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ «" }, { "input": "desegregates", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ ‘â Ž" }, { "input": "desegregating", "output": "⠙⠑⠎⠑⠛⠗⠑⠛â â žâ Œ" }, { "input": "desegregation", "output": "⠙⠑⠎⠑⠛⠗⠑⠛⠠â " }, { "input": "desegregation's", "output": "⠙⠑⠎⠑⠛⠗⠑⠛⠠â â „â Ž" }, { "input": "desensitization", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠠â " }, { "input": "desensitization's", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠠â â „â Ž" }, { "input": "desensitize", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠑" }, { "input": "desensitized", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠫" }, { "input": "desensitizes", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠑⠎" }, { "input": "desensitizing", "output": "⠙⠑⠎⠢⠎⠊⠞⠊⠵⠌" }, { "input": "desert", "output": "⠙⠑⠎⠻⠞" }, { "input": "desert's", "output": "⠙⠑⠎⠻⠞⠄⠎" }, { "input": "deserted", "output": "⠙⠑⠎⠻⠞⠫" }, { "input": "deserter", "output": "⠙⠑⠎⠻⠞⠻" }, { "input": "deserter's", "output": "⠙⠑⠎⠻⠞⠻⠄⠎" }, { "input": "deserters", "output": "⠙⠑⠎⠻⠞⠻⠎" }, { "input": "deserting", "output": "⠙⠑⠎⠻⠞⠌" }, { "input": "desertion", "output": "⠙⠑⠎⠻⠰â " }, { "input": "desertion's", "output": "⠙⠑⠎⠻⠰â â „â Ž" }, { "input": "desertions", "output": "⠙⠑⠎⠻⠰â â Ž" }, { "input": "deserts", "output": "⠙⠑⠎⠻⠞⠎" }, { "input": "deserve", "output": "⠙⠑⠎⠻⠧⠑" }, { "input": "deserved", "output": "⠙⠑⠎⠻⠧⠫" }, { "input": "deservedly", "output": "⠙⠑⠎⠻⠧⠫⠇⠽" }, { "input": "deserves", "output": "⠙⠑⠎⠻⠧⠑⠎" }, { "input": "deserving", "output": "⠙⠑⠎⠻⠧⠌" }, { "input": "desiccant", "output": "⠙⠑⠎⠊⠒â â â ž" }, { "input": "desiccant's", "output": "⠙⠑⠎⠊⠒â â â žâ „â Ž" }, { "input": "desiccants", "output": "⠙⠑⠎⠊⠒â â â žâ Ž" }, { "input": "desiccate", "output": "⠙⠑⠎⠊⠒â â žâ ‘" }, { "input": "desiccated", "output": "⠙⠑⠎⠊⠒â â žâ «" }, { "input": "desiccates", "output": "⠙⠑⠎⠊⠒â â žâ ‘â Ž" }, { "input": "desiccating", "output": "⠙⠑⠎⠊⠒â â žâ Œ" }, { "input": "desiccation", "output": "⠙⠑⠎⠊⠒⠠â " }, { "input": "desiccation's", "output": "⠙⠑⠎⠊⠒⠠â â „â Ž" }, { "input": "desiccator", "output": "⠙⠑⠎⠊⠒â â žâ •â —" }, { "input": "desiccator's", "output": "⠙⠑⠎⠊⠒â â žâ •â —â „â Ž" }, { "input": "desiccators", "output": "⠙⠑⠎⠊⠒â â žâ •â —â Ž" }, { "input": "desiderata", "output": "⠙⠑⠎⠊⠙⠻â â žâ " }, { "input": "desideratum", "output": "⠙⠑⠎⠊⠙⠻â â žâ ¥â " }, { "input": "desideratum's", "output": "⠙⠑⠎⠊⠙⠻â â žâ ¥â â „â Ž" }, { "input": "design", "output": "⠙⠑⠎⠊⠛â " }, { "input": "design's", "output": "⠙⠑⠎⠊⠛â â „â Ž" }, { "input": "designate", "output": "⠙⠑⠎⠊⠛â â â žâ ‘" }, { "input": "designated", "output": "⠙⠑⠎⠊⠛â â â žâ «" }, { "input": "designates", "output": "⠙⠑⠎⠊⠛â â â žâ ‘â Ž" }, { "input": "designating", "output": "⠙⠑⠎⠊⠛â â â žâ Œ" }, { "input": "designation", "output": "⠙⠑⠎⠊⠛â â  â " }, { "input": "designation's", "output": "⠙⠑⠎⠊⠛â â  â â „â Ž" }, { "input": "designations", "output": "⠙⠑⠎⠊⠛â â  â â Ž" }, { "input": "designed", "output": "⠙⠑⠎⠊⠛â â «" }, { "input": "designer", "output": "⠙⠑⠎⠊⠛â â »" }, { "input": "designer's", "output": "⠙⠑⠎⠊⠛â â »â „â Ž" }, { "input": "designers", "output": "⠙⠑⠎⠊⠛â â »â Ž" }, { "input": "designing", "output": "⠙⠑⠎⠊⠛â â Œ" }, { "input": "designing's", "output": "⠙⠑⠎⠊⠛â â Œâ „â Ž" }, { "input": "designs", "output": "⠙⠑⠎⠊⠛â â Ž" }, { "input": "desirability", "output": "⠙⠑⠎⠊⠗â â ƒâ Šâ ‡â °â ½" }, { "input": "desirability's", "output": "⠙⠑⠎⠊⠗â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "desirable", "output": "⠙⠑⠎⠊⠗â â ¼" }, { "input": "desirableness", "output": "⠙⠑⠎⠊⠗â â ¼â °â Ž" }, { "input": "desirableness's", "output": "⠙⠑⠎⠊⠗â â ¼â °â Žâ „â Ž" }, { "input": "desirably", "output": "⠙⠑⠎⠊⠗â â ƒâ ‡â ½" }, { "input": "desire", "output": "⠙⠑⠎⠊⠗⠑" }, { "input": "desire's", "output": "⠙⠑⠎⠊⠗⠑⠄⠎" }, { "input": "desired", "output": "⠙⠑⠎⠊⠗⠫" }, { "input": "desires", "output": "⠙⠑⠎⠊⠗⠑⠎" }, { "input": "desiring", "output": "⠙⠑⠎⠊⠗⠌" }, { "input": "desirous", "output": "⠙⠑⠎⠊⠗⠳⠎" }, { "input": "desist", "output": "⠙⠑⠎⠊⠌" }, { "input": "desisted", "output": "⠙⠑⠎⠊⠌⠫" }, { "input": "desisting", "output": "⠙⠑⠎⠊⠌⠌" }, { "input": "desists", "output": "⠙⠑⠎⠊⠌⠎" }, { "input": "desk", "output": "⠙⠑⠎⠅" }, { "input": "desk's", "output": "⠙⠑⠎⠅⠄⠎" }, { "input": "desks", "output": "⠙⠑⠎⠅⠎" }, { "input": "desktop", "output": "⠙⠑⠎⠅⠞⠕â " }, { "input": "desktop's", "output": "⠙⠑⠎⠅⠞⠕â â „â Ž" }, { "input": "desktops", "output": "⠙⠑⠎⠅⠞⠕â â Ž" }, { "input": "desolate", "output": "⠙⠑⠎⠕⠇â â žâ ‘" }, { "input": "desolated", "output": "⠙⠑⠎⠕⠇â â žâ «" }, { "input": "desolately", "output": "⠙⠑⠎⠕⠇â â žâ ‘⠇⠽" }, { "input": "desolateness", "output": "⠙⠑⠎⠕⠇â â žâ ‘â °â Ž" }, { "input": "desolateness's", "output": "⠙⠑⠎⠕⠇â â žâ ‘â °â Žâ „â Ž" }, { "input": "desolates", "output": "⠙⠑⠎⠕⠇â â žâ ‘â Ž" }, { "input": "desolating", "output": "⠙⠑⠎⠕⠇â â žâ Œ" }, { "input": "desolation", "output": "⠙⠑⠎⠕⠇⠠â " }, { "input": "desolation's", "output": "⠙⠑⠎⠕⠇⠠â â „â Ž" }, { "input": "despair", "output": "⠙⠑⠎â â â Šâ —" }, { "input": "despair's", "output": "⠙⠑⠎â â â Šâ —â „â Ž" }, { "input": "despaired", "output": "⠙⠑⠎â â â Šâ —â «" }, { "input": "despairing", "output": "⠙⠑⠎â â â Šâ —â Œ" }, { "input": "despairingly", "output": "⠙⠑⠎â â â Šâ —⠌⠇⠽" }, { "input": "despairs", "output": "⠙⠑⠎â â â Šâ —â Ž" }, { "input": "desperado", "output": "⠙⠑⠎â â »â â ™â •" }, { "input": "desperado's", "output": "⠙⠑⠎â â »â â ™â •â „â Ž" }, { "input": "desperadoes", "output": "⠙⠑⠎â â »â â ™â •â ‘â Ž" }, { "input": "desperate", "output": "⠙⠑⠎â â »â â žâ ‘" }, { "input": "desperately", "output": "⠙⠑⠎â â »â â žâ ‘⠇⠽" }, { "input": "desperateness", "output": "⠙⠑⠎â â »â â žâ ‘â °â Ž" }, { "input": "desperateness's", "output": "⠙⠑⠎â â »â â žâ ‘â °â Žâ „â Ž" }, { "input": "desperation", "output": "⠙⠑⠎â â »â  â " }, { "input": "desperation's", "output": "⠙⠑⠎â â »â  â â „â Ž" }, { "input": "despicable", "output": "⠙⠑⠎â â Šâ ‰â â ¼" }, { "input": "despicably", "output": "⠙⠑⠎â â Šâ ‰â â ƒâ ‡â ½" }, { "input": "despise", "output": "⠙⠑⠎â â Šâ Žâ ‘" }, { "input": "despised", "output": "⠙⠑⠎â â Šâ Žâ «" }, { "input": "despises", "output": "⠙⠑⠎â â Šâ Žâ ‘â Ž" }, { "input": "despising", "output": "⠙⠑⠎â â Šâ Žâ Œ" }, { "input": "despite", "output": "⠙⠑⠎â â Šâ žâ ‘" }, { "input": "despoil", "output": "⠙⠑⠎â â •â Šâ ‡" }, { "input": "despoiled", "output": "⠙⠑⠎â â •⠊⠇⠫" }, { "input": "despoiler", "output": "⠙⠑⠎â â •⠊⠇⠻" }, { "input": "despoiler's", "output": "⠙⠑⠎â â •⠊⠇⠻⠄⠎" }, { "input": "despoilers", "output": "⠙⠑⠎â â •⠊⠇⠻⠎" }, { "input": "despoiling", "output": "⠙⠑⠎â â •⠊⠇⠌" }, { "input": "despoilment", "output": "⠙⠑⠎â â •⠊⠇⠰⠞" }, { "input": "despoilment's", "output": "⠙⠑⠎â â •⠊⠇⠰⠞⠄⠎" }, { "input": "despoils", "output": "⠙⠑⠎â â •⠊⠇⠎" }, { "input": "despoliation", "output": "⠙⠑⠎â â •⠇⠊⠠â " }, { "input": "despoliation's", "output": "⠙⠑⠎â â •⠇⠊⠠â â „â Ž" }, { "input": "despondence", "output": "⠙⠑⠎â â •â â ™â °â ‘" }, { "input": "despondence's", "output": "⠙⠑⠎â â •â â ™â °â ‘â „â Ž" }, { "input": "despondency", "output": "⠙⠑⠎â â •â â ™â ¢â ‰â ½" }, { "input": "despondency's", "output": "⠙⠑⠎â â •â â ™â ¢â ‰â ½â „â Ž" }, { "input": "despondent", "output": "⠙⠑⠎â â •â â ™â ¢â ž" }, { "input": "despondently", "output": "⠙⠑⠎â â •â â ™â ¢â žâ ‡â ½" }, { "input": "despot", "output": "⠙⠑⠎â â •â ž" }, { "input": "despot's", "output": "⠙⠑⠎â â •â žâ „â Ž" }, { "input": "despotic", "output": "⠙⠑⠎â â •â žâ Šâ ‰" }, { "input": "despotism", "output": "⠙⠑⠎â â •â žâ Šâ Žâ " }, { "input": "despotism's", "output": "⠙⠑⠎â â •â žâ Šâ Žâ â „â Ž" }, { "input": "despots", "output": "⠙⠑⠎â â •â žâ Ž" }, { "input": "dessert", "output": "⠙⠑⠎⠎⠻⠞" }, { "input": "dessert's", "output": "⠙⠑⠎⠎⠻⠞⠄⠎" }, { "input": "desserts", "output": "⠙⠑⠎⠎⠻⠞⠎" }, { "input": "destabilization", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ  â " }, { "input": "destabilization's", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ  â â „â Ž" }, { "input": "destabilize", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ ‘" }, { "input": "destabilized", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ «" }, { "input": "destabilizes", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ ‘â Ž" }, { "input": "destabilizing", "output": "⠙⠑⠌â â ƒâ Šâ ‡â Šâ µâ Œ" }, { "input": "destination", "output": "⠙⠑⠌⠔⠠â " }, { "input": "destination's", "output": "⠙⠑⠌⠔⠠â â „â Ž" }, { "input": "destinations", "output": "⠙⠑⠌⠔⠠â â Ž" }, { "input": "destine", "output": "⠙⠑⠌⠔⠑" }, { "input": "destined", "output": "⠙⠑⠌⠔⠫" }, { "input": "destines", "output": "⠙⠑⠌⠔⠑⠎" }, { "input": "destinies", "output": "⠙⠑⠌⠔⠊⠑⠎" }, { "input": "destining", "output": "⠙⠑⠌⠔⠌" }, { "input": "destiny", "output": "⠙⠑⠌⠔⠽" }, { "input": "destiny's", "output": "⠙⠑⠌⠔⠽⠄⠎" }, { "input": "destitute", "output": "⠙⠑⠌⠊⠞⠥⠞⠑" }, { "input": "destitution", "output": "⠙⠑⠌⠊⠞⠥⠰â " }, { "input": "destitution's", "output": "⠙⠑⠌⠊⠞⠥⠰â â „â Ž" }, { "input": "destroy", "output": "⠙⠑⠌⠗⠕⠽" }, { "input": "destroyed", "output": "⠙⠑⠌⠗⠕⠽⠫" }, { "input": "destroyer", "output": "⠙⠑⠌⠗⠕⠽⠻" }, { "input": "destroyer's", "output": "⠙⠑⠌⠗⠕⠽⠻⠄⠎" }, { "input": "destroyers", "output": "⠙⠑⠌⠗⠕⠽⠻⠎" }, { "input": "destroying", "output": "⠙⠑⠌⠗⠕⠽⠌" }, { "input": "destroys", "output": "⠙⠑⠌⠗⠕⠽⠎" }, { "input": "destruct", "output": "⠙⠑⠌⠗⠥⠉⠞" }, { "input": "destruct's", "output": "⠙⠑⠌⠗⠥⠉⠞⠄⠎" }, { "input": "destructed", "output": "⠙⠑⠌⠗⠥⠉⠞⠫" }, { "input": "destructibility", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠃⠊⠇⠰⠽" }, { "input": "destructibility's", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "destructible", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠼" }, { "input": "destructing", "output": "⠙⠑⠌⠗⠥⠉⠞⠌" }, { "input": "destruction", "output": "⠙⠑⠌⠗⠥⠉⠰â " }, { "input": "destruction's", "output": "⠙⠑⠌⠗⠥⠉⠰â â „â Ž" }, { "input": "destructive", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "destructively", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "destructiveness", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "destructiveness's", "output": "⠙⠑⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "destructs", "output": "⠙⠑⠌⠗⠥⠉⠞⠎" }, { "input": "desuetude", "output": "⠙⠑⠎⠥⠑⠞⠥⠙⠑" }, { "input": "desuetude's", "output": "⠙⠑⠎⠥⠑⠞⠥⠙⠑⠄⠎" }, { "input": "desultory", "output": "⠙⠑⠎⠥⠇⠞⠕⠗⠽" }, { "input": "detach", "output": "⠙⠑⠞â â ¡" }, { "input": "detachable", "output": "⠙⠑⠞â â ¡â â ¼" }, { "input": "detached", "output": "⠙⠑⠞â â ¡â «" }, { "input": "detaches", "output": "⠙⠑⠞â â ¡â ‘â Ž" }, { "input": "detaching", "output": "⠙⠑⠞â â ¡â Œ" }, { "input": "detachment", "output": "⠙⠑⠞â â ¡â °â ž" }, { "input": "detachment's", "output": "⠙⠑⠞â â ¡â °â žâ „â Ž" }, { "input": "detachments", "output": "⠙⠑⠞â â ¡â °â žâ Ž" }, { "input": "detail", "output": "⠙⠑⠞â â Šâ ‡" }, { "input": "detail's", "output": "⠙⠑⠞â â Šâ ‡â „â Ž" }, { "input": "detailed", "output": "⠙⠑⠞â â Šâ ‡â «" }, { "input": "detailing", "output": "⠙⠑⠞â â Šâ ‡â Œ" }, { "input": "details", "output": "⠙⠑⠞â â Šâ ‡â Ž" }, { "input": "detain", "output": "⠙⠑⠞â â ”" }, { "input": "detained", "output": "⠙⠑⠞â â ”â «" }, { "input": "detaining", "output": "⠙⠑⠞â â ”â Œ" }, { "input": "detainment", "output": "⠙⠑⠞â â ”â °â ž" }, { "input": "detainment's", "output": "⠙⠑⠞â â ”â °â žâ „â Ž" }, { "input": "detains", "output": "⠙⠑⠞â â ”â Ž" }, { "input": "detect", "output": "⠙⠑⠞⠑⠉⠞" }, { "input": "detectable", "output": "⠙⠑⠞⠑⠉⠞â â ¼" }, { "input": "detected", "output": "⠙⠑⠞⠑⠉⠞⠫" }, { "input": "detecting", "output": "⠙⠑⠞⠑⠉⠞⠌" }, { "input": "detection", "output": "⠙⠑⠞⠑⠉⠰â " }, { "input": "detection's", "output": "⠙⠑⠞⠑⠉⠰â â „â Ž" }, { "input": "detective", "output": "⠙⠑⠞⠑⠉⠞⠊⠧⠑" }, { "input": "detective's", "output": "⠙⠑⠞⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "detectives", "output": "⠙⠑⠞⠑⠉⠞⠊⠧⠑⠎" }, { "input": "detector", "output": "⠙⠑⠞⠑⠉⠞⠕⠗" }, { "input": "detector's", "output": "⠙⠑⠞⠑⠉⠞⠕⠗⠄⠎" }, { "input": "detectors", "output": "⠙⠑⠞⠑⠉⠞⠕⠗⠎" }, { "input": "detects", "output": "⠙⠑⠞⠑⠉⠞⠎" }, { "input": "detentes", "output": "⠙⠑⠞⠢⠞⠑⠎" }, { "input": "detention", "output": "⠙⠑⠞⠢⠰â " }, { "input": "detention's", "output": "⠙⠑⠞⠢⠰â â „â Ž" }, { "input": "detentions", "output": "⠙⠑⠞⠢⠰â â Ž" }, { "input": "deter", "output": "⠙⠑⠞⠻" }, { "input": "detergent", "output": "⠙⠑⠞⠻⠛⠢⠞" }, { "input": "detergent's", "output": "⠙⠑⠞⠻⠛⠢⠞⠄⠎" }, { "input": "detergents", "output": "⠙⠑⠞⠻⠛⠢⠞⠎" }, { "input": "deteriorate", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ ‘" }, { "input": "deteriorated", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ «" }, { "input": "deteriorates", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ ‘â Ž" }, { "input": "deteriorating", "output": "⠙⠑⠞⠻⠊⠕⠗â â žâ Œ" }, { "input": "deterioration", "output": "⠙⠑⠞⠻⠊⠕⠗⠠â " }, { "input": "deterioration's", "output": "⠙⠑⠞⠻⠊⠕⠗⠠â â „â Ž" }, { "input": "determent", "output": "⠙⠑⠞⠻⠰⠞" }, { "input": "determent's", "output": "⠙⠑⠞⠻⠰⠞⠄⠎" }, { "input": "determinable", "output": "⠙⠑⠞⠻â â ”â â ¼" }, { "input": "determinant", "output": "⠙⠑⠞⠻â â ”â â â ž" }, { "input": "determinant's", "output": "⠙⠑⠞⠻â â ”â â â žâ „â Ž" }, { "input": "determinants", "output": "⠙⠑⠞⠻â â ”â â â žâ Ž" }, { "input": "determinate", "output": "⠙⠑⠞⠻â â ”â â žâ ‘" }, { "input": "determination", "output": "⠙⠑⠞⠻â â ”â  â " }, { "input": "determination's", "output": "⠙⠑⠞⠻â â ”â  â â „â Ž" }, { "input": "determinations", "output": "⠙⠑⠞⠻â â ”â  â â Ž" }, { "input": "determine", "output": "⠙⠑⠞⠻â â ”â ‘" }, { "input": "determined", "output": "⠙⠑⠞⠻â â ”â «" }, { "input": "determiner", "output": "⠙⠑⠞⠻â â ”â »" }, { "input": "determiner's", "output": "⠙⠑⠞⠻â â ”⠻⠄⠎" }, { "input": "determiners", "output": "⠙⠑⠞⠻â â ”⠻⠎" }, { "input": "determines", "output": "⠙⠑⠞⠻â â ”â ‘â Ž" }, { "input": "determining", "output": "⠙⠑⠞⠻â â ”â Œ" }, { "input": "determinism", "output": "⠙⠑⠞⠻â â ”â Šâ Žâ " }, { "input": "determinism's", "output": "⠙⠑⠞⠻â â ”â Šâ Žâ â „â Ž" }, { "input": "deterministic", "output": "⠙⠑⠞⠻â â ”⠊⠌⠊⠉" }, { "input": "deterred", "output": "⠙⠑⠞⠻⠗⠫" }, { "input": "deterrence", "output": "⠙⠑⠞⠻⠗⠰⠑" }, { "input": "deterrence's", "output": "⠙⠑⠞⠻⠗⠰⠑⠄⠎" }, { "input": "deterrent", "output": "⠙⠑⠞⠻⠗⠢⠞" }, { "input": "deterrent's", "output": "⠙⠑⠞⠻⠗⠢⠞⠄⠎" }, { "input": "deterrents", "output": "⠙⠑⠞⠻⠗⠢⠞⠎" }, { "input": "deterring", "output": "⠙⠑⠞⠻⠗⠌" }, { "input": "deters", "output": "⠙⠑⠞⠻⠎" }, { "input": "detest", "output": "⠙⠑⠞⠑⠌" }, { "input": "detestable", "output": "⠙⠑⠞⠑⠌â â ¼" }, { "input": "detestation", "output": "⠙⠑⠞⠑⠌⠠â " }, { "input": "detestation's", "output": "⠙⠑⠞⠑⠌⠠â â „â Ž" }, { "input": "detested", "output": "⠙⠑⠞⠑⠌⠫" }, { "input": "detesting", "output": "⠙⠑⠞⠑⠌⠌" }, { "input": "detests", "output": "⠙⠑⠞⠑⠌⠎" }, { "input": "dethrone", "output": "⠙⠑⠹⠗â â •" }, { "input": "dethroned", "output": "⠙⠑⠹⠗⠕â â «" }, { "input": "dethronement", "output": "⠙⠑⠹⠗â â •â °â ž" }, { "input": "dethronement's", "output": "⠙⠑⠹⠗â â •â °â žâ „â Ž" }, { "input": "dethrones", "output": "⠙⠑⠹⠗â â •â Ž" }, { "input": "dethroning", "output": "⠙⠑⠹⠗⠕â â Œ" }, { "input": "detonate", "output": "⠙⠑⠞⠕â â â žâ ‘" }, { "input": "detonated", "output": "⠙⠑⠞⠕â â â žâ «" }, { "input": "detonates", "output": "⠙⠑⠞⠕â â â žâ ‘â Ž" }, { "input": "detonating", "output": "⠙⠑⠞⠕â â â žâ Œ" }, { "input": "detonation", "output": "⠙⠑⠞⠕â â  â " }, { "input": "detonation's", "output": "⠙⠑⠞⠕â â  â â „â Ž" }, { "input": "detonations", "output": "⠙⠑⠞⠕â â  â â Ž" }, { "input": "detonator", "output": "⠙⠑⠞⠕â â â žâ •â —" }, { "input": "detonator's", "output": "⠙⠑⠞⠕â â â žâ •â —â „â Ž" }, { "input": "detonators", "output": "⠙⠑⠞⠕â â â žâ •â —â Ž" }, { "input": "detour", "output": "⠙⠑⠞⠳⠗" }, { "input": "detour's", "output": "⠙⠑⠞⠳⠗⠄⠎" }, { "input": "detoured", "output": "⠙⠑⠞⠳⠗⠫" }, { "input": "detouring", "output": "⠙⠑⠞⠳⠗⠌" }, { "input": "detours", "output": "⠙⠑⠞⠳⠗⠎" }, { "input": "detox", "output": "⠙⠑⠞⠕⠭" }, { "input": "detox's", "output": "⠙⠑⠞⠕⠭⠄⠎" }, { "input": "detoxed", "output": "⠙⠑⠞⠕⠭⠫" }, { "input": "detoxes", "output": "⠙⠑⠞⠕⠭⠑⠎" }, { "input": "detoxification", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠉⠠â " }, { "input": "detoxification's", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "detoxified", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠫" }, { "input": "detoxifies", "output": "⠙⠑⠞⠕⠭⠊⠋⠊⠑⠎" }, { "input": "detoxify", "output": "⠙⠑⠞⠕⠭⠊⠋⠽" }, { "input": "detoxifying", "output": "⠙⠑⠞⠕⠭⠊⠋⠽⠌" }, { "input": "detoxing", "output": "⠙⠑⠞⠕⠭⠌" }, { "input": "detract", "output": "⠙⠑⠞⠗â â ‰â ž" }, { "input": "detracted", "output": "⠙⠑⠞⠗â â ‰â žâ «" }, { "input": "detracting", "output": "⠙⠑⠞⠗â â ‰â žâ Œ" }, { "input": "detraction", "output": "⠙⠑⠞⠗â â ‰â °â " }, { "input": "detraction's", "output": "⠙⠑⠞⠗â â ‰â °â â „â Ž" }, { "input": "detractor", "output": "⠙⠑⠞⠗â â ‰â žâ •â —" }, { "input": "detractor's", "output": "⠙⠑⠞⠗â â ‰â žâ •â —â „â Ž" }, { "input": "detractors", "output": "⠙⠑⠞⠗â â ‰â žâ •â —â Ž" }, { "input": "detracts", "output": "⠙⠑⠞⠗â â ‰â žâ Ž" }, { "input": "detriment", "output": "⠙⠑⠞⠗⠊⠰⠞" }, { "input": "detriment's", "output": "⠙⠑⠞⠗⠊⠰⠞⠄⠎" }, { "input": "detrimental", "output": "⠙⠑⠞⠗⠊⠰⠞â â ‡" }, { "input": "detriments", "output": "⠙⠑⠞⠗⠊⠰⠞⠎" }, { "input": "detritus", "output": "⠙⠑⠞⠗⠊⠞⠥⠎" }, { "input": "detritus's", "output": "⠙⠑⠞⠗⠊⠞⠥⠎⠄⠎" }, { "input": "deuce", "output": "⠙⠑⠥⠉⠑" }, { "input": "deuce's", "output": "⠙⠑⠥⠉⠑⠄⠎" }, { "input": "deuces", "output": "⠙⠑⠥⠉⠑⠎" }, { "input": "deuterium", "output": "⠙⠑⠥⠞⠻⠊⠥â " }, { "input": "deuterium's", "output": "⠙⠑⠥⠞⠻⠊⠥â â „â Ž" }, { "input": "devaluation", "output": "⠙⠑⠧â â ‡â ¥â  â " }, { "input": "devaluation's", "output": "⠙⠑⠧â â ‡â ¥â  â â „â Ž" }, { "input": "devaluations", "output": "⠙⠑⠧â â ‡â ¥â  â â Ž" }, { "input": "devalue", "output": "⠙⠑⠧â â ‡â ¥â ‘" }, { "input": "devalued", "output": "⠙⠑⠧â â ‡â ¥â «" }, { "input": "devalues", "output": "⠙⠑⠧â â ‡â ¥â ‘â Ž" }, { "input": "devaluing", "output": "⠙⠑⠧â â ‡â ¥â Œ" }, { "input": "devastate", "output": "⠙⠑⠧â â Œâ â žâ ‘" }, { "input": "devastated", "output": "⠙⠑⠧â â Œâ â žâ «" }, { "input": "devastates", "output": "⠙⠑⠧â â Œâ â žâ ‘â Ž" }, { "input": "devastating", "output": "⠙⠑⠧â â Œâ â žâ Œ" }, { "input": "devastation", "output": "⠙⠑⠧â â Œâ  â " }, { "input": "devastation's", "output": "⠙⠑⠧â â Œâ  â â „â Ž" }, { "input": "devastator", "output": "⠙⠑⠧â â Œâ â žâ •â —" }, { "input": "devastator's", "output": "⠙⠑⠧â â Œâ â žâ •â —â „â Ž" }, { "input": "devastators", "output": "⠙⠑⠧â â Œâ â žâ •â —â Ž" }, { "input": "develop", "output": "⠙⠑⠧⠑⠇⠕â " }, { "input": "developed", "output": "⠙⠑⠧⠑⠇⠕â â «" }, { "input": "developer", "output": "⠙⠑⠧⠑⠇⠕â â »" }, { "input": "developer's", "output": "⠙⠑⠧⠑⠇⠕â â »â „â Ž" }, { "input": "developers", "output": "⠙⠑⠧⠑⠇⠕â â »â Ž" }, { "input": "developing", "output": "⠙⠑⠧⠑⠇⠕â â Œ" }, { "input": "development", "output": "⠙⠑⠧⠑⠇⠕â â °â ž" }, { "input": "development's", "output": "⠙⠑⠧⠑⠇⠕â â °â žâ „â Ž" }, { "input": "developmental", "output": "⠙⠑⠧⠑⠇⠕â â °â žâ â ‡" }, { "input": "developmentally", "output": "⠙⠑⠧⠑⠇⠕â â °â žâ  â ½" }, { "input": "developments", "output": "⠙⠑⠧⠑⠇⠕â â °â žâ Ž" }, { "input": "develops", "output": "⠙⠑⠧⠑⠇⠕â â Ž" }, { "input": "deviance", "output": "⠙⠑⠧⠊⠨⠑" }, { "input": "deviance's", "output": "⠙⠑⠧⠊⠨⠑⠄⠎" }, { "input": "deviancy's", "output": "⠙⠑⠧⠊â â â ‰â ½â „â Ž" }, { "input": "deviant", "output": "⠙⠑⠧⠊â â â ž" }, { "input": "deviant's", "output": "⠙⠑⠧⠊â â â žâ „â Ž" }, { "input": "deviants", "output": "⠙⠑⠧⠊â â â žâ Ž" }, { "input": "deviate", "output": "⠙⠑⠧⠊â â žâ ‘" }, { "input": "deviate's", "output": "⠙⠑⠧⠊â â žâ ‘â „â Ž" }, { "input": "deviated", "output": "⠙⠑⠧⠊â â žâ «" }, { "input": "deviates", "output": "⠙⠑⠧⠊â â žâ ‘â Ž" }, { "input": "deviating", "output": "⠙⠑⠧⠊â â žâ Œ" }, { "input": "deviation", "output": "⠙⠑⠧⠊⠠â " }, { "input": "deviation's", "output": "⠙⠑⠧⠊⠠â â „â Ž" }, { "input": "deviations", "output": "⠙⠑⠧⠊⠠â â Ž" }, { "input": "device", "output": "⠙⠑⠧⠊⠉⠑" }, { "input": "device's", "output": "⠙⠑⠧⠊⠉⠑⠄⠎" }, { "input": "devices", "output": "⠙⠑⠧⠊⠉⠑⠎" }, { "input": "devil", "output": "⠙⠑⠧⠊⠇" }, { "input": "devil's", "output": "⠙⠑⠧⠊⠇⠄⠎" }, { "input": "deviled", "output": "⠙⠑⠧⠊⠇⠫" }, { "input": "deviling", "output": "⠙⠑⠧⠊⠇⠌" }, { "input": "devilish", "output": "⠙⠑⠧⠊⠇⠊⠩" }, { "input": "devilishly", "output": "⠙⠑⠧⠊⠇⠊⠩⠇⠽" }, { "input": "devilishness", "output": "⠙⠑⠧⠊⠇⠊⠩⠰⠎" }, { "input": "devilishness's", "output": "⠙⠑⠧⠊⠇⠊⠩⠰⠎⠄⠎" }, { "input": "devilment", "output": "⠙⠑⠧⠊⠇⠰⠞" }, { "input": "devilment's", "output": "⠙⠑⠧⠊⠇⠰⠞⠄⠎" }, { "input": "devilries", "output": "⠙⠑⠧⠊⠇⠗⠊⠑⠎" }, { "input": "devilry", "output": "⠙⠑⠧⠊⠇⠗⠽" }, { "input": "devilry's", "output": "⠙⠑⠧⠊⠇⠗⠽⠄⠎" }, { "input": "devils", "output": "⠙⠑⠧⠊⠇⠎" }, { "input": "deviltries", "output": "⠙⠑⠧⠊⠇⠞⠗⠊⠑⠎" }, { "input": "deviltry", "output": "⠙⠑⠧⠊⠇⠞⠗⠽" }, { "input": "deviltry's", "output": "⠙⠑⠧⠊⠇⠞⠗⠽⠄⠎" }, { "input": "devious", "output": "⠙⠑⠧⠊⠳⠎" }, { "input": "deviously", "output": "⠙⠑⠧⠊⠳⠎⠇⠽" }, { "input": "deviousness", "output": "⠙⠑⠧⠊⠳⠎⠰⠎" }, { "input": "deviousness's", "output": "⠙⠑⠧⠊⠳⠎⠰⠎⠄⠎" }, { "input": "devise", "output": "⠙⠑⠧⠊⠎⠑" }, { "input": "devise's", "output": "⠙⠑⠧⠊⠎⠑⠄⠎" }, { "input": "devised", "output": "⠙⠑⠧⠊⠎⠫" }, { "input": "devises", "output": "⠙⠑⠧⠊⠎⠑⠎" }, { "input": "devising", "output": "⠙⠑⠧⠊⠎⠌" }, { "input": "devitalize", "output": "⠙⠑⠧⠊⠞â â ‡â Šâ µâ ‘" }, { "input": "devitalized", "output": "⠙⠑⠧⠊⠞â â ‡â Šâ µâ «" }, { "input": "devitalizes", "output": "⠙⠑⠧⠊⠞â â ‡â Šâ µâ ‘â Ž" }, { "input": "devitalizing", "output": "⠙⠑⠧⠊⠞â â ‡â Šâ µâ Œ" }, { "input": "devoid", "output": "⠙⠑⠧⠕⠊⠙" }, { "input": "devolution", "output": "⠙⠑⠧⠕⠇⠥⠰â " }, { "input": "devolution's", "output": "⠙⠑⠧⠕⠇⠥⠰â â „â Ž" }, { "input": "devolve", "output": "⠙⠑⠧⠕⠇⠧⠑" }, { "input": "devolved", "output": "⠙⠑⠧⠕⠇⠧⠫" }, { "input": "devolves", "output": "⠙⠑⠧⠕⠇⠧⠑⠎" }, { "input": "devolving", "output": "⠙⠑⠧⠕⠇⠧⠌" }, { "input": "devote", "output": "⠙⠑⠧⠕⠞⠑" }, { "input": "devoted", "output": "⠙⠑⠧⠕⠞⠫" }, { "input": "devotedly", "output": "⠙⠑⠧⠕⠞⠫⠇⠽" }, { "input": "devotee", "output": "⠙⠑⠧⠕⠞⠑⠑" }, { "input": "devotee's", "output": "⠙⠑⠧⠕⠞⠑⠑⠄⠎" }, { "input": "devotees", "output": "⠙⠑⠧⠕⠞⠑⠑⠎" }, { "input": "devotes", "output": "⠙⠑⠧⠕⠞⠑⠎" }, { "input": "devoting", "output": "⠙⠑⠧⠕⠞⠌" }, { "input": "devotion", "output": "⠙⠑⠧⠕⠰â " }, { "input": "devotion's", "output": "⠙⠑⠧⠕⠰â â „â Ž" }, { "input": "devotional", "output": "⠙⠑⠧⠕⠰â â â ‡" }, { "input": "devotional's", "output": "⠙⠑⠧⠕⠰â â â ‡â „â Ž" }, { "input": "devotionals", "output": "⠙⠑⠧⠕⠰â â â ‡â Ž" }, { "input": "devotions", "output": "⠙⠑⠧⠕⠰â â Ž" }, { "input": "devour", "output": "⠙⠑⠧⠳⠗" }, { "input": "devoured", "output": "⠙⠑⠧⠳⠗⠫" }, { "input": "devouring", "output": "⠙⠑⠧⠳⠗⠌" }, { "input": "devours", "output": "⠙⠑⠧⠳⠗⠎" }, { "input": "devout", "output": "⠙⠑⠧⠳⠞" }, { "input": "devouter", "output": "⠙⠑⠧⠳⠞⠻" }, { "input": "devoutest", "output": "⠙⠑⠧⠳⠞⠑⠌" }, { "input": "devoutly", "output": "⠙⠑⠧⠳⠞⠇⠽" }, { "input": "devoutness", "output": "⠙⠑⠧⠳⠞⠰⠎" }, { "input": "devoutness's", "output": "⠙⠑⠧⠳⠞⠰⠎⠄⠎" }, { "input": "dew", "output": "⠙⠑⠺" }, { "input": "dew's", "output": "⠙⠑⠺⠄⠎" }, { "input": "dewberries", "output": "⠙⠑⠺⠃⠻⠗⠊⠑⠎" }, { "input": "dewberry", "output": "⠙⠑⠺⠃⠻⠗⠽" }, { "input": "dewberry's", "output": "⠙⠑⠺⠃⠻⠗⠽⠄⠎" }, { "input": "dewclaw", "output": "⠙⠑⠺⠉⠇â â º" }, { "input": "dewclaw's", "output": "⠙⠑⠺⠉⠇â â ºâ „â Ž" }, { "input": "dewclaws", "output": "⠙⠑⠺⠉⠇â â ºâ Ž" }, { "input": "dewdrop", "output": "⠙⠑⠺⠙⠗⠕â " }, { "input": "dewdrop's", "output": "⠙⠑⠺⠙⠗⠕â â „â Ž" }, { "input": "dewdrops", "output": "⠙⠑⠺⠙⠗⠕â â Ž" }, { "input": "dewier", "output": "⠙⠑⠺⠊⠻" }, { "input": "dewiest", "output": "⠙⠑⠺⠊⠑⠌" }, { "input": "dewiness", "output": "⠙⠑⠺⠊⠰⠎" }, { "input": "dewiness's", "output": "⠙⠑⠺⠊⠰⠎⠄⠎" }, { "input": "dewlap", "output": "⠙⠑⠺⠇â â " }, { "input": "dewlap's", "output": "⠙⠑⠺⠇â â â „â Ž" }, { "input": "dewlaps", "output": "⠙⠑⠺⠇â â â Ž" }, { "input": "dewy", "output": "⠙⠑⠺⠽" }, { "input": "dexterity", "output": "⠙⠑⠭⠞⠻⠰⠽" }, { "input": "dexterity's", "output": "⠙⠑⠭⠞⠻⠰⠽⠄⠎" }, { "input": "dexterous", "output": "⠙⠑⠭⠞⠻⠳⠎" }, { "input": "dexterously", "output": "⠙⠑⠭⠞⠻⠳⠎⠇⠽" }, { "input": "dexterousness", "output": "⠙⠑⠭⠞⠻⠳⠎⠰⠎" }, { "input": "dexterousness's", "output": "⠙⠑⠭⠞⠻⠳⠎⠰⠎⠄⠎" }, { "input": "dextrose", "output": "⠙⠑⠭⠞⠗⠕⠎⠑" }, { "input": "dextrose's", "output": "⠙⠑⠭⠞⠗⠕⠎⠑⠄⠎" }, { "input": "dhoti", "output": "⠙⠓⠕⠞⠊" }, { "input": "dhoti's", "output": "⠙⠓⠕⠞⠊⠄⠎" }, { "input": "dhotis", "output": "⠙⠓⠕⠞⠊⠎" }, { "input": "diabetes", "output": "⠙⠊â â ƒâ ‘â žâ ‘â Ž" }, { "input": "diabetes's", "output": "⠙⠊â â ƒâ ‘â žâ ‘â Žâ „â Ž" }, { "input": "diabetic", "output": "⠙⠊â â ƒâ ‘â žâ Šâ ‰" }, { "input": "diabetic's", "output": "⠙⠊â â ƒâ ‘⠞⠊⠉⠄⠎" }, { "input": "diabetics", "output": "⠙⠊â â ƒâ ‘⠞⠊⠉⠎" }, { "input": "diabolic", "output": "⠙⠊â â ƒâ •⠇⠊⠉" }, { "input": "diabolical", "output": "⠙⠊â â ƒâ •⠇⠊⠉â â ‡" }, { "input": "diabolically", "output": "⠙⠊â â ƒâ •⠇⠊⠉⠠⠽" }, { "input": "diacritic", "output": "⠙⠊â â ‰â —â Šâ žâ Šâ ‰" }, { "input": "diacritic's", "output": "⠙⠊â â ‰â —⠊⠞⠊⠉⠄⠎" }, { "input": "diacritical", "output": "⠙⠊â â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "diacritics", "output": "⠙⠊â â ‰â —⠊⠞⠊⠉⠎" }, { "input": "diadem", "output": "⠙⠊â â ™â ‘â " }, { "input": "diadem's", "output": "⠙⠊â â ™â ‘â â „â Ž" }, { "input": "diadems", "output": "⠙⠊â â ™â ‘â â Ž" }, { "input": "diaereses", "output": "⠙⠊â â ‘â —â ‘â Žâ ‘â Ž" }, { "input": "diaeresis", "output": "⠙⠊â â ‘â —â ‘â Žâ Šâ Ž" }, { "input": "diaeresis's", "output": "⠙⠊â â ‘â —â ‘â Žâ Šâ Žâ „â Ž" }, { "input": "diagnose", "output": "⠙⠊â â ›â â •â Žâ ‘" }, { "input": "diagnosed", "output": "⠙⠊â â ›â â •â Žâ «" }, { "input": "diagnoses", "output": "⠙⠊â â ›â â •â Žâ ‘â Ž" }, { "input": "diagnosing", "output": "⠙⠊â â ›â â •â Žâ Œ" }, { "input": "diagnosis", "output": "⠙⠊â â ›â â •â Žâ Šâ Ž" }, { "input": "diagnosis's", "output": "⠙⠊â â ›â â •â Žâ Šâ Žâ „â Ž" }, { "input": "diagnostic", "output": "⠙⠊â â ›â â •⠌⠊⠉" }, { "input": "diagnostically", "output": "⠙⠊â â ›â â •⠌⠊⠉⠠⠽" }, { "input": "diagnostician", "output": "⠙⠊â â ›â â •⠌⠊⠉⠊â â " }, { "input": "diagnostician's", "output": "⠙⠊â â ›â â •⠌⠊⠉⠊â â â „â Ž" }, { "input": "diagnosticians", "output": "⠙⠊â â ›â â •⠌⠊⠉⠊â â â Ž" }, { "input": "diagnostics", "output": "⠙⠊â â ›â â •⠌⠊⠉⠎" }, { "input": "diagnostics's", "output": "⠙⠊â â ›â â •⠌⠊⠉⠎⠄⠎" }, { "input": "diagonal", "output": "⠙⠊â â ›â •â â â ‡" }, { "input": "diagonal's", "output": "⠙⠊â â ›â •â â â ‡â „â Ž" }, { "input": "diagonally", "output": "⠙⠊â â ›â •â â  â ½" }, { "input": "diagonals", "output": "⠙⠊â â ›â •â â â ‡â Ž" }, { "input": "diagram", "output": "⠙⠊â â ›â —â â " }, { "input": "diagram's", "output": "⠙⠊â â ›â —â â â „â Ž" }, { "input": "diagrammatic", "output": "⠙⠊â â ›â —â â â â â žâ Šâ ‰" }, { "input": "diagrammed", "output": "⠙⠊â â ›â —â â â â «" }, { "input": "diagramming", "output": "⠙⠊â â ›â —â â â â Œ" }, { "input": "diagrams", "output": "⠙⠊â â ›â —â â â Ž" }, { "input": "dial", "output": "⠙⠊â â ‡" }, { "input": "dial's", "output": "⠙⠊â â ‡â „â Ž" }, { "input": "dialect", "output": "⠙⠊â â ‡â ‘⠉⠞" }, { "input": "dialect's", "output": "⠙⠊â â ‡â ‘⠉⠞⠄⠎" }, { "input": "dialectal", "output": "⠙⠊â â ‡â ‘⠉⠞â â ‡" }, { "input": "dialectic", "output": "⠙⠊â â ‡â ‘⠉⠞⠊⠉" }, { "input": "dialectic's", "output": "⠙⠊â â ‡â ‘⠉⠞⠊⠉⠄⠎" }, { "input": "dialectics's", "output": "⠙⠊â â ‡â ‘⠉⠞⠊⠉⠎⠄⠎" }, { "input": "dialects", "output": "⠙⠊â â ‡â ‘⠉⠞⠎" }, { "input": "dialed", "output": "⠙⠊â â ‡â «" }, { "input": "dialing", "output": "⠙⠊â â ‡â Œ" }, { "input": "dialings", "output": "⠙⠊â â ‡â Œâ Ž" }, { "input": "dialog", "output": "⠙⠊â â ‡â •â ›" }, { "input": "dialogue", "output": "⠙⠊â â ‡â •⠛⠥⠑" }, { "input": "dialogue's", "output": "⠙⠊â â ‡â •⠛⠥⠑⠄⠎" }, { "input": "dialogues", "output": "⠙⠊â â ‡â •⠛⠥⠑⠎" }, { "input": "dials", "output": "⠙⠊â â ‡â Ž" }, { "input": "dialyses", "output": "⠙⠊â â ‡â ½â Žâ ‘â Ž" }, { "input": "dialysis", "output": "⠙⠊â â ‡â ½â Žâ Šâ Ž" }, { "input": "dialysis's", "output": "⠙⠊â â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "dialyzes", "output": "⠙⠊â â ‡â ½â µâ ‘â Ž" }, { "input": "diameter", "output": "⠙⠊â â â ‘â žâ »" }, { "input": "diameter's", "output": "⠙⠊â â â ‘⠞⠻⠄⠎" }, { "input": "diameters", "output": "⠙⠊â â â ‘⠞⠻⠎" }, { "input": "diametric", "output": "⠙⠊â â â ‘â žâ —â Šâ ‰" }, { "input": "diametrical", "output": "⠙⠊â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "diametrically", "output": "⠙⠊â â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "diamond", "output": "⠙⠊â â â •â â ™" }, { "input": "diamond's", "output": "⠙⠊â â â •â â ™â „â Ž" }, { "input": "diamondback", "output": "⠙⠊â â â •â â ™â ƒâ â ‰â …" }, { "input": "diamondback's", "output": "⠙⠊â â â •â â ™â ƒâ â ‰â …â „â Ž" }, { "input": "diamondbacks", "output": "⠙⠊â â â •â â ™â ƒâ â ‰â …â Ž" }, { "input": "diamonds", "output": "⠙⠊â â â •â â ™â Ž" }, { "input": "diapason", "output": "⠙⠊â â â â Žâ •â " }, { "input": "diapason's", "output": "⠙⠊â â â â Žâ •â â „â Ž" }, { "input": "diapasons", "output": "⠙⠊â â â â Žâ •â â Ž" }, { "input": "diaper", "output": "⠙⠊â â â »" }, { "input": "diaper's", "output": "⠙⠊â â â »â „â Ž" }, { "input": "diapered", "output": "⠙⠊â â â »â «" }, { "input": "diapering", "output": "⠙⠊â â â »â Œ" }, { "input": "diapers", "output": "⠙⠊â â â »â Ž" }, { "input": "diaphanous", "output": "⠙⠊â â â “â â â ³â Ž" }, { "input": "diaphragm", "output": "⠙⠊â â â “â —â â ›â " }, { "input": "diaphragm's", "output": "⠙⠊â â â “â —â â ›â â „â Ž" }, { "input": "diaphragmatic", "output": "⠙⠊â â â “â —â â ›â â â žâ Šâ ‰" }, { "input": "diaphragms", "output": "⠙⠊â â â “â —â â ›â â Ž" }, { "input": "diaries", "output": "⠙⠊⠜⠊⠑⠎" }, { "input": "diarist", "output": "⠙⠊⠜⠊⠌" }, { "input": "diarist's", "output": "⠙⠊⠜⠊⠌⠄⠎" }, { "input": "diarists", "output": "⠙⠊⠜⠊⠌⠎" }, { "input": "diarrhea", "output": "⠙⠊⠜⠗⠓⠑â " }, { "input": "diarrhea's", "output": "⠙⠊⠜⠗⠓⠑â â „â Ž" }, { "input": "diary", "output": "⠙⠊⠜⠽" }, { "input": "diary's", "output": "⠙⠊⠜⠽⠄⠎" }, { "input": "diastase", "output": "⠙⠊â â Œâ â Žâ ‘" }, { "input": "diastase's", "output": "⠙⠊â â Œâ â Žâ ‘â „â Ž" }, { "input": "diastole", "output": "⠙⠊â â Œâ •⠇⠑" }, { "input": "diastole's", "output": "⠙⠊â â Œâ •⠇⠑⠄⠎" }, { "input": "diastolic", "output": "⠙⠊â â Œâ •⠇⠊⠉" }, { "input": "diathermy", "output": "⠙⠊â â ®â —â â ½" }, { "input": "diathermy's", "output": "⠙⠊â â ®â —â â ½â „â Ž" }, { "input": "diatom", "output": "⠙⠊â â žâ •â " }, { "input": "diatom's", "output": "⠙⠊â â žâ •â â „â Ž" }, { "input": "diatomic", "output": "⠙⠊â â žâ •â â Šâ ‰" }, { "input": "diatoms", "output": "⠙⠊â â žâ •â â Ž" }, { "input": "diatribe", "output": "⠙⠊â â žâ —⠊⠃⠑" }, { "input": "diatribe's", "output": "⠙⠊â â žâ —⠊⠃⠑⠄⠎" }, { "input": "diatribes", "output": "⠙⠊â â žâ —⠊⠃⠑⠎" }, { "input": "dibble", "output": "⠙⠊⠃⠼" }, { "input": "dibble's", "output": "⠙⠊⠃⠼⠄⠎" }, { "input": "dibbled", "output": "⠙⠊⠃⠼⠙" }, { "input": "dibbles", "output": "⠙⠊⠃⠼⠎" }, { "input": "dibbling", "output": "⠙⠊⠆⠇⠌" }, { "input": "dibs", "output": "⠙⠊⠃⠎" }, { "input": "dibs's", "output": "⠙⠊⠃⠎⠄⠎" }, { "input": "dice", "output": "⠙⠊⠉⠑" }, { "input": "diced", "output": "⠙⠊⠉⠫" }, { "input": "dices", "output": "⠙⠊⠉⠑⠎" }, { "input": "dicey", "output": "⠙⠊⠉⠑⠽" }, { "input": "dichotomies", "output": "⠙⠊⠡⠕⠞⠕â â Šâ ‘â Ž" }, { "input": "dichotomous", "output": "⠙⠊⠡⠕⠞⠕â â ³â Ž" }, { "input": "dichotomy", "output": "⠙⠊⠡⠕⠞⠕â â ½" }, { "input": "dichotomy's", "output": "⠙⠊⠡⠕⠞⠕â â ½â „â Ž" }, { "input": "dicier", "output": "⠙⠊⠉⠊⠻" }, { "input": "diciest", "output": "⠙⠊⠉⠊⠑⠌" }, { "input": "dicing", "output": "⠙⠊⠉⠌" }, { "input": "dick", "output": "⠙⠊⠉⠅" }, { "input": "dick's", "output": "⠙⠊⠉⠅⠄⠎" }, { "input": "dicker", "output": "⠙⠊⠉⠅⠻" }, { "input": "dickered", "output": "⠙⠊⠉⠅⠻⠫" }, { "input": "dickering", "output": "⠙⠊⠉⠅⠻⠌" }, { "input": "dickers", "output": "⠙⠊⠉⠅⠻⠎" }, { "input": "dickey", "output": "⠙⠊⠉⠅⠑⠽" }, { "input": "dickey's", "output": "⠙⠊⠉⠅⠑⠽⠄⠎" }, { "input": "dickeys", "output": "⠙⠊⠉⠅⠑⠽⠎" }, { "input": "dicks", "output": "⠙⠊⠉⠅⠎" }, { "input": "dicotyledon", "output": "⠙⠊⠉⠕⠞⠽⠇⠫⠕â " }, { "input": "dicotyledon's", "output": "⠙⠊⠉⠕⠞⠽⠇⠫⠕â â „â Ž" }, { "input": "dicotyledonous", "output": "⠙⠊⠉⠕⠞⠽⠇⠫⠕â â ³â Ž" }, { "input": "dicotyledons", "output": "⠙⠊⠉⠕⠞⠽⠇⠫⠕â â Ž" }, { "input": "dicta", "output": "⠙⠊⠉⠞â " }, { "input": "dictate", "output": "⠙⠊⠉⠞â â žâ ‘" }, { "input": "dictate's", "output": "⠙⠊⠉⠞â â žâ ‘â „â Ž" }, { "input": "dictated", "output": "⠙⠊⠉⠞â â žâ «" }, { "input": "dictates", "output": "⠙⠊⠉⠞â â žâ ‘â Ž" }, { "input": "dictating", "output": "⠙⠊⠉⠞â â žâ Œ" }, { "input": "dictation", "output": "⠙⠊⠉⠞⠠â " }, { "input": "dictation's", "output": "⠙⠊⠉⠞⠠â â „â Ž" }, { "input": "dictations", "output": "⠙⠊⠉⠞⠠â â Ž" }, { "input": "dictator", "output": "⠙⠊⠉⠞â â žâ •â —" }, { "input": "dictator's", "output": "⠙⠊⠉⠞â â žâ •â —â „â Ž" }, { "input": "dictatorial", "output": "⠙⠊⠉⠞â â žâ •â —â Šâ â ‡" }, { "input": "dictators", "output": "⠙⠊⠉⠞â â žâ •â —â Ž" }, { "input": "dictatorship", "output": "⠙⠊⠉⠞â â žâ •â —â ©â Šâ " }, { "input": "dictatorship's", "output": "⠙⠊⠉⠞â â žâ •â —â ©â Šâ â „â Ž" }, { "input": "dictatorships", "output": "⠙⠊⠉⠞â â žâ •â —â ©â Šâ â Ž" }, { "input": "diction", "output": "⠙⠊⠉⠰â " }, { "input": "diction's", "output": "⠙⠊⠉⠰â â „â Ž" }, { "input": "dictionaries", "output": "⠙⠊⠉⠰â â œâ Šâ ‘â Ž" }, { "input": "dictionary", "output": "⠙⠊⠉⠰â â œâ ½" }, { "input": "dictionary's", "output": "⠙⠊⠉⠰â â œâ ½â „â Ž" }, { "input": "dictum", "output": "⠙⠊⠉⠞⠥â " }, { "input": "dictum's", "output": "⠙⠊⠉⠞⠥â â „â Ž" }, { "input": "did", "output": "⠙⠊⠙" }, { "input": "didactic", "output": "⠙⠊⠙â â ‰â žâ Šâ ‰" }, { "input": "diddle", "output": "⠙⠊⠲⠇⠑" }, { "input": "diddled", "output": "⠙⠊⠲⠇⠫" }, { "input": "diddler", "output": "⠙⠊⠲⠇⠻" }, { "input": "diddler's", "output": "⠙⠊⠲⠇⠻⠄⠎" }, { "input": "diddlers", "output": "⠙⠊⠲⠇⠻⠎" }, { "input": "diddles", "output": "⠙⠊⠲⠇⠑⠎" }, { "input": "diddling", "output": "⠙⠊⠲⠇⠌" }, { "input": "dido", "output": "⠙⠊⠙⠕" }, { "input": "dido's", "output": "⠙⠊⠙⠕⠄⠎" }, { "input": "didoes", "output": "⠙⠊⠙⠕⠑⠎" }, { "input": "didst", "output": "⠙⠊⠙⠌" }, { "input": "die", "output": "⠙⠊⠑" }, { "input": "die's", "output": "⠙⠊⠑⠄⠎" }, { "input": "died", "output": "⠙⠊⠫" }, { "input": "dielectric", "output": "⠙⠊⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "dielectric's", "output": "⠙⠊⠑⠇⠑⠉⠞⠗⠊⠉⠄⠎" }, { "input": "dielectrics", "output": "⠙⠊⠑⠇⠑⠉⠞⠗⠊⠉⠎" }, { "input": "diereses", "output": "⠙⠊⠻⠑⠎⠑⠎" }, { "input": "dieresis", "output": "⠙⠊⠻⠑⠎⠊⠎" }, { "input": "dieresis's", "output": "⠙⠊⠻⠑⠎⠊⠎⠄⠎" }, { "input": "dies", "output": "⠙⠊⠑⠎" }, { "input": "diesel", "output": "⠙⠊⠑⠎⠑⠇" }, { "input": "diesel's", "output": "⠙⠊⠑⠎⠑⠇⠄⠎" }, { "input": "dieseled", "output": "⠙⠊⠑⠎⠑⠇⠫" }, { "input": "dieseling", "output": "⠙⠊⠑⠎⠑⠇⠌" }, { "input": "diesels", "output": "⠙⠊⠑⠎⠑⠇⠎" }, { "input": "diet", "output": "⠙⠊⠑⠞" }, { "input": "diet's", "output": "⠙⠊⠑⠞⠄⠎" }, { "input": "dietaries", "output": "⠙⠊⠑⠞⠜⠊⠑⠎" }, { "input": "dietary", "output": "⠙⠊⠑⠞⠜⠽" }, { "input": "dietary's", "output": "⠙⠊⠑⠞⠜⠽⠄⠎" }, { "input": "dieted", "output": "⠙⠊⠑⠞⠫" }, { "input": "dieter", "output": "⠙⠊⠑⠞⠻" }, { "input": "dieter's", "output": "⠙⠊⠑⠞⠻⠄⠎" }, { "input": "dieters", "output": "⠙⠊⠑⠞⠻⠎" }, { "input": "dietetic", "output": "⠙⠊⠑⠞⠑⠞⠊⠉" }, { "input": "dietetics", "output": "⠙⠊⠑⠞⠑⠞⠊⠉⠎" }, { "input": "dietetics's", "output": "⠙⠊⠑⠞⠑⠞⠊⠉⠎⠄⠎" }, { "input": "dieting", "output": "⠙⠊⠑⠞⠌" }, { "input": "dietitian", "output": "⠙⠊⠑⠞⠊⠞⠊â â " }, { "input": "dietitian's", "output": "⠙⠊⠑⠞⠊⠞⠊â â â „â Ž" }, { "input": "dietitians", "output": "⠙⠊⠑⠞⠊⠞⠊â â â Ž" }, { "input": "diets", "output": "⠙⠊⠑⠞⠎" }, { "input": "differ", "output": "⠙⠊⠖⠻" }, { "input": "differed", "output": "⠙⠊⠖⠻⠫" }, { "input": "difference", "output": "⠙⠊⠖⠻⠰⠑" }, { "input": "difference's", "output": "⠙⠊⠖⠻⠰⠑⠄⠎" }, { "input": "differences", "output": "⠙⠊⠖⠻⠰⠑⠎" }, { "input": "different", "output": "⠙⠊⠖⠻⠢⠞" }, { "input": "differential", "output": "⠙⠊⠖⠻⠢⠞⠊â â ‡" }, { "input": "differential's", "output": "⠙⠊⠖⠻⠢⠞⠊â â ‡â „â Ž" }, { "input": "differentials", "output": "⠙⠊⠖⠻⠢⠞⠊â â ‡â Ž" }, { "input": "differentiate", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ ‘" }, { "input": "differentiated", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ «" }, { "input": "differentiates", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ ‘â Ž" }, { "input": "differentiating", "output": "⠙⠊⠖⠻⠢⠞⠊â â žâ Œ" }, { "input": "differentiation", "output": "⠙⠊⠖⠻⠢⠞⠊⠠â " }, { "input": "differentiation's", "output": "⠙⠊⠖⠻⠢⠞⠊⠠â â „â Ž" }, { "input": "differently", "output": "⠙⠊⠖⠻⠢⠞⠇⠽" }, { "input": "differing", "output": "⠙⠊⠖⠻⠌" }, { "input": "differs", "output": "⠙⠊⠖⠻⠎" }, { "input": "difficult", "output": "⠙⠊⠖⠊⠉⠥⠇⠞" }, { "input": "difficulties", "output": "⠙⠊⠖⠊⠉⠥⠇⠞⠊⠑⠎" }, { "input": "difficultly", "output": "⠙⠊⠖⠊⠉⠥⠇⠞⠇⠽" }, { "input": "difficulty", "output": "⠙⠊⠖⠊⠉⠥⠇⠞⠽" }, { "input": "difficulty's", "output": "⠙⠊⠖⠊⠉⠥⠇⠞⠽⠄⠎" }, { "input": "diffidence", "output": "⠙⠊⠖⠊⠙⠰⠑" }, { "input": "diffidence's", "output": "⠙⠊⠖⠊⠙⠰⠑⠄⠎" }, { "input": "diffident", "output": "⠙⠊⠖⠊⠙⠢⠞" }, { "input": "diffidently", "output": "⠙⠊⠖⠊⠙⠢⠞⠇⠽" }, { "input": "diffraction", "output": "⠙⠊⠖⠗â â ‰â °â " }, { "input": "diffraction's", "output": "⠙⠊⠖⠗â â ‰â °â â „â Ž" }, { "input": "diffuse", "output": "⠙⠊⠖⠥⠎⠑" }, { "input": "diffused", "output": "⠙⠊⠖⠥⠎⠫" }, { "input": "diffusely", "output": "⠙⠊⠖⠥⠎⠑⠇⠽" }, { "input": "diffuseness", "output": "⠙⠊⠖⠥⠎⠑⠰⠎" }, { "input": "diffuseness's", "output": "⠙⠊⠖⠥⠎⠑⠰⠎⠄⠎" }, { "input": "diffuses", "output": "⠙⠊⠖⠥⠎⠑⠎" }, { "input": "diffusing", "output": "⠙⠊⠖⠥⠎⠌" }, { "input": "diffusion", "output": "⠙⠊⠖⠥⠨â " }, { "input": "diffusion's", "output": "⠙⠊⠖⠥⠨â â „â Ž" }, { "input": "diffusive", "output": "⠙⠊⠖⠥⠎⠊⠧⠑" }, { "input": "dig", "output": "⠙⠊⠛" }, { "input": "dig's", "output": "⠙⠊⠛⠄⠎" }, { "input": "digerati", "output": "⠙⠊⠛⠻â â žâ Š" }, { "input": "digerati's", "output": "⠙⠊⠛⠻â â žâ Šâ „â Ž" }, { "input": "digest", "output": "⠙⠊⠛⠑⠌" }, { "input": "digest's", "output": "⠙⠊⠛⠑⠌⠄⠎" }, { "input": "digested", "output": "⠙⠊⠛⠑⠌⠫" }, { "input": "digestibility", "output": "⠙⠊⠛⠑⠌⠊⠃⠊⠇⠰⠽" }, { "input": "digestibility's", "output": "⠙⠊⠛⠑⠌⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "digestible", "output": "⠙⠊⠛⠑⠌⠊⠼" }, { "input": "digesting", "output": "⠙⠊⠛⠑⠌⠌" }, { "input": "digestion", "output": "⠙⠊⠛⠑⠎⠰â " }, { "input": "digestion's", "output": "⠙⠊⠛⠑⠎⠰â â „â Ž" }, { "input": "digestions", "output": "⠙⠊⠛⠑⠎⠰â â Ž" }, { "input": "digestive", "output": "⠙⠊⠛⠑⠌⠊⠧⠑" }, { "input": "digests", "output": "⠙⠊⠛⠑⠌⠎" }, { "input": "digger", "output": "⠙⠊⠶⠻" }, { "input": "digger's", "output": "⠙⠊⠶⠻⠄⠎" }, { "input": "diggers", "output": "⠙⠊⠶⠻⠎" }, { "input": "digging", "output": "⠙⠊⠶⠌" }, { "input": "diggings", "output": "⠙⠊⠶⠌⠎" }, { "input": "diggings's", "output": "⠙⠊⠶⠌⠎⠄⠎" }, { "input": "digit", "output": "⠙⠊⠛⠊⠞" }, { "input": "digit's", "output": "⠙⠊⠛⠊⠞⠄⠎" }, { "input": "digital", "output": "⠙⠊⠛⠊⠞â â ‡" }, { "input": "digitalis", "output": "⠙⠊⠛⠊⠞â â ‡â Šâ Ž" }, { "input": "digitalis's", "output": "⠙⠊⠛⠊⠞â â ‡â Šâ Žâ „â Ž" }, { "input": "digitally", "output": "⠙⠊⠛⠊⠞⠠⠽" }, { "input": "digitization", "output": "⠙⠊⠛⠊⠞⠊⠵⠠â " }, { "input": "digitize", "output": "⠙⠊⠛⠊⠞⠊⠵⠑" }, { "input": "digitized", "output": "⠙⠊⠛⠊⠞⠊⠵⠫" }, { "input": "digitizes", "output": "⠙⠊⠛⠊⠞⠊⠵⠑⠎" }, { "input": "digitizing", "output": "⠙⠊⠛⠊⠞⠊⠵⠌" }, { "input": "digits", "output": "⠙⠊⠛⠊⠞⠎" }, { "input": "dignified", "output": "⠙⠊⠛â â Šâ ‹â Šâ «" }, { "input": "dignifies", "output": "⠙⠊⠛â â Šâ ‹â Šâ ‘â Ž" }, { "input": "dignify", "output": "⠙⠊⠛â â Šâ ‹â ½" }, { "input": "dignifying", "output": "⠙⠊⠛â â Šâ ‹â ½â Œ" }, { "input": "dignitaries", "output": "⠙⠊⠛â â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "dignitary", "output": "⠙⠊⠛â â Šâ žâ œâ ½" }, { "input": "dignitary's", "output": "⠙⠊⠛â â Šâ žâ œâ ½â „â Ž" }, { "input": "dignities", "output": "⠙⠊⠛â â Šâ žâ Šâ ‘â Ž" }, { "input": "dignity", "output": "⠙⠊⠛â â °â ½" }, { "input": "dignity's", "output": "⠙⠊⠛â â °â ½â „â Ž" }, { "input": "digraph", "output": "⠙⠊⠛⠗â â â “" }, { "input": "digraph's", "output": "⠙⠊⠛⠗â â â “â „â Ž" }, { "input": "digraphs", "output": "⠙⠊⠛⠗â â â “â Ž" }, { "input": "digress", "output": "⠙⠊⠛⠗⠑⠎⠎" }, { "input": "digressed", "output": "⠙⠊⠛⠗⠑⠎⠎⠫" }, { "input": "digresses", "output": "⠙⠊⠛⠗⠑⠎⠎⠑⠎" }, { "input": "digressing", "output": "⠙⠊⠛⠗⠑⠎⠎⠌" }, { "input": "digression", "output": "⠙⠊⠛⠗⠑⠎⠨â " }, { "input": "digression's", "output": "⠙⠊⠛⠗⠑⠎⠨â â „â Ž" }, { "input": "digressions", "output": "⠙⠊⠛⠗⠑⠎⠨â â Ž" }, { "input": "digressive", "output": "⠙⠊⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "digs", "output": "⠙⠊⠛⠎" }, { "input": "dike", "output": "⠙⠊⠅⠑" }, { "input": "dike's", "output": "⠙⠊⠅⠑⠄⠎" }, { "input": "diked", "output": "⠙⠊⠅⠫" }, { "input": "dikes", "output": "⠙⠊⠅⠑⠎" }, { "input": "diking", "output": "⠙⠊⠅⠌" }, { "input": "dilapidated", "output": "⠙⠊⠇â â â Šâ ™â â žâ «" }, { "input": "dilapidation", "output": "⠙⠊⠇â â â Šâ ™â  â " }, { "input": "dilapidation's", "output": "⠙⠊⠇â â â Šâ ™â  â â „â Ž" }, { "input": "dilatation", "output": "⠙⠊⠇â â žâ  â " }, { "input": "dilatation's", "output": "⠙⠊⠇â â žâ  â â „â Ž" }, { "input": "dilate", "output": "⠙⠊⠇â â žâ ‘" }, { "input": "dilated", "output": "⠙⠊⠇â â žâ «" }, { "input": "dilates", "output": "⠙⠊⠇â â žâ ‘â Ž" }, { "input": "dilating", "output": "⠙⠊⠇â â žâ Œ" }, { "input": "dilation", "output": "⠙⠊⠇⠠â " }, { "input": "dilation's", "output": "⠙⠊⠇⠠â â „â Ž" }, { "input": "dilator", "output": "⠙⠊⠇â â žâ •â —" }, { "input": "dilator's", "output": "⠙⠊⠇â â žâ •â —â „â Ž" }, { "input": "dilators", "output": "⠙⠊⠇â â žâ •â —â Ž" }, { "input": "dilatory", "output": "⠙⠊⠇â â žâ •â —â ½" }, { "input": "dilemma", "output": "⠙⠊⠇⠑â â â " }, { "input": "dilemma's", "output": "⠙⠊⠇⠑â â â â „â Ž" }, { "input": "dilemmas", "output": "⠙⠊⠇⠑â â â â Ž" }, { "input": "dilettante", "output": "⠙⠊⠇⠑⠞⠞â â â žâ ‘" }, { "input": "dilettante's", "output": "⠙⠊⠇⠑⠞⠞â â â žâ ‘â „â Ž" }, { "input": "dilettantes", "output": "⠙⠊⠇⠑⠞⠞â â â žâ ‘â Ž" }, { "input": "dilettantish", "output": "⠙⠊⠇⠑⠞⠞â â â žâ Šâ ©" }, { "input": "dilettantism", "output": "⠙⠊⠇⠑⠞⠞â â â žâ Šâ Žâ " }, { "input": "dilettantism's", "output": "⠙⠊⠇⠑⠞⠞â â â žâ Šâ Žâ â „â Ž" }, { "input": "diligence", "output": "⠙⠊⠇⠊⠛⠰⠑" }, { "input": "diligence's", "output": "⠙⠊⠇⠊⠛⠰⠑⠄⠎" }, { "input": "diligent", "output": "⠙⠊⠇⠊⠛⠢⠞" }, { "input": "diligently", "output": "⠙⠊⠇⠊⠛⠢⠞⠇⠽" }, { "input": "dill", "output": "⠙⠊⠇⠇" }, { "input": "dill's", "output": "⠙⠊⠇⠇⠄⠎" }, { "input": "dillies", "output": "⠙⠊⠇⠇⠊⠑⠎" }, { "input": "dills", "output": "⠙⠊⠇⠇⠎" }, { "input": "dilly", "output": "⠙⠊⠇⠇⠽" }, { "input": "dilly's", "output": "⠙⠊⠇⠇⠽⠄⠎" }, { "input": "dillydallied", "output": "⠙⠊⠇⠇⠽⠙â â ‡â ‡â Šâ «" }, { "input": "dillydallies", "output": "⠙⠊⠇⠇⠽⠙â â ‡â ‡â Šâ ‘â Ž" }, { "input": "dillydally", "output": "⠙⠊⠇⠇⠽⠙⠠⠽" }, { "input": "dillydallying", "output": "⠙⠊⠇⠇⠽⠙⠠⠽⠌" }, { "input": "dilute", "output": "⠙⠊⠇⠥⠞⠑" }, { "input": "diluted", "output": "⠙⠊⠇⠥⠞⠫" }, { "input": "dilutes", "output": "⠙⠊⠇⠥⠞⠑⠎" }, { "input": "diluting", "output": "⠙⠊⠇⠥⠞⠌" }, { "input": "dilution", "output": "⠙⠊⠇⠥⠰â " }, { "input": "dilution's", "output": "⠙⠊⠇⠥⠰â â „â Ž" }, { "input": "dim", "output": "⠙⠊â " }, { "input": "dime", "output": "⠙⠊â â ‘" }, { "input": "dime's", "output": "⠙⠊â â ‘â „â Ž" }, { "input": "dimension", "output": "⠙⠊â â ¢â ¨â " }, { "input": "dimension's", "output": "⠙⠊â â ¢â ¨â â „â Ž" }, { "input": "dimensional", "output": "⠙⠊â â ¢â ¨â â â ‡" }, { "input": "dimensionless", "output": "⠙⠊â â ¢â ¨â â ¨â Ž" }, { "input": "dimensions", "output": "⠙⠊â â ¢â ¨â â Ž" }, { "input": "dimer", "output": "⠙⠊â â »" }, { "input": "dimes", "output": "⠙⠊â â ‘â Ž" }, { "input": "diminish", "output": "⠙⠊â â ”â Šâ ©" }, { "input": "diminished", "output": "⠙⠊â â ”â Šâ ©â «" }, { "input": "diminishes", "output": "⠙⠊â â ”â Šâ ©â ‘â Ž" }, { "input": "diminishing", "output": "⠙⠊â â ”â Šâ ©â Œ" }, { "input": "diminuendo", "output": "⠙⠊â â ”⠥⠢⠙⠕" }, { "input": "diminuendo's", "output": "⠙⠊â â ”⠥⠢⠙⠕⠄⠎" }, { "input": "diminuendos", "output": "⠙⠊â â ”⠥⠢⠙⠕⠎" }, { "input": "diminution", "output": "⠙⠊â â ”⠥⠰â " }, { "input": "diminution's", "output": "⠙⠊â â ”⠥⠰â â „â Ž" }, { "input": "diminutions", "output": "⠙⠊â â ”⠥⠰â â Ž" }, { "input": "diminutive", "output": "⠙⠊â â ”⠥⠞⠊⠧⠑" }, { "input": "diminutive's", "output": "⠙⠊â â ”⠥⠞⠊⠧⠑⠄⠎" }, { "input": "diminutives", "output": "⠙⠊â â ”⠥⠞⠊⠧⠑⠎" }, { "input": "dimity", "output": "⠙⠊â â °â ½" }, { "input": "dimity's", "output": "⠙⠊â â °â ½â „â Ž" }, { "input": "dimly", "output": "⠙⠊â â ‡â ½" }, { "input": "dimmed", "output": "⠙⠊â â â «" }, { "input": "dimmer", "output": "⠙⠊â â â »" }, { "input": "dimmer's", "output": "⠙⠊â â â »â „â Ž" }, { "input": "dimmers", "output": "⠙⠊â â â »â Ž" }, { "input": "dimmest", "output": "⠙⠊â â â ‘â Œ" }, { "input": "dimming", "output": "⠙⠊â â â Œ" }, { "input": "dimness", "output": "⠙⠊â â °â Ž" }, { "input": "dimness's", "output": "⠙⠊â â °â Žâ „â Ž" }, { "input": "dimple", "output": "⠙⠊â â â ‡â ‘" }, { "input": "dimple's", "output": "⠙⠊â â â ‡â ‘â „â Ž" }, { "input": "dimpled", "output": "⠙⠊â â â ‡â «" }, { "input": "dimples", "output": "⠙⠊â â â ‡â ‘â Ž" }, { "input": "dimpling", "output": "⠙⠊â â â ‡â Œ" }, { "input": "dimply", "output": "⠙⠊â â â ‡â ½" }, { "input": "dims", "output": "⠙⠊â â Ž" }, { "input": "dimwit", "output": "⠙⠊â â ºâ Šâ ž" }, { "input": "dimwit's", "output": "⠙⠊â â ºâ Šâ žâ „â Ž" }, { "input": "dimwits", "output": "⠙⠊â â ºâ Šâ žâ Ž" }, { "input": "dimwitted", "output": "⠙⠊â â ºâ Šâ žâ žâ «" }, { "input": "din", "output": "⠙⠔" }, { "input": "din's", "output": "⠙⠔⠄⠎" }, { "input": "dine", "output": "⠙⠔⠑" }, { "input": "dined", "output": "⠙⠔⠫" }, { "input": "diner", "output": "⠙⠔⠻" }, { "input": "diner's", "output": "⠙⠔⠻⠄⠎" }, { "input": "diners", "output": "⠙⠔⠻⠎" }, { "input": "dines", "output": "⠙⠔⠑⠎" }, { "input": "dinette", "output": "⠙⠔⠑⠞⠞⠑" }, { "input": "dinette's", "output": "⠙⠔⠑⠞⠞⠑⠄⠎" }, { "input": "dinettes", "output": "⠙⠔⠑⠞⠞⠑⠎" }, { "input": "ding", "output": "⠙⠌" }, { "input": "ding's", "output": "⠙⠌⠄⠎" }, { "input": "dinged", "output": "⠙⠌⠫" }, { "input": "dinghies", "output": "⠙⠔⠣⠊⠑⠎" }, { "input": "dinghy", "output": "⠙⠔⠣⠽" }, { "input": "dinghy's", "output": "⠙⠔⠣⠽⠄⠎" }, { "input": "dingier", "output": "⠙⠌⠊⠻" }, { "input": "dingiest", "output": "⠙⠌⠊⠑⠌" }, { "input": "dinginess", "output": "⠙⠌⠊⠰⠎" }, { "input": "dinginess's", "output": "⠙⠌⠊⠰⠎⠄⠎" }, { "input": "dinging", "output": "⠙⠌⠌" }, { "input": "dingle", "output": "⠙⠌⠇⠑" }, { "input": "dingle's", "output": "⠙⠌⠇⠑⠄⠎" }, { "input": "dingles", "output": "⠙⠌⠇⠑⠎" }, { "input": "dingo", "output": "⠙⠌⠕" }, { "input": "dingo's", "output": "⠙⠌⠕⠄⠎" }, { "input": "dingoes", "output": "⠙⠌⠕⠑⠎" }, { "input": "dings", "output": "⠙⠌⠎" }, { "input": "dingus", "output": "⠙⠌⠥⠎" }, { "input": "dingus's", "output": "⠙⠌⠥⠎⠄⠎" }, { "input": "dinguses", "output": "⠙⠌⠥⠎⠑⠎" }, { "input": "dingy", "output": "⠙⠌⠽" }, { "input": "dining", "output": "⠙⠔⠌" }, { "input": "dinkier", "output": "⠙⠔⠅⠊⠻" }, { "input": "dinkies", "output": "⠙⠔⠅⠊⠑⠎" }, { "input": "dinkiest", "output": "⠙⠔⠅⠊⠑⠌" }, { "input": "dinky", "output": "⠙⠔⠅⠽" }, { "input": "dinky's", "output": "⠙⠔⠅⠽⠄⠎" }, { "input": "dinned", "output": "⠙⠔â â «" }, { "input": "dinner", "output": "⠙⠔â â »" }, { "input": "dinner's", "output": "⠙⠔â â »â „â Ž" }, { "input": "dinnered", "output": "⠙⠔â â »â «" }, { "input": "dinnering", "output": "⠙⠔â â »â Œ" }, { "input": "dinners", "output": "⠙⠔â â »â Ž" }, { "input": "dinnertime's", "output": "⠙⠔â â »â â žâ „â Ž" }, { "input": "dinnerware's", "output": "⠙⠔â â »â ºâ œâ ‘â „â Ž" }, { "input": "dinning", "output": "⠙⠔â â Œ" }, { "input": "dinosaur", "output": "⠙⠔⠕⠎â â ¥â —" }, { "input": "dinosaur's", "output": "⠙⠔⠕⠎â â ¥â —â „â Ž" }, { "input": "dinosaurs", "output": "⠙⠔⠕⠎â â ¥â —â Ž" }, { "input": "dins", "output": "⠙⠔⠎" }, { "input": "dint", "output": "⠙⠔⠞" }, { "input": "dint's", "output": "⠙⠔⠞⠄⠎" }, { "input": "diocesan", "output": "⠙⠊⠕⠉⠑⠎â â " }, { "input": "diocesan's", "output": "⠙⠊⠕⠉⠑⠎â â â „â Ž" }, { "input": "diocesans", "output": "⠙⠊⠕⠉⠑⠎â â â Ž" }, { "input": "diocese", "output": "⠙⠊⠕⠉⠑⠎⠑" }, { "input": "diocese's", "output": "⠙⠊⠕⠉⠑⠎⠑⠄⠎" }, { "input": "dioceses", "output": "⠙⠊⠕⠉⠑⠎⠑⠎" }, { "input": "diode", "output": "⠙⠊⠕⠙⠑" }, { "input": "diode's", "output": "⠙⠊⠕⠙⠑⠄⠎" }, { "input": "diodes", "output": "⠙⠊⠕⠙⠑⠎" }, { "input": "diorama", "output": "⠙⠊⠕⠗â â â " }, { "input": "diorama's", "output": "⠙⠊⠕⠗â â â â „â Ž" }, { "input": "dioramas", "output": "⠙⠊⠕⠗â â â â Ž" }, { "input": "dioxide", "output": "⠙⠊⠕⠭⠊⠙⠑" }, { "input": "dioxin", "output": "⠙⠊⠕⠭⠔" }, { "input": "dioxin's", "output": "⠙⠊⠕⠭⠔⠄⠎" }, { "input": "dioxins", "output": "⠙⠊⠕⠭⠔⠎" }, { "input": "dip", "output": "⠙⠊â " }, { "input": "dip's", "output": "⠙⠊â â „â Ž" }, { "input": "diphtheria", "output": "⠙⠊â â “⠮⠗⠊â " }, { "input": "diphtheria's", "output": "⠙⠊â â “⠮⠗⠊â â „â Ž" }, { "input": "diphthong", "output": "⠙⠊â â “⠹⠰⠛" }, { "input": "diphthong's", "output": "⠙⠊â â “⠹⠰⠛⠄⠎" }, { "input": "diphthongs", "output": "⠙⠊â â “⠹⠰⠛⠎" }, { "input": "diploid", "output": "⠙⠊â â ‡â •â Šâ ™" }, { "input": "diploid's", "output": "⠙⠊â â ‡â •⠊⠙⠄⠎" }, { "input": "diploids", "output": "⠙⠊â â ‡â •⠊⠙⠎" }, { "input": "diploma", "output": "⠙⠊â â ‡â •â â " }, { "input": "diploma's", "output": "⠙⠊â â ‡â •â â â „â Ž" }, { "input": "diplomacy", "output": "⠙⠊â â ‡â •â â â ‰â ½" }, { "input": "diplomacy's", "output": "⠙⠊â â ‡â •â â â ‰â ½â „â Ž" }, { "input": "diplomas", "output": "⠙⠊â â ‡â •â â â Ž" }, { "input": "diplomat", "output": "⠙⠊â â ‡â •â â â ž" }, { "input": "diplomat's", "output": "⠙⠊â â ‡â •â â â žâ „â Ž" }, { "input": "diplomata", "output": "⠙⠊â â ‡â •â â â žâ " }, { "input": "diplomatic", "output": "⠙⠊â â ‡â •â â â žâ Šâ ‰" }, { "input": "diplomatically", "output": "⠙⠊â â ‡â •â â â žâ Šâ ‰â  â ½" }, { "input": "diplomats", "output": "⠙⠊â â ‡â •â â â žâ Ž" }, { "input": "dipole", "output": "⠙⠊â â •⠇⠑" }, { "input": "dipole's", "output": "⠙⠊â â •⠇⠑⠄⠎" }, { "input": "dipoles", "output": "⠙⠊â â •⠇⠑⠎" }, { "input": "dipped", "output": "⠙⠊â â â «" }, { "input": "dipper", "output": "⠙⠊â â â »" }, { "input": "dipper's", "output": "⠙⠊â â â »â „â Ž" }, { "input": "dippers", "output": "⠙⠊â â â »â Ž" }, { "input": "dipping", "output": "⠙⠊â â â Œ" }, { "input": "dips", "output": "⠙⠊â â Ž" }, { "input": "dipsomania", "output": "⠙⠊â â Žâ •â â â â Šâ " }, { "input": "dipsomania's", "output": "⠙⠊â â Žâ •â â â â Šâ â „â Ž" }, { "input": "dipsomaniac", "output": "⠙⠊â â Žâ •â â â â Šâ â ‰" }, { "input": "dipsomaniac's", "output": "⠙⠊â â Žâ •â â â â Šâ â ‰â „â Ž" }, { "input": "dipsomaniacs", "output": "⠙⠊â â Žâ •â â â â Šâ â ‰â Ž" }, { "input": "dipstick", "output": "⠙⠊â â Œâ Šâ ‰â …" }, { "input": "dipstick's", "output": "⠙⠊â â Œâ Šâ ‰â …â „â Ž" }, { "input": "dipsticks", "output": "⠙⠊â â Œâ Šâ ‰â …â Ž" }, { "input": "dipterous", "output": "⠙⠊â â žâ »â ³â Ž" }, { "input": "diptych", "output": "⠙⠊â â žâ ½â ¡" }, { "input": "diptych's", "output": "⠙⠊â â žâ ½â ¡â „â Ž" }, { "input": "diptychs", "output": "⠙⠊â â žâ ½â ¡â Ž" }, { "input": "dire", "output": "⠙⠊⠗⠑" }, { "input": "direct", "output": "⠙⠊⠗⠑⠉⠞" }, { "input": "directed", "output": "⠙⠊⠗⠑⠉⠞⠫" }, { "input": "directer", "output": "⠙⠊⠗⠑⠉⠞⠻" }, { "input": "directest", "output": "⠙⠊⠗⠑⠉⠞⠑⠌" }, { "input": "directing", "output": "⠙⠊⠗⠑⠉⠞⠌" }, { "input": "direction", "output": "⠙⠊⠗⠑⠉⠰â " }, { "input": "direction's", "output": "⠙⠊⠗⠑⠉⠰â â „â Ž" }, { "input": "directional", "output": "⠙⠊⠗⠑⠉⠰â â â ‡" }, { "input": "directions", "output": "⠙⠊⠗⠑⠉⠰â â Ž" }, { "input": "directive", "output": "⠙⠊⠗⠑⠉⠞⠊⠧⠑" }, { "input": "directive's", "output": "⠙⠊⠗⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "directives", "output": "⠙⠊⠗⠑⠉⠞⠊⠧⠑⠎" }, { "input": "directly", "output": "⠙⠊⠗⠑⠉⠞⠇⠽" }, { "input": "directness", "output": "⠙⠊⠗⠑⠉⠞⠰⠎" }, { "input": "directness's", "output": "⠙⠊⠗⠑⠉⠞⠰⠎⠄⠎" }, { "input": "director", "output": "⠙⠊⠗⠑⠉⠞⠕⠗" }, { "input": "director's", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠄⠎" }, { "input": "directorate", "output": "⠙⠊⠗⠑⠉⠞⠕⠗â â žâ ‘" }, { "input": "directorate's", "output": "⠙⠊⠗⠑⠉⠞⠕⠗â â žâ ‘â „â Ž" }, { "input": "directorates", "output": "⠙⠊⠗⠑⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "directorial", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠊â â ‡" }, { "input": "directories", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠊⠑⠎" }, { "input": "directors", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠎" }, { "input": "directorship", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠩⠊â " }, { "input": "directorship's", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠩⠊â â „â Ž" }, { "input": "directorships", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠩⠊â â Ž" }, { "input": "directory", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠽" }, { "input": "directory's", "output": "⠙⠊⠗⠑⠉⠞⠕⠗⠽⠄⠎" }, { "input": "directs", "output": "⠙⠊⠗⠑⠉⠞⠎" }, { "input": "direful", "output": "⠙⠊⠗⠑⠰⠇" }, { "input": "direly", "output": "⠙⠊⠗⠑⠇⠽" }, { "input": "direr", "output": "⠙⠊⠗⠻" }, { "input": "direst", "output": "⠙⠊⠗⠑⠌" }, { "input": "dirge", "output": "⠙⠊⠗⠛⠑" }, { "input": "dirge's", "output": "⠙⠊⠗⠛⠑⠄⠎" }, { "input": "dirges", "output": "⠙⠊⠗⠛⠑⠎" }, { "input": "dirigible", "output": "⠙⠊⠗⠊⠛⠊⠼" }, { "input": "dirigible's", "output": "⠙⠊⠗⠊⠛⠊⠼⠄⠎" }, { "input": "dirigibles", "output": "⠙⠊⠗⠊⠛⠊⠼⠎" }, { "input": "dirk", "output": "⠙⠊⠗⠅" }, { "input": "dirk's", "output": "⠙⠊⠗⠅⠄⠎" }, { "input": "dirks", "output": "⠙⠊⠗⠅⠎" }, { "input": "dirndl", "output": "⠙⠊⠗â â ™â ‡" }, { "input": "dirndl's", "output": "⠙⠊⠗â â ™â ‡â „â Ž" }, { "input": "dirndls", "output": "⠙⠊⠗â â ™â ‡â Ž" }, { "input": "dirt", "output": "⠙⠊⠗⠞" }, { "input": "dirt's", "output": "⠙⠊⠗⠞⠄⠎" }, { "input": "dirtied", "output": "⠙⠊⠗⠞⠊⠫" }, { "input": "dirtier", "output": "⠙⠊⠗⠞⠊⠻" }, { "input": "dirties", "output": "⠙⠊⠗⠞⠊⠑⠎" }, { "input": "dirtiest", "output": "⠙⠊⠗⠞⠊⠑⠌" }, { "input": "dirtily", "output": "⠙⠊⠗⠞⠊⠇⠽" }, { "input": "dirtiness", "output": "⠙⠊⠗⠞⠊⠰⠎" }, { "input": "dirtiness's", "output": "⠙⠊⠗⠞⠊⠰⠎⠄⠎" }, { "input": "dirty", "output": "⠙⠊⠗⠞⠽" }, { "input": "dirtying", "output": "⠙⠊⠗⠞⠽⠌" }, { "input": "dis", "output": "⠙⠊⠎" }, { "input": "dis's", "output": "⠙⠊⠎⠄⠎" }, { "input": "disabilities", "output": "â ²â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "disability", "output": "â ²â â ƒâ Šâ ‡â °â ½" }, { "input": "disability's", "output": "â ²â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "disable", "output": "â ²â â ¼" }, { "input": "disabled", "output": "â ²â â ¼â ™" }, { "input": "disablement", "output": "â ²â â ¼â °â ž" }, { "input": "disablement's", "output": "â ²â â ¼â °â žâ „â Ž" }, { "input": "disables", "output": "â ²â â ¼â Ž" }, { "input": "disabling", "output": "â ²â â ƒâ ‡â Œ" }, { "input": "disabuse", "output": "â ²â â ƒâ ¥â Žâ ‘" }, { "input": "disabused", "output": "â ²â â ƒâ ¥â Žâ «" }, { "input": "disabuses", "output": "â ²â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "disabusing", "output": "â ²â â ƒâ ¥â Žâ Œ" }, { "input": "disadvantage", "output": "â ²â â ™â §â â â žâ â ›â ‘" }, { "input": "disadvantage's", "output": "â ²â â ™â §â â â žâ â ›â ‘â „â Ž" }, { "input": "disadvantaged", "output": "â ²â â ™â §â â â žâ â ›â «" }, { "input": "disadvantageous", "output": "â ²â â ™â §â â â žâ â ›â ‘⠳⠎" }, { "input": "disadvantageously", "output": "â ²â â ™â §â â â žâ â ›â ‘⠳⠎⠇⠽" }, { "input": "disadvantages", "output": "â ²â â ™â §â â â žâ â ›â ‘â Ž" }, { "input": "disadvantaging", "output": "â ²â â ™â §â â â žâ â ›â Œ" }, { "input": "disaffect", "output": "â ²â â –⠑⠉⠞" }, { "input": "disaffected", "output": "â ²â â –⠑⠉⠞⠫" }, { "input": "disaffecting", "output": "â ²â â –⠑⠉⠞⠌" }, { "input": "disaffection", "output": "â ²â â –⠑⠉⠰â " }, { "input": "disaffection's", "output": "â ²â â –⠑⠉⠰â â „â Ž" }, { "input": "disaffects", "output": "â ²â â –⠑⠉⠞⠎" }, { "input": "disaffiliate", "output": "â ²â â –⠊⠇⠊â â žâ ‘" }, { "input": "disaffiliated", "output": "â ²â â –⠊⠇⠊â â žâ «" }, { "input": "disaffiliates", "output": "â ²â â –⠊⠇⠊â â žâ ‘â Ž" }, { "input": "disaffiliating", "output": "â ²â â –⠊⠇⠊â â žâ Œ" }, { "input": "disaffiliation", "output": "â ²â â –⠊⠇⠊⠠â " }, { "input": "disaffiliation's", "output": "â ²â â –⠊⠇⠊⠠â â „â Ž" }, { "input": "disagree", "output": "â ²â â ›â —â ‘â ‘" }, { "input": "disagreeable", "output": "â ²â â ›â —â ‘â ‘â â ¼" }, { "input": "disagreeableness", "output": "â ²â â ›â —â ‘â ‘â â ¼â °â Ž" }, { "input": "disagreeableness's", "output": "â ²â â ›â —â ‘â ‘â â ¼â °â Žâ „â Ž" }, { "input": "disagreeably", "output": "â ²â â ›â —â ‘â ‘â â ƒâ ‡â ½" }, { "input": "disagreed", "output": "â ²â â ›â —â ‘â «" }, { "input": "disagreeing", "output": "â ²â â ›â —â ‘â ‘â Œ" }, { "input": "disagreement", "output": "â ²â â ›â —â ‘â ‘â °â ž" }, { "input": "disagreement's", "output": "â ²â â ›â —â ‘â ‘â °â žâ „â Ž" }, { "input": "disagreements", "output": "â ²â â ›â —â ‘â ‘â °â žâ Ž" }, { "input": "disagrees", "output": "â ²â â ›â —â ‘â ‘â Ž" }, { "input": "disallow", "output": "â ²â â ‡â ‡â ª" }, { "input": "disallowed", "output": "â ²â â ‡â ‡â ªâ «" }, { "input": "disallowing", "output": "â ²â â ‡â ‡â ªâ Œ" }, { "input": "disallows", "output": "â ²â â ‡â ‡â ªâ Ž" }, { "input": "disambiguate", "output": "â ²â â â ƒâ Šâ ›â ¥â â žâ ‘" }, { "input": "disambiguation", "output": "â ²â â â ƒâ Šâ ›â ¥â  â " }, { "input": "disappear", "output": "â ²â â â â ‘â œ" }, { "input": "disappearance", "output": "â ²â â â â ‘⠜⠨⠑" }, { "input": "disappearance's", "output": "â ²â â â â ‘⠜⠨⠑⠄⠎" }, { "input": "disappearances", "output": "â ²â â â â ‘⠜⠨⠑⠎" }, { "input": "disappeared", "output": "â ²â â â â ‘⠜⠫" }, { "input": "disappearing", "output": "â ²â â â â ‘⠜⠌" }, { "input": "disappears", "output": "â ²â â â â ‘⠜⠎" }, { "input": "disappoint", "output": "â ²â â â â •⠔⠞" }, { "input": "disappointed", "output": "â ²â â â â •⠔⠞⠫" }, { "input": "disappointing", "output": "â ²â â â â •⠔⠞⠌" }, { "input": "disappointingly", "output": "â ²â â â â •⠔⠞⠌⠇⠽" }, { "input": "disappointment", "output": "â ²â â â â •⠔⠞⠰⠞" }, { "input": "disappointment's", "output": "â ²â â â â •⠔⠞⠰⠞⠄⠎" }, { "input": "disappointments", "output": "â ²â â â â •⠔⠞⠰⠞⠎" }, { "input": "disappoints", "output": "â ²â â â â •⠔⠞⠎" }, { "input": "disapprobation", "output": "â ²â â â â —⠕⠃⠠â " }, { "input": "disapprobation's", "output": "â ²â â â â —⠕⠃⠠â â „â Ž" }, { "input": "disapproval", "output": "â ²â â â â —â •â §â â ‡" }, { "input": "disapproval's", "output": "â ²â â â â —â •â §â â ‡â „â Ž" }, { "input": "disapprove", "output": "â ²â â â â —â •â §â ‘" }, { "input": "disapproved", "output": "â ²â â â â —â •â §â «" }, { "input": "disapproves", "output": "â ²â â â â —â •â §â ‘â Ž" }, { "input": "disapproving", "output": "â ²â â â â —â •â §â Œ" }, { "input": "disapprovingly", "output": "â ²â â â â —⠕⠧⠌⠇⠽" }, { "input": "disarm", "output": "⠲⠜â " }, { "input": "disarmament", "output": "⠲⠜â â â °â ž" }, { "input": "disarmament's", "output": "⠲⠜â â â °â žâ „â Ž" }, { "input": "disarmed", "output": "⠲⠜â â «" }, { "input": "disarming", "output": "⠲⠜â â Œ" }, { "input": "disarms", "output": "⠲⠜â â Ž" }, { "input": "disarrange", "output": "⠲⠜⠗â â â ›â ‘" }, { "input": "disarranged", "output": "⠲⠜⠗â â â ›â «" }, { "input": "disarrangement", "output": "⠲⠜⠗â â â ›â ‘â °â ž" }, { "input": "disarrangement's", "output": "⠲⠜⠗â â â ›â ‘â °â žâ „â Ž" }, { "input": "disarranges", "output": "⠲⠜⠗â â â ›â ‘â Ž" }, { "input": "disarranging", "output": "⠲⠜⠗â â â ›â Œ" }, { "input": "disarray", "output": "⠲⠜⠗â â ½" }, { "input": "disarray's", "output": "⠲⠜⠗â â ½â „â Ž" }, { "input": "disarrayed", "output": "⠲⠜⠗â â ½â «" }, { "input": "disarraying", "output": "⠲⠜⠗â â ½â Œ" }, { "input": "disarrays", "output": "⠲⠜⠗â â ½â Ž" }, { "input": "disassemble", "output": "â ²â â Žâ Žâ ‘â â ¼" }, { "input": "disassembled", "output": "â ²â â Žâ Žâ ‘â â ¼â ™" }, { "input": "disassembles", "output": "â ²â â Žâ Žâ ‘â â ¼â Ž" }, { "input": "disassembling", "output": "â ²â â Žâ Žâ ‘â â ƒâ ‡â Œ" }, { "input": "disassociate", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ ‘" }, { "input": "disassociated", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ «" }, { "input": "disassociates", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ ‘â Ž" }, { "input": "disassociating", "output": "â ²â â Žâ Žâ •⠉⠊â â žâ Œ" }, { "input": "disassociation", "output": "â ²â â Žâ Žâ •⠉⠊⠠â " }, { "input": "disassociation's", "output": "â ²â â Žâ Žâ •⠉⠊⠠â â „â Ž" }, { "input": "disaster", "output": "â ²â â Œâ »" }, { "input": "disaster's", "output": "â ²â â Œâ »â „â Ž" }, { "input": "disasters", "output": "â ²â â Œâ »â Ž" }, { "input": "disastrous", "output": "â ²â â Œâ —⠳⠎" }, { "input": "disastrously", "output": "â ²â â Œâ —⠳⠎⠇⠽" }, { "input": "disavow", "output": "â ²â â §â ª" }, { "input": "disavowal", "output": "â ²â â §â ªâ â ‡" }, { "input": "disavowal's", "output": "â ²â â §â ªâ â ‡â „â Ž" }, { "input": "disavowals", "output": "â ²â â §â ªâ â ‡â Ž" }, { "input": "disavowed", "output": "â ²â â §â ªâ «" }, { "input": "disavowing", "output": "â ²â â §â ªâ Œ" }, { "input": "disavows", "output": "â ²â â §â ªâ Ž" }, { "input": "disband", "output": "⠲⠃⠯" }, { "input": "disbanded", "output": "⠲⠃⠯⠫" }, { "input": "disbanding", "output": "⠲⠃⠯⠌" }, { "input": "disbandment", "output": "⠲⠃⠯⠰⠞" }, { "input": "disbandment's", "output": "⠲⠃⠯⠰⠞⠄⠎" }, { "input": "disbands", "output": "⠲⠃⠯⠎" }, { "input": "disbar", "output": "⠲⠃⠜" }, { "input": "disbarment", "output": "⠲⠃⠜⠰⠞" }, { "input": "disbarment's", "output": "⠲⠃⠜⠰⠞⠄⠎" }, { "input": "disbarred", "output": "⠲⠃⠜⠗⠫" }, { "input": "disbarring", "output": "⠲⠃⠜⠗⠌" }, { "input": "disbars", "output": "⠲⠃⠜⠎" }, { "input": "disbelief", "output": "⠲⠃⠑⠇⠊⠑⠋" }, { "input": "disbelief's", "output": "⠲⠃⠑⠇⠊⠑⠋⠄⠎" }, { "input": "disbelieve", "output": "⠲⠃⠑⠇⠊⠑⠧⠑" }, { "input": "disbelieved", "output": "⠲⠃⠑⠇⠊⠑⠧⠫" }, { "input": "disbeliever", "output": "⠲⠃⠑⠇⠊⠑⠧⠻" }, { "input": "disbeliever's", "output": "⠲⠃⠑⠇⠊⠑⠧⠻⠄⠎" }, { "input": "disbelievers", "output": "⠲⠃⠑⠇⠊⠑⠧⠻⠎" }, { "input": "disbelieves", "output": "⠲⠃⠑⠇⠊⠑⠧⠑⠎" }, { "input": "disbelieving", "output": "⠲⠃⠑⠇⠊⠑⠧⠌" }, { "input": "disbursal", "output": "⠲⠃⠥⠗⠎â â ‡" }, { "input": "disbursal's", "output": "⠲⠃⠥⠗⠎â â ‡â „â Ž" }, { "input": "disburse", "output": "⠲⠃⠥⠗⠎⠑" }, { "input": "disbursed", "output": "⠲⠃⠥⠗⠎⠫" }, { "input": "disbursement", "output": "⠲⠃⠥⠗⠎⠑⠰⠞" }, { "input": "disbursement's", "output": "⠲⠃⠥⠗⠎⠑⠰⠞⠄⠎" }, { "input": "disbursements", "output": "⠲⠃⠥⠗⠎⠑⠰⠞⠎" }, { "input": "disburses", "output": "⠲⠃⠥⠗⠎⠑⠎" }, { "input": "disbursing", "output": "⠲⠃⠥⠗⠎⠌" }, { "input": "disc", "output": "⠙⠊⠎⠉" }, { "input": "disc's", "output": "⠙⠊⠎⠉⠄⠎" }, { "input": "discard", "output": "⠲⠉⠜⠙" }, { "input": "discard's", "output": "⠲⠉⠜⠙⠄⠎" }, { "input": "discarded", "output": "⠲⠉⠜⠙⠫" }, { "input": "discarding", "output": "⠲⠉⠜⠙⠌" }, { "input": "discards", "output": "⠲⠉⠜⠙⠎" }, { "input": "discern", "output": "⠲⠉⠻â " }, { "input": "discerned", "output": "⠲⠉⠻â â «" }, { "input": "discernible", "output": "⠲⠉⠻â â Šâ ¼" }, { "input": "discerning", "output": "⠲⠉⠻â â Œ" }, { "input": "discerningly", "output": "⠲⠉⠻â â Œâ ‡â ½" }, { "input": "discernment", "output": "⠲⠉⠻â â °â ž" }, { "input": "discernment's", "output": "⠲⠉⠻â â °â žâ „â Ž" }, { "input": "discerns", "output": "⠲⠉⠻â â Ž" }, { "input": "discharge", "output": "⠲⠡⠜⠛⠑" }, { "input": "discharge's", "output": "⠲⠡⠜⠛⠑⠄⠎" }, { "input": "discharged", "output": "⠲⠡⠜⠛⠫" }, { "input": "discharges", "output": "⠲⠡⠜⠛⠑⠎" }, { "input": "discharging", "output": "⠲⠡⠜⠛⠌" }, { "input": "disciple", "output": "⠲⠉⠊â â ‡â ‘" }, { "input": "disciple's", "output": "⠲⠉⠊â â ‡â ‘â „â Ž" }, { "input": "disciples", "output": "⠲⠉⠊â â ‡â ‘â Ž" }, { "input": "discipleship", "output": "⠲⠉⠊â â ‡â ‘â ©â Šâ " }, { "input": "discipleship's", "output": "⠲⠉⠊â â ‡â ‘â ©â Šâ â „â Ž" }, { "input": "disciplinarian", "output": "⠲⠉⠊â â ‡â ”⠜⠊â â " }, { "input": "disciplinarian's", "output": "⠲⠉⠊â â ‡â ”⠜⠊â â â „â Ž" }, { "input": "disciplinarians", "output": "⠲⠉⠊â â ‡â ”⠜⠊â â â Ž" }, { "input": "disciplinary", "output": "⠲⠉⠊â â ‡â ”⠜⠽" }, { "input": "discipline", "output": "⠲⠉⠊â â ‡â ”â ‘" }, { "input": "discipline's", "output": "⠲⠉⠊â â ‡â ”â ‘â „â Ž" }, { "input": "disciplined", "output": "⠲⠉⠊â â ‡â ”â «" }, { "input": "disciplines", "output": "⠲⠉⠊â â ‡â ”â ‘â Ž" }, { "input": "disciplining", "output": "⠲⠉⠊â â ‡â ”â Œ" }, { "input": "disclaim", "output": "⠲⠉⠇â â Šâ " }, { "input": "disclaimed", "output": "⠲⠉⠇â â Šâ â «" }, { "input": "disclaimer", "output": "⠲⠉⠇â â Šâ â »" }, { "input": "disclaimer's", "output": "⠲⠉⠇â â Šâ â »â „â Ž" }, { "input": "disclaimers", "output": "⠲⠉⠇â â Šâ â »â Ž" }, { "input": "disclaiming", "output": "⠲⠉⠇â â Šâ â Œ" }, { "input": "disclaims", "output": "⠲⠉⠇â â Šâ â Ž" }, { "input": "disclose", "output": "⠲⠉⠇⠕⠎⠑" }, { "input": "disclosed", "output": "⠲⠉⠇⠕⠎⠫" }, { "input": "discloses", "output": "⠲⠉⠇⠕⠎⠑⠎" }, { "input": "disclosing", "output": "⠲⠉⠇⠕⠎⠌" }, { "input": "disclosure", "output": "⠲⠉⠇⠕⠎⠥⠗⠑" }, { "input": "disclosure's", "output": "⠲⠉⠇⠕⠎⠥⠗⠑⠄⠎" }, { "input": "disclosures", "output": "⠲⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "disco", "output": "⠲⠉⠕" }, { "input": "disco's", "output": "⠲⠉⠕⠄⠎" }, { "input": "discoed", "output": "⠲⠉⠕⠫" }, { "input": "discoing", "output": "⠲⠉⠕⠌" }, { "input": "discolor", "output": "⠲⠉⠕⠇⠕⠗" }, { "input": "discoloration", "output": "⠲⠉⠕⠇⠕⠗⠠â " }, { "input": "discoloration's", "output": "⠲⠉⠕⠇⠕⠗⠠â â „â Ž" }, { "input": "discolorations", "output": "⠲⠉⠕⠇⠕⠗⠠â â Ž" }, { "input": "discolored", "output": "⠲⠉⠕⠇⠕⠗⠫" }, { "input": "discoloring", "output": "⠲⠉⠕⠇⠕⠗⠌" }, { "input": "discolors", "output": "⠲⠉⠕⠇⠕⠗⠎" }, { "input": "discombobulate", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ ‘" }, { "input": "discombobulated", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ «" }, { "input": "discombobulates", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ ‘â Ž" }, { "input": "discombobulating", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇â â žâ Œ" }, { "input": "discombobulation", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇⠠â " }, { "input": "discombobulation's", "output": "⠲⠉⠕â â ƒâ •⠃⠥⠇⠠â â „â Ž" }, { "input": "discomfit", "output": "⠲⠉⠕â â ‹â Šâ ž" }, { "input": "discomfited", "output": "⠲⠉⠕â â ‹â Šâ žâ «" }, { "input": "discomfiting", "output": "⠲⠉⠕â â ‹â Šâ žâ Œ" }, { "input": "discomfits", "output": "⠲⠉⠕â â ‹â Šâ žâ Ž" }, { "input": "discomfiture", "output": "⠲⠉⠕â â ‹â Šâ žâ ¥â —â ‘" }, { "input": "discomfiture's", "output": "⠲⠉⠕â â ‹â Šâ žâ ¥â —â ‘â „â Ž" }, { "input": "discomfort", "output": "⠲⠉⠕â â ¿â ž" }, { "input": "discomfort's", "output": "⠲⠉⠕â â ¿â žâ „â Ž" }, { "input": "discomforted", "output": "⠲⠉⠕â â ¿â žâ «" }, { "input": "discomforting", "output": "⠲⠉⠕â â ¿â žâ Œ" }, { "input": "discomforts", "output": "⠲⠉⠕â â ¿â žâ Ž" }, { "input": "discommode", "output": "⠲⠉⠕â â â •⠙⠑" }, { "input": "discommoded", "output": "⠲⠉⠕â â â •⠙⠫" }, { "input": "discommodes", "output": "⠲⠉⠕â â â •⠙⠑⠎" }, { "input": "discommoding", "output": "⠲⠉⠕â â â •⠙⠌" }, { "input": "discompose", "output": "⠲⠉⠕â â â •â Žâ ‘" }, { "input": "discomposed", "output": "⠲⠉⠕â â â •â Žâ «" }, { "input": "discomposes", "output": "⠲⠉⠕â â â •â Žâ ‘â Ž" }, { "input": "discomposing", "output": "⠲⠉⠕â â â •â Žâ Œ" }, { "input": "discomposure", "output": "⠲⠉⠕â â â •⠎⠥⠗⠑" }, { "input": "discomposure's", "output": "⠲⠉⠕â â â •⠎⠥⠗⠑⠄⠎" }, { "input": "disconcert", "output": "⠲⠉⠕â â ‰â »â ž" }, { "input": "disconcerted", "output": "⠲⠉⠕â â ‰â »â žâ «" }, { "input": "disconcerting", "output": "⠲⠉⠕â â ‰â »â žâ Œ" }, { "input": "disconcerts", "output": "⠲⠉⠕â â ‰â »â žâ Ž" }, { "input": "disconnect", "output": "⠲⠉⠕â â â ‘⠉⠞" }, { "input": "disconnected", "output": "⠲⠉⠕â â â ‘⠉⠞⠫" }, { "input": "disconnectedly", "output": "⠲⠉⠕â â â ‘⠉⠞⠫⠇⠽" }, { "input": "disconnectedness", "output": "⠲⠉⠕â â â ‘⠉⠞⠫⠰⠎" }, { "input": "disconnectedness's", "output": "⠲⠉⠕â â â ‘⠉⠞⠫⠰⠎⠄⠎" }, { "input": "disconnecting", "output": "⠲⠉⠕â â â ‘⠉⠞⠌" }, { "input": "disconnection", "output": "⠲⠉⠕â â â ‘⠉⠰â " }, { "input": "disconnection's", "output": "⠲⠉⠕â â â ‘⠉⠰â â „â Ž" }, { "input": "disconnections", "output": "⠲⠉⠕â â â ‘⠉⠰â â Ž" }, { "input": "disconnects", "output": "⠲⠉⠕â â â ‘⠉⠞⠎" }, { "input": "disconsolate", "output": "⠲⠉⠕â â Žâ •â ‡â â žâ ‘" }, { "input": "disconsolately", "output": "⠲⠉⠕â â Žâ •â ‡â â žâ ‘⠇⠽" }, { "input": "discontent", "output": "⠲⠉⠕â â žâ ¢â ž" }, { "input": "discontent's", "output": "⠲⠉⠕â â žâ ¢â žâ „â Ž" }, { "input": "discontented", "output": "⠲⠉⠕â â žâ ¢â žâ «" }, { "input": "discontentedly", "output": "⠲⠉⠕â â žâ ¢â žâ «â ‡â ½" }, { "input": "discontenting", "output": "⠲⠉⠕â â žâ ¢â žâ Œ" }, { "input": "discontentment", "output": "⠲⠉⠕â â žâ ¢â žâ °â ž" }, { "input": "discontentment's", "output": "⠲⠉⠕â â žâ ¢â žâ °â žâ „â Ž" }, { "input": "discontents", "output": "⠲⠉⠕â â žâ ¢â žâ Ž" }, { "input": "discontinuance", "output": "⠲⠉⠕â â žâ ”⠥⠨⠑" }, { "input": "discontinuance's", "output": "⠲⠉⠕â â žâ ”⠥⠨⠑⠄⠎" }, { "input": "discontinuances", "output": "⠲⠉⠕â â žâ ”⠥⠨⠑⠎" }, { "input": "discontinuation", "output": "⠲⠉⠕â â žâ ”⠥⠠â " }, { "input": "discontinuation's", "output": "⠲⠉⠕â â žâ ”⠥⠠â â „â Ž" }, { "input": "discontinuations", "output": "⠲⠉⠕â â žâ ”⠥⠠â â Ž" }, { "input": "discontinue", "output": "⠲⠉⠕â â žâ ”⠥⠑" }, { "input": "discontinued", "output": "⠲⠉⠕â â žâ ”⠥⠫" }, { "input": "discontinues", "output": "⠲⠉⠕â â žâ ”⠥⠑⠎" }, { "input": "discontinuing", "output": "⠲⠉⠕â â žâ ”⠥⠌" }, { "input": "discontinuities", "output": "⠲⠉⠕â â žâ ”⠥⠊⠞⠊⠑⠎" }, { "input": "discontinuity", "output": "⠲⠉⠕â â žâ ”⠥⠰⠽" }, { "input": "discontinuity's", "output": "⠲⠉⠕â â žâ ”⠥⠰⠽⠄⠎" }, { "input": "discontinuous", "output": "⠲⠉⠕â â žâ ”⠥⠳⠎" }, { "input": "discontinuously", "output": "⠲⠉⠕â â žâ ”⠥⠳⠎⠇⠽" }, { "input": "discord", "output": "⠲⠉⠕⠗⠙" }, { "input": "discord's", "output": "⠲⠉⠕⠗⠙⠄⠎" }, { "input": "discordance", "output": "⠲⠉⠕⠗⠙⠨⠑" }, { "input": "discordance's", "output": "⠲⠉⠕⠗⠙⠨⠑⠄⠎" }, { "input": "discordant", "output": "⠲⠉⠕⠗⠙â â â ž" }, { "input": "discordantly", "output": "⠲⠉⠕⠗⠙â â â žâ ‡â ½" }, { "input": "discorded", "output": "⠲⠉⠕⠗⠙⠫" }, { "input": "discording", "output": "⠲⠉⠕⠗⠙⠌" }, { "input": "discords", "output": "⠲⠉⠕⠗⠙⠎" }, { "input": "discos", "output": "⠲⠉⠕⠎" }, { "input": "discotheque", "output": "⠲⠉⠕⠮⠟⠥⠑" }, { "input": "discotheque's", "output": "⠲⠉⠕⠮⠟⠥⠑⠄⠎" }, { "input": "discotheques", "output": "⠲⠉⠕⠮⠟⠥⠑⠎" }, { "input": "discount", "output": "⠲⠉⠨⠞" }, { "input": "discount's", "output": "⠲⠉⠨⠞⠄⠎" }, { "input": "discounted", "output": "⠲⠉⠨⠞⠫" }, { "input": "discountenance", "output": "⠲⠉⠨⠞⠢⠨⠑" }, { "input": "discountenanced", "output": "⠲⠉⠨⠞⠢⠨⠑⠙" }, { "input": "discountenances", "output": "⠲⠉⠨⠞⠢⠨⠑⠎" }, { "input": "discountenancing", "output": "⠲⠉⠨⠞⠢â â â ‰â Œ" }, { "input": "discounting", "output": "⠲⠉⠨⠞⠌" }, { "input": "discounts", "output": "⠲⠉⠨⠞⠎" }, { "input": "discourage", "output": "⠲⠉⠳⠗â â ›â ‘" }, { "input": "discouraged", "output": "⠲⠉⠳⠗â â ›â «" }, { "input": "discouragement", "output": "⠲⠉⠳⠗â â ›â ‘â °â ž" }, { "input": "discouragement's", "output": "⠲⠉⠳⠗â â ›â ‘â °â žâ „â Ž" }, { "input": "discouragements", "output": "⠲⠉⠳⠗â â ›â ‘â °â žâ Ž" }, { "input": "discourages", "output": "⠲⠉⠳⠗â â ›â ‘â Ž" }, { "input": "discouraging", "output": "⠲⠉⠳⠗â â ›â Œ" }, { "input": "discouragingly", "output": "⠲⠉⠳⠗â â ›â Œâ ‡â ½" }, { "input": "discourse", "output": "⠲⠉⠳⠗⠎⠑" }, { "input": "discourse's", "output": "⠲⠉⠳⠗⠎⠑⠄⠎" }, { "input": "discoursed", "output": "⠲⠉⠳⠗⠎⠫" }, { "input": "discourses", "output": "⠲⠉⠳⠗⠎⠑⠎" }, { "input": "discoursing", "output": "⠲⠉⠳⠗⠎⠌" }, { "input": "discourteous", "output": "⠲⠉⠳⠗⠞⠑⠳⠎" }, { "input": "discourteously", "output": "⠲⠉⠳⠗⠞⠑⠳⠎⠇⠽" }, { "input": "discourtesies", "output": "⠲⠉⠳⠗⠞⠑⠎⠊⠑⠎" }, { "input": "discourtesy", "output": "⠲⠉⠳⠗⠞⠑⠎⠽" }, { "input": "discourtesy's", "output": "⠲⠉⠳⠗⠞⠑⠎⠽⠄⠎" }, { "input": "discover", "output": "⠲⠉⠕⠧⠻" }, { "input": "discovered", "output": "⠲⠉⠕⠧⠻⠫" }, { "input": "discoverer", "output": "⠲⠉⠕⠧⠻⠻" }, { "input": "discoverer's", "output": "⠲⠉⠕⠧⠻⠻⠄⠎" }, { "input": "discoverers", "output": "⠲⠉⠕⠧⠻⠻⠎" }, { "input": "discoveries", "output": "⠲⠉⠕⠧⠻⠊⠑⠎" }, { "input": "discovering", "output": "⠲⠉⠕⠧⠻⠌" }, { "input": "discovers", "output": "⠲⠉⠕⠧⠻⠎" }, { "input": "discovery", "output": "⠲⠉⠕⠧⠻⠽" }, { "input": "discovery's", "output": "⠲⠉⠕⠧⠻⠽⠄⠎" }, { "input": "discredit", "output": "⠲⠉⠗⠫⠊⠞" }, { "input": "discredit's", "output": "⠲⠉⠗⠫⠊⠞⠄⠎" }, { "input": "discreditable", "output": "⠲⠉⠗⠫⠊⠞â â ¼" }, { "input": "discredited", "output": "⠲⠉⠗⠫⠊⠞⠫" }, { "input": "discrediting", "output": "⠲⠉⠗⠫⠊⠞⠌" }, { "input": "discredits", "output": "⠲⠉⠗⠫⠊⠞⠎" }, { "input": "discreet", "output": "⠲⠉⠗⠑⠑⠞" }, { "input": "discreeter", "output": "⠲⠉⠗⠑⠑⠞⠻" }, { "input": "discreetest", "output": "⠲⠉⠗⠑⠑⠞⠑⠌" }, { "input": "discreetly", "output": "⠲⠉⠗⠑⠑⠞⠇⠽" }, { "input": "discreetness", "output": "⠲⠉⠗⠑⠑⠞⠰⠎" }, { "input": "discreetness's", "output": "⠲⠉⠗⠑⠑⠞⠰⠎⠄⠎" }, { "input": "discrepancies", "output": "⠲⠉⠗⠑â â â â ‰â Šâ ‘â Ž" }, { "input": "discrepancy", "output": "⠲⠉⠗⠑â â â â ‰â ½" }, { "input": "discrepancy's", "output": "⠲⠉⠗⠑â â â â ‰â ½â „â Ž" }, { "input": "discrepant", "output": "⠲⠉⠗⠑â â â â ž" }, { "input": "discrete", "output": "⠲⠉⠗⠑⠞⠑" }, { "input": "discreteness's", "output": "⠲⠉⠗⠑⠞⠑⠰⠎⠄⠎" }, { "input": "discretion", "output": "⠲⠉⠗⠑⠰â " }, { "input": "discretion's", "output": "⠲⠉⠗⠑⠰â â „â Ž" }, { "input": "discretionary", "output": "⠲⠉⠗⠑⠰â â œâ ½" }, { "input": "discriminant", "output": "⠲⠉⠗⠊â â ”â â â ž" }, { "input": "discriminate", "output": "⠲⠉⠗⠊â â ”â â žâ ‘" }, { "input": "discriminated", "output": "⠲⠉⠗⠊â â ”â â žâ «" }, { "input": "discriminates", "output": "⠲⠉⠗⠊â â ”â â žâ ‘â Ž" }, { "input": "discriminating", "output": "⠲⠉⠗⠊â â ”â â žâ Œ" }, { "input": "discrimination", "output": "⠲⠉⠗⠊â â ”â  â " }, { "input": "discrimination's", "output": "⠲⠉⠗⠊â â ”â  â â „â Ž" }, { "input": "discriminator", "output": "⠲⠉⠗⠊â â ”â â žâ •â —" }, { "input": "discriminator's", "output": "⠲⠉⠗⠊â â ”â â žâ •â —â „â Ž" }, { "input": "discriminators", "output": "⠲⠉⠗⠊â â ”â â žâ •â —â Ž" }, { "input": "discriminatory", "output": "⠲⠉⠗⠊â â ”â â žâ •â —â ½" }, { "input": "discs", "output": "⠙⠊⠎⠉⠎" }, { "input": "discursive", "output": "⠲⠉⠥⠗⠎⠊⠧⠑" }, { "input": "discursively", "output": "⠲⠉⠥⠗⠎⠊⠧⠑⠇⠽" }, { "input": "discursiveness", "output": "⠲⠉⠥⠗⠎⠊⠧⠑⠰⠎" }, { "input": "discursiveness's", "output": "⠲⠉⠥⠗⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "discus", "output": "⠲⠉⠥⠎" }, { "input": "discus's", "output": "⠲⠉⠥⠎⠄⠎" }, { "input": "discuses", "output": "⠲⠉⠥⠎⠑⠎" }, { "input": "discuss", "output": "⠲⠉⠥⠎⠎" }, { "input": "discussant", "output": "⠲⠉⠥⠎⠎â â â ž" }, { "input": "discussant's", "output": "⠲⠉⠥⠎⠎â â â žâ „â Ž" }, { "input": "discussants", "output": "⠲⠉⠥⠎⠎â â â žâ Ž" }, { "input": "discussed", "output": "⠲⠉⠥⠎⠎⠫" }, { "input": "discusses", "output": "⠲⠉⠥⠎⠎⠑⠎" }, { "input": "discussing", "output": "⠲⠉⠥⠎⠎⠌" }, { "input": "discussion", "output": "⠲⠉⠥⠎⠨â " }, { "input": "discussion's", "output": "⠲⠉⠥⠎⠨â â „â Ž" }, { "input": "discussions", "output": "⠲⠉⠥⠎⠨â â Ž" }, { "input": "disdain", "output": "⠲⠙â â ”" }, { "input": "disdain's", "output": "⠲⠙â â ”â „â Ž" }, { "input": "disdained", "output": "⠲⠙â â ”â «" }, { "input": "disdainful", "output": "⠲⠙â â ”â °â ‡" }, { "input": "disdainfully", "output": "⠲⠙â â ”⠰⠇⠇⠽" }, { "input": "disdaining", "output": "⠲⠙â â ”â Œ" }, { "input": "disdains", "output": "⠲⠙â â ”â Ž" }, { "input": "disease", "output": "⠲⠂⠎⠑" }, { "input": "disease's", "output": "⠲⠂⠎⠑⠄⠎" }, { "input": "diseased", "output": "⠲⠂⠎⠫" }, { "input": "diseases", "output": "⠲⠂⠎⠑⠎" }, { "input": "disembark", "output": "⠲⠑â â ƒâ œâ …" }, { "input": "disembarkation", "output": "⠲⠑â â ƒâ œâ …â  â " }, { "input": "disembarkation's", "output": "⠲⠑â â ƒâ œâ …â  â â „â Ž" }, { "input": "disembarked", "output": "⠲⠑â â ƒâ œâ …â «" }, { "input": "disembarking", "output": "⠲⠑â â ƒâ œâ …â Œ" }, { "input": "disembarks", "output": "⠲⠑â â ƒâ œâ …â Ž" }, { "input": "disembodied", "output": "⠲⠑â â ƒâ •⠙⠊⠫" }, { "input": "disembodies", "output": "⠲⠑â â ƒâ •⠙⠊⠑⠎" }, { "input": "disembodiment", "output": "⠲⠑â â ƒâ •⠙⠊⠰⠞" }, { "input": "disembodiment's", "output": "⠲⠑â â ƒâ •⠙⠊⠰⠞⠄⠎" }, { "input": "disembody", "output": "⠲⠑â â ƒâ •⠙⠽" }, { "input": "disembodying", "output": "⠲⠑â â ƒâ •⠙⠽⠌" }, { "input": "disembowel", "output": "⠲⠑â â ƒâ ªâ ‘â ‡" }, { "input": "disemboweled", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠫" }, { "input": "disemboweling", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠌" }, { "input": "disembowelment", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠰⠞" }, { "input": "disembowelment's", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠰⠞⠄⠎" }, { "input": "disembowels", "output": "⠲⠑â â ƒâ ªâ ‘⠇⠎" }, { "input": "disenchant", "output": "⠲⠢⠡â â â ž" }, { "input": "disenchanted", "output": "⠲⠢⠡â â â žâ «" }, { "input": "disenchanting", "output": "⠲⠢⠡â â â žâ Œ" }, { "input": "disenchantment", "output": "⠲⠢⠡â â â žâ °â ž" }, { "input": "disenchantment's", "output": "⠲⠢⠡â â â žâ °â žâ „â Ž" }, { "input": "disenchants", "output": "⠲⠢⠡â â â žâ Ž" }, { "input": "disencumber", "output": "⠲⠢⠉⠥â â ƒâ »" }, { "input": "disencumbered", "output": "⠲⠢⠉⠥â â ƒâ »â «" }, { "input": "disencumbering", "output": "⠲⠢⠉⠥â â ƒâ »â Œ" }, { "input": "disencumbers", "output": "⠲⠢⠉⠥â â ƒâ »â Ž" }, { "input": "disenfranchise", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘" }, { "input": "disenfranchised", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ «" }, { "input": "disenfranchisement", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘â °â ž" }, { "input": "disenfranchisement's", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘â °â žâ „â Ž" }, { "input": "disenfranchises", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "disenfranchising", "output": "⠲⠢⠋⠗â â â ¡â Šâ Žâ Œ" }, { "input": "disengage", "output": "⠲⠢⠛â â ›â ‘" }, { "input": "disengaged", "output": "⠲⠢⠛â â ›â «" }, { "input": "disengagement", "output": "⠲⠢⠛â â ›â ‘â °â ž" }, { "input": "disengagement's", "output": "⠲⠢⠛â â ›â ‘â °â žâ „â Ž" }, { "input": "disengagements", "output": "⠲⠢⠛â â ›â ‘â °â žâ Ž" }, { "input": "disengages", "output": "⠲⠢⠛â â ›â ‘â Ž" }, { "input": "disengaging", "output": "⠲⠢⠛â â ›â Œ" }, { "input": "disentangle", "output": "⠲⠢⠞â â â ›â ‡â ‘" }, { "input": "disentangled", "output": "⠲⠢⠞â â â ›â ‡â «" }, { "input": "disentanglement", "output": "⠲⠢⠞â â â ›â ‡â ‘â °â ž" }, { "input": "disentanglement's", "output": "⠲⠢⠞â â â ›â ‡â ‘â °â žâ „â Ž" }, { "input": "disentangles", "output": "⠲⠢⠞â â â ›â ‡â ‘â Ž" }, { "input": "disentangling", "output": "⠲⠢⠞â â â ›â ‡â Œ" }, { "input": "disequilibrium's", "output": "⠲⠑⠟⠥⠊⠇⠊⠃⠗⠊⠥â â „â Ž" }, { "input": "disestablish", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©" }, { "input": "disestablished", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â «" }, { "input": "disestablishes", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "disestablishing", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â Œ" }, { "input": "disestablishment's", "output": "⠲⠑⠌â â ƒâ ‡â Šâ ©â °â žâ „â Ž" }, { "input": "disesteem", "output": "⠲⠑⠌⠑⠑â " }, { "input": "disesteem's", "output": "⠲⠑⠌⠑⠑â â „â Ž" }, { "input": "disesteemed", "output": "⠲⠑⠌⠑⠑â â «" }, { "input": "disesteeming", "output": "⠲⠑⠌⠑⠑â â Œ" }, { "input": "disesteems", "output": "⠲⠑⠌⠑⠑â â Ž" }, { "input": "disfavor", "output": "⠲⠋â â §â •â —" }, { "input": "disfavor's", "output": "⠲⠋â â §â •â —â „â Ž" }, { "input": "disfavored", "output": "⠲⠋â â §â •â —â «" }, { "input": "disfavoring", "output": "⠲⠋â â §â •â —â Œ" }, { "input": "disfavors", "output": "⠲⠋â â §â •â —â Ž" }, { "input": "disfigure", "output": "⠲⠋⠊⠛⠥⠗⠑" }, { "input": "disfigured", "output": "⠲⠋⠊⠛⠥⠗⠫" }, { "input": "disfigurement", "output": "⠲⠋⠊⠛⠥⠗⠑⠰⠞" }, { "input": "disfigurement's", "output": "⠲⠋⠊⠛⠥⠗⠑⠰⠞⠄⠎" }, { "input": "disfigurements", "output": "⠲⠋⠊⠛⠥⠗⠑⠰⠞⠎" }, { "input": "disfigures", "output": "⠲⠋⠊⠛⠥⠗⠑⠎" }, { "input": "disfiguring", "output": "⠲⠋⠊⠛⠥⠗⠌" }, { "input": "disfranchise", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘" }, { "input": "disfranchised", "output": "⠲⠋⠗â â â ¡â Šâ Žâ «" }, { "input": "disfranchisement", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘â °â ž" }, { "input": "disfranchisement's", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘â °â žâ „â Ž" }, { "input": "disfranchises", "output": "⠲⠋⠗â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "disfranchising", "output": "⠲⠋⠗â â â ¡â Šâ Žâ Œ" }, { "input": "disgorge", "output": "⠲⠛⠕⠗⠛⠑" }, { "input": "disgorged", "output": "⠲⠛⠕⠗⠛⠫" }, { "input": "disgorgement", "output": "⠲⠛⠕⠗⠛⠑⠰⠞" }, { "input": "disgorgement's", "output": "⠲⠛⠕⠗⠛⠑⠰⠞⠄⠎" }, { "input": "disgorges", "output": "⠲⠛⠕⠗⠛⠑⠎" }, { "input": "disgorging", "output": "⠲⠛⠕⠗⠛⠌" }, { "input": "disgrace", "output": "⠲⠛⠗â â ‰â ‘" }, { "input": "disgrace's", "output": "⠲⠛⠗â â ‰â ‘â „â Ž" }, { "input": "disgraced", "output": "⠲⠛⠗â â ‰â «" }, { "input": "disgraceful", "output": "⠲⠛⠗â â ‰â ‘â °â ‡" }, { "input": "disgracefully", "output": "⠲⠛⠗â â ‰â ‘⠰⠇⠇⠽" }, { "input": "disgracefulness", "output": "⠲⠛⠗â â ‰â ‘⠰⠇⠰⠎" }, { "input": "disgracefulness's", "output": "⠲⠛⠗â â ‰â ‘⠰⠇⠰⠎⠄⠎" }, { "input": "disgraces", "output": "⠲⠛⠗â â ‰â ‘â Ž" }, { "input": "disgracing", "output": "⠲⠛⠗â â ‰â Œ" }, { "input": "disgruntle", "output": "⠲⠛⠗⠥â â žâ ‡â ‘" }, { "input": "disgruntled", "output": "⠲⠛⠗⠥â â žâ ‡â «" }, { "input": "disgruntlement", "output": "⠲⠛⠗⠥â â žâ ‡â ‘â °â ž" }, { "input": "disgruntlement's", "output": "⠲⠛⠗⠥â â žâ ‡â ‘â °â žâ „â Ž" }, { "input": "disgruntles", "output": "⠲⠛⠗⠥â â žâ ‡â ‘â Ž" }, { "input": "disgruntling", "output": "⠲⠛⠗⠥â â žâ ‡â Œ" }, { "input": "disguise", "output": "⠲⠛⠥⠊⠎⠑" }, { "input": "disguise's", "output": "⠲⠛⠥⠊⠎⠑⠄⠎" }, { "input": "disguised", "output": "⠲⠛⠥⠊⠎⠫" }, { "input": "disguises", "output": "⠲⠛⠥⠊⠎⠑⠎" }, { "input": "disguising", "output": "⠲⠛⠥⠊⠎⠌" }, { "input": "disgust", "output": "⠲⠛⠥⠌" }, { "input": "disgust's", "output": "⠲⠛⠥⠌⠄⠎" }, { "input": "disgusted", "output": "⠲⠛⠥⠌⠫" }, { "input": "disgustedly", "output": "⠲⠛⠥⠌⠫⠇⠽" }, { "input": "disgusting", "output": "⠲⠛⠥⠌⠌" }, { "input": "disgustingly", "output": "⠲⠛⠥⠌⠌⠇⠽" }, { "input": "disgusts", "output": "⠲⠛⠥⠌⠎" }, { "input": "dish", "output": "⠙⠊⠩" }, { "input": "dish's", "output": "⠙⠊⠩⠄⠎" }, { "input": "dishabille", "output": "⠲⠓â â ƒâ Šâ ‡â ‡â ‘" }, { "input": "dishabille's", "output": "⠲⠓â â ƒâ Šâ ‡â ‡â ‘â „â Ž" }, { "input": "disharmonious", "output": "⠲⠓⠜â â •â â Šâ ³â Ž" }, { "input": "disharmony", "output": "⠲⠓⠜â â •â â ½" }, { "input": "disharmony's", "output": "⠲⠓⠜â â •â â ½â „â Ž" }, { "input": "dishcloth", "output": "⠙⠊⠩⠉⠇⠕⠹" }, { "input": "dishcloth's", "output": "⠙⠊⠩⠉⠇⠕⠹⠄⠎" }, { "input": "dishcloths", "output": "⠙⠊⠩⠉⠇⠕⠹⠎" }, { "input": "dishearten", "output": "⠲⠓⠑⠜⠞⠢" }, { "input": "disheartened", "output": "⠲⠓⠑⠜⠞⠢⠫" }, { "input": "disheartening", "output": "⠲⠓⠑⠜⠞⠢⠌" }, { "input": "dishearteningly", "output": "⠲⠓⠑⠜⠞⠢⠌⠇⠽" }, { "input": "disheartens", "output": "⠲⠓⠑⠜⠞⠢⠎" }, { "input": "dished", "output": "⠙⠊⠩⠫" }, { "input": "dishes", "output": "⠙⠊⠩⠑⠎" }, { "input": "dishevel", "output": "⠙⠊⠩⠑⠧⠑⠇" }, { "input": "disheveled", "output": "⠙⠊⠩⠑⠧⠑⠇⠫" }, { "input": "disheveling", "output": "⠙⠊⠩⠑⠧⠑⠇⠌" }, { "input": "dishevelment", "output": "⠙⠊⠩⠑⠧⠑⠇⠰⠞" }, { "input": "dishevelment's", "output": "⠙⠊⠩⠑⠧⠑⠇⠰⠞⠄⠎" }, { "input": "dishevels", "output": "⠙⠊⠩⠑⠧⠑⠇⠎" }, { "input": "dishing", "output": "⠙⠊⠩⠌" }, { "input": "dishonest", "output": "⠲⠓â â •â Œ" }, { "input": "dishonestly", "output": "⠲⠓â â •⠌⠇⠽" }, { "input": "dishonesty", "output": "⠲⠓â â •⠌⠽" }, { "input": "dishonesty's", "output": "⠲⠓â â •⠌⠽⠄⠎" }, { "input": "dishonor", "output": "⠲⠓⠕â â •â —" }, { "input": "dishonor's", "output": "⠲⠓⠕â â •â —â „â Ž" }, { "input": "dishonorable", "output": "⠲⠓⠕â â •â —â â ¼" }, { "input": "dishonorably", "output": "⠲⠓⠕â â •â —â â ƒâ ‡â ½" }, { "input": "dishonored", "output": "⠲⠓⠕â â •â —â «" }, { "input": "dishonoring", "output": "⠲⠓⠕â â •â —â Œ" }, { "input": "dishonors", "output": "⠲⠓⠕â â •â —â Ž" }, { "input": "dishpan", "output": "⠙⠊⠩â â â " }, { "input": "dishpan's", "output": "⠙⠊⠩â â â â „â Ž" }, { "input": "dishpans", "output": "⠙⠊⠩â â â â Ž" }, { "input": "dishrag", "output": "⠙⠊⠩⠗â â ›" }, { "input": "dishrag's", "output": "⠙⠊⠩⠗â â ›â „â Ž" }, { "input": "dishrags", "output": "⠙⠊⠩⠗â â ›â Ž" }, { "input": "dishtowel", "output": "⠙⠊⠩⠞⠪⠑⠇" }, { "input": "dishtowel's", "output": "⠙⠊⠩⠞⠪⠑⠇⠄⠎" }, { "input": "dishtowels", "output": "⠙⠊⠩⠞⠪⠑⠇⠎" }, { "input": "dishware", "output": "⠙⠊⠩⠺⠜⠑" }, { "input": "dishware's", "output": "⠙⠊⠩⠺⠜⠑⠄⠎" }, { "input": "dishwasher", "output": "⠙⠊⠩⠺â â ©â »" }, { "input": "dishwasher's", "output": "⠙⠊⠩⠺â â ©â »â „â Ž" }, { "input": "dishwashers", "output": "⠙⠊⠩⠺â â ©â »â Ž" }, { "input": "dishwater", "output": "⠙⠊⠩⠺â â žâ »" }, { "input": "dishwater's", "output": "⠙⠊⠩⠺â â žâ »â „â Ž" }, { "input": "disillusion", "output": "⠲⠊⠇⠇⠥⠨â " }, { "input": "disillusion's", "output": "⠲⠊⠇⠇⠥⠨â â „â Ž" }, { "input": "disillusioned", "output": "⠲⠊⠇⠇⠥⠨â â «" }, { "input": "disillusioning", "output": "⠲⠊⠇⠇⠥⠨â â Œ" }, { "input": "disillusionment", "output": "⠲⠊⠇⠇⠥⠨â â °â ž" }, { "input": "disillusionment's", "output": "⠲⠊⠇⠇⠥⠨â â °â žâ „â Ž" }, { "input": "disillusions", "output": "⠲⠊⠇⠇⠥⠨â â Ž" }, { "input": "disincentive", "output": "⠲⠔⠉⠢⠞⠊⠧⠑" }, { "input": "disinclination", "output": "⠲⠔⠉⠇⠔⠠â " }, { "input": "disinclination's", "output": "⠲⠔⠉⠇⠔⠠â â „â Ž" }, { "input": "disincline", "output": "⠲⠔⠉⠇⠔⠑" }, { "input": "disinclined", "output": "⠲⠔⠉⠇⠔⠫" }, { "input": "disinclines", "output": "⠲⠔⠉⠇⠔⠑⠎" }, { "input": "disinclining", "output": "⠲⠔⠉⠇⠔⠌" }, { "input": "disinfect", "output": "⠲⠔⠋⠑⠉⠞" }, { "input": "disinfectant", "output": "⠲⠔⠋⠑⠉⠞â â â ž" }, { "input": "disinfectant's", "output": "⠲⠔⠋⠑⠉⠞â â â žâ „â Ž" }, { "input": "disinfectants", "output": "⠲⠔⠋⠑⠉⠞â â â žâ Ž" }, { "input": "disinfected", "output": "⠲⠔⠋⠑⠉⠞⠫" }, { "input": "disinfecting", "output": "⠲⠔⠋⠑⠉⠞⠌" }, { "input": "disinfection", "output": "⠲⠔⠋⠑⠉⠰â " }, { "input": "disinfection's", "output": "⠲⠔⠋⠑⠉⠰â â „â Ž" }, { "input": "disinfects", "output": "⠲⠔⠋⠑⠉⠞⠎" }, { "input": "disinflation", "output": "⠲⠔⠋⠇⠠â " }, { "input": "disinflation's", "output": "⠲⠔⠋⠇⠠â â „â Ž" }, { "input": "disinformation", "output": "⠲⠔⠿â â  â " }, { "input": "disinformation's", "output": "⠲⠔⠿â â  â â „â Ž" }, { "input": "disingenuous", "output": "⠲⠔⠛⠢⠥⠳⠎" }, { "input": "disinherit", "output": "⠲⠔⠓⠻⠊⠞" }, { "input": "disinheritance", "output": "⠲⠔⠓⠻⠊⠞⠨⠑" }, { "input": "disinheritance's", "output": "⠲⠔⠓⠻⠊⠞⠨⠑⠄⠎" }, { "input": "disinherited", "output": "⠲⠔⠓⠻⠊⠞⠫" }, { "input": "disinheriting", "output": "⠲⠔⠓⠻⠊⠞⠌" }, { "input": "disinherits", "output": "⠲⠔⠓⠻⠊⠞⠎" }, { "input": "disintegrate", "output": "⠲⠔⠞⠑⠛⠗â â žâ ‘" }, { "input": "disintegrated", "output": "⠲⠔⠞⠑⠛⠗â â žâ «" }, { "input": "disintegrates", "output": "⠲⠔⠞⠑⠛⠗â â žâ ‘â Ž" }, { "input": "disintegrating", "output": "⠲⠔⠞⠑⠛⠗â â žâ Œ" }, { "input": "disintegration", "output": "⠲⠔⠞⠑⠛⠗⠠â " }, { "input": "disintegration's", "output": "⠲⠔⠞⠑⠛⠗⠠â â „â Ž" }, { "input": "disinter", "output": "⠲⠔⠞⠻" }, { "input": "disinterest", "output": "⠲⠔⠞⠻⠑⠌" }, { "input": "disinterest's", "output": "⠲⠔⠞⠻⠑⠌⠄⠎" }, { "input": "disinterested", "output": "⠲⠔⠞⠻⠑⠌⠫" }, { "input": "disinterestedly", "output": "⠲⠔⠞⠻⠑⠌⠫⠇⠽" }, { "input": "disinterestedness", "output": "⠲⠔⠞⠻⠑⠌⠫⠰⠎" }, { "input": "disinterestedness's", "output": "⠲⠔⠞⠻⠑⠌⠫⠰⠎⠄⠎" }, { "input": "disinterests", "output": "⠲⠔⠞⠻⠑⠌⠎" }, { "input": "disinterment", "output": "⠲⠔⠞⠻⠰⠞" }, { "input": "disinterment's", "output": "⠲⠔⠞⠻⠰⠞⠄⠎" }, { "input": "disinterred", "output": "⠲⠔⠞⠻⠗⠫" }, { "input": "disinterring", "output": "⠲⠔⠞⠻⠗⠌" }, { "input": "disinters", "output": "⠲⠔⠞⠻⠎" }, { "input": "disinvestment's", "output": "⠲⠔⠧⠑⠌⠰⠞⠄⠎" }, { "input": "disjoint", "output": "⠲⠚⠕⠔⠞" }, { "input": "disjointed", "output": "⠲⠚⠕⠔⠞⠫" }, { "input": "disjointedly", "output": "⠲⠚⠕⠔⠞⠫⠇⠽" }, { "input": "disjointedness", "output": "⠲⠚⠕⠔⠞⠫⠰⠎" }, { "input": "disjointedness's", "output": "⠲⠚⠕⠔⠞⠫⠰⠎⠄⠎" }, { "input": "disjointing", "output": "⠲⠚⠕⠔⠞⠌" }, { "input": "disjoints", "output": "⠲⠚⠕⠔⠞⠎" }, { "input": "disjunctive", "output": "⠲⠚⠥â â ‰â žâ Šâ §â ‘" }, { "input": "disk", "output": "⠙⠊⠎⠅" }, { "input": "disk's", "output": "⠙⠊⠎⠅⠄⠎" }, { "input": "diskette", "output": "⠙⠊⠎⠅⠑⠞⠞⠑" }, { "input": "diskette's", "output": "⠙⠊⠎⠅⠑⠞⠞⠑⠄⠎" }, { "input": "diskettes", "output": "⠙⠊⠎⠅⠑⠞⠞⠑⠎" }, { "input": "disks", "output": "⠙⠊⠎⠅⠎" }, { "input": "dislike", "output": "⠲⠇⠊⠅⠑" }, { "input": "dislike's", "output": "⠲⠇⠊⠅⠑⠄⠎" }, { "input": "disliked", "output": "⠲⠇⠊⠅⠫" }, { "input": "dislikes", "output": "⠲⠇⠊⠅⠑⠎" }, { "input": "disliking", "output": "⠲⠇⠊⠅⠌" }, { "input": "dislocate", "output": "⠲⠇⠕⠉â â žâ ‘" }, { "input": "dislocated", "output": "⠲⠇⠕⠉â â žâ «" }, { "input": "dislocates", "output": "⠲⠇⠕⠉â â žâ ‘â Ž" }, { "input": "dislocating", "output": "⠲⠇⠕⠉â â žâ Œ" }, { "input": "dislocation", "output": "⠲⠇⠕⠉⠠â " }, { "input": "dislocation's", "output": "⠲⠇⠕⠉⠠â â „â Ž" }, { "input": "dislocations", "output": "⠲⠇⠕⠉⠠â â Ž" }, { "input": "dislodge", "output": "⠲⠇⠕⠙⠛⠑" }, { "input": "dislodged", "output": "⠲⠇⠕⠙⠛⠫" }, { "input": "dislodges", "output": "⠲⠇⠕⠙⠛⠑⠎" }, { "input": "dislodging", "output": "⠲⠇⠕⠙⠛⠌" }, { "input": "disloyal", "output": "⠲⠇⠕⠽â â ‡" }, { "input": "disloyally", "output": "⠲⠇⠕⠽⠠⠽" }, { "input": "disloyalty", "output": "⠲⠇⠕⠽â â ‡â žâ ½" }, { "input": "disloyalty's", "output": "⠲⠇⠕⠽â â ‡â žâ ½â „â Ž" }, { "input": "dismal", "output": "â ²â â â ‡" }, { "input": "dismally", "output": "â ²â â  â ½" }, { "input": "dismantle", "output": "â ²â â â â žâ ‡â ‘" }, { "input": "dismantled", "output": "â ²â â â â žâ ‡â «" }, { "input": "dismantlement", "output": "â ²â â â â žâ ‡â ‘â °â ž" }, { "input": "dismantlement's", "output": "â ²â â â â žâ ‡â ‘â °â žâ „â Ž" }, { "input": "dismantles", "output": "â ²â â â â žâ ‡â ‘â Ž" }, { "input": "dismantling", "output": "â ²â â â â žâ ‡â Œ" }, { "input": "dismay", "output": "â ²â â â ½" }, { "input": "dismay's", "output": "â ²â â â ½â „â Ž" }, { "input": "dismayed", "output": "â ²â â â ½â «" }, { "input": "dismaying", "output": "â ²â â â ½â Œ" }, { "input": "dismays", "output": "â ²â â â ½â Ž" }, { "input": "dismember", "output": "â ²â â ‘â â ƒâ »" }, { "input": "dismembered", "output": "â ²â â ‘â â ƒâ »â «" }, { "input": "dismembering", "output": "â ²â â ‘â â ƒâ »â Œ" }, { "input": "dismemberment", "output": "â ²â â ‘â â ƒâ »â °â ž" }, { "input": "dismemberment's", "output": "â ²â â ‘â â ƒâ »â °â žâ „â Ž" }, { "input": "dismembers", "output": "â ²â â ‘â â ƒâ »â Ž" }, { "input": "dismiss", "output": "â ²â â Šâ Žâ Ž" }, { "input": "dismissal", "output": "â ²â â Šâ Žâ Žâ â ‡" }, { "input": "dismissal's", "output": "â ²â â Šâ Žâ Žâ â ‡â „â Ž" }, { "input": "dismissals", "output": "â ²â â Šâ Žâ Žâ â ‡â Ž" }, { "input": "dismissed", "output": "â ²â â Šâ Žâ Žâ «" }, { "input": "dismisses", "output": "â ²â â Šâ Žâ Žâ ‘â Ž" }, { "input": "dismissing", "output": "â ²â â Šâ Žâ Žâ Œ" }, { "input": "dismissive", "output": "â ²â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "dismount", "output": "â ²â â ¨â ž" }, { "input": "dismount's", "output": "â ²â â ¨â žâ „â Ž" }, { "input": "dismounted", "output": "â ²â â ¨â žâ «" }, { "input": "dismounting", "output": "â ²â â ¨â žâ Œ" }, { "input": "dismounts", "output": "â ²â â ¨â žâ Ž" }, { "input": "disobedience", "output": "⠲⠕⠃⠫⠊⠰⠑" }, { "input": "disobedience's", "output": "⠲⠕⠃⠫⠊⠰⠑⠄⠎" }, { "input": "disobedient", "output": "⠲⠕⠃⠫⠊⠢⠞" }, { "input": "disobediently", "output": "⠲⠕⠃⠫⠊⠢⠞⠇⠽" }, { "input": "disobey", "output": "⠲⠕⠃⠑⠽" }, { "input": "disobeyed", "output": "⠲⠕⠃⠑⠽⠫" }, { "input": "disobeying", "output": "⠲⠕⠃⠑⠽⠌" }, { "input": "disobeys", "output": "⠲⠕⠃⠑⠽⠎" }, { "input": "disoblige", "output": "⠲⠕⠃⠇⠊⠛⠑" }, { "input": "disobliged", "output": "⠲⠕⠃⠇⠊⠛⠫" }, { "input": "disobliges", "output": "⠲⠕⠃⠇⠊⠛⠑⠎" }, { "input": "disobliging", "output": "⠲⠕⠃⠇⠊⠛⠌" }, { "input": "disorder", "output": "⠲⠕⠗⠙⠻" }, { "input": "disorder's", "output": "⠲⠕⠗⠙⠻⠄⠎" }, { "input": "disordered", "output": "⠲⠕⠗⠙⠻⠫" }, { "input": "disordering", "output": "⠲⠕⠗⠙⠻⠌" }, { "input": "disorderliness", "output": "⠲⠕⠗⠙⠻⠇⠊⠰⠎" }, { "input": "disorderliness's", "output": "⠲⠕⠗⠙⠻⠇⠊⠰⠎⠄⠎" }, { "input": "disorderly", "output": "⠲⠕⠗⠙⠻⠇⠽" }, { "input": "disorders", "output": "⠲⠕⠗⠙⠻⠎" }, { "input": "disorganization", "output": "⠲⠕⠗⠛â â â Šâ µâ  â " }, { "input": "disorganization's", "output": "⠲⠕⠗⠛â â â Šâ µâ  â â „â Ž" }, { "input": "disorganize", "output": "⠲⠕⠗⠛â â â Šâ µâ ‘" }, { "input": "disorganized", "output": "⠲⠕⠗⠛â â â Šâ µâ «" }, { "input": "disorganizes", "output": "⠲⠕⠗⠛â â â Šâ µâ ‘â Ž" }, { "input": "disorganizing", "output": "⠲⠕⠗⠛â â â Šâ µâ Œ" }, { "input": "disorient", "output": "⠲⠕⠗⠊⠢⠞" }, { "input": "disorientation", "output": "⠲⠕⠗⠊⠢⠞⠠â " }, { "input": "disorientation's", "output": "⠲⠕⠗⠊⠢⠞⠠â â „â Ž" }, { "input": "disoriented", "output": "⠲⠕⠗⠊⠢⠞⠫" }, { "input": "disorienting", "output": "⠲⠕⠗⠊⠢⠞⠌" }, { "input": "disorients", "output": "⠲⠕⠗⠊⠢⠞⠎" }, { "input": "disown", "output": "⠲⠪â " }, { "input": "disowned", "output": "⠲⠪â â «" }, { "input": "disowning", "output": "⠲⠪â â Œ" }, { "input": "disowns", "output": "⠲⠪â â Ž" }, { "input": "disparage", "output": "â ²â â œâ â ›â ‘" }, { "input": "disparaged", "output": "â ²â â œâ â ›â «" }, { "input": "disparagement", "output": "â ²â â œâ â ›â ‘â °â ž" }, { "input": "disparagement's", "output": "â ²â â œâ â ›â ‘â °â žâ „â Ž" }, { "input": "disparages", "output": "â ²â â œâ â ›â ‘â Ž" }, { "input": "disparaging", "output": "â ²â â œâ â ›â Œ" }, { "input": "disparate", "output": "â ²â â œâ â žâ ‘" }, { "input": "disparately", "output": "â ²â â œâ â žâ ‘⠇⠽" }, { "input": "disparities", "output": "â ²â â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "disparity", "output": "â ²â â œâ °â ½" }, { "input": "disparity's", "output": "â ²â â œâ °â ½â „â Ž" }, { "input": "dispassion", "output": "â ²â â â Žâ ¨â " }, { "input": "dispassion's", "output": "â ²â â â Žâ ¨â â „â Ž" }, { "input": "dispassionate", "output": "â ²â â â Žâ ¨â â â žâ ‘" }, { "input": "dispassionately", "output": "â ²â â â Žâ ¨â â â žâ ‘⠇⠽" }, { "input": "dispatch", "output": "â ²â â â žâ ¡" }, { "input": "dispatch's", "output": "â ²â â â žâ ¡â „â Ž" }, { "input": "dispatched", "output": "â ²â â â žâ ¡â «" }, { "input": "dispatcher", "output": "â ²â â â žâ ¡â »" }, { "input": "dispatcher's", "output": "â ²â â â žâ ¡â »â „â Ž" }, { "input": "dispatchers", "output": "â ²â â â žâ ¡â »â Ž" }, { "input": "dispatches", "output": "â ²â â â žâ ¡â ‘â Ž" }, { "input": "dispatching", "output": "â ²â â â žâ ¡â Œ" }, { "input": "dispel", "output": "â ²â â ‘â ‡" }, { "input": "dispelled", "output": "â ²â â ‘⠇⠇⠫" }, { "input": "dispelling", "output": "â ²â â ‘⠇⠇⠌" }, { "input": "dispels", "output": "â ²â â ‘⠇⠎" }, { "input": "dispensable", "output": "â ²â â ¢â Žâ â ¼" }, { "input": "dispensaries", "output": "â ²â â ¢â Žâ œâ Šâ ‘â Ž" }, { "input": "dispensary", "output": "â ²â â ¢â Žâ œâ ½" }, { "input": "dispensary's", "output": "â ²â â ¢â Žâ œâ ½â „â Ž" }, { "input": "dispensation", "output": "â ²â â ¢â Žâ  â " }, { "input": "dispensation's", "output": "â ²â â ¢â Žâ  â â „â Ž" }, { "input": "dispensations", "output": "â ²â â ¢â Žâ  â â Ž" }, { "input": "dispense", "output": "â ²â â ¢â Žâ ‘" }, { "input": "dispensed", "output": "â ²â â ¢â Žâ «" }, { "input": "dispenser", "output": "â ²â â ¢â Žâ »" }, { "input": "dispenser's", "output": "â ²â â ¢â Žâ »â „â Ž" }, { "input": "dispensers", "output": "â ²â â ¢â Žâ »â Ž" }, { "input": "dispenses", "output": "â ²â â ¢â Žâ ‘â Ž" }, { "input": "dispensing", "output": "â ²â â ¢â Žâ Œ" }, { "input": "dispersal", "output": "â ²â â »â Žâ â ‡" }, { "input": "dispersal's", "output": "â ²â â »â Žâ â ‡â „â Ž" }, { "input": "disperse", "output": "â ²â â »â Žâ ‘" }, { "input": "dispersed", "output": "â ²â â »â Žâ «" }, { "input": "disperses", "output": "â ²â â »â Žâ ‘â Ž" }, { "input": "dispersing", "output": "â ²â â »â Žâ Œ" }, { "input": "dispersion", "output": "â ²â â »â ¨â " }, { "input": "dispersion's", "output": "â ²â â »â ¨â â „â Ž" }, { "input": "dispirit", "output": "⠙⠊⠸⠎" }, { "input": "dispirited", "output": "⠙⠊⠸⠎⠫" }, { "input": "dispiriting", "output": "⠙⠊⠸⠎⠌" }, { "input": "dispirits", "output": "⠙⠊⠸⠎⠎" }, { "input": "displace", "output": "â ²â â ‡â â ‰â ‘" }, { "input": "displaced", "output": "â ²â â ‡â â ‰â «" }, { "input": "displacement", "output": "â ²â â ‡â â ‰â ‘â °â ž" }, { "input": "displacement's", "output": "â ²â â ‡â â ‰â ‘â °â žâ „â Ž" }, { "input": "displacements", "output": "â ²â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "displaces", "output": "â ²â â ‡â â ‰â ‘â Ž" }, { "input": "displacing", "output": "â ²â â ‡â â ‰â Œ" }, { "input": "display", "output": "â ²â â ‡â â ½" }, { "input": "display's", "output": "â ²â â ‡â â ½â „â Ž" }, { "input": "displayable", "output": "â ²â â ‡â â ½â â ¼" }, { "input": "displayed", "output": "â ²â â ‡â â ½â «" }, { "input": "displaying", "output": "â ²â â ‡â â ½â Œ" }, { "input": "displays", "output": "â ²â â ‡â â ½â Ž" }, { "input": "displease", "output": "â ²â â ‡â ‚â Žâ ‘" }, { "input": "displeased", "output": "â ²â â ‡â ‚â Žâ «" }, { "input": "displeases", "output": "â ²â â ‡â ‚â Žâ ‘â Ž" }, { "input": "displeasing", "output": "â ²â â ‡â ‚â Žâ Œ" }, { "input": "displeasure", "output": "â ²â â ‡â ‚⠎⠥⠗⠑" }, { "input": "displeasure's", "output": "â ²â â ‡â ‚⠎⠥⠗⠑⠄⠎" }, { "input": "disport", "output": "â ²â â •â —â ž" }, { "input": "disported", "output": "â ²â â •â —â žâ «" }, { "input": "disporting", "output": "â ²â â •â —â žâ Œ" }, { "input": "disports", "output": "â ²â â •â —â žâ Ž" }, { "input": "disposable", "output": "â ²â â •â Žâ â ¼" }, { "input": "disposable's", "output": "â ²â â •â Žâ â ¼â „â Ž" }, { "input": "disposables", "output": "â ²â â •â Žâ â ¼â Ž" }, { "input": "disposal", "output": "â ²â â •â Žâ â ‡" }, { "input": "disposal's", "output": "â ²â â •â Žâ â ‡â „â Ž" }, { "input": "disposals", "output": "â ²â â •â Žâ â ‡â Ž" }, { "input": "dispose", "output": "â ²â â •â Žâ ‘" }, { "input": "disposed", "output": "â ²â â •â Žâ «" }, { "input": "disposer", "output": "â ²â â •â Žâ »" }, { "input": "disposer's", "output": "â ²â â •⠎⠻⠄⠎" }, { "input": "disposers", "output": "â ²â â •⠎⠻⠎" }, { "input": "disposes", "output": "â ²â â •â Žâ ‘â Ž" }, { "input": "disposing", "output": "â ²â â •â Žâ Œ" }, { "input": "disposition", "output": "â ²â â •â Žâ Šâ °â " }, { "input": "disposition's", "output": "â ²â â •â Žâ Šâ °â â „â Ž" }, { "input": "dispositions", "output": "â ²â â •â Žâ Šâ °â â Ž" }, { "input": "dispossess", "output": "â ²â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "dispossessed", "output": "â ²â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "dispossesses", "output": "â ²â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "dispossessing", "output": "â ²â â •â Žâ Žâ ‘â Žâ Žâ Œ" }, { "input": "dispossession", "output": "â ²â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "dispossession's", "output": "â ²â â •â Žâ Žâ ‘â Žâ ¨â â „â Ž" }, { "input": "dispraise", "output": "â ²â â —â â Šâ Žâ ‘" }, { "input": "dispraise's", "output": "â ²â â —â â Šâ Žâ ‘â „â Ž" }, { "input": "dispraised", "output": "â ²â â —â â Šâ Žâ «" }, { "input": "dispraises", "output": "â ²â â —â â Šâ Žâ ‘â Ž" }, { "input": "dispraising", "output": "â ²â â —â â Šâ Žâ Œ" }, { "input": "disproof", "output": "â ²â â —â •â ·" }, { "input": "disproof's", "output": "â ²â â —â •â ·â „â Ž" }, { "input": "disproofs", "output": "â ²â â —â •â ·â Ž" }, { "input": "disproportion", "output": "â ²â â —â •â â •â —â °â " }, { "input": "disproportion's", "output": "â ²â â —â •â â •â —â °â â „â Ž" }, { "input": "disproportional", "output": "â ²â â —â •â â •â —â °â â â ‡" }, { "input": "disproportionate", "output": "â ²â â —â •â â •â —â °â â â žâ ‘" }, { "input": "disproportionately", "output": "â ²â â —â •â â •â —â °â â â žâ ‘⠇⠽" }, { "input": "disproportions", "output": "â ²â â —â •â â •â —â °â â Ž" }, { "input": "disprovable", "output": "â ²â â —â •â §â â ¼" }, { "input": "disprove", "output": "â ²â â —â •â §â ‘" }, { "input": "disproved", "output": "â ²â â —â •â §â «" }, { "input": "disproves", "output": "â ²â â —â •â §â ‘â Ž" }, { "input": "disproving", "output": "â ²â â —â •â §â Œ" }, { "input": "disputable", "output": "â ²â â ¥â žâ â ¼" }, { "input": "disputably", "output": "â ²â â ¥â žâ â ƒâ ‡â ½" }, { "input": "disputant", "output": "â ²â â ¥â žâ â â ž" }, { "input": "disputant's", "output": "â ²â â ¥â žâ â â žâ „â Ž" }, { "input": "disputants", "output": "â ²â â ¥â žâ â â žâ Ž" }, { "input": "disputation", "output": "â ²â â ¥â žâ  â " }, { "input": "disputation's", "output": "â ²â â ¥â žâ  â â „â Ž" }, { "input": "disputations", "output": "â ²â â ¥â žâ  â â Ž" }, { "input": "disputatious", "output": "â ²â â ¥â žâ â žâ Šâ ³â Ž" }, { "input": "disputatiously", "output": "â ²â â ¥â žâ â žâ Šâ ³â Žâ ‡â ½" }, { "input": "dispute", "output": "â ²â â ¥â žâ ‘" }, { "input": "dispute's", "output": "â ²â â ¥â žâ ‘â „â Ž" }, { "input": "disputed", "output": "â ²â â ¥â žâ «" }, { "input": "disputer", "output": "â ²â â ¥â žâ »" }, { "input": "disputer's", "output": "â ²â â ¥â žâ »â „â Ž" }, { "input": "disputers", "output": "â ²â â ¥â žâ »â Ž" }, { "input": "disputes", "output": "â ²â â ¥â žâ ‘â Ž" }, { "input": "disputing", "output": "â ²â â ¥â žâ Œ" }, { "input": "disqualification", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "disqualification's", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "disqualifications", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "disqualified", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ «" }, { "input": "disqualifies", "output": "⠲⠟⠥â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "disqualify", "output": "⠲⠟⠥â â ‡â Šâ ‹â ½" }, { "input": "disqualifying", "output": "⠲⠟⠥â â ‡â Šâ ‹â ½â Œ" }, { "input": "disquiet", "output": "⠲⠟⠥⠊⠑⠞" }, { "input": "disquiet's", "output": "⠲⠟⠥⠊⠑⠞⠄⠎" }, { "input": "disquieted", "output": "⠲⠟⠥⠊⠑⠞⠫" }, { "input": "disquieting", "output": "⠲⠟⠥⠊⠑⠞⠌" }, { "input": "disquiets", "output": "⠲⠟⠥⠊⠑⠞⠎" }, { "input": "disquietude", "output": "⠲⠟⠥⠊⠑⠞⠥⠙⠑" }, { "input": "disquietude's", "output": "⠲⠟⠥⠊⠑⠞⠥⠙⠑⠄⠎" }, { "input": "disquisition", "output": "⠲⠟⠥⠊⠎⠊⠰â " }, { "input": "disquisition's", "output": "⠲⠟⠥⠊⠎⠊⠰â â „â Ž" }, { "input": "disquisitions", "output": "⠲⠟⠥⠊⠎⠊⠰â â Ž" }, { "input": "disregard", "output": "⠲⠗⠑⠛⠜⠙" }, { "input": "disregard's", "output": "⠲⠗⠑⠛⠜⠙⠄⠎" }, { "input": "disregarded", "output": "⠲⠗⠑⠛⠜⠙⠫" }, { "input": "disregardful", "output": "⠲⠗⠑⠛⠜⠙⠰⠇" }, { "input": "disregarding", "output": "⠲⠗⠑⠛⠜⠙⠌" }, { "input": "disregards", "output": "⠲⠗⠑⠛⠜⠙⠎" }, { "input": "disrepair", "output": "⠲⠗⠑â â â Šâ —" }, { "input": "disrepair's", "output": "⠲⠗⠑â â â Šâ —â „â Ž" }, { "input": "disreputable", "output": "⠲⠗⠑â â ¥â žâ â ¼" }, { "input": "disreputably", "output": "⠲⠗⠑â â ¥â žâ â ƒâ ‡â ½" }, { "input": "disrepute", "output": "⠲⠗⠑â â ¥â žâ ‘" }, { "input": "disrepute's", "output": "⠲⠗⠑â â ¥â žâ ‘â „â Ž" }, { "input": "disrespect", "output": "⠲⠗⠑⠎â â ‘⠉⠞" }, { "input": "disrespect's", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠄⠎" }, { "input": "disrespected", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠫" }, { "input": "disrespectful", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠰⠇" }, { "input": "disrespectfully", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠰⠇⠇⠽" }, { "input": "disrespecting", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠌" }, { "input": "disrespects", "output": "⠲⠗⠑⠎â â ‘⠉⠞⠎" }, { "input": "disrobe", "output": "⠲⠗⠕⠃⠑" }, { "input": "disrobed", "output": "⠲⠗⠕⠃⠫" }, { "input": "disrobes", "output": "⠲⠗⠕⠃⠑⠎" }, { "input": "disrobing", "output": "⠲⠗⠕⠃⠌" }, { "input": "disrupt", "output": "⠲⠗⠥â â ž" }, { "input": "disrupted", "output": "⠲⠗⠥â â žâ «" }, { "input": "disrupting", "output": "⠲⠗⠥â â žâ Œ" }, { "input": "disruption", "output": "⠲⠗⠥â â °â " }, { "input": "disruption's", "output": "⠲⠗⠥â â °â â „â Ž" }, { "input": "disruptions", "output": "⠲⠗⠥â â °â â Ž" }, { "input": "disruptive", "output": "⠲⠗⠥â â žâ Šâ §â ‘" }, { "input": "disrupts", "output": "⠲⠗⠥â â žâ Ž" }, { "input": "dissatisfaction", "output": "⠲⠎â â žâ Šâ Žâ ‹â â ‰â °â " }, { "input": "dissatisfaction's", "output": "⠲⠎â â žâ Šâ Žâ ‹â â ‰â °â â „â Ž" }, { "input": "dissatisfied", "output": "⠲⠎â â žâ Šâ Žâ ‹â Šâ «" }, { "input": "dissatisfies", "output": "⠲⠎â â žâ Šâ Žâ ‹â Šâ ‘â Ž" }, { "input": "dissatisfy", "output": "⠲⠎â â žâ Šâ Žâ ‹â ½" }, { "input": "dissatisfying", "output": "⠲⠎â â žâ Šâ Žâ ‹â ½â Œ" }, { "input": "dissect", "output": "⠲⠎⠑⠉⠞" }, { "input": "dissected", "output": "⠲⠎⠑⠉⠞⠫" }, { "input": "dissecting", "output": "⠲⠎⠑⠉⠞⠌" }, { "input": "dissection", "output": "⠲⠎⠑⠉⠰â " }, { "input": "dissection's", "output": "⠲⠎⠑⠉⠰â â „â Ž" }, { "input": "dissections", "output": "⠲⠎⠑⠉⠰â â Ž" }, { "input": "dissector", "output": "⠲⠎⠑⠉⠞⠕⠗" }, { "input": "dissector's", "output": "⠲⠎⠑⠉⠞⠕⠗⠄⠎" }, { "input": "dissectors", "output": "⠲⠎⠑⠉⠞⠕⠗⠎" }, { "input": "dissects", "output": "⠲⠎⠑⠉⠞⠎" }, { "input": "dissed", "output": "⠙⠊⠎⠎⠫" }, { "input": "dissemblance", "output": "⠲⠎⠑â â ƒâ ‡â ¨â ‘" }, { "input": "dissemblance's", "output": "⠲⠎⠑â â ƒâ ‡â ¨â ‘â „â Ž" }, { "input": "dissemble", "output": "⠲⠎⠑â â ¼" }, { "input": "dissembled", "output": "⠲⠎⠑â â ¼â ™" }, { "input": "dissembler", "output": "⠲⠎⠑â â ¼â —" }, { "input": "dissembler's", "output": "⠲⠎⠑â â ¼â —â „â Ž" }, { "input": "dissemblers", "output": "⠲⠎⠑â â ¼â —â Ž" }, { "input": "dissembles", "output": "⠲⠎⠑â â ¼â Ž" }, { "input": "dissembling", "output": "⠲⠎⠑â â ƒâ ‡â Œ" }, { "input": "disseminate", "output": "⠲⠎⠑â â ”â â žâ ‘" }, { "input": "disseminated", "output": "⠲⠎⠑â â ”â â žâ «" }, { "input": "disseminates", "output": "⠲⠎⠑â â ”â â žâ ‘â Ž" }, { "input": "disseminating", "output": "⠲⠎⠑â â ”â â žâ Œ" }, { "input": "dissemination", "output": "⠲⠎⠑â â ”â  â " }, { "input": "dissemination's", "output": "⠲⠎⠑â â ”â  â â „â Ž" }, { "input": "dissension", "output": "⠲⠎⠢⠨â " }, { "input": "dissension's", "output": "⠲⠎⠢⠨â â „â Ž" }, { "input": "dissensions", "output": "⠲⠎⠢⠨â â Ž" }, { "input": "dissent", "output": "⠲⠎⠢⠞" }, { "input": "dissent's", "output": "⠲⠎⠢⠞⠄⠎" }, { "input": "dissented", "output": "⠲⠎⠢⠞⠫" }, { "input": "dissenter", "output": "⠲⠎⠢⠞⠻" }, { "input": "dissenter's", "output": "⠲⠎⠢⠞⠻⠄⠎" }, { "input": "dissenters", "output": "⠲⠎⠢⠞⠻⠎" }, { "input": "dissenting", "output": "⠲⠎⠢⠞⠌" }, { "input": "dissents", "output": "⠲⠎⠢⠞⠎" }, { "input": "dissertation", "output": "⠲⠎⠻⠞⠠â " }, { "input": "dissertation's", "output": "⠲⠎⠻⠞⠠â â „â Ž" }, { "input": "dissertations", "output": "⠲⠎⠻⠞⠠â â Ž" }, { "input": "disservice", "output": "⠲⠎⠻⠧⠊⠉⠑" }, { "input": "disservice's", "output": "⠲⠎⠻⠧⠊⠉⠑⠄⠎" }, { "input": "disservices", "output": "⠲⠎⠻⠧⠊⠉⠑⠎" }, { "input": "dissever", "output": "⠲⠎â â ‘" }, { "input": "dissevered", "output": "⠲⠎â â ‘â «" }, { "input": "dissevering", "output": "⠲⠎â â ‘â Œ" }, { "input": "dissevers", "output": "⠲⠎â â ‘â Ž" }, { "input": "dissidence", "output": "⠲⠎⠊⠙⠰⠑" }, { "input": "dissidence's", "output": "⠲⠎⠊⠙⠰⠑⠄⠎" }, { "input": "dissident", "output": "⠲⠎⠊⠙⠢⠞" }, { "input": "dissident's", "output": "⠲⠎⠊⠙⠢⠞⠄⠎" }, { "input": "dissidents", "output": "⠲⠎⠊⠙⠢⠞⠎" }, { "input": "dissimilar", "output": "⠲⠎⠊â â Šâ ‡â œ" }, { "input": "dissimilarities", "output": "⠲⠎⠊â â Šâ ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "dissimilarity", "output": "⠲⠎⠊â â Šâ ‡â œâ °â ½" }, { "input": "dissimilarity's", "output": "⠲⠎⠊â â Šâ ‡â œâ °â ½â „â Ž" }, { "input": "dissimilitude", "output": "⠲⠎⠊â â Šâ ‡â Šâ žâ ¥â ™â ‘" }, { "input": "dissimilitude's", "output": "⠲⠎⠊â â Šâ ‡â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "dissimilitudes", "output": "⠲⠎⠊â â Šâ ‡â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "dissimulate", "output": "⠲⠎⠊â â ¥â ‡â â žâ ‘" }, { "input": "dissimulated", "output": "⠲⠎⠊â â ¥â ‡â â žâ «" }, { "input": "dissimulates", "output": "⠲⠎⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "dissimulating", "output": "⠲⠎⠊â â ¥â ‡â â žâ Œ" }, { "input": "dissimulation", "output": "⠲⠎⠊â â ¥â ‡â  â " }, { "input": "dissimulation's", "output": "⠲⠎⠊â â ¥â ‡â  â â „â Ž" }, { "input": "dissimulator", "output": "⠲⠎⠊â â ¥â ‡â â žâ •â —" }, { "input": "dissimulator's", "output": "⠲⠎⠊â â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "dissimulators", "output": "⠲⠎⠊â â ¥â ‡â â žâ •â —â Ž" }, { "input": "dissing", "output": "⠙⠊⠎⠎⠌" }, { "input": "dissipate", "output": "⠲⠎⠊â â â žâ ‘" }, { "input": "dissipated", "output": "⠲⠎⠊â â â žâ «" }, { "input": "dissipates", "output": "⠲⠎⠊â â â žâ ‘â Ž" }, { "input": "dissipating", "output": "⠲⠎⠊â â â žâ Œ" }, { "input": "dissipation", "output": "⠲⠎⠊â â  â " }, { "input": "dissipation's", "output": "⠲⠎⠊â â  â â „â Ž" }, { "input": "dissociate", "output": "⠲⠎⠕⠉⠊â â žâ ‘" }, { "input": "dissociated", "output": "⠲⠎⠕⠉⠊â â žâ «" }, { "input": "dissociates", "output": "⠲⠎⠕⠉⠊â â žâ ‘â Ž" }, { "input": "dissociating", "output": "⠲⠎⠕⠉⠊â â žâ Œ" }, { "input": "dissociation", "output": "⠲⠎⠕⠉⠊⠠â " }, { "input": "dissociation's", "output": "⠲⠎⠕⠉⠊⠠â â „â Ž" }, { "input": "dissoluble", "output": "⠲⠎⠕⠇⠥⠼" }, { "input": "dissolute", "output": "⠲⠎⠕⠇⠥⠞⠑" }, { "input": "dissolutely", "output": "⠲⠎⠕⠇⠥⠞⠑⠇⠽" }, { "input": "dissoluteness", "output": "⠲⠎⠕⠇⠥⠞⠑⠰⠎" }, { "input": "dissoluteness's", "output": "⠲⠎⠕⠇⠥⠞⠑⠰⠎⠄⠎" }, { "input": "dissolution", "output": "⠲⠎⠕⠇⠥⠰â " }, { "input": "dissolution's", "output": "⠲⠎⠕⠇⠥⠰â â „â Ž" }, { "input": "dissolve", "output": "⠲⠎⠕⠇⠧⠑" }, { "input": "dissolved", "output": "⠲⠎⠕⠇⠧⠫" }, { "input": "dissolves", "output": "⠲⠎⠕⠇⠧⠑⠎" }, { "input": "dissolving", "output": "⠲⠎⠕⠇⠧⠌" }, { "input": "dissonance", "output": "⠲⠎⠕â â ¨â ‘" }, { "input": "dissonance's", "output": "⠲⠎⠕â â ¨â ‘â „â Ž" }, { "input": "dissonances", "output": "⠲⠎⠕â â ¨â ‘â Ž" }, { "input": "dissonant", "output": "⠲⠎⠕â â â â ž" }, { "input": "dissuade", "output": "⠲⠎⠥â â ™â ‘" }, { "input": "dissuaded", "output": "⠲⠎⠥â â ™â «" }, { "input": "dissuades", "output": "⠲⠎⠥â â ™â ‘â Ž" }, { "input": "dissuading", "output": "⠲⠎⠥â â ™â Œ" }, { "input": "dissuasion", "output": "⠲⠎⠥â â ¨â " }, { "input": "dissuasion's", "output": "⠲⠎⠥â â ¨â â „â Ž" }, { "input": "dissuasive", "output": "⠲⠎⠥â â Žâ Šâ §â ‘" }, { "input": "distaff", "output": "⠲⠞â â ‹â ‹" }, { "input": "distaff's", "output": "⠲⠞â â ‹â ‹â „â Ž" }, { "input": "distaffs", "output": "⠲⠞â â –â Ž" }, { "input": "distal", "output": "⠲⠞â â ‡" }, { "input": "distally", "output": "⠲⠞⠠⠽" }, { "input": "distance", "output": "⠲⠞⠨⠑" }, { "input": "distance's", "output": "⠲⠞⠨⠑⠄⠎" }, { "input": "distanced", "output": "⠲⠞⠨⠑⠙" }, { "input": "distances", "output": "⠲⠞⠨⠑⠎" }, { "input": "distancing", "output": "⠲⠞â â â ‰â Œ" }, { "input": "distant", "output": "⠲⠞â â â ž" }, { "input": "distantly", "output": "⠲⠞â â â žâ ‡â ½" }, { "input": "distaste", "output": "⠲⠞â â Œâ ‘" }, { "input": "distaste's", "output": "⠲⠞â â Œâ ‘â „â Ž" }, { "input": "distasteful", "output": "⠲⠞â â Œâ ‘â °â ‡" }, { "input": "distastefully", "output": "⠲⠞â â Œâ ‘⠰⠇⠇⠽" }, { "input": "distastefulness's", "output": "⠲⠞â â Œâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "distastes", "output": "⠲⠞â â Œâ ‘â Ž" }, { "input": "distemper", "output": "⠲⠞⠑â â â »" }, { "input": "distemper's", "output": "⠲⠞⠑â â â »â „â Ž" }, { "input": "distend", "output": "⠲⠞⠢⠙" }, { "input": "distended", "output": "⠲⠞⠢⠙⠫" }, { "input": "distending", "output": "⠲⠞⠢⠙⠌" }, { "input": "distends", "output": "⠲⠞⠢⠙⠎" }, { "input": "distension", "output": "⠲⠞⠢⠨â " }, { "input": "distension's", "output": "⠲⠞⠢⠨â â „â Ž" }, { "input": "distensions", "output": "⠲⠞⠢⠨â â Ž" }, { "input": "distention", "output": "⠲⠞⠢⠰â " }, { "input": "distention's", "output": "⠲⠞⠢⠰â â „â Ž" }, { "input": "distentions", "output": "⠲⠞⠢⠰â â Ž" }, { "input": "distill", "output": "⠲⠞⠊⠇⠇" }, { "input": "distillate", "output": "⠲⠞⠊⠇⠇â â žâ ‘" }, { "input": "distillate's", "output": "⠲⠞⠊⠇⠇â â žâ ‘â „â Ž" }, { "input": "distillates", "output": "⠲⠞⠊⠇⠇â â žâ ‘â Ž" }, { "input": "distillation", "output": "⠲⠞⠊⠇⠇⠠â " }, { "input": "distillation's", "output": "⠲⠞⠊⠇⠇⠠â â „â Ž" }, { "input": "distillations", "output": "⠲⠞⠊⠇⠇⠠â â Ž" }, { "input": "distilled", "output": "⠲⠞⠊⠇⠇⠫" }, { "input": "distiller", "output": "⠲⠞⠊⠇⠇⠻" }, { "input": "distiller's", "output": "⠲⠞⠊⠇⠇⠻⠄⠎" }, { "input": "distilleries", "output": "⠲⠞⠊⠇⠇⠻⠊⠑⠎" }, { "input": "distillers", "output": "⠲⠞⠊⠇⠇⠻⠎" }, { "input": "distillery", "output": "⠲⠞⠊⠇⠇⠻⠽" }, { "input": "distillery's", "output": "⠲⠞⠊⠇⠇⠻⠽⠄⠎" }, { "input": "distilling", "output": "⠲⠞⠊⠇⠇⠌" }, { "input": "distills", "output": "⠲⠞⠊⠇⠇⠎" }, { "input": "distinct", "output": "⠲⠞⠔⠉⠞" }, { "input": "distincter", "output": "⠲⠞⠔⠉⠞⠻" }, { "input": "distinctest", "output": "⠲⠞⠔⠉⠞⠑⠌" }, { "input": "distinction", "output": "⠲⠞⠔⠉⠰â " }, { "input": "distinction's", "output": "⠲⠞⠔⠉⠰â â „â Ž" }, { "input": "distinctions", "output": "⠲⠞⠔⠉⠰â â Ž" }, { "input": "distinctive", "output": "⠲⠞⠔⠉⠞⠊⠧⠑" }, { "input": "distinctively", "output": "⠲⠞⠔⠉⠞⠊⠧⠑⠇⠽" }, { "input": "distinctiveness", "output": "⠲⠞⠔⠉⠞⠊⠧⠑⠰⠎" }, { "input": "distinctiveness's", "output": "⠲⠞⠔⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "distinctly", "output": "⠲⠞⠔⠉⠞⠇⠽" }, { "input": "distinctness", "output": "⠲⠞⠔⠉⠞⠰⠎" }, { "input": "distinctness's", "output": "⠲⠞⠔⠉⠞⠰⠎⠄⠎" }, { "input": "distinguish", "output": "⠲⠞⠌⠥⠊⠩" }, { "input": "distinguishable", "output": "⠲⠞⠌⠥⠊⠩â â ¼" }, { "input": "distinguished", "output": "⠲⠞⠌⠥⠊⠩⠫" }, { "input": "distinguishes", "output": "⠲⠞⠌⠥⠊⠩⠑⠎" }, { "input": "distinguishing", "output": "⠲⠞⠌⠥⠊⠩⠌" }, { "input": "distort", "output": "⠲⠞⠕⠗⠞" }, { "input": "distorted", "output": "⠲⠞⠕⠗⠞⠫" }, { "input": "distorter", "output": "⠲⠞⠕⠗⠞⠻" }, { "input": "distorting", "output": "⠲⠞⠕⠗⠞⠌" }, { "input": "distortion", "output": "⠲⠞⠕⠗⠰â " }, { "input": "distortion's", "output": "⠲⠞⠕⠗⠰â â „â Ž" }, { "input": "distortions", "output": "⠲⠞⠕⠗⠰â â Ž" }, { "input": "distorts", "output": "⠲⠞⠕⠗⠞⠎" }, { "input": "distract", "output": "⠲⠞⠗â â ‰â ž" }, { "input": "distracted", "output": "⠲⠞⠗â â ‰â žâ «" }, { "input": "distracting", "output": "⠲⠞⠗â â ‰â žâ Œ" }, { "input": "distraction", "output": "⠲⠞⠗â â ‰â °â " }, { "input": "distraction's", "output": "⠲⠞⠗â â ‰â °â â „â Ž" }, { "input": "distractions", "output": "⠲⠞⠗â â ‰â °â â Ž" }, { "input": "distracts", "output": "⠲⠞⠗â â ‰â žâ Ž" }, { "input": "distrait", "output": "⠲⠞⠗â â Šâ ž" }, { "input": "distraught", "output": "⠲⠞⠗â â ¥â £â ž" }, { "input": "distress", "output": "⠲⠞⠗⠑⠎⠎" }, { "input": "distress's", "output": "⠲⠞⠗⠑⠎⠎⠄⠎" }, { "input": "distressed", "output": "⠲⠞⠗⠑⠎⠎⠫" }, { "input": "distresses", "output": "⠲⠞⠗⠑⠎⠎⠑⠎" }, { "input": "distressful", "output": "⠲⠞⠗⠑⠎⠎⠰⠇" }, { "input": "distressing", "output": "⠲⠞⠗⠑⠎⠎⠌" }, { "input": "distressingly", "output": "⠲⠞⠗⠑⠎⠎⠌⠇⠽" }, { "input": "distribute", "output": "⠲⠞⠗⠊⠃⠥⠞⠑" }, { "input": "distributed", "output": "⠲⠞⠗⠊⠃⠥⠞⠫" }, { "input": "distributes", "output": "⠲⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "distributing", "output": "⠲⠞⠗⠊⠃⠥⠞⠌" }, { "input": "distribution", "output": "⠲⠞⠗⠊⠃⠥⠰â " }, { "input": "distribution's", "output": "⠲⠞⠗⠊⠃⠥⠰â â „â Ž" }, { "input": "distributions", "output": "⠲⠞⠗⠊⠃⠥⠰â â Ž" }, { "input": "distributive", "output": "⠲⠞⠗⠊⠃⠥⠞⠊⠧⠑" }, { "input": "distributively", "output": "⠲⠞⠗⠊⠃⠥⠞⠊⠧⠑⠇⠽" }, { "input": "distributor", "output": "⠲⠞⠗⠊⠃⠥⠞⠕⠗" }, { "input": "distributor's", "output": "⠲⠞⠗⠊⠃⠥⠞⠕⠗⠄⠎" }, { "input": "distributors", "output": "⠲⠞⠗⠊⠃⠥⠞⠕⠗⠎" }, { "input": "district", "output": "⠲⠞⠗⠊⠉⠞" }, { "input": "district's", "output": "⠲⠞⠗⠊⠉⠞⠄⠎" }, { "input": "districts", "output": "⠲⠞⠗⠊⠉⠞⠎" }, { "input": "distrust", "output": "⠲⠞⠗⠥⠌" }, { "input": "distrust's", "output": "⠲⠞⠗⠥⠌⠄⠎" }, { "input": "distrusted", "output": "⠲⠞⠗⠥⠌⠫" }, { "input": "distrustful", "output": "⠲⠞⠗⠥⠌⠰⠇" }, { "input": "distrustfully", "output": "⠲⠞⠗⠥⠌⠰⠇⠇⠽" }, { "input": "distrusting", "output": "⠲⠞⠗⠥⠌⠌" }, { "input": "distrusts", "output": "⠲⠞⠗⠥⠌⠎" }, { "input": "disturb", "output": "⠲⠞⠥⠗⠃" }, { "input": "disturbance", "output": "⠲⠞⠥⠗⠃⠨⠑" }, { "input": "disturbance's", "output": "⠲⠞⠥⠗⠃⠨⠑⠄⠎" }, { "input": "disturbances", "output": "⠲⠞⠥⠗⠃⠨⠑⠎" }, { "input": "disturbed", "output": "⠲⠞⠥⠗⠃⠫" }, { "input": "disturber", "output": "⠲⠞⠥⠗⠃⠻" }, { "input": "disturber's", "output": "⠲⠞⠥⠗⠃⠻⠄⠎" }, { "input": "disturbers", "output": "⠲⠞⠥⠗⠃⠻⠎" }, { "input": "disturbing", "output": "⠲⠞⠥⠗⠃⠌" }, { "input": "disturbingly", "output": "⠲⠞⠥⠗⠃⠌⠇⠽" }, { "input": "disturbs", "output": "⠲⠞⠥⠗⠃⠎" }, { "input": "disunion", "output": "⠲⠥â â Šâ •â " }, { "input": "disunion's", "output": "⠲⠥â â Šâ •â â „â Ž" }, { "input": "disunite", "output": "⠲⠥â â Šâ žâ ‘" }, { "input": "disunited", "output": "⠲⠥â â Šâ žâ «" }, { "input": "disunites", "output": "⠲⠥â â Šâ žâ ‘â Ž" }, { "input": "disuniting", "output": "⠲⠥â â Šâ žâ Œ" }, { "input": "disunity", "output": "⠲⠥â â °â ½" }, { "input": "disunity's", "output": "⠲⠥â â °â ½â „â Ž" }, { "input": "disuse", "output": "⠲⠥⠎⠑" }, { "input": "disuse's", "output": "⠲⠥⠎⠑⠄⠎" }, { "input": "disused", "output": "⠲⠥⠎⠫" }, { "input": "disuses", "output": "⠲⠥⠎⠑⠎" }, { "input": "disusing", "output": "⠲⠥⠎⠌" }, { "input": "ditch", "output": "⠙⠊⠞⠡" }, { "input": "ditch's", "output": "⠙⠊⠞⠡⠄⠎" }, { "input": "ditched", "output": "⠙⠊⠞⠡⠫" }, { "input": "ditches", "output": "⠙⠊⠞⠡⠑⠎" }, { "input": "ditching", "output": "⠙⠊⠞⠡⠌" }, { "input": "dither", "output": "⠙⠊⠮⠗" }, { "input": "dither's", "output": "⠙⠊⠮⠗⠄⠎" }, { "input": "dithered", "output": "⠙⠊⠮⠗⠫" }, { "input": "dithering", "output": "⠙⠊⠮⠗⠌" }, { "input": "dithers", "output": "⠙⠊⠮⠗⠎" }, { "input": "ditsier", "output": "⠙⠊⠞⠎⠊⠻" }, { "input": "ditsiest", "output": "⠙⠊⠞⠎⠊⠑⠌" }, { "input": "ditsy", "output": "⠙⠊⠞⠎⠽" }, { "input": "ditties", "output": "⠙⠊⠞⠞⠊⠑⠎" }, { "input": "ditto", "output": "⠙⠊⠞⠞⠕" }, { "input": "ditto's", "output": "⠙⠊⠞⠞⠕⠄⠎" }, { "input": "dittoed", "output": "⠙⠊⠞⠞⠕⠫" }, { "input": "dittoing", "output": "⠙⠊⠞⠞⠕⠌" }, { "input": "dittos", "output": "⠙⠊⠞⠞⠕⠎" }, { "input": "ditty", "output": "⠙⠊⠞⠞⠽" }, { "input": "ditty's", "output": "⠙⠊⠞⠞⠽⠄⠎" }, { "input": "ditz", "output": "⠙⠊⠞⠵" }, { "input": "ditz's", "output": "⠙⠊⠞⠵⠄⠎" }, { "input": "ditzes", "output": "⠙⠊⠞⠵⠑⠎" }, { "input": "diuretic", "output": "⠙⠊⠥⠗⠑⠞⠊⠉" }, { "input": "diuretic's", "output": "⠙⠊⠥⠗⠑⠞⠊⠉⠄⠎" }, { "input": "diuretics", "output": "⠙⠊⠥⠗⠑⠞⠊⠉⠎" }, { "input": "diurnal", "output": "⠙⠊⠥⠗â â â ‡" }, { "input": "diurnally", "output": "⠙⠊⠥⠗â â  â ½" }, { "input": "diva", "output": "⠙⠊⠧â " }, { "input": "diva's", "output": "⠙⠊⠧â â „â Ž" }, { "input": "divalent", "output": "⠙⠊⠧â â ‡â ¢â ž" }, { "input": "divan", "output": "⠙⠊⠧â â " }, { "input": "divan's", "output": "⠙⠊⠧â â â „â Ž" }, { "input": "divans", "output": "⠙⠊⠧â â â Ž" }, { "input": "divas", "output": "⠙⠊⠧â â Ž" }, { "input": "dive", "output": "⠙⠊⠧⠑" }, { "input": "dive's", "output": "⠙⠊⠧⠑⠄⠎" }, { "input": "dived", "output": "⠙⠊⠧⠫" }, { "input": "diver", "output": "⠙⠊⠧⠻" }, { "input": "diver's", "output": "⠙⠊⠧⠻⠄⠎" }, { "input": "diverge", "output": "⠙⠊⠧⠻⠛⠑" }, { "input": "diverged", "output": "⠙⠊⠧⠻⠛⠫" }, { "input": "divergence", "output": "⠙⠊⠧⠻⠛⠰⠑" }, { "input": "divergence's", "output": "⠙⠊⠧⠻⠛⠰⠑⠄⠎" }, { "input": "divergences", "output": "⠙⠊⠧⠻⠛⠰⠑⠎" }, { "input": "divergent", "output": "⠙⠊⠧⠻⠛⠢⠞" }, { "input": "diverges", "output": "⠙⠊⠧⠻⠛⠑⠎" }, { "input": "diverging", "output": "⠙⠊⠧⠻⠛⠌" }, { "input": "divers", "output": "⠙⠊⠧⠻⠎" }, { "input": "diverse", "output": "⠙⠊⠧⠻⠎⠑" }, { "input": "diversely", "output": "⠙⠊⠧⠻⠎⠑⠇⠽" }, { "input": "diverseness", "output": "⠙⠊⠧⠻⠎⠑⠰⠎" }, { "input": "diverseness's", "output": "⠙⠊⠧⠻⠎⠑⠰⠎⠄⠎" }, { "input": "diversification", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠉⠠â " }, { "input": "diversification's", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "diversified", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠫" }, { "input": "diversifies", "output": "⠙⠊⠧⠻⠎⠊⠋⠊⠑⠎" }, { "input": "diversify", "output": "⠙⠊⠧⠻⠎⠊⠋⠽" }, { "input": "diversifying", "output": "⠙⠊⠧⠻⠎⠊⠋⠽⠌" }, { "input": "diversion", "output": "⠙⠊⠧⠻⠨â " }, { "input": "diversion's", "output": "⠙⠊⠧⠻⠨â â „â Ž" }, { "input": "diversionary", "output": "⠙⠊⠧⠻⠨â â œâ ½" }, { "input": "diversions", "output": "⠙⠊⠧⠻⠨â â Ž" }, { "input": "diversities", "output": "⠙⠊⠧⠻⠎⠊⠞⠊⠑⠎" }, { "input": "diversity", "output": "⠙⠊⠧⠻⠎⠰⠽" }, { "input": "diversity's", "output": "⠙⠊⠧⠻⠎⠰⠽⠄⠎" }, { "input": "divert", "output": "⠙⠊⠧⠻⠞" }, { "input": "diverted", "output": "⠙⠊⠧⠻⠞⠫" }, { "input": "diverticulitis", "output": "⠙⠊⠧⠻⠞⠊⠉⠥⠇⠊⠞⠊⠎" }, { "input": "diverticulitis's", "output": "⠙⠊⠧⠻⠞⠊⠉⠥⠇⠊⠞⠊⠎⠄⠎" }, { "input": "diverting", "output": "⠙⠊⠧⠻⠞⠌" }, { "input": "diverts", "output": "⠙⠊⠧⠻⠞⠎" }, { "input": "dives", "output": "⠙⠊⠧⠑⠎" }, { "input": "divest", "output": "⠙⠊⠧⠑⠌" }, { "input": "divested", "output": "⠙⠊⠧⠑⠌⠫" }, { "input": "divesting", "output": "⠙⠊⠧⠑⠌⠌" }, { "input": "divestiture's", "output": "⠙⠊⠧⠑⠌⠊⠞⠥⠗⠑⠄⠎" }, { "input": "divestitures", "output": "⠙⠊⠧⠑⠌⠊⠞⠥⠗⠑⠎" }, { "input": "divestment's", "output": "⠙⠊⠧⠑⠌⠰⠞⠄⠎" }, { "input": "divests", "output": "⠙⠊⠧⠑⠌⠎" }, { "input": "dividable", "output": "⠙⠊⠧⠊⠙â â ¼" }, { "input": "divide", "output": "⠙⠊⠧⠊⠙⠑" }, { "input": "divide's", "output": "⠙⠊⠧⠊⠙⠑⠄⠎" }, { "input": "divided", "output": "⠙⠊⠧⠊⠙⠫" }, { "input": "dividend", "output": "⠙⠊⠧⠊⠙⠢⠙" }, { "input": "dividend's", "output": "⠙⠊⠧⠊⠙⠢⠙⠄⠎" }, { "input": "dividends", "output": "⠙⠊⠧⠊⠙⠢⠙⠎" }, { "input": "divider", "output": "⠙⠊⠧⠊⠙⠻" }, { "input": "divider's", "output": "⠙⠊⠧⠊⠙⠻⠄⠎" }, { "input": "dividers", "output": "⠙⠊⠧⠊⠙⠻⠎" }, { "input": "divides", "output": "⠙⠊⠧⠊⠙⠑⠎" }, { "input": "dividing", "output": "⠙⠊⠧⠊⠙⠌" }, { "input": "divination", "output": "⠙⠊⠧⠔⠠â " }, { "input": "divination's", "output": "⠙⠊⠧⠔⠠â â „â Ž" }, { "input": "divine", "output": "⠙⠊⠧⠔⠑" }, { "input": "divine's", "output": "⠙⠊⠧⠔⠑⠄⠎" }, { "input": "divined", "output": "⠙⠊⠧⠔⠫" }, { "input": "divinely", "output": "⠙⠊⠧⠔⠑⠇⠽" }, { "input": "diviner", "output": "⠙⠊⠧⠔⠻" }, { "input": "diviner's", "output": "⠙⠊⠧⠔⠻⠄⠎" }, { "input": "diviners", "output": "⠙⠊⠧⠔⠻⠎" }, { "input": "divines", "output": "⠙⠊⠧⠔⠑⠎" }, { "input": "divinest", "output": "⠙⠊⠧⠔⠑⠌" }, { "input": "diving", "output": "⠙⠊⠧⠌" }, { "input": "diving's", "output": "⠙⠊⠧⠌⠄⠎" }, { "input": "divining", "output": "⠙⠊⠧⠔⠌" }, { "input": "divinities", "output": "⠙⠊⠧⠔⠊⠞⠊⠑⠎" }, { "input": "divinity", "output": "⠙⠊⠧⠔⠰⠽" }, { "input": "divinity's", "output": "⠙⠊⠧⠔⠰⠽⠄⠎" }, { "input": "divisibility", "output": "⠙⠊⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "divisibility's", "output": "⠙⠊⠧⠊⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "divisible", "output": "⠙⠊⠧⠊⠎⠊⠼" }, { "input": "division", "output": "⠙⠊⠧⠊⠨â " }, { "input": "division's", "output": "⠙⠊⠧⠊⠨â â „â Ž" }, { "input": "divisional", "output": "⠙⠊⠧⠊⠨â â â ‡" }, { "input": "divisions", "output": "⠙⠊⠧⠊⠨â â Ž" }, { "input": "divisive", "output": "⠙⠊⠧⠊⠎⠊⠧⠑" }, { "input": "divisively", "output": "⠙⠊⠧⠊⠎⠊⠧⠑⠇⠽" }, { "input": "divisiveness", "output": "⠙⠊⠧⠊⠎⠊⠧⠑⠰⠎" }, { "input": "divisiveness's", "output": "⠙⠊⠧⠊⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "divisor", "output": "⠙⠊⠧⠊⠎⠕⠗" }, { "input": "divisor's", "output": "⠙⠊⠧⠊⠎⠕⠗⠄⠎" }, { "input": "divisors", "output": "⠙⠊⠧⠊⠎⠕⠗⠎" }, { "input": "divorce", "output": "⠙⠊⠧⠕⠗⠉⠑" }, { "input": "divorce's", "output": "⠙⠊⠧⠕⠗⠉⠑⠄⠎" }, { "input": "divorced", "output": "⠙⠊⠧⠕⠗⠉⠫" }, { "input": "divorcement", "output": "⠙⠊⠧⠕⠗⠉⠑⠰⠞" }, { "input": "divorcement's", "output": "⠙⠊⠧⠕⠗⠉⠑⠰⠞⠄⠎" }, { "input": "divorcements", "output": "⠙⠊⠧⠕⠗⠉⠑⠰⠞⠎" }, { "input": "divorces", "output": "⠙⠊⠧⠕⠗⠉⠑⠎" }, { "input": "divorcing", "output": "⠙⠊⠧⠕⠗⠉⠌" }, { "input": "divot", "output": "⠙⠊⠧⠕⠞" }, { "input": "divot's", "output": "⠙⠊⠧⠕⠞⠄⠎" }, { "input": "divots", "output": "⠙⠊⠧⠕⠞⠎" }, { "input": "divulge", "output": "⠙⠊⠧⠥⠇⠛⠑" }, { "input": "divulged", "output": "⠙⠊⠧⠥⠇⠛⠫" }, { "input": "divulges", "output": "⠙⠊⠧⠥⠇⠛⠑⠎" }, { "input": "divulging", "output": "⠙⠊⠧⠥⠇⠛⠌" }, { "input": "divvied", "output": "⠙⠊⠧⠧⠊⠫" }, { "input": "divvies", "output": "⠙⠊⠧⠧⠊⠑⠎" }, { "input": "divvy", "output": "⠙⠊⠧⠧⠽" }, { "input": "divvy's", "output": "⠙⠊⠧⠧⠽⠄⠎" }, { "input": "divvying", "output": "⠙⠊⠧⠧⠽⠌" }, { "input": "dixieland's", "output": "⠙⠊⠭⠊⠑⠇⠯⠄⠎" }, { "input": "dizzied", "output": "⠙⠊⠵⠵⠊⠫" }, { "input": "dizzier", "output": "⠙⠊⠵⠵⠊⠻" }, { "input": "dizzies", "output": "⠙⠊⠵⠵⠊⠑⠎" }, { "input": "dizziest", "output": "⠙⠊⠵⠵⠊⠑⠌" }, { "input": "dizzily", "output": "⠙⠊⠵⠵⠊⠇⠽" }, { "input": "dizziness", "output": "⠙⠊⠵⠵⠊⠰⠎" }, { "input": "dizziness's", "output": "⠙⠊⠵⠵⠊⠰⠎⠄⠎" }, { "input": "dizzy", "output": "⠙⠊⠵⠵⠽" }, { "input": "dizzying", "output": "⠙⠊⠵⠵⠽⠌" }, { "input": "djellaba", "output": "⠙⠚⠑⠇⠇â â ƒâ " }, { "input": "djellaba's", "output": "⠙⠚⠑⠇⠇â â ƒâ â „â Ž" }, { "input": "djellabas", "output": "⠙⠚⠑⠇⠇â â ƒâ â Ž" }, { "input": "do", "output": "â ™" }, { "input": "do's", "output": "⠙⠕⠄⠎" }, { "input": "doable", "output": "⠙⠕â â ¼" }, { "input": "dobbin", "output": "⠙⠕⠆⠔" }, { "input": "dobbin's", "output": "⠙⠕⠆⠔⠄⠎" }, { "input": "dobbins", "output": "⠙⠕⠆⠔⠎" }, { "input": "doc", "output": "⠙⠕⠉" }, { "input": "doc's", "output": "⠙⠕⠉⠄⠎" }, { "input": "docent", "output": "⠙⠕⠉⠢⠞" }, { "input": "docent's", "output": "⠙⠕⠉⠢⠞⠄⠎" }, { "input": "docents", "output": "⠙⠕⠉⠢⠞⠎" }, { "input": "docile", "output": "⠙⠕⠉⠊⠇⠑" }, { "input": "docilely", "output": "⠙⠕⠉⠊⠇⠑⠇⠽" }, { "input": "docility", "output": "⠙⠕⠉⠊⠇⠰⠽" }, { "input": "docility's", "output": "⠙⠕⠉⠊⠇⠰⠽⠄⠎" }, { "input": "dock", "output": "⠙⠕⠉⠅" }, { "input": "dock's", "output": "⠙⠕⠉⠅⠄⠎" }, { "input": "docked", "output": "⠙⠕⠉⠅⠫" }, { "input": "docket", "output": "⠙⠕⠉⠅⠑⠞" }, { "input": "docket's", "output": "⠙⠕⠉⠅⠑⠞⠄⠎" }, { "input": "docketed", "output": "⠙⠕⠉⠅⠑⠞⠫" }, { "input": "docketing", "output": "⠙⠕⠉⠅⠑⠞⠌" }, { "input": "dockets", "output": "⠙⠕⠉⠅⠑⠞⠎" }, { "input": "docking", "output": "⠙⠕⠉⠅⠌" }, { "input": "docks", "output": "⠙⠕⠉⠅⠎" }, { "input": "dockyard", "output": "⠙⠕⠉⠅⠽⠜⠙" }, { "input": "dockyard's", "output": "⠙⠕⠉⠅⠽⠜⠙⠄⠎" }, { "input": "dockyards", "output": "⠙⠕⠉⠅⠽⠜⠙⠎" }, { "input": "docs", "output": "⠙⠕⠉⠎" }, { "input": "doctor", "output": "⠙⠕⠉⠞⠕⠗" }, { "input": "doctor's", "output": "⠙⠕⠉⠞⠕⠗⠄⠎" }, { "input": "doctoral", "output": "⠙⠕⠉⠞⠕⠗â â ‡" }, { "input": "doctorate", "output": "⠙⠕⠉⠞⠕⠗â â žâ ‘" }, { "input": "doctorate's", "output": "⠙⠕⠉⠞⠕⠗â â žâ ‘â „â Ž" }, { "input": "doctorates", "output": "⠙⠕⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "doctored", "output": "⠙⠕⠉⠞⠕⠗⠫" }, { "input": "doctoring", "output": "⠙⠕⠉⠞⠕⠗⠌" }, { "input": "doctors", "output": "⠙⠕⠉⠞⠕⠗⠎" }, { "input": "doctrinaire", "output": "⠙⠕⠉⠞⠗⠔â â Šâ —â ‘" }, { "input": "doctrinaire's", "output": "⠙⠕⠉⠞⠗⠔â â Šâ —â ‘â „â Ž" }, { "input": "doctrinaires", "output": "⠙⠕⠉⠞⠗⠔â â Šâ —â ‘â Ž" }, { "input": "doctrinal", "output": "⠙⠕⠉⠞⠗⠔â â ‡" }, { "input": "doctrine", "output": "⠙⠕⠉⠞⠗⠔⠑" }, { "input": "doctrine's", "output": "⠙⠕⠉⠞⠗⠔⠑⠄⠎" }, { "input": "doctrines", "output": "⠙⠕⠉⠞⠗⠔⠑⠎" }, { "input": "docudrama", "output": "⠙⠕⠉⠥⠙⠗â â â " }, { "input": "docudrama's", "output": "⠙⠕⠉⠥⠙⠗â â â â „â Ž" }, { "input": "docudramas", "output": "⠙⠕⠉⠥⠙⠗â â â â Ž" }, { "input": "document", "output": "⠙⠕⠉⠥⠰⠞" }, { "input": "document's", "output": "⠙⠕⠉⠥⠰⠞⠄⠎" }, { "input": "documentaries", "output": "⠙⠕⠉⠥⠰⠞⠜⠊⠑⠎" }, { "input": "documentary", "output": "⠙⠕⠉⠥⠰⠞⠜⠽" }, { "input": "documentary's", "output": "⠙⠕⠉⠥⠰⠞⠜⠽⠄⠎" }, { "input": "documentation", "output": "⠙⠕⠉⠥⠰⠞⠠â " }, { "input": "documentation's", "output": "⠙⠕⠉⠥⠰⠞⠠â â „â Ž" }, { "input": "documented", "output": "⠙⠕⠉⠥⠰⠞⠫" }, { "input": "documenting", "output": "⠙⠕⠉⠥⠰⠞⠌" }, { "input": "documents", "output": "⠙⠕⠉⠥⠰⠞⠎" }, { "input": "dodder", "output": "⠙⠕⠲⠻" }, { "input": "dodder's", "output": "⠙⠕⠲⠻⠄⠎" }, { "input": "doddered", "output": "⠙⠕⠲⠻⠫" }, { "input": "doddering", "output": "⠙⠕⠲⠻⠌" }, { "input": "dodders", "output": "⠙⠕⠲⠻⠎" }, { "input": "dodge", "output": "⠙⠕⠙⠛⠑" }, { "input": "dodge's", "output": "⠙⠕⠙⠛⠑⠄⠎" }, { "input": "dodged", "output": "⠙⠕⠙⠛⠫" }, { "input": "dodger", "output": "⠙⠕⠙⠛⠻" }, { "input": "dodger's", "output": "⠙⠕⠙⠛⠻⠄⠎" }, { "input": "dodgers", "output": "⠙⠕⠙⠛⠻⠎" }, { "input": "dodges", "output": "⠙⠕⠙⠛⠑⠎" }, { "input": "dodging", "output": "⠙⠕⠙⠛⠌" }, { "input": "dodo", "output": "⠙⠕⠙⠕" }, { "input": "dodo's", "output": "⠙⠕⠙⠕⠄⠎" }, { "input": "dodos", "output": "⠙⠕⠙⠕⠎" }, { "input": "doe", "output": "⠙⠕⠑" }, { "input": "doe's", "output": "⠙⠕⠑⠄⠎" }, { "input": "doer", "output": "⠙⠕⠻" }, { "input": "doer's", "output": "⠙⠕⠻⠄⠎" }, { "input": "doers", "output": "⠙⠕⠻⠎" }, { "input": "does", "output": "⠙⠕⠑⠎" }, { "input": "doeskin", "output": "⠙⠕⠑⠎⠅⠔" }, { "input": "doeskin's", "output": "⠙⠕⠑⠎⠅⠔⠄⠎" }, { "input": "doeskins", "output": "⠙⠕⠑⠎⠅⠔⠎" }, { "input": "doff", "output": "⠙⠷⠋" }, { "input": "doffed", "output": "⠙⠷⠋⠫" }, { "input": "doffing", "output": "⠙⠷⠋⠌" }, { "input": "doffs", "output": "⠙⠷⠋⠎" }, { "input": "dog", "output": "⠙⠕⠛" }, { "input": "dog's", "output": "⠙⠕⠛⠄⠎" }, { "input": "dogcatcher", "output": "⠙⠕⠛⠉â â žâ ¡â »" }, { "input": "dogcatcher's", "output": "⠙⠕⠛⠉â â žâ ¡â »â „â Ž" }, { "input": "dogcatchers", "output": "⠙⠕⠛⠉â â žâ ¡â »â Ž" }, { "input": "doge", "output": "⠙⠕⠛⠑" }, { "input": "doge's", "output": "⠙⠕⠛⠑⠄⠎" }, { "input": "dogeared", "output": "⠙⠕⠛⠑⠜⠫" }, { "input": "doges", "output": "⠙⠕⠛⠑⠎" }, { "input": "dogfight", "output": "⠙⠕⠛⠋⠊⠣⠞" }, { "input": "dogfight's", "output": "⠙⠕⠛⠋⠊⠣⠞⠄⠎" }, { "input": "dogfights", "output": "⠙⠕⠛⠋⠊⠣⠞⠎" }, { "input": "dogfish", "output": "⠙⠕⠛⠋⠊⠩" }, { "input": "dogfish's", "output": "⠙⠕⠛⠋⠊⠩⠄⠎" }, { "input": "dogfishes", "output": "⠙⠕⠛⠋⠊⠩⠑⠎" }, { "input": "dogged", "output": "⠙⠕⠶⠫" }, { "input": "doggedly", "output": "⠙⠕⠶⠫⠇⠽" }, { "input": "doggedness", "output": "⠙⠕⠶⠫⠰⠎" }, { "input": "doggedness's", "output": "⠙⠕⠶⠫⠰⠎⠄⠎" }, { "input": "doggerel", "output": "⠙⠕⠶⠻⠑⠇" }, { "input": "doggerel's", "output": "⠙⠕⠶⠻⠑⠇⠄⠎" }, { "input": "doggier", "output": "⠙⠕⠶⠊⠻" }, { "input": "doggies", "output": "⠙⠕⠶⠊⠑⠎" }, { "input": "doggiest", "output": "⠙⠕⠶⠊⠑⠌" }, { "input": "dogging", "output": "⠙⠕⠶⠌" }, { "input": "doggone", "output": "⠙⠕⠛⠛â â •" }, { "input": "doggoner", "output": "⠙⠕⠛⠛⠕â â »" }, { "input": "doggones", "output": "⠙⠕⠛⠛â â •â Ž" }, { "input": "doggonest", "output": "⠙⠕⠛⠛⠕â â ‘â Œ" }, { "input": "doggoning", "output": "⠙⠕⠛⠛⠕â â Œ" }, { "input": "doggy", "output": "⠙⠕⠶⠽" }, { "input": "doggy's", "output": "⠙⠕⠶⠽⠄⠎" }, { "input": "doghouse", "output": "⠙⠕⠛⠓⠳⠎⠑" }, { "input": "doghouse's", "output": "⠙⠕⠛⠓⠳⠎⠑⠄⠎" }, { "input": "doghouses", "output": "⠙⠕⠛⠓⠳⠎⠑⠎" }, { "input": "dogie", "output": "⠙⠕⠛⠊⠑" }, { "input": "dogie's", "output": "⠙⠕⠛⠊⠑⠄⠎" }, { "input": "dogies", "output": "⠙⠕⠛⠊⠑⠎" }, { "input": "doglegged", "output": "⠙⠕⠛⠇⠑⠶⠫" }, { "input": "doglegging", "output": "⠙⠕⠛⠇⠑⠶⠌" }, { "input": "dogma", "output": "⠙⠕⠛â â " }, { "input": "dogma's", "output": "⠙⠕⠛â â â „â Ž" }, { "input": "dogmas", "output": "⠙⠕⠛â â â Ž" }, { "input": "dogmatic", "output": "⠙⠕⠛â â â žâ Šâ ‰" }, { "input": "dogmatically", "output": "⠙⠕⠛â â â žâ Šâ ‰â  â ½" }, { "input": "dogmatism", "output": "⠙⠕⠛â â â žâ Šâ Žâ " }, { "input": "dogmatism's", "output": "⠙⠕⠛â â â žâ Šâ Žâ â „â Ž" }, { "input": "dogmatist", "output": "⠙⠕⠛â â â žâ Šâ Œ" }, { "input": "dogmatist's", "output": "⠙⠕⠛â â â žâ Šâ Œâ „â Ž" }, { "input": "dogmatists", "output": "⠙⠕⠛â â â žâ Šâ Œâ Ž" }, { "input": "dogs", "output": "⠙⠕⠛⠎" }, { "input": "dogtrot", "output": "⠙⠕⠛⠞⠗⠕⠞" }, { "input": "dogtrot's", "output": "⠙⠕⠛⠞⠗⠕⠞⠄⠎" }, { "input": "dogtrots", "output": "⠙⠕⠛⠞⠗⠕⠞⠎" }, { "input": "dogtrotted", "output": "⠙⠕⠛⠞⠗⠕⠞⠞⠫" }, { "input": "dogtrotting", "output": "⠙⠕⠛⠞⠗⠕⠞⠞⠌" }, { "input": "dogwood", "output": "⠙⠕⠛⠺⠕⠕⠙" }, { "input": "dogwood's", "output": "⠙⠕⠛⠺⠕⠕⠙⠄⠎" }, { "input": "dogwoods", "output": "⠙⠕⠛⠺⠕⠕⠙⠎" }, { "input": "doilies", "output": "⠙⠕⠊⠇⠊⠑⠎" }, { "input": "doily", "output": "⠙⠕⠊⠇⠽" }, { "input": "doily's", "output": "⠙⠕⠊⠇⠽⠄⠎" }, { "input": "doing", "output": "⠙⠕⠌" }, { "input": "doing's", "output": "⠙⠕⠌⠄⠎" }, { "input": "doings", "output": "⠙⠕⠌⠎" }, { "input": "doldrums", "output": "⠙⠕⠇⠙⠗⠥â â Ž" }, { "input": "doldrums's", "output": "⠙⠕⠇⠙⠗⠥â â Žâ „â Ž" }, { "input": "dole", "output": "⠙⠕⠇⠑" }, { "input": "dole's", "output": "⠙⠕⠇⠑⠄⠎" }, { "input": "doled", "output": "⠙⠕⠇⠫" }, { "input": "doleful", "output": "⠙⠕⠇⠑⠰⠇" }, { "input": "dolefully", "output": "⠙⠕⠇⠑⠰⠇⠇⠽" }, { "input": "dolefulness", "output": "⠙⠕⠇⠑⠰⠇⠰⠎" }, { "input": "dolefulness's", "output": "⠙⠕⠇⠑⠰⠇⠰⠎⠄⠎" }, { "input": "doles", "output": "⠙⠕⠇⠑⠎" }, { "input": "doling", "output": "⠙⠕⠇⠌" }, { "input": "doll", "output": "⠙⠕⠇⠇" }, { "input": "doll's", "output": "⠙⠕⠇⠇⠄⠎" }, { "input": "dollar", "output": "⠙⠕⠇⠇⠜" }, { "input": "dollar's", "output": "⠙⠕⠇⠇⠜⠄⠎" }, { "input": "dollars", "output": "⠙⠕⠇⠇⠜⠎" }, { "input": "dolled", "output": "⠙⠕⠇⠇⠫" }, { "input": "dollhouse", "output": "⠙⠕⠇⠇⠓⠳⠎⠑" }, { "input": "dollhouse's", "output": "⠙⠕⠇⠇⠓⠳⠎⠑⠄⠎" }, { "input": "dollhouses", "output": "⠙⠕⠇⠇⠓⠳⠎⠑⠎" }, { "input": "dollies", "output": "⠙⠕⠇⠇⠊⠑⠎" }, { "input": "dolling", "output": "⠙⠕⠇⠇⠌" }, { "input": "dollop", "output": "⠙⠕⠇⠇⠕â " }, { "input": "dollop's", "output": "⠙⠕⠇⠇⠕â â „â Ž" }, { "input": "dolloped", "output": "⠙⠕⠇⠇⠕â â «" }, { "input": "dolloping", "output": "⠙⠕⠇⠇⠕â â Œ" }, { "input": "dollops", "output": "⠙⠕⠇⠇⠕â â Ž" }, { "input": "dolls", "output": "⠙⠕⠇⠇⠎" }, { "input": "dolly", "output": "⠙⠕⠇⠇⠽" }, { "input": "dolly's", "output": "⠙⠕⠇⠇⠽⠄⠎" }, { "input": "dolmen", "output": "⠙⠕⠇â â ¢" }, { "input": "dolmen's", "output": "⠙⠕⠇â â ¢â „â Ž" }, { "input": "dolmens", "output": "⠙⠕⠇â â ¢â Ž" }, { "input": "dolomite", "output": "⠙⠕⠇⠕â â Šâ žâ ‘" }, { "input": "dolomite's", "output": "⠙⠕⠇⠕â â Šâ žâ ‘â „â Ž" }, { "input": "dolor", "output": "⠙⠕⠇⠕⠗" }, { "input": "dolor's", "output": "⠙⠕⠇⠕⠗⠄⠎" }, { "input": "dolorous", "output": "⠙⠕⠇⠕⠗⠳⠎" }, { "input": "dolorously", "output": "⠙⠕⠇⠕⠗⠳⠎⠇⠽" }, { "input": "dolphin", "output": "⠙⠕⠇â â “â ”" }, { "input": "dolphin's", "output": "⠙⠕⠇â â “⠔⠄⠎" }, { "input": "dolphins", "output": "⠙⠕⠇â â “⠔⠎" }, { "input": "dolt", "output": "⠙⠕⠇⠞" }, { "input": "dolt's", "output": "⠙⠕⠇⠞⠄⠎" }, { "input": "doltish", "output": "⠙⠕⠇⠞⠊⠩" }, { "input": "doltishly", "output": "⠙⠕⠇⠞⠊⠩⠇⠽" }, { "input": "doltishness", "output": "⠙⠕⠇⠞⠊⠩⠰⠎" }, { "input": "doltishness's", "output": "⠙⠕⠇⠞⠊⠩⠰⠎⠄⠎" }, { "input": "dolts", "output": "⠙⠕⠇⠞⠎" }, { "input": "domain", "output": "⠙⠕â â â ”" }, { "input": "domain's", "output": "⠙⠕â â â ”â „â Ž" }, { "input": "domains", "output": "⠙⠕â â â ”â Ž" }, { "input": "dome", "output": "⠙⠕â â ‘" }, { "input": "dome's", "output": "⠙⠕â â ‘â „â Ž" }, { "input": "domed", "output": "⠙⠕â â «" }, { "input": "domes", "output": "⠙⠕â â ‘â Ž" }, { "input": "domestic", "output": "⠙⠕â â ‘⠌⠊⠉" }, { "input": "domestic's", "output": "⠙⠕â â ‘⠌⠊⠉⠄⠎" }, { "input": "domestically", "output": "⠙⠕â â ‘⠌⠊⠉⠠⠽" }, { "input": "domesticate", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ ‘" }, { "input": "domesticated", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ «" }, { "input": "domesticates", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ ‘â Ž" }, { "input": "domesticating", "output": "⠙⠕â â ‘⠌⠊⠉â â žâ Œ" }, { "input": "domestication", "output": "⠙⠕â â ‘⠌⠊⠉⠠â " }, { "input": "domestication's", "output": "⠙⠕â â ‘⠌⠊⠉⠠â â „â Ž" }, { "input": "domesticity", "output": "⠙⠕â â ‘⠌⠊⠉⠰⠽" }, { "input": "domesticity's", "output": "⠙⠕â â ‘⠌⠊⠉⠰⠽⠄⠎" }, { "input": "domestics", "output": "⠙⠕â â ‘⠌⠊⠉⠎" }, { "input": "domicile", "output": "⠙⠕â â Šâ ‰â Šâ ‡â ‘" }, { "input": "domicile's", "output": "⠙⠕â â Šâ ‰â Šâ ‡â ‘â „â Ž" }, { "input": "domiciled", "output": "⠙⠕â â Šâ ‰â Šâ ‡â «" }, { "input": "domiciles", "output": "⠙⠕â â Šâ ‰â Šâ ‡â ‘â Ž" }, { "input": "domiciling", "output": "⠙⠕â â Šâ ‰â Šâ ‡â Œ" }, { "input": "dominance", "output": "⠙⠕â â ”⠨⠑" }, { "input": "dominance's", "output": "⠙⠕â â ”⠨⠑⠄⠎" }, { "input": "dominant", "output": "⠙⠕â â ”â â â ž" }, { "input": "dominant's", "output": "⠙⠕â â ”â â â žâ „â Ž" }, { "input": "dominantly", "output": "⠙⠕â â ”â â â žâ ‡â ½" }, { "input": "dominants", "output": "⠙⠕â â ”â â â žâ Ž" }, { "input": "dominate", "output": "⠙⠕â â ”â â žâ ‘" }, { "input": "dominated", "output": "⠙⠕â â ”â â žâ «" }, { "input": "dominates", "output": "⠙⠕â â ”â â žâ ‘â Ž" }, { "input": "dominating", "output": "⠙⠕â â ”â â žâ Œ" }, { "input": "domination", "output": "⠙⠕â â ”â  â " }, { "input": "domination's", "output": "⠙⠕â â ”â  â â „â Ž" }, { "input": "domineer", "output": "⠙⠕â â ”â ‘â »" }, { "input": "domineered", "output": "⠙⠕â â ”⠑⠻⠫" }, { "input": "domineering", "output": "⠙⠕â â ”⠑⠻⠌" }, { "input": "domineeringly", "output": "⠙⠕â â ”⠑⠻⠌⠇⠽" }, { "input": "domineers", "output": "⠙⠕â â ”⠑⠻⠎" }, { "input": "doming", "output": "⠙⠕â â Œ" }, { "input": "dominion", "output": "⠙⠕â â ”â Šâ •â " }, { "input": "dominion's", "output": "⠙⠕â â ”â Šâ •â â „â Ž" }, { "input": "dominions", "output": "⠙⠕â â ”â Šâ •â â Ž" }, { "input": "domino", "output": "⠙⠕â â ”â •" }, { "input": "domino's", "output": "⠙⠕â â ”â •â „â Ž" }, { "input": "dominoes", "output": "⠙⠕â â ”â •â ‘â Ž" }, { "input": "don", "output": "⠙⠕â " }, { "input": "don's", "output": "⠙⠕â â „â Ž" }, { "input": "dona", "output": "⠙⠕â â " }, { "input": "dona's", "output": "⠙⠕â â â „â Ž" }, { "input": "donas", "output": "⠙⠕â â â Ž" }, { "input": "donate", "output": "⠙⠕â â â žâ ‘" }, { "input": "donated", "output": "⠙⠕â â â žâ «" }, { "input": "donates", "output": "⠙⠕â â â žâ ‘â Ž" }, { "input": "donating", "output": "⠙⠕â â â žâ Œ" }, { "input": "donation", "output": "⠙⠕â â  â " }, { "input": "donation's", "output": "⠙⠕â â  â â „â Ž" }, { "input": "donations", "output": "⠙⠕â â  â â Ž" }, { "input": "done", "output": "â ™â â •" }, { "input": "dong", "output": "⠙⠰⠛" }, { "input": "dong's", "output": "⠙⠰⠛⠄⠎" }, { "input": "donged", "output": "⠙⠰⠛⠫" }, { "input": "donging", "output": "⠙⠰⠛⠌" }, { "input": "dongle", "output": "⠙⠰⠛⠇⠑" }, { "input": "dongle's", "output": "⠙⠰⠛⠇⠑⠄⠎" }, { "input": "dongles", "output": "⠙⠰⠛⠇⠑⠎" }, { "input": "dongs", "output": "⠙⠰⠛⠎" }, { "input": "donkey", "output": "⠙⠕â â …â ‘â ½" }, { "input": "donkey's", "output": "⠙⠕â â …⠑⠽⠄⠎" }, { "input": "donkeys", "output": "⠙⠕â â …⠑⠽⠎" }, { "input": "donned", "output": "⠙⠕â â â «" }, { "input": "donning", "output": "⠙⠕â â â Œ" }, { "input": "donnybrook", "output": "⠙⠕â â â ½â ƒâ —â •â •â …" }, { "input": "donnybrook's", "output": "⠙⠕â â â ½â ƒâ —â •â •â …â „â Ž" }, { "input": "donnybrooks", "output": "⠙⠕â â â ½â ƒâ —â •â •â …â Ž" }, { "input": "donor", "output": "⠙⠕â â •â —" }, { "input": "donor's", "output": "⠙⠕â â •â —â „â Ž" }, { "input": "donors", "output": "⠙⠕â â •â —â Ž" }, { "input": "dons", "output": "⠙⠕â â Ž" }, { "input": "doodad", "output": "⠙⠕⠕⠙â â ™" }, { "input": "doodad's", "output": "⠙⠕⠕⠙â â ™â „â Ž" }, { "input": "doodads", "output": "⠙⠕⠕⠙â â ™â Ž" }, { "input": "doodle", "output": "⠙⠕⠕⠙⠇⠑" }, { "input": "doodle's", "output": "⠙⠕⠕⠙⠇⠑⠄⠎" }, { "input": "doodlebug", "output": "⠙⠕⠕⠙⠇⠑⠃⠥⠛" }, { "input": "doodlebug's", "output": "⠙⠕⠕⠙⠇⠑⠃⠥⠛⠄⠎" }, { "input": "doodlebugs", "output": "⠙⠕⠕⠙⠇⠑⠃⠥⠛⠎" }, { "input": "doodled", "output": "⠙⠕⠕⠙⠇⠫" }, { "input": "doodler", "output": "⠙⠕⠕⠙⠇⠻" }, { "input": "doodler's", "output": "⠙⠕⠕⠙⠇⠻⠄⠎" }, { "input": "doodlers", "output": "⠙⠕⠕⠙⠇⠻⠎" }, { "input": "doodles", "output": "⠙⠕⠕⠙⠇⠑⠎" }, { "input": "doodling", "output": "⠙⠕⠕⠙⠇⠌" }, { "input": "doohickey", "output": "⠙⠕⠕⠓⠊⠉⠅⠑⠽" }, { "input": "doohickey's", "output": "⠙⠕⠕⠓⠊⠉⠅⠑⠽⠄⠎" }, { "input": "doohickeys", "output": "⠙⠕⠕⠓⠊⠉⠅⠑⠽⠎" }, { "input": "doom", "output": "⠙⠕⠕â " }, { "input": "doom's", "output": "⠙⠕⠕â â „â Ž" }, { "input": "doomed", "output": "⠙⠕⠕â â «" }, { "input": "dooming", "output": "⠙⠕⠕â â Œ" }, { "input": "dooms", "output": "⠙⠕⠕â â Ž" }, { "input": "doomsday", "output": "⠙⠕⠕â â Žâ â ™" }, { "input": "doomsday's", "output": "⠙⠕⠕â â Žâ â ™â „â Ž" }, { "input": "door", "output": "⠙⠕⠕⠗" }, { "input": "door's", "output": "⠙⠕⠕⠗⠄⠎" }, { "input": "doorbell", "output": "⠙⠕⠕⠗⠃⠑⠇⠇" }, { "input": "doorbell's", "output": "⠙⠕⠕⠗⠃⠑⠇⠇⠄⠎" }, { "input": "doorbells", "output": "⠙⠕⠕⠗⠃⠑⠇⠇⠎" }, { "input": "doorknob", "output": "⠙⠕⠕⠗⠅â â •â ƒ" }, { "input": "doorknob's", "output": "⠙⠕⠕⠗⠅â â •⠃⠄⠎" }, { "input": "doorknobs", "output": "⠙⠕⠕⠗⠅â â •⠃⠎" }, { "input": "doorman", "output": "⠙⠕⠕⠗â â â " }, { "input": "doorman's", "output": "⠙⠕⠕⠗â â â â „â Ž" }, { "input": "doormat", "output": "⠙⠕⠕⠗â â â ž" }, { "input": "doormat's", "output": "⠙⠕⠕⠗â â â žâ „â Ž" }, { "input": "doormats", "output": "⠙⠕⠕⠗â â â žâ Ž" }, { "input": "doormen", "output": "⠙⠕⠕⠗â â ¢" }, { "input": "doorplate", "output": "⠙⠕⠕⠗â â ‡â â žâ ‘" }, { "input": "doorplate's", "output": "⠙⠕⠕⠗â â ‡â â žâ ‘â „â Ž" }, { "input": "doorplates", "output": "⠙⠕⠕⠗â â ‡â â žâ ‘â Ž" }, { "input": "doors", "output": "⠙⠕⠕⠗⠎" }, { "input": "doorstep", "output": "⠙⠕⠕⠗⠌⠑â " }, { "input": "doorstep's", "output": "⠙⠕⠕⠗⠌⠑â â „â Ž" }, { "input": "doorsteps", "output": "⠙⠕⠕⠗⠌⠑â â Ž" }, { "input": "doorway", "output": "⠙⠕⠕⠗⠺â â ½" }, { "input": "doorway's", "output": "⠙⠕⠕⠗⠺â â ½â „â Ž" }, { "input": "doorways", "output": "⠙⠕⠕⠗⠺â â ½â Ž" }, { "input": "dooryard", "output": "⠙⠕⠕⠗⠽⠜⠙" }, { "input": "dooryard's", "output": "⠙⠕⠕⠗⠽⠜⠙⠄⠎" }, { "input": "dooryards", "output": "⠙⠕⠕⠗⠽⠜⠙⠎" }, { "input": "dopa", "output": "⠙⠕â â " }, { "input": "dopa's", "output": "⠙⠕â â â „â Ž" }, { "input": "dope", "output": "⠙⠕â â ‘" }, { "input": "dope's", "output": "⠙⠕â â ‘â „â Ž" }, { "input": "doped", "output": "⠙⠕â â «" }, { "input": "doper", "output": "⠙⠕â â »" }, { "input": "doper's", "output": "⠙⠕â â »â „â Ž" }, { "input": "dopers", "output": "⠙⠕â â »â Ž" }, { "input": "dopes", "output": "⠙⠕â â ‘â Ž" }, { "input": "dopey", "output": "⠙⠕â â ‘â ½" }, { "input": "dopier", "output": "⠙⠕â â Šâ »" }, { "input": "dopiest", "output": "⠙⠕â â Šâ ‘â Œ" }, { "input": "dopiness", "output": "⠙⠕â â Šâ °â Ž" }, { "input": "dopiness's", "output": "⠙⠕â â Šâ °â Žâ „â Ž" }, { "input": "doping", "output": "⠙⠕â â Œ" }, { "input": "doping's", "output": "⠙⠕â â Œâ „â Ž" }, { "input": "dories", "output": "⠙⠕⠗⠊⠑⠎" }, { "input": "dork", "output": "⠙⠕⠗⠅" }, { "input": "dork's", "output": "⠙⠕⠗⠅⠄⠎" }, { "input": "dorkier", "output": "⠙⠕⠗⠅⠊⠻" }, { "input": "dorkiest", "output": "⠙⠕⠗⠅⠊⠑⠌" }, { "input": "dorks", "output": "⠙⠕⠗⠅⠎" }, { "input": "dorky", "output": "⠙⠕⠗⠅⠽" }, { "input": "dorm", "output": "⠙⠕⠗â " }, { "input": "dorm's", "output": "⠙⠕⠗â â „â Ž" }, { "input": "dormancy", "output": "⠙⠕⠗â â â â ‰â ½" }, { "input": "dormancy's", "output": "⠙⠕⠗â â â â ‰â ½â „â Ž" }, { "input": "dormant", "output": "⠙⠕⠗â â â â ž" }, { "input": "dormer", "output": "⠙⠕⠗â â »" }, { "input": "dormer's", "output": "⠙⠕⠗â â »â „â Ž" }, { "input": "dormers", "output": "⠙⠕⠗â â »â Ž" }, { "input": "dormice", "output": "⠙⠕⠗â â Šâ ‰â ‘" }, { "input": "dormitories", "output": "⠙⠕⠗â â Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "dormitory", "output": "⠙⠕⠗â â Šâ žâ •â —â ½" }, { "input": "dormitory's", "output": "⠙⠕⠗â â Šâ žâ •⠗⠽⠄⠎" }, { "input": "dormouse", "output": "⠙⠕⠗â â ³â Žâ ‘" }, { "input": "dormouse's", "output": "⠙⠕⠗â â ³â Žâ ‘â „â Ž" }, { "input": "dorms", "output": "⠙⠕⠗â â Ž" }, { "input": "dorsal", "output": "⠙⠕⠗⠎â â ‡" }, { "input": "dorsally", "output": "⠙⠕⠗⠎⠠⠽" }, { "input": "dory", "output": "⠙⠕⠗⠽" }, { "input": "dory's", "output": "⠙⠕⠗⠽⠄⠎" }, { "input": "dos", "output": "⠙⠕⠎" }, { "input": "dosage", "output": "⠙⠕⠎â â ›â ‘" }, { "input": "dosage's", "output": "⠙⠕⠎â â ›â ‘â „â Ž" }, { "input": "dosages", "output": "⠙⠕⠎â â ›â ‘â Ž" }, { "input": "dose", "output": "⠙⠕⠎⠑" }, { "input": "dose's", "output": "⠙⠕⠎⠑⠄⠎" }, { "input": "dosed", "output": "⠙⠕⠎⠫" }, { "input": "doses", "output": "⠙⠕⠎⠑⠎" }, { "input": "dosimeter", "output": "⠙⠕⠎⠊â â ‘â žâ »" }, { "input": "dosimeter's", "output": "⠙⠕⠎⠊â â ‘⠞⠻⠄⠎" }, { "input": "dosimeters", "output": "⠙⠕⠎⠊â â ‘⠞⠻⠎" }, { "input": "dosing", "output": "⠙⠕⠎⠌" }, { "input": "dossier", "output": "⠙⠕⠎⠎⠊⠻" }, { "input": "dossier's", "output": "⠙⠕⠎⠎⠊⠻⠄⠎" }, { "input": "dossiers", "output": "⠙⠕⠎⠎⠊⠻⠎" }, { "input": "dot", "output": "⠙⠕⠞" }, { "input": "dot's", "output": "⠙⠕⠞⠄⠎" }, { "input": "dotage", "output": "⠙⠕⠞â â ›â ‘" }, { "input": "dotage's", "output": "⠙⠕⠞â â ›â ‘â „â Ž" }, { "input": "dotard", "output": "⠙⠕⠞⠜⠙" }, { "input": "dotard's", "output": "⠙⠕⠞⠜⠙⠄⠎" }, { "input": "dotards", "output": "⠙⠕⠞⠜⠙⠎" }, { "input": "dote", "output": "⠙⠕⠞⠑" }, { "input": "doted", "output": "⠙⠕⠞⠫" }, { "input": "doter", "output": "⠙⠕⠞⠻" }, { "input": "doter's", "output": "⠙⠕⠞⠻⠄⠎" }, { "input": "doters", "output": "⠙⠕⠞⠻⠎" }, { "input": "dotes", "output": "⠙⠕⠞⠑⠎" }, { "input": "doth", "output": "⠙⠕⠹" }, { "input": "doting", "output": "⠙⠕⠞⠌" }, { "input": "dotingly", "output": "⠙⠕⠞⠌⠇⠽" }, { "input": "dots", "output": "⠙⠕⠞⠎" }, { "input": "dotted", "output": "⠙⠕⠞⠞⠫" }, { "input": "dotting", "output": "⠙⠕⠞⠞⠌" }, { "input": "dotty", "output": "⠙⠕⠞⠞⠽" }, { "input": "double", "output": "⠙⠳⠼" }, { "input": "double's", "output": "⠙⠳⠼⠄⠎" }, { "input": "doubled", "output": "⠙⠳⠼⠙" }, { "input": "doubleheader", "output": "⠙⠳⠼⠓⠂⠙⠻" }, { "input": "doubleheader's", "output": "⠙⠳⠼⠓⠂⠙⠻⠄⠎" }, { "input": "doubleheaders", "output": "⠙⠳⠼⠓⠂⠙⠻⠎" }, { "input": "doubles", "output": "⠙⠳⠼⠎" }, { "input": "doublespeak's", "output": "⠙⠳⠼⠎â â ‚â …â „â Ž" }, { "input": "doublet", "output": "⠙⠳⠼⠞" }, { "input": "doublet's", "output": "⠙⠳⠼⠞⠄⠎" }, { "input": "doublets", "output": "⠙⠳⠼⠞⠎" }, { "input": "doubling", "output": "⠙⠳⠃⠇⠌" }, { "input": "doubloon", "output": "⠙⠳⠃⠇⠕⠕â " }, { "input": "doubloon's", "output": "⠙⠳⠃⠇⠕⠕â â „â Ž" }, { "input": "doubloons", "output": "⠙⠳⠃⠇⠕⠕â â Ž" }, { "input": "doubly", "output": "⠙⠳⠃⠇⠽" }, { "input": "doubt", "output": "⠙⠳⠃⠞" }, { "input": "doubt's", "output": "⠙⠳⠃⠞⠄⠎" }, { "input": "doubted", "output": "⠙⠳⠃⠞⠫" }, { "input": "doubter", "output": "⠙⠳⠃⠞⠻" }, { "input": "doubter's", "output": "⠙⠳⠃⠞⠻⠄⠎" }, { "input": "doubters", "output": "⠙⠳⠃⠞⠻⠎" }, { "input": "doubtful", "output": "⠙⠳⠃⠞⠰⠇" }, { "input": "doubtfully", "output": "⠙⠳⠃⠞⠰⠇⠇⠽" }, { "input": "doubtfulness", "output": "⠙⠳⠃⠞⠰⠇⠰⠎" }, { "input": "doubtfulness's", "output": "⠙⠳⠃⠞⠰⠇⠰⠎⠄⠎" }, { "input": "doubting", "output": "⠙⠳⠃⠞⠌" }, { "input": "doubtingly", "output": "⠙⠳⠃⠞⠌⠇⠽" }, { "input": "doubtless", "output": "⠙⠳⠃⠞⠨⠎" }, { "input": "doubtlessly", "output": "⠙⠳⠃⠞⠨⠎⠇⠽" }, { "input": "doubts", "output": "⠙⠳⠃⠞⠎" }, { "input": "douche", "output": "⠙⠳⠡⠑" }, { "input": "douche's", "output": "⠙⠳⠡⠑⠄⠎" }, { "input": "douched", "output": "⠙⠳⠡⠫" }, { "input": "douches", "output": "⠙⠳⠡⠑⠎" }, { "input": "douching", "output": "⠙⠳⠡⠌" }, { "input": "dough", "output": "⠙⠳⠣" }, { "input": "dough's", "output": "⠙⠳⠣⠄⠎" }, { "input": "doughier", "output": "⠙⠳⠣⠊⠻" }, { "input": "doughiest", "output": "⠙⠳⠣⠊⠑⠌" }, { "input": "doughnut", "output": "⠙⠳⠣â â ¥â ž" }, { "input": "doughnut's", "output": "⠙⠳⠣â â ¥â žâ „â Ž" }, { "input": "doughnuts", "output": "⠙⠳⠣â â ¥â žâ Ž" }, { "input": "doughtier", "output": "â ™â â ³â Šâ »" }, { "input": "doughtiest", "output": "â ™â â ³â Šâ ‘â Œ" }, { "input": "doughty", "output": "â ™â â ³â ½" }, { "input": "doughy", "output": "⠙⠳⠣⠽" }, { "input": "dour", "output": "⠙⠳⠗" }, { "input": "dourer", "output": "⠙⠳⠗⠻" }, { "input": "dourest", "output": "⠙⠳⠗⠑⠌" }, { "input": "dourly", "output": "⠙⠳⠗⠇⠽" }, { "input": "dourness", "output": "⠙⠳⠗⠰⠎" }, { "input": "dourness's", "output": "⠙⠳⠗⠰⠎⠄⠎" }, { "input": "douse", "output": "⠙⠳⠎⠑" }, { "input": "doused", "output": "⠙⠳⠎⠫" }, { "input": "douses", "output": "⠙⠳⠎⠑⠎" }, { "input": "dousing", "output": "⠙⠳⠎⠌" }, { "input": "dove", "output": "⠙⠕⠧⠑" }, { "input": "dove's", "output": "⠙⠕⠧⠑⠄⠎" }, { "input": "doves", "output": "⠙⠕⠧⠑⠎" }, { "input": "dovetail", "output": "⠙⠕⠧⠑⠞â â Šâ ‡" }, { "input": "dovetail's", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â „â Ž" }, { "input": "dovetailed", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â «" }, { "input": "dovetailing", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â Œ" }, { "input": "dovetails", "output": "⠙⠕⠧⠑⠞â â Šâ ‡â Ž" }, { "input": "dowager", "output": "⠙⠪â â ›â »" }, { "input": "dowager's", "output": "⠙⠪â â ›â »â „â Ž" }, { "input": "dowagers", "output": "⠙⠪â â ›â »â Ž" }, { "input": "dowdier", "output": "⠙⠪⠙⠊⠻" }, { "input": "dowdies", "output": "⠙⠪⠙⠊⠑⠎" }, { "input": "dowdiest", "output": "⠙⠪⠙⠊⠑⠌" }, { "input": "dowdily", "output": "⠙⠪⠙⠊⠇⠽" }, { "input": "dowdiness", "output": "⠙⠪⠙⠊⠰⠎" }, { "input": "dowdiness's", "output": "⠙⠪⠙⠊⠰⠎⠄⠎" }, { "input": "dowdy", "output": "⠙⠪⠙⠽" }, { "input": "dowel", "output": "⠙⠪⠑⠇" }, { "input": "dowel's", "output": "⠙⠪⠑⠇⠄⠎" }, { "input": "doweled", "output": "⠙⠪⠑⠇⠫" }, { "input": "doweling", "output": "⠙⠪⠑⠇⠌" }, { "input": "dowels", "output": "⠙⠪⠑⠇⠎" }, { "input": "dower", "output": "⠙⠪⠻" }, { "input": "dower's", "output": "⠙⠪⠻⠄⠎" }, { "input": "dowered", "output": "⠙⠪⠻⠫" }, { "input": "dowering", "output": "⠙⠪⠻⠌" }, { "input": "dowers", "output": "⠙⠪⠻⠎" }, { "input": "down", "output": "⠙⠪â " }, { "input": "down's", "output": "⠙⠪â â „â Ž" }, { "input": "downbeat", "output": "⠙⠪â â ƒâ ‚â ž" }, { "input": "downbeat's", "output": "⠙⠪â â ƒâ ‚â žâ „â Ž" }, { "input": "downbeats", "output": "⠙⠪â â ƒâ ‚â žâ Ž" }, { "input": "downcast", "output": "⠙⠪â â ‰â â Œ" }, { "input": "downdraft", "output": "⠙⠪â â ™â —â â ‹â ž" }, { "input": "downdraft's", "output": "⠙⠪â â ™â —â â ‹â žâ „â Ž" }, { "input": "downdrafts", "output": "⠙⠪â â ™â —â â ‹â žâ Ž" }, { "input": "downed", "output": "⠙⠪â â «" }, { "input": "downer", "output": "⠙⠪â â »" }, { "input": "downer's", "output": "⠙⠪â â »â „â Ž" }, { "input": "downers", "output": "⠙⠪â â »â Ž" }, { "input": "downfall", "output": "⠙⠪â â ‹â â ‡â ‡" }, { "input": "downfall's", "output": "⠙⠪â â ‹â â ‡â ‡â „â Ž" }, { "input": "downfallen", "output": "⠙⠪â â ‹â â ‡â ‡â ¢" }, { "input": "downfalls", "output": "⠙⠪â â ‹â â ‡â ‡â Ž" }, { "input": "downgrade", "output": "⠙⠪â â ›â —â â ™â ‘" }, { "input": "downgrade's", "output": "⠙⠪â â ›â —â â ™â ‘â „â Ž" }, { "input": "downgraded", "output": "⠙⠪â â ›â —â â ™â «" }, { "input": "downgrades", "output": "⠙⠪â â ›â —â â ™â ‘â Ž" }, { "input": "downgrading", "output": "⠙⠪â â ›â —â â ™â Œ" }, { "input": "downhearted", "output": "⠙⠪â â “⠑⠜⠞⠫" }, { "input": "downheartedly", "output": "⠙⠪â â “⠑⠜⠞⠫⠇⠽" }, { "input": "downheartedness", "output": "⠙⠪â â “⠑⠜⠞⠫⠰⠎" }, { "input": "downheartedness's", "output": "⠙⠪â â “⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "downhill", "output": "⠙⠪â â “⠊⠇⠇" }, { "input": "downhill's", "output": "⠙⠪â â “⠊⠇⠇⠄⠎" }, { "input": "downhills", "output": "⠙⠪â â “⠊⠇⠇⠎" }, { "input": "downier", "output": "⠙⠪â â Šâ »" }, { "input": "downiest", "output": "⠙⠪â â Šâ ‘â Œ" }, { "input": "downing", "output": "⠙⠪â â Œ" }, { "input": "download", "output": "⠙⠪â â ‡â •â â ™" }, { "input": "download's", "output": "⠙⠪â â ‡â •â â ™â „â Ž" }, { "input": "downloaded", "output": "⠙⠪â â ‡â •â â ™â «" }, { "input": "downloading", "output": "⠙⠪â â ‡â •â â ™â Œ" }, { "input": "downloads", "output": "⠙⠪â â ‡â •â â ™â Ž" }, { "input": "downplay", "output": "⠙⠪â â â ‡â â ½" }, { "input": "downplayed", "output": "⠙⠪â â â ‡â â ½â «" }, { "input": "downplaying", "output": "⠙⠪â â â ‡â â ½â Œ" }, { "input": "downplays", "output": "⠙⠪â â â ‡â â ½â Ž" }, { "input": "downpour", "output": "⠙⠪â â â ³â —" }, { "input": "downpour's", "output": "⠙⠪â â â ³â —â „â Ž" }, { "input": "downpours", "output": "⠙⠪â â â ³â —â Ž" }, { "input": "downrange", "output": "⠙⠪â â —â â â ›â ‘" }, { "input": "downright", "output": "⠙⠪â â â —" }, { "input": "downs", "output": "⠙⠪â â Ž" }, { "input": "downscale", "output": "⠙⠪â â Žâ ‰â â ‡â ‘" }, { "input": "downside's", "output": "⠙⠪â â Žâ Šâ ™â ‘â „â Ž" }, { "input": "downsides", "output": "⠙⠪â â Žâ Šâ ™â ‘â Ž" }, { "input": "downsize", "output": "⠙⠪â â Žâ Šâ µâ ‘" }, { "input": "downsized", "output": "⠙⠪â â Žâ Šâ µâ «" }, { "input": "downsizes", "output": "⠙⠪â â Žâ Šâ µâ ‘â Ž" }, { "input": "downsizing", "output": "⠙⠪â â Žâ Šâ µâ Œ" }, { "input": "downsizing's", "output": "⠙⠪â â Žâ Šâ µâ Œâ „â Ž" }, { "input": "downstage", "output": "⠙⠪â â Œâ â ›â ‘" }, { "input": "downstairs", "output": "⠙⠪â â Œâ â Šâ —â Ž" }, { "input": "downstairs's", "output": "⠙⠪â â Œâ â Šâ —â Žâ „â Ž" }, { "input": "downstate", "output": "⠙⠪â â Œâ â žâ ‘" }, { "input": "downstate's", "output": "⠙⠪â â Œâ â žâ ‘â „â Ž" }, { "input": "downstream", "output": "⠙⠪â â Œâ —â ‚â " }, { "input": "downswing", "output": "⠙⠪â â Žâ ºâ Œ" }, { "input": "downswing's", "output": "⠙⠪â â Žâ ºâ Œâ „â Ž" }, { "input": "downswings", "output": "⠙⠪â â Žâ ºâ Œâ Ž" }, { "input": "downtime", "output": "⠙⠪â â â ž" }, { "input": "downtime's", "output": "⠙⠪â â â žâ „â Ž" }, { "input": "downtown", "output": "⠙⠪â â žâ ªâ " }, { "input": "downtown's", "output": "⠙⠪â â žâ ªâ â „â Ž" }, { "input": "downtrend's", "output": "⠙⠪â â žâ —⠢⠙⠄⠎" }, { "input": "downtrends", "output": "⠙⠪â â žâ —⠢⠙⠎" }, { "input": "downtrodden", "output": "⠙⠪â â žâ —⠕⠲⠢" }, { "input": "downturn", "output": "⠙⠪â â žâ ¥â —â " }, { "input": "downturn's", "output": "⠙⠪â â žâ ¥â —â â „â Ž" }, { "input": "downturns", "output": "⠙⠪â â žâ ¥â —â â Ž" }, { "input": "downward", "output": "⠙⠪â â ºâ œâ ™" }, { "input": "downwards", "output": "⠙⠪â â ºâ œâ ™â Ž" }, { "input": "downwind", "output": "⠙⠪â â ºâ ”â ™" }, { "input": "downy", "output": "⠙⠪â â ½" }, { "input": "dowries", "output": "⠙⠪⠗⠊⠑⠎" }, { "input": "dowry", "output": "⠙⠪⠗⠽" }, { "input": "dowry's", "output": "⠙⠪⠗⠽⠄⠎" }, { "input": "dowse", "output": "⠙⠪⠎⠑" }, { "input": "dowsed", "output": "⠙⠪⠎⠫" }, { "input": "dowses", "output": "⠙⠪⠎⠑⠎" }, { "input": "dowsing", "output": "⠙⠪⠎⠌" }, { "input": "doxologies", "output": "⠙⠕⠭⠕⠇⠕⠛⠊⠑⠎" }, { "input": "doxology", "output": "⠙⠕⠭⠕⠇⠕⠛⠽" }, { "input": "doxology's", "output": "⠙⠕⠭⠕⠇⠕⠛⠽⠄⠎" }, { "input": "doyen", "output": "⠙⠕⠽⠢" }, { "input": "doyen's", "output": "⠙⠕⠽⠢⠄⠎" }, { "input": "doyens", "output": "⠙⠕⠽⠢⠎" }, { "input": "doze", "output": "⠙⠕⠵⠑" }, { "input": "doze's", "output": "⠙⠕⠵⠑⠄⠎" }, { "input": "dozed", "output": "⠙⠕⠵⠫" }, { "input": "dozen", "output": "⠙⠕⠵⠢" }, { "input": "dozen's", "output": "⠙⠕⠵⠢⠄⠎" }, { "input": "dozens", "output": "⠙⠕⠵⠢⠎" }, { "input": "dozenth", "output": "⠙⠕⠵⠢⠹" }, { "input": "dozes", "output": "⠙⠕⠵⠑⠎" }, { "input": "dozing", "output": "⠙⠕⠵⠌" }, { "input": "drab", "output": "⠙⠗â â ƒ" }, { "input": "drab's", "output": "⠙⠗â â ƒâ „â Ž" }, { "input": "drabber", "output": "⠙⠗â â †â »" }, { "input": "drabbest", "output": "⠙⠗â â †â ‘â Œ" }, { "input": "drably", "output": "⠙⠗â â ƒâ ‡â ½" }, { "input": "drabness", "output": "⠙⠗â â ƒâ °â Ž" }, { "input": "drabness's", "output": "⠙⠗â â ƒâ °â Žâ „â Ž" }, { "input": "drabs", "output": "⠙⠗â â ƒâ Ž" }, { "input": "drachma", "output": "⠙⠗â â ¡â â " }, { "input": "drachma's", "output": "⠙⠗â â ¡â â â „â Ž" }, { "input": "drachmas", "output": "⠙⠗â â ¡â â â Ž" }, { "input": "draconian", "output": "⠙⠗â â ‰â •â â Šâ â " }, { "input": "draft", "output": "⠙⠗â â ‹â ž" }, { "input": "draft's", "output": "⠙⠗â â ‹â žâ „â Ž" }, { "input": "drafted", "output": "⠙⠗â â ‹â žâ «" }, { "input": "draftee", "output": "⠙⠗â â ‹â žâ ‘â ‘" }, { "input": "draftee's", "output": "⠙⠗â â ‹â žâ ‘â ‘â „â Ž" }, { "input": "draftees", "output": "⠙⠗â â ‹â žâ ‘â ‘â Ž" }, { "input": "drafter", "output": "⠙⠗â â ‹â žâ »" }, { "input": "drafter's", "output": "⠙⠗â â ‹â žâ »â „â Ž" }, { "input": "drafters", "output": "⠙⠗â â ‹â žâ »â Ž" }, { "input": "draftier", "output": "⠙⠗â â ‹â žâ Šâ »" }, { "input": "draftiest", "output": "⠙⠗â â ‹â žâ Šâ ‘â Œ" }, { "input": "draftily", "output": "⠙⠗â â ‹â žâ Šâ ‡â ½" }, { "input": "draftiness", "output": "⠙⠗â â ‹â žâ Šâ °â Ž" }, { "input": "draftiness's", "output": "⠙⠗â â ‹â žâ Šâ °â Žâ „â Ž" }, { "input": "drafting", "output": "⠙⠗â â ‹â žâ Œ" }, { "input": "drafting's", "output": "⠙⠗â â ‹â žâ Œâ „â Ž" }, { "input": "drafts", "output": "⠙⠗â â ‹â žâ Ž" }, { "input": "draftsman", "output": "⠙⠗â â ‹â žâ Žâ â â " }, { "input": "draftsman's", "output": "⠙⠗â â ‹â žâ Žâ â â â „â Ž" }, { "input": "draftsmanship", "output": "⠙⠗â â ‹â žâ Žâ â â â ©â Šâ " }, { "input": "draftsmanship's", "output": "⠙⠗â â ‹â žâ Žâ â â â ©â Šâ â „â Ž" }, { "input": "draftsmen", "output": "⠙⠗â â ‹â žâ Žâ â ¢" }, { "input": "draftswoman", "output": "⠙⠗â â ‹â žâ Žâ ºâ •â â â " }, { "input": "draftswoman's", "output": "⠙⠗â â ‹â žâ Žâ ºâ •â â â â „â Ž" }, { "input": "draftswomen", "output": "⠙⠗â â ‹â žâ Žâ ºâ •â â ¢" }, { "input": "drafty", "output": "⠙⠗â â ‹â žâ ½" }, { "input": "drag", "output": "⠙⠗â â ›" }, { "input": "drag's", "output": "⠙⠗â â ›â „â Ž" }, { "input": "dragged", "output": "⠙⠗â â ¶â «" }, { "input": "draggier", "output": "⠙⠗â â ¶â Šâ »" }, { "input": "draggiest", "output": "⠙⠗â â ¶â Šâ ‘â Œ" }, { "input": "dragging", "output": "⠙⠗â â ¶â Œ" }, { "input": "draggy", "output": "⠙⠗â â ¶â ½" }, { "input": "dragnet", "output": "⠙⠗â â ›â â ‘â ž" }, { "input": "dragnet's", "output": "⠙⠗â â ›â â ‘â žâ „â Ž" }, { "input": "dragnets", "output": "⠙⠗â â ›â â ‘â žâ Ž" }, { "input": "dragon", "output": "⠙⠗â â ›â •â " }, { "input": "dragon's", "output": "⠙⠗â â ›â •â â „â Ž" }, { "input": "dragonflies", "output": "⠙⠗â â ›â •â â ‹â ‡â Šâ ‘â Ž" }, { "input": "dragonfly", "output": "⠙⠗â â ›â •â â ‹â ‡â ½" }, { "input": "dragonfly's", "output": "⠙⠗â â ›â •â â ‹â ‡â ½â „â Ž" }, { "input": "dragons", "output": "⠙⠗â â ›â •â â Ž" }, { "input": "dragoon", "output": "⠙⠗â â ›â •â •â " }, { "input": "dragoon's", "output": "⠙⠗â â ›â •â •â â „â Ž" }, { "input": "dragooned", "output": "⠙⠗â â ›â •â •â â «" }, { "input": "dragooning", "output": "⠙⠗â â ›â •â •â â Œ" }, { "input": "dragoons", "output": "⠙⠗â â ›â •â •â â Ž" }, { "input": "drags", "output": "⠙⠗â â ›â Ž" }, { "input": "drain", "output": "⠙⠗â â ”" }, { "input": "drain's", "output": "⠙⠗â â ”â „â Ž" }, { "input": "drainage", "output": "⠙⠗â â ”â â ›â ‘" }, { "input": "drainage's", "output": "⠙⠗â â ”â â ›â ‘â „â Ž" }, { "input": "drained", "output": "⠙⠗â â ”â «" }, { "input": "drainer", "output": "⠙⠗â â ”â »" }, { "input": "drainer's", "output": "⠙⠗â â ”⠻⠄⠎" }, { "input": "drainers", "output": "⠙⠗â â ”⠻⠎" }, { "input": "draining", "output": "⠙⠗â â ”â Œ" }, { "input": "drainpipe", "output": "⠙⠗â â ”â â Šâ â ‘" }, { "input": "drainpipe's", "output": "⠙⠗â â ”â â Šâ â ‘â „â Ž" }, { "input": "drainpipes", "output": "⠙⠗â â ”â â Šâ â ‘â Ž" }, { "input": "drains", "output": "⠙⠗â â ”â Ž" }, { "input": "drake", "output": "⠙⠗â â …â ‘" }, { "input": "drake's", "output": "⠙⠗â â …â ‘â „â Ž" }, { "input": "drakes", "output": "⠙⠗â â …â ‘â Ž" }, { "input": "dram", "output": "⠙⠗â â " }, { "input": "dram's", "output": "⠙⠗â â â „â Ž" }, { "input": "drama", "output": "⠙⠗â â â " }, { "input": "drama's", "output": "⠙⠗â â â â „â Ž" }, { "input": "dramas", "output": "⠙⠗â â â â Ž" }, { "input": "dramatic", "output": "⠙⠗â â â â žâ Šâ ‰" }, { "input": "dramatically", "output": "⠙⠗â â â â žâ Šâ ‰â  â ½" }, { "input": "dramatics", "output": "⠙⠗â â â â žâ Šâ ‰â Ž" }, { "input": "dramatics's", "output": "⠙⠗â â â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "dramatist", "output": "⠙⠗â â â â žâ Šâ Œ" }, { "input": "dramatist's", "output": "⠙⠗â â â â žâ Šâ Œâ „â Ž" }, { "input": "dramatists", "output": "⠙⠗â â â â žâ Šâ Œâ Ž" }, { "input": "dramatization", "output": "⠙⠗â â â â žâ Šâ µâ  â " }, { "input": "dramatization's", "output": "⠙⠗â â â â žâ Šâ µâ  â â „â Ž" }, { "input": "dramatizations", "output": "⠙⠗â â â â žâ Šâ µâ  â â Ž" }, { "input": "dramatize", "output": "⠙⠗â â â â žâ Šâ µâ ‘" }, { "input": "dramatized", "output": "⠙⠗â â â â žâ Šâ µâ «" }, { "input": "dramatizes", "output": "⠙⠗â â â â žâ Šâ µâ ‘â Ž" }, { "input": "dramatizing", "output": "⠙⠗â â â â žâ Šâ µâ Œ" }, { "input": "drams", "output": "⠙⠗â â â Ž" }, { "input": "drank", "output": "⠙⠗â â â …" }, { "input": "drape", "output": "⠙⠗â â â ‘" }, { "input": "drape's", "output": "⠙⠗â â â ‘â „â Ž" }, { "input": "draped", "output": "⠙⠗â â â «" }, { "input": "draperies", "output": "⠙⠗â â â »â Šâ ‘â Ž" }, { "input": "drapery", "output": "⠙⠗â â â »â ½" }, { "input": "drapery's", "output": "⠙⠗â â â »â ½â „â Ž" }, { "input": "drapes", "output": "⠙⠗â â â ‘â Ž" }, { "input": "draping", "output": "⠙⠗â â â Œ" }, { "input": "drastic", "output": "⠙⠗â â Œâ Šâ ‰" }, { "input": "drastically", "output": "⠙⠗â â Œâ Šâ ‰â  â ½" }, { "input": "draw", "output": "⠙⠗â â º" }, { "input": "draw's", "output": "⠙⠗â â ºâ „â Ž" }, { "input": "drawback", "output": "⠙⠗â â ºâ ƒâ â ‰â …" }, { "input": "drawback's", "output": "⠙⠗â â ºâ ƒâ â ‰â …â „â Ž" }, { "input": "drawbacks", "output": "⠙⠗â â ºâ ƒâ â ‰â …â Ž" }, { "input": "drawbridge", "output": "⠙⠗â â ºâ ƒâ —⠊⠙⠛⠑" }, { "input": "drawbridge's", "output": "⠙⠗â â ºâ ƒâ —⠊⠙⠛⠑⠄⠎" }, { "input": "drawbridges", "output": "⠙⠗â â ºâ ƒâ —⠊⠙⠛⠑⠎" }, { "input": "drawer", "output": "⠙⠗â â ºâ »" }, { "input": "drawer's", "output": "⠙⠗â â ºâ »â „â Ž" }, { "input": "drawers", "output": "⠙⠗â â ºâ »â Ž" }, { "input": "drawing", "output": "⠙⠗â â ºâ Œ" }, { "input": "drawing's", "output": "⠙⠗â â ºâ Œâ „â Ž" }, { "input": "drawings", "output": "⠙⠗â â ºâ Œâ Ž" }, { "input": "drawl", "output": "⠙⠗â â ºâ ‡" }, { "input": "drawl's", "output": "⠙⠗â â ºâ ‡â „â Ž" }, { "input": "drawled", "output": "⠙⠗â â ºâ ‡â «" }, { "input": "drawling", "output": "⠙⠗â â ºâ ‡â Œ" }, { "input": "drawls", "output": "⠙⠗â â ºâ ‡â Ž" }, { "input": "drawn", "output": "⠙⠗â â ºâ " }, { "input": "draws", "output": "⠙⠗â â ºâ Ž" }, { "input": "drawstring", "output": "⠙⠗â â ºâ Œâ —â Œ" }, { "input": "drawstring's", "output": "⠙⠗â â ºâ Œâ —⠌⠄⠎" }, { "input": "drawstrings", "output": "⠙⠗â â ºâ Œâ —⠌⠎" }, { "input": "dray", "output": "⠙⠗â â ½" }, { "input": "dray's", "output": "⠙⠗â â ½â „â Ž" }, { "input": "drays", "output": "⠙⠗â â ½â Ž" }, { "input": "dread", "output": "⠙⠗⠂⠙" }, { "input": "dread's", "output": "⠙⠗⠂⠙⠄⠎" }, { "input": "dreaded", "output": "⠙⠗⠂⠙⠫" }, { "input": "dreadful", "output": "⠙⠗⠂⠙⠰⠇" }, { "input": "dreadfully", "output": "⠙⠗⠂⠙⠰⠇⠇⠽" }, { "input": "dreadfulness", "output": "⠙⠗⠂⠙⠰⠇⠰⠎" }, { "input": "dreadfulness's", "output": "⠙⠗⠂⠙⠰⠇⠰⠎⠄⠎" }, { "input": "dreading", "output": "⠙⠗⠂⠙⠌" }, { "input": "dreadlocks", "output": "⠙⠗⠂⠙⠇⠕⠉⠅⠎" }, { "input": "dreadlocks's", "output": "⠙⠗⠂⠙⠇⠕⠉⠅⠎⠄⠎" }, { "input": "dreadnought", "output": "⠙⠗⠂⠙â â â ³" }, { "input": "dreadnought's", "output": "⠙⠗⠂⠙â â â ³â „â Ž" }, { "input": "dreadnoughts", "output": "⠙⠗⠂⠙â â â ³â Ž" }, { "input": "dreads", "output": "⠙⠗⠂⠙⠎" }, { "input": "dream", "output": "⠙⠗⠂â " }, { "input": "dream's", "output": "⠙⠗⠂â â „â Ž" }, { "input": "dreamed", "output": "⠙⠗⠂â â «" }, { "input": "dreamer", "output": "⠙⠗⠂â â »" }, { "input": "dreamer's", "output": "⠙⠗⠂â â »â „â Ž" }, { "input": "dreamers", "output": "⠙⠗⠂â â »â Ž" }, { "input": "dreamier", "output": "⠙⠗⠂â â Šâ »" }, { "input": "dreamiest", "output": "⠙⠗⠂â â Šâ ‘â Œ" }, { "input": "dreamily", "output": "⠙⠗⠂â â Šâ ‡â ½" }, { "input": "dreaminess's", "output": "⠙⠗⠂â â Šâ °â Žâ „â Ž" }, { "input": "dreaming", "output": "⠙⠗⠂â â Œ" }, { "input": "dreamland", "output": "⠙⠗⠂â â ‡â ¯" }, { "input": "dreamland's", "output": "⠙⠗⠂â â ‡â ¯â „â Ž" }, { "input": "dreamless", "output": "⠙⠗⠂â â ¨â Ž" }, { "input": "dreamlike", "output": "⠙⠗⠂â â ‡â Šâ …â ‘" }, { "input": "dreams", "output": "⠙⠗⠂â â Ž" }, { "input": "dreamworld", "output": "⠙⠗⠂â â ¸â º" }, { "input": "dreamworld's", "output": "⠙⠗⠂â â ¸â ºâ „â Ž" }, { "input": "dreamworlds", "output": "⠙⠗⠂â â ¸â ºâ Ž" }, { "input": "dreamy", "output": "⠙⠗⠂â â ½" }, { "input": "drearier", "output": "⠙⠗⠑⠜⠊⠻" }, { "input": "dreariest", "output": "⠙⠗⠑⠜⠊⠑⠌" }, { "input": "drearily", "output": "⠙⠗⠑⠜⠊⠇⠽" }, { "input": "dreariness", "output": "⠙⠗⠑⠜⠊⠰⠎" }, { "input": "dreariness's", "output": "⠙⠗⠑⠜⠊⠰⠎⠄⠎" }, { "input": "dreary", "output": "⠙⠗⠑⠜⠽" }, { "input": "dredge", "output": "⠙⠗⠫⠛⠑" }, { "input": "dredge's", "output": "⠙⠗⠫⠛⠑⠄⠎" }, { "input": "dredged", "output": "⠙⠗⠫⠛⠫" }, { "input": "dredger", "output": "⠙⠗⠫⠛⠻" }, { "input": "dredger's", "output": "⠙⠗⠫⠛⠻⠄⠎" }, { "input": "dredgers", "output": "⠙⠗⠫⠛⠻⠎" }, { "input": "dredges", "output": "⠙⠗⠫⠛⠑⠎" }, { "input": "dredging", "output": "⠙⠗⠫⠛⠌" }, { "input": "dregs", "output": "⠙⠗⠑⠛⠎" }, { "input": "dregs's", "output": "⠙⠗⠑⠛⠎⠄⠎" }, { "input": "drench", "output": "⠙⠗⠢⠡" }, { "input": "drenched", "output": "⠙⠗⠢⠡⠫" }, { "input": "drenches", "output": "⠙⠗⠢⠡⠑⠎" }, { "input": "drenching", "output": "⠙⠗⠢⠡⠌" }, { "input": "dress", "output": "⠙⠗⠑⠎⠎" }, { "input": "dress's", "output": "⠙⠗⠑⠎⠎⠄⠎" }, { "input": "dressage", "output": "⠙⠗⠑⠎⠎â â ›â ‘" }, { "input": "dressage's", "output": "⠙⠗⠑⠎⠎â â ›â ‘â „â Ž" }, { "input": "dressed", "output": "⠙⠗⠑⠎⠎⠫" }, { "input": "dresser", "output": "⠙⠗⠑⠎⠎⠻" }, { "input": "dresser's", "output": "⠙⠗⠑⠎⠎⠻⠄⠎" }, { "input": "dressers", "output": "⠙⠗⠑⠎⠎⠻⠎" }, { "input": "dresses", "output": "⠙⠗⠑⠎⠎⠑⠎" }, { "input": "dressier", "output": "⠙⠗⠑⠎⠎⠊⠻" }, { "input": "dressiest", "output": "⠙⠗⠑⠎⠎⠊⠑⠌" }, { "input": "dressiness", "output": "⠙⠗⠑⠎⠎⠊⠰⠎" }, { "input": "dressiness's", "output": "⠙⠗⠑⠎⠎⠊⠰⠎⠄⠎" }, { "input": "dressing", "output": "⠙⠗⠑⠎⠎⠌" }, { "input": "dressing's", "output": "⠙⠗⠑⠎⠎⠌⠄⠎" }, { "input": "dressings", "output": "⠙⠗⠑⠎⠎⠌⠎" }, { "input": "dressmaker", "output": "⠙⠗⠑⠎⠎â â â …â »" }, { "input": "dressmaker's", "output": "⠙⠗⠑⠎⠎â â â …⠻⠄⠎" }, { "input": "dressmakers", "output": "⠙⠗⠑⠎⠎â â â …⠻⠎" }, { "input": "dressmaking", "output": "⠙⠗⠑⠎⠎â â â …â Œ" }, { "input": "dressmaking's", "output": "⠙⠗⠑⠎⠎â â â …⠌⠄⠎" }, { "input": "dressy", "output": "⠙⠗⠑⠎⠎⠽" }, { "input": "drew", "output": "⠙⠗⠑⠺" }, { "input": "dribble", "output": "⠙⠗⠊⠃⠼" }, { "input": "dribble's", "output": "⠙⠗⠊⠃⠼⠄⠎" }, { "input": "dribbled", "output": "⠙⠗⠊⠃⠼⠙" }, { "input": "dribbler", "output": "⠙⠗⠊⠃⠼⠗" }, { "input": "dribbler's", "output": "⠙⠗⠊⠃⠼⠗⠄⠎" }, { "input": "dribblers", "output": "⠙⠗⠊⠃⠼⠗⠎" }, { "input": "dribbles", "output": "⠙⠗⠊⠃⠼⠎" }, { "input": "dribbling", "output": "⠙⠗⠊⠆⠇⠌" }, { "input": "driblet", "output": "⠙⠗⠊⠼⠞" }, { "input": "driblet's", "output": "⠙⠗⠊⠼⠞⠄⠎" }, { "input": "driblets", "output": "⠙⠗⠊⠼⠞⠎" }, { "input": "dried", "output": "⠙⠗⠊⠫" }, { "input": "drier", "output": "⠙⠗⠊⠻" }, { "input": "drier's", "output": "⠙⠗⠊⠻⠄⠎" }, { "input": "driers", "output": "⠙⠗⠊⠻⠎" }, { "input": "dries", "output": "⠙⠗⠊⠑⠎" }, { "input": "driest", "output": "⠙⠗⠊⠑⠌" }, { "input": "drift", "output": "⠙⠗⠊⠋⠞" }, { "input": "drift's", "output": "⠙⠗⠊⠋⠞⠄⠎" }, { "input": "drifted", "output": "⠙⠗⠊⠋⠞⠫" }, { "input": "drifter", "output": "⠙⠗⠊⠋⠞⠻" }, { "input": "drifter's", "output": "⠙⠗⠊⠋⠞⠻⠄⠎" }, { "input": "drifters", "output": "⠙⠗⠊⠋⠞⠻⠎" }, { "input": "drifting", "output": "⠙⠗⠊⠋⠞⠌" }, { "input": "drifts", "output": "⠙⠗⠊⠋⠞⠎" }, { "input": "driftwood", "output": "⠙⠗⠊⠋⠞⠺⠕⠕⠙" }, { "input": "driftwood's", "output": "⠙⠗⠊⠋⠞⠺⠕⠕⠙⠄⠎" }, { "input": "drill", "output": "⠙⠗⠊⠇⠇" }, { "input": "drill's", "output": "⠙⠗⠊⠇⠇⠄⠎" }, { "input": "drilled", "output": "⠙⠗⠊⠇⠇⠫" }, { "input": "driller", "output": "⠙⠗⠊⠇⠇⠻" }, { "input": "driller's", "output": "⠙⠗⠊⠇⠇⠻⠄⠎" }, { "input": "drillers", "output": "⠙⠗⠊⠇⠇⠻⠎" }, { "input": "drilling", "output": "⠙⠗⠊⠇⠇⠌" }, { "input": "drillmaster", "output": "⠙⠗⠊⠇⠇â â â Œâ »" }, { "input": "drillmaster's", "output": "⠙⠗⠊⠇⠇â â â Œâ »â „â Ž" }, { "input": "drillmasters", "output": "⠙⠗⠊⠇⠇â â â Œâ »â Ž" }, { "input": "drills", "output": "⠙⠗⠊⠇⠇⠎" }, { "input": "drink", "output": "⠙⠗⠔⠅" }, { "input": "drink's", "output": "⠙⠗⠔⠅⠄⠎" }, { "input": "drinkable", "output": "⠙⠗⠔⠅â â ¼" }, { "input": "drinker", "output": "⠙⠗⠔⠅⠻" }, { "input": "drinker's", "output": "⠙⠗⠔⠅⠻⠄⠎" }, { "input": "drinkers", "output": "⠙⠗⠔⠅⠻⠎" }, { "input": "drinking", "output": "⠙⠗⠔⠅⠌" }, { "input": "drinkings", "output": "⠙⠗⠔⠅⠌⠎" }, { "input": "drinks", "output": "⠙⠗⠔⠅⠎" }, { "input": "drip", "output": "⠙⠗⠊â " }, { "input": "drip's", "output": "⠙⠗⠊â â „â Ž" }, { "input": "dripped", "output": "⠙⠗⠊â â â «" }, { "input": "dripping", "output": "⠙⠗⠊â â â Œ" }, { "input": "dripping's", "output": "⠙⠗⠊â â â Œâ „â Ž" }, { "input": "drippings", "output": "⠙⠗⠊â â â Œâ Ž" }, { "input": "drips", "output": "⠙⠗⠊â â Ž" }, { "input": "drive", "output": "⠙⠗⠊⠧⠑" }, { "input": "drive's", "output": "⠙⠗⠊⠧⠑⠄⠎" }, { "input": "drivel", "output": "⠙⠗⠊⠧⠑⠇" }, { "input": "drivel's", "output": "⠙⠗⠊⠧⠑⠇⠄⠎" }, { "input": "driveled", "output": "⠙⠗⠊⠧⠑⠇⠫" }, { "input": "driveler", "output": "⠙⠗⠊⠧⠑⠇⠻" }, { "input": "driveler's", "output": "⠙⠗⠊⠧⠑⠇⠻⠄⠎" }, { "input": "drivelers", "output": "⠙⠗⠊⠧⠑⠇⠻⠎" }, { "input": "driveling", "output": "⠙⠗⠊⠧⠑⠇⠌" }, { "input": "drivels", "output": "⠙⠗⠊⠧⠑⠇⠎" }, { "input": "driven", "output": "⠙⠗⠊⠧⠢" }, { "input": "driver", "output": "⠙⠗⠊⠧⠻" }, { "input": "driver's", "output": "⠙⠗⠊⠧⠻⠄⠎" }, { "input": "drivers", "output": "⠙⠗⠊⠧⠻⠎" }, { "input": "drives", "output": "⠙⠗⠊⠧⠑⠎" }, { "input": "driveway", "output": "⠙⠗⠊⠧⠑⠺â â ½" }, { "input": "driveway's", "output": "⠙⠗⠊⠧⠑⠺â â ½â „â Ž" }, { "input": "driveways", "output": "⠙⠗⠊⠧⠑⠺â â ½â Ž" }, { "input": "driving", "output": "⠙⠗⠊⠧⠌" }, { "input": "drivings", "output": "⠙⠗⠊⠧⠌⠎" }, { "input": "drizzle", "output": "⠙⠗⠊⠵⠵⠇⠑" }, { "input": "drizzle's", "output": "⠙⠗⠊⠵⠵⠇⠑⠄⠎" }, { "input": "drizzled", "output": "⠙⠗⠊⠵⠵⠇⠫" }, { "input": "drizzles", "output": "⠙⠗⠊⠵⠵⠇⠑⠎" }, { "input": "drizzlier", "output": "⠙⠗⠊⠵⠵⠇⠊⠻" }, { "input": "drizzliest", "output": "⠙⠗⠊⠵⠵⠇⠊⠑⠌" }, { "input": "drizzling", "output": "⠙⠗⠊⠵⠵⠇⠌" }, { "input": "drizzly", "output": "⠙⠗⠊⠵⠵⠇⠽" }, { "input": "drogue", "output": "⠙⠗⠕⠛⠥⠑" }, { "input": "drogue's", "output": "⠙⠗⠕⠛⠥⠑⠄⠎" }, { "input": "drogues", "output": "⠙⠗⠕⠛⠥⠑⠎" }, { "input": "droll", "output": "⠙⠗⠕⠇⠇" }, { "input": "droller", "output": "⠙⠗⠕⠇⠇⠻" }, { "input": "drolleries", "output": "⠙⠗⠕⠇⠇⠻⠊⠑⠎" }, { "input": "drollery", "output": "⠙⠗⠕⠇⠇⠻⠽" }, { "input": "drollery's", "output": "⠙⠗⠕⠇⠇⠻⠽⠄⠎" }, { "input": "drollest", "output": "⠙⠗⠕⠇⠇⠑⠌" }, { "input": "drollness", "output": "⠙⠗⠕⠇⠇⠰⠎" }, { "input": "drollness's", "output": "⠙⠗⠕⠇⠇⠰⠎⠄⠎" }, { "input": "drolly", "output": "⠙⠗⠕⠇⠇⠽" }, { "input": "dromedaries", "output": "⠙⠗⠕â â «â œâ Šâ ‘â Ž" }, { "input": "dromedary", "output": "⠙⠗⠕â â «â œâ ½" }, { "input": "dromedary's", "output": "⠙⠗⠕â â «â œâ ½â „â Ž" }, { "input": "drone", "output": "⠙⠗â â •" }, { "input": "drone's", "output": "⠙⠗â â •â „â Ž" }, { "input": "droned", "output": "⠙⠗⠕â â «" }, { "input": "drones", "output": "⠙⠗â â •â Ž" }, { "input": "droning", "output": "⠙⠗⠕â â Œ" }, { "input": "drool", "output": "⠙⠗⠕⠕⠇" }, { "input": "drool's", "output": "⠙⠗⠕⠕⠇⠄⠎" }, { "input": "drooled", "output": "⠙⠗⠕⠕⠇⠫" }, { "input": "drooling", "output": "⠙⠗⠕⠕⠇⠌" }, { "input": "drools", "output": "⠙⠗⠕⠕⠇⠎" }, { "input": "droop", "output": "⠙⠗⠕⠕â " }, { "input": "droop's", "output": "⠙⠗⠕⠕â â „â Ž" }, { "input": "drooped", "output": "⠙⠗⠕⠕â â «" }, { "input": "droopier", "output": "⠙⠗⠕⠕â â Šâ »" }, { "input": "droopiest", "output": "⠙⠗⠕⠕â â Šâ ‘â Œ" }, { "input": "droopiness", "output": "⠙⠗⠕⠕â â Šâ °â Ž" }, { "input": "droopiness's", "output": "⠙⠗⠕⠕â â Šâ °â Žâ „â Ž" }, { "input": "drooping", "output": "⠙⠗⠕⠕â â Œ" }, { "input": "droops", "output": "⠙⠗⠕⠕â â Ž" }, { "input": "droopy", "output": "⠙⠗⠕⠕â â ½" }, { "input": "drop", "output": "⠙⠗⠕â " }, { "input": "drop's", "output": "⠙⠗⠕â â „â Ž" }, { "input": "dropkick", "output": "⠙⠗⠕â â …⠊⠉⠅" }, { "input": "dropkick's", "output": "⠙⠗⠕â â …⠊⠉⠅⠄⠎" }, { "input": "dropkicks", "output": "⠙⠗⠕â â …⠊⠉⠅⠎" }, { "input": "droplet", "output": "⠙⠗⠕â â ‡â ‘â ž" }, { "input": "droplet's", "output": "⠙⠗⠕â â ‡â ‘â žâ „â Ž" }, { "input": "droplets", "output": "⠙⠗⠕â â ‡â ‘â žâ Ž" }, { "input": "dropout", "output": "⠙⠗⠕â â ³â ž" }, { "input": "dropout's", "output": "⠙⠗⠕â â ³â žâ „â Ž" }, { "input": "dropouts", "output": "⠙⠗⠕â â ³â žâ Ž" }, { "input": "dropped", "output": "⠙⠗⠕â â â «" }, { "input": "dropper", "output": "⠙⠗⠕â â â »" }, { "input": "dropper's", "output": "⠙⠗⠕â â â »â „â Ž" }, { "input": "droppers", "output": "⠙⠗⠕â â â »â Ž" }, { "input": "dropping", "output": "⠙⠗⠕â â â Œ" }, { "input": "droppings", "output": "⠙⠗⠕â â â Œâ Ž" }, { "input": "droppings's", "output": "⠙⠗⠕â â â Œâ Žâ „â Ž" }, { "input": "drops", "output": "⠙⠗⠕â â Ž" }, { "input": "dropsical", "output": "⠙⠗⠕â â Žâ Šâ ‰â â ‡" }, { "input": "dropsy", "output": "⠙⠗⠕â â Žâ ½" }, { "input": "dropsy's", "output": "⠙⠗⠕â â Žâ ½â „â Ž" }, { "input": "dross", "output": "⠙⠗⠕⠎⠎" }, { "input": "dross's", "output": "⠙⠗⠕⠎⠎⠄⠎" }, { "input": "drought", "output": "⠙⠗â â ³" }, { "input": "drought's", "output": "⠙⠗â â ³â „â Ž" }, { "input": "droughts", "output": "⠙⠗â â ³â Ž" }, { "input": "drove", "output": "⠙⠗⠕⠧⠑" }, { "input": "drove's", "output": "⠙⠗⠕⠧⠑⠄⠎" }, { "input": "drover", "output": "⠙⠗⠕⠧⠻" }, { "input": "drover's", "output": "⠙⠗⠕⠧⠻⠄⠎" }, { "input": "drovers", "output": "⠙⠗⠕⠧⠻⠎" }, { "input": "droves", "output": "⠙⠗⠕⠧⠑⠎" }, { "input": "drown", "output": "⠙⠗⠪â " }, { "input": "drowned", "output": "⠙⠗⠪â â «" }, { "input": "drowning", "output": "⠙⠗⠪â â Œ" }, { "input": "drowning's", "output": "⠙⠗⠪â â Œâ „â Ž" }, { "input": "drownings", "output": "⠙⠗⠪â â Œâ Ž" }, { "input": "drowns", "output": "⠙⠗⠪â â Ž" }, { "input": "drowse", "output": "⠙⠗⠪⠎⠑" }, { "input": "drowse's", "output": "⠙⠗⠪⠎⠑⠄⠎" }, { "input": "drowsed", "output": "⠙⠗⠪⠎⠫" }, { "input": "drowses", "output": "⠙⠗⠪⠎⠑⠎" }, { "input": "drowsier", "output": "⠙⠗⠪⠎⠊⠻" }, { "input": "drowsiest", "output": "⠙⠗⠪⠎⠊⠑⠌" }, { "input": "drowsily", "output": "⠙⠗⠪⠎⠊⠇⠽" }, { "input": "drowsiness", "output": "⠙⠗⠪⠎⠊⠰⠎" }, { "input": "drowsiness's", "output": "⠙⠗⠪⠎⠊⠰⠎⠄⠎" }, { "input": "drowsing", "output": "⠙⠗⠪⠎⠌" }, { "input": "drowsy", "output": "⠙⠗⠪⠎⠽" }, { "input": "drub", "output": "⠙⠗⠥⠃" }, { "input": "drubbed", "output": "⠙⠗⠥⠆⠫" }, { "input": "drubber", "output": "⠙⠗⠥⠆⠻" }, { "input": "drubber's", "output": "⠙⠗⠥⠆⠻⠄⠎" }, { "input": "drubbers", "output": "⠙⠗⠥⠆⠻⠎" }, { "input": "drubbing", "output": "⠙⠗⠥⠆⠌" }, { "input": "drubbing's", "output": "⠙⠗⠥⠆⠌⠄⠎" }, { "input": "drubbings", "output": "⠙⠗⠥⠆⠌⠎" }, { "input": "drubs", "output": "⠙⠗⠥⠃⠎" }, { "input": "drudge", "output": "⠙⠗⠥⠙⠛⠑" }, { "input": "drudge's", "output": "⠙⠗⠥⠙⠛⠑⠄⠎" }, { "input": "drudged", "output": "⠙⠗⠥⠙⠛⠫" }, { "input": "drudgery", "output": "⠙⠗⠥⠙⠛⠻⠽" }, { "input": "drudgery's", "output": "⠙⠗⠥⠙⠛⠻⠽⠄⠎" }, { "input": "drudges", "output": "⠙⠗⠥⠙⠛⠑⠎" }, { "input": "drudging", "output": "⠙⠗⠥⠙⠛⠌" }, { "input": "drug", "output": "⠙⠗⠥⠛" }, { "input": "drug's", "output": "⠙⠗⠥⠛⠄⠎" }, { "input": "drugged", "output": "⠙⠗⠥⠶⠫" }, { "input": "drugging", "output": "⠙⠗⠥⠶⠌" }, { "input": "druggist", "output": "⠙⠗⠥⠶⠊⠌" }, { "input": "druggist's", "output": "⠙⠗⠥⠶⠊⠌⠄⠎" }, { "input": "druggists", "output": "⠙⠗⠥⠶⠊⠌⠎" }, { "input": "drugs", "output": "⠙⠗⠥⠛⠎" }, { "input": "drugstore", "output": "⠙⠗⠥⠛⠌⠕⠗⠑" }, { "input": "drugstore's", "output": "⠙⠗⠥⠛⠌⠕⠗⠑⠄⠎" }, { "input": "drugstores", "output": "⠙⠗⠥⠛⠌⠕⠗⠑⠎" }, { "input": "druid", "output": "⠙⠗⠥⠊⠙" }, { "input": "druid's", "output": "⠙⠗⠥⠊⠙⠄⠎" }, { "input": "druidism", "output": "⠙⠗⠥⠊⠙⠊⠎â " }, { "input": "druidism's", "output": "⠙⠗⠥⠊⠙⠊⠎â â „â Ž" }, { "input": "druids", "output": "⠙⠗⠥⠊⠙⠎" }, { "input": "drum", "output": "⠙⠗⠥â " }, { "input": "drum's", "output": "⠙⠗⠥â â „â Ž" }, { "input": "drumlin", "output": "⠙⠗⠥â â ‡â ”" }, { "input": "drumlin's", "output": "⠙⠗⠥â â ‡â ”â „â Ž" }, { "input": "drumlins", "output": "⠙⠗⠥â â ‡â ”â Ž" }, { "input": "drummed", "output": "⠙⠗⠥â â â «" }, { "input": "drummer", "output": "⠙⠗⠥â â â »" }, { "input": "drummer's", "output": "⠙⠗⠥â â â »â „â Ž" }, { "input": "drummers", "output": "⠙⠗⠥â â â »â Ž" }, { "input": "drumming", "output": "⠙⠗⠥â â â Œ" }, { "input": "drums", "output": "⠙⠗⠥â â Ž" }, { "input": "drumstick", "output": "⠙⠗⠥â â Œâ Šâ ‰â …" }, { "input": "drumstick's", "output": "⠙⠗⠥â â Œâ Šâ ‰â …â „â Ž" }, { "input": "drumsticks", "output": "⠙⠗⠥â â Œâ Šâ ‰â …â Ž" }, { "input": "drunk", "output": "⠙⠗⠥â â …" }, { "input": "drunk's", "output": "⠙⠗⠥â â …â „â Ž" }, { "input": "drunkard", "output": "⠙⠗⠥â â …⠜⠙" }, { "input": "drunkard's", "output": "⠙⠗⠥â â …⠜⠙⠄⠎" }, { "input": "drunkards", "output": "⠙⠗⠥â â …⠜⠙⠎" }, { "input": "drunken", "output": "⠙⠗⠥â â …â ¢" }, { "input": "drunkenly", "output": "⠙⠗⠥â â …⠢⠇⠽" }, { "input": "drunkenness", "output": "⠙⠗⠥â â …⠢⠰⠎" }, { "input": "drunkenness's", "output": "⠙⠗⠥â â …⠢⠰⠎⠄⠎" }, { "input": "drunker", "output": "⠙⠗⠥â â …â »" }, { "input": "drunkest", "output": "⠙⠗⠥â â …â ‘â Œ" }, { "input": "drunks", "output": "⠙⠗⠥â â …â Ž" }, { "input": "drupe", "output": "⠙⠗⠥â â ‘" }, { "input": "drupe's", "output": "⠙⠗⠥â â ‘â „â Ž" }, { "input": "drupes", "output": "⠙⠗⠥â â ‘â Ž" }, { "input": "druthers", "output": "⠙⠗⠥⠮⠗⠎" }, { "input": "druthers's", "output": "⠙⠗⠥⠮⠗⠎⠄⠎" }, { "input": "dry", "output": "⠙⠗⠽" }, { "input": "dry's", "output": "⠙⠗⠽⠄⠎" }, { "input": "dryad", "output": "⠙⠗⠽â â ™" }, { "input": "dryad's", "output": "⠙⠗⠽â â ™â „â Ž" }, { "input": "dryads", "output": "⠙⠗⠽â â ™â Ž" }, { "input": "dryer", "output": "⠙⠗⠽⠻" }, { "input": "dryer's", "output": "⠙⠗⠽⠻⠄⠎" }, { "input": "dryers", "output": "⠙⠗⠽⠻⠎" }, { "input": "drying", "output": "⠙⠗⠽⠌" }, { "input": "dryly", "output": "⠙⠗⠽⠇⠽" }, { "input": "dryness", "output": "⠙⠗⠽⠰⠎" }, { "input": "dryness's", "output": "⠙⠗⠽⠰⠎⠄⠎" }, { "input": "drys", "output": "⠙⠗⠽⠎" }, { "input": "drywall", "output": "⠙⠗⠽⠺â â ‡â ‡" }, { "input": "drywall's", "output": "⠙⠗⠽⠺â â ‡â ‡â „â Ž" }, { "input": "dual", "output": "⠙⠥â â ‡" }, { "input": "dualism", "output": "⠙⠥â â ‡â Šâ Žâ " }, { "input": "dualism's", "output": "⠙⠥â â ‡â Šâ Žâ â „â Ž" }, { "input": "duality", "output": "⠙⠥â â ‡â °â ½" }, { "input": "duality's", "output": "⠙⠥â â ‡â °â ½â „â Ž" }, { "input": "dub", "output": "⠙⠥⠃" }, { "input": "dub's", "output": "⠙⠥⠃⠄⠎" }, { "input": "dubbed", "output": "⠙⠥⠆⠫" }, { "input": "dubber", "output": "⠙⠥⠆⠻" }, { "input": "dubber's", "output": "⠙⠥⠆⠻⠄⠎" }, { "input": "dubbers", "output": "⠙⠥⠆⠻⠎" }, { "input": "dubbin's", "output": "⠙⠥⠆⠔⠄⠎" }, { "input": "dubbing", "output": "⠙⠥⠆⠌" }, { "input": "dubiety", "output": "⠙⠥⠃⠊⠑⠞⠽" }, { "input": "dubiety's", "output": "⠙⠥⠃⠊⠑⠞⠽⠄⠎" }, { "input": "dubious", "output": "⠙⠥⠃⠊⠳⠎" }, { "input": "dubiously", "output": "⠙⠥⠃⠊⠳⠎⠇⠽" }, { "input": "dubiousness", "output": "⠙⠥⠃⠊⠳⠎⠰⠎" }, { "input": "dubiousness's", "output": "⠙⠥⠃⠊⠳⠎⠰⠎⠄⠎" }, { "input": "dubs", "output": "⠙⠥⠃⠎" }, { "input": "ducal", "output": "⠙⠥⠉â â ‡" }, { "input": "ducat", "output": "⠙⠥⠉â â ž" }, { "input": "ducat's", "output": "⠙⠥⠉â â žâ „â Ž" }, { "input": "ducats", "output": "⠙⠥⠉â â žâ Ž" }, { "input": "duchess", "output": "⠙⠥⠡⠑⠎⠎" }, { "input": "duchess's", "output": "⠙⠥⠡⠑⠎⠎⠄⠎" }, { "input": "duchesses", "output": "⠙⠥⠡⠑⠎⠎⠑⠎" }, { "input": "duchies", "output": "⠙⠥⠡⠊⠑⠎" }, { "input": "duchy", "output": "⠙⠥⠡⠽" }, { "input": "duchy's", "output": "⠙⠥⠡⠽⠄⠎" }, { "input": "duck", "output": "⠙⠥⠉⠅" }, { "input": "duck's", "output": "⠙⠥⠉⠅⠄⠎" }, { "input": "duckbill", "output": "⠙⠥⠉⠅⠃⠊⠇⠇" }, { "input": "duckbill's", "output": "⠙⠥⠉⠅⠃⠊⠇⠇⠄⠎" }, { "input": "duckbills", "output": "⠙⠥⠉⠅⠃⠊⠇⠇⠎" }, { "input": "ducked", "output": "⠙⠥⠉⠅⠫" }, { "input": "duckier", "output": "⠙⠥⠉⠅⠊⠻" }, { "input": "duckiest", "output": "⠙⠥⠉⠅⠊⠑⠌" }, { "input": "ducking", "output": "⠙⠥⠉⠅⠌" }, { "input": "duckling", "output": "⠙⠥⠉⠅⠇⠌" }, { "input": "duckling's", "output": "⠙⠥⠉⠅⠇⠌⠄⠎" }, { "input": "ducklings", "output": "⠙⠥⠉⠅⠇⠌⠎" }, { "input": "duckpins", "output": "⠙⠥⠉⠅â â ”â Ž" }, { "input": "duckpins's", "output": "⠙⠥⠉⠅â â ”â Žâ „â Ž" }, { "input": "ducks", "output": "⠙⠥⠉⠅⠎" }, { "input": "duckweed's", "output": "⠙⠥⠉⠅⠺⠑⠫⠄⠎" }, { "input": "duct", "output": "⠙⠥⠉⠞" }, { "input": "duct's", "output": "⠙⠥⠉⠞⠄⠎" }, { "input": "ductile", "output": "⠙⠥⠉⠞⠊⠇⠑" }, { "input": "ductility", "output": "⠙⠥⠉⠞⠊⠇⠰⠽" }, { "input": "ductility's", "output": "⠙⠥⠉⠞⠊⠇⠰⠽⠄⠎" }, { "input": "ducting", "output": "⠙⠥⠉⠞⠌" }, { "input": "ductless", "output": "⠙⠥⠉⠞⠨⠎" }, { "input": "ducts", "output": "⠙⠥⠉⠞⠎" }, { "input": "dud", "output": "⠙⠥⠙" }, { "input": "dud's", "output": "⠙⠥⠙⠄⠎" }, { "input": "dude", "output": "⠙⠥⠙⠑" }, { "input": "dude's", "output": "⠙⠥⠙⠑⠄⠎" }, { "input": "duded", "output": "⠙⠥⠙⠫" }, { "input": "dudes", "output": "⠙⠥⠙⠑⠎" }, { "input": "dudgeon", "output": "⠙⠥⠙⠛⠑⠕â " }, { "input": "dudgeon's", "output": "⠙⠥⠙⠛⠑⠕â â „â Ž" }, { "input": "duding", "output": "⠙⠥⠙⠌" }, { "input": "duds", "output": "⠙⠥⠙⠎" }, { "input": "due", "output": "⠙⠥⠑" }, { "input": "due's", "output": "⠙⠥⠑⠄⠎" }, { "input": "duel", "output": "⠙⠥⠑⠇" }, { "input": "duel's", "output": "⠙⠥⠑⠇⠄⠎" }, { "input": "dueled", "output": "⠙⠥⠑⠇⠫" }, { "input": "dueler", "output": "⠙⠥⠑⠇⠻" }, { "input": "dueler's", "output": "⠙⠥⠑⠇⠻⠄⠎" }, { "input": "duelers", "output": "⠙⠥⠑⠇⠻⠎" }, { "input": "dueling", "output": "⠙⠥⠑⠇⠌" }, { "input": "duelings", "output": "⠙⠥⠑⠇⠌⠎" }, { "input": "duelist", "output": "⠙⠥⠑⠇⠊⠌" }, { "input": "duelist's", "output": "⠙⠥⠑⠇⠊⠌⠄⠎" }, { "input": "duelists", "output": "⠙⠥⠑⠇⠊⠌⠎" }, { "input": "duels", "output": "⠙⠥⠑⠇⠎" }, { "input": "duenna", "output": "⠙⠥⠢â â " }, { "input": "duenna's", "output": "⠙⠥⠢â â â „â Ž" }, { "input": "duennas", "output": "⠙⠥⠢â â â Ž" }, { "input": "dues", "output": "⠙⠥⠑⠎" }, { "input": "duet", "output": "⠙⠥⠑⠞" }, { "input": "duet's", "output": "⠙⠥⠑⠞⠄⠎" }, { "input": "duets", "output": "⠙⠥⠑⠞⠎" }, { "input": "duff", "output": "⠙⠥⠋⠋" }, { "input": "duffer", "output": "⠙⠥⠖⠻" }, { "input": "duffer's", "output": "⠙⠥⠖⠻⠄⠎" }, { "input": "duffers", "output": "⠙⠥⠖⠻⠎" }, { "input": "dug", "output": "⠙⠥⠛" }, { "input": "dugout", "output": "⠙⠥⠛⠳⠞" }, { "input": "dugout's", "output": "⠙⠥⠛⠳⠞⠄⠎" }, { "input": "dugouts", "output": "⠙⠥⠛⠳⠞⠎" }, { "input": "duh", "output": "⠙⠥⠓" }, { "input": "duke", "output": "⠙⠥⠅⠑" }, { "input": "duke's", "output": "⠙⠥⠅⠑⠄⠎" }, { "input": "dukedom", "output": "⠙⠥⠅⠑⠙⠕â " }, { "input": "dukedom's", "output": "⠙⠥⠅⠑⠙⠕â â „â Ž" }, { "input": "dukedoms", "output": "⠙⠥⠅⠑⠙⠕â â Ž" }, { "input": "dukes", "output": "⠙⠥⠅⠑⠎" }, { "input": "dulcet", "output": "⠙⠥⠇⠉⠑⠞" }, { "input": "dulcimer", "output": "⠙⠥⠇⠉⠊â â »" }, { "input": "dulcimer's", "output": "⠙⠥⠇⠉⠊â â »â „â Ž" }, { "input": "dulcimers", "output": "⠙⠥⠇⠉⠊â â »â Ž" }, { "input": "dull", "output": "⠙⠥⠇⠇" }, { "input": "dullard", "output": "⠙⠥⠇⠇⠜⠙" }, { "input": "dullard's", "output": "⠙⠥⠇⠇⠜⠙⠄⠎" }, { "input": "dullards", "output": "⠙⠥⠇⠇⠜⠙⠎" }, { "input": "dulled", "output": "⠙⠥⠇⠇⠫" }, { "input": "duller", "output": "⠙⠥⠇⠇⠻" }, { "input": "dullest", "output": "⠙⠥⠇⠇⠑⠌" }, { "input": "dulling", "output": "⠙⠥⠇⠇⠌" }, { "input": "dullness", "output": "⠙⠥⠇⠇⠰⠎" }, { "input": "dullness's", "output": "⠙⠥⠇⠇⠰⠎⠄⠎" }, { "input": "dulls", "output": "⠙⠥⠇⠇⠎" }, { "input": "dully", "output": "⠙⠥⠇⠇⠽" }, { "input": "duly", "output": "⠙⠥⠇⠽" }, { "input": "dumb", "output": "⠙⠥â â ƒ" }, { "input": "dumbbell", "output": "⠙⠥â â ƒâ ƒâ ‘⠇⠇" }, { "input": "dumbbell's", "output": "⠙⠥â â ƒâ ƒâ ‘⠇⠇⠄⠎" }, { "input": "dumbbells", "output": "⠙⠥â â ƒâ ƒâ ‘⠇⠇⠎" }, { "input": "dumber", "output": "⠙⠥â â ƒâ »" }, { "input": "dumbest", "output": "⠙⠥â â ƒâ ‘â Œ" }, { "input": "dumbfound", "output": "⠙⠥â â ƒâ ‹â ¨â ™" }, { "input": "dumbfounded", "output": "⠙⠥â â ƒâ ‹â ¨â ™â «" }, { "input": "dumbfounding", "output": "⠙⠥â â ƒâ ‹â ¨â ™â Œ" }, { "input": "dumbfounds", "output": "⠙⠥â â ƒâ ‹â ¨â ™â Ž" }, { "input": "dumbly", "output": "⠙⠥â â ƒâ ‡â ½" }, { "input": "dumbness", "output": "⠙⠥â â ƒâ °â Ž" }, { "input": "dumbness's", "output": "⠙⠥â â ƒâ °â Žâ „â Ž" }, { "input": "dumbwaiter", "output": "⠙⠥â â ƒâ ºâ â Šâ žâ »" }, { "input": "dumbwaiter's", "output": "⠙⠥â â ƒâ ºâ â Šâ žâ »â „â Ž" }, { "input": "dumbwaiters", "output": "⠙⠥â â ƒâ ºâ â Šâ žâ »â Ž" }, { "input": "dumdum", "output": "⠙⠥â â ™â ¥â " }, { "input": "dumdum's", "output": "⠙⠥â â ™â ¥â â „â Ž" }, { "input": "dumdums", "output": "⠙⠥â â ™â ¥â â Ž" }, { "input": "dummies", "output": "⠙⠥â â â Šâ ‘â Ž" }, { "input": "dummy", "output": "⠙⠥â â â ½" }, { "input": "dummy's", "output": "⠙⠥â â â ½â „â Ž" }, { "input": "dump", "output": "⠙⠥â â " }, { "input": "dump's", "output": "⠙⠥â â â „â Ž" }, { "input": "dumped", "output": "⠙⠥â â â «" }, { "input": "dumpier", "output": "⠙⠥â â â Šâ »" }, { "input": "dumpiest", "output": "⠙⠥â â â Šâ ‘â Œ" }, { "input": "dumpiness", "output": "⠙⠥â â â Šâ °â Ž" }, { "input": "dumpiness's", "output": "⠙⠥â â â Šâ °â Žâ „â Ž" }, { "input": "dumping", "output": "⠙⠥â â â Œ" }, { "input": "dumpling", "output": "⠙⠥â â â ‡â Œ" }, { "input": "dumpling's", "output": "⠙⠥â â â ‡â Œâ „â Ž" }, { "input": "dumplings", "output": "⠙⠥â â â ‡â Œâ Ž" }, { "input": "dumps", "output": "⠙⠥â â â Ž" }, { "input": "dumpster", "output": "⠙⠥â â â Œâ »" }, { "input": "dumpster's", "output": "⠙⠥â â â Œâ »â „â Ž" }, { "input": "dumpsters", "output": "⠙⠥â â â Œâ »â Ž" }, { "input": "dumpy", "output": "⠙⠥â â â ½" }, { "input": "dun", "output": "⠙⠥â " }, { "input": "dun's", "output": "⠙⠥â â „â Ž" }, { "input": "dunce", "output": "⠙⠥â â ‰â ‘" }, { "input": "dunce's", "output": "⠙⠥â â ‰â ‘â „â Ž" }, { "input": "dunces", "output": "⠙⠥â â ‰â ‘â Ž" }, { "input": "dune", "output": "⠙⠥â â ‘" }, { "input": "dune's", "output": "⠙⠥â â ‘â „â Ž" }, { "input": "dunes", "output": "⠙⠥â â ‘â Ž" }, { "input": "dung", "output": "⠙⠥â â ›" }, { "input": "dung's", "output": "⠙⠥â â ›â „â Ž" }, { "input": "dungaree", "output": "⠙⠥â â ›â œâ ‘â ‘" }, { "input": "dungaree's", "output": "⠙⠥â â ›â œâ ‘â ‘â „â Ž" }, { "input": "dungarees", "output": "⠙⠥â â ›â œâ ‘â ‘â Ž" }, { "input": "dunged", "output": "⠙⠥â â ›â «" }, { "input": "dungeon", "output": "⠙⠥â â ›â ‘â •â " }, { "input": "dungeon's", "output": "⠙⠥â â ›â ‘â •â â „â Ž" }, { "input": "dungeons", "output": "⠙⠥â â ›â ‘â •â â Ž" }, { "input": "dunghill", "output": "⠙⠥â â ›â “⠊⠇⠇" }, { "input": "dunghill's", "output": "⠙⠥â â ›â “⠊⠇⠇⠄⠎" }, { "input": "dunghills", "output": "⠙⠥â â ›â “⠊⠇⠇⠎" }, { "input": "dunging", "output": "⠙⠥â â ›â Œ" }, { "input": "dungs", "output": "⠙⠥â â ›â Ž" }, { "input": "dunk", "output": "⠙⠥â â …" }, { "input": "dunk's", "output": "⠙⠥â â …â „â Ž" }, { "input": "dunked", "output": "⠙⠥â â …â «" }, { "input": "dunking", "output": "⠙⠥â â …â Œ" }, { "input": "dunks", "output": "⠙⠥â â …â Ž" }, { "input": "dunned", "output": "⠙⠥â â â «" }, { "input": "dunner", "output": "⠙⠥â â â »" }, { "input": "dunnest", "output": "⠙⠥â â â ‘â Œ" }, { "input": "dunning", "output": "⠙⠥â â â Œ" }, { "input": "dunno", "output": "⠙⠥â â â •" }, { "input": "duns", "output": "⠙⠥â â Ž" }, { "input": "duo", "output": "⠙⠥⠕" }, { "input": "duo's", "output": "⠙⠥⠕⠄⠎" }, { "input": "duodecimal", "output": "⠙⠥⠕⠙⠑⠉⠊â â â ‡" }, { "input": "duodena", "output": "⠙⠥⠕⠙⠢â " }, { "input": "duodenal", "output": "⠙⠥⠕⠙⠢â â ‡" }, { "input": "duodenum", "output": "⠙⠥⠕⠙⠢⠥â " }, { "input": "duodenum's", "output": "⠙⠥⠕⠙⠢⠥â â „â Ž" }, { "input": "duos", "output": "⠙⠥⠕⠎" }, { "input": "dupe", "output": "⠙⠥â â ‘" }, { "input": "dupe's", "output": "⠙⠥â â ‘â „â Ž" }, { "input": "duped", "output": "⠙⠥â â «" }, { "input": "duper", "output": "⠙⠥â â »" }, { "input": "duper's", "output": "⠙⠥â â »â „â Ž" }, { "input": "dupers", "output": "⠙⠥â â »â Ž" }, { "input": "dupes", "output": "⠙⠥â â ‘â Ž" }, { "input": "duping", "output": "⠙⠥â â Œ" }, { "input": "duple", "output": "⠙⠥â â ‡â ‘" }, { "input": "duplex", "output": "⠙⠥â â ‡â ‘â ­" }, { "input": "duplex's", "output": "⠙⠥â â ‡â ‘â ­â „â Ž" }, { "input": "duplexes", "output": "⠙⠥â â ‡â ‘â ­â ‘â Ž" }, { "input": "duplicate", "output": "⠙⠥â â ‡â Šâ ‰â â žâ ‘" }, { "input": "duplicate's", "output": "⠙⠥â â ‡â Šâ ‰â â žâ ‘â „â Ž" }, { "input": "duplicated", "output": "⠙⠥â â ‡â Šâ ‰â â žâ «" }, { "input": "duplicates", "output": "⠙⠥â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "duplicating", "output": "⠙⠥â â ‡â Šâ ‰â â žâ Œ" }, { "input": "duplication", "output": "⠙⠥â â ‡â Šâ ‰â  â " }, { "input": "duplication's", "output": "⠙⠥â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "duplicator", "output": "⠙⠥â â ‡â Šâ ‰â â žâ •â —" }, { "input": "duplicator's", "output": "⠙⠥â â ‡â Šâ ‰â â žâ •â —â „â Ž" }, { "input": "duplicators", "output": "⠙⠥â â ‡â Šâ ‰â â žâ •â —â Ž" }, { "input": "duplicity", "output": "⠙⠥â â ‡â Šâ ‰â °â ½" }, { "input": "duplicity's", "output": "⠙⠥â â ‡â Šâ ‰â °â ½â „â Ž" }, { "input": "durability", "output": "⠙⠥⠗â â ƒâ Šâ ‡â °â ½" }, { "input": "durability's", "output": "⠙⠥⠗â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "durable", "output": "⠙⠥⠗â â ¼" }, { "input": "durably", "output": "⠙⠥⠗â â ƒâ ‡â ½" }, { "input": "durance", "output": "⠙⠥⠗⠨⠑" }, { "input": "durance's", "output": "⠙⠥⠗⠨⠑⠄⠎" }, { "input": "duration", "output": "⠙⠥⠗⠠â " }, { "input": "duration's", "output": "⠙⠥⠗⠠â â „â Ž" }, { "input": "duress", "output": "⠙⠥⠗⠑⠎⠎" }, { "input": "duress's", "output": "⠙⠥⠗⠑⠎⠎⠄⠎" }, { "input": "during", "output": "⠙⠥⠗⠌" }, { "input": "durst", "output": "⠙⠥⠗⠌" }, { "input": "durum", "output": "⠙⠥⠗⠥â " }, { "input": "durum's", "output": "⠙⠥⠗⠥â â „â Ž" }, { "input": "dusk", "output": "⠙⠥⠎⠅" }, { "input": "dusk's", "output": "⠙⠥⠎⠅⠄⠎" }, { "input": "duskier", "output": "⠙⠥⠎⠅⠊⠻" }, { "input": "duskiest", "output": "⠙⠥⠎⠅⠊⠑⠌" }, { "input": "duskiness", "output": "⠙⠥⠎⠅⠊⠰⠎" }, { "input": "duskiness's", "output": "⠙⠥⠎⠅⠊⠰⠎⠄⠎" }, { "input": "dusky", "output": "⠙⠥⠎⠅⠽" }, { "input": "dust", "output": "⠙⠥⠌" }, { "input": "dust's", "output": "⠙⠥⠌⠄⠎" }, { "input": "dustbin", "output": "⠙⠥⠌⠃⠔" }, { "input": "dustbin's", "output": "⠙⠥⠌⠃⠔⠄⠎" }, { "input": "dustbins", "output": "⠙⠥⠌⠃⠔⠎" }, { "input": "dusted", "output": "⠙⠥⠌⠫" }, { "input": "duster", "output": "⠙⠥⠌⠻" }, { "input": "duster's", "output": "⠙⠥⠌⠻⠄⠎" }, { "input": "dusters", "output": "⠙⠥⠌⠻⠎" }, { "input": "dustier", "output": "⠙⠥⠌⠊⠻" }, { "input": "dustiest", "output": "⠙⠥⠌⠊⠑⠌" }, { "input": "dustiness", "output": "⠙⠥⠌⠊⠰⠎" }, { "input": "dustiness's", "output": "⠙⠥⠌⠊⠰⠎⠄⠎" }, { "input": "dusting", "output": "⠙⠥⠌⠌" }, { "input": "dustless", "output": "⠙⠥⠌⠨⠎" }, { "input": "dustman", "output": "⠙⠥⠌â â â " }, { "input": "dustmen", "output": "⠙⠥⠌â â ¢" }, { "input": "dustpan", "output": "⠙⠥⠌â â â " }, { "input": "dustpan's", "output": "⠙⠥⠌â â â â „â Ž" }, { "input": "dustpans", "output": "⠙⠥⠌â â â â Ž" }, { "input": "dusts", "output": "⠙⠥⠌⠎" }, { "input": "dusty", "output": "⠙⠥⠌⠽" }, { "input": "dutch", "output": "⠙⠥⠞⠡" }, { "input": "duteous", "output": "⠙⠥⠞⠑⠳⠎" }, { "input": "duteously", "output": "⠙⠥⠞⠑⠳⠎⠇⠽" }, { "input": "dutiable", "output": "⠙⠥⠞⠊â â ¼" }, { "input": "duties", "output": "⠙⠥⠞⠊⠑⠎" }, { "input": "dutiful", "output": "⠙⠥⠞⠊⠰⠇" }, { "input": "dutifully", "output": "⠙⠥⠞⠊⠰⠇⠇⠽" }, { "input": "dutifulness", "output": "⠙⠥⠞⠊⠰⠇⠰⠎" }, { "input": "dutifulness's", "output": "⠙⠥⠞⠊⠰⠇⠰⠎⠄⠎" }, { "input": "duty", "output": "⠙⠥⠞⠽" }, { "input": "duty's", "output": "⠙⠥⠞⠽⠄⠎" }, { "input": "duvet", "output": "⠙⠥⠧⠑⠞" }, { "input": "dwarf", "output": "⠙⠺⠜⠋" }, { "input": "dwarf's", "output": "⠙⠺⠜⠋⠄⠎" }, { "input": "dwarfed", "output": "⠙⠺⠜⠋⠫" }, { "input": "dwarfing", "output": "⠙⠺⠜⠋⠌" }, { "input": "dwarfish", "output": "⠙⠺⠜⠋⠊⠩" }, { "input": "dwarfism", "output": "⠙⠺⠜⠋⠊⠎â " }, { "input": "dwarfism's", "output": "⠙⠺⠜⠋⠊⠎â â „â Ž" }, { "input": "dwarfs", "output": "⠙⠺⠜⠋⠎" }, { "input": "dweeb", "output": "⠙⠺⠑⠑⠃" }, { "input": "dweeb's", "output": "⠙⠺⠑⠑⠃⠄⠎" }, { "input": "dweebs", "output": "⠙⠺⠑⠑⠃⠎" }, { "input": "dwell", "output": "⠙⠺⠑⠇⠇" }, { "input": "dweller", "output": "⠙⠺⠑⠇⠇⠻" }, { "input": "dweller's", "output": "⠙⠺⠑⠇⠇⠻⠄⠎" }, { "input": "dwellers", "output": "⠙⠺⠑⠇⠇⠻⠎" }, { "input": "dwelling", "output": "⠙⠺⠑⠇⠇⠌" }, { "input": "dwelling's", "output": "⠙⠺⠑⠇⠇⠌⠄⠎" }, { "input": "dwellings", "output": "⠙⠺⠑⠇⠇⠌⠎" }, { "input": "dwells", "output": "⠙⠺⠑⠇⠇⠎" }, { "input": "dwelt", "output": "⠙⠺⠑⠇⠞" }, { "input": "dwindle", "output": "⠙⠺⠔⠙⠇⠑" }, { "input": "dwindled", "output": "⠙⠺⠔⠙⠇⠫" }, { "input": "dwindles", "output": "⠙⠺⠔⠙⠇⠑⠎" }, { "input": "dwindling", "output": "⠙⠺⠔⠙⠇⠌" }, { "input": "dyadic", "output": "⠙⠽â â ™â Šâ ‰" }, { "input": "dybbuk", "output": "⠙⠽⠆⠥⠅" }, { "input": "dybbuk's", "output": "⠙⠽⠆⠥⠅⠄⠎" }, { "input": "dybbukim", "output": "⠙⠽⠆⠥⠅⠊â " }, { "input": "dybbuks", "output": "⠙⠽⠆⠥⠅⠎" }, { "input": "dye", "output": "⠙⠽⠑" }, { "input": "dye's", "output": "⠙⠽⠑⠄⠎" }, { "input": "dyed", "output": "⠙⠽⠫" }, { "input": "dyeing", "output": "⠙⠽⠑⠌" }, { "input": "dyer", "output": "⠙⠽⠻" }, { "input": "dyer's", "output": "⠙⠽⠻⠄⠎" }, { "input": "dyers", "output": "⠙⠽⠻⠎" }, { "input": "dyes", "output": "⠙⠽⠑⠎" }, { "input": "dyestuff", "output": "⠙⠽⠑⠌⠥⠋⠋" }, { "input": "dyestuff's", "output": "⠙⠽⠑⠌⠥⠋⠋⠄⠎" }, { "input": "dying", "output": "⠙⠽⠌" }, { "input": "dying's", "output": "⠙⠽⠌⠄⠎" }, { "input": "dyke", "output": "⠙⠽⠅⠑" }, { "input": "dyke's", "output": "⠙⠽⠅⠑⠄⠎" }, { "input": "dykes", "output": "⠙⠽⠅⠑⠎" }, { "input": "dynamic", "output": "⠙⠽â â â â Šâ ‰" }, { "input": "dynamic's", "output": "⠙⠽â â â â Šâ ‰â „â Ž" }, { "input": "dynamical", "output": "⠙⠽â â â â Šâ ‰â â ‡" }, { "input": "dynamically", "output": "⠙⠽â â â â Šâ ‰â  â ½" }, { "input": "dynamics", "output": "⠙⠽â â â â Šâ ‰â Ž" }, { "input": "dynamics's", "output": "⠙⠽â â â â Šâ ‰â Žâ „â Ž" }, { "input": "dynamism", "output": "⠙⠽â â â â Šâ Žâ " }, { "input": "dynamism's", "output": "⠙⠽â â â â Šâ Žâ â „â Ž" }, { "input": "dynamite", "output": "⠙⠽â â â â Šâ žâ ‘" }, { "input": "dynamite's", "output": "⠙⠽â â â â Šâ žâ ‘â „â Ž" }, { "input": "dynamited", "output": "⠙⠽â â â â Šâ žâ «" }, { "input": "dynamiter", "output": "⠙⠽â â â â Šâ žâ »" }, { "input": "dynamiter's", "output": "⠙⠽â â â â Šâ žâ »â „â Ž" }, { "input": "dynamiters", "output": "⠙⠽â â â â Šâ žâ »â Ž" }, { "input": "dynamites", "output": "⠙⠽â â â â Šâ žâ ‘â Ž" }, { "input": "dynamiting", "output": "⠙⠽â â â â Šâ žâ Œ" }, { "input": "dynamo", "output": "⠙⠽â â â â •" }, { "input": "dynamo's", "output": "⠙⠽â â â â •â „â Ž" }, { "input": "dynamos", "output": "⠙⠽â â â â •â Ž" }, { "input": "dynastic", "output": "⠙⠽â â â Œâ Šâ ‰" }, { "input": "dynasties", "output": "⠙⠽â â â Œâ Šâ ‘â Ž" }, { "input": "dynasty", "output": "⠙⠽â â â Œâ ½" }, { "input": "dynasty's", "output": "⠙⠽â â â Œâ ½â „â Ž" }, { "input": "dysentery", "output": "⠙⠽⠎⠢⠞⠻⠽" }, { "input": "dysentery's", "output": "⠙⠽⠎⠢⠞⠻⠽⠄⠎" }, { "input": "dysfunction", "output": "⠙⠽⠎⠋⠥â â ‰â °â " }, { "input": "dysfunction's", "output": "⠙⠽⠎⠋⠥â â ‰â °â â „â Ž" }, { "input": "dysfunctional", "output": "⠙⠽⠎⠋⠥â â ‰â °â â â ‡" }, { "input": "dysfunctions", "output": "⠙⠽⠎⠋⠥â â ‰â °â â Ž" }, { "input": "dyslectic", "output": "⠙⠽⠎⠇⠑⠉⠞⠊⠉" }, { "input": "dyslectic's", "output": "⠙⠽⠎⠇⠑⠉⠞⠊⠉⠄⠎" }, { "input": "dyslectics", "output": "⠙⠽⠎⠇⠑⠉⠞⠊⠉⠎" }, { "input": "dyslexia", "output": "⠙⠽⠎⠇⠑⠭⠊â " }, { "input": "dyslexia's", "output": "⠙⠽⠎⠇⠑⠭⠊â â „â Ž" }, { "input": "dyslexic", "output": "⠙⠽⠎⠇⠑⠭⠊⠉" }, { "input": "dyslexic's", "output": "⠙⠽⠎⠇⠑⠭⠊⠉⠄⠎" }, { "input": "dyslexics", "output": "⠙⠽⠎⠇⠑⠭⠊⠉⠎" }, { "input": "dyspepsia", "output": "⠙⠽⠎â â ‘â â Žâ Šâ " }, { "input": "dyspepsia's", "output": "⠙⠽⠎â â ‘â â Žâ Šâ â „â Ž" }, { "input": "dyspeptic", "output": "⠙⠽⠎â â ‘â â žâ Šâ ‰" }, { "input": "dyspeptic's", "output": "⠙⠽⠎â â ‘â â žâ Šâ ‰â „â Ž" }, { "input": "dyspeptics", "output": "⠙⠽⠎â â ‘â â žâ Šâ ‰â Ž" }, { "input": "dysprosium", "output": "⠙⠽⠎â â —â •â Žâ Šâ ¥â " }, { "input": "dysprosium's", "output": "⠙⠽⠎â â —â •â Žâ Šâ ¥â â „â Ž" }, { "input": "e", "output": "â °â ‘" }, { "input": "eMusic", "output": "â ‘â  â â ¥â Žâ Šâ ‰" }, { "input": "each", "output": "â ‘â â ¡" }, { "input": "eager", "output": "â ‘â â ›â »" }, { "input": "eagerer", "output": "â ‘â â ›â »â »" }, { "input": "eagerest", "output": "â ‘â â ›â »â ‘â Œ" }, { "input": "eagerly", "output": "â ‘â â ›â »â ‡â ½" }, { "input": "eagerness", "output": "â ‘â â ›â »â °â Ž" }, { "input": "eagerness's", "output": "â ‘â â ›â »â °â Žâ „â Ž" }, { "input": "eagle", "output": "â ‘â â ›â ‡â ‘" }, { "input": "eagle's", "output": "â ‘â â ›â ‡â ‘â „â Ž" }, { "input": "eagles", "output": "â ‘â â ›â ‡â ‘â Ž" }, { "input": "eaglet", "output": "â ‘â â ›â ‡â ‘â ž" }, { "input": "eaglet's", "output": "â ‘â â ›â ‡â ‘â žâ „â Ž" }, { "input": "eaglets", "output": "â ‘â â ›â ‡â ‘â žâ Ž" }, { "input": "ear", "output": "â ‘â œ" }, { "input": "ear's", "output": "⠑⠜⠄⠎" }, { "input": "earache", "output": "â ‘â œâ â ¡â ‘" }, { "input": "earache's", "output": "â ‘â œâ â ¡â ‘â „â Ž" }, { "input": "earaches", "output": "â ‘â œâ â ¡â ‘â Ž" }, { "input": "eardrum", "output": "⠑⠜⠙⠗⠥â " }, { "input": "eardrum's", "output": "⠑⠜⠙⠗⠥â â „â Ž" }, { "input": "eardrums", "output": "⠑⠜⠙⠗⠥â â Ž" }, { "input": "eared", "output": "⠑⠜⠫" }, { "input": "earful", "output": "⠑⠜⠰⠇" }, { "input": "earful's", "output": "⠑⠜⠰⠇⠄⠎" }, { "input": "earfuls", "output": "⠑⠜⠰⠇⠎" }, { "input": "earl", "output": "⠑⠜⠇" }, { "input": "earl's", "output": "⠑⠜⠇⠄⠎" }, { "input": "earldom", "output": "⠑⠜⠇⠙⠕â " }, { "input": "earldom's", "output": "⠑⠜⠇⠙⠕â â „â Ž" }, { "input": "earldoms", "output": "⠑⠜⠇⠙⠕â â Ž" }, { "input": "earlier", "output": "⠑⠜⠇⠊⠻" }, { "input": "earliest", "output": "⠑⠜⠇⠊⠑⠌" }, { "input": "earliness", "output": "⠑⠜⠇⠊⠰⠎" }, { "input": "earliness's", "output": "⠑⠜⠇⠊⠰⠎⠄⠎" }, { "input": "earlobe", "output": "⠑⠜⠇⠕⠃⠑" }, { "input": "earlobe's", "output": "⠑⠜⠇⠕⠃⠑⠄⠎" }, { "input": "earlobes", "output": "⠑⠜⠇⠕⠃⠑⠎" }, { "input": "earls", "output": "⠑⠜⠇⠎" }, { "input": "early", "output": "⠑⠜⠇⠽" }, { "input": "earmark", "output": "â ‘â œâ â œâ …" }, { "input": "earmark's", "output": "â ‘â œâ â œâ …â „â Ž" }, { "input": "earmarked", "output": "â ‘â œâ â œâ …â «" }, { "input": "earmarking", "output": "â ‘â œâ â œâ …â Œ" }, { "input": "earmarks", "output": "â ‘â œâ â œâ …â Ž" }, { "input": "earmuff", "output": "â ‘â œâ â ¥â ‹â ‹" }, { "input": "earmuff's", "output": "â ‘â œâ â ¥â ‹â ‹â „â Ž" }, { "input": "earmuffs", "output": "â ‘â œâ â ¥â –â Ž" }, { "input": "earn", "output": "â ‘â œâ " }, { "input": "earned", "output": "â ‘â œâ â «" }, { "input": "earner", "output": "â ‘â œâ â »" }, { "input": "earner's", "output": "â ‘â œâ â »â „â Ž" }, { "input": "earners", "output": "â ‘â œâ â »â Ž" }, { "input": "earnest", "output": "â ‘â œâ â ‘â Œ" }, { "input": "earnest's", "output": "â ‘â œâ â ‘⠌⠄⠎" }, { "input": "earnestly", "output": "â ‘â œâ â ‘⠌⠇⠽" }, { "input": "earnestness", "output": "â ‘â œâ â ‘⠌⠰⠎" }, { "input": "earnestness's", "output": "â ‘â œâ â ‘⠌⠰⠎⠄⠎" }, { "input": "earnests", "output": "â ‘â œâ â ‘⠌⠎" }, { "input": "earning", "output": "â ‘â œâ â Œ" }, { "input": "earnings", "output": "â ‘â œâ â Œâ Ž" }, { "input": "earnings's", "output": "â ‘â œâ â Œâ Žâ „â Ž" }, { "input": "earns", "output": "â ‘â œâ â Ž" }, { "input": "earphone", "output": "â ‘â œâ â “â â •" }, { "input": "earphone's", "output": "â ‘â œâ â “â â •â „â Ž" }, { "input": "earphones", "output": "â ‘â œâ â “â â •â Ž" }, { "input": "earplug", "output": "â ‘â œâ â ‡â ¥â ›" }, { "input": "earplug's", "output": "â ‘â œâ â ‡â ¥â ›â „â Ž" }, { "input": "earplugs", "output": "â ‘â œâ â ‡â ¥â ›â Ž" }, { "input": "earring", "output": "⠑⠜⠗⠌" }, { "input": "earring's", "output": "⠑⠜⠗⠌⠄⠎" }, { "input": "earrings", "output": "⠑⠜⠗⠌⠎" }, { "input": "ears", "output": "⠑⠜⠎" }, { "input": "earshot", "output": "⠑⠜⠩⠕⠞" }, { "input": "earshot's", "output": "⠑⠜⠩⠕⠞⠄⠎" }, { "input": "earsplitting", "output": "⠑⠜⠎â â ‡â Šâ žâ žâ Œ" }, { "input": "earth", "output": "⠑⠜⠹" }, { "input": "earth's", "output": "⠑⠜⠹⠄⠎" }, { "input": "earthed", "output": "⠑⠜⠮⠙" }, { "input": "earthen", "output": "⠑⠜⠮â " }, { "input": "earthenware", "output": "⠑⠜⠮â â ºâ œâ ‘" }, { "input": "earthenware's", "output": "⠑⠜⠮â â ºâ œâ ‘â „â Ž" }, { "input": "earthier", "output": "⠑⠜⠹⠊⠻" }, { "input": "earthiest", "output": "⠑⠜⠹⠊⠑⠌" }, { "input": "earthiness", "output": "⠑⠜⠹⠊⠰⠎" }, { "input": "earthiness's", "output": "⠑⠜⠹⠊⠰⠎⠄⠎" }, { "input": "earthing", "output": "⠑⠜⠹⠌" }, { "input": "earthlier", "output": "⠑⠜⠹⠇⠊⠻" }, { "input": "earthliest", "output": "⠑⠜⠹⠇⠊⠑⠌" }, { "input": "earthling", "output": "⠑⠜⠹⠇⠌" }, { "input": "earthling's", "output": "⠑⠜⠹⠇⠌⠄⠎" }, { "input": "earthlings", "output": "⠑⠜⠹⠇⠌⠎" }, { "input": "earthly", "output": "⠑⠜⠹⠇⠽" }, { "input": "earthquake", "output": "⠑⠜⠹⠟⠥â â …â ‘" }, { "input": "earthquake's", "output": "⠑⠜⠹⠟⠥â â …â ‘â „â Ž" }, { "input": "earthquakes", "output": "⠑⠜⠹⠟⠥â â …â ‘â Ž" }, { "input": "earths", "output": "⠑⠜⠹⠎" }, { "input": "earthshaking", "output": "⠑⠜⠹⠩â â …â Œ" }, { "input": "earthward", "output": "⠑⠜⠹⠺⠜⠙" }, { "input": "earthwork", "output": "⠑⠜⠹â â º" }, { "input": "earthwork's", "output": "⠑⠜⠹â â ºâ „â Ž" }, { "input": "earthworks", "output": "⠑⠜⠹â â ºâ Ž" }, { "input": "earthworm", "output": "⠑⠜⠹⠺⠕⠗â " }, { "input": "earthworm's", "output": "⠑⠜⠹⠺⠕⠗â â „â Ž" }, { "input": "earthworms", "output": "⠑⠜⠹⠺⠕⠗â â Ž" }, { "input": "earthy", "output": "⠑⠜⠹⠽" }, { "input": "earwax", "output": "⠑⠜⠺â â ­" }, { "input": "earwax's", "output": "⠑⠜⠺â â ­â „â Ž" }, { "input": "earwig", "output": "⠑⠜⠺⠊⠛" }, { "input": "earwig's", "output": "⠑⠜⠺⠊⠛⠄⠎" }, { "input": "earwigs", "output": "⠑⠜⠺⠊⠛⠎" }, { "input": "ease", "output": "â ‘â â Žâ ‘" }, { "input": "ease's", "output": "â ‘â â Žâ ‘â „â Ž" }, { "input": "eased", "output": "â ‘â â Žâ «" }, { "input": "easel", "output": "â ‘â â Žâ ‘â ‡" }, { "input": "easel's", "output": "â ‘â â Žâ ‘⠇⠄⠎" }, { "input": "easels", "output": "â ‘â â Žâ ‘⠇⠎" }, { "input": "easement", "output": "â ‘â â Žâ ‘â °â ž" }, { "input": "easement's", "output": "â ‘â â Žâ ‘â °â žâ „â Ž" }, { "input": "easements", "output": "â ‘â â Žâ ‘â °â žâ Ž" }, { "input": "eases", "output": "â ‘â â Žâ ‘â Ž" }, { "input": "easier", "output": "â ‘â â Žâ Šâ »" }, { "input": "easiest", "output": "â ‘â â Žâ Šâ ‘â Œ" }, { "input": "easily", "output": "â ‘â â Žâ Šâ ‡â ½" }, { "input": "easiness", "output": "â ‘â â Žâ Šâ °â Ž" }, { "input": "easiness's", "output": "â ‘â â Žâ Šâ °â Žâ „â Ž" }, { "input": "easing", "output": "â ‘â â Žâ Œ" }, { "input": "east", "output": "â ‘â â Œ" }, { "input": "east's", "output": "â ‘â â Œâ „â Ž" }, { "input": "eastbound", "output": "â ‘â â Œâ ƒâ ¨â ™" }, { "input": "easterlies", "output": "â ‘â â Œâ »â ‡â Šâ ‘â Ž" }, { "input": "easterly", "output": "â ‘â â Œâ »â ‡â ½" }, { "input": "easterly's", "output": "â ‘â â Œâ »â ‡â ½â „â Ž" }, { "input": "eastern", "output": "â ‘â â Œâ »â " }, { "input": "easterner", "output": "â ‘â â Œâ »â â »" }, { "input": "easterner's", "output": "â ‘â â Œâ »â â »â „â Ž" }, { "input": "easterners", "output": "â ‘â â Œâ »â â »â Ž" }, { "input": "easternmost", "output": "â ‘â â Œâ »â â â •â Œ" }, { "input": "eastward", "output": "â ‘â â Œâ ºâ œâ ™" }, { "input": "eastwards", "output": "â ‘â â Œâ ºâ œâ ™â Ž" }, { "input": "easy", "output": "â ‘â â Žâ ½" }, { "input": "easygoing", "output": "â ‘â â Žâ ½â ›â •â Œ" }, { "input": "eat", "output": "â ‘â â ž" }, { "input": "eatable", "output": "â ‘â â žâ â ¼" }, { "input": "eatable's", "output": "â ‘â â žâ â ¼â „â Ž" }, { "input": "eatables", "output": "â ‘â â žâ â ¼â Ž" }, { "input": "eaten", "output": "â ‘â â žâ ¢" }, { "input": "eater", "output": "â ‘â â žâ »" }, { "input": "eater's", "output": "â ‘â â žâ »â „â Ž" }, { "input": "eateries", "output": "â ‘â â žâ »â Šâ ‘â Ž" }, { "input": "eaters", "output": "â ‘â â žâ »â Ž" }, { "input": "eatery", "output": "â ‘â â žâ »â ½" }, { "input": "eatery's", "output": "â ‘â â žâ »â ½â „â Ž" }, { "input": "eating", "output": "â ‘â â žâ Œ" }, { "input": "eats", "output": "â ‘â â žâ Ž" }, { "input": "eave", "output": "â ‘â â §â ‘" }, { "input": "eave's", "output": "â ‘â â §â ‘â „â Ž" }, { "input": "eaves", "output": "â ‘â â §â ‘â Ž" }, { "input": "eavesdrop", "output": "â ‘â â §â ‘⠎⠙⠗⠕â " }, { "input": "eavesdropped", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â «" }, { "input": "eavesdropper", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â »" }, { "input": "eavesdropper's", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â »â „â Ž" }, { "input": "eavesdroppers", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â »â Ž" }, { "input": "eavesdropping", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â â Œ" }, { "input": "eavesdrops", "output": "â ‘â â §â ‘⠎⠙⠗⠕â â Ž" }, { "input": "ebb", "output": "⠑⠃⠃" }, { "input": "ebb's", "output": "⠑⠃⠃⠄⠎" }, { "input": "ebbed", "output": "⠑⠆⠫" }, { "input": "ebbing", "output": "⠑⠆⠌" }, { "input": "ebbs", "output": "⠑⠆⠎" }, { "input": "ebonies", "output": "⠑⠃⠕â â Šâ ‘â Ž" }, { "input": "ebony", "output": "⠑⠃⠕â â ½" }, { "input": "ebony's", "output": "⠑⠃⠕â â ½â „â Ž" }, { "input": "ebullience", "output": "⠑⠃⠥⠇⠇⠊⠰⠑" }, { "input": "ebullience's", "output": "⠑⠃⠥⠇⠇⠊⠰⠑⠄⠎" }, { "input": "ebullient", "output": "⠑⠃⠥⠇⠇⠊⠢⠞" }, { "input": "ebulliently", "output": "⠑⠃⠥⠇⠇⠊⠢⠞⠇⠽" }, { "input": "ebullition", "output": "⠑⠃⠥⠇⠇⠊⠰â " }, { "input": "ebullition's", "output": "⠑⠃⠥⠇⠇⠊⠰â â „â Ž" }, { "input": "eccentric", "output": "⠑⠒⠢⠞⠗⠊⠉" }, { "input": "eccentric's", "output": "⠑⠒⠢⠞⠗⠊⠉⠄⠎" }, { "input": "eccentrically", "output": "⠑⠒⠢⠞⠗⠊⠉⠠⠽" }, { "input": "eccentricities", "output": "⠑⠒⠢⠞⠗⠊⠉⠊⠞⠊⠑⠎" }, { "input": "eccentricity", "output": "⠑⠒⠢⠞⠗⠊⠉⠰⠽" }, { "input": "eccentricity's", "output": "⠑⠒⠢⠞⠗⠊⠉⠰⠽⠄⠎" }, { "input": "eccentrics", "output": "⠑⠒⠢⠞⠗⠊⠉⠎" }, { "input": "ecclesiastic", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰" }, { "input": "ecclesiastic's", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰â „â Ž" }, { "input": "ecclesiastical", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰â â ‡" }, { "input": "ecclesiastically", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰â  â ½" }, { "input": "ecclesiastics", "output": "⠑⠒⠇⠑⠎⠊â â Œâ Šâ ‰â Ž" }, { "input": "echelon", "output": "⠑⠡⠑⠇⠕â " }, { "input": "echelon's", "output": "⠑⠡⠑⠇⠕â â „â Ž" }, { "input": "echelons", "output": "⠑⠡⠑⠇⠕â â Ž" }, { "input": "echinoderm", "output": "⠑⠡⠔⠕⠙⠻â " }, { "input": "echinoderm's", "output": "⠑⠡⠔⠕⠙⠻â â „â Ž" }, { "input": "echinoderms", "output": "⠑⠡⠔⠕⠙⠻â â Ž" }, { "input": "echo", "output": "â ‘â ¡â •" }, { "input": "echo's", "output": "â ‘â ¡â •â „â Ž" }, { "input": "echoed", "output": "â ‘â ¡â •â «" }, { "input": "echoes", "output": "â ‘â ¡â •â ‘â Ž" }, { "input": "echoic", "output": "â ‘â ¡â •â Šâ ‰" }, { "input": "echoing", "output": "â ‘â ¡â •â Œ" }, { "input": "echolocation", "output": "⠑⠡⠕⠇⠕⠉⠠â " }, { "input": "echolocation's", "output": "⠑⠡⠕⠇⠕⠉⠠â â „â Ž" }, { "input": "eclectic", "output": "⠑⠉⠇⠑⠉⠞⠊⠉" }, { "input": "eclectic's", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠄⠎" }, { "input": "eclectically", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠠⠽" }, { "input": "eclecticism", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠊⠎â " }, { "input": "eclecticism's", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "eclectics", "output": "⠑⠉⠇⠑⠉⠞⠊⠉⠎" }, { "input": "eclipse", "output": "⠑⠉⠇⠊â â Žâ ‘" }, { "input": "eclipse's", "output": "⠑⠉⠇⠊â â Žâ ‘â „â Ž" }, { "input": "eclipsed", "output": "⠑⠉⠇⠊â â Žâ «" }, { "input": "eclipses", "output": "⠑⠉⠇⠊â â Žâ ‘â Ž" }, { "input": "eclipsing", "output": "⠑⠉⠇⠊â â Žâ Œ" }, { "input": "ecliptic", "output": "⠑⠉⠇⠊â â žâ Šâ ‰" }, { "input": "ecliptic's", "output": "⠑⠉⠇⠊â â žâ Šâ ‰â „â Ž" }, { "input": "eclogue", "output": "⠑⠉⠇⠕⠛⠥⠑" }, { "input": "eclogue's", "output": "⠑⠉⠇⠕⠛⠥⠑⠄⠎" }, { "input": "eclogues", "output": "⠑⠉⠇⠕⠛⠥⠑⠎" }, { "input": "ecocide", "output": "⠑⠉⠕⠉⠊⠙⠑" }, { "input": "ecocide's", "output": "⠑⠉⠕⠉⠊⠙⠑⠄⠎" }, { "input": "ecologic", "output": "⠑⠉⠕⠇⠕⠛⠊⠉" }, { "input": "ecological", "output": "⠑⠉⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "ecologically", "output": "⠑⠉⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "ecologist", "output": "⠑⠉⠕⠇⠕⠛⠊⠌" }, { "input": "ecologist's", "output": "⠑⠉⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ecologists", "output": "⠑⠉⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ecology", "output": "⠑⠉⠕⠇⠕⠛⠽" }, { "input": "ecology's", "output": "⠑⠉⠕⠇⠕⠛⠽⠄⠎" }, { "input": "econometric", "output": "⠑⠉⠕â â •â â ‘â žâ —â Šâ ‰" }, { "input": "economic", "output": "⠑⠉⠕â â •â â Šâ ‰" }, { "input": "economical", "output": "⠑⠉⠕â â •â â Šâ ‰â â ‡" }, { "input": "economically", "output": "⠑⠉⠕â â •â â Šâ ‰â  â ½" }, { "input": "economics", "output": "⠑⠉⠕â â •â â Šâ ‰â Ž" }, { "input": "economics's", "output": "⠑⠉⠕â â •â â Šâ ‰â Žâ „â Ž" }, { "input": "economies", "output": "⠑⠉⠕â â •â â Šâ ‘â Ž" }, { "input": "economist", "output": "⠑⠉⠕â â •â â Šâ Œ" }, { "input": "economist's", "output": "⠑⠉⠕â â •â â Šâ Œâ „â Ž" }, { "input": "economists", "output": "⠑⠉⠕â â •â â Šâ Œâ Ž" }, { "input": "economize", "output": "⠑⠉⠕â â •â â Šâ µâ ‘" }, { "input": "economized", "output": "⠑⠉⠕â â •â â Šâ µâ «" }, { "input": "economizer", "output": "⠑⠉⠕â â •â â Šâ µâ »" }, { "input": "economizer's", "output": "⠑⠉⠕â â •â â Šâ µâ »â „â Ž" }, { "input": "economizers", "output": "⠑⠉⠕â â •â â Šâ µâ »â Ž" }, { "input": "economizes", "output": "⠑⠉⠕â â •â â Šâ µâ ‘â Ž" }, { "input": "economizing", "output": "⠑⠉⠕â â •â â Šâ µâ Œ" }, { "input": "economy", "output": "⠑⠉⠕â â •â â ½" }, { "input": "economy's", "output": "⠑⠉⠕â â •â â ½â „â Ž" }, { "input": "ecosystem", "output": "⠑⠉⠕⠎⠽⠌⠑â " }, { "input": "ecosystem's", "output": "⠑⠉⠕⠎⠽⠌⠑â â „â Ž" }, { "input": "ecosystems", "output": "⠑⠉⠕⠎⠽⠌⠑â â Ž" }, { "input": "ecru", "output": "⠑⠉⠗⠥" }, { "input": "ecru's", "output": "⠑⠉⠗⠥⠄⠎" }, { "input": "ecstasies", "output": "⠑⠉⠌â â Žâ Šâ ‘â Ž" }, { "input": "ecstasy", "output": "⠑⠉⠌â â Žâ ½" }, { "input": "ecstasy's", "output": "⠑⠉⠌â â Žâ ½â „â Ž" }, { "input": "ecstatic", "output": "⠑⠉⠌â â žâ Šâ ‰" }, { "input": "ecstatically", "output": "⠑⠉⠌â â žâ Šâ ‰â  â ½" }, { "input": "ecumenical", "output": "⠑⠉⠥â â ¢â Šâ ‰â â ‡" }, { "input": "ecumenically", "output": "⠑⠉⠥â â ¢â Šâ ‰â  â ½" }, { "input": "ecumenicism", "output": "⠑⠉⠥â â ¢â Šâ ‰â Šâ Žâ " }, { "input": "ecumenicism's", "output": "⠑⠉⠥â â ¢â Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "ecumenism's", "output": "⠑⠉⠥â â ¢â Šâ Žâ â „â Ž" }, { "input": "ecus", "output": "⠑⠉⠥⠎" }, { "input": "eczema", "output": "⠑⠉⠵⠑â â " }, { "input": "eczema's", "output": "⠑⠉⠵⠑â â â „â Ž" }, { "input": "ed's", "output": "â «â „â Ž" }, { "input": "eddied", "output": "⠫⠙⠊⠫" }, { "input": "eddies", "output": "⠫⠙⠊⠑⠎" }, { "input": "eddy", "output": "⠫⠙⠽" }, { "input": "eddy's", "output": "⠫⠙⠽⠄⠎" }, { "input": "eddying", "output": "⠫⠙⠽⠌" }, { "input": "edelweiss", "output": "⠫⠑⠇⠺⠑⠊⠎⠎" }, { "input": "edelweiss's", "output": "⠫⠑⠇⠺⠑⠊⠎⠎⠄⠎" }, { "input": "edema", "output": "â «â ‘â â " }, { "input": "edema's", "output": "â «â ‘â â â „â Ž" }, { "input": "edemas", "output": "â «â ‘â â â Ž" }, { "input": "edge", "output": "⠫⠛⠑" }, { "input": "edge's", "output": "⠫⠛⠑⠄⠎" }, { "input": "edged", "output": "⠫⠛⠫" }, { "input": "edger", "output": "⠫⠛⠻" }, { "input": "edger's", "output": "⠫⠛⠻⠄⠎" }, { "input": "edgers", "output": "⠫⠛⠻⠎" }, { "input": "edges", "output": "⠫⠛⠑⠎" }, { "input": "edgewise", "output": "⠫⠛⠑⠺⠊⠎⠑" }, { "input": "edgier", "output": "⠫⠛⠊⠻" }, { "input": "edgiest", "output": "⠫⠛⠊⠑⠌" }, { "input": "edginess", "output": "⠫⠛⠊⠰⠎" }, { "input": "edginess's", "output": "⠫⠛⠊⠰⠎⠄⠎" }, { "input": "edging", "output": "⠫⠛⠌" }, { "input": "edging's", "output": "⠫⠛⠌⠄⠎" }, { "input": "edgings", "output": "⠫⠛⠌⠎" }, { "input": "edgy", "output": "⠫⠛⠽" }, { "input": "edibility", "output": "⠫⠊⠃⠊⠇⠰⠽" }, { "input": "edibility's", "output": "⠫⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "edible", "output": "â «â Šâ ¼" }, { "input": "edible's", "output": "⠫⠊⠼⠄⠎" }, { "input": "edibleness", "output": "⠫⠊⠼⠰⠎" }, { "input": "edibleness's", "output": "⠫⠊⠼⠰⠎⠄⠎" }, { "input": "edibles", "output": "⠫⠊⠼⠎" }, { "input": "edict", "output": "⠑⠙⠊⠉⠞" }, { "input": "edict's", "output": "⠑⠙⠊⠉⠞⠄⠎" }, { "input": "edicts", "output": "⠑⠙⠊⠉⠞⠎" }, { "input": "edification", "output": "⠫⠊⠋⠊⠉⠠â " }, { "input": "edification's", "output": "⠫⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "edifice", "output": "⠫⠊⠋⠊⠉⠑" }, { "input": "edifice's", "output": "⠫⠊⠋⠊⠉⠑⠄⠎" }, { "input": "edifices", "output": "⠫⠊⠋⠊⠉⠑⠎" }, { "input": "edified", "output": "â «â Šâ ‹â Šâ «" }, { "input": "edifier", "output": "â «â Šâ ‹â Šâ »" }, { "input": "edifier's", "output": "⠫⠊⠋⠊⠻⠄⠎" }, { "input": "edifiers", "output": "⠫⠊⠋⠊⠻⠎" }, { "input": "edifies", "output": "â «â Šâ ‹â Šâ ‘â Ž" }, { "input": "edify", "output": "â «â Šâ ‹â ½" }, { "input": "edifying", "output": "⠫⠊⠋⠽⠌" }, { "input": "edit", "output": "â «â Šâ ž" }, { "input": "edit's", "output": "â «â Šâ žâ „â Ž" }, { "input": "editable", "output": "â «â Šâ žâ â ¼" }, { "input": "edited", "output": "â «â Šâ žâ «" }, { "input": "editing", "output": "â «â Šâ žâ Œ" }, { "input": "edition", "output": "⠑⠙⠊⠰â " }, { "input": "edition's", "output": "⠑⠙⠊⠰â â „â Ž" }, { "input": "editions", "output": "⠑⠙⠊⠰â â Ž" }, { "input": "editor", "output": "â «â Šâ žâ •â —" }, { "input": "editor's", "output": "â «â Šâ žâ •â —â „â Ž" }, { "input": "editorial", "output": "â «â Šâ žâ •â —â Šâ â ‡" }, { "input": "editorial's", "output": "â «â Šâ žâ •â —â Šâ â ‡â „â Ž" }, { "input": "editorialize", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ ‘" }, { "input": "editorialized", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ «" }, { "input": "editorializes", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "editorializing", "output": "â «â Šâ žâ •â —â Šâ â ‡â Šâ µâ Œ" }, { "input": "editorially", "output": "â «â Šâ žâ •â —â Šâ  â ½" }, { "input": "editorials", "output": "â «â Šâ žâ •â —â Šâ â ‡â Ž" }, { "input": "editors", "output": "â «â Šâ žâ •â —â Ž" }, { "input": "editorship", "output": "â «â Šâ žâ •â —â ©â Šâ " }, { "input": "editorship's", "output": "â «â Šâ žâ •â —â ©â Šâ â „â Ž" }, { "input": "edits", "output": "â «â Šâ žâ Ž" }, { "input": "educability", "output": "⠫⠥⠉â â ƒâ Šâ ‡â °â ½" }, { "input": "educability's", "output": "⠫⠥⠉â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "educable", "output": "⠫⠥⠉â â ¼" }, { "input": "educate", "output": "⠫⠥⠉â â žâ ‘" }, { "input": "educated", "output": "⠫⠥⠉â â žâ «" }, { "input": "educates", "output": "⠫⠥⠉â â žâ ‘â Ž" }, { "input": "educating", "output": "⠫⠥⠉â â žâ Œ" }, { "input": "education", "output": "⠫⠥⠉⠠â " }, { "input": "education's", "output": "⠫⠥⠉⠠â â „â Ž" }, { "input": "educational", "output": "⠫⠥⠉⠠â â â ‡" }, { "input": "educationally", "output": "⠫⠥⠉⠠â â  â ½" }, { "input": "educations", "output": "⠫⠥⠉⠠â â Ž" }, { "input": "educator", "output": "⠫⠥⠉â â žâ •â —" }, { "input": "educator's", "output": "⠫⠥⠉â â žâ •â —â „â Ž" }, { "input": "educators", "output": "⠫⠥⠉â â žâ •â —â Ž" }, { "input": "educe", "output": "⠑⠙⠥⠉⠑" }, { "input": "educed", "output": "⠑⠙⠥⠉⠫" }, { "input": "educes", "output": "⠑⠙⠥⠉⠑⠎" }, { "input": "educing", "output": "⠫⠥⠉⠌" }, { "input": "edutainment's", "output": "⠫⠥⠞â â ”â °â žâ „â Ž" }, { "input": "eel", "output": "â ‘â ‘â ‡" }, { "input": "eel's", "output": "⠑⠑⠇⠄⠎" }, { "input": "eels", "output": "⠑⠑⠇⠎" }, { "input": "eerie", "output": "⠑⠻⠊⠑" }, { "input": "eerier", "output": "⠑⠻⠊⠻" }, { "input": "eeriest", "output": "⠑⠻⠊⠑⠌" }, { "input": "eerily", "output": "⠑⠻⠊⠇⠽" }, { "input": "eeriness", "output": "⠑⠻⠊⠰⠎" }, { "input": "eeriness's", "output": "⠑⠻⠊⠰⠎⠄⠎" }, { "input": "efface", "output": "â ‘â –â â ‰â ‘" }, { "input": "effaced", "output": "â ‘â –â â ‰â «" }, { "input": "effacement", "output": "â ‘â –â â ‰â ‘â °â ž" }, { "input": "effacement's", "output": "â ‘â –â â ‰â ‘â °â žâ „â Ž" }, { "input": "effaces", "output": "â ‘â –â â ‰â ‘â Ž" }, { "input": "effacing", "output": "â ‘â –â â ‰â Œ" }, { "input": "effect", "output": "⠑⠖⠑⠉⠞" }, { "input": "effect's", "output": "⠑⠖⠑⠉⠞⠄⠎" }, { "input": "effected", "output": "⠑⠖⠑⠉⠞⠫" }, { "input": "effecting", "output": "⠑⠖⠑⠉⠞⠌" }, { "input": "effective", "output": "⠑⠖⠑⠉⠞⠊⠧⠑" }, { "input": "effectively", "output": "⠑⠖⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "effectiveness", "output": "⠑⠖⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "effectiveness's", "output": "⠑⠖⠑⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "effects", "output": "⠑⠖⠑⠉⠞⠎" }, { "input": "effectual", "output": "⠑⠖⠑⠉⠞⠥â â ‡" }, { "input": "effectually", "output": "⠑⠖⠑⠉⠞⠥⠠⠽" }, { "input": "effectuate", "output": "⠑⠖⠑⠉⠞⠥â â žâ ‘" }, { "input": "effectuated", "output": "⠑⠖⠑⠉⠞⠥â â žâ «" }, { "input": "effectuates", "output": "⠑⠖⠑⠉⠞⠥â â žâ ‘â Ž" }, { "input": "effectuating", "output": "⠑⠖⠑⠉⠞⠥â â žâ Œ" }, { "input": "effeminacy", "output": "â ‘â –â ‘â â ”â â ‰â ½" }, { "input": "effeminacy's", "output": "â ‘â –â ‘â â ”â â ‰â ½â „â Ž" }, { "input": "effeminate", "output": "â ‘â –â ‘â â ”â â žâ ‘" }, { "input": "effeminately", "output": "â ‘â –â ‘â â ”â â žâ ‘⠇⠽" }, { "input": "effendi", "output": "⠑⠖⠢⠙⠊" }, { "input": "effendi's", "output": "⠑⠖⠢⠙⠊⠄⠎" }, { "input": "effendis", "output": "⠑⠖⠢⠙⠊⠎" }, { "input": "efferent", "output": "⠑⠖⠻⠢⠞" }, { "input": "effervesce", "output": "⠑⠖⠻⠧⠑⠎⠉⠑" }, { "input": "effervesced", "output": "⠑⠖⠻⠧⠑⠎⠉⠫" }, { "input": "effervescence", "output": "⠑⠖⠻⠧⠑⠎⠉⠰⠑" }, { "input": "effervescence's", "output": "⠑⠖⠻⠧⠑⠎⠉⠰⠑⠄⠎" }, { "input": "effervescent", "output": "⠑⠖⠻⠧⠑⠎⠉⠢⠞" }, { "input": "effervescently", "output": "⠑⠖⠻⠧⠑⠎⠉⠢⠞⠇⠽" }, { "input": "effervesces", "output": "⠑⠖⠻⠧⠑⠎⠉⠑⠎" }, { "input": "effervescing", "output": "⠑⠖⠻⠧⠑⠎⠉⠌" }, { "input": "effete", "output": "â ‘â –â ‘â žâ ‘" }, { "input": "effetely", "output": "⠑⠖⠑⠞⠑⠇⠽" }, { "input": "effeteness", "output": "â ‘â –â ‘â žâ ‘â °â Ž" }, { "input": "effeteness's", "output": "â ‘â –â ‘â žâ ‘â °â Žâ „â Ž" }, { "input": "efficacious", "output": "â ‘â –â Šâ ‰â â ‰â Šâ ³â Ž" }, { "input": "efficaciously", "output": "â ‘â –â Šâ ‰â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "efficacy", "output": "â ‘â –â Šâ ‰â â ‰â ½" }, { "input": "efficacy's", "output": "â ‘â –â Šâ ‰â â ‰â ½â „â Ž" }, { "input": "efficiency", "output": "⠑⠖⠊⠉⠊⠢⠉⠽" }, { "input": "efficiency's", "output": "⠑⠖⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "efficient", "output": "⠑⠖⠊⠉⠊⠢⠞" }, { "input": "efficiently", "output": "⠑⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "effigies", "output": "⠑⠖⠊⠛⠊⠑⠎" }, { "input": "effigy", "output": "⠑⠖⠊⠛⠽" }, { "input": "effigy's", "output": "⠑⠖⠊⠛⠽⠄⠎" }, { "input": "efflorescence's", "output": "⠑⠖⠇⠕⠗⠑⠎⠉⠰⠑⠄⠎" }, { "input": "efflorescent", "output": "⠑⠖⠇⠕⠗⠑⠎⠉⠢⠞" }, { "input": "effluence", "output": "⠑⠖⠇⠥⠰⠑" }, { "input": "effluence's", "output": "⠑⠖⠇⠥⠰⠑⠄⠎" }, { "input": "effluent", "output": "⠑⠖⠇⠥⠢⠞" }, { "input": "effluent's", "output": "⠑⠖⠇⠥⠢⠞⠄⠎" }, { "input": "effluents", "output": "⠑⠖⠇⠥⠢⠞⠎" }, { "input": "effluvia", "output": "⠑⠖⠇⠥⠧⠊â " }, { "input": "effluvium", "output": "⠑⠖⠇⠥⠧⠊⠥â " }, { "input": "effluvium's", "output": "⠑⠖⠇⠥⠧⠊⠥â â „â Ž" }, { "input": "effort", "output": "â ‘â ‹â ¿â ž" }, { "input": "effort's", "output": "â ‘â ‹â ¿â žâ „â Ž" }, { "input": "effortless", "output": "⠑⠋⠿⠞⠨⠎" }, { "input": "effortlessly", "output": "⠑⠋⠿⠞⠨⠎⠇⠽" }, { "input": "effortlessness", "output": "⠑⠋⠿⠞⠨⠎⠰⠎" }, { "input": "effortlessness's", "output": "⠑⠋⠿⠞⠨⠎⠰⠎⠄⠎" }, { "input": "efforts", "output": "â ‘â ‹â ¿â žâ Ž" }, { "input": "effrontery", "output": "â ‘â –â —â •â â žâ »â ½" }, { "input": "effrontery's", "output": "â ‘â –â —â •â â žâ »â ½â „â Ž" }, { "input": "effulgence", "output": "⠑⠖⠥⠇⠛⠰⠑" }, { "input": "effulgence's", "output": "⠑⠖⠥⠇⠛⠰⠑⠄⠎" }, { "input": "effulgent", "output": "⠑⠖⠥⠇⠛⠢⠞" }, { "input": "effuse", "output": "⠑⠖⠥⠎⠑" }, { "input": "effused", "output": "⠑⠖⠥⠎⠫" }, { "input": "effuses", "output": "⠑⠖⠥⠎⠑⠎" }, { "input": "effusing", "output": "⠑⠖⠥⠎⠌" }, { "input": "effusion", "output": "⠑⠖⠥⠨â " }, { "input": "effusion's", "output": "⠑⠖⠥⠨â â „â Ž" }, { "input": "effusions", "output": "⠑⠖⠥⠨â â Ž" }, { "input": "effusive", "output": "⠑⠖⠥⠎⠊⠧⠑" }, { "input": "effusively", "output": "⠑⠖⠥⠎⠊⠧⠑⠇⠽" }, { "input": "effusiveness", "output": "⠑⠖⠥⠎⠊⠧⠑⠰⠎" }, { "input": "effusiveness's", "output": "⠑⠖⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "egad", "output": "â ‘â ›â â ™" }, { "input": "egalitarian", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â " }, { "input": "egalitarian's", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â â „â Ž" }, { "input": "egalitarianism", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "egalitarianism's", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â â Šâ Žâ â „â Ž" }, { "input": "egalitarians", "output": "â ‘â ›â â ‡â Šâ žâ œâ Šâ â â Ž" }, { "input": "egg", "output": "⠑⠛⠛" }, { "input": "egg's", "output": "⠑⠛⠛⠄⠎" }, { "input": "eggbeater", "output": "⠑⠶⠃⠂⠞⠻" }, { "input": "eggbeater's", "output": "⠑⠶⠃⠂⠞⠻⠄⠎" }, { "input": "eggbeaters", "output": "⠑⠶⠃⠂⠞⠻⠎" }, { "input": "egged", "output": "â ‘â ¶â «" }, { "input": "egghead", "output": "â ‘â ¶â “â ‚â ™" }, { "input": "egghead's", "output": "⠑⠶⠓⠂⠙⠄⠎" }, { "input": "eggheads", "output": "⠑⠶⠓⠂⠙⠎" }, { "input": "egging", "output": "â ‘â ¶â Œ" }, { "input": "eggnog", "output": "â ‘â ¶â â •â ›" }, { "input": "eggnog's", "output": "â ‘â ¶â â •⠛⠄⠎" }, { "input": "eggplant", "output": "â ‘â ¶â â ‡â â â ž" }, { "input": "eggplant's", "output": "â ‘â ¶â â ‡â â â žâ „â Ž" }, { "input": "eggplants", "output": "â ‘â ¶â â ‡â â â žâ Ž" }, { "input": "eggs", "output": "â ‘â ¶â Ž" }, { "input": "eggshell", "output": "⠑⠶⠩⠑⠇⠇" }, { "input": "eggshell's", "output": "⠑⠶⠩⠑⠇⠇⠄⠎" }, { "input": "eggshells", "output": "⠑⠶⠩⠑⠇⠇⠎" }, { "input": "eglantine", "output": "⠑⠛⠇â â â žâ ”â ‘" }, { "input": "eglantine's", "output": "⠑⠛⠇â â â žâ ”â ‘â „â Ž" }, { "input": "eglantines", "output": "⠑⠛⠇â â â žâ ”â ‘â Ž" }, { "input": "ego", "output": "⠑⠛⠕" }, { "input": "ego's", "output": "⠑⠛⠕⠄⠎" }, { "input": "egocentric", "output": "⠑⠛⠕⠉⠢⠞⠗⠊⠉" }, { "input": "egocentric's", "output": "⠑⠛⠕⠉⠢⠞⠗⠊⠉⠄⠎" }, { "input": "egocentricity's", "output": "⠑⠛⠕⠉⠢⠞⠗⠊⠉⠰⠽⠄⠎" }, { "input": "egocentrics", "output": "⠑⠛⠕⠉⠢⠞⠗⠊⠉⠎" }, { "input": "egoism", "output": "⠑⠛⠕⠊⠎â " }, { "input": "egoism's", "output": "⠑⠛⠕⠊⠎â â „â Ž" }, { "input": "egoist", "output": "⠑⠛⠕⠊⠌" }, { "input": "egoist's", "output": "⠑⠛⠕⠊⠌⠄⠎" }, { "input": "egoistic", "output": "⠑⠛⠕⠊⠌⠊⠉" }, { "input": "egoistical", "output": "⠑⠛⠕⠊⠌⠊⠉â â ‡" }, { "input": "egoistically", "output": "⠑⠛⠕⠊⠌⠊⠉⠠⠽" }, { "input": "egoists", "output": "⠑⠛⠕⠊⠌⠎" }, { "input": "egomania's", "output": "⠑⠛⠕â â â â Šâ â „â Ž" }, { "input": "egos", "output": "⠑⠛⠕⠎" }, { "input": "egotism", "output": "⠑⠛⠕⠞⠊⠎â " }, { "input": "egotism's", "output": "⠑⠛⠕⠞⠊⠎â â „â Ž" }, { "input": "egotist", "output": "⠑⠛⠕⠞⠊⠌" }, { "input": "egotist's", "output": "⠑⠛⠕⠞⠊⠌⠄⠎" }, { "input": "egotistic", "output": "⠑⠛⠕⠞⠊⠌⠊⠉" }, { "input": "egotistical", "output": "⠑⠛⠕⠞⠊⠌⠊⠉â â ‡" }, { "input": "egotistically", "output": "⠑⠛⠕⠞⠊⠌⠊⠉⠠⠽" }, { "input": "egotists", "output": "⠑⠛⠕⠞⠊⠌⠎" }, { "input": "egregious", "output": "⠑⠛⠗⠑⠛⠊⠳⠎" }, { "input": "egregiously", "output": "⠑⠛⠗⠑⠛⠊⠳⠎⠇⠽" }, { "input": "egregiousness", "output": "⠑⠛⠗⠑⠛⠊⠳⠎⠰⠎" }, { "input": "egregiousness's", "output": "⠑⠛⠗⠑⠛⠊⠳⠎⠰⠎⠄⠎" }, { "input": "egress", "output": "⠑⠛⠗⠑⠎⠎" }, { "input": "egress's", "output": "⠑⠛⠗⠑⠎⠎⠄⠎" }, { "input": "egresses", "output": "⠑⠛⠗⠑⠎⠎⠑⠎" }, { "input": "egret", "output": "⠑⠛⠗⠑⠞" }, { "input": "egret's", "output": "⠑⠛⠗⠑⠞⠄⠎" }, { "input": "egrets", "output": "⠑⠛⠗⠑⠞⠎" }, { "input": "eh", "output": "â ‘â “" }, { "input": "eider", "output": "⠑⠊⠙⠻" }, { "input": "eider's", "output": "⠑⠊⠙⠻⠄⠎" }, { "input": "eiderdown", "output": "⠑⠊⠙⠻⠙⠪â " }, { "input": "eiderdown's", "output": "⠑⠊⠙⠻⠙⠪â â „â Ž" }, { "input": "eiderdowns", "output": "⠑⠊⠙⠻⠙⠪â â Ž" }, { "input": "eiders", "output": "⠑⠊⠙⠻⠎" }, { "input": "eigenvalue", "output": "⠑⠊⠛⠢⠧â â ‡â ¥â ‘" }, { "input": "eigenvalues", "output": "⠑⠊⠛⠢⠧â â ‡â ¥â ‘â Ž" }, { "input": "eight", "output": "⠑⠊⠣⠞" }, { "input": "eight's", "output": "⠑⠊⠣⠞⠄⠎" }, { "input": "eighteen", "output": "⠑⠊⠣⠞⠑⠢" }, { "input": "eighteen's", "output": "⠑⠊⠣⠞⠑⠢⠄⠎" }, { "input": "eighteens", "output": "⠑⠊⠣⠞⠑⠢⠎" }, { "input": "eighteenth", "output": "⠑⠊⠣⠞⠑⠢⠹" }, { "input": "eighteenth's", "output": "⠑⠊⠣⠞⠑⠢⠹⠄⠎" }, { "input": "eighteenths", "output": "⠑⠊⠣⠞⠑⠢⠹⠎" }, { "input": "eighth", "output": "⠑⠊⠣⠹" }, { "input": "eighth's", "output": "⠑⠊⠣⠹⠄⠎" }, { "input": "eighths", "output": "⠑⠊⠣⠹⠎" }, { "input": "eighties", "output": "⠑⠊⠣⠞⠊⠑⠎" }, { "input": "eightieth", "output": "⠑⠊⠣⠞⠊⠑⠹" }, { "input": "eightieth's", "output": "⠑⠊⠣⠞⠊⠑⠹⠄⠎" }, { "input": "eightieths", "output": "⠑⠊⠣⠞⠊⠑⠹⠎" }, { "input": "eights", "output": "⠑⠊⠣⠞⠎" }, { "input": "eighty", "output": "⠑⠊⠣⠞⠽" }, { "input": "eighty's", "output": "⠑⠊⠣⠞⠽⠄⠎" }, { "input": "einsteinium", "output": "⠑⠔⠌⠑⠔⠊⠥â " }, { "input": "einsteinium's", "output": "⠑⠔⠌⠑⠔⠊⠥â â „â Ž" }, { "input": "either", "output": "â ‘â Š" }, { "input": "ejaculate", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ ‘" }, { "input": "ejaculated", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ «" }, { "input": "ejaculates", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "ejaculating", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ Œ" }, { "input": "ejaculation", "output": "â ‘â šâ â ‰â ¥â ‡â  â " }, { "input": "ejaculation's", "output": "â ‘â šâ â ‰â ¥â ‡â  â â „â Ž" }, { "input": "ejaculations", "output": "â ‘â šâ â ‰â ¥â ‡â  â â Ž" }, { "input": "ejaculatory", "output": "â ‘â šâ â ‰â ¥â ‡â â žâ •â —â ½" }, { "input": "eject", "output": "⠑⠚⠑⠉⠞" }, { "input": "ejected", "output": "⠑⠚⠑⠉⠞⠫" }, { "input": "ejecting", "output": "⠑⠚⠑⠉⠞⠌" }, { "input": "ejection", "output": "⠑⠚⠑⠉⠰â " }, { "input": "ejection's", "output": "⠑⠚⠑⠉⠰â â „â Ž" }, { "input": "ejections", "output": "⠑⠚⠑⠉⠰â â Ž" }, { "input": "ejector", "output": "⠑⠚⠑⠉⠞⠕⠗" }, { "input": "ejector's", "output": "⠑⠚⠑⠉⠞⠕⠗⠄⠎" }, { "input": "ejectors", "output": "⠑⠚⠑⠉⠞⠕⠗⠎" }, { "input": "ejects", "output": "⠑⠚⠑⠉⠞⠎" }, { "input": "eke", "output": "â ‘â …â ‘" }, { "input": "eked", "output": "â ‘â …â «" }, { "input": "ekes", "output": "â ‘â …â ‘â Ž" }, { "input": "eking", "output": "â ‘â …â Œ" }, { "input": "elaborate", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘" }, { "input": "elaborated", "output": "â ‘â ‡â â ƒâ •â —â â žâ «" }, { "input": "elaborately", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘⠇⠽" }, { "input": "elaborateness", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘â °â Ž" }, { "input": "elaborateness's", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘â °â Žâ „â Ž" }, { "input": "elaborates", "output": "â ‘â ‡â â ƒâ •â —â â žâ ‘â Ž" }, { "input": "elaborating", "output": "â ‘â ‡â â ƒâ •â —â â žâ Œ" }, { "input": "elaboration", "output": "â ‘â ‡â â ƒâ •â —â  â " }, { "input": "elaboration's", "output": "â ‘â ‡â â ƒâ •â —â  â â „â Ž" }, { "input": "elaborations", "output": "â ‘â ‡â â ƒâ •â —â  â â Ž" }, { "input": "eland", "output": "⠑⠇⠯" }, { "input": "eland's", "output": "⠑⠇⠯⠄⠎" }, { "input": "elands", "output": "⠑⠇⠯⠎" }, { "input": "elapse", "output": "â ‘â ‡â â â Žâ ‘" }, { "input": "elapsed", "output": "â ‘â ‡â â â Žâ «" }, { "input": "elapses", "output": "â ‘â ‡â â â Žâ ‘â Ž" }, { "input": "elapsing", "output": "â ‘â ‡â â â Žâ Œ" }, { "input": "elastic", "output": "â ‘â ‡â â Œâ Šâ ‰" }, { "input": "elastic's", "output": "â ‘â ‡â â Œâ Šâ ‰â „â Ž" }, { "input": "elastically", "output": "â ‘â ‡â â Œâ Šâ ‰â  â ½" }, { "input": "elasticity", "output": "â ‘â ‡â â Œâ Šâ ‰â °â ½" }, { "input": "elasticity's", "output": "â ‘â ‡â â Œâ Šâ ‰â °â ½â „â Ž" }, { "input": "elasticize", "output": "â ‘â ‡â â Œâ Šâ ‰â Šâ µâ ‘" }, { "input": "elasticized", "output": "â ‘â ‡â â Œâ Šâ ‰â Šâ µâ «" }, { "input": "elasticizes", "output": "â ‘â ‡â â Œâ Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "elasticizing", "output": "â ‘â ‡â â Œâ Šâ ‰â Šâ µâ Œ" }, { "input": "elastics", "output": "â ‘â ‡â â Œâ Šâ ‰â Ž" }, { "input": "elate", "output": "â ‘â ‡â â žâ ‘" }, { "input": "elated", "output": "â ‘â ‡â â žâ «" }, { "input": "elatedly", "output": "â ‘â ‡â â žâ «â ‡â ½" }, { "input": "elates", "output": "â ‘â ‡â â žâ ‘â Ž" }, { "input": "elating", "output": "â ‘â ‡â â žâ Œ" }, { "input": "elation", "output": "⠑⠇⠠â " }, { "input": "elation's", "output": "⠑⠇⠠â â „â Ž" }, { "input": "elbow", "output": "⠑⠇⠃⠪" }, { "input": "elbow's", "output": "⠑⠇⠃⠪⠄⠎" }, { "input": "elbowed", "output": "⠑⠇⠃⠪⠫" }, { "input": "elbowing", "output": "⠑⠇⠃⠪⠌" }, { "input": "elbowroom", "output": "⠑⠇⠃⠪⠗⠕⠕â " }, { "input": "elbowroom's", "output": "⠑⠇⠃⠪⠗⠕⠕â â „â Ž" }, { "input": "elbows", "output": "⠑⠇⠃⠪⠎" }, { "input": "elder", "output": "⠑⠇⠙⠻" }, { "input": "elder's", "output": "⠑⠇⠙⠻⠄⠎" }, { "input": "elderberries", "output": "⠑⠇⠙⠻⠃⠻⠗⠊⠑⠎" }, { "input": "elderberry", "output": "⠑⠇⠙⠻⠃⠻⠗⠽" }, { "input": "elderberry's", "output": "⠑⠇⠙⠻⠃⠻⠗⠽⠄⠎" }, { "input": "elderly", "output": "⠑⠇⠙⠻⠇⠽" }, { "input": "elders", "output": "⠑⠇⠙⠻⠎" }, { "input": "eldest", "output": "⠑⠇⠙⠑⠌" }, { "input": "elect", "output": "⠑⠇⠑⠉⠞" }, { "input": "elect's", "output": "⠑⠇⠑⠉⠞⠄⠎" }, { "input": "electable", "output": "⠑⠇⠑⠉⠞â â ¼" }, { "input": "elected", "output": "⠑⠇⠑⠉⠞⠫" }, { "input": "electing", "output": "⠑⠇⠑⠉⠞⠌" }, { "input": "election", "output": "⠑⠇⠑⠉⠰â " }, { "input": "election's", "output": "⠑⠇⠑⠉⠰â â „â Ž" }, { "input": "electioneer", "output": "⠑⠇⠑⠉⠰â â ‘â »" }, { "input": "electioneered", "output": "⠑⠇⠑⠉⠰â â ‘⠻⠫" }, { "input": "electioneering", "output": "⠑⠇⠑⠉⠰â â ‘⠻⠌" }, { "input": "electioneers", "output": "⠑⠇⠑⠉⠰â â ‘⠻⠎" }, { "input": "elections", "output": "⠑⠇⠑⠉⠰â â Ž" }, { "input": "elective", "output": "⠑⠇⠑⠉⠞⠊⠧⠑" }, { "input": "elective's", "output": "⠑⠇⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "electives", "output": "⠑⠇⠑⠉⠞⠊⠧⠑⠎" }, { "input": "elector", "output": "⠑⠇⠑⠉⠞⠕⠗" }, { "input": "elector's", "output": "⠑⠇⠑⠉⠞⠕⠗⠄⠎" }, { "input": "electoral", "output": "⠑⠇⠑⠉⠞⠕⠗â â ‡" }, { "input": "electorate", "output": "⠑⠇⠑⠉⠞⠕⠗â â žâ ‘" }, { "input": "electorate's", "output": "⠑⠇⠑⠉⠞⠕⠗â â žâ ‘â „â Ž" }, { "input": "electorates", "output": "⠑⠇⠑⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "electors", "output": "⠑⠇⠑⠉⠞⠕⠗⠎" }, { "input": "electric", "output": "⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "electrical", "output": "⠑⠇⠑⠉⠞⠗⠊⠉â â ‡" }, { "input": "electrically", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠠⠽" }, { "input": "electrician", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠊â â " }, { "input": "electrician's", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠊â â â „â Ž" }, { "input": "electricians", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠊â â â Ž" }, { "input": "electricity", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠰⠽" }, { "input": "electricity's", "output": "⠑⠇⠑⠉⠞⠗⠊⠉⠰⠽⠄⠎" }, { "input": "electrification", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠉⠠â " }, { "input": "electrification's", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "electrified", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠫" }, { "input": "electrifier", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠻" }, { "input": "electrifier's", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠻⠄⠎" }, { "input": "electrifiers", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠻⠎" }, { "input": "electrifies", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠊⠑⠎" }, { "input": "electrify", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠽" }, { "input": "electrifying", "output": "⠑⠇⠑⠉⠞⠗⠊⠋⠽⠌" }, { "input": "electrocardiogram", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â " }, { "input": "electrocardiogram's", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â „â Ž" }, { "input": "electrocardiograms", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â Ž" }, { "input": "electrocardiograph", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “" }, { "input": "electrocardiograph's", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “â „â Ž" }, { "input": "electrocardiographs", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “â Ž" }, { "input": "electrocardiography", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “â ½" }, { "input": "electrocardiography's", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠜⠙⠊⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "electrocute", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠑" }, { "input": "electrocuted", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠫" }, { "input": "electrocutes", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠑⠎" }, { "input": "electrocuting", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠞⠌" }, { "input": "electrocution", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠰â " }, { "input": "electrocution's", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠰â â „â Ž" }, { "input": "electrocutions", "output": "⠑⠇⠑⠉⠞⠗⠕⠉⠥⠰â â Ž" }, { "input": "electrode", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠑" }, { "input": "electrode's", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠑⠄⠎" }, { "input": "electrodes", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠑⠎" }, { "input": "electrodynamics", "output": "⠑⠇⠑⠉⠞⠗⠕⠙⠽â â â â Šâ ‰â Ž" }, { "input": "electroencephalogram", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â " }, { "input": "electroencephalogram's", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â „â Ž" }, { "input": "electroencephalograms", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â Ž" }, { "input": "electroencephalograph", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “" }, { "input": "electroencephalograph's", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “â „â Ž" }, { "input": "electroencephalographic", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “â Šâ ‰" }, { "input": "electroencephalographs", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “â Ž" }, { "input": "electroencephalography", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “â ½" }, { "input": "electroencephalography's", "output": "⠑⠇⠑⠉⠞⠗⠕⠢⠉⠑â â “â â ‡â •⠛⠗â â â “⠽⠄⠎" }, { "input": "electrologist", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠕⠛⠊⠌" }, { "input": "electrologist's", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "electrologists", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "electrolysis", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠎⠊⠎" }, { "input": "electrolysis's", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠎⠊⠎⠄⠎" }, { "input": "electrolyte", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠑" }, { "input": "electrolyte's", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠑⠄⠎" }, { "input": "electrolytes", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠑⠎" }, { "input": "electrolytic", "output": "⠑⠇⠑⠉⠞⠗⠕⠇⠽⠞⠊⠉" }, { "input": "electromagnet", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â ž" }, { "input": "electromagnet's", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ „â Ž" }, { "input": "electromagnetic", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Šâ ‰" }, { "input": "electromagnetically", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘⠞⠊⠉⠠⠽" }, { "input": "electromagnetism", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Šâ Žâ " }, { "input": "electromagnetism's", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Šâ Žâ â „â Ž" }, { "input": "electromagnets", "output": "⠑⠇⠑⠉⠞⠗⠕â â â ›â â ‘â žâ Ž" }, { "input": "electromotive", "output": "⠑⠇⠑⠉⠞⠗⠕â â •â žâ Šâ §â ‘" }, { "input": "electron", "output": "⠑⠇⠑⠉⠞⠗⠕â " }, { "input": "electron's", "output": "⠑⠇⠑⠉⠞⠗⠕â â „â Ž" }, { "input": "electronic", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰" }, { "input": "electronically", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰â  â ½" }, { "input": "electronics", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰â Ž" }, { "input": "electronics's", "output": "⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "electrons", "output": "⠑⠇⠑⠉⠞⠗⠕â â Ž" }, { "input": "electroplate", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ ‘" }, { "input": "electroplated", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ «" }, { "input": "electroplates", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ ‘â Ž" }, { "input": "electroplating", "output": "⠑⠇⠑⠉⠞⠗⠕â â ‡â â žâ Œ" }, { "input": "electroscope", "output": "⠑⠇⠑⠉⠞⠗⠕⠎⠉⠕â â ‘" }, { "input": "electroscope's", "output": "⠑⠇⠑⠉⠞⠗⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "electroscopes", "output": "⠑⠇⠑⠉⠞⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "electroscopic", "output": "⠑⠇⠑⠉⠞⠗⠕⠎⠉⠕â â Šâ ‰" }, { "input": "electroshock", "output": "⠑⠇⠑⠉⠞⠗⠕⠩⠕⠉⠅" }, { "input": "electroshock's", "output": "⠑⠇⠑⠉⠞⠗⠕⠩⠕⠉⠅⠄⠎" }, { "input": "electrostatic", "output": "⠑⠇⠑⠉⠞⠗⠕⠌â â žâ Šâ ‰" }, { "input": "electrostatics", "output": "⠑⠇⠑⠉⠞⠗⠕⠌â â žâ Šâ ‰â Ž" }, { "input": "electrostatics's", "output": "⠑⠇⠑⠉⠞⠗⠕⠌â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "electrotype", "output": "⠑⠇⠑⠉⠞⠗⠕⠞⠽â â ‘" }, { "input": "electrotype's", "output": "⠑⠇⠑⠉⠞⠗⠕⠞⠽â â ‘â „â Ž" }, { "input": "electrotypes", "output": "⠑⠇⠑⠉⠞⠗⠕⠞⠽â â ‘â Ž" }, { "input": "elects", "output": "⠑⠇⠑⠉⠞⠎" }, { "input": "eleemosynary", "output": "⠑⠇⠑⠑â â •â Žâ ½â â œâ ½" }, { "input": "elegance", "output": "⠑⠇⠑⠛⠨⠑" }, { "input": "elegance's", "output": "⠑⠇⠑⠛⠨⠑⠄⠎" }, { "input": "elegant", "output": "⠑⠇⠑⠛â â â ž" }, { "input": "elegantly", "output": "⠑⠇⠑⠛â â â žâ ‡â ½" }, { "input": "elegiac", "output": "⠑⠇⠑⠛⠊â â ‰" }, { "input": "elegiac's", "output": "⠑⠇⠑⠛⠊â â ‰â „â Ž" }, { "input": "elegiacal", "output": "⠑⠇⠑⠛⠊â â ‰â â ‡" }, { "input": "elegiacs", "output": "⠑⠇⠑⠛⠊â â ‰â Ž" }, { "input": "elegies", "output": "⠑⠇⠑⠛⠊⠑⠎" }, { "input": "elegy", "output": "⠑⠇⠑⠛⠽" }, { "input": "elegy's", "output": "⠑⠇⠑⠛⠽⠄⠎" }, { "input": "element", "output": "⠑⠇⠑⠰⠞" }, { "input": "element's", "output": "⠑⠇⠑⠰⠞⠄⠎" }, { "input": "elemental", "output": "⠑⠇⠑⠰⠞â â ‡" }, { "input": "elementally", "output": "⠑⠇⠑⠰⠞⠠⠽" }, { "input": "elementary", "output": "⠑⠇⠑⠰⠞⠜⠽" }, { "input": "elements", "output": "⠑⠇⠑⠰⠞⠎" }, { "input": "elephant", "output": "⠑⠇⠑â â “â â â ž" }, { "input": "elephant's", "output": "⠑⠇⠑â â “â â â žâ „â Ž" }, { "input": "elephantiasis", "output": "⠑⠇⠑â â “â â â žâ Šâ â Žâ Šâ Ž" }, { "input": "elephantiasis's", "output": "⠑⠇⠑â â “â â â žâ Šâ â Žâ Šâ Žâ „â Ž" }, { "input": "elephantine", "output": "⠑⠇⠑â â “â â â žâ ”â ‘" }, { "input": "elephants", "output": "⠑⠇⠑â â “â â â žâ Ž" }, { "input": "elevate", "output": "⠑⠇⠑⠧â â žâ ‘" }, { "input": "elevated", "output": "⠑⠇⠑⠧â â žâ «" }, { "input": "elevates", "output": "⠑⠇⠑⠧â â žâ ‘â Ž" }, { "input": "elevating", "output": "⠑⠇⠑⠧â â žâ Œ" }, { "input": "elevation", "output": "⠑⠇⠑⠧⠠â " }, { "input": "elevation's", "output": "⠑⠇⠑⠧⠠â â „â Ž" }, { "input": "elevations", "output": "⠑⠇⠑⠧⠠â â Ž" }, { "input": "elevator", "output": "⠑⠇⠑⠧â â žâ •â —" }, { "input": "elevator's", "output": "⠑⠇⠑⠧â â žâ •â —â „â Ž" }, { "input": "elevators", "output": "⠑⠇⠑⠧â â žâ •â —â Ž" }, { "input": "eleven", "output": "⠑⠇⠑⠧⠢" }, { "input": "eleven's", "output": "⠑⠇⠑⠧⠢⠄⠎" }, { "input": "elevens", "output": "⠑⠇⠑⠧⠢⠎" }, { "input": "eleventh", "output": "⠑⠇⠑⠧⠢⠹" }, { "input": "eleventh's", "output": "⠑⠇⠑⠧⠢⠹⠄⠎" }, { "input": "elevenths", "output": "⠑⠇⠑⠧⠢⠹⠎" }, { "input": "elf", "output": "⠑⠇⠋" }, { "input": "elf's", "output": "⠑⠇⠋⠄⠎" }, { "input": "elfin", "output": "⠑⠇⠋⠔" }, { "input": "elfish", "output": "⠑⠇⠋⠊⠩" }, { "input": "elicit", "output": "⠑⠇⠊⠉⠊⠞" }, { "input": "elicitation", "output": "⠑⠇⠊⠉⠊⠞⠠â " }, { "input": "elicitation's", "output": "⠑⠇⠊⠉⠊⠞⠠â â „â Ž" }, { "input": "elicited", "output": "⠑⠇⠊⠉⠊⠞⠫" }, { "input": "eliciting", "output": "⠑⠇⠊⠉⠊⠞⠌" }, { "input": "elicits", "output": "⠑⠇⠊⠉⠊⠞⠎" }, { "input": "elide", "output": "⠑⠇⠊⠙⠑" }, { "input": "elided", "output": "⠑⠇⠊⠙⠫" }, { "input": "elides", "output": "⠑⠇⠊⠙⠑⠎" }, { "input": "eliding", "output": "⠑⠇⠊⠙⠌" }, { "input": "eligibility", "output": "⠑⠇⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "eligibility's", "output": "⠑⠇⠊⠛⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "eligible", "output": "⠑⠇⠊⠛⠊⠼" }, { "input": "eliminate", "output": "⠑⠇⠊â â ”â â žâ ‘" }, { "input": "eliminated", "output": "⠑⠇⠊â â ”â â žâ «" }, { "input": "eliminates", "output": "⠑⠇⠊â â ”â â žâ ‘â Ž" }, { "input": "eliminating", "output": "⠑⠇⠊â â ”â â žâ Œ" }, { "input": "elimination", "output": "⠑⠇⠊â â ”â  â " }, { "input": "elimination's", "output": "⠑⠇⠊â â ”â  â â „â Ž" }, { "input": "eliminations", "output": "⠑⠇⠊â â ”â  â â Ž" }, { "input": "elision", "output": "⠑⠇⠊⠨â " }, { "input": "elision's", "output": "⠑⠇⠊⠨â â „â Ž" }, { "input": "elisions", "output": "⠑⠇⠊⠨â â Ž" }, { "input": "elite", "output": "⠑⠇⠊⠞⠑" }, { "input": "elite's", "output": "⠑⠇⠊⠞⠑⠄⠎" }, { "input": "elites", "output": "⠑⠇⠊⠞⠑⠎" }, { "input": "elitism", "output": "⠑⠇⠊⠞⠊⠎â " }, { "input": "elitism's", "output": "⠑⠇⠊⠞⠊⠎â â „â Ž" }, { "input": "elitist", "output": "⠑⠇⠊⠞⠊⠌" }, { "input": "elitist's", "output": "⠑⠇⠊⠞⠊⠌⠄⠎" }, { "input": "elitists", "output": "⠑⠇⠊⠞⠊⠌⠎" }, { "input": "elixir", "output": "⠑⠇⠊⠭⠊⠗" }, { "input": "elixir's", "output": "⠑⠇⠊⠭⠊⠗⠄⠎" }, { "input": "elixirs", "output": "⠑⠇⠊⠭⠊⠗⠎" }, { "input": "elk", "output": "⠑⠇⠅" }, { "input": "elk's", "output": "⠑⠇⠅⠄⠎" }, { "input": "elks", "output": "⠑⠇⠅⠎" }, { "input": "ell", "output": "⠑⠇⠇" }, { "input": "ell's", "output": "⠑⠇⠇⠄⠎" }, { "input": "ellipse", "output": "⠑⠇⠇⠊â â Žâ ‘" }, { "input": "ellipse's", "output": "⠑⠇⠇⠊â â Žâ ‘â „â Ž" }, { "input": "ellipses", "output": "⠑⠇⠇⠊â â Žâ ‘â Ž" }, { "input": "ellipsis", "output": "⠑⠇⠇⠊â â Žâ Šâ Ž" }, { "input": "ellipsis's", "output": "⠑⠇⠇⠊â â Žâ Šâ Žâ „â Ž" }, { "input": "ellipsoid", "output": "⠑⠇⠇⠊â â Žâ •â Šâ ™" }, { "input": "ellipsoid's", "output": "⠑⠇⠇⠊â â Žâ •⠊⠙⠄⠎" }, { "input": "ellipsoidal", "output": "⠑⠇⠇⠊â â Žâ •â Šâ ™â â ‡" }, { "input": "ellipsoids", "output": "⠑⠇⠇⠊â â Žâ •⠊⠙⠎" }, { "input": "elliptic", "output": "⠑⠇⠇⠊â â žâ Šâ ‰" }, { "input": "elliptical", "output": "⠑⠇⠇⠊â â žâ Šâ ‰â â ‡" }, { "input": "elliptically", "output": "⠑⠇⠇⠊â â žâ Šâ ‰â  â ½" }, { "input": "ells", "output": "⠑⠇⠇⠎" }, { "input": "elm", "output": "â ‘â ‡â " }, { "input": "elm's", "output": "â ‘â ‡â â „â Ž" }, { "input": "elms", "output": "â ‘â ‡â â Ž" }, { "input": "elocution", "output": "⠑⠇⠕⠉⠥⠰â " }, { "input": "elocution's", "output": "⠑⠇⠕⠉⠥⠰â â „â Ž" }, { "input": "elocutionary", "output": "⠑⠇⠕⠉⠥⠰â â œâ ½" }, { "input": "elocutionist", "output": "⠑⠇⠕⠉⠥⠰â â Šâ Œ" }, { "input": "elocutionist's", "output": "⠑⠇⠕⠉⠥⠰â â Šâ Œâ „â Ž" }, { "input": "elocutionists", "output": "⠑⠇⠕⠉⠥⠰â â Šâ Œâ Ž" }, { "input": "elodea", "output": "⠑⠇⠕⠙⠑â " }, { "input": "elodea's", "output": "⠑⠇⠕⠙⠑â â „â Ž" }, { "input": "elodeas", "output": "⠑⠇⠕⠙⠂⠎" }, { "input": "elongate", "output": "⠑⠇⠰⠛â â žâ ‘" }, { "input": "elongated", "output": "⠑⠇⠰⠛â â žâ «" }, { "input": "elongates", "output": "⠑⠇⠰⠛â â žâ ‘â Ž" }, { "input": "elongating", "output": "⠑⠇⠰⠛â â žâ Œ" }, { "input": "elongation", "output": "⠑⠇⠰⠛⠠â " }, { "input": "elongation's", "output": "⠑⠇⠰⠛⠠â â „â Ž" }, { "input": "elongations", "output": "⠑⠇⠰⠛⠠â â Ž" }, { "input": "elope", "output": "⠑⠇⠕â â ‘" }, { "input": "eloped", "output": "⠑⠇⠕â â «" }, { "input": "elopement", "output": "⠑⠇⠕â â ‘â °â ž" }, { "input": "elopement's", "output": "⠑⠇⠕â â ‘â °â žâ „â Ž" }, { "input": "elopements", "output": "⠑⠇⠕â â ‘â °â žâ Ž" }, { "input": "elopes", "output": "⠑⠇⠕â â ‘â Ž" }, { "input": "eloping", "output": "⠑⠇⠕â â Œ" }, { "input": "eloquence", "output": "⠑⠇⠕⠟⠥⠰⠑" }, { "input": "eloquence's", "output": "⠑⠇⠕⠟⠥⠰⠑⠄⠎" }, { "input": "eloquent", "output": "⠑⠇⠕⠟⠥⠢⠞" }, { "input": "eloquently", "output": "⠑⠇⠕⠟⠥⠢⠞⠇⠽" }, { "input": "else", "output": "⠑⠇⠎⠑" }, { "input": "elsewhere", "output": "⠑⠇⠎⠑â â ±" }, { "input": "elucidate", "output": "⠑⠇⠥⠉⠊⠙â â žâ ‘" }, { "input": "elucidated", "output": "⠑⠇⠥⠉⠊⠙â â žâ «" }, { "input": "elucidates", "output": "⠑⠇⠥⠉⠊⠙â â žâ ‘â Ž" }, { "input": "elucidating", "output": "⠑⠇⠥⠉⠊⠙â â žâ Œ" }, { "input": "elucidation", "output": "⠑⠇⠥⠉⠊⠙⠠â " }, { "input": "elucidation's", "output": "⠑⠇⠥⠉⠊⠙⠠â â „â Ž" }, { "input": "elucidations", "output": "⠑⠇⠥⠉⠊⠙⠠â â Ž" }, { "input": "elude", "output": "⠑⠇⠥⠙⠑" }, { "input": "eluded", "output": "⠑⠇⠥⠙⠫" }, { "input": "eludes", "output": "⠑⠇⠥⠙⠑⠎" }, { "input": "eluding", "output": "⠑⠇⠥⠙⠌" }, { "input": "elusive", "output": "⠑⠇⠥⠎⠊⠧⠑" }, { "input": "elusively", "output": "⠑⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "elusiveness", "output": "⠑⠇⠥⠎⠊⠧⠑⠰⠎" }, { "input": "elusiveness's", "output": "⠑⠇⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "elver", "output": "⠑⠇⠧⠻" }, { "input": "elver's", "output": "⠑⠇⠧⠻⠄⠎" }, { "input": "elvers", "output": "⠑⠇⠧⠻⠎" }, { "input": "elves", "output": "⠑⠇⠧⠑⠎" }, { "input": "em", "output": "â ‘â " }, { "input": "em's", "output": "â ‘â â „â Ž" }, { "input": "emaciate", "output": "â ‘â â â ‰â Šâ â žâ ‘" }, { "input": "emaciated", "output": "â ‘â â â ‰â Šâ â žâ «" }, { "input": "emaciates", "output": "â ‘â â â ‰â Šâ â žâ ‘â Ž" }, { "input": "emaciating", "output": "â ‘â â â ‰â Šâ â žâ Œ" }, { "input": "emaciation", "output": "â ‘â â â ‰â Šâ  â " }, { "input": "emaciation's", "output": "â ‘â â â ‰â Šâ  â â „â Ž" }, { "input": "email", "output": "â ‘â â â Šâ ‡" }, { "input": "email's", "output": "â ‘â â â Šâ ‡â „â Ž" }, { "input": "emailed", "output": "â ‘â â â Šâ ‡â «" }, { "input": "emailing", "output": "â ‘â â â Šâ ‡â Œ" }, { "input": "emails", "output": "â ‘â â â Šâ ‡â Ž" }, { "input": "emanate", "output": "â ‘â â â â â žâ ‘" }, { "input": "emanated", "output": "â ‘â â â â â žâ «" }, { "input": "emanates", "output": "â ‘â â â â â žâ ‘â Ž" }, { "input": "emanating", "output": "â ‘â â â â â žâ Œ" }, { "input": "emanation", "output": "â ‘â â â â  â " }, { "input": "emanation's", "output": "â ‘â â â â  â â „â Ž" }, { "input": "emanations", "output": "â ‘â â â â  â â Ž" }, { "input": "emancipate", "output": "â ‘â â â â ‰â Šâ â â žâ ‘" }, { "input": "emancipated", "output": "â ‘â â â â ‰â Šâ â â žâ «" }, { "input": "emancipates", "output": "â ‘â â â â ‰â Šâ â â žâ ‘â Ž" }, { "input": "emancipating", "output": "â ‘â â â â ‰â Šâ â â žâ Œ" }, { "input": "emancipation", "output": "â ‘â â â â ‰â Šâ â  â " }, { "input": "emancipation's", "output": "â ‘â â â â ‰â Šâ â  â â „â Ž" }, { "input": "emancipator", "output": "â ‘â â â â ‰â Šâ â â žâ •â —" }, { "input": "emancipator's", "output": "â ‘â â â â ‰â Šâ â â žâ •â —â „â Ž" }, { "input": "emancipators", "output": "â ‘â â â â ‰â Šâ â â žâ •â —â Ž" }, { "input": "emasculate", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ ‘" }, { "input": "emasculated", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ «" }, { "input": "emasculates", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "emasculating", "output": "â ‘â â â Žâ ‰â ¥â ‡â â žâ Œ" }, { "input": "emasculation", "output": "â ‘â â â Žâ ‰â ¥â ‡â  â " }, { "input": "emasculation's", "output": "â ‘â â â Žâ ‰â ¥â ‡â  â â „â Ž" }, { "input": "embalm", "output": "â ‘â â ƒâ â ‡â " }, { "input": "embalmed", "output": "â ‘â â ƒâ â ‡â â «" }, { "input": "embalmer", "output": "â ‘â â ƒâ â ‡â â »" }, { "input": "embalmer's", "output": "â ‘â â ƒâ â ‡â â »â „â Ž" }, { "input": "embalmers", "output": "â ‘â â ƒâ â ‡â â »â Ž" }, { "input": "embalming", "output": "â ‘â â ƒâ â ‡â â Œ" }, { "input": "embalms", "output": "â ‘â â ƒâ â ‡â â Ž" }, { "input": "embank", "output": "â ‘â â ƒâ â â …" }, { "input": "embanked", "output": "â ‘â â ƒâ â â …â «" }, { "input": "embanking", "output": "â ‘â â ƒâ â â …â Œ" }, { "input": "embankment", "output": "â ‘â â ƒâ â â …â °â ž" }, { "input": "embankment's", "output": "â ‘â â ƒâ â â …â °â žâ „â Ž" }, { "input": "embankments", "output": "â ‘â â ƒâ â â …â °â žâ Ž" }, { "input": "embanks", "output": "â ‘â â ƒâ â â …â Ž" }, { "input": "embargo", "output": "â ‘â â ƒâ œâ ›â •" }, { "input": "embargo's", "output": "â ‘â â ƒâ œâ ›â •â „â Ž" }, { "input": "embargoed", "output": "â ‘â â ƒâ œâ ›â •â «" }, { "input": "embargoes", "output": "â ‘â â ƒâ œâ ›â •â ‘â Ž" }, { "input": "embargoing", "output": "â ‘â â ƒâ œâ ›â •â Œ" }, { "input": "embark", "output": "â ‘â â ƒâ œâ …" }, { "input": "embarkation", "output": "â ‘â â ƒâ œâ …â  â " }, { "input": "embarkation's", "output": "â ‘â â ƒâ œâ …â  â â „â Ž" }, { "input": "embarkations", "output": "â ‘â â ƒâ œâ …â  â â Ž" }, { "input": "embarked", "output": "â ‘â â ƒâ œâ …â «" }, { "input": "embarking", "output": "â ‘â â ƒâ œâ …â Œ" }, { "input": "embarks", "output": "â ‘â â ƒâ œâ …â Ž" }, { "input": "embarrass", "output": "â ‘â â ƒâ œâ —â â Žâ Ž" }, { "input": "embarrassed", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ «" }, { "input": "embarrasses", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ ‘â Ž" }, { "input": "embarrassing", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ Œ" }, { "input": "embarrassingly", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ Œâ ‡â ½" }, { "input": "embarrassment", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ °â ž" }, { "input": "embarrassment's", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ °â žâ „â Ž" }, { "input": "embarrassments", "output": "â ‘â â ƒâ œâ —â â Žâ Žâ °â žâ Ž" }, { "input": "embassies", "output": "â ‘â â ƒâ â Žâ Žâ Šâ ‘â Ž" }, { "input": "embassy", "output": "â ‘â â ƒâ â Žâ Žâ ½" }, { "input": "embassy's", "output": "â ‘â â ƒâ â Žâ Žâ ½â „â Ž" }, { "input": "embattled", "output": "â ‘â â ƒâ â žâ žâ ‡â «" }, { "input": "embed", "output": "â ‘â â ƒâ «" }, { "input": "embedded", "output": "â ‘â â ƒâ «â ™â «" }, { "input": "embedding", "output": "â ‘â â ƒâ «â ™â Œ" }, { "input": "embeds", "output": "â ‘â â ƒâ «â Ž" }, { "input": "embellish", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩" }, { "input": "embellished", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠫" }, { "input": "embellishes", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠑⠎" }, { "input": "embellishing", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠌" }, { "input": "embellishment", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠰⠞" }, { "input": "embellishment's", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠰⠞⠄⠎" }, { "input": "embellishments", "output": "â ‘â â ƒâ ‘⠇⠇⠊⠩⠰⠞⠎" }, { "input": "ember", "output": "â ‘â â ƒâ »" }, { "input": "ember's", "output": "â ‘â â ƒâ »â „â Ž" }, { "input": "embers", "output": "â ‘â â ƒâ »â Ž" }, { "input": "embezzle", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑" }, { "input": "embezzled", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠫" }, { "input": "embezzlement", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑⠰⠞" }, { "input": "embezzlement's", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑⠰⠞⠄⠎" }, { "input": "embezzler", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠻" }, { "input": "embezzler's", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠻⠄⠎" }, { "input": "embezzlers", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠻⠎" }, { "input": "embezzles", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠑⠎" }, { "input": "embezzling", "output": "â ‘â â ƒâ ‘⠵⠵⠇⠌" }, { "input": "embitter", "output": "â ‘â â ƒâ Šâ žâ žâ »" }, { "input": "embittered", "output": "â ‘â â ƒâ Šâ žâ žâ »â «" }, { "input": "embittering", "output": "â ‘â â ƒâ Šâ žâ žâ »â Œ" }, { "input": "embitterment", "output": "â ‘â â ƒâ Šâ žâ žâ »â °â ž" }, { "input": "embitterment's", "output": "â ‘â â ƒâ Šâ žâ žâ »â °â žâ „â Ž" }, { "input": "embitters", "output": "â ‘â â ƒâ Šâ žâ žâ »â Ž" }, { "input": "emblazon", "output": "â ‘â â ƒâ ‡â â µâ •â " }, { "input": "emblazoned", "output": "â ‘â â ƒâ ‡â â µâ •â â «" }, { "input": "emblazoning", "output": "â ‘â â ƒâ ‡â â µâ •â â Œ" }, { "input": "emblazonment", "output": "â ‘â â ƒâ ‡â â µâ •â â °â ž" }, { "input": "emblazonment's", "output": "â ‘â â ƒâ ‡â â µâ •â â °â žâ „â Ž" }, { "input": "emblazons", "output": "â ‘â â ƒâ ‡â â µâ •â â Ž" }, { "input": "emblem", "output": "â ‘â â ¼â " }, { "input": "emblem's", "output": "â ‘â â ¼â â „â Ž" }, { "input": "emblematic", "output": "â ‘â â ¼â â â žâ Šâ ‰" }, { "input": "emblems", "output": "â ‘â â ¼â â Ž" }, { "input": "embodied", "output": "â ‘â â ƒâ •⠙⠊⠫" }, { "input": "embodies", "output": "â ‘â â ƒâ •⠙⠊⠑⠎" }, { "input": "embodiment", "output": "â ‘â â ƒâ •⠙⠊⠰⠞" }, { "input": "embodiment's", "output": "â ‘â â ƒâ •⠙⠊⠰⠞⠄⠎" }, { "input": "embody", "output": "â ‘â â ƒâ •⠙⠽" }, { "input": "embodying", "output": "â ‘â â ƒâ •⠙⠽⠌" }, { "input": "embolden", "output": "â ‘â â ƒâ •⠇⠙⠢" }, { "input": "emboldened", "output": "â ‘â â ƒâ •⠇⠙⠢⠫" }, { "input": "emboldening", "output": "â ‘â â ƒâ •⠇⠙⠢⠌" }, { "input": "emboldens", "output": "â ‘â â ƒâ •⠇⠙⠢⠎" }, { "input": "embolism", "output": "â ‘â â ƒâ •⠇⠊⠎â " }, { "input": "embolism's", "output": "â ‘â â ƒâ •⠇⠊⠎â â „â Ž" }, { "input": "embolisms", "output": "â ‘â â ƒâ •⠇⠊⠎â â Ž" }, { "input": "emboss", "output": "â ‘â â ƒâ •â Žâ Ž" }, { "input": "embossed", "output": "â ‘â â ƒâ •â Žâ Žâ «" }, { "input": "embosser", "output": "â ‘â â ƒâ •â Žâ Žâ »" }, { "input": "embosser's", "output": "â ‘â â ƒâ •⠎⠎⠻⠄⠎" }, { "input": "embossers", "output": "â ‘â â ƒâ •⠎⠎⠻⠎" }, { "input": "embosses", "output": "â ‘â â ƒâ •â Žâ Žâ ‘â Ž" }, { "input": "embossing", "output": "â ‘â â ƒâ •â Žâ Žâ Œ" }, { "input": "embouchure", "output": "â ‘â â ƒâ ³â ¡â ¥â —â ‘" }, { "input": "embouchure's", "output": "â ‘â â ƒâ ³â ¡â ¥â —â ‘â „â Ž" }, { "input": "embower", "output": "â ‘â â ƒâ ªâ »" }, { "input": "embowered", "output": "â ‘â â ƒâ ªâ »â «" }, { "input": "embowering", "output": "â ‘â â ƒâ ªâ »â Œ" }, { "input": "embowers", "output": "â ‘â â ƒâ ªâ »â Ž" }, { "input": "embrace", "output": "â ‘â â ƒâ —â â ‰â ‘" }, { "input": "embrace's", "output": "â ‘â â ƒâ —â â ‰â ‘â „â Ž" }, { "input": "embraceable", "output": "â ‘â â ƒâ —â â ‰â ‘â â ¼" }, { "input": "embraced", "output": "â ‘â â ƒâ —â â ‰â «" }, { "input": "embraces", "output": "â ‘â â ƒâ —â â ‰â ‘â Ž" }, { "input": "embracing", "output": "â ‘â â ƒâ —â â ‰â Œ" }, { "input": "embrasure", "output": "â ‘â â ƒâ —â â Žâ ¥â —â ‘" }, { "input": "embrasure's", "output": "â ‘â â ƒâ —â â Žâ ¥â —â ‘â „â Ž" }, { "input": "embrasures", "output": "â ‘â â ƒâ —â â Žâ ¥â —â ‘â Ž" }, { "input": "embroider", "output": "â ‘â â ƒâ —⠕⠊⠙⠻" }, { "input": "embroidered", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠫" }, { "input": "embroiderer", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠻" }, { "input": "embroiderer's", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠻⠄⠎" }, { "input": "embroiderers", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠻⠎" }, { "input": "embroideries", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠊⠑⠎" }, { "input": "embroidering", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠌" }, { "input": "embroiders", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠎" }, { "input": "embroidery", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠽" }, { "input": "embroidery's", "output": "â ‘â â ƒâ —⠕⠊⠙⠻⠽⠄⠎" }, { "input": "embroil", "output": "â ‘â â ƒâ —â •â Šâ ‡" }, { "input": "embroiled", "output": "â ‘â â ƒâ —⠕⠊⠇⠫" }, { "input": "embroiling", "output": "â ‘â â ƒâ —⠕⠊⠇⠌" }, { "input": "embroilment", "output": "â ‘â â ƒâ —⠕⠊⠇⠰⠞" }, { "input": "embroilment's", "output": "â ‘â â ƒâ —⠕⠊⠇⠰⠞⠄⠎" }, { "input": "embroils", "output": "â ‘â â ƒâ —⠕⠊⠇⠎" }, { "input": "embryo", "output": "â ‘â â ƒâ —⠽⠕" }, { "input": "embryo's", "output": "â ‘â â ƒâ —⠽⠕⠄⠎" }, { "input": "embryologist", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠊⠌" }, { "input": "embryologist's", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "embryologists", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠊⠌⠎" }, { "input": "embryology", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠽" }, { "input": "embryology's", "output": "â ‘â â ƒâ —⠽⠕⠇⠕⠛⠽⠄⠎" }, { "input": "embryonic", "output": "â ‘â â ƒâ —⠽⠕â â Šâ ‰" }, { "input": "embryos", "output": "â ‘â â ƒâ —⠽⠕⠎" }, { "input": "emcee", "output": "â ‘â â ‰â ‘â ‘" }, { "input": "emcee's", "output": "â ‘â â ‰â ‘â ‘â „â Ž" }, { "input": "emceed", "output": "â ‘â â ‰â ‘â «" }, { "input": "emceeing", "output": "â ‘â â ‰â ‘â ‘â Œ" }, { "input": "emcees", "output": "â ‘â â ‰â ‘â ‘â Ž" }, { "input": "emend", "output": "â ‘â â ¢â ™" }, { "input": "emendation", "output": "â ‘â â ¢â ™â  â " }, { "input": "emendation's", "output": "â ‘â â ¢â ™â  â â „â Ž" }, { "input": "emendations", "output": "â ‘â â ¢â ™â  â â Ž" }, { "input": "emended", "output": "â ‘â â ¢â ™â «" }, { "input": "emending", "output": "â ‘â â ¢â ™â Œ" }, { "input": "emends", "output": "â ‘â â ¢â ™â Ž" }, { "input": "emerald", "output": "â ‘â â »â â ‡â ™" }, { "input": "emerald's", "output": "â ‘â â »â â ‡â ™â „â Ž" }, { "input": "emeralds", "output": "â ‘â â »â â ‡â ™â Ž" }, { "input": "emerge", "output": "â ‘â â »â ›â ‘" }, { "input": "emerged", "output": "â ‘â â »â ›â «" }, { "input": "emergence", "output": "â ‘â â »â ›â °â ‘" }, { "input": "emergence's", "output": "â ‘â â »â ›â °â ‘â „â Ž" }, { "input": "emergencies", "output": "â ‘â â »â ›â ¢â ‰â Šâ ‘â Ž" }, { "input": "emergency", "output": "â ‘â â »â ›â ¢â ‰â ½" }, { "input": "emergency's", "output": "â ‘â â »â ›â ¢â ‰â ½â „â Ž" }, { "input": "emergent", "output": "â ‘â â »â ›â ¢â ž" }, { "input": "emerges", "output": "â ‘â â »â ›â ‘â Ž" }, { "input": "emerging", "output": "â ‘â â »â ›â Œ" }, { "input": "emerita", "output": "â ‘â â »â Šâ žâ " }, { "input": "emeritus", "output": "â ‘â â »â Šâ žâ ¥â Ž" }, { "input": "emery", "output": "â ‘â â »â ½" }, { "input": "emery's", "output": "â ‘â â »â ½â „â Ž" }, { "input": "emetic", "output": "â ‘â â ‘â žâ Šâ ‰" }, { "input": "emetic's", "output": "â ‘â â ‘⠞⠊⠉⠄⠎" }, { "input": "emetics", "output": "â ‘â â ‘⠞⠊⠉⠎" }, { "input": "emfs", "output": "â ‘â â ‹â Ž" }, { "input": "emigrant", "output": "â ‘â â Šâ ›â —â â â ž" }, { "input": "emigrant's", "output": "â ‘â â Šâ ›â —â â â žâ „â Ž" }, { "input": "emigrants", "output": "â ‘â â Šâ ›â —â â â žâ Ž" }, { "input": "emigrate", "output": "â ‘â â Šâ ›â —â â žâ ‘" }, { "input": "emigrated", "output": "â ‘â â Šâ ›â —â â žâ «" }, { "input": "emigrates", "output": "â ‘â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "emigrating", "output": "â ‘â â Šâ ›â —â â žâ Œ" }, { "input": "emigration", "output": "â ‘â â Šâ ›â —â  â " }, { "input": "emigration's", "output": "â ‘â â Šâ ›â —â  â â „â Ž" }, { "input": "emigrations", "output": "â ‘â â Šâ ›â —â  â â Ž" }, { "input": "eminence", "output": "â ‘â â ”â °â ‘" }, { "input": "eminence's", "output": "â ‘â â ”â °â ‘â „â Ž" }, { "input": "eminences", "output": "â ‘â â ”â °â ‘â Ž" }, { "input": "eminent", "output": "â ‘â â ”⠢⠞" }, { "input": "eminently", "output": "â ‘â â ”⠢⠞⠇⠽" }, { "input": "emir", "output": "â ‘â â Šâ —" }, { "input": "emir's", "output": "â ‘â â Šâ —â „â Ž" }, { "input": "emirate", "output": "â ‘â â Šâ —â â žâ ‘" }, { "input": "emirate's", "output": "â ‘â â Šâ —â â žâ ‘â „â Ž" }, { "input": "emirates", "output": "â ‘â â Šâ —â â žâ ‘â Ž" }, { "input": "emirs", "output": "â ‘â â Šâ —â Ž" }, { "input": "emissaries", "output": "â ‘â â Šâ Žâ Žâ œâ Šâ ‘â Ž" }, { "input": "emissary", "output": "â ‘â â Šâ Žâ Žâ œâ ½" }, { "input": "emissary's", "output": "â ‘â â Šâ Žâ Žâ œâ ½â „â Ž" }, { "input": "emission", "output": "â ‘â â Šâ Žâ ¨â " }, { "input": "emission's", "output": "â ‘â â Šâ Žâ ¨â â „â Ž" }, { "input": "emissions", "output": "â ‘â â Šâ Žâ ¨â â Ž" }, { "input": "emit", "output": "â ‘â â Šâ ž" }, { "input": "emits", "output": "â ‘â â Šâ žâ Ž" }, { "input": "emitted", "output": "â ‘â â Šâ žâ žâ «" }, { "input": "emitter", "output": "â ‘â â Šâ žâ žâ »" }, { "input": "emitter's", "output": "â ‘â â Šâ žâ žâ »â „â Ž" }, { "input": "emitters", "output": "â ‘â â Šâ žâ žâ »â Ž" }, { "input": "emitting", "output": "â ‘â â Šâ žâ žâ Œ" }, { "input": "emollient", "output": "â ‘â â •⠇⠇⠊⠢⠞" }, { "input": "emollient's", "output": "â ‘â â •⠇⠇⠊⠢⠞⠄⠎" }, { "input": "emollients", "output": "â ‘â â •⠇⠇⠊⠢⠞⠎" }, { "input": "emolument", "output": "â ‘â â •⠇⠥⠰⠞" }, { "input": "emolument's", "output": "â ‘â â •⠇⠥⠰⠞⠄⠎" }, { "input": "emoluments", "output": "â ‘â â •⠇⠥⠰⠞⠎" }, { "input": "emote", "output": "â ‘â â •â žâ ‘" }, { "input": "emoted", "output": "â ‘â â •â žâ «" }, { "input": "emotes", "output": "â ‘â â •â žâ ‘â Ž" }, { "input": "emoticon", "output": "â ‘â â •⠞⠊⠉⠕â " }, { "input": "emoticon's", "output": "â ‘â â •⠞⠊⠉⠕â â „â Ž" }, { "input": "emoticons", "output": "â ‘â â •⠞⠊⠉⠕â â Ž" }, { "input": "emoting", "output": "â ‘â â •â žâ Œ" }, { "input": "emotion", "output": "â ‘â â •â °â " }, { "input": "emotion's", "output": "â ‘â â •â °â â „â Ž" }, { "input": "emotional", "output": "â ‘â â •â °â â â ‡" }, { "input": "emotionalism", "output": "â ‘â â •â °â â â ‡â Šâ Žâ " }, { "input": "emotionalism's", "output": "â ‘â â •â °â â â ‡â Šâ Žâ â „â Ž" }, { "input": "emotionalize", "output": "â ‘â â •â °â â â ‡â Šâ µâ ‘" }, { "input": "emotionalized", "output": "â ‘â â •â °â â â ‡â Šâ µâ «" }, { "input": "emotionalizes", "output": "â ‘â â •â °â â â ‡â Šâ µâ ‘â Ž" }, { "input": "emotionalizing", "output": "â ‘â â •â °â â â ‡â Šâ µâ Œ" }, { "input": "emotionally", "output": "â ‘â â •â °â â  â ½" }, { "input": "emotions", "output": "â ‘â â •â °â â Ž" }, { "input": "emotive", "output": "â ‘â â •â žâ Šâ §â ‘" }, { "input": "empathetic", "output": "â ‘â â â â ®â žâ Šâ ‰" }, { "input": "empathize", "output": "â ‘â â â â ¹â Šâ µâ ‘" }, { "input": "empathized", "output": "â ‘â â â â ¹â Šâ µâ «" }, { "input": "empathizes", "output": "â ‘â â â â ¹â Šâ µâ ‘â Ž" }, { "input": "empathizing", "output": "â ‘â â â â ¹â Šâ µâ Œ" }, { "input": "empathy", "output": "â ‘â â â â ¹â ½" }, { "input": "empathy's", "output": "â ‘â â â â ¹â ½â „â Ž" }, { "input": "emperor", "output": "â ‘â â â »â •â —" }, { "input": "emperor's", "output": "â ‘â â â »â •â —â „â Ž" }, { "input": "emperors", "output": "â ‘â â â »â •â —â Ž" }, { "input": "emphases", "output": "â ‘â â â “â â Žâ ‘â Ž" }, { "input": "emphasis", "output": "â ‘â â â “â â Žâ Šâ Ž" }, { "input": "emphasis's", "output": "â ‘â â â “â â Žâ Šâ Žâ „â Ž" }, { "input": "emphasize", "output": "â ‘â â â “â â Žâ Šâ µâ ‘" }, { "input": "emphasized", "output": "â ‘â â â “â â Žâ Šâ µâ «" }, { "input": "emphasizes", "output": "â ‘â â â “â â Žâ Šâ µâ ‘â Ž" }, { "input": "emphasizing", "output": "â ‘â â â “â â Žâ Šâ µâ Œ" }, { "input": "emphatic", "output": "â ‘â â â “â â žâ Šâ ‰" }, { "input": "emphatically", "output": "â ‘â â â “â â žâ Šâ ‰â  â ½" }, { "input": "emphysema", "output": "â ‘â â â “⠽⠎⠑â â " }, { "input": "emphysema's", "output": "â ‘â â â “⠽⠎⠑â â â „â Ž" }, { "input": "empire", "output": "â ‘â â â Šâ —â ‘" }, { "input": "empire's", "output": "â ‘â â â Šâ —â ‘â „â Ž" }, { "input": "empires", "output": "â ‘â â â Šâ —â ‘â Ž" }, { "input": "empiric", "output": "â ‘â â â Šâ —â Šâ ‰" }, { "input": "empirical", "output": "â ‘â â â Šâ —â Šâ ‰â â ‡" }, { "input": "empirically", "output": "â ‘â â â Šâ —⠊⠉⠠⠽" }, { "input": "empiricism", "output": "â ‘â â â Šâ —⠊⠉⠊⠎â " }, { "input": "empiricism's", "output": "â ‘â â â Šâ —⠊⠉⠊⠎â â „â Ž" }, { "input": "emplacement", "output": "â ‘â â â ‡â â ‰â ‘â °â ž" }, { "input": "emplacement's", "output": "â ‘â â â ‡â â ‰â ‘â °â žâ „â Ž" }, { "input": "emplacements", "output": "â ‘â â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "employ", "output": "â ‘â â â ‡â •â ½" }, { "input": "employ's", "output": "â ‘â â â ‡â •⠽⠄⠎" }, { "input": "employable", "output": "â ‘â â â ‡â •â ½â â ¼" }, { "input": "employed", "output": "â ‘â â â ‡â •⠽⠫" }, { "input": "employee", "output": "â ‘â â â ‡â •⠽⠑⠑" }, { "input": "employee's", "output": "â ‘â â â ‡â •⠽⠑⠑⠄⠎" }, { "input": "employees", "output": "â ‘â â â ‡â •⠽⠑⠑⠎" }, { "input": "employer", "output": "â ‘â â â ‡â •⠽⠻" }, { "input": "employer's", "output": "â ‘â â â ‡â •⠽⠻⠄⠎" }, { "input": "employers", "output": "â ‘â â â ‡â •⠽⠻⠎" }, { "input": "employing", "output": "â ‘â â â ‡â •⠽⠌" }, { "input": "employment", "output": "â ‘â â â ‡â •⠽⠰⠞" }, { "input": "employment's", "output": "â ‘â â â ‡â •⠽⠰⠞⠄⠎" }, { "input": "employments", "output": "â ‘â â â ‡â •⠽⠰⠞⠎" }, { "input": "employs", "output": "â ‘â â â ‡â •⠽⠎" }, { "input": "emporium", "output": "â ‘â â â •â —â Šâ ¥â " }, { "input": "emporium's", "output": "â ‘â â â •â —â Šâ ¥â â „â Ž" }, { "input": "emporiums", "output": "â ‘â â â •â —â Šâ ¥â â Ž" }, { "input": "empower", "output": "â ‘â â â ªâ »" }, { "input": "empowered", "output": "â ‘â â â ªâ »â «" }, { "input": "empowering", "output": "â ‘â â â ªâ »â Œ" }, { "input": "empowerment", "output": "â ‘â â â ªâ »â °â ž" }, { "input": "empowerment's", "output": "â ‘â â â ªâ »â °â žâ „â Ž" }, { "input": "empowers", "output": "â ‘â â â ªâ »â Ž" }, { "input": "empress", "output": "â ‘â â â —â ‘â Žâ Ž" }, { "input": "empress's", "output": "â ‘â â â —â ‘â Žâ Žâ „â Ž" }, { "input": "empresses", "output": "â ‘â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "emptied", "output": "â ‘â â â žâ Šâ «" }, { "input": "emptier", "output": "â ‘â â â žâ Šâ »" }, { "input": "empties", "output": "â ‘â â â žâ Šâ ‘â Ž" }, { "input": "emptiest", "output": "â ‘â â â žâ Šâ ‘â Œ" }, { "input": "emptily", "output": "â ‘â â â žâ Šâ ‡â ½" }, { "input": "emptiness", "output": "â ‘â â â žâ Šâ °â Ž" }, { "input": "emptiness's", "output": "â ‘â â â žâ Šâ °â Žâ „â Ž" }, { "input": "empty", "output": "â ‘â â â žâ ½" }, { "input": "empty's", "output": "â ‘â â â žâ ½â „â Ž" }, { "input": "emptying", "output": "â ‘â â â žâ ½â Œ" }, { "input": "empyrean", "output": "â ‘â â â ½â —â ‚â " }, { "input": "empyrean's", "output": "â ‘â â â ½â —â ‚â â „â Ž" }, { "input": "ems", "output": "â ‘â â Ž" }, { "input": "emu", "output": "â ‘â â ¥" }, { "input": "emu's", "output": "â ‘â â ¥â „â Ž" }, { "input": "emulate", "output": "â ‘â â ¥â ‡â â žâ ‘" }, { "input": "emulated", "output": "â ‘â â ¥â ‡â â žâ «" }, { "input": "emulates", "output": "â ‘â â ¥â ‡â â žâ ‘â Ž" }, { "input": "emulating", "output": "â ‘â â ¥â ‡â â žâ Œ" }, { "input": "emulation", "output": "â ‘â â ¥â ‡â  â " }, { "input": "emulation's", "output": "â ‘â â ¥â ‡â  â â „â Ž" }, { "input": "emulations", "output": "â ‘â â ¥â ‡â  â â Ž" }, { "input": "emulative", "output": "â ‘â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "emulator", "output": "â ‘â â ¥â ‡â â žâ •â —" }, { "input": "emulator's", "output": "â ‘â â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "emulators", "output": "â ‘â â ¥â ‡â â žâ •â —â Ž" }, { "input": "emulsification", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ ‰â  â " }, { "input": "emulsification's", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "emulsified", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ «" }, { "input": "emulsifies", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "emulsify", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â ½" }, { "input": "emulsifying", "output": "â ‘â â ¥â ‡â Žâ Šâ ‹â ½â Œ" }, { "input": "emulsion", "output": "â ‘â â ¥â ‡â ¨â " }, { "input": "emulsion's", "output": "â ‘â â ¥â ‡â ¨â â „â Ž" }, { "input": "emulsions", "output": "â ‘â â ¥â ‡â ¨â â Ž" }, { "input": "emus", "output": "â ‘â â ¥â Ž" }, { "input": "en", "output": "â ‘â " }, { "input": "en's", "output": "â ‘â â „â Ž" }, { "input": "enable", "output": "â ¢â â ¼" }, { "input": "enabled", "output": "â ¢â â ¼â ™" }, { "input": "enables", "output": "â ¢â â ¼â Ž" }, { "input": "enabling", "output": "â ¢â â ƒâ ‡â Œ" }, { "input": "enact", "output": "â ¢â â ‰â ž" }, { "input": "enacted", "output": "â ¢â â ‰â žâ «" }, { "input": "enacting", "output": "â ¢â â ‰â žâ Œ" }, { "input": "enactment", "output": "â ¢â â ‰â žâ °â ž" }, { "input": "enactment's", "output": "â ¢â â ‰â žâ °â žâ „â Ž" }, { "input": "enactments", "output": "â ¢â â ‰â žâ °â žâ Ž" }, { "input": "enacts", "output": "â ¢â â ‰â žâ Ž" }, { "input": "enamel", "output": "â ¢â â â ‘â ‡" }, { "input": "enamel's", "output": "â ¢â â â ‘⠇⠄⠎" }, { "input": "enameled", "output": "â ¢â â â ‘⠇⠫" }, { "input": "enameler", "output": "â ¢â â â ‘⠇⠻" }, { "input": "enameler's", "output": "â ¢â â â ‘⠇⠻⠄⠎" }, { "input": "enamelers", "output": "â ¢â â â ‘⠇⠻⠎" }, { "input": "enameling", "output": "â ¢â â â ‘⠇⠌" }, { "input": "enamelings", "output": "â ¢â â â ‘⠇⠌⠎" }, { "input": "enamels", "output": "â ¢â â â ‘⠇⠎" }, { "input": "enamelware", "output": "â ¢â â â ‘⠇⠺⠜⠑" }, { "input": "enamelware's", "output": "â ¢â â â ‘⠇⠺⠜⠑⠄⠎" }, { "input": "enamor", "output": "â ¢â â â •â —" }, { "input": "enamored", "output": "â ¢â â â •â —â «" }, { "input": "enamoring", "output": "â ¢â â â •â —â Œ" }, { "input": "enamors", "output": "â ¢â â â •â —â Ž" }, { "input": "encamp", "output": "⠢⠉â â â " }, { "input": "encamped", "output": "⠢⠉â â â â «" }, { "input": "encamping", "output": "⠢⠉â â â â Œ" }, { "input": "encampment", "output": "⠢⠉â â â â °â ž" }, { "input": "encampment's", "output": "⠢⠉â â â â °â žâ „â Ž" }, { "input": "encampments", "output": "⠢⠉â â â â °â žâ Ž" }, { "input": "encamps", "output": "⠢⠉â â â â Ž" }, { "input": "encapsulate", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ ‘" }, { "input": "encapsulated", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ «" }, { "input": "encapsulates", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "encapsulating", "output": "⠢⠉â â â Žâ ¥â ‡â â žâ Œ" }, { "input": "encapsulation", "output": "⠢⠉â â â Žâ ¥â ‡â  â " }, { "input": "encapsulation's", "output": "⠢⠉â â â Žâ ¥â ‡â  â â „â Ž" }, { "input": "encapsulations", "output": "⠢⠉â â â Žâ ¥â ‡â  â â Ž" }, { "input": "encase", "output": "⠢⠉â â Žâ ‘" }, { "input": "encased", "output": "⠢⠉â â Žâ «" }, { "input": "encasement", "output": "⠢⠉â â Žâ ‘â °â ž" }, { "input": "encasement's", "output": "⠢⠉â â Žâ ‘â °â žâ „â Ž" }, { "input": "encases", "output": "⠢⠉â â Žâ ‘â Ž" }, { "input": "encasing", "output": "⠢⠉â â Žâ Œ" }, { "input": "encephalitic", "output": "⠢⠉⠑â â “â â ‡â Šâ žâ Šâ ‰" }, { "input": "encephalitis", "output": "⠢⠉⠑â â “â â ‡â Šâ žâ Šâ Ž" }, { "input": "encephalitis's", "output": "⠢⠉⠑â â “â â ‡â Šâ žâ Šâ Žâ „â Ž" }, { "input": "enchain", "output": "⠢⠡â â ”" }, { "input": "enchained", "output": "⠢⠡â â ”â «" }, { "input": "enchaining", "output": "⠢⠡â â ”â Œ" }, { "input": "enchains", "output": "⠢⠡â â ”â Ž" }, { "input": "enchant", "output": "⠢⠡â â â ž" }, { "input": "enchanted", "output": "⠢⠡â â â žâ «" }, { "input": "enchanter", "output": "⠢⠡â â â žâ »" }, { "input": "enchanter's", "output": "⠢⠡â â â žâ »â „â Ž" }, { "input": "enchanters", "output": "⠢⠡â â â žâ »â Ž" }, { "input": "enchanting", "output": "⠢⠡â â â žâ Œ" }, { "input": "enchantingly", "output": "⠢⠡â â â žâ Œâ ‡â ½" }, { "input": "enchantment", "output": "⠢⠡â â â žâ °â ž" }, { "input": "enchantment's", "output": "⠢⠡â â â žâ °â žâ „â Ž" }, { "input": "enchantments", "output": "⠢⠡â â â žâ °â žâ Ž" }, { "input": "enchantress", "output": "⠢⠡â â â žâ —â ‘â Žâ Ž" }, { "input": "enchantress's", "output": "⠢⠡â â â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "enchantresses", "output": "⠢⠡â â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "enchants", "output": "⠢⠡â â â žâ Ž" }, { "input": "enchilada", "output": "⠢⠡⠊⠇â â ™â " }, { "input": "enchilada's", "output": "⠢⠡⠊⠇â â ™â â „â Ž" }, { "input": "enchiladas", "output": "⠢⠡⠊⠇â â ™â â Ž" }, { "input": "encipher", "output": "⠢⠉⠊â â “â »" }, { "input": "enciphered", "output": "⠢⠉⠊â â “⠻⠫" }, { "input": "enciphering", "output": "⠢⠉⠊â â “⠻⠌" }, { "input": "enciphers", "output": "⠢⠉⠊â â “⠻⠎" }, { "input": "encircle", "output": "⠢⠉⠊⠗⠉⠇⠑" }, { "input": "encircled", "output": "⠢⠉⠊⠗⠉⠇⠫" }, { "input": "encirclement", "output": "⠢⠉⠊⠗⠉⠇⠑⠰⠞" }, { "input": "encirclement's", "output": "⠢⠉⠊⠗⠉⠇⠑⠰⠞⠄⠎" }, { "input": "encircles", "output": "⠢⠉⠊⠗⠉⠇⠑⠎" }, { "input": "encircling", "output": "⠢⠉⠊⠗⠉⠇⠌" }, { "input": "enclave", "output": "⠢⠉⠇â â §â ‘" }, { "input": "enclave's", "output": "⠢⠉⠇â â §â ‘â „â Ž" }, { "input": "enclaves", "output": "⠢⠉⠇â â §â ‘â Ž" }, { "input": "enclose", "output": "⠢⠉⠇⠕⠎⠑" }, { "input": "enclosed", "output": "⠢⠉⠇⠕⠎⠫" }, { "input": "encloses", "output": "⠢⠉⠇⠕⠎⠑⠎" }, { "input": "enclosing", "output": "⠢⠉⠇⠕⠎⠌" }, { "input": "enclosure", "output": "⠢⠉⠇⠕⠎⠥⠗⠑" }, { "input": "enclosure's", "output": "⠢⠉⠇⠕⠎⠥⠗⠑⠄⠎" }, { "input": "enclosures", "output": "⠢⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "encode", "output": "⠢⠉⠕⠙⠑" }, { "input": "encoded", "output": "⠢⠉⠕⠙⠫" }, { "input": "encoder", "output": "⠢⠉⠕⠙⠻" }, { "input": "encoder's", "output": "⠢⠉⠕⠙⠻⠄⠎" }, { "input": "encoders", "output": "⠢⠉⠕⠙⠻⠎" }, { "input": "encodes", "output": "⠢⠉⠕⠙⠑⠎" }, { "input": "encoding", "output": "⠢⠉⠕⠙⠌" }, { "input": "encomium", "output": "⠢⠉⠕â â Šâ ¥â " }, { "input": "encomium's", "output": "⠢⠉⠕â â Šâ ¥â â „â Ž" }, { "input": "encomiums", "output": "⠢⠉⠕â â Šâ ¥â â Ž" }, { "input": "encompass", "output": "⠢⠉⠕â â â â Žâ Ž" }, { "input": "encompassed", "output": "⠢⠉⠕â â â â Žâ Žâ «" }, { "input": "encompasses", "output": "⠢⠉⠕â â â â Žâ Žâ ‘â Ž" }, { "input": "encompassing", "output": "⠢⠉⠕â â â â Žâ Žâ Œ" }, { "input": "encore", "output": "⠢⠉⠕⠗⠑" }, { "input": "encore's", "output": "⠢⠉⠕⠗⠑⠄⠎" }, { "input": "encored", "output": "⠢⠉⠕⠗⠫" }, { "input": "encores", "output": "⠢⠉⠕⠗⠑⠎" }, { "input": "encoring", "output": "⠢⠉⠕⠗⠌" }, { "input": "encounter", "output": "⠢⠉⠨⠞⠻" }, { "input": "encounter's", "output": "⠢⠉⠨⠞⠻⠄⠎" }, { "input": "encountered", "output": "⠢⠉⠨⠞⠻⠫" }, { "input": "encountering", "output": "⠢⠉⠨⠞⠻⠌" }, { "input": "encounters", "output": "⠢⠉⠨⠞⠻⠎" }, { "input": "encourage", "output": "⠢⠉⠳⠗â â ›â ‘" }, { "input": "encouraged", "output": "⠢⠉⠳⠗â â ›â «" }, { "input": "encouragement", "output": "⠢⠉⠳⠗â â ›â ‘â °â ž" }, { "input": "encouragement's", "output": "⠢⠉⠳⠗â â ›â ‘â °â žâ „â Ž" }, { "input": "encouragements", "output": "⠢⠉⠳⠗â â ›â ‘â °â žâ Ž" }, { "input": "encourages", "output": "⠢⠉⠳⠗â â ›â ‘â Ž" }, { "input": "encouraging", "output": "⠢⠉⠳⠗â â ›â Œ" }, { "input": "encouragingly", "output": "⠢⠉⠳⠗â â ›â Œâ ‡â ½" }, { "input": "encroach", "output": "⠢⠉⠗⠕â â ¡" }, { "input": "encroached", "output": "⠢⠉⠗⠕â â ¡â «" }, { "input": "encroaches", "output": "⠢⠉⠗⠕â â ¡â ‘â Ž" }, { "input": "encroaching", "output": "⠢⠉⠗⠕â â ¡â Œ" }, { "input": "encroachment", "output": "⠢⠉⠗⠕â â ¡â °â ž" }, { "input": "encroachment's", "output": "⠢⠉⠗⠕â â ¡â °â žâ „â Ž" }, { "input": "encroachments", "output": "⠢⠉⠗⠕â â ¡â °â žâ Ž" }, { "input": "encrust", "output": "⠢⠉⠗⠥⠌" }, { "input": "encrustation", "output": "⠢⠉⠗⠥⠌⠠â " }, { "input": "encrustation's", "output": "⠢⠉⠗⠥⠌⠠â â „â Ž" }, { "input": "encrustations", "output": "⠢⠉⠗⠥⠌⠠â â Ž" }, { "input": "encrusted", "output": "⠢⠉⠗⠥⠌⠫" }, { "input": "encrusting", "output": "⠢⠉⠗⠥⠌⠌" }, { "input": "encrusts", "output": "⠢⠉⠗⠥⠌⠎" }, { "input": "encrypt", "output": "⠢⠉⠗⠽â â ž" }, { "input": "encrypted", "output": "⠢⠉⠗⠽â â žâ «" }, { "input": "encryption", "output": "⠢⠉⠗⠽â â °â " }, { "input": "encrypts", "output": "⠢⠉⠗⠽â â žâ Ž" }, { "input": "encumber", "output": "⠢⠉⠥â â ƒâ »" }, { "input": "encumbered", "output": "⠢⠉⠥â â ƒâ »â «" }, { "input": "encumbering", "output": "⠢⠉⠥â â ƒâ »â Œ" }, { "input": "encumbers", "output": "⠢⠉⠥â â ƒâ »â Ž" }, { "input": "encumbrance", "output": "⠢⠉⠥â â ƒâ —⠨⠑" }, { "input": "encumbrance's", "output": "⠢⠉⠥â â ƒâ —⠨⠑⠄⠎" }, { "input": "encumbrances", "output": "⠢⠉⠥â â ƒâ —⠨⠑⠎" }, { "input": "encyclical", "output": "⠢⠉⠽⠉⠇⠊⠉â â ‡" }, { "input": "encyclical's", "output": "⠢⠉⠽⠉⠇⠊⠉â â ‡â „â Ž" }, { "input": "encyclicals", "output": "⠢⠉⠽⠉⠇⠊⠉â â ‡â Ž" }, { "input": "encyclopedia", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ " }, { "input": "encyclopedia's", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ â „â Ž" }, { "input": "encyclopedias", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ â Ž" }, { "input": "encyclopedic", "output": "⠢⠉⠽⠉⠇⠕â â «â Šâ ‰" }, { "input": "encyst", "output": "⠢⠉⠽⠌" }, { "input": "encysted", "output": "⠢⠉⠽⠌⠫" }, { "input": "encysting", "output": "⠢⠉⠽⠌⠌" }, { "input": "encystment", "output": "⠢⠉⠽⠌⠰⠞" }, { "input": "encystment's", "output": "⠢⠉⠽⠌⠰⠞⠄⠎" }, { "input": "encysts", "output": "⠢⠉⠽⠌⠎" }, { "input": "end", "output": "⠢⠙" }, { "input": "end's", "output": "⠢⠙⠄⠎" }, { "input": "endanger", "output": "⠢⠙â â â ›â »" }, { "input": "endangered", "output": "⠢⠙â â â ›â »â «" }, { "input": "endangering", "output": "⠢⠙â â â ›â »â Œ" }, { "input": "endangerment", "output": "⠢⠙â â â ›â »â °â ž" }, { "input": "endangerment's", "output": "⠢⠙â â â ›â »â °â žâ „â Ž" }, { "input": "endangers", "output": "⠢⠙â â â ›â »â Ž" }, { "input": "endear", "output": "⠢⠙⠑⠜" }, { "input": "endeared", "output": "⠢⠙⠑⠜⠫" }, { "input": "endearing", "output": "⠢⠙⠑⠜⠌" }, { "input": "endearingly", "output": "⠢⠙⠑⠜⠌⠇⠽" }, { "input": "endearment", "output": "⠢⠙⠑⠜⠰⠞" }, { "input": "endearment's", "output": "⠢⠙⠑⠜⠰⠞⠄⠎" }, { "input": "endearments", "output": "⠢⠙⠑⠜⠰⠞⠎" }, { "input": "endears", "output": "⠢⠙⠑⠜⠎" }, { "input": "endeavor", "output": "⠢⠙⠂⠧⠕⠗" }, { "input": "endeavor's", "output": "⠢⠙⠂⠧⠕⠗⠄⠎" }, { "input": "endeavored", "output": "⠢⠙⠂⠧⠕⠗⠫" }, { "input": "endeavoring", "output": "⠢⠙⠂⠧⠕⠗⠌" }, { "input": "endeavors", "output": "⠢⠙⠂⠧⠕⠗⠎" }, { "input": "ended", "output": "⠢⠙⠫" }, { "input": "endemic", "output": "⠢⠙⠑â â Šâ ‰" }, { "input": "endemic's", "output": "⠢⠙⠑â â Šâ ‰â „â Ž" }, { "input": "endemically", "output": "⠢⠙⠑â â Šâ ‰â  â ½" }, { "input": "endemics", "output": "⠢⠙⠑â â Šâ ‰â Ž" }, { "input": "ending", "output": "⠢⠙⠌" }, { "input": "ending's", "output": "⠢⠙⠌⠄⠎" }, { "input": "endings", "output": "⠢⠙⠌⠎" }, { "input": "endive", "output": "⠢⠙⠊⠧⠑" }, { "input": "endive's", "output": "⠢⠙⠊⠧⠑⠄⠎" }, { "input": "endives", "output": "⠢⠙⠊⠧⠑⠎" }, { "input": "endless", "output": "⠢⠙⠨⠎" }, { "input": "endlessly", "output": "⠢⠙⠨⠎⠇⠽" }, { "input": "endlessness", "output": "⠢⠙⠨⠎⠰⠎" }, { "input": "endlessness's", "output": "⠢⠙⠨⠎⠰⠎⠄⠎" }, { "input": "endmost", "output": "⠢⠙â â •â Œ" }, { "input": "endocrine", "output": "⠢⠙⠕⠉⠗⠔⠑" }, { "input": "endocrine's", "output": "⠢⠙⠕⠉⠗⠔⠑⠄⠎" }, { "input": "endocrines", "output": "⠢⠙⠕⠉⠗⠔⠑⠎" }, { "input": "endocrinologist", "output": "⠢⠙⠕⠉⠗⠔⠕⠇⠕⠛⠊⠌" }, { "input": "endocrinologist's", "output": "⠢⠙⠕⠉⠗⠔⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "endocrinologists", "output": "⠢⠙⠕⠉⠗⠔⠕⠇⠕⠛⠊⠌⠎" }, { "input": "endocrinology", "output": "⠢⠙⠕⠉⠗⠔⠕⠇⠕⠛⠽" }, { "input": "endocrinology's", "output": "⠢⠙⠕⠉⠗⠔⠕⠇⠕⠛⠽⠄⠎" }, { "input": "endogenous", "output": "⠢⠙⠕⠛⠢⠳⠎" }, { "input": "endogenously", "output": "⠢⠙⠕⠛⠢⠳⠎⠇⠽" }, { "input": "endorphin's", "output": "⠢⠙⠕⠗â â “⠔⠄⠎" }, { "input": "endorse", "output": "⠢⠙⠕⠗⠎⠑" }, { "input": "endorsed", "output": "⠢⠙⠕⠗⠎⠫" }, { "input": "endorsement", "output": "⠢⠙⠕⠗⠎⠑⠰⠞" }, { "input": "endorsement's", "output": "⠢⠙⠕⠗⠎⠑⠰⠞⠄⠎" }, { "input": "endorsements", "output": "⠢⠙⠕⠗⠎⠑⠰⠞⠎" }, { "input": "endorser", "output": "⠢⠙⠕⠗⠎⠻" }, { "input": "endorser's", "output": "⠢⠙⠕⠗⠎⠻⠄⠎" }, { "input": "endorsers", "output": "⠢⠙⠕⠗⠎⠻⠎" }, { "input": "endorses", "output": "⠢⠙⠕⠗⠎⠑⠎" }, { "input": "endorsing", "output": "⠢⠙⠕⠗⠎⠌" }, { "input": "endoscope", "output": "⠢⠙⠕⠎⠉⠕â â ‘" }, { "input": "endoscope's", "output": "⠢⠙⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "endoscopes", "output": "⠢⠙⠕⠎⠉⠕â â ‘â Ž" }, { "input": "endoscopic", "output": "⠢⠙⠕⠎⠉⠕â â Šâ ‰" }, { "input": "endoscopy", "output": "⠢⠙⠕⠎⠉⠕â â ½" }, { "input": "endoscopy's", "output": "⠢⠙⠕⠎⠉⠕â â ½â „â Ž" }, { "input": "endothermic", "output": "⠢⠙⠕⠮⠗â â Šâ ‰" }, { "input": "endow", "output": "⠢⠙⠪" }, { "input": "endowed", "output": "⠢⠙⠪⠫" }, { "input": "endowing", "output": "⠢⠙⠪⠌" }, { "input": "endowment", "output": "⠢⠙⠪⠰⠞" }, { "input": "endowment's", "output": "⠢⠙⠪⠰⠞⠄⠎" }, { "input": "endowments", "output": "⠢⠙⠪⠰⠞⠎" }, { "input": "endows", "output": "⠢⠙⠪⠎" }, { "input": "ends", "output": "⠢⠙⠎" }, { "input": "endue", "output": "⠢⠙⠥⠑" }, { "input": "endued", "output": "⠢⠙⠥⠫" }, { "input": "endues", "output": "⠢⠙⠥⠑⠎" }, { "input": "enduing", "output": "⠢⠙⠥⠌" }, { "input": "endurable", "output": "⠢⠙⠥⠗â â ¼" }, { "input": "endurance", "output": "⠢⠙⠥⠗⠨⠑" }, { "input": "endurance's", "output": "⠢⠙⠥⠗⠨⠑⠄⠎" }, { "input": "endure", "output": "⠢⠙⠥⠗⠑" }, { "input": "endured", "output": "⠢⠙⠥⠗⠫" }, { "input": "endures", "output": "⠢⠙⠥⠗⠑⠎" }, { "input": "enduring", "output": "⠢⠙⠥⠗⠌" }, { "input": "endways", "output": "⠢⠙⠺â â ½â Ž" }, { "input": "enema", "output": "⠢⠑â â " }, { "input": "enema's", "output": "⠢⠑â â â „â Ž" }, { "input": "enemas", "output": "⠢⠑â â â Ž" }, { "input": "enemies", "output": "⠢⠑â â Šâ ‘â Ž" }, { "input": "enemy", "output": "⠢⠑â â ½" }, { "input": "enemy's", "output": "⠢⠑â â ½â „â Ž" }, { "input": "energetic", "output": "⠢⠻⠛⠑⠞⠊⠉" }, { "input": "energetically", "output": "⠢⠻⠛⠑⠞⠊⠉⠠⠽" }, { "input": "energies", "output": "⠢⠻⠛⠊⠑⠎" }, { "input": "energize", "output": "⠢⠻⠛⠊⠵⠑" }, { "input": "energized", "output": "⠢⠻⠛⠊⠵⠫" }, { "input": "energizer", "output": "⠢⠻⠛⠊⠵⠻" }, { "input": "energizer's", "output": "⠢⠻⠛⠊⠵⠻⠄⠎" }, { "input": "energizers", "output": "⠢⠻⠛⠊⠵⠻⠎" }, { "input": "energizes", "output": "⠢⠻⠛⠊⠵⠑⠎" }, { "input": "energizing", "output": "⠢⠻⠛⠊⠵⠌" }, { "input": "energy", "output": "⠢⠻⠛⠽" }, { "input": "energy's", "output": "⠢⠻⠛⠽⠄⠎" }, { "input": "enervate", "output": "⠢⠻⠧â â žâ ‘" }, { "input": "enervated", "output": "⠢⠻⠧â â žâ «" }, { "input": "enervates", "output": "⠢⠻⠧â â žâ ‘â Ž" }, { "input": "enervating", "output": "⠢⠻⠧â â žâ Œ" }, { "input": "enervation", "output": "⠢⠻⠧⠠â " }, { "input": "enervation's", "output": "⠢⠻⠧⠠â â „â Ž" }, { "input": "enfeeble", "output": "⠢⠋⠑⠑⠼" }, { "input": "enfeebled", "output": "⠢⠋⠑⠑⠼⠙" }, { "input": "enfeeblement", "output": "⠢⠋⠑⠑⠼⠰⠞" }, { "input": "enfeeblement's", "output": "⠢⠋⠑⠑⠼⠰⠞⠄⠎" }, { "input": "enfeebles", "output": "⠢⠋⠑⠑⠼⠎" }, { "input": "enfeebling", "output": "⠢⠋⠑⠑⠃⠇⠌" }, { "input": "enfilade", "output": "⠢⠋⠊⠇â â ™â ‘" }, { "input": "enfilade's", "output": "⠢⠋⠊⠇â â ™â ‘â „â Ž" }, { "input": "enfiladed", "output": "⠢⠋⠊⠇â â ™â «" }, { "input": "enfilades", "output": "⠢⠋⠊⠇â â ™â ‘â Ž" }, { "input": "enfilading", "output": "⠢⠋⠊⠇â â ™â Œ" }, { "input": "enfold", "output": "⠢⠋⠕⠇⠙" }, { "input": "enfolded", "output": "⠢⠋⠕⠇⠙⠫" }, { "input": "enfolding", "output": "⠢⠋⠕⠇⠙⠌" }, { "input": "enfolds", "output": "⠢⠋⠕⠇⠙⠎" }, { "input": "enforce", "output": "⠢⠿⠉⠑" }, { "input": "enforceable", "output": "⠢⠿⠉⠑â â ¼" }, { "input": "enforced", "output": "⠢⠿⠉⠫" }, { "input": "enforcement", "output": "⠢⠿⠉⠑⠰⠞" }, { "input": "enforcement's", "output": "⠢⠿⠉⠑⠰⠞⠄⠎" }, { "input": "enforcer", "output": "⠢⠿⠉⠻" }, { "input": "enforcer's", "output": "⠢⠿⠉⠻⠄⠎" }, { "input": "enforcers", "output": "⠢⠿⠉⠻⠎" }, { "input": "enforces", "output": "⠢⠿⠉⠑⠎" }, { "input": "enforcing", "output": "⠢⠿⠉⠌" }, { "input": "enfranchise", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘" }, { "input": "enfranchised", "output": "⠢⠋⠗â â â ¡â Šâ Žâ «" }, { "input": "enfranchisement", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘â °â ž" }, { "input": "enfranchisement's", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘â °â žâ „â Ž" }, { "input": "enfranchises", "output": "⠢⠋⠗â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "enfranchising", "output": "⠢⠋⠗â â â ¡â Šâ Žâ Œ" }, { "input": "engage", "output": "⠢⠛â â ›â ‘" }, { "input": "engaged", "output": "⠢⠛â â ›â «" }, { "input": "engagement", "output": "⠢⠛â â ›â ‘â °â ž" }, { "input": "engagement's", "output": "⠢⠛â â ›â ‘â °â žâ „â Ž" }, { "input": "engagements", "output": "⠢⠛â â ›â ‘â °â žâ Ž" }, { "input": "engages", "output": "⠢⠛â â ›â ‘â Ž" }, { "input": "engaging", "output": "⠢⠛â â ›â Œ" }, { "input": "engagingly", "output": "⠢⠛â â ›â Œâ ‡â ½" }, { "input": "engender", "output": "⠢⠛⠢⠙⠻" }, { "input": "engendered", "output": "⠢⠛⠢⠙⠻⠫" }, { "input": "engendering", "output": "⠢⠛⠢⠙⠻⠌" }, { "input": "engenders", "output": "⠢⠛⠢⠙⠻⠎" }, { "input": "engine", "output": "⠢⠛⠔⠑" }, { "input": "engine's", "output": "⠢⠛⠔⠑⠄⠎" }, { "input": "engineer", "output": "⠢⠛⠔⠑⠻" }, { "input": "engineer's", "output": "⠢⠛⠔⠑⠻⠄⠎" }, { "input": "engineered", "output": "⠢⠛⠔⠑⠻⠫" }, { "input": "engineering", "output": "⠢⠛⠔⠑⠻⠌" }, { "input": "engineering's", "output": "⠢⠛⠔⠑⠻⠌⠄⠎" }, { "input": "engineers", "output": "⠢⠛⠔⠑⠻⠎" }, { "input": "engines", "output": "⠢⠛⠔⠑⠎" }, { "input": "engorge", "output": "⠢⠛⠕⠗⠛⠑" }, { "input": "engorged", "output": "⠢⠛⠕⠗⠛⠫" }, { "input": "engorgement's", "output": "⠢⠛⠕⠗⠛⠑⠰⠞⠄⠎" }, { "input": "engorges", "output": "⠢⠛⠕⠗⠛⠑⠎" }, { "input": "engorging", "output": "⠢⠛⠕⠗⠛⠌" }, { "input": "engram", "output": "⠢⠛⠗â â " }, { "input": "engram's", "output": "⠢⠛⠗â â â „â Ž" }, { "input": "engrams", "output": "⠢⠛⠗â â â Ž" }, { "input": "engrave", "output": "⠢⠛⠗â â §â ‘" }, { "input": "engraved", "output": "⠢⠛⠗â â §â «" }, { "input": "engraver", "output": "⠢⠛⠗â â §â »" }, { "input": "engraver's", "output": "⠢⠛⠗â â §â »â „â Ž" }, { "input": "engravers", "output": "⠢⠛⠗â â §â »â Ž" }, { "input": "engraves", "output": "⠢⠛⠗â â §â ‘â Ž" }, { "input": "engraving", "output": "⠢⠛⠗â â §â Œ" }, { "input": "engraving's", "output": "⠢⠛⠗â â §â Œâ „â Ž" }, { "input": "engravings", "output": "⠢⠛⠗â â §â Œâ Ž" }, { "input": "engross", "output": "⠢⠛⠗⠕⠎⠎" }, { "input": "engrossed", "output": "⠢⠛⠗⠕⠎⠎⠫" }, { "input": "engrosses", "output": "⠢⠛⠗⠕⠎⠎⠑⠎" }, { "input": "engrossing", "output": "⠢⠛⠗⠕⠎⠎⠌" }, { "input": "engrossment", "output": "⠢⠛⠗⠕⠎⠎⠰⠞" }, { "input": "engrossment's", "output": "⠢⠛⠗⠕⠎⠎⠰⠞⠄⠎" }, { "input": "engulf", "output": "⠢⠛⠥⠇⠋" }, { "input": "engulfed", "output": "⠢⠛⠥⠇⠋⠫" }, { "input": "engulfing", "output": "⠢⠛⠥⠇⠋⠌" }, { "input": "engulfment", "output": "⠢⠛⠥⠇⠋⠰⠞" }, { "input": "engulfment's", "output": "⠢⠛⠥⠇⠋⠰⠞⠄⠎" }, { "input": "engulfs", "output": "⠢⠛⠥⠇⠋⠎" }, { "input": "enhance", "output": "⠢⠓⠨⠑" }, { "input": "enhanced", "output": "⠢⠓⠨⠑⠙" }, { "input": "enhancement", "output": "⠢⠓⠨⠑⠰⠞" }, { "input": "enhancement's", "output": "⠢⠓⠨⠑⠰⠞⠄⠎" }, { "input": "enhancements", "output": "⠢⠓⠨⠑⠰⠞⠎" }, { "input": "enhancer", "output": "⠢⠓⠨⠑⠗" }, { "input": "enhances", "output": "⠢⠓⠨⠑⠎" }, { "input": "enhancing", "output": "⠢⠓â â â ‰â Œ" }, { "input": "enigma", "output": "⠢⠊⠛â â " }, { "input": "enigma's", "output": "⠢⠊⠛â â â „â Ž" }, { "input": "enigmas", "output": "⠢⠊⠛â â â Ž" }, { "input": "enigmatic", "output": "⠢⠊⠛â â â žâ Šâ ‰" }, { "input": "enigmatically", "output": "⠢⠊⠛â â â žâ Šâ ‰â  â ½" }, { "input": "enjambment", "output": "⠢⠚â â â ƒâ °â ž" }, { "input": "enjambment's", "output": "⠢⠚â â â ƒâ °â žâ „â Ž" }, { "input": "enjambments", "output": "⠢⠚â â â ƒâ °â žâ Ž" }, { "input": "enjoin", "output": "⠢⠚⠕⠔" }, { "input": "enjoined", "output": "⠢⠚⠕⠔⠫" }, { "input": "enjoining", "output": "⠢⠚⠕⠔⠌" }, { "input": "enjoins", "output": "⠢⠚⠕⠔⠎" }, { "input": "enjoy", "output": "⠢⠚⠕⠽" }, { "input": "enjoyable", "output": "⠢⠚⠕⠽â â ¼" }, { "input": "enjoyed", "output": "⠢⠚⠕⠽⠫" }, { "input": "enjoying", "output": "⠢⠚⠕⠽⠌" }, { "input": "enjoyment", "output": "⠢⠚⠕⠽⠰⠞" }, { "input": "enjoyment's", "output": "⠢⠚⠕⠽⠰⠞⠄⠎" }, { "input": "enjoyments", "output": "⠢⠚⠕⠽⠰⠞⠎" }, { "input": "enjoys", "output": "⠢⠚⠕⠽⠎" }, { "input": "enlarge", "output": "⠢⠇⠜⠛⠑" }, { "input": "enlargeable", "output": "⠢⠇⠜⠛⠑â â ¼" }, { "input": "enlarged", "output": "⠢⠇⠜⠛⠫" }, { "input": "enlargement", "output": "⠢⠇⠜⠛⠑⠰⠞" }, { "input": "enlargement's", "output": "⠢⠇⠜⠛⠑⠰⠞⠄⠎" }, { "input": "enlargements", "output": "⠢⠇⠜⠛⠑⠰⠞⠎" }, { "input": "enlarger", "output": "⠢⠇⠜⠛⠻" }, { "input": "enlarger's", "output": "⠢⠇⠜⠛⠻⠄⠎" }, { "input": "enlargers", "output": "⠢⠇⠜⠛⠻⠎" }, { "input": "enlarges", "output": "⠢⠇⠜⠛⠑⠎" }, { "input": "enlarging", "output": "⠢⠇⠜⠛⠌" }, { "input": "enlighten", "output": "⠢⠇⠊⠣⠞⠢" }, { "input": "enlightened", "output": "⠢⠇⠊⠣⠞⠢⠫" }, { "input": "enlightening", "output": "⠢⠇⠊⠣⠞⠢⠌" }, { "input": "enlightenment", "output": "⠢⠇⠊⠣⠞⠢⠰⠞" }, { "input": "enlightenment's", "output": "⠢⠇⠊⠣⠞⠢⠰⠞⠄⠎" }, { "input": "enlightens", "output": "⠢⠇⠊⠣⠞⠢⠎" }, { "input": "enlist", "output": "⠢⠇⠊⠌" }, { "input": "enlisted", "output": "⠢⠇⠊⠌⠫" }, { "input": "enlistee", "output": "⠢⠇⠊⠌⠑⠑" }, { "input": "enlistee's", "output": "⠢⠇⠊⠌⠑⠑⠄⠎" }, { "input": "enlistees", "output": "⠢⠇⠊⠌⠑⠑⠎" }, { "input": "enlisting", "output": "⠢⠇⠊⠌⠌" }, { "input": "enlistment", "output": "⠢⠇⠊⠌⠰⠞" }, { "input": "enlistment's", "output": "⠢⠇⠊⠌⠰⠞⠄⠎" }, { "input": "enlistments", "output": "⠢⠇⠊⠌⠰⠞⠎" }, { "input": "enlists", "output": "⠢⠇⠊⠌⠎" }, { "input": "enliven", "output": "⠢⠇⠊⠧⠢" }, { "input": "enlivened", "output": "⠢⠇⠊⠧⠢⠫" }, { "input": "enlivening", "output": "⠢⠇⠊⠧⠢⠌" }, { "input": "enlivenment", "output": "⠢⠇⠊⠧⠢⠰⠞" }, { "input": "enlivenment's", "output": "⠢⠇⠊⠧⠢⠰⠞⠄⠎" }, { "input": "enlivens", "output": "⠢⠇⠊⠧⠢⠎" }, { "input": "enmesh", "output": "â ¢â â ‘â ©" }, { "input": "enmeshed", "output": "â ¢â â ‘â ©â «" }, { "input": "enmeshes", "output": "â ¢â â ‘â ©â ‘â Ž" }, { "input": "enmeshing", "output": "â ¢â â ‘â ©â Œ" }, { "input": "enmeshment", "output": "â ¢â â ‘â ©â °â ž" }, { "input": "enmeshment's", "output": "â ¢â â ‘â ©â °â žâ „â Ž" }, { "input": "enmities", "output": "â ¢â â Šâ žâ Šâ ‘â Ž" }, { "input": "enmity", "output": "â ¢â â °â ½" }, { "input": "enmity's", "output": "â ¢â â °â ½â „â Ž" }, { "input": "ennoble", "output": "â ¢â â •â ¼" }, { "input": "ennobled", "output": "â ¢â â •⠼⠙" }, { "input": "ennoblement", "output": "â ¢â â •⠼⠰⠞" }, { "input": "ennoblement's", "output": "â ¢â â •⠼⠰⠞⠄⠎" }, { "input": "ennobles", "output": "â ¢â â •⠼⠎" }, { "input": "ennobling", "output": "â ¢â â •⠃⠇⠌" }, { "input": "ennui", "output": "â ¢â â ¥â Š" }, { "input": "ennui's", "output": "â ¢â â ¥â Šâ „â Ž" }, { "input": "enormities", "output": "â ‘â â •â —â â Šâ žâ Šâ ‘â Ž" }, { "input": "enormity", "output": "â ‘â â •â —â â °â ½" }, { "input": "enormity's", "output": "â ‘â â •â —â â °â ½â „â Ž" }, { "input": "enormous", "output": "â ‘â â •â —â â ³â Ž" }, { "input": "enormously", "output": "â ‘â â •â —â â ³â Žâ ‡â ½" }, { "input": "enormousness", "output": "â ‘â â •â —â â ³â Žâ °â Ž" }, { "input": "enormousness's", "output": "â ‘â â •â —â â ³â Žâ °â Žâ „â Ž" }, { "input": "enough", "output": "â ¢" }, { "input": "enough's", "output": "⠢⠳⠣⠄⠎" }, { "input": "enplane", "output": "â ¢â â ‡â â â ‘" }, { "input": "enplaned", "output": "â ¢â â ‡â â â «" }, { "input": "enplanes", "output": "â ¢â â ‡â â â ‘â Ž" }, { "input": "enplaning", "output": "â ¢â â ‡â â â Œ" }, { "input": "enrage", "output": "⠢⠗â â ›â ‘" }, { "input": "enraged", "output": "⠢⠗â â ›â «" }, { "input": "enrages", "output": "⠢⠗â â ›â ‘â Ž" }, { "input": "enraging", "output": "⠢⠗â â ›â Œ" }, { "input": "enrapture", "output": "⠢⠗â â â žâ ¥â —â ‘" }, { "input": "enraptured", "output": "⠢⠗â â â žâ ¥â —â «" }, { "input": "enraptures", "output": "⠢⠗â â â žâ ¥â —â ‘â Ž" }, { "input": "enrapturing", "output": "⠢⠗â â â žâ ¥â —â Œ" }, { "input": "enrich", "output": "⠢⠗⠊⠡" }, { "input": "enriched", "output": "⠢⠗⠊⠡⠫" }, { "input": "enriches", "output": "⠢⠗⠊⠡⠑⠎" }, { "input": "enriching", "output": "⠢⠗⠊⠡⠌" }, { "input": "enrichment", "output": "⠢⠗⠊⠡⠰⠞" }, { "input": "enrichment's", "output": "⠢⠗⠊⠡⠰⠞⠄⠎" }, { "input": "enroll", "output": "⠢⠗⠕⠇⠇" }, { "input": "enrolled", "output": "⠢⠗⠕⠇⠇⠫" }, { "input": "enrolling", "output": "⠢⠗⠕⠇⠇⠌" }, { "input": "enrollment", "output": "⠢⠗⠕⠇⠇⠰⠞" }, { "input": "enrollment's", "output": "⠢⠗⠕⠇⠇⠰⠞⠄⠎" }, { "input": "enrollments", "output": "⠢⠗⠕⠇⠇⠰⠞⠎" }, { "input": "enrolls", "output": "⠢⠗⠕⠇⠇⠎" }, { "input": "ens", "output": "⠢⠎" }, { "input": "ensconce", "output": "⠢⠎⠉⠕â â ‰â ‘" }, { "input": "ensconced", "output": "⠢⠎⠉⠕â â ‰â «" }, { "input": "ensconces", "output": "⠢⠎⠉⠕â â ‰â ‘â Ž" }, { "input": "ensconcing", "output": "⠢⠎⠉⠕â â ‰â Œ" }, { "input": "ensemble", "output": "⠢⠎⠑â â ¼" }, { "input": "ensemble's", "output": "⠢⠎⠑â â ¼â „â Ž" }, { "input": "ensembles", "output": "⠢⠎⠑â â ¼â Ž" }, { "input": "enshrine", "output": "⠢⠩⠗⠔⠑" }, { "input": "enshrined", "output": "⠢⠩⠗⠔⠫" }, { "input": "enshrinement", "output": "⠢⠩⠗⠔⠑⠰⠞" }, { "input": "enshrinement's", "output": "⠢⠩⠗⠔⠑⠰⠞⠄⠎" }, { "input": "enshrines", "output": "⠢⠩⠗⠔⠑⠎" }, { "input": "enshrining", "output": "⠢⠩⠗⠔⠌" }, { "input": "enshroud", "output": "⠢⠩⠗⠳⠙" }, { "input": "enshrouded", "output": "⠢⠩⠗⠳⠙⠫" }, { "input": "enshrouding", "output": "⠢⠩⠗⠳⠙⠌" }, { "input": "enshrouds", "output": "⠢⠩⠗⠳⠙⠎" }, { "input": "ensign", "output": "⠢⠎⠊⠛â " }, { "input": "ensign's", "output": "⠢⠎⠊⠛â â „â Ž" }, { "input": "ensigns", "output": "⠢⠎⠊⠛â â Ž" }, { "input": "ensilage", "output": "⠢⠎⠊⠇â â ›â ‘" }, { "input": "ensilage's", "output": "⠢⠎⠊⠇â â ›â ‘â „â Ž" }, { "input": "enslave", "output": "⠢⠎⠇â â §â ‘" }, { "input": "enslaved", "output": "⠢⠎⠇â â §â «" }, { "input": "enslavement", "output": "⠢⠎⠇â â §â ‘â °â ž" }, { "input": "enslavement's", "output": "⠢⠎⠇â â §â ‘â °â žâ „â Ž" }, { "input": "enslaves", "output": "⠢⠎⠇â â §â ‘â Ž" }, { "input": "enslaving", "output": "⠢⠎⠇â â §â Œ" }, { "input": "ensnare", "output": "⠢⠎â â œâ ‘" }, { "input": "ensnared", "output": "⠢⠎â â œâ «" }, { "input": "ensnarement", "output": "⠢⠎â â œâ ‘â °â ž" }, { "input": "ensnarement's", "output": "⠢⠎â â œâ ‘â °â žâ „â Ž" }, { "input": "ensnares", "output": "⠢⠎â â œâ ‘â Ž" }, { "input": "ensnaring", "output": "⠢⠎â â œâ Œ" }, { "input": "ensue", "output": "⠢⠎⠥⠑" }, { "input": "ensued", "output": "⠢⠎⠥⠫" }, { "input": "ensues", "output": "⠢⠎⠥⠑⠎" }, { "input": "ensuing", "output": "⠢⠎⠥⠌" }, { "input": "ensure", "output": "⠢⠎⠥⠗⠑" }, { "input": "ensured", "output": "⠢⠎⠥⠗⠫" }, { "input": "ensurer", "output": "⠢⠎⠥⠗⠻" }, { "input": "ensurer's", "output": "⠢⠎⠥⠗⠻⠄⠎" }, { "input": "ensurers", "output": "⠢⠎⠥⠗⠻⠎" }, { "input": "ensures", "output": "⠢⠎⠥⠗⠑⠎" }, { "input": "ensuring", "output": "⠢⠎⠥⠗⠌" }, { "input": "entail", "output": "⠢⠞â â Šâ ‡" }, { "input": "entailed", "output": "⠢⠞â â Šâ ‡â «" }, { "input": "entailing", "output": "⠢⠞â â Šâ ‡â Œ" }, { "input": "entailment", "output": "⠢⠞â â Šâ ‡â °â ž" }, { "input": "entailment's", "output": "⠢⠞â â Šâ ‡â °â žâ „â Ž" }, { "input": "entails", "output": "⠢⠞â â Šâ ‡â Ž" }, { "input": "entangle", "output": "⠢⠞â â â ›â ‡â ‘" }, { "input": "entangled", "output": "⠢⠞â â â ›â ‡â «" }, { "input": "entanglement", "output": "⠢⠞â â â ›â ‡â ‘â °â ž" }, { "input": "entanglement's", "output": "⠢⠞â â â ›â ‡â ‘â °â žâ „â Ž" }, { "input": "entanglements", "output": "⠢⠞â â â ›â ‡â ‘â °â žâ Ž" }, { "input": "entangles", "output": "⠢⠞â â â ›â ‡â ‘â Ž" }, { "input": "entangling", "output": "⠢⠞â â â ›â ‡â Œ" }, { "input": "entente", "output": "⠢⠞⠢⠞⠑" }, { "input": "entente's", "output": "⠢⠞⠢⠞⠑⠄⠎" }, { "input": "ententes", "output": "⠢⠞⠢⠞⠑⠎" }, { "input": "enter", "output": "⠢⠞⠻" }, { "input": "entered", "output": "⠢⠞⠻⠫" }, { "input": "entering", "output": "⠢⠞⠻⠌" }, { "input": "enteritis's", "output": "⠢⠞⠻⠊⠞⠊⠎⠄⠎" }, { "input": "enterprise", "output": "⠢⠞⠻â â —â Šâ Žâ ‘" }, { "input": "enterprise's", "output": "⠢⠞⠻â â —â Šâ Žâ ‘â „â Ž" }, { "input": "enterprises", "output": "⠢⠞⠻â â —â Šâ Žâ ‘â Ž" }, { "input": "enterprising", "output": "⠢⠞⠻â â —â Šâ Žâ Œ" }, { "input": "enterprisingly", "output": "⠢⠞⠻â â —⠊⠎⠌⠇⠽" }, { "input": "enters", "output": "⠢⠞⠻⠎" }, { "input": "entertain", "output": "⠢⠞⠻⠞â â ”" }, { "input": "entertained", "output": "⠢⠞⠻⠞â â ”â «" }, { "input": "entertainer", "output": "⠢⠞⠻⠞â â ”â »" }, { "input": "entertainer's", "output": "⠢⠞⠻⠞â â ”⠻⠄⠎" }, { "input": "entertainers", "output": "⠢⠞⠻⠞â â ”⠻⠎" }, { "input": "entertaining", "output": "⠢⠞⠻⠞â â ”â Œ" }, { "input": "entertaining's", "output": "⠢⠞⠻⠞â â ”⠌⠄⠎" }, { "input": "entertainingly", "output": "⠢⠞⠻⠞â â ”⠌⠇⠽" }, { "input": "entertainment", "output": "⠢⠞⠻⠞â â ”â °â ž" }, { "input": "entertainment's", "output": "⠢⠞⠻⠞â â ”â °â žâ „â Ž" }, { "input": "entertainments", "output": "⠢⠞⠻⠞â â ”â °â žâ Ž" }, { "input": "entertains", "output": "⠢⠞⠻⠞â â ”â Ž" }, { "input": "enthrall", "output": "⠢⠹⠗â â ‡â ‡" }, { "input": "enthralled", "output": "⠢⠹⠗â â ‡â ‡â «" }, { "input": "enthralling", "output": "⠢⠹⠗â â ‡â ‡â Œ" }, { "input": "enthrallment", "output": "⠢⠹⠗â â ‡â ‡â °â ž" }, { "input": "enthrallment's", "output": "⠢⠹⠗â â ‡â ‡â °â žâ „â Ž" }, { "input": "enthralls", "output": "⠢⠹⠗â â ‡â ‡â Ž" }, { "input": "enthrone", "output": "⠢⠹⠗â â •" }, { "input": "enthroned", "output": "⠢⠹⠗⠕â â «" }, { "input": "enthronement", "output": "⠢⠹⠗â â •â °â ž" }, { "input": "enthronement's", "output": "⠢⠹⠗â â •â °â žâ „â Ž" }, { "input": "enthronements", "output": "⠢⠹⠗â â •â °â žâ Ž" }, { "input": "enthrones", "output": "⠢⠹⠗â â •â Ž" }, { "input": "enthroning", "output": "⠢⠹⠗⠕â â Œ" }, { "input": "enthuse", "output": "⠢⠹⠥⠎⠑" }, { "input": "enthused", "output": "⠢⠹⠥⠎⠫" }, { "input": "enthuses", "output": "⠢⠹⠥⠎⠑⠎" }, { "input": "enthusiasm", "output": "⠢⠹⠥⠎⠊â â Žâ " }, { "input": "enthusiasm's", "output": "⠢⠹⠥⠎⠊â â Žâ â „â Ž" }, { "input": "enthusiasms", "output": "⠢⠹⠥⠎⠊â â Žâ â Ž" }, { "input": "enthusiast", "output": "⠢⠹⠥⠎⠊â â Œ" }, { "input": "enthusiast's", "output": "⠢⠹⠥⠎⠊â â Œâ „â Ž" }, { "input": "enthusiastic", "output": "⠢⠹⠥⠎⠊â â Œâ Šâ ‰" }, { "input": "enthusiastically", "output": "⠢⠹⠥⠎⠊â â Œâ Šâ ‰â  â ½" }, { "input": "enthusiasts", "output": "⠢⠹⠥⠎⠊â â Œâ Ž" }, { "input": "enthusing", "output": "⠢⠹⠥⠎⠌" }, { "input": "entice", "output": "⠢⠞⠊⠉⠑" }, { "input": "enticed", "output": "⠢⠞⠊⠉⠫" }, { "input": "enticement", "output": "⠢⠞⠊⠉⠑⠰⠞" }, { "input": "enticement's", "output": "⠢⠞⠊⠉⠑⠰⠞⠄⠎" }, { "input": "enticements", "output": "⠢⠞⠊⠉⠑⠰⠞⠎" }, { "input": "entices", "output": "⠢⠞⠊⠉⠑⠎" }, { "input": "enticing", "output": "⠢⠞⠊⠉⠌" }, { "input": "entire", "output": "⠢⠞⠊⠗⠑" }, { "input": "entirely", "output": "⠢⠞⠊⠗⠑⠇⠽" }, { "input": "entirety", "output": "⠢⠞⠊⠗⠑⠞⠽" }, { "input": "entirety's", "output": "⠢⠞⠊⠗⠑⠞⠽⠄⠎" }, { "input": "entities", "output": "⠢⠞⠊⠞⠊⠑⠎" }, { "input": "entitle", "output": "⠢⠞⠊⠞⠇⠑" }, { "input": "entitled", "output": "⠢⠞⠊⠞⠇⠫" }, { "input": "entitlement", "output": "⠢⠞⠊⠞⠇⠑⠰⠞" }, { "input": "entitlement's", "output": "⠢⠞⠊⠞⠇⠑⠰⠞⠄⠎" }, { "input": "entitlements", "output": "⠢⠞⠊⠞⠇⠑⠰⠞⠎" }, { "input": "entitles", "output": "⠢⠞⠊⠞⠇⠑⠎" }, { "input": "entitling", "output": "⠢⠞⠊⠞⠇⠌" }, { "input": "entity", "output": "⠢⠞⠰⠽" }, { "input": "entity's", "output": "⠢⠞⠰⠽⠄⠎" }, { "input": "entomb", "output": "⠢⠞⠕â â ƒ" }, { "input": "entombed", "output": "⠢⠞⠕â â ƒâ «" }, { "input": "entombing", "output": "⠢⠞⠕â â ƒâ Œ" }, { "input": "entombment", "output": "⠢⠞⠕â â ƒâ °â ž" }, { "input": "entombment's", "output": "⠢⠞⠕â â ƒâ °â žâ „â Ž" }, { "input": "entombs", "output": "⠢⠞⠕â â ƒâ Ž" }, { "input": "entomological", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "entomologist", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠌" }, { "input": "entomologist's", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "entomologists", "output": "⠢⠞⠕â â •⠇⠕⠛⠊⠌⠎" }, { "input": "entomology", "output": "⠢⠞⠕â â •⠇⠕⠛⠽" }, { "input": "entomology's", "output": "⠢⠞⠕â â •⠇⠕⠛⠽⠄⠎" }, { "input": "entourage", "output": "⠢⠞⠳⠗â â ›â ‘" }, { "input": "entourage's", "output": "⠢⠞⠳⠗â â ›â ‘â „â Ž" }, { "input": "entourages", "output": "⠢⠞⠳⠗â â ›â ‘â Ž" }, { "input": "entrails", "output": "⠢⠞⠗â â Šâ ‡â Ž" }, { "input": "entrails's", "output": "⠢⠞⠗â â Šâ ‡â Žâ „â Ž" }, { "input": "entrance", "output": "⠢⠞⠗⠨⠑" }, { "input": "entrance's", "output": "⠢⠞⠗⠨⠑⠄⠎" }, { "input": "entranced", "output": "⠢⠞⠗⠨⠑⠙" }, { "input": "entrancement", "output": "⠢⠞⠗⠨⠑⠰⠞" }, { "input": "entrancement's", "output": "⠢⠞⠗⠨⠑⠰⠞⠄⠎" }, { "input": "entrances", "output": "⠢⠞⠗⠨⠑⠎" }, { "input": "entrancing", "output": "⠢⠞⠗â â â ‰â Œ" }, { "input": "entrancingly", "output": "⠢⠞⠗â â â ‰â Œâ ‡â ½" }, { "input": "entrant", "output": "⠢⠞⠗â â â ž" }, { "input": "entrant's", "output": "⠢⠞⠗â â â žâ „â Ž" }, { "input": "entrants", "output": "⠢⠞⠗â â â žâ Ž" }, { "input": "entrap", "output": "⠢⠞⠗â â " }, { "input": "entrapment", "output": "⠢⠞⠗â â â °â ž" }, { "input": "entrapment's", "output": "⠢⠞⠗â â â °â žâ „â Ž" }, { "input": "entrapped", "output": "⠢⠞⠗â â â â «" }, { "input": "entrapping", "output": "⠢⠞⠗â â â â Œ" }, { "input": "entraps", "output": "⠢⠞⠗â â â Ž" }, { "input": "entreat", "output": "⠢⠞⠗⠂⠞" }, { "input": "entreated", "output": "⠢⠞⠗⠂⠞⠫" }, { "input": "entreaties", "output": "⠢⠞⠗⠂⠞⠊⠑⠎" }, { "input": "entreating", "output": "⠢⠞⠗⠂⠞⠌" }, { "input": "entreatingly", "output": "⠢⠞⠗⠂⠞⠌⠇⠽" }, { "input": "entreats", "output": "⠢⠞⠗⠂⠞⠎" }, { "input": "entreaty", "output": "⠢⠞⠗⠂⠞⠽" }, { "input": "entreaty's", "output": "⠢⠞⠗⠂⠞⠽⠄⠎" }, { "input": "entrench", "output": "⠢⠞⠗⠢⠡" }, { "input": "entrenched", "output": "⠢⠞⠗⠢⠡⠫" }, { "input": "entrenches", "output": "⠢⠞⠗⠢⠡⠑⠎" }, { "input": "entrenching", "output": "⠢⠞⠗⠢⠡⠌" }, { "input": "entrenchment", "output": "⠢⠞⠗⠢⠡⠰⠞" }, { "input": "entrenchment's", "output": "⠢⠞⠗⠢⠡⠰⠞⠄⠎" }, { "input": "entrenchments", "output": "⠢⠞⠗⠢⠡⠰⠞⠎" }, { "input": "entrepreneur", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗" }, { "input": "entrepreneur's", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗⠄⠎" }, { "input": "entrepreneurial", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗⠊â â ‡" }, { "input": "entrepreneurs", "output": "⠢⠞⠗⠑â â —⠢⠑⠥⠗⠎" }, { "input": "entries", "output": "⠢⠞⠗⠊⠑⠎" }, { "input": "entropy", "output": "⠢⠞⠗⠕â â ½" }, { "input": "entropy's", "output": "⠢⠞⠗⠕â â ½â „â Ž" }, { "input": "entrust", "output": "⠢⠞⠗⠥⠌" }, { "input": "entrusted", "output": "⠢⠞⠗⠥⠌⠫" }, { "input": "entrusting", "output": "⠢⠞⠗⠥⠌⠌" }, { "input": "entrusts", "output": "⠢⠞⠗⠥⠌⠎" }, { "input": "entry", "output": "⠢⠞⠗⠽" }, { "input": "entry's", "output": "⠢⠞⠗⠽⠄⠎" }, { "input": "entryway", "output": "⠢⠞⠗⠽⠺â â ½" }, { "input": "entryway's", "output": "⠢⠞⠗⠽⠺â â ½â „â Ž" }, { "input": "entryways", "output": "⠢⠞⠗⠽⠺â â ½â Ž" }, { "input": "entwine", "output": "⠢⠞⠺⠔⠑" }, { "input": "entwined", "output": "⠢⠞⠺⠔⠫" }, { "input": "entwines", "output": "⠢⠞⠺⠔⠑⠎" }, { "input": "entwining", "output": "⠢⠞⠺⠔⠌" }, { "input": "enumerable", "output": "â ‘â â ¥â â »â â ¼" }, { "input": "enumerate", "output": "â ‘â â ¥â â »â â žâ ‘" }, { "input": "enumerated", "output": "â ‘â â ¥â â »â â žâ «" }, { "input": "enumerates", "output": "â ‘â â ¥â â »â â žâ ‘â Ž" }, { "input": "enumerating", "output": "â ‘â â ¥â â »â â žâ Œ" }, { "input": "enumeration", "output": "â ‘â â ¥â â »â  â " }, { "input": "enumeration's", "output": "â ‘â â ¥â â »â  â â „â Ž" }, { "input": "enumerations", "output": "â ‘â â ¥â â »â  â â Ž" }, { "input": "enumerator", "output": "â ‘â â ¥â â »â â žâ •â —" }, { "input": "enumerator's", "output": "â ‘â â ¥â â »â â žâ •â —â „â Ž" }, { "input": "enumerators", "output": "â ‘â â ¥â â »â â žâ •â —â Ž" }, { "input": "enunciate", "output": "â ‘â â ¥â â ‰â Šâ â žâ ‘" }, { "input": "enunciated", "output": "â ‘â â ¥â â ‰â Šâ â žâ «" }, { "input": "enunciates", "output": "â ‘â â ¥â â ‰â Šâ â žâ ‘â Ž" }, { "input": "enunciating", "output": "â ‘â â ¥â â ‰â Šâ â žâ Œ" }, { "input": "enunciation", "output": "â ‘â â ¥â â ‰â Šâ  â " }, { "input": "enunciation's", "output": "â ‘â â ¥â â ‰â Šâ  â â „â Ž" }, { "input": "enuresis", "output": "â ‘â â ¥â —â ‘â Žâ Šâ Ž" }, { "input": "enuresis's", "output": "â ‘â â ¥â —â ‘â Žâ Šâ Žâ „â Ž" }, { "input": "envelop", "output": "⠢⠧⠑⠇⠕â " }, { "input": "envelope", "output": "⠢⠧⠑⠇⠕â â ‘" }, { "input": "envelope's", "output": "⠢⠧⠑⠇⠕â â ‘â „â Ž" }, { "input": "enveloped", "output": "⠢⠧⠑⠇⠕â â «" }, { "input": "enveloper", "output": "⠢⠧⠑⠇⠕â â »" }, { "input": "enveloper's", "output": "⠢⠧⠑⠇⠕â â »â „â Ž" }, { "input": "envelopers", "output": "⠢⠧⠑⠇⠕â â »â Ž" }, { "input": "envelopes", "output": "⠢⠧⠑⠇⠕â â ‘â Ž" }, { "input": "enveloping", "output": "⠢⠧⠑⠇⠕â â Œ" }, { "input": "envelopment", "output": "⠢⠧⠑⠇⠕â â °â ž" }, { "input": "envelopment's", "output": "⠢⠧⠑⠇⠕â â °â žâ „â Ž" }, { "input": "envelops", "output": "⠢⠧⠑⠇⠕â â Ž" }, { "input": "envenom", "output": "⠢⠧⠢⠕â " }, { "input": "envenomed", "output": "⠢⠧⠢⠕â â «" }, { "input": "envenoming", "output": "⠢⠧⠢⠕â â Œ" }, { "input": "envenoms", "output": "⠢⠧⠢⠕â â Ž" }, { "input": "enviable", "output": "⠢⠧⠊â â ¼" }, { "input": "enviably", "output": "⠢⠧⠊â â ƒâ ‡â ½" }, { "input": "envied", "output": "⠢⠧⠊⠫" }, { "input": "envies", "output": "⠢⠧⠊⠑⠎" }, { "input": "envious", "output": "⠢⠧⠊⠳⠎" }, { "input": "enviously", "output": "⠢⠧⠊⠳⠎⠇⠽" }, { "input": "enviousness", "output": "⠢⠧⠊⠳⠎⠰⠎" }, { "input": "enviousness's", "output": "⠢⠧⠊⠳⠎⠰⠎⠄⠎" }, { "input": "environment", "output": "⠢⠧⠊⠗⠕â â °â ž" }, { "input": "environment's", "output": "⠢⠧⠊⠗⠕â â °â žâ „â Ž" }, { "input": "environmental", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡" }, { "input": "environmentalism", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Žâ " }, { "input": "environmentalism's", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Žâ â „â Ž" }, { "input": "environmentalist", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Œ" }, { "input": "environmentalist's", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Œâ „â Ž" }, { "input": "environmentalists", "output": "⠢⠧⠊⠗⠕â â °â žâ â ‡â Šâ Œâ Ž" }, { "input": "environmentally", "output": "⠢⠧⠊⠗⠕â â °â žâ  â ½" }, { "input": "environments", "output": "⠢⠧⠊⠗⠕â â °â žâ Ž" }, { "input": "environs", "output": "⠢⠧⠊⠗⠕â â Ž" }, { "input": "environs's", "output": "⠢⠧⠊⠗⠕â â Žâ „â Ž" }, { "input": "envisage", "output": "⠢⠧⠊⠎â â ›â ‘" }, { "input": "envisaged", "output": "⠢⠧⠊⠎â â ›â «" }, { "input": "envisages", "output": "⠢⠧⠊⠎â â ›â ‘â Ž" }, { "input": "envisaging", "output": "⠢⠧⠊⠎â â ›â Œ" }, { "input": "envision", "output": "⠢⠧⠊⠨â " }, { "input": "envisioned", "output": "⠢⠧⠊⠨â â «" }, { "input": "envisioning", "output": "⠢⠧⠊⠨â â Œ" }, { "input": "envisions", "output": "⠢⠧⠊⠨â â Ž" }, { "input": "envoy", "output": "⠢⠧⠕⠽" }, { "input": "envoy's", "output": "⠢⠧⠕⠽⠄⠎" }, { "input": "envoys", "output": "⠢⠧⠕⠽⠎" }, { "input": "envy", "output": "⠢⠧⠽" }, { "input": "envy's", "output": "⠢⠧⠽⠄⠎" }, { "input": "envying", "output": "⠢⠧⠽⠌" }, { "input": "envyingly", "output": "⠢⠧⠽⠌⠇⠽" }, { "input": "enzymatic", "output": "⠢⠵⠽â â â žâ Šâ ‰" }, { "input": "enzyme", "output": "⠢⠵⠽â â ‘" }, { "input": "enzyme's", "output": "⠢⠵⠽â â ‘â „â Ž" }, { "input": "enzymes", "output": "⠢⠵⠽â â ‘â Ž" }, { "input": "eolian", "output": "⠑⠕⠇⠊â â " }, { "input": "eon", "output": "â ‘â •â " }, { "input": "eon's", "output": "â ‘â •â â „â Ž" }, { "input": "eons", "output": "â ‘â •â â Ž" }, { "input": "epaulet", "output": "â ‘â â â ¥â ‡â ‘â ž" }, { "input": "epaulet's", "output": "â ‘â â â ¥â ‡â ‘â žâ „â Ž" }, { "input": "epaulets", "output": "â ‘â â â ¥â ‡â ‘â žâ Ž" }, { "input": "ephedrine", "output": "â ‘â â “⠫⠗⠔⠑" }, { "input": "ephedrine's", "output": "â ‘â â “⠫⠗⠔⠑⠄⠎" }, { "input": "ephemera's", "output": "â ‘â â “â ‘â â »â â „â Ž" }, { "input": "ephemeral", "output": "â ‘â â “â ‘â â »â â ‡" }, { "input": "ephemerally", "output": "â ‘â â “â ‘â â »â  â ½" }, { "input": "epic", "output": "â ‘â â Šâ ‰" }, { "input": "epic's", "output": "â ‘â â Šâ ‰â „â Ž" }, { "input": "epicenter", "output": "â ‘â â Šâ ‰â ¢â žâ »" }, { "input": "epicenter's", "output": "â ‘â â Šâ ‰â ¢â žâ »â „â Ž" }, { "input": "epicenters", "output": "â ‘â â Šâ ‰â ¢â žâ »â Ž" }, { "input": "epics", "output": "â ‘â â Šâ ‰â Ž" }, { "input": "epicure", "output": "â ‘â â Šâ ‰â ¥â —â ‘" }, { "input": "epicure's", "output": "â ‘â â Šâ ‰â ¥â —â ‘â „â Ž" }, { "input": "epicurean", "output": "â ‘â â Šâ ‰â ¥â —â ‚â " }, { "input": "epicurean's", "output": "â ‘â â Šâ ‰â ¥â —â ‚â â „â Ž" }, { "input": "epicureans", "output": "â ‘â â Šâ ‰â ¥â —â ‚â â Ž" }, { "input": "epicures", "output": "â ‘â â Šâ ‰â ¥â —â ‘â Ž" }, { "input": "epidemic", "output": "â ‘â â Šâ ™â ‘â â Šâ ‰" }, { "input": "epidemic's", "output": "â ‘â â Šâ ™â ‘â â Šâ ‰â „â Ž" }, { "input": "epidemically", "output": "â ‘â â Šâ ™â ‘â â Šâ ‰â  â ½" }, { "input": "epidemics", "output": "â ‘â â Šâ ™â ‘â â Šâ ‰â Ž" }, { "input": "epidemiology", "output": "â ‘â â Šâ ™â ‘â â Šâ •⠇⠕⠛⠽" }, { "input": "epidemiology's", "output": "â ‘â â Šâ ™â ‘â â Šâ •⠇⠕⠛⠽⠄⠎" }, { "input": "epidermal", "output": "â ‘â â Šâ ™â »â â â ‡" }, { "input": "epidermic", "output": "â ‘â â Šâ ™â »â â Šâ ‰" }, { "input": "epidermis", "output": "â ‘â â Šâ ™â »â â Šâ Ž" }, { "input": "epidermis's", "output": "â ‘â â Šâ ™â »â â Šâ Žâ „â Ž" }, { "input": "epidermises", "output": "â ‘â â Šâ ™â »â â Šâ Žâ ‘â Ž" }, { "input": "epiglottis", "output": "â ‘â â Šâ ›â ‡â •â žâ žâ Šâ Ž" }, { "input": "epiglottis's", "output": "â ‘â â Šâ ›â ‡â •â žâ žâ Šâ Žâ „â Ž" }, { "input": "epiglottises", "output": "â ‘â â Šâ ›â ‡â •â žâ žâ Šâ Žâ ‘â Ž" }, { "input": "epigram", "output": "â ‘â â Šâ ›â —â â " }, { "input": "epigram's", "output": "â ‘â â Šâ ›â —â â â „â Ž" }, { "input": "epigrammatic", "output": "â ‘â â Šâ ›â —â â â â â žâ Šâ ‰" }, { "input": "epigrams", "output": "â ‘â â Šâ ›â —â â â Ž" }, { "input": "epigraphy", "output": "â ‘â â Šâ ›â —â â â “â ½" }, { "input": "epigraphy's", "output": "â ‘â â Šâ ›â —â â â “⠽⠄⠎" }, { "input": "epilepsy", "output": "â ‘â â Šâ ‡â ‘â â Žâ ½" }, { "input": "epilepsy's", "output": "â ‘â â Šâ ‡â ‘â â Žâ ½â „â Ž" }, { "input": "epileptic", "output": "â ‘â â Šâ ‡â ‘â â žâ Šâ ‰" }, { "input": "epileptic's", "output": "â ‘â â Šâ ‡â ‘â â žâ Šâ ‰â „â Ž" }, { "input": "epileptics", "output": "â ‘â â Šâ ‡â ‘â â žâ Šâ ‰â Ž" }, { "input": "epilogue", "output": "â ‘â â Šâ ‡â •⠛⠥⠑" }, { "input": "epilogue's", "output": "â ‘â â Šâ ‡â •⠛⠥⠑⠄⠎" }, { "input": "epilogues", "output": "â ‘â â Šâ ‡â •⠛⠥⠑⠎" }, { "input": "epinephrine", "output": "â ‘â â Šâ â ‘â â “⠗⠔⠑" }, { "input": "epinephrine's", "output": "â ‘â â Šâ â ‘â â “⠗⠔⠑⠄⠎" }, { "input": "epiphanies", "output": "â ‘â â Šâ â “â â â Šâ ‘â Ž" }, { "input": "epiphany's", "output": "â ‘â â Šâ â “â â â ½â „â Ž" }, { "input": "episcopacy", "output": "â ‘â â Šâ Žâ ‰â •â â â ‰â ½" }, { "input": "episcopacy's", "output": "â ‘â â Šâ Žâ ‰â •â â â ‰â ½â „â Ž" }, { "input": "episcopal", "output": "â ‘â â Šâ Žâ ‰â •â â â ‡" }, { "input": "episcopate", "output": "â ‘â â Šâ Žâ ‰â •â â â žâ ‘" }, { "input": "episcopate's", "output": "â ‘â â Šâ Žâ ‰â •â â â žâ ‘â „â Ž" }, { "input": "episode", "output": "â ‘â â Šâ Žâ •⠙⠑" }, { "input": "episode's", "output": "â ‘â â Šâ Žâ •⠙⠑⠄⠎" }, { "input": "episodes", "output": "â ‘â â Šâ Žâ •⠙⠑⠎" }, { "input": "episodic", "output": "â ‘â â Šâ Žâ •⠙⠊⠉" }, { "input": "episodically", "output": "â ‘â â Šâ Žâ •⠙⠊⠉⠠⠽" }, { "input": "epistemology", "output": "â ‘â â Šâ Œâ ‘â â •⠇⠕⠛⠽" }, { "input": "epistle", "output": "â ‘â â Šâ Œâ ‡â ‘" }, { "input": "epistle's", "output": "â ‘â â Šâ Œâ ‡â ‘â „â Ž" }, { "input": "epistles", "output": "â ‘â â Šâ Œâ ‡â ‘â Ž" }, { "input": "epistolary", "output": "â ‘â â Šâ Œâ •⠇⠜⠽" }, { "input": "epitaph", "output": "â ‘â â Šâ žâ â â “" }, { "input": "epitaph's", "output": "â ‘â â Šâ žâ â â “â „â Ž" }, { "input": "epitaphs", "output": "â ‘â â Šâ žâ â â “â Ž" }, { "input": "epithelial", "output": "â ‘â â Šâ ®â ‡â Šâ â ‡" }, { "input": "epithelium", "output": "â ‘â â Šâ ®â ‡â Šâ ¥â " }, { "input": "epithelium's", "output": "â ‘â â Šâ ®â ‡â Šâ ¥â â „â Ž" }, { "input": "epithet", "output": "â ‘â â Šâ ®â ž" }, { "input": "epithet's", "output": "â ‘â â Šâ ®â žâ „â Ž" }, { "input": "epithets", "output": "â ‘â â Šâ ®â žâ Ž" }, { "input": "epitome", "output": "â ‘â â Šâ žâ •â â ‘" }, { "input": "epitome's", "output": "â ‘â â Šâ žâ •â â ‘â „â Ž" }, { "input": "epitomes", "output": "â ‘â â Šâ žâ •â â ‘â Ž" }, { "input": "epitomize", "output": "â ‘â â Šâ žâ •â â Šâ µâ ‘" }, { "input": "epitomized", "output": "â ‘â â Šâ žâ •â â Šâ µâ «" }, { "input": "epitomizes", "output": "â ‘â â Šâ žâ •â â Šâ µâ ‘â Ž" }, { "input": "epitomizing", "output": "â ‘â â Šâ žâ •â â Šâ µâ Œ" }, { "input": "epoch", "output": "â ‘â â •â ¡" }, { "input": "epoch's", "output": "â ‘â â •â ¡â „â Ž" }, { "input": "epochal", "output": "â ‘â â •â ¡â â ‡" }, { "input": "epochs", "output": "â ‘â â •â ¡â Ž" }, { "input": "epoxied", "output": "â ‘â â •â ­â Šâ «" }, { "input": "epoxies", "output": "â ‘â â •â ­â Šâ ‘â Ž" }, { "input": "epoxy", "output": "â ‘â â •â ­â ½" }, { "input": "epoxy's", "output": "â ‘â â •⠭⠽⠄⠎" }, { "input": "epoxying", "output": "â ‘â â •⠭⠽⠌" }, { "input": "epsilon", "output": "â ‘â â Žâ Šâ ‡â •â " }, { "input": "epsilon's", "output": "â ‘â â Žâ Šâ ‡â •â â „â Ž" }, { "input": "epsilons", "output": "â ‘â â Žâ Šâ ‡â •â â Ž" }, { "input": "equability", "output": "â ‘â Ÿâ ¥â â ƒâ Šâ ‡â °â ½" }, { "input": "equability's", "output": "â ‘â Ÿâ ¥â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "equable", "output": "â ‘â Ÿâ ¥â â ¼" }, { "input": "equably", "output": "â ‘â Ÿâ ¥â â ƒâ ‡â ½" }, { "input": "equal", "output": "â ‘â Ÿâ ¥â â ‡" }, { "input": "equal's", "output": "â ‘â Ÿâ ¥â â ‡â „â Ž" }, { "input": "equaled", "output": "â ‘â Ÿâ ¥â â ‡â «" }, { "input": "equaling", "output": "â ‘â Ÿâ ¥â â ‡â Œ" }, { "input": "equality", "output": "â ‘â Ÿâ ¥â â ‡â °â ½" }, { "input": "equality's", "output": "â ‘â Ÿâ ¥â â ‡â °â ½â „â Ž" }, { "input": "equalization", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ  â " }, { "input": "equalization's", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ  â â „â Ž" }, { "input": "equalize", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ ‘" }, { "input": "equalized", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ «" }, { "input": "equalizer", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ »" }, { "input": "equalizer's", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ »â „â Ž" }, { "input": "equalizers", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ »â Ž" }, { "input": "equalizes", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "equalizing", "output": "â ‘â Ÿâ ¥â â ‡â Šâ µâ Œ" }, { "input": "equally", "output": "⠑⠟⠥⠠⠽" }, { "input": "equals", "output": "â ‘â Ÿâ ¥â â ‡â Ž" }, { "input": "equanimity", "output": "â ‘â Ÿâ ¥â â â Šâ â °â ½" }, { "input": "equanimity's", "output": "â ‘â Ÿâ ¥â â â Šâ â °â ½â „â Ž" }, { "input": "equatable", "output": "â ‘â Ÿâ ¥â â žâ â ¼" }, { "input": "equate", "output": "â ‘â Ÿâ ¥â â žâ ‘" }, { "input": "equated", "output": "â ‘â Ÿâ ¥â â žâ «" }, { "input": "equates", "output": "â ‘â Ÿâ ¥â â žâ ‘â Ž" }, { "input": "equating", "output": "â ‘â Ÿâ ¥â â žâ Œ" }, { "input": "equation", "output": "⠑⠟⠥⠠â " }, { "input": "equation's", "output": "⠑⠟⠥⠠â â „â Ž" }, { "input": "equations", "output": "⠑⠟⠥⠠â â Ž" }, { "input": "equator", "output": "â ‘â Ÿâ ¥â â žâ •â —" }, { "input": "equator's", "output": "â ‘â Ÿâ ¥â â žâ •â —â „â Ž" }, { "input": "equatorial", "output": "â ‘â Ÿâ ¥â â žâ •â —â Šâ â ‡" }, { "input": "equators", "output": "â ‘â Ÿâ ¥â â žâ •â —â Ž" }, { "input": "equestrian", "output": "⠑⠟⠥⠑⠌⠗⠊â â " }, { "input": "equestrian's", "output": "⠑⠟⠥⠑⠌⠗⠊â â â „â Ž" }, { "input": "equestrianism", "output": "⠑⠟⠥⠑⠌⠗⠊â â â Šâ Žâ " }, { "input": "equestrianism's", "output": "⠑⠟⠥⠑⠌⠗⠊â â â Šâ Žâ â „â Ž" }, { "input": "equestrians", "output": "⠑⠟⠥⠑⠌⠗⠊â â â Ž" }, { "input": "equestrienne", "output": "⠑⠟⠥⠑⠌⠗⠊⠢â â ‘" }, { "input": "equestrienne's", "output": "⠑⠟⠥⠑⠌⠗⠊⠢â â ‘â „â Ž" }, { "input": "equestriennes", "output": "⠑⠟⠥⠑⠌⠗⠊⠢â â ‘â Ž" }, { "input": "equidistant", "output": "⠑⠟⠥⠊⠙⠊⠎⠞â â â ž" }, { "input": "equidistantly", "output": "⠑⠟⠥⠊⠙⠊⠎⠞â â â žâ ‡â ½" }, { "input": "equilateral", "output": "⠑⠟⠥⠊⠇â â žâ »â â ‡" }, { "input": "equilateral's", "output": "⠑⠟⠥⠊⠇â â žâ »â â ‡â „â Ž" }, { "input": "equilaterals", "output": "⠑⠟⠥⠊⠇â â žâ »â â ‡â Ž" }, { "input": "equilibrium", "output": "⠑⠟⠥⠊⠇⠊⠃⠗⠊⠥â " }, { "input": "equilibrium's", "output": "⠑⠟⠥⠊⠇⠊⠃⠗⠊⠥â â „â Ž" }, { "input": "equine", "output": "⠑⠟⠥⠔⠑" }, { "input": "equine's", "output": "⠑⠟⠥⠔⠑⠄⠎" }, { "input": "equines", "output": "⠑⠟⠥⠔⠑⠎" }, { "input": "equinoctial", "output": "⠑⠟⠥⠔⠕⠉⠞⠊â â ‡" }, { "input": "equinox", "output": "⠑⠟⠥⠊â â •â ­" }, { "input": "equinox's", "output": "⠑⠟⠥⠊â â •â ­â „â Ž" }, { "input": "equinoxes", "output": "⠑⠟⠥⠊â â •â ­â ‘â Ž" }, { "input": "equip", "output": "⠑⠟⠥⠊â " }, { "input": "equipage", "output": "⠑⠟⠥⠊â â â ›â ‘" }, { "input": "equipage's", "output": "⠑⠟⠥⠊â â â ›â ‘â „â Ž" }, { "input": "equipages", "output": "⠑⠟⠥⠊â â â ›â ‘â Ž" }, { "input": "equipment", "output": "⠑⠟⠥⠊â â °â ž" }, { "input": "equipment's", "output": "⠑⠟⠥⠊â â °â žâ „â Ž" }, { "input": "equipoise", "output": "⠑⠟⠥⠊â â •â Šâ Žâ ‘" }, { "input": "equipoise's", "output": "⠑⠟⠥⠊â â •â Šâ Žâ ‘â „â Ž" }, { "input": "equipped", "output": "⠑⠟⠥⠊â â â «" }, { "input": "equipping", "output": "⠑⠟⠥⠊â â â Œ" }, { "input": "equips", "output": "⠑⠟⠥⠊â â Ž" }, { "input": "equitable", "output": "⠑⠟⠥⠊⠞â â ¼" }, { "input": "equitably", "output": "⠑⠟⠥⠊⠞â â ƒâ ‡â ½" }, { "input": "equitation", "output": "⠑⠟⠥⠊⠞⠠â " }, { "input": "equitation's", "output": "⠑⠟⠥⠊⠞⠠â â „â Ž" }, { "input": "equities", "output": "⠑⠟⠥⠊⠞⠊⠑⠎" }, { "input": "equity", "output": "⠑⠟⠥⠰⠽" }, { "input": "equity's", "output": "⠑⠟⠥⠰⠽⠄⠎" }, { "input": "equivalence", "output": "⠑⠟⠥⠊⠧â â ‡â °â ‘" }, { "input": "equivalence's", "output": "⠑⠟⠥⠊⠧â â ‡â °â ‘â „â Ž" }, { "input": "equivalences", "output": "⠑⠟⠥⠊⠧â â ‡â °â ‘â Ž" }, { "input": "equivalencies", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â ‰â Šâ ‘â Ž" }, { "input": "equivalency", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â ‰â ½" }, { "input": "equivalency's", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â ‰â ½â „â Ž" }, { "input": "equivalent", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â ž" }, { "input": "equivalent's", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â žâ „â Ž" }, { "input": "equivalently", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â žâ ‡â ½" }, { "input": "equivalents", "output": "⠑⠟⠥⠊⠧â â ‡â ¢â žâ Ž" }, { "input": "equivocal", "output": "⠑⠟⠥⠊⠧⠕⠉â â ‡" }, { "input": "equivocally", "output": "⠑⠟⠥⠊⠧⠕⠉⠠⠽" }, { "input": "equivocalness", "output": "⠑⠟⠥⠊⠧⠕⠉â â ‡â °â Ž" }, { "input": "equivocalness's", "output": "⠑⠟⠥⠊⠧⠕⠉â â ‡â °â Žâ „â Ž" }, { "input": "equivocate", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ ‘" }, { "input": "equivocated", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ «" }, { "input": "equivocates", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ ‘â Ž" }, { "input": "equivocating", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ Œ" }, { "input": "equivocation", "output": "⠑⠟⠥⠊⠧⠕⠉⠠â " }, { "input": "equivocation's", "output": "⠑⠟⠥⠊⠧⠕⠉⠠â â „â Ž" }, { "input": "equivocations", "output": "⠑⠟⠥⠊⠧⠕⠉⠠â â Ž" }, { "input": "equivocator", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ •â —" }, { "input": "equivocator's", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ •â —â „â Ž" }, { "input": "equivocators", "output": "⠑⠟⠥⠊⠧⠕⠉â â žâ •â —â Ž" }, { "input": "era", "output": "â »â " }, { "input": "era's", "output": "â »â â „â Ž" }, { "input": "eradicable", "output": "â ‘â —â â ™â Šâ ‰â â ¼" }, { "input": "eradicate", "output": "â ‘â —â â ™â Šâ ‰â â žâ ‘" }, { "input": "eradicated", "output": "â ‘â —â â ™â Šâ ‰â â žâ «" }, { "input": "eradicates", "output": "â ‘â —â â ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "eradicating", "output": "â ‘â —â â ™â Šâ ‰â â žâ Œ" }, { "input": "eradication", "output": "â ‘â —â â ™â Šâ ‰â  â " }, { "input": "eradication's", "output": "â ‘â —â â ™â Šâ ‰â  â â „â Ž" }, { "input": "eradicator", "output": "â ‘â —â â ™â Šâ ‰â â žâ •â —" }, { "input": "eradicator's", "output": "â ‘â —â â ™â Šâ ‰â â žâ •â —â „â Ž" }, { "input": "eradicators", "output": "â ‘â —â â ™â Šâ ‰â â žâ •â —â Ž" }, { "input": "eras", "output": "â »â â Ž" }, { "input": "erasable", "output": "â ‘â —â â Žâ â ¼" }, { "input": "erase", "output": "â ‘â —â â Žâ ‘" }, { "input": "erased", "output": "â ‘â —â â Žâ «" }, { "input": "eraser", "output": "â ‘â —â â Žâ »" }, { "input": "eraser's", "output": "â ‘â —â â Žâ »â „â Ž" }, { "input": "erasers", "output": "â ‘â —â â Žâ »â Ž" }, { "input": "erases", "output": "â ‘â —â â Žâ ‘â Ž" }, { "input": "erasing", "output": "â ‘â —â â Žâ Œ" }, { "input": "erasure", "output": "â ‘â —â â Žâ ¥â —â ‘" }, { "input": "erasure's", "output": "â ‘â —â â Žâ ¥â —â ‘â „â Ž" }, { "input": "erasures", "output": "â ‘â —â â Žâ ¥â —â ‘â Ž" }, { "input": "erbium", "output": "⠻⠃⠊⠥â " }, { "input": "erbium's", "output": "⠻⠃⠊⠥â â „â Ž" }, { "input": "ere", "output": "⠻⠑" }, { "input": "erect", "output": "⠑⠗⠑⠉⠞" }, { "input": "erected", "output": "⠑⠗⠑⠉⠞⠫" }, { "input": "erectile", "output": "⠑⠗⠑⠉⠞⠊⠇⠑" }, { "input": "erecting", "output": "⠑⠗⠑⠉⠞⠌" }, { "input": "erection", "output": "⠑⠗⠑⠉⠰â " }, { "input": "erection's", "output": "⠑⠗⠑⠉⠰â â „â Ž" }, { "input": "erections", "output": "⠑⠗⠑⠉⠰â â Ž" }, { "input": "erectly", "output": "⠑⠗⠑⠉⠞⠇⠽" }, { "input": "erectness", "output": "⠑⠗⠑⠉⠞⠰⠎" }, { "input": "erectness's", "output": "⠑⠗⠑⠉⠞⠰⠎⠄⠎" }, { "input": "erector", "output": "⠑⠗⠑⠉⠞⠕⠗" }, { "input": "erector's", "output": "⠑⠗⠑⠉⠞⠕⠗⠄⠎" }, { "input": "erectors", "output": "⠑⠗⠑⠉⠞⠕⠗⠎" }, { "input": "erects", "output": "⠑⠗⠑⠉⠞⠎" }, { "input": "erelong", "output": "⠻⠑⠇⠰⠛" }, { "input": "eremite", "output": "⠻⠑â â Šâ žâ ‘" }, { "input": "eremite's", "output": "⠻⠑â â Šâ žâ ‘â „â Ž" }, { "input": "eremites", "output": "⠻⠑â â Šâ žâ ‘â Ž" }, { "input": "erg", "output": "⠻⠛" }, { "input": "erg's", "output": "⠻⠛⠄⠎" }, { "input": "ergo", "output": "⠻⠛⠕" }, { "input": "ergonomic", "output": "⠻⠛⠕â â •â â Šâ ‰" }, { "input": "ergonomics", "output": "⠻⠛⠕â â •â â Šâ ‰â Ž" }, { "input": "ergonomics's", "output": "⠻⠛⠕â â •â â Šâ ‰â Žâ „â Ž" }, { "input": "ergosterol", "output": "⠻⠛⠕⠌⠻⠕⠇" }, { "input": "ergosterol's", "output": "⠻⠛⠕⠌⠻⠕⠇⠄⠎" }, { "input": "ergot", "output": "⠻⠛⠕⠞" }, { "input": "ergot's", "output": "⠻⠛⠕⠞⠄⠎" }, { "input": "ergs", "output": "⠻⠛⠎" }, { "input": "ermine", "output": "â »â â ”â ‘" }, { "input": "ermine's", "output": "â »â â ”â ‘â „â Ž" }, { "input": "ermines", "output": "â »â â ”â ‘â Ž" }, { "input": "erode", "output": "⠑⠗⠕⠙⠑" }, { "input": "eroded", "output": "⠑⠗⠕⠙⠫" }, { "input": "erodes", "output": "⠑⠗⠕⠙⠑⠎" }, { "input": "erodible", "output": "⠑⠗⠕⠙⠊⠼" }, { "input": "eroding", "output": "⠑⠗⠕⠙⠌" }, { "input": "erogenous", "output": "⠻⠕⠛⠢⠳⠎" }, { "input": "erosion", "output": "â ‘â —â •â ¨â " }, { "input": "erosion's", "output": "â ‘â —â •â ¨â â „â Ž" }, { "input": "erosive", "output": "â ‘â —â •â Žâ Šâ §â ‘" }, { "input": "erotic", "output": "⠻⠕⠞⠊⠉" }, { "input": "erotica", "output": "⠻⠕⠞⠊⠉â " }, { "input": "erotica's", "output": "⠻⠕⠞⠊⠉â â „â Ž" }, { "input": "erotically", "output": "⠻⠕⠞⠊⠉⠠⠽" }, { "input": "eroticism", "output": "⠻⠕⠞⠊⠉⠊⠎â " }, { "input": "eroticism's", "output": "⠻⠕⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "err", "output": "⠻⠗" }, { "input": "errand", "output": "⠻⠗⠯" }, { "input": "errand's", "output": "⠻⠗⠯⠄⠎" }, { "input": "errands", "output": "⠻⠗⠯⠎" }, { "input": "errant", "output": "⠻⠗â â â ž" }, { "input": "errata", "output": "⠻⠗â â žâ " }, { "input": "errata's", "output": "⠻⠗â â žâ â „â Ž" }, { "input": "erratas", "output": "⠻⠗â â žâ â Ž" }, { "input": "erratic", "output": "⠻⠗â â žâ Šâ ‰" }, { "input": "erratically", "output": "⠻⠗â â žâ Šâ ‰â  â ½" }, { "input": "erratum", "output": "⠻⠗â â žâ ¥â " }, { "input": "erratum's", "output": "⠻⠗â â žâ ¥â â „â Ž" }, { "input": "erred", "output": "⠻⠗⠫" }, { "input": "erring", "output": "⠻⠗⠌" }, { "input": "erroneous", "output": "⠻⠗⠕â â ‘⠳⠎" }, { "input": "erroneously", "output": "⠻⠗⠕â â ‘⠳⠎⠇⠽" }, { "input": "error", "output": "⠻⠗⠕⠗" }, { "input": "error's", "output": "⠻⠗⠕⠗⠄⠎" }, { "input": "errors", "output": "⠻⠗⠕⠗⠎" }, { "input": "errs", "output": "⠻⠗⠎" }, { "input": "ersatz", "output": "⠻⠎â â žâ µ" }, { "input": "ersatz's", "output": "⠻⠎â â žâ µâ „â Ž" }, { "input": "ersatzes", "output": "⠻⠎â â žâ µâ ‘â Ž" }, { "input": "erst", "output": "⠻⠌" }, { "input": "erstwhile", "output": "⠻⠌⠱⠊⠇⠑" }, { "input": "eruct", "output": "⠑⠗⠥⠉⠞" }, { "input": "eructation", "output": "⠑⠗⠥⠉⠞⠠â " }, { "input": "eructation's", "output": "⠑⠗⠥⠉⠞⠠â â „â Ž" }, { "input": "eructations", "output": "⠑⠗⠥⠉⠞⠠â â Ž" }, { "input": "eructed", "output": "⠑⠗⠥⠉⠞⠫" }, { "input": "eructing", "output": "⠑⠗⠥⠉⠞⠌" }, { "input": "eructs", "output": "⠑⠗⠥⠉⠞⠎" }, { "input": "erudite", "output": "⠻⠥⠙⠊⠞⠑" }, { "input": "eruditely", "output": "⠻⠥⠙⠊⠞⠑⠇⠽" }, { "input": "erudition", "output": "⠻⠥⠙⠊⠰â " }, { "input": "erudition's", "output": "⠻⠥⠙⠊⠰â â „â Ž" }, { "input": "erupt", "output": "â ‘â —â ¥â â ž" }, { "input": "erupted", "output": "â ‘â —â ¥â â žâ «" }, { "input": "erupting", "output": "â ‘â —â ¥â â žâ Œ" }, { "input": "eruption", "output": "â ‘â —â ¥â â °â " }, { "input": "eruption's", "output": "â ‘â —â ¥â â °â â „â Ž" }, { "input": "eruptions", "output": "â ‘â —â ¥â â °â â Ž" }, { "input": "eruptive", "output": "â ‘â —â ¥â â žâ Šâ §â ‘" }, { "input": "erupts", "output": "â ‘â —â ¥â â žâ Ž" }, { "input": "erysipelas", "output": "⠻⠽⠎⠊â â ‘â ‡â â Ž" }, { "input": "erysipelas's", "output": "⠻⠽⠎⠊â â ‘â ‡â â Žâ „â Ž" }, { "input": "erythrocyte", "output": "⠻⠽⠹⠗⠕⠉⠽⠞⠑" }, { "input": "erythrocyte's", "output": "⠻⠽⠹⠗⠕⠉⠽⠞⠑⠄⠎" }, { "input": "erythrocytes", "output": "⠻⠽⠹⠗⠕⠉⠽⠞⠑⠎" }, { "input": "es", "output": "â ‘â Ž" }, { "input": "escalate", "output": "â ‘â Žâ ‰â â ‡â â žâ ‘" }, { "input": "escalated", "output": "â ‘â Žâ ‰â â ‡â â žâ «" }, { "input": "escalates", "output": "â ‘â Žâ ‰â â ‡â â žâ ‘â Ž" }, { "input": "escalating", "output": "â ‘â Žâ ‰â â ‡â â žâ Œ" }, { "input": "escalation", "output": "â ‘â Žâ ‰â â ‡â  â " }, { "input": "escalation's", "output": "â ‘â Žâ ‰â â ‡â  â â „â Ž" }, { "input": "escalations", "output": "â ‘â Žâ ‰â â ‡â  â â Ž" }, { "input": "escalator", "output": "â ‘â Žâ ‰â â ‡â â žâ •â —" }, { "input": "escalator's", "output": "â ‘â Žâ ‰â â ‡â â žâ •â —â „â Ž" }, { "input": "escalators", "output": "â ‘â Žâ ‰â â ‡â â žâ •â —â Ž" }, { "input": "escallop", "output": "â ‘â Žâ ‰â â ‡â ‡â •â " }, { "input": "escallop's", "output": "â ‘â Žâ ‰â â ‡â ‡â •â â „â Ž" }, { "input": "escalloped", "output": "â ‘â Žâ ‰â â ‡â ‡â •â â «" }, { "input": "escalloping", "output": "â ‘â Žâ ‰â â ‡â ‡â •â â Œ" }, { "input": "escallops", "output": "â ‘â Žâ ‰â â ‡â ‡â •â â Ž" }, { "input": "escapade", "output": "â ‘â Žâ ‰â â â â ™â ‘" }, { "input": "escapade's", "output": "â ‘â Žâ ‰â â â â ™â ‘â „â Ž" }, { "input": "escapades", "output": "â ‘â Žâ ‰â â â â ™â ‘â Ž" }, { "input": "escape", "output": "â ‘â Žâ ‰â â â ‘" }, { "input": "escape's", "output": "â ‘â Žâ ‰â â â ‘â „â Ž" }, { "input": "escaped", "output": "â ‘â Žâ ‰â â â «" }, { "input": "escapee", "output": "â ‘â Žâ ‰â â â ‘â ‘" }, { "input": "escapee's", "output": "â ‘â Žâ ‰â â â ‘â ‘â „â Ž" }, { "input": "escapees", "output": "â ‘â Žâ ‰â â â ‘â ‘â Ž" }, { "input": "escapement", "output": "â ‘â Žâ ‰â â â ‘â °â ž" }, { "input": "escapement's", "output": "â ‘â Žâ ‰â â â ‘â °â žâ „â Ž" }, { "input": "escapements", "output": "â ‘â Žâ ‰â â â ‘â °â žâ Ž" }, { "input": "escapes", "output": "â ‘â Žâ ‰â â â ‘â Ž" }, { "input": "escaping", "output": "â ‘â Žâ ‰â â â Œ" }, { "input": "escapism", "output": "â ‘â Žâ ‰â â â Šâ Žâ " }, { "input": "escapism's", "output": "â ‘â Žâ ‰â â â Šâ Žâ â „â Ž" }, { "input": "escapist", "output": "â ‘â Žâ ‰â â â Šâ Œ" }, { "input": "escapist's", "output": "â ‘â Žâ ‰â â â Šâ Œâ „â Ž" }, { "input": "escapists", "output": "â ‘â Žâ ‰â â â Šâ Œâ Ž" }, { "input": "escargot", "output": "⠑⠎⠉⠜⠛⠕⠞" }, { "input": "escargot's", "output": "⠑⠎⠉⠜⠛⠕⠞⠄⠎" }, { "input": "escargots", "output": "⠑⠎⠉⠜⠛⠕⠞⠎" }, { "input": "escarole", "output": "⠑⠎⠉⠜⠕⠇⠑" }, { "input": "escarole's", "output": "⠑⠎⠉⠜⠕⠇⠑⠄⠎" }, { "input": "escaroles", "output": "⠑⠎⠉⠜⠕⠇⠑⠎" }, { "input": "escarpment", "output": "⠑⠎⠉⠜â â °â ž" }, { "input": "escarpment's", "output": "⠑⠎⠉⠜â â °â žâ „â Ž" }, { "input": "escarpments", "output": "⠑⠎⠉⠜â â °â žâ Ž" }, { "input": "eschatology", "output": "â ‘â Žâ ¡â â žâ •⠇⠕⠛⠽" }, { "input": "eschew", "output": "â ‘â Žâ ¡â ‘â º" }, { "input": "eschewed", "output": "⠑⠎⠡⠑⠺⠫" }, { "input": "eschewing", "output": "⠑⠎⠡⠑⠺⠌" }, { "input": "eschews", "output": "⠑⠎⠡⠑⠺⠎" }, { "input": "escort", "output": "⠑⠎⠉⠕⠗⠞" }, { "input": "escort's", "output": "⠑⠎⠉⠕⠗⠞⠄⠎" }, { "input": "escorted", "output": "⠑⠎⠉⠕⠗⠞⠫" }, { "input": "escorting", "output": "⠑⠎⠉⠕⠗⠞⠌" }, { "input": "escorts", "output": "⠑⠎⠉⠕⠗⠞⠎" }, { "input": "escritoire", "output": "⠑⠎⠉⠗⠊⠞⠕⠊⠗⠑" }, { "input": "escritoire's", "output": "⠑⠎⠉⠗⠊⠞⠕⠊⠗⠑⠄⠎" }, { "input": "escritoires", "output": "⠑⠎⠉⠗⠊⠞⠕⠊⠗⠑⠎" }, { "input": "escrow", "output": "⠑⠎⠉⠗⠪" }, { "input": "escrow's", "output": "⠑⠎⠉⠗⠪⠄⠎" }, { "input": "escrows", "output": "⠑⠎⠉⠗⠪⠎" }, { "input": "escutcheon", "output": "⠑⠎⠉⠥⠞⠡⠑⠕â " }, { "input": "escutcheon's", "output": "⠑⠎⠉⠥⠞⠡⠑⠕â â „â Ž" }, { "input": "escutcheons", "output": "⠑⠎⠉⠥⠞⠡⠑⠕â â Ž" }, { "input": "esophageal", "output": "â ‘â Žâ •â â “â â ›â ‚â ‡" }, { "input": "esophagi", "output": "â ‘â Žâ •â â “â â ›â Š" }, { "input": "esophagus", "output": "â ‘â Žâ •â â “â â ›â ¥â Ž" }, { "input": "esophagus's", "output": "â ‘â Žâ •â â “â â ›â ¥â Žâ „â Ž" }, { "input": "esoteric", "output": "⠑⠎⠕⠞⠻⠊⠉" }, { "input": "esoterically", "output": "⠑⠎⠕⠞⠻⠊⠉⠠⠽" }, { "input": "espadrille", "output": "â ‘â Žâ â â ™â —⠊⠇⠇⠑" }, { "input": "espadrille's", "output": "â ‘â Žâ â â ™â —⠊⠇⠇⠑⠄⠎" }, { "input": "espadrilles", "output": "â ‘â Žâ â â ™â —⠊⠇⠇⠑⠎" }, { "input": "espalier", "output": "â ‘â Žâ â â ‡â Šâ »" }, { "input": "espalier's", "output": "â ‘â Žâ â â ‡â Šâ »â „â Ž" }, { "input": "espaliered", "output": "â ‘â Žâ â â ‡â Šâ »â «" }, { "input": "espaliering", "output": "â ‘â Žâ â â ‡â Šâ »â Œ" }, { "input": "espaliers", "output": "â ‘â Žâ â â ‡â Šâ »â Ž" }, { "input": "especial", "output": "â ‘â Žâ â ‘⠉⠊â â ‡" }, { "input": "especially", "output": "â ‘â Žâ â ‘⠉⠊⠠⠽" }, { "input": "espied", "output": "â ‘â Žâ â Šâ «" }, { "input": "espies", "output": "â ‘â Žâ â Šâ ‘â Ž" }, { "input": "espionage", "output": "â ‘â Žâ â Šâ •â â â ›â ‘" }, { "input": "espionage's", "output": "â ‘â Žâ â Šâ •â â â ›â ‘â „â Ž" }, { "input": "esplanade", "output": "â ‘â Žâ â ‡â â â â ™â ‘" }, { "input": "esplanade's", "output": "â ‘â Žâ â ‡â â â â ™â ‘â „â Ž" }, { "input": "esplanades", "output": "â ‘â Žâ â ‡â â â â ™â ‘â Ž" }, { "input": "espousal", "output": "â ‘â Žâ â ³â Žâ â ‡" }, { "input": "espousal's", "output": "â ‘â Žâ â ³â Žâ â ‡â „â Ž" }, { "input": "espouse", "output": "â ‘â Žâ â ³â Žâ ‘" }, { "input": "espoused", "output": "â ‘â Žâ â ³â Žâ «" }, { "input": "espouses", "output": "â ‘â Žâ â ³â Žâ ‘â Ž" }, { "input": "espousing", "output": "â ‘â Žâ â ³â Žâ Œ" }, { "input": "espresso", "output": "â ‘â Žâ â —â ‘â Žâ Žâ •" }, { "input": "espresso's", "output": "â ‘â Žâ â —â ‘â Žâ Žâ •â „â Ž" }, { "input": "espressos", "output": "â ‘â Žâ â —â ‘â Žâ Žâ •â Ž" }, { "input": "esprit", "output": "â ‘â Žâ â —â Šâ ž" }, { "input": "esprit's", "output": "â ‘â Žâ â —â Šâ žâ „â Ž" }, { "input": "espy", "output": "â ‘â Žâ â ½" }, { "input": "espying", "output": "â ‘â Žâ â ½â Œ" }, { "input": "esquire", "output": "⠑⠎⠟⠥⠊⠗⠑" }, { "input": "esquire's", "output": "⠑⠎⠟⠥⠊⠗⠑⠄⠎" }, { "input": "esquires", "output": "⠑⠎⠟⠥⠊⠗⠑⠎" }, { "input": "essay", "output": "â ‘â Žâ Žâ â ½" }, { "input": "essay's", "output": "â ‘â Žâ Žâ â ½â „â Ž" }, { "input": "essayed", "output": "â ‘â Žâ Žâ â ½â «" }, { "input": "essayer", "output": "â ‘â Žâ Žâ â ½â »" }, { "input": "essayer's", "output": "â ‘â Žâ Žâ â ½â »â „â Ž" }, { "input": "essayers", "output": "â ‘â Žâ Žâ â ½â »â Ž" }, { "input": "essaying", "output": "â ‘â Žâ Žâ â ½â Œ" }, { "input": "essayist", "output": "â ‘â Žâ Žâ â ½â Šâ Œ" }, { "input": "essayist's", "output": "â ‘â Žâ Žâ â ½â Šâ Œâ „â Ž" }, { "input": "essayists", "output": "â ‘â Žâ Žâ â ½â Šâ Œâ Ž" }, { "input": "essays", "output": "â ‘â Žâ Žâ â ½â Ž" }, { "input": "essence", "output": "â ‘â Žâ Žâ °â ‘" }, { "input": "essence's", "output": "â ‘â Žâ Žâ °â ‘â „â Ž" }, { "input": "essences", "output": "â ‘â Žâ Žâ °â ‘â Ž" }, { "input": "essential", "output": "⠑⠎⠎⠢⠞⠊â â ‡" }, { "input": "essential's", "output": "⠑⠎⠎⠢⠞⠊â â ‡â „â Ž" }, { "input": "essentially", "output": "⠑⠎⠎⠢⠞⠊⠠⠽" }, { "input": "essentials", "output": "⠑⠎⠎⠢⠞⠊â â ‡â Ž" }, { "input": "establish", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©" }, { "input": "established", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â «" }, { "input": "establishes", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "establishing", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â Œ" }, { "input": "establishment", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â °â ž" }, { "input": "establishment's", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â °â žâ „â Ž" }, { "input": "establishments", "output": "â ‘â Œâ â ƒâ ‡â Šâ ©â °â žâ Ž" }, { "input": "estate", "output": "â ‘â Œâ â žâ ‘" }, { "input": "estate's", "output": "â ‘â Œâ â žâ ‘â „â Ž" }, { "input": "estates", "output": "â ‘â Œâ â žâ ‘â Ž" }, { "input": "esteem", "output": "⠑⠌⠑⠑â " }, { "input": "esteem's", "output": "⠑⠌⠑⠑â â „â Ž" }, { "input": "esteemed", "output": "⠑⠌⠑⠑â â «" }, { "input": "esteeming", "output": "⠑⠌⠑⠑â â Œ" }, { "input": "esteems", "output": "⠑⠌⠑⠑â â Ž" }, { "input": "ester", "output": "⠑⠌⠻" }, { "input": "ester's", "output": "⠑⠌⠻⠄⠎" }, { "input": "esters", "output": "⠑⠌⠻⠎" }, { "input": "estimable", "output": "⠑⠌⠊â â â ¼" }, { "input": "estimate", "output": "⠑⠌⠊â â â žâ ‘" }, { "input": "estimate's", "output": "⠑⠌⠊â â â žâ ‘â „â Ž" }, { "input": "estimated", "output": "⠑⠌⠊â â â žâ «" }, { "input": "estimates", "output": "⠑⠌⠊â â â žâ ‘â Ž" }, { "input": "estimating", "output": "⠑⠌⠊â â â žâ Œ" }, { "input": "estimation", "output": "⠑⠌⠊â â  â " }, { "input": "estimation's", "output": "⠑⠌⠊â â  â â „â Ž" }, { "input": "estimations", "output": "⠑⠌⠊â â  â â Ž" }, { "input": "estimator", "output": "⠑⠌⠊â â â žâ •â —" }, { "input": "estimator's", "output": "⠑⠌⠊â â â žâ •â —â „â Ž" }, { "input": "estimators", "output": "⠑⠌⠊â â â žâ •â —â Ž" }, { "input": "estrange", "output": "⠑⠌⠗â â â ›â ‘" }, { "input": "estranged", "output": "⠑⠌⠗â â â ›â «" }, { "input": "estrangement", "output": "⠑⠌⠗â â â ›â ‘â °â ž" }, { "input": "estrangement's", "output": "⠑⠌⠗â â â ›â ‘â °â žâ „â Ž" }, { "input": "estrangements", "output": "⠑⠌⠗â â â ›â ‘â °â žâ Ž" }, { "input": "estranges", "output": "⠑⠌⠗â â â ›â ‘â Ž" }, { "input": "estranging", "output": "⠑⠌⠗â â â ›â Œ" }, { "input": "estrogen", "output": "⠑⠌⠗⠕⠛⠢" }, { "input": "estrogen's", "output": "⠑⠌⠗⠕⠛⠢⠄⠎" }, { "input": "estrous", "output": "⠑⠌⠗⠳⠎" }, { "input": "estrus", "output": "⠑⠌⠗⠥⠎" }, { "input": "estrus's", "output": "⠑⠌⠗⠥⠎⠄⠎" }, { "input": "estruses", "output": "⠑⠌⠗⠥⠎⠑⠎" }, { "input": "estuaries", "output": "⠑⠌⠥⠜⠊⠑⠎" }, { "input": "estuary", "output": "⠑⠌⠥⠜⠽" }, { "input": "estuary's", "output": "⠑⠌⠥⠜⠽⠄⠎" }, { "input": "eta", "output": "â ‘â žâ " }, { "input": "eta's", "output": "â ‘â žâ â „â Ž" }, { "input": "etas", "output": "â ‘â žâ â Ž" }, { "input": "etch", "output": "â ‘â žâ ¡" }, { "input": "etched", "output": "â ‘â žâ ¡â «" }, { "input": "etcher", "output": "â ‘â žâ ¡â »" }, { "input": "etcher's", "output": "⠑⠞⠡⠻⠄⠎" }, { "input": "etchers", "output": "⠑⠞⠡⠻⠎" }, { "input": "etches", "output": "â ‘â žâ ¡â ‘â Ž" }, { "input": "etching", "output": "â ‘â žâ ¡â Œ" }, { "input": "etching's", "output": "⠑⠞⠡⠌⠄⠎" }, { "input": "etchings", "output": "⠑⠞⠡⠌⠎" }, { "input": "eternal", "output": "â ‘â žâ »â â â ‡" }, { "input": "eternally", "output": "â ‘â žâ »â â  â ½" }, { "input": "eternalness", "output": "â ‘â žâ »â â â ‡â °â Ž" }, { "input": "eternalness's", "output": "â ‘â žâ »â â â ‡â °â Žâ „â Ž" }, { "input": "eternities", "output": "â ‘â žâ »â â Šâ žâ Šâ ‘â Ž" }, { "input": "eternity", "output": "â ‘â žâ »â â °â ½" }, { "input": "eternity's", "output": "â ‘â žâ »â â °â ½â „â Ž" }, { "input": "ethane", "output": "â ‘â ¹â â â ‘" }, { "input": "ethane's", "output": "â ‘â ¹â â â ‘â „â Ž" }, { "input": "ethanol's", "output": "â ‘â ¹â â â •⠇⠄⠎" }, { "input": "ether", "output": "⠑⠮⠗" }, { "input": "ether's", "output": "⠑⠮⠗⠄⠎" }, { "input": "ethereal", "output": "⠑⠮⠗⠂⠇" }, { "input": "ethereally", "output": "⠑⠮⠗⠑⠠⠽" }, { "input": "ethic", "output": "⠑⠹⠊⠉" }, { "input": "ethic's", "output": "⠑⠹⠊⠉⠄⠎" }, { "input": "ethical", "output": "⠑⠹⠊⠉â â ‡" }, { "input": "ethically", "output": "⠑⠹⠊⠉⠠⠽" }, { "input": "ethics", "output": "⠑⠹⠊⠉⠎" }, { "input": "ethics's", "output": "⠑⠹⠊⠉⠎⠄⠎" }, { "input": "ethnic", "output": "â ‘â ¹â â Šâ ‰" }, { "input": "ethnic's", "output": "â ‘â ¹â â Šâ ‰â „â Ž" }, { "input": "ethnically", "output": "â ‘â ¹â â Šâ ‰â  â ½" }, { "input": "ethnicity", "output": "â ‘â ¹â â Šâ ‰â °â ½" }, { "input": "ethnicity's", "output": "â ‘â ¹â â Šâ ‰â °â ½â „â Ž" }, { "input": "ethnics", "output": "â ‘â ¹â â Šâ ‰â Ž" }, { "input": "ethnocentrism's", "output": "â ‘â ¹â â •⠉⠢⠞⠗⠊⠎â â „â Ž" }, { "input": "ethnological", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "ethnologist", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠌" }, { "input": "ethnologist's", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ethnologists", "output": "â ‘â ¹â â •⠇⠕⠛⠊⠌⠎" }, { "input": "ethnology", "output": "â ‘â ¹â â •⠇⠕⠛⠽" }, { "input": "ethnology's", "output": "â ‘â ¹â â •⠇⠕⠛⠽⠄⠎" }, { "input": "ethological", "output": "⠑⠹⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "ethologist", "output": "⠑⠹⠕⠇⠕⠛⠊⠌" }, { "input": "ethologist's", "output": "⠑⠹⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ethologists", "output": "⠑⠹⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ethology", "output": "⠑⠹⠕⠇⠕⠛⠽" }, { "input": "ethology's", "output": "⠑⠹⠕⠇⠕⠛⠽⠄⠎" }, { "input": "ethos", "output": "⠑⠹⠕⠎" }, { "input": "ethos's", "output": "⠑⠹⠕⠎⠄⠎" }, { "input": "ethyl", "output": "⠑⠹⠽⠇" }, { "input": "ethyl's", "output": "⠑⠹⠽⠇⠄⠎" }, { "input": "ethylene", "output": "⠑⠹⠽⠇⠢⠑" }, { "input": "ethylene's", "output": "⠑⠹⠽⠇⠢⠑⠄⠎" }, { "input": "etiologic", "output": "⠑⠞⠊⠕⠇⠕⠛⠊⠉" }, { "input": "etiological", "output": "⠑⠞⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "etiologies", "output": "⠑⠞⠊⠕⠇⠕⠛⠊⠑⠎" }, { "input": "etiology", "output": "⠑⠞⠊⠕⠇⠕⠛⠽" }, { "input": "etiology's", "output": "⠑⠞⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "etiquette", "output": "⠑⠞⠊⠟⠥⠑⠞⠞⠑" }, { "input": "etiquette's", "output": "⠑⠞⠊⠟⠥⠑⠞⠞⠑⠄⠎" }, { "input": "etymological", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "etymologies", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠑⠎" }, { "input": "etymologist", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠌" }, { "input": "etymologist's", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "etymologists", "output": "â ‘â žâ ½â â •⠇⠕⠛⠊⠌⠎" }, { "input": "etymology", "output": "â ‘â žâ ½â â •⠇⠕⠛⠽" }, { "input": "etymology's", "output": "â ‘â žâ ½â â •⠇⠕⠛⠽⠄⠎" }, { "input": "eucalypti", "output": "⠑⠥⠉â â ‡â ½â â žâ Š" }, { "input": "eucalyptus", "output": "⠑⠥⠉â â ‡â ½â â žâ ¥â Ž" }, { "input": "eucalyptus's", "output": "⠑⠥⠉â â ‡â ½â â žâ ¥â Žâ „â Ž" }, { "input": "eucalyptuses", "output": "⠑⠥⠉â â ‡â ½â â žâ ¥â Žâ ‘â Ž" }, { "input": "euchre", "output": "⠑⠥⠡⠗⠑" }, { "input": "euchre's", "output": "⠑⠥⠡⠗⠑⠄⠎" }, { "input": "euchred", "output": "⠑⠥⠡⠗⠫" }, { "input": "euchres", "output": "⠑⠥⠡⠗⠑⠎" }, { "input": "euchring", "output": "⠑⠥⠡⠗⠌" }, { "input": "euclidean", "output": "⠑⠥⠉⠇⠊⠙⠂â " }, { "input": "eugenically", "output": "⠑⠥⠛⠢⠊⠉⠠⠽" }, { "input": "eugenicist", "output": "⠑⠥⠛⠢⠊⠉⠊⠌" }, { "input": "eugenicist's", "output": "⠑⠥⠛⠢⠊⠉⠊⠌⠄⠎" }, { "input": "eugenicists", "output": "⠑⠥⠛⠢⠊⠉⠊⠌⠎" }, { "input": "eugenics", "output": "⠑⠥⠛⠢⠊⠉⠎" }, { "input": "eugenics's", "output": "⠑⠥⠛⠢⠊⠉⠎⠄⠎" }, { "input": "eulogies", "output": "⠑⠥⠇⠕⠛⠊⠑⠎" }, { "input": "eulogistic", "output": "⠑⠥⠇⠕⠛⠊⠌⠊⠉" }, { "input": "eulogize", "output": "⠑⠥⠇⠕⠛⠊⠵⠑" }, { "input": "eulogized", "output": "⠑⠥⠇⠕⠛⠊⠵⠫" }, { "input": "eulogizer", "output": "⠑⠥⠇⠕⠛⠊⠵⠻" }, { "input": "eulogizer's", "output": "⠑⠥⠇⠕⠛⠊⠵⠻⠄⠎" }, { "input": "eulogizers", "output": "⠑⠥⠇⠕⠛⠊⠵⠻⠎" }, { "input": "eulogizes", "output": "⠑⠥⠇⠕⠛⠊⠵⠑⠎" }, { "input": "eulogizing", "output": "⠑⠥⠇⠕⠛⠊⠵⠌" }, { "input": "eulogy", "output": "⠑⠥⠇⠕⠛⠽" }, { "input": "eulogy's", "output": "⠑⠥⠇⠕⠛⠽⠄⠎" }, { "input": "eunuch", "output": "â ‘â ¥â â ¥â ¡" }, { "input": "eunuch's", "output": "â ‘â ¥â â ¥â ¡â „â Ž" }, { "input": "eunuchs", "output": "â ‘â ¥â â ¥â ¡â Ž" }, { "input": "euphemism", "output": "â ‘â ¥â â “â ‘â â Šâ Žâ " }, { "input": "euphemism's", "output": "â ‘â ¥â â “â ‘â â Šâ Žâ â „â Ž" }, { "input": "euphemisms", "output": "â ‘â ¥â â “â ‘â â Šâ Žâ â Ž" }, { "input": "euphemistic", "output": "â ‘â ¥â â “â ‘â â Šâ Œâ Šâ ‰" }, { "input": "euphemistically", "output": "â ‘â ¥â â “â ‘â â Šâ Œâ Šâ ‰â  â ½" }, { "input": "euphoniously", "output": "â ‘â ¥â â “â •â â Šâ ³â Žâ ‡â ½" }, { "input": "euphony", "output": "â ‘â ¥â â “â •â â ½" }, { "input": "euphony's", "output": "â ‘â ¥â â “â •â â ½â „â Ž" }, { "input": "euphoria", "output": "â ‘â ¥â â “â •â —â Šâ " }, { "input": "euphoria's", "output": "â ‘â ¥â â “â •â —â Šâ â „â Ž" }, { "input": "euphoric", "output": "â ‘â ¥â â “â •â —â Šâ ‰" }, { "input": "eureka", "output": "⠑⠥⠗⠑⠅â " }, { "input": "euro", "output": "⠑⠥⠗⠕" }, { "input": "euro's", "output": "⠑⠥⠗⠕⠄⠎" }, { "input": "europium", "output": "⠑⠥⠗⠕â â Šâ ¥â " }, { "input": "europium's", "output": "⠑⠥⠗⠕â â Šâ ¥â â „â Ž" }, { "input": "euros", "output": "⠑⠥⠗⠕⠎" }, { "input": "eutectic", "output": "⠑⠥⠞⠑⠉⠞⠊⠉" }, { "input": "euthanasia", "output": "⠑⠥⠹â â â â Žâ Šâ " }, { "input": "euthanasia's", "output": "⠑⠥⠹â â â â Žâ Šâ â „â Ž" }, { "input": "euthanize", "output": "⠑⠥⠹â â â Šâ µâ ‘" }, { "input": "euthenics", "output": "⠑⠥⠮â â Šâ ‰â Ž" }, { "input": "euthenics's", "output": "⠑⠥⠮â â Šâ ‰â Žâ „â Ž" }, { "input": "evacuate", "output": "â ‘â §â â ‰â ¥â â žâ ‘" }, { "input": "evacuated", "output": "â ‘â §â â ‰â ¥â â žâ «" }, { "input": "evacuates", "output": "â ‘â §â â ‰â ¥â â žâ ‘â Ž" }, { "input": "evacuating", "output": "â ‘â §â â ‰â ¥â â žâ Œ" }, { "input": "evacuation", "output": "â ‘â §â â ‰â ¥â  â " }, { "input": "evacuation's", "output": "â ‘â §â â ‰â ¥â  â â „â Ž" }, { "input": "evacuations", "output": "â ‘â §â â ‰â ¥â  â â Ž" }, { "input": "evacuee", "output": "â ‘â §â â ‰â ¥â ‘â ‘" }, { "input": "evacuee's", "output": "â ‘â §â â ‰â ¥â ‘â ‘â „â Ž" }, { "input": "evacuees", "output": "â ‘â §â â ‰â ¥â ‘â ‘â Ž" }, { "input": "evade", "output": "â ‘â §â â ™â ‘" }, { "input": "evaded", "output": "â ‘â §â â ™â «" }, { "input": "evader", "output": "â ‘â §â â ™â »" }, { "input": "evader's", "output": "â ‘â §â â ™â »â „â Ž" }, { "input": "evaders", "output": "â ‘â §â â ™â »â Ž" }, { "input": "evades", "output": "â ‘â §â â ™â ‘â Ž" }, { "input": "evading", "output": "â ‘â §â â ™â Œ" }, { "input": "evaluate", "output": "â ‘â §â â ‡â ¥â â žâ ‘" }, { "input": "evaluated", "output": "â ‘â §â â ‡â ¥â â žâ «" }, { "input": "evaluates", "output": "â ‘â §â â ‡â ¥â â žâ ‘â Ž" }, { "input": "evaluating", "output": "â ‘â §â â ‡â ¥â â žâ Œ" }, { "input": "evaluation", "output": "â ‘â §â â ‡â ¥â  â " }, { "input": "evaluation's", "output": "â ‘â §â â ‡â ¥â  â â „â Ž" }, { "input": "evaluations", "output": "â ‘â §â â ‡â ¥â  â â Ž" }, { "input": "evanescence", "output": "â ‘â §â â â ‘⠎⠉⠰⠑" }, { "input": "evanescence's", "output": "â ‘â §â â â ‘⠎⠉⠰⠑⠄⠎" }, { "input": "evanescent", "output": "â ‘â §â â â ‘⠎⠉⠢⠞" }, { "input": "evangelic", "output": "â ‘â §â â â ›â ‘⠇⠊⠉" }, { "input": "evangelical", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡" }, { "input": "evangelical's", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡â „â Ž" }, { "input": "evangelicalism", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡â Šâ Žâ " }, { "input": "evangelicalism's", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡â Šâ Žâ â „â Ž" }, { "input": "evangelically", "output": "â ‘â §â â â ›â ‘⠇⠊⠉⠠⠽" }, { "input": "evangelicals", "output": "â ‘â §â â â ›â ‘⠇⠊⠉â â ‡â Ž" }, { "input": "evangelism", "output": "â ‘â §â â â ›â ‘⠇⠊⠎â " }, { "input": "evangelism's", "output": "â ‘â §â â â ›â ‘⠇⠊⠎â â „â Ž" }, { "input": "evangelist", "output": "â ‘â §â â â ›â ‘⠇⠊⠌" }, { "input": "evangelist's", "output": "â ‘â §â â â ›â ‘⠇⠊⠌⠄⠎" }, { "input": "evangelistic", "output": "â ‘â §â â â ›â ‘⠇⠊⠌⠊⠉" }, { "input": "evangelists", "output": "â ‘â §â â â ›â ‘⠇⠊⠌⠎" }, { "input": "evangelize", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠑" }, { "input": "evangelized", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠫" }, { "input": "evangelizes", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠑⠎" }, { "input": "evangelizing", "output": "â ‘â §â â â ›â ‘⠇⠊⠵⠌" }, { "input": "evaporate", "output": "â ‘â §â â â •â —â â žâ ‘" }, { "input": "evaporated", "output": "â ‘â §â â â •â —â â žâ «" }, { "input": "evaporates", "output": "â ‘â §â â â •â —â â žâ ‘â Ž" }, { "input": "evaporating", "output": "â ‘â §â â â •â —â â žâ Œ" }, { "input": "evaporation", "output": "â ‘â §â â â •â —â  â " }, { "input": "evaporation's", "output": "â ‘â §â â â •â —â  â â „â Ž" }, { "input": "evaporator", "output": "â ‘â §â â â •â —â â žâ •â —" }, { "input": "evaporator's", "output": "â ‘â §â â â •â —â â žâ •â —â „â Ž" }, { "input": "evaporators", "output": "â ‘â §â â â •â —â â žâ •â —â Ž" }, { "input": "evasion", "output": "â ‘â §â â ¨â " }, { "input": "evasion's", "output": "â ‘â §â â ¨â â „â Ž" }, { "input": "evasions", "output": "â ‘â §â â ¨â â Ž" }, { "input": "evasive", "output": "â ‘â §â â Žâ Šâ §â ‘" }, { "input": "evasively", "output": "â ‘â §â â Žâ Šâ §â ‘⠇⠽" }, { "input": "evasiveness", "output": "â ‘â §â â Žâ Šâ §â ‘â °â Ž" }, { "input": "evasiveness's", "output": "â ‘â §â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "eve", "output": "â ‘â §â ‘" }, { "input": "eve's", "output": "â ‘â §â ‘â „â Ž" }, { "input": "even", "output": "â ‘â §â ¢" }, { "input": "even's", "output": "⠑⠧⠢⠄⠎" }, { "input": "evened", "output": "⠑⠧⠢⠫" }, { "input": "evener", "output": "⠑⠧⠢⠻" }, { "input": "evenest", "output": "⠑⠧⠢⠑⠌" }, { "input": "evenhanded", "output": "⠑⠧⠢⠓⠯⠫" }, { "input": "evenhandedly", "output": "⠑⠧⠢⠓⠯⠫⠇⠽" }, { "input": "evening", "output": "⠑⠧⠢⠌" }, { "input": "evening's", "output": "⠑⠧⠢⠌⠄⠎" }, { "input": "evenings", "output": "⠑⠧⠢⠌⠎" }, { "input": "evenly", "output": "⠑⠧⠢⠇⠽" }, { "input": "evenness", "output": "⠑⠧⠢⠰⠎" }, { "input": "evenness's", "output": "⠑⠧⠢⠰⠎⠄⠎" }, { "input": "evens", "output": "⠑⠧⠢⠎" }, { "input": "evensong's", "output": "⠑⠧⠢⠎⠰⠛⠄⠎" }, { "input": "event", "output": "⠑⠧⠢⠞" }, { "input": "event's", "output": "⠑⠧⠢⠞⠄⠎" }, { "input": "eventful", "output": "⠑⠧⠢⠞⠰⠇" }, { "input": "eventfully", "output": "⠑⠧⠢⠞⠰⠇⠇⠽" }, { "input": "eventfulness", "output": "⠑⠧⠢⠞⠰⠇⠰⠎" }, { "input": "eventfulness's", "output": "⠑⠧⠢⠞⠰⠇⠰⠎⠄⠎" }, { "input": "eventide", "output": "⠑⠧⠢⠞⠊⠙⠑" }, { "input": "eventide's", "output": "⠑⠧⠢⠞⠊⠙⠑⠄⠎" }, { "input": "events", "output": "⠑⠧⠢⠞⠎" }, { "input": "eventual", "output": "⠑⠧⠢⠞⠥â â ‡" }, { "input": "eventualities", "output": "⠑⠧⠢⠞⠥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "eventuality", "output": "⠑⠧⠢⠞⠥â â ‡â °â ½" }, { "input": "eventuality's", "output": "⠑⠧⠢⠞⠥â â ‡â °â ½â „â Ž" }, { "input": "eventually", "output": "⠑⠧⠢⠞⠥⠠⠽" }, { "input": "eventuate", "output": "⠑⠧⠢⠞⠥â â žâ ‘" }, { "input": "eventuated", "output": "⠑⠧⠢⠞⠥â â žâ «" }, { "input": "eventuates", "output": "⠑⠧⠢⠞⠥â â žâ ‘â Ž" }, { "input": "eventuating", "output": "⠑⠧⠢⠞⠥â â žâ Œ" }, { "input": "ever", "output": "â â ‘" }, { "input": "everglade", "output": "â â ‘⠛⠇â â ™â ‘" }, { "input": "everglade's", "output": "â â ‘⠛⠇â â ™â ‘â „â Ž" }, { "input": "everglades", "output": "â â ‘⠛⠇â â ™â ‘â Ž" }, { "input": "evergreen", "output": "â â ‘⠛⠗⠑⠢" }, { "input": "evergreen's", "output": "â â ‘⠛⠗⠑⠢⠄⠎" }, { "input": "evergreens", "output": "â â ‘⠛⠗⠑⠢⠎" }, { "input": "everlasting", "output": "â â ‘â ‡â â Œâ Œ" }, { "input": "everlasting's", "output": "â â ‘â ‡â â Œâ Œâ „â Ž" }, { "input": "everlastings", "output": "â â ‘â ‡â â Œâ Œâ Ž" }, { "input": "evermore", "output": "â â ‘â â •â —â ‘" }, { "input": "every", "output": "â ‘" }, { "input": "everybody", "output": "â â ‘⠽⠃⠕⠙⠽" }, { "input": "everybody's", "output": "â â ‘⠽⠃⠕⠙⠽⠄⠎" }, { "input": "everyday", "output": "â â ‘â ½â â ™" }, { "input": "everyone", "output": "â â ‘â ½â â •" }, { "input": "everyone's", "output": "â â ‘â ½â â •â „â Ž" }, { "input": "everyplace", "output": "â â ‘â ½â â ‡â â ‰â ‘" }, { "input": "everything", "output": "â â ‘⠽⠹⠌" }, { "input": "everything's", "output": "â â ‘⠽⠹⠌⠄⠎" }, { "input": "everywhere", "output": "â â ‘â ½â â ±" }, { "input": "eves", "output": "â ‘â §â ‘â Ž" }, { "input": "evict", "output": "⠑⠧⠊⠉⠞" }, { "input": "evicted", "output": "⠑⠧⠊⠉⠞⠫" }, { "input": "evicting", "output": "⠑⠧⠊⠉⠞⠌" }, { "input": "eviction", "output": "⠑⠧⠊⠉⠰â " }, { "input": "eviction's", "output": "⠑⠧⠊⠉⠰â â „â Ž" }, { "input": "evictions", "output": "⠑⠧⠊⠉⠰â â Ž" }, { "input": "evicts", "output": "⠑⠧⠊⠉⠞⠎" }, { "input": "evidence", "output": "⠑⠧⠊⠙⠰⠑" }, { "input": "evidence's", "output": "⠑⠧⠊⠙⠰⠑⠄⠎" }, { "input": "evidenced", "output": "⠑⠧⠊⠙⠰⠑⠙" }, { "input": "evidences", "output": "⠑⠧⠊⠙⠰⠑⠎" }, { "input": "evidencing", "output": "⠑⠧⠊⠙⠢⠉⠌" }, { "input": "evident", "output": "⠑⠧⠊⠙⠢⠞" }, { "input": "evidently", "output": "⠑⠧⠊⠙⠢⠞⠇⠽" }, { "input": "evil", "output": "â ‘â §â Šâ ‡" }, { "input": "evil's", "output": "⠑⠧⠊⠇⠄⠎" }, { "input": "evildoer", "output": "⠑⠧⠊⠇⠙⠕⠻" }, { "input": "evildoer's", "output": "⠑⠧⠊⠇⠙⠕⠻⠄⠎" }, { "input": "evildoers", "output": "⠑⠧⠊⠇⠙⠕⠻⠎" }, { "input": "evildoing", "output": "⠑⠧⠊⠇⠙⠕⠌" }, { "input": "evildoing's", "output": "⠑⠧⠊⠇⠙⠕⠌⠄⠎" }, { "input": "eviler", "output": "⠑⠧⠊⠇⠻" }, { "input": "evilest", "output": "⠑⠧⠊⠇⠑⠌" }, { "input": "evilly", "output": "⠑⠧⠊⠇⠇⠽" }, { "input": "evilness", "output": "⠑⠧⠊⠇⠰⠎" }, { "input": "evilness's", "output": "⠑⠧⠊⠇⠰⠎⠄⠎" }, { "input": "evils", "output": "⠑⠧⠊⠇⠎" }, { "input": "evince", "output": "⠑⠧⠔⠉⠑" }, { "input": "evinced", "output": "⠑⠧⠔⠉⠫" }, { "input": "evinces", "output": "⠑⠧⠔⠉⠑⠎" }, { "input": "evincing", "output": "⠑⠧⠔⠉⠌" }, { "input": "eviscerate", "output": "⠑⠧⠊⠎⠉⠻â â žâ ‘" }, { "input": "eviscerated", "output": "⠑⠧⠊⠎⠉⠻â â žâ «" }, { "input": "eviscerates", "output": "⠑⠧⠊⠎⠉⠻â â žâ ‘â Ž" }, { "input": "eviscerating", "output": "⠑⠧⠊⠎⠉⠻â â žâ Œ" }, { "input": "evisceration", "output": "⠑⠧⠊⠎⠉⠻⠠â " }, { "input": "evisceration's", "output": "⠑⠧⠊⠎⠉⠻⠠â â „â Ž" }, { "input": "evocation", "output": "⠑⠧⠕⠉⠠â " }, { "input": "evocation's", "output": "⠑⠧⠕⠉⠠â â „â Ž" }, { "input": "evocations", "output": "⠑⠧⠕⠉⠠â â Ž" }, { "input": "evocative", "output": "â ‘â §â •â ‰â â žâ Šâ §â ‘" }, { "input": "evoke", "output": "â ‘â §â •â …â ‘" }, { "input": "evoked", "output": "â ‘â §â •â …â «" }, { "input": "evokes", "output": "â ‘â §â •â …â ‘â Ž" }, { "input": "evoking", "output": "â ‘â §â •â …â Œ" }, { "input": "evolution", "output": "⠑⠧⠕⠇⠥⠰â " }, { "input": "evolution's", "output": "⠑⠧⠕⠇⠥⠰â â „â Ž" }, { "input": "evolutionary", "output": "⠑⠧⠕⠇⠥⠰â â œâ ½" }, { "input": "evolutionist", "output": "⠑⠧⠕⠇⠥⠰â â Šâ Œ" }, { "input": "evolutionist's", "output": "⠑⠧⠕⠇⠥⠰â â Šâ Œâ „â Ž" }, { "input": "evolutionists", "output": "⠑⠧⠕⠇⠥⠰â â Šâ Œâ Ž" }, { "input": "evolve", "output": "⠑⠧⠕⠇⠧⠑" }, { "input": "evolved", "output": "⠑⠧⠕⠇⠧⠫" }, { "input": "evolves", "output": "⠑⠧⠕⠇⠧⠑⠎" }, { "input": "evolving", "output": "⠑⠧⠕⠇⠧⠌" }, { "input": "ewe", "output": "⠑⠺⠑" }, { "input": "ewe's", "output": "⠑⠺⠑⠄⠎" }, { "input": "ewer", "output": "⠑⠺⠻" }, { "input": "ewer's", "output": "⠑⠺⠻⠄⠎" }, { "input": "ewers", "output": "⠑⠺⠻⠎" }, { "input": "ewes", "output": "⠑⠺⠑⠎" }, { "input": "ex", "output": "â ‘â ­" }, { "input": "ex's", "output": "â ‘â ­â „â Ž" }, { "input": "exabyte", "output": "â ‘â ­â â ƒâ ½â žâ ‘" }, { "input": "exabyte's", "output": "â ‘â ­â â ƒâ ½â žâ ‘â „â Ž" }, { "input": "exabytes", "output": "â ‘â ­â â ƒâ ½â žâ ‘â Ž" }, { "input": "exacerbate", "output": "â ‘â ­â â ‰â »â ƒâ â žâ ‘" }, { "input": "exacerbated", "output": "â ‘â ­â â ‰â »â ƒâ â žâ «" }, { "input": "exacerbates", "output": "â ‘â ­â â ‰â »â ƒâ â žâ ‘â Ž" }, { "input": "exacerbating", "output": "â ‘â ­â â ‰â »â ƒâ â žâ Œ" }, { "input": "exacerbation", "output": "â ‘â ­â â ‰â »â ƒâ  â " }, { "input": "exacerbation's", "output": "â ‘â ­â â ‰â »â ƒâ  â â „â Ž" }, { "input": "exact", "output": "â ‘â ­â â ‰â ž" }, { "input": "exacted", "output": "â ‘â ­â â ‰â žâ «" }, { "input": "exacter", "output": "â ‘â ­â â ‰â žâ »" }, { "input": "exactest", "output": "â ‘â ­â â ‰â žâ ‘â Œ" }, { "input": "exacting", "output": "â ‘â ­â â ‰â žâ Œ" }, { "input": "exactingly", "output": "â ‘â ­â â ‰â žâ Œâ ‡â ½" }, { "input": "exaction", "output": "â ‘â ­â â ‰â °â " }, { "input": "exaction's", "output": "â ‘â ­â â ‰â °â â „â Ž" }, { "input": "exactitude", "output": "â ‘â ­â â ‰â žâ Šâ žâ ¥â ™â ‘" }, { "input": "exactitude's", "output": "â ‘â ­â â ‰â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "exactly", "output": "â ‘â ­â â ‰â žâ ‡â ½" }, { "input": "exactness", "output": "â ‘â ­â â ‰â žâ °â Ž" }, { "input": "exactness's", "output": "â ‘â ­â â ‰â žâ °â Žâ „â Ž" }, { "input": "exacts", "output": "â ‘â ­â â ‰â žâ Ž" }, { "input": "exaggerate", "output": "â ‘â ­â â ¶â »â â žâ ‘" }, { "input": "exaggerated", "output": "â ‘â ­â â ¶â »â â žâ «" }, { "input": "exaggerates", "output": "â ‘â ­â â ¶â »â â žâ ‘â Ž" }, { "input": "exaggerating", "output": "â ‘â ­â â ¶â »â â žâ Œ" }, { "input": "exaggeration", "output": "â ‘â ­â â ¶â »â  â " }, { "input": "exaggeration's", "output": "â ‘â ­â â ¶â »â  â â „â Ž" }, { "input": "exaggerations", "output": "â ‘â ­â â ¶â »â  â â Ž" }, { "input": "exaggerator", "output": "â ‘â ­â â ¶â »â â žâ •â —" }, { "input": "exaggerator's", "output": "â ‘â ­â â ¶â »â â žâ •â —â „â Ž" }, { "input": "exaggerators", "output": "â ‘â ­â â ¶â »â â žâ •â —â Ž" }, { "input": "exalt", "output": "â ‘â ­â â ‡â ž" }, { "input": "exaltation", "output": "â ‘â ­â â ‡â žâ  â " }, { "input": "exaltation's", "output": "â ‘â ­â â ‡â žâ  â â „â Ž" }, { "input": "exalted", "output": "â ‘â ­â â ‡â žâ «" }, { "input": "exalting", "output": "â ‘â ­â â ‡â žâ Œ" }, { "input": "exalts", "output": "â ‘â ­â â ‡â žâ Ž" }, { "input": "exam", "output": "â ‘â ­â â " }, { "input": "exam's", "output": "â ‘â ­â â â „â Ž" }, { "input": "examination", "output": "â ‘â ­â â â ”â  â " }, { "input": "examination's", "output": "â ‘â ­â â â ”â  â â „â Ž" }, { "input": "examinations", "output": "â ‘â ­â â â ”â  â â Ž" }, { "input": "examine", "output": "â ‘â ­â â â ”â ‘" }, { "input": "examined", "output": "â ‘â ­â â â ”â «" }, { "input": "examiner", "output": "â ‘â ­â â â ”â »" }, { "input": "examiner's", "output": "â ‘â ­â â â ”⠻⠄⠎" }, { "input": "examiners", "output": "â ‘â ­â â â ”⠻⠎" }, { "input": "examines", "output": "â ‘â ­â â â ”â ‘â Ž" }, { "input": "examining", "output": "â ‘â ­â â â ”â Œ" }, { "input": "example", "output": "â ‘â ­â â â â ‡â ‘" }, { "input": "example's", "output": "â ‘â ­â â â â ‡â ‘â „â Ž" }, { "input": "exampled", "output": "â ‘â ­â â â â ‡â «" }, { "input": "examples", "output": "â ‘â ­â â â â ‡â ‘â Ž" }, { "input": "exampling", "output": "â ‘â ­â â â â ‡â Œ" }, { "input": "exams", "output": "â ‘â ­â â â Ž" }, { "input": "exasperate", "output": "â ‘â ­â â Žâ â »â â žâ ‘" }, { "input": "exasperated", "output": "â ‘â ­â â Žâ â »â â žâ «" }, { "input": "exasperates", "output": "â ‘â ­â â Žâ â »â â žâ ‘â Ž" }, { "input": "exasperating", "output": "â ‘â ­â â Žâ â »â â žâ Œ" }, { "input": "exasperation", "output": "â ‘â ­â â Žâ â »â  â " }, { "input": "exasperation's", "output": "â ‘â ­â â Žâ â »â  â â „â Ž" }, { "input": "excavate", "output": "â ‘â ­â ‰â â §â â žâ ‘" }, { "input": "excavated", "output": "â ‘â ­â ‰â â §â â žâ «" }, { "input": "excavates", "output": "â ‘â ­â ‰â â §â â žâ ‘â Ž" }, { "input": "excavating", "output": "â ‘â ­â ‰â â §â â žâ Œ" }, { "input": "excavation", "output": "â ‘â ­â ‰â â §â  â " }, { "input": "excavation's", "output": "â ‘â ­â ‰â â §â  â â „â Ž" }, { "input": "excavations", "output": "â ‘â ­â ‰â â §â  â â Ž" }, { "input": "excavator", "output": "â ‘â ­â ‰â â §â â žâ •â —" }, { "input": "excavator's", "output": "â ‘â ­â ‰â â §â â žâ •â —â „â Ž" }, { "input": "excavators", "output": "â ‘â ­â ‰â â §â â žâ •â —â Ž" }, { "input": "exceed", "output": "⠑⠭⠉⠑⠫" }, { "input": "exceeded", "output": "⠑⠭⠉⠑⠫⠫" }, { "input": "exceeding", "output": "⠑⠭⠉⠑⠫⠌" }, { "input": "exceedingly", "output": "⠑⠭⠉⠑⠫⠌⠇⠽" }, { "input": "exceeds", "output": "⠑⠭⠉⠑⠫⠎" }, { "input": "excel", "output": "⠑⠭⠉⠑⠇" }, { "input": "excelled", "output": "⠑⠭⠉⠑⠇⠇⠫" }, { "input": "excellence", "output": "⠑⠭⠉⠑⠇⠇⠰⠑" }, { "input": "excellence's", "output": "⠑⠭⠉⠑⠇⠇⠰⠑⠄⠎" }, { "input": "excellencies", "output": "⠑⠭⠉⠑⠇⠇⠢⠉⠊⠑⠎" }, { "input": "excellency", "output": "⠑⠭⠉⠑⠇⠇⠢⠉⠽" }, { "input": "excellency's", "output": "⠑⠭⠉⠑⠇⠇⠢⠉⠽⠄⠎" }, { "input": "excellent", "output": "⠑⠭⠉⠑⠇⠇⠢⠞" }, { "input": "excellently", "output": "⠑⠭⠉⠑⠇⠇⠢⠞⠇⠽" }, { "input": "excelling", "output": "⠑⠭⠉⠑⠇⠇⠌" }, { "input": "excels", "output": "⠑⠭⠉⠑⠇⠎" }, { "input": "excelsior", "output": "⠑⠭⠉⠑⠇⠎⠊⠕⠗" }, { "input": "excelsior's", "output": "⠑⠭⠉⠑⠇⠎⠊⠕⠗⠄⠎" }, { "input": "except", "output": "⠑⠭⠉⠑â â ž" }, { "input": "excepted", "output": "⠑⠭⠉⠑â â žâ «" }, { "input": "excepting", "output": "⠑⠭⠉⠑â â žâ Œ" }, { "input": "exception", "output": "⠑⠭⠉⠑â â °â " }, { "input": "exception's", "output": "⠑⠭⠉⠑â â °â â „â Ž" }, { "input": "exceptionable", "output": "⠑⠭⠉⠑â â °â â â ¼" }, { "input": "exceptional", "output": "⠑⠭⠉⠑â â °â â â ‡" }, { "input": "exceptionally", "output": "⠑⠭⠉⠑â â °â â  â ½" }, { "input": "exceptions", "output": "⠑⠭⠉⠑â â °â â Ž" }, { "input": "excepts", "output": "⠑⠭⠉⠑â â žâ Ž" }, { "input": "excerpt", "output": "⠑⠭⠉⠻â â ž" }, { "input": "excerpt's", "output": "⠑⠭⠉⠻â â žâ „â Ž" }, { "input": "excerpted", "output": "⠑⠭⠉⠻â â žâ «" }, { "input": "excerpting", "output": "⠑⠭⠉⠻â â žâ Œ" }, { "input": "excerpts", "output": "⠑⠭⠉⠻â â žâ Ž" }, { "input": "excess", "output": "⠑⠭⠉⠑⠎⠎" }, { "input": "excess's", "output": "⠑⠭⠉⠑⠎⠎⠄⠎" }, { "input": "excesses", "output": "⠑⠭⠉⠑⠎⠎⠑⠎" }, { "input": "excessive", "output": "⠑⠭⠉⠑⠎⠎⠊⠧⠑" }, { "input": "excessively", "output": "⠑⠭⠉⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "exchange", "output": "â ‘â ­â ¡â â â ›â ‘" }, { "input": "exchange's", "output": "â ‘â ­â ¡â â â ›â ‘â „â Ž" }, { "input": "exchangeable", "output": "â ‘â ­â ¡â â â ›â ‘â â ¼" }, { "input": "exchanged", "output": "â ‘â ­â ¡â â â ›â «" }, { "input": "exchanges", "output": "â ‘â ­â ¡â â â ›â ‘â Ž" }, { "input": "exchanging", "output": "â ‘â ­â ¡â â â ›â Œ" }, { "input": "exchequer", "output": "⠑⠭⠡⠑⠟⠥⠻" }, { "input": "exchequer's", "output": "⠑⠭⠡⠑⠟⠥⠻⠄⠎" }, { "input": "exchequers", "output": "⠑⠭⠡⠑⠟⠥⠻⠎" }, { "input": "excise", "output": "⠑⠭⠉⠊⠎⠑" }, { "input": "excise's", "output": "⠑⠭⠉⠊⠎⠑⠄⠎" }, { "input": "excised", "output": "⠑⠭⠉⠊⠎⠫" }, { "input": "excises", "output": "⠑⠭⠉⠊⠎⠑⠎" }, { "input": "excising", "output": "⠑⠭⠉⠊⠎⠌" }, { "input": "excision", "output": "⠑⠭⠉⠊⠨â " }, { "input": "excision's", "output": "⠑⠭⠉⠊⠨â â „â Ž" }, { "input": "excisions", "output": "⠑⠭⠉⠊⠨â â Ž" }, { "input": "excitability", "output": "⠑⠭⠉⠊⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "excitability's", "output": "⠑⠭⠉⠊⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "excitable", "output": "⠑⠭⠉⠊⠞â â ¼" }, { "input": "excitably", "output": "⠑⠭⠉⠊⠞â â ƒâ ‡â ½" }, { "input": "excitation", "output": "⠑⠭⠉⠊⠞⠠â " }, { "input": "excitation's", "output": "⠑⠭⠉⠊⠞⠠â â „â Ž" }, { "input": "excite", "output": "⠑⠭⠉⠊⠞⠑" }, { "input": "excited", "output": "⠑⠭⠉⠊⠞⠫" }, { "input": "excitedly", "output": "⠑⠭⠉⠊⠞⠫⠇⠽" }, { "input": "excitement", "output": "⠑⠭⠉⠊⠞⠑⠰⠞" }, { "input": "excitement's", "output": "⠑⠭⠉⠊⠞⠑⠰⠞⠄⠎" }, { "input": "excitements", "output": "⠑⠭⠉⠊⠞⠑⠰⠞⠎" }, { "input": "exciter", "output": "⠑⠭⠉⠊⠞⠻" }, { "input": "exciter's", "output": "⠑⠭⠉⠊⠞⠻⠄⠎" }, { "input": "exciters", "output": "⠑⠭⠉⠊⠞⠻⠎" }, { "input": "excites", "output": "⠑⠭⠉⠊⠞⠑⠎" }, { "input": "exciting", "output": "⠑⠭⠉⠊⠞⠌" }, { "input": "excitingly", "output": "⠑⠭⠉⠊⠞⠌⠇⠽" }, { "input": "exclaim", "output": "⠑⠭⠉⠇â â Šâ " }, { "input": "exclaimed", "output": "⠑⠭⠉⠇â â Šâ â «" }, { "input": "exclaiming", "output": "⠑⠭⠉⠇â â Šâ â Œ" }, { "input": "exclaims", "output": "⠑⠭⠉⠇â â Šâ â Ž" }, { "input": "exclamation", "output": "⠑⠭⠉⠇â â â  â " }, { "input": "exclamation's", "output": "⠑⠭⠉⠇â â â  â â „â Ž" }, { "input": "exclamations", "output": "⠑⠭⠉⠇â â â  â â Ž" }, { "input": "exclamatory", "output": "⠑⠭⠉⠇â â â â žâ •â —â ½" }, { "input": "exclude", "output": "⠑⠭⠉⠇⠥⠙⠑" }, { "input": "excluded", "output": "⠑⠭⠉⠇⠥⠙⠫" }, { "input": "excludes", "output": "⠑⠭⠉⠇⠥⠙⠑⠎" }, { "input": "excluding", "output": "⠑⠭⠉⠇⠥⠙⠌" }, { "input": "exclusion", "output": "⠑⠭⠉⠇⠥⠨â " }, { "input": "exclusion's", "output": "⠑⠭⠉⠇⠥⠨â â „â Ž" }, { "input": "exclusive", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑" }, { "input": "exclusive's", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠄⠎" }, { "input": "exclusively", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "exclusiveness", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠰⠎" }, { "input": "exclusiveness's", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "exclusives", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠑⠎" }, { "input": "exclusivity", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠰⠽" }, { "input": "exclusivity's", "output": "⠑⠭⠉⠇⠥⠎⠊⠧⠰⠽⠄⠎" }, { "input": "excommunicate", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ ‘" }, { "input": "excommunicated", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ «" }, { "input": "excommunicates", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ ‘â Ž" }, { "input": "excommunicating", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â â žâ Œ" }, { "input": "excommunication", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â  â " }, { "input": "excommunication's", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â  â â „â Ž" }, { "input": "excommunications", "output": "⠑⠭⠉⠕â â â ¥â â Šâ ‰â  â â Ž" }, { "input": "excoriate", "output": "⠑⠭⠉⠕⠗⠊â â žâ ‘" }, { "input": "excoriated", "output": "⠑⠭⠉⠕⠗⠊â â žâ «" }, { "input": "excoriates", "output": "⠑⠭⠉⠕⠗⠊â â žâ ‘â Ž" }, { "input": "excoriating", "output": "⠑⠭⠉⠕⠗⠊â â žâ Œ" }, { "input": "excoriation", "output": "⠑⠭⠉⠕⠗⠊⠠â " }, { "input": "excoriation's", "output": "⠑⠭⠉⠕⠗⠊⠠â â „â Ž" }, { "input": "excoriations", "output": "⠑⠭⠉⠕⠗⠊⠠â â Ž" }, { "input": "excrement", "output": "⠑⠭⠉⠗⠑⠰⠞" }, { "input": "excrement's", "output": "⠑⠭⠉⠗⠑⠰⠞⠄⠎" }, { "input": "excremental", "output": "⠑⠭⠉⠗⠑⠰⠞â â ‡" }, { "input": "excrescence", "output": "⠑⠭⠉⠗⠑⠎⠉⠰⠑" }, { "input": "excrescence's", "output": "⠑⠭⠉⠗⠑⠎⠉⠰⠑⠄⠎" }, { "input": "excrescences", "output": "⠑⠭⠉⠗⠑⠎⠉⠰⠑⠎" }, { "input": "excrescent", "output": "⠑⠭⠉⠗⠑⠎⠉⠢⠞" }, { "input": "excreta", "output": "⠑⠭⠉⠗⠑⠞â " }, { "input": "excreta's", "output": "⠑⠭⠉⠗⠑⠞â â „â Ž" }, { "input": "excrete", "output": "⠑⠭⠉⠗⠑⠞⠑" }, { "input": "excreted", "output": "⠑⠭⠉⠗⠑⠞⠫" }, { "input": "excretes", "output": "⠑⠭⠉⠗⠑⠞⠑⠎" }, { "input": "excreting", "output": "⠑⠭⠉⠗⠑⠞⠌" }, { "input": "excretion", "output": "⠑⠭⠉⠗⠑⠰â " }, { "input": "excretion's", "output": "⠑⠭⠉⠗⠑⠰â â „â Ž" }, { "input": "excretions", "output": "⠑⠭⠉⠗⠑⠰â â Ž" }, { "input": "excretory", "output": "⠑⠭⠉⠗⠑⠞⠕⠗⠽" }, { "input": "excruciating", "output": "⠑⠭⠉⠗⠥⠉⠊â â žâ Œ" }, { "input": "excruciatingly", "output": "⠑⠭⠉⠗⠥⠉⠊â â žâ Œâ ‡â ½" }, { "input": "exculpate", "output": "⠑⠭⠉⠥⠇â â â žâ ‘" }, { "input": "exculpated", "output": "⠑⠭⠉⠥⠇â â â žâ «" }, { "input": "exculpates", "output": "⠑⠭⠉⠥⠇â â â žâ ‘â Ž" }, { "input": "exculpating", "output": "⠑⠭⠉⠥⠇â â â žâ Œ" }, { "input": "exculpation's", "output": "⠑⠭⠉⠥⠇â â  â â „â Ž" }, { "input": "excursion", "output": "⠑⠭⠉⠥⠗⠨â " }, { "input": "excursion's", "output": "⠑⠭⠉⠥⠗⠨â â „â Ž" }, { "input": "excursionist", "output": "⠑⠭⠉⠥⠗⠨â â Šâ Œ" }, { "input": "excursionist's", "output": "⠑⠭⠉⠥⠗⠨â â Šâ Œâ „â Ž" }, { "input": "excursionists", "output": "⠑⠭⠉⠥⠗⠨â â Šâ Œâ Ž" }, { "input": "excursions", "output": "⠑⠭⠉⠥⠗⠨â â Ž" }, { "input": "excursive", "output": "⠑⠭⠉⠥⠗⠎⠊⠧⠑" }, { "input": "excursively", "output": "⠑⠭⠉⠥⠗⠎⠊⠧⠑⠇⠽" }, { "input": "excursiveness", "output": "⠑⠭⠉⠥⠗⠎⠊⠧⠑⠰⠎" }, { "input": "excursiveness's", "output": "⠑⠭⠉⠥⠗⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "excusable", "output": "⠑⠭⠉⠥⠎â â ¼" }, { "input": "excusably", "output": "⠑⠭⠉⠥⠎â â ƒâ ‡â ½" }, { "input": "excuse", "output": "⠑⠭⠉⠥⠎⠑" }, { "input": "excuse's", "output": "⠑⠭⠉⠥⠎⠑⠄⠎" }, { "input": "excused", "output": "⠑⠭⠉⠥⠎⠫" }, { "input": "excuses", "output": "⠑⠭⠉⠥⠎⠑⠎" }, { "input": "excusing", "output": "⠑⠭⠉⠥⠎⠌" }, { "input": "exec", "output": "â ‘â ­â ‘â ‰" }, { "input": "exec's", "output": "⠑⠭⠑⠉⠄⠎" }, { "input": "execrable", "output": "⠑⠭⠑⠉⠗â â ¼" }, { "input": "execrate", "output": "⠑⠭⠑⠉⠗â â žâ ‘" }, { "input": "execrated", "output": "⠑⠭⠑⠉⠗â â žâ «" }, { "input": "execrates", "output": "⠑⠭⠑⠉⠗â â žâ ‘â Ž" }, { "input": "execrating", "output": "⠑⠭⠑⠉⠗â â žâ Œ" }, { "input": "execration", "output": "⠑⠭⠑⠉⠗⠠â " }, { "input": "execration's", "output": "⠑⠭⠑⠉⠗⠠â â „â Ž" }, { "input": "execs", "output": "⠑⠭⠑⠉⠎" }, { "input": "executable", "output": "⠑⠭⠑⠉⠥⠞â â ¼" }, { "input": "execute", "output": "⠑⠭⠑⠉⠥⠞⠑" }, { "input": "executed", "output": "⠑⠭⠑⠉⠥⠞⠫" }, { "input": "executes", "output": "⠑⠭⠑⠉⠥⠞⠑⠎" }, { "input": "executing", "output": "⠑⠭⠑⠉⠥⠞⠌" }, { "input": "execution", "output": "⠑⠭⠑⠉⠥⠰â " }, { "input": "execution's", "output": "⠑⠭⠑⠉⠥⠰â â „â Ž" }, { "input": "executioner", "output": "⠑⠭⠑⠉⠥⠰â â »" }, { "input": "executioner's", "output": "⠑⠭⠑⠉⠥⠰â â »â „â Ž" }, { "input": "executioners", "output": "⠑⠭⠑⠉⠥⠰â â »â Ž" }, { "input": "executions", "output": "⠑⠭⠑⠉⠥⠰â â Ž" }, { "input": "executive", "output": "⠑⠭⠑⠉⠥⠞⠊⠧⠑" }, { "input": "executive's", "output": "⠑⠭⠑⠉⠥⠞⠊⠧⠑⠄⠎" }, { "input": "executives", "output": "⠑⠭⠑⠉⠥⠞⠊⠧⠑⠎" }, { "input": "executor", "output": "⠑⠭⠑⠉⠥⠞⠕⠗" }, { "input": "executor's", "output": "⠑⠭⠑⠉⠥⠞⠕⠗⠄⠎" }, { "input": "executors", "output": "⠑⠭⠑⠉⠥⠞⠕⠗⠎" }, { "input": "executrices", "output": "⠑⠭⠑⠉⠥⠞⠗⠊⠉⠑⠎" }, { "input": "executrix", "output": "⠑⠭⠑⠉⠥⠞⠗⠊⠭" }, { "input": "executrix's", "output": "⠑⠭⠑⠉⠥⠞⠗⠊⠭⠄⠎" }, { "input": "exegeses", "output": "⠑⠭⠑⠛⠑⠎⠑⠎" }, { "input": "exegesis", "output": "⠑⠭⠑⠛⠑⠎⠊⠎" }, { "input": "exegesis's", "output": "⠑⠭⠑⠛⠑⠎⠊⠎⠄⠎" }, { "input": "exegetic", "output": "⠑⠭⠑⠛⠑⠞⠊⠉" }, { "input": "exegetical", "output": "⠑⠭⠑⠛⠑⠞⠊⠉â â ‡" }, { "input": "exemplar", "output": "â ‘â ­â ‘â â â ‡â œ" }, { "input": "exemplar's", "output": "â ‘â ­â ‘â â â ‡â œâ „â Ž" }, { "input": "exemplars", "output": "â ‘â ­â ‘â â â ‡â œâ Ž" }, { "input": "exemplary", "output": "â ‘â ­â ‘â â â ‡â œâ ½" }, { "input": "exemplification", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "exemplification's", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "exemplifications", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "exemplified", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ «" }, { "input": "exemplifies", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "exemplify", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â ½" }, { "input": "exemplifying", "output": "â ‘â ­â ‘â â â ‡â Šâ ‹â ½â Œ" }, { "input": "exempt", "output": "â ‘â ­â ‘â â â ž" }, { "input": "exempted", "output": "â ‘â ­â ‘â â â žâ «" }, { "input": "exempting", "output": "â ‘â ­â ‘â â â žâ Œ" }, { "input": "exemption", "output": "â ‘â ­â ‘â â â °â " }, { "input": "exemption's", "output": "â ‘â ­â ‘â â â °â â „â Ž" }, { "input": "exemptions", "output": "â ‘â ­â ‘â â â °â â Ž" }, { "input": "exempts", "output": "â ‘â ­â ‘â â â žâ Ž" }, { "input": "exercise", "output": "⠑⠭⠻⠉⠊⠎⠑" }, { "input": "exercise's", "output": "⠑⠭⠻⠉⠊⠎⠑⠄⠎" }, { "input": "exercised", "output": "⠑⠭⠻⠉⠊⠎⠫" }, { "input": "exerciser", "output": "⠑⠭⠻⠉⠊⠎⠻" }, { "input": "exerciser's", "output": "⠑⠭⠻⠉⠊⠎⠻⠄⠎" }, { "input": "exercisers", "output": "⠑⠭⠻⠉⠊⠎⠻⠎" }, { "input": "exercises", "output": "⠑⠭⠻⠉⠊⠎⠑⠎" }, { "input": "exercising", "output": "⠑⠭⠻⠉⠊⠎⠌" }, { "input": "exert", "output": "⠑⠭⠻⠞" }, { "input": "exerted", "output": "⠑⠭⠻⠞⠫" }, { "input": "exerting", "output": "⠑⠭⠻⠞⠌" }, { "input": "exertion", "output": "⠑⠭⠻⠰â " }, { "input": "exertion's", "output": "⠑⠭⠻⠰â â „â Ž" }, { "input": "exertions", "output": "⠑⠭⠻⠰â â Ž" }, { "input": "exerts", "output": "⠑⠭⠻⠞⠎" }, { "input": "exes", "output": "â ‘â ­â ‘â Ž" }, { "input": "exhalation", "output": "â ‘â ­â “â â ‡â  â " }, { "input": "exhalation's", "output": "â ‘â ­â “â â ‡â  â â „â Ž" }, { "input": "exhalations", "output": "â ‘â ­â “â â ‡â  â â Ž" }, { "input": "exhale", "output": "â ‘â ­â “â â ‡â ‘" }, { "input": "exhaled", "output": "â ‘â ­â “â â ‡â «" }, { "input": "exhales", "output": "â ‘â ­â “â â ‡â ‘â Ž" }, { "input": "exhaling", "output": "â ‘â ­â “â â ‡â Œ" }, { "input": "exhaust", "output": "â ‘â ­â “â â ¥â Œ" }, { "input": "exhaust's", "output": "â ‘â ­â “â â ¥â Œâ „â Ž" }, { "input": "exhausted", "output": "â ‘â ­â “â â ¥â Œâ «" }, { "input": "exhaustible", "output": "â ‘â ­â “â â ¥â Œâ Šâ ¼" }, { "input": "exhausting", "output": "â ‘â ­â “â â ¥â Œâ Œ" }, { "input": "exhaustion", "output": "â ‘â ­â “â â ¥â Žâ °â " }, { "input": "exhaustion's", "output": "â ‘â ­â “â â ¥â Žâ °â â „â Ž" }, { "input": "exhaustive", "output": "â ‘â ­â “â â ¥â Œâ Šâ §â ‘" }, { "input": "exhaustively", "output": "â ‘â ­â “â â ¥â Œâ Šâ §â ‘⠇⠽" }, { "input": "exhaustiveness", "output": "â ‘â ­â “â â ¥â Œâ Šâ §â ‘â °â Ž" }, { "input": "exhaustiveness's", "output": "â ‘â ­â “â â ¥â Œâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "exhausts", "output": "â ‘â ­â “â â ¥â Œâ Ž" }, { "input": "exhibit", "output": "⠑⠭⠓⠊⠃⠊⠞" }, { "input": "exhibit's", "output": "⠑⠭⠓⠊⠃⠊⠞⠄⠎" }, { "input": "exhibited", "output": "⠑⠭⠓⠊⠃⠊⠞⠫" }, { "input": "exhibiting", "output": "⠑⠭⠓⠊⠃⠊⠞⠌" }, { "input": "exhibition", "output": "⠑⠭⠓⠊⠃⠊⠰â " }, { "input": "exhibition's", "output": "⠑⠭⠓⠊⠃⠊⠰â â „â Ž" }, { "input": "exhibitionism", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Žâ " }, { "input": "exhibitionism's", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Žâ â „â Ž" }, { "input": "exhibitionist", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Œ" }, { "input": "exhibitionist's", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Œâ „â Ž" }, { "input": "exhibitionists", "output": "⠑⠭⠓⠊⠃⠊⠰â â Šâ Œâ Ž" }, { "input": "exhibitions", "output": "⠑⠭⠓⠊⠃⠊⠰â â Ž" }, { "input": "exhibitor", "output": "⠑⠭⠓⠊⠃⠊⠞⠕⠗" }, { "input": "exhibitor's", "output": "⠑⠭⠓⠊⠃⠊⠞⠕⠗⠄⠎" }, { "input": "exhibitors", "output": "⠑⠭⠓⠊⠃⠊⠞⠕⠗⠎" }, { "input": "exhibits", "output": "⠑⠭⠓⠊⠃⠊⠞⠎" }, { "input": "exhilarate", "output": "⠑⠭⠓⠊⠇⠜â â žâ ‘" }, { "input": "exhilarated", "output": "⠑⠭⠓⠊⠇⠜â â žâ «" }, { "input": "exhilarates", "output": "⠑⠭⠓⠊⠇⠜â â žâ ‘â Ž" }, { "input": "exhilarating", "output": "⠑⠭⠓⠊⠇⠜â â žâ Œ" }, { "input": "exhilaration", "output": "⠑⠭⠓⠊⠇⠜⠠â " }, { "input": "exhilaration's", "output": "⠑⠭⠓⠊⠇⠜⠠â â „â Ž" }, { "input": "exhort", "output": "â ‘â ­â “â •â —â ž" }, { "input": "exhortation", "output": "â ‘â ­â “â •â —â žâ  â " }, { "input": "exhortation's", "output": "â ‘â ­â “â •â —â žâ  â â „â Ž" }, { "input": "exhortations", "output": "â ‘â ­â “â •â —â žâ  â â Ž" }, { "input": "exhorted", "output": "â ‘â ­â “â •â —â žâ «" }, { "input": "exhorting", "output": "â ‘â ­â “â •â —â žâ Œ" }, { "input": "exhorts", "output": "â ‘â ­â “â •â —â žâ Ž" }, { "input": "exhumation", "output": "â ‘â ­â “â ¥â â  â " }, { "input": "exhumation's", "output": "â ‘â ­â “â ¥â â  â â „â Ž" }, { "input": "exhumations", "output": "â ‘â ­â “â ¥â â  â â Ž" }, { "input": "exhume", "output": "â ‘â ­â “â ¥â â ‘" }, { "input": "exhumed", "output": "â ‘â ­â “â ¥â â «" }, { "input": "exhumes", "output": "â ‘â ­â “â ¥â â ‘â Ž" }, { "input": "exhuming", "output": "â ‘â ­â “â ¥â â Œ" }, { "input": "exigence", "output": "⠑⠭⠊⠛⠰⠑" }, { "input": "exigence's", "output": "⠑⠭⠊⠛⠰⠑⠄⠎" }, { "input": "exigences", "output": "⠑⠭⠊⠛⠰⠑⠎" }, { "input": "exigencies", "output": "⠑⠭⠊⠛⠢⠉⠊⠑⠎" }, { "input": "exigency", "output": "⠑⠭⠊⠛⠢⠉⠽" }, { "input": "exigency's", "output": "⠑⠭⠊⠛⠢⠉⠽⠄⠎" }, { "input": "exigent", "output": "⠑⠭⠊⠛⠢⠞" }, { "input": "exiguity", "output": "⠑⠭⠊⠛⠥⠰⠽" }, { "input": "exiguity's", "output": "⠑⠭⠊⠛⠥⠰⠽⠄⠎" }, { "input": "exiguous", "output": "⠑⠭⠊⠛⠥⠳⠎" }, { "input": "exile", "output": "⠑⠭⠊⠇⠑" }, { "input": "exile's", "output": "⠑⠭⠊⠇⠑⠄⠎" }, { "input": "exiled", "output": "⠑⠭⠊⠇⠫" }, { "input": "exiles", "output": "⠑⠭⠊⠇⠑⠎" }, { "input": "exiling", "output": "⠑⠭⠊⠇⠌" }, { "input": "exist", "output": "â ‘â ­â Šâ Œ" }, { "input": "existed", "output": "⠑⠭⠊⠌⠫" }, { "input": "existence", "output": "⠑⠭⠊⠌⠰⠑" }, { "input": "existence's", "output": "⠑⠭⠊⠌⠰⠑⠄⠎" }, { "input": "existences", "output": "⠑⠭⠊⠌⠰⠑⠎" }, { "input": "existent", "output": "⠑⠭⠊⠌⠢⠞" }, { "input": "existential", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡" }, { "input": "existentialism", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Žâ " }, { "input": "existentialism's", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Žâ â „â Ž" }, { "input": "existentialist", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Œ" }, { "input": "existentialist's", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Œâ „â Ž" }, { "input": "existentialists", "output": "⠑⠭⠊⠌⠢⠞⠊â â ‡â Šâ Œâ Ž" }, { "input": "existentially", "output": "⠑⠭⠊⠌⠢⠞⠊⠠⠽" }, { "input": "existing", "output": "⠑⠭⠊⠌⠌" }, { "input": "exists", "output": "⠑⠭⠊⠌⠎" }, { "input": "exit", "output": "â ‘â ­â Šâ ž" }, { "input": "exit's", "output": "â ‘â ­â Šâ žâ „â Ž" }, { "input": "exited", "output": "â ‘â ­â Šâ žâ «" }, { "input": "exiting", "output": "â ‘â ­â Šâ žâ Œ" }, { "input": "exits", "output": "â ‘â ­â Šâ žâ Ž" }, { "input": "exobiology", "output": "⠑⠭⠕⠃⠊⠕⠇⠕⠛⠽" }, { "input": "exobiology's", "output": "⠑⠭⠕⠃⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "exodus", "output": "⠑⠭⠕⠙⠥⠎" }, { "input": "exodus's", "output": "⠑⠭⠕⠙⠥⠎⠄⠎" }, { "input": "exoduses", "output": "⠑⠭⠕⠙⠥⠎⠑⠎" }, { "input": "exogenous", "output": "⠑⠭⠕⠛⠢⠳⠎" }, { "input": "exonerate", "output": "â ‘â ­â •â â »â â žâ ‘" }, { "input": "exonerated", "output": "â ‘â ­â •â â »â â žâ «" }, { "input": "exonerates", "output": "â ‘â ­â •â â »â â žâ ‘â Ž" }, { "input": "exonerating", "output": "â ‘â ­â •â â »â â žâ Œ" }, { "input": "exoneration", "output": "â ‘â ­â •â â »â  â " }, { "input": "exoneration's", "output": "â ‘â ­â •â â »â  â â „â Ž" }, { "input": "exorbitance", "output": "⠑⠭⠕⠗⠃⠊⠞⠨⠑" }, { "input": "exorbitance's", "output": "⠑⠭⠕⠗⠃⠊⠞⠨⠑⠄⠎" }, { "input": "exorbitant", "output": "⠑⠭⠕⠗⠃⠊⠞â â â ž" }, { "input": "exorbitantly", "output": "⠑⠭⠕⠗⠃⠊⠞â â â žâ ‡â ½" }, { "input": "exorcise", "output": "⠑⠭⠕⠗⠉⠊⠎⠑" }, { "input": "exorcised", "output": "⠑⠭⠕⠗⠉⠊⠎⠫" }, { "input": "exorcises", "output": "⠑⠭⠕⠗⠉⠊⠎⠑⠎" }, { "input": "exorcising", "output": "⠑⠭⠕⠗⠉⠊⠎⠌" }, { "input": "exorcism", "output": "⠑⠭⠕⠗⠉⠊⠎â " }, { "input": "exorcism's", "output": "⠑⠭⠕⠗⠉⠊⠎â â „â Ž" }, { "input": "exorcisms", "output": "⠑⠭⠕⠗⠉⠊⠎â â Ž" }, { "input": "exorcist", "output": "⠑⠭⠕⠗⠉⠊⠌" }, { "input": "exorcist's", "output": "⠑⠭⠕⠗⠉⠊⠌⠄⠎" }, { "input": "exorcists", "output": "⠑⠭⠕⠗⠉⠊⠌⠎" }, { "input": "exoskeleton", "output": "⠑⠭⠕⠎⠅⠑⠇⠑⠞⠕â " }, { "input": "exoskeleton's", "output": "⠑⠭⠕⠎⠅⠑⠇⠑⠞⠕â â „â Ž" }, { "input": "exoskeletons", "output": "⠑⠭⠕⠎⠅⠑⠇⠑⠞⠕â â Ž" }, { "input": "exosphere", "output": "â ‘â ­â •â Žâ â “⠻⠑" }, { "input": "exosphere's", "output": "â ‘â ­â •â Žâ â “⠻⠑⠄⠎" }, { "input": "exospheres", "output": "â ‘â ­â •â Žâ â “⠻⠑⠎" }, { "input": "exothermic", "output": "⠑⠭⠕⠮⠗â â Šâ ‰" }, { "input": "exotic", "output": "â ‘â ­â •â žâ Šâ ‰" }, { "input": "exotic's", "output": "⠑⠭⠕⠞⠊⠉⠄⠎" }, { "input": "exotically", "output": "⠑⠭⠕⠞⠊⠉⠠⠽" }, { "input": "exoticism's", "output": "⠑⠭⠕⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "exotics", "output": "⠑⠭⠕⠞⠊⠉⠎" }, { "input": "expand", "output": "â ‘â ­â â ¯" }, { "input": "expandable", "output": "â ‘â ­â â ¯â â ¼" }, { "input": "expanded", "output": "â ‘â ­â â ¯â «" }, { "input": "expanding", "output": "â ‘â ­â â ¯â Œ" }, { "input": "expands", "output": "â ‘â ­â â ¯â Ž" }, { "input": "expanse", "output": "â ‘â ­â â â â Žâ ‘" }, { "input": "expanse's", "output": "â ‘â ­â â â â Žâ ‘â „â Ž" }, { "input": "expanses", "output": "â ‘â ­â â â â Žâ ‘â Ž" }, { "input": "expansible", "output": "â ‘â ­â â â â Žâ Šâ ¼" }, { "input": "expansion", "output": "â ‘â ­â â â â ¨â " }, { "input": "expansion's", "output": "â ‘â ­â â â â ¨â â „â Ž" }, { "input": "expansionism's", "output": "â ‘â ­â â â â ¨â â Šâ Žâ â „â Ž" }, { "input": "expansionist", "output": "â ‘â ­â â â â ¨â â Šâ Œ" }, { "input": "expansionist's", "output": "â ‘â ­â â â â ¨â â Šâ Œâ „â Ž" }, { "input": "expansionists", "output": "â ‘â ­â â â â ¨â â Šâ Œâ Ž" }, { "input": "expansions", "output": "â ‘â ­â â â â ¨â â Ž" }, { "input": "expansive", "output": "â ‘â ­â â â â Žâ Šâ §â ‘" }, { "input": "expansively", "output": "â ‘â ­â â â â Žâ Šâ §â ‘⠇⠽" }, { "input": "expansiveness", "output": "â ‘â ­â â â â Žâ Šâ §â ‘â °â Ž" }, { "input": "expansiveness's", "output": "â ‘â ­â â â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "expatiate", "output": "â ‘â ­â â â žâ Šâ â žâ ‘" }, { "input": "expatiated", "output": "â ‘â ­â â â žâ Šâ â žâ «" }, { "input": "expatiates", "output": "â ‘â ­â â â žâ Šâ â žâ ‘â Ž" }, { "input": "expatiating", "output": "â ‘â ­â â â žâ Šâ â žâ Œ" }, { "input": "expatiation", "output": "â ‘â ­â â â žâ Šâ  â " }, { "input": "expatiation's", "output": "â ‘â ­â â â žâ Šâ  â â „â Ž" }, { "input": "expatriate", "output": "â ‘â ­â â â žâ —â Šâ â žâ ‘" }, { "input": "expatriate's", "output": "â ‘â ­â â â žâ —â Šâ â žâ ‘â „â Ž" }, { "input": "expatriated", "output": "â ‘â ­â â â žâ —â Šâ â žâ «" }, { "input": "expatriates", "output": "â ‘â ­â â â žâ —â Šâ â žâ ‘â Ž" }, { "input": "expatriating", "output": "â ‘â ­â â â žâ —â Šâ â žâ Œ" }, { "input": "expatriation", "output": "â ‘â ­â â â žâ —â Šâ  â " }, { "input": "expatriation's", "output": "â ‘â ­â â â žâ —â Šâ  â â „â Ž" }, { "input": "expect", "output": "â ‘â ­â â ‘⠉⠞" }, { "input": "expectancy", "output": "â ‘â ­â â ‘⠉⠞â â â ‰â ½" }, { "input": "expectancy's", "output": "â ‘â ­â â ‘⠉⠞â â â ‰â ½â „â Ž" }, { "input": "expectant", "output": "â ‘â ­â â ‘⠉⠞â â â ž" }, { "input": "expectantly", "output": "â ‘â ­â â ‘⠉⠞â â â žâ ‡â ½" }, { "input": "expectation", "output": "â ‘â ­â â ‘⠉⠞⠠â " }, { "input": "expectation's", "output": "â ‘â ­â â ‘⠉⠞⠠â â „â Ž" }, { "input": "expectations", "output": "â ‘â ­â â ‘⠉⠞⠠â â Ž" }, { "input": "expected", "output": "â ‘â ­â â ‘⠉⠞⠫" }, { "input": "expecting", "output": "â ‘â ­â â ‘⠉⠞⠌" }, { "input": "expectorant", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â â ž" }, { "input": "expectorant's", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â â žâ „â Ž" }, { "input": "expectorants", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â â žâ Ž" }, { "input": "expectorate", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ ‘" }, { "input": "expectorated", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ «" }, { "input": "expectorates", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "expectorating", "output": "â ‘â ­â â ‘⠉⠞⠕⠗â â žâ Œ" }, { "input": "expectoration", "output": "â ‘â ­â â ‘⠉⠞⠕⠗⠠â " }, { "input": "expectoration's", "output": "â ‘â ­â â ‘⠉⠞⠕⠗⠠â â „â Ž" }, { "input": "expects", "output": "â ‘â ­â â ‘⠉⠞⠎" }, { "input": "expedience", "output": "â ‘â ­â â «â Šâ °â ‘" }, { "input": "expedience's", "output": "â ‘â ­â â «â Šâ °â ‘â „â Ž" }, { "input": "expediences", "output": "â ‘â ­â â «â Šâ °â ‘â Ž" }, { "input": "expediencies", "output": "â ‘â ­â â «â Šâ ¢â ‰â Šâ ‘â Ž" }, { "input": "expediency", "output": "â ‘â ­â â «â Šâ ¢â ‰â ½" }, { "input": "expediency's", "output": "â ‘â ­â â «â Šâ ¢â ‰â ½â „â Ž" }, { "input": "expedient", "output": "â ‘â ­â â «â Šâ ¢â ž" }, { "input": "expedient's", "output": "â ‘â ­â â «â Šâ ¢â žâ „â Ž" }, { "input": "expediently", "output": "â ‘â ­â â «â Šâ ¢â žâ ‡â ½" }, { "input": "expedients", "output": "â ‘â ­â â «â Šâ ¢â žâ Ž" }, { "input": "expedite", "output": "â ‘â ­â â «â Šâ žâ ‘" }, { "input": "expedited", "output": "â ‘â ­â â «â Šâ žâ «" }, { "input": "expediter", "output": "â ‘â ­â â «â Šâ žâ »" }, { "input": "expediter's", "output": "â ‘â ­â â «â Šâ žâ »â „â Ž" }, { "input": "expediters", "output": "â ‘â ­â â «â Šâ žâ »â Ž" }, { "input": "expedites", "output": "â ‘â ­â â «â Šâ žâ ‘â Ž" }, { "input": "expediting", "output": "â ‘â ­â â «â Šâ žâ Œ" }, { "input": "expedition", "output": "â ‘â ­â â «â Šâ °â " }, { "input": "expedition's", "output": "â ‘â ­â â «â Šâ °â â „â Ž" }, { "input": "expeditionary", "output": "â ‘â ­â â «â Šâ °â â œâ ½" }, { "input": "expeditions", "output": "â ‘â ­â â «â Šâ °â â Ž" }, { "input": "expeditious", "output": "â ‘â ­â â «â Šâ žâ Šâ ³â Ž" }, { "input": "expeditiously", "output": "â ‘â ­â â «â Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "expeditiousness", "output": "â ‘â ­â â «â Šâ žâ Šâ ³â Žâ °â Ž" }, { "input": "expeditiousness's", "output": "â ‘â ­â â «â Šâ žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "expel", "output": "â ‘â ­â â ‘â ‡" }, { "input": "expelled", "output": "â ‘â ­â â ‘⠇⠇⠫" }, { "input": "expelling", "output": "â ‘â ­â â ‘⠇⠇⠌" }, { "input": "expels", "output": "â ‘â ­â â ‘⠇⠎" }, { "input": "expend", "output": "â ‘â ­â â ¢â ™" }, { "input": "expendable", "output": "â ‘â ­â â ¢â ™â â ¼" }, { "input": "expendable's", "output": "â ‘â ­â â ¢â ™â â ¼â „â Ž" }, { "input": "expendables", "output": "â ‘â ­â â ¢â ™â â ¼â Ž" }, { "input": "expended", "output": "â ‘â ­â â ¢â ™â «" }, { "input": "expending", "output": "â ‘â ­â â ¢â ™â Œ" }, { "input": "expenditure", "output": "â ‘â ­â â ¢â ™â Šâ žâ ¥â —â ‘" }, { "input": "expenditure's", "output": "â ‘â ­â â ¢â ™â Šâ žâ ¥â —â ‘â „â Ž" }, { "input": "expenditures", "output": "â ‘â ­â â ¢â ™â Šâ žâ ¥â —â ‘â Ž" }, { "input": "expends", "output": "â ‘â ­â â ¢â ™â Ž" }, { "input": "expense", "output": "â ‘â ­â â ¢â Žâ ‘" }, { "input": "expense's", "output": "â ‘â ­â â ¢â Žâ ‘â „â Ž" }, { "input": "expenses", "output": "â ‘â ­â â ¢â Žâ ‘â Ž" }, { "input": "expensive", "output": "â ‘â ­â â ¢â Žâ Šâ §â ‘" }, { "input": "expensively", "output": "â ‘â ­â â ¢â Žâ Šâ §â ‘⠇⠽" }, { "input": "expensiveness", "output": "â ‘â ­â â ¢â Žâ Šâ §â ‘â °â Ž" }, { "input": "expensiveness's", "output": "â ‘â ­â â ¢â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "experience", "output": "â ‘â ­â â »â Šâ °â ‘" }, { "input": "experience's", "output": "â ‘â ­â â »â Šâ °â ‘â „â Ž" }, { "input": "experienced", "output": "â ‘â ­â â »â Šâ °â ‘â ™" }, { "input": "experiences", "output": "â ‘â ­â â »â Šâ °â ‘â Ž" }, { "input": "experiencing", "output": "â ‘â ­â â »â Šâ ¢â ‰â Œ" }, { "input": "experiment", "output": "â ‘â ­â â »â Šâ °â ž" }, { "input": "experiment's", "output": "â ‘â ­â â »â Šâ °â žâ „â Ž" }, { "input": "experimental", "output": "â ‘â ­â â »â Šâ °â žâ â ‡" }, { "input": "experimentally", "output": "â ‘â ­â â »â Šâ °â žâ  â ½" }, { "input": "experimentation", "output": "â ‘â ­â â »â Šâ °â žâ  â " }, { "input": "experimentation's", "output": "â ‘â ­â â »â Šâ °â žâ  â â „â Ž" }, { "input": "experimented", "output": "â ‘â ­â â »â Šâ °â žâ «" }, { "input": "experimenter", "output": "â ‘â ­â â »â Šâ °â žâ »" }, { "input": "experimenter's", "output": "â ‘â ­â â »â Šâ °â žâ »â „â Ž" }, { "input": "experimenters", "output": "â ‘â ­â â »â Šâ °â žâ »â Ž" }, { "input": "experimenting", "output": "â ‘â ­â â »â Šâ °â žâ Œ" }, { "input": "experiments", "output": "â ‘â ­â â »â Šâ °â žâ Ž" }, { "input": "expert", "output": "â ‘â ­â â »â ž" }, { "input": "expert's", "output": "â ‘â ­â â »â žâ „â Ž" }, { "input": "expertise", "output": "â ‘â ­â â »â žâ Šâ Žâ ‘" }, { "input": "expertise's", "output": "â ‘â ­â â »â žâ Šâ Žâ ‘â „â Ž" }, { "input": "expertly", "output": "â ‘â ­â â »â žâ ‡â ½" }, { "input": "expertness", "output": "â ‘â ­â â »â žâ °â Ž" }, { "input": "expertness's", "output": "â ‘â ­â â »â žâ °â Žâ „â Ž" }, { "input": "experts", "output": "â ‘â ­â â »â žâ Ž" }, { "input": "expiate", "output": "â ‘â ­â â Šâ â žâ ‘" }, { "input": "expiated", "output": "â ‘â ­â â Šâ â žâ «" }, { "input": "expiates", "output": "â ‘â ­â â Šâ â žâ ‘â Ž" }, { "input": "expiating", "output": "â ‘â ­â â Šâ â žâ Œ" }, { "input": "expiation", "output": "â ‘â ­â â Šâ  â " }, { "input": "expiation's", "output": "â ‘â ­â â Šâ  â â „â Ž" }, { "input": "expiatory", "output": "â ‘â ­â â Šâ â žâ •â —â ½" }, { "input": "expiration", "output": "â ‘â ­â â Šâ —â  â " }, { "input": "expiration's", "output": "â ‘â ­â â Šâ —â  â â „â Ž" }, { "input": "expire", "output": "â ‘â ­â â Šâ —â ‘" }, { "input": "expired", "output": "â ‘â ­â â Šâ —â «" }, { "input": "expires", "output": "â ‘â ­â â Šâ —â ‘â Ž" }, { "input": "expiring", "output": "â ‘â ­â â Šâ —â Œ" }, { "input": "expiry", "output": "â ‘â ­â â Šâ —â ½" }, { "input": "expiry's", "output": "â ‘â ­â â Šâ —⠽⠄⠎" }, { "input": "explain", "output": "â ‘â ­â â ‡â â ”" }, { "input": "explainable", "output": "â ‘â ­â â ‡â â ”â â ¼" }, { "input": "explained", "output": "â ‘â ­â â ‡â â ”â «" }, { "input": "explaining", "output": "â ‘â ­â â ‡â â ”â Œ" }, { "input": "explains", "output": "â ‘â ­â â ‡â â ”â Ž" }, { "input": "explanation", "output": "â ‘â ­â â ‡â â â  â " }, { "input": "explanation's", "output": "â ‘â ­â â ‡â â â  â â „â Ž" }, { "input": "explanations", "output": "â ‘â ­â â ‡â â â  â â Ž" }, { "input": "explanatory", "output": "â ‘â ­â â ‡â â â â žâ •â —â ½" }, { "input": "expletive", "output": "â ‘â ­â â ‡â ‘â žâ Šâ §â ‘" }, { "input": "expletive's", "output": "â ‘â ­â â ‡â ‘â žâ Šâ §â ‘â „â Ž" }, { "input": "expletives", "output": "â ‘â ­â â ‡â ‘â žâ Šâ §â ‘â Ž" }, { "input": "explicable", "output": "â ‘â ­â â ‡â Šâ ‰â â ¼" }, { "input": "explicate", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ ‘" }, { "input": "explicated", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ «" }, { "input": "explicates", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "explicating", "output": "â ‘â ­â â ‡â Šâ ‰â â žâ Œ" }, { "input": "explication", "output": "â ‘â ­â â ‡â Šâ ‰â  â " }, { "input": "explication's", "output": "â ‘â ­â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "explications", "output": "â ‘â ­â â ‡â Šâ ‰â  â â Ž" }, { "input": "explicit", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ ž" }, { "input": "explicitly", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ žâ ‡â ½" }, { "input": "explicitness", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ žâ °â Ž" }, { "input": "explicitness's", "output": "â ‘â ­â â ‡â Šâ ‰â Šâ žâ °â Žâ „â Ž" }, { "input": "explode", "output": "â ‘â ­â â ‡â •⠙⠑" }, { "input": "exploded", "output": "â ‘â ­â â ‡â •⠙⠫" }, { "input": "explodes", "output": "â ‘â ­â â ‡â •⠙⠑⠎" }, { "input": "exploding", "output": "â ‘â ­â â ‡â •⠙⠌" }, { "input": "exploit", "output": "â ‘â ­â â ‡â •â Šâ ž" }, { "input": "exploit's", "output": "â ‘â ­â â ‡â •â Šâ žâ „â Ž" }, { "input": "exploitation", "output": "â ‘â ­â â ‡â •â Šâ žâ  â " }, { "input": "exploitation's", "output": "â ‘â ­â â ‡â •â Šâ žâ  â â „â Ž" }, { "input": "exploitative", "output": "â ‘â ­â â ‡â •â Šâ žâ â žâ Šâ §â ‘" }, { "input": "exploited", "output": "â ‘â ­â â ‡â •â Šâ žâ «" }, { "input": "exploiter", "output": "â ‘â ­â â ‡â •â Šâ žâ »" }, { "input": "exploiter's", "output": "â ‘â ­â â ‡â •⠊⠞⠻⠄⠎" }, { "input": "exploiters", "output": "â ‘â ­â â ‡â •⠊⠞⠻⠎" }, { "input": "exploiting", "output": "â ‘â ­â â ‡â •â Šâ žâ Œ" }, { "input": "exploits", "output": "â ‘â ­â â ‡â •â Šâ žâ Ž" }, { "input": "exploration", "output": "â ‘â ­â â ‡â •â —â  â " }, { "input": "exploration's", "output": "â ‘â ­â â ‡â •â —â  â â „â Ž" }, { "input": "explorations", "output": "â ‘â ­â â ‡â •â —â  â â Ž" }, { "input": "exploratory", "output": "â ‘â ­â â ‡â •â —â â žâ •â —â ½" }, { "input": "explore", "output": "â ‘â ­â â ‡â •â —â ‘" }, { "input": "explored", "output": "â ‘â ­â â ‡â •â —â «" }, { "input": "explorer", "output": "â ‘â ­â â ‡â •â —â »" }, { "input": "explorer's", "output": "â ‘â ­â â ‡â •⠗⠻⠄⠎" }, { "input": "explorers", "output": "â ‘â ­â â ‡â •⠗⠻⠎" }, { "input": "explores", "output": "â ‘â ­â â ‡â •â —â ‘â Ž" }, { "input": "exploring", "output": "â ‘â ­â â ‡â •â —â Œ" }, { "input": "explosion", "output": "â ‘â ­â â ‡â •â ¨â " }, { "input": "explosion's", "output": "â ‘â ­â â ‡â •â ¨â â „â Ž" }, { "input": "explosions", "output": "â ‘â ­â â ‡â •â ¨â â Ž" }, { "input": "explosive", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘" }, { "input": "explosive's", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘â „â Ž" }, { "input": "explosively", "output": "â ‘â ­â â ‡â •⠎⠊⠧⠑⠇⠽" }, { "input": "explosiveness", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘â °â Ž" }, { "input": "explosiveness's", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "explosives", "output": "â ‘â ­â â ‡â •â Žâ Šâ §â ‘â Ž" }, { "input": "expo", "output": "â ‘â ­â â •" }, { "input": "expo's", "output": "â ‘â ­â â •â „â Ž" }, { "input": "exponent", "output": "â ‘â ­â â •â â ¢â ž" }, { "input": "exponent's", "output": "â ‘â ­â â •â â ¢â žâ „â Ž" }, { "input": "exponential", "output": "â ‘â ­â â •â â ¢â žâ Šâ â ‡" }, { "input": "exponentially", "output": "â ‘â ­â â •â â ¢â žâ Šâ  â ½" }, { "input": "exponentiation", "output": "â ‘â ­â â •â â ¢â žâ Šâ  â " }, { "input": "exponents", "output": "â ‘â ­â â •â â ¢â žâ Ž" }, { "input": "export", "output": "â ‘â ­â â •â —â ž" }, { "input": "export's", "output": "â ‘â ­â â •â —â žâ „â Ž" }, { "input": "exportation", "output": "â ‘â ­â â •â —â žâ  â " }, { "input": "exportation's", "output": "â ‘â ­â â •â —â žâ  â â „â Ž" }, { "input": "exported", "output": "â ‘â ­â â •â —â žâ «" }, { "input": "exporter", "output": "â ‘â ­â â •â —â žâ »" }, { "input": "exporter's", "output": "â ‘â ­â â •⠗⠞⠻⠄⠎" }, { "input": "exporters", "output": "â ‘â ­â â •⠗⠞⠻⠎" }, { "input": "exporting", "output": "â ‘â ­â â •â —â žâ Œ" }, { "input": "exports", "output": "â ‘â ­â â •â —â žâ Ž" }, { "input": "expos", "output": "â ‘â ­â â •â Ž" }, { "input": "expose", "output": "â ‘â ­â â •â Žâ ‘" }, { "input": "expose's", "output": "â ‘â ­â â •â Žâ ‘â „â Ž" }, { "input": "exposed", "output": "â ‘â ­â â •â Žâ «" }, { "input": "exposes", "output": "â ‘â ­â â •â Žâ ‘â Ž" }, { "input": "exposing", "output": "â ‘â ­â â •â Žâ Œ" }, { "input": "exposition", "output": "â ‘â ­â â •â Žâ Šâ °â " }, { "input": "exposition's", "output": "â ‘â ­â â •â Žâ Šâ °â â „â Ž" }, { "input": "expositions", "output": "â ‘â ­â â •â Žâ Šâ °â â Ž" }, { "input": "expositor", "output": "â ‘â ­â â •â Žâ Šâ žâ •â —" }, { "input": "expositor's", "output": "â ‘â ­â â •â Žâ Šâ žâ •â —â „â Ž" }, { "input": "expositors", "output": "â ‘â ­â â •â Žâ Šâ žâ •â —â Ž" }, { "input": "expository", "output": "â ‘â ­â â •â Žâ Šâ žâ •â —â ½" }, { "input": "expostulate", "output": "â ‘â ­â â •⠌⠥⠇â â žâ ‘" }, { "input": "expostulated", "output": "â ‘â ­â â •⠌⠥⠇â â žâ «" }, { "input": "expostulates", "output": "â ‘â ­â â •⠌⠥⠇â â žâ ‘â Ž" }, { "input": "expostulating", "output": "â ‘â ­â â •⠌⠥⠇â â žâ Œ" }, { "input": "expostulation", "output": "â ‘â ­â â •⠌⠥⠇⠠â " }, { "input": "expostulation's", "output": "â ‘â ­â â •⠌⠥⠇⠠â â „â Ž" }, { "input": "expostulations", "output": "â ‘â ­â â •⠌⠥⠇⠠â â Ž" }, { "input": "exposure", "output": "â ‘â ­â â •⠎⠥⠗⠑" }, { "input": "exposure's", "output": "â ‘â ­â â •⠎⠥⠗⠑⠄⠎" }, { "input": "exposures", "output": "â ‘â ­â â •⠎⠥⠗⠑⠎" }, { "input": "expound", "output": "â ‘â ­â â ¨â ™" }, { "input": "expounded", "output": "â ‘â ­â â ¨â ™â «" }, { "input": "expounder", "output": "â ‘â ­â â ¨â ™â »" }, { "input": "expounder's", "output": "â ‘â ­â â ¨â ™â »â „â Ž" }, { "input": "expounders", "output": "â ‘â ­â â ¨â ™â »â Ž" }, { "input": "expounding", "output": "â ‘â ­â â ¨â ™â Œ" }, { "input": "expounds", "output": "â ‘â ­â â ¨â ™â Ž" }, { "input": "express", "output": "â ‘â ­â â —â ‘â Žâ Ž" }, { "input": "express's", "output": "â ‘â ­â â —â ‘â Žâ Žâ „â Ž" }, { "input": "expressed", "output": "â ‘â ­â â —â ‘â Žâ Žâ «" }, { "input": "expresses", "output": "â ‘â ­â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "expressible", "output": "â ‘â ­â â —â ‘â Žâ Žâ Šâ ¼" }, { "input": "expressing", "output": "â ‘â ­â â —â ‘â Žâ Žâ Œ" }, { "input": "expression", "output": "â ‘â ­â â —â ‘â Žâ ¨â " }, { "input": "expression's", "output": "â ‘â ­â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "expressionism", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Žâ " }, { "input": "expressionism's", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Žâ â „â Ž" }, { "input": "expressionist", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Œ" }, { "input": "expressionist's", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Œâ „â Ž" }, { "input": "expressionistic", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Œâ Šâ ‰" }, { "input": "expressionists", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Šâ Œâ Ž" }, { "input": "expressionless", "output": "â ‘â ­â â —â ‘â Žâ ¨â â ¨â Ž" }, { "input": "expressions", "output": "â ‘â ­â â —â ‘â Žâ ¨â â Ž" }, { "input": "expressive", "output": "â ‘â ­â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "expressively", "output": "â ‘â ­â â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "expressiveness", "output": "â ‘â ­â â —â ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "expressiveness's", "output": "â ‘â ­â â —â ‘â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "expressly", "output": "â ‘â ­â â —⠑⠎⠎⠇⠽" }, { "input": "expressway", "output": "â ‘â ­â â —â ‘â Žâ Žâ ºâ â ½" }, { "input": "expressway's", "output": "â ‘â ­â â —â ‘â Žâ Žâ ºâ â ½â „â Ž" }, { "input": "expressways", "output": "â ‘â ­â â —â ‘â Žâ Žâ ºâ â ½â Ž" }, { "input": "expropriate", "output": "â ‘â ­â â —â •â â —â Šâ â žâ ‘" }, { "input": "expropriated", "output": "â ‘â ­â â —â •â â —â Šâ â žâ «" }, { "input": "expropriates", "output": "â ‘â ­â â —â •â â —â Šâ â žâ ‘â Ž" }, { "input": "expropriating", "output": "â ‘â ­â â —â •â â —â Šâ â žâ Œ" }, { "input": "expropriation", "output": "â ‘â ­â â —â •â â —â Šâ  â " }, { "input": "expropriation's", "output": "â ‘â ­â â —â •â â —â Šâ  â â „â Ž" }, { "input": "expropriations", "output": "â ‘â ­â â —â •â â —â Šâ  â â Ž" }, { "input": "expulsion", "output": "â ‘â ­â â ¥â ‡â ¨â " }, { "input": "expulsion's", "output": "â ‘â ­â â ¥â ‡â ¨â â „â Ž" }, { "input": "expulsions", "output": "â ‘â ­â â ¥â ‡â ¨â â Ž" }, { "input": "expunge", "output": "â ‘â ­â â ¥â â ›â ‘" }, { "input": "expunged", "output": "â ‘â ­â â ¥â â ›â «" }, { "input": "expunges", "output": "â ‘â ­â â ¥â â ›â ‘â Ž" }, { "input": "expunging", "output": "â ‘â ­â â ¥â â ›â Œ" }, { "input": "expurgate", "output": "â ‘â ­â â ¥â —â ›â â žâ ‘" }, { "input": "expurgated", "output": "â ‘â ­â â ¥â —â ›â â žâ «" }, { "input": "expurgates", "output": "â ‘â ­â â ¥â —â ›â â žâ ‘â Ž" }, { "input": "expurgating", "output": "â ‘â ­â â ¥â —â ›â â žâ Œ" }, { "input": "expurgation", "output": "â ‘â ­â â ¥â —⠛⠠â " }, { "input": "expurgation's", "output": "â ‘â ­â â ¥â —⠛⠠â â „â Ž" }, { "input": "expurgations", "output": "â ‘â ­â â ¥â —⠛⠠â â Ž" }, { "input": "exquisite", "output": "⠑⠭⠟⠥⠊⠎⠊⠞⠑" }, { "input": "exquisitely", "output": "⠑⠭⠟⠥⠊⠎⠊⠞⠑⠇⠽" }, { "input": "exquisiteness's", "output": "⠑⠭⠟⠥⠊⠎⠊⠞⠑⠰⠎⠄⠎" }, { "input": "extant", "output": "â ‘â ­â žâ â â ž" }, { "input": "extemporaneous", "output": "â ‘â ­â žâ ‘â â â •â —â â â ‘⠳⠎" }, { "input": "extemporaneously", "output": "â ‘â ­â žâ ‘â â â •â —â â â ‘⠳⠎⠇⠽" }, { "input": "extemporaneousness", "output": "â ‘â ­â žâ ‘â â â •â —â â â ‘⠳⠎⠰⠎" }, { "input": "extemporaneousness's", "output": "â ‘â ­â žâ ‘â â â •â —â â â ‘⠳⠎⠰⠎⠄⠎" }, { "input": "extempore", "output": "â ‘â ­â žâ ‘â â â •â —â ‘" }, { "input": "extemporization", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠠â " }, { "input": "extemporization's", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠠â â „â Ž" }, { "input": "extemporize", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠑" }, { "input": "extemporized", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠫" }, { "input": "extemporizes", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠑⠎" }, { "input": "extemporizing", "output": "â ‘â ­â žâ ‘â â â •⠗⠊⠵⠌" }, { "input": "extend", "output": "⠑⠭⠞⠢⠙" }, { "input": "extendable", "output": "⠑⠭⠞⠢⠙â â ¼" }, { "input": "extended", "output": "⠑⠭⠞⠢⠙⠫" }, { "input": "extender", "output": "⠑⠭⠞⠢⠙⠻" }, { "input": "extender's", "output": "⠑⠭⠞⠢⠙⠻⠄⠎" }, { "input": "extenders", "output": "⠑⠭⠞⠢⠙⠻⠎" }, { "input": "extending", "output": "⠑⠭⠞⠢⠙⠌" }, { "input": "extends", "output": "⠑⠭⠞⠢⠙⠎" }, { "input": "extensible", "output": "⠑⠭⠞⠢⠎⠊⠼" }, { "input": "extension", "output": "⠑⠭⠞⠢⠨â " }, { "input": "extension's", "output": "⠑⠭⠞⠢⠨â â „â Ž" }, { "input": "extensional", "output": "⠑⠭⠞⠢⠨â â â ‡" }, { "input": "extensions", "output": "⠑⠭⠞⠢⠨â â Ž" }, { "input": "extensive", "output": "⠑⠭⠞⠢⠎⠊⠧⠑" }, { "input": "extensively", "output": "⠑⠭⠞⠢⠎⠊⠧⠑⠇⠽" }, { "input": "extensiveness", "output": "⠑⠭⠞⠢⠎⠊⠧⠑⠰⠎" }, { "input": "extensiveness's", "output": "⠑⠭⠞⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "extent", "output": "⠑⠭⠞⠢⠞" }, { "input": "extent's", "output": "⠑⠭⠞⠢⠞⠄⠎" }, { "input": "extents", "output": "⠑⠭⠞⠢⠞⠎" }, { "input": "extenuate", "output": "⠑⠭⠞⠢⠥â â žâ ‘" }, { "input": "extenuated", "output": "⠑⠭⠞⠢⠥â â žâ «" }, { "input": "extenuates", "output": "⠑⠭⠞⠢⠥â â žâ ‘â Ž" }, { "input": "extenuating", "output": "⠑⠭⠞⠢⠥â â žâ Œ" }, { "input": "extenuation", "output": "⠑⠭⠞⠢⠥⠠â " }, { "input": "extenuation's", "output": "⠑⠭⠞⠢⠥⠠â â „â Ž" }, { "input": "exterior", "output": "⠑⠭⠞⠻⠊⠕⠗" }, { "input": "exterior's", "output": "⠑⠭⠞⠻⠊⠕⠗⠄⠎" }, { "input": "exteriors", "output": "⠑⠭⠞⠻⠊⠕⠗⠎" }, { "input": "exterminate", "output": "â ‘â ­â žâ »â â ”â â žâ ‘" }, { "input": "exterminated", "output": "â ‘â ­â žâ »â â ”â â žâ «" }, { "input": "exterminates", "output": "â ‘â ­â žâ »â â ”â â žâ ‘â Ž" }, { "input": "exterminating", "output": "â ‘â ­â žâ »â â ”â â žâ Œ" }, { "input": "extermination", "output": "â ‘â ­â žâ »â â ”â  â " }, { "input": "extermination's", "output": "â ‘â ­â žâ »â â ”â  â â „â Ž" }, { "input": "exterminations", "output": "â ‘â ­â žâ »â â ”â  â â Ž" }, { "input": "exterminator", "output": "â ‘â ­â žâ »â â ”â â žâ •â —" }, { "input": "exterminator's", "output": "â ‘â ­â žâ »â â ”â â žâ •â —â „â Ž" }, { "input": "exterminators", "output": "â ‘â ­â žâ »â â ”â â žâ •â —â Ž" }, { "input": "external", "output": "â ‘â ­â žâ »â â â ‡" }, { "input": "external's", "output": "â ‘â ­â žâ »â â â ‡â „â Ž" }, { "input": "externalization", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ  â " }, { "input": "externalization's", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "externalizations", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ  â â Ž" }, { "input": "externalize", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ ‘" }, { "input": "externalized", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ «" }, { "input": "externalizes", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ ‘â Ž" }, { "input": "externalizing", "output": "â ‘â ­â žâ »â â â ‡â Šâ µâ Œ" }, { "input": "externally", "output": "â ‘â ­â žâ »â â  â ½" }, { "input": "externals", "output": "â ‘â ­â žâ »â â â ‡â Ž" }, { "input": "extinct", "output": "⠑⠭⠞⠔⠉⠞" }, { "input": "extincted", "output": "⠑⠭⠞⠔⠉⠞⠫" }, { "input": "extincting", "output": "⠑⠭⠞⠔⠉⠞⠌" }, { "input": "extinction", "output": "⠑⠭⠞⠔⠉⠰â " }, { "input": "extinction's", "output": "⠑⠭⠞⠔⠉⠰â â „â Ž" }, { "input": "extinctions", "output": "⠑⠭⠞⠔⠉⠰â â Ž" }, { "input": "extincts", "output": "⠑⠭⠞⠔⠉⠞⠎" }, { "input": "extinguish", "output": "⠑⠭⠞⠌⠥⠊⠩" }, { "input": "extinguishable", "output": "⠑⠭⠞⠌⠥⠊⠩â â ¼" }, { "input": "extinguished", "output": "⠑⠭⠞⠌⠥⠊⠩⠫" }, { "input": "extinguisher", "output": "⠑⠭⠞⠌⠥⠊⠩⠻" }, { "input": "extinguisher's", "output": "⠑⠭⠞⠌⠥⠊⠩⠻⠄⠎" }, { "input": "extinguishers", "output": "⠑⠭⠞⠌⠥⠊⠩⠻⠎" }, { "input": "extinguishes", "output": "⠑⠭⠞⠌⠥⠊⠩⠑⠎" }, { "input": "extinguishing", "output": "⠑⠭⠞⠌⠥⠊⠩⠌" }, { "input": "extirpate", "output": "â ‘â ­â žâ Šâ —â â â žâ ‘" }, { "input": "extirpated", "output": "â ‘â ­â žâ Šâ —â â â žâ «" }, { "input": "extirpates", "output": "â ‘â ­â žâ Šâ —â â â žâ ‘â Ž" }, { "input": "extirpating", "output": "â ‘â ­â žâ Šâ —â â â žâ Œ" }, { "input": "extirpation", "output": "â ‘â ­â žâ Šâ —â â  â " }, { "input": "extirpation's", "output": "â ‘â ­â žâ Šâ —â â  â â „â Ž" }, { "input": "extol", "output": "â ‘â ­â žâ •â ‡" }, { "input": "extolled", "output": "⠑⠭⠞⠕⠇⠇⠫" }, { "input": "extolling", "output": "⠑⠭⠞⠕⠇⠇⠌" }, { "input": "extols", "output": "⠑⠭⠞⠕⠇⠎" }, { "input": "extort", "output": "â ‘â ­â žâ •â —â ž" }, { "input": "extorted", "output": "â ‘â ­â žâ •â —â žâ «" }, { "input": "extorting", "output": "â ‘â ­â žâ •â —â žâ Œ" }, { "input": "extortion", "output": "â ‘â ­â žâ •â —â °â " }, { "input": "extortion's", "output": "â ‘â ­â žâ •â —â °â â „â Ž" }, { "input": "extortionate", "output": "â ‘â ­â žâ •â —â °â â â žâ ‘" }, { "input": "extortionist", "output": "â ‘â ­â žâ •â —â °â â Šâ Œ" }, { "input": "extortionist's", "output": "â ‘â ­â žâ •â —â °â â Šâ Œâ „â Ž" }, { "input": "extortionists", "output": "â ‘â ­â žâ •â —â °â â Šâ Œâ Ž" }, { "input": "extorts", "output": "â ‘â ­â žâ •â —â žâ Ž" }, { "input": "extra", "output": "â ‘â ­â žâ —â " }, { "input": "extra's", "output": "â ‘â ­â žâ —â â „â Ž" }, { "input": "extract", "output": "â ‘â ­â žâ —â â ‰â ž" }, { "input": "extract's", "output": "â ‘â ­â žâ —â â ‰â žâ „â Ž" }, { "input": "extracted", "output": "â ‘â ­â žâ —â â ‰â žâ «" }, { "input": "extracting", "output": "â ‘â ­â žâ —â â ‰â žâ Œ" }, { "input": "extraction", "output": "â ‘â ­â žâ —â â ‰â °â " }, { "input": "extraction's", "output": "â ‘â ­â žâ —â â ‰â °â â „â Ž" }, { "input": "extractions", "output": "â ‘â ­â žâ —â â ‰â °â â Ž" }, { "input": "extractor", "output": "â ‘â ­â žâ —â â ‰â žâ •â —" }, { "input": "extractor's", "output": "â ‘â ­â žâ —â â ‰â žâ •â —â „â Ž" }, { "input": "extractors", "output": "â ‘â ­â žâ —â â ‰â žâ •â —â Ž" }, { "input": "extracts", "output": "â ‘â ­â žâ —â â ‰â žâ Ž" }, { "input": "extracurricular", "output": "â ‘â ­â žâ —â â ‰â ¥â —⠗⠊⠉⠥⠇⠜" }, { "input": "extradite", "output": "â ‘â ­â žâ —â â ™â Šâ žâ ‘" }, { "input": "extradited", "output": "â ‘â ­â žâ —â â ™â Šâ žâ «" }, { "input": "extradites", "output": "â ‘â ­â žâ —â â ™â Šâ žâ ‘â Ž" }, { "input": "extraditing", "output": "â ‘â ­â žâ —â â ™â Šâ žâ Œ" }, { "input": "extradition", "output": "â ‘â ­â žâ —â â ™â Šâ °â " }, { "input": "extradition's", "output": "â ‘â ­â žâ —â â ™â Šâ °â â „â Ž" }, { "input": "extraditions", "output": "â ‘â ­â žâ —â â ™â Šâ °â â Ž" }, { "input": "extralegal", "output": "â ‘â ­â žâ —â â ‡â ‘â ›â â ‡" }, { "input": "extramarital", "output": "â ‘â ­â žâ —â â â œâ Šâ žâ â ‡" }, { "input": "extraneous", "output": "â ‘â ­â žâ —â â â ‘⠳⠎" }, { "input": "extraneously", "output": "â ‘â ­â žâ —â â â ‘⠳⠎⠇⠽" }, { "input": "extraordinarily", "output": "â ‘â ­â žâ —â â •⠗⠙⠔⠜⠊⠇⠽" }, { "input": "extraordinary", "output": "â ‘â ­â žâ —â â •⠗⠙⠔⠜⠽" }, { "input": "extrapolate", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ ‘" }, { "input": "extrapolated", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ «" }, { "input": "extrapolates", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ ‘â Ž" }, { "input": "extrapolating", "output": "â ‘â ­â žâ —â â â •â ‡â â žâ Œ" }, { "input": "extrapolation", "output": "â ‘â ­â žâ —â â â •⠇⠠â " }, { "input": "extrapolation's", "output": "â ‘â ­â žâ —â â â •⠇⠠â â „â Ž" }, { "input": "extrapolations", "output": "â ‘â ­â žâ —â â â •⠇⠠â â Ž" }, { "input": "extras", "output": "â ‘â ­â žâ —â â Ž" }, { "input": "extrasensory", "output": "â ‘â ­â žâ —â â Žâ ¢â Žâ •â —â ½" }, { "input": "extraterrestrial", "output": "â ‘â ­â žâ —â â žâ »â —⠑⠌⠗⠊â â ‡" }, { "input": "extraterrestrial's", "output": "â ‘â ­â žâ —â â žâ »â —⠑⠌⠗⠊â â ‡â „â Ž" }, { "input": "extraterrestrials", "output": "â ‘â ­â žâ —â â žâ »â —⠑⠌⠗⠊â â ‡â Ž" }, { "input": "extraterritoriality", "output": "â ‘â ­â žâ —â â žâ »â —â Šâ žâ •â —â Šâ â ‡â °â ½" }, { "input": "extraterritoriality's", "output": "â ‘â ­â žâ —â â žâ »â —â Šâ žâ •â —â Šâ â ‡â °â ½â „â Ž" }, { "input": "extravagance", "output": "â ‘â ­â žâ —â â §â â ›â ¨â ‘" }, { "input": "extravagance's", "output": "â ‘â ­â žâ —â â §â â ›â ¨â ‘â „â Ž" }, { "input": "extravagances", "output": "â ‘â ­â žâ —â â §â â ›â ¨â ‘â Ž" }, { "input": "extravagant", "output": "â ‘â ­â žâ —â â §â â ›â â â ž" }, { "input": "extravagantly", "output": "â ‘â ­â žâ —â â §â â ›â â â žâ ‡â ½" }, { "input": "extravaganza", "output": "â ‘â ­â žâ —â â §â â ›â â â µâ " }, { "input": "extravaganza's", "output": "â ‘â ­â žâ —â â §â â ›â â â µâ â „â Ž" }, { "input": "extravaganzas", "output": "â ‘â ­â žâ —â â §â â ›â â â µâ â Ž" }, { "input": "extravehicular", "output": "â ‘â ­â žâ —â â §â ‘⠓⠊⠉⠥⠇⠜" }, { "input": "extreme", "output": "â ‘â ­â žâ —â ‘â â ‘" }, { "input": "extreme's", "output": "â ‘â ­â žâ —â ‘â â ‘â „â Ž" }, { "input": "extremely", "output": "â ‘â ­â žâ —â ‘â â ‘⠇⠽" }, { "input": "extremeness", "output": "â ‘â ­â žâ —â ‘â â ‘â °â Ž" }, { "input": "extremeness's", "output": "â ‘â ­â žâ —â ‘â â ‘â °â Žâ „â Ž" }, { "input": "extremer", "output": "â ‘â ­â žâ —â ‘â â »" }, { "input": "extremes", "output": "â ‘â ­â žâ —â ‘â â ‘â Ž" }, { "input": "extremest", "output": "â ‘â ­â žâ —â ‘â â ‘â Œ" }, { "input": "extremism", "output": "â ‘â ­â žâ —â ‘â â Šâ Žâ " }, { "input": "extremism's", "output": "â ‘â ­â žâ —â ‘â â Šâ Žâ â „â Ž" }, { "input": "extremist", "output": "â ‘â ­â žâ —â ‘â â Šâ Œ" }, { "input": "extremist's", "output": "â ‘â ­â žâ —â ‘â â Šâ Œâ „â Ž" }, { "input": "extremists", "output": "â ‘â ­â žâ —â ‘â â Šâ Œâ Ž" }, { "input": "extremities", "output": "â ‘â ­â žâ —â ‘â â Šâ žâ Šâ ‘â Ž" }, { "input": "extremity", "output": "â ‘â ­â žâ —â ‘â â °â ½" }, { "input": "extremity's", "output": "â ‘â ­â žâ —â ‘â â °â ½â „â Ž" }, { "input": "extricable", "output": "â ‘â ­â žâ —â Šâ ‰â â ¼" }, { "input": "extricate", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ ‘" }, { "input": "extricated", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ «" }, { "input": "extricates", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "extricating", "output": "â ‘â ­â žâ —â Šâ ‰â â žâ Œ" }, { "input": "extrication", "output": "⠑⠭⠞⠗⠊⠉⠠â " }, { "input": "extrication's", "output": "⠑⠭⠞⠗⠊⠉⠠â â „â Ž" }, { "input": "extrinsic", "output": "⠑⠭⠞⠗⠔⠎⠊⠉" }, { "input": "extrinsically", "output": "⠑⠭⠞⠗⠔⠎⠊⠉⠠⠽" }, { "input": "extroversion", "output": "⠑⠭⠞⠗⠕⠧⠻⠨â " }, { "input": "extroversion's", "output": "⠑⠭⠞⠗⠕⠧⠻⠨â â „â Ž" }, { "input": "extrovert", "output": "⠑⠭⠞⠗⠕⠧⠻⠞" }, { "input": "extrovert's", "output": "⠑⠭⠞⠗⠕⠧⠻⠞⠄⠎" }, { "input": "extroverted", "output": "⠑⠭⠞⠗⠕⠧⠻⠞⠫" }, { "input": "extroverts", "output": "⠑⠭⠞⠗⠕⠧⠻⠞⠎" }, { "input": "extrude", "output": "⠑⠭⠞⠗⠥⠙⠑" }, { "input": "extruded", "output": "⠑⠭⠞⠗⠥⠙⠫" }, { "input": "extrudes", "output": "⠑⠭⠞⠗⠥⠙⠑⠎" }, { "input": "extruding", "output": "⠑⠭⠞⠗⠥⠙⠌" }, { "input": "extrusion", "output": "⠑⠭⠞⠗⠥⠨â " }, { "input": "extrusion's", "output": "⠑⠭⠞⠗⠥⠨â â „â Ž" }, { "input": "extrusions", "output": "⠑⠭⠞⠗⠥⠨â â Ž" }, { "input": "extrusive", "output": "⠑⠭⠞⠗⠥⠎⠊⠧⠑" }, { "input": "exuberance", "output": "⠑⠭⠥⠃⠻⠨⠑" }, { "input": "exuberance's", "output": "⠑⠭⠥⠃⠻⠨⠑⠄⠎" }, { "input": "exuberant", "output": "⠑⠭⠥⠃⠻â â â ž" }, { "input": "exuberantly", "output": "⠑⠭⠥⠃⠻â â â žâ ‡â ½" }, { "input": "exudation", "output": "⠑⠭⠥⠙⠠â " }, { "input": "exudation's", "output": "⠑⠭⠥⠙⠠â â „â Ž" }, { "input": "exude", "output": "⠑⠭⠥⠙⠑" }, { "input": "exuded", "output": "⠑⠭⠥⠙⠫" }, { "input": "exudes", "output": "⠑⠭⠥⠙⠑⠎" }, { "input": "exuding", "output": "⠑⠭⠥⠙⠌" }, { "input": "exult", "output": "⠑⠭⠥⠇⠞" }, { "input": "exultant", "output": "⠑⠭⠥⠇⠞â â â ž" }, { "input": "exultantly", "output": "⠑⠭⠥⠇⠞â â â žâ ‡â ½" }, { "input": "exultation", "output": "⠑⠭⠥⠇⠞⠠â " }, { "input": "exultation's", "output": "⠑⠭⠥⠇⠞⠠â â „â Ž" }, { "input": "exulted", "output": "⠑⠭⠥⠇⠞⠫" }, { "input": "exulting", "output": "⠑⠭⠥⠇⠞⠌" }, { "input": "exults", "output": "⠑⠭⠥⠇⠞⠎" }, { "input": "exurb", "output": "⠑⠭⠥⠗⠃" }, { "input": "exurb's", "output": "⠑⠭⠥⠗⠃⠄⠎" }, { "input": "exurban", "output": "⠑⠭⠥⠗⠃â â " }, { "input": "exurbanite", "output": "⠑⠭⠥⠗⠃â â â Šâ žâ ‘" }, { "input": "exurbanite's", "output": "⠑⠭⠥⠗⠃â â â Šâ žâ ‘â „â Ž" }, { "input": "exurbanites", "output": "⠑⠭⠥⠗⠃â â â Šâ žâ ‘â Ž" }, { "input": "exurbia", "output": "⠑⠭⠥⠗⠃⠊â " }, { "input": "exurbia's", "output": "⠑⠭⠥⠗⠃⠊â â „â Ž" }, { "input": "exurbs", "output": "⠑⠭⠥⠗⠃⠎" }, { "input": "eye", "output": "⠑⠽⠑" }, { "input": "eye's", "output": "⠑⠽⠑⠄⠎" }, { "input": "eyeball", "output": "⠑⠽⠑⠃â â ‡â ‡" }, { "input": "eyeball's", "output": "⠑⠽⠑⠃â â ‡â ‡â „â Ž" }, { "input": "eyeballed", "output": "⠑⠽⠑⠃â â ‡â ‡â «" }, { "input": "eyeballing", "output": "⠑⠽⠑⠃â â ‡â ‡â Œ" }, { "input": "eyeballs", "output": "⠑⠽⠑⠃â â ‡â ‡â Ž" }, { "input": "eyebrow", "output": "⠑⠽⠑⠃⠗⠪" }, { "input": "eyebrow's", "output": "⠑⠽⠑⠃⠗⠪⠄⠎" }, { "input": "eyebrows", "output": "⠑⠽⠑⠃⠗⠪⠎" }, { "input": "eyed", "output": "⠑⠽⠫" }, { "input": "eyedropper", "output": "⠑⠽⠑⠙⠗⠕â â â »" }, { "input": "eyedropper's", "output": "⠑⠽⠑⠙⠗⠕â â â »â „â Ž" }, { "input": "eyedroppers", "output": "⠑⠽⠑⠙⠗⠕â â â »â Ž" }, { "input": "eyeful", "output": "⠑⠽⠑⠰⠇" }, { "input": "eyeful's", "output": "⠑⠽⠑⠰⠇⠄⠎" }, { "input": "eyefuls", "output": "⠑⠽⠑⠰⠇⠎" }, { "input": "eyeglass", "output": "⠑⠽⠑⠛⠇â â Žâ Ž" }, { "input": "eyeglass's", "output": "⠑⠽⠑⠛⠇â â Žâ Žâ „â Ž" }, { "input": "eyeglasses", "output": "⠑⠽⠑⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "eyeing", "output": "⠑⠽⠑⠌" }, { "input": "eyelash", "output": "⠑⠽⠑⠇â â ©" }, { "input": "eyelash's", "output": "⠑⠽⠑⠇â â ©â „â Ž" }, { "input": "eyelashes", "output": "⠑⠽⠑⠇â â ©â ‘â Ž" }, { "input": "eyeless", "output": "⠑⠽⠑⠨⠎" }, { "input": "eyelet", "output": "⠑⠽⠑⠇⠑⠞" }, { "input": "eyelet's", "output": "⠑⠽⠑⠇⠑⠞⠄⠎" }, { "input": "eyelets", "output": "⠑⠽⠑⠇⠑⠞⠎" }, { "input": "eyelid", "output": "⠑⠽⠑⠇⠊⠙" }, { "input": "eyelid's", "output": "⠑⠽⠑⠇⠊⠙⠄⠎" }, { "input": "eyelids", "output": "⠑⠽⠑⠇⠊⠙⠎" }, { "input": "eyeliner", "output": "⠑⠽⠑⠇⠔⠻" }, { "input": "eyeliner's", "output": "⠑⠽⠑⠇⠔⠻⠄⠎" }, { "input": "eyeliners", "output": "⠑⠽⠑⠇⠔⠻⠎" }, { "input": "eyeopener", "output": "⠑⠽⠑⠕â â ¢â »" }, { "input": "eyeopener's", "output": "⠑⠽⠑⠕â â ¢â »â „â Ž" }, { "input": "eyeopeners", "output": "⠑⠽⠑⠕â â ¢â »â Ž" }, { "input": "eyeopening", "output": "⠑⠽⠑⠕â â ¢â Œ" }, { "input": "eyepiece", "output": "⠑⠽⠑â â Šâ ‘⠉⠑" }, { "input": "eyepiece's", "output": "⠑⠽⠑â â Šâ ‘⠉⠑⠄⠎" }, { "input": "eyepieces", "output": "⠑⠽⠑â â Šâ ‘⠉⠑⠎" }, { "input": "eyes", "output": "⠑⠽⠑⠎" }, { "input": "eyesight", "output": "⠑⠽⠑⠎⠊⠣⠞" }, { "input": "eyesight's", "output": "⠑⠽⠑⠎⠊⠣⠞⠄⠎" }, { "input": "eyesore", "output": "⠑⠽⠑⠎⠕⠗⠑" }, { "input": "eyesore's", "output": "⠑⠽⠑⠎⠕⠗⠑⠄⠎" }, { "input": "eyesores", "output": "⠑⠽⠑⠎⠕⠗⠑⠎" }, { "input": "eyestrain", "output": "⠑⠽⠑⠌⠗â â ”" }, { "input": "eyestrain's", "output": "⠑⠽⠑⠌⠗â â ”â „â Ž" }, { "input": "eyeteeth", "output": "⠑⠽⠑⠞⠑⠑⠹" }, { "input": "eyetooth", "output": "⠑⠽⠑⠞⠕⠕⠹" }, { "input": "eyetooth's", "output": "⠑⠽⠑⠞⠕⠕⠹⠄⠎" }, { "input": "eyewash", "output": "⠑⠽⠑⠺â â ©" }, { "input": "eyewash's", "output": "⠑⠽⠑⠺â â ©â „â Ž" }, { "input": "eyewitness", "output": "⠑⠽⠑⠺⠊⠞⠰⠎" }, { "input": "eyewitness's", "output": "⠑⠽⠑⠺⠊⠞⠰⠎⠄⠎" }, { "input": "eyewitnesses", "output": "⠑⠽⠑⠺⠊⠞⠰⠎⠑⠎" }, { "input": "f", "output": "â °â ‹" }, { "input": "fa", "output": "â ‹â " }, { "input": "fa's", "output": "â ‹â â „â Ž" }, { "input": "fable", "output": "â ‹â â ¼" }, { "input": "fable's", "output": "â ‹â â ¼â „â Ž" }, { "input": "fabled", "output": "â ‹â â ¼â ™" }, { "input": "fables", "output": "â ‹â â ¼â Ž" }, { "input": "fabric", "output": "â ‹â â ƒâ —â Šâ ‰" }, { "input": "fabric's", "output": "â ‹â â ƒâ —⠊⠉⠄⠎" }, { "input": "fabricate", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ ‘" }, { "input": "fabricated", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ «" }, { "input": "fabricates", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "fabricating", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ Œ" }, { "input": "fabrication", "output": "â ‹â â ƒâ —⠊⠉⠠â " }, { "input": "fabrication's", "output": "â ‹â â ƒâ —⠊⠉⠠â â „â Ž" }, { "input": "fabrications", "output": "â ‹â â ƒâ —⠊⠉⠠â â Ž" }, { "input": "fabricator", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ •â —" }, { "input": "fabricator's", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ •â —â „â Ž" }, { "input": "fabricators", "output": "â ‹â â ƒâ —â Šâ ‰â â žâ •â —â Ž" }, { "input": "fabrics", "output": "â ‹â â ƒâ —⠊⠉⠎" }, { "input": "fabulous", "output": "â ‹â â ƒâ ¥â ‡â ³â Ž" }, { "input": "fabulously", "output": "â ‹â â ƒâ ¥â ‡â ³â Žâ ‡â ½" }, { "input": "facade", "output": "â ‹â â ‰â â ™â ‘" }, { "input": "facade's", "output": "â ‹â â ‰â â ™â ‘â „â Ž" }, { "input": "facades", "output": "â ‹â â ‰â â ™â ‘â Ž" }, { "input": "face", "output": "â ‹â â ‰â ‘" }, { "input": "face's", "output": "â ‹â â ‰â ‘â „â Ž" }, { "input": "faced", "output": "â ‹â â ‰â «" }, { "input": "faceless", "output": "â ‹â â ‰â ‘⠨⠎" }, { "input": "faces", "output": "â ‹â â ‰â ‘â Ž" }, { "input": "facet", "output": "â ‹â â ‰â ‘â ž" }, { "input": "facet's", "output": "â ‹â â ‰â ‘â žâ „â Ž" }, { "input": "faceted", "output": "â ‹â â ‰â ‘â žâ «" }, { "input": "faceting", "output": "â ‹â â ‰â ‘â žâ Œ" }, { "input": "facetious", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎" }, { "input": "facetiously", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎⠇⠽" }, { "input": "facetiousness", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎⠰⠎" }, { "input": "facetiousness's", "output": "â ‹â â ‰â ‘⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "facets", "output": "â ‹â â ‰â ‘â žâ Ž" }, { "input": "facial", "output": "â ‹â â ‰â Šâ â ‡" }, { "input": "facial's", "output": "â ‹â â ‰â Šâ â ‡â „â Ž" }, { "input": "facially", "output": "â ‹â â ‰â Šâ  â ½" }, { "input": "facials", "output": "â ‹â â ‰â Šâ â ‡â Ž" }, { "input": "facile", "output": "â ‹â â ‰â Šâ ‡â ‘" }, { "input": "facilely", "output": "â ‹â â ‰â Šâ ‡â ‘⠇⠽" }, { "input": "facilitate", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ ‘" }, { "input": "facilitated", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ «" }, { "input": "facilitates", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ ‘â Ž" }, { "input": "facilitating", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ â žâ Œ" }, { "input": "facilitation", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ  â " }, { "input": "facilitation's", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ  â â „â Ž" }, { "input": "facilities", "output": "â ‹â â ‰â Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "facility", "output": "â ‹â â ‰â Šâ ‡â °â ½" }, { "input": "facility's", "output": "â ‹â â ‰â Šâ ‡â °â ½â „â Ž" }, { "input": "facing", "output": "â ‹â â ‰â Œ" }, { "input": "facing's", "output": "â ‹â â ‰â Œâ „â Ž" }, { "input": "facings", "output": "â ‹â â ‰â Œâ Ž" }, { "input": "facsimile", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘" }, { "input": "facsimile's", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘â „â Ž" }, { "input": "facsimiled", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â «" }, { "input": "facsimileing", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘â Œ" }, { "input": "facsimiles", "output": "â ‹â â ‰â Žâ Šâ â Šâ ‡â ‘â Ž" }, { "input": "fact", "output": "â ‹â â ‰â ž" }, { "input": "fact's", "output": "â ‹â â ‰â žâ „â Ž" }, { "input": "faction", "output": "â ‹â â ‰â °â " }, { "input": "faction's", "output": "â ‹â â ‰â °â â „â Ž" }, { "input": "factional", "output": "â ‹â â ‰â °â â â ‡" }, { "input": "factionalism", "output": "â ‹â â ‰â °â â â ‡â Šâ Žâ " }, { "input": "factionalism's", "output": "â ‹â â ‰â °â â â ‡â Šâ Žâ â „â Ž" }, { "input": "factions", "output": "â ‹â â ‰â °â â Ž" }, { "input": "factious", "output": "â ‹â â ‰â žâ Šâ ³â Ž" }, { "input": "factitious", "output": "â ‹â â ‰â žâ Šâ žâ Šâ ³â Ž" }, { "input": "factoid", "output": "â ‹â â ‰â žâ •â Šâ ™" }, { "input": "factoid's", "output": "â ‹â â ‰â žâ •⠊⠙⠄⠎" }, { "input": "factoids", "output": "â ‹â â ‰â žâ •⠊⠙⠎" }, { "input": "factor", "output": "â ‹â â ‰â žâ •â —" }, { "input": "factor's", "output": "â ‹â â ‰â žâ •â —â „â Ž" }, { "input": "factored", "output": "â ‹â â ‰â žâ •â —â «" }, { "input": "factorial", "output": "â ‹â â ‰â žâ •â —â Šâ â ‡" }, { "input": "factorial's", "output": "â ‹â â ‰â žâ •â —â Šâ â ‡â „â Ž" }, { "input": "factorials", "output": "â ‹â â ‰â žâ •â —â Šâ â ‡â Ž" }, { "input": "factories", "output": "â ‹â â ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "factoring", "output": "â ‹â â ‰â žâ •â —â Œ" }, { "input": "factorization", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠠â " }, { "input": "factorize", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠑" }, { "input": "factorized", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠫" }, { "input": "factorizes", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠑⠎" }, { "input": "factorizing", "output": "â ‹â â ‰â žâ •⠗⠊⠵⠌" }, { "input": "factors", "output": "â ‹â â ‰â žâ •â —â Ž" }, { "input": "factory", "output": "â ‹â â ‰â žâ •â —â ½" }, { "input": "factory's", "output": "â ‹â â ‰â žâ •⠗⠽⠄⠎" }, { "input": "factotum", "output": "â ‹â â ‰â žâ •â žâ ¥â " }, { "input": "factotum's", "output": "â ‹â â ‰â žâ •â žâ ¥â â „â Ž" }, { "input": "factotums", "output": "â ‹â â ‰â žâ •â žâ ¥â â Ž" }, { "input": "facts", "output": "â ‹â â ‰â žâ Ž" }, { "input": "factual", "output": "â ‹â â ‰â žâ ¥â â ‡" }, { "input": "factually", "output": "â ‹â â ‰â žâ ¥â  â ½" }, { "input": "faculties", "output": "â ‹â â ‰â ¥â ‡â žâ Šâ ‘â Ž" }, { "input": "faculty", "output": "â ‹â â ‰â ¥â ‡â žâ ½" }, { "input": "faculty's", "output": "â ‹â â ‰â ¥â ‡â žâ ½â „â Ž" }, { "input": "fad", "output": "â ‹â â ™" }, { "input": "fad's", "output": "â ‹â â ™â „â Ž" }, { "input": "faddish", "output": "â ‹â â ²â Šâ ©" }, { "input": "faddist", "output": "â ‹â â ²â Šâ Œ" }, { "input": "faddist's", "output": "â ‹â â ²â Šâ Œâ „â Ž" }, { "input": "faddists", "output": "â ‹â â ²â Šâ Œâ Ž" }, { "input": "fade", "output": "â ‹â â ™â ‘" }, { "input": "fade's", "output": "â ‹â â ™â ‘â „â Ž" }, { "input": "faded", "output": "â ‹â â ™â «" }, { "input": "fades", "output": "â ‹â â ™â ‘â Ž" }, { "input": "fading", "output": "â ‹â â ™â Œ" }, { "input": "fads", "output": "â ‹â â ™â Ž" }, { "input": "faerie", "output": "â ‹â â ‘â —â Šâ ‘" }, { "input": "faerie's", "output": "â ‹â â ‘â —â Šâ ‘â „â Ž" }, { "input": "faeries", "output": "â ‹â â ‘â —â Šâ ‘â Ž" }, { "input": "fag", "output": "â ‹â â ›" }, { "input": "fag's", "output": "â ‹â â ›â „â Ž" }, { "input": "fagged", "output": "â ‹â â ¶â «" }, { "input": "fagging", "output": "â ‹â â ¶â Œ" }, { "input": "faggot", "output": "â ‹â â ¶â •â ž" }, { "input": "faggot's", "output": "â ‹â â ¶â •â žâ „â Ž" }, { "input": "faggots", "output": "â ‹â â ¶â •â žâ Ž" }, { "input": "fagot", "output": "â ‹â â ›â •â ž" }, { "input": "fagot's", "output": "â ‹â â ›â •â žâ „â Ž" }, { "input": "fagoting", "output": "â ‹â â ›â •â žâ Œ" }, { "input": "fagots", "output": "â ‹â â ›â •â žâ Ž" }, { "input": "fags", "output": "â ‹â â ›â Ž" }, { "input": "fail", "output": "â ‹â â Šâ ‡" }, { "input": "fail's", "output": "â ‹â â Šâ ‡â „â Ž" }, { "input": "failed", "output": "â ‹â â Šâ ‡â «" }, { "input": "failing", "output": "â ‹â â Šâ ‡â Œ" }, { "input": "failing's", "output": "â ‹â â Šâ ‡â Œâ „â Ž" }, { "input": "failings", "output": "â ‹â â Šâ ‡â Œâ Ž" }, { "input": "faille", "output": "â ‹â â Šâ ‡â ‡â ‘" }, { "input": "faille's", "output": "â ‹â â Šâ ‡â ‡â ‘â „â Ž" }, { "input": "fails", "output": "â ‹â â Šâ ‡â Ž" }, { "input": "failure", "output": "â ‹â â Šâ ‡â ¥â —â ‘" }, { "input": "failure's", "output": "â ‹â â Šâ ‡â ¥â —â ‘â „â Ž" }, { "input": "failures", "output": "â ‹â â Šâ ‡â ¥â —â ‘â Ž" }, { "input": "fain", "output": "â ‹â â ”" }, { "input": "fainer", "output": "â ‹â â ”â »" }, { "input": "fainest", "output": "â ‹â â ”â ‘â Œ" }, { "input": "faint", "output": "â ‹â â ”â ž" }, { "input": "faint's", "output": "â ‹â â ”â žâ „â Ž" }, { "input": "fainted", "output": "â ‹â â ”â žâ «" }, { "input": "fainter", "output": "â ‹â â ”â žâ »" }, { "input": "faintest", "output": "â ‹â â ”â žâ ‘â Œ" }, { "input": "fainthearted", "output": "â ‹â â ”⠞⠓⠑⠜⠞⠫" }, { "input": "fainting", "output": "â ‹â â ”â žâ Œ" }, { "input": "faintly", "output": "â ‹â â ”⠞⠇⠽" }, { "input": "faintness", "output": "â ‹â â ”â žâ °â Ž" }, { "input": "faintness's", "output": "â ‹â â ”â žâ °â Žâ „â Ž" }, { "input": "faints", "output": "â ‹â â ”â žâ Ž" }, { "input": "fair", "output": "â ‹â â Šâ —" }, { "input": "fair's", "output": "â ‹â â Šâ —â „â Ž" }, { "input": "fairer", "output": "â ‹â â Šâ —â »" }, { "input": "fairest", "output": "â ‹â â Šâ —â ‘â Œ" }, { "input": "fairground", "output": "â ‹â â Šâ —⠛⠗⠨⠙" }, { "input": "fairground's", "output": "â ‹â â Šâ —⠛⠗⠨⠙⠄⠎" }, { "input": "fairgrounds", "output": "â ‹â â Šâ —⠛⠗⠨⠙⠎" }, { "input": "fairies", "output": "â ‹â â Šâ —â Šâ ‘â Ž" }, { "input": "fairing", "output": "â ‹â â Šâ —â Œ" }, { "input": "fairing's", "output": "â ‹â â Šâ —⠌⠄⠎" }, { "input": "fairings", "output": "â ‹â â Šâ —⠌⠎" }, { "input": "fairly", "output": "â ‹â â Šâ —⠇⠽" }, { "input": "fairness", "output": "â ‹â â Šâ —â °â Ž" }, { "input": "fairness's", "output": "â ‹â â Šâ —â °â Žâ „â Ž" }, { "input": "fairs", "output": "â ‹â â Šâ —â Ž" }, { "input": "fairway", "output": "â ‹â â Šâ —â ºâ â ½" }, { "input": "fairway's", "output": "â ‹â â Šâ —â ºâ â ½â „â Ž" }, { "input": "fairways", "output": "â ‹â â Šâ —â ºâ â ½â Ž" }, { "input": "fairy", "output": "â ‹â â Šâ —â ½" }, { "input": "fairy's", "output": "â ‹â â Šâ —⠽⠄⠎" }, { "input": "fairyland", "output": "â ‹â â Šâ —⠽⠇⠯" }, { "input": "fairyland's", "output": "â ‹â â Šâ —⠽⠇⠯⠄⠎" }, { "input": "fairylands", "output": "â ‹â â Šâ —⠽⠇⠯⠎" }, { "input": "faith", "output": "â ‹â â Šâ ¹" }, { "input": "faith's", "output": "â ‹â â Šâ ¹â „â Ž" }, { "input": "faithful", "output": "â ‹â â Šâ ¹â °â ‡" }, { "input": "faithful's", "output": "â ‹â â Šâ ¹â °â ‡â „â Ž" }, { "input": "faithfully", "output": "â ‹â â Šâ ¹â °â ‡â ‡â ½" }, { "input": "faithfulness", "output": "â ‹â â Šâ ¹â °â ‡â °â Ž" }, { "input": "faithfulness's", "output": "â ‹â â Šâ ¹â °â ‡â °â Žâ „â Ž" }, { "input": "faithfuls", "output": "â ‹â â Šâ ¹â °â ‡â Ž" }, { "input": "faithless", "output": "â ‹â â Šâ ¹â ¨â Ž" }, { "input": "faithlessly", "output": "â ‹â â Šâ ¹â ¨â Žâ ‡â ½" }, { "input": "faithlessness", "output": "â ‹â â Šâ ¹â ¨â Žâ °â Ž" }, { "input": "faithlessness's", "output": "â ‹â â Šâ ¹â ¨â Žâ °â Žâ „â Ž" }, { "input": "faiths", "output": "â ‹â â Šâ ¹â Ž" }, { "input": "fajita", "output": "â ‹â â šâ Šâ žâ " }, { "input": "fajita's", "output": "â ‹â â šâ Šâ žâ â „â Ž" }, { "input": "fajitas", "output": "â ‹â â šâ Šâ žâ â Ž" }, { "input": "fajitas's", "output": "â ‹â â šâ Šâ žâ â Žâ „â Ž" }, { "input": "fake", "output": "â ‹â â …â ‘" }, { "input": "fake's", "output": "â ‹â â …â ‘â „â Ž" }, { "input": "faked", "output": "â ‹â â …â «" }, { "input": "faker", "output": "â ‹â â …â »" }, { "input": "faker's", "output": "â ‹â â …⠻⠄⠎" }, { "input": "fakers", "output": "â ‹â â …⠻⠎" }, { "input": "fakes", "output": "â ‹â â …â ‘â Ž" }, { "input": "faking", "output": "â ‹â â …â Œ" }, { "input": "fakir", "output": "â ‹â â …â Šâ —" }, { "input": "fakir's", "output": "â ‹â â …â Šâ —â „â Ž" }, { "input": "fakirs", "output": "â ‹â â …â Šâ —â Ž" }, { "input": "falcon", "output": "â ‹â â ‡â ‰â •â " }, { "input": "falcon's", "output": "â ‹â â ‡â ‰â •â â „â Ž" }, { "input": "falconer", "output": "â ‹â â ‡â ‰â •â â »" }, { "input": "falconer's", "output": "â ‹â â ‡â ‰â •â â »â „â Ž" }, { "input": "falconers", "output": "â ‹â â ‡â ‰â •â â »â Ž" }, { "input": "falconry", "output": "â ‹â â ‡â ‰â •â â —â ½" }, { "input": "falconry's", "output": "â ‹â â ‡â ‰â •â â —⠽⠄⠎" }, { "input": "falcons", "output": "â ‹â â ‡â ‰â •â â Ž" }, { "input": "fall", "output": "â ‹â â ‡â ‡" }, { "input": "fall's", "output": "â ‹â â ‡â ‡â „â Ž" }, { "input": "fallacies", "output": "â ‹â â ‡â ‡â â ‰â Šâ ‘â Ž" }, { "input": "fallacious", "output": "â ‹â â ‡â ‡â â ‰â Šâ ³â Ž" }, { "input": "fallaciously", "output": "â ‹â â ‡â ‡â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "fallacy", "output": "â ‹â â ‡â ‡â â ‰â ½" }, { "input": "fallacy's", "output": "â ‹â â ‡â ‡â â ‰â ½â „â Ž" }, { "input": "fallen", "output": "â ‹â â ‡â ‡â ¢" }, { "input": "fallibility", "output": "â ‹â â ‡â ‡â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "fallibility's", "output": "â ‹â â ‡â ‡â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "fallible", "output": "â ‹â â ‡â ‡â Šâ ¼" }, { "input": "fallibleness", "output": "â ‹â â ‡â ‡â Šâ ¼â °â Ž" }, { "input": "fallibleness's", "output": "â ‹â â ‡â ‡â Šâ ¼â °â Žâ „â Ž" }, { "input": "fallibly", "output": "â ‹â â ‡â ‡â Šâ ƒâ ‡â ½" }, { "input": "falling", "output": "â ‹â â ‡â ‡â Œ" }, { "input": "falloff", "output": "â ‹â â ‡â ‡â ·â ‹" }, { "input": "falloff's", "output": "â ‹â â ‡â ‡â ·â ‹â „â Ž" }, { "input": "falloffs", "output": "â ‹â â ‡â ‡â ·â ‹â Ž" }, { "input": "fallout", "output": "â ‹â â ‡â ‡â ³â ž" }, { "input": "fallout's", "output": "â ‹â â ‡â ‡â ³â žâ „â Ž" }, { "input": "fallow", "output": "â ‹â â ‡â ‡â ª" }, { "input": "fallow's", "output": "â ‹â â ‡â ‡â ªâ „â Ž" }, { "input": "fallowed", "output": "â ‹â â ‡â ‡â ªâ «" }, { "input": "fallowing", "output": "â ‹â â ‡â ‡â ªâ Œ" }, { "input": "fallows", "output": "â ‹â â ‡â ‡â ªâ Ž" }, { "input": "falls", "output": "â ‹â â ‡â ‡â Ž" }, { "input": "false", "output": "â ‹â â ‡â Žâ ‘" }, { "input": "falsehood", "output": "â ‹â â ‡â Žâ ‘â “â •â •â ™" }, { "input": "falsehood's", "output": "â ‹â â ‡â Žâ ‘⠓⠕⠕⠙⠄⠎" }, { "input": "falsehoods", "output": "â ‹â â ‡â Žâ ‘⠓⠕⠕⠙⠎" }, { "input": "falsely", "output": "â ‹â â ‡â Žâ ‘⠇⠽" }, { "input": "falseness", "output": "â ‹â â ‡â Žâ ‘â °â Ž" }, { "input": "falseness's", "output": "â ‹â â ‡â Žâ ‘â °â Žâ „â Ž" }, { "input": "falser", "output": "â ‹â â ‡â Žâ »" }, { "input": "falsest", "output": "â ‹â â ‡â Žâ ‘â Œ" }, { "input": "falsetto", "output": "â ‹â â ‡â Žâ ‘â žâ žâ •" }, { "input": "falsetto's", "output": "â ‹â â ‡â Žâ ‘â žâ žâ •â „â Ž" }, { "input": "falsettos", "output": "â ‹â â ‡â Žâ ‘â žâ žâ •â Ž" }, { "input": "falsifiable", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ â ¼" }, { "input": "falsification", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‰â  â " }, { "input": "falsification's", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "falsifications", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "falsified", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ «" }, { "input": "falsifier", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ »" }, { "input": "falsifier's", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ »â „â Ž" }, { "input": "falsifiers", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ »â Ž" }, { "input": "falsifies", "output": "â ‹â â ‡â Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "falsify", "output": "â ‹â â ‡â Žâ Šâ ‹â ½" }, { "input": "falsifying", "output": "â ‹â â ‡â Žâ Šâ ‹â ½â Œ" }, { "input": "falsities", "output": "â ‹â â ‡â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "falsity", "output": "â ‹â â ‡â Žâ °â ½" }, { "input": "falsity's", "output": "â ‹â â ‡â Žâ °â ½â „â Ž" }, { "input": "falter", "output": "â ‹â â ‡â žâ »" }, { "input": "falter's", "output": "â ‹â â ‡â žâ »â „â Ž" }, { "input": "faltered", "output": "â ‹â â ‡â žâ »â «" }, { "input": "faltering", "output": "â ‹â â ‡â žâ »â Œ" }, { "input": "falteringly", "output": "â ‹â â ‡â žâ »â Œâ ‡â ½" }, { "input": "falterings", "output": "â ‹â â ‡â žâ »â Œâ Ž" }, { "input": "falters", "output": "â ‹â â ‡â žâ »â Ž" }, { "input": "fame", "output": "â ‹â â â ‘" }, { "input": "fame's", "output": "â ‹â â â ‘â „â Ž" }, { "input": "famed", "output": "â ‹â â â «" }, { "input": "familial", "output": "â ‹â â â Šâ ‡â Šâ â ‡" }, { "input": "familiar", "output": "â ‹â â â Šâ ‡â Šâ œ" }, { "input": "familiar's", "output": "â ‹â â â Šâ ‡â Šâ œâ „â Ž" }, { "input": "familiarity", "output": "â ‹â â â Šâ ‡â Šâ œâ °â ½" }, { "input": "familiarity's", "output": "â ‹â â â Šâ ‡â Šâ œâ °â ½â „â Ž" }, { "input": "familiarization", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ  â " }, { "input": "familiarization's", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ  â â „â Ž" }, { "input": "familiarize", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ ‘" }, { "input": "familiarized", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ «" }, { "input": "familiarizes", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ ‘â Ž" }, { "input": "familiarizing", "output": "â ‹â â â Šâ ‡â Šâ œâ Šâ µâ Œ" }, { "input": "familiarly", "output": "â ‹â â â Šâ ‡â Šâ œâ ‡â ½" }, { "input": "familiars", "output": "â ‹â â â Šâ ‡â Šâ œâ Ž" }, { "input": "families", "output": "â ‹â â â Šâ ‡â Šâ ‘â Ž" }, { "input": "family", "output": "â ‹â â â Šâ ‡â ½" }, { "input": "family's", "output": "â ‹â â â Šâ ‡â ½â „â Ž" }, { "input": "famine", "output": "â ‹â â â ”â ‘" }, { "input": "famine's", "output": "â ‹â â â ”â ‘â „â Ž" }, { "input": "famines", "output": "â ‹â â â ”â ‘â Ž" }, { "input": "famish", "output": "â ‹â â â Šâ ©" }, { "input": "famished", "output": "â ‹â â â Šâ ©â «" }, { "input": "famishes", "output": "â ‹â â â Šâ ©â ‘â Ž" }, { "input": "famishing", "output": "â ‹â â â Šâ ©â Œ" }, { "input": "famous", "output": "â ‹â â â ³â Ž" }, { "input": "famously", "output": "â ‹â â â ³â Žâ ‡â ½" }, { "input": "fan", "output": "â ‹â â " }, { "input": "fan's", "output": "â ‹â â â „â Ž" }, { "input": "fanatic", "output": "â ‹â â â â žâ Šâ ‰" }, { "input": "fanatic's", "output": "â ‹â â â â žâ Šâ ‰â „â Ž" }, { "input": "fanatical", "output": "â ‹â â â â žâ Šâ ‰â â ‡" }, { "input": "fanatically", "output": "â ‹â â â â žâ Šâ ‰â  â ½" }, { "input": "fanaticism", "output": "â ‹â â â â žâ Šâ ‰â Šâ Žâ " }, { "input": "fanaticism's", "output": "â ‹â â â â žâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "fanatics", "output": "â ‹â â â â žâ Šâ ‰â Ž" }, { "input": "fancied", "output": "â ‹â â â ‰â Šâ «" }, { "input": "fancier", "output": "â ‹â â â ‰â Šâ »" }, { "input": "fancier's", "output": "â ‹â â â ‰â Šâ »â „â Ž" }, { "input": "fanciers", "output": "â ‹â â â ‰â Šâ »â Ž" }, { "input": "fancies", "output": "â ‹â â â ‰â Šâ ‘â Ž" }, { "input": "fanciest", "output": "â ‹â â â ‰â Šâ ‘â Œ" }, { "input": "fanciful", "output": "â ‹â â â ‰â Šâ °â ‡" }, { "input": "fancifully", "output": "â ‹â â â ‰â Šâ °â ‡â ‡â ½" }, { "input": "fancifulness", "output": "â ‹â â â ‰â Šâ °â ‡â °â Ž" }, { "input": "fancifulness's", "output": "â ‹â â â ‰â Šâ °â ‡â °â Žâ „â Ž" }, { "input": "fancily", "output": "â ‹â â â ‰â Šâ ‡â ½" }, { "input": "fanciness", "output": "â ‹â â â ‰â Šâ °â Ž" }, { "input": "fanciness's", "output": "â ‹â â â ‰â Šâ °â Žâ „â Ž" }, { "input": "fancy", "output": "â ‹â â â ‰â ½" }, { "input": "fancy's", "output": "â ‹â â â ‰â ½â „â Ž" }, { "input": "fancying", "output": "â ‹â â â ‰â ½â Œ" }, { "input": "fancywork", "output": "â ‹â â â ‰â ½â â º" }, { "input": "fancywork's", "output": "â ‹â â â ‰â ½â â ºâ „â Ž" }, { "input": "fanfare", "output": "â ‹â â â ‹â œâ ‘" }, { "input": "fanfare's", "output": "â ‹â â â ‹â œâ ‘â „â Ž" }, { "input": "fanfares", "output": "â ‹â â â ‹â œâ ‘â Ž" }, { "input": "fang", "output": "â ‹â â â ›" }, { "input": "fang's", "output": "â ‹â â â ›â „â Ž" }, { "input": "fanged", "output": "â ‹â â â ›â «" }, { "input": "fangs", "output": "â ‹â â â ›â Ž" }, { "input": "fanned", "output": "â ‹â â â â «" }, { "input": "fannies", "output": "â ‹â â â â Šâ ‘â Ž" }, { "input": "fanning", "output": "â ‹â â â â Œ" }, { "input": "fanny", "output": "â ‹â â â â ½" }, { "input": "fanny's", "output": "â ‹â â â â ½â „â Ž" }, { "input": "fans", "output": "â ‹â â â Ž" }, { "input": "fantail", "output": "â ‹â â â žâ â Šâ ‡" }, { "input": "fantail's", "output": "â ‹â â â žâ â Šâ ‡â „â Ž" }, { "input": "fantails", "output": "â ‹â â â žâ â Šâ ‡â Ž" }, { "input": "fantasied", "output": "â ‹â â â žâ â Žâ Šâ «" }, { "input": "fantasies", "output": "â ‹â â â žâ â Žâ Šâ ‘â Ž" }, { "input": "fantasize", "output": "â ‹â â â žâ â Žâ Šâ µâ ‘" }, { "input": "fantasized", "output": "â ‹â â â žâ â Žâ Šâ µâ «" }, { "input": "fantasizes", "output": "â ‹â â â žâ â Žâ Šâ µâ ‘â Ž" }, { "input": "fantasizing", "output": "â ‹â â â žâ â Žâ Šâ µâ Œ" }, { "input": "fantastic", "output": "â ‹â â â žâ â Œâ Šâ ‰" }, { "input": "fantastically", "output": "â ‹â â â žâ â Œâ Šâ ‰â  â ½" }, { "input": "fantasy", "output": "â ‹â â â žâ â Žâ ½" }, { "input": "fantasy's", "output": "â ‹â â â žâ â Žâ ½â „â Ž" }, { "input": "fantasying", "output": "â ‹â â â žâ â Žâ ½â Œ" }, { "input": "fanzine", "output": "â ‹â â â µâ ”â ‘" }, { "input": "far", "output": "â ‹â œ" }, { "input": "farad", "output": "â ‹â œâ â ™" }, { "input": "farad's", "output": "â ‹â œâ â ™â „â Ž" }, { "input": "farads", "output": "â ‹â œâ â ™â Ž" }, { "input": "faraway", "output": "â ‹â œâ â ºâ â ½" }, { "input": "farce", "output": "⠋⠜⠉⠑" }, { "input": "farce's", "output": "⠋⠜⠉⠑⠄⠎" }, { "input": "farces", "output": "⠋⠜⠉⠑⠎" }, { "input": "farcical", "output": "⠋⠜⠉⠊⠉â â ‡" }, { "input": "fare", "output": "⠋⠜⠑" }, { "input": "fare's", "output": "⠋⠜⠑⠄⠎" }, { "input": "fared", "output": "⠋⠜⠫" }, { "input": "fares", "output": "⠋⠜⠑⠎" }, { "input": "farewell", "output": "⠋⠜⠑⠺⠑⠇⠇" }, { "input": "farewell's", "output": "⠋⠜⠑⠺⠑⠇⠇⠄⠎" }, { "input": "farewells", "output": "⠋⠜⠑⠺⠑⠇⠇⠎" }, { "input": "farina", "output": "⠋⠜⠔â " }, { "input": "farina's", "output": "⠋⠜⠔â â „â Ž" }, { "input": "farinaceous", "output": "⠋⠜⠔â â ‰â ‘⠳⠎" }, { "input": "faring", "output": "⠋⠜⠌" }, { "input": "farm", "output": "â ‹â œâ " }, { "input": "farm's", "output": "â ‹â œâ â „â Ž" }, { "input": "farmed", "output": "â ‹â œâ â «" }, { "input": "farmer", "output": "â ‹â œâ â »" }, { "input": "farmer's", "output": "â ‹â œâ â »â „â Ž" }, { "input": "farmers", "output": "â ‹â œâ â »â Ž" }, { "input": "farmhand", "output": "â ‹â œâ â “â ¯" }, { "input": "farmhand's", "output": "â ‹â œâ â “⠯⠄⠎" }, { "input": "farmhands", "output": "â ‹â œâ â “⠯⠎" }, { "input": "farmhouse", "output": "â ‹â œâ â “⠳⠎⠑" }, { "input": "farmhouse's", "output": "â ‹â œâ â “⠳⠎⠑⠄⠎" }, { "input": "farmhouses", "output": "â ‹â œâ â “⠳⠎⠑⠎" }, { "input": "farming", "output": "â ‹â œâ â Œ" }, { "input": "farming's", "output": "â ‹â œâ â Œâ „â Ž" }, { "input": "farmland", "output": "â ‹â œâ â ‡â ¯" }, { "input": "farmland's", "output": "â ‹â œâ â ‡â ¯â „â Ž" }, { "input": "farms", "output": "â ‹â œâ â Ž" }, { "input": "farmyard", "output": "â ‹â œâ â ½â œâ ™" }, { "input": "farmyard's", "output": "â ‹â œâ â ½â œâ ™â „â Ž" }, { "input": "farmyards", "output": "â ‹â œâ â ½â œâ ™â Ž" }, { "input": "faro", "output": "⠋⠜⠕" }, { "input": "faro's", "output": "⠋⠜⠕⠄⠎" }, { "input": "farrow", "output": "⠋⠜⠗⠪" }, { "input": "farrow's", "output": "⠋⠜⠗⠪⠄⠎" }, { "input": "farrowed", "output": "⠋⠜⠗⠪⠫" }, { "input": "farrowing", "output": "⠋⠜⠗⠪⠌" }, { "input": "farrows", "output": "⠋⠜⠗⠪⠎" }, { "input": "farseeing", "output": "⠋⠜⠎⠑⠑⠌" }, { "input": "farsighted", "output": "⠋⠜⠎⠊⠣⠞⠫" }, { "input": "farsightedness", "output": "⠋⠜⠎⠊⠣⠞⠫⠰⠎" }, { "input": "farsightedness's", "output": "⠋⠜⠎⠊⠣⠞⠫⠰⠎⠄⠎" }, { "input": "fart", "output": "⠋⠜⠞" }, { "input": "fart's", "output": "⠋⠜⠞⠄⠎" }, { "input": "farted", "output": "⠋⠜⠞⠫" }, { "input": "farther", "output": "⠋⠜⠮⠗" }, { "input": "farthermost", "output": "⠋⠜⠮⠗â â •â Œ" }, { "input": "farthest", "output": "⠋⠜⠮⠌" }, { "input": "farthing", "output": "⠋⠜⠹⠌" }, { "input": "farthing's", "output": "⠋⠜⠹⠌⠄⠎" }, { "input": "farthings", "output": "⠋⠜⠹⠌⠎" }, { "input": "farting", "output": "⠋⠜⠞⠌" }, { "input": "farts", "output": "⠋⠜⠞⠎" }, { "input": "fascicle", "output": "â ‹â â Žâ ‰â Šâ ‰â ‡â ‘" }, { "input": "fascicle's", "output": "â ‹â â Žâ ‰â Šâ ‰â ‡â ‘â „â Ž" }, { "input": "fascicles", "output": "â ‹â â Žâ ‰â Šâ ‰â ‡â ‘â Ž" }, { "input": "fascinate", "output": "â ‹â â Žâ ‰â ”â â žâ ‘" }, { "input": "fascinated", "output": "â ‹â â Žâ ‰â ”â â žâ «" }, { "input": "fascinates", "output": "â ‹â â Žâ ‰â ”â â žâ ‘â Ž" }, { "input": "fascinating", "output": "â ‹â â Žâ ‰â ”â â žâ Œ" }, { "input": "fascination", "output": "â ‹â â Žâ ‰â ”â  â " }, { "input": "fascination's", "output": "â ‹â â Žâ ‰â ”â  â â „â Ž" }, { "input": "fascinations", "output": "â ‹â â Žâ ‰â ”â  â â Ž" }, { "input": "fascism", "output": "â ‹â â Žâ ‰â Šâ Žâ " }, { "input": "fascism's", "output": "â ‹â â Žâ ‰â Šâ Žâ â „â Ž" }, { "input": "fascist", "output": "â ‹â â Žâ ‰â Šâ Œ" }, { "input": "fascist's", "output": "â ‹â â Žâ ‰â Šâ Œâ „â Ž" }, { "input": "fascistic", "output": "â ‹â â Žâ ‰â Šâ Œâ Šâ ‰" }, { "input": "fascists", "output": "â ‹â â Žâ ‰â Šâ Œâ Ž" }, { "input": "fashion", "output": "â ‹â â ©â Šâ •â " }, { "input": "fashion's", "output": "â ‹â â ©â Šâ •â â „â Ž" }, { "input": "fashionable", "output": "â ‹â â ©â Šâ •â â â ¼" }, { "input": "fashionably", "output": "â ‹â â ©â Šâ •â â â ƒâ ‡â ½" }, { "input": "fashioned", "output": "â ‹â â ©â Šâ •â â «" }, { "input": "fashioner", "output": "â ‹â â ©â Šâ •â â »" }, { "input": "fashioner's", "output": "â ‹â â ©â Šâ •â â »â „â Ž" }, { "input": "fashioners", "output": "â ‹â â ©â Šâ •â â »â Ž" }, { "input": "fashioning", "output": "â ‹â â ©â Šâ •â â Œ" }, { "input": "fashions", "output": "â ‹â â ©â Šâ •â â Ž" }, { "input": "fast", "output": "â ‹â â Œ" }, { "input": "fast's", "output": "â ‹â â Œâ „â Ž" }, { "input": "fastback", "output": "â ‹â â Œâ ƒâ â ‰â …" }, { "input": "fastback's", "output": "â ‹â â Œâ ƒâ â ‰â …â „â Ž" }, { "input": "fastbacks", "output": "â ‹â â Œâ ƒâ â ‰â …â Ž" }, { "input": "fasted", "output": "â ‹â â Œâ «" }, { "input": "fasten", "output": "â ‹â â Œâ ¢" }, { "input": "fastened", "output": "â ‹â â Œâ ¢â «" }, { "input": "fastener", "output": "â ‹â â Œâ ¢â »" }, { "input": "fastener's", "output": "â ‹â â Œâ ¢â »â „â Ž" }, { "input": "fasteners", "output": "â ‹â â Œâ ¢â »â Ž" }, { "input": "fastening", "output": "â ‹â â Œâ ¢â Œ" }, { "input": "fastening's", "output": "â ‹â â Œâ ¢â Œâ „â Ž" }, { "input": "fastenings", "output": "â ‹â â Œâ ¢â Œâ Ž" }, { "input": "fastens", "output": "â ‹â â Œâ ¢â Ž" }, { "input": "faster", "output": "â ‹â â Œâ »" }, { "input": "fastest", "output": "â ‹â â Œâ ‘â Œ" }, { "input": "fastidious", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Ž" }, { "input": "fastidiously", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Žâ ‡â ½" }, { "input": "fastidiousness", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Žâ °â Ž" }, { "input": "fastidiousness's", "output": "â ‹â â Œâ Šâ ™â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "fasting", "output": "â ‹â â Œâ Œ" }, { "input": "fastness", "output": "â ‹â â Œâ °â Ž" }, { "input": "fastness's", "output": "â ‹â â Œâ °â Žâ „â Ž" }, { "input": "fastnesses", "output": "â ‹â â Œâ °â Žâ ‘â Ž" }, { "input": "fasts", "output": "â ‹â â Œâ Ž" }, { "input": "fat", "output": "â ‹â â ž" }, { "input": "fat's", "output": "â ‹â â žâ „â Ž" }, { "input": "fatal", "output": "â ‹â â žâ â ‡" }, { "input": "fatalism", "output": "â ‹â â žâ â ‡â Šâ Žâ " }, { "input": "fatalism's", "output": "â ‹â â žâ â ‡â Šâ Žâ â „â Ž" }, { "input": "fatalist", "output": "â ‹â â žâ â ‡â Šâ Œ" }, { "input": "fatalist's", "output": "â ‹â â žâ â ‡â Šâ Œâ „â Ž" }, { "input": "fatalistic", "output": "â ‹â â žâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "fatalists", "output": "â ‹â â žâ â ‡â Šâ Œâ Ž" }, { "input": "fatalities", "output": "â ‹â â žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "fatality", "output": "â ‹â â žâ â ‡â °â ½" }, { "input": "fatality's", "output": "â ‹â â žâ â ‡â °â ½â „â Ž" }, { "input": "fatally", "output": "â ‹â â žâ  â ½" }, { "input": "fatback", "output": "â ‹â â žâ ƒâ â ‰â …" }, { "input": "fatback's", "output": "â ‹â â žâ ƒâ â ‰â …â „â Ž" }, { "input": "fate", "output": "â ‹â â žâ ‘" }, { "input": "fate's", "output": "â ‹â â žâ ‘â „â Ž" }, { "input": "fated", "output": "â ‹â â žâ «" }, { "input": "fateful", "output": "â ‹â â žâ ‘â °â ‡" }, { "input": "fatefully", "output": "â ‹â â žâ ‘⠰⠇⠇⠽" }, { "input": "fatefulness", "output": "â ‹â â žâ ‘⠰⠇⠰⠎" }, { "input": "fatefulness's", "output": "â ‹â â žâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "fates", "output": "â ‹â â žâ ‘â Ž" }, { "input": "fathead", "output": "â ‹â â žâ “â ‚â ™" }, { "input": "fathead's", "output": "â ‹â â žâ “⠂⠙⠄⠎" }, { "input": "fatheads", "output": "â ‹â â žâ “⠂⠙⠎" }, { "input": "father", "output": "â â ‹" }, { "input": "father's", "output": "â â ‹â „â Ž" }, { "input": "fathered", "output": "â â ‹â «" }, { "input": "fatherhood", "output": "â â ‹â “â •â •â ™" }, { "input": "fatherhood's", "output": "â â ‹â “⠕⠕⠙⠄⠎" }, { "input": "fathering", "output": "â â ‹â Œ" }, { "input": "fatherland", "output": "â â ‹â ‡â ¯" }, { "input": "fatherland's", "output": "â â ‹â ‡â ¯â „â Ž" }, { "input": "fatherlands", "output": "â â ‹â ‡â ¯â Ž" }, { "input": "fatherless", "output": "â â ‹â ¨â Ž" }, { "input": "fatherly", "output": "â â ‹â ‡â ½" }, { "input": "fathers", "output": "â â ‹â Ž" }, { "input": "fathom", "output": "â ‹â â ¹â •â " }, { "input": "fathom's", "output": "â ‹â â ¹â •â â „â Ž" }, { "input": "fathomable", "output": "â ‹â â ¹â •â â â ¼" }, { "input": "fathomed", "output": "â ‹â â ¹â •â â «" }, { "input": "fathoming", "output": "â ‹â â ¹â •â â Œ" }, { "input": "fathomless", "output": "â ‹â â ¹â •â â ¨â Ž" }, { "input": "fathoms", "output": "â ‹â â ¹â •â â Ž" }, { "input": "fatigue", "output": "â ‹â â žâ Šâ ›â ¥â ‘" }, { "input": "fatigue's", "output": "â ‹â â žâ Šâ ›â ¥â ‘â „â Ž" }, { "input": "fatigued", "output": "â ‹â â žâ Šâ ›â ¥â «" }, { "input": "fatigues", "output": "â ‹â â žâ Šâ ›â ¥â ‘â Ž" }, { "input": "fatigues's", "output": "â ‹â â žâ Šâ ›â ¥â ‘â Žâ „â Ž" }, { "input": "fatiguing", "output": "â ‹â â žâ Šâ ›â ¥â Œ" }, { "input": "fating", "output": "â ‹â â žâ Œ" }, { "input": "fatness", "output": "â ‹â â žâ °â Ž" }, { "input": "fatness's", "output": "â ‹â â žâ °â Žâ „â Ž" }, { "input": "fats", "output": "â ‹â â žâ Ž" }, { "input": "fatten", "output": "â ‹â â žâ žâ ¢" }, { "input": "fattened", "output": "â ‹â â žâ žâ ¢â «" }, { "input": "fattening", "output": "â ‹â â žâ žâ ¢â Œ" }, { "input": "fattens", "output": "â ‹â â žâ žâ ¢â Ž" }, { "input": "fatter", "output": "â ‹â â žâ žâ »" }, { "input": "fattest", "output": "â ‹â â žâ žâ ‘â Œ" }, { "input": "fattier", "output": "â ‹â â žâ žâ Šâ »" }, { "input": "fatties", "output": "â ‹â â žâ žâ Šâ ‘â Ž" }, { "input": "fattiest", "output": "â ‹â â žâ žâ Šâ ‘â Œ" }, { "input": "fattiness", "output": "â ‹â â žâ žâ Šâ °â Ž" }, { "input": "fattiness's", "output": "â ‹â â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "fatty", "output": "â ‹â â žâ žâ ½" }, { "input": "fatty's", "output": "â ‹â â žâ žâ ½â „â Ž" }, { "input": "fatuity", "output": "â ‹â â žâ ¥â °â ½" }, { "input": "fatuity's", "output": "â ‹â â žâ ¥â °â ½â „â Ž" }, { "input": "fatuous", "output": "â ‹â â žâ ¥â ³â Ž" }, { "input": "fatuously", "output": "â ‹â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "fatuousness", "output": "â ‹â â žâ ¥â ³â Žâ °â Ž" }, { "input": "fatuousness's", "output": "â ‹â â žâ ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "faucet", "output": "â ‹â â ¥â ‰â ‘â ž" }, { "input": "faucet's", "output": "â ‹â â ¥â ‰â ‘â žâ „â Ž" }, { "input": "faucets", "output": "â ‹â â ¥â ‰â ‘â žâ Ž" }, { "input": "fault", "output": "â ‹â â ¥â ‡â ž" }, { "input": "fault's", "output": "â ‹â â ¥â ‡â žâ „â Ž" }, { "input": "faulted", "output": "â ‹â â ¥â ‡â žâ «" }, { "input": "faultfinder", "output": "â ‹â â ¥â ‡â žâ ‹â ”⠙⠻" }, { "input": "faultfinder's", "output": "â ‹â â ¥â ‡â žâ ‹â ”⠙⠻⠄⠎" }, { "input": "faultfinders", "output": "â ‹â â ¥â ‡â žâ ‹â ”⠙⠻⠎" }, { "input": "faultfinding", "output": "â ‹â â ¥â ‡â žâ ‹â ”⠙⠌" }, { "input": "faultfinding's", "output": "â ‹â â ¥â ‡â žâ ‹â ”⠙⠌⠄⠎" }, { "input": "faultier", "output": "â ‹â â ¥â ‡â žâ Šâ »" }, { "input": "faultiest", "output": "â ‹â â ¥â ‡â žâ Šâ ‘â Œ" }, { "input": "faultily", "output": "â ‹â â ¥â ‡â žâ Šâ ‡â ½" }, { "input": "faultiness", "output": "â ‹â â ¥â ‡â žâ Šâ °â Ž" }, { "input": "faultiness's", "output": "â ‹â â ¥â ‡â žâ Šâ °â Žâ „â Ž" }, { "input": "faulting", "output": "â ‹â â ¥â ‡â žâ Œ" }, { "input": "faultless", "output": "â ‹â â ¥â ‡â žâ ¨â Ž" }, { "input": "faultlessly", "output": "â ‹â â ¥â ‡â žâ ¨â Žâ ‡â ½" }, { "input": "faultlessness", "output": "â ‹â â ¥â ‡â žâ ¨â Žâ °â Ž" }, { "input": "faultlessness's", "output": "â ‹â â ¥â ‡â žâ ¨â Žâ °â Žâ „â Ž" }, { "input": "faults", "output": "â ‹â â ¥â ‡â žâ Ž" }, { "input": "faulty", "output": "â ‹â â ¥â ‡â žâ ½" }, { "input": "faun", "output": "â ‹â â ¥â " }, { "input": "faun's", "output": "â ‹â â ¥â â „â Ž" }, { "input": "fauna", "output": "â ‹â â ¥â â " }, { "input": "fauna's", "output": "â ‹â â ¥â â â „â Ž" }, { "input": "faunas", "output": "â ‹â â ¥â â â Ž" }, { "input": "fauns", "output": "â ‹â â ¥â â Ž" }, { "input": "fauvism", "output": "â ‹â â ¥â §â Šâ Žâ " }, { "input": "fauvism's", "output": "â ‹â â ¥â §â Šâ Žâ â „â Ž" }, { "input": "fauvist", "output": "â ‹â â ¥â §â Šâ Œ" }, { "input": "fauvist's", "output": "â ‹â â ¥â §â Šâ Œâ „â Ž" }, { "input": "fauvists", "output": "â ‹â â ¥â §â Šâ Œâ Ž" }, { "input": "favor", "output": "â ‹â â §â •â —" }, { "input": "favor's", "output": "â ‹â â §â •â —â „â Ž" }, { "input": "favorable", "output": "â ‹â â §â •â —â â ¼" }, { "input": "favorably", "output": "â ‹â â §â •â —â â ƒâ ‡â ½" }, { "input": "favored", "output": "â ‹â â §â •â —â «" }, { "input": "favoring", "output": "â ‹â â §â •â —â Œ" }, { "input": "favorite", "output": "â ‹â â §â •â —â Šâ žâ ‘" }, { "input": "favorite's", "output": "â ‹â â §â •â —â Šâ žâ ‘â „â Ž" }, { "input": "favorites", "output": "â ‹â â §â •â —â Šâ žâ ‘â Ž" }, { "input": "favoritism", "output": "â ‹â â §â •â —â Šâ žâ Šâ Žâ " }, { "input": "favoritism's", "output": "â ‹â â §â •â —â Šâ žâ Šâ Žâ â „â Ž" }, { "input": "favors", "output": "â ‹â â §â •â —â Ž" }, { "input": "fawn", "output": "â ‹â â ºâ " }, { "input": "fawn's", "output": "â ‹â â ºâ â „â Ž" }, { "input": "fawned", "output": "â ‹â â ºâ â «" }, { "input": "fawner", "output": "â ‹â â ºâ â »" }, { "input": "fawner's", "output": "â ‹â â ºâ â »â „â Ž" }, { "input": "fawners", "output": "â ‹â â ºâ â »â Ž" }, { "input": "fawning", "output": "â ‹â â ºâ â Œ" }, { "input": "fawns", "output": "â ‹â â ºâ â Ž" }, { "input": "fax", "output": "â ‹â â ­" }, { "input": "fax's", "output": "â ‹â â ­â „â Ž" }, { "input": "faxed", "output": "â ‹â â ­â «" }, { "input": "faxes", "output": "â ‹â â ­â ‘â Ž" }, { "input": "faxing", "output": "â ‹â â ­â Œ" }, { "input": "fay", "output": "â ‹â â ½" }, { "input": "fay's", "output": "â ‹â â ½â „â Ž" }, { "input": "fayer", "output": "â ‹â â ½â »" }, { "input": "fayest", "output": "â ‹â â ½â ‘â Œ" }, { "input": "fays", "output": "â ‹â â ½â Ž" }, { "input": "faze", "output": "â ‹â â µâ ‘" }, { "input": "fazed", "output": "â ‹â â µâ «" }, { "input": "fazes", "output": "â ‹â â µâ ‘â Ž" }, { "input": "fazing", "output": "â ‹â â µâ Œ" }, { "input": "fealty", "output": "⠋⠂⠇⠞⠽" }, { "input": "fealty's", "output": "⠋⠂⠇⠞⠽⠄⠎" }, { "input": "fear", "output": "â ‹â ‘â œ" }, { "input": "fear's", "output": "⠋⠑⠜⠄⠎" }, { "input": "feared", "output": "⠋⠑⠜⠫" }, { "input": "fearful", "output": "⠋⠑⠜⠰⠇" }, { "input": "fearfully", "output": "⠋⠑⠜⠰⠇⠇⠽" }, { "input": "fearfulness", "output": "⠋⠑⠜⠰⠇⠰⠎" }, { "input": "fearfulness's", "output": "⠋⠑⠜⠰⠇⠰⠎⠄⠎" }, { "input": "fearing", "output": "⠋⠑⠜⠌" }, { "input": "fearless", "output": "⠋⠑⠜⠨⠎" }, { "input": "fearlessly", "output": "⠋⠑⠜⠨⠎⠇⠽" }, { "input": "fearlessness", "output": "⠋⠑⠜⠨⠎⠰⠎" }, { "input": "fearlessness's", "output": "⠋⠑⠜⠨⠎⠰⠎⠄⠎" }, { "input": "fears", "output": "⠋⠑⠜⠎" }, { "input": "fearsome", "output": "â ‹â ‘â œâ â Ž" }, { "input": "feasibility", "output": "⠋⠂⠎⠊⠃⠊⠇⠰⠽" }, { "input": "feasibility's", "output": "⠋⠂⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "feasible", "output": "â ‹â ‚â Žâ Šâ ¼" }, { "input": "feasibly", "output": "⠋⠂⠎⠊⠃⠇⠽" }, { "input": "feast", "output": "â ‹â ‚â Œ" }, { "input": "feast's", "output": "⠋⠂⠌⠄⠎" }, { "input": "feasted", "output": "⠋⠂⠌⠫" }, { "input": "feasting", "output": "⠋⠂⠌⠌" }, { "input": "feasts", "output": "⠋⠂⠌⠎" }, { "input": "feat", "output": "â ‹â ‚â ž" }, { "input": "feat's", "output": "â ‹â ‚â žâ „â Ž" }, { "input": "feather", "output": "⠋⠂⠮⠗" }, { "input": "feather's", "output": "⠋⠂⠮⠗⠄⠎" }, { "input": "featherbedding", "output": "⠋⠂⠮⠗⠃⠫⠙⠌" }, { "input": "featherbedding's", "output": "⠋⠂⠮⠗⠃⠫⠙⠌⠄⠎" }, { "input": "feathered", "output": "⠋⠂⠮⠗⠫" }, { "input": "featherier", "output": "⠋⠂⠮⠗⠊⠻" }, { "input": "featheriest", "output": "⠋⠂⠮⠗⠊⠑⠌" }, { "input": "feathering", "output": "⠋⠂⠮⠗⠌" }, { "input": "featherless", "output": "⠋⠂⠮⠗⠨⠎" }, { "input": "feathers", "output": "⠋⠂⠮⠗⠎" }, { "input": "featherweight", "output": "⠋⠂⠮⠗⠺⠑⠊⠣⠞" }, { "input": "featherweight's", "output": "⠋⠂⠮⠗⠺⠑⠊⠣⠞⠄⠎" }, { "input": "featherweights", "output": "⠋⠂⠮⠗⠺⠑⠊⠣⠞⠎" }, { "input": "feathery", "output": "⠋⠂⠮⠗⠽" }, { "input": "feats", "output": "â ‹â ‚â žâ Ž" }, { "input": "feature", "output": "⠋⠂⠞⠥⠗⠑" }, { "input": "feature's", "output": "⠋⠂⠞⠥⠗⠑⠄⠎" }, { "input": "featured", "output": "⠋⠂⠞⠥⠗⠫" }, { "input": "featureless", "output": "⠋⠂⠞⠥⠗⠑⠨⠎" }, { "input": "features", "output": "⠋⠂⠞⠥⠗⠑⠎" }, { "input": "featuring", "output": "⠋⠂⠞⠥⠗⠌" }, { "input": "febrile", "output": "⠋⠑⠃⠗⠊⠇⠑" }, { "input": "fecal", "output": "â ‹â ‘â ‰â â ‡" }, { "input": "feces", "output": "⠋⠑⠉⠑⠎" }, { "input": "feces's", "output": "⠋⠑⠉⠑⠎⠄⠎" }, { "input": "feckless", "output": "⠋⠑⠉⠅⠨⠎" }, { "input": "fecklessly", "output": "⠋⠑⠉⠅⠨⠎⠇⠽" }, { "input": "fecund", "output": "⠋⠑⠉⠥â â ™" }, { "input": "fecundate", "output": "⠋⠑⠉⠥â â ™â â žâ ‘" }, { "input": "fecundated", "output": "⠋⠑⠉⠥â â ™â â žâ «" }, { "input": "fecundates", "output": "⠋⠑⠉⠥â â ™â â žâ ‘â Ž" }, { "input": "fecundating", "output": "⠋⠑⠉⠥â â ™â â žâ Œ" }, { "input": "fecundation", "output": "⠋⠑⠉⠥â â ™â  â " }, { "input": "fecundation's", "output": "⠋⠑⠉⠥â â ™â  â â „â Ž" }, { "input": "fecundity", "output": "⠋⠑⠉⠥â â ™â °â ½" }, { "input": "fecundity's", "output": "⠋⠑⠉⠥â â ™â °â ½â „â Ž" }, { "input": "fed", "output": "â ‹â «" }, { "input": "fed's", "output": "â ‹â «â „â Ž" }, { "input": "federal", "output": "â ‹â «â »â â ‡" }, { "input": "federal's", "output": "â ‹â «â »â â ‡â „â Ž" }, { "input": "federalism", "output": "â ‹â «â »â â ‡â Šâ Žâ " }, { "input": "federalism's", "output": "â ‹â «â »â â ‡â Šâ Žâ â „â Ž" }, { "input": "federalist", "output": "â ‹â «â »â â ‡â Šâ Œ" }, { "input": "federalist's", "output": "â ‹â «â »â â ‡â Šâ Œâ „â Ž" }, { "input": "federalists", "output": "â ‹â «â »â â ‡â Šâ Œâ Ž" }, { "input": "federalization", "output": "â ‹â «â »â â ‡â Šâ µâ  â " }, { "input": "federalization's", "output": "â ‹â «â »â â ‡â Šâ µâ  â â „â Ž" }, { "input": "federalize", "output": "â ‹â «â »â â ‡â Šâ µâ ‘" }, { "input": "federalized", "output": "â ‹â «â »â â ‡â Šâ µâ «" }, { "input": "federalizes", "output": "â ‹â «â »â â ‡â Šâ µâ ‘â Ž" }, { "input": "federalizing", "output": "â ‹â «â »â â ‡â Šâ µâ Œ" }, { "input": "federally", "output": "⠋⠫⠻⠠⠽" }, { "input": "federals", "output": "â ‹â «â »â â ‡â Ž" }, { "input": "federate", "output": "â ‹â «â »â â žâ ‘" }, { "input": "federated", "output": "â ‹â «â »â â žâ «" }, { "input": "federates", "output": "â ‹â «â »â â žâ ‘â Ž" }, { "input": "federating", "output": "â ‹â «â »â â žâ Œ" }, { "input": "federation", "output": "⠋⠫⠻⠠â " }, { "input": "federation's", "output": "⠋⠫⠻⠠â â „â Ž" }, { "input": "federations", "output": "⠋⠫⠻⠠â â Ž" }, { "input": "fedora", "output": "â ‹â «â •â —â " }, { "input": "fedora's", "output": "â ‹â «â •â —â â „â Ž" }, { "input": "fedoras", "output": "â ‹â «â •â —â â Ž" }, { "input": "feds", "output": "â ‹â «â Ž" }, { "input": "fee", "output": "â ‹â ‘â ‘" }, { "input": "fee's", "output": "â ‹â ‘â ‘â „â Ž" }, { "input": "feeble", "output": "â ‹â ‘â ‘â ¼" }, { "input": "feebleness", "output": "⠋⠑⠑⠼⠰⠎" }, { "input": "feebleness's", "output": "⠋⠑⠑⠼⠰⠎⠄⠎" }, { "input": "feebler", "output": "⠋⠑⠑⠼⠗" }, { "input": "feeblest", "output": "⠋⠑⠑⠼⠌" }, { "input": "feebly", "output": "⠋⠑⠑⠃⠇⠽" }, { "input": "feed", "output": "â ‹â ‘â «" }, { "input": "feed's", "output": "â ‹â ‘â «â „â Ž" }, { "input": "feedback", "output": "â ‹â ‘â «â ƒâ â ‰â …" }, { "input": "feedback's", "output": "â ‹â ‘â «â ƒâ â ‰â …â „â Ž" }, { "input": "feedbag", "output": "â ‹â ‘â «â ƒâ â ›" }, { "input": "feedbag's", "output": "â ‹â ‘â «â ƒâ â ›â „â Ž" }, { "input": "feedbags", "output": "â ‹â ‘â «â ƒâ â ›â Ž" }, { "input": "feeder", "output": "â ‹â ‘â «â »" }, { "input": "feeder's", "output": "⠋⠑⠫⠻⠄⠎" }, { "input": "feeders", "output": "⠋⠑⠫⠻⠎" }, { "input": "feeding", "output": "â ‹â ‘â «â Œ" }, { "input": "feeding's", "output": "⠋⠑⠫⠌⠄⠎" }, { "input": "feedings", "output": "⠋⠑⠫⠌⠎" }, { "input": "feedlot", "output": "⠋⠑⠫⠇⠕⠞" }, { "input": "feedlot's", "output": "⠋⠑⠫⠇⠕⠞⠄⠎" }, { "input": "feedlots", "output": "⠋⠑⠫⠇⠕⠞⠎" }, { "input": "feeds", "output": "â ‹â ‘â «â Ž" }, { "input": "feel", "output": "â ‹â ‘â ‘â ‡" }, { "input": "feel's", "output": "⠋⠑⠑⠇⠄⠎" }, { "input": "feeler", "output": "⠋⠑⠑⠇⠻" }, { "input": "feeler's", "output": "⠋⠑⠑⠇⠻⠄⠎" }, { "input": "feelers", "output": "⠋⠑⠑⠇⠻⠎" }, { "input": "feeling", "output": "⠋⠑⠑⠇⠌" }, { "input": "feeling's", "output": "⠋⠑⠑⠇⠌⠄⠎" }, { "input": "feelingly", "output": "⠋⠑⠑⠇⠌⠇⠽" }, { "input": "feelings", "output": "⠋⠑⠑⠇⠌⠎" }, { "input": "feels", "output": "⠋⠑⠑⠇⠎" }, { "input": "fees", "output": "â ‹â ‘â ‘â Ž" }, { "input": "feet", "output": "â ‹â ‘â ‘â ž" }, { "input": "feign", "output": "â ‹â ‘â Šâ ›â " }, { "input": "feigned", "output": "â ‹â ‘â Šâ ›â â «" }, { "input": "feigning", "output": "â ‹â ‘â Šâ ›â â Œ" }, { "input": "feigns", "output": "â ‹â ‘â Šâ ›â â Ž" }, { "input": "feint", "output": "⠋⠑⠔⠞" }, { "input": "feint's", "output": "⠋⠑⠔⠞⠄⠎" }, { "input": "feinted", "output": "⠋⠑⠔⠞⠫" }, { "input": "feinting", "output": "⠋⠑⠔⠞⠌" }, { "input": "feints", "output": "⠋⠑⠔⠞⠎" }, { "input": "feistier", "output": "⠋⠑⠊⠌⠊⠻" }, { "input": "feistiest", "output": "⠋⠑⠊⠌⠊⠑⠌" }, { "input": "feisty", "output": "⠋⠑⠊⠌⠽" }, { "input": "feldspar", "output": "⠋⠑⠇⠙⠎â â œ" }, { "input": "feldspar's", "output": "⠋⠑⠇⠙⠎â â œâ „â Ž" }, { "input": "felicitate", "output": "⠋⠑⠇⠊⠉⠊⠞â â žâ ‘" }, { "input": "felicitated", "output": "⠋⠑⠇⠊⠉⠊⠞â â žâ «" }, { "input": "felicitates", "output": "⠋⠑⠇⠊⠉⠊⠞â â žâ ‘â Ž" }, { "input": "felicitating", "output": "⠋⠑⠇⠊⠉⠊⠞â â žâ Œ" }, { "input": "felicities", "output": "⠋⠑⠇⠊⠉⠊⠞⠊⠑⠎" }, { "input": "felicitous", "output": "⠋⠑⠇⠊⠉⠊⠞⠳⠎" }, { "input": "felicity", "output": "⠋⠑⠇⠊⠉⠰⠽" }, { "input": "felicity's", "output": "⠋⠑⠇⠊⠉⠰⠽⠄⠎" }, { "input": "feline", "output": "⠋⠑⠇⠔⠑" }, { "input": "feline's", "output": "⠋⠑⠇⠔⠑⠄⠎" }, { "input": "felines", "output": "⠋⠑⠇⠔⠑⠎" }, { "input": "fell", "output": "⠋⠑⠇⠇" }, { "input": "fell's", "output": "⠋⠑⠇⠇⠄⠎" }, { "input": "fellatio", "output": "⠋⠑⠇⠇â â žâ Šâ •" }, { "input": "fellatio's", "output": "⠋⠑⠇⠇â â žâ Šâ •â „â Ž" }, { "input": "felled", "output": "⠋⠑⠇⠇⠫" }, { "input": "feller", "output": "⠋⠑⠇⠇⠻" }, { "input": "fellest", "output": "⠋⠑⠇⠇⠑⠌" }, { "input": "felling", "output": "⠋⠑⠇⠇⠌" }, { "input": "fellow", "output": "⠋⠑⠇⠇⠪" }, { "input": "fellow's", "output": "⠋⠑⠇⠇⠪⠄⠎" }, { "input": "fellowman", "output": "⠋⠑⠇⠇⠪â â â " }, { "input": "fellowman's", "output": "⠋⠑⠇⠇⠪â â â â „â Ž" }, { "input": "fellowmen", "output": "⠋⠑⠇⠇⠪â â ¢" }, { "input": "fellows", "output": "⠋⠑⠇⠇⠪⠎" }, { "input": "fellowship", "output": "⠋⠑⠇⠇⠪⠩⠊â " }, { "input": "fellowship's", "output": "⠋⠑⠇⠇⠪⠩⠊â â „â Ž" }, { "input": "fellowships", "output": "⠋⠑⠇⠇⠪⠩⠊â â Ž" }, { "input": "fells", "output": "⠋⠑⠇⠇⠎" }, { "input": "felon", "output": "⠋⠑⠇⠕â " }, { "input": "felon's", "output": "⠋⠑⠇⠕â â „â Ž" }, { "input": "felonies", "output": "⠋⠑⠇⠕â â Šâ ‘â Ž" }, { "input": "felonious", "output": "⠋⠑⠇⠕â â Šâ ³â Ž" }, { "input": "felons", "output": "⠋⠑⠇⠕â â Ž" }, { "input": "felony", "output": "⠋⠑⠇⠕â â ½" }, { "input": "felony's", "output": "⠋⠑⠇⠕â â ½â „â Ž" }, { "input": "felt", "output": "⠋⠑⠇⠞" }, { "input": "felt's", "output": "⠋⠑⠇⠞⠄⠎" }, { "input": "felted", "output": "⠋⠑⠇⠞⠫" }, { "input": "felting", "output": "⠋⠑⠇⠞⠌" }, { "input": "felts", "output": "⠋⠑⠇⠞⠎" }, { "input": "female", "output": "â ‹â ‘â â â ‡â ‘" }, { "input": "female's", "output": "â ‹â ‘â â â ‡â ‘â „â Ž" }, { "input": "femaleness's", "output": "â ‹â ‘â â â ‡â ‘â °â Žâ „â Ž" }, { "input": "females", "output": "â ‹â ‘â â â ‡â ‘â Ž" }, { "input": "feminine", "output": "â ‹â ‘â â ”⠔⠑" }, { "input": "feminine's", "output": "â ‹â ‘â â ”⠔⠑⠄⠎" }, { "input": "femininely", "output": "â ‹â ‘â â ”⠔⠑⠇⠽" }, { "input": "feminines", "output": "â ‹â ‘â â ”⠔⠑⠎" }, { "input": "femininity", "output": "â ‹â ‘â â ”⠔⠰⠽" }, { "input": "femininity's", "output": "â ‹â ‘â â ”⠔⠰⠽⠄⠎" }, { "input": "feminism", "output": "â ‹â ‘â â ”â Šâ Žâ " }, { "input": "feminism's", "output": "â ‹â ‘â â ”â Šâ Žâ â „â Ž" }, { "input": "feminist", "output": "â ‹â ‘â â ”â Šâ Œ" }, { "input": "feminist's", "output": "â ‹â ‘â â ”⠊⠌⠄⠎" }, { "input": "feminists", "output": "â ‹â ‘â â ”⠊⠌⠎" }, { "input": "feminize", "output": "â ‹â ‘â â ”⠊⠵⠑" }, { "input": "feminized", "output": "â ‹â ‘â â ”⠊⠵⠫" }, { "input": "feminizes", "output": "â ‹â ‘â â ”⠊⠵⠑⠎" }, { "input": "feminizing", "output": "â ‹â ‘â â ”⠊⠵⠌" }, { "input": "femoral", "output": "â ‹â ‘â â •â —â â ‡" }, { "input": "femur", "output": "â ‹â ‘â â ¥â —" }, { "input": "femur's", "output": "â ‹â ‘â â ¥â —â „â Ž" }, { "input": "femurs", "output": "â ‹â ‘â â ¥â —â Ž" }, { "input": "fen", "output": "â ‹â ¢" }, { "input": "fen's", "output": "⠋⠢⠄⠎" }, { "input": "fence", "output": "â ‹â °â ‘" }, { "input": "fence's", "output": "â ‹â °â ‘â „â Ž" }, { "input": "fenced", "output": "â ‹â °â ‘â ™" }, { "input": "fencer", "output": "â ‹â °â ‘â —" }, { "input": "fencer's", "output": "â ‹â °â ‘â —â „â Ž" }, { "input": "fencers", "output": "â ‹â °â ‘â —â Ž" }, { "input": "fences", "output": "â ‹â °â ‘â Ž" }, { "input": "fencing", "output": "⠋⠢⠉⠌" }, { "input": "fencing's", "output": "⠋⠢⠉⠌⠄⠎" }, { "input": "fend", "output": "⠋⠢⠙" }, { "input": "fended", "output": "⠋⠢⠙⠫" }, { "input": "fender", "output": "⠋⠢⠙⠻" }, { "input": "fender's", "output": "⠋⠢⠙⠻⠄⠎" }, { "input": "fenders", "output": "⠋⠢⠙⠻⠎" }, { "input": "fending", "output": "⠋⠢⠙⠌" }, { "input": "fends", "output": "⠋⠢⠙⠎" }, { "input": "fenestration", "output": "⠋⠢⠑⠌⠗⠠â " }, { "input": "fenestration's", "output": "⠋⠢⠑⠌⠗⠠â â „â Ž" }, { "input": "fennel", "output": "â ‹â ¢â â ‘â ‡" }, { "input": "fennel's", "output": "â ‹â ¢â â ‘⠇⠄⠎" }, { "input": "fens", "output": "⠋⠢⠎" }, { "input": "fer", "output": "â ‹â »" }, { "input": "feral", "output": "â ‹â »â â ‡" }, { "input": "ferment", "output": "⠋⠻⠰⠞" }, { "input": "ferment's", "output": "⠋⠻⠰⠞⠄⠎" }, { "input": "fermentation", "output": "⠋⠻⠰⠞⠠â " }, { "input": "fermentation's", "output": "⠋⠻⠰⠞⠠â â „â Ž" }, { "input": "fermented", "output": "⠋⠻⠰⠞⠫" }, { "input": "fermenting", "output": "⠋⠻⠰⠞⠌" }, { "input": "ferments", "output": "⠋⠻⠰⠞⠎" }, { "input": "fermium", "output": "â ‹â »â â Šâ ¥â " }, { "input": "fermium's", "output": "â ‹â »â â Šâ ¥â â „â Ž" }, { "input": "fern", "output": "â ‹â »â " }, { "input": "fern's", "output": "â ‹â »â â „â Ž" }, { "input": "fernier", "output": "â ‹â »â â Šâ »" }, { "input": "ferniest", "output": "â ‹â »â â Šâ ‘â Œ" }, { "input": "ferns", "output": "â ‹â »â â Ž" }, { "input": "ferocious", "output": "⠋⠻⠕⠉⠊⠳⠎" }, { "input": "ferociously", "output": "⠋⠻⠕⠉⠊⠳⠎⠇⠽" }, { "input": "ferociousness", "output": "⠋⠻⠕⠉⠊⠳⠎⠰⠎" }, { "input": "ferociousness's", "output": "⠋⠻⠕⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "ferocity", "output": "⠋⠻⠕⠉⠰⠽" }, { "input": "ferocity's", "output": "⠋⠻⠕⠉⠰⠽⠄⠎" }, { "input": "ferret", "output": "⠋⠻⠗⠑⠞" }, { "input": "ferret's", "output": "⠋⠻⠗⠑⠞⠄⠎" }, { "input": "ferreted", "output": "⠋⠻⠗⠑⠞⠫" }, { "input": "ferreting", "output": "⠋⠻⠗⠑⠞⠌" }, { "input": "ferrets", "output": "⠋⠻⠗⠑⠞⠎" }, { "input": "ferric", "output": "⠋⠻⠗⠊⠉" }, { "input": "ferried", "output": "⠋⠻⠗⠊⠫" }, { "input": "ferries", "output": "⠋⠻⠗⠊⠑⠎" }, { "input": "ferromagnetic", "output": "⠋⠻⠗⠕â â â ›â â ‘â žâ Šâ ‰" }, { "input": "ferrous", "output": "⠋⠻⠗⠳⠎" }, { "input": "ferrule", "output": "⠋⠻⠗⠥⠇⠑" }, { "input": "ferrule's", "output": "⠋⠻⠗⠥⠇⠑⠄⠎" }, { "input": "ferrules", "output": "⠋⠻⠗⠥⠇⠑⠎" }, { "input": "ferry", "output": "⠋⠻⠗⠽" }, { "input": "ferry's", "output": "⠋⠻⠗⠽⠄⠎" }, { "input": "ferryboat", "output": "⠋⠻⠗⠽⠃⠕â â ž" }, { "input": "ferryboat's", "output": "⠋⠻⠗⠽⠃⠕â â žâ „â Ž" }, { "input": "ferryboats", "output": "⠋⠻⠗⠽⠃⠕â â žâ Ž" }, { "input": "ferrying", "output": "⠋⠻⠗⠽⠌" }, { "input": "fertile", "output": "⠋⠻⠞⠊⠇⠑" }, { "input": "fertility", "output": "⠋⠻⠞⠊⠇⠰⠽" }, { "input": "fertility's", "output": "⠋⠻⠞⠊⠇⠰⠽⠄⠎" }, { "input": "fertilization", "output": "⠋⠻⠞⠊⠇⠊⠵⠠â " }, { "input": "fertilization's", "output": "⠋⠻⠞⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "fertilize", "output": "⠋⠻⠞⠊⠇⠊⠵⠑" }, { "input": "fertilized", "output": "⠋⠻⠞⠊⠇⠊⠵⠫" }, { "input": "fertilizer", "output": "⠋⠻⠞⠊⠇⠊⠵⠻" }, { "input": "fertilizer's", "output": "⠋⠻⠞⠊⠇⠊⠵⠻⠄⠎" }, { "input": "fertilizers", "output": "⠋⠻⠞⠊⠇⠊⠵⠻⠎" }, { "input": "fertilizes", "output": "⠋⠻⠞⠊⠇⠊⠵⠑⠎" }, { "input": "fertilizing", "output": "⠋⠻⠞⠊⠇⠊⠵⠌" }, { "input": "ferule", "output": "⠋⠻⠥⠇⠑" }, { "input": "ferule's", "output": "⠋⠻⠥⠇⠑⠄⠎" }, { "input": "ferules", "output": "⠋⠻⠥⠇⠑⠎" }, { "input": "fervency", "output": "⠋⠻⠧⠢⠉⠽" }, { "input": "fervency's", "output": "⠋⠻⠧⠢⠉⠽⠄⠎" }, { "input": "fervent", "output": "⠋⠻⠧⠢⠞" }, { "input": "fervently", "output": "⠋⠻⠧⠢⠞⠇⠽" }, { "input": "fervid", "output": "⠋⠻⠧⠊⠙" }, { "input": "fervidly", "output": "⠋⠻⠧⠊⠙⠇⠽" }, { "input": "fervor", "output": "⠋⠻⠧⠕⠗" }, { "input": "fervor's", "output": "⠋⠻⠧⠕⠗⠄⠎" }, { "input": "fest", "output": "â ‹â ‘â Œ" }, { "input": "fest's", "output": "⠋⠑⠌⠄⠎" }, { "input": "festal", "output": "â ‹â ‘â Œâ â ‡" }, { "input": "fester", "output": "⠋⠑⠌⠻" }, { "input": "fester's", "output": "⠋⠑⠌⠻⠄⠎" }, { "input": "festered", "output": "⠋⠑⠌⠻⠫" }, { "input": "festering", "output": "⠋⠑⠌⠻⠌" }, { "input": "festers", "output": "⠋⠑⠌⠻⠎" }, { "input": "festival", "output": "⠋⠑⠌⠊⠧â â ‡" }, { "input": "festival's", "output": "⠋⠑⠌⠊⠧â â ‡â „â Ž" }, { "input": "festivals", "output": "⠋⠑⠌⠊⠧â â ‡â Ž" }, { "input": "festive", "output": "⠋⠑⠌⠊⠧⠑" }, { "input": "festively", "output": "⠋⠑⠌⠊⠧⠑⠇⠽" }, { "input": "festiveness", "output": "⠋⠑⠌⠊⠧⠑⠰⠎" }, { "input": "festiveness's", "output": "⠋⠑⠌⠊⠧⠑⠰⠎⠄⠎" }, { "input": "festivities", "output": "⠋⠑⠌⠊⠧⠊⠞⠊⠑⠎" }, { "input": "festivity", "output": "⠋⠑⠌⠊⠧⠰⠽" }, { "input": "festivity's", "output": "⠋⠑⠌⠊⠧⠰⠽⠄⠎" }, { "input": "festoon", "output": "⠋⠑⠌⠕⠕â " }, { "input": "festoon's", "output": "⠋⠑⠌⠕⠕â â „â Ž" }, { "input": "festooned", "output": "⠋⠑⠌⠕⠕â â «" }, { "input": "festooning", "output": "⠋⠑⠌⠕⠕â â Œ" }, { "input": "festoons", "output": "⠋⠑⠌⠕⠕â â Ž" }, { "input": "fests", "output": "⠋⠑⠌⠎" }, { "input": "feta", "output": "â ‹â ‘â žâ " }, { "input": "feta's", "output": "â ‹â ‘â žâ â „â Ž" }, { "input": "fetal", "output": "â ‹â ‘â žâ â ‡" }, { "input": "fetch", "output": "â ‹â ‘â žâ ¡" }, { "input": "fetched", "output": "â ‹â ‘â žâ ¡â «" }, { "input": "fetcher", "output": "â ‹â ‘â žâ ¡â »" }, { "input": "fetcher's", "output": "⠋⠑⠞⠡⠻⠄⠎" }, { "input": "fetchers", "output": "⠋⠑⠞⠡⠻⠎" }, { "input": "fetches", "output": "â ‹â ‘â žâ ¡â ‘â Ž" }, { "input": "fetching", "output": "â ‹â ‘â žâ ¡â Œ" }, { "input": "fetchingly", "output": "⠋⠑⠞⠡⠌⠇⠽" }, { "input": "feted", "output": "â ‹â ‘â žâ «" }, { "input": "fetid", "output": "â ‹â ‘â žâ Šâ ™" }, { "input": "fetidness", "output": "⠋⠑⠞⠊⠙⠰⠎" }, { "input": "fetidness's", "output": "⠋⠑⠞⠊⠙⠰⠎⠄⠎" }, { "input": "feting", "output": "â ‹â ‘â žâ Œ" }, { "input": "fetish", "output": "â ‹â ‘â žâ Šâ ©" }, { "input": "fetish's", "output": "â ‹â ‘â žâ Šâ ©â „â Ž" }, { "input": "fetishes", "output": "â ‹â ‘â žâ Šâ ©â ‘â Ž" }, { "input": "fetishism", "output": "â ‹â ‘â žâ Šâ ©â Šâ Žâ " }, { "input": "fetishism's", "output": "â ‹â ‘â žâ Šâ ©â Šâ Žâ â „â Ž" }, { "input": "fetishist", "output": "â ‹â ‘â žâ Šâ ©â Šâ Œ" }, { "input": "fetishist's", "output": "⠋⠑⠞⠊⠩⠊⠌⠄⠎" }, { "input": "fetishistic", "output": "⠋⠑⠞⠊⠩⠊⠌⠊⠉" }, { "input": "fetishists", "output": "⠋⠑⠞⠊⠩⠊⠌⠎" }, { "input": "fetlock", "output": "⠋⠑⠞⠇⠕⠉⠅" }, { "input": "fetlock's", "output": "⠋⠑⠞⠇⠕⠉⠅⠄⠎" }, { "input": "fetlocks", "output": "⠋⠑⠞⠇⠕⠉⠅⠎" }, { "input": "fetter", "output": "â ‹â ‘â žâ žâ »" }, { "input": "fetter's", "output": "⠋⠑⠞⠞⠻⠄⠎" }, { "input": "fettered", "output": "⠋⠑⠞⠞⠻⠫" }, { "input": "fettering", "output": "⠋⠑⠞⠞⠻⠌" }, { "input": "fetters", "output": "⠋⠑⠞⠞⠻⠎" }, { "input": "fettle", "output": "⠋⠑⠞⠞⠇⠑" }, { "input": "fettle's", "output": "⠋⠑⠞⠞⠇⠑⠄⠎" }, { "input": "fettuccine", "output": "⠋⠑⠞⠞⠥⠒⠔⠑" }, { "input": "fettuccine's", "output": "⠋⠑⠞⠞⠥⠒⠔⠑⠄⠎" }, { "input": "fetus", "output": "⠋⠑⠞⠥⠎" }, { "input": "fetus's", "output": "⠋⠑⠞⠥⠎⠄⠎" }, { "input": "fetuses", "output": "⠋⠑⠞⠥⠎⠑⠎" }, { "input": "feud", "output": "⠋⠑⠥⠙" }, { "input": "feud's", "output": "⠋⠑⠥⠙⠄⠎" }, { "input": "feudal", "output": "⠋⠑⠥⠙â â ‡" }, { "input": "feudalism", "output": "⠋⠑⠥⠙â â ‡â Šâ Žâ " }, { "input": "feudalism's", "output": "⠋⠑⠥⠙â â ‡â Šâ Žâ â „â Ž" }, { "input": "feudalistic", "output": "⠋⠑⠥⠙â â ‡â Šâ Œâ Šâ ‰" }, { "input": "feuded", "output": "⠋⠑⠥⠙⠫" }, { "input": "feuding", "output": "⠋⠑⠥⠙⠌" }, { "input": "feuds", "output": "⠋⠑⠥⠙⠎" }, { "input": "fever", "output": "â ‹â ‘â §â »" }, { "input": "fever's", "output": "⠋⠑⠧⠻⠄⠎" }, { "input": "fevered", "output": "⠋⠑⠧⠻⠫" }, { "input": "feverish", "output": "⠋⠑⠧⠻⠊⠩" }, { "input": "feverishly", "output": "⠋⠑⠧⠻⠊⠩⠇⠽" }, { "input": "feverishness", "output": "⠋⠑⠧⠻⠊⠩⠰⠎" }, { "input": "feverishness's", "output": "⠋⠑⠧⠻⠊⠩⠰⠎⠄⠎" }, { "input": "fevers", "output": "⠋⠑⠧⠻⠎" }, { "input": "few", "output": "â ‹â ‘â º" }, { "input": "few's", "output": "⠋⠑⠺⠄⠎" }, { "input": "fewer", "output": "⠋⠑⠺⠻" }, { "input": "fewest", "output": "⠋⠑⠺⠑⠌" }, { "input": "fewness", "output": "⠋⠑⠺⠰⠎" }, { "input": "fewness's", "output": "⠋⠑⠺⠰⠎⠄⠎" }, { "input": "fey", "output": "â ‹â ‘â ½" }, { "input": "fez", "output": "â ‹â ‘â µ" }, { "input": "fez's", "output": "⠋⠑⠵⠄⠎" }, { "input": "fezzes", "output": "⠋⠑⠵⠵⠑⠎" }, { "input": "fiasco", "output": "â ‹â Šâ â Žâ ‰â •" }, { "input": "fiasco's", "output": "â ‹â Šâ â Žâ ‰â •â „â Ž" }, { "input": "fiascoes", "output": "â ‹â Šâ â Žâ ‰â •â ‘â Ž" }, { "input": "fiat", "output": "â ‹â Šâ â ž" }, { "input": "fiat's", "output": "â ‹â Šâ â žâ „â Ž" }, { "input": "fiats", "output": "â ‹â Šâ â žâ Ž" }, { "input": "fib", "output": "â ‹â Šâ ƒ" }, { "input": "fib's", "output": "⠋⠊⠃⠄⠎" }, { "input": "fibbed", "output": "⠋⠊⠆⠫" }, { "input": "fibber", "output": "⠋⠊⠆⠻" }, { "input": "fibber's", "output": "⠋⠊⠆⠻⠄⠎" }, { "input": "fibbers", "output": "⠋⠊⠆⠻⠎" }, { "input": "fibbing", "output": "⠋⠊⠆⠌" }, { "input": "fiber", "output": "⠋⠊⠃⠻" }, { "input": "fiber's", "output": "⠋⠊⠃⠻⠄⠎" }, { "input": "fiberboard", "output": "⠋⠊⠃⠻⠃⠕⠜⠙" }, { "input": "fiberboard's", "output": "⠋⠊⠃⠻⠃⠕⠜⠙⠄⠎" }, { "input": "fiberfill", "output": "⠋⠊⠃⠻⠋⠊⠇⠇" }, { "input": "fiberfill's", "output": "⠋⠊⠃⠻⠋⠊⠇⠇⠄⠎" }, { "input": "fiberglass", "output": "⠋⠊⠃⠻⠛⠇â â Žâ Ž" }, { "input": "fiberglass's", "output": "⠋⠊⠃⠻⠛⠇â â Žâ Žâ „â Ž" }, { "input": "fibers", "output": "⠋⠊⠃⠻⠎" }, { "input": "fibril", "output": "⠋⠊⠃⠗⠊⠇" }, { "input": "fibril's", "output": "⠋⠊⠃⠗⠊⠇⠄⠎" }, { "input": "fibrillate", "output": "⠋⠊⠃⠗⠊⠇⠇â â žâ ‘" }, { "input": "fibrillated", "output": "⠋⠊⠃⠗⠊⠇⠇â â žâ «" }, { "input": "fibrillates", "output": "⠋⠊⠃⠗⠊⠇⠇â â žâ ‘â Ž" }, { "input": "fibrillating", "output": "⠋⠊⠃⠗⠊⠇⠇â â žâ Œ" }, { "input": "fibrillation", "output": "⠋⠊⠃⠗⠊⠇⠇⠠â " }, { "input": "fibrillation's", "output": "⠋⠊⠃⠗⠊⠇⠇⠠â â „â Ž" }, { "input": "fibrils", "output": "⠋⠊⠃⠗⠊⠇⠎" }, { "input": "fibrin", "output": "⠋⠊⠃⠗⠔" }, { "input": "fibrin's", "output": "⠋⠊⠃⠗⠔⠄⠎" }, { "input": "fibroid", "output": "⠋⠊⠃⠗⠕⠊⠙" }, { "input": "fibrosis", "output": "⠋⠊⠃⠗⠕⠎⠊⠎" }, { "input": "fibrosis's", "output": "⠋⠊⠃⠗⠕⠎⠊⠎⠄⠎" }, { "input": "fibrous", "output": "⠋⠊⠃⠗⠳⠎" }, { "input": "fibs", "output": "⠋⠊⠃⠎" }, { "input": "fibula", "output": "⠋⠊⠃⠥⠇â " }, { "input": "fibula's", "output": "⠋⠊⠃⠥⠇â â „â Ž" }, { "input": "fibulae", "output": "⠋⠊⠃⠥⠇â â ‘" }, { "input": "fibular", "output": "⠋⠊⠃⠥⠇⠜" }, { "input": "fiche", "output": "â ‹â Šâ ¡â ‘" }, { "input": "fiche's", "output": "â ‹â Šâ ¡â ‘â „â Ž" }, { "input": "fiches", "output": "â ‹â Šâ ¡â ‘â Ž" }, { "input": "fichu", "output": "â ‹â Šâ ¡â ¥" }, { "input": "fichu's", "output": "⠋⠊⠡⠥⠄⠎" }, { "input": "fichus", "output": "⠋⠊⠡⠥⠎" }, { "input": "fickle", "output": "⠋⠊⠉⠅⠇⠑" }, { "input": "fickleness", "output": "⠋⠊⠉⠅⠇⠑⠰⠎" }, { "input": "fickleness's", "output": "⠋⠊⠉⠅⠇⠑⠰⠎⠄⠎" }, { "input": "fickler", "output": "⠋⠊⠉⠅⠇⠻" }, { "input": "ficklest", "output": "⠋⠊⠉⠅⠇⠑⠌" }, { "input": "fiction", "output": "⠋⠊⠉⠰â " }, { "input": "fiction's", "output": "⠋⠊⠉⠰â â „â Ž" }, { "input": "fictional", "output": "⠋⠊⠉⠰â â â ‡" }, { "input": "fictionalization", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ  â " }, { "input": "fictionalization's", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "fictionalizations", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ  â â Ž" }, { "input": "fictionalize", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ ‘" }, { "input": "fictionalized", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ «" }, { "input": "fictionalizes", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ ‘â Ž" }, { "input": "fictionalizing", "output": "⠋⠊⠉⠰â â â ‡â Šâ µâ Œ" }, { "input": "fictionally", "output": "⠋⠊⠉⠰â â  â ½" }, { "input": "fictions", "output": "⠋⠊⠉⠰â â Ž" }, { "input": "fictitious", "output": "⠋⠊⠉⠞⠊⠞⠊⠳⠎" }, { "input": "fictitiously", "output": "⠋⠊⠉⠞⠊⠞⠊⠳⠎⠇⠽" }, { "input": "fictive", "output": "⠋⠊⠉⠞⠊⠧⠑" }, { "input": "ficus", "output": "⠋⠊⠉⠥⠎" }, { "input": "ficus's", "output": "⠋⠊⠉⠥⠎⠄⠎" }, { "input": "fiddle", "output": "⠋⠊⠲⠇⠑" }, { "input": "fiddle's", "output": "⠋⠊⠲⠇⠑⠄⠎" }, { "input": "fiddled", "output": "⠋⠊⠲⠇⠫" }, { "input": "fiddler", "output": "⠋⠊⠲⠇⠻" }, { "input": "fiddler's", "output": "⠋⠊⠲⠇⠻⠄⠎" }, { "input": "fiddlers", "output": "⠋⠊⠲⠇⠻⠎" }, { "input": "fiddles", "output": "⠋⠊⠲⠇⠑⠎" }, { "input": "fiddlesticks", "output": "⠋⠊⠲⠇⠑⠌⠊⠉⠅⠎" }, { "input": "fiddling", "output": "⠋⠊⠲⠇⠌" }, { "input": "fiddly", "output": "⠋⠊⠲⠇⠽" }, { "input": "fidelity", "output": "⠋⠊⠙⠑⠇⠰⠽" }, { "input": "fidelity's", "output": "⠋⠊⠙⠑⠇⠰⠽⠄⠎" }, { "input": "fidget", "output": "⠋⠊⠙⠛⠑⠞" }, { "input": "fidget's", "output": "⠋⠊⠙⠛⠑⠞⠄⠎" }, { "input": "fidgeted", "output": "⠋⠊⠙⠛⠑⠞⠫" }, { "input": "fidgeting", "output": "⠋⠊⠙⠛⠑⠞⠌" }, { "input": "fidgets", "output": "⠋⠊⠙⠛⠑⠞⠎" }, { "input": "fidgety", "output": "⠋⠊⠙⠛⠑⠞⠽" }, { "input": "fiduciaries", "output": "⠋⠊⠙⠥⠉⠊⠜⠊⠑⠎" }, { "input": "fiduciary", "output": "⠋⠊⠙⠥⠉⠊⠜⠽" }, { "input": "fiduciary's", "output": "⠋⠊⠙⠥⠉⠊⠜⠽⠄⠎" }, { "input": "fie", "output": "â ‹â Šâ ‘" }, { "input": "fief", "output": "â ‹â Šâ ‘â ‹" }, { "input": "fief's", "output": "â ‹â Šâ ‘â ‹â „â Ž" }, { "input": "fiefdom", "output": "⠋⠊⠑⠋⠙⠕â " }, { "input": "fiefdom's", "output": "⠋⠊⠑⠋⠙⠕â â „â Ž" }, { "input": "fiefdoms", "output": "⠋⠊⠑⠋⠙⠕â â Ž" }, { "input": "fiefs", "output": "â ‹â Šâ ‘â ‹â Ž" }, { "input": "field", "output": "⠋⠊⠑⠇⠙" }, { "input": "field's", "output": "⠋⠊⠑⠇⠙⠄⠎" }, { "input": "fielded", "output": "⠋⠊⠑⠇⠙⠫" }, { "input": "fielder", "output": "⠋⠊⠑⠇⠙⠻" }, { "input": "fielder's", "output": "⠋⠊⠑⠇⠙⠻⠄⠎" }, { "input": "fielders", "output": "⠋⠊⠑⠇⠙⠻⠎" }, { "input": "fielding", "output": "⠋⠊⠑⠇⠙⠌" }, { "input": "fields", "output": "⠋⠊⠑⠇⠙⠎" }, { "input": "fieldwork", "output": "⠋⠊⠑⠇⠙â â º" }, { "input": "fieldwork's", "output": "⠋⠊⠑⠇⠙â â ºâ „â Ž" }, { "input": "fiend", "output": "⠋⠊⠢⠙" }, { "input": "fiend's", "output": "⠋⠊⠢⠙⠄⠎" }, { "input": "fiendish", "output": "⠋⠊⠢⠙⠊⠩" }, { "input": "fiendishly", "output": "⠋⠊⠢⠙⠊⠩⠇⠽" }, { "input": "fiends", "output": "⠋⠊⠢⠙⠎" }, { "input": "fierce", "output": "⠋⠊⠻⠉⠑" }, { "input": "fiercely", "output": "⠋⠊⠻⠉⠑⠇⠽" }, { "input": "fierceness", "output": "⠋⠊⠻⠉⠑⠰⠎" }, { "input": "fierceness's", "output": "⠋⠊⠻⠉⠑⠰⠎⠄⠎" }, { "input": "fiercer", "output": "⠋⠊⠻⠉⠻" }, { "input": "fiercest", "output": "⠋⠊⠻⠉⠑⠌" }, { "input": "fierier", "output": "⠋⠊⠻⠊⠻" }, { "input": "fieriest", "output": "⠋⠊⠻⠊⠑⠌" }, { "input": "fieriness", "output": "⠋⠊⠻⠊⠰⠎" }, { "input": "fieriness's", "output": "⠋⠊⠻⠊⠰⠎⠄⠎" }, { "input": "fiery", "output": "⠋⠊⠻⠽" }, { "input": "fiesta", "output": "â ‹â Šâ ‘â Œâ " }, { "input": "fiesta's", "output": "â ‹â Šâ ‘â Œâ â „â Ž" }, { "input": "fiestas", "output": "â ‹â Šâ ‘â Œâ â Ž" }, { "input": "fife", "output": "â ‹â Šâ ‹â ‘" }, { "input": "fife's", "output": "â ‹â Šâ ‹â ‘â „â Ž" }, { "input": "fifer", "output": "â ‹â Šâ ‹â »" }, { "input": "fifer's", "output": "⠋⠊⠋⠻⠄⠎" }, { "input": "fifers", "output": "⠋⠊⠋⠻⠎" }, { "input": "fifes", "output": "â ‹â Šâ ‹â ‘â Ž" }, { "input": "fifteen", "output": "â ‹â Šâ ‹â žâ ‘â ¢" }, { "input": "fifteen's", "output": "⠋⠊⠋⠞⠑⠢⠄⠎" }, { "input": "fifteens", "output": "⠋⠊⠋⠞⠑⠢⠎" }, { "input": "fifteenth", "output": "⠋⠊⠋⠞⠑⠢⠹" }, { "input": "fifteenth's", "output": "⠋⠊⠋⠞⠑⠢⠹⠄⠎" }, { "input": "fifteenths", "output": "⠋⠊⠋⠞⠑⠢⠹⠎" }, { "input": "fifth", "output": "â ‹â Šâ ‹â ¹" }, { "input": "fifth's", "output": "⠋⠊⠋⠹⠄⠎" }, { "input": "fifthly", "output": "⠋⠊⠋⠹⠇⠽" }, { "input": "fifths", "output": "⠋⠊⠋⠹⠎" }, { "input": "fifties", "output": "â ‹â Šâ ‹â žâ Šâ ‘â Ž" }, { "input": "fiftieth", "output": "â ‹â Šâ ‹â žâ Šâ ‘â ¹" }, { "input": "fiftieth's", "output": "⠋⠊⠋⠞⠊⠑⠹⠄⠎" }, { "input": "fiftieths", "output": "⠋⠊⠋⠞⠊⠑⠹⠎" }, { "input": "fifty", "output": "â ‹â Šâ ‹â žâ ½" }, { "input": "fifty's", "output": "⠋⠊⠋⠞⠽⠄⠎" }, { "input": "fig", "output": "â ‹â Šâ ›" }, { "input": "fig's", "output": "⠋⠊⠛⠄⠎" }, { "input": "fight", "output": "⠋⠊⠣⠞" }, { "input": "fight's", "output": "⠋⠊⠣⠞⠄⠎" }, { "input": "fighter", "output": "⠋⠊⠣⠞⠻" }, { "input": "fighter's", "output": "⠋⠊⠣⠞⠻⠄⠎" }, { "input": "fighters", "output": "⠋⠊⠣⠞⠻⠎" }, { "input": "fighting", "output": "⠋⠊⠣⠞⠌" }, { "input": "fighting's", "output": "⠋⠊⠣⠞⠌⠄⠎" }, { "input": "fights", "output": "⠋⠊⠣⠞⠎" }, { "input": "figment", "output": "⠋⠊⠛⠰⠞" }, { "input": "figment's", "output": "⠋⠊⠛⠰⠞⠄⠎" }, { "input": "figments", "output": "⠋⠊⠛⠰⠞⠎" }, { "input": "figs", "output": "⠋⠊⠛⠎" }, { "input": "figuration", "output": "⠋⠊⠛⠥⠗⠠â " }, { "input": "figuration's", "output": "⠋⠊⠛⠥⠗⠠â â „â Ž" }, { "input": "figurative", "output": "⠋⠊⠛⠥⠗â â žâ Šâ §â ‘" }, { "input": "figuratively", "output": "⠋⠊⠛⠥⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "figure", "output": "⠋⠊⠛⠥⠗⠑" }, { "input": "figure's", "output": "⠋⠊⠛⠥⠗⠑⠄⠎" }, { "input": "figured", "output": "⠋⠊⠛⠥⠗⠫" }, { "input": "figurehead", "output": "⠋⠊⠛⠥⠗⠑⠓⠂⠙" }, { "input": "figurehead's", "output": "⠋⠊⠛⠥⠗⠑⠓⠂⠙⠄⠎" }, { "input": "figureheads", "output": "⠋⠊⠛⠥⠗⠑⠓⠂⠙⠎" }, { "input": "figures", "output": "⠋⠊⠛⠥⠗⠑⠎" }, { "input": "figurine", "output": "⠋⠊⠛⠥⠗⠔⠑" }, { "input": "figurine's", "output": "⠋⠊⠛⠥⠗⠔⠑⠄⠎" }, { "input": "figurines", "output": "⠋⠊⠛⠥⠗⠔⠑⠎" }, { "input": "figuring", "output": "⠋⠊⠛⠥⠗⠌" }, { "input": "filament", "output": "â ‹â Šâ ‡â â °â ž" }, { "input": "filament's", "output": "â ‹â Šâ ‡â â °â žâ „â Ž" }, { "input": "filamentous", "output": "â ‹â Šâ ‡â â °â žâ ³â Ž" }, { "input": "filaments", "output": "â ‹â Šâ ‡â â °â žâ Ž" }, { "input": "filbert", "output": "⠋⠊⠇⠃⠻⠞" }, { "input": "filbert's", "output": "⠋⠊⠇⠃⠻⠞⠄⠎" }, { "input": "filberts", "output": "⠋⠊⠇⠃⠻⠞⠎" }, { "input": "filch", "output": "⠋⠊⠇⠡" }, { "input": "filched", "output": "⠋⠊⠇⠡⠫" }, { "input": "filches", "output": "⠋⠊⠇⠡⠑⠎" }, { "input": "filching", "output": "⠋⠊⠇⠡⠌" }, { "input": "file", "output": "⠋⠊⠇⠑" }, { "input": "file's", "output": "⠋⠊⠇⠑⠄⠎" }, { "input": "filed", "output": "⠋⠊⠇⠫" }, { "input": "filer", "output": "⠋⠊⠇⠻" }, { "input": "filer's", "output": "⠋⠊⠇⠻⠄⠎" }, { "input": "filers", "output": "⠋⠊⠇⠻⠎" }, { "input": "files", "output": "⠋⠊⠇⠑⠎" }, { "input": "filet", "output": "⠋⠊⠇⠑⠞" }, { "input": "filial", "output": "⠋⠊⠇⠊â â ‡" }, { "input": "filibuster", "output": "⠋⠊⠇⠊⠃⠥⠌⠻" }, { "input": "filibuster's", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠄⠎" }, { "input": "filibustered", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠫" }, { "input": "filibusterer", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠻" }, { "input": "filibusterer's", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠻⠄⠎" }, { "input": "filibusterers", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠻⠎" }, { "input": "filibustering", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠌" }, { "input": "filibusters", "output": "⠋⠊⠇⠊⠃⠥⠌⠻⠎" }, { "input": "filigree", "output": "⠋⠊⠇⠊⠛⠗⠑⠑" }, { "input": "filigree's", "output": "⠋⠊⠇⠊⠛⠗⠑⠑⠄⠎" }, { "input": "filigreed", "output": "⠋⠊⠇⠊⠛⠗⠑⠫" }, { "input": "filigreeing", "output": "⠋⠊⠇⠊⠛⠗⠑⠑⠌" }, { "input": "filigrees", "output": "⠋⠊⠇⠊⠛⠗⠑⠑⠎" }, { "input": "filing", "output": "⠋⠊⠇⠌" }, { "input": "filing's", "output": "⠋⠊⠇⠌⠄⠎" }, { "input": "filings", "output": "⠋⠊⠇⠌⠎" }, { "input": "fill", "output": "⠋⠊⠇⠇" }, { "input": "fill's", "output": "⠋⠊⠇⠇⠄⠎" }, { "input": "filled", "output": "⠋⠊⠇⠇⠫" }, { "input": "filler", "output": "⠋⠊⠇⠇⠻" }, { "input": "filler's", "output": "⠋⠊⠇⠇⠻⠄⠎" }, { "input": "fillers", "output": "⠋⠊⠇⠇⠻⠎" }, { "input": "fillet", "output": "⠋⠊⠇⠇⠑⠞" }, { "input": "fillet's", "output": "⠋⠊⠇⠇⠑⠞⠄⠎" }, { "input": "filleted", "output": "⠋⠊⠇⠇⠑⠞⠫" }, { "input": "filleting", "output": "⠋⠊⠇⠇⠑⠞⠌" }, { "input": "fillets", "output": "⠋⠊⠇⠇⠑⠞⠎" }, { "input": "fillies", "output": "⠋⠊⠇⠇⠊⠑⠎" }, { "input": "filling", "output": "⠋⠊⠇⠇⠌" }, { "input": "filling's", "output": "⠋⠊⠇⠇⠌⠄⠎" }, { "input": "fillings", "output": "⠋⠊⠇⠇⠌⠎" }, { "input": "fillip", "output": "⠋⠊⠇⠇⠊â " }, { "input": "fillip's", "output": "⠋⠊⠇⠇⠊â â „â Ž" }, { "input": "filliped", "output": "⠋⠊⠇⠇⠊â â «" }, { "input": "filliping", "output": "⠋⠊⠇⠇⠊â â Œ" }, { "input": "fillips", "output": "⠋⠊⠇⠇⠊â â Ž" }, { "input": "fills", "output": "⠋⠊⠇⠇⠎" }, { "input": "filly", "output": "⠋⠊⠇⠇⠽" }, { "input": "filly's", "output": "⠋⠊⠇⠇⠽⠄⠎" }, { "input": "film", "output": "â ‹â Šâ ‡â " }, { "input": "film's", "output": "â ‹â Šâ ‡â â „â Ž" }, { "input": "filmed", "output": "â ‹â Šâ ‡â â «" }, { "input": "filmier", "output": "â ‹â Šâ ‡â â Šâ »" }, { "input": "filmiest", "output": "â ‹â Šâ ‡â â Šâ ‘â Œ" }, { "input": "filminess", "output": "â ‹â Šâ ‡â â Šâ °â Ž" }, { "input": "filminess's", "output": "â ‹â Šâ ‡â â Šâ °â Žâ „â Ž" }, { "input": "filming", "output": "â ‹â Šâ ‡â â Œ" }, { "input": "filmmaker", "output": "â ‹â Šâ ‡â â â â …â »" }, { "input": "filmmaker's", "output": "â ‹â Šâ ‡â â â â …⠻⠄⠎" }, { "input": "filmmakers", "output": "â ‹â Šâ ‡â â â â …⠻⠎" }, { "input": "films", "output": "â ‹â Šâ ‡â â Ž" }, { "input": "filmstrip", "output": "â ‹â Šâ ‡â â Œâ —â Šâ " }, { "input": "filmstrip's", "output": "â ‹â Šâ ‡â â Œâ —â Šâ â „â Ž" }, { "input": "filmstrips", "output": "â ‹â Šâ ‡â â Œâ —â Šâ â Ž" }, { "input": "filmy", "output": "â ‹â Šâ ‡â â ½" }, { "input": "filter", "output": "⠋⠊⠇⠞⠻" }, { "input": "filter's", "output": "⠋⠊⠇⠞⠻⠄⠎" }, { "input": "filterable", "output": "⠋⠊⠇⠞⠻â â ¼" }, { "input": "filtered", "output": "⠋⠊⠇⠞⠻⠫" }, { "input": "filterer", "output": "⠋⠊⠇⠞⠻⠻" }, { "input": "filterer's", "output": "⠋⠊⠇⠞⠻⠻⠄⠎" }, { "input": "filterers", "output": "⠋⠊⠇⠞⠻⠻⠎" }, { "input": "filtering", "output": "⠋⠊⠇⠞⠻⠌" }, { "input": "filters", "output": "⠋⠊⠇⠞⠻⠎" }, { "input": "filth", "output": "⠋⠊⠇⠹" }, { "input": "filth's", "output": "⠋⠊⠇⠹⠄⠎" }, { "input": "filthier", "output": "⠋⠊⠇⠹⠊⠻" }, { "input": "filthiest", "output": "⠋⠊⠇⠹⠊⠑⠌" }, { "input": "filthiness", "output": "⠋⠊⠇⠹⠊⠰⠎" }, { "input": "filthiness's", "output": "⠋⠊⠇⠹⠊⠰⠎⠄⠎" }, { "input": "filthy", "output": "⠋⠊⠇⠹⠽" }, { "input": "filtrate", "output": "⠋⠊⠇⠞⠗â â žâ ‘" }, { "input": "filtrate's", "output": "⠋⠊⠇⠞⠗â â žâ ‘â „â Ž" }, { "input": "filtrated", "output": "⠋⠊⠇⠞⠗â â žâ «" }, { "input": "filtrates", "output": "⠋⠊⠇⠞⠗â â žâ ‘â Ž" }, { "input": "filtrating", "output": "⠋⠊⠇⠞⠗â â žâ Œ" }, { "input": "filtration", "output": "⠋⠊⠇⠞⠗⠠â " }, { "input": "filtration's", "output": "⠋⠊⠇⠞⠗⠠â â „â Ž" }, { "input": "fin", "output": "â ‹â ”" }, { "input": "fin's", "output": "⠋⠔⠄⠎" }, { "input": "finagle", "output": "â ‹â ”â â ›â ‡â ‘" }, { "input": "finagled", "output": "â ‹â ”â â ›â ‡â «" }, { "input": "finagler", "output": "â ‹â ”â â ›â ‡â »" }, { "input": "finagler's", "output": "â ‹â ”â â ›â ‡â »â „â Ž" }, { "input": "finaglers", "output": "â ‹â ”â â ›â ‡â »â Ž" }, { "input": "finagles", "output": "â ‹â ”â â ›â ‡â ‘â Ž" }, { "input": "finagling", "output": "â ‹â ”â â ›â ‡â Œ" }, { "input": "final", "output": "â ‹â ”â â ‡" }, { "input": "final's", "output": "â ‹â ”â â ‡â „â Ž" }, { "input": "finale", "output": "â ‹â ”â â ‡â ‘" }, { "input": "finale's", "output": "â ‹â ”â â ‡â ‘â „â Ž" }, { "input": "finales", "output": "â ‹â ”â â ‡â ‘â Ž" }, { "input": "finalist", "output": "â ‹â ”â â ‡â Šâ Œ" }, { "input": "finalist's", "output": "â ‹â ”â â ‡â Šâ Œâ „â Ž" }, { "input": "finalists", "output": "â ‹â ”â â ‡â Šâ Œâ Ž" }, { "input": "finality", "output": "â ‹â ”â â ‡â °â ½" }, { "input": "finality's", "output": "â ‹â ”â â ‡â °â ½â „â Ž" }, { "input": "finalization", "output": "â ‹â ”â â ‡â Šâ µâ  â " }, { "input": "finalization's", "output": "â ‹â ”â â ‡â Šâ µâ  â â „â Ž" }, { "input": "finalize", "output": "â ‹â ”â â ‡â Šâ µâ ‘" }, { "input": "finalized", "output": "â ‹â ”â â ‡â Šâ µâ «" }, { "input": "finalizes", "output": "â ‹â ”â â ‡â Šâ µâ ‘â Ž" }, { "input": "finalizing", "output": "â ‹â ”â â ‡â Šâ µâ Œ" }, { "input": "finally", "output": "⠋⠔⠠⠽" }, { "input": "finals", "output": "â ‹â ”â â ‡â Ž" }, { "input": "finance", "output": "⠋⠔⠨⠑" }, { "input": "finance's", "output": "⠋⠔⠨⠑⠄⠎" }, { "input": "financed", "output": "⠋⠔⠨⠑⠙" }, { "input": "finances", "output": "⠋⠔⠨⠑⠎" }, { "input": "financial", "output": "â ‹â ”â â â ‰â Šâ â ‡" }, { "input": "financially", "output": "â ‹â ”â â â ‰â Šâ  â ½" }, { "input": "financier", "output": "â ‹â ”â â â ‰â Šâ »" }, { "input": "financier's", "output": "â ‹â ”â â â ‰â Šâ »â „â Ž" }, { "input": "financiers", "output": "â ‹â ”â â â ‰â Šâ »â Ž" }, { "input": "financing", "output": "â ‹â ”â â â ‰â Œ" }, { "input": "financing's", "output": "â ‹â ”â â â ‰â Œâ „â Ž" }, { "input": "finch", "output": "⠋⠔⠡" }, { "input": "finch's", "output": "⠋⠔⠡⠄⠎" }, { "input": "finches", "output": "⠋⠔⠡⠑⠎" }, { "input": "find", "output": "⠋⠔⠙" }, { "input": "find's", "output": "⠋⠔⠙⠄⠎" }, { "input": "finder", "output": "⠋⠔⠙⠻" }, { "input": "finder's", "output": "⠋⠔⠙⠻⠄⠎" }, { "input": "finders", "output": "⠋⠔⠙⠻⠎" }, { "input": "finding", "output": "⠋⠔⠙⠌" }, { "input": "finding's", "output": "⠋⠔⠙⠌⠄⠎" }, { "input": "findings", "output": "⠋⠔⠙⠌⠎" }, { "input": "findings's", "output": "⠋⠔⠙⠌⠎⠄⠎" }, { "input": "finds", "output": "⠋⠔⠙⠎" }, { "input": "fine", "output": "⠋⠔⠑" }, { "input": "fine's", "output": "⠋⠔⠑⠄⠎" }, { "input": "fined", "output": "⠋⠔⠫" }, { "input": "finely", "output": "⠋⠔⠑⠇⠽" }, { "input": "fineness", "output": "⠋⠔⠑⠰⠎" }, { "input": "fineness's", "output": "⠋⠔⠑⠰⠎⠄⠎" }, { "input": "finer", "output": "⠋⠔⠻" }, { "input": "finery", "output": "⠋⠔⠻⠽" }, { "input": "finery's", "output": "⠋⠔⠻⠽⠄⠎" }, { "input": "fines", "output": "⠋⠔⠑⠎" }, { "input": "finespun", "output": "⠋⠔⠑⠎â â ¥â " }, { "input": "finesse", "output": "â ‹â Šâ °â Žâ ‘" }, { "input": "finesse's", "output": "â ‹â Šâ °â Žâ ‘â „â Ž" }, { "input": "finessed", "output": "â ‹â Šâ °â Žâ «" }, { "input": "finesses", "output": "â ‹â Šâ °â Žâ ‘â Ž" }, { "input": "finessing", "output": "â ‹â Šâ °â Žâ Œ" }, { "input": "finest", "output": "⠋⠔⠑⠌" }, { "input": "finger", "output": "⠋⠌⠻" }, { "input": "finger's", "output": "⠋⠌⠻⠄⠎" }, { "input": "fingerboard", "output": "⠋⠌⠻⠃⠕⠜⠙" }, { "input": "fingerboard's", "output": "⠋⠌⠻⠃⠕⠜⠙⠄⠎" }, { "input": "fingerboards", "output": "⠋⠌⠻⠃⠕⠜⠙⠎" }, { "input": "fingered", "output": "⠋⠌⠻⠫" }, { "input": "fingering", "output": "⠋⠌⠻⠌" }, { "input": "fingering's", "output": "⠋⠌⠻⠌⠄⠎" }, { "input": "fingerings", "output": "⠋⠌⠻⠌⠎" }, { "input": "fingerling", "output": "⠋⠌⠻⠇⠌" }, { "input": "fingerling's", "output": "⠋⠌⠻⠇⠌⠄⠎" }, { "input": "fingerlings", "output": "⠋⠌⠻⠇⠌⠎" }, { "input": "fingernail", "output": "⠋⠌⠻â â â Šâ ‡" }, { "input": "fingernail's", "output": "⠋⠌⠻â â â Šâ ‡â „â Ž" }, { "input": "fingernails", "output": "⠋⠌⠻â â â Šâ ‡â Ž" }, { "input": "fingerprint", "output": "⠋⠌⠻â â —⠔⠞" }, { "input": "fingerprint's", "output": "⠋⠌⠻â â —⠔⠞⠄⠎" }, { "input": "fingerprinted", "output": "⠋⠌⠻â â —⠔⠞⠫" }, { "input": "fingerprinting", "output": "⠋⠌⠻â â —⠔⠞⠌" }, { "input": "fingerprints", "output": "⠋⠌⠻â â —⠔⠞⠎" }, { "input": "fingers", "output": "⠋⠌⠻⠎" }, { "input": "fingertip", "output": "⠋⠌⠻⠞⠊â " }, { "input": "fingertip's", "output": "⠋⠌⠻⠞⠊â â „â Ž" }, { "input": "fingertips", "output": "⠋⠌⠻⠞⠊â â Ž" }, { "input": "finial", "output": "⠋⠔⠊â â ‡" }, { "input": "finial's", "output": "⠋⠔⠊â â ‡â „â Ž" }, { "input": "finials", "output": "⠋⠔⠊â â ‡â Ž" }, { "input": "finical", "output": "⠋⠔⠊⠉â â ‡" }, { "input": "finickier", "output": "⠋⠔⠊⠉⠅⠊⠻" }, { "input": "finickiest", "output": "⠋⠔⠊⠉⠅⠊⠑⠌" }, { "input": "finickiness", "output": "⠋⠔⠊⠉⠅⠊⠰⠎" }, { "input": "finickiness's", "output": "⠋⠔⠊⠉⠅⠊⠰⠎⠄⠎" }, { "input": "finicky", "output": "⠋⠔⠊⠉⠅⠽" }, { "input": "fining", "output": "⠋⠔⠌" }, { "input": "finis", "output": "⠋⠔⠊⠎" }, { "input": "finis's", "output": "⠋⠔⠊⠎⠄⠎" }, { "input": "finises", "output": "⠋⠔⠊⠎⠑⠎" }, { "input": "finish", "output": "⠋⠔⠊⠩" }, { "input": "finish's", "output": "⠋⠔⠊⠩⠄⠎" }, { "input": "finished", "output": "⠋⠔⠊⠩⠫" }, { "input": "finisher", "output": "⠋⠔⠊⠩⠻" }, { "input": "finisher's", "output": "⠋⠔⠊⠩⠻⠄⠎" }, { "input": "finishers", "output": "⠋⠔⠊⠩⠻⠎" }, { "input": "finishes", "output": "⠋⠔⠊⠩⠑⠎" }, { "input": "finishing", "output": "⠋⠔⠊⠩⠌" }, { "input": "finite", "output": "⠋⠔⠊⠞⠑" }, { "input": "finitely", "output": "⠋⠔⠊⠞⠑⠇⠽" }, { "input": "fink", "output": "⠋⠔⠅" }, { "input": "fink's", "output": "⠋⠔⠅⠄⠎" }, { "input": "finked", "output": "⠋⠔⠅⠫" }, { "input": "finking", "output": "⠋⠔⠅⠌" }, { "input": "finks", "output": "⠋⠔⠅⠎" }, { "input": "finned", "output": "â ‹â ”â â «" }, { "input": "finnier", "output": "â ‹â ”â â Šâ »" }, { "input": "finniest", "output": "â ‹â ”â â Šâ ‘â Œ" }, { "input": "finny", "output": "â ‹â ”â â ½" }, { "input": "fins", "output": "⠋⠔⠎" }, { "input": "fir", "output": "â ‹â Šâ —" }, { "input": "fir's", "output": "â ‹â Šâ —â „â Ž" }, { "input": "fire", "output": "â ‹â Šâ —â ‘" }, { "input": "fire's", "output": "â ‹â Šâ —â ‘â „â Ž" }, { "input": "firearm", "output": "â ‹â Šâ —â ‘â œâ " }, { "input": "firearm's", "output": "â ‹â Šâ —â ‘â œâ â „â Ž" }, { "input": "firearms", "output": "â ‹â Šâ —â ‘â œâ â Ž" }, { "input": "fireball", "output": "â ‹â Šâ —â ‘â ƒâ â ‡â ‡" }, { "input": "fireball's", "output": "â ‹â Šâ —â ‘â ƒâ â ‡â ‡â „â Ž" }, { "input": "fireballs", "output": "â ‹â Šâ —â ‘â ƒâ â ‡â ‡â Ž" }, { "input": "firebomb", "output": "⠋⠊⠗⠑⠃⠕â â ƒ" }, { "input": "firebomb's", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ „â Ž" }, { "input": "firebombed", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ «" }, { "input": "firebombing", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ Œ" }, { "input": "firebombs", "output": "⠋⠊⠗⠑⠃⠕â â ƒâ Ž" }, { "input": "firebox", "output": "⠋⠊⠗⠑⠃⠕⠭" }, { "input": "firebox's", "output": "⠋⠊⠗⠑⠃⠕⠭⠄⠎" }, { "input": "fireboxes", "output": "⠋⠊⠗⠑⠃⠕⠭⠑⠎" }, { "input": "firebrand", "output": "⠋⠊⠗⠑⠃⠗⠯" }, { "input": "firebrand's", "output": "⠋⠊⠗⠑⠃⠗⠯⠄⠎" }, { "input": "firebrands", "output": "⠋⠊⠗⠑⠃⠗⠯⠎" }, { "input": "firebreak", "output": "⠋⠊⠗⠑⠃⠗⠂⠅" }, { "input": "firebreak's", "output": "⠋⠊⠗⠑⠃⠗⠂⠅⠄⠎" }, { "input": "firebreaks", "output": "⠋⠊⠗⠑⠃⠗⠂⠅⠎" }, { "input": "firebug", "output": "⠋⠊⠗⠑⠃⠥⠛" }, { "input": "firebug's", "output": "⠋⠊⠗⠑⠃⠥⠛⠄⠎" }, { "input": "firebugs", "output": "⠋⠊⠗⠑⠃⠥⠛⠎" }, { "input": "firecracker", "output": "⠋⠊⠗⠑⠉⠗â â ‰â …â »" }, { "input": "firecracker's", "output": "⠋⠊⠗⠑⠉⠗â â ‰â …⠻⠄⠎" }, { "input": "firecrackers", "output": "⠋⠊⠗⠑⠉⠗â â ‰â …⠻⠎" }, { "input": "fired", "output": "â ‹â Šâ —â «" }, { "input": "firedamp", "output": "â ‹â Šâ —â ‘â ™â â â " }, { "input": "firedamp's", "output": "â ‹â Šâ —â ‘â ™â â â â „â Ž" }, { "input": "firefight", "output": "⠋⠊⠗⠑⠋⠊⠣⠞" }, { "input": "firefight's", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠄⠎" }, { "input": "firefighter", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠻" }, { "input": "firefighter's", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠻⠄⠎" }, { "input": "firefighters", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠻⠎" }, { "input": "firefighting", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠌" }, { "input": "firefighting's", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠌⠄⠎" }, { "input": "firefights", "output": "⠋⠊⠗⠑⠋⠊⠣⠞⠎" }, { "input": "fireflies", "output": "⠋⠊⠗⠑⠋⠇⠊⠑⠎" }, { "input": "firefly", "output": "⠋⠊⠗⠑⠋⠇⠽" }, { "input": "firefly's", "output": "⠋⠊⠗⠑⠋⠇⠽⠄⠎" }, { "input": "firehouse", "output": "⠋⠊⠗⠑⠓⠳⠎⠑" }, { "input": "firehouse's", "output": "⠋⠊⠗⠑⠓⠳⠎⠑⠄⠎" }, { "input": "firehouses", "output": "⠋⠊⠗⠑⠓⠳⠎⠑⠎" }, { "input": "firelight's", "output": "⠋⠊⠗⠑⠇⠊⠣⠞⠄⠎" }, { "input": "fireman", "output": "â ‹â Šâ —â ‘â â â " }, { "input": "fireman's", "output": "â ‹â Šâ —â ‘â â â â „â Ž" }, { "input": "firemen", "output": "â ‹â Šâ —â ‘â â ¢" }, { "input": "fireplace", "output": "â ‹â Šâ —â ‘â â ‡â â ‰â ‘" }, { "input": "fireplace's", "output": "â ‹â Šâ —â ‘â â ‡â â ‰â ‘â „â Ž" }, { "input": "fireplaces", "output": "â ‹â Šâ —â ‘â â ‡â â ‰â ‘â Ž" }, { "input": "fireplug", "output": "â ‹â Šâ —â ‘â â ‡â ¥â ›" }, { "input": "fireplug's", "output": "â ‹â Šâ —â ‘â â ‡â ¥â ›â „â Ž" }, { "input": "fireplugs", "output": "â ‹â Šâ —â ‘â â ‡â ¥â ›â Ž" }, { "input": "firepower", "output": "â ‹â Šâ —â ‘â â ªâ »" }, { "input": "firepower's", "output": "â ‹â Šâ —â ‘â â ªâ »â „â Ž" }, { "input": "fireproof", "output": "â ‹â Šâ —â ‘â â —â •â ·" }, { "input": "fireproofed", "output": "â ‹â Šâ —â ‘â â —â •â ·â «" }, { "input": "fireproofing", "output": "â ‹â Šâ —â ‘â â —â •â ·â Œ" }, { "input": "fireproofs", "output": "â ‹â Šâ —â ‘â â —â •â ·â Ž" }, { "input": "firer", "output": "â ‹â Šâ —â »" }, { "input": "firer's", "output": "⠋⠊⠗⠻⠄⠎" }, { "input": "firers", "output": "⠋⠊⠗⠻⠎" }, { "input": "fires", "output": "â ‹â Šâ —â ‘â Ž" }, { "input": "fireside", "output": "⠋⠊⠗⠑⠎⠊⠙⠑" }, { "input": "fireside's", "output": "⠋⠊⠗⠑⠎⠊⠙⠑⠄⠎" }, { "input": "firesides", "output": "⠋⠊⠗⠑⠎⠊⠙⠑⠎" }, { "input": "firestorm", "output": "⠋⠊⠗⠑⠌⠕⠗â " }, { "input": "firestorm's", "output": "⠋⠊⠗⠑⠌⠕⠗â â „â Ž" }, { "input": "firestorms", "output": "⠋⠊⠗⠑⠌⠕⠗â â Ž" }, { "input": "firetrap", "output": "â ‹â Šâ —â ‘â žâ —â â " }, { "input": "firetrap's", "output": "â ‹â Šâ —â ‘â žâ —â â â „â Ž" }, { "input": "firetraps", "output": "â ‹â Šâ —â ‘â žâ —â â â Ž" }, { "input": "firetruck", "output": "⠋⠊⠗⠑⠞⠗⠥⠉⠅" }, { "input": "firetruck's", "output": "⠋⠊⠗⠑⠞⠗⠥⠉⠅⠄⠎" }, { "input": "firetrucks", "output": "⠋⠊⠗⠑⠞⠗⠥⠉⠅⠎" }, { "input": "firewall", "output": "â ‹â Šâ —â ‘â ºâ â ‡â ‡" }, { "input": "firewall's", "output": "â ‹â Šâ —â ‘â ºâ â ‡â ‡â „â Ž" }, { "input": "firewalls", "output": "â ‹â Šâ —â ‘â ºâ â ‡â ‡â Ž" }, { "input": "firewater", "output": "â ‹â Šâ —â ‘â ºâ â žâ »" }, { "input": "firewater's", "output": "â ‹â Šâ —â ‘â ºâ â žâ »â „â Ž" }, { "input": "firewood", "output": "⠋⠊⠗⠑⠺⠕⠕⠙" }, { "input": "firewood's", "output": "⠋⠊⠗⠑⠺⠕⠕⠙⠄⠎" }, { "input": "firework", "output": "â ‹â Šâ —â ‘â â º" }, { "input": "firework's", "output": "â ‹â Šâ —â ‘â â ºâ „â Ž" }, { "input": "fireworks", "output": "â ‹â Šâ —â ‘â â ºâ Ž" }, { "input": "firing", "output": "â ‹â Šâ —â Œ" }, { "input": "firm", "output": "â ‹â Šâ —â " }, { "input": "firm's", "output": "â ‹â Šâ —â â „â Ž" }, { "input": "firmament", "output": "â ‹â Šâ —â â â °â ž" }, { "input": "firmament's", "output": "â ‹â Šâ —â â â °â žâ „â Ž" }, { "input": "firmaments", "output": "â ‹â Šâ —â â â °â žâ Ž" }, { "input": "firmed", "output": "â ‹â Šâ —â â «" }, { "input": "firmer", "output": "â ‹â Šâ —â â »" }, { "input": "firmest", "output": "â ‹â Šâ —â â ‘â Œ" }, { "input": "firming", "output": "â ‹â Šâ —â â Œ" }, { "input": "firmly", "output": "â ‹â Šâ —â â ‡â ½" }, { "input": "firmness", "output": "â ‹â Šâ —â â °â Ž" }, { "input": "firmness's", "output": "â ‹â Šâ —â â °â Žâ „â Ž" }, { "input": "firms", "output": "â ‹â Šâ —â â Ž" }, { "input": "firmware", "output": "â ‹â Šâ —â â ºâ œâ ‘" }, { "input": "firmware's", "output": "â ‹â Šâ —â â ºâ œâ ‘â „â Ž" }, { "input": "firs", "output": "â ‹â Šâ —â Ž" }, { "input": "first", "output": "â ‹â Œ" }, { "input": "first's", "output": "⠋⠌⠄⠎" }, { "input": "firstborn", "output": "⠋⠌⠃⠕⠗â " }, { "input": "firstborn's", "output": "⠋⠌⠃⠕⠗â â „â Ž" }, { "input": "firstborns", "output": "⠋⠌⠃⠕⠗â â Ž" }, { "input": "firsthand", "output": "⠋⠌⠓⠯" }, { "input": "firstly", "output": "⠋⠌⠇⠽" }, { "input": "firsts", "output": "⠋⠌⠎" }, { "input": "firth", "output": "â ‹â Šâ —â ¹" }, { "input": "firth's", "output": "⠋⠊⠗⠹⠄⠎" }, { "input": "firths", "output": "⠋⠊⠗⠹⠎" }, { "input": "fiscal", "output": "â ‹â Šâ Žâ ‰â â ‡" }, { "input": "fiscal's", "output": "â ‹â Šâ Žâ ‰â â ‡â „â Ž" }, { "input": "fiscally", "output": "⠋⠊⠎⠉⠠⠽" }, { "input": "fiscals", "output": "â ‹â Šâ Žâ ‰â â ‡â Ž" }, { "input": "fish", "output": "â ‹â Šâ ©" }, { "input": "fish's", "output": "â ‹â Šâ ©â „â Ž" }, { "input": "fishbowl", "output": "⠋⠊⠩⠃⠪⠇" }, { "input": "fishbowl's", "output": "⠋⠊⠩⠃⠪⠇⠄⠎" }, { "input": "fishbowls", "output": "⠋⠊⠩⠃⠪⠇⠎" }, { "input": "fished", "output": "â ‹â Šâ ©â «" }, { "input": "fisher", "output": "â ‹â Šâ ©â »" }, { "input": "fisher's", "output": "⠋⠊⠩⠻⠄⠎" }, { "input": "fisheries", "output": "⠋⠊⠩⠻⠊⠑⠎" }, { "input": "fisherman", "output": "â ‹â Šâ ©â »â â â " }, { "input": "fisherman's", "output": "â ‹â Šâ ©â »â â â â „â Ž" }, { "input": "fishermen", "output": "â ‹â Šâ ©â »â â ¢" }, { "input": "fishers", "output": "⠋⠊⠩⠻⠎" }, { "input": "fishery", "output": "⠋⠊⠩⠻⠽" }, { "input": "fishery's", "output": "⠋⠊⠩⠻⠽⠄⠎" }, { "input": "fishes", "output": "â ‹â Šâ ©â ‘â Ž" }, { "input": "fishhook", "output": "â ‹â Šâ ©â “â •â •â …" }, { "input": "fishhook's", "output": "â ‹â Šâ ©â “â •â •â …â „â Ž" }, { "input": "fishhooks", "output": "â ‹â Šâ ©â “â •â •â …â Ž" }, { "input": "fishier", "output": "â ‹â Šâ ©â Šâ »" }, { "input": "fishiest", "output": "â ‹â Šâ ©â Šâ ‘â Œ" }, { "input": "fishily", "output": "⠋⠊⠩⠊⠇⠽" }, { "input": "fishiness", "output": "â ‹â Šâ ©â Šâ °â Ž" }, { "input": "fishiness's", "output": "â ‹â Šâ ©â Šâ °â Žâ „â Ž" }, { "input": "fishing", "output": "â ‹â Šâ ©â Œ" }, { "input": "fishing's", "output": "⠋⠊⠩⠌⠄⠎" }, { "input": "fishnet", "output": "â ‹â Šâ ©â â ‘â ž" }, { "input": "fishnet's", "output": "â ‹â Šâ ©â â ‘â žâ „â Ž" }, { "input": "fishnets", "output": "â ‹â Šâ ©â â ‘â žâ Ž" }, { "input": "fishpond", "output": "â ‹â Šâ ©â â •â â ™" }, { "input": "fishpond's", "output": "â ‹â Šâ ©â â •â â ™â „â Ž" }, { "input": "fishponds", "output": "â ‹â Šâ ©â â •â â ™â Ž" }, { "input": "fishtail", "output": "â ‹â Šâ ©â žâ â Šâ ‡" }, { "input": "fishtailed", "output": "â ‹â Šâ ©â žâ â Šâ ‡â «" }, { "input": "fishtailing", "output": "â ‹â Šâ ©â žâ â Šâ ‡â Œ" }, { "input": "fishtails", "output": "â ‹â Šâ ©â žâ â Šâ ‡â Ž" }, { "input": "fishwife", "output": "⠋⠊⠩⠺⠊⠋⠑" }, { "input": "fishwife's", "output": "⠋⠊⠩⠺⠊⠋⠑⠄⠎" }, { "input": "fishwives", "output": "⠋⠊⠩⠺⠊⠧⠑⠎" }, { "input": "fishy", "output": "â ‹â Šâ ©â ½" }, { "input": "fission", "output": "â ‹â Šâ Žâ ¨â " }, { "input": "fission's", "output": "â ‹â Šâ Žâ ¨â â „â Ž" }, { "input": "fissionable", "output": "â ‹â Šâ Žâ ¨â â â ¼" }, { "input": "fissure", "output": "⠋⠊⠎⠎⠥⠗⠑" }, { "input": "fissure's", "output": "⠋⠊⠎⠎⠥⠗⠑⠄⠎" }, { "input": "fissures", "output": "⠋⠊⠎⠎⠥⠗⠑⠎" }, { "input": "fist", "output": "â ‹â Šâ Œ" }, { "input": "fist's", "output": "⠋⠊⠌⠄⠎" }, { "input": "fistfight", "output": "⠋⠊⠌⠋⠊⠣⠞" }, { "input": "fistfight's", "output": "⠋⠊⠌⠋⠊⠣⠞⠄⠎" }, { "input": "fistfights", "output": "⠋⠊⠌⠋⠊⠣⠞⠎" }, { "input": "fistful", "output": "⠋⠊⠌⠰⠇" }, { "input": "fistful's", "output": "⠋⠊⠌⠰⠇⠄⠎" }, { "input": "fistfuls", "output": "⠋⠊⠌⠰⠇⠎" }, { "input": "fisticuffs", "output": "⠋⠊⠌⠊⠉⠥⠖⠎" }, { "input": "fisticuffs's", "output": "⠋⠊⠌⠊⠉⠥⠖⠎⠄⠎" }, { "input": "fists", "output": "⠋⠊⠌⠎" }, { "input": "fistula", "output": "⠋⠊⠌⠥⠇â " }, { "input": "fistula's", "output": "⠋⠊⠌⠥⠇â â „â Ž" }, { "input": "fistulas", "output": "⠋⠊⠌⠥⠇â â Ž" }, { "input": "fistulous", "output": "⠋⠊⠌⠥⠇⠳⠎" }, { "input": "fistulous's", "output": "⠋⠊⠌⠥⠇⠳⠎⠄⠎" }, { "input": "fit", "output": "â ‹â Šâ ž" }, { "input": "fit's", "output": "â ‹â Šâ žâ „â Ž" }, { "input": "fitful", "output": "â ‹â Šâ žâ °â ‡" }, { "input": "fitfully", "output": "⠋⠊⠞⠰⠇⠇⠽" }, { "input": "fitfulness", "output": "⠋⠊⠞⠰⠇⠰⠎" }, { "input": "fitfulness's", "output": "⠋⠊⠞⠰⠇⠰⠎⠄⠎" }, { "input": "fitly", "output": "⠋⠊⠞⠇⠽" }, { "input": "fitness", "output": "â ‹â Šâ žâ °â Ž" }, { "input": "fitness's", "output": "â ‹â Šâ žâ °â Žâ „â Ž" }, { "input": "fits", "output": "â ‹â Šâ žâ Ž" }, { "input": "fitted", "output": "â ‹â Šâ žâ žâ «" }, { "input": "fitter", "output": "â ‹â Šâ žâ žâ »" }, { "input": "fitter's", "output": "⠋⠊⠞⠞⠻⠄⠎" }, { "input": "fitters", "output": "⠋⠊⠞⠞⠻⠎" }, { "input": "fittest", "output": "â ‹â Šâ žâ žâ ‘â Œ" }, { "input": "fitting", "output": "â ‹â Šâ žâ žâ Œ" }, { "input": "fitting's", "output": "⠋⠊⠞⠞⠌⠄⠎" }, { "input": "fittingly", "output": "⠋⠊⠞⠞⠌⠇⠽" }, { "input": "fittings", "output": "⠋⠊⠞⠞⠌⠎" }, { "input": "five", "output": "â ‹â Šâ §â ‘" }, { "input": "five's", "output": "â ‹â Šâ §â ‘â „â Ž" }, { "input": "fiver", "output": "â ‹â Šâ §â »" }, { "input": "fives", "output": "â ‹â Šâ §â ‘â Ž" }, { "input": "fix", "output": "â ‹â Šâ ­" }, { "input": "fix's", "output": "â ‹â Šâ ­â „â Ž" }, { "input": "fixable", "output": "â ‹â Šâ ­â â ¼" }, { "input": "fixate", "output": "â ‹â Šâ ­â â žâ ‘" }, { "input": "fixated", "output": "â ‹â Šâ ­â â žâ «" }, { "input": "fixates", "output": "â ‹â Šâ ­â â žâ ‘â Ž" }, { "input": "fixating", "output": "â ‹â Šâ ­â â žâ Œ" }, { "input": "fixation", "output": "â ‹â Šâ ­â  â " }, { "input": "fixation's", "output": "â ‹â Šâ ­â  â â „â Ž" }, { "input": "fixations", "output": "â ‹â Šâ ­â  â â Ž" }, { "input": "fixative", "output": "â ‹â Šâ ­â â žâ Šâ §â ‘" }, { "input": "fixative's", "output": "â ‹â Šâ ­â â žâ Šâ §â ‘â „â Ž" }, { "input": "fixatives", "output": "â ‹â Šâ ­â â žâ Šâ §â ‘â Ž" }, { "input": "fixed", "output": "â ‹â Šâ ­â «" }, { "input": "fixedly", "output": "⠋⠊⠭⠫⠇⠽" }, { "input": "fixer", "output": "â ‹â Šâ ­â »" }, { "input": "fixer's", "output": "⠋⠊⠭⠻⠄⠎" }, { "input": "fixers", "output": "⠋⠊⠭⠻⠎" }, { "input": "fixes", "output": "â ‹â Šâ ­â ‘â Ž" }, { "input": "fixing", "output": "â ‹â Šâ ­â Œ" }, { "input": "fixings", "output": "⠋⠊⠭⠌⠎" }, { "input": "fixings's", "output": "⠋⠊⠭⠌⠎⠄⠎" }, { "input": "fixity", "output": "â ‹â Šâ ­â °â ½" }, { "input": "fixity's", "output": "⠋⠊⠭⠰⠽⠄⠎" }, { "input": "fixture", "output": "⠋⠊⠭⠞⠥⠗⠑" }, { "input": "fixture's", "output": "⠋⠊⠭⠞⠥⠗⠑⠄⠎" }, { "input": "fixtures", "output": "⠋⠊⠭⠞⠥⠗⠑⠎" }, { "input": "fizz", "output": "⠋⠊⠵⠵" }, { "input": "fizz's", "output": "⠋⠊⠵⠵⠄⠎" }, { "input": "fizzed", "output": "⠋⠊⠵⠵⠫" }, { "input": "fizzes", "output": "⠋⠊⠵⠵⠑⠎" }, { "input": "fizzier", "output": "⠋⠊⠵⠵⠊⠻" }, { "input": "fizziest", "output": "⠋⠊⠵⠵⠊⠑⠌" }, { "input": "fizzing", "output": "⠋⠊⠵⠵⠌" }, { "input": "fizzle", "output": "⠋⠊⠵⠵⠇⠑" }, { "input": "fizzle's", "output": "⠋⠊⠵⠵⠇⠑⠄⠎" }, { "input": "fizzled", "output": "⠋⠊⠵⠵⠇⠫" }, { "input": "fizzles", "output": "⠋⠊⠵⠵⠇⠑⠎" }, { "input": "fizzling", "output": "⠋⠊⠵⠵⠇⠌" }, { "input": "fizzy", "output": "⠋⠊⠵⠵⠽" }, { "input": "fjord", "output": "â ‹â šâ •â —â ™" }, { "input": "fjord's", "output": "⠋⠚⠕⠗⠙⠄⠎" }, { "input": "fjords", "output": "⠋⠚⠕⠗⠙⠎" }, { "input": "flab", "output": "â ‹â ‡â â ƒ" }, { "input": "flab's", "output": "â ‹â ‡â â ƒâ „â Ž" }, { "input": "flabbergast", "output": "â ‹â ‡â â †â »â ›â â Œ" }, { "input": "flabbergasted", "output": "â ‹â ‡â â †â »â ›â â Œâ «" }, { "input": "flabbergasting", "output": "â ‹â ‡â â †â »â ›â â Œâ Œ" }, { "input": "flabbergasts", "output": "â ‹â ‡â â †â »â ›â â Œâ Ž" }, { "input": "flabbier", "output": "â ‹â ‡â â †â Šâ »" }, { "input": "flabbiest", "output": "â ‹â ‡â â †â Šâ ‘â Œ" }, { "input": "flabbily", "output": "â ‹â ‡â â †â Šâ ‡â ½" }, { "input": "flabbiness", "output": "â ‹â ‡â â †â Šâ °â Ž" }, { "input": "flabbiness's", "output": "â ‹â ‡â â †â Šâ °â Žâ „â Ž" }, { "input": "flabby", "output": "â ‹â ‡â â †â ½" }, { "input": "flaccid", "output": "â ‹â ‡â â ’â Šâ ™" }, { "input": "flaccidity", "output": "â ‹â ‡â â ’⠊⠙⠰⠽" }, { "input": "flaccidity's", "output": "â ‹â ‡â â ’⠊⠙⠰⠽⠄⠎" }, { "input": "flaccidly", "output": "â ‹â ‡â â ’⠊⠙⠇⠽" }, { "input": "flack", "output": "â ‹â ‡â â ‰â …" }, { "input": "flack's", "output": "â ‹â ‡â â ‰â …â „â Ž" }, { "input": "flacks", "output": "â ‹â ‡â â ‰â …â Ž" }, { "input": "flag", "output": "â ‹â ‡â â ›" }, { "input": "flag's", "output": "â ‹â ‡â â ›â „â Ž" }, { "input": "flagella", "output": "â ‹â ‡â â ›â ‘⠇⠇â " }, { "input": "flagellate", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ ‘" }, { "input": "flagellated", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ «" }, { "input": "flagellates", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ ‘â Ž" }, { "input": "flagellating", "output": "â ‹â ‡â â ›â ‘⠇⠇â â žâ Œ" }, { "input": "flagellation", "output": "â ‹â ‡â â ›â ‘⠇⠇⠠â " }, { "input": "flagellation's", "output": "â ‹â ‡â â ›â ‘⠇⠇⠠â â „â Ž" }, { "input": "flagellum", "output": "â ‹â ‡â â ›â ‘⠇⠇⠥â " }, { "input": "flagellum's", "output": "â ‹â ‡â â ›â ‘⠇⠇⠥â â „â Ž" }, { "input": "flagged", "output": "â ‹â ‡â â ¶â «" }, { "input": "flagging", "output": "â ‹â ‡â â ¶â Œ" }, { "input": "flagman", "output": "â ‹â ‡â â ›â â â " }, { "input": "flagman's", "output": "â ‹â ‡â â ›â â â â „â Ž" }, { "input": "flagmen", "output": "â ‹â ‡â â ›â â ¢" }, { "input": "flagon", "output": "â ‹â ‡â â ›â •â " }, { "input": "flagon's", "output": "â ‹â ‡â â ›â •â â „â Ž" }, { "input": "flagons", "output": "â ‹â ‡â â ›â •â â Ž" }, { "input": "flagpole", "output": "â ‹â ‡â â ›â â •⠇⠑" }, { "input": "flagpole's", "output": "â ‹â ‡â â ›â â •⠇⠑⠄⠎" }, { "input": "flagpoles", "output": "â ‹â ‡â â ›â â •⠇⠑⠎" }, { "input": "flagrance", "output": "â ‹â ‡â â ›â —⠨⠑" }, { "input": "flagrance's", "output": "â ‹â ‡â â ›â —⠨⠑⠄⠎" }, { "input": "flagrancy", "output": "â ‹â ‡â â ›â —â â â ‰â ½" }, { "input": "flagrancy's", "output": "â ‹â ‡â â ›â —â â â ‰â ½â „â Ž" }, { "input": "flagrant", "output": "â ‹â ‡â â ›â —â â â ž" }, { "input": "flagrantly", "output": "â ‹â ‡â â ›â —â â â žâ ‡â ½" }, { "input": "flags", "output": "â ‹â ‡â â ›â Ž" }, { "input": "flagship", "output": "â ‹â ‡â â ›â ©â Šâ " }, { "input": "flagship's", "output": "â ‹â ‡â â ›â ©â Šâ â „â Ž" }, { "input": "flagships", "output": "â ‹â ‡â â ›â ©â Šâ â Ž" }, { "input": "flagstaff", "output": "â ‹â ‡â â ›â Œâ â ‹â ‹" }, { "input": "flagstaff's", "output": "â ‹â ‡â â ›â Œâ â ‹â ‹â „â Ž" }, { "input": "flagstaffs", "output": "â ‹â ‡â â ›â Œâ â –â Ž" }, { "input": "flagstone", "output": "â ‹â ‡â â ›â Œâ â •" }, { "input": "flagstone's", "output": "â ‹â ‡â â ›â Œâ â •â „â Ž" }, { "input": "flagstones", "output": "â ‹â ‡â â ›â Œâ â •â Ž" }, { "input": "flail", "output": "â ‹â ‡â â Šâ ‡" }, { "input": "flail's", "output": "â ‹â ‡â â Šâ ‡â „â Ž" }, { "input": "flailed", "output": "â ‹â ‡â â Šâ ‡â «" }, { "input": "flailing", "output": "â ‹â ‡â â Šâ ‡â Œ" }, { "input": "flails", "output": "â ‹â ‡â â Šâ ‡â Ž" }, { "input": "flair", "output": "â ‹â ‡â â Šâ —" }, { "input": "flair's", "output": "â ‹â ‡â â Šâ —â „â Ž" }, { "input": "flairs", "output": "â ‹â ‡â â Šâ —â Ž" }, { "input": "flak", "output": "â ‹â ‡â â …" }, { "input": "flak's", "output": "â ‹â ‡â â …â „â Ž" }, { "input": "flake", "output": "â ‹â ‡â â …â ‘" }, { "input": "flake's", "output": "â ‹â ‡â â …â ‘â „â Ž" }, { "input": "flaked", "output": "â ‹â ‡â â …â «" }, { "input": "flakes", "output": "â ‹â ‡â â …â ‘â Ž" }, { "input": "flakier", "output": "â ‹â ‡â â …â Šâ »" }, { "input": "flakiest", "output": "â ‹â ‡â â …â Šâ ‘â Œ" }, { "input": "flakiness", "output": "â ‹â ‡â â …â Šâ °â Ž" }, { "input": "flakiness's", "output": "â ‹â ‡â â …â Šâ °â Žâ „â Ž" }, { "input": "flaking", "output": "â ‹â ‡â â …â Œ" }, { "input": "flaky", "output": "â ‹â ‡â â …â ½" }, { "input": "flambeing", "output": "â ‹â ‡â â â ƒâ ‘â Œ" }, { "input": "flambes", "output": "â ‹â ‡â â â ƒâ ‘â Ž" }, { "input": "flamboyance", "output": "â ‹â ‡â â â ƒâ •⠽⠨⠑" }, { "input": "flamboyance's", "output": "â ‹â ‡â â â ƒâ •⠽⠨⠑⠄⠎" }, { "input": "flamboyancy", "output": "â ‹â ‡â â â ƒâ •â ½â â â ‰â ½" }, { "input": "flamboyancy's", "output": "â ‹â ‡â â â ƒâ •â ½â â â ‰â ½â „â Ž" }, { "input": "flamboyant", "output": "â ‹â ‡â â â ƒâ •â ½â â â ž" }, { "input": "flamboyantly", "output": "â ‹â ‡â â â ƒâ •â ½â â â žâ ‡â ½" }, { "input": "flame", "output": "â ‹â ‡â â â ‘" }, { "input": "flame's", "output": "â ‹â ‡â â â ‘â „â Ž" }, { "input": "flamed", "output": "â ‹â ‡â â â «" }, { "input": "flamenco", "output": "â ‹â ‡â â â ¢â ‰â •" }, { "input": "flamenco's", "output": "â ‹â ‡â â â ¢â ‰â •â „â Ž" }, { "input": "flamencos", "output": "â ‹â ‡â â â ¢â ‰â •â Ž" }, { "input": "flameproofed", "output": "â ‹â ‡â â â ‘â â —â •â ·â «" }, { "input": "flameproofing", "output": "â ‹â ‡â â â ‘â â —â •â ·â Œ" }, { "input": "flameproofs", "output": "â ‹â ‡â â â ‘â â —â •â ·â Ž" }, { "input": "flames", "output": "â ‹â ‡â â â ‘â Ž" }, { "input": "flamethrower", "output": "â ‹â ‡â â â ‘⠹⠗⠪⠻" }, { "input": "flamethrower's", "output": "â ‹â ‡â â â ‘⠹⠗⠪⠻⠄⠎" }, { "input": "flamethrowers", "output": "â ‹â ‡â â â ‘⠹⠗⠪⠻⠎" }, { "input": "flaming", "output": "â ‹â ‡â â â Œ" }, { "input": "flamingo", "output": "â ‹â ‡â â â Œâ •" }, { "input": "flamingo's", "output": "â ‹â ‡â â â Œâ •â „â Ž" }, { "input": "flamingos", "output": "â ‹â ‡â â â Œâ •â Ž" }, { "input": "flamings", "output": "â ‹â ‡â â â Œâ Ž" }, { "input": "flammability", "output": "â ‹â ‡â â â â â ƒâ Šâ ‡â °â ½" }, { "input": "flammability's", "output": "â ‹â ‡â â â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "flammable", "output": "â ‹â ‡â â â â â ¼" }, { "input": "flammable's", "output": "â ‹â ‡â â â â â ¼â „â Ž" }, { "input": "flammables", "output": "â ‹â ‡â â â â â ¼â Ž" }, { "input": "flan", "output": "â ‹â ‡â â " }, { "input": "flange", "output": "â ‹â ‡â â â ›â ‘" }, { "input": "flange's", "output": "â ‹â ‡â â â ›â ‘â „â Ž" }, { "input": "flanges", "output": "â ‹â ‡â â â ›â ‘â Ž" }, { "input": "flank", "output": "â ‹â ‡â â â …" }, { "input": "flank's", "output": "â ‹â ‡â â â …â „â Ž" }, { "input": "flanked", "output": "â ‹â ‡â â â …â «" }, { "input": "flanker", "output": "â ‹â ‡â â â …â »" }, { "input": "flanker's", "output": "â ‹â ‡â â â …⠻⠄⠎" }, { "input": "flankers", "output": "â ‹â ‡â â â …⠻⠎" }, { "input": "flanking", "output": "â ‹â ‡â â â …â Œ" }, { "input": "flanks", "output": "â ‹â ‡â â â …â Ž" }, { "input": "flannel", "output": "â ‹â ‡â â â â ‘â ‡" }, { "input": "flannel's", "output": "â ‹â ‡â â â â ‘⠇⠄⠎" }, { "input": "flanneled", "output": "â ‹â ‡â â â â ‘⠇⠫" }, { "input": "flannelette", "output": "â ‹â ‡â â â â ‘⠇⠑⠞⠞⠑" }, { "input": "flannelette's", "output": "â ‹â ‡â â â â ‘⠇⠑⠞⠞⠑⠄⠎" }, { "input": "flanneling", "output": "â ‹â ‡â â â â ‘⠇⠌" }, { "input": "flannels", "output": "â ‹â ‡â â â â ‘⠇⠎" }, { "input": "flap", "output": "â ‹â ‡â â " }, { "input": "flap's", "output": "â ‹â ‡â â â „â Ž" }, { "input": "flapjack", "output": "â ‹â ‡â â â šâ â ‰â …" }, { "input": "flapjack's", "output": "â ‹â ‡â â â šâ â ‰â …â „â Ž" }, { "input": "flapjacks", "output": "â ‹â ‡â â â šâ â ‰â …â Ž" }, { "input": "flapped", "output": "â ‹â ‡â â â â «" }, { "input": "flapper", "output": "â ‹â ‡â â â â »" }, { "input": "flapper's", "output": "â ‹â ‡â â â â »â „â Ž" }, { "input": "flappers", "output": "â ‹â ‡â â â â »â Ž" }, { "input": "flapping", "output": "â ‹â ‡â â â â Œ" }, { "input": "flaps", "output": "â ‹â ‡â â â Ž" }, { "input": "flare", "output": "⠋⠇⠜⠑" }, { "input": "flare's", "output": "⠋⠇⠜⠑⠄⠎" }, { "input": "flared", "output": "⠋⠇⠜⠫" }, { "input": "flares", "output": "⠋⠇⠜⠑⠎" }, { "input": "flareup", "output": "⠋⠇⠜⠑⠥â " }, { "input": "flareup's", "output": "⠋⠇⠜⠑⠥â â „â Ž" }, { "input": "flareups", "output": "⠋⠇⠜⠑⠥â â Ž" }, { "input": "flaring", "output": "⠋⠇⠜⠌" }, { "input": "flash", "output": "â ‹â ‡â â ©" }, { "input": "flash's", "output": "â ‹â ‡â â ©â „â Ž" }, { "input": "flashback", "output": "â ‹â ‡â â ©â ƒâ â ‰â …" }, { "input": "flashback's", "output": "â ‹â ‡â â ©â ƒâ â ‰â …â „â Ž" }, { "input": "flashbacks", "output": "â ‹â ‡â â ©â ƒâ â ‰â …â Ž" }, { "input": "flashbulb", "output": "â ‹â ‡â â ©â ƒâ ¥â ‡â ƒ" }, { "input": "flashbulb's", "output": "â ‹â ‡â â ©â ƒâ ¥â ‡â ƒâ „â Ž" }, { "input": "flashbulbs", "output": "â ‹â ‡â â ©â ƒâ ¥â ‡â ƒâ Ž" }, { "input": "flashcube", "output": "â ‹â ‡â â ©â ‰â ¥â ƒâ ‘" }, { "input": "flashcube's", "output": "â ‹â ‡â â ©â ‰â ¥â ƒâ ‘â „â Ž" }, { "input": "flashcubes", "output": "â ‹â ‡â â ©â ‰â ¥â ƒâ ‘â Ž" }, { "input": "flashed", "output": "â ‹â ‡â â ©â «" }, { "input": "flasher", "output": "â ‹â ‡â â ©â »" }, { "input": "flasher's", "output": "â ‹â ‡â â ©â »â „â Ž" }, { "input": "flashers", "output": "â ‹â ‡â â ©â »â Ž" }, { "input": "flashes", "output": "â ‹â ‡â â ©â ‘â Ž" }, { "input": "flashest", "output": "â ‹â ‡â â ©â ‘â Œ" }, { "input": "flashgun", "output": "â ‹â ‡â â ©â ›â ¥â " }, { "input": "flashgun's", "output": "â ‹â ‡â â ©â ›â ¥â â „â Ž" }, { "input": "flashguns", "output": "â ‹â ‡â â ©â ›â ¥â â Ž" }, { "input": "flashier", "output": "â ‹â ‡â â ©â Šâ »" }, { "input": "flashiest", "output": "â ‹â ‡â â ©â Šâ ‘â Œ" }, { "input": "flashily", "output": "â ‹â ‡â â ©â Šâ ‡â ½" }, { "input": "flashiness", "output": "â ‹â ‡â â ©â Šâ °â Ž" }, { "input": "flashiness's", "output": "â ‹â ‡â â ©â Šâ °â Žâ „â Ž" }, { "input": "flashing", "output": "â ‹â ‡â â ©â Œ" }, { "input": "flashing's", "output": "â ‹â ‡â â ©â Œâ „â Ž" }, { "input": "flashlight", "output": "â ‹â ‡â â ©â ‡â Šâ £â ž" }, { "input": "flashlight's", "output": "â ‹â ‡â â ©â ‡â Šâ £â žâ „â Ž" }, { "input": "flashlights", "output": "â ‹â ‡â â ©â ‡â Šâ £â žâ Ž" }, { "input": "flashy", "output": "â ‹â ‡â â ©â ½" }, { "input": "flask", "output": "â ‹â ‡â â Žâ …" }, { "input": "flask's", "output": "â ‹â ‡â â Žâ …â „â Ž" }, { "input": "flasks", "output": "â ‹â ‡â â Žâ …â Ž" }, { "input": "flat", "output": "â ‹â ‡â â ž" }, { "input": "flat's", "output": "â ‹â ‡â â žâ „â Ž" }, { "input": "flatbed", "output": "â ‹â ‡â â žâ ƒâ «" }, { "input": "flatbed's", "output": "â ‹â ‡â â žâ ƒâ «â „â Ž" }, { "input": "flatbeds", "output": "â ‹â ‡â â žâ ƒâ «â Ž" }, { "input": "flatboat", "output": "â ‹â ‡â â žâ ƒâ •â â ž" }, { "input": "flatboat's", "output": "â ‹â ‡â â žâ ƒâ •â â žâ „â Ž" }, { "input": "flatboats", "output": "â ‹â ‡â â žâ ƒâ •â â žâ Ž" }, { "input": "flatcar", "output": "â ‹â ‡â â žâ ‰â œ" }, { "input": "flatcar's", "output": "â ‹â ‡â â žâ ‰â œâ „â Ž" }, { "input": "flatcars", "output": "â ‹â ‡â â žâ ‰â œâ Ž" }, { "input": "flatfeet", "output": "â ‹â ‡â â žâ ‹â ‘â ‘â ž" }, { "input": "flatfish", "output": "â ‹â ‡â â žâ ‹â Šâ ©" }, { "input": "flatfish's", "output": "â ‹â ‡â â žâ ‹â Šâ ©â „â Ž" }, { "input": "flatfishes", "output": "â ‹â ‡â â žâ ‹â Šâ ©â ‘â Ž" }, { "input": "flatfoot", "output": "â ‹â ‡â â žâ ‹â •â •â ž" }, { "input": "flatfoot's", "output": "â ‹â ‡â â žâ ‹â •â •â žâ „â Ž" }, { "input": "flatfooted", "output": "â ‹â ‡â â žâ ‹â •â •â žâ «" }, { "input": "flatfoots", "output": "â ‹â ‡â â žâ ‹â •â •â žâ Ž" }, { "input": "flatiron", "output": "â ‹â ‡â â žâ Šâ —â •â " }, { "input": "flatiron's", "output": "â ‹â ‡â â žâ Šâ —â •â â „â Ž" }, { "input": "flatirons", "output": "â ‹â ‡â â žâ Šâ —â •â â Ž" }, { "input": "flatland", "output": "â ‹â ‡â â žâ ‡â ¯" }, { "input": "flatland's", "output": "â ‹â ‡â â žâ ‡â ¯â „â Ž" }, { "input": "flatly", "output": "â ‹â ‡â â žâ ‡â ½" }, { "input": "flatness", "output": "â ‹â ‡â â žâ °â Ž" }, { "input": "flatness's", "output": "â ‹â ‡â â žâ °â Žâ „â Ž" }, { "input": "flats", "output": "â ‹â ‡â â žâ Ž" }, { "input": "flatted", "output": "â ‹â ‡â â žâ žâ «" }, { "input": "flatten", "output": "â ‹â ‡â â žâ žâ ¢" }, { "input": "flattened", "output": "â ‹â ‡â â žâ žâ ¢â «" }, { "input": "flattening", "output": "â ‹â ‡â â žâ žâ ¢â Œ" }, { "input": "flattens", "output": "â ‹â ‡â â žâ žâ ¢â Ž" }, { "input": "flatter", "output": "â ‹â ‡â â žâ žâ »" }, { "input": "flattered", "output": "â ‹â ‡â â žâ žâ »â «" }, { "input": "flatterer", "output": "â ‹â ‡â â žâ žâ »â »" }, { "input": "flatterer's", "output": "â ‹â ‡â â žâ žâ »â »â „â Ž" }, { "input": "flatterers", "output": "â ‹â ‡â â žâ žâ »â »â Ž" }, { "input": "flattering", "output": "â ‹â ‡â â žâ žâ »â Œ" }, { "input": "flatteringly", "output": "â ‹â ‡â â žâ žâ »â Œâ ‡â ½" }, { "input": "flatters", "output": "â ‹â ‡â â žâ žâ »â Ž" }, { "input": "flattery", "output": "â ‹â ‡â â žâ žâ »â ½" }, { "input": "flattery's", "output": "â ‹â ‡â â žâ žâ »â ½â „â Ž" }, { "input": "flattest", "output": "â ‹â ‡â â žâ žâ ‘â Œ" }, { "input": "flatting", "output": "â ‹â ‡â â žâ žâ Œ" }, { "input": "flattish", "output": "â ‹â ‡â â žâ žâ Šâ ©" }, { "input": "flattop", "output": "â ‹â ‡â â žâ žâ •â " }, { "input": "flattop's", "output": "â ‹â ‡â â žâ žâ •â â „â Ž" }, { "input": "flattops", "output": "â ‹â ‡â â žâ žâ •â â Ž" }, { "input": "flatulence", "output": "â ‹â ‡â â žâ ¥â ‡â °â ‘" }, { "input": "flatulence's", "output": "â ‹â ‡â â žâ ¥â ‡â °â ‘â „â Ž" }, { "input": "flatulent", "output": "â ‹â ‡â â žâ ¥â ‡â ¢â ž" }, { "input": "flatus", "output": "â ‹â ‡â â žâ ¥â Ž" }, { "input": "flatus's", "output": "â ‹â ‡â â žâ ¥â Žâ „â Ž" }, { "input": "flatware", "output": "â ‹â ‡â â žâ ºâ œâ ‘" }, { "input": "flatware's", "output": "â ‹â ‡â â žâ ºâ œâ ‘â „â Ž" }, { "input": "flatworm", "output": "â ‹â ‡â â žâ ºâ •â —â " }, { "input": "flatworm's", "output": "â ‹â ‡â â žâ ºâ •â —â â „â Ž" }, { "input": "flatworms", "output": "â ‹â ‡â â žâ ºâ •â —â â Ž" }, { "input": "flaunt", "output": "â ‹â ‡â â ¥â â ž" }, { "input": "flaunt's", "output": "â ‹â ‡â â ¥â â žâ „â Ž" }, { "input": "flaunted", "output": "â ‹â ‡â â ¥â â žâ «" }, { "input": "flaunting", "output": "â ‹â ‡â â ¥â â žâ Œ" }, { "input": "flauntingly", "output": "â ‹â ‡â â ¥â â žâ Œâ ‡â ½" }, { "input": "flaunts", "output": "â ‹â ‡â â ¥â â žâ Ž" }, { "input": "flavor", "output": "â ‹â ‡â â §â •â —" }, { "input": "flavor's", "output": "â ‹â ‡â â §â •â —â „â Ž" }, { "input": "flavored", "output": "â ‹â ‡â â §â •â —â «" }, { "input": "flavorful", "output": "â ‹â ‡â â §â •â —â °â ‡" }, { "input": "flavoring", "output": "â ‹â ‡â â §â •â —â Œ" }, { "input": "flavoring's", "output": "â ‹â ‡â â §â •⠗⠌⠄⠎" }, { "input": "flavorings", "output": "â ‹â ‡â â §â •⠗⠌⠎" }, { "input": "flavorless", "output": "â ‹â ‡â â §â •⠗⠨⠎" }, { "input": "flavors", "output": "â ‹â ‡â â §â •â —â Ž" }, { "input": "flavorsome", "output": "â ‹â ‡â â §â •â —â â Ž" }, { "input": "flaw", "output": "â ‹â ‡â â º" }, { "input": "flaw's", "output": "â ‹â ‡â â ºâ „â Ž" }, { "input": "flawed", "output": "â ‹â ‡â â ºâ «" }, { "input": "flawing", "output": "â ‹â ‡â â ºâ Œ" }, { "input": "flawless", "output": "â ‹â ‡â â ºâ ¨â Ž" }, { "input": "flawlessly", "output": "â ‹â ‡â â ºâ ¨â Žâ ‡â ½" }, { "input": "flawlessness", "output": "â ‹â ‡â â ºâ ¨â Žâ °â Ž" }, { "input": "flawlessness's", "output": "â ‹â ‡â â ºâ ¨â Žâ °â Žâ „â Ž" }, { "input": "flaws", "output": "â ‹â ‡â â ºâ Ž" }, { "input": "flax", "output": "â ‹â ‡â â ­" }, { "input": "flax's", "output": "â ‹â ‡â â ­â „â Ž" }, { "input": "flaxen", "output": "â ‹â ‡â â ­â ¢" }, { "input": "flay", "output": "â ‹â ‡â â ½" }, { "input": "flayed", "output": "â ‹â ‡â â ½â «" }, { "input": "flaying", "output": "â ‹â ‡â â ½â Œ" }, { "input": "flays", "output": "â ‹â ‡â â ½â Ž" }, { "input": "flea", "output": "⠋⠇⠑â " }, { "input": "flea's", "output": "⠋⠇⠑â â „â Ž" }, { "input": "fleas", "output": "⠋⠇⠂⠎" }, { "input": "fleck", "output": "⠋⠇⠑⠉⠅" }, { "input": "fleck's", "output": "⠋⠇⠑⠉⠅⠄⠎" }, { "input": "flecked", "output": "⠋⠇⠑⠉⠅⠫" }, { "input": "flecking", "output": "⠋⠇⠑⠉⠅⠌" }, { "input": "flecks", "output": "⠋⠇⠑⠉⠅⠎" }, { "input": "fled", "output": "⠋⠇⠫" }, { "input": "fledged", "output": "⠋⠇⠫⠛⠫" }, { "input": "fledgling", "output": "⠋⠇⠫⠛⠇⠌" }, { "input": "fledgling's", "output": "⠋⠇⠫⠛⠇⠌⠄⠎" }, { "input": "fledglings", "output": "⠋⠇⠫⠛⠇⠌⠎" }, { "input": "flee", "output": "⠋⠇⠑⠑" }, { "input": "fleece", "output": "⠋⠇⠑⠑⠉⠑" }, { "input": "fleece's", "output": "⠋⠇⠑⠑⠉⠑⠄⠎" }, { "input": "fleeced", "output": "⠋⠇⠑⠑⠉⠫" }, { "input": "fleecer", "output": "⠋⠇⠑⠑⠉⠻" }, { "input": "fleecer's", "output": "⠋⠇⠑⠑⠉⠻⠄⠎" }, { "input": "fleecers", "output": "⠋⠇⠑⠑⠉⠻⠎" }, { "input": "fleeces", "output": "⠋⠇⠑⠑⠉⠑⠎" }, { "input": "fleecier", "output": "⠋⠇⠑⠑⠉⠊⠻" }, { "input": "fleeciest", "output": "⠋⠇⠑⠑⠉⠊⠑⠌" }, { "input": "fleeciness", "output": "⠋⠇⠑⠑⠉⠊⠰⠎" }, { "input": "fleeciness's", "output": "⠋⠇⠑⠑⠉⠊⠰⠎⠄⠎" }, { "input": "fleecing", "output": "⠋⠇⠑⠑⠉⠌" }, { "input": "fleecy", "output": "⠋⠇⠑⠑⠉⠽" }, { "input": "fleeing", "output": "⠋⠇⠑⠑⠌" }, { "input": "flees", "output": "⠋⠇⠑⠑⠎" }, { "input": "fleet", "output": "⠋⠇⠑⠑⠞" }, { "input": "fleet's", "output": "⠋⠇⠑⠑⠞⠄⠎" }, { "input": "fleeted", "output": "⠋⠇⠑⠑⠞⠫" }, { "input": "fleeter", "output": "⠋⠇⠑⠑⠞⠻" }, { "input": "fleetest", "output": "⠋⠇⠑⠑⠞⠑⠌" }, { "input": "fleeting", "output": "⠋⠇⠑⠑⠞⠌" }, { "input": "fleetingly", "output": "⠋⠇⠑⠑⠞⠌⠇⠽" }, { "input": "fleetingly's", "output": "⠋⠇⠑⠑⠞⠌⠇⠽⠄⠎" }, { "input": "fleetingness", "output": "⠋⠇⠑⠑⠞⠌⠰⠎" }, { "input": "fleetingness's", "output": "⠋⠇⠑⠑⠞⠌⠰⠎⠄⠎" }, { "input": "fleetly", "output": "⠋⠇⠑⠑⠞⠇⠽" }, { "input": "fleetness", "output": "⠋⠇⠑⠑⠞⠰⠎" }, { "input": "fleetness's", "output": "⠋⠇⠑⠑⠞⠰⠎⠄⠎" }, { "input": "fleets", "output": "⠋⠇⠑⠑⠞⠎" }, { "input": "flesh", "output": "⠋⠇⠑⠩" }, { "input": "flesh's", "output": "⠋⠇⠑⠩⠄⠎" }, { "input": "fleshed", "output": "⠋⠇⠑⠩⠫" }, { "input": "fleshes", "output": "⠋⠇⠑⠩⠑⠎" }, { "input": "fleshier", "output": "⠋⠇⠑⠩⠊⠻" }, { "input": "fleshiest", "output": "⠋⠇⠑⠩⠊⠑⠌" }, { "input": "fleshing", "output": "⠋⠇⠑⠩⠌" }, { "input": "fleshlier", "output": "⠋⠇⠑⠩⠇⠊⠻" }, { "input": "fleshliest", "output": "⠋⠇⠑⠩⠇⠊⠑⠌" }, { "input": "fleshly", "output": "⠋⠇⠑⠩⠇⠽" }, { "input": "fleshy", "output": "⠋⠇⠑⠩⠽" }, { "input": "flew", "output": "⠋⠇⠑⠺" }, { "input": "flex", "output": "⠋⠇⠑⠭" }, { "input": "flex's", "output": "⠋⠇⠑⠭⠄⠎" }, { "input": "flexed", "output": "⠋⠇⠑⠭⠫" }, { "input": "flexes", "output": "⠋⠇⠑⠭⠑⠎" }, { "input": "flexibility", "output": "⠋⠇⠑⠭⠊⠃⠊⠇⠰⠽" }, { "input": "flexibility's", "output": "⠋⠇⠑⠭⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "flexible", "output": "⠋⠇⠑⠭⠊⠼" }, { "input": "flexibly", "output": "⠋⠇⠑⠭⠊⠃⠇⠽" }, { "input": "flexing", "output": "⠋⠇⠑⠭⠌" }, { "input": "flextime", "output": "⠋⠇⠑⠭â â ž" }, { "input": "flextime's", "output": "⠋⠇⠑⠭â â žâ „â Ž" }, { "input": "flibbertigibbet", "output": "⠋⠇⠊⠆⠻⠞⠊⠛⠊⠆⠑⠞" }, { "input": "flibbertigibbet's", "output": "⠋⠇⠊⠆⠻⠞⠊⠛⠊⠆⠑⠞⠄⠎" }, { "input": "flibbertigibbets", "output": "⠋⠇⠊⠆⠻⠞⠊⠛⠊⠆⠑⠞⠎" }, { "input": "flick", "output": "⠋⠇⠊⠉⠅" }, { "input": "flick's", "output": "⠋⠇⠊⠉⠅⠄⠎" }, { "input": "flicked", "output": "⠋⠇⠊⠉⠅⠫" }, { "input": "flicker", "output": "⠋⠇⠊⠉⠅⠻" }, { "input": "flicker's", "output": "⠋⠇⠊⠉⠅⠻⠄⠎" }, { "input": "flickered", "output": "⠋⠇⠊⠉⠅⠻⠫" }, { "input": "flickering", "output": "⠋⠇⠊⠉⠅⠻⠌" }, { "input": "flickers", "output": "⠋⠇⠊⠉⠅⠻⠎" }, { "input": "flicking", "output": "⠋⠇⠊⠉⠅⠌" }, { "input": "flicks", "output": "⠋⠇⠊⠉⠅⠎" }, { "input": "flied", "output": "⠋⠇⠊⠫" }, { "input": "flier", "output": "⠋⠇⠊⠻" }, { "input": "flier's", "output": "⠋⠇⠊⠻⠄⠎" }, { "input": "fliers", "output": "⠋⠇⠊⠻⠎" }, { "input": "flies", "output": "⠋⠇⠊⠑⠎" }, { "input": "fliest", "output": "⠋⠇⠊⠑⠌" }, { "input": "flight", "output": "⠋⠇⠊⠣⠞" }, { "input": "flight's", "output": "⠋⠇⠊⠣⠞⠄⠎" }, { "input": "flightier", "output": "⠋⠇⠊⠣⠞⠊⠻" }, { "input": "flightiest", "output": "⠋⠇⠊⠣⠞⠊⠑⠌" }, { "input": "flightiness", "output": "⠋⠇⠊⠣⠞⠊⠰⠎" }, { "input": "flightiness's", "output": "⠋⠇⠊⠣⠞⠊⠰⠎⠄⠎" }, { "input": "flightless", "output": "⠋⠇⠊⠣⠞⠨⠎" }, { "input": "flights", "output": "⠋⠇⠊⠣⠞⠎" }, { "input": "flighty", "output": "⠋⠇⠊⠣⠞⠽" }, { "input": "flimflam", "output": "⠋⠇⠊â â ‹â ‡â â " }, { "input": "flimflam's", "output": "⠋⠇⠊â â ‹â ‡â â â „â Ž" }, { "input": "flimflammed", "output": "⠋⠇⠊â â ‹â ‡â â â â «" }, { "input": "flimflamming", "output": "⠋⠇⠊â â ‹â ‡â â â â Œ" }, { "input": "flimflams", "output": "⠋⠇⠊â â ‹â ‡â â â Ž" }, { "input": "flimsier", "output": "⠋⠇⠊â â Žâ Šâ »" }, { "input": "flimsiest", "output": "⠋⠇⠊â â Žâ Šâ ‘â Œ" }, { "input": "flimsily", "output": "⠋⠇⠊â â Žâ Šâ ‡â ½" }, { "input": "flimsiness", "output": "⠋⠇⠊â â Žâ Šâ °â Ž" }, { "input": "flimsiness's", "output": "⠋⠇⠊â â Žâ Šâ °â Žâ „â Ž" }, { "input": "flimsy", "output": "⠋⠇⠊â â Žâ ½" }, { "input": "flinch", "output": "⠋⠇⠔⠡" }, { "input": "flinch's", "output": "⠋⠇⠔⠡⠄⠎" }, { "input": "flinched", "output": "⠋⠇⠔⠡⠫" }, { "input": "flinches", "output": "⠋⠇⠔⠡⠑⠎" }, { "input": "flinching", "output": "⠋⠇⠔⠡⠌" }, { "input": "fling", "output": "⠋⠇⠌" }, { "input": "fling's", "output": "⠋⠇⠌⠄⠎" }, { "input": "flinging", "output": "⠋⠇⠌⠌" }, { "input": "flings", "output": "⠋⠇⠌⠎" }, { "input": "flint", "output": "⠋⠇⠔⠞" }, { "input": "flint's", "output": "⠋⠇⠔⠞⠄⠎" }, { "input": "flintier", "output": "⠋⠇⠔⠞⠊⠻" }, { "input": "flintiest", "output": "⠋⠇⠔⠞⠊⠑⠌" }, { "input": "flintlock", "output": "⠋⠇⠔⠞⠇⠕⠉⠅" }, { "input": "flintlock's", "output": "⠋⠇⠔⠞⠇⠕⠉⠅⠄⠎" }, { "input": "flintlocks", "output": "⠋⠇⠔⠞⠇⠕⠉⠅⠎" }, { "input": "flints", "output": "⠋⠇⠔⠞⠎" }, { "input": "flinty", "output": "⠋⠇⠔⠞⠽" }, { "input": "flip", "output": "⠋⠇⠊â " }, { "input": "flip's", "output": "⠋⠇⠊â â „â Ž" }, { "input": "flippancy", "output": "⠋⠇⠊â â â â â ‰â ½" }, { "input": "flippancy's", "output": "⠋⠇⠊â â â â â ‰â ½â „â Ž" }, { "input": "flippant", "output": "⠋⠇⠊â â â â â ž" }, { "input": "flippantly", "output": "⠋⠇⠊â â â â â žâ ‡â ½" }, { "input": "flipped", "output": "⠋⠇⠊â â â «" }, { "input": "flipper", "output": "⠋⠇⠊â â â »" }, { "input": "flipper's", "output": "⠋⠇⠊â â â »â „â Ž" }, { "input": "flippers", "output": "⠋⠇⠊â â â »â Ž" }, { "input": "flippest", "output": "⠋⠇⠊â â â ‘â Œ" }, { "input": "flipping", "output": "⠋⠇⠊â â â Œ" }, { "input": "flips", "output": "⠋⠇⠊â â Ž" }, { "input": "flirt", "output": "⠋⠇⠊⠗⠞" }, { "input": "flirt's", "output": "⠋⠇⠊⠗⠞⠄⠎" }, { "input": "flirtation", "output": "⠋⠇⠊⠗⠞⠠â " }, { "input": "flirtation's", "output": "⠋⠇⠊⠗⠞⠠â â „â Ž" }, { "input": "flirtations", "output": "⠋⠇⠊⠗⠞⠠â â Ž" }, { "input": "flirtatious", "output": "⠋⠇⠊⠗⠞â â žâ Šâ ³â Ž" }, { "input": "flirtatiously", "output": "⠋⠇⠊⠗⠞â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "flirtatiousness's", "output": "⠋⠇⠊⠗⠞â â žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "flirted", "output": "⠋⠇⠊⠗⠞⠫" }, { "input": "flirting", "output": "⠋⠇⠊⠗⠞⠌" }, { "input": "flirts", "output": "⠋⠇⠊⠗⠞⠎" }, { "input": "flit", "output": "⠋⠇⠊⠞" }, { "input": "flit's", "output": "⠋⠇⠊⠞⠄⠎" }, { "input": "flits", "output": "⠋⠇⠊⠞⠎" }, { "input": "flitted", "output": "⠋⠇⠊⠞⠞⠫" }, { "input": "flitting", "output": "⠋⠇⠊⠞⠞⠌" }, { "input": "float", "output": "⠋⠇⠕â â ž" }, { "input": "float's", "output": "⠋⠇⠕â â žâ „â Ž" }, { "input": "floated", "output": "⠋⠇⠕â â žâ «" }, { "input": "floater", "output": "⠋⠇⠕â â žâ »" }, { "input": "floater's", "output": "⠋⠇⠕â â žâ »â „â Ž" }, { "input": "floaters", "output": "⠋⠇⠕â â žâ »â Ž" }, { "input": "floating", "output": "⠋⠇⠕â â žâ Œ" }, { "input": "floats", "output": "⠋⠇⠕â â žâ Ž" }, { "input": "flock", "output": "⠋⠇⠕⠉⠅" }, { "input": "flock's", "output": "⠋⠇⠕⠉⠅⠄⠎" }, { "input": "flocked", "output": "⠋⠇⠕⠉⠅⠫" }, { "input": "flocking", "output": "⠋⠇⠕⠉⠅⠌" }, { "input": "flocking's", "output": "⠋⠇⠕⠉⠅⠌⠄⠎" }, { "input": "flocks", "output": "⠋⠇⠕⠉⠅⠎" }, { "input": "floe", "output": "⠋⠇⠕⠑" }, { "input": "floe's", "output": "⠋⠇⠕⠑⠄⠎" }, { "input": "floes", "output": "⠋⠇⠕⠑⠎" }, { "input": "flog", "output": "⠋⠇⠕⠛" }, { "input": "flogged", "output": "⠋⠇⠕⠶⠫" }, { "input": "flogger", "output": "⠋⠇⠕⠶⠻" }, { "input": "flogger's", "output": "⠋⠇⠕⠶⠻⠄⠎" }, { "input": "floggers", "output": "⠋⠇⠕⠶⠻⠎" }, { "input": "flogging", "output": "⠋⠇⠕⠶⠌" }, { "input": "flogging's", "output": "⠋⠇⠕⠶⠌⠄⠎" }, { "input": "floggings", "output": "⠋⠇⠕⠶⠌⠎" }, { "input": "flogs", "output": "⠋⠇⠕⠛⠎" }, { "input": "flood", "output": "⠋⠇⠕⠕⠙" }, { "input": "flood's", "output": "⠋⠇⠕⠕⠙⠄⠎" }, { "input": "flooded", "output": "⠋⠇⠕⠕⠙⠫" }, { "input": "flooder", "output": "⠋⠇⠕⠕⠙⠻" }, { "input": "floodgate", "output": "⠋⠇⠕⠕⠙⠛â â žâ ‘" }, { "input": "floodgate's", "output": "⠋⠇⠕⠕⠙⠛â â žâ ‘â „â Ž" }, { "input": "floodgates", "output": "⠋⠇⠕⠕⠙⠛â â žâ ‘â Ž" }, { "input": "flooding", "output": "⠋⠇⠕⠕⠙⠌" }, { "input": "floodlight", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞" }, { "input": "floodlight's", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠄⠎" }, { "input": "floodlighted", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠫" }, { "input": "floodlighting", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠌" }, { "input": "floodlights", "output": "⠋⠇⠕⠕⠙⠇⠊⠣⠞⠎" }, { "input": "floodlit", "output": "⠋⠇⠕⠕⠙⠇⠊⠞" }, { "input": "floodplain", "output": "⠋⠇⠕⠕⠙â â ‡â â ”" }, { "input": "floodplain's", "output": "⠋⠇⠕⠕⠙â â ‡â â ”â „â Ž" }, { "input": "floodplains", "output": "⠋⠇⠕⠕⠙â â ‡â â ”â Ž" }, { "input": "floods", "output": "⠋⠇⠕⠕⠙⠎" }, { "input": "floodwater", "output": "⠋⠇⠕⠕⠙⠺â â žâ »" }, { "input": "floodwater's", "output": "⠋⠇⠕⠕⠙⠺â â žâ »â „â Ž" }, { "input": "floor", "output": "⠋⠇⠕⠕⠗" }, { "input": "floor's", "output": "⠋⠇⠕⠕⠗⠄⠎" }, { "input": "floorboard", "output": "⠋⠇⠕⠕⠗⠃⠕⠜⠙" }, { "input": "floorboard's", "output": "⠋⠇⠕⠕⠗⠃⠕⠜⠙⠄⠎" }, { "input": "floorboards", "output": "⠋⠇⠕⠕⠗⠃⠕⠜⠙⠎" }, { "input": "floored", "output": "⠋⠇⠕⠕⠗⠫" }, { "input": "flooring", "output": "⠋⠇⠕⠕⠗⠌" }, { "input": "flooring's", "output": "⠋⠇⠕⠕⠗⠌⠄⠎" }, { "input": "floors", "output": "⠋⠇⠕⠕⠗⠎" }, { "input": "floorwalker", "output": "⠋⠇⠕⠕⠗⠺â â ‡â …â »" }, { "input": "floorwalker's", "output": "⠋⠇⠕⠕⠗⠺â â ‡â …⠻⠄⠎" }, { "input": "floorwalkers", "output": "⠋⠇⠕⠕⠗⠺â â ‡â …⠻⠎" }, { "input": "floozies", "output": "⠋⠇⠕⠕⠵⠊⠑⠎" }, { "input": "floozy", "output": "⠋⠇⠕⠕⠵⠽" }, { "input": "floozy's", "output": "⠋⠇⠕⠕⠵⠽⠄⠎" }, { "input": "flop", "output": "⠋⠇⠕â " }, { "input": "flop's", "output": "⠋⠇⠕â â „â Ž" }, { "input": "flophouse", "output": "⠋⠇⠕â â “⠳⠎⠑" }, { "input": "flophouse's", "output": "⠋⠇⠕â â “⠳⠎⠑⠄⠎" }, { "input": "flophouses", "output": "⠋⠇⠕â â “⠳⠎⠑⠎" }, { "input": "flopped", "output": "⠋⠇⠕â â â «" }, { "input": "floppier", "output": "⠋⠇⠕â â â Šâ »" }, { "input": "floppies", "output": "⠋⠇⠕â â â Šâ ‘â Ž" }, { "input": "floppiest", "output": "⠋⠇⠕â â â Šâ ‘â Œ" }, { "input": "floppily", "output": "⠋⠇⠕â â â Šâ ‡â ½" }, { "input": "floppiness", "output": "⠋⠇⠕â â â Šâ °â Ž" }, { "input": "floppiness's", "output": "⠋⠇⠕â â â Šâ °â Žâ „â Ž" }, { "input": "flopping", "output": "⠋⠇⠕â â â Œ" }, { "input": "floppy", "output": "⠋⠇⠕â â â ½" }, { "input": "floppy's", "output": "⠋⠇⠕â â â ½â „â Ž" }, { "input": "flops", "output": "⠋⠇⠕â â Ž" }, { "input": "flora", "output": "⠋⠇⠕⠗â " }, { "input": "flora's", "output": "⠋⠇⠕⠗â â „â Ž" }, { "input": "floral", "output": "⠋⠇⠕⠗â â ‡" }, { "input": "floras", "output": "⠋⠇⠕⠗â â Ž" }, { "input": "florescence", "output": "⠋⠇⠕⠗⠑⠎⠉⠰⠑" }, { "input": "florescence's", "output": "⠋⠇⠕⠗⠑⠎⠉⠰⠑⠄⠎" }, { "input": "florescent", "output": "⠋⠇⠕⠗⠑⠎⠉⠢⠞" }, { "input": "florid", "output": "⠋⠇⠕⠗⠊⠙" }, { "input": "floridly", "output": "⠋⠇⠕⠗⠊⠙⠇⠽" }, { "input": "floridness", "output": "⠋⠇⠕⠗⠊⠙⠰⠎" }, { "input": "floridness's", "output": "⠋⠇⠕⠗⠊⠙⠰⠎⠄⠎" }, { "input": "florin", "output": "⠋⠇⠕⠗⠔" }, { "input": "florin's", "output": "⠋⠇⠕⠗⠔⠄⠎" }, { "input": "florins", "output": "⠋⠇⠕⠗⠔⠎" }, { "input": "florist", "output": "⠋⠇⠕⠗⠊⠌" }, { "input": "florist's", "output": "⠋⠇⠕⠗⠊⠌⠄⠎" }, { "input": "florists", "output": "⠋⠇⠕⠗⠊⠌⠎" }, { "input": "floss", "output": "⠋⠇⠕⠎⠎" }, { "input": "floss's", "output": "⠋⠇⠕⠎⠎⠄⠎" }, { "input": "flossed", "output": "⠋⠇⠕⠎⠎⠫" }, { "input": "flosses", "output": "⠋⠇⠕⠎⠎⠑⠎" }, { "input": "flossier", "output": "⠋⠇⠕⠎⠎⠊⠻" }, { "input": "flossiest", "output": "⠋⠇⠕⠎⠎⠊⠑⠌" }, { "input": "flossing", "output": "⠋⠇⠕⠎⠎⠌" }, { "input": "flossy", "output": "⠋⠇⠕⠎⠎⠽" }, { "input": "flotation", "output": "⠋⠇⠕⠞⠠â " }, { "input": "flotation's", "output": "⠋⠇⠕⠞⠠â â „â Ž" }, { "input": "flotations", "output": "⠋⠇⠕⠞⠠â â Ž" }, { "input": "flotilla", "output": "⠋⠇⠕⠞⠊⠇⠇â " }, { "input": "flotilla's", "output": "⠋⠇⠕⠞⠊⠇⠇â â „â Ž" }, { "input": "flotillas", "output": "⠋⠇⠕⠞⠊⠇⠇â â Ž" }, { "input": "flotsam", "output": "⠋⠇⠕⠞⠎â â " }, { "input": "flotsam's", "output": "⠋⠇⠕⠞⠎â â â „â Ž" }, { "input": "flounce", "output": "⠋⠇⠳â â ‰â ‘" }, { "input": "flounce's", "output": "⠋⠇⠳â â ‰â ‘â „â Ž" }, { "input": "flounced", "output": "⠋⠇⠳â â ‰â «" }, { "input": "flounces", "output": "⠋⠇⠳â â ‰â ‘â Ž" }, { "input": "flouncier", "output": "⠋⠇⠳â â ‰â Šâ »" }, { "input": "flounciest", "output": "⠋⠇⠳â â ‰â Šâ ‘â Œ" }, { "input": "flouncing", "output": "⠋⠇⠳â â ‰â Œ" }, { "input": "flouncy", "output": "⠋⠇⠳â â ‰â ½" }, { "input": "flounder", "output": "⠋⠇⠨⠙⠻" }, { "input": "flounder's", "output": "⠋⠇⠨⠙⠻⠄⠎" }, { "input": "floundered", "output": "⠋⠇⠨⠙⠻⠫" }, { "input": "floundering", "output": "⠋⠇⠨⠙⠻⠌" }, { "input": "flounders", "output": "⠋⠇⠨⠙⠻⠎" }, { "input": "flour", "output": "⠋⠇⠳⠗" }, { "input": "flour's", "output": "⠋⠇⠳⠗⠄⠎" }, { "input": "floured", "output": "⠋⠇⠳⠗⠫" }, { "input": "flouring", "output": "⠋⠇⠳⠗⠌" }, { "input": "flourish", "output": "⠋⠇⠳⠗⠊⠩" }, { "input": "flourish's", "output": "⠋⠇⠳⠗⠊⠩⠄⠎" }, { "input": "flourished", "output": "⠋⠇⠳⠗⠊⠩⠫" }, { "input": "flourishes", "output": "⠋⠇⠳⠗⠊⠩⠑⠎" }, { "input": "flourishing", "output": "⠋⠇⠳⠗⠊⠩⠌" }, { "input": "flours", "output": "⠋⠇⠳⠗⠎" }, { "input": "floury", "output": "⠋⠇⠳⠗⠽" }, { "input": "flout", "output": "⠋⠇⠳⠞" }, { "input": "flout's", "output": "⠋⠇⠳⠞⠄⠎" }, { "input": "flouted", "output": "⠋⠇⠳⠞⠫" }, { "input": "flouter", "output": "⠋⠇⠳⠞⠻" }, { "input": "flouter's", "output": "⠋⠇⠳⠞⠻⠄⠎" }, { "input": "flouters", "output": "⠋⠇⠳⠞⠻⠎" }, { "input": "flouting", "output": "⠋⠇⠳⠞⠌" }, { "input": "flouts", "output": "⠋⠇⠳⠞⠎" }, { "input": "flow", "output": "⠋⠇⠪" }, { "input": "flow's", "output": "⠋⠇⠪⠄⠎" }, { "input": "flowchart", "output": "⠋⠇⠪⠡⠜⠞" }, { "input": "flowchart's", "output": "⠋⠇⠪⠡⠜⠞⠄⠎" }, { "input": "flowcharts", "output": "⠋⠇⠪⠡⠜⠞⠎" }, { "input": "flowed", "output": "⠋⠇⠪⠫" }, { "input": "flower", "output": "⠋⠇⠪⠻" }, { "input": "flower's", "output": "⠋⠇⠪⠻⠄⠎" }, { "input": "flowerbed", "output": "⠋⠇⠪⠻⠃⠫" }, { "input": "flowerbed's", "output": "⠋⠇⠪⠻⠃⠫⠄⠎" }, { "input": "flowerbeds", "output": "⠋⠇⠪⠻⠃⠫⠎" }, { "input": "flowered", "output": "⠋⠇⠪⠻⠫" }, { "input": "flowerier", "output": "⠋⠇⠪⠻⠊⠻" }, { "input": "floweriest", "output": "⠋⠇⠪⠻⠊⠑⠌" }, { "input": "floweriness", "output": "⠋⠇⠪⠻⠊⠰⠎" }, { "input": "floweriness's", "output": "⠋⠇⠪⠻⠊⠰⠎⠄⠎" }, { "input": "flowering", "output": "⠋⠇⠪⠻⠌" }, { "input": "flowerless", "output": "⠋⠇⠪⠻⠨⠎" }, { "input": "flowerpot", "output": "⠋⠇⠪⠻â â •â ž" }, { "input": "flowerpot's", "output": "⠋⠇⠪⠻â â •â žâ „â Ž" }, { "input": "flowerpots", "output": "⠋⠇⠪⠻â â •â žâ Ž" }, { "input": "flowers", "output": "⠋⠇⠪⠻⠎" }, { "input": "flowery", "output": "⠋⠇⠪⠻⠽" }, { "input": "flowing", "output": "⠋⠇⠪⠌" }, { "input": "flown", "output": "⠋⠇⠪â " }, { "input": "flows", "output": "⠋⠇⠪⠎" }, { "input": "flu", "output": "⠋⠇⠥" }, { "input": "flu's", "output": "⠋⠇⠥⠄⠎" }, { "input": "flub", "output": "⠋⠇⠥⠃" }, { "input": "flub's", "output": "⠋⠇⠥⠃⠄⠎" }, { "input": "flubbed", "output": "⠋⠇⠥⠆⠫" }, { "input": "flubbing", "output": "⠋⠇⠥⠆⠌" }, { "input": "flubs", "output": "⠋⠇⠥⠃⠎" }, { "input": "fluctuate", "output": "⠋⠇⠥⠉⠞⠥â â žâ ‘" }, { "input": "fluctuated", "output": "⠋⠇⠥⠉⠞⠥â â žâ «" }, { "input": "fluctuates", "output": "⠋⠇⠥⠉⠞⠥â â žâ ‘â Ž" }, { "input": "fluctuating", "output": "⠋⠇⠥⠉⠞⠥â â žâ Œ" }, { "input": "fluctuation", "output": "⠋⠇⠥⠉⠞⠥⠠â " }, { "input": "fluctuation's", "output": "⠋⠇⠥⠉⠞⠥⠠â â „â Ž" }, { "input": "fluctuations", "output": "⠋⠇⠥⠉⠞⠥⠠â â Ž" }, { "input": "flue", "output": "⠋⠇⠥⠑" }, { "input": "flue's", "output": "⠋⠇⠥⠑⠄⠎" }, { "input": "fluency", "output": "⠋⠇⠥⠢⠉⠽" }, { "input": "fluency's", "output": "⠋⠇⠥⠢⠉⠽⠄⠎" }, { "input": "fluent", "output": "⠋⠇⠥⠢⠞" }, { "input": "fluently", "output": "⠋⠇⠥⠢⠞⠇⠽" }, { "input": "flues", "output": "⠋⠇⠥⠑⠎" }, { "input": "fluff", "output": "⠋⠇⠥⠋⠋" }, { "input": "fluff's", "output": "⠋⠇⠥⠋⠋⠄⠎" }, { "input": "fluffed", "output": "⠋⠇⠥⠖⠫" }, { "input": "fluffier", "output": "⠋⠇⠥⠖⠊⠻" }, { "input": "fluffiest", "output": "⠋⠇⠥⠖⠊⠑⠌" }, { "input": "fluffiness", "output": "⠋⠇⠥⠖⠊⠰⠎" }, { "input": "fluffiness's", "output": "⠋⠇⠥⠖⠊⠰⠎⠄⠎" }, { "input": "fluffing", "output": "⠋⠇⠥⠖⠌" }, { "input": "fluffs", "output": "⠋⠇⠥⠖⠎" }, { "input": "fluffy", "output": "⠋⠇⠥⠖⠽" }, { "input": "fluid", "output": "⠋⠇⠥⠊⠙" }, { "input": "fluid's", "output": "⠋⠇⠥⠊⠙⠄⠎" }, { "input": "fluidity", "output": "⠋⠇⠥⠊⠙⠰⠽" }, { "input": "fluidity's", "output": "⠋⠇⠥⠊⠙⠰⠽⠄⠎" }, { "input": "fluidly", "output": "⠋⠇⠥⠊⠙⠇⠽" }, { "input": "fluids", "output": "⠋⠇⠥⠊⠙⠎" }, { "input": "fluke", "output": "⠋⠇⠥⠅⠑" }, { "input": "fluke's", "output": "⠋⠇⠥⠅⠑⠄⠎" }, { "input": "flukes", "output": "⠋⠇⠥⠅⠑⠎" }, { "input": "flukier", "output": "⠋⠇⠥⠅⠊⠻" }, { "input": "flukiest", "output": "⠋⠇⠥⠅⠊⠑⠌" }, { "input": "fluky", "output": "⠋⠇⠥⠅⠽" }, { "input": "flume", "output": "⠋⠇⠥â â ‘" }, { "input": "flume's", "output": "⠋⠇⠥â â ‘â „â Ž" }, { "input": "flumes", "output": "⠋⠇⠥â â ‘â Ž" }, { "input": "flummox", "output": "⠋⠇⠥â â â •â ­" }, { "input": "flummoxed", "output": "⠋⠇⠥â â â •â ­â «" }, { "input": "flummoxes", "output": "⠋⠇⠥â â â •â ­â ‘â Ž" }, { "input": "flummoxing", "output": "⠋⠇⠥â â â •â ­â Œ" }, { "input": "flung", "output": "⠋⠇⠥â â ›" }, { "input": "flunk", "output": "⠋⠇⠥â â …" }, { "input": "flunk's", "output": "⠋⠇⠥â â …â „â Ž" }, { "input": "flunked", "output": "⠋⠇⠥â â …â «" }, { "input": "flunkies", "output": "⠋⠇⠥â â …â Šâ ‘â Ž" }, { "input": "flunking", "output": "⠋⠇⠥â â …â Œ" }, { "input": "flunks", "output": "⠋⠇⠥â â …â Ž" }, { "input": "flunky", "output": "⠋⠇⠥â â …â ½" }, { "input": "flunky's", "output": "⠋⠇⠥â â …⠽⠄⠎" }, { "input": "fluoresce", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠑" }, { "input": "fluoresced", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠫" }, { "input": "fluorescence", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠰⠑" }, { "input": "fluorescence's", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠰⠑⠄⠎" }, { "input": "fluorescent", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠢⠞" }, { "input": "fluoresces", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠑⠎" }, { "input": "fluorescing", "output": "⠋⠇⠥⠕⠗⠑⠎⠉⠌" }, { "input": "fluoridate", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ ‘" }, { "input": "fluoridated", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ «" }, { "input": "fluoridates", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ ‘â Ž" }, { "input": "fluoridating", "output": "⠋⠇⠥⠕⠗⠊⠙â â žâ Œ" }, { "input": "fluoridation", "output": "⠋⠇⠥⠕⠗⠊⠙⠠â " }, { "input": "fluoridation's", "output": "⠋⠇⠥⠕⠗⠊⠙⠠â â „â Ž" }, { "input": "fluoride", "output": "⠋⠇⠥⠕⠗⠊⠙⠑" }, { "input": "fluoride's", "output": "⠋⠇⠥⠕⠗⠊⠙⠑⠄⠎" }, { "input": "fluorides", "output": "⠋⠇⠥⠕⠗⠊⠙⠑⠎" }, { "input": "fluorine", "output": "⠋⠇⠥⠕⠗⠔⠑" }, { "input": "fluorine's", "output": "⠋⠇⠥⠕⠗⠔⠑⠄⠎" }, { "input": "fluorite", "output": "⠋⠇⠥⠕⠗⠊⠞⠑" }, { "input": "fluorite's", "output": "⠋⠇⠥⠕⠗⠊⠞⠑⠄⠎" }, { "input": "fluorocarbon", "output": "⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â " }, { "input": "fluorocarbon's", "output": "⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â â „â Ž" }, { "input": "fluorocarbons", "output": "⠋⠇⠥⠕⠗⠕⠉⠜⠃⠕â â Ž" }, { "input": "fluoroscope", "output": "⠋⠇⠥⠕⠗⠕⠎⠉⠕â â ‘" }, { "input": "fluoroscope's", "output": "⠋⠇⠥⠕⠗⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "fluoroscopes", "output": "⠋⠇⠥⠕⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "fluoroscopic", "output": "⠋⠇⠥⠕⠗⠕⠎⠉⠕â â Šâ ‰" }, { "input": "flurried", "output": "⠋⠇⠥⠗⠗⠊⠫" }, { "input": "flurries", "output": "⠋⠇⠥⠗⠗⠊⠑⠎" }, { "input": "flurry", "output": "⠋⠇⠥⠗⠗⠽" }, { "input": "flurry's", "output": "⠋⠇⠥⠗⠗⠽⠄⠎" }, { "input": "flurrying", "output": "⠋⠇⠥⠗⠗⠽⠌" }, { "input": "flush", "output": "⠋⠇⠥⠩" }, { "input": "flush's", "output": "⠋⠇⠥⠩⠄⠎" }, { "input": "flushed", "output": "⠋⠇⠥⠩⠫" }, { "input": "flusher", "output": "⠋⠇⠥⠩⠻" }, { "input": "flushes", "output": "⠋⠇⠥⠩⠑⠎" }, { "input": "flushest", "output": "⠋⠇⠥⠩⠑⠌" }, { "input": "flushing", "output": "⠋⠇⠥⠩⠌" }, { "input": "fluster", "output": "⠋⠇⠥⠌⠻" }, { "input": "fluster's", "output": "⠋⠇⠥⠌⠻⠄⠎" }, { "input": "flustered", "output": "⠋⠇⠥⠌⠻⠫" }, { "input": "flustering", "output": "⠋⠇⠥⠌⠻⠌" }, { "input": "flusters", "output": "⠋⠇⠥⠌⠻⠎" }, { "input": "flute", "output": "⠋⠇⠥⠞⠑" }, { "input": "flute's", "output": "⠋⠇⠥⠞⠑⠄⠎" }, { "input": "fluted", "output": "⠋⠇⠥⠞⠫" }, { "input": "flutes", "output": "⠋⠇⠥⠞⠑⠎" }, { "input": "fluting", "output": "⠋⠇⠥⠞⠌" }, { "input": "fluting's", "output": "⠋⠇⠥⠞⠌⠄⠎" }, { "input": "flutist", "output": "⠋⠇⠥⠞⠊⠌" }, { "input": "flutist's", "output": "⠋⠇⠥⠞⠊⠌⠄⠎" }, { "input": "flutists", "output": "⠋⠇⠥⠞⠊⠌⠎" }, { "input": "flutter", "output": "⠋⠇⠥⠞⠞⠻" }, { "input": "flutter's", "output": "⠋⠇⠥⠞⠞⠻⠄⠎" }, { "input": "fluttered", "output": "⠋⠇⠥⠞⠞⠻⠫" }, { "input": "fluttering", "output": "⠋⠇⠥⠞⠞⠻⠌" }, { "input": "flutters", "output": "⠋⠇⠥⠞⠞⠻⠎" }, { "input": "fluttery", "output": "⠋⠇⠥⠞⠞⠻⠽" }, { "input": "flux", "output": "⠋⠇⠥⠭" }, { "input": "flux's", "output": "⠋⠇⠥⠭⠄⠎" }, { "input": "fluxed", "output": "⠋⠇⠥⠭⠫" }, { "input": "fluxes", "output": "⠋⠇⠥⠭⠑⠎" }, { "input": "fluxing", "output": "⠋⠇⠥⠭⠌" }, { "input": "fly", "output": "⠋⠇⠽" }, { "input": "fly's", "output": "⠋⠇⠽⠄⠎" }, { "input": "flyable", "output": "⠋⠇⠽â â ¼" }, { "input": "flyby", "output": "⠋⠇⠽⠃⠽" }, { "input": "flyby's", "output": "⠋⠇⠽⠃⠽⠄⠎" }, { "input": "flybys", "output": "⠋⠇⠽⠃⠽⠎" }, { "input": "flycatcher", "output": "⠋⠇⠽⠉â â žâ ¡â »" }, { "input": "flycatcher's", "output": "⠋⠇⠽⠉â â žâ ¡â »â „â Ž" }, { "input": "flycatchers", "output": "⠋⠇⠽⠉â â žâ ¡â »â Ž" }, { "input": "flying", "output": "⠋⠇⠽⠌" }, { "input": "flying's", "output": "⠋⠇⠽⠌⠄⠎" }, { "input": "flyleaf", "output": "⠋⠇⠽⠇⠂⠋" }, { "input": "flyleaf's", "output": "⠋⠇⠽⠇⠂⠋⠄⠎" }, { "input": "flyleaves", "output": "⠋⠇⠽⠇⠂⠧⠑⠎" }, { "input": "flyover", "output": "⠋⠇⠽⠕⠧⠻" }, { "input": "flyover's", "output": "⠋⠇⠽⠕⠧⠻⠄⠎" }, { "input": "flyovers", "output": "⠋⠇⠽⠕⠧⠻⠎" }, { "input": "flypaper", "output": "⠋⠇⠽â â â â »" }, { "input": "flypaper's", "output": "⠋⠇⠽â â â â »â „â Ž" }, { "input": "flypapers", "output": "⠋⠇⠽â â â â »â Ž" }, { "input": "flysheet", "output": "⠋⠇⠽⠩⠑⠑⠞" }, { "input": "flyspeck", "output": "⠋⠇⠽⠎â â ‘⠉⠅" }, { "input": "flyspeck's", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠄⠎" }, { "input": "flyspecked", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠫" }, { "input": "flyspecking", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠌" }, { "input": "flyspecks", "output": "⠋⠇⠽⠎â â ‘⠉⠅⠎" }, { "input": "flyswatter", "output": "⠋⠇⠽⠎⠺â â žâ žâ »" }, { "input": "flyswatter's", "output": "⠋⠇⠽⠎⠺â â žâ žâ »â „â Ž" }, { "input": "flyswatters", "output": "⠋⠇⠽⠎⠺â â žâ žâ »â Ž" }, { "input": "flyway", "output": "⠋⠇⠽⠺â â ½" }, { "input": "flyway's", "output": "⠋⠇⠽⠺â â ½â „â Ž" }, { "input": "flyways", "output": "⠋⠇⠽⠺â â ½â Ž" }, { "input": "flyweight", "output": "⠋⠇⠽⠺⠑⠊⠣⠞" }, { "input": "flyweight's", "output": "⠋⠇⠽⠺⠑⠊⠣⠞⠄⠎" }, { "input": "flyweights", "output": "⠋⠇⠽⠺⠑⠊⠣⠞⠎" }, { "input": "flywheel", "output": "⠋⠇⠽⠱⠑⠑⠇" }, { "input": "flywheel's", "output": "⠋⠇⠽⠱⠑⠑⠇⠄⠎" }, { "input": "flywheels", "output": "⠋⠇⠽⠱⠑⠑⠇⠎" }, { "input": "foal", "output": "â ‹â •â â ‡" }, { "input": "foal's", "output": "â ‹â •â â ‡â „â Ž" }, { "input": "foaled", "output": "â ‹â •â â ‡â «" }, { "input": "foaling", "output": "â ‹â •â â ‡â Œ" }, { "input": "foals", "output": "â ‹â •â â ‡â Ž" }, { "input": "foam", "output": "â ‹â •â â " }, { "input": "foam's", "output": "â ‹â •â â â „â Ž" }, { "input": "foamed", "output": "â ‹â •â â â «" }, { "input": "foamier", "output": "â ‹â •â â â Šâ »" }, { "input": "foamiest", "output": "â ‹â •â â â Šâ ‘â Œ" }, { "input": "foaminess", "output": "â ‹â •â â â Šâ °â Ž" }, { "input": "foaminess's", "output": "â ‹â •â â â Šâ °â Žâ „â Ž" }, { "input": "foaming", "output": "â ‹â •â â â Œ" }, { "input": "foams", "output": "â ‹â •â â â Ž" }, { "input": "foamy", "output": "â ‹â •â â â ½" }, { "input": "fob", "output": "â ‹â •â ƒ" }, { "input": "fob's", "output": "⠋⠕⠃⠄⠎" }, { "input": "fobbed", "output": "⠋⠕⠆⠫" }, { "input": "fobbing", "output": "⠋⠕⠆⠌" }, { "input": "fobs", "output": "⠋⠕⠃⠎" }, { "input": "focal", "output": "â ‹â •â ‰â â ‡" }, { "input": "focally", "output": "⠋⠕⠉⠠⠽" }, { "input": "focus", "output": "⠋⠕⠉⠥⠎" }, { "input": "focus's", "output": "⠋⠕⠉⠥⠎⠄⠎" }, { "input": "focused", "output": "⠋⠕⠉⠥⠎⠫" }, { "input": "focuses", "output": "⠋⠕⠉⠥⠎⠑⠎" }, { "input": "focusing", "output": "⠋⠕⠉⠥⠎⠌" }, { "input": "fodder", "output": "⠋⠕⠲⠻" }, { "input": "fodder's", "output": "⠋⠕⠲⠻⠄⠎" }, { "input": "fodders", "output": "⠋⠕⠲⠻⠎" }, { "input": "foe", "output": "â ‹â •â ‘" }, { "input": "foe's", "output": "â ‹â •â ‘â „â Ž" }, { "input": "foes", "output": "â ‹â •â ‘â Ž" }, { "input": "fog", "output": "â ‹â •â ›" }, { "input": "fog's", "output": "⠋⠕⠛⠄⠎" }, { "input": "fogbound", "output": "⠋⠕⠛⠃⠨⠙" }, { "input": "fogged", "output": "â ‹â •â ¶â «" }, { "input": "foggier", "output": "â ‹â •â ¶â Šâ »" }, { "input": "foggiest", "output": "â ‹â •â ¶â Šâ ‘â Œ" }, { "input": "foggily", "output": "⠋⠕⠶⠊⠇⠽" }, { "input": "fogginess", "output": "â ‹â •â ¶â Šâ °â Ž" }, { "input": "fogginess's", "output": "â ‹â •â ¶â Šâ °â Žâ „â Ž" }, { "input": "fogging", "output": "â ‹â •â ¶â Œ" }, { "input": "foggy", "output": "â ‹â •â ¶â ½" }, { "input": "foghorn", "output": "⠋⠕⠛⠓⠕⠗â " }, { "input": "foghorn's", "output": "⠋⠕⠛⠓⠕⠗â â „â Ž" }, { "input": "foghorns", "output": "⠋⠕⠛⠓⠕⠗â â Ž" }, { "input": "fogies", "output": "⠋⠕⠛⠊⠑⠎" }, { "input": "fogs", "output": "⠋⠕⠛⠎" }, { "input": "fogy", "output": "⠋⠕⠛⠽" }, { "input": "fogy's", "output": "⠋⠕⠛⠽⠄⠎" }, { "input": "fogyish", "output": "⠋⠕⠛⠽⠊⠩" }, { "input": "foible", "output": "â ‹â •â Šâ ¼" }, { "input": "foible's", "output": "⠋⠕⠊⠼⠄⠎" }, { "input": "foibles", "output": "⠋⠕⠊⠼⠎" }, { "input": "foil", "output": "â ‹â •â Šâ ‡" }, { "input": "foil's", "output": "⠋⠕⠊⠇⠄⠎" }, { "input": "foiled", "output": "⠋⠕⠊⠇⠫" }, { "input": "foiling", "output": "⠋⠕⠊⠇⠌" }, { "input": "foils", "output": "⠋⠕⠊⠇⠎" }, { "input": "foist", "output": "â ‹â •â Šâ Œ" }, { "input": "foisted", "output": "⠋⠕⠊⠌⠫" }, { "input": "foisting", "output": "⠋⠕⠊⠌⠌" }, { "input": "foists", "output": "⠋⠕⠊⠌⠎" }, { "input": "fold", "output": "⠋⠕⠇⠙" }, { "input": "fold's", "output": "⠋⠕⠇⠙⠄⠎" }, { "input": "foldaway", "output": "⠋⠕⠇⠙â â ºâ â ½" }, { "input": "folded", "output": "⠋⠕⠇⠙⠫" }, { "input": "folder", "output": "⠋⠕⠇⠙⠻" }, { "input": "folder's", "output": "⠋⠕⠇⠙⠻⠄⠎" }, { "input": "folders", "output": "⠋⠕⠇⠙⠻⠎" }, { "input": "folding", "output": "⠋⠕⠇⠙⠌" }, { "input": "foldout", "output": "⠋⠕⠇⠙⠳⠞" }, { "input": "foldout's", "output": "⠋⠕⠇⠙⠳⠞⠄⠎" }, { "input": "foldouts", "output": "⠋⠕⠇⠙⠳⠞⠎" }, { "input": "folds", "output": "⠋⠕⠇⠙⠎" }, { "input": "foliage", "output": "⠋⠕⠇⠊â â ›â ‘" }, { "input": "foliage's", "output": "⠋⠕⠇⠊â â ›â ‘â „â Ž" }, { "input": "folio", "output": "⠋⠕⠇⠊⠕" }, { "input": "folio's", "output": "⠋⠕⠇⠊⠕⠄⠎" }, { "input": "folios", "output": "⠋⠕⠇⠊⠕⠎" }, { "input": "folk", "output": "⠋⠕⠇⠅" }, { "input": "folk's", "output": "⠋⠕⠇⠅⠄⠎" }, { "input": "folklore", "output": "⠋⠕⠇⠅⠇⠕⠗⠑" }, { "input": "folklore's", "output": "⠋⠕⠇⠅⠇⠕⠗⠑⠄⠎" }, { "input": "folkloric", "output": "⠋⠕⠇⠅⠇⠕⠗⠊⠉" }, { "input": "folklorist", "output": "⠋⠕⠇⠅⠇⠕⠗⠊⠌" }, { "input": "folklorist's", "output": "⠋⠕⠇⠅⠇⠕⠗⠊⠌⠄⠎" }, { "input": "folklorists", "output": "⠋⠕⠇⠅⠇⠕⠗⠊⠌⠎" }, { "input": "folks", "output": "⠋⠕⠇⠅⠎" }, { "input": "folksier", "output": "⠋⠕⠇⠅⠎⠊⠻" }, { "input": "folksiest", "output": "⠋⠕⠇⠅⠎⠊⠑⠌" }, { "input": "folksiness", "output": "⠋⠕⠇⠅⠎⠊⠰⠎" }, { "input": "folksiness's", "output": "⠋⠕⠇⠅⠎⠊⠰⠎⠄⠎" }, { "input": "folksinger", "output": "⠋⠕⠇⠅⠎⠌⠻" }, { "input": "folksinger's", "output": "⠋⠕⠇⠅⠎⠌⠻⠄⠎" }, { "input": "folksingers", "output": "⠋⠕⠇⠅⠎⠌⠻⠎" }, { "input": "folksinging", "output": "⠋⠕⠇⠅⠎⠌⠌" }, { "input": "folksinging's", "output": "⠋⠕⠇⠅⠎⠌⠌⠄⠎" }, { "input": "folksy", "output": "⠋⠕⠇⠅⠎⠽" }, { "input": "folktale", "output": "⠋⠕⠇⠅⠞â â ‡â ‘" }, { "input": "folktale's", "output": "⠋⠕⠇⠅⠞â â ‡â ‘â „â Ž" }, { "input": "folktales", "output": "⠋⠕⠇⠅⠞â â ‡â ‘â Ž" }, { "input": "folkway", "output": "⠋⠕⠇⠅⠺â â ½" }, { "input": "folkway's", "output": "⠋⠕⠇⠅⠺â â ½â „â Ž" }, { "input": "folkways", "output": "⠋⠕⠇⠅⠺â â ½â Ž" }, { "input": "follicle", "output": "⠋⠕⠇⠇⠊⠉⠇⠑" }, { "input": "follicle's", "output": "⠋⠕⠇⠇⠊⠉⠇⠑⠄⠎" }, { "input": "follicles", "output": "⠋⠕⠇⠇⠊⠉⠇⠑⠎" }, { "input": "follies", "output": "⠋⠕⠇⠇⠊⠑⠎" }, { "input": "follow", "output": "⠋⠕⠇⠇⠪" }, { "input": "followed", "output": "⠋⠕⠇⠇⠪⠫" }, { "input": "follower", "output": "⠋⠕⠇⠇⠪⠻" }, { "input": "follower's", "output": "⠋⠕⠇⠇⠪⠻⠄⠎" }, { "input": "followers", "output": "⠋⠕⠇⠇⠪⠻⠎" }, { "input": "following", "output": "⠋⠕⠇⠇⠪⠌" }, { "input": "following's", "output": "⠋⠕⠇⠇⠪⠌⠄⠎" }, { "input": "followings", "output": "⠋⠕⠇⠇⠪⠌⠎" }, { "input": "follows", "output": "⠋⠕⠇⠇⠪⠎" }, { "input": "folly", "output": "⠋⠕⠇⠇⠽" }, { "input": "folly's", "output": "⠋⠕⠇⠇⠽⠄⠎" }, { "input": "foment", "output": "â ‹â •â °â ž" }, { "input": "fomentation", "output": "â ‹â •â °â žâ  â " }, { "input": "fomentation's", "output": "â ‹â •â °â žâ  â â „â Ž" }, { "input": "fomented", "output": "â ‹â •â °â žâ «" }, { "input": "fomenting", "output": "â ‹â •â °â žâ Œ" }, { "input": "foments", "output": "â ‹â •â °â žâ Ž" }, { "input": "fond", "output": "â ‹â •â â ™" }, { "input": "fondant", "output": "â ‹â •â â ™â â â ž" }, { "input": "fondant's", "output": "â ‹â •â â ™â â â žâ „â Ž" }, { "input": "fondants", "output": "â ‹â •â â ™â â â žâ Ž" }, { "input": "fonder", "output": "â ‹â •â â ™â »" }, { "input": "fondest", "output": "â ‹â •â â ™â ‘â Œ" }, { "input": "fondle", "output": "â ‹â •â â ™â ‡â ‘" }, { "input": "fondled", "output": "â ‹â •â â ™â ‡â «" }, { "input": "fondles", "output": "â ‹â •â â ™â ‡â ‘â Ž" }, { "input": "fondling", "output": "â ‹â •â â ™â ‡â Œ" }, { "input": "fondly", "output": "â ‹â •â â ™â ‡â ½" }, { "input": "fondness", "output": "â ‹â •â â ™â °â Ž" }, { "input": "fondness's", "output": "â ‹â •â â ™â °â Žâ „â Ž" }, { "input": "fondue", "output": "â ‹â •â â ™â ¥â ‘" }, { "input": "fondue's", "output": "â ‹â •â â ™â ¥â ‘â „â Ž" }, { "input": "fondues", "output": "â ‹â •â â ™â ¥â ‘â Ž" }, { "input": "font", "output": "â ‹â •â â ž" }, { "input": "font's", "output": "â ‹â •â â žâ „â Ž" }, { "input": "fontanel", "output": "â ‹â •â â žâ â â ‘â ‡" }, { "input": "fontanel's", "output": "â ‹â •â â žâ â â ‘⠇⠄⠎" }, { "input": "fontanels", "output": "â ‹â •â â žâ â â ‘⠇⠎" }, { "input": "fonts", "output": "â ‹â •â â žâ Ž" }, { "input": "food", "output": "â ‹â •â •â ™" }, { "input": "food's", "output": "⠋⠕⠕⠙⠄⠎" }, { "input": "foods", "output": "⠋⠕⠕⠙⠎" }, { "input": "foodstuff", "output": "⠋⠕⠕⠙⠌⠥⠋⠋" }, { "input": "foodstuff's", "output": "⠋⠕⠕⠙⠌⠥⠋⠋⠄⠎" }, { "input": "foodstuffs", "output": "⠋⠕⠕⠙⠌⠥⠖⠎" }, { "input": "fool", "output": "â ‹â •â •â ‡" }, { "input": "fool's", "output": "⠋⠕⠕⠇⠄⠎" }, { "input": "fooled", "output": "⠋⠕⠕⠇⠫" }, { "input": "fooleries", "output": "⠋⠕⠕⠇⠻⠊⠑⠎" }, { "input": "foolery", "output": "⠋⠕⠕⠇⠻⠽" }, { "input": "foolery's", "output": "⠋⠕⠕⠇⠻⠽⠄⠎" }, { "input": "foolhardier", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠻" }, { "input": "foolhardiest", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠑⠌" }, { "input": "foolhardily", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠇⠽" }, { "input": "foolhardiness", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠰⠎" }, { "input": "foolhardiness's", "output": "⠋⠕⠕⠇⠓⠜⠙⠊⠰⠎⠄⠎" }, { "input": "foolhardy", "output": "⠋⠕⠕⠇⠓⠜⠙⠽" }, { "input": "fooling", "output": "⠋⠕⠕⠇⠌" }, { "input": "foolish", "output": "⠋⠕⠕⠇⠊⠩" }, { "input": "foolishly", "output": "⠋⠕⠕⠇⠊⠩⠇⠽" }, { "input": "foolishness", "output": "⠋⠕⠕⠇⠊⠩⠰⠎" }, { "input": "foolishness's", "output": "⠋⠕⠕⠇⠊⠩⠰⠎⠄⠎" }, { "input": "foolproof", "output": "â ‹â •â •â ‡â â —â •â ·" }, { "input": "fools", "output": "⠋⠕⠕⠇⠎" }, { "input": "foolscap", "output": "⠋⠕⠕⠇⠎⠉â â " }, { "input": "foolscap's", "output": "⠋⠕⠕⠇⠎⠉â â â „â Ž" }, { "input": "foot", "output": "â ‹â •â •â ž" }, { "input": "foot's", "output": "â ‹â •â •â žâ „â Ž" }, { "input": "footage", "output": "â ‹â •â •â žâ â ›â ‘" }, { "input": "footage's", "output": "â ‹â •â •â žâ â ›â ‘â „â Ž" }, { "input": "football", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡" }, { "input": "football's", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â „â Ž" }, { "input": "footballer", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â »" }, { "input": "footballer's", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â »â „â Ž" }, { "input": "footballers", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â »â Ž" }, { "input": "footballs", "output": "â ‹â •â •â žâ ƒâ â ‡â ‡â Ž" }, { "input": "footbridge", "output": "⠋⠕⠕⠞⠃⠗⠊⠙⠛⠑" }, { "input": "footbridge's", "output": "⠋⠕⠕⠞⠃⠗⠊⠙⠛⠑⠄⠎" }, { "input": "footbridges", "output": "⠋⠕⠕⠞⠃⠗⠊⠙⠛⠑⠎" }, { "input": "footed", "output": "â ‹â •â •â žâ «" }, { "input": "footfall", "output": "â ‹â •â •â žâ ‹â â ‡â ‡" }, { "input": "footfall's", "output": "â ‹â •â •â žâ ‹â â ‡â ‡â „â Ž" }, { "input": "footfalls", "output": "â ‹â •â •â žâ ‹â â ‡â ‡â Ž" }, { "input": "foothill", "output": "⠋⠕⠕⠞⠓⠊⠇⠇" }, { "input": "foothill's", "output": "⠋⠕⠕⠞⠓⠊⠇⠇⠄⠎" }, { "input": "foothills", "output": "⠋⠕⠕⠞⠓⠊⠇⠇⠎" }, { "input": "foothold", "output": "⠋⠕⠕⠞⠓⠕⠇⠙" }, { "input": "foothold's", "output": "⠋⠕⠕⠞⠓⠕⠇⠙⠄⠎" }, { "input": "footholds", "output": "⠋⠕⠕⠞⠓⠕⠇⠙⠎" }, { "input": "footing", "output": "â ‹â •â •â žâ Œ" }, { "input": "footing's", "output": "⠋⠕⠕⠞⠌⠄⠎" }, { "input": "footings", "output": "⠋⠕⠕⠞⠌⠎" }, { "input": "footless", "output": "⠋⠕⠕⠞⠨⠎" }, { "input": "footlights", "output": "⠋⠕⠕⠞⠇⠊⠣⠞⠎" }, { "input": "footlights's", "output": "⠋⠕⠕⠞⠇⠊⠣⠞⠎⠄⠎" }, { "input": "footling's", "output": "⠋⠕⠕⠞⠇⠌⠄⠎" }, { "input": "footlings", "output": "⠋⠕⠕⠞⠇⠌⠎" }, { "input": "footlocker", "output": "⠋⠕⠕⠞⠇⠕⠉⠅⠻" }, { "input": "footlocker's", "output": "⠋⠕⠕⠞⠇⠕⠉⠅⠻⠄⠎" }, { "input": "footlockers", "output": "⠋⠕⠕⠞⠇⠕⠉⠅⠻⠎" }, { "input": "footloose", "output": "⠋⠕⠕⠞⠇⠕⠕⠎⠑" }, { "input": "footman", "output": "â ‹â •â •â žâ â â " }, { "input": "footman's", "output": "â ‹â •â •â žâ â â â „â Ž" }, { "input": "footmen", "output": "â ‹â •â •â žâ â ¢" }, { "input": "footnote", "output": "â ‹â •â •â žâ â •â žâ ‘" }, { "input": "footnote's", "output": "â ‹â •â •â žâ â •â žâ ‘â „â Ž" }, { "input": "footnoted", "output": "â ‹â •â •â žâ â •â žâ «" }, { "input": "footnotes", "output": "â ‹â •â •â žâ â •â žâ ‘â Ž" }, { "input": "footnoting", "output": "â ‹â •â •â žâ â •â žâ Œ" }, { "input": "footpath", "output": "â ‹â •â •â žâ â â ¹" }, { "input": "footpath's", "output": "â ‹â •â •â žâ â â ¹â „â Ž" }, { "input": "footpaths", "output": "â ‹â •â •â žâ â â ¹â Ž" }, { "input": "footprint", "output": "â ‹â •â •â žâ â —⠔⠞" }, { "input": "footprint's", "output": "â ‹â •â •â žâ â —⠔⠞⠄⠎" }, { "input": "footprints", "output": "â ‹â •â •â žâ â —⠔⠞⠎" }, { "input": "footrace", "output": "â ‹â •â •â žâ —â â ‰â ‘" }, { "input": "footrace's", "output": "â ‹â •â •â žâ —â â ‰â ‘â „â Ž" }, { "input": "footraces", "output": "â ‹â •â •â žâ —â â ‰â ‘â Ž" }, { "input": "footrest", "output": "â ‹â •â •â žâ —â ‘â Œ" }, { "input": "footrest's", "output": "⠋⠕⠕⠞⠗⠑⠌⠄⠎" }, { "input": "footrests", "output": "⠋⠕⠕⠞⠗⠑⠌⠎" }, { "input": "foots", "output": "â ‹â •â •â žâ Ž" }, { "input": "footsie", "output": "â ‹â •â •â žâ Žâ Šâ ‘" }, { "input": "footsie's", "output": "â ‹â •â •â žâ Žâ Šâ ‘â „â Ž" }, { "input": "footsies", "output": "â ‹â •â •â žâ Žâ Šâ ‘â Ž" }, { "input": "footsore", "output": "â ‹â •â •â žâ Žâ •â —â ‘" }, { "input": "footstep", "output": "⠋⠕⠕⠞⠌⠑â " }, { "input": "footstep's", "output": "⠋⠕⠕⠞⠌⠑â â „â Ž" }, { "input": "footsteps", "output": "⠋⠕⠕⠞⠌⠑â â Ž" }, { "input": "footstool", "output": "⠋⠕⠕⠞⠌⠕⠕⠇" }, { "input": "footstool's", "output": "⠋⠕⠕⠞⠌⠕⠕⠇⠄⠎" }, { "input": "footstools", "output": "⠋⠕⠕⠞⠌⠕⠕⠇⠎" }, { "input": "footwear", "output": "⠋⠕⠕⠞⠺⠑⠜" }, { "input": "footwear's", "output": "⠋⠕⠕⠞⠺⠑⠜⠄⠎" }, { "input": "footwork", "output": "â ‹â •â •â žâ â º" }, { "input": "footwork's", "output": "â ‹â •â •â žâ â ºâ „â Ž" }, { "input": "fop", "output": "â ‹â •â " }, { "input": "fop's", "output": "â ‹â •â â „â Ž" }, { "input": "foppery", "output": "â ‹â •â â â »â ½" }, { "input": "foppery's", "output": "â ‹â •â â â »â ½â „â Ž" }, { "input": "foppish", "output": "â ‹â •â â â Šâ ©" }, { "input": "foppishness", "output": "â ‹â •â â â Šâ ©â °â Ž" }, { "input": "foppishness's", "output": "â ‹â •â â â Šâ ©â °â Žâ „â Ž" }, { "input": "fops", "output": "â ‹â •â â Ž" }, { "input": "for", "output": "â ¿" }, { "input": "forage", "output": "â ¿â â ›â ‘" }, { "input": "forage's", "output": "â ¿â â ›â ‘â „â Ž" }, { "input": "foraged", "output": "â ¿â â ›â «" }, { "input": "forager", "output": "â ¿â â ›â »" }, { "input": "forager's", "output": "â ¿â â ›â »â „â Ž" }, { "input": "foragers", "output": "â ¿â â ›â »â Ž" }, { "input": "forages", "output": "â ¿â â ›â ‘â Ž" }, { "input": "foraging", "output": "â ¿â â ›â Œ" }, { "input": "foray", "output": "â ¿â â ½" }, { "input": "foray's", "output": "â ¿â â ½â „â Ž" }, { "input": "forayed", "output": "â ¿â â ½â «" }, { "input": "foraying", "output": "â ¿â â ½â Œ" }, { "input": "forays", "output": "â ¿â â ½â Ž" }, { "input": "forbade", "output": "â ¿â ƒâ â ™â ‘" }, { "input": "forbear", "output": "⠿⠃⠑⠜" }, { "input": "forbear's", "output": "⠿⠃⠑⠜⠄⠎" }, { "input": "forbearance", "output": "⠿⠃⠑⠜⠨⠑" }, { "input": "forbearance's", "output": "⠿⠃⠑⠜⠨⠑⠄⠎" }, { "input": "forbearing", "output": "⠿⠃⠑⠜⠌" }, { "input": "forbears", "output": "⠿⠃⠑⠜⠎" }, { "input": "forbid", "output": "⠿⠃⠊⠙" }, { "input": "forbidden", "output": "⠿⠃⠊⠲⠢" }, { "input": "forbidding", "output": "⠿⠃⠊⠲⠌" }, { "input": "forbiddingly", "output": "⠿⠃⠊⠲⠌⠇⠽" }, { "input": "forbiddings", "output": "⠿⠃⠊⠲⠌⠎" }, { "input": "forbids", "output": "⠿⠃⠊⠙⠎" }, { "input": "forbore", "output": "⠿⠃⠕⠗⠑" }, { "input": "forborne", "output": "⠿⠃⠕⠗â â ‘" }, { "input": "force", "output": "⠿⠉⠑" }, { "input": "force's", "output": "⠿⠉⠑⠄⠎" }, { "input": "forced", "output": "⠿⠉⠫" }, { "input": "forceful", "output": "⠿⠉⠑⠰⠇" }, { "input": "forcefully", "output": "⠿⠉⠑⠰⠇⠇⠽" }, { "input": "forcefulness", "output": "⠿⠉⠑⠰⠇⠰⠎" }, { "input": "forcefulness's", "output": "⠿⠉⠑⠰⠇⠰⠎⠄⠎" }, { "input": "forceps", "output": "⠿⠉⠑â â Ž" }, { "input": "forceps's", "output": "⠿⠉⠑â â Žâ „â Ž" }, { "input": "forces", "output": "⠿⠉⠑⠎" }, { "input": "forcible", "output": "⠿⠉⠊⠼" }, { "input": "forcibly", "output": "⠿⠉⠊⠃⠇⠽" }, { "input": "forcing", "output": "⠿⠉⠌" }, { "input": "ford", "output": "â ¿â ™" }, { "input": "ford's", "output": "⠿⠙⠄⠎" }, { "input": "fordable", "output": "â ¿â ™â â ¼" }, { "input": "forded", "output": "⠿⠙⠫" }, { "input": "fording", "output": "⠿⠙⠌" }, { "input": "fords", "output": "⠿⠙⠎" }, { "input": "fore", "output": "â ¿â ‘" }, { "input": "fore's", "output": "â ¿â ‘â „â Ž" }, { "input": "forearm", "output": "â ¿â ‘â œâ " }, { "input": "forearm's", "output": "â ¿â ‘â œâ â „â Ž" }, { "input": "forearmed", "output": "â ¿â ‘â œâ â «" }, { "input": "forearming", "output": "â ¿â ‘â œâ â Œ" }, { "input": "forearms", "output": "â ¿â ‘â œâ â Ž" }, { "input": "forebear", "output": "⠿⠑⠃⠑⠜" }, { "input": "forebear's", "output": "⠿⠑⠃⠑⠜⠄⠎" }, { "input": "forebears", "output": "⠿⠑⠃⠑⠜⠎" }, { "input": "forebode", "output": "⠿⠑⠃⠕⠙⠑" }, { "input": "foreboded", "output": "⠿⠑⠃⠕⠙⠫" }, { "input": "forebodes", "output": "⠿⠑⠃⠕⠙⠑⠎" }, { "input": "foreboding", "output": "⠿⠑⠃⠕⠙⠌" }, { "input": "foreboding's", "output": "⠿⠑⠃⠕⠙⠌⠄⠎" }, { "input": "forebodings", "output": "⠿⠑⠃⠕⠙⠌⠎" }, { "input": "forecast", "output": "â ¿â ‘â ‰â â Œ" }, { "input": "forecast's", "output": "â ¿â ‘â ‰â â Œâ „â Ž" }, { "input": "forecaster", "output": "â ¿â ‘â ‰â â Œâ »" }, { "input": "forecaster's", "output": "â ¿â ‘â ‰â â Œâ »â „â Ž" }, { "input": "forecasters", "output": "â ¿â ‘â ‰â â Œâ »â Ž" }, { "input": "forecasting", "output": "â ¿â ‘â ‰â â Œâ Œ" }, { "input": "forecastle", "output": "â ¿â ‘â ‰â â Œâ ‡â ‘" }, { "input": "forecastle's", "output": "â ¿â ‘â ‰â â Œâ ‡â ‘â „â Ž" }, { "input": "forecastles", "output": "â ¿â ‘â ‰â â Œâ ‡â ‘â Ž" }, { "input": "forecasts", "output": "â ¿â ‘â ‰â â Œâ Ž" }, { "input": "foreclose", "output": "⠿⠑⠉⠇⠕⠎⠑" }, { "input": "foreclosed", "output": "⠿⠑⠉⠇⠕⠎⠫" }, { "input": "forecloses", "output": "⠿⠑⠉⠇⠕⠎⠑⠎" }, { "input": "foreclosing", "output": "⠿⠑⠉⠇⠕⠎⠌" }, { "input": "foreclosure", "output": "⠿⠑⠉⠇⠕⠎⠥⠗⠑" }, { "input": "foreclosure's", "output": "⠿⠑⠉⠇⠕⠎⠥⠗⠑⠄⠎" }, { "input": "foreclosures", "output": "⠿⠑⠉⠇⠕⠎⠥⠗⠑⠎" }, { "input": "forefather", "output": "â ¿â ‘â â ‹" }, { "input": "forefather's", "output": "â ¿â ‘â â ‹â „â Ž" }, { "input": "forefathers", "output": "â ¿â ‘â â ‹â Ž" }, { "input": "forefeet", "output": "â ¿â ‘â ‹â ‘â ‘â ž" }, { "input": "forefinger", "output": "⠿⠑⠋⠌⠻" }, { "input": "forefinger's", "output": "⠿⠑⠋⠌⠻⠄⠎" }, { "input": "forefingers", "output": "⠿⠑⠋⠌⠻⠎" }, { "input": "forefoot", "output": "â ¿â ‘â ‹â •â •â ž" }, { "input": "forefoot's", "output": "â ¿â ‘â ‹â •â •â žâ „â Ž" }, { "input": "forefront", "output": "â ¿â ‘â ‹â —â •â â ž" }, { "input": "forefront's", "output": "â ¿â ‘â ‹â —â •â â žâ „â Ž" }, { "input": "forefronts", "output": "â ¿â ‘â ‹â —â •â â žâ Ž" }, { "input": "forego", "output": "⠿⠑⠛⠕" }, { "input": "foregoes", "output": "⠿⠑⠛⠕⠑⠎" }, { "input": "foregoing", "output": "⠿⠑⠛⠕⠌" }, { "input": "foregone", "output": "â ¿â ‘â ›â â •" }, { "input": "foreground", "output": "⠿⠑⠛⠗⠨⠙" }, { "input": "foreground's", "output": "⠿⠑⠛⠗⠨⠙⠄⠎" }, { "input": "foregrounded", "output": "⠿⠑⠛⠗⠨⠙⠫" }, { "input": "foregrounding", "output": "⠿⠑⠛⠗⠨⠙⠌" }, { "input": "foregrounds", "output": "⠿⠑⠛⠗⠨⠙⠎" }, { "input": "forehand", "output": "â ¿â ‘â “â ¯" }, { "input": "forehand's", "output": "⠿⠑⠓⠯⠄⠎" }, { "input": "forehands", "output": "⠿⠑⠓⠯⠎" }, { "input": "forehead", "output": "â ¿â ‘â “â ‚â ™" }, { "input": "forehead's", "output": "⠿⠑⠓⠂⠙⠄⠎" }, { "input": "foreheads", "output": "⠿⠑⠓⠂⠙⠎" }, { "input": "foreign", "output": "â ¿â ‘â Šâ ›â " }, { "input": "foreigner", "output": "â ¿â ‘â Šâ ›â â »" }, { "input": "foreigner's", "output": "â ¿â ‘â Šâ ›â â »â „â Ž" }, { "input": "foreigners", "output": "â ¿â ‘â Šâ ›â â »â Ž" }, { "input": "foreignness", "output": "â ¿â ‘â Šâ ›â â °â Ž" }, { "input": "foreignness's", "output": "â ¿â ‘â Šâ ›â â °â Žâ „â Ž" }, { "input": "foreknew", "output": "â ¿â ‘â …â â ‘â º" }, { "input": "foreknow", "output": "â ¿â ‘â â …" }, { "input": "foreknowing", "output": "â ¿â ‘â â …â Œ" }, { "input": "foreknowledge", "output": "â ¿â ‘â â …⠇⠫⠛⠑" }, { "input": "foreknowledge's", "output": "â ¿â ‘â â …⠇⠫⠛⠑⠄⠎" }, { "input": "foreknown", "output": "â ¿â ‘â â …â " }, { "input": "foreknows", "output": "â ¿â ‘â â …â Ž" }, { "input": "foreleg", "output": "⠿⠑⠇⠑⠛" }, { "input": "foreleg's", "output": "⠿⠑⠇⠑⠛⠄⠎" }, { "input": "forelegs", "output": "⠿⠑⠇⠑⠛⠎" }, { "input": "forelimb", "output": "⠿⠑⠇⠊â â ƒ" }, { "input": "forelimb's", "output": "⠿⠑⠇⠊â â ƒâ „â Ž" }, { "input": "forelimbs", "output": "⠿⠑⠇⠊â â ƒâ Ž" }, { "input": "forelock", "output": "⠿⠑⠇⠕⠉⠅" }, { "input": "forelock's", "output": "⠿⠑⠇⠕⠉⠅⠄⠎" }, { "input": "forelocks", "output": "⠿⠑⠇⠕⠉⠅⠎" }, { "input": "foreman", "output": "â ¿â ‘â â â " }, { "input": "foreman's", "output": "â ¿â ‘â â â â „â Ž" }, { "input": "foremast", "output": "â ¿â ‘â â â Œ" }, { "input": "foremast's", "output": "â ¿â ‘â â â Œâ „â Ž" }, { "input": "foremasts", "output": "â ¿â ‘â â â Œâ Ž" }, { "input": "foremen", "output": "â ¿â ‘â â ¢" }, { "input": "foremost", "output": "â ¿â ‘â â •â Œ" }, { "input": "forename", "output": "â ¿â ‘â â " }, { "input": "forename's", "output": "â ¿â ‘â â â „â Ž" }, { "input": "forenamed", "output": "â ¿â ‘â â â ™" }, { "input": "forenames", "output": "â ¿â ‘â â â Ž" }, { "input": "forenoon", "output": "â ¿â ‘â â •â •â " }, { "input": "forenoon's", "output": "â ¿â ‘â â •â •â â „â Ž" }, { "input": "forenoons", "output": "â ¿â ‘â â •â •â â Ž" }, { "input": "forensic", "output": "⠿⠢⠎⠊⠉" }, { "input": "forensic's", "output": "⠿⠢⠎⠊⠉⠄⠎" }, { "input": "forensically", "output": "⠿⠢⠎⠊⠉⠠⠽" }, { "input": "forensics", "output": "⠿⠢⠎⠊⠉⠎" }, { "input": "forensics's", "output": "⠿⠢⠎⠊⠉⠎⠄⠎" }, { "input": "foreordain", "output": "â ¿â ‘â •â —â ™â â ”" }, { "input": "foreordained", "output": "â ¿â ‘â •â —â ™â â ”â «" }, { "input": "foreordaining", "output": "â ¿â ‘â •â —â ™â â ”â Œ" }, { "input": "foreordains", "output": "â ¿â ‘â •â —â ™â â ”â Ž" }, { "input": "forepart", "output": "â ¿â ‘â â " }, { "input": "forepart's", "output": "â ¿â ‘â â â „â Ž" }, { "input": "foreparts", "output": "â ¿â ‘â â â Ž" }, { "input": "foreperson", "output": "â ¿â ‘â â »â Žâ •â " }, { "input": "foreperson's", "output": "â ¿â ‘â â »â Žâ •â â „â Ž" }, { "input": "forepersons", "output": "â ¿â ‘â â »â Žâ •â â Ž" }, { "input": "foreplay", "output": "â ¿â ‘â â ‡â â ½" }, { "input": "foreplay's", "output": "â ¿â ‘â â ‡â â ½â „â Ž" }, { "input": "forequarter", "output": "⠿⠑⠟⠥⠜⠞⠻" }, { "input": "forequarter's", "output": "⠿⠑⠟⠥⠜⠞⠻⠄⠎" }, { "input": "forequarters", "output": "⠿⠑⠟⠥⠜⠞⠻⠎" }, { "input": "forerunner", "output": "â ¿â ‘â —â ¥â â â »" }, { "input": "forerunner's", "output": "â ¿â ‘â —â ¥â â â »â „â Ž" }, { "input": "forerunners", "output": "â ¿â ‘â —â ¥â â â »â Ž" }, { "input": "fores", "output": "â ¿â ‘â Ž" }, { "input": "foresail", "output": "â ¿â ‘â Žâ â Šâ ‡" }, { "input": "foresail's", "output": "â ¿â ‘â Žâ â Šâ ‡â „â Ž" }, { "input": "foresails", "output": "â ¿â ‘â Žâ â Šâ ‡â Ž" }, { "input": "foresaw", "output": "â ¿â ‘â Žâ â º" }, { "input": "foresee", "output": "â ¿â ‘â Žâ ‘â ‘" }, { "input": "foreseeable", "output": "â ¿â ‘â Žâ ‘â ‘â â ¼" }, { "input": "foreseeing", "output": "â ¿â ‘â Žâ ‘â ‘â Œ" }, { "input": "foreseen", "output": "â ¿â ‘â Žâ ‘â ¢" }, { "input": "foreseer", "output": "â ¿â ‘â Žâ ‘â »" }, { "input": "foreseer's", "output": "⠿⠑⠎⠑⠻⠄⠎" }, { "input": "foreseers", "output": "⠿⠑⠎⠑⠻⠎" }, { "input": "foresees", "output": "â ¿â ‘â Žâ ‘â ‘â Ž" }, { "input": "foreshadow", "output": "â ¿â ‘â ©â â ™â ª" }, { "input": "foreshadowed", "output": "â ¿â ‘â ©â â ™â ªâ «" }, { "input": "foreshadowing", "output": "â ¿â ‘â ©â â ™â ªâ Œ" }, { "input": "foreshadows", "output": "â ¿â ‘â ©â â ™â ªâ Ž" }, { "input": "foreshorten", "output": "â ¿â ‘â ©â •â —â žâ ¢" }, { "input": "foreshortened", "output": "⠿⠑⠩⠕⠗⠞⠢⠫" }, { "input": "foreshortening", "output": "⠿⠑⠩⠕⠗⠞⠢⠌" }, { "input": "foreshortens", "output": "⠿⠑⠩⠕⠗⠞⠢⠎" }, { "input": "foresight", "output": "⠿⠑⠎⠊⠣⠞" }, { "input": "foresight's", "output": "⠿⠑⠎⠊⠣⠞⠄⠎" }, { "input": "foresighted", "output": "⠿⠑⠎⠊⠣⠞⠫" }, { "input": "foresightedness", "output": "⠿⠑⠎⠊⠣⠞⠫⠰⠎" }, { "input": "foresightedness's", "output": "⠿⠑⠎⠊⠣⠞⠫⠰⠎⠄⠎" }, { "input": "foreskin", "output": "â ¿â ‘â Žâ …â ”" }, { "input": "foreskin's", "output": "⠿⠑⠎⠅⠔⠄⠎" }, { "input": "foreskins", "output": "⠿⠑⠎⠅⠔⠎" }, { "input": "forest", "output": "â ¿â ‘â Œ" }, { "input": "forest's", "output": "⠿⠑⠌⠄⠎" }, { "input": "forestall", "output": "â ¿â ‘â Œâ â ‡â ‡" }, { "input": "forestalled", "output": "â ¿â ‘â Œâ â ‡â ‡â «" }, { "input": "forestalling", "output": "â ¿â ‘â Œâ â ‡â ‡â Œ" }, { "input": "forestalls", "output": "â ¿â ‘â Œâ â ‡â ‡â Ž" }, { "input": "forestation", "output": "⠿⠑⠌⠠â " }, { "input": "forestation's", "output": "⠿⠑⠌⠠â â „â Ž" }, { "input": "forested", "output": "⠿⠑⠌⠫" }, { "input": "forester", "output": "⠿⠑⠌⠻" }, { "input": "forester's", "output": "⠿⠑⠌⠻⠄⠎" }, { "input": "foresters", "output": "⠿⠑⠌⠻⠎" }, { "input": "foresting", "output": "⠿⠑⠌⠌" }, { "input": "forestland", "output": "⠿⠑⠌⠇⠯" }, { "input": "forestland's", "output": "⠿⠑⠌⠇⠯⠄⠎" }, { "input": "forestry", "output": "⠿⠑⠌⠗⠽" }, { "input": "forestry's", "output": "⠿⠑⠌⠗⠽⠄⠎" }, { "input": "forests", "output": "⠿⠑⠌⠎" }, { "input": "foretaste", "output": "â ¿â ‘â žâ â Œâ ‘" }, { "input": "foretaste's", "output": "â ¿â ‘â žâ â Œâ ‘â „â Ž" }, { "input": "foretasted", "output": "â ¿â ‘â žâ â Œâ «" }, { "input": "foretastes", "output": "â ¿â ‘â žâ â Œâ ‘â Ž" }, { "input": "foretasting", "output": "â ¿â ‘â žâ â Œâ Œ" }, { "input": "foretell", "output": "⠿⠑⠞⠑⠇⠇" }, { "input": "foretelling", "output": "⠿⠑⠞⠑⠇⠇⠌" }, { "input": "foretells", "output": "⠿⠑⠞⠑⠇⠇⠎" }, { "input": "forethought", "output": "â ¿â ‘â ¹â â ³" }, { "input": "forethought's", "output": "â ¿â ‘â ¹â â ³â „â Ž" }, { "input": "foretold", "output": "⠿⠑⠞⠕⠇⠙" }, { "input": "forever", "output": "â ¿â â ‘" }, { "input": "forever's", "output": "â ¿â â ‘â „â Ž" }, { "input": "forevermore", "output": "â ¿â â ‘â â •â —â ‘" }, { "input": "forewarn", "output": "⠿⠑⠺⠜â " }, { "input": "forewarned", "output": "⠿⠑⠺⠜â â «" }, { "input": "forewarning", "output": "⠿⠑⠺⠜â â Œ" }, { "input": "forewarns", "output": "⠿⠑⠺⠜â â Ž" }, { "input": "forewent", "output": "⠿⠑⠺⠢⠞" }, { "input": "forewoman", "output": "⠿⠑⠺⠕â â â " }, { "input": "forewoman's", "output": "⠿⠑⠺⠕â â â â „â Ž" }, { "input": "forewomen", "output": "⠿⠑⠺⠕â â ¢" }, { "input": "foreword", "output": "⠿⠑⠘⠺" }, { "input": "foreword's", "output": "⠿⠑⠘⠺⠄⠎" }, { "input": "forewords", "output": "⠿⠑⠘⠺⠎" }, { "input": "forfeit", "output": "â ¿â ‹â ‘â Šâ ž" }, { "input": "forfeit's", "output": "â ¿â ‹â ‘â Šâ žâ „â Ž" }, { "input": "forfeited", "output": "â ¿â ‹â ‘â Šâ žâ «" }, { "input": "forfeiting", "output": "â ¿â ‹â ‘â Šâ žâ Œ" }, { "input": "forfeits", "output": "â ¿â ‹â ‘â Šâ žâ Ž" }, { "input": "forfeiture", "output": "⠿⠋⠑⠊⠞⠥⠗⠑" }, { "input": "forfeiture's", "output": "⠿⠋⠑⠊⠞⠥⠗⠑⠄⠎" }, { "input": "forgather", "output": "â ¿â ›â â ®â —" }, { "input": "forgathered", "output": "â ¿â ›â â ®â —â «" }, { "input": "forgathering", "output": "â ¿â ›â â ®â —â Œ" }, { "input": "forgathers", "output": "â ¿â ›â â ®â —â Ž" }, { "input": "forgave", "output": "â ¿â ›â â §â ‘" }, { "input": "forge", "output": "⠿⠛⠑" }, { "input": "forge's", "output": "⠿⠛⠑⠄⠎" }, { "input": "forged", "output": "⠿⠛⠫" }, { "input": "forger", "output": "⠿⠛⠻" }, { "input": "forger's", "output": "⠿⠛⠻⠄⠎" }, { "input": "forgeries", "output": "⠿⠛⠻⠊⠑⠎" }, { "input": "forgers", "output": "⠿⠛⠻⠎" }, { "input": "forgery", "output": "⠿⠛⠻⠽" }, { "input": "forgery's", "output": "⠿⠛⠻⠽⠄⠎" }, { "input": "forges", "output": "⠿⠛⠑⠎" }, { "input": "forget", "output": "⠿⠛⠑⠞" }, { "input": "forgetful", "output": "⠿⠛⠑⠞⠰⠇" }, { "input": "forgetfully", "output": "⠿⠛⠑⠞⠰⠇⠇⠽" }, { "input": "forgetfulness", "output": "⠿⠛⠑⠞⠰⠇⠰⠎" }, { "input": "forgetfulness's", "output": "⠿⠛⠑⠞⠰⠇⠰⠎⠄⠎" }, { "input": "forgets", "output": "⠿⠛⠑⠞⠎" }, { "input": "forgettable", "output": "⠿⠛⠑⠞⠞â â ¼" }, { "input": "forgetting", "output": "⠿⠛⠑⠞⠞⠌" }, { "input": "forging", "output": "⠿⠛⠌" }, { "input": "forging's", "output": "⠿⠛⠌⠄⠎" }, { "input": "forgings", "output": "⠿⠛⠌⠎" }, { "input": "forgivable", "output": "⠿⠛⠊⠧â â ¼" }, { "input": "forgive", "output": "⠿⠛⠊⠧⠑" }, { "input": "forgiven", "output": "⠿⠛⠊⠧⠢" }, { "input": "forgiveness", "output": "⠿⠛⠊⠧⠑⠰⠎" }, { "input": "forgiveness's", "output": "⠿⠛⠊⠧⠑⠰⠎⠄⠎" }, { "input": "forgiver", "output": "⠿⠛⠊⠧⠻" }, { "input": "forgiver's", "output": "⠿⠛⠊⠧⠻⠄⠎" }, { "input": "forgivers", "output": "⠿⠛⠊⠧⠻⠎" }, { "input": "forgives", "output": "⠿⠛⠊⠧⠑⠎" }, { "input": "forgiving", "output": "⠿⠛⠊⠧⠌" }, { "input": "forgo", "output": "⠿⠛⠕" }, { "input": "forgoer", "output": "⠿⠛⠕⠻" }, { "input": "forgoer's", "output": "⠿⠛⠕⠻⠄⠎" }, { "input": "forgoers", "output": "⠿⠛⠕⠻⠎" }, { "input": "forgoes", "output": "⠿⠛⠕⠑⠎" }, { "input": "forgoing", "output": "⠿⠛⠕⠌" }, { "input": "forgone", "output": "â ¿â ›â â •" }, { "input": "forgot", "output": "⠿⠛⠕⠞" }, { "input": "forgotten", "output": "⠿⠛⠕⠞⠞⠢" }, { "input": "fork", "output": "â ¿â …" }, { "input": "fork's", "output": "â ¿â …â „â Ž" }, { "input": "forked", "output": "â ¿â …â «" }, { "input": "forking", "output": "â ¿â …â Œ" }, { "input": "forklift", "output": "⠿⠅⠇⠊⠋⠞" }, { "input": "forklift's", "output": "⠿⠅⠇⠊⠋⠞⠄⠎" }, { "input": "forklifts", "output": "⠿⠅⠇⠊⠋⠞⠎" }, { "input": "forks", "output": "â ¿â …â Ž" }, { "input": "forlorn", "output": "⠿⠇⠕⠗â " }, { "input": "forlornly", "output": "⠿⠇⠕⠗â â ‡â ½" }, { "input": "form", "output": "â ¿â " }, { "input": "form's", "output": "â ¿â â „â Ž" }, { "input": "formal", "output": "â ¿â â â ‡" }, { "input": "formal's", "output": "â ¿â â â ‡â „â Ž" }, { "input": "formaldehyde", "output": "â ¿â â â ‡â ™â ‘⠓⠽⠙⠑" }, { "input": "formaldehyde's", "output": "â ¿â â â ‡â ™â ‘⠓⠽⠙⠑⠄⠎" }, { "input": "formalism", "output": "â ¿â â â ‡â Šâ Žâ " }, { "input": "formalism's", "output": "â ¿â â â ‡â Šâ Žâ â „â Ž" }, { "input": "formalities", "output": "â ¿â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "formality", "output": "â ¿â â â ‡â °â ½" }, { "input": "formality's", "output": "â ¿â â â ‡â °â ½â „â Ž" }, { "input": "formalization", "output": "â ¿â â â ‡â Šâ µâ  â " }, { "input": "formalization's", "output": "â ¿â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "formalize", "output": "â ¿â â â ‡â Šâ µâ ‘" }, { "input": "formalized", "output": "â ¿â â â ‡â Šâ µâ «" }, { "input": "formalizes", "output": "â ¿â â â ‡â Šâ µâ ‘â Ž" }, { "input": "formalizing", "output": "â ¿â â â ‡â Šâ µâ Œ" }, { "input": "formally", "output": "â ¿â â  â ½" }, { "input": "formals", "output": "â ¿â â â ‡â Ž" }, { "input": "format", "output": "â ¿â â â ž" }, { "input": "format's", "output": "â ¿â â â žâ „â Ž" }, { "input": "formation", "output": "â ¿â â  â " }, { "input": "formation's", "output": "â ¿â â  â â „â Ž" }, { "input": "formations", "output": "â ¿â â  â â Ž" }, { "input": "formative", "output": "â ¿â â â žâ Šâ §â ‘" }, { "input": "formats", "output": "â ¿â â â žâ Ž" }, { "input": "formatted", "output": "â ¿â â â žâ žâ «" }, { "input": "formatting", "output": "â ¿â â â žâ žâ Œ" }, { "input": "formatting's", "output": "â ¿â â â žâ žâ Œâ „â Ž" }, { "input": "formed", "output": "â ¿â â «" }, { "input": "former", "output": "â ¿â â »" }, { "input": "former's", "output": "â ¿â â »â „â Ž" }, { "input": "formerly", "output": "â ¿â â »â ‡â ½" }, { "input": "formfitting", "output": "â ¿â â ‹â Šâ žâ žâ Œ" }, { "input": "formic", "output": "â ¿â â Šâ ‰" }, { "input": "formidable", "output": "â ¿â â Šâ ™â â ¼" }, { "input": "formidably", "output": "â ¿â â Šâ ™â â ƒâ ‡â ½" }, { "input": "forming", "output": "â ¿â â Œ" }, { "input": "formless", "output": "â ¿â â ¨â Ž" }, { "input": "formlessly", "output": "â ¿â â ¨â Žâ ‡â ½" }, { "input": "formlessness", "output": "â ¿â â ¨â Žâ °â Ž" }, { "input": "formlessness's", "output": "â ¿â â ¨â Žâ °â Žâ „â Ž" }, { "input": "forms", "output": "â ¿â â Ž" }, { "input": "formula", "output": "â ¿â â ¥â ‡â " }, { "input": "formula's", "output": "â ¿â â ¥â ‡â â „â Ž" }, { "input": "formulaic", "output": "â ¿â â ¥â ‡â â Šâ ‰" }, { "input": "formulas", "output": "â ¿â â ¥â ‡â â Ž" }, { "input": "formulate", "output": "â ¿â â ¥â ‡â â žâ ‘" }, { "input": "formulated", "output": "â ¿â â ¥â ‡â â žâ «" }, { "input": "formulates", "output": "â ¿â â ¥â ‡â â žâ ‘â Ž" }, { "input": "formulating", "output": "â ¿â â ¥â ‡â â žâ Œ" }, { "input": "formulation", "output": "â ¿â â ¥â ‡â  â " }, { "input": "formulation's", "output": "â ¿â â ¥â ‡â  â â „â Ž" }, { "input": "formulations", "output": "â ¿â â ¥â ‡â  â â Ž" }, { "input": "formulator", "output": "â ¿â â ¥â ‡â â žâ •â —" }, { "input": "formulator's", "output": "â ¿â â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "formulators", "output": "â ¿â â ¥â ‡â â žâ •â —â Ž" }, { "input": "fornicate", "output": "â ¿â â Šâ ‰â â žâ ‘" }, { "input": "fornicated", "output": "â ¿â â Šâ ‰â â žâ «" }, { "input": "fornicates", "output": "â ¿â â Šâ ‰â â žâ ‘â Ž" }, { "input": "fornicating", "output": "â ¿â â Šâ ‰â â žâ Œ" }, { "input": "fornication", "output": "â ¿â â Šâ ‰â  â " }, { "input": "fornication's", "output": "â ¿â â Šâ ‰â  â â „â Ž" }, { "input": "forsake", "output": "â ¿â Žâ â …â ‘" }, { "input": "forsaken", "output": "â ¿â Žâ â …â ¢" }, { "input": "forsakes", "output": "â ¿â Žâ â …â ‘â Ž" }, { "input": "forsaking", "output": "â ¿â Žâ â …â Œ" }, { "input": "forsook", "output": "â ¿â Žâ •â •â …" }, { "input": "forsooth", "output": "â ¿â Žâ •â •â ¹" }, { "input": "forswear", "output": "⠿⠎⠺⠑⠜" }, { "input": "forswearing", "output": "⠿⠎⠺⠑⠜⠌" }, { "input": "forswears", "output": "⠿⠎⠺⠑⠜⠎" }, { "input": "forswore", "output": "⠿⠎⠺⠕⠗⠑" }, { "input": "forsworn", "output": "⠿⠎⠺⠕⠗â " }, { "input": "forsythia", "output": "⠿⠎⠽⠹⠊â " }, { "input": "forsythia's", "output": "⠿⠎⠽⠹⠊â â „â Ž" }, { "input": "forsythias", "output": "⠿⠎⠽⠹⠊â â Ž" }, { "input": "fort", "output": "â ¿â ž" }, { "input": "fort's", "output": "â ¿â žâ „â Ž" }, { "input": "forte", "output": "â ¿â žâ ‘" }, { "input": "forte's", "output": "â ¿â žâ ‘â „â Ž" }, { "input": "fortes", "output": "â ¿â žâ ‘â Ž" }, { "input": "forth", "output": "â ¿â ¹" }, { "input": "forthcoming", "output": "⠿⠹⠉⠕â â Œ" }, { "input": "forthcoming's", "output": "⠿⠹⠉⠕â â Œâ „â Ž" }, { "input": "forthright", "output": "â ¿â ¹â â —" }, { "input": "forthrightly", "output": "â ¿â ¹â â —⠇⠽" }, { "input": "forthrightness", "output": "â ¿â ¹â â —â °â Ž" }, { "input": "forthrightness's", "output": "â ¿â ¹â â —â °â Žâ „â Ž" }, { "input": "forthwith", "output": "⠿⠹⠾" }, { "input": "forties", "output": "â ¿â žâ Šâ ‘â Ž" }, { "input": "fortieth", "output": "â ¿â žâ Šâ ‘â ¹" }, { "input": "fortieth's", "output": "⠿⠞⠊⠑⠹⠄⠎" }, { "input": "fortieths", "output": "⠿⠞⠊⠑⠹⠎" }, { "input": "fortification", "output": "⠿⠞⠊⠋⠊⠉⠠â " }, { "input": "fortification's", "output": "⠿⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "fortifications", "output": "⠿⠞⠊⠋⠊⠉⠠â â Ž" }, { "input": "fortified", "output": "â ¿â žâ Šâ ‹â Šâ «" }, { "input": "fortifier", "output": "â ¿â žâ Šâ ‹â Šâ »" }, { "input": "fortifier's", "output": "⠿⠞⠊⠋⠊⠻⠄⠎" }, { "input": "fortifiers", "output": "⠿⠞⠊⠋⠊⠻⠎" }, { "input": "fortifies", "output": "â ¿â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "fortify", "output": "â ¿â žâ Šâ ‹â ½" }, { "input": "fortifying", "output": "⠿⠞⠊⠋⠽⠌" }, { "input": "fortissimo", "output": "â ¿â žâ Šâ Žâ Žâ Šâ â •" }, { "input": "fortitude", "output": "⠿⠞⠊⠞⠥⠙⠑" }, { "input": "fortitude's", "output": "⠿⠞⠊⠞⠥⠙⠑⠄⠎" }, { "input": "fortnight", "output": "â ¿â žâ â Šâ £â ž" }, { "input": "fortnight's", "output": "â ¿â žâ â Šâ £â žâ „â Ž" }, { "input": "fortnightly", "output": "â ¿â žâ â Šâ £â žâ ‡â ½" }, { "input": "fortnights", "output": "â ¿â žâ â Šâ £â žâ Ž" }, { "input": "fortress", "output": "â ¿â žâ —â ‘â Žâ Ž" }, { "input": "fortress's", "output": "â ¿â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "fortresses", "output": "â ¿â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "forts", "output": "â ¿â žâ Ž" }, { "input": "fortuitous", "output": "⠿⠞⠥⠊⠞⠳⠎" }, { "input": "fortuitously", "output": "⠿⠞⠥⠊⠞⠳⠎⠇⠽" }, { "input": "fortuitousness", "output": "⠿⠞⠥⠊⠞⠳⠎⠰⠎" }, { "input": "fortuitousness's", "output": "⠿⠞⠥⠊⠞⠳⠎⠰⠎⠄⠎" }, { "input": "fortuity", "output": "⠿⠞⠥⠰⠽" }, { "input": "fortuity's", "output": "⠿⠞⠥⠰⠽⠄⠎" }, { "input": "fortunate", "output": "â ¿â žâ ¥â â â žâ ‘" }, { "input": "fortunately", "output": "â ¿â žâ ¥â â â žâ ‘⠇⠽" }, { "input": "fortune", "output": "â ¿â žâ ¥â â ‘" }, { "input": "fortune's", "output": "â ¿â žâ ¥â â ‘â „â Ž" }, { "input": "fortunes", "output": "â ¿â žâ ¥â â ‘â Ž" }, { "input": "fortuneteller", "output": "â ¿â žâ ¥â â ‘⠞⠑⠇⠇⠻" }, { "input": "fortuneteller's", "output": "â ¿â žâ ¥â â ‘⠞⠑⠇⠇⠻⠄⠎" }, { "input": "fortunetellers", "output": "â ¿â žâ ¥â â ‘⠞⠑⠇⠇⠻⠎" }, { "input": "fortunetelling", "output": "â ¿â žâ ¥â â ‘⠞⠑⠇⠇⠌" }, { "input": "fortunetelling's", "output": "â ¿â žâ ¥â â ‘⠞⠑⠇⠇⠌⠄⠎" }, { "input": "forty", "output": "â ¿â žâ ½" }, { "input": "forty's", "output": "⠿⠞⠽⠄⠎" }, { "input": "forum", "output": "â ¿â ¥â " }, { "input": "forum's", "output": "â ¿â ¥â â „â Ž" }, { "input": "forums", "output": "â ¿â ¥â â Ž" }, { "input": "forward", "output": "⠿⠺⠜⠙" }, { "input": "forward's", "output": "⠿⠺⠜⠙⠄⠎" }, { "input": "forwarded", "output": "⠿⠺⠜⠙⠫" }, { "input": "forwarder", "output": "⠿⠺⠜⠙⠻" }, { "input": "forwarder's", "output": "⠿⠺⠜⠙⠻⠄⠎" }, { "input": "forwarders", "output": "⠿⠺⠜⠙⠻⠎" }, { "input": "forwardest", "output": "⠿⠺⠜⠙⠑⠌" }, { "input": "forwarding", "output": "⠿⠺⠜⠙⠌" }, { "input": "forwardly", "output": "⠿⠺⠜⠙⠇⠽" }, { "input": "forwardness", "output": "⠿⠺⠜⠙⠰⠎" }, { "input": "forwardness's", "output": "⠿⠺⠜⠙⠰⠎⠄⠎" }, { "input": "forwards", "output": "⠿⠺⠜⠙⠎" }, { "input": "forwent", "output": "⠿⠺⠢⠞" }, { "input": "fossil", "output": "â ‹â •â Žâ Žâ Šâ ‡" }, { "input": "fossil's", "output": "⠋⠕⠎⠎⠊⠇⠄⠎" }, { "input": "fossilization", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠠â " }, { "input": "fossilization's", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "fossilize", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠑" }, { "input": "fossilized", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠫" }, { "input": "fossilizes", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠑⠎" }, { "input": "fossilizing", "output": "⠋⠕⠎⠎⠊⠇⠊⠵⠌" }, { "input": "fossils", "output": "⠋⠕⠎⠎⠊⠇⠎" }, { "input": "foster", "output": "⠋⠕⠌⠻" }, { "input": "fostered", "output": "⠋⠕⠌⠻⠫" }, { "input": "fostering", "output": "⠋⠕⠌⠻⠌" }, { "input": "fosters", "output": "⠋⠕⠌⠻⠎" }, { "input": "fought", "output": "â ‹â â ³" }, { "input": "foul", "output": "⠋⠳⠇" }, { "input": "foul's", "output": "⠋⠳⠇⠄⠎" }, { "input": "foulard", "output": "⠋⠳⠇⠜⠙" }, { "input": "foulard's", "output": "⠋⠳⠇⠜⠙⠄⠎" }, { "input": "fouled", "output": "⠋⠳⠇⠫" }, { "input": "fouler", "output": "⠋⠳⠇⠻" }, { "input": "foulest", "output": "⠋⠳⠇⠑⠌" }, { "input": "fouling", "output": "⠋⠳⠇⠌" }, { "input": "foully", "output": "⠋⠳⠇⠇⠽" }, { "input": "foulmouthed", "output": "⠋⠳⠇â â ³â ®â ™" }, { "input": "foulness", "output": "⠋⠳⠇⠰⠎" }, { "input": "foulness's", "output": "⠋⠳⠇⠰⠎⠄⠎" }, { "input": "fouls", "output": "⠋⠳⠇⠎" }, { "input": "found", "output": "⠋⠨⠙" }, { "input": "foundation", "output": "⠋⠨⠙⠠â " }, { "input": "foundation's", "output": "⠋⠨⠙⠠â â „â Ž" }, { "input": "foundations", "output": "⠋⠨⠙⠠â â Ž" }, { "input": "founded", "output": "⠋⠨⠙⠫" }, { "input": "founder", "output": "⠋⠨⠙⠻" }, { "input": "founder's", "output": "⠋⠨⠙⠻⠄⠎" }, { "input": "foundered", "output": "⠋⠨⠙⠻⠫" }, { "input": "foundering", "output": "⠋⠨⠙⠻⠌" }, { "input": "founders", "output": "⠋⠨⠙⠻⠎" }, { "input": "founding", "output": "⠋⠨⠙⠌" }, { "input": "foundling", "output": "⠋⠨⠙⠇⠌" }, { "input": "foundling's", "output": "⠋⠨⠙⠇⠌⠄⠎" }, { "input": "foundlings", "output": "⠋⠨⠙⠇⠌⠎" }, { "input": "foundries", "output": "⠋⠨⠙⠗⠊⠑⠎" }, { "input": "foundry", "output": "⠋⠨⠙⠗⠽" }, { "input": "foundry's", "output": "⠋⠨⠙⠗⠽⠄⠎" }, { "input": "founds", "output": "⠋⠨⠙⠎" }, { "input": "fount", "output": "⠋⠨⠞" }, { "input": "fount's", "output": "⠋⠨⠞⠄⠎" }, { "input": "fountain", "output": "⠋⠨⠞â â ”" }, { "input": "fountain's", "output": "⠋⠨⠞â â ”â „â Ž" }, { "input": "fountainhead", "output": "⠋⠨⠞â â ”â “â ‚â ™" }, { "input": "fountainhead's", "output": "⠋⠨⠞â â ”⠓⠂⠙⠄⠎" }, { "input": "fountainheads", "output": "⠋⠨⠞â â ”⠓⠂⠙⠎" }, { "input": "fountains", "output": "⠋⠨⠞â â ”â Ž" }, { "input": "founts", "output": "⠋⠨⠞⠎" }, { "input": "four", "output": "⠋⠳⠗" }, { "input": "four's", "output": "⠋⠳⠗⠄⠎" }, { "input": "fourfold", "output": "⠋⠳⠗⠋⠕⠇⠙" }, { "input": "fourposter", "output": "⠋⠳⠗â â •⠌⠻" }, { "input": "fourposter's", "output": "⠋⠳⠗â â •⠌⠻⠄⠎" }, { "input": "fourposters", "output": "⠋⠳⠗â â •⠌⠻⠎" }, { "input": "fours", "output": "⠋⠳⠗⠎" }, { "input": "fourscore", "output": "⠋⠳⠗⠎⠉⠕⠗⠑" }, { "input": "fourscore's", "output": "⠋⠳⠗⠎⠉⠕⠗⠑⠄⠎" }, { "input": "foursome", "output": "⠋⠳⠗â â Ž" }, { "input": "foursome's", "output": "⠋⠳⠗â â Žâ „â Ž" }, { "input": "foursomes", "output": "⠋⠳⠗â â Žâ Ž" }, { "input": "foursquare", "output": "⠋⠳⠗⠎⠟⠥⠜⠑" }, { "input": "fourteen", "output": "⠋⠳⠗⠞⠑⠢" }, { "input": "fourteen's", "output": "⠋⠳⠗⠞⠑⠢⠄⠎" }, { "input": "fourteens", "output": "⠋⠳⠗⠞⠑⠢⠎" }, { "input": "fourteenth", "output": "⠋⠳⠗⠞⠑⠢⠹" }, { "input": "fourteenth's", "output": "⠋⠳⠗⠞⠑⠢⠹⠄⠎" }, { "input": "fourteenths", "output": "⠋⠳⠗⠞⠑⠢⠹⠎" }, { "input": "fourth", "output": "⠋⠳⠗⠹" }, { "input": "fourth's", "output": "⠋⠳⠗⠹⠄⠎" }, { "input": "fourthly", "output": "⠋⠳⠗⠹⠇⠽" }, { "input": "fourths", "output": "⠋⠳⠗⠹⠎" }, { "input": "fowl", "output": "⠋⠪⠇" }, { "input": "fowl's", "output": "⠋⠪⠇⠄⠎" }, { "input": "fowled", "output": "⠋⠪⠇⠫" }, { "input": "fowling", "output": "⠋⠪⠇⠌" }, { "input": "fowls", "output": "⠋⠪⠇⠎" }, { "input": "fox", "output": "â ‹â •â ­" }, { "input": "fox's", "output": "â ‹â •â ­â „â Ž" }, { "input": "foxed", "output": "â ‹â •â ­â «" }, { "input": "foxes", "output": "â ‹â •â ­â ‘â Ž" }, { "input": "foxfire", "output": "â ‹â •â ­â ‹â Šâ —â ‘" }, { "input": "foxfire's", "output": "â ‹â •â ­â ‹â Šâ —â ‘â „â Ž" }, { "input": "foxglove", "output": "⠋⠕⠭⠛⠇⠕⠧⠑" }, { "input": "foxglove's", "output": "⠋⠕⠭⠛⠇⠕⠧⠑⠄⠎" }, { "input": "foxgloves", "output": "⠋⠕⠭⠛⠇⠕⠧⠑⠎" }, { "input": "foxhole", "output": "⠋⠕⠭⠓⠕⠇⠑" }, { "input": "foxhole's", "output": "⠋⠕⠭⠓⠕⠇⠑⠄⠎" }, { "input": "foxholes", "output": "⠋⠕⠭⠓⠕⠇⠑⠎" }, { "input": "foxhound", "output": "⠋⠕⠭⠓⠨⠙" }, { "input": "foxhound's", "output": "⠋⠕⠭⠓⠨⠙⠄⠎" }, { "input": "foxhounds", "output": "⠋⠕⠭⠓⠨⠙⠎" }, { "input": "foxier", "output": "â ‹â •â ­â Šâ »" }, { "input": "foxiest", "output": "â ‹â •â ­â Šâ ‘â Œ" }, { "input": "foxily", "output": "⠋⠕⠭⠊⠇⠽" }, { "input": "foxiness", "output": "â ‹â •â ­â Šâ °â Ž" }, { "input": "foxiness's", "output": "â ‹â •â ­â Šâ °â Žâ „â Ž" }, { "input": "foxing", "output": "â ‹â •â ­â Œ" }, { "input": "foxtrot", "output": "â ‹â •â ­â žâ —â •â ž" }, { "input": "foxtrot's", "output": "â ‹â •â ­â žâ —â •â žâ „â Ž" }, { "input": "foxtrots", "output": "â ‹â •â ­â žâ —â •â žâ Ž" }, { "input": "foxtrotted", "output": "â ‹â •â ­â žâ —â •â žâ žâ «" }, { "input": "foxtrotting", "output": "â ‹â •â ­â žâ —â •â žâ žâ Œ" }, { "input": "foxy", "output": "â ‹â •â ­â ½" }, { "input": "foyer", "output": "⠋⠕⠽⠻" }, { "input": "foyer's", "output": "⠋⠕⠽⠻⠄⠎" }, { "input": "foyers", "output": "⠋⠕⠽⠻⠎" }, { "input": "fracas", "output": "â ‹â —â â ‰â â Ž" }, { "input": "fracas's", "output": "â ‹â —â â ‰â â Žâ „â Ž" }, { "input": "fracases", "output": "â ‹â —â â ‰â â Žâ ‘â Ž" }, { "input": "fractal", "output": "â ‹â —â â ‰â žâ â ‡" }, { "input": "fractal's", "output": "â ‹â —â â ‰â žâ â ‡â „â Ž" }, { "input": "fractals", "output": "â ‹â —â â ‰â žâ â ‡â Ž" }, { "input": "fraction", "output": "â ‹â —â â ‰â °â " }, { "input": "fraction's", "output": "â ‹â —â â ‰â °â â „â Ž" }, { "input": "fractional", "output": "â ‹â —â â ‰â °â â â ‡" }, { "input": "fractionally", "output": "â ‹â —â â ‰â °â â  â ½" }, { "input": "fractions", "output": "â ‹â —â â ‰â °â â Ž" }, { "input": "fractious", "output": "â ‹â —â â ‰â žâ Šâ ³â Ž" }, { "input": "fractiously", "output": "â ‹â —â â ‰â žâ Šâ ³â Žâ ‡â ½" }, { "input": "fractiousness's", "output": "â ‹â —â â ‰â žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "fracture", "output": "â ‹â —â â ‰â žâ ¥â —â ‘" }, { "input": "fracture's", "output": "â ‹â —â â ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "fractured", "output": "â ‹â —â â ‰â žâ ¥â —â «" }, { "input": "fractures", "output": "â ‹â —â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "fracturing", "output": "â ‹â —â â ‰â žâ ¥â —â Œ" }, { "input": "fragile", "output": "â ‹â —â â ›â Šâ ‡â ‘" }, { "input": "fragility", "output": "â ‹â —â â ›â Šâ ‡â °â ½" }, { "input": "fragility's", "output": "â ‹â —â â ›â Šâ ‡â °â ½â „â Ž" }, { "input": "fragment", "output": "â ‹â —â â ›â °â ž" }, { "input": "fragment's", "output": "â ‹â —â â ›â °â žâ „â Ž" }, { "input": "fragmentary", "output": "â ‹â —â â ›â °â žâ œâ ½" }, { "input": "fragmentary's", "output": "â ‹â —â â ›â °â žâ œâ ½â „â Ž" }, { "input": "fragmentation", "output": "â ‹â —â â ›â °â žâ  â " }, { "input": "fragmentation's", "output": "â ‹â —â â ›â °â žâ  â â „â Ž" }, { "input": "fragmented", "output": "â ‹â —â â ›â °â žâ «" }, { "input": "fragmenting", "output": "â ‹â —â â ›â °â žâ Œ" }, { "input": "fragments", "output": "â ‹â —â â ›â °â žâ Ž" }, { "input": "fragrance", "output": "â ‹â —â â ›â —⠨⠑" }, { "input": "fragrance's", "output": "â ‹â —â â ›â —⠨⠑⠄⠎" }, { "input": "fragrances", "output": "â ‹â —â â ›â —⠨⠑⠎" }, { "input": "fragrant", "output": "â ‹â —â â ›â —â â â ž" }, { "input": "fragrantly", "output": "â ‹â —â â ›â —â â â žâ ‡â ½" }, { "input": "frail", "output": "â ‹â —â â Šâ ‡" }, { "input": "frailer", "output": "â ‹â —â â Šâ ‡â »" }, { "input": "frailest", "output": "â ‹â —â â Šâ ‡â ‘â Œ" }, { "input": "frailly", "output": "â ‹â —â â Šâ ‡â ‡â ½" }, { "input": "frailness", "output": "â ‹â —â â Šâ ‡â °â Ž" }, { "input": "frailness's", "output": "â ‹â —â â Šâ ‡â °â Žâ „â Ž" }, { "input": "frailties", "output": "â ‹â —â â Šâ ‡â žâ Šâ ‘â Ž" }, { "input": "frailty", "output": "â ‹â —â â Šâ ‡â žâ ½" }, { "input": "frailty's", "output": "â ‹â —â â Šâ ‡â žâ ½â „â Ž" }, { "input": "frame", "output": "â ‹â —â â â ‘" }, { "input": "frame's", "output": "â ‹â —â â â ‘â „â Ž" }, { "input": "framed", "output": "â ‹â —â â â «" }, { "input": "framer", "output": "â ‹â —â â â »" }, { "input": "framer's", "output": "â ‹â —â â â »â „â Ž" }, { "input": "framers", "output": "â ‹â —â â â »â Ž" }, { "input": "frames", "output": "â ‹â —â â â ‘â Ž" }, { "input": "framework", "output": "â ‹â —â â â ‘â â º" }, { "input": "framework's", "output": "â ‹â —â â â ‘â â ºâ „â Ž" }, { "input": "frameworks", "output": "â ‹â —â â â ‘â â ºâ Ž" }, { "input": "framing", "output": "â ‹â —â â â Œ" }, { "input": "franc", "output": "â ‹â —â â â ‰" }, { "input": "franc's", "output": "â ‹â —â â â ‰â „â Ž" }, { "input": "franchise", "output": "â ‹â —â â â ¡â Šâ Žâ ‘" }, { "input": "franchise's", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â „â Ž" }, { "input": "franchised", "output": "â ‹â —â â â ¡â Šâ Žâ «" }, { "input": "franchisee", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â ‘" }, { "input": "franchisee's", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â ‘â „â Ž" }, { "input": "franchisees", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â ‘â Ž" }, { "input": "franchiser", "output": "â ‹â —â â â ¡â Šâ Žâ »" }, { "input": "franchiser's", "output": "â ‹â —â â â ¡â Šâ Žâ »â „â Ž" }, { "input": "franchisers", "output": "â ‹â —â â â ¡â Šâ Žâ »â Ž" }, { "input": "franchises", "output": "â ‹â —â â â ¡â Šâ Žâ ‘â Ž" }, { "input": "franchising", "output": "â ‹â —â â â ¡â Šâ Žâ Œ" }, { "input": "francium", "output": "â ‹â —â â â ‰â Šâ ¥â " }, { "input": "francium's", "output": "â ‹â —â â â ‰â Šâ ¥â â „â Ž" }, { "input": "francs", "output": "â ‹â —â â â ‰â Ž" }, { "input": "frangibility", "output": "â ‹â —â â â ›â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "frangibility's", "output": "â ‹â —â â â ›â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "frangible", "output": "â ‹â —â â â ›â Šâ ¼" }, { "input": "frank", "output": "â ‹â —â â â …" }, { "input": "frank's", "output": "â ‹â —â â â …â „â Ž" }, { "input": "franked", "output": "â ‹â —â â â …â «" }, { "input": "franker", "output": "â ‹â —â â â …â »" }, { "input": "frankest", "output": "â ‹â —â â â …â ‘â Œ" }, { "input": "frankfurter", "output": "â ‹â —â â â …⠋⠥⠗⠞⠻" }, { "input": "frankfurter's", "output": "â ‹â —â â â …⠋⠥⠗⠞⠻⠄⠎" }, { "input": "frankfurters", "output": "â ‹â —â â â …⠋⠥⠗⠞⠻⠎" }, { "input": "frankincense", "output": "â ‹â —â â â …⠔⠉⠢⠎⠑" }, { "input": "frankincense's", "output": "â ‹â —â â â …⠔⠉⠢⠎⠑⠄⠎" }, { "input": "franking", "output": "â ‹â —â â â …â Œ" }, { "input": "frankly", "output": "â ‹â —â â â …⠇⠽" }, { "input": "frankness", "output": "â ‹â —â â â …â °â Ž" }, { "input": "frankness's", "output": "â ‹â —â â â …â °â Žâ „â Ž" }, { "input": "franks", "output": "â ‹â —â â â …â Ž" }, { "input": "frantic", "output": "â ‹â —â â â žâ Šâ ‰" }, { "input": "frantically", "output": "â ‹â —â â â žâ Šâ ‰â  â ½" }, { "input": "frappes", "output": "â ‹â —â â â â ‘â Ž" }, { "input": "frat", "output": "â ‹â —â â ž" }, { "input": "frat's", "output": "â ‹â —â â žâ „â Ž" }, { "input": "fraternal", "output": "â ‹â —â â žâ »â â â ‡" }, { "input": "fraternally", "output": "â ‹â —â â žâ »â â  â ½" }, { "input": "fraternities", "output": "â ‹â —â â žâ »â â Šâ žâ Šâ ‘â Ž" }, { "input": "fraternity", "output": "â ‹â —â â žâ »â â °â ½" }, { "input": "fraternity's", "output": "â ‹â —â â žâ »â â °â ½â „â Ž" }, { "input": "fraternization", "output": "â ‹â —â â žâ »â â Šâ µâ  â " }, { "input": "fraternization's", "output": "â ‹â —â â žâ »â â Šâ µâ  â â „â Ž" }, { "input": "fraternize", "output": "â ‹â —â â žâ »â â Šâ µâ ‘" }, { "input": "fraternized", "output": "â ‹â —â â žâ »â â Šâ µâ «" }, { "input": "fraternizer", "output": "â ‹â —â â žâ »â â Šâ µâ »" }, { "input": "fraternizer's", "output": "â ‹â —â â žâ »â â Šâ µâ »â „â Ž" }, { "input": "fraternizers", "output": "â ‹â —â â žâ »â â Šâ µâ »â Ž" }, { "input": "fraternizes", "output": "â ‹â —â â žâ »â â Šâ µâ ‘â Ž" }, { "input": "fraternizing", "output": "â ‹â —â â žâ »â â Šâ µâ Œ" }, { "input": "fratricide", "output": "â ‹â —â â žâ —⠊⠉⠊⠙⠑" }, { "input": "fratricide's", "output": "â ‹â —â â žâ —⠊⠉⠊⠙⠑⠄⠎" }, { "input": "fratricides", "output": "â ‹â —â â žâ —⠊⠉⠊⠙⠑⠎" }, { "input": "frats", "output": "â ‹â —â â žâ Ž" }, { "input": "fraud", "output": "â ‹â —â â ¥â ™" }, { "input": "fraud's", "output": "â ‹â —â â ¥â ™â „â Ž" }, { "input": "frauds", "output": "â ‹â —â â ¥â ™â Ž" }, { "input": "fraudulence", "output": "â ‹â —â â ¥â ™â ¥â ‡â °â ‘" }, { "input": "fraudulence's", "output": "â ‹â —â â ¥â ™â ¥â ‡â °â ‘â „â Ž" }, { "input": "fraudulent", "output": "â ‹â —â â ¥â ™â ¥â ‡â ¢â ž" }, { "input": "fraudulently", "output": "â ‹â —â â ¥â ™â ¥â ‡â ¢â žâ ‡â ½" }, { "input": "fraught", "output": "â ‹â —â â ¥â £â ž" }, { "input": "fray", "output": "â ‹â —â â ½" }, { "input": "fray's", "output": "â ‹â —â â ½â „â Ž" }, { "input": "frayed", "output": "â ‹â —â â ½â «" }, { "input": "fraying", "output": "â ‹â —â â ½â Œ" }, { "input": "frays", "output": "â ‹â —â â ½â Ž" }, { "input": "frazzle", "output": "â ‹â —â â µâ µâ ‡â ‘" }, { "input": "frazzle's", "output": "â ‹â —â â µâ µâ ‡â ‘â „â Ž" }, { "input": "frazzled", "output": "â ‹â —â â µâ µâ ‡â «" }, { "input": "frazzles", "output": "â ‹â —â â µâ µâ ‡â ‘â Ž" }, { "input": "frazzling", "output": "â ‹â —â â µâ µâ ‡â Œ" }, { "input": "freak", "output": "â ‹â —â ‚â …" }, { "input": "freak's", "output": "â ‹â —â ‚â …â „â Ž" }, { "input": "freaked", "output": "â ‹â —â ‚â …â «" }, { "input": "freakier", "output": "â ‹â —â ‚â …â Šâ »" }, { "input": "freakiest", "output": "â ‹â —â ‚â …â Šâ ‘â Œ" }, { "input": "freaking", "output": "â ‹â —â ‚â …â Œ" }, { "input": "freakish", "output": "â ‹â —â ‚â …â Šâ ©" }, { "input": "freakishness's", "output": "â ‹â —â ‚â …â Šâ ©â °â Žâ „â Ž" }, { "input": "freaks", "output": "â ‹â —â ‚â …â Ž" }, { "input": "freaky", "output": "â ‹â —â ‚â …â ½" }, { "input": "freckle", "output": "⠋⠗⠑⠉⠅⠇⠑" }, { "input": "freckle's", "output": "⠋⠗⠑⠉⠅⠇⠑⠄⠎" }, { "input": "freckled", "output": "⠋⠗⠑⠉⠅⠇⠫" }, { "input": "freckles", "output": "⠋⠗⠑⠉⠅⠇⠑⠎" }, { "input": "frecklier", "output": "⠋⠗⠑⠉⠅⠇⠊⠻" }, { "input": "freckliest", "output": "⠋⠗⠑⠉⠅⠇⠊⠑⠌" }, { "input": "freckling", "output": "⠋⠗⠑⠉⠅⠇⠌" }, { "input": "freckly", "output": "⠋⠗⠑⠉⠅⠇⠽" }, { "input": "free", "output": "â ‹â —â ‘â ‘" }, { "input": "freebase", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ ‘" }, { "input": "freebase's", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ ‘â „â Ž" }, { "input": "freebased", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ «" }, { "input": "freebases", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ ‘â Ž" }, { "input": "freebasing", "output": "â ‹â —â ‘â ‘â ƒâ â Žâ Œ" }, { "input": "freebie", "output": "⠋⠗⠑⠑⠃⠊⠑" }, { "input": "freebie's", "output": "⠋⠗⠑⠑⠃⠊⠑⠄⠎" }, { "input": "freebies", "output": "⠋⠗⠑⠑⠃⠊⠑⠎" }, { "input": "freebooter", "output": "⠋⠗⠑⠑⠃⠕⠕⠞⠻" }, { "input": "freebooter's", "output": "⠋⠗⠑⠑⠃⠕⠕⠞⠻⠄⠎" }, { "input": "freebooters", "output": "⠋⠗⠑⠑⠃⠕⠕⠞⠻⠎" }, { "input": "freeborn", "output": "⠋⠗⠑⠑⠃⠕⠗â " }, { "input": "freed", "output": "â ‹â —â ‘â «" }, { "input": "freedman", "output": "â ‹â —â ‘â «â â â " }, { "input": "freedman's", "output": "â ‹â —â ‘â «â â â â „â Ž" }, { "input": "freedmen", "output": "â ‹â —â ‘â «â â ¢" }, { "input": "freedom", "output": "⠋⠗⠑⠑⠙⠕â " }, { "input": "freedom's", "output": "⠋⠗⠑⠑⠙⠕â â „â Ž" }, { "input": "freedoms", "output": "⠋⠗⠑⠑⠙⠕â â Ž" }, { "input": "freehand", "output": "â ‹â —â ‘â ‘â “â ¯" }, { "input": "freehold", "output": "⠋⠗⠑⠑⠓⠕⠇⠙" }, { "input": "freehold's", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠄⠎" }, { "input": "freeholder", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠻" }, { "input": "freeholder's", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠻⠄⠎" }, { "input": "freeholders", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠻⠎" }, { "input": "freeholds", "output": "⠋⠗⠑⠑⠓⠕⠇⠙⠎" }, { "input": "freeing", "output": "â ‹â —â ‘â ‘â Œ" }, { "input": "freelance", "output": "⠋⠗⠑⠑⠇⠨⠑" }, { "input": "freelance's", "output": "⠋⠗⠑⠑⠇⠨⠑⠄⠎" }, { "input": "freelanced", "output": "⠋⠗⠑⠑⠇⠨⠑⠙" }, { "input": "freelancer", "output": "⠋⠗⠑⠑⠇⠨⠑⠗" }, { "input": "freelancer's", "output": "⠋⠗⠑⠑⠇⠨⠑⠗⠄⠎" }, { "input": "freelancers", "output": "⠋⠗⠑⠑⠇⠨⠑⠗⠎" }, { "input": "freelances", "output": "⠋⠗⠑⠑⠇⠨⠑⠎" }, { "input": "freelancing", "output": "â ‹â —â ‘â ‘â ‡â â â ‰â Œ" }, { "input": "freeload", "output": "⠋⠗⠑⠑⠇⠕â â ™" }, { "input": "freeloaded", "output": "⠋⠗⠑⠑⠇⠕â â ™â «" }, { "input": "freeloader", "output": "⠋⠗⠑⠑⠇⠕â â ™â »" }, { "input": "freeloader's", "output": "⠋⠗⠑⠑⠇⠕â â ™â »â „â Ž" }, { "input": "freeloaders", "output": "⠋⠗⠑⠑⠇⠕â â ™â »â Ž" }, { "input": "freeloading", "output": "⠋⠗⠑⠑⠇⠕â â ™â Œ" }, { "input": "freeloads", "output": "⠋⠗⠑⠑⠇⠕â â ™â Ž" }, { "input": "freely", "output": "⠋⠗⠑⠑⠇⠽" }, { "input": "freeman", "output": "â ‹â —â ‘â ‘â â â " }, { "input": "freeman's", "output": "â ‹â —â ‘â ‘â â â â „â Ž" }, { "input": "freemen", "output": "â ‹â —â ‘â ‘â â ¢" }, { "input": "freer", "output": "â ‹â —â ‘â »" }, { "input": "frees", "output": "â ‹â —â ‘â ‘â Ž" }, { "input": "freest", "output": "â ‹â —â ‘â ‘â Œ" }, { "input": "freestanding", "output": "⠋⠗⠑⠑⠌⠯⠌" }, { "input": "freestone", "output": "â ‹â —â ‘â ‘â Œâ â •" }, { "input": "freestone's", "output": "â ‹â —â ‘â ‘â Œâ â •â „â Ž" }, { "input": "freestones", "output": "â ‹â —â ‘â ‘â Œâ â •â Ž" }, { "input": "freestyle", "output": "⠋⠗⠑⠑⠌⠽⠇⠑" }, { "input": "freestyle's", "output": "⠋⠗⠑⠑⠌⠽⠇⠑⠄⠎" }, { "input": "freestyles", "output": "⠋⠗⠑⠑⠌⠽⠇⠑⠎" }, { "input": "freethinker", "output": "⠋⠗⠑⠑⠹⠔⠅⠻" }, { "input": "freethinker's", "output": "⠋⠗⠑⠑⠹⠔⠅⠻⠄⠎" }, { "input": "freethinkers", "output": "⠋⠗⠑⠑⠹⠔⠅⠻⠎" }, { "input": "freethinking", "output": "⠋⠗⠑⠑⠹⠔⠅⠌" }, { "input": "freethinking's", "output": "⠋⠗⠑⠑⠹⠔⠅⠌⠄⠎" }, { "input": "freeware's", "output": "⠋⠗⠑⠑⠺⠜⠑⠄⠎" }, { "input": "freeway", "output": "â ‹â —â ‘â ‘â ºâ â ½" }, { "input": "freeway's", "output": "â ‹â —â ‘â ‘â ºâ â ½â „â Ž" }, { "input": "freeways", "output": "â ‹â —â ‘â ‘â ºâ â ½â Ž" }, { "input": "freewheel", "output": "⠋⠗⠑⠑⠱⠑⠑⠇" }, { "input": "freewheeled", "output": "⠋⠗⠑⠑⠱⠑⠑⠇⠫" }, { "input": "freewheeling", "output": "⠋⠗⠑⠑⠱⠑⠑⠇⠌" }, { "input": "freewheels", "output": "⠋⠗⠑⠑⠱⠑⠑⠇⠎" }, { "input": "freewill", "output": "⠋⠗⠑⠑⠺⠊⠇⠇" }, { "input": "freezable", "output": "â ‹â —â ‘â ‘â µâ â ¼" }, { "input": "freeze", "output": "⠋⠗⠑⠑⠵⠑" }, { "input": "freeze's", "output": "⠋⠗⠑⠑⠵⠑⠄⠎" }, { "input": "freezer", "output": "⠋⠗⠑⠑⠵⠻" }, { "input": "freezer's", "output": "⠋⠗⠑⠑⠵⠻⠄⠎" }, { "input": "freezers", "output": "⠋⠗⠑⠑⠵⠻⠎" }, { "input": "freezes", "output": "⠋⠗⠑⠑⠵⠑⠎" }, { "input": "freezing", "output": "⠋⠗⠑⠑⠵⠌" }, { "input": "freezing's", "output": "⠋⠗⠑⠑⠵⠌⠄⠎" }, { "input": "freight", "output": "⠋⠗⠑⠊⠣⠞" }, { "input": "freight's", "output": "⠋⠗⠑⠊⠣⠞⠄⠎" }, { "input": "freighted", "output": "⠋⠗⠑⠊⠣⠞⠫" }, { "input": "freighter", "output": "⠋⠗⠑⠊⠣⠞⠻" }, { "input": "freighter's", "output": "⠋⠗⠑⠊⠣⠞⠻⠄⠎" }, { "input": "freighters", "output": "⠋⠗⠑⠊⠣⠞⠻⠎" }, { "input": "freighting", "output": "⠋⠗⠑⠊⠣⠞⠌" }, { "input": "freights", "output": "⠋⠗⠑⠊⠣⠞⠎" }, { "input": "french", "output": "⠋⠗⠢⠡" }, { "input": "frenetic", "output": "⠋⠗⠢⠑⠞⠊⠉" }, { "input": "frenetically", "output": "⠋⠗⠢⠑⠞⠊⠉⠠⠽" }, { "input": "frenzied", "output": "⠋⠗⠢⠵⠊⠫" }, { "input": "frenziedly", "output": "⠋⠗⠢⠵⠊⠫⠇⠽" }, { "input": "frenzies", "output": "⠋⠗⠢⠵⠊⠑⠎" }, { "input": "frenzy", "output": "⠋⠗⠢⠵⠽" }, { "input": "frenzy's", "output": "⠋⠗⠢⠵⠽⠄⠎" }, { "input": "frequencies", "output": "⠋⠗⠑⠟⠥⠢⠉⠊⠑⠎" }, { "input": "frequency", "output": "⠋⠗⠑⠟⠥⠢⠉⠽" }, { "input": "frequency's", "output": "⠋⠗⠑⠟⠥⠢⠉⠽⠄⠎" }, { "input": "frequent", "output": "⠋⠗⠑⠟⠥⠢⠞" }, { "input": "frequented", "output": "⠋⠗⠑⠟⠥⠢⠞⠫" }, { "input": "frequenter", "output": "⠋⠗⠑⠟⠥⠢⠞⠻" }, { "input": "frequenter's", "output": "⠋⠗⠑⠟⠥⠢⠞⠻⠄⠎" }, { "input": "frequenters", "output": "⠋⠗⠑⠟⠥⠢⠞⠻⠎" }, { "input": "frequentest", "output": "⠋⠗⠑⠟⠥⠢⠞⠑⠌" }, { "input": "frequenting", "output": "⠋⠗⠑⠟⠥⠢⠞⠌" }, { "input": "frequently", "output": "⠋⠗⠑⠟⠥⠢⠞⠇⠽" }, { "input": "frequents", "output": "⠋⠗⠑⠟⠥⠢⠞⠎" }, { "input": "fresco", "output": "⠋⠗⠑⠎⠉⠕" }, { "input": "fresco's", "output": "⠋⠗⠑⠎⠉⠕⠄⠎" }, { "input": "frescoes", "output": "⠋⠗⠑⠎⠉⠕⠑⠎" }, { "input": "fresh", "output": "â ‹â —â ‘â ©" }, { "input": "freshen", "output": "â ‹â —â ‘â ©â ¢" }, { "input": "freshened", "output": "⠋⠗⠑⠩⠢⠫" }, { "input": "freshener", "output": "⠋⠗⠑⠩⠢⠻" }, { "input": "freshener's", "output": "⠋⠗⠑⠩⠢⠻⠄⠎" }, { "input": "fresheners", "output": "⠋⠗⠑⠩⠢⠻⠎" }, { "input": "freshening", "output": "⠋⠗⠑⠩⠢⠌" }, { "input": "freshens", "output": "⠋⠗⠑⠩⠢⠎" }, { "input": "fresher", "output": "â ‹â —â ‘â ©â »" }, { "input": "freshest", "output": "â ‹â —â ‘â ©â ‘â Œ" }, { "input": "freshet", "output": "â ‹â —â ‘â ©â ‘â ž" }, { "input": "freshet's", "output": "â ‹â —â ‘â ©â ‘â žâ „â Ž" }, { "input": "freshets", "output": "â ‹â —â ‘â ©â ‘â žâ Ž" }, { "input": "freshly", "output": "⠋⠗⠑⠩⠇⠽" }, { "input": "freshman", "output": "â ‹â —â ‘â ©â â â " }, { "input": "freshman's", "output": "â ‹â —â ‘â ©â â â â „â Ž" }, { "input": "freshmen", "output": "â ‹â —â ‘â ©â â ¢" }, { "input": "freshness", "output": "â ‹â —â ‘â ©â °â Ž" }, { "input": "freshness's", "output": "â ‹â —â ‘â ©â °â Žâ „â Ž" }, { "input": "freshwater", "output": "â ‹â —â ‘â ©â ºâ â žâ »" }, { "input": "freshwater's", "output": "â ‹â —â ‘â ©â ºâ â žâ »â „â Ž" }, { "input": "fret", "output": "â ‹â —â ‘â ž" }, { "input": "fret's", "output": "â ‹â —â ‘â žâ „â Ž" }, { "input": "fretful", "output": "â ‹â —â ‘â žâ °â ‡" }, { "input": "fretfully", "output": "⠋⠗⠑⠞⠰⠇⠇⠽" }, { "input": "fretfulness", "output": "⠋⠗⠑⠞⠰⠇⠰⠎" }, { "input": "fretfulness's", "output": "⠋⠗⠑⠞⠰⠇⠰⠎⠄⠎" }, { "input": "frets", "output": "â ‹â —â ‘â žâ Ž" }, { "input": "fretsaw", "output": "â ‹â —â ‘â žâ Žâ â º" }, { "input": "fretsaw's", "output": "â ‹â —â ‘â žâ Žâ â ºâ „â Ž" }, { "input": "fretsaws", "output": "â ‹â —â ‘â žâ Žâ â ºâ Ž" }, { "input": "fretted", "output": "â ‹â —â ‘â žâ žâ «" }, { "input": "fretting", "output": "â ‹â —â ‘â žâ žâ Œ" }, { "input": "fretwork", "output": "â ‹â —â ‘â žâ â º" }, { "input": "fretwork's", "output": "â ‹â —â ‘â žâ â ºâ „â Ž" }, { "input": "friable", "output": "â ‹â —â Šâ â ¼" }, { "input": "friar", "output": "â ‹â —â Šâ œ" }, { "input": "friar's", "output": "⠋⠗⠊⠜⠄⠎" }, { "input": "friars", "output": "⠋⠗⠊⠜⠎" }, { "input": "fricassee", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘" }, { "input": "fricassee's", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘â „â Ž" }, { "input": "fricasseed", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â «" }, { "input": "fricasseeing", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘â Œ" }, { "input": "fricassees", "output": "â ‹â —â Šâ ‰â â Žâ Žâ ‘â ‘â Ž" }, { "input": "friction", "output": "⠋⠗⠊⠉⠰â " }, { "input": "friction's", "output": "⠋⠗⠊⠉⠰â â „â Ž" }, { "input": "frictional", "output": "⠋⠗⠊⠉⠰â â â ‡" }, { "input": "fridge", "output": "⠋⠗⠊⠙⠛⠑" }, { "input": "fridge's", "output": "⠋⠗⠊⠙⠛⠑⠄⠎" }, { "input": "fridges", "output": "⠋⠗⠊⠙⠛⠑⠎" }, { "input": "fried", "output": "â ‹â —â Šâ «" }, { "input": "friedcake", "output": "â ‹â —â Šâ «â ‰â â …â ‘" }, { "input": "friedcake's", "output": "â ‹â —â Šâ «â ‰â â …â ‘â „â Ž" }, { "input": "friedcakes", "output": "â ‹â —â Šâ «â ‰â â …â ‘â Ž" }, { "input": "friend", "output": "â ‹â —" }, { "input": "friend's", "output": "â ‹â —â „â Ž" }, { "input": "friendless", "output": "⠋⠗⠨⠎" }, { "input": "friendlier", "output": "⠋⠗⠇⠊⠻" }, { "input": "friendlies", "output": "⠋⠗⠇⠊⠑⠎" }, { "input": "friendliest", "output": "⠋⠗⠇⠊⠑⠌" }, { "input": "friendliness", "output": "⠋⠗⠇⠊⠰⠎" }, { "input": "friendliness's", "output": "⠋⠗⠇⠊⠰⠎⠄⠎" }, { "input": "friendly", "output": "⠋⠗⠇⠽" }, { "input": "friendly's", "output": "⠋⠗⠇⠽⠄⠎" }, { "input": "friends", "output": "â ‹â —â Ž" }, { "input": "friendship", "output": "â ‹â —â ©â Šâ " }, { "input": "friendship's", "output": "â ‹â —â ©â Šâ â „â Ž" }, { "input": "friendships", "output": "â ‹â —â ©â Šâ â Ž" }, { "input": "fries", "output": "â ‹â —â Šâ ‘â Ž" }, { "input": "frieze", "output": "⠋⠗⠊⠑⠵⠑" }, { "input": "frieze's", "output": "⠋⠗⠊⠑⠵⠑⠄⠎" }, { "input": "friezes", "output": "⠋⠗⠊⠑⠵⠑⠎" }, { "input": "frigate", "output": "â ‹â —â Šâ ›â â žâ ‘" }, { "input": "frigate's", "output": "â ‹â —â Šâ ›â â žâ ‘â „â Ž" }, { "input": "frigates", "output": "â ‹â —â Šâ ›â â žâ ‘â Ž" }, { "input": "fright", "output": "â ‹â â —" }, { "input": "fright's", "output": "â ‹â â —â „â Ž" }, { "input": "frighted", "output": "â ‹â â —â «" }, { "input": "frighten", "output": "â ‹â â —â ¢" }, { "input": "frightened", "output": "â ‹â â —⠢⠫" }, { "input": "frightening", "output": "â ‹â â —⠢⠌" }, { "input": "frighteningly", "output": "â ‹â â —⠢⠌⠇⠽" }, { "input": "frightens", "output": "â ‹â â —⠢⠎" }, { "input": "frightful", "output": "â ‹â â —â °â ‡" }, { "input": "frightfully", "output": "â ‹â â —⠰⠇⠇⠽" }, { "input": "frightfulness", "output": "â ‹â â —⠰⠇⠰⠎" }, { "input": "frightfulness's", "output": "â ‹â â —⠰⠇⠰⠎⠄⠎" }, { "input": "frighting", "output": "â ‹â â —â Œ" }, { "input": "frights", "output": "â ‹â â —â Ž" }, { "input": "frigid", "output": "⠋⠗⠊⠛⠊⠙" }, { "input": "frigidity", "output": "⠋⠗⠊⠛⠊⠙⠰⠽" }, { "input": "frigidity's", "output": "⠋⠗⠊⠛⠊⠙⠰⠽⠄⠎" }, { "input": "frigidly", "output": "⠋⠗⠊⠛⠊⠙⠇⠽" }, { "input": "frigidness", "output": "⠋⠗⠊⠛⠊⠙⠰⠎" }, { "input": "frigidness's", "output": "⠋⠗⠊⠛⠊⠙⠰⠎⠄⠎" }, { "input": "frill", "output": "⠋⠗⠊⠇⠇" }, { "input": "frill's", "output": "⠋⠗⠊⠇⠇⠄⠎" }, { "input": "frillier", "output": "⠋⠗⠊⠇⠇⠊⠻" }, { "input": "frilliest", "output": "⠋⠗⠊⠇⠇⠊⠑⠌" }, { "input": "frills", "output": "⠋⠗⠊⠇⠇⠎" }, { "input": "frilly", "output": "⠋⠗⠊⠇⠇⠽" }, { "input": "fringe", "output": "⠋⠗⠌⠑" }, { "input": "fringe's", "output": "⠋⠗⠌⠑⠄⠎" }, { "input": "fringed", "output": "⠋⠗⠌⠫" }, { "input": "fringes", "output": "⠋⠗⠌⠑⠎" }, { "input": "fringing", "output": "⠋⠗⠌⠌" }, { "input": "fripperies", "output": "â ‹â —â Šâ â â »â Šâ ‘â Ž" }, { "input": "frippery", "output": "â ‹â —â Šâ â â »â ½" }, { "input": "frippery's", "output": "â ‹â —â Šâ â â »â ½â „â Ž" }, { "input": "frisk", "output": "â ‹â —â Šâ Žâ …" }, { "input": "frisked", "output": "â ‹â —â Šâ Žâ …â «" }, { "input": "friskier", "output": "â ‹â —â Šâ Žâ …â Šâ »" }, { "input": "friskiest", "output": "â ‹â —â Šâ Žâ …â Šâ ‘â Œ" }, { "input": "friskily", "output": "⠋⠗⠊⠎⠅⠊⠇⠽" }, { "input": "friskiness", "output": "â ‹â —â Šâ Žâ …â Šâ °â Ž" }, { "input": "friskiness's", "output": "â ‹â —â Šâ Žâ …â Šâ °â Žâ „â Ž" }, { "input": "frisking", "output": "â ‹â —â Šâ Žâ …â Œ" }, { "input": "frisks", "output": "â ‹â —â Šâ Žâ …â Ž" }, { "input": "frisky", "output": "â ‹â —â Šâ Žâ …â ½" }, { "input": "fritter", "output": "â ‹â —â Šâ žâ žâ »" }, { "input": "fritter's", "output": "⠋⠗⠊⠞⠞⠻⠄⠎" }, { "input": "frittered", "output": "⠋⠗⠊⠞⠞⠻⠫" }, { "input": "frittering", "output": "⠋⠗⠊⠞⠞⠻⠌" }, { "input": "fritters", "output": "⠋⠗⠊⠞⠞⠻⠎" }, { "input": "fritz", "output": "â ‹â —â Šâ žâ µ" }, { "input": "fritz's", "output": "⠋⠗⠊⠞⠵⠄⠎" }, { "input": "frivolities", "output": "⠋⠗⠊⠧⠕⠇⠊⠞⠊⠑⠎" }, { "input": "frivolity", "output": "⠋⠗⠊⠧⠕⠇⠰⠽" }, { "input": "frivolity's", "output": "⠋⠗⠊⠧⠕⠇⠰⠽⠄⠎" }, { "input": "frivolous", "output": "⠋⠗⠊⠧⠕⠇⠳⠎" }, { "input": "frivolously", "output": "⠋⠗⠊⠧⠕⠇⠳⠎⠇⠽" }, { "input": "frivolousness", "output": "⠋⠗⠊⠧⠕⠇⠳⠎⠰⠎" }, { "input": "frivolousness's", "output": "⠋⠗⠊⠧⠕⠇⠳⠎⠰⠎⠄⠎" }, { "input": "frizz", "output": "⠋⠗⠊⠵⠵" }, { "input": "frizz's", "output": "⠋⠗⠊⠵⠵⠄⠎" }, { "input": "frizzed", "output": "⠋⠗⠊⠵⠵⠫" }, { "input": "frizzes", "output": "⠋⠗⠊⠵⠵⠑⠎" }, { "input": "frizzier", "output": "⠋⠗⠊⠵⠵⠊⠻" }, { "input": "frizziest", "output": "⠋⠗⠊⠵⠵⠊⠑⠌" }, { "input": "frizzing", "output": "⠋⠗⠊⠵⠵⠌" }, { "input": "frizzle", "output": "⠋⠗⠊⠵⠵⠇⠑" }, { "input": "frizzle's", "output": "⠋⠗⠊⠵⠵⠇⠑⠄⠎" }, { "input": "frizzled", "output": "⠋⠗⠊⠵⠵⠇⠫" }, { "input": "frizzles", "output": "⠋⠗⠊⠵⠵⠇⠑⠎" }, { "input": "frizzlier", "output": "⠋⠗⠊⠵⠵⠇⠊⠻" }, { "input": "frizzliest", "output": "⠋⠗⠊⠵⠵⠇⠊⠑⠌" }, { "input": "frizzling", "output": "⠋⠗⠊⠵⠵⠇⠌" }, { "input": "frizzly", "output": "⠋⠗⠊⠵⠵⠇⠽" }, { "input": "frizzy", "output": "⠋⠗⠊⠵⠵⠽" }, { "input": "fro", "output": "â ‹â —â •" }, { "input": "frock", "output": "⠋⠗⠕⠉⠅" }, { "input": "frock's", "output": "⠋⠗⠕⠉⠅⠄⠎" }, { "input": "frocks", "output": "⠋⠗⠕⠉⠅⠎" }, { "input": "frog", "output": "â ‹â —â •â ›" }, { "input": "frog's", "output": "⠋⠗⠕⠛⠄⠎" }, { "input": "frogman", "output": "â ‹â —â •â ›â â â " }, { "input": "frogman's", "output": "â ‹â —â •â ›â â â â „â Ž" }, { "input": "frogmen", "output": "â ‹â —â •â ›â â ¢" }, { "input": "frogs", "output": "⠋⠗⠕⠛⠎" }, { "input": "frolic", "output": "⠋⠗⠕⠇⠊⠉" }, { "input": "frolic's", "output": "⠋⠗⠕⠇⠊⠉⠄⠎" }, { "input": "frolicked", "output": "⠋⠗⠕⠇⠊⠉⠅⠫" }, { "input": "frolicker", "output": "⠋⠗⠕⠇⠊⠉⠅⠻" }, { "input": "frolicker's", "output": "⠋⠗⠕⠇⠊⠉⠅⠻⠄⠎" }, { "input": "frolickers", "output": "⠋⠗⠕⠇⠊⠉⠅⠻⠎" }, { "input": "frolicking", "output": "⠋⠗⠕⠇⠊⠉⠅⠌" }, { "input": "frolics", "output": "⠋⠗⠕⠇⠊⠉⠎" }, { "input": "frolicsome", "output": "⠋⠗⠕⠇⠊⠉â â Ž" }, { "input": "from", "output": "â ‹" }, { "input": "frond", "output": "â ‹â —â •â â ™" }, { "input": "frond's", "output": "â ‹â —â •â â ™â „â Ž" }, { "input": "fronds", "output": "â ‹â —â •â â ™â Ž" }, { "input": "front", "output": "â ‹â —â •â â ž" }, { "input": "front's", "output": "â ‹â —â •â â žâ „â Ž" }, { "input": "frontage", "output": "â ‹â —â •â â žâ â ›â ‘" }, { "input": "frontage's", "output": "â ‹â —â •â â žâ â ›â ‘â „â Ž" }, { "input": "frontages", "output": "â ‹â —â •â â žâ â ›â ‘â Ž" }, { "input": "frontal", "output": "â ‹â —â •â â žâ â ‡" }, { "input": "frontally", "output": "â ‹â —â •â â žâ  â ½" }, { "input": "fronted", "output": "â ‹â —â •â â žâ «" }, { "input": "frontier", "output": "â ‹â —â •â â žâ Šâ »" }, { "input": "frontier's", "output": "â ‹â —â •â â žâ Šâ »â „â Ž" }, { "input": "frontiers", "output": "â ‹â —â •â â žâ Šâ »â Ž" }, { "input": "frontiersman", "output": "â ‹â —â •â â žâ Šâ »â Žâ â â " }, { "input": "frontiersman's", "output": "â ‹â —â •â â žâ Šâ »â Žâ â â â „â Ž" }, { "input": "frontiersmen", "output": "â ‹â —â •â â žâ Šâ »â Žâ â ¢" }, { "input": "fronting", "output": "â ‹â —â •â â žâ Œ" }, { "input": "frontispiece", "output": "â ‹â —â •â â žâ Šâ Žâ â Šâ ‘⠉⠑" }, { "input": "frontispiece's", "output": "â ‹â —â •â â žâ Šâ Žâ â Šâ ‘⠉⠑⠄⠎" }, { "input": "frontispieces", "output": "â ‹â —â •â â žâ Šâ Žâ â Šâ ‘⠉⠑⠎" }, { "input": "fronts", "output": "â ‹â —â •â â žâ Ž" }, { "input": "frontward", "output": "â ‹â —â •â â žâ ºâ œâ ™" }, { "input": "frontwards", "output": "â ‹â —â •â â žâ ºâ œâ ™â Ž" }, { "input": "frost", "output": "â ‹â —â •â Œ" }, { "input": "frost's", "output": "⠋⠗⠕⠌⠄⠎" }, { "input": "frostbit", "output": "⠋⠗⠕⠌⠃⠊⠞" }, { "input": "frostbite", "output": "⠋⠗⠕⠌⠃⠊⠞⠑" }, { "input": "frostbite's", "output": "⠋⠗⠕⠌⠃⠊⠞⠑⠄⠎" }, { "input": "frostbites", "output": "⠋⠗⠕⠌⠃⠊⠞⠑⠎" }, { "input": "frostbiting", "output": "⠋⠗⠕⠌⠃⠊⠞⠌" }, { "input": "frostbitten", "output": "⠋⠗⠕⠌⠃⠊⠞⠞⠢" }, { "input": "frosted", "output": "⠋⠗⠕⠌⠫" }, { "input": "frostier", "output": "⠋⠗⠕⠌⠊⠻" }, { "input": "frostiest", "output": "⠋⠗⠕⠌⠊⠑⠌" }, { "input": "frostily", "output": "⠋⠗⠕⠌⠊⠇⠽" }, { "input": "frostiness", "output": "⠋⠗⠕⠌⠊⠰⠎" }, { "input": "frostiness's", "output": "⠋⠗⠕⠌⠊⠰⠎⠄⠎" }, { "input": "frosting", "output": "⠋⠗⠕⠌⠌" }, { "input": "frosting's", "output": "⠋⠗⠕⠌⠌⠄⠎" }, { "input": "frosts", "output": "⠋⠗⠕⠌⠎" }, { "input": "frosty", "output": "⠋⠗⠕⠌⠽" }, { "input": "froth", "output": "â ‹â —â •â ¹" }, { "input": "froth's", "output": "⠋⠗⠕⠹⠄⠎" }, { "input": "frothed", "output": "⠋⠗⠕⠮⠙" }, { "input": "frothier", "output": "⠋⠗⠕⠹⠊⠻" }, { "input": "frothiest", "output": "⠋⠗⠕⠹⠊⠑⠌" }, { "input": "frothiness", "output": "⠋⠗⠕⠹⠊⠰⠎" }, { "input": "frothiness's", "output": "⠋⠗⠕⠹⠊⠰⠎⠄⠎" }, { "input": "frothing", "output": "⠋⠗⠕⠹⠌" }, { "input": "froths", "output": "⠋⠗⠕⠹⠎" }, { "input": "frothy", "output": "⠋⠗⠕⠹⠽" }, { "input": "froufrou", "output": "⠋⠗⠳⠋⠗⠳" }, { "input": "froufrou's", "output": "⠋⠗⠳⠋⠗⠳⠄⠎" }, { "input": "froward", "output": "⠋⠗⠕⠺⠜⠙" }, { "input": "frowardness", "output": "⠋⠗⠕⠺⠜⠙⠰⠎" }, { "input": "frowardness's", "output": "⠋⠗⠕⠺⠜⠙⠰⠎⠄⠎" }, { "input": "frown", "output": "â ‹â —â ªâ " }, { "input": "frown's", "output": "â ‹â —â ªâ â „â Ž" }, { "input": "frowned", "output": "â ‹â —â ªâ â «" }, { "input": "frowning", "output": "â ‹â —â ªâ â Œ" }, { "input": "frowns", "output": "â ‹â —â ªâ â Ž" }, { "input": "frowzier", "output": "⠋⠗⠪⠵⠊⠻" }, { "input": "frowziest", "output": "⠋⠗⠪⠵⠊⠑⠌" }, { "input": "frowzily", "output": "⠋⠗⠪⠵⠊⠇⠽" }, { "input": "frowziness", "output": "⠋⠗⠪⠵⠊⠰⠎" }, { "input": "frowziness's", "output": "⠋⠗⠪⠵⠊⠰⠎⠄⠎" }, { "input": "frowzy", "output": "⠋⠗⠪⠵⠽" }, { "input": "froze", "output": "⠋⠗⠕⠵⠑" }, { "input": "frozen", "output": "⠋⠗⠕⠵⠢" }, { "input": "fructified", "output": "⠋⠗⠥⠉⠞⠊⠋⠊⠫" }, { "input": "fructifies", "output": "⠋⠗⠥⠉⠞⠊⠋⠊⠑⠎" }, { "input": "fructify", "output": "⠋⠗⠥⠉⠞⠊⠋⠽" }, { "input": "fructifying", "output": "⠋⠗⠥⠉⠞⠊⠋⠽⠌" }, { "input": "fructose", "output": "⠋⠗⠥⠉⠞⠕⠎⠑" }, { "input": "fructose's", "output": "⠋⠗⠥⠉⠞⠕⠎⠑⠄⠎" }, { "input": "frugal", "output": "⠋⠗⠥⠛â â ‡" }, { "input": "frugality", "output": "⠋⠗⠥⠛â â ‡â °â ½" }, { "input": "frugality's", "output": "⠋⠗⠥⠛â â ‡â °â ½â „â Ž" }, { "input": "frugally", "output": "⠋⠗⠥⠛⠠⠽" }, { "input": "fruit", "output": "⠋⠗⠥⠊⠞" }, { "input": "fruit's", "output": "⠋⠗⠥⠊⠞⠄⠎" }, { "input": "fruitcake", "output": "⠋⠗⠥⠊⠞⠉â â …â ‘" }, { "input": "fruitcake's", "output": "⠋⠗⠥⠊⠞⠉â â …â ‘â „â Ž" }, { "input": "fruitcakes", "output": "⠋⠗⠥⠊⠞⠉â â …â ‘â Ž" }, { "input": "fruited", "output": "⠋⠗⠥⠊⠞⠫" }, { "input": "fruitful", "output": "⠋⠗⠥⠊⠞⠰⠇" }, { "input": "fruitfully", "output": "⠋⠗⠥⠊⠞⠰⠇⠇⠽" }, { "input": "fruitfulness", "output": "⠋⠗⠥⠊⠞⠰⠇⠰⠎" }, { "input": "fruitfulness's", "output": "⠋⠗⠥⠊⠞⠰⠇⠰⠎⠄⠎" }, { "input": "fruitier", "output": "⠋⠗⠥⠊⠞⠊⠻" }, { "input": "fruitiest", "output": "⠋⠗⠥⠊⠞⠊⠑⠌" }, { "input": "fruitiness", "output": "⠋⠗⠥⠊⠞⠊⠰⠎" }, { "input": "fruitiness's", "output": "⠋⠗⠥⠊⠞⠊⠰⠎⠄⠎" }, { "input": "fruiting", "output": "⠋⠗⠥⠊⠞⠌" }, { "input": "fruition", "output": "⠋⠗⠥⠊⠰â " }, { "input": "fruition's", "output": "⠋⠗⠥⠊⠰â â „â Ž" }, { "input": "fruitless", "output": "⠋⠗⠥⠊⠞⠨⠎" }, { "input": "fruitlessly", "output": "⠋⠗⠥⠊⠞⠨⠎⠇⠽" }, { "input": "fruitlessness", "output": "⠋⠗⠥⠊⠞⠨⠎⠰⠎" }, { "input": "fruitlessness's", "output": "⠋⠗⠥⠊⠞⠨⠎⠰⠎⠄⠎" }, { "input": "fruits", "output": "⠋⠗⠥⠊⠞⠎" }, { "input": "fruity", "output": "⠋⠗⠥⠊⠞⠽" }, { "input": "frump", "output": "â ‹â —â ¥â â " }, { "input": "frump's", "output": "â ‹â —â ¥â â â „â Ž" }, { "input": "frumpier", "output": "â ‹â —â ¥â â â Šâ »" }, { "input": "frumpiest", "output": "â ‹â —â ¥â â â Šâ ‘â Œ" }, { "input": "frumps", "output": "â ‹â —â ¥â â â Ž" }, { "input": "frumpy", "output": "â ‹â —â ¥â â â ½" }, { "input": "frustrate", "output": "⠋⠗⠥⠌⠗â â žâ ‘" }, { "input": "frustrated", "output": "⠋⠗⠥⠌⠗â â žâ «" }, { "input": "frustrates", "output": "⠋⠗⠥⠌⠗â â žâ ‘â Ž" }, { "input": "frustrating", "output": "⠋⠗⠥⠌⠗â â žâ Œ" }, { "input": "frustratingly", "output": "⠋⠗⠥⠌⠗â â žâ Œâ ‡â ½" }, { "input": "frustration", "output": "⠋⠗⠥⠌⠗⠠â " }, { "input": "frustration's", "output": "⠋⠗⠥⠌⠗⠠â â „â Ž" }, { "input": "frustrations", "output": "⠋⠗⠥⠌⠗⠠â â Ž" }, { "input": "frustum", "output": "⠋⠗⠥⠌⠥â " }, { "input": "frustum's", "output": "⠋⠗⠥⠌⠥â â „â Ž" }, { "input": "frustums", "output": "⠋⠗⠥⠌⠥â â Ž" }, { "input": "fry", "output": "â ‹â —â ½" }, { "input": "fry's", "output": "⠋⠗⠽⠄⠎" }, { "input": "fryer", "output": "⠋⠗⠽⠻" }, { "input": "fryer's", "output": "⠋⠗⠽⠻⠄⠎" }, { "input": "fryers", "output": "⠋⠗⠽⠻⠎" }, { "input": "frying", "output": "⠋⠗⠽⠌" }, { "input": "fuchsia", "output": "⠋⠥⠡⠎⠊â " }, { "input": "fuchsia's", "output": "⠋⠥⠡⠎⠊â â „â Ž" }, { "input": "fuchsias", "output": "⠋⠥⠡⠎⠊â â Ž" }, { "input": "fuck", "output": "⠋⠥⠉⠅" }, { "input": "fuck's", "output": "⠋⠥⠉⠅⠄⠎" }, { "input": "fucked", "output": "⠋⠥⠉⠅⠫" }, { "input": "fucker", "output": "⠋⠥⠉⠅⠻" }, { "input": "fucker's", "output": "⠋⠥⠉⠅⠻⠄⠎" }, { "input": "fuckers", "output": "⠋⠥⠉⠅⠻⠎" }, { "input": "fucking", "output": "⠋⠥⠉⠅⠌" }, { "input": "fucks", "output": "⠋⠥⠉⠅⠎" }, { "input": "fuddle", "output": "⠋⠥⠲⠇⠑" }, { "input": "fuddle's", "output": "⠋⠥⠲⠇⠑⠄⠎" }, { "input": "fuddled", "output": "⠋⠥⠲⠇⠫" }, { "input": "fuddles", "output": "⠋⠥⠲⠇⠑⠎" }, { "input": "fuddling", "output": "⠋⠥⠲⠇⠌" }, { "input": "fudge", "output": "⠋⠥⠙⠛⠑" }, { "input": "fudge's", "output": "⠋⠥⠙⠛⠑⠄⠎" }, { "input": "fudged", "output": "⠋⠥⠙⠛⠫" }, { "input": "fudges", "output": "⠋⠥⠙⠛⠑⠎" }, { "input": "fudging", "output": "⠋⠥⠙⠛⠌" }, { "input": "fuehrer", "output": "⠋⠥⠑⠓⠗⠻" }, { "input": "fuehrer's", "output": "⠋⠥⠑⠓⠗⠻⠄⠎" }, { "input": "fuehrers", "output": "⠋⠥⠑⠓⠗⠻⠎" }, { "input": "fuel", "output": "⠋⠥⠑⠇" }, { "input": "fuel's", "output": "⠋⠥⠑⠇⠄⠎" }, { "input": "fueled", "output": "⠋⠥⠑⠇⠫" }, { "input": "fueling", "output": "⠋⠥⠑⠇⠌" }, { "input": "fuels", "output": "⠋⠥⠑⠇⠎" }, { "input": "fugal", "output": "⠋⠥⠛â â ‡" }, { "input": "fugitive", "output": "⠋⠥⠛⠊⠞⠊⠧⠑" }, { "input": "fugitive's", "output": "⠋⠥⠛⠊⠞⠊⠧⠑⠄⠎" }, { "input": "fugitives", "output": "⠋⠥⠛⠊⠞⠊⠧⠑⠎" }, { "input": "fugue", "output": "⠋⠥⠛⠥⠑" }, { "input": "fugue's", "output": "⠋⠥⠛⠥⠑⠄⠎" }, { "input": "fugues", "output": "⠋⠥⠛⠥⠑⠎" }, { "input": "fuhrer", "output": "⠋⠥⠓⠗⠻" }, { "input": "fuhrer's", "output": "⠋⠥⠓⠗⠻⠄⠎" }, { "input": "fuhrers", "output": "⠋⠥⠓⠗⠻⠎" }, { "input": "fulcrum", "output": "⠋⠥⠇⠉⠗⠥â " }, { "input": "fulcrum's", "output": "⠋⠥⠇⠉⠗⠥â â „â Ž" }, { "input": "fulcrums", "output": "⠋⠥⠇⠉⠗⠥â â Ž" }, { "input": "fulfill", "output": "⠋⠥⠇⠋⠊⠇⠇" }, { "input": "fulfilled", "output": "⠋⠥⠇⠋⠊⠇⠇⠫" }, { "input": "fulfilling", "output": "⠋⠥⠇⠋⠊⠇⠇⠌" }, { "input": "fulfillment", "output": "⠋⠥⠇⠋⠊⠇⠇⠰⠞" }, { "input": "fulfillment's", "output": "⠋⠥⠇⠋⠊⠇⠇⠰⠞⠄⠎" }, { "input": "fulfills", "output": "⠋⠥⠇⠋⠊⠇⠇⠎" }, { "input": "full", "output": "⠋⠥⠇⠇" }, { "input": "full's", "output": "⠋⠥⠇⠇⠄⠎" }, { "input": "fullback", "output": "⠋⠥⠇⠇⠃â â ‰â …" }, { "input": "fullback's", "output": "⠋⠥⠇⠇⠃â â ‰â …â „â Ž" }, { "input": "fullbacks", "output": "⠋⠥⠇⠇⠃â â ‰â …â Ž" }, { "input": "fulled", "output": "⠋⠥⠇⠇⠫" }, { "input": "fuller", "output": "⠋⠥⠇⠇⠻" }, { "input": "fuller's", "output": "⠋⠥⠇⠇⠻⠄⠎" }, { "input": "fullers", "output": "⠋⠥⠇⠇⠻⠎" }, { "input": "fullest", "output": "⠋⠥⠇⠇⠑⠌" }, { "input": "fulling", "output": "⠋⠥⠇⠇⠌" }, { "input": "fullness", "output": "⠋⠥⠇⠇⠰⠎" }, { "input": "fullness's", "output": "⠋⠥⠇⠇⠰⠎⠄⠎" }, { "input": "fulls", "output": "⠋⠥⠇⠇⠎" }, { "input": "fully", "output": "⠋⠥⠇⠇⠽" }, { "input": "fulminate", "output": "⠋⠥⠇â â ”â â žâ ‘" }, { "input": "fulminated", "output": "⠋⠥⠇â â ”â â žâ «" }, { "input": "fulminates", "output": "⠋⠥⠇â â ”â â žâ ‘â Ž" }, { "input": "fulminating", "output": "⠋⠥⠇â â ”â â žâ Œ" }, { "input": "fulmination", "output": "⠋⠥⠇â â ”â  â " }, { "input": "fulmination's", "output": "⠋⠥⠇â â ”â  â â „â Ž" }, { "input": "fulminations", "output": "⠋⠥⠇â â ”â  â â Ž" }, { "input": "fulsome", "output": "⠋⠥⠇â â Ž" }, { "input": "fulsomeness's", "output": "⠋⠥⠇â â Žâ °â Žâ „â Ž" }, { "input": "fumble", "output": "â ‹â ¥â â ¼" }, { "input": "fumble's", "output": "â ‹â ¥â â ¼â „â Ž" }, { "input": "fumbled", "output": "â ‹â ¥â â ¼â ™" }, { "input": "fumbler", "output": "â ‹â ¥â â ¼â —" }, { "input": "fumbler's", "output": "â ‹â ¥â â ¼â —â „â Ž" }, { "input": "fumblers", "output": "â ‹â ¥â â ¼â —â Ž" }, { "input": "fumbles", "output": "â ‹â ¥â â ¼â Ž" }, { "input": "fumbling", "output": "â ‹â ¥â â ƒâ ‡â Œ" }, { "input": "fumblingly", "output": "â ‹â ¥â â ƒâ ‡â Œâ ‡â ½" }, { "input": "fume", "output": "â ‹â ¥â â ‘" }, { "input": "fume's", "output": "â ‹â ¥â â ‘â „â Ž" }, { "input": "fumed", "output": "â ‹â ¥â â «" }, { "input": "fumes", "output": "â ‹â ¥â â ‘â Ž" }, { "input": "fumier", "output": "â ‹â ¥â â Šâ »" }, { "input": "fumiest", "output": "â ‹â ¥â â Šâ ‘â Œ" }, { "input": "fumigant", "output": "â ‹â ¥â â Šâ ›â â â ž" }, { "input": "fumigant's", "output": "â ‹â ¥â â Šâ ›â â â žâ „â Ž" }, { "input": "fumigants", "output": "â ‹â ¥â â Šâ ›â â â žâ Ž" }, { "input": "fumigate", "output": "â ‹â ¥â â Šâ ›â â žâ ‘" }, { "input": "fumigated", "output": "â ‹â ¥â â Šâ ›â â žâ «" }, { "input": "fumigates", "output": "â ‹â ¥â â Šâ ›â â žâ ‘â Ž" }, { "input": "fumigating", "output": "â ‹â ¥â â Šâ ›â â žâ Œ" }, { "input": "fumigation", "output": "â ‹â ¥â â Šâ ›â  â " }, { "input": "fumigation's", "output": "â ‹â ¥â â Šâ ›â  â â „â Ž" }, { "input": "fumigator", "output": "â ‹â ¥â â Šâ ›â â žâ •â —" }, { "input": "fumigator's", "output": "â ‹â ¥â â Šâ ›â â žâ •â —â „â Ž" }, { "input": "fumigators", "output": "â ‹â ¥â â Šâ ›â â žâ •â —â Ž" }, { "input": "fuming", "output": "â ‹â ¥â â Œ" }, { "input": "fumy", "output": "â ‹â ¥â â ½" }, { "input": "fun", "output": "â ‹â ¥â " }, { "input": "fun's", "output": "â ‹â ¥â â „â Ž" }, { "input": "function", "output": "â ‹â ¥â â ‰â °â " }, { "input": "function's", "output": "â ‹â ¥â â ‰â °â â „â Ž" }, { "input": "functional", "output": "â ‹â ¥â â ‰â °â â â ‡" }, { "input": "functionality", "output": "â ‹â ¥â â ‰â °â â â ‡â °â ½" }, { "input": "functionally", "output": "â ‹â ¥â â ‰â °â â  â ½" }, { "input": "functionaries", "output": "â ‹â ¥â â ‰â °â â œâ Šâ ‘â Ž" }, { "input": "functionary", "output": "â ‹â ¥â â ‰â °â â œâ ½" }, { "input": "functionary's", "output": "â ‹â ¥â â ‰â °â â œâ ½â „â Ž" }, { "input": "functioned", "output": "â ‹â ¥â â ‰â °â â «" }, { "input": "functioning", "output": "â ‹â ¥â â ‰â °â â Œ" }, { "input": "functions", "output": "â ‹â ¥â â ‰â °â â Ž" }, { "input": "fund", "output": "â ‹â ¥â â ™" }, { "input": "fund's", "output": "â ‹â ¥â â ™â „â Ž" }, { "input": "fundamental", "output": "â ‹â ¥â â ™â â °â žâ â ‡" }, { "input": "fundamental's", "output": "â ‹â ¥â â ™â â °â žâ â ‡â „â Ž" }, { "input": "fundamentalism", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Žâ " }, { "input": "fundamentalism's", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Žâ â „â Ž" }, { "input": "fundamentalist", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Œ" }, { "input": "fundamentalist's", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Œâ „â Ž" }, { "input": "fundamentalists", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Šâ Œâ Ž" }, { "input": "fundamentally", "output": "â ‹â ¥â â ™â â °â žâ  â ½" }, { "input": "fundamentals", "output": "â ‹â ¥â â ™â â °â žâ â ‡â Ž" }, { "input": "funded", "output": "â ‹â ¥â â ™â «" }, { "input": "funding", "output": "â ‹â ¥â â ™â Œ" }, { "input": "funding's", "output": "â ‹â ¥â â ™â Œâ „â Ž" }, { "input": "fundraiser", "output": "â ‹â ¥â â ™â —â â Šâ Žâ »" }, { "input": "fundraiser's", "output": "â ‹â ¥â â ™â —â â Šâ Žâ »â „â Ž" }, { "input": "fundraisers", "output": "â ‹â ¥â â ™â —â â Šâ Žâ »â Ž" }, { "input": "funds", "output": "â ‹â ¥â â ™â Ž" }, { "input": "funeral", "output": "â ‹â ¥â â »â â ‡" }, { "input": "funeral's", "output": "â ‹â ¥â â »â â ‡â „â Ž" }, { "input": "funerals", "output": "â ‹â ¥â â »â â ‡â Ž" }, { "input": "funereal", "output": "â ‹â ¥â â »â ‚â ‡" }, { "input": "funereally", "output": "â ‹â ¥â â »â ‘â  â ½" }, { "input": "fungal", "output": "â ‹â ¥â â ›â â ‡" }, { "input": "fungi", "output": "â ‹â ¥â â ›â Š" }, { "input": "fungible", "output": "â ‹â ¥â â ›â Šâ ¼" }, { "input": "fungible's", "output": "â ‹â ¥â â ›â Šâ ¼â „â Ž" }, { "input": "fungibles", "output": "â ‹â ¥â â ›â Šâ ¼â Ž" }, { "input": "fungicidal", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â â ‡" }, { "input": "fungicide", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â ‘" }, { "input": "fungicide's", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â ‘â „â Ž" }, { "input": "fungicides", "output": "â ‹â ¥â â ›â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "fungous", "output": "â ‹â ¥â â ›â ³â Ž" }, { "input": "fungus", "output": "â ‹â ¥â â ›â ¥â Ž" }, { "input": "fungus's", "output": "â ‹â ¥â â ›â ¥â Žâ „â Ž" }, { "input": "funicular", "output": "â ‹â ¥â â Šâ ‰â ¥â ‡â œ" }, { "input": "funicular's", "output": "â ‹â ¥â â Šâ ‰â ¥â ‡â œâ „â Ž" }, { "input": "funiculars", "output": "â ‹â ¥â â Šâ ‰â ¥â ‡â œâ Ž" }, { "input": "funk", "output": "â ‹â ¥â â …" }, { "input": "funk's", "output": "â ‹â ¥â â …â „â Ž" }, { "input": "funked", "output": "â ‹â ¥â â …â «" }, { "input": "funkier", "output": "â ‹â ¥â â …â Šâ »" }, { "input": "funkiest", "output": "â ‹â ¥â â …â Šâ ‘â Œ" }, { "input": "funkiness", "output": "â ‹â ¥â â …â Šâ °â Ž" }, { "input": "funkiness's", "output": "â ‹â ¥â â …â Šâ °â Žâ „â Ž" }, { "input": "funking", "output": "â ‹â ¥â â …â Œ" }, { "input": "funks", "output": "â ‹â ¥â â …â Ž" }, { "input": "funky", "output": "â ‹â ¥â â …â ½" }, { "input": "funnel", "output": "â ‹â ¥â â â ‘â ‡" }, { "input": "funnel's", "output": "â ‹â ¥â â â ‘⠇⠄⠎" }, { "input": "funneled", "output": "â ‹â ¥â â â ‘⠇⠫" }, { "input": "funneling", "output": "â ‹â ¥â â â ‘⠇⠌" }, { "input": "funnels", "output": "â ‹â ¥â â â ‘⠇⠎" }, { "input": "funner", "output": "â ‹â ¥â â â »" }, { "input": "funnest", "output": "â ‹â ¥â â â ‘â Œ" }, { "input": "funnier", "output": "â ‹â ¥â â â Šâ »" }, { "input": "funnies", "output": "â ‹â ¥â â â Šâ ‘â Ž" }, { "input": "funniest", "output": "â ‹â ¥â â â Šâ ‘â Œ" }, { "input": "funnily", "output": "â ‹â ¥â â â Šâ ‡â ½" }, { "input": "funniness", "output": "â ‹â ¥â â â Šâ °â Ž" }, { "input": "funniness's", "output": "â ‹â ¥â â â Šâ °â Žâ „â Ž" }, { "input": "funny", "output": "â ‹â ¥â â â ½" }, { "input": "funny's", "output": "â ‹â ¥â â â ½â „â Ž" }, { "input": "fur", "output": "⠋⠥⠗" }, { "input": "fur's", "output": "⠋⠥⠗⠄⠎" }, { "input": "furbelow", "output": "⠋⠥⠗⠃⠑⠇⠪" }, { "input": "furbelow's", "output": "⠋⠥⠗⠃⠑⠇⠪⠄⠎" }, { "input": "furbish", "output": "⠋⠥⠗⠃⠊⠩" }, { "input": "furbished", "output": "⠋⠥⠗⠃⠊⠩⠫" }, { "input": "furbishes", "output": "⠋⠥⠗⠃⠊⠩⠑⠎" }, { "input": "furbishing", "output": "⠋⠥⠗⠃⠊⠩⠌" }, { "input": "furies", "output": "⠋⠥⠗⠊⠑⠎" }, { "input": "furious", "output": "⠋⠥⠗⠊⠳⠎" }, { "input": "furiously", "output": "⠋⠥⠗⠊⠳⠎⠇⠽" }, { "input": "furl", "output": "⠋⠥⠗⠇" }, { "input": "furl's", "output": "⠋⠥⠗⠇⠄⠎" }, { "input": "furled", "output": "⠋⠥⠗⠇⠫" }, { "input": "furling", "output": "⠋⠥⠗⠇⠌" }, { "input": "furlong", "output": "⠋⠥⠗⠇⠰⠛" }, { "input": "furlong's", "output": "⠋⠥⠗⠇⠰⠛⠄⠎" }, { "input": "furlongs", "output": "⠋⠥⠗⠇⠰⠛⠎" }, { "input": "furlough", "output": "⠋⠥⠗⠇⠳⠣" }, { "input": "furlough's", "output": "⠋⠥⠗⠇⠳⠣⠄⠎" }, { "input": "furloughed", "output": "⠋⠥⠗⠇⠳⠣⠫" }, { "input": "furloughing", "output": "⠋⠥⠗⠇⠳⠣⠌" }, { "input": "furloughs", "output": "⠋⠥⠗⠇⠳⠣⠎" }, { "input": "furls", "output": "⠋⠥⠗⠇⠎" }, { "input": "furnace", "output": "⠋⠥⠗â â â ‰â ‘" }, { "input": "furnace's", "output": "⠋⠥⠗â â â ‰â ‘â „â Ž" }, { "input": "furnaces", "output": "⠋⠥⠗â â â ‰â ‘â Ž" }, { "input": "furnish", "output": "⠋⠥⠗â â Šâ ©" }, { "input": "furnished", "output": "⠋⠥⠗â â Šâ ©â «" }, { "input": "furnishes", "output": "⠋⠥⠗â â Šâ ©â ‘â Ž" }, { "input": "furnishing", "output": "⠋⠥⠗â â Šâ ©â Œ" }, { "input": "furnishings", "output": "⠋⠥⠗â â Šâ ©â Œâ Ž" }, { "input": "furnishings's", "output": "⠋⠥⠗â â Šâ ©â Œâ Žâ „â Ž" }, { "input": "furniture", "output": "⠋⠥⠗â â Šâ žâ ¥â —â ‘" }, { "input": "furniture's", "output": "⠋⠥⠗â â Šâ žâ ¥â —â ‘â „â Ž" }, { "input": "furor", "output": "⠋⠥⠗⠕⠗" }, { "input": "furor's", "output": "⠋⠥⠗⠕⠗⠄⠎" }, { "input": "furors", "output": "⠋⠥⠗⠕⠗⠎" }, { "input": "furred", "output": "⠋⠥⠗⠗⠫" }, { "input": "furrier", "output": "⠋⠥⠗⠗⠊⠻" }, { "input": "furrier's", "output": "⠋⠥⠗⠗⠊⠻⠄⠎" }, { "input": "furriers", "output": "⠋⠥⠗⠗⠊⠻⠎" }, { "input": "furriest", "output": "⠋⠥⠗⠗⠊⠑⠌" }, { "input": "furriness", "output": "⠋⠥⠗⠗⠊⠰⠎" }, { "input": "furriness's", "output": "⠋⠥⠗⠗⠊⠰⠎⠄⠎" }, { "input": "furring", "output": "⠋⠥⠗⠗⠌" }, { "input": "furring's", "output": "⠋⠥⠗⠗⠌⠄⠎" }, { "input": "furrow", "output": "⠋⠥⠗⠗⠪" }, { "input": "furrow's", "output": "⠋⠥⠗⠗⠪⠄⠎" }, { "input": "furrowed", "output": "⠋⠥⠗⠗⠪⠫" }, { "input": "furrowing", "output": "⠋⠥⠗⠗⠪⠌" }, { "input": "furrows", "output": "⠋⠥⠗⠗⠪⠎" }, { "input": "furry", "output": "⠋⠥⠗⠗⠽" }, { "input": "furs", "output": "⠋⠥⠗⠎" }, { "input": "further", "output": "⠋⠥⠗⠮⠗" }, { "input": "furtherance", "output": "⠋⠥⠗⠮⠗⠨⠑" }, { "input": "furtherance's", "output": "⠋⠥⠗⠮⠗⠨⠑⠄⠎" }, { "input": "furthered", "output": "⠋⠥⠗⠮⠗⠫" }, { "input": "furthering", "output": "⠋⠥⠗⠮⠗⠌" }, { "input": "furthermore", "output": "⠋⠥⠗⠮⠗â â •â —â ‘" }, { "input": "furthermost", "output": "⠋⠥⠗⠮⠗â â •â Œ" }, { "input": "furthers", "output": "⠋⠥⠗⠮⠗⠎" }, { "input": "furthest", "output": "⠋⠥⠗⠮⠌" }, { "input": "furtive", "output": "⠋⠥⠗⠞⠊⠧⠑" }, { "input": "furtively", "output": "⠋⠥⠗⠞⠊⠧⠑⠇⠽" }, { "input": "furtiveness", "output": "⠋⠥⠗⠞⠊⠧⠑⠰⠎" }, { "input": "furtiveness's", "output": "⠋⠥⠗⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "fury", "output": "⠋⠥⠗⠽" }, { "input": "fury's", "output": "⠋⠥⠗⠽⠄⠎" }, { "input": "furze", "output": "⠋⠥⠗⠵⠑" }, { "input": "furze's", "output": "⠋⠥⠗⠵⠑⠄⠎" }, { "input": "fuse", "output": "⠋⠥⠎⠑" }, { "input": "fuse's", "output": "⠋⠥⠎⠑⠄⠎" }, { "input": "fused", "output": "⠋⠥⠎⠫" }, { "input": "fusee", "output": "⠋⠥⠎⠑⠑" }, { "input": "fusee's", "output": "⠋⠥⠎⠑⠑⠄⠎" }, { "input": "fusees", "output": "⠋⠥⠎⠑⠑⠎" }, { "input": "fuselage", "output": "⠋⠥⠎⠑⠇â â ›â ‘" }, { "input": "fuselage's", "output": "⠋⠥⠎⠑⠇â â ›â ‘â „â Ž" }, { "input": "fuselages", "output": "⠋⠥⠎⠑⠇â â ›â ‘â Ž" }, { "input": "fuses", "output": "⠋⠥⠎⠑⠎" }, { "input": "fusibility", "output": "⠋⠥⠎⠊⠃⠊⠇⠰⠽" }, { "input": "fusibility's", "output": "⠋⠥⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "fusible", "output": "⠋⠥⠎⠊⠼" }, { "input": "fusillade", "output": "⠋⠥⠎⠊⠇⠇â â ™â ‘" }, { "input": "fusillade's", "output": "⠋⠥⠎⠊⠇⠇â â ™â ‘â „â Ž" }, { "input": "fusillades", "output": "⠋⠥⠎⠊⠇⠇â â ™â ‘â Ž" }, { "input": "fusing", "output": "⠋⠥⠎⠌" }, { "input": "fusion", "output": "⠋⠥⠨â " }, { "input": "fusion's", "output": "⠋⠥⠨â â „â Ž" }, { "input": "fusions", "output": "⠋⠥⠨â â Ž" }, { "input": "fuss", "output": "⠋⠥⠎⠎" }, { "input": "fuss's", "output": "⠋⠥⠎⠎⠄⠎" }, { "input": "fussbudget", "output": "⠋⠥⠎⠎⠃⠥⠙⠛⠑⠞" }, { "input": "fussbudget's", "output": "⠋⠥⠎⠎⠃⠥⠙⠛⠑⠞⠄⠎" }, { "input": "fussbudgets", "output": "⠋⠥⠎⠎⠃⠥⠙⠛⠑⠞⠎" }, { "input": "fussed", "output": "⠋⠥⠎⠎⠫" }, { "input": "fusses", "output": "⠋⠥⠎⠎⠑⠎" }, { "input": "fussier", "output": "⠋⠥⠎⠎⠊⠻" }, { "input": "fussiest", "output": "⠋⠥⠎⠎⠊⠑⠌" }, { "input": "fussily", "output": "⠋⠥⠎⠎⠊⠇⠽" }, { "input": "fussiness", "output": "⠋⠥⠎⠎⠊⠰⠎" }, { "input": "fussiness's", "output": "⠋⠥⠎⠎⠊⠰⠎⠄⠎" }, { "input": "fussing", "output": "⠋⠥⠎⠎⠌" }, { "input": "fussy", "output": "⠋⠥⠎⠎⠽" }, { "input": "fustian", "output": "⠋⠥⠌⠊â â " }, { "input": "fustian's", "output": "⠋⠥⠌⠊â â â „â Ž" }, { "input": "fustier", "output": "⠋⠥⠌⠊⠻" }, { "input": "fustiest", "output": "⠋⠥⠌⠊⠑⠌" }, { "input": "fustiness", "output": "⠋⠥⠌⠊⠰⠎" }, { "input": "fustiness's", "output": "⠋⠥⠌⠊⠰⠎⠄⠎" }, { "input": "fusty", "output": "⠋⠥⠌⠽" }, { "input": "futile", "output": "⠋⠥⠞⠊⠇⠑" }, { "input": "futilely", "output": "⠋⠥⠞⠊⠇⠑⠇⠽" }, { "input": "futility", "output": "⠋⠥⠞⠊⠇⠰⠽" }, { "input": "futility's", "output": "⠋⠥⠞⠊⠇⠰⠽⠄⠎" }, { "input": "futon", "output": "⠋⠥⠞⠕â " }, { "input": "futon's", "output": "⠋⠥⠞⠕â â „â Ž" }, { "input": "futons", "output": "⠋⠥⠞⠕â â Ž" }, { "input": "future", "output": "⠋⠥⠞⠥⠗⠑" }, { "input": "future's", "output": "⠋⠥⠞⠥⠗⠑⠄⠎" }, { "input": "futures", "output": "⠋⠥⠞⠥⠗⠑⠎" }, { "input": "futurism's", "output": "⠋⠥⠞⠥⠗⠊⠎â â „â Ž" }, { "input": "futuristic", "output": "⠋⠥⠞⠥⠗⠊⠌⠊⠉" }, { "input": "futurities", "output": "⠋⠥⠞⠥⠗⠊⠞⠊⠑⠎" }, { "input": "futurity", "output": "⠋⠥⠞⠥⠗⠰⠽" }, { "input": "futurity's", "output": "⠋⠥⠞⠥⠗⠰⠽⠄⠎" }, { "input": "futurologist", "output": "⠋⠥⠞⠥⠗⠕⠇⠕⠛⠊⠌" }, { "input": "futurologist's", "output": "⠋⠥⠞⠥⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "futurologists", "output": "⠋⠥⠞⠥⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "futurology", "output": "⠋⠥⠞⠥⠗⠕⠇⠕⠛⠽" }, { "input": "futurology's", "output": "⠋⠥⠞⠥⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "futz", "output": "⠋⠥⠞⠵" }, { "input": "futzed", "output": "⠋⠥⠞⠵⠫" }, { "input": "futzes", "output": "⠋⠥⠞⠵⠑⠎" }, { "input": "futzing", "output": "⠋⠥⠞⠵⠌" }, { "input": "fuzz", "output": "⠋⠥⠵⠵" }, { "input": "fuzz's", "output": "⠋⠥⠵⠵⠄⠎" }, { "input": "fuzzed", "output": "⠋⠥⠵⠵⠫" }, { "input": "fuzzes", "output": "⠋⠥⠵⠵⠑⠎" }, { "input": "fuzzier", "output": "⠋⠥⠵⠵⠊⠻" }, { "input": "fuzziest", "output": "⠋⠥⠵⠵⠊⠑⠌" }, { "input": "fuzzily", "output": "⠋⠥⠵⠵⠊⠇⠽" }, { "input": "fuzziness", "output": "⠋⠥⠵⠵⠊⠰⠎" }, { "input": "fuzziness's", "output": "⠋⠥⠵⠵⠊⠰⠎⠄⠎" }, { "input": "fuzzing", "output": "⠋⠥⠵⠵⠌" }, { "input": "fuzzy", "output": "⠋⠥⠵⠵⠽" }, { "input": "g", "output": "â °â ›" }, { "input": "gab", "output": "â ›â â ƒ" }, { "input": "gab's", "output": "â ›â â ƒâ „â Ž" }, { "input": "gabardine", "output": "â ›â â ƒâ œâ ™â ”â ‘" }, { "input": "gabardine's", "output": "â ›â â ƒâ œâ ™â ”â ‘â „â Ž" }, { "input": "gabardines", "output": "â ›â â ƒâ œâ ™â ”â ‘â Ž" }, { "input": "gabbed", "output": "â ›â â †â «" }, { "input": "gabbier", "output": "â ›â â †â Šâ »" }, { "input": "gabbiest", "output": "â ›â â †â Šâ ‘â Œ" }, { "input": "gabbiness", "output": "â ›â â †â Šâ °â Ž" }, { "input": "gabbiness's", "output": "â ›â â †â Šâ °â Žâ „â Ž" }, { "input": "gabbing", "output": "â ›â â †â Œ" }, { "input": "gabble", "output": "â ›â â ƒâ ¼" }, { "input": "gabble's", "output": "â ›â â ƒâ ¼â „â Ž" }, { "input": "gabbled", "output": "â ›â â ƒâ ¼â ™" }, { "input": "gabbles", "output": "â ›â â ƒâ ¼â Ž" }, { "input": "gabbling", "output": "â ›â â †â ‡â Œ" }, { "input": "gabby", "output": "â ›â â †â ½" }, { "input": "gaberdine", "output": "â ›â â ƒâ »â ™â ”â ‘" }, { "input": "gaberdine's", "output": "â ›â â ƒâ »â ™â ”â ‘â „â Ž" }, { "input": "gaberdines", "output": "â ›â â ƒâ »â ™â ”â ‘â Ž" }, { "input": "gabfest", "output": "â ›â â ƒâ ‹â ‘â Œ" }, { "input": "gabfest's", "output": "â ›â â ƒâ ‹â ‘⠌⠄⠎" }, { "input": "gabfests", "output": "â ›â â ƒâ ‹â ‘⠌⠎" }, { "input": "gable", "output": "â ›â â ¼" }, { "input": "gable's", "output": "â ›â â ¼â „â Ž" }, { "input": "gabled", "output": "â ›â â ¼â ™" }, { "input": "gables", "output": "â ›â â ¼â Ž" }, { "input": "gabs", "output": "â ›â â ƒâ Ž" }, { "input": "gad", "output": "â ›â â ™" }, { "input": "gadabout", "output": "â ›â â ™â â ƒ" }, { "input": "gadabout's", "output": "â ›â â ™â â ƒâ „â Ž" }, { "input": "gadabouts", "output": "â ›â â ™â â ƒâ Ž" }, { "input": "gadded", "output": "â ›â â ²â «" }, { "input": "gadder", "output": "â ›â â ²â »" }, { "input": "gadder's", "output": "â ›â â ²â »â „â Ž" }, { "input": "gadders", "output": "â ›â â ²â »â Ž" }, { "input": "gadding", "output": "â ›â â ²â Œ" }, { "input": "gadflies", "output": "â ›â â ™â ‹â ‡â Šâ ‘â Ž" }, { "input": "gadfly", "output": "â ›â â ™â ‹â ‡â ½" }, { "input": "gadfly's", "output": "â ›â â ™â ‹â ‡â ½â „â Ž" }, { "input": "gadget", "output": "â ›â â ™â ›â ‘â ž" }, { "input": "gadget's", "output": "â ›â â ™â ›â ‘â žâ „â Ž" }, { "input": "gadgetry", "output": "â ›â â ™â ›â ‘â žâ —â ½" }, { "input": "gadgetry's", "output": "â ›â â ™â ›â ‘⠞⠗⠽⠄⠎" }, { "input": "gadgets", "output": "â ›â â ™â ›â ‘â žâ Ž" }, { "input": "gadolinium", "output": "â ›â â ™â •⠇⠔⠊⠥â " }, { "input": "gadolinium's", "output": "â ›â â ™â •⠇⠔⠊⠥â â „â Ž" }, { "input": "gads", "output": "â ›â â ™â Ž" }, { "input": "gaff", "output": "â ›â â ‹â ‹" }, { "input": "gaff's", "output": "â ›â â ‹â ‹â „â Ž" }, { "input": "gaffe", "output": "â ›â â –â ‘" }, { "input": "gaffe's", "output": "â ›â â –â ‘â „â Ž" }, { "input": "gaffed", "output": "â ›â â –â «" }, { "input": "gaffes", "output": "â ›â â –â ‘â Ž" }, { "input": "gaffing", "output": "â ›â â –â Œ" }, { "input": "gaffs", "output": "â ›â â –â Ž" }, { "input": "gag", "output": "â ›â â ›" }, { "input": "gag's", "output": "â ›â â ›â „â Ž" }, { "input": "gagged", "output": "â ›â â ¶â «" }, { "input": "gagging", "output": "â ›â â ¶â Œ" }, { "input": "gaggle", "output": "â ›â â ¶â ‡â ‘" }, { "input": "gaggle's", "output": "â ›â â ¶â ‡â ‘â „â Ž" }, { "input": "gaggles", "output": "â ›â â ¶â ‡â ‘â Ž" }, { "input": "gags", "output": "â ›â â ›â Ž" }, { "input": "gaiety", "output": "â ›â â Šâ ‘â žâ ½" }, { "input": "gaiety's", "output": "â ›â â Šâ ‘⠞⠽⠄⠎" }, { "input": "gaily", "output": "â ›â â Šâ ‡â ½" }, { "input": "gain", "output": "â ›â â ”" }, { "input": "gain's", "output": "â ›â â ”â „â Ž" }, { "input": "gained", "output": "â ›â â ”â «" }, { "input": "gainful", "output": "â ›â â ”â °â ‡" }, { "input": "gainfully", "output": "â ›â â ”⠰⠇⠇⠽" }, { "input": "gaining", "output": "â ›â â ”â Œ" }, { "input": "gains", "output": "â ›â â ”â Ž" }, { "input": "gainsaid", "output": "â ›â â ”â Žâ ™" }, { "input": "gainsay", "output": "â ›â â ”â Žâ â ½" }, { "input": "gainsayer", "output": "â ›â â ”â Žâ â ½â »" }, { "input": "gainsayer's", "output": "â ›â â ”â Žâ â ½â »â „â Ž" }, { "input": "gainsayers", "output": "â ›â â ”â Žâ â ½â »â Ž" }, { "input": "gainsaying", "output": "â ›â â ”â Žâ â ½â Œ" }, { "input": "gainsays", "output": "â ›â â ”â Žâ â ½â Ž" }, { "input": "gait", "output": "â ›â â Šâ ž" }, { "input": "gait's", "output": "â ›â â Šâ žâ „â Ž" }, { "input": "gaiter", "output": "â ›â â Šâ žâ »" }, { "input": "gaiter's", "output": "â ›â â Šâ žâ »â „â Ž" }, { "input": "gaiters", "output": "â ›â â Šâ žâ »â Ž" }, { "input": "gaits", "output": "â ›â â Šâ žâ Ž" }, { "input": "gal", "output": "â ›â â ‡" }, { "input": "gal's", "output": "â ›â â ‡â „â Ž" }, { "input": "gala", "output": "â ›â â ‡â " }, { "input": "gala's", "output": "â ›â â ‡â â „â Ž" }, { "input": "galactic", "output": "â ›â â ‡â â ‰â žâ Šâ ‰" }, { "input": "galas", "output": "â ›â â ‡â â Ž" }, { "input": "galaxies", "output": "â ›â â ‡â â ­â Šâ ‘â Ž" }, { "input": "galaxy", "output": "â ›â â ‡â â ­â ½" }, { "input": "galaxy's", "output": "â ›â â ‡â â ­â ½â „â Ž" }, { "input": "gale", "output": "â ›â â ‡â ‘" }, { "input": "gale's", "output": "â ›â â ‡â ‘â „â Ž" }, { "input": "galena", "output": "â ›â â ‡â ¢â " }, { "input": "galena's", "output": "â ›â â ‡â ¢â â „â Ž" }, { "input": "gales", "output": "â ›â â ‡â ‘â Ž" }, { "input": "gall", "output": "â ›â â ‡â ‡" }, { "input": "gall's", "output": "â ›â â ‡â ‡â „â Ž" }, { "input": "gallant", "output": "â ›â â ‡â ‡â â â ž" }, { "input": "gallant's", "output": "â ›â â ‡â ‡â â â žâ „â Ž" }, { "input": "gallantly", "output": "â ›â â ‡â ‡â â â žâ ‡â ½" }, { "input": "gallantry", "output": "â ›â â ‡â ‡â â â žâ —â ½" }, { "input": "gallantry's", "output": "â ›â â ‡â ‡â â â žâ —⠽⠄⠎" }, { "input": "gallants", "output": "â ›â â ‡â ‡â â â žâ Ž" }, { "input": "gallbladder", "output": "â ›â â ‡â ‡â ƒâ ‡â â ²â »" }, { "input": "gallbladder's", "output": "â ›â â ‡â ‡â ƒâ ‡â â ²â »â „â Ž" }, { "input": "gallbladders", "output": "â ›â â ‡â ‡â ƒâ ‡â â ²â »â Ž" }, { "input": "galled", "output": "â ›â â ‡â ‡â «" }, { "input": "galleon", "output": "â ›â â ‡â ‡â ‘â •â " }, { "input": "galleon's", "output": "â ›â â ‡â ‡â ‘â •â â „â Ž" }, { "input": "galleons", "output": "â ›â â ‡â ‡â ‘â •â â Ž" }, { "input": "galleria", "output": "â ›â â ‡â ‡â »â Šâ " }, { "input": "galleria's", "output": "â ›â â ‡â ‡â »â Šâ â „â Ž" }, { "input": "gallerias", "output": "â ›â â ‡â ‡â »â Šâ â Ž" }, { "input": "galleries", "output": "â ›â â ‡â ‡â »â Šâ ‘â Ž" }, { "input": "gallery", "output": "â ›â â ‡â ‡â »â ½" }, { "input": "gallery's", "output": "â ›â â ‡â ‡â »â ½â „â Ž" }, { "input": "galley", "output": "â ›â â ‡â ‡â ‘â ½" }, { "input": "galley's", "output": "â ›â â ‡â ‡â ‘⠽⠄⠎" }, { "input": "galleys", "output": "â ›â â ‡â ‡â ‘⠽⠎" }, { "input": "gallimaufries", "output": "â ›â â ‡â ‡â Šâ â â ¥â ‹â —â Šâ ‘â Ž" }, { "input": "gallimaufry", "output": "â ›â â ‡â ‡â Šâ â â ¥â ‹â —â ½" }, { "input": "gallimaufry's", "output": "â ›â â ‡â ‡â Šâ â â ¥â ‹â —⠽⠄⠎" }, { "input": "galling", "output": "â ›â â ‡â ‡â Œ" }, { "input": "gallium", "output": "â ›â â ‡â ‡â Šâ ¥â " }, { "input": "gallium's", "output": "â ›â â ‡â ‡â Šâ ¥â â „â Ž" }, { "input": "gallivant", "output": "â ›â â ‡â ‡â Šâ §â â â ž" }, { "input": "gallivanted", "output": "â ›â â ‡â ‡â Šâ §â â â žâ «" }, { "input": "gallivanting", "output": "â ›â â ‡â ‡â Šâ §â â â žâ Œ" }, { "input": "gallivants", "output": "â ›â â ‡â ‡â Šâ §â â â žâ Ž" }, { "input": "gallon", "output": "â ›â â ‡â ‡â •â " }, { "input": "gallon's", "output": "â ›â â ‡â ‡â •â â „â Ž" }, { "input": "gallons", "output": "â ›â â ‡â ‡â •â â Ž" }, { "input": "gallop", "output": "â ›â â ‡â ‡â •â " }, { "input": "gallop's", "output": "â ›â â ‡â ‡â •â â „â Ž" }, { "input": "galloped", "output": "â ›â â ‡â ‡â •â â «" }, { "input": "galloping", "output": "â ›â â ‡â ‡â •â â Œ" }, { "input": "gallops", "output": "â ›â â ‡â ‡â •â â Ž" }, { "input": "gallows", "output": "â ›â â ‡â ‡â ªâ Ž" }, { "input": "gallows's", "output": "â ›â â ‡â ‡â ªâ Žâ „â Ž" }, { "input": "galls", "output": "â ›â â ‡â ‡â Ž" }, { "input": "gallstone", "output": "â ›â â ‡â ‡â Œâ â •" }, { "input": "gallstone's", "output": "â ›â â ‡â ‡â Œâ â •â „â Ž" }, { "input": "gallstones", "output": "â ›â â ‡â ‡â Œâ â •â Ž" }, { "input": "galoot", "output": "â ›â â ‡â •â •â ž" }, { "input": "galoot's", "output": "â ›â â ‡â •â •â žâ „â Ž" }, { "input": "galoots", "output": "â ›â â ‡â •â •â žâ Ž" }, { "input": "galore", "output": "â ›â â ‡â •â —â ‘" }, { "input": "galosh", "output": "â ›â â ‡â •â ©" }, { "input": "galosh's", "output": "â ›â â ‡â •â ©â „â Ž" }, { "input": "galoshes", "output": "â ›â â ‡â •â ©â ‘â Ž" }, { "input": "gals", "output": "â ›â â ‡â Ž" }, { "input": "galvanic", "output": "â ›â â ‡â §â â â Šâ ‰" }, { "input": "galvanism", "output": "â ›â â ‡â §â â â Šâ Žâ " }, { "input": "galvanism's", "output": "â ›â â ‡â §â â â Šâ Žâ â „â Ž" }, { "input": "galvanization", "output": "â ›â â ‡â §â â â Šâ µâ  â " }, { "input": "galvanization's", "output": "â ›â â ‡â §â â â Šâ µâ  â â „â Ž" }, { "input": "galvanize", "output": "â ›â â ‡â §â â â Šâ µâ ‘" }, { "input": "galvanized", "output": "â ›â â ‡â §â â â Šâ µâ «" }, { "input": "galvanizes", "output": "â ›â â ‡â §â â â Šâ µâ ‘â Ž" }, { "input": "galvanizing", "output": "â ›â â ‡â §â â â Šâ µâ Œ" }, { "input": "galvanometer", "output": "â ›â â ‡â §â â â •â â ‘â žâ »" }, { "input": "galvanometer's", "output": "â ›â â ‡â §â â â •â â ‘⠞⠻⠄⠎" }, { "input": "galvanometers", "output": "â ›â â ‡â §â â â •â â ‘⠞⠻⠎" }, { "input": "gambit", "output": "â ›â â â ƒâ Šâ ž" }, { "input": "gambit's", "output": "â ›â â â ƒâ Šâ žâ „â Ž" }, { "input": "gambits", "output": "â ›â â â ƒâ Šâ žâ Ž" }, { "input": "gamble", "output": "â ›â â â ¼" }, { "input": "gamble's", "output": "â ›â â â ¼â „â Ž" }, { "input": "gambled", "output": "â ›â â â ¼â ™" }, { "input": "gambler", "output": "â ›â â â ¼â —" }, { "input": "gambler's", "output": "â ›â â â ¼â —â „â Ž" }, { "input": "gamblers", "output": "â ›â â â ¼â —â Ž" }, { "input": "gambles", "output": "â ›â â â ¼â Ž" }, { "input": "gambling", "output": "â ›â â â ƒâ ‡â Œ" }, { "input": "gambling's", "output": "â ›â â â ƒâ ‡â Œâ „â Ž" }, { "input": "gambol", "output": "â ›â â â ƒâ •â ‡" }, { "input": "gambol's", "output": "â ›â â â ƒâ •⠇⠄⠎" }, { "input": "gamboled", "output": "â ›â â â ƒâ •⠇⠫" }, { "input": "gamboling", "output": "â ›â â â ƒâ •⠇⠌" }, { "input": "gambols", "output": "â ›â â â ƒâ •⠇⠎" }, { "input": "game", "output": "â ›â â â ‘" }, { "input": "game's", "output": "â ›â â â ‘â „â Ž" }, { "input": "gamecock", "output": "â ›â â â ‘⠉⠕⠉⠅" }, { "input": "gamecock's", "output": "â ›â â â ‘⠉⠕⠉⠅⠄⠎" }, { "input": "gamecocks", "output": "â ›â â â ‘⠉⠕⠉⠅⠎" }, { "input": "gamed", "output": "â ›â â â «" }, { "input": "gamekeeper", "output": "â ›â â â ‘â …â ‘â ‘â â »" }, { "input": "gamekeeper's", "output": "â ›â â â ‘â …â ‘â ‘â â »â „â Ž" }, { "input": "gamekeepers", "output": "â ›â â â ‘â …â ‘â ‘â â »â Ž" }, { "input": "gamely", "output": "â ›â â â ‘⠇⠽" }, { "input": "gameness", "output": "â ›â â â ‘â °â Ž" }, { "input": "gameness's", "output": "â ›â â â ‘â °â Žâ „â Ž" }, { "input": "gamer", "output": "â ›â â â »" }, { "input": "games", "output": "â ›â â â ‘â Ž" }, { "input": "gamesmanship", "output": "â ›â â â ‘â Žâ â â â ©â Šâ " }, { "input": "gamesmanship's", "output": "â ›â â â ‘â Žâ â â â ©â Šâ â „â Ž" }, { "input": "gamest", "output": "â ›â â â ‘â Œ" }, { "input": "gamester", "output": "â ›â â â ‘⠌⠻" }, { "input": "gamester's", "output": "â ›â â â ‘⠌⠻⠄⠎" }, { "input": "gamesters", "output": "â ›â â â ‘⠌⠻⠎" }, { "input": "gamete", "output": "â ›â â â ‘â žâ ‘" }, { "input": "gamete's", "output": "â ›â â â ‘â žâ ‘â „â Ž" }, { "input": "gametes", "output": "â ›â â â ‘â žâ ‘â Ž" }, { "input": "gametic", "output": "â ›â â â ‘â žâ Šâ ‰" }, { "input": "gamier", "output": "â ›â â â Šâ »" }, { "input": "gamiest", "output": "â ›â â â Šâ ‘â Œ" }, { "input": "gamin", "output": "â ›â â â ”" }, { "input": "gamin's", "output": "â ›â â â ”â „â Ž" }, { "input": "gamine", "output": "â ›â â â ”â ‘" }, { "input": "gamine's", "output": "â ›â â â ”â ‘â „â Ž" }, { "input": "gamines", "output": "â ›â â â ”â ‘â Ž" }, { "input": "gaminess", "output": "â ›â â â Šâ °â Ž" }, { "input": "gaminess's", "output": "â ›â â â Šâ °â Žâ „â Ž" }, { "input": "gaming", "output": "â ›â â â Œ" }, { "input": "gaming's", "output": "â ›â â â Œâ „â Ž" }, { "input": "gamins", "output": "â ›â â â ”â Ž" }, { "input": "gamma", "output": "â ›â â â â " }, { "input": "gamma's", "output": "â ›â â â â â „â Ž" }, { "input": "gammas", "output": "â ›â â â â â Ž" }, { "input": "gammon's", "output": "â ›â â â â •â â „â Ž" }, { "input": "gamut", "output": "â ›â â â ¥â ž" }, { "input": "gamut's", "output": "â ›â â â ¥â žâ „â Ž" }, { "input": "gamuts", "output": "â ›â â â ¥â žâ Ž" }, { "input": "gamy", "output": "â ›â â â ½" }, { "input": "gander", "output": "⠛⠯⠻" }, { "input": "gander's", "output": "⠛⠯⠻⠄⠎" }, { "input": "ganders", "output": "⠛⠯⠻⠎" }, { "input": "gang", "output": "â ›â â â ›" }, { "input": "gang's", "output": "â ›â â â ›â „â Ž" }, { "input": "gangbusters", "output": "â ›â â â ›â ƒâ ¥â Œâ »â Ž" }, { "input": "gangbusters's", "output": "â ›â â â ›â ƒâ ¥â Œâ »â Žâ „â Ž" }, { "input": "ganged", "output": "â ›â â â ›â «" }, { "input": "ganging", "output": "â ›â â â ›â Œ" }, { "input": "gangland", "output": "â ›â â â ›â ‡â ¯" }, { "input": "gangland's", "output": "â ›â â â ›â ‡â ¯â „â Ž" }, { "input": "ganglia", "output": "â ›â â â ›â ‡â Šâ " }, { "input": "gangling", "output": "â ›â â â ›â ‡â Œ" }, { "input": "ganglion", "output": "â ›â â â ›â ‡â Šâ •â " }, { "input": "ganglion's", "output": "â ›â â â ›â ‡â Šâ •â â „â Ž" }, { "input": "ganglionic", "output": "â ›â â â ›â ‡â Šâ •â â Šâ ‰" }, { "input": "gangplank", "output": "â ›â â â ›â â ‡â â â …" }, { "input": "gangplank's", "output": "â ›â â â ›â â ‡â â â …â „â Ž" }, { "input": "gangplanks", "output": "â ›â â â ›â â ‡â â â …â Ž" }, { "input": "gangrene", "output": "â ›â â â ›â —⠢⠑" }, { "input": "gangrene's", "output": "â ›â â â ›â —⠢⠑⠄⠎" }, { "input": "gangrened", "output": "â ›â â â ›â —⠢⠫" }, { "input": "gangrenes", "output": "â ›â â â ›â —⠢⠑⠎" }, { "input": "gangrening", "output": "â ›â â â ›â —⠢⠌" }, { "input": "gangrenous", "output": "â ›â â â ›â —⠢⠳⠎" }, { "input": "gangs", "output": "â ›â â â ›â Ž" }, { "input": "gangster", "output": "â ›â â â ›â Œâ »" }, { "input": "gangster's", "output": "â ›â â â ›â Œâ »â „â Ž" }, { "input": "gangsters", "output": "â ›â â â ›â Œâ »â Ž" }, { "input": "gangway", "output": "â ›â â â ›â ºâ â ½" }, { "input": "gangway's", "output": "â ›â â â ›â ºâ â ½â „â Ž" }, { "input": "gangways", "output": "â ›â â â ›â ºâ â ½â Ž" }, { "input": "gannet", "output": "â ›â â â â ‘â ž" }, { "input": "gannet's", "output": "â ›â â â â ‘â žâ „â Ž" }, { "input": "gannets", "output": "â ›â â â â ‘â žâ Ž" }, { "input": "gantlet", "output": "â ›â â â žâ ‡â ‘â ž" }, { "input": "gantlet's", "output": "â ›â â â žâ ‡â ‘â žâ „â Ž" }, { "input": "gantlets", "output": "â ›â â â žâ ‡â ‘â žâ Ž" }, { "input": "gantries", "output": "â ›â â â žâ —â Šâ ‘â Ž" }, { "input": "gantry", "output": "â ›â â â žâ —â ½" }, { "input": "gantry's", "output": "â ›â â â žâ —⠽⠄⠎" }, { "input": "gap", "output": "â ›â â " }, { "input": "gap's", "output": "â ›â â â „â Ž" }, { "input": "gape", "output": "â ›â â â ‘" }, { "input": "gape's", "output": "â ›â â â ‘â „â Ž" }, { "input": "gaped", "output": "â ›â â â «" }, { "input": "gapes", "output": "â ›â â â ‘â Ž" }, { "input": "gaping", "output": "â ›â â â Œ" }, { "input": "gaps", "output": "â ›â â â Ž" }, { "input": "gar", "output": "⠛⠜" }, { "input": "gar's", "output": "⠛⠜⠄⠎" }, { "input": "garage", "output": "⠛⠜â â ›â ‘" }, { "input": "garage's", "output": "⠛⠜â â ›â ‘â „â Ž" }, { "input": "garaged", "output": "⠛⠜â â ›â «" }, { "input": "garages", "output": "⠛⠜â â ›â ‘â Ž" }, { "input": "garaging", "output": "⠛⠜â â ›â Œ" }, { "input": "garb", "output": "⠛⠜⠃" }, { "input": "garb's", "output": "⠛⠜⠃⠄⠎" }, { "input": "garbage", "output": "⠛⠜⠃â â ›â ‘" }, { "input": "garbage's", "output": "⠛⠜⠃â â ›â ‘â „â Ž" }, { "input": "garbageman", "output": "⠛⠜⠃â â ›â ‘â â â " }, { "input": "garbanzo", "output": "⠛⠜⠃â â â µâ •" }, { "input": "garbanzo's", "output": "⠛⠜⠃â â â µâ •â „â Ž" }, { "input": "garbanzos", "output": "⠛⠜⠃â â â µâ •â Ž" }, { "input": "garbed", "output": "⠛⠜⠃⠫" }, { "input": "garbing", "output": "⠛⠜⠃⠌" }, { "input": "garble", "output": "⠛⠜⠼" }, { "input": "garbled", "output": "⠛⠜⠼⠙" }, { "input": "garbles", "output": "⠛⠜⠼⠎" }, { "input": "garbling", "output": "⠛⠜⠃⠇⠌" }, { "input": "garbs", "output": "⠛⠜⠃⠎" }, { "input": "garden", "output": "⠛⠜⠙⠢" }, { "input": "garden's", "output": "⠛⠜⠙⠢⠄⠎" }, { "input": "gardened", "output": "⠛⠜⠙⠢⠫" }, { "input": "gardener", "output": "⠛⠜⠙⠢⠻" }, { "input": "gardener's", "output": "⠛⠜⠙⠢⠻⠄⠎" }, { "input": "gardeners", "output": "⠛⠜⠙⠢⠻⠎" }, { "input": "gardenia", "output": "⠛⠜⠙⠢⠊â " }, { "input": "gardenia's", "output": "⠛⠜⠙⠢⠊â â „â Ž" }, { "input": "gardenias", "output": "⠛⠜⠙⠢⠊â â Ž" }, { "input": "gardening", "output": "⠛⠜⠙⠢⠌" }, { "input": "gardening's", "output": "⠛⠜⠙⠢⠌⠄⠎" }, { "input": "gardens", "output": "⠛⠜⠙⠢⠎" }, { "input": "garfish", "output": "⠛⠜⠋⠊⠩" }, { "input": "garfish's", "output": "⠛⠜⠋⠊⠩⠄⠎" }, { "input": "garfishes", "output": "⠛⠜⠋⠊⠩⠑⠎" }, { "input": "gargantuan", "output": "⠛⠜⠛â â â žâ ¥â â " }, { "input": "gargle", "output": "⠛⠜⠛⠇⠑" }, { "input": "gargle's", "output": "⠛⠜⠛⠇⠑⠄⠎" }, { "input": "gargled", "output": "⠛⠜⠛⠇⠫" }, { "input": "gargles", "output": "⠛⠜⠛⠇⠑⠎" }, { "input": "gargling", "output": "⠛⠜⠛⠇⠌" }, { "input": "gargoyle", "output": "⠛⠜⠛⠕⠽⠇⠑" }, { "input": "gargoyle's", "output": "⠛⠜⠛⠕⠽⠇⠑⠄⠎" }, { "input": "gargoyles", "output": "⠛⠜⠛⠕⠽⠇⠑⠎" }, { "input": "garish", "output": "⠛⠜⠊⠩" }, { "input": "garishly", "output": "⠛⠜⠊⠩⠇⠽" }, { "input": "garishness", "output": "⠛⠜⠊⠩⠰⠎" }, { "input": "garishness's", "output": "⠛⠜⠊⠩⠰⠎⠄⠎" }, { "input": "garland", "output": "⠛⠜⠇⠯" }, { "input": "garland's", "output": "⠛⠜⠇⠯⠄⠎" }, { "input": "garlanded", "output": "⠛⠜⠇⠯⠫" }, { "input": "garlanding", "output": "⠛⠜⠇⠯⠌" }, { "input": "garlands", "output": "⠛⠜⠇⠯⠎" }, { "input": "garlic", "output": "⠛⠜⠇⠊⠉" }, { "input": "garlic's", "output": "⠛⠜⠇⠊⠉⠄⠎" }, { "input": "garlicky", "output": "⠛⠜⠇⠊⠉⠅⠽" }, { "input": "garment", "output": "⠛⠜⠰⠞" }, { "input": "garment's", "output": "⠛⠜⠰⠞⠄⠎" }, { "input": "garments", "output": "⠛⠜⠰⠞⠎" }, { "input": "garner", "output": "⠛⠜â â »" }, { "input": "garnered", "output": "⠛⠜â â »â «" }, { "input": "garnering", "output": "⠛⠜â â »â Œ" }, { "input": "garners", "output": "⠛⠜â â »â Ž" }, { "input": "garnet", "output": "⠛⠜â â ‘â ž" }, { "input": "garnet's", "output": "⠛⠜â â ‘â žâ „â Ž" }, { "input": "garnets", "output": "⠛⠜â â ‘â žâ Ž" }, { "input": "garnish", "output": "⠛⠜â â Šâ ©" }, { "input": "garnish's", "output": "⠛⠜â â Šâ ©â „â Ž" }, { "input": "garnished", "output": "⠛⠜â â Šâ ©â «" }, { "input": "garnishee", "output": "⠛⠜â â Šâ ©â ‘â ‘" }, { "input": "garnishee's", "output": "⠛⠜â â Šâ ©â ‘â ‘â „â Ž" }, { "input": "garnisheed", "output": "⠛⠜â â Šâ ©â ‘â «" }, { "input": "garnisheeing", "output": "⠛⠜â â Šâ ©â ‘â ‘â Œ" }, { "input": "garnishees", "output": "⠛⠜â â Šâ ©â ‘â ‘â Ž" }, { "input": "garnishes", "output": "⠛⠜â â Šâ ©â ‘â Ž" }, { "input": "garnishing", "output": "⠛⠜â â Šâ ©â Œ" }, { "input": "garnishment", "output": "⠛⠜â â Šâ ©â °â ž" }, { "input": "garnishment's", "output": "⠛⠜â â Šâ ©â °â žâ „â Ž" }, { "input": "garnishments", "output": "⠛⠜â â Šâ ©â °â žâ Ž" }, { "input": "garret", "output": "⠛⠜⠗⠑⠞" }, { "input": "garret's", "output": "⠛⠜⠗⠑⠞⠄⠎" }, { "input": "garrets", "output": "⠛⠜⠗⠑⠞⠎" }, { "input": "garrison", "output": "⠛⠜⠗⠊⠎⠕â " }, { "input": "garrison's", "output": "⠛⠜⠗⠊⠎⠕â â „â Ž" }, { "input": "garrisoned", "output": "⠛⠜⠗⠊⠎⠕â â «" }, { "input": "garrisoning", "output": "⠛⠜⠗⠊⠎⠕â â Œ" }, { "input": "garrisons", "output": "⠛⠜⠗⠊⠎⠕â â Ž" }, { "input": "garrote", "output": "⠛⠜⠗⠕⠞⠑" }, { "input": "garrote's", "output": "⠛⠜⠗⠕⠞⠑⠄⠎" }, { "input": "garroted", "output": "⠛⠜⠗⠕⠞⠫" }, { "input": "garroter", "output": "⠛⠜⠗⠕⠞⠻" }, { "input": "garroter's", "output": "⠛⠜⠗⠕⠞⠻⠄⠎" }, { "input": "garroters", "output": "⠛⠜⠗⠕⠞⠻⠎" }, { "input": "garrotes", "output": "⠛⠜⠗⠕⠞⠑⠎" }, { "input": "garroting", "output": "⠛⠜⠗⠕⠞⠌" }, { "input": "garrulity", "output": "⠛⠜⠗⠥⠇⠰⠽" }, { "input": "garrulity's", "output": "⠛⠜⠗⠥⠇⠰⠽⠄⠎" }, { "input": "garrulous", "output": "⠛⠜⠗⠥⠇⠳⠎" }, { "input": "garrulously", "output": "⠛⠜⠗⠥⠇⠳⠎⠇⠽" }, { "input": "garrulousness", "output": "⠛⠜⠗⠥⠇⠳⠎⠰⠎" }, { "input": "garrulousness's", "output": "⠛⠜⠗⠥⠇⠳⠎⠰⠎⠄⠎" }, { "input": "gars", "output": "⠛⠜⠎" }, { "input": "garter", "output": "⠛⠜⠞⠻" }, { "input": "garter's", "output": "⠛⠜⠞⠻⠄⠎" }, { "input": "garters", "output": "⠛⠜⠞⠻⠎" }, { "input": "gas", "output": "â ›â â Ž" }, { "input": "gas's", "output": "â ›â â Žâ „â Ž" }, { "input": "gaseous", "output": "â ›â â Žâ ‘⠳⠎" }, { "input": "gases", "output": "â ›â â Žâ ‘â Ž" }, { "input": "gash", "output": "â ›â â ©" }, { "input": "gash's", "output": "â ›â â ©â „â Ž" }, { "input": "gashed", "output": "â ›â â ©â «" }, { "input": "gashes", "output": "â ›â â ©â ‘â Ž" }, { "input": "gashing", "output": "â ›â â ©â Œ" }, { "input": "gasket", "output": "â ›â â Žâ …â ‘â ž" }, { "input": "gasket's", "output": "â ›â â Žâ …â ‘â žâ „â Ž" }, { "input": "gaskets", "output": "â ›â â Žâ …â ‘â žâ Ž" }, { "input": "gaslight", "output": "â ›â â Žâ ‡â Šâ £â ž" }, { "input": "gaslight's", "output": "â ›â â Žâ ‡â Šâ £â žâ „â Ž" }, { "input": "gaslights", "output": "â ›â â Žâ ‡â Šâ £â žâ Ž" }, { "input": "gasohol", "output": "â ›â â Žâ •â “â •â ‡" }, { "input": "gasohol's", "output": "â ›â â Žâ •⠓⠕⠇⠄⠎" }, { "input": "gasoline", "output": "â ›â â Žâ •⠇⠔⠑" }, { "input": "gasoline's", "output": "â ›â â Žâ •⠇⠔⠑⠄⠎" }, { "input": "gasp", "output": "â ›â â Žâ " }, { "input": "gasp's", "output": "â ›â â Žâ â „â Ž" }, { "input": "gasped", "output": "â ›â â Žâ â «" }, { "input": "gasping", "output": "â ›â â Žâ â Œ" }, { "input": "gasps", "output": "â ›â â Žâ â Ž" }, { "input": "gassed", "output": "â ›â â Žâ Žâ «" }, { "input": "gassier", "output": "â ›â â Žâ Žâ Šâ »" }, { "input": "gassiest", "output": "â ›â â Žâ Žâ Šâ ‘â Œ" }, { "input": "gassing", "output": "â ›â â Žâ Žâ Œ" }, { "input": "gassy", "output": "â ›â â Žâ Žâ ½" }, { "input": "gastric", "output": "â ›â â Œâ —â Šâ ‰" }, { "input": "gastritis", "output": "â ›â â Œâ —â Šâ žâ Šâ Ž" }, { "input": "gastritis's", "output": "â ›â â Œâ —â Šâ žâ Šâ Žâ „â Ž" }, { "input": "gastroenteritis's", "output": "â ›â â Œâ —⠕⠢⠞⠻⠊⠞⠊⠎⠄⠎" }, { "input": "gastrointestinal", "output": "â ›â â Œâ —⠕⠔⠞⠑⠌⠔â â ‡" }, { "input": "gastronomic", "output": "â ›â â Œâ —â •â â •â â Šâ ‰" }, { "input": "gastronomical", "output": "â ›â â Œâ —â •â â •â â Šâ ‰â â ‡" }, { "input": "gastronomy", "output": "â ›â â Œâ —â •â â •â â ½" }, { "input": "gastronomy's", "output": "â ›â â Œâ —â •â â •â â ½â „â Ž" }, { "input": "gastropod", "output": "â ›â â Œâ —â •â â •â ™" }, { "input": "gastropod's", "output": "â ›â â Œâ —â •â â •⠙⠄⠎" }, { "input": "gastropods", "output": "â ›â â Œâ —â •â â •⠙⠎" }, { "input": "gasworks", "output": "â ›â â Žâ â ºâ Ž" }, { "input": "gasworks's", "output": "â ›â â Žâ â ºâ Žâ „â Ž" }, { "input": "gate", "output": "â ›â â žâ ‘" }, { "input": "gate's", "output": "â ›â â žâ ‘â „â Ž" }, { "input": "gatecrasher", "output": "â ›â â žâ ‘⠉⠗â â ©â »" }, { "input": "gatecrasher's", "output": "â ›â â žâ ‘⠉⠗â â ©â »â „â Ž" }, { "input": "gatecrashers", "output": "â ›â â žâ ‘⠉⠗â â ©â »â Ž" }, { "input": "gated", "output": "â ›â â žâ «" }, { "input": "gatepost", "output": "â ›â â žâ ‘â â •â Œ" }, { "input": "gatepost's", "output": "â ›â â žâ ‘â â •⠌⠄⠎" }, { "input": "gateposts", "output": "â ›â â žâ ‘â â •⠌⠎" }, { "input": "gates", "output": "â ›â â žâ ‘â Ž" }, { "input": "gateway", "output": "â ›â â žâ ‘â ºâ â ½" }, { "input": "gateway's", "output": "â ›â â žâ ‘â ºâ â ½â „â Ž" }, { "input": "gateways", "output": "â ›â â žâ ‘â ºâ â ½â Ž" }, { "input": "gather", "output": "â ›â â ®â —" }, { "input": "gather's", "output": "â ›â â ®â —â „â Ž" }, { "input": "gathered", "output": "â ›â â ®â —â «" }, { "input": "gatherer", "output": "â ›â â ®â —â »" }, { "input": "gatherer's", "output": "â ›â â ®â —⠻⠄⠎" }, { "input": "gatherers", "output": "â ›â â ®â —⠻⠎" }, { "input": "gathering", "output": "â ›â â ®â —â Œ" }, { "input": "gathering's", "output": "â ›â â ®â —⠌⠄⠎" }, { "input": "gatherings", "output": "â ›â â ®â —⠌⠎" }, { "input": "gathers", "output": "â ›â â ®â —â Ž" }, { "input": "gating", "output": "â ›â â žâ Œ" }, { "input": "gauche", "output": "â ›â â ¥â ¡â ‘" }, { "input": "gauchely", "output": "â ›â â ¥â ¡â ‘⠇⠽" }, { "input": "gaucheness's", "output": "â ›â â ¥â ¡â ‘â °â Žâ „â Ž" }, { "input": "gaucher", "output": "â ›â â ¥â ¡â »" }, { "input": "gaucherie", "output": "â ›â â ¥â ¡â »â Šâ ‘" }, { "input": "gaucherie's", "output": "â ›â â ¥â ¡â »â Šâ ‘â „â Ž" }, { "input": "gauchest", "output": "â ›â â ¥â ¡â ‘â Œ" }, { "input": "gaucho", "output": "â ›â â ¥â ¡â •" }, { "input": "gaucho's", "output": "â ›â â ¥â ¡â •â „â Ž" }, { "input": "gauchos", "output": "â ›â â ¥â ¡â •â Ž" }, { "input": "gaudier", "output": "â ›â â ¥â ™â Šâ »" }, { "input": "gaudiest", "output": "â ›â â ¥â ™â Šâ ‘â Œ" }, { "input": "gaudily", "output": "â ›â â ¥â ™â Šâ ‡â ½" }, { "input": "gaudiness", "output": "â ›â â ¥â ™â Šâ °â Ž" }, { "input": "gaudiness's", "output": "â ›â â ¥â ™â Šâ °â Žâ „â Ž" }, { "input": "gaudy", "output": "â ›â â ¥â ™â ½" }, { "input": "gauge", "output": "â ›â â ¥â ›â ‘" }, { "input": "gauge's", "output": "â ›â â ¥â ›â ‘â „â Ž" }, { "input": "gauged", "output": "â ›â â ¥â ›â «" }, { "input": "gauges", "output": "â ›â â ¥â ›â ‘â Ž" }, { "input": "gauging", "output": "â ›â â ¥â ›â Œ" }, { "input": "gaunt", "output": "â ›â â ¥â â ž" }, { "input": "gaunter", "output": "â ›â â ¥â â žâ »" }, { "input": "gauntest", "output": "â ›â â ¥â â žâ ‘â Œ" }, { "input": "gauntlet", "output": "â ›â â ¥â â žâ ‡â ‘â ž" }, { "input": "gauntlet's", "output": "â ›â â ¥â â žâ ‡â ‘â žâ „â Ž" }, { "input": "gauntlets", "output": "â ›â â ¥â â žâ ‡â ‘â žâ Ž" }, { "input": "gauntness", "output": "â ›â â ¥â â žâ °â Ž" }, { "input": "gauntness's", "output": "â ›â â ¥â â žâ °â Žâ „â Ž" }, { "input": "gauze", "output": "â ›â â ¥â µâ ‘" }, { "input": "gauze's", "output": "â ›â â ¥â µâ ‘â „â Ž" }, { "input": "gauzier", "output": "â ›â â ¥â µâ Šâ »" }, { "input": "gauziest", "output": "â ›â â ¥â µâ Šâ ‘â Œ" }, { "input": "gauziness", "output": "â ›â â ¥â µâ Šâ °â Ž" }, { "input": "gauziness's", "output": "â ›â â ¥â µâ Šâ °â Žâ „â Ž" }, { "input": "gauzy", "output": "â ›â â ¥â µâ ½" }, { "input": "gave", "output": "â ›â â §â ‘" }, { "input": "gavel", "output": "â ›â â §â ‘â ‡" }, { "input": "gavel's", "output": "â ›â â §â ‘⠇⠄⠎" }, { "input": "gavels", "output": "â ›â â §â ‘⠇⠎" }, { "input": "gavotte", "output": "â ›â â §â •â žâ žâ ‘" }, { "input": "gavotte's", "output": "â ›â â §â •â žâ žâ ‘â „â Ž" }, { "input": "gavottes", "output": "â ›â â §â •â žâ žâ ‘â Ž" }, { "input": "gawk", "output": "â ›â â ºâ …" }, { "input": "gawked", "output": "â ›â â ºâ …â «" }, { "input": "gawkier", "output": "â ›â â ºâ …â Šâ »" }, { "input": "gawkiest", "output": "â ›â â ºâ …â Šâ ‘â Œ" }, { "input": "gawkily", "output": "â ›â â ºâ …⠊⠇⠽" }, { "input": "gawkiness", "output": "â ›â â ºâ …â Šâ °â Ž" }, { "input": "gawkiness's", "output": "â ›â â ºâ …â Šâ °â Žâ „â Ž" }, { "input": "gawking", "output": "â ›â â ºâ …â Œ" }, { "input": "gawks", "output": "â ›â â ºâ …â Ž" }, { "input": "gawky", "output": "â ›â â ºâ …â ½" }, { "input": "gay", "output": "â ›â â ½" }, { "input": "gay's", "output": "â ›â â ½â „â Ž" }, { "input": "gayer", "output": "â ›â â ½â »" }, { "input": "gayest", "output": "â ›â â ½â ‘â Œ" }, { "input": "gayness", "output": "â ›â â ½â °â Ž" }, { "input": "gayness's", "output": "â ›â â ½â °â Žâ „â Ž" }, { "input": "gays", "output": "â ›â â ½â Ž" }, { "input": "gaze", "output": "â ›â â µâ ‘" }, { "input": "gaze's", "output": "â ›â â µâ ‘â „â Ž" }, { "input": "gazebo", "output": "â ›â â µâ ‘⠃⠕" }, { "input": "gazebo's", "output": "â ›â â µâ ‘⠃⠕⠄⠎" }, { "input": "gazebos", "output": "â ›â â µâ ‘⠃⠕⠎" }, { "input": "gazed", "output": "â ›â â µâ «" }, { "input": "gazelle", "output": "â ›â â µâ ‘⠇⠇⠑" }, { "input": "gazelle's", "output": "â ›â â µâ ‘⠇⠇⠑⠄⠎" }, { "input": "gazelles", "output": "â ›â â µâ ‘⠇⠇⠑⠎" }, { "input": "gazer", "output": "â ›â â µâ »" }, { "input": "gazer's", "output": "â ›â â µâ »â „â Ž" }, { "input": "gazers", "output": "â ›â â µâ »â Ž" }, { "input": "gazes", "output": "â ›â â µâ ‘â Ž" }, { "input": "gazette", "output": "â ›â â µâ ‘â žâ žâ ‘" }, { "input": "gazette's", "output": "â ›â â µâ ‘â žâ žâ ‘â „â Ž" }, { "input": "gazetted", "output": "â ›â â µâ ‘â žâ žâ «" }, { "input": "gazetteer", "output": "â ›â â µâ ‘â žâ žâ ‘â »" }, { "input": "gazetteer's", "output": "â ›â â µâ ‘⠞⠞⠑⠻⠄⠎" }, { "input": "gazetteers", "output": "â ›â â µâ ‘⠞⠞⠑⠻⠎" }, { "input": "gazettes", "output": "â ›â â µâ ‘â žâ žâ ‘â Ž" }, { "input": "gazetting", "output": "â ›â â µâ ‘â žâ žâ Œ" }, { "input": "gazillion", "output": "â ›â â µâ Šâ ‡â ‡â Šâ •â " }, { "input": "gazillions", "output": "â ›â â µâ Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "gazing", "output": "â ›â â µâ Œ" }, { "input": "gazpacho", "output": "â ›â â µâ â â ¡â •" }, { "input": "gazpacho's", "output": "â ›â â µâ â â ¡â •â „â Ž" }, { "input": "gear", "output": "⠛⠑⠜" }, { "input": "gear's", "output": "⠛⠑⠜⠄⠎" }, { "input": "gearbox", "output": "⠛⠑⠜⠃⠕⠭" }, { "input": "gearbox's", "output": "⠛⠑⠜⠃⠕⠭⠄⠎" }, { "input": "gearboxes", "output": "⠛⠑⠜⠃⠕⠭⠑⠎" }, { "input": "geared", "output": "⠛⠑⠜⠫" }, { "input": "gearing", "output": "⠛⠑⠜⠌" }, { "input": "gearing's", "output": "⠛⠑⠜⠌⠄⠎" }, { "input": "gears", "output": "⠛⠑⠜⠎" }, { "input": "gearshift", "output": "⠛⠑⠜⠩⠊⠋⠞" }, { "input": "gearshift's", "output": "⠛⠑⠜⠩⠊⠋⠞⠄⠎" }, { "input": "gearshifts", "output": "⠛⠑⠜⠩⠊⠋⠞⠎" }, { "input": "gearwheel", "output": "⠛⠑⠜⠱⠑⠑⠇" }, { "input": "gearwheel's", "output": "⠛⠑⠜⠱⠑⠑⠇⠄⠎" }, { "input": "gearwheels", "output": "⠛⠑⠜⠱⠑⠑⠇⠎" }, { "input": "gecko", "output": "⠛⠑⠉⠅⠕" }, { "input": "gecko's", "output": "⠛⠑⠉⠅⠕⠄⠎" }, { "input": "geckos", "output": "⠛⠑⠉⠅⠕⠎" }, { "input": "gee", "output": "⠛⠑⠑" }, { "input": "geed", "output": "⠛⠑⠫" }, { "input": "geeing", "output": "⠛⠑⠑⠌" }, { "input": "geek", "output": "⠛⠑⠑⠅" }, { "input": "geek's", "output": "⠛⠑⠑⠅⠄⠎" }, { "input": "geekier", "output": "⠛⠑⠑⠅⠊⠻" }, { "input": "geekiest", "output": "⠛⠑⠑⠅⠊⠑⠌" }, { "input": "geeks", "output": "⠛⠑⠑⠅⠎" }, { "input": "geeky", "output": "⠛⠑⠑⠅⠽" }, { "input": "gees", "output": "⠛⠑⠑⠎" }, { "input": "geese", "output": "⠛⠑⠑⠎⠑" }, { "input": "geezer", "output": "⠛⠑⠑⠵⠻" }, { "input": "geezer's", "output": "⠛⠑⠑⠵⠻⠄⠎" }, { "input": "geezers", "output": "⠛⠑⠑⠵⠻⠎" }, { "input": "geisha", "output": "⠛⠑⠊⠩â " }, { "input": "geisha's", "output": "⠛⠑⠊⠩â â „â Ž" }, { "input": "gel", "output": "⠛⠑⠇" }, { "input": "gel's", "output": "⠛⠑⠇⠄⠎" }, { "input": "gelatin", "output": "⠛⠑⠇â â žâ ”" }, { "input": "gelatin's", "output": "⠛⠑⠇â â žâ ”â „â Ž" }, { "input": "gelatinous", "output": "⠛⠑⠇â â žâ ”⠳⠎" }, { "input": "gelcap", "output": "⠛⠑⠇⠉â â " }, { "input": "gelcap's", "output": "⠛⠑⠇⠉â â â „â Ž" }, { "input": "geld", "output": "⠛⠑⠇⠙" }, { "input": "gelded", "output": "⠛⠑⠇⠙⠫" }, { "input": "gelding", "output": "⠛⠑⠇⠙⠌" }, { "input": "gelding's", "output": "⠛⠑⠇⠙⠌⠄⠎" }, { "input": "geldings", "output": "⠛⠑⠇⠙⠌⠎" }, { "input": "gelds", "output": "⠛⠑⠇⠙⠎" }, { "input": "gelid", "output": "⠛⠑⠇⠊⠙" }, { "input": "gelignite's", "output": "⠛⠑⠇⠊⠛â â Šâ žâ ‘â „â Ž" }, { "input": "gelled", "output": "⠛⠑⠇⠇⠫" }, { "input": "gelling", "output": "⠛⠑⠇⠇⠌" }, { "input": "gels", "output": "⠛⠑⠇⠎" }, { "input": "gem", "output": "⠛⠑â " }, { "input": "gem's", "output": "⠛⠑â â „â Ž" }, { "input": "gemological", "output": "⠛⠑â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "gemologist", "output": "⠛⠑â â •⠇⠕⠛⠊⠌" }, { "input": "gemologist's", "output": "⠛⠑â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "gemologists", "output": "⠛⠑â â •⠇⠕⠛⠊⠌⠎" }, { "input": "gemology", "output": "⠛⠑â â •⠇⠕⠛⠽" }, { "input": "gemology's", "output": "⠛⠑â â •⠇⠕⠛⠽⠄⠎" }, { "input": "gems", "output": "⠛⠑â â Ž" }, { "input": "gemstone", "output": "⠛⠑â â Œâ â •" }, { "input": "gemstone's", "output": "⠛⠑â â Œâ â •â „â Ž" }, { "input": "gemstones", "output": "⠛⠑â â Œâ â •â Ž" }, { "input": "gendarme", "output": "⠛⠢⠙⠜â â ‘" }, { "input": "gendarme's", "output": "⠛⠢⠙⠜â â ‘â „â Ž" }, { "input": "gendarmes", "output": "⠛⠢⠙⠜â â ‘â Ž" }, { "input": "gender", "output": "⠛⠢⠙⠻" }, { "input": "gender's", "output": "⠛⠢⠙⠻⠄⠎" }, { "input": "genders", "output": "⠛⠢⠙⠻⠎" }, { "input": "gene", "output": "⠛⠢⠑" }, { "input": "gene's", "output": "⠛⠢⠑⠄⠎" }, { "input": "genealogical", "output": "⠛⠢⠑â â ‡â •⠛⠊⠉â â ‡" }, { "input": "genealogies", "output": "⠛⠢⠑â â ‡â •⠛⠊⠑⠎" }, { "input": "genealogist", "output": "⠛⠢⠑â â ‡â •⠛⠊⠌" }, { "input": "genealogist's", "output": "⠛⠢⠑â â ‡â •⠛⠊⠌⠄⠎" }, { "input": "genealogists", "output": "⠛⠢⠑â â ‡â •⠛⠊⠌⠎" }, { "input": "genealogy", "output": "⠛⠢⠑â â ‡â •⠛⠽" }, { "input": "genealogy's", "output": "⠛⠢⠑â â ‡â •⠛⠽⠄⠎" }, { "input": "genera", "output": "⠛⠢⠻â " }, { "input": "general", "output": "⠛⠢⠻â â ‡" }, { "input": "general's", "output": "⠛⠢⠻â â ‡â „â Ž" }, { "input": "generalissimo", "output": "⠛⠢⠻â â ‡â Šâ Žâ Žâ Šâ â •" }, { "input": "generalissimo's", "output": "⠛⠢⠻â â ‡â Šâ Žâ Žâ Šâ â •â „â Ž" }, { "input": "generalissimos", "output": "⠛⠢⠻â â ‡â Šâ Žâ Žâ Šâ â •â Ž" }, { "input": "generalities", "output": "⠛⠢⠻â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "generality", "output": "⠛⠢⠻â â ‡â °â ½" }, { "input": "generality's", "output": "⠛⠢⠻â â ‡â °â ½â „â Ž" }, { "input": "generalization", "output": "⠛⠢⠻â â ‡â Šâ µâ  â " }, { "input": "generalization's", "output": "⠛⠢⠻â â ‡â Šâ µâ  â â „â Ž" }, { "input": "generalizations", "output": "⠛⠢⠻â â ‡â Šâ µâ  â â Ž" }, { "input": "generalize", "output": "⠛⠢⠻â â ‡â Šâ µâ ‘" }, { "input": "generalized", "output": "⠛⠢⠻â â ‡â Šâ µâ «" }, { "input": "generalizes", "output": "⠛⠢⠻â â ‡â Šâ µâ ‘â Ž" }, { "input": "generalizing", "output": "⠛⠢⠻â â ‡â Šâ µâ Œ" }, { "input": "generally", "output": "⠛⠢⠻⠠⠽" }, { "input": "generals", "output": "⠛⠢⠻â â ‡â Ž" }, { "input": "generalship", "output": "⠛⠢⠻â â ‡â ©â Šâ " }, { "input": "generalship's", "output": "⠛⠢⠻â â ‡â ©â Šâ â „â Ž" }, { "input": "generate", "output": "⠛⠢⠻â â žâ ‘" }, { "input": "generated", "output": "⠛⠢⠻â â žâ «" }, { "input": "generates", "output": "⠛⠢⠻â â žâ ‘â Ž" }, { "input": "generating", "output": "⠛⠢⠻â â žâ Œ" }, { "input": "generation", "output": "⠛⠢⠻⠠â " }, { "input": "generation's", "output": "⠛⠢⠻⠠â â „â Ž" }, { "input": "generations", "output": "⠛⠢⠻⠠â â Ž" }, { "input": "generative", "output": "⠛⠢⠻â â žâ Šâ §â ‘" }, { "input": "generator", "output": "⠛⠢⠻â â žâ •â —" }, { "input": "generator's", "output": "⠛⠢⠻â â žâ •â —â „â Ž" }, { "input": "generators", "output": "⠛⠢⠻â â žâ •â —â Ž" }, { "input": "generic", "output": "⠛⠢⠻⠊⠉" }, { "input": "generic's", "output": "⠛⠢⠻⠊⠉⠄⠎" }, { "input": "generically", "output": "⠛⠢⠻⠊⠉⠠⠽" }, { "input": "generics", "output": "⠛⠢⠻⠊⠉⠎" }, { "input": "generosities", "output": "⠛⠢⠻⠕⠎⠊⠞⠊⠑⠎" }, { "input": "generosity", "output": "⠛⠢⠻⠕⠎⠰⠽" }, { "input": "generosity's", "output": "⠛⠢⠻⠕⠎⠰⠽⠄⠎" }, { "input": "generous", "output": "⠛⠢⠻⠳⠎" }, { "input": "generously", "output": "⠛⠢⠻⠳⠎⠇⠽" }, { "input": "generousness", "output": "⠛⠢⠻⠳⠎⠰⠎" }, { "input": "generousness's", "output": "⠛⠢⠻⠳⠎⠰⠎⠄⠎" }, { "input": "genes", "output": "⠛⠢⠑⠎" }, { "input": "geneses", "output": "⠛⠢⠑⠎⠑⠎" }, { "input": "genesis", "output": "⠛⠢⠑⠎⠊⠎" }, { "input": "genesis's", "output": "⠛⠢⠑⠎⠊⠎⠄⠎" }, { "input": "genetic", "output": "⠛⠢⠑⠞⠊⠉" }, { "input": "genetically", "output": "⠛⠢⠑⠞⠊⠉⠠⠽" }, { "input": "geneticist", "output": "⠛⠢⠑⠞⠊⠉⠊⠌" }, { "input": "geneticist's", "output": "⠛⠢⠑⠞⠊⠉⠊⠌⠄⠎" }, { "input": "geneticists", "output": "⠛⠢⠑⠞⠊⠉⠊⠌⠎" }, { "input": "genetics", "output": "⠛⠢⠑⠞⠊⠉⠎" }, { "input": "genetics's", "output": "⠛⠢⠑⠞⠊⠉⠎⠄⠎" }, { "input": "genial", "output": "⠛⠢⠊â â ‡" }, { "input": "geniality", "output": "⠛⠢⠊â â ‡â °â ½" }, { "input": "geniality's", "output": "⠛⠢⠊â â ‡â °â ½â „â Ž" }, { "input": "genially", "output": "⠛⠢⠊⠠⠽" }, { "input": "genie", "output": "⠛⠢⠊⠑" }, { "input": "genie's", "output": "⠛⠢⠊⠑⠄⠎" }, { "input": "genies", "output": "⠛⠢⠊⠑⠎" }, { "input": "genii", "output": "⠛⠢⠊⠊" }, { "input": "genital", "output": "⠛⠢⠊⠞â â ‡" }, { "input": "genitalia", "output": "⠛⠢⠊⠞â â ‡â Šâ " }, { "input": "genitalia's", "output": "⠛⠢⠊⠞â â ‡â Šâ â „â Ž" }, { "input": "genitally", "output": "⠛⠢⠊⠞⠠⠽" }, { "input": "genitals", "output": "⠛⠢⠊⠞â â ‡â Ž" }, { "input": "genitals's", "output": "⠛⠢⠊⠞â â ‡â Žâ „â Ž" }, { "input": "genitive", "output": "⠛⠢⠊⠞⠊⠧⠑" }, { "input": "genitive's", "output": "⠛⠢⠊⠞⠊⠧⠑⠄⠎" }, { "input": "genitives", "output": "⠛⠢⠊⠞⠊⠧⠑⠎" }, { "input": "genitourinary", "output": "⠛⠢⠊⠞⠕⠥⠗⠔⠜⠽" }, { "input": "genius", "output": "⠛⠢⠊⠥⠎" }, { "input": "genius's", "output": "⠛⠢⠊⠥⠎⠄⠎" }, { "input": "geniuses", "output": "⠛⠢⠊⠥⠎⠑⠎" }, { "input": "genocide", "output": "⠛⠢⠕⠉⠊⠙⠑" }, { "input": "genocide's", "output": "⠛⠢⠕⠉⠊⠙⠑⠄⠎" }, { "input": "genome", "output": "⠛⠢⠕â â ‘" }, { "input": "genome's", "output": "⠛⠢⠕â â ‘â „â Ž" }, { "input": "genomes", "output": "⠛⠢⠕â â ‘â Ž" }, { "input": "genre", "output": "⠛⠢⠗⠑" }, { "input": "genre's", "output": "⠛⠢⠗⠑⠄⠎" }, { "input": "genres", "output": "⠛⠢⠗⠑⠎" }, { "input": "gent", "output": "⠛⠢⠞" }, { "input": "gent's", "output": "⠛⠢⠞⠄⠎" }, { "input": "genteel", "output": "⠛⠢⠞⠑⠑⠇" }, { "input": "genteelness", "output": "⠛⠢⠞⠑⠑⠇⠰⠎" }, { "input": "genteelness's", "output": "⠛⠢⠞⠑⠑⠇⠰⠎⠄⠎" }, { "input": "gentian", "output": "⠛⠢⠞⠊â â " }, { "input": "gentian's", "output": "⠛⠢⠞⠊â â â „â Ž" }, { "input": "gentians", "output": "⠛⠢⠞⠊â â â Ž" }, { "input": "gentile", "output": "⠛⠢⠞⠊⠇⠑" }, { "input": "gentile's", "output": "⠛⠢⠞⠊⠇⠑⠄⠎" }, { "input": "gentiles", "output": "⠛⠢⠞⠊⠇⠑⠎" }, { "input": "gentility", "output": "⠛⠢⠞⠊⠇⠰⠽" }, { "input": "gentility's", "output": "⠛⠢⠞⠊⠇⠰⠽⠄⠎" }, { "input": "gentle", "output": "⠛⠢⠞⠇⠑" }, { "input": "gentled", "output": "⠛⠢⠞⠇⠫" }, { "input": "gentlefolk", "output": "⠛⠢⠞⠇⠑⠋⠕⠇⠅" }, { "input": "gentlefolk's", "output": "⠛⠢⠞⠇⠑⠋⠕⠇⠅⠄⠎" }, { "input": "gentlefolks", "output": "⠛⠢⠞⠇⠑⠋⠕⠇⠅⠎" }, { "input": "gentlefolks's", "output": "⠛⠢⠞⠇⠑⠋⠕⠇⠅⠎⠄⠎" }, { "input": "gentleman", "output": "⠛⠢⠞⠇⠑â â â " }, { "input": "gentleman's", "output": "⠛⠢⠞⠇⠑â â â â „â Ž" }, { "input": "gentlemanly", "output": "⠛⠢⠞⠇⠑â â â â ‡â ½" }, { "input": "gentlemen", "output": "⠛⠢⠞⠇⠑â â ¢" }, { "input": "gentleness", "output": "⠛⠢⠞⠇⠑⠰⠎" }, { "input": "gentleness's", "output": "⠛⠢⠞⠇⠑⠰⠎⠄⠎" }, { "input": "gentler", "output": "⠛⠢⠞⠇⠻" }, { "input": "gentles", "output": "⠛⠢⠞⠇⠑⠎" }, { "input": "gentlest", "output": "⠛⠢⠞⠇⠑⠌" }, { "input": "gentlewoman", "output": "⠛⠢⠞⠇⠑⠺⠕â â â " }, { "input": "gentlewoman's", "output": "⠛⠢⠞⠇⠑⠺⠕â â â â „â Ž" }, { "input": "gentlewomen", "output": "⠛⠢⠞⠇⠑⠺⠕â â ¢" }, { "input": "gentling", "output": "⠛⠢⠞⠇⠌" }, { "input": "gently", "output": "⠛⠢⠞⠇⠽" }, { "input": "gentries", "output": "⠛⠢⠞⠗⠊⠑⠎" }, { "input": "gentrification", "output": "⠛⠢⠞⠗⠊⠋⠊⠉⠠â " }, { "input": "gentrification's", "output": "⠛⠢⠞⠗⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "gentrified", "output": "⠛⠢⠞⠗⠊⠋⠊⠫" }, { "input": "gentrifies", "output": "⠛⠢⠞⠗⠊⠋⠊⠑⠎" }, { "input": "gentrify", "output": "⠛⠢⠞⠗⠊⠋⠽" }, { "input": "gentrifying", "output": "⠛⠢⠞⠗⠊⠋⠽⠌" }, { "input": "gentry", "output": "⠛⠢⠞⠗⠽" }, { "input": "gentry's", "output": "⠛⠢⠞⠗⠽⠄⠎" }, { "input": "gents", "output": "⠛⠢⠞⠎" }, { "input": "genuflect", "output": "⠛⠢⠥⠋⠇⠑⠉⠞" }, { "input": "genuflected", "output": "⠛⠢⠥⠋⠇⠑⠉⠞⠫" }, { "input": "genuflecting", "output": "⠛⠢⠥⠋⠇⠑⠉⠞⠌" }, { "input": "genuflection", "output": "⠛⠢⠥⠋⠇⠑⠉⠰â " }, { "input": "genuflection's", "output": "⠛⠢⠥⠋⠇⠑⠉⠰â â „â Ž" }, { "input": "genuflections", "output": "⠛⠢⠥⠋⠇⠑⠉⠰â â Ž" }, { "input": "genuflects", "output": "⠛⠢⠥⠋⠇⠑⠉⠞⠎" }, { "input": "genuine", "output": "⠛⠢⠥⠔⠑" }, { "input": "genuinely", "output": "⠛⠢⠥⠔⠑⠇⠽" }, { "input": "genuineness", "output": "⠛⠢⠥⠔⠑⠰⠎" }, { "input": "genuineness's", "output": "⠛⠢⠥⠔⠑⠰⠎⠄⠎" }, { "input": "genus", "output": "⠛⠢⠥⠎" }, { "input": "genus's", "output": "⠛⠢⠥⠎⠄⠎" }, { "input": "geocentric", "output": "⠛⠑⠕⠉⠢⠞⠗⠊⠉" }, { "input": "geocentrically", "output": "⠛⠑⠕⠉⠢⠞⠗⠊⠉⠠⠽" }, { "input": "geochemistry", "output": "⠛⠑⠕⠡⠑â â Šâ Œâ —â ½" }, { "input": "geochemistry's", "output": "⠛⠑⠕⠡⠑â â Šâ Œâ —⠽⠄⠎" }, { "input": "geode", "output": "⠛⠑⠕⠙⠑" }, { "input": "geode's", "output": "⠛⠑⠕⠙⠑⠄⠎" }, { "input": "geodes", "output": "⠛⠑⠕⠙⠑⠎" }, { "input": "geodesic", "output": "⠛⠑⠕⠙⠑⠎⠊⠉" }, { "input": "geodesic's", "output": "⠛⠑⠕⠙⠑⠎⠊⠉⠄⠎" }, { "input": "geodesics", "output": "⠛⠑⠕⠙⠑⠎⠊⠉⠎" }, { "input": "geodesy", "output": "⠛⠑⠕⠙⠑⠎⠽" }, { "input": "geodesy's", "output": "⠛⠑⠕⠙⠑⠎⠽⠄⠎" }, { "input": "geodetic", "output": "⠛⠑⠕⠙⠑⠞⠊⠉" }, { "input": "geographer", "output": "⠛⠑⠕⠛⠗â â â “â »" }, { "input": "geographer's", "output": "⠛⠑⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "geographers", "output": "⠛⠑⠕⠛⠗â â â “⠻⠎" }, { "input": "geographic", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‰" }, { "input": "geographical", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "geographically", "output": "⠛⠑⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "geographies", "output": "⠛⠑⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "geography", "output": "⠛⠑⠕⠛⠗â â â “â ½" }, { "input": "geography's", "output": "⠛⠑⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "geologic", "output": "⠛⠑⠕⠇⠕⠛⠊⠉" }, { "input": "geological", "output": "⠛⠑⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "geologically", "output": "⠛⠑⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "geologies", "output": "⠛⠑⠕⠇⠕⠛⠊⠑⠎" }, { "input": "geologist", "output": "⠛⠑⠕⠇⠕⠛⠊⠌" }, { "input": "geologist's", "output": "⠛⠑⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "geologists", "output": "⠛⠑⠕⠇⠕⠛⠊⠌⠎" }, { "input": "geology", "output": "⠛⠑⠕⠇⠕⠛⠽" }, { "input": "geology's", "output": "⠛⠑⠕⠇⠕⠛⠽⠄⠎" }, { "input": "geomagnetic", "output": "⠛⠑⠕â â â ›â â ‘â žâ Šâ ‰" }, { "input": "geomagnetism", "output": "⠛⠑⠕â â â ›â â ‘â žâ Šâ Žâ " }, { "input": "geomagnetism's", "output": "⠛⠑⠕â â â ›â â ‘â žâ Šâ Žâ â „â Ž" }, { "input": "geometer", "output": "⠛⠑⠕â â ‘â žâ »" }, { "input": "geometric", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‰" }, { "input": "geometrical", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "geometrically", "output": "⠛⠑⠕â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "geometries", "output": "⠛⠑⠕â â ‘â žâ —â Šâ ‘â Ž" }, { "input": "geometry", "output": "⠛⠑⠕â â ‘â žâ —â ½" }, { "input": "geometry's", "output": "⠛⠑⠕â â ‘⠞⠗⠽⠄⠎" }, { "input": "geophysical", "output": "⠛⠑⠕â â “⠽⠎⠊⠉â â ‡" }, { "input": "geophysics", "output": "⠛⠑⠕â â “⠽⠎⠊⠉⠎" }, { "input": "geophysics's", "output": "⠛⠑⠕â â “⠽⠎⠊⠉⠎⠄⠎" }, { "input": "geopolitical", "output": "⠛⠑⠕â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "geopolitics", "output": "⠛⠑⠕â â •⠇⠊⠞⠊⠉⠎" }, { "input": "geopolitics's", "output": "⠛⠑⠕â â •⠇⠊⠞⠊⠉⠎⠄⠎" }, { "input": "geostationary", "output": "⠛⠑⠕⠌⠠â â œâ ½" }, { "input": "geosynchronous", "output": "⠛⠑⠕⠎⠽â â ¡â —â •â â ³â Ž" }, { "input": "geosyncline", "output": "⠛⠑⠕⠎⠽â â ‰â ‡â ”â ‘" }, { "input": "geosyncline's", "output": "⠛⠑⠕⠎⠽â â ‰â ‡â ”â ‘â „â Ž" }, { "input": "geosynclines", "output": "⠛⠑⠕⠎⠽â â ‰â ‡â ”â ‘â Ž" }, { "input": "geothermal", "output": "⠛⠑⠕⠮⠗â â â ‡" }, { "input": "geothermic", "output": "⠛⠑⠕⠮⠗â â Šâ ‰" }, { "input": "geranium", "output": "⠛⠻â â â Šâ ¥â " }, { "input": "geranium's", "output": "⠛⠻â â â Šâ ¥â â „â Ž" }, { "input": "geraniums", "output": "⠛⠻â â â Šâ ¥â â Ž" }, { "input": "gerbil", "output": "⠛⠻⠃⠊⠇" }, { "input": "gerbil's", "output": "⠛⠻⠃⠊⠇⠄⠎" }, { "input": "gerbils", "output": "⠛⠻⠃⠊⠇⠎" }, { "input": "geriatric", "output": "⠛⠻⠊â â žâ —â Šâ ‰" }, { "input": "geriatrics", "output": "⠛⠻⠊â â žâ —⠊⠉⠎" }, { "input": "geriatrics's", "output": "⠛⠻⠊â â žâ —⠊⠉⠎⠄⠎" }, { "input": "germ", "output": "⠛⠻â " }, { "input": "germ's", "output": "⠛⠻â â „â Ž" }, { "input": "germane", "output": "⠛⠻â â â â ‘" }, { "input": "germanium", "output": "⠛⠻â â â â Šâ ¥â " }, { "input": "germanium's", "output": "⠛⠻â â â â Šâ ¥â â „â Ž" }, { "input": "germicidal", "output": "⠛⠻â â Šâ ‰â Šâ ™â â ‡" }, { "input": "germicide", "output": "⠛⠻â â Šâ ‰â Šâ ™â ‘" }, { "input": "germicide's", "output": "⠛⠻â â Šâ ‰â Šâ ™â ‘â „â Ž" }, { "input": "germicides", "output": "⠛⠻â â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "germinal", "output": "⠛⠻â â ”â â ‡" }, { "input": "germinal's", "output": "⠛⠻â â ”â â ‡â „â Ž" }, { "input": "germinate", "output": "⠛⠻â â ”â â žâ ‘" }, { "input": "germinated", "output": "⠛⠻â â ”â â žâ «" }, { "input": "germinates", "output": "⠛⠻â â ”â â žâ ‘â Ž" }, { "input": "germinating", "output": "⠛⠻â â ”â â žâ Œ" }, { "input": "germination", "output": "⠛⠻â â ”â  â " }, { "input": "germination's", "output": "⠛⠻â â ”â  â â „â Ž" }, { "input": "germs", "output": "⠛⠻â â Ž" }, { "input": "gerontologist", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠊⠌" }, { "input": "gerontologist's", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "gerontologists", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "gerontology", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠽" }, { "input": "gerontology's", "output": "⠛⠻⠕â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "gerrymander", "output": "⠛⠻⠗⠽â â ¯â »" }, { "input": "gerrymander's", "output": "⠛⠻⠗⠽â â ¯â »â „â Ž" }, { "input": "gerrymandered", "output": "⠛⠻⠗⠽â â ¯â »â «" }, { "input": "gerrymandering", "output": "⠛⠻⠗⠽â â ¯â »â Œ" }, { "input": "gerrymandering's", "output": "⠛⠻⠗⠽â â ¯â »â Œâ „â Ž" }, { "input": "gerrymanders", "output": "⠛⠻⠗⠽â â ¯â »â Ž" }, { "input": "gerund", "output": "⠛⠻⠥â â ™" }, { "input": "gerund's", "output": "⠛⠻⠥â â ™â „â Ž" }, { "input": "gerunds", "output": "⠛⠻⠥â â ™â Ž" }, { "input": "gestapo", "output": "⠛⠑⠌â â â •" }, { "input": "gestapo's", "output": "⠛⠑⠌â â â •â „â Ž" }, { "input": "gestapos", "output": "⠛⠑⠌â â â •â Ž" }, { "input": "gestate", "output": "⠛⠑⠌â â žâ ‘" }, { "input": "gestated", "output": "⠛⠑⠌â â žâ «" }, { "input": "gestates", "output": "⠛⠑⠌â â žâ ‘â Ž" }, { "input": "gestating", "output": "⠛⠑⠌â â žâ Œ" }, { "input": "gestation", "output": "⠛⠑⠌⠠â " }, { "input": "gestation's", "output": "⠛⠑⠌⠠â â „â Ž" }, { "input": "gestational", "output": "⠛⠑⠌⠠â â â ‡" }, { "input": "gesticulate", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ ‘" }, { "input": "gesticulated", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ «" }, { "input": "gesticulates", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ ‘â Ž" }, { "input": "gesticulating", "output": "⠛⠑⠌⠊⠉⠥⠇â â žâ Œ" }, { "input": "gesticulation", "output": "⠛⠑⠌⠊⠉⠥⠇⠠â " }, { "input": "gesticulation's", "output": "⠛⠑⠌⠊⠉⠥⠇⠠â â „â Ž" }, { "input": "gesticulations", "output": "⠛⠑⠌⠊⠉⠥⠇⠠â â Ž" }, { "input": "gestural", "output": "⠛⠑⠌⠥⠗â â ‡" }, { "input": "gesture", "output": "⠛⠑⠌⠥⠗⠑" }, { "input": "gesture's", "output": "⠛⠑⠌⠥⠗⠑⠄⠎" }, { "input": "gestured", "output": "⠛⠑⠌⠥⠗⠫" }, { "input": "gestures", "output": "⠛⠑⠌⠥⠗⠑⠎" }, { "input": "gesturing", "output": "⠛⠑⠌⠥⠗⠌" }, { "input": "gesundheit", "output": "⠛⠑⠎⠥â â ™â “â ‘â Šâ ž" }, { "input": "get", "output": "⠛⠑⠞" }, { "input": "get's", "output": "⠛⠑⠞⠄⠎" }, { "input": "getaway", "output": "⠛⠑⠞â â ºâ â ½" }, { "input": "getaway's", "output": "⠛⠑⠞â â ºâ â ½â „â Ž" }, { "input": "getaways", "output": "⠛⠑⠞â â ºâ â ½â Ž" }, { "input": "gets", "output": "⠛⠑⠞⠎" }, { "input": "getting", "output": "⠛⠑⠞⠞⠌" }, { "input": "getup", "output": "⠛⠑⠞⠥â " }, { "input": "getup's", "output": "⠛⠑⠞⠥â â „â Ž" }, { "input": "gewgaw", "output": "⠛⠑⠺⠛â â º" }, { "input": "gewgaw's", "output": "⠛⠑⠺⠛â â ºâ „â Ž" }, { "input": "gewgaws", "output": "⠛⠑⠺⠛â â ºâ Ž" }, { "input": "geyser", "output": "⠛⠑⠽⠎⠻" }, { "input": "geyser's", "output": "⠛⠑⠽⠎⠻⠄⠎" }, { "input": "geysers", "output": "⠛⠑⠽⠎⠻⠎" }, { "input": "ghastlier", "output": "â £â â Œâ ‡â Šâ »" }, { "input": "ghastliest", "output": "â £â â Œâ ‡â Šâ ‘â Œ" }, { "input": "ghastliness", "output": "â £â â Œâ ‡â Šâ °â Ž" }, { "input": "ghastliness's", "output": "â £â â Œâ ‡â Šâ °â Žâ „â Ž" }, { "input": "ghastly", "output": "â £â â Œâ ‡â ½" }, { "input": "ghat", "output": "â £â â ž" }, { "input": "ghat's", "output": "â £â â žâ „â Ž" }, { "input": "ghats", "output": "â £â â žâ Ž" }, { "input": "gherkin", "output": "⠣⠻⠅⠔" }, { "input": "gherkin's", "output": "⠣⠻⠅⠔⠄⠎" }, { "input": "gherkins", "output": "⠣⠻⠅⠔⠎" }, { "input": "ghetto", "output": "⠣⠑⠞⠞⠕" }, { "input": "ghetto's", "output": "⠣⠑⠞⠞⠕⠄⠎" }, { "input": "ghettoize", "output": "⠣⠑⠞⠞⠕⠊⠵⠑" }, { "input": "ghettoized", "output": "⠣⠑⠞⠞⠕⠊⠵⠫" }, { "input": "ghettoizes", "output": "⠣⠑⠞⠞⠕⠊⠵⠑⠎" }, { "input": "ghettoizing", "output": "⠣⠑⠞⠞⠕⠊⠵⠌" }, { "input": "ghettos", "output": "⠣⠑⠞⠞⠕⠎" }, { "input": "ghost", "output": "⠣⠕⠌" }, { "input": "ghost's", "output": "⠣⠕⠌⠄⠎" }, { "input": "ghosted", "output": "⠣⠕⠌⠫" }, { "input": "ghosting", "output": "⠣⠕⠌⠌" }, { "input": "ghostlier", "output": "⠣⠕⠌⠇⠊⠻" }, { "input": "ghostliest", "output": "⠣⠕⠌⠇⠊⠑⠌" }, { "input": "ghostliness", "output": "⠣⠕⠌⠇⠊⠰⠎" }, { "input": "ghostliness's", "output": "⠣⠕⠌⠇⠊⠰⠎⠄⠎" }, { "input": "ghostly", "output": "⠣⠕⠌⠇⠽" }, { "input": "ghosts", "output": "⠣⠕⠌⠎" }, { "input": "ghostwrite", "output": "⠣⠕⠌⠺⠗⠊⠞⠑" }, { "input": "ghostwriter", "output": "⠣⠕⠌⠺⠗⠊⠞⠻" }, { "input": "ghostwriter's", "output": "⠣⠕⠌⠺⠗⠊⠞⠻⠄⠎" }, { "input": "ghostwriters", "output": "⠣⠕⠌⠺⠗⠊⠞⠻⠎" }, { "input": "ghostwrites", "output": "⠣⠕⠌⠺⠗⠊⠞⠑⠎" }, { "input": "ghostwriting", "output": "⠣⠕⠌⠺⠗⠊⠞⠌" }, { "input": "ghostwritten", "output": "⠣⠕⠌⠺⠗⠊⠞⠞⠢" }, { "input": "ghostwrote", "output": "⠣⠕⠌⠺⠗⠕⠞⠑" }, { "input": "ghoul", "output": "⠣⠳⠇" }, { "input": "ghoul's", "output": "⠣⠳⠇⠄⠎" }, { "input": "ghoulish", "output": "⠣⠳⠇⠊⠩" }, { "input": "ghoulishly", "output": "⠣⠳⠇⠊⠩⠇⠽" }, { "input": "ghoulishness", "output": "⠣⠳⠇⠊⠩⠰⠎" }, { "input": "ghoulishness's", "output": "⠣⠳⠇⠊⠩⠰⠎⠄⠎" }, { "input": "ghouls", "output": "⠣⠳⠇⠎" }, { "input": "giant", "output": "⠛⠊â â â ž" }, { "input": "giant's", "output": "⠛⠊â â â žâ „â Ž" }, { "input": "giantess", "output": "⠛⠊â â â žâ ‘â Žâ Ž" }, { "input": "giantess's", "output": "⠛⠊â â â žâ ‘â Žâ Žâ „â Ž" }, { "input": "giantesses", "output": "⠛⠊â â â žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "giants", "output": "⠛⠊â â â žâ Ž" }, { "input": "gibber", "output": "⠛⠊⠆⠻" }, { "input": "gibbered", "output": "⠛⠊⠆⠻⠫" }, { "input": "gibbering", "output": "⠛⠊⠆⠻⠌" }, { "input": "gibberish", "output": "⠛⠊⠆⠻⠊⠩" }, { "input": "gibberish's", "output": "⠛⠊⠆⠻⠊⠩⠄⠎" }, { "input": "gibbers", "output": "⠛⠊⠆⠻⠎" }, { "input": "gibbet", "output": "⠛⠊⠆⠑⠞" }, { "input": "gibbet's", "output": "⠛⠊⠆⠑⠞⠄⠎" }, { "input": "gibbeted", "output": "⠛⠊⠆⠑⠞⠫" }, { "input": "gibbeting", "output": "⠛⠊⠆⠑⠞⠌" }, { "input": "gibbets", "output": "⠛⠊⠆⠑⠞⠎" }, { "input": "gibbon", "output": "⠛⠊⠆⠕â " }, { "input": "gibbon's", "output": "⠛⠊⠆⠕â â „â Ž" }, { "input": "gibbons", "output": "⠛⠊⠆⠕â â Ž" }, { "input": "gibbous", "output": "⠛⠊⠆⠳⠎" }, { "input": "gibe", "output": "⠛⠊⠃⠑" }, { "input": "gibe's", "output": "⠛⠊⠃⠑⠄⠎" }, { "input": "gibed", "output": "⠛⠊⠃⠫" }, { "input": "gibes", "output": "⠛⠊⠃⠑⠎" }, { "input": "gibing", "output": "⠛⠊⠃⠌" }, { "input": "giblet", "output": "⠛⠊⠼⠞" }, { "input": "giblet's", "output": "⠛⠊⠼⠞⠄⠎" }, { "input": "giblets", "output": "⠛⠊⠼⠞⠎" }, { "input": "giddier", "output": "⠛⠊⠲⠊⠻" }, { "input": "giddiest", "output": "⠛⠊⠲⠊⠑⠌" }, { "input": "giddily", "output": "⠛⠊⠲⠊⠇⠽" }, { "input": "giddiness", "output": "⠛⠊⠲⠊⠰⠎" }, { "input": "giddiness's", "output": "⠛⠊⠲⠊⠰⠎⠄⠎" }, { "input": "giddy", "output": "⠛⠊⠲⠽" }, { "input": "gift", "output": "⠛⠊⠋⠞" }, { "input": "gift's", "output": "⠛⠊⠋⠞⠄⠎" }, { "input": "gifted", "output": "⠛⠊⠋⠞⠫" }, { "input": "gifting", "output": "⠛⠊⠋⠞⠌" }, { "input": "gifts", "output": "⠛⠊⠋⠞⠎" }, { "input": "gig", "output": "⠛⠊⠛" }, { "input": "gig's", "output": "⠛⠊⠛⠄⠎" }, { "input": "gigabit", "output": "⠛⠊⠛â â ƒâ Šâ ž" }, { "input": "gigabit's", "output": "⠛⠊⠛â â ƒâ Šâ žâ „â Ž" }, { "input": "gigabits", "output": "⠛⠊⠛â â ƒâ Šâ žâ Ž" }, { "input": "gigabyte", "output": "⠛⠊⠛â â ƒâ ½â žâ ‘" }, { "input": "gigabyte's", "output": "⠛⠊⠛â â ƒâ ½â žâ ‘â „â Ž" }, { "input": "gigabytes", "output": "⠛⠊⠛â â ƒâ ½â žâ ‘â Ž" }, { "input": "gigahertz", "output": "⠛⠊⠛â â “⠻⠞⠵" }, { "input": "gigahertz's", "output": "⠛⠊⠛â â “⠻⠞⠵⠄⠎" }, { "input": "gigantic", "output": "⠛⠊⠛â â â žâ Šâ ‰" }, { "input": "gigawatt", "output": "⠛⠊⠛â â ºâ â žâ ž" }, { "input": "gigawatt's", "output": "⠛⠊⠛â â ºâ â žâ žâ „â Ž" }, { "input": "gigawatts", "output": "⠛⠊⠛â â ºâ â žâ žâ Ž" }, { "input": "gigged", "output": "⠛⠊⠶⠫" }, { "input": "gigging", "output": "⠛⠊⠶⠌" }, { "input": "giggle", "output": "⠛⠊⠶⠇⠑" }, { "input": "giggle's", "output": "⠛⠊⠶⠇⠑⠄⠎" }, { "input": "giggled", "output": "⠛⠊⠶⠇⠫" }, { "input": "giggler", "output": "⠛⠊⠶⠇⠻" }, { "input": "giggler's", "output": "⠛⠊⠶⠇⠻⠄⠎" }, { "input": "gigglers", "output": "⠛⠊⠶⠇⠻⠎" }, { "input": "giggles", "output": "⠛⠊⠶⠇⠑⠎" }, { "input": "gigglier", "output": "⠛⠊⠶⠇⠊⠻" }, { "input": "giggliest", "output": "⠛⠊⠶⠇⠊⠑⠌" }, { "input": "giggling", "output": "⠛⠊⠶⠇⠌" }, { "input": "giggly", "output": "⠛⠊⠶⠇⠽" }, { "input": "gigolo", "output": "⠛⠊⠛⠕⠇⠕" }, { "input": "gigolo's", "output": "⠛⠊⠛⠕⠇⠕⠄⠎" }, { "input": "gigolos", "output": "⠛⠊⠛⠕⠇⠕⠎" }, { "input": "gigs", "output": "⠛⠊⠛⠎" }, { "input": "gild", "output": "⠛⠊⠇⠙" }, { "input": "gild's", "output": "⠛⠊⠇⠙⠄⠎" }, { "input": "gilded", "output": "⠛⠊⠇⠙⠫" }, { "input": "gilder", "output": "⠛⠊⠇⠙⠻" }, { "input": "gilder's", "output": "⠛⠊⠇⠙⠻⠄⠎" }, { "input": "gilders", "output": "⠛⠊⠇⠙⠻⠎" }, { "input": "gilding", "output": "⠛⠊⠇⠙⠌" }, { "input": "gilding's", "output": "⠛⠊⠇⠙⠌⠄⠎" }, { "input": "gilds", "output": "⠛⠊⠇⠙⠎" }, { "input": "gill", "output": "⠛⠊⠇⠇" }, { "input": "gill's", "output": "⠛⠊⠇⠇⠄⠎" }, { "input": "gills", "output": "⠛⠊⠇⠇⠎" }, { "input": "gilt", "output": "⠛⠊⠇⠞" }, { "input": "gilt's", "output": "⠛⠊⠇⠞⠄⠎" }, { "input": "gilts", "output": "⠛⠊⠇⠞⠎" }, { "input": "gimbals", "output": "⠛⠊â â ƒâ â ‡â Ž" }, { "input": "gimbals's", "output": "⠛⠊â â ƒâ â ‡â Žâ „â Ž" }, { "input": "gimcrack", "output": "⠛⠊â â ‰â —â â ‰â …" }, { "input": "gimcrack's", "output": "⠛⠊â â ‰â —â â ‰â …â „â Ž" }, { "input": "gimcrackery", "output": "⠛⠊â â ‰â —â â ‰â …⠻⠽" }, { "input": "gimcrackery's", "output": "⠛⠊â â ‰â —â â ‰â …⠻⠽⠄⠎" }, { "input": "gimcracks", "output": "⠛⠊â â ‰â —â â ‰â …â Ž" }, { "input": "gimlet", "output": "⠛⠊â â ‡â ‘â ž" }, { "input": "gimlet's", "output": "⠛⠊â â ‡â ‘â žâ „â Ž" }, { "input": "gimleted", "output": "⠛⠊â â ‡â ‘â žâ «" }, { "input": "gimleting", "output": "⠛⠊â â ‡â ‘â žâ Œ" }, { "input": "gimlets", "output": "⠛⠊â â ‡â ‘â žâ Ž" }, { "input": "gimme", "output": "⠛⠊â â â ‘" }, { "input": "gimme's", "output": "⠛⠊â â â ‘â „â Ž" }, { "input": "gimmes", "output": "⠛⠊â â â ‘â Ž" }, { "input": "gimmick", "output": "⠛⠊â â â Šâ ‰â …" }, { "input": "gimmick's", "output": "⠛⠊â â â Šâ ‰â …â „â Ž" }, { "input": "gimmickry", "output": "⠛⠊â â â Šâ ‰â …â —â ½" }, { "input": "gimmickry's", "output": "⠛⠊â â â Šâ ‰â …⠗⠽⠄⠎" }, { "input": "gimmicks", "output": "⠛⠊â â â Šâ ‰â …â Ž" }, { "input": "gimmicky", "output": "⠛⠊â â â Šâ ‰â …â ½" }, { "input": "gimp", "output": "⠛⠊â â " }, { "input": "gimp's", "output": "⠛⠊â â â „â Ž" }, { "input": "gimped", "output": "⠛⠊â â â «" }, { "input": "gimpier", "output": "⠛⠊â â â Šâ »" }, { "input": "gimpiest", "output": "⠛⠊â â â Šâ ‘â Œ" }, { "input": "gimping", "output": "⠛⠊â â â Œ" }, { "input": "gimps", "output": "⠛⠊â â â Ž" }, { "input": "gimpy", "output": "⠛⠊â â â ½" }, { "input": "gin", "output": "⠛⠔" }, { "input": "gin's", "output": "⠛⠔⠄⠎" }, { "input": "ginger", "output": "⠛⠌⠻" }, { "input": "ginger's", "output": "⠛⠌⠻⠄⠎" }, { "input": "gingerbread", "output": "⠛⠌⠻⠃⠗⠂⠙" }, { "input": "gingerbread's", "output": "⠛⠌⠻⠃⠗⠂⠙⠄⠎" }, { "input": "gingerly", "output": "⠛⠌⠻⠇⠽" }, { "input": "gingersnap", "output": "⠛⠌⠻⠎â â â " }, { "input": "gingersnap's", "output": "⠛⠌⠻⠎â â â â „â Ž" }, { "input": "gingersnaps", "output": "⠛⠌⠻⠎â â â â Ž" }, { "input": "gingham", "output": "⠛⠌⠓â â " }, { "input": "gingham's", "output": "⠛⠌⠓â â â „â Ž" }, { "input": "gingivitis", "output": "⠛⠌⠊⠧⠊⠞⠊⠎" }, { "input": "gingivitis's", "output": "⠛⠌⠊⠧⠊⠞⠊⠎⠄⠎" }, { "input": "ginkgo", "output": "⠛⠔⠅⠛⠕" }, { "input": "ginkgo's", "output": "⠛⠔⠅⠛⠕⠄⠎" }, { "input": "ginkgoes", "output": "⠛⠔⠅⠛⠕⠑⠎" }, { "input": "ginned", "output": "⠛⠔â â «" }, { "input": "ginning", "output": "⠛⠔â â Œ" }, { "input": "gins", "output": "⠛⠔⠎" }, { "input": "ginseng", "output": "⠛⠔⠎⠢⠛" }, { "input": "ginseng's", "output": "⠛⠔⠎⠢⠛⠄⠎" }, { "input": "giraffe", "output": "⠛⠊⠗â â –â ‘" }, { "input": "giraffe's", "output": "⠛⠊⠗â â –â ‘â „â Ž" }, { "input": "giraffes", "output": "⠛⠊⠗â â –â ‘â Ž" }, { "input": "gird", "output": "⠛⠊⠗⠙" }, { "input": "girded", "output": "⠛⠊⠗⠙⠫" }, { "input": "girder", "output": "⠛⠊⠗⠙⠻" }, { "input": "girder's", "output": "⠛⠊⠗⠙⠻⠄⠎" }, { "input": "girders", "output": "⠛⠊⠗⠙⠻⠎" }, { "input": "girding", "output": "⠛⠊⠗⠙⠌" }, { "input": "girdle", "output": "⠛⠊⠗⠙⠇⠑" }, { "input": "girdle's", "output": "⠛⠊⠗⠙⠇⠑⠄⠎" }, { "input": "girdled", "output": "⠛⠊⠗⠙⠇⠫" }, { "input": "girdles", "output": "⠛⠊⠗⠙⠇⠑⠎" }, { "input": "girdling", "output": "⠛⠊⠗⠙⠇⠌" }, { "input": "girds", "output": "⠛⠊⠗⠙⠎" }, { "input": "girl", "output": "⠛⠊⠗⠇" }, { "input": "girl's", "output": "⠛⠊⠗⠇⠄⠎" }, { "input": "girlfriend", "output": "⠛⠊⠗⠇⠋⠗" }, { "input": "girlfriend's", "output": "⠛⠊⠗⠇⠋⠗⠄⠎" }, { "input": "girlfriends", "output": "⠛⠊⠗⠇⠋⠗⠎" }, { "input": "girlhood", "output": "⠛⠊⠗⠇⠓⠕⠕⠙" }, { "input": "girlhood's", "output": "⠛⠊⠗⠇⠓⠕⠕⠙⠄⠎" }, { "input": "girlhoods", "output": "⠛⠊⠗⠇⠓⠕⠕⠙⠎" }, { "input": "girlish", "output": "⠛⠊⠗⠇⠊⠩" }, { "input": "girlishly", "output": "⠛⠊⠗⠇⠊⠩⠇⠽" }, { "input": "girlishness", "output": "⠛⠊⠗⠇⠊⠩⠰⠎" }, { "input": "girlishness's", "output": "⠛⠊⠗⠇⠊⠩⠰⠎⠄⠎" }, { "input": "girls", "output": "⠛⠊⠗⠇⠎" }, { "input": "girt", "output": "⠛⠊⠗⠞" }, { "input": "girt's", "output": "⠛⠊⠗⠞⠄⠎" }, { "input": "girted", "output": "⠛⠊⠗⠞⠫" }, { "input": "girth", "output": "⠛⠊⠗⠹" }, { "input": "girth's", "output": "⠛⠊⠗⠹⠄⠎" }, { "input": "girths", "output": "⠛⠊⠗⠹⠎" }, { "input": "girting", "output": "⠛⠊⠗⠞⠌" }, { "input": "girts", "output": "⠛⠊⠗⠞⠎" }, { "input": "gist", "output": "⠛⠊⠌" }, { "input": "gist's", "output": "⠛⠊⠌⠄⠎" }, { "input": "give", "output": "⠛⠊⠧⠑" }, { "input": "give's", "output": "⠛⠊⠧⠑⠄⠎" }, { "input": "giveaway", "output": "⠛⠊⠧⠑â â ºâ â ½" }, { "input": "giveaway's", "output": "⠛⠊⠧⠑â â ºâ â ½â „â Ž" }, { "input": "giveaways", "output": "⠛⠊⠧⠑â â ºâ â ½â Ž" }, { "input": "giveback", "output": "⠛⠊⠧⠑⠃â â ‰â …" }, { "input": "giveback's", "output": "⠛⠊⠧⠑⠃â â ‰â …â „â Ž" }, { "input": "givebacks", "output": "⠛⠊⠧⠑⠃â â ‰â …â Ž" }, { "input": "given", "output": "⠛⠊⠧⠢" }, { "input": "given's", "output": "⠛⠊⠧⠢⠄⠎" }, { "input": "givens", "output": "⠛⠊⠧⠢⠎" }, { "input": "gives", "output": "⠛⠊⠧⠑⠎" }, { "input": "giving", "output": "⠛⠊⠧⠌" }, { "input": "givings", "output": "⠛⠊⠧⠌⠎" }, { "input": "gizmo", "output": "⠛⠊⠵â â •" }, { "input": "gizmo's", "output": "⠛⠊⠵â â •â „â Ž" }, { "input": "gizmos", "output": "⠛⠊⠵â â •â Ž" }, { "input": "gizzard", "output": "⠛⠊⠵⠵⠜⠙" }, { "input": "gizzard's", "output": "⠛⠊⠵⠵⠜⠙⠄⠎" }, { "input": "gizzards", "output": "⠛⠊⠵⠵⠜⠙⠎" }, { "input": "glacial", "output": "⠛⠇â â ‰â Šâ â ‡" }, { "input": "glacially", "output": "⠛⠇â â ‰â Šâ  â ½" }, { "input": "glaciate", "output": "⠛⠇â â ‰â Šâ â žâ ‘" }, { "input": "glaciated", "output": "⠛⠇â â ‰â Šâ â žâ «" }, { "input": "glaciates", "output": "⠛⠇â â ‰â Šâ â žâ ‘â Ž" }, { "input": "glaciating", "output": "⠛⠇â â ‰â Šâ â žâ Œ" }, { "input": "glaciation's", "output": "⠛⠇â â ‰â Šâ  â â „â Ž" }, { "input": "glaciations", "output": "⠛⠇â â ‰â Šâ  â â Ž" }, { "input": "glacier", "output": "⠛⠇â â ‰â Šâ »" }, { "input": "glacier's", "output": "⠛⠇â â ‰â Šâ »â „â Ž" }, { "input": "glaciers", "output": "⠛⠇â â ‰â Šâ »â Ž" }, { "input": "glad", "output": "⠛⠇â â ™" }, { "input": "glad's", "output": "⠛⠇â â ™â „â Ž" }, { "input": "gladden", "output": "⠛⠇â â ²â ¢" }, { "input": "gladdened", "output": "⠛⠇â â ²â ¢â «" }, { "input": "gladdening", "output": "⠛⠇â â ²â ¢â Œ" }, { "input": "gladdens", "output": "⠛⠇â â ²â ¢â Ž" }, { "input": "gladder", "output": "⠛⠇â â ²â »" }, { "input": "gladdest", "output": "⠛⠇â â ²â ‘â Œ" }, { "input": "glade", "output": "⠛⠇â â ™â ‘" }, { "input": "glade's", "output": "⠛⠇â â ™â ‘â „â Ž" }, { "input": "glades", "output": "⠛⠇â â ™â ‘â Ž" }, { "input": "gladiator", "output": "⠛⠇â â ™â Šâ â žâ •â —" }, { "input": "gladiator's", "output": "⠛⠇â â ™â Šâ â žâ •â —â „â Ž" }, { "input": "gladiatorial", "output": "⠛⠇â â ™â Šâ â žâ •â —â Šâ â ‡" }, { "input": "gladiators", "output": "⠛⠇â â ™â Šâ â žâ •â —â Ž" }, { "input": "gladiola", "output": "⠛⠇â â ™â Šâ •â ‡â " }, { "input": "gladiola's", "output": "⠛⠇â â ™â Šâ •â ‡â â „â Ž" }, { "input": "gladiolas", "output": "⠛⠇â â ™â Šâ •â ‡â â Ž" }, { "input": "gladioli", "output": "⠛⠇â â ™â Šâ •⠇⠊" }, { "input": "gladiolus", "output": "⠛⠇â â ™â Šâ •⠇⠥⠎" }, { "input": "gladiolus's", "output": "⠛⠇â â ™â Šâ •⠇⠥⠎⠄⠎" }, { "input": "gladly", "output": "⠛⠇â â ™â ‡â ½" }, { "input": "gladness", "output": "⠛⠇â â ™â °â Ž" }, { "input": "gladness's", "output": "⠛⠇â â ™â °â Žâ „â Ž" }, { "input": "glads", "output": "⠛⠇â â ™â Ž" }, { "input": "gladsome", "output": "⠛⠇â â ™â â Ž" }, { "input": "glamorization", "output": "⠛⠇â â â •⠗⠊⠵⠠â " }, { "input": "glamorization's", "output": "⠛⠇â â â •⠗⠊⠵⠠â â „â Ž" }, { "input": "glamorize", "output": "⠛⠇â â â •⠗⠊⠵⠑" }, { "input": "glamorized", "output": "⠛⠇â â â •⠗⠊⠵⠫" }, { "input": "glamorizes", "output": "⠛⠇â â â •⠗⠊⠵⠑⠎" }, { "input": "glamorizing", "output": "⠛⠇â â â •⠗⠊⠵⠌" }, { "input": "glamorous", "output": "⠛⠇â â â •⠗⠳⠎" }, { "input": "glamorously", "output": "⠛⠇â â â •⠗⠳⠎⠇⠽" }, { "input": "glamour", "output": "⠛⠇â â â ³â —" }, { "input": "glamour's", "output": "⠛⠇â â â ³â —â „â Ž" }, { "input": "glamoured", "output": "⠛⠇â â â ³â —â «" }, { "input": "glamouring", "output": "⠛⠇â â â ³â —â Œ" }, { "input": "glamours", "output": "⠛⠇â â â ³â —â Ž" }, { "input": "glance", "output": "⠛⠇⠨⠑" }, { "input": "glance's", "output": "⠛⠇⠨⠑⠄⠎" }, { "input": "glanced", "output": "⠛⠇⠨⠑⠙" }, { "input": "glances", "output": "⠛⠇⠨⠑⠎" }, { "input": "glancing", "output": "⠛⠇â â â ‰â Œ" }, { "input": "gland", "output": "⠛⠇⠯" }, { "input": "gland's", "output": "⠛⠇⠯⠄⠎" }, { "input": "glandes", "output": "⠛⠇⠯⠑⠎" }, { "input": "glands", "output": "⠛⠇⠯⠎" }, { "input": "glandular", "output": "⠛⠇⠯⠥⠇⠜" }, { "input": "glans", "output": "⠛⠇â â â Ž" }, { "input": "glans's", "output": "⠛⠇â â â Žâ „â Ž" }, { "input": "glare", "output": "⠛⠇⠜⠑" }, { "input": "glare's", "output": "⠛⠇⠜⠑⠄⠎" }, { "input": "glared", "output": "⠛⠇⠜⠫" }, { "input": "glares", "output": "⠛⠇⠜⠑⠎" }, { "input": "glaring", "output": "⠛⠇⠜⠌" }, { "input": "glaringly", "output": "⠛⠇⠜⠌⠇⠽" }, { "input": "glasnost's", "output": "⠛⠇â â Žâ â •⠌⠄⠎" }, { "input": "glass", "output": "⠛⠇â â Žâ Ž" }, { "input": "glass's", "output": "⠛⠇â â Žâ Žâ „â Ž" }, { "input": "glassblower", "output": "⠛⠇â â Žâ Žâ ƒâ ‡â ªâ »" }, { "input": "glassblower's", "output": "⠛⠇â â Žâ Žâ ƒâ ‡â ªâ »â „â Ž" }, { "input": "glassblowers", "output": "⠛⠇â â Žâ Žâ ƒâ ‡â ªâ »â Ž" }, { "input": "glassblowing", "output": "⠛⠇â â Žâ Žâ ƒâ ‡â ªâ Œ" }, { "input": "glassblowing's", "output": "⠛⠇â â Žâ Žâ ƒâ ‡â ªâ Œâ „â Ž" }, { "input": "glassed", "output": "⠛⠇â â Žâ Žâ «" }, { "input": "glasses", "output": "⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "glassful", "output": "⠛⠇â â Žâ Žâ °â ‡" }, { "input": "glassful's", "output": "⠛⠇â â Žâ Žâ °â ‡â „â Ž" }, { "input": "glassfuls", "output": "⠛⠇â â Žâ Žâ °â ‡â Ž" }, { "input": "glassier", "output": "⠛⠇â â Žâ Žâ Šâ »" }, { "input": "glassiest", "output": "⠛⠇â â Žâ Žâ Šâ ‘â Œ" }, { "input": "glassily", "output": "⠛⠇â â Žâ Žâ Šâ ‡â ½" }, { "input": "glassiness", "output": "⠛⠇â â Žâ Žâ Šâ °â Ž" }, { "input": "glassiness's", "output": "⠛⠇â â Žâ Žâ Šâ °â Žâ „â Ž" }, { "input": "glassing", "output": "⠛⠇â â Žâ Žâ Œ" }, { "input": "glassware", "output": "⠛⠇â â Žâ Žâ ºâ œâ ‘" }, { "input": "glassware's", "output": "⠛⠇â â Žâ Žâ ºâ œâ ‘â „â Ž" }, { "input": "glassy", "output": "⠛⠇â â Žâ Žâ ½" }, { "input": "glaucoma", "output": "⠛⠇â â ¥â ‰â •â â " }, { "input": "glaucoma's", "output": "⠛⠇â â ¥â ‰â •â â â „â Ž" }, { "input": "glaze", "output": "⠛⠇â â µâ ‘" }, { "input": "glaze's", "output": "⠛⠇â â µâ ‘â „â Ž" }, { "input": "glazed", "output": "⠛⠇â â µâ «" }, { "input": "glazes", "output": "⠛⠇â â µâ ‘â Ž" }, { "input": "glazier", "output": "⠛⠇â â µâ Šâ »" }, { "input": "glazier's", "output": "⠛⠇â â µâ Šâ »â „â Ž" }, { "input": "glaziers", "output": "⠛⠇â â µâ Šâ »â Ž" }, { "input": "glazing", "output": "⠛⠇â â µâ Œ" }, { "input": "glazing's", "output": "⠛⠇â â µâ Œâ „â Ž" }, { "input": "gleam", "output": "⠛⠇⠂â " }, { "input": "gleam's", "output": "⠛⠇⠂â â „â Ž" }, { "input": "gleamed", "output": "⠛⠇⠂â â «" }, { "input": "gleaming", "output": "⠛⠇⠂â â Œ" }, { "input": "gleamings", "output": "⠛⠇⠂â â Œâ Ž" }, { "input": "gleams", "output": "⠛⠇⠂â â Ž" }, { "input": "glean", "output": "⠛⠇⠂â " }, { "input": "gleaned", "output": "⠛⠇⠂â â «" }, { "input": "gleaner", "output": "⠛⠇⠂â â »" }, { "input": "gleaner's", "output": "⠛⠇⠂â â »â „â Ž" }, { "input": "gleaners", "output": "⠛⠇⠂â â »â Ž" }, { "input": "gleaning", "output": "⠛⠇⠂â â Œ" }, { "input": "gleanings", "output": "⠛⠇⠂â â Œâ Ž" }, { "input": "gleanings's", "output": "⠛⠇⠂â â Œâ Žâ „â Ž" }, { "input": "gleans", "output": "⠛⠇⠂â â Ž" }, { "input": "glee", "output": "⠛⠇⠑⠑" }, { "input": "glee's", "output": "⠛⠇⠑⠑⠄⠎" }, { "input": "gleeful", "output": "⠛⠇⠑⠑⠰⠇" }, { "input": "gleefully", "output": "⠛⠇⠑⠑⠰⠇⠇⠽" }, { "input": "gleefulness", "output": "⠛⠇⠑⠑⠰⠇⠰⠎" }, { "input": "gleefulness's", "output": "⠛⠇⠑⠑⠰⠇⠰⠎⠄⠎" }, { "input": "glen", "output": "⠛⠇⠢" }, { "input": "glen's", "output": "⠛⠇⠢⠄⠎" }, { "input": "glens", "output": "⠛⠇⠢⠎" }, { "input": "glib", "output": "⠛⠇⠊⠃" }, { "input": "glibber", "output": "⠛⠇⠊⠆⠻" }, { "input": "glibbest", "output": "⠛⠇⠊⠆⠑⠌" }, { "input": "glibly", "output": "⠛⠇⠊⠃⠇⠽" }, { "input": "glibness", "output": "⠛⠇⠊⠃⠰⠎" }, { "input": "glibness's", "output": "⠛⠇⠊⠃⠰⠎⠄⠎" }, { "input": "glide", "output": "⠛⠇⠊⠙⠑" }, { "input": "glide's", "output": "⠛⠇⠊⠙⠑⠄⠎" }, { "input": "glided", "output": "⠛⠇⠊⠙⠫" }, { "input": "glider", "output": "⠛⠇⠊⠙⠻" }, { "input": "glider's", "output": "⠛⠇⠊⠙⠻⠄⠎" }, { "input": "gliders", "output": "⠛⠇⠊⠙⠻⠎" }, { "input": "glides", "output": "⠛⠇⠊⠙⠑⠎" }, { "input": "gliding", "output": "⠛⠇⠊⠙⠌" }, { "input": "gliding's", "output": "⠛⠇⠊⠙⠌⠄⠎" }, { "input": "glimmer", "output": "⠛⠇⠊â â â »" }, { "input": "glimmer's", "output": "⠛⠇⠊â â â »â „â Ž" }, { "input": "glimmered", "output": "⠛⠇⠊â â â »â «" }, { "input": "glimmering", "output": "⠛⠇⠊â â â »â Œ" }, { "input": "glimmering's", "output": "⠛⠇⠊â â â »â Œâ „â Ž" }, { "input": "glimmerings", "output": "⠛⠇⠊â â â »â Œâ Ž" }, { "input": "glimmers", "output": "⠛⠇⠊â â â »â Ž" }, { "input": "glimpse", "output": "⠛⠇⠊â â â Žâ ‘" }, { "input": "glimpse's", "output": "⠛⠇⠊â â â Žâ ‘â „â Ž" }, { "input": "glimpsed", "output": "⠛⠇⠊â â â Žâ «" }, { "input": "glimpses", "output": "⠛⠇⠊â â â Žâ ‘â Ž" }, { "input": "glimpsing", "output": "⠛⠇⠊â â â Žâ Œ" }, { "input": "glint", "output": "⠛⠇⠔⠞" }, { "input": "glint's", "output": "⠛⠇⠔⠞⠄⠎" }, { "input": "glinted", "output": "⠛⠇⠔⠞⠫" }, { "input": "glinting", "output": "⠛⠇⠔⠞⠌" }, { "input": "glints", "output": "⠛⠇⠔⠞⠎" }, { "input": "glissandi", "output": "⠛⠇⠊⠎⠎⠯⠊" }, { "input": "glissando", "output": "⠛⠇⠊⠎⠎⠯⠕" }, { "input": "glissando's", "output": "⠛⠇⠊⠎⠎⠯⠕⠄⠎" }, { "input": "glisten", "output": "⠛⠇⠊⠌⠢" }, { "input": "glisten's", "output": "⠛⠇⠊⠌⠢⠄⠎" }, { "input": "glistened", "output": "⠛⠇⠊⠌⠢⠫" }, { "input": "glistening", "output": "⠛⠇⠊⠌⠢⠌" }, { "input": "glistens", "output": "⠛⠇⠊⠌⠢⠎" }, { "input": "glister", "output": "⠛⠇⠊⠌⠻" }, { "input": "glistered", "output": "⠛⠇⠊⠌⠻⠫" }, { "input": "glistering", "output": "⠛⠇⠊⠌⠻⠌" }, { "input": "glisters", "output": "⠛⠇⠊⠌⠻⠎" }, { "input": "glitch", "output": "⠛⠇⠊⠞⠡" }, { "input": "glitch's", "output": "⠛⠇⠊⠞⠡⠄⠎" }, { "input": "glitches", "output": "⠛⠇⠊⠞⠡⠑⠎" }, { "input": "glitter", "output": "⠛⠇⠊⠞⠞⠻" }, { "input": "glitter's", "output": "⠛⠇⠊⠞⠞⠻⠄⠎" }, { "input": "glittered", "output": "⠛⠇⠊⠞⠞⠻⠫" }, { "input": "glittering", "output": "⠛⠇⠊⠞⠞⠻⠌" }, { "input": "glitters", "output": "⠛⠇⠊⠞⠞⠻⠎" }, { "input": "glittery", "output": "⠛⠇⠊⠞⠞⠻⠽" }, { "input": "glitz", "output": "⠛⠇⠊⠞⠵" }, { "input": "glitz's", "output": "⠛⠇⠊⠞⠵⠄⠎" }, { "input": "glitzier", "output": "⠛⠇⠊⠞⠵⠊⠻" }, { "input": "glitziest", "output": "⠛⠇⠊⠞⠵⠊⠑⠌" }, { "input": "glitzy", "output": "⠛⠇⠊⠞⠵⠽" }, { "input": "gloaming", "output": "⠛⠇⠕â â â Œ" }, { "input": "gloaming's", "output": "⠛⠇⠕â â â Œâ „â Ž" }, { "input": "gloamings", "output": "⠛⠇⠕â â â Œâ Ž" }, { "input": "gloat", "output": "⠛⠇⠕â â ž" }, { "input": "gloat's", "output": "⠛⠇⠕â â žâ „â Ž" }, { "input": "gloated", "output": "⠛⠇⠕â â žâ «" }, { "input": "gloating", "output": "⠛⠇⠕â â žâ Œ" }, { "input": "gloats", "output": "⠛⠇⠕â â žâ Ž" }, { "input": "glob", "output": "⠛⠇⠕⠃" }, { "input": "glob's", "output": "⠛⠇⠕⠃⠄⠎" }, { "input": "global", "output": "⠛⠇⠕⠃â â ‡" }, { "input": "globalism", "output": "⠛⠇⠕⠃â â ‡â Šâ Žâ " }, { "input": "globalism's", "output": "⠛⠇⠕⠃â â ‡â Šâ Žâ â „â Ž" }, { "input": "globalist", "output": "⠛⠇⠕⠃â â ‡â Šâ Œ" }, { "input": "globalist's", "output": "⠛⠇⠕⠃â â ‡â Šâ Œâ „â Ž" }, { "input": "globalists", "output": "⠛⠇⠕⠃â â ‡â Šâ Œâ Ž" }, { "input": "globalization", "output": "⠛⠇⠕⠃â â ‡â Šâ µâ  â " }, { "input": "globalization's", "output": "⠛⠇⠕⠃â â ‡â Šâ µâ  â â „â Ž" }, { "input": "globalize", "output": "⠛⠇⠕⠃â â ‡â Šâ µâ ‘" }, { "input": "globalized", "output": "⠛⠇⠕⠃â â ‡â Šâ µâ «" }, { "input": "globalizes", "output": "⠛⠇⠕⠃â â ‡â Šâ µâ ‘â Ž" }, { "input": "globalizing", "output": "⠛⠇⠕⠃â â ‡â Šâ µâ Œ" }, { "input": "globally", "output": "⠛⠇⠕⠃⠠⠽" }, { "input": "globe", "output": "⠛⠇⠕⠃⠑" }, { "input": "globe's", "output": "⠛⠇⠕⠃⠑⠄⠎" }, { "input": "globes", "output": "⠛⠇⠕⠃⠑⠎" }, { "input": "globetrotter", "output": "⠛⠇⠕⠃⠑⠞⠗⠕⠞⠞⠻" }, { "input": "globetrotter's", "output": "⠛⠇⠕⠃⠑⠞⠗⠕⠞⠞⠻⠄⠎" }, { "input": "globetrotters", "output": "⠛⠇⠕⠃⠑⠞⠗⠕⠞⠞⠻⠎" }, { "input": "globs", "output": "⠛⠇⠕⠃⠎" }, { "input": "globular", "output": "⠛⠇⠕⠃⠥⠇⠜" }, { "input": "globule", "output": "⠛⠇⠕⠃⠥⠇⠑" }, { "input": "globule's", "output": "⠛⠇⠕⠃⠥⠇⠑⠄⠎" }, { "input": "globules", "output": "⠛⠇⠕⠃⠥⠇⠑⠎" }, { "input": "globulin", "output": "⠛⠇⠕⠃⠥⠇⠔" }, { "input": "globulin's", "output": "⠛⠇⠕⠃⠥⠇⠔⠄⠎" }, { "input": "glockenspiel", "output": "⠛⠇⠕⠉⠅⠢⠎â â Šâ ‘â ‡" }, { "input": "glockenspiel's", "output": "⠛⠇⠕⠉⠅⠢⠎â â Šâ ‘⠇⠄⠎" }, { "input": "glockenspiels", "output": "⠛⠇⠕⠉⠅⠢⠎â â Šâ ‘⠇⠎" }, { "input": "gloom", "output": "⠛⠇⠕⠕â " }, { "input": "gloom's", "output": "⠛⠇⠕⠕â â „â Ž" }, { "input": "gloomier", "output": "⠛⠇⠕⠕â â Šâ »" }, { "input": "gloomiest", "output": "⠛⠇⠕⠕â â Šâ ‘â Œ" }, { "input": "gloomily", "output": "⠛⠇⠕⠕â â Šâ ‡â ½" }, { "input": "gloominess", "output": "⠛⠇⠕⠕â â Šâ °â Ž" }, { "input": "gloominess's", "output": "⠛⠇⠕⠕â â Šâ °â Žâ „â Ž" }, { "input": "gloomy", "output": "⠛⠇⠕⠕â â ½" }, { "input": "glop", "output": "⠛⠇⠕â " }, { "input": "glop's", "output": "⠛⠇⠕â â „â Ž" }, { "input": "gloppier", "output": "⠛⠇⠕â â â Šâ »" }, { "input": "gloppiest", "output": "⠛⠇⠕â â â Šâ ‘â Œ" }, { "input": "gloppy", "output": "⠛⠇⠕â â â ½" }, { "input": "gloried", "output": "⠛⠇⠕⠗⠊⠫" }, { "input": "glories", "output": "⠛⠇⠕⠗⠊⠑⠎" }, { "input": "glorification", "output": "⠛⠇⠕⠗⠊⠋⠊⠉⠠â " }, { "input": "glorification's", "output": "⠛⠇⠕⠗⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "glorified", "output": "⠛⠇⠕⠗⠊⠋⠊⠫" }, { "input": "glorifies", "output": "⠛⠇⠕⠗⠊⠋⠊⠑⠎" }, { "input": "glorify", "output": "⠛⠇⠕⠗⠊⠋⠽" }, { "input": "glorifying", "output": "⠛⠇⠕⠗⠊⠋⠽⠌" }, { "input": "glorious", "output": "⠛⠇⠕⠗⠊⠳⠎" }, { "input": "gloriously", "output": "⠛⠇⠕⠗⠊⠳⠎⠇⠽" }, { "input": "glory", "output": "⠛⠇⠕⠗⠽" }, { "input": "glory's", "output": "⠛⠇⠕⠗⠽⠄⠎" }, { "input": "glorying", "output": "⠛⠇⠕⠗⠽⠌" }, { "input": "gloss", "output": "⠛⠇⠕⠎⠎" }, { "input": "gloss's", "output": "⠛⠇⠕⠎⠎⠄⠎" }, { "input": "glossaries", "output": "⠛⠇⠕⠎⠎⠜⠊⠑⠎" }, { "input": "glossary", "output": "⠛⠇⠕⠎⠎⠜⠽" }, { "input": "glossary's", "output": "⠛⠇⠕⠎⠎⠜⠽⠄⠎" }, { "input": "glossed", "output": "⠛⠇⠕⠎⠎⠫" }, { "input": "glosses", "output": "⠛⠇⠕⠎⠎⠑⠎" }, { "input": "glossier", "output": "⠛⠇⠕⠎⠎⠊⠻" }, { "input": "glossies", "output": "⠛⠇⠕⠎⠎⠊⠑⠎" }, { "input": "glossiest", "output": "⠛⠇⠕⠎⠎⠊⠑⠌" }, { "input": "glossily", "output": "⠛⠇⠕⠎⠎⠊⠇⠽" }, { "input": "glossiness", "output": "⠛⠇⠕⠎⠎⠊⠰⠎" }, { "input": "glossiness's", "output": "⠛⠇⠕⠎⠎⠊⠰⠎⠄⠎" }, { "input": "glossing", "output": "⠛⠇⠕⠎⠎⠌" }, { "input": "glossolalia", "output": "⠛⠇⠕⠎⠎⠕⠇â â ‡â Šâ " }, { "input": "glossolalia's", "output": "⠛⠇⠕⠎⠎⠕⠇â â ‡â Šâ â „â Ž" }, { "input": "glossy", "output": "⠛⠇⠕⠎⠎⠽" }, { "input": "glossy's", "output": "⠛⠇⠕⠎⠎⠽⠄⠎" }, { "input": "glottal", "output": "⠛⠇⠕⠞⠞â â ‡" }, { "input": "glottis", "output": "⠛⠇⠕⠞⠞⠊⠎" }, { "input": "glottis's", "output": "⠛⠇⠕⠞⠞⠊⠎⠄⠎" }, { "input": "glottises", "output": "⠛⠇⠕⠞⠞⠊⠎⠑⠎" }, { "input": "glove", "output": "⠛⠇⠕⠧⠑" }, { "input": "glove's", "output": "⠛⠇⠕⠧⠑⠄⠎" }, { "input": "gloved", "output": "⠛⠇⠕⠧⠫" }, { "input": "gloves", "output": "⠛⠇⠕⠧⠑⠎" }, { "input": "gloving", "output": "⠛⠇⠕⠧⠌" }, { "input": "glow", "output": "⠛⠇⠪" }, { "input": "glow's", "output": "⠛⠇⠪⠄⠎" }, { "input": "glowed", "output": "⠛⠇⠪⠫" }, { "input": "glower", "output": "⠛⠇⠪⠻" }, { "input": "glower's", "output": "⠛⠇⠪⠻⠄⠎" }, { "input": "glowered", "output": "⠛⠇⠪⠻⠫" }, { "input": "glowering", "output": "⠛⠇⠪⠻⠌" }, { "input": "glowers", "output": "⠛⠇⠪⠻⠎" }, { "input": "glowing", "output": "⠛⠇⠪⠌" }, { "input": "glowingly", "output": "⠛⠇⠪⠌⠇⠽" }, { "input": "glows", "output": "⠛⠇⠪⠎" }, { "input": "glowworm", "output": "⠛⠇⠪⠺⠕⠗â " }, { "input": "glowworm's", "output": "⠛⠇⠪⠺⠕⠗â â „â Ž" }, { "input": "glowworms", "output": "⠛⠇⠪⠺⠕⠗â â Ž" }, { "input": "glucose", "output": "⠛⠇⠥⠉⠕⠎⠑" }, { "input": "glucose's", "output": "⠛⠇⠥⠉⠕⠎⠑⠄⠎" }, { "input": "glue", "output": "⠛⠇⠥⠑" }, { "input": "glue's", "output": "⠛⠇⠥⠑⠄⠎" }, { "input": "glued", "output": "⠛⠇⠥⠫" }, { "input": "glues", "output": "⠛⠇⠥⠑⠎" }, { "input": "gluey", "output": "⠛⠇⠥⠑⠽" }, { "input": "gluier", "output": "⠛⠇⠥⠊⠻" }, { "input": "gluiest", "output": "⠛⠇⠥⠊⠑⠌" }, { "input": "gluing", "output": "⠛⠇⠥⠌" }, { "input": "glum", "output": "⠛⠇⠥â " }, { "input": "glumly", "output": "⠛⠇⠥â â ‡â ½" }, { "input": "glummer", "output": "⠛⠇⠥â â â »" }, { "input": "glummest", "output": "⠛⠇⠥â â â ‘â Œ" }, { "input": "glumness", "output": "⠛⠇⠥â â °â Ž" }, { "input": "glumness's", "output": "⠛⠇⠥â â °â Žâ „â Ž" }, { "input": "glut", "output": "⠛⠇⠥⠞" }, { "input": "glut's", "output": "⠛⠇⠥⠞⠄⠎" }, { "input": "gluten", "output": "⠛⠇⠥⠞⠢" }, { "input": "gluten's", "output": "⠛⠇⠥⠞⠢⠄⠎" }, { "input": "glutenous", "output": "⠛⠇⠥⠞⠢⠳⠎" }, { "input": "glutinous", "output": "⠛⠇⠥⠞⠔⠳⠎" }, { "input": "glutinously", "output": "⠛⠇⠥⠞⠔⠳⠎⠇⠽" }, { "input": "gluts", "output": "⠛⠇⠥⠞⠎" }, { "input": "glutted", "output": "⠛⠇⠥⠞⠞⠫" }, { "input": "glutting", "output": "⠛⠇⠥⠞⠞⠌" }, { "input": "glutton", "output": "⠛⠇⠥⠞⠞⠕â " }, { "input": "glutton's", "output": "⠛⠇⠥⠞⠞⠕â â „â Ž" }, { "input": "gluttonous", "output": "⠛⠇⠥⠞⠞⠕â â ³â Ž" }, { "input": "gluttonously", "output": "⠛⠇⠥⠞⠞⠕â â ³â Žâ ‡â ½" }, { "input": "gluttons", "output": "⠛⠇⠥⠞⠞⠕â â Ž" }, { "input": "gluttony", "output": "⠛⠇⠥⠞⠞⠕â â ½" }, { "input": "gluttony's", "output": "⠛⠇⠥⠞⠞⠕â â ½â „â Ž" }, { "input": "glycerin", "output": "⠛⠇⠽⠉⠻⠔" }, { "input": "glycerin's", "output": "⠛⠇⠽⠉⠻⠔⠄⠎" }, { "input": "glycerol", "output": "⠛⠇⠽⠉⠻⠕⠇" }, { "input": "glycerol's", "output": "⠛⠇⠽⠉⠻⠕⠇⠄⠎" }, { "input": "glycogen", "output": "⠛⠇⠽⠉⠕⠛⠢" }, { "input": "glycogen's", "output": "⠛⠇⠽⠉⠕⠛⠢⠄⠎" }, { "input": "glyph", "output": "⠛⠇⠽â â “" }, { "input": "gnarl", "output": "â ›â â œâ ‡" }, { "input": "gnarl's", "output": "â ›â â œâ ‡â „â Ž" }, { "input": "gnarled", "output": "â ›â â œâ ‡â «" }, { "input": "gnarlier", "output": "â ›â â œâ ‡â Šâ »" }, { "input": "gnarliest", "output": "â ›â â œâ ‡â Šâ ‘â Œ" }, { "input": "gnarling", "output": "â ›â â œâ ‡â Œ" }, { "input": "gnarls", "output": "â ›â â œâ ‡â Ž" }, { "input": "gnarly", "output": "â ›â â œâ ‡â ½" }, { "input": "gnash", "output": "â ›â â â ©" }, { "input": "gnash's", "output": "â ›â â â ©â „â Ž" }, { "input": "gnashed", "output": "â ›â â â ©â «" }, { "input": "gnashes", "output": "â ›â â â ©â ‘â Ž" }, { "input": "gnashing", "output": "â ›â â â ©â Œ" }, { "input": "gnat", "output": "â ›â â â ž" }, { "input": "gnat's", "output": "â ›â â â žâ „â Ž" }, { "input": "gnats", "output": "â ›â â â žâ Ž" }, { "input": "gnaw", "output": "â ›â â â º" }, { "input": "gnawed", "output": "â ›â â â ºâ «" }, { "input": "gnawing", "output": "â ›â â â ºâ Œ" }, { "input": "gnaws", "output": "â ›â â â ºâ Ž" }, { "input": "gneiss", "output": "â ›â â ‘â Šâ Žâ Ž" }, { "input": "gneiss's", "output": "â ›â â ‘â Šâ Žâ Žâ „â Ž" }, { "input": "gnome", "output": "â ›â â •â â ‘" }, { "input": "gnome's", "output": "â ›â â •â â ‘â „â Ž" }, { "input": "gnomes", "output": "â ›â â •â â ‘â Ž" }, { "input": "gnomish", "output": "â ›â â •â â Šâ ©" }, { "input": "gnu", "output": "â ›â â ¥" }, { "input": "gnu's", "output": "â ›â â ¥â „â Ž" }, { "input": "gnus", "output": "â ›â â ¥â Ž" }, { "input": "go", "output": "â ›" }, { "input": "go's", "output": "⠛⠕⠄⠎" }, { "input": "goad", "output": "⠛⠕â â ™" }, { "input": "goad's", "output": "⠛⠕â â ™â „â Ž" }, { "input": "goaded", "output": "⠛⠕â â ™â «" }, { "input": "goading", "output": "⠛⠕â â ™â Œ" }, { "input": "goads", "output": "⠛⠕â â ™â Ž" }, { "input": "goal", "output": "⠛⠕â â ‡" }, { "input": "goal's", "output": "⠛⠕â â ‡â „â Ž" }, { "input": "goalie", "output": "⠛⠕â â ‡â Šâ ‘" }, { "input": "goalie's", "output": "⠛⠕â â ‡â Šâ ‘â „â Ž" }, { "input": "goalies", "output": "⠛⠕â â ‡â Šâ ‘â Ž" }, { "input": "goalkeeper", "output": "⠛⠕â â ‡â …â ‘â ‘â â »" }, { "input": "goalkeeper's", "output": "⠛⠕â â ‡â …â ‘â ‘â â »â „â Ž" }, { "input": "goalkeepers", "output": "⠛⠕â â ‡â …â ‘â ‘â â »â Ž" }, { "input": "goalkeeping", "output": "⠛⠕â â ‡â …â ‘â ‘â â Œ" }, { "input": "goalkeeping's", "output": "⠛⠕â â ‡â …â ‘â ‘â â Œâ „â Ž" }, { "input": "goalpost", "output": "⠛⠕â â ‡â â •â Œ" }, { "input": "goalpost's", "output": "⠛⠕â â ‡â â •⠌⠄⠎" }, { "input": "goalposts", "output": "⠛⠕â â ‡â â •⠌⠎" }, { "input": "goals", "output": "⠛⠕â â ‡â Ž" }, { "input": "goaltender", "output": "⠛⠕â â ‡â žâ ¢â ™â »" }, { "input": "goaltender's", "output": "⠛⠕â â ‡â žâ ¢â ™â »â „â Ž" }, { "input": "goaltenders", "output": "⠛⠕â â ‡â žâ ¢â ™â »â Ž" }, { "input": "goat", "output": "⠛⠕â â ž" }, { "input": "goat's", "output": "⠛⠕â â žâ „â Ž" }, { "input": "goatee", "output": "⠛⠕â â žâ ‘â ‘" }, { "input": "goatee's", "output": "⠛⠕â â žâ ‘â ‘â „â Ž" }, { "input": "goatees", "output": "⠛⠕â â žâ ‘â ‘â Ž" }, { "input": "goatherd", "output": "⠛⠕â â žâ “⠻⠙" }, { "input": "goatherd's", "output": "⠛⠕â â žâ “⠻⠙⠄⠎" }, { "input": "goatherds", "output": "⠛⠕â â žâ “⠻⠙⠎" }, { "input": "goats", "output": "⠛⠕â â žâ Ž" }, { "input": "goatskin", "output": "⠛⠕â â žâ Žâ …â ”" }, { "input": "goatskin's", "output": "⠛⠕â â žâ Žâ …⠔⠄⠎" }, { "input": "goatskins", "output": "⠛⠕â â žâ Žâ …⠔⠎" }, { "input": "gob", "output": "⠛⠕⠃" }, { "input": "gob's", "output": "⠛⠕⠃⠄⠎" }, { "input": "gobbed", "output": "⠛⠕⠆⠫" }, { "input": "gobbing", "output": "⠛⠕⠆⠌" }, { "input": "gobble", "output": "⠛⠕⠃⠼" }, { "input": "gobble's", "output": "⠛⠕⠃⠼⠄⠎" }, { "input": "gobbled", "output": "⠛⠕⠃⠼⠙" }, { "input": "gobbledygook", "output": "⠛⠕⠃⠼⠙⠽⠛⠕⠕⠅" }, { "input": "gobbledygook's", "output": "⠛⠕⠃⠼⠙⠽⠛⠕⠕⠅⠄⠎" }, { "input": "gobbler", "output": "⠛⠕⠃⠼⠗" }, { "input": "gobbler's", "output": "⠛⠕⠃⠼⠗⠄⠎" }, { "input": "gobblers", "output": "⠛⠕⠃⠼⠗⠎" }, { "input": "gobbles", "output": "⠛⠕⠃⠼⠎" }, { "input": "gobbling", "output": "⠛⠕⠆⠇⠌" }, { "input": "goblet", "output": "⠛⠕⠼⠞" }, { "input": "goblet's", "output": "⠛⠕⠼⠞⠄⠎" }, { "input": "goblets", "output": "⠛⠕⠼⠞⠎" }, { "input": "goblin", "output": "⠛⠕⠃⠇⠔" }, { "input": "goblin's", "output": "⠛⠕⠃⠇⠔⠄⠎" }, { "input": "goblins", "output": "⠛⠕⠃⠇⠔⠎" }, { "input": "gobs", "output": "⠛⠕⠃⠎" }, { "input": "god", "output": "⠛⠕⠙" }, { "input": "god's", "output": "⠛⠕⠙⠄⠎" }, { "input": "godchild", "output": "⠛⠕⠙⠡⠊⠇⠙" }, { "input": "godchild's", "output": "⠛⠕⠙⠡⠊⠇⠙⠄⠎" }, { "input": "godchildren", "output": "⠛⠕⠙⠡â " }, { "input": "goddamn", "output": "⠛⠕⠙⠙â â â " }, { "input": "goddamned", "output": "⠛⠕⠙⠙â â â â «" }, { "input": "goddaughter", "output": "⠛⠕⠙⠙â â ¥â £â žâ »" }, { "input": "goddaughter's", "output": "⠛⠕⠙⠙â â ¥â £â žâ »â „â Ž" }, { "input": "goddaughters", "output": "⠛⠕⠙⠙â â ¥â £â žâ »â Ž" }, { "input": "goddess", "output": "⠛⠕⠲⠑⠎⠎" }, { "input": "goddess's", "output": "⠛⠕⠲⠑⠎⠎⠄⠎" }, { "input": "goddesses", "output": "⠛⠕⠲⠑⠎⠎⠑⠎" }, { "input": "godfather", "output": "⠛⠕⠙â â ‹" }, { "input": "godfather's", "output": "⠛⠕⠙â â ‹â „â Ž" }, { "input": "godfathers", "output": "⠛⠕⠙â â ‹â Ž" }, { "input": "godforsaken", "output": "⠛⠕⠙⠿⠎â â …â ¢" }, { "input": "godhead", "output": "⠛⠕⠙⠓⠂⠙" }, { "input": "godhead's", "output": "⠛⠕⠙⠓⠂⠙⠄⠎" }, { "input": "godhood", "output": "⠛⠕⠙⠓⠕⠕⠙" }, { "input": "godhood's", "output": "⠛⠕⠙⠓⠕⠕⠙⠄⠎" }, { "input": "godless", "output": "⠛⠕⠙⠨⠎" }, { "input": "godlessness's", "output": "⠛⠕⠙⠨⠎⠰⠎⠄⠎" }, { "input": "godlier", "output": "⠛⠕⠙⠇⠊⠻" }, { "input": "godliest", "output": "⠛⠕⠙⠇⠊⠑⠌" }, { "input": "godlike", "output": "⠛⠕⠙⠇⠊⠅⠑" }, { "input": "godliness", "output": "⠛⠕⠙⠇⠊⠰⠎" }, { "input": "godliness's", "output": "⠛⠕⠙⠇⠊⠰⠎⠄⠎" }, { "input": "godly", "output": "⠛⠕⠙⠇⠽" }, { "input": "godmother", "output": "⠛⠕⠙â â " }, { "input": "godmother's", "output": "⠛⠕⠙â â â „â Ž" }, { "input": "godmothers", "output": "⠛⠕⠙â â â Ž" }, { "input": "godparent", "output": "⠛⠕⠙â â œâ ¢â ž" }, { "input": "godparent's", "output": "⠛⠕⠙â â œâ ¢â žâ „â Ž" }, { "input": "godparents", "output": "⠛⠕⠙â â œâ ¢â žâ Ž" }, { "input": "gods", "output": "⠛⠕⠙⠎" }, { "input": "godsend", "output": "⠛⠕⠙⠎⠢⠙" }, { "input": "godsend's", "output": "⠛⠕⠙⠎⠢⠙⠄⠎" }, { "input": "godsends", "output": "⠛⠕⠙⠎⠢⠙⠎" }, { "input": "godson", "output": "⠛⠕⠙⠎⠕â " }, { "input": "godson's", "output": "⠛⠕⠙⠎⠕â â „â Ž" }, { "input": "godsons", "output": "⠛⠕⠙⠎⠕â â Ž" }, { "input": "goes", "output": "⠛⠕⠑⠎" }, { "input": "gofer", "output": "⠛⠕⠋⠻" }, { "input": "gofer's", "output": "⠛⠕⠋⠻⠄⠎" }, { "input": "gofers", "output": "⠛⠕⠋⠻⠎" }, { "input": "goggle", "output": "⠛⠕⠶⠇⠑" }, { "input": "goggle's", "output": "⠛⠕⠶⠇⠑⠄⠎" }, { "input": "goggled", "output": "⠛⠕⠶⠇⠫" }, { "input": "goggles", "output": "⠛⠕⠶⠇⠑⠎" }, { "input": "goggles's", "output": "⠛⠕⠶⠇⠑⠎⠄⠎" }, { "input": "goggling", "output": "⠛⠕⠶⠇⠌" }, { "input": "going", "output": "⠛⠕⠌" }, { "input": "going's", "output": "⠛⠕⠌⠄⠎" }, { "input": "goings", "output": "⠛⠕⠌⠎" }, { "input": "goiter", "output": "⠛⠕⠊⠞⠻" }, { "input": "goiter's", "output": "⠛⠕⠊⠞⠻⠄⠎" }, { "input": "goiters", "output": "⠛⠕⠊⠞⠻⠎" }, { "input": "gold", "output": "⠛⠕⠇⠙" }, { "input": "gold's", "output": "⠛⠕⠇⠙⠄⠎" }, { "input": "goldbrick", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅" }, { "input": "goldbrick's", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠄⠎" }, { "input": "goldbricked", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠫" }, { "input": "goldbricker", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠻" }, { "input": "goldbricker's", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠻⠄⠎" }, { "input": "goldbrickers", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠻⠎" }, { "input": "goldbricking", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠌" }, { "input": "goldbricks", "output": "⠛⠕⠇⠙⠃⠗⠊⠉⠅⠎" }, { "input": "golden", "output": "⠛⠕⠇⠙⠢" }, { "input": "goldener", "output": "⠛⠕⠇⠙⠢⠻" }, { "input": "goldenest", "output": "⠛⠕⠇⠙⠢⠑⠌" }, { "input": "goldenrod", "output": "⠛⠕⠇⠙⠢⠗⠕⠙" }, { "input": "goldenrod's", "output": "⠛⠕⠇⠙⠢⠗⠕⠙⠄⠎" }, { "input": "goldfinch", "output": "⠛⠕⠇⠙⠋⠔⠡" }, { "input": "goldfinch's", "output": "⠛⠕⠇⠙⠋⠔⠡⠄⠎" }, { "input": "goldfinches", "output": "⠛⠕⠇⠙⠋⠔⠡⠑⠎" }, { "input": "goldfish", "output": "⠛⠕⠇⠙⠋⠊⠩" }, { "input": "goldfish's", "output": "⠛⠕⠇⠙⠋⠊⠩⠄⠎" }, { "input": "goldfishes", "output": "⠛⠕⠇⠙⠋⠊⠩⠑⠎" }, { "input": "golds", "output": "⠛⠕⠇⠙⠎" }, { "input": "goldsmith", "output": "⠛⠕⠇⠙⠎â â Šâ ¹" }, { "input": "goldsmith's", "output": "⠛⠕⠇⠙⠎â â Šâ ¹â „â Ž" }, { "input": "goldsmiths", "output": "⠛⠕⠇⠙⠎â â Šâ ¹â Ž" }, { "input": "golf", "output": "⠛⠕⠇⠋" }, { "input": "golf's", "output": "⠛⠕⠇⠋⠄⠎" }, { "input": "golfed", "output": "⠛⠕⠇⠋⠫" }, { "input": "golfer", "output": "⠛⠕⠇⠋⠻" }, { "input": "golfer's", "output": "⠛⠕⠇⠋⠻⠄⠎" }, { "input": "golfers", "output": "⠛⠕⠇⠋⠻⠎" }, { "input": "golfing", "output": "⠛⠕⠇⠋⠌" }, { "input": "golfs", "output": "⠛⠕⠇⠋⠎" }, { "input": "gollies", "output": "⠛⠕⠇⠇⠊⠑⠎" }, { "input": "golly", "output": "⠛⠕⠇⠇⠽" }, { "input": "golly's", "output": "⠛⠕⠇⠇⠽⠄⠎" }, { "input": "gonad", "output": "⠛⠕â â â ™" }, { "input": "gonad's", "output": "⠛⠕â â â ™â „â Ž" }, { "input": "gonadal", "output": "⠛⠕â â â ™â â ‡" }, { "input": "gonads", "output": "⠛⠕â â â ™â Ž" }, { "input": "gondola", "output": "⠛⠕â â ™â •â ‡â " }, { "input": "gondola's", "output": "⠛⠕â â ™â •â ‡â â „â Ž" }, { "input": "gondolas", "output": "⠛⠕â â ™â •â ‡â â Ž" }, { "input": "gondolier", "output": "⠛⠕â â ™â •⠇⠊⠻" }, { "input": "gondolier's", "output": "⠛⠕â â ™â •⠇⠊⠻⠄⠎" }, { "input": "gondoliers", "output": "⠛⠕â â ™â •⠇⠊⠻⠎" }, { "input": "gone", "output": "â ›â â •" }, { "input": "goner", "output": "⠛⠕â â »" }, { "input": "goner's", "output": "⠛⠕â â »â „â Ž" }, { "input": "goners", "output": "⠛⠕â â »â Ž" }, { "input": "gong", "output": "⠛⠰⠛" }, { "input": "gong's", "output": "⠛⠰⠛⠄⠎" }, { "input": "gonged", "output": "⠛⠰⠛⠫" }, { "input": "gonging", "output": "⠛⠰⠛⠌" }, { "input": "gongs", "output": "⠛⠰⠛⠎" }, { "input": "gonna", "output": "⠛⠕â â â " }, { "input": "gonorrhea", "output": "⠛⠕â â •â —â —â “â ‘â " }, { "input": "gonorrhea's", "output": "⠛⠕â â •â —â —â “â ‘â â „â Ž" }, { "input": "gonorrheal", "output": "⠛⠕â â •â —â —â “â ‚â ‡" }, { "input": "goo", "output": "⠛⠕⠕" }, { "input": "goo's", "output": "⠛⠕⠕⠄⠎" }, { "input": "goober", "output": "⠛⠕⠕⠃⠻" }, { "input": "goober's", "output": "⠛⠕⠕⠃⠻⠄⠎" }, { "input": "goobers", "output": "⠛⠕⠕⠃⠻⠎" }, { "input": "good", "output": "⠛⠙" }, { "input": "good's", "output": "⠛⠙⠄⠎" }, { "input": "goodbye", "output": "⠛⠙⠃⠽⠑" }, { "input": "goodbye's", "output": "⠛⠙⠃⠽⠑⠄⠎" }, { "input": "goodbyes", "output": "⠛⠙⠃⠽⠑⠎" }, { "input": "goodhearted", "output": "⠛⠙⠓⠑⠜⠞⠫" }, { "input": "goodies", "output": "⠛⠙⠊⠑⠎" }, { "input": "goodlier", "output": "⠛⠙⠇⠊⠻" }, { "input": "goodliest", "output": "⠛⠙⠇⠊⠑⠌" }, { "input": "goodly", "output": "⠛⠙⠇⠽" }, { "input": "goodness", "output": "⠛⠙⠰⠎" }, { "input": "goodness's", "output": "⠛⠙⠰⠎⠄⠎" }, { "input": "goodnight", "output": "⠛⠙â â Šâ £â ž" }, { "input": "goods", "output": "⠛⠙⠎" }, { "input": "goods's", "output": "⠛⠙⠎⠄⠎" }, { "input": "goodwill", "output": "⠛⠙⠺⠊⠇⠇" }, { "input": "goodwill's", "output": "⠛⠙⠺⠊⠇⠇⠄⠎" }, { "input": "goody", "output": "⠛⠙⠽" }, { "input": "goody's", "output": "⠛⠙⠽⠄⠎" }, { "input": "gooey", "output": "⠛⠕⠕⠑⠽" }, { "input": "goof", "output": "⠛⠕⠷" }, { "input": "goof's", "output": "⠛⠕⠷⠄⠎" }, { "input": "goofball", "output": "⠛⠕⠷⠃â â ‡â ‡" }, { "input": "goofball's", "output": "⠛⠕⠷⠃â â ‡â ‡â „â Ž" }, { "input": "goofballs", "output": "⠛⠕⠷⠃â â ‡â ‡â Ž" }, { "input": "goofed", "output": "⠛⠕⠷⠫" }, { "input": "goofier", "output": "⠛⠕⠷⠊⠻" }, { "input": "goofiest", "output": "⠛⠕⠷⠊⠑⠌" }, { "input": "goofiness", "output": "⠛⠕⠷⠊⠰⠎" }, { "input": "goofiness's", "output": "⠛⠕⠷⠊⠰⠎⠄⠎" }, { "input": "goofing", "output": "⠛⠕⠷⠌" }, { "input": "goofs", "output": "⠛⠕⠷⠎" }, { "input": "goofy", "output": "⠛⠕⠷⠽" }, { "input": "gooier", "output": "⠛⠕⠕⠊⠻" }, { "input": "gooiest", "output": "⠛⠕⠕⠊⠑⠌" }, { "input": "gook", "output": "⠛⠕⠕⠅" }, { "input": "gook's", "output": "⠛⠕⠕⠅⠄⠎" }, { "input": "gooks", "output": "⠛⠕⠕⠅⠎" }, { "input": "goon", "output": "⠛⠕⠕â " }, { "input": "goon's", "output": "⠛⠕⠕â â „â Ž" }, { "input": "goons", "output": "⠛⠕⠕â â Ž" }, { "input": "goop", "output": "⠛⠕⠕â " }, { "input": "goop's", "output": "⠛⠕⠕â â „â Ž" }, { "input": "goose", "output": "⠛⠕⠕⠎⠑" }, { "input": "goose's", "output": "⠛⠕⠕⠎⠑⠄⠎" }, { "input": "gooseberries", "output": "⠛⠕⠕⠎⠑⠃⠻⠗⠊⠑⠎" }, { "input": "gooseberry", "output": "⠛⠕⠕⠎⠑⠃⠻⠗⠽" }, { "input": "gooseberry's", "output": "⠛⠕⠕⠎⠑⠃⠻⠗⠽⠄⠎" }, { "input": "goosebumps", "output": "⠛⠕⠕⠎⠑⠃⠥â â â Ž" }, { "input": "goosebumps's", "output": "⠛⠕⠕⠎⠑⠃⠥â â â Žâ „â Ž" }, { "input": "goosed", "output": "⠛⠕⠕⠎⠫" }, { "input": "gooses", "output": "⠛⠕⠕⠎⠑⠎" }, { "input": "goosing", "output": "⠛⠕⠕⠎⠌" }, { "input": "gopher", "output": "⠛⠕â â “â »" }, { "input": "gopher's", "output": "⠛⠕â â “⠻⠄⠎" }, { "input": "gophers", "output": "⠛⠕â â “⠻⠎" }, { "input": "gore", "output": "⠛⠕⠗⠑" }, { "input": "gore's", "output": "⠛⠕⠗⠑⠄⠎" }, { "input": "gored", "output": "⠛⠕⠗⠫" }, { "input": "gores", "output": "⠛⠕⠗⠑⠎" }, { "input": "gorge", "output": "⠛⠕⠗⠛⠑" }, { "input": "gorge's", "output": "⠛⠕⠗⠛⠑⠄⠎" }, { "input": "gorged", "output": "⠛⠕⠗⠛⠫" }, { "input": "gorgeous", "output": "⠛⠕⠗⠛⠑⠳⠎" }, { "input": "gorgeously", "output": "⠛⠕⠗⠛⠑⠳⠎⠇⠽" }, { "input": "gorgeousness's", "output": "⠛⠕⠗⠛⠑⠳⠎⠰⠎⠄⠎" }, { "input": "gorges", "output": "⠛⠕⠗⠛⠑⠎" }, { "input": "gorging", "output": "⠛⠕⠗⠛⠌" }, { "input": "gorier", "output": "⠛⠕⠗⠊⠻" }, { "input": "goriest", "output": "⠛⠕⠗⠊⠑⠌" }, { "input": "gorilla", "output": "⠛⠕⠗⠊⠇⠇â " }, { "input": "gorilla's", "output": "⠛⠕⠗⠊⠇⠇â â „â Ž" }, { "input": "gorillas", "output": "⠛⠕⠗⠊⠇⠇â â Ž" }, { "input": "gorily", "output": "⠛⠕⠗⠊⠇⠽" }, { "input": "goriness", "output": "⠛⠕⠗⠊⠰⠎" }, { "input": "goriness's", "output": "⠛⠕⠗⠊⠰⠎⠄⠎" }, { "input": "goring", "output": "⠛⠕⠗⠌" }, { "input": "gormandize", "output": "⠛⠕⠗â â ¯â Šâ µâ ‘" }, { "input": "gormandized", "output": "⠛⠕⠗â â ¯â Šâ µâ «" }, { "input": "gormandizer", "output": "⠛⠕⠗â â ¯â Šâ µâ »" }, { "input": "gormandizer's", "output": "⠛⠕⠗â â ¯â Šâ µâ »â „â Ž" }, { "input": "gormandizers", "output": "⠛⠕⠗â â ¯â Šâ µâ »â Ž" }, { "input": "gormandizes", "output": "⠛⠕⠗â â ¯â Šâ µâ ‘â Ž" }, { "input": "gormandizing", "output": "⠛⠕⠗â â ¯â Šâ µâ Œ" }, { "input": "gorp", "output": "⠛⠕⠗â " }, { "input": "gorp's", "output": "⠛⠕⠗â â „â Ž" }, { "input": "gorse", "output": "⠛⠕⠗⠎⠑" }, { "input": "gorse's", "output": "⠛⠕⠗⠎⠑⠄⠎" }, { "input": "gory", "output": "⠛⠕⠗⠽" }, { "input": "gosh", "output": "⠛⠕⠩" }, { "input": "goshawk", "output": "⠛⠕⠎⠓â â ºâ …" }, { "input": "goshawk's", "output": "⠛⠕⠎⠓â â ºâ …â „â Ž" }, { "input": "goshawks", "output": "⠛⠕⠎⠓â â ºâ …â Ž" }, { "input": "gosling", "output": "⠛⠕⠎⠇⠌" }, { "input": "gosling's", "output": "⠛⠕⠎⠇⠌⠄⠎" }, { "input": "goslings", "output": "⠛⠕⠎⠇⠌⠎" }, { "input": "gospel", "output": "⠛⠕⠎â â ‘â ‡" }, { "input": "gospel's", "output": "⠛⠕⠎â â ‘⠇⠄⠎" }, { "input": "gospels", "output": "⠛⠕⠎â â ‘⠇⠎" }, { "input": "gossamer", "output": "⠛⠕⠎⠎â â â »" }, { "input": "gossamer's", "output": "⠛⠕⠎⠎â â â »â „â Ž" }, { "input": "gossip", "output": "⠛⠕⠎⠎⠊â " }, { "input": "gossip's", "output": "⠛⠕⠎⠎⠊â â „â Ž" }, { "input": "gossiped", "output": "⠛⠕⠎⠎⠊â â «" }, { "input": "gossiper", "output": "⠛⠕⠎⠎⠊â â »" }, { "input": "gossiper's", "output": "⠛⠕⠎⠎⠊â â »â „â Ž" }, { "input": "gossipers", "output": "⠛⠕⠎⠎⠊â â »â Ž" }, { "input": "gossiping", "output": "⠛⠕⠎⠎⠊â â Œ" }, { "input": "gossips", "output": "⠛⠕⠎⠎⠊â â Ž" }, { "input": "gossipy", "output": "⠛⠕⠎⠎⠊â â ½" }, { "input": "got", "output": "⠛⠕⠞" }, { "input": "gotta", "output": "⠛⠕⠞⠞â " }, { "input": "gotten", "output": "⠛⠕⠞⠞⠢" }, { "input": "gouge", "output": "⠛⠳⠛⠑" }, { "input": "gouge's", "output": "⠛⠳⠛⠑⠄⠎" }, { "input": "gouged", "output": "⠛⠳⠛⠫" }, { "input": "gouger", "output": "⠛⠳⠛⠻" }, { "input": "gouger's", "output": "⠛⠳⠛⠻⠄⠎" }, { "input": "gougers", "output": "⠛⠳⠛⠻⠎" }, { "input": "gouges", "output": "⠛⠳⠛⠑⠎" }, { "input": "gouging", "output": "⠛⠳⠛⠌" }, { "input": "goulash", "output": "⠛⠳⠇â â ©" }, { "input": "goulash's", "output": "⠛⠳⠇â â ©â „â Ž" }, { "input": "goulashes", "output": "⠛⠳⠇â â ©â ‘â Ž" }, { "input": "gourd", "output": "⠛⠳⠗⠙" }, { "input": "gourd's", "output": "⠛⠳⠗⠙⠄⠎" }, { "input": "gourde", "output": "⠛⠳⠗⠙⠑" }, { "input": "gourde's", "output": "⠛⠳⠗⠙⠑⠄⠎" }, { "input": "gourdes", "output": "⠛⠳⠗⠙⠑⠎" }, { "input": "gourds", "output": "⠛⠳⠗⠙⠎" }, { "input": "gourmand", "output": "⠛⠳⠗â â ¯" }, { "input": "gourmand's", "output": "⠛⠳⠗â â ¯â „â Ž" }, { "input": "gourmands", "output": "⠛⠳⠗â â ¯â Ž" }, { "input": "gourmet", "output": "⠛⠳⠗â â ‘â ž" }, { "input": "gourmet's", "output": "⠛⠳⠗â â ‘â žâ „â Ž" }, { "input": "gourmets", "output": "⠛⠳⠗â â ‘â žâ Ž" }, { "input": "gout", "output": "⠛⠳⠞" }, { "input": "gout's", "output": "⠛⠳⠞⠄⠎" }, { "input": "goutier", "output": "⠛⠳⠞⠊⠻" }, { "input": "goutiest", "output": "⠛⠳⠞⠊⠑⠌" }, { "input": "gouty", "output": "⠛⠳⠞⠽" }, { "input": "govern", "output": "⠛⠕⠧⠻â " }, { "input": "governable", "output": "⠛⠕⠧⠻â â â ¼" }, { "input": "governance", "output": "⠛⠕⠧⠻â â ¨â ‘" }, { "input": "governance's", "output": "⠛⠕⠧⠻â â ¨â ‘â „â Ž" }, { "input": "governed", "output": "⠛⠕⠧⠻â â «" }, { "input": "governess", "output": "⠛⠕⠧⠻⠰⠎" }, { "input": "governess's", "output": "⠛⠕⠧⠻⠰⠎⠄⠎" }, { "input": "governesses", "output": "⠛⠕⠧⠻⠰⠎⠑⠎" }, { "input": "governing", "output": "⠛⠕⠧⠻â â Œ" }, { "input": "government", "output": "⠛⠕⠧⠻â â °â ž" }, { "input": "government's", "output": "⠛⠕⠧⠻â â °â žâ „â Ž" }, { "input": "governmental", "output": "⠛⠕⠧⠻â â °â žâ â ‡" }, { "input": "governments", "output": "⠛⠕⠧⠻â â °â žâ Ž" }, { "input": "governor", "output": "⠛⠕⠧⠻â â •â —" }, { "input": "governor's", "output": "⠛⠕⠧⠻â â •â —â „â Ž" }, { "input": "governors", "output": "⠛⠕⠧⠻â â •â —â Ž" }, { "input": "governorship", "output": "⠛⠕⠧⠻â â •â —â ©â Šâ " }, { "input": "governorship's", "output": "⠛⠕⠧⠻â â •â —â ©â Šâ â „â Ž" }, { "input": "governs", "output": "⠛⠕⠧⠻â â Ž" }, { "input": "gown", "output": "⠛⠪â " }, { "input": "gown's", "output": "⠛⠪â â „â Ž" }, { "input": "gowned", "output": "⠛⠪â â «" }, { "input": "gowning", "output": "⠛⠪â â Œ" }, { "input": "gowns", "output": "⠛⠪â â Ž" }, { "input": "grab", "output": "⠛⠗â â ƒ" }, { "input": "grab's", "output": "⠛⠗â â ƒâ „â Ž" }, { "input": "grabbed", "output": "⠛⠗â â †â «" }, { "input": "grabber", "output": "⠛⠗â â †â »" }, { "input": "grabber's", "output": "⠛⠗â â †â »â „â Ž" }, { "input": "grabbers", "output": "⠛⠗â â †â »â Ž" }, { "input": "grabbing", "output": "⠛⠗â â †â Œ" }, { "input": "grabs", "output": "⠛⠗â â ƒâ Ž" }, { "input": "grace", "output": "⠛⠗â â ‰â ‘" }, { "input": "grace's", "output": "⠛⠗â â ‰â ‘â „â Ž" }, { "input": "graced", "output": "⠛⠗â â ‰â «" }, { "input": "graceful", "output": "⠛⠗â â ‰â ‘â °â ‡" }, { "input": "gracefully", "output": "⠛⠗â â ‰â ‘⠰⠇⠇⠽" }, { "input": "gracefulness", "output": "⠛⠗â â ‰â ‘⠰⠇⠰⠎" }, { "input": "gracefulness's", "output": "⠛⠗â â ‰â ‘⠰⠇⠰⠎⠄⠎" }, { "input": "graceless", "output": "⠛⠗â â ‰â ‘⠨⠎" }, { "input": "gracelessly", "output": "⠛⠗â â ‰â ‘⠨⠎⠇⠽" }, { "input": "gracelessness", "output": "⠛⠗â â ‰â ‘⠨⠎⠰⠎" }, { "input": "gracelessness's", "output": "⠛⠗â â ‰â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "graces", "output": "⠛⠗â â ‰â ‘â Ž" }, { "input": "gracing", "output": "⠛⠗â â ‰â Œ" }, { "input": "gracious", "output": "⠛⠗â â ‰â Šâ ³â Ž" }, { "input": "graciously", "output": "⠛⠗â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "graciousness", "output": "⠛⠗â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "graciousness's", "output": "⠛⠗â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "grackle", "output": "⠛⠗â â ‰â …⠇⠑" }, { "input": "grackle's", "output": "⠛⠗â â ‰â …⠇⠑⠄⠎" }, { "input": "grackles", "output": "⠛⠗â â ‰â …⠇⠑⠎" }, { "input": "grad", "output": "⠛⠗â â ™" }, { "input": "grad's", "output": "⠛⠗â â ™â „â Ž" }, { "input": "gradate", "output": "⠛⠗â â ™â â žâ ‘" }, { "input": "gradated", "output": "⠛⠗â â ™â â žâ «" }, { "input": "gradates", "output": "⠛⠗â â ™â â žâ ‘â Ž" }, { "input": "gradating", "output": "⠛⠗â â ™â â žâ Œ" }, { "input": "gradation", "output": "⠛⠗â â ™â  â " }, { "input": "gradation's", "output": "⠛⠗â â ™â  â â „â Ž" }, { "input": "gradations", "output": "⠛⠗â â ™â  â â Ž" }, { "input": "grade", "output": "⠛⠗â â ™â ‘" }, { "input": "grade's", "output": "⠛⠗â â ™â ‘â „â Ž" }, { "input": "graded", "output": "⠛⠗â â ™â «" }, { "input": "grader", "output": "⠛⠗â â ™â »" }, { "input": "grader's", "output": "⠛⠗â â ™â »â „â Ž" }, { "input": "graders", "output": "⠛⠗â â ™â »â Ž" }, { "input": "grades", "output": "⠛⠗â â ™â ‘â Ž" }, { "input": "gradient", "output": "⠛⠗â â ™â Šâ ¢â ž" }, { "input": "gradient's", "output": "⠛⠗â â ™â Šâ ¢â žâ „â Ž" }, { "input": "gradients", "output": "⠛⠗â â ™â Šâ ¢â žâ Ž" }, { "input": "grading", "output": "⠛⠗â â ™â Œ" }, { "input": "grads", "output": "⠛⠗â â ™â Ž" }, { "input": "gradual", "output": "⠛⠗â â ™â ¥â â ‡" }, { "input": "gradualism", "output": "⠛⠗â â ™â ¥â â ‡â Šâ Žâ " }, { "input": "gradualism's", "output": "⠛⠗â â ™â ¥â â ‡â Šâ Žâ â „â Ž" }, { "input": "gradually", "output": "⠛⠗â â ™â ¥â  â ½" }, { "input": "gradualness", "output": "⠛⠗â â ™â ¥â â ‡â °â Ž" }, { "input": "gradualness's", "output": "⠛⠗â â ™â ¥â â ‡â °â Žâ „â Ž" }, { "input": "graduate", "output": "⠛⠗â â ™â ¥â â žâ ‘" }, { "input": "graduate's", "output": "⠛⠗â â ™â ¥â â žâ ‘â „â Ž" }, { "input": "graduated", "output": "⠛⠗â â ™â ¥â â žâ «" }, { "input": "graduates", "output": "⠛⠗â â ™â ¥â â žâ ‘â Ž" }, { "input": "graduating", "output": "⠛⠗â â ™â ¥â â žâ Œ" }, { "input": "graduation", "output": "⠛⠗â â ™â ¥â  â " }, { "input": "graduation's", "output": "⠛⠗â â ™â ¥â  â â „â Ž" }, { "input": "graduations", "output": "⠛⠗â â ™â ¥â  â â Ž" }, { "input": "graffiti", "output": "⠛⠗â â –â Šâ žâ Š" }, { "input": "graffito", "output": "⠛⠗â â –â Šâ žâ •" }, { "input": "graffito's", "output": "⠛⠗â â –â Šâ žâ •â „â Ž" }, { "input": "graft", "output": "⠛⠗â â ‹â ž" }, { "input": "graft's", "output": "⠛⠗â â ‹â žâ „â Ž" }, { "input": "grafted", "output": "⠛⠗â â ‹â žâ «" }, { "input": "grafter", "output": "⠛⠗â â ‹â žâ »" }, { "input": "grafter's", "output": "⠛⠗â â ‹â žâ »â „â Ž" }, { "input": "grafters", "output": "⠛⠗â â ‹â žâ »â Ž" }, { "input": "grafting", "output": "⠛⠗â â ‹â žâ Œ" }, { "input": "grafts", "output": "⠛⠗â â ‹â žâ Ž" }, { "input": "graham", "output": "⠛⠗â â “â â " }, { "input": "grahams", "output": "⠛⠗â â “â â â Ž" }, { "input": "grail", "output": "⠛⠗â â Šâ ‡" }, { "input": "grain", "output": "⠛⠗â â ”" }, { "input": "grain's", "output": "⠛⠗â â ”â „â Ž" }, { "input": "grained", "output": "⠛⠗â â ”â «" }, { "input": "grainier", "output": "⠛⠗â â ”â Šâ »" }, { "input": "grainiest", "output": "⠛⠗â â ”â Šâ ‘â Œ" }, { "input": "graininess", "output": "⠛⠗â â ”â Šâ °â Ž" }, { "input": "graininess's", "output": "⠛⠗â â ”â Šâ °â Žâ „â Ž" }, { "input": "grains", "output": "⠛⠗â â ”â Ž" }, { "input": "grainy", "output": "⠛⠗â â ”â ½" }, { "input": "gram", "output": "⠛⠗â â " }, { "input": "gram's", "output": "⠛⠗â â â „â Ž" }, { "input": "grammar", "output": "⠛⠗â â â â œ" }, { "input": "grammar's", "output": "⠛⠗â â â â œâ „â Ž" }, { "input": "grammarian", "output": "⠛⠗â â â â œâ Šâ â " }, { "input": "grammarian's", "output": "⠛⠗â â â â œâ Šâ â â „â Ž" }, { "input": "grammarians", "output": "⠛⠗â â â â œâ Šâ â â Ž" }, { "input": "grammars", "output": "⠛⠗â â â â œâ Ž" }, { "input": "grammatical", "output": "⠛⠗â â â â â žâ Šâ ‰â â ‡" }, { "input": "grammatically", "output": "⠛⠗â â â â â žâ Šâ ‰â  â ½" }, { "input": "gramophone", "output": "⠛⠗â â â •â â “â â •" }, { "input": "grampus", "output": "⠛⠗â â â â ¥â Ž" }, { "input": "grampus's", "output": "⠛⠗â â â â ¥â Žâ „â Ž" }, { "input": "grampuses", "output": "⠛⠗â â â â ¥â Žâ ‘â Ž" }, { "input": "grams", "output": "⠛⠗â â â Ž" }, { "input": "granaries", "output": "⠛⠗â â â œâ Šâ ‘â Ž" }, { "input": "granary", "output": "⠛⠗â â â œâ ½" }, { "input": "granary's", "output": "⠛⠗â â â œâ ½â „â Ž" }, { "input": "grand", "output": "⠛⠗⠯" }, { "input": "grand's", "output": "⠛⠗⠯⠄⠎" }, { "input": "grandam", "output": "⠛⠗⠯â â " }, { "input": "grandam's", "output": "⠛⠗⠯â â â „â Ž" }, { "input": "grandams", "output": "⠛⠗⠯â â â Ž" }, { "input": "grandaunt", "output": "⠛⠗⠯â â ¥â â ž" }, { "input": "grandaunt's", "output": "⠛⠗⠯â â ¥â â žâ „â Ž" }, { "input": "grandaunts", "output": "⠛⠗⠯â â ¥â â žâ Ž" }, { "input": "grandchild", "output": "⠛⠗⠯⠡⠊⠇⠙" }, { "input": "grandchild's", "output": "⠛⠗⠯⠡⠊⠇⠙⠄⠎" }, { "input": "grandchildren", "output": "⠛⠗⠯⠡â " }, { "input": "granddad", "output": "⠛⠗⠯⠙â â ™" }, { "input": "granddad's", "output": "⠛⠗⠯⠙â â ™â „â Ž" }, { "input": "granddads", "output": "⠛⠗⠯⠙â â ™â Ž" }, { "input": "granddaughter", "output": "⠛⠗⠯⠙â â ¥â £â žâ »" }, { "input": "granddaughter's", "output": "⠛⠗⠯⠙â â ¥â £â žâ »â „â Ž" }, { "input": "granddaughters", "output": "⠛⠗⠯⠙â â ¥â £â žâ »â Ž" }, { "input": "grandee", "output": "⠛⠗⠯⠑⠑" }, { "input": "grandee's", "output": "⠛⠗⠯⠑⠑⠄⠎" }, { "input": "grandees", "output": "⠛⠗⠯⠑⠑⠎" }, { "input": "grander", "output": "⠛⠗⠯⠻" }, { "input": "grandest", "output": "⠛⠗⠯⠑⠌" }, { "input": "grandeur", "output": "⠛⠗⠯⠑⠥⠗" }, { "input": "grandeur's", "output": "⠛⠗⠯⠑⠥⠗⠄⠎" }, { "input": "grandfather", "output": "⠛⠗⠯â â ‹" }, { "input": "grandfather's", "output": "⠛⠗⠯â â ‹â „â Ž" }, { "input": "grandfathered", "output": "⠛⠗⠯â â ‹â «" }, { "input": "grandfathering", "output": "⠛⠗⠯â â ‹â Œ" }, { "input": "grandfatherly", "output": "⠛⠗⠯â â ‹â ‡â ½" }, { "input": "grandfathers", "output": "⠛⠗⠯â â ‹â Ž" }, { "input": "grandiloquence", "output": "⠛⠗⠯⠊⠇⠕⠟⠥⠰⠑" }, { "input": "grandiloquence's", "output": "⠛⠗⠯⠊⠇⠕⠟⠥⠰⠑⠄⠎" }, { "input": "grandiloquent", "output": "⠛⠗⠯⠊⠇⠕⠟⠥⠢⠞" }, { "input": "grandiose", "output": "⠛⠗⠯⠊⠕⠎⠑" }, { "input": "grandiosely", "output": "⠛⠗⠯⠊⠕⠎⠑⠇⠽" }, { "input": "grandiosity", "output": "⠛⠗⠯⠊⠕⠎⠰⠽" }, { "input": "grandiosity's", "output": "⠛⠗⠯⠊⠕⠎⠰⠽⠄⠎" }, { "input": "grandly", "output": "⠛⠗⠯⠇⠽" }, { "input": "grandma", "output": "⠛⠗⠯â â " }, { "input": "grandma's", "output": "⠛⠗⠯â â â „â Ž" }, { "input": "grandmas", "output": "⠛⠗⠯â â â Ž" }, { "input": "grandmother", "output": "⠛⠗⠯â â " }, { "input": "grandmother's", "output": "⠛⠗⠯â â â „â Ž" }, { "input": "grandmotherly", "output": "⠛⠗⠯â â â ‡â ½" }, { "input": "grandmothers", "output": "⠛⠗⠯â â â Ž" }, { "input": "grandnephew", "output": "⠛⠗⠯â â ‘â â “â ‘â º" }, { "input": "grandnephew's", "output": "⠛⠗⠯â â ‘â â “⠑⠺⠄⠎" }, { "input": "grandnephews", "output": "⠛⠗⠯â â ‘â â “⠑⠺⠎" }, { "input": "grandness", "output": "⠛⠗⠯⠰⠎" }, { "input": "grandness's", "output": "⠛⠗⠯⠰⠎⠄⠎" }, { "input": "grandniece", "output": "⠛⠗⠯â â Šâ ‘⠉⠑" }, { "input": "grandniece's", "output": "⠛⠗⠯â â Šâ ‘⠉⠑⠄⠎" }, { "input": "grandnieces", "output": "⠛⠗⠯â â Šâ ‘⠉⠑⠎" }, { "input": "grandpa", "output": "⠛⠗⠯â â " }, { "input": "grandpa's", "output": "⠛⠗⠯â â â „â Ž" }, { "input": "grandparent", "output": "⠛⠗⠯â â œâ ¢â ž" }, { "input": "grandparent's", "output": "⠛⠗⠯â â œâ ¢â žâ „â Ž" }, { "input": "grandparents", "output": "⠛⠗⠯â â œâ ¢â žâ Ž" }, { "input": "grandpas", "output": "⠛⠗⠯â â â Ž" }, { "input": "grands", "output": "⠛⠗⠯⠎" }, { "input": "grandson", "output": "⠛⠗⠯⠎⠕â " }, { "input": "grandson's", "output": "⠛⠗⠯⠎⠕â â „â Ž" }, { "input": "grandsons", "output": "⠛⠗⠯⠎⠕â â Ž" }, { "input": "grandstand", "output": "⠛⠗⠯⠌⠯" }, { "input": "grandstand's", "output": "⠛⠗⠯⠌⠯⠄⠎" }, { "input": "grandstanded", "output": "⠛⠗⠯⠌⠯⠫" }, { "input": "grandstanding", "output": "⠛⠗⠯⠌⠯⠌" }, { "input": "grandstands", "output": "⠛⠗⠯⠌⠯⠎" }, { "input": "granduncle", "output": "⠛⠗⠯⠥â â ‰â ‡â ‘" }, { "input": "granduncle's", "output": "⠛⠗⠯⠥â â ‰â ‡â ‘â „â Ž" }, { "input": "granduncles", "output": "⠛⠗⠯⠥â â ‰â ‡â ‘â Ž" }, { "input": "grange", "output": "⠛⠗â â â ›â ‘" }, { "input": "grange's", "output": "⠛⠗â â â ›â ‘â „â Ž" }, { "input": "granges", "output": "⠛⠗â â â ›â ‘â Ž" }, { "input": "granite", "output": "⠛⠗â â â Šâ žâ ‘" }, { "input": "granite's", "output": "⠛⠗â â â Šâ žâ ‘â „â Ž" }, { "input": "granitic", "output": "⠛⠗â â â Šâ žâ Šâ ‰" }, { "input": "grannies", "output": "⠛⠗â â â â Šâ ‘â Ž" }, { "input": "granny", "output": "⠛⠗â â â â ½" }, { "input": "granny's", "output": "⠛⠗â â â â ½â „â Ž" }, { "input": "granola", "output": "⠛⠗â â â •â ‡â " }, { "input": "granola's", "output": "⠛⠗â â â •â ‡â â „â Ž" }, { "input": "grant", "output": "⠛⠗â â â ž" }, { "input": "grant's", "output": "⠛⠗â â â žâ „â Ž" }, { "input": "granted", "output": "⠛⠗â â â žâ «" }, { "input": "grantee", "output": "⠛⠗â â â žâ ‘â ‘" }, { "input": "grantee's", "output": "⠛⠗â â â žâ ‘â ‘â „â Ž" }, { "input": "grantees", "output": "⠛⠗â â â žâ ‘â ‘â Ž" }, { "input": "granter", "output": "⠛⠗â â â žâ »" }, { "input": "granter's", "output": "⠛⠗â â â žâ »â „â Ž" }, { "input": "granters", "output": "⠛⠗â â â žâ »â Ž" }, { "input": "granting", "output": "⠛⠗â â â žâ Œ" }, { "input": "grants", "output": "⠛⠗â â â žâ Ž" }, { "input": "grantsmanship", "output": "⠛⠗â â â žâ Žâ â â â ©â Šâ " }, { "input": "grantsmanship's", "output": "⠛⠗â â â žâ Žâ â â â ©â Šâ â „â Ž" }, { "input": "granular", "output": "⠛⠗â â â ¥â ‡â œ" }, { "input": "granularity", "output": "⠛⠗â â â ¥â ‡â œâ °â ½" }, { "input": "granularity's", "output": "⠛⠗â â â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "granulate", "output": "⠛⠗â â â ¥â ‡â â žâ ‘" }, { "input": "granulated", "output": "⠛⠗â â â ¥â ‡â â žâ «" }, { "input": "granulates", "output": "⠛⠗â â â ¥â ‡â â žâ ‘â Ž" }, { "input": "granulating", "output": "⠛⠗â â â ¥â ‡â â žâ Œ" }, { "input": "granulation", "output": "⠛⠗â â â ¥â ‡â  â " }, { "input": "granulation's", "output": "⠛⠗â â â ¥â ‡â  â â „â Ž" }, { "input": "granule", "output": "⠛⠗â â â ¥â ‡â ‘" }, { "input": "granule's", "output": "⠛⠗â â â ¥â ‡â ‘â „â Ž" }, { "input": "granules", "output": "⠛⠗â â â ¥â ‡â ‘â Ž" }, { "input": "grape", "output": "⠛⠗â â â ‘" }, { "input": "grape's", "output": "⠛⠗â â â ‘â „â Ž" }, { "input": "grapefruit", "output": "⠛⠗â â â ‘⠋⠗⠥⠊⠞" }, { "input": "grapefruit's", "output": "⠛⠗â â â ‘⠋⠗⠥⠊⠞⠄⠎" }, { "input": "grapefruits", "output": "⠛⠗â â â ‘⠋⠗⠥⠊⠞⠎" }, { "input": "grapes", "output": "⠛⠗â â â ‘â Ž" }, { "input": "grapeshot", "output": "⠛⠗â â â ‘â ©â •â ž" }, { "input": "grapeshot's", "output": "⠛⠗â â â ‘â ©â •â žâ „â Ž" }, { "input": "grapevine", "output": "⠛⠗â â â ‘⠧⠔⠑" }, { "input": "grapevine's", "output": "⠛⠗â â â ‘⠧⠔⠑⠄⠎" }, { "input": "grapevines", "output": "⠛⠗â â â ‘⠧⠔⠑⠎" }, { "input": "graph", "output": "⠛⠗â â â “" }, { "input": "graph's", "output": "⠛⠗â â â “â „â Ž" }, { "input": "graphed", "output": "⠛⠗â â â “â «" }, { "input": "graphic", "output": "⠛⠗â â â “â Šâ ‰" }, { "input": "graphic's", "output": "⠛⠗â â â “⠊⠉⠄⠎" }, { "input": "graphical", "output": "⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "graphically", "output": "⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "graphics", "output": "⠛⠗â â â “⠊⠉⠎" }, { "input": "graphing", "output": "⠛⠗â â â “â Œ" }, { "input": "graphite", "output": "⠛⠗â â â “â Šâ žâ ‘" }, { "input": "graphite's", "output": "⠛⠗â â â “â Šâ žâ ‘â „â Ž" }, { "input": "graphologist", "output": "⠛⠗â â â “⠕⠇⠕⠛⠊⠌" }, { "input": "graphologist's", "output": "⠛⠗â â â “⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "graphologists", "output": "⠛⠗â â â “⠕⠇⠕⠛⠊⠌⠎" }, { "input": "graphology", "output": "⠛⠗â â â “⠕⠇⠕⠛⠽" }, { "input": "graphology's", "output": "⠛⠗â â â “⠕⠇⠕⠛⠽⠄⠎" }, { "input": "graphs", "output": "⠛⠗â â â “â Ž" }, { "input": "grapnel", "output": "⠛⠗â â â â ‘â ‡" }, { "input": "grapnel's", "output": "⠛⠗â â â â ‘⠇⠄⠎" }, { "input": "grapnels", "output": "⠛⠗â â â â ‘⠇⠎" }, { "input": "grapple", "output": "⠛⠗â â â â ‡â ‘" }, { "input": "grapple's", "output": "⠛⠗â â â â ‡â ‘â „â Ž" }, { "input": "grappled", "output": "⠛⠗â â â â ‡â «" }, { "input": "grapples", "output": "⠛⠗â â â â ‡â ‘â Ž" }, { "input": "grappling", "output": "⠛⠗â â â â ‡â Œ" }, { "input": "grasp", "output": "⠛⠗â â Žâ " }, { "input": "grasp's", "output": "⠛⠗â â Žâ â „â Ž" }, { "input": "graspable", "output": "⠛⠗â â Žâ â â ¼" }, { "input": "grasped", "output": "⠛⠗â â Žâ â «" }, { "input": "grasping", "output": "⠛⠗â â Žâ â Œ" }, { "input": "grasps", "output": "⠛⠗â â Žâ â Ž" }, { "input": "grass", "output": "⠛⠗â â Žâ Ž" }, { "input": "grass's", "output": "⠛⠗â â Žâ Žâ „â Ž" }, { "input": "grassed", "output": "⠛⠗â â Žâ Žâ «" }, { "input": "grasses", "output": "⠛⠗â â Žâ Žâ ‘â Ž" }, { "input": "grasshopper", "output": "⠛⠗â â Žâ Žâ “â •â â â »" }, { "input": "grasshopper's", "output": "⠛⠗â â Žâ Žâ “â •â â â »â „â Ž" }, { "input": "grasshoppers", "output": "⠛⠗â â Žâ Žâ “â •â â â »â Ž" }, { "input": "grassier", "output": "⠛⠗â â Žâ Žâ Šâ »" }, { "input": "grassiest", "output": "⠛⠗â â Žâ Žâ Šâ ‘â Œ" }, { "input": "grassing", "output": "⠛⠗â â Žâ Žâ Œ" }, { "input": "grassland", "output": "⠛⠗â â Žâ Žâ ‡â ¯" }, { "input": "grassland's", "output": "⠛⠗â â Žâ Žâ ‡â ¯â „â Ž" }, { "input": "grassy", "output": "⠛⠗â â Žâ Žâ ½" }, { "input": "grate", "output": "⠛⠗â â žâ ‘" }, { "input": "grate's", "output": "⠛⠗â â žâ ‘â „â Ž" }, { "input": "grated", "output": "⠛⠗â â žâ «" }, { "input": "grateful", "output": "⠛⠗â â žâ ‘â °â ‡" }, { "input": "gratefully", "output": "⠛⠗â â žâ ‘⠰⠇⠇⠽" }, { "input": "gratefulness", "output": "⠛⠗â â žâ ‘⠰⠇⠰⠎" }, { "input": "gratefulness's", "output": "⠛⠗â â žâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "grater", "output": "⠛⠗â â žâ »" }, { "input": "grater's", "output": "⠛⠗â â žâ »â „â Ž" }, { "input": "graters", "output": "⠛⠗â â žâ »â Ž" }, { "input": "grates", "output": "⠛⠗â â žâ ‘â Ž" }, { "input": "gratification", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‰â  â " }, { "input": "gratification's", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "gratifications", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "gratified", "output": "⠛⠗â â žâ Šâ ‹â Šâ «" }, { "input": "gratifies", "output": "⠛⠗â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "gratify", "output": "⠛⠗â â žâ Šâ ‹â ½" }, { "input": "gratifying", "output": "⠛⠗â â žâ Šâ ‹â ½â Œ" }, { "input": "grating", "output": "⠛⠗â â žâ Œ" }, { "input": "grating's", "output": "⠛⠗â â žâ Œâ „â Ž" }, { "input": "gratingly", "output": "⠛⠗â â žâ Œâ ‡â ½" }, { "input": "gratings", "output": "⠛⠗â â žâ Œâ Ž" }, { "input": "gratis", "output": "⠛⠗â â žâ Šâ Ž" }, { "input": "gratitude", "output": "⠛⠗â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "gratitude's", "output": "⠛⠗â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "gratuities", "output": "⠛⠗â â žâ ¥â Šâ žâ Šâ ‘â Ž" }, { "input": "gratuitous", "output": "⠛⠗â â žâ ¥â Šâ žâ ³â Ž" }, { "input": "gratuitously", "output": "⠛⠗â â žâ ¥â Šâ žâ ³â Žâ ‡â ½" }, { "input": "gratuitousness's", "output": "⠛⠗â â žâ ¥â Šâ žâ ³â Žâ °â Žâ „â Ž" }, { "input": "gratuity", "output": "⠛⠗â â žâ ¥â °â ½" }, { "input": "gratuity's", "output": "⠛⠗â â žâ ¥â °â ½â „â Ž" }, { "input": "gravamen", "output": "⠛⠗â â §â â â ¢" }, { "input": "gravamen's", "output": "⠛⠗â â §â â â ¢â „â Ž" }, { "input": "gravamens", "output": "⠛⠗â â §â â â ¢â Ž" }, { "input": "grave", "output": "⠛⠗â â §â ‘" }, { "input": "grave's", "output": "⠛⠗â â §â ‘â „â Ž" }, { "input": "graved", "output": "⠛⠗â â §â «" }, { "input": "gravel", "output": "⠛⠗â â §â ‘â ‡" }, { "input": "gravel's", "output": "⠛⠗â â §â ‘⠇⠄⠎" }, { "input": "graveled", "output": "⠛⠗â â §â ‘⠇⠫" }, { "input": "graveling", "output": "⠛⠗â â §â ‘⠇⠌" }, { "input": "gravelly", "output": "⠛⠗â â §â ‘⠇⠇⠽" }, { "input": "gravels", "output": "⠛⠗â â §â ‘⠇⠎" }, { "input": "gravely", "output": "⠛⠗â â §â ‘⠇⠽" }, { "input": "graven", "output": "⠛⠗â â §â ¢" }, { "input": "graveness", "output": "⠛⠗â â §â ‘â °â Ž" }, { "input": "graveness's", "output": "⠛⠗â â §â ‘â °â Žâ „â Ž" }, { "input": "graver", "output": "⠛⠗â â §â »" }, { "input": "graves", "output": "⠛⠗â â §â ‘â Ž" }, { "input": "gravest", "output": "⠛⠗â â §â ‘â Œ" }, { "input": "gravestone", "output": "⠛⠗â â §â ‘â Œâ â •" }, { "input": "gravestone's", "output": "⠛⠗â â §â ‘â Œâ â •â „â Ž" }, { "input": "gravestones", "output": "⠛⠗â â §â ‘â Œâ â •â Ž" }, { "input": "graveyard", "output": "⠛⠗â â §â ‘⠽⠜⠙" }, { "input": "graveyard's", "output": "⠛⠗â â §â ‘⠽⠜⠙⠄⠎" }, { "input": "graveyards", "output": "⠛⠗â â §â ‘⠽⠜⠙⠎" }, { "input": "gravid", "output": "⠛⠗â â §â Šâ ™" }, { "input": "gravies", "output": "⠛⠗â â §â Šâ ‘â Ž" }, { "input": "gravimeter", "output": "⠛⠗â â §â Šâ â ‘â žâ »" }, { "input": "gravimeter's", "output": "⠛⠗â â §â Šâ â ‘⠞⠻⠄⠎" }, { "input": "gravimeters", "output": "⠛⠗â â §â Šâ â ‘⠞⠻⠎" }, { "input": "graving", "output": "⠛⠗â â §â Œ" }, { "input": "gravitate", "output": "⠛⠗â â §â Šâ žâ â žâ ‘" }, { "input": "gravitated", "output": "⠛⠗â â §â Šâ žâ â žâ «" }, { "input": "gravitates", "output": "⠛⠗â â §â Šâ žâ â žâ ‘â Ž" }, { "input": "gravitating", "output": "⠛⠗â â §â Šâ žâ â žâ Œ" }, { "input": "gravitation", "output": "⠛⠗â â §â Šâ žâ  â " }, { "input": "gravitation's", "output": "⠛⠗â â §â Šâ žâ  â â „â Ž" }, { "input": "gravitational", "output": "⠛⠗â â §â Šâ žâ  â â â ‡" }, { "input": "gravity", "output": "⠛⠗â â §â °â ½" }, { "input": "gravity's", "output": "⠛⠗â â §â °â ½â „â Ž" }, { "input": "gravy", "output": "⠛⠗â â §â ½" }, { "input": "gravy's", "output": "⠛⠗â â §â ½â „â Ž" }, { "input": "gray", "output": "⠛⠗â â ½" }, { "input": "gray's", "output": "⠛⠗â â ½â „â Ž" }, { "input": "graybeard", "output": "⠛⠗â â ½â ƒâ ‘⠜⠙" }, { "input": "graybeard's", "output": "⠛⠗â â ½â ƒâ ‘⠜⠙⠄⠎" }, { "input": "graybeards", "output": "⠛⠗â â ½â ƒâ ‘⠜⠙⠎" }, { "input": "grayed", "output": "⠛⠗â â ½â «" }, { "input": "grayer", "output": "⠛⠗â â ½â »" }, { "input": "grayest", "output": "⠛⠗â â ½â ‘â Œ" }, { "input": "graying", "output": "⠛⠗â â ½â Œ" }, { "input": "grayish", "output": "⠛⠗â â ½â Šâ ©" }, { "input": "grayness", "output": "⠛⠗â â ½â °â Ž" }, { "input": "grayness's", "output": "⠛⠗â â ½â °â Žâ „â Ž" }, { "input": "grays", "output": "⠛⠗â â ½â Ž" }, { "input": "graze", "output": "⠛⠗â â µâ ‘" }, { "input": "graze's", "output": "⠛⠗â â µâ ‘â „â Ž" }, { "input": "grazed", "output": "⠛⠗â â µâ «" }, { "input": "grazer", "output": "⠛⠗â â µâ »" }, { "input": "grazer's", "output": "⠛⠗â â µâ »â „â Ž" }, { "input": "grazers", "output": "⠛⠗â â µâ »â Ž" }, { "input": "grazes", "output": "⠛⠗â â µâ ‘â Ž" }, { "input": "grazing", "output": "⠛⠗â â µâ Œ" }, { "input": "grease", "output": "⠛⠗⠂⠎⠑" }, { "input": "grease's", "output": "⠛⠗⠂⠎⠑⠄⠎" }, { "input": "greased", "output": "⠛⠗⠂⠎⠫" }, { "input": "greasepaint", "output": "⠛⠗⠂⠎⠑â â â ”â ž" }, { "input": "greasepaint's", "output": "⠛⠗⠂⠎⠑â â â ”â žâ „â Ž" }, { "input": "greases", "output": "⠛⠗⠂⠎⠑⠎" }, { "input": "greasier", "output": "⠛⠗⠂⠎⠊⠻" }, { "input": "greasiest", "output": "⠛⠗⠂⠎⠊⠑⠌" }, { "input": "greasily", "output": "⠛⠗⠂⠎⠊⠇⠽" }, { "input": "greasiness", "output": "⠛⠗⠂⠎⠊⠰⠎" }, { "input": "greasiness's", "output": "⠛⠗⠂⠎⠊⠰⠎⠄⠎" }, { "input": "greasing", "output": "⠛⠗⠂⠎⠌" }, { "input": "greasy", "output": "⠛⠗⠂⠎⠽" }, { "input": "great", "output": "⠛⠗⠞" }, { "input": "great's", "output": "⠛⠗⠞⠄⠎" }, { "input": "greater", "output": "⠛⠗⠞⠻" }, { "input": "greatest", "output": "⠛⠗⠞⠑⠌" }, { "input": "greathearted", "output": "⠛⠗⠞⠓⠑⠜⠞⠫" }, { "input": "greatly", "output": "⠛⠗⠞⠇⠽" }, { "input": "greatness", "output": "⠛⠗⠞⠰⠎" }, { "input": "greatness's", "output": "⠛⠗⠞⠰⠎⠄⠎" }, { "input": "greats", "output": "⠛⠗⠞⠎" }, { "input": "grebe", "output": "⠛⠗⠑⠃⠑" }, { "input": "grebe's", "output": "⠛⠗⠑⠃⠑⠄⠎" }, { "input": "grebes", "output": "⠛⠗⠑⠃⠑⠎" }, { "input": "greed", "output": "⠛⠗⠑⠫" }, { "input": "greed's", "output": "⠛⠗⠑⠫⠄⠎" }, { "input": "greedier", "output": "⠛⠗⠑⠫⠊⠻" }, { "input": "greediest", "output": "⠛⠗⠑⠫⠊⠑⠌" }, { "input": "greedily", "output": "⠛⠗⠑⠫⠊⠇⠽" }, { "input": "greediness", "output": "⠛⠗⠑⠫⠊⠰⠎" }, { "input": "greediness's", "output": "⠛⠗⠑⠫⠊⠰⠎⠄⠎" }, { "input": "greedy", "output": "⠛⠗⠑⠫⠽" }, { "input": "green", "output": "⠛⠗⠑⠢" }, { "input": "green's", "output": "⠛⠗⠑⠢⠄⠎" }, { "input": "greenback", "output": "⠛⠗⠑⠢⠃â â ‰â …" }, { "input": "greenback's", "output": "⠛⠗⠑⠢⠃â â ‰â …â „â Ž" }, { "input": "greenbacks", "output": "⠛⠗⠑⠢⠃â â ‰â …â Ž" }, { "input": "greenbelt", "output": "⠛⠗⠑⠢⠃⠑⠇⠞" }, { "input": "greenbelt's", "output": "⠛⠗⠑⠢⠃⠑⠇⠞⠄⠎" }, { "input": "greenbelts", "output": "⠛⠗⠑⠢⠃⠑⠇⠞⠎" }, { "input": "greened", "output": "⠛⠗⠑⠢⠫" }, { "input": "greener", "output": "⠛⠗⠑⠢⠻" }, { "input": "greenery", "output": "⠛⠗⠑⠢⠻⠽" }, { "input": "greenery's", "output": "⠛⠗⠑⠢⠻⠽⠄⠎" }, { "input": "greenest", "output": "⠛⠗⠑⠢⠑⠌" }, { "input": "greengrocer", "output": "⠛⠗⠑⠢⠛⠗⠕⠉⠻" }, { "input": "greengrocer's", "output": "⠛⠗⠑⠢⠛⠗⠕⠉⠻⠄⠎" }, { "input": "greengrocers", "output": "⠛⠗⠑⠢⠛⠗⠕⠉⠻⠎" }, { "input": "greenhorn", "output": "⠛⠗⠑⠢⠓⠕⠗â " }, { "input": "greenhorn's", "output": "⠛⠗⠑⠢⠓⠕⠗â â „â Ž" }, { "input": "greenhorns", "output": "⠛⠗⠑⠢⠓⠕⠗â â Ž" }, { "input": "greenhouse", "output": "⠛⠗⠑⠢⠓⠳⠎⠑" }, { "input": "greenhouse's", "output": "⠛⠗⠑⠢⠓⠳⠎⠑⠄⠎" }, { "input": "greenhouses", "output": "⠛⠗⠑⠢⠓⠳⠎⠑⠎" }, { "input": "greening", "output": "⠛⠗⠑⠢⠌" }, { "input": "greenish", "output": "⠛⠗⠑⠢⠊⠩" }, { "input": "greenly", "output": "⠛⠗⠑⠢⠇⠽" }, { "input": "greenmail", "output": "⠛⠗⠑⠢â â â Šâ ‡" }, { "input": "greenmail's", "output": "⠛⠗⠑⠢â â â Šâ ‡â „â Ž" }, { "input": "greenness", "output": "⠛⠗⠑⠢⠰⠎" }, { "input": "greenness's", "output": "⠛⠗⠑⠢⠰⠎⠄⠎" }, { "input": "greenroom", "output": "⠛⠗⠑⠢⠗⠕⠕â " }, { "input": "greenroom's", "output": "⠛⠗⠑⠢⠗⠕⠕â â „â Ž" }, { "input": "greenrooms", "output": "⠛⠗⠑⠢⠗⠕⠕â â Ž" }, { "input": "greens", "output": "⠛⠗⠑⠢⠎" }, { "input": "greensward", "output": "⠛⠗⠑⠢⠎⠺⠜⠙" }, { "input": "greensward's", "output": "⠛⠗⠑⠢⠎⠺⠜⠙⠄⠎" }, { "input": "greenwood", "output": "⠛⠗⠑⠢⠺⠕⠕⠙" }, { "input": "greenwood's", "output": "⠛⠗⠑⠢⠺⠕⠕⠙⠄⠎" }, { "input": "greet", "output": "⠛⠗⠑⠑⠞" }, { "input": "greeted", "output": "⠛⠗⠑⠑⠞⠫" }, { "input": "greeter", "output": "⠛⠗⠑⠑⠞⠻" }, { "input": "greeter's", "output": "⠛⠗⠑⠑⠞⠻⠄⠎" }, { "input": "greeters", "output": "⠛⠗⠑⠑⠞⠻⠎" }, { "input": "greeting", "output": "⠛⠗⠑⠑⠞⠌" }, { "input": "greeting's", "output": "⠛⠗⠑⠑⠞⠌⠄⠎" }, { "input": "greetings", "output": "⠛⠗⠑⠑⠞⠌⠎" }, { "input": "greets", "output": "⠛⠗⠑⠑⠞⠎" }, { "input": "gregarious", "output": "⠛⠗⠑⠛⠜⠊⠳⠎" }, { "input": "gregariously", "output": "⠛⠗⠑⠛⠜⠊⠳⠎⠇⠽" }, { "input": "gregariousness", "output": "⠛⠗⠑⠛⠜⠊⠳⠎⠰⠎" }, { "input": "gregariousness's", "output": "⠛⠗⠑⠛⠜⠊⠳⠎⠰⠎⠄⠎" }, { "input": "gremlin", "output": "⠛⠗⠑â â ‡â ”" }, { "input": "gremlin's", "output": "⠛⠗⠑â â ‡â ”â „â Ž" }, { "input": "gremlins", "output": "⠛⠗⠑â â ‡â ”â Ž" }, { "input": "grenade", "output": "⠛⠗⠢â â ™â ‘" }, { "input": "grenade's", "output": "⠛⠗⠢â â ™â ‘â „â Ž" }, { "input": "grenades", "output": "⠛⠗⠢â â ™â ‘â Ž" }, { "input": "grenadier", "output": "⠛⠗⠢â â ™â Šâ »" }, { "input": "grenadier's", "output": "⠛⠗⠢â â ™â Šâ »â „â Ž" }, { "input": "grenadiers", "output": "⠛⠗⠢â â ™â Šâ »â Ž" }, { "input": "grenadine's", "output": "⠛⠗⠢â â ™â ”â ‘â „â Ž" }, { "input": "grew", "output": "⠛⠗⠑⠺" }, { "input": "greyhound", "output": "⠛⠗⠑⠽⠓⠨⠙" }, { "input": "greyhound's", "output": "⠛⠗⠑⠽⠓⠨⠙⠄⠎" }, { "input": "greyhounds", "output": "⠛⠗⠑⠽⠓⠨⠙⠎" }, { "input": "grid", "output": "⠛⠗⠊⠙" }, { "input": "grid's", "output": "⠛⠗⠊⠙⠄⠎" }, { "input": "griddle", "output": "⠛⠗⠊⠲⠇⠑" }, { "input": "griddle's", "output": "⠛⠗⠊⠲⠇⠑⠄⠎" }, { "input": "griddlecake", "output": "⠛⠗⠊⠲⠇⠑⠉â â …â ‘" }, { "input": "griddlecake's", "output": "⠛⠗⠊⠲⠇⠑⠉â â …â ‘â „â Ž" }, { "input": "griddlecakes", "output": "⠛⠗⠊⠲⠇⠑⠉â â …â ‘â Ž" }, { "input": "griddles", "output": "⠛⠗⠊⠲⠇⠑⠎" }, { "input": "gridiron", "output": "⠛⠗⠊⠙⠊⠗⠕â " }, { "input": "gridiron's", "output": "⠛⠗⠊⠙⠊⠗⠕â â „â Ž" }, { "input": "gridirons", "output": "⠛⠗⠊⠙⠊⠗⠕â â Ž" }, { "input": "gridlock", "output": "⠛⠗⠊⠙⠇⠕⠉⠅" }, { "input": "gridlock's", "output": "⠛⠗⠊⠙⠇⠕⠉⠅⠄⠎" }, { "input": "gridlocked", "output": "⠛⠗⠊⠙⠇⠕⠉⠅⠫" }, { "input": "gridlocks", "output": "⠛⠗⠊⠙⠇⠕⠉⠅⠎" }, { "input": "grids", "output": "⠛⠗⠊⠙⠎" }, { "input": "grief", "output": "⠛⠗⠊⠑⠋" }, { "input": "grief's", "output": "⠛⠗⠊⠑⠋⠄⠎" }, { "input": "griefs", "output": "⠛⠗⠊⠑⠋⠎" }, { "input": "grievance", "output": "⠛⠗⠊⠑⠧⠨⠑" }, { "input": "grievance's", "output": "⠛⠗⠊⠑⠧⠨⠑⠄⠎" }, { "input": "grievances", "output": "⠛⠗⠊⠑⠧⠨⠑⠎" }, { "input": "grieve", "output": "⠛⠗⠊⠑⠧⠑" }, { "input": "grieved", "output": "⠛⠗⠊⠑⠧⠫" }, { "input": "griever", "output": "⠛⠗⠊⠑⠧⠻" }, { "input": "griever's", "output": "⠛⠗⠊⠑⠧⠻⠄⠎" }, { "input": "grievers", "output": "⠛⠗⠊⠑⠧⠻⠎" }, { "input": "grieves", "output": "⠛⠗⠊⠑⠧⠑⠎" }, { "input": "grieving", "output": "⠛⠗⠊⠑⠧⠌" }, { "input": "grievous", "output": "⠛⠗⠊⠑⠧⠳⠎" }, { "input": "grievously", "output": "⠛⠗⠊⠑⠧⠳⠎⠇⠽" }, { "input": "grievousness", "output": "⠛⠗⠊⠑⠧⠳⠎⠰⠎" }, { "input": "grievousness's", "output": "⠛⠗⠊⠑⠧⠳⠎⠰⠎⠄⠎" }, { "input": "griffin", "output": "⠛⠗⠊⠖⠔" }, { "input": "griffin's", "output": "⠛⠗⠊⠖⠔⠄⠎" }, { "input": "griffins", "output": "⠛⠗⠊⠖⠔⠎" }, { "input": "grill", "output": "⠛⠗⠊⠇⠇" }, { "input": "grill's", "output": "⠛⠗⠊⠇⠇⠄⠎" }, { "input": "grille", "output": "⠛⠗⠊⠇⠇⠑" }, { "input": "grille's", "output": "⠛⠗⠊⠇⠇⠑⠄⠎" }, { "input": "grilled", "output": "⠛⠗⠊⠇⠇⠫" }, { "input": "grilles", "output": "⠛⠗⠊⠇⠇⠑⠎" }, { "input": "grilling", "output": "⠛⠗⠊⠇⠇⠌" }, { "input": "grills", "output": "⠛⠗⠊⠇⠇⠎" }, { "input": "grim", "output": "⠛⠗⠊â " }, { "input": "grimace", "output": "⠛⠗⠊â â â ‰â ‘" }, { "input": "grimace's", "output": "⠛⠗⠊â â â ‰â ‘â „â Ž" }, { "input": "grimaced", "output": "⠛⠗⠊â â â ‰â «" }, { "input": "grimaces", "output": "⠛⠗⠊â â â ‰â ‘â Ž" }, { "input": "grimacing", "output": "⠛⠗⠊â â â ‰â Œ" }, { "input": "grime", "output": "⠛⠗⠊â â ‘" }, { "input": "grime's", "output": "⠛⠗⠊â â ‘â „â Ž" }, { "input": "grimed", "output": "⠛⠗⠊â â «" }, { "input": "grimes", "output": "â ›â —â Šâ â ‘â Ž" }, { "input": "grimier", "output": "⠛⠗⠊â â Šâ »" }, { "input": "grimiest", "output": "⠛⠗⠊â â Šâ ‘â Œ" }, { "input": "griminess", "output": "⠛⠗⠊â â Šâ °â Ž" }, { "input": "griminess's", "output": "⠛⠗⠊â â Šâ °â Žâ „â Ž" }, { "input": "griming", "output": "⠛⠗⠊â â Œ" }, { "input": "grimly", "output": "⠛⠗⠊â â ‡â ½" }, { "input": "grimmer", "output": "⠛⠗⠊â â â »" }, { "input": "grimmest", "output": "⠛⠗⠊â â â ‘â Œ" }, { "input": "grimness", "output": "⠛⠗⠊â â °â Ž" }, { "input": "grimness's", "output": "⠛⠗⠊â â °â Žâ „â Ž" }, { "input": "grimy", "output": "⠛⠗⠊â â ½" }, { "input": "grin", "output": "⠛⠗⠔" }, { "input": "grin's", "output": "⠛⠗⠔⠄⠎" }, { "input": "grind", "output": "⠛⠗⠔⠙" }, { "input": "grind's", "output": "⠛⠗⠔⠙⠄⠎" }, { "input": "grinder", "output": "⠛⠗⠔⠙⠻" }, { "input": "grinder's", "output": "⠛⠗⠔⠙⠻⠄⠎" }, { "input": "grinders", "output": "⠛⠗⠔⠙⠻⠎" }, { "input": "grinding", "output": "⠛⠗⠔⠙⠌" }, { "input": "grindings", "output": "⠛⠗⠔⠙⠌⠎" }, { "input": "grinds", "output": "⠛⠗⠔⠙⠎" }, { "input": "grindstone", "output": "⠛⠗⠔⠙⠌â â •" }, { "input": "grindstone's", "output": "⠛⠗⠔⠙⠌â â •â „â Ž" }, { "input": "grindstones", "output": "⠛⠗⠔⠙⠌â â •â Ž" }, { "input": "gringo", "output": "⠛⠗⠌⠕" }, { "input": "gringo's", "output": "⠛⠗⠌⠕⠄⠎" }, { "input": "gringos", "output": "⠛⠗⠌⠕⠎" }, { "input": "grinned", "output": "⠛⠗⠔â â «" }, { "input": "grinning", "output": "⠛⠗⠔â â Œ" }, { "input": "grins", "output": "⠛⠗⠔⠎" }, { "input": "grip", "output": "⠛⠗⠊â " }, { "input": "grip's", "output": "⠛⠗⠊â â „â Ž" }, { "input": "gripe", "output": "⠛⠗⠊â â ‘" }, { "input": "gripe's", "output": "⠛⠗⠊â â ‘â „â Ž" }, { "input": "griped", "output": "⠛⠗⠊â â «" }, { "input": "griper", "output": "⠛⠗⠊â â »" }, { "input": "griper's", "output": "⠛⠗⠊â â »â „â Ž" }, { "input": "gripers", "output": "⠛⠗⠊â â »â Ž" }, { "input": "gripes", "output": "⠛⠗⠊â â ‘â Ž" }, { "input": "griping", "output": "⠛⠗⠊â â Œ" }, { "input": "grippe", "output": "⠛⠗⠊â â â ‘" }, { "input": "grippe's", "output": "⠛⠗⠊â â â ‘â „â Ž" }, { "input": "gripped", "output": "⠛⠗⠊â â â «" }, { "input": "gripper", "output": "⠛⠗⠊â â â »" }, { "input": "gripper's", "output": "⠛⠗⠊â â â »â „â Ž" }, { "input": "grippers", "output": "⠛⠗⠊â â â »â Ž" }, { "input": "gripping", "output": "⠛⠗⠊â â â Œ" }, { "input": "grips", "output": "⠛⠗⠊â â Ž" }, { "input": "grislier", "output": "⠛⠗⠊⠎⠇⠊⠻" }, { "input": "grisliest", "output": "⠛⠗⠊⠎⠇⠊⠑⠌" }, { "input": "grisliness", "output": "⠛⠗⠊⠎⠇⠊⠰⠎" }, { "input": "grisliness's", "output": "⠛⠗⠊⠎⠇⠊⠰⠎⠄⠎" }, { "input": "grisly", "output": "⠛⠗⠊⠎⠇⠽" }, { "input": "grist", "output": "⠛⠗⠊⠌" }, { "input": "grist's", "output": "⠛⠗⠊⠌⠄⠎" }, { "input": "gristle", "output": "⠛⠗⠊⠌⠇⠑" }, { "input": "gristle's", "output": "⠛⠗⠊⠌⠇⠑⠄⠎" }, { "input": "gristlier", "output": "⠛⠗⠊⠌⠇⠊⠻" }, { "input": "gristliest", "output": "⠛⠗⠊⠌⠇⠊⠑⠌" }, { "input": "gristly", "output": "⠛⠗⠊⠌⠇⠽" }, { "input": "gristmill", "output": "⠛⠗⠊⠌â â Šâ ‡â ‡" }, { "input": "gristmill's", "output": "⠛⠗⠊⠌â â Šâ ‡â ‡â „â Ž" }, { "input": "gristmills", "output": "⠛⠗⠊⠌â â Šâ ‡â ‡â Ž" }, { "input": "grit", "output": "⠛⠗⠊⠞" }, { "input": "grit's", "output": "⠛⠗⠊⠞⠄⠎" }, { "input": "grits", "output": "⠛⠗⠊⠞⠎" }, { "input": "grits's", "output": "⠛⠗⠊⠞⠎⠄⠎" }, { "input": "gritted", "output": "⠛⠗⠊⠞⠞⠫" }, { "input": "grittier", "output": "⠛⠗⠊⠞⠞⠊⠻" }, { "input": "grittiest", "output": "⠛⠗⠊⠞⠞⠊⠑⠌" }, { "input": "grittiness", "output": "⠛⠗⠊⠞⠞⠊⠰⠎" }, { "input": "grittiness's", "output": "⠛⠗⠊⠞⠞⠊⠰⠎⠄⠎" }, { "input": "gritting", "output": "⠛⠗⠊⠞⠞⠌" }, { "input": "gritty", "output": "⠛⠗⠊⠞⠞⠽" }, { "input": "grizzled", "output": "⠛⠗⠊⠵⠵⠇⠫" }, { "input": "grizzlier", "output": "⠛⠗⠊⠵⠵⠇⠊⠻" }, { "input": "grizzlies", "output": "⠛⠗⠊⠵⠵⠇⠊⠑⠎" }, { "input": "grizzliest", "output": "⠛⠗⠊⠵⠵⠇⠊⠑⠌" }, { "input": "grizzly", "output": "⠛⠗⠊⠵⠵⠇⠽" }, { "input": "grizzly's", "output": "⠛⠗⠊⠵⠵⠇⠽⠄⠎" }, { "input": "groan", "output": "⠛⠗⠕â â " }, { "input": "groan's", "output": "⠛⠗⠕â â â „â Ž" }, { "input": "groaned", "output": "⠛⠗⠕â â â «" }, { "input": "groaning", "output": "⠛⠗⠕â â â Œ" }, { "input": "groans", "output": "⠛⠗⠕â â â Ž" }, { "input": "groat", "output": "⠛⠗⠕â â ž" }, { "input": "groat's", "output": "⠛⠗⠕â â žâ „â Ž" }, { "input": "groats", "output": "⠛⠗⠕â â žâ Ž" }, { "input": "grocer", "output": "⠛⠗⠕⠉⠻" }, { "input": "grocer's", "output": "⠛⠗⠕⠉⠻⠄⠎" }, { "input": "groceries", "output": "⠛⠗⠕⠉⠻⠊⠑⠎" }, { "input": "grocers", "output": "⠛⠗⠕⠉⠻⠎" }, { "input": "grocery", "output": "⠛⠗⠕⠉⠻⠽" }, { "input": "grocery's", "output": "⠛⠗⠕⠉⠻⠽⠄⠎" }, { "input": "grog", "output": "⠛⠗⠕⠛" }, { "input": "grog's", "output": "⠛⠗⠕⠛⠄⠎" }, { "input": "groggier", "output": "⠛⠗⠕⠶⠊⠻" }, { "input": "groggiest", "output": "⠛⠗⠕⠶⠊⠑⠌" }, { "input": "groggily", "output": "⠛⠗⠕⠶⠊⠇⠽" }, { "input": "grogginess", "output": "⠛⠗⠕⠶⠊⠰⠎" }, { "input": "grogginess's", "output": "⠛⠗⠕⠶⠊⠰⠎⠄⠎" }, { "input": "groggy", "output": "⠛⠗⠕⠶⠽" }, { "input": "groin", "output": "⠛⠗⠕⠔" }, { "input": "groin's", "output": "⠛⠗⠕⠔⠄⠎" }, { "input": "groins", "output": "⠛⠗⠕⠔⠎" }, { "input": "grommet", "output": "⠛⠗⠕â â â ‘â ž" }, { "input": "grommet's", "output": "⠛⠗⠕â â â ‘â žâ „â Ž" }, { "input": "grommets", "output": "⠛⠗⠕â â â ‘â žâ Ž" }, { "input": "groom", "output": "⠛⠗⠕⠕â " }, { "input": "groom's", "output": "⠛⠗⠕⠕â â „â Ž" }, { "input": "groomed", "output": "⠛⠗⠕⠕â â «" }, { "input": "groomer", "output": "⠛⠗⠕⠕â â »" }, { "input": "groomer's", "output": "⠛⠗⠕⠕â â »â „â Ž" }, { "input": "groomers", "output": "⠛⠗⠕⠕â â »â Ž" }, { "input": "grooming", "output": "⠛⠗⠕⠕â â Œ" }, { "input": "grooming's", "output": "⠛⠗⠕⠕â â Œâ „â Ž" }, { "input": "grooms", "output": "⠛⠗⠕⠕â â Ž" }, { "input": "groove", "output": "⠛⠗⠕⠕⠧⠑" }, { "input": "groove's", "output": "⠛⠗⠕⠕⠧⠑⠄⠎" }, { "input": "grooved", "output": "⠛⠗⠕⠕⠧⠫" }, { "input": "grooves", "output": "⠛⠗⠕⠕⠧⠑⠎" }, { "input": "groovier", "output": "⠛⠗⠕⠕⠧⠊⠻" }, { "input": "grooviest", "output": "⠛⠗⠕⠕⠧⠊⠑⠌" }, { "input": "grooving", "output": "⠛⠗⠕⠕⠧⠌" }, { "input": "groovy", "output": "⠛⠗⠕⠕⠧⠽" }, { "input": "grope", "output": "⠛⠗⠕â â ‘" }, { "input": "grope's", "output": "⠛⠗⠕â â ‘â „â Ž" }, { "input": "groped", "output": "⠛⠗⠕â â «" }, { "input": "groper", "output": "⠛⠗⠕â â »" }, { "input": "groper's", "output": "⠛⠗⠕â â »â „â Ž" }, { "input": "gropers", "output": "⠛⠗⠕â â »â Ž" }, { "input": "gropes", "output": "⠛⠗⠕â â ‘â Ž" }, { "input": "groping", "output": "⠛⠗⠕â â Œ" }, { "input": "grosbeak", "output": "⠛⠗⠕⠎⠃⠂⠅" }, { "input": "grosbeak's", "output": "⠛⠗⠕⠎⠃⠂⠅⠄⠎" }, { "input": "grosbeaks", "output": "⠛⠗⠕⠎⠃⠂⠅⠎" }, { "input": "grosgrain", "output": "⠛⠗⠕⠎⠛⠗â â ”" }, { "input": "grosgrain's", "output": "⠛⠗⠕⠎⠛⠗â â ”â „â Ž" }, { "input": "gross", "output": "⠛⠗⠕⠎⠎" }, { "input": "gross's", "output": "⠛⠗⠕⠎⠎⠄⠎" }, { "input": "grossed", "output": "⠛⠗⠕⠎⠎⠫" }, { "input": "grosser", "output": "⠛⠗⠕⠎⠎⠻" }, { "input": "grosses", "output": "⠛⠗⠕⠎⠎⠑⠎" }, { "input": "grossest", "output": "⠛⠗⠕⠎⠎⠑⠌" }, { "input": "grossing", "output": "⠛⠗⠕⠎⠎⠌" }, { "input": "grossly", "output": "⠛⠗⠕⠎⠎⠇⠽" }, { "input": "grossness", "output": "⠛⠗⠕⠎⠎⠰⠎" }, { "input": "grossness's", "output": "⠛⠗⠕⠎⠎⠰⠎⠄⠎" }, { "input": "grotesque", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑" }, { "input": "grotesque's", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠄⠎" }, { "input": "grotesquely", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠇⠽" }, { "input": "grotesqueness", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠰⠎" }, { "input": "grotesqueness's", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠰⠎⠄⠎" }, { "input": "grotesques", "output": "⠛⠗⠕⠞⠑⠎⠟⠥⠑⠎" }, { "input": "grotto", "output": "⠛⠗⠕⠞⠞⠕" }, { "input": "grotto's", "output": "⠛⠗⠕⠞⠞⠕⠄⠎" }, { "input": "grottoes", "output": "⠛⠗⠕⠞⠞⠕⠑⠎" }, { "input": "grouch", "output": "⠛⠗⠳⠡" }, { "input": "grouch's", "output": "⠛⠗⠳⠡⠄⠎" }, { "input": "grouched", "output": "⠛⠗⠳⠡⠫" }, { "input": "grouches", "output": "⠛⠗⠳⠡⠑⠎" }, { "input": "grouchier", "output": "⠛⠗⠳⠡⠊⠻" }, { "input": "grouchiest", "output": "⠛⠗⠳⠡⠊⠑⠌" }, { "input": "grouchily", "output": "⠛⠗⠳⠡⠊⠇⠽" }, { "input": "grouchiness", "output": "⠛⠗⠳⠡⠊⠰⠎" }, { "input": "grouchiness's", "output": "⠛⠗⠳⠡⠊⠰⠎⠄⠎" }, { "input": "grouching", "output": "⠛⠗⠳⠡⠌" }, { "input": "grouchy", "output": "⠛⠗⠳⠡⠽" }, { "input": "ground", "output": "⠛⠗⠨⠙" }, { "input": "ground's", "output": "⠛⠗⠨⠙⠄⠎" }, { "input": "groundbreaking", "output": "⠛⠗⠨⠙⠃⠗⠂⠅⠌" }, { "input": "groundbreaking's", "output": "⠛⠗⠨⠙⠃⠗⠂⠅⠌⠄⠎" }, { "input": "groundbreakings", "output": "⠛⠗⠨⠙⠃⠗⠂⠅⠌⠎" }, { "input": "grounded", "output": "⠛⠗⠨⠙⠫" }, { "input": "grounder", "output": "⠛⠗⠨⠙⠻" }, { "input": "grounder's", "output": "⠛⠗⠨⠙⠻⠄⠎" }, { "input": "grounders", "output": "⠛⠗⠨⠙⠻⠎" }, { "input": "groundhog", "output": "⠛⠗⠨⠙⠓⠕⠛" }, { "input": "groundhog's", "output": "⠛⠗⠨⠙⠓⠕⠛⠄⠎" }, { "input": "groundhogs", "output": "⠛⠗⠨⠙⠓⠕⠛⠎" }, { "input": "grounding", "output": "⠛⠗⠨⠙⠌" }, { "input": "grounding's", "output": "⠛⠗⠨⠙⠌⠄⠎" }, { "input": "groundings", "output": "⠛⠗⠨⠙⠌⠎" }, { "input": "groundless", "output": "⠛⠗⠨⠙⠨⠎" }, { "input": "groundlessly", "output": "⠛⠗⠨⠙⠨⠎⠇⠽" }, { "input": "grounds", "output": "⠛⠗⠨⠙⠎" }, { "input": "groundswell", "output": "⠛⠗⠨⠙⠎⠺⠑⠇⠇" }, { "input": "groundswell's", "output": "⠛⠗⠨⠙⠎⠺⠑⠇⠇⠄⠎" }, { "input": "groundswells", "output": "⠛⠗⠨⠙⠎⠺⠑⠇⠇⠎" }, { "input": "groundwater's", "output": "⠛⠗⠨⠙⠺â â žâ »â „â Ž" }, { "input": "groundwork", "output": "⠛⠗⠨⠙â â º" }, { "input": "groundwork's", "output": "⠛⠗⠨⠙â â ºâ „â Ž" }, { "input": "group", "output": "⠛⠗⠳â " }, { "input": "group's", "output": "⠛⠗⠳â â „â Ž" }, { "input": "grouped", "output": "⠛⠗⠳â â «" }, { "input": "grouper", "output": "⠛⠗⠳â â »" }, { "input": "grouper's", "output": "⠛⠗⠳â â »â „â Ž" }, { "input": "groupers", "output": "⠛⠗⠳â â »â Ž" }, { "input": "groupie", "output": "⠛⠗⠳â â Šâ ‘" }, { "input": "groupie's", "output": "⠛⠗⠳â â Šâ ‘â „â Ž" }, { "input": "groupies", "output": "⠛⠗⠳â â Šâ ‘â Ž" }, { "input": "grouping", "output": "⠛⠗⠳â â Œ" }, { "input": "grouping's", "output": "⠛⠗⠳â â Œâ „â Ž" }, { "input": "groupings", "output": "⠛⠗⠳â â Œâ Ž" }, { "input": "groups", "output": "⠛⠗⠳â â Ž" }, { "input": "groupware", "output": "⠛⠗⠳â â ºâ œâ ‘" }, { "input": "groupware's", "output": "⠛⠗⠳â â ºâ œâ ‘â „â Ž" }, { "input": "grouse", "output": "⠛⠗⠳⠎⠑" }, { "input": "grouse's", "output": "⠛⠗⠳⠎⠑⠄⠎" }, { "input": "groused", "output": "⠛⠗⠳⠎⠫" }, { "input": "grouser", "output": "⠛⠗⠳⠎⠻" }, { "input": "grouser's", "output": "⠛⠗⠳⠎⠻⠄⠎" }, { "input": "grousers", "output": "⠛⠗⠳⠎⠻⠎" }, { "input": "grouses", "output": "⠛⠗⠳⠎⠑⠎" }, { "input": "grousing", "output": "⠛⠗⠳⠎⠌" }, { "input": "grout", "output": "⠛⠗⠳⠞" }, { "input": "grout's", "output": "⠛⠗⠳⠞⠄⠎" }, { "input": "grouted", "output": "⠛⠗⠳⠞⠫" }, { "input": "grouting", "output": "⠛⠗⠳⠞⠌" }, { "input": "grouts", "output": "⠛⠗⠳⠞⠎" }, { "input": "grove", "output": "⠛⠗⠕⠧⠑" }, { "input": "grove's", "output": "⠛⠗⠕⠧⠑⠄⠎" }, { "input": "grovel", "output": "⠛⠗⠕⠧⠑⠇" }, { "input": "groveled", "output": "⠛⠗⠕⠧⠑⠇⠫" }, { "input": "groveler", "output": "⠛⠗⠕⠧⠑⠇⠻" }, { "input": "groveler's", "output": "⠛⠗⠕⠧⠑⠇⠻⠄⠎" }, { "input": "grovelers", "output": "⠛⠗⠕⠧⠑⠇⠻⠎" }, { "input": "groveling", "output": "⠛⠗⠕⠧⠑⠇⠌" }, { "input": "grovels", "output": "⠛⠗⠕⠧⠑⠇⠎" }, { "input": "groves", "output": "⠛⠗⠕⠧⠑⠎" }, { "input": "grow", "output": "⠛⠗⠪" }, { "input": "grower", "output": "⠛⠗⠪⠻" }, { "input": "grower's", "output": "⠛⠗⠪⠻⠄⠎" }, { "input": "growers", "output": "⠛⠗⠪⠻⠎" }, { "input": "growing", "output": "⠛⠗⠪⠌" }, { "input": "growl", "output": "⠛⠗⠪⠇" }, { "input": "growl's", "output": "⠛⠗⠪⠇⠄⠎" }, { "input": "growled", "output": "⠛⠗⠪⠇⠫" }, { "input": "growler", "output": "⠛⠗⠪⠇⠻" }, { "input": "growler's", "output": "⠛⠗⠪⠇⠻⠄⠎" }, { "input": "growlers", "output": "⠛⠗⠪⠇⠻⠎" }, { "input": "growling", "output": "⠛⠗⠪⠇⠌" }, { "input": "growls", "output": "⠛⠗⠪⠇⠎" }, { "input": "grown", "output": "⠛⠗⠪â " }, { "input": "grownup", "output": "⠛⠗⠪â â ¥â " }, { "input": "grownup's", "output": "⠛⠗⠪â â ¥â â „â Ž" }, { "input": "grownups", "output": "⠛⠗⠪â â ¥â â Ž" }, { "input": "grows", "output": "⠛⠗⠪⠎" }, { "input": "growth", "output": "⠛⠗⠪⠹" }, { "input": "growth's", "output": "⠛⠗⠪⠹⠄⠎" }, { "input": "growths", "output": "⠛⠗⠪⠹⠎" }, { "input": "grub", "output": "⠛⠗⠥⠃" }, { "input": "grub's", "output": "⠛⠗⠥⠃⠄⠎" }, { "input": "grubbed", "output": "⠛⠗⠥⠆⠫" }, { "input": "grubber", "output": "⠛⠗⠥⠆⠻" }, { "input": "grubber's", "output": "⠛⠗⠥⠆⠻⠄⠎" }, { "input": "grubbers", "output": "⠛⠗⠥⠆⠻⠎" }, { "input": "grubbier", "output": "⠛⠗⠥⠆⠊⠻" }, { "input": "grubbiest", "output": "⠛⠗⠥⠆⠊⠑⠌" }, { "input": "grubbily", "output": "⠛⠗⠥⠆⠊⠇⠽" }, { "input": "grubbiness", "output": "⠛⠗⠥⠆⠊⠰⠎" }, { "input": "grubbiness's", "output": "⠛⠗⠥⠆⠊⠰⠎⠄⠎" }, { "input": "grubbing", "output": "⠛⠗⠥⠆⠌" }, { "input": "grubby", "output": "⠛⠗⠥⠆⠽" }, { "input": "grubs", "output": "⠛⠗⠥⠃⠎" }, { "input": "grubstake", "output": "⠛⠗⠥⠃⠌â â …â ‘" }, { "input": "grubstake's", "output": "⠛⠗⠥⠃⠌â â …â ‘â „â Ž" }, { "input": "grudge", "output": "⠛⠗⠥⠙⠛⠑" }, { "input": "grudge's", "output": "⠛⠗⠥⠙⠛⠑⠄⠎" }, { "input": "grudged", "output": "⠛⠗⠥⠙⠛⠫" }, { "input": "grudges", "output": "⠛⠗⠥⠙⠛⠑⠎" }, { "input": "grudging", "output": "⠛⠗⠥⠙⠛⠌" }, { "input": "grudgingly", "output": "⠛⠗⠥⠙⠛⠌⠇⠽" }, { "input": "gruel", "output": "⠛⠗⠥⠑⠇" }, { "input": "gruel's", "output": "⠛⠗⠥⠑⠇⠄⠎" }, { "input": "grueling", "output": "⠛⠗⠥⠑⠇⠌" }, { "input": "gruelingly", "output": "⠛⠗⠥⠑⠇⠌⠇⠽" }, { "input": "gruelings", "output": "⠛⠗⠥⠑⠇⠌⠎" }, { "input": "gruesome", "output": "⠛⠗⠥⠑â â Ž" }, { "input": "gruesomely", "output": "⠛⠗⠥⠑â â Žâ ‡â ½" }, { "input": "gruesomeness", "output": "⠛⠗⠥⠑â â Žâ °â Ž" }, { "input": "gruesomeness's", "output": "⠛⠗⠥⠑â â Žâ °â Žâ „â Ž" }, { "input": "gruesomer", "output": "⠛⠗⠥⠑â â Žâ —" }, { "input": "gruesomest", "output": "⠛⠗⠥⠑â â Žâ Œ" }, { "input": "gruff", "output": "⠛⠗⠥⠋⠋" }, { "input": "gruffer", "output": "⠛⠗⠥⠖⠻" }, { "input": "gruffest", "output": "⠛⠗⠥⠖⠑⠌" }, { "input": "gruffly", "output": "⠛⠗⠥⠖⠇⠽" }, { "input": "gruffness", "output": "⠛⠗⠥⠖⠰⠎" }, { "input": "gruffness's", "output": "⠛⠗⠥⠖⠰⠎⠄⠎" }, { "input": "grumble", "output": "⠛⠗⠥â â ¼" }, { "input": "grumble's", "output": "⠛⠗⠥â â ¼â „â Ž" }, { "input": "grumbled", "output": "⠛⠗⠥â â ¼â ™" }, { "input": "grumbler", "output": "⠛⠗⠥â â ¼â —" }, { "input": "grumbler's", "output": "⠛⠗⠥â â ¼â —â „â Ž" }, { "input": "grumblers", "output": "⠛⠗⠥â â ¼â —â Ž" }, { "input": "grumbles", "output": "⠛⠗⠥â â ¼â Ž" }, { "input": "grumbling", "output": "⠛⠗⠥â â ƒâ ‡â Œ" }, { "input": "grumpier", "output": "⠛⠗⠥â â â Šâ »" }, { "input": "grumpiest", "output": "⠛⠗⠥â â â Šâ ‘â Œ" }, { "input": "grumpily", "output": "⠛⠗⠥â â â Šâ ‡â ½" }, { "input": "grumpiness", "output": "⠛⠗⠥â â â Šâ °â Ž" }, { "input": "grumpiness's", "output": "⠛⠗⠥â â â Šâ °â Žâ „â Ž" }, { "input": "grumpy", "output": "⠛⠗⠥â â â ½" }, { "input": "grunge", "output": "⠛⠗⠥â â ›â ‘" }, { "input": "grunge's", "output": "⠛⠗⠥â â ›â ‘â „â Ž" }, { "input": "grungier", "output": "⠛⠗⠥â â ›â Šâ »" }, { "input": "grungiest", "output": "⠛⠗⠥â â ›â Šâ ‘â Œ" }, { "input": "grungy", "output": "⠛⠗⠥â â ›â ½" }, { "input": "grunion", "output": "⠛⠗⠥â â Šâ •â " }, { "input": "grunion's", "output": "⠛⠗⠥â â Šâ •â â „â Ž" }, { "input": "grunions", "output": "⠛⠗⠥â â Šâ •â â Ž" }, { "input": "grunt", "output": "⠛⠗⠥â â ž" }, { "input": "grunt's", "output": "⠛⠗⠥â â žâ „â Ž" }, { "input": "grunted", "output": "⠛⠗⠥â â žâ «" }, { "input": "grunting", "output": "⠛⠗⠥â â žâ Œ" }, { "input": "grunts", "output": "⠛⠗⠥â â žâ Ž" }, { "input": "gs", "output": "⠛⠎" }, { "input": "guacamole", "output": "⠛⠥â â ‰â â â •⠇⠑" }, { "input": "guacamole's", "output": "⠛⠥â â ‰â â â •⠇⠑⠄⠎" }, { "input": "guanine", "output": "⠛⠥â â â ”â ‘" }, { "input": "guanine's", "output": "⠛⠥â â â ”â ‘â „â Ž" }, { "input": "guano", "output": "⠛⠥â â â •" }, { "input": "guano's", "output": "⠛⠥â â â •â „â Ž" }, { "input": "guarani", "output": "⠛⠥⠜â â â Š" }, { "input": "guarani's", "output": "⠛⠥⠜â â â Šâ „â Ž" }, { "input": "guaranis", "output": "⠛⠥⠜â â â Šâ Ž" }, { "input": "guarantee", "output": "⠛⠥⠜â â â žâ ‘â ‘" }, { "input": "guarantee's", "output": "⠛⠥⠜â â â žâ ‘â ‘â „â Ž" }, { "input": "guaranteed", "output": "⠛⠥⠜â â â žâ ‘â «" }, { "input": "guaranteeing", "output": "⠛⠥⠜â â â žâ ‘â ‘â Œ" }, { "input": "guarantees", "output": "⠛⠥⠜â â â žâ ‘â ‘â Ž" }, { "input": "guarantied", "output": "⠛⠥⠜â â â žâ Šâ «" }, { "input": "guaranties", "output": "⠛⠥⠜â â â žâ Šâ ‘â Ž" }, { "input": "guarantor", "output": "⠛⠥⠜â â â žâ •â —" }, { "input": "guarantor's", "output": "⠛⠥⠜â â â žâ •â —â „â Ž" }, { "input": "guarantors", "output": "⠛⠥⠜â â â žâ •â —â Ž" }, { "input": "guaranty", "output": "⠛⠥⠜â â â žâ ½" }, { "input": "guaranty's", "output": "⠛⠥⠜â â â žâ ½â „â Ž" }, { "input": "guarantying", "output": "⠛⠥⠜â â â žâ ½â Œ" }, { "input": "guard", "output": "⠛⠥⠜⠙" }, { "input": "guard's", "output": "⠛⠥⠜⠙⠄⠎" }, { "input": "guarded", "output": "⠛⠥⠜⠙⠫" }, { "input": "guardedly", "output": "⠛⠥⠜⠙⠫⠇⠽" }, { "input": "guarder", "output": "⠛⠥⠜⠙⠻" }, { "input": "guarder's", "output": "⠛⠥⠜⠙⠻⠄⠎" }, { "input": "guarders", "output": "⠛⠥⠜⠙⠻⠎" }, { "input": "guardhouse", "output": "⠛⠥⠜⠙⠓⠳⠎⠑" }, { "input": "guardhouse's", "output": "⠛⠥⠜⠙⠓⠳⠎⠑⠄⠎" }, { "input": "guardhouses", "output": "⠛⠥⠜⠙⠓⠳⠎⠑⠎" }, { "input": "guardian", "output": "⠛⠥⠜⠙⠊â â " }, { "input": "guardian's", "output": "⠛⠥⠜⠙⠊â â â „â Ž" }, { "input": "guardians", "output": "⠛⠥⠜⠙⠊â â â Ž" }, { "input": "guardianship", "output": "⠛⠥⠜⠙⠊â â â ©â Šâ " }, { "input": "guardianship's", "output": "⠛⠥⠜⠙⠊â â â ©â Šâ â „â Ž" }, { "input": "guarding", "output": "⠛⠥⠜⠙⠌" }, { "input": "guardrail", "output": "⠛⠥⠜⠙⠗â â Šâ ‡" }, { "input": "guardrail's", "output": "⠛⠥⠜⠙⠗â â Šâ ‡â „â Ž" }, { "input": "guardrails", "output": "⠛⠥⠜⠙⠗â â Šâ ‡â Ž" }, { "input": "guardroom", "output": "⠛⠥⠜⠙⠗⠕⠕â " }, { "input": "guardroom's", "output": "⠛⠥⠜⠙⠗⠕⠕â â „â Ž" }, { "input": "guardrooms", "output": "⠛⠥⠜⠙⠗⠕⠕â â Ž" }, { "input": "guards", "output": "⠛⠥⠜⠙⠎" }, { "input": "guardsman", "output": "⠛⠥⠜⠙⠎â â â " }, { "input": "guardsman's", "output": "⠛⠥⠜⠙⠎â â â â „â Ž" }, { "input": "guardsmen", "output": "⠛⠥⠜⠙⠎â â ¢" }, { "input": "guava", "output": "⠛⠥â â §â " }, { "input": "guava's", "output": "⠛⠥â â §â â „â Ž" }, { "input": "guavas", "output": "⠛⠥â â §â â Ž" }, { "input": "gubernatorial", "output": "⠛⠥⠃⠻â â â žâ •â —â Šâ â ‡" }, { "input": "guerrilla", "output": "⠛⠥⠻⠗⠊⠇⠇â " }, { "input": "guerrilla's", "output": "⠛⠥⠻⠗⠊⠇⠇â â „â Ž" }, { "input": "guerrillas", "output": "⠛⠥⠻⠗⠊⠇⠇â â Ž" }, { "input": "guess", "output": "⠛⠥⠑⠎⠎" }, { "input": "guess's", "output": "⠛⠥⠑⠎⠎⠄⠎" }, { "input": "guessable", "output": "⠛⠥⠑⠎⠎â â ¼" }, { "input": "guessed", "output": "⠛⠥⠑⠎⠎⠫" }, { "input": "guesser", "output": "⠛⠥⠑⠎⠎⠻" }, { "input": "guesser's", "output": "⠛⠥⠑⠎⠎⠻⠄⠎" }, { "input": "guessers", "output": "⠛⠥⠑⠎⠎⠻⠎" }, { "input": "guesses", "output": "⠛⠥⠑⠎⠎⠑⠎" }, { "input": "guessing", "output": "⠛⠥⠑⠎⠎⠌" }, { "input": "guesstimate", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ ‘" }, { "input": "guesstimate's", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ ‘â „â Ž" }, { "input": "guesstimated", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ «" }, { "input": "guesstimates", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ ‘â Ž" }, { "input": "guesstimating", "output": "⠛⠥⠑⠎⠎⠞⠊â â â žâ Œ" }, { "input": "guesswork", "output": "⠛⠥⠑⠎⠎â â º" }, { "input": "guesswork's", "output": "⠛⠥⠑⠎⠎â â ºâ „â Ž" }, { "input": "guest", "output": "⠛⠥⠑⠌" }, { "input": "guest's", "output": "⠛⠥⠑⠌⠄⠎" }, { "input": "guested", "output": "⠛⠥⠑⠌⠫" }, { "input": "guesting", "output": "⠛⠥⠑⠌⠌" }, { "input": "guests", "output": "⠛⠥⠑⠌⠎" }, { "input": "guff", "output": "⠛⠥⠋⠋" }, { "input": "guff's", "output": "⠛⠥⠋⠋⠄⠎" }, { "input": "guffaw", "output": "⠛⠥⠖â â º" }, { "input": "guffaw's", "output": "⠛⠥⠖â â ºâ „â Ž" }, { "input": "guffawed", "output": "⠛⠥⠖â â ºâ «" }, { "input": "guffawing", "output": "⠛⠥⠖â â ºâ Œ" }, { "input": "guffaws", "output": "⠛⠥⠖â â ºâ Ž" }, { "input": "guidance", "output": "⠛⠥⠊⠙⠨⠑" }, { "input": "guidance's", "output": "⠛⠥⠊⠙⠨⠑⠄⠎" }, { "input": "guide", "output": "⠛⠥⠊⠙⠑" }, { "input": "guide's", "output": "⠛⠥⠊⠙⠑⠄⠎" }, { "input": "guidebook", "output": "⠛⠥⠊⠙⠑⠃⠕⠕⠅" }, { "input": "guidebook's", "output": "⠛⠥⠊⠙⠑⠃⠕⠕⠅⠄⠎" }, { "input": "guidebooks", "output": "⠛⠥⠊⠙⠑⠃⠕⠕⠅⠎" }, { "input": "guided", "output": "⠛⠥⠊⠙⠫" }, { "input": "guideline", "output": "⠛⠥⠊⠙⠑⠇⠔⠑" }, { "input": "guideline's", "output": "⠛⠥⠊⠙⠑⠇⠔⠑⠄⠎" }, { "input": "guidelines", "output": "⠛⠥⠊⠙⠑⠇⠔⠑⠎" }, { "input": "guidepost", "output": "⠛⠥⠊⠙⠑â â •â Œ" }, { "input": "guidepost's", "output": "⠛⠥⠊⠙⠑â â •⠌⠄⠎" }, { "input": "guideposts", "output": "⠛⠥⠊⠙⠑â â •⠌⠎" }, { "input": "guider", "output": "⠛⠥⠊⠙⠻" }, { "input": "guider's", "output": "⠛⠥⠊⠙⠻⠄⠎" }, { "input": "guiders", "output": "⠛⠥⠊⠙⠻⠎" }, { "input": "guides", "output": "⠛⠥⠊⠙⠑⠎" }, { "input": "guiding", "output": "⠛⠥⠊⠙⠌" }, { "input": "guild", "output": "⠛⠥⠊⠇⠙" }, { "input": "guild's", "output": "⠛⠥⠊⠇⠙⠄⠎" }, { "input": "guilder", "output": "⠛⠥⠊⠇⠙⠻" }, { "input": "guilder's", "output": "⠛⠥⠊⠇⠙⠻⠄⠎" }, { "input": "guilders", "output": "⠛⠥⠊⠇⠙⠻⠎" }, { "input": "guilds", "output": "⠛⠥⠊⠇⠙⠎" }, { "input": "guile", "output": "⠛⠥⠊⠇⠑" }, { "input": "guile's", "output": "⠛⠥⠊⠇⠑⠄⠎" }, { "input": "guileful", "output": "⠛⠥⠊⠇⠑⠰⠇" }, { "input": "guileless", "output": "⠛⠥⠊⠇⠑⠨⠎" }, { "input": "guilelessness", "output": "⠛⠥⠊⠇⠑⠨⠎⠰⠎" }, { "input": "guilelessness's", "output": "⠛⠥⠊⠇⠑⠨⠎⠰⠎⠄⠎" }, { "input": "guillotine", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠑" }, { "input": "guillotine's", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠑⠄⠎" }, { "input": "guillotined", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠫" }, { "input": "guillotines", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠑⠎" }, { "input": "guillotining", "output": "⠛⠥⠊⠇⠇⠕⠞⠔⠌" }, { "input": "guilt", "output": "⠛⠥⠊⠇⠞" }, { "input": "guilt's", "output": "⠛⠥⠊⠇⠞⠄⠎" }, { "input": "guiltier", "output": "⠛⠥⠊⠇⠞⠊⠻" }, { "input": "guiltiest", "output": "⠛⠥⠊⠇⠞⠊⠑⠌" }, { "input": "guiltily", "output": "⠛⠥⠊⠇⠞⠊⠇⠽" }, { "input": "guiltiness", "output": "⠛⠥⠊⠇⠞⠊⠰⠎" }, { "input": "guiltiness's", "output": "⠛⠥⠊⠇⠞⠊⠰⠎⠄⠎" }, { "input": "guiltless", "output": "⠛⠥⠊⠇⠞⠨⠎" }, { "input": "guilty", "output": "⠛⠥⠊⠇⠞⠽" }, { "input": "guinea", "output": "⠛⠥⠔⠑â " }, { "input": "guinea's", "output": "⠛⠥⠔⠑â â „â Ž" }, { "input": "guineas", "output": "⠛⠥⠔⠂⠎" }, { "input": "guise", "output": "⠛⠥⠊⠎⠑" }, { "input": "guise's", "output": "⠛⠥⠊⠎⠑⠄⠎" }, { "input": "guises", "output": "⠛⠥⠊⠎⠑⠎" }, { "input": "guitar", "output": "⠛⠥⠊⠞⠜" }, { "input": "guitar's", "output": "⠛⠥⠊⠞⠜⠄⠎" }, { "input": "guitarist", "output": "⠛⠥⠊⠞⠜⠊⠌" }, { "input": "guitarist's", "output": "⠛⠥⠊⠞⠜⠊⠌⠄⠎" }, { "input": "guitarists", "output": "⠛⠥⠊⠞⠜⠊⠌⠎" }, { "input": "guitars", "output": "⠛⠥⠊⠞⠜⠎" }, { "input": "gulag", "output": "⠛⠥⠇â â ›" }, { "input": "gulag's", "output": "⠛⠥⠇â â ›â „â Ž" }, { "input": "gulags", "output": "⠛⠥⠇â â ›â Ž" }, { "input": "gulch", "output": "⠛⠥⠇⠡" }, { "input": "gulch's", "output": "⠛⠥⠇⠡⠄⠎" }, { "input": "gulches", "output": "⠛⠥⠇⠡⠑⠎" }, { "input": "gulden", "output": "⠛⠥⠇⠙⠢" }, { "input": "gulden's", "output": "⠛⠥⠇⠙⠢⠄⠎" }, { "input": "guldens", "output": "⠛⠥⠇⠙⠢⠎" }, { "input": "gulf", "output": "⠛⠥⠇⠋" }, { "input": "gulf's", "output": "⠛⠥⠇⠋⠄⠎" }, { "input": "gulfs", "output": "⠛⠥⠇⠋⠎" }, { "input": "gull", "output": "⠛⠥⠇⠇" }, { "input": "gull's", "output": "⠛⠥⠇⠇⠄⠎" }, { "input": "gulled", "output": "⠛⠥⠇⠇⠫" }, { "input": "gullet", "output": "⠛⠥⠇⠇⠑⠞" }, { "input": "gullet's", "output": "⠛⠥⠇⠇⠑⠞⠄⠎" }, { "input": "gullets", "output": "⠛⠥⠇⠇⠑⠞⠎" }, { "input": "gullibility", "output": "⠛⠥⠇⠇⠊⠃⠊⠇⠰⠽" }, { "input": "gullibility's", "output": "⠛⠥⠇⠇⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "gullible", "output": "⠛⠥⠇⠇⠊⠼" }, { "input": "gullies", "output": "⠛⠥⠇⠇⠊⠑⠎" }, { "input": "gulling", "output": "⠛⠥⠇⠇⠌" }, { "input": "gulls", "output": "⠛⠥⠇⠇⠎" }, { "input": "gully", "output": "⠛⠥⠇⠇⠽" }, { "input": "gully's", "output": "⠛⠥⠇⠇⠽⠄⠎" }, { "input": "gulp", "output": "⠛⠥⠇â " }, { "input": "gulp's", "output": "⠛⠥⠇â â „â Ž" }, { "input": "gulped", "output": "⠛⠥⠇â â «" }, { "input": "gulper", "output": "⠛⠥⠇â â »" }, { "input": "gulper's", "output": "⠛⠥⠇â â »â „â Ž" }, { "input": "gulpers", "output": "⠛⠥⠇â â »â Ž" }, { "input": "gulping", "output": "⠛⠥⠇â â Œ" }, { "input": "gulps", "output": "⠛⠥⠇â â Ž" }, { "input": "gum", "output": "⠛⠥â " }, { "input": "gum's", "output": "⠛⠥â â „â Ž" }, { "input": "gumbo", "output": "⠛⠥â â ƒâ •" }, { "input": "gumbo's", "output": "⠛⠥â â ƒâ •â „â Ž" }, { "input": "gumboil", "output": "⠛⠥â â ƒâ •â Šâ ‡" }, { "input": "gumboil's", "output": "⠛⠥â â ƒâ •⠊⠇⠄⠎" }, { "input": "gumboils", "output": "⠛⠥â â ƒâ •⠊⠇⠎" }, { "input": "gumbos", "output": "⠛⠥â â ƒâ •â Ž" }, { "input": "gumdrop", "output": "⠛⠥â â ™â —â •â " }, { "input": "gumdrop's", "output": "⠛⠥â â ™â —â •â â „â Ž" }, { "input": "gumdrops", "output": "⠛⠥â â ™â —â •â â Ž" }, { "input": "gummed", "output": "⠛⠥â â â «" }, { "input": "gummier", "output": "⠛⠥â â â Šâ »" }, { "input": "gummiest", "output": "⠛⠥â â â Šâ ‘â Œ" }, { "input": "gumming", "output": "⠛⠥â â â Œ" }, { "input": "gummy", "output": "⠛⠥â â â ½" }, { "input": "gumption", "output": "⠛⠥â â â °â " }, { "input": "gumption's", "output": "⠛⠥â â â °â â „â Ž" }, { "input": "gums", "output": "⠛⠥â â Ž" }, { "input": "gumshoed", "output": "⠛⠥â â ©â •â «" }, { "input": "gumshoeing", "output": "⠛⠥â â ©â •â ‘â Œ" }, { "input": "gun", "output": "⠛⠥â " }, { "input": "gun's", "output": "⠛⠥â â „â Ž" }, { "input": "gunboat", "output": "⠛⠥â â ƒâ •â â ž" }, { "input": "gunboat's", "output": "⠛⠥â â ƒâ •â â žâ „â Ž" }, { "input": "gunboats", "output": "⠛⠥â â ƒâ •â â žâ Ž" }, { "input": "gunfight", "output": "⠛⠥â â ‹â Šâ £â ž" }, { "input": "gunfight's", "output": "⠛⠥â â ‹â Šâ £â žâ „â Ž" }, { "input": "gunfights", "output": "⠛⠥â â ‹â Šâ £â žâ Ž" }, { "input": "gunfire", "output": "⠛⠥â â ‹â Šâ —â ‘" }, { "input": "gunfire's", "output": "⠛⠥â â ‹â Šâ —â ‘â „â Ž" }, { "input": "gunk", "output": "⠛⠥â â …" }, { "input": "gunk's", "output": "⠛⠥â â …â „â Ž" }, { "input": "gunkier", "output": "⠛⠥â â …â Šâ »" }, { "input": "gunkiest", "output": "⠛⠥â â …â Šâ ‘â Œ" }, { "input": "gunky", "output": "⠛⠥â â …â ½" }, { "input": "gunman", "output": "⠛⠥â â â â " }, { "input": "gunman's", "output": "⠛⠥â â â â â „â Ž" }, { "input": "gunmen", "output": "⠛⠥â â â ¢" }, { "input": "gunmetal's", "output": "⠛⠥â â â ‘â žâ â ‡â „â Ž" }, { "input": "gunned", "output": "⠛⠥â â â «" }, { "input": "gunner", "output": "⠛⠥â â â »" }, { "input": "gunner's", "output": "⠛⠥â â â »â „â Ž" }, { "input": "gunners", "output": "⠛⠥â â â »â Ž" }, { "input": "gunnery", "output": "⠛⠥â â â »â ½" }, { "input": "gunnery's", "output": "⠛⠥â â â »â ½â „â Ž" }, { "input": "gunning", "output": "⠛⠥â â â Œ" }, { "input": "gunny", "output": "⠛⠥â â â ½" }, { "input": "gunny's", "output": "⠛⠥â â â ½â „â Ž" }, { "input": "gunnysack", "output": "⠛⠥â â â ½â Žâ â ‰â …" }, { "input": "gunnysack's", "output": "⠛⠥â â â ½â Žâ â ‰â …â „â Ž" }, { "input": "gunnysacks", "output": "⠛⠥â â â ½â Žâ â ‰â …â Ž" }, { "input": "gunpoint", "output": "⠛⠥â â â •⠔⠞" }, { "input": "gunpoint's", "output": "⠛⠥â â â •⠔⠞⠄⠎" }, { "input": "gunpowder", "output": "⠛⠥â â â ªâ ™â »" }, { "input": "gunpowder's", "output": "⠛⠥â â â ªâ ™â »â „â Ž" }, { "input": "gunrunner", "output": "⠛⠥â â —â ¥â â â »" }, { "input": "gunrunner's", "output": "⠛⠥â â —â ¥â â â »â „â Ž" }, { "input": "gunrunners", "output": "⠛⠥â â —â ¥â â â »â Ž" }, { "input": "gunrunning", "output": "⠛⠥â â —â ¥â â â Œ" }, { "input": "gunrunning's", "output": "⠛⠥â â —â ¥â â â Œâ „â Ž" }, { "input": "guns", "output": "⠛⠥â â Ž" }, { "input": "gunship", "output": "⠛⠥â â ©â Šâ " }, { "input": "gunship's", "output": "⠛⠥â â ©â Šâ â „â Ž" }, { "input": "gunships", "output": "⠛⠥â â ©â Šâ â Ž" }, { "input": "gunshot", "output": "⠛⠥â â ©â •â ž" }, { "input": "gunshot's", "output": "⠛⠥â â ©â •â žâ „â Ž" }, { "input": "gunshots", "output": "⠛⠥â â ©â •â žâ Ž" }, { "input": "gunslinger", "output": "⠛⠥â â Žâ ‡â Œâ »" }, { "input": "gunslinger's", "output": "⠛⠥â â Žâ ‡â Œâ »â „â Ž" }, { "input": "gunslingers", "output": "⠛⠥â â Žâ ‡â Œâ »â Ž" }, { "input": "gunsmith", "output": "⠛⠥â â Žâ â Šâ ¹" }, { "input": "gunsmith's", "output": "⠛⠥â â Žâ â Šâ ¹â „â Ž" }, { "input": "gunsmiths", "output": "⠛⠥â â Žâ â Šâ ¹â Ž" }, { "input": "gunwale", "output": "⠛⠥â â ºâ â ‡â ‘" }, { "input": "gunwale's", "output": "⠛⠥â â ºâ â ‡â ‘â „â Ž" }, { "input": "gunwales", "output": "⠛⠥â â ºâ â ‡â ‘â Ž" }, { "input": "guppies", "output": "⠛⠥â â â Šâ ‘â Ž" }, { "input": "guppy", "output": "⠛⠥â â â ½" }, { "input": "guppy's", "output": "⠛⠥â â â ½â „â Ž" }, { "input": "gurgle", "output": "⠛⠥⠗⠛⠇⠑" }, { "input": "gurgle's", "output": "⠛⠥⠗⠛⠇⠑⠄⠎" }, { "input": "gurgled", "output": "⠛⠥⠗⠛⠇⠫" }, { "input": "gurgles", "output": "⠛⠥⠗⠛⠇⠑⠎" }, { "input": "gurgling", "output": "⠛⠥⠗⠛⠇⠌" }, { "input": "gurney", "output": "⠛⠥⠗â â ‘â ½" }, { "input": "gurney's", "output": "⠛⠥⠗â â ‘⠽⠄⠎" }, { "input": "gurneys", "output": "⠛⠥⠗â â ‘⠽⠎" }, { "input": "guru", "output": "⠛⠥⠗⠥" }, { "input": "guru's", "output": "⠛⠥⠗⠥⠄⠎" }, { "input": "gurus", "output": "⠛⠥⠗⠥⠎" }, { "input": "gush", "output": "⠛⠥⠩" }, { "input": "gush's", "output": "⠛⠥⠩⠄⠎" }, { "input": "gushed", "output": "⠛⠥⠩⠫" }, { "input": "gusher", "output": "⠛⠥⠩⠻" }, { "input": "gusher's", "output": "⠛⠥⠩⠻⠄⠎" }, { "input": "gushers", "output": "⠛⠥⠩⠻⠎" }, { "input": "gushes", "output": "⠛⠥⠩⠑⠎" }, { "input": "gushier", "output": "⠛⠥⠩⠊⠻" }, { "input": "gushiest", "output": "⠛⠥⠩⠊⠑⠌" }, { "input": "gushing", "output": "⠛⠥⠩⠌" }, { "input": "gushy", "output": "⠛⠥⠩⠽" }, { "input": "gusset", "output": "⠛⠥⠎⠎⠑⠞" }, { "input": "gusset's", "output": "⠛⠥⠎⠎⠑⠞⠄⠎" }, { "input": "gusseted", "output": "⠛⠥⠎⠎⠑⠞⠫" }, { "input": "gusseting", "output": "⠛⠥⠎⠎⠑⠞⠌" }, { "input": "gussets", "output": "⠛⠥⠎⠎⠑⠞⠎" }, { "input": "gussied", "output": "⠛⠥⠎⠎⠊⠫" }, { "input": "gussies", "output": "⠛⠥⠎⠎⠊⠑⠎" }, { "input": "gussy", "output": "⠛⠥⠎⠎⠽" }, { "input": "gussying", "output": "⠛⠥⠎⠎⠽⠌" }, { "input": "gust", "output": "⠛⠥⠌" }, { "input": "gust's", "output": "⠛⠥⠌⠄⠎" }, { "input": "gustatory", "output": "⠛⠥⠌â â žâ •â —â ½" }, { "input": "gusted", "output": "⠛⠥⠌⠫" }, { "input": "gustier", "output": "⠛⠥⠌⠊⠻" }, { "input": "gustiest", "output": "⠛⠥⠌⠊⠑⠌" }, { "input": "gustily", "output": "⠛⠥⠌⠊⠇⠽" }, { "input": "gusting", "output": "⠛⠥⠌⠌" }, { "input": "gusto", "output": "⠛⠥⠌⠕" }, { "input": "gusto's", "output": "⠛⠥⠌⠕⠄⠎" }, { "input": "gusts", "output": "⠛⠥⠌⠎" }, { "input": "gusty", "output": "⠛⠥⠌⠽" }, { "input": "gut", "output": "⠛⠥⠞" }, { "input": "gut's", "output": "⠛⠥⠞⠄⠎" }, { "input": "gutless", "output": "⠛⠥⠞⠨⠎" }, { "input": "gutlessness", "output": "⠛⠥⠞⠨⠎⠰⠎" }, { "input": "gutlessness's", "output": "⠛⠥⠞⠨⠎⠰⠎⠄⠎" }, { "input": "guts", "output": "⠛⠥⠞⠎" }, { "input": "gutsier", "output": "⠛⠥⠞⠎⠊⠻" }, { "input": "gutsiest", "output": "⠛⠥⠞⠎⠊⠑⠌" }, { "input": "gutsy", "output": "⠛⠥⠞⠎⠽" }, { "input": "gutted", "output": "⠛⠥⠞⠞⠫" }, { "input": "gutter", "output": "⠛⠥⠞⠞⠻" }, { "input": "gutter's", "output": "⠛⠥⠞⠞⠻⠄⠎" }, { "input": "guttered", "output": "⠛⠥⠞⠞⠻⠫" }, { "input": "guttering", "output": "⠛⠥⠞⠞⠻⠌" }, { "input": "gutters", "output": "⠛⠥⠞⠞⠻⠎" }, { "input": "guttersnipe", "output": "⠛⠥⠞⠞⠻⠎â â Šâ â ‘" }, { "input": "guttersnipe's", "output": "⠛⠥⠞⠞⠻⠎â â Šâ â ‘â „â Ž" }, { "input": "guttersnipes", "output": "⠛⠥⠞⠞⠻⠎â â Šâ â ‘â Ž" }, { "input": "guttier", "output": "⠛⠥⠞⠞⠊⠻" }, { "input": "guttiest", "output": "⠛⠥⠞⠞⠊⠑⠌" }, { "input": "gutting", "output": "⠛⠥⠞⠞⠌" }, { "input": "guttural", "output": "⠛⠥⠞⠞⠥⠗â â ‡" }, { "input": "guttural's", "output": "⠛⠥⠞⠞⠥⠗â â ‡â „â Ž" }, { "input": "gutturals", "output": "⠛⠥⠞⠞⠥⠗â â ‡â Ž" }, { "input": "gutty", "output": "⠛⠥⠞⠞⠽" }, { "input": "guy", "output": "⠛⠥⠽" }, { "input": "guy's", "output": "⠛⠥⠽⠄⠎" }, { "input": "guyed", "output": "⠛⠥⠽⠫" }, { "input": "guying", "output": "⠛⠥⠽⠌" }, { "input": "guys", "output": "⠛⠥⠽⠎" }, { "input": "guzzle", "output": "⠛⠥⠵⠵⠇⠑" }, { "input": "guzzled", "output": "⠛⠥⠵⠵⠇⠫" }, { "input": "guzzler", "output": "⠛⠥⠵⠵⠇⠻" }, { "input": "guzzler's", "output": "⠛⠥⠵⠵⠇⠻⠄⠎" }, { "input": "guzzlers", "output": "⠛⠥⠵⠵⠇⠻⠎" }, { "input": "guzzles", "output": "⠛⠥⠵⠵⠇⠑⠎" }, { "input": "guzzling", "output": "⠛⠥⠵⠵⠇⠌" }, { "input": "gym", "output": "⠛⠽â " }, { "input": "gym's", "output": "⠛⠽â â „â Ž" }, { "input": "gymnasium", "output": "⠛⠽â â â â Žâ Šâ ¥â " }, { "input": "gymnasium's", "output": "⠛⠽â â â â Žâ Šâ ¥â â „â Ž" }, { "input": "gymnasiums", "output": "⠛⠽â â â â Žâ Šâ ¥â â Ž" }, { "input": "gymnast", "output": "⠛⠽â â â â Œ" }, { "input": "gymnast's", "output": "⠛⠽â â â â Œâ „â Ž" }, { "input": "gymnastic", "output": "⠛⠽â â â â Œâ Šâ ‰" }, { "input": "gymnastically", "output": "⠛⠽â â â â Œâ Šâ ‰â  â ½" }, { "input": "gymnastics", "output": "⠛⠽â â â â Œâ Šâ ‰â Ž" }, { "input": "gymnastics's", "output": "⠛⠽â â â â Œâ Šâ ‰â Žâ „â Ž" }, { "input": "gymnasts", "output": "⠛⠽â â â â Œâ Ž" }, { "input": "gymnosperm", "output": "⠛⠽â â â •â Žâ â »â " }, { "input": "gymnosperm's", "output": "⠛⠽â â â •â Žâ â »â â „â Ž" }, { "input": "gymnosperms", "output": "⠛⠽â â â •â Žâ â »â â Ž" }, { "input": "gyms", "output": "⠛⠽â â Ž" }, { "input": "gynecologic", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠉" }, { "input": "gynecological", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "gynecologist", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠌" }, { "input": "gynecologist's", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "gynecologists", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠊⠌⠎" }, { "input": "gynecology", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠽" }, { "input": "gynecology's", "output": "⠛⠽â â ‘⠉⠕⠇⠕⠛⠽⠄⠎" }, { "input": "gyp", "output": "⠛⠽â " }, { "input": "gyp's", "output": "⠛⠽â â „â Ž" }, { "input": "gypped", "output": "⠛⠽â â â «" }, { "input": "gypper", "output": "⠛⠽â â â »" }, { "input": "gypper's", "output": "⠛⠽â â â »â „â Ž" }, { "input": "gyppers", "output": "⠛⠽â â â »â Ž" }, { "input": "gypping", "output": "⠛⠽â â â Œ" }, { "input": "gyps", "output": "⠛⠽â â Ž" }, { "input": "gypsies", "output": "⠛⠽â â Žâ Šâ ‘â Ž" }, { "input": "gypster", "output": "⠛⠽â â Œâ »" }, { "input": "gypster's", "output": "⠛⠽â â Œâ »â „â Ž" }, { "input": "gypsters", "output": "⠛⠽â â Œâ »â Ž" }, { "input": "gypsum", "output": "⠛⠽â â Žâ ¥â " }, { "input": "gypsum's", "output": "⠛⠽â â Žâ ¥â â „â Ž" }, { "input": "gypsy", "output": "⠛⠽â â Žâ ½" }, { "input": "gypsy's", "output": "⠛⠽â â Žâ ½â „â Ž" }, { "input": "gyrate", "output": "⠛⠽⠗â â žâ ‘" }, { "input": "gyrated", "output": "⠛⠽⠗â â žâ «" }, { "input": "gyrates", "output": "⠛⠽⠗â â žâ ‘â Ž" }, { "input": "gyrating", "output": "⠛⠽⠗â â žâ Œ" }, { "input": "gyration", "output": "⠛⠽⠗⠠â " }, { "input": "gyration's", "output": "⠛⠽⠗⠠â â „â Ž" }, { "input": "gyrations", "output": "⠛⠽⠗⠠â â Ž" }, { "input": "gyrator", "output": "⠛⠽⠗â â žâ •â —" }, { "input": "gyrator's", "output": "⠛⠽⠗â â žâ •â —â „â Ž" }, { "input": "gyrators", "output": "⠛⠽⠗â â žâ •â —â Ž" }, { "input": "gyrfalcon", "output": "⠛⠽⠗⠋â â ‡â ‰â •â " }, { "input": "gyrfalcon's", "output": "⠛⠽⠗⠋â â ‡â ‰â •â â „â Ž" }, { "input": "gyrfalcons", "output": "⠛⠽⠗⠋â â ‡â ‰â •â â Ž" }, { "input": "gyro", "output": "⠛⠽⠗⠕" }, { "input": "gyro's", "output": "⠛⠽⠗⠕⠄⠎" }, { "input": "gyros", "output": "⠛⠽⠗⠕⠎" }, { "input": "gyroscope", "output": "⠛⠽⠗⠕⠎⠉⠕â â ‘" }, { "input": "gyroscope's", "output": "⠛⠽⠗⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "gyroscopes", "output": "⠛⠽⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "gyve", "output": "⠛⠽⠧⠑" }, { "input": "gyve's", "output": "⠛⠽⠧⠑⠄⠎" }, { "input": "gyved", "output": "⠛⠽⠧⠫" }, { "input": "gyves", "output": "⠛⠽⠧⠑⠎" }, { "input": "gyving", "output": "⠛⠽⠧⠌" }, { "input": "h", "output": "â °â “" }, { "input": "ha", "output": "â “â " }, { "input": "haberdasher", "output": "â “â â ƒâ »â ™â â ©â »" }, { "input": "haberdasher's", "output": "â “â â ƒâ »â ™â â ©â »â „â Ž" }, { "input": "haberdasheries", "output": "â “â â ƒâ »â ™â â ©â »â Šâ ‘â Ž" }, { "input": "haberdashers", "output": "â “â â ƒâ »â ™â â ©â »â Ž" }, { "input": "haberdashery", "output": "â “â â ƒâ »â ™â â ©â »â ½" }, { "input": "haberdashery's", "output": "â “â â ƒâ »â ™â â ©â »â ½â „â Ž" }, { "input": "habiliment", "output": "â “â â ƒâ Šâ ‡â Šâ °â ž" }, { "input": "habiliment's", "output": "â “â â ƒâ Šâ ‡â Šâ °â žâ „â Ž" }, { "input": "habiliments", "output": "â “â â ƒâ Šâ ‡â Šâ °â žâ Ž" }, { "input": "habit", "output": "â “â â ƒâ Šâ ž" }, { "input": "habit's", "output": "â “â â ƒâ Šâ žâ „â Ž" }, { "input": "habitability", "output": "â “â â ƒâ Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "habitability's", "output": "â “â â ƒâ Šâ žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "habitable", "output": "â “â â ƒâ Šâ žâ â ¼" }, { "input": "habitat", "output": "â “â â ƒâ Šâ žâ â ž" }, { "input": "habitat's", "output": "â “â â ƒâ Šâ žâ â žâ „â Ž" }, { "input": "habitation", "output": "â “â â ƒâ Šâ žâ  â " }, { "input": "habitation's", "output": "â “â â ƒâ Šâ žâ  â â „â Ž" }, { "input": "habitations", "output": "â “â â ƒâ Šâ žâ  â â Ž" }, { "input": "habitats", "output": "â “â â ƒâ Šâ žâ â žâ Ž" }, { "input": "habits", "output": "â “â â ƒâ Šâ žâ Ž" }, { "input": "habitual", "output": "â “â â ƒâ Šâ žâ ¥â â ‡" }, { "input": "habitually", "output": "â “â â ƒâ Šâ žâ ¥â  â ½" }, { "input": "habitualness", "output": "â “â â ƒâ Šâ žâ ¥â â ‡â °â Ž" }, { "input": "habitualness's", "output": "â “â â ƒâ Šâ žâ ¥â â ‡â °â Žâ „â Ž" }, { "input": "habituate", "output": "â “â â ƒâ Šâ žâ ¥â â žâ ‘" }, { "input": "habituated", "output": "â “â â ƒâ Šâ žâ ¥â â žâ «" }, { "input": "habituates", "output": "â “â â ƒâ Šâ žâ ¥â â žâ ‘â Ž" }, { "input": "habituating", "output": "â “â â ƒâ Šâ žâ ¥â â žâ Œ" }, { "input": "habituation", "output": "â “â â ƒâ Šâ žâ ¥â  â " }, { "input": "habituation's", "output": "â “â â ƒâ Šâ žâ ¥â  â â „â Ž" }, { "input": "hacienda", "output": "â “â â ‰â Šâ ¢â ™â " }, { "input": "hacienda's", "output": "â “â â ‰â Šâ ¢â ™â â „â Ž" }, { "input": "haciendas", "output": "â “â â ‰â Šâ ¢â ™â â Ž" }, { "input": "hack", "output": "â “â â ‰â …" }, { "input": "hack's", "output": "â “â â ‰â …â „â Ž" }, { "input": "hacked", "output": "â “â â ‰â …â «" }, { "input": "hacker", "output": "â “â â ‰â …â »" }, { "input": "hacker's", "output": "â “â â ‰â …⠻⠄⠎" }, { "input": "hackers", "output": "â “â â ‰â …⠻⠎" }, { "input": "hacking", "output": "â “â â ‰â …â Œ" }, { "input": "hacking's", "output": "â “â â ‰â …⠌⠄⠎" }, { "input": "hackle", "output": "â “â â ‰â …⠇⠑" }, { "input": "hackle's", "output": "â “â â ‰â …⠇⠑⠄⠎" }, { "input": "hackles", "output": "â “â â ‰â …⠇⠑⠎" }, { "input": "hackney", "output": "â “â â ‰â …â â ‘â ½" }, { "input": "hackney's", "output": "â “â â ‰â …â â ‘⠽⠄⠎" }, { "input": "hackneyed", "output": "â “â â ‰â …â â ‘⠽⠫" }, { "input": "hackneying", "output": "â “â â ‰â …â â ‘⠽⠌" }, { "input": "hackneys", "output": "â “â â ‰â …â â ‘⠽⠎" }, { "input": "hacks", "output": "â “â â ‰â …â Ž" }, { "input": "hacksaw", "output": "â “â â ‰â …â Žâ â º" }, { "input": "hacksaw's", "output": "â “â â ‰â …â Žâ â ºâ „â Ž" }, { "input": "hacksaws", "output": "â “â â ‰â …â Žâ â ºâ Ž" }, { "input": "hackwork", "output": "â “â â ‰â …â â º" }, { "input": "hackwork's", "output": "â “â â ‰â …â â ºâ „â Ž" }, { "input": "had", "output": "⠸⠓" }, { "input": "haddock", "output": "â “â â ²â •⠉⠅" }, { "input": "haddock's", "output": "â “â â ²â •⠉⠅⠄⠎" }, { "input": "haddocks", "output": "â “â â ²â •⠉⠅⠎" }, { "input": "hadst", "output": "⠸⠓⠌" }, { "input": "hafnium", "output": "â “â â ‹â â Šâ ¥â " }, { "input": "hafnium's", "output": "â “â â ‹â â Šâ ¥â â „â Ž" }, { "input": "haft", "output": "â “â â ‹â ž" }, { "input": "haft's", "output": "â “â â ‹â žâ „â Ž" }, { "input": "hafts", "output": "â “â â ‹â žâ Ž" }, { "input": "hag", "output": "â “â â ›" }, { "input": "hag's", "output": "â “â â ›â „â Ž" }, { "input": "haggard", "output": "â “â â ¶â œâ ™" }, { "input": "haggardly", "output": "â “â â ¶â œâ ™â ‡â ½" }, { "input": "haggardness", "output": "â “â â ¶â œâ ™â °â Ž" }, { "input": "haggardness's", "output": "â “â â ¶â œâ ™â °â Žâ „â Ž" }, { "input": "haggish", "output": "â “â â ¶â Šâ ©" }, { "input": "haggle", "output": "â “â â ¶â ‡â ‘" }, { "input": "haggle's", "output": "â “â â ¶â ‡â ‘â „â Ž" }, { "input": "haggled", "output": "â “â â ¶â ‡â «" }, { "input": "haggler", "output": "â “â â ¶â ‡â »" }, { "input": "haggler's", "output": "â “â â ¶â ‡â »â „â Ž" }, { "input": "hagglers", "output": "â “â â ¶â ‡â »â Ž" }, { "input": "haggles", "output": "â “â â ¶â ‡â ‘â Ž" }, { "input": "haggling", "output": "â “â â ¶â ‡â Œ" }, { "input": "hagiographer", "output": "â “â â ›â Šâ •⠛⠗â â â “â »" }, { "input": "hagiographer's", "output": "â “â â ›â Šâ •⠛⠗â â â “⠻⠄⠎" }, { "input": "hagiographers", "output": "â “â â ›â Šâ •⠛⠗â â â “⠻⠎" }, { "input": "hags", "output": "â “â â ›â Ž" }, { "input": "hahnium", "output": "â “â â “â â Šâ ¥â " }, { "input": "hahnium's", "output": "â “â â “â â Šâ ¥â â „â Ž" }, { "input": "haiku", "output": "â “â â Šâ …â ¥" }, { "input": "haiku's", "output": "â “â â Šâ …⠥⠄⠎" }, { "input": "hail", "output": "â “â â Šâ ‡" }, { "input": "hail's", "output": "â “â â Šâ ‡â „â Ž" }, { "input": "hailed", "output": "â “â â Šâ ‡â «" }, { "input": "hailing", "output": "â “â â Šâ ‡â Œ" }, { "input": "hails", "output": "â “â â Šâ ‡â Ž" }, { "input": "hailstone", "output": "â “â â Šâ ‡â Œâ â •" }, { "input": "hailstone's", "output": "â “â â Šâ ‡â Œâ â •â „â Ž" }, { "input": "hailstones", "output": "â “â â Šâ ‡â Œâ â •â Ž" }, { "input": "hailstorm", "output": "â “â â Šâ ‡â Œâ •â —â " }, { "input": "hailstorm's", "output": "â “â â Šâ ‡â Œâ •â —â â „â Ž" }, { "input": "hailstorms", "output": "â “â â Šâ ‡â Œâ •â —â â Ž" }, { "input": "hair", "output": "â “â â Šâ —" }, { "input": "hair's", "output": "â “â â Šâ —â „â Ž" }, { "input": "hairball", "output": "â “â â Šâ —â ƒâ â ‡â ‡" }, { "input": "hairball's", "output": "â “â â Šâ —â ƒâ â ‡â ‡â „â Ž" }, { "input": "hairballs", "output": "â “â â Šâ —â ƒâ â ‡â ‡â Ž" }, { "input": "hairbreadth", "output": "â “â â Šâ —⠃⠗⠂⠙⠹" }, { "input": "hairbreadth's", "output": "â “â â Šâ —⠃⠗⠂⠙⠹⠄⠎" }, { "input": "hairbreadths", "output": "â “â â Šâ —⠃⠗⠂⠙⠹⠎" }, { "input": "hairbrush", "output": "â “â â Šâ —⠃⠗⠥⠩" }, { "input": "hairbrush's", "output": "â “â â Šâ —⠃⠗⠥⠩⠄⠎" }, { "input": "hairbrushes", "output": "â “â â Šâ —⠃⠗⠥⠩⠑⠎" }, { "input": "haircloth", "output": "â “â â Šâ —⠉⠇⠕⠹" }, { "input": "haircloth's", "output": "â “â â Šâ —⠉⠇⠕⠹⠄⠎" }, { "input": "haircut", "output": "â “â â Šâ —⠉⠥⠞" }, { "input": "haircut's", "output": "â “â â Šâ —⠉⠥⠞⠄⠎" }, { "input": "haircuts", "output": "â “â â Šâ —⠉⠥⠞⠎" }, { "input": "hairdo", "output": "â “â â Šâ —⠙⠕" }, { "input": "hairdo's", "output": "â “â â Šâ —⠙⠕⠄⠎" }, { "input": "hairdos", "output": "â “â â Šâ —⠙⠕⠎" }, { "input": "hairdresser", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠻" }, { "input": "hairdresser's", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠻⠄⠎" }, { "input": "hairdressers", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠻⠎" }, { "input": "hairdressing", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠌" }, { "input": "hairdressing's", "output": "â “â â Šâ —⠙⠗⠑⠎⠎⠌⠄⠎" }, { "input": "haired", "output": "â “â â Šâ —â «" }, { "input": "hairier", "output": "â “â â Šâ —â Šâ »" }, { "input": "hairiest", "output": "â “â â Šâ —â Šâ ‘â Œ" }, { "input": "hairiness", "output": "â “â â Šâ —â Šâ °â Ž" }, { "input": "hairiness's", "output": "â “â â Šâ —â Šâ °â Žâ „â Ž" }, { "input": "hairless", "output": "â “â â Šâ —⠨⠎" }, { "input": "hairlike", "output": "â “â â Šâ —⠇⠊⠅⠑" }, { "input": "hairline", "output": "â “â â Šâ —⠇⠔⠑" }, { "input": "hairline's", "output": "â “â â Šâ —⠇⠔⠑⠄⠎" }, { "input": "hairlines", "output": "â “â â Šâ —⠇⠔⠑⠎" }, { "input": "hairnet", "output": "â “â â Šâ —â â ‘â ž" }, { "input": "hairnet's", "output": "â “â â Šâ —â â ‘â žâ „â Ž" }, { "input": "hairnets", "output": "â “â â Šâ —â â ‘â žâ Ž" }, { "input": "hairpiece", "output": "â “â â Šâ —â â Šâ ‘⠉⠑" }, { "input": "hairpiece's", "output": "â “â â Šâ —â â Šâ ‘⠉⠑⠄⠎" }, { "input": "hairpieces", "output": "â “â â Šâ —â â Šâ ‘⠉⠑⠎" }, { "input": "hairpin", "output": "â “â â Šâ —â â ”" }, { "input": "hairpin's", "output": "â “â â Šâ —â â ”â „â Ž" }, { "input": "hairpins", "output": "â “â â Šâ —â â ”â Ž" }, { "input": "hairs", "output": "â “â â Šâ —â Ž" }, { "input": "hairsbreadth", "output": "â “â â Šâ —⠎⠃⠗⠂⠙⠹" }, { "input": "hairsbreadth's", "output": "â “â â Šâ —⠎⠃⠗⠂⠙⠹⠄⠎" }, { "input": "hairsbreadths", "output": "â “â â Šâ —⠎⠃⠗⠂⠙⠹⠎" }, { "input": "hairsplitter", "output": "â “â â Šâ —â Žâ â ‡â Šâ žâ žâ »" }, { "input": "hairsplitter's", "output": "â “â â Šâ —â Žâ â ‡â Šâ žâ žâ »â „â Ž" }, { "input": "hairsplitters", "output": "â “â â Šâ —â Žâ â ‡â Šâ žâ žâ »â Ž" }, { "input": "hairsplitting", "output": "â “â â Šâ —â Žâ â ‡â Šâ žâ žâ Œ" }, { "input": "hairsplitting's", "output": "â “â â Šâ —â Žâ â ‡â Šâ žâ žâ Œâ „â Ž" }, { "input": "hairspring", "output": "â “â â Šâ —â Žâ â —â Œ" }, { "input": "hairspring's", "output": "â “â â Šâ —â Žâ â —⠌⠄⠎" }, { "input": "hairsprings", "output": "â “â â Šâ —â Žâ â —⠌⠎" }, { "input": "hairstyle", "output": "â “â â Šâ —⠌⠽⠇⠑" }, { "input": "hairstyle's", "output": "â “â â Šâ —⠌⠽⠇⠑⠄⠎" }, { "input": "hairstyles", "output": "â “â â Šâ —⠌⠽⠇⠑⠎" }, { "input": "hairstylist", "output": "â “â â Šâ —⠌⠽⠇⠊⠌" }, { "input": "hairstylist's", "output": "â “â â Šâ —⠌⠽⠇⠊⠌⠄⠎" }, { "input": "hairstylists", "output": "â “â â Šâ —⠌⠽⠇⠊⠌⠎" }, { "input": "hairy", "output": "â “â â Šâ —â ½" }, { "input": "hajji", "output": "â “â â šâ šâ Š" }, { "input": "hajji's", "output": "â “â â šâ šâ Šâ „â Ž" }, { "input": "hajjis", "output": "â “â â šâ šâ Šâ Ž" }, { "input": "hake", "output": "â “â â …â ‘" }, { "input": "hake's", "output": "â “â â …â ‘â „â Ž" }, { "input": "hakes", "output": "â “â â …â ‘â Ž" }, { "input": "halal's", "output": "â “â â ‡â â ‡â „â Ž" }, { "input": "halberd", "output": "â “â â ‡â ƒâ »â ™" }, { "input": "halberd's", "output": "â “â â ‡â ƒâ »â ™â „â Ž" }, { "input": "halberds", "output": "â “â â ‡â ƒâ »â ™â Ž" }, { "input": "halcyon", "output": "â “â â ‡â ‰â ½â •â " }, { "input": "hale", "output": "â “â â ‡â ‘" }, { "input": "haled", "output": "â “â â ‡â «" }, { "input": "haler", "output": "â “â â ‡â »" }, { "input": "hales", "output": "â “â â ‡â ‘â Ž" }, { "input": "halest", "output": "â “â â ‡â ‘â Œ" }, { "input": "half", "output": "â “â â ‡â ‹" }, { "input": "half's", "output": "â “â â ‡â ‹â „â Ž" }, { "input": "halfback", "output": "â “â â ‡â ‹â ƒâ â ‰â …" }, { "input": "halfback's", "output": "â “â â ‡â ‹â ƒâ â ‰â …â „â Ž" }, { "input": "halfbacks", "output": "â “â â ‡â ‹â ƒâ â ‰â …â Ž" }, { "input": "halfhearted", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫" }, { "input": "halfheartedly", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫⠇⠽" }, { "input": "halfheartedness", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫⠰⠎" }, { "input": "halfheartedness's", "output": "â “â â ‡â ‹â “⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "halfpence", "output": "â “â â ‡â ‹â â °â ‘" }, { "input": "halfpennies", "output": "â “â â ‡â ‹â â ¢â â Šâ ‘â Ž" }, { "input": "halfpenny", "output": "â “â â ‡â ‹â â ¢â â ½" }, { "input": "halfpenny's", "output": "â “â â ‡â ‹â â ¢â â ½â „â Ž" }, { "input": "halftime", "output": "â “â â ‡â ‹â â ž" }, { "input": "halftime's", "output": "â “â â ‡â ‹â â žâ „â Ž" }, { "input": "halftimes", "output": "â “â â ‡â ‹â â žâ Ž" }, { "input": "halfway", "output": "â “â â ‡â ‹â ºâ â ½" }, { "input": "halibut", "output": "â “â â ‡â Šâ ƒâ ¥â ž" }, { "input": "halibut's", "output": "â “â â ‡â Šâ ƒâ ¥â žâ „â Ž" }, { "input": "halibuts", "output": "â “â â ‡â Šâ ƒâ ¥â žâ Ž" }, { "input": "haling", "output": "â “â â ‡â Œ" }, { "input": "halite", "output": "â “â â ‡â Šâ žâ ‘" }, { "input": "halite's", "output": "â “â â ‡â Šâ žâ ‘â „â Ž" }, { "input": "halitosis", "output": "â “â â ‡â Šâ žâ •â Žâ Šâ Ž" }, { "input": "halitosis's", "output": "â “â â ‡â Šâ žâ •â Žâ Šâ Žâ „â Ž" }, { "input": "hall", "output": "â “â â ‡â ‡" }, { "input": "hall's", "output": "â “â â ‡â ‡â „â Ž" }, { "input": "hallelujah", "output": "â “â â ‡â ‡â ‘⠇⠥⠚â â “" }, { "input": "hallelujah's", "output": "â “â â ‡â ‡â ‘⠇⠥⠚â â “â „â Ž" }, { "input": "hallelujahs", "output": "â “â â ‡â ‡â ‘⠇⠥⠚â â “â Ž" }, { "input": "hallmark", "output": "â “â â ‡â ‡â â œâ …" }, { "input": "hallmark's", "output": "â “â â ‡â ‡â â œâ …â „â Ž" }, { "input": "hallmarked", "output": "â “â â ‡â ‡â â œâ …â «" }, { "input": "hallmarking", "output": "â “â â ‡â ‡â â œâ …â Œ" }, { "input": "hallmarks", "output": "â “â â ‡â ‡â â œâ …â Ž" }, { "input": "halloo", "output": "â “â â ‡â ‡â •â •" }, { "input": "halloo's", "output": "â “â â ‡â ‡â •â •â „â Ž" }, { "input": "hallooing", "output": "â “â â ‡â ‡â •â •â Œ" }, { "input": "halloos", "output": "â “â â ‡â ‡â •â •â Ž" }, { "input": "hallow", "output": "â “â â ‡â ‡â ª" }, { "input": "hallowed", "output": "â “â â ‡â ‡â ªâ «" }, { "input": "hallowing", "output": "â “â â ‡â ‡â ªâ Œ" }, { "input": "hallows", "output": "â “â â ‡â ‡â ªâ Ž" }, { "input": "halls", "output": "â “â â ‡â ‡â Ž" }, { "input": "hallucinate", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ ‘" }, { "input": "hallucinated", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ «" }, { "input": "hallucinates", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ ‘â Ž" }, { "input": "hallucinating", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ Œ" }, { "input": "hallucination", "output": "â “â â ‡â ‡â ¥â ‰â ”â  â " }, { "input": "hallucination's", "output": "â “â â ‡â ‡â ¥â ‰â ”â  â â „â Ž" }, { "input": "hallucinations", "output": "â “â â ‡â ‡â ¥â ‰â ”â  â â Ž" }, { "input": "hallucinatory", "output": "â “â â ‡â ‡â ¥â ‰â ”â â žâ •â —â ½" }, { "input": "hallucinogen", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢" }, { "input": "hallucinogen's", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠄⠎" }, { "input": "hallucinogenic", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠊⠉" }, { "input": "hallucinogenic's", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠊⠉⠄⠎" }, { "input": "hallucinogenics", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠊⠉⠎" }, { "input": "hallucinogens", "output": "â “â â ‡â ‡â ¥â ‰â ”⠕⠛⠢⠎" }, { "input": "hallway", "output": "â “â â ‡â ‡â ºâ â ½" }, { "input": "hallway's", "output": "â “â â ‡â ‡â ºâ â ½â „â Ž" }, { "input": "hallways", "output": "â “â â ‡â ‡â ºâ â ½â Ž" }, { "input": "halo", "output": "â “â â ‡â •" }, { "input": "halo's", "output": "â “â â ‡â •â „â Ž" }, { "input": "haloed", "output": "â “â â ‡â •â «" }, { "input": "halogen", "output": "â “â â ‡â •⠛⠢" }, { "input": "halogen's", "output": "â “â â ‡â •⠛⠢⠄⠎" }, { "input": "halogens", "output": "â “â â ‡â •⠛⠢⠎" }, { "input": "haloing", "output": "â “â â ‡â •â Œ" }, { "input": "halon", "output": "â “â â ‡â •â " }, { "input": "halos", "output": "â “â â ‡â •â Ž" }, { "input": "halt", "output": "â “â â ‡â ž" }, { "input": "halt's", "output": "â “â â ‡â žâ „â Ž" }, { "input": "halted", "output": "â “â â ‡â žâ «" }, { "input": "halter", "output": "â “â â ‡â žâ »" }, { "input": "halter's", "output": "â “â â ‡â žâ »â „â Ž" }, { "input": "haltered", "output": "â “â â ‡â žâ »â «" }, { "input": "haltering", "output": "â “â â ‡â žâ »â Œ" }, { "input": "halters", "output": "â “â â ‡â žâ »â Ž" }, { "input": "halting", "output": "â “â â ‡â žâ Œ" }, { "input": "haltingly", "output": "â “â â ‡â žâ Œâ ‡â ½" }, { "input": "halts", "output": "â “â â ‡â žâ Ž" }, { "input": "halve", "output": "â “â â ‡â §â ‘" }, { "input": "halved", "output": "â “â â ‡â §â «" }, { "input": "halves", "output": "â “â â ‡â §â ‘â Ž" }, { "input": "halving", "output": "â “â â ‡â §â Œ" }, { "input": "halyard", "output": "â “â â ‡â ½â œâ ™" }, { "input": "halyard's", "output": "â “â â ‡â ½â œâ ™â „â Ž" }, { "input": "halyards", "output": "â “â â ‡â ½â œâ ™â Ž" }, { "input": "ham", "output": "â “â â " }, { "input": "ham's", "output": "â “â â â „â Ž" }, { "input": "hamburg", "output": "â “â â â ƒâ ¥â —â ›" }, { "input": "hamburg's", "output": "â “â â â ƒâ ¥â —⠛⠄⠎" }, { "input": "hamburger", "output": "â “â â â ƒâ ¥â —⠛⠻" }, { "input": "hamburger's", "output": "â “â â â ƒâ ¥â —⠛⠻⠄⠎" }, { "input": "hamburgers", "output": "â “â â â ƒâ ¥â —⠛⠻⠎" }, { "input": "hamburgs", "output": "â “â â â ƒâ ¥â —⠛⠎" }, { "input": "hamlet", "output": "â “â â â ‡â ‘â ž" }, { "input": "hamlet's", "output": "â “â â â ‡â ‘â žâ „â Ž" }, { "input": "hamlets", "output": "â “â â â ‡â ‘â žâ Ž" }, { "input": "hammed", "output": "â “â â â â «" }, { "input": "hammer", "output": "â “â â â â »" }, { "input": "hammer's", "output": "â “â â â â »â „â Ž" }, { "input": "hammered", "output": "â “â â â â »â «" }, { "input": "hammerer", "output": "â “â â â â »â »" }, { "input": "hammerer's", "output": "â “â â â â »â »â „â Ž" }, { "input": "hammerers", "output": "â “â â â â »â »â Ž" }, { "input": "hammerhead", "output": "â “â â â â »â “â ‚â ™" }, { "input": "hammerhead's", "output": "â “â â â â »â “⠂⠙⠄⠎" }, { "input": "hammerheads", "output": "â “â â â â »â “⠂⠙⠎" }, { "input": "hammering", "output": "â “â â â â »â Œ" }, { "input": "hammerings", "output": "â “â â â â »â Œâ Ž" }, { "input": "hammerlock", "output": "â “â â â â »â ‡â •⠉⠅" }, { "input": "hammerlock's", "output": "â “â â â â »â ‡â •⠉⠅⠄⠎" }, { "input": "hammerlocks", "output": "â “â â â â »â ‡â •⠉⠅⠎" }, { "input": "hammers", "output": "â “â â â â »â Ž" }, { "input": "hammertoe", "output": "â “â â â â »â žâ •â ‘" }, { "input": "hammertoe's", "output": "â “â â â â »â žâ •â ‘â „â Ž" }, { "input": "hammertoes", "output": "â “â â â â »â žâ •â ‘â Ž" }, { "input": "hammier", "output": "â “â â â â Šâ »" }, { "input": "hammiest", "output": "â “â â â â Šâ ‘â Œ" }, { "input": "hamming", "output": "â “â â â â Œ" }, { "input": "hammock", "output": "â “â â â â •⠉⠅" }, { "input": "hammock's", "output": "â “â â â â •⠉⠅⠄⠎" }, { "input": "hammocks", "output": "â “â â â â •⠉⠅⠎" }, { "input": "hamper", "output": "â “â â â â »" }, { "input": "hamper's", "output": "â “â â â â »â „â Ž" }, { "input": "hampered", "output": "â “â â â â »â «" }, { "input": "hampering", "output": "â “â â â â »â Œ" }, { "input": "hampers", "output": "â “â â â â »â Ž" }, { "input": "hams", "output": "â “â â â Ž" }, { "input": "hamster", "output": "â “â â â Œâ »" }, { "input": "hamster's", "output": "â “â â â Œâ »â „â Ž" }, { "input": "hamsters", "output": "â “â â â Œâ »â Ž" }, { "input": "hamstring", "output": "â “â â â Œâ —â Œ" }, { "input": "hamstring's", "output": "â “â â â Œâ —⠌⠄⠎" }, { "input": "hamstringing", "output": "â “â â â Œâ —⠌⠌" }, { "input": "hamstrings", "output": "â “â â â Œâ —⠌⠎" }, { "input": "hamstrung", "output": "â “â â â Œâ —â ¥â â ›" }, { "input": "hand", "output": "â “â ¯" }, { "input": "hand's", "output": "⠓⠯⠄⠎" }, { "input": "handbag", "output": "⠓⠯⠃â â ›" }, { "input": "handbag's", "output": "⠓⠯⠃â â ›â „â Ž" }, { "input": "handbags", "output": "⠓⠯⠃â â ›â Ž" }, { "input": "handball", "output": "⠓⠯⠃â â ‡â ‡" }, { "input": "handball's", "output": "⠓⠯⠃â â ‡â ‡â „â Ž" }, { "input": "handballs", "output": "⠓⠯⠃â â ‡â ‡â Ž" }, { "input": "handbarrow", "output": "⠓⠯⠃⠜⠗⠪" }, { "input": "handbarrow's", "output": "⠓⠯⠃⠜⠗⠪⠄⠎" }, { "input": "handbarrows", "output": "⠓⠯⠃⠜⠗⠪⠎" }, { "input": "handbill", "output": "⠓⠯⠃⠊⠇⠇" }, { "input": "handbill's", "output": "⠓⠯⠃⠊⠇⠇⠄⠎" }, { "input": "handbills", "output": "⠓⠯⠃⠊⠇⠇⠎" }, { "input": "handbook", "output": "⠓⠯⠃⠕⠕⠅" }, { "input": "handbook's", "output": "⠓⠯⠃⠕⠕⠅⠄⠎" }, { "input": "handbooks", "output": "⠓⠯⠃⠕⠕⠅⠎" }, { "input": "handcar", "output": "⠓⠯⠉⠜" }, { "input": "handcar's", "output": "⠓⠯⠉⠜⠄⠎" }, { "input": "handcars", "output": "⠓⠯⠉⠜⠎" }, { "input": "handcart", "output": "⠓⠯⠉⠜⠞" }, { "input": "handcart's", "output": "⠓⠯⠉⠜⠞⠄⠎" }, { "input": "handcarts", "output": "⠓⠯⠉⠜⠞⠎" }, { "input": "handclasp", "output": "⠓⠯⠉⠇â â Žâ " }, { "input": "handclasp's", "output": "⠓⠯⠉⠇â â Žâ â „â Ž" }, { "input": "handclasps", "output": "⠓⠯⠉⠇â â Žâ â Ž" }, { "input": "handcraft", "output": "⠓⠯⠉⠗â â ‹â ž" }, { "input": "handcraft's", "output": "⠓⠯⠉⠗â â ‹â žâ „â Ž" }, { "input": "handcrafted", "output": "⠓⠯⠉⠗â â ‹â žâ «" }, { "input": "handcrafting", "output": "⠓⠯⠉⠗â â ‹â žâ Œ" }, { "input": "handcrafts", "output": "⠓⠯⠉⠗â â ‹â žâ Ž" }, { "input": "handcuff", "output": "⠓⠯⠉⠥⠋⠋" }, { "input": "handcuff's", "output": "⠓⠯⠉⠥⠋⠋⠄⠎" }, { "input": "handcuffed", "output": "⠓⠯⠉⠥⠖⠫" }, { "input": "handcuffing", "output": "⠓⠯⠉⠥⠖⠌" }, { "input": "handcuffs", "output": "⠓⠯⠉⠥⠖⠎" }, { "input": "handed", "output": "⠓⠯⠫" }, { "input": "handedness", "output": "⠓⠯⠫⠰⠎" }, { "input": "handful", "output": "⠓⠯⠰⠇" }, { "input": "handful's", "output": "⠓⠯⠰⠇⠄⠎" }, { "input": "handfuls", "output": "⠓⠯⠰⠇⠎" }, { "input": "handgun", "output": "⠓⠯⠛⠥â " }, { "input": "handgun's", "output": "⠓⠯⠛⠥â â „â Ž" }, { "input": "handguns", "output": "⠓⠯⠛⠥â â Ž" }, { "input": "handicap", "output": "⠓⠯⠊⠉â â " }, { "input": "handicap's", "output": "⠓⠯⠊⠉â â â „â Ž" }, { "input": "handicapped", "output": "⠓⠯⠊⠉â â â â «" }, { "input": "handicapper", "output": "⠓⠯⠊⠉â â â â »" }, { "input": "handicapper's", "output": "⠓⠯⠊⠉â â â â »â „â Ž" }, { "input": "handicappers", "output": "⠓⠯⠊⠉â â â â »â Ž" }, { "input": "handicapping", "output": "⠓⠯⠊⠉â â â â Œ" }, { "input": "handicaps", "output": "⠓⠯⠊⠉â â â Ž" }, { "input": "handicraft", "output": "⠓⠯⠊⠉⠗â â ‹â ž" }, { "input": "handicraft's", "output": "⠓⠯⠊⠉⠗â â ‹â žâ „â Ž" }, { "input": "handicrafts", "output": "⠓⠯⠊⠉⠗â â ‹â žâ Ž" }, { "input": "handier", "output": "⠓⠯⠊⠻" }, { "input": "handiest", "output": "⠓⠯⠊⠑⠌" }, { "input": "handily", "output": "⠓⠯⠊⠇⠽" }, { "input": "handiness", "output": "⠓⠯⠊⠰⠎" }, { "input": "handiness's", "output": "⠓⠯⠊⠰⠎⠄⠎" }, { "input": "handing", "output": "⠓⠯⠌" }, { "input": "handiwork", "output": "⠓⠯⠊â â º" }, { "input": "handiwork's", "output": "⠓⠯⠊â â ºâ „â Ž" }, { "input": "handkerchief", "output": "⠓⠯⠅⠻⠡⠊⠑⠋" }, { "input": "handkerchief's", "output": "⠓⠯⠅⠻⠡⠊⠑⠋⠄⠎" }, { "input": "handkerchiefs", "output": "⠓⠯⠅⠻⠡⠊⠑⠋⠎" }, { "input": "handle", "output": "⠓⠯⠇⠑" }, { "input": "handle's", "output": "⠓⠯⠇⠑⠄⠎" }, { "input": "handlebar", "output": "⠓⠯⠇⠑⠃⠜" }, { "input": "handlebar's", "output": "⠓⠯⠇⠑⠃⠜⠄⠎" }, { "input": "handlebars", "output": "⠓⠯⠇⠑⠃⠜⠎" }, { "input": "handled", "output": "⠓⠯⠇⠫" }, { "input": "handler", "output": "⠓⠯⠇⠻" }, { "input": "handler's", "output": "⠓⠯⠇⠻⠄⠎" }, { "input": "handlers", "output": "⠓⠯⠇⠻⠎" }, { "input": "handles", "output": "⠓⠯⠇⠑⠎" }, { "input": "handling", "output": "⠓⠯⠇⠌" }, { "input": "handmade", "output": "â “â ¯â â â ™â ‘" }, { "input": "handmaid", "output": "â “â ¯â â â Šâ ™" }, { "input": "handmaid's", "output": "â “â ¯â â â Šâ ™â „â Ž" }, { "input": "handmaiden", "output": "â “â ¯â â â Šâ ™â ¢" }, { "input": "handmaiden's", "output": "â “â ¯â â â Šâ ™â ¢â „â Ž" }, { "input": "handmaidens", "output": "â “â ¯â â â Šâ ™â ¢â Ž" }, { "input": "handmaids", "output": "â “â ¯â â â Šâ ™â Ž" }, { "input": "handout", "output": "⠓⠯⠳⠞" }, { "input": "handout's", "output": "⠓⠯⠳⠞⠄⠎" }, { "input": "handouts", "output": "⠓⠯⠳⠞⠎" }, { "input": "handpick", "output": "â “â ¯â â Šâ ‰â …" }, { "input": "handpicked", "output": "â “â ¯â â Šâ ‰â …â «" }, { "input": "handpicking", "output": "â “â ¯â â Šâ ‰â …â Œ" }, { "input": "handpicks", "output": "â “â ¯â â Šâ ‰â …â Ž" }, { "input": "handrail", "output": "⠓⠯⠗â â Šâ ‡" }, { "input": "handrail's", "output": "⠓⠯⠗â â Šâ ‡â „â Ž" }, { "input": "handrails", "output": "⠓⠯⠗â â Šâ ‡â Ž" }, { "input": "hands", "output": "⠓⠯⠎" }, { "input": "handset", "output": "⠓⠯⠎⠑⠞" }, { "input": "handset's", "output": "⠓⠯⠎⠑⠞⠄⠎" }, { "input": "handsets", "output": "⠓⠯⠎⠑⠞⠎" }, { "input": "handshake", "output": "⠓⠯⠩â â …â ‘" }, { "input": "handshake's", "output": "⠓⠯⠩â â …â ‘â „â Ž" }, { "input": "handshakes", "output": "⠓⠯⠩â â …â ‘â Ž" }, { "input": "handshaking", "output": "⠓⠯⠩â â …â Œ" }, { "input": "handsome", "output": "â “â ¯â â Ž" }, { "input": "handsomely", "output": "â “â ¯â â Žâ ‡â ½" }, { "input": "handsomeness", "output": "â “â ¯â â Žâ °â Ž" }, { "input": "handsomeness's", "output": "â “â ¯â â Žâ °â Žâ „â Ž" }, { "input": "handsomer", "output": "â “â ¯â â Žâ —" }, { "input": "handsomest", "output": "â “â ¯â â Žâ Œ" }, { "input": "handspring", "output": "⠓⠯⠎â â —â Œ" }, { "input": "handspring's", "output": "⠓⠯⠎â â —⠌⠄⠎" }, { "input": "handsprings", "output": "⠓⠯⠎â â —⠌⠎" }, { "input": "handstand", "output": "⠓⠯⠌⠯" }, { "input": "handstand's", "output": "⠓⠯⠌⠯⠄⠎" }, { "input": "handstands", "output": "⠓⠯⠌⠯⠎" }, { "input": "handwork", "output": "â “â ¯â â º" }, { "input": "handwork's", "output": "â “â ¯â â ºâ „â Ž" }, { "input": "handwoven", "output": "⠓⠯⠺⠕⠧⠢" }, { "input": "handwriting", "output": "⠓⠯⠺⠗⠊⠞⠌" }, { "input": "handwriting's", "output": "⠓⠯⠺⠗⠊⠞⠌⠄⠎" }, { "input": "handwritten", "output": "⠓⠯⠺⠗⠊⠞⠞⠢" }, { "input": "handy", "output": "⠓⠯⠽" }, { "input": "handyman", "output": "⠓⠯⠽â â â " }, { "input": "handyman's", "output": "⠓⠯⠽â â â â „â Ž" }, { "input": "handymen", "output": "⠓⠯⠽â â ¢" }, { "input": "hang", "output": "â “â â â ›" }, { "input": "hang's", "output": "â “â â â ›â „â Ž" }, { "input": "hangar", "output": "â “â â â ›â œ" }, { "input": "hangar's", "output": "â “â â â ›â œâ „â Ž" }, { "input": "hangars", "output": "â “â â â ›â œâ Ž" }, { "input": "hangdog", "output": "â “â â â ›â ™â •â ›" }, { "input": "hanged", "output": "â “â â â ›â «" }, { "input": "hanger", "output": "â “â â â ›â »" }, { "input": "hanger's", "output": "â “â â â ›â »â „â Ž" }, { "input": "hangers", "output": "â “â â â ›â »â Ž" }, { "input": "hanging", "output": "â “â â â ›â Œ" }, { "input": "hanging's", "output": "â “â â â ›â Œâ „â Ž" }, { "input": "hangings", "output": "â “â â â ›â Œâ Ž" }, { "input": "hangman", "output": "â “â â â ›â â â " }, { "input": "hangman's", "output": "â “â â â ›â â â â „â Ž" }, { "input": "hangmen", "output": "â “â â â ›â â ¢" }, { "input": "hangnail", "output": "â “â â â ›â â â Šâ ‡" }, { "input": "hangnail's", "output": "â “â â â ›â â â Šâ ‡â „â Ž" }, { "input": "hangnails", "output": "â “â â â ›â â â Šâ ‡â Ž" }, { "input": "hangout", "output": "â “â â â ›â ³â ž" }, { "input": "hangout's", "output": "â “â â â ›â ³â žâ „â Ž" }, { "input": "hangouts", "output": "â “â â â ›â ³â žâ Ž" }, { "input": "hangover", "output": "â “â â â ›â •â §â »" }, { "input": "hangover's", "output": "â “â â â ›â •⠧⠻⠄⠎" }, { "input": "hangovers", "output": "â “â â â ›â •⠧⠻⠎" }, { "input": "hangs", "output": "â “â â â ›â Ž" }, { "input": "hangup", "output": "â “â â â ›â ¥â " }, { "input": "hangup's", "output": "â “â â â ›â ¥â â „â Ž" }, { "input": "hangups", "output": "â “â â â ›â ¥â â Ž" }, { "input": "hank", "output": "â “â â â …" }, { "input": "hank's", "output": "â “â â â …â „â Ž" }, { "input": "hanker", "output": "â “â â â …â »" }, { "input": "hankered", "output": "â “â â â …⠻⠫" }, { "input": "hankering", "output": "â “â â â …⠻⠌" }, { "input": "hankering's", "output": "â “â â â …⠻⠌⠄⠎" }, { "input": "hankerings", "output": "â “â â â …⠻⠌⠎" }, { "input": "hankers", "output": "â “â â â …⠻⠎" }, { "input": "hankie", "output": "â “â â â …â Šâ ‘" }, { "input": "hankie's", "output": "â “â â â …â Šâ ‘â „â Ž" }, { "input": "hankies", "output": "â “â â â …â Šâ ‘â Ž" }, { "input": "hanks", "output": "â “â â â …â Ž" }, { "input": "hansom", "output": "â “â â â Žâ •â " }, { "input": "hansom's", "output": "â “â â â Žâ •â â „â Ž" }, { "input": "hansoms", "output": "â “â â â Žâ •â â Ž" }, { "input": "hap", "output": "â “â â " }, { "input": "hap's", "output": "â “â â â „â Ž" }, { "input": "haphazard", "output": "â “â â â “â â µâ œâ ™" }, { "input": "haphazardly", "output": "â “â â â “â â µâ œâ ™â ‡â ½" }, { "input": "haphazardness", "output": "â “â â â “â â µâ œâ ™â °â Ž" }, { "input": "haphazardness's", "output": "â “â â â “â â µâ œâ ™â °â Žâ „â Ž" }, { "input": "hapless", "output": "â “â â â ¨â Ž" }, { "input": "haplessly", "output": "â “â â â ¨â Žâ ‡â ½" }, { "input": "haplessness", "output": "â “â â â ¨â Žâ °â Ž" }, { "input": "haplessness's", "output": "â “â â â ¨â Žâ °â Žâ „â Ž" }, { "input": "haploid", "output": "â “â â â ‡â •â Šâ ™" }, { "input": "haploid's", "output": "â “â â â ‡â •⠊⠙⠄⠎" }, { "input": "haploids", "output": "â “â â â ‡â •⠊⠙⠎" }, { "input": "haply", "output": "â “â â â ‡â ½" }, { "input": "happen", "output": "â “â â â â ¢" }, { "input": "happened", "output": "â “â â â â ¢â «" }, { "input": "happening", "output": "â “â â â â ¢â Œ" }, { "input": "happening's", "output": "â “â â â â ¢â Œâ „â Ž" }, { "input": "happenings", "output": "â “â â â â ¢â Œâ Ž" }, { "input": "happens", "output": "â “â â â â ¢â Ž" }, { "input": "happenstance", "output": "â “â â â â ¢â Œâ ¨â ‘" }, { "input": "happenstance's", "output": "â “â â â â ¢â Œâ ¨â ‘â „â Ž" }, { "input": "happenstances", "output": "â “â â â â ¢â Œâ ¨â ‘â Ž" }, { "input": "happier", "output": "â “â â â â Šâ »" }, { "input": "happiest", "output": "â “â â â â Šâ ‘â Œ" }, { "input": "happily", "output": "â “â â â â Šâ ‡â ½" }, { "input": "happiness", "output": "â “â â â â Šâ °â Ž" }, { "input": "happiness's", "output": "â “â â â â Šâ °â Žâ „â Ž" }, { "input": "happy", "output": "â “â â â â ½" }, { "input": "harangue", "output": "â “â œâ â â ›â ¥â ‘" }, { "input": "harangue's", "output": "â “â œâ â â ›â ¥â ‘â „â Ž" }, { "input": "harangued", "output": "â “â œâ â â ›â ¥â «" }, { "input": "harangues", "output": "â “â œâ â â ›â ¥â ‘â Ž" }, { "input": "haranguing", "output": "â “â œâ â â ›â ¥â Œ" }, { "input": "harass", "output": "â “â œâ â Žâ Ž" }, { "input": "harassed", "output": "â “â œâ â Žâ Žâ «" }, { "input": "harasser", "output": "â “â œâ â Žâ Žâ »" }, { "input": "harasser's", "output": "â “â œâ â Žâ Žâ »â „â Ž" }, { "input": "harassers", "output": "â “â œâ â Žâ Žâ »â Ž" }, { "input": "harasses", "output": "â “â œâ â Žâ Žâ ‘â Ž" }, { "input": "harassing", "output": "â “â œâ â Žâ Žâ Œ" }, { "input": "harassment", "output": "â “â œâ â Žâ Žâ °â ž" }, { "input": "harassment's", "output": "â “â œâ â Žâ Žâ °â žâ „â Ž" }, { "input": "harbinger", "output": "⠓⠜⠃⠌⠻" }, { "input": "harbinger's", "output": "⠓⠜⠃⠌⠻⠄⠎" }, { "input": "harbingers", "output": "⠓⠜⠃⠌⠻⠎" }, { "input": "harbor", "output": "⠓⠜⠃⠕⠗" }, { "input": "harbor's", "output": "⠓⠜⠃⠕⠗⠄⠎" }, { "input": "harbored", "output": "⠓⠜⠃⠕⠗⠫" }, { "input": "harboring", "output": "⠓⠜⠃⠕⠗⠌" }, { "input": "harbors", "output": "⠓⠜⠃⠕⠗⠎" }, { "input": "hard", "output": "⠓⠜⠙" }, { "input": "hardback", "output": "⠓⠜⠙⠃â â ‰â …" }, { "input": "hardback's", "output": "⠓⠜⠙⠃â â ‰â …â „â Ž" }, { "input": "hardbacks", "output": "⠓⠜⠙⠃â â ‰â …â Ž" }, { "input": "hardball", "output": "⠓⠜⠙⠃â â ‡â ‡" }, { "input": "hardball's", "output": "⠓⠜⠙⠃â â ‡â ‡â „â Ž" }, { "input": "hardboard's", "output": "⠓⠜⠙⠃⠕⠜⠙⠄⠎" }, { "input": "hardbound", "output": "⠓⠜⠙⠃⠨⠙" }, { "input": "hardcover", "output": "⠓⠜⠙⠉⠕⠧⠻" }, { "input": "hardcover's", "output": "⠓⠜⠙⠉⠕⠧⠻⠄⠎" }, { "input": "hardcovers", "output": "⠓⠜⠙⠉⠕⠧⠻⠎" }, { "input": "harden", "output": "⠓⠜⠙⠢" }, { "input": "hardened", "output": "⠓⠜⠙⠢⠫" }, { "input": "hardener", "output": "⠓⠜⠙⠢⠻" }, { "input": "hardener's", "output": "⠓⠜⠙⠢⠻⠄⠎" }, { "input": "hardeners", "output": "⠓⠜⠙⠢⠻⠎" }, { "input": "hardening", "output": "⠓⠜⠙⠢⠌" }, { "input": "hardens", "output": "⠓⠜⠙⠢⠎" }, { "input": "harder", "output": "⠓⠜⠙⠻" }, { "input": "hardest", "output": "⠓⠜⠙⠑⠌" }, { "input": "hardhat", "output": "⠓⠜⠙⠓â â ž" }, { "input": "hardhat's", "output": "⠓⠜⠙⠓â â žâ „â Ž" }, { "input": "hardhats", "output": "⠓⠜⠙⠓â â žâ Ž" }, { "input": "hardheaded", "output": "⠓⠜⠙⠓⠂⠙⠫" }, { "input": "hardheadedly", "output": "⠓⠜⠙⠓⠂⠙⠫⠇⠽" }, { "input": "hardheadedness", "output": "⠓⠜⠙⠓⠂⠙⠫⠰⠎" }, { "input": "hardheadedness's", "output": "⠓⠜⠙⠓⠂⠙⠫⠰⠎⠄⠎" }, { "input": "hardhearted", "output": "⠓⠜⠙⠓⠑⠜⠞⠫" }, { "input": "hardheartedly", "output": "⠓⠜⠙⠓⠑⠜⠞⠫⠇⠽" }, { "input": "hardheartedness", "output": "⠓⠜⠙⠓⠑⠜⠞⠫⠰⠎" }, { "input": "hardheartedness's", "output": "⠓⠜⠙⠓⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "hardier", "output": "⠓⠜⠙⠊⠻" }, { "input": "hardiest", "output": "⠓⠜⠙⠊⠑⠌" }, { "input": "hardihood", "output": "⠓⠜⠙⠊⠓⠕⠕⠙" }, { "input": "hardihood's", "output": "⠓⠜⠙⠊⠓⠕⠕⠙⠄⠎" }, { "input": "hardily", "output": "⠓⠜⠙⠊⠇⠽" }, { "input": "hardiness", "output": "⠓⠜⠙⠊⠰⠎" }, { "input": "hardiness's", "output": "⠓⠜⠙⠊⠰⠎⠄⠎" }, { "input": "hardliner", "output": "⠓⠜⠙⠇⠔⠻" }, { "input": "hardliner's", "output": "⠓⠜⠙⠇⠔⠻⠄⠎" }, { "input": "hardliners", "output": "⠓⠜⠙⠇⠔⠻⠎" }, { "input": "hardly", "output": "⠓⠜⠙⠇⠽" }, { "input": "hardness", "output": "⠓⠜⠙⠰⠎" }, { "input": "hardness's", "output": "⠓⠜⠙⠰⠎⠄⠎" }, { "input": "hardship", "output": "⠓⠜⠙⠩⠊â " }, { "input": "hardship's", "output": "⠓⠜⠙⠩⠊â â „â Ž" }, { "input": "hardships", "output": "⠓⠜⠙⠩⠊â â Ž" }, { "input": "hardstand", "output": "⠓⠜⠙⠌⠯" }, { "input": "hardstand's", "output": "⠓⠜⠙⠌⠯⠄⠎" }, { "input": "hardstands", "output": "⠓⠜⠙⠌⠯⠎" }, { "input": "hardtack", "output": "⠓⠜⠙⠞â â ‰â …" }, { "input": "hardtack's", "output": "⠓⠜⠙⠞â â ‰â …â „â Ž" }, { "input": "hardtop", "output": "⠓⠜⠙⠞⠕â " }, { "input": "hardtop's", "output": "⠓⠜⠙⠞⠕â â „â Ž" }, { "input": "hardtops", "output": "⠓⠜⠙⠞⠕â â Ž" }, { "input": "hardware", "output": "⠓⠜⠙⠺⠜⠑" }, { "input": "hardware's", "output": "⠓⠜⠙⠺⠜⠑⠄⠎" }, { "input": "hardwood", "output": "⠓⠜⠙⠺⠕⠕⠙" }, { "input": "hardwood's", "output": "⠓⠜⠙⠺⠕⠕⠙⠄⠎" }, { "input": "hardwoods", "output": "⠓⠜⠙⠺⠕⠕⠙⠎" }, { "input": "hardworking", "output": "⠓⠜⠙â â ºâ Œ" }, { "input": "hardy", "output": "⠓⠜⠙⠽" }, { "input": "hare", "output": "⠓⠜⠑" }, { "input": "hare's", "output": "⠓⠜⠑⠄⠎" }, { "input": "harebrained", "output": "⠓⠜⠑⠃⠗â â ”â «" }, { "input": "hared", "output": "⠓⠜⠫" }, { "input": "harelip", "output": "⠓⠜⠑⠇⠊â " }, { "input": "harelip's", "output": "⠓⠜⠑⠇⠊â â „â Ž" }, { "input": "harelipped", "output": "⠓⠜⠑⠇⠊â â â «" }, { "input": "harelips", "output": "⠓⠜⠑⠇⠊â â Ž" }, { "input": "harem", "output": "⠓⠜⠑â " }, { "input": "harem's", "output": "⠓⠜⠑â â „â Ž" }, { "input": "harems", "output": "⠓⠜⠑â â Ž" }, { "input": "hares", "output": "⠓⠜⠑⠎" }, { "input": "haring", "output": "⠓⠜⠌" }, { "input": "hark", "output": "⠓⠜⠅" }, { "input": "harked", "output": "⠓⠜⠅⠫" }, { "input": "harking", "output": "⠓⠜⠅⠌" }, { "input": "harks", "output": "⠓⠜⠅⠎" }, { "input": "harlequin", "output": "⠓⠜⠇⠑⠟⠥⠔" }, { "input": "harlequin's", "output": "⠓⠜⠇⠑⠟⠥⠔⠄⠎" }, { "input": "harlequins", "output": "⠓⠜⠇⠑⠟⠥⠔⠎" }, { "input": "harlot", "output": "⠓⠜⠇⠕⠞" }, { "input": "harlot's", "output": "⠓⠜⠇⠕⠞⠄⠎" }, { "input": "harlotry", "output": "⠓⠜⠇⠕⠞⠗⠽" }, { "input": "harlotry's", "output": "⠓⠜⠇⠕⠞⠗⠽⠄⠎" }, { "input": "harlots", "output": "⠓⠜⠇⠕⠞⠎" }, { "input": "harm", "output": "â “â œâ " }, { "input": "harm's", "output": "â “â œâ â „â Ž" }, { "input": "harmed", "output": "â “â œâ â «" }, { "input": "harmful", "output": "â “â œâ â °â ‡" }, { "input": "harmfully", "output": "â “â œâ â °â ‡â ‡â ½" }, { "input": "harmfulness", "output": "â “â œâ â °â ‡â °â Ž" }, { "input": "harmfulness's", "output": "â “â œâ â °â ‡â °â Žâ „â Ž" }, { "input": "harming", "output": "â “â œâ â Œ" }, { "input": "harmless", "output": "â “â œâ â ¨â Ž" }, { "input": "harmlessly", "output": "â “â œâ â ¨â Žâ ‡â ½" }, { "input": "harmlessness", "output": "â “â œâ â ¨â Žâ °â Ž" }, { "input": "harmlessness's", "output": "â “â œâ â ¨â Žâ °â Žâ „â Ž" }, { "input": "harmonic", "output": "â “â œâ â •â â Šâ ‰" }, { "input": "harmonic's", "output": "â “â œâ â •â â Šâ ‰â „â Ž" }, { "input": "harmonica", "output": "â “â œâ â •â â Šâ ‰â " }, { "input": "harmonica's", "output": "â “â œâ â •â â Šâ ‰â â „â Ž" }, { "input": "harmonically", "output": "â “â œâ â •â â Šâ ‰â  â ½" }, { "input": "harmonicas", "output": "â “â œâ â •â â Šâ ‰â â Ž" }, { "input": "harmonics", "output": "â “â œâ â •â â Šâ ‰â Ž" }, { "input": "harmonies", "output": "â “â œâ â •â â Šâ ‘â Ž" }, { "input": "harmonious", "output": "â “â œâ â •â â Šâ ³â Ž" }, { "input": "harmoniously", "output": "â “â œâ â •â â Šâ ³â Žâ ‡â ½" }, { "input": "harmoniousness", "output": "â “â œâ â •â â Šâ ³â Žâ °â Ž" }, { "input": "harmoniousness's", "output": "â “â œâ â •â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "harmonium", "output": "â “â œâ â •â â Šâ ¥â " }, { "input": "harmonium's", "output": "â “â œâ â •â â Šâ ¥â â „â Ž" }, { "input": "harmoniums", "output": "â “â œâ â •â â Šâ ¥â â Ž" }, { "input": "harmonization", "output": "â “â œâ â •â â Šâ µâ  â " }, { "input": "harmonization's", "output": "â “â œâ â •â â Šâ µâ  â â „â Ž" }, { "input": "harmonize", "output": "â “â œâ â •â â Šâ µâ ‘" }, { "input": "harmonized", "output": "â “â œâ â •â â Šâ µâ «" }, { "input": "harmonizer", "output": "â “â œâ â •â â Šâ µâ »" }, { "input": "harmonizer's", "output": "â “â œâ â •â â Šâ µâ »â „â Ž" }, { "input": "harmonizers", "output": "â “â œâ â •â â Šâ µâ »â Ž" }, { "input": "harmonizes", "output": "â “â œâ â •â â Šâ µâ ‘â Ž" }, { "input": "harmonizing", "output": "â “â œâ â •â â Šâ µâ Œ" }, { "input": "harmony", "output": "â “â œâ â •â â ½" }, { "input": "harmony's", "output": "â “â œâ â •â â ½â „â Ž" }, { "input": "harms", "output": "â “â œâ â Ž" }, { "input": "harness", "output": "⠓⠜⠰⠎" }, { "input": "harness's", "output": "⠓⠜⠰⠎⠄⠎" }, { "input": "harnessed", "output": "⠓⠜⠰⠎⠫" }, { "input": "harnesses", "output": "⠓⠜⠰⠎⠑⠎" }, { "input": "harnessing", "output": "⠓⠜⠰⠎⠌" }, { "input": "harp", "output": "â “â œâ " }, { "input": "harp's", "output": "â “â œâ â „â Ž" }, { "input": "harped", "output": "â “â œâ â «" }, { "input": "harpies", "output": "â “â œâ â Šâ ‘â Ž" }, { "input": "harping", "output": "â “â œâ â Œ" }, { "input": "harpist", "output": "â “â œâ â Šâ Œ" }, { "input": "harpist's", "output": "â “â œâ â Šâ Œâ „â Ž" }, { "input": "harpists", "output": "â “â œâ â Šâ Œâ Ž" }, { "input": "harpoon", "output": "â “â œâ â •â •â " }, { "input": "harpoon's", "output": "â “â œâ â •â •â â „â Ž" }, { "input": "harpooned", "output": "â “â œâ â •â •â â «" }, { "input": "harpooner", "output": "â “â œâ â •â •â â »" }, { "input": "harpooner's", "output": "â “â œâ â •â •â â »â „â Ž" }, { "input": "harpooners", "output": "â “â œâ â •â •â â »â Ž" }, { "input": "harpooning", "output": "â “â œâ â •â •â â Œ" }, { "input": "harpoons", "output": "â “â œâ â •â •â â Ž" }, { "input": "harps", "output": "â “â œâ â Ž" }, { "input": "harpsichord", "output": "â “â œâ â Žâ Šâ ¡â •â —â ™" }, { "input": "harpsichord's", "output": "â “â œâ â Žâ Šâ ¡â •⠗⠙⠄⠎" }, { "input": "harpsichordist", "output": "â “â œâ â Žâ Šâ ¡â •⠗⠙⠊⠌" }, { "input": "harpsichordist's", "output": "â “â œâ â Žâ Šâ ¡â •⠗⠙⠊⠌⠄⠎" }, { "input": "harpsichordists", "output": "â “â œâ â Žâ Šâ ¡â •⠗⠙⠊⠌⠎" }, { "input": "harpsichords", "output": "â “â œâ â Žâ Šâ ¡â •⠗⠙⠎" }, { "input": "harpy", "output": "â “â œâ â ½" }, { "input": "harpy's", "output": "â “â œâ â ½â „â Ž" }, { "input": "harridan", "output": "⠓⠜⠗⠊⠙â â " }, { "input": "harridan's", "output": "⠓⠜⠗⠊⠙â â â „â Ž" }, { "input": "harridans", "output": "⠓⠜⠗⠊⠙â â â Ž" }, { "input": "harried", "output": "⠓⠜⠗⠊⠫" }, { "input": "harrier", "output": "⠓⠜⠗⠊⠻" }, { "input": "harrier's", "output": "⠓⠜⠗⠊⠻⠄⠎" }, { "input": "harriers", "output": "⠓⠜⠗⠊⠻⠎" }, { "input": "harries", "output": "⠓⠜⠗⠊⠑⠎" }, { "input": "harrow", "output": "⠓⠜⠗⠪" }, { "input": "harrow's", "output": "⠓⠜⠗⠪⠄⠎" }, { "input": "harrowed", "output": "⠓⠜⠗⠪⠫" }, { "input": "harrowing", "output": "⠓⠜⠗⠪⠌" }, { "input": "harrows", "output": "⠓⠜⠗⠪⠎" }, { "input": "harry", "output": "⠓⠜⠗⠽" }, { "input": "harrying", "output": "⠓⠜⠗⠽⠌" }, { "input": "harsh", "output": "⠓⠜⠩" }, { "input": "harsher", "output": "⠓⠜⠩⠻" }, { "input": "harshest", "output": "⠓⠜⠩⠑⠌" }, { "input": "harshly", "output": "⠓⠜⠩⠇⠽" }, { "input": "harshness", "output": "⠓⠜⠩⠰⠎" }, { "input": "harshness's", "output": "⠓⠜⠩⠰⠎⠄⠎" }, { "input": "hart", "output": "⠓⠜⠞" }, { "input": "hart's", "output": "⠓⠜⠞⠄⠎" }, { "input": "harts", "output": "⠓⠜⠞⠎" }, { "input": "harvest", "output": "⠓⠜⠧⠑⠌" }, { "input": "harvest's", "output": "⠓⠜⠧⠑⠌⠄⠎" }, { "input": "harvested", "output": "⠓⠜⠧⠑⠌⠫" }, { "input": "harvester", "output": "⠓⠜⠧⠑⠌⠻" }, { "input": "harvester's", "output": "⠓⠜⠧⠑⠌⠻⠄⠎" }, { "input": "harvesters", "output": "⠓⠜⠧⠑⠌⠻⠎" }, { "input": "harvesting", "output": "⠓⠜⠧⠑⠌⠌" }, { "input": "harvests", "output": "⠓⠜⠧⠑⠌⠎" }, { "input": "has", "output": "â “â â Ž" }, { "input": "hash", "output": "â “â â ©" }, { "input": "hash's", "output": "â “â â ©â „â Ž" }, { "input": "hashed", "output": "â “â â ©â «" }, { "input": "hashes", "output": "â “â â ©â ‘â Ž" }, { "input": "hashing", "output": "â “â â ©â Œ" }, { "input": "hashish", "output": "â “â â ©â Šâ ©" }, { "input": "hashish's", "output": "â “â â ©â Šâ ©â „â Ž" }, { "input": "hasp", "output": "â “â â Žâ " }, { "input": "hasp's", "output": "â “â â Žâ â „â Ž" }, { "input": "hasps", "output": "â “â â Žâ â Ž" }, { "input": "hassle", "output": "â “â â Žâ Žâ ‡â ‘" }, { "input": "hassle's", "output": "â “â â Žâ Žâ ‡â ‘â „â Ž" }, { "input": "hassled", "output": "â “â â Žâ Žâ ‡â «" }, { "input": "hassles", "output": "â “â â Žâ Žâ ‡â ‘â Ž" }, { "input": "hassling", "output": "â “â â Žâ Žâ ‡â Œ" }, { "input": "hassock", "output": "â “â â Žâ Žâ •⠉⠅" }, { "input": "hassock's", "output": "â “â â Žâ Žâ •⠉⠅⠄⠎" }, { "input": "hassocks", "output": "â “â â Žâ Žâ •⠉⠅⠎" }, { "input": "haste", "output": "â “â â Œâ ‘" }, { "input": "haste's", "output": "â “â â Œâ ‘â „â Ž" }, { "input": "hasted", "output": "â “â â Œâ «" }, { "input": "hasten", "output": "â “â â Œâ ¢" }, { "input": "hastened", "output": "â “â â Œâ ¢â «" }, { "input": "hastening", "output": "â “â â Œâ ¢â Œ" }, { "input": "hastens", "output": "â “â â Œâ ¢â Ž" }, { "input": "hastes", "output": "â “â â Œâ ‘â Ž" }, { "input": "hastier", "output": "â “â â Œâ Šâ »" }, { "input": "hastiest", "output": "â “â â Œâ Šâ ‘â Œ" }, { "input": "hastily", "output": "â “â â Œâ Šâ ‡â ½" }, { "input": "hastiness", "output": "â “â â Œâ Šâ °â Ž" }, { "input": "hastiness's", "output": "â “â â Œâ Šâ °â Žâ „â Ž" }, { "input": "hasting", "output": "â “â â Œâ Œ" }, { "input": "hasty", "output": "â “â â Œâ ½" }, { "input": "hat", "output": "â “â â ž" }, { "input": "hat's", "output": "â “â â žâ „â Ž" }, { "input": "hatch", "output": "â “â â žâ ¡" }, { "input": "hatch's", "output": "â “â â žâ ¡â „â Ž" }, { "input": "hatchback", "output": "â “â â žâ ¡â ƒâ â ‰â …" }, { "input": "hatchback's", "output": "â “â â žâ ¡â ƒâ â ‰â …â „â Ž" }, { "input": "hatchbacks", "output": "â “â â žâ ¡â ƒâ â ‰â …â Ž" }, { "input": "hatcheck", "output": "â “â â žâ ¡â ‘⠉⠅" }, { "input": "hatcheck's", "output": "â “â â žâ ¡â ‘⠉⠅⠄⠎" }, { "input": "hatchecks", "output": "â “â â žâ ¡â ‘⠉⠅⠎" }, { "input": "hatched", "output": "â “â â žâ ¡â «" }, { "input": "hatcheries", "output": "â “â â žâ ¡â »â Šâ ‘â Ž" }, { "input": "hatchery", "output": "â “â â žâ ¡â »â ½" }, { "input": "hatchery's", "output": "â “â â žâ ¡â »â ½â „â Ž" }, { "input": "hatches", "output": "â “â â žâ ¡â ‘â Ž" }, { "input": "hatchet", "output": "â “â â žâ ¡â ‘â ž" }, { "input": "hatchet's", "output": "â “â â žâ ¡â ‘â žâ „â Ž" }, { "input": "hatchets", "output": "â “â â žâ ¡â ‘â žâ Ž" }, { "input": "hatching", "output": "â “â â žâ ¡â Œ" }, { "input": "hatching's", "output": "â “â â žâ ¡â Œâ „â Ž" }, { "input": "hatchway", "output": "â “â â žâ ¡â ºâ â ½" }, { "input": "hatchway's", "output": "â “â â žâ ¡â ºâ â ½â „â Ž" }, { "input": "hatchways", "output": "â “â â žâ ¡â ºâ â ½â Ž" }, { "input": "hate", "output": "â “â â žâ ‘" }, { "input": "hate's", "output": "â “â â žâ ‘â „â Ž" }, { "input": "hated", "output": "â “â â žâ «" }, { "input": "hateful", "output": "â “â â žâ ‘â °â ‡" }, { "input": "hatefully", "output": "â “â â žâ ‘⠰⠇⠇⠽" }, { "input": "hatefulness", "output": "â “â â žâ ‘⠰⠇⠰⠎" }, { "input": "hatefulness's", "output": "â “â â žâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "hatemonger", "output": "â “â â žâ ‘â â °â ›â »" }, { "input": "hatemonger's", "output": "â “â â žâ ‘â â °â ›â »â „â Ž" }, { "input": "hatemongers", "output": "â “â â žâ ‘â â °â ›â »â Ž" }, { "input": "hater", "output": "â “â â žâ »" }, { "input": "hater's", "output": "â “â â žâ »â „â Ž" }, { "input": "haters", "output": "â “â â žâ »â Ž" }, { "input": "hates", "output": "â “â â žâ ‘â Ž" }, { "input": "hath", "output": "â “â â ¹" }, { "input": "hating", "output": "â “â â žâ Œ" }, { "input": "hatred", "output": "â “â â žâ —â «" }, { "input": "hatred's", "output": "â “â â žâ —â «â „â Ž" }, { "input": "hatreds", "output": "â “â â žâ —â «â Ž" }, { "input": "hats", "output": "â “â â žâ Ž" }, { "input": "hatted", "output": "â “â â žâ žâ «" }, { "input": "hatter", "output": "â “â â žâ žâ »" }, { "input": "hatter's", "output": "â “â â žâ žâ »â „â Ž" }, { "input": "hatters", "output": "â “â â žâ žâ »â Ž" }, { "input": "hatting", "output": "â “â â žâ žâ Œ" }, { "input": "hauberk", "output": "â “â â ¥â ƒâ »â …" }, { "input": "hauberk's", "output": "â “â â ¥â ƒâ »â …â „â Ž" }, { "input": "hauberks", "output": "â “â â ¥â ƒâ »â …â Ž" }, { "input": "haughtier", "output": "â “â â ¥â £â žâ Šâ »" }, { "input": "haughtiest", "output": "â “â â ¥â £â žâ Šâ ‘â Œ" }, { "input": "haughtily", "output": "â “â â ¥â £â žâ Šâ ‡â ½" }, { "input": "haughtiness", "output": "â “â â ¥â £â žâ Šâ °â Ž" }, { "input": "haughtiness's", "output": "â “â â ¥â £â žâ Šâ °â Žâ „â Ž" }, { "input": "haughty", "output": "â “â â ¥â £â žâ ½" }, { "input": "haul", "output": "â “â â ¥â ‡" }, { "input": "haul's", "output": "â “â â ¥â ‡â „â Ž" }, { "input": "haulage's", "output": "â “â â ¥â ‡â â ›â ‘â „â Ž" }, { "input": "hauled", "output": "â “â â ¥â ‡â «" }, { "input": "hauler", "output": "â “â â ¥â ‡â »" }, { "input": "hauler's", "output": "â “â â ¥â ‡â »â „â Ž" }, { "input": "haulers", "output": "â “â â ¥â ‡â »â Ž" }, { "input": "hauling", "output": "â “â â ¥â ‡â Œ" }, { "input": "hauls", "output": "â “â â ¥â ‡â Ž" }, { "input": "haunch", "output": "â “â â ¥â â ¡" }, { "input": "haunch's", "output": "â “â â ¥â â ¡â „â Ž" }, { "input": "haunches", "output": "â “â â ¥â â ¡â ‘â Ž" }, { "input": "haunt", "output": "â “â â ¥â â ž" }, { "input": "haunt's", "output": "â “â â ¥â â žâ „â Ž" }, { "input": "haunted", "output": "â “â â ¥â â žâ «" }, { "input": "haunter", "output": "â “â â ¥â â žâ »" }, { "input": "haunter's", "output": "â “â â ¥â â žâ »â „â Ž" }, { "input": "haunters", "output": "â “â â ¥â â žâ »â Ž" }, { "input": "haunting", "output": "â “â â ¥â â žâ Œ" }, { "input": "hauntingly", "output": "â “â â ¥â â žâ Œâ ‡â ½" }, { "input": "haunts", "output": "â “â â ¥â â žâ Ž" }, { "input": "hauteur", "output": "â “â â ¥â žâ ‘⠥⠗" }, { "input": "hauteur's", "output": "â “â â ¥â žâ ‘⠥⠗⠄⠎" }, { "input": "have", "output": "â “" }, { "input": "have's", "output": "â “â â §â ‘â „â Ž" }, { "input": "haven", "output": "â “â â §â ¢" }, { "input": "haven's", "output": "â “â â §â ¢â „â Ž" }, { "input": "havens", "output": "â “â â §â ¢â Ž" }, { "input": "haversack", "output": "â “â â §â »â Žâ â ‰â …" }, { "input": "haversack's", "output": "â “â â §â »â Žâ â ‰â …â „â Ž" }, { "input": "haversacks", "output": "â “â â §â »â Žâ â ‰â …â Ž" }, { "input": "haves", "output": "â “â â §â ‘â Ž" }, { "input": "having", "output": "â “â â §â Œ" }, { "input": "havoc", "output": "â “â â §â •â ‰" }, { "input": "havoc's", "output": "â “â â §â •⠉⠄⠎" }, { "input": "haw", "output": "â “â â º" }, { "input": "haw's", "output": "â “â â ºâ „â Ž" }, { "input": "hawed", "output": "â “â â ºâ «" }, { "input": "hawing", "output": "â “â â ºâ Œ" }, { "input": "hawk", "output": "â “â â ºâ …" }, { "input": "hawk's", "output": "â “â â ºâ …â „â Ž" }, { "input": "hawked", "output": "â “â â ºâ …â «" }, { "input": "hawker", "output": "â “â â ºâ …â »" }, { "input": "hawker's", "output": "â “â â ºâ …⠻⠄⠎" }, { "input": "hawkers", "output": "â “â â ºâ …⠻⠎" }, { "input": "hawking", "output": "â “â â ºâ …â Œ" }, { "input": "hawkish", "output": "â “â â ºâ …â Šâ ©" }, { "input": "hawkishness's", "output": "â “â â ºâ …â Šâ ©â °â Žâ „â Ž" }, { "input": "hawks", "output": "â “â â ºâ …â Ž" }, { "input": "haws", "output": "â “â â ºâ Ž" }, { "input": "hawser", "output": "â “â â ºâ Žâ »" }, { "input": "hawser's", "output": "â “â â ºâ Žâ »â „â Ž" }, { "input": "hawsers", "output": "â “â â ºâ Žâ »â Ž" }, { "input": "hawthorn", "output": "â “â â ºâ ¹â •â —â " }, { "input": "hawthorn's", "output": "â “â â ºâ ¹â •â —â â „â Ž" }, { "input": "hawthorns", "output": "â “â â ºâ ¹â •â —â â Ž" }, { "input": "hay", "output": "â “â â ½" }, { "input": "hay's", "output": "â “â â ½â „â Ž" }, { "input": "haycock", "output": "â “â â ½â ‰â •⠉⠅" }, { "input": "haycock's", "output": "â “â â ½â ‰â •⠉⠅⠄⠎" }, { "input": "haycocks", "output": "â “â â ½â ‰â •⠉⠅⠎" }, { "input": "hayed", "output": "â “â â ½â «" }, { "input": "haying", "output": "â “â â ½â Œ" }, { "input": "hayloft", "output": "â “â â ½â ‡â ·â ž" }, { "input": "hayloft's", "output": "â “â â ½â ‡â ·â žâ „â Ž" }, { "input": "haylofts", "output": "â “â â ½â ‡â ·â žâ Ž" }, { "input": "haymow", "output": "â “â â ½â â ª" }, { "input": "haymow's", "output": "â “â â ½â â ªâ „â Ž" }, { "input": "haymows", "output": "â “â â ½â â ªâ Ž" }, { "input": "hays", "output": "â “â â ½â Ž" }, { "input": "hayseed", "output": "â “â â ½â Žâ ‘â «" }, { "input": "hayseed's", "output": "â “â â ½â Žâ ‘â «â „â Ž" }, { "input": "hayseeds", "output": "â “â â ½â Žâ ‘â «â Ž" }, { "input": "haystack", "output": "â “â â ½â Œâ â ‰â …" }, { "input": "haystack's", "output": "â “â â ½â Œâ â ‰â …â „â Ž" }, { "input": "haystacks", "output": "â “â â ½â Œâ â ‰â …â Ž" }, { "input": "haywire", "output": "â “â â ½â ºâ Šâ —â ‘" }, { "input": "hazard", "output": "â “â â µâ œâ ™" }, { "input": "hazard's", "output": "â “â â µâ œâ ™â „â Ž" }, { "input": "hazarded", "output": "â “â â µâ œâ ™â «" }, { "input": "hazarding", "output": "â “â â µâ œâ ™â Œ" }, { "input": "hazardous", "output": "â “â â µâ œâ ™â ³â Ž" }, { "input": "hazardously", "output": "â “â â µâ œâ ™â ³â Žâ ‡â ½" }, { "input": "hazards", "output": "â “â â µâ œâ ™â Ž" }, { "input": "haze", "output": "â “â â µâ ‘" }, { "input": "haze's", "output": "â “â â µâ ‘â „â Ž" }, { "input": "hazed", "output": "â “â â µâ «" }, { "input": "hazel", "output": "â “â â µâ ‘â ‡" }, { "input": "hazel's", "output": "â “â â µâ ‘⠇⠄⠎" }, { "input": "hazelnut", "output": "â “â â µâ ‘â ‡â â ¥â ž" }, { "input": "hazelnut's", "output": "â “â â µâ ‘â ‡â â ¥â žâ „â Ž" }, { "input": "hazelnuts", "output": "â “â â µâ ‘â ‡â â ¥â žâ Ž" }, { "input": "hazels", "output": "â “â â µâ ‘⠇⠎" }, { "input": "hazer", "output": "â “â â µâ »" }, { "input": "hazer's", "output": "â “â â µâ »â „â Ž" }, { "input": "hazers", "output": "â “â â µâ »â Ž" }, { "input": "hazes", "output": "â “â â µâ ‘â Ž" }, { "input": "hazier", "output": "â “â â µâ Šâ »" }, { "input": "haziest", "output": "â “â â µâ Šâ ‘â Œ" }, { "input": "hazily", "output": "â “â â µâ Šâ ‡â ½" }, { "input": "haziness", "output": "â “â â µâ Šâ °â Ž" }, { "input": "haziness's", "output": "â “â â µâ Šâ °â Žâ „â Ž" }, { "input": "hazing", "output": "â “â â µâ Œ" }, { "input": "hazing's", "output": "â “â â µâ Œâ „â Ž" }, { "input": "hazings", "output": "â “â â µâ Œâ Ž" }, { "input": "hazy", "output": "â “â â µâ ½" }, { "input": "he", "output": "â “â ‘" }, { "input": "he's", "output": "â “â ‘â „â Ž" }, { "input": "head", "output": "â “â ‚â ™" }, { "input": "head's", "output": "⠓⠂⠙⠄⠎" }, { "input": "headache", "output": "â “â ‚â ™â â ¡â ‘" }, { "input": "headache's", "output": "â “â ‚â ™â â ¡â ‘â „â Ž" }, { "input": "headaches", "output": "â “â ‚â ™â â ¡â ‘â Ž" }, { "input": "headband", "output": "⠓⠂⠙⠃⠯" }, { "input": "headband's", "output": "⠓⠂⠙⠃⠯⠄⠎" }, { "input": "headbands", "output": "⠓⠂⠙⠃⠯⠎" }, { "input": "headboard", "output": "⠓⠂⠙⠃⠕⠜⠙" }, { "input": "headboard's", "output": "⠓⠂⠙⠃⠕⠜⠙⠄⠎" }, { "input": "headboards", "output": "⠓⠂⠙⠃⠕⠜⠙⠎" }, { "input": "headdress", "output": "⠓⠂⠙⠙⠗⠑⠎⠎" }, { "input": "headdress's", "output": "⠓⠂⠙⠙⠗⠑⠎⠎⠄⠎" }, { "input": "headdresses", "output": "⠓⠂⠙⠙⠗⠑⠎⠎⠑⠎" }, { "input": "headed", "output": "⠓⠂⠙⠫" }, { "input": "header", "output": "⠓⠂⠙⠻" }, { "input": "header's", "output": "⠓⠂⠙⠻⠄⠎" }, { "input": "headers", "output": "⠓⠂⠙⠻⠎" }, { "input": "headfirst", "output": "⠓⠂⠙⠋⠌" }, { "input": "headgear", "output": "⠓⠂⠙⠛⠑⠜" }, { "input": "headgear's", "output": "⠓⠂⠙⠛⠑⠜⠄⠎" }, { "input": "headhunter", "output": "⠓⠂⠙⠓⠥â â žâ »" }, { "input": "headhunter's", "output": "⠓⠂⠙⠓⠥â â žâ »â „â Ž" }, { "input": "headhunters", "output": "⠓⠂⠙⠓⠥â â žâ »â Ž" }, { "input": "headhunting's", "output": "⠓⠂⠙⠓⠥â â žâ Œâ „â Ž" }, { "input": "headier", "output": "⠓⠂⠙⠊⠻" }, { "input": "headiest", "output": "⠓⠂⠙⠊⠑⠌" }, { "input": "headily", "output": "⠓⠂⠙⠊⠇⠽" }, { "input": "headiness", "output": "⠓⠂⠙⠊⠰⠎" }, { "input": "headiness's", "output": "⠓⠂⠙⠊⠰⠎⠄⠎" }, { "input": "heading", "output": "⠓⠂⠙⠌" }, { "input": "heading's", "output": "⠓⠂⠙⠌⠄⠎" }, { "input": "headings", "output": "⠓⠂⠙⠌⠎" }, { "input": "headland", "output": "⠓⠂⠙⠇⠯" }, { "input": "headland's", "output": "⠓⠂⠙⠇⠯⠄⠎" }, { "input": "headlands", "output": "⠓⠂⠙⠇⠯⠎" }, { "input": "headless", "output": "⠓⠂⠙⠨⠎" }, { "input": "headlight", "output": "⠓⠂⠙⠇⠊⠣⠞" }, { "input": "headlight's", "output": "⠓⠂⠙⠇⠊⠣⠞⠄⠎" }, { "input": "headlights", "output": "⠓⠂⠙⠇⠊⠣⠞⠎" }, { "input": "headline", "output": "⠓⠂⠙⠇⠔⠑" }, { "input": "headline's", "output": "⠓⠂⠙⠇⠔⠑⠄⠎" }, { "input": "headlined", "output": "⠓⠂⠙⠇⠔⠫" }, { "input": "headlines", "output": "⠓⠂⠙⠇⠔⠑⠎" }, { "input": "headlining", "output": "⠓⠂⠙⠇⠔⠌" }, { "input": "headlock", "output": "⠓⠂⠙⠇⠕⠉⠅" }, { "input": "headlock's", "output": "⠓⠂⠙⠇⠕⠉⠅⠄⠎" }, { "input": "headlocks", "output": "⠓⠂⠙⠇⠕⠉⠅⠎" }, { "input": "headlong", "output": "⠓⠂⠙⠇⠰⠛" }, { "input": "headmaster", "output": "â “â ‚â ™â â â Œâ »" }, { "input": "headmaster's", "output": "â “â ‚â ™â â â Œâ »â „â Ž" }, { "input": "headmasters", "output": "â “â ‚â ™â â â Œâ »â Ž" }, { "input": "headmistress", "output": "â “â ‚â ™â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "headmistress's", "output": "â “â ‚â ™â â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "headmistresses", "output": "â “â ‚â ™â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "headphone", "output": "â “â ‚â ™â â “â â •" }, { "input": "headphone's", "output": "â “â ‚â ™â â “â â •â „â Ž" }, { "input": "headphones", "output": "â “â ‚â ™â â “â â •â Ž" }, { "input": "headpiece", "output": "â “â ‚â ™â â Šâ ‘⠉⠑" }, { "input": "headpiece's", "output": "â “â ‚â ™â â Šâ ‘⠉⠑⠄⠎" }, { "input": "headpieces", "output": "â “â ‚â ™â â Šâ ‘⠉⠑⠎" }, { "input": "headpin", "output": "â “â ‚â ™â â ”" }, { "input": "headpin's", "output": "â “â ‚â ™â â ”â „â Ž" }, { "input": "headpins", "output": "â “â ‚â ™â â ”â Ž" }, { "input": "headquarter", "output": "⠓⠂⠙⠟⠥⠜⠞⠻" }, { "input": "headquarters", "output": "⠓⠂⠙⠟⠥⠜⠞⠻⠎" }, { "input": "headquarters's", "output": "⠓⠂⠙⠟⠥⠜⠞⠻⠎⠄⠎" }, { "input": "headrest", "output": "⠓⠂⠙⠗⠑⠌" }, { "input": "headrest's", "output": "⠓⠂⠙⠗⠑⠌⠄⠎" }, { "input": "headrests", "output": "⠓⠂⠙⠗⠑⠌⠎" }, { "input": "headroom", "output": "⠓⠂⠙⠗⠕⠕â " }, { "input": "headroom's", "output": "⠓⠂⠙⠗⠕⠕â â „â Ž" }, { "input": "heads", "output": "⠓⠂⠙⠎" }, { "input": "headset", "output": "⠓⠂⠙⠎⠑⠞" }, { "input": "headset's", "output": "⠓⠂⠙⠎⠑⠞⠄⠎" }, { "input": "headsets", "output": "⠓⠂⠙⠎⠑⠞⠎" }, { "input": "headshrinker", "output": "⠓⠂⠙⠩⠗⠔⠅⠻" }, { "input": "headshrinker's", "output": "⠓⠂⠙⠩⠗⠔⠅⠻⠄⠎" }, { "input": "headshrinkers", "output": "⠓⠂⠙⠩⠗⠔⠅⠻⠎" }, { "input": "headsman", "output": "⠓⠂⠙⠎â â â " }, { "input": "headsman's", "output": "⠓⠂⠙⠎â â â â „â Ž" }, { "input": "headsmen", "output": "⠓⠂⠙⠎â â ¢" }, { "input": "headstall", "output": "⠓⠂⠙⠌â â ‡â ‡" }, { "input": "headstall's", "output": "⠓⠂⠙⠌â â ‡â ‡â „â Ž" }, { "input": "headstalls", "output": "⠓⠂⠙⠌â â ‡â ‡â Ž" }, { "input": "headstand", "output": "⠓⠂⠙⠌⠯" }, { "input": "headstand's", "output": "⠓⠂⠙⠌⠯⠄⠎" }, { "input": "headstands", "output": "⠓⠂⠙⠌⠯⠎" }, { "input": "headstone", "output": "⠓⠂⠙⠌â â •" }, { "input": "headstone's", "output": "⠓⠂⠙⠌â â •â „â Ž" }, { "input": "headstones", "output": "⠓⠂⠙⠌â â •â Ž" }, { "input": "headstrong", "output": "⠓⠂⠙⠌⠗⠰⠛" }, { "input": "headwaiter", "output": "⠓⠂⠙⠺â â Šâ žâ »" }, { "input": "headwaiter's", "output": "⠓⠂⠙⠺â â Šâ žâ »â „â Ž" }, { "input": "headwaiters", "output": "⠓⠂⠙⠺â â Šâ žâ »â Ž" }, { "input": "headwaters", "output": "⠓⠂⠙⠺â â žâ »â Ž" }, { "input": "headwaters's", "output": "⠓⠂⠙⠺â â žâ »â Žâ „â Ž" }, { "input": "headway", "output": "⠓⠂⠙⠺â â ½" }, { "input": "headway's", "output": "⠓⠂⠙⠺â â ½â „â Ž" }, { "input": "headwind", "output": "⠓⠂⠙⠺⠔⠙" }, { "input": "headwind's", "output": "⠓⠂⠙⠺⠔⠙⠄⠎" }, { "input": "headwinds", "output": "⠓⠂⠙⠺⠔⠙⠎" }, { "input": "headword", "output": "⠓⠂⠙⠘⠺" }, { "input": "headword's", "output": "⠓⠂⠙⠘⠺⠄⠎" }, { "input": "headwords", "output": "⠓⠂⠙⠘⠺⠎" }, { "input": "heady", "output": "⠓⠂⠙⠽" }, { "input": "heal", "output": "â “â ‚â ‡" }, { "input": "healed", "output": "⠓⠂⠇⠫" }, { "input": "healer", "output": "⠓⠂⠇⠻" }, { "input": "healer's", "output": "⠓⠂⠇⠻⠄⠎" }, { "input": "healers", "output": "⠓⠂⠇⠻⠎" }, { "input": "healing", "output": "⠓⠂⠇⠌" }, { "input": "heals", "output": "⠓⠂⠇⠎" }, { "input": "health", "output": "⠓⠂⠇⠹" }, { "input": "health's", "output": "⠓⠂⠇⠹⠄⠎" }, { "input": "healthful", "output": "⠓⠂⠇⠹⠰⠇" }, { "input": "healthfully", "output": "⠓⠂⠇⠹⠰⠇⠇⠽" }, { "input": "healthfulness", "output": "⠓⠂⠇⠹⠰⠇⠰⠎" }, { "input": "healthfulness's", "output": "⠓⠂⠇⠹⠰⠇⠰⠎⠄⠎" }, { "input": "healthier", "output": "⠓⠂⠇⠹⠊⠻" }, { "input": "healthiest", "output": "⠓⠂⠇⠹⠊⠑⠌" }, { "input": "healthily", "output": "⠓⠂⠇⠹⠊⠇⠽" }, { "input": "healthiness", "output": "⠓⠂⠇⠹⠊⠰⠎" }, { "input": "healthiness's", "output": "⠓⠂⠇⠹⠊⠰⠎⠄⠎" }, { "input": "healthy", "output": "⠓⠂⠇⠹⠽" }, { "input": "heap", "output": "â “â ‚â " }, { "input": "heap's", "output": "â “â ‚â â „â Ž" }, { "input": "heaped", "output": "â “â ‚â â «" }, { "input": "heaping", "output": "â “â ‚â â Œ" }, { "input": "heaps", "output": "â “â ‚â â Ž" }, { "input": "hear", "output": "â “â ‘â œ" }, { "input": "heard", "output": "⠓⠑⠜⠙" }, { "input": "hearer", "output": "⠓⠑⠜⠻" }, { "input": "hearer's", "output": "⠓⠑⠜⠻⠄⠎" }, { "input": "hearers", "output": "⠓⠑⠜⠻⠎" }, { "input": "hearing", "output": "⠓⠑⠜⠌" }, { "input": "hearing's", "output": "⠓⠑⠜⠌⠄⠎" }, { "input": "hearings", "output": "⠓⠑⠜⠌⠎" }, { "input": "hearken", "output": "⠓⠑⠜⠅⠢" }, { "input": "hearkened", "output": "⠓⠑⠜⠅⠢⠫" }, { "input": "hearkening", "output": "⠓⠑⠜⠅⠢⠌" }, { "input": "hearkens", "output": "⠓⠑⠜⠅⠢⠎" }, { "input": "hears", "output": "⠓⠑⠜⠎" }, { "input": "hearsay", "output": "⠓⠑⠜⠎â â ½" }, { "input": "hearsay's", "output": "⠓⠑⠜⠎â â ½â „â Ž" }, { "input": "hearse", "output": "⠓⠑⠜⠎⠑" }, { "input": "hearse's", "output": "⠓⠑⠜⠎⠑⠄⠎" }, { "input": "hearses", "output": "⠓⠑⠜⠎⠑⠎" }, { "input": "heart", "output": "⠓⠑⠜⠞" }, { "input": "heart's", "output": "⠓⠑⠜⠞⠄⠎" }, { "input": "heartache", "output": "⠓⠑⠜⠞â â ¡â ‘" }, { "input": "heartache's", "output": "⠓⠑⠜⠞â â ¡â ‘â „â Ž" }, { "input": "heartaches", "output": "⠓⠑⠜⠞â â ¡â ‘â Ž" }, { "input": "heartbeat", "output": "⠓⠑⠜⠞⠃⠂⠞" }, { "input": "heartbeat's", "output": "⠓⠑⠜⠞⠃⠂⠞⠄⠎" }, { "input": "heartbeats", "output": "⠓⠑⠜⠞⠃⠂⠞⠎" }, { "input": "heartbreak", "output": "⠓⠑⠜⠞⠃⠗⠂⠅" }, { "input": "heartbreak's", "output": "⠓⠑⠜⠞⠃⠗⠂⠅⠄⠎" }, { "input": "heartbreaking", "output": "⠓⠑⠜⠞⠃⠗⠂⠅⠌" }, { "input": "heartbreaks", "output": "⠓⠑⠜⠞⠃⠗⠂⠅⠎" }, { "input": "heartbroken", "output": "⠓⠑⠜⠞⠃⠗⠕⠅⠢" }, { "input": "heartburn", "output": "⠓⠑⠜⠞⠃⠥⠗â " }, { "input": "heartburn's", "output": "⠓⠑⠜⠞⠃⠥⠗â â „â Ž" }, { "input": "hearten", "output": "⠓⠑⠜⠞⠢" }, { "input": "heartened", "output": "⠓⠑⠜⠞⠢⠫" }, { "input": "heartening", "output": "⠓⠑⠜⠞⠢⠌" }, { "input": "heartens", "output": "⠓⠑⠜⠞⠢⠎" }, { "input": "heartfelt", "output": "⠓⠑⠜⠞⠋⠑⠇⠞" }, { "input": "hearth", "output": "⠓⠑⠜⠹" }, { "input": "hearth's", "output": "⠓⠑⠜⠹⠄⠎" }, { "input": "hearths", "output": "⠓⠑⠜⠹⠎" }, { "input": "hearthstone", "output": "⠓⠑⠜⠹⠌â â •" }, { "input": "hearthstone's", "output": "⠓⠑⠜⠹⠌â â •â „â Ž" }, { "input": "hearthstones", "output": "⠓⠑⠜⠹⠌â â •â Ž" }, { "input": "heartier", "output": "⠓⠑⠜⠞⠊⠻" }, { "input": "hearties", "output": "⠓⠑⠜⠞⠊⠑⠎" }, { "input": "heartiest", "output": "⠓⠑⠜⠞⠊⠑⠌" }, { "input": "heartily", "output": "⠓⠑⠜⠞⠊⠇⠽" }, { "input": "heartiness", "output": "⠓⠑⠜⠞⠊⠰⠎" }, { "input": "heartiness's", "output": "⠓⠑⠜⠞⠊⠰⠎⠄⠎" }, { "input": "heartland", "output": "⠓⠑⠜⠞⠇⠯" }, { "input": "heartland's", "output": "⠓⠑⠜⠞⠇⠯⠄⠎" }, { "input": "heartlands", "output": "⠓⠑⠜⠞⠇⠯⠎" }, { "input": "heartless", "output": "⠓⠑⠜⠞⠨⠎" }, { "input": "heartlessly", "output": "⠓⠑⠜⠞⠨⠎⠇⠽" }, { "input": "heartlessness", "output": "⠓⠑⠜⠞⠨⠎⠰⠎" }, { "input": "heartlessness's", "output": "⠓⠑⠜⠞⠨⠎⠰⠎⠄⠎" }, { "input": "heartrending", "output": "⠓⠑⠜⠞⠗⠢⠙⠌" }, { "input": "heartrendingly", "output": "⠓⠑⠜⠞⠗⠢⠙⠌⠇⠽" }, { "input": "hearts", "output": "⠓⠑⠜⠞⠎" }, { "input": "heartsick", "output": "⠓⠑⠜⠞⠎⠊⠉⠅" }, { "input": "heartsickness", "output": "⠓⠑⠜⠞⠎⠊⠉⠅⠰⠎" }, { "input": "heartsickness's", "output": "⠓⠑⠜⠞⠎⠊⠉⠅⠰⠎⠄⠎" }, { "input": "heartstrings", "output": "⠓⠑⠜⠞⠌⠗⠌⠎" }, { "input": "heartstrings's", "output": "⠓⠑⠜⠞⠌⠗⠌⠎⠄⠎" }, { "input": "heartthrob", "output": "⠓⠑⠜⠞⠹⠗⠕⠃" }, { "input": "heartthrob's", "output": "⠓⠑⠜⠞⠹⠗⠕⠃⠄⠎" }, { "input": "heartthrobs", "output": "⠓⠑⠜⠞⠹⠗⠕⠃⠎" }, { "input": "heartwarming", "output": "⠓⠑⠜⠞⠺⠜â â Œ" }, { "input": "heartwood", "output": "⠓⠑⠜⠞⠺⠕⠕⠙" }, { "input": "heartwood's", "output": "⠓⠑⠜⠞⠺⠕⠕⠙⠄⠎" }, { "input": "hearty", "output": "⠓⠑⠜⠞⠽" }, { "input": "hearty's", "output": "⠓⠑⠜⠞⠽⠄⠎" }, { "input": "heat", "output": "â “â ‚â ž" }, { "input": "heat's", "output": "â “â ‚â žâ „â Ž" }, { "input": "heated", "output": "â “â ‚â žâ «" }, { "input": "heatedly", "output": "⠓⠂⠞⠫⠇⠽" }, { "input": "heater", "output": "â “â ‚â žâ »" }, { "input": "heater's", "output": "⠓⠂⠞⠻⠄⠎" }, { "input": "heaters", "output": "⠓⠂⠞⠻⠎" }, { "input": "heath", "output": "â “â ‚â ¹" }, { "input": "heath's", "output": "⠓⠂⠹⠄⠎" }, { "input": "heathen", "output": "â “â ‚â ®â " }, { "input": "heathen's", "output": "â “â ‚â ®â â „â Ž" }, { "input": "heathendom", "output": "â “â ‚â ®â â ™â •â " }, { "input": "heathendom's", "output": "â “â ‚â ®â â ™â •â â „â Ž" }, { "input": "heathenish", "output": "â “â ‚â ®â â Šâ ©" }, { "input": "heathenism", "output": "â “â ‚â ®â â Šâ Žâ " }, { "input": "heathenism's", "output": "â “â ‚â ®â â Šâ Žâ â „â Ž" }, { "input": "heathens", "output": "â “â ‚â ®â â Ž" }, { "input": "heather", "output": "⠓⠂⠮⠗" }, { "input": "heather's", "output": "⠓⠂⠮⠗⠄⠎" }, { "input": "heaths", "output": "⠓⠂⠹⠎" }, { "input": "heating", "output": "â “â ‚â žâ Œ" }, { "input": "heating's", "output": "⠓⠂⠞⠌⠄⠎" }, { "input": "heats", "output": "â “â ‚â žâ Ž" }, { "input": "heatstroke", "output": "⠓⠂⠞⠌⠗⠕⠅⠑" }, { "input": "heatstroke's", "output": "⠓⠂⠞⠌⠗⠕⠅⠑⠄⠎" }, { "input": "heave", "output": "â “â ‚â §â ‘" }, { "input": "heave's", "output": "â “â ‚â §â ‘â „â Ž" }, { "input": "heaved", "output": "â “â ‚â §â «" }, { "input": "heaven", "output": "â “â ‚â §â ¢" }, { "input": "heaven's", "output": "⠓⠂⠧⠢⠄⠎" }, { "input": "heavenlier", "output": "⠓⠂⠧⠢⠇⠊⠻" }, { "input": "heavenliest", "output": "⠓⠂⠧⠢⠇⠊⠑⠌" }, { "input": "heavenly", "output": "⠓⠂⠧⠢⠇⠽" }, { "input": "heavens", "output": "⠓⠂⠧⠢⠎" }, { "input": "heavens's", "output": "⠓⠂⠧⠢⠎⠄⠎" }, { "input": "heavenward", "output": "⠓⠂⠧⠢⠺⠜⠙" }, { "input": "heavenwards", "output": "⠓⠂⠧⠢⠺⠜⠙⠎" }, { "input": "heaver", "output": "â “â ‚â §â »" }, { "input": "heaver's", "output": "⠓⠂⠧⠻⠄⠎" }, { "input": "heavers", "output": "⠓⠂⠧⠻⠎" }, { "input": "heaves", "output": "â “â ‚â §â ‘â Ž" }, { "input": "heavier", "output": "â “â ‚â §â Šâ »" }, { "input": "heavies", "output": "â “â ‚â §â Šâ ‘â Ž" }, { "input": "heaviest", "output": "â “â ‚â §â Šâ ‘â Œ" }, { "input": "heavily", "output": "⠓⠂⠧⠊⠇⠽" }, { "input": "heaviness", "output": "â “â ‚â §â Šâ °â Ž" }, { "input": "heaviness's", "output": "â “â ‚â §â Šâ °â Žâ „â Ž" }, { "input": "heaving", "output": "â “â ‚â §â Œ" }, { "input": "heavy", "output": "â “â ‚â §â ½" }, { "input": "heavy's", "output": "⠓⠂⠧⠽⠄⠎" }, { "input": "heavyhearted", "output": "⠓⠂⠧⠽⠓⠑⠜⠞⠫" }, { "input": "heavyset", "output": "⠓⠂⠧⠽⠎⠑⠞" }, { "input": "heavyweight", "output": "⠓⠂⠧⠽⠺⠑⠊⠣⠞" }, { "input": "heavyweight's", "output": "⠓⠂⠧⠽⠺⠑⠊⠣⠞⠄⠎" }, { "input": "heavyweights", "output": "⠓⠂⠧⠽⠺⠑⠊⠣⠞⠎" }, { "input": "heck", "output": "⠓⠑⠉⠅" }, { "input": "heck's", "output": "⠓⠑⠉⠅⠄⠎" }, { "input": "heckle", "output": "⠓⠑⠉⠅⠇⠑" }, { "input": "heckle's", "output": "⠓⠑⠉⠅⠇⠑⠄⠎" }, { "input": "heckled", "output": "⠓⠑⠉⠅⠇⠫" }, { "input": "heckler", "output": "⠓⠑⠉⠅⠇⠻" }, { "input": "heckler's", "output": "⠓⠑⠉⠅⠇⠻⠄⠎" }, { "input": "hecklers", "output": "⠓⠑⠉⠅⠇⠻⠎" }, { "input": "heckles", "output": "⠓⠑⠉⠅⠇⠑⠎" }, { "input": "heckling", "output": "⠓⠑⠉⠅⠇⠌" }, { "input": "heckling's", "output": "⠓⠑⠉⠅⠇⠌⠄⠎" }, { "input": "hectare", "output": "⠓⠑⠉⠞⠜⠑" }, { "input": "hectare's", "output": "⠓⠑⠉⠞⠜⠑⠄⠎" }, { "input": "hectares", "output": "⠓⠑⠉⠞⠜⠑⠎" }, { "input": "hectic", "output": "⠓⠑⠉⠞⠊⠉" }, { "input": "hectically", "output": "⠓⠑⠉⠞⠊⠉⠠⠽" }, { "input": "hectogram", "output": "⠓⠑⠉⠞⠕⠛⠗â â " }, { "input": "hectogram's", "output": "⠓⠑⠉⠞⠕⠛⠗â â â „â Ž" }, { "input": "hectograms", "output": "⠓⠑⠉⠞⠕⠛⠗â â â Ž" }, { "input": "hectometer", "output": "⠓⠑⠉⠞⠕â â ‘â žâ »" }, { "input": "hectometer's", "output": "⠓⠑⠉⠞⠕â â ‘⠞⠻⠄⠎" }, { "input": "hectometers", "output": "⠓⠑⠉⠞⠕â â ‘⠞⠻⠎" }, { "input": "hector", "output": "⠓⠑⠉⠞⠕⠗" }, { "input": "hector's", "output": "⠓⠑⠉⠞⠕⠗⠄⠎" }, { "input": "hectored", "output": "⠓⠑⠉⠞⠕⠗⠫" }, { "input": "hectoring", "output": "⠓⠑⠉⠞⠕⠗⠌" }, { "input": "hectors", "output": "⠓⠑⠉⠞⠕⠗⠎" }, { "input": "hedge", "output": "⠓⠫⠛⠑" }, { "input": "hedge's", "output": "⠓⠫⠛⠑⠄⠎" }, { "input": "hedged", "output": "⠓⠫⠛⠫" }, { "input": "hedgehog", "output": "⠓⠫⠛⠑⠓⠕⠛" }, { "input": "hedgehog's", "output": "⠓⠫⠛⠑⠓⠕⠛⠄⠎" }, { "input": "hedgehogs", "output": "⠓⠫⠛⠑⠓⠕⠛⠎" }, { "input": "hedgehop", "output": "⠓⠫⠛⠑⠓⠕â " }, { "input": "hedgehopped", "output": "⠓⠫⠛⠑⠓⠕â â â «" }, { "input": "hedgehopping", "output": "⠓⠫⠛⠑⠓⠕â â â Œ" }, { "input": "hedgehops", "output": "⠓⠫⠛⠑⠓⠕â â Ž" }, { "input": "hedger", "output": "⠓⠫⠛⠻" }, { "input": "hedger's", "output": "⠓⠫⠛⠻⠄⠎" }, { "input": "hedgerow", "output": "⠓⠫⠛⠑⠗⠪" }, { "input": "hedgerow's", "output": "⠓⠫⠛⠑⠗⠪⠄⠎" }, { "input": "hedgerows", "output": "⠓⠫⠛⠑⠗⠪⠎" }, { "input": "hedgers", "output": "⠓⠫⠛⠻⠎" }, { "input": "hedges", "output": "⠓⠫⠛⠑⠎" }, { "input": "hedging", "output": "⠓⠫⠛⠌" }, { "input": "hedonism", "output": "â “â «â •â â Šâ Žâ " }, { "input": "hedonism's", "output": "â “â «â •â â Šâ Žâ â „â Ž" }, { "input": "hedonist", "output": "â “â «â •â â Šâ Œ" }, { "input": "hedonist's", "output": "â “â «â •â â Šâ Œâ „â Ž" }, { "input": "hedonistic", "output": "â “â «â •â â Šâ Œâ Šâ ‰" }, { "input": "hedonists", "output": "â “â «â •â â Šâ Œâ Ž" }, { "input": "heed", "output": "â “â ‘â «" }, { "input": "heed's", "output": "â “â ‘â «â „â Ž" }, { "input": "heeded", "output": "â “â ‘â «â «" }, { "input": "heedful", "output": "â “â ‘â «â °â ‡" }, { "input": "heedfully", "output": "⠓⠑⠫⠰⠇⠇⠽" }, { "input": "heeding", "output": "â “â ‘â «â Œ" }, { "input": "heedless", "output": "⠓⠑⠫⠨⠎" }, { "input": "heedlessly", "output": "⠓⠑⠫⠨⠎⠇⠽" }, { "input": "heedlessness", "output": "⠓⠑⠫⠨⠎⠰⠎" }, { "input": "heedlessness's", "output": "⠓⠑⠫⠨⠎⠰⠎⠄⠎" }, { "input": "heeds", "output": "â “â ‘â «â Ž" }, { "input": "heehaw", "output": "â “â ‘â ‘â “â â º" }, { "input": "heehaw's", "output": "â “â ‘â ‘â “â â ºâ „â Ž" }, { "input": "heehawed", "output": "â “â ‘â ‘â “â â ºâ «" }, { "input": "heehawing", "output": "â “â ‘â ‘â “â â ºâ Œ" }, { "input": "heehaws", "output": "â “â ‘â ‘â “â â ºâ Ž" }, { "input": "heel", "output": "â “â ‘â ‘â ‡" }, { "input": "heel's", "output": "⠓⠑⠑⠇⠄⠎" }, { "input": "heeled", "output": "⠓⠑⠑⠇⠫" }, { "input": "heeling", "output": "⠓⠑⠑⠇⠌" }, { "input": "heelless", "output": "⠓⠑⠑⠇⠨⠎" }, { "input": "heels", "output": "⠓⠑⠑⠇⠎" }, { "input": "heft", "output": "â “â ‘â ‹â ž" }, { "input": "heft's", "output": "â “â ‘â ‹â žâ „â Ž" }, { "input": "hefted", "output": "â “â ‘â ‹â žâ «" }, { "input": "heftier", "output": "â “â ‘â ‹â žâ Šâ »" }, { "input": "heftiest", "output": "â “â ‘â ‹â žâ Šâ ‘â Œ" }, { "input": "heftiness", "output": "â “â ‘â ‹â žâ Šâ °â Ž" }, { "input": "heftiness's", "output": "â “â ‘â ‹â žâ Šâ °â Žâ „â Ž" }, { "input": "hefting", "output": "â “â ‘â ‹â žâ Œ" }, { "input": "hefts", "output": "â “â ‘â ‹â žâ Ž" }, { "input": "hefty", "output": "â “â ‘â ‹â žâ ½" }, { "input": "hegemony", "output": "⠓⠑⠛⠑â â •â â ½" }, { "input": "hegemony's", "output": "⠓⠑⠛⠑â â •â â ½â „â Ž" }, { "input": "hegira", "output": "⠓⠑⠛⠊⠗â " }, { "input": "hegira's", "output": "⠓⠑⠛⠊⠗â â „â Ž" }, { "input": "hegiras", "output": "⠓⠑⠛⠊⠗â â Ž" }, { "input": "heifer", "output": "â “â ‘â Šâ ‹â »" }, { "input": "heifer's", "output": "⠓⠑⠊⠋⠻⠄⠎" }, { "input": "heifers", "output": "⠓⠑⠊⠋⠻⠎" }, { "input": "height", "output": "⠓⠑⠊⠣⠞" }, { "input": "height's", "output": "⠓⠑⠊⠣⠞⠄⠎" }, { "input": "heighten", "output": "⠓⠑⠊⠣⠞⠢" }, { "input": "heightened", "output": "⠓⠑⠊⠣⠞⠢⠫" }, { "input": "heightening", "output": "⠓⠑⠊⠣⠞⠢⠌" }, { "input": "heightens", "output": "⠓⠑⠊⠣⠞⠢⠎" }, { "input": "heights", "output": "⠓⠑⠊⠣⠞⠎" }, { "input": "heinous", "output": "⠓⠑⠔⠳⠎" }, { "input": "heinously", "output": "⠓⠑⠔⠳⠎⠇⠽" }, { "input": "heinousness", "output": "⠓⠑⠔⠳⠎⠰⠎" }, { "input": "heinousness's", "output": "⠓⠑⠔⠳⠎⠰⠎⠄⠎" }, { "input": "heir", "output": "â “â ‘â Šâ —" }, { "input": "heir's", "output": "â “â ‘â Šâ —â „â Ž" }, { "input": "heiress", "output": "â “â ‘â Šâ —â ‘â Žâ Ž" }, { "input": "heiress's", "output": "â “â ‘â Šâ —â ‘â Žâ Žâ „â Ž" }, { "input": "heiresses", "output": "â “â ‘â Šâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "heirloom", "output": "⠓⠑⠊⠗⠇⠕⠕â " }, { "input": "heirloom's", "output": "⠓⠑⠊⠗⠇⠕⠕â â „â Ž" }, { "input": "heirlooms", "output": "⠓⠑⠊⠗⠇⠕⠕â â Ž" }, { "input": "heirs", "output": "â “â ‘â Šâ —â Ž" }, { "input": "heist", "output": "â “â ‘â Šâ Œ" }, { "input": "heist's", "output": "⠓⠑⠊⠌⠄⠎" }, { "input": "heisted", "output": "⠓⠑⠊⠌⠫" }, { "input": "heisting", "output": "⠓⠑⠊⠌⠌" }, { "input": "heists", "output": "⠓⠑⠊⠌⠎" }, { "input": "held", "output": "⠓⠑⠇⠙" }, { "input": "helical", "output": "⠓⠑⠇⠊⠉â â ‡" }, { "input": "helices", "output": "⠓⠑⠇⠊⠉⠑⠎" }, { "input": "helicopter", "output": "⠓⠑⠇⠊⠉⠕â â žâ »" }, { "input": "helicopter's", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â „â Ž" }, { "input": "helicoptered", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â «" }, { "input": "helicoptering", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â Œ" }, { "input": "helicopters", "output": "⠓⠑⠇⠊⠉⠕â â žâ »â Ž" }, { "input": "heliocentric", "output": "⠓⠑⠇⠊⠕⠉⠢⠞⠗⠊⠉" }, { "input": "heliotrope", "output": "⠓⠑⠇⠊⠕⠞⠗⠕â â ‘" }, { "input": "heliotrope's", "output": "⠓⠑⠇⠊⠕⠞⠗⠕â â ‘â „â Ž" }, { "input": "heliotropes", "output": "⠓⠑⠇⠊⠕⠞⠗⠕â â ‘â Ž" }, { "input": "heliport", "output": "⠓⠑⠇⠊â â •â —â ž" }, { "input": "heliport's", "output": "⠓⠑⠇⠊â â •â —â žâ „â Ž" }, { "input": "heliports", "output": "⠓⠑⠇⠊â â •â —â žâ Ž" }, { "input": "helium", "output": "⠓⠑⠇⠊⠥â " }, { "input": "helium's", "output": "⠓⠑⠇⠊⠥â â „â Ž" }, { "input": "helix", "output": "⠓⠑⠇⠊⠭" }, { "input": "helix's", "output": "⠓⠑⠇⠊⠭⠄⠎" }, { "input": "hell", "output": "⠓⠑⠇⠇" }, { "input": "hell's", "output": "⠓⠑⠇⠇⠄⠎" }, { "input": "hellbent", "output": "⠓⠑⠇⠇⠃⠢⠞" }, { "input": "hellcat", "output": "⠓⠑⠇⠇⠉â â ž" }, { "input": "hellcat's", "output": "⠓⠑⠇⠇⠉â â žâ „â Ž" }, { "input": "hellcats", "output": "⠓⠑⠇⠇⠉â â žâ Ž" }, { "input": "hellebore", "output": "⠓⠑⠇⠇⠑⠃⠕⠗⠑" }, { "input": "hellebore's", "output": "⠓⠑⠇⠇⠑⠃⠕⠗⠑⠄⠎" }, { "input": "hellhole", "output": "⠓⠑⠇⠇⠓⠕⠇⠑" }, { "input": "hellhole's", "output": "⠓⠑⠇⠇⠓⠕⠇⠑⠄⠎" }, { "input": "hellholes", "output": "⠓⠑⠇⠇⠓⠕⠇⠑⠎" }, { "input": "hellion", "output": "⠓⠑⠇⠇⠊⠕â " }, { "input": "hellion's", "output": "⠓⠑⠇⠇⠊⠕â â „â Ž" }, { "input": "hellions", "output": "⠓⠑⠇⠇⠊⠕â â Ž" }, { "input": "hellish", "output": "⠓⠑⠇⠇⠊⠩" }, { "input": "hellishly", "output": "⠓⠑⠇⠇⠊⠩⠇⠽" }, { "input": "hellishness", "output": "⠓⠑⠇⠇⠊⠩⠰⠎" }, { "input": "hellishness's", "output": "⠓⠑⠇⠇⠊⠩⠰⠎⠄⠎" }, { "input": "hello", "output": "⠓⠑⠇⠇⠕" }, { "input": "hello's", "output": "⠓⠑⠇⠇⠕⠄⠎" }, { "input": "hellos", "output": "⠓⠑⠇⠇⠕⠎" }, { "input": "helm", "output": "â “â ‘â ‡â " }, { "input": "helm's", "output": "â “â ‘â ‡â â „â Ž" }, { "input": "helmet", "output": "â “â ‘â ‡â â ‘â ž" }, { "input": "helmet's", "output": "â “â ‘â ‡â â ‘â žâ „â Ž" }, { "input": "helmets", "output": "â “â ‘â ‡â â ‘â žâ Ž" }, { "input": "helms", "output": "â “â ‘â ‡â â Ž" }, { "input": "helmsman", "output": "â “â ‘â ‡â â Žâ â â " }, { "input": "helmsman's", "output": "â “â ‘â ‡â â Žâ â â â „â Ž" }, { "input": "helmsmen", "output": "â “â ‘â ‡â â Žâ â ¢" }, { "input": "helot", "output": "⠓⠑⠇⠕⠞" }, { "input": "helot's", "output": "⠓⠑⠇⠕⠞⠄⠎" }, { "input": "helots", "output": "⠓⠑⠇⠕⠞⠎" }, { "input": "help", "output": "â “â ‘â ‡â " }, { "input": "help's", "output": "â “â ‘â ‡â â „â Ž" }, { "input": "helped", "output": "â “â ‘â ‡â â «" }, { "input": "helper", "output": "â “â ‘â ‡â â »" }, { "input": "helper's", "output": "â “â ‘â ‡â â »â „â Ž" }, { "input": "helpers", "output": "â “â ‘â ‡â â »â Ž" }, { "input": "helpful", "output": "â “â ‘â ‡â â °â ‡" }, { "input": "helpfully", "output": "â “â ‘â ‡â â °â ‡â ‡â ½" }, { "input": "helpfulness", "output": "â “â ‘â ‡â â °â ‡â °â Ž" }, { "input": "helpfulness's", "output": "â “â ‘â ‡â â °â ‡â °â Žâ „â Ž" }, { "input": "helping", "output": "â “â ‘â ‡â â Œ" }, { "input": "helping's", "output": "â “â ‘â ‡â â Œâ „â Ž" }, { "input": "helpings", "output": "â “â ‘â ‡â â Œâ Ž" }, { "input": "helpless", "output": "â “â ‘â ‡â â ¨â Ž" }, { "input": "helplessly", "output": "â “â ‘â ‡â â ¨â Žâ ‡â ½" }, { "input": "helplessness", "output": "â “â ‘â ‡â â ¨â Žâ °â Ž" }, { "input": "helplessness's", "output": "â “â ‘â ‡â â ¨â Žâ °â Žâ „â Ž" }, { "input": "helpmate", "output": "â “â ‘â ‡â â â â žâ ‘" }, { "input": "helpmate's", "output": "â “â ‘â ‡â â â â žâ ‘â „â Ž" }, { "input": "helpmates", "output": "â “â ‘â ‡â â â â žâ ‘â Ž" }, { "input": "helps", "output": "â “â ‘â ‡â â Ž" }, { "input": "helve", "output": "⠓⠑⠇⠧⠑" }, { "input": "helve's", "output": "⠓⠑⠇⠧⠑⠄⠎" }, { "input": "helves", "output": "⠓⠑⠇⠧⠑⠎" }, { "input": "hem", "output": "â “â ‘â " }, { "input": "hem's", "output": "â “â ‘â â „â Ž" }, { "input": "hematite", "output": "â “â ‘â â â žâ Šâ žâ ‘" }, { "input": "hematite's", "output": "â “â ‘â â â žâ Šâ žâ ‘â „â Ž" }, { "input": "hematologic", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠉" }, { "input": "hematological", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "hematologist", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠌" }, { "input": "hematologist's", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "hematologists", "output": "â “â ‘â â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "hematology", "output": "â “â ‘â â â žâ •⠇⠕⠛⠽" }, { "input": "hematology's", "output": "â “â ‘â â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "heme", "output": "â “â ‘â â ‘" }, { "input": "heme's", "output": "â “â ‘â â ‘â „â Ž" }, { "input": "hemisphere", "output": "â “â ‘â â Šâ Žâ â “⠻⠑" }, { "input": "hemisphere's", "output": "â “â ‘â â Šâ Žâ â “⠻⠑⠄⠎" }, { "input": "hemispheres", "output": "â “â ‘â â Šâ Žâ â “⠻⠑⠎" }, { "input": "hemispheric", "output": "â “â ‘â â Šâ Žâ â “⠻⠊⠉" }, { "input": "hemispherical", "output": "â “â ‘â â Šâ Žâ â “⠻⠊⠉â â ‡" }, { "input": "hemline", "output": "â “â ‘â â ‡â ”â ‘" }, { "input": "hemline's", "output": "â “â ‘â â ‡â ”â ‘â „â Ž" }, { "input": "hemlines", "output": "â “â ‘â â ‡â ”â ‘â Ž" }, { "input": "hemlock", "output": "â “â ‘â â ‡â •⠉⠅" }, { "input": "hemlock's", "output": "â “â ‘â â ‡â •⠉⠅⠄⠎" }, { "input": "hemlocks", "output": "â “â ‘â â ‡â •⠉⠅⠎" }, { "input": "hemmed", "output": "â “â ‘â â â «" }, { "input": "hemmer", "output": "â “â ‘â â â »" }, { "input": "hemmer's", "output": "â “â ‘â â â »â „â Ž" }, { "input": "hemmers", "output": "â “â ‘â â â »â Ž" }, { "input": "hemming", "output": "â “â ‘â â â Œ" }, { "input": "hemoglobin", "output": "â “â ‘â â •⠛⠇⠕⠃⠔" }, { "input": "hemoglobin's", "output": "â “â ‘â â •⠛⠇⠕⠃⠔⠄⠎" }, { "input": "hemophilia", "output": "â “â ‘â â •â â “⠊⠇⠊â " }, { "input": "hemophilia's", "output": "â “â ‘â â •â â “⠊⠇⠊â â „â Ž" }, { "input": "hemophiliac", "output": "â “â ‘â â •â â “⠊⠇⠊â â ‰" }, { "input": "hemophiliac's", "output": "â “â ‘â â •â â “⠊⠇⠊â â ‰â „â Ž" }, { "input": "hemophiliacs", "output": "â “â ‘â â •â â “⠊⠇⠊â â ‰â Ž" }, { "input": "hemorrhage", "output": "â “â ‘â â •â —â —â “â â ›â ‘" }, { "input": "hemorrhage's", "output": "â “â ‘â â •â —â —â “â â ›â ‘â „â Ž" }, { "input": "hemorrhaged", "output": "â “â ‘â â •â —â —â “â â ›â «" }, { "input": "hemorrhages", "output": "â “â ‘â â •â —â —â “â â ›â ‘â Ž" }, { "input": "hemorrhagic", "output": "â “â ‘â â •â —â —â “â â ›â Šâ ‰" }, { "input": "hemorrhaging", "output": "â “â ‘â â •â —â —â “â â ›â Œ" }, { "input": "hemorrhoid", "output": "â “â ‘â â •â —â —â “â •â Šâ ™" }, { "input": "hemorrhoid's", "output": "â “â ‘â â •⠗⠗⠓⠕⠊⠙⠄⠎" }, { "input": "hemorrhoids", "output": "â “â ‘â â •⠗⠗⠓⠕⠊⠙⠎" }, { "input": "hemostat", "output": "â “â ‘â â •â Œâ â ž" }, { "input": "hemostat's", "output": "â “â ‘â â •â Œâ â žâ „â Ž" }, { "input": "hemostats", "output": "â “â ‘â â •â Œâ â žâ Ž" }, { "input": "hemp", "output": "â “â ‘â â " }, { "input": "hemp's", "output": "â “â ‘â â â „â Ž" }, { "input": "hempen", "output": "â “â ‘â â â ¢" }, { "input": "hems", "output": "â “â ‘â â Ž" }, { "input": "hemstitch", "output": "â “â ‘â â Œâ Šâ žâ ¡" }, { "input": "hemstitch's", "output": "â “â ‘â â Œâ Šâ žâ ¡â „â Ž" }, { "input": "hemstitched", "output": "â “â ‘â â Œâ Šâ žâ ¡â «" }, { "input": "hemstitches", "output": "â “â ‘â â Œâ Šâ žâ ¡â ‘â Ž" }, { "input": "hemstitching", "output": "â “â ‘â â Œâ Šâ žâ ¡â Œ" }, { "input": "hen", "output": "â “â ¢" }, { "input": "hen's", "output": "⠓⠢⠄⠎" }, { "input": "hence", "output": "â “â °â ‘" }, { "input": "henceforth", "output": "â “â °â ‘â ¿â ¹" }, { "input": "henceforward", "output": "⠓⠰⠑⠿⠺⠜⠙" }, { "input": "henchman", "output": "⠓⠢⠡â â â " }, { "input": "henchman's", "output": "⠓⠢⠡â â â â „â Ž" }, { "input": "henchmen", "output": "⠓⠢⠡â â ¢" }, { "input": "henna", "output": "â “â ¢â â " }, { "input": "henna's", "output": "â “â ¢â â â „â Ž" }, { "input": "hennaed", "output": "â “â ¢â â â «" }, { "input": "hennaing", "output": "â “â ¢â â â Œ" }, { "input": "hennas", "output": "â “â ¢â â â Ž" }, { "input": "henpeck", "output": "â “â ¢â â ‘⠉⠅" }, { "input": "henpecked", "output": "â “â ¢â â ‘⠉⠅⠫" }, { "input": "henpecking", "output": "â “â ¢â â ‘⠉⠅⠌" }, { "input": "henpecks", "output": "â “â ¢â â ‘⠉⠅⠎" }, { "input": "hens", "output": "⠓⠢⠎" }, { "input": "hep", "output": "â “â ‘â " }, { "input": "heparin", "output": "â “â ‘â â œâ ”" }, { "input": "heparin's", "output": "â “â ‘â â œâ ”â „â Ž" }, { "input": "hepatic", "output": "â “â ‘â â â žâ Šâ ‰" }, { "input": "hepatitis", "output": "â “â ‘â â â žâ Šâ žâ Šâ Ž" }, { "input": "hepatitis's", "output": "â “â ‘â â â žâ Šâ žâ Šâ Žâ „â Ž" }, { "input": "hepper", "output": "â “â ‘â â â »" }, { "input": "heppest", "output": "â “â ‘â â â ‘â Œ" }, { "input": "heptagon", "output": "â “â ‘â â žâ â ›â •â " }, { "input": "heptagon's", "output": "â “â ‘â â žâ â ›â •â â „â Ž" }, { "input": "heptagons", "output": "â “â ‘â â žâ â ›â •â â Ž" }, { "input": "her", "output": "â “â »" }, { "input": "her's", "output": "⠓⠻⠄⠎" }, { "input": "herald", "output": "â “â »â â ‡â ™" }, { "input": "herald's", "output": "â “â »â â ‡â ™â „â Ž" }, { "input": "heralded", "output": "â “â »â â ‡â ™â «" }, { "input": "heraldic", "output": "â “â »â â ‡â ™â Šâ ‰" }, { "input": "heralding", "output": "â “â »â â ‡â ™â Œ" }, { "input": "heraldry", "output": "â “â »â â ‡â ™â —â ½" }, { "input": "heraldry's", "output": "â “â »â â ‡â ™â —⠽⠄⠎" }, { "input": "heralds", "output": "â “â »â â ‡â ™â Ž" }, { "input": "herb", "output": "⠓⠻⠃" }, { "input": "herb's", "output": "⠓⠻⠃⠄⠎" }, { "input": "herbaceous", "output": "⠓⠻⠃â â ‰â ‘⠳⠎" }, { "input": "herbage", "output": "⠓⠻⠃â â ›â ‘" }, { "input": "herbage's", "output": "⠓⠻⠃â â ›â ‘â „â Ž" }, { "input": "herbal", "output": "⠓⠻⠃â â ‡" }, { "input": "herbalist", "output": "⠓⠻⠃â â ‡â Šâ Œ" }, { "input": "herbalist's", "output": "⠓⠻⠃â â ‡â Šâ Œâ „â Ž" }, { "input": "herbalists", "output": "⠓⠻⠃â â ‡â Šâ Œâ Ž" }, { "input": "herbicidal", "output": "⠓⠻⠃⠊⠉⠊⠙â â ‡" }, { "input": "herbicide", "output": "⠓⠻⠃⠊⠉⠊⠙⠑" }, { "input": "herbicide's", "output": "⠓⠻⠃⠊⠉⠊⠙⠑⠄⠎" }, { "input": "herbicides", "output": "⠓⠻⠃⠊⠉⠊⠙⠑⠎" }, { "input": "herbivore", "output": "⠓⠻⠃⠊⠧⠕⠗⠑" }, { "input": "herbivore's", "output": "⠓⠻⠃⠊⠧⠕⠗⠑⠄⠎" }, { "input": "herbivores", "output": "⠓⠻⠃⠊⠧⠕⠗⠑⠎" }, { "input": "herbivorous", "output": "⠓⠻⠃⠊⠧⠕⠗⠳⠎" }, { "input": "herbs", "output": "⠓⠻⠃⠎" }, { "input": "herculean", "output": "⠓⠻⠉⠥⠇⠂â " }, { "input": "herd", "output": "⠓⠻⠙" }, { "input": "herd's", "output": "⠓⠻⠙⠄⠎" }, { "input": "herded", "output": "⠓⠻⠙⠫" }, { "input": "herder", "output": "⠓⠻⠙⠻" }, { "input": "herder's", "output": "⠓⠻⠙⠻⠄⠎" }, { "input": "herders", "output": "⠓⠻⠙⠻⠎" }, { "input": "herding", "output": "⠓⠻⠙⠌" }, { "input": "herds", "output": "⠓⠻⠙⠎" }, { "input": "herdsman", "output": "⠓⠻⠙⠎â â â " }, { "input": "herdsman's", "output": "⠓⠻⠙⠎â â â â „â Ž" }, { "input": "herdsmen", "output": "⠓⠻⠙⠎â â ¢" }, { "input": "here", "output": "â â “" }, { "input": "here's", "output": "â â “â „â Ž" }, { "input": "hereabout", "output": "â â “â â ƒ" }, { "input": "hereabouts", "output": "â â “â â ƒâ Ž" }, { "input": "hereafter", "output": "â â “â â ‹" }, { "input": "hereafter's", "output": "â â “â â ‹â „â Ž" }, { "input": "hereafters", "output": "â â “â â ‹â Ž" }, { "input": "hereby", "output": "â â “⠃⠽" }, { "input": "hereditary", "output": "⠓⠻⠫⠊⠞⠜⠽" }, { "input": "heredity", "output": "⠓⠻⠫⠰⠽" }, { "input": "heredity's", "output": "⠓⠻⠫⠰⠽⠄⠎" }, { "input": "herein", "output": "â â “â ”" }, { "input": "hereof", "output": "â â “â ·" }, { "input": "hereon", "output": "â â “â •â " }, { "input": "heresies", "output": "⠓⠻⠑⠎⠊⠑⠎" }, { "input": "heresy", "output": "⠓⠻⠑⠎⠽" }, { "input": "heresy's", "output": "⠓⠻⠑⠎⠽⠄⠎" }, { "input": "heretic", "output": "⠓⠻⠑⠞⠊⠉" }, { "input": "heretic's", "output": "⠓⠻⠑⠞⠊⠉⠄⠎" }, { "input": "heretical", "output": "⠓⠻⠑⠞⠊⠉â â ‡" }, { "input": "heretics", "output": "⠓⠻⠑⠞⠊⠉⠎" }, { "input": "hereto", "output": "â â “â žâ •" }, { "input": "heretofore", "output": "â â “â žâ •â ¿â ‘" }, { "input": "hereunto", "output": "â â “â ¥â â žâ •" }, { "input": "hereupon", "output": "â â “⠘⠥" }, { "input": "herewith", "output": "â â “â ¾" }, { "input": "heritable", "output": "⠓⠻⠊⠞â â ¼" }, { "input": "heritage", "output": "⠓⠻⠊⠞â â ›â ‘" }, { "input": "heritage's", "output": "⠓⠻⠊⠞â â ›â ‘â „â Ž" }, { "input": "heritages", "output": "⠓⠻⠊⠞â â ›â ‘â Ž" }, { "input": "hermaphrodite", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠑" }, { "input": "hermaphrodite's", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠑⠄⠎" }, { "input": "hermaphrodites", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠑⠎" }, { "input": "hermaphroditic", "output": "â “â »â â â â “⠗⠕⠙⠊⠞⠊⠉" }, { "input": "hermetic", "output": "â “â »â â ‘â žâ Šâ ‰" }, { "input": "hermetical", "output": "â “â »â â ‘â žâ Šâ ‰â â ‡" }, { "input": "hermetically", "output": "â “â »â â ‘⠞⠊⠉⠠⠽" }, { "input": "hermit", "output": "â “â »â â Šâ ž" }, { "input": "hermit's", "output": "â “â »â â Šâ žâ „â Ž" }, { "input": "hermitage", "output": "â “â »â â Šâ žâ â ›â ‘" }, { "input": "hermitage's", "output": "â “â »â â Šâ žâ â ›â ‘â „â Ž" }, { "input": "hermitages", "output": "â “â »â â Šâ žâ â ›â ‘â Ž" }, { "input": "hermits", "output": "â “â »â â Šâ žâ Ž" }, { "input": "hernia", "output": "â “â »â â Šâ " }, { "input": "hernia's", "output": "â “â »â â Šâ â „â Ž" }, { "input": "hernial", "output": "â “â »â â Šâ â ‡" }, { "input": "hernias", "output": "â “â »â â Šâ â Ž" }, { "input": "herniate", "output": "â “â »â â Šâ â žâ ‘" }, { "input": "herniated", "output": "â “â »â â Šâ â žâ «" }, { "input": "herniates", "output": "â “â »â â Šâ â žâ ‘â Ž" }, { "input": "herniating", "output": "â “â »â â Šâ â žâ Œ" }, { "input": "herniation", "output": "â “â »â â Šâ  â " }, { "input": "herniation's", "output": "â “â »â â Šâ  â â „â Ž" }, { "input": "hero", "output": "⠓⠻⠕" }, { "input": "hero's", "output": "⠓⠻⠕⠄⠎" }, { "input": "heroes", "output": "⠓⠻⠕⠑⠎" }, { "input": "heroic", "output": "⠓⠻⠕⠊⠉" }, { "input": "heroically", "output": "⠓⠻⠕⠊⠉⠠⠽" }, { "input": "heroics", "output": "⠓⠻⠕⠊⠉⠎" }, { "input": "heroics's", "output": "⠓⠻⠕⠊⠉⠎⠄⠎" }, { "input": "heroin", "output": "⠓⠻⠕⠔" }, { "input": "heroin's", "output": "⠓⠻⠕⠔⠄⠎" }, { "input": "heroine", "output": "⠓⠻⠕⠔⠑" }, { "input": "heroine's", "output": "⠓⠻⠕⠔⠑⠄⠎" }, { "input": "heroins", "output": "⠓⠻⠕⠔⠎" }, { "input": "heroism", "output": "⠓⠻⠕⠊⠎â " }, { "input": "heroism's", "output": "⠓⠻⠕⠊⠎â â „â Ž" }, { "input": "heron", "output": "⠓⠻⠕â " }, { "input": "heron's", "output": "⠓⠻⠕â â „â Ž" }, { "input": "herons", "output": "⠓⠻⠕â â Ž" }, { "input": "herpes", "output": "â “â »â â ‘â Ž" }, { "input": "herpes's", "output": "â “â »â â ‘â Žâ „â Ž" }, { "input": "herpetologist", "output": "â “â »â â ‘⠞⠕⠇⠕⠛⠊⠌" }, { "input": "herpetologist's", "output": "â “â »â â ‘⠞⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "herpetologists", "output": "â “â »â â ‘⠞⠕⠇⠕⠛⠊⠌⠎" }, { "input": "herpetology", "output": "â “â »â â ‘⠞⠕⠇⠕⠛⠽" }, { "input": "herpetology's", "output": "â “â »â â ‘⠞⠕⠇⠕⠛⠽⠄⠎" }, { "input": "herring", "output": "⠓⠻⠗⠌" }, { "input": "herring's", "output": "⠓⠻⠗⠌⠄⠎" }, { "input": "herringbone", "output": "⠓⠻⠗⠌⠃â â •" }, { "input": "herringbone's", "output": "⠓⠻⠗⠌⠃â â •â „â Ž" }, { "input": "herrings", "output": "⠓⠻⠗⠌⠎" }, { "input": "hers", "output": "⠓⠻⠎" }, { "input": "herself", "output": "⠓⠻⠋" }, { "input": "hertz", "output": "⠓⠻⠞⠵" }, { "input": "hertz's", "output": "⠓⠻⠞⠵⠄⠎" }, { "input": "hes", "output": "â “â ‘â Ž" }, { "input": "hesitance", "output": "⠓⠑⠎⠊⠞⠨⠑" }, { "input": "hesitance's", "output": "⠓⠑⠎⠊⠞⠨⠑⠄⠎" }, { "input": "hesitancy", "output": "â “â ‘â Žâ Šâ žâ â â ‰â ½" }, { "input": "hesitancy's", "output": "â “â ‘â Žâ Šâ žâ â â ‰â ½â „â Ž" }, { "input": "hesitant", "output": "â “â ‘â Žâ Šâ žâ â â ž" }, { "input": "hesitantly", "output": "â “â ‘â Žâ Šâ žâ â â žâ ‡â ½" }, { "input": "hesitate", "output": "â “â ‘â Žâ Šâ žâ â žâ ‘" }, { "input": "hesitated", "output": "â “â ‘â Žâ Šâ žâ â žâ «" }, { "input": "hesitates", "output": "â “â ‘â Žâ Šâ žâ â žâ ‘â Ž" }, { "input": "hesitating", "output": "â “â ‘â Žâ Šâ žâ â žâ Œ" }, { "input": "hesitatingly", "output": "â “â ‘â Žâ Šâ žâ â žâ Œâ ‡â ½" }, { "input": "hesitation", "output": "â “â ‘â Žâ Šâ žâ  â " }, { "input": "hesitation's", "output": "â “â ‘â Žâ Šâ žâ  â â „â Ž" }, { "input": "hesitations", "output": "â “â ‘â Žâ Šâ žâ  â â Ž" }, { "input": "heterodox", "output": "⠓⠑⠞⠻⠕⠙⠕⠭" }, { "input": "heterodoxy", "output": "⠓⠑⠞⠻⠕⠙⠕⠭⠽" }, { "input": "heterodoxy's", "output": "⠓⠑⠞⠻⠕⠙⠕⠭⠽⠄⠎" }, { "input": "heterogeneity", "output": "⠓⠑⠞⠻⠕⠛⠢⠑⠰⠽" }, { "input": "heterogeneity's", "output": "⠓⠑⠞⠻⠕⠛⠢⠑⠰⠽⠄⠎" }, { "input": "heterogeneous", "output": "⠓⠑⠞⠻⠕⠛⠢⠑⠳⠎" }, { "input": "heterogeneously", "output": "⠓⠑⠞⠻⠕⠛⠢⠑⠳⠎⠇⠽" }, { "input": "heterosexual", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡" }, { "input": "heterosexual's", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡â „â Ž" }, { "input": "heterosexuality", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡â °â ½" }, { "input": "heterosexuality's", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡â °â ½â „â Ž" }, { "input": "heterosexuals", "output": "⠓⠑⠞⠻⠕⠎⠑⠭⠥â â ‡â Ž" }, { "input": "heuristic", "output": "⠓⠑⠥⠗⠊⠌⠊⠉" }, { "input": "heuristic's", "output": "⠓⠑⠥⠗⠊⠌⠊⠉⠄⠎" }, { "input": "heuristically", "output": "⠓⠑⠥⠗⠊⠌⠊⠉⠠⠽" }, { "input": "heuristics", "output": "⠓⠑⠥⠗⠊⠌⠊⠉⠎" }, { "input": "heuristics's", "output": "⠓⠑⠥⠗⠊⠌⠊⠉⠎⠄⠎" }, { "input": "hew", "output": "â “â ‘â º" }, { "input": "hewed", "output": "⠓⠑⠺⠫" }, { "input": "hewer", "output": "⠓⠑⠺⠻" }, { "input": "hewer's", "output": "⠓⠑⠺⠻⠄⠎" }, { "input": "hewers", "output": "⠓⠑⠺⠻⠎" }, { "input": "hewing", "output": "⠓⠑⠺⠌" }, { "input": "hews", "output": "⠓⠑⠺⠎" }, { "input": "hex", "output": "â “â ‘â ­" }, { "input": "hex's", "output": "â “â ‘â ­â „â Ž" }, { "input": "hexadecimal", "output": "â “â ‘â ­â â ™â ‘⠉⠊â â â ‡" }, { "input": "hexagon", "output": "â “â ‘â ­â â ›â •â " }, { "input": "hexagon's", "output": "â “â ‘â ­â â ›â •â â „â Ž" }, { "input": "hexagonal", "output": "â “â ‘â ­â â ›â •â â â ‡" }, { "input": "hexagons", "output": "â “â ‘â ­â â ›â •â â Ž" }, { "input": "hexagram", "output": "â “â ‘â ­â â ›â —â â " }, { "input": "hexagram's", "output": "â “â ‘â ­â â ›â —â â â „â Ž" }, { "input": "hexagrams", "output": "â “â ‘â ­â â ›â —â â â Ž" }, { "input": "hexameter", "output": "â “â ‘â ­â â â ‘â žâ »" }, { "input": "hexameter's", "output": "â “â ‘â ­â â â ‘⠞⠻⠄⠎" }, { "input": "hexameters", "output": "â “â ‘â ­â â â ‘⠞⠻⠎" }, { "input": "hexed", "output": "â “â ‘â ­â «" }, { "input": "hexes", "output": "â “â ‘â ­â ‘â Ž" }, { "input": "hexing", "output": "â “â ‘â ­â Œ" }, { "input": "hey", "output": "â “â ‘â ½" }, { "input": "heyday", "output": "â “â ‘â ½â â ™" }, { "input": "heyday's", "output": "â “â ‘â ½â â ™â „â Ž" }, { "input": "heydays", "output": "â “â ‘â ½â â ™â Ž" }, { "input": "hi", "output": "â “â Š" }, { "input": "hiatus", "output": "â “â Šâ â žâ ¥â Ž" }, { "input": "hiatus's", "output": "â “â Šâ â žâ ¥â Žâ „â Ž" }, { "input": "hiatuses", "output": "â “â Šâ â žâ ¥â Žâ ‘â Ž" }, { "input": "hibachi", "output": "â “â Šâ ƒâ â ¡â Š" }, { "input": "hibachi's", "output": "â “â Šâ ƒâ â ¡â Šâ „â Ž" }, { "input": "hibachis", "output": "â “â Šâ ƒâ â ¡â Šâ Ž" }, { "input": "hibernate", "output": "⠓⠊⠃⠻â â â žâ ‘" }, { "input": "hibernated", "output": "⠓⠊⠃⠻â â â žâ «" }, { "input": "hibernates", "output": "⠓⠊⠃⠻â â â žâ ‘â Ž" }, { "input": "hibernating", "output": "⠓⠊⠃⠻â â â žâ Œ" }, { "input": "hibernation", "output": "⠓⠊⠃⠻â â  â " }, { "input": "hibernation's", "output": "⠓⠊⠃⠻â â  â â „â Ž" }, { "input": "hibernator", "output": "⠓⠊⠃⠻â â â žâ •â —" }, { "input": "hibernator's", "output": "⠓⠊⠃⠻â â â žâ •â —â „â Ž" }, { "input": "hibernators", "output": "⠓⠊⠃⠻â â â žâ •â —â Ž" }, { "input": "hibiscus", "output": "⠓⠊⠃⠊⠎⠉⠥⠎" }, { "input": "hibiscus's", "output": "⠓⠊⠃⠊⠎⠉⠥⠎⠄⠎" }, { "input": "hibiscuses", "output": "⠓⠊⠃⠊⠎⠉⠥⠎⠑⠎" }, { "input": "hiccough", "output": "⠓⠊⠒⠳⠣" }, { "input": "hiccoughed", "output": "⠓⠊⠒⠳⠣⠫" }, { "input": "hiccoughing", "output": "⠓⠊⠒⠳⠣⠌" }, { "input": "hiccoughs", "output": "⠓⠊⠒⠳⠣⠎" }, { "input": "hiccup", "output": "â “â Šâ ’â ¥â " }, { "input": "hiccup's", "output": "â “â Šâ ’â ¥â â „â Ž" }, { "input": "hiccuped", "output": "â “â Šâ ’â ¥â â «" }, { "input": "hiccuping", "output": "â “â Šâ ’â ¥â â Œ" }, { "input": "hiccups", "output": "â “â Šâ ’â ¥â â Ž" }, { "input": "hick", "output": "⠓⠊⠉⠅" }, { "input": "hick's", "output": "⠓⠊⠉⠅⠄⠎" }, { "input": "hickey", "output": "⠓⠊⠉⠅⠑⠽" }, { "input": "hickey's", "output": "⠓⠊⠉⠅⠑⠽⠄⠎" }, { "input": "hickeys", "output": "⠓⠊⠉⠅⠑⠽⠎" }, { "input": "hickories", "output": "⠓⠊⠉⠅⠕⠗⠊⠑⠎" }, { "input": "hickory", "output": "⠓⠊⠉⠅⠕⠗⠽" }, { "input": "hickory's", "output": "⠓⠊⠉⠅⠕⠗⠽⠄⠎" }, { "input": "hicks", "output": "⠓⠊⠉⠅⠎" }, { "input": "hid", "output": "â “â Šâ ™" }, { "input": "hidden", "output": "⠓⠊⠲⠢" }, { "input": "hide", "output": "⠓⠊⠙⠑" }, { "input": "hide's", "output": "⠓⠊⠙⠑⠄⠎" }, { "input": "hideaway", "output": "⠓⠊⠙⠑â â ºâ â ½" }, { "input": "hideaway's", "output": "⠓⠊⠙⠑â â ºâ â ½â „â Ž" }, { "input": "hideaways", "output": "⠓⠊⠙⠑â â ºâ â ½â Ž" }, { "input": "hidebound", "output": "⠓⠊⠙⠑⠃⠨⠙" }, { "input": "hided", "output": "⠓⠊⠙⠫" }, { "input": "hideous", "output": "⠓⠊⠙⠑⠳⠎" }, { "input": "hideously", "output": "⠓⠊⠙⠑⠳⠎⠇⠽" }, { "input": "hideousness", "output": "⠓⠊⠙⠑⠳⠎⠰⠎" }, { "input": "hideousness's", "output": "⠓⠊⠙⠑⠳⠎⠰⠎⠄⠎" }, { "input": "hideout", "output": "⠓⠊⠙⠑⠳⠞" }, { "input": "hideout's", "output": "⠓⠊⠙⠑⠳⠞⠄⠎" }, { "input": "hideouts", "output": "⠓⠊⠙⠑⠳⠞⠎" }, { "input": "hider", "output": "⠓⠊⠙⠻" }, { "input": "hider's", "output": "⠓⠊⠙⠻⠄⠎" }, { "input": "hiders", "output": "⠓⠊⠙⠻⠎" }, { "input": "hides", "output": "⠓⠊⠙⠑⠎" }, { "input": "hiding", "output": "⠓⠊⠙⠌" }, { "input": "hiding's", "output": "⠓⠊⠙⠌⠄⠎" }, { "input": "hie", "output": "â “â Šâ ‘" }, { "input": "hied", "output": "â “â Šâ «" }, { "input": "hieing", "output": "â “â Šâ ‘â Œ" }, { "input": "hierarchic", "output": "⠓⠊⠻⠜⠡⠊⠉" }, { "input": "hierarchical", "output": "⠓⠊⠻⠜⠡⠊⠉â â ‡" }, { "input": "hierarchically", "output": "⠓⠊⠻⠜⠡⠊⠉⠠⠽" }, { "input": "hierarchies", "output": "⠓⠊⠻⠜⠡⠊⠑⠎" }, { "input": "hierarchy", "output": "⠓⠊⠻⠜⠡⠽" }, { "input": "hierarchy's", "output": "⠓⠊⠻⠜⠡⠽⠄⠎" }, { "input": "hieroglyphic", "output": "⠓⠊⠻⠕⠛⠇⠽â â “â Šâ ‰" }, { "input": "hieroglyphic's", "output": "⠓⠊⠻⠕⠛⠇⠽â â “⠊⠉⠄⠎" }, { "input": "hieroglyphics", "output": "⠓⠊⠻⠕⠛⠇⠽â â “⠊⠉⠎" }, { "input": "hies", "output": "â “â Šâ ‘â Ž" }, { "input": "high", "output": "â “â Šâ £" }, { "input": "high's", "output": "⠓⠊⠣⠄⠎" }, { "input": "highball", "output": "⠓⠊⠣⠃â â ‡â ‡" }, { "input": "highball's", "output": "⠓⠊⠣⠃â â ‡â ‡â „â Ž" }, { "input": "highballs", "output": "⠓⠊⠣⠃â â ‡â ‡â Ž" }, { "input": "highborn", "output": "⠓⠊⠣⠃⠕⠗â " }, { "input": "highboy", "output": "⠓⠊⠣⠃⠕⠽" }, { "input": "highboy's", "output": "⠓⠊⠣⠃⠕⠽⠄⠎" }, { "input": "highboys", "output": "⠓⠊⠣⠃⠕⠽⠎" }, { "input": "highbrow", "output": "⠓⠊⠣⠃⠗⠪" }, { "input": "highbrow's", "output": "⠓⠊⠣⠃⠗⠪⠄⠎" }, { "input": "highbrows", "output": "⠓⠊⠣⠃⠗⠪⠎" }, { "input": "highchair", "output": "⠓⠊⠣⠡â â Šâ —" }, { "input": "highchair's", "output": "⠓⠊⠣⠡â â Šâ —â „â Ž" }, { "input": "highchairs", "output": "⠓⠊⠣⠡â â Šâ —â Ž" }, { "input": "higher", "output": "⠓⠊⠣⠻" }, { "input": "highest", "output": "⠓⠊⠣⠑⠌" }, { "input": "highfalutin", "output": "⠓⠊⠣⠋â â ‡â ¥â žâ ”" }, { "input": "highhanded", "output": "⠓⠊⠣⠓⠯⠫" }, { "input": "highhandedly", "output": "⠓⠊⠣⠓⠯⠫⠇⠽" }, { "input": "highhandedness", "output": "⠓⠊⠣⠓⠯⠫⠰⠎" }, { "input": "highhandedness's", "output": "⠓⠊⠣⠓⠯⠫⠰⠎⠄⠎" }, { "input": "highland", "output": "⠓⠊⠣⠇⠯" }, { "input": "highland's", "output": "⠓⠊⠣⠇⠯⠄⠎" }, { "input": "highlands", "output": "⠓⠊⠣⠇⠯⠎" }, { "input": "highlight", "output": "⠓⠊⠣⠇⠊⠣⠞" }, { "input": "highlight's", "output": "⠓⠊⠣⠇⠊⠣⠞⠄⠎" }, { "input": "highlighted", "output": "⠓⠊⠣⠇⠊⠣⠞⠫" }, { "input": "highlighter", "output": "⠓⠊⠣⠇⠊⠣⠞⠻" }, { "input": "highlighter's", "output": "⠓⠊⠣⠇⠊⠣⠞⠻⠄⠎" }, { "input": "highlighters", "output": "⠓⠊⠣⠇⠊⠣⠞⠻⠎" }, { "input": "highlighting", "output": "⠓⠊⠣⠇⠊⠣⠞⠌" }, { "input": "highlights", "output": "⠓⠊⠣⠇⠊⠣⠞⠎" }, { "input": "highly", "output": "⠓⠊⠣⠇⠽" }, { "input": "highness", "output": "⠓⠊⠣⠰⠎" }, { "input": "highness's", "output": "⠓⠊⠣⠰⠎⠄⠎" }, { "input": "highroad", "output": "⠓⠊⠣⠗⠕â â ™" }, { "input": "highroad's", "output": "⠓⠊⠣⠗⠕â â ™â „â Ž" }, { "input": "highroads", "output": "⠓⠊⠣⠗⠕â â ™â Ž" }, { "input": "highs", "output": "⠓⠊⠣⠎" }, { "input": "hightail", "output": "⠓⠊⠣⠞â â Šâ ‡" }, { "input": "hightailed", "output": "⠓⠊⠣⠞â â Šâ ‡â «" }, { "input": "hightailing", "output": "⠓⠊⠣⠞â â Šâ ‡â Œ" }, { "input": "hightails", "output": "⠓⠊⠣⠞â â Šâ ‡â Ž" }, { "input": "highway", "output": "⠓⠊⠣⠺â â ½" }, { "input": "highway's", "output": "⠓⠊⠣⠺â â ½â „â Ž" }, { "input": "highwayman", "output": "⠓⠊⠣⠺â â ½â â â " }, { "input": "highwayman's", "output": "⠓⠊⠣⠺â â ½â â â â „â Ž" }, { "input": "highwaymen", "output": "⠓⠊⠣⠺â â ½â â ¢" }, { "input": "highways", "output": "⠓⠊⠣⠺â â ½â Ž" }, { "input": "hijack", "output": "â “â Šâ šâ â ‰â …" }, { "input": "hijack's", "output": "â “â Šâ šâ â ‰â …â „â Ž" }, { "input": "hijacked", "output": "â “â Šâ šâ â ‰â …â «" }, { "input": "hijacker", "output": "â “â Šâ šâ â ‰â …â »" }, { "input": "hijacker's", "output": "â “â Šâ šâ â ‰â …⠻⠄⠎" }, { "input": "hijackers", "output": "â “â Šâ šâ â ‰â …⠻⠎" }, { "input": "hijacking", "output": "â “â Šâ šâ â ‰â …â Œ" }, { "input": "hijacking's", "output": "â “â Šâ šâ â ‰â …⠌⠄⠎" }, { "input": "hijackings", "output": "â “â Šâ šâ â ‰â …⠌⠎" }, { "input": "hijacks", "output": "â “â Šâ šâ â ‰â …â Ž" }, { "input": "hike", "output": "â “â Šâ …â ‘" }, { "input": "hike's", "output": "â “â Šâ …â ‘â „â Ž" }, { "input": "hiked", "output": "â “â Šâ …â «" }, { "input": "hiker", "output": "â “â Šâ …â »" }, { "input": "hiker's", "output": "⠓⠊⠅⠻⠄⠎" }, { "input": "hikers", "output": "⠓⠊⠅⠻⠎" }, { "input": "hikes", "output": "â “â Šâ …â ‘â Ž" }, { "input": "hiking", "output": "â “â Šâ …â Œ" }, { "input": "hiking's", "output": "⠓⠊⠅⠌⠄⠎" }, { "input": "hilarious", "output": "⠓⠊⠇⠜⠊⠳⠎" }, { "input": "hilariously", "output": "⠓⠊⠇⠜⠊⠳⠎⠇⠽" }, { "input": "hilariousness", "output": "⠓⠊⠇⠜⠊⠳⠎⠰⠎" }, { "input": "hilariousness's", "output": "⠓⠊⠇⠜⠊⠳⠎⠰⠎⠄⠎" }, { "input": "hilarity", "output": "⠓⠊⠇⠜⠰⠽" }, { "input": "hilarity's", "output": "⠓⠊⠇⠜⠰⠽⠄⠎" }, { "input": "hill", "output": "⠓⠊⠇⠇" }, { "input": "hill's", "output": "⠓⠊⠇⠇⠄⠎" }, { "input": "hillbillies", "output": "⠓⠊⠇⠇⠃⠊⠇⠇⠊⠑⠎" }, { "input": "hillbilly", "output": "⠓⠊⠇⠇⠃⠊⠇⠇⠽" }, { "input": "hillbilly's", "output": "⠓⠊⠇⠇⠃⠊⠇⠇⠽⠄⠎" }, { "input": "hillier", "output": "⠓⠊⠇⠇⠊⠻" }, { "input": "hilliest", "output": "⠓⠊⠇⠇⠊⠑⠌" }, { "input": "hilliness", "output": "⠓⠊⠇⠇⠊⠰⠎" }, { "input": "hilliness's", "output": "⠓⠊⠇⠇⠊⠰⠎⠄⠎" }, { "input": "hillock", "output": "⠓⠊⠇⠇⠕⠉⠅" }, { "input": "hillock's", "output": "⠓⠊⠇⠇⠕⠉⠅⠄⠎" }, { "input": "hillocks", "output": "⠓⠊⠇⠇⠕⠉⠅⠎" }, { "input": "hills", "output": "⠓⠊⠇⠇⠎" }, { "input": "hillside", "output": "⠓⠊⠇⠇⠎⠊⠙⠑" }, { "input": "hillside's", "output": "⠓⠊⠇⠇⠎⠊⠙⠑⠄⠎" }, { "input": "hillsides", "output": "⠓⠊⠇⠇⠎⠊⠙⠑⠎" }, { "input": "hilltop", "output": "⠓⠊⠇⠇⠞⠕â " }, { "input": "hilltop's", "output": "⠓⠊⠇⠇⠞⠕â â „â Ž" }, { "input": "hilltops", "output": "⠓⠊⠇⠇⠞⠕â â Ž" }, { "input": "hilly", "output": "⠓⠊⠇⠇⠽" }, { "input": "hilt", "output": "⠓⠊⠇⠞" }, { "input": "hilt's", "output": "⠓⠊⠇⠞⠄⠎" }, { "input": "hilts", "output": "⠓⠊⠇⠞⠎" }, { "input": "him", "output": "â “â " }, { "input": "him's", "output": "â “â â „â Ž" }, { "input": "hims", "output": "â “â Šâ â Ž" }, { "input": "himself", "output": "â “â â ‹" }, { "input": "hind", "output": "⠓⠔⠙" }, { "input": "hind's", "output": "⠓⠔⠙⠄⠎" }, { "input": "hinder", "output": "⠓⠔⠙⠻" }, { "input": "hindered", "output": "⠓⠔⠙⠻⠫" }, { "input": "hindering", "output": "⠓⠔⠙⠻⠌" }, { "input": "hinders", "output": "⠓⠔⠙⠻⠎" }, { "input": "hindmost", "output": "⠓⠔⠙â â •â Œ" }, { "input": "hindquarter", "output": "⠓⠔⠙⠟⠥⠜⠞⠻" }, { "input": "hindquarter's", "output": "⠓⠔⠙⠟⠥⠜⠞⠻⠄⠎" }, { "input": "hindquarters", "output": "⠓⠔⠙⠟⠥⠜⠞⠻⠎" }, { "input": "hindrance", "output": "⠓⠔⠙⠗⠨⠑" }, { "input": "hindrance's", "output": "⠓⠔⠙⠗⠨⠑⠄⠎" }, { "input": "hindrances", "output": "⠓⠔⠙⠗⠨⠑⠎" }, { "input": "hinds", "output": "⠓⠔⠙⠎" }, { "input": "hindsight", "output": "⠓⠔⠙⠎⠊⠣⠞" }, { "input": "hindsight's", "output": "⠓⠔⠙⠎⠊⠣⠞⠄⠎" }, { "input": "hinge", "output": "⠓⠌⠑" }, { "input": "hinge's", "output": "⠓⠌⠑⠄⠎" }, { "input": "hinged", "output": "⠓⠌⠫" }, { "input": "hinges", "output": "⠓⠌⠑⠎" }, { "input": "hinging", "output": "⠓⠌⠌" }, { "input": "hint", "output": "⠓⠔⠞" }, { "input": "hint's", "output": "⠓⠔⠞⠄⠎" }, { "input": "hinted", "output": "⠓⠔⠞⠫" }, { "input": "hinter", "output": "⠓⠔⠞⠻" }, { "input": "hinter's", "output": "⠓⠔⠞⠻⠄⠎" }, { "input": "hinterland", "output": "⠓⠔⠞⠻⠇⠯" }, { "input": "hinterland's", "output": "⠓⠔⠞⠻⠇⠯⠄⠎" }, { "input": "hinterlands", "output": "⠓⠔⠞⠻⠇⠯⠎" }, { "input": "hinters", "output": "⠓⠔⠞⠻⠎" }, { "input": "hinting", "output": "⠓⠔⠞⠌" }, { "input": "hints", "output": "⠓⠔⠞⠎" }, { "input": "hip", "output": "â “â Šâ " }, { "input": "hip's", "output": "â “â Šâ â „â Ž" }, { "input": "hipbone", "output": "â “â Šâ â ƒâ â •" }, { "input": "hipbone's", "output": "â “â Šâ â ƒâ â •â „â Ž" }, { "input": "hipbones", "output": "â “â Šâ â ƒâ â •â Ž" }, { "input": "hipness", "output": "â “â Šâ â °â Ž" }, { "input": "hipness's", "output": "â “â Šâ â °â Žâ „â Ž" }, { "input": "hipped", "output": "â “â Šâ â â «" }, { "input": "hipper", "output": "â “â Šâ â â »" }, { "input": "hippest", "output": "â “â Šâ â â ‘â Œ" }, { "input": "hippie", "output": "â “â Šâ â â Šâ ‘" }, { "input": "hippie's", "output": "â “â Šâ â â Šâ ‘â „â Ž" }, { "input": "hippies", "output": "â “â Šâ â â Šâ ‘â Ž" }, { "input": "hipping", "output": "â “â Šâ â â Œ" }, { "input": "hippo", "output": "â “â Šâ â â •" }, { "input": "hippo's", "output": "â “â Šâ â â •â „â Ž" }, { "input": "hippodrome", "output": "â “â Šâ â â •⠙⠗⠕â â ‘" }, { "input": "hippodrome's", "output": "â “â Šâ â â •⠙⠗⠕â â ‘â „â Ž" }, { "input": "hippodromes", "output": "â “â Šâ â â •⠙⠗⠕â â ‘â Ž" }, { "input": "hippopotamus", "output": "â “â Šâ â â •â â •â žâ â â ¥â Ž" }, { "input": "hippopotamus's", "output": "â “â Šâ â â •â â •â žâ â â ¥â Žâ „â Ž" }, { "input": "hippopotamuses", "output": "â “â Šâ â â •â â •â žâ â â ¥â Žâ ‘â Ž" }, { "input": "hippos", "output": "â “â Šâ â â •â Ž" }, { "input": "hippy", "output": "â “â Šâ â â ½" }, { "input": "hips", "output": "â “â Šâ â Ž" }, { "input": "hire", "output": "â “â Šâ —â ‘" }, { "input": "hire's", "output": "â “â Šâ —â ‘â „â Ž" }, { "input": "hired", "output": "â “â Šâ —â «" }, { "input": "hireling", "output": "⠓⠊⠗⠑⠇⠌" }, { "input": "hireling's", "output": "⠓⠊⠗⠑⠇⠌⠄⠎" }, { "input": "hirelings", "output": "⠓⠊⠗⠑⠇⠌⠎" }, { "input": "hires", "output": "â “â Šâ —â ‘â Ž" }, { "input": "hiring", "output": "â “â Šâ —â Œ" }, { "input": "hirsute", "output": "⠓⠊⠗⠎⠥⠞⠑" }, { "input": "hirsuteness", "output": "⠓⠊⠗⠎⠥⠞⠑⠰⠎" }, { "input": "hirsuteness's", "output": "⠓⠊⠗⠎⠥⠞⠑⠰⠎⠄⠎" }, { "input": "his", "output": "â ¦" }, { "input": "hiss", "output": "â “â Šâ Žâ Ž" }, { "input": "hiss's", "output": "â “â Šâ Žâ Žâ „â Ž" }, { "input": "hissed", "output": "â “â Šâ Žâ Žâ «" }, { "input": "hisses", "output": "â “â Šâ Žâ Žâ ‘â Ž" }, { "input": "hissing", "output": "â “â Šâ Žâ Žâ Œ" }, { "input": "histamine", "output": "â “â Šâ Œâ â â ”â ‘" }, { "input": "histamine's", "output": "â “â Šâ Œâ â â ”â ‘â „â Ž" }, { "input": "histamines", "output": "â “â Šâ Œâ â â ”â ‘â Ž" }, { "input": "histogram", "output": "⠓⠊⠌⠕⠛⠗â â " }, { "input": "histogram's", "output": "⠓⠊⠌⠕⠛⠗â â â „â Ž" }, { "input": "histograms", "output": "⠓⠊⠌⠕⠛⠗â â â Ž" }, { "input": "histologist", "output": "⠓⠊⠌⠕⠇⠕⠛⠊⠌" }, { "input": "histologist's", "output": "⠓⠊⠌⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "histologists", "output": "⠓⠊⠌⠕⠇⠕⠛⠊⠌⠎" }, { "input": "histology", "output": "⠓⠊⠌⠕⠇⠕⠛⠽" }, { "input": "histology's", "output": "⠓⠊⠌⠕⠇⠕⠛⠽⠄⠎" }, { "input": "historian", "output": "⠓⠊⠌⠕⠗⠊â â " }, { "input": "historian's", "output": "⠓⠊⠌⠕⠗⠊â â â „â Ž" }, { "input": "historians", "output": "⠓⠊⠌⠕⠗⠊â â â Ž" }, { "input": "historic", "output": "⠓⠊⠌⠕⠗⠊⠉" }, { "input": "historical", "output": "⠓⠊⠌⠕⠗⠊⠉â â ‡" }, { "input": "historically", "output": "⠓⠊⠌⠕⠗⠊⠉⠠⠽" }, { "input": "historicity", "output": "⠓⠊⠌⠕⠗⠊⠉⠰⠽" }, { "input": "historicity's", "output": "⠓⠊⠌⠕⠗⠊⠉⠰⠽⠄⠎" }, { "input": "histories", "output": "⠓⠊⠌⠕⠗⠊⠑⠎" }, { "input": "historiographer", "output": "⠓⠊⠌⠕⠗⠊⠕⠛⠗â â â “â »" }, { "input": "historiographer's", "output": "⠓⠊⠌⠕⠗⠊⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "historiographers", "output": "⠓⠊⠌⠕⠗⠊⠕⠛⠗â â â “⠻⠎" }, { "input": "historiography", "output": "⠓⠊⠌⠕⠗⠊⠕⠛⠗â â â “â ½" }, { "input": "historiography's", "output": "⠓⠊⠌⠕⠗⠊⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "history", "output": "⠓⠊⠌⠕⠗⠽" }, { "input": "history's", "output": "⠓⠊⠌⠕⠗⠽⠄⠎" }, { "input": "histrionic", "output": "⠓⠊⠌⠗⠊⠕â â Šâ ‰" }, { "input": "histrionics", "output": "⠓⠊⠌⠗⠊⠕â â Šâ ‰â Ž" }, { "input": "histrionics's", "output": "⠓⠊⠌⠗⠊⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "hit", "output": "â “â Šâ ž" }, { "input": "hit's", "output": "â “â Šâ žâ „â Ž" }, { "input": "hitch", "output": "â “â Šâ žâ ¡" }, { "input": "hitch's", "output": "â “â Šâ žâ ¡â „â Ž" }, { "input": "hitched", "output": "â “â Šâ žâ ¡â «" }, { "input": "hitcher", "output": "â “â Šâ žâ ¡â »" }, { "input": "hitcher's", "output": "⠓⠊⠞⠡⠻⠄⠎" }, { "input": "hitchers", "output": "⠓⠊⠞⠡⠻⠎" }, { "input": "hitches", "output": "â “â Šâ žâ ¡â ‘â Ž" }, { "input": "hitchhike", "output": "â “â Šâ žâ ¡â “â Šâ …â ‘" }, { "input": "hitchhike's", "output": "â “â Šâ žâ ¡â “â Šâ …â ‘â „â Ž" }, { "input": "hitchhiked", "output": "â “â Šâ žâ ¡â “â Šâ …â «" }, { "input": "hitchhiker", "output": "â “â Šâ žâ ¡â “â Šâ …â »" }, { "input": "hitchhiker's", "output": "⠓⠊⠞⠡⠓⠊⠅⠻⠄⠎" }, { "input": "hitchhikers", "output": "⠓⠊⠞⠡⠓⠊⠅⠻⠎" }, { "input": "hitchhikes", "output": "â “â Šâ žâ ¡â “â Šâ …â ‘â Ž" }, { "input": "hitchhiking", "output": "â “â Šâ žâ ¡â “â Šâ …â Œ" }, { "input": "hitching", "output": "â “â Šâ žâ ¡â Œ" }, { "input": "hither", "output": "⠓⠊⠮⠗" }, { "input": "hitherto", "output": "⠓⠊⠮⠗⠞⠕" }, { "input": "hits", "output": "â “â Šâ žâ Ž" }, { "input": "hitter", "output": "â “â Šâ žâ žâ »" }, { "input": "hitter's", "output": "⠓⠊⠞⠞⠻⠄⠎" }, { "input": "hitters", "output": "⠓⠊⠞⠞⠻⠎" }, { "input": "hitting", "output": "â “â Šâ žâ žâ Œ" }, { "input": "hive", "output": "â “â Šâ §â ‘" }, { "input": "hive's", "output": "â “â Šâ §â ‘â „â Ž" }, { "input": "hived", "output": "â “â Šâ §â «" }, { "input": "hives", "output": "â “â Šâ §â ‘â Ž" }, { "input": "hiving", "output": "â “â Šâ §â Œ" }, { "input": "ho", "output": "â “â •" }, { "input": "ho's", "output": "â “â •â „â Ž" }, { "input": "hoagie", "output": "â “â •â â ›â Šâ ‘" }, { "input": "hoagie's", "output": "â “â •â â ›â Šâ ‘â „â Ž" }, { "input": "hoagies", "output": "â “â •â â ›â Šâ ‘â Ž" }, { "input": "hoard", "output": "⠓⠕⠜⠙" }, { "input": "hoard's", "output": "⠓⠕⠜⠙⠄⠎" }, { "input": "hoarded", "output": "⠓⠕⠜⠙⠫" }, { "input": "hoarder", "output": "⠓⠕⠜⠙⠻" }, { "input": "hoarder's", "output": "⠓⠕⠜⠙⠻⠄⠎" }, { "input": "hoarders", "output": "⠓⠕⠜⠙⠻⠎" }, { "input": "hoarding", "output": "⠓⠕⠜⠙⠌" }, { "input": "hoards", "output": "⠓⠕⠜⠙⠎" }, { "input": "hoarfrost", "output": "⠓⠕⠜⠋⠗⠕⠌" }, { "input": "hoarfrost's", "output": "⠓⠕⠜⠋⠗⠕⠌⠄⠎" }, { "input": "hoarier", "output": "⠓⠕⠜⠊⠻" }, { "input": "hoariest", "output": "⠓⠕⠜⠊⠑⠌" }, { "input": "hoariness", "output": "⠓⠕⠜⠊⠰⠎" }, { "input": "hoariness's", "output": "⠓⠕⠜⠊⠰⠎⠄⠎" }, { "input": "hoarse", "output": "⠓⠕⠜⠎⠑" }, { "input": "hoarsely", "output": "⠓⠕⠜⠎⠑⠇⠽" }, { "input": "hoarseness", "output": "⠓⠕⠜⠎⠑⠰⠎" }, { "input": "hoarseness's", "output": "⠓⠕⠜⠎⠑⠰⠎⠄⠎" }, { "input": "hoarser", "output": "⠓⠕⠜⠎⠻" }, { "input": "hoarsest", "output": "⠓⠕⠜⠎⠑⠌" }, { "input": "hoary", "output": "⠓⠕⠜⠽" }, { "input": "hoax", "output": "â “â •â â ­" }, { "input": "hoax's", "output": "â “â •â â ­â „â Ž" }, { "input": "hoaxed", "output": "â “â •â â ­â «" }, { "input": "hoaxer", "output": "â “â •â â ­â »" }, { "input": "hoaxer's", "output": "â “â •â â ­â »â „â Ž" }, { "input": "hoaxers", "output": "â “â •â â ­â »â Ž" }, { "input": "hoaxes", "output": "â “â •â â ­â ‘â Ž" }, { "input": "hoaxing", "output": "â “â •â â ­â Œ" }, { "input": "hob", "output": "â “â •â ƒ" }, { "input": "hob's", "output": "⠓⠕⠃⠄⠎" }, { "input": "hobbies", "output": "⠓⠕⠆⠊⠑⠎" }, { "input": "hobbit", "output": "⠓⠕⠆⠊⠞" }, { "input": "hobble", "output": "⠓⠕⠃⠼" }, { "input": "hobble's", "output": "⠓⠕⠃⠼⠄⠎" }, { "input": "hobbled", "output": "⠓⠕⠃⠼⠙" }, { "input": "hobbler", "output": "⠓⠕⠃⠼⠗" }, { "input": "hobbler's", "output": "⠓⠕⠃⠼⠗⠄⠎" }, { "input": "hobblers", "output": "⠓⠕⠃⠼⠗⠎" }, { "input": "hobbles", "output": "⠓⠕⠃⠼⠎" }, { "input": "hobbling", "output": "⠓⠕⠆⠇⠌" }, { "input": "hobby", "output": "⠓⠕⠆⠽" }, { "input": "hobby's", "output": "⠓⠕⠆⠽⠄⠎" }, { "input": "hobbyhorse", "output": "⠓⠕⠆⠽⠓⠕⠗⠎⠑" }, { "input": "hobbyhorse's", "output": "⠓⠕⠆⠽⠓⠕⠗⠎⠑⠄⠎" }, { "input": "hobbyhorses", "output": "⠓⠕⠆⠽⠓⠕⠗⠎⠑⠎" }, { "input": "hobbyist", "output": "⠓⠕⠆⠽⠊⠌" }, { "input": "hobbyist's", "output": "⠓⠕⠆⠽⠊⠌⠄⠎" }, { "input": "hobbyists", "output": "⠓⠕⠆⠽⠊⠌⠎" }, { "input": "hobgoblin", "output": "⠓⠕⠃⠛⠕⠃⠇⠔" }, { "input": "hobgoblin's", "output": "⠓⠕⠃⠛⠕⠃⠇⠔⠄⠎" }, { "input": "hobgoblins", "output": "⠓⠕⠃⠛⠕⠃⠇⠔⠎" }, { "input": "hobnail", "output": "â “â •â ƒâ â â Šâ ‡" }, { "input": "hobnail's", "output": "â “â •â ƒâ â â Šâ ‡â „â Ž" }, { "input": "hobnailed", "output": "â “â •â ƒâ â â Šâ ‡â «" }, { "input": "hobnailing", "output": "â “â •â ƒâ â â Šâ ‡â Œ" }, { "input": "hobnails", "output": "â “â •â ƒâ â â Šâ ‡â Ž" }, { "input": "hobnob", "output": "â “â •â ƒâ â •â ƒ" }, { "input": "hobnobbed", "output": "â “â •â ƒâ â •⠆⠫" }, { "input": "hobnobbing", "output": "â “â •â ƒâ â •⠆⠌" }, { "input": "hobnobs", "output": "â “â •â ƒâ â •⠃⠎" }, { "input": "hobo", "output": "⠓⠕⠃⠕" }, { "input": "hobo's", "output": "⠓⠕⠃⠕⠄⠎" }, { "input": "hobos", "output": "⠓⠕⠃⠕⠎" }, { "input": "hobs", "output": "⠓⠕⠃⠎" }, { "input": "hock", "output": "⠓⠕⠉⠅" }, { "input": "hock's", "output": "⠓⠕⠉⠅⠄⠎" }, { "input": "hocked", "output": "⠓⠕⠉⠅⠫" }, { "input": "hockey", "output": "⠓⠕⠉⠅⠑⠽" }, { "input": "hockey's", "output": "⠓⠕⠉⠅⠑⠽⠄⠎" }, { "input": "hocking", "output": "⠓⠕⠉⠅⠌" }, { "input": "hocks", "output": "⠓⠕⠉⠅⠎" }, { "input": "hockshop", "output": "⠓⠕⠉⠅⠩⠕â " }, { "input": "hockshop's", "output": "⠓⠕⠉⠅⠩⠕â â „â Ž" }, { "input": "hockshops", "output": "⠓⠕⠉⠅⠩⠕â â Ž" }, { "input": "hod", "output": "â “â •â ™" }, { "input": "hod's", "output": "⠓⠕⠙⠄⠎" }, { "input": "hodgepodge", "output": "⠓⠕⠙⠛⠑â â •⠙⠛⠑" }, { "input": "hodgepodge's", "output": "⠓⠕⠙⠛⠑â â •⠙⠛⠑⠄⠎" }, { "input": "hodgepodges", "output": "⠓⠕⠙⠛⠑â â •⠙⠛⠑⠎" }, { "input": "hods", "output": "⠓⠕⠙⠎" }, { "input": "hoe", "output": "â “â •â ‘" }, { "input": "hoe's", "output": "â “â •â ‘â „â Ž" }, { "input": "hoecake", "output": "â “â •â ‘â ‰â â …â ‘" }, { "input": "hoecake's", "output": "â “â •â ‘â ‰â â …â ‘â „â Ž" }, { "input": "hoecakes", "output": "â “â •â ‘â ‰â â …â ‘â Ž" }, { "input": "hoed", "output": "â “â •â «" }, { "input": "hoedown", "output": "⠓⠕⠑⠙⠪â " }, { "input": "hoedown's", "output": "⠓⠕⠑⠙⠪â â „â Ž" }, { "input": "hoedowns", "output": "⠓⠕⠑⠙⠪â â Ž" }, { "input": "hoeing", "output": "â “â •â ‘â Œ" }, { "input": "hoer", "output": "â “â •â »" }, { "input": "hoer's", "output": "⠓⠕⠻⠄⠎" }, { "input": "hoers", "output": "⠓⠕⠻⠎" }, { "input": "hoes", "output": "â “â •â ‘â Ž" }, { "input": "hog", "output": "â “â •â ›" }, { "input": "hog's", "output": "⠓⠕⠛⠄⠎" }, { "input": "hogan", "output": "â “â •â ›â â " }, { "input": "hogan's", "output": "â “â •â ›â â â „â Ž" }, { "input": "hogans", "output": "â “â •â ›â â â Ž" }, { "input": "hogback", "output": "⠓⠕⠛⠃â â ‰â …" }, { "input": "hogback's", "output": "⠓⠕⠛⠃â â ‰â …â „â Ž" }, { "input": "hogbacks", "output": "⠓⠕⠛⠃â â ‰â …â Ž" }, { "input": "hogged", "output": "â “â •â ¶â «" }, { "input": "hogging", "output": "â “â •â ¶â Œ" }, { "input": "hoggish", "output": "â “â •â ¶â Šâ ©" }, { "input": "hoggishly", "output": "⠓⠕⠶⠊⠩⠇⠽" }, { "input": "hogs", "output": "⠓⠕⠛⠎" }, { "input": "hogshead", "output": "⠓⠕⠛⠎⠓⠂⠙" }, { "input": "hogshead's", "output": "⠓⠕⠛⠎⠓⠂⠙⠄⠎" }, { "input": "hogsheads", "output": "⠓⠕⠛⠎⠓⠂⠙⠎" }, { "input": "hogtie", "output": "⠓⠕⠛⠞⠊⠑" }, { "input": "hogtied", "output": "⠓⠕⠛⠞⠊⠫" }, { "input": "hogties", "output": "⠓⠕⠛⠞⠊⠑⠎" }, { "input": "hogtying", "output": "⠓⠕⠛⠞⠽⠌" }, { "input": "hogwash", "output": "⠓⠕⠛⠺â â ©" }, { "input": "hogwash's", "output": "⠓⠕⠛⠺â â ©â „â Ž" }, { "input": "hoist", "output": "â “â •â Šâ Œ" }, { "input": "hoist's", "output": "⠓⠕⠊⠌⠄⠎" }, { "input": "hoisted", "output": "⠓⠕⠊⠌⠫" }, { "input": "hoisting", "output": "⠓⠕⠊⠌⠌" }, { "input": "hoists", "output": "⠓⠕⠊⠌⠎" }, { "input": "hoke", "output": "â “â •â …â ‘" }, { "input": "hoked", "output": "â “â •â …â «" }, { "input": "hokes", "output": "â “â •â …â ‘â Ž" }, { "input": "hokey", "output": "â “â •â …â ‘â ½" }, { "input": "hokier", "output": "â “â •â …â Šâ »" }, { "input": "hokiest", "output": "â “â •â …â Šâ ‘â Œ" }, { "input": "hoking", "output": "â “â •â …â Œ" }, { "input": "hokum", "output": "â “â •â …â ¥â " }, { "input": "hokum's", "output": "â “â •â …â ¥â â „â Ž" }, { "input": "hold", "output": "⠓⠕⠇⠙" }, { "input": "hold's", "output": "⠓⠕⠇⠙⠄⠎" }, { "input": "holder", "output": "⠓⠕⠇⠙⠻" }, { "input": "holder's", "output": "⠓⠕⠇⠙⠻⠄⠎" }, { "input": "holders", "output": "⠓⠕⠇⠙⠻⠎" }, { "input": "holding", "output": "⠓⠕⠇⠙⠌" }, { "input": "holding's", "output": "⠓⠕⠇⠙⠌⠄⠎" }, { "input": "holdings", "output": "⠓⠕⠇⠙⠌⠎" }, { "input": "holdout", "output": "⠓⠕⠇⠙⠳⠞" }, { "input": "holdout's", "output": "⠓⠕⠇⠙⠳⠞⠄⠎" }, { "input": "holdouts", "output": "⠓⠕⠇⠙⠳⠞⠎" }, { "input": "holdover", "output": "⠓⠕⠇⠙⠕⠧⠻" }, { "input": "holdover's", "output": "⠓⠕⠇⠙⠕⠧⠻⠄⠎" }, { "input": "holdovers", "output": "⠓⠕⠇⠙⠕⠧⠻⠎" }, { "input": "holds", "output": "⠓⠕⠇⠙⠎" }, { "input": "holdup", "output": "⠓⠕⠇⠙⠥â " }, { "input": "holdup's", "output": "⠓⠕⠇⠙⠥â â „â Ž" }, { "input": "holdups", "output": "⠓⠕⠇⠙⠥â â Ž" }, { "input": "hole", "output": "⠓⠕⠇⠑" }, { "input": "hole's", "output": "⠓⠕⠇⠑⠄⠎" }, { "input": "holed", "output": "⠓⠕⠇⠫" }, { "input": "holes", "output": "⠓⠕⠇⠑⠎" }, { "input": "holey", "output": "⠓⠕⠇⠑⠽" }, { "input": "holiday", "output": "⠓⠕⠇⠊â â ™" }, { "input": "holiday's", "output": "⠓⠕⠇⠊â â ™â „â Ž" }, { "input": "holidayed", "output": "⠓⠕⠇⠊â â ™â «" }, { "input": "holidaying", "output": "⠓⠕⠇⠊â â ™â Œ" }, { "input": "holidays", "output": "⠓⠕⠇⠊â â ™â Ž" }, { "input": "holier", "output": "⠓⠕⠇⠊⠻" }, { "input": "holiest", "output": "⠓⠕⠇⠊⠑⠌" }, { "input": "holiness", "output": "⠓⠕⠇⠊⠰⠎" }, { "input": "holiness's", "output": "⠓⠕⠇⠊⠰⠎⠄⠎" }, { "input": "holing", "output": "⠓⠕⠇⠌" }, { "input": "holistic", "output": "⠓⠕⠇⠊⠌⠊⠉" }, { "input": "holler", "output": "⠓⠕⠇⠇⠻" }, { "input": "holler's", "output": "⠓⠕⠇⠇⠻⠄⠎" }, { "input": "hollered", "output": "⠓⠕⠇⠇⠻⠫" }, { "input": "hollering", "output": "⠓⠕⠇⠇⠻⠌" }, { "input": "hollers", "output": "⠓⠕⠇⠇⠻⠎" }, { "input": "hollies", "output": "⠓⠕⠇⠇⠊⠑⠎" }, { "input": "hollow", "output": "⠓⠕⠇⠇⠪" }, { "input": "hollow's", "output": "⠓⠕⠇⠇⠪⠄⠎" }, { "input": "hollowed", "output": "⠓⠕⠇⠇⠪⠫" }, { "input": "hollower", "output": "⠓⠕⠇⠇⠪⠻" }, { "input": "hollowest", "output": "⠓⠕⠇⠇⠪⠑⠌" }, { "input": "hollowing", "output": "⠓⠕⠇⠇⠪⠌" }, { "input": "hollowly", "output": "⠓⠕⠇⠇⠪⠇⠽" }, { "input": "hollowness", "output": "⠓⠕⠇⠇⠪⠰⠎" }, { "input": "hollowness's", "output": "⠓⠕⠇⠇⠪⠰⠎⠄⠎" }, { "input": "hollows", "output": "⠓⠕⠇⠇⠪⠎" }, { "input": "holly", "output": "⠓⠕⠇⠇⠽" }, { "input": "holly's", "output": "⠓⠕⠇⠇⠽⠄⠎" }, { "input": "hollyhock", "output": "⠓⠕⠇⠇⠽⠓⠕⠉⠅" }, { "input": "hollyhock's", "output": "⠓⠕⠇⠇⠽⠓⠕⠉⠅⠄⠎" }, { "input": "hollyhocks", "output": "⠓⠕⠇⠇⠽⠓⠕⠉⠅⠎" }, { "input": "holmium", "output": "â “â •â ‡â â Šâ ¥â " }, { "input": "holmium's", "output": "â “â •â ‡â â Šâ ¥â â „â Ž" }, { "input": "holocaust", "output": "⠓⠕⠇⠕⠉â â ¥â Œ" }, { "input": "holocaust's", "output": "⠓⠕⠇⠕⠉â â ¥â Œâ „â Ž" }, { "input": "holocausts", "output": "⠓⠕⠇⠕⠉â â ¥â Œâ Ž" }, { "input": "hologram", "output": "⠓⠕⠇⠕⠛⠗â â " }, { "input": "hologram's", "output": "⠓⠕⠇⠕⠛⠗â â â „â Ž" }, { "input": "holograms", "output": "⠓⠕⠇⠕⠛⠗â â â Ž" }, { "input": "holograph", "output": "⠓⠕⠇⠕⠛⠗â â â “" }, { "input": "holograph's", "output": "⠓⠕⠇⠕⠛⠗â â â “â „â Ž" }, { "input": "holographic", "output": "⠓⠕⠇⠕⠛⠗â â â “â Šâ ‰" }, { "input": "holographs", "output": "⠓⠕⠇⠕⠛⠗â â â “â Ž" }, { "input": "holography", "output": "⠓⠕⠇⠕⠛⠗â â â “â ½" }, { "input": "holography's", "output": "⠓⠕⠇⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "holster", "output": "⠓⠕⠇⠌⠻" }, { "input": "holster's", "output": "⠓⠕⠇⠌⠻⠄⠎" }, { "input": "holstered", "output": "⠓⠕⠇⠌⠻⠫" }, { "input": "holstering", "output": "⠓⠕⠇⠌⠻⠌" }, { "input": "holsters", "output": "⠓⠕⠇⠌⠻⠎" }, { "input": "holy", "output": "⠓⠕⠇⠽" }, { "input": "homage", "output": "â “â •â â â ›â ‘" }, { "input": "homage's", "output": "â “â •â â â ›â ‘â „â Ž" }, { "input": "homages", "output": "â “â •â â â ›â ‘â Ž" }, { "input": "hombre", "output": "â “â •â â ƒâ —â ‘" }, { "input": "hombre's", "output": "â “â •â â ƒâ —â ‘â „â Ž" }, { "input": "hombres", "output": "â “â •â â ƒâ —â ‘â Ž" }, { "input": "homburg", "output": "â “â •â â ƒâ ¥â —â ›" }, { "input": "homburg's", "output": "â “â •â â ƒâ ¥â —⠛⠄⠎" }, { "input": "homburgs", "output": "â “â •â â ƒâ ¥â —⠛⠎" }, { "input": "home", "output": "â “â •â â ‘" }, { "input": "home's", "output": "â “â •â â ‘â „â Ž" }, { "input": "homebodies", "output": "â “â •â â ‘⠃⠕⠙⠊⠑⠎" }, { "input": "homebody", "output": "â “â •â â ‘⠃⠕⠙⠽" }, { "input": "homebody's", "output": "â “â •â â ‘⠃⠕⠙⠽⠄⠎" }, { "input": "homeboy", "output": "â “â •â â ‘⠃⠕⠽" }, { "input": "homeboy's", "output": "â “â •â â ‘⠃⠕⠽⠄⠎" }, { "input": "homeboys", "output": "â “â •â â ‘⠃⠕⠽⠎" }, { "input": "homecoming", "output": "â “â •â â ‘⠉⠕â â Œ" }, { "input": "homecoming's", "output": "â “â •â â ‘⠉⠕â â Œâ „â Ž" }, { "input": "homecomings", "output": "â “â •â â ‘⠉⠕â â Œâ Ž" }, { "input": "homed", "output": "â “â •â â «" }, { "input": "homegrown", "output": "â “â •â â ‘⠛⠗⠪â " }, { "input": "homeland", "output": "â “â •â â ‘⠇⠯" }, { "input": "homeland's", "output": "â “â •â â ‘⠇⠯⠄⠎" }, { "input": "homelands", "output": "â “â •â â ‘⠇⠯⠎" }, { "input": "homeless", "output": "â “â •â â ‘⠨⠎" }, { "input": "homeless's", "output": "â “â •â â ‘⠨⠎⠄⠎" }, { "input": "homelessness", "output": "â “â •â â ‘⠨⠎⠰⠎" }, { "input": "homelessness's", "output": "â “â •â â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "homelier", "output": "â “â •â â ‘⠇⠊⠻" }, { "input": "homeliest", "output": "â “â •â â ‘⠇⠊⠑⠌" }, { "input": "homelike", "output": "â “â •â â ‘⠇⠊⠅⠑" }, { "input": "homeliness", "output": "â “â •â â ‘⠇⠊⠰⠎" }, { "input": "homeliness's", "output": "â “â •â â ‘⠇⠊⠰⠎⠄⠎" }, { "input": "homely", "output": "â “â •â â ‘⠇⠽" }, { "input": "homemade", "output": "â “â •â â ‘â â â ™â ‘" }, { "input": "homemaker", "output": "â “â •â â ‘â â â …â »" }, { "input": "homemaker's", "output": "â “â •â â ‘â â â …⠻⠄⠎" }, { "input": "homemakers", "output": "â “â •â â ‘â â â …⠻⠎" }, { "input": "homemaking", "output": "â “â •â â ‘â â â …â Œ" }, { "input": "homemaking's", "output": "â “â •â â ‘â â â …⠌⠄⠎" }, { "input": "homeopathic", "output": "â “â •â â ‘â •â â â ¹â Šâ ‰" }, { "input": "homeopathy", "output": "â “â •â â ‘â •â â â ¹â ½" }, { "input": "homeopathy's", "output": "â “â •â â ‘â •â â â ¹â ½â „â Ž" }, { "input": "homeostasis", "output": "â “â •â â ‘â •â Œâ â Žâ Šâ Ž" }, { "input": "homeostasis's", "output": "â “â •â â ‘â •â Œâ â Žâ Šâ Žâ „â Ž" }, { "input": "homeostatic", "output": "â “â •â â ‘â •â Œâ â žâ Šâ ‰" }, { "input": "homeowner", "output": "â “â •â â ‘â ªâ â »" }, { "input": "homeowner's", "output": "â “â •â â ‘â ªâ â »â „â Ž" }, { "input": "homeowners", "output": "â “â •â â ‘â ªâ â »â Ž" }, { "input": "homepage", "output": "â “â •â â ‘â â â ›â ‘" }, { "input": "homepage's", "output": "â “â •â â ‘â â â ›â ‘â „â Ž" }, { "input": "homepages", "output": "â “â •â â ‘â â â ›â ‘â Ž" }, { "input": "homer", "output": "â “â •â â »" }, { "input": "homer's", "output": "â “â •â â »â „â Ž" }, { "input": "homered", "output": "â “â •â â »â «" }, { "input": "homering", "output": "â “â •â â »â Œ" }, { "input": "homeroom", "output": "â “â •â â ‘â —â •â •â " }, { "input": "homeroom's", "output": "â “â •â â ‘â —â •â •â â „â Ž" }, { "input": "homerooms", "output": "â “â •â â ‘â —â •â •â â Ž" }, { "input": "homers", "output": "â “â •â â »â Ž" }, { "input": "homes", "output": "â “â •â â ‘â Ž" }, { "input": "homeschooling", "output": "â “â •â â ‘⠎⠡⠕⠕⠇⠌" }, { "input": "homeschooling's", "output": "â “â •â â ‘⠎⠡⠕⠕⠇⠌⠄⠎" }, { "input": "homesick", "output": "â “â •â â ‘⠎⠊⠉⠅" }, { "input": "homesickness", "output": "â “â •â â ‘⠎⠊⠉⠅⠰⠎" }, { "input": "homesickness's", "output": "â “â •â â ‘⠎⠊⠉⠅⠰⠎⠄⠎" }, { "input": "homespun", "output": "â “â •â â ‘â Žâ â ¥â " }, { "input": "homespun's", "output": "â “â •â â ‘â Žâ â ¥â â „â Ž" }, { "input": "homestead", "output": "â “â •â â ‘⠌⠂⠙" }, { "input": "homestead's", "output": "â “â •â â ‘⠌⠂⠙⠄⠎" }, { "input": "homesteaded", "output": "â “â •â â ‘⠌⠂⠙⠫" }, { "input": "homesteader", "output": "â “â •â â ‘⠌⠂⠙⠻" }, { "input": "homesteader's", "output": "â “â •â â ‘⠌⠂⠙⠻⠄⠎" }, { "input": "homesteaders", "output": "â “â •â â ‘⠌⠂⠙⠻⠎" }, { "input": "homesteading", "output": "â “â •â â ‘⠌⠂⠙⠌" }, { "input": "homesteads", "output": "â “â •â â ‘⠌⠂⠙⠎" }, { "input": "homestretch", "output": "â “â •â â ‘⠌⠗⠑⠞⠡" }, { "input": "homestretch's", "output": "â “â •â â ‘⠌⠗⠑⠞⠡⠄⠎" }, { "input": "homestretches", "output": "â “â •â â ‘⠌⠗⠑⠞⠡⠑⠎" }, { "input": "hometown", "output": "â “â •â â ‘â žâ ªâ " }, { "input": "hometown's", "output": "â “â •â â ‘â žâ ªâ â „â Ž" }, { "input": "hometowns", "output": "â “â •â â ‘â žâ ªâ â Ž" }, { "input": "homeward", "output": "â “â •â â ‘⠺⠜⠙" }, { "input": "homewards", "output": "â “â •â â ‘⠺⠜⠙⠎" }, { "input": "homework", "output": "â “â •â â ‘â â º" }, { "input": "homework's", "output": "â “â •â â ‘â â ºâ „â Ž" }, { "input": "homey", "output": "â “â •â â ‘â ½" }, { "input": "homey's", "output": "â “â •â â ‘⠽⠄⠎" }, { "input": "homeyness", "output": "â “â •â â ‘⠽⠰⠎" }, { "input": "homeyness's", "output": "â “â •â â ‘⠽⠰⠎⠄⠎" }, { "input": "homeys", "output": "â “â •â â ‘⠽⠎" }, { "input": "homicidal", "output": "â “â •â â Šâ ‰â Šâ ™â â ‡" }, { "input": "homicide", "output": "â “â •â â Šâ ‰â Šâ ™â ‘" }, { "input": "homicide's", "output": "â “â •â â Šâ ‰â Šâ ™â ‘â „â Ž" }, { "input": "homicides", "output": "â “â •â â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "homier", "output": "â “â •â â Šâ »" }, { "input": "homiest", "output": "â “â •â â Šâ ‘â Œ" }, { "input": "homiletic", "output": "â “â •â â Šâ ‡â ‘â žâ Šâ ‰" }, { "input": "homilies", "output": "â “â •â â Šâ ‡â Šâ ‘â Ž" }, { "input": "homily", "output": "â “â •â â Šâ ‡â ½" }, { "input": "homily's", "output": "â “â •â â Šâ ‡â ½â „â Ž" }, { "input": "homing", "output": "â “â •â â Œ" }, { "input": "hominid", "output": "â “â •â â ”â Šâ ™" }, { "input": "hominid's", "output": "â “â •â â ”⠊⠙⠄⠎" }, { "input": "hominids", "output": "â “â •â â ”⠊⠙⠎" }, { "input": "hominy", "output": "â “â •â â ”â ½" }, { "input": "hominy's", "output": "â “â •â â ”⠽⠄⠎" }, { "input": "homo", "output": "â “â •â â •" }, { "input": "homo's", "output": "â “â •â â •â „â Ž" }, { "input": "homogeneity", "output": "â “â •â â •⠛⠢⠑⠰⠽" }, { "input": "homogeneity's", "output": "â “â •â â •⠛⠢⠑⠰⠽⠄⠎" }, { "input": "homogeneous", "output": "â “â •â â •⠛⠢⠑⠳⠎" }, { "input": "homogeneously", "output": "â “â •â â •⠛⠢⠑⠳⠎⠇⠽" }, { "input": "homogenization", "output": "â “â •â â •⠛⠢⠊⠵⠠â " }, { "input": "homogenization's", "output": "â “â •â â •⠛⠢⠊⠵⠠â â „â Ž" }, { "input": "homogenize", "output": "â “â •â â •⠛⠢⠊⠵⠑" }, { "input": "homogenized", "output": "â “â •â â •⠛⠢⠊⠵⠫" }, { "input": "homogenizes", "output": "â “â •â â •⠛⠢⠊⠵⠑⠎" }, { "input": "homogenizing", "output": "â “â •â â •⠛⠢⠊⠵⠌" }, { "input": "homograph", "output": "â “â •â â •⠛⠗â â â “" }, { "input": "homograph's", "output": "â “â •â â •⠛⠗â â â “â „â Ž" }, { "input": "homographs", "output": "â “â •â â •⠛⠗â â â “â Ž" }, { "input": "homologous", "output": "â “â •â â •⠇⠕⠛⠳⠎" }, { "input": "homonym", "output": "â “â •â â •â â ½â " }, { "input": "homonym's", "output": "â “â •â â •â â ½â â „â Ž" }, { "input": "homonyms", "output": "â “â •â â •â â ½â â Ž" }, { "input": "homophobia", "output": "â “â •â â •â â “⠕⠃⠊â " }, { "input": "homophobia's", "output": "â “â •â â •â â “⠕⠃⠊â â „â Ž" }, { "input": "homophobic", "output": "â “â •â â •â â “⠕⠃⠊⠉" }, { "input": "homophone", "output": "â “â •â â •â â “â â •" }, { "input": "homophone's", "output": "â “â •â â •â â “â â •â „â Ž" }, { "input": "homophones", "output": "â “â •â â •â â “â â •â Ž" }, { "input": "homos", "output": "â “â •â â •â Ž" }, { "input": "homosexual", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡" }, { "input": "homosexual's", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡â „â Ž" }, { "input": "homosexuality", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡â °â ½" }, { "input": "homosexuality's", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡â °â ½â „â Ž" }, { "input": "homosexuals", "output": "â “â •â â •â Žâ ‘â ­â ¥â â ‡â Ž" }, { "input": "hon", "output": "â “â •â " }, { "input": "hon's", "output": "â “â •â â „â Ž" }, { "input": "honcho", "output": "â “â •â â ¡â •" }, { "input": "honcho's", "output": "â “â •â â ¡â •â „â Ž" }, { "input": "honchos", "output": "â “â •â â ¡â •â Ž" }, { "input": "hone", "output": "â “â â •" }, { "input": "hone's", "output": "â “â â •â „â Ž" }, { "input": "honed", "output": "â “â •â â «" }, { "input": "honer", "output": "â “â •â â »" }, { "input": "honer's", "output": "â “â •â â »â „â Ž" }, { "input": "honers", "output": "â “â •â â »â Ž" }, { "input": "hones", "output": "â “â â •â Ž" }, { "input": "honest", "output": "â “â â •â Œ" }, { "input": "honester", "output": "â “â â •⠌⠻" }, { "input": "honestest", "output": "â “â â •⠌⠑⠌" }, { "input": "honestly", "output": "â “â â •⠌⠇⠽" }, { "input": "honesty", "output": "â “â â •⠌⠽" }, { "input": "honesty's", "output": "â “â â •⠌⠽⠄⠎" }, { "input": "honey", "output": "â “â â •â ½" }, { "input": "honey's", "output": "â “â â •⠽⠄⠎" }, { "input": "honeybee", "output": "â “â â •⠽⠃⠑⠑" }, { "input": "honeybee's", "output": "â “â â •⠽⠃⠑⠑⠄⠎" }, { "input": "honeybees", "output": "â “â â •⠽⠃⠑⠑⠎" }, { "input": "honeycomb", "output": "â “â â •⠽⠉⠕â â ƒ" }, { "input": "honeycomb's", "output": "â “â â •⠽⠉⠕â â ƒâ „â Ž" }, { "input": "honeycombed", "output": "â “â â •⠽⠉⠕â â ƒâ «" }, { "input": "honeycombing", "output": "â “â â •⠽⠉⠕â â ƒâ Œ" }, { "input": "honeycombs", "output": "â “â â •⠽⠉⠕â â ƒâ Ž" }, { "input": "honeydew", "output": "â “â â •⠽⠙⠑⠺" }, { "input": "honeydew's", "output": "â “â â •⠽⠙⠑⠺⠄⠎" }, { "input": "honeydews", "output": "â “â â •⠽⠙⠑⠺⠎" }, { "input": "honeyed", "output": "â “â â •⠽⠫" }, { "input": "honeying", "output": "â “â â •⠽⠌" }, { "input": "honeylocust", "output": "â “â â •⠽⠇⠕⠉⠥⠌" }, { "input": "honeylocust's", "output": "â “â â •⠽⠇⠕⠉⠥⠌⠄⠎" }, { "input": "honeymoon", "output": "â “â â •â ½â â •â •â " }, { "input": "honeymoon's", "output": "â “â â •â ½â â •â •â â „â Ž" }, { "input": "honeymooned", "output": "â “â â •â ½â â •â •â â «" }, { "input": "honeymooner", "output": "â “â â •â ½â â •â •â â »" }, { "input": "honeymooner's", "output": "â “â â •â ½â â •â •â â »â „â Ž" }, { "input": "honeymooners", "output": "â “â â •â ½â â •â •â â »â Ž" }, { "input": "honeymooning", "output": "â “â â •â ½â â •â •â â Œ" }, { "input": "honeymoons", "output": "â “â â •â ½â â •â •â â Ž" }, { "input": "honeys", "output": "â “â â •⠽⠎" }, { "input": "honeysuckle", "output": "â “â â •⠽⠎⠥⠉⠅⠇⠑" }, { "input": "honeysuckle's", "output": "â “â â •⠽⠎⠥⠉⠅⠇⠑⠄⠎" }, { "input": "honeysuckles", "output": "â “â â •⠽⠎⠥⠉⠅⠇⠑⠎" }, { "input": "honing", "output": "â “â •â â Œ" }, { "input": "honk", "output": "â “â •â â …" }, { "input": "honk's", "output": "â “â •â â …â „â Ž" }, { "input": "honked", "output": "â “â •â â …â «" }, { "input": "honker", "output": "â “â •â â …â »" }, { "input": "honker's", "output": "â “â •â â …⠻⠄⠎" }, { "input": "honkers", "output": "â “â •â â …⠻⠎" }, { "input": "honking", "output": "â “â •â â …â Œ" }, { "input": "honks", "output": "â “â •â â …â Ž" }, { "input": "honor", "output": "â “â •â â •â —" }, { "input": "honor's", "output": "â “â •â â •â —â „â Ž" }, { "input": "honorable", "output": "â “â •â â •â —â â ¼" }, { "input": "honorableness", "output": "â “â •â â •â —â â ¼â °â Ž" }, { "input": "honorableness's", "output": "â “â •â â •â —â â ¼â °â Žâ „â Ž" }, { "input": "honorably", "output": "â “â •â â •â —â â ƒâ ‡â ½" }, { "input": "honorarily", "output": "â “â •â â •⠗⠜⠊⠇⠽" }, { "input": "honorarium", "output": "â “â •â â •⠗⠜⠊⠥â " }, { "input": "honorarium's", "output": "â “â •â â •⠗⠜⠊⠥â â „â Ž" }, { "input": "honorariums", "output": "â “â •â â •⠗⠜⠊⠥â â Ž" }, { "input": "honorary", "output": "â “â •â â •⠗⠜⠽" }, { "input": "honored", "output": "â “â •â â •â —â «" }, { "input": "honoree", "output": "â “â •â â •â —â ‘â ‘" }, { "input": "honoree's", "output": "â “â •â â •â —â ‘â ‘â „â Ž" }, { "input": "honorees", "output": "â “â •â â •â —â ‘â ‘â Ž" }, { "input": "honorer", "output": "â “â •â â •â —â »" }, { "input": "honorer's", "output": "â “â •â â •⠗⠻⠄⠎" }, { "input": "honorers", "output": "â “â •â â •⠗⠻⠎" }, { "input": "honorific", "output": "â “â •â â •â —â Šâ ‹â Šâ ‰" }, { "input": "honorific's", "output": "â “â •â â •⠗⠊⠋⠊⠉⠄⠎" }, { "input": "honorifics", "output": "â “â •â â •⠗⠊⠋⠊⠉⠎" }, { "input": "honoring", "output": "â “â •â â •â —â Œ" }, { "input": "honors", "output": "â “â •â â •â —â Ž" }, { "input": "hons", "output": "â “â •â â Ž" }, { "input": "hooch", "output": "â “â •â •â ¡" }, { "input": "hooch's", "output": "â “â •â •â ¡â „â Ž" }, { "input": "hood", "output": "â “â •â •â ™" }, { "input": "hood's", "output": "⠓⠕⠕⠙⠄⠎" }, { "input": "hooded", "output": "⠓⠕⠕⠙⠫" }, { "input": "hooding", "output": "⠓⠕⠕⠙⠌" }, { "input": "hoodlum", "output": "⠓⠕⠕⠙⠇⠥â " }, { "input": "hoodlum's", "output": "⠓⠕⠕⠙⠇⠥â â „â Ž" }, { "input": "hoodlums", "output": "⠓⠕⠕⠙⠇⠥â â Ž" }, { "input": "hoodoo", "output": "⠓⠕⠕⠙⠕⠕" }, { "input": "hoodoo's", "output": "⠓⠕⠕⠙⠕⠕⠄⠎" }, { "input": "hoodooed", "output": "⠓⠕⠕⠙⠕⠕⠫" }, { "input": "hoodooing", "output": "⠓⠕⠕⠙⠕⠕⠌" }, { "input": "hoodoos", "output": "⠓⠕⠕⠙⠕⠕⠎" }, { "input": "hoods", "output": "⠓⠕⠕⠙⠎" }, { "input": "hoodwink", "output": "⠓⠕⠕⠙⠺⠔⠅" }, { "input": "hoodwinked", "output": "⠓⠕⠕⠙⠺⠔⠅⠫" }, { "input": "hoodwinking", "output": "⠓⠕⠕⠙⠺⠔⠅⠌" }, { "input": "hoodwinks", "output": "⠓⠕⠕⠙⠺⠔⠅⠎" }, { "input": "hooey", "output": "â “â •â •â ‘â ½" }, { "input": "hooey's", "output": "⠓⠕⠕⠑⠽⠄⠎" }, { "input": "hoof", "output": "â “â •â ·" }, { "input": "hoof's", "output": "â “â •â ·â „â Ž" }, { "input": "hoofed", "output": "â “â •â ·â «" }, { "input": "hoofing", "output": "â “â •â ·â Œ" }, { "input": "hoofs", "output": "â “â •â ·â Ž" }, { "input": "hook", "output": "â “â •â •â …" }, { "input": "hook's", "output": "â “â •â •â …â „â Ž" }, { "input": "hookah", "output": "â “â •â •â …â â “" }, { "input": "hookah's", "output": "â “â •â •â …â â “â „â Ž" }, { "input": "hookahs", "output": "â “â •â •â …â â “â Ž" }, { "input": "hooked", "output": "â “â •â •â …â «" }, { "input": "hooker", "output": "â “â •â •â …â »" }, { "input": "hooker's", "output": "⠓⠕⠕⠅⠻⠄⠎" }, { "input": "hookers", "output": "⠓⠕⠕⠅⠻⠎" }, { "input": "hooking", "output": "â “â •â •â …â Œ" }, { "input": "hooks", "output": "â “â •â •â …â Ž" }, { "input": "hookup", "output": "â “â •â •â …â ¥â " }, { "input": "hookup's", "output": "â “â •â •â …â ¥â â „â Ž" }, { "input": "hookups", "output": "â “â •â •â …â ¥â â Ž" }, { "input": "hookworm", "output": "⠓⠕⠕⠅⠺⠕⠗â " }, { "input": "hookworm's", "output": "⠓⠕⠕⠅⠺⠕⠗â â „â Ž" }, { "input": "hookworms", "output": "⠓⠕⠕⠅⠺⠕⠗â â Ž" }, { "input": "hooky", "output": "â “â •â •â …â ½" }, { "input": "hooky's", "output": "⠓⠕⠕⠅⠽⠄⠎" }, { "input": "hooligan", "output": "⠓⠕⠕⠇⠊⠛â â " }, { "input": "hooligan's", "output": "⠓⠕⠕⠇⠊⠛â â â „â Ž" }, { "input": "hooliganism", "output": "⠓⠕⠕⠇⠊⠛â â â Šâ Žâ " }, { "input": "hooliganism's", "output": "⠓⠕⠕⠇⠊⠛â â â Šâ Žâ â „â Ž" }, { "input": "hooligans", "output": "⠓⠕⠕⠇⠊⠛â â â Ž" }, { "input": "hoop", "output": "â “â •â •â " }, { "input": "hoop's", "output": "â “â •â •â â „â Ž" }, { "input": "hooped", "output": "â “â •â •â â «" }, { "input": "hooping", "output": "â “â •â •â â Œ" }, { "input": "hoopla", "output": "â “â •â •â â ‡â " }, { "input": "hoopla's", "output": "â “â •â •â â ‡â â „â Ž" }, { "input": "hoops", "output": "â “â •â •â â Ž" }, { "input": "hooray", "output": "â “â •â •â —â â ½" }, { "input": "hoosegow", "output": "⠓⠕⠕⠎⠑⠛⠪" }, { "input": "hoosegow's", "output": "⠓⠕⠕⠎⠑⠛⠪⠄⠎" }, { "input": "hoosegows", "output": "⠓⠕⠕⠎⠑⠛⠪⠎" }, { "input": "hoot", "output": "â “â •â •â ž" }, { "input": "hoot's", "output": "â “â •â •â žâ „â Ž" }, { "input": "hooted", "output": "â “â •â •â žâ «" }, { "input": "hootenannies", "output": "â “â •â •â žâ ¢â â â â Šâ ‘â Ž" }, { "input": "hootenanny", "output": "â “â •â •â žâ ¢â â â â ½" }, { "input": "hootenanny's", "output": "â “â •â •â žâ ¢â â â â ½â „â Ž" }, { "input": "hooter", "output": "â “â •â •â žâ »" }, { "input": "hooter's", "output": "⠓⠕⠕⠞⠻⠄⠎" }, { "input": "hooters", "output": "⠓⠕⠕⠞⠻⠎" }, { "input": "hooting", "output": "â “â •â •â žâ Œ" }, { "input": "hoots", "output": "â “â •â •â žâ Ž" }, { "input": "hooves", "output": "â “â •â •â §â ‘â Ž" }, { "input": "hop", "output": "â “â •â " }, { "input": "hop's", "output": "â “â •â â „â Ž" }, { "input": "hope", "output": "â “â •â â ‘" }, { "input": "hope's", "output": "â “â •â â ‘â „â Ž" }, { "input": "hoped", "output": "â “â •â â «" }, { "input": "hopeful", "output": "â “â •â â ‘â °â ‡" }, { "input": "hopeful's", "output": "â “â •â â ‘⠰⠇⠄⠎" }, { "input": "hopefully", "output": "â “â •â â ‘⠰⠇⠇⠽" }, { "input": "hopefulness", "output": "â “â •â â ‘⠰⠇⠰⠎" }, { "input": "hopefulness's", "output": "â “â •â â ‘⠰⠇⠰⠎⠄⠎" }, { "input": "hopefuls", "output": "â “â •â â ‘⠰⠇⠎" }, { "input": "hopeless", "output": "â “â •â â ‘⠨⠎" }, { "input": "hopelessly", "output": "â “â •â â ‘⠨⠎⠇⠽" }, { "input": "hopelessness", "output": "â “â •â â ‘⠨⠎⠰⠎" }, { "input": "hopelessness's", "output": "â “â •â â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "hopes", "output": "â “â •â â ‘â Ž" }, { "input": "hoping", "output": "â “â •â â Œ" }, { "input": "hopped", "output": "â “â •â â â «" }, { "input": "hopper", "output": "â “â •â â â »" }, { "input": "hopper's", "output": "â “â •â â â »â „â Ž" }, { "input": "hoppers", "output": "â “â •â â â »â Ž" }, { "input": "hopping", "output": "â “â •â â â Œ" }, { "input": "hops", "output": "â “â •â â Ž" }, { "input": "hopscotch", "output": "â “â •â â Žâ ‰â •â žâ ¡" }, { "input": "hopscotch's", "output": "â “â •â â Žâ ‰â •â žâ ¡â „â Ž" }, { "input": "hopscotched", "output": "â “â •â â Žâ ‰â •â žâ ¡â «" }, { "input": "hopscotches", "output": "â “â •â â Žâ ‰â •â žâ ¡â ‘â Ž" }, { "input": "hopscotching", "output": "â “â •â â Žâ ‰â •â žâ ¡â Œ" }, { "input": "hora", "output": "â “â •â —â " }, { "input": "hora's", "output": "â “â •â —â â „â Ž" }, { "input": "horas", "output": "â “â •â —â â Ž" }, { "input": "horde", "output": "⠓⠕⠗⠙⠑" }, { "input": "horde's", "output": "⠓⠕⠗⠙⠑⠄⠎" }, { "input": "horded", "output": "⠓⠕⠗⠙⠫" }, { "input": "hordes", "output": "⠓⠕⠗⠙⠑⠎" }, { "input": "hording", "output": "⠓⠕⠗⠙⠌" }, { "input": "horehound", "output": "⠓⠕⠗⠑⠓⠨⠙" }, { "input": "horehound's", "output": "⠓⠕⠗⠑⠓⠨⠙⠄⠎" }, { "input": "horehounds", "output": "⠓⠕⠗⠑⠓⠨⠙⠎" }, { "input": "horizon", "output": "⠓⠕⠗⠊⠵⠕â " }, { "input": "horizon's", "output": "⠓⠕⠗⠊⠵⠕â â „â Ž" }, { "input": "horizons", "output": "⠓⠕⠗⠊⠵⠕â â Ž" }, { "input": "horizontal", "output": "⠓⠕⠗⠊⠵⠕â â žâ â ‡" }, { "input": "horizontal's", "output": "⠓⠕⠗⠊⠵⠕â â žâ â ‡â „â Ž" }, { "input": "horizontally", "output": "⠓⠕⠗⠊⠵⠕â â žâ  â ½" }, { "input": "horizontals", "output": "⠓⠕⠗⠊⠵⠕â â žâ â ‡â Ž" }, { "input": "hormonal", "output": "â “â •â —â â •â â â ‡" }, { "input": "hormone", "output": "â “â •â —â â â •" }, { "input": "hormone's", "output": "â “â •â —â â â •â „â Ž" }, { "input": "hormones", "output": "â “â •â —â â â •â Ž" }, { "input": "horn", "output": "â “â •â —â " }, { "input": "horn's", "output": "â “â •â —â â „â Ž" }, { "input": "hornblende", "output": "â “â •â —â â ƒâ ‡â ¢â ™â ‘" }, { "input": "hornblende's", "output": "â “â •â —â â ƒâ ‡â ¢â ™â ‘â „â Ž" }, { "input": "horned", "output": "â “â •â —â â «" }, { "input": "hornet", "output": "â “â •â —â â ‘â ž" }, { "input": "hornet's", "output": "â “â •â —â â ‘â žâ „â Ž" }, { "input": "hornets", "output": "â “â •â —â â ‘â žâ Ž" }, { "input": "hornier", "output": "â “â •â —â â Šâ »" }, { "input": "horniest", "output": "â “â •â —â â Šâ ‘â Œ" }, { "input": "hornless", "output": "â “â •â —â â ¨â Ž" }, { "input": "hornlike", "output": "â “â •â —â â ‡â Šâ …â ‘" }, { "input": "hornpipe", "output": "â “â •â —â â â Šâ â ‘" }, { "input": "hornpipe's", "output": "â “â •â —â â â Šâ â ‘â „â Ž" }, { "input": "hornpipes", "output": "â “â •â —â â â Šâ â ‘â Ž" }, { "input": "horns", "output": "â “â •â —â â Ž" }, { "input": "horny", "output": "â “â •â —â â ½" }, { "input": "horologic", "output": "⠓⠕⠗⠕⠇⠕⠛⠊⠉" }, { "input": "horological", "output": "⠓⠕⠗⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "horologist", "output": "⠓⠕⠗⠕⠇⠕⠛⠊⠌" }, { "input": "horologist's", "output": "⠓⠕⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "horologists", "output": "⠓⠕⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "horology", "output": "⠓⠕⠗⠕⠇⠕⠛⠽" }, { "input": "horology's", "output": "⠓⠕⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "horoscope", "output": "⠓⠕⠗⠕⠎⠉⠕â â ‘" }, { "input": "horoscope's", "output": "⠓⠕⠗⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "horoscopes", "output": "⠓⠕⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "horrendous", "output": "⠓⠕⠗⠗⠢⠙⠳⠎" }, { "input": "horrendously", "output": "⠓⠕⠗⠗⠢⠙⠳⠎⠇⠽" }, { "input": "horrible", "output": "â “â •â —â —â Šâ ¼" }, { "input": "horribleness", "output": "⠓⠕⠗⠗⠊⠼⠰⠎" }, { "input": "horribleness's", "output": "⠓⠕⠗⠗⠊⠼⠰⠎⠄⠎" }, { "input": "horribly", "output": "⠓⠕⠗⠗⠊⠃⠇⠽" }, { "input": "horrid", "output": "â “â •â —â —â Šâ ™" }, { "input": "horridly", "output": "⠓⠕⠗⠗⠊⠙⠇⠽" }, { "input": "horrific", "output": "â “â •â —â —â Šâ ‹â Šâ ‰" }, { "input": "horrified", "output": "â “â •â —â —â Šâ ‹â Šâ «" }, { "input": "horrifies", "output": "â “â •â —â —â Šâ ‹â Šâ ‘â Ž" }, { "input": "horrify", "output": "â “â •â —â —â Šâ ‹â ½" }, { "input": "horrifying", "output": "⠓⠕⠗⠗⠊⠋⠽⠌" }, { "input": "horror", "output": "â “â •â —â —â •â —" }, { "input": "horror's", "output": "â “â •â —â —â •â —â „â Ž" }, { "input": "horrors", "output": "â “â •â —â —â •â —â Ž" }, { "input": "horse", "output": "â “â •â —â Žâ ‘" }, { "input": "horse's", "output": "â “â •â —â Žâ ‘â „â Ž" }, { "input": "horseback", "output": "â “â •â —â Žâ ‘â ƒâ â ‰â …" }, { "input": "horseback's", "output": "â “â •â —â Žâ ‘â ƒâ â ‰â …â „â Ž" }, { "input": "horsed", "output": "â “â •â —â Žâ «" }, { "input": "horseflesh", "output": "⠓⠕⠗⠎⠑⠋⠇⠑⠩" }, { "input": "horseflesh's", "output": "⠓⠕⠗⠎⠑⠋⠇⠑⠩⠄⠎" }, { "input": "horseflies", "output": "⠓⠕⠗⠎⠑⠋⠇⠊⠑⠎" }, { "input": "horsefly", "output": "⠓⠕⠗⠎⠑⠋⠇⠽" }, { "input": "horsefly's", "output": "⠓⠕⠗⠎⠑⠋⠇⠽⠄⠎" }, { "input": "horsehair", "output": "â “â •â —â Žâ ‘â “â â Šâ —" }, { "input": "horsehair's", "output": "â “â •â —â Žâ ‘â “â â Šâ —â „â Ž" }, { "input": "horsehide", "output": "⠓⠕⠗⠎⠑⠓⠊⠙⠑" }, { "input": "horsehide's", "output": "⠓⠕⠗⠎⠑⠓⠊⠙⠑⠄⠎" }, { "input": "horselaugh", "output": "â “â •â —â Žâ ‘â ‡â â ¥â £" }, { "input": "horselaugh's", "output": "â “â •â —â Žâ ‘â ‡â â ¥â £â „â Ž" }, { "input": "horselaughs", "output": "â “â •â —â Žâ ‘â ‡â â ¥â £â Ž" }, { "input": "horseless", "output": "⠓⠕⠗⠎⠑⠨⠎" }, { "input": "horseman", "output": "â “â •â —â Žâ ‘â â â " }, { "input": "horseman's", "output": "â “â •â —â Žâ ‘â â â â „â Ž" }, { "input": "horsemanship", "output": "â “â •â —â Žâ ‘â â â â ©â Šâ " }, { "input": "horsemanship's", "output": "â “â •â —â Žâ ‘â â â â ©â Šâ â „â Ž" }, { "input": "horsemen", "output": "â “â •â —â Žâ ‘â â ¢" }, { "input": "horseplay", "output": "â “â •â —â Žâ ‘â â ‡â â ½" }, { "input": "horseplay's", "output": "â “â •â —â Žâ ‘â â ‡â â ½â „â Ž" }, { "input": "horsepower", "output": "â “â •â —â Žâ ‘â â ªâ »" }, { "input": "horsepower's", "output": "â “â •â —â Žâ ‘â â ªâ »â „â Ž" }, { "input": "horseradish", "output": "â “â •â —â Žâ ‘â —â â ™â Šâ ©" }, { "input": "horseradish's", "output": "â “â •â —â Žâ ‘â —â â ™â Šâ ©â „â Ž" }, { "input": "horseradishes", "output": "â “â •â —â Žâ ‘â —â â ™â Šâ ©â ‘â Ž" }, { "input": "horses", "output": "â “â •â —â Žâ ‘â Ž" }, { "input": "horseshoe", "output": "â “â •â —â Žâ ‘â ©â •â ‘" }, { "input": "horseshoe's", "output": "â “â •â —â Žâ ‘â ©â •â ‘â „â Ž" }, { "input": "horseshoed", "output": "â “â •â —â Žâ ‘â ©â •â «" }, { "input": "horseshoeing", "output": "â “â •â —â Žâ ‘â ©â •â ‘â Œ" }, { "input": "horseshoes", "output": "â “â •â —â Žâ ‘â ©â •â ‘â Ž" }, { "input": "horsetail", "output": "â “â •â —â Žâ ‘â žâ â Šâ ‡" }, { "input": "horsetail's", "output": "â “â •â —â Žâ ‘â žâ â Šâ ‡â „â Ž" }, { "input": "horsetails", "output": "â “â •â —â Žâ ‘â žâ â Šâ ‡â Ž" }, { "input": "horsewhip", "output": "⠓⠕⠗⠎⠑⠱⠊â " }, { "input": "horsewhip's", "output": "⠓⠕⠗⠎⠑⠱⠊â â „â Ž" }, { "input": "horsewhipped", "output": "⠓⠕⠗⠎⠑⠱⠊â â â «" }, { "input": "horsewhipping", "output": "⠓⠕⠗⠎⠑⠱⠊â â â Œ" }, { "input": "horsewhips", "output": "⠓⠕⠗⠎⠑⠱⠊â â Ž" }, { "input": "horsewoman", "output": "⠓⠕⠗⠎⠑⠺⠕â â â " }, { "input": "horsewoman's", "output": "⠓⠕⠗⠎⠑⠺⠕â â â â „â Ž" }, { "input": "horsewomen", "output": "⠓⠕⠗⠎⠑⠺⠕â â ¢" }, { "input": "horsey", "output": "â “â •â —â Žâ ‘â ½" }, { "input": "horsier", "output": "â “â •â —â Žâ Šâ »" }, { "input": "horsiest", "output": "â “â •â —â Žâ Šâ ‘â Œ" }, { "input": "horsing", "output": "â “â •â —â Žâ Œ" }, { "input": "hortatory", "output": "â “â •â —â žâ â žâ •â —â ½" }, { "input": "horticultural", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "horticulture", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠑" }, { "input": "horticulture's", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "horticulturist", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌" }, { "input": "horticulturist's", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌⠄⠎" }, { "input": "horticulturists", "output": "⠓⠕⠗⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌⠎" }, { "input": "hos", "output": "â “â •â Ž" }, { "input": "hosanna", "output": "â “â •â Žâ â â â " }, { "input": "hosanna's", "output": "â “â •â Žâ â â â â „â Ž" }, { "input": "hosannas", "output": "â “â •â Žâ â â â â Ž" }, { "input": "hose", "output": "â “â •â Žâ ‘" }, { "input": "hose's", "output": "â “â •â Žâ ‘â „â Ž" }, { "input": "hosed", "output": "â “â •â Žâ «" }, { "input": "hoses", "output": "â “â •â Žâ ‘â Ž" }, { "input": "hosier", "output": "â “â •â Žâ Šâ »" }, { "input": "hosier's", "output": "⠓⠕⠎⠊⠻⠄⠎" }, { "input": "hosiers", "output": "⠓⠕⠎⠊⠻⠎" }, { "input": "hosiery", "output": "⠓⠕⠎⠊⠻⠽" }, { "input": "hosiery's", "output": "⠓⠕⠎⠊⠻⠽⠄⠎" }, { "input": "hosing", "output": "â “â •â Žâ Œ" }, { "input": "hospice", "output": "â “â •â Žâ â Šâ ‰â ‘" }, { "input": "hospice's", "output": "â “â •â Žâ â Šâ ‰â ‘â „â Ž" }, { "input": "hospices", "output": "â “â •â Žâ â Šâ ‰â ‘â Ž" }, { "input": "hospitable", "output": "â “â •â Žâ â Šâ žâ â ¼" }, { "input": "hospitably", "output": "â “â •â Žâ â Šâ žâ â ƒâ ‡â ½" }, { "input": "hospital", "output": "â “â •â Žâ â Šâ žâ â ‡" }, { "input": "hospital's", "output": "â “â •â Žâ â Šâ žâ â ‡â „â Ž" }, { "input": "hospitality", "output": "â “â •â Žâ â Šâ žâ â ‡â °â ½" }, { "input": "hospitality's", "output": "â “â •â Žâ â Šâ žâ â ‡â °â ½â „â Ž" }, { "input": "hospitalization", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ  â " }, { "input": "hospitalization's", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "hospitalizations", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ  â â Ž" }, { "input": "hospitalize", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "hospitalized", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ «" }, { "input": "hospitalizes", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "hospitalizing", "output": "â “â •â Žâ â Šâ žâ â ‡â Šâ µâ Œ" }, { "input": "hospitals", "output": "â “â •â Žâ â Šâ žâ â ‡â Ž" }, { "input": "host", "output": "â “â •â Œ" }, { "input": "host's", "output": "⠓⠕⠌⠄⠎" }, { "input": "hostage", "output": "â “â •â Œâ â ›â ‘" }, { "input": "hostage's", "output": "â “â •â Œâ â ›â ‘â „â Ž" }, { "input": "hostages", "output": "â “â •â Œâ â ›â ‘â Ž" }, { "input": "hosted", "output": "⠓⠕⠌⠫" }, { "input": "hostel", "output": "⠓⠕⠌⠑⠇" }, { "input": "hostel's", "output": "⠓⠕⠌⠑⠇⠄⠎" }, { "input": "hosteled", "output": "⠓⠕⠌⠑⠇⠫" }, { "input": "hosteler", "output": "⠓⠕⠌⠑⠇⠻" }, { "input": "hosteler's", "output": "⠓⠕⠌⠑⠇⠻⠄⠎" }, { "input": "hostelers", "output": "⠓⠕⠌⠑⠇⠻⠎" }, { "input": "hosteling", "output": "⠓⠕⠌⠑⠇⠌" }, { "input": "hostelries", "output": "⠓⠕⠌⠑⠇⠗⠊⠑⠎" }, { "input": "hostelry", "output": "⠓⠕⠌⠑⠇⠗⠽" }, { "input": "hostelry's", "output": "⠓⠕⠌⠑⠇⠗⠽⠄⠎" }, { "input": "hostels", "output": "⠓⠕⠌⠑⠇⠎" }, { "input": "hostess", "output": "⠓⠕⠌⠑⠎⠎" }, { "input": "hostess's", "output": "⠓⠕⠌⠑⠎⠎⠄⠎" }, { "input": "hostessed", "output": "⠓⠕⠌⠑⠎⠎⠫" }, { "input": "hostesses", "output": "⠓⠕⠌⠑⠎⠎⠑⠎" }, { "input": "hostessing", "output": "⠓⠕⠌⠑⠎⠎⠌" }, { "input": "hostile", "output": "⠓⠕⠌⠊⠇⠑" }, { "input": "hostile's", "output": "⠓⠕⠌⠊⠇⠑⠄⠎" }, { "input": "hostilely", "output": "⠓⠕⠌⠊⠇⠑⠇⠽" }, { "input": "hostiles", "output": "⠓⠕⠌⠊⠇⠑⠎" }, { "input": "hostilities", "output": "⠓⠕⠌⠊⠇⠊⠞⠊⠑⠎" }, { "input": "hostilities's", "output": "⠓⠕⠌⠊⠇⠊⠞⠊⠑⠎⠄⠎" }, { "input": "hostility", "output": "⠓⠕⠌⠊⠇⠰⠽" }, { "input": "hostility's", "output": "⠓⠕⠌⠊⠇⠰⠽⠄⠎" }, { "input": "hosting", "output": "⠓⠕⠌⠌" }, { "input": "hostler", "output": "⠓⠕⠌⠇⠻" }, { "input": "hostler's", "output": "⠓⠕⠌⠇⠻⠄⠎" }, { "input": "hostlers", "output": "⠓⠕⠌⠇⠻⠎" }, { "input": "hosts", "output": "⠓⠕⠌⠎" }, { "input": "hot", "output": "â “â •â ž" }, { "input": "hotbed", "output": "⠓⠕⠞⠃⠫" }, { "input": "hotbed's", "output": "⠓⠕⠞⠃⠫⠄⠎" }, { "input": "hotbeds", "output": "⠓⠕⠞⠃⠫⠎" }, { "input": "hotblooded", "output": "⠓⠕⠞⠃⠇⠕⠕⠙⠫" }, { "input": "hotbox", "output": "⠓⠕⠞⠃⠕⠭" }, { "input": "hotbox's", "output": "⠓⠕⠞⠃⠕⠭⠄⠎" }, { "input": "hotboxes", "output": "⠓⠕⠞⠃⠕⠭⠑⠎" }, { "input": "hotcake", "output": "â “â •â žâ ‰â â …â ‘" }, { "input": "hotcake's", "output": "â “â •â žâ ‰â â …â ‘â „â Ž" }, { "input": "hotcakes", "output": "â “â •â žâ ‰â â …â ‘â Ž" }, { "input": "hotel", "output": "â “â •â žâ ‘â ‡" }, { "input": "hotel's", "output": "⠓⠕⠞⠑⠇⠄⠎" }, { "input": "hotelier", "output": "⠓⠕⠞⠑⠇⠊⠻" }, { "input": "hotelier's", "output": "⠓⠕⠞⠑⠇⠊⠻⠄⠎" }, { "input": "hoteliers", "output": "⠓⠕⠞⠑⠇⠊⠻⠎" }, { "input": "hotels", "output": "⠓⠕⠞⠑⠇⠎" }, { "input": "hothead", "output": "â “â •â žâ “â ‚â ™" }, { "input": "hothead's", "output": "⠓⠕⠞⠓⠂⠙⠄⠎" }, { "input": "hotheaded", "output": "⠓⠕⠞⠓⠂⠙⠫" }, { "input": "hotheadedly", "output": "⠓⠕⠞⠓⠂⠙⠫⠇⠽" }, { "input": "hotheadedness", "output": "⠓⠕⠞⠓⠂⠙⠫⠰⠎" }, { "input": "hotheadedness's", "output": "⠓⠕⠞⠓⠂⠙⠫⠰⠎⠄⠎" }, { "input": "hotheads", "output": "⠓⠕⠞⠓⠂⠙⠎" }, { "input": "hothouse", "output": "⠓⠕⠞⠓⠳⠎⠑" }, { "input": "hothouse's", "output": "⠓⠕⠞⠓⠳⠎⠑⠄⠎" }, { "input": "hothouses", "output": "⠓⠕⠞⠓⠳⠎⠑⠎" }, { "input": "hotly", "output": "⠓⠕⠞⠇⠽" }, { "input": "hotness", "output": "â “â •â žâ °â Ž" }, { "input": "hotness's", "output": "â “â •â žâ °â Žâ „â Ž" }, { "input": "hots's", "output": "â “â •â žâ Žâ „â Ž" }, { "input": "hotshot", "output": "â “â •â žâ ©â •â ž" }, { "input": "hotshot's", "output": "â “â •â žâ ©â •â žâ „â Ž" }, { "input": "hotshots", "output": "â “â •â žâ ©â •â žâ Ž" }, { "input": "hotter", "output": "â “â •â žâ žâ »" }, { "input": "hottest", "output": "â “â •â žâ žâ ‘â Œ" }, { "input": "hound", "output": "⠓⠨⠙" }, { "input": "hound's", "output": "⠓⠨⠙⠄⠎" }, { "input": "hounded", "output": "⠓⠨⠙⠫" }, { "input": "hounding", "output": "⠓⠨⠙⠌" }, { "input": "hounds", "output": "⠓⠨⠙⠎" }, { "input": "hour", "output": "⠓⠳⠗" }, { "input": "hour's", "output": "⠓⠳⠗⠄⠎" }, { "input": "hourglass", "output": "⠓⠳⠗⠛⠇â â Žâ Ž" }, { "input": "hourglass's", "output": "⠓⠳⠗⠛⠇â â Žâ Žâ „â Ž" }, { "input": "hourglasses", "output": "⠓⠳⠗⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "houri", "output": "⠓⠳⠗⠊" }, { "input": "houri's", "output": "⠓⠳⠗⠊⠄⠎" }, { "input": "houris", "output": "⠓⠳⠗⠊⠎" }, { "input": "hourly", "output": "⠓⠳⠗⠇⠽" }, { "input": "hours", "output": "⠓⠳⠗⠎" }, { "input": "house", "output": "⠓⠳⠎⠑" }, { "input": "house's", "output": "⠓⠳⠎⠑⠄⠎" }, { "input": "houseboat", "output": "⠓⠳⠎⠑⠃⠕â â ž" }, { "input": "houseboat's", "output": "⠓⠳⠎⠑⠃⠕â â žâ „â Ž" }, { "input": "houseboats", "output": "⠓⠳⠎⠑⠃⠕â â žâ Ž" }, { "input": "housebound", "output": "⠓⠳⠎⠑⠃⠨⠙" }, { "input": "housebreak", "output": "⠓⠳⠎⠑⠃⠗⠂⠅" }, { "input": "housebreaking", "output": "⠓⠳⠎⠑⠃⠗⠂⠅⠌" }, { "input": "housebreaking's", "output": "⠓⠳⠎⠑⠃⠗⠂⠅⠌⠄⠎" }, { "input": "housebreaks", "output": "⠓⠳⠎⠑⠃⠗⠂⠅⠎" }, { "input": "housebroke", "output": "⠓⠳⠎⠑⠃⠗⠕⠅⠑" }, { "input": "housebroken", "output": "⠓⠳⠎⠑⠃⠗⠕⠅⠢" }, { "input": "houseclean", "output": "⠓⠳⠎⠑⠉⠇⠂â " }, { "input": "housecleaned", "output": "⠓⠳⠎⠑⠉⠇⠂â â «" }, { "input": "housecleaning", "output": "⠓⠳⠎⠑⠉⠇⠂â â Œ" }, { "input": "housecleaning's", "output": "⠓⠳⠎⠑⠉⠇⠂â â Œâ „â Ž" }, { "input": "housecleans", "output": "⠓⠳⠎⠑⠉⠇⠂â â Ž" }, { "input": "housecoat", "output": "⠓⠳⠎⠑⠉⠕â â ž" }, { "input": "housecoat's", "output": "⠓⠳⠎⠑⠉⠕â â žâ „â Ž" }, { "input": "housecoats", "output": "⠓⠳⠎⠑⠉⠕â â žâ Ž" }, { "input": "housed", "output": "⠓⠳⠎⠫" }, { "input": "houseflies", "output": "⠓⠳⠎⠑⠋⠇⠊⠑⠎" }, { "input": "housefly", "output": "⠓⠳⠎⠑⠋⠇⠽" }, { "input": "housefly's", "output": "⠓⠳⠎⠑⠋⠇⠽⠄⠎" }, { "input": "houseful's", "output": "⠓⠳⠎⠑⠰⠇⠄⠎" }, { "input": "housefuls", "output": "⠓⠳⠎⠑⠰⠇⠎" }, { "input": "household", "output": "⠓⠳⠎⠑⠓⠕⠇⠙" }, { "input": "household's", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠄⠎" }, { "input": "householder", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠻" }, { "input": "householder's", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠻⠄⠎" }, { "input": "householders", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠻⠎" }, { "input": "households", "output": "⠓⠳⠎⠑⠓⠕⠇⠙⠎" }, { "input": "househusband", "output": "⠓⠳⠎⠑⠓⠥⠎⠃⠯" }, { "input": "househusband's", "output": "⠓⠳⠎⠑⠓⠥⠎⠃⠯⠄⠎" }, { "input": "househusbands", "output": "⠓⠳⠎⠑⠓⠥⠎⠃⠯⠎" }, { "input": "housekeeper", "output": "⠓⠳⠎⠑⠅⠑⠑â â »" }, { "input": "housekeeper's", "output": "⠓⠳⠎⠑⠅⠑⠑â â »â „â Ž" }, { "input": "housekeepers", "output": "⠓⠳⠎⠑⠅⠑⠑â â »â Ž" }, { "input": "housekeeping", "output": "⠓⠳⠎⠑⠅⠑⠑â â Œ" }, { "input": "housekeeping's", "output": "⠓⠳⠎⠑⠅⠑⠑â â Œâ „â Ž" }, { "input": "houselights", "output": "⠓⠳⠎⠑⠇⠊⠣⠞⠎" }, { "input": "houselights's", "output": "⠓⠳⠎⠑⠇⠊⠣⠞⠎⠄⠎" }, { "input": "housemaid", "output": "⠓⠳⠎⠑â â â Šâ ™" }, { "input": "housemaid's", "output": "⠓⠳⠎⠑â â â Šâ ™â „â Ž" }, { "input": "housemaids", "output": "⠓⠳⠎⠑â â â Šâ ™â Ž" }, { "input": "housemother", "output": "⠓⠳⠎⠑â â " }, { "input": "housemother's", "output": "⠓⠳⠎⠑â â â „â Ž" }, { "input": "housemothers", "output": "⠓⠳⠎⠑â â â Ž" }, { "input": "houseparent", "output": "⠓⠳⠎⠑â â œâ ¢â ž" }, { "input": "houseparent's", "output": "⠓⠳⠎⠑â â œâ ¢â žâ „â Ž" }, { "input": "houseparents", "output": "⠓⠳⠎⠑â â œâ ¢â žâ Ž" }, { "input": "houseplant", "output": "⠓⠳⠎⠑â â ‡â â â ž" }, { "input": "houseplant's", "output": "⠓⠳⠎⠑â â ‡â â â žâ „â Ž" }, { "input": "houseplants", "output": "⠓⠳⠎⠑â â ‡â â â žâ Ž" }, { "input": "houses", "output": "⠓⠳⠎⠑⠎" }, { "input": "housetop", "output": "⠓⠳⠎⠑⠞⠕â " }, { "input": "housetop's", "output": "⠓⠳⠎⠑⠞⠕â â „â Ž" }, { "input": "housetops", "output": "⠓⠳⠎⠑⠞⠕â â Ž" }, { "input": "housewares", "output": "⠓⠳⠎⠑⠺⠜⠑⠎" }, { "input": "housewares's", "output": "⠓⠳⠎⠑⠺⠜⠑⠎⠄⠎" }, { "input": "housewarming", "output": "⠓⠳⠎⠑⠺⠜â â Œ" }, { "input": "housewarming's", "output": "⠓⠳⠎⠑⠺⠜â â Œâ „â Ž" }, { "input": "housewarmings", "output": "⠓⠳⠎⠑⠺⠜â â Œâ Ž" }, { "input": "housewife", "output": "⠓⠳⠎⠑⠺⠊⠋⠑" }, { "input": "housewife's", "output": "⠓⠳⠎⠑⠺⠊⠋⠑⠄⠎" }, { "input": "housewives", "output": "⠓⠳⠎⠑⠺⠊⠧⠑⠎" }, { "input": "housework", "output": "⠓⠳⠎⠑â â º" }, { "input": "housework's", "output": "⠓⠳⠎⠑â â ºâ „â Ž" }, { "input": "housing", "output": "⠓⠳⠎⠌" }, { "input": "housing's", "output": "⠓⠳⠎⠌⠄⠎" }, { "input": "housings", "output": "⠓⠳⠎⠌⠎" }, { "input": "hove", "output": "â “â •â §â ‘" }, { "input": "hovel", "output": "â “â •â §â ‘â ‡" }, { "input": "hovel's", "output": "⠓⠕⠧⠑⠇⠄⠎" }, { "input": "hovels", "output": "⠓⠕⠧⠑⠇⠎" }, { "input": "hover", "output": "â “â •â §â »" }, { "input": "hovercraft", "output": "⠓⠕⠧⠻⠉⠗â â ‹â ž" }, { "input": "hovercraft's", "output": "⠓⠕⠧⠻⠉⠗â â ‹â žâ „â Ž" }, { "input": "hovered", "output": "⠓⠕⠧⠻⠫" }, { "input": "hovering", "output": "⠓⠕⠧⠻⠌" }, { "input": "hovers", "output": "⠓⠕⠧⠻⠎" }, { "input": "how", "output": "â “â ª" }, { "input": "how's", "output": "⠓⠪⠄⠎" }, { "input": "howbeit", "output": "⠓⠪⠃⠑⠊⠞" }, { "input": "howdah", "output": "⠓⠪⠙â â “" }, { "input": "howdah's", "output": "⠓⠪⠙â â “â „â Ž" }, { "input": "howdahs", "output": "⠓⠪⠙â â “â Ž" }, { "input": "howdy", "output": "⠓⠪⠙⠽" }, { "input": "however", "output": "â “â ªâ â ‘" }, { "input": "howitzer", "output": "⠓⠪⠊⠞⠵⠻" }, { "input": "howitzer's", "output": "⠓⠪⠊⠞⠵⠻⠄⠎" }, { "input": "howitzers", "output": "⠓⠪⠊⠞⠵⠻⠎" }, { "input": "howl", "output": "⠓⠪⠇" }, { "input": "howl's", "output": "⠓⠪⠇⠄⠎" }, { "input": "howled", "output": "⠓⠪⠇⠫" }, { "input": "howler", "output": "⠓⠪⠇⠻" }, { "input": "howler's", "output": "⠓⠪⠇⠻⠄⠎" }, { "input": "howlers", "output": "⠓⠪⠇⠻⠎" }, { "input": "howling", "output": "⠓⠪⠇⠌" }, { "input": "howls", "output": "⠓⠪⠇⠎" }, { "input": "hows", "output": "⠓⠪⠎" }, { "input": "howsoever", "output": "⠓⠪⠎⠕â â ‘" }, { "input": "hoyden", "output": "⠓⠕⠽⠙⠢" }, { "input": "hoyden's", "output": "⠓⠕⠽⠙⠢⠄⠎" }, { "input": "hoydenish", "output": "⠓⠕⠽⠙⠢⠊⠩" }, { "input": "hoydens", "output": "⠓⠕⠽⠙⠢⠎" }, { "input": "huarache", "output": "⠓⠥⠜â â ¡â ‘" }, { "input": "huarache's", "output": "⠓⠥⠜â â ¡â ‘â „â Ž" }, { "input": "huaraches", "output": "⠓⠥⠜â â ¡â ‘â Ž" }, { "input": "hub", "output": "⠓⠥⠃" }, { "input": "hub's", "output": "⠓⠥⠃⠄⠎" }, { "input": "hubbies", "output": "⠓⠥⠆⠊⠑⠎" }, { "input": "hubbub", "output": "⠓⠥⠆⠥⠃" }, { "input": "hubbub's", "output": "⠓⠥⠆⠥⠃⠄⠎" }, { "input": "hubbubs", "output": "⠓⠥⠆⠥⠃⠎" }, { "input": "hubby", "output": "⠓⠥⠆⠽" }, { "input": "hubby's", "output": "⠓⠥⠆⠽⠄⠎" }, { "input": "hubcap", "output": "⠓⠥⠃⠉â â " }, { "input": "hubcap's", "output": "⠓⠥⠃⠉â â â „â Ž" }, { "input": "hubcaps", "output": "⠓⠥⠃⠉â â â Ž" }, { "input": "hubris", "output": "⠓⠥⠃⠗⠊⠎" }, { "input": "hubris's", "output": "⠓⠥⠃⠗⠊⠎⠄⠎" }, { "input": "hubs", "output": "⠓⠥⠃⠎" }, { "input": "huckleberries", "output": "⠓⠥⠉⠅⠇⠑⠃⠻⠗⠊⠑⠎" }, { "input": "huckleberry", "output": "⠓⠥⠉⠅⠇⠑⠃⠻⠗⠽" }, { "input": "huckleberry's", "output": "⠓⠥⠉⠅⠇⠑⠃⠻⠗⠽⠄⠎" }, { "input": "huckster", "output": "⠓⠥⠉⠅⠌⠻" }, { "input": "huckster's", "output": "⠓⠥⠉⠅⠌⠻⠄⠎" }, { "input": "huckstered", "output": "⠓⠥⠉⠅⠌⠻⠫" }, { "input": "huckstering", "output": "⠓⠥⠉⠅⠌⠻⠌" }, { "input": "hucksterism", "output": "⠓⠥⠉⠅⠌⠻⠊⠎â " }, { "input": "hucksterism's", "output": "⠓⠥⠉⠅⠌⠻⠊⠎â â „â Ž" }, { "input": "hucksters", "output": "⠓⠥⠉⠅⠌⠻⠎" }, { "input": "huddle", "output": "⠓⠥⠲⠇⠑" }, { "input": "huddle's", "output": "⠓⠥⠲⠇⠑⠄⠎" }, { "input": "huddled", "output": "⠓⠥⠲⠇⠫" }, { "input": "huddles", "output": "⠓⠥⠲⠇⠑⠎" }, { "input": "huddling", "output": "⠓⠥⠲⠇⠌" }, { "input": "hue", "output": "⠓⠥⠑" }, { "input": "hue's", "output": "⠓⠥⠑⠄⠎" }, { "input": "hued", "output": "⠓⠥⠫" }, { "input": "hues", "output": "⠓⠥⠑⠎" }, { "input": "huff", "output": "⠓⠥⠋⠋" }, { "input": "huff's", "output": "⠓⠥⠋⠋⠄⠎" }, { "input": "huffed", "output": "⠓⠥⠖⠫" }, { "input": "huffier", "output": "⠓⠥⠖⠊⠻" }, { "input": "huffiest", "output": "⠓⠥⠖⠊⠑⠌" }, { "input": "huffily", "output": "⠓⠥⠖⠊⠇⠽" }, { "input": "huffiness", "output": "⠓⠥⠖⠊⠰⠎" }, { "input": "huffiness's", "output": "⠓⠥⠖⠊⠰⠎⠄⠎" }, { "input": "huffing", "output": "⠓⠥⠖⠌" }, { "input": "huffs", "output": "⠓⠥⠖⠎" }, { "input": "huffy", "output": "⠓⠥⠖⠽" }, { "input": "hug", "output": "⠓⠥⠛" }, { "input": "hug's", "output": "⠓⠥⠛⠄⠎" }, { "input": "huge", "output": "⠓⠥⠛⠑" }, { "input": "hugely", "output": "⠓⠥⠛⠑⠇⠽" }, { "input": "hugeness", "output": "⠓⠥⠛⠑⠰⠎" }, { "input": "hugeness's", "output": "⠓⠥⠛⠑⠰⠎⠄⠎" }, { "input": "huger", "output": "⠓⠥⠛⠻" }, { "input": "hugest", "output": "⠓⠥⠛⠑⠌" }, { "input": "hugged", "output": "⠓⠥⠶⠫" }, { "input": "hugging", "output": "⠓⠥⠶⠌" }, { "input": "hugs", "output": "⠓⠥⠛⠎" }, { "input": "huh", "output": "⠓⠥⠓" }, { "input": "hula", "output": "⠓⠥⠇â " }, { "input": "hula's", "output": "⠓⠥⠇â â „â Ž" }, { "input": "hulas", "output": "⠓⠥⠇â â Ž" }, { "input": "hulk", "output": "⠓⠥⠇⠅" }, { "input": "hulk's", "output": "⠓⠥⠇⠅⠄⠎" }, { "input": "hulking", "output": "⠓⠥⠇⠅⠌" }, { "input": "hulks", "output": "⠓⠥⠇⠅⠎" }, { "input": "hull", "output": "⠓⠥⠇⠇" }, { "input": "hull's", "output": "⠓⠥⠇⠇⠄⠎" }, { "input": "hullabaloo", "output": "⠓⠥⠇⠇â â ƒâ â ‡â •â •" }, { "input": "hullabaloo's", "output": "⠓⠥⠇⠇â â ƒâ â ‡â •â •â „â Ž" }, { "input": "hullabaloos", "output": "⠓⠥⠇⠇â â ƒâ â ‡â •â •â Ž" }, { "input": "hulled", "output": "⠓⠥⠇⠇⠫" }, { "input": "huller", "output": "⠓⠥⠇⠇⠻" }, { "input": "huller's", "output": "⠓⠥⠇⠇⠻⠄⠎" }, { "input": "hullers", "output": "⠓⠥⠇⠇⠻⠎" }, { "input": "hulling", "output": "⠓⠥⠇⠇⠌" }, { "input": "hulls", "output": "⠓⠥⠇⠇⠎" }, { "input": "hum", "output": "â “â ¥â " }, { "input": "hum's", "output": "â “â ¥â â „â Ž" }, { "input": "human", "output": "â “â ¥â â â " }, { "input": "human's", "output": "â “â ¥â â â â „â Ž" }, { "input": "humane", "output": "â “â ¥â â â â ‘" }, { "input": "humanely", "output": "â “â ¥â â â â ‘⠇⠽" }, { "input": "humaneness", "output": "â “â ¥â â â â ‘â °â Ž" }, { "input": "humaneness's", "output": "â “â ¥â â â â ‘â °â Žâ „â Ž" }, { "input": "humaner", "output": "â “â ¥â â â â »" }, { "input": "humanest", "output": "â “â ¥â â â â ‘â Œ" }, { "input": "humanism", "output": "â “â ¥â â â â Šâ Žâ " }, { "input": "humanism's", "output": "â “â ¥â â â â Šâ Žâ â „â Ž" }, { "input": "humanist", "output": "â “â ¥â â â â Šâ Œ" }, { "input": "humanist's", "output": "â “â ¥â â â â Šâ Œâ „â Ž" }, { "input": "humanistic", "output": "â “â ¥â â â â Šâ Œâ Šâ ‰" }, { "input": "humanists", "output": "â “â ¥â â â â Šâ Œâ Ž" }, { "input": "humanitarian", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â " }, { "input": "humanitarian's", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â â „â Ž" }, { "input": "humanitarianism", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "humanitarianism's", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â â Šâ Žâ â „â Ž" }, { "input": "humanitarians", "output": "â “â ¥â â â â Šâ žâ œâ Šâ â â Ž" }, { "input": "humanities", "output": "â “â ¥â â â â Šâ žâ Šâ ‘â Ž" }, { "input": "humanities's", "output": "â “â ¥â â â â Šâ žâ Šâ ‘â Žâ „â Ž" }, { "input": "humanity", "output": "â “â ¥â â â â °â ½" }, { "input": "humanity's", "output": "â “â ¥â â â â °â ½â „â Ž" }, { "input": "humanization", "output": "â “â ¥â â â â Šâ µâ  â " }, { "input": "humanization's", "output": "â “â ¥â â â â Šâ µâ  â â „â Ž" }, { "input": "humanize", "output": "â “â ¥â â â â Šâ µâ ‘" }, { "input": "humanized", "output": "â “â ¥â â â â Šâ µâ «" }, { "input": "humanizer", "output": "â “â ¥â â â â Šâ µâ »" }, { "input": "humanizer's", "output": "â “â ¥â â â â Šâ µâ »â „â Ž" }, { "input": "humanizers", "output": "â “â ¥â â â â Šâ µâ »â Ž" }, { "input": "humanizes", "output": "â “â ¥â â â â Šâ µâ ‘â Ž" }, { "input": "humanizing", "output": "â “â ¥â â â â Šâ µâ Œ" }, { "input": "humankind", "output": "â “â ¥â â â â …⠔⠙" }, { "input": "humankind's", "output": "â “â ¥â â â â …⠔⠙⠄⠎" }, { "input": "humanly", "output": "â “â ¥â â â â ‡â ½" }, { "input": "humanness", "output": "â “â ¥â â â â °â Ž" }, { "input": "humanness's", "output": "â “â ¥â â â â °â Žâ „â Ž" }, { "input": "humanoid", "output": "â “â ¥â â â â •â Šâ ™" }, { "input": "humanoid's", "output": "â “â ¥â â â â •⠊⠙⠄⠎" }, { "input": "humanoids", "output": "â “â ¥â â â â •⠊⠙⠎" }, { "input": "humans", "output": "â “â ¥â â â â Ž" }, { "input": "humble", "output": "â “â ¥â â ¼" }, { "input": "humbled", "output": "â “â ¥â â ¼â ™" }, { "input": "humbleness", "output": "â “â ¥â â ¼â °â Ž" }, { "input": "humbleness's", "output": "â “â ¥â â ¼â °â Žâ „â Ž" }, { "input": "humbler", "output": "â “â ¥â â ¼â —" }, { "input": "humbler's", "output": "â “â ¥â â ¼â —â „â Ž" }, { "input": "humblers", "output": "â “â ¥â â ¼â —â Ž" }, { "input": "humbles", "output": "â “â ¥â â ¼â Ž" }, { "input": "humblest", "output": "â “â ¥â â ¼â Œ" }, { "input": "humbling", "output": "â “â ¥â â ƒâ ‡â Œ" }, { "input": "humblings", "output": "â “â ¥â â ƒâ ‡â Œâ Ž" }, { "input": "humbly", "output": "â “â ¥â â ƒâ ‡â ½" }, { "input": "humbug", "output": "â “â ¥â â ƒâ ¥â ›" }, { "input": "humbug's", "output": "â “â ¥â â ƒâ ¥â ›â „â Ž" }, { "input": "humbugged", "output": "â “â ¥â â ƒâ ¥â ¶â «" }, { "input": "humbugging", "output": "â “â ¥â â ƒâ ¥â ¶â Œ" }, { "input": "humbugs", "output": "â “â ¥â â ƒâ ¥â ›â Ž" }, { "input": "humdinger", "output": "â “â ¥â â ™â Œâ »" }, { "input": "humdinger's", "output": "â “â ¥â â ™â Œâ »â „â Ž" }, { "input": "humdingers", "output": "â “â ¥â â ™â Œâ »â Ž" }, { "input": "humdrum", "output": "â “â ¥â â ™â —â ¥â " }, { "input": "humdrum's", "output": "â “â ¥â â ™â —â ¥â â „â Ž" }, { "input": "humeral", "output": "â “â ¥â â »â â ‡" }, { "input": "humeri", "output": "â “â ¥â â »â Š" }, { "input": "humerus", "output": "â “â ¥â â »â ¥â Ž" }, { "input": "humerus's", "output": "â “â ¥â â »â ¥â Žâ „â Ž" }, { "input": "humid", "output": "â “â ¥â â Šâ ™" }, { "input": "humidification", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ ‰â  â " }, { "input": "humidification's", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "humidified", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ «" }, { "input": "humidifier", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ »" }, { "input": "humidifier's", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ »â „â Ž" }, { "input": "humidifiers", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ »â Ž" }, { "input": "humidifies", "output": "â “â ¥â â Šâ ™â Šâ ‹â Šâ ‘â Ž" }, { "input": "humidify", "output": "â “â ¥â â Šâ ™â Šâ ‹â ½" }, { "input": "humidifying", "output": "â “â ¥â â Šâ ™â Šâ ‹â ½â Œ" }, { "input": "humidity", "output": "â “â ¥â â Šâ ™â °â ½" }, { "input": "humidity's", "output": "â “â ¥â â Šâ ™â °â ½â „â Ž" }, { "input": "humidly", "output": "â “â ¥â â Šâ ™â ‡â ½" }, { "input": "humidor", "output": "â “â ¥â â Šâ ™â •â —" }, { "input": "humidor's", "output": "â “â ¥â â Šâ ™â •â —â „â Ž" }, { "input": "humidors", "output": "â “â ¥â â Šâ ™â •â —â Ž" }, { "input": "humiliate", "output": "â “â ¥â â Šâ ‡â Šâ â žâ ‘" }, { "input": "humiliated", "output": "â “â ¥â â Šâ ‡â Šâ â žâ «" }, { "input": "humiliates", "output": "â “â ¥â â Šâ ‡â Šâ â žâ ‘â Ž" }, { "input": "humiliating", "output": "â “â ¥â â Šâ ‡â Šâ â žâ Œ" }, { "input": "humiliatingly", "output": "â “â ¥â â Šâ ‡â Šâ â žâ Œâ ‡â ½" }, { "input": "humiliation", "output": "â “â ¥â â Šâ ‡â Šâ  â " }, { "input": "humiliation's", "output": "â “â ¥â â Šâ ‡â Šâ  â â „â Ž" }, { "input": "humiliations", "output": "â “â ¥â â Šâ ‡â Šâ  â â Ž" }, { "input": "humility", "output": "â “â ¥â â Šâ ‡â °â ½" }, { "input": "humility's", "output": "â “â ¥â â Šâ ‡â °â ½â „â Ž" }, { "input": "hummed", "output": "â “â ¥â â â «" }, { "input": "hummer", "output": "â “â ¥â â â »" }, { "input": "hummer's", "output": "â “â ¥â â â »â „â Ž" }, { "input": "hummers", "output": "â “â ¥â â â »â Ž" }, { "input": "humming", "output": "â “â ¥â â â Œ" }, { "input": "hummingbird", "output": "â “â ¥â â â Œâ ƒâ Šâ —â ™" }, { "input": "hummingbird's", "output": "â “â ¥â â â Œâ ƒâ Šâ —⠙⠄⠎" }, { "input": "hummingbirds", "output": "â “â ¥â â â Œâ ƒâ Šâ —⠙⠎" }, { "input": "hummock", "output": "â “â ¥â â â •⠉⠅" }, { "input": "hummock's", "output": "â “â ¥â â â •⠉⠅⠄⠎" }, { "input": "hummocks", "output": "â “â ¥â â â •⠉⠅⠎" }, { "input": "hummocky", "output": "â “â ¥â â â •⠉⠅⠽" }, { "input": "hummus's", "output": "â “â ¥â â â ¥â Žâ „â Ž" }, { "input": "humongous", "output": "â “â ¥â â °â ›â ³â Ž" }, { "input": "humor", "output": "â “â ¥â â •â —" }, { "input": "humor's", "output": "â “â ¥â â •â —â „â Ž" }, { "input": "humored", "output": "â “â ¥â â •â —â «" }, { "input": "humoring", "output": "â “â ¥â â •â —â Œ" }, { "input": "humorist", "output": "â “â ¥â â •â —â Šâ Œ" }, { "input": "humorist's", "output": "â “â ¥â â •⠗⠊⠌⠄⠎" }, { "input": "humorists", "output": "â “â ¥â â •⠗⠊⠌⠎" }, { "input": "humorless", "output": "â “â ¥â â •⠗⠨⠎" }, { "input": "humorlessly", "output": "â “â ¥â â •⠗⠨⠎⠇⠽" }, { "input": "humorlessness", "output": "â “â ¥â â •⠗⠨⠎⠰⠎" }, { "input": "humorlessness's", "output": "â “â ¥â â •⠗⠨⠎⠰⠎⠄⠎" }, { "input": "humorous", "output": "â “â ¥â â •⠗⠳⠎" }, { "input": "humorously", "output": "â “â ¥â â •⠗⠳⠎⠇⠽" }, { "input": "humorousness", "output": "â “â ¥â â •⠗⠳⠎⠰⠎" }, { "input": "humorousness's", "output": "â “â ¥â â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "humors", "output": "â “â ¥â â •â —â Ž" }, { "input": "hump", "output": "â “â ¥â â " }, { "input": "hump's", "output": "â “â ¥â â â „â Ž" }, { "input": "humpback", "output": "â “â ¥â â â ƒâ â ‰â …" }, { "input": "humpback's", "output": "â “â ¥â â â ƒâ â ‰â …â „â Ž" }, { "input": "humpbacked", "output": "â “â ¥â â â ƒâ â ‰â …â «" }, { "input": "humpbacks", "output": "â “â ¥â â â ƒâ â ‰â …â Ž" }, { "input": "humped", "output": "â “â ¥â â â «" }, { "input": "humphed", "output": "â “â ¥â â â “â «" }, { "input": "humphing", "output": "â “â ¥â â â “â Œ" }, { "input": "humphs", "output": "â “â ¥â â â “â Ž" }, { "input": "humping", "output": "â “â ¥â â â Œ" }, { "input": "humps", "output": "â “â ¥â â â Ž" }, { "input": "hums", "output": "â “â ¥â â Ž" }, { "input": "humus", "output": "â “â ¥â â ¥â Ž" }, { "input": "humus's", "output": "â “â ¥â â ¥â Žâ „â Ž" }, { "input": "hunch", "output": "â “â ¥â â ¡" }, { "input": "hunch's", "output": "â “â ¥â â ¡â „â Ž" }, { "input": "hunchback", "output": "â “â ¥â â ¡â ƒâ â ‰â …" }, { "input": "hunchback's", "output": "â “â ¥â â ¡â ƒâ â ‰â …â „â Ž" }, { "input": "hunchbacked", "output": "â “â ¥â â ¡â ƒâ â ‰â …â «" }, { "input": "hunchbacks", "output": "â “â ¥â â ¡â ƒâ â ‰â …â Ž" }, { "input": "hunched", "output": "â “â ¥â â ¡â «" }, { "input": "hunches", "output": "â “â ¥â â ¡â ‘â Ž" }, { "input": "hunching", "output": "â “â ¥â â ¡â Œ" }, { "input": "hundred", "output": "â “â ¥â â ™â —â «" }, { "input": "hundred's", "output": "â “â ¥â â ™â —â «â „â Ž" }, { "input": "hundredfold", "output": "â “â ¥â â ™â —⠫⠋⠕⠇⠙" }, { "input": "hundreds", "output": "â “â ¥â â ™â —â «â Ž" }, { "input": "hundredth", "output": "â “â ¥â â ™â —â «â ¹" }, { "input": "hundredth's", "output": "â “â ¥â â ™â —⠫⠹⠄⠎" }, { "input": "hundredths", "output": "â “â ¥â â ™â —⠫⠹⠎" }, { "input": "hundredweight", "output": "â “â ¥â â ™â —⠫⠺⠑⠊⠣⠞" }, { "input": "hundredweight's", "output": "â “â ¥â â ™â —⠫⠺⠑⠊⠣⠞⠄⠎" }, { "input": "hundredweights", "output": "â “â ¥â â ™â —⠫⠺⠑⠊⠣⠞⠎" }, { "input": "hung", "output": "â “â ¥â â ›" }, { "input": "hunger", "output": "â “â ¥â â ›â »" }, { "input": "hunger's", "output": "â “â ¥â â ›â »â „â Ž" }, { "input": "hungered", "output": "â “â ¥â â ›â »â «" }, { "input": "hungering", "output": "â “â ¥â â ›â »â Œ" }, { "input": "hungers", "output": "â “â ¥â â ›â »â Ž" }, { "input": "hungover", "output": "â “â ¥â â ›â •â §â »" }, { "input": "hungrier", "output": "â “â ¥â â ›â —â Šâ »" }, { "input": "hungriest", "output": "â “â ¥â â ›â —â Šâ ‘â Œ" }, { "input": "hungrily", "output": "â “â ¥â â ›â —⠊⠇⠽" }, { "input": "hungriness", "output": "â “â ¥â â ›â —â Šâ °â Ž" }, { "input": "hungriness's", "output": "â “â ¥â â ›â —â Šâ °â Žâ „â Ž" }, { "input": "hungry", "output": "â “â ¥â â ›â —â ½" }, { "input": "hunk", "output": "â “â ¥â â …" }, { "input": "hunk's", "output": "â “â ¥â â …â „â Ž" }, { "input": "hunker", "output": "â “â ¥â â …â »" }, { "input": "hunkered", "output": "â “â ¥â â …⠻⠫" }, { "input": "hunkering", "output": "â “â ¥â â …⠻⠌" }, { "input": "hunkers", "output": "â “â ¥â â …⠻⠎" }, { "input": "hunks", "output": "â “â ¥â â …â Ž" }, { "input": "hunt", "output": "â “â ¥â â ž" }, { "input": "hunt's", "output": "â “â ¥â â žâ „â Ž" }, { "input": "hunted", "output": "â “â ¥â â žâ «" }, { "input": "hunter", "output": "â “â ¥â â žâ »" }, { "input": "hunter's", "output": "â “â ¥â â žâ »â „â Ž" }, { "input": "hunters", "output": "â “â ¥â â žâ »â Ž" }, { "input": "hunting", "output": "â “â ¥â â žâ Œ" }, { "input": "hunting's", "output": "â “â ¥â â žâ Œâ „â Ž" }, { "input": "huntress", "output": "â “â ¥â â žâ —â ‘â Žâ Ž" }, { "input": "huntress's", "output": "â “â ¥â â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "huntresses", "output": "â “â ¥â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "hunts", "output": "â “â ¥â â žâ Ž" }, { "input": "huntsman", "output": "â “â ¥â â žâ Žâ â â " }, { "input": "huntsman's", "output": "â “â ¥â â žâ Žâ â â â „â Ž" }, { "input": "huntsmen", "output": "â “â ¥â â žâ Žâ â ¢" }, { "input": "hurdle", "output": "⠓⠥⠗⠙⠇⠑" }, { "input": "hurdle's", "output": "⠓⠥⠗⠙⠇⠑⠄⠎" }, { "input": "hurdled", "output": "⠓⠥⠗⠙⠇⠫" }, { "input": "hurdler", "output": "⠓⠥⠗⠙⠇⠻" }, { "input": "hurdler's", "output": "⠓⠥⠗⠙⠇⠻⠄⠎" }, { "input": "hurdlers", "output": "⠓⠥⠗⠙⠇⠻⠎" }, { "input": "hurdles", "output": "⠓⠥⠗⠙⠇⠑⠎" }, { "input": "hurdling", "output": "⠓⠥⠗⠙⠇⠌" }, { "input": "hurdling's", "output": "⠓⠥⠗⠙⠇⠌⠄⠎" }, { "input": "hurl", "output": "⠓⠥⠗⠇" }, { "input": "hurl's", "output": "⠓⠥⠗⠇⠄⠎" }, { "input": "hurled", "output": "⠓⠥⠗⠇⠫" }, { "input": "hurler", "output": "⠓⠥⠗⠇⠻" }, { "input": "hurler's", "output": "⠓⠥⠗⠇⠻⠄⠎" }, { "input": "hurlers", "output": "⠓⠥⠗⠇⠻⠎" }, { "input": "hurling", "output": "⠓⠥⠗⠇⠌" }, { "input": "hurling's", "output": "⠓⠥⠗⠇⠌⠄⠎" }, { "input": "hurls", "output": "⠓⠥⠗⠇⠎" }, { "input": "hurrah", "output": "⠓⠥⠗⠗â â “" }, { "input": "hurrah's", "output": "⠓⠥⠗⠗â â “â „â Ž" }, { "input": "hurrahed", "output": "⠓⠥⠗⠗â â “â «" }, { "input": "hurrahing", "output": "⠓⠥⠗⠗â â “â Œ" }, { "input": "hurrahs", "output": "⠓⠥⠗⠗â â “â Ž" }, { "input": "hurricane", "output": "⠓⠥⠗⠗⠊⠉â â â ‘" }, { "input": "hurricane's", "output": "⠓⠥⠗⠗⠊⠉â â â ‘â „â Ž" }, { "input": "hurricanes", "output": "⠓⠥⠗⠗⠊⠉â â â ‘â Ž" }, { "input": "hurried", "output": "⠓⠥⠗⠗⠊⠫" }, { "input": "hurriedly", "output": "⠓⠥⠗⠗⠊⠫⠇⠽" }, { "input": "hurries", "output": "⠓⠥⠗⠗⠊⠑⠎" }, { "input": "hurry", "output": "⠓⠥⠗⠗⠽" }, { "input": "hurry's", "output": "⠓⠥⠗⠗⠽⠄⠎" }, { "input": "hurrying", "output": "⠓⠥⠗⠗⠽⠌" }, { "input": "hurt", "output": "⠓⠥⠗⠞" }, { "input": "hurt's", "output": "⠓⠥⠗⠞⠄⠎" }, { "input": "hurtful", "output": "⠓⠥⠗⠞⠰⠇" }, { "input": "hurtfulness's", "output": "⠓⠥⠗⠞⠰⠇⠰⠎⠄⠎" }, { "input": "hurting", "output": "⠓⠥⠗⠞⠌" }, { "input": "hurtle", "output": "⠓⠥⠗⠞⠇⠑" }, { "input": "hurtled", "output": "⠓⠥⠗⠞⠇⠫" }, { "input": "hurtles", "output": "⠓⠥⠗⠞⠇⠑⠎" }, { "input": "hurtling", "output": "⠓⠥⠗⠞⠇⠌" }, { "input": "hurts", "output": "⠓⠥⠗⠞⠎" }, { "input": "husband", "output": "⠓⠥⠎⠃⠯" }, { "input": "husband's", "output": "⠓⠥⠎⠃⠯⠄⠎" }, { "input": "husbanded", "output": "⠓⠥⠎⠃⠯⠫" }, { "input": "husbanding", "output": "⠓⠥⠎⠃⠯⠌" }, { "input": "husbandman", "output": "⠓⠥⠎⠃⠯â â â " }, { "input": "husbandman's", "output": "⠓⠥⠎⠃⠯â â â â „â Ž" }, { "input": "husbandmen", "output": "⠓⠥⠎⠃⠯â â ¢" }, { "input": "husbandry", "output": "⠓⠥⠎⠃⠯⠗⠽" }, { "input": "husbandry's", "output": "⠓⠥⠎⠃⠯⠗⠽⠄⠎" }, { "input": "husbands", "output": "⠓⠥⠎⠃⠯⠎" }, { "input": "hush", "output": "⠓⠥⠩" }, { "input": "hush's", "output": "⠓⠥⠩⠄⠎" }, { "input": "hushed", "output": "⠓⠥⠩⠫" }, { "input": "hushes", "output": "⠓⠥⠩⠑⠎" }, { "input": "hushing", "output": "⠓⠥⠩⠌" }, { "input": "husk", "output": "⠓⠥⠎⠅" }, { "input": "husk's", "output": "⠓⠥⠎⠅⠄⠎" }, { "input": "husked", "output": "⠓⠥⠎⠅⠫" }, { "input": "husker", "output": "⠓⠥⠎⠅⠻" }, { "input": "husker's", "output": "⠓⠥⠎⠅⠻⠄⠎" }, { "input": "huskers", "output": "⠓⠥⠎⠅⠻⠎" }, { "input": "huskier", "output": "⠓⠥⠎⠅⠊⠻" }, { "input": "huskies", "output": "⠓⠥⠎⠅⠊⠑⠎" }, { "input": "huskiest", "output": "⠓⠥⠎⠅⠊⠑⠌" }, { "input": "huskily", "output": "⠓⠥⠎⠅⠊⠇⠽" }, { "input": "huskiness", "output": "⠓⠥⠎⠅⠊⠰⠎" }, { "input": "huskiness's", "output": "⠓⠥⠎⠅⠊⠰⠎⠄⠎" }, { "input": "husking", "output": "⠓⠥⠎⠅⠌" }, { "input": "husks", "output": "⠓⠥⠎⠅⠎" }, { "input": "husky", "output": "⠓⠥⠎⠅⠽" }, { "input": "husky's", "output": "⠓⠥⠎⠅⠽⠄⠎" }, { "input": "hussar", "output": "⠓⠥⠎⠎⠜" }, { "input": "hussar's", "output": "⠓⠥⠎⠎⠜⠄⠎" }, { "input": "hussars", "output": "⠓⠥⠎⠎⠜⠎" }, { "input": "hussies", "output": "⠓⠥⠎⠎⠊⠑⠎" }, { "input": "hussy", "output": "⠓⠥⠎⠎⠽" }, { "input": "hussy's", "output": "⠓⠥⠎⠎⠽⠄⠎" }, { "input": "hustings", "output": "⠓⠥⠌⠌⠎" }, { "input": "hustings's", "output": "⠓⠥⠌⠌⠎⠄⠎" }, { "input": "hustle", "output": "⠓⠥⠌⠇⠑" }, { "input": "hustle's", "output": "⠓⠥⠌⠇⠑⠄⠎" }, { "input": "hustled", "output": "⠓⠥⠌⠇⠫" }, { "input": "hustler", "output": "⠓⠥⠌⠇⠻" }, { "input": "hustler's", "output": "⠓⠥⠌⠇⠻⠄⠎" }, { "input": "hustlers", "output": "⠓⠥⠌⠇⠻⠎" }, { "input": "hustles", "output": "⠓⠥⠌⠇⠑⠎" }, { "input": "hustling", "output": "⠓⠥⠌⠇⠌" }, { "input": "hut", "output": "⠓⠥⠞" }, { "input": "hut's", "output": "⠓⠥⠞⠄⠎" }, { "input": "hutch", "output": "⠓⠥⠞⠡" }, { "input": "hutch's", "output": "⠓⠥⠞⠡⠄⠎" }, { "input": "hutches", "output": "⠓⠥⠞⠡⠑⠎" }, { "input": "huts", "output": "⠓⠥⠞⠎" }, { "input": "huzzah", "output": "⠓⠥⠵⠵â â “" }, { "input": "huzzah's", "output": "⠓⠥⠵⠵â â “â „â Ž" }, { "input": "huzzahed", "output": "⠓⠥⠵⠵â â “â «" }, { "input": "huzzahing", "output": "⠓⠥⠵⠵â â “â Œ" }, { "input": "huzzahs", "output": "⠓⠥⠵⠵â â “â Ž" }, { "input": "hyacinth", "output": "â “â ½â â ‰â ”â ¹" }, { "input": "hyacinth's", "output": "â “â ½â â ‰â ”⠹⠄⠎" }, { "input": "hyacinths", "output": "â “â ½â â ‰â ”⠹⠎" }, { "input": "hyaenas", "output": "â “â ½â â ‘â â â Ž" }, { "input": "hybrid", "output": "⠓⠽⠃⠗⠊⠙" }, { "input": "hybrid's", "output": "⠓⠽⠃⠗⠊⠙⠄⠎" }, { "input": "hybridism", "output": "⠓⠽⠃⠗⠊⠙⠊⠎â " }, { "input": "hybridism's", "output": "⠓⠽⠃⠗⠊⠙⠊⠎â â „â Ž" }, { "input": "hybridization", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠠â " }, { "input": "hybridization's", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠠â â „â Ž" }, { "input": "hybridize", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠑" }, { "input": "hybridized", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠫" }, { "input": "hybridizes", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠑⠎" }, { "input": "hybridizing", "output": "⠓⠽⠃⠗⠊⠙⠊⠵⠌" }, { "input": "hybrids", "output": "⠓⠽⠃⠗⠊⠙⠎" }, { "input": "hydra", "output": "⠓⠽⠙⠗â " }, { "input": "hydra's", "output": "⠓⠽⠙⠗â â „â Ž" }, { "input": "hydrangea", "output": "⠓⠽⠙⠗â â â ›â ‘â " }, { "input": "hydrangea's", "output": "⠓⠽⠙⠗â â â ›â ‘â â „â Ž" }, { "input": "hydrangeas", "output": "⠓⠽⠙⠗â â â ›â ‚â Ž" }, { "input": "hydrant", "output": "⠓⠽⠙⠗â â â ž" }, { "input": "hydrant's", "output": "⠓⠽⠙⠗â â â žâ „â Ž" }, { "input": "hydrants", "output": "⠓⠽⠙⠗â â â žâ Ž" }, { "input": "hydras", "output": "⠓⠽⠙⠗â â Ž" }, { "input": "hydrate", "output": "⠓⠽⠙⠗â â žâ ‘" }, { "input": "hydrate's", "output": "⠓⠽⠙⠗â â žâ ‘â „â Ž" }, { "input": "hydrated", "output": "⠓⠽⠙⠗â â žâ «" }, { "input": "hydrates", "output": "⠓⠽⠙⠗â â žâ ‘â Ž" }, { "input": "hydrating", "output": "⠓⠽⠙⠗â â žâ Œ" }, { "input": "hydration's", "output": "⠓⠽⠙⠗⠠â â „â Ž" }, { "input": "hydraulic", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰" }, { "input": "hydraulically", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰â  â ½" }, { "input": "hydraulics", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰â Ž" }, { "input": "hydraulics's", "output": "⠓⠽⠙⠗â â ¥â ‡â Šâ ‰â Žâ „â Ž" }, { "input": "hydro", "output": "⠓⠽⠙⠗⠕" }, { "input": "hydro's", "output": "⠓⠽⠙⠗⠕⠄⠎" }, { "input": "hydrocarbon", "output": "⠓⠽⠙⠗⠕⠉⠜⠃⠕â " }, { "input": "hydrocarbon's", "output": "⠓⠽⠙⠗⠕⠉⠜⠃⠕â â „â Ž" }, { "input": "hydrocarbons", "output": "⠓⠽⠙⠗⠕⠉⠜⠃⠕â â Ž" }, { "input": "hydrocephalus", "output": "⠓⠽⠙⠗⠕⠉⠑â â “â â ‡â ¥â Ž" }, { "input": "hydrocephalus's", "output": "⠓⠽⠙⠗⠕⠉⠑â â “â â ‡â ¥â Žâ „â Ž" }, { "input": "hydrodynamic", "output": "⠓⠽⠙⠗⠕⠙⠽â â â â Šâ ‰" }, { "input": "hydrodynamics", "output": "⠓⠽⠙⠗⠕⠙⠽â â â â Šâ ‰â Ž" }, { "input": "hydrodynamics's", "output": "⠓⠽⠙⠗⠕⠙⠽â â â â Šâ ‰â Žâ „â Ž" }, { "input": "hydroelectric", "output": "⠓⠽⠙⠗⠕⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "hydroelectrically", "output": "⠓⠽⠙⠗⠕⠑⠇⠑⠉⠞⠗⠊⠉⠠⠽" }, { "input": "hydroelectricity", "output": "⠓⠽⠙⠗⠕⠑⠇⠑⠉⠞⠗⠊⠉⠰⠽" }, { "input": "hydroelectricity's", "output": "⠓⠽⠙⠗⠕⠑⠇⠑⠉⠞⠗⠊⠉⠰⠽⠄⠎" }, { "input": "hydrofoil", "output": "⠓⠽⠙⠗⠕⠋⠕⠊⠇" }, { "input": "hydrofoil's", "output": "⠓⠽⠙⠗⠕⠋⠕⠊⠇⠄⠎" }, { "input": "hydrofoils", "output": "⠓⠽⠙⠗⠕⠋⠕⠊⠇⠎" }, { "input": "hydrogen", "output": "⠓⠽⠙⠗⠕⠛⠢" }, { "input": "hydrogen's", "output": "⠓⠽⠙⠗⠕⠛⠢⠄⠎" }, { "input": "hydrogenate", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ ‘" }, { "input": "hydrogenated", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ «" }, { "input": "hydrogenates", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ ‘â Ž" }, { "input": "hydrogenating", "output": "⠓⠽⠙⠗⠕⠛⠢â â žâ Œ" }, { "input": "hydrogenation", "output": "⠓⠽⠙⠗⠕⠛⠢⠠â " }, { "input": "hydrogenation's", "output": "⠓⠽⠙⠗⠕⠛⠢⠠â â „â Ž" }, { "input": "hydrogenous", "output": "⠓⠽⠙⠗⠕⠛⠢⠳⠎" }, { "input": "hydrologist", "output": "⠓⠽⠙⠗⠕⠇⠕⠛⠊⠌" }, { "input": "hydrologist's", "output": "⠓⠽⠙⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "hydrologists", "output": "⠓⠽⠙⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "hydrology", "output": "⠓⠽⠙⠗⠕⠇⠕⠛⠽" }, { "input": "hydrology's", "output": "⠓⠽⠙⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "hydrolysis", "output": "⠓⠽⠙⠗⠕⠇⠽⠎⠊⠎" }, { "input": "hydrolysis's", "output": "⠓⠽⠙⠗⠕⠇⠽⠎⠊⠎⠄⠎" }, { "input": "hydrolyze", "output": "⠓⠽⠙⠗⠕⠇⠽⠵⠑" }, { "input": "hydrolyzed", "output": "⠓⠽⠙⠗⠕⠇⠽⠵⠫" }, { "input": "hydrolyzes", "output": "⠓⠽⠙⠗⠕⠇⠽⠵⠑⠎" }, { "input": "hydrolyzing", "output": "⠓⠽⠙⠗⠕⠇⠽⠵⠌" }, { "input": "hydrometer", "output": "⠓⠽⠙⠗⠕â â ‘â žâ »" }, { "input": "hydrometer's", "output": "⠓⠽⠙⠗⠕â â ‘⠞⠻⠄⠎" }, { "input": "hydrometers", "output": "⠓⠽⠙⠗⠕â â ‘⠞⠻⠎" }, { "input": "hydrometry", "output": "⠓⠽⠙⠗⠕â â ‘â žâ —â ½" }, { "input": "hydrometry's", "output": "⠓⠽⠙⠗⠕â â ‘⠞⠗⠽⠄⠎" }, { "input": "hydrophobia", "output": "⠓⠽⠙⠗⠕â â “⠕⠃⠊â " }, { "input": "hydrophobia's", "output": "⠓⠽⠙⠗⠕â â “⠕⠃⠊â â „â Ž" }, { "input": "hydrophobic", "output": "⠓⠽⠙⠗⠕â â “⠕⠃⠊⠉" }, { "input": "hydrophone", "output": "⠓⠽⠙⠗⠕â â “â â •" }, { "input": "hydrophone's", "output": "⠓⠽⠙⠗⠕â â “â â •â „â Ž" }, { "input": "hydrophones", "output": "⠓⠽⠙⠗⠕â â “â â •â Ž" }, { "input": "hydroplane", "output": "⠓⠽⠙⠗⠕â â ‡â â â ‘" }, { "input": "hydroplane's", "output": "⠓⠽⠙⠗⠕â â ‡â â â ‘â „â Ž" }, { "input": "hydroplaned", "output": "⠓⠽⠙⠗⠕â â ‡â â â «" }, { "input": "hydroplanes", "output": "⠓⠽⠙⠗⠕â â ‡â â â ‘â Ž" }, { "input": "hydroplaning", "output": "⠓⠽⠙⠗⠕â â ‡â â â Œ" }, { "input": "hydroponic", "output": "⠓⠽⠙⠗⠕â â •â â Šâ ‰" }, { "input": "hydroponically", "output": "⠓⠽⠙⠗⠕â â •â â Šâ ‰â  â ½" }, { "input": "hydroponics", "output": "⠓⠽⠙⠗⠕â â •â â Šâ ‰â Ž" }, { "input": "hydroponics's", "output": "⠓⠽⠙⠗⠕â â •â â Šâ ‰â Žâ „â Ž" }, { "input": "hydrosphere", "output": "⠓⠽⠙⠗⠕⠎â â “⠻⠑" }, { "input": "hydrosphere's", "output": "⠓⠽⠙⠗⠕⠎â â “⠻⠑⠄⠎" }, { "input": "hydrotherapy", "output": "⠓⠽⠙⠗⠕⠮⠗â â â ½" }, { "input": "hydrotherapy's", "output": "⠓⠽⠙⠗⠕⠮⠗â â â ½â „â Ž" }, { "input": "hydrous", "output": "⠓⠽⠙⠗⠳⠎" }, { "input": "hydroxide", "output": "⠓⠽⠙⠗⠕⠭⠊⠙⠑" }, { "input": "hydroxide's", "output": "⠓⠽⠙⠗⠕⠭⠊⠙⠑⠄⠎" }, { "input": "hydroxides", "output": "⠓⠽⠙⠗⠕⠭⠊⠙⠑⠎" }, { "input": "hyena", "output": "⠓⠽⠢â " }, { "input": "hyena's", "output": "⠓⠽⠢â â „â Ž" }, { "input": "hyenas", "output": "⠓⠽⠢â â Ž" }, { "input": "hygiene", "output": "⠓⠽⠛⠊⠢⠑" }, { "input": "hygiene's", "output": "⠓⠽⠛⠊⠢⠑⠄⠎" }, { "input": "hygienic", "output": "⠓⠽⠛⠊⠢⠊⠉" }, { "input": "hygienically", "output": "⠓⠽⠛⠊⠢⠊⠉⠠⠽" }, { "input": "hygienist", "output": "⠓⠽⠛⠊⠢⠊⠌" }, { "input": "hygienist's", "output": "⠓⠽⠛⠊⠢⠊⠌⠄⠎" }, { "input": "hygienists", "output": "⠓⠽⠛⠊⠢⠊⠌⠎" }, { "input": "hygrometer", "output": "⠓⠽⠛⠗⠕â â ‘â žâ »" }, { "input": "hygrometer's", "output": "⠓⠽⠛⠗⠕â â ‘⠞⠻⠄⠎" }, { "input": "hygrometers", "output": "⠓⠽⠛⠗⠕â â ‘⠞⠻⠎" }, { "input": "hying", "output": "⠓⠽⠌" }, { "input": "hymen", "output": "â “â ½â â ¢" }, { "input": "hymen's", "output": "â “â ½â â ¢â „â Ž" }, { "input": "hymeneal", "output": "â “â ½â â ¢â ‚â ‡" }, { "input": "hymens", "output": "â “â ½â â ¢â Ž" }, { "input": "hymn", "output": "â “â ½â â " }, { "input": "hymn's", "output": "â “â ½â â â „â Ž" }, { "input": "hymnal", "output": "â “â ½â â â â ‡" }, { "input": "hymnal's", "output": "â “â ½â â â â ‡â „â Ž" }, { "input": "hymnals", "output": "â “â ½â â â â ‡â Ž" }, { "input": "hymnbook", "output": "â “â ½â â â ƒâ •â •â …" }, { "input": "hymnbook's", "output": "â “â ½â â â ƒâ •â •â …â „â Ž" }, { "input": "hymnbooks", "output": "â “â ½â â â ƒâ •â •â …â Ž" }, { "input": "hymned", "output": "â “â ½â â â «" }, { "input": "hymning", "output": "â “â ½â â â Œ" }, { "input": "hymns", "output": "â “â ½â â â Ž" }, { "input": "hype", "output": "â “â ½â â ‘" }, { "input": "hype's", "output": "â “â ½â â ‘â „â Ž" }, { "input": "hyped", "output": "â “â ½â â «" }, { "input": "hyper", "output": "â “â ½â â »" }, { "input": "hyperactive", "output": "â “â ½â â »â â ‰â žâ Šâ §â ‘" }, { "input": "hyperactivity", "output": "â “â ½â â »â â ‰â žâ Šâ §â °â ½" }, { "input": "hyperactivity's", "output": "â “â ½â â »â â ‰â žâ Šâ §â °â ½â „â Ž" }, { "input": "hyperbola", "output": "â “â ½â â »â ƒâ •â ‡â " }, { "input": "hyperbola's", "output": "â “â ½â â »â ƒâ •â ‡â â „â Ž" }, { "input": "hyperbolas", "output": "â “â ½â â »â ƒâ •â ‡â â Ž" }, { "input": "hyperbole", "output": "â “â ½â â »â ƒâ •⠇⠑" }, { "input": "hyperbole's", "output": "â “â ½â â »â ƒâ •⠇⠑⠄⠎" }, { "input": "hyperbolic", "output": "â “â ½â â »â ƒâ •⠇⠊⠉" }, { "input": "hypercritical", "output": "â “â ½â â »â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "hypercritically", "output": "â “â ½â â »â ‰â —⠊⠞⠊⠉⠠⠽" }, { "input": "hyperglycemia", "output": "â “â ½â â »â ›â ‡â ½â ‰â ‘â â Šâ " }, { "input": "hyperglycemia's", "output": "â “â ½â â »â ›â ‡â ½â ‰â ‘â â Šâ â „â Ž" }, { "input": "hypermarket", "output": "â “â ½â â »â â œâ …â ‘â ž" }, { "input": "hypermedia", "output": "â “â ½â â »â â «â Šâ " }, { "input": "hypermedia's", "output": "â “â ½â â »â â «â Šâ â „â Ž" }, { "input": "hypersensitive", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â ‘" }, { "input": "hypersensitiveness", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "hypersensitiveness's", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "hypersensitivities", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "hypersensitivity", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â °â ½" }, { "input": "hypersensitivity's", "output": "â “â ½â â »â Žâ ¢â Žâ Šâ žâ Šâ §â °â ½â „â Ž" }, { "input": "hyperspace", "output": "â “â ½â â »â Žâ â â ‰â ‘" }, { "input": "hypertension", "output": "â “â ½â â »â žâ ¢â ¨â " }, { "input": "hypertension's", "output": "â “â ½â â »â žâ ¢â ¨â â „â Ž" }, { "input": "hypertensive", "output": "â “â ½â â »â žâ ¢â Žâ Šâ §â ‘" }, { "input": "hypertensive's", "output": "â “â ½â â »â žâ ¢â Žâ Šâ §â ‘â „â Ž" }, { "input": "hypertensives", "output": "â “â ½â â »â žâ ¢â Žâ Šâ §â ‘â Ž" }, { "input": "hypertext", "output": "â “â ½â â »â žâ ‘â ­â ž" }, { "input": "hypertext's", "output": "â “â ½â â »â žâ ‘â ­â žâ „â Ž" }, { "input": "hyperthyroid", "output": "â “â ½â â »â ¹â ½â —â •â Šâ ™" }, { "input": "hyperthyroid's", "output": "â “â ½â â »â ¹â ½â —⠕⠊⠙⠄⠎" }, { "input": "hyperthyroidism", "output": "â “â ½â â »â ¹â ½â —⠕⠊⠙⠊⠎â " }, { "input": "hyperthyroidism's", "output": "â “â ½â â »â ¹â ½â —⠕⠊⠙⠊⠎â â „â Ž" }, { "input": "hypertrophied", "output": "â “â ½â â »â žâ —â •â â “â Šâ «" }, { "input": "hypertrophies", "output": "â “â ½â â »â žâ —â •â â “â Šâ ‘â Ž" }, { "input": "hypertrophy", "output": "â “â ½â â »â žâ —â •â â “â ½" }, { "input": "hypertrophy's", "output": "â “â ½â â »â žâ —â •â â “⠽⠄⠎" }, { "input": "hypertrophying", "output": "â “â ½â â »â žâ —â •â â “⠽⠌" }, { "input": "hyperventilate", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ ‘" }, { "input": "hyperventilated", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ «" }, { "input": "hyperventilates", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ ‘â Ž" }, { "input": "hyperventilating", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â â žâ Œ" }, { "input": "hyperventilation", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â  â " }, { "input": "hyperventilation's", "output": "â “â ½â â »â §â ¢â žâ Šâ ‡â  â â „â Ž" }, { "input": "hypes", "output": "â “â ½â â ‘â Ž" }, { "input": "hyphen", "output": "â “â ½â â “â ¢" }, { "input": "hyphen's", "output": "â “â ½â â “⠢⠄⠎" }, { "input": "hyphenate", "output": "â “â ½â â “â ¢â â žâ ‘" }, { "input": "hyphenate's", "output": "â “â ½â â “â ¢â â žâ ‘â „â Ž" }, { "input": "hyphenated", "output": "â “â ½â â “â ¢â â žâ «" }, { "input": "hyphenates", "output": "â “â ½â â “â ¢â â žâ ‘â Ž" }, { "input": "hyphenating", "output": "â “â ½â â “â ¢â â žâ Œ" }, { "input": "hyphenation", "output": "â “â ½â â “⠢⠠â " }, { "input": "hyphenation's", "output": "â “â ½â â “⠢⠠â â „â Ž" }, { "input": "hyphenations", "output": "â “â ½â â “⠢⠠â â Ž" }, { "input": "hyphened", "output": "â “â ½â â “⠢⠫" }, { "input": "hyphening", "output": "â “â ½â â “⠢⠌" }, { "input": "hyphens", "output": "â “â ½â â “⠢⠎" }, { "input": "hyping", "output": "â “â ½â â Œ" }, { "input": "hypnoses", "output": "â “â ½â â â •â Žâ ‘â Ž" }, { "input": "hypnosis", "output": "â “â ½â â â •â Žâ Šâ Ž" }, { "input": "hypnosis's", "output": "â “â ½â â â •â Žâ Šâ Žâ „â Ž" }, { "input": "hypnotherapy's", "output": "â “â ½â â â •⠮⠗â â â ½â „â Ž" }, { "input": "hypnotic", "output": "â “â ½â â â •â žâ Šâ ‰" }, { "input": "hypnotic's", "output": "â “â ½â â â •⠞⠊⠉⠄⠎" }, { "input": "hypnotically", "output": "â “â ½â â â •⠞⠊⠉⠠⠽" }, { "input": "hypnotics", "output": "â “â ½â â â •⠞⠊⠉⠎" }, { "input": "hypnotism", "output": "â “â ½â â â •â žâ Šâ Žâ " }, { "input": "hypnotism's", "output": "â “â ½â â â •â žâ Šâ Žâ â „â Ž" }, { "input": "hypnotist", "output": "â “â ½â â â •â žâ Šâ Œ" }, { "input": "hypnotist's", "output": "â “â ½â â â •⠞⠊⠌⠄⠎" }, { "input": "hypnotists", "output": "â “â ½â â â •⠞⠊⠌⠎" }, { "input": "hypnotize", "output": "â “â ½â â â •⠞⠊⠵⠑" }, { "input": "hypnotized", "output": "â “â ½â â â •⠞⠊⠵⠫" }, { "input": "hypnotizes", "output": "â “â ½â â â •⠞⠊⠵⠑⠎" }, { "input": "hypnotizing", "output": "â “â ½â â â •⠞⠊⠵⠌" }, { "input": "hypo", "output": "â “â ½â â •" }, { "input": "hypo's", "output": "â “â ½â â •â „â Ž" }, { "input": "hypoallergenic", "output": "â “â ½â â •â â ‡â ‡â »â ›â ¢â Šâ ‰" }, { "input": "hypochondria", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ " }, { "input": "hypochondria's", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ â „â Ž" }, { "input": "hypochondriac", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ â ‰" }, { "input": "hypochondriac's", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ â ‰â „â Ž" }, { "input": "hypochondriacs", "output": "â “â ½â â •â ¡â •â â ™â —â Šâ â ‰â Ž" }, { "input": "hypocrisies", "output": "â “â ½â â •⠉⠗⠊⠎⠊⠑⠎" }, { "input": "hypocrisy", "output": "â “â ½â â •⠉⠗⠊⠎⠽" }, { "input": "hypocrisy's", "output": "â “â ½â â •⠉⠗⠊⠎⠽⠄⠎" }, { "input": "hypocrite", "output": "â “â ½â â •⠉⠗⠊⠞⠑" }, { "input": "hypocrite's", "output": "â “â ½â â •⠉⠗⠊⠞⠑⠄⠎" }, { "input": "hypocrites", "output": "â “â ½â â •⠉⠗⠊⠞⠑⠎" }, { "input": "hypocritical", "output": "â “â ½â â •⠉⠗⠊⠞⠊⠉â â ‡" }, { "input": "hypocritically", "output": "â “â ½â â •⠉⠗⠊⠞⠊⠉⠠⠽" }, { "input": "hypodermic", "output": "â “â ½â â •⠙⠻â â Šâ ‰" }, { "input": "hypodermic's", "output": "â “â ½â â •⠙⠻â â Šâ ‰â „â Ž" }, { "input": "hypodermics", "output": "â “â ½â â •⠙⠻â â Šâ ‰â Ž" }, { "input": "hypoglycemia", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ " }, { "input": "hypoglycemia's", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ â „â Ž" }, { "input": "hypoglycemic", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ ‰" }, { "input": "hypoglycemic's", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ ‰â „â Ž" }, { "input": "hypoglycemics", "output": "â “â ½â â •⠛⠇⠽⠉⠑â â Šâ ‰â Ž" }, { "input": "hypos", "output": "â “â ½â â •â Ž" }, { "input": "hypotenuse", "output": "â “â ½â â •⠞⠢⠥⠎⠑" }, { "input": "hypotenuse's", "output": "â “â ½â â •⠞⠢⠥⠎⠑⠄⠎" }, { "input": "hypotenuses", "output": "â “â ½â â •⠞⠢⠥⠎⠑⠎" }, { "input": "hypothalami", "output": "â “â ½â â •â ¹â â ‡â â â Š" }, { "input": "hypothalamus", "output": "â “â ½â â •â ¹â â ‡â â â ¥â Ž" }, { "input": "hypothalamus's", "output": "â “â ½â â •â ¹â â ‡â â â ¥â Žâ „â Ž" }, { "input": "hypothermia", "output": "â “â ½â â •⠮⠗â â Šâ " }, { "input": "hypothermia's", "output": "â “â ½â â •⠮⠗â â Šâ â „â Ž" }, { "input": "hypotheses", "output": "â “â ½â â •⠮⠎⠑⠎" }, { "input": "hypothesis", "output": "â “â ½â â •⠮⠎⠊⠎" }, { "input": "hypothesis's", "output": "â “â ½â â •⠮⠎⠊⠎⠄⠎" }, { "input": "hypothesize", "output": "â “â ½â â •⠮⠎⠊⠵⠑" }, { "input": "hypothesized", "output": "â “â ½â â •⠮⠎⠊⠵⠫" }, { "input": "hypothesizes", "output": "â “â ½â â •⠮⠎⠊⠵⠑⠎" }, { "input": "hypothesizing", "output": "â “â ½â â •⠮⠎⠊⠵⠌" }, { "input": "hypothetical", "output": "â “â ½â â •⠮⠞⠊⠉â â ‡" }, { "input": "hypothetically", "output": "â “â ½â â •⠮⠞⠊⠉⠠⠽" }, { "input": "hypothyroid", "output": "â “â ½â â •⠹⠽⠗⠕⠊⠙" }, { "input": "hypothyroid's", "output": "â “â ½â â •⠹⠽⠗⠕⠊⠙⠄⠎" }, { "input": "hypothyroidism", "output": "â “â ½â â •⠹⠽⠗⠕⠊⠙⠊⠎â " }, { "input": "hypothyroidism's", "output": "â “â ½â â •⠹⠽⠗⠕⠊⠙⠊⠎â â „â Ž" }, { "input": "hyssop", "output": "⠓⠽⠎⠎⠕â " }, { "input": "hyssop's", "output": "⠓⠽⠎⠎⠕â â „â Ž" }, { "input": "hysterectomies", "output": "⠓⠽⠌⠻⠑⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "hysterectomy", "output": "⠓⠽⠌⠻⠑⠉⠞⠕â â ½" }, { "input": "hysterectomy's", "output": "⠓⠽⠌⠻⠑⠉⠞⠕â â ½â „â Ž" }, { "input": "hysteresis", "output": "⠓⠽⠌⠻⠑⠎⠊⠎" }, { "input": "hysteria", "output": "⠓⠽⠌⠻⠊â " }, { "input": "hysteria's", "output": "⠓⠽⠌⠻⠊â â „â Ž" }, { "input": "hysteric", "output": "⠓⠽⠌⠻⠊⠉" }, { "input": "hysteric's", "output": "⠓⠽⠌⠻⠊⠉⠄⠎" }, { "input": "hysterical", "output": "⠓⠽⠌⠻⠊⠉â â ‡" }, { "input": "hysterically", "output": "⠓⠽⠌⠻⠊⠉⠠⠽" }, { "input": "hysterics", "output": "⠓⠽⠌⠻⠊⠉⠎" }, { "input": "hysterics's", "output": "⠓⠽⠌⠻⠊⠉⠎⠄⠎" }, { "input": "i", "output": "â °â Š" }, { "input": "iPad", "output": "â Šâ  â â â ™" }, { "input": "iPhone", "output": "â Šâ  â â “â â •" }, { "input": "iamb", "output": "â Šâ â â ƒ" }, { "input": "iamb's", "output": "â Šâ â â ƒâ „â Ž" }, { "input": "iambi", "output": "â Šâ â â ƒâ Š" }, { "input": "iambic", "output": "â Šâ â â ƒâ Šâ ‰" }, { "input": "iambic's", "output": "â Šâ â â ƒâ Šâ ‰â „â Ž" }, { "input": "iambics", "output": "â Šâ â â ƒâ Šâ ‰â Ž" }, { "input": "iambs", "output": "â Šâ â â ƒâ Ž" }, { "input": "iambus", "output": "â Šâ â â ƒâ ¥â Ž" }, { "input": "iambus's", "output": "â Šâ â â ƒâ ¥â Žâ „â Ž" }, { "input": "iambuses", "output": "â Šâ â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "ibex", "output": "⠊⠃⠑⠭" }, { "input": "ibex's", "output": "⠊⠃⠑⠭⠄⠎" }, { "input": "ibexes", "output": "⠊⠃⠑⠭⠑⠎" }, { "input": "ibidem", "output": "⠊⠃⠊⠙⠑â " }, { "input": "ibis", "output": "⠊⠃⠊⠎" }, { "input": "ibis's", "output": "⠊⠃⠊⠎⠄⠎" }, { "input": "ibises", "output": "⠊⠃⠊⠎⠑⠎" }, { "input": "ibuprofen", "output": "⠊⠃⠥â â —â ·â ¢" }, { "input": "ibuprofen's", "output": "⠊⠃⠥â â —⠷⠢⠄⠎" }, { "input": "ice", "output": "⠊⠉⠑" }, { "input": "ice's", "output": "⠊⠉⠑⠄⠎" }, { "input": "iceberg", "output": "⠊⠉⠑⠃⠻⠛" }, { "input": "iceberg's", "output": "⠊⠉⠑⠃⠻⠛⠄⠎" }, { "input": "icebergs", "output": "⠊⠉⠑⠃⠻⠛⠎" }, { "input": "iceboat", "output": "⠊⠉⠑⠃⠕â â ž" }, { "input": "iceboat's", "output": "⠊⠉⠑⠃⠕â â žâ „â Ž" }, { "input": "iceboats", "output": "⠊⠉⠑⠃⠕â â žâ Ž" }, { "input": "icebound", "output": "⠊⠉⠑⠃⠨⠙" }, { "input": "icebox", "output": "⠊⠉⠑⠃⠕⠭" }, { "input": "icebox's", "output": "⠊⠉⠑⠃⠕⠭⠄⠎" }, { "input": "iceboxes", "output": "⠊⠉⠑⠃⠕⠭⠑⠎" }, { "input": "icebreaker", "output": "⠊⠉⠑⠃⠗⠂⠅⠻" }, { "input": "icebreaker's", "output": "⠊⠉⠑⠃⠗⠂⠅⠻⠄⠎" }, { "input": "icebreakers", "output": "⠊⠉⠑⠃⠗⠂⠅⠻⠎" }, { "input": "icecap", "output": "⠊⠉⠑⠉â â " }, { "input": "icecap's", "output": "⠊⠉⠑⠉â â â „â Ž" }, { "input": "icecaps", "output": "⠊⠉⠑⠉â â â Ž" }, { "input": "iced", "output": "⠊⠉⠫" }, { "input": "iceman", "output": "⠊⠉⠑â â â " }, { "input": "iceman's", "output": "⠊⠉⠑â â â â „â Ž" }, { "input": "icemen", "output": "⠊⠉⠑â â ¢" }, { "input": "ices", "output": "⠊⠉⠑⠎" }, { "input": "ichthyologist", "output": "⠊⠡⠹⠽⠕⠇⠕⠛⠊⠌" }, { "input": "ichthyologist's", "output": "⠊⠡⠹⠽⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ichthyologists", "output": "⠊⠡⠹⠽⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ichthyology", "output": "⠊⠡⠹⠽⠕⠇⠕⠛⠽" }, { "input": "ichthyology's", "output": "⠊⠡⠹⠽⠕⠇⠕⠛⠽⠄⠎" }, { "input": "icicle", "output": "⠊⠉⠊⠉⠇⠑" }, { "input": "icicle's", "output": "⠊⠉⠊⠉⠇⠑⠄⠎" }, { "input": "icicles", "output": "⠊⠉⠊⠉⠇⠑⠎" }, { "input": "icier", "output": "⠊⠉⠊⠻" }, { "input": "iciest", "output": "⠊⠉⠊⠑⠌" }, { "input": "icily", "output": "⠊⠉⠊⠇⠽" }, { "input": "iciness", "output": "⠊⠉⠊⠰⠎" }, { "input": "iciness's", "output": "⠊⠉⠊⠰⠎⠄⠎" }, { "input": "icing", "output": "⠊⠉⠌" }, { "input": "icing's", "output": "⠊⠉⠌⠄⠎" }, { "input": "icings", "output": "⠊⠉⠌⠎" }, { "input": "ickier", "output": "⠊⠉⠅⠊⠻" }, { "input": "ickiest", "output": "⠊⠉⠅⠊⠑⠌" }, { "input": "icky", "output": "⠊⠉⠅⠽" }, { "input": "icon", "output": "⠊⠉⠕â " }, { "input": "icon's", "output": "⠊⠉⠕â â „â Ž" }, { "input": "iconoclasm's", "output": "⠊⠉⠕â â •⠉⠇â â Žâ â „â Ž" }, { "input": "iconoclast", "output": "⠊⠉⠕â â •⠉⠇â â Œ" }, { "input": "iconoclast's", "output": "⠊⠉⠕â â •⠉⠇â â Œâ „â Ž" }, { "input": "iconoclastic", "output": "⠊⠉⠕â â •⠉⠇â â Œâ Šâ ‰" }, { "input": "iconoclasts", "output": "⠊⠉⠕â â •⠉⠇â â Œâ Ž" }, { "input": "iconography's", "output": "⠊⠉⠕â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "icons", "output": "⠊⠉⠕â â Ž" }, { "input": "ictus", "output": "⠊⠉⠞⠥⠎" }, { "input": "ictus's", "output": "⠊⠉⠞⠥⠎⠄⠎" }, { "input": "icy", "output": "⠊⠉⠽" }, { "input": "id", "output": "â Šâ ™" }, { "input": "id's", "output": "⠊⠙⠄⠎" }, { "input": "idea", "output": "⠊⠙⠑â " }, { "input": "idea's", "output": "⠊⠙⠑â â „â Ž" }, { "input": "ideal", "output": "⠊⠙⠂⠇" }, { "input": "ideal's", "output": "⠊⠙⠂⠇⠄⠎" }, { "input": "idealism", "output": "⠊⠙⠂⠇⠊⠎â " }, { "input": "idealism's", "output": "⠊⠙⠂⠇⠊⠎â â „â Ž" }, { "input": "idealist", "output": "⠊⠙⠂⠇⠊⠌" }, { "input": "idealist's", "output": "⠊⠙⠂⠇⠊⠌⠄⠎" }, { "input": "idealistic", "output": "⠊⠙⠂⠇⠊⠌⠊⠉" }, { "input": "idealistically", "output": "⠊⠙⠂⠇⠊⠌⠊⠉⠠⠽" }, { "input": "idealists", "output": "⠊⠙⠂⠇⠊⠌⠎" }, { "input": "idealization", "output": "⠊⠙⠂⠇⠊⠵⠠â " }, { "input": "idealization's", "output": "⠊⠙⠂⠇⠊⠵⠠â â „â Ž" }, { "input": "idealizations", "output": "⠊⠙⠂⠇⠊⠵⠠â â Ž" }, { "input": "idealize", "output": "⠊⠙⠂⠇⠊⠵⠑" }, { "input": "idealized", "output": "⠊⠙⠂⠇⠊⠵⠫" }, { "input": "idealizes", "output": "⠊⠙⠂⠇⠊⠵⠑⠎" }, { "input": "idealizing", "output": "⠊⠙⠂⠇⠊⠵⠌" }, { "input": "ideally", "output": "⠊⠙⠑⠠⠽" }, { "input": "ideals", "output": "⠊⠙⠂⠇⠎" }, { "input": "ideas", "output": "⠊⠙⠂⠎" }, { "input": "identical", "output": "⠊⠙⠢⠞⠊⠉â â ‡" }, { "input": "identically", "output": "⠊⠙⠢⠞⠊⠉⠠⠽" }, { "input": "identifiable", "output": "⠊⠙⠢⠞⠊⠋⠊â â ¼" }, { "input": "identification", "output": "⠊⠙⠢⠞⠊⠋⠊⠉⠠â " }, { "input": "identification's", "output": "⠊⠙⠢⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "identified", "output": "⠊⠙⠢⠞⠊⠋⠊⠫" }, { "input": "identifier", "output": "⠊⠙⠢⠞⠊⠋⠊⠻" }, { "input": "identifiers", "output": "⠊⠙⠢⠞⠊⠋⠊⠻⠎" }, { "input": "identifies", "output": "⠊⠙⠢⠞⠊⠋⠊⠑⠎" }, { "input": "identify", "output": "⠊⠙⠢⠞⠊⠋⠽" }, { "input": "identifying", "output": "⠊⠙⠢⠞⠊⠋⠽⠌" }, { "input": "identities", "output": "⠊⠙⠢⠞⠊⠞⠊⠑⠎" }, { "input": "identity", "output": "⠊⠙⠢⠞⠰⠽" }, { "input": "identity's", "output": "⠊⠙⠢⠞⠰⠽⠄⠎" }, { "input": "ideogram", "output": "⠊⠙⠑⠕⠛⠗â â " }, { "input": "ideogram's", "output": "⠊⠙⠑⠕⠛⠗â â â „â Ž" }, { "input": "ideograms", "output": "⠊⠙⠑⠕⠛⠗â â â Ž" }, { "input": "ideograph", "output": "⠊⠙⠑⠕⠛⠗â â â “" }, { "input": "ideograph's", "output": "⠊⠙⠑⠕⠛⠗â â â “â „â Ž" }, { "input": "ideographs", "output": "⠊⠙⠑⠕⠛⠗â â â “â Ž" }, { "input": "ideological", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "ideologically", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "ideologies", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠑⠎" }, { "input": "ideologist", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠌" }, { "input": "ideologist's", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ideologists", "output": "⠊⠙⠑⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ideology", "output": "⠊⠙⠑⠕⠇⠕⠛⠽" }, { "input": "ideology's", "output": "⠊⠙⠑⠕⠇⠕⠛⠽⠄⠎" }, { "input": "ides", "output": "⠊⠙⠑⠎" }, { "input": "ides's", "output": "⠊⠙⠑⠎⠄⠎" }, { "input": "idiocies", "output": "⠊⠙⠊⠕⠉⠊⠑⠎" }, { "input": "idiocy", "output": "⠊⠙⠊⠕⠉⠽" }, { "input": "idiocy's", "output": "⠊⠙⠊⠕⠉⠽⠄⠎" }, { "input": "idiom", "output": "⠊⠙⠊⠕â " }, { "input": "idiom's", "output": "⠊⠙⠊⠕â â „â Ž" }, { "input": "idiomatic", "output": "⠊⠙⠊⠕â â â žâ Šâ ‰" }, { "input": "idiomatically", "output": "⠊⠙⠊⠕â â â žâ Šâ ‰â  â ½" }, { "input": "idioms", "output": "⠊⠙⠊⠕â â Ž" }, { "input": "idiopathic", "output": "⠊⠙⠊⠕â â â ¹â Šâ ‰" }, { "input": "idiosyncrasies", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â Žâ Šâ ‘â Ž" }, { "input": "idiosyncrasy", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â Žâ ½" }, { "input": "idiosyncrasy's", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â Žâ ½â „â Ž" }, { "input": "idiosyncratic", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â žâ Šâ ‰" }, { "input": "idiosyncratically", "output": "⠊⠙⠊⠕⠎⠽â â ‰â —â â žâ Šâ ‰â  â ½" }, { "input": "idiot", "output": "⠊⠙⠊⠕⠞" }, { "input": "idiot's", "output": "⠊⠙⠊⠕⠞⠄⠎" }, { "input": "idiotic", "output": "⠊⠙⠊⠕⠞⠊⠉" }, { "input": "idiotically", "output": "⠊⠙⠊⠕⠞⠊⠉⠠⠽" }, { "input": "idiots", "output": "⠊⠙⠊⠕⠞⠎" }, { "input": "idle", "output": "⠊⠙⠇⠑" }, { "input": "idle's", "output": "⠊⠙⠇⠑⠄⠎" }, { "input": "idled", "output": "⠊⠙⠇⠫" }, { "input": "idleness", "output": "⠊⠙⠇⠑⠰⠎" }, { "input": "idleness's", "output": "⠊⠙⠇⠑⠰⠎⠄⠎" }, { "input": "idler", "output": "⠊⠙⠇⠻" }, { "input": "idler's", "output": "⠊⠙⠇⠻⠄⠎" }, { "input": "idlers", "output": "⠊⠙⠇⠻⠎" }, { "input": "idles", "output": "⠊⠙⠇⠑⠎" }, { "input": "idlest", "output": "⠊⠙⠇⠑⠌" }, { "input": "idling", "output": "⠊⠙⠇⠌" }, { "input": "idly", "output": "⠊⠙⠇⠽" }, { "input": "idol", "output": "⠊⠙⠕⠇" }, { "input": "idol's", "output": "⠊⠙⠕⠇⠄⠎" }, { "input": "idolater", "output": "⠊⠙⠕⠇â â žâ »" }, { "input": "idolater's", "output": "⠊⠙⠕⠇â â žâ »â „â Ž" }, { "input": "idolaters", "output": "⠊⠙⠕⠇â â žâ »â Ž" }, { "input": "idolatress", "output": "⠊⠙⠕⠇â â žâ —â ‘â Žâ Ž" }, { "input": "idolatress's", "output": "⠊⠙⠕⠇â â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "idolatresses", "output": "⠊⠙⠕⠇â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "idolatrous", "output": "⠊⠙⠕⠇â â žâ —⠳⠎" }, { "input": "idolatry", "output": "⠊⠙⠕⠇â â žâ —â ½" }, { "input": "idolatry's", "output": "⠊⠙⠕⠇â â žâ —⠽⠄⠎" }, { "input": "idolization", "output": "⠊⠙⠕⠇⠊⠵⠠â " }, { "input": "idolization's", "output": "⠊⠙⠕⠇⠊⠵⠠â â „â Ž" }, { "input": "idolize", "output": "⠊⠙⠕⠇⠊⠵⠑" }, { "input": "idolized", "output": "⠊⠙⠕⠇⠊⠵⠫" }, { "input": "idolizes", "output": "⠊⠙⠕⠇⠊⠵⠑⠎" }, { "input": "idolizing", "output": "⠊⠙⠕⠇⠊⠵⠌" }, { "input": "idols", "output": "⠊⠙⠕⠇⠎" }, { "input": "ids", "output": "⠊⠙⠎" }, { "input": "idyll", "output": "⠊⠙⠽⠇⠇" }, { "input": "idyll's", "output": "⠊⠙⠽⠇⠇⠄⠎" }, { "input": "idyllic", "output": "⠊⠙⠽⠇⠇⠊⠉" }, { "input": "idylls", "output": "⠊⠙⠽⠇⠇⠎" }, { "input": "if", "output": "â Šâ ‹" }, { "input": "if's", "output": "â Šâ ‹â „â Ž" }, { "input": "iffier", "output": "â Šâ –â Šâ »" }, { "input": "iffiest", "output": "â Šâ –â Šâ ‘â Œ" }, { "input": "iffiness", "output": "â Šâ –â Šâ °â Ž" }, { "input": "iffiness's", "output": "â Šâ –â Šâ °â Žâ „â Ž" }, { "input": "iffy", "output": "â Šâ –â ½" }, { "input": "ifs", "output": "â Šâ ‹â Ž" }, { "input": "igloo", "output": "⠊⠛⠇⠕⠕" }, { "input": "igloo's", "output": "⠊⠛⠇⠕⠕⠄⠎" }, { "input": "igloos", "output": "⠊⠛⠇⠕⠕⠎" }, { "input": "igneous", "output": "â Šâ ›â â ‘⠳⠎" }, { "input": "ignitable", "output": "â Šâ ›â â Šâ žâ â ¼" }, { "input": "ignite", "output": "â Šâ ›â â Šâ žâ ‘" }, { "input": "ignited", "output": "â Šâ ›â â Šâ žâ «" }, { "input": "ignites", "output": "â Šâ ›â â Šâ žâ ‘â Ž" }, { "input": "igniting", "output": "â Šâ ›â â Šâ žâ Œ" }, { "input": "ignition", "output": "â Šâ ›â â Šâ °â " }, { "input": "ignition's", "output": "â Šâ ›â â Šâ °â â „â Ž" }, { "input": "ignitions", "output": "â Šâ ›â â Šâ °â â Ž" }, { "input": "ignoble", "output": "â Šâ ›â â •â ¼" }, { "input": "ignobly", "output": "â Šâ ›â â •⠃⠇⠽" }, { "input": "ignominies", "output": "â Šâ ›â â •â â ”â Šâ ‘â Ž" }, { "input": "ignominious", "output": "â Šâ ›â â •â â ”⠊⠳⠎" }, { "input": "ignominiously", "output": "â Šâ ›â â •â â ”⠊⠳⠎⠇⠽" }, { "input": "ignominy", "output": "â Šâ ›â â •â â ”â ½" }, { "input": "ignominy's", "output": "â Šâ ›â â •â â ”⠽⠄⠎" }, { "input": "ignoramus", "output": "â Šâ ›â â •â —â â â ¥â Ž" }, { "input": "ignoramus's", "output": "â Šâ ›â â •â —â â â ¥â Žâ „â Ž" }, { "input": "ignoramuses", "output": "â Šâ ›â â •â —â â â ¥â Žâ ‘â Ž" }, { "input": "ignorance", "output": "â Šâ ›â â •⠗⠨⠑" }, { "input": "ignorance's", "output": "â Šâ ›â â •⠗⠨⠑⠄⠎" }, { "input": "ignorant", "output": "â Šâ ›â â •â —â â â ž" }, { "input": "ignorantly", "output": "â Šâ ›â â •â —â â â žâ ‡â ½" }, { "input": "ignore", "output": "â Šâ ›â â •â —â ‘" }, { "input": "ignored", "output": "â Šâ ›â â •â —â «" }, { "input": "ignores", "output": "â Šâ ›â â •â —â ‘â Ž" }, { "input": "ignoring", "output": "â Šâ ›â â •â —â Œ" }, { "input": "iguana", "output": "⠊⠛⠥â â â " }, { "input": "iguana's", "output": "⠊⠛⠥â â â â „â Ž" }, { "input": "iguanas", "output": "⠊⠛⠥â â â â Ž" }, { "input": "ilea", "output": "⠊⠇⠑â " }, { "input": "ileitis", "output": "⠊⠇⠑⠊⠞⠊⠎" }, { "input": "ileitis's", "output": "⠊⠇⠑⠊⠞⠊⠎⠄⠎" }, { "input": "ileum", "output": "⠊⠇⠑⠥â " }, { "input": "ileum's", "output": "⠊⠇⠑⠥â â „â Ž" }, { "input": "ilia", "output": "⠊⠇⠊â " }, { "input": "ilium", "output": "⠊⠇⠊⠥â " }, { "input": "ilium's", "output": "⠊⠇⠊⠥â â „â Ž" }, { "input": "ilk", "output": "⠊⠇⠅" }, { "input": "ilk's", "output": "⠊⠇⠅⠄⠎" }, { "input": "ilks", "output": "⠊⠇⠅⠎" }, { "input": "ill", "output": "⠊⠇⠇" }, { "input": "ill's", "output": "⠊⠇⠇⠄⠎" }, { "input": "illegal", "output": "⠊⠇⠇⠑⠛â â ‡" }, { "input": "illegal's", "output": "⠊⠇⠇⠑⠛â â ‡â „â Ž" }, { "input": "illegalities", "output": "⠊⠇⠇⠑⠛â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "illegality", "output": "⠊⠇⠇⠑⠛â â ‡â °â ½" }, { "input": "illegality's", "output": "⠊⠇⠇⠑⠛â â ‡â °â ½â „â Ž" }, { "input": "illegally", "output": "⠊⠇⠇⠑⠛⠠⠽" }, { "input": "illegals", "output": "⠊⠇⠇⠑⠛â â ‡â Ž" }, { "input": "illegibility", "output": "⠊⠇⠇⠑⠛⠊⠃⠊⠇⠰⠽" }, { "input": "illegibility's", "output": "⠊⠇⠇⠑⠛⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "illegible", "output": "⠊⠇⠇⠑⠛⠊⠼" }, { "input": "illegibly", "output": "⠊⠇⠇⠑⠛⠊⠃⠇⠽" }, { "input": "illegitimacy", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â ‰â ½" }, { "input": "illegitimacy's", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â ‰â ½â „â Ž" }, { "input": "illegitimate", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â žâ ‘" }, { "input": "illegitimately", "output": "⠊⠇⠇⠑⠛⠊⠞⠊â â â žâ ‘⠇⠽" }, { "input": "illiberal", "output": "⠊⠇⠇⠊⠃⠻â â ‡" }, { "input": "illiberality", "output": "⠊⠇⠇⠊⠃⠻â â ‡â °â ½" }, { "input": "illiberality's", "output": "⠊⠇⠇⠊⠃⠻â â ‡â °â ½â „â Ž" }, { "input": "illiberally", "output": "⠊⠇⠇⠊⠃⠻⠠⠽" }, { "input": "illicit", "output": "⠊⠇⠇⠊⠉⠊⠞" }, { "input": "illicitly", "output": "⠊⠇⠇⠊⠉⠊⠞⠇⠽" }, { "input": "illicitness", "output": "⠊⠇⠇⠊⠉⠊⠞⠰⠎" }, { "input": "illicitness's", "output": "⠊⠇⠇⠊⠉⠊⠞⠰⠎⠄⠎" }, { "input": "illimitable", "output": "⠊⠇⠇⠊â â Šâ žâ â ¼" }, { "input": "illiteracy", "output": "⠊⠇⠇⠊⠞⠻â â ‰â ½" }, { "input": "illiteracy's", "output": "⠊⠇⠇⠊⠞⠻â â ‰â ½â „â Ž" }, { "input": "illiterate", "output": "⠊⠇⠇⠊⠞⠻â â žâ ‘" }, { "input": "illiterate's", "output": "⠊⠇⠇⠊⠞⠻â â žâ ‘â „â Ž" }, { "input": "illiterately", "output": "⠊⠇⠇⠊⠞⠻â â žâ ‘⠇⠽" }, { "input": "illiterates", "output": "⠊⠇⠇⠊⠞⠻â â žâ ‘â Ž" }, { "input": "illness", "output": "⠊⠇⠇⠰⠎" }, { "input": "illness's", "output": "⠊⠇⠇⠰⠎⠄⠎" }, { "input": "illnesses", "output": "⠊⠇⠇⠰⠎⠑⠎" }, { "input": "illogical", "output": "⠊⠇⠇⠕⠛⠊⠉â â ‡" }, { "input": "illogicality's", "output": "⠊⠇⠇⠕⠛⠊⠉â â ‡â °â ½â „â Ž" }, { "input": "illogically", "output": "⠊⠇⠇⠕⠛⠊⠉⠠⠽" }, { "input": "ills", "output": "⠊⠇⠇⠎" }, { "input": "illuminable", "output": "⠊⠇⠇⠥â â ”â â ¼" }, { "input": "illuminate", "output": "⠊⠇⠇⠥â â ”â â žâ ‘" }, { "input": "illuminated", "output": "⠊⠇⠇⠥â â ”â â žâ «" }, { "input": "illuminates", "output": "⠊⠇⠇⠥â â ”â â žâ ‘â Ž" }, { "input": "illuminating", "output": "⠊⠇⠇⠥â â ”â â žâ Œ" }, { "input": "illuminatingly", "output": "⠊⠇⠇⠥â â ”â â žâ Œâ ‡â ½" }, { "input": "illumination", "output": "⠊⠇⠇⠥â â ”â  â " }, { "input": "illumination's", "output": "⠊⠇⠇⠥â â ”â  â â „â Ž" }, { "input": "illuminations", "output": "⠊⠇⠇⠥â â ”â  â â Ž" }, { "input": "illumine", "output": "⠊⠇⠇⠥â â ”â ‘" }, { "input": "illumined", "output": "⠊⠇⠇⠥â â ”â «" }, { "input": "illumines", "output": "⠊⠇⠇⠥â â ”â ‘â Ž" }, { "input": "illumining", "output": "⠊⠇⠇⠥â â ”â Œ" }, { "input": "illusion", "output": "⠊⠇⠇⠥⠨â " }, { "input": "illusion's", "output": "⠊⠇⠇⠥⠨â â „â Ž" }, { "input": "illusions", "output": "⠊⠇⠇⠥⠨â â Ž" }, { "input": "illusive", "output": "⠊⠇⠇⠥⠎⠊⠧⠑" }, { "input": "illusory", "output": "⠊⠇⠇⠥⠎⠕⠗⠽" }, { "input": "illustrate", "output": "⠊⠇⠇⠥⠌⠗â â žâ ‘" }, { "input": "illustrated", "output": "⠊⠇⠇⠥⠌⠗â â žâ «" }, { "input": "illustrates", "output": "⠊⠇⠇⠥⠌⠗â â žâ ‘â Ž" }, { "input": "illustrating", "output": "⠊⠇⠇⠥⠌⠗â â žâ Œ" }, { "input": "illustration", "output": "⠊⠇⠇⠥⠌⠗⠠â " }, { "input": "illustration's", "output": "⠊⠇⠇⠥⠌⠗⠠â â „â Ž" }, { "input": "illustrations", "output": "⠊⠇⠇⠥⠌⠗⠠â â Ž" }, { "input": "illustrative", "output": "⠊⠇⠇⠥⠌⠗â â žâ Šâ §â ‘" }, { "input": "illustratively", "output": "⠊⠇⠇⠥⠌⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "illustrator", "output": "⠊⠇⠇⠥⠌⠗â â žâ •â —" }, { "input": "illustrator's", "output": "⠊⠇⠇⠥⠌⠗â â žâ •â —â „â Ž" }, { "input": "illustrators", "output": "⠊⠇⠇⠥⠌⠗â â žâ •â —â Ž" }, { "input": "illustrious", "output": "⠊⠇⠇⠥⠌⠗⠊⠳⠎" }, { "input": "illustriously", "output": "⠊⠇⠇⠥⠌⠗⠊⠳⠎⠇⠽" }, { "input": "illustriousness", "output": "⠊⠇⠇⠥⠌⠗⠊⠳⠎⠰⠎" }, { "input": "illustriousness's", "output": "⠊⠇⠇⠥⠌⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "image", "output": "â Šâ â â ›â ‘" }, { "input": "image's", "output": "â Šâ â â ›â ‘â „â Ž" }, { "input": "imaged", "output": "â Šâ â â ›â «" }, { "input": "imagery", "output": "â Šâ â â ›â ‘â —â ½" }, { "input": "imagery's", "output": "â Šâ â â ›â ‘⠗⠽⠄⠎" }, { "input": "images", "output": "â Šâ â â ›â ‘â Ž" }, { "input": "imaginable", "output": "â Šâ â â ›â ”â â ¼" }, { "input": "imaginably", "output": "â Šâ â â ›â ”â â ƒâ ‡â ½" }, { "input": "imaginary", "output": "â Šâ â â ›â ”⠜⠽" }, { "input": "imagination", "output": "â Šâ â â ›â ”â  â " }, { "input": "imagination's", "output": "â Šâ â â ›â ”â  â â „â Ž" }, { "input": "imaginations", "output": "â Šâ â â ›â ”â  â â Ž" }, { "input": "imaginative", "output": "â Šâ â â ›â ”â â žâ Šâ §â ‘" }, { "input": "imaginatively", "output": "â Šâ â â ›â ”â â žâ Šâ §â ‘⠇⠽" }, { "input": "imagine", "output": "â Šâ â â ›â ”â ‘" }, { "input": "imagined", "output": "â Šâ â â ›â ”â «" }, { "input": "imagines", "output": "â Šâ â â ›â ”â ‘â Ž" }, { "input": "imaging", "output": "â Šâ â â ›â Œ" }, { "input": "imagining", "output": "â Šâ â â ›â ”â Œ" }, { "input": "imago", "output": "â Šâ â â ›â •" }, { "input": "imago's", "output": "â Šâ â â ›â •â „â Ž" }, { "input": "imagoes", "output": "â Šâ â â ›â •â ‘â Ž" }, { "input": "imam", "output": "â Šâ â â " }, { "input": "imam's", "output": "â Šâ â â â „â Ž" }, { "input": "imams", "output": "â Šâ â â â Ž" }, { "input": "imbalance", "output": "â Šâ â ƒâ â ‡â ¨â ‘" }, { "input": "imbalance's", "output": "â Šâ â ƒâ â ‡â ¨â ‘â „â Ž" }, { "input": "imbalanced", "output": "â Šâ â ƒâ â ‡â ¨â ‘â ™" }, { "input": "imbalances", "output": "â Šâ â ƒâ â ‡â ¨â ‘â Ž" }, { "input": "imbecile", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠑" }, { "input": "imbecile's", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠑⠄⠎" }, { "input": "imbeciles", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠑⠎" }, { "input": "imbecilic", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠊⠉" }, { "input": "imbecilities", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠊⠞⠊⠑⠎" }, { "input": "imbecility", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠰⠽" }, { "input": "imbecility's", "output": "â Šâ â ƒâ ‘⠉⠊⠇⠰⠽⠄⠎" }, { "input": "imbibe", "output": "â Šâ â ƒâ Šâ ƒâ ‘" }, { "input": "imbibed", "output": "â Šâ â ƒâ Šâ ƒâ «" }, { "input": "imbiber", "output": "â Šâ â ƒâ Šâ ƒâ »" }, { "input": "imbiber's", "output": "â Šâ â ƒâ Šâ ƒâ »â „â Ž" }, { "input": "imbibers", "output": "â Šâ â ƒâ Šâ ƒâ »â Ž" }, { "input": "imbibes", "output": "â Šâ â ƒâ Šâ ƒâ ‘â Ž" }, { "input": "imbibing", "output": "â Šâ â ƒâ Šâ ƒâ Œ" }, { "input": "imbrication", "output": "â Šâ â ƒâ —⠊⠉⠠â " }, { "input": "imbrication's", "output": "â Šâ â ƒâ —⠊⠉⠠â â „â Ž" }, { "input": "imbroglio", "output": "â Šâ â ƒâ —⠕⠛⠇⠊⠕" }, { "input": "imbroglio's", "output": "â Šâ â ƒâ —⠕⠛⠇⠊⠕⠄⠎" }, { "input": "imbroglios", "output": "â Šâ â ƒâ —⠕⠛⠇⠊⠕⠎" }, { "input": "imbue", "output": "â Šâ â ƒâ ¥â ‘" }, { "input": "imbued", "output": "â Šâ â ƒâ ¥â «" }, { "input": "imbues", "output": "â Šâ â ƒâ ¥â ‘â Ž" }, { "input": "imbuing", "output": "â Šâ â ƒâ ¥â Œ" }, { "input": "imitable", "output": "â Šâ â Šâ žâ â ¼" }, { "input": "imitate", "output": "â Šâ â Šâ žâ â žâ ‘" }, { "input": "imitated", "output": "â Šâ â Šâ žâ â žâ «" }, { "input": "imitates", "output": "â Šâ â Šâ žâ â žâ ‘â Ž" }, { "input": "imitating", "output": "â Šâ â Šâ žâ â žâ Œ" }, { "input": "imitation", "output": "â Šâ â Šâ žâ  â " }, { "input": "imitation's", "output": "â Šâ â Šâ žâ  â â „â Ž" }, { "input": "imitations", "output": "â Šâ â Šâ žâ  â â Ž" }, { "input": "imitative", "output": "â Šâ â Šâ žâ â žâ Šâ §â ‘" }, { "input": "imitatively", "output": "â Šâ â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "imitativeness", "output": "â Šâ â Šâ žâ â žâ Šâ §â ‘â °â Ž" }, { "input": "imitativeness's", "output": "â Šâ â Šâ žâ â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "imitator", "output": "â Šâ â Šâ žâ â žâ •â —" }, { "input": "imitator's", "output": "â Šâ â Šâ žâ â žâ •â —â „â Ž" }, { "input": "imitators", "output": "â Šâ â Šâ žâ â žâ •â —â Ž" }, { "input": "immaculate", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘" }, { "input": "immaculately", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘⠇⠽" }, { "input": "immaculateness", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘â °â Ž" }, { "input": "immaculateness's", "output": "â Šâ â â â ‰â ¥â ‡â â žâ ‘â °â Žâ „â Ž" }, { "input": "immanence", "output": "â Šâ â â â â °â ‘" }, { "input": "immanence's", "output": "â Šâ â â â â °â ‘â „â Ž" }, { "input": "immanency", "output": "â Šâ â â â â ¢â ‰â ½" }, { "input": "immanency's", "output": "â Šâ â â â â ¢â ‰â ½â „â Ž" }, { "input": "immanent", "output": "â Šâ â â â â ¢â ž" }, { "input": "immanently", "output": "â Šâ â â â â ¢â žâ ‡â ½" }, { "input": "immaterial", "output": "â Šâ â â â žâ »â Šâ â ‡" }, { "input": "immateriality", "output": "â Šâ â â â žâ »â Šâ â ‡â °â ½" }, { "input": "immateriality's", "output": "â Šâ â â â žâ »â Šâ â ‡â °â ½â „â Ž" }, { "input": "immaterially", "output": "â Šâ â â â žâ »â Šâ  â ½" }, { "input": "immaterialness", "output": "â Šâ â â â žâ »â Šâ â ‡â °â Ž" }, { "input": "immaterialness's", "output": "â Šâ â â â žâ »â Šâ â ‡â °â Žâ „â Ž" }, { "input": "immature", "output": "â Šâ â â â žâ ¥â —â ‘" }, { "input": "immaturely", "output": "â Šâ â â â žâ ¥â —⠑⠇⠽" }, { "input": "immaturity", "output": "â Šâ â â â žâ ¥â —â °â ½" }, { "input": "immaturity's", "output": "â Šâ â â â žâ ¥â —⠰⠽⠄⠎" }, { "input": "immeasurable", "output": "â Šâ â â ‚⠎⠥⠗â â ¼" }, { "input": "immeasurably", "output": "â Šâ â â ‚⠎⠥⠗â â ƒâ ‡â ½" }, { "input": "immediacies", "output": "â Šâ â â «â Šâ â ‰â Šâ ‘â Ž" }, { "input": "immediacies's", "output": "â Šâ â â «â Šâ â ‰â Šâ ‘â Žâ „â Ž" }, { "input": "immediacy", "output": "â Šâ â â «â Šâ â ‰â ½" }, { "input": "immediacy's", "output": "â Šâ â â «â Šâ â ‰â ½â „â Ž" }, { "input": "immediate", "output": "â Šâ â " }, { "input": "immediately", "output": "â Šâ â â ‡â ½" }, { "input": "immediateness", "output": "â Šâ â â °â Ž" }, { "input": "immediateness's", "output": "â Šâ â â °â Žâ „â Ž" }, { "input": "immemorial", "output": "â Šâ â â ‘â â •â —â Šâ â ‡" }, { "input": "immemorially", "output": "â Šâ â â ‘â â •â —â Šâ  â ½" }, { "input": "immense", "output": "â Šâ â â ¢â Žâ ‘" }, { "input": "immensely", "output": "â Šâ â â ¢â Žâ ‘⠇⠽" }, { "input": "immensities", "output": "â Šâ â â ¢â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "immensity", "output": "â Šâ â â ¢â Žâ °â ½" }, { "input": "immensity's", "output": "â Šâ â â ¢â Žâ °â ½â „â Ž" }, { "input": "immerse", "output": "â Šâ â â »â Žâ ‘" }, { "input": "immersed", "output": "â Šâ â â »â Žâ «" }, { "input": "immerses", "output": "â Šâ â â »â Žâ ‘â Ž" }, { "input": "immersible", "output": "â Šâ â â »â Žâ Šâ ¼" }, { "input": "immersing", "output": "â Šâ â â »â Žâ Œ" }, { "input": "immersion", "output": "â Šâ â â »â ¨â " }, { "input": "immersion's", "output": "â Šâ â â »â ¨â â „â Ž" }, { "input": "immersions", "output": "â Šâ â â »â ¨â â Ž" }, { "input": "immigrant", "output": "â Šâ â â Šâ ›â —â â â ž" }, { "input": "immigrant's", "output": "â Šâ â â Šâ ›â —â â â žâ „â Ž" }, { "input": "immigrants", "output": "â Šâ â â Šâ ›â —â â â žâ Ž" }, { "input": "immigrate", "output": "â Šâ â â Šâ ›â —â â žâ ‘" }, { "input": "immigrated", "output": "â Šâ â â Šâ ›â —â â žâ «" }, { "input": "immigrates", "output": "â Šâ â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "immigrating", "output": "â Šâ â â Šâ ›â —â â žâ Œ" }, { "input": "immigration", "output": "â Šâ â â Šâ ›â —â  â " }, { "input": "immigration's", "output": "â Šâ â â Šâ ›â —â  â â „â Ž" }, { "input": "imminence", "output": "â Šâ â â ”â °â ‘" }, { "input": "imminence's", "output": "â Šâ â â ”â °â ‘â „â Ž" }, { "input": "imminent", "output": "â Šâ â â ”⠢⠞" }, { "input": "imminently", "output": "â Šâ â â ”⠢⠞⠇⠽" }, { "input": "immobile", "output": "â Šâ â â •⠃⠊⠇⠑" }, { "input": "immobility", "output": "â Šâ â â •⠃⠊⠇⠰⠽" }, { "input": "immobility's", "output": "â Šâ â â •⠃⠊⠇⠰⠽⠄⠎" }, { "input": "immobilization", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠠â " }, { "input": "immobilization's", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "immobilize", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠑" }, { "input": "immobilized", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠫" }, { "input": "immobilizer", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠻" }, { "input": "immobilizers", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠻⠎" }, { "input": "immobilizes", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠑⠎" }, { "input": "immobilizing", "output": "â Šâ â â •⠃⠊⠇⠊⠵⠌" }, { "input": "immoderate", "output": "â Šâ â â •⠙⠻â â žâ ‘" }, { "input": "immoderately", "output": "â Šâ â â •⠙⠻â â žâ ‘⠇⠽" }, { "input": "immodest", "output": "â Šâ â â •⠙⠑⠌" }, { "input": "immodestly", "output": "â Šâ â â •⠙⠑⠌⠇⠽" }, { "input": "immodesty", "output": "â Šâ â â •⠙⠑⠌⠽" }, { "input": "immodesty's", "output": "â Šâ â â •⠙⠑⠌⠽⠄⠎" }, { "input": "immolate", "output": "â Šâ â â •â ‡â â žâ ‘" }, { "input": "immolated", "output": "â Šâ â â •â ‡â â žâ «" }, { "input": "immolates", "output": "â Šâ â â •â ‡â â žâ ‘â Ž" }, { "input": "immolating", "output": "â Šâ â â •â ‡â â žâ Œ" }, { "input": "immolation", "output": "â Šâ â â •⠇⠠â " }, { "input": "immolation's", "output": "â Šâ â â •⠇⠠â â „â Ž" }, { "input": "immoral", "output": "â Šâ â â •â —â â ‡" }, { "input": "immoralities", "output": "â Šâ â â •â —â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "immorality", "output": "â Šâ â â •â —â â ‡â °â ½" }, { "input": "immorality's", "output": "â Šâ â â •â —â â ‡â °â ½â „â Ž" }, { "input": "immorally", "output": "â Šâ â â •â —â  â ½" }, { "input": "immortal", "output": "â Šâ â â •â —â žâ â ‡" }, { "input": "immortal's", "output": "â Šâ â â •â —â žâ â ‡â „â Ž" }, { "input": "immortality", "output": "â Šâ â â •â —â žâ â ‡â °â ½" }, { "input": "immortality's", "output": "â Šâ â â •â —â žâ â ‡â °â ½â „â Ž" }, { "input": "immortalize", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ ‘" }, { "input": "immortalized", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ «" }, { "input": "immortalizes", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "immortalizing", "output": "â Šâ â â •â —â žâ â ‡â Šâ µâ Œ" }, { "input": "immortally", "output": "â Šâ â â •â —â žâ  â ½" }, { "input": "immortals", "output": "â Šâ â â •â —â žâ â ‡â Ž" }, { "input": "immovability", "output": "â Šâ â â •â §â â ƒâ Šâ ‡â °â ½" }, { "input": "immovability's", "output": "â Šâ â â •â §â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "immovable", "output": "â Šâ â â •â §â â ¼" }, { "input": "immovably", "output": "â Šâ â â •â §â â ƒâ ‡â ½" }, { "input": "immune", "output": "â Šâ â â ¥â â ‘" }, { "input": "immunity", "output": "â Šâ â â ¥â â °â ½" }, { "input": "immunity's", "output": "â Šâ â â ¥â â °â ½â „â Ž" }, { "input": "immunization", "output": "â Šâ â â ¥â â Šâ µâ  â " }, { "input": "immunization's", "output": "â Šâ â â ¥â â Šâ µâ  â â „â Ž" }, { "input": "immunizations", "output": "â Šâ â â ¥â â Šâ µâ  â â Ž" }, { "input": "immunize", "output": "â Šâ â â ¥â â Šâ µâ ‘" }, { "input": "immunized", "output": "â Šâ â â ¥â â Šâ µâ «" }, { "input": "immunizes", "output": "â Šâ â â ¥â â Šâ µâ ‘â Ž" }, { "input": "immunizing", "output": "â Šâ â â ¥â â Šâ µâ Œ" }, { "input": "immunodeficiency's", "output": "â Šâ â â ¥â â •⠙⠑⠋⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "immunodeficient", "output": "â Šâ â â ¥â â •⠙⠑⠋⠊⠉⠊⠢⠞" }, { "input": "immunologic", "output": "â Šâ â â ¥â â •⠇⠕⠛⠊⠉" }, { "input": "immunological", "output": "â Šâ â â ¥â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "immunologist", "output": "â Šâ â â ¥â â •⠇⠕⠛⠊⠌" }, { "input": "immunologist's", "output": "â Šâ â â ¥â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "immunologists", "output": "â Šâ â â ¥â â •⠇⠕⠛⠊⠌⠎" }, { "input": "immunology", "output": "â Šâ â â ¥â â •⠇⠕⠛⠽" }, { "input": "immunology's", "output": "â Šâ â â ¥â â •⠇⠕⠛⠽⠄⠎" }, { "input": "immure", "output": "â Šâ â â ¥â —â ‘" }, { "input": "immured", "output": "â Šâ â â ¥â —â «" }, { "input": "immures", "output": "â Šâ â â ¥â —â ‘â Ž" }, { "input": "immuring", "output": "â Šâ â â ¥â —â Œ" }, { "input": "immutability", "output": "â Šâ â â ¥â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "immutability's", "output": "â Šâ â â ¥â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "immutable", "output": "â Šâ â â ¥â žâ â ¼" }, { "input": "immutably", "output": "â Šâ â â ¥â žâ â ƒâ ‡â ½" }, { "input": "imp", "output": "â Šâ â " }, { "input": "imp's", "output": "â Šâ â â „â Ž" }, { "input": "impact", "output": "â Šâ â â â ‰â ž" }, { "input": "impact's", "output": "â Šâ â â â ‰â žâ „â Ž" }, { "input": "impacted", "output": "â Šâ â â â ‰â žâ «" }, { "input": "impacting", "output": "â Šâ â â â ‰â žâ Œ" }, { "input": "impacts", "output": "â Šâ â â â ‰â žâ Ž" }, { "input": "impair", "output": "â Šâ â â â Šâ —" }, { "input": "impaired", "output": "â Šâ â â â Šâ —â «" }, { "input": "impairing", "output": "â Šâ â â â Šâ —â Œ" }, { "input": "impairment", "output": "â Šâ â â â Šâ —â °â ž" }, { "input": "impairment's", "output": "â Šâ â â â Šâ —â °â žâ „â Ž" }, { "input": "impairments", "output": "â Šâ â â â Šâ —â °â žâ Ž" }, { "input": "impairs", "output": "â Šâ â â â Šâ —â Ž" }, { "input": "impala", "output": "â Šâ â â â ‡â " }, { "input": "impala's", "output": "â Šâ â â â ‡â â „â Ž" }, { "input": "impalas", "output": "â Šâ â â â ‡â â Ž" }, { "input": "impale", "output": "â Šâ â â â ‡â ‘" }, { "input": "impaled", "output": "â Šâ â â â ‡â «" }, { "input": "impalement", "output": "â Šâ â â â ‡â ‘â °â ž" }, { "input": "impalement's", "output": "â Šâ â â â ‡â ‘â °â žâ „â Ž" }, { "input": "impales", "output": "â Šâ â â â ‡â ‘â Ž" }, { "input": "impaling", "output": "â Šâ â â â ‡â Œ" }, { "input": "impalpable", "output": "â Šâ â â â ‡â â â ¼" }, { "input": "impalpably", "output": "â Šâ â â â ‡â â â ƒâ ‡â ½" }, { "input": "impanel", "output": "â Šâ â â â â ‘â ‡" }, { "input": "impaneled", "output": "â Šâ â â â â ‘⠇⠫" }, { "input": "impaneling", "output": "â Šâ â â â â ‘⠇⠌" }, { "input": "impanels", "output": "â Šâ â â â â ‘⠇⠎" }, { "input": "impart", "output": "â Šâ â â " }, { "input": "imparted", "output": "â Šâ â â â «" }, { "input": "impartial", "output": "â Šâ â â â Šâ â ‡" }, { "input": "impartiality", "output": "â Šâ â â â Šâ â ‡â °â ½" }, { "input": "impartiality's", "output": "â Šâ â â â Šâ â ‡â °â ½â „â Ž" }, { "input": "impartially", "output": "â Šâ â â â Šâ  â ½" }, { "input": "imparting", "output": "â Šâ â â â Œ" }, { "input": "imparts", "output": "â Šâ â â â Ž" }, { "input": "impassable", "output": "â Šâ â â â Žâ Žâ â ¼" }, { "input": "impassably", "output": "â Šâ â â â Žâ Žâ â ƒâ ‡â ½" }, { "input": "impasse", "output": "â Šâ â â â Žâ Žâ ‘" }, { "input": "impasse's", "output": "â Šâ â â â Žâ Žâ ‘â „â Ž" }, { "input": "impasses", "output": "â Šâ â â â Žâ Žâ ‘â Ž" }, { "input": "impassibility", "output": "â Šâ â â â Žâ Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "impassibility's", "output": "â Šâ â â â Žâ Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "impassible", "output": "â Šâ â â â Žâ Žâ Šâ ¼" }, { "input": "impassibly", "output": "â Šâ â â â Žâ Žâ Šâ ƒâ ‡â ½" }, { "input": "impassioned", "output": "â Šâ â â â Žâ ¨â â «" }, { "input": "impassive", "output": "â Šâ â â â Žâ Žâ Šâ §â ‘" }, { "input": "impassively", "output": "â Šâ â â â Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "impassiveness", "output": "â Šâ â â â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "impassiveness's", "output": "â Šâ â â â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "impassivity", "output": "â Šâ â â â Žâ Žâ Šâ §â °â ½" }, { "input": "impassivity's", "output": "â Šâ â â â Žâ Žâ Šâ §â °â ½â „â Ž" }, { "input": "impasto", "output": "â Šâ â â â Œâ •" }, { "input": "impasto's", "output": "â Šâ â â â Œâ •â „â Ž" }, { "input": "impatience", "output": "â Šâ â â â žâ Šâ °â ‘" }, { "input": "impatience's", "output": "â Šâ â â â žâ Šâ °â ‘â „â Ž" }, { "input": "impatiences", "output": "â Šâ â â â žâ Šâ °â ‘â Ž" }, { "input": "impatiens", "output": "â Šâ â â â žâ Šâ ¢â Ž" }, { "input": "impatiens's", "output": "â Šâ â â â žâ Šâ ¢â Žâ „â Ž" }, { "input": "impatient", "output": "â Šâ â â â žâ Šâ ¢â ž" }, { "input": "impatiently", "output": "â Šâ â â â žâ Šâ ¢â žâ ‡â ½" }, { "input": "impeach", "output": "â Šâ â â ‚â ¡" }, { "input": "impeached", "output": "â Šâ â â ‚â ¡â «" }, { "input": "impeacher", "output": "â Šâ â â ‚â ¡â »" }, { "input": "impeacher's", "output": "â Šâ â â ‚⠡⠻⠄⠎" }, { "input": "impeachers", "output": "â Šâ â â ‚⠡⠻⠎" }, { "input": "impeaches", "output": "â Šâ â â ‚â ¡â ‘â Ž" }, { "input": "impeaching", "output": "â Šâ â â ‚â ¡â Œ" }, { "input": "impeachment", "output": "â Šâ â â ‚â ¡â °â ž" }, { "input": "impeachment's", "output": "â Šâ â â ‚â ¡â °â žâ „â Ž" }, { "input": "impeachments", "output": "â Šâ â â ‚â ¡â °â žâ Ž" }, { "input": "impeccability", "output": "â Šâ â â ‘â ’â â ƒâ Šâ ‡â °â ½" }, { "input": "impeccability's", "output": "â Šâ â â ‘â ’â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "impeccable", "output": "â Šâ â â ‘â ’â â ¼" }, { "input": "impeccably", "output": "â Šâ â â ‘â ’â â ƒâ ‡â ½" }, { "input": "impecunious", "output": "â Šâ â â ‘⠉⠥â â Šâ ³â Ž" }, { "input": "impecuniously", "output": "â Šâ â â ‘⠉⠥â â Šâ ³â Žâ ‡â ½" }, { "input": "impecuniousness", "output": "â Šâ â â ‘⠉⠥â â Šâ ³â Žâ °â Ž" }, { "input": "impecuniousness's", "output": "â Šâ â â ‘⠉⠥â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "impedance", "output": "â Šâ â â «â ¨â ‘" }, { "input": "impedance's", "output": "â Šâ â â «â ¨â ‘â „â Ž" }, { "input": "impede", "output": "â Šâ â â «â ‘" }, { "input": "impeded", "output": "â Šâ â â «â «" }, { "input": "impedes", "output": "â Šâ â â «â ‘â Ž" }, { "input": "impediment", "output": "â Šâ â â «â Šâ °â ž" }, { "input": "impediment's", "output": "â Šâ â â «â Šâ °â žâ „â Ž" }, { "input": "impedimenta", "output": "â Šâ â â «â Šâ °â žâ " }, { "input": "impedimenta's", "output": "â Šâ â â «â Šâ °â žâ â „â Ž" }, { "input": "impediments", "output": "â Šâ â â «â Šâ °â žâ Ž" }, { "input": "impeding", "output": "â Šâ â â «â Œ" }, { "input": "impel", "output": "â Šâ â â ‘â ‡" }, { "input": "impelled", "output": "â Šâ â â ‘⠇⠇⠫" }, { "input": "impeller", "output": "â Šâ â â ‘⠇⠇⠻" }, { "input": "impeller's", "output": "â Šâ â â ‘⠇⠇⠻⠄⠎" }, { "input": "impellers", "output": "â Šâ â â ‘⠇⠇⠻⠎" }, { "input": "impelling", "output": "â Šâ â â ‘⠇⠇⠌" }, { "input": "impels", "output": "â Šâ â â ‘⠇⠎" }, { "input": "impend", "output": "â Šâ â â ¢â ™" }, { "input": "impended", "output": "â Šâ â â ¢â ™â «" }, { "input": "impending", "output": "â Šâ â â ¢â ™â Œ" }, { "input": "impends", "output": "â Šâ â â ¢â ™â Ž" }, { "input": "impenetrability", "output": "â Šâ â â ¢â ‘â žâ —â â ƒâ Šâ ‡â °â ½" }, { "input": "impenetrability's", "output": "â Šâ â â ¢â ‘â žâ —â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "impenetrable", "output": "â Šâ â â ¢â ‘â žâ —â â ¼" }, { "input": "impenetrably", "output": "â Šâ â â ¢â ‘â žâ —â â ƒâ ‡â ½" }, { "input": "impenitence", "output": "â Šâ â â ¢â Šâ žâ °â ‘" }, { "input": "impenitence's", "output": "â Šâ â â ¢â Šâ žâ °â ‘â „â Ž" }, { "input": "impenitent", "output": "â Šâ â â ¢â Šâ žâ ¢â ž" }, { "input": "impenitently", "output": "â Šâ â â ¢â Šâ žâ ¢â žâ ‡â ½" }, { "input": "imperative", "output": "â Šâ â â »â â žâ Šâ §â ‘" }, { "input": "imperative's", "output": "â Šâ â â »â â žâ Šâ §â ‘â „â Ž" }, { "input": "imperatively", "output": "â Šâ â â »â â žâ Šâ §â ‘⠇⠽" }, { "input": "imperatives", "output": "â Šâ â â »â â žâ Šâ §â ‘â Ž" }, { "input": "imperceptibility", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "imperceptibility's", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "imperceptible", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ ¼" }, { "input": "imperceptibly", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ ƒâ ‡â ½" }, { "input": "imperceptive", "output": "â Šâ â â »â ‰â ‘â â žâ Šâ §â ‘" }, { "input": "imperfect", "output": "â Šâ â â »â ‹â ‘⠉⠞" }, { "input": "imperfect's", "output": "â Šâ â â »â ‹â ‘⠉⠞⠄⠎" }, { "input": "imperfection", "output": "â Šâ â â »â ‹â ‘⠉⠰â " }, { "input": "imperfection's", "output": "â Šâ â â »â ‹â ‘⠉⠰â â „â Ž" }, { "input": "imperfections", "output": "â Šâ â â »â ‹â ‘⠉⠰â â Ž" }, { "input": "imperfectly", "output": "â Šâ â â »â ‹â ‘⠉⠞⠇⠽" }, { "input": "imperfectness", "output": "â Šâ â â »â ‹â ‘⠉⠞⠰⠎" }, { "input": "imperfectness's", "output": "â Šâ â â »â ‹â ‘⠉⠞⠰⠎⠄⠎" }, { "input": "imperfects", "output": "â Šâ â â »â ‹â ‘⠉⠞⠎" }, { "input": "imperial", "output": "â Šâ â â »â Šâ â ‡" }, { "input": "imperial's", "output": "â Šâ â â »â Šâ â ‡â „â Ž" }, { "input": "imperialism", "output": "â Šâ â â »â Šâ â ‡â Šâ Žâ " }, { "input": "imperialism's", "output": "â Šâ â â »â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "imperialist", "output": "â Šâ â â »â Šâ â ‡â Šâ Œ" }, { "input": "imperialist's", "output": "â Šâ â â »â Šâ â ‡â Šâ Œâ „â Ž" }, { "input": "imperialistic", "output": "â Šâ â â »â Šâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "imperialistically", "output": "â Šâ â â »â Šâ â ‡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "imperialists", "output": "â Šâ â â »â Šâ â ‡â Šâ Œâ Ž" }, { "input": "imperially", "output": "â Šâ â â »â Šâ  â ½" }, { "input": "imperials", "output": "â Šâ â â »â Šâ â ‡â Ž" }, { "input": "imperil", "output": "â Šâ â â »â Šâ ‡" }, { "input": "imperiled", "output": "â Šâ â â »â Šâ ‡â «" }, { "input": "imperiling", "output": "â Šâ â â »â Šâ ‡â Œ" }, { "input": "imperilment", "output": "â Šâ â â »â Šâ ‡â °â ž" }, { "input": "imperilment's", "output": "â Šâ â â »â Šâ ‡â °â žâ „â Ž" }, { "input": "imperils", "output": "â Šâ â â »â Šâ ‡â Ž" }, { "input": "imperious", "output": "â Šâ â â »â Šâ ³â Ž" }, { "input": "imperiously", "output": "â Šâ â â »â Šâ ³â Žâ ‡â ½" }, { "input": "imperiousness", "output": "â Šâ â â »â Šâ ³â Žâ °â Ž" }, { "input": "imperiousness's", "output": "â Šâ â â »â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "imperishable", "output": "â Šâ â â »â Šâ ©â â ¼" }, { "input": "imperishably", "output": "â Šâ â â »â Šâ ©â â ƒâ ‡â ½" }, { "input": "impermanence", "output": "â Šâ â â »â â â â °â ‘" }, { "input": "impermanence's", "output": "â Šâ â â »â â â â °â ‘â „â Ž" }, { "input": "impermanent", "output": "â Šâ â â »â â â â ¢â ž" }, { "input": "impermanently", "output": "â Šâ â â »â â â â ¢â žâ ‡â ½" }, { "input": "impermeability", "output": "â Šâ â â »â â ‘â â ƒâ Šâ ‡â °â ½" }, { "input": "impermeability's", "output": "â Šâ â â »â â ‘â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "impermeable", "output": "â Šâ â â »â â ‘â â ¼" }, { "input": "impermeably", "output": "â Šâ â â »â â ‘â â ƒâ ‡â ½" }, { "input": "impermissible", "output": "â Šâ â â »â â Šâ Žâ Žâ Šâ ¼" }, { "input": "impersonal", "output": "â Šâ â â »â Žâ •â â â ‡" }, { "input": "impersonally", "output": "â Šâ â â »â Žâ •â â  â ½" }, { "input": "impersonate", "output": "â Šâ â â »â Žâ •â â â žâ ‘" }, { "input": "impersonated", "output": "â Šâ â â »â Žâ •â â â žâ «" }, { "input": "impersonates", "output": "â Šâ â â »â Žâ •â â â žâ ‘â Ž" }, { "input": "impersonating", "output": "â Šâ â â »â Žâ •â â â žâ Œ" }, { "input": "impersonation", "output": "â Šâ â â »â Žâ •â â  â " }, { "input": "impersonation's", "output": "â Šâ â â »â Žâ •â â  â â „â Ž" }, { "input": "impersonations", "output": "â Šâ â â »â Žâ •â â  â â Ž" }, { "input": "impersonator", "output": "â Šâ â â »â Žâ •â â â žâ •â —" }, { "input": "impersonator's", "output": "â Šâ â â »â Žâ •â â â žâ •â —â „â Ž" }, { "input": "impersonators", "output": "â Šâ â â »â Žâ •â â â žâ •â —â Ž" }, { "input": "impertinence", "output": "â Šâ â â »â žâ ”â °â ‘" }, { "input": "impertinence's", "output": "â Šâ â â »â žâ ”â °â ‘â „â Ž" }, { "input": "impertinent", "output": "â Šâ â â »â žâ ”⠢⠞" }, { "input": "impertinently", "output": "â Šâ â â »â žâ ”⠢⠞⠇⠽" }, { "input": "imperturbability", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ƒâ Šâ ‡â °â ½" }, { "input": "imperturbability's", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "imperturbable", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ¼" }, { "input": "imperturbably", "output": "â Šâ â â »â žâ ¥â —â ƒâ â ƒâ ‡â ½" }, { "input": "impervious", "output": "â Šâ â â »â §â Šâ ³â Ž" }, { "input": "imperviously", "output": "â Šâ â â »â §â Šâ ³â Žâ ‡â ½" }, { "input": "impetigo", "output": "â Šâ â â ‘⠞⠊⠛⠕" }, { "input": "impetigo's", "output": "â Šâ â â ‘⠞⠊⠛⠕⠄⠎" }, { "input": "impetuosity", "output": "â Šâ â â ‘⠞⠥⠕⠎⠰⠽" }, { "input": "impetuosity's", "output": "â Šâ â â ‘⠞⠥⠕⠎⠰⠽⠄⠎" }, { "input": "impetuous", "output": "â Šâ â â ‘⠞⠥⠳⠎" }, { "input": "impetuously", "output": "â Šâ â â ‘⠞⠥⠳⠎⠇⠽" }, { "input": "impetuousness's", "output": "â Šâ â â ‘⠞⠥⠳⠎⠰⠎⠄⠎" }, { "input": "impetus", "output": "â Šâ â â ‘⠞⠥⠎" }, { "input": "impetus's", "output": "â Šâ â â ‘⠞⠥⠎⠄⠎" }, { "input": "impetuses", "output": "â Šâ â â ‘⠞⠥⠎⠑⠎" }, { "input": "impieties", "output": "â Šâ â â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "impiety", "output": "â Šâ â â Šâ ‘â žâ ½" }, { "input": "impiety's", "output": "â Šâ â â Šâ ‘⠞⠽⠄⠎" }, { "input": "impinge", "output": "â Šâ â â Œâ ‘" }, { "input": "impinged", "output": "â Šâ â â Œâ «" }, { "input": "impingement", "output": "â Šâ â â Œâ ‘â °â ž" }, { "input": "impingement's", "output": "â Šâ â â Œâ ‘â °â žâ „â Ž" }, { "input": "impinges", "output": "â Šâ â â Œâ ‘â Ž" }, { "input": "impinging", "output": "â Šâ â â Œâ Œ" }, { "input": "impious", "output": "â Šâ â â Šâ ³â Ž" }, { "input": "impiously", "output": "â Šâ â â Šâ ³â Žâ ‡â ½" }, { "input": "impiousness's", "output": "â Šâ â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "impish", "output": "â Šâ â â Šâ ©" }, { "input": "impishly", "output": "â Šâ â â Šâ ©â ‡â ½" }, { "input": "impishness", "output": "â Šâ â â Šâ ©â °â Ž" }, { "input": "impishness's", "output": "â Šâ â â Šâ ©â °â Žâ „â Ž" }, { "input": "implacability", "output": "â Šâ â â ‡â â ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "implacability's", "output": "â Šâ â â ‡â â ‰â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "implacable", "output": "â Šâ â â ‡â â ‰â â ¼" }, { "input": "implacably", "output": "â Šâ â â ‡â â ‰â â ƒâ ‡â ½" }, { "input": "implant", "output": "â Šâ â â ‡â â â ž" }, { "input": "implant's", "output": "â Šâ â â ‡â â â žâ „â Ž" }, { "input": "implantable", "output": "â Šâ â â ‡â â â žâ â ¼" }, { "input": "implantation", "output": "â Šâ â â ‡â â â žâ  â " }, { "input": "implantation's", "output": "â Šâ â â ‡â â â žâ  â â „â Ž" }, { "input": "implanted", "output": "â Šâ â â ‡â â â žâ «" }, { "input": "implanting", "output": "â Šâ â â ‡â â â žâ Œ" }, { "input": "implants", "output": "â Šâ â â ‡â â â žâ Ž" }, { "input": "implausibilities", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "implausibility", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "implausibility's", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "implausible", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ¼" }, { "input": "implausibly", "output": "â Šâ â â ‡â â ¥â Žâ Šâ ƒâ ‡â ½" }, { "input": "implement", "output": "â Šâ â â ‡â ‘â °â ž" }, { "input": "implement's", "output": "â Šâ â â ‡â ‘â °â žâ „â Ž" }, { "input": "implementable", "output": "â Šâ â â ‡â ‘â °â žâ â ¼" }, { "input": "implementation", "output": "â Šâ â â ‡â ‘â °â žâ  â " }, { "input": "implementation's", "output": "â Šâ â â ‡â ‘â °â žâ  â â „â Ž" }, { "input": "implementations", "output": "â Šâ â â ‡â ‘â °â žâ  â â Ž" }, { "input": "implemented", "output": "â Šâ â â ‡â ‘â °â žâ «" }, { "input": "implementer", "output": "â Šâ â â ‡â ‘â °â žâ »" }, { "input": "implementing", "output": "â Šâ â â ‡â ‘â °â žâ Œ" }, { "input": "implements", "output": "â Šâ â â ‡â ‘â °â žâ Ž" }, { "input": "implicate", "output": "â Šâ â â ‡â Šâ ‰â â žâ ‘" }, { "input": "implicated", "output": "â Šâ â â ‡â Šâ ‰â â žâ «" }, { "input": "implicates", "output": "â Šâ â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "implicating", "output": "â Šâ â â ‡â Šâ ‰â â žâ Œ" }, { "input": "implication", "output": "â Šâ â â ‡â Šâ ‰â  â " }, { "input": "implication's", "output": "â Šâ â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "implications", "output": "â Šâ â â ‡â Šâ ‰â  â â Ž" }, { "input": "implicit", "output": "â Šâ â â ‡â Šâ ‰â Šâ ž" }, { "input": "implicitly", "output": "â Šâ â â ‡â Šâ ‰â Šâ žâ ‡â ½" }, { "input": "implicitness", "output": "â Šâ â â ‡â Šâ ‰â Šâ žâ °â Ž" }, { "input": "implicitness's", "output": "â Šâ â â ‡â Šâ ‰â Šâ žâ °â Žâ „â Ž" }, { "input": "implied", "output": "â Šâ â â ‡â Šâ «" }, { "input": "implies", "output": "â Šâ â â ‡â Šâ ‘â Ž" }, { "input": "implode", "output": "â Šâ â â ‡â •⠙⠑" }, { "input": "imploded", "output": "â Šâ â â ‡â •⠙⠫" }, { "input": "implodes", "output": "â Šâ â â ‡â •⠙⠑⠎" }, { "input": "imploding", "output": "â Šâ â â ‡â •⠙⠌" }, { "input": "implore", "output": "â Šâ â â ‡â •â —â ‘" }, { "input": "implored", "output": "â Šâ â â ‡â •â —â «" }, { "input": "implores", "output": "â Šâ â â ‡â •â —â ‘â Ž" }, { "input": "imploring", "output": "â Šâ â â ‡â •â —â Œ" }, { "input": "implosion", "output": "â Šâ â â ‡â •â ¨â " }, { "input": "implosion's", "output": "â Šâ â â ‡â •â ¨â â „â Ž" }, { "input": "implosions", "output": "â Šâ â â ‡â •â ¨â â Ž" }, { "input": "implosive", "output": "â Šâ â â ‡â •â Žâ Šâ §â ‘" }, { "input": "imply", "output": "â Šâ â â ‡â ½" }, { "input": "implying", "output": "â Šâ â â ‡â ½â Œ" }, { "input": "impolite", "output": "â Šâ â â •⠇⠊⠞⠑" }, { "input": "impolitely", "output": "â Šâ â â •⠇⠊⠞⠑⠇⠽" }, { "input": "impoliteness", "output": "â Šâ â â •⠇⠊⠞⠑⠰⠎" }, { "input": "impoliteness's", "output": "â Šâ â â •⠇⠊⠞⠑⠰⠎⠄⠎" }, { "input": "impolitenesses", "output": "â Šâ â â •⠇⠊⠞⠑⠰⠎⠑⠎" }, { "input": "impolitic", "output": "â Šâ â â •⠇⠊⠞⠊⠉" }, { "input": "imponderable", "output": "â Šâ â â •â â ™â »â â ¼" }, { "input": "imponderable's", "output": "â Šâ â â •â â ™â »â â ¼â „â Ž" }, { "input": "imponderables", "output": "â Šâ â â •â â ™â »â â ¼â Ž" }, { "input": "import", "output": "â Šâ â â •â —â ž" }, { "input": "import's", "output": "â Šâ â â •â —â žâ „â Ž" }, { "input": "importable", "output": "â Šâ â â •â —â žâ â ¼" }, { "input": "importance", "output": "â Šâ â â •⠗⠞⠨⠑" }, { "input": "importance's", "output": "â Šâ â â •⠗⠞⠨⠑⠄⠎" }, { "input": "important", "output": "â Šâ â â •â —â žâ â â ž" }, { "input": "importantly", "output": "â Šâ â â •â —â žâ â â žâ ‡â ½" }, { "input": "importation", "output": "â Šâ â â •â —â žâ  â " }, { "input": "importation's", "output": "â Šâ â â •â —â žâ  â â „â Ž" }, { "input": "importations", "output": "â Šâ â â •â —â žâ  â â Ž" }, { "input": "imported", "output": "â Šâ â â •â —â žâ «" }, { "input": "importer", "output": "â Šâ â â •â —â žâ »" }, { "input": "importer's", "output": "â Šâ â â •⠗⠞⠻⠄⠎" }, { "input": "importers", "output": "â Šâ â â •⠗⠞⠻⠎" }, { "input": "importing", "output": "â Šâ â â •â —â žâ Œ" }, { "input": "imports", "output": "â Šâ â â •â —â žâ Ž" }, { "input": "importunate", "output": "â Šâ â â •â —â žâ ¥â â â žâ ‘" }, { "input": "importunately", "output": "â Šâ â â •â —â žâ ¥â â â žâ ‘⠇⠽" }, { "input": "importune", "output": "â Šâ â â •â —â žâ ¥â â ‘" }, { "input": "importuned", "output": "â Šâ â â •â —â žâ ¥â â «" }, { "input": "importunes", "output": "â Šâ â â •â —â žâ ¥â â ‘â Ž" }, { "input": "importuning", "output": "â Šâ â â •â —â žâ ¥â â Œ" }, { "input": "importunity", "output": "â Šâ â â •â —â žâ ¥â â °â ½" }, { "input": "importunity's", "output": "â Šâ â â •â —â žâ ¥â â °â ½â „â Ž" }, { "input": "impose", "output": "â Šâ â â •â Žâ ‘" }, { "input": "imposed", "output": "â Šâ â â •â Žâ «" }, { "input": "imposer", "output": "â Šâ â â •â Žâ »" }, { "input": "imposer's", "output": "â Šâ â â •⠎⠻⠄⠎" }, { "input": "imposers", "output": "â Šâ â â •⠎⠻⠎" }, { "input": "imposes", "output": "â Šâ â â •â Žâ ‘â Ž" }, { "input": "imposing", "output": "â Šâ â â •â Žâ Œ" }, { "input": "imposingly", "output": "â Šâ â â •⠎⠌⠇⠽" }, { "input": "imposition", "output": "â Šâ â â •â Žâ Šâ °â " }, { "input": "imposition's", "output": "â Šâ â â •â Žâ Šâ °â â „â Ž" }, { "input": "impositions", "output": "â Šâ â â •â Žâ Šâ °â â Ž" }, { "input": "impossibilities", "output": "â Šâ â â •⠎⠎⠊⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "impossibility", "output": "â Šâ â â •⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "impossibility's", "output": "â Šâ â â •⠎⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "impossible", "output": "â Šâ â â •â Žâ Žâ Šâ ¼" }, { "input": "impossibles", "output": "â Šâ â â •⠎⠎⠊⠼⠎" }, { "input": "impossibly", "output": "â Šâ â â •⠎⠎⠊⠃⠇⠽" }, { "input": "impost", "output": "â Šâ â â •â Œ" }, { "input": "impost's", "output": "â Šâ â â •⠌⠄⠎" }, { "input": "impostor", "output": "â Šâ â â •⠌⠕⠗" }, { "input": "impostor's", "output": "â Šâ â â •⠌⠕⠗⠄⠎" }, { "input": "impostors", "output": "â Šâ â â •⠌⠕⠗⠎" }, { "input": "imposts", "output": "â Šâ â â •⠌⠎" }, { "input": "imposture", "output": "â Šâ â â •⠌⠥⠗⠑" }, { "input": "imposture's", "output": "â Šâ â â •⠌⠥⠗⠑⠄⠎" }, { "input": "impostures", "output": "â Šâ â â •⠌⠥⠗⠑⠎" }, { "input": "impotence", "output": "â Šâ â â •â žâ °â ‘" }, { "input": "impotence's", "output": "â Šâ â â •â žâ °â ‘â „â Ž" }, { "input": "impotency", "output": "â Šâ â â •⠞⠢⠉⠽" }, { "input": "impotency's", "output": "â Šâ â â •⠞⠢⠉⠽⠄⠎" }, { "input": "impotent", "output": "â Šâ â â •⠞⠢⠞" }, { "input": "impotently", "output": "â Šâ â â •⠞⠢⠞⠇⠽" }, { "input": "impound", "output": "â Šâ â â ¨â ™" }, { "input": "impounded", "output": "â Šâ â â ¨â ™â «" }, { "input": "impounding", "output": "â Šâ â â ¨â ™â Œ" }, { "input": "impounds", "output": "â Šâ â â ¨â ™â Ž" }, { "input": "impoverish", "output": "â Šâ â â •⠧⠻⠊⠩" }, { "input": "impoverished", "output": "â Šâ â â •⠧⠻⠊⠩⠫" }, { "input": "impoverishes", "output": "â Šâ â â •⠧⠻⠊⠩⠑⠎" }, { "input": "impoverishing", "output": "â Šâ â â •⠧⠻⠊⠩⠌" }, { "input": "impoverishment", "output": "â Šâ â â •⠧⠻⠊⠩⠰⠞" }, { "input": "impoverishment's", "output": "â Šâ â â •⠧⠻⠊⠩⠰⠞⠄⠎" }, { "input": "impracticable", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ¼" }, { "input": "impracticably", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ƒâ ‡â ½" }, { "input": "impractical", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ‡" }, { "input": "impracticality", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ‡â °â ½" }, { "input": "impracticality's", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "impractically", "output": "â Šâ â â —â â ‰â žâ Šâ ‰â  â ½" }, { "input": "imprecate", "output": "â Šâ â â —â ‘â ‰â â žâ ‘" }, { "input": "imprecated", "output": "â Šâ â â —â ‘â ‰â â žâ «" }, { "input": "imprecates", "output": "â Šâ â â —â ‘â ‰â â žâ ‘â Ž" }, { "input": "imprecating", "output": "â Šâ â â —â ‘â ‰â â žâ Œ" }, { "input": "imprecation", "output": "â Šâ â â —⠑⠉⠠â " }, { "input": "imprecation's", "output": "â Šâ â â —⠑⠉⠠â â „â Ž" }, { "input": "imprecations", "output": "â Šâ â â —⠑⠉⠠â â Ž" }, { "input": "imprecise", "output": "â Šâ â â —⠑⠉⠊⠎⠑" }, { "input": "imprecisely", "output": "â Šâ â â —⠑⠉⠊⠎⠑⠇⠽" }, { "input": "impreciseness", "output": "â Šâ â â —⠑⠉⠊⠎⠑⠰⠎" }, { "input": "impreciseness's", "output": "â Šâ â â —⠑⠉⠊⠎⠑⠰⠎⠄⠎" }, { "input": "imprecision", "output": "â Šâ â â —⠑⠉⠊⠨â " }, { "input": "imprecision's", "output": "â Šâ â â —⠑⠉⠊⠨â â „â Ž" }, { "input": "impregnability", "output": "â Šâ â â —â ‘â ›â â â ƒâ Šâ ‡â °â ½" }, { "input": "impregnability's", "output": "â Šâ â â —â ‘â ›â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "impregnable", "output": "â Šâ â â —â ‘â ›â â â ¼" }, { "input": "impregnably", "output": "â Šâ â â —â ‘â ›â â â ƒâ ‡â ½" }, { "input": "impregnate", "output": "â Šâ â â —â ‘â ›â â â žâ ‘" }, { "input": "impregnated", "output": "â Šâ â â —â ‘â ›â â â žâ «" }, { "input": "impregnates", "output": "â Šâ â â —â ‘â ›â â â žâ ‘â Ž" }, { "input": "impregnating", "output": "â Šâ â â —â ‘â ›â â â žâ Œ" }, { "input": "impregnation", "output": "â Šâ â â —â ‘â ›â â  â " }, { "input": "impregnation's", "output": "â Šâ â â —â ‘â ›â â  â â „â Ž" }, { "input": "impresario", "output": "â Šâ â â —⠑⠎⠜⠊⠕" }, { "input": "impresario's", "output": "â Šâ â â —⠑⠎⠜⠊⠕⠄⠎" }, { "input": "impresarios", "output": "â Šâ â â —⠑⠎⠜⠊⠕⠎" }, { "input": "impress", "output": "â Šâ â â —â ‘â Žâ Ž" }, { "input": "impress's", "output": "â Šâ â â —â ‘â Žâ Žâ „â Ž" }, { "input": "impressed", "output": "â Šâ â â —â ‘â Žâ Žâ «" }, { "input": "impresses", "output": "â Šâ â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "impressibility", "output": "â Šâ â â —⠑⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "impressibility's", "output": "â Šâ â â —⠑⠎⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "impressible", "output": "â Šâ â â —â ‘â Žâ Žâ Šâ ¼" }, { "input": "impressing", "output": "â Šâ â â —â ‘â Žâ Žâ Œ" }, { "input": "impression", "output": "â Šâ â â —â ‘â Žâ ¨â " }, { "input": "impression's", "output": "â Šâ â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "impressionability", "output": "â Šâ â â —â ‘â Žâ ¨â â â ƒâ Šâ ‡â °â ½" }, { "input": "impressionability's", "output": "â Šâ â â —â ‘â Žâ ¨â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "impressionable", "output": "â Šâ â â —â ‘â Žâ ¨â â â ¼" }, { "input": "impressionism", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Žâ " }, { "input": "impressionism's", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Žâ â „â Ž" }, { "input": "impressionist", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œ" }, { "input": "impressionist's", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œâ „â Ž" }, { "input": "impressionistic", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œâ Šâ ‰" }, { "input": "impressionists", "output": "â Šâ â â —â ‘â Žâ ¨â â Šâ Œâ Ž" }, { "input": "impressions", "output": "â Šâ â â —â ‘â Žâ ¨â â Ž" }, { "input": "impressive", "output": "â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "impressively", "output": "â Šâ â â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "impressiveness", "output": "â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "impressiveness's", "output": "â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "imprimatur", "output": "â Šâ â â —â Šâ â â žâ ¥â —" }, { "input": "imprimatur's", "output": "â Šâ â â —â Šâ â â žâ ¥â —â „â Ž" }, { "input": "imprimaturs", "output": "â Šâ â â —â Šâ â â žâ ¥â —â Ž" }, { "input": "imprint", "output": "â Šâ â â —⠔⠞" }, { "input": "imprint's", "output": "â Šâ â â —⠔⠞⠄⠎" }, { "input": "imprinted", "output": "â Šâ â â —⠔⠞⠫" }, { "input": "imprinter", "output": "â Šâ â â —⠔⠞⠻" }, { "input": "imprinter's", "output": "â Šâ â â —⠔⠞⠻⠄⠎" }, { "input": "imprinters", "output": "â Šâ â â —⠔⠞⠻⠎" }, { "input": "imprinting", "output": "â Šâ â â —⠔⠞⠌" }, { "input": "imprints", "output": "â Šâ â â —⠔⠞⠎" }, { "input": "imprison", "output": "â Šâ â â —â Šâ Žâ •â " }, { "input": "imprisoned", "output": "â Šâ â â —â Šâ Žâ •â â «" }, { "input": "imprisoning", "output": "â Šâ â â —â Šâ Žâ •â â Œ" }, { "input": "imprisonment", "output": "â Šâ â â —â Šâ Žâ •â â °â ž" }, { "input": "imprisonment's", "output": "â Šâ â â —â Šâ Žâ •â â °â žâ „â Ž" }, { "input": "imprisonments", "output": "â Šâ â â —â Šâ Žâ •â â °â žâ Ž" }, { "input": "imprisons", "output": "â Šâ â â —â Šâ Žâ •â â Ž" }, { "input": "improbabilities", "output": "â Šâ â â —â •â ƒâ â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "improbability", "output": "â Šâ â â —â •â ƒâ â ƒâ Šâ ‡â °â ½" }, { "input": "improbability's", "output": "â Šâ â â —â •â ƒâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "improbable", "output": "â Šâ â â —â •â ƒâ â ¼" }, { "input": "improbably", "output": "â Šâ â â —â •â ƒâ â ƒâ ‡â ½" }, { "input": "impromptu", "output": "â Šâ â â —â •â â â žâ ¥" }, { "input": "impromptu's", "output": "â Šâ â â —â •â â â žâ ¥â „â Ž" }, { "input": "impromptus", "output": "â Šâ â â —â •â â â žâ ¥â Ž" }, { "input": "improper", "output": "â Šâ â â —â •â â »" }, { "input": "improperly", "output": "â Šâ â â —â •â â »â ‡â ½" }, { "input": "improprieties", "output": "â Šâ â â —â •â â —â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "impropriety", "output": "â Šâ â â —â •â â —â Šâ ‘â žâ ½" }, { "input": "impropriety's", "output": "â Šâ â â —â •â â —⠊⠑⠞⠽⠄⠎" }, { "input": "improvable", "output": "â Šâ â â —â •â §â â ¼" }, { "input": "improve", "output": "â Šâ â â —â •â §â ‘" }, { "input": "improved", "output": "â Šâ â â —â •â §â «" }, { "input": "improvement", "output": "â Šâ â â —â •â §â ‘â °â ž" }, { "input": "improvement's", "output": "â Šâ â â —â •â §â ‘â °â žâ „â Ž" }, { "input": "improvements", "output": "â Šâ â â —â •â §â ‘â °â žâ Ž" }, { "input": "improves", "output": "â Šâ â â —â •â §â ‘â Ž" }, { "input": "improvidence", "output": "â Šâ â â —⠕⠧⠊⠙⠰⠑" }, { "input": "improvidence's", "output": "â Šâ â â —⠕⠧⠊⠙⠰⠑⠄⠎" }, { "input": "improvident", "output": "â Šâ â â —⠕⠧⠊⠙⠢⠞" }, { "input": "improvidently", "output": "â Šâ â â —⠕⠧⠊⠙⠢⠞⠇⠽" }, { "input": "improving", "output": "â Šâ â â —â •â §â Œ" }, { "input": "improvisation", "output": "â Šâ â â —â •â §â Šâ Žâ  â " }, { "input": "improvisation's", "output": "â Šâ â â —â •â §â Šâ Žâ  â â „â Ž" }, { "input": "improvisational", "output": "â Šâ â â —â •â §â Šâ Žâ  â â â ‡" }, { "input": "improvisations", "output": "â Šâ â â —â •â §â Šâ Žâ  â â Ž" }, { "input": "improvise", "output": "â Šâ â â —â •â §â Šâ Žâ ‘" }, { "input": "improvised", "output": "â Šâ â â —â •â §â Šâ Žâ «" }, { "input": "improviser", "output": "â Šâ â â —â •â §â Šâ Žâ »" }, { "input": "improviser's", "output": "â Šâ â â —⠕⠧⠊⠎⠻⠄⠎" }, { "input": "improvisers", "output": "â Šâ â â —⠕⠧⠊⠎⠻⠎" }, { "input": "improvises", "output": "â Šâ â â —â •â §â Šâ Žâ ‘â Ž" }, { "input": "improvising", "output": "â Šâ â â —â •â §â Šâ Žâ Œ" }, { "input": "imprudence", "output": "â Šâ â â —⠥⠙⠰⠑" }, { "input": "imprudence's", "output": "â Šâ â â —⠥⠙⠰⠑⠄⠎" }, { "input": "imprudent", "output": "â Šâ â â —⠥⠙⠢⠞" }, { "input": "imps", "output": "â Šâ â â Ž" }, { "input": "impudence", "output": "â Šâ â â ¥â ™â °â ‘" }, { "input": "impudence's", "output": "â Šâ â â ¥â ™â °â ‘â „â Ž" }, { "input": "impudent", "output": "â Šâ â â ¥â ™â ¢â ž" }, { "input": "impudently", "output": "â Šâ â â ¥â ™â ¢â žâ ‡â ½" }, { "input": "impugn", "output": "â Šâ â â ¥â ›â " }, { "input": "impugned", "output": "â Šâ â â ¥â ›â â «" }, { "input": "impugner", "output": "â Šâ â â ¥â ›â â »" }, { "input": "impugner's", "output": "â Šâ â â ¥â ›â â »â „â Ž" }, { "input": "impugners", "output": "â Šâ â â ¥â ›â â »â Ž" }, { "input": "impugning", "output": "â Šâ â â ¥â ›â â Œ" }, { "input": "impugns", "output": "â Šâ â â ¥â ›â â Ž" }, { "input": "impulse", "output": "â Šâ â â ¥â ‡â Žâ ‘" }, { "input": "impulse's", "output": "â Šâ â â ¥â ‡â Žâ ‘â „â Ž" }, { "input": "impulsed", "output": "â Šâ â â ¥â ‡â Žâ «" }, { "input": "impulses", "output": "â Šâ â â ¥â ‡â Žâ ‘â Ž" }, { "input": "impulsing", "output": "â Šâ â â ¥â ‡â Žâ Œ" }, { "input": "impulsion", "output": "â Šâ â â ¥â ‡â ¨â " }, { "input": "impulsion's", "output": "â Šâ â â ¥â ‡â ¨â â „â Ž" }, { "input": "impulsive", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "impulsively", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘⠇⠽" }, { "input": "impulsiveness", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘â °â Ž" }, { "input": "impulsiveness's", "output": "â Šâ â â ¥â ‡â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "impunity", "output": "â Šâ â â ¥â â °â ½" }, { "input": "impunity's", "output": "â Šâ â â ¥â â °â ½â „â Ž" }, { "input": "impure", "output": "â Šâ â â ¥â —â ‘" }, { "input": "impurely", "output": "â Šâ â â ¥â —⠑⠇⠽" }, { "input": "impurer", "output": "â Šâ â â ¥â —â »" }, { "input": "impurest", "output": "â Šâ â â ¥â —â ‘â Œ" }, { "input": "impurities", "output": "â Šâ â â ¥â —â Šâ žâ Šâ ‘â Ž" }, { "input": "impurity", "output": "â Šâ â â ¥â —â °â ½" }, { "input": "impurity's", "output": "â Šâ â â ¥â —⠰⠽⠄⠎" }, { "input": "imputable", "output": "â Šâ â â ¥â žâ â ¼" }, { "input": "imputation", "output": "â Šâ â â ¥â žâ  â " }, { "input": "imputation's", "output": "â Šâ â â ¥â žâ  â â „â Ž" }, { "input": "imputations", "output": "â Šâ â â ¥â žâ  â â Ž" }, { "input": "impute", "output": "â Šâ â â ¥â žâ ‘" }, { "input": "imputed", "output": "â Šâ â â ¥â žâ «" }, { "input": "imputes", "output": "â Šâ â â ¥â žâ ‘â Ž" }, { "input": "imputing", "output": "â Šâ â â ¥â žâ Œ" }, { "input": "in", "output": "â ”" }, { "input": "in's", "output": "â Šâ â „â Ž" }, { "input": "inabilities", "output": "â ”â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "inability", "output": "â ”â â ƒâ Šâ ‡â °â ½" }, { "input": "inability's", "output": "â ”â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inaccessibility", "output": "â ”â â ’⠑⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "inaccessibility's", "output": "â ”â â ’⠑⠎⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "inaccessible", "output": "â ”â â ’â ‘â Žâ Žâ Šâ ¼" }, { "input": "inaccessibly", "output": "â ”â â ’⠑⠎⠎⠊⠃⠇⠽" }, { "input": "inaccuracies", "output": "â ”â â ’⠥⠗â â ‰â Šâ ‘â Ž" }, { "input": "inaccuracy", "output": "â ”â â ’⠥⠗â â ‰â ½" }, { "input": "inaccuracy's", "output": "â ”â â ’⠥⠗â â ‰â ½â „â Ž" }, { "input": "inaccurate", "output": "â ”â â ’⠥⠗â â žâ ‘" }, { "input": "inaccurately", "output": "â ”â â ’⠥⠗â â žâ ‘⠇⠽" }, { "input": "inaction", "output": "â ”â â ‰â °â " }, { "input": "inaction's", "output": "â ”â â ‰â °â â „â Ž" }, { "input": "inactivate", "output": "â ”â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "inactivated", "output": "â ”â â ‰â žâ Šâ §â â žâ «" }, { "input": "inactivates", "output": "â ”â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "inactivating", "output": "â ”â â ‰â žâ Šâ §â â žâ Œ" }, { "input": "inactivation", "output": "â ”â â ‰â žâ Šâ §â  â " }, { "input": "inactivation's", "output": "â ”â â ‰â žâ Šâ §â  â â „â Ž" }, { "input": "inactive", "output": "â ”â â ‰â žâ Šâ §â ‘" }, { "input": "inactively", "output": "â ”â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "inactivity", "output": "â ”â â ‰â žâ Šâ §â °â ½" }, { "input": "inactivity's", "output": "â ”â â ‰â žâ Šâ §â °â ½â „â Ž" }, { "input": "inadequacies", "output": "â ”â â ™â ‘â Ÿâ ¥â â ‰â Šâ ‘â Ž" }, { "input": "inadequacy", "output": "â ”â â ™â ‘â Ÿâ ¥â â ‰â ½" }, { "input": "inadequacy's", "output": "â ”â â ™â ‘â Ÿâ ¥â â ‰â ½â „â Ž" }, { "input": "inadequate", "output": "â ”â â ™â ‘â Ÿâ ¥â â žâ ‘" }, { "input": "inadequately", "output": "â ”â â ™â ‘â Ÿâ ¥â â žâ ‘⠇⠽" }, { "input": "inadmissibility", "output": "â ”â â ™â â Šâ Žâ Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "inadmissibility's", "output": "â ”â â ™â â Šâ Žâ Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inadmissible", "output": "â ”â â ™â â Šâ Žâ Žâ Šâ ¼" }, { "input": "inadvertence", "output": "â ”â â ™â §â »â žâ °â ‘" }, { "input": "inadvertence's", "output": "â ”â â ™â §â »â žâ °â ‘â „â Ž" }, { "input": "inadvertent", "output": "â ”â â ™â §â »â žâ ¢â ž" }, { "input": "inadvertently", "output": "â ”â â ™â §â »â žâ ¢â žâ ‡â ½" }, { "input": "inadvisability", "output": "â ”â â ™â §â Šâ Žâ â ƒâ Šâ ‡â °â ½" }, { "input": "inadvisability's", "output": "â ”â â ™â §â Šâ Žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inadvisable", "output": "â ”â â ™â §â Šâ Žâ â ¼" }, { "input": "inalienability", "output": "â ”â â ‡â Šâ ¢â â ƒâ Šâ ‡â °â ½" }, { "input": "inalienability's", "output": "â ”â â ‡â Šâ ¢â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inalienable", "output": "â ”â â ‡â Šâ ¢â â ¼" }, { "input": "inalienably", "output": "â ”â â ‡â Šâ ¢â â ƒâ ‡â ½" }, { "input": "inamorata", "output": "â ”â â â •â —â â žâ " }, { "input": "inamorata's", "output": "â ”â â â •â —â â žâ â „â Ž" }, { "input": "inamoratas", "output": "â ”â â â •â —â â žâ â Ž" }, { "input": "inane", "output": "â ”â â â ‘" }, { "input": "inanely", "output": "â ”â â â ‘⠇⠽" }, { "input": "inaner", "output": "â ”â â â »" }, { "input": "inanest", "output": "â ”â â â ‘â Œ" }, { "input": "inanimate", "output": "â ”â â â Šâ â â žâ ‘" }, { "input": "inanimately", "output": "â ”â â â Šâ â â žâ ‘⠇⠽" }, { "input": "inanimateness", "output": "â ”â â â Šâ â â žâ ‘â °â Ž" }, { "input": "inanimateness's", "output": "â ”â â â Šâ â â žâ ‘â °â Žâ „â Ž" }, { "input": "inanities", "output": "â ”â â â Šâ žâ Šâ ‘â Ž" }, { "input": "inanity", "output": "â ”â â â °â ½" }, { "input": "inanity's", "output": "â ”â â â °â ½â „â Ž" }, { "input": "inapplicable", "output": "â ”â â â â ‡â Šâ ‰â â ¼" }, { "input": "inappreciable", "output": "â ”â â â â —⠑⠉⠊â â ¼" }, { "input": "inappreciably", "output": "â ”â â â â —⠑⠉⠊â â ƒâ ‡â ½" }, { "input": "inapproachable", "output": "â ”â â â â —â •â â ¡â â ¼" }, { "input": "inappropriate", "output": "â ”â â â â —â •â â —â Šâ â žâ ‘" }, { "input": "inappropriately", "output": "â ”â â â â —â •â â —â Šâ â žâ ‘⠇⠽" }, { "input": "inappropriateness's", "output": "â ”â â â â —â •â â —â Šâ â žâ ‘â °â Žâ „â Ž" }, { "input": "inapt", "output": "â ”â â â ž" }, { "input": "inaptly", "output": "â ”â â â žâ ‡â ½" }, { "input": "inaptness", "output": "â ”â â â žâ °â Ž" }, { "input": "inaptness's", "output": "â ”â â â žâ °â Žâ „â Ž" }, { "input": "inarguable", "output": "⠔⠜⠛⠥â â ¼" }, { "input": "inarticulate", "output": "⠔⠜⠞⠊⠉⠥⠇â â žâ ‘" }, { "input": "inarticulately", "output": "⠔⠜⠞⠊⠉⠥⠇â â žâ ‘⠇⠽" }, { "input": "inarticulateness's", "output": "⠔⠜⠞⠊⠉⠥⠇â â žâ ‘â °â Žâ „â Ž" }, { "input": "inartistic", "output": "⠔⠜⠞⠊⠌⠊⠉" }, { "input": "inasmuch", "output": "â ”â â Žâ â ¡" }, { "input": "inattention", "output": "â ”â â žâ žâ ¢â °â " }, { "input": "inattention's", "output": "â ”â â žâ žâ ¢â °â â „â Ž" }, { "input": "inattentive", "output": "â ”â â žâ žâ ¢â žâ Šâ §â ‘" }, { "input": "inattentiveness", "output": "â ”â â žâ žâ ¢â žâ Šâ §â ‘â °â Ž" }, { "input": "inattentiveness's", "output": "â ”â â žâ žâ ¢â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "inaudibility's", "output": "â ”â â ¥â ™â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inaudible", "output": "â ”â â ¥â ™â Šâ ¼" }, { "input": "inaudibly", "output": "â ”â â ¥â ™â Šâ ƒâ ‡â ½" }, { "input": "inaugural", "output": "â ”â â ¥â ›â ¥â —â â ‡" }, { "input": "inaugural's", "output": "â ”â â ¥â ›â ¥â —â â ‡â „â Ž" }, { "input": "inaugurals", "output": "â ”â â ¥â ›â ¥â —â â ‡â Ž" }, { "input": "inaugurate", "output": "â ”â â ¥â ›â ¥â —â â žâ ‘" }, { "input": "inaugurated", "output": "â ”â â ¥â ›â ¥â —â â žâ «" }, { "input": "inaugurates", "output": "â ”â â ¥â ›â ¥â —â â žâ ‘â Ž" }, { "input": "inaugurating", "output": "â ”â â ¥â ›â ¥â —â â žâ Œ" }, { "input": "inauguration", "output": "â ”â â ¥â ›â ¥â —â  â " }, { "input": "inauguration's", "output": "â ”â â ¥â ›â ¥â —â  â â „â Ž" }, { "input": "inaugurations", "output": "â ”â â ¥â ›â ¥â —â  â â Ž" }, { "input": "inauspicious", "output": "â ”â â ¥â Žâ â Šâ ‰â Šâ ³â Ž" }, { "input": "inauthentic", "output": "â ”â â ¥â ®â â žâ Šâ ‰" }, { "input": "inboard", "output": "⠔⠃⠕⠜⠙" }, { "input": "inboard's", "output": "⠔⠃⠕⠜⠙⠄⠎" }, { "input": "inboards", "output": "⠔⠃⠕⠜⠙⠎" }, { "input": "inborn", "output": "⠔⠃⠕⠗â " }, { "input": "inbound", "output": "⠔⠃⠨⠙" }, { "input": "inbred", "output": "⠔⠃⠗⠫" }, { "input": "inbreed", "output": "⠔⠃⠗⠑⠫" }, { "input": "inbreeding", "output": "⠔⠃⠗⠑⠫⠌" }, { "input": "inbreeding's", "output": "⠔⠃⠗⠑⠫⠌⠄⠎" }, { "input": "inbreeds", "output": "⠔⠃⠗⠑⠫⠎" }, { "input": "inbuilt", "output": "⠔⠃⠥⠊⠇⠞" }, { "input": "incalculable", "output": "⠔⠉â â ‡â ‰â ¥â ‡â â ¼" }, { "input": "incalculably", "output": "⠔⠉â â ‡â ‰â ¥â ‡â â ƒâ ‡â ½" }, { "input": "incandescence", "output": "⠔⠉⠯⠑⠎⠉⠰⠑" }, { "input": "incandescence's", "output": "⠔⠉⠯⠑⠎⠉⠰⠑⠄⠎" }, { "input": "incandescent", "output": "⠔⠉⠯⠑⠎⠉⠢⠞" }, { "input": "incandescently", "output": "⠔⠉⠯⠑⠎⠉⠢⠞⠇⠽" }, { "input": "incantation", "output": "⠔⠉â â â žâ  â " }, { "input": "incantation's", "output": "⠔⠉â â â žâ  â â „â Ž" }, { "input": "incantations", "output": "⠔⠉â â â žâ  â â Ž" }, { "input": "incapability", "output": "⠔⠉â â â â ƒâ Šâ ‡â °â ½" }, { "input": "incapability's", "output": "⠔⠉â â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "incapable", "output": "⠔⠉â â â â ¼" }, { "input": "incapably", "output": "⠔⠉â â â â ƒâ ‡â ½" }, { "input": "incapacitate", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ ‘" }, { "input": "incapacitated", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ «" }, { "input": "incapacitates", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ ‘â Ž" }, { "input": "incapacitating", "output": "⠔⠉â â â â ‰â Šâ žâ â žâ Œ" }, { "input": "incapacity", "output": "⠔⠉â â â â ‰â °â ½" }, { "input": "incapacity's", "output": "⠔⠉â â â â ‰â °â ½â „â Ž" }, { "input": "incarcerate", "output": "⠔⠉⠜⠉⠻â â žâ ‘" }, { "input": "incarcerated", "output": "⠔⠉⠜⠉⠻â â žâ «" }, { "input": "incarcerates", "output": "⠔⠉⠜⠉⠻â â žâ ‘â Ž" }, { "input": "incarcerating", "output": "⠔⠉⠜⠉⠻â â žâ Œ" }, { "input": "incarceration", "output": "⠔⠉⠜⠉⠻⠠â " }, { "input": "incarceration's", "output": "⠔⠉⠜⠉⠻⠠â â „â Ž" }, { "input": "incarcerations", "output": "⠔⠉⠜⠉⠻⠠â â Ž" }, { "input": "incarnadine", "output": "⠔⠉⠜â â â ™â ”â ‘" }, { "input": "incarnadined", "output": "⠔⠉⠜â â â ™â ”â «" }, { "input": "incarnadines", "output": "⠔⠉⠜â â â ™â ”â ‘â Ž" }, { "input": "incarnadining", "output": "⠔⠉⠜â â â ™â ”â Œ" }, { "input": "incarnate", "output": "⠔⠉⠜â â â žâ ‘" }, { "input": "incarnated", "output": "⠔⠉⠜â â â žâ «" }, { "input": "incarnates", "output": "⠔⠉⠜â â â žâ ‘â Ž" }, { "input": "incarnating", "output": "⠔⠉⠜â â â žâ Œ" }, { "input": "incarnation", "output": "⠔⠉⠜â â  â " }, { "input": "incarnation's", "output": "⠔⠉⠜â â  â â „â Ž" }, { "input": "incarnations", "output": "⠔⠉⠜â â  â â Ž" }, { "input": "incautious", "output": "⠔⠉â â ¥â žâ Šâ ³â Ž" }, { "input": "incendiaries", "output": "⠔⠉⠢⠙⠊⠜⠊⠑⠎" }, { "input": "incendiary", "output": "⠔⠉⠢⠙⠊⠜⠽" }, { "input": "incendiary's", "output": "⠔⠉⠢⠙⠊⠜⠽⠄⠎" }, { "input": "incense", "output": "⠔⠉⠢⠎⠑" }, { "input": "incense's", "output": "⠔⠉⠢⠎⠑⠄⠎" }, { "input": "incensed", "output": "⠔⠉⠢⠎⠫" }, { "input": "incenses", "output": "⠔⠉⠢⠎⠑⠎" }, { "input": "incensing", "output": "⠔⠉⠢⠎⠌" }, { "input": "incentive", "output": "⠔⠉⠢⠞⠊⠧⠑" }, { "input": "incentive's", "output": "⠔⠉⠢⠞⠊⠧⠑⠄⠎" }, { "input": "incentives", "output": "⠔⠉⠢⠞⠊⠧⠑⠎" }, { "input": "inception", "output": "⠔⠉⠑â â °â " }, { "input": "inception's", "output": "⠔⠉⠑â â °â â „â Ž" }, { "input": "inceptions", "output": "⠔⠉⠑â â °â â Ž" }, { "input": "incertitude", "output": "⠔⠉⠻⠞⠊⠞⠥⠙⠑" }, { "input": "incertitude's", "output": "⠔⠉⠻⠞⠊⠞⠥⠙⠑⠄⠎" }, { "input": "incessant", "output": "⠔⠉⠑⠎⠎â â â ž" }, { "input": "incessantly", "output": "⠔⠉⠑⠎⠎â â â žâ ‡â ½" }, { "input": "incest", "output": "⠔⠉⠑⠌" }, { "input": "incest's", "output": "⠔⠉⠑⠌⠄⠎" }, { "input": "incestuous", "output": "⠔⠉⠑⠌⠥⠳⠎" }, { "input": "incestuousness's", "output": "⠔⠉⠑⠌⠥⠳⠎⠰⠎⠄⠎" }, { "input": "inch", "output": "⠔⠡" }, { "input": "inch's", "output": "⠔⠡⠄⠎" }, { "input": "inched", "output": "⠔⠡⠫" }, { "input": "inches", "output": "⠔⠡⠑⠎" }, { "input": "inching", "output": "⠔⠡⠌" }, { "input": "inchoate", "output": "⠔⠡⠕â â žâ ‘" }, { "input": "inchworm", "output": "⠔⠡⠺⠕⠗â " }, { "input": "inchworm's", "output": "⠔⠡⠺⠕⠗â â „â Ž" }, { "input": "inchworms", "output": "⠔⠡⠺⠕⠗â â Ž" }, { "input": "incidence", "output": "⠔⠉⠊⠙⠰⠑" }, { "input": "incidence's", "output": "⠔⠉⠊⠙⠰⠑⠄⠎" }, { "input": "incidences", "output": "⠔⠉⠊⠙⠰⠑⠎" }, { "input": "incident", "output": "⠔⠉⠊⠙⠢⠞" }, { "input": "incident's", "output": "⠔⠉⠊⠙⠢⠞⠄⠎" }, { "input": "incidental", "output": "⠔⠉⠊⠙⠢⠞â â ‡" }, { "input": "incidental's", "output": "⠔⠉⠊⠙⠢⠞â â ‡â „â Ž" }, { "input": "incidentally", "output": "⠔⠉⠊⠙⠢⠞⠠⠽" }, { "input": "incidentals", "output": "⠔⠉⠊⠙⠢⠞â â ‡â Ž" }, { "input": "incidents", "output": "⠔⠉⠊⠙⠢⠞⠎" }, { "input": "incinerate", "output": "⠔⠉⠔⠻â â žâ ‘" }, { "input": "incinerated", "output": "⠔⠉⠔⠻â â žâ «" }, { "input": "incinerates", "output": "⠔⠉⠔⠻â â žâ ‘â Ž" }, { "input": "incinerating", "output": "⠔⠉⠔⠻â â žâ Œ" }, { "input": "incineration", "output": "⠔⠉⠔⠻⠠â " }, { "input": "incineration's", "output": "⠔⠉⠔⠻⠠â â „â Ž" }, { "input": "incinerator", "output": "⠔⠉⠔⠻â â žâ •â —" }, { "input": "incinerator's", "output": "⠔⠉⠔⠻â â žâ •â —â „â Ž" }, { "input": "incinerators", "output": "⠔⠉⠔⠻â â žâ •â —â Ž" }, { "input": "incipience", "output": "⠔⠉⠊â â Šâ °â ‘" }, { "input": "incipience's", "output": "⠔⠉⠊â â Šâ °â ‘â „â Ž" }, { "input": "incipient", "output": "⠔⠉⠊â â Šâ ¢â ž" }, { "input": "incipiently", "output": "⠔⠉⠊â â Šâ ¢â žâ ‡â ½" }, { "input": "incise", "output": "⠔⠉⠊⠎⠑" }, { "input": "incised", "output": "⠔⠉⠊⠎⠫" }, { "input": "incises", "output": "⠔⠉⠊⠎⠑⠎" }, { "input": "incising", "output": "⠔⠉⠊⠎⠌" }, { "input": "incision", "output": "⠔⠉⠊⠨â " }, { "input": "incision's", "output": "⠔⠉⠊⠨â â „â Ž" }, { "input": "incisions", "output": "⠔⠉⠊⠨â â Ž" }, { "input": "incisive", "output": "⠔⠉⠊⠎⠊⠧⠑" }, { "input": "incisively", "output": "⠔⠉⠊⠎⠊⠧⠑⠇⠽" }, { "input": "incisiveness", "output": "⠔⠉⠊⠎⠊⠧⠑⠰⠎" }, { "input": "incisiveness's", "output": "⠔⠉⠊⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "incisor", "output": "⠔⠉⠊⠎⠕⠗" }, { "input": "incisor's", "output": "⠔⠉⠊⠎⠕⠗⠄⠎" }, { "input": "incisors", "output": "⠔⠉⠊⠎⠕⠗⠎" }, { "input": "incite", "output": "⠔⠉⠊⠞⠑" }, { "input": "incited", "output": "⠔⠉⠊⠞⠫" }, { "input": "incitement", "output": "⠔⠉⠊⠞⠑⠰⠞" }, { "input": "incitement's", "output": "⠔⠉⠊⠞⠑⠰⠞⠄⠎" }, { "input": "incitements", "output": "⠔⠉⠊⠞⠑⠰⠞⠎" }, { "input": "inciter", "output": "⠔⠉⠊⠞⠻" }, { "input": "inciter's", "output": "⠔⠉⠊⠞⠻⠄⠎" }, { "input": "inciters", "output": "⠔⠉⠊⠞⠻⠎" }, { "input": "incites", "output": "⠔⠉⠊⠞⠑⠎" }, { "input": "inciting", "output": "⠔⠉⠊⠞⠌" }, { "input": "incivilities", "output": "⠔⠉⠊⠧⠊⠇⠊⠞⠊⠑⠎" }, { "input": "incivility", "output": "⠔⠉⠊⠧⠊⠇⠰⠽" }, { "input": "incivility's", "output": "⠔⠉⠊⠧⠊⠇⠰⠽⠄⠎" }, { "input": "inclemency", "output": "⠔⠉⠇⠑â â ¢â ‰â ½" }, { "input": "inclemency's", "output": "⠔⠉⠇⠑â â ¢â ‰â ½â „â Ž" }, { "input": "inclement", "output": "⠔⠉⠇⠑⠰⠞" }, { "input": "inclination", "output": "⠔⠉⠇⠔⠠â " }, { "input": "inclination's", "output": "⠔⠉⠇⠔⠠â â „â Ž" }, { "input": "inclinations", "output": "⠔⠉⠇⠔⠠â â Ž" }, { "input": "incline", "output": "⠔⠉⠇⠔⠑" }, { "input": "incline's", "output": "⠔⠉⠇⠔⠑⠄⠎" }, { "input": "inclined", "output": "⠔⠉⠇⠔⠫" }, { "input": "inclines", "output": "⠔⠉⠇⠔⠑⠎" }, { "input": "inclining", "output": "⠔⠉⠇⠔⠌" }, { "input": "include", "output": "⠔⠉⠇⠥⠙⠑" }, { "input": "included", "output": "⠔⠉⠇⠥⠙⠫" }, { "input": "includes", "output": "⠔⠉⠇⠥⠙⠑⠎" }, { "input": "including", "output": "⠔⠉⠇⠥⠙⠌" }, { "input": "inclusion", "output": "⠔⠉⠇⠥⠨â " }, { "input": "inclusion's", "output": "⠔⠉⠇⠥⠨â â „â Ž" }, { "input": "inclusions", "output": "⠔⠉⠇⠥⠨â â Ž" }, { "input": "inclusive", "output": "⠔⠉⠇⠥⠎⠊⠧⠑" }, { "input": "inclusively", "output": "⠔⠉⠇⠥⠎⠊⠧⠑⠇⠽" }, { "input": "inclusiveness", "output": "⠔⠉⠇⠥⠎⠊⠧⠑⠰⠎" }, { "input": "inclusiveness's", "output": "⠔⠉⠇⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "incognito", "output": "⠔⠉⠕⠛â â Šâ žâ •" }, { "input": "incognito's", "output": "⠔⠉⠕⠛â â Šâ žâ •â „â Ž" }, { "input": "incognitos", "output": "⠔⠉⠕⠛â â Šâ žâ •â Ž" }, { "input": "incoherence", "output": "⠔⠉⠕⠓⠻⠰⠑" }, { "input": "incoherence's", "output": "⠔⠉⠕⠓⠻⠰⠑⠄⠎" }, { "input": "incoherent", "output": "⠔⠉⠕⠓⠻⠢⠞" }, { "input": "incoherently", "output": "⠔⠉⠕⠓⠻⠢⠞⠇⠽" }, { "input": "incombustible", "output": "⠔⠉⠕â â ƒâ ¥â Œâ Šâ ¼" }, { "input": "income", "output": "⠔⠉⠕â â ‘" }, { "input": "income's", "output": "⠔⠉⠕â â ‘â „â Ž" }, { "input": "incomes", "output": "⠔⠉⠕â â ‘â Ž" }, { "input": "incoming", "output": "⠔⠉⠕â â Œ" }, { "input": "incommensurate", "output": "⠔⠉⠕â â â ¢â Žâ ¥â —â â žâ ‘" }, { "input": "incommensurately", "output": "⠔⠉⠕â â â ¢â Žâ ¥â —â â žâ ‘⠇⠽" }, { "input": "incommode", "output": "⠔⠉⠕â â â •⠙⠑" }, { "input": "incommoded", "output": "⠔⠉⠕â â â •⠙⠫" }, { "input": "incommodes", "output": "⠔⠉⠕â â â •⠙⠑⠎" }, { "input": "incommoding", "output": "⠔⠉⠕â â â •⠙⠌" }, { "input": "incommodious", "output": "⠔⠉⠕â â â •⠙⠊⠳⠎" }, { "input": "incommunicable", "output": "⠔⠉⠕â â â ¥â â Šâ ‰â â ¼" }, { "input": "incommunicado", "output": "⠔⠉⠕â â â ¥â â Šâ ‰â â ™â •" }, { "input": "incomparable", "output": "⠔⠉⠕â â â œâ â ¼" }, { "input": "incomparably", "output": "⠔⠉⠕â â â œâ â ƒâ ‡â ½" }, { "input": "incompatibilities", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "incompatibility", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "incompatibility's", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "incompatible", "output": "⠔⠉⠕â â â â žâ Šâ ¼" }, { "input": "incompatible's", "output": "⠔⠉⠕â â â â žâ Šâ ¼â „â Ž" }, { "input": "incompatibles", "output": "⠔⠉⠕â â â â žâ Šâ ¼â Ž" }, { "input": "incompatibly", "output": "⠔⠉⠕â â â â žâ Šâ ƒâ ‡â ½" }, { "input": "incompetence", "output": "⠔⠉⠕â â â ‘â žâ °â ‘" }, { "input": "incompetence's", "output": "⠔⠉⠕â â â ‘â žâ °â ‘â „â Ž" }, { "input": "incompetency", "output": "⠔⠉⠕â â â ‘⠞⠢⠉⠽" }, { "input": "incompetency's", "output": "⠔⠉⠕â â â ‘⠞⠢⠉⠽⠄⠎" }, { "input": "incompetent", "output": "⠔⠉⠕â â â ‘⠞⠢⠞" }, { "input": "incompetent's", "output": "⠔⠉⠕â â â ‘⠞⠢⠞⠄⠎" }, { "input": "incompetently", "output": "⠔⠉⠕â â â ‘⠞⠢⠞⠇⠽" }, { "input": "incompetents", "output": "⠔⠉⠕â â â ‘⠞⠢⠞⠎" }, { "input": "incomplete", "output": "⠔⠉⠕â â â ‡â ‘â žâ ‘" }, { "input": "incompletely", "output": "⠔⠉⠕â â â ‡â ‘⠞⠑⠇⠽" }, { "input": "incompleteness", "output": "⠔⠉⠕â â â ‡â ‘â žâ ‘â °â Ž" }, { "input": "incompleteness's", "output": "⠔⠉⠕â â â ‡â ‘â žâ ‘â °â Žâ „â Ž" }, { "input": "incomprehensibility's", "output": "⠔⠉⠕â â â —⠑⠓⠢⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "incomprehensible", "output": "⠔⠉⠕â â â —⠑⠓⠢⠎⠊⠼" }, { "input": "incomprehensibly", "output": "⠔⠉⠕â â â —⠑⠓⠢⠎⠊⠃⠇⠽" }, { "input": "incomprehension's", "output": "⠔⠉⠕â â â —⠑⠓⠢⠨â â „â Ž" }, { "input": "inconceivability", "output": "⠔⠉⠕â â ‰â ‘â Šâ §â â ƒâ Šâ ‡â °â ½" }, { "input": "inconceivability's", "output": "⠔⠉⠕â â ‰â ‘â Šâ §â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inconceivable", "output": "⠔⠉⠕â â ‰â ‘â Šâ §â â ¼" }, { "input": "inconceivably", "output": "⠔⠉⠕â â ‰â ‘â Šâ §â â ƒâ ‡â ½" }, { "input": "inconclusive", "output": "⠔⠉⠕â â ‰â ‡â ¥â Žâ Šâ §â ‘" }, { "input": "inconclusively", "output": "⠔⠉⠕â â ‰â ‡â ¥â Žâ Šâ §â ‘⠇⠽" }, { "input": "inconclusiveness", "output": "⠔⠉⠕â â ‰â ‡â ¥â Žâ Šâ §â ‘â °â Ž" }, { "input": "inconclusiveness's", "output": "⠔⠉⠕â â ‰â ‡â ¥â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "incongruities", "output": "⠔⠉⠕â â ›â —⠥⠊⠞⠊⠑⠎" }, { "input": "incongruity", "output": "⠔⠉⠕â â ›â —⠥⠰⠽" }, { "input": "incongruity's", "output": "⠔⠉⠕â â ›â —⠥⠰⠽⠄⠎" }, { "input": "incongruous", "output": "⠔⠉⠕â â ›â —⠥⠳⠎" }, { "input": "incongruously", "output": "⠔⠉⠕â â ›â —⠥⠳⠎⠇⠽" }, { "input": "incongruousness", "output": "⠔⠉⠕â â ›â —⠥⠳⠎⠰⠎" }, { "input": "incongruousness's", "output": "⠔⠉⠕â â ›â —⠥⠳⠎⠰⠎⠄⠎" }, { "input": "inconsequential", "output": "⠔⠉⠕â â Žâ ‘⠟⠥⠢⠞⠊â â ‡" }, { "input": "inconsequentially", "output": "⠔⠉⠕â â Žâ ‘⠟⠥⠢⠞⠊⠠⠽" }, { "input": "inconsiderable", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â ¼" }, { "input": "inconsiderate", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘" }, { "input": "inconsiderately", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘⠇⠽" }, { "input": "inconsiderateness", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘â °â Ž" }, { "input": "inconsiderateness's", "output": "⠔⠉⠕â â Žâ Šâ ™â »â â žâ ‘â °â Žâ „â Ž" }, { "input": "inconsideration", "output": "⠔⠉⠕â â Žâ Šâ ™â »â  â " }, { "input": "inconsideration's", "output": "⠔⠉⠕â â Žâ Šâ ™â »â  â â „â Ž" }, { "input": "inconsistencies", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ‰â Šâ ‘â Ž" }, { "input": "inconsistency", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ‰â ½" }, { "input": "inconsistency's", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ‰â ½â „â Ž" }, { "input": "inconsistent", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â ž" }, { "input": "inconsistently", "output": "⠔⠉⠕â â Žâ Šâ Œâ ¢â žâ ‡â ½" }, { "input": "inconsolable", "output": "⠔⠉⠕â â Žâ •â ‡â â ¼" }, { "input": "inconspicuous", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Ž" }, { "input": "inconspicuously", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Žâ ‡â ½" }, { "input": "inconspicuousness", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Žâ °â Ž" }, { "input": "inconspicuousness's", "output": "⠔⠉⠕â â Žâ â Šâ ‰â ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "inconstancy", "output": "⠔⠉⠕â â Œâ â â ‰â ½" }, { "input": "inconstancy's", "output": "⠔⠉⠕â â Œâ â â ‰â ½â „â Ž" }, { "input": "inconstant", "output": "⠔⠉⠕â â Œâ â â ž" }, { "input": "inconstantly", "output": "⠔⠉⠕â â Œâ â â žâ ‡â ½" }, { "input": "incontestability", "output": "⠔⠉⠕â â žâ ‘â Œâ â ƒâ Šâ ‡â °â ½" }, { "input": "incontestability's", "output": "⠔⠉⠕â â žâ ‘â Œâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "incontestable", "output": "⠔⠉⠕â â žâ ‘â Œâ â ¼" }, { "input": "incontestably", "output": "⠔⠉⠕â â žâ ‘â Œâ â ƒâ ‡â ½" }, { "input": "incontinence", "output": "⠔⠉⠕â â žâ ”â °â ‘" }, { "input": "incontinence's", "output": "⠔⠉⠕â â žâ ”â °â ‘â „â Ž" }, { "input": "incontinent", "output": "⠔⠉⠕â â žâ ”⠢⠞" }, { "input": "incontrovertible", "output": "⠔⠉⠕â â žâ —⠕⠧⠻⠞⠊⠼" }, { "input": "incontrovertibly", "output": "⠔⠉⠕â â žâ —⠕⠧⠻⠞⠊⠃⠇⠽" }, { "input": "inconvenience", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘" }, { "input": "inconvenience's", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘â „â Ž" }, { "input": "inconvenienced", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘â ™" }, { "input": "inconveniences", "output": "⠔⠉⠕â â §â ¢â Šâ °â ‘â Ž" }, { "input": "inconveniencing", "output": "⠔⠉⠕â â §â ¢â Šâ ¢â ‰â Œ" }, { "input": "inconvenient", "output": "⠔⠉⠕â â §â ¢â Šâ ¢â ž" }, { "input": "inconveniently", "output": "⠔⠉⠕â â §â ¢â Šâ ¢â žâ ‡â ½" }, { "input": "incorporate", "output": "⠔⠉⠕⠗â â •â —â â žâ ‘" }, { "input": "incorporated", "output": "⠔⠉⠕⠗â â •â —â â žâ «" }, { "input": "incorporates", "output": "⠔⠉⠕⠗â â •â —â â žâ ‘â Ž" }, { "input": "incorporating", "output": "⠔⠉⠕⠗â â •â —â â žâ Œ" }, { "input": "incorporation", "output": "⠔⠉⠕⠗â â •â —â  â " }, { "input": "incorporation's", "output": "⠔⠉⠕⠗â â •â —â  â â „â Ž" }, { "input": "incorporeal", "output": "⠔⠉⠕⠗â â •â —â ‚â ‡" }, { "input": "incorrect", "output": "⠔⠉⠕⠗⠗⠑⠉⠞" }, { "input": "incorrectly", "output": "⠔⠉⠕⠗⠗⠑⠉⠞⠇⠽" }, { "input": "incorrectness", "output": "⠔⠉⠕⠗⠗⠑⠉⠞⠰⠎" }, { "input": "incorrectness's", "output": "⠔⠉⠕⠗⠗⠑⠉⠞⠰⠎⠄⠎" }, { "input": "incorrigibility", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "incorrigibility's", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "incorrigible", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠼" }, { "input": "incorrigibly", "output": "⠔⠉⠕⠗⠗⠊⠛⠊⠃⠇⠽" }, { "input": "incorruptibility", "output": "⠔⠉⠕⠗⠗⠥â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "incorruptibility's", "output": "⠔⠉⠕⠗⠗⠥â â žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "incorruptible", "output": "⠔⠉⠕⠗⠗⠥â â žâ Šâ ¼" }, { "input": "increase", "output": "⠔⠉⠗⠂⠎⠑" }, { "input": "increase's", "output": "⠔⠉⠗⠂⠎⠑⠄⠎" }, { "input": "increased", "output": "⠔⠉⠗⠂⠎⠫" }, { "input": "increases", "output": "⠔⠉⠗⠂⠎⠑⠎" }, { "input": "increasing", "output": "⠔⠉⠗⠂⠎⠌" }, { "input": "increasingly", "output": "⠔⠉⠗⠂⠎⠌⠇⠽" }, { "input": "incredibility", "output": "⠔⠉⠗⠫⠊⠃⠊⠇⠰⠽" }, { "input": "incredibility's", "output": "⠔⠉⠗⠫⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "incredible", "output": "⠔⠉⠗⠫⠊⠼" }, { "input": "incredibly", "output": "⠔⠉⠗⠫⠊⠃⠇⠽" }, { "input": "incredulity", "output": "⠔⠉⠗⠫⠥⠇⠰⠽" }, { "input": "incredulity's", "output": "⠔⠉⠗⠫⠥⠇⠰⠽⠄⠎" }, { "input": "incredulous", "output": "⠔⠉⠗⠫⠥⠇⠳⠎" }, { "input": "incredulously", "output": "⠔⠉⠗⠫⠥⠇⠳⠎⠇⠽" }, { "input": "increment", "output": "⠔⠉⠗⠑⠰⠞" }, { "input": "increment's", "output": "⠔⠉⠗⠑⠰⠞⠄⠎" }, { "input": "incremental", "output": "⠔⠉⠗⠑⠰⠞â â ‡" }, { "input": "incremented", "output": "⠔⠉⠗⠑⠰⠞⠫" }, { "input": "increments", "output": "⠔⠉⠗⠑⠰⠞⠎" }, { "input": "incriminate", "output": "⠔⠉⠗⠊â â ”â â žâ ‘" }, { "input": "incriminated", "output": "⠔⠉⠗⠊â â ”â â žâ «" }, { "input": "incriminates", "output": "⠔⠉⠗⠊â â ”â â žâ ‘â Ž" }, { "input": "incriminating", "output": "⠔⠉⠗⠊â â ”â â žâ Œ" }, { "input": "incrimination", "output": "⠔⠉⠗⠊â â ”â  â " }, { "input": "incrimination's", "output": "⠔⠉⠗⠊â â ”â  â â „â Ž" }, { "input": "incriminatory", "output": "⠔⠉⠗⠊â â ”â â žâ •â —â ½" }, { "input": "incrustation", "output": "⠔⠉⠗⠥⠌⠠â " }, { "input": "incrustation's", "output": "⠔⠉⠗⠥⠌⠠â â „â Ž" }, { "input": "incrustations", "output": "⠔⠉⠗⠥⠌⠠â â Ž" }, { "input": "incubate", "output": "⠔⠉⠥⠃â â žâ ‘" }, { "input": "incubated", "output": "⠔⠉⠥⠃â â žâ «" }, { "input": "incubates", "output": "⠔⠉⠥⠃â â žâ ‘â Ž" }, { "input": "incubating", "output": "⠔⠉⠥⠃â â žâ Œ" }, { "input": "incubation", "output": "⠔⠉⠥⠃⠠â " }, { "input": "incubation's", "output": "⠔⠉⠥⠃⠠â â „â Ž" }, { "input": "incubator", "output": "⠔⠉⠥⠃â â žâ •â —" }, { "input": "incubator's", "output": "⠔⠉⠥⠃â â žâ •â —â „â Ž" }, { "input": "incubators", "output": "⠔⠉⠥⠃â â žâ •â —â Ž" }, { "input": "incubus", "output": "⠔⠉⠥⠃⠥⠎" }, { "input": "incubus's", "output": "⠔⠉⠥⠃⠥⠎⠄⠎" }, { "input": "incubuses", "output": "⠔⠉⠥⠃⠥⠎⠑⠎" }, { "input": "inculcate", "output": "⠔⠉⠥⠇⠉â â žâ ‘" }, { "input": "inculcated", "output": "⠔⠉⠥⠇⠉â â žâ «" }, { "input": "inculcates", "output": "⠔⠉⠥⠇⠉â â žâ ‘â Ž" }, { "input": "inculcating", "output": "⠔⠉⠥⠇⠉â â žâ Œ" }, { "input": "inculcation", "output": "⠔⠉⠥⠇⠉⠠â " }, { "input": "inculcation's", "output": "⠔⠉⠥⠇⠉⠠â â „â Ž" }, { "input": "inculpable", "output": "⠔⠉⠥⠇â â â ¼" }, { "input": "inculpate", "output": "⠔⠉⠥⠇â â â žâ ‘" }, { "input": "inculpated", "output": "⠔⠉⠥⠇â â â žâ «" }, { "input": "inculpates", "output": "⠔⠉⠥⠇â â â žâ ‘â Ž" }, { "input": "inculpating", "output": "⠔⠉⠥⠇â â â žâ Œ" }, { "input": "incumbencies", "output": "⠔⠉⠥â â ƒâ ¢â ‰â Šâ ‘â Ž" }, { "input": "incumbency", "output": "⠔⠉⠥â â ƒâ ¢â ‰â ½" }, { "input": "incumbency's", "output": "⠔⠉⠥â â ƒâ ¢â ‰â ½â „â Ž" }, { "input": "incumbent", "output": "⠔⠉⠥â â ƒâ ¢â ž" }, { "input": "incumbent's", "output": "⠔⠉⠥â â ƒâ ¢â žâ „â Ž" }, { "input": "incumbents", "output": "⠔⠉⠥â â ƒâ ¢â žâ Ž" }, { "input": "incunabula", "output": "⠔⠉⠥â â â ƒâ ¥â ‡â " }, { "input": "incunabulum", "output": "⠔⠉⠥â â â ƒâ ¥â ‡â ¥â " }, { "input": "incunabulum's", "output": "⠔⠉⠥â â â ƒâ ¥â ‡â ¥â â „â Ž" }, { "input": "incur", "output": "⠔⠉⠥⠗" }, { "input": "incurable", "output": "⠔⠉⠥⠗â â ¼" }, { "input": "incurable's", "output": "⠔⠉⠥⠗â â ¼â „â Ž" }, { "input": "incurables", "output": "⠔⠉⠥⠗â â ¼â Ž" }, { "input": "incurably", "output": "⠔⠉⠥⠗â â ƒâ ‡â ½" }, { "input": "incurious", "output": "⠔⠉⠥⠗⠊⠳⠎" }, { "input": "incurred", "output": "⠔⠉⠥⠗⠗⠫" }, { "input": "incurring", "output": "⠔⠉⠥⠗⠗⠌" }, { "input": "incurs", "output": "⠔⠉⠥⠗⠎" }, { "input": "incursion", "output": "⠔⠉⠥⠗⠨â " }, { "input": "incursion's", "output": "⠔⠉⠥⠗⠨â â „â Ž" }, { "input": "incursions", "output": "⠔⠉⠥⠗⠨â â Ž" }, { "input": "indebted", "output": "⠔⠙⠑⠃⠞⠫" }, { "input": "indebtedness", "output": "⠔⠙⠑⠃⠞⠫⠰⠎" }, { "input": "indebtedness's", "output": "⠔⠙⠑⠃⠞⠫⠰⠎⠄⠎" }, { "input": "indecencies", "output": "⠔⠙⠑⠉⠢⠉⠊⠑⠎" }, { "input": "indecency", "output": "⠔⠙⠑⠉⠢⠉⠽" }, { "input": "indecency's", "output": "⠔⠙⠑⠉⠢⠉⠽⠄⠎" }, { "input": "indecent", "output": "⠔⠙⠑⠉⠢⠞" }, { "input": "indecently", "output": "⠔⠙⠑⠉⠢⠞⠇⠽" }, { "input": "indecipherable", "output": "⠔⠙⠑⠉⠊â â “â »â â ¼" }, { "input": "indecision", "output": "⠔⠙⠑⠉⠊⠨â " }, { "input": "indecision's", "output": "⠔⠙⠑⠉⠊⠨â â „â Ž" }, { "input": "indecisive", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑" }, { "input": "indecisively", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑⠇⠽" }, { "input": "indecisiveness", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑⠰⠎" }, { "input": "indecisiveness's", "output": "⠔⠙⠑⠉⠊⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "indecorous", "output": "⠔⠙⠑⠉⠕⠗⠳⠎" }, { "input": "indeed", "output": "⠔⠙⠑⠫" }, { "input": "indefatigable", "output": "⠔⠙⠑⠋â â žâ Šâ ›â â ¼" }, { "input": "indefatigably", "output": "⠔⠙⠑⠋â â žâ Šâ ›â â ƒâ ‡â ½" }, { "input": "indefeasible", "output": "⠔⠙⠑⠋⠂⠎⠊⠼" }, { "input": "indefeasibly", "output": "⠔⠙⠑⠋⠂⠎⠊⠃⠇⠽" }, { "input": "indefensible", "output": "⠔⠙⠑⠋⠢⠎⠊⠼" }, { "input": "indefensibly", "output": "⠔⠙⠑⠋⠢⠎⠊⠃⠇⠽" }, { "input": "indefinable", "output": "⠔⠙⠑⠋⠔â â ¼" }, { "input": "indefinably", "output": "⠔⠙⠑⠋⠔â â ƒâ ‡â ½" }, { "input": "indefinite", "output": "⠔⠙⠑⠋⠔⠊⠞⠑" }, { "input": "indefinitely", "output": "⠔⠙⠑⠋⠔⠊⠞⠑⠇⠽" }, { "input": "indefiniteness", "output": "⠔⠙⠑⠋⠔⠊⠞⠑⠰⠎" }, { "input": "indefiniteness's", "output": "⠔⠙⠑⠋⠔⠊⠞⠑⠰⠎⠄⠎" }, { "input": "indelible", "output": "⠔⠙⠑⠇⠊⠼" }, { "input": "indelibly", "output": "⠔⠙⠑⠇⠊⠃⠇⠽" }, { "input": "indelicacies", "output": "⠔⠙⠑⠇⠊⠉â â ‰â Šâ ‘â Ž" }, { "input": "indelicacy", "output": "⠔⠙⠑⠇⠊⠉â â ‰â ½" }, { "input": "indelicacy's", "output": "⠔⠙⠑⠇⠊⠉â â ‰â ½â „â Ž" }, { "input": "indelicate", "output": "⠔⠙⠑⠇⠊⠉â â žâ ‘" }, { "input": "indelicately", "output": "⠔⠙⠑⠇⠊⠉â â žâ ‘⠇⠽" }, { "input": "indemnification", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‰â  â " }, { "input": "indemnification's", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "indemnifications", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "indemnified", "output": "⠔⠙⠑â â â Šâ ‹â Šâ «" }, { "input": "indemnifies", "output": "⠔⠙⠑â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "indemnify", "output": "⠔⠙⠑â â â Šâ ‹â ½" }, { "input": "indemnifying", "output": "⠔⠙⠑â â â Šâ ‹â ½â Œ" }, { "input": "indemnities", "output": "⠔⠙⠑â â â Šâ žâ Šâ ‘â Ž" }, { "input": "indemnity", "output": "⠔⠙⠑â â â °â ½" }, { "input": "indemnity's", "output": "⠔⠙⠑â â â °â ½â „â Ž" }, { "input": "indemonstrable", "output": "⠔⠙⠑â â •â â Œâ —â â ¼" }, { "input": "indent", "output": "⠔⠙⠢⠞" }, { "input": "indent's", "output": "⠔⠙⠢⠞⠄⠎" }, { "input": "indentation", "output": "⠔⠙⠢⠞⠠â " }, { "input": "indentation's", "output": "⠔⠙⠢⠞⠠â â „â Ž" }, { "input": "indentations", "output": "⠔⠙⠢⠞⠠â â Ž" }, { "input": "indented", "output": "⠔⠙⠢⠞⠫" }, { "input": "indenting", "output": "⠔⠙⠢⠞⠌" }, { "input": "indention", "output": "⠔⠙⠢⠰â " }, { "input": "indention's", "output": "⠔⠙⠢⠰â â „â Ž" }, { "input": "indents", "output": "⠔⠙⠢⠞⠎" }, { "input": "indenture", "output": "⠔⠙⠢⠞⠥⠗⠑" }, { "input": "indenture's", "output": "⠔⠙⠢⠞⠥⠗⠑⠄⠎" }, { "input": "indentured", "output": "⠔⠙⠢⠞⠥⠗⠫" }, { "input": "indentures", "output": "⠔⠙⠢⠞⠥⠗⠑⠎" }, { "input": "indenturing", "output": "⠔⠙⠢⠞⠥⠗⠌" }, { "input": "independence", "output": "⠔⠙⠑â â ¢â ™â °â ‘" }, { "input": "independence's", "output": "⠔⠙⠑â â ¢â ™â °â ‘â „â Ž" }, { "input": "independent", "output": "⠔⠙⠑â â ¢â ™â ¢â ž" }, { "input": "independent's", "output": "⠔⠙⠑â â ¢â ™â ¢â žâ „â Ž" }, { "input": "independently", "output": "⠔⠙⠑â â ¢â ™â ¢â žâ ‡â ½" }, { "input": "independents", "output": "⠔⠙⠑â â ¢â ™â ¢â žâ Ž" }, { "input": "indescribable", "output": "⠔⠙⠑⠎⠉⠗⠊⠃â â ¼" }, { "input": "indescribably", "output": "⠔⠙⠑⠎⠉⠗⠊⠃â â ƒâ ‡â ½" }, { "input": "indestructibility's", "output": "⠔⠙⠑⠌⠗⠥⠉⠞⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "indestructible", "output": "⠔⠙⠑⠌⠗⠥⠉⠞⠊⠼" }, { "input": "indestructibly", "output": "⠔⠙⠑⠌⠗⠥⠉⠞⠊⠃⠇⠽" }, { "input": "indeterminable", "output": "⠔⠙⠑⠞⠻â â ”â â ¼" }, { "input": "indeterminably", "output": "⠔⠙⠑⠞⠻â â ”â â ƒâ ‡â ½" }, { "input": "indeterminacy", "output": "⠔⠙⠑⠞⠻â â ”â â ‰â ½" }, { "input": "indeterminacy's", "output": "⠔⠙⠑⠞⠻â â ”â â ‰â ½â „â Ž" }, { "input": "indeterminate", "output": "⠔⠙⠑⠞⠻â â ”â â žâ ‘" }, { "input": "indeterminately", "output": "⠔⠙⠑⠞⠻â â ”â â žâ ‘⠇⠽" }, { "input": "index", "output": "⠔⠙⠑⠭" }, { "input": "index's", "output": "⠔⠙⠑⠭⠄⠎" }, { "input": "indexed", "output": "⠔⠙⠑⠭⠫" }, { "input": "indexer", "output": "⠔⠙⠑⠭⠻" }, { "input": "indexer's", "output": "⠔⠙⠑⠭⠻⠄⠎" }, { "input": "indexers", "output": "⠔⠙⠑⠭⠻⠎" }, { "input": "indexes", "output": "⠔⠙⠑⠭⠑⠎" }, { "input": "indexing", "output": "⠔⠙⠑⠭⠌" }, { "input": "indicate", "output": "⠔⠙⠊⠉â â žâ ‘" }, { "input": "indicated", "output": "⠔⠙⠊⠉â â žâ «" }, { "input": "indicates", "output": "⠔⠙⠊⠉â â žâ ‘â Ž" }, { "input": "indicating", "output": "⠔⠙⠊⠉â â žâ Œ" }, { "input": "indication", "output": "⠔⠙⠊⠉⠠â " }, { "input": "indication's", "output": "⠔⠙⠊⠉⠠â â „â Ž" }, { "input": "indications", "output": "⠔⠙⠊⠉⠠â â Ž" }, { "input": "indicative", "output": "⠔⠙⠊⠉â â žâ Šâ §â ‘" }, { "input": "indicative's", "output": "⠔⠙⠊⠉â â žâ Šâ §â ‘â „â Ž" }, { "input": "indicatively", "output": "⠔⠙⠊⠉â â žâ Šâ §â ‘⠇⠽" }, { "input": "indicatives", "output": "⠔⠙⠊⠉â â žâ Šâ §â ‘â Ž" }, { "input": "indicator", "output": "⠔⠙⠊⠉â â žâ •â —" }, { "input": "indicator's", "output": "⠔⠙⠊⠉â â žâ •â —â „â Ž" }, { "input": "indicators", "output": "⠔⠙⠊⠉â â žâ •â —â Ž" }, { "input": "indict", "output": "⠔⠙⠊⠉⠞" }, { "input": "indictable", "output": "⠔⠙⠊⠉⠞â â ¼" }, { "input": "indicted", "output": "⠔⠙⠊⠉⠞⠫" }, { "input": "indicting", "output": "⠔⠙⠊⠉⠞⠌" }, { "input": "indictment", "output": "⠔⠙⠊⠉⠞⠰⠞" }, { "input": "indictment's", "output": "⠔⠙⠊⠉⠞⠰⠞⠄⠎" }, { "input": "indictments", "output": "⠔⠙⠊⠉⠞⠰⠞⠎" }, { "input": "indicts", "output": "⠔⠙⠊⠉⠞⠎" }, { "input": "indifference", "output": "⠔⠙⠊⠖⠻⠰⠑" }, { "input": "indifference's", "output": "⠔⠙⠊⠖⠻⠰⠑⠄⠎" }, { "input": "indifferent", "output": "⠔⠙⠊⠖⠻⠢⠞" }, { "input": "indifferently", "output": "⠔⠙⠊⠖⠻⠢⠞⠇⠽" }, { "input": "indigence", "output": "⠔⠙⠊⠛⠰⠑" }, { "input": "indigence's", "output": "⠔⠙⠊⠛⠰⠑⠄⠎" }, { "input": "indigenous", "output": "⠔⠙⠊⠛⠢⠳⠎" }, { "input": "indigent", "output": "⠔⠙⠊⠛⠢⠞" }, { "input": "indigent's", "output": "⠔⠙⠊⠛⠢⠞⠄⠎" }, { "input": "indigently", "output": "⠔⠙⠊⠛⠢⠞⠇⠽" }, { "input": "indigents", "output": "⠔⠙⠊⠛⠢⠞⠎" }, { "input": "indigestible", "output": "⠔⠙⠊⠛⠑⠌⠊⠼" }, { "input": "indigestion", "output": "⠔⠙⠊⠛⠑⠎⠰â " }, { "input": "indigestion's", "output": "⠔⠙⠊⠛⠑⠎⠰â â „â Ž" }, { "input": "indignant", "output": "⠔⠙⠊⠛â â â â ž" }, { "input": "indignantly", "output": "⠔⠙⠊⠛â â â â žâ ‡â ½" }, { "input": "indignation", "output": "⠔⠙⠊⠛â â  â " }, { "input": "indignation's", "output": "⠔⠙⠊⠛â â  â â „â Ž" }, { "input": "indignities", "output": "⠔⠙⠊⠛â â Šâ žâ Šâ ‘â Ž" }, { "input": "indignity", "output": "⠔⠙⠊⠛â â °â ½" }, { "input": "indignity's", "output": "⠔⠙⠊⠛â â °â ½â „â Ž" }, { "input": "indigo", "output": "⠔⠙⠊⠛⠕" }, { "input": "indigo's", "output": "⠔⠙⠊⠛⠕⠄⠎" }, { "input": "indirect", "output": "⠔⠙⠊⠗⠑⠉⠞" }, { "input": "indirection", "output": "⠔⠙⠊⠗⠑⠉⠰â " }, { "input": "indirection's", "output": "⠔⠙⠊⠗⠑⠉⠰â â „â Ž" }, { "input": "indirectly", "output": "⠔⠙⠊⠗⠑⠉⠞⠇⠽" }, { "input": "indirectness", "output": "⠔⠙⠊⠗⠑⠉⠞⠰⠎" }, { "input": "indirectness's", "output": "⠔⠙⠊⠗⠑⠉⠞⠰⠎⠄⠎" }, { "input": "indiscernible", "output": "⠔⠙⠊⠎⠉⠻â â Šâ ¼" }, { "input": "indiscreet", "output": "⠔⠙⠊⠎⠉⠗⠑⠑⠞" }, { "input": "indiscreetly", "output": "⠔⠙⠊⠎⠉⠗⠑⠑⠞⠇⠽" }, { "input": "indiscretion", "output": "⠔⠙⠊⠎⠉⠗⠑⠰â " }, { "input": "indiscretion's", "output": "⠔⠙⠊⠎⠉⠗⠑⠰â â „â Ž" }, { "input": "indiscretions", "output": "⠔⠙⠊⠎⠉⠗⠑⠰â â Ž" }, { "input": "indiscriminate", "output": "⠔⠙⠊⠎⠉⠗⠊â â ”â â žâ ‘" }, { "input": "indiscriminately", "output": "⠔⠙⠊⠎⠉⠗⠊â â ”â â žâ ‘⠇⠽" }, { "input": "indispensability's", "output": "⠔⠙⠊⠎â â ¢â Žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "indispensable", "output": "⠔⠙⠊⠎â â ¢â Žâ â ¼" }, { "input": "indispensable's", "output": "⠔⠙⠊⠎â â ¢â Žâ â ¼â „â Ž" }, { "input": "indispensables", "output": "⠔⠙⠊⠎â â ¢â Žâ â ¼â Ž" }, { "input": "indispensably", "output": "⠔⠙⠊⠎â â ¢â Žâ â ƒâ ‡â ½" }, { "input": "indisposed", "output": "⠔⠙⠊⠎â â •â Žâ «" }, { "input": "indisposition", "output": "⠔⠙⠊⠎â â •â Žâ Šâ °â " }, { "input": "indisposition's", "output": "⠔⠙⠊⠎â â •â Žâ Šâ °â â „â Ž" }, { "input": "indispositions", "output": "⠔⠙⠊⠎â â •â Žâ Šâ °â â Ž" }, { "input": "indisputable", "output": "⠔⠙⠊⠎â â ¥â žâ â ¼" }, { "input": "indisputably", "output": "⠔⠙⠊⠎â â ¥â žâ â ƒâ ‡â ½" }, { "input": "indissoluble", "output": "⠔⠙⠊⠎⠎⠕⠇⠥⠼" }, { "input": "indistinct", "output": "⠔⠙⠊⠎⠞⠔⠉⠞" }, { "input": "indistinctly", "output": "⠔⠙⠊⠎⠞⠔⠉⠞⠇⠽" }, { "input": "indistinctness", "output": "⠔⠙⠊⠎⠞⠔⠉⠞⠰⠎" }, { "input": "indistinctness's", "output": "⠔⠙⠊⠎⠞⠔⠉⠞⠰⠎⠄⠎" }, { "input": "indistinguishable", "output": "⠔⠙⠊⠎⠞⠌⠥⠊⠩â â ¼" }, { "input": "indistinguishably", "output": "⠔⠙⠊⠎⠞⠌⠥⠊⠩â â ƒâ ‡â ½" }, { "input": "indite", "output": "⠔⠙⠊⠞⠑" }, { "input": "indited", "output": "⠔⠙⠊⠞⠫" }, { "input": "indites", "output": "⠔⠙⠊⠞⠑⠎" }, { "input": "inditing", "output": "⠔⠙⠊⠞⠌" }, { "input": "indium", "output": "⠔⠙⠊⠥â " }, { "input": "indium's", "output": "⠔⠙⠊⠥â â „â Ž" }, { "input": "individual", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡" }, { "input": "individual's", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â „â Ž" }, { "input": "individualism", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Žâ " }, { "input": "individualism's", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Žâ â „â Ž" }, { "input": "individualist", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œ" }, { "input": "individualist's", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œâ „â Ž" }, { "input": "individualistic", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œâ Šâ ‰" }, { "input": "individualists", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ Œâ Ž" }, { "input": "individuality", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â °â ½" }, { "input": "individuality's", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â °â ½â „â Ž" }, { "input": "individualization", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ  â " }, { "input": "individualization's", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ  â â „â Ž" }, { "input": "individualize", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ ‘" }, { "input": "individualized", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ «" }, { "input": "individualizes", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ ‘â Ž" }, { "input": "individualizing", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Šâ µâ Œ" }, { "input": "individually", "output": "⠔⠙⠊⠧⠊⠙⠥⠠⠽" }, { "input": "individuals", "output": "⠔⠙⠊⠧⠊⠙⠥â â ‡â Ž" }, { "input": "individuate", "output": "⠔⠙⠊⠧⠊⠙⠥â â žâ ‘" }, { "input": "individuated", "output": "⠔⠙⠊⠧⠊⠙⠥â â žâ «" }, { "input": "individuates", "output": "⠔⠙⠊⠧⠊⠙⠥â â žâ ‘â Ž" }, { "input": "individuating", "output": "⠔⠙⠊⠧⠊⠙⠥â â žâ Œ" }, { "input": "individuation", "output": "⠔⠙⠊⠧⠊⠙⠥⠠â " }, { "input": "individuation's", "output": "⠔⠙⠊⠧⠊⠙⠥⠠â â „â Ž" }, { "input": "indivisibility", "output": "⠔⠙⠊⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "indivisibility's", "output": "⠔⠙⠊⠧⠊⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "indivisible", "output": "⠔⠙⠊⠧⠊⠎⠊⠼" }, { "input": "indivisibly", "output": "⠔⠙⠊⠧⠊⠎⠊⠃⠇⠽" }, { "input": "indoctrinate", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ ‘" }, { "input": "indoctrinated", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ «" }, { "input": "indoctrinates", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ ‘â Ž" }, { "input": "indoctrinating", "output": "⠔⠙⠕⠉⠞⠗⠔â â žâ Œ" }, { "input": "indoctrination", "output": "⠔⠙⠕⠉⠞⠗⠔⠠â " }, { "input": "indoctrination's", "output": "⠔⠙⠕⠉⠞⠗⠔⠠â â „â Ž" }, { "input": "indolence", "output": "⠔⠙⠕⠇⠰⠑" }, { "input": "indolence's", "output": "⠔⠙⠕⠇⠰⠑⠄⠎" }, { "input": "indolent", "output": "⠔⠙⠕⠇⠢⠞" }, { "input": "indolently", "output": "⠔⠙⠕⠇⠢⠞⠇⠽" }, { "input": "indomitable", "output": "⠔⠙⠕â â Šâ žâ â ¼" }, { "input": "indomitably", "output": "⠔⠙⠕â â Šâ žâ â ƒâ ‡â ½" }, { "input": "indoor", "output": "⠔⠙⠕⠕⠗" }, { "input": "indoors", "output": "⠔⠙⠕⠕⠗⠎" }, { "input": "indubitable", "output": "⠔⠙⠥⠃⠊⠞â â ¼" }, { "input": "indubitably", "output": "⠔⠙⠥⠃⠊⠞â â ƒâ ‡â ½" }, { "input": "induce", "output": "⠔⠙⠥⠉⠑" }, { "input": "induced", "output": "⠔⠙⠥⠉⠫" }, { "input": "inducement", "output": "⠔⠙⠥⠉⠑⠰⠞" }, { "input": "inducement's", "output": "⠔⠙⠥⠉⠑⠰⠞⠄⠎" }, { "input": "inducements", "output": "⠔⠙⠥⠉⠑⠰⠞⠎" }, { "input": "inducer", "output": "⠔⠙⠥⠉⠻" }, { "input": "inducer's", "output": "⠔⠙⠥⠉⠻⠄⠎" }, { "input": "inducers", "output": "⠔⠙⠥⠉⠻⠎" }, { "input": "induces", "output": "⠔⠙⠥⠉⠑⠎" }, { "input": "inducing", "output": "⠔⠙⠥⠉⠌" }, { "input": "induct", "output": "⠔⠙⠥⠉⠞" }, { "input": "inductance", "output": "⠔⠙⠥⠉⠞⠨⠑" }, { "input": "inductance's", "output": "⠔⠙⠥⠉⠞⠨⠑⠄⠎" }, { "input": "inducted", "output": "⠔⠙⠥⠉⠞⠫" }, { "input": "inductee", "output": "⠔⠙⠥⠉⠞⠑⠑" }, { "input": "inductee's", "output": "⠔⠙⠥⠉⠞⠑⠑⠄⠎" }, { "input": "inductees", "output": "⠔⠙⠥⠉⠞⠑⠑⠎" }, { "input": "inducting", "output": "⠔⠙⠥⠉⠞⠌" }, { "input": "induction", "output": "⠔⠙⠥⠉⠰â " }, { "input": "induction's", "output": "⠔⠙⠥⠉⠰â â „â Ž" }, { "input": "inductions", "output": "⠔⠙⠥⠉⠰â â Ž" }, { "input": "inductive", "output": "⠔⠙⠥⠉⠞⠊⠧⠑" }, { "input": "inducts", "output": "⠔⠙⠥⠉⠞⠎" }, { "input": "indulge", "output": "⠔⠙⠥⠇⠛⠑" }, { "input": "indulged", "output": "⠔⠙⠥⠇⠛⠫" }, { "input": "indulgence", "output": "⠔⠙⠥⠇⠛⠰⠑" }, { "input": "indulgence's", "output": "⠔⠙⠥⠇⠛⠰⠑⠄⠎" }, { "input": "indulgences", "output": "⠔⠙⠥⠇⠛⠰⠑⠎" }, { "input": "indulgent", "output": "⠔⠙⠥⠇⠛⠢⠞" }, { "input": "indulgently", "output": "⠔⠙⠥⠇⠛⠢⠞⠇⠽" }, { "input": "indulges", "output": "⠔⠙⠥⠇⠛⠑⠎" }, { "input": "indulging", "output": "⠔⠙⠥⠇⠛⠌" }, { "input": "industrial", "output": "⠔⠙⠥⠌⠗⠊â â ‡" }, { "input": "industrialism", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Žâ " }, { "input": "industrialism's", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Žâ â „â Ž" }, { "input": "industrialist", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Œ" }, { "input": "industrialist's", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Œâ „â Ž" }, { "input": "industrialists", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ Œâ Ž" }, { "input": "industrialization", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ  â " }, { "input": "industrialization's", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ  â â „â Ž" }, { "input": "industrialize", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ ‘" }, { "input": "industrialized", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ «" }, { "input": "industrializes", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "industrializing", "output": "⠔⠙⠥⠌⠗⠊â â ‡â Šâ µâ Œ" }, { "input": "industrially", "output": "⠔⠙⠥⠌⠗⠊⠠⠽" }, { "input": "industries", "output": "⠔⠙⠥⠌⠗⠊⠑⠎" }, { "input": "industrious", "output": "⠔⠙⠥⠌⠗⠊⠳⠎" }, { "input": "industriously", "output": "⠔⠙⠥⠌⠗⠊⠳⠎⠇⠽" }, { "input": "industriousness", "output": "⠔⠙⠥⠌⠗⠊⠳⠎⠰⠎" }, { "input": "industriousness's", "output": "⠔⠙⠥⠌⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "industry", "output": "⠔⠙⠥⠌⠗⠽" }, { "input": "industry's", "output": "⠔⠙⠥⠌⠗⠽⠄⠎" }, { "input": "indwell", "output": "⠔⠙⠺⠑⠇⠇" }, { "input": "indwelling", "output": "⠔⠙⠺⠑⠇⠇⠌" }, { "input": "indwells", "output": "⠔⠙⠺⠑⠇⠇⠎" }, { "input": "indwelt", "output": "⠔⠙⠺⠑⠇⠞" }, { "input": "inebriate", "output": "⠔⠑⠃⠗⠊â â žâ ‘" }, { "input": "inebriate's", "output": "⠔⠑⠃⠗⠊â â žâ ‘â „â Ž" }, { "input": "inebriated", "output": "⠔⠑⠃⠗⠊â â žâ «" }, { "input": "inebriates", "output": "⠔⠑⠃⠗⠊â â žâ ‘â Ž" }, { "input": "inebriating", "output": "⠔⠑⠃⠗⠊â â žâ Œ" }, { "input": "inebriation", "output": "⠔⠑⠃⠗⠊⠠â " }, { "input": "inebriation's", "output": "⠔⠑⠃⠗⠊⠠â â „â Ž" }, { "input": "inedible", "output": "⠔⠫⠊⠼" }, { "input": "ineducable", "output": "⠔⠫⠥⠉â â ¼" }, { "input": "ineffability", "output": "⠔⠑⠖â â ƒâ Šâ ‡â °â ½" }, { "input": "ineffability's", "output": "⠔⠑⠖â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "ineffable", "output": "⠔⠑⠖â â ¼" }, { "input": "ineffably", "output": "⠔⠑⠖â â ƒâ ‡â ½" }, { "input": "ineffective", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑" }, { "input": "ineffectively", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "ineffectiveness", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "ineffectiveness's", "output": "⠔⠑⠖⠑⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "ineffectual", "output": "⠔⠑⠖⠑⠉⠞⠥â â ‡" }, { "input": "ineffectually", "output": "⠔⠑⠖⠑⠉⠞⠥⠠⠽" }, { "input": "inefficacy", "output": "⠔⠑⠖⠊⠉â â ‰â ½" }, { "input": "inefficacy's", "output": "⠔⠑⠖⠊⠉â â ‰â ½â „â Ž" }, { "input": "inefficiencies", "output": "⠔⠑⠖⠊⠉⠊⠢⠉⠊⠑⠎" }, { "input": "inefficiency", "output": "⠔⠑⠖⠊⠉⠊⠢⠉⠽" }, { "input": "inefficiency's", "output": "⠔⠑⠖⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "inefficient", "output": "⠔⠑⠖⠊⠉⠊⠢⠞" }, { "input": "inefficiently", "output": "⠔⠑⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "inelastic", "output": "⠔⠑⠇â â Œâ Šâ ‰" }, { "input": "inelegance", "output": "⠔⠑⠇⠑⠛⠨⠑" }, { "input": "inelegance's", "output": "⠔⠑⠇⠑⠛⠨⠑⠄⠎" }, { "input": "inelegant", "output": "⠔⠑⠇⠑⠛â â â ž" }, { "input": "inelegantly", "output": "⠔⠑⠇⠑⠛â â â žâ ‡â ½" }, { "input": "ineligibility", "output": "⠔⠑⠇⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "ineligibility's", "output": "⠔⠑⠇⠊⠛⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "ineligible", "output": "⠔⠑⠇⠊⠛⠊⠼" }, { "input": "ineligible's", "output": "⠔⠑⠇⠊⠛⠊⠼⠄⠎" }, { "input": "ineligibles", "output": "⠔⠑⠇⠊⠛⠊⠼⠎" }, { "input": "ineligibly", "output": "⠔⠑⠇⠊⠛⠊⠃⠇⠽" }, { "input": "ineluctable", "output": "⠔⠑⠇⠥⠉⠞â â ¼" }, { "input": "ineluctably", "output": "⠔⠑⠇⠥⠉⠞â â ƒâ ‡â ½" }, { "input": "inept", "output": "⠔⠑â â ž" }, { "input": "ineptitude", "output": "⠔⠑â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "ineptitude's", "output": "⠔⠑â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "ineptly", "output": "⠔⠑â â žâ ‡â ½" }, { "input": "ineptness", "output": "⠔⠑â â žâ °â Ž" }, { "input": "ineptness's", "output": "⠔⠑â â žâ °â Žâ „â Ž" }, { "input": "inequalities", "output": "⠔⠑⠟⠥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "inequality", "output": "⠔⠑⠟⠥â â ‡â °â ½" }, { "input": "inequality's", "output": "⠔⠑⠟⠥â â ‡â °â ½â „â Ž" }, { "input": "inequitable", "output": "⠔⠑⠟⠥⠊⠞â â ¼" }, { "input": "inequitably", "output": "⠔⠑⠟⠥⠊⠞â â ƒâ ‡â ½" }, { "input": "inequities", "output": "⠔⠑⠟⠥⠊⠞⠊⠑⠎" }, { "input": "inequity", "output": "⠔⠑⠟⠥⠰⠽" }, { "input": "inequity's", "output": "⠔⠑⠟⠥⠰⠽⠄⠎" }, { "input": "inerrant", "output": "⠔⠻⠗â â â ž" }, { "input": "inert", "output": "⠔⠻⠞" }, { "input": "inertia", "output": "⠔⠻⠞⠊â " }, { "input": "inertia's", "output": "⠔⠻⠞⠊â â „â Ž" }, { "input": "inertial", "output": "⠔⠻⠞⠊â â ‡" }, { "input": "inertly", "output": "⠔⠻⠞⠇⠽" }, { "input": "inertness", "output": "⠔⠻⠞⠰⠎" }, { "input": "inertness's", "output": "⠔⠻⠞⠰⠎⠄⠎" }, { "input": "inescapable", "output": "⠔⠑⠎⠉â â â â ¼" }, { "input": "inescapably", "output": "⠔⠑⠎⠉â â â â ƒâ ‡â ½" }, { "input": "inessential", "output": "⠔⠑⠎⠎⠢⠞⠊â â ‡" }, { "input": "inessential's", "output": "⠔⠑⠎⠎⠢⠞⠊â â ‡â „â Ž" }, { "input": "inessentials", "output": "⠔⠑⠎⠎⠢⠞⠊â â ‡â Ž" }, { "input": "inestimable", "output": "⠔⠑⠌⠊â â â ¼" }, { "input": "inestimably", "output": "⠔⠑⠌⠊â â â ƒâ ‡â ½" }, { "input": "inevitability", "output": "⠔⠑⠧⠊⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "inevitability's", "output": "⠔⠑⠧⠊⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inevitable", "output": "⠔⠑⠧⠊⠞â â ¼" }, { "input": "inevitable's", "output": "⠔⠑⠧⠊⠞â â ¼â „â Ž" }, { "input": "inevitably", "output": "⠔⠑⠧⠊⠞â â ƒâ ‡â ½" }, { "input": "inexact", "output": "⠔⠑⠭â â ‰â ž" }, { "input": "inexactly", "output": "⠔⠑⠭â â ‰â žâ ‡â ½" }, { "input": "inexactness", "output": "⠔⠑⠭â â ‰â žâ °â Ž" }, { "input": "inexactness's", "output": "⠔⠑⠭â â ‰â žâ °â Žâ „â Ž" }, { "input": "inexcusable", "output": "⠔⠑⠭⠉⠥⠎â â ¼" }, { "input": "inexcusably", "output": "⠔⠑⠭⠉⠥⠎â â ƒâ ‡â ½" }, { "input": "inexhaustible", "output": "⠔⠑⠭⠓â â ¥â Œâ Šâ ¼" }, { "input": "inexhaustibly", "output": "⠔⠑⠭⠓â â ¥â Œâ Šâ ƒâ ‡â ½" }, { "input": "inexorable", "output": "⠔⠑⠭⠕⠗â â ¼" }, { "input": "inexorably", "output": "⠔⠑⠭⠕⠗â â ƒâ ‡â ½" }, { "input": "inexpedience", "output": "⠔⠑⠭â â «â Šâ °â ‘" }, { "input": "inexpedience's", "output": "⠔⠑⠭â â «â Šâ °â ‘â „â Ž" }, { "input": "inexpediency", "output": "⠔⠑⠭â â «â Šâ ¢â ‰â ½" }, { "input": "inexpediency's", "output": "⠔⠑⠭â â «â Šâ ¢â ‰â ½â „â Ž" }, { "input": "inexpedient", "output": "⠔⠑⠭â â «â Šâ ¢â ž" }, { "input": "inexpensive", "output": "⠔⠑⠭â â ¢â Žâ Šâ §â ‘" }, { "input": "inexpensively", "output": "⠔⠑⠭â â ¢â Žâ Šâ §â ‘⠇⠽" }, { "input": "inexpensiveness", "output": "⠔⠑⠭â â ¢â Žâ Šâ §â ‘â °â Ž" }, { "input": "inexpensiveness's", "output": "⠔⠑⠭â â ¢â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "inexperience", "output": "⠔⠑⠭â â »â Šâ °â ‘" }, { "input": "inexperience's", "output": "⠔⠑⠭â â »â Šâ °â ‘â „â Ž" }, { "input": "inexperienced", "output": "⠔⠑⠭â â »â Šâ °â ‘â ™" }, { "input": "inexpert", "output": "⠔⠑⠭â â »â ž" }, { "input": "inexpiable", "output": "⠔⠑⠭â â Šâ â ¼" }, { "input": "inexplicable", "output": "⠔⠑⠭â â ‡â Šâ ‰â â ¼" }, { "input": "inexplicably", "output": "⠔⠑⠭â â ‡â Šâ ‰â â ƒâ ‡â ½" }, { "input": "inexpressible", "output": "⠔⠑⠭â â —â ‘â Žâ Žâ Šâ ¼" }, { "input": "inextinguishable", "output": "⠔⠑⠭⠞⠌⠥⠊⠩â â ¼" }, { "input": "inextricable", "output": "⠔⠑⠭⠞⠗⠊⠉â â ¼" }, { "input": "inextricably", "output": "⠔⠑⠭⠞⠗⠊⠉â â ƒâ ‡â ½" }, { "input": "infallibility", "output": "⠔⠋â â ‡â ‡â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "infallibility's", "output": "⠔⠋â â ‡â ‡â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "infallible", "output": "⠔⠋â â ‡â ‡â Šâ ¼" }, { "input": "infallibly", "output": "⠔⠋â â ‡â ‡â Šâ ƒâ ‡â ½" }, { "input": "infamies", "output": "⠔⠋â â â Šâ ‘â Ž" }, { "input": "infamous", "output": "⠔⠋â â â ³â Ž" }, { "input": "infamously", "output": "⠔⠋â â â ³â Žâ ‡â ½" }, { "input": "infamy", "output": "⠔⠋â â â ½" }, { "input": "infamy's", "output": "⠔⠋â â â ½â „â Ž" }, { "input": "infancy", "output": "⠔⠋â â â ‰â ½" }, { "input": "infancy's", "output": "⠔⠋â â â ‰â ½â „â Ž" }, { "input": "infant", "output": "⠔⠋â â â ž" }, { "input": "infant's", "output": "⠔⠋â â â žâ „â Ž" }, { "input": "infanticide", "output": "⠔⠋â â â žâ Šâ ‰â Šâ ™â ‘" }, { "input": "infanticide's", "output": "⠔⠋â â â žâ Šâ ‰â Šâ ™â ‘â „â Ž" }, { "input": "infanticides", "output": "⠔⠋â â â žâ Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "infantile", "output": "⠔⠋â â â žâ Šâ ‡â ‘" }, { "input": "infantries", "output": "⠔⠋â â â žâ —â Šâ ‘â Ž" }, { "input": "infantry", "output": "⠔⠋â â â žâ —â ½" }, { "input": "infantry's", "output": "⠔⠋â â â žâ —⠽⠄⠎" }, { "input": "infantryman", "output": "⠔⠋â â â žâ —â ½â â â " }, { "input": "infantryman's", "output": "⠔⠋â â â žâ —â ½â â â â „â Ž" }, { "input": "infantrymen", "output": "⠔⠋â â â žâ —â ½â â ¢" }, { "input": "infants", "output": "⠔⠋â â â žâ Ž" }, { "input": "infarct", "output": "⠔⠋⠜⠉⠞" }, { "input": "infarct's", "output": "⠔⠋⠜⠉⠞⠄⠎" }, { "input": "infarction", "output": "⠔⠋⠜⠉⠰â " }, { "input": "infarction's", "output": "⠔⠋⠜⠉⠰â â „â Ž" }, { "input": "infarcts", "output": "⠔⠋⠜⠉⠞⠎" }, { "input": "infatuate", "output": "⠔⠋â â žâ ¥â â žâ ‘" }, { "input": "infatuated", "output": "⠔⠋â â žâ ¥â â žâ «" }, { "input": "infatuates", "output": "⠔⠋â â žâ ¥â â žâ ‘â Ž" }, { "input": "infatuating", "output": "⠔⠋â â žâ ¥â â žâ Œ" }, { "input": "infatuation", "output": "⠔⠋â â žâ ¥â  â " }, { "input": "infatuation's", "output": "⠔⠋â â žâ ¥â  â â „â Ž" }, { "input": "infatuations", "output": "⠔⠋â â žâ ¥â  â â Ž" }, { "input": "infect", "output": "⠔⠋⠑⠉⠞" }, { "input": "infected", "output": "⠔⠋⠑⠉⠞⠫" }, { "input": "infecting", "output": "⠔⠋⠑⠉⠞⠌" }, { "input": "infection", "output": "⠔⠋⠑⠉⠰â " }, { "input": "infection's", "output": "⠔⠋⠑⠉⠰â â „â Ž" }, { "input": "infections", "output": "⠔⠋⠑⠉⠰â â Ž" }, { "input": "infectious", "output": "⠔⠋⠑⠉⠞⠊⠳⠎" }, { "input": "infectiously", "output": "⠔⠋⠑⠉⠞⠊⠳⠎⠇⠽" }, { "input": "infectiousness", "output": "⠔⠋⠑⠉⠞⠊⠳⠎⠰⠎" }, { "input": "infectiousness's", "output": "⠔⠋⠑⠉⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "infects", "output": "⠔⠋⠑⠉⠞⠎" }, { "input": "infelicities", "output": "⠔⠋⠑⠇⠊⠉⠊⠞⠊⠑⠎" }, { "input": "infelicitous", "output": "⠔⠋⠑⠇⠊⠉⠊⠞⠳⠎" }, { "input": "infelicity", "output": "⠔⠋⠑⠇⠊⠉⠰⠽" }, { "input": "infelicity's", "output": "⠔⠋⠑⠇⠊⠉⠰⠽⠄⠎" }, { "input": "infer", "output": "⠔⠋⠻" }, { "input": "inference", "output": "⠔⠋⠻⠰⠑" }, { "input": "inference's", "output": "⠔⠋⠻⠰⠑⠄⠎" }, { "input": "inferences", "output": "⠔⠋⠻⠰⠑⠎" }, { "input": "inferential", "output": "⠔⠋⠻⠢⠞⠊â â ‡" }, { "input": "inferior", "output": "⠔⠋⠻⠊⠕⠗" }, { "input": "inferior's", "output": "⠔⠋⠻⠊⠕⠗⠄⠎" }, { "input": "inferiority", "output": "⠔⠋⠻⠊⠕⠗⠰⠽" }, { "input": "inferiority's", "output": "⠔⠋⠻⠊⠕⠗⠰⠽⠄⠎" }, { "input": "inferiors", "output": "⠔⠋⠻⠊⠕⠗⠎" }, { "input": "infernal", "output": "⠔⠋⠻â â â ‡" }, { "input": "infernally", "output": "⠔⠋⠻â â  â ½" }, { "input": "inferno", "output": "⠔⠋⠻â â •" }, { "input": "inferno's", "output": "⠔⠋⠻â â •â „â Ž" }, { "input": "infernos", "output": "⠔⠋⠻â â •â Ž" }, { "input": "inferred", "output": "⠔⠋⠻⠗⠫" }, { "input": "inferring", "output": "⠔⠋⠻⠗⠌" }, { "input": "infers", "output": "⠔⠋⠻⠎" }, { "input": "infertile", "output": "⠔⠋⠻⠞⠊⠇⠑" }, { "input": "infertility", "output": "⠔⠋⠻⠞⠊⠇⠰⠽" }, { "input": "infertility's", "output": "⠔⠋⠻⠞⠊⠇⠰⠽⠄⠎" }, { "input": "infest", "output": "⠔⠋⠑⠌" }, { "input": "infestation", "output": "⠔⠋⠑⠌⠠â " }, { "input": "infestation's", "output": "⠔⠋⠑⠌⠠â â „â Ž" }, { "input": "infestations", "output": "⠔⠋⠑⠌⠠â â Ž" }, { "input": "infested", "output": "⠔⠋⠑⠌⠫" }, { "input": "infesting", "output": "⠔⠋⠑⠌⠌" }, { "input": "infests", "output": "⠔⠋⠑⠌⠎" }, { "input": "infidel", "output": "⠔⠋⠊⠙⠑⠇" }, { "input": "infidel's", "output": "⠔⠋⠊⠙⠑⠇⠄⠎" }, { "input": "infidelities", "output": "⠔⠋⠊⠙⠑⠇⠊⠞⠊⠑⠎" }, { "input": "infidelity", "output": "⠔⠋⠊⠙⠑⠇⠰⠽" }, { "input": "infidelity's", "output": "⠔⠋⠊⠙⠑⠇⠰⠽⠄⠎" }, { "input": "infidels", "output": "⠔⠋⠊⠙⠑⠇⠎" }, { "input": "infield", "output": "⠔⠋⠊⠑⠇⠙" }, { "input": "infield's", "output": "⠔⠋⠊⠑⠇⠙⠄⠎" }, { "input": "infielder", "output": "⠔⠋⠊⠑⠇⠙⠻" }, { "input": "infielder's", "output": "⠔⠋⠊⠑⠇⠙⠻⠄⠎" }, { "input": "infielders", "output": "⠔⠋⠊⠑⠇⠙⠻⠎" }, { "input": "infields", "output": "⠔⠋⠊⠑⠇⠙⠎" }, { "input": "infighter", "output": "⠔⠋⠊⠣⠞⠻" }, { "input": "infighter's", "output": "⠔⠋⠊⠣⠞⠻⠄⠎" }, { "input": "infighters", "output": "⠔⠋⠊⠣⠞⠻⠎" }, { "input": "infighting", "output": "⠔⠋⠊⠣⠞⠌" }, { "input": "infighting's", "output": "⠔⠋⠊⠣⠞⠌⠄⠎" }, { "input": "infiltrate", "output": "⠔⠋⠊⠇⠞⠗â â žâ ‘" }, { "input": "infiltrated", "output": "⠔⠋⠊⠇⠞⠗â â žâ «" }, { "input": "infiltrates", "output": "⠔⠋⠊⠇⠞⠗â â žâ ‘â Ž" }, { "input": "infiltrating", "output": "⠔⠋⠊⠇⠞⠗â â žâ Œ" }, { "input": "infiltration", "output": "⠔⠋⠊⠇⠞⠗⠠â " }, { "input": "infiltration's", "output": "⠔⠋⠊⠇⠞⠗⠠â â „â Ž" }, { "input": "infiltrator", "output": "⠔⠋⠊⠇⠞⠗â â žâ •â —" }, { "input": "infiltrator's", "output": "⠔⠋⠊⠇⠞⠗â â žâ •â —â „â Ž" }, { "input": "infiltrators", "output": "⠔⠋⠊⠇⠞⠗â â žâ •â —â Ž" }, { "input": "infinite", "output": "⠔⠋⠔⠊⠞⠑" }, { "input": "infinite's", "output": "⠔⠋⠔⠊⠞⠑⠄⠎" }, { "input": "infinitely", "output": "⠔⠋⠔⠊⠞⠑⠇⠽" }, { "input": "infinitesimal", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â â ‡" }, { "input": "infinitesimal's", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â â ‡â „â Ž" }, { "input": "infinitesimally", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â  â ½" }, { "input": "infinitesimals", "output": "⠔⠋⠔⠊⠞⠑⠎⠊â â â ‡â Ž" }, { "input": "infinities", "output": "⠔⠋⠔⠊⠞⠊⠑⠎" }, { "input": "infinitival", "output": "⠔⠋⠔⠊⠞⠊⠧â â ‡" }, { "input": "infinitive", "output": "⠔⠋⠔⠊⠞⠊⠧⠑" }, { "input": "infinitive's", "output": "⠔⠋⠔⠊⠞⠊⠧⠑⠄⠎" }, { "input": "infinitives", "output": "⠔⠋⠔⠊⠞⠊⠧⠑⠎" }, { "input": "infinitude", "output": "⠔⠋⠔⠊⠞⠥⠙⠑" }, { "input": "infinitude's", "output": "⠔⠋⠔⠊⠞⠥⠙⠑⠄⠎" }, { "input": "infinity", "output": "⠔⠋⠔⠰⠽" }, { "input": "infinity's", "output": "⠔⠋⠔⠰⠽⠄⠎" }, { "input": "infirm", "output": "⠔⠋⠊⠗â " }, { "input": "infirmaries", "output": "⠔⠋⠊⠗â â œâ Šâ ‘â Ž" }, { "input": "infirmary", "output": "⠔⠋⠊⠗â â œâ ½" }, { "input": "infirmary's", "output": "⠔⠋⠊⠗â â œâ ½â „â Ž" }, { "input": "infirmities", "output": "⠔⠋⠊⠗â â Šâ žâ Šâ ‘â Ž" }, { "input": "infirmity", "output": "⠔⠋⠊⠗â â °â ½" }, { "input": "infirmity's", "output": "⠔⠋⠊⠗â â °â ½â „â Ž" }, { "input": "infix", "output": "⠔⠋⠊⠭" }, { "input": "inflame", "output": "⠔⠋⠇â â â ‘" }, { "input": "inflamed", "output": "⠔⠋⠇â â â «" }, { "input": "inflames", "output": "⠔⠋⠇â â â ‘â Ž" }, { "input": "inflaming", "output": "⠔⠋⠇â â â Œ" }, { "input": "inflammability", "output": "⠔⠋⠇â â â â â ƒâ Šâ ‡â °â ½" }, { "input": "inflammability's", "output": "⠔⠋⠇â â â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inflammable", "output": "⠔⠋⠇â â â â â ¼" }, { "input": "inflammation", "output": "⠔⠋⠇â â â â  â " }, { "input": "inflammation's", "output": "⠔⠋⠇â â â â  â â „â Ž" }, { "input": "inflammations", "output": "⠔⠋⠇â â â â  â â Ž" }, { "input": "inflammatory", "output": "⠔⠋⠇â â â â â žâ •â —â ½" }, { "input": "inflatable", "output": "⠔⠋⠇â â žâ â ¼" }, { "input": "inflatable's", "output": "⠔⠋⠇â â žâ â ¼â „â Ž" }, { "input": "inflatables", "output": "⠔⠋⠇â â žâ â ¼â Ž" }, { "input": "inflate", "output": "⠔⠋⠇â â žâ ‘" }, { "input": "inflated", "output": "⠔⠋⠇â â žâ «" }, { "input": "inflates", "output": "⠔⠋⠇â â žâ ‘â Ž" }, { "input": "inflating", "output": "⠔⠋⠇â â žâ Œ" }, { "input": "inflation", "output": "⠔⠋⠇⠠â " }, { "input": "inflation's", "output": "⠔⠋⠇⠠â â „â Ž" }, { "input": "inflationary", "output": "⠔⠋⠇⠠â â œâ ½" }, { "input": "inflect", "output": "⠔⠋⠇⠑⠉⠞" }, { "input": "inflected", "output": "⠔⠋⠇⠑⠉⠞⠫" }, { "input": "inflecting", "output": "⠔⠋⠇⠑⠉⠞⠌" }, { "input": "inflection", "output": "⠔⠋⠇⠑⠉⠰â " }, { "input": "inflection's", "output": "⠔⠋⠇⠑⠉⠰â â „â Ž" }, { "input": "inflectional", "output": "⠔⠋⠇⠑⠉⠰â â â ‡" }, { "input": "inflections", "output": "⠔⠋⠇⠑⠉⠰â â Ž" }, { "input": "inflects", "output": "⠔⠋⠇⠑⠉⠞⠎" }, { "input": "inflexibility", "output": "⠔⠋⠇⠑⠭⠊⠃⠊⠇⠰⠽" }, { "input": "inflexibility's", "output": "⠔⠋⠇⠑⠭⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "inflexible", "output": "⠔⠋⠇⠑⠭⠊⠼" }, { "input": "inflexibly", "output": "⠔⠋⠇⠑⠭⠊⠃⠇⠽" }, { "input": "inflict", "output": "⠔⠋⠇⠊⠉⠞" }, { "input": "inflicted", "output": "⠔⠋⠇⠊⠉⠞⠫" }, { "input": "inflicting", "output": "⠔⠋⠇⠊⠉⠞⠌" }, { "input": "infliction", "output": "⠔⠋⠇⠊⠉⠰â " }, { "input": "infliction's", "output": "⠔⠋⠇⠊⠉⠰â â „â Ž" }, { "input": "inflictive", "output": "⠔⠋⠇⠊⠉⠞⠊⠧⠑" }, { "input": "inflicts", "output": "⠔⠋⠇⠊⠉⠞⠎" }, { "input": "inflorescence", "output": "⠔⠋⠇⠕⠗⠑⠎⠉⠰⠑" }, { "input": "inflorescence's", "output": "⠔⠋⠇⠕⠗⠑⠎⠉⠰⠑⠄⠎" }, { "input": "inflorescent", "output": "⠔⠋⠇⠕⠗⠑⠎⠉⠢⠞" }, { "input": "inflow", "output": "⠔⠋⠇⠪" }, { "input": "influence", "output": "⠔⠋⠇⠥⠰⠑" }, { "input": "influence's", "output": "⠔⠋⠇⠥⠰⠑⠄⠎" }, { "input": "influenced", "output": "⠔⠋⠇⠥⠰⠑⠙" }, { "input": "influences", "output": "⠔⠋⠇⠥⠰⠑⠎" }, { "input": "influencing", "output": "⠔⠋⠇⠥⠢⠉⠌" }, { "input": "influential", "output": "⠔⠋⠇⠥⠢⠞⠊â â ‡" }, { "input": "influentially", "output": "⠔⠋⠇⠥⠢⠞⠊⠠⠽" }, { "input": "influenza", "output": "⠔⠋⠇⠥⠢⠵â " }, { "input": "influenza's", "output": "⠔⠋⠇⠥⠢⠵â â „â Ž" }, { "input": "influx", "output": "⠔⠋⠇⠥⠭" }, { "input": "influx's", "output": "⠔⠋⠇⠥⠭⠄⠎" }, { "input": "influxes", "output": "⠔⠋⠇⠥⠭⠑⠎" }, { "input": "info", "output": "⠔⠋⠕" }, { "input": "info's", "output": "⠔⠋⠕⠄⠎" }, { "input": "infomercial", "output": "⠔⠋⠕â â »â ‰â Šâ â ‡" }, { "input": "infomercial's", "output": "⠔⠋⠕â â »â ‰â Šâ â ‡â „â Ž" }, { "input": "infomercials", "output": "⠔⠋⠕â â »â ‰â Šâ â ‡â Ž" }, { "input": "inform", "output": "⠔⠿â " }, { "input": "informal", "output": "⠔⠿â â â ‡" }, { "input": "informality", "output": "⠔⠿â â â ‡â °â ½" }, { "input": "informality's", "output": "⠔⠿â â â ‡â °â ½â „â Ž" }, { "input": "informally", "output": "⠔⠿â â  â ½" }, { "input": "informant", "output": "⠔⠿â â â â ž" }, { "input": "informant's", "output": "⠔⠿â â â â žâ „â Ž" }, { "input": "informants", "output": "⠔⠿â â â â žâ Ž" }, { "input": "information", "output": "⠔⠿â â  â " }, { "input": "information's", "output": "⠔⠿â â  â â „â Ž" }, { "input": "informational", "output": "⠔⠿â â  â â â ‡" }, { "input": "informative", "output": "⠔⠿â â â žâ Šâ §â ‘" }, { "input": "informatively", "output": "⠔⠿â â â žâ Šâ §â ‘⠇⠽" }, { "input": "informativeness", "output": "⠔⠿â â â žâ Šâ §â ‘â °â Ž" }, { "input": "informativeness's", "output": "⠔⠿â â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "informed", "output": "⠔⠿â â «" }, { "input": "informer", "output": "⠔⠿â â »" }, { "input": "informer's", "output": "⠔⠿â â »â „â Ž" }, { "input": "informers", "output": "⠔⠿â â »â Ž" }, { "input": "informing", "output": "⠔⠿â â Œ" }, { "input": "informs", "output": "⠔⠿â â Ž" }, { "input": "infotainment", "output": "⠔⠋⠕⠞â â ”â °â ž" }, { "input": "infotainment's", "output": "⠔⠋⠕⠞â â ”â °â žâ „â Ž" }, { "input": "infra", "output": "⠔⠋⠗â " }, { "input": "infraction", "output": "⠔⠋⠗â â ‰â °â " }, { "input": "infraction's", "output": "⠔⠋⠗â â ‰â °â â „â Ž" }, { "input": "infractions", "output": "⠔⠋⠗â â ‰â °â â Ž" }, { "input": "infrared", "output": "⠔⠋⠗â â —â «" }, { "input": "infrared's", "output": "⠔⠋⠗â â —â «â „â Ž" }, { "input": "infrasonic", "output": "⠔⠋⠗â â Žâ •â â Šâ ‰" }, { "input": "infrastructure", "output": "⠔⠋⠗â â Œâ —⠥⠉⠞⠥⠗⠑" }, { "input": "infrastructure's", "output": "⠔⠋⠗â â Œâ —⠥⠉⠞⠥⠗⠑⠄⠎" }, { "input": "infrastructures", "output": "⠔⠋⠗â â Œâ —⠥⠉⠞⠥⠗⠑⠎" }, { "input": "infrequence", "output": "⠔⠋⠗⠑⠟⠥⠰⠑" }, { "input": "infrequence's", "output": "⠔⠋⠗⠑⠟⠥⠰⠑⠄⠎" }, { "input": "infrequency", "output": "⠔⠋⠗⠑⠟⠥⠢⠉⠽" }, { "input": "infrequency's", "output": "⠔⠋⠗⠑⠟⠥⠢⠉⠽⠄⠎" }, { "input": "infrequent", "output": "⠔⠋⠗⠑⠟⠥⠢⠞" }, { "input": "infrequently", "output": "⠔⠋⠗⠑⠟⠥⠢⠞⠇⠽" }, { "input": "infringe", "output": "⠔⠋⠗⠌⠑" }, { "input": "infringed", "output": "⠔⠋⠗⠌⠫" }, { "input": "infringement", "output": "⠔⠋⠗⠌⠑⠰⠞" }, { "input": "infringement's", "output": "⠔⠋⠗⠌⠑⠰⠞⠄⠎" }, { "input": "infringements", "output": "⠔⠋⠗⠌⠑⠰⠞⠎" }, { "input": "infringes", "output": "⠔⠋⠗⠌⠑⠎" }, { "input": "infringing", "output": "⠔⠋⠗⠌⠌" }, { "input": "infuriate", "output": "⠔⠋⠥⠗⠊â â žâ ‘" }, { "input": "infuriated", "output": "⠔⠋⠥⠗⠊â â žâ «" }, { "input": "infuriates", "output": "⠔⠋⠥⠗⠊â â žâ ‘â Ž" }, { "input": "infuriating", "output": "⠔⠋⠥⠗⠊â â žâ Œ" }, { "input": "infuriatingly", "output": "⠔⠋⠥⠗⠊â â žâ Œâ ‡â ½" }, { "input": "infuse", "output": "⠔⠋⠥⠎⠑" }, { "input": "infused", "output": "⠔⠋⠥⠎⠫" }, { "input": "infuser", "output": "⠔⠋⠥⠎⠻" }, { "input": "infuser's", "output": "⠔⠋⠥⠎⠻⠄⠎" }, { "input": "infusers", "output": "⠔⠋⠥⠎⠻⠎" }, { "input": "infuses", "output": "⠔⠋⠥⠎⠑⠎" }, { "input": "infusing", "output": "⠔⠋⠥⠎⠌" }, { "input": "infusion", "output": "⠔⠋⠥⠨â " }, { "input": "infusion's", "output": "⠔⠋⠥⠨â â „â Ž" }, { "input": "infusions", "output": "⠔⠋⠥⠨â â Ž" }, { "input": "ingenious", "output": "⠔⠛⠢⠊⠳⠎" }, { "input": "ingeniously", "output": "⠔⠛⠢⠊⠳⠎⠇⠽" }, { "input": "ingeniousness", "output": "⠔⠛⠢⠊⠳⠎⠰⠎" }, { "input": "ingeniousness's", "output": "⠔⠛⠢⠊⠳⠎⠰⠎⠄⠎" }, { "input": "ingenuity", "output": "⠔⠛⠢⠥⠰⠽" }, { "input": "ingenuity's", "output": "⠔⠛⠢⠥⠰⠽⠄⠎" }, { "input": "ingenuous", "output": "⠔⠛⠢⠥⠳⠎" }, { "input": "ingenuously", "output": "⠔⠛⠢⠥⠳⠎⠇⠽" }, { "input": "ingenuousness", "output": "⠔⠛⠢⠥⠳⠎⠰⠎" }, { "input": "ingenuousness's", "output": "⠔⠛⠢⠥⠳⠎⠰⠎⠄⠎" }, { "input": "ingest", "output": "⠔⠛⠑⠌" }, { "input": "ingested", "output": "⠔⠛⠑⠌⠫" }, { "input": "ingesting", "output": "⠔⠛⠑⠌⠌" }, { "input": "ingestion", "output": "⠔⠛⠑⠎⠰â " }, { "input": "ingestion's", "output": "⠔⠛⠑⠎⠰â â „â Ž" }, { "input": "ingests", "output": "⠔⠛⠑⠌⠎" }, { "input": "inglorious", "output": "⠔⠛⠇⠕⠗⠊⠳⠎" }, { "input": "ingot", "output": "⠔⠛⠕⠞" }, { "input": "ingot's", "output": "⠔⠛⠕⠞⠄⠎" }, { "input": "ingots", "output": "⠔⠛⠕⠞⠎" }, { "input": "ingrain", "output": "⠔⠛⠗â â ”" }, { "input": "ingrain's", "output": "⠔⠛⠗â â ”â „â Ž" }, { "input": "ingrained", "output": "⠔⠛⠗â â ”â «" }, { "input": "ingraining", "output": "⠔⠛⠗â â ”â Œ" }, { "input": "ingrains", "output": "⠔⠛⠗â â ”â Ž" }, { "input": "ingrate", "output": "⠔⠛⠗â â žâ ‘" }, { "input": "ingrate's", "output": "⠔⠛⠗â â žâ ‘â „â Ž" }, { "input": "ingrates", "output": "⠔⠛⠗â â žâ ‘â Ž" }, { "input": "ingratiate", "output": "⠔⠛⠗â â žâ Šâ â žâ ‘" }, { "input": "ingratiated", "output": "⠔⠛⠗â â žâ Šâ â žâ «" }, { "input": "ingratiates", "output": "⠔⠛⠗â â žâ Šâ â žâ ‘â Ž" }, { "input": "ingratiating", "output": "⠔⠛⠗â â žâ Šâ â žâ Œ" }, { "input": "ingratiatingly", "output": "⠔⠛⠗â â žâ Šâ â žâ Œâ ‡â ½" }, { "input": "ingratiation", "output": "⠔⠛⠗â â žâ Šâ  â " }, { "input": "ingratiation's", "output": "⠔⠛⠗â â žâ Šâ  â â „â Ž" }, { "input": "ingratitude", "output": "⠔⠛⠗â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "ingratitude's", "output": "⠔⠛⠗â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "ingredient", "output": "⠔⠛⠗⠫⠊⠢⠞" }, { "input": "ingredient's", "output": "⠔⠛⠗⠫⠊⠢⠞⠄⠎" }, { "input": "ingredients", "output": "⠔⠛⠗⠫⠊⠢⠞⠎" }, { "input": "ingress", "output": "⠔⠛⠗⠑⠎⠎" }, { "input": "ingress's", "output": "⠔⠛⠗⠑⠎⠎⠄⠎" }, { "input": "ingresses", "output": "⠔⠛⠗⠑⠎⠎⠑⠎" }, { "input": "ingrown", "output": "⠔⠛⠗⠪â " }, { "input": "inguinal", "output": "⠔⠛⠥⠔â â ‡" }, { "input": "inhabit", "output": "⠔⠓â â ƒâ Šâ ž" }, { "input": "inhabitable", "output": "⠔⠓â â ƒâ Šâ žâ â ¼" }, { "input": "inhabitant", "output": "⠔⠓â â ƒâ Šâ žâ â â ž" }, { "input": "inhabitant's", "output": "⠔⠓â â ƒâ Šâ žâ â â žâ „â Ž" }, { "input": "inhabitants", "output": "⠔⠓â â ƒâ Šâ žâ â â žâ Ž" }, { "input": "inhabited", "output": "⠔⠓â â ƒâ Šâ žâ «" }, { "input": "inhabiting", "output": "⠔⠓â â ƒâ Šâ žâ Œ" }, { "input": "inhabits", "output": "⠔⠓â â ƒâ Šâ žâ Ž" }, { "input": "inhalant", "output": "⠔⠓â â ‡â â â ž" }, { "input": "inhalant's", "output": "⠔⠓â â ‡â â â žâ „â Ž" }, { "input": "inhalants", "output": "⠔⠓â â ‡â â â žâ Ž" }, { "input": "inhalation", "output": "⠔⠓â â ‡â  â " }, { "input": "inhalation's", "output": "⠔⠓â â ‡â  â â „â Ž" }, { "input": "inhalations", "output": "⠔⠓â â ‡â  â â Ž" }, { "input": "inhalator", "output": "⠔⠓â â ‡â â žâ •â —" }, { "input": "inhalator's", "output": "⠔⠓â â ‡â â žâ •â —â „â Ž" }, { "input": "inhalators", "output": "⠔⠓â â ‡â â žâ •â —â Ž" }, { "input": "inhale", "output": "⠔⠓â â ‡â ‘" }, { "input": "inhaled", "output": "⠔⠓â â ‡â «" }, { "input": "inhaler", "output": "⠔⠓â â ‡â »" }, { "input": "inhaler's", "output": "⠔⠓â â ‡â »â „â Ž" }, { "input": "inhalers", "output": "⠔⠓â â ‡â »â Ž" }, { "input": "inhales", "output": "⠔⠓â â ‡â ‘â Ž" }, { "input": "inhaling", "output": "⠔⠓â â ‡â Œ" }, { "input": "inharmonious", "output": "⠔⠓⠜â â •â â Šâ ³â Ž" }, { "input": "inhere", "output": "â ”â â “" }, { "input": "inhered", "output": "⠔⠓⠻⠫" }, { "input": "inherent", "output": "⠔⠓⠻⠢⠞" }, { "input": "inherently", "output": "⠔⠓⠻⠢⠞⠇⠽" }, { "input": "inheres", "output": "â ”â â “â Ž" }, { "input": "inhering", "output": "⠔⠓⠻⠌" }, { "input": "inherit", "output": "⠔⠓⠻⠊⠞" }, { "input": "inheritable", "output": "⠔⠓⠻⠊⠞â â ¼" }, { "input": "inheritance", "output": "⠔⠓⠻⠊⠞⠨⠑" }, { "input": "inheritance's", "output": "⠔⠓⠻⠊⠞⠨⠑⠄⠎" }, { "input": "inheritances", "output": "⠔⠓⠻⠊⠞⠨⠑⠎" }, { "input": "inherited", "output": "⠔⠓⠻⠊⠞⠫" }, { "input": "inheriting", "output": "⠔⠓⠻⠊⠞⠌" }, { "input": "inheritor", "output": "⠔⠓⠻⠊⠞⠕⠗" }, { "input": "inheritor's", "output": "⠔⠓⠻⠊⠞⠕⠗⠄⠎" }, { "input": "inheritors", "output": "⠔⠓⠻⠊⠞⠕⠗⠎" }, { "input": "inherits", "output": "⠔⠓⠻⠊⠞⠎" }, { "input": "inhibit", "output": "⠔⠓⠊⠃⠊⠞" }, { "input": "inhibited", "output": "⠔⠓⠊⠃⠊⠞⠫" }, { "input": "inhibiting", "output": "⠔⠓⠊⠃⠊⠞⠌" }, { "input": "inhibition", "output": "⠔⠓⠊⠃⠊⠰â " }, { "input": "inhibition's", "output": "⠔⠓⠊⠃⠊⠰â â „â Ž" }, { "input": "inhibitions", "output": "⠔⠓⠊⠃⠊⠰â â Ž" }, { "input": "inhibitor", "output": "⠔⠓⠊⠃⠊⠞⠕⠗" }, { "input": "inhibitor's", "output": "⠔⠓⠊⠃⠊⠞⠕⠗⠄⠎" }, { "input": "inhibitors", "output": "⠔⠓⠊⠃⠊⠞⠕⠗⠎" }, { "input": "inhibitory", "output": "⠔⠓⠊⠃⠊⠞⠕⠗⠽" }, { "input": "inhibits", "output": "⠔⠓⠊⠃⠊⠞⠎" }, { "input": "inhospitable", "output": "⠔⠓⠕⠎â â Šâ žâ â ¼" }, { "input": "inhospitably", "output": "⠔⠓⠕⠎â â Šâ žâ â ƒâ ‡â ½" }, { "input": "inhuman", "output": "⠔⠓⠥â â â " }, { "input": "inhumane", "output": "⠔⠓⠥â â â â ‘" }, { "input": "inhumanely", "output": "⠔⠓⠥â â â â ‘⠇⠽" }, { "input": "inhumanities", "output": "⠔⠓⠥â â â â Šâ žâ Šâ ‘â Ž" }, { "input": "inhumanity", "output": "⠔⠓⠥â â â â °â ½" }, { "input": "inhumanity's", "output": "⠔⠓⠥â â â â °â ½â „â Ž" }, { "input": "inhumanly", "output": "⠔⠓⠥â â â â ‡â ½" }, { "input": "inimical", "output": "⠔⠊â â Šâ ‰â â ‡" }, { "input": "inimically", "output": "⠔⠊â â Šâ ‰â  â ½" }, { "input": "inimitable", "output": "⠔⠊â â Šâ žâ â ¼" }, { "input": "inimitably", "output": "⠔⠊â â Šâ žâ â ƒâ ‡â ½" }, { "input": "iniquities", "output": "⠔⠊⠟⠥⠊⠞⠊⠑⠎" }, { "input": "iniquitous", "output": "⠔⠊⠟⠥⠊⠞⠳⠎" }, { "input": "iniquitously", "output": "⠔⠊⠟⠥⠊⠞⠳⠎⠇⠽" }, { "input": "iniquity", "output": "⠔⠊⠟⠥⠰⠽" }, { "input": "iniquity's", "output": "⠔⠊⠟⠥⠰⠽⠄⠎" }, { "input": "initial", "output": "⠔⠊⠞⠊â â ‡" }, { "input": "initial's", "output": "⠔⠊⠞⠊â â ‡â „â Ž" }, { "input": "initialed", "output": "⠔⠊⠞⠊â â ‡â «" }, { "input": "initialing", "output": "⠔⠊⠞⠊â â ‡â Œ" }, { "input": "initialization", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ  â " }, { "input": "initialize", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ ‘" }, { "input": "initialized", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ «" }, { "input": "initializes", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "initializing", "output": "⠔⠊⠞⠊â â ‡â Šâ µâ Œ" }, { "input": "initially", "output": "⠔⠊⠞⠊⠠⠽" }, { "input": "initials", "output": "⠔⠊⠞⠊â â ‡â Ž" }, { "input": "initiate", "output": "⠔⠊⠞⠊â â žâ ‘" }, { "input": "initiate's", "output": "⠔⠊⠞⠊â â žâ ‘â „â Ž" }, { "input": "initiated", "output": "⠔⠊⠞⠊â â žâ «" }, { "input": "initiates", "output": "⠔⠊⠞⠊â â žâ ‘â Ž" }, { "input": "initiating", "output": "⠔⠊⠞⠊â â žâ Œ" }, { "input": "initiation", "output": "⠔⠊⠞⠊⠠â " }, { "input": "initiation's", "output": "⠔⠊⠞⠊⠠â â „â Ž" }, { "input": "initiations", "output": "⠔⠊⠞⠊⠠â â Ž" }, { "input": "initiative", "output": "⠔⠊⠞⠊â â žâ Šâ §â ‘" }, { "input": "initiative's", "output": "⠔⠊⠞⠊â â žâ Šâ §â ‘â „â Ž" }, { "input": "initiatives", "output": "⠔⠊⠞⠊â â žâ Šâ §â ‘â Ž" }, { "input": "initiator", "output": "⠔⠊⠞⠊â â žâ •â —" }, { "input": "initiator's", "output": "⠔⠊⠞⠊â â žâ •â —â „â Ž" }, { "input": "initiators", "output": "⠔⠊⠞⠊â â žâ •â —â Ž" }, { "input": "initiatory", "output": "⠔⠊⠞⠊â â žâ •â —â ½" }, { "input": "inject", "output": "⠔⠚⠑⠉⠞" }, { "input": "injected", "output": "⠔⠚⠑⠉⠞⠫" }, { "input": "injecting", "output": "⠔⠚⠑⠉⠞⠌" }, { "input": "injection", "output": "⠔⠚⠑⠉⠰â " }, { "input": "injection's", "output": "⠔⠚⠑⠉⠰â â „â Ž" }, { "input": "injections", "output": "⠔⠚⠑⠉⠰â â Ž" }, { "input": "injector", "output": "⠔⠚⠑⠉⠞⠕⠗" }, { "input": "injector's", "output": "⠔⠚⠑⠉⠞⠕⠗⠄⠎" }, { "input": "injectors", "output": "⠔⠚⠑⠉⠞⠕⠗⠎" }, { "input": "injects", "output": "⠔⠚⠑⠉⠞⠎" }, { "input": "injudicious", "output": "⠔⠚⠥⠙⠊⠉⠊⠳⠎" }, { "input": "injudiciousness", "output": "⠔⠚⠥⠙⠊⠉⠊⠳⠎⠰⠎" }, { "input": "injudiciousness's", "output": "⠔⠚⠥⠙⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "injunction", "output": "⠔⠚⠥â â ‰â °â " }, { "input": "injunction's", "output": "⠔⠚⠥â â ‰â °â â „â Ž" }, { "input": "injunctions", "output": "⠔⠚⠥â â ‰â °â â Ž" }, { "input": "injure", "output": "⠔⠚⠥⠗⠑" }, { "input": "injured", "output": "⠔⠚⠥⠗⠫" }, { "input": "injurer", "output": "⠔⠚⠥⠗⠻" }, { "input": "injurer's", "output": "⠔⠚⠥⠗⠻⠄⠎" }, { "input": "injurers", "output": "⠔⠚⠥⠗⠻⠎" }, { "input": "injures", "output": "⠔⠚⠥⠗⠑⠎" }, { "input": "injuries", "output": "⠔⠚⠥⠗⠊⠑⠎" }, { "input": "injuring", "output": "⠔⠚⠥⠗⠌" }, { "input": "injurious", "output": "⠔⠚⠥⠗⠊⠳⠎" }, { "input": "injury", "output": "⠔⠚⠥⠗⠽" }, { "input": "injury's", "output": "⠔⠚⠥⠗⠽⠄⠎" }, { "input": "injustice", "output": "⠔⠚⠥⠌⠊⠉⠑" }, { "input": "injustice's", "output": "⠔⠚⠥⠌⠊⠉⠑⠄⠎" }, { "input": "injustices", "output": "⠔⠚⠥⠌⠊⠉⠑⠎" }, { "input": "ink", "output": "⠔⠅" }, { "input": "ink's", "output": "⠔⠅⠄⠎" }, { "input": "inkblot", "output": "⠔⠅⠃⠇⠕⠞" }, { "input": "inkblot's", "output": "⠔⠅⠃⠇⠕⠞⠄⠎" }, { "input": "inkblots", "output": "⠔⠅⠃⠇⠕⠞⠎" }, { "input": "inked", "output": "⠔⠅⠫" }, { "input": "inkier", "output": "⠔⠅⠊⠻" }, { "input": "inkiest", "output": "⠔⠅⠊⠑⠌" }, { "input": "inkiness", "output": "⠔⠅⠊⠰⠎" }, { "input": "inkiness's", "output": "⠔⠅⠊⠰⠎⠄⠎" }, { "input": "inking", "output": "⠔⠅⠌" }, { "input": "inkling", "output": "⠔⠅⠇⠌" }, { "input": "inkling's", "output": "⠔⠅⠇⠌⠄⠎" }, { "input": "inklings", "output": "⠔⠅⠇⠌⠎" }, { "input": "inks", "output": "⠔⠅⠎" }, { "input": "inkwell", "output": "⠔⠅⠺⠑⠇⠇" }, { "input": "inkwell's", "output": "⠔⠅⠺⠑⠇⠇⠄⠎" }, { "input": "inkwells", "output": "⠔⠅⠺⠑⠇⠇⠎" }, { "input": "inky", "output": "⠔⠅⠽" }, { "input": "inlaid", "output": "⠔⠇â â Šâ ™" }, { "input": "inland", "output": "⠔⠇⠯" }, { "input": "inland's", "output": "⠔⠇⠯⠄⠎" }, { "input": "inlay", "output": "⠔⠇â â ½" }, { "input": "inlay's", "output": "⠔⠇â â ½â „â Ž" }, { "input": "inlaying", "output": "⠔⠇â â ½â Œ" }, { "input": "inlays", "output": "⠔⠇â â ½â Ž" }, { "input": "inlet", "output": "⠔⠇⠑⠞" }, { "input": "inlet's", "output": "⠔⠇⠑⠞⠄⠎" }, { "input": "inlets", "output": "⠔⠇⠑⠞⠎" }, { "input": "inline", "output": "⠔⠇⠔⠑" }, { "input": "inmate", "output": "â ”â â â žâ ‘" }, { "input": "inmate's", "output": "â ”â â â žâ ‘â „â Ž" }, { "input": "inmates", "output": "â ”â â â žâ ‘â Ž" }, { "input": "inmost", "output": "â ”â â •â Œ" }, { "input": "inn", "output": "â ”â " }, { "input": "inn's", "output": "â ”â â „â Ž" }, { "input": "innards", "output": "â ”â â œâ ™â Ž" }, { "input": "innards's", "output": "â ”â â œâ ™â Žâ „â Ž" }, { "input": "innate", "output": "â ”â â â žâ ‘" }, { "input": "innately", "output": "â ”â â â žâ ‘⠇⠽" }, { "input": "innateness", "output": "â ”â â â žâ ‘â °â Ž" }, { "input": "innateness's", "output": "â ”â â â žâ ‘â °â Žâ „â Ž" }, { "input": "inner", "output": "â ”â â »" }, { "input": "innermost", "output": "â ”â â »â â •â Œ" }, { "input": "innersole", "output": "â ”â â »â Žâ •⠇⠑" }, { "input": "innersole's", "output": "â ”â â »â Žâ •⠇⠑⠄⠎" }, { "input": "innersoles", "output": "â ”â â »â Žâ •⠇⠑⠎" }, { "input": "innerspring", "output": "â ”â â »â Žâ â —â Œ" }, { "input": "innervate", "output": "â ”â â »â §â â žâ ‘" }, { "input": "innervated", "output": "â ”â â »â §â â žâ «" }, { "input": "innervates", "output": "â ”â â »â §â â žâ ‘â Ž" }, { "input": "innervating", "output": "â ”â â »â §â â žâ Œ" }, { "input": "innervation", "output": "â ”â â »â §â  â " }, { "input": "innervation's", "output": "â ”â â »â §â  â â „â Ž" }, { "input": "inning", "output": "â ”â â Œ" }, { "input": "inning's", "output": "â ”â â Œâ „â Ž" }, { "input": "innings", "output": "â ”â â Œâ Ž" }, { "input": "innkeeper", "output": "â ”â â …â ‘â ‘â â »" }, { "input": "innkeeper's", "output": "â ”â â …â ‘â ‘â â »â „â Ž" }, { "input": "innkeepers", "output": "â ”â â …â ‘â ‘â â »â Ž" }, { "input": "innocence", "output": "â ”â â •⠉⠰⠑" }, { "input": "innocence's", "output": "â ”â â •⠉⠰⠑⠄⠎" }, { "input": "innocent", "output": "â ”â â •⠉⠢⠞" }, { "input": "innocent's", "output": "â ”â â •⠉⠢⠞⠄⠎" }, { "input": "innocently", "output": "â ”â â •⠉⠢⠞⠇⠽" }, { "input": "innocents", "output": "â ”â â •⠉⠢⠞⠎" }, { "input": "innocuous", "output": "â ”â â •⠉⠥⠳⠎" }, { "input": "innocuously", "output": "â ”â â •⠉⠥⠳⠎⠇⠽" }, { "input": "innocuousness's", "output": "â ”â â •⠉⠥⠳⠎⠰⠎⠄⠎" }, { "input": "innovate", "output": "â ”â â •â §â â žâ ‘" }, { "input": "innovated", "output": "â ”â â •â §â â žâ «" }, { "input": "innovates", "output": "â ”â â •â §â â žâ ‘â Ž" }, { "input": "innovating", "output": "â ”â â •â §â â žâ Œ" }, { "input": "innovation", "output": "â ”â â •â §â  â " }, { "input": "innovation's", "output": "â ”â â •â §â  â â „â Ž" }, { "input": "innovations", "output": "â ”â â •â §â  â â Ž" }, { "input": "innovative", "output": "â ”â â •â §â â žâ Šâ §â ‘" }, { "input": "innovator", "output": "â ”â â •â §â â žâ •â —" }, { "input": "innovator's", "output": "â ”â â •â §â â žâ •â —â „â Ž" }, { "input": "innovators", "output": "â ”â â •â §â â žâ •â —â Ž" }, { "input": "inns", "output": "â ”â â Ž" }, { "input": "innuendo", "output": "â ”â â ¥â ¢â ™â •" }, { "input": "innuendo's", "output": "â ”â â ¥â ¢â ™â •â „â Ž" }, { "input": "innuendos", "output": "â ”â â ¥â ¢â ™â •â Ž" }, { "input": "innumerable", "output": "â ”â â ¥â â »â â ¼" }, { "input": "innumerably", "output": "â ”â â ¥â â »â â ƒâ ‡â ½" }, { "input": "innumeracy's", "output": "â ”â â ¥â â »â â ‰â ½â „â Ž" }, { "input": "inoculate", "output": "⠔⠕⠉⠥⠇â â žâ ‘" }, { "input": "inoculated", "output": "⠔⠕⠉⠥⠇â â žâ «" }, { "input": "inoculates", "output": "⠔⠕⠉⠥⠇â â žâ ‘â Ž" }, { "input": "inoculating", "output": "⠔⠕⠉⠥⠇â â žâ Œ" }, { "input": "inoculation", "output": "⠔⠕⠉⠥⠇⠠â " }, { "input": "inoculation's", "output": "⠔⠕⠉⠥⠇⠠â â „â Ž" }, { "input": "inoculations", "output": "⠔⠕⠉⠥⠇⠠â â Ž" }, { "input": "inoffensive", "output": "⠔⠷⠋⠢⠎⠊⠧⠑" }, { "input": "inoffensively", "output": "⠔⠷⠋⠢⠎⠊⠧⠑⠇⠽" }, { "input": "inoffensiveness", "output": "⠔⠷⠋⠢⠎⠊⠧⠑⠰⠎" }, { "input": "inoffensiveness's", "output": "⠔⠷⠋⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "inoperable", "output": "⠔⠕â â »â â ¼" }, { "input": "inoperative", "output": "⠔⠕â â »â â žâ Šâ §â ‘" }, { "input": "inopportune", "output": "⠔⠕â â â •â —â žâ ¥â â ‘" }, { "input": "inordinate", "output": "⠔⠕⠗⠙⠔â â žâ ‘" }, { "input": "inordinately", "output": "⠔⠕⠗⠙⠔â â žâ ‘⠇⠽" }, { "input": "inorganic", "output": "⠔⠕⠗⠛â â â Šâ ‰" }, { "input": "inorganically", "output": "⠔⠕⠗⠛â â â Šâ ‰â  â ½" }, { "input": "inpatient", "output": "â ”â â â žâ Šâ ¢â ž" }, { "input": "inpatient's", "output": "â ”â â â žâ Šâ ¢â žâ „â Ž" }, { "input": "inpatients", "output": "â ”â â â žâ Šâ ¢â žâ Ž" }, { "input": "input", "output": "â ”â â ¥â ž" }, { "input": "input's", "output": "â ”â â ¥â žâ „â Ž" }, { "input": "inputs", "output": "â ”â â ¥â žâ Ž" }, { "input": "inputted", "output": "â ”â â ¥â žâ žâ «" }, { "input": "inputting", "output": "â ”â â ¥â žâ žâ Œ" }, { "input": "inquest", "output": "⠔⠟⠥⠑⠌" }, { "input": "inquest's", "output": "⠔⠟⠥⠑⠌⠄⠎" }, { "input": "inquests", "output": "⠔⠟⠥⠑⠌⠎" }, { "input": "inquietude", "output": "⠔⠟⠥⠊⠑⠞⠥⠙⠑" }, { "input": "inquietude's", "output": "⠔⠟⠥⠊⠑⠞⠥⠙⠑⠄⠎" }, { "input": "inquire", "output": "⠔⠟⠥⠊⠗⠑" }, { "input": "inquired", "output": "⠔⠟⠥⠊⠗⠫" }, { "input": "inquirer", "output": "⠔⠟⠥⠊⠗⠻" }, { "input": "inquirer's", "output": "⠔⠟⠥⠊⠗⠻⠄⠎" }, { "input": "inquirers", "output": "⠔⠟⠥⠊⠗⠻⠎" }, { "input": "inquires", "output": "⠔⠟⠥⠊⠗⠑⠎" }, { "input": "inquiries", "output": "⠔⠟⠥⠊⠗⠊⠑⠎" }, { "input": "inquiring", "output": "⠔⠟⠥⠊⠗⠌" }, { "input": "inquiringly", "output": "⠔⠟⠥⠊⠗⠌⠇⠽" }, { "input": "inquiry", "output": "⠔⠟⠥⠊⠗⠽" }, { "input": "inquiry's", "output": "⠔⠟⠥⠊⠗⠽⠄⠎" }, { "input": "inquisition", "output": "⠔⠟⠥⠊⠎⠊⠰â " }, { "input": "inquisition's", "output": "⠔⠟⠥⠊⠎⠊⠰â â „â Ž" }, { "input": "inquisitional", "output": "⠔⠟⠥⠊⠎⠊⠰â â â ‡" }, { "input": "inquisitions", "output": "⠔⠟⠥⠊⠎⠊⠰â â Ž" }, { "input": "inquisitive", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑" }, { "input": "inquisitively", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "inquisitiveness", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑⠰⠎" }, { "input": "inquisitiveness's", "output": "⠔⠟⠥⠊⠎⠊⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "inquisitor", "output": "⠔⠟⠥⠊⠎⠊⠞⠕⠗" }, { "input": "inquisitor's", "output": "⠔⠟⠥⠊⠎⠊⠞⠕⠗⠄⠎" }, { "input": "inquisitors", "output": "⠔⠟⠥⠊⠎⠊⠞⠕⠗⠎" }, { "input": "inroad", "output": "⠔⠗⠕â â ™" }, { "input": "inroad's", "output": "⠔⠗⠕â â ™â „â Ž" }, { "input": "inroads", "output": "⠔⠗⠕â â ™â Ž" }, { "input": "inrush", "output": "⠔⠗⠥⠩" }, { "input": "inrush's", "output": "⠔⠗⠥⠩⠄⠎" }, { "input": "inrushes", "output": "⠔⠗⠥⠩⠑⠎" }, { "input": "ins", "output": "⠔⠎" }, { "input": "insane", "output": "⠔⠎â â â ‘" }, { "input": "insanely", "output": "⠔⠎â â â ‘⠇⠽" }, { "input": "insaner", "output": "⠔⠎â â â »" }, { "input": "insanest", "output": "⠔⠎â â â ‘â Œ" }, { "input": "insanity", "output": "⠔⠎â â â °â ½" }, { "input": "insanity's", "output": "⠔⠎â â â °â ½â „â Ž" }, { "input": "insatiability", "output": "⠔⠎â â žâ Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "insatiability's", "output": "⠔⠎â â žâ Šâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "insatiable", "output": "⠔⠎â â žâ Šâ â ¼" }, { "input": "insatiably", "output": "⠔⠎â â žâ Šâ â ƒâ ‡â ½" }, { "input": "inscribe", "output": "⠔⠎⠉⠗⠊⠃⠑" }, { "input": "inscribed", "output": "⠔⠎⠉⠗⠊⠃⠫" }, { "input": "inscriber", "output": "⠔⠎⠉⠗⠊⠃⠻" }, { "input": "inscriber's", "output": "⠔⠎⠉⠗⠊⠃⠻⠄⠎" }, { "input": "inscribers", "output": "⠔⠎⠉⠗⠊⠃⠻⠎" }, { "input": "inscribes", "output": "⠔⠎⠉⠗⠊⠃⠑⠎" }, { "input": "inscribing", "output": "⠔⠎⠉⠗⠊⠃⠌" }, { "input": "inscription", "output": "⠔⠎⠉⠗⠊â â °â " }, { "input": "inscription's", "output": "⠔⠎⠉⠗⠊â â °â â „â Ž" }, { "input": "inscriptions", "output": "⠔⠎⠉⠗⠊â â °â â Ž" }, { "input": "inscrutability's", "output": "⠔⠎⠉⠗⠥⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inscrutable", "output": "⠔⠎⠉⠗⠥⠞â â ¼" }, { "input": "inscrutableness", "output": "⠔⠎⠉⠗⠥⠞â â ¼â °â Ž" }, { "input": "inscrutableness's", "output": "⠔⠎⠉⠗⠥⠞â â ¼â °â Žâ „â Ž" }, { "input": "inscrutably", "output": "⠔⠎⠉⠗⠥⠞â â ƒâ ‡â ½" }, { "input": "inseam", "output": "⠔⠎⠂â " }, { "input": "inseam's", "output": "⠔⠎⠂â â „â Ž" }, { "input": "inseams", "output": "⠔⠎⠂â â Ž" }, { "input": "insect", "output": "⠔⠎⠑⠉⠞" }, { "input": "insect's", "output": "⠔⠎⠑⠉⠞⠄⠎" }, { "input": "insecticide", "output": "⠔⠎⠑⠉⠞⠊⠉⠊⠙⠑" }, { "input": "insecticide's", "output": "⠔⠎⠑⠉⠞⠊⠉⠊⠙⠑⠄⠎" }, { "input": "insecticides", "output": "⠔⠎⠑⠉⠞⠊⠉⠊⠙⠑⠎" }, { "input": "insectivore", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠑" }, { "input": "insectivore's", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠑⠄⠎" }, { "input": "insectivores", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠑⠎" }, { "input": "insectivorous", "output": "⠔⠎⠑⠉⠞⠊⠧⠕⠗⠳⠎" }, { "input": "insects", "output": "⠔⠎⠑⠉⠞⠎" }, { "input": "insecure", "output": "⠔⠎⠑⠉⠥⠗⠑" }, { "input": "insecurely", "output": "⠔⠎⠑⠉⠥⠗⠑⠇⠽" }, { "input": "insecurities", "output": "⠔⠎⠑⠉⠥⠗⠊⠞⠊⠑⠎" }, { "input": "insecurity", "output": "⠔⠎⠑⠉⠥⠗⠰⠽" }, { "input": "insecurity's", "output": "⠔⠎⠑⠉⠥⠗⠰⠽⠄⠎" }, { "input": "inseminate", "output": "⠔⠎⠑â â ”â â žâ ‘" }, { "input": "inseminated", "output": "⠔⠎⠑â â ”â â žâ «" }, { "input": "inseminates", "output": "⠔⠎⠑â â ”â â žâ ‘â Ž" }, { "input": "inseminating", "output": "⠔⠎⠑â â ”â â žâ Œ" }, { "input": "insemination", "output": "⠔⠎⠑â â ”â  â " }, { "input": "insemination's", "output": "⠔⠎⠑â â ”â  â â „â Ž" }, { "input": "insensate", "output": "⠔⠎⠢⠎â â žâ ‘" }, { "input": "insensibility", "output": "⠔⠎⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "insensibility's", "output": "⠔⠎⠢⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "insensible", "output": "⠔⠎⠢⠎⠊⠼" }, { "input": "insensibly", "output": "⠔⠎⠢⠎⠊⠃⠇⠽" }, { "input": "insensitive", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "insensitively", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "insensitivity", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠰⠽" }, { "input": "insensitivity's", "output": "⠔⠎⠢⠎⠊⠞⠊⠧⠰⠽⠄⠎" }, { "input": "insentience", "output": "⠔⠎⠢⠞⠊⠰⠑" }, { "input": "insentience's", "output": "⠔⠎⠢⠞⠊⠰⠑⠄⠎" }, { "input": "insentient", "output": "⠔⠎⠢⠞⠊⠢⠞" }, { "input": "inseparability", "output": "⠔⠎⠑â â œâ â ƒâ Šâ ‡â °â ½" }, { "input": "inseparability's", "output": "⠔⠎⠑â â œâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inseparable", "output": "⠔⠎⠑â â œâ â ¼" }, { "input": "inseparable's", "output": "⠔⠎⠑â â œâ â ¼â „â Ž" }, { "input": "inseparables", "output": "⠔⠎⠑â â œâ â ¼â Ž" }, { "input": "inseparably", "output": "⠔⠎⠑â â œâ â ƒâ ‡â ½" }, { "input": "insert", "output": "⠔⠎⠻⠞" }, { "input": "insert's", "output": "⠔⠎⠻⠞⠄⠎" }, { "input": "inserted", "output": "⠔⠎⠻⠞⠫" }, { "input": "inserting", "output": "⠔⠎⠻⠞⠌" }, { "input": "insertion", "output": "⠔⠎⠻⠰â " }, { "input": "insertion's", "output": "⠔⠎⠻⠰â â „â Ž" }, { "input": "insertions", "output": "⠔⠎⠻⠰â â Ž" }, { "input": "inserts", "output": "⠔⠎⠻⠞⠎" }, { "input": "inset", "output": "⠔⠎⠑⠞" }, { "input": "inset's", "output": "⠔⠎⠑⠞⠄⠎" }, { "input": "insets", "output": "⠔⠎⠑⠞⠎" }, { "input": "insetting", "output": "⠔⠎⠑⠞⠞⠌" }, { "input": "inshore", "output": "⠔⠩⠕⠗⠑" }, { "input": "inside", "output": "⠔⠎⠊⠙⠑" }, { "input": "inside's", "output": "⠔⠎⠊⠙⠑⠄⠎" }, { "input": "insider", "output": "⠔⠎⠊⠙⠻" }, { "input": "insider's", "output": "⠔⠎⠊⠙⠻⠄⠎" }, { "input": "insiders", "output": "⠔⠎⠊⠙⠻⠎" }, { "input": "insides", "output": "⠔⠎⠊⠙⠑⠎" }, { "input": "insidious", "output": "⠔⠎⠊⠙⠊⠳⠎" }, { "input": "insidiously", "output": "⠔⠎⠊⠙⠊⠳⠎⠇⠽" }, { "input": "insidiousness", "output": "⠔⠎⠊⠙⠊⠳⠎⠰⠎" }, { "input": "insidiousness's", "output": "⠔⠎⠊⠙⠊⠳⠎⠰⠎⠄⠎" }, { "input": "insight", "output": "⠔⠎⠊⠣⠞" }, { "input": "insight's", "output": "⠔⠎⠊⠣⠞⠄⠎" }, { "input": "insightful", "output": "⠔⠎⠊⠣⠞⠰⠇" }, { "input": "insights", "output": "⠔⠎⠊⠣⠞⠎" }, { "input": "insignia", "output": "⠔⠎⠊⠛â â Šâ " }, { "input": "insignia's", "output": "⠔⠎⠊⠛â â Šâ â „â Ž" }, { "input": "insignificance", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â ¨â ‘" }, { "input": "insignificance's", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â ¨â ‘â „â Ž" }, { "input": "insignificant", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â â â ž" }, { "input": "insignificantly", "output": "⠔⠎⠊⠛â â Šâ ‹â Šâ ‰â â â žâ ‡â ½" }, { "input": "insincere", "output": "⠔⠎⠔⠉⠻⠑" }, { "input": "insincerely", "output": "⠔⠎⠔⠉⠻⠑⠇⠽" }, { "input": "insincerity", "output": "⠔⠎⠔⠉⠻⠰⠽" }, { "input": "insincerity's", "output": "⠔⠎⠔⠉⠻⠰⠽⠄⠎" }, { "input": "insinuate", "output": "⠔⠎⠔⠥â â žâ ‘" }, { "input": "insinuated", "output": "⠔⠎⠔⠥â â žâ «" }, { "input": "insinuates", "output": "⠔⠎⠔⠥â â žâ ‘â Ž" }, { "input": "insinuating", "output": "⠔⠎⠔⠥â â žâ Œ" }, { "input": "insinuation", "output": "⠔⠎⠔⠥⠠â " }, { "input": "insinuation's", "output": "⠔⠎⠔⠥⠠â â „â Ž" }, { "input": "insinuations", "output": "⠔⠎⠔⠥⠠â â Ž" }, { "input": "insinuative", "output": "⠔⠎⠔⠥â â žâ Šâ §â ‘" }, { "input": "insinuator", "output": "⠔⠎⠔⠥â â žâ •â —" }, { "input": "insinuator's", "output": "⠔⠎⠔⠥â â žâ •â —â „â Ž" }, { "input": "insinuators", "output": "⠔⠎⠔⠥â â žâ •â —â Ž" }, { "input": "insipid", "output": "⠔⠎⠊â â Šâ ™" }, { "input": "insipidity's", "output": "⠔⠎⠊â â Šâ ™â °â ½â „â Ž" }, { "input": "insist", "output": "⠔⠎⠊⠌" }, { "input": "insisted", "output": "⠔⠎⠊⠌⠫" }, { "input": "insistence", "output": "⠔⠎⠊⠌⠰⠑" }, { "input": "insistence's", "output": "⠔⠎⠊⠌⠰⠑⠄⠎" }, { "input": "insistent", "output": "⠔⠎⠊⠌⠢⠞" }, { "input": "insistently", "output": "⠔⠎⠊⠌⠢⠞⠇⠽" }, { "input": "insisting", "output": "⠔⠎⠊⠌⠌" }, { "input": "insistingly", "output": "⠔⠎⠊⠌⠌⠇⠽" }, { "input": "insists", "output": "⠔⠎⠊⠌⠎" }, { "input": "insobriety", "output": "⠔⠎⠕⠃⠗⠊⠑⠞⠽" }, { "input": "insobriety's", "output": "⠔⠎⠕⠃⠗⠊⠑⠞⠽⠄⠎" }, { "input": "insofar", "output": "⠔⠎⠕⠋⠜" }, { "input": "insole", "output": "⠔⠎⠕⠇⠑" }, { "input": "insole's", "output": "⠔⠎⠕⠇⠑⠄⠎" }, { "input": "insolence", "output": "⠔⠎⠕⠇⠰⠑" }, { "input": "insolence's", "output": "⠔⠎⠕⠇⠰⠑⠄⠎" }, { "input": "insolent", "output": "⠔⠎⠕⠇⠢⠞" }, { "input": "insolently", "output": "⠔⠎⠕⠇⠢⠞⠇⠽" }, { "input": "insoles", "output": "⠔⠎⠕⠇⠑⠎" }, { "input": "insolubility", "output": "⠔⠎⠕⠇⠥⠃⠊⠇⠰⠽" }, { "input": "insolubility's", "output": "⠔⠎⠕⠇⠥⠃⠊⠇⠰⠽⠄⠎" }, { "input": "insoluble", "output": "⠔⠎⠕⠇⠥⠼" }, { "input": "insolubly", "output": "⠔⠎⠕⠇⠥⠃⠇⠽" }, { "input": "insolvable", "output": "⠔⠎⠕⠇⠧â â ¼" }, { "input": "insolvency", "output": "⠔⠎⠕⠇⠧⠢⠉⠽" }, { "input": "insolvency's", "output": "⠔⠎⠕⠇⠧⠢⠉⠽⠄⠎" }, { "input": "insolvent", "output": "⠔⠎⠕⠇⠧⠢⠞" }, { "input": "insolvent's", "output": "⠔⠎⠕⠇⠧⠢⠞⠄⠎" }, { "input": "insolvents", "output": "⠔⠎⠕⠇⠧⠢⠞⠎" }, { "input": "insomnia", "output": "⠔⠎⠕â â â Šâ " }, { "input": "insomnia's", "output": "⠔⠎⠕â â â Šâ â „â Ž" }, { "input": "insomniac", "output": "⠔⠎⠕â â â Šâ â ‰" }, { "input": "insomniac's", "output": "⠔⠎⠕â â â Šâ â ‰â „â Ž" }, { "input": "insomniacs", "output": "⠔⠎⠕â â â Šâ â ‰â Ž" }, { "input": "insomuch", "output": "⠔⠎⠕â â ¡" }, { "input": "insouciance", "output": "⠔⠎⠳⠉⠊⠨⠑" }, { "input": "insouciance's", "output": "⠔⠎⠳⠉⠊⠨⠑⠄⠎" }, { "input": "insouciant", "output": "⠔⠎⠳⠉⠊â â â ž" }, { "input": "inspect", "output": "⠔⠎â â ‘⠉⠞" }, { "input": "inspected", "output": "⠔⠎â â ‘⠉⠞⠫" }, { "input": "inspecting", "output": "⠔⠎â â ‘⠉⠞⠌" }, { "input": "inspection", "output": "⠔⠎â â ‘⠉⠰â " }, { "input": "inspection's", "output": "⠔⠎â â ‘⠉⠰â â „â Ž" }, { "input": "inspections", "output": "⠔⠎â â ‘⠉⠰â â Ž" }, { "input": "inspector", "output": "⠔⠎â â ‘⠉⠞⠕⠗" }, { "input": "inspector's", "output": "⠔⠎â â ‘⠉⠞⠕⠗⠄⠎" }, { "input": "inspectors", "output": "⠔⠎â â ‘⠉⠞⠕⠗⠎" }, { "input": "inspects", "output": "⠔⠎â â ‘⠉⠞⠎" }, { "input": "inspiration", "output": "⠔⠎â â Šâ —â  â " }, { "input": "inspiration's", "output": "⠔⠎â â Šâ —â  â â „â Ž" }, { "input": "inspirational", "output": "⠔⠎â â Šâ —â  â â â ‡" }, { "input": "inspirations", "output": "⠔⠎â â Šâ —â  â â Ž" }, { "input": "inspire", "output": "⠔⠎â â Šâ —â ‘" }, { "input": "inspired", "output": "⠔⠎â â Šâ —â «" }, { "input": "inspires", "output": "⠔⠎â â Šâ —â ‘â Ž" }, { "input": "inspiring", "output": "⠔⠎â â Šâ —â Œ" }, { "input": "inspirit", "output": "⠔⠸⠎" }, { "input": "inspirited", "output": "⠔⠸⠎⠫" }, { "input": "inspiriting", "output": "⠔⠸⠎⠌" }, { "input": "inspirits", "output": "⠔⠸⠎⠎" }, { "input": "instability", "output": "⠔⠌â â ƒâ Šâ ‡â °â ½" }, { "input": "instability's", "output": "⠔⠌â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "install", "output": "⠔⠌â â ‡â ‡" }, { "input": "installation", "output": "⠔⠌â â ‡â ‡â  â " }, { "input": "installation's", "output": "⠔⠌â â ‡â ‡â  â â „â Ž" }, { "input": "installations", "output": "⠔⠌â â ‡â ‡â  â â Ž" }, { "input": "installed", "output": "⠔⠌â â ‡â ‡â «" }, { "input": "installer", "output": "⠔⠌â â ‡â ‡â »" }, { "input": "installer's", "output": "⠔⠌â â ‡â ‡â »â „â Ž" }, { "input": "installers", "output": "⠔⠌â â ‡â ‡â »â Ž" }, { "input": "installing", "output": "⠔⠌â â ‡â ‡â Œ" }, { "input": "installment", "output": "⠔⠌â â ‡â ‡â °â ž" }, { "input": "installment's", "output": "⠔⠌â â ‡â ‡â °â žâ „â Ž" }, { "input": "installments", "output": "⠔⠌â â ‡â ‡â °â žâ Ž" }, { "input": "installs", "output": "⠔⠌â â ‡â ‡â Ž" }, { "input": "instance", "output": "⠔⠌⠨⠑" }, { "input": "instance's", "output": "⠔⠌⠨⠑⠄⠎" }, { "input": "instanced", "output": "⠔⠌⠨⠑⠙" }, { "input": "instances", "output": "⠔⠌⠨⠑⠎" }, { "input": "instancing", "output": "⠔⠌â â â ‰â Œ" }, { "input": "instant", "output": "⠔⠌â â â ž" }, { "input": "instant's", "output": "⠔⠌â â â žâ „â Ž" }, { "input": "instantaneous", "output": "⠔⠌â â â žâ â â ‘⠳⠎" }, { "input": "instantaneously", "output": "⠔⠌â â â žâ â â ‘⠳⠎⠇⠽" }, { "input": "instanter", "output": "⠔⠌â â â žâ »" }, { "input": "instantiate", "output": "⠔⠌â â â žâ Šâ â žâ ‘" }, { "input": "instantiated", "output": "⠔⠌â â â žâ Šâ â žâ «" }, { "input": "instantiates", "output": "⠔⠌â â â žâ Šâ â žâ ‘â Ž" }, { "input": "instantiating", "output": "⠔⠌â â â žâ Šâ â žâ Œ" }, { "input": "instantly", "output": "⠔⠌â â â žâ ‡â ½" }, { "input": "instants", "output": "⠔⠌â â â žâ Ž" }, { "input": "instate", "output": "⠔⠌â â žâ ‘" }, { "input": "instated", "output": "⠔⠌â â žâ «" }, { "input": "instates", "output": "⠔⠌â â žâ ‘â Ž" }, { "input": "instating", "output": "⠔⠌â â žâ Œ" }, { "input": "instead", "output": "⠔⠌⠂⠙" }, { "input": "instep", "output": "⠔⠌⠑â " }, { "input": "instep's", "output": "⠔⠌⠑â â „â Ž" }, { "input": "insteps", "output": "⠔⠌⠑â â Ž" }, { "input": "instigate", "output": "⠔⠌⠊⠛â â žâ ‘" }, { "input": "instigated", "output": "⠔⠌⠊⠛â â žâ «" }, { "input": "instigates", "output": "⠔⠌⠊⠛â â žâ ‘â Ž" }, { "input": "instigating", "output": "⠔⠌⠊⠛â â žâ Œ" }, { "input": "instigation", "output": "⠔⠌⠊⠛⠠â " }, { "input": "instigation's", "output": "⠔⠌⠊⠛⠠â â „â Ž" }, { "input": "instigator", "output": "⠔⠌⠊⠛â â žâ •â —" }, { "input": "instigator's", "output": "⠔⠌⠊⠛â â žâ •â —â „â Ž" }, { "input": "instigators", "output": "⠔⠌⠊⠛â â žâ •â —â Ž" }, { "input": "instill", "output": "⠔⠌⠊⠇⠇" }, { "input": "instillation", "output": "⠔⠌⠊⠇⠇⠠â " }, { "input": "instillation's", "output": "⠔⠌⠊⠇⠇⠠â â „â Ž" }, { "input": "instilled", "output": "⠔⠌⠊⠇⠇⠫" }, { "input": "instilling", "output": "⠔⠌⠊⠇⠇⠌" }, { "input": "instills", "output": "⠔⠌⠊⠇⠇⠎" }, { "input": "instinct", "output": "⠔⠌⠔⠉⠞" }, { "input": "instinct's", "output": "⠔⠌⠔⠉⠞⠄⠎" }, { "input": "instinctive", "output": "⠔⠌⠔⠉⠞⠊⠧⠑" }, { "input": "instinctively", "output": "⠔⠌⠔⠉⠞⠊⠧⠑⠇⠽" }, { "input": "instincts", "output": "⠔⠌⠔⠉⠞⠎" }, { "input": "institute", "output": "⠔⠌⠊⠞⠥⠞⠑" }, { "input": "institute's", "output": "⠔⠌⠊⠞⠥⠞⠑⠄⠎" }, { "input": "instituted", "output": "⠔⠌⠊⠞⠥⠞⠫" }, { "input": "instituter", "output": "⠔⠌⠊⠞⠥⠞⠻" }, { "input": "instituter's", "output": "⠔⠌⠊⠞⠥⠞⠻⠄⠎" }, { "input": "instituters", "output": "⠔⠌⠊⠞⠥⠞⠻⠎" }, { "input": "institutes", "output": "⠔⠌⠊⠞⠥⠞⠑⠎" }, { "input": "instituting", "output": "⠔⠌⠊⠞⠥⠞⠌" }, { "input": "institution", "output": "⠔⠌⠊⠞⠥⠰â " }, { "input": "institution's", "output": "⠔⠌⠊⠞⠥⠰â â „â Ž" }, { "input": "institutional", "output": "⠔⠌⠊⠞⠥⠰â â â ‡" }, { "input": "institutionalization", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ  â " }, { "input": "institutionalization's", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "institutionalize", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ ‘" }, { "input": "institutionalized", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ «" }, { "input": "institutionalizes", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ ‘â Ž" }, { "input": "institutionalizing", "output": "⠔⠌⠊⠞⠥⠰â â â ‡â Šâ µâ Œ" }, { "input": "institutionally", "output": "⠔⠌⠊⠞⠥⠰â â  â ½" }, { "input": "institutions", "output": "⠔⠌⠊⠞⠥⠰â â Ž" }, { "input": "instruct", "output": "⠔⠌⠗⠥⠉⠞" }, { "input": "instructed", "output": "⠔⠌⠗⠥⠉⠞⠫" }, { "input": "instructing", "output": "⠔⠌⠗⠥⠉⠞⠌" }, { "input": "instruction", "output": "⠔⠌⠗⠥⠉⠰â " }, { "input": "instruction's", "output": "⠔⠌⠗⠥⠉⠰â â „â Ž" }, { "input": "instructional", "output": "⠔⠌⠗⠥⠉⠰â â â ‡" }, { "input": "instructions", "output": "⠔⠌⠗⠥⠉⠰â â Ž" }, { "input": "instructive", "output": "⠔⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "instructively", "output": "⠔⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "instructor", "output": "⠔⠌⠗⠥⠉⠞⠕⠗" }, { "input": "instructor's", "output": "⠔⠌⠗⠥⠉⠞⠕⠗⠄⠎" }, { "input": "instructors", "output": "⠔⠌⠗⠥⠉⠞⠕⠗⠎" }, { "input": "instructs", "output": "⠔⠌⠗⠥⠉⠞⠎" }, { "input": "instrument", "output": "⠔⠌⠗⠥⠰⠞" }, { "input": "instrument's", "output": "⠔⠌⠗⠥⠰⠞⠄⠎" }, { "input": "instrumental", "output": "⠔⠌⠗⠥⠰⠞â â ‡" }, { "input": "instrumental's", "output": "⠔⠌⠗⠥⠰⠞â â ‡â „â Ž" }, { "input": "instrumentalist", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Šâ Œ" }, { "input": "instrumentalist's", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Šâ Œâ „â Ž" }, { "input": "instrumentalists", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Šâ Œâ Ž" }, { "input": "instrumentality", "output": "⠔⠌⠗⠥⠰⠞â â ‡â °â ½" }, { "input": "instrumentality's", "output": "⠔⠌⠗⠥⠰⠞â â ‡â °â ½â „â Ž" }, { "input": "instrumentally", "output": "⠔⠌⠗⠥⠰⠞⠠⠽" }, { "input": "instrumentals", "output": "⠔⠌⠗⠥⠰⠞â â ‡â Ž" }, { "input": "instrumentation", "output": "⠔⠌⠗⠥⠰⠞⠠â " }, { "input": "instrumentation's", "output": "⠔⠌⠗⠥⠰⠞⠠â â „â Ž" }, { "input": "instrumented", "output": "⠔⠌⠗⠥⠰⠞⠫" }, { "input": "instrumenting", "output": "⠔⠌⠗⠥⠰⠞⠌" }, { "input": "instruments", "output": "⠔⠌⠗⠥⠰⠞⠎" }, { "input": "insubordinate", "output": "⠔⠎⠥⠃⠕⠗⠙⠔â â žâ ‘" }, { "input": "insubordination", "output": "⠔⠎⠥⠃⠕⠗⠙⠔⠠â " }, { "input": "insubordination's", "output": "⠔⠎⠥⠃⠕⠗⠙⠔⠠â â „â Ž" }, { "input": "insubstantial", "output": "⠔⠎⠥⠃⠌â â â žâ Šâ â ‡" }, { "input": "insubstantially", "output": "⠔⠎⠥⠃⠌â â â žâ Šâ  â ½" }, { "input": "insufferable", "output": "⠔⠎⠥⠖⠻â â ¼" }, { "input": "insufferably", "output": "⠔⠎⠥⠖⠻â â ƒâ ‡â ½" }, { "input": "insufficiency", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠉⠽" }, { "input": "insufficiency's", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "insufficient", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠞" }, { "input": "insufficiently", "output": "⠔⠎⠥⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "insular", "output": "⠔⠎⠥⠇⠜" }, { "input": "insularity", "output": "⠔⠎⠥⠇⠜⠰⠽" }, { "input": "insularity's", "output": "⠔⠎⠥⠇⠜⠰⠽⠄⠎" }, { "input": "insulate", "output": "⠔⠎⠥⠇â â žâ ‘" }, { "input": "insulated", "output": "⠔⠎⠥⠇â â žâ «" }, { "input": "insulates", "output": "⠔⠎⠥⠇â â žâ ‘â Ž" }, { "input": "insulating", "output": "⠔⠎⠥⠇â â žâ Œ" }, { "input": "insulation", "output": "⠔⠎⠥⠇⠠â " }, { "input": "insulation's", "output": "⠔⠎⠥⠇⠠â â „â Ž" }, { "input": "insulator", "output": "⠔⠎⠥⠇â â žâ •â —" }, { "input": "insulator's", "output": "⠔⠎⠥⠇â â žâ •â —â „â Ž" }, { "input": "insulators", "output": "⠔⠎⠥⠇â â žâ •â —â Ž" }, { "input": "insulin", "output": "⠔⠎⠥⠇⠔" }, { "input": "insulin's", "output": "⠔⠎⠥⠇⠔⠄⠎" }, { "input": "insult", "output": "⠔⠎⠥⠇⠞" }, { "input": "insult's", "output": "⠔⠎⠥⠇⠞⠄⠎" }, { "input": "insulted", "output": "⠔⠎⠥⠇⠞⠫" }, { "input": "insulting", "output": "⠔⠎⠥⠇⠞⠌" }, { "input": "insults", "output": "⠔⠎⠥⠇⠞⠎" }, { "input": "insuperable", "output": "⠔⠎⠥â â »â â ¼" }, { "input": "insupportable", "output": "⠔⠎⠥â â â •â —â žâ â ¼" }, { "input": "insurable", "output": "⠔⠎⠥⠗â â ¼" }, { "input": "insurance", "output": "⠔⠎⠥⠗⠨⠑" }, { "input": "insurance's", "output": "⠔⠎⠥⠗⠨⠑⠄⠎" }, { "input": "insurances", "output": "⠔⠎⠥⠗⠨⠑⠎" }, { "input": "insure", "output": "⠔⠎⠥⠗⠑" }, { "input": "insured", "output": "⠔⠎⠥⠗⠫" }, { "input": "insured's", "output": "⠔⠎⠥⠗⠫⠄⠎" }, { "input": "insureds", "output": "⠔⠎⠥⠗⠫⠎" }, { "input": "insurer", "output": "⠔⠎⠥⠗⠻" }, { "input": "insurer's", "output": "⠔⠎⠥⠗⠻⠄⠎" }, { "input": "insurers", "output": "⠔⠎⠥⠗⠻⠎" }, { "input": "insures", "output": "⠔⠎⠥⠗⠑⠎" }, { "input": "insurgence", "output": "⠔⠎⠥⠗⠛⠰⠑" }, { "input": "insurgence's", "output": "⠔⠎⠥⠗⠛⠰⠑⠄⠎" }, { "input": "insurgences", "output": "⠔⠎⠥⠗⠛⠰⠑⠎" }, { "input": "insurgencies", "output": "⠔⠎⠥⠗⠛⠢⠉⠊⠑⠎" }, { "input": "insurgency", "output": "⠔⠎⠥⠗⠛⠢⠉⠽" }, { "input": "insurgency's", "output": "⠔⠎⠥⠗⠛⠢⠉⠽⠄⠎" }, { "input": "insurgent", "output": "⠔⠎⠥⠗⠛⠢⠞" }, { "input": "insurgent's", "output": "⠔⠎⠥⠗⠛⠢⠞⠄⠎" }, { "input": "insurgents", "output": "⠔⠎⠥⠗⠛⠢⠞⠎" }, { "input": "insuring", "output": "⠔⠎⠥⠗⠌" }, { "input": "insurmountable", "output": "⠔⠎⠥⠗â â ¨â žâ â ¼" }, { "input": "insurmountably", "output": "⠔⠎⠥⠗â â ¨â žâ â ƒâ ‡â ½" }, { "input": "insurrection", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â " }, { "input": "insurrection's", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â „â Ž" }, { "input": "insurrectionist", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Šâ Œ" }, { "input": "insurrectionist's", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Šâ Œâ „â Ž" }, { "input": "insurrectionists", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Šâ Œâ Ž" }, { "input": "insurrections", "output": "⠔⠎⠥⠗⠗⠑⠉⠰â â Ž" }, { "input": "insusceptible", "output": "⠔⠎⠥⠎⠉⠑â â žâ Šâ ¼" }, { "input": "intact", "output": "⠔⠞â â ‰â ž" }, { "input": "intaglio", "output": "⠔⠞â â ›â ‡â Šâ •" }, { "input": "intaglio's", "output": "⠔⠞â â ›â ‡â Šâ •â „â Ž" }, { "input": "intaglios", "output": "⠔⠞â â ›â ‡â Šâ •â Ž" }, { "input": "intake", "output": "⠔⠞â â …â ‘" }, { "input": "intake's", "output": "⠔⠞â â …â ‘â „â Ž" }, { "input": "intakes", "output": "⠔⠞â â …â ‘â Ž" }, { "input": "intangibility", "output": "⠔⠞â â â ›â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "intangibility's", "output": "⠔⠞â â â ›â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "intangible", "output": "⠔⠞â â â ›â Šâ ¼" }, { "input": "intangible's", "output": "⠔⠞â â â ›â Šâ ¼â „â Ž" }, { "input": "intangibles", "output": "⠔⠞â â â ›â Šâ ¼â Ž" }, { "input": "intangibly", "output": "⠔⠞â â â ›â Šâ ƒâ ‡â ½" }, { "input": "integer", "output": "⠔⠞⠑⠛⠻" }, { "input": "integer's", "output": "⠔⠞⠑⠛⠻⠄⠎" }, { "input": "integers", "output": "⠔⠞⠑⠛⠻⠎" }, { "input": "integral", "output": "⠔⠞⠑⠛⠗â â ‡" }, { "input": "integral's", "output": "⠔⠞⠑⠛⠗â â ‡â „â Ž" }, { "input": "integrals", "output": "⠔⠞⠑⠛⠗â â ‡â Ž" }, { "input": "integrate", "output": "⠔⠞⠑⠛⠗â â žâ ‘" }, { "input": "integrated", "output": "⠔⠞⠑⠛⠗â â žâ «" }, { "input": "integrates", "output": "⠔⠞⠑⠛⠗â â žâ ‘â Ž" }, { "input": "integrating", "output": "⠔⠞⠑⠛⠗â â žâ Œ" }, { "input": "integration", "output": "⠔⠞⠑⠛⠗⠠â " }, { "input": "integration's", "output": "⠔⠞⠑⠛⠗⠠â â „â Ž" }, { "input": "integrative", "output": "⠔⠞⠑⠛⠗â â žâ Šâ §â ‘" }, { "input": "integrator", "output": "⠔⠞⠑⠛⠗â â žâ •â —" }, { "input": "integrity", "output": "⠔⠞⠑⠛⠗⠰⠽" }, { "input": "integrity's", "output": "⠔⠞⠑⠛⠗⠰⠽⠄⠎" }, { "input": "integument", "output": "⠔⠞⠑⠛⠥⠰⠞" }, { "input": "integument's", "output": "⠔⠞⠑⠛⠥⠰⠞⠄⠎" }, { "input": "integuments", "output": "⠔⠞⠑⠛⠥⠰⠞⠎" }, { "input": "intellect", "output": "⠔⠞⠑⠇⠇⠑⠉⠞" }, { "input": "intellect's", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠄⠎" }, { "input": "intellects", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠎" }, { "input": "intellectual", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡" }, { "input": "intellectual's", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â „â Ž" }, { "input": "intellectualism", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ Žâ " }, { "input": "intellectualism's", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ Žâ â „â Ž" }, { "input": "intellectualize", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ ‘" }, { "input": "intellectualized", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ «" }, { "input": "intellectualizes", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ ‘â Ž" }, { "input": "intellectualizing", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Šâ µâ Œ" }, { "input": "intellectually", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥⠠⠽" }, { "input": "intellectuals", "output": "⠔⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Ž" }, { "input": "intelligence", "output": "⠔⠞⠑⠇⠇⠊⠛⠰⠑" }, { "input": "intelligence's", "output": "⠔⠞⠑⠇⠇⠊⠛⠰⠑⠄⠎" }, { "input": "intelligent", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞" }, { "input": "intelligently", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞⠇⠽" }, { "input": "intelligentsia", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞⠎⠊â " }, { "input": "intelligentsia's", "output": "⠔⠞⠑⠇⠇⠊⠛⠢⠞⠎⠊â â „â Ž" }, { "input": "intelligibility", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠃⠊⠇⠰⠽" }, { "input": "intelligibility's", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "intelligible", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠼" }, { "input": "intelligibly", "output": "⠔⠞⠑⠇⠇⠊⠛⠊⠃⠇⠽" }, { "input": "intemperance", "output": "⠔⠞⠑â â â »â ¨â ‘" }, { "input": "intemperance's", "output": "⠔⠞⠑â â â »â ¨â ‘â „â Ž" }, { "input": "intemperate", "output": "⠔⠞⠑â â â »â â žâ ‘" }, { "input": "intend", "output": "⠔⠞⠢⠙" }, { "input": "intended", "output": "⠔⠞⠢⠙⠫" }, { "input": "intended's", "output": "⠔⠞⠢⠙⠫⠄⠎" }, { "input": "intendeds", "output": "⠔⠞⠢⠙⠫⠎" }, { "input": "intending", "output": "⠔⠞⠢⠙⠌" }, { "input": "intends", "output": "⠔⠞⠢⠙⠎" }, { "input": "intense", "output": "⠔⠞⠢⠎⠑" }, { "input": "intensely", "output": "⠔⠞⠢⠎⠑⠇⠽" }, { "input": "intenser", "output": "⠔⠞⠢⠎⠻" }, { "input": "intensest", "output": "⠔⠞⠢⠎⠑⠌" }, { "input": "intensification", "output": "⠔⠞⠢⠎⠊⠋⠊⠉⠠â " }, { "input": "intensification's", "output": "⠔⠞⠢⠎⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "intensified", "output": "⠔⠞⠢⠎⠊⠋⠊⠫" }, { "input": "intensifier", "output": "⠔⠞⠢⠎⠊⠋⠊⠻" }, { "input": "intensifier's", "output": "⠔⠞⠢⠎⠊⠋⠊⠻⠄⠎" }, { "input": "intensifiers", "output": "⠔⠞⠢⠎⠊⠋⠊⠻⠎" }, { "input": "intensifies", "output": "⠔⠞⠢⠎⠊⠋⠊⠑⠎" }, { "input": "intensify", "output": "⠔⠞⠢⠎⠊⠋⠽" }, { "input": "intensifying", "output": "⠔⠞⠢⠎⠊⠋⠽⠌" }, { "input": "intensities", "output": "⠔⠞⠢⠎⠊⠞⠊⠑⠎" }, { "input": "intensity", "output": "⠔⠞⠢⠎⠰⠽" }, { "input": "intensity's", "output": "⠔⠞⠢⠎⠰⠽⠄⠎" }, { "input": "intensive", "output": "⠔⠞⠢⠎⠊⠧⠑" }, { "input": "intensive's", "output": "⠔⠞⠢⠎⠊⠧⠑⠄⠎" }, { "input": "intensively", "output": "⠔⠞⠢⠎⠊⠧⠑⠇⠽" }, { "input": "intensiveness", "output": "⠔⠞⠢⠎⠊⠧⠑⠰⠎" }, { "input": "intensiveness's", "output": "⠔⠞⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "intensives", "output": "⠔⠞⠢⠎⠊⠧⠑⠎" }, { "input": "intent", "output": "⠔⠞⠢⠞" }, { "input": "intent's", "output": "⠔⠞⠢⠞⠄⠎" }, { "input": "intention", "output": "⠔⠞⠢⠰â " }, { "input": "intention's", "output": "⠔⠞⠢⠰â â „â Ž" }, { "input": "intentional", "output": "⠔⠞⠢⠰â â â ‡" }, { "input": "intentionally", "output": "⠔⠞⠢⠰â â  â ½" }, { "input": "intentions", "output": "⠔⠞⠢⠰â â Ž" }, { "input": "intently", "output": "⠔⠞⠢⠞⠇⠽" }, { "input": "intentness", "output": "⠔⠞⠢⠞⠰⠎" }, { "input": "intentness's", "output": "⠔⠞⠢⠞⠰⠎⠄⠎" }, { "input": "intents", "output": "⠔⠞⠢⠞⠎" }, { "input": "inter", "output": "⠔⠞⠻" }, { "input": "interact", "output": "⠔⠞⠻â â ‰â ž" }, { "input": "interacted", "output": "⠔⠞⠻â â ‰â žâ «" }, { "input": "interacting", "output": "⠔⠞⠻â â ‰â žâ Œ" }, { "input": "interaction", "output": "⠔⠞⠻â â ‰â °â " }, { "input": "interaction's", "output": "⠔⠞⠻â â ‰â °â â „â Ž" }, { "input": "interactions", "output": "⠔⠞⠻â â ‰â °â â Ž" }, { "input": "interactive", "output": "⠔⠞⠻â â ‰â žâ Šâ §â ‘" }, { "input": "interactively", "output": "⠔⠞⠻â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "interacts", "output": "⠔⠞⠻â â ‰â žâ Ž" }, { "input": "interbred", "output": "⠔⠞⠻⠃⠗⠫" }, { "input": "interbreed", "output": "⠔⠞⠻⠃⠗⠑⠫" }, { "input": "interbreeding", "output": "⠔⠞⠻⠃⠗⠑⠫⠌" }, { "input": "interbreeds", "output": "⠔⠞⠻⠃⠗⠑⠫⠎" }, { "input": "intercede", "output": "⠔⠞⠻⠉⠫⠑" }, { "input": "interceded", "output": "⠔⠞⠻⠉⠫⠫" }, { "input": "intercedes", "output": "⠔⠞⠻⠉⠫⠑⠎" }, { "input": "interceding", "output": "⠔⠞⠻⠉⠫⠌" }, { "input": "intercept", "output": "⠔⠞⠻⠉⠑â â ž" }, { "input": "intercept's", "output": "⠔⠞⠻⠉⠑â â žâ „â Ž" }, { "input": "intercepted", "output": "⠔⠞⠻⠉⠑â â žâ «" }, { "input": "intercepting", "output": "⠔⠞⠻⠉⠑â â žâ Œ" }, { "input": "interception", "output": "⠔⠞⠻⠉⠑â â °â " }, { "input": "interception's", "output": "⠔⠞⠻⠉⠑â â °â â „â Ž" }, { "input": "interceptions", "output": "⠔⠞⠻⠉⠑â â °â â Ž" }, { "input": "interceptor", "output": "⠔⠞⠻⠉⠑â â žâ •â —" }, { "input": "interceptor's", "output": "⠔⠞⠻⠉⠑â â žâ •â —â „â Ž" }, { "input": "interceptors", "output": "⠔⠞⠻⠉⠑â â žâ •â —â Ž" }, { "input": "intercepts", "output": "⠔⠞⠻⠉⠑â â žâ Ž" }, { "input": "intercession", "output": "⠔⠞⠻⠉⠑⠎⠨â " }, { "input": "intercession's", "output": "⠔⠞⠻⠉⠑⠎⠨â â „â Ž" }, { "input": "intercessions", "output": "⠔⠞⠻⠉⠑⠎⠨â â Ž" }, { "input": "intercessor", "output": "⠔⠞⠻⠉⠑⠎⠎⠕⠗" }, { "input": "intercessor's", "output": "⠔⠞⠻⠉⠑⠎⠎⠕⠗⠄⠎" }, { "input": "intercessors", "output": "⠔⠞⠻⠉⠑⠎⠎⠕⠗⠎" }, { "input": "intercessory", "output": "⠔⠞⠻⠉⠑⠎⠎⠕⠗⠽" }, { "input": "interchange", "output": "⠔⠞⠻⠡â â â ›â ‘" }, { "input": "interchange's", "output": "⠔⠞⠻⠡â â â ›â ‘â „â Ž" }, { "input": "interchangeable", "output": "⠔⠞⠻⠡â â â ›â ‘â â ¼" }, { "input": "interchangeably", "output": "⠔⠞⠻⠡â â â ›â ‘â â ƒâ ‡â ½" }, { "input": "interchanged", "output": "⠔⠞⠻⠡â â â ›â «" }, { "input": "interchanges", "output": "⠔⠞⠻⠡â â â ›â ‘â Ž" }, { "input": "interchanging", "output": "⠔⠞⠻⠡â â â ›â Œ" }, { "input": "intercollegiate", "output": "⠔⠞⠻⠉⠕⠇⠇⠑⠛⠊â â žâ ‘" }, { "input": "intercom", "output": "⠔⠞⠻⠉⠕â " }, { "input": "intercom's", "output": "⠔⠞⠻⠉⠕â â „â Ž" }, { "input": "intercommunicate", "output": "⠔⠞⠻⠉⠕â â â ¥â â Šâ ‰â â žâ ‘" }, { "input": "intercommunicated", "output": "⠔⠞⠻⠉⠕â â â ¥â â Šâ ‰â â žâ «" }, { "input": "intercommunicates", "output": "⠔⠞⠻⠉⠕â â â ¥â â Šâ ‰â â žâ ‘â Ž" }, { "input": "intercommunicating", "output": "⠔⠞⠻⠉⠕â â â ¥â â Šâ ‰â â žâ Œ" }, { "input": "intercommunication's", "output": "⠔⠞⠻⠉⠕â â â ¥â â Šâ ‰â  â â „â Ž" }, { "input": "intercoms", "output": "⠔⠞⠻⠉⠕â â Ž" }, { "input": "interconnect", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞" }, { "input": "interconnected", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞⠫" }, { "input": "interconnecting", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞⠌" }, { "input": "interconnection", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠰â " }, { "input": "interconnection's", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠰â â „â Ž" }, { "input": "interconnections", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠰â â Ž" }, { "input": "interconnects", "output": "⠔⠞⠻⠉⠕â â â ‘⠉⠞⠎" }, { "input": "intercontinental", "output": "⠔⠞⠻⠉⠕â â žâ ”⠢⠞â â ‡" }, { "input": "intercourse", "output": "⠔⠞⠻⠉⠳⠗⠎⠑" }, { "input": "intercourse's", "output": "⠔⠞⠻⠉⠳⠗⠎⠑⠄⠎" }, { "input": "intercultural", "output": "⠔⠞⠻⠉⠥⠇⠞⠥⠗â â ‡" }, { "input": "interdenominational", "output": "⠔⠞⠻⠙⠑â â •â â ”â  â â â ‡" }, { "input": "interdepartmental", "output": "⠔⠞⠻⠙⠑â â â °â žâ â ‡" }, { "input": "interdependence", "output": "⠔⠞⠻⠙⠑â â ¢â ™â °â ‘" }, { "input": "interdependence's", "output": "⠔⠞⠻⠙⠑â â ¢â ™â °â ‘â „â Ž" }, { "input": "interdependent", "output": "⠔⠞⠻⠙⠑â â ¢â ™â ¢â ž" }, { "input": "interdependently", "output": "⠔⠞⠻⠙⠑â â ¢â ™â ¢â žâ ‡â ½" }, { "input": "interdict", "output": "⠔⠞⠻⠙⠊⠉⠞" }, { "input": "interdict's", "output": "⠔⠞⠻⠙⠊⠉⠞⠄⠎" }, { "input": "interdicted", "output": "⠔⠞⠻⠙⠊⠉⠞⠫" }, { "input": "interdicting", "output": "⠔⠞⠻⠙⠊⠉⠞⠌" }, { "input": "interdiction", "output": "⠔⠞⠻⠙⠊⠉⠰â " }, { "input": "interdiction's", "output": "⠔⠞⠻⠙⠊⠉⠰â â „â Ž" }, { "input": "interdicts", "output": "⠔⠞⠻⠙⠊⠉⠞⠎" }, { "input": "interdisciplinary", "output": "⠔⠞⠻⠙⠊⠎⠉⠊â â ‡â ”⠜⠽" }, { "input": "interest", "output": "⠔⠞⠻⠑⠌" }, { "input": "interest's", "output": "⠔⠞⠻⠑⠌⠄⠎" }, { "input": "interested", "output": "⠔⠞⠻⠑⠌⠫" }, { "input": "interesting", "output": "⠔⠞⠻⠑⠌⠌" }, { "input": "interestingly", "output": "⠔⠞⠻⠑⠌⠌⠇⠽" }, { "input": "interests", "output": "⠔⠞⠻⠑⠌⠎" }, { "input": "interface", "output": "⠔⠞⠻⠋â â ‰â ‘" }, { "input": "interface's", "output": "⠔⠞⠻⠋â â ‰â ‘â „â Ž" }, { "input": "interfaced", "output": "⠔⠞⠻⠋â â ‰â «" }, { "input": "interfaces", "output": "⠔⠞⠻⠋â â ‰â ‘â Ž" }, { "input": "interfacing", "output": "⠔⠞⠻⠋â â ‰â Œ" }, { "input": "interfaith", "output": "⠔⠞⠻⠋â â Šâ ¹" }, { "input": "interfere", "output": "⠔⠞⠻⠋⠻⠑" }, { "input": "interfered", "output": "⠔⠞⠻⠋⠻⠫" }, { "input": "interference", "output": "⠔⠞⠻⠋⠻⠰⠑" }, { "input": "interference's", "output": "⠔⠞⠻⠋⠻⠰⠑⠄⠎" }, { "input": "interferes", "output": "⠔⠞⠻⠋⠻⠑⠎" }, { "input": "interfering", "output": "⠔⠞⠻⠋⠻⠌" }, { "input": "interferon", "output": "⠔⠞⠻⠋⠻⠕â " }, { "input": "interferon's", "output": "⠔⠞⠻⠋⠻⠕â â „â Ž" }, { "input": "interfile", "output": "⠔⠞⠻⠋⠊⠇⠑" }, { "input": "interfiled", "output": "⠔⠞⠻⠋⠊⠇⠫" }, { "input": "interfiles", "output": "⠔⠞⠻⠋⠊⠇⠑⠎" }, { "input": "interfiling", "output": "⠔⠞⠻⠋⠊⠇⠌" }, { "input": "intergalactic", "output": "⠔⠞⠻⠛â â ‡â â ‰â žâ Šâ ‰" }, { "input": "interim", "output": "⠔⠞⠻⠊â " }, { "input": "interim's", "output": "⠔⠞⠻⠊â â „â Ž" }, { "input": "interior", "output": "⠔⠞⠻⠊⠕⠗" }, { "input": "interior's", "output": "⠔⠞⠻⠊⠕⠗⠄⠎" }, { "input": "interiors", "output": "⠔⠞⠻⠊⠕⠗⠎" }, { "input": "interject", "output": "⠔⠞⠻⠚⠑⠉⠞" }, { "input": "interjected", "output": "⠔⠞⠻⠚⠑⠉⠞⠫" }, { "input": "interjecting", "output": "⠔⠞⠻⠚⠑⠉⠞⠌" }, { "input": "interjection", "output": "⠔⠞⠻⠚⠑⠉⠰â " }, { "input": "interjection's", "output": "⠔⠞⠻⠚⠑⠉⠰â â „â Ž" }, { "input": "interjections", "output": "⠔⠞⠻⠚⠑⠉⠰â â Ž" }, { "input": "interjects", "output": "⠔⠞⠻⠚⠑⠉⠞⠎" }, { "input": "interlace", "output": "⠔⠞⠻⠇â â ‰â ‘" }, { "input": "interlaced", "output": "⠔⠞⠻⠇â â ‰â «" }, { "input": "interlaces", "output": "⠔⠞⠻⠇â â ‰â ‘â Ž" }, { "input": "interlacing", "output": "⠔⠞⠻⠇â â ‰â Œ" }, { "input": "interlard", "output": "⠔⠞⠻⠇⠜⠙" }, { "input": "interlarded", "output": "⠔⠞⠻⠇⠜⠙⠫" }, { "input": "interlarding", "output": "⠔⠞⠻⠇⠜⠙⠌" }, { "input": "interlards", "output": "⠔⠞⠻⠇⠜⠙⠎" }, { "input": "interleave", "output": "⠔⠞⠻⠇⠂⠧⠑" }, { "input": "interleaved", "output": "⠔⠞⠻⠇⠂⠧⠫" }, { "input": "interleaves", "output": "⠔⠞⠻⠇⠂⠧⠑⠎" }, { "input": "interleaving", "output": "⠔⠞⠻⠇⠂⠧⠌" }, { "input": "interleukin", "output": "⠔⠞⠻⠇⠑⠥⠅⠔" }, { "input": "interleukin's", "output": "⠔⠞⠻⠇⠑⠥⠅⠔⠄⠎" }, { "input": "interline", "output": "⠔⠞⠻⠇⠔⠑" }, { "input": "interlinear", "output": "⠔⠞⠻⠇⠔⠑⠜" }, { "input": "interlined", "output": "⠔⠞⠻⠇⠔⠫" }, { "input": "interlines", "output": "⠔⠞⠻⠇⠔⠑⠎" }, { "input": "interlining", "output": "⠔⠞⠻⠇⠔⠌" }, { "input": "interlining's", "output": "⠔⠞⠻⠇⠔⠌⠄⠎" }, { "input": "interlinings", "output": "⠔⠞⠻⠇⠔⠌⠎" }, { "input": "interlink", "output": "⠔⠞⠻⠇⠔⠅" }, { "input": "interlinked", "output": "⠔⠞⠻⠇⠔⠅⠫" }, { "input": "interlinking", "output": "⠔⠞⠻⠇⠔⠅⠌" }, { "input": "interlinks", "output": "⠔⠞⠻⠇⠔⠅⠎" }, { "input": "interlock", "output": "⠔⠞⠻⠇⠕⠉⠅" }, { "input": "interlock's", "output": "⠔⠞⠻⠇⠕⠉⠅⠄⠎" }, { "input": "interlocked", "output": "⠔⠞⠻⠇⠕⠉⠅⠫" }, { "input": "interlocking", "output": "⠔⠞⠻⠇⠕⠉⠅⠌" }, { "input": "interlocks", "output": "⠔⠞⠻⠇⠕⠉⠅⠎" }, { "input": "interlocutory", "output": "⠔⠞⠻⠇⠕⠉⠥⠞⠕⠗⠽" }, { "input": "interlope", "output": "⠔⠞⠻⠇⠕â â ‘" }, { "input": "interloped", "output": "⠔⠞⠻⠇⠕â â «" }, { "input": "interloper", "output": "⠔⠞⠻⠇⠕â â »" }, { "input": "interloper's", "output": "⠔⠞⠻⠇⠕â â »â „â Ž" }, { "input": "interlopers", "output": "⠔⠞⠻⠇⠕â â »â Ž" }, { "input": "interlopes", "output": "⠔⠞⠻⠇⠕â â ‘â Ž" }, { "input": "interloping", "output": "⠔⠞⠻⠇⠕â â Œ" }, { "input": "interlude", "output": "⠔⠞⠻⠇⠥⠙⠑" }, { "input": "interlude's", "output": "⠔⠞⠻⠇⠥⠙⠑⠄⠎" }, { "input": "interluded", "output": "⠔⠞⠻⠇⠥⠙⠫" }, { "input": "interludes", "output": "⠔⠞⠻⠇⠥⠙⠑⠎" }, { "input": "interluding", "output": "⠔⠞⠻⠇⠥⠙⠌" }, { "input": "intermarriage", "output": "⠔⠞⠻â â œâ —â Šâ â ›â ‘" }, { "input": "intermarriage's", "output": "⠔⠞⠻â â œâ —â Šâ â ›â ‘â „â Ž" }, { "input": "intermarriages", "output": "⠔⠞⠻â â œâ —â Šâ â ›â ‘â Ž" }, { "input": "intermarried", "output": "⠔⠞⠻â â œâ —â Šâ «" }, { "input": "intermarries", "output": "⠔⠞⠻â â œâ —â Šâ ‘â Ž" }, { "input": "intermarry", "output": "⠔⠞⠻â â œâ —â ½" }, { "input": "intermarrying", "output": "⠔⠞⠻â â œâ —⠽⠌" }, { "input": "intermediaries", "output": "⠔⠞⠻â â «â Šâ œâ Šâ ‘â Ž" }, { "input": "intermediary", "output": "⠔⠞⠻â â «â Šâ œâ ½" }, { "input": "intermediary's", "output": "⠔⠞⠻â â «â Šâ œâ ½â „â Ž" }, { "input": "intermediate", "output": "⠔⠞⠻â â «â Šâ â žâ ‘" }, { "input": "intermediate's", "output": "⠔⠞⠻â â «â Šâ â žâ ‘â „â Ž" }, { "input": "intermediately", "output": "⠔⠞⠻â â «â Šâ â žâ ‘⠇⠽" }, { "input": "intermediates", "output": "⠔⠞⠻â â «â Šâ â žâ ‘â Ž" }, { "input": "interment", "output": "⠔⠞⠻⠰⠞" }, { "input": "interment's", "output": "⠔⠞⠻⠰⠞⠄⠎" }, { "input": "interments", "output": "⠔⠞⠻⠰⠞⠎" }, { "input": "intermezzi", "output": "⠔⠞⠻â â ‘⠵⠵⠊" }, { "input": "intermezzo", "output": "⠔⠞⠻â â ‘⠵⠵⠕" }, { "input": "intermezzo's", "output": "⠔⠞⠻â â ‘⠵⠵⠕⠄⠎" }, { "input": "intermezzos", "output": "⠔⠞⠻â â ‘⠵⠵⠕⠎" }, { "input": "interminable", "output": "⠔⠞⠻â â ”â â ¼" }, { "input": "interminably", "output": "⠔⠞⠻â â ”â â ƒâ ‡â ½" }, { "input": "intermingle", "output": "⠔⠞⠻â â Œâ ‡â ‘" }, { "input": "intermingled", "output": "⠔⠞⠻â â Œâ ‡â «" }, { "input": "intermingles", "output": "⠔⠞⠻â â Œâ ‡â ‘â Ž" }, { "input": "intermingling", "output": "⠔⠞⠻â â Œâ ‡â Œ" }, { "input": "intermission", "output": "⠔⠞⠻â â Šâ Žâ ¨â " }, { "input": "intermission's", "output": "⠔⠞⠻â â Šâ Žâ ¨â â „â Ž" }, { "input": "intermissions", "output": "⠔⠞⠻â â Šâ Žâ ¨â â Ž" }, { "input": "intermittent", "output": "⠔⠞⠻â â Šâ žâ žâ ¢â ž" }, { "input": "intermittently", "output": "⠔⠞⠻â â Šâ žâ žâ ¢â žâ ‡â ½" }, { "input": "intermix", "output": "⠔⠞⠻â â Šâ ­" }, { "input": "intermixed", "output": "⠔⠞⠻â â Šâ ­â «" }, { "input": "intermixes", "output": "⠔⠞⠻â â Šâ ­â ‘â Ž" }, { "input": "intermixing", "output": "⠔⠞⠻â â Šâ ­â Œ" }, { "input": "intern", "output": "⠔⠞⠻â " }, { "input": "intern's", "output": "⠔⠞⠻â â „â Ž" }, { "input": "internal", "output": "⠔⠞⠻â â â ‡" }, { "input": "internalization", "output": "⠔⠞⠻â â â ‡â Šâ µâ  â " }, { "input": "internalization's", "output": "⠔⠞⠻â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "internalize", "output": "⠔⠞⠻â â â ‡â Šâ µâ ‘" }, { "input": "internalized", "output": "⠔⠞⠻â â â ‡â Šâ µâ «" }, { "input": "internalizes", "output": "⠔⠞⠻â â â ‡â Šâ µâ ‘â Ž" }, { "input": "internalizing", "output": "⠔⠞⠻â â â ‡â Šâ µâ Œ" }, { "input": "internally", "output": "⠔⠞⠻â â  â ½" }, { "input": "internals", "output": "⠔⠞⠻â â â ‡â Ž" }, { "input": "international", "output": "⠔⠞⠻â â  â â â ‡" }, { "input": "international's", "output": "⠔⠞⠻â â  â â â ‡â „â Ž" }, { "input": "internationalism", "output": "⠔⠞⠻â â  â â â ‡â Šâ Žâ " }, { "input": "internationalism's", "output": "⠔⠞⠻â â  â â â ‡â Šâ Žâ â „â Ž" }, { "input": "internationalization", "output": "⠔⠞⠻â â  â â â ‡â Šâ µâ  â " }, { "input": "internationalize", "output": "⠔⠞⠻â â  â â â ‡â Šâ µâ ‘" }, { "input": "internationalized", "output": "⠔⠞⠻â â  â â â ‡â Šâ µâ «" }, { "input": "internationalizes", "output": "⠔⠞⠻â â  â â â ‡â Šâ µâ ‘â Ž" }, { "input": "internationalizing", "output": "⠔⠞⠻â â  â â â ‡â Šâ µâ Œ" }, { "input": "internationally", "output": "⠔⠞⠻â â  â â  â ½" }, { "input": "internationals", "output": "⠔⠞⠻â â  â â â ‡â Ž" }, { "input": "internecine", "output": "⠔⠞⠻â â ‘⠉⠔⠑" }, { "input": "interned", "output": "⠔⠞⠻â â «" }, { "input": "internee", "output": "⠔⠞⠻â â ‘â ‘" }, { "input": "internee's", "output": "⠔⠞⠻â â ‘â ‘â „â Ž" }, { "input": "internees", "output": "⠔⠞⠻â â ‘â ‘â Ž" }, { "input": "internet", "output": "⠔⠞⠻â â ‘â ž" }, { "input": "interning", "output": "⠔⠞⠻â â Œ" }, { "input": "internist", "output": "⠔⠞⠻â â Šâ Œ" }, { "input": "internist's", "output": "⠔⠞⠻â â Šâ Œâ „â Ž" }, { "input": "internists", "output": "⠔⠞⠻â â Šâ Œâ Ž" }, { "input": "internment", "output": "⠔⠞⠻â â °â ž" }, { "input": "internment's", "output": "⠔⠞⠻â â °â žâ „â Ž" }, { "input": "interns", "output": "⠔⠞⠻â â Ž" }, { "input": "internship", "output": "⠔⠞⠻â â ©â Šâ " }, { "input": "internship's", "output": "⠔⠞⠻â â ©â Šâ â „â Ž" }, { "input": "internships", "output": "⠔⠞⠻â â ©â Šâ â Ž" }, { "input": "interoffice", "output": "⠔⠞⠻⠷⠋⠊⠉⠑" }, { "input": "interpersonal", "output": "⠔⠞⠻â â »â Žâ •â â â ‡" }, { "input": "interplanetary", "output": "⠔⠞⠻â â ‡â â â ‘⠞⠜⠽" }, { "input": "interplay", "output": "⠔⠞⠻â â ‡â â ½" }, { "input": "interplay's", "output": "⠔⠞⠻â â ‡â â ½â „â Ž" }, { "input": "interpolate", "output": "⠔⠞⠻â â •â ‡â â žâ ‘" }, { "input": "interpolated", "output": "⠔⠞⠻â â •â ‡â â žâ «" }, { "input": "interpolates", "output": "⠔⠞⠻â â •â ‡â â žâ ‘â Ž" }, { "input": "interpolating", "output": "⠔⠞⠻â â •â ‡â â žâ Œ" }, { "input": "interpolation", "output": "⠔⠞⠻â â •⠇⠠â " }, { "input": "interpolation's", "output": "⠔⠞⠻â â •⠇⠠â â „â Ž" }, { "input": "interpolations", "output": "⠔⠞⠻â â •⠇⠠â â Ž" }, { "input": "interpose", "output": "⠔⠞⠻â â •â Žâ ‘" }, { "input": "interposed", "output": "⠔⠞⠻â â •â Žâ «" }, { "input": "interposes", "output": "⠔⠞⠻â â •â Žâ ‘â Ž" }, { "input": "interposing", "output": "⠔⠞⠻â â •â Žâ Œ" }, { "input": "interposition", "output": "⠔⠞⠻â â •â Žâ Šâ °â " }, { "input": "interposition's", "output": "⠔⠞⠻â â •â Žâ Šâ °â â „â Ž" }, { "input": "interpret", "output": "⠔⠞⠻â â —â ‘â ž" }, { "input": "interpretation", "output": "⠔⠞⠻â â —â ‘â žâ  â " }, { "input": "interpretation's", "output": "⠔⠞⠻â â —â ‘â žâ  â â „â Ž" }, { "input": "interpretations", "output": "⠔⠞⠻â â —â ‘â žâ  â â Ž" }, { "input": "interpretative", "output": "⠔⠞⠻â â —â ‘â žâ â žâ Šâ §â ‘" }, { "input": "interpreted", "output": "⠔⠞⠻â â —â ‘â žâ «" }, { "input": "interpreter", "output": "⠔⠞⠻â â —â ‘â žâ »" }, { "input": "interpreter's", "output": "⠔⠞⠻â â —⠑⠞⠻⠄⠎" }, { "input": "interpreters", "output": "⠔⠞⠻â â —⠑⠞⠻⠎" }, { "input": "interpreting", "output": "⠔⠞⠻â â —â ‘â žâ Œ" }, { "input": "interpretive", "output": "⠔⠞⠻â â —â ‘â žâ Šâ §â ‘" }, { "input": "interprets", "output": "⠔⠞⠻â â —â ‘â žâ Ž" }, { "input": "interracial", "output": "⠔⠞⠻⠗â â ‰â Šâ â ‡" }, { "input": "interred", "output": "⠔⠞⠻⠗⠫" }, { "input": "interrelate", "output": "⠔⠞⠻⠗⠑⠇â â žâ ‘" }, { "input": "interrelated", "output": "⠔⠞⠻⠗⠑⠇â â žâ «" }, { "input": "interrelates", "output": "⠔⠞⠻⠗⠑⠇â â žâ ‘â Ž" }, { "input": "interrelating", "output": "⠔⠞⠻⠗⠑⠇â â žâ Œ" }, { "input": "interrelation", "output": "⠔⠞⠻⠗⠑⠇⠠â " }, { "input": "interrelation's", "output": "⠔⠞⠻⠗⠑⠇⠠â â „â Ž" }, { "input": "interrelations", "output": "⠔⠞⠻⠗⠑⠇⠠â â Ž" }, { "input": "interrelationship", "output": "⠔⠞⠻⠗⠑⠇⠠â â ©â Šâ " }, { "input": "interrelationship's", "output": "⠔⠞⠻⠗⠑⠇⠠â â ©â Šâ â „â Ž" }, { "input": "interrelationships", "output": "⠔⠞⠻⠗⠑⠇⠠â â ©â Šâ â Ž" }, { "input": "interring", "output": "⠔⠞⠻⠗⠌" }, { "input": "interrogate", "output": "⠔⠞⠻⠗⠕⠛â â žâ ‘" }, { "input": "interrogated", "output": "⠔⠞⠻⠗⠕⠛â â žâ «" }, { "input": "interrogates", "output": "⠔⠞⠻⠗⠕⠛â â žâ ‘â Ž" }, { "input": "interrogating", "output": "⠔⠞⠻⠗⠕⠛â â žâ Œ" }, { "input": "interrogation", "output": "⠔⠞⠻⠗⠕⠛⠠â " }, { "input": "interrogation's", "output": "⠔⠞⠻⠗⠕⠛⠠â â „â Ž" }, { "input": "interrogations", "output": "⠔⠞⠻⠗⠕⠛⠠â â Ž" }, { "input": "interrogative", "output": "⠔⠞⠻⠗⠕⠛â â žâ Šâ §â ‘" }, { "input": "interrogative's", "output": "⠔⠞⠻⠗⠕⠛â â žâ Šâ §â ‘â „â Ž" }, { "input": "interrogatively", "output": "⠔⠞⠻⠗⠕⠛â â žâ Šâ §â ‘⠇⠽" }, { "input": "interrogatives", "output": "⠔⠞⠻⠗⠕⠛â â žâ Šâ §â ‘â Ž" }, { "input": "interrogator", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —" }, { "input": "interrogator's", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â „â Ž" }, { "input": "interrogatories", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â Šâ ‘â Ž" }, { "input": "interrogators", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â Ž" }, { "input": "interrogatory", "output": "⠔⠞⠻⠗⠕⠛â â žâ •â —â ½" }, { "input": "interrogatory's", "output": "⠔⠞⠻⠗⠕⠛â â žâ •⠗⠽⠄⠎" }, { "input": "interrupt", "output": "⠔⠞⠻⠗⠥â â ž" }, { "input": "interrupt's", "output": "⠔⠞⠻⠗⠥â â žâ „â Ž" }, { "input": "interrupted", "output": "⠔⠞⠻⠗⠥â â žâ «" }, { "input": "interrupter", "output": "⠔⠞⠻⠗⠥â â žâ »" }, { "input": "interrupter's", "output": "⠔⠞⠻⠗⠥â â žâ »â „â Ž" }, { "input": "interrupters", "output": "⠔⠞⠻⠗⠥â â žâ »â Ž" }, { "input": "interrupting", "output": "⠔⠞⠻⠗⠥â â žâ Œ" }, { "input": "interruption", "output": "⠔⠞⠻⠗⠥â â °â " }, { "input": "interruption's", "output": "⠔⠞⠻⠗⠥â â °â â „â Ž" }, { "input": "interruptions", "output": "⠔⠞⠻⠗⠥â â °â â Ž" }, { "input": "interrupts", "output": "⠔⠞⠻⠗⠥â â žâ Ž" }, { "input": "inters", "output": "⠔⠞⠻⠎" }, { "input": "interscholastic", "output": "⠔⠞⠻⠎⠡⠕⠇â â Œâ Šâ ‰" }, { "input": "intersect", "output": "⠔⠞⠻⠎⠑⠉⠞" }, { "input": "intersected", "output": "⠔⠞⠻⠎⠑⠉⠞⠫" }, { "input": "intersecting", "output": "⠔⠞⠻⠎⠑⠉⠞⠌" }, { "input": "intersection", "output": "⠔⠞⠻⠎⠑⠉⠰â " }, { "input": "intersection's", "output": "⠔⠞⠻⠎⠑⠉⠰â â „â Ž" }, { "input": "intersections", "output": "⠔⠞⠻⠎⠑⠉⠰â â Ž" }, { "input": "intersects", "output": "⠔⠞⠻⠎⠑⠉⠞⠎" }, { "input": "intersession", "output": "⠔⠞⠻⠎⠑⠎⠨â " }, { "input": "intersession's", "output": "⠔⠞⠻⠎⠑⠎⠨â â „â Ž" }, { "input": "intersessions", "output": "⠔⠞⠻⠎⠑⠎⠨â â Ž" }, { "input": "intersperse", "output": "⠔⠞⠻⠎â â »â Žâ ‘" }, { "input": "interspersed", "output": "⠔⠞⠻⠎â â »â Žâ «" }, { "input": "intersperses", "output": "⠔⠞⠻⠎â â »â Žâ ‘â Ž" }, { "input": "interspersing", "output": "⠔⠞⠻⠎â â »â Žâ Œ" }, { "input": "interspersion", "output": "⠔⠞⠻⠎â â »â ¨â " }, { "input": "interspersion's", "output": "⠔⠞⠻⠎â â »â ¨â â „â Ž" }, { "input": "interstate", "output": "⠔⠞⠻⠌â â žâ ‘" }, { "input": "interstate's", "output": "⠔⠞⠻⠌â â žâ ‘â „â Ž" }, { "input": "interstates", "output": "⠔⠞⠻⠌â â žâ ‘â Ž" }, { "input": "interstellar", "output": "⠔⠞⠻⠌⠑⠇⠇⠜" }, { "input": "interstice", "output": "⠔⠞⠻⠌⠊⠉⠑" }, { "input": "interstice's", "output": "⠔⠞⠻⠌⠊⠉⠑⠄⠎" }, { "input": "interstices", "output": "⠔⠞⠻⠌⠊⠉⠑⠎" }, { "input": "interstitial", "output": "⠔⠞⠻⠌⠊⠞⠊â â ‡" }, { "input": "intertwine", "output": "⠔⠞⠻⠞⠺⠔⠑" }, { "input": "intertwined", "output": "⠔⠞⠻⠞⠺⠔⠫" }, { "input": "intertwines", "output": "⠔⠞⠻⠞⠺⠔⠑⠎" }, { "input": "intertwining", "output": "⠔⠞⠻⠞⠺⠔⠌" }, { "input": "interurban", "output": "⠔⠞⠻⠥⠗⠃â â " }, { "input": "interval", "output": "⠔⠞⠻⠧â â ‡" }, { "input": "interval's", "output": "⠔⠞⠻⠧â â ‡â „â Ž" }, { "input": "intervals", "output": "⠔⠞⠻⠧â â ‡â Ž" }, { "input": "intervene", "output": "⠔⠞⠻⠧⠢⠑" }, { "input": "intervened", "output": "⠔⠞⠻⠧⠢⠫" }, { "input": "intervenes", "output": "⠔⠞⠻⠧⠢⠑⠎" }, { "input": "intervening", "output": "⠔⠞⠻⠧⠢⠌" }, { "input": "intervention", "output": "⠔⠞⠻⠧⠢⠰â " }, { "input": "intervention's", "output": "⠔⠞⠻⠧⠢⠰â â „â Ž" }, { "input": "interventionism's", "output": "⠔⠞⠻⠧⠢⠰â â Šâ Žâ â „â Ž" }, { "input": "interventions", "output": "⠔⠞⠻⠧⠢⠰â â Ž" }, { "input": "interview", "output": "⠔⠞⠻⠧⠊⠑⠺" }, { "input": "interview's", "output": "⠔⠞⠻⠧⠊⠑⠺⠄⠎" }, { "input": "interviewed", "output": "⠔⠞⠻⠧⠊⠑⠺⠫" }, { "input": "interviewee", "output": "⠔⠞⠻⠧⠊⠑⠺⠑⠑" }, { "input": "interviewee's", "output": "⠔⠞⠻⠧⠊⠑⠺⠑⠑⠄⠎" }, { "input": "interviewees", "output": "⠔⠞⠻⠧⠊⠑⠺⠑⠑⠎" }, { "input": "interviewer", "output": "⠔⠞⠻⠧⠊⠑⠺⠻" }, { "input": "interviewer's", "output": "⠔⠞⠻⠧⠊⠑⠺⠻⠄⠎" }, { "input": "interviewers", "output": "⠔⠞⠻⠧⠊⠑⠺⠻⠎" }, { "input": "interviewing", "output": "⠔⠞⠻⠧⠊⠑⠺⠌" }, { "input": "interviews", "output": "⠔⠞⠻⠧⠊⠑⠺⠎" }, { "input": "intervocalic", "output": "⠔⠞⠻⠧⠕⠉â â ‡â Šâ ‰" }, { "input": "interweave", "output": "⠔⠞⠻⠺⠂⠧⠑" }, { "input": "interweaves", "output": "⠔⠞⠻⠺⠂⠧⠑⠎" }, { "input": "interweaving", "output": "⠔⠞⠻⠺⠂⠧⠌" }, { "input": "interwove", "output": "⠔⠞⠻⠺⠕⠧⠑" }, { "input": "interwoven", "output": "⠔⠞⠻⠺⠕⠧⠢" }, { "input": "intestacy", "output": "⠔⠞⠑⠌â â ‰â ½" }, { "input": "intestacy's", "output": "⠔⠞⠑⠌â â ‰â ½â „â Ž" }, { "input": "intestate", "output": "⠔⠞⠑⠌â â žâ ‘" }, { "input": "intestinal", "output": "⠔⠞⠑⠌⠔â â ‡" }, { "input": "intestine", "output": "⠔⠞⠑⠌⠔⠑" }, { "input": "intestine's", "output": "⠔⠞⠑⠌⠔⠑⠄⠎" }, { "input": "intestines", "output": "⠔⠞⠑⠌⠔⠑⠎" }, { "input": "intimacies", "output": "⠔⠞⠊â â â ‰â Šâ ‘â Ž" }, { "input": "intimacy", "output": "⠔⠞⠊â â â ‰â ½" }, { "input": "intimacy's", "output": "⠔⠞⠊â â â ‰â ½â „â Ž" }, { "input": "intimate", "output": "⠔⠞⠊â â â žâ ‘" }, { "input": "intimate's", "output": "⠔⠞⠊â â â žâ ‘â „â Ž" }, { "input": "intimated", "output": "⠔⠞⠊â â â žâ «" }, { "input": "intimately", "output": "⠔⠞⠊â â â žâ ‘⠇⠽" }, { "input": "intimates", "output": "⠔⠞⠊â â â žâ ‘â Ž" }, { "input": "intimating", "output": "⠔⠞⠊â â â žâ Œ" }, { "input": "intimation", "output": "⠔⠞⠊â â  â " }, { "input": "intimation's", "output": "⠔⠞⠊â â  â â „â Ž" }, { "input": "intimations", "output": "⠔⠞⠊â â  â â Ž" }, { "input": "intimidate", "output": "⠔⠞⠊â â Šâ ™â â žâ ‘" }, { "input": "intimidated", "output": "⠔⠞⠊â â Šâ ™â â žâ «" }, { "input": "intimidates", "output": "⠔⠞⠊â â Šâ ™â â žâ ‘â Ž" }, { "input": "intimidating", "output": "⠔⠞⠊â â Šâ ™â â žâ Œ" }, { "input": "intimidatingly", "output": "⠔⠞⠊â â Šâ ™â â žâ Œâ ‡â ½" }, { "input": "intimidation", "output": "⠔⠞⠊â â Šâ ™â  â " }, { "input": "intimidation's", "output": "⠔⠞⠊â â Šâ ™â  â â „â Ž" }, { "input": "into", "output": "⠔⠞⠕" }, { "input": "intolerable", "output": "⠔⠞⠕⠇⠻â â ¼" }, { "input": "intolerably", "output": "⠔⠞⠕⠇⠻â â ƒâ ‡â ½" }, { "input": "intolerance", "output": "⠔⠞⠕⠇⠻⠨⠑" }, { "input": "intolerance's", "output": "⠔⠞⠕⠇⠻⠨⠑⠄⠎" }, { "input": "intolerant", "output": "⠔⠞⠕⠇⠻â â â ž" }, { "input": "intonation", "output": "⠔⠞⠕â â  â " }, { "input": "intonation's", "output": "⠔⠞⠕â â  â â „â Ž" }, { "input": "intonations", "output": "⠔⠞⠕â â  â â Ž" }, { "input": "intone", "output": "⠔⠞â â •" }, { "input": "intoned", "output": "⠔⠞⠕â â «" }, { "input": "intoner", "output": "⠔⠞⠕â â »" }, { "input": "intoner's", "output": "⠔⠞⠕â â »â „â Ž" }, { "input": "intoners", "output": "⠔⠞⠕â â »â Ž" }, { "input": "intones", "output": "⠔⠞â â •â Ž" }, { "input": "intoning", "output": "⠔⠞⠕â â Œ" }, { "input": "intoxicant", "output": "⠔⠞⠕⠭⠊⠉â â â ž" }, { "input": "intoxicant's", "output": "⠔⠞⠕⠭⠊⠉â â â žâ „â Ž" }, { "input": "intoxicants", "output": "⠔⠞⠕⠭⠊⠉â â â žâ Ž" }, { "input": "intoxicate", "output": "⠔⠞⠕⠭⠊⠉â â žâ ‘" }, { "input": "intoxicated", "output": "⠔⠞⠕⠭⠊⠉â â žâ «" }, { "input": "intoxicates", "output": "⠔⠞⠕⠭⠊⠉â â žâ ‘â Ž" }, { "input": "intoxicating", "output": "⠔⠞⠕⠭⠊⠉â â žâ Œ" }, { "input": "intoxication", "output": "⠔⠞⠕⠭⠊⠉⠠â " }, { "input": "intoxication's", "output": "⠔⠞⠕⠭⠊⠉⠠â â „â Ž" }, { "input": "intractability", "output": "⠔⠞⠗â â ‰â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "intractability's", "output": "⠔⠞⠗â â ‰â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "intractable", "output": "⠔⠞⠗â â ‰â žâ â ¼" }, { "input": "intramural", "output": "⠔⠞⠗â â â ¥â —â â ‡" }, { "input": "intramuscular", "output": "⠔⠞⠗â â â ¥â Žâ ‰â ¥â ‡â œ" }, { "input": "intransigence", "output": "⠔⠞⠗â â â Žâ Šâ ›â °â ‘" }, { "input": "intransigence's", "output": "⠔⠞⠗â â â Žâ Šâ ›â °â ‘â „â Ž" }, { "input": "intransigent", "output": "⠔⠞⠗â â â Žâ Šâ ›â ¢â ž" }, { "input": "intransigent's", "output": "⠔⠞⠗â â â Žâ Šâ ›â ¢â žâ „â Ž" }, { "input": "intransigents", "output": "⠔⠞⠗â â â Žâ Šâ ›â ¢â žâ Ž" }, { "input": "intransitive", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘" }, { "input": "intransitive's", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘â „â Ž" }, { "input": "intransitively", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "intransitives", "output": "⠔⠞⠗â â â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "intrastate", "output": "⠔⠞⠗â â Œâ â žâ ‘" }, { "input": "intravenous", "output": "⠔⠞⠗â â §â ¢â ³â Ž" }, { "input": "intravenous's", "output": "⠔⠞⠗â â §â ¢â ³â Žâ „â Ž" }, { "input": "intravenouses", "output": "⠔⠞⠗â â §â ¢â ³â Žâ ‘â Ž" }, { "input": "intravenously", "output": "⠔⠞⠗â â §â ¢â ³â Žâ ‡â ½" }, { "input": "intrepid", "output": "⠔⠞⠗⠑â â Šâ ™" }, { "input": "intrepidity", "output": "⠔⠞⠗⠑â â Šâ ™â °â ½" }, { "input": "intrepidity's", "output": "⠔⠞⠗⠑â â Šâ ™â °â ½â „â Ž" }, { "input": "intrepidly", "output": "⠔⠞⠗⠑â â Šâ ™â ‡â ½" }, { "input": "intricacies", "output": "⠔⠞⠗⠊⠉â â ‰â Šâ ‘â Ž" }, { "input": "intricacy", "output": "⠔⠞⠗⠊⠉â â ‰â ½" }, { "input": "intricacy's", "output": "⠔⠞⠗⠊⠉â â ‰â ½â „â Ž" }, { "input": "intricate", "output": "⠔⠞⠗⠊⠉â â žâ ‘" }, { "input": "intricately", "output": "⠔⠞⠗⠊⠉â â žâ ‘⠇⠽" }, { "input": "intrigue", "output": "⠔⠞⠗⠊⠛⠥⠑" }, { "input": "intrigue's", "output": "⠔⠞⠗⠊⠛⠥⠑⠄⠎" }, { "input": "intrigued", "output": "⠔⠞⠗⠊⠛⠥⠫" }, { "input": "intriguer", "output": "⠔⠞⠗⠊⠛⠥⠻" }, { "input": "intriguer's", "output": "⠔⠞⠗⠊⠛⠥⠻⠄⠎" }, { "input": "intriguers", "output": "⠔⠞⠗⠊⠛⠥⠻⠎" }, { "input": "intrigues", "output": "⠔⠞⠗⠊⠛⠥⠑⠎" }, { "input": "intriguing", "output": "⠔⠞⠗⠊⠛⠥⠌" }, { "input": "intriguingly", "output": "⠔⠞⠗⠊⠛⠥⠌⠇⠽" }, { "input": "intrinsic", "output": "⠔⠞⠗⠔⠎⠊⠉" }, { "input": "intrinsically", "output": "⠔⠞⠗⠔⠎⠊⠉⠠⠽" }, { "input": "intro's", "output": "⠔⠞⠗⠕⠄⠎" }, { "input": "introduce", "output": "⠔⠞⠗⠕⠙⠥⠉⠑" }, { "input": "introduced", "output": "⠔⠞⠗⠕⠙⠥⠉⠫" }, { "input": "introduces", "output": "⠔⠞⠗⠕⠙⠥⠉⠑⠎" }, { "input": "introducing", "output": "⠔⠞⠗⠕⠙⠥⠉⠌" }, { "input": "introduction", "output": "⠔⠞⠗⠕⠙⠥⠉⠰â " }, { "input": "introduction's", "output": "⠔⠞⠗⠕⠙⠥⠉⠰â â „â Ž" }, { "input": "introductions", "output": "⠔⠞⠗⠕⠙⠥⠉⠰â â Ž" }, { "input": "introductory", "output": "⠔⠞⠗⠕⠙⠥⠉⠞⠕⠗⠽" }, { "input": "introit", "output": "⠔⠞⠗⠕⠊⠞" }, { "input": "introit's", "output": "⠔⠞⠗⠕⠊⠞⠄⠎" }, { "input": "introits", "output": "⠔⠞⠗⠕⠊⠞⠎" }, { "input": "intros", "output": "⠔⠞⠗⠕⠎" }, { "input": "introspect", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠞" }, { "input": "introspected", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠞⠫" }, { "input": "introspecting", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠞⠌" }, { "input": "introspection", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠰â " }, { "input": "introspection's", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠰â â „â Ž" }, { "input": "introspective", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠞⠊⠧⠑" }, { "input": "introspects", "output": "⠔⠞⠗⠕⠎â â ‘⠉⠞⠎" }, { "input": "introversion", "output": "⠔⠞⠗⠕⠧⠻⠨â " }, { "input": "introversion's", "output": "⠔⠞⠗⠕⠧⠻⠨â â „â Ž" }, { "input": "introvert", "output": "⠔⠞⠗⠕⠧⠻⠞" }, { "input": "introvert's", "output": "⠔⠞⠗⠕⠧⠻⠞⠄⠎" }, { "input": "introverted", "output": "⠔⠞⠗⠕⠧⠻⠞⠫" }, { "input": "introverts", "output": "⠔⠞⠗⠕⠧⠻⠞⠎" }, { "input": "intrude", "output": "⠔⠞⠗⠥⠙⠑" }, { "input": "intruded", "output": "⠔⠞⠗⠥⠙⠫" }, { "input": "intruder", "output": "⠔⠞⠗⠥⠙⠻" }, { "input": "intruder's", "output": "⠔⠞⠗⠥⠙⠻⠄⠎" }, { "input": "intruders", "output": "⠔⠞⠗⠥⠙⠻⠎" }, { "input": "intrudes", "output": "⠔⠞⠗⠥⠙⠑⠎" }, { "input": "intruding", "output": "⠔⠞⠗⠥⠙⠌" }, { "input": "intrusion", "output": "⠔⠞⠗⠥⠨â " }, { "input": "intrusion's", "output": "⠔⠞⠗⠥⠨â â „â Ž" }, { "input": "intrusions", "output": "⠔⠞⠗⠥⠨â â Ž" }, { "input": "intrusive", "output": "⠔⠞⠗⠥⠎⠊⠧⠑" }, { "input": "intrusively", "output": "⠔⠞⠗⠥⠎⠊⠧⠑⠇⠽" }, { "input": "intrusiveness", "output": "⠔⠞⠗⠥⠎⠊⠧⠑⠰⠎" }, { "input": "intrusiveness's", "output": "⠔⠞⠗⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "intuit", "output": "⠔⠞⠥⠊⠞" }, { "input": "intuited", "output": "⠔⠞⠥⠊⠞⠫" }, { "input": "intuiting", "output": "⠔⠞⠥⠊⠞⠌" }, { "input": "intuition", "output": "⠔⠞⠥⠊⠰â " }, { "input": "intuition's", "output": "⠔⠞⠥⠊⠰â â „â Ž" }, { "input": "intuitions", "output": "⠔⠞⠥⠊⠰â â Ž" }, { "input": "intuitive", "output": "⠔⠞⠥⠊⠞⠊⠧⠑" }, { "input": "intuitively", "output": "⠔⠞⠥⠊⠞⠊⠧⠑⠇⠽" }, { "input": "intuitiveness", "output": "⠔⠞⠥⠊⠞⠊⠧⠑⠰⠎" }, { "input": "intuitiveness's", "output": "⠔⠞⠥⠊⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "intuits", "output": "⠔⠞⠥⠊⠞⠎" }, { "input": "inundate", "output": "⠔⠥â â ™â â žâ ‘" }, { "input": "inundated", "output": "⠔⠥â â ™â â žâ «" }, { "input": "inundates", "output": "⠔⠥â â ™â â žâ ‘â Ž" }, { "input": "inundating", "output": "⠔⠥â â ™â â žâ Œ" }, { "input": "inundation", "output": "⠔⠥â â ™â  â " }, { "input": "inundation's", "output": "⠔⠥â â ™â  â â „â Ž" }, { "input": "inundations", "output": "⠔⠥â â ™â  â â Ž" }, { "input": "inure", "output": "⠔⠥⠗⠑" }, { "input": "inured", "output": "⠔⠥⠗⠫" }, { "input": "inures", "output": "⠔⠥⠗⠑⠎" }, { "input": "inuring", "output": "⠔⠥⠗⠌" }, { "input": "invade", "output": "⠔⠧â â ™â ‘" }, { "input": "invaded", "output": "⠔⠧â â ™â «" }, { "input": "invader", "output": "⠔⠧â â ™â »" }, { "input": "invader's", "output": "⠔⠧â â ™â »â „â Ž" }, { "input": "invaders", "output": "⠔⠧â â ™â »â Ž" }, { "input": "invades", "output": "⠔⠧â â ™â ‘â Ž" }, { "input": "invading", "output": "⠔⠧â â ™â Œ" }, { "input": "invalid", "output": "⠔⠧â â ‡â Šâ ™" }, { "input": "invalid's", "output": "⠔⠧â â ‡â Šâ ™â „â Ž" }, { "input": "invalidate", "output": "⠔⠧â â ‡â Šâ ™â â žâ ‘" }, { "input": "invalidated", "output": "⠔⠧â â ‡â Šâ ™â â žâ «" }, { "input": "invalidates", "output": "⠔⠧â â ‡â Šâ ™â â žâ ‘â Ž" }, { "input": "invalidating", "output": "⠔⠧â â ‡â Šâ ™â â žâ Œ" }, { "input": "invalidation", "output": "⠔⠧â â ‡â Šâ ™â  â " }, { "input": "invalidation's", "output": "⠔⠧â â ‡â Šâ ™â  â â „â Ž" }, { "input": "invalided", "output": "⠔⠧â â ‡â Šâ ™â «" }, { "input": "invaliding", "output": "⠔⠧â â ‡â Šâ ™â Œ" }, { "input": "invalidism", "output": "⠔⠧â â ‡â Šâ ™â Šâ Žâ " }, { "input": "invalidism's", "output": "⠔⠧â â ‡â Šâ ™â Šâ Žâ â „â Ž" }, { "input": "invalidity", "output": "⠔⠧â â ‡â Šâ ™â °â ½" }, { "input": "invalidity's", "output": "⠔⠧â â ‡â Šâ ™â °â ½â „â Ž" }, { "input": "invalidly", "output": "⠔⠧â â ‡â Šâ ™â ‡â ½" }, { "input": "invalids", "output": "⠔⠧â â ‡â Šâ ™â Ž" }, { "input": "invaluable", "output": "⠔⠧â â ‡â ¥â â ¼" }, { "input": "invaluably", "output": "⠔⠧â â ‡â ¥â â ƒâ ‡â ½" }, { "input": "invariability", "output": "⠔⠧⠜⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "invariability's", "output": "⠔⠧⠜⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "invariable", "output": "⠔⠧⠜⠊â â ¼" }, { "input": "invariable's", "output": "⠔⠧⠜⠊â â ¼â „â Ž" }, { "input": "invariables", "output": "⠔⠧⠜⠊â â ¼â Ž" }, { "input": "invariably", "output": "⠔⠧⠜⠊â â ƒâ ‡â ½" }, { "input": "invariant", "output": "⠔⠧⠜⠊â â â ž" }, { "input": "invasion", "output": "⠔⠧â â ¨â " }, { "input": "invasion's", "output": "⠔⠧â â ¨â â „â Ž" }, { "input": "invasions", "output": "⠔⠧â â ¨â â Ž" }, { "input": "invasive", "output": "⠔⠧â â Žâ Šâ §â ‘" }, { "input": "invective", "output": "⠔⠧⠑⠉⠞⠊⠧⠑" }, { "input": "invective's", "output": "⠔⠧⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "inveigh", "output": "⠔⠧⠑⠊⠣" }, { "input": "inveighed", "output": "⠔⠧⠑⠊⠣⠫" }, { "input": "inveighing", "output": "⠔⠧⠑⠊⠣⠌" }, { "input": "inveighs", "output": "⠔⠧⠑⠊⠣⠎" }, { "input": "inveigle", "output": "⠔⠧⠑⠊⠛⠇⠑" }, { "input": "inveigled", "output": "⠔⠧⠑⠊⠛⠇⠫" }, { "input": "inveigler", "output": "⠔⠧⠑⠊⠛⠇⠻" }, { "input": "inveigler's", "output": "⠔⠧⠑⠊⠛⠇⠻⠄⠎" }, { "input": "inveiglers", "output": "⠔⠧⠑⠊⠛⠇⠻⠎" }, { "input": "inveigles", "output": "⠔⠧⠑⠊⠛⠇⠑⠎" }, { "input": "inveigling", "output": "⠔⠧⠑⠊⠛⠇⠌" }, { "input": "invent", "output": "⠔⠧⠢⠞" }, { "input": "invented", "output": "⠔⠧⠢⠞⠫" }, { "input": "inventing", "output": "⠔⠧⠢⠞⠌" }, { "input": "invention", "output": "⠔⠧⠢⠰â " }, { "input": "invention's", "output": "⠔⠧⠢⠰â â „â Ž" }, { "input": "inventions", "output": "⠔⠧⠢⠰â â Ž" }, { "input": "inventive", "output": "⠔⠧⠢⠞⠊⠧⠑" }, { "input": "inventiveness", "output": "⠔⠧⠢⠞⠊⠧⠑⠰⠎" }, { "input": "inventiveness's", "output": "⠔⠧⠢⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "inventor", "output": "⠔⠧⠢⠞⠕⠗" }, { "input": "inventor's", "output": "⠔⠧⠢⠞⠕⠗⠄⠎" }, { "input": "inventoried", "output": "⠔⠧⠢⠞⠕⠗⠊⠫" }, { "input": "inventories", "output": "⠔⠧⠢⠞⠕⠗⠊⠑⠎" }, { "input": "inventors", "output": "⠔⠧⠢⠞⠕⠗⠎" }, { "input": "inventory", "output": "⠔⠧⠢⠞⠕⠗⠽" }, { "input": "inventory's", "output": "⠔⠧⠢⠞⠕⠗⠽⠄⠎" }, { "input": "inventorying", "output": "⠔⠧⠢⠞⠕⠗⠽⠌" }, { "input": "invents", "output": "⠔⠧⠢⠞⠎" }, { "input": "inverse", "output": "⠔⠧⠻⠎⠑" }, { "input": "inverse's", "output": "⠔⠧⠻⠎⠑⠄⠎" }, { "input": "inversely", "output": "⠔⠧⠻⠎⠑⠇⠽" }, { "input": "inverses", "output": "⠔⠧⠻⠎⠑⠎" }, { "input": "inversion", "output": "⠔⠧⠻⠨â " }, { "input": "inversion's", "output": "⠔⠧⠻⠨â â „â Ž" }, { "input": "inversions", "output": "⠔⠧⠻⠨â â Ž" }, { "input": "invert", "output": "⠔⠧⠻⠞" }, { "input": "invert's", "output": "⠔⠧⠻⠞⠄⠎" }, { "input": "invertebrate", "output": "⠔⠧⠻⠞⠑⠃⠗â â žâ ‘" }, { "input": "invertebrate's", "output": "⠔⠧⠻⠞⠑⠃⠗â â žâ ‘â „â Ž" }, { "input": "invertebrates", "output": "⠔⠧⠻⠞⠑⠃⠗â â žâ ‘â Ž" }, { "input": "inverted", "output": "⠔⠧⠻⠞⠫" }, { "input": "inverting", "output": "⠔⠧⠻⠞⠌" }, { "input": "inverts", "output": "⠔⠧⠻⠞⠎" }, { "input": "invest", "output": "⠔⠧⠑⠌" }, { "input": "invested", "output": "⠔⠧⠑⠌⠫" }, { "input": "investigate", "output": "⠔⠧⠑⠌⠊⠛â â žâ ‘" }, { "input": "investigated", "output": "⠔⠧⠑⠌⠊⠛â â žâ «" }, { "input": "investigates", "output": "⠔⠧⠑⠌⠊⠛â â žâ ‘â Ž" }, { "input": "investigating", "output": "⠔⠧⠑⠌⠊⠛â â žâ Œ" }, { "input": "investigation", "output": "⠔⠧⠑⠌⠊⠛⠠â " }, { "input": "investigation's", "output": "⠔⠧⠑⠌⠊⠛⠠â â „â Ž" }, { "input": "investigations", "output": "⠔⠧⠑⠌⠊⠛⠠â â Ž" }, { "input": "investigative", "output": "⠔⠧⠑⠌⠊⠛â â žâ Šâ §â ‘" }, { "input": "investigator", "output": "⠔⠧⠑⠌⠊⠛â â žâ •â —" }, { "input": "investigator's", "output": "⠔⠧⠑⠌⠊⠛â â žâ •â —â „â Ž" }, { "input": "investigators", "output": "⠔⠧⠑⠌⠊⠛â â žâ •â —â Ž" }, { "input": "investing", "output": "⠔⠧⠑⠌⠌" }, { "input": "investiture", "output": "⠔⠧⠑⠌⠊⠞⠥⠗⠑" }, { "input": "investiture's", "output": "⠔⠧⠑⠌⠊⠞⠥⠗⠑⠄⠎" }, { "input": "investitures", "output": "⠔⠧⠑⠌⠊⠞⠥⠗⠑⠎" }, { "input": "investment", "output": "⠔⠧⠑⠌⠰⠞" }, { "input": "investment's", "output": "⠔⠧⠑⠌⠰⠞⠄⠎" }, { "input": "investments", "output": "⠔⠧⠑⠌⠰⠞⠎" }, { "input": "investor", "output": "⠔⠧⠑⠌⠕⠗" }, { "input": "investor's", "output": "⠔⠧⠑⠌⠕⠗⠄⠎" }, { "input": "investors", "output": "⠔⠧⠑⠌⠕⠗⠎" }, { "input": "invests", "output": "⠔⠧⠑⠌⠎" }, { "input": "inveteracy", "output": "⠔⠧⠑⠞⠻â â ‰â ½" }, { "input": "inveteracy's", "output": "⠔⠧⠑⠞⠻â â ‰â ½â „â Ž" }, { "input": "inveterate", "output": "⠔⠧⠑⠞⠻â â žâ ‘" }, { "input": "invidious", "output": "⠔⠧⠊⠙⠊⠳⠎" }, { "input": "invidiously", "output": "⠔⠧⠊⠙⠊⠳⠎⠇⠽" }, { "input": "invidiousness's", "output": "⠔⠧⠊⠙⠊⠳⠎⠰⠎⠄⠎" }, { "input": "invigorate", "output": "⠔⠧⠊⠛⠕⠗â â žâ ‘" }, { "input": "invigorated", "output": "⠔⠧⠊⠛⠕⠗â â žâ «" }, { "input": "invigorates", "output": "⠔⠧⠊⠛⠕⠗â â žâ ‘â Ž" }, { "input": "invigorating", "output": "⠔⠧⠊⠛⠕⠗â â žâ Œ" }, { "input": "invigoratingly", "output": "⠔⠧⠊⠛⠕⠗â â žâ Œâ ‡â ½" }, { "input": "invigoration", "output": "⠔⠧⠊⠛⠕⠗⠠â " }, { "input": "invigoration's", "output": "⠔⠧⠊⠛⠕⠗⠠â â „â Ž" }, { "input": "invincibility", "output": "⠔⠧⠔⠉⠊⠃⠊⠇⠰⠽" }, { "input": "invincibility's", "output": "⠔⠧⠔⠉⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "invincible", "output": "⠔⠧⠔⠉⠊⠼" }, { "input": "invincibly", "output": "⠔⠧⠔⠉⠊⠃⠇⠽" }, { "input": "inviolability", "output": "⠔⠧⠊⠕⠇â â ƒâ Šâ ‡â °â ½" }, { "input": "inviolability's", "output": "⠔⠧⠊⠕⠇â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "inviolable", "output": "⠔⠧⠊⠕⠇â â ¼" }, { "input": "inviolably", "output": "⠔⠧⠊⠕⠇â â ƒâ ‡â ½" }, { "input": "inviolate", "output": "⠔⠧⠊⠕⠇â â žâ ‘" }, { "input": "invisibility", "output": "⠔⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "invisibility's", "output": "⠔⠧⠊⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "invisible", "output": "⠔⠧⠊⠎⠊⠼" }, { "input": "invisibly", "output": "⠔⠧⠊⠎⠊⠃⠇⠽" }, { "input": "invitation", "output": "⠔⠧⠊⠞⠠â " }, { "input": "invitation's", "output": "⠔⠧⠊⠞⠠â â „â Ž" }, { "input": "invitational", "output": "⠔⠧⠊⠞⠠â â â ‡" }, { "input": "invitational's", "output": "⠔⠧⠊⠞⠠â â â ‡â „â Ž" }, { "input": "invitationals", "output": "⠔⠧⠊⠞⠠â â â ‡â Ž" }, { "input": "invitations", "output": "⠔⠧⠊⠞⠠â â Ž" }, { "input": "invite", "output": "⠔⠧⠊⠞⠑" }, { "input": "invite's", "output": "⠔⠧⠊⠞⠑⠄⠎" }, { "input": "invited", "output": "⠔⠧⠊⠞⠫" }, { "input": "invitee", "output": "⠔⠧⠊⠞⠑⠑" }, { "input": "invitee's", "output": "⠔⠧⠊⠞⠑⠑⠄⠎" }, { "input": "invitees", "output": "⠔⠧⠊⠞⠑⠑⠎" }, { "input": "invites", "output": "⠔⠧⠊⠞⠑⠎" }, { "input": "inviting", "output": "⠔⠧⠊⠞⠌" }, { "input": "invitingly", "output": "⠔⠧⠊⠞⠌⠇⠽" }, { "input": "invocation", "output": "⠔⠧⠕⠉⠠â " }, { "input": "invocation's", "output": "⠔⠧⠕⠉⠠â â „â Ž" }, { "input": "invocations", "output": "⠔⠧⠕⠉⠠â â Ž" }, { "input": "invoice", "output": "⠔⠧⠕⠊⠉⠑" }, { "input": "invoice's", "output": "⠔⠧⠕⠊⠉⠑⠄⠎" }, { "input": "invoiced", "output": "⠔⠧⠕⠊⠉⠫" }, { "input": "invoices", "output": "⠔⠧⠕⠊⠉⠑⠎" }, { "input": "invoicing", "output": "⠔⠧⠕⠊⠉⠌" }, { "input": "invoke", "output": "⠔⠧⠕⠅⠑" }, { "input": "invoked", "output": "⠔⠧⠕⠅⠫" }, { "input": "invokes", "output": "⠔⠧⠕⠅⠑⠎" }, { "input": "invoking", "output": "⠔⠧⠕⠅⠌" }, { "input": "involuntarily", "output": "⠔⠧⠕⠇⠥â â žâ œâ Šâ ‡â ½" }, { "input": "involuntariness", "output": "⠔⠧⠕⠇⠥â â žâ œâ Šâ °â Ž" }, { "input": "involuntariness's", "output": "⠔⠧⠕⠇⠥â â žâ œâ Šâ °â Žâ „â Ž" }, { "input": "involuntary", "output": "⠔⠧⠕⠇⠥â â žâ œâ ½" }, { "input": "involution", "output": "⠔⠧⠕⠇⠥⠰â " }, { "input": "involution's", "output": "⠔⠧⠕⠇⠥⠰â â „â Ž" }, { "input": "involve", "output": "⠔⠧⠕⠇⠧⠑" }, { "input": "involved", "output": "⠔⠧⠕⠇⠧⠫" }, { "input": "involvement", "output": "⠔⠧⠕⠇⠧⠑⠰⠞" }, { "input": "involvement's", "output": "⠔⠧⠕⠇⠧⠑⠰⠞⠄⠎" }, { "input": "involvements", "output": "⠔⠧⠕⠇⠧⠑⠰⠞⠎" }, { "input": "involves", "output": "⠔⠧⠕⠇⠧⠑⠎" }, { "input": "involving", "output": "⠔⠧⠕⠇⠧⠌" }, { "input": "invulnerability", "output": "⠔⠧⠥⠇â â »â â ƒâ Šâ ‡â °â ½" }, { "input": "invulnerability's", "output": "⠔⠧⠥⠇â â »â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "invulnerable", "output": "⠔⠧⠥⠇â â »â â ¼" }, { "input": "invulnerably", "output": "⠔⠧⠥⠇â â »â â ƒâ ‡â ½" }, { "input": "inward", "output": "⠔⠺⠜⠙" }, { "input": "inwardly", "output": "⠔⠺⠜⠙⠇⠽" }, { "input": "inwards", "output": "⠔⠺⠜⠙⠎" }, { "input": "iodide", "output": "⠊⠕⠙⠊⠙⠑" }, { "input": "iodide's", "output": "⠊⠕⠙⠊⠙⠑⠄⠎" }, { "input": "iodides", "output": "⠊⠕⠙⠊⠙⠑⠎" }, { "input": "iodine", "output": "⠊⠕⠙⠔⠑" }, { "input": "iodine's", "output": "⠊⠕⠙⠔⠑⠄⠎" }, { "input": "iodize", "output": "⠊⠕⠙⠊⠵⠑" }, { "input": "iodized", "output": "⠊⠕⠙⠊⠵⠫" }, { "input": "iodizes", "output": "⠊⠕⠙⠊⠵⠑⠎" }, { "input": "iodizing", "output": "⠊⠕⠙⠊⠵⠌" }, { "input": "ion", "output": "â Šâ •â " }, { "input": "ion's", "output": "â Šâ •â â „â Ž" }, { "input": "ionic", "output": "â Šâ •â â Šâ ‰" }, { "input": "ionization", "output": "â Šâ •â â Šâ µâ  â " }, { "input": "ionization's", "output": "â Šâ •â â Šâ µâ  â â „â Ž" }, { "input": "ionize", "output": "â Šâ •â â Šâ µâ ‘" }, { "input": "ionized", "output": "â Šâ •â â Šâ µâ «" }, { "input": "ionizer", "output": "â Šâ •â â Šâ µâ »" }, { "input": "ionizer's", "output": "â Šâ •â â Šâ µâ »â „â Ž" }, { "input": "ionizers", "output": "â Šâ •â â Šâ µâ »â Ž" }, { "input": "ionizes", "output": "â Šâ •â â Šâ µâ ‘â Ž" }, { "input": "ionizing", "output": "â Šâ •â â Šâ µâ Œ" }, { "input": "ionosphere", "output": "â Šâ •â â •â Žâ â “⠻⠑" }, { "input": "ionosphere's", "output": "â Šâ •â â •â Žâ â “⠻⠑⠄⠎" }, { "input": "ionospheres", "output": "â Šâ •â â •â Žâ â “⠻⠑⠎" }, { "input": "ionospheric", "output": "â Šâ •â â •â Žâ â “⠻⠊⠉" }, { "input": "ions", "output": "â Šâ •â â Ž" }, { "input": "iota", "output": "â Šâ •â žâ " }, { "input": "iota's", "output": "â Šâ •â žâ â „â Ž" }, { "input": "iotas", "output": "â Šâ •â žâ â Ž" }, { "input": "ipecac", "output": "â Šâ â ‘â ‰â â ‰" }, { "input": "ipecac's", "output": "â Šâ â ‘â ‰â â ‰â „â Ž" }, { "input": "ipecacs", "output": "â Šâ â ‘â ‰â â ‰â Ž" }, { "input": "irascibility", "output": "â Šâ —â â Žâ ‰â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "irascibility's", "output": "â Šâ —â â Žâ ‰â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "irascible", "output": "â Šâ —â â Žâ ‰â Šâ ¼" }, { "input": "irate", "output": "â Šâ —â â žâ ‘" }, { "input": "irately", "output": "â Šâ —â â žâ ‘⠇⠽" }, { "input": "irateness", "output": "â Šâ —â â žâ ‘â °â Ž" }, { "input": "irateness's", "output": "â Šâ —â â žâ ‘â °â Žâ „â Ž" }, { "input": "ire", "output": "â Šâ —â ‘" }, { "input": "ire's", "output": "â Šâ —â ‘â „â Ž" }, { "input": "ireful", "output": "â Šâ —â ‘â °â ‡" }, { "input": "irenic", "output": "⠊⠗⠢⠊⠉" }, { "input": "irides", "output": "⠊⠗⠊⠙⠑⠎" }, { "input": "iridescence", "output": "⠊⠗⠊⠙⠑⠎⠉⠰⠑" }, { "input": "iridescence's", "output": "⠊⠗⠊⠙⠑⠎⠉⠰⠑⠄⠎" }, { "input": "iridescent", "output": "⠊⠗⠊⠙⠑⠎⠉⠢⠞" }, { "input": "iridescently", "output": "⠊⠗⠊⠙⠑⠎⠉⠢⠞⠇⠽" }, { "input": "iridium", "output": "⠊⠗⠊⠙⠊⠥â " }, { "input": "iridium's", "output": "⠊⠗⠊⠙⠊⠥â â „â Ž" }, { "input": "iris", "output": "â Šâ —â Šâ Ž" }, { "input": "iris's", "output": "â Šâ —â Šâ Žâ „â Ž" }, { "input": "irises", "output": "â Šâ —â Šâ Žâ ‘â Ž" }, { "input": "irk", "output": "â Šâ —â …" }, { "input": "irked", "output": "â Šâ —â …â «" }, { "input": "irking", "output": "â Šâ —â …â Œ" }, { "input": "irks", "output": "â Šâ —â …â Ž" }, { "input": "irksome", "output": "â Šâ —â …â â Ž" }, { "input": "irksomely", "output": "â Šâ —â …â â Žâ ‡â ½" }, { "input": "irksomeness", "output": "â Šâ —â …â â Žâ °â Ž" }, { "input": "irksomeness's", "output": "â Šâ —â …â â Žâ °â Žâ „â Ž" }, { "input": "iron", "output": "â Šâ —â •â " }, { "input": "iron's", "output": "â Šâ —â •â â „â Ž" }, { "input": "ironclad", "output": "â Šâ —â •â â ‰â ‡â â ™" }, { "input": "ironclad's", "output": "â Šâ —â •â â ‰â ‡â â ™â „â Ž" }, { "input": "ironclads", "output": "â Šâ —â •â â ‰â ‡â â ™â Ž" }, { "input": "ironed", "output": "â Šâ —â •â â «" }, { "input": "ironic", "output": "â Šâ —â •â â Šâ ‰" }, { "input": "ironical", "output": "â Šâ —â •â â Šâ ‰â â ‡" }, { "input": "ironically", "output": "â Šâ —â •â â Šâ ‰â  â ½" }, { "input": "ironies", "output": "â Šâ —â •â â Šâ ‘â Ž" }, { "input": "ironing", "output": "â Šâ —â •â â Œ" }, { "input": "ironing's", "output": "â Šâ —â •â â Œâ „â Ž" }, { "input": "irons", "output": "â Šâ —â •â â Ž" }, { "input": "ironstone's", "output": "â Šâ —â •â â Œâ â •â „â Ž" }, { "input": "ironware", "output": "â Šâ —â •â â ºâ œâ ‘" }, { "input": "ironware's", "output": "â Šâ —â •â â ºâ œâ ‘â „â Ž" }, { "input": "ironwood", "output": "â Šâ —â •â â ºâ •â •â ™" }, { "input": "ironwood's", "output": "â Šâ —â •â â ºâ •⠕⠙⠄⠎" }, { "input": "ironwoods", "output": "â Šâ —â •â â ºâ •⠕⠙⠎" }, { "input": "ironwork", "output": "â Šâ —â •â â â º" }, { "input": "ironwork's", "output": "â Šâ —â •â â â ºâ „â Ž" }, { "input": "irony", "output": "â Šâ —â •â â ½" }, { "input": "irony's", "output": "â Šâ —â •â â ½â „â Ž" }, { "input": "irradiate", "output": "â Šâ —â —â â ™â Šâ â žâ ‘" }, { "input": "irradiated", "output": "â Šâ —â —â â ™â Šâ â žâ «" }, { "input": "irradiates", "output": "â Šâ —â —â â ™â Šâ â žâ ‘â Ž" }, { "input": "irradiating", "output": "â Šâ —â —â â ™â Šâ â žâ Œ" }, { "input": "irradiation", "output": "â Šâ —â —â â ™â Šâ  â " }, { "input": "irradiation's", "output": "â Šâ —â —â â ™â Šâ  â â „â Ž" }, { "input": "irrational", "output": "â Šâ —â —â  â â â ‡" }, { "input": "irrational's", "output": "â Šâ —â —â  â â â ‡â „â Ž" }, { "input": "irrationality", "output": "â Šâ —â —â  â â â ‡â °â ½" }, { "input": "irrationality's", "output": "â Šâ —â —â  â â â ‡â °â ½â „â Ž" }, { "input": "irrationally", "output": "â Šâ —â —â  â â  â ½" }, { "input": "irrationals", "output": "â Šâ —â —â  â â â ‡â Ž" }, { "input": "irreclaimable", "output": "⠊⠗⠗⠑⠉⠇â â Šâ â â ¼" }, { "input": "irreconcilability", "output": "⠊⠗⠗⠑⠉⠕â â ‰â Šâ ‡â â ƒâ Šâ ‡â °â ½" }, { "input": "irreconcilability's", "output": "⠊⠗⠗⠑⠉⠕â â ‰â Šâ ‡â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "irreconcilable", "output": "⠊⠗⠗⠑⠉⠕â â ‰â Šâ ‡â â ¼" }, { "input": "irrecoverable", "output": "⠊⠗⠗⠑⠉⠕⠧⠻â â ¼" }, { "input": "irredeemable", "output": "⠊⠗⠗⠑⠙⠑⠑â â â ¼" }, { "input": "irrefutable", "output": "⠊⠗⠗⠑⠋⠥⠞â â ¼" }, { "input": "irregardless", "output": "⠊⠗⠗⠑⠛⠜⠙⠨⠎" }, { "input": "irregular", "output": "⠊⠗⠗⠑⠛⠥⠇⠜" }, { "input": "irregular's", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠄⠎" }, { "input": "irregularities", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠊⠞⠊⠑⠎" }, { "input": "irregularity", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠰⠽" }, { "input": "irregularity's", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠰⠽⠄⠎" }, { "input": "irregularly", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠇⠽" }, { "input": "irregulars", "output": "⠊⠗⠗⠑⠛⠥⠇⠜⠎" }, { "input": "irrelevance", "output": "⠊⠗⠗⠑⠇⠑⠧⠨⠑" }, { "input": "irrelevance's", "output": "⠊⠗⠗⠑⠇⠑⠧⠨⠑⠄⠎" }, { "input": "irrelevances", "output": "⠊⠗⠗⠑⠇⠑⠧⠨⠑⠎" }, { "input": "irrelevancies", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ‰â Šâ ‘â Ž" }, { "input": "irrelevancy", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ‰â ½" }, { "input": "irrelevancy's", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ‰â ½â „â Ž" }, { "input": "irrelevant", "output": "⠊⠗⠗⠑⠇⠑⠧â â â ž" }, { "input": "irrelevantly", "output": "⠊⠗⠗⠑⠇⠑⠧â â â žâ ‡â ½" }, { "input": "irreligious", "output": "⠊⠗⠗⠑⠇⠊⠛⠊⠳⠎" }, { "input": "irremediable", "output": "â Šâ —â —â ‘â â «â Šâ â ¼" }, { "input": "irremediably", "output": "â Šâ —â —â ‘â â «â Šâ â ƒâ ‡â ½" }, { "input": "irremovable", "output": "â Šâ —â —â ‘â â •â §â â ¼" }, { "input": "irreparable", "output": "â Šâ —â —â ‘â â œâ â ¼" }, { "input": "irreparably", "output": "â Šâ —â —â ‘â â œâ â ƒâ ‡â ½" }, { "input": "irreplaceable", "output": "â Šâ —â —â ‘â â ‡â â ‰â ‘â â ¼" }, { "input": "irrepressible", "output": "â Šâ —â —â ‘â â —â ‘â Žâ Žâ Šâ ¼" }, { "input": "irreproachable", "output": "â Šâ —â —â ‘â â —â •â â ¡â â ¼" }, { "input": "irresistible", "output": "⠊⠗⠗⠑⠎⠊⠌⠊⠼" }, { "input": "irresistibly", "output": "⠊⠗⠗⠑⠎⠊⠌⠊⠃⠇⠽" }, { "input": "irresolute", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠞⠑" }, { "input": "irresolutely", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠞⠑⠇⠽" }, { "input": "irresoluteness", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠞⠑⠰⠎" }, { "input": "irresoluteness's", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠞⠑⠰⠎⠄⠎" }, { "input": "irresolution", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠰â " }, { "input": "irresolution's", "output": "⠊⠗⠗⠑⠎⠕⠇⠥⠰â â „â Ž" }, { "input": "irrespective", "output": "â Šâ —â —â ‘â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "irresponsibility", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "irresponsibility's", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "irresponsible", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ¼" }, { "input": "irresponsibly", "output": "â Šâ —â —â ‘â Žâ â •â â Žâ Šâ ƒâ ‡â ½" }, { "input": "irretrievable", "output": "â Šâ —â —â ‘â žâ —â Šâ ‘â §â â ¼" }, { "input": "irretrievably", "output": "â Šâ —â —â ‘â žâ —â Šâ ‘â §â â ƒâ ‡â ½" }, { "input": "irreverence", "output": "â Šâ —â —â â ‘â °â ‘" }, { "input": "irreverence's", "output": "â Šâ —â —â â ‘â °â ‘â „â Ž" }, { "input": "irreverent", "output": "â Šâ —â —â â ‘⠢⠞" }, { "input": "irreverently", "output": "â Šâ —â —â â ‘⠢⠞⠇⠽" }, { "input": "irreversible", "output": "⠊⠗⠗⠑⠧⠻⠎⠊⠼" }, { "input": "irreversibly", "output": "⠊⠗⠗⠑⠧⠻⠎⠊⠃⠇⠽" }, { "input": "irrevocable", "output": "â Šâ —â —â ‘â §â •â ‰â â ¼" }, { "input": "irrevocably", "output": "â Šâ —â —â ‘â §â •â ‰â â ƒâ ‡â ½" }, { "input": "irrigable", "output": "â Šâ —â —â Šâ ›â â ¼" }, { "input": "irrigate", "output": "â Šâ —â —â Šâ ›â â žâ ‘" }, { "input": "irrigated", "output": "â Šâ —â —â Šâ ›â â žâ «" }, { "input": "irrigates", "output": "â Šâ —â —â Šâ ›â â žâ ‘â Ž" }, { "input": "irrigating", "output": "â Šâ —â —â Šâ ›â â žâ Œ" }, { "input": "irrigation", "output": "⠊⠗⠗⠊⠛⠠â " }, { "input": "irrigation's", "output": "⠊⠗⠗⠊⠛⠠â â „â Ž" }, { "input": "irritability", "output": "â Šâ —â —â Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "irritability's", "output": "â Šâ —â —â Šâ žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "irritable", "output": "â Šâ —â —â Šâ žâ â ¼" }, { "input": "irritably", "output": "â Šâ —â —â Šâ žâ â ƒâ ‡â ½" }, { "input": "irritant", "output": "â Šâ —â —â Šâ žâ â â ž" }, { "input": "irritant's", "output": "â Šâ —â —â Šâ žâ â â žâ „â Ž" }, { "input": "irritants", "output": "â Šâ —â —â Šâ žâ â â žâ Ž" }, { "input": "irritate", "output": "â Šâ —â —â Šâ žâ â žâ ‘" }, { "input": "irritated", "output": "â Šâ —â —â Šâ žâ â žâ «" }, { "input": "irritates", "output": "â Šâ —â —â Šâ žâ â žâ ‘â Ž" }, { "input": "irritating", "output": "â Šâ —â —â Šâ žâ â žâ Œ" }, { "input": "irritatingly", "output": "â Šâ —â —â Šâ žâ â žâ Œâ ‡â ½" }, { "input": "irritation", "output": "â Šâ —â —â Šâ žâ  â " }, { "input": "irritation's", "output": "â Šâ —â —â Šâ žâ  â â „â Ž" }, { "input": "irritations", "output": "â Šâ —â —â Šâ žâ  â â Ž" }, { "input": "irrupt", "output": "â Šâ —â —â ¥â â ž" }, { "input": "irrupted", "output": "â Šâ —â —â ¥â â žâ «" }, { "input": "irrupting", "output": "â Šâ —â —â ¥â â žâ Œ" }, { "input": "irruption", "output": "â Šâ —â —â ¥â â °â " }, { "input": "irruption's", "output": "â Šâ —â —â ¥â â °â â „â Ž" }, { "input": "irruptions", "output": "â Šâ —â —â ¥â â °â â Ž" }, { "input": "irruptive", "output": "â Šâ —â —â ¥â â žâ Šâ §â ‘" }, { "input": "irrupts", "output": "â Šâ —â —â ¥â â žâ Ž" }, { "input": "is", "output": "â Šâ Ž" }, { "input": "isinglass", "output": "⠊⠎⠔⠛⠇â â Žâ Ž" }, { "input": "isinglass's", "output": "⠊⠎⠔⠛⠇â â Žâ Žâ „â Ž" }, { "input": "island", "output": "⠊⠎⠇⠯" }, { "input": "island's", "output": "⠊⠎⠇⠯⠄⠎" }, { "input": "islander", "output": "⠊⠎⠇⠯⠻" }, { "input": "islander's", "output": "⠊⠎⠇⠯⠻⠄⠎" }, { "input": "islanders", "output": "⠊⠎⠇⠯⠻⠎" }, { "input": "islands", "output": "⠊⠎⠇⠯⠎" }, { "input": "isle", "output": "⠊⠎⠇⠑" }, { "input": "isle's", "output": "⠊⠎⠇⠑⠄⠎" }, { "input": "isles", "output": "⠊⠎⠇⠑⠎" }, { "input": "islet", "output": "⠊⠎⠇⠑⠞" }, { "input": "islet's", "output": "⠊⠎⠇⠑⠞⠄⠎" }, { "input": "islets", "output": "⠊⠎⠇⠑⠞⠎" }, { "input": "ism", "output": "â Šâ Žâ " }, { "input": "ism's", "output": "â Šâ Žâ â „â Ž" }, { "input": "isms", "output": "â Šâ Žâ â Ž" }, { "input": "isobar", "output": "⠊⠎⠕⠃⠜" }, { "input": "isobar's", "output": "⠊⠎⠕⠃⠜⠄⠎" }, { "input": "isobaric", "output": "⠊⠎⠕⠃⠜⠊⠉" }, { "input": "isobars", "output": "⠊⠎⠕⠃⠜⠎" }, { "input": "isolate", "output": "â Šâ Žâ •â ‡â â žâ ‘" }, { "input": "isolate's", "output": "â Šâ Žâ •â ‡â â žâ ‘â „â Ž" }, { "input": "isolated", "output": "â Šâ Žâ •â ‡â â žâ «" }, { "input": "isolates", "output": "â Šâ Žâ •â ‡â â žâ ‘â Ž" }, { "input": "isolating", "output": "â Šâ Žâ •â ‡â â žâ Œ" }, { "input": "isolation", "output": "⠊⠎⠕⠇⠠â " }, { "input": "isolation's", "output": "⠊⠎⠕⠇⠠â â „â Ž" }, { "input": "isolationism", "output": "⠊⠎⠕⠇⠠â â Šâ Žâ " }, { "input": "isolationism's", "output": "⠊⠎⠕⠇⠠â â Šâ Žâ â „â Ž" }, { "input": "isolationist", "output": "⠊⠎⠕⠇⠠â â Šâ Œ" }, { "input": "isolationist's", "output": "⠊⠎⠕⠇⠠â â Šâ Œâ „â Ž" }, { "input": "isolationists", "output": "⠊⠎⠕⠇⠠â â Šâ Œâ Ž" }, { "input": "isomer", "output": "â Šâ Žâ •â â »" }, { "input": "isomer's", "output": "â Šâ Žâ •â â »â „â Ž" }, { "input": "isomeric", "output": "â Šâ Žâ •â â »â Šâ ‰" }, { "input": "isomerism", "output": "â Šâ Žâ •â â »â Šâ Žâ " }, { "input": "isomerism's", "output": "â Šâ Žâ •â â »â Šâ Žâ â „â Ž" }, { "input": "isomers", "output": "â Šâ Žâ •â â »â Ž" }, { "input": "isometric", "output": "â Šâ Žâ •â â ‘â žâ —â Šâ ‰" }, { "input": "isometrically", "output": "â Šâ Žâ •â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "isometrics", "output": "â Šâ Žâ •â â ‘⠞⠗⠊⠉⠎" }, { "input": "isometrics's", "output": "â Šâ Žâ •â â ‘⠞⠗⠊⠉⠎⠄⠎" }, { "input": "isomorphic", "output": "â Šâ Žâ •â â •â —â â “â Šâ ‰" }, { "input": "isosceles", "output": "⠊⠎⠕⠎⠉⠑⠇⠑⠎" }, { "input": "isotope", "output": "â Šâ Žâ •â žâ •â â ‘" }, { "input": "isotope's", "output": "â Šâ Žâ •â žâ •â â ‘â „â Ž" }, { "input": "isotopes", "output": "â Šâ Žâ •â žâ •â â ‘â Ž" }, { "input": "isotopic", "output": "â Šâ Žâ •â žâ •â â Šâ ‰" }, { "input": "isotropic", "output": "â Šâ Žâ •â žâ —â •â â Šâ ‰" }, { "input": "issuance", "output": "⠊⠎⠎⠥⠨⠑" }, { "input": "issuance's", "output": "⠊⠎⠎⠥⠨⠑⠄⠎" }, { "input": "issue", "output": "⠊⠎⠎⠥⠑" }, { "input": "issue's", "output": "⠊⠎⠎⠥⠑⠄⠎" }, { "input": "issued", "output": "⠊⠎⠎⠥⠫" }, { "input": "issuer", "output": "⠊⠎⠎⠥⠻" }, { "input": "issuer's", "output": "⠊⠎⠎⠥⠻⠄⠎" }, { "input": "issuers", "output": "⠊⠎⠎⠥⠻⠎" }, { "input": "issues", "output": "⠊⠎⠎⠥⠑⠎" }, { "input": "issuing", "output": "⠊⠎⠎⠥⠌" }, { "input": "isthmian", "output": "â Šâ Žâ ¹â â Šâ â " }, { "input": "isthmus", "output": "â Šâ Žâ ¹â â ¥â Ž" }, { "input": "isthmus's", "output": "â Šâ Žâ ¹â â ¥â Žâ „â Ž" }, { "input": "isthmuses", "output": "â Šâ Žâ ¹â â ¥â Žâ ‘â Ž" }, { "input": "it", "output": "â ­" }, { "input": "it's", "output": "â ­â „â Ž" }, { "input": "italic", "output": "â Šâ žâ â ‡â Šâ ‰" }, { "input": "italic's", "output": "â Šâ žâ â ‡â Šâ ‰â „â Ž" }, { "input": "italicization", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ  â " }, { "input": "italicization's", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ  â â „â Ž" }, { "input": "italicize", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ ‘" }, { "input": "italicized", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ «" }, { "input": "italicizes", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "italicizing", "output": "â Šâ žâ â ‡â Šâ ‰â Šâ µâ Œ" }, { "input": "italics", "output": "â Šâ žâ â ‡â Šâ ‰â Ž" }, { "input": "italics's", "output": "â Šâ žâ â ‡â Šâ ‰â Žâ „â Ž" }, { "input": "itch", "output": "â Šâ žâ ¡" }, { "input": "itch's", "output": "â Šâ žâ ¡â „â Ž" }, { "input": "itched", "output": "â Šâ žâ ¡â «" }, { "input": "itches", "output": "â Šâ žâ ¡â ‘â Ž" }, { "input": "itchier", "output": "â Šâ žâ ¡â Šâ »" }, { "input": "itchiest", "output": "â Šâ žâ ¡â Šâ ‘â Œ" }, { "input": "itchiness", "output": "â Šâ žâ ¡â Šâ °â Ž" }, { "input": "itchiness's", "output": "â Šâ žâ ¡â Šâ °â Žâ „â Ž" }, { "input": "itching", "output": "â Šâ žâ ¡â Œ" }, { "input": "itchy", "output": "â Šâ žâ ¡â ½" }, { "input": "item", "output": "â Šâ žâ ‘â " }, { "input": "item's", "output": "â Šâ žâ ‘â â „â Ž" }, { "input": "itemization", "output": "â Šâ žâ ‘â â Šâ µâ  â " }, { "input": "itemization's", "output": "â Šâ žâ ‘â â Šâ µâ  â â „â Ž" }, { "input": "itemize", "output": "â Šâ žâ ‘â â Šâ µâ ‘" }, { "input": "itemized", "output": "â Šâ žâ ‘â â Šâ µâ «" }, { "input": "itemizes", "output": "â Šâ žâ ‘â â Šâ µâ ‘â Ž" }, { "input": "itemizing", "output": "â Šâ žâ ‘â â Šâ µâ Œ" }, { "input": "items", "output": "â Šâ žâ ‘â â Ž" }, { "input": "iterate", "output": "â Šâ žâ »â â žâ ‘" }, { "input": "iterated", "output": "â Šâ žâ »â â žâ «" }, { "input": "iterates", "output": "â Šâ žâ »â â žâ ‘â Ž" }, { "input": "iterating", "output": "â Šâ žâ »â â žâ Œ" }, { "input": "iteration", "output": "⠊⠞⠻⠠â " }, { "input": "iteration's", "output": "⠊⠞⠻⠠â â „â Ž" }, { "input": "iterations", "output": "⠊⠞⠻⠠â â Ž" }, { "input": "iterative", "output": "â Šâ žâ »â â žâ Šâ §â ‘" }, { "input": "iterator", "output": "â Šâ žâ »â â žâ •â —" }, { "input": "iterators", "output": "â Šâ žâ »â â žâ •â —â Ž" }, { "input": "itinerant", "output": "⠊⠞⠔⠻â â â ž" }, { "input": "itinerant's", "output": "⠊⠞⠔⠻â â â žâ „â Ž" }, { "input": "itinerants", "output": "⠊⠞⠔⠻â â â žâ Ž" }, { "input": "itineraries", "output": "⠊⠞⠔⠻⠜⠊⠑⠎" }, { "input": "itinerary", "output": "⠊⠞⠔⠻⠜⠽" }, { "input": "itinerary's", "output": "⠊⠞⠔⠻⠜⠽⠄⠎" }, { "input": "its", "output": "â ­â Ž" }, { "input": "itself", "output": "â ­â ‹" }, { "input": "ivies", "output": "â Šâ §â Šâ ‘â Ž" }, { "input": "ivories", "output": "â Šâ §â •â —â Šâ ‘â Ž" }, { "input": "ivory", "output": "â Šâ §â •â —â ½" }, { "input": "ivory's", "output": "⠊⠧⠕⠗⠽⠄⠎" }, { "input": "ivy", "output": "â Šâ §â ½" }, { "input": "ivy's", "output": "⠊⠧⠽⠄⠎" }, { "input": "j", "output": "â °â š" }, { "input": "jab", "output": "â šâ â ƒ" }, { "input": "jab's", "output": "â šâ â ƒâ „â Ž" }, { "input": "jabbed", "output": "â šâ â †â «" }, { "input": "jabber", "output": "â šâ â †â »" }, { "input": "jabber's", "output": "â šâ â †â »â „â Ž" }, { "input": "jabbered", "output": "â šâ â †â »â «" }, { "input": "jabberer", "output": "â šâ â †â »â »" }, { "input": "jabberer's", "output": "â šâ â †â »â »â „â Ž" }, { "input": "jabberers", "output": "â šâ â †â »â »â Ž" }, { "input": "jabbering", "output": "â šâ â †â »â Œ" }, { "input": "jabbers", "output": "â šâ â †â »â Ž" }, { "input": "jabbing", "output": "â šâ â †â Œ" }, { "input": "jabot", "output": "â šâ â ƒâ •â ž" }, { "input": "jabot's", "output": "â šâ â ƒâ •â žâ „â Ž" }, { "input": "jabots", "output": "â šâ â ƒâ •â žâ Ž" }, { "input": "jabs", "output": "â šâ â ƒâ Ž" }, { "input": "jacaranda", "output": "â šâ â ‰â œâ ¯â " }, { "input": "jacaranda's", "output": "â šâ â ‰â œâ ¯â â „â Ž" }, { "input": "jacarandas", "output": "â šâ â ‰â œâ ¯â â Ž" }, { "input": "jack", "output": "â šâ â ‰â …" }, { "input": "jack's", "output": "â šâ â ‰â …â „â Ž" }, { "input": "jackal", "output": "â šâ â ‰â …â â ‡" }, { "input": "jackal's", "output": "â šâ â ‰â …â â ‡â „â Ž" }, { "input": "jackals", "output": "â šâ â ‰â …â â ‡â Ž" }, { "input": "jackass", "output": "â šâ â ‰â …â â Žâ Ž" }, { "input": "jackass's", "output": "â šâ â ‰â …â â Žâ Žâ „â Ž" }, { "input": "jackasses", "output": "â šâ â ‰â …â â Žâ Žâ ‘â Ž" }, { "input": "jackboot", "output": "â šâ â ‰â …⠃⠕⠕⠞" }, { "input": "jackboot's", "output": "â šâ â ‰â …⠃⠕⠕⠞⠄⠎" }, { "input": "jackboots", "output": "â šâ â ‰â …⠃⠕⠕⠞⠎" }, { "input": "jackdaw", "output": "â šâ â ‰â …â ™â â º" }, { "input": "jackdaw's", "output": "â šâ â ‰â …â ™â â ºâ „â Ž" }, { "input": "jackdaws", "output": "â šâ â ‰â …â ™â â ºâ Ž" }, { "input": "jacked", "output": "â šâ â ‰â …â «" }, { "input": "jacket", "output": "â šâ â ‰â …â ‘â ž" }, { "input": "jacket's", "output": "â šâ â ‰â …â ‘â žâ „â Ž" }, { "input": "jacketed", "output": "â šâ â ‰â …â ‘â žâ «" }, { "input": "jackets", "output": "â šâ â ‰â …â ‘â žâ Ž" }, { "input": "jackhammer", "output": "â šâ â ‰â …â “â â â â »" }, { "input": "jackhammer's", "output": "â šâ â ‰â …â “â â â â »â „â Ž" }, { "input": "jackhammers", "output": "â šâ â ‰â …â “â â â â »â Ž" }, { "input": "jacking", "output": "â šâ â ‰â …â Œ" }, { "input": "jackknife", "output": "â šâ â ‰â …â …â â Šâ ‹â ‘" }, { "input": "jackknife's", "output": "â šâ â ‰â …â …â â Šâ ‹â ‘â „â Ž" }, { "input": "jackknifed", "output": "â šâ â ‰â …â …â â Šâ ‹â «" }, { "input": "jackknifes", "output": "â šâ â ‰â …â …â â Šâ ‹â ‘â Ž" }, { "input": "jackknifing", "output": "â šâ â ‰â …â …â â Šâ ‹â Œ" }, { "input": "jackknives", "output": "â šâ â ‰â …â …â â Šâ §â ‘â Ž" }, { "input": "jackpot", "output": "â šâ â ‰â …â â •â ž" }, { "input": "jackpot's", "output": "â šâ â ‰â …â â •â žâ „â Ž" }, { "input": "jackpots", "output": "â šâ â ‰â …â â •â žâ Ž" }, { "input": "jackrabbit", "output": "â šâ â ‰â …â —â â †â Šâ ž" }, { "input": "jackrabbit's", "output": "â šâ â ‰â …â —â â †â Šâ žâ „â Ž" }, { "input": "jackrabbits", "output": "â šâ â ‰â …â —â â †â Šâ žâ Ž" }, { "input": "jacks", "output": "â šâ â ‰â …â Ž" }, { "input": "jackstraw", "output": "â šâ â ‰â …⠌⠗â â º" }, { "input": "jackstraw's", "output": "â šâ â ‰â …⠌⠗â â ºâ „â Ž" }, { "input": "jackstraws", "output": "â šâ â ‰â …⠌⠗â â ºâ Ž" }, { "input": "jacquard", "output": "â šâ â ‰â Ÿâ ¥â œâ ™" }, { "input": "jacquard's", "output": "â šâ â ‰â Ÿâ ¥â œâ ™â „â Ž" }, { "input": "jade", "output": "â šâ â ™â ‘" }, { "input": "jade's", "output": "â šâ â ™â ‘â „â Ž" }, { "input": "jaded", "output": "â šâ â ™â «" }, { "input": "jadedly", "output": "â šâ â ™â «â ‡â ½" }, { "input": "jadedness", "output": "â šâ â ™â «â °â Ž" }, { "input": "jadedness's", "output": "â šâ â ™â «â °â Žâ „â Ž" }, { "input": "jadeite", "output": "â šâ â ™â ‘â Šâ žâ ‘" }, { "input": "jadeite's", "output": "â šâ â ™â ‘â Šâ žâ ‘â „â Ž" }, { "input": "jades", "output": "â šâ â ™â ‘â Ž" }, { "input": "jading", "output": "â šâ â ™â Œ" }, { "input": "jag", "output": "â šâ â ›" }, { "input": "jag's", "output": "â šâ â ›â „â Ž" }, { "input": "jagged", "output": "â šâ â ¶â «" }, { "input": "jaggeder", "output": "â šâ â ¶â «â »" }, { "input": "jaggedest", "output": "â šâ â ¶â «â ‘â Œ" }, { "input": "jaggedly", "output": "â šâ â ¶â «â ‡â ½" }, { "input": "jaggedness", "output": "â šâ â ¶â «â °â Ž" }, { "input": "jaggedness's", "output": "â šâ â ¶â «â °â Žâ „â Ž" }, { "input": "jags", "output": "â šâ â ›â Ž" }, { "input": "jaguar", "output": "â šâ â ›â ¥â œ" }, { "input": "jaguar's", "output": "â šâ â ›â ¥â œâ „â Ž" }, { "input": "jaguars", "output": "â šâ â ›â ¥â œâ Ž" }, { "input": "jail", "output": "â šâ â Šâ ‡" }, { "input": "jail's", "output": "â šâ â Šâ ‡â „â Ž" }, { "input": "jailbreak", "output": "â šâ â Šâ ‡â ƒâ —â ‚â …" }, { "input": "jailbreak's", "output": "â šâ â Šâ ‡â ƒâ —â ‚â …â „â Ž" }, { "input": "jailbreaks", "output": "â šâ â Šâ ‡â ƒâ —â ‚â …â Ž" }, { "input": "jailed", "output": "â šâ â Šâ ‡â «" }, { "input": "jailer", "output": "â šâ â Šâ ‡â »" }, { "input": "jailer's", "output": "â šâ â Šâ ‡â »â „â Ž" }, { "input": "jailers", "output": "â šâ â Šâ ‡â »â Ž" }, { "input": "jailing", "output": "â šâ â Šâ ‡â Œ" }, { "input": "jails", "output": "â šâ â Šâ ‡â Ž" }, { "input": "jalopies", "output": "â šâ â ‡â •â â Šâ ‘â Ž" }, { "input": "jalopy", "output": "â šâ â ‡â •â â ½" }, { "input": "jalopy's", "output": "â šâ â ‡â •â â ½â „â Ž" }, { "input": "jalousie", "output": "â šâ â ‡â ³â Žâ Šâ ‘" }, { "input": "jalousie's", "output": "â šâ â ‡â ³â Žâ Šâ ‘â „â Ž" }, { "input": "jalousies", "output": "â šâ â ‡â ³â Žâ Šâ ‘â Ž" }, { "input": "jam", "output": "â šâ â " }, { "input": "jam's", "output": "â šâ â â „â Ž" }, { "input": "jamb", "output": "â šâ â â ƒ" }, { "input": "jamb's", "output": "â šâ â â ƒâ „â Ž" }, { "input": "jambalaya", "output": "â šâ â â ƒâ â ‡â â ½â " }, { "input": "jambalaya's", "output": "â šâ â â ƒâ â ‡â â ½â â „â Ž" }, { "input": "jamboree", "output": "â šâ â â ƒâ •â —â ‘â ‘" }, { "input": "jamboree's", "output": "â šâ â â ƒâ •â —â ‘â ‘â „â Ž" }, { "input": "jamborees", "output": "â šâ â â ƒâ •â —â ‘â ‘â Ž" }, { "input": "jambs", "output": "â šâ â â ƒâ Ž" }, { "input": "jammed", "output": "â šâ â â â «" }, { "input": "jamming", "output": "â šâ â â â Œ" }, { "input": "jams", "output": "â šâ â â Ž" }, { "input": "jangle", "output": "â šâ â â ›â ‡â ‘" }, { "input": "jangle's", "output": "â šâ â â ›â ‡â ‘â „â Ž" }, { "input": "jangled", "output": "â šâ â â ›â ‡â «" }, { "input": "jangler", "output": "â šâ â â ›â ‡â »" }, { "input": "jangler's", "output": "â šâ â â ›â ‡â »â „â Ž" }, { "input": "janglers", "output": "â šâ â â ›â ‡â »â Ž" }, { "input": "jangles", "output": "â šâ â â ›â ‡â ‘â Ž" }, { "input": "jangling", "output": "â šâ â â ›â ‡â Œ" }, { "input": "janitor", "output": "â šâ â â Šâ žâ •â —" }, { "input": "janitor's", "output": "â šâ â â Šâ žâ •â —â „â Ž" }, { "input": "janitorial", "output": "â šâ â â Šâ žâ •â —â Šâ â ‡" }, { "input": "janitors", "output": "â šâ â â Šâ žâ •â —â Ž" }, { "input": "japan", "output": "â šâ â â â " }, { "input": "japan's", "output": "â šâ â â â â „â Ž" }, { "input": "japanned", "output": "â šâ â â â â â «" }, { "input": "japanning", "output": "â šâ â â â â â Œ" }, { "input": "japans", "output": "â šâ â â â â Ž" }, { "input": "jape", "output": "â šâ â â ‘" }, { "input": "jape's", "output": "â šâ â â ‘â „â Ž" }, { "input": "japed", "output": "â šâ â â «" }, { "input": "japes", "output": "â šâ â â ‘â Ž" }, { "input": "japing", "output": "â šâ â â Œ" }, { "input": "jar", "output": "â šâ œ" }, { "input": "jar's", "output": "⠚⠜⠄⠎" }, { "input": "jarful", "output": "⠚⠜⠰⠇" }, { "input": "jarful's", "output": "⠚⠜⠰⠇⠄⠎" }, { "input": "jarfuls", "output": "⠚⠜⠰⠇⠎" }, { "input": "jargon", "output": "⠚⠜⠛⠕â " }, { "input": "jargon's", "output": "⠚⠜⠛⠕â â „â Ž" }, { "input": "jarred", "output": "⠚⠜⠗⠫" }, { "input": "jarring", "output": "⠚⠜⠗⠌" }, { "input": "jarringly", "output": "⠚⠜⠗⠌⠇⠽" }, { "input": "jars", "output": "⠚⠜⠎" }, { "input": "jasmine", "output": "â šâ â Žâ â ”â ‘" }, { "input": "jasmine's", "output": "â šâ â Žâ â ”â ‘â „â Ž" }, { "input": "jasmines", "output": "â šâ â Žâ â ”â ‘â Ž" }, { "input": "jasper", "output": "â šâ â Žâ â »" }, { "input": "jasper's", "output": "â šâ â Žâ â »â „â Ž" }, { "input": "jato", "output": "â šâ â žâ •" }, { "input": "jato's", "output": "â šâ â žâ •â „â Ž" }, { "input": "jatos", "output": "â šâ â žâ •â Ž" }, { "input": "jaundice", "output": "â šâ â ¥â â ™â Šâ ‰â ‘" }, { "input": "jaundice's", "output": "â šâ â ¥â â ™â Šâ ‰â ‘â „â Ž" }, { "input": "jaundiced", "output": "â šâ â ¥â â ™â Šâ ‰â «" }, { "input": "jaundices", "output": "â šâ â ¥â â ™â Šâ ‰â ‘â Ž" }, { "input": "jaundicing", "output": "â šâ â ¥â â ™â Šâ ‰â Œ" }, { "input": "jaunt", "output": "â šâ â ¥â â ž" }, { "input": "jaunt's", "output": "â šâ â ¥â â žâ „â Ž" }, { "input": "jaunted", "output": "â šâ â ¥â â žâ «" }, { "input": "jauntier", "output": "â šâ â ¥â â žâ Šâ »" }, { "input": "jauntiest", "output": "â šâ â ¥â â žâ Šâ ‘â Œ" }, { "input": "jauntily", "output": "â šâ â ¥â â žâ Šâ ‡â ½" }, { "input": "jauntiness", "output": "â šâ â ¥â â žâ Šâ °â Ž" }, { "input": "jauntiness's", "output": "â šâ â ¥â â žâ Šâ °â Žâ „â Ž" }, { "input": "jaunting", "output": "â šâ â ¥â â žâ Œ" }, { "input": "jaunts", "output": "â šâ â ¥â â žâ Ž" }, { "input": "jaunty", "output": "â šâ â ¥â â žâ ½" }, { "input": "java", "output": "â šâ â §â " }, { "input": "java's", "output": "â šâ â §â â „â Ž" }, { "input": "javelin", "output": "â šâ â §â ‘⠇⠔" }, { "input": "javelin's", "output": "â šâ â §â ‘⠇⠔⠄⠎" }, { "input": "javelins", "output": "â šâ â §â ‘⠇⠔⠎" }, { "input": "jaw", "output": "â šâ â º" }, { "input": "jaw's", "output": "â šâ â ºâ „â Ž" }, { "input": "jawbone", "output": "â šâ â ºâ ƒâ â •" }, { "input": "jawbone's", "output": "â šâ â ºâ ƒâ â •â „â Ž" }, { "input": "jawboned", "output": "â šâ â ºâ ƒâ •â â «" }, { "input": "jawbones", "output": "â šâ â ºâ ƒâ â •â Ž" }, { "input": "jawboning", "output": "â šâ â ºâ ƒâ •â â Œ" }, { "input": "jawbreaker", "output": "â šâ â ºâ ƒâ —â ‚â …â »" }, { "input": "jawbreaker's", "output": "â šâ â ºâ ƒâ —⠂⠅⠻⠄⠎" }, { "input": "jawbreakers", "output": "â šâ â ºâ ƒâ —⠂⠅⠻⠎" }, { "input": "jawed", "output": "â šâ â ºâ «" }, { "input": "jawing", "output": "â šâ â ºâ Œ" }, { "input": "jaws", "output": "â šâ â ºâ Ž" }, { "input": "jay", "output": "â šâ â ½" }, { "input": "jay's", "output": "â šâ â ½â „â Ž" }, { "input": "jaybird", "output": "â šâ â ½â ƒâ Šâ —â ™" }, { "input": "jaybird's", "output": "â šâ â ½â ƒâ Šâ —⠙⠄⠎" }, { "input": "jaybirds", "output": "â šâ â ½â ƒâ Šâ —⠙⠎" }, { "input": "jays", "output": "â šâ â ½â Ž" }, { "input": "jaywalk", "output": "â šâ â ½â ºâ â ‡â …" }, { "input": "jaywalked", "output": "â šâ â ½â ºâ â ‡â …â «" }, { "input": "jaywalker", "output": "â šâ â ½â ºâ â ‡â …â »" }, { "input": "jaywalker's", "output": "â šâ â ½â ºâ â ‡â …⠻⠄⠎" }, { "input": "jaywalkers", "output": "â šâ â ½â ºâ â ‡â …⠻⠎" }, { "input": "jaywalking", "output": "â šâ â ½â ºâ â ‡â …â Œ" }, { "input": "jaywalking's", "output": "â šâ â ½â ºâ â ‡â …⠌⠄⠎" }, { "input": "jaywalks", "output": "â šâ â ½â ºâ â ‡â …â Ž" }, { "input": "jazz", "output": "â šâ â µâ µ" }, { "input": "jazz's", "output": "â šâ â µâ µâ „â Ž" }, { "input": "jazzed", "output": "â šâ â µâ µâ «" }, { "input": "jazzes", "output": "â šâ â µâ µâ ‘â Ž" }, { "input": "jazzier", "output": "â šâ â µâ µâ Šâ »" }, { "input": "jazziest", "output": "â šâ â µâ µâ Šâ ‘â Œ" }, { "input": "jazzing", "output": "â šâ â µâ µâ Œ" }, { "input": "jazzy", "output": "â šâ â µâ µâ ½" }, { "input": "jealous", "output": "⠚⠂⠇⠳⠎" }, { "input": "jealousies", "output": "⠚⠂⠇⠳⠎⠊⠑⠎" }, { "input": "jealously", "output": "⠚⠂⠇⠳⠎⠇⠽" }, { "input": "jealousy", "output": "⠚⠂⠇⠳⠎⠽" }, { "input": "jealousy's", "output": "⠚⠂⠇⠳⠎⠽⠄⠎" }, { "input": "jean", "output": "â šâ ‚â " }, { "input": "jean's", "output": "â šâ ‚â â „â Ž" }, { "input": "jeans", "output": "â šâ ‚â â Ž" }, { "input": "jeans's", "output": "â šâ ‚â â Žâ „â Ž" }, { "input": "jeep", "output": "â šâ ‘â ‘â " }, { "input": "jeep's", "output": "â šâ ‘â ‘â â „â Ž" }, { "input": "jeeps", "output": "â šâ ‘â ‘â â Ž" }, { "input": "jeer", "output": "â šâ ‘â »" }, { "input": "jeer's", "output": "⠚⠑⠻⠄⠎" }, { "input": "jeered", "output": "⠚⠑⠻⠫" }, { "input": "jeering", "output": "⠚⠑⠻⠌" }, { "input": "jeering's", "output": "⠚⠑⠻⠌⠄⠎" }, { "input": "jeeringly", "output": "⠚⠑⠻⠌⠇⠽" }, { "input": "jeers", "output": "⠚⠑⠻⠎" }, { "input": "jeez", "output": "â šâ ‘â ‘â µ" }, { "input": "jejuna", "output": "â šâ ‘â šâ ¥â â " }, { "input": "jejune", "output": "â šâ ‘â šâ ¥â â ‘" }, { "input": "jejunum", "output": "â šâ ‘â šâ ¥â â ¥â " }, { "input": "jejunum's", "output": "â šâ ‘â šâ ¥â â ¥â â „â Ž" }, { "input": "jell", "output": "⠚⠑⠇⠇" }, { "input": "jelled", "output": "⠚⠑⠇⠇⠫" }, { "input": "jellied", "output": "⠚⠑⠇⠇⠊⠫" }, { "input": "jellies", "output": "⠚⠑⠇⠇⠊⠑⠎" }, { "input": "jelling", "output": "⠚⠑⠇⠇⠌" }, { "input": "jells", "output": "⠚⠑⠇⠇⠎" }, { "input": "jelly", "output": "⠚⠑⠇⠇⠽" }, { "input": "jelly's", "output": "⠚⠑⠇⠇⠽⠄⠎" }, { "input": "jellybean", "output": "⠚⠑⠇⠇⠽⠃⠂â " }, { "input": "jellybean's", "output": "⠚⠑⠇⠇⠽⠃⠂â â „â Ž" }, { "input": "jellybeans", "output": "⠚⠑⠇⠇⠽⠃⠂â â Ž" }, { "input": "jellyfish", "output": "⠚⠑⠇⠇⠽⠋⠊⠩" }, { "input": "jellyfish's", "output": "⠚⠑⠇⠇⠽⠋⠊⠩⠄⠎" }, { "input": "jellyfishes", "output": "⠚⠑⠇⠇⠽⠋⠊⠩⠑⠎" }, { "input": "jellying", "output": "⠚⠑⠇⠇⠽⠌" }, { "input": "jellylike", "output": "⠚⠑⠇⠇⠽⠇⠊⠅⠑" }, { "input": "jellyroll", "output": "⠚⠑⠇⠇⠽⠗⠕⠇⠇" }, { "input": "jellyroll's", "output": "⠚⠑⠇⠇⠽⠗⠕⠇⠇⠄⠎" }, { "input": "jellyrolls", "output": "⠚⠑⠇⠇⠽⠗⠕⠇⠇⠎" }, { "input": "jennet", "output": "â šâ ¢â â ‘â ž" }, { "input": "jennet's", "output": "â šâ ¢â â ‘â žâ „â Ž" }, { "input": "jennets", "output": "â šâ ¢â â ‘â žâ Ž" }, { "input": "jennies", "output": "â šâ ¢â â Šâ ‘â Ž" }, { "input": "jenny", "output": "â šâ ¢â â ½" }, { "input": "jenny's", "output": "â šâ ¢â â ½â „â Ž" }, { "input": "jeopardize", "output": "â šâ ‘â •â â œâ ™â Šâ µâ ‘" }, { "input": "jeopardized", "output": "â šâ ‘â •â â œâ ™â Šâ µâ «" }, { "input": "jeopardizes", "output": "â šâ ‘â •â â œâ ™â Šâ µâ ‘â Ž" }, { "input": "jeopardizing", "output": "â šâ ‘â •â â œâ ™â Šâ µâ Œ" }, { "input": "jeopardy", "output": "â šâ ‘â •â â œâ ™â ½" }, { "input": "jeopardy's", "output": "â šâ ‘â •â â œâ ™â ½â „â Ž" }, { "input": "jeremiad", "output": "⠚⠻⠑â â Šâ â ™" }, { "input": "jeremiad's", "output": "⠚⠻⠑â â Šâ â ™â „â Ž" }, { "input": "jeremiads", "output": "⠚⠻⠑â â Šâ â ™â Ž" }, { "input": "jerk", "output": "⠚⠻⠅" }, { "input": "jerk's", "output": "⠚⠻⠅⠄⠎" }, { "input": "jerked", "output": "⠚⠻⠅⠫" }, { "input": "jerkier", "output": "⠚⠻⠅⠊⠻" }, { "input": "jerkiest", "output": "⠚⠻⠅⠊⠑⠌" }, { "input": "jerkily", "output": "⠚⠻⠅⠊⠇⠽" }, { "input": "jerkin", "output": "⠚⠻⠅⠔" }, { "input": "jerkin's", "output": "⠚⠻⠅⠔⠄⠎" }, { "input": "jerkiness's", "output": "⠚⠻⠅⠊⠰⠎⠄⠎" }, { "input": "jerking", "output": "⠚⠻⠅⠌" }, { "input": "jerkins", "output": "⠚⠻⠅⠔⠎" }, { "input": "jerks", "output": "⠚⠻⠅⠎" }, { "input": "jerkwater", "output": "⠚⠻⠅⠺â â žâ »" }, { "input": "jerky", "output": "⠚⠻⠅⠽" }, { "input": "jerky's", "output": "⠚⠻⠅⠽⠄⠎" }, { "input": "jerrybuilt", "output": "⠚⠻⠗⠽⠃⠥⠊⠇⠞" }, { "input": "jersey", "output": "⠚⠻⠎⠑⠽" }, { "input": "jersey's", "output": "⠚⠻⠎⠑⠽⠄⠎" }, { "input": "jerseys", "output": "⠚⠻⠎⠑⠽⠎" }, { "input": "jest", "output": "â šâ ‘â Œ" }, { "input": "jest's", "output": "⠚⠑⠌⠄⠎" }, { "input": "jested", "output": "⠚⠑⠌⠫" }, { "input": "jester", "output": "⠚⠑⠌⠻" }, { "input": "jester's", "output": "⠚⠑⠌⠻⠄⠎" }, { "input": "jesters", "output": "⠚⠑⠌⠻⠎" }, { "input": "jesting", "output": "⠚⠑⠌⠌" }, { "input": "jestingly", "output": "⠚⠑⠌⠌⠇⠽" }, { "input": "jests", "output": "⠚⠑⠌⠎" }, { "input": "jet", "output": "â šâ ‘â ž" }, { "input": "jet's", "output": "â šâ ‘â žâ „â Ž" }, { "input": "jetport", "output": "â šâ ‘â žâ â •â —â ž" }, { "input": "jetport's", "output": "â šâ ‘â žâ â •â —â žâ „â Ž" }, { "input": "jetports", "output": "â šâ ‘â žâ â •â —â žâ Ž" }, { "input": "jets", "output": "â šâ ‘â žâ Ž" }, { "input": "jetsam", "output": "â šâ ‘â žâ Žâ â " }, { "input": "jetsam's", "output": "â šâ ‘â žâ Žâ â â „â Ž" }, { "input": "jetted", "output": "â šâ ‘â žâ žâ «" }, { "input": "jetties", "output": "â šâ ‘â žâ žâ Šâ ‘â Ž" }, { "input": "jetting", "output": "â šâ ‘â žâ žâ Œ" }, { "input": "jettison", "output": "â šâ ‘â žâ žâ Šâ Žâ •â " }, { "input": "jettison's", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â „â Ž" }, { "input": "jettisoned", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â «" }, { "input": "jettisoning", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â Œ" }, { "input": "jettisons", "output": "â šâ ‘â žâ žâ Šâ Žâ •â â Ž" }, { "input": "jetty", "output": "â šâ ‘â žâ žâ ½" }, { "input": "jetty's", "output": "⠚⠑⠞⠞⠽⠄⠎" }, { "input": "jewel", "output": "⠚⠑⠺⠑⠇" }, { "input": "jewel's", "output": "⠚⠑⠺⠑⠇⠄⠎" }, { "input": "jeweled", "output": "⠚⠑⠺⠑⠇⠫" }, { "input": "jeweler", "output": "⠚⠑⠺⠑⠇⠻" }, { "input": "jeweler's", "output": "⠚⠑⠺⠑⠇⠻⠄⠎" }, { "input": "jewelers", "output": "⠚⠑⠺⠑⠇⠻⠎" }, { "input": "jeweling", "output": "⠚⠑⠺⠑⠇⠌" }, { "input": "jewelries", "output": "⠚⠑⠺⠑⠇⠗⠊⠑⠎" }, { "input": "jewelry", "output": "⠚⠑⠺⠑⠇⠗⠽" }, { "input": "jewelry's", "output": "⠚⠑⠺⠑⠇⠗⠽⠄⠎" }, { "input": "jewels", "output": "⠚⠑⠺⠑⠇⠎" }, { "input": "jg", "output": "â šâ ›" }, { "input": "jib", "output": "â šâ Šâ ƒ" }, { "input": "jib's", "output": "⠚⠊⠃⠄⠎" }, { "input": "jibbed", "output": "⠚⠊⠆⠫" }, { "input": "jibbing", "output": "⠚⠊⠆⠌" }, { "input": "jibe", "output": "⠚⠊⠃⠑" }, { "input": "jibe's", "output": "⠚⠊⠃⠑⠄⠎" }, { "input": "jibed", "output": "⠚⠊⠃⠫" }, { "input": "jibes", "output": "⠚⠊⠃⠑⠎" }, { "input": "jibing", "output": "⠚⠊⠃⠌" }, { "input": "jibs", "output": "⠚⠊⠃⠎" }, { "input": "jiff", "output": "â šâ Šâ ‹â ‹" }, { "input": "jiff's", "output": "â šâ Šâ ‹â ‹â „â Ž" }, { "input": "jiffies", "output": "â šâ Šâ –â Šâ ‘â Ž" }, { "input": "jiffs", "output": "â šâ Šâ –â Ž" }, { "input": "jiffy", "output": "â šâ Šâ –â ½" }, { "input": "jiffy's", "output": "⠚⠊⠖⠽⠄⠎" }, { "input": "jig", "output": "â šâ Šâ ›" }, { "input": "jig's", "output": "⠚⠊⠛⠄⠎" }, { "input": "jigged", "output": "â šâ Šâ ¶â «" }, { "input": "jigger", "output": "â šâ Šâ ¶â »" }, { "input": "jigger's", "output": "⠚⠊⠶⠻⠄⠎" }, { "input": "jiggered", "output": "⠚⠊⠶⠻⠫" }, { "input": "jiggering", "output": "⠚⠊⠶⠻⠌" }, { "input": "jiggers", "output": "⠚⠊⠶⠻⠎" }, { "input": "jigging", "output": "â šâ Šâ ¶â Œ" }, { "input": "jiggle", "output": "⠚⠊⠶⠇⠑" }, { "input": "jiggle's", "output": "⠚⠊⠶⠇⠑⠄⠎" }, { "input": "jiggled", "output": "⠚⠊⠶⠇⠫" }, { "input": "jiggles", "output": "⠚⠊⠶⠇⠑⠎" }, { "input": "jigglier", "output": "⠚⠊⠶⠇⠊⠻" }, { "input": "jiggliest", "output": "⠚⠊⠶⠇⠊⠑⠌" }, { "input": "jiggling", "output": "⠚⠊⠶⠇⠌" }, { "input": "jiggly", "output": "⠚⠊⠶⠇⠽" }, { "input": "jigs", "output": "⠚⠊⠛⠎" }, { "input": "jigsaw", "output": "⠚⠊⠛⠎â â º" }, { "input": "jigsaw's", "output": "⠚⠊⠛⠎â â ºâ „â Ž" }, { "input": "jigsawed", "output": "⠚⠊⠛⠎â â ºâ «" }, { "input": "jigsawing", "output": "⠚⠊⠛⠎â â ºâ Œ" }, { "input": "jigsaws", "output": "⠚⠊⠛⠎â â ºâ Ž" }, { "input": "jihad", "output": "â šâ Šâ “â â ™" }, { "input": "jihad's", "output": "â šâ Šâ “â â ™â „â Ž" }, { "input": "jihads", "output": "â šâ Šâ “â â ™â Ž" }, { "input": "jilt", "output": "⠚⠊⠇⠞" }, { "input": "jilt's", "output": "⠚⠊⠇⠞⠄⠎" }, { "input": "jilted", "output": "⠚⠊⠇⠞⠫" }, { "input": "jilting", "output": "⠚⠊⠇⠞⠌" }, { "input": "jilts", "output": "⠚⠊⠇⠞⠎" }, { "input": "jimmied", "output": "â šâ Šâ â â Šâ «" }, { "input": "jimmies", "output": "â šâ Šâ â â Šâ ‘â Ž" }, { "input": "jimmy", "output": "â šâ Šâ â â ½" }, { "input": "jimmy's", "output": "â šâ Šâ â â ½â „â Ž" }, { "input": "jimmying", "output": "â šâ Šâ â â ½â Œ" }, { "input": "jimsonweed", "output": "â šâ Šâ â Žâ •â â ºâ ‘â «" }, { "input": "jimsonweed's", "output": "â šâ Šâ â Žâ •â â ºâ ‘â «â „â Ž" }, { "input": "jingle", "output": "⠚⠌⠇⠑" }, { "input": "jingle's", "output": "⠚⠌⠇⠑⠄⠎" }, { "input": "jingled", "output": "⠚⠌⠇⠫" }, { "input": "jingles", "output": "⠚⠌⠇⠑⠎" }, { "input": "jinglier", "output": "⠚⠌⠇⠊⠻" }, { "input": "jingliest", "output": "⠚⠌⠇⠊⠑⠌" }, { "input": "jingling", "output": "⠚⠌⠇⠌" }, { "input": "jingly", "output": "⠚⠌⠇⠽" }, { "input": "jingoism", "output": "⠚⠌⠕⠊⠎â " }, { "input": "jingoism's", "output": "⠚⠌⠕⠊⠎â â „â Ž" }, { "input": "jingoist", "output": "⠚⠌⠕⠊⠌" }, { "input": "jingoist's", "output": "⠚⠌⠕⠊⠌⠄⠎" }, { "input": "jingoistic", "output": "⠚⠌⠕⠊⠌⠊⠉" }, { "input": "jingoists", "output": "⠚⠌⠕⠊⠌⠎" }, { "input": "jinn", "output": "â šâ ”â " }, { "input": "jinni", "output": "â šâ ”â â Š" }, { "input": "jinni's", "output": "â šâ ”â â Šâ „â Ž" }, { "input": "jinrikisha", "output": "⠚⠔⠗⠊⠅⠊⠩â " }, { "input": "jinrikisha's", "output": "⠚⠔⠗⠊⠅⠊⠩â â „â Ž" }, { "input": "jinrikishas", "output": "⠚⠔⠗⠊⠅⠊⠩â â Ž" }, { "input": "jinx", "output": "⠚⠔⠭" }, { "input": "jinx's", "output": "⠚⠔⠭⠄⠎" }, { "input": "jinxed", "output": "⠚⠔⠭⠫" }, { "input": "jinxes", "output": "⠚⠔⠭⠑⠎" }, { "input": "jinxing", "output": "⠚⠔⠭⠌" }, { "input": "jitney", "output": "â šâ Šâ žâ â ‘â ½" }, { "input": "jitney's", "output": "â šâ Šâ žâ â ‘⠽⠄⠎" }, { "input": "jitneys", "output": "â šâ Šâ žâ â ‘⠽⠎" }, { "input": "jitterbug", "output": "⠚⠊⠞⠞⠻⠃⠥⠛" }, { "input": "jitterbug's", "output": "⠚⠊⠞⠞⠻⠃⠥⠛⠄⠎" }, { "input": "jitterbugged", "output": "⠚⠊⠞⠞⠻⠃⠥⠶⠫" }, { "input": "jitterbugger", "output": "⠚⠊⠞⠞⠻⠃⠥⠶⠻" }, { "input": "jitterbugger's", "output": "⠚⠊⠞⠞⠻⠃⠥⠶⠻⠄⠎" }, { "input": "jitterbugging", "output": "⠚⠊⠞⠞⠻⠃⠥⠶⠌" }, { "input": "jitterbugs", "output": "⠚⠊⠞⠞⠻⠃⠥⠛⠎" }, { "input": "jitterier", "output": "⠚⠊⠞⠞⠻⠊⠻" }, { "input": "jitteriest", "output": "⠚⠊⠞⠞⠻⠊⠑⠌" }, { "input": "jitters", "output": "⠚⠊⠞⠞⠻⠎" }, { "input": "jitters's", "output": "⠚⠊⠞⠞⠻⠎⠄⠎" }, { "input": "jittery", "output": "⠚⠊⠞⠞⠻⠽" }, { "input": "jive", "output": "â šâ Šâ §â ‘" }, { "input": "jive's", "output": "â šâ Šâ §â ‘â „â Ž" }, { "input": "jived", "output": "â šâ Šâ §â «" }, { "input": "jives", "output": "â šâ Šâ §â ‘â Ž" }, { "input": "jiving", "output": "â šâ Šâ §â Œ" }, { "input": "job", "output": "â šâ •â ƒ" }, { "input": "job's", "output": "⠚⠕⠃⠄⠎" }, { "input": "jobbed", "output": "⠚⠕⠆⠫" }, { "input": "jobber", "output": "⠚⠕⠆⠻" }, { "input": "jobber's", "output": "⠚⠕⠆⠻⠄⠎" }, { "input": "jobbers", "output": "⠚⠕⠆⠻⠎" }, { "input": "jobbing", "output": "⠚⠕⠆⠌" }, { "input": "jobholder", "output": "⠚⠕⠃⠓⠕⠇⠙⠻" }, { "input": "jobholder's", "output": "⠚⠕⠃⠓⠕⠇⠙⠻⠄⠎" }, { "input": "jobholders", "output": "⠚⠕⠃⠓⠕⠇⠙⠻⠎" }, { "input": "jobless", "output": "⠚⠕⠃⠨⠎" }, { "input": "joblessness", "output": "⠚⠕⠃⠨⠎⠰⠎" }, { "input": "joblessness's", "output": "⠚⠕⠃⠨⠎⠰⠎⠄⠎" }, { "input": "jobs", "output": "⠚⠕⠃⠎" }, { "input": "jock", "output": "⠚⠕⠉⠅" }, { "input": "jock's", "output": "⠚⠕⠉⠅⠄⠎" }, { "input": "jockey", "output": "⠚⠕⠉⠅⠑⠽" }, { "input": "jockey's", "output": "⠚⠕⠉⠅⠑⠽⠄⠎" }, { "input": "jockeyed", "output": "⠚⠕⠉⠅⠑⠽⠫" }, { "input": "jockeying", "output": "⠚⠕⠉⠅⠑⠽⠌" }, { "input": "jockeys", "output": "⠚⠕⠉⠅⠑⠽⠎" }, { "input": "jocks", "output": "⠚⠕⠉⠅⠎" }, { "input": "jockstrap", "output": "⠚⠕⠉⠅⠌⠗â â " }, { "input": "jockstrap's", "output": "⠚⠕⠉⠅⠌⠗â â â „â Ž" }, { "input": "jockstraps", "output": "⠚⠕⠉⠅⠌⠗â â â Ž" }, { "input": "jocose", "output": "⠚⠕⠉⠕⠎⠑" }, { "input": "jocosely", "output": "⠚⠕⠉⠕⠎⠑⠇⠽" }, { "input": "jocoseness", "output": "⠚⠕⠉⠕⠎⠑⠰⠎" }, { "input": "jocoseness's", "output": "⠚⠕⠉⠕⠎⠑⠰⠎⠄⠎" }, { "input": "jocosity", "output": "⠚⠕⠉⠕⠎⠰⠽" }, { "input": "jocosity's", "output": "⠚⠕⠉⠕⠎⠰⠽⠄⠎" }, { "input": "jocular", "output": "⠚⠕⠉⠥⠇⠜" }, { "input": "jocularity", "output": "⠚⠕⠉⠥⠇⠜⠰⠽" }, { "input": "jocularity's", "output": "⠚⠕⠉⠥⠇⠜⠰⠽⠄⠎" }, { "input": "jocularly", "output": "⠚⠕⠉⠥⠇⠜⠇⠽" }, { "input": "jocund", "output": "⠚⠕⠉⠥â â ™" }, { "input": "jocundity", "output": "⠚⠕⠉⠥â â ™â °â ½" }, { "input": "jocundity's", "output": "⠚⠕⠉⠥â â ™â °â ½â „â Ž" }, { "input": "jocundly", "output": "⠚⠕⠉⠥â â ™â ‡â ½" }, { "input": "jodhpurs", "output": "⠚⠕⠙⠓â â ¥â —â Ž" }, { "input": "jodhpurs's", "output": "⠚⠕⠙⠓â â ¥â —â Žâ „â Ž" }, { "input": "jog", "output": "â šâ •â ›" }, { "input": "jog's", "output": "⠚⠕⠛⠄⠎" }, { "input": "jogged", "output": "â šâ •â ¶â «" }, { "input": "jogger", "output": "â šâ •â ¶â »" }, { "input": "jogger's", "output": "⠚⠕⠶⠻⠄⠎" }, { "input": "joggers", "output": "⠚⠕⠶⠻⠎" }, { "input": "jogging", "output": "â šâ •â ¶â Œ" }, { "input": "jogging's", "output": "⠚⠕⠶⠌⠄⠎" }, { "input": "joggle", "output": "⠚⠕⠶⠇⠑" }, { "input": "joggle's", "output": "⠚⠕⠶⠇⠑⠄⠎" }, { "input": "joggled", "output": "⠚⠕⠶⠇⠫" }, { "input": "joggles", "output": "⠚⠕⠶⠇⠑⠎" }, { "input": "joggling", "output": "⠚⠕⠶⠇⠌" }, { "input": "jogs", "output": "⠚⠕⠛⠎" }, { "input": "john", "output": "â šâ •â “â " }, { "input": "john's", "output": "â šâ •â “â â „â Ž" }, { "input": "johnnycake", "output": "â šâ •â “â â â ½â ‰â â …â ‘" }, { "input": "johnnycake's", "output": "â šâ •â “â â â ½â ‰â â …â ‘â „â Ž" }, { "input": "johnnycakes", "output": "â šâ •â “â â â ½â ‰â â …â ‘â Ž" }, { "input": "johns", "output": "â šâ •â “â â Ž" }, { "input": "join", "output": "â šâ •â ”" }, { "input": "join's", "output": "⠚⠕⠔⠄⠎" }, { "input": "joined", "output": "⠚⠕⠔⠫" }, { "input": "joiner", "output": "⠚⠕⠔⠻" }, { "input": "joiner's", "output": "⠚⠕⠔⠻⠄⠎" }, { "input": "joiners", "output": "⠚⠕⠔⠻⠎" }, { "input": "joinery's", "output": "⠚⠕⠔⠻⠽⠄⠎" }, { "input": "joining", "output": "⠚⠕⠔⠌" }, { "input": "joins", "output": "⠚⠕⠔⠎" }, { "input": "joint", "output": "⠚⠕⠔⠞" }, { "input": "joint's", "output": "⠚⠕⠔⠞⠄⠎" }, { "input": "jointed", "output": "⠚⠕⠔⠞⠫" }, { "input": "jointing", "output": "⠚⠕⠔⠞⠌" }, { "input": "jointly", "output": "⠚⠕⠔⠞⠇⠽" }, { "input": "joints", "output": "⠚⠕⠔⠞⠎" }, { "input": "joist", "output": "â šâ •â Šâ Œ" }, { "input": "joist's", "output": "⠚⠕⠊⠌⠄⠎" }, { "input": "joists", "output": "⠚⠕⠊⠌⠎" }, { "input": "joke", "output": "â šâ •â …â ‘" }, { "input": "joke's", "output": "â šâ •â …â ‘â „â Ž" }, { "input": "joked", "output": "â šâ •â …â «" }, { "input": "joker", "output": "â šâ •â …â »" }, { "input": "joker's", "output": "⠚⠕⠅⠻⠄⠎" }, { "input": "jokers", "output": "⠚⠕⠅⠻⠎" }, { "input": "jokes", "output": "â šâ •â …â ‘â Ž" }, { "input": "joking", "output": "â šâ •â …â Œ" }, { "input": "jokingly", "output": "⠚⠕⠅⠌⠇⠽" }, { "input": "jollied", "output": "⠚⠕⠇⠇⠊⠫" }, { "input": "jollier", "output": "⠚⠕⠇⠇⠊⠻" }, { "input": "jollies", "output": "⠚⠕⠇⠇⠊⠑⠎" }, { "input": "jolliest", "output": "⠚⠕⠇⠇⠊⠑⠌" }, { "input": "jollily", "output": "⠚⠕⠇⠇⠊⠇⠽" }, { "input": "jolliness", "output": "⠚⠕⠇⠇⠊⠰⠎" }, { "input": "jolliness's", "output": "⠚⠕⠇⠇⠊⠰⠎⠄⠎" }, { "input": "jollity", "output": "⠚⠕⠇⠇⠰⠽" }, { "input": "jollity's", "output": "⠚⠕⠇⠇⠰⠽⠄⠎" }, { "input": "jolly", "output": "⠚⠕⠇⠇⠽" }, { "input": "jolly's", "output": "⠚⠕⠇⠇⠽⠄⠎" }, { "input": "jollying", "output": "⠚⠕⠇⠇⠽⠌" }, { "input": "jolt", "output": "⠚⠕⠇⠞" }, { "input": "jolt's", "output": "⠚⠕⠇⠞⠄⠎" }, { "input": "jolted", "output": "⠚⠕⠇⠞⠫" }, { "input": "jolter", "output": "⠚⠕⠇⠞⠻" }, { "input": "jolter's", "output": "⠚⠕⠇⠞⠻⠄⠎" }, { "input": "jolters", "output": "⠚⠕⠇⠞⠻⠎" }, { "input": "jolting", "output": "⠚⠕⠇⠞⠌" }, { "input": "jolts", "output": "⠚⠕⠇⠞⠎" }, { "input": "jonquil", "output": "â šâ •â â Ÿâ ¥â Šâ ‡" }, { "input": "jonquil's", "output": "â šâ •â â Ÿâ ¥â Šâ ‡â „â Ž" }, { "input": "jonquils", "output": "â šâ •â â Ÿâ ¥â Šâ ‡â Ž" }, { "input": "josh", "output": "â šâ •â ©" }, { "input": "josh's", "output": "â šâ •â ©â „â Ž" }, { "input": "joshed", "output": "â šâ •â ©â «" }, { "input": "josher", "output": "â šâ •â ©â »" }, { "input": "josher's", "output": "⠚⠕⠩⠻⠄⠎" }, { "input": "joshers", "output": "⠚⠕⠩⠻⠎" }, { "input": "joshes", "output": "â šâ •â ©â ‘â Ž" }, { "input": "joshing", "output": "â šâ •â ©â Œ" }, { "input": "jostle", "output": "⠚⠕⠌⠇⠑" }, { "input": "jostle's", "output": "⠚⠕⠌⠇⠑⠄⠎" }, { "input": "jostled", "output": "⠚⠕⠌⠇⠫" }, { "input": "jostles", "output": "⠚⠕⠌⠇⠑⠎" }, { "input": "jostling", "output": "⠚⠕⠌⠇⠌" }, { "input": "jot", "output": "â šâ •â ž" }, { "input": "jot's", "output": "â šâ •â žâ „â Ž" }, { "input": "jots", "output": "â šâ •â žâ Ž" }, { "input": "jotted", "output": "â šâ •â žâ žâ «" }, { "input": "jotting", "output": "â šâ •â žâ žâ Œ" }, { "input": "jotting's", "output": "⠚⠕⠞⠞⠌⠄⠎" }, { "input": "jottings", "output": "⠚⠕⠞⠞⠌⠎" }, { "input": "joule", "output": "⠚⠳⠇⠑" }, { "input": "joule's", "output": "⠚⠳⠇⠑⠄⠎" }, { "input": "joules", "output": "⠚⠳⠇⠑⠎" }, { "input": "jounce", "output": "â šâ ³â â ‰â ‘" }, { "input": "jounce's", "output": "â šâ ³â â ‰â ‘â „â Ž" }, { "input": "jounced", "output": "â šâ ³â â ‰â «" }, { "input": "jounces", "output": "â šâ ³â â ‰â ‘â Ž" }, { "input": "jouncier", "output": "â šâ ³â â ‰â Šâ »" }, { "input": "jounciest", "output": "â šâ ³â â ‰â Šâ ‘â Œ" }, { "input": "jouncing", "output": "â šâ ³â â ‰â Œ" }, { "input": "jouncy", "output": "â šâ ³â â ‰â ½" }, { "input": "journal", "output": "⠚⠳⠗â â â ‡" }, { "input": "journal's", "output": "⠚⠳⠗â â â ‡â „â Ž" }, { "input": "journalese", "output": "⠚⠳⠗â â â ‡â ‘â Žâ ‘" }, { "input": "journalese's", "output": "⠚⠳⠗â â â ‡â ‘â Žâ ‘â „â Ž" }, { "input": "journalism", "output": "⠚⠳⠗â â â ‡â Šâ Žâ " }, { "input": "journalism's", "output": "⠚⠳⠗â â â ‡â Šâ Žâ â „â Ž" }, { "input": "journalist", "output": "⠚⠳⠗â â â ‡â Šâ Œ" }, { "input": "journalist's", "output": "⠚⠳⠗â â â ‡â Šâ Œâ „â Ž" }, { "input": "journalistic", "output": "⠚⠳⠗â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "journalists", "output": "⠚⠳⠗â â â ‡â Šâ Œâ Ž" }, { "input": "journals", "output": "⠚⠳⠗â â â ‡â Ž" }, { "input": "journey", "output": "⠚⠳⠗â â ‘â ½" }, { "input": "journey's", "output": "⠚⠳⠗â â ‘⠽⠄⠎" }, { "input": "journeyed", "output": "⠚⠳⠗â â ‘⠽⠫" }, { "input": "journeyer", "output": "⠚⠳⠗â â ‘⠽⠻" }, { "input": "journeyer's", "output": "⠚⠳⠗â â ‘⠽⠻⠄⠎" }, { "input": "journeyers", "output": "⠚⠳⠗â â ‘⠽⠻⠎" }, { "input": "journeying", "output": "⠚⠳⠗â â ‘⠽⠌" }, { "input": "journeyman", "output": "⠚⠳⠗â â ‘â ½â â â " }, { "input": "journeyman's", "output": "⠚⠳⠗â â ‘â ½â â â â „â Ž" }, { "input": "journeymen", "output": "⠚⠳⠗â â ‘â ½â â ¢" }, { "input": "journeys", "output": "⠚⠳⠗â â ‘⠽⠎" }, { "input": "joust", "output": "⠚⠳⠌" }, { "input": "joust's", "output": "⠚⠳⠌⠄⠎" }, { "input": "jousted", "output": "⠚⠳⠌⠫" }, { "input": "jouster", "output": "⠚⠳⠌⠻" }, { "input": "jouster's", "output": "⠚⠳⠌⠻⠄⠎" }, { "input": "jousters", "output": "⠚⠳⠌⠻⠎" }, { "input": "jousting", "output": "⠚⠳⠌⠌" }, { "input": "jousting's", "output": "⠚⠳⠌⠌⠄⠎" }, { "input": "jousts", "output": "⠚⠳⠌⠎" }, { "input": "jovial", "output": "â šâ •â §â Šâ â ‡" }, { "input": "joviality", "output": "â šâ •â §â Šâ â ‡â °â ½" }, { "input": "joviality's", "output": "â šâ •â §â Šâ â ‡â °â ½â „â Ž" }, { "input": "jovially", "output": "â šâ •â §â Šâ  â ½" }, { "input": "jowl", "output": "⠚⠪⠇" }, { "input": "jowl's", "output": "⠚⠪⠇⠄⠎" }, { "input": "jowlier", "output": "⠚⠪⠇⠊⠻" }, { "input": "jowliest", "output": "⠚⠪⠇⠊⠑⠌" }, { "input": "jowls", "output": "⠚⠪⠇⠎" }, { "input": "joy", "output": "â šâ •â ½" }, { "input": "joy's", "output": "⠚⠕⠽⠄⠎" }, { "input": "joyed", "output": "⠚⠕⠽⠫" }, { "input": "joyful", "output": "⠚⠕⠽⠰⠇" }, { "input": "joyfuller", "output": "⠚⠕⠽⠰⠇⠇⠻" }, { "input": "joyfullest", "output": "⠚⠕⠽⠰⠇⠇⠑⠌" }, { "input": "joyfully", "output": "⠚⠕⠽⠰⠇⠇⠽" }, { "input": "joyfulness", "output": "⠚⠕⠽⠰⠇⠰⠎" }, { "input": "joyfulness's", "output": "⠚⠕⠽⠰⠇⠰⠎⠄⠎" }, { "input": "joying", "output": "⠚⠕⠽⠌" }, { "input": "joyless", "output": "⠚⠕⠽⠨⠎" }, { "input": "joylessness's", "output": "⠚⠕⠽⠨⠎⠰⠎⠄⠎" }, { "input": "joyous", "output": "⠚⠕⠽⠳⠎" }, { "input": "joyously", "output": "⠚⠕⠽⠳⠎⠇⠽" }, { "input": "joyousness", "output": "⠚⠕⠽⠳⠎⠰⠎" }, { "input": "joyousness's", "output": "⠚⠕⠽⠳⠎⠰⠎⠄⠎" }, { "input": "joyridden", "output": "⠚⠕⠽⠗⠊⠲⠢" }, { "input": "joyride", "output": "⠚⠕⠽⠗⠊⠙⠑" }, { "input": "joyride's", "output": "⠚⠕⠽⠗⠊⠙⠑⠄⠎" }, { "input": "joyrider", "output": "⠚⠕⠽⠗⠊⠙⠻" }, { "input": "joyrider's", "output": "⠚⠕⠽⠗⠊⠙⠻⠄⠎" }, { "input": "joyriders", "output": "⠚⠕⠽⠗⠊⠙⠻⠎" }, { "input": "joyrides", "output": "⠚⠕⠽⠗⠊⠙⠑⠎" }, { "input": "joyriding", "output": "⠚⠕⠽⠗⠊⠙⠌" }, { "input": "joyriding's", "output": "⠚⠕⠽⠗⠊⠙⠌⠄⠎" }, { "input": "joyrode", "output": "⠚⠕⠽⠗⠕⠙⠑" }, { "input": "joys", "output": "⠚⠕⠽⠎" }, { "input": "joystick", "output": "⠚⠕⠽⠌⠊⠉⠅" }, { "input": "joystick's", "output": "⠚⠕⠽⠌⠊⠉⠅⠄⠎" }, { "input": "joysticks", "output": "⠚⠕⠽⠌⠊⠉⠅⠎" }, { "input": "jubilant", "output": "⠚⠥⠃⠊⠇â â â ž" }, { "input": "jubilantly", "output": "⠚⠥⠃⠊⠇â â â žâ ‡â ½" }, { "input": "jubilation", "output": "⠚⠥⠃⠊⠇⠠â " }, { "input": "jubilation's", "output": "⠚⠥⠃⠊⠇⠠â â „â Ž" }, { "input": "jubilee", "output": "⠚⠥⠃⠊⠇⠑⠑" }, { "input": "jubilee's", "output": "⠚⠥⠃⠊⠇⠑⠑⠄⠎" }, { "input": "jubilees", "output": "⠚⠥⠃⠊⠇⠑⠑⠎" }, { "input": "judge", "output": "⠚⠥⠙⠛⠑" }, { "input": "judge's", "output": "⠚⠥⠙⠛⠑⠄⠎" }, { "input": "judged", "output": "⠚⠥⠙⠛⠫" }, { "input": "judges", "output": "⠚⠥⠙⠛⠑⠎" }, { "input": "judgeship", "output": "⠚⠥⠙⠛⠑⠩⠊â " }, { "input": "judgeship's", "output": "⠚⠥⠙⠛⠑⠩⠊â â „â Ž" }, { "input": "judging", "output": "⠚⠥⠙⠛⠌" }, { "input": "judgment", "output": "⠚⠥⠙⠛⠰⠞" }, { "input": "judgment's", "output": "⠚⠥⠙⠛⠰⠞⠄⠎" }, { "input": "judgmental", "output": "⠚⠥⠙⠛⠰⠞â â ‡" }, { "input": "judgmentally", "output": "⠚⠥⠙⠛⠰⠞⠠⠽" }, { "input": "judgments", "output": "⠚⠥⠙⠛⠰⠞⠎" }, { "input": "judicatories", "output": "⠚⠥⠙⠊⠉â â žâ •â —â Šâ ‘â Ž" }, { "input": "judicatory", "output": "⠚⠥⠙⠊⠉â â žâ •â —â ½" }, { "input": "judicatory's", "output": "⠚⠥⠙⠊⠉â â žâ •⠗⠽⠄⠎" }, { "input": "judicature", "output": "⠚⠥⠙⠊⠉â â žâ ¥â —â ‘" }, { "input": "judicature's", "output": "⠚⠥⠙⠊⠉â â žâ ¥â —â ‘â „â Ž" }, { "input": "judicial", "output": "⠚⠥⠙⠊⠉⠊â â ‡" }, { "input": "judicially", "output": "⠚⠥⠙⠊⠉⠊⠠⠽" }, { "input": "judiciaries", "output": "⠚⠥⠙⠊⠉⠊⠜⠊⠑⠎" }, { "input": "judiciary", "output": "⠚⠥⠙⠊⠉⠊⠜⠽" }, { "input": "judiciary's", "output": "⠚⠥⠙⠊⠉⠊⠜⠽⠄⠎" }, { "input": "judicious", "output": "⠚⠥⠙⠊⠉⠊⠳⠎" }, { "input": "judiciously", "output": "⠚⠥⠙⠊⠉⠊⠳⠎⠇⠽" }, { "input": "judiciousness", "output": "⠚⠥⠙⠊⠉⠊⠳⠎⠰⠎" }, { "input": "judiciousness's", "output": "⠚⠥⠙⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "judo", "output": "⠚⠥⠙⠕" }, { "input": "judo's", "output": "⠚⠥⠙⠕⠄⠎" }, { "input": "jug", "output": "⠚⠥⠛" }, { "input": "jug's", "output": "⠚⠥⠛⠄⠎" }, { "input": "jugged", "output": "⠚⠥⠶⠫" }, { "input": "juggernaut", "output": "⠚⠥⠶⠻â â â ¥â ž" }, { "input": "juggernaut's", "output": "⠚⠥⠶⠻â â â ¥â žâ „â Ž" }, { "input": "juggernauts", "output": "⠚⠥⠶⠻â â â ¥â žâ Ž" }, { "input": "jugging", "output": "⠚⠥⠶⠌" }, { "input": "juggle", "output": "⠚⠥⠶⠇⠑" }, { "input": "juggle's", "output": "⠚⠥⠶⠇⠑⠄⠎" }, { "input": "juggled", "output": "⠚⠥⠶⠇⠫" }, { "input": "juggler", "output": "⠚⠥⠶⠇⠻" }, { "input": "juggler's", "output": "⠚⠥⠶⠇⠻⠄⠎" }, { "input": "jugglers", "output": "⠚⠥⠶⠇⠻⠎" }, { "input": "jugglery", "output": "⠚⠥⠶⠇⠻⠽" }, { "input": "jugglery's", "output": "⠚⠥⠶⠇⠻⠽⠄⠎" }, { "input": "juggles", "output": "⠚⠥⠶⠇⠑⠎" }, { "input": "juggling", "output": "⠚⠥⠶⠇⠌" }, { "input": "jugs", "output": "⠚⠥⠛⠎" }, { "input": "jugular", "output": "⠚⠥⠛⠥⠇⠜" }, { "input": "jugular's", "output": "⠚⠥⠛⠥⠇⠜⠄⠎" }, { "input": "jugulars", "output": "⠚⠥⠛⠥⠇⠜⠎" }, { "input": "juice", "output": "⠚⠥⠊⠉⠑" }, { "input": "juice's", "output": "⠚⠥⠊⠉⠑⠄⠎" }, { "input": "juiced", "output": "⠚⠥⠊⠉⠫" }, { "input": "juicer", "output": "⠚⠥⠊⠉⠻" }, { "input": "juicer's", "output": "⠚⠥⠊⠉⠻⠄⠎" }, { "input": "juicers", "output": "⠚⠥⠊⠉⠻⠎" }, { "input": "juices", "output": "⠚⠥⠊⠉⠑⠎" }, { "input": "juicier", "output": "⠚⠥⠊⠉⠊⠻" }, { "input": "juiciest", "output": "⠚⠥⠊⠉⠊⠑⠌" }, { "input": "juicily", "output": "⠚⠥⠊⠉⠊⠇⠽" }, { "input": "juiciness", "output": "⠚⠥⠊⠉⠊⠰⠎" }, { "input": "juiciness's", "output": "⠚⠥⠊⠉⠊⠰⠎⠄⠎" }, { "input": "juicing", "output": "⠚⠥⠊⠉⠌" }, { "input": "juicy", "output": "⠚⠥⠊⠉⠽" }, { "input": "jujitsu", "output": "⠚⠥⠚⠊⠞⠎⠥" }, { "input": "jujitsu's", "output": "⠚⠥⠚⠊⠞⠎⠥⠄⠎" }, { "input": "jujube", "output": "⠚⠥⠚⠥⠃⠑" }, { "input": "jujube's", "output": "⠚⠥⠚⠥⠃⠑⠄⠎" }, { "input": "jujubes", "output": "⠚⠥⠚⠥⠃⠑⠎" }, { "input": "jukebox", "output": "⠚⠥⠅⠑⠃⠕⠭" }, { "input": "jukebox's", "output": "⠚⠥⠅⠑⠃⠕⠭⠄⠎" }, { "input": "jukeboxes", "output": "⠚⠥⠅⠑⠃⠕⠭⠑⠎" }, { "input": "julep", "output": "⠚⠥⠇⠑â " }, { "input": "julep's", "output": "⠚⠥⠇⠑â â „â Ž" }, { "input": "juleps", "output": "⠚⠥⠇⠑â â Ž" }, { "input": "julienne", "output": "⠚⠥⠇⠊⠢â â ‘" }, { "input": "jumble", "output": "â šâ ¥â â ¼" }, { "input": "jumble's", "output": "â šâ ¥â â ¼â „â Ž" }, { "input": "jumbled", "output": "â šâ ¥â â ¼â ™" }, { "input": "jumbles", "output": "â šâ ¥â â ¼â Ž" }, { "input": "jumbling", "output": "â šâ ¥â â ƒâ ‡â Œ" }, { "input": "jumbo", "output": "â šâ ¥â â ƒâ •" }, { "input": "jumbo's", "output": "â šâ ¥â â ƒâ •â „â Ž" }, { "input": "jumbos", "output": "â šâ ¥â â ƒâ •â Ž" }, { "input": "jump", "output": "â šâ ¥â â " }, { "input": "jump's", "output": "â šâ ¥â â â „â Ž" }, { "input": "jumped", "output": "â šâ ¥â â â «" }, { "input": "jumper", "output": "â šâ ¥â â â »" }, { "input": "jumper's", "output": "â šâ ¥â â â »â „â Ž" }, { "input": "jumpers", "output": "â šâ ¥â â â »â Ž" }, { "input": "jumpier", "output": "â šâ ¥â â â Šâ »" }, { "input": "jumpiest", "output": "â šâ ¥â â â Šâ ‘â Œ" }, { "input": "jumpily", "output": "â šâ ¥â â â Šâ ‡â ½" }, { "input": "jumpiness", "output": "â šâ ¥â â â Šâ °â Ž" }, { "input": "jumpiness's", "output": "â šâ ¥â â â Šâ °â Žâ „â Ž" }, { "input": "jumping", "output": "â šâ ¥â â â Œ" }, { "input": "jumps", "output": "â šâ ¥â â â Ž" }, { "input": "jumpsuit", "output": "â šâ ¥â â â Žâ ¥â Šâ ž" }, { "input": "jumpsuit's", "output": "â šâ ¥â â â Žâ ¥â Šâ žâ „â Ž" }, { "input": "jumpsuits", "output": "â šâ ¥â â â Žâ ¥â Šâ žâ Ž" }, { "input": "jumpy", "output": "â šâ ¥â â â ½" }, { "input": "jun", "output": "â šâ ¥â " }, { "input": "junco", "output": "â šâ ¥â â ‰â •" }, { "input": "junco's", "output": "â šâ ¥â â ‰â •â „â Ž" }, { "input": "juncos", "output": "â šâ ¥â â ‰â •â Ž" }, { "input": "junction", "output": "â šâ ¥â â ‰â °â " }, { "input": "junction's", "output": "â šâ ¥â â ‰â °â â „â Ž" }, { "input": "junctions", "output": "â šâ ¥â â ‰â °â â Ž" }, { "input": "juncture", "output": "â šâ ¥â â ‰â žâ ¥â —â ‘" }, { "input": "juncture's", "output": "â šâ ¥â â ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "junctures", "output": "â šâ ¥â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "jungle", "output": "â šâ ¥â â ›â ‡â ‘" }, { "input": "jungle's", "output": "â šâ ¥â â ›â ‡â ‘â „â Ž" }, { "input": "jungles", "output": "â šâ ¥â â ›â ‡â ‘â Ž" }, { "input": "junior", "output": "â šâ ¥â â Šâ •â —" }, { "input": "junior's", "output": "â šâ ¥â â Šâ •â —â „â Ž" }, { "input": "juniors", "output": "â šâ ¥â â Šâ •â —â Ž" }, { "input": "juniper", "output": "â šâ ¥â â Šâ â »" }, { "input": "juniper's", "output": "â šâ ¥â â Šâ â »â „â Ž" }, { "input": "junipers", "output": "â šâ ¥â â Šâ â »â Ž" }, { "input": "junk", "output": "â šâ ¥â â …" }, { "input": "junk's", "output": "â šâ ¥â â …â „â Ž" }, { "input": "junked", "output": "â šâ ¥â â …â «" }, { "input": "junker", "output": "â šâ ¥â â …â »" }, { "input": "junker's", "output": "â šâ ¥â â …⠻⠄⠎" }, { "input": "junkers", "output": "â šâ ¥â â …⠻⠎" }, { "input": "junket", "output": "â šâ ¥â â …â ‘â ž" }, { "input": "junket's", "output": "â šâ ¥â â …â ‘â žâ „â Ž" }, { "input": "junketed", "output": "â šâ ¥â â …â ‘â žâ «" }, { "input": "junketeer", "output": "â šâ ¥â â …â ‘â žâ ‘â »" }, { "input": "junketeer's", "output": "â šâ ¥â â …⠑⠞⠑⠻⠄⠎" }, { "input": "junketeers", "output": "â šâ ¥â â …⠑⠞⠑⠻⠎" }, { "input": "junketing", "output": "â šâ ¥â â …â ‘â žâ Œ" }, { "input": "junkets", "output": "â šâ ¥â â …â ‘â žâ Ž" }, { "input": "junkie", "output": "â šâ ¥â â …â Šâ ‘" }, { "input": "junkie's", "output": "â šâ ¥â â …â Šâ ‘â „â Ž" }, { "input": "junkier", "output": "â šâ ¥â â …â Šâ »" }, { "input": "junkies", "output": "â šâ ¥â â …â Šâ ‘â Ž" }, { "input": "junkiest", "output": "â šâ ¥â â …â Šâ ‘â Œ" }, { "input": "junking", "output": "â šâ ¥â â …â Œ" }, { "input": "junks", "output": "â šâ ¥â â …â Ž" }, { "input": "junkyard", "output": "â šâ ¥â â …⠽⠜⠙" }, { "input": "junkyard's", "output": "â šâ ¥â â …⠽⠜⠙⠄⠎" }, { "input": "junkyards", "output": "â šâ ¥â â …⠽⠜⠙⠎" }, { "input": "junta", "output": "â šâ ¥â â žâ " }, { "input": "junta's", "output": "â šâ ¥â â žâ â „â Ž" }, { "input": "juntas", "output": "â šâ ¥â â žâ â Ž" }, { "input": "juridic", "output": "⠚⠥⠗⠊⠙⠊⠉" }, { "input": "juridical", "output": "⠚⠥⠗⠊⠙⠊⠉â â ‡" }, { "input": "juridically", "output": "⠚⠥⠗⠊⠙⠊⠉⠠⠽" }, { "input": "juries", "output": "⠚⠥⠗⠊⠑⠎" }, { "input": "jurisdiction", "output": "⠚⠥⠗⠊⠎⠙⠊⠉⠰â " }, { "input": "jurisdiction's", "output": "⠚⠥⠗⠊⠎⠙⠊⠉⠰â â „â Ž" }, { "input": "jurisdictional", "output": "⠚⠥⠗⠊⠎⠙⠊⠉⠰â â â ‡" }, { "input": "jurisprudence", "output": "⠚⠥⠗⠊⠎â â —⠥⠙⠰⠑" }, { "input": "jurisprudence's", "output": "⠚⠥⠗⠊⠎â â —⠥⠙⠰⠑⠄⠎" }, { "input": "jurist", "output": "⠚⠥⠗⠊⠌" }, { "input": "jurist's", "output": "⠚⠥⠗⠊⠌⠄⠎" }, { "input": "juristic", "output": "⠚⠥⠗⠊⠌⠊⠉" }, { "input": "jurists", "output": "⠚⠥⠗⠊⠌⠎" }, { "input": "juror", "output": "⠚⠥⠗⠕⠗" }, { "input": "juror's", "output": "⠚⠥⠗⠕⠗⠄⠎" }, { "input": "jurors", "output": "⠚⠥⠗⠕⠗⠎" }, { "input": "jury", "output": "⠚⠥⠗⠽" }, { "input": "jury's", "output": "⠚⠥⠗⠽⠄⠎" }, { "input": "just", "output": "â š" }, { "input": "juster", "output": "⠚⠥⠌⠻" }, { "input": "justest", "output": "⠚⠥⠌⠑⠌" }, { "input": "justice", "output": "⠚⠥⠌⠊⠉⠑" }, { "input": "justice's", "output": "⠚⠥⠌⠊⠉⠑⠄⠎" }, { "input": "justices", "output": "⠚⠥⠌⠊⠉⠑⠎" }, { "input": "justifiable", "output": "⠚⠥⠌⠊⠋⠊â â ¼" }, { "input": "justifiably", "output": "⠚⠥⠌⠊⠋⠊â â ƒâ ‡â ½" }, { "input": "justification", "output": "⠚⠥⠌⠊⠋⠊⠉⠠â " }, { "input": "justification's", "output": "⠚⠥⠌⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "justifications", "output": "⠚⠥⠌⠊⠋⠊⠉⠠â â Ž" }, { "input": "justified", "output": "⠚⠥⠌⠊⠋⠊⠫" }, { "input": "justifies", "output": "⠚⠥⠌⠊⠋⠊⠑⠎" }, { "input": "justify", "output": "⠚⠥⠌⠊⠋⠽" }, { "input": "justifying", "output": "⠚⠥⠌⠊⠋⠽⠌" }, { "input": "justly", "output": "⠚⠥⠌⠇⠽" }, { "input": "justness", "output": "⠚⠥⠌⠰⠎" }, { "input": "justness's", "output": "⠚⠥⠌⠰⠎⠄⠎" }, { "input": "jut", "output": "⠚⠥⠞" }, { "input": "jut's", "output": "⠚⠥⠞⠄⠎" }, { "input": "jute", "output": "⠚⠥⠞⠑" }, { "input": "jute's", "output": "⠚⠥⠞⠑⠄⠎" }, { "input": "juts", "output": "⠚⠥⠞⠎" }, { "input": "jutted", "output": "⠚⠥⠞⠞⠫" }, { "input": "jutting", "output": "⠚⠥⠞⠞⠌" }, { "input": "juvenile", "output": "⠚⠥⠧⠢⠊⠇⠑" }, { "input": "juvenile's", "output": "⠚⠥⠧⠢⠊⠇⠑⠄⠎" }, { "input": "juveniles", "output": "⠚⠥⠧⠢⠊⠇⠑⠎" }, { "input": "juxtapose", "output": "⠚⠥⠭⠞â â â •â Žâ ‘" }, { "input": "juxtaposed", "output": "⠚⠥⠭⠞â â â •â Žâ «" }, { "input": "juxtaposes", "output": "⠚⠥⠭⠞â â â •â Žâ ‘â Ž" }, { "input": "juxtaposing", "output": "⠚⠥⠭⠞â â â •â Žâ Œ" }, { "input": "juxtaposition", "output": "⠚⠥⠭⠞â â â •â Žâ Šâ °â " }, { "input": "juxtaposition's", "output": "⠚⠥⠭⠞â â â •â Žâ Šâ °â â „â Ž" }, { "input": "juxtapositions", "output": "⠚⠥⠭⠞â â â •â Žâ Šâ °â â Ž" }, { "input": "k", "output": "â °â …" }, { "input": "kHz", "output": "â …â  â “â µ" }, { "input": "kW", "output": "â …â  â º" }, { "input": "kaboom", "output": "â …â â ƒâ •â •â " }, { "input": "kabuki's", "output": "â …â â ƒâ ¥â …â Šâ „â Ž" }, { "input": "kaddish", "output": "â …â â ²â Šâ ©" }, { "input": "kaddish's", "output": "â …â â ²â Šâ ©â „â Ž" }, { "input": "kaddishes", "output": "â …â â ²â Šâ ©â ‘â Ž" }, { "input": "kaffeeklatch", "output": "â …â â –â ‘â ‘â …â ‡â â žâ ¡" }, { "input": "kaffeeklatch's", "output": "â …â â –â ‘â ‘â …â ‡â â žâ ¡â „â Ž" }, { "input": "kaffeeklatches", "output": "â …â â –â ‘â ‘â …â ‡â â žâ ¡â ‘â Ž" }, { "input": "kaffeeklatsch", "output": "â …â â –â ‘â ‘â …â ‡â â žâ Žâ ¡" }, { "input": "kaffeeklatsch's", "output": "â …â â –â ‘â ‘â …â ‡â â žâ Žâ ¡â „â Ž" }, { "input": "kaffeeklatsches", "output": "â …â â –â ‘â ‘â …â ‡â â žâ Žâ ¡â ‘â Ž" }, { "input": "kaiser", "output": "â …â â Šâ Žâ »" }, { "input": "kaiser's", "output": "â …â â Šâ Žâ »â „â Ž" }, { "input": "kaisers", "output": "â …â â Šâ Žâ »â Ž" }, { "input": "kale", "output": "â …â â ‡â ‘" }, { "input": "kale's", "output": "â …â â ‡â ‘â „â Ž" }, { "input": "kaleidoscope", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â ‘" }, { "input": "kaleidoscope's", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "kaleidoscopes", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â ‘â Ž" }, { "input": "kaleidoscopic", "output": "â …â â ‡â ‘⠊⠙⠕⠎⠉⠕â â Šâ ‰" }, { "input": "kamikaze", "output": "â …â â â Šâ …â â µâ ‘" }, { "input": "kamikaze's", "output": "â …â â â Šâ …â â µâ ‘â „â Ž" }, { "input": "kamikazes", "output": "â …â â â Šâ …â â µâ ‘â Ž" }, { "input": "kangaroo", "output": "â …â â â ›â œâ •â •" }, { "input": "kangaroo's", "output": "â …â â â ›â œâ •â •â „â Ž" }, { "input": "kangaroos", "output": "â …â â â ›â œâ •â •â Ž" }, { "input": "kaolin", "output": "â …â â •⠇⠔" }, { "input": "kaolin's", "output": "â …â â •⠇⠔⠄⠎" }, { "input": "kapok", "output": "â …â â â •â …" }, { "input": "kapok's", "output": "â …â â â •â …â „â Ž" }, { "input": "kappa", "output": "â …â â â â " }, { "input": "kappa's", "output": "â …â â â â â „â Ž" }, { "input": "kappas", "output": "â …â â â â â Ž" }, { "input": "kaput", "output": "â …â â â ¥â ž" }, { "input": "karakul", "output": "â …â œâ â …⠥⠇" }, { "input": "karakul's", "output": "â …â œâ â …⠥⠇⠄⠎" }, { "input": "karaoke", "output": "â …â œâ â •â …â ‘" }, { "input": "karaoke's", "output": "â …â œâ â •â …â ‘â „â Ž" }, { "input": "karaokes", "output": "â …â œâ â •â …â ‘â Ž" }, { "input": "karat", "output": "â …â œâ â ž" }, { "input": "karat's", "output": "â …â œâ â žâ „â Ž" }, { "input": "karate", "output": "â …â œâ â žâ ‘" }, { "input": "karate's", "output": "â …â œâ â žâ ‘â „â Ž" }, { "input": "karats", "output": "â …â œâ â žâ Ž" }, { "input": "karma", "output": "â …â œâ â " }, { "input": "karma's", "output": "â …â œâ â â „â Ž" }, { "input": "karmic", "output": "â …â œâ â Šâ ‰" }, { "input": "katydid", "output": "â …â â žâ ½â ™â Šâ ™" }, { "input": "katydid's", "output": "â …â â žâ ½â ™â Šâ ™â „â Ž" }, { "input": "katydids", "output": "â …â â žâ ½â ™â Šâ ™â Ž" }, { "input": "kayak", "output": "â …â â ½â â …" }, { "input": "kayak's", "output": "â …â â ½â â …â „â Ž" }, { "input": "kayaked", "output": "â …â â ½â â …â «" }, { "input": "kayaking", "output": "â …â â ½â â …â Œ" }, { "input": "kayaking's", "output": "â …â â ½â â …⠌⠄⠎" }, { "input": "kayaks", "output": "â …â â ½â â …â Ž" }, { "input": "kayo", "output": "â …â â ½â •" }, { "input": "kayo's", "output": "â …â â ½â •â „â Ž" }, { "input": "kayoed", "output": "â …â â ½â •â «" }, { "input": "kayoing", "output": "â …â â ½â •â Œ" }, { "input": "kayos", "output": "â …â â ½â •â Ž" }, { "input": "kazoo", "output": "â …â â µâ •â •" }, { "input": "kazoo's", "output": "â …â â µâ •â •â „â Ž" }, { "input": "kazoos", "output": "â …â â µâ •â •â Ž" }, { "input": "kc", "output": "â …â ‰" }, { "input": "kebab", "output": "â …â ‘â ƒâ â ƒ" }, { "input": "kebab's", "output": "â …â ‘â ƒâ â ƒâ „â Ž" }, { "input": "kebabs", "output": "â …â ‘â ƒâ â ƒâ Ž" }, { "input": "keel", "output": "â …â ‘â ‘â ‡" }, { "input": "keel's", "output": "⠅⠑⠑⠇⠄⠎" }, { "input": "keeled", "output": "⠅⠑⠑⠇⠫" }, { "input": "keeling", "output": "⠅⠑⠑⠇⠌" }, { "input": "keels", "output": "⠅⠑⠑⠇⠎" }, { "input": "keen", "output": "â …â ‘â ¢" }, { "input": "keen's", "output": "⠅⠑⠢⠄⠎" }, { "input": "keened", "output": "⠅⠑⠢⠫" }, { "input": "keener", "output": "⠅⠑⠢⠻" }, { "input": "keenest", "output": "⠅⠑⠢⠑⠌" }, { "input": "keening", "output": "⠅⠑⠢⠌" }, { "input": "keenly", "output": "⠅⠑⠢⠇⠽" }, { "input": "keenness", "output": "⠅⠑⠢⠰⠎" }, { "input": "keenness's", "output": "⠅⠑⠢⠰⠎⠄⠎" }, { "input": "keens", "output": "⠅⠑⠢⠎" }, { "input": "keep", "output": "â …â ‘â ‘â " }, { "input": "keep's", "output": "â …â ‘â ‘â â „â Ž" }, { "input": "keeper", "output": "â …â ‘â ‘â â »" }, { "input": "keeper's", "output": "â …â ‘â ‘â â »â „â Ž" }, { "input": "keepers", "output": "â …â ‘â ‘â â »â Ž" }, { "input": "keeping", "output": "â …â ‘â ‘â â Œ" }, { "input": "keeping's", "output": "â …â ‘â ‘â â Œâ „â Ž" }, { "input": "keeps", "output": "â …â ‘â ‘â â Ž" }, { "input": "keepsake", "output": "â …â ‘â ‘â â Žâ â …â ‘" }, { "input": "keepsake's", "output": "â …â ‘â ‘â â Žâ â …â ‘â „â Ž" }, { "input": "keepsakes", "output": "â …â ‘â ‘â â Žâ â …â ‘â Ž" }, { "input": "keg", "output": "â …â ‘â ›" }, { "input": "keg's", "output": "⠅⠑⠛⠄⠎" }, { "input": "kegs", "output": "⠅⠑⠛⠎" }, { "input": "kelp", "output": "â …â ‘â ‡â " }, { "input": "kelp's", "output": "â …â ‘â ‡â â „â Ž" }, { "input": "ken", "output": "â …â ¢" }, { "input": "ken's", "output": "⠅⠢⠄⠎" }, { "input": "kenned", "output": "â …â ¢â â «" }, { "input": "kennel", "output": "â …â ¢â â ‘â ‡" }, { "input": "kennel's", "output": "â …â ¢â â ‘⠇⠄⠎" }, { "input": "kenneled", "output": "â …â ¢â â ‘⠇⠫" }, { "input": "kenneling", "output": "â …â ¢â â ‘⠇⠌" }, { "input": "kennels", "output": "â …â ¢â â ‘⠇⠎" }, { "input": "kenning", "output": "â …â ¢â â Œ" }, { "input": "keno", "output": "⠅⠢⠕" }, { "input": "keno's", "output": "⠅⠢⠕⠄⠎" }, { "input": "kens", "output": "⠅⠢⠎" }, { "input": "kepi", "output": "â …â ‘â â Š" }, { "input": "kepi's", "output": "â …â ‘â â Šâ „â Ž" }, { "input": "kepis", "output": "â …â ‘â â Šâ Ž" }, { "input": "kept", "output": "â …â ‘â â ž" }, { "input": "keratin", "output": "â …â »â â žâ ”" }, { "input": "keratin's", "output": "â …â »â â žâ ”â „â Ž" }, { "input": "kerchief", "output": "⠅⠻⠡⠊⠑⠋" }, { "input": "kerchief's", "output": "⠅⠻⠡⠊⠑⠋⠄⠎" }, { "input": "kerchiefs", "output": "⠅⠻⠡⠊⠑⠋⠎" }, { "input": "kernel", "output": "â …â »â â ‘â ‡" }, { "input": "kernel's", "output": "â …â »â â ‘⠇⠄⠎" }, { "input": "kernels", "output": "â …â »â â ‘⠇⠎" }, { "input": "kerosene", "output": "⠅⠻⠕⠎⠢⠑" }, { "input": "kerosene's", "output": "⠅⠻⠕⠎⠢⠑⠄⠎" }, { "input": "kestrel", "output": "⠅⠑⠌⠗⠑⠇" }, { "input": "kestrel's", "output": "⠅⠑⠌⠗⠑⠇⠄⠎" }, { "input": "kestrels", "output": "⠅⠑⠌⠗⠑⠇⠎" }, { "input": "ketch", "output": "â …â ‘â žâ ¡" }, { "input": "ketch's", "output": "â …â ‘â žâ ¡â „â Ž" }, { "input": "ketches", "output": "â …â ‘â žâ ¡â ‘â Ž" }, { "input": "ketchup", "output": "â …â ‘â žâ ¡â ¥â " }, { "input": "ketchup's", "output": "â …â ‘â žâ ¡â ¥â â „â Ž" }, { "input": "kettle", "output": "⠅⠑⠞⠞⠇⠑" }, { "input": "kettle's", "output": "⠅⠑⠞⠞⠇⠑⠄⠎" }, { "input": "kettledrum", "output": "⠅⠑⠞⠞⠇⠑⠙⠗⠥â " }, { "input": "kettledrum's", "output": "⠅⠑⠞⠞⠇⠑⠙⠗⠥â â „â Ž" }, { "input": "kettledrums", "output": "⠅⠑⠞⠞⠇⠑⠙⠗⠥â â Ž" }, { "input": "kettles", "output": "⠅⠑⠞⠞⠇⠑⠎" }, { "input": "key", "output": "â …â ‘â ½" }, { "input": "key's", "output": "⠅⠑⠽⠄⠎" }, { "input": "keyboard", "output": "⠅⠑⠽⠃⠕⠜⠙" }, { "input": "keyboard's", "output": "⠅⠑⠽⠃⠕⠜⠙⠄⠎" }, { "input": "keyboarded", "output": "⠅⠑⠽⠃⠕⠜⠙⠫" }, { "input": "keyboarder", "output": "⠅⠑⠽⠃⠕⠜⠙⠻" }, { "input": "keyboarder's", "output": "⠅⠑⠽⠃⠕⠜⠙⠻⠄⠎" }, { "input": "keyboarders", "output": "⠅⠑⠽⠃⠕⠜⠙⠻⠎" }, { "input": "keyboarding", "output": "⠅⠑⠽⠃⠕⠜⠙⠌" }, { "input": "keyboards", "output": "⠅⠑⠽⠃⠕⠜⠙⠎" }, { "input": "keyed", "output": "⠅⠑⠽⠫" }, { "input": "keyhole", "output": "⠅⠑⠽⠓⠕⠇⠑" }, { "input": "keyhole's", "output": "⠅⠑⠽⠓⠕⠇⠑⠄⠎" }, { "input": "keyholes", "output": "⠅⠑⠽⠓⠕⠇⠑⠎" }, { "input": "keying", "output": "⠅⠑⠽⠌" }, { "input": "keynote", "output": "â …â ‘â ½â â •â žâ ‘" }, { "input": "keynote's", "output": "â …â ‘â ½â â •â žâ ‘â „â Ž" }, { "input": "keynoted", "output": "â …â ‘â ½â â •â žâ «" }, { "input": "keynoter", "output": "â …â ‘â ½â â •â žâ »" }, { "input": "keynoter's", "output": "â …â ‘â ½â â •⠞⠻⠄⠎" }, { "input": "keynoters", "output": "â …â ‘â ½â â •⠞⠻⠎" }, { "input": "keynotes", "output": "â …â ‘â ½â â •â žâ ‘â Ž" }, { "input": "keynoting", "output": "â …â ‘â ½â â •â žâ Œ" }, { "input": "keypunch", "output": "â …â ‘â ½â â ¥â â ¡" }, { "input": "keypunch's", "output": "â …â ‘â ½â â ¥â â ¡â „â Ž" }, { "input": "keypunched", "output": "â …â ‘â ½â â ¥â â ¡â «" }, { "input": "keypuncher", "output": "â …â ‘â ½â â ¥â â ¡â »" }, { "input": "keypuncher's", "output": "â …â ‘â ½â â ¥â â ¡â »â „â Ž" }, { "input": "keypunchers", "output": "â …â ‘â ½â â ¥â â ¡â »â Ž" }, { "input": "keypunches", "output": "â …â ‘â ½â â ¥â â ¡â ‘â Ž" }, { "input": "keypunching", "output": "â …â ‘â ½â â ¥â â ¡â Œ" }, { "input": "keys", "output": "⠅⠑⠽⠎" }, { "input": "keystone", "output": "⠅⠑⠽⠌â â •" }, { "input": "keystone's", "output": "⠅⠑⠽⠌â â •â „â Ž" }, { "input": "keystones", "output": "⠅⠑⠽⠌â â •â Ž" }, { "input": "keystroke", "output": "⠅⠑⠽⠌⠗⠕⠅⠑" }, { "input": "keystroke's", "output": "⠅⠑⠽⠌⠗⠕⠅⠑⠄⠎" }, { "input": "keystrokes", "output": "⠅⠑⠽⠌⠗⠕⠅⠑⠎" }, { "input": "keyword", "output": "⠅⠑⠽⠘⠺" }, { "input": "keyword's", "output": "⠅⠑⠽⠘⠺⠄⠎" }, { "input": "keywords", "output": "⠅⠑⠽⠘⠺⠎" }, { "input": "khaki", "output": "â …â “â â …â Š" }, { "input": "khaki's", "output": "â …â “â â …â Šâ „â Ž" }, { "input": "khakis", "output": "â …â “â â …â Šâ Ž" }, { "input": "khan", "output": "â …â “â â " }, { "input": "khan's", "output": "â …â “â â â „â Ž" }, { "input": "khans", "output": "â …â “â â â Ž" }, { "input": "kibble", "output": "⠅⠊⠃⠼" }, { "input": "kibble's", "output": "⠅⠊⠃⠼⠄⠎" }, { "input": "kibbled", "output": "⠅⠊⠃⠼⠙" }, { "input": "kibbles", "output": "⠅⠊⠃⠼⠎" }, { "input": "kibbling", "output": "⠅⠊⠆⠇⠌" }, { "input": "kibbutz", "output": "⠅⠊⠆⠥⠞⠵" }, { "input": "kibbutz's", "output": "⠅⠊⠆⠥⠞⠵⠄⠎" }, { "input": "kibbutzim", "output": "⠅⠊⠆⠥⠞⠵⠊â " }, { "input": "kibitz", "output": "⠅⠊⠃⠊⠞⠵" }, { "input": "kibitzed", "output": "⠅⠊⠃⠊⠞⠵⠫" }, { "input": "kibitzer", "output": "⠅⠊⠃⠊⠞⠵⠻" }, { "input": "kibitzer's", "output": "⠅⠊⠃⠊⠞⠵⠻⠄⠎" }, { "input": "kibitzers", "output": "⠅⠊⠃⠊⠞⠵⠻⠎" }, { "input": "kibitzes", "output": "⠅⠊⠃⠊⠞⠵⠑⠎" }, { "input": "kibitzing", "output": "⠅⠊⠃⠊⠞⠵⠌" }, { "input": "kibosh", "output": "⠅⠊⠃⠕⠩" }, { "input": "kibosh's", "output": "⠅⠊⠃⠕⠩⠄⠎" }, { "input": "kick", "output": "⠅⠊⠉⠅" }, { "input": "kick's", "output": "⠅⠊⠉⠅⠄⠎" }, { "input": "kickback", "output": "⠅⠊⠉⠅⠃â â ‰â …" }, { "input": "kickback's", "output": "⠅⠊⠉⠅⠃â â ‰â …â „â Ž" }, { "input": "kickbacks", "output": "⠅⠊⠉⠅⠃â â ‰â …â Ž" }, { "input": "kickball", "output": "⠅⠊⠉⠅⠃â â ‡â ‡" }, { "input": "kickball's", "output": "⠅⠊⠉⠅⠃â â ‡â ‡â „â Ž" }, { "input": "kicked", "output": "⠅⠊⠉⠅⠫" }, { "input": "kicker", "output": "⠅⠊⠉⠅⠻" }, { "input": "kicker's", "output": "⠅⠊⠉⠅⠻⠄⠎" }, { "input": "kickers", "output": "⠅⠊⠉⠅⠻⠎" }, { "input": "kickier", "output": "⠅⠊⠉⠅⠊⠻" }, { "input": "kickiest", "output": "⠅⠊⠉⠅⠊⠑⠌" }, { "input": "kicking", "output": "⠅⠊⠉⠅⠌" }, { "input": "kickoff", "output": "⠅⠊⠉⠅⠷⠋" }, { "input": "kickoff's", "output": "⠅⠊⠉⠅⠷⠋⠄⠎" }, { "input": "kickoffs", "output": "⠅⠊⠉⠅⠷⠋⠎" }, { "input": "kicks", "output": "⠅⠊⠉⠅⠎" }, { "input": "kickstand", "output": "⠅⠊⠉⠅⠌⠯" }, { "input": "kickstand's", "output": "⠅⠊⠉⠅⠌⠯⠄⠎" }, { "input": "kickstands", "output": "⠅⠊⠉⠅⠌⠯⠎" }, { "input": "kicky", "output": "⠅⠊⠉⠅⠽" }, { "input": "kid", "output": "â …â Šâ ™" }, { "input": "kid's", "output": "⠅⠊⠙⠄⠎" }, { "input": "kidded", "output": "⠅⠊⠲⠫" }, { "input": "kidder", "output": "⠅⠊⠲⠻" }, { "input": "kidder's", "output": "⠅⠊⠲⠻⠄⠎" }, { "input": "kidders", "output": "⠅⠊⠲⠻⠎" }, { "input": "kiddie", "output": "⠅⠊⠲⠊⠑" }, { "input": "kiddie's", "output": "⠅⠊⠲⠊⠑⠄⠎" }, { "input": "kiddies", "output": "⠅⠊⠲⠊⠑⠎" }, { "input": "kidding", "output": "⠅⠊⠲⠌" }, { "input": "kiddish", "output": "⠅⠊⠲⠊⠩" }, { "input": "kiddo", "output": "⠅⠊⠲⠕" }, { "input": "kiddo's", "output": "⠅⠊⠲⠕⠄⠎" }, { "input": "kiddos", "output": "⠅⠊⠲⠕⠎" }, { "input": "kidnap", "output": "â …â Šâ ™â â â " }, { "input": "kidnapped", "output": "â …â Šâ ™â â â â â «" }, { "input": "kidnapper", "output": "â …â Šâ ™â â â â â »" }, { "input": "kidnapper's", "output": "â …â Šâ ™â â â â â »â „â Ž" }, { "input": "kidnappers", "output": "â …â Šâ ™â â â â â »â Ž" }, { "input": "kidnapping", "output": "â …â Šâ ™â â â â â Œ" }, { "input": "kidnapping's", "output": "â …â Šâ ™â â â â â Œâ „â Ž" }, { "input": "kidnappings", "output": "â …â Šâ ™â â â â â Œâ Ž" }, { "input": "kidnaps", "output": "â …â Šâ ™â â â â Ž" }, { "input": "kidney", "output": "â …â Šâ ™â â ‘â ½" }, { "input": "kidney's", "output": "â …â Šâ ™â â ‘⠽⠄⠎" }, { "input": "kidneys", "output": "â …â Šâ ™â â ‘⠽⠎" }, { "input": "kids", "output": "⠅⠊⠙⠎" }, { "input": "kidskin", "output": "⠅⠊⠙⠎⠅⠔" }, { "input": "kidskin's", "output": "⠅⠊⠙⠎⠅⠔⠄⠎" }, { "input": "kielbasa", "output": "⠅⠊⠑⠇⠃â â Žâ " }, { "input": "kielbasa's", "output": "⠅⠊⠑⠇⠃â â Žâ â „â Ž" }, { "input": "kielbasas", "output": "⠅⠊⠑⠇⠃â â Žâ â Ž" }, { "input": "kielbasi", "output": "⠅⠊⠑⠇⠃â â Žâ Š" }, { "input": "kill", "output": "⠅⠊⠇⠇" }, { "input": "kill's", "output": "⠅⠊⠇⠇⠄⠎" }, { "input": "killdeer", "output": "⠅⠊⠇⠇⠙⠑⠻" }, { "input": "killdeer's", "output": "⠅⠊⠇⠇⠙⠑⠻⠄⠎" }, { "input": "killdeers", "output": "⠅⠊⠇⠇⠙⠑⠻⠎" }, { "input": "killed", "output": "⠅⠊⠇⠇⠫" }, { "input": "killer", "output": "⠅⠊⠇⠇⠻" }, { "input": "killer's", "output": "⠅⠊⠇⠇⠻⠄⠎" }, { "input": "killers", "output": "⠅⠊⠇⠇⠻⠎" }, { "input": "killing", "output": "⠅⠊⠇⠇⠌" }, { "input": "killing's", "output": "⠅⠊⠇⠇⠌⠄⠎" }, { "input": "killings", "output": "⠅⠊⠇⠇⠌⠎" }, { "input": "killjoy", "output": "⠅⠊⠇⠇⠚⠕⠽" }, { "input": "killjoy's", "output": "⠅⠊⠇⠇⠚⠕⠽⠄⠎" }, { "input": "killjoys", "output": "⠅⠊⠇⠇⠚⠕⠽⠎" }, { "input": "kills", "output": "⠅⠊⠇⠇⠎" }, { "input": "kiln", "output": "â …â Šâ ‡â " }, { "input": "kiln's", "output": "â …â Šâ ‡â â „â Ž" }, { "input": "kilned", "output": "â …â Šâ ‡â â «" }, { "input": "kilning", "output": "â …â Šâ ‡â â Œ" }, { "input": "kilns", "output": "â …â Šâ ‡â â Ž" }, { "input": "kilo", "output": "⠅⠊⠇⠕" }, { "input": "kilo's", "output": "⠅⠊⠇⠕⠄⠎" }, { "input": "kilobyte", "output": "⠅⠊⠇⠕⠃⠽⠞⠑" }, { "input": "kilobyte's", "output": "⠅⠊⠇⠕⠃⠽⠞⠑⠄⠎" }, { "input": "kilobytes", "output": "⠅⠊⠇⠕⠃⠽⠞⠑⠎" }, { "input": "kilocycle", "output": "⠅⠊⠇⠕⠉⠽⠉⠇⠑" }, { "input": "kilocycle's", "output": "⠅⠊⠇⠕⠉⠽⠉⠇⠑⠄⠎" }, { "input": "kilocycles", "output": "⠅⠊⠇⠕⠉⠽⠉⠇⠑⠎" }, { "input": "kilogram", "output": "⠅⠊⠇⠕⠛⠗â â " }, { "input": "kilogram's", "output": "⠅⠊⠇⠕⠛⠗â â â „â Ž" }, { "input": "kilograms", "output": "⠅⠊⠇⠕⠛⠗â â â Ž" }, { "input": "kilohertz", "output": "⠅⠊⠇⠕⠓⠻⠞⠵" }, { "input": "kilohertz's", "output": "⠅⠊⠇⠕⠓⠻⠞⠵⠄⠎" }, { "input": "kiloliter", "output": "⠅⠊⠇⠕⠇⠊⠞⠻" }, { "input": "kiloliter's", "output": "⠅⠊⠇⠕⠇⠊⠞⠻⠄⠎" }, { "input": "kiloliters", "output": "⠅⠊⠇⠕⠇⠊⠞⠻⠎" }, { "input": "kilometer", "output": "⠅⠊⠇⠕â â ‘â žâ »" }, { "input": "kilometer's", "output": "⠅⠊⠇⠕â â ‘⠞⠻⠄⠎" }, { "input": "kilometers", "output": "⠅⠊⠇⠕â â ‘⠞⠻⠎" }, { "input": "kilos", "output": "⠅⠊⠇⠕⠎" }, { "input": "kiloton", "output": "⠅⠊⠇⠕⠞⠕â " }, { "input": "kiloton's", "output": "⠅⠊⠇⠕⠞⠕â â „â Ž" }, { "input": "kilotons", "output": "⠅⠊⠇⠕⠞⠕â â Ž" }, { "input": "kilowatt", "output": "⠅⠊⠇⠕⠺â â žâ ž" }, { "input": "kilowatt's", "output": "⠅⠊⠇⠕⠺â â žâ žâ „â Ž" }, { "input": "kilowatts", "output": "⠅⠊⠇⠕⠺â â žâ žâ Ž" }, { "input": "kilt", "output": "⠅⠊⠇⠞" }, { "input": "kilt's", "output": "⠅⠊⠇⠞⠄⠎" }, { "input": "kilter", "output": "⠅⠊⠇⠞⠻" }, { "input": "kilter's", "output": "⠅⠊⠇⠞⠻⠄⠎" }, { "input": "kilts", "output": "⠅⠊⠇⠞⠎" }, { "input": "kimono", "output": "â …â Šâ â •â â •" }, { "input": "kimono's", "output": "â …â Šâ â •â â •â „â Ž" }, { "input": "kimonos", "output": "â …â Šâ â •â â •â Ž" }, { "input": "kin", "output": "â …â ”" }, { "input": "kin's", "output": "⠅⠔⠄⠎" }, { "input": "kind", "output": "⠅⠔⠙" }, { "input": "kind's", "output": "⠅⠔⠙⠄⠎" }, { "input": "kinda", "output": "⠅⠔⠙â " }, { "input": "kinder", "output": "⠅⠔⠙⠻" }, { "input": "kindergarten", "output": "⠅⠔⠙⠻⠛⠜⠞⠢" }, { "input": "kindergarten's", "output": "⠅⠔⠙⠻⠛⠜⠞⠢⠄⠎" }, { "input": "kindergartens", "output": "⠅⠔⠙⠻⠛⠜⠞⠢⠎" }, { "input": "kindest", "output": "⠅⠔⠙⠑⠌" }, { "input": "kindhearted", "output": "⠅⠔⠙⠓⠑⠜⠞⠫" }, { "input": "kindheartedly", "output": "⠅⠔⠙⠓⠑⠜⠞⠫⠇⠽" }, { "input": "kindheartedness", "output": "⠅⠔⠙⠓⠑⠜⠞⠫⠰⠎" }, { "input": "kindheartedness's", "output": "⠅⠔⠙⠓⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "kindle", "output": "⠅⠔⠙⠇⠑" }, { "input": "kindled", "output": "⠅⠔⠙⠇⠫" }, { "input": "kindles", "output": "⠅⠔⠙⠇⠑⠎" }, { "input": "kindlier", "output": "⠅⠔⠙⠇⠊⠻" }, { "input": "kindliest", "output": "⠅⠔⠙⠇⠊⠑⠌" }, { "input": "kindliness", "output": "⠅⠔⠙⠇⠊⠰⠎" }, { "input": "kindliness's", "output": "⠅⠔⠙⠇⠊⠰⠎⠄⠎" }, { "input": "kindling", "output": "⠅⠔⠙⠇⠌" }, { "input": "kindling's", "output": "⠅⠔⠙⠇⠌⠄⠎" }, { "input": "kindly", "output": "⠅⠔⠙⠇⠽" }, { "input": "kindness", "output": "⠅⠔⠙⠰⠎" }, { "input": "kindness's", "output": "⠅⠔⠙⠰⠎⠄⠎" }, { "input": "kindnesses", "output": "⠅⠔⠙⠰⠎⠑⠎" }, { "input": "kindred", "output": "⠅⠔⠙⠗⠫" }, { "input": "kindred's", "output": "⠅⠔⠙⠗⠫⠄⠎" }, { "input": "kinds", "output": "⠅⠔⠙⠎" }, { "input": "kine", "output": "⠅⠔⠑" }, { "input": "kinematic", "output": "⠅⠔⠑â â â žâ Šâ ‰" }, { "input": "kinematics", "output": "⠅⠔⠑â â â žâ Šâ ‰â Ž" }, { "input": "kinematics's", "output": "⠅⠔⠑â â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "kines", "output": "⠅⠔⠑⠎" }, { "input": "kinetic", "output": "⠅⠔⠑⠞⠊⠉" }, { "input": "kinetically", "output": "⠅⠔⠑⠞⠊⠉⠠⠽" }, { "input": "kinetics's", "output": "⠅⠔⠑⠞⠊⠉⠎⠄⠎" }, { "input": "kinfolk", "output": "⠅⠔⠋⠕⠇⠅" }, { "input": "kinfolk's", "output": "⠅⠔⠋⠕⠇⠅⠄⠎" }, { "input": "kinfolks", "output": "⠅⠔⠋⠕⠇⠅⠎" }, { "input": "kinfolks's", "output": "⠅⠔⠋⠕⠇⠅⠎⠄⠎" }, { "input": "king", "output": "â …â Œ" }, { "input": "king's", "output": "⠅⠌⠄⠎" }, { "input": "kingdom", "output": "⠅⠌⠙⠕â " }, { "input": "kingdom's", "output": "⠅⠌⠙⠕â â „â Ž" }, { "input": "kingdoms", "output": "⠅⠌⠙⠕â â Ž" }, { "input": "kingfisher", "output": "⠅⠌⠋⠊⠩⠻" }, { "input": "kingfisher's", "output": "⠅⠌⠋⠊⠩⠻⠄⠎" }, { "input": "kingfishers", "output": "⠅⠌⠋⠊⠩⠻⠎" }, { "input": "kinglier", "output": "⠅⠌⠇⠊⠻" }, { "input": "kingliest", "output": "⠅⠌⠇⠊⠑⠌" }, { "input": "kingly", "output": "⠅⠌⠇⠽" }, { "input": "kingpin", "output": "â …â Œâ â ”" }, { "input": "kingpin's", "output": "â …â Œâ â ”â „â Ž" }, { "input": "kingpins", "output": "â …â Œâ â ”â Ž" }, { "input": "kings", "output": "⠅⠌⠎" }, { "input": "kingship", "output": "⠅⠌⠩⠊â " }, { "input": "kingship's", "output": "⠅⠌⠩⠊â â „â Ž" }, { "input": "kink", "output": "⠅⠔⠅" }, { "input": "kink's", "output": "⠅⠔⠅⠄⠎" }, { "input": "kinked", "output": "⠅⠔⠅⠫" }, { "input": "kinkier", "output": "⠅⠔⠅⠊⠻" }, { "input": "kinkiest", "output": "⠅⠔⠅⠊⠑⠌" }, { "input": "kinkily", "output": "⠅⠔⠅⠊⠇⠽" }, { "input": "kinkiness", "output": "⠅⠔⠅⠊⠰⠎" }, { "input": "kinkiness's", "output": "⠅⠔⠅⠊⠰⠎⠄⠎" }, { "input": "kinking", "output": "⠅⠔⠅⠌" }, { "input": "kinks", "output": "⠅⠔⠅⠎" }, { "input": "kinky", "output": "⠅⠔⠅⠽" }, { "input": "kinsfolk's", "output": "⠅⠔⠎⠋⠕⠇⠅⠄⠎" }, { "input": "kinship", "output": "⠅⠔⠩⠊â " }, { "input": "kinship's", "output": "⠅⠔⠩⠊â â „â Ž" }, { "input": "kinsman", "output": "⠅⠔⠎â â â " }, { "input": "kinsman's", "output": "⠅⠔⠎â â â â „â Ž" }, { "input": "kinsmen", "output": "⠅⠔⠎â â ¢" }, { "input": "kinswoman", "output": "⠅⠔⠎⠺⠕â â â " }, { "input": "kinswoman's", "output": "⠅⠔⠎⠺⠕â â â â „â Ž" }, { "input": "kinswomen", "output": "⠅⠔⠎⠺⠕â â ¢" }, { "input": "kiosk", "output": "â …â Šâ •â Žâ …" }, { "input": "kiosk's", "output": "â …â Šâ •â Žâ …â „â Ž" }, { "input": "kiosks", "output": "â …â Šâ •â Žâ …â Ž" }, { "input": "kipper", "output": "â …â Šâ â â »" }, { "input": "kipper's", "output": "â …â Šâ â â »â „â Ž" }, { "input": "kippered", "output": "â …â Šâ â â »â «" }, { "input": "kippering", "output": "â …â Šâ â â »â Œ" }, { "input": "kippers", "output": "â …â Šâ â â »â Ž" }, { "input": "kirsch's", "output": "â …â Šâ —â Žâ ¡â „â Ž" }, { "input": "kismet", "output": "â …â Šâ Žâ â ‘â ž" }, { "input": "kismet's", "output": "â …â Šâ Žâ â ‘â žâ „â Ž" }, { "input": "kiss", "output": "â …â Šâ Žâ Ž" }, { "input": "kiss's", "output": "â …â Šâ Žâ Žâ „â Ž" }, { "input": "kissable", "output": "â …â Šâ Žâ Žâ â ¼" }, { "input": "kissed", "output": "â …â Šâ Žâ Žâ «" }, { "input": "kisser", "output": "â …â Šâ Žâ Žâ »" }, { "input": "kisser's", "output": "⠅⠊⠎⠎⠻⠄⠎" }, { "input": "kissers", "output": "⠅⠊⠎⠎⠻⠎" }, { "input": "kisses", "output": "â …â Šâ Žâ Žâ ‘â Ž" }, { "input": "kissing", "output": "â …â Šâ Žâ Žâ Œ" }, { "input": "kissoff", "output": "â …â Šâ Žâ Žâ ·â ‹" }, { "input": "kissoff's", "output": "â …â Šâ Žâ Žâ ·â ‹â „â Ž" }, { "input": "kissoffs", "output": "â …â Šâ Žâ Žâ ·â ‹â Ž" }, { "input": "kit", "output": "â …â Šâ ž" }, { "input": "kit's", "output": "â …â Šâ žâ „â Ž" }, { "input": "kitchen", "output": "â …â Šâ žâ ¡â ¢" }, { "input": "kitchen's", "output": "⠅⠊⠞⠡⠢⠄⠎" }, { "input": "kitchenette", "output": "⠅⠊⠞⠡⠢⠑⠞⠞⠑" }, { "input": "kitchenette's", "output": "⠅⠊⠞⠡⠢⠑⠞⠞⠑⠄⠎" }, { "input": "kitchenettes", "output": "⠅⠊⠞⠡⠢⠑⠞⠞⠑⠎" }, { "input": "kitchens", "output": "⠅⠊⠞⠡⠢⠎" }, { "input": "kitchenware", "output": "⠅⠊⠞⠡⠢⠺⠜⠑" }, { "input": "kitchenware's", "output": "⠅⠊⠞⠡⠢⠺⠜⠑⠄⠎" }, { "input": "kite", "output": "â …â Šâ žâ ‘" }, { "input": "kite's", "output": "â …â Šâ žâ ‘â „â Ž" }, { "input": "kited", "output": "â …â Šâ žâ «" }, { "input": "kites", "output": "â …â Šâ žâ ‘â Ž" }, { "input": "kith", "output": "â …â Šâ ¹" }, { "input": "kith's", "output": "⠅⠊⠹⠄⠎" }, { "input": "kiting", "output": "â …â Šâ žâ Œ" }, { "input": "kits", "output": "â …â Šâ žâ Ž" }, { "input": "kitsch", "output": "â …â Šâ žâ Žâ ¡" }, { "input": "kitsch's", "output": "â …â Šâ žâ Žâ ¡â „â Ž" }, { "input": "kitschy", "output": "â …â Šâ žâ Žâ ¡â ½" }, { "input": "kitten", "output": "â …â Šâ žâ žâ ¢" }, { "input": "kitten's", "output": "⠅⠊⠞⠞⠢⠄⠎" }, { "input": "kittenish", "output": "⠅⠊⠞⠞⠢⠊⠩" }, { "input": "kittens", "output": "⠅⠊⠞⠞⠢⠎" }, { "input": "kitties", "output": "â …â Šâ žâ žâ Šâ ‘â Ž" }, { "input": "kitty", "output": "â …â Šâ žâ žâ ½" }, { "input": "kitty's", "output": "⠅⠊⠞⠞⠽⠄⠎" }, { "input": "kiwi", "output": "⠅⠊⠺⠊" }, { "input": "kiwi's", "output": "⠅⠊⠺⠊⠄⠎" }, { "input": "kiwifruit", "output": "⠅⠊⠺⠊⠋⠗⠥⠊⠞" }, { "input": "kiwifruit's", "output": "⠅⠊⠺⠊⠋⠗⠥⠊⠞⠄⠎" }, { "input": "kiwifruits", "output": "⠅⠊⠺⠊⠋⠗⠥⠊⠞⠎" }, { "input": "kiwis", "output": "⠅⠊⠺⠊⠎" }, { "input": "kleptomania", "output": "⠅⠇⠑â â žâ •â â â â Šâ " }, { "input": "kleptomania's", "output": "⠅⠇⠑â â žâ •â â â â Šâ â „â Ž" }, { "input": "kleptomaniac", "output": "⠅⠇⠑â â žâ •â â â â Šâ â ‰" }, { "input": "kleptomaniac's", "output": "⠅⠇⠑â â žâ •â â â â Šâ â ‰â „â Ž" }, { "input": "kleptomaniacs", "output": "⠅⠇⠑â â žâ •â â â â Šâ â ‰â Ž" }, { "input": "klutz", "output": "⠅⠇⠥⠞⠵" }, { "input": "klutz's", "output": "⠅⠇⠥⠞⠵⠄⠎" }, { "input": "klutzes", "output": "⠅⠇⠥⠞⠵⠑⠎" }, { "input": "klutzier", "output": "⠅⠇⠥⠞⠵⠊⠻" }, { "input": "klutziest", "output": "⠅⠇⠥⠞⠵⠊⠑⠌" }, { "input": "klutziness", "output": "⠅⠇⠥⠞⠵⠊⠰⠎" }, { "input": "klutziness's", "output": "⠅⠇⠥⠞⠵⠊⠰⠎⠄⠎" }, { "input": "klutzy", "output": "⠅⠇⠥⠞⠵⠽" }, { "input": "knack", "output": "â …â â â ‰â …" }, { "input": "knack's", "output": "â …â â â ‰â …â „â Ž" }, { "input": "knacker", "output": "â …â â â ‰â …â »" }, { "input": "knacks", "output": "â …â â â ‰â …â Ž" }, { "input": "knapsack", "output": "â …â â â â Žâ â ‰â …" }, { "input": "knapsack's", "output": "â …â â â â Žâ â ‰â …â „â Ž" }, { "input": "knapsacks", "output": "â …â â â â Žâ â ‰â …â Ž" }, { "input": "knave", "output": "â …â â â §â ‘" }, { "input": "knave's", "output": "â …â â â §â ‘â „â Ž" }, { "input": "knavery", "output": "â …â â â §â »â ½" }, { "input": "knavery's", "output": "â …â â â §â »â ½â „â Ž" }, { "input": "knaves", "output": "â …â â â §â ‘â Ž" }, { "input": "knavish", "output": "â …â â â §â Šâ ©" }, { "input": "knavishly", "output": "â …â â â §â Šâ ©â ‡â ½" }, { "input": "knead", "output": "â …â â ‚â ™" }, { "input": "kneaded", "output": "â …â â ‚⠙⠫" }, { "input": "kneader", "output": "â …â â ‚⠙⠻" }, { "input": "kneader's", "output": "â …â â ‚⠙⠻⠄⠎" }, { "input": "kneaders", "output": "â …â â ‚⠙⠻⠎" }, { "input": "kneading", "output": "â …â â ‚⠙⠌" }, { "input": "kneads", "output": "â …â â ‚⠙⠎" }, { "input": "knee", "output": "â …â â ‘â ‘" }, { "input": "knee's", "output": "â …â â ‘â ‘â „â Ž" }, { "input": "kneecap", "output": "â …â â ‘â ‘â ‰â â " }, { "input": "kneecap's", "output": "â …â â ‘â ‘â ‰â â â „â Ž" }, { "input": "kneecapped", "output": "â …â â ‘â ‘â ‰â â â â «" }, { "input": "kneecapping", "output": "â …â â ‘â ‘â ‰â â â â Œ" }, { "input": "kneecaps", "output": "â …â â ‘â ‘â ‰â â â Ž" }, { "input": "kneed", "output": "â …â â ‘â «" }, { "input": "kneeing", "output": "â …â â ‘â ‘â Œ" }, { "input": "kneel", "output": "â …â â ‘â ‘â ‡" }, { "input": "kneeling", "output": "â …â â ‘⠑⠇⠌" }, { "input": "kneels", "output": "â …â â ‘⠑⠇⠎" }, { "input": "knees", "output": "â …â â ‘â ‘â Ž" }, { "input": "knell", "output": "â …â â ‘⠇⠇" }, { "input": "knell's", "output": "â …â â ‘⠇⠇⠄⠎" }, { "input": "knelled", "output": "â …â â ‘⠇⠇⠫" }, { "input": "knelling", "output": "â …â â ‘⠇⠇⠌" }, { "input": "knells", "output": "â …â â ‘⠇⠇⠎" }, { "input": "knelt", "output": "â …â â ‘⠇⠞" }, { "input": "knew", "output": "â …â â ‘â º" }, { "input": "knickerbockers's", "output": "â …â â Šâ ‰â …⠻⠃⠕⠉⠅⠻⠎⠄⠎" }, { "input": "knickers", "output": "â …â â Šâ ‰â …⠻⠎" }, { "input": "knickers's", "output": "â …â â Šâ ‰â …⠻⠎⠄⠎" }, { "input": "knickknack", "output": "â …â â Šâ ‰â …â …â â â ‰â …" }, { "input": "knickknack's", "output": "â …â â Šâ ‰â …â …â â â ‰â …â „â Ž" }, { "input": "knickknacks", "output": "â …â â Šâ ‰â …â …â â â ‰â …â Ž" }, { "input": "knife", "output": "â …â â Šâ ‹â ‘" }, { "input": "knife's", "output": "â …â â Šâ ‹â ‘â „â Ž" }, { "input": "knifed", "output": "â …â â Šâ ‹â «" }, { "input": "knifes", "output": "â …â â Šâ ‹â ‘â Ž" }, { "input": "knifing", "output": "â …â â Šâ ‹â Œ" }, { "input": "knight", "output": "â …â â Šâ £â ž" }, { "input": "knight's", "output": "â …â â Šâ £â žâ „â Ž" }, { "input": "knighted", "output": "â …â â Šâ £â žâ «" }, { "input": "knighthood", "output": "â …â â Šâ £â žâ “â •â •â ™" }, { "input": "knighthood's", "output": "â …â â Šâ £â žâ “⠕⠕⠙⠄⠎" }, { "input": "knighthoods", "output": "â …â â Šâ £â žâ “⠕⠕⠙⠎" }, { "input": "knighting", "output": "â …â â Šâ £â žâ Œ" }, { "input": "knightliness", "output": "â …â â Šâ £â žâ ‡â Šâ °â Ž" }, { "input": "knightliness's", "output": "â …â â Šâ £â žâ ‡â Šâ °â Žâ „â Ž" }, { "input": "knightly", "output": "â …â â Šâ £â žâ ‡â ½" }, { "input": "knights", "output": "â …â â Šâ £â žâ Ž" }, { "input": "knish", "output": "â …â â Šâ ©" }, { "input": "knish's", "output": "â …â â Šâ ©â „â Ž" }, { "input": "knishes", "output": "â …â â Šâ ©â ‘â Ž" }, { "input": "knit", "output": "â …â â Šâ ž" }, { "input": "knit's", "output": "â …â â Šâ žâ „â Ž" }, { "input": "knits", "output": "â …â â Šâ žâ Ž" }, { "input": "knitted", "output": "â …â â Šâ žâ žâ «" }, { "input": "knitter", "output": "â …â â Šâ žâ žâ »" }, { "input": "knitter's", "output": "â …â â Šâ žâ žâ »â „â Ž" }, { "input": "knitters", "output": "â …â â Šâ žâ žâ »â Ž" }, { "input": "knitting", "output": "â …â â Šâ žâ žâ Œ" }, { "input": "knitting's", "output": "â …â â Šâ žâ žâ Œâ „â Ž" }, { "input": "knitwear", "output": "â …â â Šâ žâ ºâ ‘â œ" }, { "input": "knitwear's", "output": "â …â â Šâ žâ ºâ ‘⠜⠄⠎" }, { "input": "knives", "output": "â …â â Šâ §â ‘â Ž" }, { "input": "knob", "output": "â …â â •â ƒ" }, { "input": "knob's", "output": "â …â â •⠃⠄⠎" }, { "input": "knobbier", "output": "â …â â •⠆⠊⠻" }, { "input": "knobbiest", "output": "â …â â •⠆⠊⠑⠌" }, { "input": "knobby", "output": "â …â â •⠆⠽" }, { "input": "knobs", "output": "â …â â •⠃⠎" }, { "input": "knock", "output": "â …â â •⠉⠅" }, { "input": "knock's", "output": "â …â â •⠉⠅⠄⠎" }, { "input": "knockdown's", "output": "â …â â •⠉⠅⠙⠪â â „â Ž" }, { "input": "knockdowns", "output": "â …â â •⠉⠅⠙⠪â â Ž" }, { "input": "knocked", "output": "â …â â •⠉⠅⠫" }, { "input": "knocker", "output": "â …â â •⠉⠅⠻" }, { "input": "knocker's", "output": "â …â â •⠉⠅⠻⠄⠎" }, { "input": "knockers", "output": "â …â â •⠉⠅⠻⠎" }, { "input": "knocking", "output": "â …â â •⠉⠅⠌" }, { "input": "knockout", "output": "â …â â •⠉⠅⠳⠞" }, { "input": "knockout's", "output": "â …â â •⠉⠅⠳⠞⠄⠎" }, { "input": "knockouts", "output": "â …â â •⠉⠅⠳⠞⠎" }, { "input": "knocks", "output": "â …â â •⠉⠅⠎" }, { "input": "knockwurst", "output": "â …â â •⠉⠅⠺⠥⠗⠌" }, { "input": "knockwurst's", "output": "â …â â •⠉⠅⠺⠥⠗⠌⠄⠎" }, { "input": "knockwursts", "output": "â …â â •⠉⠅⠺⠥⠗⠌⠎" }, { "input": "knoll", "output": "â …â â •⠇⠇" }, { "input": "knoll's", "output": "â …â â •⠇⠇⠄⠎" }, { "input": "knolls", "output": "â …â â •⠇⠇⠎" }, { "input": "knot", "output": "â …â â •â ž" }, { "input": "knot's", "output": "â …â â •â žâ „â Ž" }, { "input": "knothole", "output": "â …â â •⠞⠓⠕⠇⠑" }, { "input": "knothole's", "output": "â …â â •⠞⠓⠕⠇⠑⠄⠎" }, { "input": "knotholes", "output": "â …â â •⠞⠓⠕⠇⠑⠎" }, { "input": "knots", "output": "â …â â •â žâ Ž" }, { "input": "knotted", "output": "â …â â •â žâ žâ «" }, { "input": "knottier", "output": "â …â â •â žâ žâ Šâ »" }, { "input": "knottiest", "output": "â …â â •â žâ žâ Šâ ‘â Œ" }, { "input": "knotting", "output": "â …â â •â žâ žâ Œ" }, { "input": "knotty", "output": "â …â â •â žâ žâ ½" }, { "input": "know", "output": "â â …" }, { "input": "knowable", "output": "â â …â â ¼" }, { "input": "knowing", "output": "â â …â Œ" }, { "input": "knowingly", "output": "â â …⠌⠇⠽" }, { "input": "knowings", "output": "â â …⠌⠎" }, { "input": "knowledge", "output": "â …" }, { "input": "knowledge's", "output": "â â …⠇⠫⠛⠑⠄⠎" }, { "input": "knowledgeable", "output": "â â …⠇⠫⠛⠑â â ¼" }, { "input": "knowledgeably", "output": "â â …⠇⠫⠛⠑â â ƒâ ‡â ½" }, { "input": "known", "output": "â â …â " }, { "input": "knows", "output": "â â …â Ž" }, { "input": "knuckle", "output": "â …â â ¥â ‰â …⠇⠑" }, { "input": "knuckle's", "output": "â …â â ¥â ‰â …⠇⠑⠄⠎" }, { "input": "knuckled", "output": "â …â â ¥â ‰â …⠇⠫" }, { "input": "knucklehead", "output": "â …â â ¥â ‰â …⠇⠑⠓⠂⠙" }, { "input": "knucklehead's", "output": "â …â â ¥â ‰â …⠇⠑⠓⠂⠙⠄⠎" }, { "input": "knuckleheads", "output": "â …â â ¥â ‰â …⠇⠑⠓⠂⠙⠎" }, { "input": "knuckles", "output": "â …â â ¥â ‰â …⠇⠑⠎" }, { "input": "knuckling", "output": "â …â â ¥â ‰â …⠇⠌" }, { "input": "knurl", "output": "â …â â ¥â —â ‡" }, { "input": "knurl's", "output": "â …â â ¥â —⠇⠄⠎" }, { "input": "knurled", "output": "â …â â ¥â —⠇⠫" }, { "input": "knurling", "output": "â …â â ¥â —⠇⠌" }, { "input": "knurls", "output": "â …â â ¥â —⠇⠎" }, { "input": "koala", "output": "â …â •â â ‡â " }, { "input": "koala's", "output": "â …â •â â ‡â â „â Ž" }, { "input": "koalas", "output": "â …â •â â ‡â â Ž" }, { "input": "kohlrabi", "output": "⠅⠕⠓⠇⠗â â ƒâ Š" }, { "input": "kohlrabi's", "output": "⠅⠕⠓⠇⠗â â ƒâ Šâ „â Ž" }, { "input": "kohlrabies", "output": "⠅⠕⠓⠇⠗â â ƒâ Šâ ‘â Ž" }, { "input": "kola", "output": "â …â •â ‡â " }, { "input": "kola's", "output": "â …â •â ‡â â „â Ž" }, { "input": "kolas", "output": "â …â •â ‡â â Ž" }, { "input": "kook", "output": "â …â •â •â …" }, { "input": "kook's", "output": "â …â •â •â …â „â Ž" }, { "input": "kookaburra", "output": "â …â •â •â …â â ƒâ ¥â —â —â " }, { "input": "kookaburra's", "output": "â …â •â •â …â â ƒâ ¥â —â —â â „â Ž" }, { "input": "kookaburras", "output": "â …â •â •â …â â ƒâ ¥â —â —â â Ž" }, { "input": "kookier", "output": "â …â •â •â …â Šâ »" }, { "input": "kookiest", "output": "â …â •â •â …â Šâ ‘â Œ" }, { "input": "kookiness", "output": "â …â •â •â …â Šâ °â Ž" }, { "input": "kookiness's", "output": "â …â •â •â …â Šâ °â Žâ „â Ž" }, { "input": "kooks", "output": "â …â •â •â …â Ž" }, { "input": "kooky", "output": "â …â •â •â …â ½" }, { "input": "kopeck", "output": "â …â •â â ‘⠉⠅" }, { "input": "kopeck's", "output": "â …â •â â ‘⠉⠅⠄⠎" }, { "input": "kopecks", "output": "â …â •â â ‘⠉⠅⠎" }, { "input": "kosher", "output": "â …â •â ©â »" }, { "input": "koshered", "output": "⠅⠕⠩⠻⠫" }, { "input": "koshering", "output": "⠅⠕⠩⠻⠌" }, { "input": "koshers", "output": "⠅⠕⠩⠻⠎" }, { "input": "kowtow", "output": "⠅⠪⠞⠪" }, { "input": "kowtow's", "output": "⠅⠪⠞⠪⠄⠎" }, { "input": "kowtowed", "output": "⠅⠪⠞⠪⠫" }, { "input": "kowtowing", "output": "⠅⠪⠞⠪⠌" }, { "input": "kowtows", "output": "⠅⠪⠞⠪⠎" }, { "input": "kph", "output": "â …â â “" }, { "input": "kraal", "output": "â …â —â â â ‡" }, { "input": "kraal's", "output": "â …â —â â â ‡â „â Ž" }, { "input": "kraals", "output": "â …â —â â â ‡â Ž" }, { "input": "kraut", "output": "â …â —â â ¥â ž" }, { "input": "kraut's", "output": "â …â —â â ¥â žâ „â Ž" }, { "input": "krauts", "output": "â …â —â â ¥â žâ Ž" }, { "input": "krill's", "output": "⠅⠗⠊⠇⠇⠄⠎" }, { "input": "krone", "output": "â …â —â â •" }, { "input": "krone's", "output": "â …â —â â •â „â Ž" }, { "input": "kroner", "output": "â …â —â •â â »" }, { "input": "kronor", "output": "â …â —â •â â •â —" }, { "input": "krypton", "output": "â …â —â ½â â žâ •â " }, { "input": "krypton's", "output": "â …â —â ½â â žâ •â â „â Ž" }, { "input": "ks", "output": "â …â Ž" }, { "input": "kuchen", "output": "⠅⠥⠡⠢" }, { "input": "kuchen's", "output": "⠅⠥⠡⠢⠄⠎" }, { "input": "kuchens", "output": "⠅⠥⠡⠢⠎" }, { "input": "kudos", "output": "⠅⠥⠙⠕⠎" }, { "input": "kudos's", "output": "⠅⠥⠙⠕⠎⠄⠎" }, { "input": "kudzu", "output": "⠅⠥⠙⠵⠥" }, { "input": "kudzu's", "output": "⠅⠥⠙⠵⠥⠄⠎" }, { "input": "kudzus", "output": "⠅⠥⠙⠵⠥⠎" }, { "input": "kumquat", "output": "â …â ¥â â Ÿâ ¥â â ž" }, { "input": "kumquat's", "output": "â …â ¥â â Ÿâ ¥â â žâ „â Ž" }, { "input": "kumquats", "output": "â …â ¥â â Ÿâ ¥â â žâ Ž" }, { "input": "kw", "output": "â …â º" }, { "input": "l", "output": "â °â ‡" }, { "input": "la", "output": "â ‡â " }, { "input": "la's", "output": "â ‡â â „â Ž" }, { "input": "lab", "output": "â ‡â â ƒ" }, { "input": "lab's", "output": "â ‡â â ƒâ „â Ž" }, { "input": "label", "output": "â ‡â â ƒâ ‘â ‡" }, { "input": "label's", "output": "â ‡â â ƒâ ‘⠇⠄⠎" }, { "input": "labeled", "output": "â ‡â â ƒâ ‘⠇⠫" }, { "input": "labeling", "output": "â ‡â â ƒâ ‘⠇⠌" }, { "input": "labels", "output": "â ‡â â ƒâ ‘⠇⠎" }, { "input": "labia", "output": "â ‡â â ƒâ Šâ " }, { "input": "labial", "output": "â ‡â â ƒâ Šâ â ‡" }, { "input": "labial's", "output": "â ‡â â ƒâ Šâ â ‡â „â Ž" }, { "input": "labials", "output": "â ‡â â ƒâ Šâ â ‡â Ž" }, { "input": "labile", "output": "â ‡â â ƒâ Šâ ‡â ‘" }, { "input": "labium", "output": "â ‡â â ƒâ Šâ ¥â " }, { "input": "labium's", "output": "â ‡â â ƒâ Šâ ¥â â „â Ž" }, { "input": "labor", "output": "â ‡â â ƒâ •â —" }, { "input": "labor's", "output": "â ‡â â ƒâ •â —â „â Ž" }, { "input": "laboratories", "output": "â ‡â â ƒâ •â —â â žâ •â —â Šâ ‘â Ž" }, { "input": "laboratory", "output": "â ‡â â ƒâ •â —â â žâ •â —â ½" }, { "input": "laboratory's", "output": "â ‡â â ƒâ •â —â â žâ •⠗⠽⠄⠎" }, { "input": "labored", "output": "â ‡â â ƒâ •â —â «" }, { "input": "laborer", "output": "â ‡â â ƒâ •â —â »" }, { "input": "laborer's", "output": "â ‡â â ƒâ •⠗⠻⠄⠎" }, { "input": "laborers", "output": "â ‡â â ƒâ •⠗⠻⠎" }, { "input": "laboring", "output": "â ‡â â ƒâ •â —â Œ" }, { "input": "laborious", "output": "â ‡â â ƒâ •⠗⠊⠳⠎" }, { "input": "laboriously", "output": "â ‡â â ƒâ •⠗⠊⠳⠎⠇⠽" }, { "input": "laboriousness's", "output": "â ‡â â ƒâ •⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "labors", "output": "â ‡â â ƒâ •â —â Ž" }, { "input": "laborsaving", "output": "â ‡â â ƒâ •â —â Žâ â §â Œ" }, { "input": "labs", "output": "â ‡â â ƒâ Ž" }, { "input": "laburnum", "output": "â ‡â â ƒâ ¥â —â â ¥â " }, { "input": "laburnum's", "output": "â ‡â â ƒâ ¥â —â â ¥â â „â Ž" }, { "input": "laburnums", "output": "â ‡â â ƒâ ¥â —â â ¥â â Ž" }, { "input": "labyrinth", "output": "â ‡â â ƒâ ½â —⠔⠹" }, { "input": "labyrinth's", "output": "â ‡â â ƒâ ½â —⠔⠹⠄⠎" }, { "input": "labyrinthine", "output": "â ‡â â ƒâ ½â —⠔⠹⠔⠑" }, { "input": "labyrinths", "output": "â ‡â â ƒâ ½â —⠔⠹⠎" }, { "input": "lac", "output": "â ‡â â ‰" }, { "input": "lac's", "output": "â ‡â â ‰â „â Ž" }, { "input": "lace", "output": "â ‡â â ‰â ‘" }, { "input": "lace's", "output": "â ‡â â ‰â ‘â „â Ž" }, { "input": "laced", "output": "â ‡â â ‰â «" }, { "input": "lacerate", "output": "â ‡â â ‰â »â â žâ ‘" }, { "input": "lacerated", "output": "â ‡â â ‰â »â â žâ «" }, { "input": "lacerates", "output": "â ‡â â ‰â »â â žâ ‘â Ž" }, { "input": "lacerating", "output": "â ‡â â ‰â »â â žâ Œ" }, { "input": "laceration", "output": "â ‡â â ‰â »â  â " }, { "input": "laceration's", "output": "â ‡â â ‰â »â  â â „â Ž" }, { "input": "lacerations", "output": "â ‡â â ‰â »â  â â Ž" }, { "input": "laces", "output": "â ‡â â ‰â ‘â Ž" }, { "input": "lacewing", "output": "â ‡â â ‰â ‘⠺⠌" }, { "input": "lacewing's", "output": "â ‡â â ‰â ‘⠺⠌⠄⠎" }, { "input": "lacewings", "output": "â ‡â â ‰â ‘⠺⠌⠎" }, { "input": "lacework", "output": "â ‡â â ‰â ‘â â º" }, { "input": "lacework's", "output": "â ‡â â ‰â ‘â â ºâ „â Ž" }, { "input": "lachrymal", "output": "â ‡â â ¡â —â ½â â â ‡" }, { "input": "lachrymose", "output": "â ‡â â ¡â —â ½â â •â Žâ ‘" }, { "input": "lacier", "output": "â ‡â â ‰â Šâ »" }, { "input": "laciest", "output": "â ‡â â ‰â Šâ ‘â Œ" }, { "input": "lacing", "output": "â ‡â â ‰â Œ" }, { "input": "lack", "output": "â ‡â â ‰â …" }, { "input": "lack's", "output": "â ‡â â ‰â …â „â Ž" }, { "input": "lackadaisical", "output": "â ‡â â ‰â …â â ™â â Šâ Žâ Šâ ‰â â ‡" }, { "input": "lackadaisically", "output": "â ‡â â ‰â …â â ™â â Šâ Žâ Šâ ‰â  â ½" }, { "input": "lacked", "output": "â ‡â â ‰â …â «" }, { "input": "lackey", "output": "â ‡â â ‰â …â ‘â ½" }, { "input": "lackey's", "output": "â ‡â â ‰â …⠑⠽⠄⠎" }, { "input": "lackeys", "output": "â ‡â â ‰â …⠑⠽⠎" }, { "input": "lacking", "output": "â ‡â â ‰â …â Œ" }, { "input": "lackluster", "output": "â ‡â â ‰â …⠇⠥⠌⠻" }, { "input": "lacks", "output": "â ‡â â ‰â …â Ž" }, { "input": "laconic", "output": "â ‡â â ‰â •â â Šâ ‰" }, { "input": "laconically", "output": "â ‡â â ‰â •â â Šâ ‰â  â ½" }, { "input": "lacquer", "output": "â ‡â â ‰â Ÿâ ¥â »" }, { "input": "lacquer's", "output": "â ‡â â ‰â Ÿâ ¥â »â „â Ž" }, { "input": "lacquered", "output": "â ‡â â ‰â Ÿâ ¥â »â «" }, { "input": "lacquering", "output": "â ‡â â ‰â Ÿâ ¥â »â Œ" }, { "input": "lacquers", "output": "â ‡â â ‰â Ÿâ ¥â »â Ž" }, { "input": "lacrosse", "output": "â ‡â â ‰â —â •â Žâ Žâ ‘" }, { "input": "lacrosse's", "output": "â ‡â â ‰â —â •â Žâ Žâ ‘â „â Ž" }, { "input": "lactate", "output": "â ‡â â ‰â žâ â žâ ‘" }, { "input": "lactated", "output": "â ‡â â ‰â žâ â žâ «" }, { "input": "lactates", "output": "â ‡â â ‰â žâ â žâ ‘â Ž" }, { "input": "lactating", "output": "â ‡â â ‰â žâ â žâ Œ" }, { "input": "lactation", "output": "â ‡â â ‰â žâ  â " }, { "input": "lactation's", "output": "â ‡â â ‰â žâ  â â „â Ž" }, { "input": "lacteal", "output": "â ‡â â ‰â žâ ‚â ‡" }, { "input": "lactic", "output": "â ‡â â ‰â žâ Šâ ‰" }, { "input": "lactose", "output": "â ‡â â ‰â žâ •â Žâ ‘" }, { "input": "lactose's", "output": "â ‡â â ‰â žâ •â Žâ ‘â „â Ž" }, { "input": "lacuna", "output": "â ‡â â ‰â ¥â â " }, { "input": "lacuna's", "output": "â ‡â â ‰â ¥â â â „â Ž" }, { "input": "lacunae", "output": "â ‡â â ‰â ¥â â â ‘" }, { "input": "lacy", "output": "â ‡â â ‰â ½" }, { "input": "lad", "output": "â ‡â â ™" }, { "input": "lad's", "output": "â ‡â â ™â „â Ž" }, { "input": "ladder", "output": "â ‡â â ²â »" }, { "input": "ladder's", "output": "â ‡â â ²â »â „â Ž" }, { "input": "laddered", "output": "â ‡â â ²â »â «" }, { "input": "laddering", "output": "â ‡â â ²â »â Œ" }, { "input": "ladders", "output": "â ‡â â ²â »â Ž" }, { "input": "laddie", "output": "â ‡â â ²â Šâ ‘" }, { "input": "laddie's", "output": "â ‡â â ²â Šâ ‘â „â Ž" }, { "input": "laddies", "output": "â ‡â â ²â Šâ ‘â Ž" }, { "input": "lade", "output": "â ‡â â ™â ‘" }, { "input": "laded", "output": "â ‡â â ™â «" }, { "input": "laden", "output": "â ‡â â ™â ¢" }, { "input": "lades", "output": "â ‡â â ™â ‘â Ž" }, { "input": "ladies", "output": "â ‡â â ™â Šâ ‘â Ž" }, { "input": "lading", "output": "â ‡â â ™â Œ" }, { "input": "lading's", "output": "â ‡â â ™â Œâ „â Ž" }, { "input": "ladings", "output": "â ‡â â ™â Œâ Ž" }, { "input": "ladle", "output": "â ‡â â ™â ‡â ‘" }, { "input": "ladle's", "output": "â ‡â â ™â ‡â ‘â „â Ž" }, { "input": "ladled", "output": "â ‡â â ™â ‡â «" }, { "input": "ladles", "output": "â ‡â â ™â ‡â ‘â Ž" }, { "input": "ladling", "output": "â ‡â â ™â ‡â Œ" }, { "input": "lads", "output": "â ‡â â ™â Ž" }, { "input": "lady", "output": "â ‡â â ™â ½" }, { "input": "lady's", "output": "â ‡â â ™â ½â „â Ž" }, { "input": "ladybird", "output": "â ‡â â ™â ½â ƒâ Šâ —â ™" }, { "input": "ladybird's", "output": "â ‡â â ™â ½â ƒâ Šâ —⠙⠄⠎" }, { "input": "ladybirds", "output": "â ‡â â ™â ½â ƒâ Šâ —⠙⠎" }, { "input": "ladybug", "output": "â ‡â â ™â ½â ƒâ ¥â ›" }, { "input": "ladybug's", "output": "â ‡â â ™â ½â ƒâ ¥â ›â „â Ž" }, { "input": "ladybugs", "output": "â ‡â â ™â ½â ƒâ ¥â ›â Ž" }, { "input": "ladyfinger", "output": "â ‡â â ™â ½â ‹â Œâ »" }, { "input": "ladyfinger's", "output": "â ‡â â ™â ½â ‹â Œâ »â „â Ž" }, { "input": "ladyfingers", "output": "â ‡â â ™â ½â ‹â Œâ »â Ž" }, { "input": "ladylike", "output": "â ‡â â ™â ½â ‡â Šâ …â ‘" }, { "input": "ladylove", "output": "â ‡â â ™â ½â ‡â •â §â ‘" }, { "input": "ladylove's", "output": "â ‡â â ™â ½â ‡â •â §â ‘â „â Ž" }, { "input": "ladyloves", "output": "â ‡â â ™â ½â ‡â •â §â ‘â Ž" }, { "input": "ladyship", "output": "â ‡â â ™â ½â ©â Šâ " }, { "input": "ladyship's", "output": "â ‡â â ™â ½â ©â Šâ â „â Ž" }, { "input": "laetrile", "output": "â ‡â â ‘⠞⠗⠊⠇⠑" }, { "input": "laetrile's", "output": "â ‡â â ‘⠞⠗⠊⠇⠑⠄⠎" }, { "input": "lag", "output": "â ‡â â ›" }, { "input": "lag's", "output": "â ‡â â ›â „â Ž" }, { "input": "lager", "output": "â ‡â â ›â »" }, { "input": "lager's", "output": "â ‡â â ›â »â „â Ž" }, { "input": "lagers", "output": "â ‡â â ›â »â Ž" }, { "input": "laggard", "output": "â ‡â â ¶â œâ ™" }, { "input": "laggard's", "output": "â ‡â â ¶â œâ ™â „â Ž" }, { "input": "laggardly", "output": "â ‡â â ¶â œâ ™â ‡â ½" }, { "input": "laggards", "output": "â ‡â â ¶â œâ ™â Ž" }, { "input": "lagged", "output": "â ‡â â ¶â «" }, { "input": "lagging", "output": "â ‡â â ¶â Œ" }, { "input": "lagging's", "output": "â ‡â â ¶â Œâ „â Ž" }, { "input": "lagniappe", "output": "â ‡â â ›â â Šâ â â â ‘" }, { "input": "lagniappe's", "output": "â ‡â â ›â â Šâ â â â ‘â „â Ž" }, { "input": "lagniappes", "output": "â ‡â â ›â â Šâ â â â ‘â Ž" }, { "input": "lagoon", "output": "â ‡â â ›â •â •â " }, { "input": "lagoon's", "output": "â ‡â â ›â •â •â â „â Ž" }, { "input": "lagoons", "output": "â ‡â â ›â •â •â â Ž" }, { "input": "lags", "output": "â ‡â â ›â Ž" }, { "input": "laid", "output": "â ‡â â Šâ ™" }, { "input": "lain", "output": "â ‡â â ”" }, { "input": "lair", "output": "â ‡â â Šâ —" }, { "input": "lair's", "output": "â ‡â â Šâ —â „â Ž" }, { "input": "lairs", "output": "â ‡â â Šâ —â Ž" }, { "input": "laity", "output": "â ‡â â °â ½" }, { "input": "laity's", "output": "â ‡â â °â ½â „â Ž" }, { "input": "lake", "output": "â ‡â â …â ‘" }, { "input": "lake's", "output": "â ‡â â …â ‘â „â Ž" }, { "input": "lakefront", "output": "â ‡â â …â ‘â ‹â —â •â â ž" }, { "input": "lakefronts", "output": "â ‡â â …â ‘â ‹â —â •â â žâ Ž" }, { "input": "lakes", "output": "â ‡â â …â ‘â Ž" }, { "input": "lam", "output": "â ‡â â " }, { "input": "lam's", "output": "â ‡â â â „â Ž" }, { "input": "lama", "output": "â ‡â â â " }, { "input": "lama's", "output": "â ‡â â â â „â Ž" }, { "input": "lamas", "output": "â ‡â â â â Ž" }, { "input": "lamaseries", "output": "â ‡â â â â Žâ »â Šâ ‘â Ž" }, { "input": "lamasery", "output": "â ‡â â â â Žâ »â ½" }, { "input": "lamasery's", "output": "â ‡â â â â Žâ »â ½â „â Ž" }, { "input": "lamb", "output": "â ‡â â â ƒ" }, { "input": "lamb's", "output": "â ‡â â â ƒâ „â Ž" }, { "input": "lambaste", "output": "â ‡â â â ƒâ â Œâ ‘" }, { "input": "lambasted", "output": "â ‡â â â ƒâ â Œâ «" }, { "input": "lambastes", "output": "â ‡â â â ƒâ â Œâ ‘â Ž" }, { "input": "lambasting", "output": "â ‡â â â ƒâ â Œâ Œ" }, { "input": "lambda", "output": "â ‡â â â ƒâ ™â " }, { "input": "lambda's", "output": "â ‡â â â ƒâ ™â â „â Ž" }, { "input": "lambdas", "output": "â ‡â â â ƒâ ™â â Ž" }, { "input": "lambed", "output": "â ‡â â â ƒâ «" }, { "input": "lambency", "output": "â ‡â â â ƒâ ¢â ‰â ½" }, { "input": "lambency's", "output": "â ‡â â â ƒâ ¢â ‰â ½â „â Ž" }, { "input": "lambent", "output": "â ‡â â â ƒâ ¢â ž" }, { "input": "lambently", "output": "â ‡â â â ƒâ ¢â žâ ‡â ½" }, { "input": "lambing", "output": "â ‡â â â ƒâ Œ" }, { "input": "lambkin", "output": "â ‡â â â ƒâ …â ”" }, { "input": "lambkin's", "output": "â ‡â â â ƒâ …⠔⠄⠎" }, { "input": "lambkins", "output": "â ‡â â â ƒâ …⠔⠎" }, { "input": "lambs", "output": "â ‡â â â ƒâ Ž" }, { "input": "lambskin", "output": "â ‡â â â ƒâ Žâ …â ”" }, { "input": "lambskin's", "output": "â ‡â â â ƒâ Žâ …⠔⠄⠎" }, { "input": "lambskins", "output": "â ‡â â â ƒâ Žâ …⠔⠎" }, { "input": "lame", "output": "â ‡â â â ‘" }, { "input": "lame's", "output": "â ‡â â â ‘â „â Ž" }, { "input": "lamebrain", "output": "â ‡â â â ‘⠃⠗â â ”" }, { "input": "lamebrain's", "output": "â ‡â â â ‘⠃⠗â â ”â „â Ž" }, { "input": "lamebrains", "output": "â ‡â â â ‘⠃⠗â â ”â Ž" }, { "input": "lamed", "output": "â ‡â â â «" }, { "input": "lamely", "output": "â ‡â â â ‘⠇⠽" }, { "input": "lameness", "output": "â ‡â â â ‘â °â Ž" }, { "input": "lameness's", "output": "â ‡â â â ‘â °â Žâ „â Ž" }, { "input": "lament", "output": "â ‡â â °â ž" }, { "input": "lament's", "output": "â ‡â â °â žâ „â Ž" }, { "input": "lamentable", "output": "â ‡â â °â žâ â ¼" }, { "input": "lamentably", "output": "â ‡â â °â žâ â ƒâ ‡â ½" }, { "input": "lamentation", "output": "â ‡â â °â žâ  â " }, { "input": "lamentation's", "output": "â ‡â â °â žâ  â â „â Ž" }, { "input": "lamentations", "output": "â ‡â â °â žâ  â â Ž" }, { "input": "lamented", "output": "â ‡â â °â žâ «" }, { "input": "lamenting", "output": "â ‡â â °â žâ Œ" }, { "input": "laments", "output": "â ‡â â °â žâ Ž" }, { "input": "lamer", "output": "â ‡â â â »" }, { "input": "lames", "output": "â ‡â â â ‘â Ž" }, { "input": "lamest", "output": "â ‡â â â ‘â Œ" }, { "input": "lamina", "output": "â ‡â â â ”â " }, { "input": "lamina's", "output": "â ‡â â â ”â â „â Ž" }, { "input": "laminae", "output": "â ‡â â â ”â â ‘" }, { "input": "laminar", "output": "â ‡â â â ”â œ" }, { "input": "laminate", "output": "â ‡â â â ”â â žâ ‘" }, { "input": "laminate's", "output": "â ‡â â â ”â â žâ ‘â „â Ž" }, { "input": "laminated", "output": "â ‡â â â ”â â žâ «" }, { "input": "laminates", "output": "â ‡â â â ”â â žâ ‘â Ž" }, { "input": "laminating", "output": "â ‡â â â ”â â žâ Œ" }, { "input": "lamination", "output": "â ‡â â â ”â  â " }, { "input": "lamination's", "output": "â ‡â â â ”â  â â „â Ž" }, { "input": "laming", "output": "â ‡â â â Œ" }, { "input": "lammed", "output": "â ‡â â â â «" }, { "input": "lamming", "output": "â ‡â â â â Œ" }, { "input": "lamp", "output": "â ‡â â â " }, { "input": "lamp's", "output": "â ‡â â â â „â Ž" }, { "input": "lampblack", "output": "â ‡â â â â ƒâ ‡â â ‰â …" }, { "input": "lampblack's", "output": "â ‡â â â â ƒâ ‡â â ‰â …â „â Ž" }, { "input": "lamplight's", "output": "â ‡â â â â ‡â Šâ £â žâ „â Ž" }, { "input": "lamplighter", "output": "â ‡â â â â ‡â Šâ £â žâ »" }, { "input": "lamplighter's", "output": "â ‡â â â â ‡â Šâ £â žâ »â „â Ž" }, { "input": "lamplighters", "output": "â ‡â â â â ‡â Šâ £â žâ »â Ž" }, { "input": "lampoon", "output": "â ‡â â â â •â •â " }, { "input": "lampoon's", "output": "â ‡â â â â •â •â â „â Ž" }, { "input": "lampooned", "output": "â ‡â â â â •â •â â «" }, { "input": "lampooning", "output": "â ‡â â â â •â •â â Œ" }, { "input": "lampoons", "output": "â ‡â â â â •â •â â Ž" }, { "input": "lamppost", "output": "â ‡â â â â â •â Œ" }, { "input": "lamppost's", "output": "â ‡â â â â â •⠌⠄⠎" }, { "input": "lampposts", "output": "â ‡â â â â â •⠌⠎" }, { "input": "lamprey", "output": "â ‡â â â â —â ‘â ½" }, { "input": "lamprey's", "output": "â ‡â â â â —⠑⠽⠄⠎" }, { "input": "lampreys", "output": "â ‡â â â â —⠑⠽⠎" }, { "input": "lamps", "output": "â ‡â â â â Ž" }, { "input": "lampshade", "output": "â ‡â â â â ©â â ™â ‘" }, { "input": "lampshade's", "output": "â ‡â â â â ©â â ™â ‘â „â Ž" }, { "input": "lampshades", "output": "â ‡â â â â ©â â ™â ‘â Ž" }, { "input": "lams", "output": "â ‡â â â Ž" }, { "input": "lanai", "output": "â ‡â â â â Š" }, { "input": "lanai's", "output": "â ‡â â â â Šâ „â Ž" }, { "input": "lanais", "output": "â ‡â â â â Šâ Ž" }, { "input": "lance", "output": "⠇⠨⠑" }, { "input": "lance's", "output": "⠇⠨⠑⠄⠎" }, { "input": "lanced", "output": "⠇⠨⠑⠙" }, { "input": "lancer", "output": "⠇⠨⠑⠗" }, { "input": "lancer's", "output": "⠇⠨⠑⠗⠄⠎" }, { "input": "lancers", "output": "⠇⠨⠑⠗⠎" }, { "input": "lances", "output": "⠇⠨⠑⠎" }, { "input": "lancet", "output": "⠇⠨⠑⠞" }, { "input": "lancet's", "output": "⠇⠨⠑⠞⠄⠎" }, { "input": "lancets", "output": "⠇⠨⠑⠞⠎" }, { "input": "lancing", "output": "â ‡â â â ‰â Œ" }, { "input": "land", "output": "⠇⠯" }, { "input": "land's", "output": "⠇⠯⠄⠎" }, { "input": "landau", "output": "⠇⠯â â ¥" }, { "input": "landau's", "output": "⠇⠯â â ¥â „â Ž" }, { "input": "landaus", "output": "⠇⠯â â ¥â Ž" }, { "input": "landed", "output": "⠇⠯⠫" }, { "input": "lander", "output": "⠇⠯⠻" }, { "input": "landfall", "output": "⠇⠯⠋â â ‡â ‡" }, { "input": "landfall's", "output": "⠇⠯⠋â â ‡â ‡â „â Ž" }, { "input": "landfalls", "output": "⠇⠯⠋â â ‡â ‡â Ž" }, { "input": "landfill", "output": "⠇⠯⠋⠊⠇⠇" }, { "input": "landfill's", "output": "⠇⠯⠋⠊⠇⠇⠄⠎" }, { "input": "landfills", "output": "⠇⠯⠋⠊⠇⠇⠎" }, { "input": "landholder", "output": "⠇⠯⠓⠕⠇⠙⠻" }, { "input": "landholder's", "output": "⠇⠯⠓⠕⠇⠙⠻⠄⠎" }, { "input": "landholders", "output": "⠇⠯⠓⠕⠇⠙⠻⠎" }, { "input": "landholding's", "output": "⠇⠯⠓⠕⠇⠙⠌⠄⠎" }, { "input": "landing", "output": "⠇⠯⠌" }, { "input": "landing's", "output": "⠇⠯⠌⠄⠎" }, { "input": "landings", "output": "⠇⠯⠌⠎" }, { "input": "landladies", "output": "⠇⠯⠇â â ™â Šâ ‘â Ž" }, { "input": "landlady", "output": "⠇⠯⠇â â ™â ½" }, { "input": "landlady's", "output": "⠇⠯⠇â â ™â ½â „â Ž" }, { "input": "landless's", "output": "⠇⠯⠨⠎⠄⠎" }, { "input": "landlocked", "output": "⠇⠯⠇⠕⠉⠅⠫" }, { "input": "landlord", "output": "⠇⠯â â ‡" }, { "input": "landlord's", "output": "⠇⠯â â ‡â „â Ž" }, { "input": "landlords", "output": "⠇⠯â â ‡â Ž" }, { "input": "landlubber", "output": "⠇⠯⠇⠥⠆⠻" }, { "input": "landlubber's", "output": "⠇⠯⠇⠥⠆⠻⠄⠎" }, { "input": "landlubbers", "output": "⠇⠯⠇⠥⠆⠻⠎" }, { "input": "landmark", "output": "⠇⠯â â œâ …" }, { "input": "landmark's", "output": "⠇⠯â â œâ …â „â Ž" }, { "input": "landmarks", "output": "⠇⠯â â œâ …â Ž" }, { "input": "landmass", "output": "⠇⠯â â â Žâ Ž" }, { "input": "landmass's", "output": "⠇⠯â â â Žâ Žâ „â Ž" }, { "input": "landmasses", "output": "⠇⠯â â â Žâ Žâ ‘â Ž" }, { "input": "landowner", "output": "⠇⠯⠪â â »" }, { "input": "landowner's", "output": "⠇⠯⠪â â »â „â Ž" }, { "input": "landowners", "output": "⠇⠯⠪â â »â Ž" }, { "input": "landowning's", "output": "⠇⠯⠪â â Œâ „â Ž" }, { "input": "landownings", "output": "⠇⠯⠪â â Œâ Ž" }, { "input": "lands", "output": "⠇⠯⠎" }, { "input": "landscape", "output": "⠇⠯⠎⠉â â â ‘" }, { "input": "landscape's", "output": "⠇⠯⠎⠉â â â ‘â „â Ž" }, { "input": "landscaped", "output": "⠇⠯⠎⠉â â â «" }, { "input": "landscaper", "output": "⠇⠯⠎⠉â â â »" }, { "input": "landscaper's", "output": "⠇⠯⠎⠉â â â »â „â Ž" }, { "input": "landscapers", "output": "⠇⠯⠎⠉â â â »â Ž" }, { "input": "landscapes", "output": "⠇⠯⠎⠉â â â ‘â Ž" }, { "input": "landscaping", "output": "⠇⠯⠎⠉â â â Œ" }, { "input": "landslid", "output": "⠇⠯⠎⠇⠊⠙" }, { "input": "landslide", "output": "⠇⠯⠎⠇⠊⠙⠑" }, { "input": "landslide's", "output": "⠇⠯⠎⠇⠊⠙⠑⠄⠎" }, { "input": "landslides", "output": "⠇⠯⠎⠇⠊⠙⠑⠎" }, { "input": "landsliding", "output": "⠇⠯⠎⠇⠊⠙⠌" }, { "input": "landsman", "output": "⠇⠯⠎â â â " }, { "input": "landsman's", "output": "⠇⠯⠎â â â â „â Ž" }, { "input": "landsmen", "output": "⠇⠯⠎â â ¢" }, { "input": "landward", "output": "⠇⠯⠺⠜⠙" }, { "input": "landwards", "output": "⠇⠯⠺⠜⠙⠎" }, { "input": "lane", "output": "â ‡â â â ‘" }, { "input": "lane's", "output": "â ‡â â â ‘â „â Ž" }, { "input": "lanes", "output": "â ‡â â â ‘â Ž" }, { "input": "language", "output": "â ‡â â â ›â ¥â â ›â ‘" }, { "input": "language's", "output": "â ‡â â â ›â ¥â â ›â ‘â „â Ž" }, { "input": "languages", "output": "â ‡â â â ›â ¥â â ›â ‘â Ž" }, { "input": "languid", "output": "â ‡â â â ›â ¥â Šâ ™" }, { "input": "languidly", "output": "â ‡â â â ›â ¥â Šâ ™â ‡â ½" }, { "input": "languidness", "output": "â ‡â â â ›â ¥â Šâ ™â °â Ž" }, { "input": "languidness's", "output": "â ‡â â â ›â ¥â Šâ ™â °â Žâ „â Ž" }, { "input": "languish", "output": "â ‡â â â ›â ¥â Šâ ©" }, { "input": "languished", "output": "â ‡â â â ›â ¥â Šâ ©â «" }, { "input": "languishes", "output": "â ‡â â â ›â ¥â Šâ ©â ‘â Ž" }, { "input": "languishing", "output": "â ‡â â â ›â ¥â Šâ ©â Œ" }, { "input": "languor", "output": "â ‡â â â ›â ¥â •â —" }, { "input": "languor's", "output": "â ‡â â â ›â ¥â •â —â „â Ž" }, { "input": "languorous", "output": "â ‡â â â ›â ¥â •⠗⠳⠎" }, { "input": "languorously", "output": "â ‡â â â ›â ¥â •⠗⠳⠎⠇⠽" }, { "input": "languors", "output": "â ‡â â â ›â ¥â •â —â Ž" }, { "input": "lank", "output": "â ‡â â â …" }, { "input": "lanker", "output": "â ‡â â â …â »" }, { "input": "lankest", "output": "â ‡â â â …â ‘â Œ" }, { "input": "lankier", "output": "â ‡â â â …â Šâ »" }, { "input": "lankiest", "output": "â ‡â â â …â Šâ ‘â Œ" }, { "input": "lankiness", "output": "â ‡â â â …â Šâ °â Ž" }, { "input": "lankiness's", "output": "â ‡â â â …â Šâ °â Žâ „â Ž" }, { "input": "lankly", "output": "â ‡â â â …⠇⠽" }, { "input": "lankness", "output": "â ‡â â â …â °â Ž" }, { "input": "lankness's", "output": "â ‡â â â …â °â Žâ „â Ž" }, { "input": "lanky", "output": "â ‡â â â …â ½" }, { "input": "lanolin", "output": "â ‡â â â •⠇⠔" }, { "input": "lanolin's", "output": "â ‡â â â •⠇⠔⠄⠎" }, { "input": "lantern", "output": "â ‡â â â žâ »â " }, { "input": "lantern's", "output": "â ‡â â â žâ »â â „â Ž" }, { "input": "lanterns", "output": "â ‡â â â žâ »â â Ž" }, { "input": "lanthanum", "output": "â ‡â â â ¹â â â ¥â " }, { "input": "lanthanum's", "output": "â ‡â â â ¹â â â ¥â â „â Ž" }, { "input": "lanyard", "output": "â ‡â â â ½â œâ ™" }, { "input": "lanyard's", "output": "â ‡â â â ½â œâ ™â „â Ž" }, { "input": "lanyards", "output": "â ‡â â â ½â œâ ™â Ž" }, { "input": "lap", "output": "â ‡â â " }, { "input": "lap's", "output": "â ‡â â â „â Ž" }, { "input": "lapboard", "output": "â ‡â â â ƒâ •⠜⠙" }, { "input": "lapboard's", "output": "â ‡â â â ƒâ •⠜⠙⠄⠎" }, { "input": "lapboards", "output": "â ‡â â â ƒâ •⠜⠙⠎" }, { "input": "lapel", "output": "â ‡â â â ‘â ‡" }, { "input": "lapel's", "output": "â ‡â â â ‘⠇⠄⠎" }, { "input": "lapels", "output": "â ‡â â â ‘⠇⠎" }, { "input": "lapidaries", "output": "â ‡â â â Šâ ™â œâ Šâ ‘â Ž" }, { "input": "lapidary", "output": "â ‡â â â Šâ ™â œâ ½" }, { "input": "lapidary's", "output": "â ‡â â â Šâ ™â œâ ½â „â Ž" }, { "input": "lapin", "output": "â ‡â â â ”" }, { "input": "lapin's", "output": "â ‡â â â ”â „â Ž" }, { "input": "lapins", "output": "â ‡â â â ”â Ž" }, { "input": "lapped", "output": "â ‡â â â â «" }, { "input": "lappet", "output": "â ‡â â â â ‘â ž" }, { "input": "lappet's", "output": "â ‡â â â â ‘â žâ „â Ž" }, { "input": "lappets", "output": "â ‡â â â â ‘â žâ Ž" }, { "input": "lapping", "output": "â ‡â â â â Œ" }, { "input": "laps", "output": "â ‡â â â Ž" }, { "input": "lapse", "output": "â ‡â â â Žâ ‘" }, { "input": "lapse's", "output": "â ‡â â â Žâ ‘â „â Ž" }, { "input": "lapsed", "output": "â ‡â â â Žâ «" }, { "input": "lapses", "output": "â ‡â â â Žâ ‘â Ž" }, { "input": "lapsing", "output": "â ‡â â â Žâ Œ" }, { "input": "laptop", "output": "â ‡â â â žâ •â " }, { "input": "laptop's", "output": "â ‡â â â žâ •â â „â Ž" }, { "input": "laptops", "output": "â ‡â â â žâ •â â Ž" }, { "input": "lapwing", "output": "â ‡â â â ºâ Œ" }, { "input": "lapwing's", "output": "â ‡â â â ºâ Œâ „â Ž" }, { "input": "lapwings", "output": "â ‡â â â ºâ Œâ Ž" }, { "input": "larboard", "output": "⠇⠜⠃⠕⠜⠙" }, { "input": "larboard's", "output": "⠇⠜⠃⠕⠜⠙⠄⠎" }, { "input": "larboards", "output": "⠇⠜⠃⠕⠜⠙⠎" }, { "input": "larcenies", "output": "⠇⠜⠉⠢⠊⠑⠎" }, { "input": "larcenist", "output": "⠇⠜⠉⠢⠊⠌" }, { "input": "larcenist's", "output": "⠇⠜⠉⠢⠊⠌⠄⠎" }, { "input": "larcenists", "output": "⠇⠜⠉⠢⠊⠌⠎" }, { "input": "larcenous", "output": "⠇⠜⠉⠢⠳⠎" }, { "input": "larceny", "output": "⠇⠜⠉⠢⠽" }, { "input": "larceny's", "output": "⠇⠜⠉⠢⠽⠄⠎" }, { "input": "larch", "output": "⠇⠜⠡" }, { "input": "larch's", "output": "⠇⠜⠡⠄⠎" }, { "input": "larches", "output": "⠇⠜⠡⠑⠎" }, { "input": "lard", "output": "⠇⠜⠙" }, { "input": "lard's", "output": "⠇⠜⠙⠄⠎" }, { "input": "larded", "output": "⠇⠜⠙⠫" }, { "input": "larder", "output": "⠇⠜⠙⠻" }, { "input": "larder's", "output": "⠇⠜⠙⠻⠄⠎" }, { "input": "larders", "output": "⠇⠜⠙⠻⠎" }, { "input": "lardier", "output": "⠇⠜⠙⠊⠻" }, { "input": "lardiest", "output": "⠇⠜⠙⠊⠑⠌" }, { "input": "larding", "output": "⠇⠜⠙⠌" }, { "input": "lards", "output": "⠇⠜⠙⠎" }, { "input": "lardy", "output": "⠇⠜⠙⠽" }, { "input": "large", "output": "⠇⠜⠛⠑" }, { "input": "large's", "output": "⠇⠜⠛⠑⠄⠎" }, { "input": "largehearted", "output": "⠇⠜⠛⠑⠓⠑⠜⠞⠫" }, { "input": "largely", "output": "⠇⠜⠛⠑⠇⠽" }, { "input": "largeness", "output": "⠇⠜⠛⠑⠰⠎" }, { "input": "largeness's", "output": "⠇⠜⠛⠑⠰⠎⠄⠎" }, { "input": "larger", "output": "⠇⠜⠛⠻" }, { "input": "larges", "output": "⠇⠜⠛⠑⠎" }, { "input": "largess", "output": "⠇⠜⠛⠑⠎⠎" }, { "input": "largess's", "output": "⠇⠜⠛⠑⠎⠎⠄⠎" }, { "input": "largest", "output": "⠇⠜⠛⠑⠌" }, { "input": "largo", "output": "⠇⠜⠛⠕" }, { "input": "largo's", "output": "⠇⠜⠛⠕⠄⠎" }, { "input": "largos", "output": "⠇⠜⠛⠕⠎" }, { "input": "lariat", "output": "⠇⠜⠊â â ž" }, { "input": "lariat's", "output": "⠇⠜⠊â â žâ „â Ž" }, { "input": "lariats", "output": "⠇⠜⠊â â žâ Ž" }, { "input": "lark", "output": "⠇⠜⠅" }, { "input": "lark's", "output": "⠇⠜⠅⠄⠎" }, { "input": "larked", "output": "⠇⠜⠅⠫" }, { "input": "larking", "output": "⠇⠜⠅⠌" }, { "input": "larks", "output": "⠇⠜⠅⠎" }, { "input": "larkspur", "output": "⠇⠜⠅⠎â â ¥â —" }, { "input": "larkspur's", "output": "⠇⠜⠅⠎â â ¥â —â „â Ž" }, { "input": "larkspurs", "output": "⠇⠜⠅⠎â â ¥â —â Ž" }, { "input": "larva", "output": "⠇⠜⠧â " }, { "input": "larva's", "output": "⠇⠜⠧â â „â Ž" }, { "input": "larvae", "output": "⠇⠜⠧â â ‘" }, { "input": "larval", "output": "⠇⠜⠧â â ‡" }, { "input": "laryngeal", "output": "⠇⠜⠽â â ›â ‚â ‡" }, { "input": "larynges", "output": "⠇⠜⠽â â ›â ‘â Ž" }, { "input": "laryngitis", "output": "⠇⠜⠽â â ›â Šâ žâ Šâ Ž" }, { "input": "laryngitis's", "output": "⠇⠜⠽â â ›â Šâ žâ Šâ Žâ „â Ž" }, { "input": "larynx", "output": "⠇⠜⠽â â ­" }, { "input": "larynx's", "output": "⠇⠜⠽â â ­â „â Ž" }, { "input": "lasagna", "output": "â ‡â â Žâ â ›â â " }, { "input": "lasagna's", "output": "â ‡â â Žâ â ›â â â „â Ž" }, { "input": "lasagnas", "output": "â ‡â â Žâ â ›â â â Ž" }, { "input": "lascivious", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Ž" }, { "input": "lasciviously", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Žâ ‡â ½" }, { "input": "lasciviousness", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Žâ °â Ž" }, { "input": "lasciviousness's", "output": "â ‡â â Žâ ‰â Šâ §â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "laser", "output": "â ‡â â Žâ »" }, { "input": "laser's", "output": "â ‡â â Žâ »â „â Ž" }, { "input": "lasers", "output": "â ‡â â Žâ »â Ž" }, { "input": "lash", "output": "â ‡â â ©" }, { "input": "lash's", "output": "â ‡â â ©â „â Ž" }, { "input": "lashed", "output": "â ‡â â ©â «" }, { "input": "lashes", "output": "â ‡â â ©â ‘â Ž" }, { "input": "lashing", "output": "â ‡â â ©â Œ" }, { "input": "lass", "output": "â ‡â â Žâ Ž" }, { "input": "lass's", "output": "â ‡â â Žâ Žâ „â Ž" }, { "input": "lasses", "output": "â ‡â â Žâ Žâ ‘â Ž" }, { "input": "lassie", "output": "â ‡â â Žâ Žâ Šâ ‘" }, { "input": "lassie's", "output": "â ‡â â Žâ Žâ Šâ ‘â „â Ž" }, { "input": "lassies", "output": "â ‡â â Žâ Žâ Šâ ‘â Ž" }, { "input": "lassitude", "output": "â ‡â â Žâ Žâ Šâ žâ ¥â ™â ‘" }, { "input": "lassitude's", "output": "â ‡â â Žâ Žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "lasso", "output": "â ‡â â Žâ Žâ •" }, { "input": "lasso's", "output": "â ‡â â Žâ Žâ •â „â Ž" }, { "input": "lassoed", "output": "â ‡â â Žâ Žâ •â «" }, { "input": "lassoing", "output": "â ‡â â Žâ Žâ •â Œ" }, { "input": "lassos", "output": "â ‡â â Žâ Žâ •â Ž" }, { "input": "last", "output": "â ‡â â Œ" }, { "input": "last's", "output": "â ‡â â Œâ „â Ž" }, { "input": "lasted", "output": "â ‡â â Œâ «" }, { "input": "lasting", "output": "â ‡â â Œâ Œ" }, { "input": "lastingly", "output": "â ‡â â Œâ Œâ ‡â ½" }, { "input": "lastly", "output": "â ‡â â Œâ ‡â ½" }, { "input": "lasts", "output": "â ‡â â Œâ Ž" }, { "input": "latch", "output": "â ‡â â žâ ¡" }, { "input": "latch's", "output": "â ‡â â žâ ¡â „â Ž" }, { "input": "latched", "output": "â ‡â â žâ ¡â «" }, { "input": "latches", "output": "â ‡â â žâ ¡â ‘â Ž" }, { "input": "latching", "output": "â ‡â â žâ ¡â Œ" }, { "input": "late", "output": "â ‡â â žâ ‘" }, { "input": "latecomer", "output": "â ‡â â žâ ‘⠉⠕â â »" }, { "input": "latecomer's", "output": "â ‡â â žâ ‘⠉⠕â â »â „â Ž" }, { "input": "latecomers", "output": "â ‡â â žâ ‘⠉⠕â â »â Ž" }, { "input": "lately", "output": "â ‡â â žâ ‘⠇⠽" }, { "input": "latency", "output": "â ‡â â žâ ¢â ‰â ½" }, { "input": "latency's", "output": "â ‡â â žâ ¢â ‰â ½â „â Ž" }, { "input": "lateness", "output": "â ‡â â žâ ‘â °â Ž" }, { "input": "lateness's", "output": "â ‡â â žâ ‘â °â Žâ „â Ž" }, { "input": "latent", "output": "â ‡â â žâ ¢â ž" }, { "input": "later", "output": "â ‡â â žâ »" }, { "input": "lateral", "output": "â ‡â â žâ »â â ‡" }, { "input": "lateral's", "output": "â ‡â â žâ »â â ‡â „â Ž" }, { "input": "lateraled", "output": "â ‡â â žâ »â â ‡â «" }, { "input": "lateraling", "output": "â ‡â â žâ »â â ‡â Œ" }, { "input": "laterally", "output": "â ‡â â žâ »â  â ½" }, { "input": "laterals", "output": "â ‡â â žâ »â â ‡â Ž" }, { "input": "latest", "output": "â ‡â â žâ ‘â Œ" }, { "input": "latest's", "output": "â ‡â â žâ ‘⠌⠄⠎" }, { "input": "latex", "output": "â ‡â â žâ ‘â ­" }, { "input": "latex's", "output": "â ‡â â žâ ‘â ­â „â Ž" }, { "input": "lath", "output": "â ‡â â ¹" }, { "input": "lath's", "output": "â ‡â â ¹â „â Ž" }, { "input": "lathe", "output": "â ‡â â ®" }, { "input": "lathe's", "output": "â ‡â â ®â „â Ž" }, { "input": "lathed", "output": "â ‡â â ®â ™" }, { "input": "lather", "output": "â ‡â â ®â —" }, { "input": "lather's", "output": "â ‡â â ®â —â „â Ž" }, { "input": "lathered", "output": "â ‡â â ®â —â «" }, { "input": "lathering", "output": "â ‡â â ®â —â Œ" }, { "input": "lathers", "output": "â ‡â â ®â —â Ž" }, { "input": "lathes", "output": "â ‡â â ®â Ž" }, { "input": "lathing", "output": "â ‡â â ¹â Œ" }, { "input": "laths", "output": "â ‡â â ¹â Ž" }, { "input": "latices", "output": "â ‡â â žâ Šâ ‰â ‘â Ž" }, { "input": "latish", "output": "â ‡â â žâ Šâ ©" }, { "input": "latitude", "output": "â ‡â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "latitude's", "output": "â ‡â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "latitudes", "output": "â ‡â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "latitudinal", "output": "â ‡â â žâ Šâ žâ ¥â ™â ”â â ‡" }, { "input": "latitudinarian", "output": "â ‡â â žâ Šâ žâ ¥â ™â ”⠜⠊â â " }, { "input": "latitudinarian's", "output": "â ‡â â žâ Šâ žâ ¥â ™â ”⠜⠊â â â „â Ž" }, { "input": "latitudinarians", "output": "â ‡â â žâ Šâ žâ ¥â ™â ”⠜⠊â â â Ž" }, { "input": "latrine", "output": "â ‡â â žâ —⠔⠑" }, { "input": "latrine's", "output": "â ‡â â žâ —⠔⠑⠄⠎" }, { "input": "latrines", "output": "â ‡â â žâ —⠔⠑⠎" }, { "input": "lats", "output": "â ‡â â žâ Ž" }, { "input": "latter", "output": "â ‡â â žâ žâ »" }, { "input": "latter's", "output": "â ‡â â žâ žâ »â „â Ž" }, { "input": "latterly", "output": "â ‡â â žâ žâ »â ‡â ½" }, { "input": "lattice", "output": "â ‡â â žâ žâ Šâ ‰â ‘" }, { "input": "lattice's", "output": "â ‡â â žâ žâ Šâ ‰â ‘â „â Ž" }, { "input": "latticed", "output": "â ‡â â žâ žâ Šâ ‰â «" }, { "input": "lattices", "output": "â ‡â â žâ žâ Šâ ‰â ‘â Ž" }, { "input": "latticework", "output": "â ‡â â žâ žâ Šâ ‰â ‘â â º" }, { "input": "latticework's", "output": "â ‡â â žâ žâ Šâ ‰â ‘â â ºâ „â Ž" }, { "input": "latticeworks", "output": "â ‡â â žâ žâ Šâ ‰â ‘â â ºâ Ž" }, { "input": "laud", "output": "â ‡â â ¥â ™" }, { "input": "laud's", "output": "â ‡â â ¥â ™â „â Ž" }, { "input": "laudable", "output": "â ‡â â ¥â ™â â ¼" }, { "input": "laudably", "output": "â ‡â â ¥â ™â â ƒâ ‡â ½" }, { "input": "laudanum", "output": "â ‡â â ¥â ™â â â ¥â " }, { "input": "laudanum's", "output": "â ‡â â ¥â ™â â â ¥â â „â Ž" }, { "input": "laudatory", "output": "â ‡â â ¥â ™â â žâ •â —â ½" }, { "input": "lauded", "output": "â ‡â â ¥â ™â «" }, { "input": "lauding", "output": "â ‡â â ¥â ™â Œ" }, { "input": "lauds", "output": "â ‡â â ¥â ™â Ž" }, { "input": "laugh", "output": "â ‡â â ¥â £" }, { "input": "laugh's", "output": "â ‡â â ¥â £â „â Ž" }, { "input": "laughable", "output": "â ‡â â ¥â £â â ¼" }, { "input": "laughably", "output": "â ‡â â ¥â £â â ƒâ ‡â ½" }, { "input": "laughed", "output": "â ‡â â ¥â £â «" }, { "input": "laughing", "output": "â ‡â â ¥â £â Œ" }, { "input": "laughing's", "output": "â ‡â â ¥â £â Œâ „â Ž" }, { "input": "laughingly", "output": "â ‡â â ¥â £â Œâ ‡â ½" }, { "input": "laughingstock", "output": "â ‡â â ¥â £â Œâ Œâ •⠉⠅" }, { "input": "laughingstock's", "output": "â ‡â â ¥â £â Œâ Œâ •⠉⠅⠄⠎" }, { "input": "laughingstocks", "output": "â ‡â â ¥â £â Œâ Œâ •⠉⠅⠎" }, { "input": "laughs", "output": "â ‡â â ¥â £â Ž" }, { "input": "laughter", "output": "â ‡â â ¥â £â žâ »" }, { "input": "laughter's", "output": "â ‡â â ¥â £â žâ »â „â Ž" }, { "input": "launch", "output": "â ‡â â ¥â â ¡" }, { "input": "launch's", "output": "â ‡â â ¥â â ¡â „â Ž" }, { "input": "launched", "output": "â ‡â â ¥â â ¡â «" }, { "input": "launcher", "output": "â ‡â â ¥â â ¡â »" }, { "input": "launcher's", "output": "â ‡â â ¥â â ¡â »â „â Ž" }, { "input": "launchers", "output": "â ‡â â ¥â â ¡â »â Ž" }, { "input": "launches", "output": "â ‡â â ¥â â ¡â ‘â Ž" }, { "input": "launching", "output": "â ‡â â ¥â â ¡â Œ" }, { "input": "launchpad", "output": "â ‡â â ¥â â ¡â â â ™" }, { "input": "launchpad's", "output": "â ‡â â ¥â â ¡â â â ™â „â Ž" }, { "input": "launchpads", "output": "â ‡â â ¥â â ¡â â â ™â Ž" }, { "input": "launder", "output": "â ‡â â ¥â â ™â »" }, { "input": "laundered", "output": "â ‡â â ¥â â ™â »â «" }, { "input": "launderer", "output": "â ‡â â ¥â â ™â »â »" }, { "input": "launderer's", "output": "â ‡â â ¥â â ™â »â »â „â Ž" }, { "input": "launderers", "output": "â ‡â â ¥â â ™â »â »â Ž" }, { "input": "laundering", "output": "â ‡â â ¥â â ™â »â Œ" }, { "input": "launders", "output": "â ‡â â ¥â â ™â »â Ž" }, { "input": "laundress", "output": "â ‡â â ¥â â ™â —â ‘â Žâ Ž" }, { "input": "laundress's", "output": "â ‡â â ¥â â ™â —â ‘â Žâ Žâ „â Ž" }, { "input": "laundresses", "output": "â ‡â â ¥â â ™â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "laundries", "output": "â ‡â â ¥â â ™â —â Šâ ‘â Ž" }, { "input": "laundry", "output": "â ‡â â ¥â â ™â —â ½" }, { "input": "laundry's", "output": "â ‡â â ¥â â ™â —⠽⠄⠎" }, { "input": "laundryman", "output": "â ‡â â ¥â â ™â —â ½â â â " }, { "input": "laundryman's", "output": "â ‡â â ¥â â ™â —â ½â â â â „â Ž" }, { "input": "laundrymen", "output": "â ‡â â ¥â â ™â —â ½â â ¢" }, { "input": "laundrywoman", "output": "â ‡â â ¥â â ™â —⠽⠺⠕â â â " }, { "input": "laundrywoman's", "output": "â ‡â â ¥â â ™â —⠽⠺⠕â â â â „â Ž" }, { "input": "laundrywomen", "output": "â ‡â â ¥â â ™â —⠽⠺⠕â â ¢" }, { "input": "laureate", "output": "â ‡â â ¥â —â ‚â žâ ‘" }, { "input": "laureate's", "output": "â ‡â â ¥â —â ‚â žâ ‘â „â Ž" }, { "input": "laureates", "output": "â ‡â â ¥â —â ‚â žâ ‘â Ž" }, { "input": "laureateship", "output": "â ‡â â ¥â —â ‚â žâ ‘â ©â Šâ " }, { "input": "laureateship's", "output": "â ‡â â ¥â —â ‚â žâ ‘â ©â Šâ â „â Ž" }, { "input": "laurel", "output": "â ‡â â ¥â —â ‘â ‡" }, { "input": "laurel's", "output": "â ‡â â ¥â —⠑⠇⠄⠎" }, { "input": "laurels", "output": "â ‡â â ¥â —⠑⠇⠎" }, { "input": "lava", "output": "â ‡â â §â " }, { "input": "lava's", "output": "â ‡â â §â â „â Ž" }, { "input": "lavage", "output": "â ‡â â §â â ›â ‘" }, { "input": "lavage's", "output": "â ‡â â §â â ›â ‘â „â Ž" }, { "input": "lavaliere", "output": "â ‡â â §â â ‡â Šâ »â ‘" }, { "input": "lavaliere's", "output": "â ‡â â §â â ‡â Šâ »â ‘â „â Ž" }, { "input": "lavalieres", "output": "â ‡â â §â â ‡â Šâ »â ‘â Ž" }, { "input": "lavatories", "output": "â ‡â â §â â žâ •â —â Šâ ‘â Ž" }, { "input": "lavatory", "output": "â ‡â â §â â žâ •â —â ½" }, { "input": "lavatory's", "output": "â ‡â â §â â žâ •⠗⠽⠄⠎" }, { "input": "lave", "output": "â ‡â â §â ‘" }, { "input": "laved", "output": "â ‡â â §â «" }, { "input": "lavender", "output": "â ‡â â §â ¢â ™â »" }, { "input": "lavender's", "output": "â ‡â â §â ¢â ™â »â „â Ž" }, { "input": "lavenders", "output": "â ‡â â §â ¢â ™â »â Ž" }, { "input": "laves", "output": "â ‡â â §â ‘â Ž" }, { "input": "laving", "output": "â ‡â â §â Œ" }, { "input": "lavish", "output": "â ‡â â §â Šâ ©" }, { "input": "lavished", "output": "â ‡â â §â Šâ ©â «" }, { "input": "lavisher", "output": "â ‡â â §â Šâ ©â »" }, { "input": "lavishes", "output": "â ‡â â §â Šâ ©â ‘â Ž" }, { "input": "lavishest", "output": "â ‡â â §â Šâ ©â ‘â Œ" }, { "input": "lavishing", "output": "â ‡â â §â Šâ ©â Œ" }, { "input": "lavishly", "output": "â ‡â â §â Šâ ©â ‡â ½" }, { "input": "lavishness", "output": "â ‡â â §â Šâ ©â °â Ž" }, { "input": "lavishness's", "output": "â ‡â â §â Šâ ©â °â Žâ „â Ž" }, { "input": "law", "output": "â ‡â â º" }, { "input": "law's", "output": "â ‡â â ºâ „â Ž" }, { "input": "lawbreaker", "output": "â ‡â â ºâ ƒâ —â ‚â …â »" }, { "input": "lawbreaker's", "output": "â ‡â â ºâ ƒâ —⠂⠅⠻⠄⠎" }, { "input": "lawbreakers", "output": "â ‡â â ºâ ƒâ —⠂⠅⠻⠎" }, { "input": "lawbreaking", "output": "â ‡â â ºâ ƒâ —â ‚â …â Œ" }, { "input": "lawbreaking's", "output": "â ‡â â ºâ ƒâ —⠂⠅⠌⠄⠎" }, { "input": "lawful", "output": "â ‡â â ºâ °â ‡" }, { "input": "lawfully", "output": "â ‡â â ºâ °â ‡â ‡â ½" }, { "input": "lawfulness", "output": "â ‡â â ºâ °â ‡â °â Ž" }, { "input": "lawfulness's", "output": "â ‡â â ºâ °â ‡â °â Žâ „â Ž" }, { "input": "lawgiver", "output": "â ‡â â ºâ ›â Šâ §â »" }, { "input": "lawgiver's", "output": "â ‡â â ºâ ›â Šâ §â »â „â Ž" }, { "input": "lawgivers", "output": "â ‡â â ºâ ›â Šâ §â »â Ž" }, { "input": "lawless", "output": "â ‡â â ºâ ¨â Ž" }, { "input": "lawlessly", "output": "â ‡â â ºâ ¨â Žâ ‡â ½" }, { "input": "lawlessness", "output": "â ‡â â ºâ ¨â Žâ °â Ž" }, { "input": "lawlessness's", "output": "â ‡â â ºâ ¨â Žâ °â Žâ „â Ž" }, { "input": "lawmaker", "output": "â ‡â â ºâ â â …â »" }, { "input": "lawmaker's", "output": "â ‡â â ºâ â â …⠻⠄⠎" }, { "input": "lawmakers", "output": "â ‡â â ºâ â â …⠻⠎" }, { "input": "lawmaking", "output": "â ‡â â ºâ â â …â Œ" }, { "input": "lawmaking's", "output": "â ‡â â ºâ â â …⠌⠄⠎" }, { "input": "lawn", "output": "â ‡â â ºâ " }, { "input": "lawn's", "output": "â ‡â â ºâ â „â Ž" }, { "input": "lawns", "output": "â ‡â â ºâ â Ž" }, { "input": "lawrencium", "output": "â ‡â â ºâ —⠢⠉⠊⠥â " }, { "input": "lawrencium's", "output": "â ‡â â ºâ —⠢⠉⠊⠥â â „â Ž" }, { "input": "laws", "output": "â ‡â â ºâ Ž" }, { "input": "lawsuit", "output": "â ‡â â ºâ Žâ ¥â Šâ ž" }, { "input": "lawsuit's", "output": "â ‡â â ºâ Žâ ¥â Šâ žâ „â Ž" }, { "input": "lawsuits", "output": "â ‡â â ºâ Žâ ¥â Šâ žâ Ž" }, { "input": "lawyer", "output": "â ‡â â ºâ ½â »" }, { "input": "lawyer's", "output": "â ‡â â ºâ ½â »â „â Ž" }, { "input": "lawyers", "output": "â ‡â â ºâ ½â »â Ž" }, { "input": "lax", "output": "â ‡â â ­" }, { "input": "laxative", "output": "â ‡â â ­â â žâ Šâ §â ‘" }, { "input": "laxative's", "output": "â ‡â â ­â â žâ Šâ §â ‘â „â Ž" }, { "input": "laxatives", "output": "â ‡â â ­â â žâ Šâ §â ‘â Ž" }, { "input": "laxer", "output": "â ‡â â ­â »" }, { "input": "laxest", "output": "â ‡â â ­â ‘â Œ" }, { "input": "laxity", "output": "â ‡â â ­â °â ½" }, { "input": "laxity's", "output": "â ‡â â ­â °â ½â „â Ž" }, { "input": "laxly", "output": "â ‡â â ­â ‡â ½" }, { "input": "laxness", "output": "â ‡â â ­â °â Ž" }, { "input": "laxness's", "output": "â ‡â â ­â °â Žâ „â Ž" }, { "input": "lay", "output": "â ‡â â ½" }, { "input": "lay's", "output": "â ‡â â ½â „â Ž" }, { "input": "layaway", "output": "â ‡â â ½â â ºâ â ½" }, { "input": "layaway's", "output": "â ‡â â ½â â ºâ â ½â „â Ž" }, { "input": "layer", "output": "â ‡â â ½â »" }, { "input": "layer's", "output": "â ‡â â ½â »â „â Ž" }, { "input": "layered", "output": "â ‡â â ½â »â «" }, { "input": "layering", "output": "â ‡â â ½â »â Œ" }, { "input": "layering's", "output": "â ‡â â ½â »â Œâ „â Ž" }, { "input": "layers", "output": "â ‡â â ½â »â Ž" }, { "input": "layette", "output": "â ‡â â ½â ‘â žâ žâ ‘" }, { "input": "layette's", "output": "â ‡â â ½â ‘â žâ žâ ‘â „â Ž" }, { "input": "layettes", "output": "â ‡â â ½â ‘â žâ žâ ‘â Ž" }, { "input": "laying", "output": "â ‡â â ½â Œ" }, { "input": "layman", "output": "â ‡â â ½â â â " }, { "input": "layman's", "output": "â ‡â â ½â â â â „â Ž" }, { "input": "laymen", "output": "â ‡â â ½â â ¢" }, { "input": "layoff", "output": "â ‡â â ½â ·â ‹" }, { "input": "layoff's", "output": "â ‡â â ½â ·â ‹â „â Ž" }, { "input": "layoffs", "output": "â ‡â â ½â ·â ‹â Ž" }, { "input": "layout", "output": "â ‡â â ½â ³â ž" }, { "input": "layout's", "output": "â ‡â â ½â ³â žâ „â Ž" }, { "input": "layouts", "output": "â ‡â â ½â ³â žâ Ž" }, { "input": "layover", "output": "â ‡â â ½â •â §â »" }, { "input": "layover's", "output": "â ‡â â ½â •⠧⠻⠄⠎" }, { "input": "layovers", "output": "â ‡â â ½â •⠧⠻⠎" }, { "input": "laypeople", "output": "â ‡â â ½â â ‘â •â â ‡â ‘" }, { "input": "layperson", "output": "â ‡â â ½â â »â Žâ •â " }, { "input": "layperson's", "output": "â ‡â â ½â â »â Žâ •â â „â Ž" }, { "input": "laypersons", "output": "â ‡â â ½â â »â Žâ •â â Ž" }, { "input": "lays", "output": "â ‡â â ½â Ž" }, { "input": "layup", "output": "â ‡â â ½â ¥â " }, { "input": "layup's", "output": "â ‡â â ½â ¥â â „â Ž" }, { "input": "layups", "output": "â ‡â â ½â ¥â â Ž" }, { "input": "laywoman", "output": "â ‡â â ½â ºâ •â â â " }, { "input": "laywoman's", "output": "â ‡â â ½â ºâ •â â â â „â Ž" }, { "input": "laywomen", "output": "â ‡â â ½â ºâ •â â ¢" }, { "input": "laze", "output": "â ‡â â µâ ‘" }, { "input": "laze's", "output": "â ‡â â µâ ‘â „â Ž" }, { "input": "lazed", "output": "â ‡â â µâ «" }, { "input": "lazes", "output": "â ‡â â µâ ‘â Ž" }, { "input": "lazied", "output": "â ‡â â µâ Šâ «" }, { "input": "lazier", "output": "â ‡â â µâ Šâ »" }, { "input": "lazies", "output": "â ‡â â µâ Šâ ‘â Ž" }, { "input": "laziest", "output": "â ‡â â µâ Šâ ‘â Œ" }, { "input": "lazily", "output": "â ‡â â µâ Šâ ‡â ½" }, { "input": "laziness", "output": "â ‡â â µâ Šâ °â Ž" }, { "input": "laziness's", "output": "â ‡â â µâ Šâ °â Žâ „â Ž" }, { "input": "lazing", "output": "â ‡â â µâ Œ" }, { "input": "lazy", "output": "â ‡â â µâ ½" }, { "input": "lazybones", "output": "â ‡â â µâ ½â ƒâ â •â Ž" }, { "input": "lazybones's", "output": "â ‡â â µâ ½â ƒâ â •â Žâ „â Ž" }, { "input": "lazying", "output": "â ‡â â µâ ½â Œ" }, { "input": "lea", "output": "⠇⠑â " }, { "input": "lea's", "output": "⠇⠑â â „â Ž" }, { "input": "leach", "output": "⠇⠂⠡" }, { "input": "leached", "output": "⠇⠂⠡⠫" }, { "input": "leaches", "output": "⠇⠂⠡⠑⠎" }, { "input": "leaching", "output": "⠇⠂⠡⠌" }, { "input": "lead", "output": "⠇⠂⠙" }, { "input": "lead's", "output": "⠇⠂⠙⠄⠎" }, { "input": "leaded", "output": "⠇⠂⠙⠫" }, { "input": "leaden", "output": "⠇⠂⠙⠢" }, { "input": "leader", "output": "⠇⠂⠙⠻" }, { "input": "leader's", "output": "⠇⠂⠙⠻⠄⠎" }, { "input": "leaderless", "output": "⠇⠂⠙⠻⠨⠎" }, { "input": "leaders", "output": "⠇⠂⠙⠻⠎" }, { "input": "leadership", "output": "⠇⠂⠙⠻⠩⠊â " }, { "input": "leadership's", "output": "⠇⠂⠙⠻⠩⠊â â „â Ž" }, { "input": "leading", "output": "⠇⠂⠙⠌" }, { "input": "leading's", "output": "⠇⠂⠙⠌⠄⠎" }, { "input": "leads", "output": "⠇⠂⠙⠎" }, { "input": "leaf", "output": "⠇⠂⠋" }, { "input": "leaf's", "output": "⠇⠂⠋⠄⠎" }, { "input": "leafage", "output": "⠇⠂⠋â â ›â ‘" }, { "input": "leafage's", "output": "⠇⠂⠋â â ›â ‘â „â Ž" }, { "input": "leafed", "output": "⠇⠂⠋⠫" }, { "input": "leafier", "output": "⠇⠂⠋⠊⠻" }, { "input": "leafiest", "output": "⠇⠂⠋⠊⠑⠌" }, { "input": "leafing", "output": "⠇⠂⠋⠌" }, { "input": "leafless", "output": "⠇⠂⠋⠨⠎" }, { "input": "leaflet", "output": "⠇⠂⠋⠇⠑⠞" }, { "input": "leaflet's", "output": "⠇⠂⠋⠇⠑⠞⠄⠎" }, { "input": "leafleted", "output": "⠇⠂⠋⠇⠑⠞⠫" }, { "input": "leafleting", "output": "⠇⠂⠋⠇⠑⠞⠌" }, { "input": "leaflets", "output": "⠇⠂⠋⠇⠑⠞⠎" }, { "input": "leafs", "output": "⠇⠂⠋⠎" }, { "input": "leafstalk", "output": "⠇⠂⠋⠌â â ‡â …" }, { "input": "leafstalk's", "output": "⠇⠂⠋⠌â â ‡â …â „â Ž" }, { "input": "leafstalks", "output": "⠇⠂⠋⠌â â ‡â …â Ž" }, { "input": "leafy", "output": "⠇⠂⠋⠽" }, { "input": "league", "output": "⠇⠂⠛⠥⠑" }, { "input": "league's", "output": "⠇⠂⠛⠥⠑⠄⠎" }, { "input": "leagued", "output": "⠇⠂⠛⠥⠫" }, { "input": "leagues", "output": "⠇⠂⠛⠥⠑⠎" }, { "input": "leaguing", "output": "⠇⠂⠛⠥⠌" }, { "input": "leak", "output": "⠇⠂⠅" }, { "input": "leak's", "output": "⠇⠂⠅⠄⠎" }, { "input": "leakage", "output": "⠇⠂⠅â â ›â ‘" }, { "input": "leakage's", "output": "⠇⠂⠅â â ›â ‘â „â Ž" }, { "input": "leakages", "output": "⠇⠂⠅â â ›â ‘â Ž" }, { "input": "leaked", "output": "⠇⠂⠅⠫" }, { "input": "leakier", "output": "⠇⠂⠅⠊⠻" }, { "input": "leakiest", "output": "⠇⠂⠅⠊⠑⠌" }, { "input": "leakiness", "output": "⠇⠂⠅⠊⠰⠎" }, { "input": "leakiness's", "output": "⠇⠂⠅⠊⠰⠎⠄⠎" }, { "input": "leaking", "output": "⠇⠂⠅⠌" }, { "input": "leaks", "output": "⠇⠂⠅⠎" }, { "input": "leaky", "output": "⠇⠂⠅⠽" }, { "input": "lean", "output": "⠇⠂â " }, { "input": "lean's", "output": "⠇⠂â â „â Ž" }, { "input": "leaned", "output": "⠇⠂â â «" }, { "input": "leaner", "output": "⠇⠂â â »" }, { "input": "leanest", "output": "⠇⠂â â ‘â Œ" }, { "input": "leaning", "output": "⠇⠂â â Œ" }, { "input": "leaning's", "output": "⠇⠂â â Œâ „â Ž" }, { "input": "leanings", "output": "⠇⠂â â Œâ Ž" }, { "input": "leanness", "output": "⠇⠂â â °â Ž" }, { "input": "leanness's", "output": "⠇⠂â â °â Žâ „â Ž" }, { "input": "leans", "output": "⠇⠂â â Ž" }, { "input": "leap", "output": "⠇⠂â " }, { "input": "leap's", "output": "⠇⠂â â „â Ž" }, { "input": "leaped", "output": "⠇⠂â â «" }, { "input": "leaper", "output": "⠇⠂â â »" }, { "input": "leaper's", "output": "⠇⠂â â »â „â Ž" }, { "input": "leapers", "output": "⠇⠂â â »â Ž" }, { "input": "leapfrog", "output": "⠇⠂â â ‹â —â •â ›" }, { "input": "leapfrog's", "output": "⠇⠂â â ‹â —⠕⠛⠄⠎" }, { "input": "leapfrogged", "output": "⠇⠂â â ‹â —â •â ¶â «" }, { "input": "leapfrogging", "output": "⠇⠂â â ‹â —â •â ¶â Œ" }, { "input": "leapfrogs", "output": "⠇⠂â â ‹â —⠕⠛⠎" }, { "input": "leaping", "output": "⠇⠂â â Œ" }, { "input": "leaps", "output": "⠇⠂â â Ž" }, { "input": "learn", "output": "⠇⠑⠜â " }, { "input": "learned", "output": "⠇⠑⠜â â «" }, { "input": "learnedly", "output": "⠇⠑⠜â â «â ‡â ½" }, { "input": "learner", "output": "⠇⠑⠜â â »" }, { "input": "learner's", "output": "⠇⠑⠜â â »â „â Ž" }, { "input": "learners", "output": "⠇⠑⠜â â »â Ž" }, { "input": "learning", "output": "⠇⠑⠜â â Œ" }, { "input": "learning's", "output": "⠇⠑⠜â â Œâ „â Ž" }, { "input": "learns", "output": "⠇⠑⠜â â Ž" }, { "input": "leas", "output": "⠇⠂⠎" }, { "input": "lease", "output": "⠇⠂⠎⠑" }, { "input": "lease's", "output": "⠇⠂⠎⠑⠄⠎" }, { "input": "leased", "output": "⠇⠂⠎⠫" }, { "input": "leasehold", "output": "⠇⠂⠎⠑⠓⠕⠇⠙" }, { "input": "leasehold's", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠄⠎" }, { "input": "leaseholder", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠻" }, { "input": "leaseholder's", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠻⠄⠎" }, { "input": "leaseholders", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠻⠎" }, { "input": "leaseholds", "output": "⠇⠂⠎⠑⠓⠕⠇⠙⠎" }, { "input": "leaser", "output": "⠇⠂⠎⠻" }, { "input": "leaser's", "output": "⠇⠂⠎⠻⠄⠎" }, { "input": "leasers", "output": "⠇⠂⠎⠻⠎" }, { "input": "leases", "output": "⠇⠂⠎⠑⠎" }, { "input": "leash", "output": "⠇⠂⠩" }, { "input": "leash's", "output": "⠇⠂⠩⠄⠎" }, { "input": "leashed", "output": "⠇⠂⠩⠫" }, { "input": "leashes", "output": "⠇⠂⠩⠑⠎" }, { "input": "leashing", "output": "⠇⠂⠩⠌" }, { "input": "leasing", "output": "⠇⠂⠎⠌" }, { "input": "least", "output": "⠇⠂⠌" }, { "input": "least's", "output": "⠇⠂⠌⠄⠎" }, { "input": "leastwise", "output": "⠇⠂⠌⠺⠊⠎⠑" }, { "input": "leather", "output": "⠇⠂⠮⠗" }, { "input": "leather's", "output": "⠇⠂⠮⠗⠄⠎" }, { "input": "leatherette's", "output": "⠇⠂⠮⠗⠑⠞⠞⠑⠄⠎" }, { "input": "leatherneck", "output": "⠇⠂⠮⠗â â ‘⠉⠅" }, { "input": "leatherneck's", "output": "⠇⠂⠮⠗â â ‘⠉⠅⠄⠎" }, { "input": "leathernecks", "output": "⠇⠂⠮⠗â â ‘⠉⠅⠎" }, { "input": "leathers", "output": "⠇⠂⠮⠗⠎" }, { "input": "leathery", "output": "⠇⠂⠮⠗⠽" }, { "input": "leave", "output": "⠇⠂⠧⠑" }, { "input": "leave's", "output": "⠇⠂⠧⠑⠄⠎" }, { "input": "leaved", "output": "⠇⠂⠧⠫" }, { "input": "leaven", "output": "⠇⠂⠧⠢" }, { "input": "leaven's", "output": "⠇⠂⠧⠢⠄⠎" }, { "input": "leavened", "output": "⠇⠂⠧⠢⠫" }, { "input": "leavening", "output": "⠇⠂⠧⠢⠌" }, { "input": "leavening's", "output": "⠇⠂⠧⠢⠌⠄⠎" }, { "input": "leavens", "output": "⠇⠂⠧⠢⠎" }, { "input": "leaves", "output": "⠇⠂⠧⠑⠎" }, { "input": "leaving", "output": "⠇⠂⠧⠌" }, { "input": "leavings", "output": "⠇⠂⠧⠌⠎" }, { "input": "leavings's", "output": "⠇⠂⠧⠌⠎⠄⠎" }, { "input": "lecher", "output": "⠇⠑⠡⠻" }, { "input": "lecher's", "output": "⠇⠑⠡⠻⠄⠎" }, { "input": "lecherous", "output": "⠇⠑⠡⠻⠳⠎" }, { "input": "lecherously", "output": "⠇⠑⠡⠻⠳⠎⠇⠽" }, { "input": "lecherousness", "output": "⠇⠑⠡⠻⠳⠎⠰⠎" }, { "input": "lecherousness's", "output": "⠇⠑⠡⠻⠳⠎⠰⠎⠄⠎" }, { "input": "lechers", "output": "⠇⠑⠡⠻⠎" }, { "input": "lechery", "output": "⠇⠑⠡⠻⠽" }, { "input": "lechery's", "output": "⠇⠑⠡⠻⠽⠄⠎" }, { "input": "lecithin", "output": "⠇⠑⠉⠊⠹⠔" }, { "input": "lecithin's", "output": "⠇⠑⠉⠊⠹⠔⠄⠎" }, { "input": "lectern", "output": "⠇⠑⠉⠞⠻â " }, { "input": "lectern's", "output": "⠇⠑⠉⠞⠻â â „â Ž" }, { "input": "lecterns", "output": "⠇⠑⠉⠞⠻â â Ž" }, { "input": "lecture", "output": "⠇⠑⠉⠞⠥⠗⠑" }, { "input": "lecture's", "output": "⠇⠑⠉⠞⠥⠗⠑⠄⠎" }, { "input": "lectured", "output": "⠇⠑⠉⠞⠥⠗⠫" }, { "input": "lecturer", "output": "⠇⠑⠉⠞⠥⠗⠻" }, { "input": "lecturer's", "output": "⠇⠑⠉⠞⠥⠗⠻⠄⠎" }, { "input": "lecturers", "output": "⠇⠑⠉⠞⠥⠗⠻⠎" }, { "input": "lectures", "output": "⠇⠑⠉⠞⠥⠗⠑⠎" }, { "input": "lecturing", "output": "⠇⠑⠉⠞⠥⠗⠌" }, { "input": "led", "output": "⠇⠫" }, { "input": "ledge", "output": "⠇⠫⠛⠑" }, { "input": "ledge's", "output": "⠇⠫⠛⠑⠄⠎" }, { "input": "ledger", "output": "⠇⠫⠛⠻" }, { "input": "ledger's", "output": "⠇⠫⠛⠻⠄⠎" }, { "input": "ledgers", "output": "⠇⠫⠛⠻⠎" }, { "input": "ledges", "output": "⠇⠫⠛⠑⠎" }, { "input": "lee", "output": "⠇⠑⠑" }, { "input": "lee's", "output": "⠇⠑⠑⠄⠎" }, { "input": "leech", "output": "⠇⠑⠑⠡" }, { "input": "leech's", "output": "⠇⠑⠑⠡⠄⠎" }, { "input": "leeched", "output": "⠇⠑⠑⠡⠫" }, { "input": "leeches", "output": "⠇⠑⠑⠡⠑⠎" }, { "input": "leeching", "output": "⠇⠑⠑⠡⠌" }, { "input": "leek", "output": "⠇⠑⠑⠅" }, { "input": "leek's", "output": "⠇⠑⠑⠅⠄⠎" }, { "input": "leeks", "output": "⠇⠑⠑⠅⠎" }, { "input": "leer", "output": "⠇⠑⠻" }, { "input": "leer's", "output": "⠇⠑⠻⠄⠎" }, { "input": "leered", "output": "⠇⠑⠻⠫" }, { "input": "leerier", "output": "⠇⠑⠻⠊⠻" }, { "input": "leeriest", "output": "⠇⠑⠻⠊⠑⠌" }, { "input": "leeriness", "output": "⠇⠑⠻⠊⠰⠎" }, { "input": "leeriness's", "output": "⠇⠑⠻⠊⠰⠎⠄⠎" }, { "input": "leering", "output": "⠇⠑⠻⠌" }, { "input": "leers", "output": "⠇⠑⠻⠎" }, { "input": "leery", "output": "⠇⠑⠻⠽" }, { "input": "lees", "output": "⠇⠑⠑⠎" }, { "input": "leeward", "output": "⠇⠑⠑⠺⠜⠙" }, { "input": "leeward's", "output": "⠇⠑⠑⠺⠜⠙⠄⠎" }, { "input": "leewards", "output": "⠇⠑⠑⠺⠜⠙⠎" }, { "input": "leeway", "output": "⠇⠑⠑⠺â â ½" }, { "input": "leeway's", "output": "⠇⠑⠑⠺â â ½â „â Ž" }, { "input": "left", "output": "⠇⠑⠋⠞" }, { "input": "left's", "output": "⠇⠑⠋⠞⠄⠎" }, { "input": "lefter", "output": "⠇⠑⠋⠞⠻" }, { "input": "leftest", "output": "⠇⠑⠋⠞⠑⠌" }, { "input": "lefties", "output": "⠇⠑⠋⠞⠊⠑⠎" }, { "input": "leftism", "output": "⠇⠑⠋⠞⠊⠎â " }, { "input": "leftism's", "output": "⠇⠑⠋⠞⠊⠎â â „â Ž" }, { "input": "leftist", "output": "⠇⠑⠋⠞⠊⠌" }, { "input": "leftist's", "output": "⠇⠑⠋⠞⠊⠌⠄⠎" }, { "input": "leftists", "output": "⠇⠑⠋⠞⠊⠌⠎" }, { "input": "leftmost", "output": "⠇⠑⠋⠞â â •â Œ" }, { "input": "leftover", "output": "⠇⠑⠋⠞⠕⠧⠻" }, { "input": "leftover's", "output": "⠇⠑⠋⠞⠕⠧⠻⠄⠎" }, { "input": "leftovers", "output": "⠇⠑⠋⠞⠕⠧⠻⠎" }, { "input": "lefts", "output": "⠇⠑⠋⠞⠎" }, { "input": "leftwards", "output": "⠇⠑⠋⠞⠺⠜⠙⠎" }, { "input": "lefty", "output": "⠇⠑⠋⠞⠽" }, { "input": "lefty's", "output": "⠇⠑⠋⠞⠽⠄⠎" }, { "input": "leg", "output": "⠇⠑⠛" }, { "input": "leg's", "output": "⠇⠑⠛⠄⠎" }, { "input": "legacies", "output": "⠇⠑⠛â â ‰â Šâ ‘â Ž" }, { "input": "legacy", "output": "⠇⠑⠛â â ‰â ½" }, { "input": "legacy's", "output": "⠇⠑⠛â â ‰â ½â „â Ž" }, { "input": "legal", "output": "⠇⠑⠛â â ‡" }, { "input": "legal's", "output": "⠇⠑⠛â â ‡â „â Ž" }, { "input": "legalese", "output": "⠇⠑⠛â â ‡â ‘â Žâ ‘" }, { "input": "legalese's", "output": "⠇⠑⠛â â ‡â ‘â Žâ ‘â „â Ž" }, { "input": "legalism", "output": "⠇⠑⠛â â ‡â Šâ Žâ " }, { "input": "legalism's", "output": "⠇⠑⠛â â ‡â Šâ Žâ â „â Ž" }, { "input": "legalisms", "output": "⠇⠑⠛â â ‡â Šâ Žâ â Ž" }, { "input": "legalistic", "output": "⠇⠑⠛â â ‡â Šâ Œâ Šâ ‰" }, { "input": "legality", "output": "⠇⠑⠛â â ‡â °â ½" }, { "input": "legality's", "output": "⠇⠑⠛â â ‡â °â ½â „â Ž" }, { "input": "legalization", "output": "⠇⠑⠛â â ‡â Šâ µâ  â " }, { "input": "legalization's", "output": "⠇⠑⠛â â ‡â Šâ µâ  â â „â Ž" }, { "input": "legalize", "output": "⠇⠑⠛â â ‡â Šâ µâ ‘" }, { "input": "legalized", "output": "⠇⠑⠛â â ‡â Šâ µâ «" }, { "input": "legalizes", "output": "⠇⠑⠛â â ‡â Šâ µâ ‘â Ž" }, { "input": "legalizing", "output": "⠇⠑⠛â â ‡â Šâ µâ Œ" }, { "input": "legally", "output": "⠇⠑⠛⠠⠽" }, { "input": "legals", "output": "⠇⠑⠛â â ‡â Ž" }, { "input": "legate", "output": "⠇⠑⠛â â žâ ‘" }, { "input": "legate's", "output": "⠇⠑⠛â â žâ ‘â „â Ž" }, { "input": "legatee", "output": "⠇⠑⠛â â žâ ‘â ‘" }, { "input": "legatee's", "output": "⠇⠑⠛â â žâ ‘â ‘â „â Ž" }, { "input": "legatees", "output": "⠇⠑⠛â â žâ ‘â ‘â Ž" }, { "input": "legates", "output": "⠇⠑⠛â â žâ ‘â Ž" }, { "input": "legation", "output": "⠇⠑⠛⠠â " }, { "input": "legation's", "output": "⠇⠑⠛⠠â â „â Ž" }, { "input": "legations", "output": "⠇⠑⠛⠠â â Ž" }, { "input": "legato", "output": "⠇⠑⠛â â žâ •" }, { "input": "legato's", "output": "⠇⠑⠛â â žâ •â „â Ž" }, { "input": "legatos", "output": "⠇⠑⠛â â žâ •â Ž" }, { "input": "legend", "output": "⠇⠑⠛⠢⠙" }, { "input": "legend's", "output": "⠇⠑⠛⠢⠙⠄⠎" }, { "input": "legendarily", "output": "⠇⠑⠛⠢⠙⠜⠊⠇⠽" }, { "input": "legendary", "output": "⠇⠑⠛⠢⠙⠜⠽" }, { "input": "legends", "output": "⠇⠑⠛⠢⠙⠎" }, { "input": "legerdemain", "output": "⠇⠑⠛⠻⠙⠑â â â ”" }, { "input": "legerdemain's", "output": "⠇⠑⠛⠻⠙⠑â â â ”â „â Ž" }, { "input": "legged", "output": "⠇⠑⠶⠫" }, { "input": "leggier", "output": "⠇⠑⠶⠊⠻" }, { "input": "leggiest", "output": "⠇⠑⠶⠊⠑⠌" }, { "input": "legginess", "output": "⠇⠑⠶⠊⠰⠎" }, { "input": "legginess's", "output": "⠇⠑⠶⠊⠰⠎⠄⠎" }, { "input": "legging", "output": "⠇⠑⠶⠌" }, { "input": "legging's", "output": "⠇⠑⠶⠌⠄⠎" }, { "input": "leggings", "output": "⠇⠑⠶⠌⠎" }, { "input": "leggy", "output": "⠇⠑⠶⠽" }, { "input": "leghorn", "output": "⠇⠑⠛⠓⠕⠗â " }, { "input": "leghorn's", "output": "⠇⠑⠛⠓⠕⠗â â „â Ž" }, { "input": "leghorns", "output": "⠇⠑⠛⠓⠕⠗â â Ž" }, { "input": "legibility", "output": "⠇⠑⠛⠊⠃⠊⠇⠰⠽" }, { "input": "legibility's", "output": "⠇⠑⠛⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "legible", "output": "⠇⠑⠛⠊⠼" }, { "input": "legibly", "output": "⠇⠑⠛⠊⠃⠇⠽" }, { "input": "legion", "output": "⠇⠑⠛⠊⠕â " }, { "input": "legion's", "output": "⠇⠑⠛⠊⠕â â „â Ž" }, { "input": "legionnaire", "output": "⠇⠑⠛⠊⠕â â â â Šâ —â ‘" }, { "input": "legionnaire's", "output": "⠇⠑⠛⠊⠕â â â â Šâ —â ‘â „â Ž" }, { "input": "legionnaires", "output": "⠇⠑⠛⠊⠕â â â â Šâ —â ‘â Ž" }, { "input": "legions", "output": "⠇⠑⠛⠊⠕â â Ž" }, { "input": "legislate", "output": "⠇⠑⠛⠊⠎⠇â â žâ ‘" }, { "input": "legislated", "output": "⠇⠑⠛⠊⠎⠇â â žâ «" }, { "input": "legislates", "output": "⠇⠑⠛⠊⠎⠇â â žâ ‘â Ž" }, { "input": "legislating", "output": "⠇⠑⠛⠊⠎⠇â â žâ Œ" }, { "input": "legislation", "output": "⠇⠑⠛⠊⠎⠇⠠â " }, { "input": "legislation's", "output": "⠇⠑⠛⠊⠎⠇⠠â â „â Ž" }, { "input": "legislative", "output": "⠇⠑⠛⠊⠎⠇â â žâ Šâ §â ‘" }, { "input": "legislatively", "output": "⠇⠑⠛⠊⠎⠇â â žâ Šâ §â ‘⠇⠽" }, { "input": "legislator", "output": "⠇⠑⠛⠊⠎⠇â â žâ •â —" }, { "input": "legislator's", "output": "⠇⠑⠛⠊⠎⠇â â žâ •â —â „â Ž" }, { "input": "legislators", "output": "⠇⠑⠛⠊⠎⠇â â žâ •â —â Ž" }, { "input": "legislature", "output": "⠇⠑⠛⠊⠎⠇â â žâ ¥â —â ‘" }, { "input": "legislature's", "output": "⠇⠑⠛⠊⠎⠇â â žâ ¥â —â ‘â „â Ž" }, { "input": "legislatures", "output": "⠇⠑⠛⠊⠎⠇â â žâ ¥â —â ‘â Ž" }, { "input": "legit", "output": "⠇⠑⠛⠊⠞" }, { "input": "legitimacy", "output": "⠇⠑⠛⠊⠞⠊â â â ‰â ½" }, { "input": "legitimacy's", "output": "⠇⠑⠛⠊⠞⠊â â â ‰â ½â „â Ž" }, { "input": "legitimate", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ‘" }, { "input": "legitimated", "output": "⠇⠑⠛⠊⠞⠊â â â žâ «" }, { "input": "legitimately", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ‘⠇⠽" }, { "input": "legitimates", "output": "⠇⠑⠛⠊⠞⠊â â â žâ ‘â Ž" }, { "input": "legitimating", "output": "⠇⠑⠛⠊⠞⠊â â â žâ Œ" }, { "input": "legitimatize", "output": "⠇⠑⠛⠊⠞⠊â â â žâ Šâ µâ ‘" }, { "input": "legitimatized", "output": "⠇⠑⠛⠊⠞⠊â â â žâ Šâ µâ «" }, { "input": "legitimatizes", "output": "⠇⠑⠛⠊⠞⠊â â â žâ Šâ µâ ‘â Ž" }, { "input": "legitimatizing", "output": "⠇⠑⠛⠊⠞⠊â â â žâ Šâ µâ Œ" }, { "input": "legitimization", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ  â " }, { "input": "legitimization's", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ  â â „â Ž" }, { "input": "legitimize", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ ‘" }, { "input": "legitimized", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ «" }, { "input": "legitimizes", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ ‘â Ž" }, { "input": "legitimizing", "output": "⠇⠑⠛⠊⠞⠊â â Šâ µâ Œ" }, { "input": "legless", "output": "⠇⠑⠛⠨⠎" }, { "input": "legman", "output": "⠇⠑⠛â â â " }, { "input": "legman's", "output": "⠇⠑⠛â â â â „â Ž" }, { "input": "legmen", "output": "⠇⠑⠛â â ¢" }, { "input": "legroom", "output": "⠇⠑⠛⠗⠕⠕â " }, { "input": "legroom's", "output": "⠇⠑⠛⠗⠕⠕â â „â Ž" }, { "input": "legrooms", "output": "⠇⠑⠛⠗⠕⠕â â Ž" }, { "input": "legs", "output": "⠇⠑⠛⠎" }, { "input": "legume", "output": "⠇⠑⠛⠥â â ‘" }, { "input": "legume's", "output": "⠇⠑⠛⠥â â ‘â „â Ž" }, { "input": "legumes", "output": "⠇⠑⠛⠥â â ‘â Ž" }, { "input": "leguminous", "output": "⠇⠑⠛⠥â â ”⠳⠎" }, { "input": "legwork", "output": "⠇⠑⠛â â º" }, { "input": "legwork's", "output": "⠇⠑⠛â â ºâ „â Ž" }, { "input": "lei", "output": "⠇⠑⠊" }, { "input": "lei's", "output": "⠇⠑⠊⠄⠎" }, { "input": "leis", "output": "⠇⠑⠊⠎" }, { "input": "leisure", "output": "⠇⠑⠊⠎⠥⠗⠑" }, { "input": "leisure's", "output": "⠇⠑⠊⠎⠥⠗⠑⠄⠎" }, { "input": "leisureliness", "output": "⠇⠑⠊⠎⠥⠗⠑⠇⠊⠰⠎" }, { "input": "leisureliness's", "output": "⠇⠑⠊⠎⠥⠗⠑⠇⠊⠰⠎⠄⠎" }, { "input": "leisurely", "output": "⠇⠑⠊⠎⠥⠗⠑⠇⠽" }, { "input": "leisurewear's", "output": "⠇⠑⠊⠎⠥⠗⠑⠺⠑⠜⠄⠎" }, { "input": "leitmotif", "output": "⠇⠑⠊⠞â â •â žâ Šâ ‹" }, { "input": "leitmotif's", "output": "⠇⠑⠊⠞â â •â žâ Šâ ‹â „â Ž" }, { "input": "leitmotifs", "output": "⠇⠑⠊⠞â â •â žâ Šâ ‹â Ž" }, { "input": "lemma", "output": "⠇⠑â â â " }, { "input": "lemmas", "output": "⠇⠑â â â â Ž" }, { "input": "lemme", "output": "⠇⠑â â â ‘" }, { "input": "lemming", "output": "⠇⠑â â â Œ" }, { "input": "lemming's", "output": "⠇⠑â â â Œâ „â Ž" }, { "input": "lemmings", "output": "⠇⠑â â â Œâ Ž" }, { "input": "lemon", "output": "⠇⠑â â •â " }, { "input": "lemon's", "output": "⠇⠑â â •â â „â Ž" }, { "input": "lemonade", "output": "⠇⠑â â •â â â ™â ‘" }, { "input": "lemonade's", "output": "⠇⠑â â •â â â ™â ‘â „â Ž" }, { "input": "lemons", "output": "⠇⠑â â •â â Ž" }, { "input": "lemony", "output": "⠇⠑â â •â â ½" }, { "input": "lemur", "output": "⠇⠑â â ¥â —" }, { "input": "lemur's", "output": "⠇⠑â â ¥â —â „â Ž" }, { "input": "lemurs", "output": "⠇⠑â â ¥â —â Ž" }, { "input": "lend", "output": "⠇⠢⠙" }, { "input": "lender", "output": "⠇⠢⠙⠻" }, { "input": "lender's", "output": "⠇⠢⠙⠻⠄⠎" }, { "input": "lenders", "output": "⠇⠢⠙⠻⠎" }, { "input": "lending", "output": "⠇⠢⠙⠌" }, { "input": "lends", "output": "⠇⠢⠙⠎" }, { "input": "length", "output": "⠇⠢⠛⠹" }, { "input": "length's", "output": "⠇⠢⠛⠹⠄⠎" }, { "input": "lengthen", "output": "⠇⠢⠛⠮â " }, { "input": "lengthened", "output": "⠇⠢⠛⠮â â «" }, { "input": "lengthening", "output": "⠇⠢⠛⠮â â Œ" }, { "input": "lengthens", "output": "⠇⠢⠛⠮â â Ž" }, { "input": "lengthier", "output": "⠇⠢⠛⠹⠊⠻" }, { "input": "lengthiest", "output": "⠇⠢⠛⠹⠊⠑⠌" }, { "input": "lengthily", "output": "⠇⠢⠛⠹⠊⠇⠽" }, { "input": "lengthiness", "output": "⠇⠢⠛⠹⠊⠰⠎" }, { "input": "lengthiness's", "output": "⠇⠢⠛⠹⠊⠰⠎⠄⠎" }, { "input": "lengths", "output": "⠇⠢⠛⠹⠎" }, { "input": "lengthwise", "output": "⠇⠢⠛⠹⠺⠊⠎⠑" }, { "input": "lengthy", "output": "⠇⠢⠛⠹⠽" }, { "input": "lenience", "output": "⠇⠢⠊⠰⠑" }, { "input": "lenience's", "output": "⠇⠢⠊⠰⠑⠄⠎" }, { "input": "leniency", "output": "⠇⠢⠊⠢⠉⠽" }, { "input": "leniency's", "output": "⠇⠢⠊⠢⠉⠽⠄⠎" }, { "input": "lenient", "output": "⠇⠢⠊⠢⠞" }, { "input": "leniently", "output": "⠇⠢⠊⠢⠞⠇⠽" }, { "input": "lenitive", "output": "⠇⠢⠊⠞⠊⠧⠑" }, { "input": "lens", "output": "⠇⠢⠎" }, { "input": "lens's", "output": "⠇⠢⠎⠄⠎" }, { "input": "lenses", "output": "⠇⠢⠎⠑⠎" }, { "input": "lent", "output": "⠇⠢⠞" }, { "input": "lentil", "output": "⠇⠢⠞⠊⠇" }, { "input": "lentil's", "output": "⠇⠢⠞⠊⠇⠄⠎" }, { "input": "lentils", "output": "⠇⠢⠞⠊⠇⠎" }, { "input": "lento", "output": "⠇⠢⠞⠕" }, { "input": "leonine", "output": "⠇⠑⠕â â ”â ‘" }, { "input": "leopard", "output": "⠇⠑⠕â â œâ ™" }, { "input": "leopard's", "output": "⠇⠑⠕â â œâ ™â „â Ž" }, { "input": "leopardess", "output": "⠇⠑⠕â â œâ ™â ‘â Žâ Ž" }, { "input": "leopardess's", "output": "⠇⠑⠕â â œâ ™â ‘â Žâ Žâ „â Ž" }, { "input": "leopardesses", "output": "⠇⠑⠕â â œâ ™â ‘â Žâ Žâ ‘â Ž" }, { "input": "leopards", "output": "⠇⠑⠕â â œâ ™â Ž" }, { "input": "leotard", "output": "⠇⠑⠕⠞⠜⠙" }, { "input": "leotard's", "output": "⠇⠑⠕⠞⠜⠙⠄⠎" }, { "input": "leotards", "output": "⠇⠑⠕⠞⠜⠙⠎" }, { "input": "leper", "output": "⠇⠑â â »" }, { "input": "leper's", "output": "⠇⠑â â »â „â Ž" }, { "input": "lepers", "output": "⠇⠑â â »â Ž" }, { "input": "leprechaun", "output": "⠇⠑â â —â ‘â ¡â â ¥â " }, { "input": "leprechaun's", "output": "⠇⠑â â —â ‘â ¡â â ¥â â „â Ž" }, { "input": "leprechauns", "output": "⠇⠑â â —â ‘â ¡â â ¥â â Ž" }, { "input": "leprosy", "output": "⠇⠑â â —â •â Žâ ½" }, { "input": "leprosy's", "output": "⠇⠑â â —⠕⠎⠽⠄⠎" }, { "input": "leprous", "output": "⠇⠑â â —⠳⠎" }, { "input": "lepta", "output": "⠇⠑â â žâ " }, { "input": "lepton", "output": "⠇⠑â â žâ •â " }, { "input": "lepton's", "output": "⠇⠑â â žâ •â â „â Ž" }, { "input": "leptons", "output": "⠇⠑â â žâ •â â Ž" }, { "input": "lesbian", "output": "⠇⠑⠎⠃⠊â â " }, { "input": "lesbian's", "output": "⠇⠑⠎⠃⠊â â â „â Ž" }, { "input": "lesbianism", "output": "⠇⠑⠎⠃⠊â â â Šâ Žâ " }, { "input": "lesbianism's", "output": "⠇⠑⠎⠃⠊â â â Šâ Žâ â „â Ž" }, { "input": "lesbians", "output": "⠇⠑⠎⠃⠊â â â Ž" }, { "input": "lesion", "output": "⠇⠑⠨â " }, { "input": "lesion's", "output": "⠇⠑⠨â â „â Ž" }, { "input": "lesions", "output": "⠇⠑⠨â â Ž" }, { "input": "less", "output": "⠇⠑⠎⠎" }, { "input": "less's", "output": "⠇⠑⠎⠎⠄⠎" }, { "input": "lessee", "output": "⠇⠑⠎⠎⠑⠑" }, { "input": "lessee's", "output": "⠇⠑⠎⠎⠑⠑⠄⠎" }, { "input": "lessees", "output": "⠇⠑⠎⠎⠑⠑⠎" }, { "input": "lessen", "output": "⠇⠑⠎⠎⠢" }, { "input": "lessened", "output": "⠇⠑⠎⠎⠢⠫" }, { "input": "lessening", "output": "⠇⠑⠎⠎⠢⠌" }, { "input": "lessens", "output": "⠇⠑⠎⠎⠢⠎" }, { "input": "lesser", "output": "⠇⠑⠎⠎⠻" }, { "input": "lesson", "output": "⠇⠑⠎⠎⠕â " }, { "input": "lesson's", "output": "⠇⠑⠎⠎⠕â â „â Ž" }, { "input": "lessons", "output": "⠇⠑⠎⠎⠕â â Ž" }, { "input": "lessor", "output": "⠇⠑⠎⠎⠕⠗" }, { "input": "lessor's", "output": "⠇⠑⠎⠎⠕⠗⠄⠎" }, { "input": "lessors", "output": "⠇⠑⠎⠎⠕⠗⠎" }, { "input": "lest", "output": "⠇⠑⠌" }, { "input": "let", "output": "⠇⠑⠞" }, { "input": "let's", "output": "⠇⠑⠞⠄⠎" }, { "input": "letdown", "output": "⠇⠑⠞⠙⠪â " }, { "input": "letdown's", "output": "⠇⠑⠞⠙⠪â â „â Ž" }, { "input": "letdowns", "output": "⠇⠑⠞⠙⠪â â Ž" }, { "input": "lethal", "output": "⠇⠑⠹â â ‡" }, { "input": "lethally", "output": "⠇⠑⠹⠠⠽" }, { "input": "lethargic", "output": "⠇⠑⠹⠜⠛⠊⠉" }, { "input": "lethargically", "output": "⠇⠑⠹⠜⠛⠊⠉⠠⠽" }, { "input": "lethargy", "output": "⠇⠑⠹⠜⠛⠽" }, { "input": "lethargy's", "output": "⠇⠑⠹⠜⠛⠽⠄⠎" }, { "input": "lets", "output": "⠇⠑⠞⠎" }, { "input": "letter", "output": "⠇⠗" }, { "input": "letter's", "output": "⠇⠗⠄⠎" }, { "input": "letterbox", "output": "⠇⠗⠃⠕⠭" }, { "input": "lettered", "output": "⠇⠗⠫" }, { "input": "letterer", "output": "⠇⠗⠻" }, { "input": "letterer's", "output": "⠇⠗⠻⠄⠎" }, { "input": "letterers", "output": "⠇⠗⠻⠎" }, { "input": "letterhead", "output": "⠇⠗⠓⠂⠙" }, { "input": "letterhead's", "output": "⠇⠗⠓⠂⠙⠄⠎" }, { "input": "letterheads", "output": "⠇⠗⠓⠂⠙⠎" }, { "input": "lettering", "output": "⠇⠗⠌" }, { "input": "lettering's", "output": "⠇⠗⠌⠄⠎" }, { "input": "letterpress", "output": "⠇⠗â â —â ‘â Žâ Ž" }, { "input": "letterpress's", "output": "⠇⠗â â —â ‘â Žâ Žâ „â Ž" }, { "input": "letters", "output": "⠇⠗⠎" }, { "input": "letting", "output": "⠇⠑⠞⠞⠌" }, { "input": "lettuce", "output": "⠇⠑⠞⠞⠥⠉⠑" }, { "input": "lettuce's", "output": "⠇⠑⠞⠞⠥⠉⠑⠄⠎" }, { "input": "lettuces", "output": "⠇⠑⠞⠞⠥⠉⠑⠎" }, { "input": "letup", "output": "⠇⠑⠞⠥â " }, { "input": "letup's", "output": "⠇⠑⠞⠥â â „â Ž" }, { "input": "letups", "output": "⠇⠑⠞⠥â â Ž" }, { "input": "leukemia", "output": "⠇⠑⠥⠅⠑â â Šâ " }, { "input": "leukemia's", "output": "⠇⠑⠥⠅⠑â â Šâ â „â Ž" }, { "input": "leukemic", "output": "⠇⠑⠥⠅⠑â â Šâ ‰" }, { "input": "leukemic's", "output": "⠇⠑⠥⠅⠑â â Šâ ‰â „â Ž" }, { "input": "leukemics", "output": "⠇⠑⠥⠅⠑â â Šâ ‰â Ž" }, { "input": "leukocyte", "output": "⠇⠑⠥⠅⠕⠉⠽⠞⠑" }, { "input": "leukocyte's", "output": "⠇⠑⠥⠅⠕⠉⠽⠞⠑⠄⠎" }, { "input": "leukocytes", "output": "⠇⠑⠥⠅⠕⠉⠽⠞⠑⠎" }, { "input": "levee", "output": "⠇⠑⠧⠑⠑" }, { "input": "levee's", "output": "⠇⠑⠧⠑⠑⠄⠎" }, { "input": "levees", "output": "⠇⠑⠧⠑⠑⠎" }, { "input": "level", "output": "⠇⠑⠧⠑⠇" }, { "input": "level's", "output": "⠇⠑⠧⠑⠇⠄⠎" }, { "input": "leveled", "output": "⠇⠑⠧⠑⠇⠫" }, { "input": "leveler", "output": "⠇⠑⠧⠑⠇⠻" }, { "input": "leveler's", "output": "⠇⠑⠧⠑⠇⠻⠄⠎" }, { "input": "levelers", "output": "⠇⠑⠧⠑⠇⠻⠎" }, { "input": "levelheaded", "output": "⠇⠑⠧⠑⠇⠓⠂⠙⠫" }, { "input": "levelheadedness", "output": "⠇⠑⠧⠑⠇⠓⠂⠙⠫⠰⠎" }, { "input": "levelheadedness's", "output": "⠇⠑⠧⠑⠇⠓⠂⠙⠫⠰⠎⠄⠎" }, { "input": "leveling", "output": "⠇⠑⠧⠑⠇⠌" }, { "input": "levelly", "output": "⠇⠑⠧⠑⠇⠇⠽" }, { "input": "levelness", "output": "⠇⠑⠧⠑⠇⠰⠎" }, { "input": "levelness's", "output": "⠇⠑⠧⠑⠇⠰⠎⠄⠎" }, { "input": "levels", "output": "⠇⠑⠧⠑⠇⠎" }, { "input": "lever", "output": "â ‡â â ‘" }, { "input": "lever's", "output": "â ‡â â ‘â „â Ž" }, { "input": "leverage", "output": "â ‡â â ‘â â ›â ‘" }, { "input": "leverage's", "output": "â ‡â â ‘â â ›â ‘â „â Ž" }, { "input": "leveraged", "output": "â ‡â â ‘â â ›â «" }, { "input": "leverages", "output": "â ‡â â ‘â â ›â ‘â Ž" }, { "input": "leveraging", "output": "â ‡â â ‘â â ›â Œ" }, { "input": "levered", "output": "â ‡â â ‘â «" }, { "input": "levering", "output": "â ‡â â ‘â Œ" }, { "input": "levers", "output": "â ‡â â ‘â Ž" }, { "input": "leviathan", "output": "⠇⠑⠧⠊â â ¹â â " }, { "input": "leviathan's", "output": "⠇⠑⠧⠊â â ¹â â â „â Ž" }, { "input": "leviathans", "output": "⠇⠑⠧⠊â â ¹â â â Ž" }, { "input": "levied", "output": "⠇⠑⠧⠊⠫" }, { "input": "levier", "output": "⠇⠑⠧⠊⠻" }, { "input": "levier's", "output": "⠇⠑⠧⠊⠻⠄⠎" }, { "input": "leviers", "output": "⠇⠑⠧⠊⠻⠎" }, { "input": "levies", "output": "⠇⠑⠧⠊⠑⠎" }, { "input": "levitate", "output": "⠇⠑⠧⠊⠞â â žâ ‘" }, { "input": "levitated", "output": "⠇⠑⠧⠊⠞â â žâ «" }, { "input": "levitates", "output": "⠇⠑⠧⠊⠞â â žâ ‘â Ž" }, { "input": "levitating", "output": "⠇⠑⠧⠊⠞â â žâ Œ" }, { "input": "levitation", "output": "⠇⠑⠧⠊⠞⠠â " }, { "input": "levitation's", "output": "⠇⠑⠧⠊⠞⠠â â „â Ž" }, { "input": "levity", "output": "⠇⠑⠧⠰⠽" }, { "input": "levity's", "output": "⠇⠑⠧⠰⠽⠄⠎" }, { "input": "levy", "output": "⠇⠑⠧⠽" }, { "input": "levy's", "output": "⠇⠑⠧⠽⠄⠎" }, { "input": "levying", "output": "⠇⠑⠧⠽⠌" }, { "input": "lewd", "output": "⠇⠑⠺⠙" }, { "input": "lewder", "output": "⠇⠑⠺⠙⠻" }, { "input": "lewdest", "output": "⠇⠑⠺⠙⠑⠌" }, { "input": "lewdly", "output": "⠇⠑⠺⠙⠇⠽" }, { "input": "lewdness", "output": "⠇⠑⠺⠙⠰⠎" }, { "input": "lewdness's", "output": "⠇⠑⠺⠙⠰⠎⠄⠎" }, { "input": "lexical", "output": "⠇⠑⠭⠊⠉â â ‡" }, { "input": "lexicographer", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “â »" }, { "input": "lexicographer's", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "lexicographers", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “⠻⠎" }, { "input": "lexicographic", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “â Šâ ‰" }, { "input": "lexicographical", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "lexicography", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “â ½" }, { "input": "lexicography's", "output": "⠇⠑⠭⠊⠉⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "lexicon", "output": "⠇⠑⠭⠊⠉⠕â " }, { "input": "lexicon's", "output": "⠇⠑⠭⠊⠉⠕â â „â Ž" }, { "input": "lexicons", "output": "⠇⠑⠭⠊⠉⠕â â Ž" }, { "input": "liabilities", "output": "⠇⠊â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "liability", "output": "⠇⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "liability's", "output": "⠇⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "liable", "output": "⠇⠊â â ¼" }, { "input": "liaise", "output": "⠇⠊â â Šâ Žâ ‘" }, { "input": "liaised", "output": "⠇⠊â â Šâ Žâ «" }, { "input": "liaises", "output": "⠇⠊â â Šâ Žâ ‘â Ž" }, { "input": "liaising", "output": "⠇⠊â â Šâ Žâ Œ" }, { "input": "liaison", "output": "⠇⠊â â Šâ Žâ •â " }, { "input": "liaison's", "output": "⠇⠊â â Šâ Žâ •â â „â Ž" }, { "input": "liaisons", "output": "⠇⠊â â Šâ Žâ •â â Ž" }, { "input": "liar", "output": "⠇⠊⠜" }, { "input": "liar's", "output": "⠇⠊⠜⠄⠎" }, { "input": "liars", "output": "⠇⠊⠜⠎" }, { "input": "lib", "output": "⠇⠊⠃" }, { "input": "lib's", "output": "⠇⠊⠃⠄⠎" }, { "input": "libation", "output": "⠇⠊⠃⠠â " }, { "input": "libation's", "output": "⠇⠊⠃⠠â â „â Ž" }, { "input": "libations", "output": "⠇⠊⠃⠠â â Ž" }, { "input": "libber", "output": "⠇⠊⠆⠻" }, { "input": "libber's", "output": "⠇⠊⠆⠻⠄⠎" }, { "input": "libbers", "output": "⠇⠊⠆⠻⠎" }, { "input": "libel", "output": "⠇⠊⠃⠑⠇" }, { "input": "libel's", "output": "⠇⠊⠃⠑⠇⠄⠎" }, { "input": "libeled", "output": "⠇⠊⠃⠑⠇⠫" }, { "input": "libeler", "output": "⠇⠊⠃⠑⠇⠻" }, { "input": "libeler's", "output": "⠇⠊⠃⠑⠇⠻⠄⠎" }, { "input": "libelers", "output": "⠇⠊⠃⠑⠇⠻⠎" }, { "input": "libeling", "output": "⠇⠊⠃⠑⠇⠌" }, { "input": "libelous", "output": "⠇⠊⠃⠑⠇⠳⠎" }, { "input": "libels", "output": "⠇⠊⠃⠑⠇⠎" }, { "input": "liberal", "output": "⠇⠊⠃⠻â â ‡" }, { "input": "liberal's", "output": "⠇⠊⠃⠻â â ‡â „â Ž" }, { "input": "liberalism", "output": "⠇⠊⠃⠻â â ‡â Šâ Žâ " }, { "input": "liberalism's", "output": "⠇⠊⠃⠻â â ‡â Šâ Žâ â „â Ž" }, { "input": "liberality", "output": "⠇⠊⠃⠻â â ‡â °â ½" }, { "input": "liberality's", "output": "⠇⠊⠃⠻â â ‡â °â ½â „â Ž" }, { "input": "liberalization", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ  â " }, { "input": "liberalization's", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ  â â „â Ž" }, { "input": "liberalizations", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ  â â Ž" }, { "input": "liberalize", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ ‘" }, { "input": "liberalized", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ «" }, { "input": "liberalizes", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ ‘â Ž" }, { "input": "liberalizing", "output": "⠇⠊⠃⠻â â ‡â Šâ µâ Œ" }, { "input": "liberally", "output": "⠇⠊⠃⠻⠠⠽" }, { "input": "liberalness", "output": "⠇⠊⠃⠻â â ‡â °â Ž" }, { "input": "liberalness's", "output": "⠇⠊⠃⠻â â ‡â °â Žâ „â Ž" }, { "input": "liberals", "output": "⠇⠊⠃⠻â â ‡â Ž" }, { "input": "liberate", "output": "⠇⠊⠃⠻â â žâ ‘" }, { "input": "liberated", "output": "⠇⠊⠃⠻â â žâ «" }, { "input": "liberates", "output": "⠇⠊⠃⠻â â žâ ‘â Ž" }, { "input": "liberating", "output": "⠇⠊⠃⠻â â žâ Œ" }, { "input": "liberation", "output": "⠇⠊⠃⠻⠠â " }, { "input": "liberation's", "output": "⠇⠊⠃⠻⠠â â „â Ž" }, { "input": "liberator", "output": "⠇⠊⠃⠻â â žâ •â —" }, { "input": "liberator's", "output": "⠇⠊⠃⠻â â žâ •â —â „â Ž" }, { "input": "liberators", "output": "⠇⠊⠃⠻â â žâ •â —â Ž" }, { "input": "libertarian", "output": "⠇⠊⠃⠻⠞⠜⠊â â " }, { "input": "libertarian's", "output": "⠇⠊⠃⠻⠞⠜⠊â â â „â Ž" }, { "input": "libertarians", "output": "⠇⠊⠃⠻⠞⠜⠊â â â Ž" }, { "input": "liberties", "output": "⠇⠊⠃⠻⠞⠊⠑⠎" }, { "input": "libertine", "output": "⠇⠊⠃⠻⠞⠔⠑" }, { "input": "libertine's", "output": "⠇⠊⠃⠻⠞⠔⠑⠄⠎" }, { "input": "libertines", "output": "⠇⠊⠃⠻⠞⠔⠑⠎" }, { "input": "liberty", "output": "⠇⠊⠃⠻⠞⠽" }, { "input": "liberty's", "output": "⠇⠊⠃⠻⠞⠽⠄⠎" }, { "input": "libidinal", "output": "⠇⠊⠃⠊⠙⠔â â ‡" }, { "input": "libidinous", "output": "⠇⠊⠃⠊⠙⠔⠳⠎" }, { "input": "libido", "output": "⠇⠊⠃⠊⠙⠕" }, { "input": "libido's", "output": "⠇⠊⠃⠊⠙⠕⠄⠎" }, { "input": "libidos", "output": "⠇⠊⠃⠊⠙⠕⠎" }, { "input": "librarian", "output": "⠇⠊⠃⠗⠜⠊â â " }, { "input": "librarian's", "output": "⠇⠊⠃⠗⠜⠊â â â „â Ž" }, { "input": "librarians", "output": "⠇⠊⠃⠗⠜⠊â â â Ž" }, { "input": "libraries", "output": "⠇⠊⠃⠗⠜⠊⠑⠎" }, { "input": "library", "output": "⠇⠊⠃⠗⠜⠽" }, { "input": "library's", "output": "⠇⠊⠃⠗⠜⠽⠄⠎" }, { "input": "librettist", "output": "⠇⠊⠃⠗⠑⠞⠞⠊⠌" }, { "input": "librettist's", "output": "⠇⠊⠃⠗⠑⠞⠞⠊⠌⠄⠎" }, { "input": "librettists", "output": "⠇⠊⠃⠗⠑⠞⠞⠊⠌⠎" }, { "input": "libretto", "output": "⠇⠊⠃⠗⠑⠞⠞⠕" }, { "input": "libretto's", "output": "⠇⠊⠃⠗⠑⠞⠞⠕⠄⠎" }, { "input": "librettos", "output": "⠇⠊⠃⠗⠑⠞⠞⠕⠎" }, { "input": "lice", "output": "⠇⠊⠉⠑" }, { "input": "license", "output": "⠇⠊⠉⠢⠎⠑" }, { "input": "license's", "output": "⠇⠊⠉⠢⠎⠑⠄⠎" }, { "input": "licensed", "output": "⠇⠊⠉⠢⠎⠫" }, { "input": "licensee", "output": "⠇⠊⠉⠢⠎⠑⠑" }, { "input": "licensee's", "output": "⠇⠊⠉⠢⠎⠑⠑⠄⠎" }, { "input": "licensees", "output": "⠇⠊⠉⠢⠎⠑⠑⠎" }, { "input": "licenses", "output": "⠇⠊⠉⠢⠎⠑⠎" }, { "input": "licensing", "output": "⠇⠊⠉⠢⠎⠌" }, { "input": "licentiate", "output": "⠇⠊⠉⠢⠞⠊â â žâ ‘" }, { "input": "licentiate's", "output": "⠇⠊⠉⠢⠞⠊â â žâ ‘â „â Ž" }, { "input": "licentiates", "output": "⠇⠊⠉⠢⠞⠊â â žâ ‘â Ž" }, { "input": "licentious", "output": "⠇⠊⠉⠢⠞⠊⠳⠎" }, { "input": "licentiously", "output": "⠇⠊⠉⠢⠞⠊⠳⠎⠇⠽" }, { "input": "licentiousness", "output": "⠇⠊⠉⠢⠞⠊⠳⠎⠰⠎" }, { "input": "licentiousness's", "output": "⠇⠊⠉⠢⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "lichen", "output": "⠇⠊⠡⠢" }, { "input": "lichen's", "output": "⠇⠊⠡⠢⠄⠎" }, { "input": "lichens", "output": "⠇⠊⠡⠢⠎" }, { "input": "licit", "output": "⠇⠊⠉⠊⠞" }, { "input": "licitly", "output": "⠇⠊⠉⠊⠞⠇⠽" }, { "input": "lick", "output": "⠇⠊⠉⠅" }, { "input": "lick's", "output": "⠇⠊⠉⠅⠄⠎" }, { "input": "licked", "output": "⠇⠊⠉⠅⠫" }, { "input": "licking", "output": "⠇⠊⠉⠅⠌" }, { "input": "licking's", "output": "⠇⠊⠉⠅⠌⠄⠎" }, { "input": "lickings", "output": "⠇⠊⠉⠅⠌⠎" }, { "input": "licks", "output": "⠇⠊⠉⠅⠎" }, { "input": "licorice", "output": "⠇⠊⠉⠕⠗⠊⠉⠑" }, { "input": "licorice's", "output": "⠇⠊⠉⠕⠗⠊⠉⠑⠄⠎" }, { "input": "licorices", "output": "⠇⠊⠉⠕⠗⠊⠉⠑⠎" }, { "input": "lid", "output": "⠇⠊⠙" }, { "input": "lid's", "output": "⠇⠊⠙⠄⠎" }, { "input": "lidded", "output": "⠇⠊⠲⠫" }, { "input": "lidless", "output": "⠇⠊⠙⠨⠎" }, { "input": "lids", "output": "⠇⠊⠙⠎" }, { "input": "lie", "output": "⠇⠊⠑" }, { "input": "lie's", "output": "⠇⠊⠑⠄⠎" }, { "input": "lied", "output": "⠇⠊⠫" }, { "input": "lied's", "output": "⠇⠊⠫⠄⠎" }, { "input": "lieder", "output": "⠇⠊⠫⠻" }, { "input": "lief", "output": "⠇⠊⠑⠋" }, { "input": "liefer", "output": "⠇⠊⠑⠋⠻" }, { "input": "liefest", "output": "⠇⠊⠑⠋⠑⠌" }, { "input": "liege", "output": "⠇⠊⠑⠛⠑" }, { "input": "liege's", "output": "⠇⠊⠑⠛⠑⠄⠎" }, { "input": "lieges", "output": "⠇⠊⠑⠛⠑⠎" }, { "input": "lien", "output": "⠇⠊⠢" }, { "input": "lien's", "output": "⠇⠊⠢⠄⠎" }, { "input": "liens", "output": "⠇⠊⠢⠎" }, { "input": "lies", "output": "⠇⠊⠑⠎" }, { "input": "lieu", "output": "⠇⠊⠑⠥" }, { "input": "lieu's", "output": "⠇⠊⠑⠥⠄⠎" }, { "input": "lieutenancy", "output": "⠇⠊⠑⠥⠞⠢â â â ‰â ½" }, { "input": "lieutenancy's", "output": "⠇⠊⠑⠥⠞⠢â â â ‰â ½â „â Ž" }, { "input": "lieutenant", "output": "⠇⠊⠑⠥⠞⠢â â â ž" }, { "input": "lieutenant's", "output": "⠇⠊⠑⠥⠞⠢â â â žâ „â Ž" }, { "input": "lieutenants", "output": "⠇⠊⠑⠥⠞⠢â â â žâ Ž" }, { "input": "life", "output": "⠇⠊⠋⠑" }, { "input": "life's", "output": "⠇⠊⠋⠑⠄⠎" }, { "input": "lifeblood", "output": "⠇⠊⠋⠑⠃⠇⠕⠕⠙" }, { "input": "lifeblood's", "output": "⠇⠊⠋⠑⠃⠇⠕⠕⠙⠄⠎" }, { "input": "lifeboat", "output": "⠇⠊⠋⠑⠃⠕â â ž" }, { "input": "lifeboat's", "output": "⠇⠊⠋⠑⠃⠕â â žâ „â Ž" }, { "input": "lifeboats", "output": "⠇⠊⠋⠑⠃⠕â â žâ Ž" }, { "input": "lifebuoy", "output": "⠇⠊⠋⠑⠃⠥⠕⠽" }, { "input": "lifebuoy's", "output": "⠇⠊⠋⠑⠃⠥⠕⠽⠄⠎" }, { "input": "lifebuoys", "output": "⠇⠊⠋⠑⠃⠥⠕⠽⠎" }, { "input": "lifeforms", "output": "⠇⠊⠋⠑⠿â â Ž" }, { "input": "lifeguard", "output": "⠇⠊⠋⠑⠛⠥⠜⠙" }, { "input": "lifeguard's", "output": "⠇⠊⠋⠑⠛⠥⠜⠙⠄⠎" }, { "input": "lifeguards", "output": "⠇⠊⠋⠑⠛⠥⠜⠙⠎" }, { "input": "lifeless", "output": "⠇⠊⠋⠑⠨⠎" }, { "input": "lifelessly", "output": "⠇⠊⠋⠑⠨⠎⠇⠽" }, { "input": "lifelessness", "output": "⠇⠊⠋⠑⠨⠎⠰⠎" }, { "input": "lifelessness's", "output": "⠇⠊⠋⠑⠨⠎⠰⠎⠄⠎" }, { "input": "lifelike", "output": "⠇⠊⠋⠑⠇⠊⠅⠑" }, { "input": "lifeline", "output": "⠇⠊⠋⠑⠇⠔⠑" }, { "input": "lifeline's", "output": "⠇⠊⠋⠑⠇⠔⠑⠄⠎" }, { "input": "lifelines", "output": "⠇⠊⠋⠑⠇⠔⠑⠎" }, { "input": "lifelong", "output": "⠇⠊⠋⠑⠇⠰⠛" }, { "input": "lifer", "output": "⠇⠊⠋⠻" }, { "input": "lifer's", "output": "⠇⠊⠋⠻⠄⠎" }, { "input": "lifers", "output": "⠇⠊⠋⠻⠎" }, { "input": "lifesaver", "output": "⠇⠊⠋⠑⠎â â §â »" }, { "input": "lifesaver's", "output": "⠇⠊⠋⠑⠎â â §â »â „â Ž" }, { "input": "lifesavers", "output": "⠇⠊⠋⠑⠎â â §â »â Ž" }, { "input": "lifesaving", "output": "⠇⠊⠋⠑⠎â â §â Œ" }, { "input": "lifesaving's", "output": "⠇⠊⠋⠑⠎â â §â Œâ „â Ž" }, { "input": "lifespan", "output": "⠇⠊⠋⠑⠎â â â " }, { "input": "lifespans", "output": "⠇⠊⠋⠑⠎â â â â Ž" }, { "input": "lifestyle", "output": "⠇⠊⠋⠑⠌⠽⠇⠑" }, { "input": "lifestyle's", "output": "⠇⠊⠋⠑⠌⠽⠇⠑⠄⠎" }, { "input": "lifestyles", "output": "⠇⠊⠋⠑⠌⠽⠇⠑⠎" }, { "input": "lifetime", "output": "⠇⠊⠋⠑â â ž" }, { "input": "lifetime's", "output": "⠇⠊⠋⠑â â žâ „â Ž" }, { "input": "lifetimes", "output": "⠇⠊⠋⠑â â žâ Ž" }, { "input": "lifework", "output": "⠇⠊⠋⠑â â º" }, { "input": "lifework's", "output": "⠇⠊⠋⠑â â ºâ „â Ž" }, { "input": "lifeworks", "output": "⠇⠊⠋⠑â â ºâ Ž" }, { "input": "lift", "output": "⠇⠊⠋⠞" }, { "input": "lift's", "output": "⠇⠊⠋⠞⠄⠎" }, { "input": "lifted", "output": "⠇⠊⠋⠞⠫" }, { "input": "lifter", "output": "⠇⠊⠋⠞⠻" }, { "input": "lifter's", "output": "⠇⠊⠋⠞⠻⠄⠎" }, { "input": "lifters", "output": "⠇⠊⠋⠞⠻⠎" }, { "input": "lifting", "output": "⠇⠊⠋⠞⠌" }, { "input": "liftoff", "output": "⠇⠊⠋⠞⠷⠋" }, { "input": "liftoff's", "output": "⠇⠊⠋⠞⠷⠋⠄⠎" }, { "input": "liftoffs", "output": "⠇⠊⠋⠞⠷⠋⠎" }, { "input": "lifts", "output": "⠇⠊⠋⠞⠎" }, { "input": "ligament", "output": "⠇⠊⠛â â °â ž" }, { "input": "ligament's", "output": "⠇⠊⠛â â °â žâ „â Ž" }, { "input": "ligaments", "output": "⠇⠊⠛â â °â žâ Ž" }, { "input": "ligate", "output": "⠇⠊⠛â â žâ ‘" }, { "input": "ligated", "output": "⠇⠊⠛â â žâ «" }, { "input": "ligates", "output": "⠇⠊⠛â â žâ ‘â Ž" }, { "input": "ligating", "output": "⠇⠊⠛â â žâ Œ" }, { "input": "ligation", "output": "⠇⠊⠛⠠â " }, { "input": "ligation's", "output": "⠇⠊⠛⠠â â „â Ž" }, { "input": "ligature", "output": "⠇⠊⠛â â žâ ¥â —â ‘" }, { "input": "ligature's", "output": "⠇⠊⠛â â žâ ¥â —â ‘â „â Ž" }, { "input": "ligatured", "output": "⠇⠊⠛â â žâ ¥â —â «" }, { "input": "ligatures", "output": "⠇⠊⠛â â žâ ¥â —â ‘â Ž" }, { "input": "ligaturing", "output": "⠇⠊⠛â â žâ ¥â —â Œ" }, { "input": "light", "output": "⠇⠊⠣⠞" }, { "input": "light's", "output": "⠇⠊⠣⠞⠄⠎" }, { "input": "lighted", "output": "⠇⠊⠣⠞⠫" }, { "input": "lighten", "output": "⠇⠊⠣⠞⠢" }, { "input": "lightened", "output": "⠇⠊⠣⠞⠢⠫" }, { "input": "lightener", "output": "⠇⠊⠣⠞⠢⠻" }, { "input": "lightener's", "output": "⠇⠊⠣⠞⠢⠻⠄⠎" }, { "input": "lighteners", "output": "⠇⠊⠣⠞⠢⠻⠎" }, { "input": "lightening", "output": "⠇⠊⠣⠞⠢⠌" }, { "input": "lightens", "output": "⠇⠊⠣⠞⠢⠎" }, { "input": "lighter", "output": "⠇⠊⠣⠞⠻" }, { "input": "lighter's", "output": "⠇⠊⠣⠞⠻⠄⠎" }, { "input": "lighters", "output": "⠇⠊⠣⠞⠻⠎" }, { "input": "lightest", "output": "⠇⠊⠣⠞⠑⠌" }, { "input": "lightface", "output": "⠇⠊⠣⠞⠋â â ‰â ‘" }, { "input": "lightface's", "output": "⠇⠊⠣⠞⠋â â ‰â ‘â „â Ž" }, { "input": "lightfaced", "output": "⠇⠊⠣⠞⠋â â ‰â «" }, { "input": "lightheaded", "output": "⠇⠊⠣⠞⠓⠂⠙⠫" }, { "input": "lighthearted", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫" }, { "input": "lightheartedly", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫⠇⠽" }, { "input": "lightheartedness", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫⠰⠎" }, { "input": "lightheartedness's", "output": "⠇⠊⠣⠞⠓⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "lighthouse", "output": "⠇⠊⠣⠞⠓⠳⠎⠑" }, { "input": "lighthouse's", "output": "⠇⠊⠣⠞⠓⠳⠎⠑⠄⠎" }, { "input": "lighthouses", "output": "⠇⠊⠣⠞⠓⠳⠎⠑⠎" }, { "input": "lighting", "output": "⠇⠊⠣⠞⠌" }, { "input": "lighting's", "output": "⠇⠊⠣⠞⠌⠄⠎" }, { "input": "lightly", "output": "⠇⠊⠣⠞⠇⠽" }, { "input": "lightness", "output": "⠇⠊⠣⠞⠰⠎" }, { "input": "lightness's", "output": "⠇⠊⠣⠞⠰⠎⠄⠎" }, { "input": "lightning", "output": "⠇⠊⠣⠞â â Œ" }, { "input": "lightning's", "output": "⠇⠊⠣⠞â â Œâ „â Ž" }, { "input": "lightninged", "output": "⠇⠊⠣⠞â â Œâ «" }, { "input": "lightnings", "output": "⠇⠊⠣⠞â â Œâ Ž" }, { "input": "lightproof", "output": "⠇⠊⠣⠞â â —â •â ·" }, { "input": "lights", "output": "⠇⠊⠣⠞⠎" }, { "input": "lightweight", "output": "⠇⠊⠣⠞⠺⠑⠊⠣⠞" }, { "input": "lightweight's", "output": "⠇⠊⠣⠞⠺⠑⠊⠣⠞⠄⠎" }, { "input": "lightweights", "output": "⠇⠊⠣⠞⠺⠑⠊⠣⠞⠎" }, { "input": "ligneous", "output": "⠇⠊⠛â â ‘⠳⠎" }, { "input": "lignite", "output": "⠇⠊⠛â â Šâ žâ ‘" }, { "input": "lignite's", "output": "⠇⠊⠛â â Šâ žâ ‘â „â Ž" }, { "input": "likability", "output": "⠇⠊⠅â â ƒâ Šâ ‡â °â ½" }, { "input": "likability's", "output": "⠇⠊⠅â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "likable", "output": "⠇⠊⠅â â ¼" }, { "input": "likableness", "output": "⠇⠊⠅â â ¼â °â Ž" }, { "input": "likableness's", "output": "⠇⠊⠅â â ¼â °â Žâ „â Ž" }, { "input": "like", "output": "â ‡" }, { "input": "like's", "output": "⠇⠊⠅⠑⠄⠎" }, { "input": "liked", "output": "⠇⠊⠅⠫" }, { "input": "likelier", "output": "⠇⠊⠅⠑⠇⠊⠻" }, { "input": "likeliest", "output": "⠇⠊⠅⠑⠇⠊⠑⠌" }, { "input": "likelihood", "output": "⠇⠊⠅⠑⠇⠊⠓⠕⠕⠙" }, { "input": "likelihood's", "output": "⠇⠊⠅⠑⠇⠊⠓⠕⠕⠙⠄⠎" }, { "input": "likelihoods", "output": "⠇⠊⠅⠑⠇⠊⠓⠕⠕⠙⠎" }, { "input": "likeliness", "output": "⠇⠊⠅⠑⠇⠊⠰⠎" }, { "input": "likeliness's", "output": "⠇⠊⠅⠑⠇⠊⠰⠎⠄⠎" }, { "input": "likely", "output": "⠇⠊⠅⠑⠇⠽" }, { "input": "liken", "output": "⠇⠊⠅⠢" }, { "input": "likened", "output": "⠇⠊⠅⠢⠫" }, { "input": "likeness", "output": "⠇⠊⠅⠑⠰⠎" }, { "input": "likeness's", "output": "⠇⠊⠅⠑⠰⠎⠄⠎" }, { "input": "likenesses", "output": "⠇⠊⠅⠑⠰⠎⠑⠎" }, { "input": "likening", "output": "⠇⠊⠅⠢⠌" }, { "input": "likens", "output": "⠇⠊⠅⠢⠎" }, { "input": "liker", "output": "⠇⠊⠅⠻" }, { "input": "likes", "output": "⠇⠊⠅⠑⠎" }, { "input": "likest", "output": "⠇⠊⠅⠑⠌" }, { "input": "likewise", "output": "⠇⠊⠅⠑⠺⠊⠎⠑" }, { "input": "liking", "output": "⠇⠊⠅⠌" }, { "input": "liking's", "output": "⠇⠊⠅⠌⠄⠎" }, { "input": "lilac", "output": "⠇⠊⠇â â ‰" }, { "input": "lilac's", "output": "⠇⠊⠇â â ‰â „â Ž" }, { "input": "lilacs", "output": "⠇⠊⠇â â ‰â Ž" }, { "input": "lilies", "output": "⠇⠊⠇⠊⠑⠎" }, { "input": "lilt", "output": "⠇⠊⠇⠞" }, { "input": "lilt's", "output": "⠇⠊⠇⠞⠄⠎" }, { "input": "lilted", "output": "⠇⠊⠇⠞⠫" }, { "input": "lilting", "output": "⠇⠊⠇⠞⠌" }, { "input": "lilts", "output": "⠇⠊⠇⠞⠎" }, { "input": "lily", "output": "⠇⠊⠇⠽" }, { "input": "lily's", "output": "⠇⠊⠇⠽⠄⠎" }, { "input": "limb", "output": "⠇⠊â â ƒ" }, { "input": "limb's", "output": "⠇⠊â â ƒâ „â Ž" }, { "input": "limber", "output": "⠇⠊â â ƒâ »" }, { "input": "limbered", "output": "⠇⠊â â ƒâ »â «" }, { "input": "limbering", "output": "⠇⠊â â ƒâ »â Œ" }, { "input": "limberness", "output": "⠇⠊â â ƒâ »â °â Ž" }, { "input": "limberness's", "output": "⠇⠊â â ƒâ »â °â Žâ „â Ž" }, { "input": "limbers", "output": "⠇⠊â â ƒâ »â Ž" }, { "input": "limbless", "output": "⠇⠊â â ƒâ ¨â Ž" }, { "input": "limbo", "output": "⠇⠊â â ƒâ •" }, { "input": "limbo's", "output": "⠇⠊â â ƒâ •â „â Ž" }, { "input": "limbos", "output": "⠇⠊â â ƒâ •â Ž" }, { "input": "limbs", "output": "⠇⠊â â ƒâ Ž" }, { "input": "lime", "output": "⠇⠊â â ‘" }, { "input": "lime's", "output": "⠇⠊â â ‘â „â Ž" }, { "input": "limeade", "output": "⠇⠊â â ‘â â ™â ‘" }, { "input": "limeade's", "output": "⠇⠊â â ‘â â ™â ‘â „â Ž" }, { "input": "limeades", "output": "⠇⠊â â ‚⠙⠑⠎" }, { "input": "limed", "output": "⠇⠊â â «" }, { "input": "limelight", "output": "⠇⠊â â ‘⠇⠊⠣⠞" }, { "input": "limelight's", "output": "⠇⠊â â ‘⠇⠊⠣⠞⠄⠎" }, { "input": "limerick", "output": "⠇⠊â â »â Šâ ‰â …" }, { "input": "limerick's", "output": "⠇⠊â â »â Šâ ‰â …â „â Ž" }, { "input": "limericks", "output": "⠇⠊â â »â Šâ ‰â …â Ž" }, { "input": "limes", "output": "⠇⠊â â ‘â Ž" }, { "input": "limestone", "output": "⠇⠊â â ‘â Œâ â •" }, { "input": "limestone's", "output": "⠇⠊â â ‘â Œâ â •â „â Ž" }, { "input": "limier", "output": "⠇⠊â â Šâ »" }, { "input": "limiest", "output": "⠇⠊â â Šâ ‘â Œ" }, { "input": "liming", "output": "⠇⠊â â Œ" }, { "input": "limit", "output": "⠇⠊â â Šâ ž" }, { "input": "limit's", "output": "⠇⠊â â Šâ žâ „â Ž" }, { "input": "limitation", "output": "⠇⠊â â Šâ žâ  â " }, { "input": "limitation's", "output": "⠇⠊â â Šâ žâ  â â „â Ž" }, { "input": "limitations", "output": "⠇⠊â â Šâ žâ  â â Ž" }, { "input": "limited", "output": "⠇⠊â â Šâ žâ «" }, { "input": "limiter", "output": "⠇⠊â â Šâ žâ »" }, { "input": "limiter's", "output": "⠇⠊â â Šâ žâ »â „â Ž" }, { "input": "limiters", "output": "⠇⠊â â Šâ žâ »â Ž" }, { "input": "limiting", "output": "⠇⠊â â Šâ žâ Œ" }, { "input": "limitings", "output": "⠇⠊â â Šâ žâ Œâ Ž" }, { "input": "limitless", "output": "⠇⠊â â Šâ žâ ¨â Ž" }, { "input": "limitlessness", "output": "⠇⠊â â Šâ žâ ¨â Žâ °â Ž" }, { "input": "limitlessness's", "output": "⠇⠊â â Šâ žâ ¨â Žâ °â Žâ „â Ž" }, { "input": "limits", "output": "⠇⠊â â Šâ žâ Ž" }, { "input": "limn", "output": "⠇⠊â â " }, { "input": "limned", "output": "⠇⠊â â â «" }, { "input": "limning", "output": "⠇⠊â â â Œ" }, { "input": "limns", "output": "⠇⠊â â â Ž" }, { "input": "limo", "output": "⠇⠊â â •" }, { "input": "limo's", "output": "⠇⠊â â •â „â Ž" }, { "input": "limos", "output": "⠇⠊â â •â Ž" }, { "input": "limousine", "output": "⠇⠊â â ³â Žâ ”â ‘" }, { "input": "limousine's", "output": "⠇⠊â â ³â Žâ ”â ‘â „â Ž" }, { "input": "limousines", "output": "⠇⠊â â ³â Žâ ”â ‘â Ž" }, { "input": "limp", "output": "⠇⠊â â " }, { "input": "limp's", "output": "⠇⠊â â â „â Ž" }, { "input": "limped", "output": "⠇⠊â â â «" }, { "input": "limper", "output": "⠇⠊â â â »" }, { "input": "limpest", "output": "⠇⠊â â â ‘â Œ" }, { "input": "limpet", "output": "⠇⠊â â â ‘â ž" }, { "input": "limpet's", "output": "⠇⠊â â â ‘â žâ „â Ž" }, { "input": "limpets", "output": "⠇⠊â â â ‘â žâ Ž" }, { "input": "limpid", "output": "⠇⠊â â â Šâ ™" }, { "input": "limpidity", "output": "⠇⠊â â â Šâ ™â °â ½" }, { "input": "limpidity's", "output": "⠇⠊â â â Šâ ™â °â ½â „â Ž" }, { "input": "limpidly", "output": "⠇⠊â â â Šâ ™â ‡â ½" }, { "input": "limpidness", "output": "⠇⠊â â â Šâ ™â °â Ž" }, { "input": "limpidness's", "output": "⠇⠊â â â Šâ ™â °â Žâ „â Ž" }, { "input": "limping", "output": "⠇⠊â â â Œ" }, { "input": "limply", "output": "⠇⠊â â â ‡â ½" }, { "input": "limpness", "output": "⠇⠊â â â °â Ž" }, { "input": "limpness's", "output": "⠇⠊â â â °â Žâ „â Ž" }, { "input": "limps", "output": "⠇⠊â â â Ž" }, { "input": "limy", "output": "⠇⠊â â ½" }, { "input": "linage", "output": "⠇⠔â â ›â ‘" }, { "input": "linage's", "output": "⠇⠔â â ›â ‘â „â Ž" }, { "input": "linchpin", "output": "⠇⠔⠡â â ”" }, { "input": "linchpin's", "output": "⠇⠔⠡â â ”â „â Ž" }, { "input": "linchpins", "output": "⠇⠔⠡â â ”â Ž" }, { "input": "linden", "output": "⠇⠔⠙⠢" }, { "input": "linden's", "output": "⠇⠔⠙⠢⠄⠎" }, { "input": "lindens", "output": "⠇⠔⠙⠢⠎" }, { "input": "line", "output": "⠇⠔⠑" }, { "input": "line's", "output": "⠇⠔⠑⠄⠎" }, { "input": "lineage", "output": "⠇⠔⠂⠛⠑" }, { "input": "lineage's", "output": "⠇⠔⠂⠛⠑⠄⠎" }, { "input": "lineages", "output": "⠇⠔⠂⠛⠑⠎" }, { "input": "lineal", "output": "⠇⠔⠂⠇" }, { "input": "lineally", "output": "⠇⠔⠑⠠⠽" }, { "input": "lineament", "output": "⠇⠔⠂⠰⠞" }, { "input": "lineament's", "output": "⠇⠔⠂⠰⠞⠄⠎" }, { "input": "lineaments", "output": "⠇⠔⠂⠰⠞⠎" }, { "input": "linear", "output": "⠇⠔⠑⠜" }, { "input": "linearity's", "output": "⠇⠔⠑⠜⠰⠽⠄⠎" }, { "input": "linearly", "output": "⠇⠔⠑⠜⠇⠽" }, { "input": "linebacker", "output": "⠇⠔⠑⠃â â ‰â …â »" }, { "input": "linebacker's", "output": "⠇⠔⠑⠃â â ‰â …⠻⠄⠎" }, { "input": "linebackers", "output": "⠇⠔⠑⠃â â ‰â …⠻⠎" }, { "input": "lined", "output": "⠇⠔⠫" }, { "input": "linefeed", "output": "⠇⠔⠑⠋⠑⠫" }, { "input": "lineman", "output": "⠇⠔⠑â â â " }, { "input": "lineman's", "output": "⠇⠔⠑â â â â „â Ž" }, { "input": "linemen", "output": "⠇⠔⠑â â ¢" }, { "input": "linen", "output": "⠇⠔⠢" }, { "input": "linen's", "output": "⠇⠔⠢⠄⠎" }, { "input": "linens", "output": "⠇⠔⠢⠎" }, { "input": "linens's", "output": "⠇⠔⠢⠎⠄⠎" }, { "input": "liner", "output": "⠇⠔⠻" }, { "input": "liner's", "output": "⠇⠔⠻⠄⠎" }, { "input": "liners", "output": "⠇⠔⠻⠎" }, { "input": "lines", "output": "⠇⠔⠑⠎" }, { "input": "linesman", "output": "⠇⠔⠑⠎â â â " }, { "input": "linesman's", "output": "⠇⠔⠑⠎â â â â „â Ž" }, { "input": "linesmen", "output": "⠇⠔⠑⠎â â ¢" }, { "input": "lineup", "output": "⠇⠔⠑⠥â " }, { "input": "lineup's", "output": "⠇⠔⠑⠥â â „â Ž" }, { "input": "lineups", "output": "⠇⠔⠑⠥â â Ž" }, { "input": "linger", "output": "⠇⠌⠻" }, { "input": "lingered", "output": "⠇⠌⠻⠫" }, { "input": "lingerer", "output": "⠇⠌⠻⠻" }, { "input": "lingerer's", "output": "⠇⠌⠻⠻⠄⠎" }, { "input": "lingerers", "output": "⠇⠌⠻⠻⠎" }, { "input": "lingerie", "output": "⠇⠔⠛⠻⠊⠑" }, { "input": "lingerie's", "output": "⠇⠔⠛⠻⠊⠑⠄⠎" }, { "input": "lingering", "output": "⠇⠌⠻⠌" }, { "input": "lingeringly", "output": "⠇⠌⠻⠌⠇⠽" }, { "input": "lingerings", "output": "⠇⠌⠻⠌⠎" }, { "input": "lingers", "output": "⠇⠌⠻⠎" }, { "input": "lingo", "output": "⠇⠌⠕" }, { "input": "lingo's", "output": "⠇⠌⠕⠄⠎" }, { "input": "lingoes", "output": "⠇⠌⠕⠑⠎" }, { "input": "lingual", "output": "⠇⠌⠥â â ‡" }, { "input": "linguine", "output": "⠇⠌⠥⠔⠑" }, { "input": "linguine's", "output": "⠇⠌⠥⠔⠑⠄⠎" }, { "input": "linguist", "output": "⠇⠌⠥⠊⠌" }, { "input": "linguist's", "output": "⠇⠌⠥⠊⠌⠄⠎" }, { "input": "linguistic", "output": "⠇⠌⠥⠊⠌⠊⠉" }, { "input": "linguistics", "output": "⠇⠌⠥⠊⠌⠊⠉⠎" }, { "input": "linguistics's", "output": "⠇⠌⠥⠊⠌⠊⠉⠎⠄⠎" }, { "input": "linguists", "output": "⠇⠌⠥⠊⠌⠎" }, { "input": "liniment", "output": "⠇⠔⠊⠰⠞" }, { "input": "liniment's", "output": "⠇⠔⠊⠰⠞⠄⠎" }, { "input": "liniments", "output": "⠇⠔⠊⠰⠞⠎" }, { "input": "lining", "output": "⠇⠔⠌" }, { "input": "lining's", "output": "⠇⠔⠌⠄⠎" }, { "input": "linings", "output": "⠇⠔⠌⠎" }, { "input": "link", "output": "⠇⠔⠅" }, { "input": "link's", "output": "⠇⠔⠅⠄⠎" }, { "input": "linkage", "output": "⠇⠔⠅â â ›â ‘" }, { "input": "linkage's", "output": "⠇⠔⠅â â ›â ‘â „â Ž" }, { "input": "linkages", "output": "⠇⠔⠅â â ›â ‘â Ž" }, { "input": "linked", "output": "⠇⠔⠅⠫" }, { "input": "linker", "output": "⠇⠔⠅⠻" }, { "input": "linking", "output": "⠇⠔⠅⠌" }, { "input": "links", "output": "⠇⠔⠅⠎" }, { "input": "linkup", "output": "⠇⠔⠅⠥â " }, { "input": "linkup's", "output": "⠇⠔⠅⠥â â „â Ž" }, { "input": "linkups", "output": "⠇⠔⠅⠥â â Ž" }, { "input": "linnet", "output": "⠇⠔â â ‘â ž" }, { "input": "linnet's", "output": "⠇⠔â â ‘â žâ „â Ž" }, { "input": "linnets", "output": "⠇⠔â â ‘â žâ Ž" }, { "input": "linoleum", "output": "⠇⠔⠕⠇⠑⠥â " }, { "input": "linoleum's", "output": "⠇⠔⠕⠇⠑⠥â â „â Ž" }, { "input": "linseed", "output": "⠇⠔⠎⠑⠫" }, { "input": "linseed's", "output": "⠇⠔⠎⠑⠫⠄⠎" }, { "input": "lint", "output": "⠇⠔⠞" }, { "input": "lint's", "output": "⠇⠔⠞⠄⠎" }, { "input": "lintel", "output": "⠇⠔⠞⠑⠇" }, { "input": "lintel's", "output": "⠇⠔⠞⠑⠇⠄⠎" }, { "input": "lintels", "output": "⠇⠔⠞⠑⠇⠎" }, { "input": "lintier", "output": "⠇⠔⠞⠊⠻" }, { "input": "lintiest", "output": "⠇⠔⠞⠊⠑⠌" }, { "input": "linty", "output": "⠇⠔⠞⠽" }, { "input": "lion", "output": "⠇⠊⠕â " }, { "input": "lion's", "output": "⠇⠊⠕â â „â Ž" }, { "input": "lioness", "output": "⠇⠊⠕⠰⠎" }, { "input": "lioness's", "output": "⠇⠊⠕⠰⠎⠄⠎" }, { "input": "lionesses", "output": "⠇⠊⠕⠰⠎⠑⠎" }, { "input": "lionhearted", "output": "⠇⠊⠕â â “⠑⠜⠞⠫" }, { "input": "lionization", "output": "⠇⠊⠕â â Šâ µâ  â " }, { "input": "lionization's", "output": "⠇⠊⠕â â Šâ µâ  â â „â Ž" }, { "input": "lionize", "output": "⠇⠊⠕â â Šâ µâ ‘" }, { "input": "lionized", "output": "⠇⠊⠕â â Šâ µâ «" }, { "input": "lionizes", "output": "⠇⠊⠕â â Šâ µâ ‘â Ž" }, { "input": "lionizing", "output": "⠇⠊⠕â â Šâ µâ Œ" }, { "input": "lions", "output": "⠇⠊⠕â â Ž" }, { "input": "lip", "output": "⠇⠊â " }, { "input": "lip's", "output": "⠇⠊â â „â Ž" }, { "input": "lipid", "output": "⠇⠊â â Šâ ™" }, { "input": "lipid's", "output": "⠇⠊â â Šâ ™â „â Ž" }, { "input": "lipids", "output": "⠇⠊â â Šâ ™â Ž" }, { "input": "liposuction", "output": "⠇⠊â â •⠎⠥⠉⠰â " }, { "input": "liposuction's", "output": "⠇⠊â â •⠎⠥⠉⠰â â „â Ž" }, { "input": "lipped", "output": "⠇⠊â â â «" }, { "input": "lippier", "output": "⠇⠊â â â Šâ »" }, { "input": "lippiest", "output": "⠇⠊â â â Šâ ‘â Œ" }, { "input": "lipread", "output": "⠇⠊â â —â ‚â ™" }, { "input": "lipreader", "output": "⠇⠊â â —⠂⠙⠻" }, { "input": "lipreader's", "output": "⠇⠊â â —⠂⠙⠻⠄⠎" }, { "input": "lipreading", "output": "⠇⠊â â —⠂⠙⠌" }, { "input": "lipreading's", "output": "⠇⠊â â —⠂⠙⠌⠄⠎" }, { "input": "lipreads", "output": "⠇⠊â â —⠂⠙⠎" }, { "input": "lips", "output": "⠇⠊â â Ž" }, { "input": "lipstick", "output": "⠇⠊â â Œâ Šâ ‰â …" }, { "input": "lipstick's", "output": "⠇⠊â â Œâ Šâ ‰â …â „â Ž" }, { "input": "lipsticked", "output": "⠇⠊â â Œâ Šâ ‰â …â «" }, { "input": "lipsticking", "output": "⠇⠊â â Œâ Šâ ‰â …â Œ" }, { "input": "lipsticks", "output": "⠇⠊â â Œâ Šâ ‰â …â Ž" }, { "input": "liquefaction", "output": "⠇⠊⠟⠥⠑⠋â â ‰â °â " }, { "input": "liquefaction's", "output": "⠇⠊⠟⠥⠑⠋â â ‰â °â â „â Ž" }, { "input": "liquefied", "output": "⠇⠊⠟⠥⠑⠋⠊⠫" }, { "input": "liquefies", "output": "⠇⠊⠟⠥⠑⠋⠊⠑⠎" }, { "input": "liquefy", "output": "⠇⠊⠟⠥⠑⠋⠽" }, { "input": "liquefying", "output": "⠇⠊⠟⠥⠑⠋⠽⠌" }, { "input": "liqueur", "output": "⠇⠊⠟⠥⠑⠥⠗" }, { "input": "liqueur's", "output": "⠇⠊⠟⠥⠑⠥⠗⠄⠎" }, { "input": "liqueurs", "output": "⠇⠊⠟⠥⠑⠥⠗⠎" }, { "input": "liquid", "output": "⠇⠊⠟⠥⠊⠙" }, { "input": "liquid's", "output": "⠇⠊⠟⠥⠊⠙⠄⠎" }, { "input": "liquidate", "output": "⠇⠊⠟⠥⠊⠙â â žâ ‘" }, { "input": "liquidated", "output": "⠇⠊⠟⠥⠊⠙â â žâ «" }, { "input": "liquidates", "output": "⠇⠊⠟⠥⠊⠙â â žâ ‘â Ž" }, { "input": "liquidating", "output": "⠇⠊⠟⠥⠊⠙â â žâ Œ" }, { "input": "liquidation", "output": "⠇⠊⠟⠥⠊⠙⠠â " }, { "input": "liquidation's", "output": "⠇⠊⠟⠥⠊⠙⠠â â „â Ž" }, { "input": "liquidations", "output": "⠇⠊⠟⠥⠊⠙⠠â â Ž" }, { "input": "liquidator", "output": "⠇⠊⠟⠥⠊⠙â â žâ •â —" }, { "input": "liquidator's", "output": "⠇⠊⠟⠥⠊⠙â â žâ •â —â „â Ž" }, { "input": "liquidators", "output": "⠇⠊⠟⠥⠊⠙â â žâ •â —â Ž" }, { "input": "liquidity", "output": "⠇⠊⠟⠥⠊⠙⠰⠽" }, { "input": "liquidity's", "output": "⠇⠊⠟⠥⠊⠙⠰⠽⠄⠎" }, { "input": "liquidize", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠑" }, { "input": "liquidized", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠫" }, { "input": "liquidizer", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠻" }, { "input": "liquidizer's", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠻⠄⠎" }, { "input": "liquidizers", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠻⠎" }, { "input": "liquidizes", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠑⠎" }, { "input": "liquidizing", "output": "⠇⠊⠟⠥⠊⠙⠊⠵⠌" }, { "input": "liquids", "output": "⠇⠊⠟⠥⠊⠙⠎" }, { "input": "liquor", "output": "⠇⠊⠟⠥⠕⠗" }, { "input": "liquor's", "output": "⠇⠊⠟⠥⠕⠗⠄⠎" }, { "input": "liquored", "output": "⠇⠊⠟⠥⠕⠗⠫" }, { "input": "liquoring", "output": "⠇⠊⠟⠥⠕⠗⠌" }, { "input": "liquors", "output": "⠇⠊⠟⠥⠕⠗⠎" }, { "input": "lira", "output": "⠇⠊⠗â " }, { "input": "lira's", "output": "⠇⠊⠗â â „â Ž" }, { "input": "lire", "output": "⠇⠊⠗⠑" }, { "input": "lisle", "output": "⠇⠊⠎⠇⠑" }, { "input": "lisle's", "output": "⠇⠊⠎⠇⠑⠄⠎" }, { "input": "lisp", "output": "⠇⠊⠎â " }, { "input": "lisp's", "output": "⠇⠊⠎â â „â Ž" }, { "input": "lisped", "output": "⠇⠊⠎â â «" }, { "input": "lisper", "output": "⠇⠊⠎â â »" }, { "input": "lisper's", "output": "⠇⠊⠎â â »â „â Ž" }, { "input": "lispers", "output": "⠇⠊⠎â â »â Ž" }, { "input": "lisping", "output": "⠇⠊⠎â â Œ" }, { "input": "lisps", "output": "⠇⠊⠎â â Ž" }, { "input": "lissome", "output": "⠇⠊⠎â â Ž" }, { "input": "list", "output": "⠇⠊⠌" }, { "input": "list's", "output": "⠇⠊⠌⠄⠎" }, { "input": "listed", "output": "⠇⠊⠌⠫" }, { "input": "listen", "output": "⠇⠊⠌⠢" }, { "input": "listen's", "output": "⠇⠊⠌⠢⠄⠎" }, { "input": "listened", "output": "⠇⠊⠌⠢⠫" }, { "input": "listener", "output": "⠇⠊⠌⠢⠻" }, { "input": "listener's", "output": "⠇⠊⠌⠢⠻⠄⠎" }, { "input": "listeners", "output": "⠇⠊⠌⠢⠻⠎" }, { "input": "listening", "output": "⠇⠊⠌⠢⠌" }, { "input": "listens", "output": "⠇⠊⠌⠢⠎" }, { "input": "listing", "output": "⠇⠊⠌⠌" }, { "input": "listing's", "output": "⠇⠊⠌⠌⠄⠎" }, { "input": "listings", "output": "⠇⠊⠌⠌⠎" }, { "input": "listless", "output": "⠇⠊⠌⠨⠎" }, { "input": "listlessly", "output": "⠇⠊⠌⠨⠎⠇⠽" }, { "input": "listlessness", "output": "⠇⠊⠌⠨⠎⠰⠎" }, { "input": "listlessness's", "output": "⠇⠊⠌⠨⠎⠰⠎⠄⠎" }, { "input": "lists", "output": "⠇⠊⠌⠎" }, { "input": "lit", "output": "⠇⠊⠞" }, { "input": "litanies", "output": "⠇⠊⠞â â â Šâ ‘â Ž" }, { "input": "litany", "output": "⠇⠊⠞â â â ½" }, { "input": "litany's", "output": "⠇⠊⠞â â â ½â „â Ž" }, { "input": "litchi", "output": "⠇⠊⠞⠡⠊" }, { "input": "litchi's", "output": "⠇⠊⠞⠡⠊⠄⠎" }, { "input": "litchis", "output": "⠇⠊⠞⠡⠊⠎" }, { "input": "lite", "output": "⠇⠊⠞⠑" }, { "input": "liter", "output": "⠇⠊⠞⠻" }, { "input": "liter's", "output": "⠇⠊⠞⠻⠄⠎" }, { "input": "literacy", "output": "⠇⠊⠞⠻â â ‰â ½" }, { "input": "literacy's", "output": "⠇⠊⠞⠻â â ‰â ½â „â Ž" }, { "input": "literal", "output": "⠇⠊⠞⠻â â ‡" }, { "input": "literal's", "output": "⠇⠊⠞⠻â â ‡â „â Ž" }, { "input": "literally", "output": "⠇⠊⠞⠻⠠⠽" }, { "input": "literalness's", "output": "⠇⠊⠞⠻â â ‡â °â Žâ „â Ž" }, { "input": "literals", "output": "⠇⠊⠞⠻â â ‡â Ž" }, { "input": "literariness", "output": "⠇⠊⠞⠻⠜⠊⠰⠎" }, { "input": "literariness's", "output": "⠇⠊⠞⠻⠜⠊⠰⠎⠄⠎" }, { "input": "literary", "output": "⠇⠊⠞⠻⠜⠽" }, { "input": "literate", "output": "⠇⠊⠞⠻â â žâ ‘" }, { "input": "literate's", "output": "⠇⠊⠞⠻â â žâ ‘â „â Ž" }, { "input": "literately", "output": "⠇⠊⠞⠻â â žâ ‘⠇⠽" }, { "input": "literates", "output": "⠇⠊⠞⠻â â žâ ‘â Ž" }, { "input": "literati", "output": "⠇⠊⠞⠻â â žâ Š" }, { "input": "literati's", "output": "⠇⠊⠞⠻â â žâ Šâ „â Ž" }, { "input": "literature", "output": "⠇⠊⠞⠻â â žâ ¥â —â ‘" }, { "input": "literature's", "output": "⠇⠊⠞⠻â â žâ ¥â —â ‘â „â Ž" }, { "input": "liters", "output": "⠇⠊⠞⠻⠎" }, { "input": "lithe", "output": "⠇⠊⠮" }, { "input": "litheness", "output": "⠇⠊⠮⠰⠎" }, { "input": "litheness's", "output": "⠇⠊⠮⠰⠎⠄⠎" }, { "input": "lither", "output": "⠇⠊⠮⠗" }, { "input": "lithesome", "output": "⠇⠊⠮â â Ž" }, { "input": "lithest", "output": "⠇⠊⠮⠌" }, { "input": "lithium", "output": "⠇⠊⠹⠊⠥â " }, { "input": "lithium's", "output": "⠇⠊⠹⠊⠥â â „â Ž" }, { "input": "lithograph", "output": "⠇⠊⠹⠕⠛⠗â â â “" }, { "input": "lithograph's", "output": "⠇⠊⠹⠕⠛⠗â â â “â „â Ž" }, { "input": "lithographed", "output": "⠇⠊⠹⠕⠛⠗â â â “â «" }, { "input": "lithographer", "output": "⠇⠊⠹⠕⠛⠗â â â “â »" }, { "input": "lithographer's", "output": "⠇⠊⠹⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "lithographers", "output": "⠇⠊⠹⠕⠛⠗â â â “⠻⠎" }, { "input": "lithographic", "output": "⠇⠊⠹⠕⠛⠗â â â “â Šâ ‰" }, { "input": "lithographically", "output": "⠇⠊⠹⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "lithographing", "output": "⠇⠊⠹⠕⠛⠗â â â “â Œ" }, { "input": "lithographs", "output": "⠇⠊⠹⠕⠛⠗â â â “â Ž" }, { "input": "lithography", "output": "⠇⠊⠹⠕⠛⠗â â â “â ½" }, { "input": "lithography's", "output": "⠇⠊⠹⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "lithosphere", "output": "⠇⠊⠹⠕⠎â â “⠻⠑" }, { "input": "lithosphere's", "output": "⠇⠊⠹⠕⠎â â “⠻⠑⠄⠎" }, { "input": "lithospheres", "output": "⠇⠊⠹⠕⠎â â “⠻⠑⠎" }, { "input": "litigant", "output": "⠇⠊⠞⠊⠛â â â ž" }, { "input": "litigant's", "output": "⠇⠊⠞⠊⠛â â â žâ „â Ž" }, { "input": "litigants", "output": "⠇⠊⠞⠊⠛â â â žâ Ž" }, { "input": "litigate", "output": "⠇⠊⠞⠊⠛â â žâ ‘" }, { "input": "litigated", "output": "⠇⠊⠞⠊⠛â â žâ «" }, { "input": "litigates", "output": "⠇⠊⠞⠊⠛â â žâ ‘â Ž" }, { "input": "litigating", "output": "⠇⠊⠞⠊⠛â â žâ Œ" }, { "input": "litigation", "output": "⠇⠊⠞⠊⠛⠠â " }, { "input": "litigation's", "output": "⠇⠊⠞⠊⠛⠠â â „â Ž" }, { "input": "litigious", "output": "⠇⠊⠞⠊⠛⠊⠳⠎" }, { "input": "litigiousness", "output": "⠇⠊⠞⠊⠛⠊⠳⠎⠰⠎" }, { "input": "litigiousness's", "output": "⠇⠊⠞⠊⠛⠊⠳⠎⠰⠎⠄⠎" }, { "input": "litmus", "output": "⠇⠊⠞â â ¥â Ž" }, { "input": "litmus's", "output": "⠇⠊⠞â â ¥â Žâ „â Ž" }, { "input": "litotes", "output": "⠇⠊⠞⠕⠞⠑⠎" }, { "input": "litotes's", "output": "⠇⠊⠞⠕⠞⠑⠎⠄⠎" }, { "input": "litter", "output": "⠇⠊⠞⠞⠻" }, { "input": "litter's", "output": "⠇⠊⠞⠞⠻⠄⠎" }, { "input": "litterbug", "output": "⠇⠊⠞⠞⠻⠃⠥⠛" }, { "input": "litterbug's", "output": "⠇⠊⠞⠞⠻⠃⠥⠛⠄⠎" }, { "input": "litterbugs", "output": "⠇⠊⠞⠞⠻⠃⠥⠛⠎" }, { "input": "littered", "output": "⠇⠊⠞⠞⠻⠫" }, { "input": "litterer", "output": "⠇⠊⠞⠞⠻⠻" }, { "input": "litterer's", "output": "⠇⠊⠞⠞⠻⠻⠄⠎" }, { "input": "litterers", "output": "⠇⠊⠞⠞⠻⠻⠎" }, { "input": "littering", "output": "⠇⠊⠞⠞⠻⠌" }, { "input": "litters", "output": "⠇⠊⠞⠞⠻⠎" }, { "input": "little", "output": "⠇⠇" }, { "input": "little's", "output": "⠇⠇⠄⠎" }, { "input": "littleness", "output": "⠇⠇⠰⠎" }, { "input": "littleness's", "output": "⠇⠇⠰⠎⠄⠎" }, { "input": "littler", "output": "⠇⠇⠗" }, { "input": "littlest", "output": "⠇⠇⠌" }, { "input": "littoral", "output": "⠇⠊⠞⠞⠕⠗â â ‡" }, { "input": "littoral's", "output": "⠇⠊⠞⠞⠕⠗â â ‡â „â Ž" }, { "input": "littorals", "output": "⠇⠊⠞⠞⠕⠗â â ‡â Ž" }, { "input": "liturgical", "output": "⠇⠊⠞⠥⠗⠛⠊⠉â â ‡" }, { "input": "liturgies", "output": "⠇⠊⠞⠥⠗⠛⠊⠑⠎" }, { "input": "liturgist", "output": "⠇⠊⠞⠥⠗⠛⠊⠌" }, { "input": "liturgist's", "output": "⠇⠊⠞⠥⠗⠛⠊⠌⠄⠎" }, { "input": "liturgists", "output": "⠇⠊⠞⠥⠗⠛⠊⠌⠎" }, { "input": "liturgy", "output": "⠇⠊⠞⠥⠗⠛⠽" }, { "input": "liturgy's", "output": "⠇⠊⠞⠥⠗⠛⠽⠄⠎" }, { "input": "livability", "output": "⠇⠊⠧â â ƒâ Šâ ‡â °â ½" }, { "input": "livability's", "output": "⠇⠊⠧â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "livable", "output": "⠇⠊⠧â â ¼" }, { "input": "live", "output": "⠇⠊⠧⠑" }, { "input": "lived", "output": "⠇⠊⠧⠫" }, { "input": "livelier", "output": "⠇⠊⠧⠑⠇⠊⠻" }, { "input": "liveliest", "output": "⠇⠊⠧⠑⠇⠊⠑⠌" }, { "input": "livelihood", "output": "⠇⠊⠧⠑⠇⠊⠓⠕⠕⠙" }, { "input": "livelihood's", "output": "⠇⠊⠧⠑⠇⠊⠓⠕⠕⠙⠄⠎" }, { "input": "livelihoods", "output": "⠇⠊⠧⠑⠇⠊⠓⠕⠕⠙⠎" }, { "input": "liveliness", "output": "⠇⠊⠧⠑⠇⠊⠰⠎" }, { "input": "liveliness's", "output": "⠇⠊⠧⠑⠇⠊⠰⠎⠄⠎" }, { "input": "livelong", "output": "⠇⠊⠧⠑⠇⠰⠛" }, { "input": "livelongs", "output": "⠇⠊⠧⠑⠇⠰⠛⠎" }, { "input": "lively", "output": "⠇⠊⠧⠑⠇⠽" }, { "input": "liven", "output": "⠇⠊⠧⠢" }, { "input": "livened", "output": "⠇⠊⠧⠢⠫" }, { "input": "livening", "output": "⠇⠊⠧⠢⠌" }, { "input": "livens", "output": "⠇⠊⠧⠢⠎" }, { "input": "liver", "output": "⠇⠊⠧⠻" }, { "input": "liver's", "output": "⠇⠊⠧⠻⠄⠎" }, { "input": "liveried", "output": "⠇⠊⠧⠻⠊⠫" }, { "input": "liveries", "output": "⠇⠊⠧⠻⠊⠑⠎" }, { "input": "livers", "output": "⠇⠊⠧⠻⠎" }, { "input": "liverwort", "output": "⠇⠊⠧⠻⠺⠕⠗⠞" }, { "input": "liverwort's", "output": "⠇⠊⠧⠻⠺⠕⠗⠞⠄⠎" }, { "input": "liverworts", "output": "⠇⠊⠧⠻⠺⠕⠗⠞⠎" }, { "input": "liverwurst", "output": "⠇⠊⠧⠻⠺⠥⠗⠌" }, { "input": "liverwurst's", "output": "⠇⠊⠧⠻⠺⠥⠗⠌⠄⠎" }, { "input": "livery", "output": "⠇⠊⠧⠻⠽" }, { "input": "livery's", "output": "⠇⠊⠧⠻⠽⠄⠎" }, { "input": "liveryman", "output": "⠇⠊⠧⠻⠽â â â " }, { "input": "liveryman's", "output": "⠇⠊⠧⠻⠽â â â â „â Ž" }, { "input": "liverymen", "output": "⠇⠊⠧⠻⠽â â ¢" }, { "input": "lives", "output": "⠇⠊⠧⠑⠎" }, { "input": "livest", "output": "⠇⠊⠧⠑⠌" }, { "input": "livestock", "output": "⠇⠊⠧⠑⠌⠕⠉⠅" }, { "input": "livestock's", "output": "⠇⠊⠧⠑⠌⠕⠉⠅⠄⠎" }, { "input": "livid", "output": "⠇⠊⠧⠊⠙" }, { "input": "lividly", "output": "⠇⠊⠧⠊⠙⠇⠽" }, { "input": "living", "output": "⠇⠊⠧⠌" }, { "input": "living's", "output": "⠇⠊⠧⠌⠄⠎" }, { "input": "livings", "output": "⠇⠊⠧⠌⠎" }, { "input": "lizard", "output": "⠇⠊⠵⠜⠙" }, { "input": "lizard's", "output": "⠇⠊⠵⠜⠙⠄⠎" }, { "input": "lizards", "output": "⠇⠊⠵⠜⠙⠎" }, { "input": "llama", "output": "⠇⠇â â â " }, { "input": "llama's", "output": "⠇⠇â â â â „â Ž" }, { "input": "llamas", "output": "⠇⠇â â â â Ž" }, { "input": "llano", "output": "⠇⠇â â â •" }, { "input": "llano's", "output": "⠇⠇â â â •â „â Ž" }, { "input": "llanos", "output": "⠇⠇â â â •â Ž" }, { "input": "lo", "output": "⠇⠕" }, { "input": "load", "output": "⠇⠕â â ™" }, { "input": "load's", "output": "⠇⠕â â ™â „â Ž" }, { "input": "loadable", "output": "⠇⠕â â ™â â ¼" }, { "input": "loaded", "output": "⠇⠕â â ™â «" }, { "input": "loader", "output": "⠇⠕â â ™â »" }, { "input": "loader's", "output": "⠇⠕â â ™â »â „â Ž" }, { "input": "loaders", "output": "⠇⠕â â ™â »â Ž" }, { "input": "loading", "output": "⠇⠕â â ™â Œ" }, { "input": "loading's", "output": "⠇⠕â â ™â Œâ „â Ž" }, { "input": "loads", "output": "⠇⠕â â ™â Ž" }, { "input": "loaf", "output": "⠇⠕â â ‹" }, { "input": "loaf's", "output": "⠇⠕â â ‹â „â Ž" }, { "input": "loafed", "output": "⠇⠕â â ‹â «" }, { "input": "loafer", "output": "⠇⠕â â ‹â »" }, { "input": "loafer's", "output": "⠇⠕â â ‹â »â „â Ž" }, { "input": "loafers", "output": "⠇⠕â â ‹â »â Ž" }, { "input": "loafing", "output": "⠇⠕â â ‹â Œ" }, { "input": "loafs", "output": "⠇⠕â â ‹â Ž" }, { "input": "loam", "output": "⠇⠕â â " }, { "input": "loam's", "output": "⠇⠕â â â „â Ž" }, { "input": "loamier", "output": "⠇⠕â â â Šâ »" }, { "input": "loamiest", "output": "⠇⠕â â â Šâ ‘â Œ" }, { "input": "loamy", "output": "⠇⠕â â â ½" }, { "input": "loan", "output": "⠇⠕â â " }, { "input": "loan's", "output": "⠇⠕â â â „â Ž" }, { "input": "loaned", "output": "⠇⠕â â â «" }, { "input": "loaner", "output": "⠇⠕â â â »" }, { "input": "loaner's", "output": "⠇⠕â â â »â „â Ž" }, { "input": "loaners", "output": "⠇⠕â â â »â Ž" }, { "input": "loaning", "output": "⠇⠕â â â Œ" }, { "input": "loans", "output": "⠇⠕â â â Ž" }, { "input": "loansharking", "output": "⠇⠕â â â ©â œâ …â Œ" }, { "input": "loansharking's", "output": "⠇⠕â â â ©â œâ …⠌⠄⠎" }, { "input": "loanword", "output": "⠇⠕â â â ˜â º" }, { "input": "loanword's", "output": "⠇⠕â â â ˜â ºâ „â Ž" }, { "input": "loanwords", "output": "⠇⠕â â â ˜â ºâ Ž" }, { "input": "loath", "output": "⠇⠕â â ¹" }, { "input": "loathe", "output": "⠇⠕â â ®" }, { "input": "loathed", "output": "⠇⠕â â ®â ™" }, { "input": "loather", "output": "⠇⠕â â ®â —" }, { "input": "loather's", "output": "⠇⠕â â ®â —â „â Ž" }, { "input": "loathers", "output": "⠇⠕â â ®â —â Ž" }, { "input": "loathes", "output": "⠇⠕â â ®â Ž" }, { "input": "loathing", "output": "⠇⠕â â ¹â Œ" }, { "input": "loathing's", "output": "⠇⠕â â ¹â Œâ „â Ž" }, { "input": "loathings", "output": "⠇⠕â â ¹â Œâ Ž" }, { "input": "loathsome", "output": "⠇⠕â â ¹â â Ž" }, { "input": "loathsomely", "output": "⠇⠕â â ¹â â Žâ ‡â ½" }, { "input": "loathsomeness", "output": "⠇⠕â â ¹â â Žâ °â Ž" }, { "input": "loathsomeness's", "output": "⠇⠕â â ¹â â Žâ °â Žâ „â Ž" }, { "input": "loaves", "output": "⠇⠕â â §â ‘â Ž" }, { "input": "lob", "output": "⠇⠕⠃" }, { "input": "lob's", "output": "⠇⠕⠃⠄⠎" }, { "input": "lobar", "output": "⠇⠕⠃⠜" }, { "input": "lobbed", "output": "⠇⠕⠆⠫" }, { "input": "lobber", "output": "⠇⠕⠆⠻" }, { "input": "lobber's", "output": "⠇⠕⠆⠻⠄⠎" }, { "input": "lobbers", "output": "⠇⠕⠆⠻⠎" }, { "input": "lobbied", "output": "⠇⠕⠆⠊⠫" }, { "input": "lobbies", "output": "⠇⠕⠆⠊⠑⠎" }, { "input": "lobbing", "output": "⠇⠕⠆⠌" }, { "input": "lobby", "output": "⠇⠕⠆⠽" }, { "input": "lobby's", "output": "⠇⠕⠆⠽⠄⠎" }, { "input": "lobbying", "output": "⠇⠕⠆⠽⠌" }, { "input": "lobbyist", "output": "⠇⠕⠆⠽⠊⠌" }, { "input": "lobbyist's", "output": "⠇⠕⠆⠽⠊⠌⠄⠎" }, { "input": "lobbyists", "output": "⠇⠕⠆⠽⠊⠌⠎" }, { "input": "lobe", "output": "⠇⠕⠃⠑" }, { "input": "lobe's", "output": "⠇⠕⠃⠑⠄⠎" }, { "input": "lobed", "output": "⠇⠕⠃⠫" }, { "input": "lobes", "output": "⠇⠕⠃⠑⠎" }, { "input": "lobotomies", "output": "⠇⠕⠃⠕⠞⠕â â Šâ ‘â Ž" }, { "input": "lobotomize", "output": "⠇⠕⠃⠕⠞⠕â â Šâ µâ ‘" }, { "input": "lobotomized", "output": "⠇⠕⠃⠕⠞⠕â â Šâ µâ «" }, { "input": "lobotomizes", "output": "⠇⠕⠃⠕⠞⠕â â Šâ µâ ‘â Ž" }, { "input": "lobotomizing", "output": "⠇⠕⠃⠕⠞⠕â â Šâ µâ Œ" }, { "input": "lobotomy", "output": "⠇⠕⠃⠕⠞⠕â â ½" }, { "input": "lobotomy's", "output": "⠇⠕⠃⠕⠞⠕â â ½â „â Ž" }, { "input": "lobs", "output": "⠇⠕⠃⠎" }, { "input": "lobster", "output": "⠇⠕⠃⠌⠻" }, { "input": "lobster's", "output": "⠇⠕⠃⠌⠻⠄⠎" }, { "input": "lobsters", "output": "⠇⠕⠃⠌⠻⠎" }, { "input": "local", "output": "⠇⠕⠉â â ‡" }, { "input": "local's", "output": "⠇⠕⠉â â ‡â „â Ž" }, { "input": "locale", "output": "⠇⠕⠉â â ‡â ‘" }, { "input": "locale's", "output": "⠇⠕⠉â â ‡â ‘â „â Ž" }, { "input": "locales", "output": "⠇⠕⠉â â ‡â ‘â Ž" }, { "input": "localities", "output": "⠇⠕⠉â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "locality", "output": "⠇⠕⠉â â ‡â °â ½" }, { "input": "locality's", "output": "⠇⠕⠉â â ‡â °â ½â „â Ž" }, { "input": "localization", "output": "⠇⠕⠉â â ‡â Šâ µâ  â " }, { "input": "localization's", "output": "⠇⠕⠉â â ‡â Šâ µâ  â â „â Ž" }, { "input": "localize", "output": "⠇⠕⠉â â ‡â Šâ µâ ‘" }, { "input": "localized", "output": "⠇⠕⠉â â ‡â Šâ µâ «" }, { "input": "localizes", "output": "⠇⠕⠉â â ‡â Šâ µâ ‘â Ž" }, { "input": "localizing", "output": "⠇⠕⠉â â ‡â Šâ µâ Œ" }, { "input": "locally", "output": "⠇⠕⠉⠠⠽" }, { "input": "locals", "output": "⠇⠕⠉â â ‡â Ž" }, { "input": "locate", "output": "⠇⠕⠉â â žâ ‘" }, { "input": "located", "output": "⠇⠕⠉â â žâ «" }, { "input": "locates", "output": "⠇⠕⠉â â žâ ‘â Ž" }, { "input": "locating", "output": "⠇⠕⠉â â žâ Œ" }, { "input": "location", "output": "⠇⠕⠉⠠â " }, { "input": "location's", "output": "⠇⠕⠉⠠â â „â Ž" }, { "input": "locations", "output": "⠇⠕⠉⠠â â Ž" }, { "input": "locator", "output": "⠇⠕⠉â â žâ •â —" }, { "input": "locator's", "output": "⠇⠕⠉â â žâ •â —â „â Ž" }, { "input": "locators", "output": "⠇⠕⠉â â žâ •â —â Ž" }, { "input": "loci", "output": "⠇⠕⠉⠊" }, { "input": "lock", "output": "⠇⠕⠉⠅" }, { "input": "lock's", "output": "⠇⠕⠉⠅⠄⠎" }, { "input": "lockable", "output": "⠇⠕⠉⠅â â ¼" }, { "input": "locked", "output": "⠇⠕⠉⠅⠫" }, { "input": "locker", "output": "⠇⠕⠉⠅⠻" }, { "input": "locker's", "output": "⠇⠕⠉⠅⠻⠄⠎" }, { "input": "lockers", "output": "⠇⠕⠉⠅⠻⠎" }, { "input": "locket", "output": "⠇⠕⠉⠅⠑⠞" }, { "input": "locket's", "output": "⠇⠕⠉⠅⠑⠞⠄⠎" }, { "input": "lockets", "output": "⠇⠕⠉⠅⠑⠞⠎" }, { "input": "locking", "output": "⠇⠕⠉⠅⠌" }, { "input": "lockjaw", "output": "⠇⠕⠉⠅⠚â â º" }, { "input": "lockjaw's", "output": "⠇⠕⠉⠅⠚â â ºâ „â Ž" }, { "input": "lockout", "output": "⠇⠕⠉⠅⠳⠞" }, { "input": "lockout's", "output": "⠇⠕⠉⠅⠳⠞⠄⠎" }, { "input": "lockouts", "output": "⠇⠕⠉⠅⠳⠞⠎" }, { "input": "locks", "output": "⠇⠕⠉⠅⠎" }, { "input": "locksmith", "output": "⠇⠕⠉⠅⠎â â Šâ ¹" }, { "input": "locksmith's", "output": "⠇⠕⠉⠅⠎â â Šâ ¹â „â Ž" }, { "input": "locksmiths", "output": "⠇⠕⠉⠅⠎â â Šâ ¹â Ž" }, { "input": "lockstep", "output": "⠇⠕⠉⠅⠌⠑â " }, { "input": "lockstep's", "output": "⠇⠕⠉⠅⠌⠑â â „â Ž" }, { "input": "lockup", "output": "⠇⠕⠉⠅⠥â " }, { "input": "lockup's", "output": "⠇⠕⠉⠅⠥â â „â Ž" }, { "input": "lockups", "output": "⠇⠕⠉⠅⠥â â Ž" }, { "input": "loco", "output": "⠇⠕⠉⠕" }, { "input": "locomotion", "output": "⠇⠕⠉⠕â â •â °â " }, { "input": "locomotion's", "output": "⠇⠕⠉⠕â â •â °â â „â Ž" }, { "input": "locomotive", "output": "⠇⠕⠉⠕â â •â žâ Šâ §â ‘" }, { "input": "locomotive's", "output": "⠇⠕⠉⠕â â •â žâ Šâ §â ‘â „â Ž" }, { "input": "locomotives", "output": "⠇⠕⠉⠕â â •â žâ Šâ §â ‘â Ž" }, { "input": "locoweed", "output": "⠇⠕⠉⠕⠺⠑⠫" }, { "input": "locoweed's", "output": "⠇⠕⠉⠕⠺⠑⠫⠄⠎" }, { "input": "locoweeds", "output": "⠇⠕⠉⠕⠺⠑⠫⠎" }, { "input": "locus", "output": "⠇⠕⠉⠥⠎" }, { "input": "locus's", "output": "⠇⠕⠉⠥⠎⠄⠎" }, { "input": "locust", "output": "⠇⠕⠉⠥⠌" }, { "input": "locust's", "output": "⠇⠕⠉⠥⠌⠄⠎" }, { "input": "locusts", "output": "⠇⠕⠉⠥⠌⠎" }, { "input": "locution", "output": "⠇⠕⠉⠥⠰â " }, { "input": "locution's", "output": "⠇⠕⠉⠥⠰â â „â Ž" }, { "input": "locutions", "output": "⠇⠕⠉⠥⠰â â Ž" }, { "input": "lode", "output": "⠇⠕⠙⠑" }, { "input": "lode's", "output": "⠇⠕⠙⠑⠄⠎" }, { "input": "lodes", "output": "⠇⠕⠙⠑⠎" }, { "input": "lodestar", "output": "⠇⠕⠙⠑⠌⠜" }, { "input": "lodestar's", "output": "⠇⠕⠙⠑⠌⠜⠄⠎" }, { "input": "lodestars", "output": "⠇⠕⠙⠑⠌⠜⠎" }, { "input": "lodestone", "output": "⠇⠕⠙⠑⠌â â •" }, { "input": "lodestone's", "output": "⠇⠕⠙⠑⠌â â •â „â Ž" }, { "input": "lodestones", "output": "⠇⠕⠙⠑⠌â â •â Ž" }, { "input": "lodge", "output": "⠇⠕⠙⠛⠑" }, { "input": "lodge's", "output": "⠇⠕⠙⠛⠑⠄⠎" }, { "input": "lodged", "output": "⠇⠕⠙⠛⠫" }, { "input": "lodger", "output": "⠇⠕⠙⠛⠻" }, { "input": "lodger's", "output": "⠇⠕⠙⠛⠻⠄⠎" }, { "input": "lodgers", "output": "⠇⠕⠙⠛⠻⠎" }, { "input": "lodges", "output": "⠇⠕⠙⠛⠑⠎" }, { "input": "lodging", "output": "⠇⠕⠙⠛⠌" }, { "input": "lodging's", "output": "⠇⠕⠙⠛⠌⠄⠎" }, { "input": "lodgings", "output": "⠇⠕⠙⠛⠌⠎" }, { "input": "lodgings's", "output": "⠇⠕⠙⠛⠌⠎⠄⠎" }, { "input": "loft", "output": "⠇⠷⠞" }, { "input": "loft's", "output": "⠇⠷⠞⠄⠎" }, { "input": "lofted", "output": "⠇⠷⠞⠫" }, { "input": "loftier", "output": "⠇⠷⠞⠊⠻" }, { "input": "loftiest", "output": "⠇⠷⠞⠊⠑⠌" }, { "input": "loftily", "output": "⠇⠷⠞⠊⠇⠽" }, { "input": "loftiness", "output": "⠇⠷⠞⠊⠰⠎" }, { "input": "loftiness's", "output": "⠇⠷⠞⠊⠰⠎⠄⠎" }, { "input": "lofting", "output": "⠇⠷⠞⠌" }, { "input": "lofts", "output": "⠇⠷⠞⠎" }, { "input": "lofty", "output": "⠇⠷⠞⠽" }, { "input": "log", "output": "⠇⠕⠛" }, { "input": "log's", "output": "⠇⠕⠛⠄⠎" }, { "input": "loganberries", "output": "⠇⠕⠛â â â ƒâ »â —â Šâ ‘â Ž" }, { "input": "loganberry", "output": "⠇⠕⠛â â â ƒâ »â —â ½" }, { "input": "loganberry's", "output": "⠇⠕⠛â â â ƒâ »â —⠽⠄⠎" }, { "input": "logarithm", "output": "⠇⠕⠛⠜⠊⠹â " }, { "input": "logarithm's", "output": "⠇⠕⠛⠜⠊⠹â â „â Ž" }, { "input": "logarithmic", "output": "⠇⠕⠛⠜⠊⠹â â Šâ ‰" }, { "input": "logarithms", "output": "⠇⠕⠛⠜⠊⠹â â Ž" }, { "input": "logbook", "output": "⠇⠕⠛⠃⠕⠕⠅" }, { "input": "logbook's", "output": "⠇⠕⠛⠃⠕⠕⠅⠄⠎" }, { "input": "logbooks", "output": "⠇⠕⠛⠃⠕⠕⠅⠎" }, { "input": "loge", "output": "⠇⠕⠛⠑" }, { "input": "loge's", "output": "⠇⠕⠛⠑⠄⠎" }, { "input": "loges", "output": "⠇⠕⠛⠑⠎" }, { "input": "logged", "output": "⠇⠕⠶⠫" }, { "input": "logger", "output": "⠇⠕⠶⠻" }, { "input": "logger's", "output": "⠇⠕⠶⠻⠄⠎" }, { "input": "loggerhead", "output": "⠇⠕⠶⠻⠓⠂⠙" }, { "input": "loggerhead's", "output": "⠇⠕⠶⠻⠓⠂⠙⠄⠎" }, { "input": "loggerheads", "output": "⠇⠕⠶⠻⠓⠂⠙⠎" }, { "input": "loggers", "output": "⠇⠕⠶⠻⠎" }, { "input": "loggia", "output": "⠇⠕⠶⠊â " }, { "input": "loggia's", "output": "⠇⠕⠶⠊â â „â Ž" }, { "input": "loggias", "output": "⠇⠕⠶⠊â â Ž" }, { "input": "logging", "output": "⠇⠕⠶⠌" }, { "input": "logging's", "output": "⠇⠕⠶⠌⠄⠎" }, { "input": "logic", "output": "⠇⠕⠛⠊⠉" }, { "input": "logic's", "output": "⠇⠕⠛⠊⠉⠄⠎" }, { "input": "logical", "output": "⠇⠕⠛⠊⠉â â ‡" }, { "input": "logicality", "output": "⠇⠕⠛⠊⠉â â ‡â °â ½" }, { "input": "logicality's", "output": "⠇⠕⠛⠊⠉â â ‡â °â ½â „â Ž" }, { "input": "logically", "output": "⠇⠕⠛⠊⠉⠠⠽" }, { "input": "logician", "output": "⠇⠕⠛⠊⠉⠊â â " }, { "input": "logician's", "output": "⠇⠕⠛⠊⠉⠊â â â „â Ž" }, { "input": "logicians", "output": "⠇⠕⠛⠊⠉⠊â â â Ž" }, { "input": "logier", "output": "⠇⠕⠛⠊⠻" }, { "input": "logiest", "output": "⠇⠕⠛⠊⠑⠌" }, { "input": "logistic", "output": "⠇⠕⠛⠊⠌⠊⠉" }, { "input": "logistical", "output": "⠇⠕⠛⠊⠌⠊⠉â â ‡" }, { "input": "logistically", "output": "⠇⠕⠛⠊⠌⠊⠉⠠⠽" }, { "input": "logistics", "output": "⠇⠕⠛⠊⠌⠊⠉⠎" }, { "input": "logistics's", "output": "⠇⠕⠛⠊⠌⠊⠉⠎⠄⠎" }, { "input": "logjam", "output": "⠇⠕⠛⠚â â " }, { "input": "logjam's", "output": "⠇⠕⠛⠚â â â „â Ž" }, { "input": "logjams", "output": "⠇⠕⠛⠚â â â Ž" }, { "input": "logo", "output": "⠇⠕⠛⠕" }, { "input": "logo's", "output": "⠇⠕⠛⠕⠄⠎" }, { "input": "logos", "output": "⠇⠕⠛⠕⠎" }, { "input": "logotype", "output": "⠇⠕⠛⠕⠞⠽â â ‘" }, { "input": "logotype's", "output": "⠇⠕⠛⠕⠞⠽â â ‘â „â Ž" }, { "input": "logotypes", "output": "⠇⠕⠛⠕⠞⠽â â ‘â Ž" }, { "input": "logrolling", "output": "⠇⠕⠛⠗⠕⠇⠇⠌" }, { "input": "logrolling's", "output": "⠇⠕⠛⠗⠕⠇⠇⠌⠄⠎" }, { "input": "logs", "output": "⠇⠕⠛⠎" }, { "input": "logy", "output": "⠇⠕⠛⠽" }, { "input": "loin", "output": "⠇⠕⠔" }, { "input": "loin's", "output": "⠇⠕⠔⠄⠎" }, { "input": "loincloth", "output": "⠇⠕⠔⠉⠇⠕⠹" }, { "input": "loincloth's", "output": "⠇⠕⠔⠉⠇⠕⠹⠄⠎" }, { "input": "loincloths", "output": "⠇⠕⠔⠉⠇⠕⠹⠎" }, { "input": "loins", "output": "⠇⠕⠔⠎" }, { "input": "loiter", "output": "⠇⠕⠊⠞⠻" }, { "input": "loitered", "output": "⠇⠕⠊⠞⠻⠫" }, { "input": "loiterer", "output": "⠇⠕⠊⠞⠻⠻" }, { "input": "loiterer's", "output": "⠇⠕⠊⠞⠻⠻⠄⠎" }, { "input": "loiterers", "output": "⠇⠕⠊⠞⠻⠻⠎" }, { "input": "loitering", "output": "⠇⠕⠊⠞⠻⠌" }, { "input": "loitering's", "output": "⠇⠕⠊⠞⠻⠌⠄⠎" }, { "input": "loiters", "output": "⠇⠕⠊⠞⠻⠎" }, { "input": "loll", "output": "⠇⠕⠇⠇" }, { "input": "lolled", "output": "⠇⠕⠇⠇⠫" }, { "input": "lolling", "output": "⠇⠕⠇⠇⠌" }, { "input": "lollipop", "output": "⠇⠕⠇⠇⠊â â •â " }, { "input": "lollipop's", "output": "⠇⠕⠇⠇⠊â â •â â „â Ž" }, { "input": "lollipops", "output": "⠇⠕⠇⠇⠊â â •â â Ž" }, { "input": "lolls", "output": "⠇⠕⠇⠇⠎" }, { "input": "lollygag", "output": "⠇⠕⠇⠇⠽⠛â â ›" }, { "input": "lollygagged", "output": "⠇⠕⠇⠇⠽⠛â â ¶â «" }, { "input": "lollygagging", "output": "⠇⠕⠇⠇⠽⠛â â ¶â Œ" }, { "input": "lollygags", "output": "⠇⠕⠇⠇⠽⠛â â ›â Ž" }, { "input": "lone", "output": "â ‡â â •" }, { "input": "lonelier", "output": "â ‡â â •⠇⠊⠻" }, { "input": "loneliest", "output": "â ‡â â •⠇⠊⠑⠌" }, { "input": "loneliness", "output": "â ‡â â •⠇⠊⠰⠎" }, { "input": "loneliness's", "output": "â ‡â â •⠇⠊⠰⠎⠄⠎" }, { "input": "lonely", "output": "â ‡â â •⠇⠽" }, { "input": "loner", "output": "⠇⠕â â »" }, { "input": "loner's", "output": "⠇⠕â â »â „â Ž" }, { "input": "loners", "output": "⠇⠕â â »â Ž" }, { "input": "lonesome", "output": "â ‡â â •â â Ž" }, { "input": "lonesomely", "output": "â ‡â â •â â Žâ ‡â ½" }, { "input": "lonesomeness", "output": "â ‡â â •â â Žâ °â Ž" }, { "input": "lonesomeness's", "output": "â ‡â â •â â Žâ °â Žâ „â Ž" }, { "input": "long", "output": "⠇⠰⠛" }, { "input": "long's", "output": "⠇⠰⠛⠄⠎" }, { "input": "longboat", "output": "⠇⠰⠛⠃⠕â â ž" }, { "input": "longboat's", "output": "⠇⠰⠛⠃⠕â â žâ „â Ž" }, { "input": "longboats", "output": "⠇⠰⠛⠃⠕â â žâ Ž" }, { "input": "longed", "output": "⠇⠰⠛⠫" }, { "input": "longer", "output": "⠇⠰⠛⠻" }, { "input": "longest", "output": "⠇⠰⠛⠑⠌" }, { "input": "longevity", "output": "⠇⠰⠛⠑⠧⠰⠽" }, { "input": "longevity's", "output": "⠇⠰⠛⠑⠧⠰⠽⠄⠎" }, { "input": "longhair", "output": "⠇⠰⠛⠓â â Šâ —" }, { "input": "longhair's", "output": "⠇⠰⠛⠓â â Šâ —â „â Ž" }, { "input": "longhairs", "output": "⠇⠰⠛⠓â â Šâ —â Ž" }, { "input": "longhand", "output": "⠇⠰⠛⠓⠯" }, { "input": "longhand's", "output": "⠇⠰⠛⠓⠯⠄⠎" }, { "input": "longhorn", "output": "⠇⠰⠛⠓⠕⠗â " }, { "input": "longhorn's", "output": "⠇⠰⠛⠓⠕⠗â â „â Ž" }, { "input": "longhorns", "output": "⠇⠰⠛⠓⠕⠗â â Ž" }, { "input": "longing", "output": "⠇⠰⠛⠌" }, { "input": "longing's", "output": "⠇⠰⠛⠌⠄⠎" }, { "input": "longingly", "output": "⠇⠰⠛⠌⠇⠽" }, { "input": "longings", "output": "⠇⠰⠛⠌⠎" }, { "input": "longish", "output": "⠇⠰⠛⠊⠩" }, { "input": "longitude", "output": "⠇⠰⠛⠊⠞⠥⠙⠑" }, { "input": "longitude's", "output": "⠇⠰⠛⠊⠞⠥⠙⠑⠄⠎" }, { "input": "longitudes", "output": "⠇⠰⠛⠊⠞⠥⠙⠑⠎" }, { "input": "longitudinal", "output": "⠇⠰⠛⠊⠞⠥⠙⠔â â ‡" }, { "input": "longitudinally", "output": "⠇⠰⠛⠊⠞⠥⠙⠔⠠⠽" }, { "input": "longs", "output": "⠇⠰⠛⠎" }, { "input": "longshoreman", "output": "⠇⠰⠛⠩⠕⠗⠑â â â " }, { "input": "longshoreman's", "output": "⠇⠰⠛⠩⠕⠗⠑â â â â „â Ž" }, { "input": "longshoremen", "output": "⠇⠰⠛⠩⠕⠗⠑â â ¢" }, { "input": "longsighted", "output": "⠇⠰⠛⠎⠊⠣⠞⠫" }, { "input": "longstanding", "output": "⠇⠰⠛⠌⠯⠌" }, { "input": "longtime", "output": "⠇⠰⠛â â ž" }, { "input": "loofah", "output": "⠇⠕⠷â â “" }, { "input": "look", "output": "⠇⠕⠕⠅" }, { "input": "look's", "output": "⠇⠕⠕⠅⠄⠎" }, { "input": "lookalike", "output": "⠇⠕⠕⠅â â ‡â Šâ …â ‘" }, { "input": "lookalike's", "output": "⠇⠕⠕⠅â â ‡â Šâ …â ‘â „â Ž" }, { "input": "lookalikes", "output": "⠇⠕⠕⠅â â ‡â Šâ …â ‘â Ž" }, { "input": "looked", "output": "⠇⠕⠕⠅⠫" }, { "input": "looking", "output": "⠇⠕⠕⠅⠌" }, { "input": "lookout", "output": "⠇⠕⠕⠅⠳⠞" }, { "input": "lookout's", "output": "⠇⠕⠕⠅⠳⠞⠄⠎" }, { "input": "lookouts", "output": "⠇⠕⠕⠅⠳⠞⠎" }, { "input": "looks", "output": "⠇⠕⠕⠅⠎" }, { "input": "loom", "output": "⠇⠕⠕â " }, { "input": "loom's", "output": "⠇⠕⠕â â „â Ž" }, { "input": "loomed", "output": "⠇⠕⠕â â «" }, { "input": "looming", "output": "⠇⠕⠕â â Œ" }, { "input": "looms", "output": "⠇⠕⠕â â Ž" }, { "input": "loon", "output": "⠇⠕⠕â " }, { "input": "loon's", "output": "⠇⠕⠕â â „â Ž" }, { "input": "loonier", "output": "⠇⠕⠕â â Šâ »" }, { "input": "loonies", "output": "⠇⠕⠕â â Šâ ‘â Ž" }, { "input": "looniest", "output": "⠇⠕⠕â â Šâ ‘â Œ" }, { "input": "loons", "output": "⠇⠕⠕â â Ž" }, { "input": "loony", "output": "⠇⠕⠕â â ½" }, { "input": "loony's", "output": "⠇⠕⠕â â ½â „â Ž" }, { "input": "loop", "output": "⠇⠕⠕â " }, { "input": "loop's", "output": "⠇⠕⠕â â „â Ž" }, { "input": "looped", "output": "⠇⠕⠕â â «" }, { "input": "loophole", "output": "⠇⠕⠕â â “⠕⠇⠑" }, { "input": "loophole's", "output": "⠇⠕⠕â â “⠕⠇⠑⠄⠎" }, { "input": "loopholes", "output": "⠇⠕⠕â â “⠕⠇⠑⠎" }, { "input": "loopier", "output": "⠇⠕⠕â â Šâ »" }, { "input": "loopiest", "output": "⠇⠕⠕â â Šâ ‘â Œ" }, { "input": "looping", "output": "⠇⠕⠕â â Œ" }, { "input": "loops", "output": "⠇⠕⠕â â Ž" }, { "input": "loopy", "output": "⠇⠕⠕â â ½" }, { "input": "loose", "output": "⠇⠕⠕⠎⠑" }, { "input": "loosed", "output": "⠇⠕⠕⠎⠫" }, { "input": "loosely", "output": "⠇⠕⠕⠎⠑⠇⠽" }, { "input": "loosen", "output": "⠇⠕⠕⠎⠢" }, { "input": "loosened", "output": "⠇⠕⠕⠎⠢⠫" }, { "input": "looseness", "output": "⠇⠕⠕⠎⠑⠰⠎" }, { "input": "looseness's", "output": "⠇⠕⠕⠎⠑⠰⠎⠄⠎" }, { "input": "loosening", "output": "⠇⠕⠕⠎⠢⠌" }, { "input": "loosens", "output": "⠇⠕⠕⠎⠢⠎" }, { "input": "looser", "output": "⠇⠕⠕⠎⠻" }, { "input": "looses", "output": "⠇⠕⠕⠎⠑⠎" }, { "input": "loosest", "output": "⠇⠕⠕⠎⠑⠌" }, { "input": "loosing", "output": "⠇⠕⠕⠎⠌" }, { "input": "loot", "output": "⠇⠕⠕⠞" }, { "input": "loot's", "output": "⠇⠕⠕⠞⠄⠎" }, { "input": "looted", "output": "⠇⠕⠕⠞⠫" }, { "input": "looter", "output": "⠇⠕⠕⠞⠻" }, { "input": "looter's", "output": "⠇⠕⠕⠞⠻⠄⠎" }, { "input": "looters", "output": "⠇⠕⠕⠞⠻⠎" }, { "input": "looting", "output": "⠇⠕⠕⠞⠌" }, { "input": "looting's", "output": "⠇⠕⠕⠞⠌⠄⠎" }, { "input": "loots", "output": "⠇⠕⠕⠞⠎" }, { "input": "lop", "output": "⠇⠕â " }, { "input": "lope", "output": "⠇⠕â â ‘" }, { "input": "lope's", "output": "⠇⠕â â ‘â „â Ž" }, { "input": "loped", "output": "⠇⠕â â «" }, { "input": "lopes", "output": "⠇⠕â â ‘â Ž" }, { "input": "loping", "output": "⠇⠕â â Œ" }, { "input": "lopped", "output": "⠇⠕â â â «" }, { "input": "lopping", "output": "⠇⠕â â â Œ" }, { "input": "lops", "output": "⠇⠕â â Ž" }, { "input": "lopsided", "output": "⠇⠕â â Žâ Šâ ™â «" }, { "input": "lopsidedly", "output": "⠇⠕â â Žâ Šâ ™â «â ‡â ½" }, { "input": "lopsidedness", "output": "⠇⠕â â Žâ Šâ ™â «â °â Ž" }, { "input": "lopsidedness's", "output": "⠇⠕â â Žâ Šâ ™â «â °â Žâ „â Ž" }, { "input": "loquacious", "output": "⠇⠕⠟⠥â â ‰â Šâ ³â Ž" }, { "input": "loquaciousness", "output": "⠇⠕⠟⠥â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "loquaciousness's", "output": "⠇⠕⠟⠥â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "loquacity", "output": "⠇⠕⠟⠥â â ‰â °â ½" }, { "input": "loquacity's", "output": "⠇⠕⠟⠥â â ‰â °â ½â „â Ž" }, { "input": "lord", "output": "â â ‡" }, { "input": "lord's", "output": "â â ‡â „â Ž" }, { "input": "lorded", "output": "â â ‡â «" }, { "input": "lording", "output": "â â ‡â Œ" }, { "input": "lordlier", "output": "â â ‡â ‡â Šâ »" }, { "input": "lordliest", "output": "â â ‡â ‡â Šâ ‘â Œ" }, { "input": "lordliness", "output": "â â ‡â ‡â Šâ °â Ž" }, { "input": "lordliness's", "output": "â â ‡â ‡â Šâ °â Žâ „â Ž" }, { "input": "lordly", "output": "â â ‡â ‡â ½" }, { "input": "lords", "output": "â â ‡â Ž" }, { "input": "lordship", "output": "â â ‡â ©â Šâ " }, { "input": "lordship's", "output": "â â ‡â ©â Šâ â „â Ž" }, { "input": "lordships", "output": "â â ‡â ©â Šâ â Ž" }, { "input": "lore", "output": "⠇⠕⠗⠑" }, { "input": "lore's", "output": "⠇⠕⠗⠑⠄⠎" }, { "input": "lorgnette", "output": "⠇⠕⠗⠛â â ‘â žâ žâ ‘" }, { "input": "lorgnette's", "output": "⠇⠕⠗⠛â â ‘â žâ žâ ‘â „â Ž" }, { "input": "lorgnettes", "output": "⠇⠕⠗⠛â â ‘â žâ žâ ‘â Ž" }, { "input": "loris", "output": "⠇⠕⠗⠊⠎" }, { "input": "loris's", "output": "⠇⠕⠗⠊⠎⠄⠎" }, { "input": "lorises", "output": "⠇⠕⠗⠊⠎⠑⠎" }, { "input": "lorn", "output": "⠇⠕⠗â " }, { "input": "lorries", "output": "⠇⠕⠗⠗⠊⠑⠎" }, { "input": "lorry", "output": "⠇⠕⠗⠗⠽" }, { "input": "lorry's", "output": "⠇⠕⠗⠗⠽⠄⠎" }, { "input": "lose", "output": "⠇⠕⠎⠑" }, { "input": "loser", "output": "⠇⠕⠎⠻" }, { "input": "loser's", "output": "⠇⠕⠎⠻⠄⠎" }, { "input": "losers", "output": "⠇⠕⠎⠻⠎" }, { "input": "loses", "output": "⠇⠕⠎⠑⠎" }, { "input": "losing", "output": "⠇⠕⠎⠌" }, { "input": "losing's", "output": "⠇⠕⠎⠌⠄⠎" }, { "input": "losings", "output": "⠇⠕⠎⠌⠎" }, { "input": "loss", "output": "⠇⠕⠎⠎" }, { "input": "loss's", "output": "⠇⠕⠎⠎⠄⠎" }, { "input": "losses", "output": "⠇⠕⠎⠎⠑⠎" }, { "input": "lost", "output": "⠇⠕⠌" }, { "input": "lot", "output": "⠇⠕⠞" }, { "input": "lot's", "output": "⠇⠕⠞⠄⠎" }, { "input": "lotion", "output": "⠇⠕⠰â " }, { "input": "lotion's", "output": "⠇⠕⠰â â „â Ž" }, { "input": "lotions", "output": "⠇⠕⠰â â Ž" }, { "input": "lots", "output": "⠇⠕⠞⠎" }, { "input": "lotteries", "output": "⠇⠕⠞⠞⠻⠊⠑⠎" }, { "input": "lottery", "output": "⠇⠕⠞⠞⠻⠽" }, { "input": "lottery's", "output": "⠇⠕⠞⠞⠻⠽⠄⠎" }, { "input": "lotto", "output": "⠇⠕⠞⠞⠕" }, { "input": "lotto's", "output": "⠇⠕⠞⠞⠕⠄⠎" }, { "input": "lotus", "output": "⠇⠕⠞⠥⠎" }, { "input": "lotus's", "output": "⠇⠕⠞⠥⠎⠄⠎" }, { "input": "lotuses", "output": "⠇⠕⠞⠥⠎⠑⠎" }, { "input": "loud", "output": "⠇⠳⠙" }, { "input": "louder", "output": "⠇⠳⠙⠻" }, { "input": "loudest", "output": "⠇⠳⠙⠑⠌" }, { "input": "loudly", "output": "⠇⠳⠙⠇⠽" }, { "input": "loudmouth", "output": "⠇⠳⠙â â ³â ¹" }, { "input": "loudmouth's", "output": "⠇⠳⠙â â ³â ¹â „â Ž" }, { "input": "loudmouthed", "output": "⠇⠳⠙â â ³â ®â ™" }, { "input": "loudmouths", "output": "⠇⠳⠙â â ³â ¹â Ž" }, { "input": "loudness", "output": "⠇⠳⠙⠰⠎" }, { "input": "loudness's", "output": "⠇⠳⠙⠰⠎⠄⠎" }, { "input": "loudspeaker", "output": "⠇⠳⠙⠎â â ‚â …â »" }, { "input": "loudspeaker's", "output": "⠇⠳⠙⠎â â ‚⠅⠻⠄⠎" }, { "input": "loudspeakers", "output": "⠇⠳⠙⠎â â ‚⠅⠻⠎" }, { "input": "lounge", "output": "⠇⠳â â ›â ‘" }, { "input": "lounge's", "output": "⠇⠳â â ›â ‘â „â Ž" }, { "input": "lounged", "output": "⠇⠳â â ›â «" }, { "input": "lounges", "output": "⠇⠳â â ›â ‘â Ž" }, { "input": "lounging", "output": "⠇⠳â â ›â Œ" }, { "input": "louse", "output": "⠇⠳⠎⠑" }, { "input": "louse's", "output": "⠇⠳⠎⠑⠄⠎" }, { "input": "louses", "output": "⠇⠳⠎⠑⠎" }, { "input": "lousier", "output": "⠇⠳⠎⠊⠻" }, { "input": "lousiest", "output": "⠇⠳⠎⠊⠑⠌" }, { "input": "lousily", "output": "⠇⠳⠎⠊⠇⠽" }, { "input": "lousiness", "output": "⠇⠳⠎⠊⠰⠎" }, { "input": "lousiness's", "output": "⠇⠳⠎⠊⠰⠎⠄⠎" }, { "input": "lousy", "output": "⠇⠳⠎⠽" }, { "input": "lout", "output": "⠇⠳⠞" }, { "input": "lout's", "output": "⠇⠳⠞⠄⠎" }, { "input": "loutish", "output": "⠇⠳⠞⠊⠩" }, { "input": "loutishly", "output": "⠇⠳⠞⠊⠩⠇⠽" }, { "input": "louts", "output": "⠇⠳⠞⠎" }, { "input": "louver", "output": "⠇⠳⠧⠻" }, { "input": "louver's", "output": "⠇⠳⠧⠻⠄⠎" }, { "input": "louvered", "output": "⠇⠳⠧⠻⠫" }, { "input": "louvers", "output": "⠇⠳⠧⠻⠎" }, { "input": "lovable", "output": "⠇⠕⠧â â ¼" }, { "input": "lovableness", "output": "⠇⠕⠧â â ¼â °â Ž" }, { "input": "lovableness's", "output": "⠇⠕⠧â â ¼â °â Žâ „â Ž" }, { "input": "lovably", "output": "⠇⠕⠧â â ƒâ ‡â ½" }, { "input": "love", "output": "⠇⠕⠧⠑" }, { "input": "love's", "output": "⠇⠕⠧⠑⠄⠎" }, { "input": "lovebird", "output": "⠇⠕⠧⠑⠃⠊⠗⠙" }, { "input": "lovebird's", "output": "⠇⠕⠧⠑⠃⠊⠗⠙⠄⠎" }, { "input": "lovebirds", "output": "⠇⠕⠧⠑⠃⠊⠗⠙⠎" }, { "input": "lovechild", "output": "⠇⠕⠧⠑⠡⠊⠇⠙" }, { "input": "lovechild's", "output": "⠇⠕⠧⠑⠡⠊⠇⠙⠄⠎" }, { "input": "loved", "output": "⠇⠕⠧⠫" }, { "input": "loveless", "output": "⠇⠕⠧⠑⠨⠎" }, { "input": "lovelier", "output": "⠇⠕⠧⠑⠇⠊⠻" }, { "input": "lovelies", "output": "⠇⠕⠧⠑⠇⠊⠑⠎" }, { "input": "loveliest", "output": "⠇⠕⠧⠑⠇⠊⠑⠌" }, { "input": "loveliness", "output": "⠇⠕⠧⠑⠇⠊⠰⠎" }, { "input": "loveliness's", "output": "⠇⠕⠧⠑⠇⠊⠰⠎⠄⠎" }, { "input": "lovelorn", "output": "⠇⠕⠧⠑⠇⠕⠗â " }, { "input": "lovely", "output": "⠇⠕⠧⠑⠇⠽" }, { "input": "lovely's", "output": "⠇⠕⠧⠑⠇⠽⠄⠎" }, { "input": "lovemaking", "output": "⠇⠕⠧⠑â â â …â Œ" }, { "input": "lovemaking's", "output": "⠇⠕⠧⠑â â â …⠌⠄⠎" }, { "input": "lover", "output": "⠇⠕⠧⠻" }, { "input": "lover's", "output": "⠇⠕⠧⠻⠄⠎" }, { "input": "lovers", "output": "⠇⠕⠧⠻⠎" }, { "input": "loves", "output": "⠇⠕⠧⠑⠎" }, { "input": "lovesick", "output": "⠇⠕⠧⠑⠎⠊⠉⠅" }, { "input": "loving", "output": "⠇⠕⠧⠌" }, { "input": "lovingly", "output": "⠇⠕⠧⠌⠇⠽" }, { "input": "low", "output": "⠇⠪" }, { "input": "low's", "output": "⠇⠪⠄⠎" }, { "input": "lowborn", "output": "⠇⠪⠃⠕⠗â " }, { "input": "lowboy", "output": "⠇⠪⠃⠕⠽" }, { "input": "lowboy's", "output": "⠇⠪⠃⠕⠽⠄⠎" }, { "input": "lowboys", "output": "⠇⠪⠃⠕⠽⠎" }, { "input": "lowbrow", "output": "⠇⠪⠃⠗⠪" }, { "input": "lowbrow's", "output": "⠇⠪⠃⠗⠪⠄⠎" }, { "input": "lowbrows", "output": "⠇⠪⠃⠗⠪⠎" }, { "input": "lowdown", "output": "⠇⠪⠙⠪â " }, { "input": "lowdown's", "output": "⠇⠪⠙⠪â â „â Ž" }, { "input": "lowed", "output": "⠇⠪⠫" }, { "input": "lower", "output": "⠇⠪⠻" }, { "input": "lowercase", "output": "⠇⠪⠻⠉â â Žâ ‘" }, { "input": "lowercase's", "output": "⠇⠪⠻⠉â â Žâ ‘â „â Ž" }, { "input": "lowered", "output": "⠇⠪⠻⠫" }, { "input": "lowering", "output": "⠇⠪⠻⠌" }, { "input": "lowermost", "output": "⠇⠪⠻â â •â Œ" }, { "input": "lowers", "output": "⠇⠪⠻⠎" }, { "input": "lowest", "output": "⠇⠪⠑⠌" }, { "input": "lowing", "output": "⠇⠪⠌" }, { "input": "lowish", "output": "⠇⠪⠊⠩" }, { "input": "lowland", "output": "⠇⠪⠇⠯" }, { "input": "lowland's", "output": "⠇⠪⠇⠯⠄⠎" }, { "input": "lowlands", "output": "⠇⠪⠇⠯⠎" }, { "input": "lowlier", "output": "⠇⠪⠇⠊⠻" }, { "input": "lowliest", "output": "⠇⠪⠇⠊⠑⠌" }, { "input": "lowlife", "output": "⠇⠪⠇⠊⠋⠑" }, { "input": "lowlife's", "output": "⠇⠪⠇⠊⠋⠑⠄⠎" }, { "input": "lowlifes", "output": "⠇⠪⠇⠊⠋⠑⠎" }, { "input": "lowliness", "output": "⠇⠪⠇⠊⠰⠎" }, { "input": "lowliness's", "output": "⠇⠪⠇⠊⠰⠎⠄⠎" }, { "input": "lowly", "output": "⠇⠪⠇⠽" }, { "input": "lowness", "output": "⠇⠪⠰⠎" }, { "input": "lowness's", "output": "⠇⠪⠰⠎⠄⠎" }, { "input": "lows", "output": "⠇⠪⠎" }, { "input": "lox", "output": "⠇⠕⠭" }, { "input": "lox's", "output": "⠇⠕⠭⠄⠎" }, { "input": "loyal", "output": "⠇⠕⠽â â ‡" }, { "input": "loyaler", "output": "⠇⠕⠽â â ‡â »" }, { "input": "loyalest", "output": "⠇⠕⠽â â ‡â ‘â Œ" }, { "input": "loyalism", "output": "⠇⠕⠽â â ‡â Šâ Žâ " }, { "input": "loyalism's", "output": "⠇⠕⠽â â ‡â Šâ Žâ â „â Ž" }, { "input": "loyalist", "output": "⠇⠕⠽â â ‡â Šâ Œ" }, { "input": "loyalist's", "output": "⠇⠕⠽â â ‡â Šâ Œâ „â Ž" }, { "input": "loyalists", "output": "⠇⠕⠽â â ‡â Šâ Œâ Ž" }, { "input": "loyally", "output": "⠇⠕⠽⠠⠽" }, { "input": "loyalties", "output": "⠇⠕⠽â â ‡â žâ Šâ ‘â Ž" }, { "input": "loyalty", "output": "⠇⠕⠽â â ‡â žâ ½" }, { "input": "loyalty's", "output": "⠇⠕⠽â â ‡â žâ ½â „â Ž" }, { "input": "lozenge", "output": "⠇⠕⠵⠢⠛⠑" }, { "input": "lozenge's", "output": "⠇⠕⠵⠢⠛⠑⠄⠎" }, { "input": "lozenges", "output": "⠇⠕⠵⠢⠛⠑⠎" }, { "input": "ls", "output": "⠇⠎" }, { "input": "luau", "output": "⠇⠥â â ¥" }, { "input": "luau's", "output": "⠇⠥â â ¥â „â Ž" }, { "input": "luaus", "output": "⠇⠥â â ¥â Ž" }, { "input": "lubber", "output": "⠇⠥⠆⠻" }, { "input": "lubber's", "output": "⠇⠥⠆⠻⠄⠎" }, { "input": "lubberly", "output": "⠇⠥⠆⠻⠇⠽" }, { "input": "lubbers", "output": "⠇⠥⠆⠻⠎" }, { "input": "lube", "output": "⠇⠥⠃⠑" }, { "input": "lube's", "output": "⠇⠥⠃⠑⠄⠎" }, { "input": "lubed", "output": "⠇⠥⠃⠫" }, { "input": "lubes", "output": "⠇⠥⠃⠑⠎" }, { "input": "lubing", "output": "⠇⠥⠃⠌" }, { "input": "lubricant", "output": "⠇⠥⠃⠗⠊⠉â â â ž" }, { "input": "lubricant's", "output": "⠇⠥⠃⠗⠊⠉â â â žâ „â Ž" }, { "input": "lubricants", "output": "⠇⠥⠃⠗⠊⠉â â â žâ Ž" }, { "input": "lubricate", "output": "⠇⠥⠃⠗⠊⠉â â žâ ‘" }, { "input": "lubricated", "output": "⠇⠥⠃⠗⠊⠉â â žâ «" }, { "input": "lubricates", "output": "⠇⠥⠃⠗⠊⠉â â žâ ‘â Ž" }, { "input": "lubricating", "output": "⠇⠥⠃⠗⠊⠉â â žâ Œ" }, { "input": "lubrication", "output": "⠇⠥⠃⠗⠊⠉⠠â " }, { "input": "lubrication's", "output": "⠇⠥⠃⠗⠊⠉⠠â â „â Ž" }, { "input": "lubricator", "output": "⠇⠥⠃⠗⠊⠉â â žâ •â —" }, { "input": "lubricator's", "output": "⠇⠥⠃⠗⠊⠉â â žâ •â —â „â Ž" }, { "input": "lubricators", "output": "⠇⠥⠃⠗⠊⠉â â žâ •â —â Ž" }, { "input": "lubricity", "output": "⠇⠥⠃⠗⠊⠉⠰⠽" }, { "input": "lubricity's", "output": "⠇⠥⠃⠗⠊⠉⠰⠽⠄⠎" }, { "input": "lucid", "output": "⠇⠥⠉⠊⠙" }, { "input": "lucidity", "output": "⠇⠥⠉⠊⠙⠰⠽" }, { "input": "lucidity's", "output": "⠇⠥⠉⠊⠙⠰⠽⠄⠎" }, { "input": "lucidly", "output": "⠇⠥⠉⠊⠙⠇⠽" }, { "input": "lucidness", "output": "⠇⠥⠉⠊⠙⠰⠎" }, { "input": "lucidness's", "output": "⠇⠥⠉⠊⠙⠰⠎⠄⠎" }, { "input": "luck", "output": "⠇⠥⠉⠅" }, { "input": "luck's", "output": "⠇⠥⠉⠅⠄⠎" }, { "input": "lucked", "output": "⠇⠥⠉⠅⠫" }, { "input": "luckier", "output": "⠇⠥⠉⠅⠊⠻" }, { "input": "luckiest", "output": "⠇⠥⠉⠅⠊⠑⠌" }, { "input": "luckily", "output": "⠇⠥⠉⠅⠊⠇⠽" }, { "input": "luckiness", "output": "⠇⠥⠉⠅⠊⠰⠎" }, { "input": "luckiness's", "output": "⠇⠥⠉⠅⠊⠰⠎⠄⠎" }, { "input": "lucking", "output": "⠇⠥⠉⠅⠌" }, { "input": "luckless", "output": "⠇⠥⠉⠅⠨⠎" }, { "input": "lucks", "output": "⠇⠥⠉⠅⠎" }, { "input": "lucky", "output": "⠇⠥⠉⠅⠽" }, { "input": "lucrative", "output": "⠇⠥⠉⠗â â žâ Šâ §â ‘" }, { "input": "lucratively", "output": "⠇⠥⠉⠗â â žâ Šâ §â ‘⠇⠽" }, { "input": "lucrativeness", "output": "⠇⠥⠉⠗â â žâ Šâ §â ‘â °â Ž" }, { "input": "lucrativeness's", "output": "⠇⠥⠉⠗â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "lucre", "output": "⠇⠥⠉⠗⠑" }, { "input": "lucre's", "output": "⠇⠥⠉⠗⠑⠄⠎" }, { "input": "lucubrate", "output": "⠇⠥⠉⠥⠃⠗â â žâ ‘" }, { "input": "lucubrated", "output": "⠇⠥⠉⠥⠃⠗â â žâ «" }, { "input": "lucubrates", "output": "⠇⠥⠉⠥⠃⠗â â žâ ‘â Ž" }, { "input": "lucubrating", "output": "⠇⠥⠉⠥⠃⠗â â žâ Œ" }, { "input": "lucubration", "output": "⠇⠥⠉⠥⠃⠗⠠â " }, { "input": "lucubration's", "output": "⠇⠥⠉⠥⠃⠗⠠â â „â Ž" }, { "input": "ludicrous", "output": "⠇⠥⠙⠊⠉⠗⠳⠎" }, { "input": "ludicrously", "output": "⠇⠥⠙⠊⠉⠗⠳⠎⠇⠽" }, { "input": "ludicrousness", "output": "⠇⠥⠙⠊⠉⠗⠳⠎⠰⠎" }, { "input": "ludicrousness's", "output": "⠇⠥⠙⠊⠉⠗⠳⠎⠰⠎⠄⠎" }, { "input": "luff", "output": "⠇⠥⠋⠋" }, { "input": "luffed", "output": "⠇⠥⠖⠫" }, { "input": "luffing", "output": "⠇⠥⠖⠌" }, { "input": "luffs", "output": "⠇⠥⠖⠎" }, { "input": "lug", "output": "⠇⠥⠛" }, { "input": "lug's", "output": "⠇⠥⠛⠄⠎" }, { "input": "luggage", "output": "⠇⠥⠶â â ›â ‘" }, { "input": "luggage's", "output": "⠇⠥⠶â â ›â ‘â „â Ž" }, { "input": "lugged", "output": "⠇⠥⠶⠫" }, { "input": "lugger", "output": "⠇⠥⠶⠻" }, { "input": "lugger's", "output": "⠇⠥⠶⠻⠄⠎" }, { "input": "luggers", "output": "⠇⠥⠶⠻⠎" }, { "input": "lugging", "output": "⠇⠥⠶⠌" }, { "input": "lugs", "output": "⠇⠥⠛⠎" }, { "input": "lugsail", "output": "⠇⠥⠛⠎â â Šâ ‡" }, { "input": "lugsail's", "output": "⠇⠥⠛⠎â â Šâ ‡â „â Ž" }, { "input": "lugsails", "output": "⠇⠥⠛⠎â â Šâ ‡â Ž" }, { "input": "lugubrious", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎" }, { "input": "lugubriously", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎⠇⠽" }, { "input": "lugubriousness", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎⠰⠎" }, { "input": "lugubriousness's", "output": "⠇⠥⠛⠥⠃⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "lukewarm", "output": "⠇⠥⠅⠑⠺⠜â " }, { "input": "lukewarmly", "output": "⠇⠥⠅⠑⠺⠜â â ‡â ½" }, { "input": "lukewarmness", "output": "⠇⠥⠅⠑⠺⠜â â °â Ž" }, { "input": "lukewarmness's", "output": "⠇⠥⠅⠑⠺⠜â â °â Žâ „â Ž" }, { "input": "lull", "output": "⠇⠥⠇⠇" }, { "input": "lull's", "output": "⠇⠥⠇⠇⠄⠎" }, { "input": "lullabies", "output": "⠇⠥⠇⠇â â ƒâ Šâ ‘â Ž" }, { "input": "lullaby", "output": "⠇⠥⠇⠇â â ƒâ ½" }, { "input": "lullaby's", "output": "⠇⠥⠇⠇â â ƒâ ½â „â Ž" }, { "input": "lulled", "output": "⠇⠥⠇⠇⠫" }, { "input": "lulling", "output": "⠇⠥⠇⠇⠌" }, { "input": "lulls", "output": "⠇⠥⠇⠇⠎" }, { "input": "lumbago", "output": "⠇⠥â â ƒâ â ›â •" }, { "input": "lumbago's", "output": "⠇⠥â â ƒâ â ›â •â „â Ž" }, { "input": "lumbar", "output": "⠇⠥â â ƒâ œ" }, { "input": "lumber", "output": "⠇⠥â â ƒâ »" }, { "input": "lumber's", "output": "⠇⠥â â ƒâ »â „â Ž" }, { "input": "lumbered", "output": "⠇⠥â â ƒâ »â «" }, { "input": "lumberer", "output": "⠇⠥â â ƒâ »â »" }, { "input": "lumberer's", "output": "⠇⠥â â ƒâ »â »â „â Ž" }, { "input": "lumberers", "output": "⠇⠥â â ƒâ »â »â Ž" }, { "input": "lumbering", "output": "⠇⠥â â ƒâ »â Œ" }, { "input": "lumbering's", "output": "⠇⠥â â ƒâ »â Œâ „â Ž" }, { "input": "lumberjack", "output": "⠇⠥â â ƒâ »â šâ â ‰â …" }, { "input": "lumberjack's", "output": "⠇⠥â â ƒâ »â šâ â ‰â …â „â Ž" }, { "input": "lumberjacks", "output": "⠇⠥â â ƒâ »â šâ â ‰â …â Ž" }, { "input": "lumberman", "output": "⠇⠥â â ƒâ »â â â " }, { "input": "lumberman's", "output": "⠇⠥â â ƒâ »â â â â „â Ž" }, { "input": "lumbermen", "output": "⠇⠥â â ƒâ »â â ¢" }, { "input": "lumbers", "output": "⠇⠥â â ƒâ »â Ž" }, { "input": "lumberyard", "output": "⠇⠥â â ƒâ »â ½â œâ ™" }, { "input": "lumberyard's", "output": "⠇⠥â â ƒâ »â ½â œâ ™â „â Ž" }, { "input": "lumberyards", "output": "⠇⠥â â ƒâ »â ½â œâ ™â Ž" }, { "input": "luminaries", "output": "⠇⠥â â ”⠜⠊⠑⠎" }, { "input": "luminary", "output": "⠇⠥â â ”⠜⠽" }, { "input": "luminary's", "output": "⠇⠥â â ”⠜⠽⠄⠎" }, { "input": "luminescence", "output": "⠇⠥â â ”⠑⠎⠉⠰⠑" }, { "input": "luminescence's", "output": "⠇⠥â â ”⠑⠎⠉⠰⠑⠄⠎" }, { "input": "luminescent", "output": "⠇⠥â â ”⠑⠎⠉⠢⠞" }, { "input": "luminosity", "output": "⠇⠥â â ”â •â Žâ °â ½" }, { "input": "luminosity's", "output": "⠇⠥â â ”⠕⠎⠰⠽⠄⠎" }, { "input": "luminous", "output": "⠇⠥â â ”⠳⠎" }, { "input": "luminously", "output": "⠇⠥â â ”⠳⠎⠇⠽" }, { "input": "lummox", "output": "⠇⠥â â â •â ­" }, { "input": "lummox's", "output": "⠇⠥â â â •â ­â „â Ž" }, { "input": "lummoxes", "output": "⠇⠥â â â •â ­â ‘â Ž" }, { "input": "lump", "output": "⠇⠥â â " }, { "input": "lump's", "output": "⠇⠥â â â „â Ž" }, { "input": "lumped", "output": "⠇⠥â â â «" }, { "input": "lumpier", "output": "⠇⠥â â â Šâ »" }, { "input": "lumpiest", "output": "⠇⠥â â â Šâ ‘â Œ" }, { "input": "lumpiness", "output": "⠇⠥â â â Šâ °â Ž" }, { "input": "lumpiness's", "output": "⠇⠥â â â Šâ °â Žâ „â Ž" }, { "input": "lumping", "output": "⠇⠥â â â Œ" }, { "input": "lumpish", "output": "⠇⠥â â â Šâ ©" }, { "input": "lumps", "output": "⠇⠥â â â Ž" }, { "input": "lumpy", "output": "⠇⠥â â â ½" }, { "input": "lunacies", "output": "⠇⠥â â â ‰â Šâ ‘â Ž" }, { "input": "lunacy", "output": "⠇⠥â â â ‰â ½" }, { "input": "lunacy's", "output": "⠇⠥â â â ‰â ½â „â Ž" }, { "input": "lunar", "output": "⠇⠥â â œ" }, { "input": "lunatic", "output": "⠇⠥â â â žâ Šâ ‰" }, { "input": "lunatic's", "output": "⠇⠥â â â žâ Šâ ‰â „â Ž" }, { "input": "lunatics", "output": "⠇⠥â â â žâ Šâ ‰â Ž" }, { "input": "lunch", "output": "⠇⠥â â ¡" }, { "input": "lunch's", "output": "⠇⠥â â ¡â „â Ž" }, { "input": "lunchbox", "output": "⠇⠥â â ¡â ƒâ •â ­" }, { "input": "lunched", "output": "⠇⠥â â ¡â «" }, { "input": "luncheon", "output": "⠇⠥â â ¡â ‘â •â " }, { "input": "luncheon's", "output": "⠇⠥â â ¡â ‘â •â â „â Ž" }, { "input": "luncheonette", "output": "⠇⠥â â ¡â ‘â •â â ‘â žâ žâ ‘" }, { "input": "luncheonette's", "output": "⠇⠥â â ¡â ‘â •â â ‘â žâ žâ ‘â „â Ž" }, { "input": "luncheonettes", "output": "⠇⠥â â ¡â ‘â •â â ‘â žâ žâ ‘â Ž" }, { "input": "luncheons", "output": "⠇⠥â â ¡â ‘â •â â Ž" }, { "input": "lunches", "output": "⠇⠥â â ¡â ‘â Ž" }, { "input": "lunching", "output": "⠇⠥â â ¡â Œ" }, { "input": "lunchroom", "output": "⠇⠥â â ¡â —â •â •â " }, { "input": "lunchroom's", "output": "⠇⠥â â ¡â —â •â •â â „â Ž" }, { "input": "lunchrooms", "output": "⠇⠥â â ¡â —â •â •â â Ž" }, { "input": "lunchtime", "output": "⠇⠥â â ¡â â ž" }, { "input": "lunchtime's", "output": "⠇⠥â â ¡â â žâ „â Ž" }, { "input": "lunchtimes", "output": "⠇⠥â â ¡â â žâ Ž" }, { "input": "lung", "output": "⠇⠥â â ›" }, { "input": "lung's", "output": "⠇⠥â â ›â „â Ž" }, { "input": "lunge", "output": "⠇⠥â â ›â ‘" }, { "input": "lunge's", "output": "⠇⠥â â ›â ‘â „â Ž" }, { "input": "lunged", "output": "⠇⠥â â ›â «" }, { "input": "lunges", "output": "⠇⠥â â ›â ‘â Ž" }, { "input": "lungfish", "output": "⠇⠥â â ›â ‹â Šâ ©" }, { "input": "lungfish's", "output": "⠇⠥â â ›â ‹â Šâ ©â „â Ž" }, { "input": "lungfishes", "output": "⠇⠥â â ›â ‹â Šâ ©â ‘â Ž" }, { "input": "lunging", "output": "⠇⠥â â ›â Œ" }, { "input": "lungs", "output": "⠇⠥â â ›â Ž" }, { "input": "lunkhead", "output": "⠇⠥â â …â “â ‚â ™" }, { "input": "lunkhead's", "output": "⠇⠥â â …⠓⠂⠙⠄⠎" }, { "input": "lunkheads", "output": "⠇⠥â â …⠓⠂⠙⠎" }, { "input": "lupine", "output": "⠇⠥â â ”â ‘" }, { "input": "lupine's", "output": "⠇⠥â â ”â ‘â „â Ž" }, { "input": "lupines", "output": "⠇⠥â â ”â ‘â Ž" }, { "input": "lupus", "output": "⠇⠥â â ¥â Ž" }, { "input": "lupus's", "output": "⠇⠥â â ¥â Žâ „â Ž" }, { "input": "lurch", "output": "⠇⠥⠗⠡" }, { "input": "lurch's", "output": "⠇⠥⠗⠡⠄⠎" }, { "input": "lurched", "output": "⠇⠥⠗⠡⠫" }, { "input": "lurches", "output": "⠇⠥⠗⠡⠑⠎" }, { "input": "lurching", "output": "⠇⠥⠗⠡⠌" }, { "input": "lure", "output": "⠇⠥⠗⠑" }, { "input": "lure's", "output": "⠇⠥⠗⠑⠄⠎" }, { "input": "lured", "output": "⠇⠥⠗⠫" }, { "input": "lures", "output": "⠇⠥⠗⠑⠎" }, { "input": "lurid", "output": "⠇⠥⠗⠊⠙" }, { "input": "luridly", "output": "⠇⠥⠗⠊⠙⠇⠽" }, { "input": "luridness", "output": "⠇⠥⠗⠊⠙⠰⠎" }, { "input": "luridness's", "output": "⠇⠥⠗⠊⠙⠰⠎⠄⠎" }, { "input": "luring", "output": "⠇⠥⠗⠌" }, { "input": "lurk", "output": "⠇⠥⠗⠅" }, { "input": "lurked", "output": "⠇⠥⠗⠅⠫" }, { "input": "lurking", "output": "⠇⠥⠗⠅⠌" }, { "input": "lurks", "output": "⠇⠥⠗⠅⠎" }, { "input": "luscious", "output": "⠇⠥⠎⠉⠊⠳⠎" }, { "input": "lusciously", "output": "⠇⠥⠎⠉⠊⠳⠎⠇⠽" }, { "input": "lusciousness", "output": "⠇⠥⠎⠉⠊⠳⠎⠰⠎" }, { "input": "lusciousness's", "output": "⠇⠥⠎⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "lush", "output": "⠇⠥⠩" }, { "input": "lush's", "output": "⠇⠥⠩⠄⠎" }, { "input": "lusher", "output": "⠇⠥⠩⠻" }, { "input": "lushes", "output": "⠇⠥⠩⠑⠎" }, { "input": "lushest", "output": "⠇⠥⠩⠑⠌" }, { "input": "lushly", "output": "⠇⠥⠩⠇⠽" }, { "input": "lushness", "output": "⠇⠥⠩⠰⠎" }, { "input": "lushness's", "output": "⠇⠥⠩⠰⠎⠄⠎" }, { "input": "lust", "output": "⠇⠥⠌" }, { "input": "lust's", "output": "⠇⠥⠌⠄⠎" }, { "input": "lusted", "output": "⠇⠥⠌⠫" }, { "input": "luster", "output": "⠇⠥⠌⠻" }, { "input": "luster's", "output": "⠇⠥⠌⠻⠄⠎" }, { "input": "lusterless", "output": "⠇⠥⠌⠻⠨⠎" }, { "input": "lustful", "output": "⠇⠥⠌⠰⠇" }, { "input": "lustfully", "output": "⠇⠥⠌⠰⠇⠇⠽" }, { "input": "lustier", "output": "⠇⠥⠌⠊⠻" }, { "input": "lustiest", "output": "⠇⠥⠌⠊⠑⠌" }, { "input": "lustily", "output": "⠇⠥⠌⠊⠇⠽" }, { "input": "lustiness", "output": "⠇⠥⠌⠊⠰⠎" }, { "input": "lustiness's", "output": "⠇⠥⠌⠊⠰⠎⠄⠎" }, { "input": "lusting", "output": "⠇⠥⠌⠌" }, { "input": "lustrous", "output": "⠇⠥⠌⠗⠳⠎" }, { "input": "lustrously", "output": "⠇⠥⠌⠗⠳⠎⠇⠽" }, { "input": "lusts", "output": "⠇⠥⠌⠎" }, { "input": "lusty", "output": "⠇⠥⠌⠽" }, { "input": "lutanist", "output": "⠇⠥⠞â â â Šâ Œ" }, { "input": "lutanist's", "output": "⠇⠥⠞â â â Šâ Œâ „â Ž" }, { "input": "lutanists", "output": "⠇⠥⠞â â â Šâ Œâ Ž" }, { "input": "lute", "output": "⠇⠥⠞⠑" }, { "input": "lute's", "output": "⠇⠥⠞⠑⠄⠎" }, { "input": "lutenist", "output": "⠇⠥⠞⠢⠊⠌" }, { "input": "lutenist's", "output": "⠇⠥⠞⠢⠊⠌⠄⠎" }, { "input": "lutenists", "output": "⠇⠥⠞⠢⠊⠌⠎" }, { "input": "lutes", "output": "⠇⠥⠞⠑⠎" }, { "input": "lutetium", "output": "⠇⠥⠞⠑⠞⠊⠥â " }, { "input": "lutetium's", "output": "⠇⠥⠞⠑⠞⠊⠥â â „â Ž" }, { "input": "luxuriance", "output": "⠇⠥⠭⠥⠗⠊⠨⠑" }, { "input": "luxuriance's", "output": "⠇⠥⠭⠥⠗⠊⠨⠑⠄⠎" }, { "input": "luxuriant", "output": "⠇⠥⠭⠥⠗⠊â â â ž" }, { "input": "luxuriantly", "output": "⠇⠥⠭⠥⠗⠊â â â žâ ‡â ½" }, { "input": "luxuriate", "output": "⠇⠥⠭⠥⠗⠊â â žâ ‘" }, { "input": "luxuriated", "output": "⠇⠥⠭⠥⠗⠊â â žâ «" }, { "input": "luxuriates", "output": "⠇⠥⠭⠥⠗⠊â â žâ ‘â Ž" }, { "input": "luxuriating", "output": "⠇⠥⠭⠥⠗⠊â â žâ Œ" }, { "input": "luxuriation", "output": "⠇⠥⠭⠥⠗⠊⠠â " }, { "input": "luxuriation's", "output": "⠇⠥⠭⠥⠗⠊⠠â â „â Ž" }, { "input": "luxuries", "output": "⠇⠥⠭⠥⠗⠊⠑⠎" }, { "input": "luxurious", "output": "⠇⠥⠭⠥⠗⠊⠳⠎" }, { "input": "luxuriously", "output": "⠇⠥⠭⠥⠗⠊⠳⠎⠇⠽" }, { "input": "luxuriousness", "output": "⠇⠥⠭⠥⠗⠊⠳⠎⠰⠎" }, { "input": "luxuriousness's", "output": "⠇⠥⠭⠥⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "luxury", "output": "⠇⠥⠭⠥⠗⠽" }, { "input": "luxury's", "output": "⠇⠥⠭⠥⠗⠽⠄⠎" }, { "input": "lyceum", "output": "⠇⠽⠉⠑⠥â " }, { "input": "lyceum's", "output": "⠇⠽⠉⠑⠥â â „â Ž" }, { "input": "lyceums", "output": "⠇⠽⠉⠑⠥â â Ž" }, { "input": "lye", "output": "⠇⠽⠑" }, { "input": "lye's", "output": "⠇⠽⠑⠄⠎" }, { "input": "lying", "output": "⠇⠽⠌" }, { "input": "lying's", "output": "⠇⠽⠌⠄⠎" }, { "input": "lymph", "output": "⠇⠽â â â “" }, { "input": "lymph's", "output": "⠇⠽â â â “â „â Ž" }, { "input": "lymphatic", "output": "⠇⠽â â â “â â žâ Šâ ‰" }, { "input": "lymphatic's", "output": "⠇⠽â â â “â â žâ Šâ ‰â „â Ž" }, { "input": "lymphatics", "output": "⠇⠽â â â “â â žâ Šâ ‰â Ž" }, { "input": "lymphocyte", "output": "⠇⠽â â â “⠕⠉⠽⠞⠑" }, { "input": "lymphocyte's", "output": "⠇⠽â â â “⠕⠉⠽⠞⠑⠄⠎" }, { "input": "lymphocytes", "output": "⠇⠽â â â “⠕⠉⠽⠞⠑⠎" }, { "input": "lymphoid", "output": "⠇⠽â â â “â •â Šâ ™" }, { "input": "lymphoma", "output": "⠇⠽â â â “â •â â " }, { "input": "lymphoma's", "output": "⠇⠽â â â “â •â â â „â Ž" }, { "input": "lymphomas", "output": "⠇⠽â â â “â •â â â Ž" }, { "input": "lynch", "output": "⠇⠽â â ¡" }, { "input": "lynched", "output": "⠇⠽â â ¡â «" }, { "input": "lyncher", "output": "⠇⠽â â ¡â »" }, { "input": "lyncher's", "output": "⠇⠽â â ¡â »â „â Ž" }, { "input": "lynchers", "output": "⠇⠽â â ¡â »â Ž" }, { "input": "lynches", "output": "⠇⠽â â ¡â ‘â Ž" }, { "input": "lynching", "output": "⠇⠽â â ¡â Œ" }, { "input": "lynching's", "output": "⠇⠽â â ¡â Œâ „â Ž" }, { "input": "lynchings", "output": "⠇⠽â â ¡â Œâ Ž" }, { "input": "lynx", "output": "⠇⠽â â ­" }, { "input": "lynx's", "output": "⠇⠽â â ­â „â Ž" }, { "input": "lynxes", "output": "⠇⠽â â ­â ‘â Ž" }, { "input": "lyre", "output": "⠇⠽⠗⠑" }, { "input": "lyre's", "output": "⠇⠽⠗⠑⠄⠎" }, { "input": "lyres", "output": "⠇⠽⠗⠑⠎" }, { "input": "lyric", "output": "⠇⠽⠗⠊⠉" }, { "input": "lyric's", "output": "⠇⠽⠗⠊⠉⠄⠎" }, { "input": "lyrical", "output": "⠇⠽⠗⠊⠉â â ‡" }, { "input": "lyrically", "output": "⠇⠽⠗⠊⠉⠠⠽" }, { "input": "lyricism's", "output": "⠇⠽⠗⠊⠉⠊⠎â â „â Ž" }, { "input": "lyricist", "output": "⠇⠽⠗⠊⠉⠊⠌" }, { "input": "lyricist's", "output": "⠇⠽⠗⠊⠉⠊⠌⠄⠎" }, { "input": "lyricists", "output": "⠇⠽⠗⠊⠉⠊⠌⠎" }, { "input": "lyrics", "output": "⠇⠽⠗⠊⠉⠎" }, { "input": "m", "output": "â °â " }, { "input": "ma", "output": "â â " }, { "input": "ma's", "output": "â â â „â Ž" }, { "input": "macabre", "output": "â â â ‰â â ƒâ —â ‘" }, { "input": "macadam", "output": "â â â ‰â â ™â â " }, { "input": "macadam's", "output": "â â â ‰â â ™â â â „â Ž" }, { "input": "macadamize", "output": "â â â ‰â â ™â â â Šâ µâ ‘" }, { "input": "macadamized", "output": "â â â ‰â â ™â â â Šâ µâ «" }, { "input": "macadamizes", "output": "â â â ‰â â ™â â â Šâ µâ ‘â Ž" }, { "input": "macadamizing", "output": "â â â ‰â â ™â â â Šâ µâ Œ" }, { "input": "macaque", "output": "â â â ‰â â Ÿâ ¥â ‘" }, { "input": "macaque's", "output": "â â â ‰â â Ÿâ ¥â ‘â „â Ž" }, { "input": "macaques", "output": "â â â ‰â â Ÿâ ¥â ‘â Ž" }, { "input": "macaroni", "output": "â â â ‰â œâ •â â Š" }, { "input": "macaroni's", "output": "â â â ‰â œâ •â â Šâ „â Ž" }, { "input": "macaronis", "output": "â â â ‰â œâ •â â Šâ Ž" }, { "input": "macaroon", "output": "â â â ‰â œâ •â •â " }, { "input": "macaroon's", "output": "â â â ‰â œâ •â •â â „â Ž" }, { "input": "macaroons", "output": "â â â ‰â œâ •â •â â Ž" }, { "input": "macaw", "output": "â â â ‰â â º" }, { "input": "macaw's", "output": "â â â ‰â â ºâ „â Ž" }, { "input": "macaws", "output": "â â â ‰â â ºâ Ž" }, { "input": "mace", "output": "â â â ‰â ‘" }, { "input": "mace's", "output": "â â â ‰â ‘â „â Ž" }, { "input": "maced", "output": "â â â ‰â «" }, { "input": "macerate", "output": "â â â ‰â »â â žâ ‘" }, { "input": "macerated", "output": "â â â ‰â »â â žâ «" }, { "input": "macerates", "output": "â â â ‰â »â â žâ ‘â Ž" }, { "input": "macerating", "output": "â â â ‰â »â â žâ Œ" }, { "input": "maceration", "output": "â â â ‰â »â  â " }, { "input": "maceration's", "output": "â â â ‰â »â  â â „â Ž" }, { "input": "maces", "output": "â â â ‰â ‘â Ž" }, { "input": "mach's", "output": "â â â ¡â „â Ž" }, { "input": "machete", "output": "â â â ¡â ‘â žâ ‘" }, { "input": "machete's", "output": "â â â ¡â ‘â žâ ‘â „â Ž" }, { "input": "machetes", "output": "â â â ¡â ‘â žâ ‘â Ž" }, { "input": "machinate", "output": "â â â ¡â ”â â žâ ‘" }, { "input": "machinated", "output": "â â â ¡â ”â â žâ «" }, { "input": "machinates", "output": "â â â ¡â ”â â žâ ‘â Ž" }, { "input": "machinating", "output": "â â â ¡â ”â â žâ Œ" }, { "input": "machination", "output": "â â â ¡â ”â  â " }, { "input": "machination's", "output": "â â â ¡â ”â  â â „â Ž" }, { "input": "machinations", "output": "â â â ¡â ”â  â â Ž" }, { "input": "machine", "output": "â â â ¡â ”â ‘" }, { "input": "machine's", "output": "â â â ¡â ”â ‘â „â Ž" }, { "input": "machined", "output": "â â â ¡â ”â «" }, { "input": "machinery", "output": "â â â ¡â ”⠻⠽" }, { "input": "machinery's", "output": "â â â ¡â ”⠻⠽⠄⠎" }, { "input": "machines", "output": "â â â ¡â ”â ‘â Ž" }, { "input": "machining", "output": "â â â ¡â ”â Œ" }, { "input": "machinist", "output": "â â â ¡â ”â Šâ Œ" }, { "input": "machinist's", "output": "â â â ¡â ”⠊⠌⠄⠎" }, { "input": "machinists", "output": "â â â ¡â ”⠊⠌⠎" }, { "input": "machismo", "output": "â â â ¡â Šâ Žâ â •" }, { "input": "machismo's", "output": "â â â ¡â Šâ Žâ â •â „â Ž" }, { "input": "macho", "output": "â â â ¡â •" }, { "input": "macho's", "output": "â â â ¡â •â „â Ž" }, { "input": "macing", "output": "â â â ‰â Œ" }, { "input": "mackerel", "output": "â â â ‰â …⠻⠑⠇" }, { "input": "mackerel's", "output": "â â â ‰â …⠻⠑⠇⠄⠎" }, { "input": "mackerels", "output": "â â â ‰â …⠻⠑⠇⠎" }, { "input": "mackinaw", "output": "â â â ‰â …â ”â â º" }, { "input": "mackinaw's", "output": "â â â ‰â …â ”â â ºâ „â Ž" }, { "input": "mackinaws", "output": "â â â ‰â …â ”â â ºâ Ž" }, { "input": "mackintosh", "output": "â â â ‰â …⠔⠞⠕⠩" }, { "input": "mackintosh's", "output": "â â â ‰â …⠔⠞⠕⠩⠄⠎" }, { "input": "mackintoshes", "output": "â â â ‰â …⠔⠞⠕⠩⠑⠎" }, { "input": "macro", "output": "â â â ‰â —â •" }, { "input": "macro's", "output": "â â â ‰â —â •â „â Ž" }, { "input": "macrobiotic", "output": "â â â ‰â —⠕⠃⠊⠕⠞⠊⠉" }, { "input": "macrobiotics", "output": "â â â ‰â —⠕⠃⠊⠕⠞⠊⠉⠎" }, { "input": "macrobiotics's", "output": "â â â ‰â —⠕⠃⠊⠕⠞⠊⠉⠎⠄⠎" }, { "input": "macrocosm", "output": "â â â ‰â —⠕⠉⠕⠎â " }, { "input": "macrocosm's", "output": "â â â ‰â —⠕⠉⠕⠎â â „â Ž" }, { "input": "macrocosms", "output": "â â â ‰â —⠕⠉⠕⠎â â Ž" }, { "input": "macroeconomics's", "output": "â â â ‰â —⠕⠑⠉⠕â â •â â Šâ ‰â Žâ „â Ž" }, { "input": "macron", "output": "â â â ‰â —â •â " }, { "input": "macron's", "output": "â â â ‰â —â •â â „â Ž" }, { "input": "macrons", "output": "â â â ‰â —â •â â Ž" }, { "input": "macros", "output": "â â â ‰â —â •â Ž" }, { "input": "macroscopic", "output": "â â â ‰â —⠕⠎⠉⠕â â Šâ ‰" }, { "input": "mad", "output": "â â â ™" }, { "input": "mad's", "output": "â â â ™â „â Ž" }, { "input": "madam", "output": "â â â ™â â " }, { "input": "madam's", "output": "â â â ™â â â „â Ž" }, { "input": "madame", "output": "â â â ™â â â ‘" }, { "input": "madame's", "output": "â â â ™â â â ‘â „â Ž" }, { "input": "madams", "output": "â â â ™â â â Ž" }, { "input": "madcap", "output": "â â â ™â ‰â â " }, { "input": "madcap's", "output": "â â â ™â ‰â â â „â Ž" }, { "input": "madcaps", "output": "â â â ™â ‰â â â Ž" }, { "input": "madden", "output": "â â â ²â ¢" }, { "input": "maddened", "output": "â â â ²â ¢â «" }, { "input": "maddening", "output": "â â â ²â ¢â Œ" }, { "input": "maddeningly", "output": "â â â ²â ¢â Œâ ‡â ½" }, { "input": "maddens", "output": "â â â ²â ¢â Ž" }, { "input": "madder", "output": "â â â ²â »" }, { "input": "madder's", "output": "â â â ²â »â „â Ž" }, { "input": "madders", "output": "â â â ²â »â Ž" }, { "input": "maddest", "output": "â â â ²â ‘â Œ" }, { "input": "madding", "output": "â â â ²â Œ" }, { "input": "made", "output": "â â â ™â ‘" }, { "input": "mademoiselle", "output": "â â â ™â ‘â â •⠊⠎⠑⠇⠇⠑" }, { "input": "mademoiselle's", "output": "â â â ™â ‘â â •⠊⠎⠑⠇⠇⠑⠄⠎" }, { "input": "mademoiselles", "output": "â â â ™â ‘â â •⠊⠎⠑⠇⠇⠑⠎" }, { "input": "madhouse", "output": "â â â ™â “⠳⠎⠑" }, { "input": "madhouse's", "output": "â â â ™â “⠳⠎⠑⠄⠎" }, { "input": "madhouses", "output": "â â â ™â “⠳⠎⠑⠎" }, { "input": "madly", "output": "â â â ™â ‡â ½" }, { "input": "madman", "output": "â â â ™â â â " }, { "input": "madman's", "output": "â â â ™â â â â „â Ž" }, { "input": "madmen", "output": "â â â ™â â ¢" }, { "input": "madness", "output": "â â â ™â °â Ž" }, { "input": "madness's", "output": "â â â ™â °â Žâ „â Ž" }, { "input": "madras", "output": "â â â ™â —â â Ž" }, { "input": "madras's", "output": "â â â ™â —â â Žâ „â Ž" }, { "input": "madrases", "output": "â â â ™â —â â Žâ ‘â Ž" }, { "input": "madrigal", "output": "â â â ™â —â Šâ ›â â ‡" }, { "input": "madrigal's", "output": "â â â ™â —â Šâ ›â â ‡â „â Ž" }, { "input": "madrigals", "output": "â â â ™â —â Šâ ›â â ‡â Ž" }, { "input": "mads", "output": "â â â ™â Ž" }, { "input": "madwoman", "output": "â â â ™â ºâ •â â â " }, { "input": "madwoman's", "output": "â â â ™â ºâ •â â â â „â Ž" }, { "input": "madwomen", "output": "â â â ™â ºâ •â â ¢" }, { "input": "maelstrom", "output": "â â â ‘⠇⠌⠗⠕â " }, { "input": "maelstrom's", "output": "â â â ‘⠇⠌⠗⠕â â „â Ž" }, { "input": "maelstroms", "output": "â â â ‘⠇⠌⠗⠕â â Ž" }, { "input": "maestro", "output": "â â â ‘⠌⠗⠕" }, { "input": "maestro's", "output": "â â â ‘⠌⠗⠕⠄⠎" }, { "input": "maestros", "output": "â â â ‘⠌⠗⠕⠎" }, { "input": "magazine", "output": "â â â ›â â µâ ”â ‘" }, { "input": "magazine's", "output": "â â â ›â â µâ ”â ‘â „â Ž" }, { "input": "magazines", "output": "â â â ›â â µâ ”â ‘â Ž" }, { "input": "magenta", "output": "â â â ›â ¢â žâ " }, { "input": "magenta's", "output": "â â â ›â ¢â žâ â „â Ž" }, { "input": "maggot", "output": "â â â ¶â •â ž" }, { "input": "maggot's", "output": "â â â ¶â •â žâ „â Ž" }, { "input": "maggots", "output": "â â â ¶â •â žâ Ž" }, { "input": "maggoty", "output": "â â â ¶â •â žâ ½" }, { "input": "magi", "output": "â â â ›â Š" }, { "input": "magi's", "output": "â â â ›â Šâ „â Ž" }, { "input": "magic", "output": "â â â ›â Šâ ‰" }, { "input": "magic's", "output": "â â â ›â Šâ ‰â „â Ž" }, { "input": "magical", "output": "â â â ›â Šâ ‰â â ‡" }, { "input": "magically", "output": "â â â ›â Šâ ‰â  â ½" }, { "input": "magician", "output": "â â â ›â Šâ ‰â Šâ â " }, { "input": "magician's", "output": "â â â ›â Šâ ‰â Šâ â â „â Ž" }, { "input": "magicians", "output": "â â â ›â Šâ ‰â Šâ â â Ž" }, { "input": "magisterial", "output": "â â â ›â Šâ Œâ »â Šâ â ‡" }, { "input": "magisterially", "output": "â â â ›â Šâ Œâ »â Šâ  â ½" }, { "input": "magistracy's", "output": "â â â ›â Šâ Œâ —â â ‰â ½â „â Ž" }, { "input": "magistrate", "output": "â â â ›â Šâ Œâ —â â žâ ‘" }, { "input": "magistrate's", "output": "â â â ›â Šâ Œâ —â â žâ ‘â „â Ž" }, { "input": "magistrates", "output": "â â â ›â Šâ Œâ —â â žâ ‘â Ž" }, { "input": "magma", "output": "â â â ›â â " }, { "input": "magma's", "output": "â â â ›â â â „â Ž" }, { "input": "magnanimity", "output": "â â â ›â â â â Šâ â °â ½" }, { "input": "magnanimity's", "output": "â â â ›â â â â Šâ â °â ½â „â Ž" }, { "input": "magnanimous", "output": "â â â ›â â â â Šâ â ³â Ž" }, { "input": "magnanimously", "output": "â â â ›â â â â Šâ â ³â Žâ ‡â ½" }, { "input": "magnate", "output": "â â â ›â â â žâ ‘" }, { "input": "magnate's", "output": "â â â ›â â â žâ ‘â „â Ž" }, { "input": "magnates", "output": "â â â ›â â â žâ ‘â Ž" }, { "input": "magnesia", "output": "â â â ›â â ‘â Žâ Šâ " }, { "input": "magnesia's", "output": "â â â ›â â ‘â Žâ Šâ â „â Ž" }, { "input": "magnesium", "output": "â â â ›â â ‘â Žâ Šâ ¥â " }, { "input": "magnesium's", "output": "â â â ›â â ‘â Žâ Šâ ¥â â „â Ž" }, { "input": "magnet", "output": "â â â ›â â ‘â ž" }, { "input": "magnet's", "output": "â â â ›â â ‘â žâ „â Ž" }, { "input": "magnetic", "output": "â â â ›â â ‘â žâ Šâ ‰" }, { "input": "magnetically", "output": "â â â ›â â ‘⠞⠊⠉⠠⠽" }, { "input": "magnetism", "output": "â â â ›â â ‘â žâ Šâ Žâ " }, { "input": "magnetism's", "output": "â â â ›â â ‘â žâ Šâ Žâ â „â Ž" }, { "input": "magnetite", "output": "â â â ›â â ‘â žâ Šâ žâ ‘" }, { "input": "magnetite's", "output": "â â â ›â â ‘â žâ Šâ žâ ‘â „â Ž" }, { "input": "magnetizable", "output": "â â â ›â â ‘â žâ Šâ µâ â ¼" }, { "input": "magnetization", "output": "â â â ›â â ‘⠞⠊⠵⠠â " }, { "input": "magnetization's", "output": "â â â ›â â ‘⠞⠊⠵⠠â â „â Ž" }, { "input": "magnetize", "output": "â â â ›â â ‘⠞⠊⠵⠑" }, { "input": "magnetized", "output": "â â â ›â â ‘⠞⠊⠵⠫" }, { "input": "magnetizes", "output": "â â â ›â â ‘⠞⠊⠵⠑⠎" }, { "input": "magnetizing", "output": "â â â ›â â ‘⠞⠊⠵⠌" }, { "input": "magneto", "output": "â â â ›â â ‘â žâ •" }, { "input": "magneto's", "output": "â â â ›â â ‘â žâ •â „â Ž" }, { "input": "magnetometer", "output": "â â â ›â â ‘â žâ •â â ‘â žâ »" }, { "input": "magnetometer's", "output": "â â â ›â â ‘â žâ •â â ‘⠞⠻⠄⠎" }, { "input": "magnetometers", "output": "â â â ›â â ‘â žâ •â â ‘⠞⠻⠎" }, { "input": "magnetos", "output": "â â â ›â â ‘â žâ •â Ž" }, { "input": "magnetosphere", "output": "â â â ›â â ‘â žâ •â Žâ â “⠻⠑" }, { "input": "magnets", "output": "â â â ›â â ‘â žâ Ž" }, { "input": "magnification", "output": "â â â ›â â Šâ ‹â Šâ ‰â  â " }, { "input": "magnification's", "output": "â â â ›â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "magnifications", "output": "â â â ›â â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "magnificence", "output": "â â â ›â â Šâ ‹â Šâ ‰â °â ‘" }, { "input": "magnificence's", "output": "â â â ›â â Šâ ‹â Šâ ‰â °â ‘â „â Ž" }, { "input": "magnificent", "output": "â â â ›â â Šâ ‹â Šâ ‰â ¢â ž" }, { "input": "magnificently", "output": "â â â ›â â Šâ ‹â Šâ ‰â ¢â žâ ‡â ½" }, { "input": "magnified", "output": "â â â ›â â Šâ ‹â Šâ «" }, { "input": "magnifier", "output": "â â â ›â â Šâ ‹â Šâ »" }, { "input": "magnifier's", "output": "â â â ›â â Šâ ‹â Šâ »â „â Ž" }, { "input": "magnifiers", "output": "â â â ›â â Šâ ‹â Šâ »â Ž" }, { "input": "magnifies", "output": "â â â ›â â Šâ ‹â Šâ ‘â Ž" }, { "input": "magnify", "output": "â â â ›â â Šâ ‹â ½" }, { "input": "magnifying", "output": "â â â ›â â Šâ ‹â ½â Œ" }, { "input": "magniloquence", "output": "â â â ›â â Šâ ‡â •⠟⠥⠰⠑" }, { "input": "magniloquence's", "output": "â â â ›â â Šâ ‡â •⠟⠥⠰⠑⠄⠎" }, { "input": "magniloquent", "output": "â â â ›â â Šâ ‡â •⠟⠥⠢⠞" }, { "input": "magnitude", "output": "â â â ›â â Šâ žâ ¥â ™â ‘" }, { "input": "magnitude's", "output": "â â â ›â â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "magnitudes", "output": "â â â ›â â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "magnolia", "output": "â â â ›â â •⠇⠊â " }, { "input": "magnolia's", "output": "â â â ›â â •⠇⠊â â „â Ž" }, { "input": "magnolias", "output": "â â â ›â â •⠇⠊â â Ž" }, { "input": "magnum", "output": "â â â ›â â ¥â " }, { "input": "magnum's", "output": "â â â ›â â ¥â â „â Ž" }, { "input": "magnums", "output": "â â â ›â â ¥â â Ž" }, { "input": "magpie", "output": "â â â ›â â Šâ ‘" }, { "input": "magpie's", "output": "â â â ›â â Šâ ‘â „â Ž" }, { "input": "magpies", "output": "â â â ›â â Šâ ‘â Ž" }, { "input": "magus", "output": "â â â ›â ¥â Ž" }, { "input": "magus's", "output": "â â â ›â ¥â Žâ „â Ž" }, { "input": "maharajah", "output": "â â â “â â —â â šâ â “" }, { "input": "maharajah's", "output": "â â â “â â —â â šâ â “â „â Ž" }, { "input": "maharajahs", "output": "â â â “â â —â â šâ â “â Ž" }, { "input": "maharani", "output": "â â â “â â —â â â Š" }, { "input": "maharani's", "output": "â â â “â â —â â â Šâ „â Ž" }, { "input": "maharanis", "output": "â â â “â â —â â â Šâ Ž" }, { "input": "maharishi", "output": "â â â “â â —â Šâ ©â Š" }, { "input": "maharishi's", "output": "â â â “â â —â Šâ ©â Šâ „â Ž" }, { "input": "maharishis", "output": "â â â “â â —â Šâ ©â Šâ Ž" }, { "input": "mahatma", "output": "â â â “â â žâ â " }, { "input": "mahatma's", "output": "â â â “â â žâ â â „â Ž" }, { "input": "mahatmas", "output": "â â â “â â žâ â â Ž" }, { "input": "mahoganies", "output": "â â â “â •â ›â â â Šâ ‘â Ž" }, { "input": "mahogany", "output": "â â â “â •â ›â â â ½" }, { "input": "mahogany's", "output": "â â â “â •â ›â â â ½â „â Ž" }, { "input": "mahout", "output": "â â â “⠳⠞" }, { "input": "mahout's", "output": "â â â “⠳⠞⠄⠎" }, { "input": "mahouts", "output": "â â â “⠳⠞⠎" }, { "input": "maid", "output": "â â â Šâ ™" }, { "input": "maid's", "output": "â â â Šâ ™â „â Ž" }, { "input": "maiden", "output": "â â â Šâ ™â ¢" }, { "input": "maiden's", "output": "â â â Šâ ™â ¢â „â Ž" }, { "input": "maidenhair", "output": "â â â Šâ ™â ¢â “â â Šâ —" }, { "input": "maidenhair's", "output": "â â â Šâ ™â ¢â “â â Šâ —â „â Ž" }, { "input": "maidenhead", "output": "â â â Šâ ™â ¢â “â ‚â ™" }, { "input": "maidenhead's", "output": "â â â Šâ ™â ¢â “⠂⠙⠄⠎" }, { "input": "maidenheads", "output": "â â â Šâ ™â ¢â “⠂⠙⠎" }, { "input": "maidenhood", "output": "â â â Šâ ™â ¢â “â •â •â ™" }, { "input": "maidenhood's", "output": "â â â Šâ ™â ¢â “⠕⠕⠙⠄⠎" }, { "input": "maidenly", "output": "â â â Šâ ™â ¢â ‡â ½" }, { "input": "maidens", "output": "â â â Šâ ™â ¢â Ž" }, { "input": "maids", "output": "â â â Šâ ™â Ž" }, { "input": "maidservant", "output": "â â â Šâ ™â Žâ »â §â â â ž" }, { "input": "maidservant's", "output": "â â â Šâ ™â Žâ »â §â â â žâ „â Ž" }, { "input": "maidservants", "output": "â â â Šâ ™â Žâ »â §â â â žâ Ž" }, { "input": "mail", "output": "â â â Šâ ‡" }, { "input": "mail's", "output": "â â â Šâ ‡â „â Ž" }, { "input": "mailbox", "output": "â â â Šâ ‡â ƒâ •â ­" }, { "input": "mailbox's", "output": "â â â Šâ ‡â ƒâ •â ­â „â Ž" }, { "input": "mailboxes", "output": "â â â Šâ ‡â ƒâ •â ­â ‘â Ž" }, { "input": "mailed", "output": "â â â Šâ ‡â «" }, { "input": "mailer", "output": "â â â Šâ ‡â »" }, { "input": "mailer's", "output": "â â â Šâ ‡â »â „â Ž" }, { "input": "mailers", "output": "â â â Šâ ‡â »â Ž" }, { "input": "mailing", "output": "â â â Šâ ‡â Œ" }, { "input": "mailing's", "output": "â â â Šâ ‡â Œâ „â Ž" }, { "input": "mailings", "output": "â â â Šâ ‡â Œâ Ž" }, { "input": "maillot", "output": "â â â Šâ ‡â ‡â •â ž" }, { "input": "maillot's", "output": "â â â Šâ ‡â ‡â •â žâ „â Ž" }, { "input": "maillots", "output": "â â â Šâ ‡â ‡â •â žâ Ž" }, { "input": "mailman", "output": "â â â Šâ ‡â â â " }, { "input": "mailman's", "output": "â â â Šâ ‡â â â â „â Ž" }, { "input": "mailmen", "output": "â â â Šâ ‡â â ¢" }, { "input": "mails", "output": "â â â Šâ ‡â Ž" }, { "input": "maim", "output": "â â â Šâ " }, { "input": "maimed", "output": "â â â Šâ â «" }, { "input": "maiming", "output": "â â â Šâ â Œ" }, { "input": "maims", "output": "â â â Šâ â Ž" }, { "input": "main", "output": "â â â ”" }, { "input": "main's", "output": "â â â ”â „â Ž" }, { "input": "mainframe", "output": "â â â ”â ‹â —â â â ‘" }, { "input": "mainframe's", "output": "â â â ”â ‹â —â â â ‘â „â Ž" }, { "input": "mainframes", "output": "â â â ”â ‹â —â â â ‘â Ž" }, { "input": "mainland", "output": "â â â ”⠇⠯" }, { "input": "mainland's", "output": "â â â ”⠇⠯⠄⠎" }, { "input": "mainlands", "output": "â â â ”⠇⠯⠎" }, { "input": "mainline", "output": "â â â ”⠇⠔⠑" }, { "input": "mainline's", "output": "â â â ”⠇⠔⠑⠄⠎" }, { "input": "mainlined", "output": "â â â ”⠇⠔⠫" }, { "input": "mainlines", "output": "â â â ”⠇⠔⠑⠎" }, { "input": "mainlining", "output": "â â â ”⠇⠔⠌" }, { "input": "mainly", "output": "â â â ”⠇⠽" }, { "input": "mainmast", "output": "â â â ”â â â Œ" }, { "input": "mainmast's", "output": "â â â ”â â â Œâ „â Ž" }, { "input": "mainmasts", "output": "â â â ”â â â Œâ Ž" }, { "input": "mains", "output": "â â â ”â Ž" }, { "input": "mainsail", "output": "â â â ”â Žâ â Šâ ‡" }, { "input": "mainsail's", "output": "â â â ”â Žâ â Šâ ‡â „â Ž" }, { "input": "mainsails", "output": "â â â ”â Žâ â Šâ ‡â Ž" }, { "input": "mainspring", "output": "â â â ”â Žâ â —â Œ" }, { "input": "mainspring's", "output": "â â â ”â Žâ â —⠌⠄⠎" }, { "input": "mainsprings", "output": "â â â ”â Žâ â —⠌⠎" }, { "input": "mainstay", "output": "â â â ”â Œâ â ½" }, { "input": "mainstay's", "output": "â â â ”â Œâ â ½â „â Ž" }, { "input": "mainstays", "output": "â â â ”â Œâ â ½â Ž" }, { "input": "mainstream", "output": "â â â ”⠌⠗⠂â " }, { "input": "mainstream's", "output": "â â â ”⠌⠗⠂â â „â Ž" }, { "input": "mainstreamed", "output": "â â â ”⠌⠗⠂â â «" }, { "input": "mainstreaming", "output": "â â â ”⠌⠗⠂â â Œ" }, { "input": "mainstreams", "output": "â â â ”⠌⠗⠂â â Ž" }, { "input": "maintain", "output": "â â â ”â žâ â ”" }, { "input": "maintainability", "output": "â â â ”â žâ â ”â â ƒâ Šâ ‡â °â ½" }, { "input": "maintainable", "output": "â â â ”â žâ â ”â â ¼" }, { "input": "maintained", "output": "â â â ”â žâ â ”â «" }, { "input": "maintainer", "output": "â â â ”â žâ â ”â »" }, { "input": "maintainers", "output": "â â â ”â žâ â ”⠻⠎" }, { "input": "maintaining", "output": "â â â ”â žâ â ”â Œ" }, { "input": "maintains", "output": "â â â ”â žâ â ”â Ž" }, { "input": "maintenance", "output": "â â â ”⠞⠢⠨⠑" }, { "input": "maintenance's", "output": "â â â ”⠞⠢⠨⠑⠄⠎" }, { "input": "maintop", "output": "â â â ”â žâ •â " }, { "input": "maintop's", "output": "â â â ”â žâ •â â „â Ž" }, { "input": "maintops", "output": "â â â ”â žâ •â â Ž" }, { "input": "maize", "output": "â â â Šâ µâ ‘" }, { "input": "maize's", "output": "â â â Šâ µâ ‘â „â Ž" }, { "input": "maizes", "output": "â â â Šâ µâ ‘â Ž" }, { "input": "majestic", "output": "â â â šâ ‘⠌⠊⠉" }, { "input": "majestically", "output": "â â â šâ ‘⠌⠊⠉⠠⠽" }, { "input": "majesties", "output": "â â â šâ ‘⠌⠊⠑⠎" }, { "input": "majesty", "output": "â â â šâ ‘⠌⠽" }, { "input": "majesty's", "output": "â â â šâ ‘⠌⠽⠄⠎" }, { "input": "majolica", "output": "â â â šâ •⠇⠊⠉â " }, { "input": "majolica's", "output": "â â â šâ •⠇⠊⠉â â „â Ž" }, { "input": "major", "output": "â â â šâ •â —" }, { "input": "major's", "output": "â â â šâ •â —â „â Ž" }, { "input": "majored", "output": "â â â šâ •â —â «" }, { "input": "majorette", "output": "â â â šâ •â —â ‘â žâ žâ ‘" }, { "input": "majorette's", "output": "â â â šâ •â —â ‘â žâ žâ ‘â „â Ž" }, { "input": "majorettes", "output": "â â â šâ •â —â ‘â žâ žâ ‘â Ž" }, { "input": "majoring", "output": "â â â šâ •â —â Œ" }, { "input": "majorities", "output": "â â â šâ •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "majority", "output": "â â â šâ •â —â °â ½" }, { "input": "majority's", "output": "â â â šâ •⠗⠰⠽⠄⠎" }, { "input": "majorly", "output": "â â â šâ •⠗⠇⠽" }, { "input": "majors", "output": "â â â šâ •â —â Ž" }, { "input": "make", "output": "â â â …â ‘" }, { "input": "make's", "output": "â â â …â ‘â „â Ž" }, { "input": "maker", "output": "â â â …â »" }, { "input": "maker's", "output": "â â â …⠻⠄⠎" }, { "input": "makers", "output": "â â â …⠻⠎" }, { "input": "makes", "output": "â â â …â ‘â Ž" }, { "input": "makeshift", "output": "â â â …â ‘â ©â Šâ ‹â ž" }, { "input": "makeshift's", "output": "â â â …â ‘â ©â Šâ ‹â žâ „â Ž" }, { "input": "makeshifts", "output": "â â â …â ‘â ©â Šâ ‹â žâ Ž" }, { "input": "makeup", "output": "â â â …â ‘â ¥â " }, { "input": "makeup's", "output": "â â â …â ‘â ¥â â „â Ž" }, { "input": "makeups", "output": "â â â …â ‘â ¥â â Ž" }, { "input": "making", "output": "â â â …â Œ" }, { "input": "making's", "output": "â â â …⠌⠄⠎" }, { "input": "makings", "output": "â â â …⠌⠎" }, { "input": "makings's", "output": "â â â …⠌⠎⠄⠎" }, { "input": "malachite's", "output": "â â â ‡â â ¡â Šâ žâ ‘â „â Ž" }, { "input": "maladies", "output": "â â â ‡â â ™â Šâ ‘â Ž" }, { "input": "maladjusted", "output": "â â â ‡â â ™â šâ ¥â Œâ «" }, { "input": "maladjustment", "output": "â â â ‡â â ™â šâ ¥â Œâ °â ž" }, { "input": "maladjustment's", "output": "â â â ‡â â ™â šâ ¥â Œâ °â žâ „â Ž" }, { "input": "maladroit", "output": "â â â ‡â â ™â —â •â Šâ ž" }, { "input": "maladroitness's", "output": "â â â ‡â â ™â —â •â Šâ žâ °â Žâ „â Ž" }, { "input": "malady", "output": "â â â ‡â â ™â ½" }, { "input": "malady's", "output": "â â â ‡â â ™â ½â „â Ž" }, { "input": "malaise", "output": "â â â ‡â â Šâ Žâ ‘" }, { "input": "malaise's", "output": "â â â ‡â â Šâ Žâ ‘â „â Ž" }, { "input": "malamute", "output": "â â â ‡â â â ¥â žâ ‘" }, { "input": "malamute's", "output": "â â â ‡â â â ¥â žâ ‘â „â Ž" }, { "input": "malamutes", "output": "â â â ‡â â â ¥â žâ ‘â Ž" }, { "input": "malapropism", "output": "â â â ‡â â â —â •â â Šâ Žâ " }, { "input": "malapropism's", "output": "â â â ‡â â â —â •â â Šâ Žâ â „â Ž" }, { "input": "malapropisms", "output": "â â â ‡â â â —â •â â Šâ Žâ â Ž" }, { "input": "malaria", "output": "â â â ‡â œâ Šâ " }, { "input": "malaria's", "output": "â â â ‡â œâ Šâ â „â Ž" }, { "input": "malarial", "output": "â â â ‡â œâ Šâ â ‡" }, { "input": "malarkey", "output": "â â â ‡â œâ …â ‘â ½" }, { "input": "malarkey's", "output": "â â â ‡â œâ …⠑⠽⠄⠎" }, { "input": "malathion", "output": "â â â ‡â â ¹â Šâ •â " }, { "input": "malathion's", "output": "â â â ‡â â ¹â Šâ •â â „â Ž" }, { "input": "malcontent", "output": "â â â ‡â ‰â •â â žâ ¢â ž" }, { "input": "malcontent's", "output": "â â â ‡â ‰â •â â žâ ¢â žâ „â Ž" }, { "input": "malcontents", "output": "â â â ‡â ‰â •â â žâ ¢â žâ Ž" }, { "input": "male", "output": "â â â ‡â ‘" }, { "input": "male's", "output": "â â â ‡â ‘â „â Ž" }, { "input": "malediction", "output": "â â â ‡â ‘⠙⠊⠉⠰â " }, { "input": "malediction's", "output": "â â â ‡â ‘⠙⠊⠉⠰â â „â Ž" }, { "input": "maledictions", "output": "â â â ‡â ‘⠙⠊⠉⠰â â Ž" }, { "input": "malefaction", "output": "â â â ‡â ‘â ‹â â ‰â °â " }, { "input": "malefaction's", "output": "â â â ‡â ‘â ‹â â ‰â °â â „â Ž" }, { "input": "malefactor", "output": "â â â ‡â ‘â ‹â â ‰â žâ •â —" }, { "input": "malefactor's", "output": "â â â ‡â ‘â ‹â â ‰â žâ •â —â „â Ž" }, { "input": "malefactors", "output": "â â â ‡â ‘â ‹â â ‰â žâ •â —â Ž" }, { "input": "malefic", "output": "â â â ‡â ‘â ‹â Šâ ‰" }, { "input": "maleficence", "output": "â â â ‡â ‘⠋⠊⠉⠰⠑" }, { "input": "maleficence's", "output": "â â â ‡â ‘⠋⠊⠉⠰⠑⠄⠎" }, { "input": "maleficent", "output": "â â â ‡â ‘⠋⠊⠉⠢⠞" }, { "input": "maleness", "output": "â â â ‡â ‘â °â Ž" }, { "input": "maleness's", "output": "â â â ‡â ‘â °â Žâ „â Ž" }, { "input": "males", "output": "â â â ‡â ‘â Ž" }, { "input": "malevolence", "output": "â â â ‡â ‘⠧⠕⠇⠰⠑" }, { "input": "malevolence's", "output": "â â â ‡â ‘⠧⠕⠇⠰⠑⠄⠎" }, { "input": "malevolent", "output": "â â â ‡â ‘⠧⠕⠇⠢⠞" }, { "input": "malevolently", "output": "â â â ‡â ‘⠧⠕⠇⠢⠞⠇⠽" }, { "input": "malfeasance", "output": "â â â ‡â ‹â ‚⠎⠨⠑" }, { "input": "malfeasance's", "output": "â â â ‡â ‹â ‚⠎⠨⠑⠄⠎" }, { "input": "malformation", "output": "â â â ‡â ¿â â  â " }, { "input": "malformation's", "output": "â â â ‡â ¿â â  â â „â Ž" }, { "input": "malformations", "output": "â â â ‡â ¿â â  â â Ž" }, { "input": "malformed", "output": "â â â ‡â ¿â â «" }, { "input": "malfunction", "output": "â â â ‡â ‹â ¥â â ‰â °â " }, { "input": "malfunction's", "output": "â â â ‡â ‹â ¥â â ‰â °â â „â Ž" }, { "input": "malfunctioned", "output": "â â â ‡â ‹â ¥â â ‰â °â â «" }, { "input": "malfunctioning", "output": "â â â ‡â ‹â ¥â â ‰â °â â Œ" }, { "input": "malfunctions", "output": "â â â ‡â ‹â ¥â â ‰â °â â Ž" }, { "input": "malice", "output": "â â â ‡â Šâ ‰â ‘" }, { "input": "malice's", "output": "â â â ‡â Šâ ‰â ‘â „â Ž" }, { "input": "malicious", "output": "â â â ‡â Šâ ‰â Šâ ³â Ž" }, { "input": "maliciously", "output": "â â â ‡â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "maliciousness", "output": "â â â ‡â Šâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "maliciousness's", "output": "â â â ‡â Šâ ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "malign", "output": "â â â ‡â Šâ ›â " }, { "input": "malignancies", "output": "â â â ‡â Šâ ›â â â â ‰â Šâ ‘â Ž" }, { "input": "malignancy", "output": "â â â ‡â Šâ ›â â â â ‰â ½" }, { "input": "malignancy's", "output": "â â â ‡â Šâ ›â â â â ‰â ½â „â Ž" }, { "input": "malignant", "output": "â â â ‡â Šâ ›â â â â ž" }, { "input": "malignantly", "output": "â â â ‡â Šâ ›â â â â žâ ‡â ½" }, { "input": "maligned", "output": "â â â ‡â Šâ ›â â «" }, { "input": "maligning", "output": "â â â ‡â Šâ ›â â Œ" }, { "input": "malignity", "output": "â â â ‡â Šâ ›â â °â ½" }, { "input": "malignity's", "output": "â â â ‡â Šâ ›â â °â ½â „â Ž" }, { "input": "maligns", "output": "â â â ‡â Šâ ›â â Ž" }, { "input": "malinger", "output": "â â â ‡â Œâ »" }, { "input": "malingered", "output": "â â â ‡â Œâ »â «" }, { "input": "malingerer", "output": "â â â ‡â Œâ »â »" }, { "input": "malingerer's", "output": "â â â ‡â Œâ »â »â „â Ž" }, { "input": "malingerers", "output": "â â â ‡â Œâ »â »â Ž" }, { "input": "malingering", "output": "â â â ‡â Œâ »â Œ" }, { "input": "malingers", "output": "â â â ‡â Œâ »â Ž" }, { "input": "mall", "output": "â â â ‡â ‡" }, { "input": "mall's", "output": "â â â ‡â ‡â „â Ž" }, { "input": "mallard", "output": "â â â ‡â ‡â œâ ™" }, { "input": "mallard's", "output": "â â â ‡â ‡â œâ ™â „â Ž" }, { "input": "mallards", "output": "â â â ‡â ‡â œâ ™â Ž" }, { "input": "malleability", "output": "â â â ‡â ‡â ‘â â ƒâ Šâ ‡â °â ½" }, { "input": "malleability's", "output": "â â â ‡â ‡â ‘â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "malleable", "output": "â â â ‡â ‡â ‘â â ¼" }, { "input": "mallet", "output": "â â â ‡â ‡â ‘â ž" }, { "input": "mallet's", "output": "â â â ‡â ‡â ‘â žâ „â Ž" }, { "input": "mallets", "output": "â â â ‡â ‡â ‘â žâ Ž" }, { "input": "mallow", "output": "â â â ‡â ‡â ª" }, { "input": "mallow's", "output": "â â â ‡â ‡â ªâ „â Ž" }, { "input": "mallows", "output": "â â â ‡â ‡â ªâ Ž" }, { "input": "malls", "output": "â â â ‡â ‡â Ž" }, { "input": "malnourished", "output": "â â â ‡â â ³â —â Šâ ©â «" }, { "input": "malnutrition", "output": "â â â ‡â â ¥â žâ —â Šâ °â " }, { "input": "malnutrition's", "output": "â â â ‡â â ¥â žâ —â Šâ °â â „â Ž" }, { "input": "malocclusion", "output": "â â â ‡â •⠒⠇⠥⠨â " }, { "input": "malocclusion's", "output": "â â â ‡â •⠒⠇⠥⠨â â „â Ž" }, { "input": "malodorous", "output": "â â â ‡â •⠙⠕⠗⠳⠎" }, { "input": "malpractice", "output": "â â â ‡â â —â â ‰â žâ Šâ ‰â ‘" }, { "input": "malpractice's", "output": "â â â ‡â â —â â ‰â žâ Šâ ‰â ‘â „â Ž" }, { "input": "malpractices", "output": "â â â ‡â â —â â ‰â žâ Šâ ‰â ‘â Ž" }, { "input": "malt", "output": "â â â ‡â ž" }, { "input": "malt's", "output": "â â â ‡â žâ „â Ž" }, { "input": "malted", "output": "â â â ‡â žâ «" }, { "input": "malted's", "output": "â â â ‡â žâ «â „â Ž" }, { "input": "malteds", "output": "â â â ‡â žâ «â Ž" }, { "input": "maltier", "output": "â â â ‡â žâ Šâ »" }, { "input": "maltiest", "output": "â â â ‡â žâ Šâ ‘â Œ" }, { "input": "malting", "output": "â â â ‡â žâ Œ" }, { "input": "maltose", "output": "â â â ‡â žâ •â Žâ ‘" }, { "input": "maltose's", "output": "â â â ‡â žâ •â Žâ ‘â „â Ž" }, { "input": "maltreat", "output": "â â â ‡â žâ —â ‚â ž" }, { "input": "maltreated", "output": "â â â ‡â žâ —â ‚â žâ «" }, { "input": "maltreating", "output": "â â â ‡â žâ —â ‚â žâ Œ" }, { "input": "maltreatment", "output": "â â â ‡â žâ —â ‚â žâ °â ž" }, { "input": "maltreatment's", "output": "â â â ‡â žâ —â ‚â žâ °â žâ „â Ž" }, { "input": "maltreats", "output": "â â â ‡â žâ —â ‚â žâ Ž" }, { "input": "malts", "output": "â â â ‡â žâ Ž" }, { "input": "malty", "output": "â â â ‡â žâ ½" }, { "input": "mama", "output": "â â â â " }, { "input": "mama's", "output": "â â â â â „â Ž" }, { "input": "mamas", "output": "â â â â â Ž" }, { "input": "mambo", "output": "â â â â ƒâ •" }, { "input": "mambo's", "output": "â â â â ƒâ •â „â Ž" }, { "input": "mamboed", "output": "â â â â ƒâ •â «" }, { "input": "mamboing", "output": "â â â â ƒâ •â Œ" }, { "input": "mambos", "output": "â â â â ƒâ •â Ž" }, { "input": "mamma", "output": "â â â â â " }, { "input": "mamma's", "output": "â â â â â â „â Ž" }, { "input": "mammal", "output": "â â â â â â ‡" }, { "input": "mammal's", "output": "â â â â â â ‡â „â Ž" }, { "input": "mammalian", "output": "â â â â â â ‡â Šâ â " }, { "input": "mammalian's", "output": "â â â â â â ‡â Šâ â â „â Ž" }, { "input": "mammalians", "output": "â â â â â â ‡â Šâ â â Ž" }, { "input": "mammals", "output": "â â â â â â ‡â Ž" }, { "input": "mammary", "output": "â â â â â œâ ½" }, { "input": "mammogram", "output": "â â â â â •⠛⠗â â " }, { "input": "mammogram's", "output": "â â â â â •⠛⠗â â â „â Ž" }, { "input": "mammograms", "output": "â â â â â •⠛⠗â â â Ž" }, { "input": "mammography", "output": "â â â â â •⠛⠗â â â “â ½" }, { "input": "mammography's", "output": "â â â â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "mammon", "output": "â â â â â •â " }, { "input": "mammon's", "output": "â â â â â •â â „â Ž" }, { "input": "mammoth", "output": "â â â â â •â ¹" }, { "input": "mammoth's", "output": "â â â â â •⠹⠄⠎" }, { "input": "mammoths", "output": "â â â â â •⠹⠎" }, { "input": "man", "output": "â â â " }, { "input": "man's", "output": "â â â â „â Ž" }, { "input": "manacle", "output": "â â â â â ‰â ‡â ‘" }, { "input": "manacle's", "output": "â â â â â ‰â ‡â ‘â „â Ž" }, { "input": "manacled", "output": "â â â â â ‰â ‡â «" }, { "input": "manacles", "output": "â â â â â ‰â ‡â ‘â Ž" }, { "input": "manacling", "output": "â â â â â ‰â ‡â Œ" }, { "input": "manage", "output": "â â â â â ›â ‘" }, { "input": "manageability", "output": "â â â â â ›â ‘â â ƒâ Šâ ‡â °â ½" }, { "input": "manageability's", "output": "â â â â â ›â ‘â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "manageable", "output": "â â â â â ›â ‘â â ¼" }, { "input": "managed", "output": "â â â â â ›â «" }, { "input": "management", "output": "â â â â â ›â ‘â °â ž" }, { "input": "management's", "output": "â â â â â ›â ‘â °â žâ „â Ž" }, { "input": "manager", "output": "â â â â â ›â »" }, { "input": "manager's", "output": "â â â â â ›â »â „â Ž" }, { "input": "managerial", "output": "â â â â â ›â »â Šâ â ‡" }, { "input": "managers", "output": "â â â â â ›â »â Ž" }, { "input": "manages", "output": "â â â â â ›â ‘â Ž" }, { "input": "managing", "output": "â â â â â ›â Œ" }, { "input": "mananas", "output": "â â â â â â â Ž" }, { "input": "manatee", "output": "â â â â â žâ ‘â ‘" }, { "input": "manatee's", "output": "â â â â â žâ ‘â ‘â „â Ž" }, { "input": "manatees", "output": "â â â â â žâ ‘â ‘â Ž" }, { "input": "mandamus", "output": "â â ¯â â â ¥â Ž" }, { "input": "mandamus's", "output": "â â ¯â â â ¥â Žâ „â Ž" }, { "input": "mandamuses", "output": "â â ¯â â â ¥â Žâ ‘â Ž" }, { "input": "mandarin", "output": "â â ¯â œâ ”" }, { "input": "mandarin's", "output": "â â ¯â œâ ”â „â Ž" }, { "input": "mandarins", "output": "â â ¯â œâ ”â Ž" }, { "input": "mandate", "output": "â â ¯â â žâ ‘" }, { "input": "mandate's", "output": "â â ¯â â žâ ‘â „â Ž" }, { "input": "mandated", "output": "â â ¯â â žâ «" }, { "input": "mandates", "output": "â â ¯â â žâ ‘â Ž" }, { "input": "mandating", "output": "â â ¯â â žâ Œ" }, { "input": "mandatory", "output": "â â ¯â â žâ •â —â ½" }, { "input": "mandible", "output": "â â ¯â Šâ ¼" }, { "input": "mandible's", "output": "â â ¯â Šâ ¼â „â Ž" }, { "input": "mandibles", "output": "â â ¯â Šâ ¼â Ž" }, { "input": "mandibular", "output": "â â ¯â Šâ ƒâ ¥â ‡â œ" }, { "input": "mandolin", "output": "â â ¯â •⠇⠔" }, { "input": "mandolin's", "output": "â â ¯â •⠇⠔⠄⠎" }, { "input": "mandolins", "output": "â â ¯â •⠇⠔⠎" }, { "input": "mandrake", "output": "â â ¯â —â â …â ‘" }, { "input": "mandrake's", "output": "â â ¯â —â â …â ‘â „â Ž" }, { "input": "mandrakes", "output": "â â ¯â —â â …â ‘â Ž" }, { "input": "mandrel", "output": "â â ¯â —â ‘â ‡" }, { "input": "mandrel's", "output": "â â ¯â —⠑⠇⠄⠎" }, { "input": "mandrels", "output": "â â ¯â —⠑⠇⠎" }, { "input": "mandrill", "output": "â â ¯â —⠊⠇⠇" }, { "input": "mandrill's", "output": "â â ¯â —⠊⠇⠇⠄⠎" }, { "input": "mandrills", "output": "â â ¯â —⠊⠇⠇⠎" }, { "input": "mane", "output": "â â â â ‘" }, { "input": "mane's", "output": "â â â â ‘â „â Ž" }, { "input": "maned", "output": "â â â â «" }, { "input": "manes", "output": "â â â â ‘â Ž" }, { "input": "maneuver", "output": "â â â â ‘⠥⠧⠻" }, { "input": "maneuver's", "output": "â â â â ‘⠥⠧⠻⠄⠎" }, { "input": "maneuverability", "output": "â â â â ‘⠥⠧⠻â â ƒâ Šâ ‡â °â ½" }, { "input": "maneuverability's", "output": "â â â â ‘⠥⠧⠻â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "maneuverable", "output": "â â â â ‘⠥⠧⠻â â ¼" }, { "input": "maneuvered", "output": "â â â â ‘⠥⠧⠻⠫" }, { "input": "maneuvering", "output": "â â â â ‘⠥⠧⠻⠌" }, { "input": "maneuverings", "output": "â â â â ‘⠥⠧⠻⠌⠎" }, { "input": "maneuvers", "output": "â â â â ‘⠥⠧⠻⠎" }, { "input": "manful", "output": "â â â â °â ‡" }, { "input": "manfully", "output": "â â â â °â ‡â ‡â ½" }, { "input": "manganese", "output": "â â â â ›â â â ‘â Žâ ‘" }, { "input": "manganese's", "output": "â â â â ›â â â ‘â Žâ ‘â „â Ž" }, { "input": "mange", "output": "â â â â ›â ‘" }, { "input": "mange's", "output": "â â â â ›â ‘â „â Ž" }, { "input": "manger", "output": "â â â â ›â »" }, { "input": "manger's", "output": "â â â â ›â »â „â Ž" }, { "input": "mangers", "output": "â â â â ›â »â Ž" }, { "input": "mangier", "output": "â â â â ›â Šâ »" }, { "input": "mangiest", "output": "â â â â ›â Šâ ‘â Œ" }, { "input": "manginess", "output": "â â â â ›â Šâ °â Ž" }, { "input": "manginess's", "output": "â â â â ›â Šâ °â Žâ „â Ž" }, { "input": "mangle", "output": "â â â â ›â ‡â ‘" }, { "input": "mangle's", "output": "â â â â ›â ‡â ‘â „â Ž" }, { "input": "mangled", "output": "â â â â ›â ‡â «" }, { "input": "mangles", "output": "â â â â ›â ‡â ‘â Ž" }, { "input": "mangling", "output": "â â â â ›â ‡â Œ" }, { "input": "mango", "output": "â â â â ›â •" }, { "input": "mango's", "output": "â â â â ›â •â „â Ž" }, { "input": "mangoes", "output": "â â â â ›â •â ‘â Ž" }, { "input": "mangrove", "output": "â â â â ›â —â •â §â ‘" }, { "input": "mangrove's", "output": "â â â â ›â —â •â §â ‘â „â Ž" }, { "input": "mangroves", "output": "â â â â ›â —â •â §â ‘â Ž" }, { "input": "mangy", "output": "â â â â ›â ½" }, { "input": "manhandle", "output": "â â â â “⠯⠇⠑" }, { "input": "manhandled", "output": "â â â â “⠯⠇⠫" }, { "input": "manhandles", "output": "â â â â “⠯⠇⠑⠎" }, { "input": "manhandling", "output": "â â â â “⠯⠇⠌" }, { "input": "manhole", "output": "â â â â “⠕⠇⠑" }, { "input": "manhole's", "output": "â â â â “⠕⠇⠑⠄⠎" }, { "input": "manholes", "output": "â â â â “⠕⠇⠑⠎" }, { "input": "manhood", "output": "â â â â “â •â •â ™" }, { "input": "manhood's", "output": "â â â â “⠕⠕⠙⠄⠎" }, { "input": "manhunt", "output": "â â â â “â ¥â â ž" }, { "input": "manhunt's", "output": "â â â â “â ¥â â žâ „â Ž" }, { "input": "manhunts", "output": "â â â â “â ¥â â žâ Ž" }, { "input": "mania", "output": "â â â â Šâ " }, { "input": "mania's", "output": "â â â â Šâ â „â Ž" }, { "input": "maniac", "output": "â â â â Šâ â ‰" }, { "input": "maniac's", "output": "â â â â Šâ â ‰â „â Ž" }, { "input": "maniacal", "output": "â â â â Šâ â ‰â â ‡" }, { "input": "maniacs", "output": "â â â â Šâ â ‰â Ž" }, { "input": "manias", "output": "â â â â Šâ â Ž" }, { "input": "manic", "output": "â â â â Šâ ‰" }, { "input": "manic's", "output": "â â â â Šâ ‰â „â Ž" }, { "input": "manics", "output": "â â â â Šâ ‰â Ž" }, { "input": "manicure", "output": "â â â â Šâ ‰â ¥â —â ‘" }, { "input": "manicure's", "output": "â â â â Šâ ‰â ¥â —â ‘â „â Ž" }, { "input": "manicured", "output": "â â â â Šâ ‰â ¥â —â «" }, { "input": "manicures", "output": "â â â â Šâ ‰â ¥â —â ‘â Ž" }, { "input": "manicuring", "output": "â â â â Šâ ‰â ¥â —â Œ" }, { "input": "manicurist", "output": "â â â â Šâ ‰â ¥â —â Šâ Œ" }, { "input": "manicurist's", "output": "â â â â Šâ ‰â ¥â —⠊⠌⠄⠎" }, { "input": "manicurists", "output": "â â â â Šâ ‰â ¥â —⠊⠌⠎" }, { "input": "manifest", "output": "â â â â Šâ ‹â ‘â Œ" }, { "input": "manifest's", "output": "â â â â Šâ ‹â ‘⠌⠄⠎" }, { "input": "manifestation", "output": "â â â â Šâ ‹â ‘⠌⠠â " }, { "input": "manifestation's", "output": "â â â â Šâ ‹â ‘⠌⠠â â „â Ž" }, { "input": "manifestations", "output": "â â â â Šâ ‹â ‘⠌⠠â â Ž" }, { "input": "manifested", "output": "â â â â Šâ ‹â ‘⠌⠫" }, { "input": "manifesting", "output": "â â â â Šâ ‹â ‘⠌⠌" }, { "input": "manifestly", "output": "â â â â Šâ ‹â ‘⠌⠇⠽" }, { "input": "manifesto", "output": "â â â â Šâ ‹â ‘⠌⠕" }, { "input": "manifesto's", "output": "â â â â Šâ ‹â ‘⠌⠕⠄⠎" }, { "input": "manifestos", "output": "â â â â Šâ ‹â ‘⠌⠕⠎" }, { "input": "manifests", "output": "â â â â Šâ ‹â ‘⠌⠎" }, { "input": "manifold", "output": "â â â â Šâ ‹â •⠇⠙" }, { "input": "manifold's", "output": "â â â â Šâ ‹â •⠇⠙⠄⠎" }, { "input": "manifolded", "output": "â â â â Šâ ‹â •⠇⠙⠫" }, { "input": "manifolding", "output": "â â â â Šâ ‹â •⠇⠙⠌" }, { "input": "manifolds", "output": "â â â â Šâ ‹â •⠇⠙⠎" }, { "input": "manikin", "output": "â â â â Šâ …â ”" }, { "input": "manikin's", "output": "â â â â Šâ …⠔⠄⠎" }, { "input": "manikins", "output": "â â â â Šâ …⠔⠎" }, { "input": "manila", "output": "â â â â Šâ ‡â " }, { "input": "manila's", "output": "â â â â Šâ ‡â â „â Ž" }, { "input": "manioc's", "output": "â â â â Šâ •⠉⠄⠎" }, { "input": "maniocs", "output": "â â â â Šâ •⠉⠎" }, { "input": "manipulable", "output": "â â â â Šâ â ¥â ‡â â ¼" }, { "input": "manipulate", "output": "â â â â Šâ â ¥â ‡â â žâ ‘" }, { "input": "manipulated", "output": "â â â â Šâ â ¥â ‡â â žâ «" }, { "input": "manipulates", "output": "â â â â Šâ â ¥â ‡â â žâ ‘â Ž" }, { "input": "manipulating", "output": "â â â â Šâ â ¥â ‡â â žâ Œ" }, { "input": "manipulation", "output": "â â â â Šâ â ¥â ‡â  â " }, { "input": "manipulation's", "output": "â â â â Šâ â ¥â ‡â  â â „â Ž" }, { "input": "manipulations", "output": "â â â â Šâ â ¥â ‡â  â â Ž" }, { "input": "manipulative", "output": "â â â â Šâ â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "manipulatively", "output": "â â â â Šâ â ¥â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "manipulator", "output": "â â â â Šâ â ¥â ‡â â žâ •â —" }, { "input": "manipulator's", "output": "â â â â Šâ â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "manipulators", "output": "â â â â Šâ â ¥â ‡â â žâ •â —â Ž" }, { "input": "mankind", "output": "â â â â …⠔⠙" }, { "input": "mankind's", "output": "â â â â …⠔⠙⠄⠎" }, { "input": "manlier", "output": "â â â â ‡â Šâ »" }, { "input": "manliest", "output": "â â â â ‡â Šâ ‘â Œ" }, { "input": "manlike", "output": "â â â â ‡â Šâ …â ‘" }, { "input": "manliness", "output": "â â â â ‡â Šâ °â Ž" }, { "input": "manliness's", "output": "â â â â ‡â Šâ °â Žâ „â Ž" }, { "input": "manly", "output": "â â â â ‡â ½" }, { "input": "manna", "output": "â â â â â " }, { "input": "manna's", "output": "â â â â â â „â Ž" }, { "input": "manned", "output": "â â â â â «" }, { "input": "mannequin", "output": "â â â â â ‘⠟⠥⠔" }, { "input": "mannequin's", "output": "â â â â â ‘⠟⠥⠔⠄⠎" }, { "input": "mannequins", "output": "â â â â â ‘⠟⠥⠔⠎" }, { "input": "manner", "output": "â â â â â »" }, { "input": "manner's", "output": "â â â â â »â „â Ž" }, { "input": "mannered", "output": "â â â â â »â «" }, { "input": "mannerism", "output": "â â â â â »â Šâ Žâ " }, { "input": "mannerism's", "output": "â â â â â »â Šâ Žâ â „â Ž" }, { "input": "mannerisms", "output": "â â â â â »â Šâ Žâ â Ž" }, { "input": "mannerly", "output": "â â â â â »â ‡â ½" }, { "input": "manners", "output": "â â â â â »â Ž" }, { "input": "manning", "output": "â â â â â Œ" }, { "input": "mannish", "output": "â â â â â Šâ ©" }, { "input": "mannishly", "output": "â â â â â Šâ ©â ‡â ½" }, { "input": "mannishness", "output": "â â â â â Šâ ©â °â Ž" }, { "input": "mannishness's", "output": "â â â â â Šâ ©â °â Žâ „â Ž" }, { "input": "manometer", "output": "â â â â •â â ‘â žâ »" }, { "input": "manometer's", "output": "â â â â •â â ‘⠞⠻⠄⠎" }, { "input": "manometers", "output": "â â â â •â â ‘⠞⠻⠎" }, { "input": "manor", "output": "â â â â •â —" }, { "input": "manor's", "output": "â â â â •â —â „â Ž" }, { "input": "manorial", "output": "â â â â •â —â Šâ â ‡" }, { "input": "manors", "output": "â â â â •â —â Ž" }, { "input": "manpower", "output": "â â â â â ªâ »" }, { "input": "manpower's", "output": "â â â â â ªâ »â „â Ž" }, { "input": "mans", "output": "â â â â Ž" }, { "input": "mansard", "output": "â â â â Žâ œâ ™" }, { "input": "mansard's", "output": "â â â â Žâ œâ ™â „â Ž" }, { "input": "mansards", "output": "â â â â Žâ œâ ™â Ž" }, { "input": "manse", "output": "â â â â Žâ ‘" }, { "input": "manse's", "output": "â â â â Žâ ‘â „â Ž" }, { "input": "manservant", "output": "â â â â Žâ »â §â â â ž" }, { "input": "manservant's", "output": "â â â â Žâ »â §â â â žâ „â Ž" }, { "input": "manses", "output": "â â â â Žâ ‘â Ž" }, { "input": "mansion", "output": "â â â â ¨â " }, { "input": "mansion's", "output": "â â â â ¨â â „â Ž" }, { "input": "mansions", "output": "â â â â ¨â â Ž" }, { "input": "manslaughter", "output": "â â â â Žâ ‡â â ¥â £â žâ »" }, { "input": "manslaughter's", "output": "â â â â Žâ ‡â â ¥â £â žâ »â „â Ž" }, { "input": "manta", "output": "â â â â žâ " }, { "input": "manta's", "output": "â â â â žâ â „â Ž" }, { "input": "mantas", "output": "â â â â žâ â Ž" }, { "input": "mantel", "output": "â â â â žâ ‘â ‡" }, { "input": "mantel's", "output": "â â â â žâ ‘⠇⠄⠎" }, { "input": "mantelpiece", "output": "â â â â žâ ‘â ‡â â Šâ ‘⠉⠑" }, { "input": "mantelpiece's", "output": "â â â â žâ ‘â ‡â â Šâ ‘⠉⠑⠄⠎" }, { "input": "mantelpieces", "output": "â â â â žâ ‘â ‡â â Šâ ‘⠉⠑⠎" }, { "input": "mantels", "output": "â â â â žâ ‘⠇⠎" }, { "input": "mantes", "output": "â â â â žâ ‘â Ž" }, { "input": "mantilla", "output": "â â â â žâ Šâ ‡â ‡â " }, { "input": "mantilla's", "output": "â â â â žâ Šâ ‡â ‡â â „â Ž" }, { "input": "mantillas", "output": "â â â â žâ Šâ ‡â ‡â â Ž" }, { "input": "mantis", "output": "â â â â žâ Šâ Ž" }, { "input": "mantis's", "output": "â â â â žâ Šâ Žâ „â Ž" }, { "input": "mantises", "output": "â â â â žâ Šâ Žâ ‘â Ž" }, { "input": "mantissa", "output": "â â â â žâ Šâ Žâ Žâ " }, { "input": "mantissa's", "output": "â â â â žâ Šâ Žâ Žâ â „â Ž" }, { "input": "mantissas", "output": "â â â â žâ Šâ Žâ Žâ â Ž" }, { "input": "mantle", "output": "â â â â žâ ‡â ‘" }, { "input": "mantle's", "output": "â â â â žâ ‡â ‘â „â Ž" }, { "input": "mantled", "output": "â â â â žâ ‡â «" }, { "input": "mantles", "output": "â â â â žâ ‡â ‘â Ž" }, { "input": "mantling", "output": "â â â â žâ ‡â Œ" }, { "input": "mantra", "output": "â â â â žâ —â " }, { "input": "mantra's", "output": "â â â â žâ —â â „â Ž" }, { "input": "mantras", "output": "â â â â žâ —â â Ž" }, { "input": "manual", "output": "â â â â ¥â â ‡" }, { "input": "manual's", "output": "â â â â ¥â â ‡â „â Ž" }, { "input": "manually", "output": "â â â â ¥â  â ½" }, { "input": "manuals", "output": "â â â â ¥â â ‡â Ž" }, { "input": "manufacture", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â ‘" }, { "input": "manufacture's", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "manufactured", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â «" }, { "input": "manufacturer", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â »" }, { "input": "manufacturer's", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —⠻⠄⠎" }, { "input": "manufacturers", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —⠻⠎" }, { "input": "manufactures", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "manufacturing", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —â Œ" }, { "input": "manufacturing's", "output": "â â â â ¥â ‹â â ‰â žâ ¥â —⠌⠄⠎" }, { "input": "manumission", "output": "â â â â ¥â â Šâ Žâ ¨â " }, { "input": "manumission's", "output": "â â â â ¥â â Šâ Žâ ¨â â „â Ž" }, { "input": "manumissions", "output": "â â â â ¥â â Šâ Žâ ¨â â Ž" }, { "input": "manumit", "output": "â â â â ¥â â Šâ ž" }, { "input": "manumits", "output": "â â â â ¥â â Šâ žâ Ž" }, { "input": "manumitted", "output": "â â â â ¥â â Šâ žâ žâ «" }, { "input": "manumitting", "output": "â â â â ¥â â Šâ žâ žâ Œ" }, { "input": "manure", "output": "â â â â ¥â —â ‘" }, { "input": "manure's", "output": "â â â â ¥â —â ‘â „â Ž" }, { "input": "manured", "output": "â â â â ¥â —â «" }, { "input": "manures", "output": "â â â â ¥â —â ‘â Ž" }, { "input": "manuring", "output": "â â â â ¥â —â Œ" }, { "input": "manuscript", "output": "â â â â ¥â Žâ ‰â —â Šâ â ž" }, { "input": "manuscript's", "output": "â â â â ¥â Žâ ‰â —â Šâ â žâ „â Ž" }, { "input": "manuscripts", "output": "â â â â ¥â Žâ ‰â —â Šâ â žâ Ž" }, { "input": "many", "output": "â ¸â " }, { "input": "many's", "output": "â ¸â â „â Ž" }, { "input": "map", "output": "â â â " }, { "input": "map's", "output": "â â â â „â Ž" }, { "input": "maple", "output": "â â â â ‡â ‘" }, { "input": "maple's", "output": "â â â â ‡â ‘â „â Ž" }, { "input": "maples", "output": "â â â â ‡â ‘â Ž" }, { "input": "mapmaker", "output": "â â â â â â …â »" }, { "input": "mapmaker's", "output": "â â â â â â …⠻⠄⠎" }, { "input": "mapmakers", "output": "â â â â â â …⠻⠎" }, { "input": "mapped", "output": "â â â â â «" }, { "input": "mapper", "output": "â â â â â »" }, { "input": "mapper's", "output": "â â â â â »â „â Ž" }, { "input": "mappers", "output": "â â â â â »â Ž" }, { "input": "mapping", "output": "â â â â â Œ" }, { "input": "mappings", "output": "â â â â â Œâ Ž" }, { "input": "maps", "output": "â â â â Ž" }, { "input": "mar", "output": "â â œ" }, { "input": "marabou", "output": "â â œâ â ƒâ ³" }, { "input": "marabou's", "output": "â â œâ â ƒâ ³â „â Ž" }, { "input": "marabous", "output": "â â œâ â ƒâ ³â Ž" }, { "input": "marabout", "output": "â â œâ â ƒâ ³â ž" }, { "input": "marabout's", "output": "â â œâ â ƒâ ³â žâ „â Ž" }, { "input": "marabouts", "output": "â â œâ â ƒâ ³â žâ Ž" }, { "input": "maraca", "output": "â â œâ â ‰â " }, { "input": "maraca's", "output": "â â œâ â ‰â â „â Ž" }, { "input": "maracas", "output": "â â œâ â ‰â â Ž" }, { "input": "maraschino's", "output": "â â œâ â Žâ ¡â ”â •â „â Ž" }, { "input": "maraschinos", "output": "â â œâ â Žâ ¡â ”â •â Ž" }, { "input": "marathon", "output": "â â œâ â ¹â •â " }, { "input": "marathon's", "output": "â â œâ â ¹â •â â „â Ž" }, { "input": "marathoner", "output": "â â œâ â ¹â •â â »" }, { "input": "marathoner's", "output": "â â œâ â ¹â •â â »â „â Ž" }, { "input": "marathoners", "output": "â â œâ â ¹â •â â »â Ž" }, { "input": "marathons", "output": "â â œâ â ¹â •â â Ž" }, { "input": "maraud", "output": "â â œâ â ¥â ™" }, { "input": "marauded", "output": "â â œâ â ¥â ™â «" }, { "input": "marauder", "output": "â â œâ â ¥â ™â »" }, { "input": "marauder's", "output": "â â œâ â ¥â ™â »â „â Ž" }, { "input": "marauders", "output": "â â œâ â ¥â ™â »â Ž" }, { "input": "marauding", "output": "â â œâ â ¥â ™â Œ" }, { "input": "marauds", "output": "â â œâ â ¥â ™â Ž" }, { "input": "marble", "output": "â â œâ ¼" }, { "input": "marble's", "output": "â â œâ ¼â „â Ž" }, { "input": "marbled", "output": "â â œâ ¼â ™" }, { "input": "marbleize", "output": "â â œâ ¼â Šâ µâ ‘" }, { "input": "marbleized", "output": "â â œâ ¼â Šâ µâ «" }, { "input": "marbleizes", "output": "â â œâ ¼â Šâ µâ ‘â Ž" }, { "input": "marbleizing", "output": "â â œâ ¼â Šâ µâ Œ" }, { "input": "marbles", "output": "â â œâ ¼â Ž" }, { "input": "marbling", "output": "â â œâ ƒâ ‡â Œ" }, { "input": "marbling's", "output": "â â œâ ƒâ ‡â Œâ „â Ž" }, { "input": "march", "output": "â â œâ ¡" }, { "input": "march's", "output": "â â œâ ¡â „â Ž" }, { "input": "marched", "output": "â â œâ ¡â «" }, { "input": "marcher", "output": "â â œâ ¡â »" }, { "input": "marcher's", "output": "â â œâ ¡â »â „â Ž" }, { "input": "marchers", "output": "â â œâ ¡â »â Ž" }, { "input": "marches", "output": "â â œâ ¡â ‘â Ž" }, { "input": "marching", "output": "â â œâ ¡â Œ" }, { "input": "marchioness", "output": "â â œâ ¡â Šâ •â °â Ž" }, { "input": "marchioness's", "output": "â â œâ ¡â Šâ •â °â Žâ „â Ž" }, { "input": "marchionesses", "output": "â â œâ ¡â Šâ •â °â Žâ ‘â Ž" }, { "input": "mare", "output": "â â œâ ‘" }, { "input": "mare's", "output": "â â œâ ‘â „â Ž" }, { "input": "mares", "output": "â â œâ ‘â Ž" }, { "input": "margarine", "output": "â â œâ ›â œâ ”â ‘" }, { "input": "margarine's", "output": "â â œâ ›â œâ ”â ‘â „â Ž" }, { "input": "margarita", "output": "â â œâ ›â œâ Šâ žâ " }, { "input": "margarita's", "output": "â â œâ ›â œâ Šâ žâ â „â Ž" }, { "input": "margaritas", "output": "â â œâ ›â œâ Šâ žâ â Ž" }, { "input": "margin", "output": "â â œâ ›â ”" }, { "input": "margin's", "output": "â â œâ ›â ”â „â Ž" }, { "input": "marginal", "output": "â â œâ ›â ”â â ‡" }, { "input": "marginalia", "output": "â â œâ ›â ”â â ‡â Šâ " }, { "input": "marginalia's", "output": "â â œâ ›â ”â â ‡â Šâ â „â Ž" }, { "input": "marginalization", "output": "â â œâ ›â ”â â ‡â Šâ µâ  â " }, { "input": "marginalization's", "output": "â â œâ ›â ”â â ‡â Šâ µâ  â â „â Ž" }, { "input": "marginalize", "output": "â â œâ ›â ”â â ‡â Šâ µâ ‘" }, { "input": "marginalized", "output": "â â œâ ›â ”â â ‡â Šâ µâ «" }, { "input": "marginalizes", "output": "â â œâ ›â ”â â ‡â Šâ µâ ‘â Ž" }, { "input": "marginalizing", "output": "â â œâ ›â ”â â ‡â Šâ µâ Œ" }, { "input": "marginally", "output": "â â œâ ›â ”â  â ½" }, { "input": "margins", "output": "â â œâ ›â ”â Ž" }, { "input": "maria", "output": "â â œâ Šâ " }, { "input": "maria's", "output": "â â œâ Šâ â „â Ž" }, { "input": "mariachi", "output": "â â œâ Šâ â ¡â Š" }, { "input": "mariachi's", "output": "â â œâ Šâ â ¡â Šâ „â Ž" }, { "input": "mariachis", "output": "â â œâ Šâ â ¡â Šâ Ž" }, { "input": "marigold", "output": "â â œâ Šâ ›â •⠇⠙" }, { "input": "marigold's", "output": "â â œâ Šâ ›â •⠇⠙⠄⠎" }, { "input": "marigolds", "output": "â â œâ Šâ ›â •⠇⠙⠎" }, { "input": "marijuana", "output": "â â œâ Šâ šâ ¥â â â " }, { "input": "marijuana's", "output": "â â œâ Šâ šâ ¥â â â â „â Ž" }, { "input": "marimba", "output": "â â œâ Šâ â ƒâ " }, { "input": "marimba's", "output": "â â œâ Šâ â ƒâ â „â Ž" }, { "input": "marimbas", "output": "â â œâ Šâ â ƒâ â Ž" }, { "input": "marina", "output": "â â œâ ”â " }, { "input": "marina's", "output": "â â œâ ”â â „â Ž" }, { "input": "marinade", "output": "â â œâ ”â â ™â ‘" }, { "input": "marinade's", "output": "â â œâ ”â â ™â ‘â „â Ž" }, { "input": "marinaded", "output": "â â œâ ”â â ™â «" }, { "input": "marinades", "output": "â â œâ ”â â ™â ‘â Ž" }, { "input": "marinading", "output": "â â œâ ”â â ™â Œ" }, { "input": "marinara", "output": "â â œâ ”â œâ " }, { "input": "marinara's", "output": "â â œâ ”â œâ â „â Ž" }, { "input": "marinas", "output": "â â œâ ”â â Ž" }, { "input": "marinate", "output": "â â œâ ”â â žâ ‘" }, { "input": "marinated", "output": "â â œâ ”â â žâ «" }, { "input": "marinates", "output": "â â œâ ”â â žâ ‘â Ž" }, { "input": "marinating", "output": "â â œâ ”â â žâ Œ" }, { "input": "marination", "output": "â â œâ ”â  â " }, { "input": "marination's", "output": "â â œâ ”â  â â „â Ž" }, { "input": "marine", "output": "â â œâ ”â ‘" }, { "input": "marine's", "output": "â â œâ ”â ‘â „â Ž" }, { "input": "mariner", "output": "â â œâ ”â »" }, { "input": "mariner's", "output": "â â œâ ”⠻⠄⠎" }, { "input": "mariners", "output": "â â œâ ”⠻⠎" }, { "input": "marines", "output": "â â œâ ”â ‘â Ž" }, { "input": "marionette", "output": "â â œâ Šâ •â â ‘â žâ žâ ‘" }, { "input": "marionette's", "output": "â â œâ Šâ •â â ‘â žâ žâ ‘â „â Ž" }, { "input": "marionettes", "output": "â â œâ Šâ •â â ‘â žâ žâ ‘â Ž" }, { "input": "marital", "output": "â â œâ Šâ žâ â ‡" }, { "input": "maritally", "output": "â â œâ Šâ žâ  â ½" }, { "input": "maritime", "output": "â â œâ Šâ â ž" }, { "input": "marjoram", "output": "â â œâ šâ •â —â â " }, { "input": "marjoram's", "output": "â â œâ šâ •â —â â â „â Ž" }, { "input": "mark", "output": "â â œâ …" }, { "input": "mark's", "output": "â â œâ …â „â Ž" }, { "input": "markdown", "output": "â â œâ …⠙⠪â " }, { "input": "markdown's", "output": "â â œâ …⠙⠪â â „â Ž" }, { "input": "markdowns", "output": "â â œâ …⠙⠪â â Ž" }, { "input": "marked", "output": "â â œâ …â «" }, { "input": "markedly", "output": "â â œâ …⠫⠇⠽" }, { "input": "marker", "output": "â â œâ …â »" }, { "input": "marker's", "output": "â â œâ …⠻⠄⠎" }, { "input": "markers", "output": "â â œâ …⠻⠎" }, { "input": "market", "output": "â â œâ …â ‘â ž" }, { "input": "market's", "output": "â â œâ …â ‘â žâ „â Ž" }, { "input": "marketability", "output": "â â œâ …â ‘â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "marketability's", "output": "â â œâ …â ‘â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "marketable", "output": "â â œâ …â ‘â žâ â ¼" }, { "input": "marketed", "output": "â â œâ …â ‘â žâ «" }, { "input": "marketer", "output": "â â œâ …â ‘â žâ »" }, { "input": "marketer's", "output": "â â œâ …⠑⠞⠻⠄⠎" }, { "input": "marketers", "output": "â â œâ …⠑⠞⠻⠎" }, { "input": "marketing", "output": "â â œâ …â ‘â žâ Œ" }, { "input": "marketing's", "output": "â â œâ …⠑⠞⠌⠄⠎" }, { "input": "marketplace", "output": "â â œâ …â ‘â žâ â ‡â â ‰â ‘" }, { "input": "marketplace's", "output": "â â œâ …â ‘â žâ â ‡â â ‰â ‘â „â Ž" }, { "input": "marketplaces", "output": "â â œâ …â ‘â žâ â ‡â â ‰â ‘â Ž" }, { "input": "markets", "output": "â â œâ …â ‘â žâ Ž" }, { "input": "marking", "output": "â â œâ …â Œ" }, { "input": "marking's", "output": "â â œâ …⠌⠄⠎" }, { "input": "markings", "output": "â â œâ …⠌⠎" }, { "input": "markka", "output": "â â œâ …â …â " }, { "input": "markka's", "output": "â â œâ …â …â â „â Ž" }, { "input": "markkaa", "output": "â â œâ …â …â â " }, { "input": "marks", "output": "â â œâ …â Ž" }, { "input": "marksman", "output": "â â œâ …â Žâ â â " }, { "input": "marksman's", "output": "â â œâ …â Žâ â â â „â Ž" }, { "input": "marksmanship", "output": "â â œâ …â Žâ â â â ©â Šâ " }, { "input": "marksmanship's", "output": "â â œâ …â Žâ â â â ©â Šâ â „â Ž" }, { "input": "marksmen", "output": "â â œâ …â Žâ â ¢" }, { "input": "markup", "output": "â â œâ …â ¥â " }, { "input": "markup's", "output": "â â œâ …â ¥â â „â Ž" }, { "input": "markups", "output": "â â œâ …â ¥â â Ž" }, { "input": "marl", "output": "â â œâ ‡" }, { "input": "marl's", "output": "â â œâ ‡â „â Ž" }, { "input": "marlin", "output": "â â œâ ‡â ”" }, { "input": "marlin's", "output": "â â œâ ‡â ”â „â Ž" }, { "input": "marlinespike", "output": "â â œâ ‡â ”â ‘â Žâ â Šâ …â ‘" }, { "input": "marlinespike's", "output": "â â œâ ‡â ”â ‘â Žâ â Šâ …â ‘â „â Ž" }, { "input": "marlinespikes", "output": "â â œâ ‡â ”â ‘â Žâ â Šâ …â ‘â Ž" }, { "input": "marlins", "output": "â â œâ ‡â ”â Ž" }, { "input": "marmalade", "output": "â â œâ â â ‡â â ™â ‘" }, { "input": "marmalade's", "output": "â â œâ â â ‡â â ™â ‘â „â Ž" }, { "input": "marmoreal", "output": "â â œâ â •â —â ‚â ‡" }, { "input": "marmoset", "output": "â â œâ â •â Žâ ‘â ž" }, { "input": "marmoset's", "output": "â â œâ â •â Žâ ‘â žâ „â Ž" }, { "input": "marmosets", "output": "â â œâ â •â Žâ ‘â žâ Ž" }, { "input": "marmot", "output": "â â œâ â •â ž" }, { "input": "marmot's", "output": "â â œâ â •â žâ „â Ž" }, { "input": "marmots", "output": "â â œâ â •â žâ Ž" }, { "input": "maroon", "output": "â â œâ •â •â " }, { "input": "maroon's", "output": "â â œâ •â •â â „â Ž" }, { "input": "marooned", "output": "â â œâ •â •â â «" }, { "input": "marooning", "output": "â â œâ •â •â â Œ" }, { "input": "maroons", "output": "â â œâ •â •â â Ž" }, { "input": "marquee", "output": "â â œâ Ÿâ ¥â ‘â ‘" }, { "input": "marquee's", "output": "â â œâ Ÿâ ¥â ‘â ‘â „â Ž" }, { "input": "marquees", "output": "â â œâ Ÿâ ¥â ‘â ‘â Ž" }, { "input": "marquess", "output": "â â œâ Ÿâ ¥â ‘â Žâ Ž" }, { "input": "marquess's", "output": "â â œâ Ÿâ ¥â ‘â Žâ Žâ „â Ž" }, { "input": "marquesses", "output": "â â œâ Ÿâ ¥â ‘â Žâ Žâ ‘â Ž" }, { "input": "marquetry", "output": "â â œâ Ÿâ ¥â ‘â žâ —â ½" }, { "input": "marquetry's", "output": "â â œâ Ÿâ ¥â ‘⠞⠗⠽⠄⠎" }, { "input": "marquis", "output": "â â œâ Ÿâ ¥â Šâ Ž" }, { "input": "marquis's", "output": "â â œâ Ÿâ ¥â Šâ Žâ „â Ž" }, { "input": "marquise", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘" }, { "input": "marquise's", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘â „â Ž" }, { "input": "marquises", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘â Ž" }, { "input": "marquisette", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘â žâ žâ ‘" }, { "input": "marquisette's", "output": "â â œâ Ÿâ ¥â Šâ Žâ ‘â žâ žâ ‘â „â Ž" }, { "input": "marred", "output": "â â œâ —â «" }, { "input": "marriage", "output": "â â œâ —â Šâ â ›â ‘" }, { "input": "marriage's", "output": "â â œâ —â Šâ â ›â ‘â „â Ž" }, { "input": "marriageability", "output": "â â œâ —â Šâ â ›â ‘â â ƒâ Šâ ‡â °â ½" }, { "input": "marriageability's", "output": "â â œâ —â Šâ â ›â ‘â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "marriageable", "output": "â â œâ —â Šâ â ›â ‘â â ¼" }, { "input": "marriages", "output": "â â œâ —â Šâ â ›â ‘â Ž" }, { "input": "married", "output": "â â œâ —â Šâ «" }, { "input": "married's", "output": "â â œâ —â Šâ «â „â Ž" }, { "input": "marrieds", "output": "â â œâ —â Šâ «â Ž" }, { "input": "marries", "output": "â â œâ —â Šâ ‘â Ž" }, { "input": "marring", "output": "â â œâ —â Œ" }, { "input": "marrow", "output": "â â œâ —â ª" }, { "input": "marrow's", "output": "â â œâ —⠪⠄⠎" }, { "input": "marrows", "output": "â â œâ —⠪⠎" }, { "input": "marry", "output": "â â œâ —â ½" }, { "input": "marrying", "output": "â â œâ —⠽⠌" }, { "input": "mars", "output": "â â œâ Ž" }, { "input": "marsh", "output": "â â œâ ©" }, { "input": "marsh's", "output": "â â œâ ©â „â Ž" }, { "input": "marshal", "output": "â â œâ ©â â ‡" }, { "input": "marshal's", "output": "â â œâ ©â â ‡â „â Ž" }, { "input": "marshaled", "output": "â â œâ ©â â ‡â «" }, { "input": "marshaling", "output": "â â œâ ©â â ‡â Œ" }, { "input": "marshals", "output": "â â œâ ©â â ‡â Ž" }, { "input": "marshes", "output": "â â œâ ©â ‘â Ž" }, { "input": "marshier", "output": "â â œâ ©â Šâ »" }, { "input": "marshiest", "output": "â â œâ ©â Šâ ‘â Œ" }, { "input": "marshland's", "output": "â â œâ ©â ‡â ¯â „â Ž" }, { "input": "marshmallow", "output": "â â œâ ©â â â ‡â ‡â ª" }, { "input": "marshmallow's", "output": "â â œâ ©â â â ‡â ‡â ªâ „â Ž" }, { "input": "marshmallows", "output": "â â œâ ©â â â ‡â ‡â ªâ Ž" }, { "input": "marshy", "output": "â â œâ ©â ½" }, { "input": "marsupial", "output": "â â œâ Žâ ¥â â Šâ â ‡" }, { "input": "marsupial's", "output": "â â œâ Žâ ¥â â Šâ â ‡â „â Ž" }, { "input": "marsupials", "output": "â â œâ Žâ ¥â â Šâ â ‡â Ž" }, { "input": "mart", "output": "â â œâ ž" }, { "input": "mart's", "output": "â â œâ žâ „â Ž" }, { "input": "marten", "output": "â â œâ žâ ¢" }, { "input": "marten's", "output": "â â œâ žâ ¢â „â Ž" }, { "input": "martens", "output": "â â œâ žâ ¢â Ž" }, { "input": "martial", "output": "â â œâ žâ Šâ â ‡" }, { "input": "martially", "output": "â â œâ žâ Šâ  â ½" }, { "input": "martin", "output": "â â œâ žâ ”" }, { "input": "martin's", "output": "â â œâ žâ ”â „â Ž" }, { "input": "martinet", "output": "â â œâ žâ ”â ‘â ž" }, { "input": "martinet's", "output": "â â œâ žâ ”â ‘â žâ „â Ž" }, { "input": "martinets", "output": "â â œâ žâ ”â ‘â žâ Ž" }, { "input": "martingale", "output": "â â œâ žâ ”â ›â â ‡â ‘" }, { "input": "martingale's", "output": "â â œâ žâ ”â ›â â ‡â ‘â „â Ž" }, { "input": "martingales", "output": "â â œâ žâ ”â ›â â ‡â ‘â Ž" }, { "input": "martini", "output": "â â œâ žâ ”â Š" }, { "input": "martini's", "output": "â â œâ žâ ”â Šâ „â Ž" }, { "input": "martinis", "output": "â â œâ žâ ”â Šâ Ž" }, { "input": "martins", "output": "â â œâ žâ ”â Ž" }, { "input": "marts", "output": "â â œâ žâ Ž" }, { "input": "martyr", "output": "â â œâ žâ ½â —" }, { "input": "martyr's", "output": "â â œâ žâ ½â —â „â Ž" }, { "input": "martyrdom", "output": "â â œâ žâ ½â —⠙⠕â " }, { "input": "martyrdom's", "output": "â â œâ žâ ½â —⠙⠕â â „â Ž" }, { "input": "martyred", "output": "â â œâ žâ ½â —â «" }, { "input": "martyring", "output": "â â œâ žâ ½â —â Œ" }, { "input": "martyrs", "output": "â â œâ žâ ½â —â Ž" }, { "input": "marvel", "output": "â â œâ §â ‘â ‡" }, { "input": "marvel's", "output": "â â œâ §â ‘⠇⠄⠎" }, { "input": "marveled", "output": "â â œâ §â ‘⠇⠫" }, { "input": "marveling", "output": "â â œâ §â ‘⠇⠌" }, { "input": "marvelous", "output": "â â œâ §â ‘⠇⠳⠎" }, { "input": "marvelously", "output": "â â œâ §â ‘⠇⠳⠎⠇⠽" }, { "input": "marvels", "output": "â â œâ §â ‘⠇⠎" }, { "input": "marzipan", "output": "â â œâ µâ Šâ â â " }, { "input": "marzipan's", "output": "â â œâ µâ Šâ â â â „â Ž" }, { "input": "mas", "output": "â â â Ž" }, { "input": "mascara", "output": "â â â Žâ ‰â œâ " }, { "input": "mascara's", "output": "â â â Žâ ‰â œâ â „â Ž" }, { "input": "mascaraed", "output": "â â â Žâ ‰â œâ â «" }, { "input": "mascaraing", "output": "â â â Žâ ‰â œâ â Œ" }, { "input": "mascaras", "output": "â â â Žâ ‰â œâ â Ž" }, { "input": "mascot", "output": "â â â Žâ ‰â •â ž" }, { "input": "mascot's", "output": "â â â Žâ ‰â •â žâ „â Ž" }, { "input": "mascots", "output": "â â â Žâ ‰â •â žâ Ž" }, { "input": "masculine", "output": "â â â Žâ ‰â ¥â ‡â ”â ‘" }, { "input": "masculine's", "output": "â â â Žâ ‰â ¥â ‡â ”â ‘â „â Ž" }, { "input": "masculines", "output": "â â â Žâ ‰â ¥â ‡â ”â ‘â Ž" }, { "input": "masculinity", "output": "â â â Žâ ‰â ¥â ‡â ”â °â ½" }, { "input": "masculinity's", "output": "â â â Žâ ‰â ¥â ‡â ”⠰⠽⠄⠎" }, { "input": "maser", "output": "â â â Žâ »" }, { "input": "maser's", "output": "â â â Žâ »â „â Ž" }, { "input": "masers", "output": "â â â Žâ »â Ž" }, { "input": "mash", "output": "â â â ©" }, { "input": "mash's", "output": "â â â ©â „â Ž" }, { "input": "mashed", "output": "â â â ©â «" }, { "input": "masher", "output": "â â â ©â »" }, { "input": "masher's", "output": "â â â ©â »â „â Ž" }, { "input": "mashers", "output": "â â â ©â »â Ž" }, { "input": "mashes", "output": "â â â ©â ‘â Ž" }, { "input": "mashing", "output": "â â â ©â Œ" }, { "input": "mask", "output": "â â â Žâ …" }, { "input": "mask's", "output": "â â â Žâ …â „â Ž" }, { "input": "masked", "output": "â â â Žâ …â «" }, { "input": "masker", "output": "â â â Žâ …â »" }, { "input": "masker's", "output": "â â â Žâ …⠻⠄⠎" }, { "input": "maskers", "output": "â â â Žâ …⠻⠎" }, { "input": "masking", "output": "â â â Žâ …â Œ" }, { "input": "masks", "output": "â â â Žâ …â Ž" }, { "input": "masochism", "output": "â â â Žâ •â ¡â Šâ Žâ " }, { "input": "masochism's", "output": "â â â Žâ •â ¡â Šâ Žâ â „â Ž" }, { "input": "masochist", "output": "â â â Žâ •â ¡â Šâ Œ" }, { "input": "masochist's", "output": "â â â Žâ •⠡⠊⠌⠄⠎" }, { "input": "masochistic", "output": "â â â Žâ •⠡⠊⠌⠊⠉" }, { "input": "masochistically", "output": "â â â Žâ •⠡⠊⠌⠊⠉⠠⠽" }, { "input": "masochists", "output": "â â â Žâ •⠡⠊⠌⠎" }, { "input": "mason", "output": "â â â Žâ •â " }, { "input": "mason's", "output": "â â â Žâ •â â „â Ž" }, { "input": "masonic", "output": "â â â Žâ •â â Šâ ‰" }, { "input": "masonry", "output": "â â â Žâ •â â —â ½" }, { "input": "masonry's", "output": "â â â Žâ •â â —⠽⠄⠎" }, { "input": "masons", "output": "â â â Žâ •â â Ž" }, { "input": "masque", "output": "â â â Žâ Ÿâ ¥â ‘" }, { "input": "masque's", "output": "â â â Žâ Ÿâ ¥â ‘â „â Ž" }, { "input": "masquerade", "output": "â â â Žâ Ÿâ ¥â »â â ™â ‘" }, { "input": "masquerade's", "output": "â â â Žâ Ÿâ ¥â »â â ™â ‘â „â Ž" }, { "input": "masqueraded", "output": "â â â Žâ Ÿâ ¥â »â â ™â «" }, { "input": "masquerader", "output": "â â â Žâ Ÿâ ¥â »â â ™â »" }, { "input": "masquerader's", "output": "â â â Žâ Ÿâ ¥â »â â ™â »â „â Ž" }, { "input": "masqueraders", "output": "â â â Žâ Ÿâ ¥â »â â ™â »â Ž" }, { "input": "masquerades", "output": "â â â Žâ Ÿâ ¥â »â â ™â ‘â Ž" }, { "input": "masquerading", "output": "â â â Žâ Ÿâ ¥â »â â ™â Œ" }, { "input": "masques", "output": "â â â Žâ Ÿâ ¥â ‘â Ž" }, { "input": "mass", "output": "â â â Žâ Ž" }, { "input": "mass's", "output": "â â â Žâ Žâ „â Ž" }, { "input": "massacre", "output": "â â â Žâ Žâ â ‰â —â ‘" }, { "input": "massacre's", "output": "â â â Žâ Žâ â ‰â —â ‘â „â Ž" }, { "input": "massacred", "output": "â â â Žâ Žâ â ‰â —â «" }, { "input": "massacres", "output": "â â â Žâ Žâ â ‰â —â ‘â Ž" }, { "input": "massacring", "output": "â â â Žâ Žâ â ‰â —â Œ" }, { "input": "massage", "output": "â â â Žâ Žâ â ›â ‘" }, { "input": "massage's", "output": "â â â Žâ Žâ â ›â ‘â „â Ž" }, { "input": "massaged", "output": "â â â Žâ Žâ â ›â «" }, { "input": "massages", "output": "â â â Žâ Žâ â ›â ‘â Ž" }, { "input": "massaging", "output": "â â â Žâ Žâ â ›â Œ" }, { "input": "massed", "output": "â â â Žâ Žâ «" }, { "input": "masses", "output": "â â â Žâ Žâ ‘â Ž" }, { "input": "masseur", "output": "â â â Žâ Žâ ‘⠥⠗" }, { "input": "masseur's", "output": "â â â Žâ Žâ ‘⠥⠗⠄⠎" }, { "input": "masseurs", "output": "â â â Žâ Žâ ‘⠥⠗⠎" }, { "input": "masseuse", "output": "â â â Žâ Žâ ‘⠥⠎⠑" }, { "input": "masseuse's", "output": "â â â Žâ Žâ ‘⠥⠎⠑⠄⠎" }, { "input": "masseuses", "output": "â â â Žâ Žâ ‘⠥⠎⠑⠎" }, { "input": "massing", "output": "â â â Žâ Žâ Œ" }, { "input": "massive", "output": "â â â Žâ Žâ Šâ §â ‘" }, { "input": "massively", "output": "â â â Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "massiveness", "output": "â â â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "massiveness's", "output": "â â â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "mast", "output": "â â â Œ" }, { "input": "mast's", "output": "â â â Œâ „â Ž" }, { "input": "mastectomies", "output": "â â â Œâ ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "mastectomy", "output": "â â â Œâ ‘⠉⠞⠕â â ½" }, { "input": "mastectomy's", "output": "â â â Œâ ‘⠉⠞⠕â â ½â „â Ž" }, { "input": "masted", "output": "â â â Œâ «" }, { "input": "master", "output": "â â â Œâ »" }, { "input": "master's", "output": "â â â Œâ »â „â Ž" }, { "input": "mastered", "output": "â â â Œâ »â «" }, { "input": "masterful", "output": "â â â Œâ »â °â ‡" }, { "input": "masterfully", "output": "â â â Œâ »â °â ‡â ‡â ½" }, { "input": "mastering", "output": "â â â Œâ »â Œ" }, { "input": "masterly", "output": "â â â Œâ »â ‡â ½" }, { "input": "mastermind", "output": "â â â Œâ »â â ”â ™" }, { "input": "mastermind's", "output": "â â â Œâ »â â ”⠙⠄⠎" }, { "input": "masterminded", "output": "â â â Œâ »â â ”⠙⠫" }, { "input": "masterminding", "output": "â â â Œâ »â â ”⠙⠌" }, { "input": "masterminds", "output": "â â â Œâ »â â ”⠙⠎" }, { "input": "masterpiece", "output": "â â â Œâ »â â Šâ ‘⠉⠑" }, { "input": "masterpiece's", "output": "â â â Œâ »â â Šâ ‘⠉⠑⠄⠎" }, { "input": "masterpieces", "output": "â â â Œâ »â â Šâ ‘⠉⠑⠎" }, { "input": "masters", "output": "â â â Œâ »â Ž" }, { "input": "masterstroke", "output": "â â â Œâ »â Œâ —â •â …â ‘" }, { "input": "masterstroke's", "output": "â â â Œâ »â Œâ —â •â …â ‘â „â Ž" }, { "input": "masterstrokes", "output": "â â â Œâ »â Œâ —â •â …â ‘â Ž" }, { "input": "masterwork", "output": "â â â Œâ »â â º" }, { "input": "masterwork's", "output": "â â â Œâ »â â ºâ „â Ž" }, { "input": "masterworks", "output": "â â â Œâ »â â ºâ Ž" }, { "input": "mastery", "output": "â â â Œâ »â ½" }, { "input": "mastery's", "output": "â â â Œâ »â ½â „â Ž" }, { "input": "masthead", "output": "â â â Œâ “â ‚â ™" }, { "input": "masthead's", "output": "â â â Œâ “⠂⠙⠄⠎" }, { "input": "mastheads", "output": "â â â Œâ “⠂⠙⠎" }, { "input": "mastic's", "output": "â â â Œâ Šâ ‰â „â Ž" }, { "input": "masticate", "output": "â â â Œâ Šâ ‰â â žâ ‘" }, { "input": "masticated", "output": "â â â Œâ Šâ ‰â â žâ «" }, { "input": "masticates", "output": "â â â Œâ Šâ ‰â â žâ ‘â Ž" }, { "input": "masticating", "output": "â â â Œâ Šâ ‰â â žâ Œ" }, { "input": "mastication", "output": "â â â Œâ Šâ ‰â  â " }, { "input": "mastication's", "output": "â â â Œâ Šâ ‰â  â â „â Ž" }, { "input": "mastiff", "output": "â â â Œâ Šâ ‹â ‹" }, { "input": "mastiff's", "output": "â â â Œâ Šâ ‹â ‹â „â Ž" }, { "input": "mastiffs", "output": "â â â Œâ Šâ –â Ž" }, { "input": "mastodon", "output": "â â â Œâ •⠙⠕â " }, { "input": "mastodon's", "output": "â â â Œâ •⠙⠕â â „â Ž" }, { "input": "mastodons", "output": "â â â Œâ •⠙⠕â â Ž" }, { "input": "mastoid", "output": "â â â Œâ •â Šâ ™" }, { "input": "mastoid's", "output": "â â â Œâ •⠊⠙⠄⠎" }, { "input": "mastoids", "output": "â â â Œâ •⠊⠙⠎" }, { "input": "masts", "output": "â â â Œâ Ž" }, { "input": "masturbate", "output": "â â â Œâ ¥â —â ƒâ â žâ ‘" }, { "input": "masturbated", "output": "â â â Œâ ¥â —â ƒâ â žâ «" }, { "input": "masturbates", "output": "â â â Œâ ¥â —â ƒâ â žâ ‘â Ž" }, { "input": "masturbating", "output": "â â â Œâ ¥â —â ƒâ â žâ Œ" }, { "input": "masturbation", "output": "â â â Œâ ¥â —⠃⠠â " }, { "input": "masturbation's", "output": "â â â Œâ ¥â —⠃⠠â â „â Ž" }, { "input": "mat", "output": "â â â ž" }, { "input": "mat's", "output": "â â â žâ „â Ž" }, { "input": "matador", "output": "â â â žâ â ™â •â —" }, { "input": "matador's", "output": "â â â žâ â ™â •â —â „â Ž" }, { "input": "matadors", "output": "â â â žâ â ™â •â —â Ž" }, { "input": "match", "output": "â â â žâ ¡" }, { "input": "match's", "output": "â â â žâ ¡â „â Ž" }, { "input": "matchbook", "output": "â â â žâ ¡â ƒâ •â •â …" }, { "input": "matchbook's", "output": "â â â žâ ¡â ƒâ •â •â …â „â Ž" }, { "input": "matchbooks", "output": "â â â žâ ¡â ƒâ •â •â …â Ž" }, { "input": "matchbox", "output": "â â â žâ ¡â ƒâ •â ­" }, { "input": "matchbox's", "output": "â â â žâ ¡â ƒâ •â ­â „â Ž" }, { "input": "matchboxes", "output": "â â â žâ ¡â ƒâ •â ­â ‘â Ž" }, { "input": "matched", "output": "â â â žâ ¡â «" }, { "input": "matches", "output": "â â â žâ ¡â ‘â Ž" }, { "input": "matching", "output": "â â â žâ ¡â Œ" }, { "input": "matchless", "output": "â â â žâ ¡â ¨â Ž" }, { "input": "matchlock", "output": "â â â žâ ¡â ‡â •⠉⠅" }, { "input": "matchlock's", "output": "â â â žâ ¡â ‡â •⠉⠅⠄⠎" }, { "input": "matchlocks", "output": "â â â žâ ¡â ‡â •⠉⠅⠎" }, { "input": "matchmaker", "output": "â â â žâ ¡â â â …â »" }, { "input": "matchmaker's", "output": "â â â žâ ¡â â â …⠻⠄⠎" }, { "input": "matchmakers", "output": "â â â žâ ¡â â â …⠻⠎" }, { "input": "matchmaking", "output": "â â â žâ ¡â â â …â Œ" }, { "input": "matchmaking's", "output": "â â â žâ ¡â â â …⠌⠄⠎" }, { "input": "matchstick", "output": "â â â žâ ¡â Œâ Šâ ‰â …" }, { "input": "matchstick's", "output": "â â â žâ ¡â Œâ Šâ ‰â …â „â Ž" }, { "input": "matchsticks", "output": "â â â žâ ¡â Œâ Šâ ‰â …â Ž" }, { "input": "matchwood's", "output": "â â â žâ ¡â ºâ •⠕⠙⠄⠎" }, { "input": "mate", "output": "â â â žâ ‘" }, { "input": "mate's", "output": "â â â žâ ‘â „â Ž" }, { "input": "mated", "output": "â â â žâ «" }, { "input": "material", "output": "â â â žâ »â Šâ â ‡" }, { "input": "material's", "output": "â â â žâ »â Šâ â ‡â „â Ž" }, { "input": "materialism", "output": "â â â žâ »â Šâ â ‡â Šâ Žâ " }, { "input": "materialism's", "output": "â â â žâ »â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "materialist", "output": "â â â žâ »â Šâ â ‡â Šâ Œ" }, { "input": "materialist's", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ „â Ž" }, { "input": "materialistic", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ Šâ ‰" }, { "input": "materialistically", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "materialists", "output": "â â â žâ »â Šâ â ‡â Šâ Œâ Ž" }, { "input": "materialization", "output": "â â â žâ »â Šâ â ‡â Šâ µâ  â " }, { "input": "materialization's", "output": "â â â žâ »â Šâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "materialize", "output": "â â â žâ »â Šâ â ‡â Šâ µâ ‘" }, { "input": "materialized", "output": "â â â žâ »â Šâ â ‡â Šâ µâ «" }, { "input": "materializes", "output": "â â â žâ »â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "materializing", "output": "â â â žâ »â Šâ â ‡â Šâ µâ Œ" }, { "input": "materially", "output": "â â â žâ »â Šâ  â ½" }, { "input": "materials", "output": "â â â žâ »â Šâ â ‡â Ž" }, { "input": "maternal", "output": "â â â žâ »â â â ‡" }, { "input": "maternally", "output": "â â â žâ »â â  â ½" }, { "input": "maternity", "output": "â â â žâ »â â °â ½" }, { "input": "maternity's", "output": "â â â žâ »â â °â ½â „â Ž" }, { "input": "maters", "output": "â â â žâ »â Ž" }, { "input": "mates", "output": "â â â žâ ‘â Ž" }, { "input": "math", "output": "â â â ¹" }, { "input": "math's", "output": "â â â ¹â „â Ž" }, { "input": "mathematical", "output": "â â â ®â â â žâ Šâ ‰â â ‡" }, { "input": "mathematically", "output": "â â â ®â â â žâ Šâ ‰â  â ½" }, { "input": "mathematician", "output": "â â â ®â â â žâ Šâ ‰â Šâ â " }, { "input": "mathematician's", "output": "â â â ®â â â žâ Šâ ‰â Šâ â â „â Ž" }, { "input": "mathematicians", "output": "â â â ®â â â žâ Šâ ‰â Šâ â â Ž" }, { "input": "mathematics", "output": "â â â ®â â â žâ Šâ ‰â Ž" }, { "input": "mathematics's", "output": "â â â ®â â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "mating", "output": "â â â žâ Œ" }, { "input": "mating's", "output": "â â â žâ Œâ „â Ž" }, { "input": "matins", "output": "â â â žâ ”â Ž" }, { "input": "matins's", "output": "â â â žâ ”â Žâ „â Ž" }, { "input": "matriarch", "output": "â â â žâ —⠊⠜⠡" }, { "input": "matriarch's", "output": "â â â žâ —⠊⠜⠡⠄⠎" }, { "input": "matriarchal", "output": "â â â žâ —⠊⠜⠡â â ‡" }, { "input": "matriarchies", "output": "â â â žâ —⠊⠜⠡⠊⠑⠎" }, { "input": "matriarchs", "output": "â â â žâ —⠊⠜⠡⠎" }, { "input": "matriarchy", "output": "â â â žâ —⠊⠜⠡⠽" }, { "input": "matriarchy's", "output": "â â â žâ —⠊⠜⠡⠽⠄⠎" }, { "input": "matrices", "output": "â â â žâ —⠊⠉⠑⠎" }, { "input": "matricidal", "output": "â â â žâ —⠊⠉⠊⠙â â ‡" }, { "input": "matricide", "output": "â â â žâ —⠊⠉⠊⠙⠑" }, { "input": "matricide's", "output": "â â â žâ —⠊⠉⠊⠙⠑⠄⠎" }, { "input": "matricides", "output": "â â â žâ —⠊⠉⠊⠙⠑⠎" }, { "input": "matriculate", "output": "â â â žâ —⠊⠉⠥⠇â â žâ ‘" }, { "input": "matriculated", "output": "â â â žâ —⠊⠉⠥⠇â â žâ «" }, { "input": "matriculates", "output": "â â â žâ —⠊⠉⠥⠇â â žâ ‘â Ž" }, { "input": "matriculating", "output": "â â â žâ —⠊⠉⠥⠇â â žâ Œ" }, { "input": "matriculation", "output": "â â â žâ —⠊⠉⠥⠇⠠â " }, { "input": "matriculation's", "output": "â â â žâ —⠊⠉⠥⠇⠠â â „â Ž" }, { "input": "matrimonial", "output": "â â â žâ —â Šâ â •â â Šâ â ‡" }, { "input": "matrimony", "output": "â â â žâ —â Šâ â •â â ½" }, { "input": "matrimony's", "output": "â â â žâ —â Šâ â •â â ½â „â Ž" }, { "input": "matrix", "output": "â â â žâ —â Šâ ­" }, { "input": "matrix's", "output": "â â â žâ —â Šâ ­â „â Ž" }, { "input": "matron", "output": "â â â žâ —â •â " }, { "input": "matron's", "output": "â â â žâ —â •â â „â Ž" }, { "input": "matronly", "output": "â â â žâ —â •â â ‡â ½" }, { "input": "matrons", "output": "â â â žâ —â •â â Ž" }, { "input": "mats", "output": "â â â žâ Ž" }, { "input": "matte", "output": "â â â žâ žâ ‘" }, { "input": "matte's", "output": "â â â žâ žâ ‘â „â Ž" }, { "input": "matted", "output": "â â â žâ žâ «" }, { "input": "matter", "output": "â â â žâ žâ »" }, { "input": "matter's", "output": "â â â žâ žâ »â „â Ž" }, { "input": "mattered", "output": "â â â žâ žâ »â «" }, { "input": "mattering", "output": "â â â žâ žâ »â Œ" }, { "input": "matters", "output": "â â â žâ žâ »â Ž" }, { "input": "mattes", "output": "â â â žâ žâ ‘â Ž" }, { "input": "matting", "output": "â â â žâ žâ Œ" }, { "input": "matting's", "output": "â â â žâ žâ Œâ „â Ž" }, { "input": "mattock", "output": "â â â žâ žâ •⠉⠅" }, { "input": "mattock's", "output": "â â â žâ žâ •⠉⠅⠄⠎" }, { "input": "mattocks", "output": "â â â žâ žâ •⠉⠅⠎" }, { "input": "mattress", "output": "â â â žâ žâ —â ‘â Žâ Ž" }, { "input": "mattress's", "output": "â â â žâ žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "mattresses", "output": "â â â žâ žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "maturate", "output": "â â â žâ ¥â —â â žâ ‘" }, { "input": "maturated", "output": "â â â žâ ¥â —â â žâ «" }, { "input": "maturates", "output": "â â â žâ ¥â —â â žâ ‘â Ž" }, { "input": "maturating", "output": "â â â žâ ¥â —â â žâ Œ" }, { "input": "maturation", "output": "â â â žâ ¥â —â  â " }, { "input": "maturation's", "output": "â â â žâ ¥â —â  â â „â Ž" }, { "input": "mature", "output": "â â â žâ ¥â —â ‘" }, { "input": "matured", "output": "â â â žâ ¥â —â «" }, { "input": "maturely", "output": "â â â žâ ¥â —⠑⠇⠽" }, { "input": "maturer", "output": "â â â žâ ¥â —â »" }, { "input": "matures", "output": "â â â žâ ¥â —â ‘â Ž" }, { "input": "maturest", "output": "â â â žâ ¥â —â ‘â Œ" }, { "input": "maturing", "output": "â â â žâ ¥â —â Œ" }, { "input": "maturities", "output": "â â â žâ ¥â —â Šâ žâ Šâ ‘â Ž" }, { "input": "maturity", "output": "â â â žâ ¥â —â °â ½" }, { "input": "maturity's", "output": "â â â žâ ¥â —⠰⠽⠄⠎" }, { "input": "matzo", "output": "â â â žâ µâ •" }, { "input": "matzo's", "output": "â â â žâ µâ •â „â Ž" }, { "input": "matzoh", "output": "â â â žâ µâ •â “" }, { "input": "matzoh's", "output": "â â â žâ µâ •â “â „â Ž" }, { "input": "matzohs", "output": "â â â žâ µâ •â “â Ž" }, { "input": "matzos", "output": "â â â žâ µâ •â Ž" }, { "input": "matzot", "output": "â â â žâ µâ •â ž" }, { "input": "matzoth", "output": "â â â žâ µâ •â ¹" }, { "input": "maudlin", "output": "â â â ¥â ™â ‡â ”" }, { "input": "maul", "output": "â â â ¥â ‡" }, { "input": "maul's", "output": "â â â ¥â ‡â „â Ž" }, { "input": "mauled", "output": "â â â ¥â ‡â «" }, { "input": "mauler", "output": "â â â ¥â ‡â »" }, { "input": "mauler's", "output": "â â â ¥â ‡â »â „â Ž" }, { "input": "maulers", "output": "â â â ¥â ‡â »â Ž" }, { "input": "mauling", "output": "â â â ¥â ‡â Œ" }, { "input": "mauls", "output": "â â â ¥â ‡â Ž" }, { "input": "maunder", "output": "â â â ¥â â ™â »" }, { "input": "maundered", "output": "â â â ¥â â ™â »â «" }, { "input": "maundering", "output": "â â â ¥â â ™â »â Œ" }, { "input": "maunders", "output": "â â â ¥â â ™â »â Ž" }, { "input": "mausoleum", "output": "â â â ¥â Žâ •⠇⠑⠥â " }, { "input": "mausoleum's", "output": "â â â ¥â Žâ •⠇⠑⠥â â „â Ž" }, { "input": "mausoleums", "output": "â â â ¥â Žâ •⠇⠑⠥â â Ž" }, { "input": "mauve", "output": "â â â ¥â §â ‘" }, { "input": "mauve's", "output": "â â â ¥â §â ‘â „â Ž" }, { "input": "maven", "output": "â â â §â ¢" }, { "input": "maven's", "output": "â â â §â ¢â „â Ž" }, { "input": "mavens", "output": "â â â §â ¢â Ž" }, { "input": "maverick", "output": "â â â §â »â Šâ ‰â …" }, { "input": "maverick's", "output": "â â â §â »â Šâ ‰â …â „â Ž" }, { "input": "mavericks", "output": "â â â §â »â Šâ ‰â …â Ž" }, { "input": "maw", "output": "â â â º" }, { "input": "maw's", "output": "â â â ºâ „â Ž" }, { "input": "mawkish", "output": "â â â ºâ …â Šâ ©" }, { "input": "mawkishly", "output": "â â â ºâ …⠊⠩⠇⠽" }, { "input": "mawkishness's", "output": "â â â ºâ …â Šâ ©â °â Žâ „â Ž" }, { "input": "maws", "output": "â â â ºâ Ž" }, { "input": "max's", "output": "â â â ­â „â Ž" }, { "input": "maxed", "output": "â â â ­â «" }, { "input": "maxes", "output": "â â â ­â ‘â Ž" }, { "input": "maxi", "output": "â â â ­â Š" }, { "input": "maxi's", "output": "â â â ­â Šâ „â Ž" }, { "input": "maxilla", "output": "â â â ­â Šâ ‡â ‡â " }, { "input": "maxilla's", "output": "â â â ­â Šâ ‡â ‡â â „â Ž" }, { "input": "maxillae", "output": "â â â ­â Šâ ‡â ‡â â ‘" }, { "input": "maxillary", "output": "â â â ­â Šâ ‡â ‡â œâ ½" }, { "input": "maxim", "output": "â â â ­â Šâ " }, { "input": "maxim's", "output": "â â â ­â Šâ â „â Ž" }, { "input": "maximal", "output": "â â â ­â Šâ â â ‡" }, { "input": "maximally", "output": "â â â ­â Šâ â  â ½" }, { "input": "maximization", "output": "â â â ­â Šâ â Šâ µâ  â " }, { "input": "maximization's", "output": "â â â ­â Šâ â Šâ µâ  â â „â Ž" }, { "input": "maximize", "output": "â â â ­â Šâ â Šâ µâ ‘" }, { "input": "maximized", "output": "â â â ­â Šâ â Šâ µâ «" }, { "input": "maximizes", "output": "â â â ­â Šâ â Šâ µâ ‘â Ž" }, { "input": "maximizing", "output": "â â â ­â Šâ â Šâ µâ Œ" }, { "input": "maxims", "output": "â â â ­â Šâ â Ž" }, { "input": "maximum", "output": "â â â ­â Šâ â ¥â " }, { "input": "maximum's", "output": "â â â ­â Šâ â ¥â â „â Ž" }, { "input": "maximums", "output": "â â â ­â Šâ â ¥â â Ž" }, { "input": "maxing", "output": "â â â ­â Œ" }, { "input": "maxis", "output": "â â â ­â Šâ Ž" }, { "input": "may", "output": "â â â ½" }, { "input": "may's", "output": "â â â ½â „â Ž" }, { "input": "maybe", "output": "â â â ½â ƒâ ‘" }, { "input": "maybe's", "output": "â â â ½â ƒâ ‘â „â Ž" }, { "input": "maybes", "output": "â â â ½â ƒâ ‘â Ž" }, { "input": "mayday", "output": "â â â ½â â ™" }, { "input": "mayday's", "output": "â â â ½â â ™â „â Ž" }, { "input": "maydays", "output": "â â â ½â â ™â Ž" }, { "input": "mayflies", "output": "â â â ½â ‹â ‡â Šâ ‘â Ž" }, { "input": "mayflower", "output": "â â â ½â ‹â ‡â ªâ »" }, { "input": "mayflower's", "output": "â â â ½â ‹â ‡â ªâ »â „â Ž" }, { "input": "mayflowers", "output": "â â â ½â ‹â ‡â ªâ »â Ž" }, { "input": "mayfly", "output": "â â â ½â ‹â ‡â ½" }, { "input": "mayfly's", "output": "â â â ½â ‹â ‡â ½â „â Ž" }, { "input": "mayhem", "output": "â â â ½â “â ‘â " }, { "input": "mayhem's", "output": "â â â ½â “â ‘â â „â Ž" }, { "input": "mayo", "output": "â â â ½â •" }, { "input": "mayo's", "output": "â â â ½â •â „â Ž" }, { "input": "mayonnaise", "output": "â â â ½â •â â â â Šâ Žâ ‘" }, { "input": "mayonnaise's", "output": "â â â ½â •â â â â Šâ Žâ ‘â „â Ž" }, { "input": "mayor", "output": "â â â ½â •â —" }, { "input": "mayor's", "output": "â â â ½â •â —â „â Ž" }, { "input": "mayoral", "output": "â â â ½â •â —â â ‡" }, { "input": "mayoralty", "output": "â â â ½â •â —â â ‡â žâ ½" }, { "input": "mayoralty's", "output": "â â â ½â •â —â â ‡â žâ ½â „â Ž" }, { "input": "mayors", "output": "â â â ½â •â —â Ž" }, { "input": "maypole", "output": "â â â ½â â •⠇⠑" }, { "input": "maypole's", "output": "â â â ½â â •⠇⠑⠄⠎" }, { "input": "maypoles", "output": "â â â ½â â •⠇⠑⠎" }, { "input": "mayst", "output": "â â â ½â Œ" }, { "input": "maze", "output": "â â â µâ ‘" }, { "input": "maze's", "output": "â â â µâ ‘â „â Ž" }, { "input": "mazes", "output": "â â â µâ ‘â Ž" }, { "input": "mazurka", "output": "â â â µâ ¥â —â …â " }, { "input": "mazurka's", "output": "â â â µâ ¥â —â …â â „â Ž" }, { "input": "mazurkas", "output": "â â â µâ ¥â —â …â â Ž" }, { "input": "me", "output": "â â ‘" }, { "input": "mead", "output": "â â ‚â ™" }, { "input": "mead's", "output": "â â ‚⠙⠄⠎" }, { "input": "meadow", "output": "â â ‚⠙⠪" }, { "input": "meadow's", "output": "â â ‚⠙⠪⠄⠎" }, { "input": "meadowlark", "output": "â â ‚⠙⠪⠇⠜⠅" }, { "input": "meadowlark's", "output": "â â ‚⠙⠪⠇⠜⠅⠄⠎" }, { "input": "meadowlarks", "output": "â â ‚⠙⠪⠇⠜⠅⠎" }, { "input": "meadows", "output": "â â ‚⠙⠪⠎" }, { "input": "meager", "output": "â â ‚⠛⠻" }, { "input": "meagerly", "output": "â â ‚⠛⠻⠇⠽" }, { "input": "meagerness", "output": "â â ‚⠛⠻⠰⠎" }, { "input": "meagerness's", "output": "â â ‚⠛⠻⠰⠎⠄⠎" }, { "input": "meal", "output": "â â ‚â ‡" }, { "input": "meal's", "output": "â â ‚⠇⠄⠎" }, { "input": "mealier", "output": "â â ‚⠇⠊⠻" }, { "input": "mealiest", "output": "â â ‚⠇⠊⠑⠌" }, { "input": "mealiness", "output": "â â ‚⠇⠊⠰⠎" }, { "input": "mealiness's", "output": "â â ‚⠇⠊⠰⠎⠄⠎" }, { "input": "meals", "output": "â â ‚⠇⠎" }, { "input": "mealtime", "output": "â â ‚â ‡â â ž" }, { "input": "mealtime's", "output": "â â ‚â ‡â â žâ „â Ž" }, { "input": "mealtimes", "output": "â â ‚â ‡â â žâ Ž" }, { "input": "mealy", "output": "â â ‚⠇⠽" }, { "input": "mealybug", "output": "â â ‚⠇⠽⠃⠥⠛" }, { "input": "mealybug's", "output": "â â ‚⠇⠽⠃⠥⠛⠄⠎" }, { "input": "mealybugs", "output": "â â ‚⠇⠽⠃⠥⠛⠎" }, { "input": "mealymouthed", "output": "â â ‚⠇⠽â â ³â ®â ™" }, { "input": "mean", "output": "â â ‚â " }, { "input": "mean's", "output": "â â ‚â â „â Ž" }, { "input": "meander", "output": "â â ‘⠯⠻" }, { "input": "meander's", "output": "â â ‘⠯⠻⠄⠎" }, { "input": "meandered", "output": "â â ‘⠯⠻⠫" }, { "input": "meandering", "output": "â â ‘⠯⠻⠌" }, { "input": "meanderings's", "output": "â â ‘⠯⠻⠌⠎⠄⠎" }, { "input": "meanders", "output": "â â ‘⠯⠻⠎" }, { "input": "meaner", "output": "â â ‚â â »" }, { "input": "meanest", "output": "â â ‚â â ‘â Œ" }, { "input": "meaning", "output": "â â ‚â â Œ" }, { "input": "meaning's", "output": "â â ‚â â Œâ „â Ž" }, { "input": "meaningful", "output": "â â ‚â â Œâ °â ‡" }, { "input": "meaningfully", "output": "â â ‚â â Œâ °â ‡â ‡â ½" }, { "input": "meaningfulness's", "output": "â â ‚â â Œâ °â ‡â °â Žâ „â Ž" }, { "input": "meaningless", "output": "â â ‚â â Œâ ¨â Ž" }, { "input": "meaninglessness's", "output": "â â ‚â â Œâ ¨â Žâ °â Žâ „â Ž" }, { "input": "meanings", "output": "â â ‚â â Œâ Ž" }, { "input": "meanly", "output": "â â ‚â â ‡â ½" }, { "input": "meanness", "output": "â â ‚â â °â Ž" }, { "input": "meanness's", "output": "â â ‚â â °â Žâ „â Ž" }, { "input": "means", "output": "â â ‚â â Ž" }, { "input": "meant", "output": "â â ‚â â ž" }, { "input": "meantime", "output": "â â ‚â â â ž" }, { "input": "meantime's", "output": "â â ‚â â â žâ „â Ž" }, { "input": "meanwhile", "output": "â â ‚â â ±â Šâ ‡â ‘" }, { "input": "meanwhile's", "output": "â â ‚â â ±â Šâ ‡â ‘â „â Ž" }, { "input": "measles", "output": "â â ‚⠎⠇⠑⠎" }, { "input": "measles's", "output": "â â ‚⠎⠇⠑⠎⠄⠎" }, { "input": "measlier", "output": "â â ‚⠎⠇⠊⠻" }, { "input": "measliest", "output": "â â ‚⠎⠇⠊⠑⠌" }, { "input": "measly", "output": "â â ‚⠎⠇⠽" }, { "input": "measurable", "output": "â â ‚⠎⠥⠗â â ¼" }, { "input": "measurably", "output": "â â ‚⠎⠥⠗â â ƒâ ‡â ½" }, { "input": "measure", "output": "â â ‚⠎⠥⠗⠑" }, { "input": "measure's", "output": "â â ‚⠎⠥⠗⠑⠄⠎" }, { "input": "measured", "output": "â â ‚⠎⠥⠗⠫" }, { "input": "measureless", "output": "â â ‚⠎⠥⠗⠑⠨⠎" }, { "input": "measurement", "output": "â â ‚⠎⠥⠗⠑⠰⠞" }, { "input": "measurement's", "output": "â â ‚⠎⠥⠗⠑⠰⠞⠄⠎" }, { "input": "measurements", "output": "â â ‚⠎⠥⠗⠑⠰⠞⠎" }, { "input": "measures", "output": "â â ‚⠎⠥⠗⠑⠎" }, { "input": "measuring", "output": "â â ‚⠎⠥⠗⠌" }, { "input": "meat", "output": "â â ‚â ž" }, { "input": "meat's", "output": "â â ‚â žâ „â Ž" }, { "input": "meatball", "output": "â â ‚â žâ ƒâ â ‡â ‡" }, { "input": "meatball's", "output": "â â ‚â žâ ƒâ â ‡â ‡â „â Ž" }, { "input": "meatballs", "output": "â â ‚â žâ ƒâ â ‡â ‡â Ž" }, { "input": "meatier", "output": "â â ‚â žâ Šâ »" }, { "input": "meatiest", "output": "â â ‚â žâ Šâ ‘â Œ" }, { "input": "meatiness", "output": "â â ‚â žâ Šâ °â Ž" }, { "input": "meatiness's", "output": "â â ‚â žâ Šâ °â Žâ „â Ž" }, { "input": "meatless", "output": "â â ‚⠞⠨⠎" }, { "input": "meatloaf", "output": "â â ‚⠞⠇⠕â â ‹" }, { "input": "meatloaf's", "output": "â â ‚⠞⠇⠕â â ‹â „â Ž" }, { "input": "meatloaves", "output": "â â ‚⠞⠇⠕â â §â ‘â Ž" }, { "input": "meatpacking", "output": "â â ‚â žâ â â ‰â …â Œ" }, { "input": "meatpacking's", "output": "â â ‚â žâ â â ‰â …⠌⠄⠎" }, { "input": "meats", "output": "â â ‚â žâ Ž" }, { "input": "meaty", "output": "â â ‚â žâ ½" }, { "input": "mecca", "output": "â â ‘â ’â " }, { "input": "mecca's", "output": "â â ‘â ’â â „â Ž" }, { "input": "meccas", "output": "â â ‘â ’â â Ž" }, { "input": "mechanic", "output": "â â ‘â ¡â â â Šâ ‰" }, { "input": "mechanic's", "output": "â â ‘â ¡â â â Šâ ‰â „â Ž" }, { "input": "mechanical", "output": "â â ‘â ¡â â â Šâ ‰â â ‡" }, { "input": "mechanically", "output": "â â ‘â ¡â â â Šâ ‰â  â ½" }, { "input": "mechanics", "output": "â â ‘â ¡â â â Šâ ‰â Ž" }, { "input": "mechanics's", "output": "â â ‘â ¡â â â Šâ ‰â Žâ „â Ž" }, { "input": "mechanism", "output": "â â ‘â ¡â â â Šâ Žâ " }, { "input": "mechanism's", "output": "â â ‘â ¡â â â Šâ Žâ â „â Ž" }, { "input": "mechanisms", "output": "â â ‘â ¡â â â Šâ Žâ â Ž" }, { "input": "mechanistic", "output": "â â ‘â ¡â â â Šâ Œâ Šâ ‰" }, { "input": "mechanization", "output": "â â ‘â ¡â â â Šâ µâ  â " }, { "input": "mechanization's", "output": "â â ‘â ¡â â â Šâ µâ  â â „â Ž" }, { "input": "mechanize", "output": "â â ‘â ¡â â â Šâ µâ ‘" }, { "input": "mechanized", "output": "â â ‘â ¡â â â Šâ µâ «" }, { "input": "mechanizes", "output": "â â ‘â ¡â â â Šâ µâ ‘â Ž" }, { "input": "mechanizing", "output": "â â ‘â ¡â â â Šâ µâ Œ" }, { "input": "medal", "output": "â â «â â ‡" }, { "input": "medal's", "output": "â â «â â ‡â „â Ž" }, { "input": "medalist", "output": "â â «â â ‡â Šâ Œ" }, { "input": "medalist's", "output": "â â «â â ‡â Šâ Œâ „â Ž" }, { "input": "medalists", "output": "â â «â â ‡â Šâ Œâ Ž" }, { "input": "medallion", "output": "â â «â â ‡â ‡â Šâ •â " }, { "input": "medallion's", "output": "â â «â â ‡â ‡â Šâ •â â „â Ž" }, { "input": "medallions", "output": "â â «â â ‡â ‡â Šâ •â â Ž" }, { "input": "medals", "output": "â â «â â ‡â Ž" }, { "input": "meddle", "output": "â â «â ™â ‡â ‘" }, { "input": "meddled", "output": "â â «â ™â ‡â «" }, { "input": "meddler", "output": "â â «â ™â ‡â »" }, { "input": "meddler's", "output": "â â «â ™â ‡â »â „â Ž" }, { "input": "meddlers", "output": "â â «â ™â ‡â »â Ž" }, { "input": "meddles", "output": "â â «â ™â ‡â ‘â Ž" }, { "input": "meddlesome", "output": "â â «â ™â ‡â ‘â â Ž" }, { "input": "meddling", "output": "â â «â ™â ‡â Œ" }, { "input": "media", "output": "â â «â Šâ " }, { "input": "media's", "output": "â â «â Šâ â „â Ž" }, { "input": "medial", "output": "â â «â Šâ â ‡" }, { "input": "medially", "output": "â â «â Šâ  â ½" }, { "input": "median", "output": "â â «â Šâ â " }, { "input": "median's", "output": "â â «â Šâ â â „â Ž" }, { "input": "medians", "output": "â â «â Šâ â â Ž" }, { "input": "medias", "output": "â â «â Šâ â Ž" }, { "input": "mediate", "output": "â â «â Šâ â žâ ‘" }, { "input": "mediated", "output": "â â «â Šâ â žâ «" }, { "input": "mediates", "output": "â â «â Šâ â žâ ‘â Ž" }, { "input": "mediating", "output": "â â «â Šâ â žâ Œ" }, { "input": "mediation", "output": "â â «â Šâ  â " }, { "input": "mediation's", "output": "â â «â Šâ  â â „â Ž" }, { "input": "mediator", "output": "â â «â Šâ â žâ •â —" }, { "input": "mediator's", "output": "â â «â Šâ â žâ •â —â „â Ž" }, { "input": "mediators", "output": "â â «â Šâ â žâ •â —â Ž" }, { "input": "medic", "output": "â â «â Šâ ‰" }, { "input": "medic's", "output": "â â «â Šâ ‰â „â Ž" }, { "input": "medicaid", "output": "â â «â Šâ ‰â â Šâ ™" }, { "input": "medicaid's", "output": "â â «â Šâ ‰â â Šâ ™â „â Ž" }, { "input": "medical", "output": "â â «â Šâ ‰â â ‡" }, { "input": "medical's", "output": "â â «â Šâ ‰â â ‡â „â Ž" }, { "input": "medically", "output": "â â «â Šâ ‰â  â ½" }, { "input": "medicals", "output": "â â «â Šâ ‰â â ‡â Ž" }, { "input": "medicament", "output": "â â «â Šâ ‰â â °â ž" }, { "input": "medicament's", "output": "â â «â Šâ ‰â â °â žâ „â Ž" }, { "input": "medicare", "output": "â â «â Šâ ‰â œâ ‘" }, { "input": "medicare's", "output": "â â «â Šâ ‰â œâ ‘â „â Ž" }, { "input": "medicate", "output": "â â «â Šâ ‰â â žâ ‘" }, { "input": "medicated", "output": "â â «â Šâ ‰â â žâ «" }, { "input": "medicates", "output": "â â «â Šâ ‰â â žâ ‘â Ž" }, { "input": "medicating", "output": "â â «â Šâ ‰â â žâ Œ" }, { "input": "medication", "output": "â â «â Šâ ‰â  â " }, { "input": "medication's", "output": "â â «â Šâ ‰â  â â „â Ž" }, { "input": "medications", "output": "â â «â Šâ ‰â  â â Ž" }, { "input": "medicinal", "output": "â â «â Šâ ‰â ”â â ‡" }, { "input": "medicinally", "output": "â â «â Šâ ‰â ”â  â ½" }, { "input": "medicine", "output": "â â «â Šâ ‰â ”â ‘" }, { "input": "medicine's", "output": "â â «â Šâ ‰â ”â ‘â „â Ž" }, { "input": "medicines", "output": "â â «â Šâ ‰â ”â ‘â Ž" }, { "input": "medics", "output": "â â «â Šâ ‰â Ž" }, { "input": "medieval", "output": "â â «â Šâ ‘â §â â ‡" }, { "input": "medievalist", "output": "â â «â Šâ ‘â §â â ‡â Šâ Œ" }, { "input": "medievalist's", "output": "â â «â Šâ ‘â §â â ‡â Šâ Œâ „â Ž" }, { "input": "medievalists", "output": "â â «â Šâ ‘â §â â ‡â Šâ Œâ Ž" }, { "input": "mediocre", "output": "â â «â Šâ •⠉⠗⠑" }, { "input": "mediocrities", "output": "â â «â Šâ •⠉⠗⠊⠞⠊⠑⠎" }, { "input": "mediocrity", "output": "â â «â Šâ •⠉⠗⠰⠽" }, { "input": "mediocrity's", "output": "â â «â Šâ •⠉⠗⠰⠽⠄⠎" }, { "input": "meditate", "output": "â â «â Šâ žâ â žâ ‘" }, { "input": "meditated", "output": "â â «â Šâ žâ â žâ «" }, { "input": "meditates", "output": "â â «â Šâ žâ â žâ ‘â Ž" }, { "input": "meditating", "output": "â â «â Šâ žâ â žâ Œ" }, { "input": "meditation", "output": "â â «â Šâ žâ  â " }, { "input": "meditation's", "output": "â â «â Šâ žâ  â â „â Ž" }, { "input": "meditations", "output": "â â «â Šâ žâ  â â Ž" }, { "input": "meditative", "output": "â â «â Šâ žâ â žâ Šâ §â ‘" }, { "input": "meditatively", "output": "â â «â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "medium", "output": "â â «â Šâ ¥â " }, { "input": "medium's", "output": "â â «â Šâ ¥â â „â Ž" }, { "input": "mediums", "output": "â â «â Šâ ¥â â Ž" }, { "input": "medley", "output": "â â «â ‡â ‘â ½" }, { "input": "medley's", "output": "â â «â ‡â ‘⠽⠄⠎" }, { "input": "medleys", "output": "â â «â ‡â ‘⠽⠎" }, { "input": "medulla", "output": "â â «â ¥â ‡â ‡â " }, { "input": "medulla's", "output": "â â «â ¥â ‡â ‡â â „â Ž" }, { "input": "medullas", "output": "â â «â ¥â ‡â ‡â â Ž" }, { "input": "meed", "output": "â â ‘â «" }, { "input": "meed's", "output": "â â ‘â «â „â Ž" }, { "input": "meek", "output": "â â ‘â ‘â …" }, { "input": "meeker", "output": "â â ‘â ‘â …â »" }, { "input": "meekest", "output": "â â ‘â ‘â …â ‘â Œ" }, { "input": "meekly", "output": "â â ‘⠑⠅⠇⠽" }, { "input": "meekness", "output": "â â ‘â ‘â …â °â Ž" }, { "input": "meekness's", "output": "â â ‘â ‘â …â °â Žâ „â Ž" }, { "input": "meerschaum", "output": "â â ‘⠻⠎⠡â â ¥â " }, { "input": "meerschaum's", "output": "â â ‘⠻⠎⠡â â ¥â â „â Ž" }, { "input": "meerschaums", "output": "â â ‘⠻⠎⠡â â ¥â â Ž" }, { "input": "meet", "output": "â â ‘â ‘â ž" }, { "input": "meet's", "output": "â â ‘â ‘â žâ „â Ž" }, { "input": "meeting", "output": "â â ‘â ‘â žâ Œ" }, { "input": "meeting's", "output": "â â ‘⠑⠞⠌⠄⠎" }, { "input": "meetinghouse", "output": "â â ‘⠑⠞⠌⠓⠳⠎⠑" }, { "input": "meetinghouse's", "output": "â â ‘⠑⠞⠌⠓⠳⠎⠑⠄⠎" }, { "input": "meetinghouses", "output": "â â ‘⠑⠞⠌⠓⠳⠎⠑⠎" }, { "input": "meetings", "output": "â â ‘⠑⠞⠌⠎" }, { "input": "meets", "output": "â â ‘â ‘â žâ Ž" }, { "input": "meg", "output": "â â ‘â ›" }, { "input": "megabit", "output": "â â ‘â ›â â ƒâ Šâ ž" }, { "input": "megabit's", "output": "â â ‘â ›â â ƒâ Šâ žâ „â Ž" }, { "input": "megabits", "output": "â â ‘â ›â â ƒâ Šâ žâ Ž" }, { "input": "megabucks's", "output": "â â ‘â ›â â ƒâ ¥â ‰â …â Žâ „â Ž" }, { "input": "megabyte", "output": "â â ‘â ›â â ƒâ ½â žâ ‘" }, { "input": "megabyte's", "output": "â â ‘â ›â â ƒâ ½â žâ ‘â „â Ž" }, { "input": "megabytes", "output": "â â ‘â ›â â ƒâ ½â žâ ‘â Ž" }, { "input": "megacycle", "output": "â â ‘â ›â â ‰â ½â ‰â ‡â ‘" }, { "input": "megacycle's", "output": "â â ‘â ›â â ‰â ½â ‰â ‡â ‘â „â Ž" }, { "input": "megacycles", "output": "â â ‘â ›â â ‰â ½â ‰â ‡â ‘â Ž" }, { "input": "megadeath", "output": "â â ‘â ›â â ™â ‚â ¹" }, { "input": "megadeath's", "output": "â â ‘â ›â â ™â ‚⠹⠄⠎" }, { "input": "megadeaths", "output": "â â ‘â ›â â ™â ‚⠹⠎" }, { "input": "megahertz", "output": "â â ‘â ›â â “⠻⠞⠵" }, { "input": "megahertz's", "output": "â â ‘â ›â â “⠻⠞⠵⠄⠎" }, { "input": "megalith", "output": "â â ‘â ›â â ‡â Šâ ¹" }, { "input": "megalith's", "output": "â â ‘â ›â â ‡â Šâ ¹â „â Ž" }, { "input": "megaliths", "output": "â â ‘â ›â â ‡â Šâ ¹â Ž" }, { "input": "megalomania", "output": "â â ‘â ›â â ‡â •â â â â Šâ " }, { "input": "megalomania's", "output": "â â ‘â ›â â ‡â •â â â â Šâ â „â Ž" }, { "input": "megalomaniac", "output": "â â ‘â ›â â ‡â •â â â â Šâ â ‰" }, { "input": "megalomaniac's", "output": "â â ‘â ›â â ‡â •â â â â Šâ â ‰â „â Ž" }, { "input": "megalomaniacs", "output": "â â ‘â ›â â ‡â •â â â â Šâ â ‰â Ž" }, { "input": "megalopolis", "output": "â â ‘â ›â â ‡â •â â •⠇⠊⠎" }, { "input": "megalopolis's", "output": "â â ‘â ›â â ‡â •â â •⠇⠊⠎⠄⠎" }, { "input": "megalopolises", "output": "â â ‘â ›â â ‡â •â â •⠇⠊⠎⠑⠎" }, { "input": "megaphone", "output": "â â ‘â ›â â â “â â •" }, { "input": "megaphone's", "output": "â â ‘â ›â â â “â â •â „â Ž" }, { "input": "megaphoned", "output": "â â ‘â ›â â â “â •â â «" }, { "input": "megaphones", "output": "â â ‘â ›â â â “â â •â Ž" }, { "input": "megaphoning", "output": "â â ‘â ›â â â “â •â â Œ" }, { "input": "megapixel", "output": "â â ‘â ›â â â Šâ ­â ‘â ‡" }, { "input": "megapixel's", "output": "â â ‘â ›â â â Šâ ­â ‘⠇⠄⠎" }, { "input": "megapixels", "output": "â â ‘â ›â â â Šâ ­â ‘⠇⠎" }, { "input": "megaton", "output": "â â ‘â ›â â žâ •â " }, { "input": "megaton's", "output": "â â ‘â ›â â žâ •â â „â Ž" }, { "input": "megatons", "output": "â â ‘â ›â â žâ •â â Ž" }, { "input": "megs", "output": "â â ‘⠛⠎" }, { "input": "meiosis", "output": "â â ‘â Šâ •â Žâ Šâ Ž" }, { "input": "meiosis's", "output": "â â ‘â Šâ •â Žâ Šâ Žâ „â Ž" }, { "input": "meiotic", "output": "â â ‘â Šâ •â žâ Šâ ‰" }, { "input": "melamine's", "output": "â â ‘â ‡â â â ”â ‘â „â Ž" }, { "input": "melancholia", "output": "â â ‘â ‡â â â ¡â •⠇⠊â " }, { "input": "melancholia's", "output": "â â ‘â ‡â â â ¡â •⠇⠊â â „â Ž" }, { "input": "melancholic", "output": "â â ‘â ‡â â â ¡â •⠇⠊⠉" }, { "input": "melancholics", "output": "â â ‘â ‡â â â ¡â •⠇⠊⠉⠎" }, { "input": "melancholy", "output": "â â ‘â ‡â â â ¡â •⠇⠽" }, { "input": "melancholy's", "output": "â â ‘â ‡â â â ¡â •⠇⠽⠄⠎" }, { "input": "melange", "output": "â â ‘â ‡â â â ›â ‘" }, { "input": "melange's", "output": "â â ‘â ‡â â â ›â ‘â „â Ž" }, { "input": "melanges", "output": "â â ‘â ‡â â â ›â ‘â Ž" }, { "input": "melanin", "output": "â â ‘â ‡â â â ”" }, { "input": "melanin's", "output": "â â ‘â ‡â â â ”â „â Ž" }, { "input": "melanoma", "output": "â â ‘â ‡â â â •â â " }, { "input": "melanoma's", "output": "â â ‘â ‡â â â •â â â „â Ž" }, { "input": "melanomas", "output": "â â ‘â ‡â â â •â â â Ž" }, { "input": "meld", "output": "â â ‘⠇⠙" }, { "input": "meld's", "output": "â â ‘⠇⠙⠄⠎" }, { "input": "melded", "output": "â â ‘⠇⠙⠫" }, { "input": "melding", "output": "â â ‘⠇⠙⠌" }, { "input": "melds", "output": "â â ‘⠇⠙⠎" }, { "input": "meliorate", "output": "â â ‘⠇⠊⠕⠗â â žâ ‘" }, { "input": "meliorated", "output": "â â ‘⠇⠊⠕⠗â â žâ «" }, { "input": "meliorates", "output": "â â ‘⠇⠊⠕⠗â â žâ ‘â Ž" }, { "input": "meliorating", "output": "â â ‘⠇⠊⠕⠗â â žâ Œ" }, { "input": "melioration", "output": "â â ‘⠇⠊⠕⠗⠠â " }, { "input": "melioration's", "output": "â â ‘⠇⠊⠕⠗⠠â â „â Ž" }, { "input": "meliorative", "output": "â â ‘⠇⠊⠕⠗â â žâ Šâ §â ‘" }, { "input": "mellifluous", "output": "â â ‘⠇⠇⠊⠋⠇⠥⠳⠎" }, { "input": "mellifluously", "output": "â â ‘⠇⠇⠊⠋⠇⠥⠳⠎⠇⠽" }, { "input": "mellifluousness", "output": "â â ‘⠇⠇⠊⠋⠇⠥⠳⠎⠰⠎" }, { "input": "mellifluousness's", "output": "â â ‘⠇⠇⠊⠋⠇⠥⠳⠎⠰⠎⠄⠎" }, { "input": "mellow", "output": "â â ‘⠇⠇⠪" }, { "input": "mellowed", "output": "â â ‘⠇⠇⠪⠫" }, { "input": "mellower", "output": "â â ‘⠇⠇⠪⠻" }, { "input": "mellowest", "output": "â â ‘⠇⠇⠪⠑⠌" }, { "input": "mellowing", "output": "â â ‘⠇⠇⠪⠌" }, { "input": "mellowly", "output": "â â ‘⠇⠇⠪⠇⠽" }, { "input": "mellowness", "output": "â â ‘⠇⠇⠪⠰⠎" }, { "input": "mellowness's", "output": "â â ‘⠇⠇⠪⠰⠎⠄⠎" }, { "input": "mellows", "output": "â â ‘⠇⠇⠪⠎" }, { "input": "melodic", "output": "â â ‘⠇⠕⠙⠊⠉" }, { "input": "melodically", "output": "â â ‘⠇⠕⠙⠊⠉⠠⠽" }, { "input": "melodies", "output": "â â ‘⠇⠕⠙⠊⠑⠎" }, { "input": "melodious", "output": "â â ‘⠇⠕⠙⠊⠳⠎" }, { "input": "melodiously", "output": "â â ‘⠇⠕⠙⠊⠳⠎⠇⠽" }, { "input": "melodiousness", "output": "â â ‘⠇⠕⠙⠊⠳⠎⠰⠎" }, { "input": "melodiousness's", "output": "â â ‘⠇⠕⠙⠊⠳⠎⠰⠎⠄⠎" }, { "input": "melodrama", "output": "â â ‘⠇⠕⠙⠗â â â " }, { "input": "melodrama's", "output": "â â ‘⠇⠕⠙⠗â â â â „â Ž" }, { "input": "melodramas", "output": "â â ‘⠇⠕⠙⠗â â â â Ž" }, { "input": "melodramatic", "output": "â â ‘⠇⠕⠙⠗â â â â žâ Šâ ‰" }, { "input": "melodramatically", "output": "â â ‘⠇⠕⠙⠗â â â â žâ Šâ ‰â  â ½" }, { "input": "melodramatics", "output": "â â ‘⠇⠕⠙⠗â â â â žâ Šâ ‰â Ž" }, { "input": "melodramatics's", "output": "â â ‘⠇⠕⠙⠗â â â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "melody", "output": "â â ‘⠇⠕⠙⠽" }, { "input": "melody's", "output": "â â ‘⠇⠕⠙⠽⠄⠎" }, { "input": "melon", "output": "â â ‘⠇⠕â " }, { "input": "melon's", "output": "â â ‘⠇⠕â â „â Ž" }, { "input": "melons", "output": "â â ‘⠇⠕â â Ž" }, { "input": "melt", "output": "â â ‘⠇⠞" }, { "input": "melt's", "output": "â â ‘⠇⠞⠄⠎" }, { "input": "meltdown", "output": "â â ‘⠇⠞⠙⠪â " }, { "input": "meltdown's", "output": "â â ‘⠇⠞⠙⠪â â „â Ž" }, { "input": "meltdowns", "output": "â â ‘⠇⠞⠙⠪â â Ž" }, { "input": "melted", "output": "â â ‘⠇⠞⠫" }, { "input": "melting", "output": "â â ‘⠇⠞⠌" }, { "input": "melts", "output": "â â ‘⠇⠞⠎" }, { "input": "member", "output": "â â ‘â â ƒâ »" }, { "input": "member's", "output": "â â ‘â â ƒâ »â „â Ž" }, { "input": "members", "output": "â â ‘â â ƒâ »â Ž" }, { "input": "membership", "output": "â â ‘â â ƒâ »â ©â Šâ " }, { "input": "membership's", "output": "â â ‘â â ƒâ »â ©â Šâ â „â Ž" }, { "input": "memberships", "output": "â â ‘â â ƒâ »â ©â Šâ â Ž" }, { "input": "membrane", "output": "â â ‘â â ƒâ —â â â ‘" }, { "input": "membrane's", "output": "â â ‘â â ƒâ —â â â ‘â „â Ž" }, { "input": "membranes", "output": "â â ‘â â ƒâ —â â â ‘â Ž" }, { "input": "membranous", "output": "â â ‘â â ƒâ —â â â ³â Ž" }, { "input": "memento", "output": "â â ‘â °â žâ •" }, { "input": "memento's", "output": "â â ‘â °â žâ •â „â Ž" }, { "input": "mementos", "output": "â â ‘â °â žâ •â Ž" }, { "input": "memo", "output": "â â ‘â â •" }, { "input": "memo's", "output": "â â ‘â â •â „â Ž" }, { "input": "memoir", "output": "â â ‘â â •â Šâ —" }, { "input": "memoir's", "output": "â â ‘â â •â Šâ —â „â Ž" }, { "input": "memoirs", "output": "â â ‘â â •â Šâ —â Ž" }, { "input": "memorabilia", "output": "â â ‘â â •â —â â ƒâ Šâ ‡â Šâ " }, { "input": "memorabilia's", "output": "â â ‘â â •â —â â ƒâ Šâ ‡â Šâ â „â Ž" }, { "input": "memorability", "output": "â â ‘â â •â —â â ƒâ Šâ ‡â °â ½" }, { "input": "memorability's", "output": "â â ‘â â •â —â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "memorable", "output": "â â ‘â â •â —â â ¼" }, { "input": "memorably", "output": "â â ‘â â •â —â â ƒâ ‡â ½" }, { "input": "memorandum", "output": "â â ‘â â •⠗⠯⠥â " }, { "input": "memorandum's", "output": "â â ‘â â •⠗⠯⠥â â „â Ž" }, { "input": "memorandums", "output": "â â ‘â â •⠗⠯⠥â â Ž" }, { "input": "memorial", "output": "â â ‘â â •â —â Šâ â ‡" }, { "input": "memorial's", "output": "â â ‘â â •â —â Šâ â ‡â „â Ž" }, { "input": "memorialize", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ ‘" }, { "input": "memorialized", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ «" }, { "input": "memorializes", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "memorializing", "output": "â â ‘â â •â —â Šâ â ‡â Šâ µâ Œ" }, { "input": "memorials", "output": "â â ‘â â •â —â Šâ â ‡â Ž" }, { "input": "memories", "output": "â â ‘â â •â —â Šâ ‘â Ž" }, { "input": "memorization", "output": "â â ‘â â •⠗⠊⠵⠠â " }, { "input": "memorization's", "output": "â â ‘â â •⠗⠊⠵⠠â â „â Ž" }, { "input": "memorize", "output": "â â ‘â â •⠗⠊⠵⠑" }, { "input": "memorized", "output": "â â ‘â â •⠗⠊⠵⠫" }, { "input": "memorizes", "output": "â â ‘â â •⠗⠊⠵⠑⠎" }, { "input": "memorizing", "output": "â â ‘â â •⠗⠊⠵⠌" }, { "input": "memory", "output": "â â ‘â â •â —â ½" }, { "input": "memory's", "output": "â â ‘â â •⠗⠽⠄⠎" }, { "input": "memos", "output": "â â ‘â â •â Ž" }, { "input": "men", "output": "â â ¢" }, { "input": "menace", "output": "â â ¢â â ‰â ‘" }, { "input": "menace's", "output": "â â ¢â â ‰â ‘â „â Ž" }, { "input": "menaced", "output": "â â ¢â â ‰â «" }, { "input": "menaces", "output": "â â ¢â â ‰â ‘â Ž" }, { "input": "menacing", "output": "â â ¢â â ‰â Œ" }, { "input": "menacingly", "output": "â â ¢â â ‰â Œâ ‡â ½" }, { "input": "menage", "output": "â â ¢â â ›â ‘" }, { "input": "menage's", "output": "â â ¢â â ›â ‘â „â Ž" }, { "input": "menagerie", "output": "â â ¢â â ›â »â Šâ ‘" }, { "input": "menagerie's", "output": "â â ¢â â ›â »â Šâ ‘â „â Ž" }, { "input": "menageries", "output": "â â ¢â â ›â »â Šâ ‘â Ž" }, { "input": "menages", "output": "â â ¢â â ›â ‘â Ž" }, { "input": "mend", "output": "â â ¢â ™" }, { "input": "mend's", "output": "â â ¢â ™â „â Ž" }, { "input": "mendacious", "output": "â â ¢â ™â â ‰â Šâ ³â Ž" }, { "input": "mendaciously", "output": "â â ¢â ™â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "mendacity", "output": "â â ¢â ™â â ‰â °â ½" }, { "input": "mendacity's", "output": "â â ¢â ™â â ‰â °â ½â „â Ž" }, { "input": "mended", "output": "â â ¢â ™â «" }, { "input": "mendelevium", "output": "â â ¢â ™â ‘⠇⠑⠧⠊⠥â " }, { "input": "mendelevium's", "output": "â â ¢â ™â ‘⠇⠑⠧⠊⠥â â „â Ž" }, { "input": "mender", "output": "â â ¢â ™â »" }, { "input": "mender's", "output": "â â ¢â ™â »â „â Ž" }, { "input": "menders", "output": "â â ¢â ™â »â Ž" }, { "input": "mendicancy", "output": "â â ¢â ™â Šâ ‰â â â ‰â ½" }, { "input": "mendicancy's", "output": "â â ¢â ™â Šâ ‰â â â ‰â ½â „â Ž" }, { "input": "mendicant", "output": "â â ¢â ™â Šâ ‰â â â ž" }, { "input": "mendicant's", "output": "â â ¢â ™â Šâ ‰â â â žâ „â Ž" }, { "input": "mendicants", "output": "â â ¢â ™â Šâ ‰â â â žâ Ž" }, { "input": "mending", "output": "â â ¢â ™â Œ" }, { "input": "mending's", "output": "â â ¢â ™â Œâ „â Ž" }, { "input": "mends", "output": "â â ¢â ™â Ž" }, { "input": "menfolk", "output": "â â ¢â ‹â •⠇⠅" }, { "input": "menfolk's", "output": "â â ¢â ‹â •⠇⠅⠄⠎" }, { "input": "menfolks", "output": "â â ¢â ‹â •⠇⠅⠎" }, { "input": "menfolks's", "output": "â â ¢â ‹â •⠇⠅⠎⠄⠎" }, { "input": "menhaden", "output": "â â ¢â “â â ™â ¢" }, { "input": "menhaden's", "output": "â â ¢â “â â ™â ¢â „â Ž" }, { "input": "menial", "output": "â â ¢â Šâ â ‡" }, { "input": "menial's", "output": "â â ¢â Šâ â ‡â „â Ž" }, { "input": "menially", "output": "â â ¢â Šâ  â ½" }, { "input": "menials", "output": "â â ¢â Šâ â ‡â Ž" }, { "input": "meningeal", "output": "â â ¢â ”⠛⠂⠇" }, { "input": "meninges", "output": "â â ¢â ”⠛⠑⠎" }, { "input": "meningitis", "output": "â â ¢â ”⠛⠊⠞⠊⠎" }, { "input": "meningitis's", "output": "â â ¢â ”⠛⠊⠞⠊⠎⠄⠎" }, { "input": "meninx", "output": "â â ¢â ”â ­" }, { "input": "meninx's", "output": "â â ¢â ”â ­â „â Ž" }, { "input": "menisci", "output": "â â ¢â Šâ Žâ ‰â Š" }, { "input": "meniscus", "output": "â â ¢â Šâ Žâ ‰â ¥â Ž" }, { "input": "meniscus's", "output": "â â ¢â Šâ Žâ ‰â ¥â Žâ „â Ž" }, { "input": "menopausal", "output": "â â ¢â •â â â ¥â Žâ â ‡" }, { "input": "menopause", "output": "â â ¢â •â â â ¥â Žâ ‘" }, { "input": "menopause's", "output": "â â ¢â •â â â ¥â Žâ ‘â „â Ž" }, { "input": "menorah", "output": "â â ¢â •â —â â “" }, { "input": "menorah's", "output": "â â ¢â •â —â â “â „â Ž" }, { "input": "menorahs", "output": "â â ¢â •â —â â “â Ž" }, { "input": "mensch", "output": "â â ¢â Žâ ¡" }, { "input": "mensch's", "output": "â â ¢â Žâ ¡â „â Ž" }, { "input": "mensches", "output": "â â ¢â Žâ ¡â ‘â Ž" }, { "input": "menservants", "output": "â â ¢â Žâ »â §â â â žâ Ž" }, { "input": "menses", "output": "â â ¢â Žâ ‘â Ž" }, { "input": "menses's", "output": "â â ¢â Žâ ‘â Žâ „â Ž" }, { "input": "menstrual", "output": "â â ¢â Œâ —â ¥â â ‡" }, { "input": "menstruate", "output": "â â ¢â Œâ —â ¥â â žâ ‘" }, { "input": "menstruated", "output": "â â ¢â Œâ —â ¥â â žâ «" }, { "input": "menstruates", "output": "â â ¢â Œâ —â ¥â â žâ ‘â Ž" }, { "input": "menstruating", "output": "â â ¢â Œâ —â ¥â â žâ Œ" }, { "input": "menstruation", "output": "â â ¢â Œâ —⠥⠠â " }, { "input": "menstruation's", "output": "â â ¢â Œâ —⠥⠠â â „â Ž" }, { "input": "mensurable", "output": "â â ¢â Žâ ¥â —â â ¼" }, { "input": "mensuration", "output": "â â ¢â Žâ ¥â —â  â " }, { "input": "mensuration's", "output": "â â ¢â Žâ ¥â —â  â â „â Ž" }, { "input": "menswear", "output": "â â ¢â Žâ ºâ ‘â œ" }, { "input": "menswear's", "output": "â â ¢â Žâ ºâ ‘⠜⠄⠎" }, { "input": "mental", "output": "â â ¢â žâ â ‡" }, { "input": "mentalist", "output": "â â ¢â žâ â ‡â Šâ Œ" }, { "input": "mentalist's", "output": "â â ¢â žâ â ‡â Šâ Œâ „â Ž" }, { "input": "mentalists", "output": "â â ¢â žâ â ‡â Šâ Œâ Ž" }, { "input": "mentalities", "output": "â â ¢â žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "mentality", "output": "â â ¢â žâ â ‡â °â ½" }, { "input": "mentality's", "output": "â â ¢â žâ â ‡â °â ½â „â Ž" }, { "input": "mentally", "output": "â â ¢â žâ  â ½" }, { "input": "menthol", "output": "â â ¢â ¹â •â ‡" }, { "input": "menthol's", "output": "â â ¢â ¹â •⠇⠄⠎" }, { "input": "mentholated", "output": "â â ¢â ¹â •â ‡â â žâ «" }, { "input": "mention", "output": "â â ¢â °â " }, { "input": "mention's", "output": "â â ¢â °â â „â Ž" }, { "input": "mentioned", "output": "â â ¢â °â â «" }, { "input": "mentioning", "output": "â â ¢â °â â Œ" }, { "input": "mentions", "output": "â â ¢â °â â Ž" }, { "input": "mentor", "output": "â â ¢â žâ •â —" }, { "input": "mentor's", "output": "â â ¢â žâ •â —â „â Ž" }, { "input": "mentored", "output": "â â ¢â žâ •â —â «" }, { "input": "mentoring", "output": "â â ¢â žâ •â —â Œ" }, { "input": "mentors", "output": "â â ¢â žâ •â —â Ž" }, { "input": "menu", "output": "â â ¢â ¥" }, { "input": "menu's", "output": "â â ¢â ¥â „â Ž" }, { "input": "menus", "output": "â â ¢â ¥â Ž" }, { "input": "meow", "output": "â â ‘â ª" }, { "input": "meow's", "output": "â â ‘⠪⠄⠎" }, { "input": "meowed", "output": "â â ‘⠪⠫" }, { "input": "meowing", "output": "â â ‘⠪⠌" }, { "input": "meows", "output": "â â ‘⠪⠎" }, { "input": "mercantile", "output": "â â »â ‰â â â žâ Šâ ‡â ‘" }, { "input": "mercantilism", "output": "â â »â ‰â â â žâ Šâ ‡â Šâ Žâ " }, { "input": "mercantilism's", "output": "â â »â ‰â â â žâ Šâ ‡â Šâ Žâ â „â Ž" }, { "input": "mercenaries", "output": "â â »â ‰â ¢â œâ Šâ ‘â Ž" }, { "input": "mercenary", "output": "â â »â ‰â ¢â œâ ½" }, { "input": "mercenary's", "output": "â â »â ‰â ¢â œâ ½â „â Ž" }, { "input": "mercer", "output": "â â »â ‰â »" }, { "input": "mercer's", "output": "â â »â ‰â »â „â Ž" }, { "input": "mercerize", "output": "â â »â ‰â »â Šâ µâ ‘" }, { "input": "mercerized", "output": "â â »â ‰â »â Šâ µâ «" }, { "input": "mercerizes", "output": "â â »â ‰â »â Šâ µâ ‘â Ž" }, { "input": "mercerizing", "output": "â â »â ‰â »â Šâ µâ Œ" }, { "input": "mercers", "output": "â â »â ‰â »â Ž" }, { "input": "merchandise", "output": "â â »â ¡â ¯â Šâ Žâ ‘" }, { "input": "merchandise's", "output": "â â »â ¡â ¯â Šâ Žâ ‘â „â Ž" }, { "input": "merchandised", "output": "â â »â ¡â ¯â Šâ Žâ «" }, { "input": "merchandiser", "output": "â â »â ¡â ¯â Šâ Žâ »" }, { "input": "merchandiser's", "output": "â â »â ¡â ¯â Šâ Žâ »â „â Ž" }, { "input": "merchandisers", "output": "â â »â ¡â ¯â Šâ Žâ »â Ž" }, { "input": "merchandises", "output": "â â »â ¡â ¯â Šâ Žâ ‘â Ž" }, { "input": "merchandising", "output": "â â »â ¡â ¯â Šâ Žâ Œ" }, { "input": "merchandising's", "output": "â â »â ¡â ¯â Šâ Žâ Œâ „â Ž" }, { "input": "merchant", "output": "â â »â ¡â â â ž" }, { "input": "merchant's", "output": "â â »â ¡â â â žâ „â Ž" }, { "input": "merchantable", "output": "â â »â ¡â â â žâ â ¼" }, { "input": "merchantman", "output": "â â »â ¡â â â žâ â â " }, { "input": "merchantman's", "output": "â â »â ¡â â â žâ â â â „â Ž" }, { "input": "merchantmen", "output": "â â »â ¡â â â žâ â ¢" }, { "input": "merchants", "output": "â â »â ¡â â â žâ Ž" }, { "input": "mercies", "output": "â â »â ‰â Šâ ‘â Ž" }, { "input": "merciful", "output": "â â »â ‰â Šâ °â ‡" }, { "input": "mercifully", "output": "â â »â ‰â Šâ °â ‡â ‡â ½" }, { "input": "merciless", "output": "â â »â ‰â Šâ ¨â Ž" }, { "input": "mercilessly", "output": "â â »â ‰â Šâ ¨â Žâ ‡â ½" }, { "input": "mercilessness", "output": "â â »â ‰â Šâ ¨â Žâ °â Ž" }, { "input": "mercilessness's", "output": "â â »â ‰â Šâ ¨â Žâ °â Žâ „â Ž" }, { "input": "mercurial", "output": "â â »â ‰â ¥â —â Šâ â ‡" }, { "input": "mercurially", "output": "â â »â ‰â ¥â —â Šâ  â ½" }, { "input": "mercuric", "output": "â â »â ‰â ¥â —â Šâ ‰" }, { "input": "mercury", "output": "â â »â ‰â ¥â —â ½" }, { "input": "mercury's", "output": "â â »â ‰â ¥â —⠽⠄⠎" }, { "input": "mercy", "output": "â â »â ‰â ½" }, { "input": "mercy's", "output": "â â »â ‰â ½â „â Ž" }, { "input": "mere", "output": "â â »â ‘" }, { "input": "mere's", "output": "â â »â ‘â „â Ž" }, { "input": "merely", "output": "â â »â ‘⠇⠽" }, { "input": "meres", "output": "â â »â ‘â Ž" }, { "input": "merest", "output": "â â »â ‘â Œ" }, { "input": "meretricious", "output": "â â »â ‘⠞⠗⠊⠉⠊⠳⠎" }, { "input": "meretriciously", "output": "â â »â ‘⠞⠗⠊⠉⠊⠳⠎⠇⠽" }, { "input": "meretriciousness", "output": "â â »â ‘⠞⠗⠊⠉⠊⠳⠎⠰⠎" }, { "input": "meretriciousness's", "output": "â â »â ‘⠞⠗⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "merganser", "output": "â â »â ›â â â Žâ »" }, { "input": "merganser's", "output": "â â »â ›â â â Žâ »â „â Ž" }, { "input": "mergansers", "output": "â â »â ›â â â Žâ »â Ž" }, { "input": "merge", "output": "â â »â ›â ‘" }, { "input": "merged", "output": "â â »â ›â «" }, { "input": "merger", "output": "â â »â ›â »" }, { "input": "merger's", "output": "â â »â ›â »â „â Ž" }, { "input": "mergers", "output": "â â »â ›â »â Ž" }, { "input": "merges", "output": "â â »â ›â ‘â Ž" }, { "input": "merging", "output": "â â »â ›â Œ" }, { "input": "meridian", "output": "â â »â Šâ ™â Šâ â " }, { "input": "meridian's", "output": "â â »â Šâ ™â Šâ â â „â Ž" }, { "input": "meridians", "output": "â â »â Šâ ™â Šâ â â Ž" }, { "input": "meringue", "output": "â â »â Œâ ¥â ‘" }, { "input": "meringue's", "output": "â â »â Œâ ¥â ‘â „â Ž" }, { "input": "meringues", "output": "â â »â Œâ ¥â ‘â Ž" }, { "input": "merino", "output": "â â »â ”â •" }, { "input": "merino's", "output": "â â »â ”â •â „â Ž" }, { "input": "merinos", "output": "â â »â ”â •â Ž" }, { "input": "merit", "output": "â â »â Šâ ž" }, { "input": "merit's", "output": "â â »â Šâ žâ „â Ž" }, { "input": "merited", "output": "â â »â Šâ žâ «" }, { "input": "meriting", "output": "â â »â Šâ žâ Œ" }, { "input": "meritocracies", "output": "â â »â Šâ žâ •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "meritocracy", "output": "â â »â Šâ žâ •⠉⠗â â ‰â ½" }, { "input": "meritocracy's", "output": "â â »â Šâ žâ •⠉⠗â â ‰â ½â „â Ž" }, { "input": "meritorious", "output": "â â »â Šâ žâ •⠗⠊⠳⠎" }, { "input": "meritoriously", "output": "â â »â Šâ žâ •⠗⠊⠳⠎⠇⠽" }, { "input": "meritoriousness", "output": "â â »â Šâ žâ •⠗⠊⠳⠎⠰⠎" }, { "input": "meritoriousness's", "output": "â â »â Šâ žâ •⠗⠊⠳⠎⠰⠎⠄⠎" }, { "input": "merits", "output": "â â »â Šâ žâ Ž" }, { "input": "mermaid", "output": "â â »â â â Šâ ™" }, { "input": "mermaid's", "output": "â â »â â â Šâ ™â „â Ž" }, { "input": "mermaids", "output": "â â »â â â Šâ ™â Ž" }, { "input": "merman", "output": "â â »â â â " }, { "input": "merman's", "output": "â â »â â â â „â Ž" }, { "input": "mermen", "output": "â â »â â ¢" }, { "input": "merrier", "output": "â â »â —â Šâ »" }, { "input": "merriest", "output": "â â »â —â Šâ ‘â Œ" }, { "input": "merrily", "output": "â â »â —⠊⠇⠽" }, { "input": "merriment", "output": "â â »â —â Šâ °â ž" }, { "input": "merriment's", "output": "â â »â —â Šâ °â žâ „â Ž" }, { "input": "merriness", "output": "â â »â —â Šâ °â Ž" }, { "input": "merriness's", "output": "â â »â —â Šâ °â Žâ „â Ž" }, { "input": "merry", "output": "â â »â —â ½" }, { "input": "merrymaker", "output": "â â »â —â ½â â â …â »" }, { "input": "merrymaker's", "output": "â â »â —â ½â â â …⠻⠄⠎" }, { "input": "merrymakers", "output": "â â »â —â ½â â â …⠻⠎" }, { "input": "merrymaking", "output": "â â »â —â ½â â â …â Œ" }, { "input": "merrymaking's", "output": "â â »â —â ½â â â …⠌⠄⠎" }, { "input": "mes", "output": "â â ‘â Ž" }, { "input": "mesa", "output": "â â ‘â Žâ " }, { "input": "mesa's", "output": "â â ‘â Žâ â „â Ž" }, { "input": "mesas", "output": "â â ‘â Žâ â Ž" }, { "input": "mescal", "output": "â â ‘â Žâ ‰â â ‡" }, { "input": "mescal's", "output": "â â ‘â Žâ ‰â â ‡â „â Ž" }, { "input": "mescaline", "output": "â â ‘â Žâ ‰â â ‡â ”â ‘" }, { "input": "mescaline's", "output": "â â ‘â Žâ ‰â â ‡â ”â ‘â „â Ž" }, { "input": "mescals", "output": "â â ‘â Žâ ‰â â ‡â Ž" }, { "input": "mesdames", "output": "â â ‘â Žâ ™â â â ‘â Ž" }, { "input": "mesdemoiselles", "output": "â â ‘⠎⠙⠑â â •⠊⠎⠑⠇⠇⠑⠎" }, { "input": "mesh", "output": "â â ‘â ©" }, { "input": "mesh's", "output": "â â ‘â ©â „â Ž" }, { "input": "meshed", "output": "â â ‘â ©â «" }, { "input": "meshes", "output": "â â ‘â ©â ‘â Ž" }, { "input": "meshing", "output": "â â ‘â ©â Œ" }, { "input": "mesmerism", "output": "â â ‘â Žâ â »â Šâ Žâ " }, { "input": "mesmerism's", "output": "â â ‘â Žâ â »â Šâ Žâ â „â Ž" }, { "input": "mesmerize", "output": "â â ‘â Žâ â »â Šâ µâ ‘" }, { "input": "mesmerized", "output": "â â ‘â Žâ â »â Šâ µâ «" }, { "input": "mesmerizer", "output": "â â ‘â Žâ â »â Šâ µâ »" }, { "input": "mesmerizer's", "output": "â â ‘â Žâ â »â Šâ µâ »â „â Ž" }, { "input": "mesmerizers", "output": "â â ‘â Žâ â »â Šâ µâ »â Ž" }, { "input": "mesmerizes", "output": "â â ‘â Žâ â »â Šâ µâ ‘â Ž" }, { "input": "mesmerizing", "output": "â â ‘â Žâ â »â Šâ µâ Œ" }, { "input": "mesomorph", "output": "â â ‘â Žâ •â â •â —â â “" }, { "input": "mesomorph's", "output": "â â ‘â Žâ •â â •â —â â “â „â Ž" }, { "input": "mesomorphs", "output": "â â ‘â Žâ •â â •â —â â “â Ž" }, { "input": "meson", "output": "â â ‘â Žâ •â " }, { "input": "meson's", "output": "â â ‘â Žâ •â â „â Ž" }, { "input": "mesons", "output": "â â ‘â Žâ •â â Ž" }, { "input": "mesosphere", "output": "â â ‘â Žâ •â Žâ â “⠻⠑" }, { "input": "mesosphere's", "output": "â â ‘â Žâ •â Žâ â “⠻⠑⠄⠎" }, { "input": "mesospheres", "output": "â â ‘â Žâ •â Žâ â “⠻⠑⠎" }, { "input": "mesquite", "output": "â â ‘⠎⠟⠥⠊⠞⠑" }, { "input": "mesquite's", "output": "â â ‘⠎⠟⠥⠊⠞⠑⠄⠎" }, { "input": "mesquites", "output": "â â ‘⠎⠟⠥⠊⠞⠑⠎" }, { "input": "mess", "output": "â â ‘â Žâ Ž" }, { "input": "mess's", "output": "â â ‘â Žâ Žâ „â Ž" }, { "input": "message", "output": "â â ‘â Žâ Žâ â ›â ‘" }, { "input": "message's", "output": "â â ‘â Žâ Žâ â ›â ‘â „â Ž" }, { "input": "messages", "output": "â â ‘â Žâ Žâ â ›â ‘â Ž" }, { "input": "messed", "output": "â â ‘â Žâ Žâ «" }, { "input": "messeigneurs", "output": "â â ‘â Žâ Žâ ‘â Šâ ›â â ‘⠥⠗⠎" }, { "input": "messenger", "output": "â â ‘⠎⠎⠢⠛⠻" }, { "input": "messenger's", "output": "â â ‘⠎⠎⠢⠛⠻⠄⠎" }, { "input": "messengers", "output": "â â ‘⠎⠎⠢⠛⠻⠎" }, { "input": "messes", "output": "â â ‘â Žâ Žâ ‘â Ž" }, { "input": "messiah", "output": "â â ‘â Žâ Žâ Šâ â “" }, { "input": "messiah's", "output": "â â ‘â Žâ Žâ Šâ â “â „â Ž" }, { "input": "messiahs", "output": "â â ‘â Žâ Žâ Šâ â “â Ž" }, { "input": "messier", "output": "â â ‘â Žâ Žâ Šâ »" }, { "input": "messiest", "output": "â â ‘â Žâ Žâ Šâ ‘â Œ" }, { "input": "messieurs", "output": "â â ‘⠎⠎⠊⠑⠥⠗⠎" }, { "input": "messily", "output": "â â ‘⠎⠎⠊⠇⠽" }, { "input": "messiness", "output": "â â ‘â Žâ Žâ Šâ °â Ž" }, { "input": "messiness's", "output": "â â ‘â Žâ Žâ Šâ °â Žâ „â Ž" }, { "input": "messing", "output": "â â ‘â Žâ Žâ Œ" }, { "input": "messmate", "output": "â â ‘â Žâ Žâ â â žâ ‘" }, { "input": "messmate's", "output": "â â ‘â Žâ Žâ â â žâ ‘â „â Ž" }, { "input": "messmates", "output": "â â ‘â Žâ Žâ â â žâ ‘â Ž" }, { "input": "messy", "output": "â â ‘â Žâ Žâ ½" }, { "input": "mestizo", "output": "â â ‘⠌⠊⠵⠕" }, { "input": "mestizo's", "output": "â â ‘⠌⠊⠵⠕⠄⠎" }, { "input": "mestizos", "output": "â â ‘⠌⠊⠵⠕⠎" }, { "input": "met", "output": "â â ‘â ž" }, { "input": "metabolic", "output": "â â ‘â žâ â ƒâ •⠇⠊⠉" }, { "input": "metabolically", "output": "â â ‘â žâ â ƒâ •⠇⠊⠉⠠⠽" }, { "input": "metabolism", "output": "â â ‘â žâ â ƒâ •⠇⠊⠎â " }, { "input": "metabolism's", "output": "â â ‘â žâ â ƒâ •⠇⠊⠎â â „â Ž" }, { "input": "metabolisms", "output": "â â ‘â žâ â ƒâ •⠇⠊⠎â â Ž" }, { "input": "metabolite", "output": "â â ‘â žâ â ƒâ •⠇⠊⠞⠑" }, { "input": "metabolite's", "output": "â â ‘â žâ â ƒâ •⠇⠊⠞⠑⠄⠎" }, { "input": "metabolites", "output": "â â ‘â žâ â ƒâ •⠇⠊⠞⠑⠎" }, { "input": "metabolize", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠑" }, { "input": "metabolized", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠫" }, { "input": "metabolizes", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠑⠎" }, { "input": "metabolizing", "output": "â â ‘â žâ â ƒâ •⠇⠊⠵⠌" }, { "input": "metacarpal", "output": "â â ‘â žâ â ‰â œâ â â ‡" }, { "input": "metacarpal's", "output": "â â ‘â žâ â ‰â œâ â â ‡â „â Ž" }, { "input": "metacarpals", "output": "â â ‘â žâ â ‰â œâ â â ‡â Ž" }, { "input": "metacarpi", "output": "â â ‘â žâ â ‰â œâ â Š" }, { "input": "metacarpus", "output": "â â ‘â žâ â ‰â œâ â ¥â Ž" }, { "input": "metacarpus's", "output": "â â ‘â žâ â ‰â œâ â ¥â Žâ „â Ž" }, { "input": "metal", "output": "â â ‘â žâ â ‡" }, { "input": "metal's", "output": "â â ‘â žâ â ‡â „â Ž" }, { "input": "metaled", "output": "â â ‘â žâ â ‡â «" }, { "input": "metallic", "output": "â â ‘â žâ â ‡â ‡â Šâ ‰" }, { "input": "metallurgic", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠉" }, { "input": "metallurgical", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠉â â ‡" }, { "input": "metallurgist", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠌" }, { "input": "metallurgist's", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠌⠄⠎" }, { "input": "metallurgists", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠊⠌⠎" }, { "input": "metallurgy", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠽" }, { "input": "metallurgy's", "output": "â â ‘â žâ â ‡â ‡â ¥â —⠛⠽⠄⠎" }, { "input": "metals", "output": "â â ‘â žâ â ‡â Ž" }, { "input": "metalwork's", "output": "â â ‘â žâ â ‡â â ºâ „â Ž" }, { "input": "metalworker", "output": "â â ‘â žâ â ‡â â ºâ »" }, { "input": "metalworker's", "output": "â â ‘â žâ â ‡â â ºâ »â „â Ž" }, { "input": "metalworkers", "output": "â â ‘â žâ â ‡â â ºâ »â Ž" }, { "input": "metalworking", "output": "â â ‘â žâ â ‡â â ºâ Œ" }, { "input": "metalworking's", "output": "â â ‘â žâ â ‡â â ºâ Œâ „â Ž" }, { "input": "metamorphic", "output": "â â ‘â žâ â â •â —â â “â Šâ ‰" }, { "input": "metamorphism", "output": "â â ‘â žâ â â •â —â â “â Šâ Žâ " }, { "input": "metamorphism's", "output": "â â ‘â žâ â â •â —â â “â Šâ Žâ â „â Ž" }, { "input": "metamorphose", "output": "â â ‘â žâ â â •â —â â “â •â Žâ ‘" }, { "input": "metamorphosed", "output": "â â ‘â žâ â â •â —â â “â •â Žâ «" }, { "input": "metamorphoses", "output": "â â ‘â žâ â â •â —â â “â •â Žâ ‘â Ž" }, { "input": "metamorphosing", "output": "â â ‘â žâ â â •â —â â “â •â Žâ Œ" }, { "input": "metamorphosis", "output": "â â ‘â žâ â â •â —â â “â •â Žâ Šâ Ž" }, { "input": "metamorphosis's", "output": "â â ‘â žâ â â •â —â â “â •â Žâ Šâ Žâ „â Ž" }, { "input": "metaphor", "output": "â â ‘â žâ â â “â •â —" }, { "input": "metaphor's", "output": "â â ‘â žâ â â “â •â —â „â Ž" }, { "input": "metaphoric", "output": "â â ‘â žâ â â “â •â —â Šâ ‰" }, { "input": "metaphorical", "output": "â â ‘â žâ â â “â •â —â Šâ ‰â â ‡" }, { "input": "metaphorically", "output": "â â ‘â žâ â â “⠕⠗⠊⠉⠠⠽" }, { "input": "metaphors", "output": "â â ‘â žâ â â “â •â —â Ž" }, { "input": "metaphysical", "output": "â â ‘â žâ â â “⠽⠎⠊⠉â â ‡" }, { "input": "metaphysically", "output": "â â ‘â žâ â â “⠽⠎⠊⠉⠠⠽" }, { "input": "metaphysics", "output": "â â ‘â žâ â â “⠽⠎⠊⠉⠎" }, { "input": "metaphysics's", "output": "â â ‘â žâ â â “⠽⠎⠊⠉⠎⠄⠎" }, { "input": "metastases", "output": "â â ‘â žâ â Œâ â Žâ ‘â Ž" }, { "input": "metastasis", "output": "â â ‘â žâ â Œâ â Žâ Šâ Ž" }, { "input": "metastasis's", "output": "â â ‘â žâ â Œâ â Žâ Šâ Žâ „â Ž" }, { "input": "metastasize", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ ‘" }, { "input": "metastasized", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ «" }, { "input": "metastasizes", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ ‘â Ž" }, { "input": "metastasizing", "output": "â â ‘â žâ â Œâ â Žâ Šâ µâ Œ" }, { "input": "metastatic", "output": "â â ‘â žâ â Œâ â žâ Šâ ‰" }, { "input": "metatarsal", "output": "â â ‘â žâ â žâ œâ Žâ â ‡" }, { "input": "metatarsal's", "output": "â â ‘â žâ â žâ œâ Žâ â ‡â „â Ž" }, { "input": "metatarsals", "output": "â â ‘â žâ â žâ œâ Žâ â ‡â Ž" }, { "input": "metatarsi", "output": "â â ‘â žâ â žâ œâ Žâ Š" }, { "input": "metatarsus", "output": "â â ‘â žâ â žâ œâ Žâ ¥â Ž" }, { "input": "metatarsus's", "output": "â â ‘â žâ â žâ œâ Žâ ¥â Žâ „â Ž" }, { "input": "metatheses", "output": "â â ‘â žâ â ®â Žâ ‘â Ž" }, { "input": "metathesis", "output": "â â ‘â žâ â ®â Žâ Šâ Ž" }, { "input": "metathesis's", "output": "â â ‘â žâ â ®â Žâ Šâ Žâ „â Ž" }, { "input": "mete", "output": "â â ‘â žâ ‘" }, { "input": "mete's", "output": "â â ‘â žâ ‘â „â Ž" }, { "input": "meted", "output": "â â ‘â žâ «" }, { "input": "metempsychoses", "output": "â â ‘â žâ ‘â â â Žâ ½â ¡â •â Žâ ‘â Ž" }, { "input": "metempsychosis", "output": "â â ‘â žâ ‘â â â Žâ ½â ¡â •â Žâ Šâ Ž" }, { "input": "metempsychosis's", "output": "â â ‘â žâ ‘â â â Žâ ½â ¡â •â Žâ Šâ Žâ „â Ž" }, { "input": "meteor", "output": "â â ‘â žâ ‘â •â —" }, { "input": "meteor's", "output": "â â ‘â žâ ‘â •â —â „â Ž" }, { "input": "meteoric", "output": "â â ‘â žâ ‘â •â —â Šâ ‰" }, { "input": "meteorically", "output": "â â ‘⠞⠑⠕⠗⠊⠉⠠⠽" }, { "input": "meteorite", "output": "â â ‘â žâ ‘â •â —â Šâ žâ ‘" }, { "input": "meteorite's", "output": "â â ‘â žâ ‘â •â —â Šâ žâ ‘â „â Ž" }, { "input": "meteorites", "output": "â â ‘â žâ ‘â •â —â Šâ žâ ‘â Ž" }, { "input": "meteoroid", "output": "â â ‘â žâ ‘â •â —â •â Šâ ™" }, { "input": "meteoroid's", "output": "â â ‘⠞⠑⠕⠗⠕⠊⠙⠄⠎" }, { "input": "meteoroids", "output": "â â ‘⠞⠑⠕⠗⠕⠊⠙⠎" }, { "input": "meteorologic", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠉" }, { "input": "meteorological", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "meteorologist", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠌" }, { "input": "meteorologist's", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "meteorologists", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "meteorology", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠽" }, { "input": "meteorology's", "output": "â â ‘⠞⠑⠕⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "meteors", "output": "â â ‘â žâ ‘â •â —â Ž" }, { "input": "meter", "output": "â â ‘â žâ »" }, { "input": "meter's", "output": "â â ‘⠞⠻⠄⠎" }, { "input": "metered", "output": "â â ‘⠞⠻⠫" }, { "input": "metering", "output": "â â ‘⠞⠻⠌" }, { "input": "meters", "output": "â â ‘⠞⠻⠎" }, { "input": "metes", "output": "â â ‘â žâ ‘â Ž" }, { "input": "methadone", "output": "â â ‘â ¹â â ™â â •" }, { "input": "methadone's", "output": "â â ‘â ¹â â ™â â •â „â Ž" }, { "input": "methamphetamine", "output": "â â ‘â ¹â â â â “â ‘â žâ â â ”â ‘" }, { "input": "methamphetamine's", "output": "â â ‘â ¹â â â â “â ‘â žâ â â ”â ‘â „â Ž" }, { "input": "methane", "output": "â â ‘â ¹â â â ‘" }, { "input": "methane's", "output": "â â ‘â ¹â â â ‘â „â Ž" }, { "input": "methanol", "output": "â â ‘â ¹â â â •â ‡" }, { "input": "methanol's", "output": "â â ‘â ¹â â â •⠇⠄⠎" }, { "input": "methinks", "output": "â â ‘⠹⠔⠅⠎" }, { "input": "method", "output": "â â ‘⠹⠕⠙" }, { "input": "method's", "output": "â â ‘⠹⠕⠙⠄⠎" }, { "input": "methodical", "output": "â â ‘⠹⠕⠙⠊⠉â â ‡" }, { "input": "methodically", "output": "â â ‘⠹⠕⠙⠊⠉⠠⠽" }, { "input": "methodicalness", "output": "â â ‘⠹⠕⠙⠊⠉â â ‡â °â Ž" }, { "input": "methodicalness's", "output": "â â ‘⠹⠕⠙⠊⠉â â ‡â °â Žâ „â Ž" }, { "input": "methodological", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "methodologies", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠊⠑⠎" }, { "input": "methodology", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠽" }, { "input": "methodology's", "output": "â â ‘⠹⠕⠙⠕⠇⠕⠛⠽⠄⠎" }, { "input": "methods", "output": "â â ‘⠹⠕⠙⠎" }, { "input": "methought", "output": "â â ‘â ¹â â ³" }, { "input": "methyl", "output": "â â ‘⠹⠽⠇" }, { "input": "methyl's", "output": "â â ‘⠹⠽⠇⠄⠎" }, { "input": "meticulous", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎" }, { "input": "meticulously", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎⠇⠽" }, { "input": "meticulousness", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎⠰⠎" }, { "input": "meticulousness's", "output": "â â ‘⠞⠊⠉⠥⠇⠳⠎⠰⠎⠄⠎" }, { "input": "meting", "output": "â â ‘â žâ Œ" }, { "input": "metric", "output": "â â ‘â žâ —â Šâ ‰" }, { "input": "metrical", "output": "â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "metrically", "output": "â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "metricate", "output": "â â ‘â žâ —â Šâ ‰â â žâ ‘" }, { "input": "metricated", "output": "â â ‘â žâ —â Šâ ‰â â žâ «" }, { "input": "metricates", "output": "â â ‘â žâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "metricating", "output": "â â ‘â žâ —â Šâ ‰â â žâ Œ" }, { "input": "metrication", "output": "â â ‘⠞⠗⠊⠉⠠â " }, { "input": "metrication's", "output": "â â ‘⠞⠗⠊⠉⠠â â „â Ž" }, { "input": "metricize", "output": "â â ‘⠞⠗⠊⠉⠊⠵⠑" }, { "input": "metricized", "output": "â â ‘⠞⠗⠊⠉⠊⠵⠫" }, { "input": "metricizes", "output": "â â ‘⠞⠗⠊⠉⠊⠵⠑⠎" }, { "input": "metricizing", "output": "â â ‘⠞⠗⠊⠉⠊⠵⠌" }, { "input": "metrics", "output": "â â ‘⠞⠗⠊⠉⠎" }, { "input": "metro", "output": "â â ‘â žâ —â •" }, { "input": "metro's", "output": "â â ‘â žâ —â •â „â Ž" }, { "input": "metronome", "output": "â â ‘â žâ —â •â â •â â ‘" }, { "input": "metronome's", "output": "â â ‘â žâ —â •â â •â â ‘â „â Ž" }, { "input": "metronomes", "output": "â â ‘â žâ —â •â â •â â ‘â Ž" }, { "input": "metropolis", "output": "â â ‘â žâ —â •â â •⠇⠊⠎" }, { "input": "metropolis's", "output": "â â ‘â žâ —â •â â •⠇⠊⠎⠄⠎" }, { "input": "metropolises", "output": "â â ‘â žâ —â •â â •⠇⠊⠎⠑⠎" }, { "input": "metropolitan", "output": "â â ‘â žâ —â •â â •⠇⠊⠞â â " }, { "input": "metros", "output": "â â ‘â žâ —â •â Ž" }, { "input": "mettle", "output": "â â ‘⠞⠞⠇⠑" }, { "input": "mettle's", "output": "â â ‘⠞⠞⠇⠑⠄⠎" }, { "input": "mettlesome", "output": "â â ‘⠞⠞⠇⠑â â Ž" }, { "input": "mew", "output": "â â ‘â º" }, { "input": "mew's", "output": "â â ‘⠺⠄⠎" }, { "input": "mewed", "output": "â â ‘⠺⠫" }, { "input": "mewing", "output": "â â ‘⠺⠌" }, { "input": "mewl", "output": "â â ‘⠺⠇" }, { "input": "mewled", "output": "â â ‘⠺⠇⠫" }, { "input": "mewling", "output": "â â ‘⠺⠇⠌" }, { "input": "mewls", "output": "â â ‘⠺⠇⠎" }, { "input": "mews", "output": "â â ‘⠺⠎" }, { "input": "mews's", "output": "â â ‘⠺⠎⠄⠎" }, { "input": "mezzanine", "output": "â â ‘⠵⠵â â â ”â ‘" }, { "input": "mezzanine's", "output": "â â ‘⠵⠵â â â ”â ‘â „â Ž" }, { "input": "mezzanines", "output": "â â ‘⠵⠵â â â ”â ‘â Ž" }, { "input": "mi", "output": "â â Š" }, { "input": "mi's", "output": "â â Šâ „â Ž" }, { "input": "miasma", "output": "â â Šâ â Žâ â " }, { "input": "miasma's", "output": "â â Šâ â Žâ â â „â Ž" }, { "input": "miasmas", "output": "â â Šâ â Žâ â â Ž" }, { "input": "mica", "output": "â â Šâ ‰â " }, { "input": "mica's", "output": "â â Šâ ‰â â „â Ž" }, { "input": "mice", "output": "â â Šâ ‰â ‘" }, { "input": "microbe", "output": "â â Šâ ‰â —⠕⠃⠑" }, { "input": "microbe's", "output": "â â Šâ ‰â —⠕⠃⠑⠄⠎" }, { "input": "microbes", "output": "â â Šâ ‰â —⠕⠃⠑⠎" }, { "input": "microbial", "output": "â â Šâ ‰â —⠕⠃⠊â â ‡" }, { "input": "microbiologist", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠊⠌" }, { "input": "microbiologist's", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "microbiologists", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "microbiology", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠽" }, { "input": "microbiology's", "output": "â â Šâ ‰â —⠕⠃⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "microbreweries", "output": "â â Šâ ‰â —⠕⠃⠗⠑⠺⠻⠊⠑⠎" }, { "input": "microbrewery", "output": "â â Šâ ‰â —⠕⠃⠗⠑⠺⠻⠽" }, { "input": "microbrewery's", "output": "â â Šâ ‰â —⠕⠃⠗⠑⠺⠻⠽⠄⠎" }, { "input": "microchip", "output": "â â Šâ ‰â —â •â ¡â Šâ " }, { "input": "microchip's", "output": "â â Šâ ‰â —â •â ¡â Šâ â „â Ž" }, { "input": "microchips", "output": "â â Šâ ‰â —â •â ¡â Šâ â Ž" }, { "input": "microcircuit", "output": "â â Šâ ‰â —⠕⠉⠊⠗⠉⠥⠊⠞" }, { "input": "microcircuit's", "output": "â â Šâ ‰â —⠕⠉⠊⠗⠉⠥⠊⠞⠄⠎" }, { "input": "microcircuits", "output": "â â Šâ ‰â —⠕⠉⠊⠗⠉⠥⠊⠞⠎" }, { "input": "microcode", "output": "â â Šâ ‰â —⠕⠉⠕⠙⠑" }, { "input": "microcomputer", "output": "â â Šâ ‰â —⠕⠉⠕â â â ¥â žâ »" }, { "input": "microcomputer's", "output": "â â Šâ ‰â —⠕⠉⠕â â â ¥â žâ »â „â Ž" }, { "input": "microcomputers", "output": "â â Šâ ‰â —⠕⠉⠕â â â ¥â žâ »â Ž" }, { "input": "microcosm", "output": "â â Šâ ‰â —⠕⠉⠕⠎â " }, { "input": "microcosm's", "output": "â â Šâ ‰â —⠕⠉⠕⠎â â „â Ž" }, { "input": "microcosmic", "output": "â â Šâ ‰â —⠕⠉⠕⠎â â Šâ ‰" }, { "input": "microcosms", "output": "â â Šâ ‰â —⠕⠉⠕⠎â â Ž" }, { "input": "microdot", "output": "â â Šâ ‰â —⠕⠙⠕⠞" }, { "input": "microdot's", "output": "â â Šâ ‰â —⠕⠙⠕⠞⠄⠎" }, { "input": "microdots", "output": "â â Šâ ‰â —⠕⠙⠕⠞⠎" }, { "input": "microeconomics", "output": "â â Šâ ‰â —⠕⠑⠉⠕â â •â â Šâ ‰â Ž" }, { "input": "microeconomics's", "output": "â â Šâ ‰â —⠕⠑⠉⠕â â •â â Šâ ‰â Žâ „â Ž" }, { "input": "microelectronics's", "output": "â â Šâ ‰â —⠕⠑⠇⠑⠉⠞⠗⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "microfiber", "output": "â â Šâ ‰â —⠕⠋⠊⠃⠻" }, { "input": "microfiber's", "output": "â â Šâ ‰â —⠕⠋⠊⠃⠻⠄⠎" }, { "input": "microfibers", "output": "â â Šâ ‰â —⠕⠋⠊⠃⠻⠎" }, { "input": "microfiche", "output": "â â Šâ ‰â —â •â ‹â Šâ ¡â ‘" }, { "input": "microfiche's", "output": "â â Šâ ‰â —â •â ‹â Šâ ¡â ‘â „â Ž" }, { "input": "microfilm", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â " }, { "input": "microfilm's", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â „â Ž" }, { "input": "microfilmed", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â «" }, { "input": "microfilming", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â Œ" }, { "input": "microfilms", "output": "â â Šâ ‰â —â •â ‹â Šâ ‡â â Ž" }, { "input": "microgroove", "output": "â â Šâ ‰â —⠕⠛⠗⠕⠕⠧⠑" }, { "input": "microgroove's", "output": "â â Šâ ‰â —⠕⠛⠗⠕⠕⠧⠑⠄⠎" }, { "input": "microgrooves", "output": "â â Šâ ‰â —⠕⠛⠗⠕⠕⠧⠑⠎" }, { "input": "micromanage", "output": "â â Šâ ‰â —â •â â â â â ›â ‘" }, { "input": "micromanaged", "output": "â â Šâ ‰â —â •â â â â â ›â «" }, { "input": "micromanagement", "output": "â â Šâ ‰â —â •â â â â â ›â ‘â °â ž" }, { "input": "micromanagement's", "output": "â â Šâ ‰â —â •â â â â â ›â ‘â °â žâ „â Ž" }, { "input": "micromanages", "output": "â â Šâ ‰â —â •â â â â â ›â ‘â Ž" }, { "input": "micromanaging", "output": "â â Šâ ‰â —â •â â â â â ›â Œ" }, { "input": "micrometeorite", "output": "â â Šâ ‰â —â •â â ‘â žâ ‘â •â —â Šâ žâ ‘" }, { "input": "micrometeorite's", "output": "â â Šâ ‰â —â •â â ‘â žâ ‘â •â —â Šâ žâ ‘â „â Ž" }, { "input": "micrometeorites", "output": "â â Šâ ‰â —â •â â ‘â žâ ‘â •â —â Šâ žâ ‘â Ž" }, { "input": "micrometer", "output": "â â Šâ ‰â —â •â â ‘â žâ »" }, { "input": "micrometer's", "output": "â â Šâ ‰â —â •â â ‘⠞⠻⠄⠎" }, { "input": "micrometers", "output": "â â Šâ ‰â —â •â â ‘⠞⠻⠎" }, { "input": "micron", "output": "â â Šâ ‰â —â •â " }, { "input": "micron's", "output": "â â Šâ ‰â —â •â â „â Ž" }, { "input": "microns", "output": "â â Šâ ‰â —â •â â Ž" }, { "input": "microorganism", "output": "â â Šâ ‰â —â •â •â —â ›â â â Šâ Žâ " }, { "input": "microorganism's", "output": "â â Šâ ‰â —â •â •â —â ›â â â Šâ Žâ â „â Ž" }, { "input": "microorganisms", "output": "â â Šâ ‰â —â •â •â —â ›â â â Šâ Žâ â Ž" }, { "input": "microphone", "output": "â â Šâ ‰â —â •â â “â â •" }, { "input": "microphone's", "output": "â â Šâ ‰â —â •â â “â â •â „â Ž" }, { "input": "microphones", "output": "â â Šâ ‰â —â •â â “â â •â Ž" }, { "input": "microprocessor", "output": "â â Šâ ‰â —â •â â —⠕⠉⠑⠎⠎⠕⠗" }, { "input": "microprocessor's", "output": "â â Šâ ‰â —â •â â —⠕⠉⠑⠎⠎⠕⠗⠄⠎" }, { "input": "microprocessors", "output": "â â Šâ ‰â —â •â â —⠕⠉⠑⠎⠎⠕⠗⠎" }, { "input": "microscope", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ‘" }, { "input": "microscope's", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "microscopes", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ‘â Ž" }, { "input": "microscopic", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â Šâ ‰" }, { "input": "microscopical", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â Šâ ‰â â ‡" }, { "input": "microscopically", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â Šâ ‰â  â ½" }, { "input": "microscopy", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ½" }, { "input": "microscopy's", "output": "â â Šâ ‰â —⠕⠎⠉⠕â â ½â „â Ž" }, { "input": "microsecond", "output": "â â Šâ ‰â —⠕⠎⠑⠉⠕â â ™" }, { "input": "microsecond's", "output": "â â Šâ ‰â —⠕⠎⠑⠉⠕â â ™â „â Ž" }, { "input": "microseconds", "output": "â â Šâ ‰â —⠕⠎⠑⠉⠕â â ™â Ž" }, { "input": "microsurgery", "output": "â â Šâ ‰â —⠕⠎⠥⠗⠛⠻⠽" }, { "input": "microsurgery's", "output": "â â Šâ ‰â —⠕⠎⠥⠗⠛⠻⠽⠄⠎" }, { "input": "microwave", "output": "â â Šâ ‰â —â •â ºâ â §â ‘" }, { "input": "microwave's", "output": "â â Šâ ‰â —â •â ºâ â §â ‘â „â Ž" }, { "input": "microwaved", "output": "â â Šâ ‰â —â •â ºâ â §â «" }, { "input": "microwaves", "output": "â â Šâ ‰â —â •â ºâ â §â ‘â Ž" }, { "input": "microwaving", "output": "â â Šâ ‰â —â •â ºâ â §â Œ" }, { "input": "mid", "output": "â â Šâ ™" }, { "input": "midair", "output": "â â Šâ ™â â Šâ —" }, { "input": "midair's", "output": "â â Šâ ™â â Šâ —â „â Ž" }, { "input": "midday", "output": "â â Šâ ™â â ™" }, { "input": "midday's", "output": "â â Šâ ™â â ™â „â Ž" }, { "input": "midden", "output": "â â Šâ ²â ¢" }, { "input": "midden's", "output": "â â Šâ ²â ¢â „â Ž" }, { "input": "middens", "output": "â â Šâ ²â ¢â Ž" }, { "input": "middies", "output": "â â Šâ ²â Šâ ‘â Ž" }, { "input": "middle", "output": "â â Šâ ²â ‡â ‘" }, { "input": "middle's", "output": "â â Šâ ²â ‡â ‘â „â Ž" }, { "input": "middlebrow", "output": "â â Šâ ²â ‡â ‘⠃⠗⠪" }, { "input": "middlebrow's", "output": "â â Šâ ²â ‡â ‘⠃⠗⠪⠄⠎" }, { "input": "middlebrows", "output": "â â Šâ ²â ‡â ‘⠃⠗⠪⠎" }, { "input": "middleman", "output": "â â Šâ ²â ‡â ‘â â â " }, { "input": "middleman's", "output": "â â Šâ ²â ‡â ‘â â â â „â Ž" }, { "input": "middlemen", "output": "â â Šâ ²â ‡â ‘â â ¢" }, { "input": "middlemost", "output": "â â Šâ ²â ‡â ‘â â •â Œ" }, { "input": "middles", "output": "â â Šâ ²â ‡â ‘â Ž" }, { "input": "middleweight", "output": "â â Šâ ²â ‡â ‘⠺⠑⠊⠣⠞" }, { "input": "middleweight's", "output": "â â Šâ ²â ‡â ‘⠺⠑⠊⠣⠞⠄⠎" }, { "input": "middleweights", "output": "â â Šâ ²â ‡â ‘⠺⠑⠊⠣⠞⠎" }, { "input": "middling", "output": "â â Šâ ²â ‡â Œ" }, { "input": "middy", "output": "â â Šâ ²â ½" }, { "input": "middy's", "output": "â â Šâ ²â ½â „â Ž" }, { "input": "midge", "output": "â â Šâ ™â ›â ‘" }, { "input": "midge's", "output": "â â Šâ ™â ›â ‘â „â Ž" }, { "input": "midges", "output": "â â Šâ ™â ›â ‘â Ž" }, { "input": "midget", "output": "â â Šâ ™â ›â ‘â ž" }, { "input": "midget's", "output": "â â Šâ ™â ›â ‘â žâ „â Ž" }, { "input": "midgets", "output": "â â Šâ ™â ›â ‘â žâ Ž" }, { "input": "midi", "output": "â â Šâ ™â Š" }, { "input": "midi's", "output": "â â Šâ ™â Šâ „â Ž" }, { "input": "midis", "output": "â â Šâ ™â Šâ Ž" }, { "input": "midland", "output": "â â Šâ ™â ‡â ¯" }, { "input": "midland's", "output": "â â Šâ ™â ‡â ¯â „â Ž" }, { "input": "midlands", "output": "â â Šâ ™â ‡â ¯â Ž" }, { "input": "midlife", "output": "â â Šâ ™â ‡â Šâ ‹â ‘" }, { "input": "midlife's", "output": "â â Šâ ™â ‡â Šâ ‹â ‘â „â Ž" }, { "input": "midmost", "output": "â â Šâ ™â â •â Œ" }, { "input": "midnight", "output": "â â Šâ ™â â Šâ £â ž" }, { "input": "midnight's", "output": "â â Šâ ™â â Šâ £â žâ „â Ž" }, { "input": "midpoint", "output": "â â Šâ ™â â •⠔⠞" }, { "input": "midpoint's", "output": "â â Šâ ™â â •⠔⠞⠄⠎" }, { "input": "midpoints", "output": "â â Šâ ™â â •⠔⠞⠎" }, { "input": "midrib", "output": "â â Šâ ™â —â Šâ ƒ" }, { "input": "midrib's", "output": "â â Šâ ™â —⠊⠃⠄⠎" }, { "input": "midribs", "output": "â â Šâ ™â —⠊⠃⠎" }, { "input": "midriff", "output": "â â Šâ ™â —â Šâ ‹â ‹" }, { "input": "midriff's", "output": "â â Šâ ™â —â Šâ ‹â ‹â „â Ž" }, { "input": "midriffs", "output": "â â Šâ ™â —â Šâ –â Ž" }, { "input": "midshipman", "output": "â â Šâ ™â ©â Šâ â â â " }, { "input": "midshipman's", "output": "â â Šâ ™â ©â Šâ â â â â „â Ž" }, { "input": "midshipmen", "output": "â â Šâ ™â ©â Šâ â â ¢" }, { "input": "midships", "output": "â â Šâ ™â ©â Šâ â Ž" }, { "input": "midst", "output": "â â Šâ ™â Œ" }, { "input": "midst's", "output": "â â Šâ ™â Œâ „â Ž" }, { "input": "midstream", "output": "â â Šâ ™â Œâ —â ‚â " }, { "input": "midstream's", "output": "â â Šâ ™â Œâ —â ‚â â „â Ž" }, { "input": "midsummer", "output": "â â Šâ ™â Žâ ¥â â â »" }, { "input": "midsummer's", "output": "â â Šâ ™â Žâ ¥â â â »â „â Ž" }, { "input": "midterm", "output": "â â Šâ ™â žâ »â " }, { "input": "midterm's", "output": "â â Šâ ™â žâ »â â „â Ž" }, { "input": "midterms", "output": "â â Šâ ™â žâ »â â Ž" }, { "input": "midtown", "output": "â â Šâ ™â žâ ªâ " }, { "input": "midtown's", "output": "â â Šâ ™â žâ ªâ â „â Ž" }, { "input": "midway", "output": "â â Šâ ™â ºâ â ½" }, { "input": "midway's", "output": "â â Šâ ™â ºâ â ½â „â Ž" }, { "input": "midways", "output": "â â Šâ ™â ºâ â ½â Ž" }, { "input": "midweek", "output": "â â Šâ ™â ºâ ‘â ‘â …" }, { "input": "midweek's", "output": "â â Šâ ™â ºâ ‘â ‘â …â „â Ž" }, { "input": "midweeks", "output": "â â Šâ ™â ºâ ‘â ‘â …â Ž" }, { "input": "midwife", "output": "â â Šâ ™â ºâ Šâ ‹â ‘" }, { "input": "midwife's", "output": "â â Šâ ™â ºâ Šâ ‹â ‘â „â Ž" }, { "input": "midwifed", "output": "â â Šâ ™â ºâ Šâ ‹â «" }, { "input": "midwiferies", "output": "â â Šâ ™â ºâ Šâ ‹â »â Šâ ‘â Ž" }, { "input": "midwifery", "output": "â â Šâ ™â ºâ Šâ ‹â ‘â —â ½" }, { "input": "midwifery's", "output": "â â Šâ ™â ºâ Šâ ‹â ‘⠗⠽⠄⠎" }, { "input": "midwifes", "output": "â â Šâ ™â ºâ Šâ ‹â ‘â Ž" }, { "input": "midwifing", "output": "â â Šâ ™â ºâ Šâ ‹â Œ" }, { "input": "midwinter", "output": "â â Šâ ™â ºâ ”â žâ »" }, { "input": "midwinter's", "output": "â â Šâ ™â ºâ ”⠞⠻⠄⠎" }, { "input": "midwives", "output": "â â Šâ ™â ºâ Šâ §â ‘â Ž" }, { "input": "midyear", "output": "â â Šâ ™â ½â ‘â œ" }, { "input": "midyear's", "output": "â â Šâ ™â ½â ‘⠜⠄⠎" }, { "input": "midyears", "output": "â â Šâ ™â ½â ‘⠜⠎" }, { "input": "mien", "output": "â â Šâ ¢" }, { "input": "mien's", "output": "â â Šâ ¢â „â Ž" }, { "input": "miens", "output": "â â Šâ ¢â Ž" }, { "input": "miff", "output": "â â Šâ ‹â ‹" }, { "input": "miffed", "output": "â â Šâ –â «" }, { "input": "miffing", "output": "â â Šâ –â Œ" }, { "input": "miffs", "output": "â â Šâ –â Ž" }, { "input": "might", "output": "â â Šâ £â ž" }, { "input": "might's", "output": "â â Šâ £â žâ „â Ž" }, { "input": "mightier", "output": "â â Šâ £â žâ Šâ »" }, { "input": "mightiest", "output": "â â Šâ £â žâ Šâ ‘â Œ" }, { "input": "mightily", "output": "â â Šâ £â žâ Šâ ‡â ½" }, { "input": "mightiness", "output": "â â Šâ £â žâ Šâ °â Ž" }, { "input": "mightiness's", "output": "â â Šâ £â žâ Šâ °â Žâ „â Ž" }, { "input": "mighty", "output": "â â Šâ £â žâ ½" }, { "input": "mignonette", "output": "â â Šâ ›â â •â â ‘â žâ žâ ‘" }, { "input": "mignonette's", "output": "â â Šâ ›â â •â â ‘â žâ žâ ‘â „â Ž" }, { "input": "mignonettes", "output": "â â Šâ ›â â •â â ‘â žâ žâ ‘â Ž" }, { "input": "migraine", "output": "â â Šâ ›â —â â ”â ‘" }, { "input": "migraine's", "output": "â â Šâ ›â —â â ”â ‘â „â Ž" }, { "input": "migraines", "output": "â â Šâ ›â —â â ”â ‘â Ž" }, { "input": "migrant", "output": "â â Šâ ›â —â â â ž" }, { "input": "migrant's", "output": "â â Šâ ›â —â â â žâ „â Ž" }, { "input": "migrants", "output": "â â Šâ ›â —â â â žâ Ž" }, { "input": "migrate", "output": "â â Šâ ›â —â â žâ ‘" }, { "input": "migrated", "output": "â â Šâ ›â —â â žâ «" }, { "input": "migrates", "output": "â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "migrating", "output": "â â Šâ ›â —â â žâ Œ" }, { "input": "migration", "output": "â â Šâ ›â —â  â " }, { "input": "migration's", "output": "â â Šâ ›â —â  â â „â Ž" }, { "input": "migrations", "output": "â â Šâ ›â —â  â â Ž" }, { "input": "migratory", "output": "â â Šâ ›â —â â žâ •â —â ½" }, { "input": "mikado", "output": "â â Šâ …â â ™â •" }, { "input": "mikado's", "output": "â â Šâ …â â ™â •â „â Ž" }, { "input": "mikados", "output": "â â Šâ …â â ™â •â Ž" }, { "input": "mike", "output": "â â Šâ …â ‘" }, { "input": "mike's", "output": "â â Šâ …â ‘â „â Ž" }, { "input": "miked", "output": "â â Šâ …â «" }, { "input": "mikes", "output": "â â Šâ …â ‘â Ž" }, { "input": "miking", "output": "â â Šâ …â Œ" }, { "input": "mil", "output": "â â Šâ ‡" }, { "input": "mil's", "output": "â â Šâ ‡â „â Ž" }, { "input": "miladies", "output": "â â Šâ ‡â â ™â Šâ ‘â Ž" }, { "input": "milady", "output": "â â Šâ ‡â â ™â ½" }, { "input": "milady's", "output": "â â Šâ ‡â â ™â ½â „â Ž" }, { "input": "milch", "output": "â â Šâ ‡â ¡" }, { "input": "mild", "output": "â â Šâ ‡â ™" }, { "input": "mild's", "output": "â â Šâ ‡â ™â „â Ž" }, { "input": "milder", "output": "â â Šâ ‡â ™â »" }, { "input": "mildest", "output": "â â Šâ ‡â ™â ‘â Œ" }, { "input": "mildew", "output": "â â Šâ ‡â ™â ‘â º" }, { "input": "mildew's", "output": "â â Šâ ‡â ™â ‘⠺⠄⠎" }, { "input": "mildewed", "output": "â â Šâ ‡â ™â ‘⠺⠫" }, { "input": "mildewing", "output": "â â Šâ ‡â ™â ‘⠺⠌" }, { "input": "mildews", "output": "â â Šâ ‡â ™â ‘⠺⠎" }, { "input": "mildly", "output": "â â Šâ ‡â ™â ‡â ½" }, { "input": "mildness", "output": "â â Šâ ‡â ™â °â Ž" }, { "input": "mildness's", "output": "â â Šâ ‡â ™â °â Žâ „â Ž" }, { "input": "mile", "output": "â â Šâ ‡â ‘" }, { "input": "mile's", "output": "â â Šâ ‡â ‘â „â Ž" }, { "input": "mileage", "output": "â â Šâ ‡â ‘â â ›â ‘" }, { "input": "mileage's", "output": "â â Šâ ‡â ‘â â ›â ‘â „â Ž" }, { "input": "mileages", "output": "â â Šâ ‡â ‘â â ›â ‘â Ž" }, { "input": "milepost", "output": "â â Šâ ‡â ‘â â •â Œ" }, { "input": "milepost's", "output": "â â Šâ ‡â ‘â â •⠌⠄⠎" }, { "input": "mileposts", "output": "â â Šâ ‡â ‘â â •⠌⠎" }, { "input": "miler", "output": "â â Šâ ‡â »" }, { "input": "miler's", "output": "â â Šâ ‡â »â „â Ž" }, { "input": "milers", "output": "â â Šâ ‡â »â Ž" }, { "input": "miles", "output": "â â Šâ ‡â ‘â Ž" }, { "input": "milestone", "output": "â â Šâ ‡â ‘â Œâ â •" }, { "input": "milestone's", "output": "â â Šâ ‡â ‘â Œâ â •â „â Ž" }, { "input": "milestones", "output": "â â Šâ ‡â ‘â Œâ â •â Ž" }, { "input": "milieu", "output": "â â Šâ ‡â Šâ ‘â ¥" }, { "input": "milieu's", "output": "â â Šâ ‡â Šâ ‘⠥⠄⠎" }, { "input": "milieus", "output": "â â Šâ ‡â Šâ ‘⠥⠎" }, { "input": "militancy", "output": "â â Šâ ‡â Šâ žâ â â ‰â ½" }, { "input": "militancy's", "output": "â â Šâ ‡â Šâ žâ â â ‰â ½â „â Ž" }, { "input": "militant", "output": "â â Šâ ‡â Šâ žâ â â ž" }, { "input": "militant's", "output": "â â Šâ ‡â Šâ žâ â â žâ „â Ž" }, { "input": "militantly", "output": "â â Šâ ‡â Šâ žâ â â žâ ‡â ½" }, { "input": "militants", "output": "â â Šâ ‡â Šâ žâ â â žâ Ž" }, { "input": "militarily", "output": "â â Šâ ‡â Šâ žâ œâ Šâ ‡â ½" }, { "input": "militarism", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Žâ " }, { "input": "militarism's", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Žâ â „â Ž" }, { "input": "militarist", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œ" }, { "input": "militarist's", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œâ „â Ž" }, { "input": "militaristic", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œâ Šâ ‰" }, { "input": "militarists", "output": "â â Šâ ‡â Šâ žâ œâ Šâ Œâ Ž" }, { "input": "militarization", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ  â " }, { "input": "militarization's", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ  â â „â Ž" }, { "input": "militarize", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘" }, { "input": "militarized", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ «" }, { "input": "militarizes", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ ‘â Ž" }, { "input": "militarizing", "output": "â â Šâ ‡â Šâ žâ œâ Šâ µâ Œ" }, { "input": "military", "output": "â â Šâ ‡â Šâ žâ œâ ½" }, { "input": "military's", "output": "â â Šâ ‡â Šâ žâ œâ ½â „â Ž" }, { "input": "militate", "output": "â â Šâ ‡â Šâ žâ â žâ ‘" }, { "input": "militated", "output": "â â Šâ ‡â Šâ žâ â žâ «" }, { "input": "militates", "output": "â â Šâ ‡â Šâ žâ â žâ ‘â Ž" }, { "input": "militating", "output": "â â Šâ ‡â Šâ žâ â žâ Œ" }, { "input": "militia", "output": "â â Šâ ‡â Šâ žâ Šâ " }, { "input": "militia's", "output": "â â Šâ ‡â Šâ žâ Šâ â „â Ž" }, { "input": "militiaman", "output": "â â Šâ ‡â Šâ žâ Šâ â â â " }, { "input": "militiaman's", "output": "â â Šâ ‡â Šâ žâ Šâ â â â â „â Ž" }, { "input": "militiamen", "output": "â â Šâ ‡â Šâ žâ Šâ â â ¢" }, { "input": "militias", "output": "â â Šâ ‡â Šâ žâ Šâ â Ž" }, { "input": "milk", "output": "â â Šâ ‡â …" }, { "input": "milk's", "output": "â â Šâ ‡â …â „â Ž" }, { "input": "milked", "output": "â â Šâ ‡â …â «" }, { "input": "milker", "output": "â â Šâ ‡â …â »" }, { "input": "milker's", "output": "â â Šâ ‡â …⠻⠄⠎" }, { "input": "milkers", "output": "â â Šâ ‡â …⠻⠎" }, { "input": "milkier", "output": "â â Šâ ‡â …â Šâ »" }, { "input": "milkiest", "output": "â â Šâ ‡â …â Šâ ‘â Œ" }, { "input": "milkiness", "output": "â â Šâ ‡â …â Šâ °â Ž" }, { "input": "milkiness's", "output": "â â Šâ ‡â …â Šâ °â Žâ „â Ž" }, { "input": "milking", "output": "â â Šâ ‡â …â Œ" }, { "input": "milkmaid", "output": "â â Šâ ‡â …â â â Šâ ™" }, { "input": "milkmaid's", "output": "â â Šâ ‡â …â â â Šâ ™â „â Ž" }, { "input": "milkmaids", "output": "â â Šâ ‡â …â â â Šâ ™â Ž" }, { "input": "milkman", "output": "â â Šâ ‡â …â â â " }, { "input": "milkman's", "output": "â â Šâ ‡â …â â â â „â Ž" }, { "input": "milkmen", "output": "â â Šâ ‡â …â â ¢" }, { "input": "milks", "output": "â â Šâ ‡â …â Ž" }, { "input": "milkshake", "output": "â â Šâ ‡â …â ©â â …â ‘" }, { "input": "milkshake's", "output": "â â Šâ ‡â …â ©â â …â ‘â „â Ž" }, { "input": "milkshakes", "output": "â â Šâ ‡â …â ©â â …â ‘â Ž" }, { "input": "milksop", "output": "â â Šâ ‡â …â Žâ •â " }, { "input": "milksop's", "output": "â â Šâ ‡â …â Žâ •â â „â Ž" }, { "input": "milksops", "output": "â â Šâ ‡â …â Žâ •â â Ž" }, { "input": "milkweed", "output": "â â Šâ ‡â …⠺⠑⠫" }, { "input": "milkweed's", "output": "â â Šâ ‡â …⠺⠑⠫⠄⠎" }, { "input": "milkweeds", "output": "â â Šâ ‡â …⠺⠑⠫⠎" }, { "input": "milky", "output": "â â Šâ ‡â …â ½" }, { "input": "mill", "output": "â â Šâ ‡â ‡" }, { "input": "mill's", "output": "â â Šâ ‡â ‡â „â Ž" }, { "input": "millage", "output": "â â Šâ ‡â ‡â â ›â ‘" }, { "input": "millage's", "output": "â â Šâ ‡â ‡â â ›â ‘â „â Ž" }, { "input": "milled", "output": "â â Šâ ‡â ‡â «" }, { "input": "millennial", "output": "â â Šâ ‡â ‡â ¢â â Šâ â ‡" }, { "input": "millennium", "output": "â â Šâ ‡â ‡â ¢â â Šâ ¥â " }, { "input": "millennium's", "output": "â â Šâ ‡â ‡â ¢â â Šâ ¥â â „â Ž" }, { "input": "millenniums", "output": "â â Šâ ‡â ‡â ¢â â Šâ ¥â â Ž" }, { "input": "miller", "output": "â â Šâ ‡â ‡â »" }, { "input": "miller's", "output": "â â Šâ ‡â ‡â »â „â Ž" }, { "input": "millers", "output": "â â Šâ ‡â ‡â »â Ž" }, { "input": "millet", "output": "â â Šâ ‡â ‡â ‘â ž" }, { "input": "millet's", "output": "â â Šâ ‡â ‡â ‘â žâ „â Ž" }, { "input": "milliard", "output": "â â Šâ ‡â ‡â Šâ œâ ™" }, { "input": "milliard's", "output": "â â Šâ ‡â ‡â Šâ œâ ™â „â Ž" }, { "input": "milliards", "output": "â â Šâ ‡â ‡â Šâ œâ ™â Ž" }, { "input": "milligram", "output": "â â Šâ ‡â ‡â Šâ ›â —â â " }, { "input": "milligram's", "output": "â â Šâ ‡â ‡â Šâ ›â —â â â „â Ž" }, { "input": "milligrams", "output": "â â Šâ ‡â ‡â Šâ ›â —â â â Ž" }, { "input": "milliliter", "output": "â â Šâ ‡â ‡â Šâ ‡â Šâ žâ »" }, { "input": "milliliter's", "output": "â â Šâ ‡â ‡â Šâ ‡â Šâ žâ »â „â Ž" }, { "input": "milliliters", "output": "â â Šâ ‡â ‡â Šâ ‡â Šâ žâ »â Ž" }, { "input": "millimeter", "output": "â â Šâ ‡â ‡â Šâ â ‘â žâ »" }, { "input": "millimeter's", "output": "â â Šâ ‡â ‡â Šâ â ‘⠞⠻⠄⠎" }, { "input": "millimeters", "output": "â â Šâ ‡â ‡â Šâ â ‘⠞⠻⠎" }, { "input": "milliner", "output": "â â Šâ ‡â ‡â ”â »" }, { "input": "milliner's", "output": "â â Šâ ‡â ‡â ”⠻⠄⠎" }, { "input": "milliners", "output": "â â Šâ ‡â ‡â ”⠻⠎" }, { "input": "millinery", "output": "â â Šâ ‡â ‡â ”⠻⠽" }, { "input": "millinery's", "output": "â â Šâ ‡â ‡â ”⠻⠽⠄⠎" }, { "input": "milling", "output": "â â Šâ ‡â ‡â Œ" }, { "input": "milling's", "output": "â â Šâ ‡â ‡â Œâ „â Ž" }, { "input": "millings", "output": "â â Šâ ‡â ‡â Œâ Ž" }, { "input": "million", "output": "â â Šâ ‡â ‡â Šâ •â " }, { "input": "million's", "output": "â â Šâ ‡â ‡â Šâ •â â „â Ž" }, { "input": "millionaire", "output": "â â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘" }, { "input": "millionaire's", "output": "â â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘â „â Ž" }, { "input": "millionaires", "output": "â â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘â Ž" }, { "input": "millions", "output": "â â Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "millionth", "output": "â â Šâ ‡â ‡â Šâ •â â ¹" }, { "input": "millionth's", "output": "â â Šâ ‡â ‡â Šâ •â â ¹â „â Ž" }, { "input": "millionths", "output": "â â Šâ ‡â ‡â Šâ •â â ¹â Ž" }, { "input": "millipede", "output": "â â Šâ ‡â ‡â Šâ â «â ‘" }, { "input": "millipede's", "output": "â â Šâ ‡â ‡â Šâ â «â ‘â „â Ž" }, { "input": "millipedes", "output": "â â Šâ ‡â ‡â Šâ â «â ‘â Ž" }, { "input": "millisecond", "output": "â â Šâ ‡â ‡â Šâ Žâ ‘⠉⠕â â ™" }, { "input": "millisecond's", "output": "â â Šâ ‡â ‡â Šâ Žâ ‘⠉⠕â â ™â „â Ž" }, { "input": "milliseconds", "output": "â â Šâ ‡â ‡â Šâ Žâ ‘⠉⠕â â ™â Ž" }, { "input": "millrace", "output": "â â Šâ ‡â ‡â —â â ‰â ‘" }, { "input": "millrace's", "output": "â â Šâ ‡â ‡â —â â ‰â ‘â „â Ž" }, { "input": "millraces", "output": "â â Šâ ‡â ‡â —â â ‰â ‘â Ž" }, { "input": "mills", "output": "â â Šâ ‡â ‡â Ž" }, { "input": "millstone", "output": "â â Šâ ‡â ‡â Œâ â •" }, { "input": "millstone's", "output": "â â Šâ ‡â ‡â Œâ â •â „â Ž" }, { "input": "millstones", "output": "â â Šâ ‡â ‡â Œâ â •â Ž" }, { "input": "millstream", "output": "â â Šâ ‡â ‡â Œâ —â ‚â " }, { "input": "millstream's", "output": "â â Šâ ‡â ‡â Œâ —â ‚â â „â Ž" }, { "input": "millstreams", "output": "â â Šâ ‡â ‡â Œâ —â ‚â â Ž" }, { "input": "millwright", "output": "â â Šâ ‡â ‡â ºâ â —" }, { "input": "millwright's", "output": "â â Šâ ‡â ‡â ºâ â —â „â Ž" }, { "input": "millwrights", "output": "â â Šâ ‡â ‡â ºâ â —â Ž" }, { "input": "milquetoast", "output": "â â Šâ ‡â Ÿâ ¥â ‘â žâ •â â Œ" }, { "input": "milquetoast's", "output": "â â Šâ ‡â Ÿâ ¥â ‘â žâ •â â Œâ „â Ž" }, { "input": "milquetoasts", "output": "â â Šâ ‡â Ÿâ ¥â ‘â žâ •â â Œâ Ž" }, { "input": "mils", "output": "â â Šâ ‡â Ž" }, { "input": "milt", "output": "â â Šâ ‡â ž" }, { "input": "milt's", "output": "â â Šâ ‡â žâ „â Ž" }, { "input": "milted", "output": "â â Šâ ‡â žâ «" }, { "input": "milting", "output": "â â Šâ ‡â žâ Œ" }, { "input": "milts", "output": "â â Šâ ‡â žâ Ž" }, { "input": "mime", "output": "â â Šâ â ‘" }, { "input": "mime's", "output": "â â Šâ â ‘â „â Ž" }, { "input": "mimed", "output": "â â Šâ â «" }, { "input": "mimeograph", "output": "â â Šâ â ‘⠕⠛⠗â â â “" }, { "input": "mimeograph's", "output": "â â Šâ â ‘⠕⠛⠗â â â “â „â Ž" }, { "input": "mimeographed", "output": "â â Šâ â ‘⠕⠛⠗â â â “â «" }, { "input": "mimeographing", "output": "â â Šâ â ‘⠕⠛⠗â â â “â Œ" }, { "input": "mimeographs", "output": "â â Šâ â ‘⠕⠛⠗â â â “â Ž" }, { "input": "mimes", "output": "â â Šâ â ‘â Ž" }, { "input": "mimetic", "output": "â â Šâ â ‘â žâ Šâ ‰" }, { "input": "mimic", "output": "â â Šâ â Šâ ‰" }, { "input": "mimic's", "output": "â â Šâ â Šâ ‰â „â Ž" }, { "input": "mimicked", "output": "â â Šâ â Šâ ‰â …â «" }, { "input": "mimicker", "output": "â â Šâ â Šâ ‰â …â »" }, { "input": "mimicker's", "output": "â â Šâ â Šâ ‰â …⠻⠄⠎" }, { "input": "mimickers", "output": "â â Šâ â Šâ ‰â …⠻⠎" }, { "input": "mimicking", "output": "â â Šâ â Šâ ‰â …â Œ" }, { "input": "mimicries", "output": "â â Šâ â Šâ ‰â —â Šâ ‘â Ž" }, { "input": "mimicry", "output": "â â Šâ â Šâ ‰â —â ½" }, { "input": "mimicry's", "output": "â â Šâ â Šâ ‰â —⠽⠄⠎" }, { "input": "mimics", "output": "â â Šâ â Šâ ‰â Ž" }, { "input": "miming", "output": "â â Šâ â Œ" }, { "input": "mimosa", "output": "â â Šâ â •â Žâ " }, { "input": "mimosa's", "output": "â â Šâ â •â Žâ â „â Ž" }, { "input": "mimosas", "output": "â â Šâ â •â Žâ â Ž" }, { "input": "minaret", "output": "â â ”⠜⠑⠞" }, { "input": "minaret's", "output": "â â ”⠜⠑⠞⠄⠎" }, { "input": "minarets", "output": "â â ”⠜⠑⠞⠎" }, { "input": "minatory", "output": "â â ”â â žâ •â —â ½" }, { "input": "mince", "output": "â â ”⠉⠑" }, { "input": "mince's", "output": "â â ”⠉⠑⠄⠎" }, { "input": "minced", "output": "â â ”⠉⠫" }, { "input": "mincemeat", "output": "â â ”⠉⠑â â ‚â ž" }, { "input": "mincemeat's", "output": "â â ”⠉⠑â â ‚â žâ „â Ž" }, { "input": "minces", "output": "â â ”⠉⠑⠎" }, { "input": "mincing", "output": "â â ”⠉⠌" }, { "input": "mind", "output": "â â ”â ™" }, { "input": "mind's", "output": "â â ”⠙⠄⠎" }, { "input": "mindbogglingly", "output": "â â ”⠙⠃⠕⠶⠇⠌⠇⠽" }, { "input": "minded", "output": "â â ”⠙⠫" }, { "input": "mindedness", "output": "â â ”⠙⠫⠰⠎" }, { "input": "mindful", "output": "â â ”⠙⠰⠇" }, { "input": "mindfully", "output": "â â ”⠙⠰⠇⠇⠽" }, { "input": "mindfulness", "output": "â â ”⠙⠰⠇⠰⠎" }, { "input": "mindfulness's", "output": "â â ”⠙⠰⠇⠰⠎⠄⠎" }, { "input": "minding", "output": "â â ”⠙⠌" }, { "input": "mindless", "output": "â â ”⠙⠨⠎" }, { "input": "mindlessly", "output": "â â ”⠙⠨⠎⠇⠽" }, { "input": "mindlessness", "output": "â â ”⠙⠨⠎⠰⠎" }, { "input": "mindlessness's", "output": "â â ”⠙⠨⠎⠰⠎⠄⠎" }, { "input": "minds", "output": "â â ”⠙⠎" }, { "input": "mine", "output": "â â ”â ‘" }, { "input": "mine's", "output": "â â ”â ‘â „â Ž" }, { "input": "mined", "output": "â â ”â «" }, { "input": "minefield", "output": "â â ”⠑⠋⠊⠑⠇⠙" }, { "input": "minefield's", "output": "â â ”⠑⠋⠊⠑⠇⠙⠄⠎" }, { "input": "minefields", "output": "â â ”⠑⠋⠊⠑⠇⠙⠎" }, { "input": "miner", "output": "â â ”â »" }, { "input": "miner's", "output": "â â ”⠻⠄⠎" }, { "input": "mineral", "output": "â â ”â »â â ‡" }, { "input": "mineral's", "output": "â â ”â »â â ‡â „â Ž" }, { "input": "mineralogical", "output": "â â ”â »â â ‡â •⠛⠊⠉â â ‡" }, { "input": "mineralogist", "output": "â â ”â »â â ‡â •⠛⠊⠌" }, { "input": "mineralogist's", "output": "â â ”â »â â ‡â •⠛⠊⠌⠄⠎" }, { "input": "mineralogists", "output": "â â ”â »â â ‡â •⠛⠊⠌⠎" }, { "input": "mineralogy", "output": "â â ”â »â â ‡â •⠛⠽" }, { "input": "mineralogy's", "output": "â â ”â »â â ‡â •⠛⠽⠄⠎" }, { "input": "minerals", "output": "â â ”â »â â ‡â Ž" }, { "input": "miners", "output": "â â ”⠻⠎" }, { "input": "mines", "output": "â â ”â ‘â Ž" }, { "input": "minestrone", "output": "â â ”⠑⠌⠗⠕â â ‘" }, { "input": "minestrone's", "output": "â â ”⠑⠌⠗⠕â â ‘â „â Ž" }, { "input": "minesweeper", "output": "â â ”⠑⠎⠺⠑⠑â â »" }, { "input": "minesweeper's", "output": "â â ”⠑⠎⠺⠑⠑â â »â „â Ž" }, { "input": "minesweepers", "output": "â â ”⠑⠎⠺⠑⠑â â »â Ž" }, { "input": "mingle", "output": "â â Œâ ‡â ‘" }, { "input": "mingled", "output": "â â Œâ ‡â «" }, { "input": "mingles", "output": "â â Œâ ‡â ‘â Ž" }, { "input": "mingling", "output": "â â Œâ ‡â Œ" }, { "input": "mini", "output": "â â ”â Š" }, { "input": "mini's", "output": "â â ”â Šâ „â Ž" }, { "input": "miniature", "output": "â â ”â Šâ â žâ ¥â —â ‘" }, { "input": "miniature's", "output": "â â ”â Šâ â žâ ¥â —â ‘â „â Ž" }, { "input": "miniatures", "output": "â â ”â Šâ â žâ ¥â —â ‘â Ž" }, { "input": "miniaturist", "output": "â â ”â Šâ â žâ ¥â —â Šâ Œ" }, { "input": "miniaturist's", "output": "â â ”â Šâ â žâ ¥â —⠊⠌⠄⠎" }, { "input": "miniaturists", "output": "â â ”â Šâ â žâ ¥â —⠊⠌⠎" }, { "input": "miniaturization", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠠â " }, { "input": "miniaturization's", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠠â â „â Ž" }, { "input": "miniaturize", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠑" }, { "input": "miniaturized", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠫" }, { "input": "miniaturizes", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠑⠎" }, { "input": "miniaturizing", "output": "â â ”â Šâ â žâ ¥â —⠊⠵⠌" }, { "input": "minibike", "output": "â â ”⠊⠃⠊⠅⠑" }, { "input": "minibike's", "output": "â â ”⠊⠃⠊⠅⠑⠄⠎" }, { "input": "minibikes", "output": "â â ”⠊⠃⠊⠅⠑⠎" }, { "input": "minibus", "output": "â â ”⠊⠃⠥⠎" }, { "input": "minibus's", "output": "â â ”⠊⠃⠥⠎⠄⠎" }, { "input": "minibuses", "output": "â â ”⠊⠃⠥⠎⠑⠎" }, { "input": "minicam", "output": "â â ”â Šâ ‰â â " }, { "input": "minicam's", "output": "â â ”â Šâ ‰â â â „â Ž" }, { "input": "minicams", "output": "â â ”â Šâ ‰â â â Ž" }, { "input": "minicomputer", "output": "â â ”⠊⠉⠕â â â ¥â žâ »" }, { "input": "minicomputer's", "output": "â â ”⠊⠉⠕â â â ¥â žâ »â „â Ž" }, { "input": "minicomputers", "output": "â â ”⠊⠉⠕â â â ¥â žâ »â Ž" }, { "input": "minim", "output": "â â ”â Šâ " }, { "input": "minim's", "output": "â â ”â Šâ â „â Ž" }, { "input": "minimal", "output": "â â ”â Šâ â â ‡" }, { "input": "minimalism", "output": "â â ”â Šâ â â ‡â Šâ Žâ " }, { "input": "minimalism's", "output": "â â ”â Šâ â â ‡â Šâ Žâ â „â Ž" }, { "input": "minimalist", "output": "â â ”â Šâ â â ‡â Šâ Œ" }, { "input": "minimalist's", "output": "â â ”â Šâ â â ‡â Šâ Œâ „â Ž" }, { "input": "minimalists", "output": "â â ”â Šâ â â ‡â Šâ Œâ Ž" }, { "input": "minimally", "output": "â â ”â Šâ â  â ½" }, { "input": "minimization", "output": "â â ”â Šâ â Šâ µâ  â " }, { "input": "minimize", "output": "â â ”â Šâ â Šâ µâ ‘" }, { "input": "minimized", "output": "â â ”â Šâ â Šâ µâ «" }, { "input": "minimizes", "output": "â â ”â Šâ â Šâ µâ ‘â Ž" }, { "input": "minimizing", "output": "â â ”â Šâ â Šâ µâ Œ" }, { "input": "minims", "output": "â â ”â Šâ â Ž" }, { "input": "minimum", "output": "â â ”â Šâ â ¥â " }, { "input": "minimum's", "output": "â â ”â Šâ â ¥â â „â Ž" }, { "input": "minimums", "output": "â â ”â Šâ â ¥â â Ž" }, { "input": "mining", "output": "â â ”â Œ" }, { "input": "mining's", "output": "â â ”⠌⠄⠎" }, { "input": "minion", "output": "â â ”â Šâ •â " }, { "input": "minion's", "output": "â â ”â Šâ •â â „â Ž" }, { "input": "minions", "output": "â â ”â Šâ •â â Ž" }, { "input": "minis", "output": "â â ”â Šâ Ž" }, { "input": "miniseries", "output": "â â ”⠊⠎⠻⠊⠑⠎" }, { "input": "miniseries's", "output": "â â ”⠊⠎⠻⠊⠑⠎⠄⠎" }, { "input": "miniskirt", "output": "â â ”â Šâ Žâ …â Šâ —â ž" }, { "input": "miniskirt's", "output": "â â ”â Šâ Žâ …â Šâ —â žâ „â Ž" }, { "input": "miniskirts", "output": "â â ”â Šâ Žâ …â Šâ —â žâ Ž" }, { "input": "minister", "output": "â â ”⠊⠌⠻" }, { "input": "minister's", "output": "â â ”⠊⠌⠻⠄⠎" }, { "input": "ministered", "output": "â â ”⠊⠌⠻⠫" }, { "input": "ministerial", "output": "â â ”⠊⠌⠻⠊â â ‡" }, { "input": "ministering", "output": "â â ”⠊⠌⠻⠌" }, { "input": "ministers", "output": "â â ”⠊⠌⠻⠎" }, { "input": "ministrant", "output": "â â ”⠊⠌⠗â â â ž" }, { "input": "ministrant's", "output": "â â ”⠊⠌⠗â â â žâ „â Ž" }, { "input": "ministrants", "output": "â â ”⠊⠌⠗â â â žâ Ž" }, { "input": "ministration", "output": "â â ”⠊⠌⠗⠠â " }, { "input": "ministration's", "output": "â â ”⠊⠌⠗⠠â â „â Ž" }, { "input": "ministrations", "output": "â â ”⠊⠌⠗⠠â â Ž" }, { "input": "ministries", "output": "â â ”⠊⠌⠗⠊⠑⠎" }, { "input": "ministry", "output": "â â ”⠊⠌⠗⠽" }, { "input": "ministry's", "output": "â â ”⠊⠌⠗⠽⠄⠎" }, { "input": "minivan", "output": "â â ”â Šâ §â â " }, { "input": "minivan's", "output": "â â ”â Šâ §â â â „â Ž" }, { "input": "minivans", "output": "â â ”â Šâ §â â â Ž" }, { "input": "mink", "output": "â â ”â …" }, { "input": "mink's", "output": "â â ”â …â „â Ž" }, { "input": "minks", "output": "â â ”â …â Ž" }, { "input": "minnesinger", "output": "â â ”â â ‘⠎⠌⠻" }, { "input": "minnesinger's", "output": "â â ”â â ‘⠎⠌⠻⠄⠎" }, { "input": "minnesingers", "output": "â â ”â â ‘⠎⠌⠻⠎" }, { "input": "minnow", "output": "â â ”â â ª" }, { "input": "minnow's", "output": "â â ”â â ªâ „â Ž" }, { "input": "minnows", "output": "â â ”â â ªâ Ž" }, { "input": "minor", "output": "â â ”â •â —" }, { "input": "minor's", "output": "â â ”â •â —â „â Ž" }, { "input": "minored", "output": "â â ”â •â —â «" }, { "input": "minoring", "output": "â â ”â •â —â Œ" }, { "input": "minorities", "output": "â â ”â •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "minority", "output": "â â ”â •â —â °â ½" }, { "input": "minority's", "output": "â â ”⠕⠗⠰⠽⠄⠎" }, { "input": "minors", "output": "â â ”â •â —â Ž" }, { "input": "minoxidil", "output": "â â ”⠕⠭⠊⠙⠊⠇" }, { "input": "minoxidil's", "output": "â â ”⠕⠭⠊⠙⠊⠇⠄⠎" }, { "input": "minster", "output": "â â ”⠌⠻" }, { "input": "minstrel", "output": "â â ”⠌⠗⠑⠇" }, { "input": "minstrel's", "output": "â â ”⠌⠗⠑⠇⠄⠎" }, { "input": "minstrels", "output": "â â ”⠌⠗⠑⠇⠎" }, { "input": "minstrelsy", "output": "â â ”⠌⠗⠑⠇⠎⠽" }, { "input": "minstrelsy's", "output": "â â ”⠌⠗⠑⠇⠎⠽⠄⠎" }, { "input": "mint", "output": "â â ”â ž" }, { "input": "mint's", "output": "â â ”â žâ „â Ž" }, { "input": "mintage", "output": "â â ”â žâ â ›â ‘" }, { "input": "mintage's", "output": "â â ”â žâ â ›â ‘â „â Ž" }, { "input": "minted", "output": "â â ”â žâ «" }, { "input": "minter", "output": "â â ”â žâ »" }, { "input": "minter's", "output": "â â ”⠞⠻⠄⠎" }, { "input": "minters", "output": "â â ”⠞⠻⠎" }, { "input": "mintier", "output": "â â ”â žâ Šâ »" }, { "input": "mintiest", "output": "â â ”â žâ Šâ ‘â Œ" }, { "input": "minting", "output": "â â ”â žâ Œ" }, { "input": "mints", "output": "â â ”â žâ Ž" }, { "input": "minty", "output": "â â ”â žâ ½" }, { "input": "minuend", "output": "â â ”⠥⠢⠙" }, { "input": "minuend's", "output": "â â ”⠥⠢⠙⠄⠎" }, { "input": "minuends", "output": "â â ”⠥⠢⠙⠎" }, { "input": "minuet", "output": "â â ”⠥⠑⠞" }, { "input": "minuet's", "output": "â â ”⠥⠑⠞⠄⠎" }, { "input": "minuets", "output": "â â ”⠥⠑⠞⠎" }, { "input": "minus", "output": "â â ”⠥⠎" }, { "input": "minus's", "output": "â â ”⠥⠎⠄⠎" }, { "input": "minuscule", "output": "â â ”⠥⠎⠉⠥⠇⠑" }, { "input": "minuscule's", "output": "â â ”⠥⠎⠉⠥⠇⠑⠄⠎" }, { "input": "minuscules", "output": "â â ”⠥⠎⠉⠥⠇⠑⠎" }, { "input": "minuses", "output": "â â ”⠥⠎⠑⠎" }, { "input": "minute", "output": "â â ”⠥⠞⠑" }, { "input": "minute's", "output": "â â ”⠥⠞⠑⠄⠎" }, { "input": "minuted", "output": "â â ”⠥⠞⠫" }, { "input": "minutely", "output": "â â ”⠥⠞⠑⠇⠽" }, { "input": "minuteman", "output": "â â ”⠥⠞⠑â â â " }, { "input": "minuteman's", "output": "â â ”⠥⠞⠑â â â â „â Ž" }, { "input": "minutemen", "output": "â â ”⠥⠞⠑â â ¢" }, { "input": "minuteness", "output": "â â ”⠥⠞⠑⠰⠎" }, { "input": "minuteness's", "output": "â â ”⠥⠞⠑⠰⠎⠄⠎" }, { "input": "minuter", "output": "â â ”⠥⠞⠻" }, { "input": "minutes", "output": "â â ”⠥⠞⠑⠎" }, { "input": "minutest", "output": "â â ”⠥⠞⠑⠌" }, { "input": "minutia", "output": "â â ”⠥⠞⠊â " }, { "input": "minutia's", "output": "â â ”⠥⠞⠊â â „â Ž" }, { "input": "minutiae", "output": "â â ”⠥⠞⠊â â ‘" }, { "input": "minuting", "output": "â â ”⠥⠞⠌" }, { "input": "minx", "output": "â â ”â ­" }, { "input": "minx's", "output": "â â ”â ­â „â Ž" }, { "input": "minxes", "output": "â â ”â ­â ‘â Ž" }, { "input": "miracle", "output": "â â Šâ —â â ‰â ‡â ‘" }, { "input": "miracle's", "output": "â â Šâ —â â ‰â ‡â ‘â „â Ž" }, { "input": "miracles", "output": "â â Šâ —â â ‰â ‡â ‘â Ž" }, { "input": "miraculous", "output": "â â Šâ —â â ‰â ¥â ‡â ³â Ž" }, { "input": "miraculously", "output": "â â Šâ —â â ‰â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "mirage", "output": "â â Šâ —â â ›â ‘" }, { "input": "mirage's", "output": "â â Šâ —â â ›â ‘â „â Ž" }, { "input": "mirages", "output": "â â Šâ —â â ›â ‘â Ž" }, { "input": "mire", "output": "â â Šâ —â ‘" }, { "input": "mire's", "output": "â â Šâ —â ‘â „â Ž" }, { "input": "mired", "output": "â â Šâ —â «" }, { "input": "mires", "output": "â â Šâ —â ‘â Ž" }, { "input": "mirier", "output": "â â Šâ —â Šâ »" }, { "input": "miriest", "output": "â â Šâ —â Šâ ‘â Œ" }, { "input": "miring", "output": "â â Šâ —â Œ" }, { "input": "mirror", "output": "â â Šâ —â —â •â —" }, { "input": "mirror's", "output": "â â Šâ —â —â •â —â „â Ž" }, { "input": "mirrored", "output": "â â Šâ —â —â •â —â «" }, { "input": "mirroring", "output": "â â Šâ —â —â •â —â Œ" }, { "input": "mirrors", "output": "â â Šâ —â —â •â —â Ž" }, { "input": "mirth", "output": "â â Šâ —â ¹" }, { "input": "mirth's", "output": "â â Šâ —⠹⠄⠎" }, { "input": "mirthful", "output": "â â Šâ —⠹⠰⠇" }, { "input": "mirthfully", "output": "â â Šâ —⠹⠰⠇⠇⠽" }, { "input": "mirthfulness", "output": "â â Šâ —⠹⠰⠇⠰⠎" }, { "input": "mirthfulness's", "output": "â â Šâ —⠹⠰⠇⠰⠎⠄⠎" }, { "input": "mirthless", "output": "â â Šâ —⠹⠨⠎" }, { "input": "miry", "output": "â â Šâ —â ½" }, { "input": "misaddress", "output": "â â Šâ Žâ â ²â —â ‘â Žâ Ž" }, { "input": "misaddressed", "output": "â â Šâ Žâ â ²â —â ‘â Žâ Žâ «" }, { "input": "misaddresses", "output": "â â Šâ Žâ â ²â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "misaddressing", "output": "â â Šâ Žâ â ²â —â ‘â Žâ Žâ Œ" }, { "input": "misadventure", "output": "â â Šâ Žâ â ™â §â ¢â žâ ¥â —â ‘" }, { "input": "misadventure's", "output": "â â Šâ Žâ â ™â §â ¢â žâ ¥â —â ‘â „â Ž" }, { "input": "misadventures", "output": "â â Šâ Žâ â ™â §â ¢â žâ ¥â —â ‘â Ž" }, { "input": "misaligned", "output": "â â Šâ Žâ â ‡â Šâ ›â â «" }, { "input": "misalignment", "output": "â â Šâ Žâ â ‡â Šâ ›â â °â ž" }, { "input": "misalignment's", "output": "â â Šâ Žâ â ‡â Šâ ›â â °â žâ „â Ž" }, { "input": "misalliance", "output": "â â Šâ Žâ â ‡â ‡â Šâ ¨â ‘" }, { "input": "misalliance's", "output": "â â Šâ Žâ â ‡â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "misalliances", "output": "â â Šâ Žâ â ‡â ‡â Šâ ¨â ‘â Ž" }, { "input": "misanthrope", "output": "â â Šâ Žâ â â ¹â —â •â â ‘" }, { "input": "misanthrope's", "output": "â â Šâ Žâ â â ¹â —â •â â ‘â „â Ž" }, { "input": "misanthropes", "output": "â â Šâ Žâ â â ¹â —â •â â ‘â Ž" }, { "input": "misanthropic", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ ‰" }, { "input": "misanthropically", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ ‰â  â ½" }, { "input": "misanthropist", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ Œ" }, { "input": "misanthropist's", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ Œâ „â Ž" }, { "input": "misanthropists", "output": "â â Šâ Žâ â â ¹â —â •â â Šâ Œâ Ž" }, { "input": "misanthropy", "output": "â â Šâ Žâ â â ¹â —â •â â ½" }, { "input": "misanthropy's", "output": "â â Šâ Žâ â â ¹â —â •â â ½â „â Ž" }, { "input": "misapplication", "output": "â â Šâ Žâ â â â ‡â Šâ ‰â  â " }, { "input": "misapplication's", "output": "â â Šâ Žâ â â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "misapplied", "output": "â â Šâ Žâ â â â ‡â Šâ «" }, { "input": "misapplies", "output": "â â Šâ Žâ â â â ‡â Šâ ‘â Ž" }, { "input": "misapply", "output": "â â Šâ Žâ â â â ‡â ½" }, { "input": "misapplying", "output": "â â Šâ Žâ â â â ‡â ½â Œ" }, { "input": "misapprehend", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙" }, { "input": "misapprehended", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙⠫" }, { "input": "misapprehending", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙⠌" }, { "input": "misapprehends", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠙⠎" }, { "input": "misapprehension", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠨â " }, { "input": "misapprehension's", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠨â â „â Ž" }, { "input": "misapprehensions", "output": "â â Šâ Žâ â â â —⠑⠓⠢⠨â â Ž" }, { "input": "misappropriate", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ ‘" }, { "input": "misappropriated", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ «" }, { "input": "misappropriates", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ ‘â Ž" }, { "input": "misappropriating", "output": "â â Šâ Žâ â â â —â •â â —â Šâ â žâ Œ" }, { "input": "misappropriation", "output": "â â Šâ Žâ â â â —â •â â —â Šâ  â " }, { "input": "misappropriation's", "output": "â â Šâ Žâ â â â —â •â â —â Šâ  â â „â Ž" }, { "input": "misappropriations", "output": "â â Šâ Žâ â â â —â •â â —â Šâ  â â Ž" }, { "input": "misbegotten", "output": "â â Šâ Žâ ƒâ ‘⠛⠕⠞⠞⠢" }, { "input": "misbehave", "output": "â â Šâ Žâ ƒâ ‘â “â â §â ‘" }, { "input": "misbehaved", "output": "â â Šâ Žâ ƒâ ‘â “â â §â «" }, { "input": "misbehaves", "output": "â â Šâ Žâ ƒâ ‘â “â â §â ‘â Ž" }, { "input": "misbehaving", "output": "â â Šâ Žâ ƒâ ‘â “â â §â Œ" }, { "input": "misbehavior", "output": "â â Šâ Žâ ƒâ ‘â “â â §â Šâ •â —" }, { "input": "misbehavior's", "output": "â â Šâ Žâ ƒâ ‘â “â â §â Šâ •â —â „â Ž" }, { "input": "miscalculate", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ ‘" }, { "input": "miscalculated", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ «" }, { "input": "miscalculates", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "miscalculating", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â â žâ Œ" }, { "input": "miscalculation", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â  â " }, { "input": "miscalculation's", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â  â â „â Ž" }, { "input": "miscalculations", "output": "â â Šâ Žâ ‰â â ‡â ‰â ¥â ‡â  â â Ž" }, { "input": "miscall", "output": "â â Šâ Žâ ‰â â ‡â ‡" }, { "input": "miscalled", "output": "â â Šâ Žâ ‰â â ‡â ‡â «" }, { "input": "miscalling", "output": "â â Šâ Žâ ‰â â ‡â ‡â Œ" }, { "input": "miscalls", "output": "â â Šâ Žâ ‰â â ‡â ‡â Ž" }, { "input": "miscarriage", "output": "â â Šâ Žâ ‰â œâ —â Šâ â ›â ‘" }, { "input": "miscarriage's", "output": "â â Šâ Žâ ‰â œâ —â Šâ â ›â ‘â „â Ž" }, { "input": "miscarriages", "output": "â â Šâ Žâ ‰â œâ —â Šâ â ›â ‘â Ž" }, { "input": "miscarried", "output": "â â Šâ Žâ ‰â œâ —â Šâ «" }, { "input": "miscarries", "output": "â â Šâ Žâ ‰â œâ —â Šâ ‘â Ž" }, { "input": "miscarry", "output": "â â Šâ Žâ ‰â œâ —â ½" }, { "input": "miscarrying", "output": "â â Šâ Žâ ‰â œâ —⠽⠌" }, { "input": "miscast", "output": "â â Šâ Žâ ‰â â Œ" }, { "input": "miscasting", "output": "â â Šâ Žâ ‰â â Œâ Œ" }, { "input": "miscasts", "output": "â â Šâ Žâ ‰â â Œâ Ž" }, { "input": "miscegenation", "output": "â â Šâ Žâ ‰â ‘⠛⠢⠠â " }, { "input": "miscegenation's", "output": "â â Šâ Žâ ‰â ‘⠛⠢⠠â â „â Ž" }, { "input": "miscellaneous", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â ‘⠳⠎" }, { "input": "miscellaneously", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â ‘⠳⠎⠇⠽" }, { "input": "miscellanies", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â Šâ ‘â Ž" }, { "input": "miscellany", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â ½" }, { "input": "miscellany's", "output": "â â Šâ Žâ ‰â ‘⠇⠇â â â ½â „â Ž" }, { "input": "mischance", "output": "â â Šâ Žâ ¡â ¨â ‘" }, { "input": "mischance's", "output": "â â Šâ Žâ ¡â ¨â ‘â „â Ž" }, { "input": "mischances", "output": "â â Šâ Žâ ¡â ¨â ‘â Ž" }, { "input": "mischief", "output": "â â Šâ Žâ ¡â Šâ ‘â ‹" }, { "input": "mischief's", "output": "â â Šâ Žâ ¡â Šâ ‘â ‹â „â Ž" }, { "input": "mischievous", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎" }, { "input": "mischievously", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎⠇⠽" }, { "input": "mischievousness", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎⠰⠎" }, { "input": "mischievousness's", "output": "â â Šâ Žâ ¡â Šâ ‘⠧⠳⠎⠰⠎⠄⠎" }, { "input": "miscibility", "output": "â â Šâ Žâ ‰â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "miscibility's", "output": "â â Šâ Žâ ‰â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "miscible", "output": "â â Šâ Žâ ‰â Šâ ¼" }, { "input": "misconceive", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â ‘" }, { "input": "misconceived", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â «" }, { "input": "misconceives", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â ‘â Ž" }, { "input": "misconceiving", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â Šâ §â Œ" }, { "input": "misconception", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â â °â " }, { "input": "misconception's", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â â °â â „â Ž" }, { "input": "misconceptions", "output": "â â Šâ Žâ ‰â •â â ‰â ‘â â °â â Ž" }, { "input": "misconduct", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â ž" }, { "input": "misconduct's", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ „â Ž" }, { "input": "misconducted", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ «" }, { "input": "misconducting", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ Œ" }, { "input": "misconducts", "output": "â â Šâ Žâ ‰â •â â ™â ¥â ‰â žâ Ž" }, { "input": "misconstruction", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠉⠰â " }, { "input": "misconstruction's", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠉⠰â â „â Ž" }, { "input": "misconstructions", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠉⠰â â Ž" }, { "input": "misconstrue", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠑" }, { "input": "misconstrued", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠫" }, { "input": "misconstrues", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠑⠎" }, { "input": "misconstruing", "output": "â â Šâ Žâ ‰â •â â Œâ —⠥⠌" }, { "input": "miscount", "output": "â â Šâ Žâ ‰â ¨â ž" }, { "input": "miscount's", "output": "â â Šâ Žâ ‰â ¨â žâ „â Ž" }, { "input": "miscounted", "output": "â â Šâ Žâ ‰â ¨â žâ «" }, { "input": "miscounting", "output": "â â Šâ Žâ ‰â ¨â žâ Œ" }, { "input": "miscounts", "output": "â â Šâ Žâ ‰â ¨â žâ Ž" }, { "input": "miscreant", "output": "â â Šâ Žâ ‰â —â ‚â â ž" }, { "input": "miscreant's", "output": "â â Šâ Žâ ‰â —â ‚â â žâ „â Ž" }, { "input": "miscreants", "output": "â â Šâ Žâ ‰â —â ‚â â žâ Ž" }, { "input": "miscue", "output": "â â Šâ Žâ ‰â ¥â ‘" }, { "input": "miscue's", "output": "â â Šâ Žâ ‰â ¥â ‘â „â Ž" }, { "input": "miscued", "output": "â â Šâ Žâ ‰â ¥â «" }, { "input": "miscues", "output": "â â Šâ Žâ ‰â ¥â ‘â Ž" }, { "input": "miscuing", "output": "â â Šâ Žâ ‰â ¥â Œ" }, { "input": "misdeal", "output": "â â Šâ Žâ ™â ‚â ‡" }, { "input": "misdeal's", "output": "â â Šâ Žâ ™â ‚⠇⠄⠎" }, { "input": "misdealing", "output": "â â Šâ Žâ ™â ‚⠇⠌" }, { "input": "misdeals", "output": "â â Šâ Žâ ™â ‚⠇⠎" }, { "input": "misdealt", "output": "â â Šâ Žâ ™â ‚⠇⠞" }, { "input": "misdeed", "output": "â â Šâ Žâ ™â ‘â «" }, { "input": "misdeed's", "output": "â â Šâ Žâ ™â ‘â «â „â Ž" }, { "input": "misdeeds", "output": "â â Šâ Žâ ™â ‘â «â Ž" }, { "input": "misdemeanor", "output": "â â Šâ Žâ ™â ‘â â ‚â â •â —" }, { "input": "misdemeanor's", "output": "â â Šâ Žâ ™â ‘â â ‚â â •â —â „â Ž" }, { "input": "misdemeanors", "output": "â â Šâ Žâ ™â ‘â â ‚â â •â —â Ž" }, { "input": "misdiagnose", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ ‘" }, { "input": "misdiagnosed", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ «" }, { "input": "misdiagnoses", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ ‘â Ž" }, { "input": "misdiagnosing", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ Œ" }, { "input": "misdiagnosis", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ Šâ Ž" }, { "input": "misdiagnosis's", "output": "â â Šâ Žâ ™â Šâ â ›â â •â Žâ Šâ Žâ „â Ž" }, { "input": "misdid", "output": "â â Šâ Žâ ™â Šâ ™" }, { "input": "misdirect", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞" }, { "input": "misdirected", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞⠫" }, { "input": "misdirecting", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞⠌" }, { "input": "misdirection", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠰â " }, { "input": "misdirection's", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠰â â „â Ž" }, { "input": "misdirects", "output": "â â Šâ Žâ ™â Šâ —⠑⠉⠞⠎" }, { "input": "misdo", "output": "â â Šâ Žâ ™â •" }, { "input": "misdoes", "output": "â â Šâ Žâ ™â •â ‘â Ž" }, { "input": "misdoing", "output": "â â Šâ Žâ ™â •â Œ" }, { "input": "misdoing's", "output": "â â Šâ Žâ ™â •⠌⠄⠎" }, { "input": "misdoings", "output": "â â Šâ Žâ ™â •⠌⠎" }, { "input": "misdone", "output": "â â Šâ Žâ ™â â •" }, { "input": "miser", "output": "â â Šâ Žâ »" }, { "input": "miser's", "output": "â â Šâ Žâ »â „â Ž" }, { "input": "miserable", "output": "â â Šâ Žâ »â â ¼" }, { "input": "miserableness", "output": "â â Šâ Žâ »â â ¼â °â Ž" }, { "input": "miserableness's", "output": "â â Šâ Žâ »â â ¼â °â Žâ „â Ž" }, { "input": "miserably", "output": "â â Šâ Žâ »â â ƒâ ‡â ½" }, { "input": "miseries", "output": "â â Šâ Žâ »â Šâ ‘â Ž" }, { "input": "miserliness", "output": "â â Šâ Žâ »â ‡â Šâ °â Ž" }, { "input": "miserliness's", "output": "â â Šâ Žâ »â ‡â Šâ °â Žâ „â Ž" }, { "input": "miserly", "output": "â â Šâ Žâ »â ‡â ½" }, { "input": "misers", "output": "â â Šâ Žâ »â Ž" }, { "input": "misery", "output": "â â Šâ Žâ »â ½" }, { "input": "misery's", "output": "â â Šâ Žâ »â ½â „â Ž" }, { "input": "misfeasance", "output": "â â Šâ Žâ ‹â ‚⠎⠨⠑" }, { "input": "misfeasance's", "output": "â â Šâ Žâ ‹â ‚⠎⠨⠑⠄⠎" }, { "input": "misfile", "output": "â â Šâ Žâ ‹â Šâ ‡â ‘" }, { "input": "misfiled", "output": "â â Šâ Žâ ‹â Šâ ‡â «" }, { "input": "misfiles", "output": "â â Šâ Žâ ‹â Šâ ‡â ‘â Ž" }, { "input": "misfiling", "output": "â â Šâ Žâ ‹â Šâ ‡â Œ" }, { "input": "misfire", "output": "â â Šâ Žâ ‹â Šâ —â ‘" }, { "input": "misfire's", "output": "â â Šâ Žâ ‹â Šâ —â ‘â „â Ž" }, { "input": "misfired", "output": "â â Šâ Žâ ‹â Šâ —â «" }, { "input": "misfires", "output": "â â Šâ Žâ ‹â Šâ —â ‘â Ž" }, { "input": "misfiring", "output": "â â Šâ Žâ ‹â Šâ —â Œ" }, { "input": "misfit", "output": "â â Šâ Žâ ‹â Šâ ž" }, { "input": "misfit's", "output": "â â Šâ Žâ ‹â Šâ žâ „â Ž" }, { "input": "misfits", "output": "â â Šâ Žâ ‹â Šâ žâ Ž" }, { "input": "misfitted", "output": "â â Šâ Žâ ‹â Šâ žâ žâ «" }, { "input": "misfitting", "output": "â â Šâ Žâ ‹â Šâ žâ žâ Œ" }, { "input": "misfortune", "output": "â â Šâ Žâ ¿â žâ ¥â â ‘" }, { "input": "misfortune's", "output": "â â Šâ Žâ ¿â žâ ¥â â ‘â „â Ž" }, { "input": "misfortunes", "output": "â â Šâ Žâ ¿â žâ ¥â â ‘â Ž" }, { "input": "misgiving", "output": "â â Šâ Žâ ›â Šâ §â Œ" }, { "input": "misgiving's", "output": "â â Šâ Žâ ›â Šâ §â Œâ „â Ž" }, { "input": "misgivings", "output": "â â Šâ Žâ ›â Šâ §â Œâ Ž" }, { "input": "misgovern", "output": "â â Šâ Žâ ›â •â §â »â " }, { "input": "misgoverned", "output": "â â Šâ Žâ ›â •â §â »â â «" }, { "input": "misgoverning", "output": "â â Šâ Žâ ›â •â §â »â â Œ" }, { "input": "misgovernment", "output": "â â Šâ Žâ ›â •â §â »â â °â ž" }, { "input": "misgovernment's", "output": "â â Šâ Žâ ›â •â §â »â â °â žâ „â Ž" }, { "input": "misgoverns", "output": "â â Šâ Žâ ›â •â §â »â â Ž" }, { "input": "misguidance", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ¨â ‘" }, { "input": "misguidance's", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ¨â ‘â „â Ž" }, { "input": "misguide", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ‘" }, { "input": "misguided", "output": "â â Šâ Žâ ›â ¥â Šâ ™â «" }, { "input": "misguidedly", "output": "â â Šâ Žâ ›â ¥â Šâ ™â «â ‡â ½" }, { "input": "misguides", "output": "â â Šâ Žâ ›â ¥â Šâ ™â ‘â Ž" }, { "input": "misguiding", "output": "â â Šâ Žâ ›â ¥â Šâ ™â Œ" }, { "input": "mishandle", "output": "â â Šâ Žâ “⠯⠇⠑" }, { "input": "mishandled", "output": "â â Šâ Žâ “⠯⠇⠫" }, { "input": "mishandles", "output": "â â Šâ Žâ “⠯⠇⠑⠎" }, { "input": "mishandling", "output": "â â Šâ Žâ “⠯⠇⠌" }, { "input": "mishap", "output": "â â Šâ Žâ “â â " }, { "input": "mishap's", "output": "â â Šâ Žâ “â â â „â Ž" }, { "input": "mishaps", "output": "â â Šâ Žâ “â â â Ž" }, { "input": "mishmash", "output": "â â Šâ ©â â â ©" }, { "input": "mishmash's", "output": "â â Šâ ©â â â ©â „â Ž" }, { "input": "mishmashes", "output": "â â Šâ ©â â â ©â ‘â Ž" }, { "input": "misidentified", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â Šâ «" }, { "input": "misidentifies", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "misidentify", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â ½" }, { "input": "misidentifying", "output": "â â Šâ Žâ Šâ ™â ¢â žâ Šâ ‹â ½â Œ" }, { "input": "misinform", "output": "â â Šâ Žâ ”â ¿â " }, { "input": "misinformation", "output": "â â Šâ Žâ ”â ¿â â  â " }, { "input": "misinformation's", "output": "â â Šâ Žâ ”â ¿â â  â â „â Ž" }, { "input": "misinformed", "output": "â â Šâ Žâ ”â ¿â â «" }, { "input": "misinforming", "output": "â â Šâ Žâ ”â ¿â â Œ" }, { "input": "misinforms", "output": "â â Šâ Žâ ”â ¿â â Ž" }, { "input": "misinterpret", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â ž" }, { "input": "misinterpretation", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ  â " }, { "input": "misinterpretation's", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ  â â „â Ž" }, { "input": "misinterpretations", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ  â â Ž" }, { "input": "misinterpreted", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ «" }, { "input": "misinterpreting", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ Œ" }, { "input": "misinterprets", "output": "â â Šâ Žâ ”â žâ »â â —â ‘â žâ Ž" }, { "input": "misjudge", "output": "â â Šâ Žâ šâ ¥â ™â ›â ‘" }, { "input": "misjudged", "output": "â â Šâ Žâ šâ ¥â ™â ›â «" }, { "input": "misjudges", "output": "â â Šâ Žâ šâ ¥â ™â ›â ‘â Ž" }, { "input": "misjudging", "output": "â â Šâ Žâ šâ ¥â ™â ›â Œ" }, { "input": "misjudgment", "output": "â â Šâ Žâ šâ ¥â ™â ›â °â ž" }, { "input": "misjudgment's", "output": "â â Šâ Žâ šâ ¥â ™â ›â °â žâ „â Ž" }, { "input": "misjudgments", "output": "â â Šâ Žâ šâ ¥â ™â ›â °â žâ Ž" }, { "input": "mislabel", "output": "â â Šâ Žâ ‡â â ƒâ ‘â ‡" }, { "input": "mislabeled", "output": "â â Šâ Žâ ‡â â ƒâ ‘⠇⠫" }, { "input": "mislabeling", "output": "â â Šâ Žâ ‡â â ƒâ ‘⠇⠌" }, { "input": "mislabels", "output": "â â Šâ Žâ ‡â â ƒâ ‘⠇⠎" }, { "input": "mislaid", "output": "â â Šâ Žâ ‡â â Šâ ™" }, { "input": "mislay", "output": "â â Šâ Žâ ‡â â ½" }, { "input": "mislaying", "output": "â â Šâ Žâ ‡â â ½â Œ" }, { "input": "mislays", "output": "â â Šâ Žâ ‡â â ½â Ž" }, { "input": "mislead", "output": "â â Šâ Žâ ‡â ‚â ™" }, { "input": "misleading", "output": "â â Šâ Žâ ‡â ‚⠙⠌" }, { "input": "misleads", "output": "â â Šâ Žâ ‡â ‚⠙⠎" }, { "input": "misled", "output": "â â Šâ Žâ ‡â «" }, { "input": "mismanage", "output": "â â Šâ Žâ â â â â ›â ‘" }, { "input": "mismanaged", "output": "â â Šâ Žâ â â â â ›â «" }, { "input": "mismanagement", "output": "â â Šâ Žâ â â â â ›â ‘â °â ž" }, { "input": "mismanagement's", "output": "â â Šâ Žâ â â â â ›â ‘â °â žâ „â Ž" }, { "input": "mismanages", "output": "â â Šâ Žâ â â â â ›â ‘â Ž" }, { "input": "mismanaging", "output": "â â Šâ Žâ â â â â ›â Œ" }, { "input": "mismatch", "output": "â â Šâ Žâ â â žâ ¡" }, { "input": "mismatch's", "output": "â â Šâ Žâ â â žâ ¡â „â Ž" }, { "input": "mismatched", "output": "â â Šâ Žâ â â žâ ¡â «" }, { "input": "mismatches", "output": "â â Šâ Žâ â â žâ ¡â ‘â Ž" }, { "input": "mismatching", "output": "â â Šâ Žâ â â žâ ¡â Œ" }, { "input": "misnomer", "output": "â â Šâ Žâ â •â â »" }, { "input": "misnomer's", "output": "â â Šâ Žâ â •â â »â „â Ž" }, { "input": "misnomers", "output": "â â Šâ Žâ â •â â »â Ž" }, { "input": "misogamist", "output": "â â Šâ Žâ •â ›â â â Šâ Œ" }, { "input": "misogamist's", "output": "â â Šâ Žâ •â ›â â â Šâ Œâ „â Ž" }, { "input": "misogamists", "output": "â â Šâ Žâ •â ›â â â Šâ Œâ Ž" }, { "input": "misogamy", "output": "â â Šâ Žâ •â ›â â â ½" }, { "input": "misogamy's", "output": "â â Šâ Žâ •â ›â â â ½â „â Ž" }, { "input": "misogynist", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œ" }, { "input": "misogynist's", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œâ „â Ž" }, { "input": "misogynistic", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œâ Šâ ‰" }, { "input": "misogynists", "output": "â â Šâ Žâ •⠛⠽â â Šâ Œâ Ž" }, { "input": "misogynous", "output": "â â Šâ Žâ •⠛⠽â â ³â Ž" }, { "input": "misogyny", "output": "â â Šâ Žâ •⠛⠽â â ½" }, { "input": "misogyny's", "output": "â â Šâ Žâ •⠛⠽â â ½â „â Ž" }, { "input": "misplace", "output": "â â Šâ Žâ â ‡â â ‰â ‘" }, { "input": "misplaced", "output": "â â Šâ Žâ â ‡â â ‰â «" }, { "input": "misplacement", "output": "â â Šâ Žâ â ‡â â ‰â ‘â °â ž" }, { "input": "misplacement's", "output": "â â Šâ Žâ â ‡â â ‰â ‘â °â žâ „â Ž" }, { "input": "misplaces", "output": "â â Šâ Žâ â ‡â â ‰â ‘â Ž" }, { "input": "misplacing", "output": "â â Šâ Žâ â ‡â â ‰â Œ" }, { "input": "misplay", "output": "â â Šâ Žâ â ‡â â ½" }, { "input": "misplay's", "output": "â â Šâ Žâ â ‡â â ½â „â Ž" }, { "input": "misplayed", "output": "â â Šâ Žâ â ‡â â ½â «" }, { "input": "misplaying", "output": "â â Šâ Žâ â ‡â â ½â Œ" }, { "input": "misplays", "output": "â â Šâ Žâ â ‡â â ½â Ž" }, { "input": "misprint", "output": "â â Šâ Žâ â —⠔⠞" }, { "input": "misprint's", "output": "â â Šâ Žâ â —⠔⠞⠄⠎" }, { "input": "misprinted", "output": "â â Šâ Žâ â —⠔⠞⠫" }, { "input": "misprinting", "output": "â â Šâ Žâ â —⠔⠞⠌" }, { "input": "misprints", "output": "â â Šâ Žâ â —⠔⠞⠎" }, { "input": "misprision", "output": "â â Šâ Žâ â —â Šâ ¨â " }, { "input": "misprision's", "output": "â â Šâ Žâ â —â Šâ ¨â â „â Ž" }, { "input": "mispronounce", "output": "â â Šâ Žâ â —â •â â ³â â ‰â ‘" }, { "input": "mispronounced", "output": "â â Šâ Žâ â —â •â â ³â â ‰â «" }, { "input": "mispronounces", "output": "â â Šâ Žâ â —â •â â ³â â ‰â ‘â Ž" }, { "input": "mispronouncing", "output": "â â Šâ Žâ â —â •â â ³â â ‰â Œ" }, { "input": "mispronunciation", "output": "â â Šâ Žâ â —â •â â ¥â â ‰â Šâ  â " }, { "input": "mispronunciation's", "output": "â â Šâ Žâ â —â •â â ¥â â ‰â Šâ  â â „â Ž" }, { "input": "mispronunciations", "output": "â â Šâ Žâ â —â •â â ¥â â ‰â Šâ  â â Ž" }, { "input": "misquotation", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ  â " }, { "input": "misquotation's", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ  â â „â Ž" }, { "input": "misquotations", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ  â â Ž" }, { "input": "misquote", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ ‘" }, { "input": "misquote's", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ ‘â „â Ž" }, { "input": "misquoted", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ «" }, { "input": "misquotes", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ ‘â Ž" }, { "input": "misquoting", "output": "â â Šâ Žâ Ÿâ ¥â •â žâ Œ" }, { "input": "misread", "output": "â â Šâ Žâ —â ‚â ™" }, { "input": "misreading", "output": "â â Šâ Žâ —⠂⠙⠌" }, { "input": "misreading's", "output": "â â Šâ Žâ —⠂⠙⠌⠄⠎" }, { "input": "misreadings", "output": "â â Šâ Žâ —⠂⠙⠌⠎" }, { "input": "misreads", "output": "â â Šâ Žâ —⠂⠙⠎" }, { "input": "misrepresent", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞" }, { "input": "misrepresentation", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠠â " }, { "input": "misrepresentation's", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠠â â „â Ž" }, { "input": "misrepresentations", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠠â â Ž" }, { "input": "misrepresented", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠫" }, { "input": "misrepresenting", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠌" }, { "input": "misrepresents", "output": "â â Šâ Žâ —â ‘â â —⠑⠎⠢⠞⠎" }, { "input": "misrule", "output": "â â Šâ Žâ —⠥⠇⠑" }, { "input": "misrule's", "output": "â â Šâ Žâ —⠥⠇⠑⠄⠎" }, { "input": "misruled", "output": "â â Šâ Žâ —⠥⠇⠫" }, { "input": "misrules", "output": "â â Šâ Žâ —⠥⠇⠑⠎" }, { "input": "misruling", "output": "â â Šâ Žâ —⠥⠇⠌" }, { "input": "miss", "output": "â â Šâ Žâ Ž" }, { "input": "miss's", "output": "â â Šâ Žâ Žâ „â Ž" }, { "input": "missal", "output": "â â Šâ Žâ Žâ â ‡" }, { "input": "missal's", "output": "â â Šâ Žâ Žâ â ‡â „â Ž" }, { "input": "missals", "output": "â â Šâ Žâ Žâ â ‡â Ž" }, { "input": "missed", "output": "â â Šâ Žâ Žâ «" }, { "input": "misses", "output": "â â Šâ Žâ Žâ ‘â Ž" }, { "input": "misshape", "output": "â â Šâ Žâ ©â â â ‘" }, { "input": "misshaped", "output": "â â Šâ Žâ ©â â â «" }, { "input": "misshapen", "output": "â â Šâ Žâ ©â â â ¢" }, { "input": "misshapes", "output": "â â Šâ Žâ ©â â â ‘â Ž" }, { "input": "misshaping", "output": "â â Šâ Žâ ©â â â Œ" }, { "input": "missile", "output": "â â Šâ Žâ Žâ Šâ ‡â ‘" }, { "input": "missile's", "output": "â â Šâ Žâ Žâ Šâ ‡â ‘â „â Ž" }, { "input": "missilery", "output": "â â Šâ Žâ Žâ Šâ ‡â »â ½" }, { "input": "missilery's", "output": "â â Šâ Žâ Žâ Šâ ‡â »â ½â „â Ž" }, { "input": "missiles", "output": "â â Šâ Žâ Žâ Šâ ‡â ‘â Ž" }, { "input": "missing", "output": "â â Šâ Žâ Žâ Œ" }, { "input": "mission", "output": "â â Šâ Žâ ¨â " }, { "input": "mission's", "output": "â â Šâ Žâ ¨â â „â Ž" }, { "input": "missionaries", "output": "â â Šâ Žâ ¨â â œâ Šâ ‘â Ž" }, { "input": "missionary", "output": "â â Šâ Žâ ¨â â œâ ½" }, { "input": "missionary's", "output": "â â Šâ Žâ ¨â â œâ ½â „â Ž" }, { "input": "missioner", "output": "â â Šâ Žâ ¨â â »" }, { "input": "missioner's", "output": "â â Šâ Žâ ¨â â »â „â Ž" }, { "input": "missioners", "output": "â â Šâ Žâ ¨â â »â Ž" }, { "input": "missions", "output": "â â Šâ Žâ ¨â â Ž" }, { "input": "missive", "output": "â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "missive's", "output": "â â Šâ Žâ Žâ Šâ §â ‘â „â Ž" }, { "input": "missives", "output": "â â Šâ Žâ Žâ Šâ §â ‘â Ž" }, { "input": "misspeak", "output": "â â Šâ Žâ Žâ â ‚â …" }, { "input": "misspeaking", "output": "â â Šâ Žâ Žâ â ‚â …â Œ" }, { "input": "misspeaks", "output": "â â Šâ Žâ Žâ â ‚â …â Ž" }, { "input": "misspell", "output": "â â Šâ Žâ Žâ â ‘⠇⠇" }, { "input": "misspelled", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠫" }, { "input": "misspelling", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠌" }, { "input": "misspelling's", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠌⠄⠎" }, { "input": "misspellings", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠌⠎" }, { "input": "misspells", "output": "â â Šâ Žâ Žâ â ‘⠇⠇⠎" }, { "input": "misspend", "output": "â â Šâ Žâ Žâ â ¢â ™" }, { "input": "misspending", "output": "â â Šâ Žâ Žâ â ¢â ™â Œ" }, { "input": "misspends", "output": "â â Šâ Žâ Žâ â ¢â ™â Ž" }, { "input": "misspent", "output": "â â Šâ Žâ Žâ â ¢â ž" }, { "input": "misspoke", "output": "â â Šâ Žâ Žâ â •â …â ‘" }, { "input": "misspoken", "output": "â â Šâ Žâ Žâ â •â …â ¢" }, { "input": "misstate", "output": "â â Šâ Žâ Œâ â žâ ‘" }, { "input": "misstated", "output": "â â Šâ Žâ Œâ â žâ «" }, { "input": "misstatement", "output": "â â Šâ Žâ Œâ â žâ ‘â °â ž" }, { "input": "misstatement's", "output": "â â Šâ Žâ Œâ â žâ ‘â °â žâ „â Ž" }, { "input": "misstatements", "output": "â â Šâ Žâ Œâ â žâ ‘â °â žâ Ž" }, { "input": "misstates", "output": "â â Šâ Žâ Œâ â žâ ‘â Ž" }, { "input": "misstating", "output": "â â Šâ Žâ Œâ â žâ Œ" }, { "input": "misstep", "output": "â â Šâ Žâ Œâ ‘â " }, { "input": "misstep's", "output": "â â Šâ Žâ Œâ ‘â â „â Ž" }, { "input": "missteps", "output": "â â Šâ Žâ Œâ ‘â â Ž" }, { "input": "missus's", "output": "â â Šâ Žâ Žâ ¥â Žâ „â Ž" }, { "input": "missuses", "output": "â â Šâ Žâ Žâ ¥â Žâ ‘â Ž" }, { "input": "mist", "output": "â â Šâ Œ" }, { "input": "mist's", "output": "â â Šâ Œâ „â Ž" }, { "input": "mistakable", "output": "â â Šâ Žâ žâ â …â â ¼" }, { "input": "mistake", "output": "â â Šâ Žâ žâ â …â ‘" }, { "input": "mistake's", "output": "â â Šâ Žâ žâ â …â ‘â „â Ž" }, { "input": "mistaken", "output": "â â Šâ Žâ žâ â …â ¢" }, { "input": "mistakenly", "output": "â â Šâ Žâ žâ â …⠢⠇⠽" }, { "input": "mistakes", "output": "â â Šâ Žâ žâ â …â ‘â Ž" }, { "input": "mistaking", "output": "â â Šâ Žâ žâ â …â Œ" }, { "input": "misted", "output": "â â Šâ Œâ «" }, { "input": "mister", "output": "â â Šâ Œâ »" }, { "input": "mister's", "output": "â â Šâ Œâ »â „â Ž" }, { "input": "misters", "output": "â â Šâ Œâ »â Ž" }, { "input": "mistier", "output": "â â Šâ Œâ Šâ »" }, { "input": "mistiest", "output": "â â Šâ Œâ Šâ ‘â Œ" }, { "input": "mistily", "output": "â â Šâ Œâ Šâ ‡â ½" }, { "input": "mistime", "output": "â â Šâ Žâ â ž" }, { "input": "mistimed", "output": "â â Šâ Žâ â žâ ™" }, { "input": "mistimes", "output": "â â Šâ Žâ â žâ Ž" }, { "input": "mistiming", "output": "â â Šâ Žâ žâ Šâ â Œ" }, { "input": "mistiness", "output": "â â Šâ Œâ Šâ °â Ž" }, { "input": "mistiness's", "output": "â â Šâ Œâ Šâ °â Žâ „â Ž" }, { "input": "misting", "output": "â â Šâ Œâ Œ" }, { "input": "mistletoe", "output": "â â Šâ Œâ ‡â ‘â žâ •â ‘" }, { "input": "mistletoe's", "output": "â â Šâ Œâ ‡â ‘â žâ •â ‘â „â Ž" }, { "input": "mistook", "output": "â â Šâ Žâ žâ •â •â …" }, { "input": "mistral", "output": "â â Šâ Œâ —â â ‡" }, { "input": "mistral's", "output": "â â Šâ Œâ —â â ‡â „â Ž" }, { "input": "mistrals", "output": "â â Šâ Œâ —â â ‡â Ž" }, { "input": "mistranslated", "output": "â â Šâ Žâ žâ —â â â Žâ ‡â â žâ «" }, { "input": "mistreat", "output": "â â Šâ Žâ žâ —â ‚â ž" }, { "input": "mistreated", "output": "â â Šâ Žâ žâ —â ‚â žâ «" }, { "input": "mistreating", "output": "â â Šâ Žâ žâ —â ‚â žâ Œ" }, { "input": "mistreatment", "output": "â â Šâ Žâ žâ —â ‚â žâ °â ž" }, { "input": "mistreatment's", "output": "â â Šâ Žâ žâ —â ‚â žâ °â žâ „â Ž" }, { "input": "mistreats", "output": "â â Šâ Žâ žâ —â ‚â žâ Ž" }, { "input": "mistress", "output": "â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "mistress's", "output": "â â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "mistresses", "output": "â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "mistrial", "output": "â â Šâ Žâ žâ —â Šâ â ‡" }, { "input": "mistrial's", "output": "â â Šâ Žâ žâ —â Šâ â ‡â „â Ž" }, { "input": "mistrials", "output": "â â Šâ Žâ žâ —â Šâ â ‡â Ž" }, { "input": "mistrust", "output": "â â Šâ Žâ žâ —⠥⠌" }, { "input": "mistrust's", "output": "â â Šâ Žâ žâ —⠥⠌⠄⠎" }, { "input": "mistrusted", "output": "â â Šâ Žâ žâ —⠥⠌⠫" }, { "input": "mistrustful", "output": "â â Šâ Žâ žâ —⠥⠌⠰⠇" }, { "input": "mistrusting", "output": "â â Šâ Žâ žâ —⠥⠌⠌" }, { "input": "mistrusts", "output": "â â Šâ Žâ žâ —⠥⠌⠎" }, { "input": "mists", "output": "â â Šâ Œâ Ž" }, { "input": "misty", "output": "â â Šâ Œâ ½" }, { "input": "mistype", "output": "â â Šâ Žâ žâ ½â â ‘" }, { "input": "mistypes", "output": "â â Šâ Žâ žâ ½â â ‘â Ž" }, { "input": "mistyping", "output": "â â Šâ Žâ žâ ½â â Œ" }, { "input": "misunderstand", "output": "â â Šâ Žâ â ¥â Œâ ¯" }, { "input": "misunderstanding", "output": "â â Šâ Žâ â ¥â Œâ ¯â Œ" }, { "input": "misunderstanding's", "output": "â â Šâ Žâ â ¥â Œâ ¯â Œâ „â Ž" }, { "input": "misunderstandings", "output": "â â Šâ Žâ â ¥â Œâ ¯â Œâ Ž" }, { "input": "misunderstands", "output": "â â Šâ Žâ â ¥â Œâ ¯â Ž" }, { "input": "misunderstood", "output": "â â Šâ Žâ â ¥â Œâ •â •â ™" }, { "input": "misuse", "output": "â â Šâ Žâ ¥â Žâ ‘" }, { "input": "misuse's", "output": "â â Šâ Žâ ¥â Žâ ‘â „â Ž" }, { "input": "misused", "output": "â â Šâ Žâ ¥â Žâ «" }, { "input": "misuses", "output": "â â Šâ Žâ ¥â Žâ ‘â Ž" }, { "input": "misusing", "output": "â â Šâ Žâ ¥â Žâ Œ" }, { "input": "mite", "output": "â â Šâ žâ ‘" }, { "input": "mite's", "output": "â â Šâ žâ ‘â „â Ž" }, { "input": "miter", "output": "â â Šâ žâ »" }, { "input": "miter's", "output": "â â Šâ žâ »â „â Ž" }, { "input": "mitered", "output": "â â Šâ žâ »â «" }, { "input": "mitering", "output": "â â Šâ žâ »â Œ" }, { "input": "miters", "output": "â â Šâ žâ »â Ž" }, { "input": "mites", "output": "â â Šâ žâ ‘â Ž" }, { "input": "mitigate", "output": "â â Šâ žâ Šâ ›â â žâ ‘" }, { "input": "mitigated", "output": "â â Šâ žâ Šâ ›â â žâ «" }, { "input": "mitigates", "output": "â â Šâ žâ Šâ ›â â žâ ‘â Ž" }, { "input": "mitigating", "output": "â â Šâ žâ Šâ ›â â žâ Œ" }, { "input": "mitigation", "output": "â â Šâ žâ Šâ ›â  â " }, { "input": "mitigation's", "output": "â â Šâ žâ Šâ ›â  â â „â Ž" }, { "input": "mitoses", "output": "â â Šâ žâ •â Žâ ‘â Ž" }, { "input": "mitosis", "output": "â â Šâ žâ •â Žâ Šâ Ž" }, { "input": "mitosis's", "output": "â â Šâ žâ •â Žâ Šâ Žâ „â Ž" }, { "input": "mitotic", "output": "â â Šâ žâ •â žâ Šâ ‰" }, { "input": "mitt", "output": "â â Šâ žâ ž" }, { "input": "mitt's", "output": "â â Šâ žâ žâ „â Ž" }, { "input": "mitten", "output": "â â Šâ žâ žâ ¢" }, { "input": "mitten's", "output": "â â Šâ žâ žâ ¢â „â Ž" }, { "input": "mittens", "output": "â â Šâ žâ žâ ¢â Ž" }, { "input": "mitts", "output": "â â Šâ žâ žâ Ž" }, { "input": "mix", "output": "â â Šâ ­" }, { "input": "mix's", "output": "â â Šâ ­â „â Ž" }, { "input": "mixable", "output": "â â Šâ ­â â ¼" }, { "input": "mixed", "output": "â â Šâ ­â «" }, { "input": "mixer", "output": "â â Šâ ­â »" }, { "input": "mixer's", "output": "â â Šâ ­â »â „â Ž" }, { "input": "mixers", "output": "â â Šâ ­â »â Ž" }, { "input": "mixes", "output": "â â Šâ ­â ‘â Ž" }, { "input": "mixing", "output": "â â Šâ ­â Œ" }, { "input": "mixture", "output": "â â Šâ ­â žâ ¥â —â ‘" }, { "input": "mixture's", "output": "â â Šâ ­â žâ ¥â —â ‘â „â Ž" }, { "input": "mixtures", "output": "â â Šâ ­â žâ ¥â —â ‘â Ž" }, { "input": "mizzen", "output": "â â Šâ µâ µâ ¢" }, { "input": "mizzen's", "output": "â â Šâ µâ µâ ¢â „â Ž" }, { "input": "mizzenmast", "output": "â â Šâ µâ µâ ¢â â â Œ" }, { "input": "mizzenmast's", "output": "â â Šâ µâ µâ ¢â â â Œâ „â Ž" }, { "input": "mizzenmasts", "output": "â â Šâ µâ µâ ¢â â â Œâ Ž" }, { "input": "mizzens", "output": "â â Šâ µâ µâ ¢â Ž" }, { "input": "mks", "output": "â â …â Ž" }, { "input": "mnemonic", "output": "â â â ‘â â •â â Šâ ‰" }, { "input": "mnemonic's", "output": "â â â ‘â â •â â Šâ ‰â „â Ž" }, { "input": "mnemonically", "output": "â â â ‘â â •â â Šâ ‰â  â ½" }, { "input": "mnemonics", "output": "â â â ‘â â •â â Šâ ‰â Ž" }, { "input": "moan", "output": "â â •â â " }, { "input": "moan's", "output": "â â •â â â „â Ž" }, { "input": "moaned", "output": "â â •â â â «" }, { "input": "moaning", "output": "â â •â â â Œ" }, { "input": "moans", "output": "â â •â â â Ž" }, { "input": "moat", "output": "â â •â â ž" }, { "input": "moat's", "output": "â â •â â žâ „â Ž" }, { "input": "moats", "output": "â â •â â žâ Ž" }, { "input": "mob", "output": "â â •â ƒ" }, { "input": "mob's", "output": "â â •⠃⠄⠎" }, { "input": "mobbed", "output": "â â •⠆⠫" }, { "input": "mobbing", "output": "â â •⠆⠌" }, { "input": "mobile", "output": "â â •⠃⠊⠇⠑" }, { "input": "mobile's", "output": "â â •⠃⠊⠇⠑⠄⠎" }, { "input": "mobiles", "output": "â â •⠃⠊⠇⠑⠎" }, { "input": "mobility", "output": "â â •⠃⠊⠇⠰⠽" }, { "input": "mobility's", "output": "â â •⠃⠊⠇⠰⠽⠄⠎" }, { "input": "mobilization", "output": "â â •⠃⠊⠇⠊⠵⠠â " }, { "input": "mobilization's", "output": "â â •⠃⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "mobilizations", "output": "â â •⠃⠊⠇⠊⠵⠠â â Ž" }, { "input": "mobilize", "output": "â â •⠃⠊⠇⠊⠵⠑" }, { "input": "mobilized", "output": "â â •⠃⠊⠇⠊⠵⠫" }, { "input": "mobilizer", "output": "â â •⠃⠊⠇⠊⠵⠻" }, { "input": "mobilizer's", "output": "â â •⠃⠊⠇⠊⠵⠻⠄⠎" }, { "input": "mobilizers", "output": "â â •⠃⠊⠇⠊⠵⠻⠎" }, { "input": "mobilizes", "output": "â â •⠃⠊⠇⠊⠵⠑⠎" }, { "input": "mobilizing", "output": "â â •⠃⠊⠇⠊⠵⠌" }, { "input": "mobs", "output": "â â •⠃⠎" }, { "input": "mobster", "output": "â â •⠃⠌⠻" }, { "input": "mobster's", "output": "â â •⠃⠌⠻⠄⠎" }, { "input": "mobsters", "output": "â â •⠃⠌⠻⠎" }, { "input": "moccasin", "output": "â â •â ’â â Žâ ”" }, { "input": "moccasin's", "output": "â â •â ’â â Žâ ”â „â Ž" }, { "input": "moccasins", "output": "â â •â ’â â Žâ ”â Ž" }, { "input": "mocha", "output": "â â •â ¡â " }, { "input": "mocha's", "output": "â â •â ¡â â „â Ž" }, { "input": "mock", "output": "â â •⠉⠅" }, { "input": "mocked", "output": "â â •⠉⠅⠫" }, { "input": "mocker", "output": "â â •⠉⠅⠻" }, { "input": "mocker's", "output": "â â •⠉⠅⠻⠄⠎" }, { "input": "mockeries", "output": "â â •⠉⠅⠻⠊⠑⠎" }, { "input": "mockers", "output": "â â •⠉⠅⠻⠎" }, { "input": "mockery", "output": "â â •⠉⠅⠻⠽" }, { "input": "mockery's", "output": "â â •⠉⠅⠻⠽⠄⠎" }, { "input": "mocking", "output": "â â •⠉⠅⠌" }, { "input": "mockingbird", "output": "â â •⠉⠅⠌⠃⠊⠗⠙" }, { "input": "mockingbird's", "output": "â â •⠉⠅⠌⠃⠊⠗⠙⠄⠎" }, { "input": "mockingbirds", "output": "â â •⠉⠅⠌⠃⠊⠗⠙⠎" }, { "input": "mockingly", "output": "â â •⠉⠅⠌⠇⠽" }, { "input": "mocks", "output": "â â •⠉⠅⠎" }, { "input": "mod", "output": "â â •â ™" }, { "input": "mod's", "output": "â â •⠙⠄⠎" }, { "input": "modal", "output": "â â •â ™â â ‡" }, { "input": "modal's", "output": "â â •â ™â â ‡â „â Ž" }, { "input": "modals", "output": "â â •â ™â â ‡â Ž" }, { "input": "mode", "output": "â â •⠙⠑" }, { "input": "mode's", "output": "â â •⠙⠑⠄⠎" }, { "input": "model", "output": "â â •⠙⠑⠇" }, { "input": "model's", "output": "â â •⠙⠑⠇⠄⠎" }, { "input": "modeled", "output": "â â •⠙⠑⠇⠫" }, { "input": "modeler", "output": "â â •⠙⠑⠇⠻" }, { "input": "modeler's", "output": "â â •⠙⠑⠇⠻⠄⠎" }, { "input": "modelers", "output": "â â •⠙⠑⠇⠻⠎" }, { "input": "modeling", "output": "â â •⠙⠑⠇⠌" }, { "input": "modeling's", "output": "â â •⠙⠑⠇⠌⠄⠎" }, { "input": "modelings", "output": "â â •⠙⠑⠇⠌⠎" }, { "input": "models", "output": "â â •⠙⠑⠇⠎" }, { "input": "modem", "output": "â â •⠙⠑â " }, { "input": "modem's", "output": "â â •⠙⠑â â „â Ž" }, { "input": "modems", "output": "â â •⠙⠑â â Ž" }, { "input": "moderate", "output": "â â •⠙⠻â â žâ ‘" }, { "input": "moderate's", "output": "â â •⠙⠻â â žâ ‘â „â Ž" }, { "input": "moderated", "output": "â â •⠙⠻â â žâ «" }, { "input": "moderately", "output": "â â •⠙⠻â â žâ ‘⠇⠽" }, { "input": "moderateness", "output": "â â •⠙⠻â â žâ ‘â °â Ž" }, { "input": "moderateness's", "output": "â â •⠙⠻â â žâ ‘â °â Žâ „â Ž" }, { "input": "moderates", "output": "â â •⠙⠻â â žâ ‘â Ž" }, { "input": "moderating", "output": "â â •⠙⠻â â žâ Œ" }, { "input": "moderation", "output": "â â •⠙⠻⠠â " }, { "input": "moderation's", "output": "â â •⠙⠻⠠â â „â Ž" }, { "input": "moderator", "output": "â â •⠙⠻â â žâ •â —" }, { "input": "moderator's", "output": "â â •⠙⠻â â žâ •â —â „â Ž" }, { "input": "moderators", "output": "â â •⠙⠻â â žâ •â —â Ž" }, { "input": "modern", "output": "â â •⠙⠻â " }, { "input": "modern's", "output": "â â •⠙⠻â â „â Ž" }, { "input": "modernism", "output": "â â •⠙⠻â â Šâ Žâ " }, { "input": "modernism's", "output": "â â •⠙⠻â â Šâ Žâ â „â Ž" }, { "input": "modernist", "output": "â â •⠙⠻â â Šâ Œ" }, { "input": "modernist's", "output": "â â •⠙⠻â â Šâ Œâ „â Ž" }, { "input": "modernistic", "output": "â â •⠙⠻â â Šâ Œâ Šâ ‰" }, { "input": "modernists", "output": "â â •⠙⠻â â Šâ Œâ Ž" }, { "input": "modernity", "output": "â â •⠙⠻â â °â ½" }, { "input": "modernity's", "output": "â â •⠙⠻â â °â ½â „â Ž" }, { "input": "modernization", "output": "â â •⠙⠻â â Šâ µâ  â " }, { "input": "modernization's", "output": "â â •⠙⠻â â Šâ µâ  â â „â Ž" }, { "input": "modernize", "output": "â â •⠙⠻â â Šâ µâ ‘" }, { "input": "modernized", "output": "â â •⠙⠻â â Šâ µâ «" }, { "input": "modernizer", "output": "â â •⠙⠻â â Šâ µâ »" }, { "input": "modernizer's", "output": "â â •⠙⠻â â Šâ µâ »â „â Ž" }, { "input": "modernizers", "output": "â â •⠙⠻â â Šâ µâ »â Ž" }, { "input": "modernizes", "output": "â â •⠙⠻â â Šâ µâ ‘â Ž" }, { "input": "modernizing", "output": "â â •⠙⠻â â Šâ µâ Œ" }, { "input": "modernly", "output": "â â •⠙⠻â â ‡â ½" }, { "input": "modernness", "output": "â â •⠙⠻â â °â Ž" }, { "input": "modernness's", "output": "â â •⠙⠻â â °â Žâ „â Ž" }, { "input": "moderns", "output": "â â •⠙⠻â â Ž" }, { "input": "modes", "output": "â â •⠙⠑⠎" }, { "input": "modest", "output": "â â •⠙⠑⠌" }, { "input": "modestly", "output": "â â •⠙⠑⠌⠇⠽" }, { "input": "modesty", "output": "â â •⠙⠑⠌⠽" }, { "input": "modesty's", "output": "â â •⠙⠑⠌⠽⠄⠎" }, { "input": "modicum", "output": "â â •⠙⠊⠉⠥â " }, { "input": "modicum's", "output": "â â •⠙⠊⠉⠥â â „â Ž" }, { "input": "modicums", "output": "â â •⠙⠊⠉⠥â â Ž" }, { "input": "modifiable", "output": "â â •⠙⠊⠋⠊â â ¼" }, { "input": "modification", "output": "â â •⠙⠊⠋⠊⠉⠠â " }, { "input": "modification's", "output": "â â •⠙⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "modifications", "output": "â â •⠙⠊⠋⠊⠉⠠â â Ž" }, { "input": "modified", "output": "â â •⠙⠊⠋⠊⠫" }, { "input": "modifier", "output": "â â •⠙⠊⠋⠊⠻" }, { "input": "modifier's", "output": "â â •⠙⠊⠋⠊⠻⠄⠎" }, { "input": "modifiers", "output": "â â •⠙⠊⠋⠊⠻⠎" }, { "input": "modifies", "output": "â â •⠙⠊⠋⠊⠑⠎" }, { "input": "modify", "output": "â â •⠙⠊⠋⠽" }, { "input": "modifying", "output": "â â •⠙⠊⠋⠽⠌" }, { "input": "modish", "output": "â â •⠙⠊⠩" }, { "input": "modishly", "output": "â â •⠙⠊⠩⠇⠽" }, { "input": "modishness", "output": "â â •⠙⠊⠩⠰⠎" }, { "input": "modishness's", "output": "â â •⠙⠊⠩⠰⠎⠄⠎" }, { "input": "mods", "output": "â â •⠙⠎" }, { "input": "modular", "output": "â â •⠙⠥⠇⠜" }, { "input": "modulate", "output": "â â •⠙⠥⠇â â žâ ‘" }, { "input": "modulated", "output": "â â •⠙⠥⠇â â žâ «" }, { "input": "modulates", "output": "â â •⠙⠥⠇â â žâ ‘â Ž" }, { "input": "modulating", "output": "â â •⠙⠥⠇â â žâ Œ" }, { "input": "modulation", "output": "â â •⠙⠥⠇⠠â " }, { "input": "modulation's", "output": "â â •⠙⠥⠇⠠â â „â Ž" }, { "input": "modulations", "output": "â â •⠙⠥⠇⠠â â Ž" }, { "input": "modulator", "output": "â â •⠙⠥⠇â â žâ •â —" }, { "input": "modulator's", "output": "â â •⠙⠥⠇â â žâ •â —â „â Ž" }, { "input": "modulators", "output": "â â •⠙⠥⠇â â žâ •â —â Ž" }, { "input": "module", "output": "â â •⠙⠥⠇⠑" }, { "input": "module's", "output": "â â •⠙⠥⠇⠑⠄⠎" }, { "input": "modules", "output": "â â •⠙⠥⠇⠑⠎" }, { "input": "modulus", "output": "â â •⠙⠥⠇⠥⠎" }, { "input": "moggy", "output": "â â •â ¶â ½" }, { "input": "mogul", "output": "â â •⠛⠥⠇" }, { "input": "mogul's", "output": "â â •⠛⠥⠇⠄⠎" }, { "input": "moguls", "output": "â â •⠛⠥⠇⠎" }, { "input": "mohair", "output": "â â •â “â â Šâ —" }, { "input": "mohair's", "output": "â â •â “â â Šâ —â „â Ž" }, { "input": "moieties", "output": "â â •â Šâ ‘â žâ Šâ ‘â Ž" }, { "input": "moiety", "output": "â â •â Šâ ‘â žâ ½" }, { "input": "moiety's", "output": "â â •⠊⠑⠞⠽⠄⠎" }, { "input": "moil", "output": "â â •â Šâ ‡" }, { "input": "moil's", "output": "â â •⠊⠇⠄⠎" }, { "input": "moiled", "output": "â â •⠊⠇⠫" }, { "input": "moiling", "output": "â â •⠊⠇⠌" }, { "input": "moils", "output": "â â •⠊⠇⠎" }, { "input": "moire", "output": "â â •â Šâ —â ‘" }, { "input": "moire's", "output": "â â •â Šâ —â ‘â „â Ž" }, { "input": "moires", "output": "â â •â Šâ —â ‘â Ž" }, { "input": "moist", "output": "â â •â Šâ Œ" }, { "input": "moisten", "output": "â â •⠊⠌⠢" }, { "input": "moistened", "output": "â â •⠊⠌⠢⠫" }, { "input": "moistener", "output": "â â •⠊⠌⠢⠻" }, { "input": "moistener's", "output": "â â •⠊⠌⠢⠻⠄⠎" }, { "input": "moisteners", "output": "â â •⠊⠌⠢⠻⠎" }, { "input": "moistening", "output": "â â •⠊⠌⠢⠌" }, { "input": "moistens", "output": "â â •⠊⠌⠢⠎" }, { "input": "moister", "output": "â â •⠊⠌⠻" }, { "input": "moistest", "output": "â â •⠊⠌⠑⠌" }, { "input": "moistly", "output": "â â •⠊⠌⠇⠽" }, { "input": "moistness", "output": "â â •⠊⠌⠰⠎" }, { "input": "moistness's", "output": "â â •⠊⠌⠰⠎⠄⠎" }, { "input": "moisture", "output": "â â •⠊⠌⠥⠗⠑" }, { "input": "moisture's", "output": "â â •⠊⠌⠥⠗⠑⠄⠎" }, { "input": "moisturize", "output": "â â •⠊⠌⠥⠗⠊⠵⠑" }, { "input": "moisturized", "output": "â â •⠊⠌⠥⠗⠊⠵⠫" }, { "input": "moisturizer", "output": "â â •⠊⠌⠥⠗⠊⠵⠻" }, { "input": "moisturizer's", "output": "â â •⠊⠌⠥⠗⠊⠵⠻⠄⠎" }, { "input": "moisturizers", "output": "â â •⠊⠌⠥⠗⠊⠵⠻⠎" }, { "input": "moisturizes", "output": "â â •⠊⠌⠥⠗⠊⠵⠑⠎" }, { "input": "moisturizing", "output": "â â •⠊⠌⠥⠗⠊⠵⠌" }, { "input": "molar", "output": "â â •⠇⠜" }, { "input": "molar's", "output": "â â •⠇⠜⠄⠎" }, { "input": "molars", "output": "â â •⠇⠜⠎" }, { "input": "molasses", "output": "â â •â ‡â â Žâ Žâ ‘â Ž" }, { "input": "molasses's", "output": "â â •â ‡â â Žâ Žâ ‘â Žâ „â Ž" }, { "input": "mold", "output": "â â •⠇⠙" }, { "input": "mold's", "output": "â â •⠇⠙⠄⠎" }, { "input": "moldboard", "output": "â â •⠇⠙⠃⠕⠜⠙" }, { "input": "moldboard's", "output": "â â •⠇⠙⠃⠕⠜⠙⠄⠎" }, { "input": "moldboards", "output": "â â •⠇⠙⠃⠕⠜⠙⠎" }, { "input": "molded", "output": "â â •⠇⠙⠫" }, { "input": "molder", "output": "â â •⠇⠙⠻" }, { "input": "molder's", "output": "â â •⠇⠙⠻⠄⠎" }, { "input": "moldered", "output": "â â •⠇⠙⠻⠫" }, { "input": "moldering", "output": "â â •⠇⠙⠻⠌" }, { "input": "molders", "output": "â â •⠇⠙⠻⠎" }, { "input": "moldier", "output": "â â •⠇⠙⠊⠻" }, { "input": "moldiest", "output": "â â •⠇⠙⠊⠑⠌" }, { "input": "moldiness", "output": "â â •⠇⠙⠊⠰⠎" }, { "input": "moldiness's", "output": "â â •⠇⠙⠊⠰⠎⠄⠎" }, { "input": "molding", "output": "â â •⠇⠙⠌" }, { "input": "molding's", "output": "â â •⠇⠙⠌⠄⠎" }, { "input": "moldings", "output": "â â •⠇⠙⠌⠎" }, { "input": "molds", "output": "â â •⠇⠙⠎" }, { "input": "moldy", "output": "â â •⠇⠙⠽" }, { "input": "mole", "output": "â â •⠇⠑" }, { "input": "mole's", "output": "â â •⠇⠑⠄⠎" }, { "input": "molecular", "output": "â â •⠇⠑⠉⠥⠇⠜" }, { "input": "molecularity", "output": "â â •⠇⠑⠉⠥⠇⠜⠰⠽" }, { "input": "molecularity's", "output": "â â •⠇⠑⠉⠥⠇⠜⠰⠽⠄⠎" }, { "input": "molecule", "output": "â â •⠇⠑⠉⠥⠇⠑" }, { "input": "molecule's", "output": "â â •⠇⠑⠉⠥⠇⠑⠄⠎" }, { "input": "molecules", "output": "â â •⠇⠑⠉⠥⠇⠑⠎" }, { "input": "molehill", "output": "â â •⠇⠑⠓⠊⠇⠇" }, { "input": "molehill's", "output": "â â •⠇⠑⠓⠊⠇⠇⠄⠎" }, { "input": "molehills", "output": "â â •⠇⠑⠓⠊⠇⠇⠎" }, { "input": "moles", "output": "â â •⠇⠑⠎" }, { "input": "moleskin", "output": "â â •⠇⠑⠎⠅⠔" }, { "input": "moleskin's", "output": "â â •⠇⠑⠎⠅⠔⠄⠎" }, { "input": "molest", "output": "â â •⠇⠑⠌" }, { "input": "molestation", "output": "â â •⠇⠑⠌⠠â " }, { "input": "molestation's", "output": "â â •⠇⠑⠌⠠â â „â Ž" }, { "input": "molested", "output": "â â •⠇⠑⠌⠫" }, { "input": "molester", "output": "â â •⠇⠑⠌⠻" }, { "input": "molester's", "output": "â â •⠇⠑⠌⠻⠄⠎" }, { "input": "molesters", "output": "â â •⠇⠑⠌⠻⠎" }, { "input": "molesting", "output": "â â •⠇⠑⠌⠌" }, { "input": "molests", "output": "â â •⠇⠑⠌⠎" }, { "input": "moll", "output": "â â •⠇⠇" }, { "input": "moll's", "output": "â â •⠇⠇⠄⠎" }, { "input": "mollies", "output": "â â •⠇⠇⠊⠑⠎" }, { "input": "mollification", "output": "â â •⠇⠇⠊⠋⠊⠉⠠â " }, { "input": "mollification's", "output": "â â •⠇⠇⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "mollified", "output": "â â •⠇⠇⠊⠋⠊⠫" }, { "input": "mollifies", "output": "â â •⠇⠇⠊⠋⠊⠑⠎" }, { "input": "mollify", "output": "â â •⠇⠇⠊⠋⠽" }, { "input": "mollifying", "output": "â â •⠇⠇⠊⠋⠽⠌" }, { "input": "molls", "output": "â â •⠇⠇⠎" }, { "input": "molluscan", "output": "â â •⠇⠇⠥⠎⠉â â " }, { "input": "mollusk", "output": "â â •⠇⠇⠥⠎⠅" }, { "input": "mollusk's", "output": "â â •⠇⠇⠥⠎⠅⠄⠎" }, { "input": "mollusks", "output": "â â •⠇⠇⠥⠎⠅⠎" }, { "input": "molly", "output": "â â •⠇⠇⠽" }, { "input": "molly's", "output": "â â •⠇⠇⠽⠄⠎" }, { "input": "mollycoddle", "output": "â â •⠇⠇⠽⠉⠕⠲⠇⠑" }, { "input": "mollycoddle's", "output": "â â •⠇⠇⠽⠉⠕⠲⠇⠑⠄⠎" }, { "input": "mollycoddled", "output": "â â •⠇⠇⠽⠉⠕⠲⠇⠫" }, { "input": "mollycoddles", "output": "â â •⠇⠇⠽⠉⠕⠲⠇⠑⠎" }, { "input": "mollycoddling", "output": "â â •⠇⠇⠽⠉⠕⠲⠇⠌" }, { "input": "molt", "output": "â â •⠇⠞" }, { "input": "molt's", "output": "â â •⠇⠞⠄⠎" }, { "input": "molted", "output": "â â •⠇⠞⠫" }, { "input": "molten", "output": "â â •⠇⠞⠢" }, { "input": "molter", "output": "â â •⠇⠞⠻" }, { "input": "molter's", "output": "â â •⠇⠞⠻⠄⠎" }, { "input": "molters", "output": "â â •⠇⠞⠻⠎" }, { "input": "molting", "output": "â â •⠇⠞⠌" }, { "input": "molts", "output": "â â •⠇⠞⠎" }, { "input": "molybdenum", "output": "â â •⠇⠽⠃⠙⠢⠥â " }, { "input": "molybdenum's", "output": "â â •⠇⠽⠃⠙⠢⠥â â „â Ž" }, { "input": "mom", "output": "â â •â " }, { "input": "mom's", "output": "â â •â â „â Ž" }, { "input": "moment", "output": "â â •â °â ž" }, { "input": "moment's", "output": "â â •â °â žâ „â Ž" }, { "input": "momenta", "output": "â â •â °â žâ " }, { "input": "momentarily", "output": "â â •⠰⠞⠜⠊⠇⠽" }, { "input": "momentariness", "output": "â â •⠰⠞⠜⠊⠰⠎" }, { "input": "momentariness's", "output": "â â •⠰⠞⠜⠊⠰⠎⠄⠎" }, { "input": "momentary", "output": "â â •⠰⠞⠜⠽" }, { "input": "momentous", "output": "â â •⠰⠞⠳⠎" }, { "input": "momentously", "output": "â â •⠰⠞⠳⠎⠇⠽" }, { "input": "momentousness", "output": "â â •⠰⠞⠳⠎⠰⠎" }, { "input": "momentousness's", "output": "â â •⠰⠞⠳⠎⠰⠎⠄⠎" }, { "input": "moments", "output": "â â •â °â žâ Ž" }, { "input": "momentum", "output": "â â •â °â žâ ¥â " }, { "input": "momentum's", "output": "â â •â °â žâ ¥â â „â Ž" }, { "input": "mommies", "output": "â â •â â â Šâ ‘â Ž" }, { "input": "mommy", "output": "â â •â â â ½" }, { "input": "mommy's", "output": "â â •â â â ½â „â Ž" }, { "input": "moms", "output": "â â •â â Ž" }, { "input": "monarch", "output": "â â •â â œâ ¡" }, { "input": "monarch's", "output": "â â •â â œâ ¡â „â Ž" }, { "input": "monarchic", "output": "â â •â â œâ ¡â Šâ ‰" }, { "input": "monarchical", "output": "â â •â â œâ ¡â Šâ ‰â â ‡" }, { "input": "monarchies", "output": "â â •â â œâ ¡â Šâ ‘â Ž" }, { "input": "monarchism", "output": "â â •â â œâ ¡â Šâ Žâ " }, { "input": "monarchism's", "output": "â â •â â œâ ¡â Šâ Žâ â „â Ž" }, { "input": "monarchist", "output": "â â •â â œâ ¡â Šâ Œ" }, { "input": "monarchist's", "output": "â â •â â œâ ¡â Šâ Œâ „â Ž" }, { "input": "monarchistic", "output": "â â •â â œâ ¡â Šâ Œâ Šâ ‰" }, { "input": "monarchists", "output": "â â •â â œâ ¡â Šâ Œâ Ž" }, { "input": "monarchs", "output": "â â •â â œâ ¡â Ž" }, { "input": "monarchy", "output": "â â •â â œâ ¡â ½" }, { "input": "monarchy's", "output": "â â •â â œâ ¡â ½â „â Ž" }, { "input": "monasteries", "output": "â â •â â â Œâ »â Šâ ‘â Ž" }, { "input": "monastery", "output": "â â •â â â Œâ »â ½" }, { "input": "monastery's", "output": "â â •â â â Œâ »â ½â „â Ž" }, { "input": "monastic", "output": "â â •â â â Œâ Šâ ‰" }, { "input": "monastic's", "output": "â â •â â â Œâ Šâ ‰â „â Ž" }, { "input": "monastical", "output": "â â •â â â Œâ Šâ ‰â â ‡" }, { "input": "monastically", "output": "â â •â â â Œâ Šâ ‰â  â ½" }, { "input": "monasticism", "output": "â â •â â â Œâ Šâ ‰â Šâ Žâ " }, { "input": "monasticism's", "output": "â â •â â â Œâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "monastics", "output": "â â •â â â Œâ Šâ ‰â Ž" }, { "input": "monaural", "output": "â â •â â â ¥â —â â ‡" }, { "input": "monetarily", "output": "â â â •⠞⠜⠊⠇⠽" }, { "input": "monetarism", "output": "â â â •⠞⠜⠊⠎â " }, { "input": "monetarism's", "output": "â â â •⠞⠜⠊⠎â â „â Ž" }, { "input": "monetary", "output": "â â â •⠞⠜⠽" }, { "input": "monetize", "output": "â â â •⠞⠊⠵⠑" }, { "input": "monetized", "output": "â â â •⠞⠊⠵⠫" }, { "input": "monetizes", "output": "â â â •⠞⠊⠵⠑⠎" }, { "input": "monetizing", "output": "â â â •⠞⠊⠵⠌" }, { "input": "money", "output": "â â â •â ½" }, { "input": "money's", "output": "â â â •⠽⠄⠎" }, { "input": "moneybag", "output": "â â â •⠽⠃â â ›" }, { "input": "moneybag's", "output": "â â â •⠽⠃â â ›â „â Ž" }, { "input": "moneybags", "output": "â â â •⠽⠃â â ›â Ž" }, { "input": "moneyed", "output": "â â â •⠽⠫" }, { "input": "moneymaker", "output": "â â â •â ½â â â …â »" }, { "input": "moneymaker's", "output": "â â â •â ½â â â …⠻⠄⠎" }, { "input": "moneymakers", "output": "â â â •â ½â â â …⠻⠎" }, { "input": "moneymaking", "output": "â â â •â ½â â â …â Œ" }, { "input": "moneymaking's", "output": "â â â •â ½â â â …⠌⠄⠎" }, { "input": "monger", "output": "â â °â ›â »" }, { "input": "monger's", "output": "â â °â ›â »â „â Ž" }, { "input": "mongered", "output": "â â °â ›â »â «" }, { "input": "mongering", "output": "â â °â ›â »â Œ" }, { "input": "mongers", "output": "â â °â ›â »â Ž" }, { "input": "mongolism", "output": "â â °â ›â •⠇⠊⠎â " }, { "input": "mongolism's", "output": "â â °â ›â •⠇⠊⠎â â „â Ž" }, { "input": "mongoloid", "output": "â â °â ›â •⠇⠕⠊⠙" }, { "input": "mongoloid's", "output": "â â °â ›â •⠇⠕⠊⠙⠄⠎" }, { "input": "mongoloids", "output": "â â °â ›â •⠇⠕⠊⠙⠎" }, { "input": "mongoose", "output": "â â •â â ›â •â •â Žâ ‘" }, { "input": "mongoose's", "output": "â â •â â ›â •â •â Žâ ‘â „â Ž" }, { "input": "mongooses", "output": "â â •â â ›â •â •â Žâ ‘â Ž" }, { "input": "mongrel", "output": "â â °â ›â —â ‘â ‡" }, { "input": "mongrel's", "output": "â â °â ›â —⠑⠇⠄⠎" }, { "input": "mongrels", "output": "â â °â ›â —⠑⠇⠎" }, { "input": "monies", "output": "â â •â â Šâ ‘â Ž" }, { "input": "moniker", "output": "â â •â â Šâ …â »" }, { "input": "moniker's", "output": "â â •â â Šâ …⠻⠄⠎" }, { "input": "monikers", "output": "â â •â â Šâ …⠻⠎" }, { "input": "monism", "output": "â â •â â Šâ Žâ " }, { "input": "monism's", "output": "â â •â â Šâ Žâ â „â Ž" }, { "input": "monist", "output": "â â •â â Šâ Œ" }, { "input": "monist's", "output": "â â •â â Šâ Œâ „â Ž" }, { "input": "monists", "output": "â â •â â Šâ Œâ Ž" }, { "input": "monition", "output": "â â •â â Šâ °â " }, { "input": "monition's", "output": "â â •â â Šâ °â â „â Ž" }, { "input": "monitions", "output": "â â •â â Šâ °â â Ž" }, { "input": "monitor", "output": "â â •â â Šâ žâ •â —" }, { "input": "monitor's", "output": "â â •â â Šâ žâ •â —â „â Ž" }, { "input": "monitored", "output": "â â •â â Šâ žâ •â —â «" }, { "input": "monitoring", "output": "â â •â â Šâ žâ •â —â Œ" }, { "input": "monitors", "output": "â â •â â Šâ žâ •â —â Ž" }, { "input": "monitory", "output": "â â •â â Šâ žâ •â —â ½" }, { "input": "monk", "output": "â â •â â …" }, { "input": "monk's", "output": "â â •â â …â „â Ž" }, { "input": "monkey", "output": "â â •â â …â ‘â ½" }, { "input": "monkey's", "output": "â â •â â …⠑⠽⠄⠎" }, { "input": "monkeyed", "output": "â â •â â …⠑⠽⠫" }, { "input": "monkeying", "output": "â â •â â …⠑⠽⠌" }, { "input": "monkeys", "output": "â â •â â …⠑⠽⠎" }, { "input": "monkeyshine", "output": "â â •â â …⠑⠽⠩⠔⠑" }, { "input": "monkeyshine's", "output": "â â •â â …⠑⠽⠩⠔⠑⠄⠎" }, { "input": "monkeyshines", "output": "â â •â â …⠑⠽⠩⠔⠑⠎" }, { "input": "monkish", "output": "â â •â â …â Šâ ©" }, { "input": "monks", "output": "â â •â â …â Ž" }, { "input": "monkshood", "output": "â â •â â …â Žâ “â •â •â ™" }, { "input": "monkshood's", "output": "â â •â â …⠎⠓⠕⠕⠙⠄⠎" }, { "input": "monkshoods", "output": "â â •â â …⠎⠓⠕⠕⠙⠎" }, { "input": "mono", "output": "â â •â â •" }, { "input": "mono's", "output": "â â •â â •â „â Ž" }, { "input": "monochromatic", "output": "â â •â â •â ¡â —â •â â â žâ Šâ ‰" }, { "input": "monochrome", "output": "â â •â â •â ¡â —â •â â ‘" }, { "input": "monochrome's", "output": "â â •â â •â ¡â —â •â â ‘â „â Ž" }, { "input": "monochromes", "output": "â â •â â •â ¡â —â •â â ‘â Ž" }, { "input": "monocle", "output": "â â •â â •⠉⠇⠑" }, { "input": "monocle's", "output": "â â •â â •⠉⠇⠑⠄⠎" }, { "input": "monocled", "output": "â â •â â •⠉⠇⠫" }, { "input": "monocles", "output": "â â •â â •⠉⠇⠑⠎" }, { "input": "monoclonal", "output": "â â •â â •⠉⠇⠕â â â ‡" }, { "input": "monocotyledon", "output": "â â •â â •⠉⠕⠞⠽⠇⠫⠕â " }, { "input": "monocotyledon's", "output": "â â •â â •⠉⠕⠞⠽⠇⠫⠕â â „â Ž" }, { "input": "monocotyledonous", "output": "â â •â â •⠉⠕⠞⠽⠇⠫⠕â â ³â Ž" }, { "input": "monocotyledons", "output": "â â •â â •⠉⠕⠞⠽⠇⠫⠕â â Ž" }, { "input": "monocular", "output": "â â •â â •⠉⠥⠇⠜" }, { "input": "monodic", "output": "â â •â â •⠙⠊⠉" }, { "input": "monodies", "output": "â â •â â •⠙⠊⠑⠎" }, { "input": "monodist", "output": "â â •â â •⠙⠊⠌" }, { "input": "monodist's", "output": "â â •â â •⠙⠊⠌⠄⠎" }, { "input": "monodists", "output": "â â •â â •⠙⠊⠌⠎" }, { "input": "monody", "output": "â â •â â •⠙⠽" }, { "input": "monody's", "output": "â â •â â •⠙⠽⠄⠎" }, { "input": "monogamist", "output": "â â •â â •â ›â â â Šâ Œ" }, { "input": "monogamist's", "output": "â â •â â •â ›â â â Šâ Œâ „â Ž" }, { "input": "monogamists", "output": "â â •â â •â ›â â â Šâ Œâ Ž" }, { "input": "monogamous", "output": "â â •â â •â ›â â â ³â Ž" }, { "input": "monogamously", "output": "â â •â â •â ›â â â ³â Žâ ‡â ½" }, { "input": "monogamy", "output": "â â •â â •â ›â â â ½" }, { "input": "monogamy's", "output": "â â •â â •â ›â â â ½â „â Ž" }, { "input": "monogram", "output": "â â •â â •⠛⠗â â " }, { "input": "monogram's", "output": "â â •â â •⠛⠗â â â „â Ž" }, { "input": "monogrammed", "output": "â â •â â •⠛⠗â â â â «" }, { "input": "monogramming", "output": "â â •â â •⠛⠗â â â â Œ" }, { "input": "monograms", "output": "â â •â â •⠛⠗â â â Ž" }, { "input": "monograph", "output": "â â •â â •⠛⠗â â â “" }, { "input": "monograph's", "output": "â â •â â •⠛⠗â â â “â „â Ž" }, { "input": "monographs", "output": "â â •â â •⠛⠗â â â “â Ž" }, { "input": "monolingual", "output": "â â •â â •⠇⠌⠥â â ‡" }, { "input": "monolingual's", "output": "â â •â â •⠇⠌⠥â â ‡â „â Ž" }, { "input": "monolinguals", "output": "â â •â â •⠇⠌⠥â â ‡â Ž" }, { "input": "monolith", "output": "â â •â â •⠇⠊⠹" }, { "input": "monolith's", "output": "â â •â â •⠇⠊⠹⠄⠎" }, { "input": "monolithic", "output": "â â •â â •⠇⠊⠹⠊⠉" }, { "input": "monoliths", "output": "â â •â â •⠇⠊⠹⠎" }, { "input": "monologist", "output": "â â •â â •⠇⠕⠛⠊⠌" }, { "input": "monologist's", "output": "â â •â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "monologists", "output": "â â •â â •⠇⠕⠛⠊⠌⠎" }, { "input": "monologue", "output": "â â •â â •⠇⠕⠛⠥⠑" }, { "input": "monologue's", "output": "â â •â â •⠇⠕⠛⠥⠑⠄⠎" }, { "input": "monologues", "output": "â â •â â •⠇⠕⠛⠥⠑⠎" }, { "input": "monomania", "output": "â â •â â •â â â â Šâ " }, { "input": "monomania's", "output": "â â •â â •â â â â Šâ â „â Ž" }, { "input": "monomaniac", "output": "â â •â â •â â â â Šâ â ‰" }, { "input": "monomaniac's", "output": "â â •â â •â â â â Šâ â ‰â „â Ž" }, { "input": "monomaniacal", "output": "â â •â â •â â â â Šâ â ‰â â ‡" }, { "input": "monomaniacs", "output": "â â •â â •â â â â Šâ â ‰â Ž" }, { "input": "monomer", "output": "â â •â â •â â »" }, { "input": "monomer's", "output": "â â •â â •â â »â „â Ž" }, { "input": "monomers", "output": "â â •â â •â â »â Ž" }, { "input": "mononucleosis", "output": "â â •â â •â â ¥â ‰â ‡â ‘â •â Žâ Šâ Ž" }, { "input": "mononucleosis's", "output": "â â •â â •â â ¥â ‰â ‡â ‘â •â Žâ Šâ Žâ „â Ž" }, { "input": "monophonic", "output": "â â •â â •â â “â •â â Šâ ‰" }, { "input": "monopolies", "output": "â â •â â •â â •⠇⠊⠑⠎" }, { "input": "monopolist", "output": "â â •â â •â â •⠇⠊⠌" }, { "input": "monopolist's", "output": "â â •â â •â â •⠇⠊⠌⠄⠎" }, { "input": "monopolistic", "output": "â â •â â •â â •⠇⠊⠌⠊⠉" }, { "input": "monopolists", "output": "â â •â â •â â •⠇⠊⠌⠎" }, { "input": "monopolization", "output": "â â •â â •â â •⠇⠊⠵⠠â " }, { "input": "monopolization's", "output": "â â •â â •â â •⠇⠊⠵⠠â â „â Ž" }, { "input": "monopolize", "output": "â â •â â •â â •⠇⠊⠵⠑" }, { "input": "monopolized", "output": "â â •â â •â â •⠇⠊⠵⠫" }, { "input": "monopolizer", "output": "â â •â â •â â •⠇⠊⠵⠻" }, { "input": "monopolizer's", "output": "â â •â â •â â •⠇⠊⠵⠻⠄⠎" }, { "input": "monopolizers", "output": "â â •â â •â â •⠇⠊⠵⠻⠎" }, { "input": "monopolizes", "output": "â â •â â •â â •⠇⠊⠵⠑⠎" }, { "input": "monopolizing", "output": "â â •â â •â â •⠇⠊⠵⠌" }, { "input": "monopoly", "output": "â â •â â •â â •⠇⠽" }, { "input": "monopoly's", "output": "â â •â â •â â •⠇⠽⠄⠎" }, { "input": "monorail", "output": "â â •â â •â —â â Šâ ‡" }, { "input": "monorail's", "output": "â â •â â •â —â â Šâ ‡â „â Ž" }, { "input": "monorails", "output": "â â •â â •â —â â Šâ ‡â Ž" }, { "input": "monosyllabic", "output": "â â •â â •⠎⠽⠇⠇â â ƒâ Šâ ‰" }, { "input": "monosyllable", "output": "â â •â â •⠎⠽⠇⠇â â ¼" }, { "input": "monosyllable's", "output": "â â •â â •⠎⠽⠇⠇â â ¼â „â Ž" }, { "input": "monosyllables", "output": "â â •â â •⠎⠽⠇⠇â â ¼â Ž" }, { "input": "monotheism", "output": "â â •â â •⠮⠊⠎â " }, { "input": "monotheism's", "output": "â â •â â •⠮⠊⠎â â „â Ž" }, { "input": "monotheist", "output": "â â •â â •⠮⠊⠌" }, { "input": "monotheist's", "output": "â â •â â •⠮⠊⠌⠄⠎" }, { "input": "monotheistic", "output": "â â •â â •⠮⠊⠌⠊⠉" }, { "input": "monotheists", "output": "â â •â â •⠮⠊⠌⠎" }, { "input": "monotone", "output": "â â •â â •â žâ â •" }, { "input": "monotone's", "output": "â â •â â •â žâ â •â „â Ž" }, { "input": "monotones", "output": "â â •â â •â žâ â •â Ž" }, { "input": "monotonic", "output": "â â •â â •â žâ •â â Šâ ‰" }, { "input": "monotonically", "output": "â â •â â •â žâ •â â Šâ ‰â  â ½" }, { "input": "monotonous", "output": "â â •â â •â žâ •â â ³â Ž" }, { "input": "monotonously", "output": "â â •â â •â žâ •â â ³â Žâ ‡â ½" }, { "input": "monotonousness", "output": "â â •â â •â žâ •â â ³â Žâ °â Ž" }, { "input": "monotonousness's", "output": "â â •â â •â žâ •â â ³â Žâ °â Žâ „â Ž" }, { "input": "monotony", "output": "â â •â â •â žâ •â â ½" }, { "input": "monotony's", "output": "â â •â â •â žâ •â â ½â „â Ž" }, { "input": "monounsaturated", "output": "â â •â â •â ¥â â Žâ â žâ ¥â —â â žâ «" }, { "input": "monoxide", "output": "â â •â â •⠭⠊⠙⠑" }, { "input": "monoxide's", "output": "â â •â â •⠭⠊⠙⠑⠄⠎" }, { "input": "monoxides", "output": "â â •â â •⠭⠊⠙⠑⠎" }, { "input": "monseigneur", "output": "â â •â â Žâ ‘â Šâ ›â â ‘⠥⠗" }, { "input": "monseigneur's", "output": "â â •â â Žâ ‘â Šâ ›â â ‘⠥⠗⠄⠎" }, { "input": "monsieur", "output": "â â •â â Žâ Šâ ‘⠥⠗" }, { "input": "monsieur's", "output": "â â •â â Žâ Šâ ‘⠥⠗⠄⠎" }, { "input": "monsignor", "output": "â â •â â Žâ Šâ ›â â •â —" }, { "input": "monsignor's", "output": "â â •â â Žâ Šâ ›â â •â —â „â Ž" }, { "input": "monsignors", "output": "â â •â â Žâ Šâ ›â â •â —â Ž" }, { "input": "monsoon", "output": "â â •â â Žâ •â •â " }, { "input": "monsoon's", "output": "â â •â â Žâ •â •â â „â Ž" }, { "input": "monsoonal", "output": "â â •â â Žâ •â •â â â ‡" }, { "input": "monsoons", "output": "â â •â â Žâ •â •â â Ž" }, { "input": "monster", "output": "â â •â â Œâ »" }, { "input": "monster's", "output": "â â •â â Œâ »â „â Ž" }, { "input": "monsters", "output": "â â •â â Œâ »â Ž" }, { "input": "monstrance", "output": "â â •â â Œâ —⠨⠑" }, { "input": "monstrance's", "output": "â â •â â Œâ —⠨⠑⠄⠎" }, { "input": "monstrances", "output": "â â •â â Œâ —⠨⠑⠎" }, { "input": "monstrosities", "output": "â â •â â Œâ —â •â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "monstrosity", "output": "â â •â â Œâ —â •â Žâ °â ½" }, { "input": "monstrosity's", "output": "â â •â â Œâ —⠕⠎⠰⠽⠄⠎" }, { "input": "monstrous", "output": "â â •â â Œâ —⠳⠎" }, { "input": "monstrously", "output": "â â •â â Œâ —⠳⠎⠇⠽" }, { "input": "montage", "output": "â â •â â žâ â ›â ‘" }, { "input": "montage's", "output": "â â •â â žâ â ›â ‘â „â Ž" }, { "input": "montages", "output": "â â •â â žâ â ›â ‘â Ž" }, { "input": "month", "output": "â â •â â ¹" }, { "input": "month's", "output": "â â •â â ¹â „â Ž" }, { "input": "monthlies", "output": "â â •â â ¹â ‡â Šâ ‘â Ž" }, { "input": "monthly", "output": "â â •â â ¹â ‡â ½" }, { "input": "monthly's", "output": "â â •â â ¹â ‡â ½â „â Ž" }, { "input": "months", "output": "â â •â â ¹â Ž" }, { "input": "monument", "output": "â â •â â ¥â °â ž" }, { "input": "monument's", "output": "â â •â â ¥â °â žâ „â Ž" }, { "input": "monumental", "output": "â â •â â ¥â °â žâ â ‡" }, { "input": "monumentally", "output": "â â •â â ¥â °â žâ  â ½" }, { "input": "monuments", "output": "â â •â â ¥â °â žâ Ž" }, { "input": "moo", "output": "â â •â •" }, { "input": "moo's", "output": "â â •â •â „â Ž" }, { "input": "mooch", "output": "â â •â •â ¡" }, { "input": "mooch's", "output": "â â •â •â ¡â „â Ž" }, { "input": "mooched", "output": "â â •â •â ¡â «" }, { "input": "moocher", "output": "â â •â •â ¡â »" }, { "input": "moocher's", "output": "â â •⠕⠡⠻⠄⠎" }, { "input": "moochers", "output": "â â •⠕⠡⠻⠎" }, { "input": "mooches", "output": "â â •â •â ¡â ‘â Ž" }, { "input": "mooching", "output": "â â •â •â ¡â Œ" }, { "input": "mood", "output": "â â •â •â ™" }, { "input": "mood's", "output": "â â •⠕⠙⠄⠎" }, { "input": "moodier", "output": "â â •⠕⠙⠊⠻" }, { "input": "moodiest", "output": "â â •⠕⠙⠊⠑⠌" }, { "input": "moodily", "output": "â â •⠕⠙⠊⠇⠽" }, { "input": "moodiness", "output": "â â •⠕⠙⠊⠰⠎" }, { "input": "moodiness's", "output": "â â •⠕⠙⠊⠰⠎⠄⠎" }, { "input": "moods", "output": "â â •⠕⠙⠎" }, { "input": "moody", "output": "â â •⠕⠙⠽" }, { "input": "mooed", "output": "â â •â •â «" }, { "input": "mooing", "output": "â â •â •â Œ" }, { "input": "moon", "output": "â â •â •â " }, { "input": "moon's", "output": "â â •â •â â „â Ž" }, { "input": "moonbeam", "output": "â â •â •â â ƒâ ‚â " }, { "input": "moonbeam's", "output": "â â •â •â â ƒâ ‚â â „â Ž" }, { "input": "moonbeams", "output": "â â •â •â â ƒâ ‚â â Ž" }, { "input": "mooned", "output": "â â •â •â â «" }, { "input": "mooning", "output": "â â •â •â â Œ" }, { "input": "moonlight", "output": "â â •â •â â ‡â Šâ £â ž" }, { "input": "moonlight's", "output": "â â •â •â â ‡â Šâ £â žâ „â Ž" }, { "input": "moonlighted", "output": "â â •â •â â ‡â Šâ £â žâ «" }, { "input": "moonlighter", "output": "â â •â •â â ‡â Šâ £â žâ »" }, { "input": "moonlighter's", "output": "â â •â •â â ‡â Šâ £â žâ »â „â Ž" }, { "input": "moonlighters", "output": "â â •â •â â ‡â Šâ £â žâ »â Ž" }, { "input": "moonlighting", "output": "â â •â •â â ‡â Šâ £â žâ Œ" }, { "input": "moonlighting's", "output": "â â •â •â â ‡â Šâ £â žâ Œâ „â Ž" }, { "input": "moonlights", "output": "â â •â •â â ‡â Šâ £â žâ Ž" }, { "input": "moonlit", "output": "â â •â •â â ‡â Šâ ž" }, { "input": "moons", "output": "â â •â •â â Ž" }, { "input": "moonscape", "output": "â â •â •â â Žâ ‰â â â ‘" }, { "input": "moonscape's", "output": "â â •â •â â Žâ ‰â â â ‘â „â Ž" }, { "input": "moonscapes", "output": "â â •â •â â Žâ ‰â â â ‘â Ž" }, { "input": "moonshine", "output": "â â •â •â â ©â ”â ‘" }, { "input": "moonshine's", "output": "â â •â •â â ©â ”â ‘â „â Ž" }, { "input": "moonshiner", "output": "â â •â •â â ©â ”â »" }, { "input": "moonshiner's", "output": "â â •â •â â ©â ”⠻⠄⠎" }, { "input": "moonshiners", "output": "â â •â •â â ©â ”⠻⠎" }, { "input": "moonshines", "output": "â â •â •â â ©â ”â ‘â Ž" }, { "input": "moonshot", "output": "â â •â •â â ©â •â ž" }, { "input": "moonshot's", "output": "â â •â •â â ©â •â žâ „â Ž" }, { "input": "moonshots", "output": "â â •â •â â ©â •â žâ Ž" }, { "input": "moonstone", "output": "â â •â •â â Œâ â •" }, { "input": "moonstone's", "output": "â â •â •â â Œâ â •â „â Ž" }, { "input": "moonstones", "output": "â â •â •â â Œâ â •â Ž" }, { "input": "moonstruck", "output": "â â •â •â â Œâ —⠥⠉⠅" }, { "input": "moonwalk", "output": "â â •â •â â ºâ â ‡â …" }, { "input": "moonwalk's", "output": "â â •â •â â ºâ â ‡â …â „â Ž" }, { "input": "moonwalks", "output": "â â •â •â â ºâ â ‡â …â Ž" }, { "input": "moor", "output": "â â •â •â —" }, { "input": "moor's", "output": "â â •â •â —â „â Ž" }, { "input": "moored", "output": "â â •â •â —â «" }, { "input": "mooring", "output": "â â •â •â —â Œ" }, { "input": "mooring's", "output": "â â •⠕⠗⠌⠄⠎" }, { "input": "moorings", "output": "â â •⠕⠗⠌⠎" }, { "input": "moorland", "output": "â â •⠕⠗⠇⠯" }, { "input": "moorland's", "output": "â â •⠕⠗⠇⠯⠄⠎" }, { "input": "moors", "output": "â â •â •â —â Ž" }, { "input": "moos", "output": "â â •â •â Ž" }, { "input": "moose", "output": "â â •â •â Žâ ‘" }, { "input": "moose's", "output": "â â •â •â Žâ ‘â „â Ž" }, { "input": "moot", "output": "â â •â •â ž" }, { "input": "mooted", "output": "â â •â •â žâ «" }, { "input": "mooting", "output": "â â •â •â žâ Œ" }, { "input": "moots", "output": "â â •â •â žâ Ž" }, { "input": "mop", "output": "â â •â " }, { "input": "mop's", "output": "â â •â â „â Ž" }, { "input": "mope", "output": "â â •â â ‘" }, { "input": "mope's", "output": "â â •â â ‘â „â Ž" }, { "input": "moped", "output": "â â •â â «" }, { "input": "moped's", "output": "â â •â â «â „â Ž" }, { "input": "mopeds", "output": "â â •â â «â Ž" }, { "input": "moper", "output": "â â •â â »" }, { "input": "moper's", "output": "â â •â â »â „â Ž" }, { "input": "mopers", "output": "â â •â â »â Ž" }, { "input": "mopes", "output": "â â •â â ‘â Ž" }, { "input": "mopey", "output": "â â •â â ‘â ½" }, { "input": "mopier", "output": "â â •â â Šâ »" }, { "input": "mopiest", "output": "â â •â â Šâ ‘â Œ" }, { "input": "moping", "output": "â â •â â Œ" }, { "input": "mopish", "output": "â â •â â Šâ ©" }, { "input": "mopped", "output": "â â •â â â «" }, { "input": "moppet", "output": "â â •â â â ‘â ž" }, { "input": "moppet's", "output": "â â •â â â ‘â žâ „â Ž" }, { "input": "moppets", "output": "â â •â â â ‘â žâ Ž" }, { "input": "mopping", "output": "â â •â â â Œ" }, { "input": "mops", "output": "â â •â â Ž" }, { "input": "moraine", "output": "â â •â —â â ”â ‘" }, { "input": "moraine's", "output": "â â •â —â â ”â ‘â „â Ž" }, { "input": "moraines", "output": "â â •â —â â ”â ‘â Ž" }, { "input": "moral", "output": "â â •â —â â ‡" }, { "input": "moral's", "output": "â â •â —â â ‡â „â Ž" }, { "input": "morale", "output": "â â •â —â â ‡â ‘" }, { "input": "morale's", "output": "â â •â —â â ‡â ‘â „â Ž" }, { "input": "moralist", "output": "â â •â —â â ‡â Šâ Œ" }, { "input": "moralist's", "output": "â â •â —â â ‡â Šâ Œâ „â Ž" }, { "input": "moralistic", "output": "â â •â —â â ‡â Šâ Œâ Šâ ‰" }, { "input": "moralistically", "output": "â â •â —â â ‡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "moralists", "output": "â â •â —â â ‡â Šâ Œâ Ž" }, { "input": "moralities", "output": "â â •â —â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "morality", "output": "â â •â —â â ‡â °â ½" }, { "input": "morality's", "output": "â â •â —â â ‡â °â ½â „â Ž" }, { "input": "moralization", "output": "â â •â —â â ‡â Šâ µâ  â " }, { "input": "moralization's", "output": "â â •â —â â ‡â Šâ µâ  â â „â Ž" }, { "input": "moralize", "output": "â â •â —â â ‡â Šâ µâ ‘" }, { "input": "moralized", "output": "â â •â —â â ‡â Šâ µâ «" }, { "input": "moralizer", "output": "â â •â —â â ‡â Šâ µâ »" }, { "input": "moralizer's", "output": "â â •â —â â ‡â Šâ µâ »â „â Ž" }, { "input": "moralizers", "output": "â â •â —â â ‡â Šâ µâ »â Ž" }, { "input": "moralizes", "output": "â â •â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "moralizing", "output": "â â •â —â â ‡â Šâ µâ Œ" }, { "input": "morally", "output": "â â •â —â  â ½" }, { "input": "morals", "output": "â â •â —â â ‡â Ž" }, { "input": "morass", "output": "â â •â —â â Žâ Ž" }, { "input": "morass's", "output": "â â •â —â â Žâ Žâ „â Ž" }, { "input": "morasses", "output": "â â •â —â â Žâ Žâ ‘â Ž" }, { "input": "moratorium", "output": "â â •â —â â žâ •â —â Šâ ¥â " }, { "input": "moratorium's", "output": "â â •â —â â žâ •â —â Šâ ¥â â „â Ž" }, { "input": "moratoriums", "output": "â â •â —â â žâ •â —â Šâ ¥â â Ž" }, { "input": "moray", "output": "â â •â —â â ½" }, { "input": "moray's", "output": "â â •â —â â ½â „â Ž" }, { "input": "morays", "output": "â â •â —â â ½â Ž" }, { "input": "morbid", "output": "â â •⠗⠃⠊⠙" }, { "input": "morbidity", "output": "â â •⠗⠃⠊⠙⠰⠽" }, { "input": "morbidity's", "output": "â â •⠗⠃⠊⠙⠰⠽⠄⠎" }, { "input": "morbidly", "output": "â â •⠗⠃⠊⠙⠇⠽" }, { "input": "morbidness", "output": "â â •⠗⠃⠊⠙⠰⠎" }, { "input": "morbidness's", "output": "â â •⠗⠃⠊⠙⠰⠎⠄⠎" }, { "input": "mordancy", "output": "â â •â —â ™â â â ‰â ½" }, { "input": "mordancy's", "output": "â â •â —â ™â â â ‰â ½â „â Ž" }, { "input": "mordant", "output": "â â •â —â ™â â â ž" }, { "input": "mordant's", "output": "â â •â —â ™â â â žâ „â Ž" }, { "input": "mordants", "output": "â â •â —â ™â â â žâ Ž" }, { "input": "more", "output": "â " }, { "input": "more's", "output": "â â •â —â ‘â „â Ž" }, { "input": "morel", "output": "â â •â —â ‘â ‡" }, { "input": "morel's", "output": "â â •⠗⠑⠇⠄⠎" }, { "input": "morels", "output": "â â •⠗⠑⠇⠎" }, { "input": "moreover", "output": "â â •â —â ‘â •â §â »" }, { "input": "mores", "output": "â â •â —â ‘â Ž" }, { "input": "mores's", "output": "â â •â —â ‘â Žâ „â Ž" }, { "input": "morgue", "output": "â â •⠗⠛⠥⠑" }, { "input": "morgue's", "output": "â â •⠗⠛⠥⠑⠄⠎" }, { "input": "morgues", "output": "â â •⠗⠛⠥⠑⠎" }, { "input": "moribund", "output": "â â •⠗⠊⠃⠥â â ™" }, { "input": "morn", "output": "â â •â —â " }, { "input": "morn's", "output": "â â •â —â â „â Ž" }, { "input": "morning", "output": "â â •â —â â Œ" }, { "input": "morning's", "output": "â â •â —â â Œâ „â Ž" }, { "input": "mornings", "output": "â â •â —â â Œâ Ž" }, { "input": "morns", "output": "â â •â —â â Ž" }, { "input": "morocco", "output": "â â •â —â •â ’â •" }, { "input": "morocco's", "output": "â â •â —â •â ’â •â „â Ž" }, { "input": "moron", "output": "â â •â —â •â " }, { "input": "moron's", "output": "â â •â —â •â â „â Ž" }, { "input": "moronic", "output": "â â •â —â •â â Šâ ‰" }, { "input": "moronically", "output": "â â •â —â •â â Šâ ‰â  â ½" }, { "input": "morons", "output": "â â •â —â •â â Ž" }, { "input": "morose", "output": "â â •â —â •â Žâ ‘" }, { "input": "morosely", "output": "â â •⠗⠕⠎⠑⠇⠽" }, { "input": "moroseness", "output": "â â •â —â •â Žâ ‘â °â Ž" }, { "input": "moroseness's", "output": "â â •â —â •â Žâ ‘â °â Žâ „â Ž" }, { "input": "morpheme", "output": "â â •â —â â “â ‘â â ‘" }, { "input": "morpheme's", "output": "â â •â —â â “â ‘â â ‘â „â Ž" }, { "input": "morphemes", "output": "â â •â —â â “â ‘â â ‘â Ž" }, { "input": "morphemic", "output": "â â •â —â â “â ‘â â Šâ ‰" }, { "input": "morphia's", "output": "â â •â —â â “â Šâ â „â Ž" }, { "input": "morphine", "output": "â â •â —â â “⠔⠑" }, { "input": "morphine's", "output": "â â •â —â â “⠔⠑⠄⠎" }, { "input": "morphing's", "output": "â â •â —â â “⠌⠄⠎" }, { "input": "morphological", "output": "â â •â —â â “⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "morphology", "output": "â â •â —â â “⠕⠇⠕⠛⠽" }, { "input": "morphology's", "output": "â â •â —â â “⠕⠇⠕⠛⠽⠄⠎" }, { "input": "morrow", "output": "â â •â —â —â ª" }, { "input": "morrow's", "output": "â â •⠗⠗⠪⠄⠎" }, { "input": "morrows", "output": "â â •⠗⠗⠪⠎" }, { "input": "morsel", "output": "â â •â —â Žâ ‘â ‡" }, { "input": "morsel's", "output": "â â •⠗⠎⠑⠇⠄⠎" }, { "input": "morsels", "output": "â â •⠗⠎⠑⠇⠎" }, { "input": "mortal", "output": "â â •â —â žâ â ‡" }, { "input": "mortal's", "output": "â â •â —â žâ â ‡â „â Ž" }, { "input": "mortality", "output": "â â •â —â žâ â ‡â °â ½" }, { "input": "mortality's", "output": "â â •â —â žâ â ‡â °â ½â „â Ž" }, { "input": "mortally", "output": "â â •â —â žâ  â ½" }, { "input": "mortals", "output": "â â •â —â žâ â ‡â Ž" }, { "input": "mortar", "output": "â â •â —â žâ œ" }, { "input": "mortar's", "output": "â â •⠗⠞⠜⠄⠎" }, { "input": "mortarboard", "output": "â â •⠗⠞⠜⠃⠕⠜⠙" }, { "input": "mortarboard's", "output": "â â •⠗⠞⠜⠃⠕⠜⠙⠄⠎" }, { "input": "mortarboards", "output": "â â •⠗⠞⠜⠃⠕⠜⠙⠎" }, { "input": "mortared", "output": "â â •⠗⠞⠜⠫" }, { "input": "mortaring", "output": "â â •⠗⠞⠜⠌" }, { "input": "mortars", "output": "â â •⠗⠞⠜⠎" }, { "input": "mortgage", "output": "â â •â —â žâ ›â â ›â ‘" }, { "input": "mortgage's", "output": "â â •â —â žâ ›â â ›â ‘â „â Ž" }, { "input": "mortgaged", "output": "â â •â —â žâ ›â â ›â «" }, { "input": "mortgagee", "output": "â â •â —â žâ ›â â ›â ‘â ‘" }, { "input": "mortgagee's", "output": "â â •â —â žâ ›â â ›â ‘â ‘â „â Ž" }, { "input": "mortgagees", "output": "â â •â —â žâ ›â â ›â ‘â ‘â Ž" }, { "input": "mortgages", "output": "â â •â —â žâ ›â â ›â ‘â Ž" }, { "input": "mortgaging", "output": "â â •â —â žâ ›â â ›â Œ" }, { "input": "mortgagor", "output": "â â •â —â žâ ›â â ›â •â —" }, { "input": "mortgagor's", "output": "â â •â —â žâ ›â â ›â •â —â „â Ž" }, { "input": "mortgagors", "output": "â â •â —â žâ ›â â ›â •â —â Ž" }, { "input": "mortician", "output": "â â •⠗⠞⠊⠉⠊â â " }, { "input": "mortician's", "output": "â â •⠗⠞⠊⠉⠊â â â „â Ž" }, { "input": "morticians", "output": "â â •⠗⠞⠊⠉⠊â â â Ž" }, { "input": "mortification", "output": "â â •⠗⠞⠊⠋⠊⠉⠠â " }, { "input": "mortification's", "output": "â â •⠗⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "mortified", "output": "â â •â —â žâ Šâ ‹â Šâ «" }, { "input": "mortifies", "output": "â â •â —â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "mortify", "output": "â â •â —â žâ Šâ ‹â ½" }, { "input": "mortifying", "output": "â â •⠗⠞⠊⠋⠽⠌" }, { "input": "mortise", "output": "â â •â —â žâ Šâ Žâ ‘" }, { "input": "mortise's", "output": "â â •â —â žâ Šâ Žâ ‘â „â Ž" }, { "input": "mortised", "output": "â â •â —â žâ Šâ Žâ «" }, { "input": "mortises", "output": "â â •â —â žâ Šâ Žâ ‘â Ž" }, { "input": "mortising", "output": "â â •â —â žâ Šâ Žâ Œ" }, { "input": "mortuaries", "output": "â â •⠗⠞⠥⠜⠊⠑⠎" }, { "input": "mortuary", "output": "â â •⠗⠞⠥⠜⠽" }, { "input": "mortuary's", "output": "â â •⠗⠞⠥⠜⠽⠄⠎" }, { "input": "mosaic", "output": "â â •â Žâ â Šâ ‰" }, { "input": "mosaic's", "output": "â â •â Žâ â Šâ ‰â „â Ž" }, { "input": "mosaics", "output": "â â •â Žâ â Šâ ‰â Ž" }, { "input": "mosey", "output": "â â •â Žâ ‘â ½" }, { "input": "moseyed", "output": "â â •⠎⠑⠽⠫" }, { "input": "moseying", "output": "â â •⠎⠑⠽⠌" }, { "input": "moseys", "output": "â â •⠎⠑⠽⠎" }, { "input": "mosque", "output": "â â •⠎⠟⠥⠑" }, { "input": "mosque's", "output": "â â •⠎⠟⠥⠑⠄⠎" }, { "input": "mosques", "output": "â â •⠎⠟⠥⠑⠎" }, { "input": "mosquito", "output": "â â •⠎⠟⠥⠊⠞⠕" }, { "input": "mosquito's", "output": "â â •⠎⠟⠥⠊⠞⠕⠄⠎" }, { "input": "mosquitoes", "output": "â â •⠎⠟⠥⠊⠞⠕⠑⠎" }, { "input": "moss", "output": "â â •â Žâ Ž" }, { "input": "moss's", "output": "â â •â Žâ Žâ „â Ž" }, { "input": "mossback", "output": "â â •â Žâ Žâ ƒâ â ‰â …" }, { "input": "mossback's", "output": "â â •â Žâ Žâ ƒâ â ‰â …â „â Ž" }, { "input": "mossbacks", "output": "â â •â Žâ Žâ ƒâ â ‰â …â Ž" }, { "input": "mosses", "output": "â â •â Žâ Žâ ‘â Ž" }, { "input": "mossier", "output": "â â •â Žâ Žâ Šâ »" }, { "input": "mossiest", "output": "â â •â Žâ Žâ Šâ ‘â Œ" }, { "input": "mossy", "output": "â â •â Žâ Žâ ½" }, { "input": "most", "output": "â â •â Œ" }, { "input": "most's", "output": "â â •⠌⠄⠎" }, { "input": "mostly", "output": "â â •⠌⠇⠽" }, { "input": "mot", "output": "â â •â ž" }, { "input": "mot's", "output": "â â •â žâ „â Ž" }, { "input": "mote", "output": "â â •â žâ ‘" }, { "input": "mote's", "output": "â â •â žâ ‘â „â Ž" }, { "input": "motel", "output": "â â •â žâ ‘â ‡" }, { "input": "motel's", "output": "â â •⠞⠑⠇⠄⠎" }, { "input": "motels", "output": "â â •⠞⠑⠇⠎" }, { "input": "motes", "output": "â â •â žâ ‘â Ž" }, { "input": "moth", "output": "â â •â ¹" }, { "input": "moth's", "output": "â â •⠹⠄⠎" }, { "input": "mothball", "output": "â â •⠹⠃â â ‡â ‡" }, { "input": "mothball's", "output": "â â •⠹⠃â â ‡â ‡â „â Ž" }, { "input": "mothballed", "output": "â â •⠹⠃â â ‡â ‡â «" }, { "input": "mothballing", "output": "â â •⠹⠃â â ‡â ‡â Œ" }, { "input": "mothballs", "output": "â â •⠹⠃â â ‡â ‡â Ž" }, { "input": "mother", "output": "â â " }, { "input": "mother's", "output": "â â â „â Ž" }, { "input": "motherboard", "output": "â â â ƒâ •⠜⠙" }, { "input": "motherboard's", "output": "â â â ƒâ •⠜⠙⠄⠎" }, { "input": "motherboards", "output": "â â â ƒâ •⠜⠙⠎" }, { "input": "mothered", "output": "â â â «" }, { "input": "motherfucker", "output": "â â â ‹â ¥â ‰â …â »" }, { "input": "motherfucker's", "output": "â â â ‹â ¥â ‰â …⠻⠄⠎" }, { "input": "motherfuckers", "output": "â â â ‹â ¥â ‰â …⠻⠎" }, { "input": "motherfucking", "output": "â â â ‹â ¥â ‰â …â Œ" }, { "input": "motherhood", "output": "â â â “â •â •â ™" }, { "input": "motherhood's", "output": "â â â “⠕⠕⠙⠄⠎" }, { "input": "mothering", "output": "â â â Œ" }, { "input": "motherland", "output": "â â â ‡â ¯" }, { "input": "motherland's", "output": "â â â ‡â ¯â „â Ž" }, { "input": "motherlands", "output": "â â â ‡â ¯â Ž" }, { "input": "motherless", "output": "â â â ¨â Ž" }, { "input": "motherliness", "output": "â â â ‡â Šâ °â Ž" }, { "input": "motherliness's", "output": "â â â ‡â Šâ °â Žâ „â Ž" }, { "input": "motherly", "output": "â â â ‡â ½" }, { "input": "mothers", "output": "â â â Ž" }, { "input": "moths", "output": "â â •⠹⠎" }, { "input": "motif", "output": "â â •â žâ Šâ ‹" }, { "input": "motif's", "output": "â â •â žâ Šâ ‹â „â Ž" }, { "input": "motifs", "output": "â â •â žâ Šâ ‹â Ž" }, { "input": "motile", "output": "â â •⠞⠊⠇⠑" }, { "input": "motiles", "output": "â â •⠞⠊⠇⠑⠎" }, { "input": "motility", "output": "â â •⠞⠊⠇⠰⠽" }, { "input": "motility's", "output": "â â •⠞⠊⠇⠰⠽⠄⠎" }, { "input": "motion", "output": "â â •â °â " }, { "input": "motion's", "output": "â â •â °â â „â Ž" }, { "input": "motioned", "output": "â â •â °â â «" }, { "input": "motioning", "output": "â â •â °â â Œ" }, { "input": "motionless", "output": "â â •â °â â ¨â Ž" }, { "input": "motionlessly", "output": "â â •â °â â ¨â Žâ ‡â ½" }, { "input": "motionlessness", "output": "â â •â °â â ¨â Žâ °â Ž" }, { "input": "motionlessness's", "output": "â â •â °â â ¨â Žâ °â Žâ „â Ž" }, { "input": "motions", "output": "â â •â °â â Ž" }, { "input": "motivate", "output": "â â •â žâ Šâ §â â žâ ‘" }, { "input": "motivated", "output": "â â •â žâ Šâ §â â žâ «" }, { "input": "motivates", "output": "â â •â žâ Šâ §â â žâ ‘â Ž" }, { "input": "motivating", "output": "â â •â žâ Šâ §â â žâ Œ" }, { "input": "motivation", "output": "â â •â žâ Šâ §â  â " }, { "input": "motivation's", "output": "â â •â žâ Šâ §â  â â „â Ž" }, { "input": "motivational", "output": "â â •â žâ Šâ §â  â â â ‡" }, { "input": "motivations", "output": "â â •â žâ Šâ §â  â â Ž" }, { "input": "motivator", "output": "â â •â žâ Šâ §â â žâ •â —" }, { "input": "motivator's", "output": "â â •â žâ Šâ §â â žâ •â —â „â Ž" }, { "input": "motivators", "output": "â â •â žâ Šâ §â â žâ •â —â Ž" }, { "input": "motive", "output": "â â •â žâ Šâ §â ‘" }, { "input": "motive's", "output": "â â •â žâ Šâ §â ‘â „â Ž" }, { "input": "motives", "output": "â â •â žâ Šâ §â ‘â Ž" }, { "input": "motley", "output": "â â •⠞⠇⠑⠽" }, { "input": "motley's", "output": "â â •⠞⠇⠑⠽⠄⠎" }, { "input": "motleys", "output": "â â •⠞⠇⠑⠽⠎" }, { "input": "motlier", "output": "â â •⠞⠇⠊⠻" }, { "input": "motliest", "output": "â â •⠞⠇⠊⠑⠌" }, { "input": "motocross", "output": "â â •⠞⠕⠉⠗⠕⠎⠎" }, { "input": "motocross's", "output": "â â •⠞⠕⠉⠗⠕⠎⠎⠄⠎" }, { "input": "motocrosses", "output": "â â •⠞⠕⠉⠗⠕⠎⠎⠑⠎" }, { "input": "motor", "output": "â â •â žâ •â —" }, { "input": "motor's", "output": "â â •â žâ •â —â „â Ž" }, { "input": "motorbike", "output": "â â •⠞⠕⠗⠃⠊⠅⠑" }, { "input": "motorbike's", "output": "â â •⠞⠕⠗⠃⠊⠅⠑⠄⠎" }, { "input": "motorbiked", "output": "â â •⠞⠕⠗⠃⠊⠅⠫" }, { "input": "motorbikes", "output": "â â •⠞⠕⠗⠃⠊⠅⠑⠎" }, { "input": "motorbiking", "output": "â â •⠞⠕⠗⠃⠊⠅⠌" }, { "input": "motorboat", "output": "â â •⠞⠕⠗⠃⠕â â ž" }, { "input": "motorboat's", "output": "â â •⠞⠕⠗⠃⠕â â žâ „â Ž" }, { "input": "motorboats", "output": "â â •⠞⠕⠗⠃⠕â â žâ Ž" }, { "input": "motorcade", "output": "â â •â žâ •â —â ‰â â ™â ‘" }, { "input": "motorcade's", "output": "â â •â žâ •â —â ‰â â ™â ‘â „â Ž" }, { "input": "motorcades", "output": "â â •â žâ •â —â ‰â â ™â ‘â Ž" }, { "input": "motorcar", "output": "â â •⠞⠕⠗⠉⠜" }, { "input": "motorcar's", "output": "â â •⠞⠕⠗⠉⠜⠄⠎" }, { "input": "motorcars", "output": "â â •⠞⠕⠗⠉⠜⠎" }, { "input": "motorcycle", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠑" }, { "input": "motorcycle's", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠑⠄⠎" }, { "input": "motorcycled", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠫" }, { "input": "motorcycles", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠑⠎" }, { "input": "motorcycling", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠌" }, { "input": "motorcyclist", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠊⠌" }, { "input": "motorcyclist's", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠊⠌⠄⠎" }, { "input": "motorcyclists", "output": "â â •⠞⠕⠗⠉⠽⠉⠇⠊⠌⠎" }, { "input": "motored", "output": "â â •â žâ •â —â «" }, { "input": "motoring", "output": "â â •â žâ •â —â Œ" }, { "input": "motorist", "output": "â â •â žâ •â —â Šâ Œ" }, { "input": "motorist's", "output": "â â •⠞⠕⠗⠊⠌⠄⠎" }, { "input": "motorists", "output": "â â •⠞⠕⠗⠊⠌⠎" }, { "input": "motorization", "output": "â â •⠞⠕⠗⠊⠵⠠â " }, { "input": "motorization's", "output": "â â •⠞⠕⠗⠊⠵⠠â â „â Ž" }, { "input": "motorize", "output": "â â •⠞⠕⠗⠊⠵⠑" }, { "input": "motorized", "output": "â â •⠞⠕⠗⠊⠵⠫" }, { "input": "motorizes", "output": "â â •⠞⠕⠗⠊⠵⠑⠎" }, { "input": "motorizing", "output": "â â •⠞⠕⠗⠊⠵⠌" }, { "input": "motorman", "output": "â â •â žâ •â —â â â " }, { "input": "motorman's", "output": "â â •â žâ •â —â â â â „â Ž" }, { "input": "motormen", "output": "â â •â žâ •â —â â ¢" }, { "input": "motormouth", "output": "â â •â žâ •â —â â ³â ¹" }, { "input": "motormouth's", "output": "â â •â žâ •â —â â ³â ¹â „â Ž" }, { "input": "motormouths", "output": "â â •â žâ •â —â â ³â ¹â Ž" }, { "input": "motors", "output": "â â •â žâ •â —â Ž" }, { "input": "motorway", "output": "â â •â žâ •â —â ºâ â ½" }, { "input": "motorway's", "output": "â â •â žâ •â —â ºâ â ½â „â Ž" }, { "input": "motorways", "output": "â â •â žâ •â —â ºâ â ½â Ž" }, { "input": "mots", "output": "â â •â žâ Ž" }, { "input": "mottle", "output": "â â •⠞⠞⠇⠑" }, { "input": "mottled", "output": "â â •⠞⠞⠇⠫" }, { "input": "mottles", "output": "â â •⠞⠞⠇⠑⠎" }, { "input": "mottling", "output": "â â •⠞⠞⠇⠌" }, { "input": "motto", "output": "â â •â žâ žâ •" }, { "input": "motto's", "output": "â â •â žâ žâ •â „â Ž" }, { "input": "mottoes", "output": "â â •â žâ žâ •â ‘â Ž" }, { "input": "moue", "output": "â â ³â ‘" }, { "input": "moue's", "output": "â â ³â ‘â „â Ž" }, { "input": "moues", "output": "â â ³â ‘â Ž" }, { "input": "mound", "output": "â â ¨â ™" }, { "input": "mound's", "output": "â â ¨â ™â „â Ž" }, { "input": "mounded", "output": "â â ¨â ™â «" }, { "input": "mounding", "output": "â â ¨â ™â Œ" }, { "input": "mounds", "output": "â â ¨â ™â Ž" }, { "input": "mount", "output": "â â ¨â ž" }, { "input": "mount's", "output": "â â ¨â žâ „â Ž" }, { "input": "mountable", "output": "â â ¨â žâ â ¼" }, { "input": "mountain", "output": "â â ¨â žâ â ”" }, { "input": "mountain's", "output": "â â ¨â žâ â ”â „â Ž" }, { "input": "mountaineer", "output": "â â ¨â žâ â ”â ‘â »" }, { "input": "mountaineer's", "output": "â â ¨â žâ â ”⠑⠻⠄⠎" }, { "input": "mountaineered", "output": "â â ¨â žâ â ”⠑⠻⠫" }, { "input": "mountaineering", "output": "â â ¨â žâ â ”⠑⠻⠌" }, { "input": "mountaineering's", "output": "â â ¨â žâ â ”⠑⠻⠌⠄⠎" }, { "input": "mountaineers", "output": "â â ¨â žâ â ”⠑⠻⠎" }, { "input": "mountainous", "output": "â â ¨â žâ â ”⠳⠎" }, { "input": "mountains", "output": "â â ¨â žâ â ”â Ž" }, { "input": "mountainside", "output": "â â ¨â žâ â ”⠎⠊⠙⠑" }, { "input": "mountainside's", "output": "â â ¨â žâ â ”⠎⠊⠙⠑⠄⠎" }, { "input": "mountainsides", "output": "â â ¨â žâ â ”⠎⠊⠙⠑⠎" }, { "input": "mountaintop", "output": "â â ¨â žâ â ”â žâ •â " }, { "input": "mountaintop's", "output": "â â ¨â žâ â ”â žâ •â â „â Ž" }, { "input": "mountaintops", "output": "â â ¨â žâ â ”â žâ •â â Ž" }, { "input": "mountebank", "output": "â â ¨â žâ ‘â ƒâ â â …" }, { "input": "mountebank's", "output": "â â ¨â žâ ‘â ƒâ â â …â „â Ž" }, { "input": "mountebanks", "output": "â â ¨â žâ ‘â ƒâ â â …â Ž" }, { "input": "mounted", "output": "â â ¨â žâ «" }, { "input": "mounter", "output": "â â ¨â žâ »" }, { "input": "mounter's", "output": "â â ¨â žâ »â „â Ž" }, { "input": "mounters", "output": "â â ¨â žâ »â Ž" }, { "input": "mounting", "output": "â â ¨â žâ Œ" }, { "input": "mounting's", "output": "â â ¨â žâ Œâ „â Ž" }, { "input": "mountings", "output": "â â ¨â žâ Œâ Ž" }, { "input": "mounts", "output": "â â ¨â žâ Ž" }, { "input": "mourn", "output": "â â ³â —â " }, { "input": "mourned", "output": "â â ³â —â â «" }, { "input": "mourner", "output": "â â ³â —â â »" }, { "input": "mourner's", "output": "â â ³â —â â »â „â Ž" }, { "input": "mourners", "output": "â â ³â —â â »â Ž" }, { "input": "mournful", "output": "â â ³â —â â °â ‡" }, { "input": "mournfully", "output": "â â ³â —â â °â ‡â ‡â ½" }, { "input": "mournfulness", "output": "â â ³â —â â °â ‡â °â Ž" }, { "input": "mournfulness's", "output": "â â ³â —â â °â ‡â °â Žâ „â Ž" }, { "input": "mourning", "output": "â â ³â —â â Œ" }, { "input": "mourning's", "output": "â â ³â —â â Œâ „â Ž" }, { "input": "mourns", "output": "â â ³â —â â Ž" }, { "input": "mouse", "output": "â â ³â Žâ ‘" }, { "input": "mouse's", "output": "â â ³â Žâ ‘â „â Ž" }, { "input": "moused", "output": "â â ³â Žâ «" }, { "input": "mouser", "output": "â â ³â Žâ »" }, { "input": "mouser's", "output": "â â ³â Žâ »â „â Ž" }, { "input": "mousers", "output": "â â ³â Žâ »â Ž" }, { "input": "mouses", "output": "â â ³â Žâ ‘â Ž" }, { "input": "mousetrap", "output": "â â ³â Žâ ‘â žâ —â â " }, { "input": "mousetrap's", "output": "â â ³â Žâ ‘â žâ —â â â „â Ž" }, { "input": "mousetrapped", "output": "â â ³â Žâ ‘â žâ —â â â â «" }, { "input": "mousetrapping", "output": "â â ³â Žâ ‘â žâ —â â â â Œ" }, { "input": "mousetraps", "output": "â â ³â Žâ ‘â žâ —â â â Ž" }, { "input": "mousier", "output": "â â ³â Žâ Šâ »" }, { "input": "mousiest", "output": "â â ³â Žâ Šâ ‘â Œ" }, { "input": "mousiness", "output": "â â ³â Žâ Šâ °â Ž" }, { "input": "mousiness's", "output": "â â ³â Žâ Šâ °â Žâ „â Ž" }, { "input": "mousing", "output": "â â ³â Žâ Œ" }, { "input": "mousse", "output": "â â ³â Žâ Žâ ‘" }, { "input": "mousse's", "output": "â â ³â Žâ Žâ ‘â „â Ž" }, { "input": "moussed", "output": "â â ³â Žâ Žâ «" }, { "input": "mousses", "output": "â â ³â Žâ Žâ ‘â Ž" }, { "input": "moussing", "output": "â â ³â Žâ Žâ Œ" }, { "input": "mousy", "output": "â â ³â Žâ ½" }, { "input": "mouth", "output": "â â ³â ¹" }, { "input": "mouth's", "output": "â â ³â ¹â „â Ž" }, { "input": "mouthed", "output": "â â ³â ®â ™" }, { "input": "mouthful", "output": "â â ³â ¹â °â ‡" }, { "input": "mouthful's", "output": "â â ³â ¹â °â ‡â „â Ž" }, { "input": "mouthfuls", "output": "â â ³â ¹â °â ‡â Ž" }, { "input": "mouthier", "output": "â â ³â ¹â Šâ »" }, { "input": "mouthiest", "output": "â â ³â ¹â Šâ ‘â Œ" }, { "input": "mouthiness", "output": "â â ³â ¹â Šâ °â Ž" }, { "input": "mouthiness's", "output": "â â ³â ¹â Šâ °â Žâ „â Ž" }, { "input": "mouthing", "output": "â â ³â ¹â Œ" }, { "input": "mouthpiece", "output": "â â ³â ¹â â Šâ ‘⠉⠑" }, { "input": "mouthpiece's", "output": "â â ³â ¹â â Šâ ‘⠉⠑⠄⠎" }, { "input": "mouthpieces", "output": "â â ³â ¹â â Šâ ‘⠉⠑⠎" }, { "input": "mouths", "output": "â â ³â ¹â Ž" }, { "input": "mouthwash", "output": "â â ³â ¹â ºâ â ©" }, { "input": "mouthwash's", "output": "â â ³â ¹â ºâ â ©â „â Ž" }, { "input": "mouthwashes", "output": "â â ³â ¹â ºâ â ©â ‘â Ž" }, { "input": "mouthwatering", "output": "â â ³â ¹â ºâ â žâ »â Œ" }, { "input": "mouton", "output": "â â ³â žâ •â " }, { "input": "mouton's", "output": "â â ³â žâ •â â „â Ž" }, { "input": "movable", "output": "â â •â §â â ¼" }, { "input": "movable's", "output": "â â •â §â â ¼â „â Ž" }, { "input": "movables", "output": "â â •â §â â ¼â Ž" }, { "input": "move", "output": "â â •â §â ‘" }, { "input": "move's", "output": "â â •â §â ‘â „â Ž" }, { "input": "moved", "output": "â â •â §â «" }, { "input": "movement", "output": "â â •â §â ‘â °â ž" }, { "input": "movement's", "output": "â â •â §â ‘â °â žâ „â Ž" }, { "input": "movements", "output": "â â •â §â ‘â °â žâ Ž" }, { "input": "mover", "output": "â â •â §â »" }, { "input": "mover's", "output": "â â •⠧⠻⠄⠎" }, { "input": "movers", "output": "â â •⠧⠻⠎" }, { "input": "moves", "output": "â â •â §â ‘â Ž" }, { "input": "movie", "output": "â â •â §â Šâ ‘" }, { "input": "movie's", "output": "â â •â §â Šâ ‘â „â Ž" }, { "input": "movies", "output": "â â •â §â Šâ ‘â Ž" }, { "input": "moving", "output": "â â •â §â Œ" }, { "input": "movingly", "output": "â â •⠧⠌⠇⠽" }, { "input": "mow", "output": "â â ª" }, { "input": "mow's", "output": "â â ªâ „â Ž" }, { "input": "mowed", "output": "â â ªâ «" }, { "input": "mower", "output": "â â ªâ »" }, { "input": "mower's", "output": "â â ªâ »â „â Ž" }, { "input": "mowers", "output": "â â ªâ »â Ž" }, { "input": "mowing", "output": "â â ªâ Œ" }, { "input": "mows", "output": "â â ªâ Ž" }, { "input": "moxie's", "output": "â â •â ­â Šâ ‘â „â Ž" }, { "input": "mozzarella", "output": "â â •⠵⠵⠜⠑⠇⠇â " }, { "input": "mozzarella's", "output": "â â •⠵⠵⠜⠑⠇⠇â â „â Ž" }, { "input": "ms", "output": "â â Ž" }, { "input": "mu", "output": "â â ¥" }, { "input": "mu's", "output": "â â ¥â „â Ž" }, { "input": "much", "output": "â â ¡" }, { "input": "much's", "output": "â â ¡â „â Ž" }, { "input": "mucilage", "output": "â â ¥â ‰â Šâ ‡â â ›â ‘" }, { "input": "mucilage's", "output": "â â ¥â ‰â Šâ ‡â â ›â ‘â „â Ž" }, { "input": "mucilaginous", "output": "â â ¥â ‰â Šâ ‡â â ›â ”⠳⠎" }, { "input": "muck", "output": "â â ¥â ‰â …" }, { "input": "muck's", "output": "â â ¥â ‰â …â „â Ž" }, { "input": "mucked", "output": "â â ¥â ‰â …â «" }, { "input": "muckier", "output": "â â ¥â ‰â …â Šâ »" }, { "input": "muckiest", "output": "â â ¥â ‰â …â Šâ ‘â Œ" }, { "input": "mucking", "output": "â â ¥â ‰â …â Œ" }, { "input": "muckrake", "output": "â â ¥â ‰â …â —â â …â ‘" }, { "input": "muckraked", "output": "â â ¥â ‰â …â —â â …â «" }, { "input": "muckraker", "output": "â â ¥â ‰â …â —â â …â »" }, { "input": "muckraker's", "output": "â â ¥â ‰â …â —â â …⠻⠄⠎" }, { "input": "muckrakers", "output": "â â ¥â ‰â …â —â â …⠻⠎" }, { "input": "muckrakes", "output": "â â ¥â ‰â …â —â â …â ‘â Ž" }, { "input": "muckraking", "output": "â â ¥â ‰â …â —â â …â Œ" }, { "input": "mucks", "output": "â â ¥â ‰â …â Ž" }, { "input": "mucky", "output": "â â ¥â ‰â …â ½" }, { "input": "mucous", "output": "â â ¥â ‰â ³â Ž" }, { "input": "mucus", "output": "â â ¥â ‰â ¥â Ž" }, { "input": "mucus's", "output": "â â ¥â ‰â ¥â Žâ „â Ž" }, { "input": "mud", "output": "â â ¥â ™" }, { "input": "mud's", "output": "â â ¥â ™â „â Ž" }, { "input": "muddied", "output": "â â ¥â ²â Šâ «" }, { "input": "muddier", "output": "â â ¥â ²â Šâ »" }, { "input": "muddies", "output": "â â ¥â ²â Šâ ‘â Ž" }, { "input": "muddiest", "output": "â â ¥â ²â Šâ ‘â Œ" }, { "input": "muddily", "output": "â â ¥â ²â Šâ ‡â ½" }, { "input": "muddiness", "output": "â â ¥â ²â Šâ °â Ž" }, { "input": "muddiness's", "output": "â â ¥â ²â Šâ °â Žâ „â Ž" }, { "input": "muddle", "output": "â â ¥â ²â ‡â ‘" }, { "input": "muddle's", "output": "â â ¥â ²â ‡â ‘â „â Ž" }, { "input": "muddled", "output": "â â ¥â ²â ‡â «" }, { "input": "muddleheaded", "output": "â â ¥â ²â ‡â ‘⠓⠂⠙⠫" }, { "input": "muddles", "output": "â â ¥â ²â ‡â ‘â Ž" }, { "input": "muddling", "output": "â â ¥â ²â ‡â Œ" }, { "input": "muddy", "output": "â â ¥â ²â ½" }, { "input": "muddying", "output": "â â ¥â ²â ½â Œ" }, { "input": "mudguard", "output": "â â ¥â ™â ›â ¥â œâ ™" }, { "input": "mudguard's", "output": "â â ¥â ™â ›â ¥â œâ ™â „â Ž" }, { "input": "mudguards", "output": "â â ¥â ™â ›â ¥â œâ ™â Ž" }, { "input": "mudroom", "output": "â â ¥â ™â —â •â •â " }, { "input": "mudroom's", "output": "â â ¥â ™â —â •â •â â „â Ž" }, { "input": "mudrooms", "output": "â â ¥â ™â —â •â •â â Ž" }, { "input": "mudslide", "output": "â â ¥â ™â Žâ ‡â Šâ ™â ‘" }, { "input": "mudslide's", "output": "â â ¥â ™â Žâ ‡â Šâ ™â ‘â „â Ž" }, { "input": "mudslides", "output": "â â ¥â ™â Žâ ‡â Šâ ™â ‘â Ž" }, { "input": "mudslinger", "output": "â â ¥â ™â Žâ ‡â Œâ »" }, { "input": "mudslinger's", "output": "â â ¥â ™â Žâ ‡â Œâ »â „â Ž" }, { "input": "mudslingers", "output": "â â ¥â ™â Žâ ‡â Œâ »â Ž" }, { "input": "mudslinging", "output": "â â ¥â ™â Žâ ‡â Œâ Œ" }, { "input": "mudslinging's", "output": "â â ¥â ™â Žâ ‡â Œâ Œâ „â Ž" }, { "input": "muenster", "output": "â â ¥â ¢â Œâ »" }, { "input": "muenster's", "output": "â â ¥â ¢â Œâ »â „â Ž" }, { "input": "muesli", "output": "â â ¥â ‘⠎⠇⠊" }, { "input": "muezzin", "output": "â â ¥â ‘⠵⠵⠔" }, { "input": "muezzin's", "output": "â â ¥â ‘⠵⠵⠔⠄⠎" }, { "input": "muezzins", "output": "â â ¥â ‘⠵⠵⠔⠎" }, { "input": "muff", "output": "â â ¥â ‹â ‹" }, { "input": "muff's", "output": "â â ¥â ‹â ‹â „â Ž" }, { "input": "muffed", "output": "â â ¥â –â «" }, { "input": "muffin", "output": "â â ¥â –â ”" }, { "input": "muffin's", "output": "â â ¥â –⠔⠄⠎" }, { "input": "muffing", "output": "â â ¥â –â Œ" }, { "input": "muffins", "output": "â â ¥â –⠔⠎" }, { "input": "muffle", "output": "â â ¥â –⠇⠑" }, { "input": "muffled", "output": "â â ¥â –⠇⠫" }, { "input": "muffler", "output": "â â ¥â –⠇⠻" }, { "input": "muffler's", "output": "â â ¥â –⠇⠻⠄⠎" }, { "input": "mufflers", "output": "â â ¥â –⠇⠻⠎" }, { "input": "muffles", "output": "â â ¥â –⠇⠑⠎" }, { "input": "muffling", "output": "â â ¥â –⠇⠌" }, { "input": "muffs", "output": "â â ¥â –â Ž" }, { "input": "mufti", "output": "â â ¥â ‹â žâ Š" }, { "input": "mufti's", "output": "â â ¥â ‹â žâ Šâ „â Ž" }, { "input": "muftis", "output": "â â ¥â ‹â žâ Šâ Ž" }, { "input": "mug", "output": "â â ¥â ›" }, { "input": "mug's", "output": "â â ¥â ›â „â Ž" }, { "input": "mugful", "output": "â â ¥â ›â °â ‡" }, { "input": "mugful's", "output": "â â ¥â ›â °â ‡â „â Ž" }, { "input": "mugfuls", "output": "â â ¥â ›â °â ‡â Ž" }, { "input": "mugged", "output": "â â ¥â ¶â «" }, { "input": "mugger", "output": "â â ¥â ¶â »" }, { "input": "mugger's", "output": "â â ¥â ¶â »â „â Ž" }, { "input": "muggers", "output": "â â ¥â ¶â »â Ž" }, { "input": "muggier", "output": "â â ¥â ¶â Šâ »" }, { "input": "muggiest", "output": "â â ¥â ¶â Šâ ‘â Œ" }, { "input": "mugginess", "output": "â â ¥â ¶â Šâ °â Ž" }, { "input": "mugginess's", "output": "â â ¥â ¶â Šâ °â Žâ „â Ž" }, { "input": "mugging", "output": "â â ¥â ¶â Œ" }, { "input": "mugging's", "output": "â â ¥â ¶â Œâ „â Ž" }, { "input": "muggings", "output": "â â ¥â ¶â Œâ Ž" }, { "input": "muggy", "output": "â â ¥â ¶â ½" }, { "input": "mugs", "output": "â â ¥â ›â Ž" }, { "input": "mugshot", "output": "â â ¥â ›â ©â •â ž" }, { "input": "mugshot's", "output": "â â ¥â ›â ©â •â žâ „â Ž" }, { "input": "mugshots", "output": "â â ¥â ›â ©â •â žâ Ž" }, { "input": "mugwump", "output": "â â ¥â ›â ºâ ¥â â " }, { "input": "mugwump's", "output": "â â ¥â ›â ºâ ¥â â â „â Ž" }, { "input": "mugwumps", "output": "â â ¥â ›â ºâ ¥â â â Ž" }, { "input": "mukluk", "output": "â â ¥â …⠇⠥⠅" }, { "input": "mukluk's", "output": "â â ¥â …⠇⠥⠅⠄⠎" }, { "input": "mukluks", "output": "â â ¥â …⠇⠥⠅⠎" }, { "input": "mulatto", "output": "â â ¥â ‡â â žâ žâ •" }, { "input": "mulatto's", "output": "â â ¥â ‡â â žâ žâ •â „â Ž" }, { "input": "mulattoes", "output": "â â ¥â ‡â â žâ žâ •â ‘â Ž" }, { "input": "mulberries", "output": "â â ¥â ‡â ƒâ »â —â Šâ ‘â Ž" }, { "input": "mulberry", "output": "â â ¥â ‡â ƒâ »â —â ½" }, { "input": "mulberry's", "output": "â â ¥â ‡â ƒâ »â —⠽⠄⠎" }, { "input": "mulch", "output": "â â ¥â ‡â ¡" }, { "input": "mulch's", "output": "â â ¥â ‡â ¡â „â Ž" }, { "input": "mulched", "output": "â â ¥â ‡â ¡â «" }, { "input": "mulches", "output": "â â ¥â ‡â ¡â ‘â Ž" }, { "input": "mulching", "output": "â â ¥â ‡â ¡â Œ" }, { "input": "mulct", "output": "â â ¥â ‡â ‰â ž" }, { "input": "mulct's", "output": "â â ¥â ‡â ‰â žâ „â Ž" }, { "input": "mulcted", "output": "â â ¥â ‡â ‰â žâ «" }, { "input": "mulcting", "output": "â â ¥â ‡â ‰â žâ Œ" }, { "input": "mulcts", "output": "â â ¥â ‡â ‰â žâ Ž" }, { "input": "mule", "output": "â â ¥â ‡â ‘" }, { "input": "mule's", "output": "â â ¥â ‡â ‘â „â Ž" }, { "input": "mules", "output": "â â ¥â ‡â ‘â Ž" }, { "input": "muleskinner", "output": "â â ¥â ‡â ‘â Žâ …â ”â â »" }, { "input": "muleskinner's", "output": "â â ¥â ‡â ‘â Žâ …â ”â â »â „â Ž" }, { "input": "muleskinners", "output": "â â ¥â ‡â ‘â Žâ …â ”â â »â Ž" }, { "input": "muleteer", "output": "â â ¥â ‡â ‘â žâ ‘â »" }, { "input": "muleteer's", "output": "â â ¥â ‡â ‘⠞⠑⠻⠄⠎" }, { "input": "muleteers", "output": "â â ¥â ‡â ‘⠞⠑⠻⠎" }, { "input": "mulish", "output": "â â ¥â ‡â Šâ ©" }, { "input": "mulishly", "output": "â â ¥â ‡â Šâ ©â ‡â ½" }, { "input": "mulishness", "output": "â â ¥â ‡â Šâ ©â °â Ž" }, { "input": "mulishness's", "output": "â â ¥â ‡â Šâ ©â °â Žâ „â Ž" }, { "input": "mull", "output": "â â ¥â ‡â ‡" }, { "input": "mullah", "output": "â â ¥â ‡â ‡â â “" }, { "input": "mullah's", "output": "â â ¥â ‡â ‡â â “â „â Ž" }, { "input": "mullahs", "output": "â â ¥â ‡â ‡â â “â Ž" }, { "input": "mulled", "output": "â â ¥â ‡â ‡â «" }, { "input": "mullein", "output": "â â ¥â ‡â ‡â ‘â ”" }, { "input": "mullein's", "output": "â â ¥â ‡â ‡â ‘⠔⠄⠎" }, { "input": "mullet", "output": "â â ¥â ‡â ‡â ‘â ž" }, { "input": "mullet's", "output": "â â ¥â ‡â ‡â ‘â žâ „â Ž" }, { "input": "mullets", "output": "â â ¥â ‡â ‡â ‘â žâ Ž" }, { "input": "mulligan", "output": "â â ¥â ‡â ‡â Šâ ›â â " }, { "input": "mulligan's", "output": "â â ¥â ‡â ‡â Šâ ›â â â „â Ž" }, { "input": "mulligans", "output": "â â ¥â ‡â ‡â Šâ ›â â â Ž" }, { "input": "mulligatawny", "output": "â â ¥â ‡â ‡â Šâ ›â â žâ â ºâ â ½" }, { "input": "mulligatawny's", "output": "â â ¥â ‡â ‡â Šâ ›â â žâ â ºâ â ½â „â Ž" }, { "input": "mulling", "output": "â â ¥â ‡â ‡â Œ" }, { "input": "mullion", "output": "â â ¥â ‡â ‡â Šâ •â " }, { "input": "mullion's", "output": "â â ¥â ‡â ‡â Šâ •â â „â Ž" }, { "input": "mullions", "output": "â â ¥â ‡â ‡â Šâ •â â Ž" }, { "input": "mulls", "output": "â â ¥â ‡â ‡â Ž" }, { "input": "multicolored", "output": "â â ¥â ‡â žâ Šâ ‰â •⠇⠕⠗⠫" }, { "input": "multicultural", "output": "â â ¥â ‡â žâ Šâ ‰â ¥â ‡â žâ ¥â —â â ‡" }, { "input": "multiculturalism", "output": "â â ¥â ‡â žâ Šâ ‰â ¥â ‡â žâ ¥â —â â ‡â Šâ Žâ " }, { "input": "multiculturalism's", "output": "â â ¥â ‡â žâ Šâ ‰â ¥â ‡â žâ ¥â —â â ‡â Šâ Žâ â „â Ž" }, { "input": "multidimensional", "output": "â â ¥â ‡â žâ Šâ ™â Šâ â ¢â ¨â â â ‡" }, { "input": "multidisciplinary", "output": "â â ¥â ‡â žâ Šâ ™â Šâ Žâ ‰â Šâ â ‡â ”⠜⠽" }, { "input": "multifaceted", "output": "â â ¥â ‡â žâ Šâ ‹â â ‰â ‘â žâ «" }, { "input": "multifamily", "output": "â â ¥â ‡â žâ Šâ ‹â â â Šâ ‡â ½" }, { "input": "multifarious", "output": "â â ¥â ‡â žâ Šâ ‹â œâ Šâ ³â Ž" }, { "input": "multifariously", "output": "â â ¥â ‡â žâ Šâ ‹â œâ Šâ ³â Žâ ‡â ½" }, { "input": "multifariousness", "output": "â â ¥â ‡â žâ Šâ ‹â œâ Šâ ³â Žâ °â Ž" }, { "input": "multifariousness's", "output": "â â ¥â ‡â žâ Šâ ‹â œâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "multiform", "output": "â â ¥â ‡â žâ Šâ ¿â " }, { "input": "multilateral", "output": "â â ¥â ‡â žâ Šâ ‡â â žâ »â â ‡" }, { "input": "multilaterally", "output": "â â ¥â ‡â žâ Šâ ‡â â žâ »â  â ½" }, { "input": "multilevel", "output": "â â ¥â ‡â žâ Šâ ‡â ‘â §â ‘â ‡" }, { "input": "multilingual", "output": "â â ¥â ‡â žâ Šâ ‡â Œâ ¥â â ‡" }, { "input": "multilingualism", "output": "â â ¥â ‡â žâ Šâ ‡â Œâ ¥â â ‡â Šâ Žâ " }, { "input": "multilingualism's", "output": "â â ¥â ‡â žâ Šâ ‡â Œâ ¥â â ‡â Šâ Žâ â „â Ž" }, { "input": "multimedia", "output": "â â ¥â ‡â žâ Šâ â «â Šâ " }, { "input": "multimedia's", "output": "â â ¥â ‡â žâ Šâ â «â Šâ â „â Ž" }, { "input": "multimillionaire", "output": "â â ¥â ‡â žâ Šâ â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘" }, { "input": "multimillionaire's", "output": "â â ¥â ‡â žâ Šâ â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘â „â Ž" }, { "input": "multimillionaires", "output": "â â ¥â ‡â žâ Šâ â Šâ ‡â ‡â Šâ •â â â Šâ —â ‘â Ž" }, { "input": "multinational", "output": "â â ¥â ‡â žâ Šâ â  â â â ‡" }, { "input": "multinational's", "output": "â â ¥â ‡â žâ Šâ â  â â â ‡â „â Ž" }, { "input": "multinationals", "output": "â â ¥â ‡â žâ Šâ â  â â â ‡â Ž" }, { "input": "multiple", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘" }, { "input": "multiple's", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â „â Ž" }, { "input": "multiples", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â Ž" }, { "input": "multiplex", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­" }, { "input": "multiplex's", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â „â Ž" }, { "input": "multiplexed", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â «" }, { "input": "multiplexer", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â »" }, { "input": "multiplexer's", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘⠭⠻⠄⠎" }, { "input": "multiplexers", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘⠭⠻⠎" }, { "input": "multiplexes", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â ‘â Ž" }, { "input": "multiplexing", "output": "â â ¥â ‡â žâ Šâ â ‡â ‘â ­â Œ" }, { "input": "multiplicand", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â ¯" }, { "input": "multiplicand's", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â ¯â „â Ž" }, { "input": "multiplicands", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â ¯â Ž" }, { "input": "multiplication", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â  â " }, { "input": "multiplication's", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â  â â „â Ž" }, { "input": "multiplications", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â  â â Ž" }, { "input": "multiplicative", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "multiplicities", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â Šâ žâ Šâ ‘â Ž" }, { "input": "multiplicity", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â °â ½" }, { "input": "multiplicity's", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‰â °â ½â „â Ž" }, { "input": "multiplied", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ «" }, { "input": "multiplier", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ »" }, { "input": "multiplier's", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ »â „â Ž" }, { "input": "multipliers", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ »â Ž" }, { "input": "multiplies", "output": "â â ¥â ‡â žâ Šâ â ‡â Šâ ‘â Ž" }, { "input": "multiply", "output": "â â ¥â ‡â žâ Šâ â ‡â ½" }, { "input": "multiplying", "output": "â â ¥â ‡â žâ Šâ â ‡â ½â Œ" }, { "input": "multiprocessing", "output": "â â ¥â ‡â žâ Šâ â —⠕⠉⠑⠎⠎⠌" }, { "input": "multiprocessor", "output": "â â ¥â ‡â žâ Šâ â —⠕⠉⠑⠎⠎⠕⠗" }, { "input": "multiprocessor's", "output": "â â ¥â ‡â žâ Šâ â —⠕⠉⠑⠎⠎⠕⠗⠄⠎" }, { "input": "multiprocessors", "output": "â â ¥â ‡â žâ Šâ â —⠕⠉⠑⠎⠎⠕⠗⠎" }, { "input": "multipurpose", "output": "â â ¥â ‡â žâ Šâ â ¥â —â â •â Žâ ‘" }, { "input": "multiracial", "output": "â â ¥â ‡â žâ Šâ —â â ‰â Šâ â ‡" }, { "input": "multistage", "output": "â â ¥â ‡â žâ Šâ Œâ â ›â ‘" }, { "input": "multistory", "output": "â â ¥â ‡â žâ Šâ Œâ •â —â ½" }, { "input": "multitasking", "output": "â â ¥â ‡â žâ Šâ žâ â Žâ …â Œ" }, { "input": "multitasking's", "output": "â â ¥â ‡â žâ Šâ žâ â Žâ …⠌⠄⠎" }, { "input": "multitude", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ‘" }, { "input": "multitude's", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "multitudes", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "multitudinous", "output": "â â ¥â ‡â žâ Šâ žâ ¥â ™â ”⠳⠎" }, { "input": "multivariate", "output": "â â ¥â ‡â žâ Šâ §â œâ Šâ â žâ ‘" }, { "input": "multivitamin", "output": "â â ¥â ‡â žâ Šâ §â Šâ žâ â â ”" }, { "input": "multivitamin's", "output": "â â ¥â ‡â žâ Šâ §â Šâ žâ â â ”â „â Ž" }, { "input": "multivitamins", "output": "â â ¥â ‡â žâ Šâ §â Šâ žâ â â ”â Ž" }, { "input": "mum", "output": "â â ¥â " }, { "input": "mum's", "output": "â â ¥â â „â Ž" }, { "input": "mumble", "output": "â â ¥â â ¼" }, { "input": "mumble's", "output": "â â ¥â â ¼â „â Ž" }, { "input": "mumbled", "output": "â â ¥â â ¼â ™" }, { "input": "mumbler", "output": "â â ¥â â ¼â —" }, { "input": "mumbler's", "output": "â â ¥â â ¼â —â „â Ž" }, { "input": "mumblers", "output": "â â ¥â â ¼â —â Ž" }, { "input": "mumbles", "output": "â â ¥â â ¼â Ž" }, { "input": "mumbletypeg", "output": "â â ¥â â ¼â žâ ½â â ‘â ›" }, { "input": "mumbletypeg's", "output": "â â ¥â â ¼â žâ ½â â ‘⠛⠄⠎" }, { "input": "mumbling", "output": "â â ¥â â ƒâ ‡â Œ" }, { "input": "mummer", "output": "â â ¥â â â »" }, { "input": "mummer's", "output": "â â ¥â â â »â „â Ž" }, { "input": "mummers", "output": "â â ¥â â â »â Ž" }, { "input": "mummery", "output": "â â ¥â â â »â ½" }, { "input": "mummery's", "output": "â â ¥â â â »â ½â „â Ž" }, { "input": "mummies", "output": "â â ¥â â â Šâ ‘â Ž" }, { "input": "mummification", "output": "â â ¥â â â Šâ ‹â Šâ ‰â  â " }, { "input": "mummification's", "output": "â â ¥â â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "mummified", "output": "â â ¥â â â Šâ ‹â Šâ «" }, { "input": "mummifies", "output": "â â ¥â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "mummify", "output": "â â ¥â â â Šâ ‹â ½" }, { "input": "mummifying", "output": "â â ¥â â â Šâ ‹â ½â Œ" }, { "input": "mummy", "output": "â â ¥â â â ½" }, { "input": "mummy's", "output": "â â ¥â â â ½â „â Ž" }, { "input": "mumps", "output": "â â ¥â â â Ž" }, { "input": "mumps's", "output": "â â ¥â â â Žâ „â Ž" }, { "input": "mums", "output": "â â ¥â â Ž" }, { "input": "munch", "output": "â â ¥â â ¡" }, { "input": "munched", "output": "â â ¥â â ¡â «" }, { "input": "munches", "output": "â â ¥â â ¡â ‘â Ž" }, { "input": "munchies", "output": "â â ¥â â ¡â Šâ ‘â Ž" }, { "input": "munchies's", "output": "â â ¥â â ¡â Šâ ‘â Žâ „â Ž" }, { "input": "munching", "output": "â â ¥â â ¡â Œ" }, { "input": "munchkin", "output": "â â ¥â â ¡â …â ”" }, { "input": "munchkin's", "output": "â â ¥â â ¡â …⠔⠄⠎" }, { "input": "munchkins", "output": "â â ¥â â ¡â …⠔⠎" }, { "input": "mundane", "output": "â â ¥â â ™â â â ‘" }, { "input": "mundanely", "output": "â â ¥â â ™â â â ‘⠇⠽" }, { "input": "municipal", "output": "â â ¥â â Šâ ‰â Šâ â â ‡" }, { "input": "municipal's", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â „â Ž" }, { "input": "municipalities", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "municipality", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â °â ½" }, { "input": "municipality's", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â °â ½â „â Ž" }, { "input": "municipally", "output": "â â ¥â â Šâ ‰â Šâ â  â ½" }, { "input": "municipals", "output": "â â ¥â â Šâ ‰â Šâ â â ‡â Ž" }, { "input": "munificence", "output": "â â ¥â â Šâ ‹â Šâ ‰â °â ‘" }, { "input": "munificence's", "output": "â â ¥â â Šâ ‹â Šâ ‰â °â ‘â „â Ž" }, { "input": "munificent", "output": "â â ¥â â Šâ ‹â Šâ ‰â ¢â ž" }, { "input": "munificently", "output": "â â ¥â â Šâ ‹â Šâ ‰â ¢â žâ ‡â ½" }, { "input": "munition", "output": "â â ¥â â Šâ °â " }, { "input": "munition's", "output": "â â ¥â â Šâ °â â „â Ž" }, { "input": "munitioned", "output": "â â ¥â â Šâ °â â «" }, { "input": "munitioning", "output": "â â ¥â â Šâ °â â Œ" }, { "input": "munitions", "output": "â â ¥â â Šâ °â â Ž" }, { "input": "mural", "output": "â â ¥â —â â ‡" }, { "input": "mural's", "output": "â â ¥â —â â ‡â „â Ž" }, { "input": "muralist", "output": "â â ¥â —â â ‡â Šâ Œ" }, { "input": "muralist's", "output": "â â ¥â —â â ‡â Šâ Œâ „â Ž" }, { "input": "muralists", "output": "â â ¥â —â â ‡â Šâ Œâ Ž" }, { "input": "murals", "output": "â â ¥â —â â ‡â Ž" }, { "input": "murder", "output": "â â ¥â —⠙⠻" }, { "input": "murder's", "output": "â â ¥â —⠙⠻⠄⠎" }, { "input": "murdered", "output": "â â ¥â —⠙⠻⠫" }, { "input": "murderer", "output": "â â ¥â —⠙⠻⠻" }, { "input": "murderer's", "output": "â â ¥â —⠙⠻⠻⠄⠎" }, { "input": "murderers", "output": "â â ¥â —⠙⠻⠻⠎" }, { "input": "murderess", "output": "â â ¥â —⠙⠻⠑⠎⠎" }, { "input": "murderess's", "output": "â â ¥â —⠙⠻⠑⠎⠎⠄⠎" }, { "input": "murderesses", "output": "â â ¥â —⠙⠻⠑⠎⠎⠑⠎" }, { "input": "murdering", "output": "â â ¥â —⠙⠻⠌" }, { "input": "murderous", "output": "â â ¥â —⠙⠻⠳⠎" }, { "input": "murderously", "output": "â â ¥â —⠙⠻⠳⠎⠇⠽" }, { "input": "murders", "output": "â â ¥â —⠙⠻⠎" }, { "input": "murk", "output": "â â ¥â —â …" }, { "input": "murk's", "output": "â â ¥â —â …â „â Ž" }, { "input": "murkier", "output": "â â ¥â —â …â Šâ »" }, { "input": "murkiest", "output": "â â ¥â —â …â Šâ ‘â Œ" }, { "input": "murkily", "output": "â â ¥â —⠅⠊⠇⠽" }, { "input": "murkiness", "output": "â â ¥â —â …â Šâ °â Ž" }, { "input": "murkiness's", "output": "â â ¥â —â …â Šâ °â Žâ „â Ž" }, { "input": "murks", "output": "â â ¥â —â …â Ž" }, { "input": "murky", "output": "â â ¥â —â …â ½" }, { "input": "murmur", "output": "â â ¥â —â â ¥â —" }, { "input": "murmur's", "output": "â â ¥â —â â ¥â —â „â Ž" }, { "input": "murmured", "output": "â â ¥â —â â ¥â —â «" }, { "input": "murmurer", "output": "â â ¥â —â â ¥â —â »" }, { "input": "murmurer's", "output": "â â ¥â —â â ¥â —⠻⠄⠎" }, { "input": "murmurers", "output": "â â ¥â —â â ¥â —⠻⠎" }, { "input": "murmuring", "output": "â â ¥â —â â ¥â —â Œ" }, { "input": "murmurous", "output": "â â ¥â —â â ¥â —⠳⠎" }, { "input": "murmurs", "output": "â â ¥â —â â ¥â —â Ž" }, { "input": "murrain", "output": "â â ¥â —â —â â ”" }, { "input": "murrain's", "output": "â â ¥â —â —â â ”â „â Ž" }, { "input": "muscat", "output": "â â ¥â Žâ ‰â â ž" }, { "input": "muscat's", "output": "â â ¥â Žâ ‰â â žâ „â Ž" }, { "input": "muscatel", "output": "â â ¥â Žâ ‰â â žâ ‘â ‡" }, { "input": "muscatel's", "output": "â â ¥â Žâ ‰â â žâ ‘⠇⠄⠎" }, { "input": "muscatels", "output": "â â ¥â Žâ ‰â â žâ ‘⠇⠎" }, { "input": "muscats", "output": "â â ¥â Žâ ‰â â žâ Ž" }, { "input": "muscle", "output": "â â ¥â Žâ ‰â ‡â ‘" }, { "input": "muscle's", "output": "â â ¥â Žâ ‰â ‡â ‘â „â Ž" }, { "input": "musclebound", "output": "â â ¥â Žâ ‰â ‡â ‘⠃⠨⠙" }, { "input": "muscled", "output": "â â ¥â Žâ ‰â ‡â «" }, { "input": "muscles", "output": "â â ¥â Žâ ‰â ‡â ‘â Ž" }, { "input": "muscling", "output": "â â ¥â Žâ ‰â ‡â Œ" }, { "input": "muscular", "output": "â â ¥â Žâ ‰â ¥â ‡â œ" }, { "input": "muscularity", "output": "â â ¥â Žâ ‰â ¥â ‡â œâ °â ½" }, { "input": "muscularity's", "output": "â â ¥â Žâ ‰â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "muscularly", "output": "â â ¥â Žâ ‰â ¥â ‡â œâ ‡â ½" }, { "input": "musculature", "output": "â â ¥â Žâ ‰â ¥â ‡â â žâ ¥â —â ‘" }, { "input": "musculature's", "output": "â â ¥â Žâ ‰â ¥â ‡â â žâ ¥â —â ‘â „â Ž" }, { "input": "muse", "output": "â â ¥â Žâ ‘" }, { "input": "muse's", "output": "â â ¥â Žâ ‘â „â Ž" }, { "input": "mused", "output": "â â ¥â Žâ «" }, { "input": "muses", "output": "â â ¥â Žâ ‘â Ž" }, { "input": "musette", "output": "â â ¥â Žâ ‘â žâ žâ ‘" }, { "input": "musette's", "output": "â â ¥â Žâ ‘â žâ žâ ‘â „â Ž" }, { "input": "musettes", "output": "â â ¥â Žâ ‘â žâ žâ ‘â Ž" }, { "input": "museum", "output": "â â ¥â Žâ ‘â ¥â " }, { "input": "museum's", "output": "â â ¥â Žâ ‘â ¥â â „â Ž" }, { "input": "museums", "output": "â â ¥â Žâ ‘â ¥â â Ž" }, { "input": "mush", "output": "â â ¥â ©" }, { "input": "mush's", "output": "â â ¥â ©â „â Ž" }, { "input": "mushed", "output": "â â ¥â ©â «" }, { "input": "mushes", "output": "â â ¥â ©â ‘â Ž" }, { "input": "mushier", "output": "â â ¥â ©â Šâ »" }, { "input": "mushiest", "output": "â â ¥â ©â Šâ ‘â Œ" }, { "input": "mushiness", "output": "â â ¥â ©â Šâ °â Ž" }, { "input": "mushiness's", "output": "â â ¥â ©â Šâ °â Žâ „â Ž" }, { "input": "mushing", "output": "â â ¥â ©â Œ" }, { "input": "mushroom", "output": "â â ¥â ©â —â •â •â " }, { "input": "mushroom's", "output": "â â ¥â ©â —â •â •â â „â Ž" }, { "input": "mushroomed", "output": "â â ¥â ©â —â •â •â â «" }, { "input": "mushrooming", "output": "â â ¥â ©â —â •â •â â Œ" }, { "input": "mushrooms", "output": "â â ¥â ©â —â •â •â â Ž" }, { "input": "mushy", "output": "â â ¥â ©â ½" }, { "input": "music", "output": "â â ¥â Žâ Šâ ‰" }, { "input": "music's", "output": "â â ¥â Žâ Šâ ‰â „â Ž" }, { "input": "musical", "output": "â â ¥â Žâ Šâ ‰â â ‡" }, { "input": "musical's", "output": "â â ¥â Žâ Šâ ‰â â ‡â „â Ž" }, { "input": "musicale", "output": "â â ¥â Žâ Šâ ‰â â ‡â ‘" }, { "input": "musicale's", "output": "â â ¥â Žâ Šâ ‰â â ‡â ‘â „â Ž" }, { "input": "musicales", "output": "â â ¥â Žâ Šâ ‰â â ‡â ‘â Ž" }, { "input": "musicality's", "output": "â â ¥â Žâ Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "musically", "output": "â â ¥â Žâ Šâ ‰â  â ½" }, { "input": "musicals", "output": "â â ¥â Žâ Šâ ‰â â ‡â Ž" }, { "input": "musician", "output": "â â ¥â Žâ Šâ ‰â Šâ â " }, { "input": "musician's", "output": "â â ¥â Žâ Šâ ‰â Šâ â â „â Ž" }, { "input": "musicianly", "output": "â â ¥â Žâ Šâ ‰â Šâ â â ‡â ½" }, { "input": "musicians", "output": "â â ¥â Žâ Šâ ‰â Šâ â â Ž" }, { "input": "musicianship", "output": "â â ¥â Žâ Šâ ‰â Šâ â â ©â Šâ " }, { "input": "musicianship's", "output": "â â ¥â Žâ Šâ ‰â Šâ â â ©â Šâ â „â Ž" }, { "input": "musicological", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "musicologist", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠊⠌" }, { "input": "musicologist's", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "musicologists", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠊⠌⠎" }, { "input": "musicology", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠽" }, { "input": "musicology's", "output": "â â ¥â Žâ Šâ ‰â •⠇⠕⠛⠽⠄⠎" }, { "input": "musing", "output": "â â ¥â Žâ Œ" }, { "input": "musing's", "output": "â â ¥â Žâ Œâ „â Ž" }, { "input": "musingly", "output": "â â ¥â Žâ Œâ ‡â ½" }, { "input": "musings", "output": "â â ¥â Žâ Œâ Ž" }, { "input": "musk", "output": "â â ¥â Žâ …" }, { "input": "musk's", "output": "â â ¥â Žâ …â „â Ž" }, { "input": "muskeg", "output": "â â ¥â Žâ …â ‘â ›" }, { "input": "muskeg's", "output": "â â ¥â Žâ …⠑⠛⠄⠎" }, { "input": "muskegs", "output": "â â ¥â Žâ …⠑⠛⠎" }, { "input": "muskellunge", "output": "â â ¥â Žâ …⠑⠇⠇⠥â â ›â ‘" }, { "input": "muskellunge's", "output": "â â ¥â Žâ …⠑⠇⠇⠥â â ›â ‘â „â Ž" }, { "input": "muskellunges", "output": "â â ¥â Žâ …⠑⠇⠇⠥â â ›â ‘â Ž" }, { "input": "musket", "output": "â â ¥â Žâ …â ‘â ž" }, { "input": "musket's", "output": "â â ¥â Žâ …â ‘â žâ „â Ž" }, { "input": "musketeer", "output": "â â ¥â Žâ …â ‘â žâ ‘â »" }, { "input": "musketeer's", "output": "â â ¥â Žâ …⠑⠞⠑⠻⠄⠎" }, { "input": "musketeers", "output": "â â ¥â Žâ …⠑⠞⠑⠻⠎" }, { "input": "musketry", "output": "â â ¥â Žâ …â ‘â žâ —â ½" }, { "input": "musketry's", "output": "â â ¥â Žâ …⠑⠞⠗⠽⠄⠎" }, { "input": "muskets", "output": "â â ¥â Žâ …â ‘â žâ Ž" }, { "input": "muskie", "output": "â â ¥â Žâ …â Šâ ‘" }, { "input": "muskie's", "output": "â â ¥â Žâ …â Šâ ‘â „â Ž" }, { "input": "muskier", "output": "â â ¥â Žâ …â Šâ »" }, { "input": "muskies", "output": "â â ¥â Žâ …â Šâ ‘â Ž" }, { "input": "muskiest", "output": "â â ¥â Žâ …â Šâ ‘â Œ" }, { "input": "muskiness", "output": "â â ¥â Žâ …â Šâ °â Ž" }, { "input": "muskiness's", "output": "â â ¥â Žâ …â Šâ °â Žâ „â Ž" }, { "input": "muskmelon", "output": "â â ¥â Žâ …â â ‘⠇⠕â " }, { "input": "muskmelon's", "output": "â â ¥â Žâ …â â ‘⠇⠕â â „â Ž" }, { "input": "muskmelons", "output": "â â ¥â Žâ …â â ‘⠇⠕â â Ž" }, { "input": "muskox", "output": "â â ¥â Žâ …â •â ­" }, { "input": "muskox's", "output": "â â ¥â Žâ …â •â ­â „â Ž" }, { "input": "muskoxen", "output": "â â ¥â Žâ …â •â ­â ¢" }, { "input": "muskrat", "output": "â â ¥â Žâ …â —â â ž" }, { "input": "muskrat's", "output": "â â ¥â Žâ …â —â â žâ „â Ž" }, { "input": "muskrats", "output": "â â ¥â Žâ …â —â â žâ Ž" }, { "input": "musky", "output": "â â ¥â Žâ …â ½" }, { "input": "muslin", "output": "â â ¥â Žâ ‡â ”" }, { "input": "muslin's", "output": "â â ¥â Žâ ‡â ”â „â Ž" }, { "input": "muss", "output": "â â ¥â Žâ Ž" }, { "input": "muss's", "output": "â â ¥â Žâ Žâ „â Ž" }, { "input": "mussed", "output": "â â ¥â Žâ Žâ «" }, { "input": "mussel", "output": "â â ¥â Žâ Žâ ‘â ‡" }, { "input": "mussel's", "output": "â â ¥â Žâ Žâ ‘⠇⠄⠎" }, { "input": "mussels", "output": "â â ¥â Žâ Žâ ‘⠇⠎" }, { "input": "musses", "output": "â â ¥â Žâ Žâ ‘â Ž" }, { "input": "mussier", "output": "â â ¥â Žâ Žâ Šâ »" }, { "input": "mussiest", "output": "â â ¥â Žâ Žâ Šâ ‘â Œ" }, { "input": "mussing", "output": "â â ¥â Žâ Žâ Œ" }, { "input": "mussy", "output": "â â ¥â Žâ Žâ ½" }, { "input": "must", "output": "â â Œ" }, { "input": "must's", "output": "â â Œâ „â Ž" }, { "input": "mustache", "output": "â â ¥â Œâ â ¡â ‘" }, { "input": "mustache's", "output": "â â ¥â Œâ â ¡â ‘â „â Ž" }, { "input": "mustached", "output": "â â ¥â Œâ â ¡â «" }, { "input": "mustaches", "output": "â â ¥â Œâ â ¡â ‘â Ž" }, { "input": "mustachio", "output": "â â ¥â Œâ â ¡â Šâ •" }, { "input": "mustachio's", "output": "â â ¥â Œâ â ¡â Šâ •â „â Ž" }, { "input": "mustachios", "output": "â â ¥â Œâ â ¡â Šâ •â Ž" }, { "input": "mustang", "output": "â â ¥â Œâ â â ›" }, { "input": "mustang's", "output": "â â ¥â Œâ â â ›â „â Ž" }, { "input": "mustangs", "output": "â â ¥â Œâ â â ›â Ž" }, { "input": "mustard", "output": "â â ¥â Œâ œâ ™" }, { "input": "mustard's", "output": "â â ¥â Œâ œâ ™â „â Ž" }, { "input": "muster", "output": "â â ¥â Œâ »" }, { "input": "muster's", "output": "â â ¥â Œâ »â „â Ž" }, { "input": "mustered", "output": "â â ¥â Œâ »â «" }, { "input": "mustering", "output": "â â ¥â Œâ »â Œ" }, { "input": "musters", "output": "â â ¥â Œâ »â Ž" }, { "input": "mustier", "output": "â â ¥â Œâ Šâ »" }, { "input": "mustiest", "output": "â â ¥â Œâ Šâ ‘â Œ" }, { "input": "mustily", "output": "â â ¥â Œâ Šâ ‡â ½" }, { "input": "mustiness", "output": "â â Œâ Šâ °â Ž" }, { "input": "mustiness's", "output": "â â Œâ Šâ °â Žâ „â Ž" }, { "input": "musts", "output": "â â Œâ Ž" }, { "input": "musty", "output": "â â Œâ ½" }, { "input": "mutability", "output": "â â ¥â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "mutability's", "output": "â â ¥â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "mutable", "output": "â â ¥â žâ â ¼" }, { "input": "mutably", "output": "â â ¥â žâ â ƒâ ‡â ½" }, { "input": "mutagen", "output": "â â ¥â žâ â ›â ¢" }, { "input": "mutagen's", "output": "â â ¥â žâ â ›â ¢â „â Ž" }, { "input": "mutagens", "output": "â â ¥â žâ â ›â ¢â Ž" }, { "input": "mutant", "output": "â â ¥â žâ â â ž" }, { "input": "mutant's", "output": "â â ¥â žâ â â žâ „â Ž" }, { "input": "mutants", "output": "â â ¥â žâ â â žâ Ž" }, { "input": "mutate", "output": "â â ¥â žâ â žâ ‘" }, { "input": "mutated", "output": "â â ¥â žâ â žâ «" }, { "input": "mutates", "output": "â â ¥â žâ â žâ ‘â Ž" }, { "input": "mutating", "output": "â â ¥â žâ â žâ Œ" }, { "input": "mutation", "output": "â â ¥â žâ  â " }, { "input": "mutation's", "output": "â â ¥â žâ  â â „â Ž" }, { "input": "mutational", "output": "â â ¥â žâ  â â â ‡" }, { "input": "mutations", "output": "â â ¥â žâ  â â Ž" }, { "input": "mutative", "output": "â â ¥â žâ â žâ Šâ §â ‘" }, { "input": "mute", "output": "â â ¥â žâ ‘" }, { "input": "mute's", "output": "â â ¥â žâ ‘â „â Ž" }, { "input": "muted", "output": "â â ¥â žâ «" }, { "input": "mutely", "output": "â â ¥â žâ ‘⠇⠽" }, { "input": "muteness", "output": "â â ¥â žâ ‘â °â Ž" }, { "input": "muteness's", "output": "â â ¥â žâ ‘â °â Žâ „â Ž" }, { "input": "muter", "output": "â â ¥â žâ »" }, { "input": "mutes", "output": "â â ¥â žâ ‘â Ž" }, { "input": "mutest", "output": "â â ¥â žâ ‘â Œ" }, { "input": "mutilate", "output": "â â ¥â žâ Šâ ‡â â žâ ‘" }, { "input": "mutilated", "output": "â â ¥â žâ Šâ ‡â â žâ «" }, { "input": "mutilates", "output": "â â ¥â žâ Šâ ‡â â žâ ‘â Ž" }, { "input": "mutilating", "output": "â â ¥â žâ Šâ ‡â â žâ Œ" }, { "input": "mutilation", "output": "â â ¥â žâ Šâ ‡â  â " }, { "input": "mutilation's", "output": "â â ¥â žâ Šâ ‡â  â â „â Ž" }, { "input": "mutilations", "output": "â â ¥â žâ Šâ ‡â  â â Ž" }, { "input": "mutilator", "output": "â â ¥â žâ Šâ ‡â â žâ •â —" }, { "input": "mutilator's", "output": "â â ¥â žâ Šâ ‡â â žâ •â —â „â Ž" }, { "input": "mutilators", "output": "â â ¥â žâ Šâ ‡â â žâ •â —â Ž" }, { "input": "mutineer", "output": "â â ¥â žâ ”â ‘â »" }, { "input": "mutineer's", "output": "â â ¥â žâ ”⠑⠻⠄⠎" }, { "input": "mutineers", "output": "â â ¥â žâ ”⠑⠻⠎" }, { "input": "muting", "output": "â â ¥â žâ Œ" }, { "input": "mutinied", "output": "â â ¥â žâ ”â Šâ «" }, { "input": "mutinies", "output": "â â ¥â žâ ”â Šâ ‘â Ž" }, { "input": "mutinous", "output": "â â ¥â žâ ”⠳⠎" }, { "input": "mutinously", "output": "â â ¥â žâ ”⠳⠎⠇⠽" }, { "input": "mutiny", "output": "â â ¥â žâ ”â ½" }, { "input": "mutiny's", "output": "â â ¥â žâ ”⠽⠄⠎" }, { "input": "mutinying", "output": "â â ¥â žâ ”⠽⠌" }, { "input": "mutt", "output": "â â ¥â žâ ž" }, { "input": "mutt's", "output": "â â ¥â žâ žâ „â Ž" }, { "input": "mutter", "output": "â â ¥â žâ žâ »" }, { "input": "mutter's", "output": "â â ¥â žâ žâ »â „â Ž" }, { "input": "muttered", "output": "â â ¥â žâ žâ »â «" }, { "input": "mutterer", "output": "â â ¥â žâ žâ »â »" }, { "input": "mutterer's", "output": "â â ¥â žâ žâ »â »â „â Ž" }, { "input": "mutterers", "output": "â â ¥â žâ žâ »â »â Ž" }, { "input": "muttering", "output": "â â ¥â žâ žâ »â Œ" }, { "input": "mutters", "output": "â â ¥â žâ žâ »â Ž" }, { "input": "mutton", "output": "â â ¥â žâ žâ •â " }, { "input": "mutton's", "output": "â â ¥â žâ žâ •â â „â Ž" }, { "input": "muttonchops", "output": "â â ¥â žâ žâ •â â ¡â •â â Ž" }, { "input": "muttonchops's", "output": "â â ¥â žâ žâ •â â ¡â •â â Žâ „â Ž" }, { "input": "mutts", "output": "â â ¥â žâ žâ Ž" }, { "input": "mutual", "output": "â â ¥â žâ ¥â â ‡" }, { "input": "mutuality", "output": "â â ¥â žâ ¥â â ‡â °â ½" }, { "input": "mutuality's", "output": "â â ¥â žâ ¥â â ‡â °â ½â „â Ž" }, { "input": "mutually", "output": "â â ¥â žâ ¥â  â ½" }, { "input": "muumuu", "output": "â â ¥â ¥â â ¥â ¥" }, { "input": "muumuu's", "output": "â â ¥â ¥â â ¥â ¥â „â Ž" }, { "input": "muumuus", "output": "â â ¥â ¥â â ¥â ¥â Ž" }, { "input": "muzzle", "output": "â â ¥â µâ µâ ‡â ‘" }, { "input": "muzzle's", "output": "â â ¥â µâ µâ ‡â ‘â „â Ž" }, { "input": "muzzled", "output": "â â ¥â µâ µâ ‡â «" }, { "input": "muzzles", "output": "â â ¥â µâ µâ ‡â ‘â Ž" }, { "input": "muzzling", "output": "â â ¥â µâ µâ ‡â Œ" }, { "input": "my", "output": "â â ½" }, { "input": "mycologist", "output": "â â ½â ‰â •⠇⠕⠛⠊⠌" }, { "input": "mycologist's", "output": "â â ½â ‰â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "mycologists", "output": "â â ½â ‰â •⠇⠕⠛⠊⠌⠎" }, { "input": "mycology's", "output": "â â ½â ‰â •⠇⠕⠛⠽⠄⠎" }, { "input": "myelitis", "output": "â â ½â ‘⠇⠊⠞⠊⠎" }, { "input": "myelitis's", "output": "â â ½â ‘⠇⠊⠞⠊⠎⠄⠎" }, { "input": "myna", "output": "â â ½â â " }, { "input": "myna's", "output": "â â ½â â â „â Ž" }, { "input": "mynas", "output": "â â ½â â â Ž" }, { "input": "myopia", "output": "â â ½â •â â Šâ " }, { "input": "myopia's", "output": "â â ½â •â â Šâ â „â Ž" }, { "input": "myopic", "output": "â â ½â •â â Šâ ‰" }, { "input": "myriad", "output": "â â ½â —â Šâ â ™" }, { "input": "myriad's", "output": "â â ½â —â Šâ â ™â „â Ž" }, { "input": "myriads", "output": "â â ½â —â Šâ â ™â Ž" }, { "input": "myrmidon", "output": "â â ½â —â â Šâ ™â •â " }, { "input": "myrmidon's", "output": "â â ½â —â â Šâ ™â •â â „â Ž" }, { "input": "myrmidons", "output": "â â ½â —â â Šâ ™â •â â Ž" }, { "input": "myrrh", "output": "â â ½â —â —â “" }, { "input": "myrrh's", "output": "â â ½â —â —â “â „â Ž" }, { "input": "myrtle", "output": "â â ½â —⠞⠇⠑" }, { "input": "myrtle's", "output": "â â ½â —⠞⠇⠑⠄⠎" }, { "input": "myrtles", "output": "â â ½â —⠞⠇⠑⠎" }, { "input": "mys", "output": "â â ½â Ž" }, { "input": "myself", "output": "â â ½â ‹" }, { "input": "mysteries", "output": "â â ½â Œâ »â Šâ ‘â Ž" }, { "input": "mysterious", "output": "â â ½â Œâ »â Šâ ³â Ž" }, { "input": "mysteriously", "output": "â â ½â Œâ »â Šâ ³â Žâ ‡â ½" }, { "input": "mysteriousness", "output": "â â ½â Œâ »â Šâ ³â Žâ °â Ž" }, { "input": "mysteriousness's", "output": "â â ½â Œâ »â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "mystery", "output": "â â ½â Œâ »â ½" }, { "input": "mystery's", "output": "â â ½â Œâ »â ½â „â Ž" }, { "input": "mystic", "output": "â â ½â Œâ Šâ ‰" }, { "input": "mystic's", "output": "â â ½â Œâ Šâ ‰â „â Ž" }, { "input": "mystical", "output": "â â ½â Œâ Šâ ‰â â ‡" }, { "input": "mystically", "output": "â â ½â Œâ Šâ ‰â  â ½" }, { "input": "mysticism", "output": "â â ½â Œâ Šâ ‰â Šâ Žâ " }, { "input": "mysticism's", "output": "â â ½â Œâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "mystics", "output": "â â ½â Œâ Šâ ‰â Ž" }, { "input": "mystification", "output": "â â ½â Œâ Šâ ‹â Šâ ‰â  â " }, { "input": "mystification's", "output": "â â ½â Œâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "mystified", "output": "â â ½â Œâ Šâ ‹â Šâ «" }, { "input": "mystifies", "output": "â â ½â Œâ Šâ ‹â Šâ ‘â Ž" }, { "input": "mystify", "output": "â â ½â Œâ Šâ ‹â ½" }, { "input": "mystifying", "output": "â â ½â Œâ Šâ ‹â ½â Œ" }, { "input": "mystique", "output": "â â ½â Œâ Šâ Ÿâ ¥â ‘" }, { "input": "mystique's", "output": "â â ½â Œâ Šâ Ÿâ ¥â ‘â „â Ž" }, { "input": "myth", "output": "â â ½â ¹" }, { "input": "myth's", "output": "â â ½â ¹â „â Ž" }, { "input": "mythic", "output": "â â ½â ¹â Šâ ‰" }, { "input": "mythical", "output": "â â ½â ¹â Šâ ‰â â ‡" }, { "input": "mythological", "output": "â â ½â ¹â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "mythologies", "output": "â â ½â ¹â •⠇⠕⠛⠊⠑⠎" }, { "input": "mythologist", "output": "â â ½â ¹â •⠇⠕⠛⠊⠌" }, { "input": "mythologist's", "output": "â â ½â ¹â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "mythologists", "output": "â â ½â ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "mythologize", "output": "â â ½â ¹â •⠇⠕⠛⠊⠵⠑" }, { "input": "mythologized", "output": "â â ½â ¹â •⠇⠕⠛⠊⠵⠫" }, { "input": "mythologizes", "output": "â â ½â ¹â •⠇⠕⠛⠊⠵⠑⠎" }, { "input": "mythologizing", "output": "â â ½â ¹â •⠇⠕⠛⠊⠵⠌" }, { "input": "mythology", "output": "â â ½â ¹â •⠇⠕⠛⠽" }, { "input": "mythology's", "output": "â â ½â ¹â •⠇⠕⠛⠽⠄⠎" }, { "input": "myths", "output": "â â ½â ¹â Ž" }, { "input": "n", "output": "â °â " }, { "input": "nab", "output": "â â â ƒ" }, { "input": "nabbed", "output": "â â â †â «" }, { "input": "nabbing", "output": "â â â †â Œ" }, { "input": "nabob", "output": "â â â ƒâ •â ƒ" }, { "input": "nabob's", "output": "â â â ƒâ •⠃⠄⠎" }, { "input": "nabobs", "output": "â â â ƒâ •⠃⠎" }, { "input": "nabs", "output": "â â â ƒâ Ž" }, { "input": "nacelle", "output": "â â â ‰â ‘⠇⠇⠑" }, { "input": "nacelle's", "output": "â â â ‰â ‘⠇⠇⠑⠄⠎" }, { "input": "nacelles", "output": "â â â ‰â ‘⠇⠇⠑⠎" }, { "input": "nacho", "output": "â â â ¡â •" }, { "input": "nacho's", "output": "â â â ¡â •â „â Ž" }, { "input": "nachos", "output": "â â â ¡â •â Ž" }, { "input": "nacre", "output": "â â â ‰â —â ‘" }, { "input": "nacre's", "output": "â â â ‰â —â ‘â „â Ž" }, { "input": "nacreous", "output": "â â â ‰â —⠑⠳⠎" }, { "input": "nadir", "output": "â â â ™â Šâ —" }, { "input": "nadir's", "output": "â â â ™â Šâ —â „â Ž" }, { "input": "nadirs", "output": "â â â ™â Šâ —â Ž" }, { "input": "nag", "output": "â â â ›" }, { "input": "nag's", "output": "â â â ›â „â Ž" }, { "input": "nagged", "output": "â â â ¶â «" }, { "input": "nagger", "output": "â â â ¶â »" }, { "input": "nagger's", "output": "â â â ¶â »â „â Ž" }, { "input": "naggers", "output": "â â â ¶â »â Ž" }, { "input": "nagging", "output": "â â â ¶â Œ" }, { "input": "nags", "output": "â â â ›â Ž" }, { "input": "naiad", "output": "â â â Šâ â ™" }, { "input": "naiad's", "output": "â â â Šâ â ™â „â Ž" }, { "input": "naiads", "output": "â â â Šâ â ™â Ž" }, { "input": "naif", "output": "â â â Šâ ‹" }, { "input": "naif's", "output": "â â â Šâ ‹â „â Ž" }, { "input": "naifs", "output": "â â â Šâ ‹â Ž" }, { "input": "nail", "output": "â â â Šâ ‡" }, { "input": "nail's", "output": "â â â Šâ ‡â „â Ž" }, { "input": "nailbrush", "output": "â â â Šâ ‡â ƒâ —⠥⠩" }, { "input": "nailbrush's", "output": "â â â Šâ ‡â ƒâ —⠥⠩⠄⠎" }, { "input": "nailbrushes", "output": "â â â Šâ ‡â ƒâ —⠥⠩⠑⠎" }, { "input": "nailed", "output": "â â â Šâ ‡â «" }, { "input": "nailing", "output": "â â â Šâ ‡â Œ" }, { "input": "nails", "output": "â â â Šâ ‡â Ž" }, { "input": "naive", "output": "â â â Šâ §â ‘" }, { "input": "naively", "output": "â â â Šâ §â ‘⠇⠽" }, { "input": "naiver", "output": "â â â Šâ §â »" }, { "input": "naivest", "output": "â â â Šâ §â ‘â Œ" }, { "input": "naivety", "output": "â â â Šâ §â ‘â žâ ½" }, { "input": "naivety's", "output": "â â â Šâ §â ‘⠞⠽⠄⠎" }, { "input": "naked", "output": "â â â …â «" }, { "input": "nakedly", "output": "â â â …⠫⠇⠽" }, { "input": "nakedness", "output": "â â â …â «â °â Ž" }, { "input": "nakedness's", "output": "â â â …â «â °â Žâ „â Ž" }, { "input": "name", "output": "â â " }, { "input": "name's", "output": "â â â „â Ž" }, { "input": "nameable", "output": "â â â â ¼" }, { "input": "named", "output": "â â â ™" }, { "input": "namedrop", "output": "â â â ™â —â •â " }, { "input": "namedropping", "output": "â â â ™â —â •â â â Œ" }, { "input": "namedropping's", "output": "â â â ™â —â •â â â Œâ „â Ž" }, { "input": "nameless", "output": "â â â ¨â Ž" }, { "input": "namelessly", "output": "â â â ¨â Žâ ‡â ½" }, { "input": "namely", "output": "â â â ‡â ½" }, { "input": "names", "output": "â â â Ž" }, { "input": "namesake", "output": "â â â Žâ â …â ‘" }, { "input": "namesake's", "output": "â â â Žâ â …â ‘â „â Ž" }, { "input": "namesakes", "output": "â â â Žâ â …â ‘â Ž" }, { "input": "naming", "output": "â â â â Œ" }, { "input": "nannies", "output": "â â â â â Šâ ‘â Ž" }, { "input": "nanny", "output": "â â â â â ½" }, { "input": "nanny's", "output": "â â â â â ½â „â Ž" }, { "input": "nanosecond", "output": "â â â â •⠎⠑⠉⠕â â ™" }, { "input": "nanosecond's", "output": "â â â â •⠎⠑⠉⠕â â ™â „â Ž" }, { "input": "nanoseconds", "output": "â â â â •⠎⠑⠉⠕â â ™â Ž" }, { "input": "nap", "output": "â â â " }, { "input": "nap's", "output": "â â â â „â Ž" }, { "input": "napalm", "output": "â â â â â ‡â " }, { "input": "napalm's", "output": "â â â â â ‡â â „â Ž" }, { "input": "napalmed", "output": "â â â â â ‡â â «" }, { "input": "napalming", "output": "â â â â â ‡â â Œ" }, { "input": "napalms", "output": "â â â â â ‡â â Ž" }, { "input": "nape", "output": "â â â â ‘" }, { "input": "nape's", "output": "â â â â ‘â „â Ž" }, { "input": "napes", "output": "â â â â ‘â Ž" }, { "input": "naphtha", "output": "â â â â “â ¹â " }, { "input": "naphtha's", "output": "â â â â “â ¹â â „â Ž" }, { "input": "naphthalene", "output": "â â â â “â ¹â â ‡â ¢â ‘" }, { "input": "naphthalene's", "output": "â â â â “â ¹â â ‡â ¢â ‘â „â Ž" }, { "input": "napkin", "output": "â â â â …â ”" }, { "input": "napkin's", "output": "â â â â …⠔⠄⠎" }, { "input": "napkins", "output": "â â â â …⠔⠎" }, { "input": "napless", "output": "â â â â ¨â Ž" }, { "input": "napoleon", "output": "â â â â •⠇⠑⠕â " }, { "input": "napoleon's", "output": "â â â â •⠇⠑⠕â â „â Ž" }, { "input": "napoleons", "output": "â â â â •⠇⠑⠕â â Ž" }, { "input": "napped", "output": "â â â â â «" }, { "input": "napper", "output": "â â â â â »" }, { "input": "napper's", "output": "â â â â â »â „â Ž" }, { "input": "nappers", "output": "â â â â â »â Ž" }, { "input": "nappier", "output": "â â â â â Šâ »" }, { "input": "nappies", "output": "â â â â â Šâ ‘â Ž" }, { "input": "nappiest", "output": "â â â â â Šâ ‘â Œ" }, { "input": "napping", "output": "â â â â â Œ" }, { "input": "nappy", "output": "â â â â â ½" }, { "input": "nappy's", "output": "â â â â â ½â „â Ž" }, { "input": "naps", "output": "â â â â Ž" }, { "input": "narc", "output": "â â œâ ‰" }, { "input": "narc's", "output": "â â œâ ‰â „â Ž" }, { "input": "narcissism", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Žâ " }, { "input": "narcissism's", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Žâ â „â Ž" }, { "input": "narcissist", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œ" }, { "input": "narcissist's", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œâ „â Ž" }, { "input": "narcissistic", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œâ Šâ ‰" }, { "input": "narcissists", "output": "â â œâ ‰â Šâ Žâ Žâ Šâ Œâ Ž" }, { "input": "narcissus", "output": "â â œâ ‰â Šâ Žâ Žâ ¥â Ž" }, { "input": "narcissus's", "output": "â â œâ ‰â Šâ Žâ Žâ ¥â Žâ „â Ž" }, { "input": "narcolepsy's", "output": "â â œâ ‰â •⠇⠑â â Žâ ½â „â Ž" }, { "input": "narcoses", "output": "â â œâ ‰â •â Žâ ‘â Ž" }, { "input": "narcosis", "output": "â â œâ ‰â •â Žâ Šâ Ž" }, { "input": "narcosis's", "output": "â â œâ ‰â •â Žâ Šâ Žâ „â Ž" }, { "input": "narcotic", "output": "â â œâ ‰â •â žâ Šâ ‰" }, { "input": "narcotic's", "output": "â â œâ ‰â •⠞⠊⠉⠄⠎" }, { "input": "narcotics", "output": "â â œâ ‰â •⠞⠊⠉⠎" }, { "input": "narcotization", "output": "â â œâ ‰â •⠞⠊⠵⠠â " }, { "input": "narcotization's", "output": "â â œâ ‰â •⠞⠊⠵⠠â â „â Ž" }, { "input": "narcotize", "output": "â â œâ ‰â •⠞⠊⠵⠑" }, { "input": "narcotized", "output": "â â œâ ‰â •⠞⠊⠵⠫" }, { "input": "narcotizes", "output": "â â œâ ‰â •⠞⠊⠵⠑⠎" }, { "input": "narcotizing", "output": "â â œâ ‰â •⠞⠊⠵⠌" }, { "input": "narcs", "output": "â â œâ ‰â Ž" }, { "input": "nark", "output": "â â œâ …" }, { "input": "narrate", "output": "â â œâ —â â žâ ‘" }, { "input": "narrated", "output": "â â œâ —â â žâ «" }, { "input": "narrates", "output": "â â œâ —â â žâ ‘â Ž" }, { "input": "narrating", "output": "â â œâ —â â žâ Œ" }, { "input": "narration", "output": "â â œâ —â  â " }, { "input": "narration's", "output": "â â œâ —â  â â „â Ž" }, { "input": "narrations", "output": "â â œâ —â  â â Ž" }, { "input": "narrative", "output": "â â œâ —â â žâ Šâ §â ‘" }, { "input": "narrative's", "output": "â â œâ —â â žâ Šâ §â ‘â „â Ž" }, { "input": "narratives", "output": "â â œâ —â â žâ Šâ §â ‘â Ž" }, { "input": "narrator", "output": "â â œâ —â â žâ •â —" }, { "input": "narrator's", "output": "â â œâ —â â žâ •â —â „â Ž" }, { "input": "narrators", "output": "â â œâ —â â žâ •â —â Ž" }, { "input": "narrow", "output": "â â œâ —â ª" }, { "input": "narrow's", "output": "â â œâ —⠪⠄⠎" }, { "input": "narrowed", "output": "â â œâ —⠪⠫" }, { "input": "narrower", "output": "â â œâ —⠪⠻" }, { "input": "narrowest", "output": "â â œâ —⠪⠑⠌" }, { "input": "narrowing", "output": "â â œâ —⠪⠌" }, { "input": "narrowly", "output": "â â œâ —⠪⠇⠽" }, { "input": "narrowness", "output": "â â œâ —⠪⠰⠎" }, { "input": "narrowness's", "output": "â â œâ —⠪⠰⠎⠄⠎" }, { "input": "narrows", "output": "â â œâ —⠪⠎" }, { "input": "narwhal", "output": "â â œâ ±â â ‡" }, { "input": "narwhal's", "output": "â â œâ ±â â ‡â „â Ž" }, { "input": "narwhals", "output": "â â œâ ±â â ‡â Ž" }, { "input": "nary", "output": "â â œâ ½" }, { "input": "nasal", "output": "â â â Žâ â ‡" }, { "input": "nasal's", "output": "â â â Žâ â ‡â „â Ž" }, { "input": "nasality", "output": "â â â Žâ â ‡â °â ½" }, { "input": "nasality's", "output": "â â â Žâ â ‡â °â ½â „â Ž" }, { "input": "nasalization", "output": "â â â Žâ â ‡â Šâ µâ  â " }, { "input": "nasalization's", "output": "â â â Žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "nasalize", "output": "â â â Žâ â ‡â Šâ µâ ‘" }, { "input": "nasalized", "output": "â â â Žâ â ‡â Šâ µâ «" }, { "input": "nasalizes", "output": "â â â Žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "nasalizing", "output": "â â â Žâ â ‡â Šâ µâ Œ" }, { "input": "nasally", "output": "â â â Žâ  â ½" }, { "input": "nasals", "output": "â â â Žâ â ‡â Ž" }, { "input": "nascence", "output": "â â â Žâ ‰â °â ‘" }, { "input": "nascence's", "output": "â â â Žâ ‰â °â ‘â „â Ž" }, { "input": "nascent", "output": "â â â Žâ ‰â ¢â ž" }, { "input": "nastier", "output": "â â â Œâ Šâ »" }, { "input": "nastiest", "output": "â â â Œâ Šâ ‘â Œ" }, { "input": "nastily", "output": "â â â Œâ Šâ ‡â ½" }, { "input": "nastiness", "output": "â â â Œâ Šâ °â Ž" }, { "input": "nastiness's", "output": "â â â Œâ Šâ °â Žâ „â Ž" }, { "input": "nasturtium", "output": "â â â Œâ ¥â —â žâ Šâ ¥â " }, { "input": "nasturtium's", "output": "â â â Œâ ¥â —â žâ Šâ ¥â â „â Ž" }, { "input": "nasturtiums", "output": "â â â Œâ ¥â —â žâ Šâ ¥â â Ž" }, { "input": "nasty", "output": "â â â Œâ ½" }, { "input": "natal", "output": "â â â žâ â ‡" }, { "input": "nation", "output": "â â  â " }, { "input": "nation's", "output": "â â  â â „â Ž" }, { "input": "national", "output": "â â  â â â ‡" }, { "input": "national's", "output": "â â  â â â ‡â „â Ž" }, { "input": "nationalism", "output": "â â  â â â ‡â Šâ Žâ " }, { "input": "nationalism's", "output": "â â  â â â ‡â Šâ Žâ â „â Ž" }, { "input": "nationalist", "output": "â â  â â â ‡â Šâ Œ" }, { "input": "nationalist's", "output": "â â  â â â ‡â Šâ Œâ „â Ž" }, { "input": "nationalistic", "output": "â â  â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "nationalistically", "output": "â â  â â â ‡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "nationalists", "output": "â â  â â â ‡â Šâ Œâ Ž" }, { "input": "nationalities", "output": "â â  â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "nationality", "output": "â â  â â â ‡â °â ½" }, { "input": "nationality's", "output": "â â  â â â ‡â °â ½â „â Ž" }, { "input": "nationalization", "output": "â â  â â â ‡â Šâ µâ  â " }, { "input": "nationalization's", "output": "â â  â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "nationalizations", "output": "â â  â â â ‡â Šâ µâ  â â Ž" }, { "input": "nationalize", "output": "â â  â â â ‡â Šâ µâ ‘" }, { "input": "nationalized", "output": "â â  â â â ‡â Šâ µâ «" }, { "input": "nationalizes", "output": "â â  â â â ‡â Šâ µâ ‘â Ž" }, { "input": "nationalizing", "output": "â â  â â â ‡â Šâ µâ Œ" }, { "input": "nationally", "output": "â â  â â  â ½" }, { "input": "nationals", "output": "â â  â â â ‡â Ž" }, { "input": "nationhood's", "output": "â â  â â “⠕⠕⠙⠄⠎" }, { "input": "nations", "output": "â â  â â Ž" }, { "input": "nationwide", "output": "â â  â â ºâ Šâ ™â ‘" }, { "input": "native", "output": "â â â žâ Šâ §â ‘" }, { "input": "native's", "output": "â â â žâ Šâ §â ‘â „â Ž" }, { "input": "natives", "output": "â â â žâ Šâ §â ‘â Ž" }, { "input": "nativities", "output": "â â â žâ Šâ §â Šâ žâ Šâ ‘â Ž" }, { "input": "nativity", "output": "â â â žâ Šâ §â °â ½" }, { "input": "nativity's", "output": "â â â žâ Šâ §â °â ½â „â Ž" }, { "input": "nattier", "output": "â â â žâ žâ Šâ »" }, { "input": "nattiest", "output": "â â â žâ žâ Šâ ‘â Œ" }, { "input": "nattily", "output": "â â â žâ žâ Šâ ‡â ½" }, { "input": "nattiness", "output": "â â â žâ žâ Šâ °â Ž" }, { "input": "nattiness's", "output": "â â â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "natty", "output": "â â â žâ žâ ½" }, { "input": "natural", "output": "â â â žâ ¥â —â â ‡" }, { "input": "natural's", "output": "â â â žâ ¥â —â â ‡â „â Ž" }, { "input": "naturalism", "output": "â â â žâ ¥â —â â ‡â Šâ Žâ " }, { "input": "naturalism's", "output": "â â â žâ ¥â —â â ‡â Šâ Žâ â „â Ž" }, { "input": "naturalist", "output": "â â â žâ ¥â —â â ‡â Šâ Œ" }, { "input": "naturalist's", "output": "â â â žâ ¥â —â â ‡â Šâ Œâ „â Ž" }, { "input": "naturalistic", "output": "â â â žâ ¥â —â â ‡â Šâ Œâ Šâ ‰" }, { "input": "naturalists", "output": "â â â žâ ¥â —â â ‡â Šâ Œâ Ž" }, { "input": "naturalization", "output": "â â â žâ ¥â —â â ‡â Šâ µâ  â " }, { "input": "naturalization's", "output": "â â â žâ ¥â —â â ‡â Šâ µâ  â â „â Ž" }, { "input": "naturalize", "output": "â â â žâ ¥â —â â ‡â Šâ µâ ‘" }, { "input": "naturalized", "output": "â â â žâ ¥â —â â ‡â Šâ µâ «" }, { "input": "naturalizes", "output": "â â â žâ ¥â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "naturalizing", "output": "â â â žâ ¥â —â â ‡â Šâ µâ Œ" }, { "input": "naturally", "output": "â â â žâ ¥â —â  â ½" }, { "input": "naturalness", "output": "â â â žâ ¥â —â â ‡â °â Ž" }, { "input": "naturalness's", "output": "â â â žâ ¥â —â â ‡â °â Žâ „â Ž" }, { "input": "naturals", "output": "â â â žâ ¥â —â â ‡â Ž" }, { "input": "nature", "output": "â â â žâ ¥â —â ‘" }, { "input": "nature's", "output": "â â â žâ ¥â —â ‘â „â Ž" }, { "input": "natures", "output": "â â â žâ ¥â —â ‘â Ž" }, { "input": "naught", "output": "â â â ¥â £â ž" }, { "input": "naught's", "output": "â â â ¥â £â žâ „â Ž" }, { "input": "naughtier", "output": "â â â ¥â £â žâ Šâ »" }, { "input": "naughtiest", "output": "â â â ¥â £â žâ Šâ ‘â Œ" }, { "input": "naughtily", "output": "â â â ¥â £â žâ Šâ ‡â ½" }, { "input": "naughtiness", "output": "â â â ¥â £â žâ Šâ °â Ž" }, { "input": "naughtiness's", "output": "â â â ¥â £â žâ Šâ °â Žâ „â Ž" }, { "input": "naughts", "output": "â â â ¥â £â žâ Ž" }, { "input": "naughty", "output": "â â â ¥â £â žâ ½" }, { "input": "nausea", "output": "â â â ¥â Žâ ‘â " }, { "input": "nausea's", "output": "â â â ¥â Žâ ‘â â „â Ž" }, { "input": "nauseate", "output": "â â â ¥â Žâ ‚â žâ ‘" }, { "input": "nauseated", "output": "â â â ¥â Žâ ‚â žâ «" }, { "input": "nauseates", "output": "â â â ¥â Žâ ‚â žâ ‘â Ž" }, { "input": "nauseating", "output": "â â â ¥â Žâ ‚â žâ Œ" }, { "input": "nauseatingly", "output": "â â â ¥â Žâ ‚⠞⠌⠇⠽" }, { "input": "nauseous", "output": "â â â ¥â Žâ ‘⠳⠎" }, { "input": "nauseousness's", "output": "â â â ¥â Žâ ‘⠳⠎⠰⠎⠄⠎" }, { "input": "nautical", "output": "â â â ¥â žâ Šâ ‰â â ‡" }, { "input": "nautically", "output": "â â â ¥â žâ Šâ ‰â  â ½" }, { "input": "nautilus", "output": "â â â ¥â žâ Šâ ‡â ¥â Ž" }, { "input": "nautilus's", "output": "â â â ¥â žâ Šâ ‡â ¥â Žâ „â Ž" }, { "input": "nautiluses", "output": "â â â ¥â žâ Šâ ‡â ¥â Žâ ‘â Ž" }, { "input": "naval", "output": "â â â §â â ‡" }, { "input": "nave", "output": "â â â §â ‘" }, { "input": "nave's", "output": "â â â §â ‘â „â Ž" }, { "input": "navel", "output": "â â â §â ‘â ‡" }, { "input": "navel's", "output": "â â â §â ‘⠇⠄⠎" }, { "input": "navels", "output": "â â â §â ‘⠇⠎" }, { "input": "naves", "output": "â â â §â ‘â Ž" }, { "input": "navies", "output": "â â â §â Šâ ‘â Ž" }, { "input": "navigability", "output": "â â â §â Šâ ›â â ƒâ Šâ ‡â °â ½" }, { "input": "navigability's", "output": "â â â §â Šâ ›â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "navigable", "output": "â â â §â Šâ ›â â ¼" }, { "input": "navigate", "output": "â â â §â Šâ ›â â žâ ‘" }, { "input": "navigated", "output": "â â â §â Šâ ›â â žâ «" }, { "input": "navigates", "output": "â â â §â Šâ ›â â žâ ‘â Ž" }, { "input": "navigating", "output": "â â â §â Šâ ›â â žâ Œ" }, { "input": "navigation", "output": "â â â §â Šâ ›â  â " }, { "input": "navigation's", "output": "â â â §â Šâ ›â  â â „â Ž" }, { "input": "navigational", "output": "â â â §â Šâ ›â  â â â ‡" }, { "input": "navigator", "output": "â â â §â Šâ ›â â žâ •â —" }, { "input": "navigator's", "output": "â â â §â Šâ ›â â žâ •â —â „â Ž" }, { "input": "navigators", "output": "â â â §â Šâ ›â â žâ •â —â Ž" }, { "input": "navy", "output": "â â â §â ½" }, { "input": "navy's", "output": "â â â §â ½â „â Ž" }, { "input": "nay", "output": "â â â ½" }, { "input": "nay's", "output": "â â â ½â „â Ž" }, { "input": "nays", "output": "â â â ½â Ž" }, { "input": "naysayer", "output": "â â â ½â Žâ â ½â »" }, { "input": "naysayer's", "output": "â â â ½â Žâ â ½â »â „â Ž" }, { "input": "naysayers", "output": "â â â ½â Žâ â ½â »â Ž" }, { "input": "neap", "output": "â â ‚â " }, { "input": "neap's", "output": "â â ‚â â „â Ž" }, { "input": "neaps", "output": "â â ‚â â Ž" }, { "input": "near", "output": "â â ‘â œ" }, { "input": "nearby", "output": "â â ‘⠜⠃⠽" }, { "input": "neared", "output": "â â ‘⠜⠫" }, { "input": "nearer", "output": "â â ‘⠜⠻" }, { "input": "nearest", "output": "â â ‘⠜⠑⠌" }, { "input": "nearing", "output": "â â ‘⠜⠌" }, { "input": "nearly", "output": "â â ‘⠜⠇⠽" }, { "input": "nearness", "output": "â â ‘⠜⠰⠎" }, { "input": "nearness's", "output": "â â ‘⠜⠰⠎⠄⠎" }, { "input": "nears", "output": "â â ‘⠜⠎" }, { "input": "nearsighted", "output": "â â ‘⠜⠎⠊⠣⠞⠫" }, { "input": "nearsightedly", "output": "â â ‘⠜⠎⠊⠣⠞⠫⠇⠽" }, { "input": "nearsightedness", "output": "â â ‘⠜⠎⠊⠣⠞⠫⠰⠎" }, { "input": "nearsightedness's", "output": "â â ‘⠜⠎⠊⠣⠞⠫⠰⠎⠄⠎" }, { "input": "neat", "output": "â â ‚â ž" }, { "input": "neater", "output": "â â ‚â žâ »" }, { "input": "neatest", "output": "â â ‚â žâ ‘â Œ" }, { "input": "neath", "output": "â â ‚â ¹" }, { "input": "neatly", "output": "â â ‚⠞⠇⠽" }, { "input": "neatness", "output": "â â ‚â žâ °â Ž" }, { "input": "neatness's", "output": "â â ‚â žâ °â Žâ „â Ž" }, { "input": "nebula", "output": "â â ‘⠃⠥⠇â " }, { "input": "nebula's", "output": "â â ‘⠃⠥⠇â â „â Ž" }, { "input": "nebulae", "output": "â â ‘⠃⠥⠇â â ‘" }, { "input": "nebular", "output": "â â ‘⠃⠥⠇⠜" }, { "input": "nebulous", "output": "â â ‘⠃⠥⠇⠳⠎" }, { "input": "nebulously", "output": "â â ‘⠃⠥⠇⠳⠎⠇⠽" }, { "input": "nebulousness's", "output": "â â ‘⠃⠥⠇⠳⠎⠰⠎⠄⠎" }, { "input": "necessaries", "output": "â â ‘⠉⠑⠎⠎⠜⠊⠑⠎" }, { "input": "necessarily", "output": "â â ‘⠉⠑⠎⠎⠜⠊⠇⠽" }, { "input": "necessary", "output": "â â ‘â ‰" }, { "input": "necessary's", "output": "â â ‘⠉⠄⠎" }, { "input": "necessitate", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ ‘" }, { "input": "necessitated", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ «" }, { "input": "necessitates", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ ‘â Ž" }, { "input": "necessitating", "output": "â â ‘⠉⠑⠎⠎⠊⠞â â žâ Œ" }, { "input": "necessities", "output": "â â ‘⠉⠑⠎⠎⠊⠞⠊⠑⠎" }, { "input": "necessitous", "output": "â â ‘⠉⠑⠎⠎⠊⠞⠳⠎" }, { "input": "necessity", "output": "â â ‘⠉⠑⠎⠎⠰⠽" }, { "input": "necessity's", "output": "â â ‘⠉⠑⠎⠎⠰⠽⠄⠎" }, { "input": "neck", "output": "â â ‘⠉⠅" }, { "input": "neck's", "output": "â â ‘⠉⠅⠄⠎" }, { "input": "necked", "output": "â â ‘⠉⠅⠫" }, { "input": "neckerchief", "output": "â â ‘⠉⠅⠻⠡⠊⠑⠋" }, { "input": "neckerchief's", "output": "â â ‘⠉⠅⠻⠡⠊⠑⠋⠄⠎" }, { "input": "neckerchiefs", "output": "â â ‘⠉⠅⠻⠡⠊⠑⠋⠎" }, { "input": "necking", "output": "â â ‘⠉⠅⠌" }, { "input": "necking's", "output": "â â ‘⠉⠅⠌⠄⠎" }, { "input": "necklace", "output": "â â ‘⠉⠅⠇â â ‰â ‘" }, { "input": "necklace's", "output": "â â ‘⠉⠅⠇â â ‰â ‘â „â Ž" }, { "input": "necklaces", "output": "â â ‘⠉⠅⠇â â ‰â ‘â Ž" }, { "input": "neckline", "output": "â â ‘⠉⠅⠇⠔⠑" }, { "input": "neckline's", "output": "â â ‘⠉⠅⠇⠔⠑⠄⠎" }, { "input": "necklines", "output": "â â ‘⠉⠅⠇⠔⠑⠎" }, { "input": "necks", "output": "â â ‘⠉⠅⠎" }, { "input": "necktie", "output": "â â ‘⠉⠅⠞⠊⠑" }, { "input": "necktie's", "output": "â â ‘⠉⠅⠞⠊⠑⠄⠎" }, { "input": "neckties", "output": "â â ‘⠉⠅⠞⠊⠑⠎" }, { "input": "necrology", "output": "â â ‘⠉⠗⠕⠇⠕⠛⠽" }, { "input": "necrology's", "output": "â â ‘⠉⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "necromancer", "output": "â â ‘⠉⠗⠕â â ¨â ‘â —" }, { "input": "necromancer's", "output": "â â ‘⠉⠗⠕â â ¨â ‘â —â „â Ž" }, { "input": "necromancers", "output": "â â ‘⠉⠗⠕â â ¨â ‘â —â Ž" }, { "input": "necromancy", "output": "â â ‘⠉⠗⠕â â â â ‰â ½" }, { "input": "necromancy's", "output": "â â ‘⠉⠗⠕â â â â ‰â ½â „â Ž" }, { "input": "necrophilia", "output": "â â ‘⠉⠗⠕â â “⠊⠇⠊â " }, { "input": "necroses", "output": "â â ‘⠉⠗⠕⠎⠑⠎" }, { "input": "necrosis", "output": "â â ‘⠉⠗⠕⠎⠊⠎" }, { "input": "necrosis's", "output": "â â ‘⠉⠗⠕⠎⠊⠎⠄⠎" }, { "input": "necrotic", "output": "â â ‘⠉⠗⠕⠞⠊⠉" }, { "input": "nectar", "output": "â â ‘⠉⠞⠜" }, { "input": "nectar's", "output": "â â ‘⠉⠞⠜⠄⠎" }, { "input": "nectarine", "output": "â â ‘⠉⠞⠜⠔⠑" }, { "input": "nectarine's", "output": "â â ‘⠉⠞⠜⠔⠑⠄⠎" }, { "input": "nectarines", "output": "â â ‘⠉⠞⠜⠔⠑⠎" }, { "input": "need", "output": "â â ‘â «" }, { "input": "need's", "output": "â â ‘â «â „â Ž" }, { "input": "needed", "output": "â â ‘â «â «" }, { "input": "needful", "output": "â â ‘â «â °â ‡" }, { "input": "needfully", "output": "â â ‘⠫⠰⠇⠇⠽" }, { "input": "needier", "output": "â â ‘â «â Šâ »" }, { "input": "neediest", "output": "â â ‘â «â Šâ ‘â Œ" }, { "input": "neediness", "output": "â â ‘â «â Šâ °â Ž" }, { "input": "neediness's", "output": "â â ‘â «â Šâ °â Žâ „â Ž" }, { "input": "needing", "output": "â â ‘â «â Œ" }, { "input": "needle", "output": "â â ‘⠫⠇⠑" }, { "input": "needle's", "output": "â â ‘⠫⠇⠑⠄⠎" }, { "input": "needled", "output": "â â ‘⠫⠇⠫" }, { "input": "needlepoint", "output": "â â ‘⠫⠇⠑â â •⠔⠞" }, { "input": "needlepoint's", "output": "â â ‘⠫⠇⠑â â •⠔⠞⠄⠎" }, { "input": "needles", "output": "â â ‘⠫⠇⠑⠎" }, { "input": "needless", "output": "â â ‘⠫⠨⠎" }, { "input": "needlessly", "output": "â â ‘⠫⠨⠎⠇⠽" }, { "input": "needlessness", "output": "â â ‘⠫⠨⠎⠰⠎" }, { "input": "needlessness's", "output": "â â ‘⠫⠨⠎⠰⠎⠄⠎" }, { "input": "needlework", "output": "â â ‘⠫⠇⠑â â º" }, { "input": "needlework's", "output": "â â ‘⠫⠇⠑â â ºâ „â Ž" }, { "input": "needling", "output": "â â ‘⠫⠇⠌" }, { "input": "needs", "output": "â â ‘â «â Ž" }, { "input": "needy", "output": "â â ‘â «â ½" }, { "input": "nefarious", "output": "â â ‘⠋⠜⠊⠳⠎" }, { "input": "nefariously", "output": "â â ‘⠋⠜⠊⠳⠎⠇⠽" }, { "input": "nefariousness", "output": "â â ‘⠋⠜⠊⠳⠎⠰⠎" }, { "input": "nefariousness's", "output": "â â ‘⠋⠜⠊⠳⠎⠰⠎⠄⠎" }, { "input": "negate", "output": "â â ‘â ›â â žâ ‘" }, { "input": "negated", "output": "â â ‘â ›â â žâ «" }, { "input": "negates", "output": "â â ‘â ›â â žâ ‘â Ž" }, { "input": "negating", "output": "â â ‘â ›â â žâ Œ" }, { "input": "negation", "output": "â â ‘⠛⠠â " }, { "input": "negation's", "output": "â â ‘⠛⠠â â „â Ž" }, { "input": "negations", "output": "â â ‘⠛⠠â â Ž" }, { "input": "negative", "output": "â â ‘â ›â â žâ Šâ §â ‘" }, { "input": "negative's", "output": "â â ‘â ›â â žâ Šâ §â ‘â „â Ž" }, { "input": "negatived", "output": "â â ‘â ›â â žâ Šâ §â «" }, { "input": "negatively", "output": "â â ‘â ›â â žâ Šâ §â ‘⠇⠽" }, { "input": "negativeness", "output": "â â ‘â ›â â žâ Šâ §â ‘â °â Ž" }, { "input": "negativeness's", "output": "â â ‘â ›â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "negatives", "output": "â â ‘â ›â â žâ Šâ §â ‘â Ž" }, { "input": "negativing", "output": "â â ‘â ›â â žâ Šâ §â Œ" }, { "input": "negativism", "output": "â â ‘â ›â â žâ Šâ §â Šâ Žâ " }, { "input": "negativism's", "output": "â â ‘â ›â â žâ Šâ §â Šâ Žâ â „â Ž" }, { "input": "negativity", "output": "â â ‘â ›â â žâ Šâ §â °â ½" }, { "input": "negativity's", "output": "â â ‘â ›â â žâ Šâ §â °â ½â „â Ž" }, { "input": "neglect", "output": "â â ‘⠛⠇⠑⠉⠞" }, { "input": "neglect's", "output": "â â ‘⠛⠇⠑⠉⠞⠄⠎" }, { "input": "neglected", "output": "â â ‘⠛⠇⠑⠉⠞⠫" }, { "input": "neglectful", "output": "â â ‘⠛⠇⠑⠉⠞⠰⠇" }, { "input": "neglectfully", "output": "â â ‘⠛⠇⠑⠉⠞⠰⠇⠇⠽" }, { "input": "neglectfulness", "output": "â â ‘⠛⠇⠑⠉⠞⠰⠇⠰⠎" }, { "input": "neglectfulness's", "output": "â â ‘⠛⠇⠑⠉⠞⠰⠇⠰⠎⠄⠎" }, { "input": "neglecting", "output": "â â ‘⠛⠇⠑⠉⠞⠌" }, { "input": "neglects", "output": "â â ‘⠛⠇⠑⠉⠞⠎" }, { "input": "negligee", "output": "â â ‘⠛⠇⠊⠛⠑⠑" }, { "input": "negligee's", "output": "â â ‘⠛⠇⠊⠛⠑⠑⠄⠎" }, { "input": "negligees", "output": "â â ‘⠛⠇⠊⠛⠑⠑⠎" }, { "input": "negligence", "output": "â â ‘⠛⠇⠊⠛⠰⠑" }, { "input": "negligence's", "output": "â â ‘⠛⠇⠊⠛⠰⠑⠄⠎" }, { "input": "negligent", "output": "â â ‘⠛⠇⠊⠛⠢⠞" }, { "input": "negligently", "output": "â â ‘⠛⠇⠊⠛⠢⠞⠇⠽" }, { "input": "negligible", "output": "â â ‘⠛⠇⠊⠛⠊⠼" }, { "input": "negligibly", "output": "â â ‘⠛⠇⠊⠛⠊⠃⠇⠽" }, { "input": "negotiability", "output": "â â ‘⠛⠕⠞⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "negotiability's", "output": "â â ‘⠛⠕⠞⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "negotiable", "output": "â â ‘⠛⠕⠞⠊â â ¼" }, { "input": "negotiate", "output": "â â ‘⠛⠕⠞⠊â â žâ ‘" }, { "input": "negotiated", "output": "â â ‘⠛⠕⠞⠊â â žâ «" }, { "input": "negotiates", "output": "â â ‘⠛⠕⠞⠊â â žâ ‘â Ž" }, { "input": "negotiating", "output": "â â ‘⠛⠕⠞⠊â â žâ Œ" }, { "input": "negotiation", "output": "â â ‘⠛⠕⠞⠊⠠â " }, { "input": "negotiation's", "output": "â â ‘⠛⠕⠞⠊⠠â â „â Ž" }, { "input": "negotiations", "output": "â â ‘⠛⠕⠞⠊⠠â â Ž" }, { "input": "negotiator", "output": "â â ‘⠛⠕⠞⠊â â žâ •â —" }, { "input": "negotiator's", "output": "â â ‘⠛⠕⠞⠊â â žâ •â —â „â Ž" }, { "input": "negotiators", "output": "â â ‘⠛⠕⠞⠊â â žâ •â —â Ž" }, { "input": "negritude", "output": "â â ‘⠛⠗⠊⠞⠥⠙⠑" }, { "input": "negritude's", "output": "â â ‘⠛⠗⠊⠞⠥⠙⠑⠄⠎" }, { "input": "neigh", "output": "â â ‘â Šâ £" }, { "input": "neigh's", "output": "â â ‘⠊⠣⠄⠎" }, { "input": "neighbor", "output": "â â ‘⠊⠣⠃⠕⠗" }, { "input": "neighbor's", "output": "â â ‘⠊⠣⠃⠕⠗⠄⠎" }, { "input": "neighbored", "output": "â â ‘⠊⠣⠃⠕⠗⠫" }, { "input": "neighborhood", "output": "â â ‘⠊⠣⠃⠕⠗⠓⠕⠕⠙" }, { "input": "neighborhood's", "output": "â â ‘⠊⠣⠃⠕⠗⠓⠕⠕⠙⠄⠎" }, { "input": "neighborhoods", "output": "â â ‘⠊⠣⠃⠕⠗⠓⠕⠕⠙⠎" }, { "input": "neighboring", "output": "â â ‘⠊⠣⠃⠕⠗⠌" }, { "input": "neighborliness", "output": "â â ‘⠊⠣⠃⠕⠗⠇⠊⠰⠎" }, { "input": "neighborliness's", "output": "â â ‘⠊⠣⠃⠕⠗⠇⠊⠰⠎⠄⠎" }, { "input": "neighborly", "output": "â â ‘⠊⠣⠃⠕⠗⠇⠽" }, { "input": "neighbors", "output": "â â ‘⠊⠣⠃⠕⠗⠎" }, { "input": "neighed", "output": "â â ‘⠊⠣⠫" }, { "input": "neighing", "output": "â â ‘⠊⠣⠌" }, { "input": "neighs", "output": "â â ‘⠊⠣⠎" }, { "input": "neither", "output": "â â ‘â Š" }, { "input": "nelson", "output": "â â ‘⠇⠎⠕â " }, { "input": "nelson's", "output": "â â ‘⠇⠎⠕â â „â Ž" }, { "input": "nelsons", "output": "â â ‘⠇⠎⠕â â Ž" }, { "input": "nematode", "output": "â â ‘â â â žâ •⠙⠑" }, { "input": "nematode's", "output": "â â ‘â â â žâ •⠙⠑⠄⠎" }, { "input": "nematodes", "output": "â â ‘â â â žâ •⠙⠑⠎" }, { "input": "nemeses", "output": "â â ‘â â ‘â Žâ ‘â Ž" }, { "input": "nemesis", "output": "â â ‘â â ‘â Žâ Šâ Ž" }, { "input": "nemesis's", "output": "â â ‘â â ‘â Žâ Šâ Žâ „â Ž" }, { "input": "neoclassic", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰" }, { "input": "neoclassical", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰â â ‡" }, { "input": "neoclassicism", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰â Šâ Žâ " }, { "input": "neoclassicism's", "output": "â â ‘⠕⠉⠇â â Žâ Žâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "neocolonialism", "output": "â â ‘⠕⠉⠕⠇⠕â â Šâ â ‡â Šâ Žâ " }, { "input": "neocolonialism's", "output": "â â ‘⠕⠉⠕⠇⠕â â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "neocolonialist's", "output": "â â ‘⠕⠉⠕⠇⠕â â Šâ â ‡â Šâ Œâ „â Ž" }, { "input": "neocolonialists", "output": "â â ‘⠕⠉⠕⠇⠕â â Šâ â ‡â Šâ Œâ Ž" }, { "input": "neoconservative", "output": "â â ‘⠕⠉⠕â â Žâ »â §â â žâ Šâ §â ‘" }, { "input": "neoconservative's", "output": "â â ‘⠕⠉⠕â â Žâ »â §â â žâ Šâ §â ‘â „â Ž" }, { "input": "neoconservatives", "output": "â â ‘⠕⠉⠕â â Žâ »â §â â žâ Šâ §â ‘â Ž" }, { "input": "neodymium", "output": "â â ‘⠕⠙⠽â â Šâ ¥â " }, { "input": "neodymium's", "output": "â â ‘⠕⠙⠽â â Šâ ¥â â „â Ž" }, { "input": "neologism", "output": "â â ‘⠕⠇⠕⠛⠊⠎â " }, { "input": "neologism's", "output": "â â ‘⠕⠇⠕⠛⠊⠎â â „â Ž" }, { "input": "neologisms", "output": "â â ‘⠕⠇⠕⠛⠊⠎â â Ž" }, { "input": "neon", "output": "â â ‘â •â " }, { "input": "neon's", "output": "â â ‘â •â â „â Ž" }, { "input": "neonatal", "output": "â â ‘â •â â â žâ â ‡" }, { "input": "neonate", "output": "â â ‘â •â â â žâ ‘" }, { "input": "neonate's", "output": "â â ‘â •â â â žâ ‘â „â Ž" }, { "input": "neonates", "output": "â â ‘â •â â â žâ ‘â Ž" }, { "input": "neophyte", "output": "â â ‘â •â â “⠽⠞⠑" }, { "input": "neophyte's", "output": "â â ‘â •â â “⠽⠞⠑⠄⠎" }, { "input": "neophytes", "output": "â â ‘â •â â “⠽⠞⠑⠎" }, { "input": "neoplasm", "output": "â â ‘â •â â ‡â â Žâ " }, { "input": "neoplasm's", "output": "â â ‘â •â â ‡â â Žâ â „â Ž" }, { "input": "neoplasms", "output": "â â ‘â •â â ‡â â Žâ â Ž" }, { "input": "neoplastic", "output": "â â ‘â •â â ‡â â Œâ Šâ ‰" }, { "input": "neoprene", "output": "â â ‘â •â â —⠢⠑" }, { "input": "neoprene's", "output": "â â ‘â •â â —⠢⠑⠄⠎" }, { "input": "nepenthe", "output": "â â ‘â â ¢â ®" }, { "input": "nepenthe's", "output": "â â ‘â â ¢â ®â „â Ž" }, { "input": "nephew", "output": "â â ‘â â “â ‘â º" }, { "input": "nephew's", "output": "â â ‘â â “⠑⠺⠄⠎" }, { "input": "nephews", "output": "â â ‘â â “⠑⠺⠎" }, { "input": "nephrite", "output": "â â ‘â â “â —â Šâ žâ ‘" }, { "input": "nephrite's", "output": "â â ‘â â “â —â Šâ žâ ‘â „â Ž" }, { "input": "nephritic", "output": "â â ‘â â “â —â Šâ žâ Šâ ‰" }, { "input": "nephritis", "output": "â â ‘â â “â —â Šâ žâ Šâ Ž" }, { "input": "nephritis's", "output": "â â ‘â â “â —â Šâ žâ Šâ Žâ „â Ž" }, { "input": "nepotism", "output": "â â ‘â â •â žâ Šâ Žâ " }, { "input": "nepotism's", "output": "â â ‘â â •â žâ Šâ Žâ â „â Ž" }, { "input": "nepotist", "output": "â â ‘â â •â žâ Šâ Œ" }, { "input": "nepotist's", "output": "â â ‘â â •⠞⠊⠌⠄⠎" }, { "input": "nepotists", "output": "â â ‘â â •⠞⠊⠌⠎" }, { "input": "neptunium", "output": "â â ‘â â žâ ¥â â Šâ ¥â " }, { "input": "neptunium's", "output": "â â ‘â â žâ ¥â â Šâ ¥â â „â Ž" }, { "input": "nerd", "output": "â â »â ™" }, { "input": "nerd's", "output": "â â »â ™â „â Ž" }, { "input": "nerdier", "output": "â â »â ™â Šâ »" }, { "input": "nerdiest", "output": "â â »â ™â Šâ ‘â Œ" }, { "input": "nerds", "output": "â â »â ™â Ž" }, { "input": "nerdy", "output": "â â »â ™â ½" }, { "input": "nerve", "output": "â â »â §â ‘" }, { "input": "nerve's", "output": "â â »â §â ‘â „â Ž" }, { "input": "nerved", "output": "â â »â §â «" }, { "input": "nerveless", "output": "â â »â §â ‘⠨⠎" }, { "input": "nervelessly", "output": "â â »â §â ‘⠨⠎⠇⠽" }, { "input": "nervelessness", "output": "â â »â §â ‘⠨⠎⠰⠎" }, { "input": "nervelessness's", "output": "â â »â §â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "nerves", "output": "â â »â §â ‘â Ž" }, { "input": "nervier", "output": "â â »â §â Šâ »" }, { "input": "nerviest", "output": "â â »â §â Šâ ‘â Œ" }, { "input": "nerviness", "output": "â â »â §â Šâ °â Ž" }, { "input": "nerviness's", "output": "â â »â §â Šâ °â Žâ „â Ž" }, { "input": "nerving", "output": "â â »â §â Œ" }, { "input": "nervous", "output": "â â »â §â ³â Ž" }, { "input": "nervously", "output": "â â »â §â ³â Žâ ‡â ½" }, { "input": "nervousness", "output": "â â »â §â ³â Žâ °â Ž" }, { "input": "nervousness's", "output": "â â »â §â ³â Žâ °â Žâ „â Ž" }, { "input": "nervy", "output": "â â »â §â ½" }, { "input": "nest", "output": "â â ‘â Œ" }, { "input": "nest's", "output": "â â ‘⠌⠄⠎" }, { "input": "nested", "output": "â â ‘⠌⠫" }, { "input": "nesting", "output": "â â ‘⠌⠌" }, { "input": "nestle", "output": "â â ‘⠌⠇⠑" }, { "input": "nestled", "output": "â â ‘⠌⠇⠫" }, { "input": "nestles", "output": "â â ‘⠌⠇⠑⠎" }, { "input": "nestling", "output": "â â ‘⠌⠇⠌" }, { "input": "nestling's", "output": "â â ‘⠌⠇⠌⠄⠎" }, { "input": "nestlings", "output": "â â ‘⠌⠇⠌⠎" }, { "input": "nests", "output": "â â ‘⠌⠎" }, { "input": "net", "output": "â â ‘â ž" }, { "input": "net's", "output": "â â ‘â žâ „â Ž" }, { "input": "nether", "output": "â â ‘⠮⠗" }, { "input": "nethermost", "output": "â â ‘⠮⠗â â •â Œ" }, { "input": "netherworld's", "output": "â â ‘⠮⠗⠸⠺⠄⠎" }, { "input": "nets", "output": "â â ‘â žâ Ž" }, { "input": "netted", "output": "â â ‘â žâ žâ «" }, { "input": "netting", "output": "â â ‘â žâ žâ Œ" }, { "input": "netting's", "output": "â â ‘⠞⠞⠌⠄⠎" }, { "input": "nettle", "output": "â â ‘⠞⠞⠇⠑" }, { "input": "nettle's", "output": "â â ‘⠞⠞⠇⠑⠄⠎" }, { "input": "nettled", "output": "â â ‘⠞⠞⠇⠫" }, { "input": "nettles", "output": "â â ‘⠞⠞⠇⠑⠎" }, { "input": "nettlesome", "output": "â â ‘⠞⠞⠇⠑â â Ž" }, { "input": "nettling", "output": "â â ‘⠞⠞⠇⠌" }, { "input": "network", "output": "â â ‘â žâ â º" }, { "input": "network's", "output": "â â ‘â žâ â ºâ „â Ž" }, { "input": "networked", "output": "â â ‘â žâ â ºâ «" }, { "input": "networking", "output": "â â ‘â žâ â ºâ Œ" }, { "input": "networking's", "output": "â â ‘â žâ â ºâ Œâ „â Ž" }, { "input": "networks", "output": "â â ‘â žâ â ºâ Ž" }, { "input": "neural", "output": "â â ‘⠥⠗â â ‡" }, { "input": "neuralgia", "output": "â â ‘⠥⠗â â ‡â ›â Šâ " }, { "input": "neuralgia's", "output": "â â ‘⠥⠗â â ‡â ›â Šâ â „â Ž" }, { "input": "neuralgic", "output": "â â ‘⠥⠗â â ‡â ›â Šâ ‰" }, { "input": "neurally", "output": "â â ‘⠥⠗⠠⠽" }, { "input": "neurasthenia", "output": "â â ‘⠥⠗â â Žâ ®â â Šâ " }, { "input": "neurasthenia's", "output": "â â ‘⠥⠗â â Žâ ®â â Šâ â „â Ž" }, { "input": "neurasthenic", "output": "â â ‘⠥⠗â â Žâ ®â â Šâ ‰" }, { "input": "neurasthenic's", "output": "â â ‘⠥⠗â â Žâ ®â â Šâ ‰â „â Ž" }, { "input": "neurasthenics", "output": "â â ‘⠥⠗â â Žâ ®â â Šâ ‰â Ž" }, { "input": "neuritic", "output": "â â ‘⠥⠗⠊⠞⠊⠉" }, { "input": "neuritic's", "output": "â â ‘⠥⠗⠊⠞⠊⠉⠄⠎" }, { "input": "neuritics", "output": "â â ‘⠥⠗⠊⠞⠊⠉⠎" }, { "input": "neuritis", "output": "â â ‘⠥⠗⠊⠞⠊⠎" }, { "input": "neuritis's", "output": "â â ‘⠥⠗⠊⠞⠊⠎⠄⠎" }, { "input": "neurological", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "neurologically", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "neurologist", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠌" }, { "input": "neurologist's", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "neurologists", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "neurology", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠽" }, { "input": "neurology's", "output": "â â ‘⠥⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "neuron", "output": "â â ‘⠥⠗⠕â " }, { "input": "neuron's", "output": "â â ‘⠥⠗⠕â â „â Ž" }, { "input": "neuronal", "output": "â â ‘⠥⠗⠕â â â ‡" }, { "input": "neurons", "output": "â â ‘⠥⠗⠕â â Ž" }, { "input": "neuroses", "output": "â â ‘⠥⠗⠕⠎⠑⠎" }, { "input": "neurosis", "output": "â â ‘⠥⠗⠕⠎⠊⠎" }, { "input": "neurosis's", "output": "â â ‘⠥⠗⠕⠎⠊⠎⠄⠎" }, { "input": "neurosurgeon", "output": "â â ‘⠥⠗⠕⠎⠥⠗⠛⠑⠕â " }, { "input": "neurosurgeon's", "output": "â â ‘⠥⠗⠕⠎⠥⠗⠛⠑⠕â â „â Ž" }, { "input": "neurosurgeons", "output": "â â ‘⠥⠗⠕⠎⠥⠗⠛⠑⠕â â Ž" }, { "input": "neurosurgery", "output": "â â ‘⠥⠗⠕⠎⠥⠗⠛⠻⠽" }, { "input": "neurosurgery's", "output": "â â ‘⠥⠗⠕⠎⠥⠗⠛⠻⠽⠄⠎" }, { "input": "neurotic", "output": "â â ‘⠥⠗⠕⠞⠊⠉" }, { "input": "neurotic's", "output": "â â ‘⠥⠗⠕⠞⠊⠉⠄⠎" }, { "input": "neurotically", "output": "â â ‘⠥⠗⠕⠞⠊⠉⠠⠽" }, { "input": "neurotics", "output": "â â ‘⠥⠗⠕⠞⠊⠉⠎" }, { "input": "neurotransmitter", "output": "â â ‘⠥⠗⠕⠞⠗â â â Žâ â Šâ žâ žâ »" }, { "input": "neurotransmitter's", "output": "â â ‘⠥⠗⠕⠞⠗â â â Žâ â Šâ žâ žâ »â „â Ž" }, { "input": "neurotransmitters", "output": "â â ‘⠥⠗⠕⠞⠗â â â Žâ â Šâ žâ žâ »â Ž" }, { "input": "neuter", "output": "â â ‘⠥⠞⠻" }, { "input": "neuter's", "output": "â â ‘⠥⠞⠻⠄⠎" }, { "input": "neutered", "output": "â â ‘⠥⠞⠻⠫" }, { "input": "neutering", "output": "â â ‘⠥⠞⠻⠌" }, { "input": "neuters", "output": "â â ‘⠥⠞⠻⠎" }, { "input": "neutral", "output": "â â ‘⠥⠞⠗â â ‡" }, { "input": "neutral's", "output": "â â ‘⠥⠞⠗â â ‡â „â Ž" }, { "input": "neutralism", "output": "â â ‘⠥⠞⠗â â ‡â Šâ Žâ " }, { "input": "neutralism's", "output": "â â ‘⠥⠞⠗â â ‡â Šâ Žâ â „â Ž" }, { "input": "neutrality", "output": "â â ‘⠥⠞⠗â â ‡â °â ½" }, { "input": "neutrality's", "output": "â â ‘⠥⠞⠗â â ‡â °â ½â „â Ž" }, { "input": "neutralization", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ  â " }, { "input": "neutralization's", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ  â â „â Ž" }, { "input": "neutralize", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ ‘" }, { "input": "neutralized", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ «" }, { "input": "neutralizer", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ »" }, { "input": "neutralizer's", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ »â „â Ž" }, { "input": "neutralizers", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ »â Ž" }, { "input": "neutralizes", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ ‘â Ž" }, { "input": "neutralizing", "output": "â â ‘⠥⠞⠗â â ‡â Šâ µâ Œ" }, { "input": "neutrally", "output": "â â ‘⠥⠞⠗⠠⠽" }, { "input": "neutrals", "output": "â â ‘⠥⠞⠗â â ‡â Ž" }, { "input": "neutrino", "output": "â â ‘⠥⠞⠗⠔⠕" }, { "input": "neutrino's", "output": "â â ‘⠥⠞⠗⠔⠕⠄⠎" }, { "input": "neutrinos", "output": "â â ‘⠥⠞⠗⠔⠕⠎" }, { "input": "neutron", "output": "â â ‘⠥⠞⠗⠕â " }, { "input": "neutron's", "output": "â â ‘⠥⠞⠗⠕â â „â Ž" }, { "input": "neutrons", "output": "â â ‘⠥⠞⠗⠕â â Ž" }, { "input": "never", "output": "â â â ‘" }, { "input": "nevermore", "output": "â â â ‘â â •â —â ‘" }, { "input": "nevertheless", "output": "â â â ‘⠮⠨⠎" }, { "input": "nevi", "output": "â â ‘â §â Š" }, { "input": "nevus", "output": "â â ‘⠧⠥⠎" }, { "input": "nevus's", "output": "â â ‘⠧⠥⠎⠄⠎" }, { "input": "new", "output": "â â ‘â º" }, { "input": "new's", "output": "â â ‘⠺⠄⠎" }, { "input": "newbie", "output": "â â ‘⠺⠃⠊⠑" }, { "input": "newbie's", "output": "â â ‘⠺⠃⠊⠑⠄⠎" }, { "input": "newbies", "output": "â â ‘⠺⠃⠊⠑⠎" }, { "input": "newborn", "output": "â â ‘⠺⠃⠕⠗â " }, { "input": "newborn's", "output": "â â ‘⠺⠃⠕⠗â â „â Ž" }, { "input": "newborns", "output": "â â ‘⠺⠃⠕⠗â â Ž" }, { "input": "newcomer", "output": "â â ‘⠺⠉⠕â â »" }, { "input": "newcomer's", "output": "â â ‘⠺⠉⠕â â »â „â Ž" }, { "input": "newcomers", "output": "â â ‘⠺⠉⠕â â »â Ž" }, { "input": "newel", "output": "â â ‘⠺⠑⠇" }, { "input": "newel's", "output": "â â ‘⠺⠑⠇⠄⠎" }, { "input": "newels", "output": "â â ‘⠺⠑⠇⠎" }, { "input": "newer", "output": "â â ‘⠺⠻" }, { "input": "newest", "output": "â â ‘⠺⠑⠌" }, { "input": "newfangled", "output": "â â ‘⠺⠋â â â ›â ‡â «" }, { "input": "newly", "output": "â â ‘⠺⠇⠽" }, { "input": "newlywed", "output": "â â ‘⠺⠇⠽⠺⠫" }, { "input": "newlywed's", "output": "â â ‘⠺⠇⠽⠺⠫⠄⠎" }, { "input": "newlyweds", "output": "â â ‘⠺⠇⠽⠺⠫⠎" }, { "input": "newness", "output": "â â ‘⠺⠰⠎" }, { "input": "newness's", "output": "â â ‘⠺⠰⠎⠄⠎" }, { "input": "news", "output": "â â ‘⠺⠎" }, { "input": "news's", "output": "â â ‘⠺⠎⠄⠎" }, { "input": "newsagents", "output": "â â ‘⠺⠎â â ›â ¢â žâ Ž" }, { "input": "newsboy", "output": "â â ‘⠺⠎⠃⠕⠽" }, { "input": "newsboy's", "output": "â â ‘⠺⠎⠃⠕⠽⠄⠎" }, { "input": "newsboys", "output": "â â ‘⠺⠎⠃⠕⠽⠎" }, { "input": "newscast", "output": "â â ‘⠺⠎⠉â â Œ" }, { "input": "newscast's", "output": "â â ‘⠺⠎⠉â â Œâ „â Ž" }, { "input": "newscaster", "output": "â â ‘⠺⠎⠉â â Œâ »" }, { "input": "newscaster's", "output": "â â ‘⠺⠎⠉â â Œâ »â „â Ž" }, { "input": "newscasters", "output": "â â ‘⠺⠎⠉â â Œâ »â Ž" }, { "input": "newscasts", "output": "â â ‘⠺⠎⠉â â Œâ Ž" }, { "input": "newsdealer", "output": "â â ‘⠺⠎⠙⠂⠇⠻" }, { "input": "newsdealer's", "output": "â â ‘⠺⠎⠙⠂⠇⠻⠄⠎" }, { "input": "newsdealers", "output": "â â ‘⠺⠎⠙⠂⠇⠻⠎" }, { "input": "newsflash", "output": "â â ‘⠺⠎⠋⠇â â ©" }, { "input": "newsgirl", "output": "â â ‘⠺⠎⠛⠊⠗⠇" }, { "input": "newsgirl's", "output": "â â ‘⠺⠎⠛⠊⠗⠇⠄⠎" }, { "input": "newsgirls", "output": "â â ‘⠺⠎⠛⠊⠗⠇⠎" }, { "input": "newsier", "output": "â â ‘⠺⠎⠊⠻" }, { "input": "newsiest", "output": "â â ‘⠺⠎⠊⠑⠌" }, { "input": "newsletter", "output": "â â ‘⠺⠎⠇⠗" }, { "input": "newsletter's", "output": "â â ‘⠺⠎⠇⠗⠄⠎" }, { "input": "newsletters", "output": "â â ‘⠺⠎⠇⠗⠎" }, { "input": "newsman", "output": "â â ‘⠺⠎â â â " }, { "input": "newsman's", "output": "â â ‘⠺⠎â â â â „â Ž" }, { "input": "newsmen", "output": "â â ‘⠺⠎â â ¢" }, { "input": "newspaper", "output": "â â ‘⠺⠎â â â â »" }, { "input": "newspaper's", "output": "â â ‘⠺⠎â â â â »â „â Ž" }, { "input": "newspaperman", "output": "â â ‘⠺⠎â â â â »â â â " }, { "input": "newspaperman's", "output": "â â ‘⠺⠎â â â â »â â â â „â Ž" }, { "input": "newspapermen", "output": "â â ‘⠺⠎â â â â »â â ¢" }, { "input": "newspapers", "output": "â â ‘⠺⠎â â â â »â Ž" }, { "input": "newspaperwoman", "output": "â â ‘⠺⠎â â â â »â ºâ •â â â " }, { "input": "newspaperwoman's", "output": "â â ‘⠺⠎â â â â »â ºâ •â â â â „â Ž" }, { "input": "newspaperwomen", "output": "â â ‘⠺⠎â â â â »â ºâ •â â ¢" }, { "input": "newsprint", "output": "â â ‘⠺⠎â â —⠔⠞" }, { "input": "newsprint's", "output": "â â ‘⠺⠎â â —⠔⠞⠄⠎" }, { "input": "newsreel", "output": "â â ‘⠺⠎⠗⠑⠑⠇" }, { "input": "newsreel's", "output": "â â ‘⠺⠎⠗⠑⠑⠇⠄⠎" }, { "input": "newsreels", "output": "â â ‘⠺⠎⠗⠑⠑⠇⠎" }, { "input": "newsstand", "output": "â â ‘⠺⠎⠌⠯" }, { "input": "newsstand's", "output": "â â ‘⠺⠎⠌⠯⠄⠎" }, { "input": "newsstands", "output": "â â ‘⠺⠎⠌⠯⠎" }, { "input": "newsweeklies", "output": "â â ‘⠺⠎⠺⠑⠑⠅⠇⠊⠑⠎" }, { "input": "newsweekly", "output": "â â ‘⠺⠎⠺⠑⠑⠅⠇⠽" }, { "input": "newsweekly's", "output": "â â ‘⠺⠎⠺⠑⠑⠅⠇⠽⠄⠎" }, { "input": "newswoman", "output": "â â ‘⠺⠎⠺⠕â â â " }, { "input": "newswoman's", "output": "â â ‘⠺⠎⠺⠕â â â â „â Ž" }, { "input": "newswomen", "output": "â â ‘⠺⠎⠺⠕â â ¢" }, { "input": "newsworthier", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠊⠻" }, { "input": "newsworthiest", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠊⠑⠌" }, { "input": "newsworthiness", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠊⠰⠎" }, { "input": "newsworthiness's", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "newsworthy", "output": "â â ‘⠺⠎⠺⠕⠗⠹⠽" }, { "input": "newsy", "output": "â â ‘⠺⠎⠽" }, { "input": "newt", "output": "â â ‘⠺⠞" }, { "input": "newt's", "output": "â â ‘⠺⠞⠄⠎" }, { "input": "newton", "output": "â â ‘⠺⠞⠕â " }, { "input": "newton's", "output": "â â ‘⠺⠞⠕â â „â Ž" }, { "input": "newtons", "output": "â â ‘⠺⠞⠕â â Ž" }, { "input": "newts", "output": "â â ‘⠺⠞⠎" }, { "input": "next", "output": "â â ‘â ­â ž" }, { "input": "next's", "output": "â â ‘â ­â žâ „â Ž" }, { "input": "nexus", "output": "â â ‘⠭⠥⠎" }, { "input": "nexus's", "output": "â â ‘⠭⠥⠎⠄⠎" }, { "input": "nexuses", "output": "â â ‘⠭⠥⠎⠑⠎" }, { "input": "niacin", "output": "â â Šâ â ‰â ”" }, { "input": "niacin's", "output": "â â Šâ â ‰â ”â „â Ž" }, { "input": "nib", "output": "â â Šâ ƒ" }, { "input": "nib's", "output": "â â Šâ ƒâ „â Ž" }, { "input": "nibble", "output": "â â Šâ ƒâ ¼" }, { "input": "nibble's", "output": "â â Šâ ƒâ ¼â „â Ž" }, { "input": "nibbled", "output": "â â Šâ ƒâ ¼â ™" }, { "input": "nibbler", "output": "â â Šâ ƒâ ¼â —" }, { "input": "nibbler's", "output": "â â Šâ ƒâ ¼â —â „â Ž" }, { "input": "nibblers", "output": "â â Šâ ƒâ ¼â —â Ž" }, { "input": "nibbles", "output": "â â Šâ ƒâ ¼â Ž" }, { "input": "nibbling", "output": "â â Šâ †â ‡â Œ" }, { "input": "nibs", "output": "â â Šâ ƒâ Ž" }, { "input": "nice", "output": "â â Šâ ‰â ‘" }, { "input": "nicely", "output": "â â Šâ ‰â ‘⠇⠽" }, { "input": "niceness", "output": "â â Šâ ‰â ‘â °â Ž" }, { "input": "niceness's", "output": "â â Šâ ‰â ‘â °â Žâ „â Ž" }, { "input": "nicer", "output": "â â Šâ ‰â »" }, { "input": "nicest", "output": "â â Šâ ‰â ‘â Œ" }, { "input": "niceties", "output": "â â Šâ ‰â ‘â žâ Šâ ‘â Ž" }, { "input": "nicety", "output": "â â Šâ ‰â ‘â žâ ½" }, { "input": "nicety's", "output": "â â Šâ ‰â ‘⠞⠽⠄⠎" }, { "input": "niche", "output": "â â Šâ ¡â ‘" }, { "input": "niche's", "output": "â â Šâ ¡â ‘â „â Ž" }, { "input": "niches", "output": "â â Šâ ¡â ‘â Ž" }, { "input": "nick", "output": "â â Šâ ‰â …" }, { "input": "nick's", "output": "â â Šâ ‰â …â „â Ž" }, { "input": "nicked", "output": "â â Šâ ‰â …â «" }, { "input": "nickel", "output": "â â Šâ ‰â …â ‘â ‡" }, { "input": "nickel's", "output": "â â Šâ ‰â …⠑⠇⠄⠎" }, { "input": "nickelodeon", "output": "â â Šâ ‰â …⠑⠇⠕⠙⠑⠕â " }, { "input": "nickelodeon's", "output": "â â Šâ ‰â …⠑⠇⠕⠙⠑⠕â â „â Ž" }, { "input": "nickelodeons", "output": "â â Šâ ‰â …⠑⠇⠕⠙⠑⠕â â Ž" }, { "input": "nickels", "output": "â â Šâ ‰â …⠑⠇⠎" }, { "input": "nicker", "output": "â â Šâ ‰â …â »" }, { "input": "nicker's", "output": "â â Šâ ‰â …⠻⠄⠎" }, { "input": "nickered", "output": "â â Šâ ‰â …⠻⠫" }, { "input": "nickering", "output": "â â Šâ ‰â …⠻⠌" }, { "input": "nickers", "output": "â â Šâ ‰â …⠻⠎" }, { "input": "nicking", "output": "â â Šâ ‰â …â Œ" }, { "input": "nickname", "output": "â â Šâ ‰â …â â " }, { "input": "nickname's", "output": "â â Šâ ‰â …â â â „â Ž" }, { "input": "nicknamed", "output": "â â Šâ ‰â …â â â ™" }, { "input": "nicknames", "output": "â â Šâ ‰â …â â â Ž" }, { "input": "nicknaming", "output": "â â Šâ ‰â …â â â â Œ" }, { "input": "nicks", "output": "â â Šâ ‰â …â Ž" }, { "input": "nicotine", "output": "â â Šâ ‰â •⠞⠔⠑" }, { "input": "nicotine's", "output": "â â Šâ ‰â •⠞⠔⠑⠄⠎" }, { "input": "niece", "output": "â â Šâ ‘⠉⠑" }, { "input": "niece's", "output": "â â Šâ ‘⠉⠑⠄⠎" }, { "input": "nieces", "output": "â â Šâ ‘⠉⠑⠎" }, { "input": "niftier", "output": "â â Šâ ‹â žâ Šâ »" }, { "input": "niftiest", "output": "â â Šâ ‹â žâ Šâ ‘â Œ" }, { "input": "nifty", "output": "â â Šâ ‹â žâ ½" }, { "input": "niggard", "output": "â â Šâ ¶â œâ ™" }, { "input": "niggard's", "output": "â â Šâ ¶â œâ ™â „â Ž" }, { "input": "niggardliness", "output": "â â Šâ ¶â œâ ™â ‡â Šâ °â Ž" }, { "input": "niggardliness's", "output": "â â Šâ ¶â œâ ™â ‡â Šâ °â Žâ „â Ž" }, { "input": "niggardly", "output": "â â Šâ ¶â œâ ™â ‡â ½" }, { "input": "niggards", "output": "â â Šâ ¶â œâ ™â Ž" }, { "input": "nigger", "output": "â â Šâ ¶â »" }, { "input": "nigger's", "output": "â â Šâ ¶â »â „â Ž" }, { "input": "niggers", "output": "â â Šâ ¶â »â Ž" }, { "input": "niggle", "output": "â â Šâ ¶â ‡â ‘" }, { "input": "niggle's", "output": "â â Šâ ¶â ‡â ‘â „â Ž" }, { "input": "niggled", "output": "â â Šâ ¶â ‡â «" }, { "input": "niggler", "output": "â â Šâ ¶â ‡â »" }, { "input": "niggler's", "output": "â â Šâ ¶â ‡â »â „â Ž" }, { "input": "nigglers", "output": "â â Šâ ¶â ‡â »â Ž" }, { "input": "niggles", "output": "â â Šâ ¶â ‡â ‘â Ž" }, { "input": "niggling", "output": "â â Šâ ¶â ‡â Œ" }, { "input": "nigh", "output": "â â Šâ £" }, { "input": "nigher", "output": "â â Šâ £â »" }, { "input": "nighest", "output": "â â Šâ £â ‘â Œ" }, { "input": "night", "output": "â â Šâ £â ž" }, { "input": "night's", "output": "â â Šâ £â žâ „â Ž" }, { "input": "nightcap", "output": "â â Šâ £â žâ ‰â â " }, { "input": "nightcap's", "output": "â â Šâ £â žâ ‰â â â „â Ž" }, { "input": "nightcaps", "output": "â â Šâ £â žâ ‰â â â Ž" }, { "input": "nightclothes", "output": "â â Šâ £â žâ ‰â ‡â •⠮⠎" }, { "input": "nightclothes's", "output": "â â Šâ £â žâ ‰â ‡â •⠮⠎⠄⠎" }, { "input": "nightclub", "output": "â â Šâ £â žâ ‰â ‡â ¥â ƒ" }, { "input": "nightclub's", "output": "â â Šâ £â žâ ‰â ‡â ¥â ƒâ „â Ž" }, { "input": "nightclubbed", "output": "â â Šâ £â žâ ‰â ‡â ¥â †â «" }, { "input": "nightclubbing", "output": "â â Šâ £â žâ ‰â ‡â ¥â †â Œ" }, { "input": "nightclubs", "output": "â â Šâ £â žâ ‰â ‡â ¥â ƒâ Ž" }, { "input": "nightfall", "output": "â â Šâ £â žâ ‹â â ‡â ‡" }, { "input": "nightfall's", "output": "â â Šâ £â žâ ‹â â ‡â ‡â „â Ž" }, { "input": "nightgown", "output": "â â Šâ £â žâ ›â ªâ " }, { "input": "nightgown's", "output": "â â Šâ £â žâ ›â ªâ â „â Ž" }, { "input": "nightgowns", "output": "â â Šâ £â žâ ›â ªâ â Ž" }, { "input": "nighthawk", "output": "â â Šâ £â žâ “â â ºâ …" }, { "input": "nighthawk's", "output": "â â Šâ £â žâ “â â ºâ …â „â Ž" }, { "input": "nighthawks", "output": "â â Šâ £â žâ “â â ºâ …â Ž" }, { "input": "nightie", "output": "â â Šâ £â žâ Šâ ‘" }, { "input": "nightie's", "output": "â â Šâ £â žâ Šâ ‘â „â Ž" }, { "input": "nighties", "output": "â â Šâ £â žâ Šâ ‘â Ž" }, { "input": "nightingale", "output": "â â Šâ £â žâ ”â ›â â ‡â ‘" }, { "input": "nightingale's", "output": "â â Šâ £â žâ ”â ›â â ‡â ‘â „â Ž" }, { "input": "nightingales", "output": "â â Šâ £â žâ ”â ›â â ‡â ‘â Ž" }, { "input": "nightlife", "output": "â â Šâ £â žâ ‡â Šâ ‹â ‘" }, { "input": "nightlife's", "output": "â â Šâ £â žâ ‡â Šâ ‹â ‘â „â Ž" }, { "input": "nightly", "output": "â â Šâ £â žâ ‡â ½" }, { "input": "nightmare", "output": "â â Šâ £â žâ â œâ ‘" }, { "input": "nightmare's", "output": "â â Šâ £â žâ â œâ ‘â „â Ž" }, { "input": "nightmares", "output": "â â Šâ £â žâ â œâ ‘â Ž" }, { "input": "nightmarish", "output": "â â Šâ £â žâ â œâ Šâ ©" }, { "input": "nights", "output": "â â Šâ £â žâ Ž" }, { "input": "nightshade", "output": "â â Šâ £â žâ ©â â ™â ‘" }, { "input": "nightshade's", "output": "â â Šâ £â žâ ©â â ™â ‘â „â Ž" }, { "input": "nightshades", "output": "â â Šâ £â žâ ©â â ™â ‘â Ž" }, { "input": "nightshirt", "output": "â â Šâ £â žâ ©â Šâ —â ž" }, { "input": "nightshirt's", "output": "â â Šâ £â žâ ©â Šâ —â žâ „â Ž" }, { "input": "nightshirts", "output": "â â Šâ £â žâ ©â Šâ —â žâ Ž" }, { "input": "nightstick", "output": "â â Šâ £â žâ Œâ Šâ ‰â …" }, { "input": "nightstick's", "output": "â â Šâ £â žâ Œâ Šâ ‰â …â „â Ž" }, { "input": "nightsticks", "output": "â â Šâ £â žâ Œâ Šâ ‰â …â Ž" }, { "input": "nighttime", "output": "â â Šâ £â žâ â ž" }, { "input": "nighttime's", "output": "â â Šâ £â žâ â žâ „â Ž" }, { "input": "nightwear's", "output": "â â Šâ £â žâ ºâ ‘⠜⠄⠎" }, { "input": "nihilism", "output": "â â Šâ “⠊⠇⠊⠎â " }, { "input": "nihilism's", "output": "â â Šâ “⠊⠇⠊⠎â â „â Ž" }, { "input": "nihilist", "output": "â â Šâ “⠊⠇⠊⠌" }, { "input": "nihilist's", "output": "â â Šâ “⠊⠇⠊⠌⠄⠎" }, { "input": "nihilistic", "output": "â â Šâ “⠊⠇⠊⠌⠊⠉" }, { "input": "nihilists", "output": "â â Šâ “⠊⠇⠊⠌⠎" }, { "input": "nil", "output": "â â Šâ ‡" }, { "input": "nil's", "output": "â â Šâ ‡â „â Ž" }, { "input": "nimbi", "output": "â â Šâ â ƒâ Š" }, { "input": "nimble", "output": "â â Šâ â ¼" }, { "input": "nimbleness", "output": "â â Šâ â ¼â °â Ž" }, { "input": "nimbleness's", "output": "â â Šâ â ¼â °â Žâ „â Ž" }, { "input": "nimbler", "output": "â â Šâ â ¼â —" }, { "input": "nimblest", "output": "â â Šâ â ¼â Œ" }, { "input": "nimbly", "output": "â â Šâ â ƒâ ‡â ½" }, { "input": "nimbus", "output": "â â Šâ â ƒâ ¥â Ž" }, { "input": "nimbus's", "output": "â â Šâ â ƒâ ¥â Žâ „â Ž" }, { "input": "nimrod", "output": "â â Šâ â —â •â ™" }, { "input": "nimrod's", "output": "â â Šâ â —⠕⠙⠄⠎" }, { "input": "nimrods", "output": "â â Šâ â —⠕⠙⠎" }, { "input": "nincompoop", "output": "â â ”⠉⠕â â â •â •â " }, { "input": "nincompoop's", "output": "â â ”⠉⠕â â â •â •â â „â Ž" }, { "input": "nincompoops", "output": "â â ”⠉⠕â â â •â •â â Ž" }, { "input": "nine", "output": "â â ”â ‘" }, { "input": "nine's", "output": "â â ”â ‘â „â Ž" }, { "input": "ninepin", "output": "â â ”â ‘â â ”" }, { "input": "ninepin's", "output": "â â ”â ‘â â ”â „â Ž" }, { "input": "ninepins", "output": "â â ”â ‘â â ”â Ž" }, { "input": "ninepins's", "output": "â â ”â ‘â â ”â Žâ „â Ž" }, { "input": "nines", "output": "â â ”â ‘â Ž" }, { "input": "nineteen", "output": "â â ”â ‘â žâ ‘â ¢" }, { "input": "nineteen's", "output": "â â ”⠑⠞⠑⠢⠄⠎" }, { "input": "nineteens", "output": "â â ”⠑⠞⠑⠢⠎" }, { "input": "nineteenth", "output": "â â ”⠑⠞⠑⠢⠹" }, { "input": "nineteenth's", "output": "â â ”⠑⠞⠑⠢⠹⠄⠎" }, { "input": "nineteenths", "output": "â â ”⠑⠞⠑⠢⠹⠎" }, { "input": "nineties", "output": "â â ”â ‘â žâ Šâ ‘â Ž" }, { "input": "ninetieth", "output": "â â ”â ‘â žâ Šâ ‘â ¹" }, { "input": "ninetieth's", "output": "â â ”⠑⠞⠊⠑⠹⠄⠎" }, { "input": "ninetieths", "output": "â â ”⠑⠞⠊⠑⠹⠎" }, { "input": "ninety", "output": "â â ”â ‘â žâ ½" }, { "input": "ninety's", "output": "â â ”⠑⠞⠽⠄⠎" }, { "input": "ninja", "output": "â â ”â šâ " }, { "input": "ninja's", "output": "â â ”â šâ â „â Ž" }, { "input": "ninjas", "output": "â â ”â šâ â Ž" }, { "input": "ninnies", "output": "â â ”â â Šâ ‘â Ž" }, { "input": "ninny", "output": "â â ”â â ½" }, { "input": "ninny's", "output": "â â ”â â ½â „â Ž" }, { "input": "ninth", "output": "â â ”â ¹" }, { "input": "ninth's", "output": "â â ”⠹⠄⠎" }, { "input": "ninths", "output": "â â ”⠹⠎" }, { "input": "niobium", "output": "â â Šâ •⠃⠊⠥â " }, { "input": "niobium's", "output": "â â Šâ •⠃⠊⠥â â „â Ž" }, { "input": "nip", "output": "â â Šâ " }, { "input": "nip's", "output": "â â Šâ â „â Ž" }, { "input": "nipped", "output": "â â Šâ â â «" }, { "input": "nipper", "output": "â â Šâ â â »" }, { "input": "nipper's", "output": "â â Šâ â â »â „â Ž" }, { "input": "nippers", "output": "â â Šâ â â »â Ž" }, { "input": "nippier", "output": "â â Šâ â â Šâ »" }, { "input": "nippiest", "output": "â â Šâ â â Šâ ‘â Œ" }, { "input": "nippiness", "output": "â â Šâ â â Šâ °â Ž" }, { "input": "nippiness's", "output": "â â Šâ â â Šâ °â Žâ „â Ž" }, { "input": "nipping", "output": "â â Šâ â â Œ" }, { "input": "nipple", "output": "â â Šâ â â ‡â ‘" }, { "input": "nipple's", "output": "â â Šâ â â ‡â ‘â „â Ž" }, { "input": "nipples", "output": "â â Šâ â â ‡â ‘â Ž" }, { "input": "nippy", "output": "â â Šâ â â ½" }, { "input": "nips", "output": "â â Šâ â Ž" }, { "input": "nirvana", "output": "â â Šâ —â §â â â " }, { "input": "nirvana's", "output": "â â Šâ —â §â â â â „â Ž" }, { "input": "nisei", "output": "â â Šâ Žâ ‘â Š" }, { "input": "nisei's", "output": "â â Šâ Žâ ‘â Šâ „â Ž" }, { "input": "nit", "output": "â â Šâ ž" }, { "input": "nit's", "output": "â â Šâ žâ „â Ž" }, { "input": "niter", "output": "â â Šâ žâ »" }, { "input": "niter's", "output": "â â Šâ žâ »â „â Ž" }, { "input": "nitpick", "output": "â â Šâ žâ â Šâ ‰â …" }, { "input": "nitpicked", "output": "â â Šâ žâ â Šâ ‰â …â «" }, { "input": "nitpicker", "output": "â â Šâ žâ â Šâ ‰â …â »" }, { "input": "nitpicker's", "output": "â â Šâ žâ â Šâ ‰â …⠻⠄⠎" }, { "input": "nitpickers", "output": "â â Šâ žâ â Šâ ‰â …⠻⠎" }, { "input": "nitpicking", "output": "â â Šâ žâ â Šâ ‰â …â Œ" }, { "input": "nitpicking's", "output": "â â Šâ žâ â Šâ ‰â …⠌⠄⠎" }, { "input": "nitpicks", "output": "â â Šâ žâ â Šâ ‰â …â Ž" }, { "input": "nitrate", "output": "â â Šâ žâ —â â žâ ‘" }, { "input": "nitrate's", "output": "â â Šâ žâ —â â žâ ‘â „â Ž" }, { "input": "nitrated", "output": "â â Šâ žâ —â â žâ «" }, { "input": "nitrates", "output": "â â Šâ žâ —â â žâ ‘â Ž" }, { "input": "nitrating", "output": "â â Šâ žâ —â â žâ Œ" }, { "input": "nitration", "output": "â â Šâ žâ —â  â " }, { "input": "nitration's", "output": "â â Šâ žâ —â  â â „â Ž" }, { "input": "nitrification", "output": "â â Šâ žâ —⠊⠋⠊⠉⠠â " }, { "input": "nitrification's", "output": "â â Šâ žâ —⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "nitrite", "output": "â â Šâ žâ —â Šâ žâ ‘" }, { "input": "nitrite's", "output": "â â Šâ žâ —â Šâ žâ ‘â „â Ž" }, { "input": "nitrites", "output": "â â Šâ žâ —â Šâ žâ ‘â Ž" }, { "input": "nitrocellulose", "output": "â â Šâ žâ —⠕⠉⠑⠇⠇⠥⠇⠕⠎⠑" }, { "input": "nitrocellulose's", "output": "â â Šâ žâ —⠕⠉⠑⠇⠇⠥⠇⠕⠎⠑⠄⠎" }, { "input": "nitrogen", "output": "â â Šâ žâ —⠕⠛⠢" }, { "input": "nitrogen's", "output": "â â Šâ žâ —⠕⠛⠢⠄⠎" }, { "input": "nitrogenous", "output": "â â Šâ žâ —⠕⠛⠢⠳⠎" }, { "input": "nitroglycerin", "output": "â â Šâ žâ —⠕⠛⠇⠽⠉⠻⠔" }, { "input": "nitroglycerin's", "output": "â â Šâ žâ —⠕⠛⠇⠽⠉⠻⠔⠄⠎" }, { "input": "nits", "output": "â â Šâ žâ Ž" }, { "input": "nitwit", "output": "â â Šâ žâ ºâ Šâ ž" }, { "input": "nitwit's", "output": "â â Šâ žâ ºâ Šâ žâ „â Ž" }, { "input": "nitwits", "output": "â â Šâ žâ ºâ Šâ žâ Ž" }, { "input": "nix", "output": "â â Šâ ­" }, { "input": "nix's", "output": "â â Šâ ­â „â Ž" }, { "input": "nixed", "output": "â â Šâ ­â «" }, { "input": "nixes", "output": "â â Šâ ­â ‘â Ž" }, { "input": "nixing", "output": "â â Šâ ­â Œ" }, { "input": "no", "output": "â â •" }, { "input": "no's", "output": "â â •â „â Ž" }, { "input": "nobelium", "output": "â â •⠃⠑⠇⠊⠥â " }, { "input": "nobelium's", "output": "â â •⠃⠑⠇⠊⠥â â „â Ž" }, { "input": "nobility", "output": "â â •⠃⠊⠇⠰⠽" }, { "input": "nobility's", "output": "â â •⠃⠊⠇⠰⠽⠄⠎" }, { "input": "noble", "output": "â â •â ¼" }, { "input": "noble's", "output": "â â •⠼⠄⠎" }, { "input": "nobleman", "output": "â â •â ¼â â â " }, { "input": "nobleman's", "output": "â â •â ¼â â â â „â Ž" }, { "input": "noblemen", "output": "â â •â ¼â â ¢" }, { "input": "nobleness", "output": "â â •⠼⠰⠎" }, { "input": "nobleness's", "output": "â â •⠼⠰⠎⠄⠎" }, { "input": "nobler", "output": "â â •⠼⠗" }, { "input": "nobles", "output": "â â •⠼⠎" }, { "input": "noblest", "output": "â â •⠼⠌" }, { "input": "noblewoman", "output": "â â •⠼⠺⠕â â â " }, { "input": "noblewoman's", "output": "â â •⠼⠺⠕â â â â „â Ž" }, { "input": "noblewomen", "output": "â â •⠼⠺⠕â â ¢" }, { "input": "nobly", "output": "â â •⠃⠇⠽" }, { "input": "nobodies", "output": "â â •⠃⠕⠙⠊⠑⠎" }, { "input": "nobody", "output": "â â •⠃⠕⠙⠽" }, { "input": "nobody's", "output": "â â •⠃⠕⠙⠽⠄⠎" }, { "input": "nocturnal", "output": "â â •⠉⠞⠥⠗â â â ‡" }, { "input": "nocturnally", "output": "â â •⠉⠞⠥⠗â â  â ½" }, { "input": "nocturne", "output": "â â •⠉⠞⠥⠗â â ‘" }, { "input": "nocturne's", "output": "â â •⠉⠞⠥⠗â â ‘â „â Ž" }, { "input": "nocturnes", "output": "â â •⠉⠞⠥⠗â â ‘â Ž" }, { "input": "nod", "output": "â â •â ™" }, { "input": "nod's", "output": "â â •⠙⠄⠎" }, { "input": "nodal", "output": "â â •â ™â â ‡" }, { "input": "nodded", "output": "â â •⠲⠫" }, { "input": "nodding", "output": "â â •⠲⠌" }, { "input": "noddy", "output": "â â •⠲⠽" }, { "input": "node", "output": "â â •⠙⠑" }, { "input": "node's", "output": "â â •⠙⠑⠄⠎" }, { "input": "nodes", "output": "â â •⠙⠑⠎" }, { "input": "nods", "output": "â â •⠙⠎" }, { "input": "nodular", "output": "â â •⠙⠥⠇⠜" }, { "input": "nodule", "output": "â â •⠙⠥⠇⠑" }, { "input": "nodule's", "output": "â â •⠙⠥⠇⠑⠄⠎" }, { "input": "nodules", "output": "â â •⠙⠥⠇⠑⠎" }, { "input": "noel", "output": "â â •â ‘â ‡" }, { "input": "noel's", "output": "â â •⠑⠇⠄⠎" }, { "input": "noels", "output": "â â •⠑⠇⠎" }, { "input": "noes", "output": "â â •â ‘â Ž" }, { "input": "noggin", "output": "â â •â ¶â ”" }, { "input": "noggin's", "output": "â â •⠶⠔⠄⠎" }, { "input": "noggins", "output": "â â •⠶⠔⠎" }, { "input": "noise", "output": "â â •â Šâ Žâ ‘" }, { "input": "noise's", "output": "â â •â Šâ Žâ ‘â „â Ž" }, { "input": "noised", "output": "â â •â Šâ Žâ «" }, { "input": "noiseless", "output": "â â •⠊⠎⠑⠨⠎" }, { "input": "noiselessly", "output": "â â •⠊⠎⠑⠨⠎⠇⠽" }, { "input": "noiselessness", "output": "â â •⠊⠎⠑⠨⠎⠰⠎" }, { "input": "noiselessness's", "output": "â â •⠊⠎⠑⠨⠎⠰⠎⠄⠎" }, { "input": "noisemaker", "output": "â â •â Šâ Žâ ‘â â â …â »" }, { "input": "noisemaker's", "output": "â â •â Šâ Žâ ‘â â â …⠻⠄⠎" }, { "input": "noisemakers", "output": "â â •â Šâ Žâ ‘â â â …⠻⠎" }, { "input": "noises", "output": "â â •â Šâ Žâ ‘â Ž" }, { "input": "noisier", "output": "â â •â Šâ Žâ Šâ »" }, { "input": "noisiest", "output": "â â •â Šâ Žâ Šâ ‘â Œ" }, { "input": "noisily", "output": "â â •⠊⠎⠊⠇⠽" }, { "input": "noisiness", "output": "â â •â Šâ Žâ Šâ °â Ž" }, { "input": "noisiness's", "output": "â â •â Šâ Žâ Šâ °â Žâ „â Ž" }, { "input": "noising", "output": "â â •â Šâ Žâ Œ" }, { "input": "noisome", "output": "â â •â Šâ â Ž" }, { "input": "noisy", "output": "â â •â Šâ Žâ ½" }, { "input": "nomad", "output": "â â •â â â ™" }, { "input": "nomad's", "output": "â â •â â â ™â „â Ž" }, { "input": "nomadic", "output": "â â •â â â ™â Šâ ‰" }, { "input": "nomads", "output": "â â •â â â ™â Ž" }, { "input": "nomenclature", "output": "â â •â â ¢â ‰â ‡â â žâ ¥â —â ‘" }, { "input": "nomenclature's", "output": "â â •â â ¢â ‰â ‡â â žâ ¥â —â ‘â „â Ž" }, { "input": "nomenclatures", "output": "â â •â â ¢â ‰â ‡â â žâ ¥â —â ‘â Ž" }, { "input": "nominal", "output": "â â •â â ”â â ‡" }, { "input": "nominally", "output": "â â •â â ”â  â ½" }, { "input": "nominate", "output": "â â •â â ”â â žâ ‘" }, { "input": "nominated", "output": "â â •â â ”â â žâ «" }, { "input": "nominates", "output": "â â •â â ”â â žâ ‘â Ž" }, { "input": "nominating", "output": "â â •â â ”â â žâ Œ" }, { "input": "nomination", "output": "â â •â â ”â  â " }, { "input": "nomination's", "output": "â â •â â ”â  â â „â Ž" }, { "input": "nominations", "output": "â â •â â ”â  â â Ž" }, { "input": "nominative", "output": "â â •â â ”â â žâ Šâ §â ‘" }, { "input": "nominative's", "output": "â â •â â ”â â žâ Šâ §â ‘â „â Ž" }, { "input": "nominatives", "output": "â â •â â ”â â žâ Šâ §â ‘â Ž" }, { "input": "nominator", "output": "â â •â â ”â â žâ •â —" }, { "input": "nominator's", "output": "â â •â â ”â â žâ •â —â „â Ž" }, { "input": "nominators", "output": "â â •â â ”â â žâ •â —â Ž" }, { "input": "nominee", "output": "â â •â â ”â ‘â ‘" }, { "input": "nominee's", "output": "â â •â â ”â ‘â ‘â „â Ž" }, { "input": "nominees", "output": "â â •â â ”â ‘â ‘â Ž" }, { "input": "non", "output": "â â •â " }, { "input": "nonabrasive", "output": "â â •â â â ƒâ —â â Žâ Šâ §â ‘" }, { "input": "nonabsorbent", "output": "â â •â â â ƒâ Žâ •⠗⠃⠢⠞" }, { "input": "nonabsorbent's", "output": "â â •â â â ƒâ Žâ •⠗⠃⠢⠞⠄⠎" }, { "input": "nonabsorbents", "output": "â â •â â â ƒâ Žâ •⠗⠃⠢⠞⠎" }, { "input": "nonacademic", "output": "â â •â â â ‰â â ™â ‘â â Šâ ‰" }, { "input": "nonacceptance", "output": "â â •â â â ’â ‘â â žâ ¨â ‘" }, { "input": "nonacceptance's", "output": "â â •â â â ’â ‘â â žâ ¨â ‘â „â Ž" }, { "input": "nonacid", "output": "â â •â â â ‰â Šâ ™" }, { "input": "nonactive", "output": "â â •â â â ‰â žâ Šâ §â ‘" }, { "input": "nonactive's", "output": "â â •â â â ‰â žâ Šâ §â ‘â „â Ž" }, { "input": "nonactives", "output": "â â •â â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "nonaddictive", "output": "â â •â â â ²â Šâ ‰â žâ Šâ §â ‘" }, { "input": "nonadhesive", "output": "â â •â â â ™â “â ‘â Žâ Šâ §â ‘" }, { "input": "nonadjacent", "output": "â â •â â â ™â šâ â ‰â ¢â ž" }, { "input": "nonadjustable", "output": "â â •â â â ™â šâ ¥â Œâ â ¼" }, { "input": "nonadministrative", "output": "â â •â â â ™â â ”⠊⠌⠗â â žâ Šâ §â ‘" }, { "input": "nonage", "output": "â â •â â â ›â ‘" }, { "input": "nonage's", "output": "â â •â â â ›â ‘â „â Ž" }, { "input": "nonagenarian", "output": "â â •â â â ›â ¢â œâ Šâ â " }, { "input": "nonagenarian's", "output": "â â •â â â ›â ¢â œâ Šâ â â „â Ž" }, { "input": "nonagenarians", "output": "â â •â â â ›â ¢â œâ Šâ â â Ž" }, { "input": "nonages", "output": "â â •â â â ›â ‘â Ž" }, { "input": "nonaggression", "output": "â â •â â â ¶â —â ‘â Žâ ¨â " }, { "input": "nonaggression's", "output": "â â •â â â ¶â —â ‘â Žâ ¨â â „â Ž" }, { "input": "nonalcoholic", "output": "â â •â â â ‡â ‰â •⠓⠕⠇⠊⠉" }, { "input": "nonaligned", "output": "â â •â â â ‡â Šâ ›â â «" }, { "input": "nonalignment", "output": "â â •â â â ‡â Šâ ›â â °â ž" }, { "input": "nonalignment's", "output": "â â •â â â ‡â Šâ ›â â °â žâ „â Ž" }, { "input": "nonallergic", "output": "â â •â â â ‡â ‡â »â ›â Šâ ‰" }, { "input": "nonappearance", "output": "â â •â â â â â ‘⠜⠨⠑" }, { "input": "nonappearance's", "output": "â â •â â â â â ‘⠜⠨⠑⠄⠎" }, { "input": "nonappearances", "output": "â â •â â â â â ‘⠜⠨⠑⠎" }, { "input": "nonassignable", "output": "â â •â â â Žâ Žâ Šâ ›â â â ¼" }, { "input": "nonathletic", "output": "â â •â â â ¹â ‡â ‘â žâ Šâ ‰" }, { "input": "nonattendance", "output": "â â •â â â žâ žâ ¢â ™â ¨â ‘" }, { "input": "nonattendance's", "output": "â â •â â â žâ žâ ¢â ™â ¨â ‘â „â Ž" }, { "input": "nonautomotive", "output": "â â •â â â ¥â žâ •â â •â žâ Šâ §â ‘" }, { "input": "nonavailability", "output": "â â •â â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½" }, { "input": "nonavailability's", "output": "â â •â â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "nonbasic", "output": "â â •â â ƒâ â Žâ Šâ ‰" }, { "input": "nonbeliever", "output": "â â •â â ƒâ ‘⠇⠊⠑⠧⠻" }, { "input": "nonbeliever's", "output": "â â •â â ƒâ ‘⠇⠊⠑⠧⠻⠄⠎" }, { "input": "nonbelievers", "output": "â â •â â ƒâ ‘⠇⠊⠑⠧⠻⠎" }, { "input": "nonbelligerent", "output": "â â •â â ƒâ ‘⠇⠇⠊⠛⠻⠢⠞" }, { "input": "nonbelligerent's", "output": "â â •â â ƒâ ‘⠇⠇⠊⠛⠻⠢⠞⠄⠎" }, { "input": "nonbelligerents", "output": "â â •â â ƒâ ‘⠇⠇⠊⠛⠻⠢⠞⠎" }, { "input": "nonbinding", "output": "â â •â â ƒâ ”⠙⠌" }, { "input": "nonbreakable", "output": "â â •â â ƒâ —â ‚â …â â ¼" }, { "input": "nonburnable", "output": "â â •â â ƒâ ¥â —â â â ¼" }, { "input": "noncaloric", "output": "â â •â â ‰â â ‡â •â —â Šâ ‰" }, { "input": "noncancerous", "output": "â â •â â ‰â ¨â ‘⠗⠳⠎" }, { "input": "nonce", "output": "â â •â â ‰â ‘" }, { "input": "nonce's", "output": "â â •â â ‰â ‘â „â Ž" }, { "input": "nonchalance", "output": "â â •â â ¡â â ‡â ¨â ‘" }, { "input": "nonchalance's", "output": "â â •â â ¡â â ‡â ¨â ‘â „â Ž" }, { "input": "nonchalant", "output": "â â •â â ¡â â ‡â â â ž" }, { "input": "nonchalantly", "output": "â â •â â ¡â â ‡â â â žâ ‡â ½" }, { "input": "nonchargeable", "output": "â â •â â ¡â œâ ›â ‘â â ¼" }, { "input": "nonclerical", "output": "â â •â â ‰â ‡â »â Šâ ‰â â ‡" }, { "input": "nonclerical's", "output": "â â •â â ‰â ‡â »â Šâ ‰â â ‡â „â Ž" }, { "input": "nonclericals", "output": "â â •â â ‰â ‡â »â Šâ ‰â â ‡â Ž" }, { "input": "nonclinical", "output": "â â •â â ‰â ‡â ”â Šâ ‰â â ‡" }, { "input": "noncollectable", "output": "â â •â â ‰â •⠇⠇⠑⠉⠞â â ¼" }, { "input": "noncom", "output": "â â •â â ‰â •â " }, { "input": "noncom's", "output": "â â •â â ‰â •â â „â Ž" }, { "input": "noncombat", "output": "â â •â â ‰â •â â ƒâ â ž" }, { "input": "noncombatant", "output": "â â •â â ‰â •â â ƒâ â žâ â â ž" }, { "input": "noncombatant's", "output": "â â •â â ‰â •â â ƒâ â žâ â â žâ „â Ž" }, { "input": "noncombatants", "output": "â â •â â ‰â •â â ƒâ â žâ â â žâ Ž" }, { "input": "noncombustible", "output": "â â •â â ‰â •â â ƒâ ¥â Œâ Šâ ¼" }, { "input": "noncommercial", "output": "â â •â â ‰â •â â â »â ‰â Šâ â ‡" }, { "input": "noncommercial's", "output": "â â •â â ‰â •â â â »â ‰â Šâ â ‡â „â Ž" }, { "input": "noncommercials", "output": "â â •â â ‰â •â â â »â ‰â Šâ â ‡â Ž" }, { "input": "noncommittal", "output": "â â •â â ‰â •â â â Šâ žâ žâ â ‡" }, { "input": "noncommittally", "output": "â â •â â ‰â •â â â Šâ žâ žâ  â ½" }, { "input": "noncommunicable", "output": "â â •â â ‰â •â â â ¥â â Šâ ‰â â ¼" }, { "input": "noncompeting", "output": "â â •â â ‰â •â â â ‘â žâ Œ" }, { "input": "noncompetitive", "output": "â â •â â ‰â •â â â ‘â žâ Šâ žâ Šâ §â ‘" }, { "input": "noncompliance", "output": "â â •â â ‰â •â â â ‡â Šâ ¨â ‘" }, { "input": "noncompliance's", "output": "â â •â â ‰â •â â â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "noncomplying", "output": "â â •â â ‰â •â â â ‡â ½â Œ" }, { "input": "noncomprehending", "output": "â â •â â ‰â •â â â —⠑⠓⠢⠙⠌" }, { "input": "noncoms", "output": "â â •â â ‰â •â â Ž" }, { "input": "nonconducting", "output": "â â •â â ‰â •â â ™â ¥â ‰â žâ Œ" }, { "input": "nonconductor", "output": "â â •â â ‰â •â â ™â ¥â ‰â žâ •â —" }, { "input": "nonconductor's", "output": "â â •â â ‰â •â â ™â ¥â ‰â žâ •â —â „â Ž" }, { "input": "nonconductors", "output": "â â •â â ‰â •â â ™â ¥â ‰â žâ •â —â Ž" }, { "input": "nonconforming", "output": "â â •â â ‰â •â â ¿â â Œ" }, { "input": "nonconformist", "output": "â â •â â ‰â •â â ¿â â Šâ Œ" }, { "input": "nonconformist's", "output": "â â •â â ‰â •â â ¿â â Šâ Œâ „â Ž" }, { "input": "nonconformists", "output": "â â •â â ‰â •â â ¿â â Šâ Œâ Ž" }, { "input": "nonconformity", "output": "â â •â â ‰â •â â ¿â â °â ½" }, { "input": "nonconformity's", "output": "â â •â â ‰â •â â ¿â â °â ½â „â Ž" }, { "input": "nonconsecutive", "output": "â â •â â ‰â •â â Žâ ‘⠉⠥⠞⠊⠧⠑" }, { "input": "nonconstructive", "output": "â â •â â ‰â •â â Œâ —⠥⠉⠞⠊⠧⠑" }, { "input": "noncontagious", "output": "â â •â â ‰â •â â žâ â ›â Šâ ³â Ž" }, { "input": "noncontinuous", "output": "â â •â â ‰â •â â žâ ”⠥⠳⠎" }, { "input": "noncontributing", "output": "â â •â â ‰â •â â žâ —⠊⠃⠥⠞⠌" }, { "input": "noncontributory", "output": "â â •â â ‰â •â â žâ —⠊⠃⠥⠞⠕⠗⠽" }, { "input": "noncontroversial", "output": "â â •â â ‰â •â â žâ —⠕⠧⠻⠎⠊â â ‡" }, { "input": "nonconvertible", "output": "â â •â â ‰â •â â §â »â žâ Šâ ¼" }, { "input": "noncooperation", "output": "â â •â â ‰â •â •â â »â  â " }, { "input": "noncooperation's", "output": "â â •â â ‰â •â •â â »â  â â „â Ž" }, { "input": "noncorroding", "output": "â â •â â ‰â •⠗⠗⠕⠙⠌" }, { "input": "noncorrosive", "output": "â â •â â ‰â •â —â —â •â Žâ Šâ §â ‘" }, { "input": "noncredit", "output": "â â •â â ‰â —â «â Šâ ž" }, { "input": "noncriminal", "output": "â â •â â ‰â —â Šâ â ”â â ‡" }, { "input": "noncriminal's", "output": "â â •â â ‰â —â Šâ â ”â â ‡â „â Ž" }, { "input": "noncriminals", "output": "â â •â â ‰â —â Šâ â ”â â ‡â Ž" }, { "input": "noncritical", "output": "â â •â â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "noncrystalline", "output": "â â •â â ‰â —⠽⠌â â ‡â ‡â ”â ‘" }, { "input": "noncumulative", "output": "â â •â â ‰â ¥â â ¥â ‡â â žâ Šâ §â ‘" }, { "input": "noncustodial", "output": "â â •â â ‰â ¥â Œâ •⠙⠊â â ‡" }, { "input": "nondairy", "output": "â â •â â ™â â Šâ —â ½" }, { "input": "nondeductible", "output": "â â •â â ™â ‘⠙⠥⠉⠞⠊⠼" }, { "input": "nondeductible's", "output": "â â •â â ™â ‘⠙⠥⠉⠞⠊⠼⠄⠎" }, { "input": "nondeliveries", "output": "â â •â â ™â ‘⠇⠊⠧⠻⠊⠑⠎" }, { "input": "nondelivery", "output": "â â •â â ™â ‘⠇⠊⠧⠻⠽" }, { "input": "nondelivery's", "output": "â â •â â ™â ‘⠇⠊⠧⠻⠽⠄⠎" }, { "input": "nondemocratic", "output": "â â •â â ™â ‘â â •⠉⠗â â žâ Šâ ‰" }, { "input": "nondenominational", "output": "â â •â â ™â ‘â â •â â ”â  â â â ‡" }, { "input": "nondepartmental", "output": "â â •â â ™â ‘â â â °â žâ â ‡" }, { "input": "nondepreciating", "output": "â â •â â ™â ‘â â —⠑⠉⠊â â žâ Œ" }, { "input": "nondescript", "output": "â â •â â ™â ‘⠎⠉⠗⠊â â ž" }, { "input": "nondestructive", "output": "â â •â â ™â ‘⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "nondetachable", "output": "â â •â â ™â ‘â žâ â ¡â â ¼" }, { "input": "nondisciplinary", "output": "â â •â â ™â Šâ Žâ ‰â Šâ â ‡â ”⠜⠽" }, { "input": "nondisclosure", "output": "â â •â â ™â Šâ Žâ ‰â ‡â •⠎⠥⠗⠑" }, { "input": "nondisclosure's", "output": "â â •â â ™â Šâ Žâ ‰â ‡â •⠎⠥⠗⠑⠄⠎" }, { "input": "nondiscrimination", "output": "â â •â â ™â Šâ Žâ ‰â —â Šâ â ”â  â " }, { "input": "nondiscrimination's", "output": "â â •â â ™â Šâ Žâ ‰â —â Šâ â ”â  â â „â Ž" }, { "input": "nondiscriminatory", "output": "â â •â â ™â Šâ Žâ ‰â —â Šâ â ”â â žâ •â —â ½" }, { "input": "nondramatic", "output": "â â •â â ™â —â â â â žâ Šâ ‰" }, { "input": "nondrinker", "output": "â â •â â ™â —⠔⠅⠻" }, { "input": "nondrinker's", "output": "â â •â â ™â —⠔⠅⠻⠄⠎" }, { "input": "nondrinkers", "output": "â â •â â ™â —⠔⠅⠻⠎" }, { "input": "nondrying", "output": "â â •â â ™â —⠽⠌" }, { "input": "none", "output": "â â â •" }, { "input": "noneducational", "output": "â â •â â «â ¥â ‰â  â â â ‡" }, { "input": "noneffective", "output": "â â •â â ‘⠖⠑⠉⠞⠊⠧⠑" }, { "input": "nonelastic", "output": "â â •â â ‘â ‡â â Œâ Šâ ‰" }, { "input": "nonelectric", "output": "â â •â â ‘⠇⠑⠉⠞⠗⠊⠉" }, { "input": "nonelectrical", "output": "â â •â â ‘⠇⠑⠉⠞⠗⠊⠉â â ‡" }, { "input": "nonempty", "output": "â â •â â ‘â â â žâ ½" }, { "input": "nonenforceable", "output": "â â •â â ¢â ¿â ‰â ‘â â ¼" }, { "input": "nonentities", "output": "â â •â â ¢â žâ Šâ žâ Šâ ‘â Ž" }, { "input": "nonentity", "output": "â â •â â ¢â žâ °â ½" }, { "input": "nonentity's", "output": "â â •â â ¢â žâ °â ½â „â Ž" }, { "input": "nonequivalent", "output": "â â •â â ‘⠟⠥⠊⠧â â ‡â ¢â ž" }, { "input": "nonequivalent's", "output": "â â •â â ‘⠟⠥⠊⠧â â ‡â ¢â žâ „â Ž" }, { "input": "nonequivalents", "output": "â â •â â ‘⠟⠥⠊⠧â â ‡â ¢â žâ Ž" }, { "input": "nonessential", "output": "â â •â â ‘⠎⠎⠢⠞⠊â â ‡" }, { "input": "nonesuch", "output": "â â â •â Žâ ¡" }, { "input": "nonesuch's", "output": "â â â •â Žâ ¡â „â Ž" }, { "input": "nonesuches", "output": "â â â •â Žâ ¡â ‘â Ž" }, { "input": "nonetheless", "output": "â â â •⠮⠨⠎" }, { "input": "nonevent", "output": "â â •â â ‘⠧⠢⠞" }, { "input": "nonevent's", "output": "â â •â â ‘⠧⠢⠞⠄⠎" }, { "input": "nonevents", "output": "â â •â â ‘⠧⠢⠞⠎" }, { "input": "nonexchangeable", "output": "â â •â â ‘â ­â ¡â â â ›â ‘â â ¼" }, { "input": "nonexclusive", "output": "â â •â â ‘⠭⠉⠇⠥⠎⠊⠧⠑" }, { "input": "nonexempt", "output": "â â •â â ‘â ­â ‘â â â ž" }, { "input": "nonexempt's", "output": "â â •â â ‘â ­â ‘â â â žâ „â Ž" }, { "input": "nonexistence", "output": "â â •â â ‘⠭⠊⠌⠰⠑" }, { "input": "nonexistence's", "output": "â â •â â ‘⠭⠊⠌⠰⠑⠄⠎" }, { "input": "nonexistent", "output": "â â •â â ‘⠭⠊⠌⠢⠞" }, { "input": "nonexplosive", "output": "â â •â â ‘â ­â â ‡â •â Žâ Šâ §â ‘" }, { "input": "nonexplosive's", "output": "â â •â â ‘â ­â â ‡â •â Žâ Šâ §â ‘â „â Ž" }, { "input": "nonexplosives", "output": "â â •â â ‘â ­â â ‡â •â Žâ Šâ §â ‘â Ž" }, { "input": "nonfactual", "output": "â â •â â ‹â â ‰â žâ ¥â â ‡" }, { "input": "nonfading", "output": "â â •â â ‹â â ™â Œ" }, { "input": "nonfat", "output": "â â •â â ‹â â ž" }, { "input": "nonfatal", "output": "â â •â â ‹â â žâ â ‡" }, { "input": "nonfattening", "output": "â â •â â ‹â â žâ žâ ¢â Œ" }, { "input": "nonferrous", "output": "â â •â â ‹â »â —⠳⠎" }, { "input": "nonfiction", "output": "â â •â â ‹â Šâ ‰â °â " }, { "input": "nonfiction's", "output": "â â •â â ‹â Šâ ‰â °â â „â Ž" }, { "input": "nonfictional", "output": "â â •â â ‹â Šâ ‰â °â â â ‡" }, { "input": "nonflammable", "output": "â â •â â ‹â ‡â â â â â ¼" }, { "input": "nonflowering", "output": "â â •â â ‹â ‡â ªâ »â Œ" }, { "input": "nonfluctuating", "output": "â â •â â ‹â ‡â ¥â ‰â žâ ¥â â žâ Œ" }, { "input": "nonflying", "output": "â â •â â ‹â ‡â ½â Œ" }, { "input": "nonfood", "output": "â â •â â ‹â •â •â ™" }, { "input": "nonfood's", "output": "â â •â â ‹â •⠕⠙⠄⠎" }, { "input": "nonfreezing", "output": "â â •â â ‹â —⠑⠑⠵⠌" }, { "input": "nonfunctional", "output": "â â •â â ‹â ¥â â ‰â °â â â ‡" }, { "input": "nongovernmental", "output": "â â •â â ›â •â §â »â â °â žâ â ‡" }, { "input": "nongranular", "output": "â â •â â ›â —â â â ¥â ‡â œ" }, { "input": "nonhazardous", "output": "â â •â â “â â µâ œâ ™â ³â Ž" }, { "input": "nonhereditary", "output": "â â •â â “⠻⠫⠊⠞⠜⠽" }, { "input": "nonhuman", "output": "â â •â â “â ¥â â â " }, { "input": "nonidentical", "output": "â â •â â Šâ ™â ¢â žâ Šâ ‰â â ‡" }, { "input": "noninclusive", "output": "â â •â â ”⠉⠇⠥⠎⠊⠧⠑" }, { "input": "nonindependent", "output": "â â •â â ”⠙⠑â â ¢â ™â ¢â ž" }, { "input": "nonindustrial", "output": "â â •â â ”⠙⠥⠌⠗⠊â â ‡" }, { "input": "noninfectious", "output": "â â •â â ”⠋⠑⠉⠞⠊⠳⠎" }, { "input": "noninflammatory", "output": "â â •â â ”â ‹â ‡â â â â â žâ •â —â ½" }, { "input": "noninflationary", "output": "â â •â â ”⠋⠇⠠â â œâ ½" }, { "input": "noninflected", "output": "â â •â â ”⠋⠇⠑⠉⠞⠫" }, { "input": "nonintellectual", "output": "â â •â â ”⠞⠑⠇⠇⠑⠉⠞⠥â â ‡" }, { "input": "nonintellectual's", "output": "â â •â â ”⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â „â Ž" }, { "input": "nonintellectuals", "output": "â â •â â ”⠞⠑⠇⠇⠑⠉⠞⠥â â ‡â Ž" }, { "input": "noninterchangeable", "output": "â â •â â ”⠞⠻⠡â â â ›â ‘â â ¼" }, { "input": "noninterference", "output": "â â •â â ”⠞⠻⠋⠻⠰⠑" }, { "input": "noninterference's", "output": "â â •â â ”⠞⠻⠋⠻⠰⠑⠄⠎" }, { "input": "nonintervention", "output": "â â •â â ”⠞⠻⠧⠢⠰â " }, { "input": "nonintervention's", "output": "â â •â â ”⠞⠻⠧⠢⠰â â „â Ž" }, { "input": "nonintoxicating", "output": "â â •â â ”â žâ •â ­â Šâ ‰â â žâ Œ" }, { "input": "noninvasive", "output": "â â •â â ”â §â â Žâ Šâ §â ‘" }, { "input": "nonirritating", "output": "â â •â â Šâ —â —â Šâ žâ â žâ Œ" }, { "input": "nonjudgmental", "output": "â â •â â šâ ¥â ™â ›â °â žâ â ‡" }, { "input": "nonjudicial", "output": "â â •â â šâ ¥â ™â Šâ ‰â Šâ â ‡" }, { "input": "nonlegal", "output": "â â •â â ‡â ‘â ›â â ‡" }, { "input": "nonlethal", "output": "â â •â â ‡â ‘â ¹â â ‡" }, { "input": "nonlinear", "output": "â â •â â ‡â ”â ‘â œ" }, { "input": "nonliterary", "output": "â â •â â ‡â Šâ žâ »â œâ ½" }, { "input": "nonliving", "output": "â â •â â ‡â Šâ §â Œ" }, { "input": "nonliving's", "output": "â â •â â ‡â Šâ §â Œâ „â Ž" }, { "input": "nonmagnetic", "output": "â â •â â â â ›â â ‘â žâ Šâ ‰" }, { "input": "nonmalignant", "output": "â â •â â â â ‡â Šâ ›â â â â ž" }, { "input": "nonmember", "output": "â â •â â â ‘â â ƒâ »" }, { "input": "nonmember's", "output": "â â •â â â ‘â â ƒâ »â „â Ž" }, { "input": "nonmembers", "output": "â â •â â â ‘â â ƒâ »â Ž" }, { "input": "nonmetal", "output": "â â •â â â ‘â žâ â ‡" }, { "input": "nonmetal's", "output": "â â •â â â ‘â žâ â ‡â „â Ž" }, { "input": "nonmetallic", "output": "â â •â â â ‘â žâ â ‡â ‡â Šâ ‰" }, { "input": "nonmetals", "output": "â â •â â â ‘â žâ â ‡â Ž" }, { "input": "nonmigratory", "output": "â â •â â â Šâ ›â —â â žâ •â —â ½" }, { "input": "nonmilitant", "output": "â â •â â â Šâ ‡â Šâ žâ â â ž" }, { "input": "nonmilitary", "output": "â â •â â â Šâ ‡â Šâ žâ œâ ½" }, { "input": "nonnarcotic", "output": "â â •â â â œâ ‰â •â žâ Šâ ‰" }, { "input": "nonnarcotic's", "output": "â â •â â â œâ ‰â •⠞⠊⠉⠄⠎" }, { "input": "nonnarcotics", "output": "â â •â â â œâ ‰â •⠞⠊⠉⠎" }, { "input": "nonnative", "output": "â â •â â â â žâ Šâ §â ‘" }, { "input": "nonnative's", "output": "â â •â â â â žâ Šâ §â ‘â „â Ž" }, { "input": "nonnatives", "output": "â â •â â â â žâ Šâ §â ‘â Ž" }, { "input": "nonnegotiable", "output": "â â •â â â ‘⠛⠕⠞⠊â â ¼" }, { "input": "nonnuclear", "output": "â â •â â â ¥â ‰â ‡â ‘â œ" }, { "input": "nonnumerical", "output": "â â •â â â ¥â â »â Šâ ‰â â ‡" }, { "input": "nonobjective", "output": "â â •â â •⠃⠚⠑⠉⠞⠊⠧⠑" }, { "input": "nonobligatory", "output": "â â •â â •⠃⠇⠊⠛â â žâ •â —â ½" }, { "input": "nonobservance", "output": "â â •â â •⠃⠎⠻⠧⠨⠑" }, { "input": "nonobservance's", "output": "â â •â â •⠃⠎⠻⠧⠨⠑⠄⠎" }, { "input": "nonobservant", "output": "â â •â â •⠃⠎⠻⠧â â â ž" }, { "input": "nonoccupational", "output": "â â •â â •â ’â ¥â â  â â â ‡" }, { "input": "nonoccurrence", "output": "â â •â â •⠒⠥⠗⠗⠰⠑" }, { "input": "nonoccurrence's", "output": "â â •â â •⠒⠥⠗⠗⠰⠑⠄⠎" }, { "input": "nonofficial", "output": "â â •â â ·â ‹â Šâ ‰â Šâ â ‡" }, { "input": "nonoperational", "output": "â â •â â •â â »â  â â â ‡" }, { "input": "nonoperative", "output": "â â •â â •â â »â â žâ Šâ §â ‘" }, { "input": "nonparallel", "output": "â â •â â â œâ â ‡â ‡â ‘â ‡" }, { "input": "nonparallel's", "output": "â â •â â â œâ â ‡â ‡â ‘⠇⠄⠎" }, { "input": "nonparallels", "output": "â â •â â â œâ â ‡â ‡â ‘⠇⠎" }, { "input": "nonpareil", "output": "â â •â â â œâ ‘â Šâ ‡" }, { "input": "nonpareil's", "output": "â â •â â â œâ ‘⠊⠇⠄⠎" }, { "input": "nonpareils", "output": "â â •â â â œâ ‘⠊⠇⠎" }, { "input": "nonparticipant", "output": "â â •â â â â Šâ ‰â Šâ â â â ž" }, { "input": "nonparticipant's", "output": "â â •â â â â Šâ ‰â Šâ â â â žâ „â Ž" }, { "input": "nonparticipants", "output": "â â •â â â â Šâ ‰â Šâ â â â žâ Ž" }, { "input": "nonparticipating", "output": "â â •â â â â Šâ ‰â Šâ â â žâ Œ" }, { "input": "nonpartisan", "output": "â â •â â â â Šâ Žâ â " }, { "input": "nonpartisan's", "output": "â â •â â â â Šâ Žâ â â „â Ž" }, { "input": "nonpartisans", "output": "â â •â â â â Šâ Žâ â â Ž" }, { "input": "nonpaying", "output": "â â •â â â â ½â Œ" }, { "input": "nonpayment", "output": "â â •â â â â ½â °â ž" }, { "input": "nonpayment's", "output": "â â •â â â â ½â °â žâ „â Ž" }, { "input": "nonpayments", "output": "â â •â â â â ½â °â žâ Ž" }, { "input": "nonperformance", "output": "â â •â â â »â ¿â â ¨â ‘" }, { "input": "nonperformance's", "output": "â â •â â â »â ¿â â ¨â ‘â „â Ž" }, { "input": "nonperforming", "output": "â â •â â â »â ¿â â Œ" }, { "input": "nonperishable", "output": "â â •â â â »â Šâ ©â â ¼" }, { "input": "nonperson", "output": "â â •â â â »â Žâ •â " }, { "input": "nonperson's", "output": "â â •â â â »â Žâ •â â „â Ž" }, { "input": "nonpersons", "output": "â â •â â â »â Žâ •â â Ž" }, { "input": "nonphysical", "output": "â â •â â â “⠽⠎⠊⠉â â ‡" }, { "input": "nonphysically", "output": "â â •â â â “⠽⠎⠊⠉⠠⠽" }, { "input": "nonplus", "output": "â â •â â â ‡â ¥â Ž" }, { "input": "nonpluses", "output": "â â •â â â ‡â ¥â Žâ ‘â Ž" }, { "input": "nonplussed", "output": "â â •â â â ‡â ¥â Žâ Žâ «" }, { "input": "nonplussing", "output": "â â •â â â ‡â ¥â Žâ Žâ Œ" }, { "input": "nonpoisonous", "output": "â â •â â â •â Šâ Žâ •â â ³â Ž" }, { "input": "nonpolitical", "output": "â â •â â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "nonpolluting", "output": "â â •â â â •⠇⠇⠥⠞⠌" }, { "input": "nonporous", "output": "â â •â â â •⠗⠳⠎" }, { "input": "nonpracticing", "output": "â â •â â â —â â ‰â žâ Šâ ‰â Œ" }, { "input": "nonprejudicial", "output": "â â •â â â —⠑⠚⠥⠙⠊⠉⠊â â ‡" }, { "input": "nonprescription", "output": "â â •â â â —⠑⠎⠉⠗⠊â â °â " }, { "input": "nonproductive", "output": "â â •â â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "nonprofessional", "output": "â â •â â â —â •â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "nonprofessional's", "output": "â â •â â â —â •â ‹â ‘â Žâ ¨â â â ‡â „â Ž" }, { "input": "nonprofessionals", "output": "â â •â â â —â •â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "nonprofit", "output": "â â •â â â —â ·â Šâ ž" }, { "input": "nonprofit's", "output": "â â •â â â —â ·â Šâ žâ „â Ž" }, { "input": "nonprofitable", "output": "â â •â â â —â ·â Šâ žâ â ¼" }, { "input": "nonprofits", "output": "â â •â â â —â ·â Šâ žâ Ž" }, { "input": "nonproliferation", "output": "â â •â â â —⠕⠇⠊⠋⠻⠠â " }, { "input": "nonproliferation's", "output": "â â •â â â —⠕⠇⠊⠋⠻⠠â â „â Ž" }, { "input": "nonpublic", "output": "â â •â â â ¥â ƒâ ‡â Šâ ‰" }, { "input": "nonpunishable", "output": "â â •â â â ¥â â Šâ ©â â ¼" }, { "input": "nonracial", "output": "â â •â â —â â ‰â Šâ â ‡" }, { "input": "nonradioactive", "output": "â â •â â —â â ™â Šâ •â â ‰â žâ Šâ §â ‘" }, { "input": "nonrandom", "output": "â â •â â —⠯⠕â " }, { "input": "nonreactive", "output": "â â •â â —â ‘â â ‰â žâ Šâ §â ‘" }, { "input": "nonreciprocal", "output": "â â •â â —⠑⠉⠊â â —â •â ‰â â ‡" }, { "input": "nonreciprocal's", "output": "â â •â â —⠑⠉⠊â â —â •â ‰â â ‡â „â Ž" }, { "input": "nonreciprocals", "output": "â â •â â —⠑⠉⠊â â —â •â ‰â â ‡â Ž" }, { "input": "nonreciprocating", "output": "â â •â â —⠑⠉⠊â â —â •â ‰â â žâ Œ" }, { "input": "nonrecognition", "output": "â â •â â —⠑⠉⠕⠛â â Šâ °â " }, { "input": "nonrecognition's", "output": "â â •â â —⠑⠉⠕⠛â â Šâ °â â „â Ž" }, { "input": "nonrecoverable", "output": "â â •â â —⠑⠉⠕⠧⠻â â ¼" }, { "input": "nonrecurring", "output": "â â •â â —⠑⠉⠥⠗⠗⠌" }, { "input": "nonredeemable", "output": "â â •â â —⠑⠙⠑⠑â â â ¼" }, { "input": "nonrefillable", "output": "â â •â â —⠑⠋⠊⠇⠇â â ¼" }, { "input": "nonrefundable", "output": "â â •â â —â ‘â ‹â ¥â â ™â â ¼" }, { "input": "nonreligious", "output": "â â •â â —⠑⠇⠊⠛⠊⠳⠎" }, { "input": "nonrenewable", "output": "â â •â â —â ‘â â ‘â ºâ â ¼" }, { "input": "nonrepresentational", "output": "â â •â â —â ‘â â —⠑⠎⠢⠞⠠â â â ‡" }, { "input": "nonresident", "output": "â â •â â —⠑⠎⠊⠙⠢⠞" }, { "input": "nonresident's", "output": "â â •â â —⠑⠎⠊⠙⠢⠞⠄⠎" }, { "input": "nonresidential", "output": "â â •â â —⠑⠎⠊⠙⠢⠞⠊â â ‡" }, { "input": "nonresidents", "output": "â â •â â —⠑⠎⠊⠙⠢⠞⠎" }, { "input": "nonresidual", "output": "â â •â â —⠑⠎⠊⠙⠥â â ‡" }, { "input": "nonresidual's", "output": "â â •â â —⠑⠎⠊⠙⠥â â ‡â „â Ž" }, { "input": "nonresistance", "output": "â â •â â —⠑⠎⠊⠌⠨⠑" }, { "input": "nonresistance's", "output": "â â •â â —⠑⠎⠊⠌⠨⠑⠄⠎" }, { "input": "nonresistant", "output": "â â •â â —â ‘â Žâ Šâ Œâ â â ž" }, { "input": "nonrestrictive", "output": "â â •â â —⠑⠌⠗⠊⠉⠞⠊⠧⠑" }, { "input": "nonreturnable", "output": "â â •â â —⠑⠞⠥⠗â â â ¼" }, { "input": "nonreturnable's", "output": "â â •â â —⠑⠞⠥⠗â â â ¼â „â Ž" }, { "input": "nonreturnables", "output": "â â •â â —⠑⠞⠥⠗â â â ¼â Ž" }, { "input": "nonrhythmic", "output": "â â •â â —⠓⠽⠹â â Šâ ‰" }, { "input": "nonrigid", "output": "â â •â â —⠊⠛⠊⠙" }, { "input": "nonsalaried", "output": "â â •â â Žâ â ‡â œâ Šâ «" }, { "input": "nonscheduled", "output": "â â •â â Žâ ¡â «â ¥â ‡â «" }, { "input": "nonscientific", "output": "â â •â â Žâ ‰â Šâ ¢â žâ Šâ ‹â Šâ ‰" }, { "input": "nonscoring", "output": "â â •â â Žâ ‰â •â —â Œ" }, { "input": "nonseasonal", "output": "â â •â â Žâ ‚â Žâ •â â â ‡" }, { "input": "nonsectarian", "output": "â â •â â Žâ ‘⠉⠞⠜⠊â â " }, { "input": "nonsecular", "output": "â â •â â Žâ ‘⠉⠥⠇⠜" }, { "input": "nonsegregated", "output": "â â •â â Žâ ‘⠛⠗⠑⠛â â žâ «" }, { "input": "nonsense", "output": "â â •â â Žâ ¢â Žâ ‘" }, { "input": "nonsense's", "output": "â â •â â Žâ ¢â Žâ ‘â „â Ž" }, { "input": "nonsensical", "output": "â â •â â Žâ ¢â Žâ Šâ ‰â â ‡" }, { "input": "nonsensically", "output": "â â •â â Žâ ¢â Žâ Šâ ‰â  â ½" }, { "input": "nonsensitive", "output": "â â •â â Žâ ¢â Žâ Šâ žâ Šâ §â ‘" }, { "input": "nonsexist", "output": "â â •â â Žâ ‘â ­â Šâ Œ" }, { "input": "nonsexual", "output": "â â •â â Žâ ‘â ­â ¥â â ‡" }, { "input": "nonskid", "output": "â â •â â Žâ …â Šâ ™" }, { "input": "nonslip", "output": "â â •â â Žâ ‡â Šâ " }, { "input": "nonsmoker", "output": "â â •â â Žâ â •â …â »" }, { "input": "nonsmoker's", "output": "â â •â â Žâ â •⠅⠻⠄⠎" }, { "input": "nonsmokers", "output": "â â •â â Žâ â •⠅⠻⠎" }, { "input": "nonsmoking", "output": "â â •â â Žâ â •â …â Œ" }, { "input": "nonsocial", "output": "â â •â â Žâ •⠉⠊â â ‡" }, { "input": "nonspeaking", "output": "â â •â â Žâ â ‚â …â Œ" }, { "input": "nonspecialist", "output": "â â •â â Žâ â ‘⠉⠊â â ‡â Šâ Œ" }, { "input": "nonspecialist's", "output": "â â •â â Žâ â ‘⠉⠊â â ‡â Šâ Œâ „â Ž" }, { "input": "nonspecialists", "output": "â â •â â Žâ â ‘⠉⠊â â ‡â Šâ Œâ Ž" }, { "input": "nonspecializing", "output": "â â •â â Žâ â ‘⠉⠊â â ‡â Šâ µâ Œ" }, { "input": "nonspiritual", "output": "â â •â â ¸â Žâ ¥â â ‡" }, { "input": "nonspiritual's", "output": "â â •â â ¸â Žâ ¥â â ‡â „â Ž" }, { "input": "nonspirituals", "output": "â â •â â ¸â Žâ ¥â â ‡â Ž" }, { "input": "nonstaining", "output": "â â •â â Œâ â ”â Œ" }, { "input": "nonstandard", "output": "â â •â â Œâ ¯â œâ ™" }, { "input": "nonstick", "output": "â â •â â Œâ Šâ ‰â …" }, { "input": "nonstop", "output": "â â •â â Œâ •â " }, { "input": "nonstrategic", "output": "â â •â â Œâ —â â žâ ‘⠛⠊⠉" }, { "input": "nonstriking", "output": "â â •â â Œâ —â Šâ …â Œ" }, { "input": "nonstructural", "output": "â â •â â Œâ —⠥⠉⠞⠥⠗â â ‡" }, { "input": "nonsuccessive", "output": "â â •â â Žâ ¥â ’â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "nonsupport", "output": "â â •â â Žâ ¥â â â •â —â ž" }, { "input": "nonsupport's", "output": "â â •â â Žâ ¥â â â •â —â žâ „â Ž" }, { "input": "nonsupporting", "output": "â â •â â Žâ ¥â â â •â —â žâ Œ" }, { "input": "nonsurgical", "output": "â â •â â Žâ ¥â —⠛⠊⠉â â ‡" }, { "input": "nonsustaining", "output": "â â •â â Žâ ¥â Œâ â ”â Œ" }, { "input": "nonsympathizer", "output": "â â •â â Žâ ½â â â â ¹â Šâ µâ »" }, { "input": "nonsympathizer's", "output": "â â •â â Žâ ½â â â â ¹â Šâ µâ »â „â Ž" }, { "input": "nontarnishable", "output": "â â •â â žâ œâ â Šâ ©â â ¼" }, { "input": "nontaxable", "output": "â â •â â žâ â ­â â ¼" }, { "input": "nontechnical", "output": "â â •â â žâ ‘â ¡â â Šâ ‰â â ‡" }, { "input": "nontenured", "output": "â â •â â žâ ¢â ¥â —â «" }, { "input": "nontheatrical", "output": "â â •â â ®â â žâ —â Šâ ‰â â ‡" }, { "input": "nonthinking", "output": "â â •â â ¹â ”â …â Œ" }, { "input": "nonthreatening", "output": "â â •â â ¹â —⠂⠞⠢⠌" }, { "input": "nontoxic", "output": "â â •â â žâ •â ­â Šâ ‰" }, { "input": "nontraditional", "output": "â â •â â žâ —â â ™â Šâ °â â â ‡" }, { "input": "nontransferable", "output": "â â •â â žâ —â â â Žâ ‹â »â â ¼" }, { "input": "nontransparent", "output": "â â •â â žâ —â â â Žâ â œâ ¢â ž" }, { "input": "nontrivial", "output": "â â •â â žâ —â Šâ §â Šâ â ‡" }, { "input": "nontropical", "output": "â â •â â žâ —â •â â Šâ ‰â â ‡" }, { "input": "nonuniform", "output": "â â •â â ¥â â Šâ ¿â " }, { "input": "nonunion", "output": "â â •â â ¥â â Šâ •â " }, { "input": "nonuser", "output": "â â •â â ¥â Žâ »" }, { "input": "nonuser's", "output": "â â •â â ¥â Žâ »â „â Ž" }, { "input": "nonusers", "output": "â â •â â ¥â Žâ »â Ž" }, { "input": "nonvenomous", "output": "â â •â â §â ¢â •â â ³â Ž" }, { "input": "nonverbal", "output": "â â •â â §â »â ƒâ â ‡" }, { "input": "nonviable", "output": "â â •â â §â Šâ â ¼" }, { "input": "nonviolence", "output": "â â •â â §â Šâ •⠇⠰⠑" }, { "input": "nonviolence's", "output": "â â •â â §â Šâ •⠇⠰⠑⠄⠎" }, { "input": "nonviolent", "output": "â â •â â §â Šâ •⠇⠢⠞" }, { "input": "nonviolently", "output": "â â •â â §â Šâ •⠇⠢⠞⠇⠽" }, { "input": "nonvirulent", "output": "â â •â â §â Šâ —⠥⠇⠢⠞" }, { "input": "nonvocal", "output": "â â •â â §â •â ‰â â ‡" }, { "input": "nonvocational", "output": "â â •â â §â •⠉⠠â â â ‡" }, { "input": "nonvolatile", "output": "â â •â â §â •â ‡â â žâ Šâ ‡â ‘" }, { "input": "nonvoter", "output": "â â •â â §â •â žâ »" }, { "input": "nonvoter's", "output": "â â •â â §â •⠞⠻⠄⠎" }, { "input": "nonvoters", "output": "â â •â â §â •⠞⠻⠎" }, { "input": "nonvoting", "output": "â â •â â §â •â žâ Œ" }, { "input": "nonwhite", "output": "â â •â â ±â Šâ žâ ‘" }, { "input": "nonwhite's", "output": "â â •â â ±â Šâ žâ ‘â „â Ž" }, { "input": "nonwhites", "output": "â â •â â ±â Šâ žâ ‘â Ž" }, { "input": "nonworking", "output": "â â •â â â ºâ Œ" }, { "input": "nonyielding", "output": "â â •â â ½â Šâ ‘⠇⠙⠌" }, { "input": "nonzero", "output": "â â •â â µâ »â •" }, { "input": "noodle", "output": "â â •⠕⠙⠇⠑" }, { "input": "noodle's", "output": "â â •⠕⠙⠇⠑⠄⠎" }, { "input": "noodled", "output": "â â •⠕⠙⠇⠫" }, { "input": "noodles", "output": "â â •⠕⠙⠇⠑⠎" }, { "input": "noodling", "output": "â â •⠕⠙⠇⠌" }, { "input": "nook", "output": "â â •â •â …" }, { "input": "nook's", "output": "â â •â •â …â „â Ž" }, { "input": "nooks", "output": "â â •â •â …â Ž" }, { "input": "noon", "output": "â â •â •â " }, { "input": "noon's", "output": "â â •â •â â „â Ž" }, { "input": "noonday", "output": "â â •â •â â â ™" }, { "input": "noonday's", "output": "â â •â •â â â ™â „â Ž" }, { "input": "noontide", "output": "â â •â •â â žâ Šâ ™â ‘" }, { "input": "noontide's", "output": "â â •â •â â žâ Šâ ™â ‘â „â Ž" }, { "input": "noontime", "output": "â â •â •â â â ž" }, { "input": "noontime's", "output": "â â •â •â â â žâ „â Ž" }, { "input": "noose", "output": "â â •â •â Žâ ‘" }, { "input": "noose's", "output": "â â •â •â Žâ ‘â „â Ž" }, { "input": "nooses", "output": "â â •â •â Žâ ‘â Ž" }, { "input": "nope", "output": "â â •â â ‘" }, { "input": "nor", "output": "â â •â —" }, { "input": "norm", "output": "â â •â —â " }, { "input": "norm's", "output": "â â •â —â â „â Ž" }, { "input": "normal", "output": "â â •â —â â â ‡" }, { "input": "normal's", "output": "â â •â —â â â ‡â „â Ž" }, { "input": "normalcy", "output": "â â •â —â â â ‡â ‰â ½" }, { "input": "normalcy's", "output": "â â •â —â â â ‡â ‰â ½â „â Ž" }, { "input": "normality", "output": "â â •â —â â â ‡â °â ½" }, { "input": "normality's", "output": "â â •â —â â â ‡â °â ½â „â Ž" }, { "input": "normalization", "output": "â â •â —â â â ‡â Šâ µâ  â " }, { "input": "normalization's", "output": "â â •â —â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "normalize", "output": "â â •â —â â â ‡â Šâ µâ ‘" }, { "input": "normalized", "output": "â â •â —â â â ‡â Šâ µâ «" }, { "input": "normalizes", "output": "â â •â —â â â ‡â Šâ µâ ‘â Ž" }, { "input": "normalizing", "output": "â â •â —â â â ‡â Šâ µâ Œ" }, { "input": "normally", "output": "â â •â —â â  â ½" }, { "input": "normative", "output": "â â •â —â â â žâ Šâ §â ‘" }, { "input": "norms", "output": "â â •â —â â Ž" }, { "input": "north", "output": "â â •â —â ¹" }, { "input": "north's", "output": "â â •⠗⠹⠄⠎" }, { "input": "northbound", "output": "â â •⠗⠹⠃⠨⠙" }, { "input": "northeast", "output": "â â •⠗⠹⠑â â Œ" }, { "input": "northeast's", "output": "â â •⠗⠹⠑â â Œâ „â Ž" }, { "input": "northeaster", "output": "â â •⠗⠹⠑â â Œâ »" }, { "input": "northeaster's", "output": "â â •⠗⠹⠑â â Œâ »â „â Ž" }, { "input": "northeasterly", "output": "â â •⠗⠹⠑â â Œâ »â ‡â ½" }, { "input": "northeastern", "output": "â â •⠗⠹⠑â â Œâ »â " }, { "input": "northeasters", "output": "â â •⠗⠹⠑â â Œâ »â Ž" }, { "input": "northeastward", "output": "â â •⠗⠹⠑â â Œâ ºâ œâ ™" }, { "input": "norther", "output": "â â •⠗⠮⠗" }, { "input": "norther's", "output": "â â •⠗⠮⠗⠄⠎" }, { "input": "northerlies", "output": "â â •⠗⠮⠗⠇⠊⠑⠎" }, { "input": "northerly", "output": "â â •⠗⠮⠗⠇⠽" }, { "input": "northerly's", "output": "â â •⠗⠮⠗⠇⠽⠄⠎" }, { "input": "northern", "output": "â â •⠗⠮⠗â " }, { "input": "northerner", "output": "â â •⠗⠮⠗â â »" }, { "input": "northerner's", "output": "â â •⠗⠮⠗â â »â „â Ž" }, { "input": "northerners", "output": "â â •⠗⠮⠗â â »â Ž" }, { "input": "northernmost", "output": "â â •⠗⠮⠗â â â •â Œ" }, { "input": "northers", "output": "â â •⠗⠮⠗⠎" }, { "input": "northward", "output": "â â •⠗⠹⠺⠜⠙" }, { "input": "northwards", "output": "â â •⠗⠹⠺⠜⠙⠎" }, { "input": "northwest", "output": "â â •⠗⠹⠺⠑⠌" }, { "input": "northwest's", "output": "â â •⠗⠹⠺⠑⠌⠄⠎" }, { "input": "northwester", "output": "â â •⠗⠹⠺⠑⠌⠻" }, { "input": "northwester's", "output": "â â •⠗⠹⠺⠑⠌⠻⠄⠎" }, { "input": "northwesterly", "output": "â â •⠗⠹⠺⠑⠌⠻⠇⠽" }, { "input": "northwestern", "output": "â â •⠗⠹⠺⠑⠌⠻â " }, { "input": "northwesters", "output": "â â •⠗⠹⠺⠑⠌⠻⠎" }, { "input": "northwestward", "output": "â â •⠗⠹⠺⠑⠌⠺⠜⠙" }, { "input": "nose", "output": "â â •â Žâ ‘" }, { "input": "nose's", "output": "â â •â Žâ ‘â „â Ž" }, { "input": "nosebleed", "output": "â â •⠎⠑⠃⠇⠑⠫" }, { "input": "nosebleed's", "output": "â â •⠎⠑⠃⠇⠑⠫⠄⠎" }, { "input": "nosebleeds", "output": "â â •⠎⠑⠃⠇⠑⠫⠎" }, { "input": "nosecone", "output": "â â •â Žâ ‘â ‰â â •" }, { "input": "nosecone's", "output": "â â •â Žâ ‘â ‰â â •â „â Ž" }, { "input": "nosecones", "output": "â â •â Žâ ‘â ‰â â •â Ž" }, { "input": "nosed", "output": "â â •â Žâ «" }, { "input": "nosedive", "output": "â â •⠎⠑⠙⠊⠧⠑" }, { "input": "nosedive's", "output": "â â •⠎⠑⠙⠊⠧⠑⠄⠎" }, { "input": "nosedived", "output": "â â •⠎⠑⠙⠊⠧⠫" }, { "input": "nosedives", "output": "â â •⠎⠑⠙⠊⠧⠑⠎" }, { "input": "nosediving", "output": "â â •⠎⠑⠙⠊⠧⠌" }, { "input": "nosegay", "output": "â â •â Žâ ‘â ›â â ½" }, { "input": "nosegay's", "output": "â â •â Žâ ‘â ›â â ½â „â Ž" }, { "input": "nosegays", "output": "â â •â Žâ ‘â ›â â ½â Ž" }, { "input": "noses", "output": "â â •â Žâ ‘â Ž" }, { "input": "nosh", "output": "â â •â ©" }, { "input": "nosh's", "output": "â â •â ©â „â Ž" }, { "input": "noshed", "output": "â â •â ©â «" }, { "input": "nosher", "output": "â â •â ©â »" }, { "input": "nosher's", "output": "â â •⠩⠻⠄⠎" }, { "input": "noshers", "output": "â â •⠩⠻⠎" }, { "input": "noshes", "output": "â â •â ©â ‘â Ž" }, { "input": "noshing", "output": "â â •â ©â Œ" }, { "input": "nosier", "output": "â â •â Žâ Šâ »" }, { "input": "nosiest", "output": "â â •â Žâ Šâ ‘â Œ" }, { "input": "nosily", "output": "â â •⠎⠊⠇⠽" }, { "input": "nosiness", "output": "â â •â Žâ Šâ °â Ž" }, { "input": "nosiness's", "output": "â â •â Žâ Šâ °â Žâ „â Ž" }, { "input": "nosing", "output": "â â •â Žâ Œ" }, { "input": "nostalgia", "output": "â â •â Œâ â ‡â ›â Šâ " }, { "input": "nostalgia's", "output": "â â •â Œâ â ‡â ›â Šâ â „â Ž" }, { "input": "nostalgic", "output": "â â •â Œâ â ‡â ›â Šâ ‰" }, { "input": "nostalgically", "output": "â â •â Œâ â ‡â ›â Šâ ‰â  â ½" }, { "input": "nostril", "output": "â â •⠌⠗⠊⠇" }, { "input": "nostril's", "output": "â â •⠌⠗⠊⠇⠄⠎" }, { "input": "nostrils", "output": "â â •⠌⠗⠊⠇⠎" }, { "input": "nostrum", "output": "â â •⠌⠗⠥â " }, { "input": "nostrum's", "output": "â â •⠌⠗⠥â â „â Ž" }, { "input": "nostrums", "output": "â â •⠌⠗⠥â â Ž" }, { "input": "nosy", "output": "â â •â Žâ ½" }, { "input": "not", "output": "â " }, { "input": "notabilities", "output": "â â •â žâ â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "notability", "output": "â â •â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "notability's", "output": "â â •â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "notable", "output": "â â •â žâ â ¼" }, { "input": "notable's", "output": "â â •â žâ â ¼â „â Ž" }, { "input": "notables", "output": "â â •â žâ â ¼â Ž" }, { "input": "notably", "output": "â â •â žâ â ƒâ ‡â ½" }, { "input": "notarial", "output": "â â •⠞⠜⠊â â ‡" }, { "input": "notaries", "output": "â â •⠞⠜⠊⠑⠎" }, { "input": "notarization", "output": "â â •⠞⠜⠊⠵⠠â " }, { "input": "notarization's", "output": "â â •⠞⠜⠊⠵⠠â â „â Ž" }, { "input": "notarize", "output": "â â •⠞⠜⠊⠵⠑" }, { "input": "notarized", "output": "â â •⠞⠜⠊⠵⠫" }, { "input": "notarizes", "output": "â â •⠞⠜⠊⠵⠑⠎" }, { "input": "notarizing", "output": "â â •⠞⠜⠊⠵⠌" }, { "input": "notary", "output": "â â •⠞⠜⠽" }, { "input": "notary's", "output": "â â •⠞⠜⠽⠄⠎" }, { "input": "notate", "output": "â â •â žâ â žâ ‘" }, { "input": "notated", "output": "â â •â žâ â žâ «" }, { "input": "notates", "output": "â â •â žâ â žâ ‘â Ž" }, { "input": "notating", "output": "â â •â žâ â žâ Œ" }, { "input": "notation", "output": "â â •â žâ  â " }, { "input": "notation's", "output": "â â •â žâ  â â „â Ž" }, { "input": "notations", "output": "â â •â žâ  â â Ž" }, { "input": "notch", "output": "â â •â žâ ¡" }, { "input": "notch's", "output": "â â •â žâ ¡â „â Ž" }, { "input": "notched", "output": "â â •â žâ ¡â «" }, { "input": "notches", "output": "â â •â žâ ¡â ‘â Ž" }, { "input": "notching", "output": "â â •â žâ ¡â Œ" }, { "input": "note", "output": "â â •â žâ ‘" }, { "input": "note's", "output": "â â •â žâ ‘â „â Ž" }, { "input": "notebook", "output": "â â •⠞⠑⠃⠕⠕⠅" }, { "input": "notebook's", "output": "â â •⠞⠑⠃⠕⠕⠅⠄⠎" }, { "input": "notebooks", "output": "â â •⠞⠑⠃⠕⠕⠅⠎" }, { "input": "noted", "output": "â â •â žâ «" }, { "input": "notepad", "output": "â â •â žâ ‘â â â ™" }, { "input": "notepaper", "output": "â â •â žâ ‘â â â â »" }, { "input": "notepaper's", "output": "â â •â žâ ‘â â â â »â „â Ž" }, { "input": "notes", "output": "â â •â žâ ‘â Ž" }, { "input": "noteworthiness", "output": "â â •⠞⠑⠺⠕⠗⠹⠊⠰⠎" }, { "input": "noteworthiness's", "output": "â â •⠞⠑⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "noteworthy", "output": "â â •⠞⠑⠺⠕⠗⠹⠽" }, { "input": "nothing", "output": "â â •⠹⠌" }, { "input": "nothing's", "output": "â â •⠹⠌⠄⠎" }, { "input": "nothingness", "output": "â â •⠹⠌⠰⠎" }, { "input": "nothingness's", "output": "â â •⠹⠌⠰⠎⠄⠎" }, { "input": "nothings", "output": "â â •⠹⠌⠎" }, { "input": "notice", "output": "â â •⠞⠊⠉⠑" }, { "input": "notice's", "output": "â â •⠞⠊⠉⠑⠄⠎" }, { "input": "noticeable", "output": "â â •⠞⠊⠉⠑â â ¼" }, { "input": "noticeably", "output": "â â •⠞⠊⠉⠑â â ƒâ ‡â ½" }, { "input": "noticeboard", "output": "â â •⠞⠊⠉⠑⠃⠕⠜⠙" }, { "input": "noticeboards", "output": "â â •⠞⠊⠉⠑⠃⠕⠜⠙⠎" }, { "input": "noticed", "output": "â â •⠞⠊⠉⠫" }, { "input": "notices", "output": "â â •⠞⠊⠉⠑⠎" }, { "input": "noticing", "output": "â â •⠞⠊⠉⠌" }, { "input": "notification", "output": "â â •⠞⠊⠋⠊⠉⠠â " }, { "input": "notification's", "output": "â â •⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "notifications", "output": "â â •⠞⠊⠋⠊⠉⠠â â Ž" }, { "input": "notified", "output": "â â •â žâ Šâ ‹â Šâ «" }, { "input": "notifier", "output": "â â •â žâ Šâ ‹â Šâ »" }, { "input": "notifier's", "output": "â â •⠞⠊⠋⠊⠻⠄⠎" }, { "input": "notifiers", "output": "â â •⠞⠊⠋⠊⠻⠎" }, { "input": "notifies", "output": "â â •â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "notify", "output": "â â •â žâ Šâ ‹â ½" }, { "input": "notifying", "output": "â â •⠞⠊⠋⠽⠌" }, { "input": "noting", "output": "â â •â žâ Œ" }, { "input": "notion", "output": "â â •â °â " }, { "input": "notion's", "output": "â â •â °â â „â Ž" }, { "input": "notional", "output": "â â •â °â â â ‡" }, { "input": "notionally", "output": "â â •â °â â  â ½" }, { "input": "notions", "output": "â â •â °â â Ž" }, { "input": "notoriety", "output": "â â •â žâ •â —â Šâ ‘â žâ ½" }, { "input": "notoriety's", "output": "â â •⠞⠕⠗⠊⠑⠞⠽⠄⠎" }, { "input": "notorious", "output": "â â •⠞⠕⠗⠊⠳⠎" }, { "input": "notoriously", "output": "â â •⠞⠕⠗⠊⠳⠎⠇⠽" }, { "input": "notwithstanding", "output": "â â •⠞⠾⠌⠯⠌" }, { "input": "nougat", "output": "â â ³â ›â â ž" }, { "input": "nougat's", "output": "â â ³â ›â â žâ „â Ž" }, { "input": "nougats", "output": "â â ³â ›â â žâ Ž" }, { "input": "noun", "output": "â â ³â " }, { "input": "noun's", "output": "â â ³â â „â Ž" }, { "input": "nouns", "output": "â â ³â â Ž" }, { "input": "nourish", "output": "â â ³â —â Šâ ©" }, { "input": "nourished", "output": "â â ³â —â Šâ ©â «" }, { "input": "nourishes", "output": "â â ³â —â Šâ ©â ‘â Ž" }, { "input": "nourishing", "output": "â â ³â —â Šâ ©â Œ" }, { "input": "nourishment", "output": "â â ³â —â Šâ ©â °â ž" }, { "input": "nourishment's", "output": "â â ³â —â Šâ ©â °â žâ „â Ž" }, { "input": "nous", "output": "â â ³â Ž" }, { "input": "nova", "output": "â â •â §â " }, { "input": "nova's", "output": "â â •â §â â „â Ž" }, { "input": "novae", "output": "â â •â §â â ‘" }, { "input": "novas", "output": "â â •â §â â Ž" }, { "input": "novel", "output": "â â •â §â ‘â ‡" }, { "input": "novel's", "output": "â â •⠧⠑⠇⠄⠎" }, { "input": "novelette", "output": "â â •⠧⠑⠇⠑⠞⠞⠑" }, { "input": "novelette's", "output": "â â •⠧⠑⠇⠑⠞⠞⠑⠄⠎" }, { "input": "novelettes", "output": "â â •⠧⠑⠇⠑⠞⠞⠑⠎" }, { "input": "novelist", "output": "â â •⠧⠑⠇⠊⠌" }, { "input": "novelist's", "output": "â â •⠧⠑⠇⠊⠌⠄⠎" }, { "input": "novelists", "output": "â â •⠧⠑⠇⠊⠌⠎" }, { "input": "novelization", "output": "â â •⠧⠑⠇⠊⠵⠠â " }, { "input": "novelization's", "output": "â â •⠧⠑⠇⠊⠵⠠â â „â Ž" }, { "input": "novelizations", "output": "â â •⠧⠑⠇⠊⠵⠠â â Ž" }, { "input": "novelize", "output": "â â •⠧⠑⠇⠊⠵⠑" }, { "input": "novelized", "output": "â â •⠧⠑⠇⠊⠵⠫" }, { "input": "novelizes", "output": "â â •⠧⠑⠇⠊⠵⠑⠎" }, { "input": "novelizing", "output": "â â •⠧⠑⠇⠊⠵⠌" }, { "input": "novella", "output": "â â •⠧⠑⠇⠇â " }, { "input": "novella's", "output": "â â •⠧⠑⠇⠇â â „â Ž" }, { "input": "novellas", "output": "â â •⠧⠑⠇⠇â â Ž" }, { "input": "novels", "output": "â â •⠧⠑⠇⠎" }, { "input": "novelties", "output": "â â •⠧⠑⠇⠞⠊⠑⠎" }, { "input": "novelty", "output": "â â •⠧⠑⠇⠞⠽" }, { "input": "novelty's", "output": "â â •⠧⠑⠇⠞⠽⠄⠎" }, { "input": "novena", "output": "â â •â §â ¢â " }, { "input": "novena's", "output": "â â •â §â ¢â â „â Ž" }, { "input": "novenas", "output": "â â •â §â ¢â â Ž" }, { "input": "novene", "output": "â â •⠧⠢⠑" }, { "input": "novice", "output": "â â •⠧⠊⠉⠑" }, { "input": "novice's", "output": "â â •⠧⠊⠉⠑⠄⠎" }, { "input": "novices", "output": "â â •⠧⠊⠉⠑⠎" }, { "input": "novitiate", "output": "â â •â §â Šâ žâ Šâ â žâ ‘" }, { "input": "novitiate's", "output": "â â •â §â Šâ žâ Šâ â žâ ‘â „â Ž" }, { "input": "novitiates", "output": "â â •â §â Šâ žâ Šâ â žâ ‘â Ž" }, { "input": "now", "output": "â â ª" }, { "input": "now's", "output": "â â ªâ „â Ž" }, { "input": "nowadays", "output": "â â ªâ â â ™â Ž" }, { "input": "nowadays's", "output": "â â ªâ â â ™â Žâ „â Ž" }, { "input": "noway", "output": "â â •â ºâ â ½" }, { "input": "noways", "output": "â â •â ºâ â ½â Ž" }, { "input": "nowhere", "output": "â â •â â ±" }, { "input": "nowhere's", "output": "â â •â â ±â „â Ž" }, { "input": "nowise", "output": "â â •⠺⠊⠎⠑" }, { "input": "noxious", "output": "â â •⠭⠊⠳⠎" }, { "input": "nozzle", "output": "â â •⠵⠵⠇⠑" }, { "input": "nozzle's", "output": "â â •⠵⠵⠇⠑⠄⠎" }, { "input": "nozzles", "output": "â â •⠵⠵⠇⠑⠎" }, { "input": "nth", "output": "â â ¹" }, { "input": "nu", "output": "â â ¥" }, { "input": "nu's", "output": "â â ¥â „â Ž" }, { "input": "nuance", "output": "â â ¥â ¨â ‘" }, { "input": "nuance's", "output": "â â ¥â ¨â ‘â „â Ž" }, { "input": "nuanced", "output": "â â ¥â ¨â ‘â ™" }, { "input": "nuances", "output": "â â ¥â ¨â ‘â Ž" }, { "input": "nub", "output": "â â ¥â ƒ" }, { "input": "nub's", "output": "â â ¥â ƒâ „â Ž" }, { "input": "nubbier", "output": "â â ¥â †â Šâ »" }, { "input": "nubbiest", "output": "â â ¥â †â Šâ ‘â Œ" }, { "input": "nubbin", "output": "â â ¥â †â ”" }, { "input": "nubbin's", "output": "â â ¥â †â ”â „â Ž" }, { "input": "nubbins", "output": "â â ¥â †â ”â Ž" }, { "input": "nubby", "output": "â â ¥â †â ½" }, { "input": "nubile", "output": "â â ¥â ƒâ Šâ ‡â ‘" }, { "input": "nubs", "output": "â â ¥â ƒâ Ž" }, { "input": "nuclear", "output": "â â ¥â ‰â ‡â ‘â œ" }, { "input": "nucleate", "output": "â â ¥â ‰â ‡â ‚â žâ ‘" }, { "input": "nucleated", "output": "â â ¥â ‰â ‡â ‚â žâ «" }, { "input": "nucleates", "output": "â â ¥â ‰â ‡â ‚â žâ ‘â Ž" }, { "input": "nucleating", "output": "â â ¥â ‰â ‡â ‚â žâ Œ" }, { "input": "nucleation", "output": "â â ¥â ‰â ‡â ‘â  â " }, { "input": "nucleation's", "output": "â â ¥â ‰â ‡â ‘â  â â „â Ž" }, { "input": "nuclei", "output": "â â ¥â ‰â ‡â ‘â Š" }, { "input": "nucleic", "output": "â â ¥â ‰â ‡â ‘â Šâ ‰" }, { "input": "nucleoli", "output": "â â ¥â ‰â ‡â ‘⠕⠇⠊" }, { "input": "nucleolus", "output": "â â ¥â ‰â ‡â ‘⠕⠇⠥⠎" }, { "input": "nucleolus's", "output": "â â ¥â ‰â ‡â ‘⠕⠇⠥⠎⠄⠎" }, { "input": "nucleon", "output": "â â ¥â ‰â ‡â ‘â •â " }, { "input": "nucleon's", "output": "â â ¥â ‰â ‡â ‘â •â â „â Ž" }, { "input": "nucleons", "output": "â â ¥â ‰â ‡â ‘â •â â Ž" }, { "input": "nucleus", "output": "â â ¥â ‰â ‡â ‘⠥⠎" }, { "input": "nucleus's", "output": "â â ¥â ‰â ‡â ‘⠥⠎⠄⠎" }, { "input": "nude", "output": "â â ¥â ™â ‘" }, { "input": "nude's", "output": "â â ¥â ™â ‘â „â Ž" }, { "input": "nuder", "output": "â â ¥â ™â »" }, { "input": "nudes", "output": "â â ¥â ™â ‘â Ž" }, { "input": "nudest", "output": "â â ¥â ™â ‘â Œ" }, { "input": "nudge", "output": "â â ¥â ™â ›â ‘" }, { "input": "nudge's", "output": "â â ¥â ™â ›â ‘â „â Ž" }, { "input": "nudged", "output": "â â ¥â ™â ›â «" }, { "input": "nudges", "output": "â â ¥â ™â ›â ‘â Ž" }, { "input": "nudging", "output": "â â ¥â ™â ›â Œ" }, { "input": "nudism", "output": "â â ¥â ™â Šâ Žâ " }, { "input": "nudism's", "output": "â â ¥â ™â Šâ Žâ â „â Ž" }, { "input": "nudist", "output": "â â ¥â ™â Šâ Œ" }, { "input": "nudist's", "output": "â â ¥â ™â Šâ Œâ „â Ž" }, { "input": "nudists", "output": "â â ¥â ™â Šâ Œâ Ž" }, { "input": "nudity", "output": "â â ¥â ™â °â ½" }, { "input": "nudity's", "output": "â â ¥â ™â °â ½â „â Ž" }, { "input": "nugget", "output": "â â ¥â ¶â ‘â ž" }, { "input": "nugget's", "output": "â â ¥â ¶â ‘â žâ „â Ž" }, { "input": "nuggets", "output": "â â ¥â ¶â ‘â žâ Ž" }, { "input": "nuisance", "output": "â â ¥â Šâ Žâ ¨â ‘" }, { "input": "nuisance's", "output": "â â ¥â Šâ Žâ ¨â ‘â „â Ž" }, { "input": "nuisances", "output": "â â ¥â Šâ Žâ ¨â ‘â Ž" }, { "input": "nuke", "output": "â â ¥â …â ‘" }, { "input": "nuke's", "output": "â â ¥â …â ‘â „â Ž" }, { "input": "nuked", "output": "â â ¥â …â «" }, { "input": "nukes", "output": "â â ¥â …â ‘â Ž" }, { "input": "nuking", "output": "â â ¥â …â Œ" }, { "input": "null", "output": "â â ¥â ‡â ‡" }, { "input": "nullification", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "nullification's", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "nullified", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ «" }, { "input": "nullifies", "output": "â â ¥â ‡â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "nullify", "output": "â â ¥â ‡â ‡â Šâ ‹â ½" }, { "input": "nullifying", "output": "â â ¥â ‡â ‡â Šâ ‹â ½â Œ" }, { "input": "nullity", "output": "â â ¥â ‡â ‡â °â ½" }, { "input": "nullity's", "output": "â â ¥â ‡â ‡â °â ½â „â Ž" }, { "input": "nulls", "output": "â â ¥â ‡â ‡â Ž" }, { "input": "numb", "output": "â â ¥â â ƒ" }, { "input": "numbed", "output": "â â ¥â â ƒâ «" }, { "input": "number", "output": "â â ¥â â ƒâ »" }, { "input": "number's", "output": "â â ¥â â ƒâ »â „â Ž" }, { "input": "numbered", "output": "â â ¥â â ƒâ »â «" }, { "input": "numbering", "output": "â â ¥â â ƒâ »â Œ" }, { "input": "numberless", "output": "â â ¥â â ƒâ »â ¨â Ž" }, { "input": "numbers", "output": "â â ¥â â ƒâ »â Ž" }, { "input": "numbest", "output": "â â ¥â â ƒâ ‘â Œ" }, { "input": "numbing", "output": "â â ¥â â ƒâ Œ" }, { "input": "numbly", "output": "â â ¥â â ƒâ ‡â ½" }, { "input": "numbness", "output": "â â ¥â â ƒâ °â Ž" }, { "input": "numbness's", "output": "â â ¥â â ƒâ °â Žâ „â Ž" }, { "input": "numbs", "output": "â â ¥â â ƒâ Ž" }, { "input": "numerable", "output": "â â ¥â â »â â ¼" }, { "input": "numeracy", "output": "â â ¥â â »â â ‰â ½" }, { "input": "numeracy's", "output": "â â ¥â â »â â ‰â ½â „â Ž" }, { "input": "numeral", "output": "â â ¥â â »â â ‡" }, { "input": "numeral's", "output": "â â ¥â â »â â ‡â „â Ž" }, { "input": "numerals", "output": "â â ¥â â »â â ‡â Ž" }, { "input": "numerate", "output": "â â ¥â â »â â žâ ‘" }, { "input": "numerated", "output": "â â ¥â â »â â žâ «" }, { "input": "numerates", "output": "â â ¥â â »â â žâ ‘â Ž" }, { "input": "numerating", "output": "â â ¥â â »â â žâ Œ" }, { "input": "numeration", "output": "â â ¥â â »â  â " }, { "input": "numeration's", "output": "â â ¥â â »â  â â „â Ž" }, { "input": "numerations", "output": "â â ¥â â »â  â â Ž" }, { "input": "numerator", "output": "â â ¥â â »â â žâ •â —" }, { "input": "numerator's", "output": "â â ¥â â »â â žâ •â —â „â Ž" }, { "input": "numerators", "output": "â â ¥â â »â â žâ •â —â Ž" }, { "input": "numeric", "output": "â â ¥â â »â Šâ ‰" }, { "input": "numerical", "output": "â â ¥â â »â Šâ ‰â â ‡" }, { "input": "numerically", "output": "â â ¥â â »â Šâ ‰â  â ½" }, { "input": "numerologist", "output": "â â ¥â â »â •⠇⠕⠛⠊⠌" }, { "input": "numerologist's", "output": "â â ¥â â »â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "numerologists", "output": "â â ¥â â »â •⠇⠕⠛⠊⠌⠎" }, { "input": "numerology", "output": "â â ¥â â »â •⠇⠕⠛⠽" }, { "input": "numerology's", "output": "â â ¥â â »â •⠇⠕⠛⠽⠄⠎" }, { "input": "numerous", "output": "â â ¥â â »â ³â Ž" }, { "input": "numerously", "output": "â â ¥â â »â ³â Žâ ‡â ½" }, { "input": "numismatic", "output": "â â ¥â â Šâ Žâ â â žâ Šâ ‰" }, { "input": "numismatics", "output": "â â ¥â â Šâ Žâ â â žâ Šâ ‰â Ž" }, { "input": "numismatics's", "output": "â â ¥â â Šâ Žâ â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "numismatist", "output": "â â ¥â â Šâ Žâ â â žâ Šâ Œ" }, { "input": "numismatist's", "output": "â â ¥â â Šâ Žâ â â žâ Šâ Œâ „â Ž" }, { "input": "numismatists", "output": "â â ¥â â Šâ Žâ â â žâ Šâ Œâ Ž" }, { "input": "numskull", "output": "â â ¥â â Žâ …⠥⠇⠇" }, { "input": "numskull's", "output": "â â ¥â â Žâ …⠥⠇⠇⠄⠎" }, { "input": "numskulls", "output": "â â ¥â â Žâ …⠥⠇⠇⠎" }, { "input": "nun", "output": "â â ¥â " }, { "input": "nun's", "output": "â â ¥â â „â Ž" }, { "input": "nuncio", "output": "â â ¥â â ‰â Šâ •" }, { "input": "nuncio's", "output": "â â ¥â â ‰â Šâ •â „â Ž" }, { "input": "nuncios", "output": "â â ¥â â ‰â Šâ •â Ž" }, { "input": "nunneries", "output": "â â ¥â â â »â Šâ ‘â Ž" }, { "input": "nunnery", "output": "â â ¥â â â »â ½" }, { "input": "nunnery's", "output": "â â ¥â â â »â ½â „â Ž" }, { "input": "nuns", "output": "â â ¥â â Ž" }, { "input": "nuptial", "output": "â â ¥â â žâ Šâ â ‡" }, { "input": "nuptial's", "output": "â â ¥â â žâ Šâ â ‡â „â Ž" }, { "input": "nuptials", "output": "â â ¥â â žâ Šâ â ‡â Ž" }, { "input": "nurse", "output": "â â ¥â —â Žâ ‘" }, { "input": "nurse's", "output": "â â ¥â —â Žâ ‘â „â Ž" }, { "input": "nursed", "output": "â â ¥â —â Žâ «" }, { "input": "nurselings", "output": "â â ¥â —⠎⠑⠇⠌⠎" }, { "input": "nursemaid", "output": "â â ¥â —â Žâ ‘â â â Šâ ™" }, { "input": "nursemaid's", "output": "â â ¥â —â Žâ ‘â â â Šâ ™â „â Ž" }, { "input": "nursemaids", "output": "â â ¥â —â Žâ ‘â â â Šâ ™â Ž" }, { "input": "nurser", "output": "â â ¥â —â Žâ »" }, { "input": "nurser's", "output": "â â ¥â —⠎⠻⠄⠎" }, { "input": "nurseries", "output": "â â ¥â —⠎⠻⠊⠑⠎" }, { "input": "nursers", "output": "â â ¥â —⠎⠻⠎" }, { "input": "nursery", "output": "â â ¥â —⠎⠻⠽" }, { "input": "nursery's", "output": "â â ¥â —⠎⠻⠽⠄⠎" }, { "input": "nurseryman", "output": "â â ¥â —⠎⠻⠽â â â " }, { "input": "nurseryman's", "output": "â â ¥â —⠎⠻⠽â â â â „â Ž" }, { "input": "nurserymen", "output": "â â ¥â —⠎⠻⠽â â ¢" }, { "input": "nurses", "output": "â â ¥â —â Žâ ‘â Ž" }, { "input": "nursing", "output": "â â ¥â —â Žâ Œ" }, { "input": "nursing's", "output": "â â ¥â —⠎⠌⠄⠎" }, { "input": "nursling", "output": "â â ¥â —⠎⠇⠌" }, { "input": "nursling's", "output": "â â ¥â —⠎⠇⠌⠄⠎" }, { "input": "nurslings", "output": "â â ¥â —⠎⠇⠌⠎" }, { "input": "nurture", "output": "â â ¥â —⠞⠥⠗⠑" }, { "input": "nurture's", "output": "â â ¥â —⠞⠥⠗⠑⠄⠎" }, { "input": "nurtured", "output": "â â ¥â —⠞⠥⠗⠫" }, { "input": "nurturer", "output": "â â ¥â —⠞⠥⠗⠻" }, { "input": "nurturer's", "output": "â â ¥â —⠞⠥⠗⠻⠄⠎" }, { "input": "nurturers", "output": "â â ¥â —⠞⠥⠗⠻⠎" }, { "input": "nurtures", "output": "â â ¥â —⠞⠥⠗⠑⠎" }, { "input": "nurturing", "output": "â â ¥â —⠞⠥⠗⠌" }, { "input": "nus", "output": "â â ¥â Ž" }, { "input": "nut", "output": "â â ¥â ž" }, { "input": "nut's", "output": "â â ¥â žâ „â Ž" }, { "input": "nutcracker", "output": "â â ¥â žâ ‰â —â â ‰â …â »" }, { "input": "nutcracker's", "output": "â â ¥â žâ ‰â —â â ‰â …⠻⠄⠎" }, { "input": "nutcrackers", "output": "â â ¥â žâ ‰â —â â ‰â …⠻⠎" }, { "input": "nuthatch", "output": "â â ¥â žâ “â â žâ ¡" }, { "input": "nuthatch's", "output": "â â ¥â žâ “â â žâ ¡â „â Ž" }, { "input": "nuthatches", "output": "â â ¥â žâ “â â žâ ¡â ‘â Ž" }, { "input": "nutmeat", "output": "â â ¥â žâ â ‚â ž" }, { "input": "nutmeat's", "output": "â â ¥â žâ â ‚â žâ „â Ž" }, { "input": "nutmeats", "output": "â â ¥â žâ â ‚â žâ Ž" }, { "input": "nutmeg", "output": "â â ¥â žâ â ‘â ›" }, { "input": "nutmeg's", "output": "â â ¥â žâ â ‘⠛⠄⠎" }, { "input": "nutmegs", "output": "â â ¥â žâ â ‘⠛⠎" }, { "input": "nutpick", "output": "â â ¥â žâ â Šâ ‰â …" }, { "input": "nutpick's", "output": "â â ¥â žâ â Šâ ‰â …â „â Ž" }, { "input": "nutpicks", "output": "â â ¥â žâ â Šâ ‰â …â Ž" }, { "input": "nutria", "output": "â â ¥â žâ —â Šâ " }, { "input": "nutria's", "output": "â â ¥â žâ —â Šâ â „â Ž" }, { "input": "nutrias", "output": "â â ¥â žâ —â Šâ â Ž" }, { "input": "nutrient", "output": "â â ¥â žâ —⠊⠢⠞" }, { "input": "nutrient's", "output": "â â ¥â žâ —⠊⠢⠞⠄⠎" }, { "input": "nutrients", "output": "â â ¥â žâ —⠊⠢⠞⠎" }, { "input": "nutriment", "output": "â â ¥â žâ —â Šâ °â ž" }, { "input": "nutriment's", "output": "â â ¥â žâ —â Šâ °â žâ „â Ž" }, { "input": "nutriments", "output": "â â ¥â žâ —â Šâ °â žâ Ž" }, { "input": "nutrition", "output": "â â ¥â žâ —â Šâ °â " }, { "input": "nutrition's", "output": "â â ¥â žâ —â Šâ °â â „â Ž" }, { "input": "nutritional", "output": "â â ¥â žâ —â Šâ °â â â ‡" }, { "input": "nutritionally", "output": "â â ¥â žâ —â Šâ °â â  â ½" }, { "input": "nutritionist", "output": "â â ¥â žâ —â Šâ °â â Šâ Œ" }, { "input": "nutritionist's", "output": "â â ¥â žâ —â Šâ °â â Šâ Œâ „â Ž" }, { "input": "nutritionists", "output": "â â ¥â žâ —â Šâ °â â Šâ Œâ Ž" }, { "input": "nutritious", "output": "â â ¥â žâ —⠊⠞⠊⠳⠎" }, { "input": "nutritiously", "output": "â â ¥â žâ —⠊⠞⠊⠳⠎⠇⠽" }, { "input": "nutritiousness", "output": "â â ¥â žâ —⠊⠞⠊⠳⠎⠰⠎" }, { "input": "nutritiousness's", "output": "â â ¥â žâ —⠊⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "nutritive", "output": "â â ¥â žâ —â Šâ žâ Šâ §â ‘" }, { "input": "nuts", "output": "â â ¥â žâ Ž" }, { "input": "nutshell", "output": "â â ¥â žâ ©â ‘⠇⠇" }, { "input": "nutshell's", "output": "â â ¥â žâ ©â ‘⠇⠇⠄⠎" }, { "input": "nutshells", "output": "â â ¥â žâ ©â ‘⠇⠇⠎" }, { "input": "nutted", "output": "â â ¥â žâ žâ «" }, { "input": "nuttier", "output": "â â ¥â žâ žâ Šâ »" }, { "input": "nuttiest", "output": "â â ¥â žâ žâ Šâ ‘â Œ" }, { "input": "nuttiness", "output": "â â ¥â žâ žâ Šâ °â Ž" }, { "input": "nuttiness's", "output": "â â ¥â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "nutting", "output": "â â ¥â žâ žâ Œ" }, { "input": "nutty", "output": "â â ¥â žâ žâ ½" }, { "input": "nuzzle", "output": "â â ¥â µâ µâ ‡â ‘" }, { "input": "nuzzle's", "output": "â â ¥â µâ µâ ‡â ‘â „â Ž" }, { "input": "nuzzled", "output": "â â ¥â µâ µâ ‡â «" }, { "input": "nuzzler", "output": "â â ¥â µâ µâ ‡â »" }, { "input": "nuzzler's", "output": "â â ¥â µâ µâ ‡â »â „â Ž" }, { "input": "nuzzlers", "output": "â â ¥â µâ µâ ‡â »â Ž" }, { "input": "nuzzles", "output": "â â ¥â µâ µâ ‡â ‘â Ž" }, { "input": "nuzzling", "output": "â â ¥â µâ µâ ‡â Œ" }, { "input": "nylon", "output": "â â ½â ‡â •â " }, { "input": "nylon's", "output": "â â ½â ‡â •â â „â Ž" }, { "input": "nylons", "output": "â â ½â ‡â •â â Ž" }, { "input": "nylons's", "output": "â â ½â ‡â •â â Žâ „â Ž" }, { "input": "nymph", "output": "â â ½â â â “" }, { "input": "nymph's", "output": "â â ½â â â “â „â Ž" }, { "input": "nymphomania", "output": "â â ½â â â “â •â â â â Šâ " }, { "input": "nymphomania's", "output": "â â ½â â â “â •â â â â Šâ â „â Ž" }, { "input": "nymphomaniac", "output": "â â ½â â â “â •â â â â Šâ â ‰" }, { "input": "nymphomaniac's", "output": "â â ½â â â “â •â â â â Šâ â ‰â „â Ž" }, { "input": "nymphomaniacs", "output": "â â ½â â â “â •â â â â Šâ â ‰â Ž" }, { "input": "nymphs", "output": "â â ½â â â “â Ž" }, { "input": "o", "output": "â °â •" }, { "input": "oaf", "output": "â •â â ‹" }, { "input": "oaf's", "output": "â •â â ‹â „â Ž" }, { "input": "oafish", "output": "â •â â ‹â Šâ ©" }, { "input": "oafishly", "output": "â •â â ‹â Šâ ©â ‡â ½" }, { "input": "oafishness's", "output": "â •â â ‹â Šâ ©â °â Žâ „â Ž" }, { "input": "oafs", "output": "â •â â ‹â Ž" }, { "input": "oak", "output": "â •â â …" }, { "input": "oak's", "output": "â •â â …â „â Ž" }, { "input": "oaken", "output": "â •â â …â ¢" }, { "input": "oaks", "output": "â •â â …â Ž" }, { "input": "oakum", "output": "â •â â …â ¥â " }, { "input": "oakum's", "output": "â •â â …â ¥â â „â Ž" }, { "input": "oar", "output": "â •â œ" }, { "input": "oar's", "output": "⠕⠜⠄⠎" }, { "input": "oared", "output": "⠕⠜⠫" }, { "input": "oaring", "output": "⠕⠜⠌" }, { "input": "oarlock", "output": "⠕⠜⠇⠕⠉⠅" }, { "input": "oarlock's", "output": "⠕⠜⠇⠕⠉⠅⠄⠎" }, { "input": "oarlocks", "output": "⠕⠜⠇⠕⠉⠅⠎" }, { "input": "oars", "output": "⠕⠜⠎" }, { "input": "oarsman", "output": "⠕⠜⠎â â â " }, { "input": "oarsman's", "output": "⠕⠜⠎â â â â „â Ž" }, { "input": "oarsmen", "output": "⠕⠜⠎â â ¢" }, { "input": "oases", "output": "â •â â Žâ ‘â Ž" }, { "input": "oasis", "output": "â •â â Žâ Šâ Ž" }, { "input": "oasis's", "output": "â •â â Žâ Šâ Žâ „â Ž" }, { "input": "oat", "output": "â •â â ž" }, { "input": "oat's", "output": "â •â â žâ „â Ž" }, { "input": "oaten", "output": "â •â â žâ ¢" }, { "input": "oath", "output": "â •â â ¹" }, { "input": "oath's", "output": "â •â â ¹â „â Ž" }, { "input": "oaths", "output": "â •â â ¹â Ž" }, { "input": "oatmeal", "output": "â •â â žâ â ‚â ‡" }, { "input": "oatmeal's", "output": "â •â â žâ â ‚⠇⠄⠎" }, { "input": "oats", "output": "â •â â žâ Ž" }, { "input": "oats's", "output": "â •â â žâ Žâ „â Ž" }, { "input": "obbligato", "output": "⠕⠆⠇⠊⠛â â žâ •" }, { "input": "obbligato's", "output": "⠕⠆⠇⠊⠛â â žâ •â „â Ž" }, { "input": "obbligatos", "output": "⠕⠆⠇⠊⠛â â žâ •â Ž" }, { "input": "obduracy", "output": "⠕⠃⠙⠥⠗â â ‰â ½" }, { "input": "obduracy's", "output": "⠕⠃⠙⠥⠗â â ‰â ½â „â Ž" }, { "input": "obdurate", "output": "⠕⠃⠙⠥⠗â â žâ ‘" }, { "input": "obdurately", "output": "⠕⠃⠙⠥⠗â â žâ ‘⠇⠽" }, { "input": "obdurateness", "output": "⠕⠃⠙⠥⠗â â žâ ‘â °â Ž" }, { "input": "obdurateness's", "output": "⠕⠃⠙⠥⠗â â žâ ‘â °â Žâ „â Ž" }, { "input": "obedience", "output": "⠕⠃⠫⠊⠰⠑" }, { "input": "obedience's", "output": "⠕⠃⠫⠊⠰⠑⠄⠎" }, { "input": "obedient", "output": "⠕⠃⠫⠊⠢⠞" }, { "input": "obediently", "output": "⠕⠃⠫⠊⠢⠞⠇⠽" }, { "input": "obeisance", "output": "⠕⠃⠑⠊⠎⠨⠑" }, { "input": "obeisance's", "output": "⠕⠃⠑⠊⠎⠨⠑⠄⠎" }, { "input": "obeisances", "output": "⠕⠃⠑⠊⠎⠨⠑⠎" }, { "input": "obeisant", "output": "⠕⠃⠑⠊⠎â â â ž" }, { "input": "obelisk", "output": "⠕⠃⠑⠇⠊⠎⠅" }, { "input": "obelisk's", "output": "⠕⠃⠑⠇⠊⠎⠅⠄⠎" }, { "input": "obelisks", "output": "⠕⠃⠑⠇⠊⠎⠅⠎" }, { "input": "obese", "output": "⠕⠃⠑⠎⠑" }, { "input": "obesity", "output": "⠕⠃⠑⠎⠰⠽" }, { "input": "obesity's", "output": "⠕⠃⠑⠎⠰⠽⠄⠎" }, { "input": "obey", "output": "⠕⠃⠑⠽" }, { "input": "obeyed", "output": "⠕⠃⠑⠽⠫" }, { "input": "obeying", "output": "⠕⠃⠑⠽⠌" }, { "input": "obeys", "output": "⠕⠃⠑⠽⠎" }, { "input": "obfuscate", "output": "⠕⠃⠋⠥⠎⠉â â žâ ‘" }, { "input": "obfuscated", "output": "⠕⠃⠋⠥⠎⠉â â žâ «" }, { "input": "obfuscates", "output": "⠕⠃⠋⠥⠎⠉â â žâ ‘â Ž" }, { "input": "obfuscating", "output": "⠕⠃⠋⠥⠎⠉â â žâ Œ" }, { "input": "obfuscation", "output": "⠕⠃⠋⠥⠎⠉⠠â " }, { "input": "obfuscation's", "output": "⠕⠃⠋⠥⠎⠉⠠â â „â Ž" }, { "input": "obi", "output": "⠕⠃⠊" }, { "input": "obi's", "output": "⠕⠃⠊⠄⠎" }, { "input": "obis", "output": "⠕⠃⠊⠎" }, { "input": "obit", "output": "⠕⠃⠊⠞" }, { "input": "obit's", "output": "⠕⠃⠊⠞⠄⠎" }, { "input": "obits", "output": "⠕⠃⠊⠞⠎" }, { "input": "obituaries", "output": "⠕⠃⠊⠞⠥⠜⠊⠑⠎" }, { "input": "obituary", "output": "⠕⠃⠊⠞⠥⠜⠽" }, { "input": "obituary's", "output": "⠕⠃⠊⠞⠥⠜⠽⠄⠎" }, { "input": "object", "output": "⠕⠃⠚⠑⠉⠞" }, { "input": "object's", "output": "⠕⠃⠚⠑⠉⠞⠄⠎" }, { "input": "objected", "output": "⠕⠃⠚⠑⠉⠞⠫" }, { "input": "objectified", "output": "⠕⠃⠚⠑⠉⠞⠊⠋⠊⠫" }, { "input": "objectifies", "output": "⠕⠃⠚⠑⠉⠞⠊⠋⠊⠑⠎" }, { "input": "objectify", "output": "⠕⠃⠚⠑⠉⠞⠊⠋⠽" }, { "input": "objectifying", "output": "⠕⠃⠚⠑⠉⠞⠊⠋⠽⠌" }, { "input": "objecting", "output": "⠕⠃⠚⠑⠉⠞⠌" }, { "input": "objection", "output": "⠕⠃⠚⠑⠉⠰â " }, { "input": "objection's", "output": "⠕⠃⠚⠑⠉⠰â â „â Ž" }, { "input": "objectionable", "output": "⠕⠃⠚⠑⠉⠰â â â ¼" }, { "input": "objectionably", "output": "⠕⠃⠚⠑⠉⠰â â â ƒâ ‡â ½" }, { "input": "objections", "output": "⠕⠃⠚⠑⠉⠰â â Ž" }, { "input": "objective", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑" }, { "input": "objective's", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠄⠎" }, { "input": "objectively", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "objectiveness", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "objectiveness's", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "objectives", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠑⠎" }, { "input": "objectivity", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠰⠽" }, { "input": "objectivity's", "output": "⠕⠃⠚⠑⠉⠞⠊⠧⠰⠽⠄⠎" }, { "input": "objector", "output": "⠕⠃⠚⠑⠉⠞⠕⠗" }, { "input": "objector's", "output": "⠕⠃⠚⠑⠉⠞⠕⠗⠄⠎" }, { "input": "objectors", "output": "⠕⠃⠚⠑⠉⠞⠕⠗⠎" }, { "input": "objects", "output": "⠕⠃⠚⠑⠉⠞⠎" }, { "input": "objurgate", "output": "⠕⠃⠚⠥⠗⠛â â žâ ‘" }, { "input": "objurgated", "output": "⠕⠃⠚⠥⠗⠛â â žâ «" }, { "input": "objurgates", "output": "⠕⠃⠚⠥⠗⠛â â žâ ‘â Ž" }, { "input": "objurgating", "output": "⠕⠃⠚⠥⠗⠛â â žâ Œ" }, { "input": "objurgation", "output": "⠕⠃⠚⠥⠗⠛⠠â " }, { "input": "objurgation's", "output": "⠕⠃⠚⠥⠗⠛⠠â â „â Ž" }, { "input": "objurgations", "output": "⠕⠃⠚⠥⠗⠛⠠â â Ž" }, { "input": "oblate", "output": "⠕⠃⠇â â žâ ‘" }, { "input": "oblation", "output": "⠕⠃⠇⠠â " }, { "input": "oblation's", "output": "⠕⠃⠇⠠â â „â Ž" }, { "input": "oblations", "output": "⠕⠃⠇⠠â â Ž" }, { "input": "obligate", "output": "⠕⠃⠇⠊⠛â â žâ ‘" }, { "input": "obligated", "output": "⠕⠃⠇⠊⠛â â žâ «" }, { "input": "obligates", "output": "⠕⠃⠇⠊⠛â â žâ ‘â Ž" }, { "input": "obligating", "output": "⠕⠃⠇⠊⠛â â žâ Œ" }, { "input": "obligation", "output": "⠕⠃⠇⠊⠛⠠â " }, { "input": "obligation's", "output": "⠕⠃⠇⠊⠛⠠â â „â Ž" }, { "input": "obligations", "output": "⠕⠃⠇⠊⠛⠠â â Ž" }, { "input": "obligatorily", "output": "⠕⠃⠇⠊⠛â â žâ •⠗⠊⠇⠽" }, { "input": "obligatory", "output": "⠕⠃⠇⠊⠛â â žâ •â —â ½" }, { "input": "oblige", "output": "⠕⠃⠇⠊⠛⠑" }, { "input": "obliged", "output": "⠕⠃⠇⠊⠛⠫" }, { "input": "obliges", "output": "⠕⠃⠇⠊⠛⠑⠎" }, { "input": "obliging", "output": "⠕⠃⠇⠊⠛⠌" }, { "input": "obligingly", "output": "⠕⠃⠇⠊⠛⠌⠇⠽" }, { "input": "oblique", "output": "⠕⠃⠇⠊⠟⠥⠑" }, { "input": "oblique's", "output": "⠕⠃⠇⠊⠟⠥⠑⠄⠎" }, { "input": "obliquely", "output": "⠕⠃⠇⠊⠟⠥⠑⠇⠽" }, { "input": "obliqueness", "output": "⠕⠃⠇⠊⠟⠥⠑⠰⠎" }, { "input": "obliqueness's", "output": "⠕⠃⠇⠊⠟⠥⠑⠰⠎⠄⠎" }, { "input": "obliques", "output": "⠕⠃⠇⠊⠟⠥⠑⠎" }, { "input": "obliquity", "output": "⠕⠃⠇⠊⠟⠥⠰⠽" }, { "input": "obliquity's", "output": "⠕⠃⠇⠊⠟⠥⠰⠽⠄⠎" }, { "input": "obliterate", "output": "⠕⠃⠇⠊⠞⠻â â žâ ‘" }, { "input": "obliterated", "output": "⠕⠃⠇⠊⠞⠻â â žâ «" }, { "input": "obliterates", "output": "⠕⠃⠇⠊⠞⠻â â žâ ‘â Ž" }, { "input": "obliterating", "output": "⠕⠃⠇⠊⠞⠻â â žâ Œ" }, { "input": "obliteration", "output": "⠕⠃⠇⠊⠞⠻⠠â " }, { "input": "obliteration's", "output": "⠕⠃⠇⠊⠞⠻⠠â â „â Ž" }, { "input": "oblivion", "output": "⠕⠃⠇⠊⠧⠊⠕â " }, { "input": "oblivion's", "output": "⠕⠃⠇⠊⠧⠊⠕â â „â Ž" }, { "input": "oblivious", "output": "⠕⠃⠇⠊⠧⠊⠳⠎" }, { "input": "obliviously", "output": "⠕⠃⠇⠊⠧⠊⠳⠎⠇⠽" }, { "input": "obliviousness", "output": "⠕⠃⠇⠊⠧⠊⠳⠎⠰⠎" }, { "input": "obliviousness's", "output": "⠕⠃⠇⠊⠧⠊⠳⠎⠰⠎⠄⠎" }, { "input": "oblong", "output": "⠕⠃⠇⠰⠛" }, { "input": "oblong's", "output": "⠕⠃⠇⠰⠛⠄⠎" }, { "input": "oblongs", "output": "⠕⠃⠇⠰⠛⠎" }, { "input": "obloquy", "output": "⠕⠃⠇⠕⠟⠥⠽" }, { "input": "obloquy's", "output": "⠕⠃⠇⠕⠟⠥⠽⠄⠎" }, { "input": "obnoxious", "output": "â •â ƒâ â •⠭⠊⠳⠎" }, { "input": "obnoxiously", "output": "â •â ƒâ â •⠭⠊⠳⠎⠇⠽" }, { "input": "obnoxiousness's", "output": "â •â ƒâ â •⠭⠊⠳⠎⠰⠎⠄⠎" }, { "input": "oboe", "output": "⠕⠃⠕⠑" }, { "input": "oboe's", "output": "⠕⠃⠕⠑⠄⠎" }, { "input": "oboes", "output": "⠕⠃⠕⠑⠎" }, { "input": "oboist", "output": "⠕⠃⠕⠊⠌" }, { "input": "oboist's", "output": "⠕⠃⠕⠊⠌⠄⠎" }, { "input": "oboists", "output": "⠕⠃⠕⠊⠌⠎" }, { "input": "obscene", "output": "⠕⠃⠎⠉⠢⠑" }, { "input": "obscenely", "output": "⠕⠃⠎⠉⠢⠑⠇⠽" }, { "input": "obscener", "output": "⠕⠃⠎⠉⠢⠻" }, { "input": "obscenest", "output": "⠕⠃⠎⠉⠢⠑⠌" }, { "input": "obscenities", "output": "⠕⠃⠎⠉⠢⠊⠞⠊⠑⠎" }, { "input": "obscenity", "output": "⠕⠃⠎⠉⠢⠰⠽" }, { "input": "obscenity's", "output": "⠕⠃⠎⠉⠢⠰⠽⠄⠎" }, { "input": "obscurantism's", "output": "⠕⠃⠎⠉⠥⠗â â â žâ Šâ Žâ â „â Ž" }, { "input": "obscurantist's", "output": "⠕⠃⠎⠉⠥⠗â â â žâ Šâ Œâ „â Ž" }, { "input": "obscurantists", "output": "⠕⠃⠎⠉⠥⠗â â â žâ Šâ Œâ Ž" }, { "input": "obscure", "output": "⠕⠃⠎⠉⠥⠗⠑" }, { "input": "obscured", "output": "⠕⠃⠎⠉⠥⠗⠫" }, { "input": "obscurely", "output": "⠕⠃⠎⠉⠥⠗⠑⠇⠽" }, { "input": "obscurer", "output": "⠕⠃⠎⠉⠥⠗⠻" }, { "input": "obscures", "output": "⠕⠃⠎⠉⠥⠗⠑⠎" }, { "input": "obscurest", "output": "⠕⠃⠎⠉⠥⠗⠑⠌" }, { "input": "obscuring", "output": "⠕⠃⠎⠉⠥⠗⠌" }, { "input": "obscurities", "output": "⠕⠃⠎⠉⠥⠗⠊⠞⠊⠑⠎" }, { "input": "obscurity", "output": "⠕⠃⠎⠉⠥⠗⠰⠽" }, { "input": "obscurity's", "output": "⠕⠃⠎⠉⠥⠗⠰⠽⠄⠎" }, { "input": "obsequies", "output": "⠕⠃⠎⠑⠟⠥⠊⠑⠎" }, { "input": "obsequious", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎" }, { "input": "obsequiously", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎⠇⠽" }, { "input": "obsequiousness", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎⠰⠎" }, { "input": "obsequiousness's", "output": "⠕⠃⠎⠑⠟⠥⠊⠳⠎⠰⠎⠄⠎" }, { "input": "obsequy", "output": "⠕⠃⠎⠑⠟⠥⠽" }, { "input": "obsequy's", "output": "⠕⠃⠎⠑⠟⠥⠽⠄⠎" }, { "input": "observable", "output": "⠕⠃⠎⠻⠧â â ¼" }, { "input": "observably", "output": "⠕⠃⠎⠻⠧â â ƒâ ‡â ½" }, { "input": "observance", "output": "⠕⠃⠎⠻⠧⠨⠑" }, { "input": "observance's", "output": "⠕⠃⠎⠻⠧⠨⠑⠄⠎" }, { "input": "observances", "output": "⠕⠃⠎⠻⠧⠨⠑⠎" }, { "input": "observant", "output": "⠕⠃⠎⠻⠧â â â ž" }, { "input": "observantly", "output": "⠕⠃⠎⠻⠧â â â žâ ‡â ½" }, { "input": "observation", "output": "⠕⠃⠎⠻⠧⠠â " }, { "input": "observation's", "output": "⠕⠃⠎⠻⠧⠠â â „â Ž" }, { "input": "observational", "output": "⠕⠃⠎⠻⠧⠠â â â ‡" }, { "input": "observations", "output": "⠕⠃⠎⠻⠧⠠â â Ž" }, { "input": "observatories", "output": "⠕⠃⠎⠻⠧â â žâ •â —â Šâ ‘â Ž" }, { "input": "observatory", "output": "⠕⠃⠎⠻⠧â â žâ •â —â ½" }, { "input": "observatory's", "output": "⠕⠃⠎⠻⠧â â žâ •⠗⠽⠄⠎" }, { "input": "observe", "output": "⠕⠃⠎⠻⠧⠑" }, { "input": "observed", "output": "⠕⠃⠎⠻⠧⠫" }, { "input": "observer", "output": "⠕⠃⠎⠻⠧⠻" }, { "input": "observer's", "output": "⠕⠃⠎⠻⠧⠻⠄⠎" }, { "input": "observers", "output": "⠕⠃⠎⠻⠧⠻⠎" }, { "input": "observes", "output": "⠕⠃⠎⠻⠧⠑⠎" }, { "input": "observing", "output": "⠕⠃⠎⠻⠧⠌" }, { "input": "obsess", "output": "⠕⠃⠎⠑⠎⠎" }, { "input": "obsessed", "output": "⠕⠃⠎⠑⠎⠎⠫" }, { "input": "obsesses", "output": "⠕⠃⠎⠑⠎⠎⠑⠎" }, { "input": "obsessing", "output": "⠕⠃⠎⠑⠎⠎⠌" }, { "input": "obsession", "output": "⠕⠃⠎⠑⠎⠨â " }, { "input": "obsession's", "output": "⠕⠃⠎⠑⠎⠨â â „â Ž" }, { "input": "obsessions", "output": "⠕⠃⠎⠑⠎⠨â â Ž" }, { "input": "obsessive", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑" }, { "input": "obsessive's", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠄⠎" }, { "input": "obsessively", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "obsessiveness", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠰⠎" }, { "input": "obsessiveness's", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "obsessives", "output": "⠕⠃⠎⠑⠎⠎⠊⠧⠑⠎" }, { "input": "obsidian", "output": "⠕⠃⠎⠊⠙⠊â â " }, { "input": "obsidian's", "output": "⠕⠃⠎⠊⠙⠊â â â „â Ž" }, { "input": "obsolesce", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠑" }, { "input": "obsolesced", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠫" }, { "input": "obsolescence", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠰⠑" }, { "input": "obsolescence's", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠰⠑⠄⠎" }, { "input": "obsolescent", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠢⠞" }, { "input": "obsolesces", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠑⠎" }, { "input": "obsolescing", "output": "⠕⠃⠎⠕⠇⠑⠎⠉⠌" }, { "input": "obsolete", "output": "⠕⠃⠎⠕⠇⠑⠞⠑" }, { "input": "obsoleted", "output": "⠕⠃⠎⠕⠇⠑⠞⠫" }, { "input": "obsoletes", "output": "⠕⠃⠎⠕⠇⠑⠞⠑⠎" }, { "input": "obsoleting", "output": "⠕⠃⠎⠕⠇⠑⠞⠌" }, { "input": "obstacle", "output": "⠕⠃⠌â â ‰â ‡â ‘" }, { "input": "obstacle's", "output": "⠕⠃⠌â â ‰â ‡â ‘â „â Ž" }, { "input": "obstacles", "output": "⠕⠃⠌â â ‰â ‡â ‘â Ž" }, { "input": "obstetric", "output": "⠕⠃⠌⠑⠞⠗⠊⠉" }, { "input": "obstetrical", "output": "⠕⠃⠌⠑⠞⠗⠊⠉â â ‡" }, { "input": "obstetrician", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠊â â " }, { "input": "obstetrician's", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠊â â â „â Ž" }, { "input": "obstetricians", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠊â â â Ž" }, { "input": "obstetrics", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠎" }, { "input": "obstetrics's", "output": "⠕⠃⠌⠑⠞⠗⠊⠉⠎⠄⠎" }, { "input": "obstinacy", "output": "⠕⠃⠌⠔â â ‰â ½" }, { "input": "obstinacy's", "output": "⠕⠃⠌⠔â â ‰â ½â „â Ž" }, { "input": "obstinate", "output": "⠕⠃⠌⠔â â žâ ‘" }, { "input": "obstinately", "output": "⠕⠃⠌⠔â â žâ ‘⠇⠽" }, { "input": "obstreperous", "output": "⠕⠃⠌⠗⠑â â »â ³â Ž" }, { "input": "obstreperously", "output": "⠕⠃⠌⠗⠑â â »â ³â Žâ ‡â ½" }, { "input": "obstreperousness's", "output": "⠕⠃⠌⠗⠑â â »â ³â Žâ °â Žâ „â Ž" }, { "input": "obstruct", "output": "⠕⠃⠌⠗⠥⠉⠞" }, { "input": "obstructed", "output": "⠕⠃⠌⠗⠥⠉⠞⠫" }, { "input": "obstructing", "output": "⠕⠃⠌⠗⠥⠉⠞⠌" }, { "input": "obstruction", "output": "⠕⠃⠌⠗⠥⠉⠰â " }, { "input": "obstruction's", "output": "⠕⠃⠌⠗⠥⠉⠰â â „â Ž" }, { "input": "obstructionism's", "output": "⠕⠃⠌⠗⠥⠉⠰â â Šâ Žâ â „â Ž" }, { "input": "obstructionist", "output": "⠕⠃⠌⠗⠥⠉⠰â â Šâ Œ" }, { "input": "obstructionist's", "output": "⠕⠃⠌⠗⠥⠉⠰â â Šâ Œâ „â Ž" }, { "input": "obstructionists", "output": "⠕⠃⠌⠗⠥⠉⠰â â Šâ Œâ Ž" }, { "input": "obstructions", "output": "⠕⠃⠌⠗⠥⠉⠰â â Ž" }, { "input": "obstructive", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑" }, { "input": "obstructively", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "obstructiveness", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "obstructiveness's", "output": "⠕⠃⠌⠗⠥⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "obstructs", "output": "⠕⠃⠌⠗⠥⠉⠞⠎" }, { "input": "obtain", "output": "⠕⠃⠞â â ”" }, { "input": "obtainable", "output": "⠕⠃⠞â â ”â â ¼" }, { "input": "obtained", "output": "⠕⠃⠞â â ”â «" }, { "input": "obtaining", "output": "⠕⠃⠞â â ”â Œ" }, { "input": "obtainment", "output": "⠕⠃⠞â â ”â °â ž" }, { "input": "obtainment's", "output": "⠕⠃⠞â â ”â °â žâ „â Ž" }, { "input": "obtains", "output": "⠕⠃⠞â â ”â Ž" }, { "input": "obtrude", "output": "⠕⠃⠞⠗⠥⠙⠑" }, { "input": "obtruded", "output": "⠕⠃⠞⠗⠥⠙⠫" }, { "input": "obtrudes", "output": "⠕⠃⠞⠗⠥⠙⠑⠎" }, { "input": "obtruding", "output": "⠕⠃⠞⠗⠥⠙⠌" }, { "input": "obtrusion", "output": "⠕⠃⠞⠗⠥⠨â " }, { "input": "obtrusion's", "output": "⠕⠃⠞⠗⠥⠨â â „â Ž" }, { "input": "obtrusive", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑" }, { "input": "obtrusively", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑⠇⠽" }, { "input": "obtrusiveness", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑⠰⠎" }, { "input": "obtrusiveness's", "output": "⠕⠃⠞⠗⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "obtuse", "output": "⠕⠃⠞⠥⠎⠑" }, { "input": "obtusely", "output": "⠕⠃⠞⠥⠎⠑⠇⠽" }, { "input": "obtuseness", "output": "⠕⠃⠞⠥⠎⠑⠰⠎" }, { "input": "obtuseness's", "output": "⠕⠃⠞⠥⠎⠑⠰⠎⠄⠎" }, { "input": "obtuser", "output": "⠕⠃⠞⠥⠎⠻" }, { "input": "obtusest", "output": "⠕⠃⠞⠥⠎⠑⠌" }, { "input": "obverse", "output": "⠕⠃⠧⠻⠎⠑" }, { "input": "obverse's", "output": "⠕⠃⠧⠻⠎⠑⠄⠎" }, { "input": "obverses", "output": "⠕⠃⠧⠻⠎⠑⠎" }, { "input": "obviate", "output": "⠕⠃⠧⠊â â žâ ‘" }, { "input": "obviated", "output": "⠕⠃⠧⠊â â žâ «" }, { "input": "obviates", "output": "⠕⠃⠧⠊â â žâ ‘â Ž" }, { "input": "obviating", "output": "⠕⠃⠧⠊â â žâ Œ" }, { "input": "obviation", "output": "⠕⠃⠧⠊⠠â " }, { "input": "obviation's", "output": "⠕⠃⠧⠊⠠â â „â Ž" }, { "input": "obvious", "output": "⠕⠃⠧⠊⠳⠎" }, { "input": "obviously", "output": "⠕⠃⠧⠊⠳⠎⠇⠽" }, { "input": "obviousness", "output": "⠕⠃⠧⠊⠳⠎⠰⠎" }, { "input": "obviousness's", "output": "⠕⠃⠧⠊⠳⠎⠰⠎⠄⠎" }, { "input": "ocarina", "output": "⠕⠉⠜⠔â " }, { "input": "ocarina's", "output": "⠕⠉⠜⠔â â „â Ž" }, { "input": "ocarinas", "output": "⠕⠉⠜⠔â â Ž" }, { "input": "occasion", "output": "â •â ’â â ¨â " }, { "input": "occasion's", "output": "â •â ’â â ¨â â „â Ž" }, { "input": "occasional", "output": "â •â ’â â ¨â â â ‡" }, { "input": "occasionally", "output": "â •â ’â â ¨â â  â ½" }, { "input": "occasioned", "output": "â •â ’â â ¨â â «" }, { "input": "occasioning", "output": "â •â ’â â ¨â â Œ" }, { "input": "occasions", "output": "â •â ’â â ¨â â Ž" }, { "input": "occidental", "output": "⠕⠒⠊⠙⠢⠞â â ‡" }, { "input": "occidental's", "output": "⠕⠒⠊⠙⠢⠞â â ‡â „â Ž" }, { "input": "occidentals", "output": "⠕⠒⠊⠙⠢⠞â â ‡â Ž" }, { "input": "occlude", "output": "⠕⠒⠇⠥⠙⠑" }, { "input": "occluded", "output": "⠕⠒⠇⠥⠙⠫" }, { "input": "occludes", "output": "⠕⠒⠇⠥⠙⠑⠎" }, { "input": "occluding", "output": "⠕⠒⠇⠥⠙⠌" }, { "input": "occlusion", "output": "⠕⠒⠇⠥⠨â " }, { "input": "occlusion's", "output": "⠕⠒⠇⠥⠨â â „â Ž" }, { "input": "occlusions", "output": "⠕⠒⠇⠥⠨â â Ž" }, { "input": "occlusive", "output": "⠕⠒⠇⠥⠎⠊⠧⠑" }, { "input": "occult", "output": "⠕⠒⠥⠇⠞" }, { "input": "occult's", "output": "⠕⠒⠥⠇⠞⠄⠎" }, { "input": "occultism", "output": "⠕⠒⠥⠇⠞⠊⠎â " }, { "input": "occultism's", "output": "⠕⠒⠥⠇⠞⠊⠎â â „â Ž" }, { "input": "occupancy", "output": "â •â ’â ¥â â â â ‰â ½" }, { "input": "occupancy's", "output": "â •â ’â ¥â â â â ‰â ½â „â Ž" }, { "input": "occupant", "output": "â •â ’â ¥â â â â ž" }, { "input": "occupant's", "output": "â •â ’â ¥â â â â žâ „â Ž" }, { "input": "occupants", "output": "â •â ’â ¥â â â â žâ Ž" }, { "input": "occupation", "output": "â •â ’â ¥â â  â " }, { "input": "occupation's", "output": "â •â ’â ¥â â  â â „â Ž" }, { "input": "occupational", "output": "â •â ’â ¥â â  â â â ‡" }, { "input": "occupations", "output": "â •â ’â ¥â â  â â Ž" }, { "input": "occupied", "output": "â •â ’â ¥â â Šâ «" }, { "input": "occupies", "output": "â •â ’â ¥â â Šâ ‘â Ž" }, { "input": "occupy", "output": "â •â ’â ¥â â ½" }, { "input": "occupying", "output": "â •â ’â ¥â â ½â Œ" }, { "input": "occur", "output": "⠕⠒⠥⠗" }, { "input": "occurred", "output": "⠕⠒⠥⠗⠗⠫" }, { "input": "occurrence", "output": "⠕⠒⠥⠗⠗⠰⠑" }, { "input": "occurrence's", "output": "⠕⠒⠥⠗⠗⠰⠑⠄⠎" }, { "input": "occurrences", "output": "⠕⠒⠥⠗⠗⠰⠑⠎" }, { "input": "occurring", "output": "⠕⠒⠥⠗⠗⠌" }, { "input": "occurs", "output": "⠕⠒⠥⠗⠎" }, { "input": "ocean", "output": "⠕⠉⠂â " }, { "input": "ocean's", "output": "⠕⠉⠂â â „â Ž" }, { "input": "oceanfront's", "output": "⠕⠉⠂â â ‹â —â •â â žâ „â Ž" }, { "input": "oceanfronts", "output": "⠕⠉⠂â â ‹â —â •â â žâ Ž" }, { "input": "oceangoing", "output": "⠕⠉⠂â â ›â •â Œ" }, { "input": "oceanic", "output": "⠕⠉⠂â â Šâ ‰" }, { "input": "oceanic's", "output": "⠕⠉⠂â â Šâ ‰â „â Ž" }, { "input": "oceanographer", "output": "⠕⠉⠂â â •⠛⠗â â â “â »" }, { "input": "oceanographer's", "output": "⠕⠉⠂â â •⠛⠗â â â “⠻⠄⠎" }, { "input": "oceanographers", "output": "⠕⠉⠂â â •⠛⠗â â â “⠻⠎" }, { "input": "oceanographic", "output": "⠕⠉⠂â â •⠛⠗â â â “â Šâ ‰" }, { "input": "oceanography", "output": "⠕⠉⠂â â •⠛⠗â â â “â ½" }, { "input": "oceanography's", "output": "⠕⠉⠂â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "oceanology", "output": "⠕⠉⠂â â •⠇⠕⠛⠽" }, { "input": "oceanology's", "output": "⠕⠉⠂â â •⠇⠕⠛⠽⠄⠎" }, { "input": "oceans", "output": "⠕⠉⠂â â Ž" }, { "input": "ocelot", "output": "⠕⠉⠑⠇⠕⠞" }, { "input": "ocelot's", "output": "⠕⠉⠑⠇⠕⠞⠄⠎" }, { "input": "ocelots", "output": "⠕⠉⠑⠇⠕⠞⠎" }, { "input": "ocher", "output": "â •â ¡â »" }, { "input": "ocher's", "output": "⠕⠡⠻⠄⠎" }, { "input": "octagon", "output": "⠕⠉⠞â â ›â •â " }, { "input": "octagon's", "output": "⠕⠉⠞â â ›â •â â „â Ž" }, { "input": "octagonal", "output": "⠕⠉⠞â â ›â •â â â ‡" }, { "input": "octagons", "output": "⠕⠉⠞â â ›â •â â Ž" }, { "input": "octal", "output": "⠕⠉⠞â â ‡" }, { "input": "octane", "output": "⠕⠉⠞â â â ‘" }, { "input": "octane's", "output": "⠕⠉⠞â â â ‘â „â Ž" }, { "input": "octave", "output": "⠕⠉⠞â â §â ‘" }, { "input": "octave's", "output": "⠕⠉⠞â â §â ‘â „â Ž" }, { "input": "octaves", "output": "⠕⠉⠞â â §â ‘â Ž" }, { "input": "octavo", "output": "⠕⠉⠞â â §â •" }, { "input": "octavo's", "output": "⠕⠉⠞â â §â •â „â Ž" }, { "input": "octavos", "output": "⠕⠉⠞â â §â •â Ž" }, { "input": "octet", "output": "⠕⠉⠞⠑⠞" }, { "input": "octet's", "output": "⠕⠉⠞⠑⠞⠄⠎" }, { "input": "octets", "output": "⠕⠉⠞⠑⠞⠎" }, { "input": "octogenarian", "output": "⠕⠉⠞⠕⠛⠢⠜⠊â â " }, { "input": "octogenarian's", "output": "⠕⠉⠞⠕⠛⠢⠜⠊â â â „â Ž" }, { "input": "octogenarians", "output": "⠕⠉⠞⠕⠛⠢⠜⠊â â â Ž" }, { "input": "octopus", "output": "⠕⠉⠞⠕â â ¥â Ž" }, { "input": "octopus's", "output": "⠕⠉⠞⠕â â ¥â Žâ „â Ž" }, { "input": "octopuses", "output": "⠕⠉⠞⠕â â ¥â Žâ ‘â Ž" }, { "input": "ocular", "output": "⠕⠉⠥⠇⠜" }, { "input": "ocular's", "output": "⠕⠉⠥⠇⠜⠄⠎" }, { "input": "oculars", "output": "⠕⠉⠥⠇⠜⠎" }, { "input": "oculist", "output": "⠕⠉⠥⠇⠊⠌" }, { "input": "oculist's", "output": "⠕⠉⠥⠇⠊⠌⠄⠎" }, { "input": "oculists", "output": "⠕⠉⠥⠇⠊⠌⠎" }, { "input": "odalisque", "output": "â •â ™â â ‡â Šâ Žâ Ÿâ ¥â ‘" }, { "input": "odalisque's", "output": "â •â ™â â ‡â Šâ Žâ Ÿâ ¥â ‘â „â Ž" }, { "input": "odalisques", "output": "â •â ™â â ‡â Šâ Žâ Ÿâ ¥â ‘â Ž" }, { "input": "odd", "output": "⠕⠙⠙" }, { "input": "oddball", "output": "⠕⠲⠃â â ‡â ‡" }, { "input": "oddball's", "output": "⠕⠲⠃â â ‡â ‡â „â Ž" }, { "input": "oddballs", "output": "⠕⠲⠃â â ‡â ‡â Ž" }, { "input": "odder", "output": "⠕⠲⠻" }, { "input": "oddest", "output": "⠕⠲⠑⠌" }, { "input": "oddities", "output": "⠕⠲⠊⠞⠊⠑⠎" }, { "input": "oddity", "output": "⠕⠲⠰⠽" }, { "input": "oddity's", "output": "⠕⠲⠰⠽⠄⠎" }, { "input": "oddly", "output": "⠕⠲⠇⠽" }, { "input": "oddness", "output": "⠕⠲⠰⠎" }, { "input": "oddness's", "output": "⠕⠲⠰⠎⠄⠎" }, { "input": "odds", "output": "⠕⠲⠎" }, { "input": "odds's", "output": "⠕⠲⠎⠄⠎" }, { "input": "ode", "output": "⠕⠙⠑" }, { "input": "ode's", "output": "⠕⠙⠑⠄⠎" }, { "input": "odes", "output": "⠕⠙⠑⠎" }, { "input": "odious", "output": "⠕⠙⠊⠳⠎" }, { "input": "odiously", "output": "⠕⠙⠊⠳⠎⠇⠽" }, { "input": "odiousness", "output": "⠕⠙⠊⠳⠎⠰⠎" }, { "input": "odiousness's", "output": "⠕⠙⠊⠳⠎⠰⠎⠄⠎" }, { "input": "odium", "output": "⠕⠙⠊⠥â " }, { "input": "odium's", "output": "⠕⠙⠊⠥â â „â Ž" }, { "input": "odometer", "output": "⠕⠙⠕â â ‘â žâ »" }, { "input": "odometer's", "output": "⠕⠙⠕â â ‘⠞⠻⠄⠎" }, { "input": "odometers", "output": "⠕⠙⠕â â ‘⠞⠻⠎" }, { "input": "odor", "output": "⠕⠙⠕⠗" }, { "input": "odor's", "output": "⠕⠙⠕⠗⠄⠎" }, { "input": "odored", "output": "⠕⠙⠕⠗⠫" }, { "input": "odoriferous", "output": "⠕⠙⠕⠗⠊⠋⠻⠳⠎" }, { "input": "odorless", "output": "⠕⠙⠕⠗⠨⠎" }, { "input": "odorous", "output": "⠕⠙⠕⠗⠳⠎" }, { "input": "odors", "output": "⠕⠙⠕⠗⠎" }, { "input": "odyssey", "output": "⠕⠙⠽⠎⠎⠑⠽" }, { "input": "odyssey's", "output": "⠕⠙⠽⠎⠎⠑⠽⠄⠎" }, { "input": "odysseys", "output": "⠕⠙⠽⠎⠎⠑⠽⠎" }, { "input": "oedipal", "output": "⠕⠑⠙⠊â â â ‡" }, { "input": "oenology", "output": "â •â ‘â â •⠇⠕⠛⠽" }, { "input": "oenology's", "output": "â •â ‘â â •⠇⠕⠛⠽⠄⠎" }, { "input": "oenophile", "output": "â •â ‘â â •â â “⠊⠇⠑" }, { "input": "oenophile's", "output": "â •â ‘â â •â â “⠊⠇⠑⠄⠎" }, { "input": "oenophiles", "output": "â •â ‘â â •â â “⠊⠇⠑⠎" }, { "input": "of", "output": "â ·" }, { "input": "off", "output": "â ·â ‹" }, { "input": "offal", "output": "â ·â ‹â â ‡" }, { "input": "offal's", "output": "â ·â ‹â â ‡â „â Ž" }, { "input": "offbeat", "output": "⠷⠋⠃⠂⠞" }, { "input": "offbeat's", "output": "⠷⠋⠃⠂⠞⠄⠎" }, { "input": "offbeats", "output": "⠷⠋⠃⠂⠞⠎" }, { "input": "offed", "output": "â ·â ‹â «" }, { "input": "offend", "output": "⠷⠋⠢⠙" }, { "input": "offended", "output": "⠷⠋⠢⠙⠫" }, { "input": "offender", "output": "⠷⠋⠢⠙⠻" }, { "input": "offender's", "output": "⠷⠋⠢⠙⠻⠄⠎" }, { "input": "offenders", "output": "⠷⠋⠢⠙⠻⠎" }, { "input": "offending", "output": "⠷⠋⠢⠙⠌" }, { "input": "offends", "output": "⠷⠋⠢⠙⠎" }, { "input": "offense", "output": "⠷⠋⠢⠎⠑" }, { "input": "offense's", "output": "⠷⠋⠢⠎⠑⠄⠎" }, { "input": "offenses", "output": "⠷⠋⠢⠎⠑⠎" }, { "input": "offensive", "output": "⠷⠋⠢⠎⠊⠧⠑" }, { "input": "offensive's", "output": "⠷⠋⠢⠎⠊⠧⠑⠄⠎" }, { "input": "offensively", "output": "⠷⠋⠢⠎⠊⠧⠑⠇⠽" }, { "input": "offensiveness", "output": "⠷⠋⠢⠎⠊⠧⠑⠰⠎" }, { "input": "offensiveness's", "output": "⠷⠋⠢⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "offensives", "output": "⠷⠋⠢⠎⠊⠧⠑⠎" }, { "input": "offer", "output": "â ·â ‹â »" }, { "input": "offer's", "output": "⠷⠋⠻⠄⠎" }, { "input": "offered", "output": "⠷⠋⠻⠫" }, { "input": "offering", "output": "⠷⠋⠻⠌" }, { "input": "offering's", "output": "⠷⠋⠻⠌⠄⠎" }, { "input": "offerings", "output": "⠷⠋⠻⠌⠎" }, { "input": "offers", "output": "⠷⠋⠻⠎" }, { "input": "offertories", "output": "⠷⠋⠻⠞⠕⠗⠊⠑⠎" }, { "input": "offertory", "output": "⠷⠋⠻⠞⠕⠗⠽" }, { "input": "offertory's", "output": "⠷⠋⠻⠞⠕⠗⠽⠄⠎" }, { "input": "offhand", "output": "â ·â ‹â “â ¯" }, { "input": "offhanded", "output": "⠷⠋⠓⠯⠫" }, { "input": "offhandedly", "output": "⠷⠋⠓⠯⠫⠇⠽" }, { "input": "offhandedness's", "output": "⠷⠋⠓⠯⠫⠰⠎⠄⠎" }, { "input": "office", "output": "⠷⠋⠊⠉⠑" }, { "input": "office's", "output": "⠷⠋⠊⠉⠑⠄⠎" }, { "input": "officeholder", "output": "⠷⠋⠊⠉⠑⠓⠕⠇⠙⠻" }, { "input": "officeholder's", "output": "⠷⠋⠊⠉⠑⠓⠕⠇⠙⠻⠄⠎" }, { "input": "officeholders", "output": "⠷⠋⠊⠉⠑⠓⠕⠇⠙⠻⠎" }, { "input": "officer", "output": "⠷⠋⠊⠉⠻" }, { "input": "officer's", "output": "⠷⠋⠊⠉⠻⠄⠎" }, { "input": "officers", "output": "⠷⠋⠊⠉⠻⠎" }, { "input": "offices", "output": "⠷⠋⠊⠉⠑⠎" }, { "input": "official", "output": "⠷⠋⠊⠉⠊â â ‡" }, { "input": "official's", "output": "⠷⠋⠊⠉⠊â â ‡â „â Ž" }, { "input": "officialdom", "output": "⠷⠋⠊⠉⠊â â ‡â ™â •â " }, { "input": "officialdom's", "output": "⠷⠋⠊⠉⠊â â ‡â ™â •â â „â Ž" }, { "input": "officialism", "output": "⠷⠋⠊⠉⠊â â ‡â Šâ Žâ " }, { "input": "officialism's", "output": "⠷⠋⠊⠉⠊â â ‡â Šâ Žâ â „â Ž" }, { "input": "officially", "output": "⠷⠋⠊⠉⠊⠠⠽" }, { "input": "officials", "output": "⠷⠋⠊⠉⠊â â ‡â Ž" }, { "input": "officiant", "output": "⠷⠋⠊⠉⠊â â â ž" }, { "input": "officiant's", "output": "⠷⠋⠊⠉⠊â â â žâ „â Ž" }, { "input": "officiants", "output": "⠷⠋⠊⠉⠊â â â žâ Ž" }, { "input": "officiate", "output": "⠷⠋⠊⠉⠊â â žâ ‘" }, { "input": "officiated", "output": "⠷⠋⠊⠉⠊â â žâ «" }, { "input": "officiates", "output": "⠷⠋⠊⠉⠊â â žâ ‘â Ž" }, { "input": "officiating", "output": "⠷⠋⠊⠉⠊â â žâ Œ" }, { "input": "officiator", "output": "⠷⠋⠊⠉⠊â â žâ •â —" }, { "input": "officiator's", "output": "⠷⠋⠊⠉⠊â â žâ •â —â „â Ž" }, { "input": "officiators", "output": "⠷⠋⠊⠉⠊â â žâ •â —â Ž" }, { "input": "officious", "output": "⠷⠋⠊⠉⠊⠳⠎" }, { "input": "officiously", "output": "⠷⠋⠊⠉⠊⠳⠎⠇⠽" }, { "input": "officiousness", "output": "⠷⠋⠊⠉⠊⠳⠎⠰⠎" }, { "input": "officiousness's", "output": "⠷⠋⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "offing", "output": "â ·â ‹â Œ" }, { "input": "offing's", "output": "⠷⠋⠌⠄⠎" }, { "input": "offings", "output": "⠷⠋⠌⠎" }, { "input": "offload", "output": "⠷⠋⠇⠕â â ™" }, { "input": "offprint", "output": "â ·â ‹â â —⠔⠞" }, { "input": "offprint's", "output": "â ·â ‹â â —⠔⠞⠄⠎" }, { "input": "offprints", "output": "â ·â ‹â â —⠔⠞⠎" }, { "input": "offs", "output": "â ·â ‹â Ž" }, { "input": "offset", "output": "â ·â ‹â Žâ ‘â ž" }, { "input": "offset's", "output": "â ·â ‹â Žâ ‘â žâ „â Ž" }, { "input": "offsets", "output": "â ·â ‹â Žâ ‘â žâ Ž" }, { "input": "offsetting", "output": "â ·â ‹â Žâ ‘â žâ žâ Œ" }, { "input": "offshoot", "output": "â ·â ‹â ©â •â •â ž" }, { "input": "offshoot's", "output": "â ·â ‹â ©â •â •â žâ „â Ž" }, { "input": "offshoots", "output": "â ·â ‹â ©â •â •â žâ Ž" }, { "input": "offshore", "output": "â ·â ‹â ©â •â —â ‘" }, { "input": "offside", "output": "⠷⠋⠎⠊⠙⠑" }, { "input": "offspring", "output": "â ·â ‹â Žâ â —â Œ" }, { "input": "offspring's", "output": "â ·â ‹â Žâ â —⠌⠄⠎" }, { "input": "offstage", "output": "â ·â ‹â Œâ â ›â ‘" }, { "input": "offstages", "output": "â ·â ‹â Œâ â ›â ‘â Ž" }, { "input": "offtrack", "output": "â ·â ‹â žâ —â â ‰â …" }, { "input": "oft", "output": "â ·â ž" }, { "input": "often", "output": "â ·â žâ ¢" }, { "input": "oftener", "output": "⠷⠞⠢⠻" }, { "input": "oftenest", "output": "⠷⠞⠢⠑⠌" }, { "input": "oftentimes", "output": "â ·â žâ ¢â â žâ Ž" }, { "input": "ofttimes", "output": "â ·â žâ â žâ Ž" }, { "input": "ogle", "output": "⠕⠛⠇⠑" }, { "input": "ogle's", "output": "⠕⠛⠇⠑⠄⠎" }, { "input": "ogled", "output": "⠕⠛⠇⠫" }, { "input": "ogler", "output": "⠕⠛⠇⠻" }, { "input": "ogler's", "output": "⠕⠛⠇⠻⠄⠎" }, { "input": "oglers", "output": "⠕⠛⠇⠻⠎" }, { "input": "ogles", "output": "⠕⠛⠇⠑⠎" }, { "input": "ogling", "output": "⠕⠛⠇⠌" }, { "input": "ogre", "output": "⠕⠛⠗⠑" }, { "input": "ogre's", "output": "⠕⠛⠗⠑⠄⠎" }, { "input": "ogreish", "output": "⠕⠛⠗⠑⠊⠩" }, { "input": "ogres", "output": "⠕⠛⠗⠑⠎" }, { "input": "ogress", "output": "⠕⠛⠗⠑⠎⠎" }, { "input": "ogress's", "output": "⠕⠛⠗⠑⠎⠎⠄⠎" }, { "input": "ogresses", "output": "⠕⠛⠗⠑⠎⠎⠑⠎" }, { "input": "oh", "output": "â •â “" }, { "input": "oh's", "output": "â •â “â „â Ž" }, { "input": "ohm", "output": "â •â “â " }, { "input": "ohm's", "output": "â •â “â â „â Ž" }, { "input": "ohmmeter", "output": "â •â “â â â ‘â žâ »" }, { "input": "ohmmeter's", "output": "â •â “â â â ‘⠞⠻⠄⠎" }, { "input": "ohmmeters", "output": "â •â “â â â ‘⠞⠻⠎" }, { "input": "ohms", "output": "â •â “â â Ž" }, { "input": "oho", "output": "â •â “â •" }, { "input": "ohs", "output": "â •â “â Ž" }, { "input": "oil", "output": "â •â Šâ ‡" }, { "input": "oil's", "output": "⠕⠊⠇⠄⠎" }, { "input": "oilcloth", "output": "⠕⠊⠇⠉⠇⠕⠹" }, { "input": "oilcloth's", "output": "⠕⠊⠇⠉⠇⠕⠹⠄⠎" }, { "input": "oilcloths", "output": "⠕⠊⠇⠉⠇⠕⠹⠎" }, { "input": "oiled", "output": "⠕⠊⠇⠫" }, { "input": "oilfield", "output": "⠕⠊⠇⠋⠊⠑⠇⠙" }, { "input": "oilfields", "output": "⠕⠊⠇⠋⠊⠑⠇⠙⠎" }, { "input": "oilier", "output": "⠕⠊⠇⠊⠻" }, { "input": "oiliest", "output": "⠕⠊⠇⠊⠑⠌" }, { "input": "oiliness", "output": "⠕⠊⠇⠊⠰⠎" }, { "input": "oiliness's", "output": "⠕⠊⠇⠊⠰⠎⠄⠎" }, { "input": "oiling", "output": "⠕⠊⠇⠌" }, { "input": "oils", "output": "⠕⠊⠇⠎" }, { "input": "oilskin", "output": "⠕⠊⠇⠎⠅⠔" }, { "input": "oilskin's", "output": "⠕⠊⠇⠎⠅⠔⠄⠎" }, { "input": "oilskins's", "output": "⠕⠊⠇⠎⠅⠔⠎⠄⠎" }, { "input": "oily", "output": "⠕⠊⠇⠽" }, { "input": "oink", "output": "⠕⠔⠅" }, { "input": "oink's", "output": "⠕⠔⠅⠄⠎" }, { "input": "oinked", "output": "⠕⠔⠅⠫" }, { "input": "oinking", "output": "⠕⠔⠅⠌" }, { "input": "oinks", "output": "⠕⠔⠅⠎" }, { "input": "ointment", "output": "⠕⠔⠞⠰⠞" }, { "input": "ointment's", "output": "⠕⠔⠞⠰⠞⠄⠎" }, { "input": "ointments", "output": "⠕⠔⠞⠰⠞⠎" }, { "input": "okapi", "output": "â •â …â â â Š" }, { "input": "okapi's", "output": "â •â …â â â Šâ „â Ž" }, { "input": "okapis", "output": "â •â …â â â Šâ Ž" }, { "input": "okaying", "output": "â •â …â â ½â Œ" }, { "input": "okra", "output": "â •â …â —â " }, { "input": "okra's", "output": "â •â …â —â â „â Ž" }, { "input": "okras", "output": "â •â …â —â â Ž" }, { "input": "old", "output": "⠕⠇⠙" }, { "input": "old's", "output": "⠕⠇⠙⠄⠎" }, { "input": "olden", "output": "⠕⠇⠙⠢" }, { "input": "older", "output": "⠕⠇⠙⠻" }, { "input": "oldest", "output": "⠕⠇⠙⠑⠌" }, { "input": "oldie", "output": "⠕⠇⠙⠊⠑" }, { "input": "oldie's", "output": "⠕⠇⠙⠊⠑⠄⠎" }, { "input": "oldies", "output": "⠕⠇⠙⠊⠑⠎" }, { "input": "oldness", "output": "⠕⠇⠙⠰⠎" }, { "input": "oldness's", "output": "⠕⠇⠙⠰⠎⠄⠎" }, { "input": "oldster's", "output": "⠕⠇⠙⠌⠻⠄⠎" }, { "input": "oldsters", "output": "⠕⠇⠙⠌⠻⠎" }, { "input": "oleaginous", "output": "⠕⠇⠑â â ›â ”⠳⠎" }, { "input": "oleander", "output": "⠕⠇⠑⠯⠻" }, { "input": "oleander's", "output": "⠕⠇⠑⠯⠻⠄⠎" }, { "input": "oleanders", "output": "⠕⠇⠑⠯⠻⠎" }, { "input": "oleo", "output": "⠕⠇⠑⠕" }, { "input": "oleo's", "output": "⠕⠇⠑⠕⠄⠎" }, { "input": "oleomargarine", "output": "⠕⠇⠑⠕â â œâ ›â œâ ”â ‘" }, { "input": "oleomargarine's", "output": "⠕⠇⠑⠕â â œâ ›â œâ ”â ‘â „â Ž" }, { "input": "oles", "output": "⠕⠇⠑⠎" }, { "input": "olfactories", "output": "⠕⠇⠋â â ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "olfactory", "output": "⠕⠇⠋â â ‰â žâ •â —â ½" }, { "input": "olfactory's", "output": "⠕⠇⠋â â ‰â žâ •⠗⠽⠄⠎" }, { "input": "oligarch", "output": "⠕⠇⠊⠛⠜⠡" }, { "input": "oligarch's", "output": "⠕⠇⠊⠛⠜⠡⠄⠎" }, { "input": "oligarchic", "output": "⠕⠇⠊⠛⠜⠡⠊⠉" }, { "input": "oligarchical", "output": "⠕⠇⠊⠛⠜⠡⠊⠉â â ‡" }, { "input": "oligarchies", "output": "⠕⠇⠊⠛⠜⠡⠊⠑⠎" }, { "input": "oligarchs", "output": "⠕⠇⠊⠛⠜⠡⠎" }, { "input": "oligarchy", "output": "⠕⠇⠊⠛⠜⠡⠽" }, { "input": "oligarchy's", "output": "⠕⠇⠊⠛⠜⠡⠽⠄⠎" }, { "input": "oligopolies", "output": "⠕⠇⠊⠛⠕â â •⠇⠊⠑⠎" }, { "input": "oligopoly", "output": "⠕⠇⠊⠛⠕â â •⠇⠽" }, { "input": "oligopoly's", "output": "⠕⠇⠊⠛⠕â â •⠇⠽⠄⠎" }, { "input": "olive", "output": "⠕⠇⠊⠧⠑" }, { "input": "olive's", "output": "⠕⠇⠊⠧⠑⠄⠎" }, { "input": "olives", "output": "⠕⠇⠊⠧⠑⠎" }, { "input": "om", "output": "â •â " }, { "input": "om's", "output": "â •â â „â Ž" }, { "input": "ombudsman", "output": "â •â â ƒâ ¥â ™â Žâ â â " }, { "input": "ombudsman's", "output": "â •â â ƒâ ¥â ™â Žâ â â â „â Ž" }, { "input": "ombudsmen", "output": "â •â â ƒâ ¥â ™â Žâ â ¢" }, { "input": "omega", "output": "â •â â ‘â ›â " }, { "input": "omega's", "output": "â •â â ‘â ›â â „â Ž" }, { "input": "omegas", "output": "â •â â ‘â ›â â Ž" }, { "input": "omelet", "output": "â •â â ‘⠇⠑⠞" }, { "input": "omelet's", "output": "â •â â ‘⠇⠑⠞⠄⠎" }, { "input": "omelets", "output": "â •â â ‘⠇⠑⠞⠎" }, { "input": "omen", "output": "â •â â ¢" }, { "input": "omen's", "output": "â •â â ¢â „â Ž" }, { "input": "omens", "output": "â •â â ¢â Ž" }, { "input": "omicron", "output": "â •â â Šâ ‰â —â •â " }, { "input": "omicron's", "output": "â •â â Šâ ‰â —â •â â „â Ž" }, { "input": "omicrons", "output": "â •â â Šâ ‰â —â •â â Ž" }, { "input": "ominous", "output": "â •â â ”⠳⠎" }, { "input": "ominously", "output": "â •â â ”⠳⠎⠇⠽" }, { "input": "ominousness", "output": "â •â â ”⠳⠎⠰⠎" }, { "input": "ominousness's", "output": "â •â â ”⠳⠎⠰⠎⠄⠎" }, { "input": "omission", "output": "â •â â Šâ Žâ ¨â " }, { "input": "omission's", "output": "â •â â Šâ Žâ ¨â â „â Ž" }, { "input": "omissions", "output": "â •â â Šâ Žâ ¨â â Ž" }, { "input": "omit", "output": "â •â â Šâ ž" }, { "input": "omits", "output": "â •â â Šâ žâ Ž" }, { "input": "omitted", "output": "â •â â Šâ žâ žâ «" }, { "input": "omitting", "output": "â •â â Šâ žâ žâ Œ" }, { "input": "omnibus", "output": "â •â â â Šâ ƒâ ¥â Ž" }, { "input": "omnibus's", "output": "â •â â â Šâ ƒâ ¥â Žâ „â Ž" }, { "input": "omnibuses", "output": "â •â â â Šâ ƒâ ¥â Žâ ‘â Ž" }, { "input": "omnipotence", "output": "â •â â â Šâ â •â žâ °â ‘" }, { "input": "omnipotence's", "output": "â •â â â Šâ â •â žâ °â ‘â „â Ž" }, { "input": "omnipotent", "output": "â •â â â Šâ â •⠞⠢⠞" }, { "input": "omnipresence", "output": "â •â â â Šâ â —â ‘â Žâ °â ‘" }, { "input": "omnipresence's", "output": "â •â â â Šâ â —â ‘â Žâ °â ‘â „â Ž" }, { "input": "omnipresent", "output": "â •â â â Šâ â —⠑⠎⠢⠞" }, { "input": "omniscience", "output": "â •â â â Šâ Žâ ‰â Šâ °â ‘" }, { "input": "omniscience's", "output": "â •â â â Šâ Žâ ‰â Šâ °â ‘â „â Ž" }, { "input": "omniscient", "output": "â •â â â Šâ Žâ ‰â Šâ ¢â ž" }, { "input": "omnivore", "output": "â •â â â Šâ §â •â —â ‘" }, { "input": "omnivore's", "output": "â •â â â Šâ §â •â —â ‘â „â Ž" }, { "input": "omnivores", "output": "â •â â â Šâ §â •â —â ‘â Ž" }, { "input": "omnivorous", "output": "â •â â â Šâ §â •⠗⠳⠎" }, { "input": "omnivorously", "output": "â •â â â Šâ §â •⠗⠳⠎⠇⠽" }, { "input": "omnivorousness", "output": "â •â â â Šâ §â •⠗⠳⠎⠰⠎" }, { "input": "omnivorousness's", "output": "â •â â â Šâ §â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "oms", "output": "â •â â Ž" }, { "input": "on", "output": "â •â " }, { "input": "once", "output": "â •â â ‰â ‘" }, { "input": "once's", "output": "â •â â ‰â ‘â „â Ž" }, { "input": "oncogene", "output": "â •â â ‰â •⠛⠢⠑" }, { "input": "oncogene's", "output": "â •â â ‰â •⠛⠢⠑⠄⠎" }, { "input": "oncogenes", "output": "â •â â ‰â •⠛⠢⠑⠎" }, { "input": "oncology", "output": "â •â â ‰â •⠇⠕⠛⠽" }, { "input": "oncology's", "output": "â •â â ‰â •⠇⠕⠛⠽⠄⠎" }, { "input": "oncoming", "output": "â •â â ‰â •â â Œ" }, { "input": "one", "output": "â â •" }, { "input": "one's", "output": "â â •â „â Ž" }, { "input": "oneness", "output": "â â •â °â Ž" }, { "input": "oneness's", "output": "â â •â °â Žâ „â Ž" }, { "input": "onerous", "output": "â •â â »â ³â Ž" }, { "input": "onerously", "output": "â •â â »â ³â Žâ ‡â ½" }, { "input": "onerousness's", "output": "â •â â »â ³â Žâ °â Žâ „â Ž" }, { "input": "ones", "output": "â â •â Ž" }, { "input": "oneself", "output": "â â •â ‹" }, { "input": "onetime", "output": "â â •â â ž" }, { "input": "ongoing", "output": "â •â â ›â •â Œ" }, { "input": "onion", "output": "â •â â Šâ •â " }, { "input": "onion's", "output": "â •â â Šâ •â â „â Ž" }, { "input": "onions", "output": "â •â â Šâ •â â Ž" }, { "input": "onionskin", "output": "â •â â Šâ •â â Žâ …â ”" }, { "input": "onionskin's", "output": "â •â â Šâ •â â Žâ …⠔⠄⠎" }, { "input": "online", "output": "â •â â ‡â ”â ‘" }, { "input": "onlooker", "output": "â •â â ‡â •â •â …â »" }, { "input": "onlooker's", "output": "â •â â ‡â •⠕⠅⠻⠄⠎" }, { "input": "onlookers", "output": "â •â â ‡â •⠕⠅⠻⠎" }, { "input": "onlooking", "output": "â •â â ‡â •â •â …â Œ" }, { "input": "only", "output": "â •â â ‡â ½" }, { "input": "onomatopoeia", "output": "â •â â •â â â žâ •â â •â ‘â Šâ " }, { "input": "onomatopoeia's", "output": "â •â â •â â â žâ •â â •â ‘â Šâ â „â Ž" }, { "input": "onomatopoeic", "output": "â •â â •â â â žâ •â â •â ‘â Šâ ‰" }, { "input": "onomatopoetic", "output": "â •â â •â â â žâ •â â •â ‘â žâ Šâ ‰" }, { "input": "onrush", "output": "â •â â —⠥⠩" }, { "input": "onrush's", "output": "â •â â —⠥⠩⠄⠎" }, { "input": "onrushes", "output": "â •â â —⠥⠩⠑⠎" }, { "input": "onrushing", "output": "â •â â —⠥⠩⠌" }, { "input": "onscreen", "output": "â •â â Žâ ‰â —â ‘â ¢" }, { "input": "onset", "output": "â •â â Žâ ‘â ž" }, { "input": "onset's", "output": "â •â â Žâ ‘â žâ „â Ž" }, { "input": "onsets", "output": "â •â â Žâ ‘â žâ Ž" }, { "input": "onshore", "output": "â •â â ©â •â —â ‘" }, { "input": "onslaught", "output": "â •â â Žâ ‡â â ¥â £â ž" }, { "input": "onslaught's", "output": "â •â â Žâ ‡â â ¥â £â žâ „â Ž" }, { "input": "onslaughts", "output": "â •â â Žâ ‡â â ¥â £â žâ Ž" }, { "input": "onto", "output": "â •â â žâ •" }, { "input": "ontogeny", "output": "â •â â žâ •⠛⠢⠽" }, { "input": "ontogeny's", "output": "â •â â žâ •⠛⠢⠽⠄⠎" }, { "input": "ontology's", "output": "â •â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "onus", "output": "â •â â ¥â Ž" }, { "input": "onus's", "output": "â •â â ¥â Žâ „â Ž" }, { "input": "onuses", "output": "â •â â ¥â Žâ ‘â Ž" }, { "input": "onward", "output": "â •â â ºâ œâ ™" }, { "input": "onyx", "output": "â •â â ½â ­" }, { "input": "onyx's", "output": "â •â â ½â ­â „â Ž" }, { "input": "onyxes", "output": "â •â â ½â ­â ‘â Ž" }, { "input": "oodles", "output": "⠕⠕⠙⠇⠑⠎" }, { "input": "oodles's", "output": "⠕⠕⠙⠇⠑⠎⠄⠎" }, { "input": "oops", "output": "â •â •â â Ž" }, { "input": "ooze", "output": "⠕⠕⠵⠑" }, { "input": "ooze's", "output": "⠕⠕⠵⠑⠄⠎" }, { "input": "oozed", "output": "⠕⠕⠵⠫" }, { "input": "oozes", "output": "⠕⠕⠵⠑⠎" }, { "input": "oozier", "output": "⠕⠕⠵⠊⠻" }, { "input": "ooziest", "output": "⠕⠕⠵⠊⠑⠌" }, { "input": "oozing", "output": "⠕⠕⠵⠌" }, { "input": "opacity", "output": "â •â â â ‰â °â ½" }, { "input": "opacity's", "output": "â •â â â ‰â °â ½â „â Ž" }, { "input": "opal", "output": "â •â â â ‡" }, { "input": "opal's", "output": "â •â â â ‡â „â Ž" }, { "input": "opalescence", "output": "â •â â â ‡â ‘⠎⠉⠰⠑" }, { "input": "opalescence's", "output": "â •â â â ‡â ‘⠎⠉⠰⠑⠄⠎" }, { "input": "opalescent", "output": "â •â â â ‡â ‘⠎⠉⠢⠞" }, { "input": "opals", "output": "â •â â â ‡â Ž" }, { "input": "opaque", "output": "â •â â â Ÿâ ¥â ‘" }, { "input": "opaqued", "output": "â •â â â Ÿâ ¥â «" }, { "input": "opaquely", "output": "â •â â â Ÿâ ¥â ‘⠇⠽" }, { "input": "opaqueness", "output": "â •â â â Ÿâ ¥â ‘â °â Ž" }, { "input": "opaqueness's", "output": "â •â â â Ÿâ ¥â ‘â °â Žâ „â Ž" }, { "input": "opaquer", "output": "â •â â â Ÿâ ¥â »" }, { "input": "opaques", "output": "â •â â â Ÿâ ¥â ‘â Ž" }, { "input": "opaquest", "output": "â •â â â Ÿâ ¥â ‘â Œ" }, { "input": "opaquing", "output": "â •â â â Ÿâ ¥â Œ" }, { "input": "ope", "output": "â •â â ‘" }, { "input": "oped", "output": "â •â â «" }, { "input": "open", "output": "â •â â ¢" }, { "input": "open's", "output": "â •â â ¢â „â Ž" }, { "input": "opened", "output": "â •â â ¢â «" }, { "input": "opener", "output": "â •â â ¢â »" }, { "input": "opener's", "output": "â •â â ¢â »â „â Ž" }, { "input": "openers", "output": "â •â â ¢â »â Ž" }, { "input": "openest", "output": "â •â â ¢â ‘â Œ" }, { "input": "openhanded", "output": "â •â â ¢â “⠯⠫" }, { "input": "openhandedness", "output": "â •â â ¢â “⠯⠫⠰⠎" }, { "input": "openhandedness's", "output": "â •â â ¢â “⠯⠫⠰⠎⠄⠎" }, { "input": "openhearted", "output": "â •â â ¢â “⠑⠜⠞⠫" }, { "input": "opening", "output": "â •â â ¢â Œ" }, { "input": "opening's", "output": "â •â â ¢â Œâ „â Ž" }, { "input": "openings", "output": "â •â â ¢â Œâ Ž" }, { "input": "openly", "output": "â •â â ¢â ‡â ½" }, { "input": "openness", "output": "â •â â ¢â °â Ž" }, { "input": "openness's", "output": "â •â â ¢â °â Žâ „â Ž" }, { "input": "opens", "output": "â •â â ¢â Ž" }, { "input": "openwork", "output": "â •â â ¢â â º" }, { "input": "openwork's", "output": "â •â â ¢â â ºâ „â Ž" }, { "input": "opera", "output": "â •â â »â " }, { "input": "opera's", "output": "â •â â »â â „â Ž" }, { "input": "operable", "output": "â •â â »â â ¼" }, { "input": "operand", "output": "â •â â »â ¯" }, { "input": "operands", "output": "â •â â »â ¯â Ž" }, { "input": "operas", "output": "â •â â »â â Ž" }, { "input": "operate", "output": "â •â â »â â žâ ‘" }, { "input": "operated", "output": "â •â â »â â žâ «" }, { "input": "operates", "output": "â •â â »â â žâ ‘â Ž" }, { "input": "operatic", "output": "â •â â »â â žâ Šâ ‰" }, { "input": "operating", "output": "â •â â »â â žâ Œ" }, { "input": "operation", "output": "â •â â »â  â " }, { "input": "operation's", "output": "â •â â »â  â â „â Ž" }, { "input": "operational", "output": "â •â â »â  â â â ‡" }, { "input": "operationally", "output": "â •â â »â  â â  â ½" }, { "input": "operations", "output": "â •â â »â  â â Ž" }, { "input": "operative", "output": "â •â â »â â žâ Šâ §â ‘" }, { "input": "operative's", "output": "â •â â »â â žâ Šâ §â ‘â „â Ž" }, { "input": "operatives", "output": "â •â â »â â žâ Šâ §â ‘â Ž" }, { "input": "operator", "output": "â •â â »â â žâ •â —" }, { "input": "operator's", "output": "â •â â »â â žâ •â —â „â Ž" }, { "input": "operators", "output": "â •â â »â â žâ •â —â Ž" }, { "input": "operetta", "output": "â •â â »â ‘â žâ žâ " }, { "input": "operetta's", "output": "â •â â »â ‘â žâ žâ â „â Ž" }, { "input": "operettas", "output": "â •â â »â ‘â žâ žâ â Ž" }, { "input": "opes", "output": "â •â â ‘â Ž" }, { "input": "ophthalmic", "output": "â •â â “â ¹â â ‡â â Šâ ‰" }, { "input": "ophthalmologist", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠊⠌" }, { "input": "ophthalmologist's", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ophthalmologists", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠊⠌⠎" }, { "input": "ophthalmology", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠽" }, { "input": "ophthalmology's", "output": "â •â â “â ¹â â ‡â â •⠇⠕⠛⠽⠄⠎" }, { "input": "opiate", "output": "â •â â Šâ â žâ ‘" }, { "input": "opiate's", "output": "â •â â Šâ â žâ ‘â „â Ž" }, { "input": "opiates", "output": "â •â â Šâ â žâ ‘â Ž" }, { "input": "opine", "output": "â •â â ”â ‘" }, { "input": "opined", "output": "â •â â ”â «" }, { "input": "opines", "output": "â •â â ”â ‘â Ž" }, { "input": "oping", "output": "â •â â Œ" }, { "input": "opining", "output": "â •â â ”â Œ" }, { "input": "opinion", "output": "â •â â ”â Šâ •â " }, { "input": "opinion's", "output": "â •â â ”â Šâ •â â „â Ž" }, { "input": "opinionated", "output": "â •â â ”â Šâ •â â â žâ «" }, { "input": "opinions", "output": "â •â â ”â Šâ •â â Ž" }, { "input": "opium", "output": "â •â â Šâ ¥â " }, { "input": "opium's", "output": "â •â â Šâ ¥â â „â Ž" }, { "input": "opossum", "output": "â •â â •â Žâ Žâ ¥â " }, { "input": "opossum's", "output": "â •â â •â Žâ Žâ ¥â â „â Ž" }, { "input": "opossums", "output": "â •â â •â Žâ Žâ ¥â â Ž" }, { "input": "opponent", "output": "â •â â â •â â ¢â ž" }, { "input": "opponent's", "output": "â •â â â •â â ¢â žâ „â Ž" }, { "input": "opponents", "output": "â •â â â •â â ¢â žâ Ž" }, { "input": "opportune", "output": "â •â â â •â —â žâ ¥â â ‘" }, { "input": "opportunism", "output": "â •â â â •â —â žâ ¥â â Šâ Žâ " }, { "input": "opportunism's", "output": "â •â â â •â —â žâ ¥â â Šâ Žâ â „â Ž" }, { "input": "opportunist", "output": "â •â â â •â —â žâ ¥â â Šâ Œ" }, { "input": "opportunist's", "output": "â •â â â •â —â žâ ¥â â Šâ Œâ „â Ž" }, { "input": "opportunistic", "output": "â •â â â •â —â žâ ¥â â Šâ Œâ Šâ ‰" }, { "input": "opportunists", "output": "â •â â â •â —â žâ ¥â â Šâ Œâ Ž" }, { "input": "opportunities", "output": "â •â â â •â —â žâ ¥â â Šâ žâ Šâ ‘â Ž" }, { "input": "opportunity", "output": "â •â â â •â —â žâ ¥â â °â ½" }, { "input": "opportunity's", "output": "â •â â â •â —â žâ ¥â â °â ½â „â Ž" }, { "input": "oppose", "output": "â •â â â •â Žâ ‘" }, { "input": "opposed", "output": "â •â â â •â Žâ «" }, { "input": "opposes", "output": "â •â â â •â Žâ ‘â Ž" }, { "input": "opposing", "output": "â •â â â •â Žâ Œ" }, { "input": "opposite", "output": "â •â â â •â Žâ Šâ žâ ‘" }, { "input": "opposite's", "output": "â •â â â •â Žâ Šâ žâ ‘â „â Ž" }, { "input": "oppositely", "output": "â •â â â •⠎⠊⠞⠑⠇⠽" }, { "input": "opposites", "output": "â •â â â •â Žâ Šâ žâ ‘â Ž" }, { "input": "opposition", "output": "â •â â â •â Žâ Šâ °â " }, { "input": "opposition's", "output": "â •â â â •â Žâ Šâ °â â „â Ž" }, { "input": "oppress", "output": "â •â â â —â ‘â Žâ Ž" }, { "input": "oppressed", "output": "â •â â â —â ‘â Žâ Žâ «" }, { "input": "oppresses", "output": "â •â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "oppressing", "output": "â •â â â —â ‘â Žâ Žâ Œ" }, { "input": "oppression", "output": "â •â â â —â ‘â Žâ ¨â " }, { "input": "oppression's", "output": "â •â â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "oppressive", "output": "â •â â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "oppressively", "output": "â •â â â —⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "oppressiveness's", "output": "â •â â â —â ‘â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "oppressor", "output": "â •â â â —â ‘â Žâ Žâ •â —" }, { "input": "oppressor's", "output": "â •â â â —â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "oppressors", "output": "â •â â â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "opprobrious", "output": "â •â â â —⠕⠃⠗⠊⠳⠎" }, { "input": "opprobriously", "output": "â •â â â —⠕⠃⠗⠊⠳⠎⠇⠽" }, { "input": "opprobrium", "output": "â •â â â —⠕⠃⠗⠊⠥â " }, { "input": "opprobrium's", "output": "â •â â â —⠕⠃⠗⠊⠥â â „â Ž" }, { "input": "opt", "output": "â •â â ž" }, { "input": "opted", "output": "â •â â žâ «" }, { "input": "optic", "output": "â •â â žâ Šâ ‰" }, { "input": "optic's", "output": "â •â â žâ Šâ ‰â „â Ž" }, { "input": "optical", "output": "â •â â žâ Šâ ‰â â ‡" }, { "input": "optically", "output": "â •â â žâ Šâ ‰â  â ½" }, { "input": "optician", "output": "â •â â žâ Šâ ‰â Šâ â " }, { "input": "optician's", "output": "â •â â žâ Šâ ‰â Šâ â â „â Ž" }, { "input": "opticians", "output": "â •â â žâ Šâ ‰â Šâ â â Ž" }, { "input": "optics", "output": "â •â â žâ Šâ ‰â Ž" }, { "input": "optics's", "output": "â •â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "optima", "output": "â •â â žâ Šâ â " }, { "input": "optimal", "output": "â •â â žâ Šâ â â ‡" }, { "input": "optimally", "output": "â •â â žâ Šâ â  â ½" }, { "input": "optimism", "output": "â •â â žâ Šâ â Šâ Žâ " }, { "input": "optimism's", "output": "â •â â žâ Šâ â Šâ Žâ â „â Ž" }, { "input": "optimist", "output": "â •â â žâ Šâ â Šâ Œ" }, { "input": "optimist's", "output": "â •â â žâ Šâ â Šâ Œâ „â Ž" }, { "input": "optimistic", "output": "â •â â žâ Šâ â Šâ Œâ Šâ ‰" }, { "input": "optimistically", "output": "â •â â žâ Šâ â Šâ Œâ Šâ ‰â  â ½" }, { "input": "optimists", "output": "â •â â žâ Šâ â Šâ Œâ Ž" }, { "input": "optimization", "output": "â •â â žâ Šâ â Šâ µâ  â " }, { "input": "optimization's", "output": "â •â â žâ Šâ â Šâ µâ  â â „â Ž" }, { "input": "optimize", "output": "â •â â žâ Šâ â Šâ µâ ‘" }, { "input": "optimized", "output": "â •â â žâ Šâ â Šâ µâ «" }, { "input": "optimizer", "output": "â •â â žâ Šâ â Šâ µâ »" }, { "input": "optimizes", "output": "â •â â žâ Šâ â Šâ µâ ‘â Ž" }, { "input": "optimizing", "output": "â •â â žâ Šâ â Šâ µâ Œ" }, { "input": "optimum", "output": "â •â â žâ Šâ â ¥â " }, { "input": "optimum's", "output": "â •â â žâ Šâ â ¥â â „â Ž" }, { "input": "optimums", "output": "â •â â žâ Šâ â ¥â â Ž" }, { "input": "opting", "output": "â •â â žâ Œ" }, { "input": "option", "output": "â •â â °â " }, { "input": "option's", "output": "â •â â °â â „â Ž" }, { "input": "optional", "output": "â •â â °â â â ‡" }, { "input": "optionally", "output": "â •â â °â â  â ½" }, { "input": "optioned", "output": "â •â â °â â «" }, { "input": "optioning", "output": "â •â â °â â Œ" }, { "input": "options", "output": "â •â â °â â Ž" }, { "input": "optometrist", "output": "â •â â žâ •â â ‘â žâ —â Šâ Œ" }, { "input": "optometrist's", "output": "â •â â žâ •â â ‘⠞⠗⠊⠌⠄⠎" }, { "input": "optometrists", "output": "â •â â žâ •â â ‘⠞⠗⠊⠌⠎" }, { "input": "optometry", "output": "â •â â žâ •â â ‘â žâ —â ½" }, { "input": "optometry's", "output": "â •â â žâ •â â ‘⠞⠗⠽⠄⠎" }, { "input": "opts", "output": "â •â â žâ Ž" }, { "input": "opulence", "output": "â •â â ¥â ‡â °â ‘" }, { "input": "opulence's", "output": "â •â â ¥â ‡â °â ‘â „â Ž" }, { "input": "opulent", "output": "â •â â ¥â ‡â ¢â ž" }, { "input": "opulently", "output": "â •â â ¥â ‡â ¢â žâ ‡â ½" }, { "input": "opus", "output": "â •â â ¥â Ž" }, { "input": "opus's", "output": "â •â â ¥â Žâ „â Ž" }, { "input": "opuses", "output": "â •â â ¥â Žâ ‘â Ž" }, { "input": "or", "output": "â •â —" }, { "input": "oracle", "output": "â •â —â â ‰â ‡â ‘" }, { "input": "oracle's", "output": "â •â —â â ‰â ‡â ‘â „â Ž" }, { "input": "oracles", "output": "â •â —â â ‰â ‡â ‘â Ž" }, { "input": "oracular", "output": "â •â —â â ‰â ¥â ‡â œ" }, { "input": "oral", "output": "â •â —â â ‡" }, { "input": "oral's", "output": "â •â —â â ‡â „â Ž" }, { "input": "orally", "output": "â •â —â  â ½" }, { "input": "orals", "output": "â •â —â â ‡â Ž" }, { "input": "orange", "output": "â •â —â â â ›â ‘" }, { "input": "orange's", "output": "â •â —â â â ›â ‘â „â Ž" }, { "input": "orangeade", "output": "â •â —â â â ›â ‘â â ™â ‘" }, { "input": "orangeade's", "output": "â •â —â â â ›â ‘â â ™â ‘â „â Ž" }, { "input": "orangeades", "output": "â •â —â â â ›â ‚⠙⠑⠎" }, { "input": "oranges", "output": "â •â —â â â ›â ‘â Ž" }, { "input": "orangutan", "output": "â •â —â â â ›â ¥â žâ â " }, { "input": "orangutan's", "output": "â •â —â â â ›â ¥â žâ â â „â Ž" }, { "input": "orangutans", "output": "â •â —â â â ›â ¥â žâ â â Ž" }, { "input": "orate", "output": "â •â —â â žâ ‘" }, { "input": "orated", "output": "â •â —â â žâ «" }, { "input": "orates", "output": "â •â —â â žâ ‘â Ž" }, { "input": "orating", "output": "â •â —â â žâ Œ" }, { "input": "oration", "output": "â •â —â  â " }, { "input": "oration's", "output": "â •â —â  â â „â Ž" }, { "input": "orations", "output": "â •â —â  â â Ž" }, { "input": "orator", "output": "â •â —â â žâ •â —" }, { "input": "orator's", "output": "â •â —â â žâ •â —â „â Ž" }, { "input": "oratorical", "output": "â •â —â â žâ •â —â Šâ ‰â â ‡" }, { "input": "oratorically", "output": "â •â —â â žâ •⠗⠊⠉⠠⠽" }, { "input": "oratories", "output": "â •â —â â žâ •â —â Šâ ‘â Ž" }, { "input": "oratorio", "output": "â •â —â â žâ •â —â Šâ •" }, { "input": "oratorio's", "output": "â •â —â â žâ •â —â Šâ •â „â Ž" }, { "input": "oratorios", "output": "â •â —â â žâ •â —â Šâ •â Ž" }, { "input": "orators", "output": "â •â —â â žâ •â —â Ž" }, { "input": "oratory", "output": "â •â —â â žâ •â —â ½" }, { "input": "oratory's", "output": "â •â —â â žâ •⠗⠽⠄⠎" }, { "input": "orb", "output": "â •â —â ƒ" }, { "input": "orb's", "output": "⠕⠗⠃⠄⠎" }, { "input": "orbicular", "output": "⠕⠗⠃⠊⠉⠥⠇⠜" }, { "input": "orbit", "output": "⠕⠗⠃⠊⠞" }, { "input": "orbit's", "output": "⠕⠗⠃⠊⠞⠄⠎" }, { "input": "orbital", "output": "⠕⠗⠃⠊⠞â â ‡" }, { "input": "orbital's", "output": "⠕⠗⠃⠊⠞â â ‡â „â Ž" }, { "input": "orbitals", "output": "⠕⠗⠃⠊⠞â â ‡â Ž" }, { "input": "orbited", "output": "⠕⠗⠃⠊⠞⠫" }, { "input": "orbiter", "output": "⠕⠗⠃⠊⠞⠻" }, { "input": "orbiter's", "output": "⠕⠗⠃⠊⠞⠻⠄⠎" }, { "input": "orbiters", "output": "⠕⠗⠃⠊⠞⠻⠎" }, { "input": "orbiting", "output": "⠕⠗⠃⠊⠞⠌" }, { "input": "orbits", "output": "⠕⠗⠃⠊⠞⠎" }, { "input": "orbs", "output": "⠕⠗⠃⠎" }, { "input": "orchard", "output": "⠕⠗⠡⠜⠙" }, { "input": "orchard's", "output": "⠕⠗⠡⠜⠙⠄⠎" }, { "input": "orchards", "output": "⠕⠗⠡⠜⠙⠎" }, { "input": "orchestra", "output": "⠕⠗⠡⠑⠌⠗â " }, { "input": "orchestra's", "output": "⠕⠗⠡⠑⠌⠗â â „â Ž" }, { "input": "orchestral", "output": "⠕⠗⠡⠑⠌⠗â â ‡" }, { "input": "orchestras", "output": "⠕⠗⠡⠑⠌⠗â â Ž" }, { "input": "orchestrate", "output": "⠕⠗⠡⠑⠌⠗â â žâ ‘" }, { "input": "orchestrated", "output": "⠕⠗⠡⠑⠌⠗â â žâ «" }, { "input": "orchestrates", "output": "⠕⠗⠡⠑⠌⠗â â žâ ‘â Ž" }, { "input": "orchestrating", "output": "⠕⠗⠡⠑⠌⠗â â žâ Œ" }, { "input": "orchestration", "output": "⠕⠗⠡⠑⠌⠗⠠â " }, { "input": "orchestration's", "output": "⠕⠗⠡⠑⠌⠗⠠â â „â Ž" }, { "input": "orchestrations", "output": "⠕⠗⠡⠑⠌⠗⠠â â Ž" }, { "input": "orchid", "output": "â •â —â ¡â Šâ ™" }, { "input": "orchid's", "output": "⠕⠗⠡⠊⠙⠄⠎" }, { "input": "orchids", "output": "⠕⠗⠡⠊⠙⠎" }, { "input": "ordain", "output": "â •â —â ™â â ”" }, { "input": "ordained", "output": "â •â —â ™â â ”â «" }, { "input": "ordaining", "output": "â •â —â ™â â ”â Œ" }, { "input": "ordainment", "output": "â •â —â ™â â ”â °â ž" }, { "input": "ordainment's", "output": "â •â —â ™â â ”â °â žâ „â Ž" }, { "input": "ordains", "output": "â •â —â ™â â ”â Ž" }, { "input": "ordeal", "output": "⠕⠗⠙⠂⠇" }, { "input": "ordeal's", "output": "⠕⠗⠙⠂⠇⠄⠎" }, { "input": "ordeals", "output": "⠕⠗⠙⠂⠇⠎" }, { "input": "order", "output": "⠕⠗⠙⠻" }, { "input": "order's", "output": "⠕⠗⠙⠻⠄⠎" }, { "input": "ordered", "output": "⠕⠗⠙⠻⠫" }, { "input": "ordering", "output": "⠕⠗⠙⠻⠌" }, { "input": "orderings", "output": "⠕⠗⠙⠻⠌⠎" }, { "input": "orderlies", "output": "⠕⠗⠙⠻⠇⠊⠑⠎" }, { "input": "orderliness", "output": "⠕⠗⠙⠻⠇⠊⠰⠎" }, { "input": "orderliness's", "output": "⠕⠗⠙⠻⠇⠊⠰⠎⠄⠎" }, { "input": "orderly", "output": "⠕⠗⠙⠻⠇⠽" }, { "input": "orderly's", "output": "⠕⠗⠙⠻⠇⠽⠄⠎" }, { "input": "orders", "output": "⠕⠗⠙⠻⠎" }, { "input": "ordinal", "output": "⠕⠗⠙⠔â â ‡" }, { "input": "ordinal's", "output": "⠕⠗⠙⠔â â ‡â „â Ž" }, { "input": "ordinals", "output": "⠕⠗⠙⠔â â ‡â Ž" }, { "input": "ordinance", "output": "⠕⠗⠙⠔⠨⠑" }, { "input": "ordinance's", "output": "⠕⠗⠙⠔⠨⠑⠄⠎" }, { "input": "ordinances", "output": "⠕⠗⠙⠔⠨⠑⠎" }, { "input": "ordinaries", "output": "⠕⠗⠙⠔⠜⠊⠑⠎" }, { "input": "ordinarily", "output": "⠕⠗⠙⠔⠜⠊⠇⠽" }, { "input": "ordinariness", "output": "⠕⠗⠙⠔⠜⠊⠰⠎" }, { "input": "ordinariness's", "output": "⠕⠗⠙⠔⠜⠊⠰⠎⠄⠎" }, { "input": "ordinary", "output": "⠕⠗⠙⠔⠜⠽" }, { "input": "ordinary's", "output": "⠕⠗⠙⠔⠜⠽⠄⠎" }, { "input": "ordinate", "output": "⠕⠗⠙⠔â â žâ ‘" }, { "input": "ordinate's", "output": "⠕⠗⠙⠔â â žâ ‘â „â Ž" }, { "input": "ordinates", "output": "⠕⠗⠙⠔â â žâ ‘â Ž" }, { "input": "ordination", "output": "⠕⠗⠙⠔⠠â " }, { "input": "ordination's", "output": "⠕⠗⠙⠔⠠â â „â Ž" }, { "input": "ordinations", "output": "⠕⠗⠙⠔⠠â â Ž" }, { "input": "ordnance", "output": "â •â —â ™â â ¨â ‘" }, { "input": "ordnance's", "output": "â •â —â ™â â ¨â ‘â „â Ž" }, { "input": "ordure", "output": "⠕⠗⠙⠥⠗⠑" }, { "input": "ordure's", "output": "⠕⠗⠙⠥⠗⠑⠄⠎" }, { "input": "ore", "output": "â •â —â ‘" }, { "input": "ore's", "output": "â •â —â ‘â „â Ž" }, { "input": "oregano", "output": "â •â —â ‘â ›â â â •" }, { "input": "oregano's", "output": "â •â —â ‘â ›â â â •â „â Ž" }, { "input": "ores", "output": "â •â —â ‘â Ž" }, { "input": "organ", "output": "â •â —â ›â â " }, { "input": "organ's", "output": "â •â —â ›â â â „â Ž" }, { "input": "organdy", "output": "⠕⠗⠛⠯⠽" }, { "input": "organdy's", "output": "⠕⠗⠛⠯⠽⠄⠎" }, { "input": "organelle", "output": "â •â —â ›â â â ‘⠇⠇⠑" }, { "input": "organelle's", "output": "â •â —â ›â â â ‘⠇⠇⠑⠄⠎" }, { "input": "organelles", "output": "â •â —â ›â â â ‘⠇⠇⠑⠎" }, { "input": "organic", "output": "â •â —â ›â â â Šâ ‰" }, { "input": "organic's", "output": "â •â —â ›â â â Šâ ‰â „â Ž" }, { "input": "organically", "output": "â •â —â ›â â â Šâ ‰â  â ½" }, { "input": "organics", "output": "â •â —â ›â â â Šâ ‰â Ž" }, { "input": "organism", "output": "â •â —â ›â â â Šâ Žâ " }, { "input": "organism's", "output": "â •â —â ›â â â Šâ Žâ â „â Ž" }, { "input": "organismic", "output": "â •â —â ›â â â Šâ Žâ â Šâ ‰" }, { "input": "organisms", "output": "â •â —â ›â â â Šâ Žâ â Ž" }, { "input": "organist", "output": "â •â —â ›â â â Šâ Œ" }, { "input": "organist's", "output": "â •â —â ›â â â Šâ Œâ „â Ž" }, { "input": "organists", "output": "â •â —â ›â â â Šâ Œâ Ž" }, { "input": "organization", "output": "â •â —â ›â â â Šâ µâ  â " }, { "input": "organization's", "output": "â •â —â ›â â â Šâ µâ  â â „â Ž" }, { "input": "organizational", "output": "â •â —â ›â â â Šâ µâ  â â â ‡" }, { "input": "organizationally", "output": "â •â —â ›â â â Šâ µâ  â â  â ½" }, { "input": "organizations", "output": "â •â —â ›â â â Šâ µâ  â â Ž" }, { "input": "organize", "output": "â •â —â ›â â â Šâ µâ ‘" }, { "input": "organized", "output": "â •â —â ›â â â Šâ µâ «" }, { "input": "organizer", "output": "â •â —â ›â â â Šâ µâ »" }, { "input": "organizer's", "output": "â •â —â ›â â â Šâ µâ »â „â Ž" }, { "input": "organizers", "output": "â •â —â ›â â â Šâ µâ »â Ž" }, { "input": "organizes", "output": "â •â —â ›â â â Šâ µâ ‘â Ž" }, { "input": "organizing", "output": "â •â —â ›â â â Šâ µâ Œ" }, { "input": "organs", "output": "â •â —â ›â â â Ž" }, { "input": "organza", "output": "â •â —â ›â â â µâ " }, { "input": "organza's", "output": "â •â —â ›â â â µâ â „â Ž" }, { "input": "orgasm", "output": "â •â —â ›â â Žâ " }, { "input": "orgasm's", "output": "â •â —â ›â â Žâ â „â Ž" }, { "input": "orgasmic", "output": "â •â —â ›â â Žâ â Šâ ‰" }, { "input": "orgasms", "output": "â •â —â ›â â Žâ â Ž" }, { "input": "orgiastic", "output": "⠕⠗⠛⠊â â Œâ Šâ ‰" }, { "input": "orgies", "output": "⠕⠗⠛⠊⠑⠎" }, { "input": "orgy", "output": "⠕⠗⠛⠽" }, { "input": "orgy's", "output": "⠕⠗⠛⠽⠄⠎" }, { "input": "oriel", "output": "â •â —â Šâ ‘â ‡" }, { "input": "oriel's", "output": "⠕⠗⠊⠑⠇⠄⠎" }, { "input": "oriels", "output": "⠕⠗⠊⠑⠇⠎" }, { "input": "orient", "output": "⠕⠗⠊⠢⠞" }, { "input": "orient's", "output": "⠕⠗⠊⠢⠞⠄⠎" }, { "input": "oriental", "output": "⠕⠗⠊⠢⠞â â ‡" }, { "input": "oriental's", "output": "⠕⠗⠊⠢⠞â â ‡â „â Ž" }, { "input": "orientals", "output": "⠕⠗⠊⠢⠞â â ‡â Ž" }, { "input": "orientate", "output": "⠕⠗⠊⠢⠞â â žâ ‘" }, { "input": "orientated", "output": "⠕⠗⠊⠢⠞â â žâ «" }, { "input": "orientates", "output": "⠕⠗⠊⠢⠞â â žâ ‘â Ž" }, { "input": "orientating", "output": "⠕⠗⠊⠢⠞â â žâ Œ" }, { "input": "orientation", "output": "⠕⠗⠊⠢⠞⠠â " }, { "input": "orientation's", "output": "⠕⠗⠊⠢⠞⠠â â „â Ž" }, { "input": "orientations", "output": "⠕⠗⠊⠢⠞⠠â â Ž" }, { "input": "oriented", "output": "⠕⠗⠊⠢⠞⠫" }, { "input": "orienting", "output": "⠕⠗⠊⠢⠞⠌" }, { "input": "orients", "output": "⠕⠗⠊⠢⠞⠎" }, { "input": "orifice", "output": "⠕⠗⠊⠋⠊⠉⠑" }, { "input": "orifice's", "output": "⠕⠗⠊⠋⠊⠉⠑⠄⠎" }, { "input": "orifices", "output": "⠕⠗⠊⠋⠊⠉⠑⠎" }, { "input": "origami", "output": "â •â —â Šâ ›â â â Š" }, { "input": "origami's", "output": "â •â —â Šâ ›â â â Šâ „â Ž" }, { "input": "origin", "output": "⠕⠗⠊⠛⠔" }, { "input": "origin's", "output": "⠕⠗⠊⠛⠔⠄⠎" }, { "input": "original", "output": "⠕⠗⠊⠛⠔â â ‡" }, { "input": "original's", "output": "⠕⠗⠊⠛⠔â â ‡â „â Ž" }, { "input": "originality", "output": "⠕⠗⠊⠛⠔â â ‡â °â ½" }, { "input": "originality's", "output": "⠕⠗⠊⠛⠔â â ‡â °â ½â „â Ž" }, { "input": "originally", "output": "⠕⠗⠊⠛⠔⠠⠽" }, { "input": "originals", "output": "⠕⠗⠊⠛⠔â â ‡â Ž" }, { "input": "originate", "output": "⠕⠗⠊⠛⠔â â žâ ‘" }, { "input": "originated", "output": "⠕⠗⠊⠛⠔â â žâ «" }, { "input": "originates", "output": "⠕⠗⠊⠛⠔â â žâ ‘â Ž" }, { "input": "originating", "output": "⠕⠗⠊⠛⠔â â žâ Œ" }, { "input": "origination", "output": "⠕⠗⠊⠛⠔⠠â " }, { "input": "origination's", "output": "⠕⠗⠊⠛⠔⠠â â „â Ž" }, { "input": "originator", "output": "⠕⠗⠊⠛⠔â â žâ •â —" }, { "input": "originator's", "output": "⠕⠗⠊⠛⠔â â žâ •â —â „â Ž" }, { "input": "originators", "output": "⠕⠗⠊⠛⠔â â žâ •â —â Ž" }, { "input": "origins", "output": "⠕⠗⠊⠛⠔⠎" }, { "input": "oriole", "output": "⠕⠗⠊⠕⠇⠑" }, { "input": "oriole's", "output": "⠕⠗⠊⠕⠇⠑⠄⠎" }, { "input": "orioles", "output": "⠕⠗⠊⠕⠇⠑⠎" }, { "input": "orison", "output": "â •â —â Šâ Žâ •â " }, { "input": "orison's", "output": "â •â —â Šâ Žâ •â â „â Ž" }, { "input": "orisons", "output": "â •â —â Šâ Žâ •â â Ž" }, { "input": "ormolu", "output": "â •â —â â •⠇⠥" }, { "input": "ormolu's", "output": "â •â —â â •⠇⠥⠄⠎" }, { "input": "ornament", "output": "â •â —â â â °â ž" }, { "input": "ornament's", "output": "â •â —â â â °â žâ „â Ž" }, { "input": "ornamental", "output": "â •â —â â â °â žâ â ‡" }, { "input": "ornamentation", "output": "â •â —â â â °â žâ  â " }, { "input": "ornamentation's", "output": "â •â —â â â °â žâ  â â „â Ž" }, { "input": "ornamented", "output": "â •â —â â â °â žâ «" }, { "input": "ornamenting", "output": "â •â —â â â °â žâ Œ" }, { "input": "ornaments", "output": "â •â —â â â °â žâ Ž" }, { "input": "ornate", "output": "â •â —â â â žâ ‘" }, { "input": "ornately", "output": "â •â —â â â žâ ‘⠇⠽" }, { "input": "ornateness", "output": "â •â —â â â žâ ‘â °â Ž" }, { "input": "ornateness's", "output": "â •â —â â â žâ ‘â °â Žâ „â Ž" }, { "input": "ornerier", "output": "â •â —â â »â Šâ »" }, { "input": "orneriest", "output": "â •â —â â »â Šâ ‘â Œ" }, { "input": "orneriness", "output": "â •â —â â »â Šâ °â Ž" }, { "input": "orneriness's", "output": "â •â —â â »â Šâ °â Žâ „â Ž" }, { "input": "ornery", "output": "â •â —â â »â ½" }, { "input": "ornithologist", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠊⠌" }, { "input": "ornithologist's", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ornithologists", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "ornithology", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠽" }, { "input": "ornithology's", "output": "â •â —â â Šâ ¹â •⠇⠕⠛⠽⠄⠎" }, { "input": "orotund", "output": "â •â —â •â žâ ¥â â ™" }, { "input": "orotundities", "output": "â •â —â •â žâ ¥â â ™â Šâ žâ Šâ ‘â Ž" }, { "input": "orotundity", "output": "â •â —â •â žâ ¥â â ™â °â ½" }, { "input": "orotundity's", "output": "â •â —â •â žâ ¥â â ™â °â ½â „â Ž" }, { "input": "orphan", "output": "â •â —â â “â â " }, { "input": "orphan's", "output": "â •â —â â “â â â „â Ž" }, { "input": "orphanage", "output": "â •â —â â “â â â â ›â ‘" }, { "input": "orphanage's", "output": "â •â —â â “â â â â ›â ‘â „â Ž" }, { "input": "orphanages", "output": "â •â —â â “â â â â ›â ‘â Ž" }, { "input": "orphaned", "output": "â •â —â â “â â â «" }, { "input": "orphaning", "output": "â •â —â â “â â â Œ" }, { "input": "orphans", "output": "â •â —â â “â â â Ž" }, { "input": "orris", "output": "â •â —â —â Šâ Ž" }, { "input": "orris's", "output": "â •â —â —â Šâ Žâ „â Ž" }, { "input": "orrises", "output": "â •â —â —â Šâ Žâ ‘â Ž" }, { "input": "orthodontia", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ " }, { "input": "orthodontia's", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ â „â Ž" }, { "input": "orthodontic", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ ‰" }, { "input": "orthodontics", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ ‰â Ž" }, { "input": "orthodontics's", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "orthodontist", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ Œ" }, { "input": "orthodontist's", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ Œâ „â Ž" }, { "input": "orthodontists", "output": "⠕⠗⠹⠕⠙⠕â â žâ Šâ Œâ Ž" }, { "input": "orthodox", "output": "⠕⠗⠹⠕⠙⠕⠭" }, { "input": "orthodoxies", "output": "⠕⠗⠹⠕⠙⠕⠭⠊⠑⠎" }, { "input": "orthodoxy", "output": "⠕⠗⠹⠕⠙⠕⠭⠽" }, { "input": "orthodoxy's", "output": "⠕⠗⠹⠕⠙⠕⠭⠽⠄⠎" }, { "input": "orthogonal", "output": "⠕⠗⠹⠕⠛⠕â â â ‡" }, { "input": "orthogonality", "output": "⠕⠗⠹⠕⠛⠕â â â ‡â °â ½" }, { "input": "orthographic", "output": "⠕⠗⠹⠕⠛⠗â â â “â Šâ ‰" }, { "input": "orthographies", "output": "⠕⠗⠹⠕⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "orthography", "output": "⠕⠗⠹⠕⠛⠗â â â “â ½" }, { "input": "orthography's", "output": "⠕⠗⠹⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "orthopedic", "output": "⠕⠗⠹⠕â â «â Šâ ‰" }, { "input": "orthopedics", "output": "⠕⠗⠹⠕â â «â Šâ ‰â Ž" }, { "input": "orthopedics's", "output": "⠕⠗⠹⠕â â «â Šâ ‰â Žâ „â Ž" }, { "input": "orthopedist", "output": "⠕⠗⠹⠕â â «â Šâ Œ" }, { "input": "orthopedist's", "output": "⠕⠗⠹⠕â â «â Šâ Œâ „â Ž" }, { "input": "orthopedists", "output": "⠕⠗⠹⠕â â «â Šâ Œâ Ž" }, { "input": "orzo", "output": "⠕⠗⠵⠕" }, { "input": "orzo's", "output": "⠕⠗⠵⠕⠄⠎" }, { "input": "oscillate", "output": "⠕⠎⠉⠊⠇⠇â â žâ ‘" }, { "input": "oscillated", "output": "⠕⠎⠉⠊⠇⠇â â žâ «" }, { "input": "oscillates", "output": "⠕⠎⠉⠊⠇⠇â â žâ ‘â Ž" }, { "input": "oscillating", "output": "⠕⠎⠉⠊⠇⠇â â žâ Œ" }, { "input": "oscillation", "output": "⠕⠎⠉⠊⠇⠇⠠â " }, { "input": "oscillation's", "output": "⠕⠎⠉⠊⠇⠇⠠â â „â Ž" }, { "input": "oscillations", "output": "⠕⠎⠉⠊⠇⠇⠠â â Ž" }, { "input": "oscillator", "output": "⠕⠎⠉⠊⠇⠇â â žâ •â —" }, { "input": "oscillator's", "output": "⠕⠎⠉⠊⠇⠇â â žâ •â —â „â Ž" }, { "input": "oscillators", "output": "⠕⠎⠉⠊⠇⠇â â žâ •â —â Ž" }, { "input": "oscillatory", "output": "⠕⠎⠉⠊⠇⠇â â žâ •â —â ½" }, { "input": "oscilloscope", "output": "⠕⠎⠉⠊⠇⠇⠕⠎⠉⠕â â ‘" }, { "input": "oscilloscope's", "output": "⠕⠎⠉⠊⠇⠇⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "oscilloscopes", "output": "⠕⠎⠉⠊⠇⠇⠕⠎⠉⠕â â ‘â Ž" }, { "input": "osculate", "output": "⠕⠎⠉⠥⠇â â žâ ‘" }, { "input": "osculated", "output": "⠕⠎⠉⠥⠇â â žâ «" }, { "input": "osculates", "output": "⠕⠎⠉⠥⠇â â žâ ‘â Ž" }, { "input": "osculating", "output": "⠕⠎⠉⠥⠇â â žâ Œ" }, { "input": "osculation", "output": "⠕⠎⠉⠥⠇⠠â " }, { "input": "osculation's", "output": "⠕⠎⠉⠥⠇⠠â â „â Ž" }, { "input": "osculations", "output": "⠕⠎⠉⠥⠇⠠â â Ž" }, { "input": "osier", "output": "â •â Žâ Šâ »" }, { "input": "osier's", "output": "⠕⠎⠊⠻⠄⠎" }, { "input": "osiers", "output": "⠕⠎⠊⠻⠎" }, { "input": "osmium", "output": "â •â Žâ â Šâ ¥â " }, { "input": "osmium's", "output": "â •â Žâ â Šâ ¥â â „â Ž" }, { "input": "osmosis", "output": "â •â Žâ â •â Žâ Šâ Ž" }, { "input": "osmosis's", "output": "â •â Žâ â •â Žâ Šâ Žâ „â Ž" }, { "input": "osmotic", "output": "â •â Žâ â •â žâ Šâ ‰" }, { "input": "osprey", "output": "â •â Žâ â —â ‘â ½" }, { "input": "osprey's", "output": "â •â Žâ â —⠑⠽⠄⠎" }, { "input": "ospreys", "output": "â •â Žâ â —⠑⠽⠎" }, { "input": "ossification", "output": "⠕⠎⠎⠊⠋⠊⠉⠠â " }, { "input": "ossification's", "output": "⠕⠎⠎⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "ossified", "output": "â •â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "ossifies", "output": "â •â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "ossify", "output": "â •â Žâ Žâ Šâ ‹â ½" }, { "input": "ossifying", "output": "⠕⠎⠎⠊⠋⠽⠌" }, { "input": "ostensible", "output": "⠕⠌⠢⠎⠊⠼" }, { "input": "ostensibly", "output": "⠕⠌⠢⠎⠊⠃⠇⠽" }, { "input": "ostentation", "output": "⠕⠌⠢⠞⠠â " }, { "input": "ostentation's", "output": "⠕⠌⠢⠞⠠â â „â Ž" }, { "input": "ostentatious", "output": "⠕⠌⠢⠞â â žâ Šâ ³â Ž" }, { "input": "ostentatiously", "output": "⠕⠌⠢⠞â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "osteoarthritis's", "output": "⠕⠌⠑⠕⠜⠹⠗⠊⠞⠊⠎⠄⠎" }, { "input": "osteopath", "output": "⠕⠌⠑⠕â â â ¹" }, { "input": "osteopath's", "output": "⠕⠌⠑⠕â â â ¹â „â Ž" }, { "input": "osteopathic", "output": "⠕⠌⠑⠕â â â ¹â Šâ ‰" }, { "input": "osteopaths", "output": "⠕⠌⠑⠕â â â ¹â Ž" }, { "input": "osteopathy", "output": "⠕⠌⠑⠕â â â ¹â ½" }, { "input": "osteopathy's", "output": "⠕⠌⠑⠕â â â ¹â ½â „â Ž" }, { "input": "osteoporosis", "output": "⠕⠌⠑⠕â â •â —â •â Žâ Šâ Ž" }, { "input": "osteoporosis's", "output": "⠕⠌⠑⠕â â •â —â •â Žâ Šâ Žâ „â Ž" }, { "input": "ostracism", "output": "⠕⠌⠗â â ‰â Šâ Žâ " }, { "input": "ostracism's", "output": "⠕⠌⠗â â ‰â Šâ Žâ â „â Ž" }, { "input": "ostracize", "output": "⠕⠌⠗â â ‰â Šâ µâ ‘" }, { "input": "ostracized", "output": "⠕⠌⠗â â ‰â Šâ µâ «" }, { "input": "ostracizes", "output": "⠕⠌⠗â â ‰â Šâ µâ ‘â Ž" }, { "input": "ostracizing", "output": "⠕⠌⠗â â ‰â Šâ µâ Œ" }, { "input": "ostrich", "output": "⠕⠌⠗⠊⠡" }, { "input": "ostrich's", "output": "⠕⠌⠗⠊⠡⠄⠎" }, { "input": "ostriches", "output": "⠕⠌⠗⠊⠡⠑⠎" }, { "input": "other", "output": "⠕⠮⠗" }, { "input": "others", "output": "⠕⠮⠗⠎" }, { "input": "otherwise", "output": "⠕⠮⠗⠺⠊⠎⠑" }, { "input": "otherworldly", "output": "⠕⠮⠗⠸⠺⠇⠽" }, { "input": "otiose", "output": "â •â žâ Šâ •â Žâ ‘" }, { "input": "otter", "output": "â •â žâ žâ »" }, { "input": "otter's", "output": "⠕⠞⠞⠻⠄⠎" }, { "input": "otters", "output": "⠕⠞⠞⠻⠎" }, { "input": "ottoman", "output": "â •â žâ žâ •â â â " }, { "input": "ottoman's", "output": "â •â žâ žâ •â â â â „â Ž" }, { "input": "ottomans", "output": "â •â žâ žâ •â â â â Ž" }, { "input": "oubliette", "output": "⠳⠃⠇⠊⠑⠞⠞⠑" }, { "input": "oubliette's", "output": "⠳⠃⠇⠊⠑⠞⠞⠑⠄⠎" }, { "input": "oubliettes", "output": "⠳⠃⠇⠊⠑⠞⠞⠑⠎" }, { "input": "ouch", "output": "⠳⠡" }, { "input": "ought", "output": "â â ³" }, { "input": "ounce", "output": "â ³â â ‰â ‘" }, { "input": "ounce's", "output": "â ³â â ‰â ‘â „â Ž" }, { "input": "ounces", "output": "â ³â â ‰â ‘â Ž" }, { "input": "our", "output": "⠳⠗" }, { "input": "ours", "output": "⠳⠗⠎" }, { "input": "ourselves", "output": "⠳⠗⠧⠎" }, { "input": "oust", "output": "⠳⠌" }, { "input": "ousted", "output": "⠳⠌⠫" }, { "input": "ouster", "output": "⠳⠌⠻" }, { "input": "ouster's", "output": "⠳⠌⠻⠄⠎" }, { "input": "ousters", "output": "⠳⠌⠻⠎" }, { "input": "ousting", "output": "⠳⠌⠌" }, { "input": "ousts", "output": "⠳⠌⠎" }, { "input": "out", "output": "â ³" }, { "input": "out's", "output": "⠳⠞⠄⠎" }, { "input": "outage", "output": "⠳⠞â â ›â ‘" }, { "input": "outage's", "output": "⠳⠞â â ›â ‘â „â Ž" }, { "input": "outages", "output": "⠳⠞â â ›â ‘â Ž" }, { "input": "outargue", "output": "⠳⠞⠜⠛⠥⠑" }, { "input": "outargued", "output": "⠳⠞⠜⠛⠥⠫" }, { "input": "outargues", "output": "⠳⠞⠜⠛⠥⠑⠎" }, { "input": "outarguing", "output": "⠳⠞⠜⠛⠥⠌" }, { "input": "outback", "output": "⠳⠞⠃â â ‰â …" }, { "input": "outback's", "output": "⠳⠞⠃â â ‰â …â „â Ž" }, { "input": "outbacks", "output": "⠳⠞⠃â â ‰â …â Ž" }, { "input": "outbalance", "output": "⠳⠞⠃â â ‡â ¨â ‘" }, { "input": "outbalanced", "output": "⠳⠞⠃â â ‡â ¨â ‘â ™" }, { "input": "outbalances", "output": "⠳⠞⠃â â ‡â ¨â ‘â Ž" }, { "input": "outbalancing", "output": "⠳⠞⠃â â ‡â â â ‰â Œ" }, { "input": "outbid", "output": "⠳⠞⠃⠊⠙" }, { "input": "outbidding", "output": "⠳⠞⠃⠊⠲⠌" }, { "input": "outbids", "output": "⠳⠞⠃⠊⠙⠎" }, { "input": "outboard's", "output": "⠳⠞⠃⠕⠜⠙⠄⠎" }, { "input": "outboards", "output": "⠳⠞⠃⠕⠜⠙⠎" }, { "input": "outboast", "output": "⠳⠞⠃⠕â â Œ" }, { "input": "outboasted", "output": "⠳⠞⠃⠕â â Œâ «" }, { "input": "outboasting", "output": "⠳⠞⠃⠕â â Œâ Œ" }, { "input": "outboasts", "output": "⠳⠞⠃⠕â â Œâ Ž" }, { "input": "outbound", "output": "⠳⠞⠃⠨⠙" }, { "input": "outbox", "output": "⠳⠞⠃⠕⠭" }, { "input": "outbox's", "output": "⠳⠞⠃⠕⠭⠄⠎" }, { "input": "outboxes", "output": "⠳⠞⠃⠕⠭⠑⠎" }, { "input": "outbreak", "output": "⠳⠞⠃⠗⠂⠅" }, { "input": "outbreak's", "output": "⠳⠞⠃⠗⠂⠅⠄⠎" }, { "input": "outbreaks", "output": "⠳⠞⠃⠗⠂⠅⠎" }, { "input": "outbuilding", "output": "⠳⠞⠃⠥⠊⠇⠙⠌" }, { "input": "outbuilding's", "output": "⠳⠞⠃⠥⠊⠇⠙⠌⠄⠎" }, { "input": "outbuildings", "output": "⠳⠞⠃⠥⠊⠇⠙⠌⠎" }, { "input": "outburst", "output": "⠳⠞⠃⠥⠗⠌" }, { "input": "outburst's", "output": "⠳⠞⠃⠥⠗⠌⠄⠎" }, { "input": "outbursts", "output": "⠳⠞⠃⠥⠗⠌⠎" }, { "input": "outcast", "output": "⠳⠞⠉â â Œ" }, { "input": "outcast's", "output": "⠳⠞⠉â â Œâ „â Ž" }, { "input": "outcasts", "output": "⠳⠞⠉â â Œâ Ž" }, { "input": "outclass", "output": "⠳⠞⠉⠇â â Žâ Ž" }, { "input": "outclassed", "output": "⠳⠞⠉⠇â â Žâ Žâ «" }, { "input": "outclasses", "output": "⠳⠞⠉⠇â â Žâ Žâ ‘â Ž" }, { "input": "outclassing", "output": "⠳⠞⠉⠇â â Žâ Žâ Œ" }, { "input": "outcome", "output": "⠳⠞⠉⠕â â ‘" }, { "input": "outcome's", "output": "⠳⠞⠉⠕â â ‘â „â Ž" }, { "input": "outcomes", "output": "⠳⠞⠉⠕â â ‘â Ž" }, { "input": "outcries", "output": "⠳⠞⠉⠗⠊⠑⠎" }, { "input": "outcrop", "output": "⠳⠞⠉⠗⠕â " }, { "input": "outcrop's", "output": "⠳⠞⠉⠗⠕â â „â Ž" }, { "input": "outcropped", "output": "⠳⠞⠉⠗⠕â â â «" }, { "input": "outcropping", "output": "⠳⠞⠉⠗⠕â â â Œ" }, { "input": "outcropping's", "output": "⠳⠞⠉⠗⠕â â â Œâ „â Ž" }, { "input": "outcroppings", "output": "⠳⠞⠉⠗⠕â â â Œâ Ž" }, { "input": "outcrops", "output": "⠳⠞⠉⠗⠕â â Ž" }, { "input": "outcry", "output": "⠳⠞⠉⠗⠽" }, { "input": "outcry's", "output": "⠳⠞⠉⠗⠽⠄⠎" }, { "input": "outdated", "output": "⠳⠞⠙â â žâ «" }, { "input": "outdid", "output": "⠳⠞⠙⠊⠙" }, { "input": "outdistance", "output": "⠳⠞⠙⠊⠎⠞⠨⠑" }, { "input": "outdistanced", "output": "⠳⠞⠙⠊⠎⠞⠨⠑⠙" }, { "input": "outdistances", "output": "⠳⠞⠙⠊⠎⠞⠨⠑⠎" }, { "input": "outdistancing", "output": "⠳⠞⠙⠊⠎⠞â â â ‰â Œ" }, { "input": "outdo", "output": "⠳⠞⠙⠕" }, { "input": "outdoes", "output": "⠳⠞⠙⠕⠑⠎" }, { "input": "outdoing", "output": "⠳⠞⠙⠕⠌" }, { "input": "outdone", "output": "⠳⠞⠙â â •" }, { "input": "outdoor", "output": "⠳⠞⠙⠕⠕⠗" }, { "input": "outdoors", "output": "⠳⠞⠙⠕⠕⠗⠎" }, { "input": "outdoors's", "output": "⠳⠞⠙⠕⠕⠗⠎⠄⠎" }, { "input": "outdoorsy", "output": "⠳⠞⠙⠕⠕⠗⠎⠽" }, { "input": "outdraw", "output": "⠳⠞⠙⠗â â º" }, { "input": "outdrawing", "output": "⠳⠞⠙⠗â â ºâ Œ" }, { "input": "outdrawn", "output": "⠳⠞⠙⠗â â ºâ " }, { "input": "outdraws", "output": "⠳⠞⠙⠗â â ºâ Ž" }, { "input": "outdrew", "output": "⠳⠞⠙⠗⠑⠺" }, { "input": "outed", "output": "⠳⠞⠫" }, { "input": "outer", "output": "⠳⠞⠻" }, { "input": "outermost", "output": "⠳⠞⠻â â •â Œ" }, { "input": "outerwear's", "output": "⠳⠞⠻⠺⠑⠜⠄⠎" }, { "input": "outfield", "output": "⠳⠞⠋⠊⠑⠇⠙" }, { "input": "outfield's", "output": "⠳⠞⠋⠊⠑⠇⠙⠄⠎" }, { "input": "outfielder", "output": "⠳⠞⠋⠊⠑⠇⠙⠻" }, { "input": "outfielder's", "output": "⠳⠞⠋⠊⠑⠇⠙⠻⠄⠎" }, { "input": "outfielders", "output": "⠳⠞⠋⠊⠑⠇⠙⠻⠎" }, { "input": "outfields", "output": "⠳⠞⠋⠊⠑⠇⠙⠎" }, { "input": "outfight", "output": "⠳⠞⠋⠊⠣⠞" }, { "input": "outfighting", "output": "⠳⠞⠋⠊⠣⠞⠌" }, { "input": "outfights", "output": "⠳⠞⠋⠊⠣⠞⠎" }, { "input": "outfit", "output": "⠳⠞⠋⠊⠞" }, { "input": "outfit's", "output": "⠳⠞⠋⠊⠞⠄⠎" }, { "input": "outfits", "output": "⠳⠞⠋⠊⠞⠎" }, { "input": "outfitted", "output": "⠳⠞⠋⠊⠞⠞⠫" }, { "input": "outfitter", "output": "⠳⠞⠋⠊⠞⠞⠻" }, { "input": "outfitter's", "output": "⠳⠞⠋⠊⠞⠞⠻⠄⠎" }, { "input": "outfitters", "output": "⠳⠞⠋⠊⠞⠞⠻⠎" }, { "input": "outfitting", "output": "⠳⠞⠋⠊⠞⠞⠌" }, { "input": "outflank", "output": "⠳⠞⠋⠇â â â …" }, { "input": "outflanked", "output": "⠳⠞⠋⠇â â â …â «" }, { "input": "outflanking", "output": "⠳⠞⠋⠇â â â …â Œ" }, { "input": "outflanks", "output": "⠳⠞⠋⠇â â â …â Ž" }, { "input": "outfought", "output": "⠳⠞⠋â â ³" }, { "input": "outfox", "output": "⠳⠞⠋⠕⠭" }, { "input": "outfoxed", "output": "⠳⠞⠋⠕⠭⠫" }, { "input": "outfoxes", "output": "⠳⠞⠋⠕⠭⠑⠎" }, { "input": "outfoxing", "output": "⠳⠞⠋⠕⠭⠌" }, { "input": "outgo", "output": "⠳⠞⠛⠕" }, { "input": "outgo's", "output": "⠳⠞⠛⠕⠄⠎" }, { "input": "outgoes", "output": "⠳⠞⠛⠕⠑⠎" }, { "input": "outgoing", "output": "⠳⠞⠛⠕⠌" }, { "input": "outgrew", "output": "⠳⠞⠛⠗⠑⠺" }, { "input": "outgrow", "output": "⠳⠞⠛⠗⠪" }, { "input": "outgrowing", "output": "⠳⠞⠛⠗⠪⠌" }, { "input": "outgrown", "output": "⠳⠞⠛⠗⠪â " }, { "input": "outgrows", "output": "⠳⠞⠛⠗⠪⠎" }, { "input": "outgrowth", "output": "⠳⠞⠛⠗⠪⠹" }, { "input": "outgrowth's", "output": "⠳⠞⠛⠗⠪⠹⠄⠎" }, { "input": "outgrowths", "output": "⠳⠞⠛⠗⠪⠹⠎" }, { "input": "outhit", "output": "⠳⠞⠓⠊⠞" }, { "input": "outhits", "output": "⠳⠞⠓⠊⠞⠎" }, { "input": "outhitting", "output": "⠳⠞⠓⠊⠞⠞⠌" }, { "input": "outhouse", "output": "⠳⠞⠓⠳⠎⠑" }, { "input": "outhouse's", "output": "⠳⠞⠓⠳⠎⠑⠄⠎" }, { "input": "outhouses", "output": "⠳⠞⠓⠳⠎⠑⠎" }, { "input": "outing", "output": "⠳⠞⠌" }, { "input": "outing's", "output": "⠳⠞⠌⠄⠎" }, { "input": "outings", "output": "⠳⠞⠌⠎" }, { "input": "outlaid", "output": "⠳⠞⠇â â Šâ ™" }, { "input": "outlandish", "output": "⠳⠞⠇⠯⠊⠩" }, { "input": "outlandishly", "output": "⠳⠞⠇⠯⠊⠩⠇⠽" }, { "input": "outlandishness's", "output": "⠳⠞⠇⠯⠊⠩⠰⠎⠄⠎" }, { "input": "outlast", "output": "⠳⠞⠇â â Œ" }, { "input": "outlasted", "output": "⠳⠞⠇â â Œâ «" }, { "input": "outlasting", "output": "⠳⠞⠇â â Œâ Œ" }, { "input": "outlasts", "output": "⠳⠞⠇â â Œâ Ž" }, { "input": "outlaw", "output": "⠳⠞⠇â â º" }, { "input": "outlaw's", "output": "⠳⠞⠇â â ºâ „â Ž" }, { "input": "outlawed", "output": "⠳⠞⠇â â ºâ «" }, { "input": "outlawing", "output": "⠳⠞⠇â â ºâ Œ" }, { "input": "outlaws", "output": "⠳⠞⠇â â ºâ Ž" }, { "input": "outlay", "output": "⠳⠞⠇â â ½" }, { "input": "outlay's", "output": "⠳⠞⠇â â ½â „â Ž" }, { "input": "outlaying", "output": "⠳⠞⠇â â ½â Œ" }, { "input": "outlays", "output": "⠳⠞⠇â â ½â Ž" }, { "input": "outlet", "output": "⠳⠞⠇⠑⠞" }, { "input": "outlet's", "output": "⠳⠞⠇⠑⠞⠄⠎" }, { "input": "outlets", "output": "⠳⠞⠇⠑⠞⠎" }, { "input": "outline", "output": "⠳⠞⠇⠔⠑" }, { "input": "outline's", "output": "⠳⠞⠇⠔⠑⠄⠎" }, { "input": "outlined", "output": "⠳⠞⠇⠔⠫" }, { "input": "outlines", "output": "⠳⠞⠇⠔⠑⠎" }, { "input": "outlining", "output": "⠳⠞⠇⠔⠌" }, { "input": "outlive", "output": "⠳⠞⠇⠊⠧⠑" }, { "input": "outlived", "output": "⠳⠞⠇⠊⠧⠫" }, { "input": "outlives", "output": "⠳⠞⠇⠊⠧⠑⠎" }, { "input": "outliving", "output": "⠳⠞⠇⠊⠧⠌" }, { "input": "outlook", "output": "⠳⠞⠇⠕⠕⠅" }, { "input": "outlook's", "output": "⠳⠞⠇⠕⠕⠅⠄⠎" }, { "input": "outlooks", "output": "⠳⠞⠇⠕⠕⠅⠎" }, { "input": "outlying", "output": "⠳⠞⠇⠽⠌" }, { "input": "outmaneuver", "output": "⠳⠞â â â â ‘⠥⠧⠻" }, { "input": "outmaneuvered", "output": "⠳⠞â â â â ‘⠥⠧⠻⠫" }, { "input": "outmaneuvering", "output": "⠳⠞â â â â ‘⠥⠧⠻⠌" }, { "input": "outmaneuvers", "output": "⠳⠞â â â â ‘⠥⠧⠻⠎" }, { "input": "outmatch", "output": "⠳⠞â â â žâ ¡" }, { "input": "outmatched", "output": "⠳⠞â â â žâ ¡â «" }, { "input": "outmatches", "output": "⠳⠞â â â žâ ¡â ‘â Ž" }, { "input": "outmatching", "output": "⠳⠞â â â žâ ¡â Œ" }, { "input": "outmoded", "output": "⠳⠞â â •⠙⠫" }, { "input": "outnumber", "output": "⠳⠞â â ¥â â ƒâ »" }, { "input": "outnumbered", "output": "⠳⠞â â ¥â â ƒâ »â «" }, { "input": "outnumbering", "output": "⠳⠞â â ¥â â ƒâ »â Œ" }, { "input": "outnumbers", "output": "⠳⠞â â ¥â â ƒâ »â Ž" }, { "input": "outpatient", "output": "⠳⠞â â â žâ Šâ ¢â ž" }, { "input": "outpatient's", "output": "⠳⠞â â â žâ Šâ ¢â žâ „â Ž" }, { "input": "outpatients", "output": "⠳⠞â â â žâ Šâ ¢â žâ Ž" }, { "input": "outperform", "output": "⠳⠞â â »â ¿â " }, { "input": "outperformed", "output": "⠳⠞â â »â ¿â â «" }, { "input": "outperforming", "output": "⠳⠞â â »â ¿â â Œ" }, { "input": "outperforms", "output": "⠳⠞â â »â ¿â â Ž" }, { "input": "outplace", "output": "⠳⠞â â ‡â â ‰â ‘" }, { "input": "outplacement", "output": "⠳⠞â â ‡â â ‰â ‘â °â ž" }, { "input": "outplacement's", "output": "⠳⠞â â ‡â â ‰â ‘â °â žâ „â Ž" }, { "input": "outplay", "output": "⠳⠞â â ‡â â ½" }, { "input": "outplayed", "output": "⠳⠞â â ‡â â ½â «" }, { "input": "outplaying", "output": "⠳⠞â â ‡â â ½â Œ" }, { "input": "outplays", "output": "⠳⠞â â ‡â â ½â Ž" }, { "input": "outpost", "output": "⠳⠞â â •â Œ" }, { "input": "outpost's", "output": "⠳⠞â â •⠌⠄⠎" }, { "input": "outposts", "output": "⠳⠞â â •⠌⠎" }, { "input": "outpouring", "output": "⠳⠞â â ³â —â Œ" }, { "input": "outpouring's", "output": "⠳⠞â â ³â —⠌⠄⠎" }, { "input": "outpourings", "output": "⠳⠞â â ³â —⠌⠎" }, { "input": "outproduce", "output": "⠳⠞â â —⠕⠙⠥⠉⠑" }, { "input": "outproduced", "output": "⠳⠞â â —⠕⠙⠥⠉⠫" }, { "input": "outproduces", "output": "⠳⠞â â —⠕⠙⠥⠉⠑⠎" }, { "input": "outproducing", "output": "⠳⠞â â —⠕⠙⠥⠉⠌" }, { "input": "output", "output": "⠳⠞â â ¥â ž" }, { "input": "output's", "output": "⠳⠞â â ¥â žâ „â Ž" }, { "input": "outputs", "output": "⠳⠞â â ¥â žâ Ž" }, { "input": "outputted", "output": "⠳⠞â â ¥â žâ žâ «" }, { "input": "outputting", "output": "⠳⠞â â ¥â žâ žâ Œ" }, { "input": "outrace", "output": "⠳⠞⠗â â ‰â ‘" }, { "input": "outraced", "output": "⠳⠞⠗â â ‰â «" }, { "input": "outraces", "output": "⠳⠞⠗â â ‰â ‘â Ž" }, { "input": "outracing", "output": "⠳⠞⠗â â ‰â Œ" }, { "input": "outrage", "output": "⠳⠞⠗â â ›â ‘" }, { "input": "outrage's", "output": "⠳⠞⠗â â ›â ‘â „â Ž" }, { "input": "outraged", "output": "⠳⠞⠗â â ›â «" }, { "input": "outrageous", "output": "⠳⠞⠗â â ›â ‘⠳⠎" }, { "input": "outrageously", "output": "⠳⠞⠗â â ›â ‘⠳⠎⠇⠽" }, { "input": "outrages", "output": "⠳⠞⠗â â ›â ‘â Ž" }, { "input": "outraging", "output": "⠳⠞⠗â â ›â Œ" }, { "input": "outran", "output": "⠳⠞⠗â â " }, { "input": "outrank", "output": "⠳⠞⠗â â â …" }, { "input": "outranked", "output": "⠳⠞⠗â â â …â «" }, { "input": "outranking", "output": "⠳⠞⠗â â â …â Œ" }, { "input": "outranks", "output": "⠳⠞⠗â â â …â Ž" }, { "input": "outreach", "output": "⠳⠞⠗⠂⠡" }, { "input": "outreach's", "output": "⠳⠞⠗⠂⠡⠄⠎" }, { "input": "outreached", "output": "⠳⠞⠗⠂⠡⠫" }, { "input": "outreaches", "output": "⠳⠞⠗⠂⠡⠑⠎" }, { "input": "outreaching", "output": "⠳⠞⠗⠂⠡⠌" }, { "input": "outrider", "output": "⠳⠞⠗⠊⠙⠻" }, { "input": "outrider's", "output": "⠳⠞⠗⠊⠙⠻⠄⠎" }, { "input": "outriders", "output": "⠳⠞⠗⠊⠙⠻⠎" }, { "input": "outrigger", "output": "⠳⠞⠗⠊⠶⠻" }, { "input": "outrigger's", "output": "⠳⠞⠗⠊⠶⠻⠄⠎" }, { "input": "outriggers", "output": "⠳⠞⠗⠊⠶⠻⠎" }, { "input": "outright", "output": "⠳⠞â â —" }, { "input": "outrun", "output": "⠳⠞⠗⠥â " }, { "input": "outrunning", "output": "⠳⠞⠗⠥â â â Œ" }, { "input": "outruns", "output": "⠳⠞⠗⠥â â Ž" }, { "input": "outs", "output": "⠳⠞⠎" }, { "input": "outscore", "output": "⠳⠞⠎⠉⠕⠗⠑" }, { "input": "outscored", "output": "⠳⠞⠎⠉⠕⠗⠫" }, { "input": "outscores", "output": "⠳⠞⠎⠉⠕⠗⠑⠎" }, { "input": "outscoring", "output": "⠳⠞⠎⠉⠕⠗⠌" }, { "input": "outsell", "output": "⠳⠞⠎⠑⠇⠇" }, { "input": "outselling", "output": "⠳⠞⠎⠑⠇⠇⠌" }, { "input": "outsells", "output": "⠳⠞⠎⠑⠇⠇⠎" }, { "input": "outset", "output": "⠳⠞⠎⠑⠞" }, { "input": "outset's", "output": "⠳⠞⠎⠑⠞⠄⠎" }, { "input": "outsets", "output": "⠳⠞⠎⠑⠞⠎" }, { "input": "outshine", "output": "⠳⠞⠩⠔⠑" }, { "input": "outshines", "output": "⠳⠞⠩⠔⠑⠎" }, { "input": "outshining", "output": "⠳⠞⠩⠔⠌" }, { "input": "outshone", "output": "⠳⠞⠩â â •" }, { "input": "outshout", "output": "⠳⠞⠩⠳⠞" }, { "input": "outshouted", "output": "⠳⠞⠩⠳⠞⠫" }, { "input": "outshouting", "output": "⠳⠞⠩⠳⠞⠌" }, { "input": "outshouts", "output": "⠳⠞⠩⠳⠞⠎" }, { "input": "outside", "output": "⠳⠞⠎⠊⠙⠑" }, { "input": "outside's", "output": "⠳⠞⠎⠊⠙⠑⠄⠎" }, { "input": "outsider", "output": "⠳⠞⠎⠊⠙⠻" }, { "input": "outsider's", "output": "⠳⠞⠎⠊⠙⠻⠄⠎" }, { "input": "outsiders", "output": "⠳⠞⠎⠊⠙⠻⠎" }, { "input": "outsides", "output": "⠳⠞⠎⠊⠙⠑⠎" }, { "input": "outsize", "output": "⠳⠞⠎⠊⠵⠑" }, { "input": "outsize's", "output": "⠳⠞⠎⠊⠵⠑⠄⠎" }, { "input": "outsizes", "output": "⠳⠞⠎⠊⠵⠑⠎" }, { "input": "outskirt", "output": "⠳⠞⠎⠅⠊⠗⠞" }, { "input": "outskirt's", "output": "⠳⠞⠎⠅⠊⠗⠞⠄⠎" }, { "input": "outskirts", "output": "⠳⠞⠎⠅⠊⠗⠞⠎" }, { "input": "outsmart", "output": "⠳⠞⠎â â œâ ž" }, { "input": "outsmarted", "output": "⠳⠞⠎â â œâ žâ «" }, { "input": "outsmarting", "output": "⠳⠞⠎â â œâ žâ Œ" }, { "input": "outsmarts", "output": "⠳⠞⠎â â œâ žâ Ž" }, { "input": "outsold", "output": "⠳⠞⠎⠕⠇⠙" }, { "input": "outsource", "output": "⠳⠞⠎⠳⠗⠉⠑" }, { "input": "outsourced", "output": "⠳⠞⠎⠳⠗⠉⠫" }, { "input": "outsources", "output": "⠳⠞⠎⠳⠗⠉⠑⠎" }, { "input": "outsourcing", "output": "⠳⠞⠎⠳⠗⠉⠌" }, { "input": "outsourcing's", "output": "⠳⠞⠎⠳⠗⠉⠌⠄⠎" }, { "input": "outspend", "output": "⠳⠞⠎â â ¢â ™" }, { "input": "outspending", "output": "⠳⠞⠎â â ¢â ™â Œ" }, { "input": "outspends", "output": "⠳⠞⠎â â ¢â ™â Ž" }, { "input": "outspent", "output": "⠳⠞⠎â â ¢â ž" }, { "input": "outspoken", "output": "⠳⠞⠎â â •â …â ¢" }, { "input": "outspokenly", "output": "⠳⠞⠎â â •⠅⠢⠇⠽" }, { "input": "outspokenness", "output": "⠳⠞⠎â â •⠅⠢⠰⠎" }, { "input": "outspokenness's", "output": "⠳⠞⠎â â •⠅⠢⠰⠎⠄⠎" }, { "input": "outspread", "output": "⠳⠞⠎â â —â ‚â ™" }, { "input": "outspreading", "output": "⠳⠞⠎â â —⠂⠙⠌" }, { "input": "outspreads", "output": "⠳⠞⠎â â —⠂⠙⠎" }, { "input": "outstanding", "output": "⠳⠞⠌⠯⠌" }, { "input": "outstandingly", "output": "⠳⠞⠌⠯⠌⠇⠽" }, { "input": "outstation", "output": "⠳⠞⠌⠠â " }, { "input": "outstation's", "output": "⠳⠞⠌⠠â â „â Ž" }, { "input": "outstations", "output": "⠳⠞⠌⠠â â Ž" }, { "input": "outstay", "output": "⠳⠞⠌â â ½" }, { "input": "outstayed", "output": "⠳⠞⠌â â ½â «" }, { "input": "outstaying", "output": "⠳⠞⠌â â ½â Œ" }, { "input": "outstays", "output": "⠳⠞⠌â â ½â Ž" }, { "input": "outstretch", "output": "⠳⠞⠌⠗⠑⠞⠡" }, { "input": "outstretched", "output": "⠳⠞⠌⠗⠑⠞⠡⠫" }, { "input": "outstretches", "output": "⠳⠞⠌⠗⠑⠞⠡⠑⠎" }, { "input": "outstretching", "output": "⠳⠞⠌⠗⠑⠞⠡⠌" }, { "input": "outstrip", "output": "⠳⠞⠌⠗⠊â " }, { "input": "outstripped", "output": "⠳⠞⠌⠗⠊â â â «" }, { "input": "outstripping", "output": "⠳⠞⠌⠗⠊â â â Œ" }, { "input": "outstrips", "output": "⠳⠞⠌⠗⠊â â Ž" }, { "input": "outtake", "output": "⠳⠞⠞â â …â ‘" }, { "input": "outtake's", "output": "⠳⠞⠞â â …â ‘â „â Ž" }, { "input": "outtakes", "output": "⠳⠞⠞â â …â ‘â Ž" }, { "input": "outvote", "output": "⠳⠞⠧⠕⠞⠑" }, { "input": "outvoted", "output": "⠳⠞⠧⠕⠞⠫" }, { "input": "outvotes", "output": "⠳⠞⠧⠕⠞⠑⠎" }, { "input": "outvoting", "output": "⠳⠞⠧⠕⠞⠌" }, { "input": "outward", "output": "⠳⠞⠺⠜⠙" }, { "input": "outwardly", "output": "⠳⠞⠺⠜⠙⠇⠽" }, { "input": "outwards", "output": "⠳⠞⠺⠜⠙⠎" }, { "input": "outwear", "output": "⠳⠞⠺⠑⠜" }, { "input": "outwearing", "output": "⠳⠞⠺⠑⠜⠌" }, { "input": "outwears", "output": "⠳⠞⠺⠑⠜⠎" }, { "input": "outweigh", "output": "⠳⠞⠺⠑⠊⠣" }, { "input": "outweighed", "output": "⠳⠞⠺⠑⠊⠣⠫" }, { "input": "outweighing", "output": "⠳⠞⠺⠑⠊⠣⠌" }, { "input": "outweighs", "output": "⠳⠞⠺⠑⠊⠣⠎" }, { "input": "outwit", "output": "⠳⠞⠺⠊⠞" }, { "input": "outwits", "output": "⠳⠞⠺⠊⠞⠎" }, { "input": "outwitted", "output": "⠳⠞⠺⠊⠞⠞⠫" }, { "input": "outwitting", "output": "⠳⠞⠺⠊⠞⠞⠌" }, { "input": "outwore", "output": "⠳⠞⠺⠕⠗⠑" }, { "input": "outwork's", "output": "⠳⠞â â ºâ „â Ž" }, { "input": "outworked", "output": "⠳⠞â â ºâ «" }, { "input": "outworking", "output": "⠳⠞â â ºâ Œ" }, { "input": "outworks", "output": "⠳⠞â â ºâ Ž" }, { "input": "outworn", "output": "⠳⠞⠺⠕⠗â " }, { "input": "ouzo's", "output": "⠳⠵⠕⠄⠎" }, { "input": "ova", "output": "â •â §â " }, { "input": "oval", "output": "â •â §â â ‡" }, { "input": "oval's", "output": "â •â §â â ‡â „â Ž" }, { "input": "ovals", "output": "â •â §â â ‡â Ž" }, { "input": "ovarian", "output": "⠕⠧⠜⠊â â " }, { "input": "ovaries", "output": "⠕⠧⠜⠊⠑⠎" }, { "input": "ovary", "output": "⠕⠧⠜⠽" }, { "input": "ovary's", "output": "⠕⠧⠜⠽⠄⠎" }, { "input": "ovate", "output": "â •â §â â žâ ‘" }, { "input": "ovation", "output": "â •â §â  â " }, { "input": "ovation's", "output": "â •â §â  â â „â Ž" }, { "input": "ovations", "output": "â •â §â  â â Ž" }, { "input": "oven", "output": "â •â §â ¢" }, { "input": "oven's", "output": "⠕⠧⠢⠄⠎" }, { "input": "ovenbird", "output": "⠕⠧⠢⠃⠊⠗⠙" }, { "input": "ovenbird's", "output": "⠕⠧⠢⠃⠊⠗⠙⠄⠎" }, { "input": "ovenbirds", "output": "⠕⠧⠢⠃⠊⠗⠙⠎" }, { "input": "ovens", "output": "⠕⠧⠢⠎" }, { "input": "over", "output": "â •â §â »" }, { "input": "over's", "output": "⠕⠧⠻⠄⠎" }, { "input": "overabundance", "output": "â •â §â »â â ƒâ ¥â â ™â ¨â ‘" }, { "input": "overabundance's", "output": "â •â §â »â â ƒâ ¥â â ™â ¨â ‘â „â Ž" }, { "input": "overabundant", "output": "â •â §â »â â ƒâ ¥â â ™â â â ž" }, { "input": "overachieve", "output": "â •â §â »â â ¡â Šâ ‘â §â ‘" }, { "input": "overachieved", "output": "â •â §â »â â ¡â Šâ ‘â §â «" }, { "input": "overachiever", "output": "â •â §â »â â ¡â Šâ ‘â §â »" }, { "input": "overachiever's", "output": "â •â §â »â â ¡â Šâ ‘⠧⠻⠄⠎" }, { "input": "overachievers", "output": "â •â §â »â â ¡â Šâ ‘⠧⠻⠎" }, { "input": "overachieves", "output": "â •â §â »â â ¡â Šâ ‘â §â ‘â Ž" }, { "input": "overachieving", "output": "â •â §â »â â ¡â Šâ ‘â §â Œ" }, { "input": "overact", "output": "â •â §â »â â ‰â ž" }, { "input": "overacted", "output": "â •â §â »â â ‰â žâ «" }, { "input": "overacting", "output": "â •â §â »â â ‰â žâ Œ" }, { "input": "overactive", "output": "â •â §â »â â ‰â žâ Šâ §â ‘" }, { "input": "overacts", "output": "â •â §â »â â ‰â žâ Ž" }, { "input": "overage", "output": "â •â §â »â â ›â ‘" }, { "input": "overage's", "output": "â •â §â »â â ›â ‘â „â Ž" }, { "input": "overages", "output": "â •â §â »â â ›â ‘â Ž" }, { "input": "overaggressive", "output": "â •â §â »â â ¶â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "overall", "output": "â •â §â »â â ‡â ‡" }, { "input": "overall's", "output": "â •â §â »â â ‡â ‡â „â Ž" }, { "input": "overalls", "output": "â •â §â »â â ‡â ‡â Ž" }, { "input": "overalls's", "output": "â •â §â »â â ‡â ‡â Žâ „â Ž" }, { "input": "overambitious", "output": "â •â §â »â â â ƒâ Šâ žâ Šâ ³â Ž" }, { "input": "overanxious", "output": "â •â §â »â â â ­â Šâ ³â Ž" }, { "input": "overarmed", "output": "⠕⠧⠻⠜â â «" }, { "input": "overarming", "output": "⠕⠧⠻⠜â â Œ" }, { "input": "overarms", "output": "⠕⠧⠻⠜â â Ž" }, { "input": "overate", "output": "â •â §â »â â žâ ‘" }, { "input": "overattentive", "output": "â •â §â »â â žâ žâ ¢â žâ Šâ §â ‘" }, { "input": "overawe", "output": "â •â §â »â â ºâ ‘" }, { "input": "overawed", "output": "â •â §â »â â ºâ «" }, { "input": "overawes", "output": "â •â §â »â â ºâ ‘â Ž" }, { "input": "overawing", "output": "â •â §â »â â ºâ Œ" }, { "input": "overbalance", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘" }, { "input": "overbalance's", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘â „â Ž" }, { "input": "overbalanced", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘â ™" }, { "input": "overbalances", "output": "⠕⠧⠻⠃â â ‡â ¨â ‘â Ž" }, { "input": "overbalancing", "output": "⠕⠧⠻⠃â â ‡â â â ‰â Œ" }, { "input": "overbear", "output": "⠕⠧⠻⠃⠑⠜" }, { "input": "overbearing", "output": "⠕⠧⠻⠃⠑⠜⠌" }, { "input": "overbearingly", "output": "⠕⠧⠻⠃⠑⠜⠌⠇⠽" }, { "input": "overbears", "output": "⠕⠧⠻⠃⠑⠜⠎" }, { "input": "overbite", "output": "⠕⠧⠻⠃⠊⠞⠑" }, { "input": "overbite's", "output": "⠕⠧⠻⠃⠊⠞⠑⠄⠎" }, { "input": "overbites", "output": "⠕⠧⠻⠃⠊⠞⠑⠎" }, { "input": "overblown", "output": "⠕⠧⠻⠃⠇⠪â " }, { "input": "overboard", "output": "⠕⠧⠻⠃⠕⠜⠙" }, { "input": "overbold", "output": "⠕⠧⠻⠃⠕⠇⠙" }, { "input": "overbook", "output": "⠕⠧⠻⠃⠕⠕⠅" }, { "input": "overbooked", "output": "⠕⠧⠻⠃⠕⠕⠅⠫" }, { "input": "overbooking", "output": "⠕⠧⠻⠃⠕⠕⠅⠌" }, { "input": "overbooks", "output": "⠕⠧⠻⠃⠕⠕⠅⠎" }, { "input": "overbore", "output": "⠕⠧⠻⠃⠕⠗⠑" }, { "input": "overborne", "output": "⠕⠧⠻⠃⠕⠗â â ‘" }, { "input": "overbought", "output": "⠕⠧⠻⠃â â ³" }, { "input": "overbuild", "output": "⠕⠧⠻⠃⠥⠊⠇⠙" }, { "input": "overbuilding", "output": "⠕⠧⠻⠃⠥⠊⠇⠙⠌" }, { "input": "overbuilds", "output": "⠕⠧⠻⠃⠥⠊⠇⠙⠎" }, { "input": "overbuilt", "output": "⠕⠧⠻⠃⠥⠊⠇⠞" }, { "input": "overburden", "output": "⠕⠧⠻⠃⠥⠗⠙⠢" }, { "input": "overburdened", "output": "⠕⠧⠻⠃⠥⠗⠙⠢⠫" }, { "input": "overburdening", "output": "⠕⠧⠻⠃⠥⠗⠙⠢⠌" }, { "input": "overburdens", "output": "⠕⠧⠻⠃⠥⠗⠙⠢⠎" }, { "input": "overbuy", "output": "⠕⠧⠻⠃⠥⠽" }, { "input": "overbuying", "output": "⠕⠧⠻⠃⠥⠽⠌" }, { "input": "overbuys", "output": "⠕⠧⠻⠃⠥⠽⠎" }, { "input": "overcame", "output": "⠕⠧⠻⠉â â â ‘" }, { "input": "overcapacity", "output": "⠕⠧⠻⠉â â â â ‰â °â ½" }, { "input": "overcapacity's", "output": "⠕⠧⠻⠉â â â â ‰â °â ½â „â Ž" }, { "input": "overcapitalize", "output": "⠕⠧⠻⠉â â â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "overcapitalized", "output": "⠕⠧⠻⠉â â â Šâ žâ â ‡â Šâ µâ «" }, { "input": "overcapitalizes", "output": "⠕⠧⠻⠉â â â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "overcapitalizing", "output": "⠕⠧⠻⠉â â â Šâ žâ â ‡â Šâ µâ Œ" }, { "input": "overcareful", "output": "⠕⠧⠻⠉⠜⠑⠰⠇" }, { "input": "overcast", "output": "⠕⠧⠻⠉â â Œ" }, { "input": "overcast's", "output": "⠕⠧⠻⠉â â Œâ „â Ž" }, { "input": "overcasting", "output": "⠕⠧⠻⠉â â Œâ Œ" }, { "input": "overcasts", "output": "⠕⠧⠻⠉â â Œâ Ž" }, { "input": "overcautious", "output": "⠕⠧⠻⠉â â ¥â žâ Šâ ³â Ž" }, { "input": "overcharge", "output": "⠕⠧⠻⠡⠜⠛⠑" }, { "input": "overcharge's", "output": "⠕⠧⠻⠡⠜⠛⠑⠄⠎" }, { "input": "overcharged", "output": "⠕⠧⠻⠡⠜⠛⠫" }, { "input": "overcharges", "output": "⠕⠧⠻⠡⠜⠛⠑⠎" }, { "input": "overcharging", "output": "⠕⠧⠻⠡⠜⠛⠌" }, { "input": "overcloud", "output": "⠕⠧⠻⠉⠇⠳⠙" }, { "input": "overclouded", "output": "⠕⠧⠻⠉⠇⠳⠙⠫" }, { "input": "overclouding", "output": "⠕⠧⠻⠉⠇⠳⠙⠌" }, { "input": "overclouds", "output": "⠕⠧⠻⠉⠇⠳⠙⠎" }, { "input": "overcoat", "output": "⠕⠧⠻⠉⠕â â ž" }, { "input": "overcoat's", "output": "⠕⠧⠻⠉⠕â â žâ „â Ž" }, { "input": "overcoats", "output": "⠕⠧⠻⠉⠕â â žâ Ž" }, { "input": "overcome", "output": "⠕⠧⠻⠉⠕â â ‘" }, { "input": "overcomes", "output": "⠕⠧⠻⠉⠕â â ‘â Ž" }, { "input": "overcoming", "output": "⠕⠧⠻⠉⠕â â Œ" }, { "input": "overcompensate", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ ‘" }, { "input": "overcompensated", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ «" }, { "input": "overcompensates", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ ‘â Ž" }, { "input": "overcompensating", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ â žâ Œ" }, { "input": "overcompensation", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ  â " }, { "input": "overcompensation's", "output": "⠕⠧⠻⠉⠕â â â ¢â Žâ  â â „â Ž" }, { "input": "overconfidence", "output": "⠕⠧⠻⠉⠕â â ‹â Šâ ™â °â ‘" }, { "input": "overconfidence's", "output": "⠕⠧⠻⠉⠕â â ‹â Šâ ™â °â ‘â „â Ž" }, { "input": "overconfident", "output": "⠕⠧⠻⠉⠕â â ‹â Šâ ™â ¢â ž" }, { "input": "overconscientious", "output": "⠕⠧⠻⠉⠕â â Žâ ‰â Šâ ¢â žâ Šâ ³â Ž" }, { "input": "overcook", "output": "⠕⠧⠻⠉⠕⠕⠅" }, { "input": "overcooked", "output": "⠕⠧⠻⠉⠕⠕⠅⠫" }, { "input": "overcooking", "output": "⠕⠧⠻⠉⠕⠕⠅⠌" }, { "input": "overcooks", "output": "⠕⠧⠻⠉⠕⠕⠅⠎" }, { "input": "overcritical", "output": "⠕⠧⠻⠉⠗⠊⠞⠊⠉â â ‡" }, { "input": "overcrowd", "output": "⠕⠧⠻⠉⠗⠪⠙" }, { "input": "overcrowded", "output": "⠕⠧⠻⠉⠗⠪⠙⠫" }, { "input": "overcrowding", "output": "⠕⠧⠻⠉⠗⠪⠙⠌" }, { "input": "overcrowding's", "output": "⠕⠧⠻⠉⠗⠪⠙⠌⠄⠎" }, { "input": "overcrowds", "output": "⠕⠧⠻⠉⠗⠪⠙⠎" }, { "input": "overdecorate", "output": "⠕⠧⠻⠙⠑⠉⠕⠗â â žâ ‘" }, { "input": "overdecorated", "output": "⠕⠧⠻⠙⠑⠉⠕⠗â â žâ «" }, { "input": "overdecorates", "output": "⠕⠧⠻⠙⠑⠉⠕⠗â â žâ ‘â Ž" }, { "input": "overdecorating", "output": "⠕⠧⠻⠙⠑⠉⠕⠗â â žâ Œ" }, { "input": "overdependent", "output": "⠕⠧⠻⠙⠑â â ¢â ™â ¢â ž" }, { "input": "overdid", "output": "⠕⠧⠻⠙⠊⠙" }, { "input": "overdo", "output": "⠕⠧⠻⠙⠕" }, { "input": "overdoes", "output": "⠕⠧⠻⠙⠕⠑⠎" }, { "input": "overdoing", "output": "⠕⠧⠻⠙⠕⠌" }, { "input": "overdone", "output": "⠕⠧⠻⠙â â •" }, { "input": "overdose", "output": "⠕⠧⠻⠙⠕⠎⠑" }, { "input": "overdose's", "output": "⠕⠧⠻⠙⠕⠎⠑⠄⠎" }, { "input": "overdosed", "output": "⠕⠧⠻⠙⠕⠎⠫" }, { "input": "overdoses", "output": "⠕⠧⠻⠙⠕⠎⠑⠎" }, { "input": "overdosing", "output": "⠕⠧⠻⠙⠕⠎⠌" }, { "input": "overdraft", "output": "⠕⠧⠻⠙⠗â â ‹â ž" }, { "input": "overdraft's", "output": "⠕⠧⠻⠙⠗â â ‹â žâ „â Ž" }, { "input": "overdrafts", "output": "⠕⠧⠻⠙⠗â â ‹â žâ Ž" }, { "input": "overdraw", "output": "⠕⠧⠻⠙⠗â â º" }, { "input": "overdrawing", "output": "⠕⠧⠻⠙⠗â â ºâ Œ" }, { "input": "overdrawn", "output": "⠕⠧⠻⠙⠗â â ºâ " }, { "input": "overdraws", "output": "⠕⠧⠻⠙⠗â â ºâ Ž" }, { "input": "overdress", "output": "⠕⠧⠻⠙⠗⠑⠎⠎" }, { "input": "overdress's", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠄⠎" }, { "input": "overdressed", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠫" }, { "input": "overdresses", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠑⠎" }, { "input": "overdressing", "output": "⠕⠧⠻⠙⠗⠑⠎⠎⠌" }, { "input": "overdrew", "output": "⠕⠧⠻⠙⠗⠑⠺" }, { "input": "overdrive", "output": "⠕⠧⠻⠙⠗⠊⠧⠑" }, { "input": "overdrive's", "output": "⠕⠧⠻⠙⠗⠊⠧⠑⠄⠎" }, { "input": "overdub", "output": "⠕⠧⠻⠙⠥⠃" }, { "input": "overdub's", "output": "⠕⠧⠻⠙⠥⠃⠄⠎" }, { "input": "overdubbed", "output": "⠕⠧⠻⠙⠥⠆⠫" }, { "input": "overdubbing", "output": "⠕⠧⠻⠙⠥⠆⠌" }, { "input": "overdubs", "output": "⠕⠧⠻⠙⠥⠃⠎" }, { "input": "overdue", "output": "⠕⠧⠻⠙⠥⠑" }, { "input": "overeager", "output": "⠕⠧⠻⠑â â ›â »" }, { "input": "overeat", "output": "⠕⠧⠻⠑â â ž" }, { "input": "overeaten", "output": "⠕⠧⠻⠑â â žâ ¢" }, { "input": "overeating", "output": "⠕⠧⠻⠑â â žâ Œ" }, { "input": "overeats", "output": "⠕⠧⠻⠑â â žâ Ž" }, { "input": "overemotional", "output": "⠕⠧⠻⠑â â •â °â â â ‡" }, { "input": "overemphasis's", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ Žâ „â Ž" }, { "input": "overemphasize", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ ‘" }, { "input": "overemphasized", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ «" }, { "input": "overemphasizes", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ ‘â Ž" }, { "input": "overemphasizing", "output": "⠕⠧⠻⠑â â â “â â Žâ Šâ µâ Œ" }, { "input": "overenthusiastic", "output": "⠕⠧⠻⠢⠹⠥⠎⠊â â Œâ Šâ ‰" }, { "input": "overestimate", "output": "⠕⠧⠻⠑⠌⠊â â â žâ ‘" }, { "input": "overestimate's", "output": "⠕⠧⠻⠑⠌⠊â â â žâ ‘â „â Ž" }, { "input": "overestimated", "output": "⠕⠧⠻⠑⠌⠊â â â žâ «" }, { "input": "overestimates", "output": "⠕⠧⠻⠑⠌⠊â â â žâ ‘â Ž" }, { "input": "overestimating", "output": "⠕⠧⠻⠑⠌⠊â â â žâ Œ" }, { "input": "overestimation's", "output": "⠕⠧⠻⠑⠌⠊â â  â â „â Ž" }, { "input": "overexercise", "output": "⠕⠧⠻⠑⠭⠻⠉⠊⠎⠑" }, { "input": "overexercised", "output": "⠕⠧⠻⠑⠭⠻⠉⠊⠎⠫" }, { "input": "overexercises", "output": "⠕⠧⠻⠑⠭⠻⠉⠊⠎⠑⠎" }, { "input": "overexercising", "output": "⠕⠧⠻⠑⠭⠻⠉⠊⠎⠌" }, { "input": "overexert", "output": "⠕⠧⠻⠑⠭⠻⠞" }, { "input": "overexerted", "output": "⠕⠧⠻⠑⠭⠻⠞⠫" }, { "input": "overexerting", "output": "⠕⠧⠻⠑⠭⠻⠞⠌" }, { "input": "overexertion", "output": "⠕⠧⠻⠑⠭⠻⠰â " }, { "input": "overexertion's", "output": "⠕⠧⠻⠑⠭⠻⠰â â „â Ž" }, { "input": "overexerts", "output": "⠕⠧⠻⠑⠭⠻⠞⠎" }, { "input": "overexpose", "output": "⠕⠧⠻⠑⠭â â •â Žâ ‘" }, { "input": "overexposed", "output": "⠕⠧⠻⠑⠭â â •â Žâ «" }, { "input": "overexposes", "output": "⠕⠧⠻⠑⠭â â •â Žâ ‘â Ž" }, { "input": "overexposing", "output": "⠕⠧⠻⠑⠭â â •â Žâ Œ" }, { "input": "overexposure", "output": "⠕⠧⠻⠑⠭â â •⠎⠥⠗⠑" }, { "input": "overexposure's", "output": "⠕⠧⠻⠑⠭â â •⠎⠥⠗⠑⠄⠎" }, { "input": "overextend", "output": "⠕⠧⠻⠑⠭⠞⠢⠙" }, { "input": "overextended", "output": "⠕⠧⠻⠑⠭⠞⠢⠙⠫" }, { "input": "overextending", "output": "⠕⠧⠻⠑⠭⠞⠢⠙⠌" }, { "input": "overextends", "output": "⠕⠧⠻⠑⠭⠞⠢⠙⠎" }, { "input": "overfed", "output": "⠕⠧⠻⠋⠫" }, { "input": "overfeed", "output": "⠕⠧⠻⠋⠑⠫" }, { "input": "overfeeding", "output": "⠕⠧⠻⠋⠑⠫⠌" }, { "input": "overfeeds", "output": "⠕⠧⠻⠋⠑⠫⠎" }, { "input": "overfill", "output": "⠕⠧⠻⠋⠊⠇⠇" }, { "input": "overfilled", "output": "⠕⠧⠻⠋⠊⠇⠇⠫" }, { "input": "overfilling", "output": "⠕⠧⠻⠋⠊⠇⠇⠌" }, { "input": "overfills", "output": "⠕⠧⠻⠋⠊⠇⠇⠎" }, { "input": "overflow", "output": "⠕⠧⠻⠋⠇⠪" }, { "input": "overflow's", "output": "⠕⠧⠻⠋⠇⠪⠄⠎" }, { "input": "overflowed", "output": "⠕⠧⠻⠋⠇⠪⠫" }, { "input": "overflowing", "output": "⠕⠧⠻⠋⠇⠪⠌" }, { "input": "overflows", "output": "⠕⠧⠻⠋⠇⠪⠎" }, { "input": "overfond", "output": "⠕⠧⠻⠋⠕â â ™" }, { "input": "overfull", "output": "⠕⠧⠻⠋⠥⠇⠇" }, { "input": "overgeneralize", "output": "⠕⠧⠻⠛⠢⠻â â ‡â Šâ µâ ‘" }, { "input": "overgeneralized", "output": "⠕⠧⠻⠛⠢⠻â â ‡â Šâ µâ «" }, { "input": "overgeneralizes", "output": "⠕⠧⠻⠛⠢⠻â â ‡â Šâ µâ ‘â Ž" }, { "input": "overgeneralizing", "output": "⠕⠧⠻⠛⠢⠻â â ‡â Šâ µâ Œ" }, { "input": "overgenerous", "output": "⠕⠧⠻⠛⠢⠻⠳⠎" }, { "input": "overgraze", "output": "⠕⠧⠻⠛⠗â â µâ ‘" }, { "input": "overgrazed", "output": "⠕⠧⠻⠛⠗â â µâ «" }, { "input": "overgrazes", "output": "⠕⠧⠻⠛⠗â â µâ ‘â Ž" }, { "input": "overgrazing", "output": "⠕⠧⠻⠛⠗â â µâ Œ" }, { "input": "overgrew", "output": "⠕⠧⠻⠛⠗⠑⠺" }, { "input": "overgrow", "output": "⠕⠧⠻⠛⠗⠪" }, { "input": "overgrowing", "output": "⠕⠧⠻⠛⠗⠪⠌" }, { "input": "overgrown", "output": "⠕⠧⠻⠛⠗⠪â " }, { "input": "overgrows", "output": "⠕⠧⠻⠛⠗⠪⠎" }, { "input": "overgrowth", "output": "⠕⠧⠻⠛⠗⠪⠹" }, { "input": "overgrowth's", "output": "⠕⠧⠻⠛⠗⠪⠹⠄⠎" }, { "input": "overhand", "output": "⠕⠧⠻⠓⠯" }, { "input": "overhand's", "output": "⠕⠧⠻⠓⠯⠄⠎" }, { "input": "overhanded", "output": "⠕⠧⠻⠓⠯⠫" }, { "input": "overhands", "output": "⠕⠧⠻⠓⠯⠎" }, { "input": "overhang", "output": "⠕⠧⠻⠓â â â ›" }, { "input": "overhang's", "output": "⠕⠧⠻⠓â â â ›â „â Ž" }, { "input": "overhanging", "output": "⠕⠧⠻⠓â â â ›â Œ" }, { "input": "overhangs", "output": "⠕⠧⠻⠓â â â ›â Ž" }, { "input": "overhasty", "output": "⠕⠧⠻⠓â â Œâ ½" }, { "input": "overhaul", "output": "⠕⠧⠻⠓â â ¥â ‡" }, { "input": "overhaul's", "output": "⠕⠧⠻⠓â â ¥â ‡â „â Ž" }, { "input": "overhauled", "output": "⠕⠧⠻⠓â â ¥â ‡â «" }, { "input": "overhauling", "output": "⠕⠧⠻⠓â â ¥â ‡â Œ" }, { "input": "overhauls", "output": "⠕⠧⠻⠓â â ¥â ‡â Ž" }, { "input": "overhead", "output": "⠕⠧⠻⠓⠂⠙" }, { "input": "overhead's", "output": "⠕⠧⠻⠓⠂⠙⠄⠎" }, { "input": "overheads", "output": "⠕⠧⠻⠓⠂⠙⠎" }, { "input": "overhear", "output": "⠕⠧⠻⠓⠑⠜" }, { "input": "overheard", "output": "⠕⠧⠻⠓⠑⠜⠙" }, { "input": "overhearing", "output": "⠕⠧⠻⠓⠑⠜⠌" }, { "input": "overhears", "output": "⠕⠧⠻⠓⠑⠜⠎" }, { "input": "overheat", "output": "⠕⠧⠻⠓⠂⠞" }, { "input": "overheated", "output": "⠕⠧⠻⠓⠂⠞⠫" }, { "input": "overheating", "output": "⠕⠧⠻⠓⠂⠞⠌" }, { "input": "overheats", "output": "⠕⠧⠻⠓⠂⠞⠎" }, { "input": "overhung", "output": "⠕⠧⠻⠓⠥â â ›" }, { "input": "overindulge", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠑" }, { "input": "overindulged", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠫" }, { "input": "overindulgence", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠰⠑" }, { "input": "overindulgence's", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠰⠑⠄⠎" }, { "input": "overindulgent", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠢⠞" }, { "input": "overindulges", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠑⠎" }, { "input": "overindulging", "output": "⠕⠧⠻⠔⠙⠥⠇⠛⠌" }, { "input": "overjoy", "output": "⠕⠧⠻⠚⠕⠽" }, { "input": "overjoyed", "output": "⠕⠧⠻⠚⠕⠽⠫" }, { "input": "overjoying", "output": "⠕⠧⠻⠚⠕⠽⠌" }, { "input": "overjoys", "output": "⠕⠧⠻⠚⠕⠽⠎" }, { "input": "overkill", "output": "⠕⠧⠻⠅⠊⠇⠇" }, { "input": "overkill's", "output": "⠕⠧⠻⠅⠊⠇⠇⠄⠎" }, { "input": "overlaid", "output": "⠕⠧⠻⠇â â Šâ ™" }, { "input": "overlain", "output": "⠕⠧⠻⠇â â ”" }, { "input": "overland", "output": "⠕⠧⠻⠇⠯" }, { "input": "overlap", "output": "⠕⠧⠻⠇â â " }, { "input": "overlap's", "output": "⠕⠧⠻⠇â â â „â Ž" }, { "input": "overlapped", "output": "⠕⠧⠻⠇â â â â «" }, { "input": "overlapping", "output": "⠕⠧⠻⠇â â â â Œ" }, { "input": "overlaps", "output": "⠕⠧⠻⠇â â â Ž" }, { "input": "overlarge", "output": "⠕⠧⠻⠇⠜⠛⠑" }, { "input": "overlay", "output": "⠕⠧⠻⠇â â ½" }, { "input": "overlay's", "output": "⠕⠧⠻⠇â â ½â „â Ž" }, { "input": "overlaying", "output": "⠕⠧⠻⠇â â ½â Œ" }, { "input": "overlays", "output": "⠕⠧⠻⠇â â ½â Ž" }, { "input": "overlie", "output": "⠕⠧⠻⠇⠊⠑" }, { "input": "overlies", "output": "⠕⠧⠻⠇⠊⠑⠎" }, { "input": "overload", "output": "⠕⠧⠻⠇⠕â â ™" }, { "input": "overload's", "output": "⠕⠧⠻⠇⠕â â ™â „â Ž" }, { "input": "overloaded", "output": "⠕⠧⠻⠇⠕â â ™â «" }, { "input": "overloading", "output": "⠕⠧⠻⠇⠕â â ™â Œ" }, { "input": "overloads", "output": "⠕⠧⠻⠇⠕â â ™â Ž" }, { "input": "overlong", "output": "⠕⠧⠻⠇⠰⠛" }, { "input": "overlook", "output": "⠕⠧⠻⠇⠕⠕⠅" }, { "input": "overlook's", "output": "⠕⠧⠻⠇⠕⠕⠅⠄⠎" }, { "input": "overlooked", "output": "⠕⠧⠻⠇⠕⠕⠅⠫" }, { "input": "overlooking", "output": "⠕⠧⠻⠇⠕⠕⠅⠌" }, { "input": "overlooks", "output": "⠕⠧⠻⠇⠕⠕⠅⠎" }, { "input": "overlord", "output": "â •â §â »â â ‡" }, { "input": "overlord's", "output": "â •â §â »â â ‡â „â Ž" }, { "input": "overlords", "output": "â •â §â »â â ‡â Ž" }, { "input": "overly", "output": "⠕⠧⠻⠇⠽" }, { "input": "overlying", "output": "⠕⠧⠻⠇⠽⠌" }, { "input": "overmaster", "output": "â •â §â »â â â Œâ »" }, { "input": "overmastered", "output": "â •â §â »â â â Œâ »â «" }, { "input": "overmastering", "output": "â •â §â »â â â Œâ »â Œ" }, { "input": "overmasters", "output": "â •â §â »â â â Œâ »â Ž" }, { "input": "overmodest", "output": "â •â §â »â â •⠙⠑⠌" }, { "input": "overmuch", "output": "â •â §â »â â ¡" }, { "input": "overmuches", "output": "â •â §â »â â ¥â ¡â ‘â Ž" }, { "input": "overnice", "output": "â •â §â »â â Šâ ‰â ‘" }, { "input": "overnight", "output": "â •â §â »â â Šâ £â ž" }, { "input": "overnight's", "output": "â •â §â »â â Šâ £â žâ „â Ž" }, { "input": "overnights", "output": "â •â §â »â â Šâ £â žâ Ž" }, { "input": "overoptimism", "output": "⠕⠧⠻⠕â â žâ Šâ â Šâ Žâ " }, { "input": "overoptimism's", "output": "⠕⠧⠻⠕â â žâ Šâ â Šâ Žâ â „â Ž" }, { "input": "overoptimistic", "output": "⠕⠧⠻⠕â â žâ Šâ â Šâ Œâ Šâ ‰" }, { "input": "overpaid", "output": "â •â §â »â â ™" }, { "input": "overparticular", "output": "â •â §â »â â â Šâ ‰â ¥â ‡â œ" }, { "input": "overpass", "output": "â •â §â »â â â Žâ Ž" }, { "input": "overpass's", "output": "â •â §â »â â â Žâ Žâ „â Ž" }, { "input": "overpasses", "output": "â •â §â »â â â Žâ Žâ ‘â Ž" }, { "input": "overpay", "output": "â •â §â »â â â ½" }, { "input": "overpaying", "output": "â •â §â »â â â ½â Œ" }, { "input": "overpays", "output": "â •â §â »â â â ½â Ž" }, { "input": "overplay", "output": "â •â §â »â â ‡â â ½" }, { "input": "overplayed", "output": "â •â §â »â â ‡â â ½â «" }, { "input": "overplaying", "output": "â •â §â »â â ‡â â ½â Œ" }, { "input": "overplays", "output": "â •â §â »â â ‡â â ½â Ž" }, { "input": "overpopulate", "output": "â •â §â »â â •â â ¥â ‡â â žâ ‘" }, { "input": "overpopulated", "output": "â •â §â »â â •â â ¥â ‡â â žâ «" }, { "input": "overpopulates", "output": "â •â §â »â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "overpopulating", "output": "â •â §â »â â •â â ¥â ‡â â žâ Œ" }, { "input": "overpopulation", "output": "â •â §â »â â •â â ¥â ‡â  â " }, { "input": "overpopulation's", "output": "â •â §â »â â •â â ¥â ‡â  â â „â Ž" }, { "input": "overpower", "output": "â •â §â »â â ªâ »" }, { "input": "overpowered", "output": "â •â §â »â â ªâ »â «" }, { "input": "overpowering", "output": "â •â §â »â â ªâ »â Œ" }, { "input": "overpowers", "output": "â •â §â »â â ªâ »â Ž" }, { "input": "overpraise", "output": "â •â §â »â â —â â Šâ Žâ ‘" }, { "input": "overpraised", "output": "â •â §â »â â —â â Šâ Žâ «" }, { "input": "overpraises", "output": "â •â §â »â â —â â Šâ Žâ ‘â Ž" }, { "input": "overpraising", "output": "â •â §â »â â —â â Šâ Žâ Œ" }, { "input": "overprecise", "output": "â •â §â »â â —⠑⠉⠊⠎⠑" }, { "input": "overprice", "output": "â •â §â »â â —⠊⠉⠑" }, { "input": "overpriced", "output": "â •â §â »â â —⠊⠉⠫" }, { "input": "overprices", "output": "â •â §â »â â —⠊⠉⠑⠎" }, { "input": "overpricing", "output": "â •â §â »â â —⠊⠉⠌" }, { "input": "overprint", "output": "â •â §â »â â —⠔⠞" }, { "input": "overprint's", "output": "â •â §â »â â —⠔⠞⠄⠎" }, { "input": "overprinted", "output": "â •â §â »â â —⠔⠞⠫" }, { "input": "overprinting", "output": "â •â §â »â â —⠔⠞⠌" }, { "input": "overprints", "output": "â •â §â »â â —⠔⠞⠎" }, { "input": "overproduce", "output": "â •â §â »â â —⠕⠙⠥⠉⠑" }, { "input": "overproduced", "output": "â •â §â »â â —⠕⠙⠥⠉⠫" }, { "input": "overproduces", "output": "â •â §â »â â —⠕⠙⠥⠉⠑⠎" }, { "input": "overproducing", "output": "â •â §â »â â —⠕⠙⠥⠉⠌" }, { "input": "overproduction", "output": "â •â §â »â â —⠕⠙⠥⠉⠰â " }, { "input": "overproduction's", "output": "â •â §â »â â —⠕⠙⠥⠉⠰â â „â Ž" }, { "input": "overprotect", "output": "â •â §â »â â —⠕⠞⠑⠉⠞" }, { "input": "overprotected", "output": "â •â §â »â â —⠕⠞⠑⠉⠞⠫" }, { "input": "overprotecting", "output": "â •â §â »â â —⠕⠞⠑⠉⠞⠌" }, { "input": "overprotective", "output": "â •â §â »â â —⠕⠞⠑⠉⠞⠊⠧⠑" }, { "input": "overprotects", "output": "â •â §â »â â —⠕⠞⠑⠉⠞⠎" }, { "input": "overqualified", "output": "⠕⠧⠻⠟⠥â â ‡â Šâ ‹â Šâ «" }, { "input": "overran", "output": "⠕⠧⠻⠗â â " }, { "input": "overrate", "output": "⠕⠧⠻⠗â â žâ ‘" }, { "input": "overrated", "output": "⠕⠧⠻⠗â â žâ «" }, { "input": "overrates", "output": "⠕⠧⠻⠗â â žâ ‘â Ž" }, { "input": "overrating", "output": "⠕⠧⠻⠗â â žâ Œ" }, { "input": "overreach", "output": "⠕⠧⠻⠗⠂⠡" }, { "input": "overreached", "output": "⠕⠧⠻⠗⠂⠡⠫" }, { "input": "overreaches", "output": "⠕⠧⠻⠗⠂⠡⠑⠎" }, { "input": "overreaching", "output": "⠕⠧⠻⠗⠂⠡⠌" }, { "input": "overreact", "output": "⠕⠧⠻⠗⠑â â ‰â ž" }, { "input": "overreacted", "output": "⠕⠧⠻⠗⠑â â ‰â žâ «" }, { "input": "overreacting", "output": "⠕⠧⠻⠗⠑â â ‰â žâ Œ" }, { "input": "overreaction", "output": "⠕⠧⠻⠗⠑â â ‰â °â " }, { "input": "overreaction's", "output": "⠕⠧⠻⠗⠑â â ‰â °â â „â Ž" }, { "input": "overreactions", "output": "⠕⠧⠻⠗⠑â â ‰â °â â Ž" }, { "input": "overreacts", "output": "⠕⠧⠻⠗⠑â â ‰â žâ Ž" }, { "input": "overrefined", "output": "⠕⠧⠻⠗⠑⠋⠔⠫" }, { "input": "overridden", "output": "⠕⠧⠻⠗⠊⠲⠢" }, { "input": "override", "output": "⠕⠧⠻⠗⠊⠙⠑" }, { "input": "override's", "output": "⠕⠧⠻⠗⠊⠙⠑⠄⠎" }, { "input": "overrides", "output": "⠕⠧⠻⠗⠊⠙⠑⠎" }, { "input": "overriding", "output": "⠕⠧⠻⠗⠊⠙⠌" }, { "input": "overripe", "output": "⠕⠧⠻⠗⠊â â ‘" }, { "input": "overripe's", "output": "⠕⠧⠻⠗⠊â â ‘â „â Ž" }, { "input": "overrode", "output": "⠕⠧⠻⠗⠕⠙⠑" }, { "input": "overrule", "output": "⠕⠧⠻⠗⠥⠇⠑" }, { "input": "overruled", "output": "⠕⠧⠻⠗⠥⠇⠫" }, { "input": "overrules", "output": "⠕⠧⠻⠗⠥⠇⠑⠎" }, { "input": "overruling", "output": "⠕⠧⠻⠗⠥⠇⠌" }, { "input": "overrun", "output": "⠕⠧⠻⠗⠥â " }, { "input": "overrun's", "output": "⠕⠧⠻⠗⠥â â „â Ž" }, { "input": "overrunning", "output": "⠕⠧⠻⠗⠥â â â Œ" }, { "input": "overruns", "output": "⠕⠧⠻⠗⠥â â Ž" }, { "input": "overs", "output": "⠕⠧⠻⠎" }, { "input": "oversampling", "output": "⠕⠧⠻⠎â â â â ‡â Œ" }, { "input": "oversaw", "output": "⠕⠧⠻⠎â â º" }, { "input": "oversea", "output": "⠕⠧⠻⠎⠑â " }, { "input": "overseas", "output": "⠕⠧⠻⠎⠂⠎" }, { "input": "oversee", "output": "⠕⠧⠻⠎⠑⠑" }, { "input": "overseeing", "output": "⠕⠧⠻⠎⠑⠑⠌" }, { "input": "overseen", "output": "⠕⠧⠻⠎⠑⠢" }, { "input": "overseer", "output": "⠕⠧⠻⠎⠑⠻" }, { "input": "overseer's", "output": "⠕⠧⠻⠎⠑⠻⠄⠎" }, { "input": "overseers", "output": "⠕⠧⠻⠎⠑⠻⠎" }, { "input": "oversees", "output": "⠕⠧⠻⠎⠑⠑⠎" }, { "input": "oversell", "output": "⠕⠧⠻⠎⠑⠇⠇" }, { "input": "overselling", "output": "⠕⠧⠻⠎⠑⠇⠇⠌" }, { "input": "oversells", "output": "⠕⠧⠻⠎⠑⠇⠇⠎" }, { "input": "oversensitive", "output": "⠕⠧⠻⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "oversensitiveness", "output": "⠕⠧⠻⠎⠢⠎⠊⠞⠊⠧⠑⠰⠎" }, { "input": "oversensitiveness's", "output": "⠕⠧⠻⠎⠢⠎⠊⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "oversexed", "output": "⠕⠧⠻⠎⠑⠭⠫" }, { "input": "overshadow", "output": "⠕⠧⠻⠩â â ™â ª" }, { "input": "overshadowed", "output": "⠕⠧⠻⠩â â ™â ªâ «" }, { "input": "overshadowing", "output": "⠕⠧⠻⠩â â ™â ªâ Œ" }, { "input": "overshadows", "output": "⠕⠧⠻⠩â â ™â ªâ Ž" }, { "input": "overshoe", "output": "⠕⠧⠻⠩⠕⠑" }, { "input": "overshoe's", "output": "⠕⠧⠻⠩⠕⠑⠄⠎" }, { "input": "overshoes", "output": "⠕⠧⠻⠩⠕⠑⠎" }, { "input": "overshoot", "output": "⠕⠧⠻⠩⠕⠕⠞" }, { "input": "overshooting", "output": "⠕⠧⠻⠩⠕⠕⠞⠌" }, { "input": "overshoots", "output": "⠕⠧⠻⠩⠕⠕⠞⠎" }, { "input": "overshot", "output": "⠕⠧⠻⠩⠕⠞" }, { "input": "oversight", "output": "⠕⠧⠻⠎⠊⠣⠞" }, { "input": "oversight's", "output": "⠕⠧⠻⠎⠊⠣⠞⠄⠎" }, { "input": "oversights", "output": "⠕⠧⠻⠎⠊⠣⠞⠎" }, { "input": "oversimple", "output": "⠕⠧⠻⠎⠊â â â ‡â ‘" }, { "input": "oversimplification", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "oversimplification's", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "oversimplifications", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "oversimplified", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ «" }, { "input": "oversimplifies", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "oversimplify", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â ½" }, { "input": "oversimplifying", "output": "⠕⠧⠻⠎⠊â â â ‡â Šâ ‹â ½â Œ" }, { "input": "oversize", "output": "⠕⠧⠻⠎⠊⠵⠑" }, { "input": "oversleep", "output": "⠕⠧⠻⠎⠇⠑⠑â " }, { "input": "oversleeping", "output": "⠕⠧⠻⠎⠇⠑⠑â â Œ" }, { "input": "oversleeps", "output": "⠕⠧⠻⠎⠇⠑⠑â â Ž" }, { "input": "overslept", "output": "⠕⠧⠻⠎⠇⠑â â ž" }, { "input": "oversold", "output": "⠕⠧⠻⠎⠕⠇⠙" }, { "input": "overspecialization", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ  â " }, { "input": "overspecialization's", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ  â â „â Ž" }, { "input": "overspecialize", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ ‘" }, { "input": "overspecialized", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ «" }, { "input": "overspecializes", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "overspecializing", "output": "⠕⠧⠻⠎â â ‘⠉⠊â â ‡â Šâ µâ Œ" }, { "input": "overspend", "output": "⠕⠧⠻⠎â â ¢â ™" }, { "input": "overspending", "output": "⠕⠧⠻⠎â â ¢â ™â Œ" }, { "input": "overspends", "output": "⠕⠧⠻⠎â â ¢â ™â Ž" }, { "input": "overspent", "output": "⠕⠧⠻⠎â â ¢â ž" }, { "input": "overspread", "output": "⠕⠧⠻⠎â â —â ‚â ™" }, { "input": "overspreading", "output": "⠕⠧⠻⠎â â —⠂⠙⠌" }, { "input": "overspreads", "output": "⠕⠧⠻⠎â â —⠂⠙⠎" }, { "input": "overstate", "output": "⠕⠧⠻⠌â â žâ ‘" }, { "input": "overstated", "output": "⠕⠧⠻⠌â â žâ «" }, { "input": "overstatement", "output": "⠕⠧⠻⠌â â žâ ‘â °â ž" }, { "input": "overstatement's", "output": "⠕⠧⠻⠌â â žâ ‘â °â žâ „â Ž" }, { "input": "overstatements", "output": "⠕⠧⠻⠌â â žâ ‘â °â žâ Ž" }, { "input": "overstates", "output": "⠕⠧⠻⠌â â žâ ‘â Ž" }, { "input": "overstating", "output": "⠕⠧⠻⠌â â žâ Œ" }, { "input": "overstay", "output": "⠕⠧⠻⠌â â ½" }, { "input": "overstayed", "output": "⠕⠧⠻⠌â â ½â «" }, { "input": "overstaying", "output": "⠕⠧⠻⠌â â ½â Œ" }, { "input": "overstays", "output": "⠕⠧⠻⠌â â ½â Ž" }, { "input": "overstep", "output": "⠕⠧⠻⠌⠑â " }, { "input": "overstepped", "output": "⠕⠧⠻⠌⠑â â â «" }, { "input": "overstepping", "output": "⠕⠧⠻⠌⠑â â â Œ" }, { "input": "oversteps", "output": "⠕⠧⠻⠌⠑â â Ž" }, { "input": "overstimulate", "output": "⠕⠧⠻⠌⠊â â ¥â ‡â â žâ ‘" }, { "input": "overstimulated", "output": "⠕⠧⠻⠌⠊â â ¥â ‡â â žâ «" }, { "input": "overstimulates", "output": "⠕⠧⠻⠌⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "overstimulating", "output": "⠕⠧⠻⠌⠊â â ¥â ‡â â žâ Œ" }, { "input": "overstock", "output": "⠕⠧⠻⠌⠕⠉⠅" }, { "input": "overstocked", "output": "⠕⠧⠻⠌⠕⠉⠅⠫" }, { "input": "overstocking", "output": "⠕⠧⠻⠌⠕⠉⠅⠌" }, { "input": "overstocks", "output": "⠕⠧⠻⠌⠕⠉⠅⠎" }, { "input": "overstrict", "output": "⠕⠧⠻⠌⠗⠊⠉⠞" }, { "input": "overstrung", "output": "⠕⠧⠻⠌⠗⠥â â ›" }, { "input": "overstuffed", "output": "⠕⠧⠻⠌⠥⠖⠫" }, { "input": "oversubtle", "output": "⠕⠧⠻⠎⠥⠃⠞⠇⠑" }, { "input": "oversupplied", "output": "⠕⠧⠻⠎⠥â â â ‡â Šâ «" }, { "input": "oversupplies", "output": "⠕⠧⠻⠎⠥â â â ‡â Šâ ‘â Ž" }, { "input": "oversupply", "output": "⠕⠧⠻⠎⠥â â â ‡â ½" }, { "input": "oversupplying", "output": "⠕⠧⠻⠎⠥â â â ‡â ½â Œ" }, { "input": "oversuspicious", "output": "⠕⠧⠻⠎⠥⠎â â Šâ ‰â Šâ ³â Ž" }, { "input": "overt", "output": "⠕⠧⠻⠞" }, { "input": "overtake", "output": "⠕⠧⠻⠞â â …â ‘" }, { "input": "overtaken", "output": "⠕⠧⠻⠞â â …â ¢" }, { "input": "overtakes", "output": "⠕⠧⠻⠞â â …â ‘â Ž" }, { "input": "overtaking", "output": "⠕⠧⠻⠞â â …â Œ" }, { "input": "overtax", "output": "⠕⠧⠻⠞â â ­" }, { "input": "overtaxed", "output": "⠕⠧⠻⠞â â ­â «" }, { "input": "overtaxes", "output": "⠕⠧⠻⠞â â ­â ‘â Ž" }, { "input": "overtaxing", "output": "⠕⠧⠻⠞â â ­â Œ" }, { "input": "overthrew", "output": "⠕⠧⠻⠹⠗⠑⠺" }, { "input": "overthrow", "output": "⠕⠧⠻⠹⠗⠪" }, { "input": "overthrow's", "output": "⠕⠧⠻⠹⠗⠪⠄⠎" }, { "input": "overthrowing", "output": "⠕⠧⠻⠹⠗⠪⠌" }, { "input": "overthrown", "output": "⠕⠧⠻⠹⠗⠪â " }, { "input": "overthrows", "output": "⠕⠧⠻⠹⠗⠪⠎" }, { "input": "overtime", "output": "â •â §â »â â ž" }, { "input": "overtime's", "output": "â •â §â »â â žâ „â Ž" }, { "input": "overtimes", "output": "â •â §â »â â žâ Ž" }, { "input": "overtly", "output": "⠕⠧⠻⠞⠇⠽" }, { "input": "overtone", "output": "⠕⠧⠻⠞â â •" }, { "input": "overtone's", "output": "⠕⠧⠻⠞â â •â „â Ž" }, { "input": "overtones", "output": "⠕⠧⠻⠞â â •â Ž" }, { "input": "overtook", "output": "⠕⠧⠻⠞⠕⠕⠅" }, { "input": "overture", "output": "⠕⠧⠻⠞⠥⠗⠑" }, { "input": "overture's", "output": "⠕⠧⠻⠞⠥⠗⠑⠄⠎" }, { "input": "overtures", "output": "⠕⠧⠻⠞⠥⠗⠑⠎" }, { "input": "overturn", "output": "⠕⠧⠻⠞⠥⠗â " }, { "input": "overturned", "output": "⠕⠧⠻⠞⠥⠗â â «" }, { "input": "overturning", "output": "⠕⠧⠻⠞⠥⠗â â Œ" }, { "input": "overturns", "output": "⠕⠧⠻⠞⠥⠗â â Ž" }, { "input": "overuse", "output": "⠕⠧⠻⠥⠎⠑" }, { "input": "overuse's", "output": "⠕⠧⠻⠥⠎⠑⠄⠎" }, { "input": "overused", "output": "⠕⠧⠻⠥⠎⠫" }, { "input": "overuses", "output": "⠕⠧⠻⠥⠎⠑⠎" }, { "input": "overusing", "output": "⠕⠧⠻⠥⠎⠌" }, { "input": "overview", "output": "⠕⠧⠻⠧⠊⠑⠺" }, { "input": "overview's", "output": "⠕⠧⠻⠧⠊⠑⠺⠄⠎" }, { "input": "overviews", "output": "⠕⠧⠻⠧⠊⠑⠺⠎" }, { "input": "overweening", "output": "⠕⠧⠻⠺⠑⠢⠌" }, { "input": "overweight", "output": "⠕⠧⠻⠺⠑⠊⠣⠞" }, { "input": "overweight's", "output": "⠕⠧⠻⠺⠑⠊⠣⠞⠄⠎" }, { "input": "overwhelm", "output": "⠕⠧⠻⠱⠑⠇â " }, { "input": "overwhelmed", "output": "⠕⠧⠻⠱⠑⠇â â «" }, { "input": "overwhelming", "output": "⠕⠧⠻⠱⠑⠇â â Œ" }, { "input": "overwhelmingly", "output": "⠕⠧⠻⠱⠑⠇â â Œâ ‡â ½" }, { "input": "overwhelms", "output": "⠕⠧⠻⠱⠑⠇â â Ž" }, { "input": "overwork", "output": "â •â §â »â â º" }, { "input": "overwork's", "output": "â •â §â »â â ºâ „â Ž" }, { "input": "overworked", "output": "â •â §â »â â ºâ «" }, { "input": "overworking", "output": "â •â §â »â â ºâ Œ" }, { "input": "overworks", "output": "â •â §â »â â ºâ Ž" }, { "input": "overwrite", "output": "⠕⠧⠻⠺⠗⠊⠞⠑" }, { "input": "overwrites", "output": "⠕⠧⠻⠺⠗⠊⠞⠑⠎" }, { "input": "overwriting", "output": "⠕⠧⠻⠺⠗⠊⠞⠌" }, { "input": "overwritten", "output": "⠕⠧⠻⠺⠗⠊⠞⠞⠢" }, { "input": "overwrought", "output": "⠕⠧⠻⠺⠗â â ³" }, { "input": "overzealous", "output": "⠕⠧⠻⠵⠂⠇⠳⠎" }, { "input": "oviduct", "output": "⠕⠧⠊⠙⠥⠉⠞" }, { "input": "oviduct's", "output": "⠕⠧⠊⠙⠥⠉⠞⠄⠎" }, { "input": "oviducts", "output": "⠕⠧⠊⠙⠥⠉⠞⠎" }, { "input": "oviparous", "output": "â •â §â Šâ â œâ ³â Ž" }, { "input": "ovoid", "output": "â •â §â •â Šâ ™" }, { "input": "ovoid's", "output": "⠕⠧⠕⠊⠙⠄⠎" }, { "input": "ovoids", "output": "⠕⠧⠕⠊⠙⠎" }, { "input": "ovular", "output": "⠕⠧⠥⠇⠜" }, { "input": "ovulate", "output": "⠕⠧⠥⠇â â žâ ‘" }, { "input": "ovulated", "output": "⠕⠧⠥⠇â â žâ «" }, { "input": "ovulates", "output": "⠕⠧⠥⠇â â žâ ‘â Ž" }, { "input": "ovulating", "output": "⠕⠧⠥⠇â â žâ Œ" }, { "input": "ovulation", "output": "⠕⠧⠥⠇⠠â " }, { "input": "ovulation's", "output": "⠕⠧⠥⠇⠠â â „â Ž" }, { "input": "ovule", "output": "⠕⠧⠥⠇⠑" }, { "input": "ovule's", "output": "⠕⠧⠥⠇⠑⠄⠎" }, { "input": "ovules", "output": "⠕⠧⠥⠇⠑⠎" }, { "input": "ovum", "output": "â •â §â ¥â " }, { "input": "ovum's", "output": "â •â §â ¥â â „â Ž" }, { "input": "ow", "output": "â ª" }, { "input": "owe", "output": "⠪⠑" }, { "input": "owed", "output": "⠪⠫" }, { "input": "owes", "output": "⠪⠑⠎" }, { "input": "owing", "output": "⠪⠌" }, { "input": "owl", "output": "⠪⠇" }, { "input": "owl's", "output": "⠪⠇⠄⠎" }, { "input": "owlet", "output": "⠪⠇⠑⠞" }, { "input": "owlet's", "output": "⠪⠇⠑⠞⠄⠎" }, { "input": "owlets", "output": "⠪⠇⠑⠞⠎" }, { "input": "owlish", "output": "⠪⠇⠊⠩" }, { "input": "owls", "output": "⠪⠇⠎" }, { "input": "own", "output": "â ªâ " }, { "input": "owned", "output": "â ªâ â «" }, { "input": "owner", "output": "â ªâ â »" }, { "input": "owner's", "output": "â ªâ â »â „â Ž" }, { "input": "owners", "output": "â ªâ â »â Ž" }, { "input": "ownership", "output": "â ªâ â »â ©â Šâ " }, { "input": "ownership's", "output": "â ªâ â »â ©â Šâ â „â Ž" }, { "input": "owning", "output": "â ªâ â Œ" }, { "input": "owns", "output": "â ªâ â Ž" }, { "input": "ox", "output": "â •â ­" }, { "input": "ox's", "output": "â •â ­â „â Ž" }, { "input": "oxblood", "output": "⠕⠭⠃⠇⠕⠕⠙" }, { "input": "oxblood's", "output": "⠕⠭⠃⠇⠕⠕⠙⠄⠎" }, { "input": "oxbow", "output": "⠕⠭⠃⠪" }, { "input": "oxbow's", "output": "⠕⠭⠃⠪⠄⠎" }, { "input": "oxbows", "output": "⠕⠭⠃⠪⠎" }, { "input": "oxen", "output": "â •â ­â ¢" }, { "input": "oxford", "output": "â •â ­â ¿â ™" }, { "input": "oxford's", "output": "⠕⠭⠿⠙⠄⠎" }, { "input": "oxfords", "output": "⠕⠭⠿⠙⠎" }, { "input": "oxidant", "output": "â •â ­â Šâ ™â â â ž" }, { "input": "oxidant's", "output": "â •â ­â Šâ ™â â â žâ „â Ž" }, { "input": "oxidants", "output": "â •â ­â Šâ ™â â â žâ Ž" }, { "input": "oxidation", "output": "⠕⠭⠊⠙⠠â " }, { "input": "oxidation's", "output": "⠕⠭⠊⠙⠠â â „â Ž" }, { "input": "oxide", "output": "⠕⠭⠊⠙⠑" }, { "input": "oxide's", "output": "⠕⠭⠊⠙⠑⠄⠎" }, { "input": "oxides", "output": "⠕⠭⠊⠙⠑⠎" }, { "input": "oxidization", "output": "⠕⠭⠊⠙⠊⠵⠠â " }, { "input": "oxidization's", "output": "⠕⠭⠊⠙⠊⠵⠠â â „â Ž" }, { "input": "oxidize", "output": "⠕⠭⠊⠙⠊⠵⠑" }, { "input": "oxidized", "output": "⠕⠭⠊⠙⠊⠵⠫" }, { "input": "oxidizer", "output": "⠕⠭⠊⠙⠊⠵⠻" }, { "input": "oxidizer's", "output": "⠕⠭⠊⠙⠊⠵⠻⠄⠎" }, { "input": "oxidizers", "output": "⠕⠭⠊⠙⠊⠵⠻⠎" }, { "input": "oxidizes", "output": "⠕⠭⠊⠙⠊⠵⠑⠎" }, { "input": "oxidizing", "output": "⠕⠭⠊⠙⠊⠵⠌" }, { "input": "oxyacetylene", "output": "â •â ­â ½â â ‰â ‘⠞⠽⠇⠢⠑" }, { "input": "oxyacetylene's", "output": "â •â ­â ½â â ‰â ‘⠞⠽⠇⠢⠑⠄⠎" }, { "input": "oxygen", "output": "⠕⠭⠽⠛⠢" }, { "input": "oxygen's", "output": "⠕⠭⠽⠛⠢⠄⠎" }, { "input": "oxygenate", "output": "⠕⠭⠽⠛⠢â â žâ ‘" }, { "input": "oxygenated", "output": "⠕⠭⠽⠛⠢â â žâ «" }, { "input": "oxygenates", "output": "⠕⠭⠽⠛⠢â â žâ ‘â Ž" }, { "input": "oxygenating", "output": "⠕⠭⠽⠛⠢â â žâ Œ" }, { "input": "oxygenation", "output": "⠕⠭⠽⠛⠢⠠â " }, { "input": "oxygenation's", "output": "⠕⠭⠽⠛⠢⠠â â „â Ž" }, { "input": "oxymora", "output": "â •â ­â ½â â •â —â " }, { "input": "oxymoron", "output": "â •â ­â ½â â •â —â •â " }, { "input": "oxymoron's", "output": "â •â ­â ½â â •â —â •â â „â Ž" }, { "input": "oyster", "output": "⠕⠽⠌⠻" }, { "input": "oyster's", "output": "⠕⠽⠌⠻⠄⠎" }, { "input": "oysters", "output": "⠕⠽⠌⠻⠎" }, { "input": "ozone", "output": "â •â µâ â •" }, { "input": "ozone's", "output": "â •â µâ â •â „â Ž" }, { "input": "p", "output": "â °â " }, { "input": "pH", "output": "â â  â “" }, { "input": "pa", "output": "â â " }, { "input": "pa's", "output": "â â â „â Ž" }, { "input": "pablum", "output": "â â â ƒâ ‡â ¥â " }, { "input": "pablum's", "output": "â â â ƒâ ‡â ¥â â „â Ž" }, { "input": "pabulum", "output": "â â â ƒâ ¥â ‡â ¥â " }, { "input": "pabulum's", "output": "â â â ƒâ ¥â ‡â ¥â â „â Ž" }, { "input": "pace", "output": "â â â ‰â ‘" }, { "input": "pace's", "output": "â â â ‰â ‘â „â Ž" }, { "input": "paced", "output": "â â â ‰â «" }, { "input": "pacemaker", "output": "â â â ‰â ‘â â â …â »" }, { "input": "pacemaker's", "output": "â â â ‰â ‘â â â …⠻⠄⠎" }, { "input": "pacemakers", "output": "â â â ‰â ‘â â â …⠻⠎" }, { "input": "pacer", "output": "â â â ‰â »" }, { "input": "pacer's", "output": "â â â ‰â »â „â Ž" }, { "input": "pacers", "output": "â â â ‰â »â Ž" }, { "input": "paces", "output": "â â â ‰â ‘â Ž" }, { "input": "pacesetter", "output": "â â â ‰â ‘â Žâ ‘â žâ žâ »" }, { "input": "pacesetter's", "output": "â â â ‰â ‘⠎⠑⠞⠞⠻⠄⠎" }, { "input": "pacesetters", "output": "â â â ‰â ‘⠎⠑⠞⠞⠻⠎" }, { "input": "pachyderm", "output": "â â â ¡â ½â ™â »â " }, { "input": "pachyderm's", "output": "â â â ¡â ½â ™â »â â „â Ž" }, { "input": "pachyderms", "output": "â â â ¡â ½â ™â »â â Ž" }, { "input": "pachysandra", "output": "â â â ¡â ½â Žâ ¯â —â " }, { "input": "pachysandra's", "output": "â â â ¡â ½â Žâ ¯â —â â „â Ž" }, { "input": "pachysandras", "output": "â â â ¡â ½â Žâ ¯â —â â Ž" }, { "input": "pacific", "output": "â â â ‰â Šâ ‹â Šâ ‰" }, { "input": "pacifically", "output": "â â â ‰â Šâ ‹â Šâ ‰â  â ½" }, { "input": "pacification", "output": "â â â ‰â Šâ ‹â Šâ ‰â  â " }, { "input": "pacification's", "output": "â â â ‰â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "pacified", "output": "â â â ‰â Šâ ‹â Šâ «" }, { "input": "pacifier", "output": "â â â ‰â Šâ ‹â Šâ »" }, { "input": "pacifier's", "output": "â â â ‰â Šâ ‹â Šâ »â „â Ž" }, { "input": "pacifiers", "output": "â â â ‰â Šâ ‹â Šâ »â Ž" }, { "input": "pacifies", "output": "â â â ‰â Šâ ‹â Šâ ‘â Ž" }, { "input": "pacifism", "output": "â â â ‰â Šâ ‹â Šâ Žâ " }, { "input": "pacifism's", "output": "â â â ‰â Šâ ‹â Šâ Žâ â „â Ž" }, { "input": "pacifist", "output": "â â â ‰â Šâ ‹â Šâ Œ" }, { "input": "pacifist's", "output": "â â â ‰â Šâ ‹â Šâ Œâ „â Ž" }, { "input": "pacifistic", "output": "â â â ‰â Šâ ‹â Šâ Œâ Šâ ‰" }, { "input": "pacifists", "output": "â â â ‰â Šâ ‹â Šâ Œâ Ž" }, { "input": "pacify", "output": "â â â ‰â Šâ ‹â ½" }, { "input": "pacifying", "output": "â â â ‰â Šâ ‹â ½â Œ" }, { "input": "pacing", "output": "â â â ‰â Œ" }, { "input": "pack", "output": "â â â ‰â …" }, { "input": "pack's", "output": "â â â ‰â …â „â Ž" }, { "input": "package", "output": "â â â ‰â …â â ›â ‘" }, { "input": "package's", "output": "â â â ‰â …â â ›â ‘â „â Ž" }, { "input": "packaged", "output": "â â â ‰â …â â ›â «" }, { "input": "packager", "output": "â â â ‰â …â â ›â »" }, { "input": "packager's", "output": "â â â ‰â …â â ›â »â „â Ž" }, { "input": "packagers", "output": "â â â ‰â …â â ›â »â Ž" }, { "input": "packages", "output": "â â â ‰â …â â ›â ‘â Ž" }, { "input": "packaging", "output": "â â â ‰â …â â ›â Œ" }, { "input": "packaging's", "output": "â â â ‰â …â â ›â Œâ „â Ž" }, { "input": "packed", "output": "â â â ‰â …â «" }, { "input": "packer", "output": "â â â ‰â …â »" }, { "input": "packer's", "output": "â â â ‰â …⠻⠄⠎" }, { "input": "packers", "output": "â â â ‰â …⠻⠎" }, { "input": "packet", "output": "â â â ‰â …â ‘â ž" }, { "input": "packet's", "output": "â â â ‰â …â ‘â žâ „â Ž" }, { "input": "packets", "output": "â â â ‰â …â ‘â žâ Ž" }, { "input": "packing", "output": "â â â ‰â …â Œ" }, { "input": "packing's", "output": "â â â ‰â …⠌⠄⠎" }, { "input": "packinghouse", "output": "â â â ‰â …⠌⠓⠳⠎⠑" }, { "input": "packinghouse's", "output": "â â â ‰â …⠌⠓⠳⠎⠑⠄⠎" }, { "input": "packinghouses", "output": "â â â ‰â …⠌⠓⠳⠎⠑⠎" }, { "input": "packs", "output": "â â â ‰â …â Ž" }, { "input": "packsaddle", "output": "â â â ‰â …â Žâ â ²â ‡â ‘" }, { "input": "packsaddle's", "output": "â â â ‰â …â Žâ â ²â ‡â ‘â „â Ž" }, { "input": "packsaddles", "output": "â â â ‰â …â Žâ â ²â ‡â ‘â Ž" }, { "input": "pact", "output": "â â â ‰â ž" }, { "input": "pact's", "output": "â â â ‰â žâ „â Ž" }, { "input": "pacts", "output": "â â â ‰â žâ Ž" }, { "input": "pad", "output": "â â â ™" }, { "input": "pad's", "output": "â â â ™â „â Ž" }, { "input": "padded", "output": "â â â ²â «" }, { "input": "paddies", "output": "â â â ²â Šâ ‘â Ž" }, { "input": "padding", "output": "â â â ²â Œ" }, { "input": "padding's", "output": "â â â ²â Œâ „â Ž" }, { "input": "paddle", "output": "â â â ²â ‡â ‘" }, { "input": "paddle's", "output": "â â â ²â ‡â ‘â „â Ž" }, { "input": "paddled", "output": "â â â ²â ‡â «" }, { "input": "paddler", "output": "â â â ²â ‡â »" }, { "input": "paddler's", "output": "â â â ²â ‡â »â „â Ž" }, { "input": "paddlers", "output": "â â â ²â ‡â »â Ž" }, { "input": "paddles", "output": "â â â ²â ‡â ‘â Ž" }, { "input": "paddling", "output": "â â â ²â ‡â Œ" }, { "input": "paddock", "output": "â â â ²â •⠉⠅" }, { "input": "paddock's", "output": "â â â ²â •⠉⠅⠄⠎" }, { "input": "paddocked", "output": "â â â ²â •⠉⠅⠫" }, { "input": "paddocking", "output": "â â â ²â •⠉⠅⠌" }, { "input": "paddocks", "output": "â â â ²â •⠉⠅⠎" }, { "input": "paddy", "output": "â â â ²â ½" }, { "input": "paddy's", "output": "â â â ²â ½â „â Ž" }, { "input": "padlock", "output": "â â â ™â ‡â •⠉⠅" }, { "input": "padlock's", "output": "â â â ™â ‡â •⠉⠅⠄⠎" }, { "input": "padlocked", "output": "â â â ™â ‡â •⠉⠅⠫" }, { "input": "padlocking", "output": "â â â ™â ‡â •⠉⠅⠌" }, { "input": "padlocks", "output": "â â â ™â ‡â •⠉⠅⠎" }, { "input": "padre", "output": "â â â ™â —â ‘" }, { "input": "padre's", "output": "â â â ™â —â ‘â „â Ž" }, { "input": "padres", "output": "â â â ™â —â ‘â Ž" }, { "input": "pads", "output": "â â â ™â Ž" }, { "input": "paean", "output": "â â â ‘â â " }, { "input": "paean's", "output": "â â â ‘â â â „â Ž" }, { "input": "paeans", "output": "â â â ‘â â â Ž" }, { "input": "paella's", "output": "â â â ‘⠇⠇â â „â Ž" }, { "input": "pagan", "output": "â â â ›â â " }, { "input": "pagan's", "output": "â â â ›â â â „â Ž" }, { "input": "paganism", "output": "â â â ›â â â Šâ Žâ " }, { "input": "paganism's", "output": "â â â ›â â â Šâ Žâ â „â Ž" }, { "input": "pagans", "output": "â â â ›â â â Ž" }, { "input": "page", "output": "â â â ›â ‘" }, { "input": "page's", "output": "â â â ›â ‘â „â Ž" }, { "input": "pageant", "output": "â â â ›â ‚â â ž" }, { "input": "pageant's", "output": "â â â ›â ‚â â žâ „â Ž" }, { "input": "pageantry", "output": "â â â ›â ‚â â žâ —â ½" }, { "input": "pageantry's", "output": "â â â ›â ‚â â žâ —⠽⠄⠎" }, { "input": "pageants", "output": "â â â ›â ‚â â žâ Ž" }, { "input": "paged", "output": "â â â ›â «" }, { "input": "pager", "output": "â â â ›â »" }, { "input": "pager's", "output": "â â â ›â »â „â Ž" }, { "input": "pagers", "output": "â â â ›â »â Ž" }, { "input": "pages", "output": "â â â ›â ‘â Ž" }, { "input": "paginate", "output": "â â â ›â ”â â žâ ‘" }, { "input": "paginated", "output": "â â â ›â ”â â žâ «" }, { "input": "paginates", "output": "â â â ›â ”â â žâ ‘â Ž" }, { "input": "paginating", "output": "â â â ›â ”â â žâ Œ" }, { "input": "pagination", "output": "â â â ›â ”â  â " }, { "input": "pagination's", "output": "â â â ›â ”â  â â „â Ž" }, { "input": "paging", "output": "â â â ›â Œ" }, { "input": "pagoda", "output": "â â â ›â •â ™â " }, { "input": "pagoda's", "output": "â â â ›â •â ™â â „â Ž" }, { "input": "pagodas", "output": "â â â ›â •â ™â â Ž" }, { "input": "paid", "output": "â â ™" }, { "input": "pail", "output": "â â â Šâ ‡" }, { "input": "pail's", "output": "â â â Šâ ‡â „â Ž" }, { "input": "pailful", "output": "â â â Šâ ‡â °â ‡" }, { "input": "pailful's", "output": "â â â Šâ ‡â °â ‡â „â Ž" }, { "input": "pailfuls", "output": "â â â Šâ ‡â °â ‡â Ž" }, { "input": "pails", "output": "â â â Šâ ‡â Ž" }, { "input": "pain", "output": "â â â ”" }, { "input": "pain's", "output": "â â â ”â „â Ž" }, { "input": "pained", "output": "â â â ”â «" }, { "input": "painful", "output": "â â â ”â °â ‡" }, { "input": "painfuller", "output": "â â â ”⠰⠇⠇⠻" }, { "input": "painfullest", "output": "â â â ”⠰⠇⠇⠑⠌" }, { "input": "painfully", "output": "â â â ”⠰⠇⠇⠽" }, { "input": "painfulness", "output": "â â â ”⠰⠇⠰⠎" }, { "input": "painfulness's", "output": "â â â ”⠰⠇⠰⠎⠄⠎" }, { "input": "paining", "output": "â â â ”â Œ" }, { "input": "painkiller", "output": "â â â ”⠅⠊⠇⠇⠻" }, { "input": "painkiller's", "output": "â â â ”⠅⠊⠇⠇⠻⠄⠎" }, { "input": "painkillers", "output": "â â â ”⠅⠊⠇⠇⠻⠎" }, { "input": "painless", "output": "â â â ”⠨⠎" }, { "input": "painlessly", "output": "â â â ”⠨⠎⠇⠽" }, { "input": "painlessness", "output": "â â â ”⠨⠎⠰⠎" }, { "input": "painlessness's", "output": "â â â ”⠨⠎⠰⠎⠄⠎" }, { "input": "pains", "output": "â â â ”â Ž" }, { "input": "painstaking", "output": "â â â ”â Žâ žâ â …â Œ" }, { "input": "painstaking's", "output": "â â â ”â Žâ žâ â …⠌⠄⠎" }, { "input": "painstakingly", "output": "â â â ”â Žâ žâ â …⠌⠇⠽" }, { "input": "paint", "output": "â â â ”â ž" }, { "input": "paint's", "output": "â â â ”â žâ „â Ž" }, { "input": "paintbrush", "output": "â â â ”⠞⠃⠗⠥⠩" }, { "input": "paintbrush's", "output": "â â â ”⠞⠃⠗⠥⠩⠄⠎" }, { "input": "paintbrushes", "output": "â â â ”⠞⠃⠗⠥⠩⠑⠎" }, { "input": "painted", "output": "â â â ”â žâ «" }, { "input": "painter", "output": "â â â ”â žâ »" }, { "input": "painter's", "output": "â â â ”⠞⠻⠄⠎" }, { "input": "painters", "output": "â â â ”⠞⠻⠎" }, { "input": "painting", "output": "â â â ”â žâ Œ" }, { "input": "painting's", "output": "â â â ”⠞⠌⠄⠎" }, { "input": "paintings", "output": "â â â ”⠞⠌⠎" }, { "input": "paints", "output": "â â â ”â žâ Ž" }, { "input": "paintwork", "output": "â â â ”â žâ â º" }, { "input": "pair", "output": "â â â Šâ —" }, { "input": "pair's", "output": "â â â Šâ —â „â Ž" }, { "input": "paired", "output": "â â â Šâ —â «" }, { "input": "pairing", "output": "â â â Šâ —â Œ" }, { "input": "pairs", "output": "â â â Šâ —â Ž" }, { "input": "pairwise", "output": "â â â Šâ —⠺⠊⠎⠑" }, { "input": "paisley", "output": "â â â Šâ Žâ ‡â ‘â ½" }, { "input": "paisley's", "output": "â â â Šâ Žâ ‡â ‘⠽⠄⠎" }, { "input": "paisleys", "output": "â â â Šâ Žâ ‡â ‘⠽⠎" }, { "input": "pajama", "output": "â â â šâ â â " }, { "input": "pajamas", "output": "â â â šâ â â â Ž" }, { "input": "pajamas's", "output": "â â â šâ â â â Žâ „â Ž" }, { "input": "pal", "output": "â â â ‡" }, { "input": "pal's", "output": "â â â ‡â „â Ž" }, { "input": "palace", "output": "â â â ‡â â ‰â ‘" }, { "input": "palace's", "output": "â â â ‡â â ‰â ‘â „â Ž" }, { "input": "palaces", "output": "â â â ‡â â ‰â ‘â Ž" }, { "input": "paladin", "output": "â â â ‡â â ™â ”" }, { "input": "paladin's", "output": "â â â ‡â â ™â ”â „â Ž" }, { "input": "paladins", "output": "â â â ‡â â ™â ”â Ž" }, { "input": "palanquin", "output": "â â â ‡â â â Ÿâ ¥â ”" }, { "input": "palanquin's", "output": "â â â ‡â â â Ÿâ ¥â ”â „â Ž" }, { "input": "palanquins", "output": "â â â ‡â â â Ÿâ ¥â ”â Ž" }, { "input": "palatable", "output": "â â â ‡â â žâ â ¼" }, { "input": "palatal", "output": "â â â ‡â â žâ â ‡" }, { "input": "palatal's", "output": "â â â ‡â â žâ â ‡â „â Ž" }, { "input": "palatalization", "output": "â â â ‡â â žâ â ‡â Šâ µâ  â " }, { "input": "palatalization's", "output": "â â â ‡â â žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "palatalize", "output": "â â â ‡â â žâ â ‡â Šâ µâ ‘" }, { "input": "palatalized", "output": "â â â ‡â â žâ â ‡â Šâ µâ «" }, { "input": "palatalizes", "output": "â â â ‡â â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "palatalizing", "output": "â â â ‡â â žâ â ‡â Šâ µâ Œ" }, { "input": "palatals", "output": "â â â ‡â â žâ â ‡â Ž" }, { "input": "palate", "output": "â â â ‡â â žâ ‘" }, { "input": "palate's", "output": "â â â ‡â â žâ ‘â „â Ž" }, { "input": "palates", "output": "â â â ‡â â žâ ‘â Ž" }, { "input": "palatial", "output": "â â â ‡â â žâ Šâ â ‡" }, { "input": "palatially", "output": "â â â ‡â â žâ Šâ  â ½" }, { "input": "palatinate", "output": "â â â ‡â â žâ ”â â žâ ‘" }, { "input": "palatinate's", "output": "â â â ‡â â žâ ”â â žâ ‘â „â Ž" }, { "input": "palatinates", "output": "â â â ‡â â žâ ”â â žâ ‘â Ž" }, { "input": "palatine", "output": "â â â ‡â â žâ ”â ‘" }, { "input": "palatine's", "output": "â â â ‡â â žâ ”â ‘â „â Ž" }, { "input": "palatines", "output": "â â â ‡â â žâ ”â ‘â Ž" }, { "input": "palaver", "output": "â â â ‡â â §â »" }, { "input": "palaver's", "output": "â â â ‡â â §â »â „â Ž" }, { "input": "palavered", "output": "â â â ‡â â §â »â «" }, { "input": "palavering", "output": "â â â ‡â â §â »â Œ" }, { "input": "palavers", "output": "â â â ‡â â §â »â Ž" }, { "input": "pale", "output": "â â â ‡â ‘" }, { "input": "pale's", "output": "â â â ‡â ‘â „â Ž" }, { "input": "paled", "output": "â â â ‡â «" }, { "input": "paleface", "output": "â â â ‡â ‘â ‹â â ‰â ‘" }, { "input": "paleface's", "output": "â â â ‡â ‘â ‹â â ‰â ‘â „â Ž" }, { "input": "palefaces", "output": "â â â ‡â ‘â ‹â â ‰â ‘â Ž" }, { "input": "palely", "output": "â â â ‡â ‘⠇⠽" }, { "input": "paleness", "output": "â â â ‡â ‘â °â Ž" }, { "input": "paleness's", "output": "â â â ‡â ‘â °â Žâ „â Ž" }, { "input": "paleographer", "output": "â â â ‡â ‘⠕⠛⠗â â â “â »" }, { "input": "paleographer's", "output": "â â â ‡â ‘⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "paleographers", "output": "â â â ‡â ‘⠕⠛⠗â â â “⠻⠎" }, { "input": "paleography", "output": "â â â ‡â ‘⠕⠛⠗â â â “â ½" }, { "input": "paleography's", "output": "â â â ‡â ‘⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "paleolithic", "output": "â â â ‡â ‘⠕⠇⠊⠹⠊⠉" }, { "input": "paleontologist", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠊⠌" }, { "input": "paleontologist's", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "paleontologists", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠊⠌⠎" }, { "input": "paleontology", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠽" }, { "input": "paleontology's", "output": "â â â ‡â ‘â •â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "paler", "output": "â â â ‡â »" }, { "input": "pales", "output": "â â â ‡â ‘â Ž" }, { "input": "palest", "output": "â â â ‡â ‘â Œ" }, { "input": "palette", "output": "â â â ‡â ‘â žâ žâ ‘" }, { "input": "palette's", "output": "â â â ‡â ‘â žâ žâ ‘â „â Ž" }, { "input": "palettes", "output": "â â â ‡â ‘â žâ žâ ‘â Ž" }, { "input": "palfrey", "output": "â â â ‡â ‹â —â ‘â ½" }, { "input": "palfrey's", "output": "â â â ‡â ‹â —⠑⠽⠄⠎" }, { "input": "palfreys", "output": "â â â ‡â ‹â —⠑⠽⠎" }, { "input": "palimony", "output": "â â â ‡â Šâ â •â â ½" }, { "input": "palimony's", "output": "â â â ‡â Šâ â •â â ½â „â Ž" }, { "input": "palimpsest", "output": "â â â ‡â Šâ â â Žâ ‘â Œ" }, { "input": "palimpsest's", "output": "â â â ‡â Šâ â â Žâ ‘⠌⠄⠎" }, { "input": "palimpsests", "output": "â â â ‡â Šâ â â Žâ ‘⠌⠎" }, { "input": "palindrome", "output": "â â â ‡â ”⠙⠗⠕â â ‘" }, { "input": "palindrome's", "output": "â â â ‡â ”⠙⠗⠕â â ‘â „â Ž" }, { "input": "palindromes", "output": "â â â ‡â ”⠙⠗⠕â â ‘â Ž" }, { "input": "palindromic", "output": "â â â ‡â ”⠙⠗⠕â â Šâ ‰" }, { "input": "paling", "output": "â â â ‡â Œ" }, { "input": "paling's", "output": "â â â ‡â Œâ „â Ž" }, { "input": "palings", "output": "â â â ‡â Œâ Ž" }, { "input": "palisade", "output": "â â â ‡â Šâ Žâ â ™â ‘" }, { "input": "palisade's", "output": "â â â ‡â Šâ Žâ â ™â ‘â „â Ž" }, { "input": "palisades", "output": "â â â ‡â Šâ Žâ â ™â ‘â Ž" }, { "input": "pall", "output": "â â â ‡â ‡" }, { "input": "pall's", "output": "â â â ‡â ‡â „â Ž" }, { "input": "palladium", "output": "â â â ‡â ‡â â ™â Šâ ¥â " }, { "input": "palladium's", "output": "â â â ‡â ‡â â ™â Šâ ¥â â „â Ž" }, { "input": "pallbearer", "output": "â â â ‡â ‡â ƒâ ‘⠜⠻" }, { "input": "pallbearer's", "output": "â â â ‡â ‡â ƒâ ‘⠜⠻⠄⠎" }, { "input": "pallbearers", "output": "â â â ‡â ‡â ƒâ ‘⠜⠻⠎" }, { "input": "palled", "output": "â â â ‡â ‡â «" }, { "input": "pallet", "output": "â â â ‡â ‡â ‘â ž" }, { "input": "pallet's", "output": "â â â ‡â ‡â ‘â žâ „â Ž" }, { "input": "pallets", "output": "â â â ‡â ‡â ‘â žâ Ž" }, { "input": "palliate", "output": "â â â ‡â ‡â Šâ â žâ ‘" }, { "input": "palliated", "output": "â â â ‡â ‡â Šâ â žâ «" }, { "input": "palliates", "output": "â â â ‡â ‡â Šâ â žâ ‘â Ž" }, { "input": "palliating", "output": "â â â ‡â ‡â Šâ â žâ Œ" }, { "input": "palliation", "output": "â â â ‡â ‡â Šâ  â " }, { "input": "palliation's", "output": "â â â ‡â ‡â Šâ  â â „â Ž" }, { "input": "palliative", "output": "â â â ‡â ‡â Šâ â žâ Šâ §â ‘" }, { "input": "palliative's", "output": "â â â ‡â ‡â Šâ â žâ Šâ §â ‘â „â Ž" }, { "input": "palliatives", "output": "â â â ‡â ‡â Šâ â žâ Šâ §â ‘â Ž" }, { "input": "pallid", "output": "â â â ‡â ‡â Šâ ™" }, { "input": "pallidly", "output": "â â â ‡â ‡â Šâ ™â ‡â ½" }, { "input": "pallidness", "output": "â â â ‡â ‡â Šâ ™â °â Ž" }, { "input": "pallidness's", "output": "â â â ‡â ‡â Šâ ™â °â Žâ „â Ž" }, { "input": "palling", "output": "â â â ‡â ‡â Œ" }, { "input": "pallor", "output": "â â â ‡â ‡â •â —" }, { "input": "pallor's", "output": "â â â ‡â ‡â •â —â „â Ž" }, { "input": "palls", "output": "â â â ‡â ‡â Ž" }, { "input": "palm", "output": "â â â ‡â " }, { "input": "palm's", "output": "â â â ‡â â „â Ž" }, { "input": "palmate", "output": "â â â ‡â â â žâ ‘" }, { "input": "palmed", "output": "â â â ‡â â «" }, { "input": "palmetto", "output": "â â â ‡â â ‘â žâ žâ •" }, { "input": "palmetto's", "output": "â â â ‡â â ‘â žâ žâ •â „â Ž" }, { "input": "palmettos", "output": "â â â ‡â â ‘â žâ žâ •â Ž" }, { "input": "palmier", "output": "â â â ‡â â Šâ »" }, { "input": "palmiest", "output": "â â â ‡â â Šâ ‘â Œ" }, { "input": "palming", "output": "â â â ‡â â Œ" }, { "input": "palmist", "output": "â â â ‡â â Šâ Œ" }, { "input": "palmist's", "output": "â â â ‡â â Šâ Œâ „â Ž" }, { "input": "palmistry", "output": "â â â ‡â â Šâ Œâ —â ½" }, { "input": "palmistry's", "output": "â â â ‡â â Šâ Œâ —⠽⠄⠎" }, { "input": "palmists", "output": "â â â ‡â â Šâ Œâ Ž" }, { "input": "palms", "output": "â â â ‡â â Ž" }, { "input": "palmy", "output": "â â â ‡â â ½" }, { "input": "palomino", "output": "â â â ‡â •â â ”â •" }, { "input": "palomino's", "output": "â â â ‡â •â â ”â •â „â Ž" }, { "input": "palominos", "output": "â â â ‡â •â â ”â •â Ž" }, { "input": "palpable", "output": "â â â ‡â â â ¼" }, { "input": "palpably", "output": "â â â ‡â â â ƒâ ‡â ½" }, { "input": "palpate", "output": "â â â ‡â â â žâ ‘" }, { "input": "palpated", "output": "â â â ‡â â â žâ «" }, { "input": "palpates", "output": "â â â ‡â â â žâ ‘â Ž" }, { "input": "palpating", "output": "â â â ‡â â â žâ Œ" }, { "input": "palpation", "output": "â â â ‡â â  â " }, { "input": "palpation's", "output": "â â â ‡â â  â â „â Ž" }, { "input": "palpitate", "output": "â â â ‡â â Šâ žâ â žâ ‘" }, { "input": "palpitated", "output": "â â â ‡â â Šâ žâ â žâ «" }, { "input": "palpitates", "output": "â â â ‡â â Šâ žâ â žâ ‘â Ž" }, { "input": "palpitating", "output": "â â â ‡â â Šâ žâ â žâ Œ" }, { "input": "palpitation", "output": "â â â ‡â â Šâ žâ  â " }, { "input": "palpitation's", "output": "â â â ‡â â Šâ žâ  â â „â Ž" }, { "input": "palpitations", "output": "â â â ‡â â Šâ žâ  â â Ž" }, { "input": "pals", "output": "â â â ‡â Ž" }, { "input": "palsied", "output": "â â â ‡â Žâ Šâ «" }, { "input": "palsies", "output": "â â â ‡â Žâ Šâ ‘â Ž" }, { "input": "palsy", "output": "â â â ‡â Žâ ½" }, { "input": "palsy's", "output": "â â â ‡â Žâ ½â „â Ž" }, { "input": "palsying", "output": "â â â ‡â Žâ ½â Œ" }, { "input": "paltrier", "output": "â â â ‡â žâ —â Šâ »" }, { "input": "paltriest", "output": "â â â ‡â žâ —â Šâ ‘â Œ" }, { "input": "paltriness", "output": "â â â ‡â žâ —â Šâ °â Ž" }, { "input": "paltriness's", "output": "â â â ‡â žâ —â Šâ °â Žâ „â Ž" }, { "input": "paltry", "output": "â â â ‡â žâ —â ½" }, { "input": "pampas", "output": "â â â â â â Ž" }, { "input": "pampas's", "output": "â â â â â â Žâ „â Ž" }, { "input": "pamper", "output": "â â â â â »" }, { "input": "pampered", "output": "â â â â â »â «" }, { "input": "pampering", "output": "â â â â â »â Œ" }, { "input": "pampers", "output": "â â â â â »â Ž" }, { "input": "pamphlet", "output": "â â â â â “⠇⠑⠞" }, { "input": "pamphlet's", "output": "â â â â â “⠇⠑⠞⠄⠎" }, { "input": "pamphleteer", "output": "â â â â â “⠇⠑⠞⠑⠻" }, { "input": "pamphleteer's", "output": "â â â â â “⠇⠑⠞⠑⠻⠄⠎" }, { "input": "pamphleteers", "output": "â â â â â “⠇⠑⠞⠑⠻⠎" }, { "input": "pamphlets", "output": "â â â â â “⠇⠑⠞⠎" }, { "input": "pan", "output": "â â â " }, { "input": "pan's", "output": "â â â â „â Ž" }, { "input": "panacea", "output": "â â â â â ‰â ‘â " }, { "input": "panacea's", "output": "â â â â â ‰â ‘â â „â Ž" }, { "input": "panaceas", "output": "â â â â â ‰â ‚â Ž" }, { "input": "panache", "output": "â â â â â ¡â ‘" }, { "input": "panache's", "output": "â â â â â ¡â ‘â „â Ž" }, { "input": "pancake", "output": "â â â â ‰â â …â ‘" }, { "input": "pancake's", "output": "â â â â ‰â â …â ‘â „â Ž" }, { "input": "pancaked", "output": "â â â â ‰â â …â «" }, { "input": "pancakes", "output": "â â â â ‰â â …â ‘â Ž" }, { "input": "pancaking", "output": "â â â â ‰â â …â Œ" }, { "input": "panchromatic", "output": "â â â â ¡â —â •â â â žâ Šâ ‰" }, { "input": "pancreas", "output": "â â â â ‰â —â ‚â Ž" }, { "input": "pancreas's", "output": "â â â â ‰â —â ‚â Žâ „â Ž" }, { "input": "pancreases", "output": "â â â â ‰â —â ‚â Žâ ‘â Ž" }, { "input": "pancreatic", "output": "â â â â ‰â —â ‚â žâ Šâ ‰" }, { "input": "panda", "output": "â â ¯â " }, { "input": "panda's", "output": "â â ¯â â „â Ž" }, { "input": "pandas", "output": "â â ¯â â Ž" }, { "input": "pandemic", "output": "â â â â ™â ‘â â Šâ ‰" }, { "input": "pandemic's", "output": "â â â â ™â ‘â â Šâ ‰â „â Ž" }, { "input": "pandemics", "output": "â â â â ™â ‘â â Šâ ‰â Ž" }, { "input": "pandemonium", "output": "â â â â ™â ‘â â •â â Šâ ¥â " }, { "input": "pandemonium's", "output": "â â â â ™â ‘â â •â â Šâ ¥â â „â Ž" }, { "input": "pander", "output": "â â ¯â »" }, { "input": "pander's", "output": "â â ¯â »â „â Ž" }, { "input": "pandered", "output": "â â ¯â »â «" }, { "input": "panderer", "output": "â â ¯â »â »" }, { "input": "panderer's", "output": "â â ¯â »â »â „â Ž" }, { "input": "panderers", "output": "â â ¯â »â »â Ž" }, { "input": "pandering", "output": "â â ¯â »â Œ" }, { "input": "panders", "output": "â â ¯â »â Ž" }, { "input": "pane", "output": "â â â â ‘" }, { "input": "pane's", "output": "â â â â ‘â „â Ž" }, { "input": "panegyric", "output": "â â â â ‘⠛⠽⠗⠊⠉" }, { "input": "panegyric's", "output": "â â â â ‘⠛⠽⠗⠊⠉⠄⠎" }, { "input": "panegyrics", "output": "â â â â ‘⠛⠽⠗⠊⠉⠎" }, { "input": "panel", "output": "â â â â ‘â ‡" }, { "input": "panel's", "output": "â â â â ‘⠇⠄⠎" }, { "input": "paneled", "output": "â â â â ‘⠇⠫" }, { "input": "paneling", "output": "â â â â ‘⠇⠌" }, { "input": "paneling's", "output": "â â â â ‘⠇⠌⠄⠎" }, { "input": "panelings", "output": "â â â â ‘⠇⠌⠎" }, { "input": "panelist", "output": "â â â â ‘⠇⠊⠌" }, { "input": "panelist's", "output": "â â â â ‘⠇⠊⠌⠄⠎" }, { "input": "panelists", "output": "â â â â ‘⠇⠊⠌⠎" }, { "input": "panels", "output": "â â â â ‘⠇⠎" }, { "input": "panes", "output": "â â â â ‘â Ž" }, { "input": "pang", "output": "â â â â ›" }, { "input": "pang's", "output": "â â â â ›â „â Ž" }, { "input": "pangs", "output": "â â â â ›â Ž" }, { "input": "panhandle", "output": "â â â â “⠯⠇⠑" }, { "input": "panhandle's", "output": "â â â â “⠯⠇⠑⠄⠎" }, { "input": "panhandled", "output": "â â â â “⠯⠇⠫" }, { "input": "panhandler", "output": "â â â â “⠯⠇⠻" }, { "input": "panhandler's", "output": "â â â â “⠯⠇⠻⠄⠎" }, { "input": "panhandlers", "output": "â â â â “⠯⠇⠻⠎" }, { "input": "panhandles", "output": "â â â â “⠯⠇⠑⠎" }, { "input": "panhandling", "output": "â â â â “⠯⠇⠌" }, { "input": "panic", "output": "â â â â Šâ ‰" }, { "input": "panic's", "output": "â â â â Šâ ‰â „â Ž" }, { "input": "panicked", "output": "â â â â Šâ ‰â …â «" }, { "input": "panickier", "output": "â â â â Šâ ‰â …â Šâ »" }, { "input": "panickiest", "output": "â â â â Šâ ‰â …â Šâ ‘â Œ" }, { "input": "panicking", "output": "â â â â Šâ ‰â …â Œ" }, { "input": "panicky", "output": "â â â â Šâ ‰â …â ½" }, { "input": "panics", "output": "â â â â Šâ ‰â Ž" }, { "input": "panned", "output": "â â â â â «" }, { "input": "pannier", "output": "â â â â â Šâ »" }, { "input": "pannier's", "output": "â â â â â Šâ »â „â Ž" }, { "input": "panniers", "output": "â â â â â Šâ »â Ž" }, { "input": "panning", "output": "â â â â â Œ" }, { "input": "panoplies", "output": "â â â â •â â ‡â Šâ ‘â Ž" }, { "input": "panoply", "output": "â â â â •â â ‡â ½" }, { "input": "panoply's", "output": "â â â â •â â ‡â ½â „â Ž" }, { "input": "panorama", "output": "â â â â •â —â â â " }, { "input": "panorama's", "output": "â â â â •â —â â â â „â Ž" }, { "input": "panoramas", "output": "â â â â •â —â â â â Ž" }, { "input": "panoramic", "output": "â â â â •â —â â â Šâ ‰" }, { "input": "panpipes's", "output": "â â â â â Šâ â ‘â Žâ „â Ž" }, { "input": "pans", "output": "â â â â Ž" }, { "input": "pansies", "output": "â â â â Žâ Šâ ‘â Ž" }, { "input": "pansy", "output": "â â â â Žâ ½" }, { "input": "pansy's", "output": "â â â â Žâ ½â „â Ž" }, { "input": "pant", "output": "â â â â ž" }, { "input": "pant's", "output": "â â â â žâ „â Ž" }, { "input": "pantaloons", "output": "â â â â žâ â ‡â •â •â â Ž" }, { "input": "pantaloons's", "output": "â â â â žâ â ‡â •â •â â Žâ „â Ž" }, { "input": "panted", "output": "â â â â žâ «" }, { "input": "pantheism", "output": "â â â â ®â Šâ Žâ " }, { "input": "pantheism's", "output": "â â â â ®â Šâ Žâ â „â Ž" }, { "input": "pantheist", "output": "â â â â ®â Šâ Œ" }, { "input": "pantheist's", "output": "â â â â ®â Šâ Œâ „â Ž" }, { "input": "pantheistic", "output": "â â â â ®â Šâ Œâ Šâ ‰" }, { "input": "pantheists", "output": "â â â â ®â Šâ Œâ Ž" }, { "input": "pantheon", "output": "â â â â ®â •â " }, { "input": "pantheon's", "output": "â â â â ®â •â â „â Ž" }, { "input": "pantheons", "output": "â â â â ®â •â â Ž" }, { "input": "panther", "output": "â â â â ®â —" }, { "input": "panther's", "output": "â â â â ®â —â „â Ž" }, { "input": "panthers", "output": "â â â â ®â —â Ž" }, { "input": "pantie", "output": "â â â â žâ Šâ ‘" }, { "input": "pantie's", "output": "â â â â žâ Šâ ‘â „â Ž" }, { "input": "panties", "output": "â â â â žâ Šâ ‘â Ž" }, { "input": "panting", "output": "â â â â žâ Œ" }, { "input": "pantomime", "output": "â â â â žâ •â â Šâ â ‘" }, { "input": "pantomime's", "output": "â â â â žâ •â â Šâ â ‘â „â Ž" }, { "input": "pantomimed", "output": "â â â â žâ •â â Šâ â «" }, { "input": "pantomimes", "output": "â â â â žâ •â â Šâ â ‘â Ž" }, { "input": "pantomimic", "output": "â â â â žâ •â â Šâ â Šâ ‰" }, { "input": "pantomiming", "output": "â â â â žâ •â â Šâ â Œ" }, { "input": "pantomimist", "output": "â â â â žâ •â â Šâ â Šâ Œ" }, { "input": "pantomimist's", "output": "â â â â žâ •â â Šâ â Šâ Œâ „â Ž" }, { "input": "pantomimists", "output": "â â â â žâ •â â Šâ â Šâ Œâ Ž" }, { "input": "pantries", "output": "â â â â žâ —â Šâ ‘â Ž" }, { "input": "pantry", "output": "â â â â žâ —â ½" }, { "input": "pantry's", "output": "â â â â žâ —⠽⠄⠎" }, { "input": "pants", "output": "â â â â žâ Ž" }, { "input": "pantsuit", "output": "â â â â žâ Žâ ¥â Šâ ž" }, { "input": "pantsuit's", "output": "â â â â žâ Žâ ¥â Šâ žâ „â Ž" }, { "input": "pantsuits", "output": "â â â â žâ Žâ ¥â Šâ žâ Ž" }, { "input": "pantyhose", "output": "â â â â žâ ½â “â •â Žâ ‘" }, { "input": "pantyhose's", "output": "â â â â žâ ½â “â •â Žâ ‘â „â Ž" }, { "input": "pantyliner", "output": "â â â â žâ ½â ‡â ”â »" }, { "input": "pantyliner's", "output": "â â â â žâ ½â ‡â ”⠻⠄⠎" }, { "input": "pantywaist", "output": "â â â â žâ ½â ºâ â Šâ Œ" }, { "input": "pantywaist's", "output": "â â â â žâ ½â ºâ â Šâ Œâ „â Ž" }, { "input": "pantywaists", "output": "â â â â žâ ½â ºâ â Šâ Œâ Ž" }, { "input": "pap", "output": "â â â " }, { "input": "pap's", "output": "â â â â „â Ž" }, { "input": "papa", "output": "â â â â " }, { "input": "papa's", "output": "â â â â â „â Ž" }, { "input": "papacies", "output": "â â â â â ‰â Šâ ‘â Ž" }, { "input": "papacy", "output": "â â â â â ‰â ½" }, { "input": "papacy's", "output": "â â â â â ‰â ½â „â Ž" }, { "input": "papal", "output": "â â â â â ‡" }, { "input": "paparazzi's", "output": "â â â â œâ â µâ µâ Šâ „â Ž" }, { "input": "papas", "output": "â â â â â Ž" }, { "input": "papaya", "output": "â â â â â ½â " }, { "input": "papaya's", "output": "â â â â â ½â â „â Ž" }, { "input": "papayas", "output": "â â â â â ½â â Ž" }, { "input": "paper", "output": "â â â â »" }, { "input": "paper's", "output": "â â â â »â „â Ž" }, { "input": "paperback", "output": "â â â â »â ƒâ â ‰â …" }, { "input": "paperback's", "output": "â â â â »â ƒâ â ‰â …â „â Ž" }, { "input": "paperbacks", "output": "â â â â »â ƒâ â ‰â …â Ž" }, { "input": "paperboard", "output": "â â â â »â ƒâ •⠜⠙" }, { "input": "paperboard's", "output": "â â â â »â ƒâ •⠜⠙⠄⠎" }, { "input": "paperboy", "output": "â â â â »â ƒâ •â ½" }, { "input": "paperboy's", "output": "â â â â »â ƒâ •⠽⠄⠎" }, { "input": "paperboys", "output": "â â â â »â ƒâ •⠽⠎" }, { "input": "papered", "output": "â â â â »â «" }, { "input": "paperer", "output": "â â â â »â »" }, { "input": "paperer's", "output": "â â â â »â »â „â Ž" }, { "input": "paperers", "output": "â â â â »â »â Ž" }, { "input": "papergirl", "output": "â â â â »â ›â Šâ —â ‡" }, { "input": "papergirl's", "output": "â â â â »â ›â Šâ —⠇⠄⠎" }, { "input": "papergirls", "output": "â â â â »â ›â Šâ —⠇⠎" }, { "input": "paperhanger", "output": "â â â â »â “â â â ›â »" }, { "input": "paperhanger's", "output": "â â â â »â “â â â ›â »â „â Ž" }, { "input": "paperhangers", "output": "â â â â »â “â â â ›â »â Ž" }, { "input": "paperhanging", "output": "â â â â »â “â â â ›â Œ" }, { "input": "paperhanging's", "output": "â â â â »â “â â â ›â Œâ „â Ž" }, { "input": "papering", "output": "â â â â »â Œ" }, { "input": "papers", "output": "â â â â »â Ž" }, { "input": "paperweight", "output": "â â â â »â ºâ ‘⠊⠣⠞" }, { "input": "paperweight's", "output": "â â â â »â ºâ ‘⠊⠣⠞⠄⠎" }, { "input": "paperweights", "output": "â â â â »â ºâ ‘⠊⠣⠞⠎" }, { "input": "paperwork", "output": "â â â â »â â º" }, { "input": "paperwork's", "output": "â â â â »â â ºâ „â Ž" }, { "input": "papery", "output": "â â â â »â ½" }, { "input": "papilla", "output": "â â â â Šâ ‡â ‡â " }, { "input": "papilla's", "output": "â â â â Šâ ‡â ‡â â „â Ž" }, { "input": "papillae", "output": "â â â â Šâ ‡â ‡â â ‘" }, { "input": "papillary", "output": "â â â â Šâ ‡â ‡â œâ ½" }, { "input": "papoose", "output": "â â â â •â •â Žâ ‘" }, { "input": "papoose's", "output": "â â â â •â •â Žâ ‘â „â Ž" }, { "input": "papooses", "output": "â â â â •â •â Žâ ‘â Ž" }, { "input": "pappies", "output": "â â â â â Šâ ‘â Ž" }, { "input": "pappy's", "output": "â â â â â ½â „â Ž" }, { "input": "paprika", "output": "â â â â —â Šâ …â " }, { "input": "paprika's", "output": "â â â â —â Šâ …â â „â Ž" }, { "input": "paps", "output": "â â â â Ž" }, { "input": "papyri", "output": "â â â â ½â —â Š" }, { "input": "papyrus", "output": "â â â â ½â —⠥⠎" }, { "input": "papyrus's", "output": "â â â â ½â —⠥⠎⠄⠎" }, { "input": "par", "output": "â â œ" }, { "input": "par's", "output": "â â œâ „â Ž" }, { "input": "parable", "output": "â â œâ â ¼" }, { "input": "parable's", "output": "â â œâ â ¼â „â Ž" }, { "input": "parables", "output": "â â œâ â ¼â Ž" }, { "input": "parabola", "output": "â â œâ â ƒâ •â ‡â " }, { "input": "parabola's", "output": "â â œâ â ƒâ •â ‡â â „â Ž" }, { "input": "parabolas", "output": "â â œâ â ƒâ •â ‡â â Ž" }, { "input": "parabolic", "output": "â â œâ â ƒâ •⠇⠊⠉" }, { "input": "parachute", "output": "â â œâ â ¡â ¥â žâ ‘" }, { "input": "parachute's", "output": "â â œâ â ¡â ¥â žâ ‘â „â Ž" }, { "input": "parachuted", "output": "â â œâ â ¡â ¥â žâ «" }, { "input": "parachutes", "output": "â â œâ â ¡â ¥â žâ ‘â Ž" }, { "input": "parachuting", "output": "â â œâ â ¡â ¥â žâ Œ" }, { "input": "parachutist", "output": "â â œâ â ¡â ¥â žâ Šâ Œ" }, { "input": "parachutist's", "output": "â â œâ â ¡â ¥â žâ Šâ Œâ „â Ž" }, { "input": "parachutists", "output": "â â œâ â ¡â ¥â žâ Šâ Œâ Ž" }, { "input": "parade", "output": "â â œâ â ™â ‘" }, { "input": "parade's", "output": "â â œâ â ™â ‘â „â Ž" }, { "input": "paraded", "output": "â â œâ â ™â «" }, { "input": "parader", "output": "â â œâ â ™â »" }, { "input": "parader's", "output": "â â œâ â ™â »â „â Ž" }, { "input": "paraders", "output": "â â œâ â ™â »â Ž" }, { "input": "parades", "output": "â â œâ â ™â ‘â Ž" }, { "input": "paradigm", "output": "â â œâ â ™â Šâ ›â " }, { "input": "paradigm's", "output": "â â œâ â ™â Šâ ›â â „â Ž" }, { "input": "paradigmatic", "output": "â â œâ â ™â Šâ ›â â â žâ Šâ ‰" }, { "input": "paradigms", "output": "â â œâ â ™â Šâ ›â â Ž" }, { "input": "parading", "output": "â â œâ â ™â Œ" }, { "input": "paradisaical", "output": "â â œâ â ™â Šâ Žâ â Šâ ‰â â ‡" }, { "input": "paradise", "output": "â â œâ â ™â Šâ Žâ ‘" }, { "input": "paradise's", "output": "â â œâ â ™â Šâ Žâ ‘â „â Ž" }, { "input": "paradises", "output": "â â œâ â ™â Šâ Žâ ‘â Ž" }, { "input": "paradox", "output": "â â œâ â ™â •â ­" }, { "input": "paradox's", "output": "â â œâ â ™â •â ­â „â Ž" }, { "input": "paradoxes", "output": "â â œâ â ™â •â ­â ‘â Ž" }, { "input": "paradoxical", "output": "â â œâ â ™â •â ­â Šâ ‰â â ‡" }, { "input": "paradoxically", "output": "â â œâ â ™â •⠭⠊⠉⠠⠽" }, { "input": "paraffin", "output": "â â œâ â –â ”" }, { "input": "paraffin's", "output": "â â œâ â –⠔⠄⠎" }, { "input": "paragon", "output": "â â œâ â ›â •â " }, { "input": "paragon's", "output": "â â œâ â ›â •â â „â Ž" }, { "input": "paragons", "output": "â â œâ â ›â •â â Ž" }, { "input": "paragraph", "output": "â â œâ â ›â —â â â “" }, { "input": "paragraph's", "output": "â â œâ â ›â —â â â “â „â Ž" }, { "input": "paragraphed", "output": "â â œâ â ›â —â â â “â «" }, { "input": "paragraphing", "output": "â â œâ â ›â —â â â “â Œ" }, { "input": "paragraphs", "output": "â â œâ â ›â —â â â “â Ž" }, { "input": "parakeet", "output": "â â œâ â …â ‘â ‘â ž" }, { "input": "parakeet's", "output": "â â œâ â …â ‘â ‘â žâ „â Ž" }, { "input": "parakeets", "output": "â â œâ â …â ‘â ‘â žâ Ž" }, { "input": "paralegal", "output": "â â œâ â ‡â ‘â ›â â ‡" }, { "input": "paralegal's", "output": "â â œâ â ‡â ‘â ›â â ‡â „â Ž" }, { "input": "paralegals", "output": "â â œâ â ‡â ‘â ›â â ‡â Ž" }, { "input": "parallax", "output": "â â œâ â ‡â ‡â â ­" }, { "input": "parallax's", "output": "â â œâ â ‡â ‡â â ­â „â Ž" }, { "input": "parallaxes", "output": "â â œâ â ‡â ‡â â ­â ‘â Ž" }, { "input": "parallel", "output": "â â œâ â ‡â ‡â ‘â ‡" }, { "input": "parallel's", "output": "â â œâ â ‡â ‡â ‘⠇⠄⠎" }, { "input": "paralleled", "output": "â â œâ â ‡â ‡â ‘⠇⠫" }, { "input": "paralleling", "output": "â â œâ â ‡â ‡â ‘⠇⠌" }, { "input": "parallelism", "output": "â â œâ â ‡â ‡â ‘⠇⠊⠎â " }, { "input": "parallelism's", "output": "â â œâ â ‡â ‡â ‘⠇⠊⠎â â „â Ž" }, { "input": "parallelisms", "output": "â â œâ â ‡â ‡â ‘⠇⠊⠎â â Ž" }, { "input": "parallelogram", "output": "â â œâ â ‡â ‡â ‘⠇⠕⠛⠗â â " }, { "input": "parallelogram's", "output": "â â œâ â ‡â ‡â ‘⠇⠕⠛⠗â â â „â Ž" }, { "input": "parallelograms", "output": "â â œâ â ‡â ‡â ‘⠇⠕⠛⠗â â â Ž" }, { "input": "parallels", "output": "â â œâ â ‡â ‡â ‘⠇⠎" }, { "input": "paralyses", "output": "â â œâ â ‡â ½â Žâ ‘â Ž" }, { "input": "paralysis", "output": "â â œâ â ‡â ½â Žâ Šâ Ž" }, { "input": "paralysis's", "output": "â â œâ â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "paralytic", "output": "â â œâ â ‡â ½â žâ Šâ ‰" }, { "input": "paralytic's", "output": "â â œâ â ‡â ½â žâ Šâ ‰â „â Ž" }, { "input": "paralytics", "output": "â â œâ â ‡â ½â žâ Šâ ‰â Ž" }, { "input": "paralyze", "output": "â â œâ â ‡â ½â µâ ‘" }, { "input": "paralyzed", "output": "â â œâ â ‡â ½â µâ «" }, { "input": "paralyzes", "output": "â â œâ â ‡â ½â µâ ‘â Ž" }, { "input": "paralyzing", "output": "â â œâ â ‡â ½â µâ Œ" }, { "input": "paralyzingly", "output": "â â œâ â ‡â ½â µâ Œâ ‡â ½" }, { "input": "paramecia", "output": "â â œâ â â ‘⠉⠊â " }, { "input": "paramecium", "output": "â â œâ â â ‘⠉⠊⠥â " }, { "input": "paramecium's", "output": "â â œâ â â ‘⠉⠊⠥â â „â Ž" }, { "input": "paramedic", "output": "â â œâ â â «â Šâ ‰" }, { "input": "paramedic's", "output": "â â œâ â â «â Šâ ‰â „â Ž" }, { "input": "paramedical", "output": "â â œâ â â «â Šâ ‰â â ‡" }, { "input": "paramedical's", "output": "â â œâ â â «â Šâ ‰â â ‡â „â Ž" }, { "input": "paramedicals", "output": "â â œâ â â «â Šâ ‰â â ‡â Ž" }, { "input": "paramedics", "output": "â â œâ â â «â Šâ ‰â Ž" }, { "input": "parameter", "output": "â â œâ â â ‘â žâ »" }, { "input": "parameter's", "output": "â â œâ â â ‘⠞⠻⠄⠎" }, { "input": "parameters", "output": "â â œâ â â ‘⠞⠻⠎" }, { "input": "parametric", "output": "â â œâ â â ‘â žâ —â Šâ ‰" }, { "input": "paramilitaries", "output": "â â œâ â â Šâ ‡â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "paramilitary", "output": "â â œâ â â Šâ ‡â Šâ žâ œâ ½" }, { "input": "paramilitary's", "output": "â â œâ â â Šâ ‡â Šâ žâ œâ ½â „â Ž" }, { "input": "paramount", "output": "â â œâ â â ¨â ž" }, { "input": "paramour", "output": "â â œâ â â ³â —" }, { "input": "paramour's", "output": "â â œâ â â ³â —â „â Ž" }, { "input": "paramours", "output": "â â œâ â â ³â —â Ž" }, { "input": "paranoia", "output": "â â œâ â â •â Šâ " }, { "input": "paranoia's", "output": "â â œâ â â •â Šâ â „â Ž" }, { "input": "paranoid", "output": "â â œâ â â •â Šâ ™" }, { "input": "paranoid's", "output": "â â œâ â â •⠊⠙⠄⠎" }, { "input": "paranoids", "output": "â â œâ â â •⠊⠙⠎" }, { "input": "paranormal", "output": "â â œâ â â •â —â â â ‡" }, { "input": "parapet", "output": "â â œâ â â ‘â ž" }, { "input": "parapet's", "output": "â â œâ â â ‘â žâ „â Ž" }, { "input": "parapets", "output": "â â œâ â â ‘â žâ Ž" }, { "input": "paraphernalia", "output": "â â œâ â â “â »â â â ‡â Šâ " }, { "input": "paraphernalia's", "output": "â â œâ â â “â »â â â ‡â Šâ â „â Ž" }, { "input": "paraphrase", "output": "â â œâ â â “â —â â Žâ ‘" }, { "input": "paraphrase's", "output": "â â œâ â â “â —â â Žâ ‘â „â Ž" }, { "input": "paraphrased", "output": "â â œâ â â “â —â â Žâ «" }, { "input": "paraphrases", "output": "â â œâ â â “â —â â Žâ ‘â Ž" }, { "input": "paraphrasing", "output": "â â œâ â â “â —â â Žâ Œ" }, { "input": "paraplegia", "output": "â â œâ â â ‡â ‘⠛⠊â " }, { "input": "paraplegia's", "output": "â â œâ â â ‡â ‘⠛⠊â â „â Ž" }, { "input": "paraplegic", "output": "â â œâ â â ‡â ‘⠛⠊⠉" }, { "input": "paraplegic's", "output": "â â œâ â â ‡â ‘⠛⠊⠉⠄⠎" }, { "input": "paraplegics", "output": "â â œâ â â ‡â ‘⠛⠊⠉⠎" }, { "input": "paraprofessional", "output": "â â œâ â â —â •â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "paraprofessional's", "output": "â â œâ â â —â •â ‹â ‘â Žâ ¨â â â ‡â „â Ž" }, { "input": "paraprofessionals", "output": "â â œâ â â —â •â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "parapsychologist", "output": "â â œâ â â Žâ ½â ¡â •⠇⠕⠛⠊⠌" }, { "input": "parapsychologist's", "output": "â â œâ â â Žâ ½â ¡â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "parapsychologists", "output": "â â œâ â â Žâ ½â ¡â •⠇⠕⠛⠊⠌⠎" }, { "input": "parapsychology", "output": "â â œâ â â Žâ ½â ¡â •⠇⠕⠛⠽" }, { "input": "parapsychology's", "output": "â â œâ â â Žâ ½â ¡â •⠇⠕⠛⠽⠄⠎" }, { "input": "paraquat's", "output": "â â œâ â Ÿâ ¥â â žâ „â Ž" }, { "input": "parasite", "output": "â â œâ â Žâ Šâ žâ ‘" }, { "input": "parasite's", "output": "â â œâ â Žâ Šâ žâ ‘â „â Ž" }, { "input": "parasites", "output": "â â œâ â Žâ Šâ žâ ‘â Ž" }, { "input": "parasitic", "output": "â â œâ â Žâ Šâ žâ Šâ ‰" }, { "input": "parasitism", "output": "â â œâ â Žâ Šâ žâ Šâ Žâ " }, { "input": "parasitism's", "output": "â â œâ â Žâ Šâ žâ Šâ Žâ â „â Ž" }, { "input": "parasol", "output": "â â œâ â Žâ •â ‡" }, { "input": "parasol's", "output": "â â œâ â Žâ •⠇⠄⠎" }, { "input": "parasols", "output": "â â œâ â Žâ •⠇⠎" }, { "input": "parasympathetic", "output": "â â œâ â Žâ ½â â â â ®â žâ Šâ ‰" }, { "input": "parasympathetics", "output": "â â œâ â Žâ ½â â â â ®â žâ Šâ ‰â Ž" }, { "input": "parathion", "output": "â â œâ â ¹â Šâ •â " }, { "input": "parathion's", "output": "â â œâ â ¹â Šâ •â â „â Ž" }, { "input": "parathyroid", "output": "â â œâ â ¹â ½â —â •â Šâ ™" }, { "input": "parathyroid's", "output": "â â œâ â ¹â ½â —⠕⠊⠙⠄⠎" }, { "input": "parathyroids", "output": "â â œâ â ¹â ½â —⠕⠊⠙⠎" }, { "input": "paratrooper", "output": "â â œâ â žâ —â •â •â â »" }, { "input": "paratrooper's", "output": "â â œâ â žâ —â •â •â â »â „â Ž" }, { "input": "paratroopers", "output": "â â œâ â žâ —â •â •â â »â Ž" }, { "input": "paratroops", "output": "â â œâ â žâ —â •â •â â Ž" }, { "input": "paratroops's", "output": "â â œâ â žâ —â •â •â â Žâ „â Ž" }, { "input": "paratyphoid", "output": "â â œâ â žâ ½â â “â •â Šâ ™" }, { "input": "paratyphoid's", "output": "â â œâ â žâ ½â â “⠕⠊⠙⠄⠎" }, { "input": "parboil", "output": "â â œâ ƒâ •â Šâ ‡" }, { "input": "parboiled", "output": "â â œâ ƒâ •⠊⠇⠫" }, { "input": "parboiling", "output": "â â œâ ƒâ •⠊⠇⠌" }, { "input": "parboils", "output": "â â œâ ƒâ •⠊⠇⠎" }, { "input": "parcel", "output": "â â œâ ‰â ‘â ‡" }, { "input": "parcel's", "output": "â â œâ ‰â ‘⠇⠄⠎" }, { "input": "parceled", "output": "â â œâ ‰â ‘⠇⠫" }, { "input": "parceling", "output": "â â œâ ‰â ‘⠇⠌" }, { "input": "parcels", "output": "â â œâ ‰â ‘⠇⠎" }, { "input": "parch", "output": "â â œâ ¡" }, { "input": "parched", "output": "â â œâ ¡â «" }, { "input": "parches", "output": "â â œâ ¡â ‘â Ž" }, { "input": "parching", "output": "â â œâ ¡â Œ" }, { "input": "parchment", "output": "â â œâ ¡â °â ž" }, { "input": "parchment's", "output": "â â œâ ¡â °â žâ „â Ž" }, { "input": "parchments", "output": "â â œâ ¡â °â žâ Ž" }, { "input": "pardon", "output": "â â œâ ™â •â " }, { "input": "pardon's", "output": "â â œâ ™â •â â „â Ž" }, { "input": "pardonable", "output": "â â œâ ™â •â â â ¼" }, { "input": "pardoned", "output": "â â œâ ™â •â â «" }, { "input": "pardoner", "output": "â â œâ ™â •â â »" }, { "input": "pardoner's", "output": "â â œâ ™â •â â »â „â Ž" }, { "input": "pardoners", "output": "â â œâ ™â •â â »â Ž" }, { "input": "pardoning", "output": "â â œâ ™â •â â Œ" }, { "input": "pardons", "output": "â â œâ ™â •â â Ž" }, { "input": "pare", "output": "â â œâ ‘" }, { "input": "pared", "output": "â â œâ «" }, { "input": "paregoric", "output": "â â œâ ‘⠛⠕⠗⠊⠉" }, { "input": "paregoric's", "output": "â â œâ ‘⠛⠕⠗⠊⠉⠄⠎" }, { "input": "parent", "output": "â â œâ ¢â ž" }, { "input": "parent's", "output": "â â œâ ¢â žâ „â Ž" }, { "input": "parentage", "output": "â â œâ ¢â žâ â ›â ‘" }, { "input": "parentage's", "output": "â â œâ ¢â žâ â ›â ‘â „â Ž" }, { "input": "parental", "output": "â â œâ ¢â žâ â ‡" }, { "input": "parented", "output": "â â œâ ¢â žâ «" }, { "input": "parentheses", "output": "â â œâ ¢â ®â Žâ ‘â Ž" }, { "input": "parenthesis", "output": "â â œâ ¢â ®â Žâ Šâ Ž" }, { "input": "parenthesis's", "output": "â â œâ ¢â ®â Žâ Šâ Žâ „â Ž" }, { "input": "parenthesize", "output": "â â œâ ¢â ®â Žâ Šâ µâ ‘" }, { "input": "parenthesized", "output": "â â œâ ¢â ®â Žâ Šâ µâ «" }, { "input": "parenthesizes", "output": "â â œâ ¢â ®â Žâ Šâ µâ ‘â Ž" }, { "input": "parenthesizing", "output": "â â œâ ¢â ®â Žâ Šâ µâ Œ" }, { "input": "parenthetic", "output": "â â œâ ¢â ®â žâ Šâ ‰" }, { "input": "parenthetical", "output": "â â œâ ¢â ®â žâ Šâ ‰â â ‡" }, { "input": "parenthetically", "output": "â â œâ ¢â ®â žâ Šâ ‰â  â ½" }, { "input": "parenthood", "output": "â â œâ ¢â žâ “â •â •â ™" }, { "input": "parenthood's", "output": "â â œâ ¢â žâ “⠕⠕⠙⠄⠎" }, { "input": "parenting", "output": "â â œâ ¢â žâ Œ" }, { "input": "parenting's", "output": "â â œâ ¢â žâ Œâ „â Ž" }, { "input": "parents", "output": "â â œâ ¢â žâ Ž" }, { "input": "parer", "output": "â â œâ »" }, { "input": "parer's", "output": "â â œâ »â „â Ž" }, { "input": "parers", "output": "â â œâ »â Ž" }, { "input": "pares", "output": "â â œâ ‘â Ž" }, { "input": "pareses", "output": "â â œâ ‘â Žâ ‘â Ž" }, { "input": "paresis", "output": "â â œâ ‘â Žâ Šâ Ž" }, { "input": "paresis's", "output": "â â œâ ‘â Žâ Šâ Žâ „â Ž" }, { "input": "parfait", "output": "â â œâ ‹â â Šâ ž" }, { "input": "parfait's", "output": "â â œâ ‹â â Šâ žâ „â Ž" }, { "input": "parfaits", "output": "â â œâ ‹â â Šâ žâ Ž" }, { "input": "pariah", "output": "â â œâ Šâ â “" }, { "input": "pariah's", "output": "â â œâ Šâ â “â „â Ž" }, { "input": "pariahs", "output": "â â œâ Šâ â “â Ž" }, { "input": "parietal", "output": "â â œâ Šâ ‘â žâ â ‡" }, { "input": "parimutuel", "output": "â â œâ Šâ â ¥â žâ ¥â ‘â ‡" }, { "input": "parimutuel's", "output": "â â œâ Šâ â ¥â žâ ¥â ‘⠇⠄⠎" }, { "input": "parimutuels", "output": "â â œâ Šâ â ¥â žâ ¥â ‘⠇⠎" }, { "input": "paring", "output": "â â œâ Œ" }, { "input": "paring's", "output": "â â œâ Œâ „â Ž" }, { "input": "parings", "output": "â â œâ Œâ Ž" }, { "input": "parish", "output": "â â œâ Šâ ©" }, { "input": "parish's", "output": "â â œâ Šâ ©â „â Ž" }, { "input": "parishes", "output": "â â œâ Šâ ©â ‘â Ž" }, { "input": "parishioner", "output": "â â œâ Šâ ©â Šâ •â â »" }, { "input": "parishioner's", "output": "â â œâ Šâ ©â Šâ •â â »â „â Ž" }, { "input": "parishioners", "output": "â â œâ Šâ ©â Šâ •â â »â Ž" }, { "input": "parity", "output": "â â œâ °â ½" }, { "input": "parity's", "output": "â â œâ °â ½â „â Ž" }, { "input": "park", "output": "â â œâ …" }, { "input": "park's", "output": "â â œâ …â „â Ž" }, { "input": "parka", "output": "â â œâ …â " }, { "input": "parka's", "output": "â â œâ …â â „â Ž" }, { "input": "parkas", "output": "â â œâ …â â Ž" }, { "input": "parked", "output": "â â œâ …â «" }, { "input": "parking", "output": "â â œâ …â Œ" }, { "input": "parking's", "output": "â â œâ …⠌⠄⠎" }, { "input": "parks", "output": "â â œâ …â Ž" }, { "input": "parkway", "output": "â â œâ …â ºâ â ½" }, { "input": "parkway's", "output": "â â œâ …â ºâ â ½â „â Ž" }, { "input": "parkways", "output": "â â œâ …â ºâ â ½â Ž" }, { "input": "parlance", "output": "â â œâ ‡â ¨â ‘" }, { "input": "parlance's", "output": "â â œâ ‡â ¨â ‘â „â Ž" }, { "input": "parlay", "output": "â â œâ ‡â â ½" }, { "input": "parlay's", "output": "â â œâ ‡â â ½â „â Ž" }, { "input": "parlayed", "output": "â â œâ ‡â â ½â «" }, { "input": "parlaying", "output": "â â œâ ‡â â ½â Œ" }, { "input": "parlays", "output": "â â œâ ‡â â ½â Ž" }, { "input": "parley", "output": "â â œâ ‡â ‘â ½" }, { "input": "parley's", "output": "â â œâ ‡â ‘⠽⠄⠎" }, { "input": "parleyed", "output": "â â œâ ‡â ‘⠽⠫" }, { "input": "parleying", "output": "â â œâ ‡â ‘⠽⠌" }, { "input": "parleys", "output": "â â œâ ‡â ‘⠽⠎" }, { "input": "parliament", "output": "â â œâ ‡â Šâ â °â ž" }, { "input": "parliament's", "output": "â â œâ ‡â Šâ â °â žâ „â Ž" }, { "input": "parliamentarian", "output": "â â œâ ‡â Šâ â °â žâ œâ Šâ â " }, { "input": "parliamentarian's", "output": "â â œâ ‡â Šâ â °â žâ œâ Šâ â â „â Ž" }, { "input": "parliamentarians", "output": "â â œâ ‡â Šâ â °â žâ œâ Šâ â â Ž" }, { "input": "parliamentary", "output": "â â œâ ‡â Šâ â °â žâ œâ ½" }, { "input": "parliaments", "output": "â â œâ ‡â Šâ â °â žâ Ž" }, { "input": "parlor", "output": "â â œâ ‡â •â —" }, { "input": "parlor's", "output": "â â œâ ‡â •â —â „â Ž" }, { "input": "parlors", "output": "â â œâ ‡â •â —â Ž" }, { "input": "parmigiana", "output": "â â œâ â Šâ ›â Šâ â â " }, { "input": "parochial", "output": "â â œâ •â ¡â Šâ â ‡" }, { "input": "parochialism", "output": "â â œâ •â ¡â Šâ â ‡â Šâ Žâ " }, { "input": "parochialism's", "output": "â â œâ •â ¡â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "parodied", "output": "â â œâ •⠙⠊⠫" }, { "input": "parodies", "output": "â â œâ •⠙⠊⠑⠎" }, { "input": "parody", "output": "â â œâ •⠙⠽" }, { "input": "parody's", "output": "â â œâ •⠙⠽⠄⠎" }, { "input": "parodying", "output": "â â œâ •⠙⠽⠌" }, { "input": "parole", "output": "â â œâ •⠇⠑" }, { "input": "parole's", "output": "â â œâ •⠇⠑⠄⠎" }, { "input": "paroled", "output": "â â œâ •⠇⠫" }, { "input": "parolee", "output": "â â œâ •⠇⠑⠑" }, { "input": "parolee's", "output": "â â œâ •⠇⠑⠑⠄⠎" }, { "input": "parolees", "output": "â â œâ •⠇⠑⠑⠎" }, { "input": "paroles", "output": "â â œâ •⠇⠑⠎" }, { "input": "paroling", "output": "â â œâ •⠇⠌" }, { "input": "paroxysm", "output": "â â œâ •⠭⠽⠎â " }, { "input": "paroxysm's", "output": "â â œâ •⠭⠽⠎â â „â Ž" }, { "input": "paroxysmal", "output": "â â œâ •⠭⠽⠎â â â ‡" }, { "input": "paroxysms", "output": "â â œâ •⠭⠽⠎â â Ž" }, { "input": "parquet", "output": "â â œâ Ÿâ ¥â ‘â ž" }, { "input": "parquet's", "output": "â â œâ Ÿâ ¥â ‘â žâ „â Ž" }, { "input": "parqueted", "output": "â â œâ Ÿâ ¥â ‘â žâ «" }, { "input": "parqueting", "output": "â â œâ Ÿâ ¥â ‘â žâ Œ" }, { "input": "parquetry", "output": "â â œâ Ÿâ ¥â ‘â žâ —â ½" }, { "input": "parquetry's", "output": "â â œâ Ÿâ ¥â ‘⠞⠗⠽⠄⠎" }, { "input": "parquets", "output": "â â œâ Ÿâ ¥â ‘â žâ Ž" }, { "input": "parred", "output": "â â œâ —â «" }, { "input": "parricidal", "output": "â â œâ —⠊⠉⠊⠙â â ‡" }, { "input": "parricide", "output": "â â œâ —⠊⠉⠊⠙⠑" }, { "input": "parricide's", "output": "â â œâ —⠊⠉⠊⠙⠑⠄⠎" }, { "input": "parricides", "output": "â â œâ —⠊⠉⠊⠙⠑⠎" }, { "input": "parried", "output": "â â œâ —â Šâ «" }, { "input": "parries", "output": "â â œâ —â Šâ ‘â Ž" }, { "input": "parring", "output": "â â œâ —â Œ" }, { "input": "parrot", "output": "â â œâ —â •â ž" }, { "input": "parrot's", "output": "â â œâ —â •â žâ „â Ž" }, { "input": "parroted", "output": "â â œâ —â •â žâ «" }, { "input": "parroting", "output": "â â œâ —â •â žâ Œ" }, { "input": "parrots", "output": "â â œâ —â •â žâ Ž" }, { "input": "parry", "output": "â â œâ —â ½" }, { "input": "parry's", "output": "â â œâ —⠽⠄⠎" }, { "input": "parrying", "output": "â â œâ —⠽⠌" }, { "input": "pars", "output": "â â œâ Ž" }, { "input": "parse", "output": "â â œâ Žâ ‘" }, { "input": "parsec", "output": "â â œâ Žâ ‘â ‰" }, { "input": "parsec's", "output": "â â œâ Žâ ‘⠉⠄⠎" }, { "input": "parsecs", "output": "â â œâ Žâ ‘⠉⠎" }, { "input": "parsed", "output": "â â œâ Žâ «" }, { "input": "parser", "output": "â â œâ Žâ »" }, { "input": "parses", "output": "â â œâ Žâ ‘â Ž" }, { "input": "parsimonious", "output": "â â œâ Žâ Šâ â •â â Šâ ³â Ž" }, { "input": "parsimony", "output": "â â œâ Žâ Šâ â •â â ½" }, { "input": "parsimony's", "output": "â â œâ Žâ Šâ â •â â ½â „â Ž" }, { "input": "parsing", "output": "â â œâ Žâ Œ" }, { "input": "parsley", "output": "â â œâ Žâ ‡â ‘â ½" }, { "input": "parsley's", "output": "â â œâ Žâ ‡â ‘⠽⠄⠎" }, { "input": "parsnip", "output": "â â œâ Žâ â Šâ " }, { "input": "parsnip's", "output": "â â œâ Žâ â Šâ â „â Ž" }, { "input": "parsnips", "output": "â â œâ Žâ â Šâ â Ž" }, { "input": "parson", "output": "â â œâ Žâ •â " }, { "input": "parson's", "output": "â â œâ Žâ •â â „â Ž" }, { "input": "parsonage", "output": "â â œâ Žâ •â â â ›â ‘" }, { "input": "parsonage's", "output": "â â œâ Žâ •â â â ›â ‘â „â Ž" }, { "input": "parsonages", "output": "â â œâ Žâ •â â â ›â ‘â Ž" }, { "input": "parsons", "output": "â â œâ Žâ •â â Ž" }, { "input": "part", "output": "â â " }, { "input": "part's", "output": "â â â „â Ž" }, { "input": "partake", "output": "â â œâ žâ â …â ‘" }, { "input": "partaken", "output": "â â œâ žâ â …â ¢" }, { "input": "partaker", "output": "â â œâ žâ â …â »" }, { "input": "partaker's", "output": "â â œâ žâ â …⠻⠄⠎" }, { "input": "partakers", "output": "â â œâ žâ â …⠻⠎" }, { "input": "partakes", "output": "â â œâ žâ â …â ‘â Ž" }, { "input": "partaking", "output": "â â œâ žâ â …â Œ" }, { "input": "parted", "output": "â â â «" }, { "input": "parterre", "output": "â â â »â —â ‘" }, { "input": "parterre's", "output": "â â â »â —â ‘â „â Ž" }, { "input": "parterres", "output": "â â â »â —â ‘â Ž" }, { "input": "parthenogenesis", "output": "â â œâ ®â â •⠛⠢⠑⠎⠊⠎" }, { "input": "parthenogenesis's", "output": "â â œâ ®â â •⠛⠢⠑⠎⠊⠎⠄⠎" }, { "input": "partial", "output": "â â â Šâ â ‡" }, { "input": "partial's", "output": "â â â Šâ â ‡â „â Ž" }, { "input": "partiality", "output": "â â â Šâ â ‡â °â ½" }, { "input": "partiality's", "output": "â â â Šâ â ‡â °â ½â „â Ž" }, { "input": "partially", "output": "â â â Šâ  â ½" }, { "input": "partials", "output": "â â â Šâ â ‡â Ž" }, { "input": "participant", "output": "â â â Šâ ‰â Šâ â â â ž" }, { "input": "participant's", "output": "â â â Šâ ‰â Šâ â â â žâ „â Ž" }, { "input": "participants", "output": "â â â Šâ ‰â Šâ â â â žâ Ž" }, { "input": "participate", "output": "â â â Šâ ‰â Šâ â â žâ ‘" }, { "input": "participated", "output": "â â â Šâ ‰â Šâ â â žâ «" }, { "input": "participates", "output": "â â â Šâ ‰â Šâ â â žâ ‘â Ž" }, { "input": "participating", "output": "â â â Šâ ‰â Šâ â â žâ Œ" }, { "input": "participation", "output": "â â â Šâ ‰â Šâ â  â " }, { "input": "participation's", "output": "â â â Šâ ‰â Šâ â  â â „â Ž" }, { "input": "participator", "output": "â â â Šâ ‰â Šâ â â žâ •â —" }, { "input": "participator's", "output": "â â â Šâ ‰â Šâ â â žâ •â —â „â Ž" }, { "input": "participators", "output": "â â â Šâ ‰â Šâ â â žâ •â —â Ž" }, { "input": "participatory", "output": "â â â Šâ ‰â Šâ â â žâ •â —â ½" }, { "input": "participial", "output": "â â â Šâ ‰â Šâ â Šâ â ‡" }, { "input": "participial's", "output": "â â â Šâ ‰â Šâ â Šâ â ‡â „â Ž" }, { "input": "participle", "output": "â â â Šâ ‰â Šâ â ‡â ‘" }, { "input": "participle's", "output": "â â â Šâ ‰â Šâ â ‡â ‘â „â Ž" }, { "input": "participles", "output": "â â â Šâ ‰â Šâ â ‡â ‘â Ž" }, { "input": "particle", "output": "â â â Šâ ‰â ‡â ‘" }, { "input": "particle's", "output": "â â â Šâ ‰â ‡â ‘â „â Ž" }, { "input": "particleboard", "output": "â â â Šâ ‰â ‡â ‘⠃⠕⠜⠙" }, { "input": "particleboard's", "output": "â â â Šâ ‰â ‡â ‘⠃⠕⠜⠙⠄⠎" }, { "input": "particles", "output": "â â â Šâ ‰â ‡â ‘â Ž" }, { "input": "particular", "output": "â â â Šâ ‰â ¥â ‡â œ" }, { "input": "particular's", "output": "â â â Šâ ‰â ¥â ‡â œâ „â Ž" }, { "input": "particularities", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "particularity", "output": "â â â Šâ ‰â ¥â ‡â œâ °â ½" }, { "input": "particularity's", "output": "â â â Šâ ‰â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "particularization", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ  â " }, { "input": "particularization's", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ  â â „â Ž" }, { "input": "particularize", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ ‘" }, { "input": "particularized", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ «" }, { "input": "particularizes", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ ‘â Ž" }, { "input": "particularizing", "output": "â â â Šâ ‰â ¥â ‡â œâ Šâ µâ Œ" }, { "input": "particularly", "output": "â â â Šâ ‰â ¥â ‡â œâ ‡â ½" }, { "input": "particulars", "output": "â â â Šâ ‰â ¥â ‡â œâ Ž" }, { "input": "particulate", "output": "â â â Šâ ‰â ¥â ‡â â žâ ‘" }, { "input": "particulate's", "output": "â â â Šâ ‰â ¥â ‡â â žâ ‘â „â Ž" }, { "input": "particulates", "output": "â â â Šâ ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "partied", "output": "â â â Šâ «" }, { "input": "parties", "output": "â â â Šâ ‘â Ž" }, { "input": "parting", "output": "â â â Œ" }, { "input": "parting's", "output": "â â â Œâ „â Ž" }, { "input": "partings", "output": "â â â Œâ Ž" }, { "input": "partisan", "output": "â â â Šâ Žâ â " }, { "input": "partisan's", "output": "â â â Šâ Žâ â â „â Ž" }, { "input": "partisans", "output": "â â â Šâ Žâ â â Ž" }, { "input": "partisanship", "output": "â â â Šâ Žâ â â ©â Šâ " }, { "input": "partisanship's", "output": "â â â Šâ Žâ â â ©â Šâ â „â Ž" }, { "input": "partition", "output": "â â â Šâ °â " }, { "input": "partition's", "output": "â â â Šâ °â â „â Ž" }, { "input": "partitioned", "output": "â â â Šâ °â â «" }, { "input": "partitioning", "output": "â â â Šâ °â â Œ" }, { "input": "partitions", "output": "â â â Šâ °â â Ž" }, { "input": "partly", "output": "â â â ‡â ½" }, { "input": "partner", "output": "â â â â »" }, { "input": "partner's", "output": "â â â â »â „â Ž" }, { "input": "partnered", "output": "â â â â »â «" }, { "input": "partnering", "output": "â â â â »â Œ" }, { "input": "partners", "output": "â â â â »â Ž" }, { "input": "partnership", "output": "â â â â »â ©â Šâ " }, { "input": "partnership's", "output": "â â â â »â ©â Šâ â „â Ž" }, { "input": "partnerships", "output": "â â â â »â ©â Šâ â Ž" }, { "input": "partook", "output": "â â œâ žâ •â •â …" }, { "input": "partridge", "output": "â â â —⠊⠙⠛⠑" }, { "input": "partridge's", "output": "â â â —⠊⠙⠛⠑⠄⠎" }, { "input": "partridges", "output": "â â â —⠊⠙⠛⠑⠎" }, { "input": "parts", "output": "â â â Ž" }, { "input": "parturition", "output": "â â â ¥â —â Šâ °â " }, { "input": "parturition's", "output": "â â â ¥â —â Šâ °â â „â Ž" }, { "input": "partway", "output": "â â â ºâ â ½" }, { "input": "party", "output": "â â â ½" }, { "input": "party's", "output": "â â â ½â „â Ž" }, { "input": "partying", "output": "â â â ½â Œ" }, { "input": "parvenu", "output": "â â œâ §â ¢â ¥" }, { "input": "parvenu's", "output": "â â œâ §â ¢â ¥â „â Ž" }, { "input": "parvenus", "output": "â â œâ §â ¢â ¥â Ž" }, { "input": "pas", "output": "â â â Ž" }, { "input": "pascal", "output": "â â â Žâ ‰â â ‡" }, { "input": "pascal's", "output": "â â â Žâ ‰â â ‡â „â Ž" }, { "input": "pascals", "output": "â â â Žâ ‰â â ‡â Ž" }, { "input": "paschal", "output": "â â â Žâ ¡â â ‡" }, { "input": "pasha", "output": "â â â ©â " }, { "input": "pasha's", "output": "â â â ©â â „â Ž" }, { "input": "pashas", "output": "â â â ©â â Ž" }, { "input": "pass", "output": "â â â Žâ Ž" }, { "input": "pass's", "output": "â â â Žâ Žâ „â Ž" }, { "input": "passable", "output": "â â â Žâ Žâ â ¼" }, { "input": "passably", "output": "â â â Žâ Žâ â ƒâ ‡â ½" }, { "input": "passage", "output": "â â â Žâ Žâ â ›â ‘" }, { "input": "passage's", "output": "â â â Žâ Žâ â ›â ‘â „â Ž" }, { "input": "passages", "output": "â â â Žâ Žâ â ›â ‘â Ž" }, { "input": "passageway", "output": "â â â Žâ Žâ â ›â ‘â ºâ â ½" }, { "input": "passageway's", "output": "â â â Žâ Žâ â ›â ‘â ºâ â ½â „â Ž" }, { "input": "passageways", "output": "â â â Žâ Žâ â ›â ‘â ºâ â ½â Ž" }, { "input": "passbook", "output": "â â â Žâ Žâ ƒâ •â •â …" }, { "input": "passbook's", "output": "â â â Žâ Žâ ƒâ •â •â …â „â Ž" }, { "input": "passbooks", "output": "â â â Žâ Žâ ƒâ •â •â …â Ž" }, { "input": "passed", "output": "â â â Žâ Žâ «" }, { "input": "passel", "output": "â â â Žâ Žâ ‘â ‡" }, { "input": "passel's", "output": "â â â Žâ Žâ ‘⠇⠄⠎" }, { "input": "passels", "output": "â â â Žâ Žâ ‘⠇⠎" }, { "input": "passenger", "output": "â â â Žâ Žâ ¢â ›â »" }, { "input": "passenger's", "output": "â â â Žâ Žâ ¢â ›â »â „â Ž" }, { "input": "passengers", "output": "â â â Žâ Žâ ¢â ›â »â Ž" }, { "input": "passer", "output": "â â â Žâ Žâ »" }, { "input": "passer's", "output": "â â â Žâ Žâ »â „â Ž" }, { "input": "passerby", "output": "â â â Žâ Žâ »â ƒâ ½" }, { "input": "passerby's", "output": "â â â Žâ Žâ »â ƒâ ½â „â Ž" }, { "input": "passers", "output": "â â â Žâ Žâ »â Ž" }, { "input": "passersby", "output": "â â â Žâ Žâ »â Žâ ƒâ ½" }, { "input": "passes", "output": "â â â Žâ Žâ ‘â Ž" }, { "input": "passing", "output": "â â â Žâ Žâ Œ" }, { "input": "passing's", "output": "â â â Žâ Žâ Œâ „â Ž" }, { "input": "passingly", "output": "â â â Žâ Žâ Œâ ‡â ½" }, { "input": "passion", "output": "â â â Žâ ¨â " }, { "input": "passion's", "output": "â â â Žâ ¨â â „â Ž" }, { "input": "passionate", "output": "â â â Žâ ¨â â â žâ ‘" }, { "input": "passionately", "output": "â â â Žâ ¨â â â žâ ‘⠇⠽" }, { "input": "passionless", "output": "â â â Žâ ¨â â ¨â Ž" }, { "input": "passions", "output": "â â â Žâ ¨â â Ž" }, { "input": "passive", "output": "â â â Žâ Žâ Šâ §â ‘" }, { "input": "passive's", "output": "â â â Žâ Žâ Šâ §â ‘â „â Ž" }, { "input": "passively", "output": "â â â Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "passiveness", "output": "â â â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "passiveness's", "output": "â â â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "passives", "output": "â â â Žâ Žâ Šâ §â ‘â Ž" }, { "input": "passivity", "output": "â â â Žâ Žâ Šâ §â °â ½" }, { "input": "passivity's", "output": "â â â Žâ Žâ Šâ §â °â ½â „â Ž" }, { "input": "passivization", "output": "â â â Žâ Žâ Šâ §â Šâ µâ  â " }, { "input": "passkey", "output": "â â â Žâ Žâ …â ‘â ½" }, { "input": "passkey's", "output": "â â â Žâ Žâ …⠑⠽⠄⠎" }, { "input": "passkeys", "output": "â â â Žâ Žâ …⠑⠽⠎" }, { "input": "passport", "output": "â â â Žâ Žâ â •â —â ž" }, { "input": "passport's", "output": "â â â Žâ Žâ â •â —â žâ „â Ž" }, { "input": "passports", "output": "â â â Žâ Žâ â •â —â žâ Ž" }, { "input": "password", "output": "â â â Žâ Žâ ˜â º" }, { "input": "password's", "output": "â â â Žâ Žâ ˜â ºâ „â Ž" }, { "input": "passwords", "output": "â â â Žâ Žâ ˜â ºâ Ž" }, { "input": "past", "output": "â â â Œ" }, { "input": "past's", "output": "â â â Œâ „â Ž" }, { "input": "pasta", "output": "â â â Œâ " }, { "input": "pasta's", "output": "â â â Œâ â „â Ž" }, { "input": "pastas", "output": "â â â Œâ â Ž" }, { "input": "paste", "output": "â â â Œâ ‘" }, { "input": "paste's", "output": "â â â Œâ ‘â „â Ž" }, { "input": "pasteboard", "output": "â â â Œâ ‘⠃⠕⠜⠙" }, { "input": "pasteboard's", "output": "â â â Œâ ‘⠃⠕⠜⠙⠄⠎" }, { "input": "pasted", "output": "â â â Œâ «" }, { "input": "pastel", "output": "â â â Œâ ‘â ‡" }, { "input": "pastel's", "output": "â â â Œâ ‘⠇⠄⠎" }, { "input": "pastels", "output": "â â â Œâ ‘⠇⠎" }, { "input": "pastern", "output": "â â â Œâ »â " }, { "input": "pastern's", "output": "â â â Œâ »â â „â Ž" }, { "input": "pasterns", "output": "â â â Œâ »â â Ž" }, { "input": "pastes", "output": "â â â Œâ ‘â Ž" }, { "input": "pasteurization", "output": "â â â Œâ ‘⠥⠗⠊⠵⠠â " }, { "input": "pasteurization's", "output": "â â â Œâ ‘⠥⠗⠊⠵⠠â â „â Ž" }, { "input": "pasteurize", "output": "â â â Œâ ‘⠥⠗⠊⠵⠑" }, { "input": "pasteurized", "output": "â â â Œâ ‘⠥⠗⠊⠵⠫" }, { "input": "pasteurizer", "output": "â â â Œâ ‘⠥⠗⠊⠵⠻" }, { "input": "pasteurizer's", "output": "â â â Œâ ‘⠥⠗⠊⠵⠻⠄⠎" }, { "input": "pasteurizers", "output": "â â â Œâ ‘⠥⠗⠊⠵⠻⠎" }, { "input": "pasteurizes", "output": "â â â Œâ ‘⠥⠗⠊⠵⠑⠎" }, { "input": "pasteurizing", "output": "â â â Œâ ‘⠥⠗⠊⠵⠌" }, { "input": "pastiche", "output": "â â â Œâ Šâ ¡â ‘" }, { "input": "pastiche's", "output": "â â â Œâ Šâ ¡â ‘â „â Ž" }, { "input": "pastiches", "output": "â â â Œâ Šâ ¡â ‘â Ž" }, { "input": "pastier", "output": "â â â Œâ Šâ »" }, { "input": "pasties", "output": "â â â Œâ Šâ ‘â Ž" }, { "input": "pastiest", "output": "â â â Œâ Šâ ‘â Œ" }, { "input": "pastime", "output": "â â â Žâ â ž" }, { "input": "pastime's", "output": "â â â Žâ â žâ „â Ž" }, { "input": "pastimes", "output": "â â â Žâ â žâ Ž" }, { "input": "pastiness", "output": "â â â Œâ Šâ °â Ž" }, { "input": "pastiness's", "output": "â â â Œâ Šâ °â Žâ „â Ž" }, { "input": "pasting", "output": "â â â Œâ Œ" }, { "input": "pastor", "output": "â â â Œâ •â —" }, { "input": "pastor's", "output": "â â â Œâ •â —â „â Ž" }, { "input": "pastoral", "output": "â â â Œâ •â —â â ‡" }, { "input": "pastoral's", "output": "â â â Œâ •â —â â ‡â „â Ž" }, { "input": "pastorals", "output": "â â â Œâ •â —â â ‡â Ž" }, { "input": "pastorate", "output": "â â â Œâ •â —â â žâ ‘" }, { "input": "pastorate's", "output": "â â â Œâ •â —â â žâ ‘â „â Ž" }, { "input": "pastorates", "output": "â â â Œâ •â —â â žâ ‘â Ž" }, { "input": "pastors", "output": "â â â Œâ •â —â Ž" }, { "input": "pastrami", "output": "â â â Œâ —â â â Š" }, { "input": "pastrami's", "output": "â â â Œâ —â â â Šâ „â Ž" }, { "input": "pastries", "output": "â â â Œâ —â Šâ ‘â Ž" }, { "input": "pastry", "output": "â â â Œâ —â ½" }, { "input": "pastry's", "output": "â â â Œâ —⠽⠄⠎" }, { "input": "pasts", "output": "â â â Œâ Ž" }, { "input": "pasturage", "output": "â â â Œâ ¥â —â â ›â ‘" }, { "input": "pasturage's", "output": "â â â Œâ ¥â —â â ›â ‘â „â Ž" }, { "input": "pasture", "output": "â â â Œâ ¥â —â ‘" }, { "input": "pasture's", "output": "â â â Œâ ¥â —â ‘â „â Ž" }, { "input": "pastured", "output": "â â â Œâ ¥â —â «" }, { "input": "pastureland's", "output": "â â â Œâ ¥â —⠑⠇⠯⠄⠎" }, { "input": "pastures", "output": "â â â Œâ ¥â —â ‘â Ž" }, { "input": "pasturing", "output": "â â â Œâ ¥â —â Œ" }, { "input": "pasty", "output": "â â â Œâ ½" }, { "input": "pasty's", "output": "â â â Œâ ½â „â Ž" }, { "input": "pat", "output": "â â â ž" }, { "input": "pat's", "output": "â â â žâ „â Ž" }, { "input": "patch", "output": "â â â žâ ¡" }, { "input": "patch's", "output": "â â â žâ ¡â „â Ž" }, { "input": "patched", "output": "â â â žâ ¡â «" }, { "input": "patches", "output": "â â â žâ ¡â ‘â Ž" }, { "input": "patchier", "output": "â â â žâ ¡â Šâ »" }, { "input": "patchiest", "output": "â â â žâ ¡â Šâ ‘â Œ" }, { "input": "patchiness", "output": "â â â žâ ¡â Šâ °â Ž" }, { "input": "patchiness's", "output": "â â â žâ ¡â Šâ °â Žâ „â Ž" }, { "input": "patching", "output": "â â â žâ ¡â Œ" }, { "input": "patchwork", "output": "â â â žâ ¡â â º" }, { "input": "patchwork's", "output": "â â â žâ ¡â â ºâ „â Ž" }, { "input": "patchworks", "output": "â â â žâ ¡â â ºâ Ž" }, { "input": "patchy", "output": "â â â žâ ¡â ½" }, { "input": "pate", "output": "â â â žâ ‘" }, { "input": "pate's", "output": "â â â žâ ‘â „â Ž" }, { "input": "patella", "output": "â â â žâ ‘⠇⠇â " }, { "input": "patella's", "output": "â â â žâ ‘⠇⠇â â „â Ž" }, { "input": "patellae", "output": "â â â žâ ‘⠇⠇â â ‘" }, { "input": "patellas", "output": "â â â žâ ‘⠇⠇â â Ž" }, { "input": "patent", "output": "â â â žâ ¢â ž" }, { "input": "patent's", "output": "â â â žâ ¢â žâ „â Ž" }, { "input": "patented", "output": "â â â žâ ¢â žâ «" }, { "input": "patenting", "output": "â â â žâ ¢â žâ Œ" }, { "input": "patently", "output": "â â â žâ ¢â žâ ‡â ½" }, { "input": "patents", "output": "â â â žâ ¢â žâ Ž" }, { "input": "paterfamilias's", "output": "â â â žâ »â ‹â â â Šâ ‡â Šâ â Žâ „â Ž" }, { "input": "paterfamiliases", "output": "â â â žâ »â ‹â â â Šâ ‡â Šâ â Žâ ‘â Ž" }, { "input": "paternal", "output": "â â â žâ »â â â ‡" }, { "input": "paternalism", "output": "â â â žâ »â â â ‡â Šâ Žâ " }, { "input": "paternalism's", "output": "â â â žâ »â â â ‡â Šâ Žâ â „â Ž" }, { "input": "paternalistic", "output": "â â â žâ »â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "paternally", "output": "â â â žâ »â â  â ½" }, { "input": "paternity", "output": "â â â žâ »â â °â ½" }, { "input": "paternity's", "output": "â â â žâ »â â °â ½â „â Ž" }, { "input": "paternoster", "output": "â â â žâ »â â •⠌⠻" }, { "input": "paternoster's", "output": "â â â žâ »â â •⠌⠻⠄⠎" }, { "input": "paternosters", "output": "â â â žâ »â â •⠌⠻⠎" }, { "input": "pates", "output": "â â â žâ ‘â Ž" }, { "input": "path", "output": "â â â ¹" }, { "input": "path's", "output": "â â â ¹â „â Ž" }, { "input": "pathetic", "output": "â â â ®â žâ Šâ ‰" }, { "input": "pathetically", "output": "â â â ®â žâ Šâ ‰â  â ½" }, { "input": "pathless", "output": "â â â ¹â ¨â Ž" }, { "input": "pathogen", "output": "â â â ¹â •⠛⠢" }, { "input": "pathogen's", "output": "â â â ¹â •⠛⠢⠄⠎" }, { "input": "pathogenic", "output": "â â â ¹â •⠛⠢⠊⠉" }, { "input": "pathogens", "output": "â â â ¹â •⠛⠢⠎" }, { "input": "pathological", "output": "â â â ¹â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "pathologically", "output": "â â â ¹â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "pathologist", "output": "â â â ¹â •⠇⠕⠛⠊⠌" }, { "input": "pathologist's", "output": "â â â ¹â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "pathologists", "output": "â â â ¹â •⠇⠕⠛⠊⠌⠎" }, { "input": "pathology", "output": "â â â ¹â •⠇⠕⠛⠽" }, { "input": "pathology's", "output": "â â â ¹â •⠇⠕⠛⠽⠄⠎" }, { "input": "pathos", "output": "â â â ¹â •â Ž" }, { "input": "pathos's", "output": "â â â ¹â •â Žâ „â Ž" }, { "input": "paths", "output": "â â â ¹â Ž" }, { "input": "pathway", "output": "â â â ¹â ºâ â ½" }, { "input": "pathway's", "output": "â â â ¹â ºâ â ½â „â Ž" }, { "input": "pathways", "output": "â â â ¹â ºâ â ½â Ž" }, { "input": "patience", "output": "â â â žâ Šâ °â ‘" }, { "input": "patience's", "output": "â â â žâ Šâ °â ‘â „â Ž" }, { "input": "patient", "output": "â â â žâ Šâ ¢â ž" }, { "input": "patient's", "output": "â â â žâ Šâ ¢â žâ „â Ž" }, { "input": "patienter", "output": "â â â žâ Šâ ¢â žâ »" }, { "input": "patientest", "output": "â â â žâ Šâ ¢â žâ ‘â Œ" }, { "input": "patiently", "output": "â â â žâ Šâ ¢â žâ ‡â ½" }, { "input": "patients", "output": "â â â žâ Šâ ¢â žâ Ž" }, { "input": "patina", "output": "â â â žâ ”â " }, { "input": "patina's", "output": "â â â žâ ”â â „â Ž" }, { "input": "patinas", "output": "â â â žâ ”â â Ž" }, { "input": "patine", "output": "â â â žâ ”â ‘" }, { "input": "patio", "output": "â â â žâ Šâ •" }, { "input": "patio's", "output": "â â â žâ Šâ •â „â Ž" }, { "input": "patios", "output": "â â â žâ Šâ •â Ž" }, { "input": "patois", "output": "â â â žâ •â Šâ Ž" }, { "input": "patois's", "output": "â â â žâ •â Šâ Žâ „â Ž" }, { "input": "patresfamilias", "output": "â â â žâ —â ‘â Žâ ‹â â â Šâ ‡â Šâ â Ž" }, { "input": "patriarch", "output": "â â â žâ —⠊⠜⠡" }, { "input": "patriarch's", "output": "â â â žâ —⠊⠜⠡⠄⠎" }, { "input": "patriarchal", "output": "â â â žâ —⠊⠜⠡â â ‡" }, { "input": "patriarchate", "output": "â â â žâ —⠊⠜⠡â â žâ ‘" }, { "input": "patriarchate's", "output": "â â â žâ —⠊⠜⠡â â žâ ‘â „â Ž" }, { "input": "patriarchates", "output": "â â â žâ —⠊⠜⠡â â žâ ‘â Ž" }, { "input": "patriarchies", "output": "â â â žâ —⠊⠜⠡⠊⠑⠎" }, { "input": "patriarchs", "output": "â â â žâ —⠊⠜⠡⠎" }, { "input": "patriarchy", "output": "â â â žâ —⠊⠜⠡⠽" }, { "input": "patriarchy's", "output": "â â â žâ —⠊⠜⠡⠽⠄⠎" }, { "input": "patrician", "output": "â â â žâ —⠊⠉⠊â â " }, { "input": "patrician's", "output": "â â â žâ —⠊⠉⠊â â â „â Ž" }, { "input": "patricians", "output": "â â â žâ —⠊⠉⠊â â â Ž" }, { "input": "patricide", "output": "â â â žâ —⠊⠉⠊⠙⠑" }, { "input": "patricide's", "output": "â â â žâ —⠊⠉⠊⠙⠑⠄⠎" }, { "input": "patricides", "output": "â â â žâ —⠊⠉⠊⠙⠑⠎" }, { "input": "patrimonial", "output": "â â â žâ —â Šâ â •â â Šâ â ‡" }, { "input": "patrimonies", "output": "â â â žâ —â Šâ â •â â Šâ ‘â Ž" }, { "input": "patrimony", "output": "â â â žâ —â Šâ â •â â ½" }, { "input": "patrimony's", "output": "â â â žâ —â Šâ â •â â ½â „â Ž" }, { "input": "patriot", "output": "â â â žâ —â Šâ •â ž" }, { "input": "patriot's", "output": "â â â žâ —â Šâ •â žâ „â Ž" }, { "input": "patriotic", "output": "â â â žâ —â Šâ •â žâ Šâ ‰" }, { "input": "patriotically", "output": "â â â žâ —⠊⠕⠞⠊⠉⠠⠽" }, { "input": "patriotism", "output": "â â â žâ —â Šâ •â žâ Šâ Žâ " }, { "input": "patriotism's", "output": "â â â žâ —â Šâ •â žâ Šâ Žâ â „â Ž" }, { "input": "patriots", "output": "â â â žâ —â Šâ •â žâ Ž" }, { "input": "patrol", "output": "â â â žâ —â •â ‡" }, { "input": "patrol's", "output": "â â â žâ —⠕⠇⠄⠎" }, { "input": "patrolled", "output": "â â â žâ —⠕⠇⠇⠫" }, { "input": "patrolling", "output": "â â â žâ —⠕⠇⠇⠌" }, { "input": "patrolman", "output": "â â â žâ —â •â ‡â â â " }, { "input": "patrolman's", "output": "â â â žâ —â •â ‡â â â â „â Ž" }, { "input": "patrolmen", "output": "â â â žâ —â •â ‡â â ¢" }, { "input": "patrols", "output": "â â â žâ —⠕⠇⠎" }, { "input": "patrolwoman", "output": "â â â žâ —⠕⠇⠺⠕â â â " }, { "input": "patrolwoman's", "output": "â â â žâ —⠕⠇⠺⠕â â â â „â Ž" }, { "input": "patrolwomen", "output": "â â â žâ —⠕⠇⠺⠕â â ¢" }, { "input": "patron", "output": "â â â žâ —â •â " }, { "input": "patron's", "output": "â â â žâ —â •â â „â Ž" }, { "input": "patronage", "output": "â â â žâ —â •â â â ›â ‘" }, { "input": "patronage's", "output": "â â â žâ —â •â â â ›â ‘â „â Ž" }, { "input": "patronages", "output": "â â â žâ —â •â â â ›â ‘â Ž" }, { "input": "patronize", "output": "â â â žâ —â •â â Šâ µâ ‘" }, { "input": "patronized", "output": "â â â žâ —â •â â Šâ µâ «" }, { "input": "patronizer", "output": "â â â žâ —â •â â Šâ µâ »" }, { "input": "patronizer's", "output": "â â â žâ —â •â â Šâ µâ »â „â Ž" }, { "input": "patronizers", "output": "â â â žâ —â •â â Šâ µâ »â Ž" }, { "input": "patronizes", "output": "â â â žâ —â •â â Šâ µâ ‘â Ž" }, { "input": "patronizing", "output": "â â â žâ —â •â â Šâ µâ Œ" }, { "input": "patronizingly", "output": "â â â žâ —â •â â Šâ µâ Œâ ‡â ½" }, { "input": "patrons", "output": "â â â žâ —â •â â Ž" }, { "input": "patronymic", "output": "â â â žâ —â •â â ½â â Šâ ‰" }, { "input": "patronymic's", "output": "â â â žâ —â •â â ½â â Šâ ‰â „â Ž" }, { "input": "patronymically", "output": "â â â žâ —â •â â ½â â Šâ ‰â  â ½" }, { "input": "patronymics", "output": "â â â žâ —â •â â ½â â Šâ ‰â Ž" }, { "input": "patroon", "output": "â â â žâ —â •â •â " }, { "input": "patroon's", "output": "â â â žâ —â •â •â â „â Ž" }, { "input": "patroons", "output": "â â â žâ —â •â •â â Ž" }, { "input": "pats", "output": "â â â žâ Ž" }, { "input": "patsies", "output": "â â â žâ Žâ Šâ ‘â Ž" }, { "input": "patsy", "output": "â â â žâ Žâ ½" }, { "input": "patsy's", "output": "â â â žâ Žâ ½â „â Ž" }, { "input": "patted", "output": "â â â žâ žâ «" }, { "input": "patter", "output": "â â â žâ žâ »" }, { "input": "patter's", "output": "â â â žâ žâ »â „â Ž" }, { "input": "pattered", "output": "â â â žâ žâ »â «" }, { "input": "pattering", "output": "â â â žâ žâ »â Œ" }, { "input": "pattern", "output": "â â â žâ žâ »â " }, { "input": "pattern's", "output": "â â â žâ žâ »â â „â Ž" }, { "input": "patterned", "output": "â â â žâ žâ »â â «" }, { "input": "patterning", "output": "â â â žâ žâ »â â Œ" }, { "input": "patterns", "output": "â â â žâ žâ »â â Ž" }, { "input": "patters", "output": "â â â žâ žâ »â Ž" }, { "input": "patties", "output": "â â â žâ žâ Šâ ‘â Ž" }, { "input": "patting", "output": "â â â žâ žâ Œ" }, { "input": "patty", "output": "â â â žâ žâ ½" }, { "input": "patty's", "output": "â â â žâ žâ ½â „â Ž" }, { "input": "paucity", "output": "â â â ¥â ‰â °â ½" }, { "input": "paucity's", "output": "â â â ¥â ‰â °â ½â „â Ž" }, { "input": "paunch", "output": "â â â ¥â â ¡" }, { "input": "paunch's", "output": "â â â ¥â â ¡â „â Ž" }, { "input": "paunches", "output": "â â â ¥â â ¡â ‘â Ž" }, { "input": "paunchier", "output": "â â â ¥â â ¡â Šâ »" }, { "input": "paunchiest", "output": "â â â ¥â â ¡â Šâ ‘â Œ" }, { "input": "paunchy", "output": "â â â ¥â â ¡â ½" }, { "input": "pauper", "output": "â â â ¥â â »" }, { "input": "pauper's", "output": "â â â ¥â â »â „â Ž" }, { "input": "pauperism", "output": "â â â ¥â â »â Šâ Žâ " }, { "input": "pauperism's", "output": "â â â ¥â â »â Šâ Žâ â „â Ž" }, { "input": "pauperize", "output": "â â â ¥â â »â Šâ µâ ‘" }, { "input": "pauperized", "output": "â â â ¥â â »â Šâ µâ «" }, { "input": "pauperizes", "output": "â â â ¥â â »â Šâ µâ ‘â Ž" }, { "input": "pauperizing", "output": "â â â ¥â â »â Šâ µâ Œ" }, { "input": "paupers", "output": "â â â ¥â â »â Ž" }, { "input": "pause", "output": "â â â ¥â Žâ ‘" }, { "input": "pause's", "output": "â â â ¥â Žâ ‘â „â Ž" }, { "input": "paused", "output": "â â â ¥â Žâ «" }, { "input": "pauses", "output": "â â â ¥â Žâ ‘â Ž" }, { "input": "pausing", "output": "â â â ¥â Žâ Œ" }, { "input": "pave", "output": "â â â §â ‘" }, { "input": "paved", "output": "â â â §â «" }, { "input": "pavement", "output": "â â â §â ‘â °â ž" }, { "input": "pavement's", "output": "â â â §â ‘â °â žâ „â Ž" }, { "input": "pavements", "output": "â â â §â ‘â °â žâ Ž" }, { "input": "paves", "output": "â â â §â ‘â Ž" }, { "input": "pavilion", "output": "â â â §â Šâ ‡â Šâ •â " }, { "input": "pavilion's", "output": "â â â §â Šâ ‡â Šâ •â â „â Ž" }, { "input": "pavilions", "output": "â â â §â Šâ ‡â Šâ •â â Ž" }, { "input": "paving", "output": "â â â §â Œ" }, { "input": "paving's", "output": "â â â §â Œâ „â Ž" }, { "input": "pavings", "output": "â â â §â Œâ Ž" }, { "input": "paw", "output": "â â â º" }, { "input": "paw's", "output": "â â â ºâ „â Ž" }, { "input": "pawed", "output": "â â â ºâ «" }, { "input": "pawing", "output": "â â â ºâ Œ" }, { "input": "pawl", "output": "â â â ºâ ‡" }, { "input": "pawl's", "output": "â â â ºâ ‡â „â Ž" }, { "input": "pawls", "output": "â â â ºâ ‡â Ž" }, { "input": "pawn", "output": "â â â ºâ " }, { "input": "pawn's", "output": "â â â ºâ â „â Ž" }, { "input": "pawnbroker", "output": "â â â ºâ â ƒâ —â •â …â »" }, { "input": "pawnbroker's", "output": "â â â ºâ â ƒâ —⠕⠅⠻⠄⠎" }, { "input": "pawnbrokers", "output": "â â â ºâ â ƒâ —⠕⠅⠻⠎" }, { "input": "pawnbroking", "output": "â â â ºâ â ƒâ —â •â …â Œ" }, { "input": "pawnbroking's", "output": "â â â ºâ â ƒâ —⠕⠅⠌⠄⠎" }, { "input": "pawned", "output": "â â â ºâ â «" }, { "input": "pawning", "output": "â â â ºâ â Œ" }, { "input": "pawns", "output": "â â â ºâ â Ž" }, { "input": "pawnshop", "output": "â â â ºâ â ©â •â " }, { "input": "pawnshop's", "output": "â â â ºâ â ©â •â â „â Ž" }, { "input": "pawnshops", "output": "â â â ºâ â ©â •â â Ž" }, { "input": "pawpaw", "output": "â â â ºâ â â º" }, { "input": "pawpaw's", "output": "â â â ºâ â â ºâ „â Ž" }, { "input": "pawpaws", "output": "â â â ºâ â â ºâ Ž" }, { "input": "paws", "output": "â â â ºâ Ž" }, { "input": "pay", "output": "â â â ½" }, { "input": "pay's", "output": "â â â ½â „â Ž" }, { "input": "payable", "output": "â â â ½â â ¼" }, { "input": "paycheck", "output": "â â â ½â ¡â ‘⠉⠅" }, { "input": "paycheck's", "output": "â â â ½â ¡â ‘⠉⠅⠄⠎" }, { "input": "paychecks", "output": "â â â ½â ¡â ‘⠉⠅⠎" }, { "input": "payday", "output": "â â â ½â â ™" }, { "input": "payday's", "output": "â â â ½â â ™â „â Ž" }, { "input": "paydays", "output": "â â â ½â â ™â Ž" }, { "input": "payed", "output": "â â â ½â «" }, { "input": "payee", "output": "â â â ½â ‘â ‘" }, { "input": "payee's", "output": "â â â ½â ‘â ‘â „â Ž" }, { "input": "payees", "output": "â â â ½â ‘â ‘â Ž" }, { "input": "payer", "output": "â â â ½â »" }, { "input": "payer's", "output": "â â â ½â »â „â Ž" }, { "input": "payers", "output": "â â â ½â »â Ž" }, { "input": "paying", "output": "â â â ½â Œ" }, { "input": "payload", "output": "â â â ½â ‡â •â â ™" }, { "input": "payload's", "output": "â â â ½â ‡â •â â ™â „â Ž" }, { "input": "payloads", "output": "â â â ½â ‡â •â â ™â Ž" }, { "input": "paymaster", "output": "â â â ½â â â Œâ »" }, { "input": "paymaster's", "output": "â â â ½â â â Œâ »â „â Ž" }, { "input": "paymasters", "output": "â â â ½â â â Œâ »â Ž" }, { "input": "payment", "output": "â â â ½â °â ž" }, { "input": "payment's", "output": "â â â ½â °â žâ „â Ž" }, { "input": "payments", "output": "â â â ½â °â žâ Ž" }, { "input": "payoff", "output": "â â â ½â ·â ‹" }, { "input": "payoff's", "output": "â â â ½â ·â ‹â „â Ž" }, { "input": "payoffs", "output": "â â â ½â ·â ‹â Ž" }, { "input": "payola's", "output": "â â â ½â •â ‡â â „â Ž" }, { "input": "payroll", "output": "â â â ½â —⠕⠇⠇" }, { "input": "payroll's", "output": "â â â ½â —⠕⠇⠇⠄⠎" }, { "input": "payrolls", "output": "â â â ½â —⠕⠇⠇⠎" }, { "input": "pays", "output": "â â â ½â Ž" }, { "input": "pea", "output": "â â ‘â " }, { "input": "pea's", "output": "â â ‘â â „â Ž" }, { "input": "peace", "output": "â â ‚⠉⠑" }, { "input": "peace's", "output": "â â ‚⠉⠑⠄⠎" }, { "input": "peaceable", "output": "â â ‚⠉⠑â â ¼" }, { "input": "peaceably", "output": "â â ‚⠉⠑â â ƒâ ‡â ½" }, { "input": "peaceful", "output": "â â ‚⠉⠑⠰⠇" }, { "input": "peacefully", "output": "â â ‚⠉⠑⠰⠇⠇⠽" }, { "input": "peacefulness", "output": "â â ‚⠉⠑⠰⠇⠰⠎" }, { "input": "peacefulness's", "output": "â â ‚⠉⠑⠰⠇⠰⠎⠄⠎" }, { "input": "peacekeeping", "output": "â â ‚⠉⠑⠅⠑⠑â â Œ" }, { "input": "peacekeeping's", "output": "â â ‚⠉⠑⠅⠑⠑â â Œâ „â Ž" }, { "input": "peacemaker", "output": "â â ‚⠉⠑â â â …â »" }, { "input": "peacemaker's", "output": "â â ‚⠉⠑â â â …⠻⠄⠎" }, { "input": "peacemakers", "output": "â â ‚⠉⠑â â â …⠻⠎" }, { "input": "peacemaking", "output": "â â ‚⠉⠑â â â …â Œ" }, { "input": "peacemaking's", "output": "â â ‚⠉⠑â â â …⠌⠄⠎" }, { "input": "peaces", "output": "â â ‚⠉⠑⠎" }, { "input": "peacetime", "output": "â â ‚⠉⠑â â ž" }, { "input": "peacetime's", "output": "â â ‚⠉⠑â â žâ „â Ž" }, { "input": "peach", "output": "â â ‚â ¡" }, { "input": "peach's", "output": "â â ‚â ¡â „â Ž" }, { "input": "peaches", "output": "â â ‚â ¡â ‘â Ž" }, { "input": "peachier", "output": "â â ‚â ¡â Šâ »" }, { "input": "peachiest", "output": "â â ‚â ¡â Šâ ‘â Œ" }, { "input": "peacock", "output": "â â ‚⠉⠕⠉⠅" }, { "input": "peacock's", "output": "â â ‚⠉⠕⠉⠅⠄⠎" }, { "input": "peacocks", "output": "â â ‚⠉⠕⠉⠅⠎" }, { "input": "peafowl", "output": "â â ‚⠋⠪⠇" }, { "input": "peafowl's", "output": "â â ‚⠋⠪⠇⠄⠎" }, { "input": "peafowls", "output": "â â ‚⠋⠪⠇⠎" }, { "input": "peahen", "output": "â â ‚â “â ¢" }, { "input": "peahen's", "output": "â â ‚⠓⠢⠄⠎" }, { "input": "peahens", "output": "â â ‚⠓⠢⠎" }, { "input": "peak", "output": "â â ‚â …" }, { "input": "peak's", "output": "â â ‚â …â „â Ž" }, { "input": "peaked", "output": "â â ‚â …â «" }, { "input": "peaking", "output": "â â ‚â …â Œ" }, { "input": "peaks", "output": "â â ‚â …â Ž" }, { "input": "peal", "output": "â â ‚â ‡" }, { "input": "peal's", "output": "â â ‚⠇⠄⠎" }, { "input": "pealed", "output": "â â ‚⠇⠫" }, { "input": "pealing", "output": "â â ‚⠇⠌" }, { "input": "peals", "output": "â â ‚⠇⠎" }, { "input": "peanut", "output": "â â ‚â â ¥â ž" }, { "input": "peanut's", "output": "â â ‚â â ¥â žâ „â Ž" }, { "input": "peanuts", "output": "â â ‚â â ¥â žâ Ž" }, { "input": "pear", "output": "â â ‘â œ" }, { "input": "pear's", "output": "â â ‘⠜⠄⠎" }, { "input": "pearl", "output": "â â ‘⠜⠇" }, { "input": "pearl's", "output": "â â ‘⠜⠇⠄⠎" }, { "input": "pearled", "output": "â â ‘⠜⠇⠫" }, { "input": "pearlier", "output": "â â ‘⠜⠇⠊⠻" }, { "input": "pearliest", "output": "â â ‘⠜⠇⠊⠑⠌" }, { "input": "pearling", "output": "â â ‘⠜⠇⠌" }, { "input": "pearls", "output": "â â ‘⠜⠇⠎" }, { "input": "pearly", "output": "â â ‘⠜⠇⠽" }, { "input": "pears", "output": "â â ‘⠜⠎" }, { "input": "peas", "output": "â â ‚â Ž" }, { "input": "peasant", "output": "â â ‚â Žâ â â ž" }, { "input": "peasant's", "output": "â â ‚â Žâ â â žâ „â Ž" }, { "input": "peasantry", "output": "â â ‚â Žâ â â žâ —â ½" }, { "input": "peasantry's", "output": "â â ‚â Žâ â â žâ —⠽⠄⠎" }, { "input": "peasants", "output": "â â ‚â Žâ â â žâ Ž" }, { "input": "peat", "output": "â â ‚â ž" }, { "input": "peat's", "output": "â â ‚â žâ „â Ž" }, { "input": "peatier", "output": "â â ‚â žâ Šâ »" }, { "input": "peatiest", "output": "â â ‚â žâ Šâ ‘â Œ" }, { "input": "pebble", "output": "â â ‘⠃⠼" }, { "input": "pebble's", "output": "â â ‘⠃⠼⠄⠎" }, { "input": "pebbled", "output": "â â ‘⠃⠼⠙" }, { "input": "pebbles", "output": "â â ‘⠃⠼⠎" }, { "input": "pebblier", "output": "â â ‘⠆⠇⠊⠻" }, { "input": "pebbliest", "output": "â â ‘⠆⠇⠊⠑⠌" }, { "input": "pebbling", "output": "â â ‘⠆⠇⠌" }, { "input": "pebbly", "output": "â â ‘⠆⠇⠽" }, { "input": "pecan", "output": "â â ‘â ‰â â " }, { "input": "pecan's", "output": "â â ‘â ‰â â â „â Ž" }, { "input": "pecans", "output": "â â ‘â ‰â â â Ž" }, { "input": "peccadillo", "output": "â â ‘â ’â â ™â Šâ ‡â ‡â •" }, { "input": "peccadillo's", "output": "â â ‘â ’â â ™â Šâ ‡â ‡â •â „â Ž" }, { "input": "peccadilloes", "output": "â â ‘â ’â â ™â Šâ ‡â ‡â •â ‘â Ž" }, { "input": "peccaries", "output": "â â ‘⠒⠜⠊⠑⠎" }, { "input": "peccary", "output": "â â ‘⠒⠜⠽" }, { "input": "peccary's", "output": "â â ‘⠒⠜⠽⠄⠎" }, { "input": "peck", "output": "â â ‘⠉⠅" }, { "input": "peck's", "output": "â â ‘⠉⠅⠄⠎" }, { "input": "pecked", "output": "â â ‘⠉⠅⠫" }, { "input": "pecking", "output": "â â ‘⠉⠅⠌" }, { "input": "pecks", "output": "â â ‘⠉⠅⠎" }, { "input": "pectic", "output": "â â ‘⠉⠞⠊⠉" }, { "input": "pectin", "output": "â â ‘⠉⠞⠔" }, { "input": "pectin's", "output": "â â ‘⠉⠞⠔⠄⠎" }, { "input": "pectoral", "output": "â â ‘⠉⠞⠕⠗â â ‡" }, { "input": "pectoral's", "output": "â â ‘⠉⠞⠕⠗â â ‡â „â Ž" }, { "input": "pectorals", "output": "â â ‘⠉⠞⠕⠗â â ‡â Ž" }, { "input": "peculate", "output": "â â ‘⠉⠥⠇â â žâ ‘" }, { "input": "peculated", "output": "â â ‘⠉⠥⠇â â žâ «" }, { "input": "peculates", "output": "â â ‘⠉⠥⠇â â žâ ‘â Ž" }, { "input": "peculating", "output": "â â ‘⠉⠥⠇â â žâ Œ" }, { "input": "peculation", "output": "â â ‘⠉⠥⠇⠠â " }, { "input": "peculation's", "output": "â â ‘⠉⠥⠇⠠â â „â Ž" }, { "input": "peculator", "output": "â â ‘⠉⠥⠇â â žâ •â —" }, { "input": "peculator's", "output": "â â ‘⠉⠥⠇â â žâ •â —â „â Ž" }, { "input": "peculators", "output": "â â ‘⠉⠥⠇â â žâ •â —â Ž" }, { "input": "peculiar", "output": "â â ‘⠉⠥⠇⠊⠜" }, { "input": "peculiarities", "output": "â â ‘⠉⠥⠇⠊⠜⠊⠞⠊⠑⠎" }, { "input": "peculiarity", "output": "â â ‘⠉⠥⠇⠊⠜⠰⠽" }, { "input": "peculiarity's", "output": "â â ‘⠉⠥⠇⠊⠜⠰⠽⠄⠎" }, { "input": "peculiarly", "output": "â â ‘⠉⠥⠇⠊⠜⠇⠽" }, { "input": "pecuniary", "output": "â â ‘⠉⠥â â Šâ œâ ½" }, { "input": "pedagogic", "output": "â â «â â ›â •⠛⠊⠉" }, { "input": "pedagogical", "output": "â â «â â ›â •⠛⠊⠉â â ‡" }, { "input": "pedagogue", "output": "â â «â â ›â •⠛⠥⠑" }, { "input": "pedagogue's", "output": "â â «â â ›â •⠛⠥⠑⠄⠎" }, { "input": "pedagogues", "output": "â â «â â ›â •⠛⠥⠑⠎" }, { "input": "pedagogy", "output": "â â «â â ›â •⠛⠽" }, { "input": "pedagogy's", "output": "â â «â â ›â •⠛⠽⠄⠎" }, { "input": "pedal", "output": "â â «â â ‡" }, { "input": "pedal's", "output": "â â «â â ‡â „â Ž" }, { "input": "pedaled", "output": "â â «â â ‡â «" }, { "input": "pedaling", "output": "â â «â â ‡â Œ" }, { "input": "pedals", "output": "â â «â â ‡â Ž" }, { "input": "pedant", "output": "â â «â â â ž" }, { "input": "pedant's", "output": "â â «â â â žâ „â Ž" }, { "input": "pedantic", "output": "â â «â â â žâ Šâ ‰" }, { "input": "pedantically", "output": "â â «â â â žâ Šâ ‰â  â ½" }, { "input": "pedantry", "output": "â â «â â â žâ —â ½" }, { "input": "pedantry's", "output": "â â «â â â žâ —⠽⠄⠎" }, { "input": "pedants", "output": "â â «â â â žâ Ž" }, { "input": "peddle", "output": "â â «â ™â ‡â ‘" }, { "input": "peddled", "output": "â â «â ™â ‡â «" }, { "input": "peddler", "output": "â â «â ™â ‡â »" }, { "input": "peddler's", "output": "â â «â ™â ‡â »â „â Ž" }, { "input": "peddlers", "output": "â â «â ™â ‡â »â Ž" }, { "input": "peddles", "output": "â â «â ™â ‡â ‘â Ž" }, { "input": "peddling", "output": "â â «â ™â ‡â Œ" }, { "input": "pederast", "output": "â â «â »â â Œ" }, { "input": "pederast's", "output": "â â «â »â â Œâ „â Ž" }, { "input": "pederasts", "output": "â â «â »â â Œâ Ž" }, { "input": "pederasty", "output": "â â «â »â â Œâ ½" }, { "input": "pederasty's", "output": "â â «â »â â Œâ ½â „â Ž" }, { "input": "pedestal", "output": "â â «â ‘â Œâ â ‡" }, { "input": "pedestal's", "output": "â â «â ‘â Œâ â ‡â „â Ž" }, { "input": "pedestals", "output": "â â «â ‘â Œâ â ‡â Ž" }, { "input": "pedestrian", "output": "â â «â ‘⠌⠗⠊â â " }, { "input": "pedestrian's", "output": "â â «â ‘⠌⠗⠊â â â „â Ž" }, { "input": "pedestrianization", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ  â " }, { "input": "pedestrianize", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ ‘" }, { "input": "pedestrianized", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ «" }, { "input": "pedestrianizes", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ ‘â Ž" }, { "input": "pedestrianizing", "output": "â â «â ‘⠌⠗⠊â â â Šâ µâ Œ" }, { "input": "pedestrians", "output": "â â «â ‘⠌⠗⠊â â â Ž" }, { "input": "pediatric", "output": "â â «â Šâ â žâ —â Šâ ‰" }, { "input": "pediatrician", "output": "â â «â Šâ â žâ —⠊⠉⠊â â " }, { "input": "pediatrician's", "output": "â â «â Šâ â žâ —⠊⠉⠊â â â „â Ž" }, { "input": "pediatricians", "output": "â â «â Šâ â žâ —⠊⠉⠊â â â Ž" }, { "input": "pediatrics", "output": "â â «â Šâ â žâ —⠊⠉⠎" }, { "input": "pediatrics's", "output": "â â «â Šâ â žâ —⠊⠉⠎⠄⠎" }, { "input": "pedicab", "output": "â â «â Šâ ‰â â ƒ" }, { "input": "pedicab's", "output": "â â «â Šâ ‰â â ƒâ „â Ž" }, { "input": "pedicabs", "output": "â â «â Šâ ‰â â ƒâ Ž" }, { "input": "pedicure", "output": "â â «â Šâ ‰â ¥â —â ‘" }, { "input": "pedicure's", "output": "â â «â Šâ ‰â ¥â —â ‘â „â Ž" }, { "input": "pedicured", "output": "â â «â Šâ ‰â ¥â —â «" }, { "input": "pedicures", "output": "â â «â Šâ ‰â ¥â —â ‘â Ž" }, { "input": "pedicuring", "output": "â â «â Šâ ‰â ¥â —â Œ" }, { "input": "pedicurist", "output": "â â «â Šâ ‰â ¥â —â Šâ Œ" }, { "input": "pedicurist's", "output": "â â «â Šâ ‰â ¥â —⠊⠌⠄⠎" }, { "input": "pedicurists", "output": "â â «â Šâ ‰â ¥â —⠊⠌⠎" }, { "input": "pedigree", "output": "â â «â Šâ ›â —â ‘â ‘" }, { "input": "pedigree's", "output": "â â «â Šâ ›â —â ‘â ‘â „â Ž" }, { "input": "pedigreed", "output": "â â «â Šâ ›â —â ‘â «" }, { "input": "pedigrees", "output": "â â «â Šâ ›â —â ‘â ‘â Ž" }, { "input": "pediment", "output": "â â «â Šâ °â ž" }, { "input": "pediment's", "output": "â â «â Šâ °â žâ „â Ž" }, { "input": "pediments", "output": "â â «â Šâ °â žâ Ž" }, { "input": "pedometer", "output": "â â «â •â â ‘â žâ »" }, { "input": "pedometer's", "output": "â â «â •â â ‘⠞⠻⠄⠎" }, { "input": "pedometers", "output": "â â «â •â â ‘⠞⠻⠎" }, { "input": "pedophile", "output": "â â «â •â â “⠊⠇⠑" }, { "input": "pedophiles", "output": "â â «â •â â “⠊⠇⠑⠎" }, { "input": "pedophilia", "output": "â â «â •â â “⠊⠇⠊â " }, { "input": "peduncle", "output": "â â «â ¥â â ‰â ‡â ‘" }, { "input": "peduncle's", "output": "â â «â ¥â â ‰â ‡â ‘â „â Ž" }, { "input": "peduncles", "output": "â â «â ¥â â ‰â ‡â ‘â Ž" }, { "input": "pee", "output": "â â ‘â ‘" }, { "input": "pee's", "output": "â â ‘â ‘â „â Ž" }, { "input": "peed", "output": "â â ‘â «" }, { "input": "peeing", "output": "â â ‘â ‘â Œ" }, { "input": "peek", "output": "â â ‘â ‘â …" }, { "input": "peek's", "output": "â â ‘â ‘â …â „â Ž" }, { "input": "peekaboo", "output": "â â ‘â ‘â …â â ƒâ •â •" }, { "input": "peekaboo's", "output": "â â ‘â ‘â …â â ƒâ •â •â „â Ž" }, { "input": "peeked", "output": "â â ‘â ‘â …â «" }, { "input": "peeking", "output": "â â ‘â ‘â …â Œ" }, { "input": "peeks", "output": "â â ‘â ‘â …â Ž" }, { "input": "peel", "output": "â â ‘â ‘â ‡" }, { "input": "peel's", "output": "â â ‘⠑⠇⠄⠎" }, { "input": "peeled", "output": "â â ‘⠑⠇⠫" }, { "input": "peeling", "output": "â â ‘⠑⠇⠌" }, { "input": "peeling's", "output": "â â ‘⠑⠇⠌⠄⠎" }, { "input": "peelings", "output": "â â ‘⠑⠇⠌⠎" }, { "input": "peels", "output": "â â ‘⠑⠇⠎" }, { "input": "peen", "output": "â â ‘â ¢" }, { "input": "peen's", "output": "â â ‘⠢⠄⠎" }, { "input": "peens", "output": "â â ‘⠢⠎" }, { "input": "peep", "output": "â â ‘â ‘â " }, { "input": "peep's", "output": "â â ‘â ‘â â „â Ž" }, { "input": "peeped", "output": "â â ‘â ‘â â «" }, { "input": "peeper", "output": "â â ‘â ‘â â »" }, { "input": "peeper's", "output": "â â ‘â ‘â â »â „â Ž" }, { "input": "peepers", "output": "â â ‘â ‘â â »â Ž" }, { "input": "peephole", "output": "â â ‘â ‘â â “⠕⠇⠑" }, { "input": "peephole's", "output": "â â ‘â ‘â â “⠕⠇⠑⠄⠎" }, { "input": "peepholes", "output": "â â ‘â ‘â â “⠕⠇⠑⠎" }, { "input": "peeping", "output": "â â ‘â ‘â â Œ" }, { "input": "peeps", "output": "â â ‘â ‘â â Ž" }, { "input": "peer", "output": "â â ‘â »" }, { "input": "peer's", "output": "â â ‘⠻⠄⠎" }, { "input": "peerage", "output": "â â ‘â »â â ›â ‘" }, { "input": "peerage's", "output": "â â ‘â »â â ›â ‘â „â Ž" }, { "input": "peerages", "output": "â â ‘â »â â ›â ‘â Ž" }, { "input": "peered", "output": "â â ‘⠻⠫" }, { "input": "peering", "output": "â â ‘⠻⠌" }, { "input": "peerless", "output": "â â ‘⠻⠨⠎" }, { "input": "peers", "output": "â â ‘⠻⠎" }, { "input": "pees", "output": "â â ‘â ‘â Ž" }, { "input": "peeve", "output": "â â ‘â ‘â §â ‘" }, { "input": "peeve's", "output": "â â ‘â ‘â §â ‘â „â Ž" }, { "input": "peeved", "output": "â â ‘â ‘â §â «" }, { "input": "peeves", "output": "â â ‘â ‘â §â ‘â Ž" }, { "input": "peeving", "output": "â â ‘â ‘â §â Œ" }, { "input": "peevish", "output": "â â ‘â ‘â §â Šâ ©" }, { "input": "peevishly", "output": "â â ‘⠑⠧⠊⠩⠇⠽" }, { "input": "peevishness", "output": "â â ‘â ‘â §â Šâ ©â °â Ž" }, { "input": "peevishness's", "output": "â â ‘â ‘â §â Šâ ©â °â Žâ „â Ž" }, { "input": "peewee", "output": "â â ‘⠑⠺⠑⠑" }, { "input": "peewee's", "output": "â â ‘⠑⠺⠑⠑⠄⠎" }, { "input": "peewees", "output": "â â ‘⠑⠺⠑⠑⠎" }, { "input": "peg", "output": "â â ‘â ›" }, { "input": "peg's", "output": "â â ‘⠛⠄⠎" }, { "input": "pegboard", "output": "â â ‘⠛⠃⠕⠜⠙" }, { "input": "pegboard's", "output": "â â ‘⠛⠃⠕⠜⠙⠄⠎" }, { "input": "pegboards", "output": "â â ‘⠛⠃⠕⠜⠙⠎" }, { "input": "pegged", "output": "â â ‘â ¶â «" }, { "input": "pegging", "output": "â â ‘â ¶â Œ" }, { "input": "pegs", "output": "â â ‘⠛⠎" }, { "input": "peignoir", "output": "â â ‘â Šâ ›â â •â Šâ —" }, { "input": "peignoir's", "output": "â â ‘â Šâ ›â â •â Šâ —â „â Ž" }, { "input": "peignoirs", "output": "â â ‘â Šâ ›â â •â Šâ —â Ž" }, { "input": "pejoration", "output": "â â ‘â šâ •â —â  â " }, { "input": "pejoration's", "output": "â â ‘â šâ •â —â  â â „â Ž" }, { "input": "pejorative", "output": "â â ‘â šâ •â —â â žâ Šâ §â ‘" }, { "input": "pejorative's", "output": "â â ‘â šâ •â —â â žâ Šâ §â ‘â „â Ž" }, { "input": "pejoratives", "output": "â â ‘â šâ •â —â â žâ Šâ §â ‘â Ž" }, { "input": "pekoe", "output": "â â ‘â …â •â ‘" }, { "input": "pekoe's", "output": "â â ‘â …â •â ‘â „â Ž" }, { "input": "pelagic", "output": "â â ‘â ‡â â ›â Šâ ‰" }, { "input": "pelf", "output": "â â ‘⠇⠋" }, { "input": "pelf's", "output": "â â ‘⠇⠋⠄⠎" }, { "input": "pelican", "output": "â â ‘⠇⠊⠉â â " }, { "input": "pelican's", "output": "â â ‘⠇⠊⠉â â â „â Ž" }, { "input": "pelicans", "output": "â â ‘⠇⠊⠉â â â Ž" }, { "input": "pellagra", "output": "â â ‘⠇⠇â â ›â —â " }, { "input": "pellagra's", "output": "â â ‘⠇⠇â â ›â —â â „â Ž" }, { "input": "pellet", "output": "â â ‘⠇⠇⠑⠞" }, { "input": "pellet's", "output": "â â ‘⠇⠇⠑⠞⠄⠎" }, { "input": "pelleted", "output": "â â ‘⠇⠇⠑⠞⠫" }, { "input": "pelleting", "output": "â â ‘⠇⠇⠑⠞⠌" }, { "input": "pellets", "output": "â â ‘⠇⠇⠑⠞⠎" }, { "input": "pellucid", "output": "â â ‘⠇⠇⠥⠉⠊⠙" }, { "input": "pelt", "output": "â â ‘⠇⠞" }, { "input": "pelt's", "output": "â â ‘⠇⠞⠄⠎" }, { "input": "pelted", "output": "â â ‘⠇⠞⠫" }, { "input": "pelting", "output": "â â ‘⠇⠞⠌" }, { "input": "pelts", "output": "â â ‘⠇⠞⠎" }, { "input": "pelvic", "output": "â â ‘⠇⠧⠊⠉" }, { "input": "pelvis", "output": "â â ‘⠇⠧⠊⠎" }, { "input": "pelvis's", "output": "â â ‘⠇⠧⠊⠎⠄⠎" }, { "input": "pelvises", "output": "â â ‘⠇⠧⠊⠎⠑⠎" }, { "input": "pemmican", "output": "â â ‘â â â Šâ ‰â â " }, { "input": "pemmican's", "output": "â â ‘â â â Šâ ‰â â â „â Ž" }, { "input": "pen", "output": "â â ¢" }, { "input": "pen's", "output": "â â ¢â „â Ž" }, { "input": "penal", "output": "â â ¢â â ‡" }, { "input": "penalization", "output": "â â ¢â â ‡â Šâ µâ  â " }, { "input": "penalization's", "output": "â â ¢â â ‡â Šâ µâ  â â „â Ž" }, { "input": "penalize", "output": "â â ¢â â ‡â Šâ µâ ‘" }, { "input": "penalized", "output": "â â ¢â â ‡â Šâ µâ «" }, { "input": "penalizes", "output": "â â ¢â â ‡â Šâ µâ ‘â Ž" }, { "input": "penalizing", "output": "â â ¢â â ‡â Šâ µâ Œ" }, { "input": "penalties", "output": "â â ¢â â ‡â žâ Šâ ‘â Ž" }, { "input": "penalty", "output": "â â ¢â â ‡â žâ ½" }, { "input": "penalty's", "output": "â â ¢â â ‡â žâ ½â „â Ž" }, { "input": "penance", "output": "â â ¢â ¨â ‘" }, { "input": "penance's", "output": "â â ¢â ¨â ‘â „â Ž" }, { "input": "penances", "output": "â â ¢â ¨â ‘â Ž" }, { "input": "pence", "output": "â â °â ‘" }, { "input": "penchant", "output": "â â ¢â ¡â â â ž" }, { "input": "penchant's", "output": "â â ¢â ¡â â â žâ „â Ž" }, { "input": "penchants", "output": "â â ¢â ¡â â â žâ Ž" }, { "input": "pencil", "output": "â â ¢â ‰â Šâ ‡" }, { "input": "pencil's", "output": "â â ¢â ‰â Šâ ‡â „â Ž" }, { "input": "penciled", "output": "â â ¢â ‰â Šâ ‡â «" }, { "input": "penciling", "output": "â â ¢â ‰â Šâ ‡â Œ" }, { "input": "pencilings", "output": "â â ¢â ‰â Šâ ‡â Œâ Ž" }, { "input": "pencils", "output": "â â ¢â ‰â Šâ ‡â Ž" }, { "input": "pendant", "output": "â â ¢â ™â â â ž" }, { "input": "pendant's", "output": "â â ¢â ™â â â žâ „â Ž" }, { "input": "pendants", "output": "â â ¢â ™â â â žâ Ž" }, { "input": "pended", "output": "â â ¢â ™â «" }, { "input": "pendent", "output": "â â ¢â ™â ¢â ž" }, { "input": "pendent's", "output": "â â ¢â ™â ¢â žâ „â Ž" }, { "input": "pendents", "output": "â â ¢â ™â ¢â žâ Ž" }, { "input": "pending", "output": "â â ¢â ™â Œ" }, { "input": "pends", "output": "â â ¢â ™â Ž" }, { "input": "pendulous", "output": "â â ¢â ™â ¥â ‡â ³â Ž" }, { "input": "pendulum", "output": "â â ¢â ™â ¥â ‡â ¥â " }, { "input": "pendulum's", "output": "â â ¢â ™â ¥â ‡â ¥â â „â Ž" }, { "input": "pendulums", "output": "â â ¢â ™â ¥â ‡â ¥â â Ž" }, { "input": "penetrability", "output": "â â ¢â ‘â žâ —â â ƒâ Šâ ‡â °â ½" }, { "input": "penetrability's", "output": "â â ¢â ‘â žâ —â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "penetrable", "output": "â â ¢â ‘â žâ —â â ¼" }, { "input": "penetrate", "output": "â â ¢â ‘â žâ —â â žâ ‘" }, { "input": "penetrated", "output": "â â ¢â ‘â žâ —â â žâ «" }, { "input": "penetrates", "output": "â â ¢â ‘â žâ —â â žâ ‘â Ž" }, { "input": "penetrating", "output": "â â ¢â ‘â žâ —â â žâ Œ" }, { "input": "penetratingly", "output": "â â ¢â ‘â žâ —â â žâ Œâ ‡â ½" }, { "input": "penetration", "output": "â â ¢â ‘â žâ —â  â " }, { "input": "penetration's", "output": "â â ¢â ‘â žâ —â  â â „â Ž" }, { "input": "penetrations", "output": "â â ¢â ‘â žâ —â  â â Ž" }, { "input": "penetrative", "output": "â â ¢â ‘â žâ —â â žâ Šâ §â ‘" }, { "input": "penguin", "output": "â â ¢â ›â ¥â ”" }, { "input": "penguin's", "output": "â â ¢â ›â ¥â ”â „â Ž" }, { "input": "penguins", "output": "â â ¢â ›â ¥â ”â Ž" }, { "input": "penicillin", "output": "â â ¢â Šâ ‰â Šâ ‡â ‡â ”" }, { "input": "penicillin's", "output": "â â ¢â Šâ ‰â Šâ ‡â ‡â ”â „â Ž" }, { "input": "penile", "output": "â â ¢â Šâ ‡â ‘" }, { "input": "peninsula", "output": "â â ¢â ”⠎⠥⠇â " }, { "input": "peninsula's", "output": "â â ¢â ”⠎⠥⠇â â „â Ž" }, { "input": "peninsular", "output": "â â ¢â ”⠎⠥⠇⠜" }, { "input": "peninsulas", "output": "â â ¢â ”⠎⠥⠇â â Ž" }, { "input": "penis", "output": "â â ¢â Šâ Ž" }, { "input": "penis's", "output": "â â ¢â Šâ Žâ „â Ž" }, { "input": "penises", "output": "â â ¢â Šâ Žâ ‘â Ž" }, { "input": "penitence", "output": "â â ¢â Šâ žâ °â ‘" }, { "input": "penitence's", "output": "â â ¢â Šâ žâ °â ‘â „â Ž" }, { "input": "penitent", "output": "â â ¢â Šâ žâ ¢â ž" }, { "input": "penitent's", "output": "â â ¢â Šâ žâ ¢â žâ „â Ž" }, { "input": "penitential", "output": "â â ¢â Šâ žâ ¢â žâ Šâ â ‡" }, { "input": "penitentiaries", "output": "â â ¢â Šâ žâ ¢â žâ Šâ œâ Šâ ‘â Ž" }, { "input": "penitentiary", "output": "â â ¢â Šâ žâ ¢â žâ Šâ œâ ½" }, { "input": "penitentiary's", "output": "â â ¢â Šâ žâ ¢â žâ Šâ œâ ½â „â Ž" }, { "input": "penitently", "output": "â â ¢â Šâ žâ ¢â žâ ‡â ½" }, { "input": "penitents", "output": "â â ¢â Šâ žâ ¢â žâ Ž" }, { "input": "penknife", "output": "â â ¢â …â â Šâ ‹â ‘" }, { "input": "penknife's", "output": "â â ¢â …â â Šâ ‹â ‘â „â Ž" }, { "input": "penknives", "output": "â â ¢â …â â Šâ §â ‘â Ž" }, { "input": "penlight", "output": "â â ¢â ‡â Šâ £â ž" }, { "input": "penlight's", "output": "â â ¢â ‡â Šâ £â žâ „â Ž" }, { "input": "penlights", "output": "â â ¢â ‡â Šâ £â žâ Ž" }, { "input": "penman", "output": "â â ¢â â â " }, { "input": "penman's", "output": "â â ¢â â â â „â Ž" }, { "input": "penmanship", "output": "â â ¢â â â â ©â Šâ " }, { "input": "penmanship's", "output": "â â ¢â â â â ©â Šâ â „â Ž" }, { "input": "penmen", "output": "â â ¢â â ¢" }, { "input": "pennant", "output": "â â ¢â â â â ž" }, { "input": "pennant's", "output": "â â ¢â â â â žâ „â Ž" }, { "input": "pennants", "output": "â â ¢â â â â žâ Ž" }, { "input": "penned", "output": "â â ¢â â «" }, { "input": "pennies", "output": "â â ¢â â Šâ ‘â Ž" }, { "input": "penniless", "output": "â â ¢â â Šâ ¨â Ž" }, { "input": "penning", "output": "â â ¢â â Œ" }, { "input": "pennon", "output": "â â ¢â â •â " }, { "input": "pennon's", "output": "â â ¢â â •â â „â Ž" }, { "input": "pennons", "output": "â â ¢â â •â â Ž" }, { "input": "penny", "output": "â â ¢â â ½" }, { "input": "penny's", "output": "â â ¢â â ½â „â Ž" }, { "input": "pennyweight", "output": "â â ¢â â ½â ºâ ‘⠊⠣⠞" }, { "input": "pennyweight's", "output": "â â ¢â â ½â ºâ ‘⠊⠣⠞⠄⠎" }, { "input": "pennyweights", "output": "â â ¢â â ½â ºâ ‘⠊⠣⠞⠎" }, { "input": "penologist", "output": "â â ¢â •⠇⠕⠛⠊⠌" }, { "input": "penologist's", "output": "â â ¢â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "penologists", "output": "â â ¢â •⠇⠕⠛⠊⠌⠎" }, { "input": "penology", "output": "â â ¢â •⠇⠕⠛⠽" }, { "input": "penology's", "output": "â â ¢â •⠇⠕⠛⠽⠄⠎" }, { "input": "pens", "output": "â â ¢â Ž" }, { "input": "pension", "output": "â â ¢â ¨â " }, { "input": "pension's", "output": "â â ¢â ¨â â „â Ž" }, { "input": "pensioned", "output": "â â ¢â ¨â â «" }, { "input": "pensioner", "output": "â â ¢â ¨â â »" }, { "input": "pensioner's", "output": "â â ¢â ¨â â »â „â Ž" }, { "input": "pensioners", "output": "â â ¢â ¨â â »â Ž" }, { "input": "pensioning", "output": "â â ¢â ¨â â Œ" }, { "input": "pensions", "output": "â â ¢â ¨â â Ž" }, { "input": "pensive", "output": "â â ¢â Žâ Šâ §â ‘" }, { "input": "pensively", "output": "â â ¢â Žâ Šâ §â ‘⠇⠽" }, { "input": "pensiveness", "output": "â â ¢â Žâ Šâ §â ‘â °â Ž" }, { "input": "pensiveness's", "output": "â â ¢â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "pent", "output": "â â ¢â ž" }, { "input": "pentacle", "output": "â â ¢â žâ â ‰â ‡â ‘" }, { "input": "pentacle's", "output": "â â ¢â žâ â ‰â ‡â ‘â „â Ž" }, { "input": "pentacles", "output": "â â ¢â žâ â ‰â ‡â ‘â Ž" }, { "input": "pentagon", "output": "â â ¢â žâ â ›â •â " }, { "input": "pentagon's", "output": "â â ¢â žâ â ›â •â â „â Ž" }, { "input": "pentagonal", "output": "â â ¢â žâ â ›â •â â â ‡" }, { "input": "pentagons", "output": "â â ¢â žâ â ›â •â â Ž" }, { "input": "pentagram", "output": "â â ¢â žâ â ›â —â â " }, { "input": "pentagram's", "output": "â â ¢â žâ â ›â —â â â „â Ž" }, { "input": "pentagrams", "output": "â â ¢â žâ â ›â —â â â Ž" }, { "input": "pentameter", "output": "â â ¢â žâ â â ‘â žâ »" }, { "input": "pentameter's", "output": "â â ¢â žâ â â ‘⠞⠻⠄⠎" }, { "input": "pentameters", "output": "â â ¢â žâ â â ‘⠞⠻⠎" }, { "input": "pentathlete", "output": "â â ¢â žâ â ¹â ‡â ‘â žâ ‘" }, { "input": "pentathlete's", "output": "â â ¢â žâ â ¹â ‡â ‘â žâ ‘â „â Ž" }, { "input": "pentathletes", "output": "â â ¢â žâ â ¹â ‡â ‘â žâ ‘â Ž" }, { "input": "pentathlon", "output": "â â ¢â žâ â ¹â ‡â •â " }, { "input": "pentathlon's", "output": "â â ¢â žâ â ¹â ‡â •â â „â Ž" }, { "input": "pentathlons", "output": "â â ¢â žâ â ¹â ‡â •â â Ž" }, { "input": "penthouse", "output": "â â ¢â žâ “⠳⠎⠑" }, { "input": "penthouse's", "output": "â â ¢â žâ “⠳⠎⠑⠄⠎" }, { "input": "penthouses", "output": "â â ¢â žâ “⠳⠎⠑⠎" }, { "input": "penuche", "output": "â â ¢â ¥â ¡â ‘" }, { "input": "penuche's", "output": "â â ¢â ¥â ¡â ‘â „â Ž" }, { "input": "penultimate", "output": "â â ¢â ¥â ‡â žâ Šâ â â žâ ‘" }, { "input": "penultimate's", "output": "â â ¢â ¥â ‡â žâ Šâ â â žâ ‘â „â Ž" }, { "input": "penultimates", "output": "â â ¢â ¥â ‡â žâ Šâ â â žâ ‘â Ž" }, { "input": "penumbra's", "output": "â â ¢â ¥â â ƒâ —â â „â Ž" }, { "input": "penumbrae", "output": "â â ¢â ¥â â ƒâ —â â ‘" }, { "input": "penurious", "output": "â â ¢â ¥â —⠊⠳⠎" }, { "input": "penuriously", "output": "â â ¢â ¥â —⠊⠳⠎⠇⠽" }, { "input": "penuriousness", "output": "â â ¢â ¥â —⠊⠳⠎⠰⠎" }, { "input": "penuriousness's", "output": "â â ¢â ¥â —⠊⠳⠎⠰⠎⠄⠎" }, { "input": "penury", "output": "â â ¢â ¥â —â ½" }, { "input": "penury's", "output": "â â ¢â ¥â —⠽⠄⠎" }, { "input": "peon", "output": "â â ‘â •â " }, { "input": "peon's", "output": "â â ‘â •â â „â Ž" }, { "input": "peonage", "output": "â â ‘â •â â â ›â ‘" }, { "input": "peonage's", "output": "â â ‘â •â â â ›â ‘â „â Ž" }, { "input": "peonies", "output": "â â ‘â •â â Šâ ‘â Ž" }, { "input": "peons", "output": "â â ‘â •â â Ž" }, { "input": "peony", "output": "â â ‘â •â â ½" }, { "input": "peony's", "output": "â â ‘â •â â ½â „â Ž" }, { "input": "people", "output": "â " }, { "input": "people's", "output": "â â „â Ž" }, { "input": "peopled", "output": "â â ‘â •â â ‡â «" }, { "input": "peoples", "output": "â â ‘â •â â ‡â ‘â Ž" }, { "input": "peopling", "output": "â â ‘â •â â ‡â Œ" }, { "input": "pep", "output": "â â ‘â " }, { "input": "pep's", "output": "â â ‘â â „â Ž" }, { "input": "pepped", "output": "â â ‘â â â «" }, { "input": "pepper", "output": "â â ‘â â â »" }, { "input": "pepper's", "output": "â â ‘â â â »â „â Ž" }, { "input": "peppercorn", "output": "â â ‘â â â »â ‰â •â —â " }, { "input": "peppercorn's", "output": "â â ‘â â â »â ‰â •â —â â „â Ž" }, { "input": "peppercorns", "output": "â â ‘â â â »â ‰â •â —â â Ž" }, { "input": "peppered", "output": "â â ‘â â â »â «" }, { "input": "peppering", "output": "â â ‘â â â »â Œ" }, { "input": "peppermint", "output": "â â ‘â â â »â â ”â ž" }, { "input": "peppermint's", "output": "â â ‘â â â »â â ”â žâ „â Ž" }, { "input": "peppermints", "output": "â â ‘â â â »â â ”â žâ Ž" }, { "input": "pepperoni", "output": "â â ‘â â â »â •â â Š" }, { "input": "pepperoni's", "output": "â â ‘â â â »â •â â Šâ „â Ž" }, { "input": "pepperonis", "output": "â â ‘â â â »â •â â Šâ Ž" }, { "input": "peppers", "output": "â â ‘â â â »â Ž" }, { "input": "peppery", "output": "â â ‘â â â »â ½" }, { "input": "peppier", "output": "â â ‘â â â Šâ »" }, { "input": "peppiest", "output": "â â ‘â â â Šâ ‘â Œ" }, { "input": "peppiness", "output": "â â ‘â â â Šâ °â Ž" }, { "input": "peppiness's", "output": "â â ‘â â â Šâ °â Žâ „â Ž" }, { "input": "pepping", "output": "â â ‘â â â Œ" }, { "input": "peppy", "output": "â â ‘â â â ½" }, { "input": "peps", "output": "â â ‘â â Ž" }, { "input": "pepsin", "output": "â â ‘â â Žâ ”" }, { "input": "pepsin's", "output": "â â ‘â â Žâ ”â „â Ž" }, { "input": "peptic", "output": "â â ‘â â žâ Šâ ‰" }, { "input": "peptic's", "output": "â â ‘â â žâ Šâ ‰â „â Ž" }, { "input": "peptics", "output": "â â ‘â â žâ Šâ ‰â Ž" }, { "input": "per", "output": "â â »" }, { "input": "peradventure", "output": "â â »â â ™â §â ¢â žâ ¥â —â ‘" }, { "input": "peradventure's", "output": "â â »â â ™â §â ¢â žâ ¥â —â ‘â „â Ž" }, { "input": "perambulate", "output": "â â »â â â ƒâ ¥â ‡â â žâ ‘" }, { "input": "perambulated", "output": "â â »â â â ƒâ ¥â ‡â â žâ «" }, { "input": "perambulates", "output": "â â »â â â ƒâ ¥â ‡â â žâ ‘â Ž" }, { "input": "perambulating", "output": "â â »â â â ƒâ ¥â ‡â â žâ Œ" }, { "input": "perambulator", "output": "â â »â â â ƒâ ¥â ‡â â žâ •â —" }, { "input": "perambulator's", "output": "â â »â â â ƒâ ¥â ‡â â žâ •â —â „â Ž" }, { "input": "perambulators", "output": "â â »â â â ƒâ ¥â ‡â â žâ •â —â Ž" }, { "input": "percale", "output": "â â »â ‰â â ‡â ‘" }, { "input": "percale's", "output": "â â »â ‰â â ‡â ‘â „â Ž" }, { "input": "percales", "output": "â â »â ‰â â ‡â ‘â Ž" }, { "input": "perceivable", "output": "â â »â ‰â ‘â Šâ §â â ¼" }, { "input": "perceive", "output": "â â »â ‰â §" }, { "input": "perceived", "output": "â â »â ‰â §â ™" }, { "input": "perceives", "output": "â â »â ‰â §â Ž" }, { "input": "perceiving", "output": "â â »â ‰â §â ›" }, { "input": "percent", "output": "â â »â ‰â ¢â ž" }, { "input": "percent's", "output": "â â »â ‰â ¢â žâ „â Ž" }, { "input": "percentage", "output": "â â »â ‰â ¢â žâ â ›â ‘" }, { "input": "percentage's", "output": "â â »â ‰â ¢â žâ â ›â ‘â „â Ž" }, { "input": "percentages", "output": "â â »â ‰â ¢â žâ â ›â ‘â Ž" }, { "input": "percentile", "output": "â â »â ‰â ¢â žâ Šâ ‡â ‘" }, { "input": "percentile's", "output": "â â »â ‰â ¢â žâ Šâ ‡â ‘â „â Ž" }, { "input": "percentiles", "output": "â â »â ‰â ¢â žâ Šâ ‡â ‘â Ž" }, { "input": "percents", "output": "â â »â ‰â ¢â žâ Ž" }, { "input": "perceptible", "output": "â â »â ‰â ‘â â žâ Šâ ¼" }, { "input": "perceptibly", "output": "â â »â ‰â ‘â â žâ Šâ ƒâ ‡â ½" }, { "input": "perception", "output": "â â »â ‰â ‘â â °â " }, { "input": "perception's", "output": "â â »â ‰â ‘â â °â â „â Ž" }, { "input": "perceptional", "output": "â â »â ‰â ‘â â °â â â ‡" }, { "input": "perceptions", "output": "â â »â ‰â ‘â â °â â Ž" }, { "input": "perceptive", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘" }, { "input": "perceptively", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘⠇⠽" }, { "input": "perceptiveness", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘â °â Ž" }, { "input": "perceptiveness's", "output": "â â »â ‰â ‘â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "perceptual", "output": "â â »â ‰â ‘â â žâ ¥â â ‡" }, { "input": "perceptually", "output": "â â »â ‰â ‘â â žâ ¥â  â ½" }, { "input": "perch", "output": "â â »â ¡" }, { "input": "perch's", "output": "â â »â ¡â „â Ž" }, { "input": "perchance", "output": "â â »â ¡â ¨â ‘" }, { "input": "perched", "output": "â â »â ¡â «" }, { "input": "perches", "output": "â â »â ¡â ‘â Ž" }, { "input": "perching", "output": "â â »â ¡â Œ" }, { "input": "percipience", "output": "â â »â ‰â Šâ â Šâ °â ‘" }, { "input": "percipience's", "output": "â â »â ‰â Šâ â Šâ °â ‘â „â Ž" }, { "input": "percolate", "output": "â â »â ‰â •â ‡â â žâ ‘" }, { "input": "percolated", "output": "â â »â ‰â •â ‡â â žâ «" }, { "input": "percolates", "output": "â â »â ‰â •â ‡â â žâ ‘â Ž" }, { "input": "percolating", "output": "â â »â ‰â •â ‡â â žâ Œ" }, { "input": "percolation", "output": "â â »â ‰â •⠇⠠â " }, { "input": "percolation's", "output": "â â »â ‰â •⠇⠠â â „â Ž" }, { "input": "percolator", "output": "â â »â ‰â •â ‡â â žâ •â —" }, { "input": "percolator's", "output": "â â »â ‰â •â ‡â â žâ •â —â „â Ž" }, { "input": "percolators", "output": "â â »â ‰â •â ‡â â žâ •â —â Ž" }, { "input": "percussion", "output": "â â »â ‰â ¥â Žâ ¨â " }, { "input": "percussion's", "output": "â â »â ‰â ¥â Žâ ¨â â „â Ž" }, { "input": "percussionist", "output": "â â »â ‰â ¥â Žâ ¨â â Šâ Œ" }, { "input": "percussionist's", "output": "â â »â ‰â ¥â Žâ ¨â â Šâ Œâ „â Ž" }, { "input": "percussionists", "output": "â â »â ‰â ¥â Žâ ¨â â Šâ Œâ Ž" }, { "input": "perdition", "output": "â â »â ™â Šâ °â " }, { "input": "perdition's", "output": "â â »â ™â Šâ °â â „â Ž" }, { "input": "perdurable", "output": "â â »â ™â ¥â —â â ¼" }, { "input": "peregrinate", "output": "â â »â ‘⠛⠗⠔â â žâ ‘" }, { "input": "peregrinated", "output": "â â »â ‘⠛⠗⠔â â žâ «" }, { "input": "peregrinates", "output": "â â »â ‘⠛⠗⠔â â žâ ‘â Ž" }, { "input": "peregrinating", "output": "â â »â ‘⠛⠗⠔â â žâ Œ" }, { "input": "peregrination", "output": "â â »â ‘⠛⠗⠔⠠â " }, { "input": "peregrination's", "output": "â â »â ‘⠛⠗⠔⠠â â „â Ž" }, { "input": "peregrinations", "output": "â â »â ‘⠛⠗⠔⠠â â Ž" }, { "input": "peremptorily", "output": "â â »â ‘â â â žâ •⠗⠊⠇⠽" }, { "input": "peremptory", "output": "â â »â ‘â â â žâ •â —â ½" }, { "input": "perennial", "output": "â â »â ¢â â Šâ â ‡" }, { "input": "perennial's", "output": "â â »â ¢â â Šâ â ‡â „â Ž" }, { "input": "perennially", "output": "â â »â ¢â â Šâ  â ½" }, { "input": "perennials", "output": "â â »â ¢â â Šâ â ‡â Ž" }, { "input": "perestroika's", "output": "â â »â ‘⠌⠗⠕⠊⠅â â „â Ž" }, { "input": "perfect", "output": "â â »â ‹â ‘⠉⠞" }, { "input": "perfect's", "output": "â â »â ‹â ‘⠉⠞⠄⠎" }, { "input": "perfecta", "output": "â â »â ‹â ‘⠉⠞â " }, { "input": "perfecta's", "output": "â â »â ‹â ‘⠉⠞â â „â Ž" }, { "input": "perfectas", "output": "â â »â ‹â ‘⠉⠞â â Ž" }, { "input": "perfected", "output": "â â »â ‹â ‘⠉⠞⠫" }, { "input": "perfecter", "output": "â â »â ‹â ‘⠉⠞⠻" }, { "input": "perfectest", "output": "â â »â ‹â ‘⠉⠞⠑⠌" }, { "input": "perfectibility", "output": "â â »â ‹â ‘⠉⠞⠊⠃⠊⠇⠰⠽" }, { "input": "perfectibility's", "output": "â â »â ‹â ‘⠉⠞⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "perfectible", "output": "â â »â ‹â ‘⠉⠞⠊⠼" }, { "input": "perfecting", "output": "â â »â ‹â ‘⠉⠞⠌" }, { "input": "perfection", "output": "â â »â ‹â ‘⠉⠰â " }, { "input": "perfection's", "output": "â â »â ‹â ‘⠉⠰â â „â Ž" }, { "input": "perfectionism", "output": "â â »â ‹â ‘⠉⠰â â Šâ Žâ " }, { "input": "perfectionism's", "output": "â â »â ‹â ‘⠉⠰â â Šâ Žâ â „â Ž" }, { "input": "perfectionist", "output": "â â »â ‹â ‘⠉⠰â â Šâ Œ" }, { "input": "perfectionist's", "output": "â â »â ‹â ‘⠉⠰â â Šâ Œâ „â Ž" }, { "input": "perfectionists", "output": "â â »â ‹â ‘⠉⠰â â Šâ Œâ Ž" }, { "input": "perfections", "output": "â â »â ‹â ‘⠉⠰â â Ž" }, { "input": "perfectly", "output": "â â »â ‹â ‘⠉⠞⠇⠽" }, { "input": "perfectness", "output": "â â »â ‹â ‘⠉⠞⠰⠎" }, { "input": "perfectness's", "output": "â â »â ‹â ‘⠉⠞⠰⠎⠄⠎" }, { "input": "perfects", "output": "â â »â ‹â ‘⠉⠞⠎" }, { "input": "perfidies", "output": "â â »â ‹â Šâ ™â Šâ ‘â Ž" }, { "input": "perfidious", "output": "â â »â ‹â Šâ ™â Šâ ³â Ž" }, { "input": "perfidiously", "output": "â â »â ‹â Šâ ™â Šâ ³â Žâ ‡â ½" }, { "input": "perfidy", "output": "â â »â ‹â Šâ ™â ½" }, { "input": "perfidy's", "output": "â â »â ‹â Šâ ™â ½â „â Ž" }, { "input": "perforate", "output": "â â »â ¿â â žâ ‘" }, { "input": "perforated", "output": "â â »â ¿â â žâ «" }, { "input": "perforates", "output": "â â »â ¿â â žâ ‘â Ž" }, { "input": "perforating", "output": "â â »â ¿â â žâ Œ" }, { "input": "perforation", "output": "â â »â ¿â  â " }, { "input": "perforation's", "output": "â â »â ¿â  â â „â Ž" }, { "input": "perforations", "output": "â â »â ¿â  â â Ž" }, { "input": "perforce", "output": "â â »â ¿â ‰â ‘" }, { "input": "perform", "output": "â â »â ¿â " }, { "input": "performance", "output": "â â »â ¿â â ¨â ‘" }, { "input": "performance's", "output": "â â »â ¿â â ¨â ‘â „â Ž" }, { "input": "performances", "output": "â â »â ¿â â ¨â ‘â Ž" }, { "input": "performed", "output": "â â »â ¿â â «" }, { "input": "performer", "output": "â â »â ¿â â »" }, { "input": "performer's", "output": "â â »â ¿â â »â „â Ž" }, { "input": "performers", "output": "â â »â ¿â â »â Ž" }, { "input": "performing", "output": "â â »â ¿â â Œ" }, { "input": "performs", "output": "â â »â ¿â â Ž" }, { "input": "perfume", "output": "â â »â ‹â ¥â â ‘" }, { "input": "perfume's", "output": "â â »â ‹â ¥â â ‘â „â Ž" }, { "input": "perfumed", "output": "â â »â ‹â ¥â â «" }, { "input": "perfumer", "output": "â â »â ‹â ¥â â »" }, { "input": "perfumer's", "output": "â â »â ‹â ¥â â »â „â Ž" }, { "input": "perfumeries", "output": "â â »â ‹â ¥â â »â Šâ ‘â Ž" }, { "input": "perfumers", "output": "â â »â ‹â ¥â â »â Ž" }, { "input": "perfumery", "output": "â â »â ‹â ¥â â »â ½" }, { "input": "perfumery's", "output": "â â »â ‹â ¥â â »â ½â „â Ž" }, { "input": "perfumes", "output": "â â »â ‹â ¥â â ‘â Ž" }, { "input": "perfuming", "output": "â â »â ‹â ¥â â Œ" }, { "input": "perfunctorily", "output": "â â »â ‹â ¥â â ‰â žâ •⠗⠊⠇⠽" }, { "input": "perfunctory", "output": "â â »â ‹â ¥â â ‰â žâ •â —â ½" }, { "input": "perhaps", "output": "â â »â “" }, { "input": "pericardia", "output": "â â »â Šâ ‰â œâ ™â Šâ " }, { "input": "pericardium", "output": "â â »â Šâ ‰â œâ ™â Šâ ¥â " }, { "input": "pericardium's", "output": "â â »â Šâ ‰â œâ ™â Šâ ¥â â „â Ž" }, { "input": "perigee", "output": "â â »â Šâ ›â ‘â ‘" }, { "input": "perigee's", "output": "â â »â Šâ ›â ‘â ‘â „â Ž" }, { "input": "perigees", "output": "â â »â Šâ ›â ‘â ‘â Ž" }, { "input": "perihelia", "output": "â â »â Šâ “⠑⠇⠊â " }, { "input": "perihelion", "output": "â â »â Šâ “⠑⠇⠊⠕â " }, { "input": "perihelion's", "output": "â â »â Šâ “⠑⠇⠊⠕â â „â Ž" }, { "input": "peril", "output": "â â »â Šâ ‡" }, { "input": "peril's", "output": "â â »â Šâ ‡â „â Ž" }, { "input": "periled", "output": "â â »â Šâ ‡â «" }, { "input": "periling", "output": "â â »â Šâ ‡â Œ" }, { "input": "perilous", "output": "â â »â Šâ ‡â ³â Ž" }, { "input": "perilously", "output": "â â »â Šâ ‡â ³â Žâ ‡â ½" }, { "input": "perils", "output": "â â »â Šâ ‡â Ž" }, { "input": "perimeter", "output": "â â »â Šâ â ‘â žâ »" }, { "input": "perimeter's", "output": "â â »â Šâ â ‘⠞⠻⠄⠎" }, { "input": "perimeters", "output": "â â »â Šâ â ‘⠞⠻⠎" }, { "input": "perinea", "output": "â â »â Šâ â ‘â " }, { "input": "perineum", "output": "â â »â Šâ â ‘â ¥â " }, { "input": "perineum's", "output": "â â »â Šâ â ‘â ¥â â „â Ž" }, { "input": "period", "output": "â â »â Šâ •â ™" }, { "input": "period's", "output": "â â »â Šâ •⠙⠄⠎" }, { "input": "periodic", "output": "â â »â Šâ •⠙⠊⠉" }, { "input": "periodical", "output": "â â »â Šâ •⠙⠊⠉â â ‡" }, { "input": "periodical's", "output": "â â »â Šâ •⠙⠊⠉â â ‡â „â Ž" }, { "input": "periodically", "output": "â â »â Šâ •⠙⠊⠉⠠⠽" }, { "input": "periodicals", "output": "â â »â Šâ •⠙⠊⠉â â ‡â Ž" }, { "input": "periodicity", "output": "â â »â Šâ •⠙⠊⠉⠰⠽" }, { "input": "periodicity's", "output": "â â »â Šâ •⠙⠊⠉⠰⠽⠄⠎" }, { "input": "periodontal", "output": "â â »â Šâ •⠙⠕â â žâ â ‡" }, { "input": "periodontics", "output": "â â »â Šâ •⠙⠕â â žâ Šâ ‰â Ž" }, { "input": "periodontics's", "output": "â â »â Šâ •⠙⠕â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "periodontist", "output": "â â »â Šâ •⠙⠕â â žâ Šâ Œ" }, { "input": "periodontist's", "output": "â â »â Šâ •⠙⠕â â žâ Šâ Œâ „â Ž" }, { "input": "periodontists", "output": "â â »â Šâ •⠙⠕â â žâ Šâ Œâ Ž" }, { "input": "periods", "output": "â â »â Šâ •⠙⠎" }, { "input": "peripatetic", "output": "â â »â Šâ â â žâ ‘â žâ Šâ ‰" }, { "input": "peripatetic's", "output": "â â »â Šâ â â žâ ‘⠞⠊⠉⠄⠎" }, { "input": "peripatetics", "output": "â â »â Šâ â â žâ ‘⠞⠊⠉⠎" }, { "input": "peripheral", "output": "â â »â Šâ â “â »â â ‡" }, { "input": "peripheral's", "output": "â â »â Šâ â “â »â â ‡â „â Ž" }, { "input": "peripherals", "output": "â â »â Šâ â “â »â â ‡â Ž" }, { "input": "peripheries", "output": "â â »â Šâ â “⠻⠊⠑⠎" }, { "input": "periphery", "output": "â â »â Šâ â “⠻⠽" }, { "input": "periphery's", "output": "â â »â Šâ â “⠻⠽⠄⠎" }, { "input": "periphrases", "output": "â â »â Šâ â “â —â â Žâ ‘â Ž" }, { "input": "periphrasis", "output": "â â »â Šâ â “â —â â Žâ Šâ Ž" }, { "input": "periphrasis's", "output": "â â »â Šâ â “â —â â Žâ Šâ Žâ „â Ž" }, { "input": "periphrastic", "output": "â â »â Šâ â “â —â â Œâ Šâ ‰" }, { "input": "periscope", "output": "â â »â Šâ Žâ ‰â •â â ‘" }, { "input": "periscope's", "output": "â â »â Šâ Žâ ‰â •â â ‘â „â Ž" }, { "input": "periscopes", "output": "â â »â Šâ Žâ ‰â •â â ‘â Ž" }, { "input": "perish", "output": "â â »â Šâ ©" }, { "input": "perishable", "output": "â â »â Šâ ©â â ¼" }, { "input": "perishable's", "output": "â â »â Šâ ©â â ¼â „â Ž" }, { "input": "perishables", "output": "â â »â Šâ ©â â ¼â Ž" }, { "input": "perished", "output": "â â »â Šâ ©â «" }, { "input": "perishes", "output": "â â »â Šâ ©â ‘â Ž" }, { "input": "perishing", "output": "â â »â Šâ ©â Œ" }, { "input": "peristalses", "output": "â â »â Šâ Œâ â ‡â Žâ ‘â Ž" }, { "input": "peristalsis", "output": "â â »â Šâ Œâ â ‡â Žâ Šâ Ž" }, { "input": "peristalsis's", "output": "â â »â Šâ Œâ â ‡â Žâ Šâ Žâ „â Ž" }, { "input": "peristaltic", "output": "â â »â Šâ Œâ â ‡â žâ Šâ ‰" }, { "input": "peristyle", "output": "â â »â Šâ Œâ ½â ‡â ‘" }, { "input": "peristyle's", "output": "â â »â Šâ Œâ ½â ‡â ‘â „â Ž" }, { "input": "peristyles", "output": "â â »â Šâ Œâ ½â ‡â ‘â Ž" }, { "input": "peritoneal", "output": "â â »â Šâ žâ •â â ‚â ‡" }, { "input": "peritoneum", "output": "â â »â Šâ žâ •â â ‘â ¥â " }, { "input": "peritoneum's", "output": "â â »â Šâ žâ •â â ‘â ¥â â „â Ž" }, { "input": "peritoneums", "output": "â â »â Šâ žâ •â â ‘â ¥â â Ž" }, { "input": "peritonitis", "output": "â â »â Šâ žâ •â â Šâ žâ Šâ Ž" }, { "input": "peritonitis's", "output": "â â »â Šâ žâ •â â Šâ žâ Šâ Žâ „â Ž" }, { "input": "periwig", "output": "â â »â Šâ ºâ Šâ ›" }, { "input": "periwig's", "output": "â â »â Šâ ºâ Šâ ›â „â Ž" }, { "input": "periwigs", "output": "â â »â Šâ ºâ Šâ ›â Ž" }, { "input": "periwinkle", "output": "â â »â Šâ ºâ ”⠅⠇⠑" }, { "input": "periwinkle's", "output": "â â »â Šâ ºâ ”⠅⠇⠑⠄⠎" }, { "input": "periwinkles", "output": "â â »â Šâ ºâ ”⠅⠇⠑⠎" }, { "input": "perjure", "output": "â â »â šâ ¥â —â ‘" }, { "input": "perjured", "output": "â â »â šâ ¥â —â «" }, { "input": "perjurer", "output": "â â »â šâ ¥â —â »" }, { "input": "perjurer's", "output": "â â »â šâ ¥â —⠻⠄⠎" }, { "input": "perjurers", "output": "â â »â šâ ¥â —⠻⠎" }, { "input": "perjures", "output": "â â »â šâ ¥â —â ‘â Ž" }, { "input": "perjuries", "output": "â â »â šâ ¥â —â Šâ ‘â Ž" }, { "input": "perjuring", "output": "â â »â šâ ¥â —â Œ" }, { "input": "perjury", "output": "â â »â šâ ¥â —â ½" }, { "input": "perjury's", "output": "â â »â šâ ¥â —⠽⠄⠎" }, { "input": "perk", "output": "â â »â …" }, { "input": "perk's", "output": "â â »â …â „â Ž" }, { "input": "perked", "output": "â â »â …â «" }, { "input": "perkier", "output": "â â »â …â Šâ »" }, { "input": "perkiest", "output": "â â »â …â Šâ ‘â Œ" }, { "input": "perkiness", "output": "â â »â …â Šâ °â Ž" }, { "input": "perkiness's", "output": "â â »â …â Šâ °â Žâ „â Ž" }, { "input": "perking", "output": "â â »â …â Œ" }, { "input": "perks", "output": "â â »â …â Ž" }, { "input": "perky", "output": "â â »â …â ½" }, { "input": "perm", "output": "â â »â " }, { "input": "perm's", "output": "â â »â â „â Ž" }, { "input": "permafrost", "output": "â â »â â â ‹â —â •â Œ" }, { "input": "permafrost's", "output": "â â »â â â ‹â —⠕⠌⠄⠎" }, { "input": "permanence", "output": "â â »â â â â °â ‘" }, { "input": "permanence's", "output": "â â »â â â â °â ‘â „â Ž" }, { "input": "permanency's", "output": "â â »â â â â ¢â ‰â ½â „â Ž" }, { "input": "permanent", "output": "â â »â â â â ¢â ž" }, { "input": "permanent's", "output": "â â »â â â â ¢â žâ „â Ž" }, { "input": "permanently", "output": "â â »â â â â ¢â žâ ‡â ½" }, { "input": "permanents", "output": "â â »â â â â ¢â žâ Ž" }, { "input": "permeability", "output": "â â »â â ‘â â ƒâ Šâ ‡â °â ½" }, { "input": "permeability's", "output": "â â »â â ‘â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "permeable", "output": "â â »â â ‘â â ¼" }, { "input": "permeate", "output": "â â »â â ‚â žâ ‘" }, { "input": "permeated", "output": "â â »â â ‚â žâ «" }, { "input": "permeates", "output": "â â »â â ‚â žâ ‘â Ž" }, { "input": "permeating", "output": "â â »â â ‚â žâ Œ" }, { "input": "permeation's", "output": "â â »â â ‘â  â â „â Ž" }, { "input": "permed", "output": "â â »â â «" }, { "input": "perming", "output": "â â »â â Œ" }, { "input": "permissible", "output": "â â »â â Šâ Žâ Žâ Šâ ¼" }, { "input": "permissibly", "output": "â â »â â Šâ Žâ Žâ Šâ ƒâ ‡â ½" }, { "input": "permission", "output": "â â »â â Šâ Žâ ¨â " }, { "input": "permission's", "output": "â â »â â Šâ Žâ ¨â â „â Ž" }, { "input": "permissions", "output": "â â »â â Šâ Žâ ¨â â Ž" }, { "input": "permissive", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "permissively", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘⠇⠽" }, { "input": "permissiveness", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "permissiveness's", "output": "â â »â â Šâ Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "permit", "output": "â â »â â Šâ ž" }, { "input": "permit's", "output": "â â »â â Šâ žâ „â Ž" }, { "input": "permits", "output": "â â »â â Šâ žâ Ž" }, { "input": "permitted", "output": "â â »â â Šâ žâ žâ «" }, { "input": "permitting", "output": "â â »â â Šâ žâ žâ Œ" }, { "input": "perms", "output": "â â »â â Ž" }, { "input": "permutation", "output": "â â »â â ¥â žâ  â " }, { "input": "permutation's", "output": "â â »â â ¥â žâ  â â „â Ž" }, { "input": "permutations", "output": "â â »â â ¥â žâ  â â Ž" }, { "input": "permute", "output": "â â »â â ¥â žâ ‘" }, { "input": "permuted", "output": "â â »â â ¥â žâ «" }, { "input": "permutes", "output": "â â »â â ¥â žâ ‘â Ž" }, { "input": "permuting", "output": "â â »â â ¥â žâ Œ" }, { "input": "pernicious", "output": "â â »â â Šâ ‰â Šâ ³â Ž" }, { "input": "perniciously", "output": "â â »â â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "perniciousness", "output": "â â »â â Šâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "perniciousness's", "output": "â â »â â Šâ ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "peroration", "output": "â â »â •â —â  â " }, { "input": "peroration's", "output": "â â »â •â —â  â â „â Ž" }, { "input": "perorations", "output": "â â »â •â —â  â â Ž" }, { "input": "peroxide", "output": "â â »â •⠭⠊⠙⠑" }, { "input": "peroxide's", "output": "â â »â •⠭⠊⠙⠑⠄⠎" }, { "input": "peroxided", "output": "â â »â •⠭⠊⠙⠫" }, { "input": "peroxides", "output": "â â »â •⠭⠊⠙⠑⠎" }, { "input": "peroxiding", "output": "â â »â •⠭⠊⠙⠌" }, { "input": "perpendicular", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œ" }, { "input": "perpendicular's", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œâ „â Ž" }, { "input": "perpendicularity", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œâ °â ½" }, { "input": "perpendicularity's", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "perpendiculars", "output": "â â »â â ¢â ™â Šâ ‰â ¥â ‡â œâ Ž" }, { "input": "perpetrate", "output": "â â »â â ‘â žâ —â â žâ ‘" }, { "input": "perpetrated", "output": "â â »â â ‘â žâ —â â žâ «" }, { "input": "perpetrates", "output": "â â »â â ‘â žâ —â â žâ ‘â Ž" }, { "input": "perpetrating", "output": "â â »â â ‘â žâ —â â žâ Œ" }, { "input": "perpetration", "output": "â â »â â ‘â žâ —â  â " }, { "input": "perpetration's", "output": "â â »â â ‘â žâ —â  â â „â Ž" }, { "input": "perpetrator", "output": "â â »â â ‘â žâ —â â žâ •â —" }, { "input": "perpetrator's", "output": "â â »â â ‘â žâ —â â žâ •â —â „â Ž" }, { "input": "perpetrators", "output": "â â »â â ‘â žâ —â â žâ •â —â Ž" }, { "input": "perpetual", "output": "â â »â â ‘â žâ ¥â â ‡" }, { "input": "perpetual's", "output": "â â »â â ‘â žâ ¥â â ‡â „â Ž" }, { "input": "perpetually", "output": "â â »â â ‘⠞⠥⠠⠽" }, { "input": "perpetuals", "output": "â â »â â ‘â žâ ¥â â ‡â Ž" }, { "input": "perpetuate", "output": "â â »â â ‘â žâ ¥â â žâ ‘" }, { "input": "perpetuated", "output": "â â »â â ‘â žâ ¥â â žâ «" }, { "input": "perpetuates", "output": "â â »â â ‘â žâ ¥â â žâ ‘â Ž" }, { "input": "perpetuating", "output": "â â »â â ‘â žâ ¥â â žâ Œ" }, { "input": "perpetuation", "output": "â â »â â ‘⠞⠥⠠â " }, { "input": "perpetuation's", "output": "â â »â â ‘⠞⠥⠠â â „â Ž" }, { "input": "perpetuity", "output": "â â »â â ‘⠞⠥⠰⠽" }, { "input": "perpetuity's", "output": "â â »â â ‘⠞⠥⠰⠽⠄⠎" }, { "input": "perplex", "output": "â â »â â ‡â ‘â ­" }, { "input": "perplexed", "output": "â â »â â ‡â ‘â ­â «" }, { "input": "perplexes", "output": "â â »â â ‡â ‘â ­â ‘â Ž" }, { "input": "perplexing", "output": "â â »â â ‡â ‘â ­â Œ" }, { "input": "perplexities", "output": "â â »â â ‡â ‘â ­â Šâ žâ Šâ ‘â Ž" }, { "input": "perplexity", "output": "â â »â â ‡â ‘â ­â °â ½" }, { "input": "perplexity's", "output": "â â »â â ‡â ‘⠭⠰⠽⠄⠎" }, { "input": "perquisite", "output": "â â »â Ÿâ ¥â Šâ Žâ Šâ žâ ‘" }, { "input": "perquisite's", "output": "â â »â Ÿâ ¥â Šâ Žâ Šâ žâ ‘â „â Ž" }, { "input": "perquisites", "output": "â â »â Ÿâ ¥â Šâ Žâ Šâ žâ ‘â Ž" }, { "input": "persecute", "output": "â â »â Žâ ‘⠉⠥⠞⠑" }, { "input": "persecuted", "output": "â â »â Žâ ‘⠉⠥⠞⠫" }, { "input": "persecutes", "output": "â â »â Žâ ‘⠉⠥⠞⠑⠎" }, { "input": "persecuting", "output": "â â »â Žâ ‘⠉⠥⠞⠌" }, { "input": "persecution", "output": "â â »â Žâ ‘⠉⠥⠰â " }, { "input": "persecution's", "output": "â â »â Žâ ‘⠉⠥⠰â â „â Ž" }, { "input": "persecutions", "output": "â â »â Žâ ‘⠉⠥⠰â â Ž" }, { "input": "persecutor", "output": "â â »â Žâ ‘⠉⠥⠞⠕⠗" }, { "input": "persecutor's", "output": "â â »â Žâ ‘⠉⠥⠞⠕⠗⠄⠎" }, { "input": "persecutors", "output": "â â »â Žâ ‘⠉⠥⠞⠕⠗⠎" }, { "input": "perseverance", "output": "â â »â Žâ ‘⠧⠻⠨⠑" }, { "input": "perseverance's", "output": "â â »â Žâ ‘⠧⠻⠨⠑⠄⠎" }, { "input": "persevere", "output": "â â »â Žâ ‘⠧⠻⠑" }, { "input": "persevered", "output": "â â »â Žâ ‘⠧⠻⠫" }, { "input": "perseveres", "output": "â â »â Žâ ‘⠧⠻⠑⠎" }, { "input": "persevering", "output": "â â »â Žâ ‘⠧⠻⠌" }, { "input": "persiflage", "output": "â â »â Žâ Šâ ‹â ‡â â ›â ‘" }, { "input": "persiflage's", "output": "â â »â Žâ Šâ ‹â ‡â â ›â ‘â „â Ž" }, { "input": "persimmon", "output": "â â »â Žâ Šâ â â •â " }, { "input": "persimmon's", "output": "â â »â Žâ Šâ â â •â â „â Ž" }, { "input": "persimmons", "output": "â â »â Žâ Šâ â â •â â Ž" }, { "input": "persist", "output": "â â »â Žâ Šâ Œ" }, { "input": "persisted", "output": "â â »â Žâ Šâ Œâ «" }, { "input": "persistence", "output": "â â »â Žâ Šâ Œâ °â ‘" }, { "input": "persistence's", "output": "â â »â Žâ Šâ Œâ °â ‘â „â Ž" }, { "input": "persistent", "output": "â â »â Žâ Šâ Œâ ¢â ž" }, { "input": "persistently", "output": "â â »â Žâ Šâ Œâ ¢â žâ ‡â ½" }, { "input": "persisting", "output": "â â »â Žâ Šâ Œâ Œ" }, { "input": "persists", "output": "â â »â Žâ Šâ Œâ Ž" }, { "input": "persnickety", "output": "â â »â Žâ â Šâ ‰â …â ‘â žâ ½" }, { "input": "person", "output": "â â »â Žâ •â " }, { "input": "person's", "output": "â â »â Žâ •â â „â Ž" }, { "input": "persona", "output": "â â »â Žâ •â â " }, { "input": "persona's", "output": "â â »â Žâ •â â â „â Ž" }, { "input": "personable", "output": "â â »â Žâ •â â â ¼" }, { "input": "personae", "output": "â â »â Žâ •â â â ‘" }, { "input": "personage", "output": "â â »â Žâ •â â â ›â ‘" }, { "input": "personage's", "output": "â â »â Žâ •â â â ›â ‘â „â Ž" }, { "input": "personages", "output": "â â »â Žâ •â â â ›â ‘â Ž" }, { "input": "personal", "output": "â â »â Žâ •â â â ‡" }, { "input": "personal's", "output": "â â »â Žâ •â â â ‡â „â Ž" }, { "input": "personalities", "output": "â â »â Žâ •â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "personality", "output": "â â »â Žâ •â â â ‡â °â ½" }, { "input": "personality's", "output": "â â »â Žâ •â â â ‡â °â ½â „â Ž" }, { "input": "personalize", "output": "â â »â Žâ •â â â ‡â Šâ µâ ‘" }, { "input": "personalized", "output": "â â »â Žâ •â â â ‡â Šâ µâ «" }, { "input": "personalizes", "output": "â â »â Žâ •â â â ‡â Šâ µâ ‘â Ž" }, { "input": "personalizing", "output": "â â »â Žâ •â â â ‡â Šâ µâ Œ" }, { "input": "personally", "output": "â â »â Žâ •â â  â ½" }, { "input": "personals", "output": "â â »â Žâ •â â â ‡â Ž" }, { "input": "personalty", "output": "â â »â Žâ •â â â ‡â žâ ½" }, { "input": "personalty's", "output": "â â »â Žâ •â â â ‡â žâ ½â „â Ž" }, { "input": "personification", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‰â  â " }, { "input": "personification's", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "personifications", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "personified", "output": "â â »â Žâ •â â Šâ ‹â Šâ «" }, { "input": "personifies", "output": "â â »â Žâ •â â Šâ ‹â Šâ ‘â Ž" }, { "input": "personify", "output": "â â »â Žâ •â â Šâ ‹â ½" }, { "input": "personifying", "output": "â â »â Žâ •â â Šâ ‹â ½â Œ" }, { "input": "personnel", "output": "â â »â Žâ •â â â ‘â ‡" }, { "input": "personnel's", "output": "â â »â Žâ •â â â ‘⠇⠄⠎" }, { "input": "persons", "output": "â â »â Žâ •â â Ž" }, { "input": "perspective", "output": "â â »â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "perspective's", "output": "â â »â Žâ â ‘⠉⠞⠊⠧⠑⠄⠎" }, { "input": "perspectives", "output": "â â »â Žâ â ‘⠉⠞⠊⠧⠑⠎" }, { "input": "perspicacious", "output": "â â »â Žâ â Šâ ‰â â ‰â Šâ ³â Ž" }, { "input": "perspicaciously", "output": "â â »â Žâ â Šâ ‰â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "perspicacity", "output": "â â »â Žâ â Šâ ‰â â ‰â °â ½" }, { "input": "perspicacity's", "output": "â â »â Žâ â Šâ ‰â â ‰â °â ½â „â Ž" }, { "input": "perspicuity", "output": "â â »â Žâ â Šâ ‰â ¥â °â ½" }, { "input": "perspicuity's", "output": "â â »â Žâ â Šâ ‰â ¥â °â ½â „â Ž" }, { "input": "perspicuous", "output": "â â »â Žâ â Šâ ‰â ¥â ³â Ž" }, { "input": "perspiration", "output": "â â »â Žâ â Šâ —â  â " }, { "input": "perspiration's", "output": "â â »â Žâ â Šâ —â  â â „â Ž" }, { "input": "perspire", "output": "â â »â Žâ â Šâ —â ‘" }, { "input": "perspired", "output": "â â »â Žâ â Šâ —â «" }, { "input": "perspires", "output": "â â »â Žâ â Šâ —â ‘â Ž" }, { "input": "perspiring", "output": "â â »â Žâ â Šâ —â Œ" }, { "input": "persuadable", "output": "â â »â Žâ ¥â â ™â â ¼" }, { "input": "persuade", "output": "â â »â Žâ ¥â â ™â ‘" }, { "input": "persuaded", "output": "â â »â Žâ ¥â â ™â «" }, { "input": "persuader", "output": "â â »â Žâ ¥â â ™â »" }, { "input": "persuader's", "output": "â â »â Žâ ¥â â ™â »â „â Ž" }, { "input": "persuaders", "output": "â â »â Žâ ¥â â ™â »â Ž" }, { "input": "persuades", "output": "â â »â Žâ ¥â â ™â ‘â Ž" }, { "input": "persuading", "output": "â â »â Žâ ¥â â ™â Œ" }, { "input": "persuasion", "output": "â â »â Žâ ¥â â ¨â " }, { "input": "persuasion's", "output": "â â »â Žâ ¥â â ¨â â „â Ž" }, { "input": "persuasions", "output": "â â »â Žâ ¥â â ¨â â Ž" }, { "input": "persuasive", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘" }, { "input": "persuasively", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘⠇⠽" }, { "input": "persuasiveness", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘â °â Ž" }, { "input": "persuasiveness's", "output": "â â »â Žâ ¥â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "pert", "output": "â â »â ž" }, { "input": "pertain", "output": "â â »â žâ â ”" }, { "input": "pertained", "output": "â â »â žâ â ”â «" }, { "input": "pertaining", "output": "â â »â žâ â ”â Œ" }, { "input": "pertains", "output": "â â »â žâ â ”â Ž" }, { "input": "perter", "output": "â â »â žâ »" }, { "input": "pertest", "output": "â â »â žâ ‘â Œ" }, { "input": "pertinacious", "output": "â â »â žâ ”â â ‰â Šâ ³â Ž" }, { "input": "pertinaciously", "output": "â â »â žâ ”â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "pertinacity", "output": "â â »â žâ ”â â ‰â °â ½" }, { "input": "pertinacity's", "output": "â â »â žâ ”â â ‰â °â ½â „â Ž" }, { "input": "pertinence", "output": "â â »â žâ ”â °â ‘" }, { "input": "pertinence's", "output": "â â »â žâ ”â °â ‘â „â Ž" }, { "input": "pertinent", "output": "â â »â žâ ”⠢⠞" }, { "input": "pertly", "output": "â â »â žâ ‡â ½" }, { "input": "pertness", "output": "â â »â žâ °â Ž" }, { "input": "pertness's", "output": "â â »â žâ °â Žâ „â Ž" }, { "input": "perturb", "output": "â â »â žâ ¥â —â ƒ" }, { "input": "perturbation", "output": "â â »â žâ ¥â —⠃⠠â " }, { "input": "perturbation's", "output": "â â »â žâ ¥â —⠃⠠â â „â Ž" }, { "input": "perturbations", "output": "â â »â žâ ¥â —⠃⠠â â Ž" }, { "input": "perturbed", "output": "â â »â žâ ¥â —⠃⠫" }, { "input": "perturbing", "output": "â â »â žâ ¥â —⠃⠌" }, { "input": "perturbs", "output": "â â »â žâ ¥â —⠃⠎" }, { "input": "pertussis's", "output": "â â »â žâ ¥â Žâ Žâ Šâ Žâ „â Ž" }, { "input": "peruke", "output": "â â »â ¥â …â ‘" }, { "input": "peruke's", "output": "â â »â ¥â …â ‘â „â Ž" }, { "input": "perukes", "output": "â â »â ¥â …â ‘â Ž" }, { "input": "perusal", "output": "â â »â ¥â Žâ â ‡" }, { "input": "perusal's", "output": "â â »â ¥â Žâ â ‡â „â Ž" }, { "input": "perusals", "output": "â â »â ¥â Žâ â ‡â Ž" }, { "input": "peruse", "output": "â â »â ¥â Žâ ‘" }, { "input": "perused", "output": "â â »â ¥â Žâ «" }, { "input": "peruses", "output": "â â »â ¥â Žâ ‘â Ž" }, { "input": "perusing", "output": "â â »â ¥â Žâ Œ" }, { "input": "perv", "output": "â â »â §" }, { "input": "pervade", "output": "â â »â §â â ™â ‘" }, { "input": "pervaded", "output": "â â »â §â â ™â «" }, { "input": "pervades", "output": "â â »â §â â ™â ‘â Ž" }, { "input": "pervading", "output": "â â »â §â â ™â Œ" }, { "input": "pervasive", "output": "â â »â §â â Žâ Šâ §â ‘" }, { "input": "pervasiveness's", "output": "â â »â §â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "perverse", "output": "â â »â §â »â Žâ ‘" }, { "input": "perversely", "output": "â â »â §â »â Žâ ‘⠇⠽" }, { "input": "perverseness", "output": "â â »â §â »â Žâ ‘â °â Ž" }, { "input": "perverseness's", "output": "â â »â §â »â Žâ ‘â °â Žâ „â Ž" }, { "input": "perversion", "output": "â â »â §â »â ¨â " }, { "input": "perversion's", "output": "â â »â §â »â ¨â â „â Ž" }, { "input": "perversions", "output": "â â »â §â »â ¨â â Ž" }, { "input": "perversity", "output": "â â »â §â »â Žâ °â ½" }, { "input": "perversity's", "output": "â â »â §â »â Žâ °â ½â „â Ž" }, { "input": "pervert", "output": "â â »â §â »â ž" }, { "input": "pervert's", "output": "â â »â §â »â žâ „â Ž" }, { "input": "perverted", "output": "â â »â §â »â žâ «" }, { "input": "perverting", "output": "â â »â §â »â žâ Œ" }, { "input": "perverts", "output": "â â »â §â »â žâ Ž" }, { "input": "peseta", "output": "â â ‘â Žâ ‘â žâ " }, { "input": "peseta's", "output": "â â ‘â Žâ ‘â žâ â „â Ž" }, { "input": "pesetas", "output": "â â ‘â Žâ ‘â žâ â Ž" }, { "input": "peskier", "output": "â â ‘â Žâ …â Šâ »" }, { "input": "peskiest", "output": "â â ‘â Žâ …â Šâ ‘â Œ" }, { "input": "peskily", "output": "â â ‘⠎⠅⠊⠇⠽" }, { "input": "peskiness", "output": "â â ‘â Žâ …â Šâ °â Ž" }, { "input": "peskiness's", "output": "â â ‘â Žâ …â Šâ °â Žâ „â Ž" }, { "input": "pesky", "output": "â â ‘â Žâ …â ½" }, { "input": "peso", "output": "â â ‘â Žâ •" }, { "input": "peso's", "output": "â â ‘â Žâ •â „â Ž" }, { "input": "pesos", "output": "â â ‘â Žâ •â Ž" }, { "input": "pessimism", "output": "â â ‘â Žâ Žâ Šâ â Šâ Žâ " }, { "input": "pessimism's", "output": "â â ‘â Žâ Žâ Šâ â Šâ Žâ â „â Ž" }, { "input": "pessimist", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œ" }, { "input": "pessimist's", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ „â Ž" }, { "input": "pessimistic", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ Šâ ‰" }, { "input": "pessimistically", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ Šâ ‰â  â ½" }, { "input": "pessimists", "output": "â â ‘â Žâ Žâ Šâ â Šâ Œâ Ž" }, { "input": "pest", "output": "â â ‘â Œ" }, { "input": "pest's", "output": "â â ‘⠌⠄⠎" }, { "input": "pester", "output": "â â ‘⠌⠻" }, { "input": "pestered", "output": "â â ‘⠌⠻⠫" }, { "input": "pestering", "output": "â â ‘⠌⠻⠌" }, { "input": "pesters", "output": "â â ‘⠌⠻⠎" }, { "input": "pesticide", "output": "â â ‘⠌⠊⠉⠊⠙⠑" }, { "input": "pesticide's", "output": "â â ‘⠌⠊⠉⠊⠙⠑⠄⠎" }, { "input": "pesticides", "output": "â â ‘⠌⠊⠉⠊⠙⠑⠎" }, { "input": "pestiferous", "output": "â â ‘⠌⠊⠋⠻⠳⠎" }, { "input": "pestilence", "output": "â â ‘⠌⠊⠇⠰⠑" }, { "input": "pestilence's", "output": "â â ‘⠌⠊⠇⠰⠑⠄⠎" }, { "input": "pestilences", "output": "â â ‘⠌⠊⠇⠰⠑⠎" }, { "input": "pestilent", "output": "â â ‘⠌⠊⠇⠢⠞" }, { "input": "pestle", "output": "â â ‘⠌⠇⠑" }, { "input": "pestle's", "output": "â â ‘⠌⠇⠑⠄⠎" }, { "input": "pestled", "output": "â â ‘⠌⠇⠫" }, { "input": "pestles", "output": "â â ‘⠌⠇⠑⠎" }, { "input": "pestling", "output": "â â ‘⠌⠇⠌" }, { "input": "pesto's", "output": "â â ‘⠌⠕⠄⠎" }, { "input": "pests", "output": "â â ‘⠌⠎" }, { "input": "pet", "output": "â â ‘â ž" }, { "input": "pet's", "output": "â â ‘â žâ „â Ž" }, { "input": "petabyte", "output": "â â ‘â žâ â ƒâ ½â žâ ‘" }, { "input": "petabyte's", "output": "â â ‘â žâ â ƒâ ½â žâ ‘â „â Ž" }, { "input": "petabytes", "output": "â â ‘â žâ â ƒâ ½â žâ ‘â Ž" }, { "input": "petal", "output": "â â ‘â žâ â ‡" }, { "input": "petal's", "output": "â â ‘â žâ â ‡â „â Ž" }, { "input": "petaled", "output": "â â ‘â žâ â ‡â «" }, { "input": "petals", "output": "â â ‘â žâ â ‡â Ž" }, { "input": "petard", "output": "â â ‘⠞⠜⠙" }, { "input": "petard's", "output": "â â ‘⠞⠜⠙⠄⠎" }, { "input": "petards", "output": "â â ‘⠞⠜⠙⠎" }, { "input": "petcock", "output": "â â ‘⠞⠉⠕⠉⠅" }, { "input": "petcock's", "output": "â â ‘⠞⠉⠕⠉⠅⠄⠎" }, { "input": "petcocks", "output": "â â ‘⠞⠉⠕⠉⠅⠎" }, { "input": "peter", "output": "â â ‘â žâ »" }, { "input": "peter's", "output": "â â ‘⠞⠻⠄⠎" }, { "input": "petered", "output": "â â ‘⠞⠻⠫" }, { "input": "petering", "output": "â â ‘⠞⠻⠌" }, { "input": "peters", "output": "â â ‘⠞⠻⠎" }, { "input": "petiole", "output": "â â ‘⠞⠊⠕⠇⠑" }, { "input": "petiole's", "output": "â â ‘⠞⠊⠕⠇⠑⠄⠎" }, { "input": "petioles", "output": "â â ‘⠞⠊⠕⠇⠑⠎" }, { "input": "petite", "output": "â â ‘â žâ Šâ žâ ‘" }, { "input": "petite's", "output": "â â ‘â žâ Šâ žâ ‘â „â Ž" }, { "input": "petites", "output": "â â ‘â žâ Šâ žâ ‘â Ž" }, { "input": "petition", "output": "â â ‘â žâ Šâ °â " }, { "input": "petition's", "output": "â â ‘â žâ Šâ °â â „â Ž" }, { "input": "petitioned", "output": "â â ‘â žâ Šâ °â â «" }, { "input": "petitioner", "output": "â â ‘â žâ Šâ °â â »" }, { "input": "petitioner's", "output": "â â ‘â žâ Šâ °â â »â „â Ž" }, { "input": "petitioners", "output": "â â ‘â žâ Šâ °â â »â Ž" }, { "input": "petitioning", "output": "â â ‘â žâ Šâ °â â Œ" }, { "input": "petitions", "output": "â â ‘â žâ Šâ °â â Ž" }, { "input": "petrel", "output": "â â ‘â žâ —â ‘â ‡" }, { "input": "petrel's", "output": "â â ‘⠞⠗⠑⠇⠄⠎" }, { "input": "petrels", "output": "â â ‘⠞⠗⠑⠇⠎" }, { "input": "petrifaction", "output": "â â ‘â žâ —â Šâ ‹â â ‰â °â " }, { "input": "petrifaction's", "output": "â â ‘â žâ —â Šâ ‹â â ‰â °â â „â Ž" }, { "input": "petrified", "output": "â â ‘â žâ —â Šâ ‹â Šâ «" }, { "input": "petrifies", "output": "â â ‘â žâ —â Šâ ‹â Šâ ‘â Ž" }, { "input": "petrify", "output": "â â ‘â žâ —â Šâ ‹â ½" }, { "input": "petrifying", "output": "â â ‘⠞⠗⠊⠋⠽⠌" }, { "input": "petrochemical", "output": "â â ‘â žâ —â •â ¡â ‘â â Šâ ‰â â ‡" }, { "input": "petrochemical's", "output": "â â ‘â žâ —â •â ¡â ‘â â Šâ ‰â â ‡â „â Ž" }, { "input": "petrochemicals", "output": "â â ‘â žâ —â •â ¡â ‘â â Šâ ‰â â ‡â Ž" }, { "input": "petrol", "output": "â â ‘â žâ —â •â ‡" }, { "input": "petrol's", "output": "â â ‘⠞⠗⠕⠇⠄⠎" }, { "input": "petrolatum", "output": "â â ‘â žâ —â •â ‡â â žâ ¥â " }, { "input": "petrolatum's", "output": "â â ‘â žâ —â •â ‡â â žâ ¥â â „â Ž" }, { "input": "petroleum", "output": "â â ‘⠞⠗⠕⠇⠑⠥â " }, { "input": "petroleum's", "output": "â â ‘⠞⠗⠕⠇⠑⠥â â „â Ž" }, { "input": "petrologist", "output": "â â ‘⠞⠗⠕⠇⠕⠛⠊⠌" }, { "input": "petrologist's", "output": "â â ‘⠞⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "petrologists", "output": "â â ‘⠞⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "petrology's", "output": "â â ‘⠞⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "pets", "output": "â â ‘â žâ Ž" }, { "input": "petted", "output": "â â ‘â žâ žâ «" }, { "input": "petticoat", "output": "â â ‘⠞⠞⠊⠉⠕â â ž" }, { "input": "petticoat's", "output": "â â ‘⠞⠞⠊⠉⠕â â žâ „â Ž" }, { "input": "petticoats", "output": "â â ‘⠞⠞⠊⠉⠕â â žâ Ž" }, { "input": "pettier", "output": "â â ‘â žâ žâ Šâ »" }, { "input": "pettiest", "output": "â â ‘â žâ žâ Šâ ‘â Œ" }, { "input": "pettifog", "output": "â â ‘â žâ žâ Šâ ‹â •â ›" }, { "input": "pettifogged", "output": "â â ‘â žâ žâ Šâ ‹â •â ¶â «" }, { "input": "pettifogger", "output": "â â ‘â žâ žâ Šâ ‹â •â ¶â »" }, { "input": "pettifogger's", "output": "â â ‘⠞⠞⠊⠋⠕⠶⠻⠄⠎" }, { "input": "pettifoggers", "output": "â â ‘⠞⠞⠊⠋⠕⠶⠻⠎" }, { "input": "pettifoggery", "output": "â â ‘⠞⠞⠊⠋⠕⠶⠻⠽" }, { "input": "pettifoggery's", "output": "â â ‘⠞⠞⠊⠋⠕⠶⠻⠽⠄⠎" }, { "input": "pettifogging", "output": "â â ‘â žâ žâ Šâ ‹â •â ¶â Œ" }, { "input": "pettifogs", "output": "â â ‘⠞⠞⠊⠋⠕⠛⠎" }, { "input": "pettily", "output": "â â ‘⠞⠞⠊⠇⠽" }, { "input": "pettiness", "output": "â â ‘â žâ žâ Šâ °â Ž" }, { "input": "pettiness's", "output": "â â ‘â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "petting", "output": "â â ‘â žâ žâ Œ" }, { "input": "petting's", "output": "â â ‘⠞⠞⠌⠄⠎" }, { "input": "pettish", "output": "â â ‘â žâ žâ Šâ ©" }, { "input": "pettishly", "output": "â â ‘⠞⠞⠊⠩⠇⠽" }, { "input": "petty", "output": "â â ‘â žâ žâ ½" }, { "input": "petulance", "output": "â â ‘⠞⠥⠇⠨⠑" }, { "input": "petulance's", "output": "â â ‘⠞⠥⠇⠨⠑⠄⠎" }, { "input": "petulant", "output": "â â ‘⠞⠥⠇â â â ž" }, { "input": "petulantly", "output": "â â ‘⠞⠥⠇â â â žâ ‡â ½" }, { "input": "petunia", "output": "â â ‘â žâ ¥â â Šâ " }, { "input": "petunia's", "output": "â â ‘â žâ ¥â â Šâ â „â Ž" }, { "input": "petunias", "output": "â â ‘â žâ ¥â â Šâ â Ž" }, { "input": "pew", "output": "â â ‘â º" }, { "input": "pew's", "output": "â â ‘⠺⠄⠎" }, { "input": "pewee", "output": "â â ‘⠺⠑⠑" }, { "input": "pewee's", "output": "â â ‘⠺⠑⠑⠄⠎" }, { "input": "pewees", "output": "â â ‘⠺⠑⠑⠎" }, { "input": "pewit", "output": "â â ‘⠺⠊⠞" }, { "input": "pewit's", "output": "â â ‘⠺⠊⠞⠄⠎" }, { "input": "pewits", "output": "â â ‘⠺⠊⠞⠎" }, { "input": "pews", "output": "â â ‘⠺⠎" }, { "input": "pewter", "output": "â â ‘⠺⠞⠻" }, { "input": "pewter's", "output": "â â ‘⠺⠞⠻⠄⠎" }, { "input": "pewters", "output": "â â ‘⠺⠞⠻⠎" }, { "input": "peyote", "output": "â â ‘⠽⠕⠞⠑" }, { "input": "peyote's", "output": "â â ‘⠽⠕⠞⠑⠄⠎" }, { "input": "phaeton", "output": "â â “â â ‘â žâ •â " }, { "input": "phaeton's", "output": "â â “â â ‘â žâ •â â „â Ž" }, { "input": "phaetons", "output": "â â “â â ‘â žâ •â â Ž" }, { "input": "phalanger", "output": "â â “â â ‡â â â ›â »" }, { "input": "phalanger's", "output": "â â “â â ‡â â â ›â »â „â Ž" }, { "input": "phalangers", "output": "â â “â â ‡â â â ›â »â Ž" }, { "input": "phalanges", "output": "â â “â â ‡â â â ›â ‘â Ž" }, { "input": "phalanx", "output": "â â “â â ‡â â â ­" }, { "input": "phalanx's", "output": "â â “â â ‡â â â ­â „â Ž" }, { "input": "phalanxes", "output": "â â “â â ‡â â â ­â ‘â Ž" }, { "input": "phalli", "output": "â â “â â ‡â ‡â Š" }, { "input": "phallic", "output": "â â “â â ‡â ‡â Šâ ‰" }, { "input": "phallus", "output": "â â “â â ‡â ‡â ¥â Ž" }, { "input": "phallus's", "output": "â â “â â ‡â ‡â ¥â Žâ „â Ž" }, { "input": "phantasm", "output": "â â “â â â žâ â Žâ " }, { "input": "phantasm's", "output": "â â “â â â žâ â Žâ â „â Ž" }, { "input": "phantasmagoria", "output": "â â “â â â žâ â Žâ â â ›â •â —â Šâ " }, { "input": "phantasmagoria's", "output": "â â “â â â žâ â Žâ â â ›â •â —â Šâ â „â Ž" }, { "input": "phantasmagorias", "output": "â â “â â â žâ â Žâ â â ›â •â —â Šâ â Ž" }, { "input": "phantasmal", "output": "â â “â â â žâ â Žâ â â ‡" }, { "input": "phantasms", "output": "â â “â â â žâ â Žâ â Ž" }, { "input": "phantom", "output": "â â “â â â žâ •â " }, { "input": "phantom's", "output": "â â “â â â žâ •â â „â Ž" }, { "input": "phantoms", "output": "â â “â â â žâ •â â Ž" }, { "input": "pharaoh", "output": "â â “â œâ â •â “" }, { "input": "pharaoh's", "output": "â â “â œâ â •â “â „â Ž" }, { "input": "pharaohs", "output": "â â “â œâ â •â “â Ž" }, { "input": "pharisaic", "output": "â â “⠜⠊⠎â â Šâ ‰" }, { "input": "pharisee", "output": "â â “⠜⠊⠎⠑⠑" }, { "input": "pharisee's", "output": "â â “⠜⠊⠎⠑⠑⠄⠎" }, { "input": "pharisees", "output": "â â “⠜⠊⠎⠑⠑⠎" }, { "input": "pharmaceutic", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉" }, { "input": "pharmaceutic's", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉⠄⠎" }, { "input": "pharmaceutical", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉â â ‡" }, { "input": "pharmaceutical's", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉â â ‡â „â Ž" }, { "input": "pharmaceuticals", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉â â ‡â Ž" }, { "input": "pharmaceutics", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉⠎" }, { "input": "pharmaceutics's", "output": "â â “â œâ â â ‰â ‘⠥⠞⠊⠉⠎⠄⠎" }, { "input": "pharmacies", "output": "â â “â œâ â â ‰â Šâ ‘â Ž" }, { "input": "pharmacist", "output": "â â “â œâ â â ‰â Šâ Œ" }, { "input": "pharmacist's", "output": "â â “â œâ â â ‰â Šâ Œâ „â Ž" }, { "input": "pharmacists", "output": "â â “â œâ â â ‰â Šâ Œâ Ž" }, { "input": "pharmacologist", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠊⠌" }, { "input": "pharmacologist's", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "pharmacologists", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠊⠌⠎" }, { "input": "pharmacology", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠽" }, { "input": "pharmacology's", "output": "â â “â œâ â â ‰â •⠇⠕⠛⠽⠄⠎" }, { "input": "pharmacopoeia", "output": "â â “â œâ â â ‰â •â â •â ‘â Šâ " }, { "input": "pharmacopoeia's", "output": "â â “â œâ â â ‰â •â â •â ‘â Šâ â „â Ž" }, { "input": "pharmacopoeias", "output": "â â “â œâ â â ‰â •â â •â ‘â Šâ â Ž" }, { "input": "pharmacy", "output": "â â “â œâ â â ‰â ½" }, { "input": "pharmacy's", "output": "â â “â œâ â â ‰â ½â „â Ž" }, { "input": "pharyngeal", "output": "â â “⠜⠽â â ›â ‚â ‡" }, { "input": "pharynges", "output": "â â “⠜⠽â â ›â ‘â Ž" }, { "input": "pharyngitis", "output": "â â “⠜⠽â â ›â Šâ žâ Šâ Ž" }, { "input": "pharyngitis's", "output": "â â “⠜⠽â â ›â Šâ žâ Šâ Žâ „â Ž" }, { "input": "pharynx", "output": "â â “⠜⠽â â ­" }, { "input": "pharynx's", "output": "â â “⠜⠽â â ­â „â Ž" }, { "input": "phase", "output": "â â “â â Žâ ‘" }, { "input": "phase's", "output": "â â “â â Žâ ‘â „â Ž" }, { "input": "phased", "output": "â â “â â Žâ «" }, { "input": "phaseout", "output": "â â “â â Žâ ‘⠳⠞" }, { "input": "phaseout's", "output": "â â “â â Žâ ‘⠳⠞⠄⠎" }, { "input": "phaseouts", "output": "â â “â â Žâ ‘⠳⠞⠎" }, { "input": "phases", "output": "â â “â â Žâ ‘â Ž" }, { "input": "phasing", "output": "â â “â â Žâ Œ" }, { "input": "phat", "output": "â â “â â ž" }, { "input": "pheasant", "output": "â â “â ‚â Žâ â â ž" }, { "input": "pheasant's", "output": "â â “â ‚â Žâ â â žâ „â Ž" }, { "input": "pheasants", "output": "â â “â ‚â Žâ â â žâ Ž" }, { "input": "phenacetin", "output": "â â “â ¢â â ‰â ‘â žâ ”" }, { "input": "phenacetin's", "output": "â â “â ¢â â ‰â ‘⠞⠔⠄⠎" }, { "input": "phenobarbital", "output": "â â “⠢⠕⠃⠜⠃⠊⠞â â ‡" }, { "input": "phenobarbital's", "output": "â â “⠢⠕⠃⠜⠃⠊⠞â â ‡â „â Ž" }, { "input": "phenol", "output": "â â “⠢⠕⠇" }, { "input": "phenol's", "output": "â â “⠢⠕⠇⠄⠎" }, { "input": "phenomena", "output": "â â “⠢⠕â â ¢â " }, { "input": "phenomenal", "output": "â â “⠢⠕â â ¢â â ‡" }, { "input": "phenomenally", "output": "â â “⠢⠕â â ¢â  â ½" }, { "input": "phenomenon", "output": "â â “⠢⠕â â ¢â •â " }, { "input": "phenomenon's", "output": "â â “⠢⠕â â ¢â •â â „â Ž" }, { "input": "phenomenons", "output": "â â “⠢⠕â â ¢â •â â Ž" }, { "input": "phenotype", "output": "â â “⠢⠕⠞⠽â â ‘" }, { "input": "pheromone", "output": "â â “⠻⠕â â â •" }, { "input": "pheromone's", "output": "â â “⠻⠕â â â •â „â Ž" }, { "input": "pheromones", "output": "â â “⠻⠕â â â •â Ž" }, { "input": "phi", "output": "â â “â Š" }, { "input": "phi's", "output": "â â “â Šâ „â Ž" }, { "input": "phial", "output": "â â “â Šâ â ‡" }, { "input": "phial's", "output": "â â “â Šâ â ‡â „â Ž" }, { "input": "phials", "output": "â â “â Šâ â ‡â Ž" }, { "input": "philander", "output": "â â “⠊⠇⠯⠻" }, { "input": "philandered", "output": "â â “⠊⠇⠯⠻⠫" }, { "input": "philanderer", "output": "â â “⠊⠇⠯⠻⠻" }, { "input": "philanderer's", "output": "â â “⠊⠇⠯⠻⠻⠄⠎" }, { "input": "philanderers", "output": "â â “⠊⠇⠯⠻⠻⠎" }, { "input": "philandering", "output": "â â “⠊⠇⠯⠻⠌" }, { "input": "philandering's", "output": "â â “⠊⠇⠯⠻⠌⠄⠎" }, { "input": "philanders", "output": "â â “⠊⠇⠯⠻⠎" }, { "input": "philanthropic", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ ‰" }, { "input": "philanthropically", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ ‰â  â ½" }, { "input": "philanthropies", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ ‘â Ž" }, { "input": "philanthropist", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ Œ" }, { "input": "philanthropist's", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ Œâ „â Ž" }, { "input": "philanthropists", "output": "â â “â Šâ ‡â â â ¹â —â •â â Šâ Œâ Ž" }, { "input": "philanthropy", "output": "â â “â Šâ ‡â â â ¹â —â •â â ½" }, { "input": "philanthropy's", "output": "â â “â Šâ ‡â â â ¹â —â •â â ½â „â Ž" }, { "input": "philatelic", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠉" }, { "input": "philatelist", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠌" }, { "input": "philatelist's", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠌⠄⠎" }, { "input": "philatelists", "output": "â â “â Šâ ‡â â žâ ‘⠇⠊⠌⠎" }, { "input": "philately", "output": "â â “â Šâ ‡â â žâ ‘⠇⠽" }, { "input": "philately's", "output": "â â “â Šâ ‡â â žâ ‘⠇⠽⠄⠎" }, { "input": "philharmonic", "output": "â â “⠊⠇⠓⠜â â •â â Šâ ‰" }, { "input": "philharmonic's", "output": "â â “⠊⠇⠓⠜â â •â â Šâ ‰â „â Ž" }, { "input": "philharmonics", "output": "â â “⠊⠇⠓⠜â â •â â Šâ ‰â Ž" }, { "input": "philippic", "output": "â â “⠊⠇⠊â â â Šâ ‰" }, { "input": "philippic's", "output": "â â “⠊⠇⠊â â â Šâ ‰â „â Ž" }, { "input": "philippics", "output": "â â “⠊⠇⠊â â â Šâ ‰â Ž" }, { "input": "philistine", "output": "â â “⠊⠇⠊⠌⠔⠑" }, { "input": "philistine's", "output": "â â “⠊⠇⠊⠌⠔⠑⠄⠎" }, { "input": "philistines", "output": "â â “⠊⠇⠊⠌⠔⠑⠎" }, { "input": "philistinism's", "output": "â â “⠊⠇⠊⠌⠔⠊⠎â â „â Ž" }, { "input": "philodendron", "output": "â â “⠊⠇⠕⠙⠢⠙⠗⠕â " }, { "input": "philodendron's", "output": "â â “⠊⠇⠕⠙⠢⠙⠗⠕â â „â Ž" }, { "input": "philodendrons", "output": "â â “⠊⠇⠕⠙⠢⠙⠗⠕â â Ž" }, { "input": "philological", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "philologist", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠌" }, { "input": "philologist's", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "philologists", "output": "â â “⠊⠇⠕⠇⠕⠛⠊⠌⠎" }, { "input": "philology", "output": "â â “⠊⠇⠕⠇⠕⠛⠽" }, { "input": "philology's", "output": "â â “⠊⠇⠕⠇⠕⠛⠽⠄⠎" }, { "input": "philosopher", "output": "â â “⠊⠇⠕⠎⠕â â “â »" }, { "input": "philosopher's", "output": "â â “⠊⠇⠕⠎⠕â â “⠻⠄⠎" }, { "input": "philosophers", "output": "â â “⠊⠇⠕⠎⠕â â “⠻⠎" }, { "input": "philosophic", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‰" }, { "input": "philosophical", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‰â â ‡" }, { "input": "philosophically", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠉⠠⠽" }, { "input": "philosophies", "output": "â â “⠊⠇⠕⠎⠕â â “â Šâ ‘â Ž" }, { "input": "philosophize", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠑" }, { "input": "philosophized", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠫" }, { "input": "philosophizer", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠻" }, { "input": "philosophizer's", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠻⠄⠎" }, { "input": "philosophizers", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠻⠎" }, { "input": "philosophizes", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠑⠎" }, { "input": "philosophizing", "output": "â â “⠊⠇⠕⠎⠕â â “⠊⠵⠌" }, { "input": "philosophy", "output": "â â “⠊⠇⠕⠎⠕â â “â ½" }, { "input": "philosophy's", "output": "â â “⠊⠇⠕⠎⠕â â “⠽⠄⠎" }, { "input": "philter", "output": "â â “⠊⠇⠞⠻" }, { "input": "philter's", "output": "â â “⠊⠇⠞⠻⠄⠎" }, { "input": "philters", "output": "â â “⠊⠇⠞⠻⠎" }, { "input": "phis", "output": "â â “â Šâ Ž" }, { "input": "phish", "output": "â â “â Šâ ©" }, { "input": "phished", "output": "â â “â Šâ ©â «" }, { "input": "phisher", "output": "â â “â Šâ ©â »" }, { "input": "phisher's", "output": "â â “⠊⠩⠻⠄⠎" }, { "input": "phishers", "output": "â â “⠊⠩⠻⠎" }, { "input": "phishing", "output": "â â “â Šâ ©â Œ" }, { "input": "phlebitis", "output": "â â “⠇⠑⠃⠊⠞⠊⠎" }, { "input": "phlebitis's", "output": "â â “⠇⠑⠃⠊⠞⠊⠎⠄⠎" }, { "input": "phlegm", "output": "â â “⠇⠑⠛â " }, { "input": "phlegm's", "output": "â â “⠇⠑⠛â â „â Ž" }, { "input": "phlegmatic", "output": "â â “⠇⠑⠛â â â žâ Šâ ‰" }, { "input": "phlegmatically", "output": "â â “⠇⠑⠛â â â žâ Šâ ‰â  â ½" }, { "input": "phloem", "output": "â â “⠇⠕⠑â " }, { "input": "phloem's", "output": "â â “⠇⠕⠑â â „â Ž" }, { "input": "phlox", "output": "â â “⠇⠕⠭" }, { "input": "phlox's", "output": "â â “⠇⠕⠭⠄⠎" }, { "input": "phobia", "output": "â â “⠕⠃⠊â " }, { "input": "phobia's", "output": "â â “⠕⠃⠊â â „â Ž" }, { "input": "phobias", "output": "â â “⠕⠃⠊â â Ž" }, { "input": "phobic", "output": "â â “⠕⠃⠊⠉" }, { "input": "phobic's", "output": "â â “⠕⠃⠊⠉⠄⠎" }, { "input": "phobics", "output": "â â “⠕⠃⠊⠉⠎" }, { "input": "phoebe", "output": "â â “⠕⠑⠃⠑" }, { "input": "phoebe's", "output": "â â “⠕⠑⠃⠑⠄⠎" }, { "input": "phoebes", "output": "â â “⠕⠑⠃⠑⠎" }, { "input": "phoenix", "output": "â â “â •â ‘â â Šâ ­" }, { "input": "phoenix's", "output": "â â “â •â ‘â â Šâ ­â „â Ž" }, { "input": "phoenixes", "output": "â â “â •â ‘â â Šâ ­â ‘â Ž" }, { "input": "phone", "output": "â â “â â •" }, { "input": "phone's", "output": "â â “â â •â „â Ž" }, { "input": "phoned", "output": "â â “â •â â «" }, { "input": "phoneme", "output": "â â “â •â â ‘â â ‘" }, { "input": "phoneme's", "output": "â â “â •â â ‘â â ‘â „â Ž" }, { "input": "phonemes", "output": "â â “â •â â ‘â â ‘â Ž" }, { "input": "phonemic", "output": "â â “â •â â ‘â â Šâ ‰" }, { "input": "phonemically", "output": "â â “â •â â ‘â â Šâ ‰â  â ½" }, { "input": "phones", "output": "â â “â â •â Ž" }, { "input": "phonetic", "output": "â â “â •â â ‘â žâ Šâ ‰" }, { "input": "phonetically", "output": "â â “â •â â ‘⠞⠊⠉⠠⠽" }, { "input": "phonetician", "output": "â â “â •â â ‘⠞⠊⠉⠊â â " }, { "input": "phonetician's", "output": "â â “â •â â ‘⠞⠊⠉⠊â â â „â Ž" }, { "input": "phoneticians", "output": "â â “â •â â ‘⠞⠊⠉⠊â â â Ž" }, { "input": "phonetics", "output": "â â “â •â â ‘⠞⠊⠉⠎" }, { "input": "phonetics's", "output": "â â “â •â â ‘⠞⠊⠉⠎⠄⠎" }, { "input": "phonic", "output": "â â “â •â â Šâ ‰" }, { "input": "phonically", "output": "â â “â •â â Šâ ‰â  â ½" }, { "input": "phonics", "output": "â â “â •â â Šâ ‰â Ž" }, { "input": "phonics's", "output": "â â “â •â â Šâ ‰â Žâ „â Ž" }, { "input": "phonied", "output": "â â “â •â â Šâ «" }, { "input": "phonier", "output": "â â “â •â â Šâ »" }, { "input": "phonies", "output": "â â “â •â â Šâ ‘â Ž" }, { "input": "phoniest", "output": "â â “â •â â Šâ ‘â Œ" }, { "input": "phoniness", "output": "â â “â •â â Šâ °â Ž" }, { "input": "phoniness's", "output": "â â “â •â â Šâ °â Žâ „â Ž" }, { "input": "phoning", "output": "â â “â •â â Œ" }, { "input": "phonograph", "output": "â â “â •â â •⠛⠗â â â “" }, { "input": "phonograph's", "output": "â â “â •â â •⠛⠗â â â “â „â Ž" }, { "input": "phonographic", "output": "â â “â •â â •⠛⠗â â â “â Šâ ‰" }, { "input": "phonographs", "output": "â â “â •â â •⠛⠗â â â “â Ž" }, { "input": "phonological", "output": "â â “â •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "phonologically", "output": "â â “â •â â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "phonologist", "output": "â â “â •â â •⠇⠕⠛⠊⠌" }, { "input": "phonologist's", "output": "â â “â •â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "phonologists", "output": "â â “â •â â •⠇⠕⠛⠊⠌⠎" }, { "input": "phonology", "output": "â â “â •â â •⠇⠕⠛⠽" }, { "input": "phonology's", "output": "â â “â •â â •⠇⠕⠛⠽⠄⠎" }, { "input": "phony", "output": "â â “â •â â ½" }, { "input": "phony's", "output": "â â “â •â â ½â „â Ž" }, { "input": "phonying", "output": "â â “â •â â ½â Œ" }, { "input": "phooey", "output": "â â “â •â •â ‘â ½" }, { "input": "phosphate", "output": "â â “â •â Žâ â “â â žâ ‘" }, { "input": "phosphate's", "output": "â â “â •â Žâ â “â â žâ ‘â „â Ž" }, { "input": "phosphates", "output": "â â “â •â Žâ â “â â žâ ‘â Ž" }, { "input": "phosphor", "output": "â â “â •â Žâ â “â •â —" }, { "input": "phosphor's", "output": "â â “â •â Žâ â “â •â —â „â Ž" }, { "input": "phosphorescence", "output": "â â “â •â Žâ â “⠕⠗⠑⠎⠉⠰⠑" }, { "input": "phosphorescence's", "output": "â â “â •â Žâ â “⠕⠗⠑⠎⠉⠰⠑⠄⠎" }, { "input": "phosphorescent", "output": "â â “â •â Žâ â “⠕⠗⠑⠎⠉⠢⠞" }, { "input": "phosphorescently", "output": "â â “â •â Žâ â “⠕⠗⠑⠎⠉⠢⠞⠇⠽" }, { "input": "phosphoric", "output": "â â “â •â Žâ â “â •â —â Šâ ‰" }, { "input": "phosphorous", "output": "â â “â •â Žâ â “⠕⠗⠳⠎" }, { "input": "phosphors", "output": "â â “â •â Žâ â “â •â —â Ž" }, { "input": "phosphorus", "output": "â â “â •â Žâ â “⠕⠗⠥⠎" }, { "input": "phosphorus's", "output": "â â “â •â Žâ â “⠕⠗⠥⠎⠄⠎" }, { "input": "photo", "output": "â â “â •â žâ •" }, { "input": "photo's", "output": "â â “â •â žâ •â „â Ž" }, { "input": "photocopied", "output": "â â “⠕⠞⠕⠉⠕â â Šâ «" }, { "input": "photocopier", "output": "â â “⠕⠞⠕⠉⠕â â Šâ »" }, { "input": "photocopier's", "output": "â â “⠕⠞⠕⠉⠕â â Šâ »â „â Ž" }, { "input": "photocopiers", "output": "â â “⠕⠞⠕⠉⠕â â Šâ »â Ž" }, { "input": "photocopies", "output": "â â “⠕⠞⠕⠉⠕â â Šâ ‘â Ž" }, { "input": "photocopy", "output": "â â “⠕⠞⠕⠉⠕â â ½" }, { "input": "photocopy's", "output": "â â “⠕⠞⠕⠉⠕â â ½â „â Ž" }, { "input": "photocopying", "output": "â â “⠕⠞⠕⠉⠕â â ½â Œ" }, { "input": "photoed", "output": "â â “â •â žâ •â «" }, { "input": "photoelectric", "output": "â â “⠕⠞⠕⠑⠇⠑⠉⠞⠗⠊⠉" }, { "input": "photoelectrically", "output": "â â “⠕⠞⠕⠑⠇⠑⠉⠞⠗⠊⠉⠠⠽" }, { "input": "photoengrave", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â ‘" }, { "input": "photoengraved", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â «" }, { "input": "photoengraver", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â »" }, { "input": "photoengraver's", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â »â „â Ž" }, { "input": "photoengravers", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â »â Ž" }, { "input": "photoengraves", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â ‘â Ž" }, { "input": "photoengraving", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â Œ" }, { "input": "photoengraving's", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â Œâ „â Ž" }, { "input": "photoengravings", "output": "â â “⠕⠞⠕⠢⠛⠗â â §â Œâ Ž" }, { "input": "photofinishing", "output": "â â “⠕⠞⠕⠋⠔⠊⠩⠌" }, { "input": "photofinishing's", "output": "â â “⠕⠞⠕⠋⠔⠊⠩⠌⠄⠎" }, { "input": "photogenic", "output": "â â “⠕⠞⠕⠛⠢⠊⠉" }, { "input": "photogenically", "output": "â â “⠕⠞⠕⠛⠢⠊⠉⠠⠽" }, { "input": "photograph", "output": "â â “⠕⠞⠕⠛⠗â â â “" }, { "input": "photograph's", "output": "â â “⠕⠞⠕⠛⠗â â â “â „â Ž" }, { "input": "photographed", "output": "â â “⠕⠞⠕⠛⠗â â â “â «" }, { "input": "photographer", "output": "â â “⠕⠞⠕⠛⠗â â â “â »" }, { "input": "photographer's", "output": "â â “⠕⠞⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "photographers", "output": "â â “⠕⠞⠕⠛⠗â â â “⠻⠎" }, { "input": "photographic", "output": "â â “⠕⠞⠕⠛⠗â â â “â Šâ ‰" }, { "input": "photographically", "output": "â â “⠕⠞⠕⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "photographing", "output": "â â “⠕⠞⠕⠛⠗â â â “â Œ" }, { "input": "photographs", "output": "â â “⠕⠞⠕⠛⠗â â â “â Ž" }, { "input": "photography", "output": "â â “⠕⠞⠕⠛⠗â â â “â ½" }, { "input": "photography's", "output": "â â “⠕⠞⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "photoing", "output": "â â “â •â žâ •â Œ" }, { "input": "photojournalism", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Žâ " }, { "input": "photojournalism's", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Žâ â „â Ž" }, { "input": "photojournalist", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Œ" }, { "input": "photojournalist's", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Œâ „â Ž" }, { "input": "photojournalists", "output": "â â “⠕⠞⠕⠚⠳⠗â â â ‡â Šâ Œâ Ž" }, { "input": "photometer", "output": "â â “â •â žâ •â â ‘â žâ »" }, { "input": "photometer's", "output": "â â “â •â žâ •â â ‘⠞⠻⠄⠎" }, { "input": "photometers", "output": "â â “â •â žâ •â â ‘⠞⠻⠎" }, { "input": "photon", "output": "â â “â •â žâ •â " }, { "input": "photon's", "output": "â â “â •â žâ •â â „â Ž" }, { "input": "photons", "output": "â â “â •â žâ •â â Ž" }, { "input": "photos", "output": "â â “â •â žâ •â Ž" }, { "input": "photosensitive", "output": "â â “⠕⠞⠕⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "photostat's", "output": "â â “â •â žâ •â Œâ â žâ „â Ž" }, { "input": "photostatic", "output": "â â “â •â žâ •â Œâ â žâ Šâ ‰" }, { "input": "photosynthesis", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ Ž" }, { "input": "photosynthesis's", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ Žâ „â Ž" }, { "input": "photosynthesize", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ µâ ‘" }, { "input": "photosynthesized", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ µâ «" }, { "input": "photosynthesizes", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ µâ ‘â Ž" }, { "input": "photosynthesizing", "output": "â â “â •â žâ •â Žâ ½â â ®â Žâ Šâ µâ Œ" }, { "input": "photosynthetic", "output": "â â “â •â žâ •â Žâ ½â â ®â žâ Šâ ‰" }, { "input": "phototypesetter", "output": "â â “â •â žâ •â žâ ½â â ‘â Žâ ‘â žâ žâ »" }, { "input": "phototypesetting", "output": "â â “â •â žâ •â žâ ½â â ‘â Žâ ‘â žâ žâ Œ" }, { "input": "phrasal", "output": "â â “â —â â Žâ â ‡" }, { "input": "phrase", "output": "â â “â —â â Žâ ‘" }, { "input": "phrase's", "output": "â â “â —â â Žâ ‘â „â Ž" }, { "input": "phrased", "output": "â â “â —â â Žâ «" }, { "input": "phraseology", "output": "â â “â —â â Žâ ‘⠕⠇⠕⠛⠽" }, { "input": "phraseology's", "output": "â â “â —â â Žâ ‘⠕⠇⠕⠛⠽⠄⠎" }, { "input": "phrases", "output": "â â “â —â â Žâ ‘â Ž" }, { "input": "phrasing", "output": "â â “â —â â Žâ Œ" }, { "input": "phrasing's", "output": "â â “â —â â Žâ Œâ „â Ž" }, { "input": "phrasings", "output": "â â “â —â â Žâ Œâ Ž" }, { "input": "phrenology", "output": "â â “⠗⠢⠕⠇⠕⠛⠽" }, { "input": "phrenology's", "output": "â â “⠗⠢⠕⠇⠕⠛⠽⠄⠎" }, { "input": "phyla", "output": "â â “⠽⠇â " }, { "input": "phylacteries", "output": "â â “⠽⠇â â ‰â žâ »â Šâ ‘â Ž" }, { "input": "phylactery", "output": "â â “⠽⠇â â ‰â žâ »â ½" }, { "input": "phylactery's", "output": "â â “⠽⠇â â ‰â žâ »â ½â „â Ž" }, { "input": "phylogeny", "output": "â â “⠽⠇⠕⠛⠢⠽" }, { "input": "phylogeny's", "output": "â â “⠽⠇⠕⠛⠢⠽⠄⠎" }, { "input": "phylum", "output": "â â “⠽⠇⠥â " }, { "input": "phylum's", "output": "â â “⠽⠇⠥â â „â Ž" }, { "input": "physic", "output": "â â “⠽⠎⠊⠉" }, { "input": "physic's", "output": "â â “⠽⠎⠊⠉⠄⠎" }, { "input": "physical", "output": "â â “⠽⠎⠊⠉â â ‡" }, { "input": "physical's", "output": "â â “⠽⠎⠊⠉â â ‡â „â Ž" }, { "input": "physically", "output": "â â “⠽⠎⠊⠉⠠⠽" }, { "input": "physicals", "output": "â â “⠽⠎⠊⠉â â ‡â Ž" }, { "input": "physician", "output": "â â “⠽⠎⠊⠉⠊â â " }, { "input": "physician's", "output": "â â “⠽⠎⠊⠉⠊â â â „â Ž" }, { "input": "physicians", "output": "â â “⠽⠎⠊⠉⠊â â â Ž" }, { "input": "physicist", "output": "â â “⠽⠎⠊⠉⠊⠌" }, { "input": "physicist's", "output": "â â “⠽⠎⠊⠉⠊⠌⠄⠎" }, { "input": "physicists", "output": "â â “⠽⠎⠊⠉⠊⠌⠎" }, { "input": "physicked", "output": "â â “⠽⠎⠊⠉⠅⠫" }, { "input": "physicking", "output": "â â “⠽⠎⠊⠉⠅⠌" }, { "input": "physics", "output": "â â “⠽⠎⠊⠉⠎" }, { "input": "physics's", "output": "â â “⠽⠎⠊⠉⠎⠄⠎" }, { "input": "physiognomies", "output": "â â “⠽⠎⠊⠕⠛â â •â â Šâ ‘â Ž" }, { "input": "physiognomy", "output": "â â “⠽⠎⠊⠕⠛â â •â â ½" }, { "input": "physiognomy's", "output": "â â “⠽⠎⠊⠕⠛â â •â â ½â „â Ž" }, { "input": "physiography", "output": "â â “⠽⠎⠊⠕⠛⠗â â â “â ½" }, { "input": "physiography's", "output": "â â “⠽⠎⠊⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "physiologic", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠉" }, { "input": "physiological", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "physiologist", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠌" }, { "input": "physiologist's", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "physiologists", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "physiology", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠽" }, { "input": "physiology's", "output": "â â “⠽⠎⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "physiotherapist", "output": "â â “⠽⠎⠊⠕⠮⠗â â â Šâ Œ" }, { "input": "physiotherapist's", "output": "â â “⠽⠎⠊⠕⠮⠗â â â Šâ Œâ „â Ž" }, { "input": "physiotherapists", "output": "â â “⠽⠎⠊⠕⠮⠗â â â Šâ Œâ Ž" }, { "input": "physiotherapy", "output": "â â “⠽⠎⠊⠕⠮⠗â â â ½" }, { "input": "physiotherapy's", "output": "â â “⠽⠎⠊⠕⠮⠗â â â ½â „â Ž" }, { "input": "physique", "output": "â â “⠽⠎⠊⠟⠥⠑" }, { "input": "physique's", "output": "â â “⠽⠎⠊⠟⠥⠑⠄⠎" }, { "input": "physiques", "output": "â â “⠽⠎⠊⠟⠥⠑⠎" }, { "input": "pi", "output": "â â Š" }, { "input": "pi's", "output": "â â Šâ „â Ž" }, { "input": "pianissimo", "output": "â â Šâ â â Šâ Žâ Žâ Šâ â •" }, { "input": "pianissimo's", "output": "â â Šâ â â Šâ Žâ Žâ Šâ â •â „â Ž" }, { "input": "pianissimos", "output": "â â Šâ â â Šâ Žâ Žâ Šâ â •â Ž" }, { "input": "pianist", "output": "â â Šâ â â Šâ Œ" }, { "input": "pianist's", "output": "â â Šâ â â Šâ Œâ „â Ž" }, { "input": "pianists", "output": "â â Šâ â â Šâ Œâ Ž" }, { "input": "piano", "output": "â â Šâ â â •" }, { "input": "piano's", "output": "â â Šâ â â •â „â Ž" }, { "input": "pianoforte", "output": "â â Šâ â â •â ¿â žâ ‘" }, { "input": "pianoforte's", "output": "â â Šâ â â •â ¿â žâ ‘â „â Ž" }, { "input": "pianofortes", "output": "â â Šâ â â •â ¿â žâ ‘â Ž" }, { "input": "pianos", "output": "â â Šâ â â •â Ž" }, { "input": "piaster", "output": "â â Šâ â Œâ »" }, { "input": "piaster's", "output": "â â Šâ â Œâ »â „â Ž" }, { "input": "piasters", "output": "â â Šâ â Œâ »â Ž" }, { "input": "piazza", "output": "â â Šâ â µâ µâ " }, { "input": "piazza's", "output": "â â Šâ â µâ µâ â „â Ž" }, { "input": "piazzas", "output": "â â Šâ â µâ µâ â Ž" }, { "input": "pibroch", "output": "â â Šâ ƒâ —â •â ¡" }, { "input": "pibroch's", "output": "â â Šâ ƒâ —â •â ¡â „â Ž" }, { "input": "pibrochs", "output": "â â Šâ ƒâ —â •â ¡â Ž" }, { "input": "pica", "output": "â â Šâ ‰â " }, { "input": "pica's", "output": "â â Šâ ‰â â „â Ž" }, { "input": "picaresque", "output": "â â Šâ ‰â œâ ‘⠎⠟⠥⠑" }, { "input": "picayune", "output": "â â Šâ ‰â â ½â ¥â â ‘" }, { "input": "piccalilli", "output": "â â Šâ ’â â ‡â Šâ ‡â ‡â Š" }, { "input": "piccalilli's", "output": "â â Šâ ’â â ‡â Šâ ‡â ‡â Šâ „â Ž" }, { "input": "piccolo", "output": "â â Šâ ’⠕⠇⠕" }, { "input": "piccolo's", "output": "â â Šâ ’⠕⠇⠕⠄⠎" }, { "input": "piccolos", "output": "â â Šâ ’⠕⠇⠕⠎" }, { "input": "pick", "output": "â â Šâ ‰â …" }, { "input": "pick's", "output": "â â Šâ ‰â …â „â Ž" }, { "input": "pickax", "output": "â â Šâ ‰â …â â ­" }, { "input": "pickax's", "output": "â â Šâ ‰â …â â ­â „â Ž" }, { "input": "pickaxed", "output": "â â Šâ ‰â …â â ­â «" }, { "input": "pickaxes", "output": "â â Šâ ‰â …â â ­â ‘â Ž" }, { "input": "pickaxing", "output": "â â Šâ ‰â …â â ­â Œ" }, { "input": "picked", "output": "â â Šâ ‰â …â «" }, { "input": "picker", "output": "â â Šâ ‰â …â »" }, { "input": "picker's", "output": "â â Šâ ‰â …⠻⠄⠎" }, { "input": "pickerel", "output": "â â Šâ ‰â …⠻⠑⠇" }, { "input": "pickerel's", "output": "â â Šâ ‰â …⠻⠑⠇⠄⠎" }, { "input": "pickerels", "output": "â â Šâ ‰â …⠻⠑⠇⠎" }, { "input": "pickers", "output": "â â Šâ ‰â …⠻⠎" }, { "input": "picket", "output": "â â Šâ ‰â …â ‘â ž" }, { "input": "picket's", "output": "â â Šâ ‰â …â ‘â žâ „â Ž" }, { "input": "picketed", "output": "â â Šâ ‰â …â ‘â žâ «" }, { "input": "picketing", "output": "â â Šâ ‰â …â ‘â žâ Œ" }, { "input": "pickets", "output": "â â Šâ ‰â …â ‘â žâ Ž" }, { "input": "pickier", "output": "â â Šâ ‰â …â Šâ »" }, { "input": "pickiest", "output": "â â Šâ ‰â …â Šâ ‘â Œ" }, { "input": "picking", "output": "â â Šâ ‰â …â Œ" }, { "input": "pickings", "output": "â â Šâ ‰â …⠌⠎" }, { "input": "pickings's", "output": "â â Šâ ‰â …⠌⠎⠄⠎" }, { "input": "pickle", "output": "â â Šâ ‰â …⠇⠑" }, { "input": "pickle's", "output": "â â Šâ ‰â …⠇⠑⠄⠎" }, { "input": "pickled", "output": "â â Šâ ‰â …⠇⠫" }, { "input": "pickles", "output": "â â Šâ ‰â …⠇⠑⠎" }, { "input": "pickling", "output": "â â Šâ ‰â …⠇⠌" }, { "input": "pickpocket", "output": "â â Šâ ‰â …â â •⠉⠅⠑⠞" }, { "input": "pickpocket's", "output": "â â Šâ ‰â …â â •⠉⠅⠑⠞⠄⠎" }, { "input": "pickpockets", "output": "â â Šâ ‰â …â â •⠉⠅⠑⠞⠎" }, { "input": "picks", "output": "â â Šâ ‰â …â Ž" }, { "input": "pickup", "output": "â â Šâ ‰â …â ¥â " }, { "input": "pickup's", "output": "â â Šâ ‰â …â ¥â â „â Ž" }, { "input": "pickups", "output": "â â Šâ ‰â …â ¥â â Ž" }, { "input": "picky", "output": "â â Šâ ‰â …â ½" }, { "input": "picnic", "output": "â â Šâ ‰â â Šâ ‰" }, { "input": "picnic's", "output": "â â Šâ ‰â â Šâ ‰â „â Ž" }, { "input": "picnicked", "output": "â â Šâ ‰â â Šâ ‰â …â «" }, { "input": "picnicker", "output": "â â Šâ ‰â â Šâ ‰â …â »" }, { "input": "picnicker's", "output": "â â Šâ ‰â â Šâ ‰â …⠻⠄⠎" }, { "input": "picnickers", "output": "â â Šâ ‰â â Šâ ‰â …⠻⠎" }, { "input": "picnicking", "output": "â â Šâ ‰â â Šâ ‰â …â Œ" }, { "input": "picnics", "output": "â â Šâ ‰â â Šâ ‰â Ž" }, { "input": "picot", "output": "â â Šâ ‰â •â ž" }, { "input": "picot's", "output": "â â Šâ ‰â •â žâ „â Ž" }, { "input": "picots", "output": "â â Šâ ‰â •â žâ Ž" }, { "input": "pictograph", "output": "â â Šâ ‰â žâ •⠛⠗â â â “" }, { "input": "pictograph's", "output": "â â Šâ ‰â žâ •⠛⠗â â â “â „â Ž" }, { "input": "pictographs", "output": "â â Šâ ‰â žâ •⠛⠗â â â “â Ž" }, { "input": "pictorial", "output": "â â Šâ ‰â žâ •â —â Šâ â ‡" }, { "input": "pictorial's", "output": "â â Šâ ‰â žâ •â —â Šâ â ‡â „â Ž" }, { "input": "pictorially", "output": "â â Šâ ‰â žâ •â —â Šâ  â ½" }, { "input": "pictorials", "output": "â â Šâ ‰â žâ •â —â Šâ â ‡â Ž" }, { "input": "picture", "output": "â â Šâ ‰â žâ ¥â —â ‘" }, { "input": "picture's", "output": "â â Šâ ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "pictured", "output": "â â Šâ ‰â žâ ¥â —â «" }, { "input": "pictures", "output": "â â Šâ ‰â žâ ¥â —â ‘â Ž" }, { "input": "picturesque", "output": "â â Šâ ‰â žâ ¥â —⠑⠎⠟⠥⠑" }, { "input": "picturesqueness's", "output": "â â Šâ ‰â žâ ¥â —⠑⠎⠟⠥⠑⠰⠎⠄⠎" }, { "input": "picturing", "output": "â â Šâ ‰â žâ ¥â —â Œ" }, { "input": "piddle", "output": "â â Šâ ²â ‡â ‘" }, { "input": "piddle's", "output": "â â Šâ ²â ‡â ‘â „â Ž" }, { "input": "piddled", "output": "â â Šâ ²â ‡â «" }, { "input": "piddles", "output": "â â Šâ ²â ‡â ‘â Ž" }, { "input": "piddling", "output": "â â Šâ ²â ‡â Œ" }, { "input": "piddly", "output": "â â Šâ ²â ‡â ½" }, { "input": "pidgin", "output": "â â Šâ ™â ›â ”" }, { "input": "pidgin's", "output": "â â Šâ ™â ›â ”â „â Ž" }, { "input": "pidgins", "output": "â â Šâ ™â ›â ”â Ž" }, { "input": "pie", "output": "â â Šâ ‘" }, { "input": "pie's", "output": "â â Šâ ‘â „â Ž" }, { "input": "piebald", "output": "â â Šâ ‘â ƒâ â ‡â ™" }, { "input": "piebald's", "output": "â â Šâ ‘â ƒâ â ‡â ™â „â Ž" }, { "input": "piebalds", "output": "â â Šâ ‘â ƒâ â ‡â ™â Ž" }, { "input": "piece", "output": "â â Šâ ‘⠉⠑" }, { "input": "piece's", "output": "â â Šâ ‘⠉⠑⠄⠎" }, { "input": "pieced", "output": "â â Šâ ‘⠉⠫" }, { "input": "piecemeal", "output": "â â Šâ ‘⠉⠑â â ‚â ‡" }, { "input": "pieces", "output": "â â Šâ ‘⠉⠑⠎" }, { "input": "piecework", "output": "â â Šâ ‘⠉⠑â â º" }, { "input": "piecework's", "output": "â â Šâ ‘⠉⠑â â ºâ „â Ž" }, { "input": "pieceworker", "output": "â â Šâ ‘⠉⠑â â ºâ »" }, { "input": "pieceworker's", "output": "â â Šâ ‘⠉⠑â â ºâ »â „â Ž" }, { "input": "pieceworkers", "output": "â â Šâ ‘⠉⠑â â ºâ »â Ž" }, { "input": "piecing", "output": "â â Šâ ‘⠉⠌" }, { "input": "pied", "output": "â â Šâ «" }, { "input": "pieing", "output": "â â Šâ ‘â Œ" }, { "input": "pier", "output": "â â Šâ »" }, { "input": "pier's", "output": "â â Šâ »â „â Ž" }, { "input": "pierce", "output": "â â Šâ »â ‰â ‘" }, { "input": "pierced", "output": "â â Šâ »â ‰â «" }, { "input": "pierces", "output": "â â Šâ »â ‰â ‘â Ž" }, { "input": "piercing", "output": "â â Šâ »â ‰â Œ" }, { "input": "piercing's", "output": "â â Šâ »â ‰â Œâ „â Ž" }, { "input": "piercingly", "output": "â â Šâ »â ‰â Œâ ‡â ½" }, { "input": "piercings", "output": "â â Šâ »â ‰â Œâ Ž" }, { "input": "piers", "output": "â â Šâ »â Ž" }, { "input": "pies", "output": "â â Šâ ‘â Ž" }, { "input": "piety", "output": "â â Šâ ‘â žâ ½" }, { "input": "piety's", "output": "â â Šâ ‘⠞⠽⠄⠎" }, { "input": "piffle", "output": "â â Šâ –⠇⠑" }, { "input": "piffle's", "output": "â â Šâ –⠇⠑⠄⠎" }, { "input": "pig", "output": "â â Šâ ›" }, { "input": "pig's", "output": "â â Šâ ›â „â Ž" }, { "input": "pigeon", "output": "â â Šâ ›â ‘â •â " }, { "input": "pigeon's", "output": "â â Šâ ›â ‘â •â â „â Ž" }, { "input": "pigeonhole", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠑" }, { "input": "pigeonhole's", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠑⠄⠎" }, { "input": "pigeonholed", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠫" }, { "input": "pigeonholes", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠑⠎" }, { "input": "pigeonholing", "output": "â â Šâ ›â ‘â •â â “⠕⠇⠌" }, { "input": "pigeons", "output": "â â Šâ ›â ‘â •â â Ž" }, { "input": "pigged", "output": "â â Šâ ¶â «" }, { "input": "piggier", "output": "â â Šâ ¶â Šâ »" }, { "input": "piggies", "output": "â â Šâ ¶â Šâ ‘â Ž" }, { "input": "piggiest", "output": "â â Šâ ¶â Šâ ‘â Œ" }, { "input": "pigging", "output": "â â Šâ ¶â Œ" }, { "input": "piggish", "output": "â â Šâ ¶â Šâ ©" }, { "input": "piggishly", "output": "â â Šâ ¶â Šâ ©â ‡â ½" }, { "input": "piggishness", "output": "â â Šâ ¶â Šâ ©â °â Ž" }, { "input": "piggishness's", "output": "â â Šâ ¶â Šâ ©â °â Žâ „â Ž" }, { "input": "piggy", "output": "â â Šâ ¶â ½" }, { "input": "piggy's", "output": "â â Šâ ¶â ½â „â Ž" }, { "input": "piggyback", "output": "â â Šâ ¶â ½â ƒâ â ‰â …" }, { "input": "piggyback's", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â „â Ž" }, { "input": "piggybacked", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â «" }, { "input": "piggybacking", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â Œ" }, { "input": "piggybacks", "output": "â â Šâ ¶â ½â ƒâ â ‰â …â Ž" }, { "input": "pigheaded", "output": "â â Šâ ›â “⠂⠙⠫" }, { "input": "pigheadedness's", "output": "â â Šâ ›â “⠂⠙⠫⠰⠎⠄⠎" }, { "input": "piglet", "output": "â â Šâ ›â ‡â ‘â ž" }, { "input": "piglet's", "output": "â â Šâ ›â ‡â ‘â žâ „â Ž" }, { "input": "piglets", "output": "â â Šâ ›â ‡â ‘â žâ Ž" }, { "input": "pigment", "output": "â â Šâ ›â °â ž" }, { "input": "pigment's", "output": "â â Šâ ›â °â žâ „â Ž" }, { "input": "pigmentation", "output": "â â Šâ ›â °â žâ  â " }, { "input": "pigmentation's", "output": "â â Šâ ›â °â žâ  â â „â Ž" }, { "input": "pigments", "output": "â â Šâ ›â °â žâ Ž" }, { "input": "pigpen", "output": "â â Šâ ›â â ¢" }, { "input": "pigpen's", "output": "â â Šâ ›â â ¢â „â Ž" }, { "input": "pigpens", "output": "â â Šâ ›â â ¢â Ž" }, { "input": "pigs", "output": "â â Šâ ›â Ž" }, { "input": "pigskin", "output": "â â Šâ ›â Žâ …â ”" }, { "input": "pigskin's", "output": "â â Šâ ›â Žâ …⠔⠄⠎" }, { "input": "pigskins", "output": "â â Šâ ›â Žâ …⠔⠎" }, { "input": "pigsties", "output": "â â Šâ ›â Œâ Šâ ‘â Ž" }, { "input": "pigsty", "output": "â â Šâ ›â Œâ ½" }, { "input": "pigsty's", "output": "â â Šâ ›â Œâ ½â „â Ž" }, { "input": "pigtail", "output": "â â Šâ ›â žâ â Šâ ‡" }, { "input": "pigtail's", "output": "â â Šâ ›â žâ â Šâ ‡â „â Ž" }, { "input": "pigtails", "output": "â â Šâ ›â žâ â Šâ ‡â Ž" }, { "input": "piing", "output": "â â Šâ Œ" }, { "input": "pike", "output": "â â Šâ …â ‘" }, { "input": "pike's", "output": "â â Šâ …â ‘â „â Ž" }, { "input": "piked", "output": "â â Šâ …â «" }, { "input": "piker", "output": "â â Šâ …â »" }, { "input": "piker's", "output": "â â Šâ …⠻⠄⠎" }, { "input": "pikers", "output": "â â Šâ …⠻⠎" }, { "input": "pikes", "output": "â â Šâ …â ‘â Ž" }, { "input": "pikestaff", "output": "â â Šâ …â ‘â Œâ â ‹â ‹" }, { "input": "pikestaff's", "output": "â â Šâ …â ‘â Œâ â ‹â ‹â „â Ž" }, { "input": "pikestaffs", "output": "â â Šâ …â ‘â Œâ â –â Ž" }, { "input": "piking", "output": "â â Šâ …â Œ" }, { "input": "pilaf", "output": "â â Šâ ‡â â ‹" }, { "input": "pilaf's", "output": "â â Šâ ‡â â ‹â „â Ž" }, { "input": "pilafs", "output": "â â Šâ ‡â â ‹â Ž" }, { "input": "pilaster", "output": "â â Šâ ‡â â Œâ »" }, { "input": "pilaster's", "output": "â â Šâ ‡â â Œâ »â „â Ž" }, { "input": "pilasters", "output": "â â Šâ ‡â â Œâ »â Ž" }, { "input": "pilchard", "output": "â â Šâ ‡â ¡â œâ ™" }, { "input": "pilchard's", "output": "â â Šâ ‡â ¡â œâ ™â „â Ž" }, { "input": "pilchards", "output": "â â Šâ ‡â ¡â œâ ™â Ž" }, { "input": "pile", "output": "â â Šâ ‡â ‘" }, { "input": "pile's", "output": "â â Šâ ‡â ‘â „â Ž" }, { "input": "piled", "output": "â â Šâ ‡â «" }, { "input": "piles", "output": "â â Šâ ‡â ‘â Ž" }, { "input": "pileup", "output": "â â Šâ ‡â ‘â ¥â " }, { "input": "pileup's", "output": "â â Šâ ‡â ‘â ¥â â „â Ž" }, { "input": "pileups", "output": "â â Šâ ‡â ‘â ¥â â Ž" }, { "input": "pilfer", "output": "â â Šâ ‡â ‹â »" }, { "input": "pilferage", "output": "â â Šâ ‡â ‹â »â â ›â ‘" }, { "input": "pilferage's", "output": "â â Šâ ‡â ‹â »â â ›â ‘â „â Ž" }, { "input": "pilfered", "output": "â â Šâ ‡â ‹â »â «" }, { "input": "pilferer", "output": "â â Šâ ‡â ‹â »â »" }, { "input": "pilferer's", "output": "â â Šâ ‡â ‹â »â »â „â Ž" }, { "input": "pilferers", "output": "â â Šâ ‡â ‹â »â »â Ž" }, { "input": "pilfering", "output": "â â Šâ ‡â ‹â »â Œ" }, { "input": "pilfers", "output": "â â Šâ ‡â ‹â »â Ž" }, { "input": "pilgrim", "output": "â â Šâ ‡â ›â —â Šâ " }, { "input": "pilgrim's", "output": "â â Šâ ‡â ›â —â Šâ â „â Ž" }, { "input": "pilgrimage", "output": "â â Šâ ‡â ›â —â Šâ â â ›â ‘" }, { "input": "pilgrimage's", "output": "â â Šâ ‡â ›â —â Šâ â â ›â ‘â „â Ž" }, { "input": "pilgrimages", "output": "â â Šâ ‡â ›â —â Šâ â â ›â ‘â Ž" }, { "input": "pilgrims", "output": "â â Šâ ‡â ›â —â Šâ â Ž" }, { "input": "piling", "output": "â â Šâ ‡â Œ" }, { "input": "piling's", "output": "â â Šâ ‡â Œâ „â Ž" }, { "input": "pilings", "output": "â â Šâ ‡â Œâ Ž" }, { "input": "pill", "output": "â â Šâ ‡â ‡" }, { "input": "pill's", "output": "â â Šâ ‡â ‡â „â Ž" }, { "input": "pillage", "output": "â â Šâ ‡â ‡â â ›â ‘" }, { "input": "pillage's", "output": "â â Šâ ‡â ‡â â ›â ‘â „â Ž" }, { "input": "pillaged", "output": "â â Šâ ‡â ‡â â ›â «" }, { "input": "pillager", "output": "â â Šâ ‡â ‡â â ›â »" }, { "input": "pillager's", "output": "â â Šâ ‡â ‡â â ›â »â „â Ž" }, { "input": "pillagers", "output": "â â Šâ ‡â ‡â â ›â »â Ž" }, { "input": "pillages", "output": "â â Šâ ‡â ‡â â ›â ‘â Ž" }, { "input": "pillaging", "output": "â â Šâ ‡â ‡â â ›â Œ" }, { "input": "pillar", "output": "â â Šâ ‡â ‡â œ" }, { "input": "pillar's", "output": "â â Šâ ‡â ‡â œâ „â Ž" }, { "input": "pillars", "output": "â â Šâ ‡â ‡â œâ Ž" }, { "input": "pillbox", "output": "â â Šâ ‡â ‡â ƒâ •â ­" }, { "input": "pillbox's", "output": "â â Šâ ‡â ‡â ƒâ •â ­â „â Ž" }, { "input": "pillboxes", "output": "â â Šâ ‡â ‡â ƒâ •â ­â ‘â Ž" }, { "input": "pilled", "output": "â â Šâ ‡â ‡â «" }, { "input": "pilling", "output": "â â Šâ ‡â ‡â Œ" }, { "input": "pillion", "output": "â â Šâ ‡â ‡â Šâ •â " }, { "input": "pillion's", "output": "â â Šâ ‡â ‡â Šâ •â â „â Ž" }, { "input": "pillions", "output": "â â Šâ ‡â ‡â Šâ •â â Ž" }, { "input": "pilloried", "output": "â â Šâ ‡â ‡â •â —â Šâ «" }, { "input": "pillories", "output": "â â Šâ ‡â ‡â •â —â Šâ ‘â Ž" }, { "input": "pillory", "output": "â â Šâ ‡â ‡â •â —â ½" }, { "input": "pillory's", "output": "â â Šâ ‡â ‡â •⠗⠽⠄⠎" }, { "input": "pillorying", "output": "â â Šâ ‡â ‡â •⠗⠽⠌" }, { "input": "pillow", "output": "â â Šâ ‡â ‡â ª" }, { "input": "pillow's", "output": "â â Šâ ‡â ‡â ªâ „â Ž" }, { "input": "pillowcase", "output": "â â Šâ ‡â ‡â ªâ ‰â â Žâ ‘" }, { "input": "pillowcase's", "output": "â â Šâ ‡â ‡â ªâ ‰â â Žâ ‘â „â Ž" }, { "input": "pillowcases", "output": "â â Šâ ‡â ‡â ªâ ‰â â Žâ ‘â Ž" }, { "input": "pillowed", "output": "â â Šâ ‡â ‡â ªâ «" }, { "input": "pillowing", "output": "â â Šâ ‡â ‡â ªâ Œ" }, { "input": "pillows", "output": "â â Šâ ‡â ‡â ªâ Ž" }, { "input": "pills", "output": "â â Šâ ‡â ‡â Ž" }, { "input": "pilot", "output": "â â Šâ ‡â •â ž" }, { "input": "pilot's", "output": "â â Šâ ‡â •â žâ „â Ž" }, { "input": "piloted", "output": "â â Šâ ‡â •â žâ «" }, { "input": "pilothouse", "output": "â â Šâ ‡â •⠞⠓⠳⠎⠑" }, { "input": "pilothouse's", "output": "â â Šâ ‡â •⠞⠓⠳⠎⠑⠄⠎" }, { "input": "pilothouses", "output": "â â Šâ ‡â •⠞⠓⠳⠎⠑⠎" }, { "input": "piloting", "output": "â â Šâ ‡â •â žâ Œ" }, { "input": "pilots", "output": "â â Šâ ‡â •â žâ Ž" }, { "input": "pimento", "output": "â â Šâ °â žâ •" }, { "input": "pimento's", "output": "â â Šâ °â žâ •â „â Ž" }, { "input": "pimentos", "output": "â â Šâ °â žâ •â Ž" }, { "input": "pimiento", "output": "â â Šâ â Šâ ¢â žâ •" }, { "input": "pimiento's", "output": "â â Šâ â Šâ ¢â žâ •â „â Ž" }, { "input": "pimientos", "output": "â â Šâ â Šâ ¢â žâ •â Ž" }, { "input": "pimp", "output": "â â Šâ â " }, { "input": "pimp's", "output": "â â Šâ â â „â Ž" }, { "input": "pimped", "output": "â â Šâ â â «" }, { "input": "pimpernel", "output": "â â Šâ â â »â â ‘â ‡" }, { "input": "pimpernel's", "output": "â â Šâ â â »â â ‘⠇⠄⠎" }, { "input": "pimpernels", "output": "â â Šâ â â »â â ‘⠇⠎" }, { "input": "pimping", "output": "â â Šâ â â Œ" }, { "input": "pimple", "output": "â â Šâ â â ‡â ‘" }, { "input": "pimple's", "output": "â â Šâ â â ‡â ‘â „â Ž" }, { "input": "pimples", "output": "â â Šâ â â ‡â ‘â Ž" }, { "input": "pimplier", "output": "â â Šâ â â ‡â Šâ »" }, { "input": "pimpliest", "output": "â â Šâ â â ‡â Šâ ‘â Œ" }, { "input": "pimply", "output": "â â Šâ â â ‡â ½" }, { "input": "pimps", "output": "â â Šâ â â Ž" }, { "input": "pin", "output": "â â ”" }, { "input": "pin's", "output": "â â ”â „â Ž" }, { "input": "pinafore", "output": "â â ”â â ¿â ‘" }, { "input": "pinafore's", "output": "â â ”â â ¿â ‘â „â Ž" }, { "input": "pinafores", "output": "â â ”â â ¿â ‘â Ž" }, { "input": "pinball", "output": "â â ”â ƒâ â ‡â ‡" }, { "input": "pinball's", "output": "â â ”â ƒâ â ‡â ‡â „â Ž" }, { "input": "pincer", "output": "â â ”⠉⠻" }, { "input": "pincer's", "output": "â â ”⠉⠻⠄⠎" }, { "input": "pincers", "output": "â â ”⠉⠻⠎" }, { "input": "pinch", "output": "â â ”â ¡" }, { "input": "pinch's", "output": "â â ”â ¡â „â Ž" }, { "input": "pinched", "output": "â â ”â ¡â «" }, { "input": "pinches", "output": "â â ”â ¡â ‘â Ž" }, { "input": "pinching", "output": "â â ”â ¡â Œ" }, { "input": "pincushion", "output": "â â ”⠉⠥⠩⠊⠕â " }, { "input": "pincushion's", "output": "â â ”⠉⠥⠩⠊⠕â â „â Ž" }, { "input": "pincushions", "output": "â â ”⠉⠥⠩⠊⠕â â Ž" }, { "input": "pine", "output": "â â ”â ‘" }, { "input": "pine's", "output": "â â ”â ‘â „â Ž" }, { "input": "pineapple", "output": "â â ”â ‘â â â â ‡â ‘" }, { "input": "pineapple's", "output": "â â ”â ‘â â â â ‡â ‘â „â Ž" }, { "input": "pineapples", "output": "â â ”â ‘â â â â ‡â ‘â Ž" }, { "input": "pined", "output": "â â ”â «" }, { "input": "pines", "output": "â â ”â ‘â Ž" }, { "input": "pinfeather", "output": "â â ”⠋⠂⠮⠗" }, { "input": "pinfeather's", "output": "â â ”⠋⠂⠮⠗⠄⠎" }, { "input": "pinfeathers", "output": "â â ”⠋⠂⠮⠗⠎" }, { "input": "ping", "output": "â â Œ" }, { "input": "ping's", "output": "â â Œâ „â Ž" }, { "input": "pinged", "output": "â â Œâ «" }, { "input": "pinging", "output": "â â Œâ Œ" }, { "input": "pings", "output": "â â Œâ Ž" }, { "input": "pinhead", "output": "â â ”â “â ‚â ™" }, { "input": "pinhead's", "output": "â â ”⠓⠂⠙⠄⠎" }, { "input": "pinheads", "output": "â â ”⠓⠂⠙⠎" }, { "input": "pinhole", "output": "â â ”⠓⠕⠇⠑" }, { "input": "pinhole's", "output": "â â ”⠓⠕⠇⠑⠄⠎" }, { "input": "pinholes", "output": "â â ”⠓⠕⠇⠑⠎" }, { "input": "pinier", "output": "â â ”â Šâ »" }, { "input": "piniest", "output": "â â ”â Šâ ‘â Œ" }, { "input": "pining", "output": "â â ”â Œ" }, { "input": "pinion", "output": "â â ”â Šâ •â " }, { "input": "pinion's", "output": "â â ”â Šâ •â â „â Ž" }, { "input": "pinioned", "output": "â â ”â Šâ •â â «" }, { "input": "pinioning", "output": "â â ”â Šâ •â â Œ" }, { "input": "pinions", "output": "â â ”â Šâ •â â Ž" }, { "input": "pink", "output": "â â ”â …" }, { "input": "pink's", "output": "â â ”â …â „â Ž" }, { "input": "pinked", "output": "â â ”â …â «" }, { "input": "pinker", "output": "â â ”â …â »" }, { "input": "pinkest", "output": "â â ”â …â ‘â Œ" }, { "input": "pinkeye", "output": "â â ”⠅⠑⠽⠑" }, { "input": "pinkeye's", "output": "â â ”⠅⠑⠽⠑⠄⠎" }, { "input": "pinkie", "output": "â â ”â …â Šâ ‘" }, { "input": "pinkie's", "output": "â â ”â …â Šâ ‘â „â Ž" }, { "input": "pinkies", "output": "â â ”â …â Šâ ‘â Ž" }, { "input": "pinking", "output": "â â ”â …â Œ" }, { "input": "pinkish", "output": "â â ”â …â Šâ ©" }, { "input": "pinkness's", "output": "â â ”â …â °â Žâ „â Ž" }, { "input": "pinks", "output": "â â ”â …â Ž" }, { "input": "pinnacle", "output": "â â ”â â â ‰â ‡â ‘" }, { "input": "pinnacle's", "output": "â â ”â â â ‰â ‡â ‘â „â Ž" }, { "input": "pinnacles", "output": "â â ”â â â ‰â ‡â ‘â Ž" }, { "input": "pinnate", "output": "â â ”â â â žâ ‘" }, { "input": "pinned", "output": "â â ”â â «" }, { "input": "pinning", "output": "â â ”â â Œ" }, { "input": "pinochle", "output": "â â ”⠕⠡⠇⠑" }, { "input": "pinochle's", "output": "â â ”⠕⠡⠇⠑⠄⠎" }, { "input": "pinpoint", "output": "â â ”â â •⠔⠞" }, { "input": "pinpoint's", "output": "â â ”â â •⠔⠞⠄⠎" }, { "input": "pinpointed", "output": "â â ”â â •⠔⠞⠫" }, { "input": "pinpointing", "output": "â â ”â â •⠔⠞⠌" }, { "input": "pinpoints", "output": "â â ”â â •⠔⠞⠎" }, { "input": "pinprick", "output": "â â ”â â —⠊⠉⠅" }, { "input": "pinprick's", "output": "â â ”â â —⠊⠉⠅⠄⠎" }, { "input": "pinpricks", "output": "â â ”â â —⠊⠉⠅⠎" }, { "input": "pins", "output": "â â ”â Ž" }, { "input": "pinsetter", "output": "â â ”â Žâ ‘â žâ žâ »" }, { "input": "pinsetter's", "output": "â â ”⠎⠑⠞⠞⠻⠄⠎" }, { "input": "pinsetters", "output": "â â ”⠎⠑⠞⠞⠻⠎" }, { "input": "pinstripe", "output": "â â ”⠌⠗⠊â â ‘" }, { "input": "pinstripe's", "output": "â â ”⠌⠗⠊â â ‘â „â Ž" }, { "input": "pinstriped", "output": "â â ”⠌⠗⠊â â «" }, { "input": "pinstripes", "output": "â â ”⠌⠗⠊â â ‘â Ž" }, { "input": "pint", "output": "â â ”â ž" }, { "input": "pint's", "output": "â â ”â žâ „â Ž" }, { "input": "pinto", "output": "â â ”â žâ •" }, { "input": "pinto's", "output": "â â ”â žâ •â „â Ž" }, { "input": "pintos", "output": "â â ”â žâ •â Ž" }, { "input": "pints", "output": "â â ”â žâ Ž" }, { "input": "pinup", "output": "â â ”â ¥â " }, { "input": "pinup's", "output": "â â ”â ¥â â „â Ž" }, { "input": "pinups", "output": "â â ”â ¥â â Ž" }, { "input": "pinwheel", "output": "â â ”⠱⠑⠑⠇" }, { "input": "pinwheel's", "output": "â â ”⠱⠑⠑⠇⠄⠎" }, { "input": "pinwheeled", "output": "â â ”⠱⠑⠑⠇⠫" }, { "input": "pinwheeling", "output": "â â ”⠱⠑⠑⠇⠌" }, { "input": "pinwheels", "output": "â â ”⠱⠑⠑⠇⠎" }, { "input": "pinyin", "output": "â â ”⠽⠔" }, { "input": "pinyin's", "output": "â â ”⠽⠔⠄⠎" }, { "input": "pinyon", "output": "â â ”⠽⠕â " }, { "input": "pinyon's", "output": "â â ”⠽⠕â â „â Ž" }, { "input": "pinyons", "output": "â â ”⠽⠕â â Ž" }, { "input": "pioneer", "output": "â â Šâ •â â ‘â »" }, { "input": "pioneer's", "output": "â â Šâ •â â ‘⠻⠄⠎" }, { "input": "pioneered", "output": "â â Šâ •â â ‘⠻⠫" }, { "input": "pioneering", "output": "â â Šâ •â â ‘⠻⠌" }, { "input": "pioneers", "output": "â â Šâ •â â ‘⠻⠎" }, { "input": "pious", "output": "â â Šâ ³â Ž" }, { "input": "piously", "output": "â â Šâ ³â Žâ ‡â ½" }, { "input": "piousness's", "output": "â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "pip", "output": "â â Šâ " }, { "input": "pip's", "output": "â â Šâ â „â Ž" }, { "input": "pipe", "output": "â â Šâ â ‘" }, { "input": "pipe's", "output": "â â Šâ â ‘â „â Ž" }, { "input": "piped", "output": "â â Šâ â «" }, { "input": "pipeline", "output": "â â Šâ â ‘⠇⠔⠑" }, { "input": "pipeline's", "output": "â â Šâ â ‘⠇⠔⠑⠄⠎" }, { "input": "pipelines", "output": "â â Šâ â ‘⠇⠔⠑⠎" }, { "input": "piper", "output": "â â Šâ â »" }, { "input": "piper's", "output": "â â Šâ â »â „â Ž" }, { "input": "pipers", "output": "â â Šâ â »â Ž" }, { "input": "pipes", "output": "â â Šâ â ‘â Ž" }, { "input": "piping", "output": "â â Šâ â Œ" }, { "input": "piping's", "output": "â â Šâ â Œâ „â Ž" }, { "input": "pipit", "output": "â â Šâ â Šâ ž" }, { "input": "pipit's", "output": "â â Šâ â Šâ žâ „â Ž" }, { "input": "pipits", "output": "â â Šâ â Šâ žâ Ž" }, { "input": "pipped", "output": "â â Šâ â â «" }, { "input": "pippin", "output": "â â Šâ â â ”" }, { "input": "pippin's", "output": "â â Šâ â â ”â „â Ž" }, { "input": "pipping", "output": "â â Šâ â â Œ" }, { "input": "pippins", "output": "â â Šâ â â ”â Ž" }, { "input": "pips", "output": "â â Šâ â Ž" }, { "input": "pipsqueak", "output": "â â Šâ â Žâ Ÿâ ¥â ‚â …" }, { "input": "pipsqueak's", "output": "â â Šâ â Žâ Ÿâ ¥â ‚â …â „â Ž" }, { "input": "pipsqueaks", "output": "â â Šâ â Žâ Ÿâ ¥â ‚â …â Ž" }, { "input": "piquancy", "output": "â â Šâ Ÿâ ¥â â â ‰â ½" }, { "input": "piquancy's", "output": "â â Šâ Ÿâ ¥â â â ‰â ½â „â Ž" }, { "input": "piquant", "output": "â â Šâ Ÿâ ¥â â â ž" }, { "input": "pique", "output": "â â Šâ Ÿâ ¥â ‘" }, { "input": "pique's", "output": "â â Šâ Ÿâ ¥â ‘â „â Ž" }, { "input": "piqued", "output": "â â Šâ Ÿâ ¥â «" }, { "input": "piques", "output": "â â Šâ Ÿâ ¥â ‘â Ž" }, { "input": "piquing", "output": "â â Šâ Ÿâ ¥â Œ" }, { "input": "piracy", "output": "â â Šâ —â â ‰â ½" }, { "input": "piracy's", "output": "â â Šâ —â â ‰â ½â „â Ž" }, { "input": "piranha", "output": "â â Šâ —â â â “â " }, { "input": "piranha's", "output": "â â Šâ —â â â “â â „â Ž" }, { "input": "piranhas", "output": "â â Šâ —â â â “â â Ž" }, { "input": "pirate", "output": "â â Šâ —â â žâ ‘" }, { "input": "pirate's", "output": "â â Šâ —â â žâ ‘â „â Ž" }, { "input": "pirated", "output": "â â Šâ —â â žâ «" }, { "input": "pirates", "output": "â â Šâ —â â žâ ‘â Ž" }, { "input": "piratical", "output": "â â Šâ —â â žâ Šâ ‰â â ‡" }, { "input": "piratically", "output": "â â Šâ —â â žâ Šâ ‰â  â ½" }, { "input": "pirating", "output": "â â Šâ —â â žâ Œ" }, { "input": "pirogi", "output": "â â Šâ —⠕⠛⠊" }, { "input": "pirogi's", "output": "â â Šâ —⠕⠛⠊⠄⠎" }, { "input": "piroshki", "output": "â â Šâ —â •â ©â …â Š" }, { "input": "piroshki's", "output": "â â Šâ —â •â ©â …â Šâ „â Ž" }, { "input": "pirouette", "output": "â â Šâ —⠳⠑⠞⠞⠑" }, { "input": "pirouette's", "output": "â â Šâ —⠳⠑⠞⠞⠑⠄⠎" }, { "input": "pirouetted", "output": "â â Šâ —⠳⠑⠞⠞⠫" }, { "input": "pirouettes", "output": "â â Šâ —⠳⠑⠞⠞⠑⠎" }, { "input": "pirouetting", "output": "â â Šâ —⠳⠑⠞⠞⠌" }, { "input": "pis", "output": "â â Šâ Ž" }, { "input": "piscatorial", "output": "â â Šâ Žâ ‰â â žâ •â —â Šâ â ‡" }, { "input": "pismire", "output": "â â Šâ Žâ â Šâ —â ‘" }, { "input": "pismire's", "output": "â â Šâ Žâ â Šâ —â ‘â „â Ž" }, { "input": "pismires", "output": "â â Šâ Žâ â Šâ —â ‘â Ž" }, { "input": "piss", "output": "â â Šâ Žâ Ž" }, { "input": "piss's", "output": "â â Šâ Žâ Žâ „â Ž" }, { "input": "pissed", "output": "â â Šâ Žâ Žâ «" }, { "input": "pisses", "output": "â â Šâ Žâ Žâ ‘â Ž" }, { "input": "pissing", "output": "â â Šâ Žâ Žâ Œ" }, { "input": "pistachio", "output": "â â Šâ Œâ â ¡â Šâ •" }, { "input": "pistachio's", "output": "â â Šâ Œâ â ¡â Šâ •â „â Ž" }, { "input": "pistachios", "output": "â â Šâ Œâ â ¡â Šâ •â Ž" }, { "input": "pistil", "output": "â â Šâ Œâ Šâ ‡" }, { "input": "pistil's", "output": "â â Šâ Œâ Šâ ‡â „â Ž" }, { "input": "pistillate", "output": "â â Šâ Œâ Šâ ‡â ‡â â žâ ‘" }, { "input": "pistils", "output": "â â Šâ Œâ Šâ ‡â Ž" }, { "input": "pistol", "output": "â â Šâ Œâ •â ‡" }, { "input": "pistol's", "output": "â â Šâ Œâ •⠇⠄⠎" }, { "input": "pistols", "output": "â â Šâ Œâ •⠇⠎" }, { "input": "piston", "output": "â â Šâ Œâ •â " }, { "input": "piston's", "output": "â â Šâ Œâ •â â „â Ž" }, { "input": "pistons", "output": "â â Šâ Œâ •â â Ž" }, { "input": "pit", "output": "â â Šâ ž" }, { "input": "pit's", "output": "â â Šâ žâ „â Ž" }, { "input": "pita", "output": "â â Šâ žâ " }, { "input": "pita's", "output": "â â Šâ žâ â „â Ž" }, { "input": "pitapat", "output": "â â Šâ žâ â â â ž" }, { "input": "pitapat's", "output": "â â Šâ žâ â â â žâ „â Ž" }, { "input": "pitapats", "output": "â â Šâ žâ â â â žâ Ž" }, { "input": "pitch", "output": "â â Šâ žâ ¡" }, { "input": "pitch's", "output": "â â Šâ žâ ¡â „â Ž" }, { "input": "pitchblende", "output": "â â Šâ žâ ¡â ƒâ ‡â ¢â ™â ‘" }, { "input": "pitchblende's", "output": "â â Šâ žâ ¡â ƒâ ‡â ¢â ™â ‘â „â Ž" }, { "input": "pitched", "output": "â â Šâ žâ ¡â «" }, { "input": "pitcher", "output": "â â Šâ žâ ¡â »" }, { "input": "pitcher's", "output": "â â Šâ žâ ¡â »â „â Ž" }, { "input": "pitchers", "output": "â â Šâ žâ ¡â »â Ž" }, { "input": "pitches", "output": "â â Šâ žâ ¡â ‘â Ž" }, { "input": "pitchfork", "output": "â â Šâ žâ ¡â ¿â …" }, { "input": "pitchfork's", "output": "â â Šâ žâ ¡â ¿â …â „â Ž" }, { "input": "pitchforked", "output": "â â Šâ žâ ¡â ¿â …â «" }, { "input": "pitchforking", "output": "â â Šâ žâ ¡â ¿â …â Œ" }, { "input": "pitchforks", "output": "â â Šâ žâ ¡â ¿â …â Ž" }, { "input": "pitching", "output": "â â Šâ žâ ¡â Œ" }, { "input": "pitchman", "output": "â â Šâ žâ ¡â â â " }, { "input": "pitchman's", "output": "â â Šâ žâ ¡â â â â „â Ž" }, { "input": "pitchmen", "output": "â â Šâ žâ ¡â â ¢" }, { "input": "piteous", "output": "â â Šâ žâ ‘⠳⠎" }, { "input": "piteously", "output": "â â Šâ žâ ‘⠳⠎⠇⠽" }, { "input": "piteousness", "output": "â â Šâ žâ ‘⠳⠎⠰⠎" }, { "input": "piteousness's", "output": "â â Šâ žâ ‘⠳⠎⠰⠎⠄⠎" }, { "input": "pitfall", "output": "â â Šâ žâ ‹â â ‡â ‡" }, { "input": "pitfall's", "output": "â â Šâ žâ ‹â â ‡â ‡â „â Ž" }, { "input": "pitfalls", "output": "â â Šâ žâ ‹â â ‡â ‡â Ž" }, { "input": "pith", "output": "â â Šâ ¹" }, { "input": "pith's", "output": "â â Šâ ¹â „â Ž" }, { "input": "pithier", "output": "â â Šâ ¹â Šâ »" }, { "input": "pithiest", "output": "â â Šâ ¹â Šâ ‘â Œ" }, { "input": "pithily", "output": "â â Šâ ¹â Šâ ‡â ½" }, { "input": "pithiness", "output": "â â Šâ ¹â Šâ °â Ž" }, { "input": "pithiness's", "output": "â â Šâ ¹â Šâ °â Žâ „â Ž" }, { "input": "pithy", "output": "â â Šâ ¹â ½" }, { "input": "pitiable", "output": "â â Šâ žâ Šâ â ¼" }, { "input": "pitiably", "output": "â â Šâ žâ Šâ â ƒâ ‡â ½" }, { "input": "pitied", "output": "â â Šâ žâ Šâ «" }, { "input": "pities", "output": "â â Šâ žâ Šâ ‘â Ž" }, { "input": "pitiful", "output": "â â Šâ žâ Šâ °â ‡" }, { "input": "pitifully", "output": "â â Šâ žâ Šâ °â ‡â ‡â ½" }, { "input": "pitiless", "output": "â â Šâ žâ Šâ ¨â Ž" }, { "input": "pitilessly", "output": "â â Šâ žâ Šâ ¨â Žâ ‡â ½" }, { "input": "pitilessness's", "output": "â â Šâ žâ Šâ ¨â Žâ °â Žâ „â Ž" }, { "input": "piton", "output": "â â Šâ žâ •â " }, { "input": "piton's", "output": "â â Šâ žâ •â â „â Ž" }, { "input": "pitons", "output": "â â Šâ žâ •â â Ž" }, { "input": "pits", "output": "â â Šâ žâ Ž" }, { "input": "pittance", "output": "â â Šâ žâ žâ ¨â ‘" }, { "input": "pittance's", "output": "â â Šâ žâ žâ ¨â ‘â „â Ž" }, { "input": "pittances", "output": "â â Šâ žâ žâ ¨â ‘â Ž" }, { "input": "pitted", "output": "â â Šâ žâ žâ «" }, { "input": "pitting", "output": "â â Šâ žâ žâ Œ" }, { "input": "pituitaries", "output": "â â Šâ žâ ¥â Šâ žâ œâ Šâ ‘â Ž" }, { "input": "pituitary", "output": "â â Šâ žâ ¥â Šâ žâ œâ ½" }, { "input": "pituitary's", "output": "â â Šâ žâ ¥â Šâ žâ œâ ½â „â Ž" }, { "input": "pity", "output": "â â °â ½" }, { "input": "pity's", "output": "â â °â ½â „â Ž" }, { "input": "pitying", "output": "â â °â ½â Œ" }, { "input": "pivot", "output": "â â Šâ §â •â ž" }, { "input": "pivot's", "output": "â â Šâ §â •â žâ „â Ž" }, { "input": "pivotal", "output": "â â Šâ §â •â žâ â ‡" }, { "input": "pivoted", "output": "â â Šâ §â •â žâ «" }, { "input": "pivoting", "output": "â â Šâ §â •â žâ Œ" }, { "input": "pivots", "output": "â â Šâ §â •â žâ Ž" }, { "input": "pix's", "output": "â â Šâ ­â „â Ž" }, { "input": "pixel", "output": "â â Šâ ­â ‘â ‡" }, { "input": "pixel's", "output": "â â Šâ ­â ‘⠇⠄⠎" }, { "input": "pixels", "output": "â â Šâ ­â ‘⠇⠎" }, { "input": "pixie", "output": "â â Šâ ­â Šâ ‘" }, { "input": "pixie's", "output": "â â Šâ ­â Šâ ‘â „â Ž" }, { "input": "pixies", "output": "â â Šâ ­â Šâ ‘â Ž" }, { "input": "pizza", "output": "â â Šâ µâ µâ " }, { "input": "pizza's", "output": "â â Šâ µâ µâ â „â Ž" }, { "input": "pizzas", "output": "â â Šâ µâ µâ â Ž" }, { "input": "pizzazz", "output": "â â Šâ µâ µâ â µâ µ" }, { "input": "pizzazz's", "output": "â â Šâ µâ µâ â µâ µâ „â Ž" }, { "input": "pizzeria", "output": "â â Šâ µâ µâ »â Šâ " }, { "input": "pizzeria's", "output": "â â Šâ µâ µâ »â Šâ â „â Ž" }, { "input": "pizzerias", "output": "â â Šâ µâ µâ »â Šâ â Ž" }, { "input": "pizzicati", "output": "â â Šâ µâ µâ Šâ ‰â â žâ Š" }, { "input": "pizzicato", "output": "â â Šâ µâ µâ Šâ ‰â â žâ •" }, { "input": "pizzicato's", "output": "â â Šâ µâ µâ Šâ ‰â â žâ •â „â Ž" }, { "input": "pj's", "output": "â â šâ „â Ž" }, { "input": "placard", "output": "â â ‡â â ‰â œâ ™" }, { "input": "placard's", "output": "â â ‡â â ‰â œâ ™â „â Ž" }, { "input": "placarded", "output": "â â ‡â â ‰â œâ ™â «" }, { "input": "placarding", "output": "â â ‡â â ‰â œâ ™â Œ" }, { "input": "placards", "output": "â â ‡â â ‰â œâ ™â Ž" }, { "input": "placate", "output": "â â ‡â â ‰â â žâ ‘" }, { "input": "placated", "output": "â â ‡â â ‰â â žâ «" }, { "input": "placates", "output": "â â ‡â â ‰â â žâ ‘â Ž" }, { "input": "placating", "output": "â â ‡â â ‰â â žâ Œ" }, { "input": "placation", "output": "â â ‡â â ‰â  â " }, { "input": "placation's", "output": "â â ‡â â ‰â  â â „â Ž" }, { "input": "place", "output": "â â ‡â â ‰â ‘" }, { "input": "place's", "output": "â â ‡â â ‰â ‘â „â Ž" }, { "input": "placebo", "output": "â â ‡â â ‰â ‘⠃⠕" }, { "input": "placebo's", "output": "â â ‡â â ‰â ‘⠃⠕⠄⠎" }, { "input": "placebos", "output": "â â ‡â â ‰â ‘⠃⠕⠎" }, { "input": "placed", "output": "â â ‡â â ‰â «" }, { "input": "placeholder", "output": "â â ‡â â ‰â ‘⠓⠕⠇⠙⠻" }, { "input": "placeholder's", "output": "â â ‡â â ‰â ‘⠓⠕⠇⠙⠻⠄⠎" }, { "input": "placeholders", "output": "â â ‡â â ‰â ‘⠓⠕⠇⠙⠻⠎" }, { "input": "placekick", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅" }, { "input": "placekick's", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠄⠎" }, { "input": "placekicked", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠫" }, { "input": "placekicker", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠻" }, { "input": "placekicker's", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠻⠄⠎" }, { "input": "placekickers", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠻⠎" }, { "input": "placekicking", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠌" }, { "input": "placekicks", "output": "â â ‡â â ‰â ‘⠅⠊⠉⠅⠎" }, { "input": "placement", "output": "â â ‡â â ‰â ‘â °â ž" }, { "input": "placement's", "output": "â â ‡â â ‰â ‘â °â žâ „â Ž" }, { "input": "placements", "output": "â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "placenta", "output": "â â ‡â â ‰â ¢â žâ " }, { "input": "placenta's", "output": "â â ‡â â ‰â ¢â žâ â „â Ž" }, { "input": "placental", "output": "â â ‡â â ‰â ¢â žâ â ‡" }, { "input": "placentals", "output": "â â ‡â â ‰â ¢â žâ â ‡â Ž" }, { "input": "placentas", "output": "â â ‡â â ‰â ¢â žâ â Ž" }, { "input": "placer", "output": "â â ‡â â ‰â »" }, { "input": "placer's", "output": "â â ‡â â ‰â »â „â Ž" }, { "input": "placers", "output": "â â ‡â â ‰â »â Ž" }, { "input": "places", "output": "â â ‡â â ‰â ‘â Ž" }, { "input": "placid", "output": "â â ‡â â ‰â Šâ ™" }, { "input": "placidity", "output": "â â ‡â â ‰â Šâ ™â °â ½" }, { "input": "placidity's", "output": "â â ‡â â ‰â Šâ ™â °â ½â „â Ž" }, { "input": "placidly", "output": "â â ‡â â ‰â Šâ ™â ‡â ½" }, { "input": "placing", "output": "â â ‡â â ‰â Œ" }, { "input": "placket", "output": "â â ‡â â ‰â …â ‘â ž" }, { "input": "placket's", "output": "â â ‡â â ‰â …â ‘â žâ „â Ž" }, { "input": "plackets", "output": "â â ‡â â ‰â …â ‘â žâ Ž" }, { "input": "plagiarism", "output": "â â ‡â â ›â Šâ œâ Šâ Žâ " }, { "input": "plagiarism's", "output": "â â ‡â â ›â Šâ œâ Šâ Žâ â „â Ž" }, { "input": "plagiarisms", "output": "â â ‡â â ›â Šâ œâ Šâ Žâ â Ž" }, { "input": "plagiarist", "output": "â â ‡â â ›â Šâ œâ Šâ Œ" }, { "input": "plagiarist's", "output": "â â ‡â â ›â Šâ œâ Šâ Œâ „â Ž" }, { "input": "plagiarists", "output": "â â ‡â â ›â Šâ œâ Šâ Œâ Ž" }, { "input": "plagiarize", "output": "â â ‡â â ›â Šâ œâ Šâ µâ ‘" }, { "input": "plagiarized", "output": "â â ‡â â ›â Šâ œâ Šâ µâ «" }, { "input": "plagiarizer", "output": "â â ‡â â ›â Šâ œâ Šâ µâ »" }, { "input": "plagiarizer's", "output": "â â ‡â â ›â Šâ œâ Šâ µâ »â „â Ž" }, { "input": "plagiarizers", "output": "â â ‡â â ›â Šâ œâ Šâ µâ »â Ž" }, { "input": "plagiarizes", "output": "â â ‡â â ›â Šâ œâ Šâ µâ ‘â Ž" }, { "input": "plagiarizing", "output": "â â ‡â â ›â Šâ œâ Šâ µâ Œ" }, { "input": "plagiary", "output": "â â ‡â â ›â Šâ œâ ½" }, { "input": "plagiary's", "output": "â â ‡â â ›â Šâ œâ ½â „â Ž" }, { "input": "plague", "output": "â â ‡â â ›â ¥â ‘" }, { "input": "plague's", "output": "â â ‡â â ›â ¥â ‘â „â Ž" }, { "input": "plagued", "output": "â â ‡â â ›â ¥â «" }, { "input": "plagues", "output": "â â ‡â â ›â ¥â ‘â Ž" }, { "input": "plaguing", "output": "â â ‡â â ›â ¥â Œ" }, { "input": "plaice", "output": "â â ‡â â Šâ ‰â ‘" }, { "input": "plaid", "output": "â â ‡â â Šâ ™" }, { "input": "plaid's", "output": "â â ‡â â Šâ ™â „â Ž" }, { "input": "plaids", "output": "â â ‡â â Šâ ™â Ž" }, { "input": "plain", "output": "â â ‡â â ”" }, { "input": "plain's", "output": "â â ‡â â ”â „â Ž" }, { "input": "plainclothes", "output": "â â ‡â â ”⠉⠇⠕⠮⠎" }, { "input": "plainclothesman", "output": "â â ‡â â ”⠉⠇⠕⠮⠎â â â " }, { "input": "plainclothesman's", "output": "â â ‡â â ”⠉⠇⠕⠮⠎â â â â „â Ž" }, { "input": "plainclothesmen", "output": "â â ‡â â ”⠉⠇⠕⠮⠎â â ¢" }, { "input": "plainer", "output": "â â ‡â â ”â »" }, { "input": "plainest", "output": "â â ‡â â ”â ‘â Œ" }, { "input": "plainly", "output": "â â ‡â â ”⠇⠽" }, { "input": "plainness", "output": "â â ‡â â ”â °â Ž" }, { "input": "plainness's", "output": "â â ‡â â ”â °â Žâ „â Ž" }, { "input": "plains", "output": "â â ‡â â ”â Ž" }, { "input": "plainsman", "output": "â â ‡â â ”â Žâ â â " }, { "input": "plainsman's", "output": "â â ‡â â ”â Žâ â â â „â Ž" }, { "input": "plainsmen", "output": "â â ‡â â ”â Žâ â ¢" }, { "input": "plainsong's", "output": "â â ‡â â ”⠎⠰⠛⠄⠎" }, { "input": "plaint", "output": "â â ‡â â ”â ž" }, { "input": "plaint's", "output": "â â ‡â â ”â žâ „â Ž" }, { "input": "plaintiff", "output": "â â ‡â â ”â žâ Šâ ‹â ‹" }, { "input": "plaintiff's", "output": "â â ‡â â ”â žâ Šâ ‹â ‹â „â Ž" }, { "input": "plaintiffs", "output": "â â ‡â â ”â žâ Šâ –â Ž" }, { "input": "plaintive", "output": "â â ‡â â ”â žâ Šâ §â ‘" }, { "input": "plaintively", "output": "â â ‡â â ”⠞⠊⠧⠑⠇⠽" }, { "input": "plaints", "output": "â â ‡â â ”â žâ Ž" }, { "input": "plait", "output": "â â ‡â â Šâ ž" }, { "input": "plait's", "output": "â â ‡â â Šâ žâ „â Ž" }, { "input": "plaited", "output": "â â ‡â â Šâ žâ «" }, { "input": "plaiting", "output": "â â ‡â â Šâ žâ Œ" }, { "input": "plaits", "output": "â â ‡â â Šâ žâ Ž" }, { "input": "plan", "output": "â â ‡â â " }, { "input": "plan's", "output": "â â ‡â â â „â Ž" }, { "input": "planar", "output": "â â ‡â â â œ" }, { "input": "plane", "output": "â â ‡â â â ‘" }, { "input": "plane's", "output": "â â ‡â â â ‘â „â Ž" }, { "input": "planed", "output": "â â ‡â â â «" }, { "input": "planes", "output": "â â ‡â â â ‘â Ž" }, { "input": "planet", "output": "â â ‡â â â ‘â ž" }, { "input": "planet's", "output": "â â ‡â â â ‘â žâ „â Ž" }, { "input": "planetarium", "output": "â â ‡â â â ‘⠞⠜⠊⠥â " }, { "input": "planetarium's", "output": "â â ‡â â â ‘⠞⠜⠊⠥â â „â Ž" }, { "input": "planetariums", "output": "â â ‡â â â ‘⠞⠜⠊⠥â â Ž" }, { "input": "planetary", "output": "â â ‡â â â ‘⠞⠜⠽" }, { "input": "planets", "output": "â â ‡â â â ‘â žâ Ž" }, { "input": "plangency", "output": "â â ‡â â â ›â ¢â ‰â ½" }, { "input": "plangency's", "output": "â â ‡â â â ›â ¢â ‰â ½â „â Ž" }, { "input": "plangent", "output": "â â ‡â â â ›â ¢â ž" }, { "input": "planing", "output": "â â ‡â â â Œ" }, { "input": "plank", "output": "â â ‡â â â …" }, { "input": "plank's", "output": "â â ‡â â â …â „â Ž" }, { "input": "planked", "output": "â â ‡â â â …â «" }, { "input": "planking", "output": "â â ‡â â â …â Œ" }, { "input": "planking's", "output": "â â ‡â â â …⠌⠄⠎" }, { "input": "planks", "output": "â â ‡â â â …â Ž" }, { "input": "plankton", "output": "â â ‡â â â …â žâ •â " }, { "input": "plankton's", "output": "â â ‡â â â …â žâ •â â „â Ž" }, { "input": "planned", "output": "â â ‡â â â â «" }, { "input": "planner", "output": "â â ‡â â â â »" }, { "input": "planner's", "output": "â â ‡â â â â »â „â Ž" }, { "input": "planners", "output": "â â ‡â â â â »â Ž" }, { "input": "planning", "output": "â â ‡â â â â Œ" }, { "input": "plannings", "output": "â â ‡â â â â Œâ Ž" }, { "input": "plans", "output": "â â ‡â â â Ž" }, { "input": "plant", "output": "â â ‡â â â ž" }, { "input": "plant's", "output": "â â ‡â â â žâ „â Ž" }, { "input": "plantain", "output": "â â ‡â â â žâ â ”" }, { "input": "plantain's", "output": "â â ‡â â â žâ â ”â „â Ž" }, { "input": "plantains", "output": "â â ‡â â â žâ â ”â Ž" }, { "input": "plantar", "output": "â â ‡â â â žâ œ" }, { "input": "plantation", "output": "â â ‡â â â žâ  â " }, { "input": "plantation's", "output": "â â ‡â â â žâ  â â „â Ž" }, { "input": "plantations", "output": "â â ‡â â â žâ  â â Ž" }, { "input": "planted", "output": "â â ‡â â â žâ «" }, { "input": "planter", "output": "â â ‡â â â žâ »" }, { "input": "planter's", "output": "â â ‡â â â žâ »â „â Ž" }, { "input": "planters", "output": "â â ‡â â â žâ »â Ž" }, { "input": "planting", "output": "â â ‡â â â žâ Œ" }, { "input": "planting's", "output": "â â ‡â â â žâ Œâ „â Ž" }, { "input": "plantings", "output": "â â ‡â â â žâ Œâ Ž" }, { "input": "plantlike", "output": "â â ‡â â â žâ ‡â Šâ …â ‘" }, { "input": "plants", "output": "â â ‡â â â žâ Ž" }, { "input": "plaque", "output": "â â ‡â â Ÿâ ¥â ‘" }, { "input": "plaque's", "output": "â â ‡â â Ÿâ ¥â ‘â „â Ž" }, { "input": "plaques", "output": "â â ‡â â Ÿâ ¥â ‘â Ž" }, { "input": "plash", "output": "â â ‡â â ©" }, { "input": "plash's", "output": "â â ‡â â ©â „â Ž" }, { "input": "plashed", "output": "â â ‡â â ©â «" }, { "input": "plashes", "output": "â â ‡â â ©â ‘â Ž" }, { "input": "plashing", "output": "â â ‡â â ©â Œ" }, { "input": "plasma", "output": "â â ‡â â Žâ â " }, { "input": "plasma's", "output": "â â ‡â â Žâ â â „â Ž" }, { "input": "plaster", "output": "â â ‡â â Œâ »" }, { "input": "plaster's", "output": "â â ‡â â Œâ »â „â Ž" }, { "input": "plasterboard", "output": "â â ‡â â Œâ »â ƒâ •⠜⠙" }, { "input": "plasterboard's", "output": "â â ‡â â Œâ »â ƒâ •⠜⠙⠄⠎" }, { "input": "plastered", "output": "â â ‡â â Œâ »â «" }, { "input": "plasterer", "output": "â â ‡â â Œâ »â »" }, { "input": "plasterer's", "output": "â â ‡â â Œâ »â »â „â Ž" }, { "input": "plasterers", "output": "â â ‡â â Œâ »â »â Ž" }, { "input": "plastering", "output": "â â ‡â â Œâ »â Œ" }, { "input": "plasters", "output": "â â ‡â â Œâ »â Ž" }, { "input": "plastic", "output": "â â ‡â â Œâ Šâ ‰" }, { "input": "plastic's", "output": "â â ‡â â Œâ Šâ ‰â „â Ž" }, { "input": "plasticity", "output": "â â ‡â â Œâ Šâ ‰â °â ½" }, { "input": "plasticity's", "output": "â â ‡â â Œâ Šâ ‰â °â ½â „â Ž" }, { "input": "plasticize", "output": "â â ‡â â Œâ Šâ ‰â Šâ µâ ‘" }, { "input": "plasticized", "output": "â â ‡â â Œâ Šâ ‰â Šâ µâ «" }, { "input": "plasticizes", "output": "â â ‡â â Œâ Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "plasticizing", "output": "â â ‡â â Œâ Šâ ‰â Šâ µâ Œ" }, { "input": "plastics", "output": "â â ‡â â Œâ Šâ ‰â Ž" }, { "input": "plat's", "output": "â â ‡â â žâ „â Ž" }, { "input": "plate", "output": "â â ‡â â žâ ‘" }, { "input": "plate's", "output": "â â ‡â â žâ ‘â „â Ž" }, { "input": "plateau", "output": "â â ‡â â žâ ‚â ¥" }, { "input": "plateau's", "output": "â â ‡â â žâ ‚⠥⠄⠎" }, { "input": "plateaued", "output": "â â ‡â â žâ ‚⠥⠫" }, { "input": "plateauing", "output": "â â ‡â â žâ ‚⠥⠌" }, { "input": "plateaus", "output": "â â ‡â â žâ ‚⠥⠎" }, { "input": "plated", "output": "â â ‡â â žâ «" }, { "input": "plateful", "output": "â â ‡â â žâ ‘â °â ‡" }, { "input": "plateful's", "output": "â â ‡â â žâ ‘⠰⠇⠄⠎" }, { "input": "platefuls", "output": "â â ‡â â žâ ‘⠰⠇⠎" }, { "input": "platelet", "output": "â â ‡â â žâ ‘⠇⠑⠞" }, { "input": "platelet's", "output": "â â ‡â â žâ ‘⠇⠑⠞⠄⠎" }, { "input": "platelets", "output": "â â ‡â â žâ ‘⠇⠑⠞⠎" }, { "input": "platen", "output": "â â ‡â â žâ ¢" }, { "input": "platen's", "output": "â â ‡â â žâ ¢â „â Ž" }, { "input": "platens", "output": "â â ‡â â žâ ¢â Ž" }, { "input": "plates", "output": "â â ‡â â žâ ‘â Ž" }, { "input": "platform", "output": "â â ‡â â žâ ¿â " }, { "input": "platform's", "output": "â â ‡â â žâ ¿â â „â Ž" }, { "input": "platformed", "output": "â â ‡â â žâ ¿â â «" }, { "input": "platforming", "output": "â â ‡â â žâ ¿â â Œ" }, { "input": "platforms", "output": "â â ‡â â žâ ¿â â Ž" }, { "input": "plating", "output": "â â ‡â â žâ Œ" }, { "input": "plating's", "output": "â â ‡â â žâ Œâ „â Ž" }, { "input": "platinum", "output": "â â ‡â â žâ ”â ¥â " }, { "input": "platinum's", "output": "â â ‡â â žâ ”â ¥â â „â Ž" }, { "input": "platitude", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "platitude's", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "platitudes", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ‘â Ž" }, { "input": "platitudinous", "output": "â â ‡â â žâ Šâ žâ ¥â ™â ”⠳⠎" }, { "input": "platonic", "output": "â â ‡â â žâ •â â Šâ ‰" }, { "input": "platoon", "output": "â â ‡â â žâ •â •â " }, { "input": "platoon's", "output": "â â ‡â â žâ •â •â â „â Ž" }, { "input": "platooned", "output": "â â ‡â â žâ •â •â â «" }, { "input": "platooning", "output": "â â ‡â â žâ •â •â â Œ" }, { "input": "platoons", "output": "â â ‡â â žâ •â •â â Ž" }, { "input": "plats", "output": "â â ‡â â žâ Ž" }, { "input": "platted", "output": "â â ‡â â žâ žâ «" }, { "input": "platter", "output": "â â ‡â â žâ žâ »" }, { "input": "platter's", "output": "â â ‡â â žâ žâ »â „â Ž" }, { "input": "platters", "output": "â â ‡â â žâ žâ »â Ž" }, { "input": "platting", "output": "â â ‡â â žâ žâ Œ" }, { "input": "platy", "output": "â â ‡â â žâ ½" }, { "input": "platy's", "output": "â â ‡â â žâ ½â „â Ž" }, { "input": "platypus", "output": "â â ‡â â žâ ½â â ¥â Ž" }, { "input": "platypus's", "output": "â â ‡â â žâ ½â â ¥â Žâ „â Ž" }, { "input": "platypuses", "output": "â â ‡â â žâ ½â â ¥â Žâ ‘â Ž" }, { "input": "platys", "output": "â â ‡â â žâ ½â Ž" }, { "input": "plaudit", "output": "â â ‡â â ¥â ™â Šâ ž" }, { "input": "plaudit's", "output": "â â ‡â â ¥â ™â Šâ žâ „â Ž" }, { "input": "plaudits", "output": "â â ‡â â ¥â ™â Šâ žâ Ž" }, { "input": "plausibility", "output": "â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "plausibility's", "output": "â â ‡â â ¥â Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "plausible", "output": "â â ‡â â ¥â Žâ Šâ ¼" }, { "input": "plausibly", "output": "â â ‡â â ¥â Žâ Šâ ƒâ ‡â ½" }, { "input": "play", "output": "â â ‡â â ½" }, { "input": "play's", "output": "â â ‡â â ½â „â Ž" }, { "input": "playable", "output": "â â ‡â â ½â â ¼" }, { "input": "playact", "output": "â â ‡â â ½â â ‰â ž" }, { "input": "playacted", "output": "â â ‡â â ½â â ‰â žâ «" }, { "input": "playacting", "output": "â â ‡â â ½â â ‰â žâ Œ" }, { "input": "playacting's", "output": "â â ‡â â ½â â ‰â žâ Œâ „â Ž" }, { "input": "playacts", "output": "â â ‡â â ½â â ‰â žâ Ž" }, { "input": "playback", "output": "â â ‡â â ½â ƒâ â ‰â …" }, { "input": "playback's", "output": "â â ‡â â ½â ƒâ â ‰â …â „â Ž" }, { "input": "playbacks", "output": "â â ‡â â ½â ƒâ â ‰â …â Ž" }, { "input": "playbill", "output": "â â ‡â â ½â ƒâ Šâ ‡â ‡" }, { "input": "playbill's", "output": "â â ‡â â ½â ƒâ Šâ ‡â ‡â „â Ž" }, { "input": "playbills", "output": "â â ‡â â ½â ƒâ Šâ ‡â ‡â Ž" }, { "input": "playbook", "output": "â â ‡â â ½â ƒâ •â •â …" }, { "input": "playbook's", "output": "â â ‡â â ½â ƒâ •â •â …â „â Ž" }, { "input": "playbooks", "output": "â â ‡â â ½â ƒâ •â •â …â Ž" }, { "input": "playboy", "output": "â â ‡â â ½â ƒâ •â ½" }, { "input": "playboy's", "output": "â â ‡â â ½â ƒâ •⠽⠄⠎" }, { "input": "playboys", "output": "â â ‡â â ½â ƒâ •⠽⠎" }, { "input": "played", "output": "â â ‡â â ½â «" }, { "input": "player", "output": "â â ‡â â ½â »" }, { "input": "player's", "output": "â â ‡â â ½â »â „â Ž" }, { "input": "players", "output": "â â ‡â â ½â »â Ž" }, { "input": "playfellow", "output": "â â ‡â â ½â ‹â ‘⠇⠇⠪" }, { "input": "playfellow's", "output": "â â ‡â â ½â ‹â ‘⠇⠇⠪⠄⠎" }, { "input": "playfellows", "output": "â â ‡â â ½â ‹â ‘⠇⠇⠪⠎" }, { "input": "playful", "output": "â â ‡â â ½â °â ‡" }, { "input": "playfully", "output": "â â ‡â â ½â °â ‡â ‡â ½" }, { "input": "playfulness", "output": "â â ‡â â ½â °â ‡â °â Ž" }, { "input": "playfulness's", "output": "â â ‡â â ½â °â ‡â °â Žâ „â Ž" }, { "input": "playgirl", "output": "â â ‡â â ½â ›â Šâ —â ‡" }, { "input": "playgirl's", "output": "â â ‡â â ½â ›â Šâ —⠇⠄⠎" }, { "input": "playgirls", "output": "â â ‡â â ½â ›â Šâ —⠇⠎" }, { "input": "playgoer", "output": "â â ‡â â ½â ›â •â »" }, { "input": "playgoer's", "output": "â â ‡â â ½â ›â •⠻⠄⠎" }, { "input": "playgoers", "output": "â â ‡â â ½â ›â •⠻⠎" }, { "input": "playground", "output": "â â ‡â â ½â ›â —⠨⠙" }, { "input": "playground's", "output": "â â ‡â â ½â ›â —⠨⠙⠄⠎" }, { "input": "playgrounds", "output": "â â ‡â â ½â ›â —⠨⠙⠎" }, { "input": "playhouse", "output": "â â ‡â â ½â “⠳⠎⠑" }, { "input": "playhouse's", "output": "â â ‡â â ½â “⠳⠎⠑⠄⠎" }, { "input": "playhouses", "output": "â â ‡â â ½â “⠳⠎⠑⠎" }, { "input": "playing", "output": "â â ‡â â ½â Œ" }, { "input": "playmate", "output": "â â ‡â â ½â â â žâ ‘" }, { "input": "playmate's", "output": "â â ‡â â ½â â â žâ ‘â „â Ž" }, { "input": "playmates", "output": "â â ‡â â ½â â â žâ ‘â Ž" }, { "input": "playoff", "output": "â â ‡â â ½â ·â ‹" }, { "input": "playoff's", "output": "â â ‡â â ½â ·â ‹â „â Ž" }, { "input": "playoffs", "output": "â â ‡â â ½â ·â ‹â Ž" }, { "input": "playpen", "output": "â â ‡â â ½â â ¢" }, { "input": "playpen's", "output": "â â ‡â â ½â â ¢â „â Ž" }, { "input": "playpens", "output": "â â ‡â â ½â â ¢â Ž" }, { "input": "playroom", "output": "â â ‡â â ½â —â •â •â " }, { "input": "playroom's", "output": "â â ‡â â ½â —â •â •â â „â Ž" }, { "input": "playrooms", "output": "â â ‡â â ½â —â •â •â â Ž" }, { "input": "plays", "output": "â â ‡â â ½â Ž" }, { "input": "plaything", "output": "â â ‡â â ½â ¹â Œ" }, { "input": "plaything's", "output": "â â ‡â â ½â ¹â Œâ „â Ž" }, { "input": "playthings", "output": "â â ‡â â ½â ¹â Œâ Ž" }, { "input": "playtime's", "output": "â â ‡â â ½â â žâ „â Ž" }, { "input": "playwright", "output": "â â ‡â â ½â ºâ â —" }, { "input": "playwright's", "output": "â â ‡â â ½â ºâ â —â „â Ž" }, { "input": "playwrights", "output": "â â ‡â â ½â ºâ â —â Ž" }, { "input": "plaza", "output": "â â ‡â â µâ " }, { "input": "plaza's", "output": "â â ‡â â µâ â „â Ž" }, { "input": "plazas", "output": "â â ‡â â µâ â Ž" }, { "input": "plea", "output": "â â ‡â ‘â " }, { "input": "plea's", "output": "â â ‡â ‘â â „â Ž" }, { "input": "plead", "output": "â â ‡â ‚â ™" }, { "input": "pleaded", "output": "â â ‡â ‚⠙⠫" }, { "input": "pleader", "output": "â â ‡â ‚⠙⠻" }, { "input": "pleader's", "output": "â â ‡â ‚⠙⠻⠄⠎" }, { "input": "pleaders", "output": "â â ‡â ‚⠙⠻⠎" }, { "input": "pleading", "output": "â â ‡â ‚⠙⠌" }, { "input": "pleads", "output": "â â ‡â ‚⠙⠎" }, { "input": "pleas", "output": "â â ‡â ‚â Ž" }, { "input": "pleasant", "output": "â â ‡â ‚â Žâ â â ž" }, { "input": "pleasanter", "output": "â â ‡â ‚â Žâ â â žâ »" }, { "input": "pleasantest", "output": "â â ‡â ‚â Žâ â â žâ ‘â Œ" }, { "input": "pleasantly", "output": "â â ‡â ‚â Žâ â â žâ ‡â ½" }, { "input": "pleasantness", "output": "â â ‡â ‚â Žâ â â žâ °â Ž" }, { "input": "pleasantness's", "output": "â â ‡â ‚â Žâ â â žâ °â Žâ „â Ž" }, { "input": "pleasantries", "output": "â â ‡â ‚â Žâ â â žâ —â Šâ ‘â Ž" }, { "input": "pleasantry", "output": "â â ‡â ‚â Žâ â â žâ —â ½" }, { "input": "pleasantry's", "output": "â â ‡â ‚â Žâ â â žâ —⠽⠄⠎" }, { "input": "please", "output": "â â ‡â ‚â Žâ ‘" }, { "input": "pleased", "output": "â â ‡â ‚â Žâ «" }, { "input": "pleases", "output": "â â ‡â ‚â Žâ ‘â Ž" }, { "input": "pleasing", "output": "â â ‡â ‚â Žâ Œ" }, { "input": "pleasingly", "output": "â â ‡â ‚⠎⠌⠇⠽" }, { "input": "pleasings", "output": "â â ‡â ‚⠎⠌⠎" }, { "input": "pleasurable", "output": "â â ‡â ‚⠎⠥⠗â â ¼" }, { "input": "pleasurably", "output": "â â ‡â ‚⠎⠥⠗â â ƒâ ‡â ½" }, { "input": "pleasure", "output": "â â ‡â ‚⠎⠥⠗⠑" }, { "input": "pleasure's", "output": "â â ‡â ‚⠎⠥⠗⠑⠄⠎" }, { "input": "pleasured", "output": "â â ‡â ‚⠎⠥⠗⠫" }, { "input": "pleasureful", "output": "â â ‡â ‚⠎⠥⠗⠑⠰⠇" }, { "input": "pleasures", "output": "â â ‡â ‚⠎⠥⠗⠑⠎" }, { "input": "pleasuring", "output": "â â ‡â ‚⠎⠥⠗⠌" }, { "input": "pleat", "output": "â â ‡â ‚â ž" }, { "input": "pleat's", "output": "â â ‡â ‚â žâ „â Ž" }, { "input": "pleated", "output": "â â ‡â ‚â žâ «" }, { "input": "pleating", "output": "â â ‡â ‚â žâ Œ" }, { "input": "pleats", "output": "â â ‡â ‚â žâ Ž" }, { "input": "plebeian", "output": "â â ‡â ‘⠃⠑⠊â â " }, { "input": "plebeian's", "output": "â â ‡â ‘⠃⠑⠊â â â „â Ž" }, { "input": "plebeians", "output": "â â ‡â ‘⠃⠑⠊â â â Ž" }, { "input": "plebiscite", "output": "â â ‡â ‘⠃⠊⠎⠉⠊⠞⠑" }, { "input": "plebiscite's", "output": "â â ‡â ‘⠃⠊⠎⠉⠊⠞⠑⠄⠎" }, { "input": "plebiscites", "output": "â â ‡â ‘⠃⠊⠎⠉⠊⠞⠑⠎" }, { "input": "plectra", "output": "â â ‡â ‘⠉⠞⠗â " }, { "input": "plectrum", "output": "â â ‡â ‘⠉⠞⠗⠥â " }, { "input": "plectrum's", "output": "â â ‡â ‘⠉⠞⠗⠥â â „â Ž" }, { "input": "plectrums", "output": "â â ‡â ‘⠉⠞⠗⠥â â Ž" }, { "input": "pledge", "output": "â â ‡â «â ›â ‘" }, { "input": "pledge's", "output": "â â ‡â «â ›â ‘â „â Ž" }, { "input": "pledged", "output": "â â ‡â «â ›â «" }, { "input": "pledges", "output": "â â ‡â «â ›â ‘â Ž" }, { "input": "pledging", "output": "â â ‡â «â ›â Œ" }, { "input": "plenaries", "output": "â â ‡â ¢â œâ Šâ ‘â Ž" }, { "input": "plenary", "output": "â â ‡â ¢â œâ ½" }, { "input": "plenary's", "output": "â â ‡â ¢â œâ ½â „â Ž" }, { "input": "plenipotentiaries", "output": "â â ‡â ¢â Šâ â •⠞⠢⠞⠊⠜⠊⠑⠎" }, { "input": "plenipotentiary", "output": "â â ‡â ¢â Šâ â •⠞⠢⠞⠊⠜⠽" }, { "input": "plenipotentiary's", "output": "â â ‡â ¢â Šâ â •⠞⠢⠞⠊⠜⠽⠄⠎" }, { "input": "plenitude", "output": "â â ‡â ¢â Šâ žâ ¥â ™â ‘" }, { "input": "plenitude's", "output": "â â ‡â ¢â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "plenitudes", "output": "â â ‡â ¢â Šâ žâ ¥â ™â ‘â Ž" }, { "input": "plenteous", "output": "â â ‡â ¢â žâ ‘⠳⠎" }, { "input": "plentiful", "output": "â â ‡â ¢â žâ Šâ °â ‡" }, { "input": "plentifully", "output": "â â ‡â ¢â žâ Šâ °â ‡â ‡â ½" }, { "input": "plenty", "output": "â â ‡â ¢â žâ ½" }, { "input": "plenty's", "output": "â â ‡â ¢â žâ ½â „â Ž" }, { "input": "pleonasm", "output": "â â ‡â ‘â •â â â Žâ " }, { "input": "pleonasm's", "output": "â â ‡â ‘â •â â â Žâ â „â Ž" }, { "input": "pleonasms", "output": "â â ‡â ‘â •â â â Žâ â Ž" }, { "input": "plethora", "output": "â â ‡â ‘⠹⠕⠗â " }, { "input": "plethora's", "output": "â â ‡â ‘⠹⠕⠗â â „â Ž" }, { "input": "pleura", "output": "â â ‡â ‘⠥⠗â " }, { "input": "pleura's", "output": "â â ‡â ‘⠥⠗â â „â Ž" }, { "input": "pleurae", "output": "â â ‡â ‘⠥⠗â â ‘" }, { "input": "pleurisy", "output": "â â ‡â ‘⠥⠗⠊⠎⠽" }, { "input": "pleurisy's", "output": "â â ‡â ‘⠥⠗⠊⠎⠽⠄⠎" }, { "input": "plexus", "output": "â â ‡â ‘⠭⠥⠎" }, { "input": "plexus's", "output": "â â ‡â ‘⠭⠥⠎⠄⠎" }, { "input": "plexuses", "output": "â â ‡â ‘⠭⠥⠎⠑⠎" }, { "input": "pliability", "output": "â â ‡â Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "pliability's", "output": "â â ‡â Šâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "pliable", "output": "â â ‡â Šâ â ¼" }, { "input": "pliancy", "output": "â â ‡â Šâ â â ‰â ½" }, { "input": "pliancy's", "output": "â â ‡â Šâ â â ‰â ½â „â Ž" }, { "input": "pliant", "output": "â â ‡â Šâ â â ž" }, { "input": "plied", "output": "â â ‡â Šâ «" }, { "input": "pliers", "output": "â â ‡â Šâ »â Ž" }, { "input": "pliers's", "output": "â â ‡â Šâ »â Žâ „â Ž" }, { "input": "plies", "output": "â â ‡â Šâ ‘â Ž" }, { "input": "plight", "output": "â â ‡â Šâ £â ž" }, { "input": "plight's", "output": "â â ‡â Šâ £â žâ „â Ž" }, { "input": "plighted", "output": "â â ‡â Šâ £â žâ «" }, { "input": "plighting", "output": "â â ‡â Šâ £â žâ Œ" }, { "input": "plights", "output": "â â ‡â Šâ £â žâ Ž" }, { "input": "plinth", "output": "â â ‡â ”â ¹" }, { "input": "plinth's", "output": "â â ‡â ”⠹⠄⠎" }, { "input": "plinths", "output": "â â ‡â ”⠹⠎" }, { "input": "plod", "output": "â â ‡â •â ™" }, { "input": "plodded", "output": "â â ‡â •⠲⠫" }, { "input": "plodder", "output": "â â ‡â •⠲⠻" }, { "input": "plodder's", "output": "â â ‡â •⠲⠻⠄⠎" }, { "input": "plodders", "output": "â â ‡â •⠲⠻⠎" }, { "input": "plodding", "output": "â â ‡â •⠲⠌" }, { "input": "ploddings", "output": "â â ‡â •⠲⠌⠎" }, { "input": "plods", "output": "â â ‡â •⠙⠎" }, { "input": "plop", "output": "â â ‡â •â " }, { "input": "plop's", "output": "â â ‡â •â â „â Ž" }, { "input": "plopped", "output": "â â ‡â •â â â «" }, { "input": "plopping", "output": "â â ‡â •â â â Œ" }, { "input": "plops", "output": "â â ‡â •â â Ž" }, { "input": "plot", "output": "â â ‡â •â ž" }, { "input": "plot's", "output": "â â ‡â •â žâ „â Ž" }, { "input": "plots", "output": "â â ‡â •â žâ Ž" }, { "input": "plotted", "output": "â â ‡â •â žâ žâ «" }, { "input": "plotter", "output": "â â ‡â •â žâ žâ »" }, { "input": "plotter's", "output": "â â ‡â •⠞⠞⠻⠄⠎" }, { "input": "plotters", "output": "â â ‡â •⠞⠞⠻⠎" }, { "input": "plotting", "output": "â â ‡â •â žâ žâ Œ" }, { "input": "plover", "output": "â â ‡â •â §â »" }, { "input": "plover's", "output": "â â ‡â •⠧⠻⠄⠎" }, { "input": "plovers", "output": "â â ‡â •⠧⠻⠎" }, { "input": "plow", "output": "â â ‡â ª" }, { "input": "plow's", "output": "â â ‡â ªâ „â Ž" }, { "input": "plowed", "output": "â â ‡â ªâ «" }, { "input": "plowing", "output": "â â ‡â ªâ Œ" }, { "input": "plowman", "output": "â â ‡â ªâ â â " }, { "input": "plowman's", "output": "â â ‡â ªâ â â â „â Ž" }, { "input": "plowmen", "output": "â â ‡â ªâ â ¢" }, { "input": "plows", "output": "â â ‡â ªâ Ž" }, { "input": "plowshare", "output": "â â ‡â ªâ ©â œâ ‘" }, { "input": "plowshare's", "output": "â â ‡â ªâ ©â œâ ‘â „â Ž" }, { "input": "plowshares", "output": "â â ‡â ªâ ©â œâ ‘â Ž" }, { "input": "ploy", "output": "â â ‡â •â ½" }, { "input": "ploy's", "output": "â â ‡â •⠽⠄⠎" }, { "input": "ploys", "output": "â â ‡â •⠽⠎" }, { "input": "pluck", "output": "â â ‡â ¥â ‰â …" }, { "input": "pluck's", "output": "â â ‡â ¥â ‰â …â „â Ž" }, { "input": "plucked", "output": "â â ‡â ¥â ‰â …â «" }, { "input": "pluckier", "output": "â â ‡â ¥â ‰â …â Šâ »" }, { "input": "pluckiest", "output": "â â ‡â ¥â ‰â …â Šâ ‘â Œ" }, { "input": "pluckily", "output": "â â ‡â ¥â ‰â …⠊⠇⠽" }, { "input": "pluckiness", "output": "â â ‡â ¥â ‰â …â Šâ °â Ž" }, { "input": "pluckiness's", "output": "â â ‡â ¥â ‰â …â Šâ °â Žâ „â Ž" }, { "input": "plucking", "output": "â â ‡â ¥â ‰â …â Œ" }, { "input": "plucks", "output": "â â ‡â ¥â ‰â …â Ž" }, { "input": "plucky", "output": "â â ‡â ¥â ‰â …â ½" }, { "input": "plug", "output": "â â ‡â ¥â ›" }, { "input": "plug's", "output": "â â ‡â ¥â ›â „â Ž" }, { "input": "plugged", "output": "â â ‡â ¥â ¶â «" }, { "input": "plugging", "output": "â â ‡â ¥â ¶â Œ" }, { "input": "plugin", "output": "â â ‡â ¥â ›â ”" }, { "input": "plugin's", "output": "â â ‡â ¥â ›â ”â „â Ž" }, { "input": "plugins", "output": "â â ‡â ¥â ›â ”â Ž" }, { "input": "plugs", "output": "â â ‡â ¥â ›â Ž" }, { "input": "plum", "output": "â â ‡â ¥â " }, { "input": "plum's", "output": "â â ‡â ¥â â „â Ž" }, { "input": "plumage", "output": "â â ‡â ¥â â â ›â ‘" }, { "input": "plumage's", "output": "â â ‡â ¥â â â ›â ‘â „â Ž" }, { "input": "plumb", "output": "â â ‡â ¥â â ƒ" }, { "input": "plumb's", "output": "â â ‡â ¥â â ƒâ „â Ž" }, { "input": "plumbed", "output": "â â ‡â ¥â â ƒâ «" }, { "input": "plumber", "output": "â â ‡â ¥â â ƒâ »" }, { "input": "plumber's", "output": "â â ‡â ¥â â ƒâ »â „â Ž" }, { "input": "plumbers", "output": "â â ‡â ¥â â ƒâ »â Ž" }, { "input": "plumbing", "output": "â â ‡â ¥â â ƒâ Œ" }, { "input": "plumbing's", "output": "â â ‡â ¥â â ƒâ Œâ „â Ž" }, { "input": "plumbs", "output": "â â ‡â ¥â â ƒâ Ž" }, { "input": "plume", "output": "â â ‡â ¥â â ‘" }, { "input": "plume's", "output": "â â ‡â ¥â â ‘â „â Ž" }, { "input": "plumed", "output": "â â ‡â ¥â â «" }, { "input": "plumes", "output": "â â ‡â ¥â â ‘â Ž" }, { "input": "plumier", "output": "â â ‡â ¥â â Šâ »" }, { "input": "plumiest", "output": "â â ‡â ¥â â Šâ ‘â Œ" }, { "input": "pluming", "output": "â â ‡â ¥â â Œ" }, { "input": "plummer", "output": "â â ‡â ¥â â â »" }, { "input": "plummest", "output": "â â ‡â ¥â â â ‘â Œ" }, { "input": "plummet", "output": "â â ‡â ¥â â â ‘â ž" }, { "input": "plummet's", "output": "â â ‡â ¥â â â ‘â žâ „â Ž" }, { "input": "plummeted", "output": "â â ‡â ¥â â â ‘â žâ «" }, { "input": "plummeting", "output": "â â ‡â ¥â â â ‘â žâ Œ" }, { "input": "plummets", "output": "â â ‡â ¥â â â ‘â žâ Ž" }, { "input": "plump", "output": "â â ‡â ¥â â " }, { "input": "plump's", "output": "â â ‡â ¥â â â „â Ž" }, { "input": "plumped", "output": "â â ‡â ¥â â â «" }, { "input": "plumper", "output": "â â ‡â ¥â â â »" }, { "input": "plumpest", "output": "â â ‡â ¥â â â ‘â Œ" }, { "input": "plumping", "output": "â â ‡â ¥â â â Œ" }, { "input": "plumply", "output": "â â ‡â ¥â â â ‡â ½" }, { "input": "plumpness", "output": "â â ‡â ¥â â â °â Ž" }, { "input": "plumpness's", "output": "â â ‡â ¥â â â °â Žâ „â Ž" }, { "input": "plumps", "output": "â â ‡â ¥â â â Ž" }, { "input": "plums", "output": "â â ‡â ¥â â Ž" }, { "input": "plumy", "output": "â â ‡â ¥â â ½" }, { "input": "plunder", "output": "â â ‡â â ¥" }, { "input": "plunder's", "output": "â â ‡â â ¥â „â Ž" }, { "input": "plundered", "output": "â â ‡â â ¥â «" }, { "input": "plunderer", "output": "â â ‡â â ¥â »" }, { "input": "plunderer's", "output": "â â ‡â â ¥â »â „â Ž" }, { "input": "plunderers", "output": "â â ‡â â ¥â »â Ž" }, { "input": "plundering", "output": "â â ‡â â ¥â Œ" }, { "input": "plunders", "output": "â â ‡â â ¥â Ž" }, { "input": "plunge", "output": "â â ‡â ¥â â ›â ‘" }, { "input": "plunge's", "output": "â â ‡â ¥â â ›â ‘â „â Ž" }, { "input": "plunged", "output": "â â ‡â ¥â â ›â «" }, { "input": "plunger", "output": "â â ‡â ¥â â ›â »" }, { "input": "plunger's", "output": "â â ‡â ¥â â ›â »â „â Ž" }, { "input": "plungers", "output": "â â ‡â ¥â â ›â »â Ž" }, { "input": "plunges", "output": "â â ‡â ¥â â ›â ‘â Ž" }, { "input": "plunging", "output": "â â ‡â ¥â â ›â Œ" }, { "input": "plunk", "output": "â â ‡â ¥â â …" }, { "input": "plunk's", "output": "â â ‡â ¥â â …â „â Ž" }, { "input": "plunked", "output": "â â ‡â ¥â â …â «" }, { "input": "plunking", "output": "â â ‡â ¥â â …â Œ" }, { "input": "plunks", "output": "â â ‡â ¥â â …â Ž" }, { "input": "pluperfect", "output": "â â ‡â ¥â â »â ‹â ‘⠉⠞" }, { "input": "pluperfect's", "output": "â â ‡â ¥â â »â ‹â ‘⠉⠞⠄⠎" }, { "input": "pluperfects", "output": "â â ‡â ¥â â »â ‹â ‘⠉⠞⠎" }, { "input": "plural", "output": "â â ‡â ¥â —â â ‡" }, { "input": "plural's", "output": "â â ‡â ¥â —â â ‡â „â Ž" }, { "input": "pluralism", "output": "â â ‡â ¥â —â â ‡â Šâ Žâ " }, { "input": "pluralism's", "output": "â â ‡â ¥â —â â ‡â Šâ Žâ â „â Ž" }, { "input": "pluralistic", "output": "â â ‡â ¥â —â â ‡â Šâ Œâ Šâ ‰" }, { "input": "pluralities", "output": "â â ‡â ¥â —â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "plurality", "output": "â â ‡â ¥â —â â ‡â °â ½" }, { "input": "plurality's", "output": "â â ‡â ¥â —â â ‡â °â ½â „â Ž" }, { "input": "pluralization", "output": "â â ‡â ¥â —â â ‡â Šâ µâ  â " }, { "input": "pluralization's", "output": "â â ‡â ¥â —â â ‡â Šâ µâ  â â „â Ž" }, { "input": "pluralize", "output": "â â ‡â ¥â —â â ‡â Šâ µâ ‘" }, { "input": "pluralized", "output": "â â ‡â ¥â —â â ‡â Šâ µâ «" }, { "input": "pluralizes", "output": "â â ‡â ¥â —â â ‡â Šâ µâ ‘â Ž" }, { "input": "pluralizing", "output": "â â ‡â ¥â —â â ‡â Šâ µâ Œ" }, { "input": "plurals", "output": "â â ‡â ¥â —â â ‡â Ž" }, { "input": "plus", "output": "â â ‡â ¥â Ž" }, { "input": "plus's", "output": "â â ‡â ¥â Žâ „â Ž" }, { "input": "pluses", "output": "â â ‡â ¥â Žâ ‘â Ž" }, { "input": "plush", "output": "â â ‡â ¥â ©" }, { "input": "plush's", "output": "â â ‡â ¥â ©â „â Ž" }, { "input": "plusher", "output": "â â ‡â ¥â ©â »" }, { "input": "plushest", "output": "â â ‡â ¥â ©â ‘â Œ" }, { "input": "plushier", "output": "â â ‡â ¥â ©â Šâ »" }, { "input": "plushiest", "output": "â â ‡â ¥â ©â Šâ ‘â Œ" }, { "input": "plushly", "output": "â â ‡â ¥â ©â ‡â ½" }, { "input": "plushness", "output": "â â ‡â ¥â ©â °â Ž" }, { "input": "plushness's", "output": "â â ‡â ¥â ©â °â Žâ „â Ž" }, { "input": "plushy", "output": "â â ‡â ¥â ©â ½" }, { "input": "plutocracies", "output": "â â ‡â ¥â žâ •⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "plutocracy", "output": "â â ‡â ¥â žâ •⠉⠗â â ‰â ½" }, { "input": "plutocracy's", "output": "â â ‡â ¥â žâ •⠉⠗â â ‰â ½â „â Ž" }, { "input": "plutocrat", "output": "â â ‡â ¥â žâ •⠉⠗â â ž" }, { "input": "plutocrat's", "output": "â â ‡â ¥â žâ •⠉⠗â â žâ „â Ž" }, { "input": "plutocratic", "output": "â â ‡â ¥â žâ •⠉⠗â â žâ Šâ ‰" }, { "input": "plutocrats", "output": "â â ‡â ¥â žâ •⠉⠗â â žâ Ž" }, { "input": "plutonium", "output": "â â ‡â ¥â žâ •â â Šâ ¥â " }, { "input": "plutonium's", "output": "â â ‡â ¥â žâ •â â Šâ ¥â â „â Ž" }, { "input": "pluvial", "output": "â â ‡â ¥â §â Šâ â ‡" }, { "input": "ply", "output": "â â ‡â ½" }, { "input": "ply's", "output": "â â ‡â ½â „â Ž" }, { "input": "plying", "output": "â â ‡â ½â Œ" }, { "input": "plywood", "output": "â â ‡â ½â ºâ •â •â ™" }, { "input": "plywood's", "output": "â â ‡â ½â ºâ •⠕⠙⠄⠎" }, { "input": "pneumatic", "output": "â â â ‘â ¥â â â žâ Šâ ‰" }, { "input": "pneumatically", "output": "â â â ‘â ¥â â â žâ Šâ ‰â  â ½" }, { "input": "pneumonia", "output": "â â â ‘â ¥â â •â â Šâ " }, { "input": "pneumonia's", "output": "â â â ‘â ¥â â •â â Šâ â „â Ž" }, { "input": "poach", "output": "â â •â â ¡" }, { "input": "poached", "output": "â â •â â ¡â «" }, { "input": "poacher", "output": "â â •â â ¡â »" }, { "input": "poacher's", "output": "â â •â â ¡â »â „â Ž" }, { "input": "poachers", "output": "â â •â â ¡â »â Ž" }, { "input": "poaches", "output": "â â •â â ¡â ‘â Ž" }, { "input": "poaching", "output": "â â •â â ¡â Œ" }, { "input": "poaching's", "output": "â â •â â ¡â Œâ „â Ž" }, { "input": "pock", "output": "â â •⠉⠅" }, { "input": "pock's", "output": "â â •⠉⠅⠄⠎" }, { "input": "pocked", "output": "â â •⠉⠅⠫" }, { "input": "pocket", "output": "â â •⠉⠅⠑⠞" }, { "input": "pocket's", "output": "â â •⠉⠅⠑⠞⠄⠎" }, { "input": "pocketbook", "output": "â â •⠉⠅⠑⠞⠃⠕⠕⠅" }, { "input": "pocketbook's", "output": "â â •⠉⠅⠑⠞⠃⠕⠕⠅⠄⠎" }, { "input": "pocketbooks", "output": "â â •⠉⠅⠑⠞⠃⠕⠕⠅⠎" }, { "input": "pocketed", "output": "â â •⠉⠅⠑⠞⠫" }, { "input": "pocketful", "output": "â â •⠉⠅⠑⠞⠰⠇" }, { "input": "pocketful's", "output": "â â •⠉⠅⠑⠞⠰⠇⠄⠎" }, { "input": "pocketfuls", "output": "â â •⠉⠅⠑⠞⠰⠇⠎" }, { "input": "pocketing", "output": "â â •⠉⠅⠑⠞⠌" }, { "input": "pocketknife", "output": "â â •⠉⠅⠑⠞⠅â â Šâ ‹â ‘" }, { "input": "pocketknife's", "output": "â â •⠉⠅⠑⠞⠅â â Šâ ‹â ‘â „â Ž" }, { "input": "pocketknives", "output": "â â •⠉⠅⠑⠞⠅â â Šâ §â ‘â Ž" }, { "input": "pockets", "output": "â â •⠉⠅⠑⠞⠎" }, { "input": "pocking", "output": "â â •⠉⠅⠌" }, { "input": "pockmark", "output": "â â •⠉⠅â â œâ …" }, { "input": "pockmark's", "output": "â â •⠉⠅â â œâ …â „â Ž" }, { "input": "pockmarked", "output": "â â •⠉⠅â â œâ …â «" }, { "input": "pockmarking", "output": "â â •⠉⠅â â œâ …â Œ" }, { "input": "pockmarks", "output": "â â •⠉⠅â â œâ …â Ž" }, { "input": "pocks", "output": "â â •⠉⠅⠎" }, { "input": "pod", "output": "â â •â ™" }, { "input": "pod's", "output": "â â •⠙⠄⠎" }, { "input": "podcast", "output": "â â •⠙⠉â â Œ" }, { "input": "podded", "output": "â â •⠲⠫" }, { "input": "podding", "output": "â â •⠲⠌" }, { "input": "podiatrist", "output": "â â •⠙⠊â â žâ —â Šâ Œ" }, { "input": "podiatrist's", "output": "â â •⠙⠊â â žâ —⠊⠌⠄⠎" }, { "input": "podiatrists", "output": "â â •⠙⠊â â žâ —⠊⠌⠎" }, { "input": "podiatry", "output": "â â •⠙⠊â â žâ —â ½" }, { "input": "podiatry's", "output": "â â •⠙⠊â â žâ —⠽⠄⠎" }, { "input": "podium", "output": "â â •⠙⠊⠥â " }, { "input": "podium's", "output": "â â •⠙⠊⠥â â „â Ž" }, { "input": "podiums", "output": "â â •⠙⠊⠥â â Ž" }, { "input": "pods", "output": "â â •⠙⠎" }, { "input": "poem", "output": "â â •â ‘â " }, { "input": "poem's", "output": "â â •â ‘â â „â Ž" }, { "input": "poems", "output": "â â •â ‘â â Ž" }, { "input": "poesy", "output": "â â •â ‘â Žâ ½" }, { "input": "poesy's", "output": "â â •⠑⠎⠽⠄⠎" }, { "input": "poet", "output": "â â •â ‘â ž" }, { "input": "poet's", "output": "â â •â ‘â žâ „â Ž" }, { "input": "poetaster", "output": "â â •â ‘â žâ â Œâ »" }, { "input": "poetaster's", "output": "â â •â ‘â žâ â Œâ »â „â Ž" }, { "input": "poetasters", "output": "â â •â ‘â žâ â Œâ »â Ž" }, { "input": "poetess", "output": "â â •â ‘â žâ ‘â Žâ Ž" }, { "input": "poetess's", "output": "â â •â ‘â žâ ‘â Žâ Žâ „â Ž" }, { "input": "poetesses", "output": "â â •â ‘â žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "poetic", "output": "â â •â ‘â žâ Šâ ‰" }, { "input": "poetical", "output": "â â •â ‘â žâ Šâ ‰â â ‡" }, { "input": "poetically", "output": "â â •⠑⠞⠊⠉⠠⠽" }, { "input": "poetry", "output": "â â •â ‘â žâ —â ½" }, { "input": "poetry's", "output": "â â •⠑⠞⠗⠽⠄⠎" }, { "input": "poets", "output": "â â •â ‘â žâ Ž" }, { "input": "pogrom", "output": "â â •⠛⠗⠕â " }, { "input": "pogrom's", "output": "â â •⠛⠗⠕â â „â Ž" }, { "input": "pogroms", "output": "â â •⠛⠗⠕â â Ž" }, { "input": "poi", "output": "â â •â Š" }, { "input": "poi's", "output": "â â •â Šâ „â Ž" }, { "input": "poignancy", "output": "â â •â Šâ ›â â â â ‰â ½" }, { "input": "poignancy's", "output": "â â •â Šâ ›â â â â ‰â ½â „â Ž" }, { "input": "poignant", "output": "â â •â Šâ ›â â â â ž" }, { "input": "poignantly", "output": "â â •â Šâ ›â â â â žâ ‡â ½" }, { "input": "poinciana", "output": "â â •⠔⠉⠊â â â " }, { "input": "poinciana's", "output": "â â •⠔⠉⠊â â â â „â Ž" }, { "input": "poincianas", "output": "â â •⠔⠉⠊â â â â Ž" }, { "input": "poinsettia", "output": "â â •⠔⠎⠑⠞⠞⠊â " }, { "input": "poinsettia's", "output": "â â •⠔⠎⠑⠞⠞⠊â â „â Ž" }, { "input": "poinsettias", "output": "â â •⠔⠎⠑⠞⠞⠊â â Ž" }, { "input": "point", "output": "â â •⠔⠞" }, { "input": "point's", "output": "â â •⠔⠞⠄⠎" }, { "input": "pointblank", "output": "â â •⠔⠞⠃⠇â â â …" }, { "input": "pointed", "output": "â â •⠔⠞⠫" }, { "input": "pointedly", "output": "â â •⠔⠞⠫⠇⠽" }, { "input": "pointer", "output": "â â •⠔⠞⠻" }, { "input": "pointer's", "output": "â â •⠔⠞⠻⠄⠎" }, { "input": "pointers", "output": "â â •⠔⠞⠻⠎" }, { "input": "pointier", "output": "â â •⠔⠞⠊⠻" }, { "input": "pointiest", "output": "â â •⠔⠞⠊⠑⠌" }, { "input": "pointillism", "output": "â â •⠔⠞⠊⠇⠇⠊⠎â " }, { "input": "pointillism's", "output": "â â •⠔⠞⠊⠇⠇⠊⠎â â „â Ž" }, { "input": "pointillist", "output": "â â •⠔⠞⠊⠇⠇⠊⠌" }, { "input": "pointillist's", "output": "â â •⠔⠞⠊⠇⠇⠊⠌⠄⠎" }, { "input": "pointillists", "output": "â â •⠔⠞⠊⠇⠇⠊⠌⠎" }, { "input": "pointing", "output": "â â •⠔⠞⠌" }, { "input": "pointless", "output": "â â •⠔⠞⠨⠎" }, { "input": "pointlessly", "output": "â â •⠔⠞⠨⠎⠇⠽" }, { "input": "pointlessness", "output": "â â •⠔⠞⠨⠎⠰⠎" }, { "input": "pointlessness's", "output": "â â •⠔⠞⠨⠎⠰⠎⠄⠎" }, { "input": "points", "output": "â â •⠔⠞⠎" }, { "input": "pointy", "output": "â â •⠔⠞⠽" }, { "input": "poise", "output": "â â •â Šâ Žâ ‘" }, { "input": "poise's", "output": "â â •â Šâ Žâ ‘â „â Ž" }, { "input": "poised", "output": "â â •â Šâ Žâ «" }, { "input": "poises", "output": "â â •â Šâ Žâ ‘â Ž" }, { "input": "poising", "output": "â â •â Šâ Žâ Œ" }, { "input": "poison", "output": "â â •â Šâ Žâ •â " }, { "input": "poison's", "output": "â â •â Šâ Žâ •â â „â Ž" }, { "input": "poisoned", "output": "â â •â Šâ Žâ •â â «" }, { "input": "poisoner", "output": "â â •â Šâ Žâ •â â »" }, { "input": "poisoner's", "output": "â â •â Šâ Žâ •â â »â „â Ž" }, { "input": "poisoners", "output": "â â •â Šâ Žâ •â â »â Ž" }, { "input": "poisoning", "output": "â â •â Šâ Žâ •â â Œ" }, { "input": "poisoning's", "output": "â â •â Šâ Žâ •â â Œâ „â Ž" }, { "input": "poisonings", "output": "â â •â Šâ Žâ •â â Œâ Ž" }, { "input": "poisonous", "output": "â â •â Šâ Žâ •â â ³â Ž" }, { "input": "poisonously", "output": "â â •â Šâ Žâ •â â ³â Žâ ‡â ½" }, { "input": "poisons", "output": "â â •â Šâ Žâ •â â Ž" }, { "input": "poke", "output": "â â •â …â ‘" }, { "input": "poke's", "output": "â â •â …â ‘â „â Ž" }, { "input": "poked", "output": "â â •â …â «" }, { "input": "poker", "output": "â â •â …â »" }, { "input": "poker's", "output": "â â •⠅⠻⠄⠎" }, { "input": "pokers", "output": "â â •⠅⠻⠎" }, { "input": "pokes", "output": "â â •â …â ‘â Ž" }, { "input": "pokey", "output": "â â •â …â ‘â ½" }, { "input": "pokey's", "output": "â â •⠅⠑⠽⠄⠎" }, { "input": "pokeys", "output": "â â •⠅⠑⠽⠎" }, { "input": "pokier", "output": "â â •â …â Šâ »" }, { "input": "pokiest", "output": "â â •â …â Šâ ‘â Œ" }, { "input": "poking", "output": "â â •â …â Œ" }, { "input": "poky", "output": "â â •â …â ½" }, { "input": "pol", "output": "â â •â ‡" }, { "input": "pol's", "output": "â â •⠇⠄⠎" }, { "input": "polar", "output": "â â •⠇⠜" }, { "input": "polarities", "output": "â â •⠇⠜⠊⠞⠊⠑⠎" }, { "input": "polarity", "output": "â â •⠇⠜⠰⠽" }, { "input": "polarity's", "output": "â â •⠇⠜⠰⠽⠄⠎" }, { "input": "polarization", "output": "â â •⠇⠜⠊⠵⠠â " }, { "input": "polarization's", "output": "â â •⠇⠜⠊⠵⠠â â „â Ž" }, { "input": "polarize", "output": "â â •⠇⠜⠊⠵⠑" }, { "input": "polarized", "output": "â â •⠇⠜⠊⠵⠫" }, { "input": "polarizes", "output": "â â •⠇⠜⠊⠵⠑⠎" }, { "input": "polarizing", "output": "â â •⠇⠜⠊⠵⠌" }, { "input": "pole", "output": "â â •⠇⠑" }, { "input": "pole's", "output": "â â •⠇⠑⠄⠎" }, { "input": "polecat", "output": "â â •⠇⠑⠉â â ž" }, { "input": "polecat's", "output": "â â •⠇⠑⠉â â žâ „â Ž" }, { "input": "polecats", "output": "â â •⠇⠑⠉â â žâ Ž" }, { "input": "poled", "output": "â â •⠇⠫" }, { "input": "polemic", "output": "â â •⠇⠑â â Šâ ‰" }, { "input": "polemic's", "output": "â â •⠇⠑â â Šâ ‰â „â Ž" }, { "input": "polemical", "output": "â â •⠇⠑â â Šâ ‰â â ‡" }, { "input": "polemically", "output": "â â •⠇⠑â â Šâ ‰â  â ½" }, { "input": "polemics", "output": "â â •⠇⠑â â Šâ ‰â Ž" }, { "input": "polemics's", "output": "â â •⠇⠑â â Šâ ‰â Žâ „â Ž" }, { "input": "poles", "output": "â â •⠇⠑⠎" }, { "input": "polestar", "output": "â â •⠇⠑⠌⠜" }, { "input": "polestar's", "output": "â â •⠇⠑⠌⠜⠄⠎" }, { "input": "polestars", "output": "â â •⠇⠑⠌⠜⠎" }, { "input": "police", "output": "â â •⠇⠊⠉⠑" }, { "input": "police's", "output": "â â •⠇⠊⠉⠑⠄⠎" }, { "input": "policed", "output": "â â •⠇⠊⠉⠫" }, { "input": "policeman", "output": "â â •⠇⠊⠉⠑â â â " }, { "input": "policeman's", "output": "â â •⠇⠊⠉⠑â â â â „â Ž" }, { "input": "policemen", "output": "â â •⠇⠊⠉⠑â â ¢" }, { "input": "polices", "output": "â â •⠇⠊⠉⠑⠎" }, { "input": "policewoman", "output": "â â •⠇⠊⠉⠑⠺⠕â â â " }, { "input": "policewoman's", "output": "â â •⠇⠊⠉⠑⠺⠕â â â â „â Ž" }, { "input": "policewomen", "output": "â â •⠇⠊⠉⠑⠺⠕â â ¢" }, { "input": "policies", "output": "â â •⠇⠊⠉⠊⠑⠎" }, { "input": "policing", "output": "â â •⠇⠊⠉⠌" }, { "input": "policy", "output": "â â •⠇⠊⠉⠽" }, { "input": "policy's", "output": "â â •⠇⠊⠉⠽⠄⠎" }, { "input": "policyholder", "output": "â â •⠇⠊⠉⠽⠓⠕⠇⠙⠻" }, { "input": "policyholder's", "output": "â â •⠇⠊⠉⠽⠓⠕⠇⠙⠻⠄⠎" }, { "input": "policyholders", "output": "â â •⠇⠊⠉⠽⠓⠕⠇⠙⠻⠎" }, { "input": "poling", "output": "â â •⠇⠌" }, { "input": "polio", "output": "â â •⠇⠊⠕" }, { "input": "polio's", "output": "â â •⠇⠊⠕⠄⠎" }, { "input": "poliomyelitis", "output": "â â •⠇⠊⠕â â ½â ‘⠇⠊⠞⠊⠎" }, { "input": "poliomyelitis's", "output": "â â •⠇⠊⠕â â ½â ‘⠇⠊⠞⠊⠎⠄⠎" }, { "input": "polios", "output": "â â •⠇⠊⠕⠎" }, { "input": "polish", "output": "â â •⠇⠊⠩" }, { "input": "polish's", "output": "â â •⠇⠊⠩⠄⠎" }, { "input": "polished", "output": "â â •⠇⠊⠩⠫" }, { "input": "polisher", "output": "â â •⠇⠊⠩⠻" }, { "input": "polisher's", "output": "â â •⠇⠊⠩⠻⠄⠎" }, { "input": "polishers", "output": "â â •⠇⠊⠩⠻⠎" }, { "input": "polishes", "output": "â â •⠇⠊⠩⠑⠎" }, { "input": "polishing", "output": "â â •⠇⠊⠩⠌" }, { "input": "polite", "output": "â â •⠇⠊⠞⠑" }, { "input": "politely", "output": "â â •⠇⠊⠞⠑⠇⠽" }, { "input": "politeness", "output": "â â •⠇⠊⠞⠑⠰⠎" }, { "input": "politeness's", "output": "â â •⠇⠊⠞⠑⠰⠎⠄⠎" }, { "input": "politer", "output": "â â •⠇⠊⠞⠻" }, { "input": "politesse", "output": "â â •⠇⠊⠞⠑⠎⠎⠑" }, { "input": "politesse's", "output": "â â •⠇⠊⠞⠑⠎⠎⠑⠄⠎" }, { "input": "politest", "output": "â â •⠇⠊⠞⠑⠌" }, { "input": "politic", "output": "â â •⠇⠊⠞⠊⠉" }, { "input": "political", "output": "â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "politically", "output": "â â •⠇⠊⠞⠊⠉⠠⠽" }, { "input": "politician", "output": "â â •⠇⠊⠞⠊⠉⠊â â " }, { "input": "politician's", "output": "â â •⠇⠊⠞⠊⠉⠊â â â „â Ž" }, { "input": "politicians", "output": "â â •⠇⠊⠞⠊⠉⠊â â â Ž" }, { "input": "politicization", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠠â " }, { "input": "politicization's", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠠â â „â Ž" }, { "input": "politicize", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠑" }, { "input": "politicized", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠫" }, { "input": "politicizes", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠑⠎" }, { "input": "politicizing", "output": "â â •⠇⠊⠞⠊⠉⠊⠵⠌" }, { "input": "politicking's", "output": "â â •⠇⠊⠞⠊⠉⠅⠌⠄⠎" }, { "input": "politico", "output": "â â •⠇⠊⠞⠊⠉⠕" }, { "input": "politico's", "output": "â â •⠇⠊⠞⠊⠉⠕⠄⠎" }, { "input": "politicos", "output": "â â •⠇⠊⠞⠊⠉⠕⠎" }, { "input": "politics", "output": "â â •⠇⠊⠞⠊⠉⠎" }, { "input": "politics's", "output": "â â •⠇⠊⠞⠊⠉⠎⠄⠎" }, { "input": "polities", "output": "â â •⠇⠊⠞⠊⠑⠎" }, { "input": "polity", "output": "â â •⠇⠰⠽" }, { "input": "polity's", "output": "â â •⠇⠰⠽⠄⠎" }, { "input": "polka", "output": "â â •⠇⠅â " }, { "input": "polka's", "output": "â â •⠇⠅â â „â Ž" }, { "input": "polkaed", "output": "â â •⠇⠅â â «" }, { "input": "polkaing", "output": "â â •⠇⠅â â Œ" }, { "input": "polkas", "output": "â â •⠇⠅â â Ž" }, { "input": "poll", "output": "â â •⠇⠇" }, { "input": "poll's", "output": "â â •⠇⠇⠄⠎" }, { "input": "pollack", "output": "â â •⠇⠇â â ‰â …" }, { "input": "pollack's", "output": "â â •⠇⠇â â ‰â …â „â Ž" }, { "input": "pollacks", "output": "â â •⠇⠇â â ‰â …â Ž" }, { "input": "polled", "output": "â â •⠇⠇⠫" }, { "input": "pollen", "output": "â â •⠇⠇⠢" }, { "input": "pollen's", "output": "â â •⠇⠇⠢⠄⠎" }, { "input": "pollinate", "output": "â â •⠇⠇⠔â â žâ ‘" }, { "input": "pollinated", "output": "â â •⠇⠇⠔â â žâ «" }, { "input": "pollinates", "output": "â â •⠇⠇⠔â â žâ ‘â Ž" }, { "input": "pollinating", "output": "â â •⠇⠇⠔â â žâ Œ" }, { "input": "pollination", "output": "â â •⠇⠇⠔⠠â " }, { "input": "pollination's", "output": "â â •⠇⠇⠔⠠â â „â Ž" }, { "input": "pollinator", "output": "â â •⠇⠇⠔â â žâ •â —" }, { "input": "pollinator's", "output": "â â •⠇⠇⠔â â žâ •â —â „â Ž" }, { "input": "pollinators", "output": "â â •⠇⠇⠔â â žâ •â —â Ž" }, { "input": "polling", "output": "â â •⠇⠇⠌" }, { "input": "polling's", "output": "â â •⠇⠇⠌⠄⠎" }, { "input": "polliwog", "output": "â â •⠇⠇⠊⠺⠕⠛" }, { "input": "polliwog's", "output": "â â •⠇⠇⠊⠺⠕⠛⠄⠎" }, { "input": "polliwogs", "output": "â â •⠇⠇⠊⠺⠕⠛⠎" }, { "input": "polls", "output": "â â •⠇⠇⠎" }, { "input": "pollster", "output": "â â •⠇⠇⠌⠻" }, { "input": "pollster's", "output": "â â •⠇⠇⠌⠻⠄⠎" }, { "input": "pollsters", "output": "â â •⠇⠇⠌⠻⠎" }, { "input": "pollutant", "output": "â â •⠇⠇⠥⠞â â â ž" }, { "input": "pollutant's", "output": "â â •⠇⠇⠥⠞â â â žâ „â Ž" }, { "input": "pollutants", "output": "â â •⠇⠇⠥⠞â â â žâ Ž" }, { "input": "pollute", "output": "â â •⠇⠇⠥⠞⠑" }, { "input": "polluted", "output": "â â •⠇⠇⠥⠞⠫" }, { "input": "polluter", "output": "â â •⠇⠇⠥⠞⠻" }, { "input": "polluter's", "output": "â â •⠇⠇⠥⠞⠻⠄⠎" }, { "input": "polluters", "output": "â â •⠇⠇⠥⠞⠻⠎" }, { "input": "pollutes", "output": "â â •⠇⠇⠥⠞⠑⠎" }, { "input": "polluting", "output": "â â •⠇⠇⠥⠞⠌" }, { "input": "pollution", "output": "â â •⠇⠇⠥⠰â " }, { "input": "pollution's", "output": "â â •⠇⠇⠥⠰â â „â Ž" }, { "input": "polo", "output": "â â •⠇⠕" }, { "input": "polo's", "output": "â â •⠇⠕⠄⠎" }, { "input": "polonaise", "output": "â â •⠇⠕â â â Šâ Žâ ‘" }, { "input": "polonaise's", "output": "â â •⠇⠕â â â Šâ Žâ ‘â „â Ž" }, { "input": "polonaises", "output": "â â •⠇⠕â â â Šâ Žâ ‘â Ž" }, { "input": "polonium", "output": "â â •⠇⠕â â Šâ ¥â " }, { "input": "polonium's", "output": "â â •⠇⠕â â Šâ ¥â â „â Ž" }, { "input": "pols", "output": "â â •⠇⠎" }, { "input": "poltergeist", "output": "â â •⠇⠞⠻⠛⠑⠊⠌" }, { "input": "poltergeist's", "output": "â â •⠇⠞⠻⠛⠑⠊⠌⠄⠎" }, { "input": "poltergeists", "output": "â â •⠇⠞⠻⠛⠑⠊⠌⠎" }, { "input": "poltroon", "output": "â â •⠇⠞⠗⠕⠕â " }, { "input": "poltroon's", "output": "â â •⠇⠞⠗⠕⠕â â „â Ž" }, { "input": "poltroons", "output": "â â •⠇⠞⠗⠕⠕â â Ž" }, { "input": "polyandry's", "output": "â â •⠇⠽⠯⠗⠽⠄⠎" }, { "input": "polyclinic", "output": "â â •⠇⠽⠉⠇⠔⠊⠉" }, { "input": "polyclinic's", "output": "â â •⠇⠽⠉⠇⠔⠊⠉⠄⠎" }, { "input": "polyclinics", "output": "â â •⠇⠽⠉⠇⠔⠊⠉⠎" }, { "input": "polyester", "output": "â â •⠇⠽⠑⠌⠻" }, { "input": "polyester's", "output": "â â •⠇⠽⠑⠌⠻⠄⠎" }, { "input": "polyesters", "output": "â â •⠇⠽⠑⠌⠻⠎" }, { "input": "polyethylene", "output": "â â •⠇⠽⠑⠹⠽⠇⠢⠑" }, { "input": "polyethylene's", "output": "â â •⠇⠽⠑⠹⠽⠇⠢⠑⠄⠎" }, { "input": "polygamist", "output": "â â •⠇⠽⠛â â â Šâ Œ" }, { "input": "polygamist's", "output": "â â •⠇⠽⠛â â â Šâ Œâ „â Ž" }, { "input": "polygamists", "output": "â â •⠇⠽⠛â â â Šâ Œâ Ž" }, { "input": "polygamous", "output": "â â •⠇⠽⠛â â â ³â Ž" }, { "input": "polygamy", "output": "â â •⠇⠽⠛â â â ½" }, { "input": "polygamy's", "output": "â â •⠇⠽⠛â â â ½â „â Ž" }, { "input": "polyglot", "output": "â â •⠇⠽⠛⠇⠕⠞" }, { "input": "polyglot's", "output": "â â •⠇⠽⠛⠇⠕⠞⠄⠎" }, { "input": "polyglots", "output": "â â •⠇⠽⠛⠇⠕⠞⠎" }, { "input": "polygon", "output": "â â •⠇⠽⠛⠕â " }, { "input": "polygon's", "output": "â â •⠇⠽⠛⠕â â „â Ž" }, { "input": "polygonal", "output": "â â •⠇⠽⠛⠕â â â ‡" }, { "input": "polygons", "output": "â â •⠇⠽⠛⠕â â Ž" }, { "input": "polygraph", "output": "â â •⠇⠽⠛⠗â â â “" }, { "input": "polygraph's", "output": "â â •⠇⠽⠛⠗â â â “â „â Ž" }, { "input": "polygraphed", "output": "â â •⠇⠽⠛⠗â â â “â «" }, { "input": "polygraphing", "output": "â â •⠇⠽⠛⠗â â â “â Œ" }, { "input": "polygraphs", "output": "â â •⠇⠽⠛⠗â â â “â Ž" }, { "input": "polyhedral", "output": "â â •⠇⠽⠓⠫⠗â â ‡" }, { "input": "polyhedron", "output": "â â •⠇⠽⠓⠫⠗⠕â " }, { "input": "polyhedron's", "output": "â â •⠇⠽⠓⠫⠗⠕â â „â Ž" }, { "input": "polyhedrons", "output": "â â •⠇⠽⠓⠫⠗⠕â â Ž" }, { "input": "polymath", "output": "â â •⠇⠽â â â ¹" }, { "input": "polymath's", "output": "â â •⠇⠽â â â ¹â „â Ž" }, { "input": "polymaths", "output": "â â •⠇⠽â â â ¹â Ž" }, { "input": "polymer", "output": "â â •⠇⠽â â »" }, { "input": "polymer's", "output": "â â •⠇⠽â â »â „â Ž" }, { "input": "polymeric", "output": "â â •⠇⠽â â »â Šâ ‰" }, { "input": "polymerization", "output": "â â •⠇⠽â â »â Šâ µâ  â " }, { "input": "polymerization's", "output": "â â •⠇⠽â â »â Šâ µâ  â â „â Ž" }, { "input": "polymerize", "output": "â â •⠇⠽â â »â Šâ µâ ‘" }, { "input": "polymerized", "output": "â â •⠇⠽â â »â Šâ µâ «" }, { "input": "polymerizes", "output": "â â •⠇⠽â â »â Šâ µâ ‘â Ž" }, { "input": "polymerizing", "output": "â â •⠇⠽â â »â Šâ µâ Œ" }, { "input": "polymers", "output": "â â •⠇⠽â â »â Ž" }, { "input": "polymorphic", "output": "â â •⠇⠽â â •â —â â “â Šâ ‰" }, { "input": "polynomial", "output": "â â •⠇⠽â â •â â Šâ â ‡" }, { "input": "polynomial's", "output": "â â •⠇⠽â â •â â Šâ â ‡â „â Ž" }, { "input": "polynomials", "output": "â â •⠇⠽â â •â â Šâ â ‡â Ž" }, { "input": "polyp", "output": "â â •⠇⠽â " }, { "input": "polyp's", "output": "â â •⠇⠽â â „â Ž" }, { "input": "polyphonic", "output": "â â •⠇⠽â â “â •â â Šâ ‰" }, { "input": "polyphony", "output": "â â •⠇⠽â â “â •â â ½" }, { "input": "polyphony's", "output": "â â •⠇⠽â â “â •â â ½â „â Ž" }, { "input": "polypropylene's", "output": "â â •⠇⠽â â —â •â â ½â ‡â ¢â ‘â „â Ž" }, { "input": "polyps", "output": "â â •⠇⠽â â Ž" }, { "input": "polystyrene", "output": "â â •⠇⠽⠌⠽⠗⠢⠑" }, { "input": "polystyrene's", "output": "â â •⠇⠽⠌⠽⠗⠢⠑⠄⠎" }, { "input": "polysyllabic", "output": "â â •⠇⠽⠎⠽⠇⠇â â ƒâ Šâ ‰" }, { "input": "polysyllable", "output": "â â •⠇⠽⠎⠽⠇⠇â â ¼" }, { "input": "polysyllable's", "output": "â â •⠇⠽⠎⠽⠇⠇â â ¼â „â Ž" }, { "input": "polysyllables", "output": "â â •⠇⠽⠎⠽⠇⠇â â ¼â Ž" }, { "input": "polytechnic", "output": "â â •⠇⠽⠞⠑⠡â â Šâ ‰" }, { "input": "polytechnic's", "output": "â â •⠇⠽⠞⠑⠡â â Šâ ‰â „â Ž" }, { "input": "polytechnics", "output": "â â •⠇⠽⠞⠑⠡â â Šâ ‰â Ž" }, { "input": "polytheism", "output": "â â •⠇⠽⠮⠊⠎â " }, { "input": "polytheism's", "output": "â â •⠇⠽⠮⠊⠎â â „â Ž" }, { "input": "polytheist", "output": "â â •⠇⠽⠮⠊⠌" }, { "input": "polytheist's", "output": "â â •⠇⠽⠮⠊⠌⠄⠎" }, { "input": "polytheistic", "output": "â â •⠇⠽⠮⠊⠌⠊⠉" }, { "input": "polytheists", "output": "â â •⠇⠽⠮⠊⠌⠎" }, { "input": "polythene", "output": "â â •⠇⠽⠮â â ‘" }, { "input": "polyunsaturated", "output": "â â •⠇⠽⠥â â Žâ â žâ ¥â —â â žâ «" }, { "input": "polyurethane's", "output": "â â •⠇⠽⠥⠗⠑⠹â â â ‘â „â Ž" }, { "input": "polyurethanes", "output": "â â •⠇⠽⠥⠗⠑⠹â â â ‘â Ž" }, { "input": "polyvinyl", "output": "â â •⠇⠽⠧⠔⠽⠇" }, { "input": "pomade", "output": "â â •â â â ™â ‘" }, { "input": "pomade's", "output": "â â •â â â ™â ‘â „â Ž" }, { "input": "pomaded", "output": "â â •â â â ™â «" }, { "input": "pomades", "output": "â â •â â â ™â ‘â Ž" }, { "input": "pomading", "output": "â â •â â â ™â Œ" }, { "input": "pomegranate", "output": "â â •â â ‘⠛⠗â â â â žâ ‘" }, { "input": "pomegranate's", "output": "â â •â â ‘⠛⠗â â â â žâ ‘â „â Ž" }, { "input": "pomegranates", "output": "â â •â â ‘⠛⠗â â â â žâ ‘â Ž" }, { "input": "pommel", "output": "â â •â â â ‘â ‡" }, { "input": "pommel's", "output": "â â •â â â ‘⠇⠄⠎" }, { "input": "pommeled", "output": "â â •â â â ‘⠇⠫" }, { "input": "pommeling", "output": "â â •â â â ‘⠇⠌" }, { "input": "pommels", "output": "â â •â â â ‘⠇⠎" }, { "input": "pomp", "output": "â â •â â " }, { "input": "pomp's", "output": "â â •â â â „â Ž" }, { "input": "pompadour", "output": "â â •â â â â ™â ³â —" }, { "input": "pompadour's", "output": "â â •â â â â ™â ³â —â „â Ž" }, { "input": "pompadoured", "output": "â â •â â â â ™â ³â —â «" }, { "input": "pompadours", "output": "â â •â â â â ™â ³â —â Ž" }, { "input": "pompano", "output": "â â •â â â â â •" }, { "input": "pompano's", "output": "â â •â â â â â •â „â Ž" }, { "input": "pompanos", "output": "â â •â â â â â •â Ž" }, { "input": "pompom", "output": "â â •â â â •â " }, { "input": "pompom's", "output": "â â •â â â •â â „â Ž" }, { "input": "pompoms", "output": "â â •â â â •â â Ž" }, { "input": "pomposity", "output": "â â •â â â •â Žâ °â ½" }, { "input": "pomposity's", "output": "â â •â â â •⠎⠰⠽⠄⠎" }, { "input": "pompous", "output": "â â •â â â ³â Ž" }, { "input": "pompously", "output": "â â •â â â ³â Žâ ‡â ½" }, { "input": "pompousness", "output": "â â •â â â ³â Žâ °â Ž" }, { "input": "pompousness's", "output": "â â •â â â ³â Žâ °â Žâ „â Ž" }, { "input": "poncho", "output": "â â •â â ¡â •" }, { "input": "poncho's", "output": "â â •â â ¡â •â „â Ž" }, { "input": "ponchos", "output": "â â •â â ¡â •â Ž" }, { "input": "pond", "output": "â â •â â ™" }, { "input": "pond's", "output": "â â •â â ™â „â Ž" }, { "input": "ponder", "output": "â â •â â ™â »" }, { "input": "pondered", "output": "â â •â â ™â »â «" }, { "input": "ponderer", "output": "â â •â â ™â »â »" }, { "input": "ponderer's", "output": "â â •â â ™â »â »â „â Ž" }, { "input": "ponderers", "output": "â â •â â ™â »â »â Ž" }, { "input": "pondering", "output": "â â •â â ™â »â Œ" }, { "input": "ponderous", "output": "â â •â â ™â »â ³â Ž" }, { "input": "ponderously", "output": "â â •â â ™â »â ³â Žâ ‡â ½" }, { "input": "ponderousness's", "output": "â â •â â ™â »â ³â Žâ °â Žâ „â Ž" }, { "input": "ponders", "output": "â â •â â ™â »â Ž" }, { "input": "ponds", "output": "â â •â â ™â Ž" }, { "input": "pone", "output": "â â â •" }, { "input": "pone's", "output": "â â â •â „â Ž" }, { "input": "pones", "output": "â â â •â Ž" }, { "input": "pongee", "output": "â â °â ›â ‘â ‘" }, { "input": "pongee's", "output": "â â °â ›â ‘â ‘â „â Ž" }, { "input": "poniard", "output": "â â •â â Šâ œâ ™" }, { "input": "poniard's", "output": "â â •â â Šâ œâ ™â „â Ž" }, { "input": "poniards", "output": "â â •â â Šâ œâ ™â Ž" }, { "input": "ponies", "output": "â â •â â Šâ ‘â Ž" }, { "input": "pontiff", "output": "â â •â â žâ Šâ ‹â ‹" }, { "input": "pontiff's", "output": "â â •â â žâ Šâ ‹â ‹â „â Ž" }, { "input": "pontiffs", "output": "â â •â â žâ Šâ –â Ž" }, { "input": "pontifical", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â ‡" }, { "input": "pontifically", "output": "â â •â â žâ Šâ ‹â Šâ ‰â  â ½" }, { "input": "pontificate", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ ‘" }, { "input": "pontificate's", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ ‘â „â Ž" }, { "input": "pontificated", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ «" }, { "input": "pontificates", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ ‘â Ž" }, { "input": "pontificating", "output": "â â •â â žâ Šâ ‹â Šâ ‰â â žâ Œ" }, { "input": "pontoon", "output": "â â •â â žâ •â •â " }, { "input": "pontoon's", "output": "â â •â â žâ •â •â â „â Ž" }, { "input": "pontoons", "output": "â â •â â žâ •â •â â Ž" }, { "input": "pony", "output": "â â •â â ½" }, { "input": "pony's", "output": "â â •â â ½â „â Ž" }, { "input": "ponytail", "output": "â â •â â ½â žâ â Šâ ‡" }, { "input": "ponytail's", "output": "â â •â â ½â žâ â Šâ ‡â „â Ž" }, { "input": "ponytails", "output": "â â •â â ½â žâ â Šâ ‡â Ž" }, { "input": "pooch", "output": "â â •â •â ¡" }, { "input": "pooch's", "output": "â â •â •â ¡â „â Ž" }, { "input": "pooched", "output": "â â •â •â ¡â «" }, { "input": "pooches", "output": "â â •â •â ¡â ‘â Ž" }, { "input": "pooching", "output": "â â •â •â ¡â Œ" }, { "input": "poodle", "output": "â â •⠕⠙⠇⠑" }, { "input": "poodle's", "output": "â â •⠕⠙⠇⠑⠄⠎" }, { "input": "poodles", "output": "â â •⠕⠙⠇⠑⠎" }, { "input": "pooh", "output": "â â •â •â “" }, { "input": "pooh's", "output": "â â •â •â “â „â Ž" }, { "input": "poohed", "output": "â â •â •â “â «" }, { "input": "poohing", "output": "â â •â •â “â Œ" }, { "input": "poohs", "output": "â â •â •â “â Ž" }, { "input": "pool", "output": "â â •â •â ‡" }, { "input": "pool's", "output": "â â •⠕⠇⠄⠎" }, { "input": "pooled", "output": "â â •⠕⠇⠫" }, { "input": "pooling", "output": "â â •⠕⠇⠌" }, { "input": "poolroom", "output": "â â •⠕⠇⠗⠕⠕â " }, { "input": "poolroom's", "output": "â â •⠕⠇⠗⠕⠕â â „â Ž" }, { "input": "poolrooms", "output": "â â •⠕⠇⠗⠕⠕â â Ž" }, { "input": "pools", "output": "â â •⠕⠇⠎" }, { "input": "poop", "output": "â â •â •â " }, { "input": "poop's", "output": "â â •â •â â „â Ž" }, { "input": "pooped", "output": "â â •â •â â «" }, { "input": "pooping", "output": "â â •â •â â Œ" }, { "input": "poops", "output": "â â •â •â â Ž" }, { "input": "poor", "output": "â â •â •â —" }, { "input": "poorboy", "output": "â â •⠕⠗⠃⠕⠽" }, { "input": "poorboy's", "output": "â â •⠕⠗⠃⠕⠽⠄⠎" }, { "input": "poorer", "output": "â â •â •â —â »" }, { "input": "poorest", "output": "â â •â •â —â ‘â Œ" }, { "input": "poorhouse", "output": "â â •⠕⠗⠓⠳⠎⠑" }, { "input": "poorhouse's", "output": "â â •⠕⠗⠓⠳⠎⠑⠄⠎" }, { "input": "poorhouses", "output": "â â •⠕⠗⠓⠳⠎⠑⠎" }, { "input": "poorly", "output": "â â •⠕⠗⠇⠽" }, { "input": "poorness", "output": "â â •â •â —â °â Ž" }, { "input": "poorness's", "output": "â â •â •â —â °â Žâ „â Ž" }, { "input": "pop", "output": "â â •â " }, { "input": "pop's", "output": "â â •â â „â Ž" }, { "input": "popcorn", "output": "â â •â â ‰â •â —â " }, { "input": "popcorn's", "output": "â â •â â ‰â •â —â â „â Ž" }, { "input": "pope", "output": "â â •â â ‘" }, { "input": "pope's", "output": "â â •â â ‘â „â Ž" }, { "input": "popes", "output": "â â •â â ‘â Ž" }, { "input": "popgun", "output": "â â •â â ›â ¥â " }, { "input": "popgun's", "output": "â â •â â ›â ¥â â „â Ž" }, { "input": "popguns", "output": "â â •â â ›â ¥â â Ž" }, { "input": "popinjay", "output": "â â •â â ”â šâ â ½" }, { "input": "popinjay's", "output": "â â •â â ”â šâ â ½â „â Ž" }, { "input": "popinjays", "output": "â â •â â ”â šâ â ½â Ž" }, { "input": "poplar", "output": "â â •â â ‡â œ" }, { "input": "poplar's", "output": "â â •â â ‡â œâ „â Ž" }, { "input": "poplars", "output": "â â •â â ‡â œâ Ž" }, { "input": "poplin", "output": "â â •â â ‡â ”" }, { "input": "poplin's", "output": "â â •â â ‡â ”â „â Ž" }, { "input": "popover", "output": "â â •â â •â §â »" }, { "input": "popover's", "output": "â â •â â •⠧⠻⠄⠎" }, { "input": "popovers", "output": "â â •â â •⠧⠻⠎" }, { "input": "poppa", "output": "â â •â â â " }, { "input": "poppa's", "output": "â â •â â â â „â Ž" }, { "input": "poppas", "output": "â â •â â â â Ž" }, { "input": "popped", "output": "â â •â â â «" }, { "input": "poppies", "output": "â â •â â â Šâ ‘â Ž" }, { "input": "popping", "output": "â â •â â â Œ" }, { "input": "poppy", "output": "â â •â â â ½" }, { "input": "poppy's", "output": "â â •â â â ½â „â Ž" }, { "input": "poppycock", "output": "â â •â â â ½â ‰â •⠉⠅" }, { "input": "poppycock's", "output": "â â •â â â ½â ‰â •⠉⠅⠄⠎" }, { "input": "pops", "output": "â â •â â Ž" }, { "input": "populace", "output": "â â •â â ¥â ‡â â ‰â ‘" }, { "input": "populace's", "output": "â â •â â ¥â ‡â â ‰â ‘â „â Ž" }, { "input": "populaces", "output": "â â •â â ¥â ‡â â ‰â ‘â Ž" }, { "input": "popular", "output": "â â •â â ¥â ‡â œ" }, { "input": "popularity", "output": "â â •â â ¥â ‡â œâ °â ½" }, { "input": "popularity's", "output": "â â •â â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "popularization", "output": "â â •â â ¥â ‡â œâ Šâ µâ  â " }, { "input": "popularization's", "output": "â â •â â ¥â ‡â œâ Šâ µâ  â â „â Ž" }, { "input": "popularize", "output": "â â •â â ¥â ‡â œâ Šâ µâ ‘" }, { "input": "popularized", "output": "â â •â â ¥â ‡â œâ Šâ µâ «" }, { "input": "popularizes", "output": "â â •â â ¥â ‡â œâ Šâ µâ ‘â Ž" }, { "input": "popularizing", "output": "â â •â â ¥â ‡â œâ Šâ µâ Œ" }, { "input": "popularly", "output": "â â •â â ¥â ‡â œâ ‡â ½" }, { "input": "populate", "output": "â â •â â ¥â ‡â â žâ ‘" }, { "input": "populated", "output": "â â •â â ¥â ‡â â žâ «" }, { "input": "populates", "output": "â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "populating", "output": "â â •â â ¥â ‡â â žâ Œ" }, { "input": "population", "output": "â â •â â ¥â ‡â  â " }, { "input": "population's", "output": "â â •â â ¥â ‡â  â â „â Ž" }, { "input": "populations", "output": "â â •â â ¥â ‡â  â â Ž" }, { "input": "populism", "output": "â â •â â ¥â ‡â Šâ Žâ " }, { "input": "populism's", "output": "â â •â â ¥â ‡â Šâ Žâ â „â Ž" }, { "input": "populist", "output": "â â •â â ¥â ‡â Šâ Œ" }, { "input": "populist's", "output": "â â •â â ¥â ‡â Šâ Œâ „â Ž" }, { "input": "populists", "output": "â â •â â ¥â ‡â Šâ Œâ Ž" }, { "input": "populous", "output": "â â •â â ¥â ‡â ³â Ž" }, { "input": "populousness", "output": "â â •â â ¥â ‡â ³â Žâ °â Ž" }, { "input": "populousness's", "output": "â â •â â ¥â ‡â ³â Žâ °â Žâ „â Ž" }, { "input": "porcelain", "output": "â â •⠗⠉⠑⠇â â ”" }, { "input": "porcelain's", "output": "â â •⠗⠉⠑⠇â â ”â „â Ž" }, { "input": "porch", "output": "â â •â —â ¡" }, { "input": "porch's", "output": "â â •â —â ¡â „â Ž" }, { "input": "porches", "output": "â â •â —â ¡â ‘â Ž" }, { "input": "porcine", "output": "â â •⠗⠉⠔⠑" }, { "input": "porcupine", "output": "â â •⠗⠉⠥â â ”â ‘" }, { "input": "porcupine's", "output": "â â •⠗⠉⠥â â ”â ‘â „â Ž" }, { "input": "porcupines", "output": "â â •⠗⠉⠥â â ”â ‘â Ž" }, { "input": "pore", "output": "â â •â —â ‘" }, { "input": "pore's", "output": "â â •â —â ‘â „â Ž" }, { "input": "pored", "output": "â â •â —â «" }, { "input": "pores", "output": "â â •â —â ‘â Ž" }, { "input": "porgies", "output": "â â •⠗⠛⠊⠑⠎" }, { "input": "porgy", "output": "â â •⠗⠛⠽" }, { "input": "porgy's", "output": "â â •⠗⠛⠽⠄⠎" }, { "input": "poring", "output": "â â •â —â Œ" }, { "input": "pork", "output": "â â •â —â …" }, { "input": "pork's", "output": "â â •â —â …â „â Ž" }, { "input": "porkier", "output": "â â •â —â …â Šâ »" }, { "input": "porkiest", "output": "â â •â —â …â Šâ ‘â Œ" }, { "input": "porn", "output": "â â •â —â " }, { "input": "porn's", "output": "â â •â —â â „â Ž" }, { "input": "porno", "output": "â â •â —â â •" }, { "input": "porno's", "output": "â â •â —â â •â „â Ž" }, { "input": "pornographer", "output": "â â •â —â â •⠛⠗â â â “â »" }, { "input": "pornographer's", "output": "â â •â —â â •⠛⠗â â â “⠻⠄⠎" }, { "input": "pornographers", "output": "â â •â —â â •⠛⠗â â â “⠻⠎" }, { "input": "pornographic", "output": "â â •â —â â •⠛⠗â â â “â Šâ ‰" }, { "input": "pornographically", "output": "â â •â —â â •⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "pornography", "output": "â â •â —â â •⠛⠗â â â “â ½" }, { "input": "pornography's", "output": "â â •â —â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "porosity", "output": "â â •â —â •â Žâ °â ½" }, { "input": "porosity's", "output": "â â •⠗⠕⠎⠰⠽⠄⠎" }, { "input": "porous", "output": "â â •⠗⠳⠎" }, { "input": "porousness", "output": "â â •⠗⠳⠎⠰⠎" }, { "input": "porousness's", "output": "â â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "porphyritic", "output": "â â •â —â â “⠽⠗⠊⠞⠊⠉" }, { "input": "porphyry", "output": "â â •â —â â “⠽⠗⠽" }, { "input": "porphyry's", "output": "â â •â —â â “⠽⠗⠽⠄⠎" }, { "input": "porpoise", "output": "â â •â —â â •â Šâ Žâ ‘" }, { "input": "porpoise's", "output": "â â •â —â â •â Šâ Žâ ‘â „â Ž" }, { "input": "porpoised", "output": "â â •â —â â •â Šâ Žâ «" }, { "input": "porpoises", "output": "â â •â —â â •â Šâ Žâ ‘â Ž" }, { "input": "porpoising", "output": "â â •â —â â •â Šâ Žâ Œ" }, { "input": "porridge", "output": "â â •⠗⠗⠊⠙⠛⠑" }, { "input": "porridge's", "output": "â â •⠗⠗⠊⠙⠛⠑⠄⠎" }, { "input": "porringer", "output": "â â •⠗⠗⠌⠻" }, { "input": "porringer's", "output": "â â •⠗⠗⠌⠻⠄⠎" }, { "input": "porringers", "output": "â â •⠗⠗⠌⠻⠎" }, { "input": "port", "output": "â â •â —â ž" }, { "input": "port's", "output": "â â •â —â žâ „â Ž" }, { "input": "portability", "output": "â â •â —â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "portability's", "output": "â â •â —â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "portable", "output": "â â •â —â žâ â ¼" }, { "input": "portable's", "output": "â â •â —â žâ â ¼â „â Ž" }, { "input": "portables", "output": "â â •â —â žâ â ¼â Ž" }, { "input": "portage", "output": "â â •â —â žâ â ›â ‘" }, { "input": "portage's", "output": "â â •â —â žâ â ›â ‘â „â Ž" }, { "input": "portaged", "output": "â â •â —â žâ â ›â «" }, { "input": "portages", "output": "â â •â —â žâ â ›â ‘â Ž" }, { "input": "portaging", "output": "â â •â —â žâ â ›â Œ" }, { "input": "portal", "output": "â â •â —â žâ â ‡" }, { "input": "portal's", "output": "â â •â —â žâ â ‡â „â Ž" }, { "input": "portals", "output": "â â •â —â žâ â ‡â Ž" }, { "input": "portcullis", "output": "â â •⠗⠞⠉⠥⠇⠇⠊⠎" }, { "input": "portcullis's", "output": "â â •⠗⠞⠉⠥⠇⠇⠊⠎⠄⠎" }, { "input": "portcullises", "output": "â â •⠗⠞⠉⠥⠇⠇⠊⠎⠑⠎" }, { "input": "ported", "output": "â â •â —â žâ «" }, { "input": "portend", "output": "â â •⠗⠞⠢⠙" }, { "input": "portended", "output": "â â •⠗⠞⠢⠙⠫" }, { "input": "portending", "output": "â â •⠗⠞⠢⠙⠌" }, { "input": "portends", "output": "â â •⠗⠞⠢⠙⠎" }, { "input": "portent", "output": "â â •⠗⠞⠢⠞" }, { "input": "portent's", "output": "â â •⠗⠞⠢⠞⠄⠎" }, { "input": "portentous", "output": "â â •⠗⠞⠢⠞⠳⠎" }, { "input": "portentously", "output": "â â •⠗⠞⠢⠞⠳⠎⠇⠽" }, { "input": "portents", "output": "â â •⠗⠞⠢⠞⠎" }, { "input": "porter", "output": "â â •â —â žâ »" }, { "input": "porter's", "output": "â â •⠗⠞⠻⠄⠎" }, { "input": "porterhouse", "output": "â â •⠗⠞⠻⠓⠳⠎⠑" }, { "input": "porterhouse's", "output": "â â •⠗⠞⠻⠓⠳⠎⠑⠄⠎" }, { "input": "porterhouses", "output": "â â •⠗⠞⠻⠓⠳⠎⠑⠎" }, { "input": "porters", "output": "â â •⠗⠞⠻⠎" }, { "input": "portfolio", "output": "â â •⠗⠞⠋⠕⠇⠊⠕" }, { "input": "portfolio's", "output": "â â •⠗⠞⠋⠕⠇⠊⠕⠄⠎" }, { "input": "portfolios", "output": "â â •⠗⠞⠋⠕⠇⠊⠕⠎" }, { "input": "porthole", "output": "â â •⠗⠞⠓⠕⠇⠑" }, { "input": "porthole's", "output": "â â •⠗⠞⠓⠕⠇⠑⠄⠎" }, { "input": "portholes", "output": "â â •⠗⠞⠓⠕⠇⠑⠎" }, { "input": "portico", "output": "â â •⠗⠞⠊⠉⠕" }, { "input": "portico's", "output": "â â •⠗⠞⠊⠉⠕⠄⠎" }, { "input": "porticoes", "output": "â â •⠗⠞⠊⠉⠕⠑⠎" }, { "input": "porting", "output": "â â •â —â žâ Œ" }, { "input": "portion", "output": "â â •â —â °â " }, { "input": "portion's", "output": "â â •â —â °â â „â Ž" }, { "input": "portioned", "output": "â â •â —â °â â «" }, { "input": "portioning", "output": "â â •â —â °â â Œ" }, { "input": "portions", "output": "â â •â —â °â â Ž" }, { "input": "portlier", "output": "â â •⠗⠞⠇⠊⠻" }, { "input": "portliest", "output": "â â •⠗⠞⠇⠊⠑⠌" }, { "input": "portliness", "output": "â â •⠗⠞⠇⠊⠰⠎" }, { "input": "portliness's", "output": "â â •⠗⠞⠇⠊⠰⠎⠄⠎" }, { "input": "portly", "output": "â â •⠗⠞⠇⠽" }, { "input": "portmanteau", "output": "â â •â —â žâ â â â žâ ‚â ¥" }, { "input": "portmanteau's", "output": "â â •â —â žâ â â â žâ ‚⠥⠄⠎" }, { "input": "portmanteaus", "output": "â â •â —â žâ â â â žâ ‚⠥⠎" }, { "input": "portrait", "output": "â â •â —â žâ —â â Šâ ž" }, { "input": "portrait's", "output": "â â •â —â žâ —â â Šâ žâ „â Ž" }, { "input": "portraitist", "output": "â â •â —â žâ —â â Šâ žâ Šâ Œ" }, { "input": "portraitist's", "output": "â â •â —â žâ —â â Šâ žâ Šâ Œâ „â Ž" }, { "input": "portraitists", "output": "â â •â —â žâ —â â Šâ žâ Šâ Œâ Ž" }, { "input": "portraits", "output": "â â •â —â žâ —â â Šâ žâ Ž" }, { "input": "portraiture", "output": "â â •â —â žâ —â â Šâ žâ ¥â —â ‘" }, { "input": "portraiture's", "output": "â â •â —â žâ —â â Šâ žâ ¥â —â ‘â „â Ž" }, { "input": "portray", "output": "â â •â —â žâ —â â ½" }, { "input": "portrayal", "output": "â â •â —â žâ —â â ½â â ‡" }, { "input": "portrayal's", "output": "â â •â —â žâ —â â ½â â ‡â „â Ž" }, { "input": "portrayals", "output": "â â •â —â žâ —â â ½â â ‡â Ž" }, { "input": "portrayed", "output": "â â •â —â žâ —â â ½â «" }, { "input": "portraying", "output": "â â •â —â žâ —â â ½â Œ" }, { "input": "portrays", "output": "â â •â —â žâ —â â ½â Ž" }, { "input": "ports", "output": "â â •â —â žâ Ž" }, { "input": "portulaca", "output": "â â •⠗⠞⠥⠇â â ‰â " }, { "input": "portulaca's", "output": "â â •⠗⠞⠥⠇â â ‰â â „â Ž" }, { "input": "pose", "output": "â â •â Žâ ‘" }, { "input": "pose's", "output": "â â •â Žâ ‘â „â Ž" }, { "input": "posed", "output": "â â •â Žâ «" }, { "input": "poser", "output": "â â •â Žâ »" }, { "input": "poser's", "output": "â â •⠎⠻⠄⠎" }, { "input": "posers", "output": "â â •⠎⠻⠎" }, { "input": "poses", "output": "â â •â Žâ ‘â Ž" }, { "input": "poseur", "output": "â â •⠎⠑⠥⠗" }, { "input": "poseur's", "output": "â â •⠎⠑⠥⠗⠄⠎" }, { "input": "poseurs", "output": "â â •⠎⠑⠥⠗⠎" }, { "input": "posh", "output": "â â •â ©" }, { "input": "posher", "output": "â â •â ©â »" }, { "input": "poshest", "output": "â â •â ©â ‘â Œ" }, { "input": "posies", "output": "â â •â Žâ Šâ ‘â Ž" }, { "input": "posing", "output": "â â •â Žâ Œ" }, { "input": "posit", "output": "â â •â Žâ Šâ ž" }, { "input": "posited", "output": "â â •â Žâ Šâ žâ «" }, { "input": "positing", "output": "â â •â Žâ Šâ žâ Œ" }, { "input": "position", "output": "â â •â Žâ Šâ °â " }, { "input": "position's", "output": "â â •â Žâ Šâ °â â „â Ž" }, { "input": "positional", "output": "â â •â Žâ Šâ °â â â ‡" }, { "input": "positioned", "output": "â â •â Žâ Šâ °â â «" }, { "input": "positioning", "output": "â â •â Žâ Šâ °â â Œ" }, { "input": "positions", "output": "â â •â Žâ Šâ °â â Ž" }, { "input": "positive", "output": "â â •â Žâ Šâ žâ Šâ §â ‘" }, { "input": "positive's", "output": "â â •â Žâ Šâ žâ Šâ §â ‘â „â Ž" }, { "input": "positively", "output": "â â •⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "positiveness's", "output": "â â •â Žâ Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "positives", "output": "â â •â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "positivism", "output": "â â •â Žâ Šâ žâ Šâ §â Šâ Žâ " }, { "input": "positron", "output": "â â •â Žâ Šâ žâ —â •â " }, { "input": "positron's", "output": "â â •â Žâ Šâ žâ —â •â â „â Ž" }, { "input": "positrons", "output": "â â •â Žâ Šâ žâ —â •â â Ž" }, { "input": "posits", "output": "â â •â Žâ Šâ žâ Ž" }, { "input": "posse", "output": "â â •â Žâ Žâ ‘" }, { "input": "posse's", "output": "â â •â Žâ Žâ ‘â „â Ž" }, { "input": "posses", "output": "â â •â Žâ Žâ ‘â Ž" }, { "input": "possess", "output": "â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "possessed", "output": "â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "possesses", "output": "â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "possessing", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Œ" }, { "input": "possession", "output": "â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "possession's", "output": "â â •â Žâ Žâ ‘â Žâ ¨â â „â Ž" }, { "input": "possessions", "output": "â â •â Žâ Žâ ‘â Žâ ¨â â Ž" }, { "input": "possessive", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘" }, { "input": "possessive's", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘â „â Ž" }, { "input": "possessively", "output": "â â •⠎⠎⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "possessiveness", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘â °â Ž" }, { "input": "possessiveness's", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "possessives", "output": "â â •â Žâ Žâ ‘â Žâ Žâ Šâ §â ‘â Ž" }, { "input": "possessor", "output": "â â •â Žâ Žâ ‘â Žâ Žâ •â —" }, { "input": "possessor's", "output": "â â •â Žâ Žâ ‘â Žâ Žâ •â —â „â Ž" }, { "input": "possessors", "output": "â â •â Žâ Žâ ‘â Žâ Žâ •â —â Ž" }, { "input": "possibilities", "output": "â â •⠎⠎⠊⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "possibility", "output": "â â •⠎⠎⠊⠃⠊⠇⠰⠽" }, { "input": "possibility's", "output": "â â •⠎⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "possible", "output": "â â •â Žâ Žâ Šâ ¼" }, { "input": "possible's", "output": "â â •⠎⠎⠊⠼⠄⠎" }, { "input": "possibles", "output": "â â •⠎⠎⠊⠼⠎" }, { "input": "possibly", "output": "â â •⠎⠎⠊⠃⠇⠽" }, { "input": "possum", "output": "â â •â Žâ Žâ ¥â " }, { "input": "possum's", "output": "â â •â Žâ Žâ ¥â â „â Ž" }, { "input": "possums", "output": "â â •â Žâ Žâ ¥â â Ž" }, { "input": "post", "output": "â â •â Œ" }, { "input": "post's", "output": "â â •⠌⠄⠎" }, { "input": "postage", "output": "â â •â Œâ â ›â ‘" }, { "input": "postage's", "output": "â â •â Œâ â ›â ‘â „â Ž" }, { "input": "postal", "output": "â â •â Œâ â ‡" }, { "input": "postbox", "output": "â â •⠌⠃⠕⠭" }, { "input": "postcard", "output": "â â •⠌⠉⠜⠙" }, { "input": "postcard's", "output": "â â •⠌⠉⠜⠙⠄⠎" }, { "input": "postcards", "output": "â â •⠌⠉⠜⠙⠎" }, { "input": "postcode", "output": "â â •⠌⠉⠕⠙⠑" }, { "input": "postcodes", "output": "â â •⠌⠉⠕⠙⠑⠎" }, { "input": "postconsonantal", "output": "â â •⠌⠉⠕â â Žâ •â â â â žâ â ‡" }, { "input": "postdate", "output": "â â •⠌⠙â â žâ ‘" }, { "input": "postdated", "output": "â â •⠌⠙â â žâ «" }, { "input": "postdates", "output": "â â •⠌⠙â â žâ ‘â Ž" }, { "input": "postdating", "output": "â â •⠌⠙â â žâ Œ" }, { "input": "postdoc", "output": "â â •⠌⠙⠕⠉" }, { "input": "postdoctoral", "output": "â â •⠌⠙⠕⠉⠞⠕⠗â â ‡" }, { "input": "posted", "output": "â â •⠌⠫" }, { "input": "poster", "output": "â â •⠌⠻" }, { "input": "poster's", "output": "â â •⠌⠻⠄⠎" }, { "input": "posterior", "output": "â â •⠌⠻⠊⠕⠗" }, { "input": "posterior's", "output": "â â •⠌⠻⠊⠕⠗⠄⠎" }, { "input": "posteriors", "output": "â â •⠌⠻⠊⠕⠗⠎" }, { "input": "posterity", "output": "â â •⠌⠻⠰⠽" }, { "input": "posterity's", "output": "â â •⠌⠻⠰⠽⠄⠎" }, { "input": "posters", "output": "â â •⠌⠻⠎" }, { "input": "postgraduate", "output": "â â •⠌⠛⠗â â ™â ¥â â žâ ‘" }, { "input": "postgraduate's", "output": "â â •⠌⠛⠗â â ™â ¥â â žâ ‘â „â Ž" }, { "input": "postgraduates", "output": "â â •⠌⠛⠗â â ™â ¥â â žâ ‘â Ž" }, { "input": "posthaste", "output": "â â •⠌⠓â â Œâ ‘" }, { "input": "posthumous", "output": "â â •⠌⠓⠥â â ³â Ž" }, { "input": "posthumously", "output": "â â •⠌⠓⠥â â ³â Žâ ‡â ½" }, { "input": "posthypnotic", "output": "â â •⠌⠓⠽â â â •â žâ Šâ ‰" }, { "input": "postilion", "output": "â â •⠌⠊⠇⠊⠕â " }, { "input": "postilion's", "output": "â â •⠌⠊⠇⠊⠕â â „â Ž" }, { "input": "postilions", "output": "â â •⠌⠊⠇⠊⠕â â Ž" }, { "input": "posting", "output": "â â •⠌⠌" }, { "input": "postlude", "output": "â â •⠌⠇⠥⠙⠑" }, { "input": "postlude's", "output": "â â •⠌⠇⠥⠙⠑⠄⠎" }, { "input": "postludes", "output": "â â •⠌⠇⠥⠙⠑⠎" }, { "input": "postman", "output": "â â •â Œâ â â " }, { "input": "postman's", "output": "â â •â Œâ â â â „â Ž" }, { "input": "postmark", "output": "â â •â Œâ â œâ …" }, { "input": "postmark's", "output": "â â •â Œâ â œâ …â „â Ž" }, { "input": "postmarked", "output": "â â •â Œâ â œâ …â «" }, { "input": "postmarking", "output": "â â •â Œâ â œâ …â Œ" }, { "input": "postmarks", "output": "â â •â Œâ â œâ …â Ž" }, { "input": "postmaster", "output": "â â •â Œâ â â Œâ »" }, { "input": "postmaster's", "output": "â â •â Œâ â â Œâ »â „â Ž" }, { "input": "postmasters", "output": "â â •â Œâ â â Œâ »â Ž" }, { "input": "postmen", "output": "â â •â Œâ â ¢" }, { "input": "postmenopausal", "output": "â â •â Œâ â ¢â •â â â ¥â Žâ â ‡" }, { "input": "postmeridian", "output": "â â •â Œâ â »â Šâ ™â Šâ â " }, { "input": "postmistress", "output": "â â •â Œâ â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "postmistress's", "output": "â â •â Œâ â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "postmistresses", "output": "â â •â Œâ â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "postmodern", "output": "â â •â Œâ â •⠙⠻â " }, { "input": "postmodernism's", "output": "â â •â Œâ â •⠙⠻â â Šâ Žâ â „â Ž" }, { "input": "postmortem", "output": "â â •â Œâ â •â —â žâ ‘â " }, { "input": "postmortem's", "output": "â â •â Œâ â •â —â žâ ‘â â „â Ž" }, { "input": "postmortems", "output": "â â •â Œâ â •â —â žâ ‘â â Ž" }, { "input": "postnasal", "output": "â â •â Œâ â â Žâ â ‡" }, { "input": "postnatal", "output": "â â •â Œâ â â žâ â ‡" }, { "input": "postoperative", "output": "â â •⠌⠕â â »â â žâ Šâ §â ‘" }, { "input": "postpaid", "output": "â â •â Œâ â ™" }, { "input": "postpartum", "output": "â â •â Œâ â â ¥â " }, { "input": "postpone", "output": "â â •â Œâ â â •" }, { "input": "postponed", "output": "â â •â Œâ â •â â «" }, { "input": "postponement", "output": "â â •â Œâ â â •â °â ž" }, { "input": "postponement's", "output": "â â •â Œâ â â •â °â žâ „â Ž" }, { "input": "postponements", "output": "â â •â Œâ â â •â °â žâ Ž" }, { "input": "postpones", "output": "â â •â Œâ â â •â Ž" }, { "input": "postponing", "output": "â â •â Œâ â •â â Œ" }, { "input": "posts", "output": "â â •⠌⠎" }, { "input": "postscript", "output": "â â •⠌⠎⠉⠗⠊â â ž" }, { "input": "postscript's", "output": "â â •⠌⠎⠉⠗⠊â â žâ „â Ž" }, { "input": "postscripts", "output": "â â •⠌⠎⠉⠗⠊â â žâ Ž" }, { "input": "postseason's", "output": "â â •⠌⠎⠂⠎⠕â â „â Ž" }, { "input": "postseasons", "output": "â â •⠌⠎⠂⠎⠕â â Ž" }, { "input": "postulate", "output": "â â •⠌⠥⠇â â žâ ‘" }, { "input": "postulate's", "output": "â â •⠌⠥⠇â â žâ ‘â „â Ž" }, { "input": "postulated", "output": "â â •⠌⠥⠇â â žâ «" }, { "input": "postulates", "output": "â â •⠌⠥⠇â â žâ ‘â Ž" }, { "input": "postulating", "output": "â â •⠌⠥⠇â â žâ Œ" }, { "input": "postulation", "output": "â â •⠌⠥⠇⠠â " }, { "input": "postulation's", "output": "â â •⠌⠥⠇⠠â â „â Ž" }, { "input": "postulations", "output": "â â •⠌⠥⠇⠠â â Ž" }, { "input": "posture", "output": "â â •⠌⠥⠗⠑" }, { "input": "posture's", "output": "â â •⠌⠥⠗⠑⠄⠎" }, { "input": "postured", "output": "â â •⠌⠥⠗⠫" }, { "input": "postures", "output": "â â •⠌⠥⠗⠑⠎" }, { "input": "posturing", "output": "â â •⠌⠥⠗⠌" }, { "input": "posturing's", "output": "â â •⠌⠥⠗⠌⠄⠎" }, { "input": "posturings", "output": "â â •⠌⠥⠗⠌⠎" }, { "input": "postwar", "output": "â â •⠌⠺⠜" }, { "input": "posy", "output": "â â •â Žâ ½" }, { "input": "posy's", "output": "â â •⠎⠽⠄⠎" }, { "input": "pot", "output": "â â •â ž" }, { "input": "pot's", "output": "â â •â žâ „â Ž" }, { "input": "potability", "output": "â â •â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "potability's", "output": "â â •â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "potable", "output": "â â •â žâ â ¼" }, { "input": "potable's", "output": "â â •â žâ â ¼â „â Ž" }, { "input": "potables", "output": "â â •â žâ â ¼â Ž" }, { "input": "potash", "output": "â â •â žâ â ©" }, { "input": "potash's", "output": "â â •â žâ â ©â „â Ž" }, { "input": "potassium", "output": "â â •â žâ â Žâ Žâ Šâ ¥â " }, { "input": "potassium's", "output": "â â •â žâ â Žâ Žâ Šâ ¥â â „â Ž" }, { "input": "potato", "output": "â â •â žâ â žâ •" }, { "input": "potato's", "output": "â â •â žâ â žâ •â „â Ž" }, { "input": "potatoes", "output": "â â •â žâ â žâ •â ‘â Ž" }, { "input": "potbellied", "output": "â â •⠞⠃⠑⠇⠇⠊⠫" }, { "input": "potbellies", "output": "â â •⠞⠃⠑⠇⠇⠊⠑⠎" }, { "input": "potbelly", "output": "â â •⠞⠃⠑⠇⠇⠽" }, { "input": "potbelly's", "output": "â â •⠞⠃⠑⠇⠇⠽⠄⠎" }, { "input": "potboiler", "output": "â â •⠞⠃⠕⠊⠇⠻" }, { "input": "potboiler's", "output": "â â •⠞⠃⠕⠊⠇⠻⠄⠎" }, { "input": "potboilers", "output": "â â •⠞⠃⠕⠊⠇⠻⠎" }, { "input": "potency", "output": "â â •⠞⠢⠉⠽" }, { "input": "potency's", "output": "â â •⠞⠢⠉⠽⠄⠎" }, { "input": "potent", "output": "â â •⠞⠢⠞" }, { "input": "potentate", "output": "â â •⠞⠢⠞â â žâ ‘" }, { "input": "potentate's", "output": "â â •⠞⠢⠞â â žâ ‘â „â Ž" }, { "input": "potentates", "output": "â â •⠞⠢⠞â â žâ ‘â Ž" }, { "input": "potential", "output": "â â •⠞⠢⠞⠊â â ‡" }, { "input": "potential's", "output": "â â •⠞⠢⠞⠊â â ‡â „â Ž" }, { "input": "potentialities", "output": "â â •⠞⠢⠞⠊â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "potentiality", "output": "â â •⠞⠢⠞⠊â â ‡â °â ½" }, { "input": "potentiality's", "output": "â â •⠞⠢⠞⠊â â ‡â °â ½â „â Ž" }, { "input": "potentially", "output": "â â •⠞⠢⠞⠊⠠⠽" }, { "input": "potentials", "output": "â â •⠞⠢⠞⠊â â ‡â Ž" }, { "input": "potful", "output": "â â •â žâ °â ‡" }, { "input": "potful's", "output": "â â •⠞⠰⠇⠄⠎" }, { "input": "potfuls", "output": "â â •⠞⠰⠇⠎" }, { "input": "pother", "output": "â â •⠮⠗" }, { "input": "pother's", "output": "â â •⠮⠗⠄⠎" }, { "input": "potherb", "output": "â â •⠞⠓⠻⠃" }, { "input": "potherb's", "output": "â â •⠞⠓⠻⠃⠄⠎" }, { "input": "potherbs", "output": "â â •⠞⠓⠻⠃⠎" }, { "input": "pothered", "output": "â â •⠮⠗⠫" }, { "input": "pothering", "output": "â â •⠮⠗⠌" }, { "input": "pothers", "output": "â â •⠮⠗⠎" }, { "input": "potholder", "output": "â â •⠞⠓⠕⠇⠙⠻" }, { "input": "potholder's", "output": "â â •⠞⠓⠕⠇⠙⠻⠄⠎" }, { "input": "potholders", "output": "â â •⠞⠓⠕⠇⠙⠻⠎" }, { "input": "pothole", "output": "â â •⠞⠓⠕⠇⠑" }, { "input": "pothole's", "output": "â â •⠞⠓⠕⠇⠑⠄⠎" }, { "input": "potholes", "output": "â â •⠞⠓⠕⠇⠑⠎" }, { "input": "pothook", "output": "â â •â žâ “â •â •â …" }, { "input": "pothook's", "output": "â â •â žâ “â •â •â …â „â Ž" }, { "input": "pothooks", "output": "â â •â žâ “â •â •â …â Ž" }, { "input": "potion", "output": "â â •â °â " }, { "input": "potion's", "output": "â â •â °â â „â Ž" }, { "input": "potions", "output": "â â •â °â â Ž" }, { "input": "potluck", "output": "â â •⠞⠇⠥⠉⠅" }, { "input": "potluck's", "output": "â â •⠞⠇⠥⠉⠅⠄⠎" }, { "input": "potlucks", "output": "â â •⠞⠇⠥⠉⠅⠎" }, { "input": "potpie", "output": "â â •â žâ â Šâ ‘" }, { "input": "potpie's", "output": "â â •â žâ â Šâ ‘â „â Ž" }, { "input": "potpies", "output": "â â •â žâ â Šâ ‘â Ž" }, { "input": "potpourri", "output": "â â •â žâ â ³â —â —â Š" }, { "input": "potpourri's", "output": "â â •â žâ â ³â —â —â Šâ „â Ž" }, { "input": "potpourris", "output": "â â •â žâ â ³â —â —â Šâ Ž" }, { "input": "pots", "output": "â â •â žâ Ž" }, { "input": "potsherd", "output": "â â •⠞⠩⠻⠙" }, { "input": "potsherd's", "output": "â â •⠞⠩⠻⠙⠄⠎" }, { "input": "potsherds", "output": "â â •⠞⠩⠻⠙⠎" }, { "input": "potshot", "output": "â â •â žâ ©â •â ž" }, { "input": "potshot's", "output": "â â •â žâ ©â •â žâ „â Ž" }, { "input": "potshots", "output": "â â •â žâ ©â •â žâ Ž" }, { "input": "pottage", "output": "â â •â žâ žâ â ›â ‘" }, { "input": "pottage's", "output": "â â •â žâ žâ â ›â ‘â „â Ž" }, { "input": "potted", "output": "â â •â žâ žâ «" }, { "input": "potter", "output": "â â •â žâ žâ »" }, { "input": "potter's", "output": "â â •⠞⠞⠻⠄⠎" }, { "input": "pottered", "output": "â â •⠞⠞⠻⠫" }, { "input": "potteries", "output": "â â •⠞⠞⠻⠊⠑⠎" }, { "input": "pottering", "output": "â â •⠞⠞⠻⠌" }, { "input": "potters", "output": "â â •⠞⠞⠻⠎" }, { "input": "pottery", "output": "â â •⠞⠞⠻⠽" }, { "input": "pottery's", "output": "â â •⠞⠞⠻⠽⠄⠎" }, { "input": "pottier", "output": "â â •â žâ žâ Šâ »" }, { "input": "potties", "output": "â â •â žâ žâ Šâ ‘â Ž" }, { "input": "pottiest", "output": "â â •â žâ žâ Šâ ‘â Œ" }, { "input": "potting", "output": "â â •â žâ žâ Œ" }, { "input": "potty", "output": "â â •â žâ žâ ½" }, { "input": "potty's", "output": "â â •⠞⠞⠽⠄⠎" }, { "input": "pouch", "output": "â â ³â ¡" }, { "input": "pouch's", "output": "â â ³â ¡â „â Ž" }, { "input": "pouched", "output": "â â ³â ¡â «" }, { "input": "pouches", "output": "â â ³â ¡â ‘â Ž" }, { "input": "pouching", "output": "â â ³â ¡â Œ" }, { "input": "poulterer", "output": "â â ³â ‡â žâ »â »" }, { "input": "poulterer's", "output": "â â ³â ‡â žâ »â »â „â Ž" }, { "input": "poulterers", "output": "â â ³â ‡â žâ »â »â Ž" }, { "input": "poultice", "output": "â â ³â ‡â žâ Šâ ‰â ‘" }, { "input": "poultice's", "output": "â â ³â ‡â žâ Šâ ‰â ‘â „â Ž" }, { "input": "poulticed", "output": "â â ³â ‡â žâ Šâ ‰â «" }, { "input": "poultices", "output": "â â ³â ‡â žâ Šâ ‰â ‘â Ž" }, { "input": "poulticing", "output": "â â ³â ‡â žâ Šâ ‰â Œ" }, { "input": "poultry", "output": "â â ³â ‡â žâ —â ½" }, { "input": "poultry's", "output": "â â ³â ‡â žâ —⠽⠄⠎" }, { "input": "pounce", "output": "â â ³â â ‰â ‘" }, { "input": "pounce's", "output": "â â ³â â ‰â ‘â „â Ž" }, { "input": "pounced", "output": "â â ³â â ‰â «" }, { "input": "pounces", "output": "â â ³â â ‰â ‘â Ž" }, { "input": "pouncing", "output": "â â ³â â ‰â Œ" }, { "input": "pound", "output": "â â ¨â ™" }, { "input": "pound's", "output": "â â ¨â ™â „â Ž" }, { "input": "poundage's", "output": "â â ¨â ™â â ›â ‘â „â Ž" }, { "input": "pounded", "output": "â â ¨â ™â «" }, { "input": "pounding", "output": "â â ¨â ™â Œ" }, { "input": "pounds", "output": "â â ¨â ™â Ž" }, { "input": "pour", "output": "â â ³â —" }, { "input": "poured", "output": "â â ³â —â «" }, { "input": "pouring", "output": "â â ³â —â Œ" }, { "input": "pourings", "output": "â â ³â —⠌⠎" }, { "input": "pours", "output": "â â ³â —â Ž" }, { "input": "pout", "output": "â â ³â ž" }, { "input": "pout's", "output": "â â ³â žâ „â Ž" }, { "input": "pouted", "output": "â â ³â žâ «" }, { "input": "pouter", "output": "â â ³â žâ »" }, { "input": "pouter's", "output": "â â ³â žâ »â „â Ž" }, { "input": "pouters", "output": "â â ³â žâ »â Ž" }, { "input": "pouting", "output": "â â ³â žâ Œ" }, { "input": "pouts", "output": "â â ³â žâ Ž" }, { "input": "poverty", "output": "â â •⠧⠻⠞⠽" }, { "input": "poverty's", "output": "â â •⠧⠻⠞⠽⠄⠎" }, { "input": "powder", "output": "â â ªâ ™â »" }, { "input": "powder's", "output": "â â ªâ ™â »â „â Ž" }, { "input": "powdered", "output": "â â ªâ ™â »â «" }, { "input": "powdering", "output": "â â ªâ ™â »â Œ" }, { "input": "powders", "output": "â â ªâ ™â »â Ž" }, { "input": "powdery", "output": "â â ªâ ™â »â ½" }, { "input": "power", "output": "â â ªâ »" }, { "input": "power's", "output": "â â ªâ »â „â Ž" }, { "input": "powerboat", "output": "â â ªâ »â ƒâ •â â ž" }, { "input": "powerboat's", "output": "â â ªâ »â ƒâ •â â žâ „â Ž" }, { "input": "powerboats", "output": "â â ªâ »â ƒâ •â â žâ Ž" }, { "input": "powered", "output": "â â ªâ »â «" }, { "input": "powerful", "output": "â â ªâ »â °â ‡" }, { "input": "powerfully", "output": "â â ªâ »â °â ‡â ‡â ½" }, { "input": "powerhouse", "output": "â â ªâ »â “⠳⠎⠑" }, { "input": "powerhouse's", "output": "â â ªâ »â “⠳⠎⠑⠄⠎" }, { "input": "powerhouses", "output": "â â ªâ »â “⠳⠎⠑⠎" }, { "input": "powering", "output": "â â ªâ »â Œ" }, { "input": "powerless", "output": "â â ªâ »â ¨â Ž" }, { "input": "powerlessly", "output": "â â ªâ »â ¨â Žâ ‡â ½" }, { "input": "powerlessness", "output": "â â ªâ »â ¨â Žâ °â Ž" }, { "input": "powerlessness's", "output": "â â ªâ »â ¨â Žâ °â Žâ „â Ž" }, { "input": "powers", "output": "â â ªâ »â Ž" }, { "input": "powwow", "output": "â â ªâ ºâ ª" }, { "input": "powwow's", "output": "â â ªâ ºâ ªâ „â Ž" }, { "input": "powwowed", "output": "â â ªâ ºâ ªâ «" }, { "input": "powwowing", "output": "â â ªâ ºâ ªâ Œ" }, { "input": "powwows", "output": "â â ªâ ºâ ªâ Ž" }, { "input": "pox", "output": "â â •â ­" }, { "input": "pox's", "output": "â â •â ­â „â Ž" }, { "input": "poxes", "output": "â â •â ­â ‘â Ž" }, { "input": "ppm", "output": "â â â " }, { "input": "practicability", "output": "â â —â â ‰â žâ Šâ ‰â â ƒâ Šâ ‡â °â ½" }, { "input": "practicability's", "output": "â â —â â ‰â žâ Šâ ‰â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "practicable", "output": "â â —â â ‰â žâ Šâ ‰â â ¼" }, { "input": "practicably", "output": "â â —â â ‰â žâ Šâ ‰â â ƒâ ‡â ½" }, { "input": "practical", "output": "â â —â â ‰â žâ Šâ ‰â â ‡" }, { "input": "practical's", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â „â Ž" }, { "input": "practicalities", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "practicality", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â °â ½" }, { "input": "practicality's", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "practically", "output": "â â —â â ‰â žâ Šâ ‰â  â ½" }, { "input": "practicals", "output": "â â —â â ‰â žâ Šâ ‰â â ‡â Ž" }, { "input": "practice", "output": "â â —â â ‰â žâ Šâ ‰â ‘" }, { "input": "practice's", "output": "â â —â â ‰â žâ Šâ ‰â ‘â „â Ž" }, { "input": "practiced", "output": "â â —â â ‰â žâ Šâ ‰â «" }, { "input": "practices", "output": "â â —â â ‰â žâ Šâ ‰â ‘â Ž" }, { "input": "practicing", "output": "â â —â â ‰â žâ Šâ ‰â Œ" }, { "input": "practicum", "output": "â â —â â ‰â žâ Šâ ‰â ¥â " }, { "input": "practicum's", "output": "â â —â â ‰â žâ Šâ ‰â ¥â â „â Ž" }, { "input": "practicums", "output": "â â —â â ‰â žâ Šâ ‰â ¥â â Ž" }, { "input": "practitioner", "output": "â â —â â ‰â žâ Šâ °â â »" }, { "input": "practitioner's", "output": "â â —â â ‰â žâ Šâ °â â »â „â Ž" }, { "input": "practitioners", "output": "â â —â â ‰â žâ Šâ °â â »â Ž" }, { "input": "praetor", "output": "â â —â â ‘â žâ •â —" }, { "input": "praetor's", "output": "â â —â â ‘â žâ •â —â „â Ž" }, { "input": "praetorian", "output": "â â —â â ‘â žâ •â —â Šâ â " }, { "input": "praetors", "output": "â â —â â ‘â žâ •â —â Ž" }, { "input": "pragmatic", "output": "â â —â â ›â â â žâ Šâ ‰" }, { "input": "pragmatic's", "output": "â â —â â ›â â â žâ Šâ ‰â „â Ž" }, { "input": "pragmatical", "output": "â â —â â ›â â â žâ Šâ ‰â â ‡" }, { "input": "pragmatically", "output": "â â —â â ›â â â žâ Šâ ‰â  â ½" }, { "input": "pragmatics", "output": "â â —â â ›â â â žâ Šâ ‰â Ž" }, { "input": "pragmatism", "output": "â â —â â ›â â â žâ Šâ Žâ " }, { "input": "pragmatism's", "output": "â â —â â ›â â â žâ Šâ Žâ â „â Ž" }, { "input": "pragmatist", "output": "â â —â â ›â â â žâ Šâ Œ" }, { "input": "pragmatist's", "output": "â â —â â ›â â â žâ Šâ Œâ „â Ž" }, { "input": "pragmatists", "output": "â â —â â ›â â â žâ Šâ Œâ Ž" }, { "input": "prairie", "output": "â â —â â Šâ —â Šâ ‘" }, { "input": "prairie's", "output": "â â —â â Šâ —â Šâ ‘â „â Ž" }, { "input": "prairies", "output": "â â —â â Šâ —â Šâ ‘â Ž" }, { "input": "praise", "output": "â â —â â Šâ Žâ ‘" }, { "input": "praise's", "output": "â â —â â Šâ Žâ ‘â „â Ž" }, { "input": "praised", "output": "â â —â â Šâ Žâ «" }, { "input": "praises", "output": "â â —â â Šâ Žâ ‘â Ž" }, { "input": "praiseworthiness", "output": "â â —â â Šâ Žâ ‘⠺⠕⠗⠹⠊⠰⠎" }, { "input": "praiseworthiness's", "output": "â â —â â Šâ Žâ ‘⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "praiseworthy", "output": "â â —â â Šâ Žâ ‘⠺⠕⠗⠹⠽" }, { "input": "praising", "output": "â â —â â Šâ Žâ Œ" }, { "input": "praline", "output": "â â —â â ‡â ”â ‘" }, { "input": "praline's", "output": "â â —â â ‡â ”â ‘â „â Ž" }, { "input": "pralines", "output": "â â —â â ‡â ”â ‘â Ž" }, { "input": "pram", "output": "â â —â â " }, { "input": "prance", "output": "â â —⠨⠑" }, { "input": "prance's", "output": "â â —⠨⠑⠄⠎" }, { "input": "pranced", "output": "â â —⠨⠑⠙" }, { "input": "prancer", "output": "â â —⠨⠑⠗" }, { "input": "prancer's", "output": "â â —⠨⠑⠗⠄⠎" }, { "input": "prancers", "output": "â â —⠨⠑⠗⠎" }, { "input": "prances", "output": "â â —⠨⠑⠎" }, { "input": "prancing", "output": "â â —â â â ‰â Œ" }, { "input": "prancingly", "output": "â â —â â â ‰â Œâ ‡â ½" }, { "input": "prank", "output": "â â —â â â …" }, { "input": "prank's", "output": "â â —â â â …â „â Ž" }, { "input": "pranks", "output": "â â —â â â …â Ž" }, { "input": "prankster", "output": "â â —â â â …⠌⠻" }, { "input": "prankster's", "output": "â â —â â â …⠌⠻⠄⠎" }, { "input": "pranksters", "output": "â â —â â â …⠌⠻⠎" }, { "input": "praseodymium", "output": "â â —â â Žâ ‘⠕⠙⠽â â Šâ ¥â " }, { "input": "praseodymium's", "output": "â â —â â Žâ ‘⠕⠙⠽â â Šâ ¥â â „â Ž" }, { "input": "prate", "output": "â â —â â žâ ‘" }, { "input": "prate's", "output": "â â —â â žâ ‘â „â Ž" }, { "input": "prated", "output": "â â —â â žâ «" }, { "input": "prater", "output": "â â —â â žâ »" }, { "input": "prater's", "output": "â â —â â žâ »â „â Ž" }, { "input": "praters", "output": "â â —â â žâ »â Ž" }, { "input": "prates", "output": "â â —â â žâ ‘â Ž" }, { "input": "pratfall", "output": "â â —â â žâ ‹â â ‡â ‡" }, { "input": "pratfall's", "output": "â â —â â žâ ‹â â ‡â ‡â „â Ž" }, { "input": "pratfalls", "output": "â â —â â žâ ‹â â ‡â ‡â Ž" }, { "input": "prating", "output": "â â —â â žâ Œ" }, { "input": "prattle", "output": "â â —â â žâ žâ ‡â ‘" }, { "input": "prattle's", "output": "â â —â â žâ žâ ‡â ‘â „â Ž" }, { "input": "prattled", "output": "â â —â â žâ žâ ‡â «" }, { "input": "prattles", "output": "â â —â â žâ žâ ‡â ‘â Ž" }, { "input": "prattling", "output": "â â —â â žâ žâ ‡â Œ" }, { "input": "prawn", "output": "â â —â â ºâ " }, { "input": "prawn's", "output": "â â —â â ºâ â „â Ž" }, { "input": "prawned", "output": "â â —â â ºâ â «" }, { "input": "prawning", "output": "â â —â â ºâ â Œ" }, { "input": "prawns", "output": "â â —â â ºâ â Ž" }, { "input": "pray", "output": "â â —â â ½" }, { "input": "prayed", "output": "â â —â â ½â «" }, { "input": "prayer", "output": "â â —â â ½â »" }, { "input": "prayer's", "output": "â â —â â ½â »â „â Ž" }, { "input": "prayerful", "output": "â â —â â ½â »â °â ‡" }, { "input": "prayerfully", "output": "â â —â â ½â »â °â ‡â ‡â ½" }, { "input": "prayers", "output": "â â —â â ½â »â Ž" }, { "input": "praying", "output": "â â —â â ½â Œ" }, { "input": "prays", "output": "â â —â â ½â Ž" }, { "input": "preach", "output": "â â —â ‚â ¡" }, { "input": "preached", "output": "â â —â ‚â ¡â «" }, { "input": "preacher", "output": "â â —â ‚â ¡â »" }, { "input": "preacher's", "output": "â â —⠂⠡⠻⠄⠎" }, { "input": "preachers", "output": "â â —⠂⠡⠻⠎" }, { "input": "preaches", "output": "â â —â ‚â ¡â ‘â Ž" }, { "input": "preachier", "output": "â â —â ‚â ¡â Šâ »" }, { "input": "preachiest", "output": "â â —â ‚â ¡â Šâ ‘â Œ" }, { "input": "preaching", "output": "â â —â ‚â ¡â Œ" }, { "input": "preachment", "output": "â â —â ‚â ¡â °â ž" }, { "input": "preachment's", "output": "â â —â ‚â ¡â °â žâ „â Ž" }, { "input": "preachy", "output": "â â —â ‚â ¡â ½" }, { "input": "preadolescence", "output": "â â —â ‘â â ™â •⠇⠑⠎⠉⠰⠑" }, { "input": "preadolescence's", "output": "â â —â ‘â â ™â •⠇⠑⠎⠉⠰⠑⠄⠎" }, { "input": "preadolescences", "output": "â â —â ‘â â ™â •⠇⠑⠎⠉⠰⠑⠎" }, { "input": "preamble", "output": "â â —â ‘â â â ¼" }, { "input": "preamble's", "output": "â â —â ‘â â â ¼â „â Ž" }, { "input": "preambled", "output": "â â —â ‘â â â ¼â ™" }, { "input": "preambles", "output": "â â —â ‘â â â ¼â Ž" }, { "input": "preambling", "output": "â â —â ‘â â â ƒâ ‡â Œ" }, { "input": "prearrange", "output": "â â —⠑⠜⠗â â â ›â ‘" }, { "input": "prearranged", "output": "â â —⠑⠜⠗â â â ›â «" }, { "input": "prearrangement", "output": "â â —⠑⠜⠗â â â ›â ‘â °â ž" }, { "input": "prearrangement's", "output": "â â —⠑⠜⠗â â â ›â ‘â °â žâ „â Ž" }, { "input": "prearranges", "output": "â â —⠑⠜⠗â â â ›â ‘â Ž" }, { "input": "prearranging", "output": "â â —⠑⠜⠗â â â ›â Œ" }, { "input": "preassigned", "output": "â â —â ‘â â Žâ Žâ Šâ ›â â «" }, { "input": "precancel", "output": "â â —⠑⠉⠨⠑⠇" }, { "input": "precancel's", "output": "â â —⠑⠉⠨⠑⠇⠄⠎" }, { "input": "precanceled", "output": "â â —⠑⠉⠨⠑⠇⠫" }, { "input": "precanceling", "output": "â â —⠑⠉⠨⠑⠇⠌" }, { "input": "precancels", "output": "â â —⠑⠉⠨⠑⠇⠎" }, { "input": "precancerous", "output": "â â —⠑⠉⠨⠑⠗⠳⠎" }, { "input": "precarious", "output": "â â —⠑⠉⠜⠊⠳⠎" }, { "input": "precariously", "output": "â â —⠑⠉⠜⠊⠳⠎⠇⠽" }, { "input": "precariousness's", "output": "â â —⠑⠉⠜⠊⠳⠎⠰⠎⠄⠎" }, { "input": "precaution", "output": "â â —â ‘â ‰â â ¥â °â " }, { "input": "precaution's", "output": "â â —â ‘â ‰â â ¥â °â â „â Ž" }, { "input": "precautionary", "output": "â â —â ‘â ‰â â ¥â °â â œâ ½" }, { "input": "precautions", "output": "â â —â ‘â ‰â â ¥â °â â Ž" }, { "input": "precede", "output": "â â —⠑⠉⠫⠑" }, { "input": "preceded", "output": "â â —⠑⠉⠫⠫" }, { "input": "precedence", "output": "â â —⠑⠉⠫⠰⠑" }, { "input": "precedence's", "output": "â â —⠑⠉⠫⠰⠑⠄⠎" }, { "input": "precedent", "output": "â â —⠑⠉⠫⠢⠞" }, { "input": "precedent's", "output": "â â —⠑⠉⠫⠢⠞⠄⠎" }, { "input": "precedents", "output": "â â —⠑⠉⠫⠢⠞⠎" }, { "input": "precedes", "output": "â â —⠑⠉⠫⠑⠎" }, { "input": "preceding", "output": "â â —⠑⠉⠫⠌" }, { "input": "precept", "output": "â â —⠑⠉⠑â â ž" }, { "input": "precept's", "output": "â â —⠑⠉⠑â â žâ „â Ž" }, { "input": "preceptor", "output": "â â —⠑⠉⠑â â žâ •â —" }, { "input": "preceptor's", "output": "â â —⠑⠉⠑â â žâ •â —â „â Ž" }, { "input": "preceptors", "output": "â â —⠑⠉⠑â â žâ •â —â Ž" }, { "input": "precepts", "output": "â â —⠑⠉⠑â â žâ Ž" }, { "input": "precinct", "output": "â â —⠑⠉⠔⠉⠞" }, { "input": "precinct's", "output": "â â —⠑⠉⠔⠉⠞⠄⠎" }, { "input": "precincts", "output": "â â —⠑⠉⠔⠉⠞⠎" }, { "input": "preciosity", "output": "â â —⠑⠉⠊⠕⠎⠰⠽" }, { "input": "preciosity's", "output": "â â —⠑⠉⠊⠕⠎⠰⠽⠄⠎" }, { "input": "precious", "output": "â â —⠑⠉⠊⠳⠎" }, { "input": "preciously", "output": "â â —⠑⠉⠊⠳⠎⠇⠽" }, { "input": "preciousness", "output": "â â —⠑⠉⠊⠳⠎⠰⠎" }, { "input": "preciousness's", "output": "â â —⠑⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "precipice", "output": "â â —⠑⠉⠊â â Šâ ‰â ‘" }, { "input": "precipice's", "output": "â â —⠑⠉⠊â â Šâ ‰â ‘â „â Ž" }, { "input": "precipices", "output": "â â —⠑⠉⠊â â Šâ ‰â ‘â Ž" }, { "input": "precipitant", "output": "â â —⠑⠉⠊â â Šâ žâ â â ž" }, { "input": "precipitant's", "output": "â â —⠑⠉⠊â â Šâ žâ â â žâ „â Ž" }, { "input": "precipitants", "output": "â â —⠑⠉⠊â â Šâ žâ â â žâ Ž" }, { "input": "precipitate", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘" }, { "input": "precipitate's", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘â „â Ž" }, { "input": "precipitated", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ «" }, { "input": "precipitately", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘⠇⠽" }, { "input": "precipitates", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ ‘â Ž" }, { "input": "precipitating", "output": "â â —⠑⠉⠊â â Šâ žâ â žâ Œ" }, { "input": "precipitation", "output": "â â —⠑⠉⠊â â Šâ žâ  â " }, { "input": "precipitation's", "output": "â â —⠑⠉⠊â â Šâ žâ  â â „â Ž" }, { "input": "precipitations", "output": "â â —⠑⠉⠊â â Šâ žâ  â â Ž" }, { "input": "precipitous", "output": "â â —⠑⠉⠊â â Šâ žâ ³â Ž" }, { "input": "precipitously", "output": "â â —⠑⠉⠊â â Šâ žâ ³â Žâ ‡â ½" }, { "input": "precise", "output": "â â —⠑⠉⠊⠎⠑" }, { "input": "precisely", "output": "â â —⠑⠉⠊⠎⠑⠇⠽" }, { "input": "preciseness", "output": "â â —⠑⠉⠊⠎⠑⠰⠎" }, { "input": "preciseness's", "output": "â â —⠑⠉⠊⠎⠑⠰⠎⠄⠎" }, { "input": "preciser", "output": "â â —⠑⠉⠊⠎⠻" }, { "input": "precises", "output": "â â —⠑⠉⠊⠎⠑⠎" }, { "input": "precisest", "output": "â â —⠑⠉⠊⠎⠑⠌" }, { "input": "precision", "output": "â â —⠑⠉⠊⠨â " }, { "input": "precision's", "output": "â â —⠑⠉⠊⠨â â „â Ž" }, { "input": "preclude", "output": "â â —⠑⠉⠇⠥⠙⠑" }, { "input": "precluded", "output": "â â —⠑⠉⠇⠥⠙⠫" }, { "input": "precludes", "output": "â â —⠑⠉⠇⠥⠙⠑⠎" }, { "input": "precluding", "output": "â â —⠑⠉⠇⠥⠙⠌" }, { "input": "preclusion", "output": "â â —⠑⠉⠇⠥⠨â " }, { "input": "preclusion's", "output": "â â —⠑⠉⠇⠥⠨â â „â Ž" }, { "input": "precocious", "output": "â â —⠑⠉⠕⠉⠊⠳⠎" }, { "input": "precociously", "output": "â â —⠑⠉⠕⠉⠊⠳⠎⠇⠽" }, { "input": "precociousness", "output": "â â —⠑⠉⠕⠉⠊⠳⠎⠰⠎" }, { "input": "precociousness's", "output": "â â —⠑⠉⠕⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "precocity", "output": "â â —⠑⠉⠕⠉⠰⠽" }, { "input": "precocity's", "output": "â â —⠑⠉⠕⠉⠰⠽⠄⠎" }, { "input": "precognition", "output": "â â —⠑⠉⠕⠛â â Šâ °â " }, { "input": "precognition's", "output": "â â —⠑⠉⠕⠛â â Šâ °â â „â Ž" }, { "input": "precognitive", "output": "â â —⠑⠉⠕⠛â â Šâ žâ Šâ §â ‘" }, { "input": "precolonial", "output": "â â —⠑⠉⠕⠇⠕â â Šâ â ‡" }, { "input": "preconceive", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â ‘" }, { "input": "preconceived", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â «" }, { "input": "preconceives", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â ‘â Ž" }, { "input": "preconceiving", "output": "â â —⠑⠉⠕â â ‰â ‘â Šâ §â Œ" }, { "input": "preconception", "output": "â â —⠑⠉⠕â â ‰â ‘â â °â " }, { "input": "preconception's", "output": "â â —⠑⠉⠕â â ‰â ‘â â °â â „â Ž" }, { "input": "preconceptions", "output": "â â —⠑⠉⠕â â ‰â ‘â â °â â Ž" }, { "input": "precondition", "output": "â â —⠑⠉⠕â â ™â Šâ °â " }, { "input": "precondition's", "output": "â â —⠑⠉⠕â â ™â Šâ °â â „â Ž" }, { "input": "preconditioned", "output": "â â —⠑⠉⠕â â ™â Šâ °â â «" }, { "input": "preconditioning", "output": "â â —⠑⠉⠕â â ™â Šâ °â â Œ" }, { "input": "preconditions", "output": "â â —⠑⠉⠕â â ™â Šâ °â â Ž" }, { "input": "precursor", "output": "â â —⠑⠉⠥⠗⠎⠕⠗" }, { "input": "precursor's", "output": "â â —⠑⠉⠥⠗⠎⠕⠗⠄⠎" }, { "input": "precursors", "output": "â â —⠑⠉⠥⠗⠎⠕⠗⠎" }, { "input": "precursory", "output": "â â —⠑⠉⠥⠗⠎⠕⠗⠽" }, { "input": "predate", "output": "â â —â ‘â ™â â žâ ‘" }, { "input": "predated", "output": "â â —â ‘â ™â â žâ «" }, { "input": "predates", "output": "â â —â ‘â ™â â žâ ‘â Ž" }, { "input": "predating", "output": "â â —â ‘â ™â â žâ Œ" }, { "input": "predator", "output": "â â —â «â â žâ •â —" }, { "input": "predator's", "output": "â â —â «â â žâ •â —â „â Ž" }, { "input": "predators", "output": "â â —â «â â žâ •â —â Ž" }, { "input": "predatory", "output": "â â —â «â â žâ •â —â ½" }, { "input": "predawn", "output": "â â —â ‘â ™â â ºâ " }, { "input": "predecease", "output": "â â —⠑⠙⠑⠉⠂⠎⠑" }, { "input": "predeceased", "output": "â â —⠑⠙⠑⠉⠂⠎⠫" }, { "input": "predeceases", "output": "â â —⠑⠙⠑⠉⠂⠎⠑⠎" }, { "input": "predeceasing", "output": "â â —⠑⠙⠑⠉⠂⠎⠌" }, { "input": "predecessor", "output": "â â —⠫⠑⠉⠑⠎⠎⠕⠗" }, { "input": "predecessor's", "output": "â â —⠫⠑⠉⠑⠎⠎⠕⠗⠄⠎" }, { "input": "predecessors", "output": "â â —⠫⠑⠉⠑⠎⠎⠕⠗⠎" }, { "input": "predefined", "output": "â â —⠑⠙⠑⠋⠔⠫" }, { "input": "predesignate", "output": "â â —⠑⠙⠑⠎⠊⠛â â â žâ ‘" }, { "input": "predesignated", "output": "â â —⠑⠙⠑⠎⠊⠛â â â žâ «" }, { "input": "predesignates", "output": "â â —⠑⠙⠑⠎⠊⠛â â â žâ ‘â Ž" }, { "input": "predesignating", "output": "â â —⠑⠙⠑⠎⠊⠛â â â žâ Œ" }, { "input": "predestination", "output": "â â —⠑⠙⠑⠌⠔⠠â " }, { "input": "predestination's", "output": "â â —⠑⠙⠑⠌⠔⠠â â „â Ž" }, { "input": "predestine", "output": "â â —⠑⠙⠑⠌⠔⠑" }, { "input": "predestined", "output": "â â —⠑⠙⠑⠌⠔⠫" }, { "input": "predestines", "output": "â â —⠑⠙⠑⠌⠔⠑⠎" }, { "input": "predestining", "output": "â â —⠑⠙⠑⠌⠔⠌" }, { "input": "predetermination", "output": "â â —⠑⠙⠑⠞⠻â â ”â  â " }, { "input": "predetermination's", "output": "â â —⠑⠙⠑⠞⠻â â ”â  â â „â Ž" }, { "input": "predetermine", "output": "â â —⠑⠙⠑⠞⠻â â ”â ‘" }, { "input": "predetermined", "output": "â â —⠑⠙⠑⠞⠻â â ”â «" }, { "input": "predetermines", "output": "â â —⠑⠙⠑⠞⠻â â ”â ‘â Ž" }, { "input": "predetermining", "output": "â â —⠑⠙⠑⠞⠻â â ”â Œ" }, { "input": "predicable", "output": "â â —â «â Šâ ‰â â ¼" }, { "input": "predicament", "output": "â â —⠑⠙⠊⠉â â °â ž" }, { "input": "predicament's", "output": "â â —⠑⠙⠊⠉â â °â žâ „â Ž" }, { "input": "predicaments", "output": "â â —⠑⠙⠊⠉â â °â žâ Ž" }, { "input": "predicate", "output": "â â —â «â Šâ ‰â â žâ ‘" }, { "input": "predicate's", "output": "â â —â «â Šâ ‰â â žâ ‘â „â Ž" }, { "input": "predicated", "output": "â â —â «â Šâ ‰â â žâ «" }, { "input": "predicates", "output": "â â —â «â Šâ ‰â â žâ ‘â Ž" }, { "input": "predicating", "output": "â â —â «â Šâ ‰â â žâ Œ" }, { "input": "predication", "output": "â â —⠫⠊⠉⠠â " }, { "input": "predication's", "output": "â â —⠫⠊⠉⠠â â „â Ž" }, { "input": "predicative", "output": "â â —â «â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "predict", "output": "â â —⠑⠙⠊⠉⠞" }, { "input": "predictability", "output": "â â —⠑⠙⠊⠉⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "predictability's", "output": "â â —⠑⠙⠊⠉⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "predictable", "output": "â â —⠑⠙⠊⠉⠞â â ¼" }, { "input": "predictably", "output": "â â —⠑⠙⠊⠉⠞â â ƒâ ‡â ½" }, { "input": "predicted", "output": "â â —⠑⠙⠊⠉⠞⠫" }, { "input": "predicting", "output": "â â —⠑⠙⠊⠉⠞⠌" }, { "input": "prediction", "output": "â â —⠑⠙⠊⠉⠰â " }, { "input": "prediction's", "output": "â â —⠑⠙⠊⠉⠰â â „â Ž" }, { "input": "predictions", "output": "â â —⠑⠙⠊⠉⠰â â Ž" }, { "input": "predictive", "output": "â â —⠑⠙⠊⠉⠞⠊⠧⠑" }, { "input": "predictor", "output": "â â —⠑⠙⠊⠉⠞⠕⠗" }, { "input": "predicts", "output": "â â —⠑⠙⠊⠉⠞⠎" }, { "input": "predilection", "output": "â â —⠑⠙⠊⠇⠑⠉⠰â " }, { "input": "predilection's", "output": "â â —⠑⠙⠊⠇⠑⠉⠰â â „â Ž" }, { "input": "predilections", "output": "â â —⠑⠙⠊⠇⠑⠉⠰â â Ž" }, { "input": "predispose", "output": "â â —⠑⠙⠊⠎â â •â Žâ ‘" }, { "input": "predisposed", "output": "â â —⠑⠙⠊⠎â â •â Žâ «" }, { "input": "predisposes", "output": "â â —⠑⠙⠊⠎â â •â Žâ ‘â Ž" }, { "input": "predisposing", "output": "â â —⠑⠙⠊⠎â â •â Žâ Œ" }, { "input": "predisposition", "output": "â â —⠑⠙⠊⠎â â •â Žâ Šâ °â " }, { "input": "predisposition's", "output": "â â —⠑⠙⠊⠎â â •â Žâ Šâ °â â „â Ž" }, { "input": "predispositions", "output": "â â —⠑⠙⠊⠎â â •â Žâ Šâ °â â Ž" }, { "input": "predominance", "output": "â â —⠑⠙⠕â â ”⠨⠑" }, { "input": "predominance's", "output": "â â —⠑⠙⠕â â ”⠨⠑⠄⠎" }, { "input": "predominant", "output": "â â —⠑⠙⠕â â ”â â â ž" }, { "input": "predominantly", "output": "â â —⠑⠙⠕â â ”â â â žâ ‡â ½" }, { "input": "predominate", "output": "â â —⠑⠙⠕â â ”â â žâ ‘" }, { "input": "predominated", "output": "â â —⠑⠙⠕â â ”â â žâ «" }, { "input": "predominates", "output": "â â —⠑⠙⠕â â ”â â žâ ‘â Ž" }, { "input": "predominating", "output": "â â —⠑⠙⠕â â ”â â žâ Œ" }, { "input": "preeminence", "output": "â â —â ‘â ‘â â ”â °â ‘" }, { "input": "preeminence's", "output": "â â —â ‘â ‘â â ”â °â ‘â „â Ž" }, { "input": "preeminent", "output": "â â —â ‘â ‘â â ”⠢⠞" }, { "input": "preeminently", "output": "â â —â ‘â ‘â â ”⠢⠞⠇⠽" }, { "input": "preempt", "output": "â â —â ‘â ‘â â â ž" }, { "input": "preempted", "output": "â â —â ‘â ‘â â â žâ «" }, { "input": "preempting", "output": "â â —â ‘â ‘â â â žâ Œ" }, { "input": "preemption", "output": "â â —â ‘â ‘â â â °â " }, { "input": "preemption's", "output": "â â —â ‘â ‘â â â °â â „â Ž" }, { "input": "preemptive", "output": "â â —â ‘â ‘â â â žâ Šâ §â ‘" }, { "input": "preemptively", "output": "â â —â ‘â ‘â â â žâ Šâ §â ‘⠇⠽" }, { "input": "preempts", "output": "â â —â ‘â ‘â â â žâ Ž" }, { "input": "preen", "output": "â â —â ‘â ¢" }, { "input": "preened", "output": "â â —⠑⠢⠫" }, { "input": "preening", "output": "â â —⠑⠢⠌" }, { "input": "preens", "output": "â â —⠑⠢⠎" }, { "input": "preexist", "output": "â â —â ‘â ‘â ­â Šâ Œ" }, { "input": "preexisted", "output": "â â —⠑⠑⠭⠊⠌⠫" }, { "input": "preexistence", "output": "â â —⠑⠑⠭⠊⠌⠰⠑" }, { "input": "preexistence's", "output": "â â —⠑⠑⠭⠊⠌⠰⠑⠄⠎" }, { "input": "preexisting", "output": "â â —⠑⠑⠭⠊⠌⠌" }, { "input": "preexists", "output": "â â —⠑⠑⠭⠊⠌⠎" }, { "input": "prefab", "output": "â â —â ‘â ‹â â ƒ" }, { "input": "prefab's", "output": "â â —â ‘â ‹â â ƒâ „â Ž" }, { "input": "prefabbed", "output": "â â —â ‘â ‹â â †â «" }, { "input": "prefabbing", "output": "â â —â ‘â ‹â â †â Œ" }, { "input": "prefabricate", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ ‘" }, { "input": "prefabricated", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ «" }, { "input": "prefabricates", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ ‘â Ž" }, { "input": "prefabricating", "output": "â â —â ‘â ‹â â ƒâ —â Šâ ‰â â žâ Œ" }, { "input": "prefabrication", "output": "â â —â ‘â ‹â â ƒâ —⠊⠉⠠â " }, { "input": "prefabrication's", "output": "â â —â ‘â ‹â â ƒâ —⠊⠉⠠â â „â Ž" }, { "input": "prefabs", "output": "â â —â ‘â ‹â â ƒâ Ž" }, { "input": "preface", "output": "â â —â ‘â ‹â â ‰â ‘" }, { "input": "preface's", "output": "â â —â ‘â ‹â â ‰â ‘â „â Ž" }, { "input": "prefaced", "output": "â â —â ‘â ‹â â ‰â «" }, { "input": "prefaces", "output": "â â —â ‘â ‹â â ‰â ‘â Ž" }, { "input": "prefacing", "output": "â â —â ‘â ‹â â ‰â Œ" }, { "input": "prefatory", "output": "â â —â ‘â ‹â â žâ •â —â ½" }, { "input": "prefect", "output": "â â —⠑⠋⠑⠉⠞" }, { "input": "prefect's", "output": "â â —⠑⠋⠑⠉⠞⠄⠎" }, { "input": "prefects", "output": "â â —⠑⠋⠑⠉⠞⠎" }, { "input": "prefecture", "output": "â â —⠑⠋⠑⠉⠞⠥⠗⠑" }, { "input": "prefecture's", "output": "â â —⠑⠋⠑⠉⠞⠥⠗⠑⠄⠎" }, { "input": "prefectures", "output": "â â —⠑⠋⠑⠉⠞⠥⠗⠑⠎" }, { "input": "prefer", "output": "â â —â ‘â ‹â »" }, { "input": "preferable", "output": "â â —â ‘â ‹â »â â ¼" }, { "input": "preferably", "output": "â â —â ‘â ‹â »â â ƒâ ‡â ½" }, { "input": "preference", "output": "â â —⠑⠋⠻⠰⠑" }, { "input": "preference's", "output": "â â —⠑⠋⠻⠰⠑⠄⠎" }, { "input": "preferences", "output": "â â —⠑⠋⠻⠰⠑⠎" }, { "input": "preferential", "output": "â â —⠑⠋⠻⠢⠞⠊â â ‡" }, { "input": "preferentially", "output": "â â —⠑⠋⠻⠢⠞⠊⠠⠽" }, { "input": "preferment", "output": "â â —⠑⠋⠻⠰⠞" }, { "input": "preferment's", "output": "â â —⠑⠋⠻⠰⠞⠄⠎" }, { "input": "preferred", "output": "â â —⠑⠋⠻⠗⠫" }, { "input": "preferring", "output": "â â —⠑⠋⠻⠗⠌" }, { "input": "prefers", "output": "â â —⠑⠋⠻⠎" }, { "input": "prefigure", "output": "â â —⠑⠋⠊⠛⠥⠗⠑" }, { "input": "prefigured", "output": "â â —⠑⠋⠊⠛⠥⠗⠫" }, { "input": "prefigures", "output": "â â —⠑⠋⠊⠛⠥⠗⠑⠎" }, { "input": "prefiguring", "output": "â â —⠑⠋⠊⠛⠥⠗⠌" }, { "input": "prefix", "output": "â â —â ‘â ‹â Šâ ­" }, { "input": "prefix's", "output": "â â —â ‘â ‹â Šâ ­â „â Ž" }, { "input": "prefixed", "output": "â â —â ‘â ‹â Šâ ­â «" }, { "input": "prefixes", "output": "â â —â ‘â ‹â Šâ ­â ‘â Ž" }, { "input": "prefixing", "output": "â â —â ‘â ‹â Šâ ­â Œ" }, { "input": "preform", "output": "â â —â ‘â ¿â " }, { "input": "preformed", "output": "â â —â ‘â ¿â â «" }, { "input": "preforming", "output": "â â —â ‘â ¿â â Œ" }, { "input": "preforms", "output": "â â —â ‘â ¿â â Ž" }, { "input": "pregame", "output": "â â —â ‘â ›â â â ‘" }, { "input": "pregame's", "output": "â â —â ‘â ›â â â ‘â „â Ž" }, { "input": "pregames", "output": "â â —â ‘â ›â â â ‘â Ž" }, { "input": "pregnancies", "output": "â â —â ‘â ›â â â â ‰â Šâ ‘â Ž" }, { "input": "pregnancy", "output": "â â —â ‘â ›â â â â ‰â ½" }, { "input": "pregnancy's", "output": "â â —â ‘â ›â â â â ‰â ½â „â Ž" }, { "input": "pregnant", "output": "â â —â ‘â ›â â â â ž" }, { "input": "preheat", "output": "â â —â ‘â “â ‚â ž" }, { "input": "preheated", "output": "â â —â ‘â “â ‚â žâ «" }, { "input": "preheating", "output": "â â —â ‘â “â ‚â žâ Œ" }, { "input": "preheats", "output": "â â —â ‘â “â ‚â žâ Ž" }, { "input": "prehensile", "output": "â â —⠑⠓⠢⠎⠊⠇⠑" }, { "input": "prehistoric", "output": "â â —⠑⠓⠊⠌⠕⠗⠊⠉" }, { "input": "prehistorical", "output": "â â —⠑⠓⠊⠌⠕⠗⠊⠉â â ‡" }, { "input": "prehistorically", "output": "â â —⠑⠓⠊⠌⠕⠗⠊⠉⠠⠽" }, { "input": "prehistory", "output": "â â —⠑⠓⠊⠌⠕⠗⠽" }, { "input": "prehistory's", "output": "â â —⠑⠓⠊⠌⠕⠗⠽⠄⠎" }, { "input": "prejudge", "output": "â â —⠑⠚⠥⠙⠛⠑" }, { "input": "prejudged", "output": "â â —⠑⠚⠥⠙⠛⠫" }, { "input": "prejudges", "output": "â â —⠑⠚⠥⠙⠛⠑⠎" }, { "input": "prejudging", "output": "â â —⠑⠚⠥⠙⠛⠌" }, { "input": "prejudgment", "output": "â â —⠑⠚⠥⠙⠛⠰⠞" }, { "input": "prejudgment's", "output": "â â —⠑⠚⠥⠙⠛⠰⠞⠄⠎" }, { "input": "prejudgments", "output": "â â —⠑⠚⠥⠙⠛⠰⠞⠎" }, { "input": "prejudice", "output": "â â —⠑⠚⠥⠙⠊⠉⠑" }, { "input": "prejudice's", "output": "â â —⠑⠚⠥⠙⠊⠉⠑⠄⠎" }, { "input": "prejudiced", "output": "â â —⠑⠚⠥⠙⠊⠉⠫" }, { "input": "prejudices", "output": "â â —⠑⠚⠥⠙⠊⠉⠑⠎" }, { "input": "prejudicial", "output": "â â —⠑⠚⠥⠙⠊⠉⠊â â ‡" }, { "input": "prejudicing", "output": "â â —⠑⠚⠥⠙⠊⠉⠌" }, { "input": "prekindergarten", "output": "â â —⠑⠅⠔⠙⠻⠛⠜⠞⠢" }, { "input": "prekindergarten's", "output": "â â —⠑⠅⠔⠙⠻⠛⠜⠞⠢⠄⠎" }, { "input": "prekindergartens", "output": "â â —⠑⠅⠔⠙⠻⠛⠜⠞⠢⠎" }, { "input": "prelacy", "output": "â â —â ‘â ‡â â ‰â ½" }, { "input": "prelacy's", "output": "â â —â ‘â ‡â â ‰â ½â „â Ž" }, { "input": "prelate", "output": "â â —â ‘â ‡â â žâ ‘" }, { "input": "prelate's", "output": "â â —â ‘â ‡â â žâ ‘â „â Ž" }, { "input": "prelates", "output": "â â —â ‘â ‡â â žâ ‘â Ž" }, { "input": "preliminaries", "output": "â â —⠑⠇⠊â â ”⠜⠊⠑⠎" }, { "input": "preliminary", "output": "â â —⠑⠇⠊â â ”⠜⠽" }, { "input": "preliminary's", "output": "â â —⠑⠇⠊â â ”⠜⠽⠄⠎" }, { "input": "prelude", "output": "â â —⠑⠇⠥⠙⠑" }, { "input": "prelude's", "output": "â â —⠑⠇⠥⠙⠑⠄⠎" }, { "input": "preludes", "output": "â â —⠑⠇⠥⠙⠑⠎" }, { "input": "premarital", "output": "â â —â ‘â â œâ Šâ žâ â ‡" }, { "input": "premature", "output": "â â —â ‘â â â žâ ¥â —â ‘" }, { "input": "prematurely", "output": "â â —â ‘â â â žâ ¥â —⠑⠇⠽" }, { "input": "premed", "output": "â â —â ‘â â «" }, { "input": "premed's", "output": "â â —â ‘â â «â „â Ž" }, { "input": "premedical", "output": "â â —â ‘â â «â Šâ ‰â â ‡" }, { "input": "premeditate", "output": "â â —â ‘â â «â Šâ žâ â žâ ‘" }, { "input": "premeditated", "output": "â â —â ‘â â «â Šâ žâ â žâ «" }, { "input": "premeditates", "output": "â â —â ‘â â «â Šâ žâ â žâ ‘â Ž" }, { "input": "premeditating", "output": "â â —â ‘â â «â Šâ žâ â žâ Œ" }, { "input": "premeditation", "output": "â â —â ‘â â «â Šâ žâ  â " }, { "input": "premeditation's", "output": "â â —â ‘â â «â Šâ žâ  â â „â Ž" }, { "input": "premeds", "output": "â â —â ‘â â «â Ž" }, { "input": "premenstrual", "output": "â â —â ‘â â ¢â Œâ —â ¥â â ‡" }, { "input": "premier", "output": "â â —â ‘â â Šâ »" }, { "input": "premier's", "output": "â â —â ‘â â Šâ »â „â Ž" }, { "input": "premiere", "output": "â â —â ‘â â Šâ »â ‘" }, { "input": "premiere's", "output": "â â —â ‘â â Šâ »â ‘â „â Ž" }, { "input": "premiered", "output": "â â —â ‘â â Šâ »â «" }, { "input": "premieres", "output": "â â —â ‘â â Šâ »â ‘â Ž" }, { "input": "premiering", "output": "â â —â ‘â â Šâ »â Œ" }, { "input": "premiers", "output": "â â —â ‘â â Šâ »â Ž" }, { "input": "premiership's", "output": "â â —â ‘â â Šâ »â ©â Šâ â „â Ž" }, { "input": "premierships", "output": "â â —â ‘â â Šâ »â ©â Šâ â Ž" }, { "input": "premise", "output": "â â —â ‘â â Šâ Žâ ‘" }, { "input": "premise's", "output": "â â —â ‘â â Šâ Žâ ‘â „â Ž" }, { "input": "premised", "output": "â â —â ‘â â Šâ Žâ «" }, { "input": "premises", "output": "â â —â ‘â â Šâ Žâ ‘â Ž" }, { "input": "premising", "output": "â â —â ‘â â Šâ Žâ ”â ›" }, { "input": "premium", "output": "â â —â ‘â â Šâ ¥â " }, { "input": "premium's", "output": "â â —â ‘â â Šâ ¥â â „â Ž" }, { "input": "premiums", "output": "â â —â ‘â â Šâ ¥â â Ž" }, { "input": "premix", "output": "â â —â ‘â â Šâ ­" }, { "input": "premixed", "output": "â â —â ‘â â Šâ ­â «" }, { "input": "premixes", "output": "â â —â ‘â â Šâ ­â ‘â Ž" }, { "input": "premixing", "output": "â â —â ‘â â Šâ ­â Œ" }, { "input": "premolar", "output": "â â —â ‘â â •⠇⠜" }, { "input": "premolar's", "output": "â â —â ‘â â •⠇⠜⠄⠎" }, { "input": "premolars", "output": "â â —â ‘â â •⠇⠜⠎" }, { "input": "premonition", "output": "â â —â ‘â â •â â Šâ °â " }, { "input": "premonition's", "output": "â â —â ‘â â •â â Šâ °â â „â Ž" }, { "input": "premonitions", "output": "â â —â ‘â â •â â Šâ °â â Ž" }, { "input": "premonitory", "output": "â â —â ‘â â •â â Šâ žâ •â —â ½" }, { "input": "prenatal", "output": "â â —â ‘â â â žâ â ‡" }, { "input": "prenatally", "output": "â â —â ‘â â â žâ  â ½" }, { "input": "prenuptial", "output": "â â —â ‘â â ¥â â žâ Šâ â ‡" }, { "input": "preoccupation", "output": "â â —â ‘â •â ’â ¥â â  â " }, { "input": "preoccupation's", "output": "â â —â ‘â •â ’â ¥â â  â â „â Ž" }, { "input": "preoccupations", "output": "â â —â ‘â •â ’â ¥â â  â â Ž" }, { "input": "preoccupied", "output": "â â —â ‘â •â ’â ¥â â Šâ «" }, { "input": "preoccupies", "output": "â â —â ‘â •â ’â ¥â â Šâ ‘â Ž" }, { "input": "preoccupy", "output": "â â —â ‘â •â ’â ¥â â ½" }, { "input": "preoccupying", "output": "â â —â ‘â •â ’â ¥â â ½â Œ" }, { "input": "preoperative", "output": "â â —â ‘â •â â »â â žâ Šâ §â ‘" }, { "input": "preordain", "output": "â â —â ‘â •â —â ™â â ”" }, { "input": "preordained", "output": "â â —â ‘â •â —â ™â â ”â «" }, { "input": "preordaining", "output": "â â —â ‘â •â —â ™â â ”â Œ" }, { "input": "preordains", "output": "â â —â ‘â •â —â ™â â ”â Ž" }, { "input": "prep", "output": "â â —â ‘â " }, { "input": "prep's", "output": "â â —â ‘â â „â Ž" }, { "input": "prepackage", "output": "â â —â ‘â â â ‰â …â â ›â ‘" }, { "input": "prepackaged", "output": "â â —â ‘â â â ‰â …â â ›â «" }, { "input": "prepackages", "output": "â â —â ‘â â â ‰â …â â ›â ‘â Ž" }, { "input": "prepackaging", "output": "â â —â ‘â â â ‰â …â â ›â Œ" }, { "input": "prepaid", "output": "â â —â ‘â â ™" }, { "input": "preparation", "output": "â â —â ‘â â œâ  â " }, { "input": "preparation's", "output": "â â —â ‘â â œâ  â â „â Ž" }, { "input": "preparations", "output": "â â —â ‘â â œâ  â â Ž" }, { "input": "preparatory", "output": "â â —â ‘â â œâ â žâ •â —â ½" }, { "input": "prepare", "output": "â â —â ‘â â œâ ‘" }, { "input": "prepared", "output": "â â —â ‘â â œâ «" }, { "input": "preparedness", "output": "â â —â ‘â â œâ «â °â Ž" }, { "input": "preparedness's", "output": "â â —â ‘â â œâ «â °â Žâ „â Ž" }, { "input": "prepares", "output": "â â —â ‘â â œâ ‘â Ž" }, { "input": "preparing", "output": "â â —â ‘â â œâ Œ" }, { "input": "prepay", "output": "â â —â ‘â â â ½" }, { "input": "prepaying", "output": "â â —â ‘â â â ½â Œ" }, { "input": "prepayment", "output": "â â —â ‘â â â ½â °â ž" }, { "input": "prepayment's", "output": "â â —â ‘â â â ½â °â žâ „â Ž" }, { "input": "prepayments", "output": "â â —â ‘â â â ½â °â žâ Ž" }, { "input": "prepays", "output": "â â —â ‘â â â ½â Ž" }, { "input": "preponderance", "output": "â â —â ‘â â •â â ™â »â ¨â ‘" }, { "input": "preponderance's", "output": "â â —â ‘â â •â â ™â »â ¨â ‘â „â Ž" }, { "input": "preponderances", "output": "â â —â ‘â â •â â ™â »â ¨â ‘â Ž" }, { "input": "preponderant", "output": "â â —â ‘â â •â â ™â »â â â ž" }, { "input": "preponderate", "output": "â â —â ‘â â •â â ™â »â â žâ ‘" }, { "input": "preponderated", "output": "â â —â ‘â â •â â ™â »â â žâ «" }, { "input": "preponderates", "output": "â â —â ‘â â •â â ™â »â â žâ ‘â Ž" }, { "input": "preponderating", "output": "â â —â ‘â â •â â ™â »â â žâ Œ" }, { "input": "preposition", "output": "â â —â ‘â â •â Žâ Šâ °â " }, { "input": "preposition's", "output": "â â —â ‘â â •â Žâ Šâ °â â „â Ž" }, { "input": "prepositional", "output": "â â —â ‘â â •â Žâ Šâ °â â â ‡" }, { "input": "prepositionally", "output": "â â —â ‘â â •â Žâ Šâ °â â  â ½" }, { "input": "prepositions", "output": "â â —â ‘â â •â Žâ Šâ °â â Ž" }, { "input": "prepossess", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "prepossessed", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "prepossesses", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "prepossessing", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ Œ" }, { "input": "prepossession", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "prepossession's", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â â „â Ž" }, { "input": "prepossessions", "output": "â â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â â Ž" }, { "input": "preposterous", "output": "â â —â ‘â â •⠌⠻⠳⠎" }, { "input": "preposterously", "output": "â â —â ‘â â •⠌⠻⠳⠎⠇⠽" }, { "input": "prepped", "output": "â â —â ‘â â â «" }, { "input": "preppier", "output": "â â —â ‘â â â Šâ »" }, { "input": "preppies", "output": "â â —â ‘â â â Šâ ‘â Ž" }, { "input": "preppiest", "output": "â â —â ‘â â â Šâ ‘â Œ" }, { "input": "prepping", "output": "â â —â ‘â â â Œ" }, { "input": "preppy", "output": "â â —â ‘â â â ½" }, { "input": "preppy's", "output": "â â —â ‘â â â ½â „â Ž" }, { "input": "preps", "output": "â â —â ‘â â Ž" }, { "input": "prepubescence", "output": "â â —â ‘â â ¥â ƒâ ‘⠎⠉⠰⠑" }, { "input": "prepubescence's", "output": "â â —â ‘â â ¥â ƒâ ‘⠎⠉⠰⠑⠄⠎" }, { "input": "prepubescent's", "output": "â â —â ‘â â ¥â ƒâ ‘⠎⠉⠢⠞⠄⠎" }, { "input": "prepubescents", "output": "â â —â ‘â â ¥â ƒâ ‘⠎⠉⠢⠞⠎" }, { "input": "prepuce", "output": "â â —â ‘â â ¥â ‰â ‘" }, { "input": "prepuce's", "output": "â â —â ‘â â ¥â ‰â ‘â „â Ž" }, { "input": "prepuces", "output": "â â —â ‘â â ¥â ‰â ‘â Ž" }, { "input": "prequel", "output": "â â —⠑⠟⠥⠑⠇" }, { "input": "prequel's", "output": "â â —⠑⠟⠥⠑⠇⠄⠎" }, { "input": "prequels", "output": "â â —⠑⠟⠥⠑⠇⠎" }, { "input": "prerecord", "output": "â â —⠑⠗⠑⠉⠕⠗⠙" }, { "input": "prerecorded", "output": "â â —⠑⠗⠑⠉⠕⠗⠙⠫" }, { "input": "prerecording", "output": "â â —⠑⠗⠑⠉⠕⠗⠙⠌" }, { "input": "prerecords", "output": "â â —⠑⠗⠑⠉⠕⠗⠙⠎" }, { "input": "preregister", "output": "â â —⠑⠗⠑⠛⠊⠌⠻" }, { "input": "preregistered", "output": "â â —⠑⠗⠑⠛⠊⠌⠻⠫" }, { "input": "preregistering", "output": "â â —⠑⠗⠑⠛⠊⠌⠻⠌" }, { "input": "preregisters", "output": "â â —⠑⠗⠑⠛⠊⠌⠻⠎" }, { "input": "preregistration", "output": "â â —⠑⠗⠑⠛⠊⠌⠗⠠â " }, { "input": "preregistration's", "output": "â â —⠑⠗⠑⠛⠊⠌⠗⠠â â „â Ž" }, { "input": "prerequisite", "output": "â â —⠑⠗⠑⠟⠥⠊⠎⠊⠞⠑" }, { "input": "prerequisite's", "output": "â â —⠑⠗⠑⠟⠥⠊⠎⠊⠞⠑⠄⠎" }, { "input": "prerequisites", "output": "â â —⠑⠗⠑⠟⠥⠊⠎⠊⠞⠑⠎" }, { "input": "prerogative", "output": "â â —â ‘â —â •â ›â â žâ Šâ §â ‘" }, { "input": "prerogative's", "output": "â â —â ‘â —â •â ›â â žâ Šâ §â ‘â „â Ž" }, { "input": "prerogatives", "output": "â â —â ‘â —â •â ›â â žâ Šâ §â ‘â Ž" }, { "input": "presage", "output": "â â —â ‘â Žâ â ›â ‘" }, { "input": "presage's", "output": "â â —â ‘â Žâ â ›â ‘â „â Ž" }, { "input": "presaged", "output": "â â —â ‘â Žâ â ›â «" }, { "input": "presages", "output": "â â —â ‘â Žâ â ›â ‘â Ž" }, { "input": "presaging", "output": "â â —â ‘â Žâ â ›â Œ" }, { "input": "presbyopia", "output": "â â —⠑⠎⠃⠽⠕â â Šâ " }, { "input": "presbyopia's", "output": "â â —⠑⠎⠃⠽⠕â â Šâ â „â Ž" }, { "input": "presbyter", "output": "â â —⠑⠎⠃⠽⠞⠻" }, { "input": "presbyter's", "output": "â â —⠑⠎⠃⠽⠞⠻⠄⠎" }, { "input": "presbyters", "output": "â â —⠑⠎⠃⠽⠞⠻⠎" }, { "input": "preschool", "output": "â â —â ‘â Žâ ¡â •â •â ‡" }, { "input": "preschool's", "output": "â â —⠑⠎⠡⠕⠕⠇⠄⠎" }, { "input": "preschooler", "output": "â â —⠑⠎⠡⠕⠕⠇⠻" }, { "input": "preschooler's", "output": "â â —⠑⠎⠡⠕⠕⠇⠻⠄⠎" }, { "input": "preschoolers", "output": "â â —⠑⠎⠡⠕⠕⠇⠻⠎" }, { "input": "preschools", "output": "â â —⠑⠎⠡⠕⠕⠇⠎" }, { "input": "prescience", "output": "â â —⠑⠎⠉⠊⠰⠑" }, { "input": "prescience's", "output": "â â —⠑⠎⠉⠊⠰⠑⠄⠎" }, { "input": "prescient", "output": "â â —⠑⠎⠉⠊⠢⠞" }, { "input": "presciently", "output": "â â —⠑⠎⠉⠊⠢⠞⠇⠽" }, { "input": "prescribe", "output": "â â —⠑⠎⠉⠗⠊⠃⠑" }, { "input": "prescribed", "output": "â â —⠑⠎⠉⠗⠊⠃⠫" }, { "input": "prescribes", "output": "â â —⠑⠎⠉⠗⠊⠃⠑⠎" }, { "input": "prescribing", "output": "â â —⠑⠎⠉⠗⠊⠃⠌" }, { "input": "prescript", "output": "â â —⠑⠎⠉⠗⠊â â ž" }, { "input": "prescript's", "output": "â â —⠑⠎⠉⠗⠊â â žâ „â Ž" }, { "input": "prescription", "output": "â â —⠑⠎⠉⠗⠊â â °â " }, { "input": "prescription's", "output": "â â —⠑⠎⠉⠗⠊â â °â â „â Ž" }, { "input": "prescriptions", "output": "â â —⠑⠎⠉⠗⠊â â °â â Ž" }, { "input": "prescriptive", "output": "â â —⠑⠎⠉⠗⠊â â žâ Šâ §â ‘" }, { "input": "prescriptively", "output": "â â —⠑⠎⠉⠗⠊â â žâ Šâ §â ‘⠇⠽" }, { "input": "prescripts", "output": "â â —⠑⠎⠉⠗⠊â â žâ Ž" }, { "input": "preseason", "output": "â â —â ‘â Žâ ‚â Žâ •â " }, { "input": "preseason's", "output": "â â —â ‘â Žâ ‚â Žâ •â â „â Ž" }, { "input": "preseasons", "output": "â â —â ‘â Žâ ‚â Žâ •â â Ž" }, { "input": "presence", "output": "â â —â ‘â Žâ °â ‘" }, { "input": "presence's", "output": "â â —â ‘â Žâ °â ‘â „â Ž" }, { "input": "presences", "output": "â â —â ‘â Žâ °â ‘â Ž" }, { "input": "present", "output": "â â —⠑⠎⠢⠞" }, { "input": "present's", "output": "â â —⠑⠎⠢⠞⠄⠎" }, { "input": "presentable", "output": "â â —⠑⠎⠢⠞â â ¼" }, { "input": "presentably", "output": "â â —⠑⠎⠢⠞â â ƒâ ‡â ½" }, { "input": "presentation", "output": "â â —⠑⠎⠢⠞⠠â " }, { "input": "presentation's", "output": "â â —⠑⠎⠢⠞⠠â â „â Ž" }, { "input": "presentations", "output": "â â —⠑⠎⠢⠞⠠â â Ž" }, { "input": "presented", "output": "â â —⠑⠎⠢⠞⠫" }, { "input": "presenter", "output": "â â —⠑⠎⠢⠞⠻" }, { "input": "presentiment", "output": "â â —⠑⠎⠢⠞⠊⠰⠞" }, { "input": "presentiment's", "output": "â â —⠑⠎⠢⠞⠊⠰⠞⠄⠎" }, { "input": "presentiments", "output": "â â —⠑⠎⠢⠞⠊⠰⠞⠎" }, { "input": "presenting", "output": "â â —⠑⠎⠢⠞⠌" }, { "input": "presently", "output": "â â —⠑⠎⠢⠞⠇⠽" }, { "input": "presentment", "output": "â â —⠑⠎⠢⠞⠰⠞" }, { "input": "presentment's", "output": "â â —⠑⠎⠢⠞⠰⠞⠄⠎" }, { "input": "presentments", "output": "â â —⠑⠎⠢⠞⠰⠞⠎" }, { "input": "presents", "output": "â â —⠑⠎⠢⠞⠎" }, { "input": "preservable", "output": "â â —⠑⠎⠻⠧â â ¼" }, { "input": "preservation", "output": "â â —⠑⠎⠻⠧⠠â " }, { "input": "preservation's", "output": "â â —⠑⠎⠻⠧⠠â â „â Ž" }, { "input": "preservative", "output": "â â —⠑⠎⠻⠧â â žâ Šâ §â ‘" }, { "input": "preservative's", "output": "â â —⠑⠎⠻⠧â â žâ Šâ §â ‘â „â Ž" }, { "input": "preservatives", "output": "â â —⠑⠎⠻⠧â â žâ Šâ §â ‘â Ž" }, { "input": "preserve", "output": "â â —⠑⠎⠻⠧⠑" }, { "input": "preserve's", "output": "â â —⠑⠎⠻⠧⠑⠄⠎" }, { "input": "preserved", "output": "â â —⠑⠎⠻⠧⠫" }, { "input": "preserver", "output": "â â —⠑⠎⠻⠧⠻" }, { "input": "preserver's", "output": "â â —⠑⠎⠻⠧⠻⠄⠎" }, { "input": "preservers", "output": "â â —⠑⠎⠻⠧⠻⠎" }, { "input": "preserves", "output": "â â —⠑⠎⠻⠧⠑⠎" }, { "input": "preserving", "output": "â â —⠑⠎⠻⠧⠌" }, { "input": "preset", "output": "â â —â ‘â Žâ ‘â ž" }, { "input": "presets", "output": "â â —â ‘â Žâ ‘â žâ Ž" }, { "input": "presetting", "output": "â â —â ‘â Žâ ‘â žâ žâ Œ" }, { "input": "preshrank", "output": "â â —â ‘â ©â —â â â …" }, { "input": "preshrink", "output": "â â —⠑⠩⠗⠔⠅" }, { "input": "preshrinking", "output": "â â —⠑⠩⠗⠔⠅⠌" }, { "input": "preshrinks", "output": "â â —⠑⠩⠗⠔⠅⠎" }, { "input": "preshrunk", "output": "â â —â ‘â ©â —â ¥â â …" }, { "input": "preside", "output": "â â —⠑⠎⠊⠙⠑" }, { "input": "presided", "output": "â â —⠑⠎⠊⠙⠫" }, { "input": "presidencies", "output": "â â —⠑⠎⠊⠙⠢⠉⠊⠑⠎" }, { "input": "presidency", "output": "â â —⠑⠎⠊⠙⠢⠉⠽" }, { "input": "presidency's", "output": "â â —⠑⠎⠊⠙⠢⠉⠽⠄⠎" }, { "input": "president", "output": "â â —⠑⠎⠊⠙⠢⠞" }, { "input": "president's", "output": "â â —⠑⠎⠊⠙⠢⠞⠄⠎" }, { "input": "presidential", "output": "â â —⠑⠎⠊⠙⠢⠞⠊â â ‡" }, { "input": "presidents", "output": "â â —⠑⠎⠊⠙⠢⠞⠎" }, { "input": "presides", "output": "â â —⠑⠎⠊⠙⠑⠎" }, { "input": "presiding", "output": "â â —⠑⠎⠊⠙⠌" }, { "input": "presort", "output": "â â —â ‘â Žâ •â —â ž" }, { "input": "presorted", "output": "â â —â ‘â Žâ •â —â žâ «" }, { "input": "presorting", "output": "â â —â ‘â Žâ •â —â žâ Œ" }, { "input": "presorts", "output": "â â —â ‘â Žâ •â —â žâ Ž" }, { "input": "press", "output": "â â —â ‘â Žâ Ž" }, { "input": "press's", "output": "â â —â ‘â Žâ Žâ „â Ž" }, { "input": "pressed", "output": "â â —â ‘â Žâ Žâ «" }, { "input": "presser", "output": "â â —â ‘â Žâ Žâ »" }, { "input": "presser's", "output": "â â —⠑⠎⠎⠻⠄⠎" }, { "input": "pressers", "output": "â â —⠑⠎⠎⠻⠎" }, { "input": "presses", "output": "â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "pressing", "output": "â â —â ‘â Žâ Žâ Œ" }, { "input": "pressing's", "output": "â â —⠑⠎⠎⠌⠄⠎" }, { "input": "pressingly", "output": "â â —⠑⠎⠎⠌⠇⠽" }, { "input": "pressings", "output": "â â —⠑⠎⠎⠌⠎" }, { "input": "pressman", "output": "â â —â ‘â Žâ Žâ â â " }, { "input": "pressman's", "output": "â â —â ‘â Žâ Žâ â â â „â Ž" }, { "input": "pressmen", "output": "â â —â ‘â Žâ Žâ â ¢" }, { "input": "pressure", "output": "â â —⠑⠎⠎⠥⠗⠑" }, { "input": "pressure's", "output": "â â —⠑⠎⠎⠥⠗⠑⠄⠎" }, { "input": "pressured", "output": "â â —⠑⠎⠎⠥⠗⠫" }, { "input": "pressures", "output": "â â —⠑⠎⠎⠥⠗⠑⠎" }, { "input": "pressuring", "output": "â â —⠑⠎⠎⠥⠗⠌" }, { "input": "pressurization", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠠â " }, { "input": "pressurization's", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠠â â „â Ž" }, { "input": "pressurize", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠑" }, { "input": "pressurized", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠫" }, { "input": "pressurizer", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠻" }, { "input": "pressurizer's", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠻⠄⠎" }, { "input": "pressurizers", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠻⠎" }, { "input": "pressurizes", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠑⠎" }, { "input": "pressurizing", "output": "â â —⠑⠎⠎⠥⠗⠊⠵⠌" }, { "input": "prestidigitation", "output": "â â —⠑⠌⠊⠙⠊⠛⠊⠞⠠â " }, { "input": "prestidigitation's", "output": "â â —⠑⠌⠊⠙⠊⠛⠊⠞⠠â â „â Ž" }, { "input": "prestige", "output": "â â —⠑⠌⠊⠛⠑" }, { "input": "prestige's", "output": "â â —⠑⠌⠊⠛⠑⠄⠎" }, { "input": "prestigious", "output": "â â —⠑⠌⠊⠛⠊⠳⠎" }, { "input": "presto", "output": "â â —⠑⠌⠕" }, { "input": "presto's", "output": "â â —⠑⠌⠕⠄⠎" }, { "input": "prestos", "output": "â â —⠑⠌⠕⠎" }, { "input": "presumable", "output": "â â —â ‘â Žâ ¥â â â ¼" }, { "input": "presumably", "output": "â â —â ‘â Žâ ¥â â â ƒâ ‡â ½" }, { "input": "presume", "output": "â â —â ‘â Žâ ¥â â ‘" }, { "input": "presumed", "output": "â â —â ‘â Žâ ¥â â «" }, { "input": "presumes", "output": "â â —â ‘â Žâ ¥â â ‘â Ž" }, { "input": "presuming", "output": "â â —â ‘â Žâ ¥â â Œ" }, { "input": "presumption", "output": "â â —â ‘â Žâ ¥â â â °â " }, { "input": "presumption's", "output": "â â —â ‘â Žâ ¥â â â °â â „â Ž" }, { "input": "presumptions", "output": "â â —â ‘â Žâ ¥â â â °â â Ž" }, { "input": "presumptive", "output": "â â —â ‘â Žâ ¥â â â žâ Šâ §â ‘" }, { "input": "presumptuous", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Ž" }, { "input": "presumptuously", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "presumptuousness", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Žâ °â Ž" }, { "input": "presumptuousness's", "output": "â â —â ‘â Žâ ¥â â â žâ ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "presuppose", "output": "â â —â ‘â Žâ ¥â â â •â Žâ ‘" }, { "input": "presupposed", "output": "â â —â ‘â Žâ ¥â â â •â Žâ «" }, { "input": "presupposes", "output": "â â —â ‘â Žâ ¥â â â •â Žâ ‘â Ž" }, { "input": "presupposing", "output": "â â —â ‘â Žâ ¥â â â •â Žâ Œ" }, { "input": "presupposition", "output": "â â —â ‘â Žâ ¥â â â •â Žâ Šâ °â " }, { "input": "presupposition's", "output": "â â —â ‘â Žâ ¥â â â •â Žâ Šâ °â â „â Ž" }, { "input": "presuppositions", "output": "â â —â ‘â Žâ ¥â â â •â Žâ Šâ °â â Ž" }, { "input": "preteen", "output": "â â —â ‘â žâ ‘â ¢" }, { "input": "preteen's", "output": "â â —⠑⠞⠑⠢⠄⠎" }, { "input": "preteens", "output": "â â —⠑⠞⠑⠢⠎" }, { "input": "pretend", "output": "â â —⠑⠞⠢⠙" }, { "input": "pretended", "output": "â â —⠑⠞⠢⠙⠫" }, { "input": "pretender", "output": "â â —⠑⠞⠢⠙⠻" }, { "input": "pretender's", "output": "â â —⠑⠞⠢⠙⠻⠄⠎" }, { "input": "pretenders", "output": "â â —⠑⠞⠢⠙⠻⠎" }, { "input": "pretending", "output": "â â —⠑⠞⠢⠙⠌" }, { "input": "pretends", "output": "â â —⠑⠞⠢⠙⠎" }, { "input": "pretense", "output": "â â —⠑⠞⠢⠎⠑" }, { "input": "pretense's", "output": "â â —⠑⠞⠢⠎⠑⠄⠎" }, { "input": "pretenses", "output": "â â —⠑⠞⠢⠎⠑⠎" }, { "input": "pretension", "output": "â â —⠑⠞⠢⠨â " }, { "input": "pretension's", "output": "â â —⠑⠞⠢⠨â â „â Ž" }, { "input": "pretensions", "output": "â â —⠑⠞⠢⠨â â Ž" }, { "input": "pretentious", "output": "â â —⠑⠞⠢⠞⠊⠳⠎" }, { "input": "pretentiously", "output": "â â —⠑⠞⠢⠞⠊⠳⠎⠇⠽" }, { "input": "pretentiousness", "output": "â â —⠑⠞⠢⠞⠊⠳⠎⠰⠎" }, { "input": "pretentiousness's", "output": "â â —⠑⠞⠢⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "preterit", "output": "â â —⠑⠞⠻⠊⠞" }, { "input": "preterit's", "output": "â â —⠑⠞⠻⠊⠞⠄⠎" }, { "input": "preterits", "output": "â â —⠑⠞⠻⠊⠞⠎" }, { "input": "preterm", "output": "â â —â ‘â žâ »â " }, { "input": "preternatural", "output": "â â —â ‘â žâ »â â â žâ ¥â —â â ‡" }, { "input": "pretest", "output": "â â —â ‘â žâ ‘â Œ" }, { "input": "pretested", "output": "â â —⠑⠞⠑⠌⠫" }, { "input": "pretesting", "output": "â â —⠑⠞⠑⠌⠌" }, { "input": "pretests", "output": "â â —⠑⠞⠑⠌⠎" }, { "input": "pretext", "output": "â â —â ‘â žâ ‘â ­â ž" }, { "input": "pretext's", "output": "â â —â ‘â žâ ‘â ­â žâ „â Ž" }, { "input": "pretexts", "output": "â â —â ‘â žâ ‘â ­â žâ Ž" }, { "input": "pretrial", "output": "â â —â ‘â žâ —â Šâ â ‡" }, { "input": "pretrials", "output": "â â —â ‘â žâ —â Šâ â ‡â Ž" }, { "input": "prettied", "output": "â â —â ‘â žâ žâ Šâ «" }, { "input": "prettier", "output": "â â —â ‘â žâ žâ Šâ »" }, { "input": "pretties", "output": "â â —â ‘â žâ žâ Šâ ‘â Ž" }, { "input": "prettiest", "output": "â â —â ‘â žâ žâ Šâ ‘â Œ" }, { "input": "prettified", "output": "â â —â ‘â žâ žâ Šâ ‹â Šâ «" }, { "input": "prettifies", "output": "â â —â ‘â žâ žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "prettify", "output": "â â —â ‘â žâ žâ Šâ ‹â ½" }, { "input": "prettifying", "output": "â â —⠑⠞⠞⠊⠋⠽⠌" }, { "input": "prettily", "output": "â â —⠑⠞⠞⠊⠇⠽" }, { "input": "prettiness", "output": "â â —â ‘â žâ žâ Šâ °â Ž" }, { "input": "prettiness's", "output": "â â —â ‘â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "pretty", "output": "â â —â ‘â žâ žâ ½" }, { "input": "pretty's", "output": "â â —⠑⠞⠞⠽⠄⠎" }, { "input": "prettying", "output": "â â —⠑⠞⠞⠽⠌" }, { "input": "pretzel", "output": "â â —⠑⠞⠵⠑⠇" }, { "input": "pretzel's", "output": "â â —⠑⠞⠵⠑⠇⠄⠎" }, { "input": "pretzels", "output": "â â —⠑⠞⠵⠑⠇⠎" }, { "input": "prevail", "output": "â â —â ‘â §â â Šâ ‡" }, { "input": "prevailed", "output": "â â —â ‘â §â â Šâ ‡â «" }, { "input": "prevailing", "output": "â â —â ‘â §â â Šâ ‡â Œ" }, { "input": "prevails", "output": "â â —â ‘â §â â Šâ ‡â Ž" }, { "input": "prevalence", "output": "â â —â ‘â §â â ‡â °â ‘" }, { "input": "prevalence's", "output": "â â —â ‘â §â â ‡â °â ‘â „â Ž" }, { "input": "prevalent", "output": "â â —â ‘â §â â ‡â ¢â ž" }, { "input": "prevaricate", "output": "â â —⠑⠧⠜⠊⠉â â žâ ‘" }, { "input": "prevaricated", "output": "â â —⠑⠧⠜⠊⠉â â žâ «" }, { "input": "prevaricates", "output": "â â —⠑⠧⠜⠊⠉â â žâ ‘â Ž" }, { "input": "prevaricating", "output": "â â —⠑⠧⠜⠊⠉â â žâ Œ" }, { "input": "prevarication", "output": "â â —⠑⠧⠜⠊⠉⠠â " }, { "input": "prevarication's", "output": "â â —⠑⠧⠜⠊⠉⠠â â „â Ž" }, { "input": "prevarications", "output": "â â —⠑⠧⠜⠊⠉⠠â â Ž" }, { "input": "prevaricator", "output": "â â —⠑⠧⠜⠊⠉â â žâ •â —" }, { "input": "prevaricator's", "output": "â â —⠑⠧⠜⠊⠉â â žâ •â —â „â Ž" }, { "input": "prevaricators", "output": "â â —⠑⠧⠜⠊⠉â â žâ •â —â Ž" }, { "input": "prevent", "output": "â â —⠑⠧⠢⠞" }, { "input": "preventable", "output": "â â —⠑⠧⠢⠞â â ¼" }, { "input": "preventative", "output": "â â —⠑⠧⠢⠞â â žâ Šâ §â ‘" }, { "input": "preventative's", "output": "â â —⠑⠧⠢⠞â â žâ Šâ §â ‘â „â Ž" }, { "input": "preventatives", "output": "â â —⠑⠧⠢⠞â â žâ Šâ §â ‘â Ž" }, { "input": "prevented", "output": "â â —⠑⠧⠢⠞⠫" }, { "input": "preventing", "output": "â â —⠑⠧⠢⠞⠌" }, { "input": "prevention", "output": "â â —⠑⠧⠢⠰â " }, { "input": "prevention's", "output": "â â —⠑⠧⠢⠰â â „â Ž" }, { "input": "preventive", "output": "â â —⠑⠧⠢⠞⠊⠧⠑" }, { "input": "preventive's", "output": "â â —⠑⠧⠢⠞⠊⠧⠑⠄⠎" }, { "input": "preventives", "output": "â â —⠑⠧⠢⠞⠊⠧⠑⠎" }, { "input": "prevents", "output": "â â —⠑⠧⠢⠞⠎" }, { "input": "preview", "output": "â â —â ‘â §â Šâ ‘â º" }, { "input": "preview's", "output": "â â —⠑⠧⠊⠑⠺⠄⠎" }, { "input": "previewed", "output": "â â —⠑⠧⠊⠑⠺⠫" }, { "input": "previewer", "output": "â â —⠑⠧⠊⠑⠺⠻" }, { "input": "previewers", "output": "â â —⠑⠧⠊⠑⠺⠻⠎" }, { "input": "previewing", "output": "â â —⠑⠧⠊⠑⠺⠌" }, { "input": "previews", "output": "â â —⠑⠧⠊⠑⠺⠎" }, { "input": "previous", "output": "â â —⠑⠧⠊⠳⠎" }, { "input": "previously", "output": "â â —⠑⠧⠊⠳⠎⠇⠽" }, { "input": "prevision", "output": "â â —â ‘â §â Šâ ¨â " }, { "input": "prevision's", "output": "â â —â ‘â §â Šâ ¨â â „â Ž" }, { "input": "previsions", "output": "â â —â ‘â §â Šâ ¨â â Ž" }, { "input": "prewar", "output": "â â —⠑⠺⠜" }, { "input": "prey", "output": "â â —â ‘â ½" }, { "input": "prey's", "output": "â â —⠑⠽⠄⠎" }, { "input": "preyed", "output": "â â —⠑⠽⠫" }, { "input": "preying", "output": "â â —⠑⠽⠌" }, { "input": "preys", "output": "â â —⠑⠽⠎" }, { "input": "priapic", "output": "â â —â Šâ â â Šâ ‰" }, { "input": "price", "output": "â â —⠊⠉⠑" }, { "input": "price's", "output": "â â —⠊⠉⠑⠄⠎" }, { "input": "priced", "output": "â â —⠊⠉⠫" }, { "input": "priceless", "output": "â â —⠊⠉⠑⠨⠎" }, { "input": "prices", "output": "â â —⠊⠉⠑⠎" }, { "input": "pricey", "output": "â â —⠊⠉⠑⠽" }, { "input": "pricier", "output": "â â —⠊⠉⠊⠻" }, { "input": "priciest", "output": "â â —⠊⠉⠊⠑⠌" }, { "input": "pricing", "output": "â â —⠊⠉⠌" }, { "input": "prick", "output": "â â —⠊⠉⠅" }, { "input": "prick's", "output": "â â —⠊⠉⠅⠄⠎" }, { "input": "pricked", "output": "â â —⠊⠉⠅⠫" }, { "input": "pricker", "output": "â â —⠊⠉⠅⠻" }, { "input": "pricker's", "output": "â â —⠊⠉⠅⠻⠄⠎" }, { "input": "prickers", "output": "â â —⠊⠉⠅⠻⠎" }, { "input": "pricking", "output": "â â —⠊⠉⠅⠌" }, { "input": "prickle", "output": "â â —⠊⠉⠅⠇⠑" }, { "input": "prickle's", "output": "â â —⠊⠉⠅⠇⠑⠄⠎" }, { "input": "prickled", "output": "â â —⠊⠉⠅⠇⠫" }, { "input": "prickles", "output": "â â —⠊⠉⠅⠇⠑⠎" }, { "input": "pricklier", "output": "â â —⠊⠉⠅⠇⠊⠻" }, { "input": "prickliest", "output": "â â —⠊⠉⠅⠇⠊⠑⠌" }, { "input": "prickliness", "output": "â â —⠊⠉⠅⠇⠊⠰⠎" }, { "input": "prickliness's", "output": "â â —⠊⠉⠅⠇⠊⠰⠎⠄⠎" }, { "input": "prickling", "output": "â â —⠊⠉⠅⠇⠌" }, { "input": "prickly", "output": "â â —⠊⠉⠅⠇⠽" }, { "input": "pricks", "output": "â â —⠊⠉⠅⠎" }, { "input": "pride", "output": "â â —⠊⠙⠑" }, { "input": "pride's", "output": "â â —⠊⠙⠑⠄⠎" }, { "input": "prided", "output": "â â —⠊⠙⠫" }, { "input": "prideful", "output": "â â —⠊⠙⠑⠰⠇" }, { "input": "pridefully", "output": "â â —⠊⠙⠑⠰⠇⠇⠽" }, { "input": "prides", "output": "â â —⠊⠙⠑⠎" }, { "input": "priding", "output": "â â —⠊⠙⠌" }, { "input": "pried", "output": "â â —â Šâ «" }, { "input": "prier", "output": "â â —â Šâ »" }, { "input": "prier's", "output": "â â —⠊⠻⠄⠎" }, { "input": "priers", "output": "â â —⠊⠻⠎" }, { "input": "pries", "output": "â â —â Šâ ‘â Ž" }, { "input": "priest", "output": "â â —â Šâ ‘â Œ" }, { "input": "priest's", "output": "â â —⠊⠑⠌⠄⠎" }, { "input": "priestess", "output": "â â —⠊⠑⠌⠑⠎⠎" }, { "input": "priestess's", "output": "â â —⠊⠑⠌⠑⠎⠎⠄⠎" }, { "input": "priestesses", "output": "â â —⠊⠑⠌⠑⠎⠎⠑⠎" }, { "input": "priesthood", "output": "â â —⠊⠑⠌⠓⠕⠕⠙" }, { "input": "priesthood's", "output": "â â —⠊⠑⠌⠓⠕⠕⠙⠄⠎" }, { "input": "priesthoods", "output": "â â —⠊⠑⠌⠓⠕⠕⠙⠎" }, { "input": "priestlier", "output": "â â —⠊⠑⠌⠇⠊⠻" }, { "input": "priestliest", "output": "â â —⠊⠑⠌⠇⠊⠑⠌" }, { "input": "priestliness", "output": "â â —⠊⠑⠌⠇⠊⠰⠎" }, { "input": "priestliness's", "output": "â â —⠊⠑⠌⠇⠊⠰⠎⠄⠎" }, { "input": "priestly", "output": "â â —⠊⠑⠌⠇⠽" }, { "input": "priests", "output": "â â —⠊⠑⠌⠎" }, { "input": "prig", "output": "â â —â Šâ ›" }, { "input": "prig's", "output": "â â —⠊⠛⠄⠎" }, { "input": "priggish", "output": "â â —â Šâ ¶â Šâ ©" }, { "input": "priggishness's", "output": "â â —â Šâ ¶â Šâ ©â °â Žâ „â Ž" }, { "input": "prigs", "output": "â â —⠊⠛⠎" }, { "input": "prim", "output": "â â —â Šâ " }, { "input": "primacy", "output": "â â —â Šâ â â ‰â ½" }, { "input": "primacy's", "output": "â â —â Šâ â â ‰â ½â „â Ž" }, { "input": "primal", "output": "â â —â Šâ â â ‡" }, { "input": "primaries", "output": "â â —â Šâ â œâ Šâ ‘â Ž" }, { "input": "primarily", "output": "â â —â Šâ â œâ Šâ ‡â ½" }, { "input": "primary", "output": "â â —â Šâ â œâ ½" }, { "input": "primary's", "output": "â â —â Šâ â œâ ½â „â Ž" }, { "input": "primate", "output": "â â —â Šâ â â žâ ‘" }, { "input": "primate's", "output": "â â —â Šâ â â žâ ‘â „â Ž" }, { "input": "primates", "output": "â â —â Šâ â â žâ ‘â Ž" }, { "input": "prime", "output": "â â —â Šâ â ‘" }, { "input": "prime's", "output": "â â —â Šâ â ‘â „â Ž" }, { "input": "primed", "output": "â â —â Šâ â «" }, { "input": "primer", "output": "â â —â Šâ â »" }, { "input": "primer's", "output": "â â —â Šâ â »â „â Ž" }, { "input": "primers", "output": "â â —â Šâ â »â Ž" }, { "input": "primes", "output": "â â —â Šâ â ‘â Ž" }, { "input": "primeval", "output": "â â —â Šâ â ‘â §â â ‡" }, { "input": "priming", "output": "â â —â Šâ â Œ" }, { "input": "priming's", "output": "â â —â Šâ â Œâ „â Ž" }, { "input": "primitive", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘" }, { "input": "primitive's", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘â „â Ž" }, { "input": "primitively", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "primitiveness's", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "primitives", "output": "â â —â Šâ â Šâ žâ Šâ §â ‘â Ž" }, { "input": "primly", "output": "â â —â Šâ â ‡â ½" }, { "input": "primmer", "output": "â â —â Šâ â â »" }, { "input": "primmest", "output": "â â —â Šâ â â ‘â Œ" }, { "input": "primness", "output": "â â —â Šâ â °â Ž" }, { "input": "primness's", "output": "â â —â Šâ â °â Žâ „â Ž" }, { "input": "primogenitor", "output": "â â —â Šâ â •⠛⠢⠊⠞⠕⠗" }, { "input": "primogenitor's", "output": "â â —â Šâ â •⠛⠢⠊⠞⠕⠗⠄⠎" }, { "input": "primogenitors", "output": "â â —â Šâ â •⠛⠢⠊⠞⠕⠗⠎" }, { "input": "primogeniture", "output": "â â —â Šâ â •⠛⠢⠊⠞⠥⠗⠑" }, { "input": "primogeniture's", "output": "â â —â Šâ â •⠛⠢⠊⠞⠥⠗⠑⠄⠎" }, { "input": "primordial", "output": "â â —â Šâ â •⠗⠙⠊â â ‡" }, { "input": "primordially", "output": "â â —â Šâ â •⠗⠙⠊⠠⠽" }, { "input": "primp", "output": "â â —â Šâ â " }, { "input": "primped", "output": "â â —â Šâ â â «" }, { "input": "primping", "output": "â â —â Šâ â â Œ" }, { "input": "primps", "output": "â â —â Šâ â â Ž" }, { "input": "primrose", "output": "â â —â Šâ â —â •â Žâ ‘" }, { "input": "primrose's", "output": "â â —â Šâ â —â •â Žâ ‘â „â Ž" }, { "input": "primroses", "output": "â â —â Šâ â —â •â Žâ ‘â Ž" }, { "input": "prince", "output": "â â —⠔⠉⠑" }, { "input": "prince's", "output": "â â —⠔⠉⠑⠄⠎" }, { "input": "princedom", "output": "â â —⠔⠉⠑⠙⠕â " }, { "input": "princedom's", "output": "â â —⠔⠉⠑⠙⠕â â „â Ž" }, { "input": "princedoms", "output": "â â —⠔⠉⠑⠙⠕â â Ž" }, { "input": "princelier", "output": "â â —⠔⠉⠑⠇⠊⠻" }, { "input": "princeliest", "output": "â â —⠔⠉⠑⠇⠊⠑⠌" }, { "input": "princeliness", "output": "â â —⠔⠉⠑⠇⠊⠰⠎" }, { "input": "princeliness's", "output": "â â —⠔⠉⠑⠇⠊⠰⠎⠄⠎" }, { "input": "princely", "output": "â â —⠔⠉⠑⠇⠽" }, { "input": "princes", "output": "â â —⠔⠉⠑⠎" }, { "input": "princess", "output": "â â —⠔⠉⠑⠎⠎" }, { "input": "princess's", "output": "â â —⠔⠉⠑⠎⠎⠄⠎" }, { "input": "princesses", "output": "â â —⠔⠉⠑⠎⠎⠑⠎" }, { "input": "principal", "output": "â â —⠔⠉⠊â â â ‡" }, { "input": "principal's", "output": "â â —⠔⠉⠊â â â ‡â „â Ž" }, { "input": "principalities", "output": "â â —⠔⠉⠊â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "principality", "output": "â â —⠔⠉⠊â â â ‡â °â ½" }, { "input": "principality's", "output": "â â —⠔⠉⠊â â â ‡â °â ½â „â Ž" }, { "input": "principally", "output": "â â —⠔⠉⠊â â  â ½" }, { "input": "principals", "output": "â â —⠔⠉⠊â â â ‡â Ž" }, { "input": "principle", "output": "â â —⠔⠉⠊â â ‡â ‘" }, { "input": "principle's", "output": "â â —⠔⠉⠊â â ‡â ‘â „â Ž" }, { "input": "principled", "output": "â â —⠔⠉⠊â â ‡â «" }, { "input": "principles", "output": "â â —⠔⠉⠊â â ‡â ‘â Ž" }, { "input": "print", "output": "â â —⠔⠞" }, { "input": "print's", "output": "â â —⠔⠞⠄⠎" }, { "input": "printable", "output": "â â —⠔⠞â â ¼" }, { "input": "printed", "output": "â â —⠔⠞⠫" }, { "input": "printer", "output": "â â —⠔⠞⠻" }, { "input": "printer's", "output": "â â —⠔⠞⠻⠄⠎" }, { "input": "printers", "output": "â â —⠔⠞⠻⠎" }, { "input": "printing", "output": "â â —⠔⠞⠌" }, { "input": "printing's", "output": "â â —⠔⠞⠌⠄⠎" }, { "input": "printings", "output": "â â —⠔⠞⠌⠎" }, { "input": "printout", "output": "â â —⠔⠞⠳⠞" }, { "input": "printout's", "output": "â â —⠔⠞⠳⠞⠄⠎" }, { "input": "printouts", "output": "â â —⠔⠞⠳⠞⠎" }, { "input": "prints", "output": "â â —⠔⠞⠎" }, { "input": "prior", "output": "â â —â Šâ •â —" }, { "input": "prior's", "output": "â â —â Šâ •â —â „â Ž" }, { "input": "prioress", "output": "â â —â Šâ •â —â ‘â Žâ Ž" }, { "input": "prioress's", "output": "â â —â Šâ •â —â ‘â Žâ Žâ „â Ž" }, { "input": "prioresses", "output": "â â —â Šâ •â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "priories", "output": "â â —â Šâ •â —â Šâ ‘â Ž" }, { "input": "priorities", "output": "â â —â Šâ •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "prioritization", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠠â " }, { "input": "prioritize", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠑" }, { "input": "prioritized", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠫" }, { "input": "prioritizes", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠑⠎" }, { "input": "prioritizing", "output": "â â —⠊⠕⠗⠊⠞⠊⠵⠌" }, { "input": "priority", "output": "â â —â Šâ •â —â °â ½" }, { "input": "priority's", "output": "â â —⠊⠕⠗⠰⠽⠄⠎" }, { "input": "priors", "output": "â â —â Šâ •â —â Ž" }, { "input": "priory", "output": "â â —â Šâ •â —â ½" }, { "input": "priory's", "output": "â â —⠊⠕⠗⠽⠄⠎" }, { "input": "prism", "output": "â â —â Šâ Žâ " }, { "input": "prism's", "output": "â â —â Šâ Žâ â „â Ž" }, { "input": "prismatic", "output": "â â —â Šâ Žâ â â žâ Šâ ‰" }, { "input": "prisms", "output": "â â —â Šâ Žâ â Ž" }, { "input": "prison", "output": "â â —â Šâ Žâ •â " }, { "input": "prison's", "output": "â â —â Šâ Žâ •â â „â Ž" }, { "input": "prisoner", "output": "â â —â Šâ Žâ •â â »" }, { "input": "prisoner's", "output": "â â —â Šâ Žâ •â â »â „â Ž" }, { "input": "prisoners", "output": "â â —â Šâ Žâ •â â »â Ž" }, { "input": "prisons", "output": "â â —â Šâ Žâ •â â Ž" }, { "input": "prissier", "output": "â â —â Šâ Žâ Žâ Šâ »" }, { "input": "prissiest", "output": "â â —â Šâ Žâ Žâ Šâ ‘â Œ" }, { "input": "prissiness", "output": "â â —â Šâ Žâ Žâ Šâ °â Ž" }, { "input": "prissiness's", "output": "â â —â Šâ Žâ Žâ Šâ °â Žâ „â Ž" }, { "input": "prissy", "output": "â â —â Šâ Žâ Žâ ½" }, { "input": "pristine", "output": "â â —⠊⠌⠔⠑" }, { "input": "prithee", "output": "â â —⠊⠮⠑" }, { "input": "privacy", "output": "â â —â Šâ §â â ‰â ½" }, { "input": "privacy's", "output": "â â —â Šâ §â â ‰â ½â „â Ž" }, { "input": "private", "output": "â â —â Šâ §â â žâ ‘" }, { "input": "private's", "output": "â â —â Šâ §â â žâ ‘â „â Ž" }, { "input": "privateer", "output": "â â —â Šâ §â â žâ ‘â »" }, { "input": "privateer's", "output": "â â —â Šâ §â â žâ ‘⠻⠄⠎" }, { "input": "privateers", "output": "â â —â Šâ §â â žâ ‘⠻⠎" }, { "input": "privately", "output": "â â —â Šâ §â â žâ ‘⠇⠽" }, { "input": "privater", "output": "â â —â Šâ §â â žâ »" }, { "input": "privates", "output": "â â —â Šâ §â â žâ ‘â Ž" }, { "input": "privatest", "output": "â â —â Šâ §â â žâ ‘â Œ" }, { "input": "privation", "output": "â â —â Šâ §â  â " }, { "input": "privation's", "output": "â â —â Šâ §â  â â „â Ž" }, { "input": "privations", "output": "â â —â Šâ §â  â â Ž" }, { "input": "privatization", "output": "â â —â Šâ §â â žâ Šâ µâ  â " }, { "input": "privatization's", "output": "â â —â Šâ §â â žâ Šâ µâ  â â „â Ž" }, { "input": "privatizations", "output": "â â —â Šâ §â â žâ Šâ µâ  â â Ž" }, { "input": "privatize", "output": "â â —â Šâ §â â žâ Šâ µâ ‘" }, { "input": "privatized", "output": "â â —â Šâ §â â žâ Šâ µâ «" }, { "input": "privatizes", "output": "â â —â Šâ §â â žâ Šâ µâ ‘â Ž" }, { "input": "privatizing", "output": "â â —â Šâ §â â žâ Šâ µâ Œ" }, { "input": "privet", "output": "â â —â Šâ §â ‘â ž" }, { "input": "privet's", "output": "â â —â Šâ §â ‘â žâ „â Ž" }, { "input": "privets", "output": "â â —â Šâ §â ‘â žâ Ž" }, { "input": "privier", "output": "â â —â Šâ §â Šâ »" }, { "input": "privies", "output": "â â —â Šâ §â Šâ ‘â Ž" }, { "input": "priviest", "output": "â â —â Šâ §â Šâ ‘â Œ" }, { "input": "privilege", "output": "â â —⠊⠧⠊⠇⠑⠛⠑" }, { "input": "privilege's", "output": "â â —⠊⠧⠊⠇⠑⠛⠑⠄⠎" }, { "input": "privileged", "output": "â â —⠊⠧⠊⠇⠑⠛⠫" }, { "input": "privileges", "output": "â â —⠊⠧⠊⠇⠑⠛⠑⠎" }, { "input": "privileging", "output": "â â —⠊⠧⠊⠇⠑⠛⠌" }, { "input": "privily", "output": "â â —⠊⠧⠊⠇⠽" }, { "input": "privy", "output": "â â —â Šâ §â ½" }, { "input": "privy's", "output": "â â —⠊⠧⠽⠄⠎" }, { "input": "prize", "output": "â â —⠊⠵⠑" }, { "input": "prize's", "output": "â â —⠊⠵⠑⠄⠎" }, { "input": "prized", "output": "â â —⠊⠵⠫" }, { "input": "prizefight", "output": "â â —⠊⠵⠑⠋⠊⠣⠞" }, { "input": "prizefight's", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠄⠎" }, { "input": "prizefighter", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠻" }, { "input": "prizefighter's", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠻⠄⠎" }, { "input": "prizefighters", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠻⠎" }, { "input": "prizefighting", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠌" }, { "input": "prizefighting's", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠌⠄⠎" }, { "input": "prizefights", "output": "â â —⠊⠵⠑⠋⠊⠣⠞⠎" }, { "input": "prizes", "output": "â â —⠊⠵⠑⠎" }, { "input": "prizewinner", "output": "â â —⠊⠵⠑⠺⠔â â »" }, { "input": "prizewinner's", "output": "â â —⠊⠵⠑⠺⠔â â »â „â Ž" }, { "input": "prizewinners", "output": "â â —⠊⠵⠑⠺⠔â â »â Ž" }, { "input": "prizing", "output": "â â —⠊⠵⠌" }, { "input": "pro", "output": "â â —â •" }, { "input": "pro's", "output": "â â —â •â „â Ž" }, { "input": "proactive", "output": "â â —â •â â ‰â žâ Šâ §â ‘" }, { "input": "probabilistic", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â Šâ Œâ Šâ ‰" }, { "input": "probabilities", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "probability", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â °â ½" }, { "input": "probability's", "output": "â â —â •â ƒâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "probable", "output": "â â —â •â ƒâ â ¼" }, { "input": "probable's", "output": "â â —â •â ƒâ â ¼â „â Ž" }, { "input": "probables", "output": "â â —â •â ƒâ â ¼â Ž" }, { "input": "probably", "output": "â â —â •â ƒâ â ƒâ ‡â ½" }, { "input": "probate", "output": "â â —â •â ƒâ â žâ ‘" }, { "input": "probate's", "output": "â â —â •â ƒâ â žâ ‘â „â Ž" }, { "input": "probated", "output": "â â —â •â ƒâ â žâ «" }, { "input": "probates", "output": "â â —â •â ƒâ â žâ ‘â Ž" }, { "input": "probating", "output": "â â —â •â ƒâ â žâ Œ" }, { "input": "probation", "output": "â â —⠕⠃⠠â " }, { "input": "probation's", "output": "â â —⠕⠃⠠â â „â Ž" }, { "input": "probational", "output": "â â —⠕⠃⠠â â â ‡" }, { "input": "probationary", "output": "â â —⠕⠃⠠â â œâ ½" }, { "input": "probationer", "output": "â â —⠕⠃⠠â â »" }, { "input": "probationer's", "output": "â â —⠕⠃⠠â â »â „â Ž" }, { "input": "probationers", "output": "â â —⠕⠃⠠â â »â Ž" }, { "input": "probe", "output": "â â —⠕⠃⠑" }, { "input": "probe's", "output": "â â —⠕⠃⠑⠄⠎" }, { "input": "probed", "output": "â â —⠕⠃⠫" }, { "input": "probes", "output": "â â —⠕⠃⠑⠎" }, { "input": "probing", "output": "â â —⠕⠃⠌" }, { "input": "probity", "output": "â â —⠕⠃⠰⠽" }, { "input": "probity's", "output": "â â —⠕⠃⠰⠽⠄⠎" }, { "input": "problem", "output": "â â —â •â ¼â " }, { "input": "problem's", "output": "â â —â •â ¼â â „â Ž" }, { "input": "problematic", "output": "â â —â •â ¼â â â žâ Šâ ‰" }, { "input": "problematical", "output": "â â —â •â ¼â â â žâ Šâ ‰â â ‡" }, { "input": "problematically", "output": "â â —â •â ¼â â â žâ Šâ ‰â  â ½" }, { "input": "problems", "output": "â â —â •â ¼â â Ž" }, { "input": "proboscis", "output": "â â —⠕⠃⠕⠎⠉⠊⠎" }, { "input": "proboscis's", "output": "â â —⠕⠃⠕⠎⠉⠊⠎⠄⠎" }, { "input": "proboscises", "output": "â â —⠕⠃⠕⠎⠉⠊⠎⠑⠎" }, { "input": "procaine", "output": "â â —â •â ‰â â ”â ‘" }, { "input": "procaine's", "output": "â â —â •â ‰â â ”â ‘â „â Ž" }, { "input": "procedural", "output": "â â —⠕⠉⠫⠥⠗â â ‡" }, { "input": "procedure", "output": "â â —⠕⠉⠫⠥⠗⠑" }, { "input": "procedure's", "output": "â â —⠕⠉⠫⠥⠗⠑⠄⠎" }, { "input": "procedures", "output": "â â —⠕⠉⠫⠥⠗⠑⠎" }, { "input": "proceed", "output": "â â —⠕⠉⠑⠫" }, { "input": "proceeded", "output": "â â —⠕⠉⠑⠫⠫" }, { "input": "proceeding", "output": "â â —⠕⠉⠑⠫⠌" }, { "input": "proceeding's", "output": "â â —⠕⠉⠑⠫⠌⠄⠎" }, { "input": "proceedings", "output": "â â —⠕⠉⠑⠫⠌⠎" }, { "input": "proceeds", "output": "â â —⠕⠉⠑⠫⠎" }, { "input": "proceeds's", "output": "â â —⠕⠉⠑⠫⠎⠄⠎" }, { "input": "process", "output": "â â —⠕⠉⠑⠎⠎" }, { "input": "process's", "output": "â â —⠕⠉⠑⠎⠎⠄⠎" }, { "input": "processed", "output": "â â —⠕⠉⠑⠎⠎⠫" }, { "input": "processes", "output": "â â —⠕⠉⠑⠎⠎⠑⠎" }, { "input": "processing", "output": "â â —⠕⠉⠑⠎⠎⠌" }, { "input": "procession", "output": "â â —⠕⠉⠑⠎⠨â " }, { "input": "procession's", "output": "â â —⠕⠉⠑⠎⠨â â „â Ž" }, { "input": "processional", "output": "â â —⠕⠉⠑⠎⠨â â â ‡" }, { "input": "processional's", "output": "â â —⠕⠉⠑⠎⠨â â â ‡â „â Ž" }, { "input": "processionals", "output": "â â —⠕⠉⠑⠎⠨â â â ‡â Ž" }, { "input": "processioned", "output": "â â —⠕⠉⠑⠎⠨â â «" }, { "input": "processioning", "output": "â â —⠕⠉⠑⠎⠨â â Œ" }, { "input": "processions", "output": "â â —⠕⠉⠑⠎⠨â â Ž" }, { "input": "processor", "output": "â â —⠕⠉⠑⠎⠎⠕⠗" }, { "input": "processor's", "output": "â â —⠕⠉⠑⠎⠎⠕⠗⠄⠎" }, { "input": "processors", "output": "â â —⠕⠉⠑⠎⠎⠕⠗⠎" }, { "input": "proclaim", "output": "â â —⠕⠉⠇â â Šâ " }, { "input": "proclaimed", "output": "â â —⠕⠉⠇â â Šâ â «" }, { "input": "proclaiming", "output": "â â —⠕⠉⠇â â Šâ â Œ" }, { "input": "proclaims", "output": "â â —⠕⠉⠇â â Šâ â Ž" }, { "input": "proclamation", "output": "â â —⠕⠉⠇â â â  â " }, { "input": "proclamation's", "output": "â â —⠕⠉⠇â â â  â â „â Ž" }, { "input": "proclamations", "output": "â â —⠕⠉⠇â â â  â â Ž" }, { "input": "proclivities", "output": "â â —⠕⠉⠇⠊⠧⠊⠞⠊⠑⠎" }, { "input": "proclivity", "output": "â â —⠕⠉⠇⠊⠧⠰⠽" }, { "input": "proclivity's", "output": "â â —⠕⠉⠇⠊⠧⠰⠽⠄⠎" }, { "input": "proconsul", "output": "â â —⠕⠉⠕â â Žâ ¥â ‡" }, { "input": "proconsul's", "output": "â â —⠕⠉⠕â â Žâ ¥â ‡â „â Ž" }, { "input": "proconsular", "output": "â â —⠕⠉⠕â â Žâ ¥â ‡â œ" }, { "input": "proconsuls", "output": "â â —⠕⠉⠕â â Žâ ¥â ‡â Ž" }, { "input": "procrastinate", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ ‘" }, { "input": "procrastinated", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ «" }, { "input": "procrastinates", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ ‘â Ž" }, { "input": "procrastinating", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ Œ" }, { "input": "procrastination", "output": "â â —⠕⠉⠗â â Œâ ”â  â " }, { "input": "procrastination's", "output": "â â —⠕⠉⠗â â Œâ ”â  â â „â Ž" }, { "input": "procrastinator", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ •â —" }, { "input": "procrastinator's", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ •â —â „â Ž" }, { "input": "procrastinators", "output": "â â —⠕⠉⠗â â Œâ ”â â žâ •â —â Ž" }, { "input": "procreate", "output": "â â —⠕⠉⠗⠂⠞⠑" }, { "input": "procreated", "output": "â â —⠕⠉⠗⠂⠞⠫" }, { "input": "procreates", "output": "â â —⠕⠉⠗⠂⠞⠑⠎" }, { "input": "procreating", "output": "â â —⠕⠉⠗⠂⠞⠌" }, { "input": "procreation", "output": "â â —⠕⠉⠗⠑⠠â " }, { "input": "procreation's", "output": "â â —⠕⠉⠗⠑⠠â â „â Ž" }, { "input": "procreative", "output": "â â —⠕⠉⠗⠂⠞⠊⠧⠑" }, { "input": "proctor", "output": "â â —⠕⠉⠞⠕⠗" }, { "input": "proctor's", "output": "â â —⠕⠉⠞⠕⠗⠄⠎" }, { "input": "proctored", "output": "â â —⠕⠉⠞⠕⠗⠫" }, { "input": "proctoring", "output": "â â —⠕⠉⠞⠕⠗⠌" }, { "input": "proctors", "output": "â â —⠕⠉⠞⠕⠗⠎" }, { "input": "procurable", "output": "â â —⠕⠉⠥⠗â â ¼" }, { "input": "procurator", "output": "â â —⠕⠉⠥⠗â â žâ •â —" }, { "input": "procurator's", "output": "â â —⠕⠉⠥⠗â â žâ •â —â „â Ž" }, { "input": "procurators", "output": "â â —⠕⠉⠥⠗â â žâ •â —â Ž" }, { "input": "procure", "output": "â â —⠕⠉⠥⠗⠑" }, { "input": "procured", "output": "â â —⠕⠉⠥⠗⠫" }, { "input": "procurement", "output": "â â —⠕⠉⠥⠗⠑⠰⠞" }, { "input": "procurement's", "output": "â â —⠕⠉⠥⠗⠑⠰⠞⠄⠎" }, { "input": "procurer", "output": "â â —⠕⠉⠥⠗⠻" }, { "input": "procurer's", "output": "â â —⠕⠉⠥⠗⠻⠄⠎" }, { "input": "procurers", "output": "â â —⠕⠉⠥⠗⠻⠎" }, { "input": "procures", "output": "â â —⠕⠉⠥⠗⠑⠎" }, { "input": "procuring", "output": "â â —⠕⠉⠥⠗⠌" }, { "input": "prod", "output": "â â —â •â ™" }, { "input": "prod's", "output": "â â —⠕⠙⠄⠎" }, { "input": "prodded", "output": "â â —⠕⠲⠫" }, { "input": "prodding", "output": "â â —⠕⠲⠌" }, { "input": "prodigal", "output": "â â —⠕⠙⠊⠛â â ‡" }, { "input": "prodigal's", "output": "â â —⠕⠙⠊⠛â â ‡â „â Ž" }, { "input": "prodigality", "output": "â â —⠕⠙⠊⠛â â ‡â °â ½" }, { "input": "prodigality's", "output": "â â —⠕⠙⠊⠛â â ‡â °â ½â „â Ž" }, { "input": "prodigals", "output": "â â —⠕⠙⠊⠛â â ‡â Ž" }, { "input": "prodigies", "output": "â â —⠕⠙⠊⠛⠊⠑⠎" }, { "input": "prodigious", "output": "â â —⠕⠙⠊⠛⠊⠳⠎" }, { "input": "prodigiously", "output": "â â —⠕⠙⠊⠛⠊⠳⠎⠇⠽" }, { "input": "prodigy", "output": "â â —⠕⠙⠊⠛⠽" }, { "input": "prodigy's", "output": "â â —⠕⠙⠊⠛⠽⠄⠎" }, { "input": "prods", "output": "â â —⠕⠙⠎" }, { "input": "produce", "output": "â â —⠕⠙⠥⠉⠑" }, { "input": "produce's", "output": "â â —⠕⠙⠥⠉⠑⠄⠎" }, { "input": "produced", "output": "â â —⠕⠙⠥⠉⠫" }, { "input": "producer", "output": "â â —⠕⠙⠥⠉⠻" }, { "input": "producer's", "output": "â â —⠕⠙⠥⠉⠻⠄⠎" }, { "input": "producers", "output": "â â —⠕⠙⠥⠉⠻⠎" }, { "input": "produces", "output": "â â —⠕⠙⠥⠉⠑⠎" }, { "input": "producible", "output": "â â —⠕⠙⠥⠉⠊⠼" }, { "input": "producing", "output": "â â —⠕⠙⠥⠉⠌" }, { "input": "product", "output": "â â —⠕⠙⠥⠉⠞" }, { "input": "product's", "output": "â â —⠕⠙⠥⠉⠞⠄⠎" }, { "input": "production", "output": "â â —⠕⠙⠥⠉⠰â " }, { "input": "production's", "output": "â â —⠕⠙⠥⠉⠰â â „â Ž" }, { "input": "productions", "output": "â â —⠕⠙⠥⠉⠰â â Ž" }, { "input": "productive", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "productively", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "productiveness", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑⠰⠎" }, { "input": "productiveness's", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "productivity", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠰⠽" }, { "input": "productivity's", "output": "â â —⠕⠙⠥⠉⠞⠊⠧⠰⠽⠄⠎" }, { "input": "products", "output": "â â —⠕⠙⠥⠉⠞⠎" }, { "input": "prof", "output": "â â —â ·" }, { "input": "prof's", "output": "â â —â ·â „â Ž" }, { "input": "profanation", "output": "â â —â ·â â â  â " }, { "input": "profanation's", "output": "â â —â ·â â â  â â „â Ž" }, { "input": "profanations", "output": "â â —â ·â â â  â â Ž" }, { "input": "profane", "output": "â â —â •â ‹â â â ‘" }, { "input": "profaned", "output": "â â —â •â ‹â â â «" }, { "input": "profanely", "output": "â â —â •â ‹â â â ‘⠇⠽" }, { "input": "profaneness", "output": "â â —â •â ‹â â â ‘â °â Ž" }, { "input": "profaneness's", "output": "â â —â •â ‹â â â ‘â °â Žâ „â Ž" }, { "input": "profanes", "output": "â â —â •â ‹â â â ‘â Ž" }, { "input": "profaning", "output": "â â —â •â ‹â â â Œ" }, { "input": "profanities", "output": "â â —â •â ‹â â â Šâ žâ Šâ ‘â Ž" }, { "input": "profanity", "output": "â â —â •â ‹â â â °â ½" }, { "input": "profanity's", "output": "â â —â •â ‹â â â °â ½â „â Ž" }, { "input": "profess", "output": "â â —â •â ‹â ‘â Žâ Ž" }, { "input": "professed", "output": "â â —â •â ‹â ‘â Žâ Žâ «" }, { "input": "professedly", "output": "â â —⠕⠋⠑⠎⠎⠫⠇⠽" }, { "input": "professes", "output": "â â —â •â ‹â ‘â Žâ Žâ ‘â Ž" }, { "input": "professing", "output": "â â —â •â ‹â ‘â Žâ Žâ Œ" }, { "input": "profession", "output": "â â —â •â ‹â ‘â Žâ ¨â " }, { "input": "profession's", "output": "â â —â •â ‹â ‘â Žâ ¨â â „â Ž" }, { "input": "professional", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "professional's", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â „â Ž" }, { "input": "professionalism", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ Žâ " }, { "input": "professionalism's", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ Žâ â „â Ž" }, { "input": "professionalization", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ µâ  â " }, { "input": "professionalize", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ µâ ‘" }, { "input": "professionalized", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ µâ «" }, { "input": "professionalizes", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ µâ ‘â Ž" }, { "input": "professionalizing", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Šâ µâ Œ" }, { "input": "professionally", "output": "â â —â •â ‹â ‘â Žâ ¨â â  â ½" }, { "input": "professionals", "output": "â â —â •â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "professions", "output": "â â —â •â ‹â ‘â Žâ ¨â â Ž" }, { "input": "professor", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —" }, { "input": "professor's", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "professorial", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â Šâ â ‡" }, { "input": "professorially", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â Šâ  â ½" }, { "input": "professors", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â Ž" }, { "input": "professorship", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â ©â Šâ " }, { "input": "professorship's", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â ©â Šâ â „â Ž" }, { "input": "professorships", "output": "â â —â •â ‹â ‘â Žâ Žâ •â —â ©â Šâ â Ž" }, { "input": "proffer", "output": "â â —â ·â ‹â »" }, { "input": "proffer's", "output": "â â —⠷⠋⠻⠄⠎" }, { "input": "proffered", "output": "â â —⠷⠋⠻⠫" }, { "input": "proffering", "output": "â â —⠷⠋⠻⠌" }, { "input": "proffers", "output": "â â —⠷⠋⠻⠎" }, { "input": "proficiency", "output": "â â —⠕⠋⠊⠉⠊⠢⠉⠽" }, { "input": "proficiency's", "output": "â â —⠕⠋⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "proficient", "output": "â â —⠕⠋⠊⠉⠊⠢⠞" }, { "input": "proficient's", "output": "â â —⠕⠋⠊⠉⠊⠢⠞⠄⠎" }, { "input": "proficiently", "output": "â â —⠕⠋⠊⠉⠊⠢⠞⠇⠽" }, { "input": "proficients", "output": "â â —⠕⠋⠊⠉⠊⠢⠞⠎" }, { "input": "profile", "output": "â â —⠕⠋⠊⠇⠑" }, { "input": "profile's", "output": "â â —⠕⠋⠊⠇⠑⠄⠎" }, { "input": "profiled", "output": "â â —⠕⠋⠊⠇⠫" }, { "input": "profiles", "output": "â â —⠕⠋⠊⠇⠑⠎" }, { "input": "profiling", "output": "â â —⠕⠋⠊⠇⠌" }, { "input": "profit", "output": "â â —â ·â Šâ ž" }, { "input": "profit's", "output": "â â —â ·â Šâ žâ „â Ž" }, { "input": "profitability", "output": "â â —â ·â Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "profitability's", "output": "â â —â ·â Šâ žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "profitable", "output": "â â —â ·â Šâ žâ â ¼" }, { "input": "profitably", "output": "â â —â ·â Šâ žâ â ƒâ ‡â ½" }, { "input": "profited", "output": "â â —â ·â Šâ žâ «" }, { "input": "profiteer", "output": "â â —â ·â Šâ žâ ‘â »" }, { "input": "profiteer's", "output": "â â —⠷⠊⠞⠑⠻⠄⠎" }, { "input": "profiteered", "output": "â â —⠷⠊⠞⠑⠻⠫" }, { "input": "profiteering", "output": "â â —⠷⠊⠞⠑⠻⠌" }, { "input": "profiteering's", "output": "â â —⠷⠊⠞⠑⠻⠌⠄⠎" }, { "input": "profiteers", "output": "â â —⠷⠊⠞⠑⠻⠎" }, { "input": "profiting", "output": "â â —â ·â Šâ žâ Œ" }, { "input": "profitless", "output": "â â —⠷⠊⠞⠨⠎" }, { "input": "profits", "output": "â â —â ·â Šâ žâ Ž" }, { "input": "profligacy", "output": "â â —⠷⠇⠊⠛â â ‰â ½" }, { "input": "profligacy's", "output": "â â —⠷⠇⠊⠛â â ‰â ½â „â Ž" }, { "input": "profligate", "output": "â â —⠷⠇⠊⠛â â žâ ‘" }, { "input": "profligate's", "output": "â â —⠷⠇⠊⠛â â žâ ‘â „â Ž" }, { "input": "profligately", "output": "â â —⠷⠇⠊⠛â â žâ ‘⠇⠽" }, { "input": "profligates", "output": "â â —⠷⠇⠊⠛â â žâ ‘â Ž" }, { "input": "proforma", "output": "â â —â •â ‹â •â —â â " }, { "input": "profound", "output": "â â —⠕⠋⠨⠙" }, { "input": "profounder", "output": "â â —⠕⠋⠨⠙⠻" }, { "input": "profoundest", "output": "â â —⠕⠋⠨⠙⠑⠌" }, { "input": "profoundly", "output": "â â —⠕⠋⠨⠙⠇⠽" }, { "input": "profoundness", "output": "â â —⠕⠋⠨⠙⠰⠎" }, { "input": "profoundness's", "output": "â â —⠕⠋⠨⠙⠰⠎⠄⠎" }, { "input": "profs", "output": "â â —â •â ‹â Ž" }, { "input": "profundities", "output": "â â —â •â ‹â ¥â â ™â Šâ žâ Šâ ‘â Ž" }, { "input": "profundity", "output": "â â —â •â ‹â ¥â â ™â °â ½" }, { "input": "profundity's", "output": "â â —â •â ‹â ¥â â ™â °â ½â „â Ž" }, { "input": "profuse", "output": "â â —⠕⠋⠥⠎⠑" }, { "input": "profusely", "output": "â â —⠕⠋⠥⠎⠑⠇⠽" }, { "input": "profuseness", "output": "â â —⠕⠋⠥⠎⠑⠰⠎" }, { "input": "profuseness's", "output": "â â —⠕⠋⠥⠎⠑⠰⠎⠄⠎" }, { "input": "profusion", "output": "â â —⠕⠋⠥⠨â " }, { "input": "profusion's", "output": "â â —⠕⠋⠥⠨â â „â Ž" }, { "input": "profusions", "output": "â â —⠕⠋⠥⠨â â Ž" }, { "input": "progenitor", "output": "â â —⠕⠛⠢⠊⠞⠕⠗" }, { "input": "progenitor's", "output": "â â —⠕⠛⠢⠊⠞⠕⠗⠄⠎" }, { "input": "progenitors", "output": "â â —⠕⠛⠢⠊⠞⠕⠗⠎" }, { "input": "progeny", "output": "â â —⠕⠛⠢⠽" }, { "input": "progeny's", "output": "â â —⠕⠛⠢⠽⠄⠎" }, { "input": "progesterone", "output": "â â —⠕⠛⠑⠌⠻â â •" }, { "input": "progesterone's", "output": "â â —⠕⠛⠑⠌⠻â â •â „â Ž" }, { "input": "prognathous", "output": "â â —â •â ›â â â ¹â ³â Ž" }, { "input": "prognoses", "output": "â â —â •â ›â â •â Žâ ‘â Ž" }, { "input": "prognosis", "output": "â â —â •â ›â â •â Žâ Šâ Ž" }, { "input": "prognosis's", "output": "â â —â •â ›â â •â Žâ Šâ Žâ „â Ž" }, { "input": "prognostic", "output": "â â —â •â ›â â •⠌⠊⠉" }, { "input": "prognostic's", "output": "â â —â •â ›â â •⠌⠊⠉⠄⠎" }, { "input": "prognosticate", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ ‘" }, { "input": "prognosticated", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ «" }, { "input": "prognosticates", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ ‘â Ž" }, { "input": "prognosticating", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ Œ" }, { "input": "prognostication", "output": "â â —â •â ›â â •⠌⠊⠉⠠â " }, { "input": "prognostication's", "output": "â â —â •â ›â â •⠌⠊⠉⠠â â „â Ž" }, { "input": "prognostications", "output": "â â —â •â ›â â •⠌⠊⠉⠠â â Ž" }, { "input": "prognosticator", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ •â —" }, { "input": "prognosticator's", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ •â —â „â Ž" }, { "input": "prognosticators", "output": "â â —â •â ›â â •⠌⠊⠉â â žâ •â —â Ž" }, { "input": "prognostics", "output": "â â —â •â ›â â •⠌⠊⠉⠎" }, { "input": "program", "output": "â â —⠕⠛⠗â â " }, { "input": "program's", "output": "â â —⠕⠛⠗â â â „â Ž" }, { "input": "programmable", "output": "â â —⠕⠛⠗â â â â â ¼" }, { "input": "programmable's", "output": "â â —⠕⠛⠗â â â â â ¼â „â Ž" }, { "input": "programmables", "output": "â â —⠕⠛⠗â â â â â ¼â Ž" }, { "input": "programmed", "output": "â â —⠕⠛⠗â â â â «" }, { "input": "programmer", "output": "â â —⠕⠛⠗â â â â »" }, { "input": "programmer's", "output": "â â —⠕⠛⠗â â â â »â „â Ž" }, { "input": "programmers", "output": "â â —⠕⠛⠗â â â â »â Ž" }, { "input": "programming", "output": "â â —⠕⠛⠗â â â â Œ" }, { "input": "programming's", "output": "â â —⠕⠛⠗â â â â Œâ „â Ž" }, { "input": "programs", "output": "â â —⠕⠛⠗â â â Ž" }, { "input": "progress", "output": "â â —⠕⠛⠗⠑⠎⠎" }, { "input": "progress's", "output": "â â —⠕⠛⠗⠑⠎⠎⠄⠎" }, { "input": "progressed", "output": "â â —⠕⠛⠗⠑⠎⠎⠫" }, { "input": "progresses", "output": "â â —⠕⠛⠗⠑⠎⠎⠑⠎" }, { "input": "progressing", "output": "â â —⠕⠛⠗⠑⠎⠎⠌" }, { "input": "progression", "output": "â â —⠕⠛⠗⠑⠎⠨â " }, { "input": "progression's", "output": "â â —⠕⠛⠗⠑⠎⠨â â „â Ž" }, { "input": "progressions", "output": "â â —⠕⠛⠗⠑⠎⠨â â Ž" }, { "input": "progressive", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "progressive's", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠄⠎" }, { "input": "progressively", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "progressiveness", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠰⠎" }, { "input": "progressiveness's", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "progressives", "output": "â â —⠕⠛⠗⠑⠎⠎⠊⠧⠑⠎" }, { "input": "prohibit", "output": "â â —⠕⠓⠊⠃⠊⠞" }, { "input": "prohibited", "output": "â â —⠕⠓⠊⠃⠊⠞⠫" }, { "input": "prohibiting", "output": "â â —⠕⠓⠊⠃⠊⠞⠌" }, { "input": "prohibition", "output": "â â —⠕⠓⠊⠃⠊⠰â " }, { "input": "prohibition's", "output": "â â —⠕⠓⠊⠃⠊⠰â â „â Ž" }, { "input": "prohibitionist", "output": "â â —⠕⠓⠊⠃⠊⠰â â Šâ Œ" }, { "input": "prohibitionist's", "output": "â â —⠕⠓⠊⠃⠊⠰â â Šâ Œâ „â Ž" }, { "input": "prohibitionists", "output": "â â —⠕⠓⠊⠃⠊⠰â â Šâ Œâ Ž" }, { "input": "prohibitions", "output": "â â —⠕⠓⠊⠃⠊⠰â â Ž" }, { "input": "prohibitive", "output": "â â —⠕⠓⠊⠃⠊⠞⠊⠧⠑" }, { "input": "prohibitively", "output": "â â —⠕⠓⠊⠃⠊⠞⠊⠧⠑⠇⠽" }, { "input": "prohibitory", "output": "â â —⠕⠓⠊⠃⠊⠞⠕⠗⠽" }, { "input": "prohibits", "output": "â â —⠕⠓⠊⠃⠊⠞⠎" }, { "input": "project", "output": "â â —⠕⠚⠑⠉⠞" }, { "input": "project's", "output": "â â —⠕⠚⠑⠉⠞⠄⠎" }, { "input": "projected", "output": "â â —⠕⠚⠑⠉⠞⠫" }, { "input": "projectile", "output": "â â —⠕⠚⠑⠉⠞⠊⠇⠑" }, { "input": "projectile's", "output": "â â —⠕⠚⠑⠉⠞⠊⠇⠑⠄⠎" }, { "input": "projectiles", "output": "â â —⠕⠚⠑⠉⠞⠊⠇⠑⠎" }, { "input": "projecting", "output": "â â —⠕⠚⠑⠉⠞⠌" }, { "input": "projection", "output": "â â —⠕⠚⠑⠉⠰â " }, { "input": "projection's", "output": "â â —⠕⠚⠑⠉⠰â â „â Ž" }, { "input": "projectionist", "output": "â â —⠕⠚⠑⠉⠰â â Šâ Œ" }, { "input": "projectionist's", "output": "â â —⠕⠚⠑⠉⠰â â Šâ Œâ „â Ž" }, { "input": "projectionists", "output": "â â —⠕⠚⠑⠉⠰â â Šâ Œâ Ž" }, { "input": "projections", "output": "â â —⠕⠚⠑⠉⠰â â Ž" }, { "input": "projector", "output": "â â —⠕⠚⠑⠉⠞⠕⠗" }, { "input": "projector's", "output": "â â —⠕⠚⠑⠉⠞⠕⠗⠄⠎" }, { "input": "projectors", "output": "â â —⠕⠚⠑⠉⠞⠕⠗⠎" }, { "input": "projects", "output": "â â —⠕⠚⠑⠉⠞⠎" }, { "input": "proletarian", "output": "â â —⠕⠇⠑⠞⠜⠊â â " }, { "input": "proletarian's", "output": "â â —⠕⠇⠑⠞⠜⠊â â â „â Ž" }, { "input": "proletarians", "output": "â â —⠕⠇⠑⠞⠜⠊â â â Ž" }, { "input": "proletariat", "output": "â â —⠕⠇⠑⠞⠜⠊â â ž" }, { "input": "proletariat's", "output": "â â —⠕⠇⠑⠞⠜⠊â â žâ „â Ž" }, { "input": "proliferate", "output": "â â —⠕⠇⠊⠋⠻â â žâ ‘" }, { "input": "proliferated", "output": "â â —⠕⠇⠊⠋⠻â â žâ «" }, { "input": "proliferates", "output": "â â —⠕⠇⠊⠋⠻â â žâ ‘â Ž" }, { "input": "proliferating", "output": "â â —⠕⠇⠊⠋⠻â â žâ Œ" }, { "input": "proliferation", "output": "â â —⠕⠇⠊⠋⠻⠠â " }, { "input": "proliferation's", "output": "â â —⠕⠇⠊⠋⠻⠠â â „â Ž" }, { "input": "prolific", "output": "â â —⠕⠇⠊⠋⠊⠉" }, { "input": "prolifically", "output": "â â —⠕⠇⠊⠋⠊⠉⠠⠽" }, { "input": "prolix", "output": "â â —⠕⠇⠊⠭" }, { "input": "prolixity", "output": "â â —⠕⠇⠊⠭⠰⠽" }, { "input": "prolixity's", "output": "â â —⠕⠇⠊⠭⠰⠽⠄⠎" }, { "input": "prolixly", "output": "â â —⠕⠇⠊⠭⠇⠽" }, { "input": "prologue", "output": "â â —⠕⠇⠕⠛⠥⠑" }, { "input": "prologue's", "output": "â â —⠕⠇⠕⠛⠥⠑⠄⠎" }, { "input": "prologues", "output": "â â —⠕⠇⠕⠛⠥⠑⠎" }, { "input": "prolong", "output": "â â —⠕⠇⠰⠛" }, { "input": "prolongation", "output": "â â —⠕⠇⠰⠛⠠â " }, { "input": "prolongation's", "output": "â â —⠕⠇⠰⠛⠠â â „â Ž" }, { "input": "prolongations", "output": "â â —⠕⠇⠰⠛⠠â â Ž" }, { "input": "prolonged", "output": "â â —⠕⠇⠰⠛⠫" }, { "input": "prolonging", "output": "â â —⠕⠇⠰⠛⠌" }, { "input": "prolongs", "output": "â â —⠕⠇⠰⠛⠎" }, { "input": "prom", "output": "â â —â •â " }, { "input": "prom's", "output": "â â —â •â â „â Ž" }, { "input": "promenade", "output": "â â —â •â â ¢â â ™â ‘" }, { "input": "promenade's", "output": "â â —â •â â ¢â â ™â ‘â „â Ž" }, { "input": "promenaded", "output": "â â —â •â â ¢â â ™â «" }, { "input": "promenades", "output": "â â —â •â â ¢â â ™â ‘â Ž" }, { "input": "promenading", "output": "â â —â •â â ¢â â ™â Œ" }, { "input": "promethium", "output": "â â —â •â â ‘⠹⠊⠥â " }, { "input": "promethium's", "output": "â â —â •â â ‘⠹⠊⠥â â „â Ž" }, { "input": "prominence", "output": "â â —â •â â ”â °â ‘" }, { "input": "prominence's", "output": "â â —â •â â ”â °â ‘â „â Ž" }, { "input": "prominent", "output": "â â —â •â â ”⠢⠞" }, { "input": "prominently", "output": "â â —â •â â ”⠢⠞⠇⠽" }, { "input": "promiscuity", "output": "â â —â •â â Šâ Žâ ‰â ¥â °â ½" }, { "input": "promiscuity's", "output": "â â —â •â â Šâ Žâ ‰â ¥â °â ½â „â Ž" }, { "input": "promiscuous", "output": "â â —â •â â Šâ Žâ ‰â ¥â ³â Ž" }, { "input": "promiscuously", "output": "â â —â •â â Šâ Žâ ‰â ¥â ³â Žâ ‡â ½" }, { "input": "promise", "output": "â â —â •â â Šâ Žâ ‘" }, { "input": "promise's", "output": "â â —â •â â Šâ Žâ ‘â „â Ž" }, { "input": "promised", "output": "â â —â •â â Šâ Žâ «" }, { "input": "promises", "output": "â â —â •â â Šâ Žâ ‘â Ž" }, { "input": "promising", "output": "â â —â •â â Šâ Žâ Œ" }, { "input": "promisingly", "output": "â â —â •â â Šâ Žâ Œâ ‡â ½" }, { "input": "promissory", "output": "â â —â •â â Šâ Žâ Žâ •â —â ½" }, { "input": "promo", "output": "â â —â •â â •" }, { "input": "promo's", "output": "â â —â •â â •â „â Ž" }, { "input": "promontories", "output": "â â —â •â â •â â žâ •â —â Šâ ‘â Ž" }, { "input": "promontory", "output": "â â —â •â â •â â žâ •â —â ½" }, { "input": "promontory's", "output": "â â —â •â â •â â žâ •⠗⠽⠄⠎" }, { "input": "promos", "output": "â â —â •â â •â Ž" }, { "input": "promote", "output": "â â —â •â â •â žâ ‘" }, { "input": "promoted", "output": "â â —â •â â •â žâ «" }, { "input": "promoter", "output": "â â —â •â â •â žâ »" }, { "input": "promoter's", "output": "â â —â •â â •⠞⠻⠄⠎" }, { "input": "promoters", "output": "â â —â •â â •⠞⠻⠎" }, { "input": "promotes", "output": "â â —â •â â •â žâ ‘â Ž" }, { "input": "promoting", "output": "â â —â •â â •â žâ Œ" }, { "input": "promotion", "output": "â â —â •â â •â °â " }, { "input": "promotion's", "output": "â â —â •â â •â °â â „â Ž" }, { "input": "promotional", "output": "â â —â •â â •â °â â â ‡" }, { "input": "promotions", "output": "â â —â •â â •â °â â Ž" }, { "input": "prompt", "output": "â â —â •â â â ž" }, { "input": "prompt's", "output": "â â —â •â â â žâ „â Ž" }, { "input": "prompted", "output": "â â —â •â â â žâ «" }, { "input": "prompter", "output": "â â —â •â â â žâ »" }, { "input": "prompter's", "output": "â â —â •â â â žâ »â „â Ž" }, { "input": "prompters", "output": "â â —â •â â â žâ »â Ž" }, { "input": "promptest", "output": "â â —â •â â â žâ ‘â Œ" }, { "input": "prompting", "output": "â â —â •â â â žâ Œ" }, { "input": "prompting's", "output": "â â —â •â â â žâ Œâ „â Ž" }, { "input": "promptings", "output": "â â —â •â â â žâ Œâ Ž" }, { "input": "promptitude", "output": "â â —â •â â â žâ Šâ žâ ¥â ™â ‘" }, { "input": "promptitude's", "output": "â â —â •â â â žâ Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "promptly", "output": "â â —â •â â â žâ ‡â ½" }, { "input": "promptness", "output": "â â —â •â â â žâ °â Ž" }, { "input": "promptness's", "output": "â â —â •â â â žâ °â Žâ „â Ž" }, { "input": "prompts", "output": "â â —â •â â â žâ Ž" }, { "input": "proms", "output": "â â —â •â â Ž" }, { "input": "promulgate", "output": "â â —â •â â ¥â ‡â ›â â žâ ‘" }, { "input": "promulgated", "output": "â â —â •â â ¥â ‡â ›â â žâ «" }, { "input": "promulgates", "output": "â â —â •â â ¥â ‡â ›â â žâ ‘â Ž" }, { "input": "promulgating", "output": "â â —â •â â ¥â ‡â ›â â žâ Œ" }, { "input": "promulgation", "output": "â â —â •â â ¥â ‡â ›â  â " }, { "input": "promulgation's", "output": "â â —â •â â ¥â ‡â ›â  â â „â Ž" }, { "input": "promulgator", "output": "â â —â •â â ¥â ‡â ›â â žâ •â —" }, { "input": "promulgator's", "output": "â â —â •â â ¥â ‡â ›â â žâ •â —â „â Ž" }, { "input": "promulgators", "output": "â â —â •â â ¥â ‡â ›â â žâ •â —â Ž" }, { "input": "prone", "output": "â â —â â •" }, { "input": "proneness", "output": "â â —â â •â °â Ž" }, { "input": "proneness's", "output": "â â —â â •â °â Žâ „â Ž" }, { "input": "prong", "output": "â â —â °â ›" }, { "input": "prong's", "output": "â â —⠰⠛⠄⠎" }, { "input": "pronged", "output": "â â —⠰⠛⠫" }, { "input": "pronghorn", "output": "â â —⠰⠛⠓⠕⠗â " }, { "input": "pronghorn's", "output": "â â —⠰⠛⠓⠕⠗â â „â Ž" }, { "input": "pronghorns", "output": "â â —⠰⠛⠓⠕⠗â â Ž" }, { "input": "prongs", "output": "â â —⠰⠛⠎" }, { "input": "pronominal's", "output": "â â —â •â â •â â ”â â ‡â „â Ž" }, { "input": "pronoun", "output": "â â —â •â â ³â " }, { "input": "pronoun's", "output": "â â —â •â â ³â â „â Ž" }, { "input": "pronounce", "output": "â â —â •â â ³â â ‰â ‘" }, { "input": "pronounceable", "output": "â â —â •â â ³â â ‰â ‘â â ¼" }, { "input": "pronounced", "output": "â â —â •â â ³â â ‰â «" }, { "input": "pronouncement", "output": "â â —â •â â ³â â ‰â ‘â °â ž" }, { "input": "pronouncement's", "output": "â â —â •â â ³â â ‰â ‘â °â žâ „â Ž" }, { "input": "pronouncements", "output": "â â —â •â â ³â â ‰â ‘â °â žâ Ž" }, { "input": "pronounces", "output": "â â —â •â â ³â â ‰â ‘â Ž" }, { "input": "pronouncing", "output": "â â —â •â â ³â â ‰â Œ" }, { "input": "pronouns", "output": "â â —â •â â ³â â Ž" }, { "input": "pronto", "output": "â â —â •â â žâ •" }, { "input": "pronuclear", "output": "â â —â •â â ¥â ‰â ‡â ‘â œ" }, { "input": "pronunciation", "output": "â â —â •â â ¥â â ‰â Šâ  â " }, { "input": "pronunciation's", "output": "â â —â •â â ¥â â ‰â Šâ  â â „â Ž" }, { "input": "pronunciations", "output": "â â —â •â â ¥â â ‰â Šâ  â â Ž" }, { "input": "proof", "output": "â â —â •â ·" }, { "input": "proof's", "output": "â â —â •â ·â „â Ž" }, { "input": "proofed", "output": "â â —â •â ·â «" }, { "input": "proofing", "output": "â â —â •â ·â Œ" }, { "input": "proofread", "output": "â â —â •â ·â —â ‚â ™" }, { "input": "proofreader", "output": "â â —⠕⠷⠗⠂⠙⠻" }, { "input": "proofreader's", "output": "â â —⠕⠷⠗⠂⠙⠻⠄⠎" }, { "input": "proofreaders", "output": "â â —⠕⠷⠗⠂⠙⠻⠎" }, { "input": "proofreading", "output": "â â —⠕⠷⠗⠂⠙⠌" }, { "input": "proofreads", "output": "â â —⠕⠷⠗⠂⠙⠎" }, { "input": "proofs", "output": "â â —â •â ·â Ž" }, { "input": "prop", "output": "â â —â •â " }, { "input": "prop's", "output": "â â —â •â â „â Ž" }, { "input": "propaganda", "output": "â â —â •â â â ›â ¯â " }, { "input": "propaganda's", "output": "â â —â •â â â ›â ¯â â „â Ž" }, { "input": "propagandist", "output": "â â —â •â â â ›â ¯â Šâ Œ" }, { "input": "propagandist's", "output": "â â —â •â â â ›â ¯â Šâ Œâ „â Ž" }, { "input": "propagandists", "output": "â â —â •â â â ›â ¯â Šâ Œâ Ž" }, { "input": "propagandize", "output": "â â —â •â â â ›â ¯â Šâ µâ ‘" }, { "input": "propagandized", "output": "â â —â •â â â ›â ¯â Šâ µâ «" }, { "input": "propagandizes", "output": "â â —â •â â â ›â ¯â Šâ µâ ‘â Ž" }, { "input": "propagandizing", "output": "â â —â •â â â ›â ¯â Šâ µâ Œ" }, { "input": "propagate", "output": "â â —â •â â â ›â â žâ ‘" }, { "input": "propagated", "output": "â â —â •â â â ›â â žâ «" }, { "input": "propagates", "output": "â â —â •â â â ›â â žâ ‘â Ž" }, { "input": "propagating", "output": "â â —â •â â â ›â â žâ Œ" }, { "input": "propagation", "output": "â â —â •â â â ›â  â " }, { "input": "propagation's", "output": "â â —â •â â â ›â  â â „â Ž" }, { "input": "propane", "output": "â â —â •â â â â ‘" }, { "input": "propane's", "output": "â â —â •â â â â ‘â „â Ž" }, { "input": "propel", "output": "â â —â •â â ‘â ‡" }, { "input": "propellant", "output": "â â —â •â â ‘⠇⠇â â â ž" }, { "input": "propellant's", "output": "â â —â •â â ‘⠇⠇â â â žâ „â Ž" }, { "input": "propellants", "output": "â â —â •â â ‘⠇⠇â â â žâ Ž" }, { "input": "propelled", "output": "â â —â •â â ‘⠇⠇⠫" }, { "input": "propeller", "output": "â â —â •â â ‘⠇⠇⠻" }, { "input": "propeller's", "output": "â â —â •â â ‘⠇⠇⠻⠄⠎" }, { "input": "propellers", "output": "â â —â •â â ‘⠇⠇⠻⠎" }, { "input": "propelling", "output": "â â —â •â â ‘⠇⠇⠌" }, { "input": "propels", "output": "â â —â •â â ‘⠇⠎" }, { "input": "propensities", "output": "â â —â •â â ¢â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "propensity", "output": "â â —â •â â ¢â Žâ °â ½" }, { "input": "propensity's", "output": "â â —â •â â ¢â Žâ °â ½â „â Ž" }, { "input": "proper", "output": "â â —â •â â »" }, { "input": "proper's", "output": "â â —â •â â »â „â Ž" }, { "input": "properer", "output": "â â —â •â â »â »" }, { "input": "properest", "output": "â â —â •â â »â ‘â Œ" }, { "input": "properly", "output": "â â —â •â â »â ‡â ½" }, { "input": "propertied", "output": "â â —â •â â »â žâ Šâ «" }, { "input": "properties", "output": "â â —â •â â »â žâ Šâ ‘â Ž" }, { "input": "property", "output": "â â —â •â â »â žâ ½" }, { "input": "property's", "output": "â â —â •â â »â žâ ½â „â Ž" }, { "input": "prophecies", "output": "â â —â •â â “⠑⠉⠊⠑⠎" }, { "input": "prophecy", "output": "â â —â •â â “⠑⠉⠽" }, { "input": "prophecy's", "output": "â â —â •â â “⠑⠉⠽⠄⠎" }, { "input": "prophesied", "output": "â â —â •â â “â ‘â Žâ Šâ «" }, { "input": "prophesier", "output": "â â —â •â â “â ‘â Žâ Šâ »" }, { "input": "prophesier's", "output": "â â —â •â â “⠑⠎⠊⠻⠄⠎" }, { "input": "prophesiers", "output": "â â —â •â â “⠑⠎⠊⠻⠎" }, { "input": "prophesies", "output": "â â —â •â â “â ‘â Žâ Šâ ‘â Ž" }, { "input": "prophesy", "output": "â â —â •â â “â ‘â Žâ ½" }, { "input": "prophesy's", "output": "â â —â •â â “⠑⠎⠽⠄⠎" }, { "input": "prophesying", "output": "â â —â •â â “⠑⠎⠽⠌" }, { "input": "prophet", "output": "â â —â •â â “â ‘â ž" }, { "input": "prophet's", "output": "â â —â •â â “â ‘â žâ „â Ž" }, { "input": "prophetess", "output": "â â —â •â â “â ‘â žâ ‘â Žâ Ž" }, { "input": "prophetess's", "output": "â â —â •â â “â ‘â žâ ‘â Žâ Žâ „â Ž" }, { "input": "prophetesses", "output": "â â —â •â â “â ‘â žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "prophetic", "output": "â â —â •â â “â ‘â žâ Šâ ‰" }, { "input": "prophetical", "output": "â â —â •â â “â ‘â žâ Šâ ‰â â ‡" }, { "input": "prophetically", "output": "â â —â •â â “⠑⠞⠊⠉⠠⠽" }, { "input": "prophets", "output": "â â —â •â â “â ‘â žâ Ž" }, { "input": "prophylactic", "output": "â â —â •â â “⠽⠇â â ‰â žâ Šâ ‰" }, { "input": "prophylactic's", "output": "â â —â •â â “⠽⠇â â ‰â žâ Šâ ‰â „â Ž" }, { "input": "prophylactics", "output": "â â —â •â â “⠽⠇â â ‰â žâ Šâ ‰â Ž" }, { "input": "prophylaxes", "output": "â â —â •â â “⠽⠇â â ­â ‘â Ž" }, { "input": "prophylaxis", "output": "â â —â •â â “⠽⠇â â ­â Šâ Ž" }, { "input": "prophylaxis's", "output": "â â —â •â â “⠽⠇â â ­â Šâ Žâ „â Ž" }, { "input": "propinquity", "output": "â â —â •â â ”⠟⠥⠰⠽" }, { "input": "propinquity's", "output": "â â —â •â â ”⠟⠥⠰⠽⠄⠎" }, { "input": "propitiate", "output": "â â —â •â â Šâ žâ Šâ â žâ ‘" }, { "input": "propitiated", "output": "â â —â •â â Šâ žâ Šâ â žâ «" }, { "input": "propitiates", "output": "â â —â •â â Šâ žâ Šâ â žâ ‘â Ž" }, { "input": "propitiating", "output": "â â —â •â â Šâ žâ Šâ â žâ Œ" }, { "input": "propitiation", "output": "â â —â •â â Šâ žâ Šâ  â " }, { "input": "propitiation's", "output": "â â —â •â â Šâ žâ Šâ  â â „â Ž" }, { "input": "propitiatory", "output": "â â —â •â â Šâ žâ Šâ â žâ •â —â ½" }, { "input": "propitious", "output": "â â —â •â â Šâ žâ Šâ ³â Ž" }, { "input": "proponent", "output": "â â —â •â â •â â ¢â ž" }, { "input": "proponent's", "output": "â â —â •â â •â â ¢â žâ „â Ž" }, { "input": "proponents", "output": "â â —â •â â •â â ¢â žâ Ž" }, { "input": "proportion", "output": "â â —â •â â •â —â °â " }, { "input": "proportion's", "output": "â â —â •â â •â —â °â â „â Ž" }, { "input": "proportional", "output": "â â —â •â â •â —â °â â â ‡" }, { "input": "proportionality", "output": "â â —â •â â •â —â °â â â ‡â °â ½" }, { "input": "proportionally", "output": "â â —â •â â •â —â °â â  â ½" }, { "input": "proportionals", "output": "â â —â •â â •â —â °â â â ‡â Ž" }, { "input": "proportionate", "output": "â â —â •â â •â —â °â â â žâ ‘" }, { "input": "proportionately", "output": "â â —â •â â •â —â °â â â žâ ‘⠇⠽" }, { "input": "proportioned", "output": "â â —â •â â •â —â °â â «" }, { "input": "proportioning", "output": "â â —â •â â •â —â °â â Œ" }, { "input": "proportions", "output": "â â —â •â â •â —â °â â Ž" }, { "input": "proposal", "output": "â â —â •â â •â Žâ â ‡" }, { "input": "proposal's", "output": "â â —â •â â •â Žâ â ‡â „â Ž" }, { "input": "proposals", "output": "â â —â •â â •â Žâ â ‡â Ž" }, { "input": "propose", "output": "â â —â •â â •â Žâ ‘" }, { "input": "proposed", "output": "â â —â •â â •â Žâ «" }, { "input": "proposer", "output": "â â —â •â â •â Žâ »" }, { "input": "proposes", "output": "â â —â •â â •â Žâ ‘â Ž" }, { "input": "proposing", "output": "â â —â •â â •â Žâ Œ" }, { "input": "proposition", "output": "â â —â •â â •â Žâ Šâ °â " }, { "input": "proposition's", "output": "â â —â •â â •â Žâ Šâ °â â „â Ž" }, { "input": "propositional", "output": "â â —â •â â •â Žâ Šâ °â â â ‡" }, { "input": "propositioned", "output": "â â —â •â â •â Žâ Šâ °â â «" }, { "input": "propositioning", "output": "â â —â •â â •â Žâ Šâ °â â Œ" }, { "input": "propositions", "output": "â â —â •â â •â Žâ Šâ °â â Ž" }, { "input": "propound", "output": "â â —â •â â ¨â ™" }, { "input": "propounded", "output": "â â —â •â â ¨â ™â «" }, { "input": "propounding", "output": "â â —â •â â ¨â ™â Œ" }, { "input": "propounds", "output": "â â —â •â â ¨â ™â Ž" }, { "input": "propped", "output": "â â —â •â â â «" }, { "input": "propping", "output": "â â —â •â â â Œ" }, { "input": "proprietaries", "output": "â â —â •â â —⠊⠑⠞⠜⠊⠑⠎" }, { "input": "proprietary", "output": "â â —â •â â —⠊⠑⠞⠜⠽" }, { "input": "proprietary's", "output": "â â —â •â â —⠊⠑⠞⠜⠽⠄⠎" }, { "input": "proprieties's", "output": "â â —â •â â —â Šâ ‘â žâ Šâ ‘â Žâ „â Ž" }, { "input": "proprietor", "output": "â â —â •â â —â Šâ ‘â žâ •â —" }, { "input": "proprietor's", "output": "â â —â •â â —â Šâ ‘â žâ •â —â „â Ž" }, { "input": "proprietors", "output": "â â —â •â â —â Šâ ‘â žâ •â —â Ž" }, { "input": "proprietorship", "output": "â â —â •â â —â Šâ ‘â žâ •â —â ©â Šâ " }, { "input": "proprietorship's", "output": "â â —â •â â —â Šâ ‘â žâ •â —â ©â Šâ â „â Ž" }, { "input": "proprietress", "output": "â â —â •â â —â Šâ ‘â žâ —â ‘â Žâ Ž" }, { "input": "proprietress's", "output": "â â —â •â â —â Šâ ‘â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "proprietresses", "output": "â â —â •â â —â Šâ ‘â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "propriety", "output": "â â —â •â â —â Šâ ‘â žâ ½" }, { "input": "propriety's", "output": "â â —â •â â —⠊⠑⠞⠽⠄⠎" }, { "input": "props", "output": "â â —â •â â Ž" }, { "input": "propulsion", "output": "â â —â •â â ¥â ‡â ¨â " }, { "input": "propulsion's", "output": "â â —â •â â ¥â ‡â ¨â â „â Ž" }, { "input": "propulsive", "output": "â â —â •â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "prorate", "output": "â â —â •â —â â žâ ‘" }, { "input": "prorated", "output": "â â —â •â —â â žâ «" }, { "input": "prorates", "output": "â â —â •â —â â žâ ‘â Ž" }, { "input": "prorating", "output": "â â —â •â —â â žâ Œ" }, { "input": "prorogation", "output": "â â —⠕⠗⠕⠛⠠â " }, { "input": "prorogation's", "output": "â â —⠕⠗⠕⠛⠠â â „â Ž" }, { "input": "prorogue", "output": "â â —⠕⠗⠕⠛⠥⠑" }, { "input": "prorogued", "output": "â â —⠕⠗⠕⠛⠥⠫" }, { "input": "prorogues", "output": "â â —⠕⠗⠕⠛⠥⠑⠎" }, { "input": "proroguing", "output": "â â —⠕⠗⠕⠛⠥⠌" }, { "input": "pros", "output": "â â —â •â Ž" }, { "input": "prosaic", "output": "â â —â •â Žâ â Šâ ‰" }, { "input": "prosaically", "output": "â â —â •â Žâ â Šâ ‰â  â ½" }, { "input": "proscenium", "output": "â â —⠕⠎⠉⠢⠊⠥â " }, { "input": "proscenium's", "output": "â â —⠕⠎⠉⠢⠊⠥â â „â Ž" }, { "input": "prosceniums", "output": "â â —⠕⠎⠉⠢⠊⠥â â Ž" }, { "input": "prosciutto's", "output": "â â —⠕⠎⠉⠊⠥⠞⠞⠕⠄⠎" }, { "input": "proscribe", "output": "â â —⠕⠎⠉⠗⠊⠃⠑" }, { "input": "proscribed", "output": "â â —⠕⠎⠉⠗⠊⠃⠫" }, { "input": "proscribes", "output": "â â —⠕⠎⠉⠗⠊⠃⠑⠎" }, { "input": "proscribing", "output": "â â —⠕⠎⠉⠗⠊⠃⠌" }, { "input": "proscription", "output": "â â —⠕⠎⠉⠗⠊â â °â " }, { "input": "proscription's", "output": "â â —⠕⠎⠉⠗⠊â â °â â „â Ž" }, { "input": "proscriptions", "output": "â â —⠕⠎⠉⠗⠊â â °â â Ž" }, { "input": "prose", "output": "â â —â •â Žâ ‘" }, { "input": "prose's", "output": "â â —â •â Žâ ‘â „â Ž" }, { "input": "prosecute", "output": "â â —⠕⠎⠑⠉⠥⠞⠑" }, { "input": "prosecuted", "output": "â â —⠕⠎⠑⠉⠥⠞⠫" }, { "input": "prosecutes", "output": "â â —⠕⠎⠑⠉⠥⠞⠑⠎" }, { "input": "prosecuting", "output": "â â —⠕⠎⠑⠉⠥⠞⠌" }, { "input": "prosecution", "output": "â â —⠕⠎⠑⠉⠥⠰â " }, { "input": "prosecution's", "output": "â â —⠕⠎⠑⠉⠥⠰â â „â Ž" }, { "input": "prosecutions", "output": "â â —⠕⠎⠑⠉⠥⠰â â Ž" }, { "input": "prosecutor", "output": "â â —⠕⠎⠑⠉⠥⠞⠕⠗" }, { "input": "prosecutor's", "output": "â â —⠕⠎⠑⠉⠥⠞⠕⠗⠄⠎" }, { "input": "prosecutors", "output": "â â —⠕⠎⠑⠉⠥⠞⠕⠗⠎" }, { "input": "proselyte", "output": "â â —⠕⠎⠑⠇⠽⠞⠑" }, { "input": "proselyte's", "output": "â â —⠕⠎⠑⠇⠽⠞⠑⠄⠎" }, { "input": "proselyted", "output": "â â —⠕⠎⠑⠇⠽⠞⠫" }, { "input": "proselytes", "output": "â â —⠕⠎⠑⠇⠽⠞⠑⠎" }, { "input": "proselyting", "output": "â â —⠕⠎⠑⠇⠽⠞⠌" }, { "input": "proselytism", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠎â " }, { "input": "proselytism's", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠎â â „â Ž" }, { "input": "proselytize", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠑" }, { "input": "proselytized", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠫" }, { "input": "proselytizer", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠻" }, { "input": "proselytizer's", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠻⠄⠎" }, { "input": "proselytizers", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠻⠎" }, { "input": "proselytizes", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠑⠎" }, { "input": "proselytizing", "output": "â â —⠕⠎⠑⠇⠽⠞⠊⠵⠌" }, { "input": "prosier", "output": "â â —â •â Žâ Šâ »" }, { "input": "prosiest", "output": "â â —â •â Žâ Šâ ‘â Œ" }, { "input": "prosodies", "output": "â â —⠕⠎⠕⠙⠊⠑⠎" }, { "input": "prosody", "output": "â â —⠕⠎⠕⠙⠽" }, { "input": "prosody's", "output": "â â —⠕⠎⠕⠙⠽⠄⠎" }, { "input": "prospect", "output": "â â —â •â Žâ â ‘⠉⠞" }, { "input": "prospect's", "output": "â â —â •â Žâ â ‘⠉⠞⠄⠎" }, { "input": "prospected", "output": "â â —â •â Žâ â ‘⠉⠞⠫" }, { "input": "prospecting", "output": "â â —â •â Žâ â ‘⠉⠞⠌" }, { "input": "prospective", "output": "â â —â •â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "prospectively", "output": "â â —â •â Žâ â ‘⠉⠞⠊⠧⠑⠇⠽" }, { "input": "prospector", "output": "â â —â •â Žâ â ‘⠉⠞⠕⠗" }, { "input": "prospector's", "output": "â â —â •â Žâ â ‘⠉⠞⠕⠗⠄⠎" }, { "input": "prospectors", "output": "â â —â •â Žâ â ‘⠉⠞⠕⠗⠎" }, { "input": "prospects", "output": "â â —â •â Žâ â ‘⠉⠞⠎" }, { "input": "prospectus", "output": "â â —â •â Žâ â ‘⠉⠞⠥⠎" }, { "input": "prospectus's", "output": "â â —â •â Žâ â ‘⠉⠞⠥⠎⠄⠎" }, { "input": "prospectuses", "output": "â â —â •â Žâ â ‘⠉⠞⠥⠎⠑⠎" }, { "input": "prosper", "output": "â â —â •â Žâ â »" }, { "input": "prospered", "output": "â â —â •â Žâ â »â «" }, { "input": "prospering", "output": "â â —â •â Žâ â »â Œ" }, { "input": "prosperity", "output": "â â —â •â Žâ â »â °â ½" }, { "input": "prosperity's", "output": "â â —â •â Žâ â »â °â ½â „â Ž" }, { "input": "prosperous", "output": "â â —â •â Žâ â »â ³â Ž" }, { "input": "prosperously", "output": "â â —â •â Žâ â »â ³â Žâ ‡â ½" }, { "input": "prospers", "output": "â â —â •â Žâ â »â Ž" }, { "input": "prostate", "output": "â â —â •â Œâ â žâ ‘" }, { "input": "prostate's", "output": "â â —â •â Œâ â žâ ‘â „â Ž" }, { "input": "prostates", "output": "â â —â •â Œâ â žâ ‘â Ž" }, { "input": "prostheses", "output": "â â —⠕⠎⠮⠎⠑⠎" }, { "input": "prosthesis", "output": "â â —⠕⠎⠮⠎⠊⠎" }, { "input": "prosthesis's", "output": "â â —⠕⠎⠮⠎⠊⠎⠄⠎" }, { "input": "prosthetic", "output": "â â —⠕⠎⠮⠞⠊⠉" }, { "input": "prostitute", "output": "â â —⠕⠌⠊⠞⠥⠞⠑" }, { "input": "prostitute's", "output": "â â —⠕⠌⠊⠞⠥⠞⠑⠄⠎" }, { "input": "prostituted", "output": "â â —⠕⠌⠊⠞⠥⠞⠫" }, { "input": "prostitutes", "output": "â â —⠕⠌⠊⠞⠥⠞⠑⠎" }, { "input": "prostituting", "output": "â â —⠕⠌⠊⠞⠥⠞⠌" }, { "input": "prostitution", "output": "â â —⠕⠌⠊⠞⠥⠰â " }, { "input": "prostitution's", "output": "â â —⠕⠌⠊⠞⠥⠰â â „â Ž" }, { "input": "prostrate", "output": "â â —⠕⠌⠗â â žâ ‘" }, { "input": "prostrated", "output": "â â —⠕⠌⠗â â žâ «" }, { "input": "prostrates", "output": "â â —⠕⠌⠗â â žâ ‘â Ž" }, { "input": "prostrating", "output": "â â —⠕⠌⠗â â žâ Œ" }, { "input": "prostration", "output": "â â —⠕⠌⠗⠠â " }, { "input": "prostration's", "output": "â â —⠕⠌⠗⠠â â „â Ž" }, { "input": "prostrations", "output": "â â —⠕⠌⠗⠠â â Ž" }, { "input": "prosy", "output": "â â —â •â Žâ ½" }, { "input": "protactinium", "output": "â â —â •â žâ â ‰â žâ ”â Šâ ¥â " }, { "input": "protactinium's", "output": "â â —â •â žâ â ‰â žâ ”â Šâ ¥â â „â Ž" }, { "input": "protagonist", "output": "â â —â •â žâ â ›â •â â Šâ Œ" }, { "input": "protagonist's", "output": "â â —â •â žâ â ›â •â â Šâ Œâ „â Ž" }, { "input": "protagonists", "output": "â â —â •â žâ â ›â •â â Šâ Œâ Ž" }, { "input": "protean", "output": "â â —â •â žâ ‚â " }, { "input": "protect", "output": "â â —⠕⠞⠑⠉⠞" }, { "input": "protected", "output": "â â —⠕⠞⠑⠉⠞⠫" }, { "input": "protecting", "output": "â â —⠕⠞⠑⠉⠞⠌" }, { "input": "protection", "output": "â â —⠕⠞⠑⠉⠰â " }, { "input": "protection's", "output": "â â —⠕⠞⠑⠉⠰â â „â Ž" }, { "input": "protectionism's", "output": "â â —⠕⠞⠑⠉⠰â â Šâ Žâ â „â Ž" }, { "input": "protections", "output": "â â —⠕⠞⠑⠉⠰â â Ž" }, { "input": "protective", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑" }, { "input": "protectively", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "protectiveness", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑⠰⠎" }, { "input": "protectiveness's", "output": "â â —⠕⠞⠑⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "protector", "output": "â â —⠕⠞⠑⠉⠞⠕⠗" }, { "input": "protector's", "output": "â â —⠕⠞⠑⠉⠞⠕⠗⠄⠎" }, { "input": "protectorate", "output": "â â —⠕⠞⠑⠉⠞⠕⠗â â žâ ‘" }, { "input": "protectorate's", "output": "â â —⠕⠞⠑⠉⠞⠕⠗â â žâ ‘â „â Ž" }, { "input": "protectorates", "output": "â â —⠕⠞⠑⠉⠞⠕⠗â â žâ ‘â Ž" }, { "input": "protectors", "output": "â â —⠕⠞⠑⠉⠞⠕⠗⠎" }, { "input": "protects", "output": "â â —⠕⠞⠑⠉⠞⠎" }, { "input": "protein", "output": "â â —â •â žâ ‘â ”" }, { "input": "protein's", "output": "â â —⠕⠞⠑⠔⠄⠎" }, { "input": "proteins", "output": "â â —⠕⠞⠑⠔⠎" }, { "input": "protest", "output": "â â —â •â žâ ‘â Œ" }, { "input": "protest's", "output": "â â —⠕⠞⠑⠌⠄⠎" }, { "input": "protestant", "output": "â â —â •â žâ ‘â Œâ â â ž" }, { "input": "protestants", "output": "â â —â •â žâ ‘â Œâ â â žâ Ž" }, { "input": "protestation", "output": "â â —⠕⠞⠑⠌⠠â " }, { "input": "protestation's", "output": "â â —⠕⠞⠑⠌⠠â â „â Ž" }, { "input": "protestations", "output": "â â —⠕⠞⠑⠌⠠â â Ž" }, { "input": "protested", "output": "â â —⠕⠞⠑⠌⠫" }, { "input": "protester", "output": "â â —⠕⠞⠑⠌⠻" }, { "input": "protester's", "output": "â â —⠕⠞⠑⠌⠻⠄⠎" }, { "input": "protesters", "output": "â â —⠕⠞⠑⠌⠻⠎" }, { "input": "protesting", "output": "â â —⠕⠞⠑⠌⠌" }, { "input": "protests", "output": "â â —⠕⠞⠑⠌⠎" }, { "input": "protocol", "output": "â â —⠕⠞⠕⠉⠕⠇" }, { "input": "protocol's", "output": "â â —⠕⠞⠕⠉⠕⠇⠄⠎" }, { "input": "protocols", "output": "â â —⠕⠞⠕⠉⠕⠇⠎" }, { "input": "proton", "output": "â â —â •â žâ •â " }, { "input": "proton's", "output": "â â —â •â žâ •â â „â Ž" }, { "input": "protons", "output": "â â —â •â žâ •â â Ž" }, { "input": "protoplasm", "output": "â â —â •â žâ •â â ‡â â Žâ " }, { "input": "protoplasm's", "output": "â â —â •â žâ •â â ‡â â Žâ â „â Ž" }, { "input": "protoplasmic", "output": "â â —â •â žâ •â â ‡â â Žâ â Šâ ‰" }, { "input": "prototype", "output": "â â —â •â žâ •â žâ ½â â ‘" }, { "input": "prototype's", "output": "â â —â •â žâ •â žâ ½â â ‘â „â Ž" }, { "input": "prototypes", "output": "â â —â •â žâ •â žâ ½â â ‘â Ž" }, { "input": "prototyping", "output": "â â —â •â žâ •â žâ ½â â Œ" }, { "input": "protozoa", "output": "â â —⠕⠞⠕⠵⠕â " }, { "input": "protozoan", "output": "â â —⠕⠞⠕⠵⠕â â " }, { "input": "protozoan's", "output": "â â —⠕⠞⠕⠵⠕â â â „â Ž" }, { "input": "protozoans", "output": "â â —⠕⠞⠕⠵⠕â â â Ž" }, { "input": "protozoic", "output": "â â —⠕⠞⠕⠵⠕⠊⠉" }, { "input": "protract", "output": "â â —â •â žâ —â â ‰â ž" }, { "input": "protracted", "output": "â â —â •â žâ —â â ‰â žâ «" }, { "input": "protracting", "output": "â â —â •â žâ —â â ‰â žâ Œ" }, { "input": "protraction", "output": "â â —â •â žâ —â â ‰â °â " }, { "input": "protraction's", "output": "â â —â •â žâ —â â ‰â °â â „â Ž" }, { "input": "protractor", "output": "â â —â •â žâ —â â ‰â žâ •â —" }, { "input": "protractor's", "output": "â â —â •â žâ —â â ‰â žâ •â —â „â Ž" }, { "input": "protractors", "output": "â â —â •â žâ —â â ‰â žâ •â —â Ž" }, { "input": "protracts", "output": "â â —â •â žâ —â â ‰â žâ Ž" }, { "input": "protrude", "output": "â â —⠕⠞⠗⠥⠙⠑" }, { "input": "protruded", "output": "â â —⠕⠞⠗⠥⠙⠫" }, { "input": "protrudes", "output": "â â —⠕⠞⠗⠥⠙⠑⠎" }, { "input": "protruding", "output": "â â —⠕⠞⠗⠥⠙⠌" }, { "input": "protrusile", "output": "â â —⠕⠞⠗⠥⠎⠊⠇⠑" }, { "input": "protrusion", "output": "â â —⠕⠞⠗⠥⠨â " }, { "input": "protrusion's", "output": "â â —⠕⠞⠗⠥⠨â â „â Ž" }, { "input": "protrusions", "output": "â â —⠕⠞⠗⠥⠨â â Ž" }, { "input": "protuberance", "output": "â â —⠕⠞⠥⠃⠻⠨⠑" }, { "input": "protuberance's", "output": "â â —⠕⠞⠥⠃⠻⠨⠑⠄⠎" }, { "input": "protuberances", "output": "â â —⠕⠞⠥⠃⠻⠨⠑⠎" }, { "input": "protuberant", "output": "â â —⠕⠞⠥⠃⠻â â â ž" }, { "input": "proud", "output": "â â —⠳⠙" }, { "input": "prouder", "output": "â â —⠳⠙⠻" }, { "input": "proudest", "output": "â â —⠳⠙⠑⠌" }, { "input": "proudly", "output": "â â —⠳⠙⠇⠽" }, { "input": "provability", "output": "â â —â •â §â â ƒâ Šâ ‡â °â ½" }, { "input": "provability's", "output": "â â —â •â §â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "provable", "output": "â â —â •â §â â ¼" }, { "input": "provably", "output": "â â —â •â §â â ƒâ ‡â ½" }, { "input": "prove", "output": "â â —â •â §â ‘" }, { "input": "proved", "output": "â â —â •â §â «" }, { "input": "proven", "output": "â â —â •â §â ¢" }, { "input": "provenance", "output": "â â —⠕⠧⠢⠨⠑" }, { "input": "provenance's", "output": "â â —⠕⠧⠢⠨⠑⠄⠎" }, { "input": "provender", "output": "â â —⠕⠧⠢⠙⠻" }, { "input": "provender's", "output": "â â —⠕⠧⠢⠙⠻⠄⠎" }, { "input": "provenience", "output": "â â —⠕⠧⠢⠊⠰⠑" }, { "input": "provenience's", "output": "â â —⠕⠧⠢⠊⠰⠑⠄⠎" }, { "input": "proverb", "output": "â â —⠕⠧⠻⠃" }, { "input": "proverb's", "output": "â â —⠕⠧⠻⠃⠄⠎" }, { "input": "proverbial", "output": "â â —⠕⠧⠻⠃⠊â â ‡" }, { "input": "proverbially", "output": "â â —⠕⠧⠻⠃⠊⠠⠽" }, { "input": "proverbs", "output": "â â —⠕⠧⠻⠃⠎" }, { "input": "proves", "output": "â â —â •â §â ‘â Ž" }, { "input": "provide", "output": "â â —⠕⠧⠊⠙⠑" }, { "input": "provided", "output": "â â —⠕⠧⠊⠙⠫" }, { "input": "providence", "output": "â â —⠕⠧⠊⠙⠰⠑" }, { "input": "providence's", "output": "â â —⠕⠧⠊⠙⠰⠑⠄⠎" }, { "input": "provident", "output": "â â —⠕⠧⠊⠙⠢⠞" }, { "input": "providential", "output": "â â —⠕⠧⠊⠙⠢⠞⠊â â ‡" }, { "input": "providentially", "output": "â â —⠕⠧⠊⠙⠢⠞⠊⠠⠽" }, { "input": "providently", "output": "â â —⠕⠧⠊⠙⠢⠞⠇⠽" }, { "input": "provider", "output": "â â —⠕⠧⠊⠙⠻" }, { "input": "provider's", "output": "â â —⠕⠧⠊⠙⠻⠄⠎" }, { "input": "providers", "output": "â â —⠕⠧⠊⠙⠻⠎" }, { "input": "provides", "output": "â â —⠕⠧⠊⠙⠑⠎" }, { "input": "providing", "output": "â â —⠕⠧⠊⠙⠌" }, { "input": "province", "output": "â â —⠕⠧⠔⠉⠑" }, { "input": "province's", "output": "â â —⠕⠧⠔⠉⠑⠄⠎" }, { "input": "provinces", "output": "â â —⠕⠧⠔⠉⠑⠎" }, { "input": "provincial", "output": "â â —⠕⠧⠔⠉⠊â â ‡" }, { "input": "provincial's", "output": "â â —⠕⠧⠔⠉⠊â â ‡â „â Ž" }, { "input": "provincialism", "output": "â â —⠕⠧⠔⠉⠊â â ‡â Šâ Žâ " }, { "input": "provincialism's", "output": "â â —⠕⠧⠔⠉⠊â â ‡â Šâ Žâ â „â Ž" }, { "input": "provincials", "output": "â â —⠕⠧⠔⠉⠊â â ‡â Ž" }, { "input": "proving", "output": "â â —â •â §â Œ" }, { "input": "provision", "output": "â â —â •â §â Šâ ¨â " }, { "input": "provision's", "output": "â â —â •â §â Šâ ¨â â „â Ž" }, { "input": "provisional", "output": "â â —â •â §â Šâ ¨â â â ‡" }, { "input": "provisionally", "output": "â â —â •â §â Šâ ¨â â  â ½" }, { "input": "provisioned", "output": "â â —â •â §â Šâ ¨â â «" }, { "input": "provisioning", "output": "â â —â •â §â Šâ ¨â â Œ" }, { "input": "provisions", "output": "â â —â •â §â Šâ ¨â â Ž" }, { "input": "proviso", "output": "â â —â •â §â Šâ Žâ •" }, { "input": "proviso's", "output": "â â —â •â §â Šâ Žâ •â „â Ž" }, { "input": "provisos", "output": "â â —â •â §â Šâ Žâ •â Ž" }, { "input": "provocation", "output": "â â —⠕⠧⠕⠉⠠â " }, { "input": "provocation's", "output": "â â —⠕⠧⠕⠉⠠â â „â Ž" }, { "input": "provocations", "output": "â â —⠕⠧⠕⠉⠠â â Ž" }, { "input": "provocative", "output": "â â —â •â §â •â ‰â â žâ Šâ §â ‘" }, { "input": "provocatively", "output": "â â —â •â §â •â ‰â â žâ Šâ §â ‘⠇⠽" }, { "input": "provocativeness", "output": "â â —â •â §â •â ‰â â žâ Šâ §â ‘â °â Ž" }, { "input": "provocativeness's", "output": "â â —â •â §â •â ‰â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "provoke", "output": "â â —â •â §â •â …â ‘" }, { "input": "provoked", "output": "â â —â •â §â •â …â «" }, { "input": "provoker", "output": "â â —â •â §â •â …â »" }, { "input": "provoker's", "output": "â â —⠕⠧⠕⠅⠻⠄⠎" }, { "input": "provokers", "output": "â â —⠕⠧⠕⠅⠻⠎" }, { "input": "provokes", "output": "â â —â •â §â •â …â ‘â Ž" }, { "input": "provoking", "output": "â â —â •â §â •â …â Œ" }, { "input": "provokingly", "output": "â â —⠕⠧⠕⠅⠌⠇⠽" }, { "input": "provolone", "output": "â â —⠕⠧⠕⠇⠕â â ‘" }, { "input": "provolone's", "output": "â â —⠕⠧⠕⠇⠕â â ‘â „â Ž" }, { "input": "provost", "output": "â â —â •â §â •â Œ" }, { "input": "provost's", "output": "â â —⠕⠧⠕⠌⠄⠎" }, { "input": "provosts", "output": "â â —⠕⠧⠕⠌⠎" }, { "input": "prow", "output": "â â —â ª" }, { "input": "prow's", "output": "â â —⠪⠄⠎" }, { "input": "prowess", "output": "â â —⠪⠑⠎⠎" }, { "input": "prowess's", "output": "â â —⠪⠑⠎⠎⠄⠎" }, { "input": "prowl", "output": "â â —⠪⠇" }, { "input": "prowl's", "output": "â â —⠪⠇⠄⠎" }, { "input": "prowled", "output": "â â —⠪⠇⠫" }, { "input": "prowler", "output": "â â —⠪⠇⠻" }, { "input": "prowler's", "output": "â â —⠪⠇⠻⠄⠎" }, { "input": "prowlers", "output": "â â —⠪⠇⠻⠎" }, { "input": "prowling", "output": "â â —⠪⠇⠌" }, { "input": "prowls", "output": "â â —⠪⠇⠎" }, { "input": "prows", "output": "â â —⠪⠎" }, { "input": "proxies", "output": "â â —â •â ­â Šâ ‘â Ž" }, { "input": "proximity", "output": "â â —â •â ­â Šâ â °â ½" }, { "input": "proximity's", "output": "â â —â •â ­â Šâ â °â ½â „â Ž" }, { "input": "proxy", "output": "â â —â •â ­â ½" }, { "input": "proxy's", "output": "â â —⠕⠭⠽⠄⠎" }, { "input": "prude", "output": "â â —⠥⠙⠑" }, { "input": "prude's", "output": "â â —⠥⠙⠑⠄⠎" }, { "input": "prudence", "output": "â â —⠥⠙⠰⠑" }, { "input": "prudence's", "output": "â â —⠥⠙⠰⠑⠄⠎" }, { "input": "prudent", "output": "â â —⠥⠙⠢⠞" }, { "input": "prudential", "output": "â â —⠥⠙⠢⠞⠊â â ‡" }, { "input": "prudentially", "output": "â â —⠥⠙⠢⠞⠊⠠⠽" }, { "input": "prudently", "output": "â â —⠥⠙⠢⠞⠇⠽" }, { "input": "prudery", "output": "â â —⠥⠙⠻⠽" }, { "input": "prudery's", "output": "â â —⠥⠙⠻⠽⠄⠎" }, { "input": "prudes", "output": "â â —⠥⠙⠑⠎" }, { "input": "prudish", "output": "â â —⠥⠙⠊⠩" }, { "input": "prudishly", "output": "â â —⠥⠙⠊⠩⠇⠽" }, { "input": "prudishness's", "output": "â â —⠥⠙⠊⠩⠰⠎⠄⠎" }, { "input": "prune", "output": "â â —â ¥â â ‘" }, { "input": "prune's", "output": "â â —â ¥â â ‘â „â Ž" }, { "input": "pruned", "output": "â â —â ¥â â «" }, { "input": "pruner", "output": "â â —â ¥â â »" }, { "input": "pruner's", "output": "â â —â ¥â â »â „â Ž" }, { "input": "pruners", "output": "â â —â ¥â â »â Ž" }, { "input": "prunes", "output": "â â —â ¥â â ‘â Ž" }, { "input": "pruning", "output": "â â —â ¥â â Œ" }, { "input": "prurience", "output": "â â —⠥⠗⠊⠰⠑" }, { "input": "prurience's", "output": "â â —⠥⠗⠊⠰⠑⠄⠎" }, { "input": "prurient", "output": "â â —⠥⠗⠊⠢⠞" }, { "input": "pry", "output": "â â —â ½" }, { "input": "pry's", "output": "â â —⠽⠄⠎" }, { "input": "prying", "output": "â â —⠽⠌" }, { "input": "psalm", "output": "â â Žâ â ‡â " }, { "input": "psalm's", "output": "â â Žâ â ‡â â „â Ž" }, { "input": "psalmist", "output": "â â Žâ â ‡â â Šâ Œ" }, { "input": "psalmist's", "output": "â â Žâ â ‡â â Šâ Œâ „â Ž" }, { "input": "psalmists", "output": "â â Žâ â ‡â â Šâ Œâ Ž" }, { "input": "psalms", "output": "â â Žâ â ‡â â Ž" }, { "input": "psalteries", "output": "â â Žâ â ‡â žâ »â Šâ ‘â Ž" }, { "input": "psaltery", "output": "â â Žâ â ‡â žâ »â ½" }, { "input": "psaltery's", "output": "â â Žâ â ‡â žâ »â ½â „â Ž" }, { "input": "pseudo", "output": "â â Žâ ‘⠥⠙⠕" }, { "input": "pseudonym", "output": "â â Žâ ‘⠥⠙⠕â â ½â " }, { "input": "pseudonym's", "output": "â â Žâ ‘⠥⠙⠕â â ½â â „â Ž" }, { "input": "pseudonyms", "output": "â â Žâ ‘⠥⠙⠕â â ½â â Ž" }, { "input": "pseudos", "output": "â â Žâ ‘⠥⠙⠕⠎" }, { "input": "pseudoscience", "output": "â â Žâ ‘⠥⠙⠕⠎⠉⠊⠰⠑" }, { "input": "pseudoscience's", "output": "â â Žâ ‘⠥⠙⠕⠎⠉⠊⠰⠑⠄⠎" }, { "input": "pseudosciences", "output": "â â Žâ ‘⠥⠙⠕⠎⠉⠊⠰⠑⠎" }, { "input": "pshaw", "output": "â â ©â â º" }, { "input": "pshaw's", "output": "â â ©â â ºâ „â Ž" }, { "input": "pshaws", "output": "â â ©â â ºâ Ž" }, { "input": "psi", "output": "â â Žâ Š" }, { "input": "psi's", "output": "â â Žâ Šâ „â Ž" }, { "input": "psis", "output": "â â Žâ Šâ Ž" }, { "input": "psittacosis", "output": "â â Žâ Šâ žâ žâ â ‰â •â Žâ Šâ Ž" }, { "input": "psittacosis's", "output": "â â Žâ Šâ žâ žâ â ‰â •â Žâ Šâ Žâ „â Ž" }, { "input": "psoriasis", "output": "â â Žâ •â —â Šâ â Žâ Šâ Ž" }, { "input": "psoriasis's", "output": "â â Žâ •â —â Šâ â Žâ Šâ Žâ „â Ž" }, { "input": "psst", "output": "â â Žâ Œ" }, { "input": "psych", "output": "â â Žâ ½â ¡" }, { "input": "psych's", "output": "â â Žâ ½â ¡â „â Ž" }, { "input": "psyche", "output": "â â Žâ ½â ¡â ‘" }, { "input": "psyche's", "output": "â â Žâ ½â ¡â ‘â „â Ž" }, { "input": "psyched", "output": "â â Žâ ½â ¡â «" }, { "input": "psychedelic", "output": "â â Žâ ½â ¡â ‘⠙⠑⠇⠊⠉" }, { "input": "psychedelic's", "output": "â â Žâ ½â ¡â ‘⠙⠑⠇⠊⠉⠄⠎" }, { "input": "psychedelically", "output": "â â Žâ ½â ¡â ‘⠙⠑⠇⠊⠉⠠⠽" }, { "input": "psychedelics", "output": "â â Žâ ½â ¡â ‘⠙⠑⠇⠊⠉⠎" }, { "input": "psyches", "output": "â â Žâ ½â ¡â ‘â Ž" }, { "input": "psychiatric", "output": "â â Žâ ½â ¡â Šâ â žâ —â Šâ ‰" }, { "input": "psychiatrist", "output": "â â Žâ ½â ¡â Šâ â žâ —â Šâ Œ" }, { "input": "psychiatrist's", "output": "â â Žâ ½â ¡â Šâ â žâ —⠊⠌⠄⠎" }, { "input": "psychiatrists", "output": "â â Žâ ½â ¡â Šâ â žâ —⠊⠌⠎" }, { "input": "psychiatry", "output": "â â Žâ ½â ¡â Šâ â žâ —â ½" }, { "input": "psychiatry's", "output": "â â Žâ ½â ¡â Šâ â žâ —⠽⠄⠎" }, { "input": "psychic", "output": "â â Žâ ½â ¡â Šâ ‰" }, { "input": "psychic's", "output": "â â Žâ ½â ¡â Šâ ‰â „â Ž" }, { "input": "psychical", "output": "â â Žâ ½â ¡â Šâ ‰â â ‡" }, { "input": "psychically", "output": "â â Žâ ½â ¡â Šâ ‰â  â ½" }, { "input": "psychics", "output": "â â Žâ ½â ¡â Šâ ‰â Ž" }, { "input": "psyching", "output": "â â Žâ ½â ¡â Œ" }, { "input": "psycho", "output": "â â Žâ ½â ¡â •" }, { "input": "psycho's", "output": "â â Žâ ½â ¡â •â „â Ž" }, { "input": "psychoanalysis", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Žâ Šâ Ž" }, { "input": "psychoanalysis's", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "psychoanalyst", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Œ" }, { "input": "psychoanalyst's", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Œâ „â Ž" }, { "input": "psychoanalysts", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â Œâ Ž" }, { "input": "psychoanalytical", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â žâ Šâ ‰â â ‡" }, { "input": "psychoanalyze", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ ‘" }, { "input": "psychoanalyzed", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ «" }, { "input": "psychoanalyzes", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ ‘â Ž" }, { "input": "psychoanalyzing", "output": "â â Žâ ½â ¡â •â â â â ‡â ½â µâ Œ" }, { "input": "psychobabble", "output": "â â Žâ ½â ¡â •â ƒâ â ƒâ ¼" }, { "input": "psychobabble's", "output": "â â Žâ ½â ¡â •â ƒâ â ƒâ ¼â „â Ž" }, { "input": "psychogenic", "output": "â â Žâ ½â ¡â •⠛⠢⠊⠉" }, { "input": "psychokinesis", "output": "â â Žâ ½â ¡â •⠅⠔⠑⠎⠊⠎" }, { "input": "psychological", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "psychologically", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "psychologies", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠑⠎" }, { "input": "psychologist", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠌" }, { "input": "psychologist's", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "psychologists", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠊⠌⠎" }, { "input": "psychology", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠽" }, { "input": "psychology's", "output": "â â Žâ ½â ¡â •⠇⠕⠛⠽⠄⠎" }, { "input": "psychoneuroses", "output": "â â Žâ ½â ¡â •â â ‘⠥⠗⠕⠎⠑⠎" }, { "input": "psychoneurosis", "output": "â â Žâ ½â ¡â •â â ‘⠥⠗⠕⠎⠊⠎" }, { "input": "psychoneurosis's", "output": "â â Žâ ½â ¡â •â â ‘⠥⠗⠕⠎⠊⠎⠄⠎" }, { "input": "psychopath", "output": "â â Žâ ½â ¡â •â â â ¹" }, { "input": "psychopath's", "output": "â â Žâ ½â ¡â •â â â ¹â „â Ž" }, { "input": "psychopathic", "output": "â â Žâ ½â ¡â •â â â ¹â Šâ ‰" }, { "input": "psychopaths", "output": "â â Žâ ½â ¡â •â â â ¹â Ž" }, { "input": "psychopathy", "output": "â â Žâ ½â ¡â •â â â ¹â ½" }, { "input": "psychopathy's", "output": "â â Žâ ½â ¡â •â â â ¹â ½â „â Ž" }, { "input": "psychos", "output": "â â Žâ ½â ¡â •â Ž" }, { "input": "psychoses", "output": "â â Žâ ½â ¡â •â Žâ ‘â Ž" }, { "input": "psychosis", "output": "â â Žâ ½â ¡â •â Žâ Šâ Ž" }, { "input": "psychosis's", "output": "â â Žâ ½â ¡â •â Žâ Šâ Žâ „â Ž" }, { "input": "psychosomatic", "output": "â â Žâ ½â ¡â •â Žâ •â â â žâ Šâ ‰" }, { "input": "psychotherapies", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ ‘â Ž" }, { "input": "psychotherapist", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ Œ" }, { "input": "psychotherapist's", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ Œâ „â Ž" }, { "input": "psychotherapists", "output": "â â Žâ ½â ¡â •⠮⠗â â â Šâ Œâ Ž" }, { "input": "psychotherapy", "output": "â â Žâ ½â ¡â •⠮⠗â â â ½" }, { "input": "psychotherapy's", "output": "â â Žâ ½â ¡â •⠮⠗â â â ½â „â Ž" }, { "input": "psychotic", "output": "â â Žâ ½â ¡â •â žâ Šâ ‰" }, { "input": "psychotic's", "output": "â â Žâ ½â ¡â •⠞⠊⠉⠄⠎" }, { "input": "psychotically", "output": "â â Žâ ½â ¡â •⠞⠊⠉⠠⠽" }, { "input": "psychotics", "output": "â â Žâ ½â ¡â •⠞⠊⠉⠎" }, { "input": "psychotropic's", "output": "â â Žâ ½â ¡â •â žâ —â •â â Šâ ‰â „â Ž" }, { "input": "psychotropics", "output": "â â Žâ ½â ¡â •â žâ —â •â â Šâ ‰â Ž" }, { "input": "psychs", "output": "â â Žâ ½â ¡â Ž" }, { "input": "ptarmigan", "output": "â â žâ œâ â Šâ ›â â " }, { "input": "ptarmigan's", "output": "â â žâ œâ â Šâ ›â â â „â Ž" }, { "input": "ptarmigans", "output": "â â žâ œâ â Šâ ›â â â Ž" }, { "input": "pterodactyl", "output": "â â žâ »â •â ™â â ‰â žâ ½â ‡" }, { "input": "pterodactyl's", "output": "â â žâ »â •â ™â â ‰â žâ ½â ‡â „â Ž" }, { "input": "pterodactyls", "output": "â â žâ »â •â ™â â ‰â žâ ½â ‡â Ž" }, { "input": "ptomaine", "output": "â â žâ •â â â ”â ‘" }, { "input": "ptomaine's", "output": "â â žâ •â â â ”â ‘â „â Ž" }, { "input": "ptomaines", "output": "â â žâ •â â â ”â ‘â Ž" }, { "input": "pub", "output": "â â ¥â ƒ" }, { "input": "pub's", "output": "â â ¥â ƒâ „â Ž" }, { "input": "pubertal", "output": "â â ¥â ƒâ »â žâ â ‡" }, { "input": "puberty", "output": "â â ¥â ƒâ »â žâ ½" }, { "input": "puberty's", "output": "â â ¥â ƒâ »â žâ ½â „â Ž" }, { "input": "pubescence", "output": "â â ¥â ƒâ ‘⠎⠉⠰⠑" }, { "input": "pubescence's", "output": "â â ¥â ƒâ ‘⠎⠉⠰⠑⠄⠎" }, { "input": "pubescent", "output": "â â ¥â ƒâ ‘⠎⠉⠢⠞" }, { "input": "pubic", "output": "â â ¥â ƒâ Šâ ‰" }, { "input": "public", "output": "â â ¥â ƒâ ‡â Šâ ‰" }, { "input": "public's", "output": "â â ¥â ƒâ ‡â Šâ ‰â „â Ž" }, { "input": "publican", "output": "â â ¥â ƒâ ‡â Šâ ‰â â " }, { "input": "publican's", "output": "â â ¥â ƒâ ‡â Šâ ‰â â â „â Ž" }, { "input": "publicans", "output": "â â ¥â ƒâ ‡â Šâ ‰â â â Ž" }, { "input": "publication", "output": "â â ¥â ƒâ ‡â Šâ ‰â  â " }, { "input": "publication's", "output": "â â ¥â ƒâ ‡â Šâ ‰â  â â „â Ž" }, { "input": "publications", "output": "â â ¥â ƒâ ‡â Šâ ‰â  â â Ž" }, { "input": "publicist", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ Œ" }, { "input": "publicist's", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ Œâ „â Ž" }, { "input": "publicists", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ Œâ Ž" }, { "input": "publicity", "output": "â â ¥â ƒâ ‡â Šâ ‰â °â ½" }, { "input": "publicity's", "output": "â â ¥â ƒâ ‡â Šâ ‰â °â ½â „â Ž" }, { "input": "publicize", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ ‘" }, { "input": "publicized", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ «" }, { "input": "publicizes", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "publicizing", "output": "â â ¥â ƒâ ‡â Šâ ‰â Šâ µâ Œ" }, { "input": "publicly", "output": "â â ¥â ƒâ ‡â Šâ ‰â ‡â ½" }, { "input": "publish", "output": "â â ¥â ƒâ ‡â Šâ ©" }, { "input": "publishable", "output": "â â ¥â ƒâ ‡â Šâ ©â â ¼" }, { "input": "published", "output": "â â ¥â ƒâ ‡â Šâ ©â «" }, { "input": "publisher", "output": "â â ¥â ƒâ ‡â Šâ ©â »" }, { "input": "publisher's", "output": "â â ¥â ƒâ ‡â Šâ ©â »â „â Ž" }, { "input": "publishers", "output": "â â ¥â ƒâ ‡â Šâ ©â »â Ž" }, { "input": "publishes", "output": "â â ¥â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "publishing", "output": "â â ¥â ƒâ ‡â Šâ ©â Œ" }, { "input": "publishing's", "output": "â â ¥â ƒâ ‡â Šâ ©â Œâ „â Ž" }, { "input": "pubs", "output": "â â ¥â ƒâ Ž" }, { "input": "puce's", "output": "â â ¥â ‰â ‘â „â Ž" }, { "input": "puck", "output": "â â ¥â ‰â …" }, { "input": "puck's", "output": "â â ¥â ‰â …â „â Ž" }, { "input": "pucker", "output": "â â ¥â ‰â …â »" }, { "input": "pucker's", "output": "â â ¥â ‰â …⠻⠄⠎" }, { "input": "puckered", "output": "â â ¥â ‰â …⠻⠫" }, { "input": "puckering", "output": "â â ¥â ‰â …⠻⠌" }, { "input": "puckers", "output": "â â ¥â ‰â …⠻⠎" }, { "input": "puckish", "output": "â â ¥â ‰â …â Šâ ©" }, { "input": "puckishly", "output": "â â ¥â ‰â …⠊⠩⠇⠽" }, { "input": "puckishness", "output": "â â ¥â ‰â …â Šâ ©â °â Ž" }, { "input": "puckishness's", "output": "â â ¥â ‰â …â Šâ ©â °â Žâ „â Ž" }, { "input": "pucks", "output": "â â ¥â ‰â …â Ž" }, { "input": "pudding", "output": "â â ¥â ²â Œ" }, { "input": "pudding's", "output": "â â ¥â ²â Œâ „â Ž" }, { "input": "puddings", "output": "â â ¥â ²â Œâ Ž" }, { "input": "puddle", "output": "â â ¥â ²â ‡â ‘" }, { "input": "puddle's", "output": "â â ¥â ²â ‡â ‘â „â Ž" }, { "input": "puddled", "output": "â â ¥â ²â ‡â «" }, { "input": "puddles", "output": "â â ¥â ²â ‡â ‘â Ž" }, { "input": "puddling", "output": "â â ¥â ²â ‡â Œ" }, { "input": "puddling's", "output": "â â ¥â ²â ‡â Œâ „â Ž" }, { "input": "pudgier", "output": "â â ¥â ™â ›â Šâ »" }, { "input": "pudgiest", "output": "â â ¥â ™â ›â Šâ ‘â Œ" }, { "input": "pudginess's", "output": "â â ¥â ™â ›â Šâ °â Žâ „â Ž" }, { "input": "pudgy", "output": "â â ¥â ™â ›â ½" }, { "input": "pueblo", "output": "â â ¥â ‘⠃⠇⠕" }, { "input": "pueblo's", "output": "â â ¥â ‘⠃⠇⠕⠄⠎" }, { "input": "pueblos", "output": "â â ¥â ‘⠃⠇⠕⠎" }, { "input": "puerile", "output": "â â ¥â »â Šâ ‡â ‘" }, { "input": "puerility", "output": "â â ¥â »â Šâ ‡â °â ½" }, { "input": "puerility's", "output": "â â ¥â »â Šâ ‡â °â ½â „â Ž" }, { "input": "puerperal", "output": "â â ¥â »â â »â â ‡" }, { "input": "puff", "output": "â â ¥â ‹â ‹" }, { "input": "puff's", "output": "â â ¥â ‹â ‹â „â Ž" }, { "input": "puffball", "output": "â â ¥â –â ƒâ â ‡â ‡" }, { "input": "puffball's", "output": "â â ¥â –â ƒâ â ‡â ‡â „â Ž" }, { "input": "puffballs", "output": "â â ¥â –â ƒâ â ‡â ‡â Ž" }, { "input": "puffed", "output": "â â ¥â –â «" }, { "input": "puffer", "output": "â â ¥â –â »" }, { "input": "puffier", "output": "â â ¥â –â Šâ »" }, { "input": "puffiest", "output": "â â ¥â –â Šâ ‘â Œ" }, { "input": "puffin", "output": "â â ¥â –â ”" }, { "input": "puffin's", "output": "â â ¥â –⠔⠄⠎" }, { "input": "puffiness", "output": "â â ¥â –â Šâ °â Ž" }, { "input": "puffiness's", "output": "â â ¥â –â Šâ °â Žâ „â Ž" }, { "input": "puffing", "output": "â â ¥â –â Œ" }, { "input": "puffins", "output": "â â ¥â –⠔⠎" }, { "input": "puffs", "output": "â â ¥â –â Ž" }, { "input": "puffy", "output": "â â ¥â –â ½" }, { "input": "pug", "output": "â â ¥â ›" }, { "input": "pug's", "output": "â â ¥â ›â „â Ž" }, { "input": "pugilism", "output": "â â ¥â ›â Šâ ‡â Šâ Žâ " }, { "input": "pugilism's", "output": "â â ¥â ›â Šâ ‡â Šâ Žâ â „â Ž" }, { "input": "pugilist", "output": "â â ¥â ›â Šâ ‡â Šâ Œ" }, { "input": "pugilist's", "output": "â â ¥â ›â Šâ ‡â Šâ Œâ „â Ž" }, { "input": "pugilistic", "output": "â â ¥â ›â Šâ ‡â Šâ Œâ Šâ ‰" }, { "input": "pugilists", "output": "â â ¥â ›â Šâ ‡â Šâ Œâ Ž" }, { "input": "pugnacious", "output": "â â ¥â ›â â â ‰â Šâ ³â Ž" }, { "input": "pugnaciously", "output": "â â ¥â ›â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "pugnaciousness", "output": "â â ¥â ›â â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "pugnaciousness's", "output": "â â ¥â ›â â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "pugnacity", "output": "â â ¥â ›â â â ‰â °â ½" }, { "input": "pugnacity's", "output": "â â ¥â ›â â â ‰â °â ½â „â Ž" }, { "input": "pugs", "output": "â â ¥â ›â Ž" }, { "input": "puke", "output": "â â ¥â …â ‘" }, { "input": "puke's", "output": "â â ¥â …â ‘â „â Ž" }, { "input": "puked", "output": "â â ¥â …â «" }, { "input": "pukes", "output": "â â ¥â …â ‘â Ž" }, { "input": "puking", "output": "â â ¥â …â Œ" }, { "input": "pulchritude", "output": "â â ¥â ‡â ¡â —⠊⠞⠥⠙⠑" }, { "input": "pulchritude's", "output": "â â ¥â ‡â ¡â —⠊⠞⠥⠙⠑⠄⠎" }, { "input": "pulchritudinous", "output": "â â ¥â ‡â ¡â —⠊⠞⠥⠙⠔⠳⠎" }, { "input": "pule", "output": "â â ¥â ‡â ‘" }, { "input": "puled", "output": "â â ¥â ‡â «" }, { "input": "pules", "output": "â â ¥â ‡â ‘â Ž" }, { "input": "puling", "output": "â â ¥â ‡â Œ" }, { "input": "pull", "output": "â â ¥â ‡â ‡" }, { "input": "pull's", "output": "â â ¥â ‡â ‡â „â Ž" }, { "input": "pullback", "output": "â â ¥â ‡â ‡â ƒâ â ‰â …" }, { "input": "pullback's", "output": "â â ¥â ‡â ‡â ƒâ â ‰â …â „â Ž" }, { "input": "pullbacks", "output": "â â ¥â ‡â ‡â ƒâ â ‰â …â Ž" }, { "input": "pulled", "output": "â â ¥â ‡â ‡â «" }, { "input": "puller", "output": "â â ¥â ‡â ‡â »" }, { "input": "puller's", "output": "â â ¥â ‡â ‡â »â „â Ž" }, { "input": "pullers", "output": "â â ¥â ‡â ‡â »â Ž" }, { "input": "pullet", "output": "â â ¥â ‡â ‡â ‘â ž" }, { "input": "pullet's", "output": "â â ¥â ‡â ‡â ‘â žâ „â Ž" }, { "input": "pullets", "output": "â â ¥â ‡â ‡â ‘â žâ Ž" }, { "input": "pulley", "output": "â â ¥â ‡â ‡â ‘â ½" }, { "input": "pulley's", "output": "â â ¥â ‡â ‡â ‘⠽⠄⠎" }, { "input": "pulleys", "output": "â â ¥â ‡â ‡â ‘⠽⠎" }, { "input": "pulling", "output": "â â ¥â ‡â ‡â Œ" }, { "input": "pullout", "output": "â â ¥â ‡â ‡â ³â ž" }, { "input": "pullout's", "output": "â â ¥â ‡â ‡â ³â žâ „â Ž" }, { "input": "pullouts", "output": "â â ¥â ‡â ‡â ³â žâ Ž" }, { "input": "pullover", "output": "â â ¥â ‡â ‡â •â §â »" }, { "input": "pullover's", "output": "â â ¥â ‡â ‡â •⠧⠻⠄⠎" }, { "input": "pullovers", "output": "â â ¥â ‡â ‡â •⠧⠻⠎" }, { "input": "pulls", "output": "â â ¥â ‡â ‡â Ž" }, { "input": "pulmonary", "output": "â â ¥â ‡â â •â â œâ ½" }, { "input": "pulp", "output": "â â ¥â ‡â " }, { "input": "pulp's", "output": "â â ¥â ‡â â „â Ž" }, { "input": "pulped", "output": "â â ¥â ‡â â «" }, { "input": "pulpier", "output": "â â ¥â ‡â â Šâ »" }, { "input": "pulpiest", "output": "â â ¥â ‡â â Šâ ‘â Œ" }, { "input": "pulpiness", "output": "â â ¥â ‡â â Šâ °â Ž" }, { "input": "pulpiness's", "output": "â â ¥â ‡â â Šâ °â Žâ „â Ž" }, { "input": "pulping", "output": "â â ¥â ‡â â Œ" }, { "input": "pulpit", "output": "â â ¥â ‡â â Šâ ž" }, { "input": "pulpit's", "output": "â â ¥â ‡â â Šâ žâ „â Ž" }, { "input": "pulpits", "output": "â â ¥â ‡â â Šâ žâ Ž" }, { "input": "pulps", "output": "â â ¥â ‡â â Ž" }, { "input": "pulpwood", "output": "â â ¥â ‡â â ºâ •â •â ™" }, { "input": "pulpwood's", "output": "â â ¥â ‡â â ºâ •⠕⠙⠄⠎" }, { "input": "pulpy", "output": "â â ¥â ‡â â ½" }, { "input": "pulsar", "output": "â â ¥â ‡â Žâ œ" }, { "input": "pulsar's", "output": "â â ¥â ‡â Žâ œâ „â Ž" }, { "input": "pulsars", "output": "â â ¥â ‡â Žâ œâ Ž" }, { "input": "pulsate", "output": "â â ¥â ‡â Žâ â žâ ‘" }, { "input": "pulsated", "output": "â â ¥â ‡â Žâ â žâ «" }, { "input": "pulsates", "output": "â â ¥â ‡â Žâ â žâ ‘â Ž" }, { "input": "pulsating", "output": "â â ¥â ‡â Žâ â žâ Œ" }, { "input": "pulsation", "output": "â â ¥â ‡â Žâ  â " }, { "input": "pulsation's", "output": "â â ¥â ‡â Žâ  â â „â Ž" }, { "input": "pulsations", "output": "â â ¥â ‡â Žâ  â â Ž" }, { "input": "pulse", "output": "â â ¥â ‡â Žâ ‘" }, { "input": "pulse's", "output": "â â ¥â ‡â Žâ ‘â „â Ž" }, { "input": "pulsed", "output": "â â ¥â ‡â Žâ «" }, { "input": "pulses", "output": "â â ¥â ‡â Žâ ‘â Ž" }, { "input": "pulsing", "output": "â â ¥â ‡â Žâ Œ" }, { "input": "pulverization", "output": "â â ¥â ‡â §â »â Šâ µâ  â " }, { "input": "pulverization's", "output": "â â ¥â ‡â §â »â Šâ µâ  â â „â Ž" }, { "input": "pulverize", "output": "â â ¥â ‡â §â »â Šâ µâ ‘" }, { "input": "pulverized", "output": "â â ¥â ‡â §â »â Šâ µâ «" }, { "input": "pulverizes", "output": "â â ¥â ‡â §â »â Šâ µâ ‘â Ž" }, { "input": "pulverizing", "output": "â â ¥â ‡â §â »â Šâ µâ Œ" }, { "input": "puma", "output": "â â ¥â â " }, { "input": "puma's", "output": "â â ¥â â â „â Ž" }, { "input": "pumas", "output": "â â ¥â â â Ž" }, { "input": "pumice", "output": "â â ¥â â Šâ ‰â ‘" }, { "input": "pumice's", "output": "â â ¥â â Šâ ‰â ‘â „â Ž" }, { "input": "pumices", "output": "â â ¥â â Šâ ‰â ‘â Ž" }, { "input": "pummel", "output": "â â ¥â â â ‘â ‡" }, { "input": "pummeled", "output": "â â ¥â â â ‘⠇⠫" }, { "input": "pummeling", "output": "â â ¥â â â ‘⠇⠌" }, { "input": "pummels", "output": "â â ¥â â â ‘⠇⠎" }, { "input": "pump", "output": "â â ¥â â " }, { "input": "pump's", "output": "â â ¥â â â „â Ž" }, { "input": "pumped", "output": "â â ¥â â â «" }, { "input": "pumper", "output": "â â ¥â â â »" }, { "input": "pumper's", "output": "â â ¥â â â »â „â Ž" }, { "input": "pumpernickel", "output": "â â ¥â â â »â â Šâ ‰â …â ‘â ‡" }, { "input": "pumpernickel's", "output": "â â ¥â â â »â â Šâ ‰â …⠑⠇⠄⠎" }, { "input": "pumpers", "output": "â â ¥â â â »â Ž" }, { "input": "pumping", "output": "â â ¥â â â Œ" }, { "input": "pumpkin", "output": "â â ¥â â â …â ”" }, { "input": "pumpkin's", "output": "â â ¥â â â …⠔⠄⠎" }, { "input": "pumpkins", "output": "â â ¥â â â …⠔⠎" }, { "input": "pumps", "output": "â â ¥â â â Ž" }, { "input": "pun", "output": "â â ¥â " }, { "input": "pun's", "output": "â â ¥â â „â Ž" }, { "input": "punch", "output": "â â ¥â â ¡" }, { "input": "punch's", "output": "â â ¥â â ¡â „â Ž" }, { "input": "punched", "output": "â â ¥â â ¡â «" }, { "input": "puncheon", "output": "â â ¥â â ¡â ‘â •â " }, { "input": "puncheon's", "output": "â â ¥â â ¡â ‘â •â â „â Ž" }, { "input": "puncheons", "output": "â â ¥â â ¡â ‘â •â â Ž" }, { "input": "puncher", "output": "â â ¥â â ¡â »" }, { "input": "puncher's", "output": "â â ¥â â ¡â »â „â Ž" }, { "input": "punchers", "output": "â â ¥â â ¡â »â Ž" }, { "input": "punches", "output": "â â ¥â â ¡â ‘â Ž" }, { "input": "punchier", "output": "â â ¥â â ¡â Šâ »" }, { "input": "punchiest", "output": "â â ¥â â ¡â Šâ ‘â Œ" }, { "input": "punching", "output": "â â ¥â â ¡â Œ" }, { "input": "punchline", "output": "â â ¥â â ¡â ‡â ”â ‘" }, { "input": "punchy", "output": "â â ¥â â ¡â ½" }, { "input": "punctilio", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ •" }, { "input": "punctilio's", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ •â „â Ž" }, { "input": "punctilious", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ ³â Ž" }, { "input": "punctiliously", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ ³â Žâ ‡â ½" }, { "input": "punctiliousness's", "output": "â â ¥â â ‰â žâ Šâ ‡â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "punctual", "output": "â â ¥â â ‰â žâ ¥â â ‡" }, { "input": "punctuality", "output": "â â ¥â â ‰â žâ ¥â â ‡â °â ½" }, { "input": "punctuality's", "output": "â â ¥â â ‰â žâ ¥â â ‡â °â ½â „â Ž" }, { "input": "punctually", "output": "â â ¥â â ‰â žâ ¥â  â ½" }, { "input": "punctuate", "output": "â â ¥â â ‰â žâ ¥â â žâ ‘" }, { "input": "punctuated", "output": "â â ¥â â ‰â žâ ¥â â žâ «" }, { "input": "punctuates", "output": "â â ¥â â ‰â žâ ¥â â žâ ‘â Ž" }, { "input": "punctuating", "output": "â â ¥â â ‰â žâ ¥â â žâ Œ" }, { "input": "punctuation", "output": "â â ¥â â ‰â žâ ¥â  â " }, { "input": "punctuation's", "output": "â â ¥â â ‰â žâ ¥â  â â „â Ž" }, { "input": "puncture", "output": "â â ¥â â ‰â žâ ¥â —â ‘" }, { "input": "puncture's", "output": "â â ¥â â ‰â žâ ¥â —â ‘â „â Ž" }, { "input": "punctured", "output": "â â ¥â â ‰â žâ ¥â —â «" }, { "input": "punctures", "output": "â â ¥â â ‰â žâ ¥â —â ‘â Ž" }, { "input": "puncturing", "output": "â â ¥â â ‰â žâ ¥â —â Œ" }, { "input": "pundit", "output": "â â ¥â â ™â Šâ ž" }, { "input": "pundit's", "output": "â â ¥â â ™â Šâ žâ „â Ž" }, { "input": "punditry", "output": "â â ¥â â ™â Šâ žâ —â ½" }, { "input": "punditry's", "output": "â â ¥â â ™â Šâ žâ —⠽⠄⠎" }, { "input": "pundits", "output": "â â ¥â â ™â Šâ žâ Ž" }, { "input": "pungency", "output": "â â ¥â â ›â ¢â ‰â ½" }, { "input": "pungency's", "output": "â â ¥â â ›â ¢â ‰â ½â „â Ž" }, { "input": "pungent", "output": "â â ¥â â ›â ¢â ž" }, { "input": "pungently", "output": "â â ¥â â ›â ¢â žâ ‡â ½" }, { "input": "punier", "output": "â â ¥â â Šâ »" }, { "input": "puniest", "output": "â â ¥â â Šâ ‘â Œ" }, { "input": "puniness", "output": "â â ¥â â Šâ °â Ž" }, { "input": "puniness's", "output": "â â ¥â â Šâ °â Žâ „â Ž" }, { "input": "punish", "output": "â â ¥â â Šâ ©" }, { "input": "punishable", "output": "â â ¥â â Šâ ©â â ¼" }, { "input": "punished", "output": "â â ¥â â Šâ ©â «" }, { "input": "punishes", "output": "â â ¥â â Šâ ©â ‘â Ž" }, { "input": "punishing", "output": "â â ¥â â Šâ ©â Œ" }, { "input": "punishment", "output": "â â ¥â â Šâ ©â °â ž" }, { "input": "punishment's", "output": "â â ¥â â Šâ ©â °â žâ „â Ž" }, { "input": "punishments", "output": "â â ¥â â Šâ ©â °â žâ Ž" }, { "input": "punitive", "output": "â â ¥â â Šâ žâ Šâ §â ‘" }, { "input": "punk", "output": "â â ¥â â …" }, { "input": "punk's", "output": "â â ¥â â …â „â Ž" }, { "input": "punker", "output": "â â ¥â â …â »" }, { "input": "punkest", "output": "â â ¥â â …â ‘â Œ" }, { "input": "punks", "output": "â â ¥â â …â Ž" }, { "input": "punned", "output": "â â ¥â â â «" }, { "input": "punning", "output": "â â ¥â â â Œ" }, { "input": "puns", "output": "â â ¥â â Ž" }, { "input": "punster", "output": "â â ¥â â Œâ »" }, { "input": "punster's", "output": "â â ¥â â Œâ »â „â Ž" }, { "input": "punsters", "output": "â â ¥â â Œâ »â Ž" }, { "input": "punt", "output": "â â ¥â â ž" }, { "input": "punt's", "output": "â â ¥â â žâ „â Ž" }, { "input": "punted", "output": "â â ¥â â žâ «" }, { "input": "punter", "output": "â â ¥â â žâ »" }, { "input": "punter's", "output": "â â ¥â â žâ »â „â Ž" }, { "input": "punters", "output": "â â ¥â â žâ »â Ž" }, { "input": "punting", "output": "â â ¥â â žâ Œ" }, { "input": "punts", "output": "â â ¥â â žâ Ž" }, { "input": "puny", "output": "â â ¥â â ½" }, { "input": "pup", "output": "â â ¥â " }, { "input": "pup's", "output": "â â ¥â â „â Ž" }, { "input": "pupa", "output": "â â ¥â â " }, { "input": "pupa's", "output": "â â ¥â â â „â Ž" }, { "input": "pupae", "output": "â â ¥â â â ‘" }, { "input": "pupal", "output": "â â ¥â â â ‡" }, { "input": "pupil", "output": "â â ¥â â Šâ ‡" }, { "input": "pupil's", "output": "â â ¥â â Šâ ‡â „â Ž" }, { "input": "pupils", "output": "â â ¥â â Šâ ‡â Ž" }, { "input": "pupped", "output": "â â ¥â â â «" }, { "input": "puppet", "output": "â â ¥â â â ‘â ž" }, { "input": "puppet's", "output": "â â ¥â â â ‘â žâ „â Ž" }, { "input": "puppeteer", "output": "â â ¥â â â ‘â žâ ‘â »" }, { "input": "puppeteer's", "output": "â â ¥â â â ‘⠞⠑⠻⠄⠎" }, { "input": "puppeteers", "output": "â â ¥â â â ‘⠞⠑⠻⠎" }, { "input": "puppetry", "output": "â â ¥â â â ‘â žâ —â ½" }, { "input": "puppetry's", "output": "â â ¥â â â ‘⠞⠗⠽⠄⠎" }, { "input": "puppets", "output": "â â ¥â â â ‘â žâ Ž" }, { "input": "puppies", "output": "â â ¥â â â Šâ ‘â Ž" }, { "input": "pupping", "output": "â â ¥â â â Œ" }, { "input": "puppy", "output": "â â ¥â â â ½" }, { "input": "puppy's", "output": "â â ¥â â â ½â „â Ž" }, { "input": "pups", "output": "â â ¥â â Ž" }, { "input": "purblind", "output": "â â ¥â —⠃⠇" }, { "input": "purchasable", "output": "â â ¥â —â ¡â â Žâ â ¼" }, { "input": "purchase", "output": "â â ¥â —â ¡â â Žâ ‘" }, { "input": "purchase's", "output": "â â ¥â —â ¡â â Žâ ‘â „â Ž" }, { "input": "purchased", "output": "â â ¥â —â ¡â â Žâ «" }, { "input": "purchaser", "output": "â â ¥â —â ¡â â Žâ »" }, { "input": "purchaser's", "output": "â â ¥â —â ¡â â Žâ »â „â Ž" }, { "input": "purchasers", "output": "â â ¥â —â ¡â â Žâ »â Ž" }, { "input": "purchases", "output": "â â ¥â —â ¡â â Žâ ‘â Ž" }, { "input": "purchasing", "output": "â â ¥â —â ¡â â Žâ Œ" }, { "input": "purdah's", "output": "â â ¥â —â ™â â “â „â Ž" }, { "input": "pure", "output": "â â ¥â —â ‘" }, { "input": "purebred", "output": "â â ¥â —⠑⠃⠗⠫" }, { "input": "purebred's", "output": "â â ¥â —⠑⠃⠗⠫⠄⠎" }, { "input": "purebreds", "output": "â â ¥â —⠑⠃⠗⠫⠎" }, { "input": "puree", "output": "â â ¥â —â ‘â ‘" }, { "input": "puree's", "output": "â â ¥â —â ‘â ‘â „â Ž" }, { "input": "pureed", "output": "â â ¥â —â ‘â «" }, { "input": "pureeing", "output": "â â ¥â —â ‘â ‘â Œ" }, { "input": "purees", "output": "â â ¥â —â ‘â ‘â Ž" }, { "input": "purely", "output": "â â ¥â —⠑⠇⠽" }, { "input": "pureness", "output": "â â ¥â —â ‘â °â Ž" }, { "input": "pureness's", "output": "â â ¥â —â ‘â °â Žâ „â Ž" }, { "input": "purer", "output": "â â ¥â —â »" }, { "input": "purest", "output": "â â ¥â —â ‘â Œ" }, { "input": "purgative", "output": "â â ¥â —â ›â â žâ Šâ §â ‘" }, { "input": "purgative's", "output": "â â ¥â —â ›â â žâ Šâ §â ‘â „â Ž" }, { "input": "purgatives", "output": "â â ¥â —â ›â â žâ Šâ §â ‘â Ž" }, { "input": "purgatorial", "output": "â â ¥â —â ›â â žâ •â —â Šâ â ‡" }, { "input": "purgatories", "output": "â â ¥â —â ›â â žâ •â —â Šâ ‘â Ž" }, { "input": "purgatory", "output": "â â ¥â —â ›â â žâ •â —â ½" }, { "input": "purgatory's", "output": "â â ¥â —â ›â â žâ •⠗⠽⠄⠎" }, { "input": "purge", "output": "â â ¥â —⠛⠑" }, { "input": "purge's", "output": "â â ¥â —⠛⠑⠄⠎" }, { "input": "purged", "output": "â â ¥â —⠛⠫" }, { "input": "purger", "output": "â â ¥â —⠛⠻" }, { "input": "purger's", "output": "â â ¥â —⠛⠻⠄⠎" }, { "input": "purgers", "output": "â â ¥â —⠛⠻⠎" }, { "input": "purges", "output": "â â ¥â —⠛⠑⠎" }, { "input": "purging", "output": "â â ¥â —⠛⠌" }, { "input": "purification", "output": "â â ¥â —⠊⠋⠊⠉⠠â " }, { "input": "purification's", "output": "â â ¥â —⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "purified", "output": "â â ¥â —â Šâ ‹â Šâ «" }, { "input": "purifier", "output": "â â ¥â —â Šâ ‹â Šâ »" }, { "input": "purifier's", "output": "â â ¥â —⠊⠋⠊⠻⠄⠎" }, { "input": "purifiers", "output": "â â ¥â —⠊⠋⠊⠻⠎" }, { "input": "purifies", "output": "â â ¥â —â Šâ ‹â Šâ ‘â Ž" }, { "input": "purify", "output": "â â ¥â —â Šâ ‹â ½" }, { "input": "purifying", "output": "â â ¥â —⠊⠋⠽⠌" }, { "input": "purine", "output": "â â ¥â —⠔⠑" }, { "input": "purine's", "output": "â â ¥â —⠔⠑⠄⠎" }, { "input": "purines", "output": "â â ¥â —⠔⠑⠎" }, { "input": "purism", "output": "â â ¥â —â Šâ Žâ " }, { "input": "purism's", "output": "â â ¥â —â Šâ Žâ â „â Ž" }, { "input": "purist", "output": "â â ¥â —â Šâ Œ" }, { "input": "purist's", "output": "â â ¥â —⠊⠌⠄⠎" }, { "input": "puristic", "output": "â â ¥â —⠊⠌⠊⠉" }, { "input": "purists", "output": "â â ¥â —⠊⠌⠎" }, { "input": "puritan", "output": "â â ¥â —â Šâ žâ â " }, { "input": "puritan's", "output": "â â ¥â —â Šâ žâ â â „â Ž" }, { "input": "puritanical", "output": "â â ¥â —â Šâ žâ â â Šâ ‰â â ‡" }, { "input": "puritanically", "output": "â â ¥â —â Šâ žâ â â Šâ ‰â  â ½" }, { "input": "puritanism", "output": "â â ¥â —â Šâ žâ â â Šâ Žâ " }, { "input": "puritanism's", "output": "â â ¥â —â Šâ žâ â â Šâ Žâ â „â Ž" }, { "input": "puritans", "output": "â â ¥â —â Šâ žâ â â Ž" }, { "input": "purity", "output": "â â ¥â —â °â ½" }, { "input": "purity's", "output": "â â ¥â —⠰⠽⠄⠎" }, { "input": "purl", "output": "â â ¥â —â ‡" }, { "input": "purl's", "output": "â â ¥â —⠇⠄⠎" }, { "input": "purled", "output": "â â ¥â —⠇⠫" }, { "input": "purlieu", "output": "â â ¥â —⠇⠊⠑⠥" }, { "input": "purlieu's", "output": "â â ¥â —⠇⠊⠑⠥⠄⠎" }, { "input": "purlieus", "output": "â â ¥â —⠇⠊⠑⠥⠎" }, { "input": "purling", "output": "â â ¥â —⠇⠌" }, { "input": "purloin", "output": "â â ¥â —⠇⠕⠔" }, { "input": "purloined", "output": "â â ¥â —⠇⠕⠔⠫" }, { "input": "purloining", "output": "â â ¥â —⠇⠕⠔⠌" }, { "input": "purloins", "output": "â â ¥â —⠇⠕⠔⠎" }, { "input": "purls", "output": "â â ¥â —⠇⠎" }, { "input": "purple", "output": "â â ¥â —â â ‡â ‘" }, { "input": "purple's", "output": "â â ¥â —â â ‡â ‘â „â Ž" }, { "input": "purpler", "output": "â â ¥â —â â ‡â »" }, { "input": "purples", "output": "â â ¥â —â â ‡â ‘â Ž" }, { "input": "purplest", "output": "â â ¥â —â â ‡â ‘â Œ" }, { "input": "purplish", "output": "â â ¥â —â â ‡â Šâ ©" }, { "input": "purport", "output": "â â ¥â —â â •â —â ž" }, { "input": "purport's", "output": "â â ¥â —â â •â —â žâ „â Ž" }, { "input": "purported", "output": "â â ¥â —â â •â —â žâ «" }, { "input": "purportedly", "output": "â â ¥â —â â •⠗⠞⠫⠇⠽" }, { "input": "purporting", "output": "â â ¥â —â â •â —â žâ Œ" }, { "input": "purports", "output": "â â ¥â —â â •â —â žâ Ž" }, { "input": "purpose", "output": "â â ¥â —â â •â Žâ ‘" }, { "input": "purpose's", "output": "â â ¥â —â â •â Žâ ‘â „â Ž" }, { "input": "purposed", "output": "â â ¥â —â â •â Žâ «" }, { "input": "purposeful", "output": "â â ¥â —â â •â Žâ ‘â °â ‡" }, { "input": "purposefully", "output": "â â ¥â —â â •⠎⠑⠰⠇⠇⠽" }, { "input": "purposefulness's", "output": "â â ¥â —â â •⠎⠑⠰⠇⠰⠎⠄⠎" }, { "input": "purposeless", "output": "â â ¥â —â â •⠎⠑⠨⠎" }, { "input": "purposely", "output": "â â ¥â —â â •⠎⠑⠇⠽" }, { "input": "purposes", "output": "â â ¥â —â â •â Žâ ‘â Ž" }, { "input": "purposing", "output": "â â ¥â —â â •â Žâ Œ" }, { "input": "purr", "output": "â â ¥â —â —" }, { "input": "purr's", "output": "â â ¥â —â —â „â Ž" }, { "input": "purred", "output": "â â ¥â —â —â «" }, { "input": "purring", "output": "â â ¥â —â —â Œ" }, { "input": "purrs", "output": "â â ¥â —â —â Ž" }, { "input": "purse", "output": "â â ¥â —â Žâ ‘" }, { "input": "purse's", "output": "â â ¥â —â Žâ ‘â „â Ž" }, { "input": "pursed", "output": "â â ¥â —â Žâ «" }, { "input": "purser", "output": "â â ¥â —â Žâ »" }, { "input": "purser's", "output": "â â ¥â —⠎⠻⠄⠎" }, { "input": "pursers", "output": "â â ¥â —⠎⠻⠎" }, { "input": "purses", "output": "â â ¥â —â Žâ ‘â Ž" }, { "input": "pursing", "output": "â â ¥â —â Žâ Œ" }, { "input": "pursuance", "output": "â â ¥â —⠎⠥⠨⠑" }, { "input": "pursuance's", "output": "â â ¥â —⠎⠥⠨⠑⠄⠎" }, { "input": "pursuant", "output": "â â ¥â —â Žâ ¥â â â ž" }, { "input": "pursue", "output": "â â ¥â —⠎⠥⠑" }, { "input": "pursued", "output": "â â ¥â —⠎⠥⠫" }, { "input": "pursuer", "output": "â â ¥â —⠎⠥⠻" }, { "input": "pursuer's", "output": "â â ¥â —⠎⠥⠻⠄⠎" }, { "input": "pursuers", "output": "â â ¥â —⠎⠥⠻⠎" }, { "input": "pursues", "output": "â â ¥â —⠎⠥⠑⠎" }, { "input": "pursuing", "output": "â â ¥â —⠎⠥⠌" }, { "input": "pursuit", "output": "â â ¥â —⠎⠥⠊⠞" }, { "input": "pursuit's", "output": "â â ¥â —⠎⠥⠊⠞⠄⠎" }, { "input": "pursuits", "output": "â â ¥â —⠎⠥⠊⠞⠎" }, { "input": "purulence", "output": "â â ¥â —⠥⠇⠰⠑" }, { "input": "purulence's", "output": "â â ¥â —⠥⠇⠰⠑⠄⠎" }, { "input": "purulent", "output": "â â ¥â —⠥⠇⠢⠞" }, { "input": "purvey", "output": "â â ¥â —â §â ‘â ½" }, { "input": "purveyance", "output": "â â ¥â —⠧⠑⠽⠨⠑" }, { "input": "purveyance's", "output": "â â ¥â —⠧⠑⠽⠨⠑⠄⠎" }, { "input": "purveyed", "output": "â â ¥â —⠧⠑⠽⠫" }, { "input": "purveying", "output": "â â ¥â —⠧⠑⠽⠌" }, { "input": "purveyor", "output": "â â ¥â —⠧⠑⠽⠕⠗" }, { "input": "purveyor's", "output": "â â ¥â —⠧⠑⠽⠕⠗⠄⠎" }, { "input": "purveyors", "output": "â â ¥â —⠧⠑⠽⠕⠗⠎" }, { "input": "purveys", "output": "â â ¥â —⠧⠑⠽⠎" }, { "input": "purview", "output": "â â ¥â —â §â Šâ ‘â º" }, { "input": "purview's", "output": "â â ¥â —⠧⠊⠑⠺⠄⠎" }, { "input": "pus", "output": "â â ¥â Ž" }, { "input": "pus's", "output": "â â ¥â Žâ „â Ž" }, { "input": "push", "output": "â â ¥â ©" }, { "input": "push's", "output": "â â ¥â ©â „â Ž" }, { "input": "pushcart", "output": "â â ¥â ©â ‰â œâ ž" }, { "input": "pushcart's", "output": "â â ¥â ©â ‰â œâ žâ „â Ž" }, { "input": "pushcarts", "output": "â â ¥â ©â ‰â œâ žâ Ž" }, { "input": "pushed", "output": "â â ¥â ©â «" }, { "input": "pusher", "output": "â â ¥â ©â »" }, { "input": "pusher's", "output": "â â ¥â ©â »â „â Ž" }, { "input": "pushers", "output": "â â ¥â ©â »â Ž" }, { "input": "pushes", "output": "â â ¥â ©â ‘â Ž" }, { "input": "pushier", "output": "â â ¥â ©â Šâ »" }, { "input": "pushiest", "output": "â â ¥â ©â Šâ ‘â Œ" }, { "input": "pushiness", "output": "â â ¥â ©â Šâ °â Ž" }, { "input": "pushiness's", "output": "â â ¥â ©â Šâ °â Žâ „â Ž" }, { "input": "pushing", "output": "â â ¥â ©â Œ" }, { "input": "pushover", "output": "â â ¥â ©â •â §â »" }, { "input": "pushover's", "output": "â â ¥â ©â •⠧⠻⠄⠎" }, { "input": "pushovers", "output": "â â ¥â ©â •⠧⠻⠎" }, { "input": "pushy", "output": "â â ¥â ©â ½" }, { "input": "pusillanimity", "output": "â â ¥â Žâ Šâ ‡â ‡â â â Šâ â °â ½" }, { "input": "pusillanimity's", "output": "â â ¥â Žâ Šâ ‡â ‡â â â Šâ â °â ½â „â Ž" }, { "input": "pusillanimous", "output": "â â ¥â Žâ Šâ ‡â ‡â â â Šâ â ³â Ž" }, { "input": "puss", "output": "â â ¥â Žâ Ž" }, { "input": "puss's", "output": "â â ¥â Žâ Žâ „â Ž" }, { "input": "pusses", "output": "â â ¥â Žâ Žâ ‘â Ž" }, { "input": "pussier", "output": "â â ¥â Žâ Žâ Šâ »" }, { "input": "pussies", "output": "â â ¥â Žâ Žâ Šâ ‘â Ž" }, { "input": "pussiest", "output": "â â ¥â Žâ Žâ Šâ ‘â Œ" }, { "input": "pussy", "output": "â â ¥â Žâ Žâ ½" }, { "input": "pussy's", "output": "â â ¥â Žâ Žâ ½â „â Ž" }, { "input": "pussycat", "output": "â â ¥â Žâ Žâ ½â ‰â â ž" }, { "input": "pussycat's", "output": "â â ¥â Žâ Žâ ½â ‰â â žâ „â Ž" }, { "input": "pussycats", "output": "â â ¥â Žâ Žâ ½â ‰â â žâ Ž" }, { "input": "pussyfoot", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â ž" }, { "input": "pussyfooted", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â žâ «" }, { "input": "pussyfooting", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â žâ Œ" }, { "input": "pussyfoots", "output": "â â ¥â Žâ Žâ ½â ‹â •â •â žâ Ž" }, { "input": "pustular", "output": "â â ¥â Œâ ¥â ‡â œ" }, { "input": "pustule", "output": "â â ¥â Œâ ¥â ‡â ‘" }, { "input": "pustule's", "output": "â â ¥â Œâ ¥â ‡â ‘â „â Ž" }, { "input": "pustules", "output": "â â ¥â Œâ ¥â ‡â ‘â Ž" }, { "input": "put", "output": "â â ¥â ž" }, { "input": "put's", "output": "â â ¥â žâ „â Ž" }, { "input": "putative", "output": "â â ¥â žâ â žâ Šâ §â ‘" }, { "input": "putout", "output": "â â ¥â žâ ³â ž" }, { "input": "putout's", "output": "â â ¥â žâ ³â žâ „â Ž" }, { "input": "putouts", "output": "â â ¥â žâ ³â žâ Ž" }, { "input": "putrefaction", "output": "â â ¥â žâ —â ‘â ‹â â ‰â °â " }, { "input": "putrefaction's", "output": "â â ¥â žâ —â ‘â ‹â â ‰â °â â „â Ž" }, { "input": "putrefactive", "output": "â â ¥â žâ —â ‘â ‹â â ‰â žâ Šâ §â ‘" }, { "input": "putrefied", "output": "â â ¥â žâ —â ‘â ‹â Šâ «" }, { "input": "putrefies", "output": "â â ¥â žâ —â ‘â ‹â Šâ ‘â Ž" }, { "input": "putrefy", "output": "â â ¥â žâ —â ‘â ‹â ½" }, { "input": "putrefying", "output": "â â ¥â žâ —⠑⠋⠽⠌" }, { "input": "putrescence", "output": "â â ¥â žâ —⠑⠎⠉⠰⠑" }, { "input": "putrescence's", "output": "â â ¥â žâ —⠑⠎⠉⠰⠑⠄⠎" }, { "input": "putrescent", "output": "â â ¥â žâ —⠑⠎⠉⠢⠞" }, { "input": "putrid", "output": "â â ¥â žâ —â Šâ ™" }, { "input": "puts", "output": "â â ¥â žâ Ž" }, { "input": "putsch", "output": "â â ¥â žâ Žâ ¡" }, { "input": "putsch's", "output": "â â ¥â žâ Žâ ¡â „â Ž" }, { "input": "putsches", "output": "â â ¥â žâ Žâ ¡â ‘â Ž" }, { "input": "putt", "output": "â â ¥â žâ ž" }, { "input": "putt's", "output": "â â ¥â žâ žâ „â Ž" }, { "input": "putted", "output": "â â ¥â žâ žâ «" }, { "input": "puttee", "output": "â â ¥â žâ žâ ‘â ‘" }, { "input": "puttee's", "output": "â â ¥â žâ žâ ‘â ‘â „â Ž" }, { "input": "puttees", "output": "â â ¥â žâ žâ ‘â ‘â Ž" }, { "input": "putter", "output": "â â ¥â žâ žâ »" }, { "input": "putter's", "output": "â â ¥â žâ žâ »â „â Ž" }, { "input": "puttered", "output": "â â ¥â žâ žâ »â «" }, { "input": "putterer", "output": "â â ¥â žâ žâ »â »" }, { "input": "putterer's", "output": "â â ¥â žâ žâ »â »â „â Ž" }, { "input": "putterers", "output": "â â ¥â žâ žâ »â »â Ž" }, { "input": "puttering", "output": "â â ¥â žâ žâ »â Œ" }, { "input": "putters", "output": "â â ¥â žâ žâ »â Ž" }, { "input": "puttied", "output": "â â ¥â žâ žâ Šâ «" }, { "input": "putties", "output": "â â ¥â žâ žâ Šâ ‘â Ž" }, { "input": "putting", "output": "â â ¥â žâ žâ Œ" }, { "input": "putts", "output": "â â ¥â žâ žâ Ž" }, { "input": "putty", "output": "â â ¥â žâ žâ ½" }, { "input": "putty's", "output": "â â ¥â žâ žâ ½â „â Ž" }, { "input": "puttying", "output": "â â ¥â žâ žâ ½â Œ" }, { "input": "puzzle", "output": "â â ¥â µâ µâ ‡â ‘" }, { "input": "puzzle's", "output": "â â ¥â µâ µâ ‡â ‘â „â Ž" }, { "input": "puzzled", "output": "â â ¥â µâ µâ ‡â «" }, { "input": "puzzlement", "output": "â â ¥â µâ µâ ‡â ‘â °â ž" }, { "input": "puzzlement's", "output": "â â ¥â µâ µâ ‡â ‘â °â žâ „â Ž" }, { "input": "puzzler", "output": "â â ¥â µâ µâ ‡â »" }, { "input": "puzzler's", "output": "â â ¥â µâ µâ ‡â »â „â Ž" }, { "input": "puzzlers", "output": "â â ¥â µâ µâ ‡â »â Ž" }, { "input": "puzzles", "output": "â â ¥â µâ µâ ‡â ‘â Ž" }, { "input": "puzzling", "output": "â â ¥â µâ µâ ‡â Œ" }, { "input": "pygmies", "output": "â â ½â ›â â Šâ ‘â Ž" }, { "input": "pygmy", "output": "â â ½â ›â â ½" }, { "input": "pygmy's", "output": "â â ½â ›â â ½â „â Ž" }, { "input": "pylon", "output": "â â ½â ‡â •â " }, { "input": "pylon's", "output": "â â ½â ‡â •â â „â Ž" }, { "input": "pylons", "output": "â â ½â ‡â •â â Ž" }, { "input": "pylori", "output": "â â ½â ‡â •â —â Š" }, { "input": "pyloric", "output": "â â ½â ‡â •â —â Šâ ‰" }, { "input": "pylorus", "output": "â â ½â ‡â •⠗⠥⠎" }, { "input": "pylorus's", "output": "â â ½â ‡â •⠗⠥⠎⠄⠎" }, { "input": "pyorrhea", "output": "â â ½â •â —â —â “â ‘â " }, { "input": "pyorrhea's", "output": "â â ½â •â —â —â “â ‘â â „â Ž" }, { "input": "pyramid", "output": "â â ½â —â â â Šâ ™" }, { "input": "pyramid's", "output": "â â ½â —â â â Šâ ™â „â Ž" }, { "input": "pyramidal", "output": "â â ½â —â â â Šâ ™â â ‡" }, { "input": "pyramided", "output": "â â ½â —â â â Šâ ™â «" }, { "input": "pyramiding", "output": "â â ½â —â â â Šâ ™â Œ" }, { "input": "pyramids", "output": "â â ½â —â â â Šâ ™â Ž" }, { "input": "pyre", "output": "â â ½â —â ‘" }, { "input": "pyre's", "output": "â â ½â —â ‘â „â Ž" }, { "input": "pyres", "output": "â â ½â —â ‘â Ž" }, { "input": "pyrimidine", "output": "â â ½â —â Šâ â Šâ ™â ”â ‘" }, { "input": "pyrimidine's", "output": "â â ½â —â Šâ â Šâ ™â ”â ‘â „â Ž" }, { "input": "pyrimidines", "output": "â â ½â —â Šâ â Šâ ™â ”â ‘â Ž" }, { "input": "pyrite", "output": "â â ½â —â Šâ žâ ‘" }, { "input": "pyrite's", "output": "â â ½â —â Šâ žâ ‘â „â Ž" }, { "input": "pyrites's", "output": "â â ½â —â Šâ žâ ‘â Žâ „â Ž" }, { "input": "pyromania", "output": "â â ½â —â •â â â â Šâ " }, { "input": "pyromania's", "output": "â â ½â —â •â â â â Šâ â „â Ž" }, { "input": "pyromaniac", "output": "â â ½â —â •â â â â Šâ â ‰" }, { "input": "pyromaniac's", "output": "â â ½â —â •â â â â Šâ â ‰â „â Ž" }, { "input": "pyromaniacs", "output": "â â ½â —â •â â â â Šâ â ‰â Ž" }, { "input": "pyrotechnic", "output": "â â ½â —â •â žâ ‘â ¡â â Šâ ‰" }, { "input": "pyrotechnical", "output": "â â ½â —â •â žâ ‘â ¡â â Šâ ‰â â ‡" }, { "input": "pyrotechnics", "output": "â â ½â —â •â žâ ‘â ¡â â Šâ ‰â Ž" }, { "input": "pyrotechnics's", "output": "â â ½â —â •â žâ ‘â ¡â â Šâ ‰â Žâ „â Ž" }, { "input": "python", "output": "â â ½â ¹â •â " }, { "input": "python's", "output": "â â ½â ¹â •â â „â Ž" }, { "input": "pythons", "output": "â â ½â ¹â •â â Ž" }, { "input": "pyx", "output": "â â ½â ­" }, { "input": "pyx's", "output": "â â ½â ­â „â Ž" }, { "input": "pyxes", "output": "â â ½â ­â ‘â Ž" }, { "input": "q", "output": "â °â Ÿ" }, { "input": "qua", "output": "â Ÿâ ¥â " }, { "input": "quack", "output": "â Ÿâ ¥â â ‰â …" }, { "input": "quack's", "output": "â Ÿâ ¥â â ‰â …â „â Ž" }, { "input": "quacked", "output": "â Ÿâ ¥â â ‰â …â «" }, { "input": "quackery", "output": "â Ÿâ ¥â â ‰â …⠻⠽" }, { "input": "quackery's", "output": "â Ÿâ ¥â â ‰â …⠻⠽⠄⠎" }, { "input": "quacking", "output": "â Ÿâ ¥â â ‰â …â Œ" }, { "input": "quacks", "output": "â Ÿâ ¥â â ‰â …â Ž" }, { "input": "quad", "output": "â Ÿâ ¥â â ™" }, { "input": "quad's", "output": "â Ÿâ ¥â â ™â „â Ž" }, { "input": "quadrangle", "output": "â Ÿâ ¥â â ™â —â â â ›â ‡â ‘" }, { "input": "quadrangle's", "output": "â Ÿâ ¥â â ™â —â â â ›â ‡â ‘â „â Ž" }, { "input": "quadrangles", "output": "â Ÿâ ¥â â ™â —â â â ›â ‡â ‘â Ž" }, { "input": "quadrangular", "output": "â Ÿâ ¥â â ™â —â â â ›â ¥â ‡â œ" }, { "input": "quadrant", "output": "â Ÿâ ¥â â ™â —â â â ž" }, { "input": "quadrant's", "output": "â Ÿâ ¥â â ™â —â â â žâ „â Ž" }, { "input": "quadrants", "output": "â Ÿâ ¥â â ™â —â â â žâ Ž" }, { "input": "quadraphonic", "output": "â Ÿâ ¥â â ™â —â â â “â •â â Šâ ‰" }, { "input": "quadratic", "output": "â Ÿâ ¥â â ™â —â â žâ Šâ ‰" }, { "input": "quadratic's", "output": "â Ÿâ ¥â â ™â —â â žâ Šâ ‰â „â Ž" }, { "input": "quadratics", "output": "â Ÿâ ¥â â ™â —â â žâ Šâ ‰â Ž" }, { "input": "quadrature", "output": "â Ÿâ ¥â â ™â —â â žâ ¥â —â ‘" }, { "input": "quadrennial", "output": "â Ÿâ ¥â â ™â —â ¢â â Šâ â ‡" }, { "input": "quadrennium", "output": "â Ÿâ ¥â â ™â —â ¢â â Šâ ¥â " }, { "input": "quadrennium's", "output": "â Ÿâ ¥â â ™â —â ¢â â Šâ ¥â â „â Ž" }, { "input": "quadrenniums", "output": "â Ÿâ ¥â â ™â —â ¢â â Šâ ¥â â Ž" }, { "input": "quadriceps", "output": "â Ÿâ ¥â â ™â —⠊⠉⠑â â Ž" }, { "input": "quadriceps's", "output": "â Ÿâ ¥â â ™â —⠊⠉⠑â â Žâ „â Ž" }, { "input": "quadricepses", "output": "â Ÿâ ¥â â ™â —⠊⠉⠑â â Žâ ‘â Ž" }, { "input": "quadrilateral", "output": "â Ÿâ ¥â â ™â —â Šâ ‡â â žâ »â â ‡" }, { "input": "quadrilateral's", "output": "â Ÿâ ¥â â ™â —â Šâ ‡â â žâ »â â ‡â „â Ž" }, { "input": "quadrilaterals", "output": "â Ÿâ ¥â â ™â —â Šâ ‡â â žâ »â â ‡â Ž" }, { "input": "quadrille", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠑" }, { "input": "quadrille's", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠑⠄⠎" }, { "input": "quadrilles", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠑⠎" }, { "input": "quadrillion", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠊⠕â " }, { "input": "quadrillion's", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠊⠕â â „â Ž" }, { "input": "quadrillions", "output": "â Ÿâ ¥â â ™â —⠊⠇⠇⠊⠕â â Ž" }, { "input": "quadriplegia", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊â " }, { "input": "quadriplegia's", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊â â „â Ž" }, { "input": "quadriplegic", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊⠉" }, { "input": "quadriplegic's", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊⠉⠄⠎" }, { "input": "quadriplegics", "output": "â Ÿâ ¥â â ™â —â Šâ â ‡â ‘⠛⠊⠉⠎" }, { "input": "quadrivium", "output": "â Ÿâ ¥â â ™â —â Šâ §â Šâ ¥â " }, { "input": "quadrivium's", "output": "â Ÿâ ¥â â ™â —â Šâ §â Šâ ¥â â „â Ž" }, { "input": "quadruped", "output": "â Ÿâ ¥â â ™â —â ¥â â «" }, { "input": "quadruped's", "output": "â Ÿâ ¥â â ™â —â ¥â â «â „â Ž" }, { "input": "quadrupedal", "output": "â Ÿâ ¥â â ™â —â ¥â â «â â ‡" }, { "input": "quadrupeds", "output": "â Ÿâ ¥â â ™â —â ¥â â «â Ž" }, { "input": "quadruple", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘" }, { "input": "quadruple's", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â „â Ž" }, { "input": "quadrupled", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â «" }, { "input": "quadruples", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â Ž" }, { "input": "quadruplet", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â ž" }, { "input": "quadruplet's", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â žâ „â Ž" }, { "input": "quadruplets", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â ‘â žâ Ž" }, { "input": "quadruplicate", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ ‘" }, { "input": "quadruplicate's", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ ‘â „â Ž" }, { "input": "quadruplicated", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ «" }, { "input": "quadruplicates", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "quadruplicating", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â â žâ Œ" }, { "input": "quadruplication", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â  â " }, { "input": "quadruplication's", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "quadrupling", "output": "â Ÿâ ¥â â ™â —â ¥â â ‡â Œ" }, { "input": "quads", "output": "â Ÿâ ¥â â ™â Ž" }, { "input": "quaff", "output": "â Ÿâ ¥â â ‹â ‹" }, { "input": "quaff's", "output": "â Ÿâ ¥â â ‹â ‹â „â Ž" }, { "input": "quaffed", "output": "â Ÿâ ¥â â –â «" }, { "input": "quaffing", "output": "â Ÿâ ¥â â –â Œ" }, { "input": "quaffs", "output": "â Ÿâ ¥â â –â Ž" }, { "input": "quagmire", "output": "â Ÿâ ¥â â ›â â Šâ —â ‘" }, { "input": "quagmire's", "output": "â Ÿâ ¥â â ›â â Šâ —â ‘â „â Ž" }, { "input": "quagmires", "output": "â Ÿâ ¥â â ›â â Šâ —â ‘â Ž" }, { "input": "quahog", "output": "â Ÿâ ¥â â “â •â ›" }, { "input": "quahog's", "output": "â Ÿâ ¥â â “⠕⠛⠄⠎" }, { "input": "quahogs", "output": "â Ÿâ ¥â â “⠕⠛⠎" }, { "input": "quail", "output": "â Ÿâ ¥â â Šâ ‡" }, { "input": "quail's", "output": "â Ÿâ ¥â â Šâ ‡â „â Ž" }, { "input": "quailed", "output": "â Ÿâ ¥â â Šâ ‡â «" }, { "input": "quailing", "output": "â Ÿâ ¥â â Šâ ‡â Œ" }, { "input": "quails", "output": "â Ÿâ ¥â â Šâ ‡â Ž" }, { "input": "quaint", "output": "â Ÿâ ¥â â ”â ž" }, { "input": "quainter", "output": "â Ÿâ ¥â â ”â žâ »" }, { "input": "quaintest", "output": "â Ÿâ ¥â â ”â žâ ‘â Œ" }, { "input": "quaintly", "output": "â Ÿâ ¥â â ”⠞⠇⠽" }, { "input": "quaintness", "output": "â Ÿâ ¥â â ”â žâ °â Ž" }, { "input": "quaintness's", "output": "â Ÿâ ¥â â ”â žâ °â Žâ „â Ž" }, { "input": "quake", "output": "â Ÿâ ¥â â …â ‘" }, { "input": "quake's", "output": "â Ÿâ ¥â â …â ‘â „â Ž" }, { "input": "quaked", "output": "â Ÿâ ¥â â …â «" }, { "input": "quakes", "output": "â Ÿâ ¥â â …â ‘â Ž" }, { "input": "quakier", "output": "â Ÿâ ¥â â …â Šâ »" }, { "input": "quakiest", "output": "â Ÿâ ¥â â …â Šâ ‘â Œ" }, { "input": "quaking", "output": "â Ÿâ ¥â â …â Œ" }, { "input": "quaky", "output": "â Ÿâ ¥â â …â ½" }, { "input": "qualification", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "qualification's", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "qualifications", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "qualified", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ «" }, { "input": "qualifier", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ »" }, { "input": "qualifier's", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ »â „â Ž" }, { "input": "qualifiers", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ »â Ž" }, { "input": "qualifies", "output": "â Ÿâ ¥â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "qualify", "output": "â Ÿâ ¥â â ‡â Šâ ‹â ½" }, { "input": "qualifying", "output": "â Ÿâ ¥â â ‡â Šâ ‹â ½â Œ" }, { "input": "qualitative", "output": "â Ÿâ ¥â â ‡â Šâ žâ â žâ Šâ §â ‘" }, { "input": "qualitatively", "output": "â Ÿâ ¥â â ‡â Šâ žâ â žâ Šâ §â ‘⠇⠽" }, { "input": "qualities", "output": "â Ÿâ ¥â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "quality", "output": "â Ÿâ ¥â â ‡â °â ½" }, { "input": "quality's", "output": "â Ÿâ ¥â â ‡â °â ½â „â Ž" }, { "input": "qualm", "output": "â Ÿâ ¥â â ‡â " }, { "input": "qualm's", "output": "â Ÿâ ¥â â ‡â â „â Ž" }, { "input": "qualmish", "output": "â Ÿâ ¥â â ‡â â Šâ ©" }, { "input": "qualms", "output": "â Ÿâ ¥â â ‡â â Ž" }, { "input": "quandaries", "output": "⠟⠥⠯⠜⠊⠑⠎" }, { "input": "quandary", "output": "⠟⠥⠯⠜⠽" }, { "input": "quandary's", "output": "⠟⠥⠯⠜⠽⠄⠎" }, { "input": "quanta", "output": "â Ÿâ ¥â â â žâ " }, { "input": "quantification's", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "quantified", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ «" }, { "input": "quantifier", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ »" }, { "input": "quantifier's", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ »â „â Ž" }, { "input": "quantifiers", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ »â Ž" }, { "input": "quantifies", "output": "â Ÿâ ¥â â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "quantify", "output": "â Ÿâ ¥â â â žâ Šâ ‹â ½" }, { "input": "quantifying", "output": "â Ÿâ ¥â â â žâ Šâ ‹â ½â Œ" }, { "input": "quantitative", "output": "â Ÿâ ¥â â â žâ Šâ žâ â žâ Šâ §â ‘" }, { "input": "quantities", "output": "â Ÿâ ¥â â â žâ Šâ žâ Šâ ‘â Ž" }, { "input": "quantity", "output": "â Ÿâ ¥â â â žâ °â ½" }, { "input": "quantity's", "output": "â Ÿâ ¥â â â žâ °â ½â „â Ž" }, { "input": "quantum", "output": "â Ÿâ ¥â â â žâ ¥â " }, { "input": "quantum's", "output": "â Ÿâ ¥â â â žâ ¥â â „â Ž" }, { "input": "quarantine", "output": "⠟⠥⠜â â â žâ ”â ‘" }, { "input": "quarantine's", "output": "⠟⠥⠜â â â žâ ”â ‘â „â Ž" }, { "input": "quarantined", "output": "⠟⠥⠜â â â žâ ”â «" }, { "input": "quarantines", "output": "⠟⠥⠜â â â žâ ”â ‘â Ž" }, { "input": "quarantining", "output": "⠟⠥⠜â â â žâ ”â Œ" }, { "input": "quark", "output": "⠟⠥⠜⠅" }, { "input": "quark's", "output": "⠟⠥⠜⠅⠄⠎" }, { "input": "quarks", "output": "⠟⠥⠜⠅⠎" }, { "input": "quarrel", "output": "⠟⠥⠜⠗⠑⠇" }, { "input": "quarrel's", "output": "⠟⠥⠜⠗⠑⠇⠄⠎" }, { "input": "quarreled", "output": "⠟⠥⠜⠗⠑⠇⠫" }, { "input": "quarreler", "output": "⠟⠥⠜⠗⠑⠇⠻" }, { "input": "quarreler's", "output": "⠟⠥⠜⠗⠑⠇⠻⠄⠎" }, { "input": "quarrelers", "output": "⠟⠥⠜⠗⠑⠇⠻⠎" }, { "input": "quarreling", "output": "⠟⠥⠜⠗⠑⠇⠌" }, { "input": "quarrels", "output": "⠟⠥⠜⠗⠑⠇⠎" }, { "input": "quarrelsome", "output": "⠟⠥⠜⠗⠑⠇â â Ž" }, { "input": "quarrelsomeness", "output": "⠟⠥⠜⠗⠑⠇â â Žâ °â Ž" }, { "input": "quarrelsomeness's", "output": "⠟⠥⠜⠗⠑⠇â â Žâ °â Žâ „â Ž" }, { "input": "quarried", "output": "⠟⠥⠜⠗⠊⠫" }, { "input": "quarries", "output": "⠟⠥⠜⠗⠊⠑⠎" }, { "input": "quarry", "output": "⠟⠥⠜⠗⠽" }, { "input": "quarry's", "output": "⠟⠥⠜⠗⠽⠄⠎" }, { "input": "quarrying", "output": "⠟⠥⠜⠗⠽⠌" }, { "input": "quart", "output": "⠟⠥⠜⠞" }, { "input": "quart's", "output": "⠟⠥⠜⠞⠄⠎" }, { "input": "quarter", "output": "⠟⠥⠜⠞⠻" }, { "input": "quarter's", "output": "⠟⠥⠜⠞⠻⠄⠎" }, { "input": "quarterback", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …" }, { "input": "quarterback's", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â „â Ž" }, { "input": "quarterbacked", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â «" }, { "input": "quarterbacking", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â Œ" }, { "input": "quarterbacks", "output": "⠟⠥⠜⠞⠻⠃â â ‰â …â Ž" }, { "input": "quarterdeck", "output": "⠟⠥⠜⠞⠻⠙⠑⠉⠅" }, { "input": "quarterdeck's", "output": "⠟⠥⠜⠞⠻⠙⠑⠉⠅⠄⠎" }, { "input": "quarterdecks", "output": "⠟⠥⠜⠞⠻⠙⠑⠉⠅⠎" }, { "input": "quartered", "output": "⠟⠥⠜⠞⠻⠫" }, { "input": "quarterfinal", "output": "⠟⠥⠜⠞⠻⠋⠔â â ‡" }, { "input": "quarterfinal's", "output": "⠟⠥⠜⠞⠻⠋⠔â â ‡â „â Ž" }, { "input": "quarterfinals", "output": "⠟⠥⠜⠞⠻⠋⠔â â ‡â Ž" }, { "input": "quartering", "output": "⠟⠥⠜⠞⠻⠌" }, { "input": "quarterlies", "output": "⠟⠥⠜⠞⠻⠇⠊⠑⠎" }, { "input": "quarterly", "output": "⠟⠥⠜⠞⠻⠇⠽" }, { "input": "quarterly's", "output": "⠟⠥⠜⠞⠻⠇⠽⠄⠎" }, { "input": "quartermaster", "output": "⠟⠥⠜⠞⠻â â â Œâ »" }, { "input": "quartermaster's", "output": "⠟⠥⠜⠞⠻â â â Œâ »â „â Ž" }, { "input": "quartermasters", "output": "⠟⠥⠜⠞⠻â â â Œâ »â Ž" }, { "input": "quarters", "output": "⠟⠥⠜⠞⠻⠎" }, { "input": "quarterstaff", "output": "⠟⠥⠜⠞⠻⠌â â ‹â ‹" }, { "input": "quarterstaff's", "output": "⠟⠥⠜⠞⠻⠌â â ‹â ‹â „â Ž" }, { "input": "quarterstaves", "output": "⠟⠥⠜⠞⠻⠌â â §â ‘â Ž" }, { "input": "quartet", "output": "⠟⠥⠜⠞⠑⠞" }, { "input": "quartet's", "output": "⠟⠥⠜⠞⠑⠞⠄⠎" }, { "input": "quartets", "output": "⠟⠥⠜⠞⠑⠞⠎" }, { "input": "quarto", "output": "⠟⠥⠜⠞⠕" }, { "input": "quarto's", "output": "⠟⠥⠜⠞⠕⠄⠎" }, { "input": "quartos", "output": "⠟⠥⠜⠞⠕⠎" }, { "input": "quarts", "output": "⠟⠥⠜⠞⠎" }, { "input": "quartz", "output": "⠟⠥⠜⠞⠵" }, { "input": "quartz's", "output": "⠟⠥⠜⠞⠵⠄⠎" }, { "input": "quasar", "output": "â Ÿâ ¥â â Žâ œ" }, { "input": "quasar's", "output": "â Ÿâ ¥â â Žâ œâ „â Ž" }, { "input": "quasars", "output": "â Ÿâ ¥â â Žâ œâ Ž" }, { "input": "quash", "output": "â Ÿâ ¥â â ©" }, { "input": "quashed", "output": "â Ÿâ ¥â â ©â «" }, { "input": "quashes", "output": "â Ÿâ ¥â â ©â ‘â Ž" }, { "input": "quashing", "output": "â Ÿâ ¥â â ©â Œ" }, { "input": "quasi", "output": "â Ÿâ ¥â â Žâ Š" }, { "input": "quatrain", "output": "â Ÿâ ¥â â žâ —â â ”" }, { "input": "quatrain's", "output": "â Ÿâ ¥â â žâ —â â ”â „â Ž" }, { "input": "quatrains", "output": "â Ÿâ ¥â â žâ —â â ”â Ž" }, { "input": "quaver", "output": "â Ÿâ ¥â â §â »" }, { "input": "quaver's", "output": "â Ÿâ ¥â â §â »â „â Ž" }, { "input": "quavered", "output": "â Ÿâ ¥â â §â »â «" }, { "input": "quavering", "output": "â Ÿâ ¥â â §â »â Œ" }, { "input": "quavers", "output": "â Ÿâ ¥â â §â »â Ž" }, { "input": "quavery", "output": "â Ÿâ ¥â â §â »â ½" }, { "input": "quay", "output": "â Ÿâ ¥â â ½" }, { "input": "quay's", "output": "â Ÿâ ¥â â ½â „â Ž" }, { "input": "quays", "output": "â Ÿâ ¥â â ½â Ž" }, { "input": "queasier", "output": "⠟⠥⠂⠎⠊⠻" }, { "input": "queasiest", "output": "⠟⠥⠂⠎⠊⠑⠌" }, { "input": "queasily", "output": "⠟⠥⠂⠎⠊⠇⠽" }, { "input": "queasiness", "output": "⠟⠥⠂⠎⠊⠰⠎" }, { "input": "queasiness's", "output": "⠟⠥⠂⠎⠊⠰⠎⠄⠎" }, { "input": "queasy", "output": "⠟⠥⠂⠎⠽" }, { "input": "queen", "output": "⠟⠥⠑⠢" }, { "input": "queen's", "output": "⠟⠥⠑⠢⠄⠎" }, { "input": "queened", "output": "⠟⠥⠑⠢⠫" }, { "input": "queening", "output": "⠟⠥⠑⠢⠌" }, { "input": "queenlier", "output": "⠟⠥⠑⠢⠇⠊⠻" }, { "input": "queenliest", "output": "⠟⠥⠑⠢⠇⠊⠑⠌" }, { "input": "queenly", "output": "⠟⠥⠑⠢⠇⠽" }, { "input": "queens", "output": "⠟⠥⠑⠢⠎" }, { "input": "queer", "output": "⠟⠥⠑⠻" }, { "input": "queer's", "output": "⠟⠥⠑⠻⠄⠎" }, { "input": "queered", "output": "⠟⠥⠑⠻⠫" }, { "input": "queerer", "output": "⠟⠥⠑⠻⠻" }, { "input": "queerest", "output": "⠟⠥⠑⠻⠑⠌" }, { "input": "queering", "output": "⠟⠥⠑⠻⠌" }, { "input": "queerly", "output": "⠟⠥⠑⠻⠇⠽" }, { "input": "queerness", "output": "⠟⠥⠑⠻⠰⠎" }, { "input": "queerness's", "output": "⠟⠥⠑⠻⠰⠎⠄⠎" }, { "input": "queers", "output": "⠟⠥⠑⠻⠎" }, { "input": "quell", "output": "⠟⠥⠑⠇⠇" }, { "input": "quelled", "output": "⠟⠥⠑⠇⠇⠫" }, { "input": "quelling", "output": "⠟⠥⠑⠇⠇⠌" }, { "input": "quells", "output": "⠟⠥⠑⠇⠇⠎" }, { "input": "quench", "output": "⠟⠥⠢⠡" }, { "input": "quenchable", "output": "⠟⠥⠢⠡â â ¼" }, { "input": "quenched", "output": "⠟⠥⠢⠡⠫" }, { "input": "quencher", "output": "⠟⠥⠢⠡⠻" }, { "input": "quencher's", "output": "⠟⠥⠢⠡⠻⠄⠎" }, { "input": "quenchers", "output": "⠟⠥⠢⠡⠻⠎" }, { "input": "quenches", "output": "⠟⠥⠢⠡⠑⠎" }, { "input": "quenching", "output": "⠟⠥⠢⠡⠌" }, { "input": "quenchless", "output": "⠟⠥⠢⠡⠨⠎" }, { "input": "queried", "output": "⠟⠥⠻⠊⠫" }, { "input": "queries", "output": "⠟⠥⠻⠊⠑⠎" }, { "input": "querulous", "output": "⠟⠥⠻⠥⠇⠳⠎" }, { "input": "querulously", "output": "⠟⠥⠻⠥⠇⠳⠎⠇⠽" }, { "input": "querulousness", "output": "⠟⠥⠻⠥⠇⠳⠎⠰⠎" }, { "input": "querulousness's", "output": "⠟⠥⠻⠥⠇⠳⠎⠰⠎⠄⠎" }, { "input": "query", "output": "⠟⠥⠻⠽" }, { "input": "query's", "output": "⠟⠥⠻⠽⠄⠎" }, { "input": "querying", "output": "⠟⠥⠻⠽⠌" }, { "input": "quest", "output": "⠟⠥⠑⠌" }, { "input": "quest's", "output": "⠟⠥⠑⠌⠄⠎" }, { "input": "quested", "output": "⠟⠥⠑⠌⠫" }, { "input": "questing", "output": "⠟⠥⠑⠌⠌" }, { "input": "question", "output": "â â Ÿ" }, { "input": "question's", "output": "â â Ÿâ „â Ž" }, { "input": "questionable", "output": "â â Ÿâ â ¼" }, { "input": "questionably", "output": "â â Ÿâ â ƒâ ‡â ½" }, { "input": "questioned", "output": "â â Ÿâ «" }, { "input": "questioner", "output": "â â Ÿâ »" }, { "input": "questioner's", "output": "â â Ÿâ »â „â Ž" }, { "input": "questioners", "output": "â â Ÿâ »â Ž" }, { "input": "questioning", "output": "â â Ÿâ Œ" }, { "input": "questioning's", "output": "â â Ÿâ Œâ „â Ž" }, { "input": "questioningly", "output": "â â Ÿâ Œâ ‡â ½" }, { "input": "questionings", "output": "â â Ÿâ Œâ Ž" }, { "input": "questionnaire", "output": "â â Ÿâ â â Šâ —â ‘" }, { "input": "questionnaire's", "output": "â â Ÿâ â â Šâ —â ‘â „â Ž" }, { "input": "questionnaires", "output": "â â Ÿâ â â Šâ —â ‘â Ž" }, { "input": "questions", "output": "â â Ÿâ Ž" }, { "input": "quests", "output": "⠟⠥⠑⠌⠎" }, { "input": "queue", "output": "⠟⠥⠑⠥⠑" }, { "input": "queue's", "output": "⠟⠥⠑⠥⠑⠄⠎" }, { "input": "queued", "output": "⠟⠥⠑⠥⠫" }, { "input": "queues", "output": "⠟⠥⠑⠥⠑⠎" }, { "input": "queuing", "output": "⠟⠥⠑⠥⠌" }, { "input": "quibble", "output": "⠟⠥⠊⠃⠼" }, { "input": "quibble's", "output": "⠟⠥⠊⠃⠼⠄⠎" }, { "input": "quibbled", "output": "⠟⠥⠊⠃⠼⠙" }, { "input": "quibbler", "output": "⠟⠥⠊⠃⠼⠗" }, { "input": "quibbler's", "output": "⠟⠥⠊⠃⠼⠗⠄⠎" }, { "input": "quibblers", "output": "⠟⠥⠊⠃⠼⠗⠎" }, { "input": "quibbles", "output": "⠟⠥⠊⠃⠼⠎" }, { "input": "quibbling", "output": "⠟⠥⠊⠆⠇⠌" }, { "input": "quiche", "output": "⠟⠥⠊⠡⠑" }, { "input": "quiche's", "output": "⠟⠥⠊⠡⠑⠄⠎" }, { "input": "quiches", "output": "⠟⠥⠊⠡⠑⠎" }, { "input": "quick", "output": "â Ÿâ …" }, { "input": "quick's", "output": "â Ÿâ …â „â Ž" }, { "input": "quicken", "output": "â Ÿâ …â ¢" }, { "input": "quickened", "output": "⠟⠅⠢⠫" }, { "input": "quickening", "output": "⠟⠅⠢⠌" }, { "input": "quickens", "output": "⠟⠅⠢⠎" }, { "input": "quicker", "output": "â Ÿâ …â »" }, { "input": "quickest", "output": "â Ÿâ …â ‘â Œ" }, { "input": "quickie", "output": "â Ÿâ …â Šâ ‘" }, { "input": "quickie's", "output": "â Ÿâ …â Šâ ‘â „â Ž" }, { "input": "quickies", "output": "â Ÿâ …â Šâ ‘â Ž" }, { "input": "quicklime", "output": "⠟⠅⠇⠊â â ‘" }, { "input": "quicklime's", "output": "⠟⠅⠇⠊â â ‘â „â Ž" }, { "input": "quickly", "output": "⠟⠅⠇⠽" }, { "input": "quickness", "output": "â Ÿâ …â °â Ž" }, { "input": "quickness's", "output": "â Ÿâ …â °â Žâ „â Ž" }, { "input": "quicksand", "output": "â Ÿâ …â Žâ ¯" }, { "input": "quicksand's", "output": "⠟⠅⠎⠯⠄⠎" }, { "input": "quicksands", "output": "⠟⠅⠎⠯⠎" }, { "input": "quicksilver", "output": "⠟⠅⠎⠊⠇⠧⠻" }, { "input": "quicksilver's", "output": "⠟⠅⠎⠊⠇⠧⠻⠄⠎" }, { "input": "quid", "output": "⠟⠥⠊⠙" }, { "input": "quid's", "output": "⠟⠥⠊⠙⠄⠎" }, { "input": "quids", "output": "⠟⠥⠊⠙⠎" }, { "input": "quiescence", "output": "⠟⠥⠊⠑⠎⠉⠰⠑" }, { "input": "quiescence's", "output": "⠟⠥⠊⠑⠎⠉⠰⠑⠄⠎" }, { "input": "quiescent", "output": "⠟⠥⠊⠑⠎⠉⠢⠞" }, { "input": "quiescently", "output": "⠟⠥⠊⠑⠎⠉⠢⠞⠇⠽" }, { "input": "quiet", "output": "⠟⠥⠊⠑⠞" }, { "input": "quiet's", "output": "⠟⠥⠊⠑⠞⠄⠎" }, { "input": "quieted", "output": "⠟⠥⠊⠑⠞⠫" }, { "input": "quieter", "output": "⠟⠥⠊⠑⠞⠻" }, { "input": "quietest", "output": "⠟⠥⠊⠑⠞⠑⠌" }, { "input": "quieting", "output": "⠟⠥⠊⠑⠞⠌" }, { "input": "quietly", "output": "⠟⠥⠊⠑⠞⠇⠽" }, { "input": "quietness", "output": "⠟⠥⠊⠑⠞⠰⠎" }, { "input": "quietness's", "output": "⠟⠥⠊⠑⠞⠰⠎⠄⠎" }, { "input": "quiets", "output": "⠟⠥⠊⠑⠞⠎" }, { "input": "quietude", "output": "⠟⠥⠊⠑⠞⠥⠙⠑" }, { "input": "quietude's", "output": "⠟⠥⠊⠑⠞⠥⠙⠑⠄⠎" }, { "input": "quietus", "output": "⠟⠥⠊⠑⠞⠥⠎" }, { "input": "quietus's", "output": "⠟⠥⠊⠑⠞⠥⠎⠄⠎" }, { "input": "quietuses", "output": "⠟⠥⠊⠑⠞⠥⠎⠑⠎" }, { "input": "quill", "output": "⠟⠥⠊⠇⠇" }, { "input": "quill's", "output": "⠟⠥⠊⠇⠇⠄⠎" }, { "input": "quills", "output": "⠟⠥⠊⠇⠇⠎" }, { "input": "quilt", "output": "⠟⠥⠊⠇⠞" }, { "input": "quilt's", "output": "⠟⠥⠊⠇⠞⠄⠎" }, { "input": "quilted", "output": "⠟⠥⠊⠇⠞⠫" }, { "input": "quilter", "output": "⠟⠥⠊⠇⠞⠻" }, { "input": "quilter's", "output": "⠟⠥⠊⠇⠞⠻⠄⠎" }, { "input": "quilters", "output": "⠟⠥⠊⠇⠞⠻⠎" }, { "input": "quilting", "output": "⠟⠥⠊⠇⠞⠌" }, { "input": "quilting's", "output": "⠟⠥⠊⠇⠞⠌⠄⠎" }, { "input": "quilts", "output": "⠟⠥⠊⠇⠞⠎" }, { "input": "quince", "output": "⠟⠥⠔⠉⠑" }, { "input": "quince's", "output": "⠟⠥⠔⠉⠑⠄⠎" }, { "input": "quinces", "output": "⠟⠥⠔⠉⠑⠎" }, { "input": "quinine", "output": "⠟⠥⠔⠔⠑" }, { "input": "quinine's", "output": "⠟⠥⠔⠔⠑⠄⠎" }, { "input": "quinsy", "output": "⠟⠥⠔⠎⠽" }, { "input": "quinsy's", "output": "⠟⠥⠔⠎⠽⠄⠎" }, { "input": "quintessence", "output": "⠟⠥⠔⠞⠑⠎⠎⠰⠑" }, { "input": "quintessence's", "output": "⠟⠥⠔⠞⠑⠎⠎⠰⠑⠄⠎" }, { "input": "quintessences", "output": "⠟⠥⠔⠞⠑⠎⠎⠰⠑⠎" }, { "input": "quintessential", "output": "⠟⠥⠔⠞⠑⠎⠎⠢⠞⠊â â ‡" }, { "input": "quintet", "output": "⠟⠥⠔⠞⠑⠞" }, { "input": "quintet's", "output": "⠟⠥⠔⠞⠑⠞⠄⠎" }, { "input": "quintets", "output": "⠟⠥⠔⠞⠑⠞⠎" }, { "input": "quintuple", "output": "⠟⠥⠔⠞⠥â â ‡â ‘" }, { "input": "quintuple's", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â „â Ž" }, { "input": "quintupled", "output": "⠟⠥⠔⠞⠥â â ‡â «" }, { "input": "quintuples", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â Ž" }, { "input": "quintuplet", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â ž" }, { "input": "quintuplet's", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â žâ „â Ž" }, { "input": "quintuplets", "output": "⠟⠥⠔⠞⠥â â ‡â ‘â žâ Ž" }, { "input": "quintupling", "output": "⠟⠥⠔⠞⠥â â ‡â Œ" }, { "input": "quip", "output": "⠟⠥⠊â " }, { "input": "quip's", "output": "⠟⠥⠊â â „â Ž" }, { "input": "quipped", "output": "⠟⠥⠊â â â «" }, { "input": "quipping", "output": "⠟⠥⠊â â â Œ" }, { "input": "quips", "output": "⠟⠥⠊â â Ž" }, { "input": "quipster", "output": "⠟⠥⠊â â Œâ »" }, { "input": "quipster's", "output": "⠟⠥⠊â â Œâ »â „â Ž" }, { "input": "quipsters", "output": "⠟⠥⠊â â Œâ »â Ž" }, { "input": "quire", "output": "⠟⠥⠊⠗⠑" }, { "input": "quire's", "output": "⠟⠥⠊⠗⠑⠄⠎" }, { "input": "quires", "output": "⠟⠥⠊⠗⠑⠎" }, { "input": "quirk", "output": "⠟⠥⠊⠗⠅" }, { "input": "quirk's", "output": "⠟⠥⠊⠗⠅⠄⠎" }, { "input": "quirked", "output": "⠟⠥⠊⠗⠅⠫" }, { "input": "quirkier", "output": "⠟⠥⠊⠗⠅⠊⠻" }, { "input": "quirkiest", "output": "⠟⠥⠊⠗⠅⠊⠑⠌" }, { "input": "quirkiness", "output": "⠟⠥⠊⠗⠅⠊⠰⠎" }, { "input": "quirkiness's", "output": "⠟⠥⠊⠗⠅⠊⠰⠎⠄⠎" }, { "input": "quirking", "output": "⠟⠥⠊⠗⠅⠌" }, { "input": "quirks", "output": "⠟⠥⠊⠗⠅⠎" }, { "input": "quirky", "output": "⠟⠥⠊⠗⠅⠽" }, { "input": "quirt", "output": "⠟⠥⠊⠗⠞" }, { "input": "quirt's", "output": "⠟⠥⠊⠗⠞⠄⠎" }, { "input": "quirts", "output": "⠟⠥⠊⠗⠞⠎" }, { "input": "quisling", "output": "⠟⠥⠊⠎⠇⠌" }, { "input": "quisling's", "output": "⠟⠥⠊⠎⠇⠌⠄⠎" }, { "input": "quislings", "output": "⠟⠥⠊⠎⠇⠌⠎" }, { "input": "quit", "output": "⠟⠥⠊⠞" }, { "input": "quitclaim", "output": "⠟⠥⠊⠞⠉⠇â â Šâ " }, { "input": "quitclaim's", "output": "⠟⠥⠊⠞⠉⠇â â Šâ â „â Ž" }, { "input": "quitclaims", "output": "⠟⠥⠊⠞⠉⠇â â Šâ â Ž" }, { "input": "quite", "output": "â Ÿ" }, { "input": "quits", "output": "⠟⠥⠊⠞⠎" }, { "input": "quittance", "output": "⠟⠥⠊⠞⠞⠨⠑" }, { "input": "quittance's", "output": "⠟⠥⠊⠞⠞⠨⠑⠄⠎" }, { "input": "quitter", "output": "⠟⠥⠊⠞⠞⠻" }, { "input": "quitter's", "output": "⠟⠥⠊⠞⠞⠻⠄⠎" }, { "input": "quitters", "output": "⠟⠥⠊⠞⠞⠻⠎" }, { "input": "quitting", "output": "⠟⠥⠊⠞⠞⠌" }, { "input": "quiver", "output": "⠟⠥⠊⠧⠻" }, { "input": "quiver's", "output": "⠟⠥⠊⠧⠻⠄⠎" }, { "input": "quivered", "output": "⠟⠥⠊⠧⠻⠫" }, { "input": "quivering", "output": "⠟⠥⠊⠧⠻⠌" }, { "input": "quivers", "output": "⠟⠥⠊⠧⠻⠎" }, { "input": "quivery", "output": "⠟⠥⠊⠧⠻⠽" }, { "input": "quixotic", "output": "⠟⠥⠊⠭⠕⠞⠊⠉" }, { "input": "quixotically", "output": "⠟⠥⠊⠭⠕⠞⠊⠉⠠⠽" }, { "input": "quiz", "output": "⠟⠥⠊⠵" }, { "input": "quiz's", "output": "⠟⠥⠊⠵⠄⠎" }, { "input": "quizzed", "output": "⠟⠥⠊⠵⠵⠫" }, { "input": "quizzer", "output": "⠟⠥⠊⠵⠵⠻" }, { "input": "quizzer's", "output": "⠟⠥⠊⠵⠵⠻⠄⠎" }, { "input": "quizzers", "output": "⠟⠥⠊⠵⠵⠻⠎" }, { "input": "quizzes", "output": "⠟⠥⠊⠵⠵⠑⠎" }, { "input": "quizzical", "output": "⠟⠥⠊⠵⠵⠊⠉â â ‡" }, { "input": "quizzically", "output": "⠟⠥⠊⠵⠵⠊⠉⠠⠽" }, { "input": "quizzing", "output": "⠟⠥⠊⠵⠵⠌" }, { "input": "quoin", "output": "⠟⠥⠕⠔" }, { "input": "quoin's", "output": "⠟⠥⠕⠔⠄⠎" }, { "input": "quoins", "output": "⠟⠥⠕⠔⠎" }, { "input": "quoit", "output": "⠟⠥⠕⠊⠞" }, { "input": "quoit's", "output": "⠟⠥⠕⠊⠞⠄⠎" }, { "input": "quoited", "output": "⠟⠥⠕⠊⠞⠫" }, { "input": "quoiting", "output": "⠟⠥⠕⠊⠞⠌" }, { "input": "quoits", "output": "⠟⠥⠕⠊⠞⠎" }, { "input": "quondam", "output": "⠟⠥⠕â â ™â â " }, { "input": "quorum", "output": "⠟⠥⠕⠗⠥â " }, { "input": "quorum's", "output": "⠟⠥⠕⠗⠥â â „â Ž" }, { "input": "quorums", "output": "⠟⠥⠕⠗⠥â â Ž" }, { "input": "quota", "output": "⠟⠥⠕⠞â " }, { "input": "quota's", "output": "⠟⠥⠕⠞â â „â Ž" }, { "input": "quotability", "output": "⠟⠥⠕⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "quotability's", "output": "⠟⠥⠕⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "quotable", "output": "⠟⠥⠕⠞â â ¼" }, { "input": "quotas", "output": "⠟⠥⠕⠞â â Ž" }, { "input": "quotation", "output": "⠟⠥⠕⠞⠠â " }, { "input": "quotation's", "output": "⠟⠥⠕⠞⠠â â „â Ž" }, { "input": "quotations", "output": "⠟⠥⠕⠞⠠â â Ž" }, { "input": "quote", "output": "⠟⠥⠕⠞⠑" }, { "input": "quote's", "output": "⠟⠥⠕⠞⠑⠄⠎" }, { "input": "quoted", "output": "⠟⠥⠕⠞⠫" }, { "input": "quotes", "output": "⠟⠥⠕⠞⠑⠎" }, { "input": "quoth", "output": "⠟⠥⠕⠹" }, { "input": "quotidian", "output": "⠟⠥⠕⠞⠊⠙⠊â â " }, { "input": "quotient", "output": "⠟⠥⠕⠞⠊⠢⠞" }, { "input": "quotient's", "output": "⠟⠥⠕⠞⠊⠢⠞⠄⠎" }, { "input": "quotients", "output": "⠟⠥⠕⠞⠊⠢⠞⠎" }, { "input": "quoting", "output": "⠟⠥⠕⠞⠌" }, { "input": "r", "output": "â °â —" }, { "input": "rabbet", "output": "â —â â †â ‘â ž" }, { "input": "rabbet's", "output": "â —â â †â ‘â žâ „â Ž" }, { "input": "rabbeted", "output": "â —â â †â ‘â žâ «" }, { "input": "rabbeting", "output": "â —â â †â ‘â žâ Œ" }, { "input": "rabbets", "output": "â —â â †â ‘â žâ Ž" }, { "input": "rabbi", "output": "â —â â †â Š" }, { "input": "rabbi's", "output": "â —â â †â Šâ „â Ž" }, { "input": "rabbinate", "output": "â —â â †â ”â â žâ ‘" }, { "input": "rabbinate's", "output": "â —â â †â ”â â žâ ‘â „â Ž" }, { "input": "rabbinical", "output": "â —â â †â ”â Šâ ‰â â ‡" }, { "input": "rabbis", "output": "â —â â †â Šâ Ž" }, { "input": "rabbit", "output": "â —â â †â Šâ ž" }, { "input": "rabbit's", "output": "â —â â †â Šâ žâ „â Ž" }, { "input": "rabbited", "output": "â —â â †â Šâ žâ «" }, { "input": "rabbiting", "output": "â —â â †â Šâ žâ Œ" }, { "input": "rabbits", "output": "â —â â †â Šâ žâ Ž" }, { "input": "rabble", "output": "â —â â ƒâ ¼" }, { "input": "rabble's", "output": "â —â â ƒâ ¼â „â Ž" }, { "input": "rabbles", "output": "â —â â ƒâ ¼â Ž" }, { "input": "rabid", "output": "â —â â ƒâ Šâ ™" }, { "input": "rabidness", "output": "â —â â ƒâ Šâ ™â °â Ž" }, { "input": "rabidness's", "output": "â —â â ƒâ Šâ ™â °â Žâ „â Ž" }, { "input": "rabies", "output": "â —â â ƒâ Šâ ‘â Ž" }, { "input": "rabies's", "output": "â —â â ƒâ Šâ ‘â Žâ „â Ž" }, { "input": "raccoon", "output": "â —â â ’â •â •â " }, { "input": "raccoon's", "output": "â —â â ’â •â •â â „â Ž" }, { "input": "race", "output": "â —â â ‰â ‘" }, { "input": "race's", "output": "â —â â ‰â ‘â „â Ž" }, { "input": "racecourse", "output": "â —â â ‰â ‘⠉⠳⠗⠎⠑" }, { "input": "racecourse's", "output": "â —â â ‰â ‘⠉⠳⠗⠎⠑⠄⠎" }, { "input": "racecourses", "output": "â —â â ‰â ‘⠉⠳⠗⠎⠑⠎" }, { "input": "raced", "output": "â —â â ‰â «" }, { "input": "racehorse", "output": "â —â â ‰â ‘â “â •â —â Žâ ‘" }, { "input": "racehorse's", "output": "â —â â ‰â ‘â “â •â —â Žâ ‘â „â Ž" }, { "input": "racehorses", "output": "â —â â ‰â ‘â “â •â —â Žâ ‘â Ž" }, { "input": "raceme", "output": "â —â â ‰â ‘â â ‘" }, { "input": "raceme's", "output": "â —â â ‰â ‘â â ‘â „â Ž" }, { "input": "racemes", "output": "â —â â ‰â ‘â â ‘â Ž" }, { "input": "racer", "output": "â —â â ‰â »" }, { "input": "racer's", "output": "â —â â ‰â »â „â Ž" }, { "input": "racers", "output": "â —â â ‰â »â Ž" }, { "input": "races", "output": "â —â â ‰â ‘â Ž" }, { "input": "racetrack", "output": "â —â â ‰â ‘â žâ —â â ‰â …" }, { "input": "racetrack's", "output": "â —â â ‰â ‘â žâ —â â ‰â …â „â Ž" }, { "input": "racetracks", "output": "â —â â ‰â ‘â žâ —â â ‰â …â Ž" }, { "input": "raceway", "output": "â —â â ‰â ‘â ºâ â ½" }, { "input": "raceway's", "output": "â —â â ‰â ‘â ºâ â ½â „â Ž" }, { "input": "raceways", "output": "â —â â ‰â ‘â ºâ â ½â Ž" }, { "input": "racial", "output": "â —â â ‰â Šâ â ‡" }, { "input": "racialism's", "output": "â —â â ‰â Šâ â ‡â Šâ Žâ â „â Ž" }, { "input": "racially", "output": "â —â â ‰â Šâ  â ½" }, { "input": "racier", "output": "â —â â ‰â Šâ »" }, { "input": "raciest", "output": "â —â â ‰â Šâ ‘â Œ" }, { "input": "racily", "output": "â —â â ‰â Šâ ‡â ½" }, { "input": "raciness", "output": "â —â â ‰â Šâ °â Ž" }, { "input": "raciness's", "output": "â —â â ‰â Šâ °â Žâ „â Ž" }, { "input": "racing", "output": "â —â â ‰â Œ" }, { "input": "racing's", "output": "â —â â ‰â Œâ „â Ž" }, { "input": "racism", "output": "â —â â ‰â Šâ Žâ " }, { "input": "racism's", "output": "â —â â ‰â Šâ Žâ â „â Ž" }, { "input": "racist", "output": "â —â â ‰â Šâ Œ" }, { "input": "racist's", "output": "â —â â ‰â Šâ Œâ „â Ž" }, { "input": "racists", "output": "â —â â ‰â Šâ Œâ Ž" }, { "input": "rack", "output": "â —â â ‰â …" }, { "input": "rack's", "output": "â —â â ‰â …â „â Ž" }, { "input": "racked", "output": "â —â â ‰â …â «" }, { "input": "racket", "output": "â —â â ‰â …â ‘â ž" }, { "input": "racket's", "output": "â —â â ‰â …â ‘â žâ „â Ž" }, { "input": "racketed", "output": "â —â â ‰â …â ‘â žâ «" }, { "input": "racketeer", "output": "â —â â ‰â …â ‘â žâ ‘â »" }, { "input": "racketeer's", "output": "â —â â ‰â …⠑⠞⠑⠻⠄⠎" }, { "input": "racketeered", "output": "â —â â ‰â …⠑⠞⠑⠻⠫" }, { "input": "racketeering", "output": "â —â â ‰â …⠑⠞⠑⠻⠌" }, { "input": "racketeering's", "output": "â —â â ‰â …⠑⠞⠑⠻⠌⠄⠎" }, { "input": "racketeers", "output": "â —â â ‰â …⠑⠞⠑⠻⠎" }, { "input": "racketing", "output": "â —â â ‰â …â ‘â žâ Œ" }, { "input": "rackets", "output": "â —â â ‰â …â ‘â žâ Ž" }, { "input": "racking", "output": "â —â â ‰â …â Œ" }, { "input": "racks", "output": "â —â â ‰â …â Ž" }, { "input": "raconteur", "output": "â —â â ‰â •â â žâ ‘⠥⠗" }, { "input": "raconteur's", "output": "â —â â ‰â •â â žâ ‘⠥⠗⠄⠎" }, { "input": "raconteurs", "output": "â —â â ‰â •â â žâ ‘⠥⠗⠎" }, { "input": "racquetball", "output": "â —â â ‰â Ÿâ ¥â ‘â žâ ƒâ â ‡â ‡" }, { "input": "racquetball's", "output": "â —â â ‰â Ÿâ ¥â ‘â žâ ƒâ â ‡â ‡â „â Ž" }, { "input": "racquetballs", "output": "â —â â ‰â Ÿâ ¥â ‘â žâ ƒâ â ‡â ‡â Ž" }, { "input": "racy", "output": "â —â â ‰â ½" }, { "input": "rad's", "output": "â —â â ™â „â Ž" }, { "input": "radar", "output": "â —â â ™â œ" }, { "input": "radar's", "output": "â —â â ™â œâ „â Ž" }, { "input": "radars", "output": "â —â â ™â œâ Ž" }, { "input": "radarscope", "output": "â —â â ™â œâ Žâ ‰â •â â ‘" }, { "input": "radarscope's", "output": "â —â â ™â œâ Žâ ‰â •â â ‘â „â Ž" }, { "input": "radarscopes", "output": "â —â â ™â œâ Žâ ‰â •â â ‘â Ž" }, { "input": "radial", "output": "â —â â ™â Šâ â ‡" }, { "input": "radial's", "output": "â —â â ™â Šâ â ‡â „â Ž" }, { "input": "radially", "output": "â —â â ™â Šâ  â ½" }, { "input": "radials", "output": "â —â â ™â Šâ â ‡â Ž" }, { "input": "radiance", "output": "â —â â ™â Šâ ¨â ‘" }, { "input": "radiance's", "output": "â —â â ™â Šâ ¨â ‘â „â Ž" }, { "input": "radiant", "output": "â —â â ™â Šâ â â ž" }, { "input": "radiantly", "output": "â —â â ™â Šâ â â žâ ‡â ½" }, { "input": "radiate", "output": "â —â â ™â Šâ â žâ ‘" }, { "input": "radiated", "output": "â —â â ™â Šâ â žâ «" }, { "input": "radiates", "output": "â —â â ™â Šâ â žâ ‘â Ž" }, { "input": "radiating", "output": "â —â â ™â Šâ â žâ Œ" }, { "input": "radiation", "output": "â —â â ™â Šâ  â " }, { "input": "radiation's", "output": "â —â â ™â Šâ  â â „â Ž" }, { "input": "radiations", "output": "â —â â ™â Šâ  â â Ž" }, { "input": "radiator", "output": "â —â â ™â Šâ â žâ •â —" }, { "input": "radiator's", "output": "â —â â ™â Šâ â žâ •â —â „â Ž" }, { "input": "radiators", "output": "â —â â ™â Šâ â žâ •â —â Ž" }, { "input": "radical", "output": "â —â â ™â Šâ ‰â â ‡" }, { "input": "radical's", "output": "â —â â ™â Šâ ‰â â ‡â „â Ž" }, { "input": "radicalism", "output": "â —â â ™â Šâ ‰â â ‡â Šâ Žâ " }, { "input": "radicalism's", "output": "â —â â ™â Šâ ‰â â ‡â Šâ Žâ â „â Ž" }, { "input": "radicalization", "output": "â —â â ™â Šâ ‰â â ‡â Šâ µâ  â " }, { "input": "radicalization's", "output": "â —â â ™â Šâ ‰â â ‡â Šâ µâ  â â „â Ž" }, { "input": "radicalize", "output": "â —â â ™â Šâ ‰â â ‡â Šâ µâ ‘" }, { "input": "radicalized", "output": "â —â â ™â Šâ ‰â â ‡â Šâ µâ «" }, { "input": "radicalizes", "output": "â —â â ™â Šâ ‰â â ‡â Šâ µâ ‘â Ž" }, { "input": "radicalizing", "output": "â —â â ™â Šâ ‰â â ‡â Šâ µâ Œ" }, { "input": "radically", "output": "â —â â ™â Šâ ‰â  â ½" }, { "input": "radicals", "output": "â —â â ™â Šâ ‰â â ‡â Ž" }, { "input": "radicchio's", "output": "â —â â ™â Šâ ‰â ¡â Šâ •â „â Ž" }, { "input": "radii", "output": "â —â â ™â Šâ Š" }, { "input": "radio", "output": "â —â â ™â Šâ •" }, { "input": "radio's", "output": "â —â â ™â Šâ •â „â Ž" }, { "input": "radioactive", "output": "â —â â ™â Šâ •â â ‰â žâ Šâ §â ‘" }, { "input": "radioactively", "output": "â —â â ™â Šâ •â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "radioactivity", "output": "â —â â ™â Šâ •â â ‰â žâ Šâ §â °â ½" }, { "input": "radioactivity's", "output": "â —â â ™â Šâ •â â ‰â žâ Šâ §â °â ½â „â Ž" }, { "input": "radiocarbon's", "output": "â —â â ™â Šâ •⠉⠜⠃⠕â â „â Ž" }, { "input": "radioed", "output": "â —â â ™â Šâ •â «" }, { "input": "radiogram", "output": "â —â â ™â Šâ •⠛⠗â â " }, { "input": "radiogram's", "output": "â —â â ™â Šâ •⠛⠗â â â „â Ž" }, { "input": "radiograms", "output": "â —â â ™â Šâ •⠛⠗â â â Ž" }, { "input": "radiography's", "output": "â —â â ™â Šâ •⠛⠗â â â “⠽⠄⠎" }, { "input": "radioing", "output": "â —â â ™â Šâ •â Œ" }, { "input": "radioisotope", "output": "â —â â ™â Šâ •â Šâ Žâ •â žâ •â â ‘" }, { "input": "radioisotope's", "output": "â —â â ™â Šâ •â Šâ Žâ •â žâ •â â ‘â „â Ž" }, { "input": "radioisotopes", "output": "â —â â ™â Šâ •â Šâ Žâ •â žâ •â â ‘â Ž" }, { "input": "radiologist", "output": "â —â â ™â Šâ •⠇⠕⠛⠊⠌" }, { "input": "radiologist's", "output": "â —â â ™â Šâ •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "radiologists", "output": "â —â â ™â Šâ •⠇⠕⠛⠊⠌⠎" }, { "input": "radiology", "output": "â —â â ™â Šâ •⠇⠕⠛⠽" }, { "input": "radiology's", "output": "â —â â ™â Šâ •⠇⠕⠛⠽⠄⠎" }, { "input": "radioman", "output": "â —â â ™â Šâ •â â â " }, { "input": "radioman's", "output": "â —â â ™â Šâ •â â â â „â Ž" }, { "input": "radiomen", "output": "â —â â ™â Šâ •â â ¢" }, { "input": "radiometer", "output": "â —â â ™â Šâ •â â ‘â žâ »" }, { "input": "radiometer's", "output": "â —â â ™â Šâ •â â ‘⠞⠻⠄⠎" }, { "input": "radiometers", "output": "â —â â ™â Šâ •â â ‘⠞⠻⠎" }, { "input": "radiometric", "output": "â —â â ™â Šâ •â â ‘â žâ —â Šâ ‰" }, { "input": "radiometry", "output": "â —â â ™â Šâ •â â ‘â žâ —â ½" }, { "input": "radiometry's", "output": "â —â â ™â Šâ •â â ‘⠞⠗⠽⠄⠎" }, { "input": "radiophone", "output": "â —â â ™â Šâ •â â “â â •" }, { "input": "radiophone's", "output": "â —â â ™â Šâ •â â “â â •â „â Ž" }, { "input": "radiophones", "output": "â —â â ™â Šâ •â â “â â •â Ž" }, { "input": "radios", "output": "â —â â ™â Šâ •â Ž" }, { "input": "radioscopy", "output": "â —â â ™â Šâ •⠎⠉⠕â â ½" }, { "input": "radioscopy's", "output": "â —â â ™â Šâ •⠎⠉⠕â â ½â „â Ž" }, { "input": "radiosonde", "output": "â —â â ™â Šâ •â Žâ •â â ™â ‘" }, { "input": "radiosonde's", "output": "â —â â ™â Šâ •â Žâ •â â ™â ‘â „â Ž" }, { "input": "radiosondes", "output": "â —â â ™â Šâ •â Žâ •â â ™â ‘â Ž" }, { "input": "radiotelegraph", "output": "â —â â ™â Šâ •⠞⠑⠇⠑⠛⠗â â â “" }, { "input": "radiotelegraph's", "output": "â —â â ™â Šâ •⠞⠑⠇⠑⠛⠗â â â “â „â Ž" }, { "input": "radiotelegraphs", "output": "â —â â ™â Šâ •⠞⠑⠇⠑⠛⠗â â â “â Ž" }, { "input": "radiotelegraphy", "output": "â —â â ™â Šâ •⠞⠑⠇⠑⠛⠗â â â “â ½" }, { "input": "radiotelegraphy's", "output": "â —â â ™â Šâ •⠞⠑⠇⠑⠛⠗â â â “⠽⠄⠎" }, { "input": "radiotelephone", "output": "â —â â ™â Šâ •⠞⠑⠇⠑â â “â â •" }, { "input": "radiotelephone's", "output": "â —â â ™â Šâ •⠞⠑⠇⠑â â “â â •â „â Ž" }, { "input": "radiotelephones", "output": "â —â â ™â Šâ •⠞⠑⠇⠑â â “â â •â Ž" }, { "input": "radiotherapist", "output": "â —â â ™â Šâ •⠮⠗â â â Šâ Œ" }, { "input": "radiotherapist's", "output": "â —â â ™â Šâ •⠮⠗â â â Šâ Œâ „â Ž" }, { "input": "radiotherapists", "output": "â —â â ™â Šâ •⠮⠗â â â Šâ Œâ Ž" }, { "input": "radiotherapy", "output": "â —â â ™â Šâ •⠮⠗â â â ½" }, { "input": "radiotherapy's", "output": "â —â â ™â Šâ •⠮⠗â â â ½â „â Ž" }, { "input": "radish", "output": "â —â â ™â Šâ ©" }, { "input": "radish's", "output": "â —â â ™â Šâ ©â „â Ž" }, { "input": "radishes", "output": "â —â â ™â Šâ ©â ‘â Ž" }, { "input": "radium", "output": "â —â â ™â Šâ ¥â " }, { "input": "radium's", "output": "â —â â ™â Šâ ¥â â „â Ž" }, { "input": "radius", "output": "â —â â ™â Šâ ¥â Ž" }, { "input": "radius's", "output": "â —â â ™â Šâ ¥â Žâ „â Ž" }, { "input": "radon", "output": "â —â â ™â •â " }, { "input": "radon's", "output": "â —â â ™â •â â „â Ž" }, { "input": "rads", "output": "â —â â ™â Ž" }, { "input": "raffia", "output": "â —â â –â Šâ " }, { "input": "raffia's", "output": "â —â â –â Šâ â „â Ž" }, { "input": "raffish", "output": "â —â â –â Šâ ©" }, { "input": "raffishly", "output": "â —â â –⠊⠩⠇⠽" }, { "input": "raffishness's", "output": "â —â â –â Šâ ©â °â Žâ „â Ž" }, { "input": "raffle", "output": "â —â â –⠇⠑" }, { "input": "raffle's", "output": "â —â â –⠇⠑⠄⠎" }, { "input": "raffled", "output": "â —â â –⠇⠫" }, { "input": "raffles", "output": "â —â â –⠇⠑⠎" }, { "input": "raffling", "output": "â —â â –⠇⠌" }, { "input": "raft", "output": "â —â â ‹â ž" }, { "input": "raft's", "output": "â —â â ‹â žâ „â Ž" }, { "input": "rafted", "output": "â —â â ‹â žâ «" }, { "input": "rafter", "output": "â —â â ‹â žâ »" }, { "input": "rafter's", "output": "â —â â ‹â žâ »â „â Ž" }, { "input": "rafters", "output": "â —â â ‹â žâ »â Ž" }, { "input": "rafting", "output": "â —â â ‹â žâ Œ" }, { "input": "rafting's", "output": "â —â â ‹â žâ Œâ „â Ž" }, { "input": "rafts", "output": "â —â â ‹â žâ Ž" }, { "input": "rag", "output": "â —â â ›" }, { "input": "rag's", "output": "â —â â ›â „â Ž" }, { "input": "raga", "output": "â —â â ›â " }, { "input": "raga's", "output": "â —â â ›â â „â Ž" }, { "input": "ragamuffin", "output": "â —â â ›â â â ¥â –â ”" }, { "input": "ragamuffin's", "output": "â —â â ›â â â ¥â –⠔⠄⠎" }, { "input": "ragamuffins", "output": "â —â â ›â â â ¥â –⠔⠎" }, { "input": "ragas", "output": "â —â â ›â â Ž" }, { "input": "ragbag's", "output": "â —â â ›â ƒâ â ›â „â Ž" }, { "input": "rage", "output": "â —â â ›â ‘" }, { "input": "rage's", "output": "â —â â ›â ‘â „â Ž" }, { "input": "raged", "output": "â —â â ›â «" }, { "input": "rages", "output": "â —â â ›â ‘â Ž" }, { "input": "ragged", "output": "â —â â ¶â «" }, { "input": "raggeder", "output": "â —â â ¶â «â »" }, { "input": "raggedest", "output": "â —â â ¶â «â ‘â Œ" }, { "input": "raggedier", "output": "â —â â ¶â «â Šâ »" }, { "input": "raggediest", "output": "â —â â ¶â «â Šâ ‘â Œ" }, { "input": "raggedly", "output": "â —â â ¶â «â ‡â ½" }, { "input": "raggedness", "output": "â —â â ¶â «â °â Ž" }, { "input": "raggedness's", "output": "â —â â ¶â «â °â Žâ „â Ž" }, { "input": "raggedy", "output": "â —â â ¶â «â ½" }, { "input": "ragging", "output": "â —â â ¶â Œ" }, { "input": "raging", "output": "â —â â ›â Œ" }, { "input": "ragingly", "output": "â —â â ›â Œâ ‡â ½" }, { "input": "raglan", "output": "â —â â ›â ‡â â " }, { "input": "raglan's", "output": "â —â â ›â ‡â â â „â Ž" }, { "input": "raglans", "output": "â —â â ›â ‡â â â Ž" }, { "input": "ragout", "output": "â —â â ›â ³â ž" }, { "input": "ragout's", "output": "â —â â ›â ³â žâ „â Ž" }, { "input": "ragouts", "output": "â —â â ›â ³â žâ Ž" }, { "input": "rags", "output": "â —â â ›â Ž" }, { "input": "ragtag", "output": "â —â â ›â žâ â ›" }, { "input": "ragtags", "output": "â —â â ›â žâ â ›â Ž" }, { "input": "ragtime", "output": "â —â â ›â â ž" }, { "input": "ragtime's", "output": "â —â â ›â â žâ „â Ž" }, { "input": "ragweed", "output": "â —â â ›â ºâ ‘â «" }, { "input": "ragweed's", "output": "â —â â ›â ºâ ‘â «â „â Ž" }, { "input": "rah", "output": "â —â â “" }, { "input": "raid", "output": "â —â â Šâ ™" }, { "input": "raid's", "output": "â —â â Šâ ™â „â Ž" }, { "input": "raided", "output": "â —â â Šâ ™â «" }, { "input": "raider", "output": "â —â â Šâ ™â »" }, { "input": "raider's", "output": "â —â â Šâ ™â »â „â Ž" }, { "input": "raiders", "output": "â —â â Šâ ™â »â Ž" }, { "input": "raiding", "output": "â —â â Šâ ™â Œ" }, { "input": "raids", "output": "â —â â Šâ ™â Ž" }, { "input": "rail", "output": "â —â â Šâ ‡" }, { "input": "rail's", "output": "â —â â Šâ ‡â „â Ž" }, { "input": "railed", "output": "â —â â Šâ ‡â «" }, { "input": "railing", "output": "â —â â Šâ ‡â Œ" }, { "input": "railing's", "output": "â —â â Šâ ‡â Œâ „â Ž" }, { "input": "railings", "output": "â —â â Šâ ‡â Œâ Ž" }, { "input": "railleries", "output": "â —â â Šâ ‡â ‡â »â Šâ ‘â Ž" }, { "input": "raillery", "output": "â —â â Šâ ‡â ‡â »â ½" }, { "input": "raillery's", "output": "â —â â Šâ ‡â ‡â »â ½â „â Ž" }, { "input": "railroad", "output": "â —â â Šâ ‡â —â •â â ™" }, { "input": "railroad's", "output": "â —â â Šâ ‡â —â •â â ™â „â Ž" }, { "input": "railroaded", "output": "â —â â Šâ ‡â —â •â â ™â «" }, { "input": "railroader", "output": "â —â â Šâ ‡â —â •â â ™â »" }, { "input": "railroader's", "output": "â —â â Šâ ‡â —â •â â ™â »â „â Ž" }, { "input": "railroaders", "output": "â —â â Šâ ‡â —â •â â ™â »â Ž" }, { "input": "railroading", "output": "â —â â Šâ ‡â —â •â â ™â Œ" }, { "input": "railroading's", "output": "â —â â Šâ ‡â —â •â â ™â Œâ „â Ž" }, { "input": "railroads", "output": "â —â â Šâ ‡â —â •â â ™â Ž" }, { "input": "rails", "output": "â —â â Šâ ‡â Ž" }, { "input": "railway", "output": "â —â â Šâ ‡â ºâ â ½" }, { "input": "railway's", "output": "â —â â Šâ ‡â ºâ â ½â „â Ž" }, { "input": "railways", "output": "â —â â Šâ ‡â ºâ â ½â Ž" }, { "input": "raiment", "output": "â —â â Šâ °â ž" }, { "input": "raiment's", "output": "â —â â Šâ °â žâ „â Ž" }, { "input": "rain", "output": "â —â â ”" }, { "input": "rain's", "output": "â —â â ”â „â Ž" }, { "input": "rainbow", "output": "â —â â ”⠃⠪" }, { "input": "rainbow's", "output": "â —â â ”⠃⠪⠄⠎" }, { "input": "rainbows", "output": "â —â â ”⠃⠪⠎" }, { "input": "raincoat", "output": "â —â â ”⠉⠕â â ž" }, { "input": "raincoat's", "output": "â —â â ”⠉⠕â â žâ „â Ž" }, { "input": "raincoats", "output": "â —â â ”⠉⠕â â žâ Ž" }, { "input": "raindrop", "output": "â —â â ”⠙⠗⠕â " }, { "input": "raindrop's", "output": "â —â â ”⠙⠗⠕â â „â Ž" }, { "input": "raindrops", "output": "â —â â ”⠙⠗⠕â â Ž" }, { "input": "rained", "output": "â —â â ”â «" }, { "input": "rainfall", "output": "â —â â ”â ‹â â ‡â ‡" }, { "input": "rainfall's", "output": "â —â â ”â ‹â â ‡â ‡â „â Ž" }, { "input": "rainfalls", "output": "â —â â ”â ‹â â ‡â ‡â Ž" }, { "input": "rainier", "output": "â —â â ”â Šâ »" }, { "input": "rainiest", "output": "â —â â ”â Šâ ‘â Œ" }, { "input": "raining", "output": "â —â â ”â Œ" }, { "input": "rainmaker", "output": "â —â â ”â â â …â »" }, { "input": "rainmaker's", "output": "â —â â ”â â â …⠻⠄⠎" }, { "input": "rainmakers", "output": "â —â â ”â â â …⠻⠎" }, { "input": "rainmaking", "output": "â —â â ”â â â …â Œ" }, { "input": "rainmaking's", "output": "â —â â ”â â â …⠌⠄⠎" }, { "input": "rains", "output": "â —â â ”â Ž" }, { "input": "rainstorm", "output": "â —â â ”⠌⠕⠗â " }, { "input": "rainstorm's", "output": "â —â â ”⠌⠕⠗â â „â Ž" }, { "input": "rainstorms", "output": "â —â â ”⠌⠕⠗â â Ž" }, { "input": "rainwater", "output": "â —â â ”â ºâ â žâ »" }, { "input": "rainwater's", "output": "â —â â ”â ºâ â žâ »â „â Ž" }, { "input": "rainy", "output": "â —â â ”â ½" }, { "input": "raise", "output": "â —â â Šâ Žâ ‘" }, { "input": "raise's", "output": "â —â â Šâ Žâ ‘â „â Ž" }, { "input": "raised", "output": "â —â â Šâ Žâ «" }, { "input": "raiser", "output": "â —â â Šâ Žâ »" }, { "input": "raiser's", "output": "â —â â Šâ Žâ »â „â Ž" }, { "input": "raisers", "output": "â —â â Šâ Žâ »â Ž" }, { "input": "raises", "output": "â —â â Šâ Žâ ‘â Ž" }, { "input": "raisin", "output": "â —â â Šâ Žâ ”" }, { "input": "raisin's", "output": "â —â â Šâ Žâ ”â „â Ž" }, { "input": "raising", "output": "â —â â Šâ Žâ Œ" }, { "input": "raisins", "output": "â —â â Šâ Žâ ”â Ž" }, { "input": "rajah", "output": "â —â â šâ â “" }, { "input": "rajah's", "output": "â —â â šâ â “â „â Ž" }, { "input": "rajahs", "output": "â —â â šâ â “â Ž" }, { "input": "rake", "output": "â —â â …â ‘" }, { "input": "rake's", "output": "â —â â …â ‘â „â Ž" }, { "input": "raked", "output": "â —â â …â «" }, { "input": "rakes", "output": "â —â â …â ‘â Ž" }, { "input": "raking", "output": "â —â â …â Œ" }, { "input": "rakish", "output": "â —â â …â Šâ ©" }, { "input": "rakishly", "output": "â —â â …⠊⠩⠇⠽" }, { "input": "rakishness", "output": "â —â â …â Šâ ©â °â Ž" }, { "input": "rakishness's", "output": "â —â â …â Šâ ©â °â Žâ „â Ž" }, { "input": "rallied", "output": "â —â â ‡â ‡â Šâ «" }, { "input": "rallies", "output": "â —â â ‡â ‡â Šâ ‘â Ž" }, { "input": "rally", "output": "â —â  â ½" }, { "input": "rally's", "output": "⠗⠠⠽⠄⠎" }, { "input": "rallying", "output": "⠗⠠⠽⠌" }, { "input": "ram", "output": "â —â â " }, { "input": "ram's", "output": "â —â â â „â Ž" }, { "input": "ramble", "output": "â —â â â ¼" }, { "input": "ramble's", "output": "â —â â â ¼â „â Ž" }, { "input": "rambled", "output": "â —â â â ¼â ™" }, { "input": "rambler", "output": "â —â â â ¼â —" }, { "input": "rambler's", "output": "â —â â â ¼â —â „â Ž" }, { "input": "ramblers", "output": "â —â â â ¼â —â Ž" }, { "input": "rambles", "output": "â —â â â ¼â Ž" }, { "input": "rambling", "output": "â —â â â ƒâ ‡â Œ" }, { "input": "rambunctious", "output": "â —â â â ƒâ ¥â â ‰â žâ Šâ ³â Ž" }, { "input": "rambunctiously", "output": "â —â â â ƒâ ¥â â ‰â žâ Šâ ³â Žâ ‡â ½" }, { "input": "rambunctiousness", "output": "â —â â â ƒâ ¥â â ‰â žâ Šâ ³â Žâ °â Ž" }, { "input": "rambunctiousness's", "output": "â —â â â ƒâ ¥â â ‰â žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "ramie", "output": "â —â â â Šâ ‘" }, { "input": "ramie's", "output": "â —â â â Šâ ‘â „â Ž" }, { "input": "ramification", "output": "â —â â â Šâ ‹â Šâ ‰â  â " }, { "input": "ramification's", "output": "â —â â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "ramifications", "output": "â —â â â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "ramified", "output": "â —â â â Šâ ‹â Šâ «" }, { "input": "ramifies", "output": "â —â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "ramify", "output": "â —â â â Šâ ‹â ½" }, { "input": "ramifying", "output": "â —â â â Šâ ‹â ½â Œ" }, { "input": "ramjet", "output": "â —â â â šâ ‘â ž" }, { "input": "ramjet's", "output": "â —â â â šâ ‘â žâ „â Ž" }, { "input": "ramjets", "output": "â —â â â šâ ‘â žâ Ž" }, { "input": "rammed", "output": "â —â â â â «" }, { "input": "ramming", "output": "â —â â â â Œ" }, { "input": "ramp", "output": "â —â â â " }, { "input": "ramp's", "output": "â —â â â â „â Ž" }, { "input": "rampage", "output": "â —â â â â â ›â ‘" }, { "input": "rampage's", "output": "â —â â â â â ›â ‘â „â Ž" }, { "input": "rampaged", "output": "â —â â â â â ›â «" }, { "input": "rampages", "output": "â —â â â â â ›â ‘â Ž" }, { "input": "rampaging", "output": "â —â â â â â ›â Œ" }, { "input": "rampancy", "output": "â —â â â â â â ‰â ½" }, { "input": "rampancy's", "output": "â —â â â â â â ‰â ½â „â Ž" }, { "input": "rampant", "output": "â —â â â â â â ž" }, { "input": "rampantly", "output": "â —â â â â â â žâ ‡â ½" }, { "input": "rampart", "output": "â —â â â â " }, { "input": "rampart's", "output": "â —â â â â â „â Ž" }, { "input": "ramparts", "output": "â —â â â â â Ž" }, { "input": "ramps", "output": "â —â â â â Ž" }, { "input": "ramrod", "output": "â —â â â —â •â ™" }, { "input": "ramrod's", "output": "â —â â â —⠕⠙⠄⠎" }, { "input": "ramrodded", "output": "â —â â â —⠕⠲⠫" }, { "input": "ramrodding", "output": "â —â â â —⠕⠲⠌" }, { "input": "ramrods", "output": "â —â â â —⠕⠙⠎" }, { "input": "rams", "output": "â —â â â Ž" }, { "input": "ramshackle", "output": "â —â â â ©â â ‰â …⠇⠑" }, { "input": "ran", "output": "â —â â " }, { "input": "ranch", "output": "â —â â â ¡" }, { "input": "ranch's", "output": "â —â â â ¡â „â Ž" }, { "input": "ranched", "output": "â —â â â ¡â «" }, { "input": "rancher", "output": "â —â â â ¡â »" }, { "input": "rancher's", "output": "â —â â â ¡â »â „â Ž" }, { "input": "ranchers", "output": "â —â â â ¡â »â Ž" }, { "input": "ranches", "output": "â —â â â ¡â ‘â Ž" }, { "input": "ranching", "output": "â —â â â ¡â Œ" }, { "input": "ranching's", "output": "â —â â â ¡â Œâ „â Ž" }, { "input": "rancid", "output": "â —â â â ‰â Šâ ™" }, { "input": "rancidity", "output": "â —â â â ‰â Šâ ™â °â ½" }, { "input": "rancidity's", "output": "â —â â â ‰â Šâ ™â °â ½â „â Ž" }, { "input": "rancidness", "output": "â —â â â ‰â Šâ ™â °â Ž" }, { "input": "rancidness's", "output": "â —â â â ‰â Šâ ™â °â Žâ „â Ž" }, { "input": "rancor", "output": "â —â â â ‰â •â —" }, { "input": "rancor's", "output": "â —â â â ‰â •â —â „â Ž" }, { "input": "rancorous", "output": "â —â â â ‰â •⠗⠳⠎" }, { "input": "rancorously", "output": "â —â â â ‰â •⠗⠳⠎⠇⠽" }, { "input": "randier", "output": "⠗⠯⠊⠻" }, { "input": "randiest", "output": "⠗⠯⠊⠑⠌" }, { "input": "randiness's", "output": "⠗⠯⠊⠰⠎⠄⠎" }, { "input": "random", "output": "⠗⠯⠕â " }, { "input": "randomization", "output": "⠗⠯⠕â â Šâ µâ  â " }, { "input": "randomization's", "output": "⠗⠯⠕â â Šâ µâ  â â „â Ž" }, { "input": "randomize", "output": "⠗⠯⠕â â Šâ µâ ‘" }, { "input": "randomized", "output": "⠗⠯⠕â â Šâ µâ «" }, { "input": "randomizes", "output": "⠗⠯⠕â â Šâ µâ ‘â Ž" }, { "input": "randomizing", "output": "⠗⠯⠕â â Šâ µâ Œ" }, { "input": "randomly", "output": "⠗⠯⠕â â ‡â ½" }, { "input": "randomness", "output": "⠗⠯⠕â â °â Ž" }, { "input": "randomness's", "output": "⠗⠯⠕â â °â Žâ „â Ž" }, { "input": "randy", "output": "⠗⠯⠽" }, { "input": "rang", "output": "â —â â â ›" }, { "input": "range", "output": "â —â â â ›â ‘" }, { "input": "range's", "output": "â —â â â ›â ‘â „â Ž" }, { "input": "ranged", "output": "â —â â â ›â «" }, { "input": "ranger", "output": "â —â â â ›â »" }, { "input": "ranger's", "output": "â —â â â ›â »â „â Ž" }, { "input": "rangers", "output": "â —â â â ›â »â Ž" }, { "input": "ranges", "output": "â —â â â ›â ‘â Ž" }, { "input": "rangier", "output": "â —â â â ›â Šâ »" }, { "input": "rangiest", "output": "â —â â â ›â Šâ ‘â Œ" }, { "input": "ranginess", "output": "â —â â â ›â Šâ °â Ž" }, { "input": "ranginess's", "output": "â —â â â ›â Šâ °â Žâ „â Ž" }, { "input": "ranging", "output": "â —â â â ›â Œ" }, { "input": "rangy", "output": "â —â â â ›â ½" }, { "input": "rank", "output": "â —â â â …" }, { "input": "rank's", "output": "â —â â â …â „â Ž" }, { "input": "ranked", "output": "â —â â â …â «" }, { "input": "ranker", "output": "â —â â â …â »" }, { "input": "rankest", "output": "â —â â â …â ‘â Œ" }, { "input": "ranking", "output": "â —â â â …â Œ" }, { "input": "ranking's", "output": "â —â â â …⠌⠄⠎" }, { "input": "rankings", "output": "â —â â â …⠌⠎" }, { "input": "rankle", "output": "â —â â â …⠇⠑" }, { "input": "rankled", "output": "â —â â â …⠇⠫" }, { "input": "rankles", "output": "â —â â â …⠇⠑⠎" }, { "input": "rankling", "output": "â —â â â …⠇⠌" }, { "input": "rankly", "output": "â —â â â …⠇⠽" }, { "input": "rankness", "output": "â —â â â …â °â Ž" }, { "input": "rankness's", "output": "â —â â â …â °â Žâ „â Ž" }, { "input": "ranks", "output": "â —â â â …â Ž" }, { "input": "ransack", "output": "â —â â â Žâ â ‰â …" }, { "input": "ransacked", "output": "â —â â â Žâ â ‰â …â «" }, { "input": "ransacking", "output": "â —â â â Žâ â ‰â …â Œ" }, { "input": "ransacks", "output": "â —â â â Žâ â ‰â …â Ž" }, { "input": "ransom", "output": "â —â â â Žâ •â " }, { "input": "ransom's", "output": "â —â â â Žâ •â â „â Ž" }, { "input": "ransomed", "output": "â —â â â Žâ •â â «" }, { "input": "ransomer", "output": "â —â â â Žâ •â â »" }, { "input": "ransomer's", "output": "â —â â â Žâ •â â »â „â Ž" }, { "input": "ransomers", "output": "â —â â â Žâ •â â »â Ž" }, { "input": "ransoming", "output": "â —â â â Žâ •â â Œ" }, { "input": "ransoms", "output": "â —â â â Žâ •â â Ž" }, { "input": "rant", "output": "â —â â â ž" }, { "input": "rant's", "output": "â —â â â žâ „â Ž" }, { "input": "ranted", "output": "â —â â â žâ «" }, { "input": "ranter", "output": "â —â â â žâ »" }, { "input": "ranter's", "output": "â —â â â žâ »â „â Ž" }, { "input": "ranters", "output": "â —â â â žâ »â Ž" }, { "input": "ranting", "output": "â —â â â žâ Œ" }, { "input": "rants", "output": "â —â â â žâ Ž" }, { "input": "rap", "output": "â —â â " }, { "input": "rap's", "output": "â —â â â „â Ž" }, { "input": "rapacious", "output": "â —â â â â ‰â Šâ ³â Ž" }, { "input": "rapaciously", "output": "â —â â â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "rapaciousness", "output": "â —â â â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "rapaciousness's", "output": "â —â â â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "rapacity", "output": "â —â â â â ‰â °â ½" }, { "input": "rapacity's", "output": "â —â â â â ‰â °â ½â „â Ž" }, { "input": "rape", "output": "â —â â â ‘" }, { "input": "rape's", "output": "â —â â â ‘â „â Ž" }, { "input": "raped", "output": "â —â â â «" }, { "input": "raper", "output": "â —â â â »" }, { "input": "raper's", "output": "â —â â â »â „â Ž" }, { "input": "rapers", "output": "â —â â â »â Ž" }, { "input": "rapes", "output": "â —â â â ‘â Ž" }, { "input": "rapeseed", "output": "â —â â â ‘â Žâ ‘â «" }, { "input": "rapeseed's", "output": "â —â â â ‘â Žâ ‘â «â „â Ž" }, { "input": "rapid", "output": "â —â â â Šâ ™" }, { "input": "rapid's", "output": "â —â â â Šâ ™â „â Ž" }, { "input": "rapider", "output": "â —â â â Šâ ™â »" }, { "input": "rapidest", "output": "â —â â â Šâ ™â ‘â Œ" }, { "input": "rapidity", "output": "â —â â â Šâ ™â °â ½" }, { "input": "rapidity's", "output": "â —â â â Šâ ™â °â ½â „â Ž" }, { "input": "rapidly", "output": "â —â â â Šâ ™â ‡â ½" }, { "input": "rapidness", "output": "â —â â â Šâ ™â °â Ž" }, { "input": "rapidness's", "output": "â —â â â Šâ ™â °â Žâ „â Ž" }, { "input": "rapids", "output": "â —â â â Šâ ™â Ž" }, { "input": "rapier", "output": "â —â â â Šâ »" }, { "input": "rapier's", "output": "â —â â â Šâ »â „â Ž" }, { "input": "rapiers", "output": "â —â â â Šâ »â Ž" }, { "input": "rapine", "output": "â —â â â ”â ‘" }, { "input": "rapine's", "output": "â —â â â ”â ‘â „â Ž" }, { "input": "raping", "output": "â —â â â Œ" }, { "input": "rapist", "output": "â —â â â Šâ Œ" }, { "input": "rapist's", "output": "â —â â â Šâ Œâ „â Ž" }, { "input": "rapists", "output": "â —â â â Šâ Œâ Ž" }, { "input": "rapped", "output": "â —â â â â «" }, { "input": "rapper", "output": "â —â â â â »" }, { "input": "rapper's", "output": "â —â â â â »â „â Ž" }, { "input": "rappers", "output": "â —â â â â »â Ž" }, { "input": "rapping", "output": "â —â â â â Œ" }, { "input": "rapport", "output": "â —â â â â •â —â ž" }, { "input": "rapport's", "output": "â —â â â â •â —â žâ „â Ž" }, { "input": "rapports", "output": "â —â â â â •â —â žâ Ž" }, { "input": "rapprochement", "output": "â —â â â â —â •â ¡â ‘â °â ž" }, { "input": "rapprochement's", "output": "â —â â â â —â •â ¡â ‘â °â žâ „â Ž" }, { "input": "rapprochements", "output": "â —â â â â —â •â ¡â ‘â °â žâ Ž" }, { "input": "raps", "output": "â —â â â Ž" }, { "input": "rapscallion", "output": "â —â â â Žâ ‰â â ‡â ‡â Šâ •â " }, { "input": "rapscallion's", "output": "â —â â â Žâ ‰â â ‡â ‡â Šâ •â â „â Ž" }, { "input": "rapscallions", "output": "â —â â â Žâ ‰â â ‡â ‡â Šâ •â â Ž" }, { "input": "rapt", "output": "â —â â â ž" }, { "input": "raptly", "output": "â —â â â žâ ‡â ½" }, { "input": "raptness", "output": "â —â â â žâ °â Ž" }, { "input": "raptness's", "output": "â —â â â žâ °â Žâ „â Ž" }, { "input": "rapture", "output": "â —â â â žâ ¥â —â ‘" }, { "input": "rapture's", "output": "â —â â â žâ ¥â —â ‘â „â Ž" }, { "input": "raptures", "output": "â —â â â žâ ¥â —â ‘â Ž" }, { "input": "rapturous", "output": "â —â â â žâ ¥â —⠳⠎" }, { "input": "rare", "output": "⠗⠜⠑" }, { "input": "rarebit", "output": "⠗⠜⠑⠃⠊⠞" }, { "input": "rarebit's", "output": "⠗⠜⠑⠃⠊⠞⠄⠎" }, { "input": "rarebits", "output": "⠗⠜⠑⠃⠊⠞⠎" }, { "input": "rared", "output": "â —â â —â «" }, { "input": "rarefaction", "output": "⠗⠜⠑⠋â â ‰â °â " }, { "input": "rarefaction's", "output": "⠗⠜⠑⠋â â ‰â °â â „â Ž" }, { "input": "rarefied", "output": "⠗⠜⠑⠋⠊⠫" }, { "input": "rarefies", "output": "⠗⠜⠑⠋⠊⠑⠎" }, { "input": "rarefy", "output": "⠗⠜⠑⠋⠽" }, { "input": "rarefying", "output": "⠗⠜⠑⠋⠽⠌" }, { "input": "rarely", "output": "⠗⠜⠑⠇⠽" }, { "input": "rareness", "output": "⠗⠜⠑⠰⠎" }, { "input": "rareness's", "output": "⠗⠜⠑⠰⠎⠄⠎" }, { "input": "rarer", "output": "⠗⠜⠻" }, { "input": "rares", "output": "⠗⠜⠑⠎" }, { "input": "rarest", "output": "⠗⠜⠑⠌" }, { "input": "raring", "output": "⠗⠜⠌" }, { "input": "rarities", "output": "⠗⠜⠊⠞⠊⠑⠎" }, { "input": "rarity", "output": "⠗⠜⠰⠽" }, { "input": "rarity's", "output": "⠗⠜⠰⠽⠄⠎" }, { "input": "rascal", "output": "â —â â Žâ ‰â â ‡" }, { "input": "rascal's", "output": "â —â â Žâ ‰â â ‡â „â Ž" }, { "input": "rascally", "output": "â —â â Žâ ‰â  â ½" }, { "input": "rascals", "output": "â —â â Žâ ‰â â ‡â Ž" }, { "input": "rash", "output": "â —â â ©" }, { "input": "rash's", "output": "â —â â ©â „â Ž" }, { "input": "rasher", "output": "â —â â ©â »" }, { "input": "rasher's", "output": "â —â â ©â »â „â Ž" }, { "input": "rashers", "output": "â —â â ©â »â Ž" }, { "input": "rashes", "output": "â —â â ©â ‘â Ž" }, { "input": "rashest", "output": "â —â â ©â ‘â Œ" }, { "input": "rashly", "output": "â —â â ©â ‡â ½" }, { "input": "rashness", "output": "â —â â ©â °â Ž" }, { "input": "rashness's", "output": "â —â â ©â °â Žâ „â Ž" }, { "input": "rasp", "output": "â —â â Žâ " }, { "input": "rasp's", "output": "â —â â Žâ â „â Ž" }, { "input": "raspberries", "output": "â —â â Žâ â ƒâ »â —â Šâ ‘â Ž" }, { "input": "raspberry", "output": "â —â â Žâ â ƒâ »â —â ½" }, { "input": "raspberry's", "output": "â —â â Žâ â ƒâ »â —⠽⠄⠎" }, { "input": "rasped", "output": "â —â â Žâ â «" }, { "input": "raspier", "output": "â —â â Žâ â Šâ »" }, { "input": "raspiest", "output": "â —â â Žâ â Šâ ‘â Œ" }, { "input": "rasping", "output": "â —â â Žâ â Œ" }, { "input": "rasps", "output": "â —â â Žâ â Ž" }, { "input": "raspy", "output": "â —â â Žâ â ½" }, { "input": "raster", "output": "â —â â Œâ »" }, { "input": "rat", "output": "â —â â ž" }, { "input": "rat's", "output": "â —â â žâ „â Ž" }, { "input": "ratatouille's", "output": "â —â â žâ â žâ ³â Šâ ‡â ‡â ‘â „â Ž" }, { "input": "ratchet", "output": "â —â â žâ ¡â ‘â ž" }, { "input": "ratchet's", "output": "â —â â žâ ¡â ‘â žâ „â Ž" }, { "input": "ratcheted", "output": "â —â â žâ ¡â ‘â žâ «" }, { "input": "ratcheting", "output": "â —â â žâ ¡â ‘â žâ Œ" }, { "input": "ratchets", "output": "â —â â žâ ¡â ‘â žâ Ž" }, { "input": "rate", "output": "â —â â žâ ‘" }, { "input": "rate's", "output": "â —â â žâ ‘â „â Ž" }, { "input": "rated", "output": "â —â â žâ «" }, { "input": "rater", "output": "â —â â žâ »" }, { "input": "rater's", "output": "â —â â žâ »â „â Ž" }, { "input": "raters", "output": "â —â â žâ »â Ž" }, { "input": "rates", "output": "â —â â žâ ‘â Ž" }, { "input": "rather", "output": "â —" }, { "input": "rathskeller", "output": "â —â â ¹â Žâ …⠑⠇⠇⠻" }, { "input": "rathskeller's", "output": "â —â â ¹â Žâ …⠑⠇⠇⠻⠄⠎" }, { "input": "rathskellers", "output": "â —â â ¹â Žâ …⠑⠇⠇⠻⠎" }, { "input": "ratification", "output": "â —â â žâ Šâ ‹â Šâ ‰â  â " }, { "input": "ratification's", "output": "â —â â žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "ratified", "output": "â —â â žâ Šâ ‹â Šâ «" }, { "input": "ratifier", "output": "â —â â žâ Šâ ‹â Šâ »" }, { "input": "ratifier's", "output": "â —â â žâ Šâ ‹â Šâ »â „â Ž" }, { "input": "ratifiers", "output": "â —â â žâ Šâ ‹â Šâ »â Ž" }, { "input": "ratifies", "output": "â —â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "ratify", "output": "â —â â žâ Šâ ‹â ½" }, { "input": "ratifying", "output": "â —â â žâ Šâ ‹â ½â Œ" }, { "input": "rating", "output": "â —â â žâ Œ" }, { "input": "rating's", "output": "â —â â žâ Œâ „â Ž" }, { "input": "ratings", "output": "â —â â žâ Œâ Ž" }, { "input": "ratio", "output": "â —â â žâ Šâ •" }, { "input": "ratio's", "output": "â —â â žâ Šâ •â „â Ž" }, { "input": "ratiocinate", "output": "â —â â žâ Šâ •⠉⠔â â žâ ‘" }, { "input": "ratiocinated", "output": "â —â â žâ Šâ •⠉⠔â â žâ «" }, { "input": "ratiocinates", "output": "â —â â žâ Šâ •⠉⠔â â žâ ‘â Ž" }, { "input": "ratiocinating", "output": "â —â â žâ Šâ •⠉⠔â â žâ Œ" }, { "input": "ratiocination", "output": "â —â â žâ Šâ •⠉⠔⠠â " }, { "input": "ratiocination's", "output": "â —â â žâ Šâ •⠉⠔⠠â â „â Ž" }, { "input": "ration", "output": "â —â  â " }, { "input": "ration's", "output": "â —â  â â „â Ž" }, { "input": "rational", "output": "â —â  â â â ‡" }, { "input": "rational's", "output": "â —â  â â â ‡â „â Ž" }, { "input": "rationale", "output": "â —â  â â â ‡â ‘" }, { "input": "rationale's", "output": "â —â  â â â ‡â ‘â „â Ž" }, { "input": "rationales", "output": "â —â  â â â ‡â ‘â Ž" }, { "input": "rationalism", "output": "â —â  â â â ‡â Šâ Žâ " }, { "input": "rationalism's", "output": "â —â  â â â ‡â Šâ Žâ â „â Ž" }, { "input": "rationalist", "output": "â —â  â â â ‡â Šâ Œ" }, { "input": "rationalist's", "output": "â —â  â â â ‡â Šâ Œâ „â Ž" }, { "input": "rationalistic", "output": "â —â  â â â ‡â Šâ Œâ Šâ ‰" }, { "input": "rationalists", "output": "â —â  â â â ‡â Šâ Œâ Ž" }, { "input": "rationality", "output": "â —â  â â â ‡â °â ½" }, { "input": "rationality's", "output": "â —â  â â â ‡â °â ½â „â Ž" }, { "input": "rationalization", "output": "â —â  â â â ‡â Šâ µâ  â " }, { "input": "rationalization's", "output": "â —â  â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "rationalizations", "output": "â —â  â â â ‡â Šâ µâ  â â Ž" }, { "input": "rationalize", "output": "â —â  â â â ‡â Šâ µâ ‘" }, { "input": "rationalized", "output": "â —â  â â â ‡â Šâ µâ «" }, { "input": "rationalizes", "output": "â —â  â â â ‡â Šâ µâ ‘â Ž" }, { "input": "rationalizing", "output": "â —â  â â â ‡â Šâ µâ Œ" }, { "input": "rationally", "output": "â —â  â â  â ½" }, { "input": "rationals", "output": "â —â  â â â ‡â Ž" }, { "input": "rationed", "output": "â —â  â â «" }, { "input": "rationing", "output": "â —â  â â Œ" }, { "input": "rations", "output": "â —â  â â Ž" }, { "input": "ratios", "output": "â —â â žâ Šâ •â Ž" }, { "input": "ratlike", "output": "â —â â žâ ‡â Šâ …â ‘" }, { "input": "ratline", "output": "â —â â žâ ‡â ”â ‘" }, { "input": "ratline's", "output": "â —â â žâ ‡â ”â ‘â „â Ž" }, { "input": "ratlines", "output": "â —â â žâ ‡â ”â ‘â Ž" }, { "input": "rats", "output": "â —â â žâ Ž" }, { "input": "rattan", "output": "â —â â žâ žâ â " }, { "input": "rattan's", "output": "â —â â žâ žâ â â „â Ž" }, { "input": "rattans", "output": "â —â â žâ žâ â â Ž" }, { "input": "ratted", "output": "â —â â žâ žâ «" }, { "input": "ratter", "output": "â —â â žâ žâ »" }, { "input": "ratter's", "output": "â —â â žâ žâ »â „â Ž" }, { "input": "ratters", "output": "â —â â žâ žâ »â Ž" }, { "input": "rattier", "output": "â —â â žâ žâ Šâ »" }, { "input": "rattiest", "output": "â —â â žâ žâ Šâ ‘â Œ" }, { "input": "ratting", "output": "â —â â žâ žâ Œ" }, { "input": "rattle", "output": "â —â â žâ žâ ‡â ‘" }, { "input": "rattle's", "output": "â —â â žâ žâ ‡â ‘â „â Ž" }, { "input": "rattlebrain", "output": "â —â â žâ žâ ‡â ‘⠃⠗â â ”" }, { "input": "rattlebrain's", "output": "â —â â žâ žâ ‡â ‘⠃⠗â â ”â „â Ž" }, { "input": "rattlebrained", "output": "â —â â žâ žâ ‡â ‘⠃⠗â â ”â «" }, { "input": "rattlebrains", "output": "â —â â žâ žâ ‡â ‘⠃⠗â â ”â Ž" }, { "input": "rattled", "output": "â —â â žâ žâ ‡â «" }, { "input": "rattler", "output": "â —â â žâ žâ ‡â »" }, { "input": "rattler's", "output": "â —â â žâ žâ ‡â »â „â Ž" }, { "input": "rattlers", "output": "â —â â žâ žâ ‡â »â Ž" }, { "input": "rattles", "output": "â —â â žâ žâ ‡â ‘â Ž" }, { "input": "rattlesnake", "output": "â —â â žâ žâ ‡â ‘â Žâ â â …â ‘" }, { "input": "rattlesnake's", "output": "â —â â žâ žâ ‡â ‘â Žâ â â …â ‘â „â Ž" }, { "input": "rattlesnakes", "output": "â —â â žâ žâ ‡â ‘â Žâ â â …â ‘â Ž" }, { "input": "rattletrap", "output": "â —â â žâ žâ ‡â ‘â žâ —â â " }, { "input": "rattletrap's", "output": "â —â â žâ žâ ‡â ‘â žâ —â â â „â Ž" }, { "input": "rattletraps", "output": "â —â â žâ žâ ‡â ‘â žâ —â â â Ž" }, { "input": "rattling", "output": "â —â â žâ žâ ‡â Œ" }, { "input": "rattlings", "output": "â —â â žâ žâ ‡â Œâ Ž" }, { "input": "rattly", "output": "â —â â žâ žâ ‡â ½" }, { "input": "rattrap", "output": "â —â â žâ žâ —â â " }, { "input": "rattrap's", "output": "â —â â žâ žâ —â â â „â Ž" }, { "input": "rattraps", "output": "â —â â žâ žâ —â â â Ž" }, { "input": "ratty", "output": "â —â â žâ žâ ½" }, { "input": "raucous", "output": "â —â â ¥â ‰â ³â Ž" }, { "input": "raucously", "output": "â —â â ¥â ‰â ³â Žâ ‡â ½" }, { "input": "raucousness", "output": "â —â â ¥â ‰â ³â Žâ °â Ž" }, { "input": "raucousness's", "output": "â —â â ¥â ‰â ³â Žâ °â Žâ „â Ž" }, { "input": "raunchier", "output": "â —â â ¥â â ¡â Šâ »" }, { "input": "raunchiest", "output": "â —â â ¥â â ¡â Šâ ‘â Œ" }, { "input": "raunchiness", "output": "â —â â ¥â â ¡â Šâ °â Ž" }, { "input": "raunchiness's", "output": "â —â â ¥â â ¡â Šâ °â Žâ „â Ž" }, { "input": "raunchy", "output": "â —â â ¥â â ¡â ½" }, { "input": "ravage", "output": "â —â â §â â ›â ‘" }, { "input": "ravage's", "output": "â —â â §â â ›â ‘â „â Ž" }, { "input": "ravaged", "output": "â —â â §â â ›â «" }, { "input": "ravager", "output": "â —â â §â â ›â »" }, { "input": "ravager's", "output": "â —â â §â â ›â »â „â Ž" }, { "input": "ravagers", "output": "â —â â §â â ›â »â Ž" }, { "input": "ravages", "output": "â —â â §â â ›â ‘â Ž" }, { "input": "ravages's", "output": "â —â â §â â ›â ‘â Žâ „â Ž" }, { "input": "ravaging", "output": "â —â â §â â ›â Œ" }, { "input": "rave", "output": "â —â â §â ‘" }, { "input": "rave's", "output": "â —â â §â ‘â „â Ž" }, { "input": "raved", "output": "â —â â §â «" }, { "input": "ravel", "output": "â —â â §â ‘â ‡" }, { "input": "ravel's", "output": "â —â â §â ‘⠇⠄⠎" }, { "input": "raveled", "output": "â —â â §â ‘⠇⠫" }, { "input": "raveling", "output": "â —â â §â ‘⠇⠌" }, { "input": "ravelings", "output": "â —â â §â ‘⠇⠌⠎" }, { "input": "ravels", "output": "â —â â §â ‘⠇⠎" }, { "input": "raven", "output": "â —â â §â ¢" }, { "input": "raven's", "output": "â —â â §â ¢â „â Ž" }, { "input": "ravened", "output": "â —â â §â ¢â «" }, { "input": "ravening", "output": "â —â â §â ¢â Œ" }, { "input": "ravenous", "output": "â —â â §â ¢â ³â Ž" }, { "input": "ravenously", "output": "â —â â §â ¢â ³â Žâ ‡â ½" }, { "input": "ravens", "output": "â —â â §â ¢â Ž" }, { "input": "raves", "output": "â —â â §â ‘â Ž" }, { "input": "ravine", "output": "â —â â §â ”â ‘" }, { "input": "ravine's", "output": "â —â â §â ”â ‘â „â Ž" }, { "input": "ravines", "output": "â —â â §â ”â ‘â Ž" }, { "input": "raving", "output": "â —â â §â Œ" }, { "input": "raving's", "output": "â —â â §â Œâ „â Ž" }, { "input": "ravings", "output": "â —â â §â Œâ Ž" }, { "input": "ravioli", "output": "â —â â §â Šâ •⠇⠊" }, { "input": "ravioli's", "output": "â —â â §â Šâ •⠇⠊⠄⠎" }, { "input": "raviolis", "output": "â —â â §â Šâ •⠇⠊⠎" }, { "input": "ravish", "output": "â —â â §â Šâ ©" }, { "input": "ravished", "output": "â —â â §â Šâ ©â «" }, { "input": "ravisher", "output": "â —â â §â Šâ ©â »" }, { "input": "ravisher's", "output": "â —â â §â Šâ ©â »â „â Ž" }, { "input": "ravishers", "output": "â —â â §â Šâ ©â »â Ž" }, { "input": "ravishes", "output": "â —â â §â Šâ ©â ‘â Ž" }, { "input": "ravishing", "output": "â —â â §â Šâ ©â Œ" }, { "input": "ravishingly", "output": "â —â â §â Šâ ©â Œâ ‡â ½" }, { "input": "ravishment", "output": "â —â â §â Šâ ©â °â ž" }, { "input": "ravishment's", "output": "â —â â §â Šâ ©â °â žâ „â Ž" }, { "input": "raw", "output": "â —â â º" }, { "input": "raw's", "output": "â —â â ºâ „â Ž" }, { "input": "rawboned", "output": "â —â â ºâ ƒâ •â â «" }, { "input": "rawer", "output": "â —â â ºâ »" }, { "input": "rawest", "output": "â —â â ºâ ‘â Œ" }, { "input": "rawhide", "output": "â —â â ºâ “⠊⠙⠑" }, { "input": "rawhide's", "output": "â —â â ºâ “⠊⠙⠑⠄⠎" }, { "input": "rawness", "output": "â —â â ºâ °â Ž" }, { "input": "rawness's", "output": "â —â â ºâ °â Žâ „â Ž" }, { "input": "ray", "output": "â —â â ½" }, { "input": "ray's", "output": "â —â â ½â „â Ž" }, { "input": "rayon", "output": "â —â â ½â •â " }, { "input": "rayon's", "output": "â —â â ½â •â â „â Ž" }, { "input": "rays", "output": "â —â â ½â Ž" }, { "input": "raze", "output": "â —â â µâ ‘" }, { "input": "razed", "output": "â —â â µâ «" }, { "input": "razes", "output": "â —â â µâ ‘â Ž" }, { "input": "razing", "output": "â —â â µâ Œ" }, { "input": "razor", "output": "â —â â µâ •â —" }, { "input": "razor's", "output": "â —â â µâ •â —â „â Ž" }, { "input": "razorback", "output": "â —â â µâ •â —â ƒâ â ‰â …" }, { "input": "razorback's", "output": "â —â â µâ •â —â ƒâ â ‰â …â „â Ž" }, { "input": "razorbacks", "output": "â —â â µâ •â —â ƒâ â ‰â …â Ž" }, { "input": "razors", "output": "â —â â µâ •â —â Ž" }, { "input": "razz", "output": "â —â â µâ µ" }, { "input": "razz's", "output": "â —â â µâ µâ „â Ž" }, { "input": "razzed", "output": "â —â â µâ µâ «" }, { "input": "razzes", "output": "â —â â µâ µâ ‘â Ž" }, { "input": "razzing", "output": "â —â â µâ µâ Œ" }, { "input": "razzmatazz's", "output": "â —â â µâ µâ â â žâ â µâ µâ „â Ž" }, { "input": "re", "output": "â —â ‘" }, { "input": "re's", "output": "â —â ‘â „â Ž" }, { "input": "reabsorb", "output": "â —â ‘â â ƒâ Žâ •â —â ƒ" }, { "input": "reabsorbed", "output": "â —â ‘â â ƒâ Žâ •⠗⠃⠫" }, { "input": "reabsorbing", "output": "â —â ‘â â ƒâ Žâ •⠗⠃⠌" }, { "input": "reabsorbs", "output": "â —â ‘â â ƒâ Žâ •⠗⠃⠎" }, { "input": "reach", "output": "â —â ‚â ¡" }, { "input": "reach's", "output": "â —â ‚â ¡â „â Ž" }, { "input": "reachable", "output": "â —â ‚â ¡â â ¼" }, { "input": "reached", "output": "â —â ‚â ¡â «" }, { "input": "reaches", "output": "â —â ‚â ¡â ‘â Ž" }, { "input": "reaching", "output": "â —â ‚â ¡â Œ" }, { "input": "reacquaint", "output": "â —â ‘â â ‰â Ÿâ ¥â â ”â ž" }, { "input": "reacquainted", "output": "â —â ‘â â ‰â Ÿâ ¥â â ”â žâ «" }, { "input": "reacquainting", "output": "â —â ‘â â ‰â Ÿâ ¥â â ”â žâ Œ" }, { "input": "reacquaints", "output": "â —â ‘â â ‰â Ÿâ ¥â â ”â žâ Ž" }, { "input": "reacquire", "output": "â —â ‘â â ‰â Ÿâ ¥â Šâ —â ‘" }, { "input": "reacquired", "output": "â —â ‘â â ‰â Ÿâ ¥â Šâ —â «" }, { "input": "reacquires", "output": "â —â ‘â â ‰â Ÿâ ¥â Šâ —â ‘â Ž" }, { "input": "reacquiring", "output": "â —â ‘â â ‰â Ÿâ ¥â Šâ —â Œ" }, { "input": "react", "output": "â —â ‘â â ‰â ž" }, { "input": "reacted", "output": "â —â ‘â â ‰â žâ «" }, { "input": "reacting", "output": "â —â ‘â â ‰â žâ Œ" }, { "input": "reaction", "output": "â —â ‘â â ‰â °â " }, { "input": "reaction's", "output": "â —â ‘â â ‰â °â â „â Ž" }, { "input": "reactionaries", "output": "â —â ‘â â ‰â °â â œâ Šâ ‘â Ž" }, { "input": "reactionary", "output": "â —â ‘â â ‰â °â â œâ ½" }, { "input": "reactionary's", "output": "â —â ‘â â ‰â °â â œâ ½â „â Ž" }, { "input": "reactions", "output": "â —â ‘â â ‰â °â â Ž" }, { "input": "reactivate", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ ‘" }, { "input": "reactivated", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ «" }, { "input": "reactivates", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ ‘â Ž" }, { "input": "reactivating", "output": "â —â ‘â â ‰â žâ Šâ §â â žâ Œ" }, { "input": "reactivation", "output": "â —â ‘â â ‰â žâ Šâ §â  â " }, { "input": "reactivation's", "output": "â —â ‘â â ‰â žâ Šâ §â  â â „â Ž" }, { "input": "reactive", "output": "â —â ‘â â ‰â žâ Šâ §â ‘" }, { "input": "reactor", "output": "â —â ‘â â ‰â žâ •â —" }, { "input": "reactor's", "output": "â —â ‘â â ‰â žâ •â —â „â Ž" }, { "input": "reactors", "output": "â —â ‘â â ‰â žâ •â —â Ž" }, { "input": "reacts", "output": "â —â ‘â â ‰â žâ Ž" }, { "input": "read", "output": "â —â ‚â ™" }, { "input": "read's", "output": "⠗⠂⠙⠄⠎" }, { "input": "readabilities", "output": "â —â ‚â ™â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "readability", "output": "â —â ‚â ™â â ƒâ Šâ ‡â °â ½" }, { "input": "readability's", "output": "â —â ‚â ™â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "readable", "output": "â —â ‚â ™â â ¼" }, { "input": "reader", "output": "⠗⠂⠙⠻" }, { "input": "reader's", "output": "⠗⠂⠙⠻⠄⠎" }, { "input": "readers", "output": "⠗⠂⠙⠻⠎" }, { "input": "readership", "output": "⠗⠂⠙⠻⠩⠊â " }, { "input": "readership's", "output": "⠗⠂⠙⠻⠩⠊â â „â Ž" }, { "input": "readerships", "output": "⠗⠂⠙⠻⠩⠊â â Ž" }, { "input": "readied", "output": "⠗⠂⠙⠊⠫" }, { "input": "readier", "output": "⠗⠂⠙⠊⠻" }, { "input": "readies", "output": "⠗⠂⠙⠊⠑⠎" }, { "input": "readiest", "output": "⠗⠂⠙⠊⠑⠌" }, { "input": "readily", "output": "⠗⠂⠙⠊⠇⠽" }, { "input": "readiness", "output": "⠗⠂⠙⠊⠰⠎" }, { "input": "readiness's", "output": "⠗⠂⠙⠊⠰⠎⠄⠎" }, { "input": "reading", "output": "⠗⠂⠙⠌" }, { "input": "reading's", "output": "⠗⠂⠙⠌⠄⠎" }, { "input": "readings", "output": "⠗⠂⠙⠌⠎" }, { "input": "readjust", "output": "â —â ‘â â ™â šâ ¥â Œ" }, { "input": "readjusted", "output": "â —â ‘â â ™â šâ ¥â Œâ «" }, { "input": "readjusting", "output": "â —â ‘â â ™â šâ ¥â Œâ Œ" }, { "input": "readjustment", "output": "â —â ‘â â ™â šâ ¥â Œâ °â ž" }, { "input": "readjustment's", "output": "â —â ‘â â ™â šâ ¥â Œâ °â žâ „â Ž" }, { "input": "readjustments", "output": "â —â ‘â â ™â šâ ¥â Œâ °â žâ Ž" }, { "input": "readjusts", "output": "â —â ‘â â ™â šâ ¥â Œâ Ž" }, { "input": "readmission", "output": "â —â ‘â â ™â â Šâ Žâ ¨â " }, { "input": "readmission's", "output": "â —â ‘â â ™â â Šâ Žâ ¨â â „â Ž" }, { "input": "readmit", "output": "â —â ‘â â ™â â Šâ ž" }, { "input": "readmits", "output": "â —â ‘â â ™â â Šâ žâ Ž" }, { "input": "readmitted", "output": "â —â ‘â â ™â â Šâ žâ žâ «" }, { "input": "readmitting", "output": "â —â ‘â â ™â â Šâ žâ žâ Œ" }, { "input": "readopt", "output": "â —â ‘â â ™â •â â ž" }, { "input": "readopted", "output": "â —â ‘â â ™â •â â žâ «" }, { "input": "readopting", "output": "â —â ‘â â ™â •â â žâ Œ" }, { "input": "readopts", "output": "â —â ‘â â ™â •â â žâ Ž" }, { "input": "readout", "output": "⠗⠂⠙⠳⠞" }, { "input": "readout's", "output": "⠗⠂⠙⠳⠞⠄⠎" }, { "input": "readouts", "output": "⠗⠂⠙⠳⠞⠎" }, { "input": "reads", "output": "⠗⠂⠙⠎" }, { "input": "ready", "output": "⠗⠂⠙⠽" }, { "input": "readying", "output": "⠗⠂⠙⠽⠌" }, { "input": "reaffirm", "output": "â —â ‘â â –â Šâ —â " }, { "input": "reaffirmed", "output": "â —â ‘â â –â Šâ —â â «" }, { "input": "reaffirming", "output": "â —â ‘â â –â Šâ —â â Œ" }, { "input": "reaffirms", "output": "â —â ‘â â –â Šâ —â â Ž" }, { "input": "reagent", "output": "â —â ‘â â ›â ¢â ž" }, { "input": "reagent's", "output": "â —â ‘â â ›â ¢â žâ „â Ž" }, { "input": "reagents", "output": "â —â ‘â â ›â ¢â žâ Ž" }, { "input": "real", "output": "â —â ‚â ‡" }, { "input": "real's", "output": "⠗⠂⠇⠄⠎" }, { "input": "realer", "output": "⠗⠂⠇⠻" }, { "input": "realest", "output": "⠗⠂⠇⠑⠌" }, { "input": "realign", "output": "â —â ‘â â ‡â Šâ ›â " }, { "input": "realism", "output": "⠗⠂⠇⠊⠎â " }, { "input": "realism's", "output": "⠗⠂⠇⠊⠎â â „â Ž" }, { "input": "realist", "output": "⠗⠂⠇⠊⠌" }, { "input": "realist's", "output": "⠗⠂⠇⠊⠌⠄⠎" }, { "input": "realistic", "output": "⠗⠂⠇⠊⠌⠊⠉" }, { "input": "realistically", "output": "⠗⠂⠇⠊⠌⠊⠉⠠⠽" }, { "input": "realists", "output": "⠗⠂⠇⠊⠌⠎" }, { "input": "realities", "output": "⠗⠂⠇⠊⠞⠊⠑⠎" }, { "input": "reality", "output": "⠗⠂⠇⠰⠽" }, { "input": "reality's", "output": "⠗⠂⠇⠰⠽⠄⠎" }, { "input": "realizable", "output": "⠗⠂⠇⠊⠵â â ¼" }, { "input": "realization", "output": "⠗⠂⠇⠊⠵⠠â " }, { "input": "realization's", "output": "⠗⠂⠇⠊⠵⠠â â „â Ž" }, { "input": "realizations", "output": "⠗⠂⠇⠊⠵⠠â â Ž" }, { "input": "realize", "output": "⠗⠂⠇⠊⠵⠑" }, { "input": "realized", "output": "⠗⠂⠇⠊⠵⠫" }, { "input": "realizes", "output": "⠗⠂⠇⠊⠵⠑⠎" }, { "input": "realizing", "output": "⠗⠂⠇⠊⠵⠌" }, { "input": "reallocate", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ ‘" }, { "input": "reallocated", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ «" }, { "input": "reallocates", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ ‘â Ž" }, { "input": "reallocating", "output": "â —â ‘â â ‡â ‡â •â ‰â â žâ Œ" }, { "input": "reallocation", "output": "â —â ‘â â ‡â ‡â •⠉⠠â " }, { "input": "reallocation's", "output": "â —â ‘â â ‡â ‡â •⠉⠠â â „â Ž" }, { "input": "really", "output": "â —â ‘â  â ½" }, { "input": "realm", "output": "â —â ‚â ‡â " }, { "input": "realm's", "output": "â —â ‚â ‡â â „â Ž" }, { "input": "realms", "output": "â —â ‚â ‡â â Ž" }, { "input": "realness", "output": "⠗⠂⠇⠰⠎" }, { "input": "realness's", "output": "⠗⠂⠇⠰⠎⠄⠎" }, { "input": "realpolitik's", "output": "â —â ‘â â ‡â â •⠇⠊⠞⠊⠅⠄⠎" }, { "input": "reals", "output": "⠗⠂⠇⠎" }, { "input": "realty", "output": "⠗⠂⠇⠞⠽" }, { "input": "realty's", "output": "⠗⠂⠇⠞⠽⠄⠎" }, { "input": "ream", "output": "â —â ‚â " }, { "input": "ream's", "output": "â —â ‚â â „â Ž" }, { "input": "reamed", "output": "â —â ‚â â «" }, { "input": "reamer", "output": "â —â ‚â â »" }, { "input": "reamer's", "output": "â —â ‚â â »â „â Ž" }, { "input": "reamers", "output": "â —â ‚â â »â Ž" }, { "input": "reaming", "output": "â —â ‚â â Œ" }, { "input": "reams", "output": "â —â ‚â â Ž" }, { "input": "reanalyses", "output": "â —â ‘â â â â ‡â ½â Žâ ‘â Ž" }, { "input": "reanalysis", "output": "â —â ‘â â â â ‡â ½â Žâ Šâ Ž" }, { "input": "reanalysis's", "output": "â —â ‘â â â â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "reanalyze", "output": "â —â ‘â â â â ‡â ½â µâ ‘" }, { "input": "reanalyzed", "output": "â —â ‘â â â â ‡â ½â µâ «" }, { "input": "reanalyzes", "output": "â —â ‘â â â â ‡â ½â µâ ‘â Ž" }, { "input": "reanalyzing", "output": "â —â ‘â â â â ‡â ½â µâ Œ" }, { "input": "reanimate", "output": "â —â ‘â â â Šâ â â žâ ‘" }, { "input": "reanimated", "output": "â —â ‘â â â Šâ â â žâ «" }, { "input": "reanimates", "output": "â —â ‘â â â Šâ â â žâ ‘â Ž" }, { "input": "reanimating", "output": "â —â ‘â â â Šâ â â žâ Œ" }, { "input": "reanimation", "output": "â —â ‘â â â Šâ â  â " }, { "input": "reanimation's", "output": "â —â ‘â â â Šâ â  â â „â Ž" }, { "input": "reap", "output": "â —â ‚â " }, { "input": "reaped", "output": "â —â ‚â â «" }, { "input": "reaper", "output": "â —â ‚â â »" }, { "input": "reaper's", "output": "â —â ‚â â »â „â Ž" }, { "input": "reapers", "output": "â —â ‚â â »â Ž" }, { "input": "reaping", "output": "â —â ‚â â Œ" }, { "input": "reappear", "output": "â —â ‘â â â â ‘â œ" }, { "input": "reappearance", "output": "â —â ‘â â â â ‘⠜⠨⠑" }, { "input": "reappearance's", "output": "â —â ‘â â â â ‘⠜⠨⠑⠄⠎" }, { "input": "reappearances", "output": "â —â ‘â â â â ‘⠜⠨⠑⠎" }, { "input": "reappeared", "output": "â —â ‘â â â â ‘⠜⠫" }, { "input": "reappearing", "output": "â —â ‘â â â â ‘⠜⠌" }, { "input": "reappears", "output": "â —â ‘â â â â ‘⠜⠎" }, { "input": "reapplication", "output": "â —â ‘â â â â ‡â Šâ ‰â  â " }, { "input": "reapplication's", "output": "â —â ‘â â â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "reapplications", "output": "â —â ‘â â â â ‡â Šâ ‰â  â â Ž" }, { "input": "reapplied", "output": "â —â ‘â â â â ‡â Šâ «" }, { "input": "reapplies", "output": "â —â ‘â â â â ‡â Šâ ‘â Ž" }, { "input": "reapply", "output": "â —â ‘â â â â ‡â ½" }, { "input": "reapplying", "output": "â —â ‘â â â â ‡â ½â Œ" }, { "input": "reappoint", "output": "â —â ‘â â â â •⠔⠞" }, { "input": "reappointed", "output": "â —â ‘â â â â •⠔⠞⠫" }, { "input": "reappointing", "output": "â —â ‘â â â â •⠔⠞⠌" }, { "input": "reappointment", "output": "â —â ‘â â â â •⠔⠞⠰⠞" }, { "input": "reappointment's", "output": "â —â ‘â â â â •⠔⠞⠰⠞⠄⠎" }, { "input": "reappoints", "output": "â —â ‘â â â â •⠔⠞⠎" }, { "input": "reapportion", "output": "â —â ‘â â â â •â —â °â " }, { "input": "reapportioned", "output": "â —â ‘â â â â •â —â °â â «" }, { "input": "reapportioning", "output": "â —â ‘â â â â •â —â °â â Œ" }, { "input": "reapportionment", "output": "â —â ‘â â â â •â —â °â â °â ž" }, { "input": "reapportionment's", "output": "â —â ‘â â â â •â —â °â â °â žâ „â Ž" }, { "input": "reapportions", "output": "â —â ‘â â â â •â —â °â â Ž" }, { "input": "reappraisal", "output": "â —â ‘â â â â —â â Šâ Žâ â ‡" }, { "input": "reappraisal's", "output": "â —â ‘â â â â —â â Šâ Žâ â ‡â „â Ž" }, { "input": "reappraisals", "output": "â —â ‘â â â â —â â Šâ Žâ â ‡â Ž" }, { "input": "reappraise", "output": "â —â ‘â â â â —â â Šâ Žâ ‘" }, { "input": "reappraised", "output": "â —â ‘â â â â —â â Šâ Žâ «" }, { "input": "reappraises", "output": "â —â ‘â â â â —â â Šâ Žâ ‘â Ž" }, { "input": "reappraising", "output": "â —â ‘â â â â —â â Šâ Žâ Œ" }, { "input": "reaps", "output": "â —â ‚â â Ž" }, { "input": "rear", "output": "â —â ‘â œ" }, { "input": "rear's", "output": "⠗⠑⠜⠄⠎" }, { "input": "reared", "output": "⠗⠑⠜⠫" }, { "input": "rearguard's", "output": "⠗⠑⠜⠛⠥⠜⠙⠄⠎" }, { "input": "rearguards", "output": "⠗⠑⠜⠛⠥⠜⠙⠎" }, { "input": "rearing", "output": "⠗⠑⠜⠌" }, { "input": "rearm", "output": "â —â ‘â œâ " }, { "input": "rearmament", "output": "â —â ‘â œâ â â °â ž" }, { "input": "rearmament's", "output": "â —â ‘â œâ â â °â žâ „â Ž" }, { "input": "rearmed", "output": "â —â ‘â œâ â «" }, { "input": "rearming", "output": "â —â ‘â œâ â Œ" }, { "input": "rearmost", "output": "â —â ‘â œâ â •â Œ" }, { "input": "rearms", "output": "â —â ‘â œâ â Ž" }, { "input": "rearrange", "output": "⠗⠑⠜⠗â â â ›â ‘" }, { "input": "rearranged", "output": "⠗⠑⠜⠗â â â ›â «" }, { "input": "rearrangement", "output": "⠗⠑⠜⠗â â â ›â ‘â °â ž" }, { "input": "rearrangement's", "output": "⠗⠑⠜⠗â â â ›â ‘â °â žâ „â Ž" }, { "input": "rearrangements", "output": "⠗⠑⠜⠗â â â ›â ‘â °â žâ Ž" }, { "input": "rearranges", "output": "⠗⠑⠜⠗â â â ›â ‘â Ž" }, { "input": "rearranging", "output": "⠗⠑⠜⠗â â â ›â Œ" }, { "input": "rearrest", "output": "⠗⠑⠜⠗⠑⠌" }, { "input": "rearrest's", "output": "⠗⠑⠜⠗⠑⠌⠄⠎" }, { "input": "rearrested", "output": "⠗⠑⠜⠗⠑⠌⠫" }, { "input": "rearresting", "output": "⠗⠑⠜⠗⠑⠌⠌" }, { "input": "rearrests", "output": "⠗⠑⠜⠗⠑⠌⠎" }, { "input": "rears", "output": "⠗⠑⠜⠎" }, { "input": "rearward", "output": "⠗⠑⠜⠺⠜⠙" }, { "input": "rearwards", "output": "⠗⠑⠜⠺⠜⠙⠎" }, { "input": "reascend", "output": "â —â ‘â â Žâ ‰â ¢â ™" }, { "input": "reascended", "output": "â —â ‘â â Žâ ‰â ¢â ™â «" }, { "input": "reascending", "output": "â —â ‘â â Žâ ‰â ¢â ™â Œ" }, { "input": "reascends", "output": "â —â ‘â â Žâ ‰â ¢â ™â Ž" }, { "input": "reason", "output": "â —â ‚â Žâ •â " }, { "input": "reason's", "output": "â —â ‚â Žâ •â â „â Ž" }, { "input": "reasonable", "output": "â —â ‚â Žâ •â â â ¼" }, { "input": "reasonableness", "output": "â —â ‚â Žâ •â â â ¼â °â Ž" }, { "input": "reasonableness's", "output": "â —â ‚â Žâ •â â â ¼â °â Žâ „â Ž" }, { "input": "reasonably", "output": "â —â ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "reasoned", "output": "â —â ‚â Žâ •â â «" }, { "input": "reasoner", "output": "â —â ‚â Žâ •â â »" }, { "input": "reasoner's", "output": "â —â ‚â Žâ •â â »â „â Ž" }, { "input": "reasoners", "output": "â —â ‚â Žâ •â â »â Ž" }, { "input": "reasoning", "output": "â —â ‚â Žâ •â â Œ" }, { "input": "reasoning's", "output": "â —â ‚â Žâ •â â Œâ „â Ž" }, { "input": "reasons", "output": "â —â ‚â Žâ •â â Ž" }, { "input": "reassemble", "output": "â —â ‘â â Žâ Žâ ‘â â ¼" }, { "input": "reassembled", "output": "â —â ‘â â Žâ Žâ ‘â â ¼â ™" }, { "input": "reassembles", "output": "â —â ‘â â Žâ Žâ ‘â â ¼â Ž" }, { "input": "reassembling", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â Œ" }, { "input": "reassembly", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â ½" }, { "input": "reassembly's", "output": "â —â ‘â â Žâ Žâ ‘â â ƒâ ‡â ½â „â Ž" }, { "input": "reassert", "output": "â —â ‘â â Žâ Žâ »â ž" }, { "input": "reasserted", "output": "â —â ‘â â Žâ Žâ »â žâ «" }, { "input": "reasserting", "output": "â —â ‘â â Žâ Žâ »â žâ Œ" }, { "input": "reassertion", "output": "â —â ‘â â Žâ Žâ »â °â " }, { "input": "reassertion's", "output": "â —â ‘â â Žâ Žâ »â °â â „â Ž" }, { "input": "reasserts", "output": "â —â ‘â â Žâ Žâ »â žâ Ž" }, { "input": "reassess", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Ž" }, { "input": "reassessed", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "reassesses", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "reassessing", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ Œ" }, { "input": "reassessment", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ °â ž" }, { "input": "reassessment's", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ °â žâ „â Ž" }, { "input": "reassessments", "output": "â —â ‘â â Žâ Žâ ‘â Žâ Žâ °â žâ Ž" }, { "input": "reassign", "output": "â —â ‘â â Žâ Žâ Šâ ›â " }, { "input": "reassigned", "output": "â —â ‘â â Žâ Žâ Šâ ›â â «" }, { "input": "reassigning", "output": "â —â ‘â â Žâ Žâ Šâ ›â â Œ" }, { "input": "reassignment", "output": "â —â ‘â â Žâ Žâ Šâ ›â â °â ž" }, { "input": "reassignment's", "output": "â —â ‘â â Žâ Žâ Šâ ›â â °â žâ „â Ž" }, { "input": "reassignments", "output": "â —â ‘â â Žâ Žâ Šâ ›â â °â žâ Ž" }, { "input": "reassigns", "output": "â —â ‘â â Žâ Žâ Šâ ›â â Ž" }, { "input": "reassurance", "output": "â —â ‘â â Žâ Žâ ¥â —⠨⠑" }, { "input": "reassurance's", "output": "â —â ‘â â Žâ Žâ ¥â —⠨⠑⠄⠎" }, { "input": "reassurances", "output": "â —â ‘â â Žâ Žâ ¥â —⠨⠑⠎" }, { "input": "reassure", "output": "â —â ‘â â Žâ Žâ ¥â —â ‘" }, { "input": "reassured", "output": "â —â ‘â â Žâ Žâ ¥â —â «" }, { "input": "reassures", "output": "â —â ‘â â Žâ Žâ ¥â —â ‘â Ž" }, { "input": "reassuring", "output": "â —â ‘â â Žâ Žâ ¥â —â Œ" }, { "input": "reassuringly", "output": "â —â ‘â â Žâ Žâ ¥â —⠌⠇⠽" }, { "input": "reattach", "output": "â —â ‘â â žâ žâ â ¡" }, { "input": "reattached", "output": "â —â ‘â â žâ žâ â ¡â «" }, { "input": "reattaches", "output": "â —â ‘â â žâ žâ â ¡â ‘â Ž" }, { "input": "reattaching", "output": "â —â ‘â â žâ žâ â ¡â Œ" }, { "input": "reattachment", "output": "â —â ‘â â žâ žâ â ¡â °â ž" }, { "input": "reattachment's", "output": "â —â ‘â â žâ žâ â ¡â °â žâ „â Ž" }, { "input": "reattain", "output": "â —â ‘â â žâ žâ â ”" }, { "input": "reattained", "output": "â —â ‘â â žâ žâ â ”â «" }, { "input": "reattaining", "output": "â —â ‘â â žâ žâ â ”â Œ" }, { "input": "reattains", "output": "â —â ‘â â žâ žâ â ”â Ž" }, { "input": "reattempt", "output": "â —â ‘â â žâ žâ ‘â â â ž" }, { "input": "reattempted", "output": "â —â ‘â â žâ žâ ‘â â â žâ «" }, { "input": "reattempting", "output": "â —â ‘â â žâ žâ ‘â â â žâ Œ" }, { "input": "reattempts", "output": "â —â ‘â â žâ žâ ‘â â â žâ Ž" }, { "input": "reauthorize", "output": "â —â ‘â â ¥â ¹â •⠗⠊⠵⠑" }, { "input": "reauthorized", "output": "â —â ‘â â ¥â ¹â •⠗⠊⠵⠫" }, { "input": "reauthorizes", "output": "â —â ‘â â ¥â ¹â •⠗⠊⠵⠑⠎" }, { "input": "reauthorizing", "output": "â —â ‘â â ¥â ¹â •⠗⠊⠵⠌" }, { "input": "reawaken", "output": "â —â ‘â â ºâ â …â ¢" }, { "input": "reawakened", "output": "â —â ‘â â ºâ â …⠢⠫" }, { "input": "reawakening", "output": "â —â ‘â â ºâ â …⠢⠌" }, { "input": "reawakens", "output": "â —â ‘â â ºâ â …⠢⠎" }, { "input": "rebate", "output": "â —â ‘â ƒâ â žâ ‘" }, { "input": "rebate's", "output": "â —â ‘â ƒâ â žâ ‘â „â Ž" }, { "input": "rebated", "output": "â —â ‘â ƒâ â žâ «" }, { "input": "rebates", "output": "â —â ‘â ƒâ â žâ ‘â Ž" }, { "input": "rebating", "output": "â —â ‘â ƒâ â žâ Œ" }, { "input": "rebel", "output": "⠗⠑⠃⠑⠇" }, { "input": "rebel's", "output": "⠗⠑⠃⠑⠇⠄⠎" }, { "input": "rebelled", "output": "⠗⠑⠃⠑⠇⠇⠫" }, { "input": "rebelling", "output": "⠗⠑⠃⠑⠇⠇⠌" }, { "input": "rebellion", "output": "⠗⠑⠃⠑⠇⠇⠊⠕â " }, { "input": "rebellion's", "output": "⠗⠑⠃⠑⠇⠇⠊⠕â â „â Ž" }, { "input": "rebellions", "output": "⠗⠑⠃⠑⠇⠇⠊⠕â â Ž" }, { "input": "rebellious", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎" }, { "input": "rebelliously", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎⠇⠽" }, { "input": "rebelliousness", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎⠰⠎" }, { "input": "rebelliousness's", "output": "⠗⠑⠃⠑⠇⠇⠊⠳⠎⠰⠎⠄⠎" }, { "input": "rebels", "output": "⠗⠑⠃⠑⠇⠎" }, { "input": "rebid", "output": "⠗⠑⠃⠊⠙" }, { "input": "rebidding", "output": "⠗⠑⠃⠊⠲⠌" }, { "input": "rebids", "output": "⠗⠑⠃⠊⠙⠎" }, { "input": "rebind", "output": "⠗⠑⠃⠔⠙" }, { "input": "rebinding", "output": "⠗⠑⠃⠔⠙⠌" }, { "input": "rebinds", "output": "⠗⠑⠃⠔⠙⠎" }, { "input": "rebirth", "output": "⠗⠑⠃⠊⠗⠹" }, { "input": "rebirth's", "output": "⠗⠑⠃⠊⠗⠹⠄⠎" }, { "input": "rebirths", "output": "⠗⠑⠃⠊⠗⠹⠎" }, { "input": "reboil", "output": "⠗⠑⠃⠕⠊⠇" }, { "input": "reboiled", "output": "⠗⠑⠃⠕⠊⠇⠫" }, { "input": "reboiling", "output": "⠗⠑⠃⠕⠊⠇⠌" }, { "input": "reboils", "output": "⠗⠑⠃⠕⠊⠇⠎" }, { "input": "reborn", "output": "⠗⠑⠃⠕⠗â " }, { "input": "rebound", "output": "⠗⠑⠃⠨⠙" }, { "input": "rebound's", "output": "⠗⠑⠃⠨⠙⠄⠎" }, { "input": "rebounded", "output": "⠗⠑⠃⠨⠙⠫" }, { "input": "rebounding", "output": "⠗⠑⠃⠨⠙⠌" }, { "input": "rebounds", "output": "⠗⠑⠃⠨⠙⠎" }, { "input": "rebroadcast", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œ" }, { "input": "rebroadcast's", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œâ „â Ž" }, { "input": "rebroadcasting", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œâ Œ" }, { "input": "rebroadcasts", "output": "⠗⠑⠃⠗⠕â â ™â ‰â â Œâ Ž" }, { "input": "rebuff", "output": "⠗⠑⠃⠥⠋⠋" }, { "input": "rebuff's", "output": "⠗⠑⠃⠥⠋⠋⠄⠎" }, { "input": "rebuffed", "output": "⠗⠑⠃⠥⠖⠫" }, { "input": "rebuffing", "output": "⠗⠑⠃⠥⠖⠌" }, { "input": "rebuffs", "output": "⠗⠑⠃⠥⠖⠎" }, { "input": "rebuild", "output": "⠗⠑⠃⠥⠊⠇⠙" }, { "input": "rebuilding", "output": "⠗⠑⠃⠥⠊⠇⠙⠌" }, { "input": "rebuilds", "output": "⠗⠑⠃⠥⠊⠇⠙⠎" }, { "input": "rebuilt", "output": "⠗⠑⠃⠥⠊⠇⠞" }, { "input": "rebuke", "output": "⠗⠑⠃⠥⠅⠑" }, { "input": "rebuke's", "output": "⠗⠑⠃⠥⠅⠑⠄⠎" }, { "input": "rebuked", "output": "⠗⠑⠃⠥⠅⠫" }, { "input": "rebukes", "output": "⠗⠑⠃⠥⠅⠑⠎" }, { "input": "rebuking", "output": "⠗⠑⠃⠥⠅⠌" }, { "input": "rebukingly", "output": "⠗⠑⠃⠥⠅⠌⠇⠽" }, { "input": "reburial", "output": "⠗⠑⠃⠥⠗⠊â â ‡" }, { "input": "reburial's", "output": "⠗⠑⠃⠥⠗⠊â â ‡â „â Ž" }, { "input": "reburials", "output": "⠗⠑⠃⠥⠗⠊â â ‡â Ž" }, { "input": "reburied", "output": "⠗⠑⠃⠥⠗⠊⠫" }, { "input": "reburies", "output": "⠗⠑⠃⠥⠗⠊⠑⠎" }, { "input": "rebury", "output": "⠗⠑⠃⠥⠗⠽" }, { "input": "reburying", "output": "⠗⠑⠃⠥⠗⠽⠌" }, { "input": "rebus", "output": "⠗⠑⠃⠥⠎" }, { "input": "rebus's", "output": "⠗⠑⠃⠥⠎⠄⠎" }, { "input": "rebuses", "output": "⠗⠑⠃⠥⠎⠑⠎" }, { "input": "rebut", "output": "⠗⠑⠃⠥⠞" }, { "input": "rebuts", "output": "⠗⠑⠃⠥⠞⠎" }, { "input": "rebuttal", "output": "⠗⠑⠃⠥⠞⠞â â ‡" }, { "input": "rebuttal's", "output": "⠗⠑⠃⠥⠞⠞â â ‡â „â Ž" }, { "input": "rebuttals", "output": "⠗⠑⠃⠥⠞⠞â â ‡â Ž" }, { "input": "rebutted", "output": "⠗⠑⠃⠥⠞⠞⠫" }, { "input": "rebutting", "output": "⠗⠑⠃⠥⠞⠞⠌" }, { "input": "rec's", "output": "⠗⠑⠉⠄⠎" }, { "input": "recalcitrance", "output": "â —â ‘â ‰â â ‡â ‰â Šâ žâ —⠨⠑" }, { "input": "recalcitrance's", "output": "â —â ‘â ‰â â ‡â ‰â Šâ žâ —⠨⠑⠄⠎" }, { "input": "recalcitrant", "output": "â —â ‘â ‰â â ‡â ‰â Šâ žâ —â â â ž" }, { "input": "recalculate", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â â žâ ‘" }, { "input": "recalculated", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â â žâ «" }, { "input": "recalculates", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â â žâ ‘â Ž" }, { "input": "recalculating", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â â žâ Œ" }, { "input": "recalculation", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â  â " }, { "input": "recalculation's", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â  â â „â Ž" }, { "input": "recalculations", "output": "â —â ‘â ‰â â ‡â ‰â ¥â ‡â  â â Ž" }, { "input": "recall", "output": "â —â ‘â ‰â â ‡â ‡" }, { "input": "recall's", "output": "â —â ‘â ‰â â ‡â ‡â „â Ž" }, { "input": "recalled", "output": "â —â ‘â ‰â â ‡â ‡â «" }, { "input": "recalling", "output": "â —â ‘â ‰â â ‡â ‡â Œ" }, { "input": "recalls", "output": "â —â ‘â ‰â â ‡â ‡â Ž" }, { "input": "recant", "output": "â —â ‘â ‰â â â ž" }, { "input": "recantation", "output": "â —â ‘â ‰â â â žâ  â " }, { "input": "recantation's", "output": "â —â ‘â ‰â â â žâ  â â „â Ž" }, { "input": "recantations", "output": "â —â ‘â ‰â â â žâ  â â Ž" }, { "input": "recanted", "output": "â —â ‘â ‰â â â žâ «" }, { "input": "recanting", "output": "â —â ‘â ‰â â â žâ Œ" }, { "input": "recants", "output": "â —â ‘â ‰â â â žâ Ž" }, { "input": "recap", "output": "â —â ‘â ‰â â " }, { "input": "recap's", "output": "â —â ‘â ‰â â â „â Ž" }, { "input": "recapitalization", "output": "â —â ‘â ‰â â â Šâ žâ â ‡â Šâ µâ  â " }, { "input": "recapitalize", "output": "â —â ‘â ‰â â â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "recapitalized", "output": "â —â ‘â ‰â â â Šâ žâ â ‡â Šâ µâ «" }, { "input": "recapitalizes", "output": "â —â ‘â ‰â â â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "recapitalizing", "output": "â —â ‘â ‰â â â Šâ žâ â ‡â Šâ µâ Œ" }, { "input": "recapitulate", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ ‘" }, { "input": "recapitulated", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ «" }, { "input": "recapitulates", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ ‘â Ž" }, { "input": "recapitulating", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â â žâ Œ" }, { "input": "recapitulation", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â  â " }, { "input": "recapitulation's", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â  â â „â Ž" }, { "input": "recapitulations", "output": "â —â ‘â ‰â â â Šâ žâ ¥â ‡â  â â Ž" }, { "input": "recapped", "output": "â —â ‘â ‰â â â â «" }, { "input": "recapping", "output": "â —â ‘â ‰â â â â Œ" }, { "input": "recaps", "output": "â —â ‘â ‰â â â Ž" }, { "input": "recapture", "output": "â —â ‘â ‰â â â žâ ¥â —â ‘" }, { "input": "recapture's", "output": "â —â ‘â ‰â â â žâ ¥â —â ‘â „â Ž" }, { "input": "recaptured", "output": "â —â ‘â ‰â â â žâ ¥â —â «" }, { "input": "recaptures", "output": "â —â ‘â ‰â â â žâ ¥â —â ‘â Ž" }, { "input": "recapturing", "output": "â —â ‘â ‰â â â žâ ¥â —â Œ" }, { "input": "recast", "output": "â —â ‘â ‰â â Œ" }, { "input": "recast's", "output": "â —â ‘â ‰â â Œâ „â Ž" }, { "input": "recasting", "output": "â —â ‘â ‰â â Œâ Œ" }, { "input": "recasting's", "output": "â —â ‘â ‰â â Œâ Œâ „â Ž" }, { "input": "recasts", "output": "â —â ‘â ‰â â Œâ Ž" }, { "input": "recede", "output": "⠗⠑⠉⠫⠑" }, { "input": "receded", "output": "⠗⠑⠉⠫⠫" }, { "input": "recedes", "output": "⠗⠑⠉⠫⠑⠎" }, { "input": "receding", "output": "⠗⠑⠉⠫⠌" }, { "input": "receipt", "output": "⠗⠑⠉⠑⠊â â ž" }, { "input": "receipt's", "output": "⠗⠑⠉⠑⠊â â žâ „â Ž" }, { "input": "receipted", "output": "⠗⠑⠉⠑⠊â â žâ «" }, { "input": "receipting", "output": "⠗⠑⠉⠑⠊â â žâ Œ" }, { "input": "receipts", "output": "⠗⠑⠉⠑⠊â â žâ Ž" }, { "input": "receivable", "output": "⠗⠑⠉⠑⠊⠧â â ¼" }, { "input": "receivables's", "output": "⠗⠑⠉⠑⠊⠧â â ¼â Žâ „â Ž" }, { "input": "receive", "output": "⠗⠉⠧" }, { "input": "received", "output": "⠗⠉⠧⠙" }, { "input": "receiver", "output": "⠗⠉⠧⠗" }, { "input": "receiver's", "output": "⠗⠉⠧⠗⠄⠎" }, { "input": "receivers", "output": "⠗⠉⠧⠗⠎" }, { "input": "receivership", "output": "⠗⠉⠧⠗⠩⠊â " }, { "input": "receivership's", "output": "⠗⠉⠧⠗⠩⠊â â „â Ž" }, { "input": "receives", "output": "⠗⠉⠧⠎" }, { "input": "receiving", "output": "⠗⠉⠧⠛" }, { "input": "recent", "output": "⠗⠑⠉⠢⠞" }, { "input": "recenter", "output": "⠗⠑⠉⠢⠞⠻" }, { "input": "recentest", "output": "⠗⠑⠉⠢⠞⠑⠌" }, { "input": "recently", "output": "⠗⠑⠉⠢⠞⠇⠽" }, { "input": "recentness", "output": "⠗⠑⠉⠢⠞⠰⠎" }, { "input": "recentness's", "output": "⠗⠑⠉⠢⠞⠰⠎⠄⠎" }, { "input": "receptacle", "output": "⠗⠑⠉⠑â â žâ â ‰â ‡â ‘" }, { "input": "receptacle's", "output": "⠗⠑⠉⠑â â žâ â ‰â ‡â ‘â „â Ž" }, { "input": "receptacles", "output": "⠗⠑⠉⠑â â žâ â ‰â ‡â ‘â Ž" }, { "input": "reception", "output": "⠗⠑⠉⠑â â °â " }, { "input": "reception's", "output": "⠗⠑⠉⠑â â °â â „â Ž" }, { "input": "receptionist", "output": "⠗⠑⠉⠑â â °â â Šâ Œ" }, { "input": "receptionist's", "output": "⠗⠑⠉⠑â â °â â Šâ Œâ „â Ž" }, { "input": "receptionists", "output": "⠗⠑⠉⠑â â °â â Šâ Œâ Ž" }, { "input": "receptions", "output": "⠗⠑⠉⠑â â °â â Ž" }, { "input": "receptive", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘" }, { "input": "receptively", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘⠇⠽" }, { "input": "receptiveness", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘â °â Ž" }, { "input": "receptiveness's", "output": "⠗⠑⠉⠑â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "receptivity", "output": "⠗⠑⠉⠑â â žâ Šâ §â °â ½" }, { "input": "receptivity's", "output": "⠗⠑⠉⠑â â žâ Šâ §â °â ½â „â Ž" }, { "input": "receptor", "output": "⠗⠑⠉⠑â â žâ •â —" }, { "input": "receptor's", "output": "⠗⠑⠉⠑â â žâ •â —â „â Ž" }, { "input": "receptors", "output": "⠗⠑⠉⠑â â žâ •â —â Ž" }, { "input": "recess", "output": "⠗⠑⠉⠑⠎⠎" }, { "input": "recess's", "output": "⠗⠑⠉⠑⠎⠎⠄⠎" }, { "input": "recessed", "output": "⠗⠑⠉⠑⠎⠎⠫" }, { "input": "recesses", "output": "⠗⠑⠉⠑⠎⠎⠑⠎" }, { "input": "recessing", "output": "⠗⠑⠉⠑⠎⠎⠌" }, { "input": "recession", "output": "⠗⠑⠉⠑⠎⠨â " }, { "input": "recession's", "output": "⠗⠑⠉⠑⠎⠨â â „â Ž" }, { "input": "recessional", "output": "⠗⠑⠉⠑⠎⠨â â â ‡" }, { "input": "recessional's", "output": "⠗⠑⠉⠑⠎⠨â â â ‡â „â Ž" }, { "input": "recessionals", "output": "⠗⠑⠉⠑⠎⠨â â â ‡â Ž" }, { "input": "recessions", "output": "⠗⠑⠉⠑⠎⠨â â Ž" }, { "input": "recessive", "output": "⠗⠑⠉⠑⠎⠎⠊⠧⠑" }, { "input": "recessive's", "output": "⠗⠑⠉⠑⠎⠎⠊⠧⠑⠄⠎" }, { "input": "recessives", "output": "⠗⠑⠉⠑⠎⠎⠊⠧⠑⠎" }, { "input": "recharge", "output": "⠗⠑⠡⠜⠛⠑" }, { "input": "recharge's", "output": "⠗⠑⠡⠜⠛⠑⠄⠎" }, { "input": "rechargeable", "output": "⠗⠑⠡⠜⠛⠑â â ¼" }, { "input": "recharged", "output": "⠗⠑⠡⠜⠛⠫" }, { "input": "recharges", "output": "⠗⠑⠡⠜⠛⠑⠎" }, { "input": "recharging", "output": "⠗⠑⠡⠜⠛⠌" }, { "input": "recharter", "output": "⠗⠑⠡⠜⠞⠻" }, { "input": "rechartered", "output": "⠗⠑⠡⠜⠞⠻⠫" }, { "input": "rechartering", "output": "⠗⠑⠡⠜⠞⠻⠌" }, { "input": "recharters", "output": "⠗⠑⠡⠜⠞⠻⠎" }, { "input": "recheck", "output": "⠗⠑⠡⠑⠉⠅" }, { "input": "recheck's", "output": "⠗⠑⠡⠑⠉⠅⠄⠎" }, { "input": "rechecked", "output": "⠗⠑⠡⠑⠉⠅⠫" }, { "input": "rechecking", "output": "⠗⠑⠡⠑⠉⠅⠌" }, { "input": "rechecks", "output": "⠗⠑⠡⠑⠉⠅⠎" }, { "input": "rechristen", "output": "⠗⠑⠡⠗⠊⠌⠢" }, { "input": "rechristened", "output": "⠗⠑⠡⠗⠊⠌⠢⠫" }, { "input": "rechristening", "output": "⠗⠑⠡⠗⠊⠌⠢⠌" }, { "input": "rechristens", "output": "⠗⠑⠡⠗⠊⠌⠢⠎" }, { "input": "recidivism", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠎â " }, { "input": "recidivism's", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠎â â „â Ž" }, { "input": "recidivist", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠌" }, { "input": "recidivist's", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠌⠄⠎" }, { "input": "recidivists", "output": "⠗⠑⠉⠊⠙⠊⠧⠊⠌⠎" }, { "input": "recipe", "output": "⠗⠑⠉⠊â â ‘" }, { "input": "recipe's", "output": "⠗⠑⠉⠊â â ‘â „â Ž" }, { "input": "recipes", "output": "⠗⠑⠉⠊â â ‘â Ž" }, { "input": "recipient", "output": "⠗⠑⠉⠊â â Šâ ¢â ž" }, { "input": "recipient's", "output": "⠗⠑⠉⠊â â Šâ ¢â žâ „â Ž" }, { "input": "recipients", "output": "⠗⠑⠉⠊â â Šâ ¢â žâ Ž" }, { "input": "reciprocal", "output": "⠗⠑⠉⠊â â —â •â ‰â â ‡" }, { "input": "reciprocal's", "output": "⠗⠑⠉⠊â â —â •â ‰â â ‡â „â Ž" }, { "input": "reciprocally", "output": "⠗⠑⠉⠊â â —⠕⠉⠠⠽" }, { "input": "reciprocals", "output": "⠗⠑⠉⠊â â —â •â ‰â â ‡â Ž" }, { "input": "reciprocate", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ ‘" }, { "input": "reciprocated", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ «" }, { "input": "reciprocates", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ ‘â Ž" }, { "input": "reciprocating", "output": "⠗⠑⠉⠊â â —â •â ‰â â žâ Œ" }, { "input": "reciprocation", "output": "⠗⠑⠉⠊â â —⠕⠉⠠â " }, { "input": "reciprocation's", "output": "⠗⠑⠉⠊â â —⠕⠉⠠â â „â Ž" }, { "input": "reciprocity", "output": "⠗⠑⠉⠊â â —⠕⠉⠰⠽" }, { "input": "reciprocity's", "output": "⠗⠑⠉⠊â â —⠕⠉⠰⠽⠄⠎" }, { "input": "recirculate", "output": "⠗⠑⠉⠊⠗⠉⠥⠇â â žâ ‘" }, { "input": "recirculated", "output": "⠗⠑⠉⠊⠗⠉⠥⠇â â žâ «" }, { "input": "recirculates", "output": "⠗⠑⠉⠊⠗⠉⠥⠇â â žâ ‘â Ž" }, { "input": "recirculating", "output": "⠗⠑⠉⠊⠗⠉⠥⠇â â žâ Œ" }, { "input": "recital", "output": "⠗⠑⠉⠊⠞â â ‡" }, { "input": "recital's", "output": "⠗⠑⠉⠊⠞â â ‡â „â Ž" }, { "input": "recitalist", "output": "⠗⠑⠉⠊⠞â â ‡â Šâ Œ" }, { "input": "recitalist's", "output": "⠗⠑⠉⠊⠞â â ‡â Šâ Œâ „â Ž" }, { "input": "recitalists", "output": "⠗⠑⠉⠊⠞â â ‡â Šâ Œâ Ž" }, { "input": "recitals", "output": "⠗⠑⠉⠊⠞â â ‡â Ž" }, { "input": "recitation", "output": "⠗⠑⠉⠊⠞⠠â " }, { "input": "recitation's", "output": "⠗⠑⠉⠊⠞⠠â â „â Ž" }, { "input": "recitations", "output": "⠗⠑⠉⠊⠞⠠â â Ž" }, { "input": "recitative", "output": "⠗⠑⠉⠊⠞â â žâ Šâ §â ‘" }, { "input": "recitative's", "output": "⠗⠑⠉⠊⠞â â žâ Šâ §â ‘â „â Ž" }, { "input": "recitatives", "output": "⠗⠑⠉⠊⠞â â žâ Šâ §â ‘â Ž" }, { "input": "recite", "output": "⠗⠑⠉⠊⠞⠑" }, { "input": "recited", "output": "⠗⠑⠉⠊⠞⠫" }, { "input": "reciter", "output": "⠗⠑⠉⠊⠞⠻" }, { "input": "reciter's", "output": "⠗⠑⠉⠊⠞⠻⠄⠎" }, { "input": "reciters", "output": "⠗⠑⠉⠊⠞⠻⠎" }, { "input": "recites", "output": "⠗⠑⠉⠊⠞⠑⠎" }, { "input": "reciting", "output": "⠗⠑⠉⠊⠞⠌" }, { "input": "reckless", "output": "⠗⠑⠉⠅⠨⠎" }, { "input": "recklessly", "output": "⠗⠑⠉⠅⠨⠎⠇⠽" }, { "input": "recklessness", "output": "⠗⠑⠉⠅⠨⠎⠰⠎" }, { "input": "recklessness's", "output": "⠗⠑⠉⠅⠨⠎⠰⠎⠄⠎" }, { "input": "reckon", "output": "⠗⠑⠉⠅⠕â " }, { "input": "reckoned", "output": "⠗⠑⠉⠅⠕â â «" }, { "input": "reckoning", "output": "⠗⠑⠉⠅⠕â â Œ" }, { "input": "reckoning's", "output": "⠗⠑⠉⠅⠕â â Œâ „â Ž" }, { "input": "reckonings", "output": "⠗⠑⠉⠅⠕â â Œâ Ž" }, { "input": "reckons", "output": "⠗⠑⠉⠅⠕â â Ž" }, { "input": "reclaim", "output": "⠗⠑⠉⠇â â Šâ " }, { "input": "reclaimable", "output": "⠗⠑⠉⠇â â Šâ â â ¼" }, { "input": "reclaimed", "output": "⠗⠑⠉⠇â â Šâ â «" }, { "input": "reclaiming", "output": "⠗⠑⠉⠇â â Šâ â Œ" }, { "input": "reclaims", "output": "⠗⠑⠉⠇â â Šâ â Ž" }, { "input": "reclamation", "output": "⠗⠑⠉⠇â â â  â " }, { "input": "reclamation's", "output": "⠗⠑⠉⠇â â â  â â „â Ž" }, { "input": "reclassification", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â  â " }, { "input": "reclassification's", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "reclassified", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "reclassifies", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "reclassify", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â ½" }, { "input": "reclassifying", "output": "⠗⠑⠉⠇â â Žâ Žâ Šâ ‹â ½â Œ" }, { "input": "recline", "output": "⠗⠑⠉⠇⠔⠑" }, { "input": "reclined", "output": "⠗⠑⠉⠇⠔⠫" }, { "input": "recliner", "output": "⠗⠑⠉⠇⠔⠻" }, { "input": "recliner's", "output": "⠗⠑⠉⠇⠔⠻⠄⠎" }, { "input": "recliners", "output": "⠗⠑⠉⠇⠔⠻⠎" }, { "input": "reclines", "output": "⠗⠑⠉⠇⠔⠑⠎" }, { "input": "reclining", "output": "⠗⠑⠉⠇⠔⠌" }, { "input": "recluse", "output": "⠗⠑⠉⠇⠥⠎⠑" }, { "input": "recluse's", "output": "⠗⠑⠉⠇⠥⠎⠑⠄⠎" }, { "input": "recluses", "output": "⠗⠑⠉⠇⠥⠎⠑⠎" }, { "input": "reclusive", "output": "⠗⠑⠉⠇⠥⠎⠊⠧⠑" }, { "input": "recognition", "output": "⠗⠑⠉⠕⠛â â Šâ °â " }, { "input": "recognition's", "output": "⠗⠑⠉⠕⠛â â Šâ °â â „â Ž" }, { "input": "recognizable", "output": "⠗⠑⠉⠕⠛â â Šâ µâ â ¼" }, { "input": "recognizably", "output": "⠗⠑⠉⠕⠛â â Šâ µâ â ƒâ ‡â ½" }, { "input": "recognizance", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ¨â ‘" }, { "input": "recognizance's", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ¨â ‘â „â Ž" }, { "input": "recognize", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ‘" }, { "input": "recognized", "output": "⠗⠑⠉⠕⠛â â Šâ µâ «" }, { "input": "recognizer", "output": "⠗⠑⠉⠕⠛â â Šâ µâ »" }, { "input": "recognizes", "output": "⠗⠑⠉⠕⠛â â Šâ µâ ‘â Ž" }, { "input": "recognizing", "output": "⠗⠑⠉⠕⠛â â Šâ µâ Œ" }, { "input": "recoil", "output": "⠗⠑⠉⠕⠊⠇" }, { "input": "recoil's", "output": "⠗⠑⠉⠕⠊⠇⠄⠎" }, { "input": "recoiled", "output": "⠗⠑⠉⠕⠊⠇⠫" }, { "input": "recoiling", "output": "⠗⠑⠉⠕⠊⠇⠌" }, { "input": "recoils", "output": "⠗⠑⠉⠕⠊⠇⠎" }, { "input": "recollect", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞" }, { "input": "recollected", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞⠫" }, { "input": "recollecting", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞⠌" }, { "input": "recollection", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠰â " }, { "input": "recollection's", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠰â â „â Ž" }, { "input": "recollections", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠰â â Ž" }, { "input": "recollects", "output": "⠗⠑⠉⠕⠇⠇⠑⠉⠞⠎" }, { "input": "recolonization", "output": "⠗⠑⠉⠕⠇⠕â â Šâ µâ  â " }, { "input": "recolonization's", "output": "⠗⠑⠉⠕⠇⠕â â Šâ µâ  â â „â Ž" }, { "input": "recolonize", "output": "⠗⠑⠉⠕⠇⠕â â Šâ µâ ‘" }, { "input": "recolonized", "output": "⠗⠑⠉⠕⠇⠕â â Šâ µâ «" }, { "input": "recolonizes", "output": "⠗⠑⠉⠕⠇⠕â â Šâ µâ ‘â Ž" }, { "input": "recolonizing", "output": "⠗⠑⠉⠕⠇⠕â â Šâ µâ Œ" }, { "input": "recolor", "output": "⠗⠑⠉⠕⠇⠕⠗" }, { "input": "recolored", "output": "⠗⠑⠉⠕⠇⠕⠗⠫" }, { "input": "recoloring", "output": "⠗⠑⠉⠕⠇⠕⠗⠌" }, { "input": "recolors", "output": "⠗⠑⠉⠕⠇⠕⠗⠎" }, { "input": "recombination", "output": "⠗⠑⠉⠕â â ƒâ ”â  â " }, { "input": "recombine", "output": "⠗⠑⠉⠕â â ƒâ ”â ‘" }, { "input": "recombined", "output": "⠗⠑⠉⠕â â ƒâ ”â «" }, { "input": "recombines", "output": "⠗⠑⠉⠕â â ƒâ ”â ‘â Ž" }, { "input": "recombining", "output": "⠗⠑⠉⠕â â ƒâ ”â Œ" }, { "input": "recommence", "output": "⠗⠑⠉⠕â â â °â ‘" }, { "input": "recommenced", "output": "⠗⠑⠉⠕â â â °â ‘â ™" }, { "input": "recommencement", "output": "⠗⠑⠉⠕â â â °â ‘â °â ž" }, { "input": "recommencement's", "output": "⠗⠑⠉⠕â â â °â ‘â °â žâ „â Ž" }, { "input": "recommences", "output": "⠗⠑⠉⠕â â â °â ‘â Ž" }, { "input": "recommencing", "output": "⠗⠑⠉⠕â â â ¢â ‰â Œ" }, { "input": "recommend", "output": "⠗⠑⠉⠕â â â ¢â ™" }, { "input": "recommendable", "output": "⠗⠑⠉⠕â â â ¢â ™â â ¼" }, { "input": "recommendation", "output": "⠗⠑⠉⠕â â â ¢â ™â  â " }, { "input": "recommendation's", "output": "⠗⠑⠉⠕â â â ¢â ™â  â â „â Ž" }, { "input": "recommendations", "output": "⠗⠑⠉⠕â â â ¢â ™â  â â Ž" }, { "input": "recommended", "output": "⠗⠑⠉⠕â â â ¢â ™â «" }, { "input": "recommending", "output": "⠗⠑⠉⠕â â â ¢â ™â Œ" }, { "input": "recommends", "output": "⠗⠑⠉⠕â â â ¢â ™â Ž" }, { "input": "recommission", "output": "⠗⠑⠉⠕â â â Šâ Žâ ¨â " }, { "input": "recommissioned", "output": "⠗⠑⠉⠕â â â Šâ Žâ ¨â â «" }, { "input": "recommissioning", "output": "⠗⠑⠉⠕â â â Šâ Žâ ¨â â Œ" }, { "input": "recommissions", "output": "⠗⠑⠉⠕â â â Šâ Žâ ¨â â Ž" }, { "input": "recommit", "output": "⠗⠑⠉⠕â â â Šâ ž" }, { "input": "recommits", "output": "⠗⠑⠉⠕â â â Šâ žâ Ž" }, { "input": "recommitted", "output": "⠗⠑⠉⠕â â â Šâ žâ žâ «" }, { "input": "recommitting", "output": "⠗⠑⠉⠕â â â Šâ žâ žâ Œ" }, { "input": "recompense", "output": "⠗⠑⠉⠕â â â ¢â Žâ ‘" }, { "input": "recompense's", "output": "⠗⠑⠉⠕â â â ¢â Žâ ‘â „â Ž" }, { "input": "recompensed", "output": "⠗⠑⠉⠕â â â ¢â Žâ «" }, { "input": "recompenses", "output": "⠗⠑⠉⠕â â â ¢â Žâ ‘â Ž" }, { "input": "recompensing", "output": "⠗⠑⠉⠕â â â ¢â Žâ Œ" }, { "input": "recompilation", "output": "⠗⠑⠉⠕â â â Šâ ‡â  â " }, { "input": "recompile", "output": "⠗⠑⠉⠕â â â Šâ ‡â ‘" }, { "input": "recompiled", "output": "⠗⠑⠉⠕â â â Šâ ‡â «" }, { "input": "recompiling", "output": "⠗⠑⠉⠕â â â Šâ ‡â Œ" }, { "input": "recompose", "output": "⠗⠑⠉⠕â â â •â Žâ ‘" }, { "input": "recomposed", "output": "⠗⠑⠉⠕â â â •â Žâ «" }, { "input": "recomposes", "output": "⠗⠑⠉⠕â â â •â Žâ ‘â Ž" }, { "input": "recomposing", "output": "⠗⠑⠉⠕â â â •â Žâ Œ" }, { "input": "recompute", "output": "⠗⠑⠉⠕â â â ¥â žâ ‘" }, { "input": "recomputed", "output": "⠗⠑⠉⠕â â â ¥â žâ «" }, { "input": "recomputes", "output": "⠗⠑⠉⠕â â â ¥â žâ ‘â Ž" }, { "input": "recomputing", "output": "⠗⠑⠉⠕â â â ¥â žâ Œ" }, { "input": "reconcilable", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â â ¼" }, { "input": "reconcile", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â ‘" }, { "input": "reconciled", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â «" }, { "input": "reconciles", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â ‘â Ž" }, { "input": "reconciliation", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â Šâ  â " }, { "input": "reconciliation's", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â Šâ  â â „â Ž" }, { "input": "reconciliations", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â Šâ  â â Ž" }, { "input": "reconciling", "output": "⠗⠑⠉⠕â â ‰â Šâ ‡â Œ" }, { "input": "recondite", "output": "⠗⠑⠉⠕â â ™â Šâ žâ ‘" }, { "input": "recondition", "output": "⠗⠑⠉⠕â â ™â Šâ °â " }, { "input": "reconditioned", "output": "⠗⠑⠉⠕â â ™â Šâ °â â «" }, { "input": "reconditioning", "output": "⠗⠑⠉⠕â â ™â Šâ °â â Œ" }, { "input": "reconditions", "output": "⠗⠑⠉⠕â â ™â Šâ °â â Ž" }, { "input": "reconfiguration", "output": "⠗⠑⠉⠕â â ‹â Šâ ›â ¥â —â  â " }, { "input": "reconfigure", "output": "⠗⠑⠉⠕â â ‹â Šâ ›â ¥â —â ‘" }, { "input": "reconfigured", "output": "⠗⠑⠉⠕â â ‹â Šâ ›â ¥â —â «" }, { "input": "reconfirm", "output": "⠗⠑⠉⠕â â ‹â Šâ —â " }, { "input": "reconfirmation", "output": "⠗⠑⠉⠕â â ‹â Šâ —â â  â " }, { "input": "reconfirmation's", "output": "⠗⠑⠉⠕â â ‹â Šâ —â â  â â „â Ž" }, { "input": "reconfirmations", "output": "⠗⠑⠉⠕â â ‹â Šâ —â â  â â Ž" }, { "input": "reconfirmed", "output": "⠗⠑⠉⠕â â ‹â Šâ —â â «" }, { "input": "reconfirming", "output": "⠗⠑⠉⠕â â ‹â Šâ —â â Œ" }, { "input": "reconfirms", "output": "⠗⠑⠉⠕â â ‹â Šâ —â â Ž" }, { "input": "reconnaissance", "output": "⠗⠑⠉⠕â â â â Šâ Žâ Žâ ¨â ‘" }, { "input": "reconnaissance's", "output": "⠗⠑⠉⠕â â â â Šâ Žâ Žâ ¨â ‘â „â Ž" }, { "input": "reconnaissances", "output": "⠗⠑⠉⠕â â â â Šâ Žâ Žâ ¨â ‘â Ž" }, { "input": "reconnect", "output": "⠗⠑⠉⠕â â â ‘⠉⠞" }, { "input": "reconnected", "output": "⠗⠑⠉⠕â â â ‘⠉⠞⠫" }, { "input": "reconnecting", "output": "⠗⠑⠉⠕â â â ‘⠉⠞⠌" }, { "input": "reconnects", "output": "⠗⠑⠉⠕â â â ‘⠉⠞⠎" }, { "input": "reconnoiter", "output": "⠗⠑⠉⠕â â â •â Šâ žâ »" }, { "input": "reconnoitered", "output": "⠗⠑⠉⠕â â â •⠊⠞⠻⠫" }, { "input": "reconnoitering", "output": "⠗⠑⠉⠕â â â •⠊⠞⠻⠌" }, { "input": "reconnoiters", "output": "⠗⠑⠉⠕â â â •⠊⠞⠻⠎" }, { "input": "reconquer", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »" }, { "input": "reconquered", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »â «" }, { "input": "reconquering", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »â Œ" }, { "input": "reconquers", "output": "⠗⠑⠉⠕â â Ÿâ ¥â »â Ž" }, { "input": "reconquest", "output": "⠗⠑⠉⠕â â Ÿâ ¥â ‘â Œ" }, { "input": "reconquest's", "output": "⠗⠑⠉⠕â â Ÿâ ¥â ‘⠌⠄⠎" }, { "input": "reconsecrate", "output": "⠗⠑⠉⠕â â Žâ ‘⠉⠗â â žâ ‘" }, { "input": "reconsecrated", "output": "⠗⠑⠉⠕â â Žâ ‘⠉⠗â â žâ «" }, { "input": "reconsecrates", "output": "⠗⠑⠉⠕â â Žâ ‘⠉⠗â â žâ ‘â Ž" }, { "input": "reconsecrating", "output": "⠗⠑⠉⠕â â Žâ ‘⠉⠗â â žâ Œ" }, { "input": "reconsecration", "output": "⠗⠑⠉⠕â â Žâ ‘⠉⠗⠠â " }, { "input": "reconsecration's", "output": "⠗⠑⠉⠕â â Žâ ‘⠉⠗⠠â â „â Ž" }, { "input": "reconsider", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »" }, { "input": "reconsideration", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â  â " }, { "input": "reconsideration's", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â  â â „â Ž" }, { "input": "reconsidered", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â «" }, { "input": "reconsidering", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â Œ" }, { "input": "reconsiders", "output": "⠗⠑⠉⠕â â Žâ Šâ ™â »â Ž" }, { "input": "reconsign", "output": "⠗⠑⠉⠕â â Žâ Šâ ›â " }, { "input": "reconsigned", "output": "⠗⠑⠉⠕â â Žâ Šâ ›â â «" }, { "input": "reconsigning", "output": "⠗⠑⠉⠕â â Žâ Šâ ›â â Œ" }, { "input": "reconsigns", "output": "⠗⠑⠉⠕â â Žâ Šâ ›â â Ž" }, { "input": "reconstitute", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ ‘" }, { "input": "reconstituted", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ «" }, { "input": "reconstitutes", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ ‘â Ž" }, { "input": "reconstituting", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â žâ Œ" }, { "input": "reconstitution's", "output": "⠗⠑⠉⠕â â Œâ Šâ žâ ¥â °â â „â Ž" }, { "input": "reconstruct", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞" }, { "input": "reconstructed", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞⠫" }, { "input": "reconstructing", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞⠌" }, { "input": "reconstruction", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠰â " }, { "input": "reconstruction's", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠰â â „â Ž" }, { "input": "reconstructions", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠰â â Ž" }, { "input": "reconstructs", "output": "⠗⠑⠉⠕â â Œâ —⠥⠉⠞⠎" }, { "input": "recontact", "output": "⠗⠑⠉⠕â â žâ â ‰â ž" }, { "input": "recontacted", "output": "⠗⠑⠉⠕â â žâ â ‰â žâ «" }, { "input": "recontacting", "output": "⠗⠑⠉⠕â â žâ â ‰â žâ Œ" }, { "input": "recontacts", "output": "⠗⠑⠉⠕â â žâ â ‰â žâ Ž" }, { "input": "recontaminate", "output": "⠗⠑⠉⠕â â žâ â â ”â â žâ ‘" }, { "input": "recontaminated", "output": "⠗⠑⠉⠕â â žâ â â ”â â žâ «" }, { "input": "recontaminates", "output": "⠗⠑⠉⠕â â žâ â â ”â â žâ ‘â Ž" }, { "input": "recontaminating", "output": "⠗⠑⠉⠕â â žâ â â ”â â žâ Œ" }, { "input": "reconvene", "output": "⠗⠑⠉⠕â â §â ¢â ‘" }, { "input": "reconvened", "output": "⠗⠑⠉⠕â â §â ¢â «" }, { "input": "reconvenes", "output": "⠗⠑⠉⠕â â §â ¢â ‘â Ž" }, { "input": "reconvening", "output": "⠗⠑⠉⠕â â §â ¢â Œ" }, { "input": "reconvert", "output": "⠗⠑⠉⠕â â §â »â ž" }, { "input": "reconverted", "output": "⠗⠑⠉⠕â â §â »â žâ «" }, { "input": "reconverting", "output": "⠗⠑⠉⠕â â §â »â žâ Œ" }, { "input": "reconverts", "output": "⠗⠑⠉⠕â â §â »â žâ Ž" }, { "input": "recook", "output": "⠗⠑⠉⠕⠕⠅" }, { "input": "recooked", "output": "⠗⠑⠉⠕⠕⠅⠫" }, { "input": "recooking", "output": "⠗⠑⠉⠕⠕⠅⠌" }, { "input": "recooks", "output": "⠗⠑⠉⠕⠕⠅⠎" }, { "input": "recopied", "output": "⠗⠑⠉⠕â â Šâ «" }, { "input": "recopies", "output": "⠗⠑⠉⠕â â Šâ ‘â Ž" }, { "input": "recopy", "output": "⠗⠑⠉⠕â â ½" }, { "input": "recopying", "output": "⠗⠑⠉⠕â â ½â Œ" }, { "input": "record", "output": "⠗⠑⠉⠕⠗⠙" }, { "input": "record's", "output": "⠗⠑⠉⠕⠗⠙⠄⠎" }, { "input": "recorded", "output": "⠗⠑⠉⠕⠗⠙⠫" }, { "input": "recorder", "output": "⠗⠑⠉⠕⠗⠙⠻" }, { "input": "recorder's", "output": "⠗⠑⠉⠕⠗⠙⠻⠄⠎" }, { "input": "recorders", "output": "⠗⠑⠉⠕⠗⠙⠻⠎" }, { "input": "recording", "output": "⠗⠑⠉⠕⠗⠙⠌" }, { "input": "recording's", "output": "⠗⠑⠉⠕⠗⠙⠌⠄⠎" }, { "input": "recordings", "output": "⠗⠑⠉⠕⠗⠙⠌⠎" }, { "input": "records", "output": "⠗⠑⠉⠕⠗⠙⠎" }, { "input": "recount", "output": "⠗⠑⠉⠨⠞" }, { "input": "recount's", "output": "⠗⠑⠉⠨⠞⠄⠎" }, { "input": "recounted", "output": "⠗⠑⠉⠨⠞⠫" }, { "input": "recounting", "output": "⠗⠑⠉⠨⠞⠌" }, { "input": "recounts", "output": "⠗⠑⠉⠨⠞⠎" }, { "input": "recoup", "output": "⠗⠑⠉⠳â " }, { "input": "recouped", "output": "⠗⠑⠉⠳â â «" }, { "input": "recouping", "output": "⠗⠑⠉⠳â â Œ" }, { "input": "recoups", "output": "⠗⠑⠉⠳â â Ž" }, { "input": "recourse", "output": "⠗⠑⠉⠳⠗⠎⠑" }, { "input": "recourse's", "output": "⠗⠑⠉⠳⠗⠎⠑⠄⠎" }, { "input": "recover", "output": "⠗⠑⠉⠕⠧⠻" }, { "input": "recoverable", "output": "⠗⠑⠉⠕⠧⠻â â ¼" }, { "input": "recovered", "output": "⠗⠑⠉⠕⠧⠻⠫" }, { "input": "recoveries", "output": "⠗⠑⠉⠕⠧⠻⠊⠑⠎" }, { "input": "recovering", "output": "⠗⠑⠉⠕⠧⠻⠌" }, { "input": "recovers", "output": "⠗⠑⠉⠕⠧⠻⠎" }, { "input": "recovery", "output": "⠗⠑⠉⠕⠧⠻⠽" }, { "input": "recovery's", "output": "⠗⠑⠉⠕⠧⠻⠽⠄⠎" }, { "input": "recreant", "output": "⠗⠑⠉⠗⠂â â ž" }, { "input": "recreant's", "output": "⠗⠑⠉⠗⠂â â žâ „â Ž" }, { "input": "recreants", "output": "⠗⠑⠉⠗⠂â â žâ Ž" }, { "input": "recreate", "output": "⠗⠑⠉⠗⠂⠞⠑" }, { "input": "recreated", "output": "⠗⠑⠉⠗⠂⠞⠫" }, { "input": "recreates", "output": "⠗⠑⠉⠗⠂⠞⠑⠎" }, { "input": "recreating", "output": "⠗⠑⠉⠗⠂⠞⠌" }, { "input": "recreation", "output": "⠗⠑⠉⠗⠑⠠â " }, { "input": "recreation's", "output": "⠗⠑⠉⠗⠑⠠â â „â Ž" }, { "input": "recreational", "output": "⠗⠑⠉⠗⠑⠠â â â ‡" }, { "input": "recreations", "output": "⠗⠑⠉⠗⠑⠠â â Ž" }, { "input": "recriminate", "output": "⠗⠑⠉⠗⠊â â ”â â žâ ‘" }, { "input": "recriminated", "output": "⠗⠑⠉⠗⠊â â ”â â žâ «" }, { "input": "recriminates", "output": "⠗⠑⠉⠗⠊â â ”â â žâ ‘â Ž" }, { "input": "recriminating", "output": "⠗⠑⠉⠗⠊â â ”â â žâ Œ" }, { "input": "recrimination", "output": "⠗⠑⠉⠗⠊â â ”â  â " }, { "input": "recrimination's", "output": "⠗⠑⠉⠗⠊â â ”â  â â „â Ž" }, { "input": "recriminations", "output": "⠗⠑⠉⠗⠊â â ”â  â â Ž" }, { "input": "recross", "output": "⠗⠑⠉⠗⠕⠎⠎" }, { "input": "recrossed", "output": "⠗⠑⠉⠗⠕⠎⠎⠫" }, { "input": "recrosses", "output": "⠗⠑⠉⠗⠕⠎⠎⠑⠎" }, { "input": "recrossing", "output": "⠗⠑⠉⠗⠕⠎⠎⠌" }, { "input": "recrudesce", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠑" }, { "input": "recrudesced", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠫" }, { "input": "recrudescence", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠰⠑" }, { "input": "recrudescence's", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠰⠑⠄⠎" }, { "input": "recrudescent", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠢⠞" }, { "input": "recrudesces", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠑⠎" }, { "input": "recrudescing", "output": "⠗⠑⠉⠗⠥⠙⠑⠎⠉⠌" }, { "input": "recruit", "output": "⠗⠑⠉⠗⠥⠊⠞" }, { "input": "recruit's", "output": "⠗⠑⠉⠗⠥⠊⠞⠄⠎" }, { "input": "recruited", "output": "⠗⠑⠉⠗⠥⠊⠞⠫" }, { "input": "recruiter", "output": "⠗⠑⠉⠗⠥⠊⠞⠻" }, { "input": "recruiter's", "output": "⠗⠑⠉⠗⠥⠊⠞⠻⠄⠎" }, { "input": "recruiters", "output": "⠗⠑⠉⠗⠥⠊⠞⠻⠎" }, { "input": "recruiting", "output": "⠗⠑⠉⠗⠥⠊⠞⠌" }, { "input": "recruitment", "output": "⠗⠑⠉⠗⠥⠊⠞⠰⠞" }, { "input": "recruitment's", "output": "⠗⠑⠉⠗⠥⠊⠞⠰⠞⠄⠎" }, { "input": "recruits", "output": "⠗⠑⠉⠗⠥⠊⠞⠎" }, { "input": "recrystallize", "output": "⠗⠑⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ‘" }, { "input": "recrystallized", "output": "⠗⠑⠉⠗⠽⠌â â ‡â ‡â Šâ µâ «" }, { "input": "recrystallizes", "output": "⠗⠑⠉⠗⠽⠌â â ‡â ‡â Šâ µâ ‘â Ž" }, { "input": "recrystallizing", "output": "⠗⠑⠉⠗⠽⠌â â ‡â ‡â Šâ µâ Œ" }, { "input": "rectal", "output": "⠗⠑⠉⠞â â ‡" }, { "input": "rectally", "output": "⠗⠑⠉⠞⠠⠽" }, { "input": "rectangle", "output": "⠗⠑⠉⠞â â â ›â ‡â ‘" }, { "input": "rectangle's", "output": "⠗⠑⠉⠞â â â ›â ‡â ‘â „â Ž" }, { "input": "rectangles", "output": "⠗⠑⠉⠞â â â ›â ‡â ‘â Ž" }, { "input": "rectangular", "output": "⠗⠑⠉⠞â â â ›â ¥â ‡â œ" }, { "input": "rectifiable", "output": "⠗⠑⠉⠞⠊⠋⠊â â ¼" }, { "input": "rectification", "output": "⠗⠑⠉⠞⠊⠋⠊⠉⠠â " }, { "input": "rectification's", "output": "⠗⠑⠉⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "rectifications", "output": "⠗⠑⠉⠞⠊⠋⠊⠉⠠â â Ž" }, { "input": "rectified", "output": "⠗⠑⠉⠞⠊⠋⠊⠫" }, { "input": "rectifier", "output": "⠗⠑⠉⠞⠊⠋⠊⠻" }, { "input": "rectifier's", "output": "⠗⠑⠉⠞⠊⠋⠊⠻⠄⠎" }, { "input": "rectifiers", "output": "⠗⠑⠉⠞⠊⠋⠊⠻⠎" }, { "input": "rectifies", "output": "⠗⠑⠉⠞⠊⠋⠊⠑⠎" }, { "input": "rectify", "output": "⠗⠑⠉⠞⠊⠋⠽" }, { "input": "rectifying", "output": "⠗⠑⠉⠞⠊⠋⠽⠌" }, { "input": "rectilinear", "output": "⠗⠑⠉⠞⠊⠇⠔⠑⠜" }, { "input": "rectitude", "output": "⠗⠑⠉⠞⠊⠞⠥⠙⠑" }, { "input": "rectitude's", "output": "⠗⠑⠉⠞⠊⠞⠥⠙⠑⠄⠎" }, { "input": "rector", "output": "⠗⠑⠉⠞⠕⠗" }, { "input": "rector's", "output": "⠗⠑⠉⠞⠕⠗⠄⠎" }, { "input": "rectories", "output": "⠗⠑⠉⠞⠕⠗⠊⠑⠎" }, { "input": "rectors", "output": "⠗⠑⠉⠞⠕⠗⠎" }, { "input": "rectory", "output": "⠗⠑⠉⠞⠕⠗⠽" }, { "input": "rectory's", "output": "⠗⠑⠉⠞⠕⠗⠽⠄⠎" }, { "input": "rectum", "output": "⠗⠑⠉⠞⠥â " }, { "input": "rectum's", "output": "⠗⠑⠉⠞⠥â â „â Ž" }, { "input": "rectums", "output": "⠗⠑⠉⠞⠥â â Ž" }, { "input": "recumbent", "output": "⠗⠑⠉⠥â â ƒâ ¢â ž" }, { "input": "recuperate", "output": "⠗⠑⠉⠥â â »â â žâ ‘" }, { "input": "recuperated", "output": "⠗⠑⠉⠥â â »â â žâ «" }, { "input": "recuperates", "output": "⠗⠑⠉⠥â â »â â žâ ‘â Ž" }, { "input": "recuperating", "output": "⠗⠑⠉⠥â â »â â žâ Œ" }, { "input": "recuperation", "output": "⠗⠑⠉⠥â â »â  â " }, { "input": "recuperation's", "output": "⠗⠑⠉⠥â â »â  â â „â Ž" }, { "input": "recuperative", "output": "⠗⠑⠉⠥â â »â â žâ Šâ §â ‘" }, { "input": "recur", "output": "⠗⠑⠉⠥⠗" }, { "input": "recurred", "output": "⠗⠑⠉⠥⠗⠗⠫" }, { "input": "recurrence", "output": "⠗⠑⠉⠥⠗⠗⠰⠑" }, { "input": "recurrence's", "output": "⠗⠑⠉⠥⠗⠗⠰⠑⠄⠎" }, { "input": "recurrences", "output": "⠗⠑⠉⠥⠗⠗⠰⠑⠎" }, { "input": "recurrent", "output": "⠗⠑⠉⠥⠗⠗⠢⠞" }, { "input": "recurrently", "output": "⠗⠑⠉⠥⠗⠗⠢⠞⠇⠽" }, { "input": "recurring", "output": "⠗⠑⠉⠥⠗⠗⠌" }, { "input": "recurs", "output": "⠗⠑⠉⠥⠗⠎" }, { "input": "recursion", "output": "⠗⠑⠉⠥⠗⠨â " }, { "input": "recursive", "output": "⠗⠑⠉⠥⠗⠎⠊⠧⠑" }, { "input": "recursively", "output": "⠗⠑⠉⠥⠗⠎⠊⠧⠑⠇⠽" }, { "input": "recyclable", "output": "⠗⠑⠉⠽⠉⠇â â ¼" }, { "input": "recyclable's", "output": "⠗⠑⠉⠽⠉⠇â â ¼â „â Ž" }, { "input": "recyclables", "output": "⠗⠑⠉⠽⠉⠇â â ¼â Ž" }, { "input": "recycle", "output": "⠗⠑⠉⠽⠉⠇⠑" }, { "input": "recycle's", "output": "⠗⠑⠉⠽⠉⠇⠑⠄⠎" }, { "input": "recycled", "output": "⠗⠑⠉⠽⠉⠇⠫" }, { "input": "recycles", "output": "⠗⠑⠉⠽⠉⠇⠑⠎" }, { "input": "recycling", "output": "⠗⠑⠉⠽⠉⠇⠌" }, { "input": "recycling's", "output": "⠗⠑⠉⠽⠉⠇⠌⠄⠎" }, { "input": "red", "output": "â —â «" }, { "input": "red's", "output": "â —â «â „â Ž" }, { "input": "redact", "output": "â —â ‘â ™â â ‰â ž" }, { "input": "redacted", "output": "â —â ‘â ™â â ‰â žâ «" }, { "input": "redacting", "output": "â —â ‘â ™â â ‰â žâ Œ" }, { "input": "redaction", "output": "â —â ‘â ™â â ‰â °â " }, { "input": "redaction's", "output": "â —â ‘â ™â â ‰â °â â „â Ž" }, { "input": "redactor", "output": "â —â ‘â ™â â ‰â žâ •â —" }, { "input": "redactor's", "output": "â —â ‘â ™â â ‰â žâ •â —â „â Ž" }, { "input": "redactors", "output": "â —â ‘â ™â â ‰â žâ •â —â Ž" }, { "input": "redacts", "output": "â —â ‘â ™â â ‰â žâ Ž" }, { "input": "redbird", "output": "⠗⠫⠃⠊⠗⠙" }, { "input": "redbird's", "output": "⠗⠫⠃⠊⠗⠙⠄⠎" }, { "input": "redbirds", "output": "⠗⠫⠃⠊⠗⠙⠎" }, { "input": "redbreast", "output": "⠗⠫⠃⠗⠂⠌" }, { "input": "redbreast's", "output": "⠗⠫⠃⠗⠂⠌⠄⠎" }, { "input": "redbreasts", "output": "⠗⠫⠃⠗⠂⠌⠎" }, { "input": "redcap", "output": "â —â «â ‰â â " }, { "input": "redcap's", "output": "â —â «â ‰â â â „â Ž" }, { "input": "redcaps", "output": "â —â «â ‰â â â Ž" }, { "input": "redcoat", "output": "⠗⠫⠉⠕â â ž" }, { "input": "redcoat's", "output": "⠗⠫⠉⠕â â žâ „â Ž" }, { "input": "redcoats", "output": "⠗⠫⠉⠕â â žâ Ž" }, { "input": "redden", "output": "⠗⠫⠙⠢" }, { "input": "reddened", "output": "⠗⠫⠙⠢⠫" }, { "input": "reddening", "output": "⠗⠫⠙⠢⠌" }, { "input": "reddens", "output": "⠗⠫⠙⠢⠎" }, { "input": "redder", "output": "⠗⠫⠙⠻" }, { "input": "reddest", "output": "⠗⠫⠙⠑⠌" }, { "input": "reddish", "output": "⠗⠫⠙⠊⠩" }, { "input": "redecorate", "output": "⠗⠑⠙⠑⠉⠕⠗â â žâ ‘" }, { "input": "redecorated", "output": "⠗⠑⠙⠑⠉⠕⠗â â žâ «" }, { "input": "redecorates", "output": "⠗⠑⠙⠑⠉⠕⠗â â žâ ‘â Ž" }, { "input": "redecorating", "output": "⠗⠑⠙⠑⠉⠕⠗â â žâ Œ" }, { "input": "redecoration's", "output": "⠗⠑⠙⠑⠉⠕⠗⠠â â „â Ž" }, { "input": "rededicate", "output": "⠗⠑⠙⠫⠊⠉â â žâ ‘" }, { "input": "rededicated", "output": "⠗⠑⠙⠫⠊⠉â â žâ «" }, { "input": "rededicates", "output": "⠗⠑⠙⠫⠊⠉â â žâ ‘â Ž" }, { "input": "rededicating", "output": "⠗⠑⠙⠫⠊⠉â â žâ Œ" }, { "input": "redeem", "output": "⠗⠑⠙⠑⠑â " }, { "input": "redeemable", "output": "⠗⠑⠙⠑⠑â â â ¼" }, { "input": "redeemed", "output": "⠗⠑⠙⠑⠑â â «" }, { "input": "redeemer", "output": "⠗⠑⠙⠑⠑â â »" }, { "input": "redeemer's", "output": "⠗⠑⠙⠑⠑â â »â „â Ž" }, { "input": "redeemers", "output": "⠗⠑⠙⠑⠑â â »â Ž" }, { "input": "redeeming", "output": "⠗⠑⠙⠑⠑â â Œ" }, { "input": "redeems", "output": "⠗⠑⠙⠑⠑â â Ž" }, { "input": "redefine", "output": "⠗⠑⠙⠑⠋⠔⠑" }, { "input": "redefined", "output": "⠗⠑⠙⠑⠋⠔⠫" }, { "input": "redefines", "output": "⠗⠑⠙⠑⠋⠔⠑⠎" }, { "input": "redefining", "output": "⠗⠑⠙⠑⠋⠔⠌" }, { "input": "redefinition", "output": "⠗⠑⠙⠑⠋⠔⠊⠰â " }, { "input": "redefinition's", "output": "⠗⠑⠙⠑⠋⠔⠊⠰â â „â Ž" }, { "input": "redeliver", "output": "⠗⠑⠙⠑⠇⠊⠧⠻" }, { "input": "redelivered", "output": "⠗⠑⠙⠑⠇⠊⠧⠻⠫" }, { "input": "redelivering", "output": "⠗⠑⠙⠑⠇⠊⠧⠻⠌" }, { "input": "redelivers", "output": "⠗⠑⠙⠑⠇⠊⠧⠻⠎" }, { "input": "redemption", "output": "⠗⠑⠙⠑â â â °â " }, { "input": "redemption's", "output": "⠗⠑⠙⠑â â â °â â „â Ž" }, { "input": "redeploy", "output": "⠗⠑⠙⠑â â ‡â •â ½" }, { "input": "redeployed", "output": "⠗⠑⠙⠑â â ‡â •⠽⠫" }, { "input": "redeploying", "output": "⠗⠑⠙⠑â â ‡â •⠽⠌" }, { "input": "redeployment", "output": "⠗⠑⠙⠑â â ‡â •⠽⠰⠞" }, { "input": "redeployment's", "output": "⠗⠑⠙⠑â â ‡â •⠽⠰⠞⠄⠎" }, { "input": "redeploys", "output": "⠗⠑⠙⠑â â ‡â •⠽⠎" }, { "input": "redeposit", "output": "⠗⠑⠙⠑â â •â Žâ Šâ ž" }, { "input": "redeposit's", "output": "⠗⠑⠙⠑â â •â Žâ Šâ žâ „â Ž" }, { "input": "redeposited", "output": "⠗⠑⠙⠑â â •â Žâ Šâ žâ «" }, { "input": "redepositing", "output": "⠗⠑⠙⠑â â •â Žâ Šâ žâ Œ" }, { "input": "redeposits", "output": "⠗⠑⠙⠑â â •â Žâ Šâ žâ Ž" }, { "input": "redesign", "output": "⠗⠑⠙⠑⠎⠊⠛â " }, { "input": "redesigned", "output": "⠗⠑⠙⠑⠎⠊⠛â â «" }, { "input": "redesigning", "output": "⠗⠑⠙⠑⠎⠊⠛â â Œ" }, { "input": "redesigns", "output": "⠗⠑⠙⠑⠎⠊⠛â â Ž" }, { "input": "redetermine", "output": "⠗⠑⠙⠑⠞⠻â â ”â ‘" }, { "input": "redetermined", "output": "⠗⠑⠙⠑⠞⠻â â ”â «" }, { "input": "redetermines", "output": "⠗⠑⠙⠑⠞⠻â â ”â ‘â Ž" }, { "input": "redetermining", "output": "⠗⠑⠙⠑⠞⠻â â ”â Œ" }, { "input": "redevelop", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â " }, { "input": "redeveloped", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â «" }, { "input": "redeveloping", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â Œ" }, { "input": "redevelopment", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â °â ž" }, { "input": "redevelopment's", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â °â žâ „â Ž" }, { "input": "redevelopments", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â °â žâ Ž" }, { "input": "redevelops", "output": "⠗⠑⠙⠑⠧⠑⠇⠕â â Ž" }, { "input": "redhead", "output": "â —â «â “â ‚â ™" }, { "input": "redhead's", "output": "⠗⠫⠓⠂⠙⠄⠎" }, { "input": "redheaded", "output": "⠗⠫⠓⠂⠙⠫" }, { "input": "redheads", "output": "⠗⠫⠓⠂⠙⠎" }, { "input": "redial", "output": "⠗⠑⠙⠊â â ‡" }, { "input": "redial's", "output": "⠗⠑⠙⠊â â ‡â „â Ž" }, { "input": "redialed", "output": "⠗⠑⠙⠊â â ‡â «" }, { "input": "redialing", "output": "⠗⠑⠙⠊â â ‡â Œ" }, { "input": "redials", "output": "⠗⠑⠙⠊â â ‡â Ž" }, { "input": "redid", "output": "⠗⠑⠙⠊⠙" }, { "input": "redirect", "output": "⠗⠑⠙⠊⠗⠑⠉⠞" }, { "input": "redirected", "output": "⠗⠑⠙⠊⠗⠑⠉⠞⠫" }, { "input": "redirecting", "output": "⠗⠑⠙⠊⠗⠑⠉⠞⠌" }, { "input": "redirection", "output": "⠗⠑⠙⠊⠗⠑⠉⠰â " }, { "input": "redirects", "output": "⠗⠑⠙⠊⠗⠑⠉⠞⠎" }, { "input": "rediscover", "output": "⠗⠑⠙⠊⠎⠉⠕⠧⠻" }, { "input": "rediscovered", "output": "⠗⠑⠙⠊⠎⠉⠕⠧⠻⠫" }, { "input": "rediscovering", "output": "⠗⠑⠙⠊⠎⠉⠕⠧⠻⠌" }, { "input": "rediscovers", "output": "⠗⠑⠙⠊⠎⠉⠕⠧⠻⠎" }, { "input": "rediscovery", "output": "⠗⠑⠙⠊⠎⠉⠕⠧⠻⠽" }, { "input": "rediscovery's", "output": "⠗⠑⠙⠊⠎⠉⠕⠧⠻⠽⠄⠎" }, { "input": "redissolve", "output": "⠗⠑⠙⠊⠎⠎⠕⠇⠧⠑" }, { "input": "redissolved", "output": "⠗⠑⠙⠊⠎⠎⠕⠇⠧⠫" }, { "input": "redissolves", "output": "⠗⠑⠙⠊⠎⠎⠕⠇⠧⠑⠎" }, { "input": "redissolving", "output": "⠗⠑⠙⠊⠎⠎⠕⠇⠧⠌" }, { "input": "redistribute", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠃⠥⠞⠑" }, { "input": "redistributed", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠃⠥⠞⠫" }, { "input": "redistributes", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "redistributing", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠃⠥⠞⠌" }, { "input": "redistribution", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠃⠥⠰â " }, { "input": "redistribution's", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠃⠥⠰â â „â Ž" }, { "input": "redistrict", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠉⠞" }, { "input": "redistricted", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠉⠞⠫" }, { "input": "redistricting", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠉⠞⠌" }, { "input": "redistricts", "output": "⠗⠑⠙⠊⠎⠞⠗⠊⠉⠞⠎" }, { "input": "redivide", "output": "⠗⠑⠙⠊⠧⠊⠙⠑" }, { "input": "redivided", "output": "⠗⠑⠙⠊⠧⠊⠙⠫" }, { "input": "redivides", "output": "⠗⠑⠙⠊⠧⠊⠙⠑⠎" }, { "input": "redividing", "output": "⠗⠑⠙⠊⠧⠊⠙⠌" }, { "input": "redlining", "output": "⠗⠫⠇⠔⠌" }, { "input": "redlining's", "output": "⠗⠫⠇⠔⠌⠄⠎" }, { "input": "redneck", "output": "â —â «â â ‘⠉⠅" }, { "input": "redneck's", "output": "â —â «â â ‘⠉⠅⠄⠎" }, { "input": "rednecks", "output": "â —â «â â ‘⠉⠅⠎" }, { "input": "redness", "output": "â —â «â °â Ž" }, { "input": "redness's", "output": "â —â «â °â Žâ „â Ž" }, { "input": "redo", "output": "⠗⠑⠙⠕" }, { "input": "redoes", "output": "⠗⠑⠙⠕⠑⠎" }, { "input": "redoing", "output": "⠗⠑⠙⠕⠌" }, { "input": "redolence", "output": "⠗⠫⠕⠇⠰⠑" }, { "input": "redolence's", "output": "⠗⠫⠕⠇⠰⠑⠄⠎" }, { "input": "redolent", "output": "⠗⠫⠕⠇⠢⠞" }, { "input": "redone", "output": "â —â ‘â ™â â •" }, { "input": "redouble", "output": "⠗⠑⠙⠳⠼" }, { "input": "redoubled", "output": "⠗⠑⠙⠳⠼⠙" }, { "input": "redoubles", "output": "⠗⠑⠙⠳⠼⠎" }, { "input": "redoubling", "output": "⠗⠑⠙⠳⠃⠇⠌" }, { "input": "redoubt", "output": "⠗⠑⠙⠳⠃⠞" }, { "input": "redoubt's", "output": "⠗⠑⠙⠳⠃⠞⠄⠎" }, { "input": "redoubtable", "output": "⠗⠑⠙⠳⠃⠞â â ¼" }, { "input": "redoubtably", "output": "⠗⠑⠙⠳⠃⠞â â ƒâ ‡â ½" }, { "input": "redoubts", "output": "⠗⠑⠙⠳⠃⠞⠎" }, { "input": "redound", "output": "⠗⠑⠙⠨⠙" }, { "input": "redounded", "output": "⠗⠑⠙⠨⠙⠫" }, { "input": "redounding", "output": "⠗⠑⠙⠨⠙⠌" }, { "input": "redounds", "output": "⠗⠑⠙⠨⠙⠎" }, { "input": "redraft", "output": "⠗⠑⠙⠗â â ‹â ž" }, { "input": "redrafted", "output": "⠗⠑⠙⠗â â ‹â žâ «" }, { "input": "redrafting", "output": "⠗⠑⠙⠗â â ‹â žâ Œ" }, { "input": "redrafts", "output": "⠗⠑⠙⠗â â ‹â žâ Ž" }, { "input": "redraw", "output": "⠗⠑⠙⠗â â º" }, { "input": "redrawing", "output": "⠗⠑⠙⠗â â ºâ Œ" }, { "input": "redrawn", "output": "⠗⠑⠙⠗â â ºâ " }, { "input": "redraws", "output": "⠗⠑⠙⠗â â ºâ Ž" }, { "input": "redress", "output": "⠗⠑⠙⠗⠑⠎⠎" }, { "input": "redress's", "output": "⠗⠑⠙⠗⠑⠎⠎⠄⠎" }, { "input": "redressed", "output": "⠗⠑⠙⠗⠑⠎⠎⠫" }, { "input": "redresses", "output": "⠗⠑⠙⠗⠑⠎⠎⠑⠎" }, { "input": "redressing", "output": "⠗⠑⠙⠗⠑⠎⠎⠌" }, { "input": "redrew", "output": "⠗⠑⠙⠗⠑⠺" }, { "input": "reds", "output": "â —â «â Ž" }, { "input": "redskin", "output": "â —â «â Žâ …â ”" }, { "input": "redskin's", "output": "⠗⠫⠎⠅⠔⠄⠎" }, { "input": "redskins", "output": "⠗⠫⠎⠅⠔⠎" }, { "input": "reduce", "output": "⠗⠑⠙⠥⠉⠑" }, { "input": "reduced", "output": "⠗⠑⠙⠥⠉⠫" }, { "input": "reducer", "output": "⠗⠑⠙⠥⠉⠻" }, { "input": "reducer's", "output": "⠗⠑⠙⠥⠉⠻⠄⠎" }, { "input": "reducers", "output": "⠗⠑⠙⠥⠉⠻⠎" }, { "input": "reduces", "output": "⠗⠑⠙⠥⠉⠑⠎" }, { "input": "reducing", "output": "⠗⠑⠙⠥⠉⠌" }, { "input": "reduction", "output": "⠗⠑⠙⠥⠉⠰â " }, { "input": "reduction's", "output": "⠗⠑⠙⠥⠉⠰â â „â Ž" }, { "input": "reductions", "output": "⠗⠑⠙⠥⠉⠰â â Ž" }, { "input": "redundancies", "output": "⠗⠑⠙⠥â â ™â â â ‰â Šâ ‘â Ž" }, { "input": "redundancy", "output": "⠗⠑⠙⠥â â ™â â â ‰â ½" }, { "input": "redundancy's", "output": "⠗⠑⠙⠥â â ™â â â ‰â ½â „â Ž" }, { "input": "redundant", "output": "⠗⠑⠙⠥â â ™â â â ž" }, { "input": "redundantly", "output": "⠗⠑⠙⠥â â ™â â â žâ ‡â ½" }, { "input": "reduplicate", "output": "⠗⠑⠙⠥â â ‡â Šâ ‰â â žâ ‘" }, { "input": "reduplicated", "output": "⠗⠑⠙⠥â â ‡â Šâ ‰â â žâ «" }, { "input": "reduplicates", "output": "⠗⠑⠙⠥â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "reduplicating", "output": "⠗⠑⠙⠥â â ‡â Šâ ‰â â žâ Œ" }, { "input": "reduplication", "output": "⠗⠑⠙⠥â â ‡â Šâ ‰â  â " }, { "input": "reduplication's", "output": "⠗⠑⠙⠥â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "redwood", "output": "⠗⠫⠺⠕⠕⠙" }, { "input": "redwood's", "output": "⠗⠫⠺⠕⠕⠙⠄⠎" }, { "input": "redwoods", "output": "⠗⠫⠺⠕⠕⠙⠎" }, { "input": "redye", "output": "⠗⠑⠙⠽⠑" }, { "input": "redyed", "output": "⠗⠑⠙⠽⠫" }, { "input": "redyeing", "output": "⠗⠑⠙⠽⠑⠌" }, { "input": "redyes", "output": "⠗⠑⠙⠽⠑⠎" }, { "input": "reecho", "output": "â —â ‘â ‘â ¡â •" }, { "input": "reechoed", "output": "â —â ‘â ‘â ¡â •â «" }, { "input": "reechoes", "output": "â —â ‘â ‘â ¡â •â ‘â Ž" }, { "input": "reechoing", "output": "â —â ‘â ‘â ¡â •â Œ" }, { "input": "reed", "output": "â —â ‘â «" }, { "input": "reed's", "output": "â —â ‘â «â „â Ž" }, { "input": "reedier", "output": "â —â ‘â «â Šâ »" }, { "input": "reediest", "output": "â —â ‘â «â Šâ ‘â Œ" }, { "input": "reediness", "output": "â —â ‘â «â Šâ °â Ž" }, { "input": "reediness's", "output": "â —â ‘â «â Šâ °â Žâ „â Ž" }, { "input": "reedit", "output": "â —â ‘â «â Šâ ž" }, { "input": "reedited", "output": "â —â ‘â «â Šâ žâ «" }, { "input": "reediting", "output": "â —â ‘â «â Šâ žâ Œ" }, { "input": "reedits", "output": "â —â ‘â «â Šâ žâ Ž" }, { "input": "reeds", "output": "â —â ‘â «â Ž" }, { "input": "reeducate", "output": "⠗⠑⠫⠥⠉â â žâ ‘" }, { "input": "reeducated", "output": "⠗⠑⠫⠥⠉â â žâ «" }, { "input": "reeducates", "output": "⠗⠑⠫⠥⠉â â žâ ‘â Ž" }, { "input": "reeducating", "output": "⠗⠑⠫⠥⠉â â žâ Œ" }, { "input": "reeducation", "output": "⠗⠑⠫⠥⠉⠠â " }, { "input": "reeducation's", "output": "⠗⠑⠫⠥⠉⠠â â „â Ž" }, { "input": "reedy", "output": "â —â ‘â «â ½" }, { "input": "reef", "output": "â —â ‘â ‘â ‹" }, { "input": "reef's", "output": "â —â ‘â ‘â ‹â „â Ž" }, { "input": "reefed", "output": "â —â ‘â ‘â ‹â «" }, { "input": "reefer", "output": "â —â ‘â ‘â ‹â »" }, { "input": "reefer's", "output": "⠗⠑⠑⠋⠻⠄⠎" }, { "input": "reefers", "output": "⠗⠑⠑⠋⠻⠎" }, { "input": "reefing", "output": "â —â ‘â ‘â ‹â Œ" }, { "input": "reefs", "output": "â —â ‘â ‘â ‹â Ž" }, { "input": "reek", "output": "â —â ‘â ‘â …" }, { "input": "reek's", "output": "â —â ‘â ‘â …â „â Ž" }, { "input": "reeked", "output": "â —â ‘â ‘â …â «" }, { "input": "reeking", "output": "â —â ‘â ‘â …â Œ" }, { "input": "reeks", "output": "â —â ‘â ‘â …â Ž" }, { "input": "reel", "output": "â —â ‘â ‘â ‡" }, { "input": "reel's", "output": "⠗⠑⠑⠇⠄⠎" }, { "input": "reelect", "output": "⠗⠑⠑⠇⠑⠉⠞" }, { "input": "reelected", "output": "⠗⠑⠑⠇⠑⠉⠞⠫" }, { "input": "reelecting", "output": "⠗⠑⠑⠇⠑⠉⠞⠌" }, { "input": "reelection", "output": "⠗⠑⠑⠇⠑⠉⠰â " }, { "input": "reelection's", "output": "⠗⠑⠑⠇⠑⠉⠰â â „â Ž" }, { "input": "reelections", "output": "⠗⠑⠑⠇⠑⠉⠰â â Ž" }, { "input": "reelects", "output": "⠗⠑⠑⠇⠑⠉⠞⠎" }, { "input": "reeled", "output": "⠗⠑⠑⠇⠫" }, { "input": "reeling", "output": "⠗⠑⠑⠇⠌" }, { "input": "reels", "output": "⠗⠑⠑⠇⠎" }, { "input": "reembark", "output": "â —â ‘â ‘â â ƒâ œâ …" }, { "input": "reembarked", "output": "â —â ‘â ‘â â ƒâ œâ …â «" }, { "input": "reembarking", "output": "â —â ‘â ‘â â ƒâ œâ …â Œ" }, { "input": "reembarks", "output": "â —â ‘â ‘â â ƒâ œâ …â Ž" }, { "input": "reembodied", "output": "â —â ‘â ‘â â ƒâ •⠙⠊⠫" }, { "input": "reembodies", "output": "â —â ‘â ‘â â ƒâ •⠙⠊⠑⠎" }, { "input": "reembody", "output": "â —â ‘â ‘â â ƒâ •⠙⠽" }, { "input": "reembodying", "output": "â —â ‘â ‘â â ƒâ •⠙⠽⠌" }, { "input": "reemerge", "output": "â —â ‘â ‘â â »â ›â ‘" }, { "input": "reemerged", "output": "â —â ‘â ‘â â »â ›â «" }, { "input": "reemergence", "output": "â —â ‘â ‘â â »â ›â °â ‘" }, { "input": "reemergence's", "output": "â —â ‘â ‘â â »â ›â °â ‘â „â Ž" }, { "input": "reemerges", "output": "â —â ‘â ‘â â »â ›â ‘â Ž" }, { "input": "reemerging", "output": "â —â ‘â ‘â â »â ›â Œ" }, { "input": "reemphasize", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ ‘" }, { "input": "reemphasized", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ «" }, { "input": "reemphasizes", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ ‘â Ž" }, { "input": "reemphasizing", "output": "â —â ‘â ‘â â â “â â Žâ Šâ µâ Œ" }, { "input": "reemploy", "output": "â —â ‘â ‘â â â ‡â •â ½" }, { "input": "reemployed", "output": "â —â ‘â ‘â â â ‡â •⠽⠫" }, { "input": "reemploying", "output": "â —â ‘â ‘â â â ‡â •⠽⠌" }, { "input": "reemployment", "output": "â —â ‘â ‘â â â ‡â •⠽⠰⠞" }, { "input": "reemployment's", "output": "â —â ‘â ‘â â â ‡â •⠽⠰⠞⠄⠎" }, { "input": "reemploys", "output": "â —â ‘â ‘â â â ‡â •⠽⠎" }, { "input": "reenact", "output": "â —â ‘â ¢â â ‰â ž" }, { "input": "reenacted", "output": "â —â ‘â ¢â â ‰â žâ «" }, { "input": "reenacting", "output": "â —â ‘â ¢â â ‰â žâ Œ" }, { "input": "reenactment", "output": "â —â ‘â ¢â â ‰â žâ °â ž" }, { "input": "reenactment's", "output": "â —â ‘â ¢â â ‰â žâ °â žâ „â Ž" }, { "input": "reenactments", "output": "â —â ‘â ¢â â ‰â žâ °â žâ Ž" }, { "input": "reenacts", "output": "â —â ‘â ¢â â ‰â žâ Ž" }, { "input": "reengage", "output": "⠗⠑⠢⠛â â ›â ‘" }, { "input": "reengaged", "output": "⠗⠑⠢⠛â â ›â «" }, { "input": "reengages", "output": "⠗⠑⠢⠛â â ›â ‘â Ž" }, { "input": "reengaging", "output": "⠗⠑⠢⠛â â ›â Œ" }, { "input": "reenlist", "output": "⠗⠑⠢⠇⠊⠌" }, { "input": "reenlisted", "output": "⠗⠑⠢⠇⠊⠌⠫" }, { "input": "reenlisting", "output": "⠗⠑⠢⠇⠊⠌⠌" }, { "input": "reenlistment", "output": "⠗⠑⠢⠇⠊⠌⠰⠞" }, { "input": "reenlistment's", "output": "⠗⠑⠢⠇⠊⠌⠰⠞⠄⠎" }, { "input": "reenlists", "output": "⠗⠑⠢⠇⠊⠌⠎" }, { "input": "reenter", "output": "⠗⠑⠢⠞⠻" }, { "input": "reentered", "output": "⠗⠑⠢⠞⠻⠫" }, { "input": "reentering", "output": "⠗⠑⠢⠞⠻⠌" }, { "input": "reenters", "output": "⠗⠑⠢⠞⠻⠎" }, { "input": "reentries", "output": "⠗⠑⠢⠞⠗⠊⠑⠎" }, { "input": "reentry", "output": "⠗⠑⠢⠞⠗⠽" }, { "input": "reentry's", "output": "⠗⠑⠢⠞⠗⠽⠄⠎" }, { "input": "reequip", "output": "⠗⠑⠑⠟⠥⠊â " }, { "input": "reequipped", "output": "⠗⠑⠑⠟⠥⠊â â â «" }, { "input": "reequipping", "output": "⠗⠑⠑⠟⠥⠊â â â Œ" }, { "input": "reequips", "output": "⠗⠑⠑⠟⠥⠊â â Ž" }, { "input": "reestablish", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©" }, { "input": "reestablished", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â «" }, { "input": "reestablishes", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "reestablishing", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â Œ" }, { "input": "reestablishment", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â °â ž" }, { "input": "reestablishment's", "output": "â —â ‘â ‘â Œâ â ƒâ ‡â Šâ ©â °â žâ „â Ž" }, { "input": "reevaluate", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ ‘" }, { "input": "reevaluated", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ «" }, { "input": "reevaluates", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ ‘â Ž" }, { "input": "reevaluating", "output": "â —â ‘â ‘â §â â ‡â ¥â â žâ Œ" }, { "input": "reevaluation", "output": "â —â ‘â ‘â §â â ‡â ¥â  â " }, { "input": "reevaluation's", "output": "â —â ‘â ‘â §â â ‡â ¥â  â â „â Ž" }, { "input": "reevaluations", "output": "â —â ‘â ‘â §â â ‡â ¥â  â â Ž" }, { "input": "reeve", "output": "â —â ‘â ‘â §â ‘" }, { "input": "reeve's", "output": "â —â ‘â ‘â §â ‘â „â Ž" }, { "input": "reeves", "output": "â —â ‘â ‘â §â ‘â Ž" }, { "input": "reeving", "output": "â —â ‘â ‘â §â Œ" }, { "input": "reexamination", "output": "â —â ‘â ‘â ­â â â ”â  â " }, { "input": "reexamination's", "output": "â —â ‘â ‘â ­â â â ”â  â â „â Ž" }, { "input": "reexaminations", "output": "â —â ‘â ‘â ­â â â ”â  â â Ž" }, { "input": "reexamine", "output": "â —â ‘â ‘â ­â â â ”â ‘" }, { "input": "reexamined", "output": "â —â ‘â ‘â ­â â â ”â «" }, { "input": "reexamines", "output": "â —â ‘â ‘â ­â â â ”â ‘â Ž" }, { "input": "reexamining", "output": "â —â ‘â ‘â ­â â â ”â Œ" }, { "input": "reexplain", "output": "â —â ‘â ‘â ­â â ‡â â ”" }, { "input": "reexplained", "output": "â —â ‘â ‘â ­â â ‡â â ”â «" }, { "input": "reexplaining", "output": "â —â ‘â ‘â ­â â ‡â â ”â Œ" }, { "input": "reexplains", "output": "â —â ‘â ‘â ­â â ‡â â ”â Ž" }, { "input": "reexport", "output": "â —â ‘â ‘â ­â â •â —â ž" }, { "input": "reexported", "output": "â —â ‘â ‘â ­â â •â —â žâ «" }, { "input": "reexporting", "output": "â —â ‘â ‘â ­â â •â —â žâ Œ" }, { "input": "reexports", "output": "â —â ‘â ‘â ­â â •â —â žâ Ž" }, { "input": "ref", "output": "â —â ‘â ‹" }, { "input": "ref's", "output": "â —â ‘â ‹â „â Ž" }, { "input": "reface", "output": "â —â ‘â ‹â â ‰â ‘" }, { "input": "refaced", "output": "â —â ‘â ‹â â ‰â «" }, { "input": "refaces", "output": "â —â ‘â ‹â â ‰â ‘â Ž" }, { "input": "refacing", "output": "â —â ‘â ‹â â ‰â Œ" }, { "input": "refashion", "output": "â —â ‘â ‹â â ©â Šâ •â " }, { "input": "refashioned", "output": "â —â ‘â ‹â â ©â Šâ •â â «" }, { "input": "refashioning", "output": "â —â ‘â ‹â â ©â Šâ •â â Œ" }, { "input": "refashions", "output": "â —â ‘â ‹â â ©â Šâ •â â Ž" }, { "input": "refasten", "output": "â —â ‘â ‹â â Œâ ¢" }, { "input": "refastened", "output": "â —â ‘â ‹â â Œâ ¢â «" }, { "input": "refastening", "output": "â —â ‘â ‹â â Œâ ¢â Œ" }, { "input": "refastens", "output": "â —â ‘â ‹â â Œâ ¢â Ž" }, { "input": "refection", "output": "⠗⠑⠋⠑⠉⠰â " }, { "input": "refection's", "output": "⠗⠑⠋⠑⠉⠰â â „â Ž" }, { "input": "refectories", "output": "⠗⠑⠋⠑⠉⠞⠕⠗⠊⠑⠎" }, { "input": "refectory", "output": "⠗⠑⠋⠑⠉⠞⠕⠗⠽" }, { "input": "refectory's", "output": "⠗⠑⠋⠑⠉⠞⠕⠗⠽⠄⠎" }, { "input": "refer", "output": "â —â ‘â ‹â »" }, { "input": "referee", "output": "⠗⠑⠋⠻⠑⠑" }, { "input": "referee's", "output": "⠗⠑⠋⠻⠑⠑⠄⠎" }, { "input": "refereed", "output": "⠗⠑⠋⠻⠑⠫" }, { "input": "refereeing", "output": "⠗⠑⠋⠻⠑⠑⠌" }, { "input": "referees", "output": "⠗⠑⠋⠻⠑⠑⠎" }, { "input": "reference", "output": "⠗⠑⠋⠻⠰⠑" }, { "input": "reference's", "output": "⠗⠑⠋⠻⠰⠑⠄⠎" }, { "input": "referenced", "output": "⠗⠑⠋⠻⠰⠑⠙" }, { "input": "references", "output": "⠗⠑⠋⠻⠰⠑⠎" }, { "input": "referencing", "output": "⠗⠑⠋⠻⠢⠉⠌" }, { "input": "referendum", "output": "⠗⠑⠋⠻⠢⠙⠥â " }, { "input": "referendum's", "output": "⠗⠑⠋⠻⠢⠙⠥â â „â Ž" }, { "input": "referendums", "output": "⠗⠑⠋⠻⠢⠙⠥â â Ž" }, { "input": "referent", "output": "⠗⠑⠋⠻⠢⠞" }, { "input": "referent's", "output": "⠗⠑⠋⠻⠢⠞⠄⠎" }, { "input": "referential", "output": "⠗⠑⠋⠻⠢⠞⠊â â ‡" }, { "input": "referents", "output": "⠗⠑⠋⠻⠢⠞⠎" }, { "input": "referral", "output": "⠗⠑⠋⠻⠗â â ‡" }, { "input": "referral's", "output": "⠗⠑⠋⠻⠗â â ‡â „â Ž" }, { "input": "referrals", "output": "⠗⠑⠋⠻⠗â â ‡â Ž" }, { "input": "referred", "output": "⠗⠑⠋⠻⠗⠫" }, { "input": "referrer", "output": "⠗⠑⠋⠻⠗⠻" }, { "input": "referrer's", "output": "⠗⠑⠋⠻⠗⠻⠄⠎" }, { "input": "referrers", "output": "⠗⠑⠋⠻⠗⠻⠎" }, { "input": "referring", "output": "⠗⠑⠋⠻⠗⠌" }, { "input": "refers", "output": "⠗⠑⠋⠻⠎" }, { "input": "reffed", "output": "â —â ‘â –â «" }, { "input": "reffing", "output": "â —â ‘â –â Œ" }, { "input": "refile", "output": "⠗⠑⠋⠊⠇⠑" }, { "input": "refiled", "output": "⠗⠑⠋⠊⠇⠫" }, { "input": "refiles", "output": "⠗⠑⠋⠊⠇⠑⠎" }, { "input": "refiling", "output": "⠗⠑⠋⠊⠇⠌" }, { "input": "refill", "output": "⠗⠑⠋⠊⠇⠇" }, { "input": "refill's", "output": "⠗⠑⠋⠊⠇⠇⠄⠎" }, { "input": "refillable", "output": "⠗⠑⠋⠊⠇⠇â â ¼" }, { "input": "refilled", "output": "⠗⠑⠋⠊⠇⠇⠫" }, { "input": "refilling", "output": "⠗⠑⠋⠊⠇⠇⠌" }, { "input": "refills", "output": "⠗⠑⠋⠊⠇⠇⠎" }, { "input": "refinance", "output": "⠗⠑⠋⠔⠨⠑" }, { "input": "refinanced", "output": "⠗⠑⠋⠔⠨⠑⠙" }, { "input": "refinances", "output": "⠗⠑⠋⠔⠨⠑⠎" }, { "input": "refinancing", "output": "â —â ‘â ‹â ”â â â ‰â Œ" }, { "input": "refine", "output": "⠗⠑⠋⠔⠑" }, { "input": "refined", "output": "⠗⠑⠋⠔⠫" }, { "input": "refinement", "output": "⠗⠑⠋⠔⠑⠰⠞" }, { "input": "refinement's", "output": "⠗⠑⠋⠔⠑⠰⠞⠄⠎" }, { "input": "refinements", "output": "⠗⠑⠋⠔⠑⠰⠞⠎" }, { "input": "refiner", "output": "⠗⠑⠋⠔⠻" }, { "input": "refiner's", "output": "⠗⠑⠋⠔⠻⠄⠎" }, { "input": "refineries", "output": "⠗⠑⠋⠔⠻⠊⠑⠎" }, { "input": "refiners", "output": "⠗⠑⠋⠔⠻⠎" }, { "input": "refinery", "output": "⠗⠑⠋⠔⠻⠽" }, { "input": "refinery's", "output": "⠗⠑⠋⠔⠻⠽⠄⠎" }, { "input": "refines", "output": "⠗⠑⠋⠔⠑⠎" }, { "input": "refining", "output": "⠗⠑⠋⠔⠌" }, { "input": "refinish", "output": "⠗⠑⠋⠔⠊⠩" }, { "input": "refinished", "output": "⠗⠑⠋⠔⠊⠩⠫" }, { "input": "refinishes", "output": "⠗⠑⠋⠔⠊⠩⠑⠎" }, { "input": "refinishing", "output": "⠗⠑⠋⠔⠊⠩⠌" }, { "input": "refit", "output": "â —â ‘â ‹â Šâ ž" }, { "input": "refit's", "output": "â —â ‘â ‹â Šâ žâ „â Ž" }, { "input": "refits", "output": "â —â ‘â ‹â Šâ žâ Ž" }, { "input": "refitted", "output": "â —â ‘â ‹â Šâ žâ žâ «" }, { "input": "refitting", "output": "â —â ‘â ‹â Šâ žâ žâ Œ" }, { "input": "reflect", "output": "⠗⠑⠋⠇⠑⠉⠞" }, { "input": "reflected", "output": "⠗⠑⠋⠇⠑⠉⠞⠫" }, { "input": "reflecting", "output": "⠗⠑⠋⠇⠑⠉⠞⠌" }, { "input": "reflection", "output": "⠗⠑⠋⠇⠑⠉⠰â " }, { "input": "reflection's", "output": "⠗⠑⠋⠇⠑⠉⠰â â „â Ž" }, { "input": "reflections", "output": "⠗⠑⠋⠇⠑⠉⠰â â Ž" }, { "input": "reflective", "output": "⠗⠑⠋⠇⠑⠉⠞⠊⠧⠑" }, { "input": "reflector", "output": "⠗⠑⠋⠇⠑⠉⠞⠕⠗" }, { "input": "reflector's", "output": "⠗⠑⠋⠇⠑⠉⠞⠕⠗⠄⠎" }, { "input": "reflectors", "output": "⠗⠑⠋⠇⠑⠉⠞⠕⠗⠎" }, { "input": "reflects", "output": "⠗⠑⠋⠇⠑⠉⠞⠎" }, { "input": "reflex", "output": "⠗⠑⠋⠇⠑⠭" }, { "input": "reflex's", "output": "⠗⠑⠋⠇⠑⠭⠄⠎" }, { "input": "reflexes", "output": "⠗⠑⠋⠇⠑⠭⠑⠎" }, { "input": "reflexive", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑" }, { "input": "reflexive's", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑⠄⠎" }, { "input": "reflexively", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑⠇⠽" }, { "input": "reflexives", "output": "⠗⠑⠋⠇⠑⠭⠊⠧⠑⠎" }, { "input": "refocus", "output": "⠗⠑⠋⠕⠉⠥⠎" }, { "input": "refocused", "output": "⠗⠑⠋⠕⠉⠥⠎⠫" }, { "input": "refocuses", "output": "⠗⠑⠋⠕⠉⠥⠎⠑⠎" }, { "input": "refocusing", "output": "⠗⠑⠋⠕⠉⠥⠎⠌" }, { "input": "refold", "output": "⠗⠑⠋⠕⠇⠙" }, { "input": "refolded", "output": "⠗⠑⠋⠕⠇⠙⠫" }, { "input": "refolding", "output": "⠗⠑⠋⠕⠇⠙⠌" }, { "input": "refolds", "output": "⠗⠑⠋⠕⠇⠙⠎" }, { "input": "reforest", "output": "â —â ‘â ¿â ‘â Œ" }, { "input": "reforestation", "output": "⠗⠑⠿⠑⠌⠠â " }, { "input": "reforestation's", "output": "⠗⠑⠿⠑⠌⠠â â „â Ž" }, { "input": "reforested", "output": "⠗⠑⠿⠑⠌⠫" }, { "input": "reforesting", "output": "⠗⠑⠿⠑⠌⠌" }, { "input": "reforests", "output": "⠗⠑⠿⠑⠌⠎" }, { "input": "reforge", "output": "⠗⠑⠿⠛⠑" }, { "input": "reforged", "output": "⠗⠑⠿⠛⠫" }, { "input": "reforges", "output": "⠗⠑⠿⠛⠑⠎" }, { "input": "reforging", "output": "⠗⠑⠿⠛⠌" }, { "input": "reform", "output": "â —â ‘â ¿â " }, { "input": "reform's", "output": "â —â ‘â ¿â â „â Ž" }, { "input": "reformat", "output": "â —â ‘â ¿â â â ž" }, { "input": "reformation", "output": "â —â ‘â ¿â â  â " }, { "input": "reformation's", "output": "â —â ‘â ¿â â  â â „â Ž" }, { "input": "reformations", "output": "â —â ‘â ¿â â  â â Ž" }, { "input": "reformative", "output": "â —â ‘â ¿â â â žâ Šâ §â ‘" }, { "input": "reformatories", "output": "â —â ‘â ¿â â â žâ •â —â Šâ ‘â Ž" }, { "input": "reformatory", "output": "â —â ‘â ¿â â â žâ •â —â ½" }, { "input": "reformatory's", "output": "â —â ‘â ¿â â â žâ •⠗⠽⠄⠎" }, { "input": "reformatted", "output": "â —â ‘â ¿â â â žâ žâ «" }, { "input": "reformatting", "output": "â —â ‘â ¿â â â žâ žâ Œ" }, { "input": "reformed", "output": "â —â ‘â ¿â â «" }, { "input": "reformer", "output": "â —â ‘â ¿â â »" }, { "input": "reformer's", "output": "â —â ‘â ¿â â »â „â Ž" }, { "input": "reformers", "output": "â —â ‘â ¿â â »â Ž" }, { "input": "reforming", "output": "â —â ‘â ¿â â Œ" }, { "input": "reforms", "output": "â —â ‘â ¿â â Ž" }, { "input": "reformulate", "output": "â —â ‘â ¿â â ¥â ‡â â žâ ‘" }, { "input": "reformulated", "output": "â —â ‘â ¿â â ¥â ‡â â žâ «" }, { "input": "reformulates", "output": "â —â ‘â ¿â â ¥â ‡â â žâ ‘â Ž" }, { "input": "reformulating", "output": "â —â ‘â ¿â â ¥â ‡â â žâ Œ" }, { "input": "reformulation", "output": "â —â ‘â ¿â â ¥â ‡â  â " }, { "input": "reformulation's", "output": "â —â ‘â ¿â â ¥â ‡â  â â „â Ž" }, { "input": "reformulations", "output": "â —â ‘â ¿â â ¥â ‡â  â â Ž" }, { "input": "refortified", "output": "â —â ‘â ¿â žâ Šâ ‹â Šâ «" }, { "input": "refortifies", "output": "â —â ‘â ¿â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "refortify", "output": "â —â ‘â ¿â žâ Šâ ‹â ½" }, { "input": "refortifying", "output": "⠗⠑⠿⠞⠊⠋⠽⠌" }, { "input": "refract", "output": "â —â ‘â ‹â —â â ‰â ž" }, { "input": "refracted", "output": "â —â ‘â ‹â —â â ‰â žâ «" }, { "input": "refracting", "output": "â —â ‘â ‹â —â â ‰â žâ Œ" }, { "input": "refraction", "output": "â —â ‘â ‹â —â â ‰â °â " }, { "input": "refraction's", "output": "â —â ‘â ‹â —â â ‰â °â â „â Ž" }, { "input": "refractive", "output": "â —â ‘â ‹â —â â ‰â žâ Šâ §â ‘" }, { "input": "refractories", "output": "â —â ‘â ‹â —â â ‰â žâ •â —â Šâ ‘â Ž" }, { "input": "refractory", "output": "â —â ‘â ‹â —â â ‰â žâ •â —â ½" }, { "input": "refractory's", "output": "â —â ‘â ‹â —â â ‰â žâ •⠗⠽⠄⠎" }, { "input": "refracts", "output": "â —â ‘â ‹â —â â ‰â žâ Ž" }, { "input": "refrain", "output": "â —â ‘â ‹â —â â ”" }, { "input": "refrain's", "output": "â —â ‘â ‹â —â â ”â „â Ž" }, { "input": "refrained", "output": "â —â ‘â ‹â —â â ”â «" }, { "input": "refraining", "output": "â —â ‘â ‹â —â â ”â Œ" }, { "input": "refrains", "output": "â —â ‘â ‹â —â â ”â Ž" }, { "input": "refreeze", "output": "⠗⠑⠋⠗⠑⠑⠵⠑" }, { "input": "refreezes", "output": "⠗⠑⠋⠗⠑⠑⠵⠑⠎" }, { "input": "refreezing", "output": "⠗⠑⠋⠗⠑⠑⠵⠌" }, { "input": "refresh", "output": "â —â ‘â ‹â —â ‘â ©" }, { "input": "refreshed", "output": "â —â ‘â ‹â —â ‘â ©â «" }, { "input": "refresher", "output": "â —â ‘â ‹â —â ‘â ©â »" }, { "input": "refresher's", "output": "⠗⠑⠋⠗⠑⠩⠻⠄⠎" }, { "input": "refreshers", "output": "⠗⠑⠋⠗⠑⠩⠻⠎" }, { "input": "refreshes", "output": "â —â ‘â ‹â —â ‘â ©â ‘â Ž" }, { "input": "refreshing", "output": "â —â ‘â ‹â —â ‘â ©â Œ" }, { "input": "refreshingly", "output": "⠗⠑⠋⠗⠑⠩⠌⠇⠽" }, { "input": "refreshment", "output": "â —â ‘â ‹â —â ‘â ©â °â ž" }, { "input": "refreshment's", "output": "â —â ‘â ‹â —â ‘â ©â °â žâ „â Ž" }, { "input": "refreshments", "output": "â —â ‘â ‹â —â ‘â ©â °â žâ Ž" }, { "input": "refreshments's", "output": "â —â ‘â ‹â —â ‘â ©â °â žâ Žâ „â Ž" }, { "input": "refrigerant", "output": "⠗⠑⠋⠗⠊⠛⠻â â â ž" }, { "input": "refrigerant's", "output": "⠗⠑⠋⠗⠊⠛⠻â â â žâ „â Ž" }, { "input": "refrigerants", "output": "⠗⠑⠋⠗⠊⠛⠻â â â žâ Ž" }, { "input": "refrigerate", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ ‘" }, { "input": "refrigerated", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ «" }, { "input": "refrigerates", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ ‘â Ž" }, { "input": "refrigerating", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ Œ" }, { "input": "refrigeration", "output": "⠗⠑⠋⠗⠊⠛⠻⠠â " }, { "input": "refrigeration's", "output": "⠗⠑⠋⠗⠊⠛⠻⠠â â „â Ž" }, { "input": "refrigerator", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ •â —" }, { "input": "refrigerator's", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ •â —â „â Ž" }, { "input": "refrigerators", "output": "⠗⠑⠋⠗⠊⠛⠻â â žâ •â —â Ž" }, { "input": "refroze", "output": "⠗⠑⠋⠗⠕⠵⠑" }, { "input": "refrozen", "output": "⠗⠑⠋⠗⠕⠵⠢" }, { "input": "refs", "output": "â —â ‘â ‹â Ž" }, { "input": "refuel", "output": "⠗⠑⠋⠥⠑⠇" }, { "input": "refueled", "output": "⠗⠑⠋⠥⠑⠇⠫" }, { "input": "refueling", "output": "⠗⠑⠋⠥⠑⠇⠌" }, { "input": "refuels", "output": "⠗⠑⠋⠥⠑⠇⠎" }, { "input": "refuge", "output": "⠗⠑⠋⠥⠛⠑" }, { "input": "refuge's", "output": "⠗⠑⠋⠥⠛⠑⠄⠎" }, { "input": "refugee", "output": "⠗⠑⠋⠥⠛⠑⠑" }, { "input": "refugee's", "output": "⠗⠑⠋⠥⠛⠑⠑⠄⠎" }, { "input": "refugees", "output": "⠗⠑⠋⠥⠛⠑⠑⠎" }, { "input": "refuges", "output": "⠗⠑⠋⠥⠛⠑⠎" }, { "input": "refulgence", "output": "⠗⠑⠋⠥⠇⠛⠰⠑" }, { "input": "refulgence's", "output": "⠗⠑⠋⠥⠇⠛⠰⠑⠄⠎" }, { "input": "refulgent", "output": "⠗⠑⠋⠥⠇⠛⠢⠞" }, { "input": "refund", "output": "â —â ‘â ‹â ¥â â ™" }, { "input": "refund's", "output": "â —â ‘â ‹â ¥â â ™â „â Ž" }, { "input": "refundable", "output": "â —â ‘â ‹â ¥â â ™â â ¼" }, { "input": "refunded", "output": "â —â ‘â ‹â ¥â â ™â «" }, { "input": "refunding", "output": "â —â ‘â ‹â ¥â â ™â Œ" }, { "input": "refunds", "output": "â —â ‘â ‹â ¥â â ™â Ž" }, { "input": "refurbish", "output": "⠗⠑⠋⠥⠗⠃⠊⠩" }, { "input": "refurbished", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠫" }, { "input": "refurbishes", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠑⠎" }, { "input": "refurbishing", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠌" }, { "input": "refurbishment", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠰⠞" }, { "input": "refurbishment's", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠰⠞⠄⠎" }, { "input": "refurbishments", "output": "⠗⠑⠋⠥⠗⠃⠊⠩⠰⠞⠎" }, { "input": "refurnish", "output": "⠗⠑⠋⠥⠗â â Šâ ©" }, { "input": "refurnished", "output": "⠗⠑⠋⠥⠗â â Šâ ©â «" }, { "input": "refurnishes", "output": "⠗⠑⠋⠥⠗â â Šâ ©â ‘â Ž" }, { "input": "refurnishing", "output": "⠗⠑⠋⠥⠗â â Šâ ©â Œ" }, { "input": "refusal", "output": "⠗⠑⠋⠥⠎â â ‡" }, { "input": "refusal's", "output": "⠗⠑⠋⠥⠎â â ‡â „â Ž" }, { "input": "refusals", "output": "⠗⠑⠋⠥⠎â â ‡â Ž" }, { "input": "refuse", "output": "⠗⠑⠋⠥⠎⠑" }, { "input": "refuse's", "output": "⠗⠑⠋⠥⠎⠑⠄⠎" }, { "input": "refused", "output": "⠗⠑⠋⠥⠎⠫" }, { "input": "refuses", "output": "⠗⠑⠋⠥⠎⠑⠎" }, { "input": "refusing", "output": "⠗⠑⠋⠥⠎⠌" }, { "input": "refutation", "output": "⠗⠑⠋⠥⠞⠠â " }, { "input": "refutation's", "output": "⠗⠑⠋⠥⠞⠠â â „â Ž" }, { "input": "refutations", "output": "⠗⠑⠋⠥⠞⠠â â Ž" }, { "input": "refute", "output": "⠗⠑⠋⠥⠞⠑" }, { "input": "refuted", "output": "⠗⠑⠋⠥⠞⠫" }, { "input": "refuter", "output": "⠗⠑⠋⠥⠞⠻" }, { "input": "refuter's", "output": "⠗⠑⠋⠥⠞⠻⠄⠎" }, { "input": "refuters", "output": "⠗⠑⠋⠥⠞⠻⠎" }, { "input": "refutes", "output": "⠗⠑⠋⠥⠞⠑⠎" }, { "input": "refuting", "output": "⠗⠑⠋⠥⠞⠌" }, { "input": "regain", "output": "â —â ‘â ›â â ”" }, { "input": "regained", "output": "â —â ‘â ›â â ”â «" }, { "input": "regaining", "output": "â —â ‘â ›â â ”â Œ" }, { "input": "regains", "output": "â —â ‘â ›â â ”â Ž" }, { "input": "regal", "output": "â —â ‘â ›â â ‡" }, { "input": "regale", "output": "â —â ‘â ›â â ‡â ‘" }, { "input": "regaled", "output": "â —â ‘â ›â â ‡â «" }, { "input": "regalement", "output": "â —â ‘â ›â â ‡â ‘â °â ž" }, { "input": "regalement's", "output": "â —â ‘â ›â â ‡â ‘â °â žâ „â Ž" }, { "input": "regales", "output": "â —â ‘â ›â â ‡â ‘â Ž" }, { "input": "regalia", "output": "â —â ‘â ›â â ‡â Šâ " }, { "input": "regalia's", "output": "â —â ‘â ›â â ‡â Šâ â „â Ž" }, { "input": "regaling", "output": "â —â ‘â ›â â ‡â Œ" }, { "input": "regally", "output": "⠗⠑⠛⠠⠽" }, { "input": "regard", "output": "⠗⠑⠛⠜⠙" }, { "input": "regard's", "output": "⠗⠑⠛⠜⠙⠄⠎" }, { "input": "regarded", "output": "⠗⠑⠛⠜⠙⠫" }, { "input": "regarding", "output": "⠗⠑⠛⠜⠙⠌" }, { "input": "regardless", "output": "⠗⠑⠛⠜⠙⠨⠎" }, { "input": "regards", "output": "⠗⠑⠛⠜⠙⠎" }, { "input": "regards's", "output": "⠗⠑⠛⠜⠙⠎⠄⠎" }, { "input": "regather", "output": "â —â ‘â ›â â ®â —" }, { "input": "regathered", "output": "â —â ‘â ›â â ®â —â «" }, { "input": "regathering", "output": "â —â ‘â ›â â ®â —â Œ" }, { "input": "regathers", "output": "â —â ‘â ›â â ®â —â Ž" }, { "input": "regatta", "output": "â —â ‘â ›â â žâ žâ " }, { "input": "regatta's", "output": "â —â ‘â ›â â žâ žâ â „â Ž" }, { "input": "regattas", "output": "â —â ‘â ›â â žâ žâ â Ž" }, { "input": "regencies", "output": "⠗⠑⠛⠢⠉⠊⠑⠎" }, { "input": "regency", "output": "⠗⠑⠛⠢⠉⠽" }, { "input": "regency's", "output": "⠗⠑⠛⠢⠉⠽⠄⠎" }, { "input": "regeneracy", "output": "⠗⠑⠛⠢⠻â â ‰â ½" }, { "input": "regeneracy's", "output": "⠗⠑⠛⠢⠻â â ‰â ½â „â Ž" }, { "input": "regenerate", "output": "⠗⠑⠛⠢⠻â â žâ ‘" }, { "input": "regenerated", "output": "⠗⠑⠛⠢⠻â â žâ «" }, { "input": "regenerates", "output": "⠗⠑⠛⠢⠻â â žâ ‘â Ž" }, { "input": "regenerating", "output": "⠗⠑⠛⠢⠻â â žâ Œ" }, { "input": "regeneration", "output": "⠗⠑⠛⠢⠻⠠â " }, { "input": "regeneration's", "output": "⠗⠑⠛⠢⠻⠠â â „â Ž" }, { "input": "regenerative", "output": "⠗⠑⠛⠢⠻â â žâ Šâ §â ‘" }, { "input": "regent", "output": "⠗⠑⠛⠢⠞" }, { "input": "regent's", "output": "⠗⠑⠛⠢⠞⠄⠎" }, { "input": "regents", "output": "⠗⠑⠛⠢⠞⠎" }, { "input": "reggae", "output": "â —â ‘â ¶â â ‘" }, { "input": "reggae's", "output": "â —â ‘â ¶â â ‘â „â Ž" }, { "input": "regicide", "output": "⠗⠑⠛⠊⠉⠊⠙⠑" }, { "input": "regicide's", "output": "⠗⠑⠛⠊⠉⠊⠙⠑⠄⠎" }, { "input": "regicides", "output": "⠗⠑⠛⠊⠉⠊⠙⠑⠎" }, { "input": "regime", "output": "⠗⠑⠛⠊â â ‘" }, { "input": "regime's", "output": "⠗⠑⠛⠊â â ‘â „â Ž" }, { "input": "regimen", "output": "⠗⠑⠛⠊â â ¢" }, { "input": "regimen's", "output": "⠗⠑⠛⠊â â ¢â „â Ž" }, { "input": "regimens", "output": "⠗⠑⠛⠊â â ¢â Ž" }, { "input": "regiment", "output": "⠗⠑⠛⠊⠰⠞" }, { "input": "regiment's", "output": "⠗⠑⠛⠊⠰⠞⠄⠎" }, { "input": "regimental", "output": "⠗⠑⠛⠊⠰⠞â â ‡" }, { "input": "regimentation", "output": "⠗⠑⠛⠊⠰⠞⠠â " }, { "input": "regimentation's", "output": "⠗⠑⠛⠊⠰⠞⠠â â „â Ž" }, { "input": "regimented", "output": "⠗⠑⠛⠊⠰⠞⠫" }, { "input": "regimenting", "output": "⠗⠑⠛⠊⠰⠞⠌" }, { "input": "regiments", "output": "⠗⠑⠛⠊⠰⠞⠎" }, { "input": "regimes", "output": "⠗⠑⠛⠊â â ‘â Ž" }, { "input": "region", "output": "⠗⠑⠛⠊⠕â " }, { "input": "region's", "output": "⠗⠑⠛⠊⠕â â „â Ž" }, { "input": "regional", "output": "⠗⠑⠛⠊⠕â â â ‡" }, { "input": "regionalism", "output": "⠗⠑⠛⠊⠕â â â ‡â Šâ Žâ " }, { "input": "regionalism's", "output": "⠗⠑⠛⠊⠕â â â ‡â Šâ Žâ â „â Ž" }, { "input": "regionalisms", "output": "⠗⠑⠛⠊⠕â â â ‡â Šâ Žâ â Ž" }, { "input": "regionally", "output": "⠗⠑⠛⠊⠕â â  â ½" }, { "input": "regions", "output": "⠗⠑⠛⠊⠕â â Ž" }, { "input": "register", "output": "⠗⠑⠛⠊⠌⠻" }, { "input": "register's", "output": "⠗⠑⠛⠊⠌⠻⠄⠎" }, { "input": "registered", "output": "⠗⠑⠛⠊⠌⠻⠫" }, { "input": "registering", "output": "⠗⠑⠛⠊⠌⠻⠌" }, { "input": "registers", "output": "⠗⠑⠛⠊⠌⠻⠎" }, { "input": "registrant", "output": "⠗⠑⠛⠊⠌⠗â â â ž" }, { "input": "registrant's", "output": "⠗⠑⠛⠊⠌⠗â â â žâ „â Ž" }, { "input": "registrants", "output": "⠗⠑⠛⠊⠌⠗â â â žâ Ž" }, { "input": "registrar", "output": "⠗⠑⠛⠊⠌⠗⠜" }, { "input": "registrar's", "output": "⠗⠑⠛⠊⠌⠗⠜⠄⠎" }, { "input": "registrars", "output": "⠗⠑⠛⠊⠌⠗⠜⠎" }, { "input": "registration", "output": "⠗⠑⠛⠊⠌⠗⠠â " }, { "input": "registration's", "output": "⠗⠑⠛⠊⠌⠗⠠â â „â Ž" }, { "input": "registrations", "output": "⠗⠑⠛⠊⠌⠗⠠â â Ž" }, { "input": "registries", "output": "⠗⠑⠛⠊⠌⠗⠊⠑⠎" }, { "input": "registry", "output": "⠗⠑⠛⠊⠌⠗⠽" }, { "input": "registry's", "output": "⠗⠑⠛⠊⠌⠗⠽⠄⠎" }, { "input": "regnant", "output": "â —â ‘â ›â â â â ž" }, { "input": "regrade", "output": "⠗⠑⠛⠗â â ™â ‘" }, { "input": "regraded", "output": "⠗⠑⠛⠗â â ™â «" }, { "input": "regrades", "output": "⠗⠑⠛⠗â â ™â ‘â Ž" }, { "input": "regrading", "output": "⠗⠑⠛⠗â â ™â Œ" }, { "input": "regress", "output": "⠗⠑⠛⠗⠑⠎⠎" }, { "input": "regress's", "output": "⠗⠑⠛⠗⠑⠎⠎⠄⠎" }, { "input": "regressed", "output": "⠗⠑⠛⠗⠑⠎⠎⠫" }, { "input": "regresses", "output": "⠗⠑⠛⠗⠑⠎⠎⠑⠎" }, { "input": "regressing", "output": "⠗⠑⠛⠗⠑⠎⠎⠌" }, { "input": "regression", "output": "⠗⠑⠛⠗⠑⠎⠨â " }, { "input": "regression's", "output": "⠗⠑⠛⠗⠑⠎⠨â â „â Ž" }, { "input": "regressions", "output": "⠗⠑⠛⠗⠑⠎⠨â â Ž" }, { "input": "regressive", "output": "⠗⠑⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "regret", "output": "⠗⠑⠛⠗⠑⠞" }, { "input": "regret's", "output": "⠗⠑⠛⠗⠑⠞⠄⠎" }, { "input": "regretful", "output": "⠗⠑⠛⠗⠑⠞⠰⠇" }, { "input": "regretfully", "output": "⠗⠑⠛⠗⠑⠞⠰⠇⠇⠽" }, { "input": "regrets", "output": "⠗⠑⠛⠗⠑⠞⠎" }, { "input": "regrettable", "output": "⠗⠑⠛⠗⠑⠞⠞â â ¼" }, { "input": "regrettably", "output": "⠗⠑⠛⠗⠑⠞⠞â â ƒâ ‡â ½" }, { "input": "regretted", "output": "⠗⠑⠛⠗⠑⠞⠞⠫" }, { "input": "regretting", "output": "⠗⠑⠛⠗⠑⠞⠞⠌" }, { "input": "regrew", "output": "⠗⠑⠛⠗⠑⠺" }, { "input": "regrind", "output": "⠗⠑⠛⠗⠔⠙" }, { "input": "regrinding", "output": "⠗⠑⠛⠗⠔⠙⠌" }, { "input": "regrinds", "output": "⠗⠑⠛⠗⠔⠙⠎" }, { "input": "reground", "output": "⠗⠑⠛⠗⠨⠙" }, { "input": "regroup", "output": "⠗⠑⠛⠗⠳â " }, { "input": "regrouped", "output": "⠗⠑⠛⠗⠳â â «" }, { "input": "regrouping", "output": "⠗⠑⠛⠗⠳â â Œ" }, { "input": "regroups", "output": "⠗⠑⠛⠗⠳â â Ž" }, { "input": "regrow", "output": "⠗⠑⠛⠗⠪" }, { "input": "regrowing", "output": "⠗⠑⠛⠗⠪⠌" }, { "input": "regrown", "output": "⠗⠑⠛⠗⠪â " }, { "input": "regrows", "output": "⠗⠑⠛⠗⠪⠎" }, { "input": "regrowth", "output": "⠗⠑⠛⠗⠪⠹" }, { "input": "regrowth's", "output": "⠗⠑⠛⠗⠪⠹⠄⠎" }, { "input": "regular", "output": "⠗⠑⠛⠥⠇⠜" }, { "input": "regular's", "output": "⠗⠑⠛⠥⠇⠜⠄⠎" }, { "input": "regularity", "output": "⠗⠑⠛⠥⠇⠜⠰⠽" }, { "input": "regularity's", "output": "⠗⠑⠛⠥⠇⠜⠰⠽⠄⠎" }, { "input": "regularization", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠠â " }, { "input": "regularization's", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠠â â „â Ž" }, { "input": "regularize", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠑" }, { "input": "regularized", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠫" }, { "input": "regularizes", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠑⠎" }, { "input": "regularizing", "output": "⠗⠑⠛⠥⠇⠜⠊⠵⠌" }, { "input": "regularly", "output": "⠗⠑⠛⠥⠇⠜⠇⠽" }, { "input": "regulars", "output": "⠗⠑⠛⠥⠇⠜⠎" }, { "input": "regulate", "output": "⠗⠑⠛⠥⠇â â žâ ‘" }, { "input": "regulated", "output": "⠗⠑⠛⠥⠇â â žâ «" }, { "input": "regulates", "output": "⠗⠑⠛⠥⠇â â žâ ‘â Ž" }, { "input": "regulating", "output": "⠗⠑⠛⠥⠇â â žâ Œ" }, { "input": "regulation", "output": "⠗⠑⠛⠥⠇⠠â " }, { "input": "regulation's", "output": "⠗⠑⠛⠥⠇⠠â â „â Ž" }, { "input": "regulations", "output": "⠗⠑⠛⠥⠇⠠â â Ž" }, { "input": "regulative", "output": "⠗⠑⠛⠥⠇â â žâ Šâ §â ‘" }, { "input": "regulator", "output": "⠗⠑⠛⠥⠇â â žâ •â —" }, { "input": "regulator's", "output": "⠗⠑⠛⠥⠇â â žâ •â —â „â Ž" }, { "input": "regulators", "output": "⠗⠑⠛⠥⠇â â žâ •â —â Ž" }, { "input": "regulatory", "output": "⠗⠑⠛⠥⠇â â žâ •â —â ½" }, { "input": "regurgitate", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ ‘" }, { "input": "regurgitated", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ «" }, { "input": "regurgitates", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ ‘â Ž" }, { "input": "regurgitating", "output": "⠗⠑⠛⠥⠗⠛⠊⠞â â žâ Œ" }, { "input": "regurgitation", "output": "⠗⠑⠛⠥⠗⠛⠊⠞⠠â " }, { "input": "regurgitation's", "output": "⠗⠑⠛⠥⠗⠛⠊⠞⠠â â „â Ž" }, { "input": "rehab", "output": "â —â ‘â “â â ƒ" }, { "input": "rehab's", "output": "â —â ‘â “â â ƒâ „â Ž" }, { "input": "rehabbed", "output": "â —â ‘â “â â †â «" }, { "input": "rehabbing", "output": "â —â ‘â “â â †â Œ" }, { "input": "rehabilitate", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ ‘" }, { "input": "rehabilitated", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ «" }, { "input": "rehabilitates", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ ‘â Ž" }, { "input": "rehabilitating", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ Œ" }, { "input": "rehabilitation", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ  â " }, { "input": "rehabilitation's", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ  â â „â Ž" }, { "input": "rehabilitative", "output": "â —â ‘â “â â ƒâ Šâ ‡â Šâ žâ â žâ Šâ §â ‘" }, { "input": "rehabs", "output": "â —â ‘â “â â ƒâ Ž" }, { "input": "rehang", "output": "â —â ‘â “â â â ›" }, { "input": "rehanged", "output": "â —â ‘â “â â â ›â «" }, { "input": "rehanging", "output": "â —â ‘â “â â â ›â Œ" }, { "input": "rehangs", "output": "â —â ‘â “â â â ›â Ž" }, { "input": "rehash", "output": "â —â ‘â “â â ©" }, { "input": "rehash's", "output": "â —â ‘â “â â ©â „â Ž" }, { "input": "rehashed", "output": "â —â ‘â “â â ©â «" }, { "input": "rehashes", "output": "â —â ‘â “â â ©â ‘â Ž" }, { "input": "rehashing", "output": "â —â ‘â “â â ©â Œ" }, { "input": "rehear", "output": "â —â ‘â “â ‘â œ" }, { "input": "reheard", "output": "⠗⠑⠓⠑⠜⠙" }, { "input": "rehearing", "output": "⠗⠑⠓⠑⠜⠌" }, { "input": "rehearing's", "output": "⠗⠑⠓⠑⠜⠌⠄⠎" }, { "input": "rehearings", "output": "⠗⠑⠓⠑⠜⠌⠎" }, { "input": "rehears", "output": "⠗⠑⠓⠑⠜⠎" }, { "input": "rehearsal", "output": "⠗⠑⠓⠑⠜⠎â â ‡" }, { "input": "rehearsal's", "output": "⠗⠑⠓⠑⠜⠎â â ‡â „â Ž" }, { "input": "rehearsals", "output": "⠗⠑⠓⠑⠜⠎â â ‡â Ž" }, { "input": "rehearse", "output": "⠗⠑⠓⠑⠜⠎⠑" }, { "input": "rehearsed", "output": "⠗⠑⠓⠑⠜⠎⠫" }, { "input": "rehearses", "output": "⠗⠑⠓⠑⠜⠎⠑⠎" }, { "input": "rehearsing", "output": "⠗⠑⠓⠑⠜⠎⠌" }, { "input": "reheat", "output": "â —â ‘â “â ‚â ž" }, { "input": "reheated", "output": "â —â ‘â “â ‚â žâ «" }, { "input": "reheating", "output": "â —â ‘â “â ‚â žâ Œ" }, { "input": "reheats", "output": "â —â ‘â “â ‚â žâ Ž" }, { "input": "rehire", "output": "â —â ‘â “â Šâ —â ‘" }, { "input": "rehired", "output": "â —â ‘â “â Šâ —â «" }, { "input": "rehires", "output": "â —â ‘â “â Šâ —â ‘â Ž" }, { "input": "rehiring", "output": "â —â ‘â “â Šâ —â Œ" }, { "input": "rehung", "output": "â —â ‘â “â ¥â â ›" }, { "input": "reign", "output": "â —â ‘â Šâ ›â " }, { "input": "reign's", "output": "â —â ‘â Šâ ›â â „â Ž" }, { "input": "reigned", "output": "â —â ‘â Šâ ›â â «" }, { "input": "reigning", "output": "â —â ‘â Šâ ›â â Œ" }, { "input": "reignite", "output": "â —â ‘â Šâ ›â â Šâ žâ ‘" }, { "input": "reignited", "output": "â —â ‘â Šâ ›â â Šâ žâ «" }, { "input": "reignites", "output": "â —â ‘â Šâ ›â â Šâ žâ ‘â Ž" }, { "input": "reigniting", "output": "â —â ‘â Šâ ›â â Šâ žâ Œ" }, { "input": "reigns", "output": "â —â ‘â Šâ ›â â Ž" }, { "input": "reimbursable", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ â ¼" }, { "input": "reimburse", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘" }, { "input": "reimbursed", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ «" }, { "input": "reimbursement", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â °â ž" }, { "input": "reimbursement's", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â °â žâ „â Ž" }, { "input": "reimbursements", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â °â žâ Ž" }, { "input": "reimburses", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ ‘â Ž" }, { "input": "reimbursing", "output": "â —â ‘â Šâ â ƒâ ¥â —â Žâ Œ" }, { "input": "reimpose", "output": "â —â ‘â Šâ â â •â Žâ ‘" }, { "input": "reimposed", "output": "â —â ‘â Šâ â â •â Žâ «" }, { "input": "reimposes", "output": "â —â ‘â Šâ â â •â Žâ ‘â Ž" }, { "input": "reimposing", "output": "â —â ‘â Šâ â â •â Žâ Œ" }, { "input": "rein", "output": "â —â ‘â ”" }, { "input": "rein's", "output": "⠗⠑⠔⠄⠎" }, { "input": "reincarnate", "output": "⠗⠑⠔⠉⠜â â â žâ ‘" }, { "input": "reincarnated", "output": "⠗⠑⠔⠉⠜â â â žâ «" }, { "input": "reincarnates", "output": "⠗⠑⠔⠉⠜â â â žâ ‘â Ž" }, { "input": "reincarnating", "output": "⠗⠑⠔⠉⠜â â â žâ Œ" }, { "input": "reincarnation", "output": "⠗⠑⠔⠉⠜â â  â " }, { "input": "reincarnation's", "output": "⠗⠑⠔⠉⠜â â  â â „â Ž" }, { "input": "reincarnations", "output": "⠗⠑⠔⠉⠜â â  â â Ž" }, { "input": "reincorporate", "output": "⠗⠑⠔⠉⠕⠗â â •â —â â žâ ‘" }, { "input": "reincorporated", "output": "⠗⠑⠔⠉⠕⠗â â •â —â â žâ «" }, { "input": "reincorporates", "output": "⠗⠑⠔⠉⠕⠗â â •â —â â žâ ‘â Ž" }, { "input": "reincorporating", "output": "⠗⠑⠔⠉⠕⠗â â •â —â â žâ Œ" }, { "input": "reincorporation", "output": "⠗⠑⠔⠉⠕⠗â â •â —â  â " }, { "input": "reincorporation's", "output": "⠗⠑⠔⠉⠕⠗â â •â —â  â â „â Ž" }, { "input": "reindeer", "output": "⠗⠑⠔⠙⠑⠻" }, { "input": "reindeer's", "output": "⠗⠑⠔⠙⠑⠻⠄⠎" }, { "input": "reined", "output": "⠗⠑⠔⠫" }, { "input": "reinfect", "output": "⠗⠑⠔⠋⠑⠉⠞" }, { "input": "reinfected", "output": "⠗⠑⠔⠋⠑⠉⠞⠫" }, { "input": "reinfecting", "output": "⠗⠑⠔⠋⠑⠉⠞⠌" }, { "input": "reinfection", "output": "⠗⠑⠔⠋⠑⠉⠰â " }, { "input": "reinfection's", "output": "⠗⠑⠔⠋⠑⠉⠰â â „â Ž" }, { "input": "reinfections", "output": "⠗⠑⠔⠋⠑⠉⠰â â Ž" }, { "input": "reinfects", "output": "⠗⠑⠔⠋⠑⠉⠞⠎" }, { "input": "reinforce", "output": "⠗⠑⠔⠿⠉⠑" }, { "input": "reinforced", "output": "⠗⠑⠔⠿⠉⠫" }, { "input": "reinforcement", "output": "⠗⠑⠔⠿⠉⠑⠰⠞" }, { "input": "reinforcement's", "output": "⠗⠑⠔⠿⠉⠑⠰⠞⠄⠎" }, { "input": "reinforcements", "output": "⠗⠑⠔⠿⠉⠑⠰⠞⠎" }, { "input": "reinforces", "output": "⠗⠑⠔⠿⠉⠑⠎" }, { "input": "reinforcing", "output": "⠗⠑⠔⠿⠉⠌" }, { "input": "reining", "output": "⠗⠑⠔⠌" }, { "input": "reinitialize", "output": "⠗⠑⠔⠊⠞⠊â â ‡â Šâ µâ ‘" }, { "input": "reinitialized", "output": "⠗⠑⠔⠊⠞⠊â â ‡â Šâ µâ «" }, { "input": "reinoculate", "output": "⠗⠑⠔⠕⠉⠥⠇â â žâ ‘" }, { "input": "reinoculated", "output": "⠗⠑⠔⠕⠉⠥⠇â â žâ «" }, { "input": "reinoculates", "output": "⠗⠑⠔⠕⠉⠥⠇â â žâ ‘â Ž" }, { "input": "reinoculating", "output": "⠗⠑⠔⠕⠉⠥⠇â â žâ Œ" }, { "input": "reins", "output": "⠗⠑⠔⠎" }, { "input": "reinsert", "output": "⠗⠑⠔⠎⠻⠞" }, { "input": "reinserted", "output": "⠗⠑⠔⠎⠻⠞⠫" }, { "input": "reinserting", "output": "⠗⠑⠔⠎⠻⠞⠌" }, { "input": "reinsertion", "output": "⠗⠑⠔⠎⠻⠰â " }, { "input": "reinsertion's", "output": "⠗⠑⠔⠎⠻⠰â â „â Ž" }, { "input": "reinserts", "output": "⠗⠑⠔⠎⠻⠞⠎" }, { "input": "reinspect", "output": "⠗⠑⠔⠎â â ‘⠉⠞" }, { "input": "reinspected", "output": "⠗⠑⠔⠎â â ‘⠉⠞⠫" }, { "input": "reinspecting", "output": "⠗⠑⠔⠎â â ‘⠉⠞⠌" }, { "input": "reinspects", "output": "⠗⠑⠔⠎â â ‘⠉⠞⠎" }, { "input": "reinstate", "output": "⠗⠑⠔⠌â â žâ ‘" }, { "input": "reinstated", "output": "⠗⠑⠔⠌â â žâ «" }, { "input": "reinstatement", "output": "⠗⠑⠔⠌â â žâ ‘â °â ž" }, { "input": "reinstatement's", "output": "⠗⠑⠔⠌â â žâ ‘â °â žâ „â Ž" }, { "input": "reinstates", "output": "⠗⠑⠔⠌â â žâ ‘â Ž" }, { "input": "reinstating", "output": "⠗⠑⠔⠌â â žâ Œ" }, { "input": "reintegrate", "output": "⠗⠑⠔⠞⠑⠛⠗â â žâ ‘" }, { "input": "reintegrated", "output": "⠗⠑⠔⠞⠑⠛⠗â â žâ «" }, { "input": "reintegrates", "output": "⠗⠑⠔⠞⠑⠛⠗â â žâ ‘â Ž" }, { "input": "reintegrating", "output": "⠗⠑⠔⠞⠑⠛⠗â â žâ Œ" }, { "input": "reintegration", "output": "⠗⠑⠔⠞⠑⠛⠗⠠â " }, { "input": "reintegration's", "output": "⠗⠑⠔⠞⠑⠛⠗⠠â â „â Ž" }, { "input": "reinterpret", "output": "⠗⠑⠔⠞⠻â â —â ‘â ž" }, { "input": "reinterpretation", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ  â " }, { "input": "reinterpretation's", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ  â â „â Ž" }, { "input": "reinterpretations", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ  â â Ž" }, { "input": "reinterpreted", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ «" }, { "input": "reinterpreting", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ Œ" }, { "input": "reinterprets", "output": "⠗⠑⠔⠞⠻â â —â ‘â žâ Ž" }, { "input": "reintroduce", "output": "⠗⠑⠔⠞⠗⠕⠙⠥⠉⠑" }, { "input": "reintroduced", "output": "⠗⠑⠔⠞⠗⠕⠙⠥⠉⠫" }, { "input": "reintroduces", "output": "⠗⠑⠔⠞⠗⠕⠙⠥⠉⠑⠎" }, { "input": "reintroducing", "output": "⠗⠑⠔⠞⠗⠕⠙⠥⠉⠌" }, { "input": "reintroduction", "output": "⠗⠑⠔⠞⠗⠕⠙⠥⠉⠰â " }, { "input": "reintroduction's", "output": "⠗⠑⠔⠞⠗⠕⠙⠥⠉⠰â â „â Ž" }, { "input": "reinvent", "output": "⠗⠑⠔⠧⠢⠞" }, { "input": "reinvented", "output": "⠗⠑⠔⠧⠢⠞⠫" }, { "input": "reinventing", "output": "⠗⠑⠔⠧⠢⠞⠌" }, { "input": "reinvention", "output": "⠗⠑⠔⠧⠢⠰â " }, { "input": "reinvention's", "output": "⠗⠑⠔⠧⠢⠰â â „â Ž" }, { "input": "reinventions", "output": "⠗⠑⠔⠧⠢⠰â â Ž" }, { "input": "reinvents", "output": "⠗⠑⠔⠧⠢⠞⠎" }, { "input": "reinvest", "output": "⠗⠑⠔⠧⠑⠌" }, { "input": "reinvested", "output": "⠗⠑⠔⠧⠑⠌⠫" }, { "input": "reinvesting", "output": "⠗⠑⠔⠧⠑⠌⠌" }, { "input": "reinvestment", "output": "⠗⠑⠔⠧⠑⠌⠰⠞" }, { "input": "reinvestment's", "output": "⠗⠑⠔⠧⠑⠌⠰⠞⠄⠎" }, { "input": "reinvests", "output": "⠗⠑⠔⠧⠑⠌⠎" }, { "input": "reinvigorate", "output": "⠗⠑⠔⠧⠊⠛⠕⠗â â žâ ‘" }, { "input": "reinvigorated", "output": "⠗⠑⠔⠧⠊⠛⠕⠗â â žâ «" }, { "input": "reinvigorates", "output": "⠗⠑⠔⠧⠊⠛⠕⠗â â žâ ‘â Ž" }, { "input": "reinvigorating", "output": "⠗⠑⠔⠧⠊⠛⠕⠗â â žâ Œ" }, { "input": "reissue", "output": "⠗⠑⠊⠎⠎⠥⠑" }, { "input": "reissue's", "output": "⠗⠑⠊⠎⠎⠥⠑⠄⠎" }, { "input": "reissued", "output": "⠗⠑⠊⠎⠎⠥⠫" }, { "input": "reissues", "output": "⠗⠑⠊⠎⠎⠥⠑⠎" }, { "input": "reissuing", "output": "⠗⠑⠊⠎⠎⠥⠌" }, { "input": "reiterate", "output": "â —â ‘â Šâ žâ »â â žâ ‘" }, { "input": "reiterated", "output": "â —â ‘â Šâ žâ »â â žâ «" }, { "input": "reiterates", "output": "â —â ‘â Šâ žâ »â â žâ ‘â Ž" }, { "input": "reiterating", "output": "â —â ‘â Šâ žâ »â â žâ Œ" }, { "input": "reiteration", "output": "⠗⠑⠊⠞⠻⠠â " }, { "input": "reiteration's", "output": "⠗⠑⠊⠞⠻⠠â â „â Ž" }, { "input": "reiterations", "output": "⠗⠑⠊⠞⠻⠠â â Ž" }, { "input": "reiterative", "output": "â —â ‘â Šâ žâ »â â žâ Šâ §â ‘" }, { "input": "reject", "output": "⠗⠑⠚⠑⠉⠞" }, { "input": "reject's", "output": "⠗⠑⠚⠑⠉⠞⠄⠎" }, { "input": "rejected", "output": "⠗⠑⠚⠑⠉⠞⠫" }, { "input": "rejecting", "output": "⠗⠑⠚⠑⠉⠞⠌" }, { "input": "rejection", "output": "⠗⠑⠚⠑⠉⠰â " }, { "input": "rejection's", "output": "⠗⠑⠚⠑⠉⠰â â „â Ž" }, { "input": "rejections", "output": "⠗⠑⠚⠑⠉⠰â â Ž" }, { "input": "rejects", "output": "⠗⠑⠚⠑⠉⠞⠎" }, { "input": "rejoice", "output": "â —â šâ ‰" }, { "input": "rejoiced", "output": "⠗⠚⠉⠙" }, { "input": "rejoices", "output": "⠗⠚⠉⠎" }, { "input": "rejoicing", "output": "⠗⠚⠉⠛" }, { "input": "rejoicing's", "output": "⠗⠚⠉⠛⠄⠎" }, { "input": "rejoicings", "output": "⠗⠚⠉⠛⠎" }, { "input": "rejoin", "output": "â —â ‘â šâ •â ”" }, { "input": "rejoinder", "output": "⠗⠑⠚⠕⠔⠙⠻" }, { "input": "rejoinder's", "output": "⠗⠑⠚⠕⠔⠙⠻⠄⠎" }, { "input": "rejoinders", "output": "⠗⠑⠚⠕⠔⠙⠻⠎" }, { "input": "rejoined", "output": "⠗⠑⠚⠕⠔⠫" }, { "input": "rejoining", "output": "⠗⠑⠚⠕⠔⠌" }, { "input": "rejoins", "output": "⠗⠑⠚⠕⠔⠎" }, { "input": "rejudge", "output": "⠗⠑⠚⠥⠙⠛⠑" }, { "input": "rejudged", "output": "⠗⠑⠚⠥⠙⠛⠫" }, { "input": "rejudges", "output": "⠗⠑⠚⠥⠙⠛⠑⠎" }, { "input": "rejudging", "output": "⠗⠑⠚⠥⠙⠛⠌" }, { "input": "rejuvenate", "output": "⠗⠑⠚⠥⠧⠢â â žâ ‘" }, { "input": "rejuvenated", "output": "⠗⠑⠚⠥⠧⠢â â žâ «" }, { "input": "rejuvenates", "output": "⠗⠑⠚⠥⠧⠢â â žâ ‘â Ž" }, { "input": "rejuvenating", "output": "⠗⠑⠚⠥⠧⠢â â žâ Œ" }, { "input": "rejuvenation", "output": "⠗⠑⠚⠥⠧⠢⠠â " }, { "input": "rejuvenation's", "output": "⠗⠑⠚⠥⠧⠢⠠â â „â Ž" }, { "input": "rekindle", "output": "⠗⠑⠅⠔⠙⠇⠑" }, { "input": "rekindled", "output": "⠗⠑⠅⠔⠙⠇⠫" }, { "input": "rekindles", "output": "⠗⠑⠅⠔⠙⠇⠑⠎" }, { "input": "rekindling", "output": "⠗⠑⠅⠔⠙⠇⠌" }, { "input": "relabel", "output": "â —â ‘â ‡â â ƒâ ‘â ‡" }, { "input": "relabeled", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠫" }, { "input": "relabeling", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠌" }, { "input": "relabels", "output": "â —â ‘â ‡â â ƒâ ‘⠇⠎" }, { "input": "relaid", "output": "â —â ‘â ‡â â Šâ ™" }, { "input": "relapse", "output": "â —â ‘â ‡â â â Žâ ‘" }, { "input": "relapse's", "output": "â —â ‘â ‡â â â Žâ ‘â „â Ž" }, { "input": "relapsed", "output": "â —â ‘â ‡â â â Žâ «" }, { "input": "relapses", "output": "â —â ‘â ‡â â â Žâ ‘â Ž" }, { "input": "relapsing", "output": "â —â ‘â ‡â â â Žâ Œ" }, { "input": "relate", "output": "â —â ‘â ‡â â žâ ‘" }, { "input": "related", "output": "â —â ‘â ‡â â žâ «" }, { "input": "relatedness's", "output": "â —â ‘â ‡â â žâ «â °â Žâ „â Ž" }, { "input": "relater", "output": "â —â ‘â ‡â â žâ »" }, { "input": "relater's", "output": "â —â ‘â ‡â â žâ »â „â Ž" }, { "input": "relaters", "output": "â —â ‘â ‡â â žâ »â Ž" }, { "input": "relates", "output": "â —â ‘â ‡â â žâ ‘â Ž" }, { "input": "relating", "output": "â —â ‘â ‡â â žâ Œ" }, { "input": "relation", "output": "⠗⠑⠇⠠â " }, { "input": "relation's", "output": "⠗⠑⠇⠠â â „â Ž" }, { "input": "relational", "output": "⠗⠑⠇⠠â â â ‡" }, { "input": "relations", "output": "⠗⠑⠇⠠â â Ž" }, { "input": "relationship", "output": "⠗⠑⠇⠠â â ©â Šâ " }, { "input": "relationship's", "output": "⠗⠑⠇⠠â â ©â Šâ â „â Ž" }, { "input": "relationships", "output": "⠗⠑⠇⠠â â ©â Šâ â Ž" }, { "input": "relative", "output": "â —â ‘â ‡â â žâ Šâ §â ‘" }, { "input": "relative's", "output": "â —â ‘â ‡â â žâ Šâ §â ‘â „â Ž" }, { "input": "relatively", "output": "â —â ‘â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "relatives", "output": "â —â ‘â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "relativism's", "output": "â —â ‘â ‡â â žâ Šâ §â Šâ Žâ â „â Ž" }, { "input": "relativistic", "output": "â —â ‘â ‡â â žâ Šâ §â Šâ Œâ Šâ ‰" }, { "input": "relativity", "output": "â —â ‘â ‡â â žâ Šâ §â °â ½" }, { "input": "relativity's", "output": "â —â ‘â ‡â â žâ Šâ §â °â ½â „â Ž" }, { "input": "relax", "output": "â —â ‘â ‡â â ­" }, { "input": "relaxant", "output": "â —â ‘â ‡â â ­â â â ž" }, { "input": "relaxant's", "output": "â —â ‘â ‡â â ­â â â žâ „â Ž" }, { "input": "relaxants", "output": "â —â ‘â ‡â â ­â â â žâ Ž" }, { "input": "relaxation", "output": "â —â ‘â ‡â â ­â  â " }, { "input": "relaxation's", "output": "â —â ‘â ‡â â ­â  â â „â Ž" }, { "input": "relaxations", "output": "â —â ‘â ‡â â ­â  â â Ž" }, { "input": "relaxed", "output": "â —â ‘â ‡â â ­â «" }, { "input": "relaxer", "output": "â —â ‘â ‡â â ­â »" }, { "input": "relaxer's", "output": "â —â ‘â ‡â â ­â »â „â Ž" }, { "input": "relaxers", "output": "â —â ‘â ‡â â ­â »â Ž" }, { "input": "relaxes", "output": "â —â ‘â ‡â â ­â ‘â Ž" }, { "input": "relaxing", "output": "â —â ‘â ‡â â ­â Œ" }, { "input": "relay", "output": "â —â ‘â ‡â â ½" }, { "input": "relay's", "output": "â —â ‘â ‡â â ½â „â Ž" }, { "input": "relayed", "output": "â —â ‘â ‡â â ½â «" }, { "input": "relaying", "output": "â —â ‘â ‡â â ½â Œ" }, { "input": "relays", "output": "â —â ‘â ‡â â ½â Ž" }, { "input": "relearn", "output": "⠗⠑⠇⠑⠜â " }, { "input": "relearned", "output": "⠗⠑⠇⠑⠜â â «" }, { "input": "relearning", "output": "⠗⠑⠇⠑⠜â â Œ" }, { "input": "relearns", "output": "⠗⠑⠇⠑⠜â â Ž" }, { "input": "releasable", "output": "⠗⠑⠇⠂⠎â â ¼" }, { "input": "release", "output": "⠗⠑⠇⠂⠎⠑" }, { "input": "release's", "output": "⠗⠑⠇⠂⠎⠑⠄⠎" }, { "input": "released", "output": "⠗⠑⠇⠂⠎⠫" }, { "input": "releases", "output": "⠗⠑⠇⠂⠎⠑⠎" }, { "input": "releasing", "output": "⠗⠑⠇⠂⠎⠌" }, { "input": "relegate", "output": "⠗⠑⠇⠑⠛â â žâ ‘" }, { "input": "relegated", "output": "⠗⠑⠇⠑⠛â â žâ «" }, { "input": "relegates", "output": "⠗⠑⠇⠑⠛â â žâ ‘â Ž" }, { "input": "relegating", "output": "⠗⠑⠇⠑⠛â â žâ Œ" }, { "input": "relegation", "output": "⠗⠑⠇⠑⠛⠠â " }, { "input": "relegation's", "output": "⠗⠑⠇⠑⠛⠠â â „â Ž" }, { "input": "relent", "output": "⠗⠑⠇⠢⠞" }, { "input": "relented", "output": "⠗⠑⠇⠢⠞⠫" }, { "input": "relenting", "output": "⠗⠑⠇⠢⠞⠌" }, { "input": "relentless", "output": "⠗⠑⠇⠢⠞⠨⠎" }, { "input": "relentlessly", "output": "⠗⠑⠇⠢⠞⠨⠎⠇⠽" }, { "input": "relentlessness", "output": "⠗⠑⠇⠢⠞⠨⠎⠰⠎" }, { "input": "relentlessness's", "output": "⠗⠑⠇⠢⠞⠨⠎⠰⠎⠄⠎" }, { "input": "relents", "output": "⠗⠑⠇⠢⠞⠎" }, { "input": "relevance", "output": "⠗⠑⠇⠑⠧⠨⠑" }, { "input": "relevance's", "output": "⠗⠑⠇⠑⠧⠨⠑⠄⠎" }, { "input": "relevancy", "output": "⠗⠑⠇⠑⠧â â â ‰â ½" }, { "input": "relevancy's", "output": "⠗⠑⠇⠑⠧â â â ‰â ½â „â Ž" }, { "input": "relevant", "output": "⠗⠑⠇⠑⠧â â â ž" }, { "input": "relevantly", "output": "⠗⠑⠇⠑⠧â â â žâ ‡â ½" }, { "input": "reliability", "output": "⠗⠑⠇⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "reliability's", "output": "⠗⠑⠇⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "reliable", "output": "⠗⠑⠇⠊â â ¼" }, { "input": "reliably", "output": "⠗⠑⠇⠊â â ƒâ ‡â ½" }, { "input": "reliance", "output": "⠗⠑⠇⠊⠨⠑" }, { "input": "reliance's", "output": "⠗⠑⠇⠊⠨⠑⠄⠎" }, { "input": "reliant", "output": "⠗⠑⠇⠊â â â ž" }, { "input": "relic", "output": "⠗⠑⠇⠊⠉" }, { "input": "relic's", "output": "⠗⠑⠇⠊⠉⠄⠎" }, { "input": "relics", "output": "⠗⠑⠇⠊⠉⠎" }, { "input": "relied", "output": "⠗⠑⠇⠊⠫" }, { "input": "relief", "output": "⠗⠑⠇⠊⠑⠋" }, { "input": "relief's", "output": "⠗⠑⠇⠊⠑⠋⠄⠎" }, { "input": "reliefs", "output": "⠗⠑⠇⠊⠑⠋⠎" }, { "input": "relies", "output": "⠗⠑⠇⠊⠑⠎" }, { "input": "relieve", "output": "⠗⠑⠇⠊⠑⠧⠑" }, { "input": "relieved", "output": "⠗⠑⠇⠊⠑⠧⠫" }, { "input": "reliever", "output": "⠗⠑⠇⠊⠑⠧⠻" }, { "input": "reliever's", "output": "⠗⠑⠇⠊⠑⠧⠻⠄⠎" }, { "input": "relievers", "output": "⠗⠑⠇⠊⠑⠧⠻⠎" }, { "input": "relieves", "output": "⠗⠑⠇⠊⠑⠧⠑⠎" }, { "input": "relieving", "output": "⠗⠑⠇⠊⠑⠧⠌" }, { "input": "relight", "output": "⠗⠑⠇⠊⠣⠞" }, { "input": "relighted", "output": "⠗⠑⠇⠊⠣⠞⠫" }, { "input": "relighting", "output": "⠗⠑⠇⠊⠣⠞⠌" }, { "input": "relights", "output": "⠗⠑⠇⠊⠣⠞⠎" }, { "input": "religion", "output": "⠗⠑⠇⠊⠛⠊⠕â " }, { "input": "religion's", "output": "⠗⠑⠇⠊⠛⠊⠕â â „â Ž" }, { "input": "religions", "output": "⠗⠑⠇⠊⠛⠊⠕â â Ž" }, { "input": "religious", "output": "⠗⠑⠇⠊⠛⠊⠳⠎" }, { "input": "religious's", "output": "⠗⠑⠇⠊⠛⠊⠳⠎⠄⠎" }, { "input": "religiously", "output": "⠗⠑⠇⠊⠛⠊⠳⠎⠇⠽" }, { "input": "religiousness", "output": "⠗⠑⠇⠊⠛⠊⠳⠎⠰⠎" }, { "input": "religiousness's", "output": "⠗⠑⠇⠊⠛⠊⠳⠎⠰⠎⠄⠎" }, { "input": "reline", "output": "⠗⠑⠇⠔⠑" }, { "input": "relined", "output": "⠗⠑⠇⠔⠫" }, { "input": "relines", "output": "⠗⠑⠇⠔⠑⠎" }, { "input": "relining", "output": "⠗⠑⠇⠔⠌" }, { "input": "relinquish", "output": "⠗⠑⠇⠔⠟⠥⠊⠩" }, { "input": "relinquished", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠫" }, { "input": "relinquishes", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠑⠎" }, { "input": "relinquishing", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠌" }, { "input": "relinquishment", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠰⠞" }, { "input": "relinquishment's", "output": "⠗⠑⠇⠔⠟⠥⠊⠩⠰⠞⠄⠎" }, { "input": "relish", "output": "⠗⠑⠇⠊⠩" }, { "input": "relish's", "output": "⠗⠑⠇⠊⠩⠄⠎" }, { "input": "relished", "output": "⠗⠑⠇⠊⠩⠫" }, { "input": "relishes", "output": "⠗⠑⠇⠊⠩⠑⠎" }, { "input": "relishing", "output": "⠗⠑⠇⠊⠩⠌" }, { "input": "relivable", "output": "⠗⠑⠇⠊⠧â â ¼" }, { "input": "relive", "output": "⠗⠑⠇⠊⠧⠑" }, { "input": "relived", "output": "⠗⠑⠇⠊⠧⠫" }, { "input": "relives", "output": "⠗⠑⠇⠊⠧⠑⠎" }, { "input": "reliving", "output": "⠗⠑⠇⠊⠧⠌" }, { "input": "reload", "output": "⠗⠑⠇⠕â â ™" }, { "input": "reloaded", "output": "⠗⠑⠇⠕â â ™â «" }, { "input": "reloading", "output": "⠗⠑⠇⠕â â ™â Œ" }, { "input": "reloads", "output": "⠗⠑⠇⠕â â ™â Ž" }, { "input": "relocatable", "output": "⠗⠑⠇⠕⠉â â žâ â ¼" }, { "input": "relocate", "output": "⠗⠑⠇⠕⠉â â žâ ‘" }, { "input": "relocated", "output": "⠗⠑⠇⠕⠉â â žâ «" }, { "input": "relocates", "output": "⠗⠑⠇⠕⠉â â žâ ‘â Ž" }, { "input": "relocating", "output": "⠗⠑⠇⠕⠉â â žâ Œ" }, { "input": "relocation", "output": "⠗⠑⠇⠕⠉⠠â " }, { "input": "relocation's", "output": "⠗⠑⠇⠕⠉⠠â â „â Ž" }, { "input": "reluctance", "output": "⠗⠑⠇⠥⠉⠞⠨⠑" }, { "input": "reluctance's", "output": "⠗⠑⠇⠥⠉⠞⠨⠑⠄⠎" }, { "input": "reluctant", "output": "⠗⠑⠇⠥⠉⠞â â â ž" }, { "input": "reluctantly", "output": "⠗⠑⠇⠥⠉⠞â â â žâ ‡â ½" }, { "input": "rely", "output": "⠗⠑⠇⠽" }, { "input": "relying", "output": "⠗⠑⠇⠽⠌" }, { "input": "rem's", "output": "â —â ‘â â „â Ž" }, { "input": "remade", "output": "â —â ‘â â â ™â ‘" }, { "input": "remain", "output": "â —â ‘â â â ”" }, { "input": "remainder", "output": "â —â ‘â â â ”⠙⠻" }, { "input": "remainder's", "output": "â —â ‘â â â ”⠙⠻⠄⠎" }, { "input": "remaindered", "output": "â —â ‘â â â ”⠙⠻⠫" }, { "input": "remainders", "output": "â —â ‘â â â ”⠙⠻⠎" }, { "input": "remained", "output": "â —â ‘â â â ”â «" }, { "input": "remaining", "output": "â —â ‘â â â ”â Œ" }, { "input": "remains", "output": "â —â ‘â â â ”â Ž" }, { "input": "remake", "output": "â —â ‘â â â …â ‘" }, { "input": "remake's", "output": "â —â ‘â â â …â ‘â „â Ž" }, { "input": "remakes", "output": "â —â ‘â â â …â ‘â Ž" }, { "input": "remaking", "output": "â —â ‘â â â …â Œ" }, { "input": "remand", "output": "â —â ‘â â ¯" }, { "input": "remanded", "output": "â —â ‘â â ¯â «" }, { "input": "remanding", "output": "â —â ‘â â ¯â Œ" }, { "input": "remands", "output": "â —â ‘â â ¯â Ž" }, { "input": "remap", "output": "â —â ‘â â â " }, { "input": "remapped", "output": "â —â ‘â â â â â «" }, { "input": "remapping", "output": "â —â ‘â â â â â Œ" }, { "input": "remaps", "output": "â —â ‘â â â â Ž" }, { "input": "remark", "output": "â —â ‘â â œâ …" }, { "input": "remark's", "output": "â —â ‘â â œâ …â „â Ž" }, { "input": "remarkable", "output": "â —â ‘â â œâ …â â ¼" }, { "input": "remarkableness", "output": "â —â ‘â â œâ …â â ¼â °â Ž" }, { "input": "remarkableness's", "output": "â —â ‘â â œâ …â â ¼â °â Žâ „â Ž" }, { "input": "remarkably", "output": "â —â ‘â â œâ …â â ƒâ ‡â ½" }, { "input": "remarked", "output": "â —â ‘â â œâ …â «" }, { "input": "remarking", "output": "â —â ‘â â œâ …â Œ" }, { "input": "remarks", "output": "â —â ‘â â œâ …â Ž" }, { "input": "remarriage", "output": "â —â ‘â â œâ —â Šâ â ›â ‘" }, { "input": "remarriage's", "output": "â —â ‘â â œâ —â Šâ â ›â ‘â „â Ž" }, { "input": "remarriages", "output": "â —â ‘â â œâ —â Šâ â ›â ‘â Ž" }, { "input": "remarried", "output": "â —â ‘â â œâ —â Šâ «" }, { "input": "remarries", "output": "â —â ‘â â œâ —â Šâ ‘â Ž" }, { "input": "remarry", "output": "â —â ‘â â œâ —â ½" }, { "input": "remarrying", "output": "â —â ‘â â œâ —⠽⠌" }, { "input": "rematch", "output": "â —â ‘â â â žâ ¡" }, { "input": "rematch's", "output": "â —â ‘â â â žâ ¡â „â Ž" }, { "input": "rematches", "output": "â —â ‘â â â žâ ¡â ‘â Ž" }, { "input": "remeasure", "output": "â —â ‘â â ‚⠎⠥⠗⠑" }, { "input": "remeasured", "output": "â —â ‘â â ‚⠎⠥⠗⠫" }, { "input": "remeasures", "output": "â —â ‘â â ‚⠎⠥⠗⠑⠎" }, { "input": "remeasuring", "output": "â —â ‘â â ‚⠎⠥⠗⠌" }, { "input": "remediable", "output": "â —â ‘â â «â Šâ â ¼" }, { "input": "remedial", "output": "â —â ‘â â «â Šâ â ‡" }, { "input": "remedially", "output": "â —â ‘â â «â Šâ  â ½" }, { "input": "remediation", "output": "â —â ‘â â «â Šâ  â " }, { "input": "remediation's", "output": "â —â ‘â â «â Šâ  â â „â Ž" }, { "input": "remedied", "output": "â —â ‘â â «â Šâ «" }, { "input": "remedies", "output": "â —â ‘â â «â Šâ ‘â Ž" }, { "input": "remedy", "output": "â —â ‘â â «â ½" }, { "input": "remedy's", "output": "â —â ‘â â «â ½â „â Ž" }, { "input": "remedying", "output": "â —â ‘â â «â ½â Œ" }, { "input": "remelt", "output": "â —â ‘â â ‘⠇⠞" }, { "input": "remelted", "output": "â —â ‘â â ‘⠇⠞⠫" }, { "input": "remelting", "output": "â —â ‘â â ‘⠇⠞⠌" }, { "input": "remelts", "output": "â —â ‘â â ‘⠇⠞⠎" }, { "input": "remember", "output": "â —â ‘â â ‘â â ƒâ »" }, { "input": "remembered", "output": "â —â ‘â â ‘â â ƒâ »â «" }, { "input": "remembering", "output": "â —â ‘â â ‘â â ƒâ »â Œ" }, { "input": "remembers", "output": "â —â ‘â â ‘â â ƒâ »â Ž" }, { "input": "remembrance", "output": "â —â ‘â â ‘â â ƒâ —⠨⠑" }, { "input": "remembrance's", "output": "â —â ‘â â ‘â â ƒâ —⠨⠑⠄⠎" }, { "input": "remembrances", "output": "â —â ‘â â ‘â â ƒâ —⠨⠑⠎" }, { "input": "remigrate", "output": "â —â ‘â â Šâ ›â —â â žâ ‘" }, { "input": "remigrated", "output": "â —â ‘â â Šâ ›â —â â žâ «" }, { "input": "remigrates", "output": "â —â ‘â â Šâ ›â —â â žâ ‘â Ž" }, { "input": "remigrating", "output": "â —â ‘â â Šâ ›â —â â žâ Œ" }, { "input": "remind", "output": "â —â ‘â â ”â ™" }, { "input": "reminded", "output": "â —â ‘â â ”⠙⠫" }, { "input": "reminder", "output": "â —â ‘â â ”⠙⠻" }, { "input": "reminder's", "output": "â —â ‘â â ”⠙⠻⠄⠎" }, { "input": "reminders", "output": "â —â ‘â â ”⠙⠻⠎" }, { "input": "reminding", "output": "â —â ‘â â ”⠙⠌" }, { "input": "reminds", "output": "â —â ‘â â ”⠙⠎" }, { "input": "reminisce", "output": "â —â ‘â â ”⠊⠎⠉⠑" }, { "input": "reminisced", "output": "â —â ‘â â ”⠊⠎⠉⠫" }, { "input": "reminiscence", "output": "â —â ‘â â ”⠊⠎⠉⠰⠑" }, { "input": "reminiscence's", "output": "â —â ‘â â ”⠊⠎⠉⠰⠑⠄⠎" }, { "input": "reminiscences", "output": "â —â ‘â â ”⠊⠎⠉⠰⠑⠎" }, { "input": "reminiscent", "output": "â —â ‘â â ”⠊⠎⠉⠢⠞" }, { "input": "reminisces", "output": "â —â ‘â â ”⠊⠎⠉⠑⠎" }, { "input": "reminiscing", "output": "â —â ‘â â ”⠊⠎⠉⠌" }, { "input": "remiss", "output": "â —â ‘â â Šâ Žâ Ž" }, { "input": "remission", "output": "â —â ‘â â Šâ Žâ ¨â " }, { "input": "remission's", "output": "â —â ‘â â Šâ Žâ ¨â â „â Ž" }, { "input": "remissions", "output": "â —â ‘â â Šâ Žâ ¨â â Ž" }, { "input": "remissly", "output": "â —â ‘â â Šâ Žâ Žâ ‡â ½" }, { "input": "remissness", "output": "â —â ‘â â Šâ Žâ Žâ °â Ž" }, { "input": "remissness's", "output": "â —â ‘â â Šâ Žâ Žâ °â Žâ „â Ž" }, { "input": "remit", "output": "â —â ‘â â Šâ ž" }, { "input": "remits", "output": "â —â ‘â â Šâ žâ Ž" }, { "input": "remittance", "output": "â —â ‘â â Šâ žâ žâ ¨â ‘" }, { "input": "remittance's", "output": "â —â ‘â â Šâ žâ žâ ¨â ‘â „â Ž" }, { "input": "remittances", "output": "â —â ‘â â Šâ žâ žâ ¨â ‘â Ž" }, { "input": "remitted", "output": "â —â ‘â â Šâ žâ žâ «" }, { "input": "remitting", "output": "â —â ‘â â Šâ žâ žâ Œ" }, { "input": "remnant", "output": "â —â ‘â â â â â ž" }, { "input": "remnant's", "output": "â —â ‘â â â â â žâ „â Ž" }, { "input": "remnants", "output": "â —â ‘â â â â â žâ Ž" }, { "input": "remodel", "output": "â —â ‘â â •⠙⠑⠇" }, { "input": "remodeled", "output": "â —â ‘â â •⠙⠑⠇⠫" }, { "input": "remodeling", "output": "â —â ‘â â •⠙⠑⠇⠌" }, { "input": "remodels", "output": "â —â ‘â â •⠙⠑⠇⠎" }, { "input": "remold", "output": "â —â ‘â â •⠇⠙" }, { "input": "remolded", "output": "â —â ‘â â •⠇⠙⠫" }, { "input": "remolding", "output": "â —â ‘â â •⠇⠙⠌" }, { "input": "remolds", "output": "â —â ‘â â •⠇⠙⠎" }, { "input": "remonstrance", "output": "â —â ‘â â •â â Œâ —⠨⠑" }, { "input": "remonstrance's", "output": "â —â ‘â â •â â Œâ —⠨⠑⠄⠎" }, { "input": "remonstrances", "output": "â —â ‘â â •â â Œâ —⠨⠑⠎" }, { "input": "remonstrant", "output": "â —â ‘â â •â â Œâ —â â â ž" }, { "input": "remonstrant's", "output": "â —â ‘â â •â â Œâ —â â â žâ „â Ž" }, { "input": "remonstrants", "output": "â —â ‘â â •â â Œâ —â â â žâ Ž" }, { "input": "remonstrate", "output": "â —â ‘â â •â â Œâ —â â žâ ‘" }, { "input": "remonstrated", "output": "â —â ‘â â •â â Œâ —â â žâ «" }, { "input": "remonstrates", "output": "â —â ‘â â •â â Œâ —â â žâ ‘â Ž" }, { "input": "remonstrating", "output": "â —â ‘â â •â â Œâ —â â žâ Œ" }, { "input": "remorse", "output": "â —â ‘â â •â —â Žâ ‘" }, { "input": "remorse's", "output": "â —â ‘â â •â —â Žâ ‘â „â Ž" }, { "input": "remorseful", "output": "â —â ‘â â •â —â Žâ ‘â °â ‡" }, { "input": "remorsefully", "output": "â —â ‘â â •⠗⠎⠑⠰⠇⠇⠽" }, { "input": "remorseless", "output": "â —â ‘â â •⠗⠎⠑⠨⠎" }, { "input": "remorselessly", "output": "â —â ‘â â •⠗⠎⠑⠨⠎⠇⠽" }, { "input": "remorselessness", "output": "â —â ‘â â •⠗⠎⠑⠨⠎⠰⠎" }, { "input": "remorselessness's", "output": "â —â ‘â â •⠗⠎⠑⠨⠎⠰⠎⠄⠎" }, { "input": "remote", "output": "â —â ‘â â •â žâ ‘" }, { "input": "remote's", "output": "â —â ‘â â •â žâ ‘â „â Ž" }, { "input": "remotely", "output": "â —â ‘â â •⠞⠑⠇⠽" }, { "input": "remoteness", "output": "â —â ‘â â •â žâ ‘â °â Ž" }, { "input": "remoteness's", "output": "â —â ‘â â •â žâ ‘â °â Žâ „â Ž" }, { "input": "remoter", "output": "â —â ‘â â •â žâ »" }, { "input": "remotes", "output": "â —â ‘â â •â žâ ‘â Ž" }, { "input": "remotest", "output": "â —â ‘â â •â žâ ‘â Œ" }, { "input": "remount", "output": "â —â ‘â â ¨â ž" }, { "input": "remount's", "output": "â —â ‘â â ¨â žâ „â Ž" }, { "input": "remounted", "output": "â —â ‘â â ¨â žâ «" }, { "input": "remounting", "output": "â —â ‘â â ¨â žâ Œ" }, { "input": "remounts", "output": "â —â ‘â â ¨â žâ Ž" }, { "input": "removable", "output": "â —â ‘â â •â §â â ¼" }, { "input": "removal", "output": "â —â ‘â â •â §â â ‡" }, { "input": "removal's", "output": "â —â ‘â â •â §â â ‡â „â Ž" }, { "input": "removals", "output": "â —â ‘â â •â §â â ‡â Ž" }, { "input": "remove", "output": "â —â ‘â â •â §â ‘" }, { "input": "remove's", "output": "â —â ‘â â •â §â ‘â „â Ž" }, { "input": "removed", "output": "â —â ‘â â •â §â «" }, { "input": "remover", "output": "â —â ‘â â •â §â »" }, { "input": "remover's", "output": "â —â ‘â â •⠧⠻⠄⠎" }, { "input": "removers", "output": "â —â ‘â â •⠧⠻⠎" }, { "input": "removes", "output": "â —â ‘â â •â §â ‘â Ž" }, { "input": "removing", "output": "â —â ‘â â •â §â Œ" }, { "input": "rems", "output": "â —â ‘â â Ž" }, { "input": "remunerate", "output": "â —â ‘â â ¥â â »â â žâ ‘" }, { "input": "remunerated", "output": "â —â ‘â â ¥â â »â â žâ «" }, { "input": "remunerates", "output": "â —â ‘â â ¥â â »â â žâ ‘â Ž" }, { "input": "remunerating", "output": "â —â ‘â â ¥â â »â â žâ Œ" }, { "input": "remuneration", "output": "â —â ‘â â ¥â â »â  â " }, { "input": "remuneration's", "output": "â —â ‘â â ¥â â »â  â â „â Ž" }, { "input": "remunerations", "output": "â —â ‘â â ¥â â »â  â â Ž" }, { "input": "remunerative", "output": "â —â ‘â â ¥â â »â â žâ Šâ §â ‘" }, { "input": "renaissance", "output": "â —â ¢â â Šâ Žâ Žâ ¨â ‘" }, { "input": "renaissance's", "output": "â —â ¢â â Šâ Žâ Žâ ¨â ‘â „â Ž" }, { "input": "renaissances", "output": "â —â ¢â â Šâ Žâ Žâ ¨â ‘â Ž" }, { "input": "renal", "output": "â —â ¢â â ‡" }, { "input": "rename", "output": "â —â ‘â â " }, { "input": "renamed", "output": "â —â ‘â â â ™" }, { "input": "renames", "output": "â —â ‘â â â Ž" }, { "input": "renaming", "output": "â —â ‘â â â â Œ" }, { "input": "renascence", "output": "â —â ‘â â â Žâ ‰â °â ‘" }, { "input": "renascence's", "output": "â —â ‘â â â Žâ ‰â °â ‘â „â Ž" }, { "input": "renascences", "output": "â —â ‘â â â Žâ ‰â °â ‘â Ž" }, { "input": "renascent", "output": "â —â ‘â â â Žâ ‰â ¢â ž" }, { "input": "rend", "output": "⠗⠢⠙" }, { "input": "render", "output": "⠗⠢⠙⠻" }, { "input": "render's", "output": "⠗⠢⠙⠻⠄⠎" }, { "input": "rendered", "output": "⠗⠢⠙⠻⠫" }, { "input": "rendering", "output": "⠗⠢⠙⠻⠌" }, { "input": "rendering's", "output": "⠗⠢⠙⠻⠌⠄⠎" }, { "input": "renderings", "output": "⠗⠢⠙⠻⠌⠎" }, { "input": "renders", "output": "⠗⠢⠙⠻⠎" }, { "input": "rendezvous", "output": "⠗⠢⠙⠑⠵⠧⠳⠎" }, { "input": "rendezvous's", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠄⠎" }, { "input": "rendezvoused", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠫" }, { "input": "rendezvouses", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠑⠎" }, { "input": "rendezvousing", "output": "⠗⠢⠙⠑⠵⠧⠳⠎⠌" }, { "input": "rending", "output": "⠗⠢⠙⠌" }, { "input": "rendition", "output": "⠗⠢⠙⠊⠰â " }, { "input": "rendition's", "output": "⠗⠢⠙⠊⠰â â „â Ž" }, { "input": "renditions", "output": "⠗⠢⠙⠊⠰â â Ž" }, { "input": "rends", "output": "⠗⠢⠙⠎" }, { "input": "renegade", "output": "⠗⠢⠑⠛â â ™â ‘" }, { "input": "renegade's", "output": "⠗⠢⠑⠛â â ™â ‘â „â Ž" }, { "input": "renegaded", "output": "⠗⠢⠑⠛â â ™â «" }, { "input": "renegades", "output": "⠗⠢⠑⠛â â ™â ‘â Ž" }, { "input": "renegading", "output": "⠗⠢⠑⠛â â ™â Œ" }, { "input": "renege", "output": "â —â ‘â â ‘⠛⠑" }, { "input": "reneged", "output": "â —â ‘â â ‘⠛⠫" }, { "input": "reneger", "output": "â —â ‘â â ‘⠛⠻" }, { "input": "reneger's", "output": "â —â ‘â â ‘⠛⠻⠄⠎" }, { "input": "renegers", "output": "â —â ‘â â ‘⠛⠻⠎" }, { "input": "reneges", "output": "â —â ‘â â ‘⠛⠑⠎" }, { "input": "reneging", "output": "â —â ‘â â ‘⠛⠌" }, { "input": "renegotiable", "output": "â —â ‘â â ‘⠛⠕⠞⠊â â ¼" }, { "input": "renegotiate", "output": "â —â ‘â â ‘⠛⠕⠞⠊â â žâ ‘" }, { "input": "renegotiated", "output": "â —â ‘â â ‘⠛⠕⠞⠊â â žâ «" }, { "input": "renegotiates", "output": "â —â ‘â â ‘⠛⠕⠞⠊â â žâ ‘â Ž" }, { "input": "renegotiating", "output": "â —â ‘â â ‘⠛⠕⠞⠊â â žâ Œ" }, { "input": "renegotiation", "output": "â —â ‘â â ‘⠛⠕⠞⠊⠠â " }, { "input": "renegotiation's", "output": "â —â ‘â â ‘⠛⠕⠞⠊⠠â â „â Ž" }, { "input": "renew", "output": "â —â ‘â â ‘â º" }, { "input": "renewable", "output": "â —â ‘â â ‘â ºâ â ¼" }, { "input": "renewal", "output": "â —â ‘â â ‘â ºâ â ‡" }, { "input": "renewal's", "output": "â —â ‘â â ‘â ºâ â ‡â „â Ž" }, { "input": "renewals", "output": "â —â ‘â â ‘â ºâ â ‡â Ž" }, { "input": "renewed", "output": "â —â ‘â â ‘⠺⠫" }, { "input": "renewing", "output": "â —â ‘â â ‘⠺⠌" }, { "input": "renews", "output": "â —â ‘â â ‘⠺⠎" }, { "input": "rennet", "output": "â —â ¢â â ‘â ž" }, { "input": "rennet's", "output": "â —â ¢â â ‘â žâ „â Ž" }, { "input": "rennin", "output": "â —â ¢â â ”" }, { "input": "rennin's", "output": "â —â ¢â â ”â „â Ž" }, { "input": "renominate", "output": "â —â ‘â â •â â ”â â žâ ‘" }, { "input": "renominated", "output": "â —â ‘â â •â â ”â â žâ «" }, { "input": "renominates", "output": "â —â ‘â â •â â ”â â žâ ‘â Ž" }, { "input": "renominating", "output": "â —â ‘â â •â â ”â â žâ Œ" }, { "input": "renomination", "output": "â —â ‘â â •â â ”â  â " }, { "input": "renomination's", "output": "â —â ‘â â •â â ”â  â â „â Ž" }, { "input": "renounce", "output": "â —â ‘â â ³â â ‰â ‘" }, { "input": "renounced", "output": "â —â ‘â â ³â â ‰â «" }, { "input": "renouncement", "output": "â —â ‘â â ³â â ‰â ‘â °â ž" }, { "input": "renouncement's", "output": "â —â ‘â â ³â â ‰â ‘â °â žâ „â Ž" }, { "input": "renounces", "output": "â —â ‘â â ³â â ‰â ‘â Ž" }, { "input": "renouncing", "output": "â —â ‘â â ³â â ‰â Œ" }, { "input": "renovate", "output": "⠗⠢⠕⠧â â žâ ‘" }, { "input": "renovated", "output": "⠗⠢⠕⠧â â žâ «" }, { "input": "renovates", "output": "⠗⠢⠕⠧â â žâ ‘â Ž" }, { "input": "renovating", "output": "⠗⠢⠕⠧â â žâ Œ" }, { "input": "renovation", "output": "⠗⠢⠕⠧⠠â " }, { "input": "renovation's", "output": "⠗⠢⠕⠧⠠â â „â Ž" }, { "input": "renovations", "output": "⠗⠢⠕⠧⠠â â Ž" }, { "input": "renovator", "output": "⠗⠢⠕⠧â â žâ •â —" }, { "input": "renovator's", "output": "⠗⠢⠕⠧â â žâ •â —â „â Ž" }, { "input": "renovators", "output": "⠗⠢⠕⠧â â žâ •â —â Ž" }, { "input": "renown", "output": "â —â ‘â â ªâ " }, { "input": "renown's", "output": "â —â ‘â â ªâ â „â Ž" }, { "input": "renowned", "output": "â —â ‘â â ªâ â «" }, { "input": "rent", "output": "⠗⠢⠞" }, { "input": "rent's", "output": "⠗⠢⠞⠄⠎" }, { "input": "rental", "output": "⠗⠢⠞â â ‡" }, { "input": "rental's", "output": "⠗⠢⠞â â ‡â „â Ž" }, { "input": "rentals", "output": "⠗⠢⠞â â ‡â Ž" }, { "input": "rented", "output": "⠗⠢⠞⠫" }, { "input": "renter", "output": "⠗⠢⠞⠻" }, { "input": "renter's", "output": "⠗⠢⠞⠻⠄⠎" }, { "input": "renters", "output": "⠗⠢⠞⠻⠎" }, { "input": "renting", "output": "⠗⠢⠞⠌" }, { "input": "rents", "output": "⠗⠢⠞⠎" }, { "input": "renumber", "output": "â —â ‘â â ¥â â ƒâ »" }, { "input": "renumbered", "output": "â —â ‘â â ¥â â ƒâ »â «" }, { "input": "renumbering", "output": "â —â ‘â â ¥â â ƒâ »â Œ" }, { "input": "renumbers", "output": "â —â ‘â â ¥â â ƒâ »â Ž" }, { "input": "renunciation", "output": "â —â ‘â â ¥â â ‰â Šâ  â " }, { "input": "renunciation's", "output": "â —â ‘â â ¥â â ‰â Šâ  â â „â Ž" }, { "input": "renunciations", "output": "â —â ‘â â ¥â â ‰â Šâ  â â Ž" }, { "input": "reoccupation", "output": "â —â ‘â •â ’â ¥â â  â " }, { "input": "reoccupation's", "output": "â —â ‘â •â ’â ¥â â  â â „â Ž" }, { "input": "reoccupied", "output": "â —â ‘â •â ’â ¥â â Šâ «" }, { "input": "reoccupies", "output": "â —â ‘â •â ’â ¥â â Šâ ‘â Ž" }, { "input": "reoccupy", "output": "â —â ‘â •â ’â ¥â â ½" }, { "input": "reoccupying", "output": "â —â ‘â •â ’â ¥â â ½â Œ" }, { "input": "reoccur", "output": "⠗⠑⠕⠒⠥⠗" }, { "input": "reoccurred", "output": "⠗⠑⠕⠒⠥⠗⠗⠫" }, { "input": "reoccurring", "output": "⠗⠑⠕⠒⠥⠗⠗⠌" }, { "input": "reoccurs", "output": "⠗⠑⠕⠒⠥⠗⠎" }, { "input": "reopen", "output": "â —â ‘â •â â ¢" }, { "input": "reopened", "output": "â —â ‘â •â â ¢â «" }, { "input": "reopening", "output": "â —â ‘â •â â ¢â Œ" }, { "input": "reopens", "output": "â —â ‘â •â â ¢â Ž" }, { "input": "reorder", "output": "⠗⠑⠕⠗⠙⠻" }, { "input": "reorder's", "output": "⠗⠑⠕⠗⠙⠻⠄⠎" }, { "input": "reordered", "output": "⠗⠑⠕⠗⠙⠻⠫" }, { "input": "reordering", "output": "⠗⠑⠕⠗⠙⠻⠌" }, { "input": "reorders", "output": "⠗⠑⠕⠗⠙⠻⠎" }, { "input": "reorganization", "output": "â —â ‘â •â —â ›â â â Šâ µâ  â " }, { "input": "reorganization's", "output": "â —â ‘â •â —â ›â â â Šâ µâ  â â „â Ž" }, { "input": "reorganizations", "output": "â —â ‘â •â —â ›â â â Šâ µâ  â â Ž" }, { "input": "reorganize", "output": "â —â ‘â •â —â ›â â â Šâ µâ ‘" }, { "input": "reorganized", "output": "â —â ‘â •â —â ›â â â Šâ µâ «" }, { "input": "reorganizes", "output": "â —â ‘â •â —â ›â â â Šâ µâ ‘â Ž" }, { "input": "reorganizing", "output": "â —â ‘â •â —â ›â â â Šâ µâ Œ" }, { "input": "reorient", "output": "⠗⠑⠕⠗⠊⠢⠞" }, { "input": "reorientation", "output": "⠗⠑⠕⠗⠊⠢⠞⠠â " }, { "input": "reorientation's", "output": "⠗⠑⠕⠗⠊⠢⠞⠠â â „â Ž" }, { "input": "reoriented", "output": "⠗⠑⠕⠗⠊⠢⠞⠫" }, { "input": "reorienting", "output": "⠗⠑⠕⠗⠊⠢⠞⠌" }, { "input": "reorients", "output": "⠗⠑⠕⠗⠊⠢⠞⠎" }, { "input": "rep", "output": "â —â ‘â " }, { "input": "rep's", "output": "â —â ‘â â „â Ž" }, { "input": "repack", "output": "â —â ‘â â â ‰â …" }, { "input": "repackage", "output": "â —â ‘â â â ‰â …â â ›â ‘" }, { "input": "repackaged", "output": "â —â ‘â â â ‰â …â â ›â «" }, { "input": "repackages", "output": "â —â ‘â â â ‰â …â â ›â ‘â Ž" }, { "input": "repackaging", "output": "â —â ‘â â â ‰â …â â ›â Œ" }, { "input": "repacked", "output": "â —â ‘â â â ‰â …â «" }, { "input": "repacking", "output": "â —â ‘â â â ‰â …â Œ" }, { "input": "repacks", "output": "â —â ‘â â â ‰â …â Ž" }, { "input": "repaid", "output": "â —â ‘â â ™" }, { "input": "repaint", "output": "â —â ‘â â â ”â ž" }, { "input": "repainted", "output": "â —â ‘â â â ”â žâ «" }, { "input": "repainting", "output": "â —â ‘â â â ”â žâ Œ" }, { "input": "repaints", "output": "â —â ‘â â â ”â žâ Ž" }, { "input": "repair", "output": "â —â ‘â â â Šâ —" }, { "input": "repair's", "output": "â —â ‘â â â Šâ —â „â Ž" }, { "input": "repairable", "output": "â —â ‘â â â Šâ —â â ¼" }, { "input": "repaired", "output": "â —â ‘â â â Šâ —â «" }, { "input": "repairing", "output": "â —â ‘â â â Šâ —â Œ" }, { "input": "repairman", "output": "â —â ‘â â â Šâ —â â â " }, { "input": "repairman's", "output": "â —â ‘â â â Šâ —â â â â „â Ž" }, { "input": "repairmen", "output": "â —â ‘â â â Šâ —â â ¢" }, { "input": "repairs", "output": "â —â ‘â â â Šâ —â Ž" }, { "input": "reparable", "output": "â —â ‘â â œâ â ¼" }, { "input": "reparation", "output": "â —â ‘â â œâ  â " }, { "input": "reparation's", "output": "â —â ‘â â œâ  â â „â Ž" }, { "input": "reparations", "output": "â —â ‘â â œâ  â â Ž" }, { "input": "reparations's", "output": "â —â ‘â â œâ  â â Žâ „â Ž" }, { "input": "repartee", "output": "â —â ‘â â â ‘â ‘" }, { "input": "repartee's", "output": "â —â ‘â â â ‘â ‘â „â Ž" }, { "input": "repast", "output": "â —â ‘â â â Œ" }, { "input": "repast's", "output": "â —â ‘â â â Œâ „â Ž" }, { "input": "repasts", "output": "â —â ‘â â â Œâ Ž" }, { "input": "repatriate", "output": "â —â ‘â â â žâ —â Šâ â žâ ‘" }, { "input": "repatriate's", "output": "â —â ‘â â â žâ —â Šâ â žâ ‘â „â Ž" }, { "input": "repatriated", "output": "â —â ‘â â â žâ —â Šâ â žâ «" }, { "input": "repatriates", "output": "â —â ‘â â â žâ —â Šâ â žâ ‘â Ž" }, { "input": "repatriating", "output": "â —â ‘â â â žâ —â Šâ â žâ Œ" }, { "input": "repatriation", "output": "â —â ‘â â â žâ —â Šâ  â " }, { "input": "repatriation's", "output": "â —â ‘â â â žâ —â Šâ  â â „â Ž" }, { "input": "repave", "output": "â —â ‘â â â §â ‘" }, { "input": "repaved", "output": "â —â ‘â â â §â «" }, { "input": "repaves", "output": "â —â ‘â â â §â ‘â Ž" }, { "input": "repaving", "output": "â —â ‘â â â §â Œ" }, { "input": "repay", "output": "â —â ‘â â â ½" }, { "input": "repayable", "output": "â —â ‘â â â ½â â ¼" }, { "input": "repaying", "output": "â —â ‘â â â ½â Œ" }, { "input": "repayment", "output": "â —â ‘â â â ½â °â ž" }, { "input": "repayment's", "output": "â —â ‘â â â ½â °â žâ „â Ž" }, { "input": "repayments", "output": "â —â ‘â â â ½â °â žâ Ž" }, { "input": "repays", "output": "â —â ‘â â â ½â Ž" }, { "input": "repeal", "output": "â —â ‘â â ‚â ‡" }, { "input": "repeal's", "output": "â —â ‘â â ‚⠇⠄⠎" }, { "input": "repealed", "output": "â —â ‘â â ‚⠇⠫" }, { "input": "repealing", "output": "â —â ‘â â ‚⠇⠌" }, { "input": "repeals", "output": "â —â ‘â â ‚⠇⠎" }, { "input": "repeat", "output": "â —â ‘â â ‚â ž" }, { "input": "repeat's", "output": "â —â ‘â â ‚â žâ „â Ž" }, { "input": "repeatable", "output": "â —â ‘â â ‚â žâ â ¼" }, { "input": "repeatably", "output": "â —â ‘â â ‚â žâ â ƒâ ‡â ½" }, { "input": "repeated", "output": "â —â ‘â â ‚â žâ «" }, { "input": "repeatedly", "output": "â —â ‘â â ‚⠞⠫⠇⠽" }, { "input": "repeater", "output": "â —â ‘â â ‚â žâ »" }, { "input": "repeater's", "output": "â —â ‘â â ‚⠞⠻⠄⠎" }, { "input": "repeaters", "output": "â —â ‘â â ‚⠞⠻⠎" }, { "input": "repeating", "output": "â —â ‘â â ‚â žâ Œ" }, { "input": "repeating's", "output": "â —â ‘â â ‚⠞⠌⠄⠎" }, { "input": "repeats", "output": "â —â ‘â â ‚â žâ Ž" }, { "input": "repel", "output": "â —â ‘â â ‘â ‡" }, { "input": "repelled", "output": "â —â ‘â â ‘⠇⠇⠫" }, { "input": "repellent", "output": "â —â ‘â â ‘⠇⠇⠢⠞" }, { "input": "repellent's", "output": "â —â ‘â â ‘⠇⠇⠢⠞⠄⠎" }, { "input": "repellents", "output": "â —â ‘â â ‘⠇⠇⠢⠞⠎" }, { "input": "repelling", "output": "â —â ‘â â ‘⠇⠇⠌" }, { "input": "repels", "output": "â —â ‘â â ‘⠇⠎" }, { "input": "repent", "output": "â —â ‘â â ¢â ž" }, { "input": "repentance", "output": "â —â ‘â â ¢â žâ ¨â ‘" }, { "input": "repentance's", "output": "â —â ‘â â ¢â žâ ¨â ‘â „â Ž" }, { "input": "repentant", "output": "â —â ‘â â ¢â žâ â â ž" }, { "input": "repentantly", "output": "â —â ‘â â ¢â žâ â â žâ ‡â ½" }, { "input": "repented", "output": "â —â ‘â â ¢â žâ «" }, { "input": "repenting", "output": "â —â ‘â â ¢â žâ Œ" }, { "input": "repents", "output": "â —â ‘â â ¢â žâ Ž" }, { "input": "repercussion", "output": "â —â ‘â â »â ‰â ¥â Žâ ¨â " }, { "input": "repercussion's", "output": "â —â ‘â â »â ‰â ¥â Žâ ¨â â „â Ž" }, { "input": "repercussions", "output": "â —â ‘â â »â ‰â ¥â Žâ ¨â â Ž" }, { "input": "repertoire", "output": "â —â ‘â â »â žâ •â Šâ —â ‘" }, { "input": "repertoire's", "output": "â —â ‘â â »â žâ •â Šâ —â ‘â „â Ž" }, { "input": "repertoires", "output": "â —â ‘â â »â žâ •â Šâ —â ‘â Ž" }, { "input": "repertories", "output": "â —â ‘â â »â žâ •â —â Šâ ‘â Ž" }, { "input": "repertory", "output": "â —â ‘â â »â žâ •â —â ½" }, { "input": "repertory's", "output": "â —â ‘â â »â žâ •⠗⠽⠄⠎" }, { "input": "repetition", "output": "â —â ‘â â ‘â žâ Šâ °â " }, { "input": "repetition's", "output": "â —â ‘â â ‘â žâ Šâ °â â „â Ž" }, { "input": "repetitions", "output": "â —â ‘â â ‘â žâ Šâ °â â Ž" }, { "input": "repetitious", "output": "â —â ‘â â ‘⠞⠊⠞⠊⠳⠎" }, { "input": "repetitiously", "output": "â —â ‘â â ‘⠞⠊⠞⠊⠳⠎⠇⠽" }, { "input": "repetitiousness", "output": "â —â ‘â â ‘⠞⠊⠞⠊⠳⠎⠰⠎" }, { "input": "repetitiousness's", "output": "â —â ‘â â ‘⠞⠊⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "repetitive", "output": "â —â ‘â â ‘â žâ Šâ žâ Šâ §â ‘" }, { "input": "repetitiveness", "output": "â —â ‘â â ‘â žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "repetitiveness's", "output": "â —â ‘â â ‘â žâ Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "rephotograph", "output": "â —â ‘â â “⠕⠞⠕⠛⠗â â â “" }, { "input": "rephotographed", "output": "â —â ‘â â “⠕⠞⠕⠛⠗â â â “â «" }, { "input": "rephotographing", "output": "â —â ‘â â “⠕⠞⠕⠛⠗â â â “â Œ" }, { "input": "rephotographs", "output": "â —â ‘â â “⠕⠞⠕⠛⠗â â â “â Ž" }, { "input": "rephrase", "output": "â —â ‘â â “â —â â Žâ ‘" }, { "input": "rephrased", "output": "â —â ‘â â “â —â â Žâ «" }, { "input": "rephrases", "output": "â —â ‘â â “â —â â Žâ ‘â Ž" }, { "input": "rephrasing", "output": "â —â ‘â â “â —â â Žâ Œ" }, { "input": "repine", "output": "â —â ‘â â ”â ‘" }, { "input": "repined", "output": "â —â ‘â â ”â «" }, { "input": "repines", "output": "â —â ‘â â ”â ‘â Ž" }, { "input": "repining", "output": "â —â ‘â â ”â Œ" }, { "input": "replace", "output": "â —â ‘â â ‡â â ‰â ‘" }, { "input": "replaceable", "output": "â —â ‘â â ‡â â ‰â ‘â â ¼" }, { "input": "replaced", "output": "â —â ‘â â ‡â â ‰â «" }, { "input": "replacement", "output": "â —â ‘â â ‡â â ‰â ‘â °â ž" }, { "input": "replacement's", "output": "â —â ‘â â ‡â â ‰â ‘â °â žâ „â Ž" }, { "input": "replacements", "output": "â —â ‘â â ‡â â ‰â ‘â °â žâ Ž" }, { "input": "replaces", "output": "â —â ‘â â ‡â â ‰â ‘â Ž" }, { "input": "replacing", "output": "â —â ‘â â ‡â â ‰â Œ" }, { "input": "replant", "output": "â —â ‘â â ‡â â â ž" }, { "input": "replanted", "output": "â —â ‘â â ‡â â â žâ «" }, { "input": "replanting", "output": "â —â ‘â â ‡â â â žâ Œ" }, { "input": "replants", "output": "â —â ‘â â ‡â â â žâ Ž" }, { "input": "replay", "output": "â —â ‘â â ‡â â ½" }, { "input": "replay's", "output": "â —â ‘â â ‡â â ½â „â Ž" }, { "input": "replayed", "output": "â —â ‘â â ‡â â ½â «" }, { "input": "replaying", "output": "â —â ‘â â ‡â â ½â Œ" }, { "input": "replays", "output": "â —â ‘â â ‡â â ½â Ž" }, { "input": "replenish", "output": "â —â ‘â â ‡â ¢â Šâ ©" }, { "input": "replenished", "output": "â —â ‘â â ‡â ¢â Šâ ©â «" }, { "input": "replenishes", "output": "â —â ‘â â ‡â ¢â Šâ ©â ‘â Ž" }, { "input": "replenishing", "output": "â —â ‘â â ‡â ¢â Šâ ©â Œ" }, { "input": "replenishment", "output": "â —â ‘â â ‡â ¢â Šâ ©â °â ž" }, { "input": "replenishment's", "output": "â —â ‘â â ‡â ¢â Šâ ©â °â žâ „â Ž" }, { "input": "replete", "output": "â —â ‘â â ‡â ‘â žâ ‘" }, { "input": "repleted", "output": "â —â ‘â â ‡â ‘â žâ «" }, { "input": "repleteness", "output": "â —â ‘â â ‡â ‘â žâ ‘â °â Ž" }, { "input": "repleteness's", "output": "â —â ‘â â ‡â ‘â žâ ‘â °â Žâ „â Ž" }, { "input": "repletes", "output": "â —â ‘â â ‡â ‘â žâ ‘â Ž" }, { "input": "repleting", "output": "â —â ‘â â ‡â ‘â žâ Œ" }, { "input": "repletion", "output": "â —â ‘â â ‡â ‘â °â " }, { "input": "repletion's", "output": "â —â ‘â â ‡â ‘â °â â „â Ž" }, { "input": "replica", "output": "â —â ‘â â ‡â Šâ ‰â " }, { "input": "replica's", "output": "â —â ‘â â ‡â Šâ ‰â â „â Ž" }, { "input": "replicas", "output": "â —â ‘â â ‡â Šâ ‰â â Ž" }, { "input": "replicate", "output": "â —â ‘â â ‡â Šâ ‰â â žâ ‘" }, { "input": "replicated", "output": "â —â ‘â â ‡â Šâ ‰â â žâ «" }, { "input": "replicates", "output": "â —â ‘â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "replicating", "output": "â —â ‘â â ‡â Šâ ‰â â žâ Œ" }, { "input": "replication", "output": "â —â ‘â â ‡â Šâ ‰â  â " }, { "input": "replication's", "output": "â —â ‘â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "replications", "output": "â —â ‘â â ‡â Šâ ‰â  â â Ž" }, { "input": "replied", "output": "â —â ‘â â ‡â Šâ «" }, { "input": "replies", "output": "â —â ‘â â ‡â Šâ ‘â Ž" }, { "input": "reply", "output": "â —â ‘â â ‡â ½" }, { "input": "reply's", "output": "â —â ‘â â ‡â ½â „â Ž" }, { "input": "replying", "output": "â —â ‘â â ‡â ½â Œ" }, { "input": "repopulate", "output": "â —â ‘â â •â â ¥â ‡â â žâ ‘" }, { "input": "repopulated", "output": "â —â ‘â â •â â ¥â ‡â â žâ «" }, { "input": "repopulates", "output": "â —â ‘â â •â â ¥â ‡â â žâ ‘â Ž" }, { "input": "repopulating", "output": "â —â ‘â â •â â ¥â ‡â â žâ Œ" }, { "input": "report", "output": "â —â ‘â â •â —â ž" }, { "input": "report's", "output": "â —â ‘â â •â —â žâ „â Ž" }, { "input": "reportage", "output": "â —â ‘â â •â —â žâ â ›â ‘" }, { "input": "reportage's", "output": "â —â ‘â â •â —â žâ â ›â ‘â „â Ž" }, { "input": "reported", "output": "â —â ‘â â •â —â žâ «" }, { "input": "reportedly", "output": "â —â ‘â â •⠗⠞⠫⠇⠽" }, { "input": "reporter", "output": "â —â ‘â â •â —â žâ »" }, { "input": "reporter's", "output": "â —â ‘â â •⠗⠞⠻⠄⠎" }, { "input": "reporters", "output": "â —â ‘â â •⠗⠞⠻⠎" }, { "input": "reporting", "output": "â —â ‘â â •â —â žâ Œ" }, { "input": "reportorial", "output": "â —â ‘â â •â —â žâ •â —â Šâ â ‡" }, { "input": "reports", "output": "â —â ‘â â •â —â žâ Ž" }, { "input": "repose", "output": "â —â ‘â â •â Žâ ‘" }, { "input": "repose's", "output": "â —â ‘â â •â Žâ ‘â „â Ž" }, { "input": "reposed", "output": "â —â ‘â â •â Žâ «" }, { "input": "reposeful", "output": "â —â ‘â â •â Žâ ‘â °â ‡" }, { "input": "reposes", "output": "â —â ‘â â •â Žâ ‘â Ž" }, { "input": "reposing", "output": "â —â ‘â â •â Žâ Œ" }, { "input": "repositories", "output": "â —â ‘â â •â Žâ Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "repository", "output": "â —â ‘â â •â Žâ Šâ žâ •â —â ½" }, { "input": "repository's", "output": "â —â ‘â â •⠎⠊⠞⠕⠗⠽⠄⠎" }, { "input": "repossess", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Ž" }, { "input": "repossessed", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ «" }, { "input": "repossesses", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ ‘â Ž" }, { "input": "repossessing", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ Žâ Œ" }, { "input": "repossession", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â " }, { "input": "repossession's", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â â „â Ž" }, { "input": "repossessions", "output": "â —â ‘â â •â Žâ Žâ ‘â Žâ ¨â â Ž" }, { "input": "reprehend", "output": "â —â ‘â â —⠑⠓⠢⠙" }, { "input": "reprehended", "output": "â —â ‘â â —⠑⠓⠢⠙⠫" }, { "input": "reprehending", "output": "â —â ‘â â —⠑⠓⠢⠙⠌" }, { "input": "reprehends", "output": "â —â ‘â â —⠑⠓⠢⠙⠎" }, { "input": "reprehensibility", "output": "â —â ‘â â —⠑⠓⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "reprehensibility's", "output": "â —â ‘â â —⠑⠓⠢⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "reprehensible", "output": "â —â ‘â â —⠑⠓⠢⠎⠊⠼" }, { "input": "reprehensibly", "output": "â —â ‘â â —⠑⠓⠢⠎⠊⠃⠇⠽" }, { "input": "reprehension", "output": "â —â ‘â â —⠑⠓⠢⠨â " }, { "input": "reprehension's", "output": "â —â ‘â â —⠑⠓⠢⠨â â „â Ž" }, { "input": "represent", "output": "â —â ‘â â —⠑⠎⠢⠞" }, { "input": "representation", "output": "â —â ‘â â —⠑⠎⠢⠞⠠â " }, { "input": "representation's", "output": "â —â ‘â â —⠑⠎⠢⠞⠠â â „â Ž" }, { "input": "representational", "output": "â —â ‘â â —⠑⠎⠢⠞⠠â â â ‡" }, { "input": "representations", "output": "â —â ‘â â —⠑⠎⠢⠞⠠â â Ž" }, { "input": "representative", "output": "â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘" }, { "input": "representative's", "output": "â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘â „â Ž" }, { "input": "representatives", "output": "â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘â Ž" }, { "input": "represented", "output": "â —â ‘â â —⠑⠎⠢⠞⠫" }, { "input": "representing", "output": "â —â ‘â â —⠑⠎⠢⠞⠌" }, { "input": "represents", "output": "â —â ‘â â —⠑⠎⠢⠞⠎" }, { "input": "repress", "output": "â —â ‘â â —â ‘â Žâ Ž" }, { "input": "repressed", "output": "â —â ‘â â —â ‘â Žâ Žâ «" }, { "input": "represses", "output": "â —â ‘â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "repressing", "output": "â —â ‘â â —â ‘â Žâ Žâ Œ" }, { "input": "repression", "output": "â —â ‘â â —â ‘â Žâ ¨â " }, { "input": "repression's", "output": "â —â ‘â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "repressions", "output": "â —â ‘â â —â ‘â Žâ ¨â â Ž" }, { "input": "repressive", "output": "â —â ‘â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "reprice", "output": "â —â ‘â â —⠊⠉⠑" }, { "input": "repriced", "output": "â —â ‘â â —⠊⠉⠫" }, { "input": "reprices", "output": "â —â ‘â â —⠊⠉⠑⠎" }, { "input": "repricing", "output": "â —â ‘â â —⠊⠉⠌" }, { "input": "reprieve", "output": "â —â ‘â â —â Šâ ‘â §â ‘" }, { "input": "reprieve's", "output": "â —â ‘â â —â Šâ ‘â §â ‘â „â Ž" }, { "input": "reprieved", "output": "â —â ‘â â —â Šâ ‘â §â «" }, { "input": "reprieves", "output": "â —â ‘â â —â Šâ ‘â §â ‘â Ž" }, { "input": "reprieving", "output": "â —â ‘â â —â Šâ ‘â §â Œ" }, { "input": "reprimand", "output": "â —â ‘â â —â Šâ â ¯" }, { "input": "reprimand's", "output": "â —â ‘â â —â Šâ â ¯â „â Ž" }, { "input": "reprimanded", "output": "â —â ‘â â —â Šâ â ¯â «" }, { "input": "reprimanding", "output": "â —â ‘â â —â Šâ â ¯â Œ" }, { "input": "reprimands", "output": "â —â ‘â â —â Šâ â ¯â Ž" }, { "input": "reprint", "output": "â —â ‘â â —⠔⠞" }, { "input": "reprint's", "output": "â —â ‘â â —⠔⠞⠄⠎" }, { "input": "reprinted", "output": "â —â ‘â â —⠔⠞⠫" }, { "input": "reprinting", "output": "â —â ‘â â —⠔⠞⠌" }, { "input": "reprints", "output": "â —â ‘â â —⠔⠞⠎" }, { "input": "reprisal", "output": "â —â ‘â â —â Šâ Žâ â ‡" }, { "input": "reprisal's", "output": "â —â ‘â â —â Šâ Žâ â ‡â „â Ž" }, { "input": "reprisals", "output": "â —â ‘â â —â Šâ Žâ â ‡â Ž" }, { "input": "reprise", "output": "â —â ‘â â —â Šâ Žâ ‘" }, { "input": "reprise's", "output": "â —â ‘â â —â Šâ Žâ ‘â „â Ž" }, { "input": "reprises", "output": "â —â ‘â â —â Šâ Žâ ‘â Ž" }, { "input": "reprising", "output": "â —â ‘â â —â Šâ Žâ Œ" }, { "input": "reprized", "output": "â —â ‘â â —⠊⠵⠫" }, { "input": "reproach", "output": "â —â ‘â â —â •â â ¡" }, { "input": "reproach's", "output": "â —â ‘â â —â •â â ¡â „â Ž" }, { "input": "reproachable", "output": "â —â ‘â â —â •â â ¡â â ¼" }, { "input": "reproached", "output": "â —â ‘â â —â •â â ¡â «" }, { "input": "reproaches", "output": "â —â ‘â â —â •â â ¡â ‘â Ž" }, { "input": "reproachful", "output": "â —â ‘â â —â •â â ¡â °â ‡" }, { "input": "reproachfully", "output": "â —â ‘â â —â •â â ¡â °â ‡â ‡â ½" }, { "input": "reproaching", "output": "â —â ‘â â —â •â â ¡â Œ" }, { "input": "reprobate", "output": "â —â ‘â â —â •â ƒâ â žâ ‘" }, { "input": "reprobate's", "output": "â —â ‘â â —â •â ƒâ â žâ ‘â „â Ž" }, { "input": "reprobates", "output": "â —â ‘â â —â •â ƒâ â žâ ‘â Ž" }, { "input": "reprocess", "output": "â —â ‘â â —⠕⠉⠑⠎⠎" }, { "input": "reprocessed", "output": "â —â ‘â â —⠕⠉⠑⠎⠎⠫" }, { "input": "reprocesses", "output": "â —â ‘â â —⠕⠉⠑⠎⠎⠑⠎" }, { "input": "reprocessing", "output": "â —â ‘â â —⠕⠉⠑⠎⠎⠌" }, { "input": "reproduce", "output": "â —â ‘â â —⠕⠙⠥⠉⠑" }, { "input": "reproduced", "output": "â —â ‘â â —⠕⠙⠥⠉⠫" }, { "input": "reproducer", "output": "â —â ‘â â —⠕⠙⠥⠉⠻" }, { "input": "reproducer's", "output": "â —â ‘â â —⠕⠙⠥⠉⠻⠄⠎" }, { "input": "reproducers", "output": "â —â ‘â â —⠕⠙⠥⠉⠻⠎" }, { "input": "reproduces", "output": "â —â ‘â â —⠕⠙⠥⠉⠑⠎" }, { "input": "reproducible", "output": "â —â ‘â â —⠕⠙⠥⠉⠊⠼" }, { "input": "reproducing", "output": "â —â ‘â â —⠕⠙⠥⠉⠌" }, { "input": "reproduction", "output": "â —â ‘â â —⠕⠙⠥⠉⠰â " }, { "input": "reproduction's", "output": "â —â ‘â â —⠕⠙⠥⠉⠰â â „â Ž" }, { "input": "reproductions", "output": "â —â ‘â â —⠕⠙⠥⠉⠰â â Ž" }, { "input": "reproductive", "output": "â —â ‘â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "reprogram", "output": "â —â ‘â â —⠕⠛⠗â â " }, { "input": "reprogrammed", "output": "â —â ‘â â —⠕⠛⠗â â â â «" }, { "input": "reprogramming", "output": "â —â ‘â â —⠕⠛⠗â â â â Œ" }, { "input": "reprograms", "output": "â —â ‘â â —⠕⠛⠗â â â Ž" }, { "input": "reproof", "output": "â —â ‘â â —â •â ·" }, { "input": "reproof's", "output": "â —â ‘â â —â •â ·â „â Ž" }, { "input": "reproofed", "output": "â —â ‘â â —â •â ·â «" }, { "input": "reproofing", "output": "â —â ‘â â —â •â ·â Œ" }, { "input": "reproofs", "output": "â —â ‘â â —â •â ·â Ž" }, { "input": "reprove", "output": "â —â ‘â â —â •â §â ‘" }, { "input": "reproved", "output": "â —â ‘â â —â •â §â «" }, { "input": "reproves", "output": "â —â ‘â â —â •â §â ‘â Ž" }, { "input": "reproving", "output": "â —â ‘â â —â •â §â Œ" }, { "input": "reps", "output": "â —â ‘â â Ž" }, { "input": "reptile", "output": "â —â ‘â â žâ Šâ ‡â ‘" }, { "input": "reptile's", "output": "â —â ‘â â žâ Šâ ‡â ‘â „â Ž" }, { "input": "reptiles", "output": "â —â ‘â â žâ Šâ ‡â ‘â Ž" }, { "input": "reptilian", "output": "â —â ‘â â žâ Šâ ‡â Šâ â " }, { "input": "reptilian's", "output": "â —â ‘â â žâ Šâ ‡â Šâ â â „â Ž" }, { "input": "reptilians", "output": "â —â ‘â â žâ Šâ ‡â Šâ â â Ž" }, { "input": "republic", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰" }, { "input": "republic's", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â „â Ž" }, { "input": "republican", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â " }, { "input": "republican's", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â „â Ž" }, { "input": "republicanism", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â Šâ Žâ " }, { "input": "republicanism's", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â Šâ Žâ â „â Ž" }, { "input": "republicans", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â â â Ž" }, { "input": "republication", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â  â " }, { "input": "republication's", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â  â â „â Ž" }, { "input": "republications", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â  â â Ž" }, { "input": "republics", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ‰â Ž" }, { "input": "republish", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©" }, { "input": "republished", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©â «" }, { "input": "republishes", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©â ‘â Ž" }, { "input": "republishing", "output": "â —â ‘â â ¥â ƒâ ‡â Šâ ©â Œ" }, { "input": "repudiate", "output": "â —â ‘â â ¥â ™â Šâ â žâ ‘" }, { "input": "repudiated", "output": "â —â ‘â â ¥â ™â Šâ â žâ «" }, { "input": "repudiates", "output": "â —â ‘â â ¥â ™â Šâ â žâ ‘â Ž" }, { "input": "repudiating", "output": "â —â ‘â â ¥â ™â Šâ â žâ Œ" }, { "input": "repudiation", "output": "â —â ‘â â ¥â ™â Šâ  â " }, { "input": "repudiation's", "output": "â —â ‘â â ¥â ™â Šâ  â â „â Ž" }, { "input": "repudiations", "output": "â —â ‘â â ¥â ™â Šâ  â â Ž" }, { "input": "repudiator", "output": "â —â ‘â â ¥â ™â Šâ â žâ •â —" }, { "input": "repudiator's", "output": "â —â ‘â â ¥â ™â Šâ â žâ •â —â „â Ž" }, { "input": "repudiators", "output": "â —â ‘â â ¥â ™â Šâ â žâ •â —â Ž" }, { "input": "repugnance", "output": "â —â ‘â â ¥â ›â â ¨â ‘" }, { "input": "repugnance's", "output": "â —â ‘â â ¥â ›â â ¨â ‘â „â Ž" }, { "input": "repugnant", "output": "â —â ‘â â ¥â ›â â â â ž" }, { "input": "repulse", "output": "â —â ‘â â ¥â ‡â Žâ ‘" }, { "input": "repulse's", "output": "â —â ‘â â ¥â ‡â Žâ ‘â „â Ž" }, { "input": "repulsed", "output": "â —â ‘â â ¥â ‡â Žâ «" }, { "input": "repulses", "output": "â —â ‘â â ¥â ‡â Žâ ‘â Ž" }, { "input": "repulsing", "output": "â —â ‘â â ¥â ‡â Žâ Œ" }, { "input": "repulsion", "output": "â —â ‘â â ¥â ‡â ¨â " }, { "input": "repulsion's", "output": "â —â ‘â â ¥â ‡â ¨â â „â Ž" }, { "input": "repulsive", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘" }, { "input": "repulsively", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘⠇⠽" }, { "input": "repulsiveness", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘â °â Ž" }, { "input": "repulsiveness's", "output": "â —â ‘â â ¥â ‡â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "repurchase", "output": "â —â ‘â â ¥â —â ¡â â Žâ ‘" }, { "input": "repurchased", "output": "â —â ‘â â ¥â —â ¡â â Žâ «" }, { "input": "repurchases", "output": "â —â ‘â â ¥â —â ¡â â Žâ ‘â Ž" }, { "input": "repurchasing", "output": "â —â ‘â â ¥â —â ¡â â Žâ Œ" }, { "input": "reputability", "output": "â —â ‘â â ¥â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "reputability's", "output": "â —â ‘â â ¥â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "reputable", "output": "â —â ‘â â ¥â žâ â ¼" }, { "input": "reputably", "output": "â —â ‘â â ¥â žâ â ƒâ ‡â ½" }, { "input": "reputation", "output": "â —â ‘â â ¥â žâ  â " }, { "input": "reputation's", "output": "â —â ‘â â ¥â žâ  â â „â Ž" }, { "input": "reputations", "output": "â —â ‘â â ¥â žâ  â â Ž" }, { "input": "repute", "output": "â —â ‘â â ¥â žâ ‘" }, { "input": "repute's", "output": "â —â ‘â â ¥â žâ ‘â „â Ž" }, { "input": "reputed", "output": "â —â ‘â â ¥â žâ «" }, { "input": "reputedly", "output": "â —â ‘â â ¥â žâ «â ‡â ½" }, { "input": "reputes", "output": "â —â ‘â â ¥â žâ ‘â Ž" }, { "input": "reputing", "output": "â —â ‘â â ¥â žâ Œ" }, { "input": "request", "output": "⠗⠑⠟⠥⠑⠌" }, { "input": "request's", "output": "⠗⠑⠟⠥⠑⠌⠄⠎" }, { "input": "requested", "output": "⠗⠑⠟⠥⠑⠌⠫" }, { "input": "requester", "output": "⠗⠑⠟⠥⠑⠌⠻" }, { "input": "requesting", "output": "⠗⠑⠟⠥⠑⠌⠌" }, { "input": "requests", "output": "⠗⠑⠟⠥⠑⠌⠎" }, { "input": "requiem", "output": "⠗⠑⠟⠥⠊⠑â " }, { "input": "requiem's", "output": "⠗⠑⠟⠥⠊⠑â â „â Ž" }, { "input": "requiems", "output": "⠗⠑⠟⠥⠊⠑â â Ž" }, { "input": "require", "output": "⠗⠑⠟⠥⠊⠗⠑" }, { "input": "required", "output": "⠗⠑⠟⠥⠊⠗⠫" }, { "input": "requirement", "output": "⠗⠑⠟⠥⠊⠗⠑⠰⠞" }, { "input": "requirement's", "output": "⠗⠑⠟⠥⠊⠗⠑⠰⠞⠄⠎" }, { "input": "requirements", "output": "⠗⠑⠟⠥⠊⠗⠑⠰⠞⠎" }, { "input": "requires", "output": "⠗⠑⠟⠥⠊⠗⠑⠎" }, { "input": "requiring", "output": "⠗⠑⠟⠥⠊⠗⠌" }, { "input": "requisite", "output": "⠗⠑⠟⠥⠊⠎⠊⠞⠑" }, { "input": "requisite's", "output": "⠗⠑⠟⠥⠊⠎⠊⠞⠑⠄⠎" }, { "input": "requisites", "output": "⠗⠑⠟⠥⠊⠎⠊⠞⠑⠎" }, { "input": "requisition", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â " }, { "input": "requisition's", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â „â Ž" }, { "input": "requisitioned", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â «" }, { "input": "requisitioning", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â Œ" }, { "input": "requisitions", "output": "⠗⠑⠟⠥⠊⠎⠊⠰â â Ž" }, { "input": "requital", "output": "⠗⠑⠟⠥⠊⠞â â ‡" }, { "input": "requital's", "output": "⠗⠑⠟⠥⠊⠞â â ‡â „â Ž" }, { "input": "requite", "output": "⠗⠑⠟⠥⠊⠞⠑" }, { "input": "requited", "output": "⠗⠑⠟⠥⠊⠞⠫" }, { "input": "requiter", "output": "⠗⠑⠟⠥⠊⠞⠻" }, { "input": "requiter's", "output": "⠗⠑⠟⠥⠊⠞⠻⠄⠎" }, { "input": "requiters", "output": "⠗⠑⠟⠥⠊⠞⠻⠎" }, { "input": "requites", "output": "⠗⠑⠟⠥⠊⠞⠑⠎" }, { "input": "requiting", "output": "⠗⠑⠟⠥⠊⠞⠌" }, { "input": "reran", "output": "â —â ‘â —â â " }, { "input": "reread", "output": "â —â ‘â —â ‚â ™" }, { "input": "rereading", "output": "⠗⠑⠗⠂⠙⠌" }, { "input": "rereads", "output": "⠗⠑⠗⠂⠙⠎" }, { "input": "rerecord", "output": "⠗⠑⠗⠑⠉⠕⠗⠙" }, { "input": "rerecorded", "output": "⠗⠑⠗⠑⠉⠕⠗⠙⠫" }, { "input": "rerecording", "output": "⠗⠑⠗⠑⠉⠕⠗⠙⠌" }, { "input": "rerecords", "output": "⠗⠑⠗⠑⠉⠕⠗⠙⠎" }, { "input": "reroute", "output": "⠗⠑⠗⠳⠞⠑" }, { "input": "rerouted", "output": "⠗⠑⠗⠳⠞⠫" }, { "input": "reroutes", "output": "⠗⠑⠗⠳⠞⠑⠎" }, { "input": "rerouting", "output": "⠗⠑⠗⠳⠞⠌" }, { "input": "rerun", "output": "â —â ‘â —â ¥â " }, { "input": "rerun's", "output": "â —â ‘â —â ¥â â „â Ž" }, { "input": "rerunning", "output": "â —â ‘â —â ¥â â â Œ" }, { "input": "reruns", "output": "â —â ‘â —â ¥â â Ž" }, { "input": "resalable", "output": "â —â ‘â Žâ â ‡â â ¼" }, { "input": "resale", "output": "â —â ‘â Žâ â ‡â ‘" }, { "input": "resale's", "output": "â —â ‘â Žâ â ‡â ‘â „â Ž" }, { "input": "resales", "output": "â —â ‘â Žâ â ‡â ‘â Ž" }, { "input": "reschedule", "output": "⠗⠑⠎⠡⠫⠥⠇⠑" }, { "input": "rescheduled", "output": "⠗⠑⠎⠡⠫⠥⠇⠫" }, { "input": "reschedules", "output": "⠗⠑⠎⠡⠫⠥⠇⠑⠎" }, { "input": "rescheduling", "output": "⠗⠑⠎⠡⠫⠥⠇⠌" }, { "input": "rescind", "output": "⠗⠑⠎⠉⠔⠙" }, { "input": "rescinded", "output": "⠗⠑⠎⠉⠔⠙⠫" }, { "input": "rescinding", "output": "⠗⠑⠎⠉⠔⠙⠌" }, { "input": "rescinds", "output": "⠗⠑⠎⠉⠔⠙⠎" }, { "input": "rescission", "output": "⠗⠑⠎⠉⠊⠎⠨â " }, { "input": "rescission's", "output": "⠗⠑⠎⠉⠊⠎⠨â â „â Ž" }, { "input": "rescue", "output": "⠗⠑⠎⠉⠥⠑" }, { "input": "rescue's", "output": "⠗⠑⠎⠉⠥⠑⠄⠎" }, { "input": "rescued", "output": "⠗⠑⠎⠉⠥⠫" }, { "input": "rescuer", "output": "⠗⠑⠎⠉⠥⠻" }, { "input": "rescuer's", "output": "⠗⠑⠎⠉⠥⠻⠄⠎" }, { "input": "rescuers", "output": "⠗⠑⠎⠉⠥⠻⠎" }, { "input": "rescues", "output": "⠗⠑⠎⠉⠥⠑⠎" }, { "input": "rescuing", "output": "⠗⠑⠎⠉⠥⠌" }, { "input": "reseal", "output": "â —â ‘â Žâ ‚â ‡" }, { "input": "resealable", "output": "â —â ‘â Žâ ‚â ‡â â ¼" }, { "input": "resealed", "output": "⠗⠑⠎⠂⠇⠫" }, { "input": "resealing", "output": "⠗⠑⠎⠂⠇⠌" }, { "input": "reseals", "output": "⠗⠑⠎⠂⠇⠎" }, { "input": "research", "output": "⠗⠑⠎⠑⠜⠡" }, { "input": "research's", "output": "⠗⠑⠎⠑⠜⠡⠄⠎" }, { "input": "researched", "output": "⠗⠑⠎⠑⠜⠡⠫" }, { "input": "researcher", "output": "⠗⠑⠎⠑⠜⠡⠻" }, { "input": "researcher's", "output": "⠗⠑⠎⠑⠜⠡⠻⠄⠎" }, { "input": "researchers", "output": "⠗⠑⠎⠑⠜⠡⠻⠎" }, { "input": "researches", "output": "⠗⠑⠎⠑⠜⠡⠑⠎" }, { "input": "researching", "output": "⠗⠑⠎⠑⠜⠡⠌" }, { "input": "resection", "output": "⠗⠑⠎⠑⠉⠰â " }, { "input": "resection's", "output": "⠗⠑⠎⠑⠉⠰â â „â Ž" }, { "input": "resections", "output": "⠗⠑⠎⠑⠉⠰â â Ž" }, { "input": "reseed", "output": "â —â ‘â Žâ ‘â «" }, { "input": "reseeded", "output": "â —â ‘â Žâ ‘â «â «" }, { "input": "reseeding", "output": "â —â ‘â Žâ ‘â «â Œ" }, { "input": "reseeds", "output": "â —â ‘â Žâ ‘â «â Ž" }, { "input": "resell", "output": "⠗⠑⠎⠑⠇⠇" }, { "input": "reselling", "output": "⠗⠑⠎⠑⠇⠇⠌" }, { "input": "resells", "output": "⠗⠑⠎⠑⠇⠇⠎" }, { "input": "resemblance", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ¨â ‘" }, { "input": "resemblance's", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ¨â ‘â „â Ž" }, { "input": "resemblances", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â ¨â ‘â Ž" }, { "input": "resemble", "output": "â —â ‘â Žâ ‘â â ¼" }, { "input": "resembled", "output": "â —â ‘â Žâ ‘â â ¼â ™" }, { "input": "resembles", "output": "â —â ‘â Žâ ‘â â ¼â Ž" }, { "input": "resembling", "output": "â —â ‘â Žâ ‘â â ƒâ ‡â Œ" }, { "input": "resend", "output": "⠗⠑⠎⠢⠙" }, { "input": "resent", "output": "⠗⠑⠎⠢⠞" }, { "input": "resented", "output": "⠗⠑⠎⠢⠞⠫" }, { "input": "resentful", "output": "⠗⠑⠎⠢⠞⠰⠇" }, { "input": "resentfully", "output": "⠗⠑⠎⠢⠞⠰⠇⠇⠽" }, { "input": "resentfulness's", "output": "⠗⠑⠎⠢⠞⠰⠇⠰⠎⠄⠎" }, { "input": "resenting", "output": "⠗⠑⠎⠢⠞⠌" }, { "input": "resentment", "output": "⠗⠑⠎⠢⠞⠰⠞" }, { "input": "resentment's", "output": "⠗⠑⠎⠢⠞⠰⠞⠄⠎" }, { "input": "resentments", "output": "⠗⠑⠎⠢⠞⠰⠞⠎" }, { "input": "resents", "output": "⠗⠑⠎⠢⠞⠎" }, { "input": "reserpine", "output": "â —â ‘â Žâ »â â ”â ‘" }, { "input": "reserpine's", "output": "â —â ‘â Žâ »â â ”â ‘â „â Ž" }, { "input": "reservation", "output": "⠗⠑⠎⠻⠧⠠â " }, { "input": "reservation's", "output": "⠗⠑⠎⠻⠧⠠â â „â Ž" }, { "input": "reservations", "output": "⠗⠑⠎⠻⠧⠠â â Ž" }, { "input": "reserve", "output": "⠗⠑⠎⠻⠧⠑" }, { "input": "reserve's", "output": "⠗⠑⠎⠻⠧⠑⠄⠎" }, { "input": "reserved", "output": "⠗⠑⠎⠻⠧⠫" }, { "input": "reservedly", "output": "⠗⠑⠎⠻⠧⠫⠇⠽" }, { "input": "reservedness", "output": "⠗⠑⠎⠻⠧⠫⠰⠎" }, { "input": "reservedness's", "output": "⠗⠑⠎⠻⠧⠫⠰⠎⠄⠎" }, { "input": "reserves", "output": "⠗⠑⠎⠻⠧⠑⠎" }, { "input": "reserving", "output": "⠗⠑⠎⠻⠧⠌" }, { "input": "reservist", "output": "⠗⠑⠎⠻⠧⠊⠌" }, { "input": "reservist's", "output": "⠗⠑⠎⠻⠧⠊⠌⠄⠎" }, { "input": "reservists", "output": "⠗⠑⠎⠻⠧⠊⠌⠎" }, { "input": "reservoir", "output": "⠗⠑⠎⠻⠧⠕⠊⠗" }, { "input": "reservoir's", "output": "⠗⠑⠎⠻⠧⠕⠊⠗⠄⠎" }, { "input": "reservoirs", "output": "⠗⠑⠎⠻⠧⠕⠊⠗⠎" }, { "input": "reset", "output": "â —â ‘â Žâ ‘â ž" }, { "input": "reset's", "output": "â —â ‘â Žâ ‘â žâ „â Ž" }, { "input": "resets", "output": "â —â ‘â Žâ ‘â žâ Ž" }, { "input": "resetting", "output": "â —â ‘â Žâ ‘â žâ žâ Œ" }, { "input": "resettle", "output": "⠗⠑⠎⠑⠞⠞⠇⠑" }, { "input": "resettled", "output": "⠗⠑⠎⠑⠞⠞⠇⠫" }, { "input": "resettlement's", "output": "⠗⠑⠎⠑⠞⠞⠇⠑⠰⠞⠄⠎" }, { "input": "resettles", "output": "⠗⠑⠎⠑⠞⠞⠇⠑⠎" }, { "input": "resettling", "output": "⠗⠑⠎⠑⠞⠞⠇⠌" }, { "input": "resew", "output": "â —â ‘â Žâ ‘â º" }, { "input": "resewed", "output": "⠗⠑⠎⠑⠺⠫" }, { "input": "resewing", "output": "⠗⠑⠎⠑⠺⠌" }, { "input": "resewn", "output": "â —â ‘â Žâ ‘â ºâ " }, { "input": "resews", "output": "⠗⠑⠎⠑⠺⠎" }, { "input": "resharpen", "output": "â —â ‘â ©â œâ â ¢" }, { "input": "resharpened", "output": "â —â ‘â ©â œâ â ¢â «" }, { "input": "resharpening", "output": "â —â ‘â ©â œâ â ¢â Œ" }, { "input": "resharpens", "output": "â —â ‘â ©â œâ â ¢â Ž" }, { "input": "reship", "output": "â —â ‘â ©â Šâ " }, { "input": "reshipment", "output": "â —â ‘â ©â Šâ â °â ž" }, { "input": "reshipment's", "output": "â —â ‘â ©â Šâ â °â žâ „â Ž" }, { "input": "reshipped", "output": "â —â ‘â ©â Šâ â â «" }, { "input": "reshipping", "output": "â —â ‘â ©â Šâ â â Œ" }, { "input": "reships", "output": "â —â ‘â ©â Šâ â Ž" }, { "input": "reshuffle", "output": "⠗⠑⠩⠥⠖⠇⠑" }, { "input": "reshuffle's", "output": "⠗⠑⠩⠥⠖⠇⠑⠄⠎" }, { "input": "reshuffled", "output": "⠗⠑⠩⠥⠖⠇⠫" }, { "input": "reshuffles", "output": "⠗⠑⠩⠥⠖⠇⠑⠎" }, { "input": "reshuffling", "output": "⠗⠑⠩⠥⠖⠇⠌" }, { "input": "reside", "output": "⠗⠑⠎⠊⠙⠑" }, { "input": "resided", "output": "⠗⠑⠎⠊⠙⠫" }, { "input": "residence", "output": "⠗⠑⠎⠊⠙⠰⠑" }, { "input": "residence's", "output": "⠗⠑⠎⠊⠙⠰⠑⠄⠎" }, { "input": "residences", "output": "⠗⠑⠎⠊⠙⠰⠑⠎" }, { "input": "residencies", "output": "⠗⠑⠎⠊⠙⠢⠉⠊⠑⠎" }, { "input": "residency", "output": "⠗⠑⠎⠊⠙⠢⠉⠽" }, { "input": "residency's", "output": "⠗⠑⠎⠊⠙⠢⠉⠽⠄⠎" }, { "input": "resident", "output": "⠗⠑⠎⠊⠙⠢⠞" }, { "input": "resident's", "output": "⠗⠑⠎⠊⠙⠢⠞⠄⠎" }, { "input": "residential", "output": "⠗⠑⠎⠊⠙⠢⠞⠊â â ‡" }, { "input": "residents", "output": "⠗⠑⠎⠊⠙⠢⠞⠎" }, { "input": "resides", "output": "⠗⠑⠎⠊⠙⠑⠎" }, { "input": "residing", "output": "⠗⠑⠎⠊⠙⠌" }, { "input": "residua", "output": "⠗⠑⠎⠊⠙⠥â " }, { "input": "residual", "output": "⠗⠑⠎⠊⠙⠥â â ‡" }, { "input": "residual's", "output": "⠗⠑⠎⠊⠙⠥â â ‡â „â Ž" }, { "input": "residuals", "output": "⠗⠑⠎⠊⠙⠥â â ‡â Ž" }, { "input": "residue", "output": "⠗⠑⠎⠊⠙⠥⠑" }, { "input": "residue's", "output": "⠗⠑⠎⠊⠙⠥⠑⠄⠎" }, { "input": "residues", "output": "⠗⠑⠎⠊⠙⠥⠑⠎" }, { "input": "residuum", "output": "⠗⠑⠎⠊⠙⠥⠥â " }, { "input": "residuum's", "output": "⠗⠑⠎⠊⠙⠥⠥â â „â Ž" }, { "input": "resign", "output": "â —â ‘â Žâ Šâ ›â " }, { "input": "resignation", "output": "â —â ‘â Žâ Šâ ›â â  â " }, { "input": "resignation's", "output": "â —â ‘â Žâ Šâ ›â â  â â „â Ž" }, { "input": "resignations", "output": "â —â ‘â Žâ Šâ ›â â  â â Ž" }, { "input": "resigned", "output": "â —â ‘â Žâ Šâ ›â â «" }, { "input": "resignedly", "output": "â —â ‘â Žâ Šâ ›â â «â ‡â ½" }, { "input": "resigning", "output": "â —â ‘â Žâ Šâ ›â â Œ" }, { "input": "resigns", "output": "â —â ‘â Žâ Šâ ›â â Ž" }, { "input": "resilience", "output": "⠗⠑⠎⠊⠇⠊⠰⠑" }, { "input": "resilience's", "output": "⠗⠑⠎⠊⠇⠊⠰⠑⠄⠎" }, { "input": "resiliency", "output": "⠗⠑⠎⠊⠇⠊⠢⠉⠽" }, { "input": "resiliency's", "output": "⠗⠑⠎⠊⠇⠊⠢⠉⠽⠄⠎" }, { "input": "resilient", "output": "⠗⠑⠎⠊⠇⠊⠢⠞" }, { "input": "resin", "output": "â —â ‘â Žâ ”" }, { "input": "resin's", "output": "⠗⠑⠎⠔⠄⠎" }, { "input": "resinous", "output": "⠗⠑⠎⠔⠳⠎" }, { "input": "resins", "output": "⠗⠑⠎⠔⠎" }, { "input": "resist", "output": "â —â ‘â Žâ Šâ Œ" }, { "input": "resist's", "output": "⠗⠑⠎⠊⠌⠄⠎" }, { "input": "resistance", "output": "⠗⠑⠎⠊⠌⠨⠑" }, { "input": "resistance's", "output": "⠗⠑⠎⠊⠌⠨⠑⠄⠎" }, { "input": "resistances", "output": "⠗⠑⠎⠊⠌⠨⠑⠎" }, { "input": "resistant", "output": "â —â ‘â Žâ Šâ Œâ â â ž" }, { "input": "resisted", "output": "⠗⠑⠎⠊⠌⠫" }, { "input": "resister", "output": "⠗⠑⠎⠊⠌⠻" }, { "input": "resister's", "output": "⠗⠑⠎⠊⠌⠻⠄⠎" }, { "input": "resisters", "output": "⠗⠑⠎⠊⠌⠻⠎" }, { "input": "resistible", "output": "⠗⠑⠎⠊⠌⠊⠼" }, { "input": "resisting", "output": "⠗⠑⠎⠊⠌⠌" }, { "input": "resistless", "output": "⠗⠑⠎⠊⠌⠨⠎" }, { "input": "resistor", "output": "⠗⠑⠎⠊⠌⠕⠗" }, { "input": "resistor's", "output": "⠗⠑⠎⠊⠌⠕⠗⠄⠎" }, { "input": "resistors", "output": "⠗⠑⠎⠊⠌⠕⠗⠎" }, { "input": "resists", "output": "⠗⠑⠎⠊⠌⠎" }, { "input": "resold", "output": "⠗⠑⠎⠕⠇⠙" }, { "input": "resole", "output": "⠗⠑⠎⠕⠇⠑" }, { "input": "resoled", "output": "⠗⠑⠎⠕⠇⠫" }, { "input": "resoles", "output": "⠗⠑⠎⠕⠇⠑⠎" }, { "input": "resoling", "output": "⠗⠑⠎⠕⠇⠌" }, { "input": "resolute", "output": "⠗⠑⠎⠕⠇⠥⠞⠑" }, { "input": "resolutely", "output": "⠗⠑⠎⠕⠇⠥⠞⠑⠇⠽" }, { "input": "resoluteness", "output": "⠗⠑⠎⠕⠇⠥⠞⠑⠰⠎" }, { "input": "resoluteness's", "output": "⠗⠑⠎⠕⠇⠥⠞⠑⠰⠎⠄⠎" }, { "input": "resolution", "output": "⠗⠑⠎⠕⠇⠥⠰â " }, { "input": "resolution's", "output": "⠗⠑⠎⠕⠇⠥⠰â â „â Ž" }, { "input": "resolutions", "output": "⠗⠑⠎⠕⠇⠥⠰â â Ž" }, { "input": "resolvable", "output": "⠗⠑⠎⠕⠇⠧â â ¼" }, { "input": "resolve", "output": "⠗⠑⠎⠕⠇⠧⠑" }, { "input": "resolve's", "output": "⠗⠑⠎⠕⠇⠧⠑⠄⠎" }, { "input": "resolved", "output": "⠗⠑⠎⠕⠇⠧⠫" }, { "input": "resolver", "output": "⠗⠑⠎⠕⠇⠧⠻" }, { "input": "resolves", "output": "⠗⠑⠎⠕⠇⠧⠑⠎" }, { "input": "resolving", "output": "⠗⠑⠎⠕⠇⠧⠌" }, { "input": "resonance", "output": "â —â ‘â Žâ •â â ¨â ‘" }, { "input": "resonance's", "output": "â —â ‘â Žâ •â â ¨â ‘â „â Ž" }, { "input": "resonances", "output": "â —â ‘â Žâ •â â ¨â ‘â Ž" }, { "input": "resonant", "output": "â —â ‘â Žâ •â â â â ž" }, { "input": "resonantly", "output": "â —â ‘â Žâ •â â â â žâ ‡â ½" }, { "input": "resonate", "output": "â —â ‘â Žâ •â â â žâ ‘" }, { "input": "resonated", "output": "â —â ‘â Žâ •â â â žâ «" }, { "input": "resonates", "output": "â —â ‘â Žâ •â â â žâ ‘â Ž" }, { "input": "resonating", "output": "â —â ‘â Žâ •â â â žâ Œ" }, { "input": "resonator", "output": "â —â ‘â Žâ •â â â žâ •â —" }, { "input": "resonator's", "output": "â —â ‘â Žâ •â â â žâ •â —â „â Ž" }, { "input": "resonators", "output": "â —â ‘â Žâ •â â â žâ •â —â Ž" }, { "input": "resorption", "output": "â —â ‘â Žâ •â —â â °â " }, { "input": "resorption's", "output": "â —â ‘â Žâ •â —â â °â â „â Ž" }, { "input": "resort", "output": "â —â ‘â Žâ •â —â ž" }, { "input": "resort's", "output": "â —â ‘â Žâ •â —â žâ „â Ž" }, { "input": "resorted", "output": "â —â ‘â Žâ •â —â žâ «" }, { "input": "resorting", "output": "â —â ‘â Žâ •â —â žâ Œ" }, { "input": "resorts", "output": "â —â ‘â Žâ •â —â žâ Ž" }, { "input": "resound", "output": "⠗⠑⠎⠨⠙" }, { "input": "resounded", "output": "⠗⠑⠎⠨⠙⠫" }, { "input": "resounding", "output": "⠗⠑⠎⠨⠙⠌" }, { "input": "resoundingly", "output": "⠗⠑⠎⠨⠙⠌⠇⠽" }, { "input": "resounds", "output": "⠗⠑⠎⠨⠙⠎" }, { "input": "resource", "output": "⠗⠑⠎⠳⠗⠉⠑" }, { "input": "resource's", "output": "⠗⠑⠎⠳⠗⠉⠑⠄⠎" }, { "input": "resourced", "output": "⠗⠑⠎⠳⠗⠉⠫" }, { "input": "resourceful", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇" }, { "input": "resourcefully", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇⠇⠽" }, { "input": "resourcefulness", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇⠰⠎" }, { "input": "resourcefulness's", "output": "⠗⠑⠎⠳⠗⠉⠑⠰⠇⠰⠎⠄⠎" }, { "input": "resources", "output": "⠗⠑⠎⠳⠗⠉⠑⠎" }, { "input": "resourcing", "output": "⠗⠑⠎⠳⠗⠉⠌" }, { "input": "resow", "output": "â —â ‘â Žâ ª" }, { "input": "resowed", "output": "⠗⠑⠎⠪⠫" }, { "input": "resowing", "output": "⠗⠑⠎⠪⠌" }, { "input": "resown", "output": "â —â ‘â Žâ ªâ " }, { "input": "resows", "output": "⠗⠑⠎⠪⠎" }, { "input": "respect", "output": "â —â ‘â Žâ â ‘⠉⠞" }, { "input": "respect's", "output": "â —â ‘â Žâ â ‘⠉⠞⠄⠎" }, { "input": "respectability", "output": "â —â ‘â Žâ â ‘⠉⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "respectability's", "output": "â —â ‘â Žâ â ‘⠉⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "respectable", "output": "â —â ‘â Žâ â ‘⠉⠞â â ¼" }, { "input": "respectably", "output": "â —â ‘â Žâ â ‘⠉⠞â â ƒâ ‡â ½" }, { "input": "respected", "output": "â —â ‘â Žâ â ‘⠉⠞⠫" }, { "input": "respectful", "output": "â —â ‘â Žâ â ‘⠉⠞⠰⠇" }, { "input": "respectfully", "output": "â —â ‘â Žâ â ‘⠉⠞⠰⠇⠇⠽" }, { "input": "respectfulness", "output": "â —â ‘â Žâ â ‘⠉⠞⠰⠇⠰⠎" }, { "input": "respectfulness's", "output": "â —â ‘â Žâ â ‘⠉⠞⠰⠇⠰⠎⠄⠎" }, { "input": "respecting", "output": "â —â ‘â Žâ â ‘⠉⠞⠌" }, { "input": "respective", "output": "â —â ‘â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "respectively", "output": "â —â ‘â Žâ â ‘⠉⠞⠊⠧⠑⠇⠽" }, { "input": "respects", "output": "â —â ‘â Žâ â ‘⠉⠞⠎" }, { "input": "respell", "output": "â —â ‘â Žâ â ‘⠇⠇" }, { "input": "respelled", "output": "â —â ‘â Žâ â ‘⠇⠇⠫" }, { "input": "respelling", "output": "â —â ‘â Žâ â ‘⠇⠇⠌" }, { "input": "respells", "output": "â —â ‘â Žâ â ‘⠇⠇⠎" }, { "input": "respiration", "output": "â —â ‘â Žâ â Šâ —â  â " }, { "input": "respiration's", "output": "â —â ‘â Žâ â Šâ —â  â â „â Ž" }, { "input": "respirator", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —" }, { "input": "respirator's", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —â „â Ž" }, { "input": "respirators", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —â Ž" }, { "input": "respiratory", "output": "â —â ‘â Žâ â Šâ —â â žâ •â —â ½" }, { "input": "respire", "output": "â —â ‘â Žâ â Šâ —â ‘" }, { "input": "respired", "output": "â —â ‘â Žâ â Šâ —â «" }, { "input": "respires", "output": "â —â ‘â Žâ â Šâ —â ‘â Ž" }, { "input": "respiring", "output": "â —â ‘â Žâ â Šâ —â Œ" }, { "input": "respite", "output": "â —â ‘â Žâ â Šâ žâ ‘" }, { "input": "respite's", "output": "â —â ‘â Žâ â Šâ žâ ‘â „â Ž" }, { "input": "respites", "output": "â —â ‘â Žâ â Šâ žâ ‘â Ž" }, { "input": "resplendence", "output": "â —â ‘â Žâ â ‡â ¢â ™â °â ‘" }, { "input": "resplendence's", "output": "â —â ‘â Žâ â ‡â ¢â ™â °â ‘â „â Ž" }, { "input": "resplendent", "output": "â —â ‘â Žâ â ‡â ¢â ™â ¢â ž" }, { "input": "resplendently", "output": "â —â ‘â Žâ â ‡â ¢â ™â ¢â žâ ‡â ½" }, { "input": "respond", "output": "â —â ‘â Žâ â •â â ™" }, { "input": "responded", "output": "â —â ‘â Žâ â •â â ™â «" }, { "input": "respondent", "output": "â —â ‘â Žâ â •â â ™â ¢â ž" }, { "input": "respondent's", "output": "â —â ‘â Žâ â •â â ™â ¢â žâ „â Ž" }, { "input": "respondents", "output": "â —â ‘â Žâ â •â â ™â ¢â žâ Ž" }, { "input": "responding", "output": "â —â ‘â Žâ â •â â ™â Œ" }, { "input": "responds", "output": "â —â ‘â Žâ â •â â ™â Ž" }, { "input": "response", "output": "â —â ‘â Žâ â •â â Žâ ‘" }, { "input": "response's", "output": "â —â ‘â Žâ â •â â Žâ ‘â „â Ž" }, { "input": "responses", "output": "â —â ‘â Žâ â •â â Žâ ‘â Ž" }, { "input": "responsibilities", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "responsibility", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "responsibility's", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "responsible", "output": "â —â ‘â Žâ â •â â Žâ Šâ ¼" }, { "input": "responsibly", "output": "â —â ‘â Žâ â •â â Žâ Šâ ƒâ ‡â ½" }, { "input": "responsive", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘" }, { "input": "responsively", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘⠇⠽" }, { "input": "responsiveness", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘â °â Ž" }, { "input": "responsiveness's", "output": "â —â ‘â Žâ â •â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "respray", "output": "â —â ‘â Žâ â —â â ½" }, { "input": "resprayed", "output": "â —â ‘â Žâ â —â â ½â «" }, { "input": "respraying", "output": "â —â ‘â Žâ â —â â ½â Œ" }, { "input": "resprays", "output": "â —â ‘â Žâ â —â â ½â Ž" }, { "input": "rest", "output": "â —â ‘â Œ" }, { "input": "rest's", "output": "⠗⠑⠌⠄⠎" }, { "input": "restaff", "output": "â —â ‘â Œâ â ‹â ‹" }, { "input": "restaffed", "output": "â —â ‘â Œâ â –â «" }, { "input": "restaffing", "output": "â —â ‘â Œâ â –â Œ" }, { "input": "restaffs", "output": "â —â ‘â Œâ â –â Ž" }, { "input": "restart", "output": "⠗⠑⠌⠜⠞" }, { "input": "restart's", "output": "⠗⠑⠌⠜⠞⠄⠎" }, { "input": "restarted", "output": "⠗⠑⠌⠜⠞⠫" }, { "input": "restarting", "output": "⠗⠑⠌⠜⠞⠌" }, { "input": "restarts", "output": "⠗⠑⠌⠜⠞⠎" }, { "input": "restate", "output": "â —â ‘â Œâ â žâ ‘" }, { "input": "restated", "output": "â —â ‘â Œâ â žâ «" }, { "input": "restatement", "output": "â —â ‘â Œâ â žâ ‘â °â ž" }, { "input": "restatement's", "output": "â —â ‘â Œâ â žâ ‘â °â žâ „â Ž" }, { "input": "restatements", "output": "â —â ‘â Œâ â žâ ‘â °â žâ Ž" }, { "input": "restates", "output": "â —â ‘â Œâ â žâ ‘â Ž" }, { "input": "restating", "output": "â —â ‘â Œâ â žâ Œ" }, { "input": "restaurant", "output": "â —â ‘â Œâ â ¥â —â â â ž" }, { "input": "restaurant's", "output": "â —â ‘â Œâ â ¥â —â â â žâ „â Ž" }, { "input": "restaurants", "output": "â —â ‘â Œâ â ¥â —â â â žâ Ž" }, { "input": "restaurateur", "output": "â —â ‘â Œâ â ¥â —â â žâ ‘⠥⠗" }, { "input": "restaurateur's", "output": "â —â ‘â Œâ â ¥â —â â žâ ‘⠥⠗⠄⠎" }, { "input": "restaurateurs", "output": "â —â ‘â Œâ â ¥â —â â žâ ‘⠥⠗⠎" }, { "input": "rested", "output": "⠗⠑⠌⠫" }, { "input": "restful", "output": "⠗⠑⠌⠰⠇" }, { "input": "restfuller", "output": "⠗⠑⠌⠰⠇⠇⠻" }, { "input": "restfullest", "output": "⠗⠑⠌⠰⠇⠇⠑⠌" }, { "input": "restfully", "output": "⠗⠑⠌⠰⠇⠇⠽" }, { "input": "restfulness", "output": "⠗⠑⠌⠰⠇⠰⠎" }, { "input": "restfulness's", "output": "⠗⠑⠌⠰⠇⠰⠎⠄⠎" }, { "input": "resting", "output": "⠗⠑⠌⠌" }, { "input": "restitch", "output": "⠗⠑⠌⠊⠞⠡" }, { "input": "restitched", "output": "⠗⠑⠌⠊⠞⠡⠫" }, { "input": "restitches", "output": "⠗⠑⠌⠊⠞⠡⠑⠎" }, { "input": "restitching", "output": "⠗⠑⠌⠊⠞⠡⠌" }, { "input": "restitution", "output": "⠗⠑⠌⠊⠞⠥⠰â " }, { "input": "restitution's", "output": "⠗⠑⠌⠊⠞⠥⠰â â „â Ž" }, { "input": "restive", "output": "⠗⠑⠌⠊⠧⠑" }, { "input": "restively", "output": "⠗⠑⠌⠊⠧⠑⠇⠽" }, { "input": "restiveness", "output": "⠗⠑⠌⠊⠧⠑⠰⠎" }, { "input": "restiveness's", "output": "⠗⠑⠌⠊⠧⠑⠰⠎⠄⠎" }, { "input": "restless", "output": "⠗⠑⠌⠨⠎" }, { "input": "restlessly", "output": "⠗⠑⠌⠨⠎⠇⠽" }, { "input": "restlessness", "output": "⠗⠑⠌⠨⠎⠰⠎" }, { "input": "restlessness's", "output": "⠗⠑⠌⠨⠎⠰⠎⠄⠎" }, { "input": "restock", "output": "⠗⠑⠌⠕⠉⠅" }, { "input": "restocked", "output": "⠗⠑⠌⠕⠉⠅⠫" }, { "input": "restocking", "output": "⠗⠑⠌⠕⠉⠅⠌" }, { "input": "restocks", "output": "⠗⠑⠌⠕⠉⠅⠎" }, { "input": "restoration", "output": "⠗⠑⠌⠕⠗⠠â " }, { "input": "restoration's", "output": "⠗⠑⠌⠕⠗⠠â â „â Ž" }, { "input": "restorations", "output": "⠗⠑⠌⠕⠗⠠â â Ž" }, { "input": "restorative", "output": "⠗⠑⠌⠕⠗â â žâ Šâ §â ‘" }, { "input": "restorative's", "output": "⠗⠑⠌⠕⠗â â žâ Šâ §â ‘â „â Ž" }, { "input": "restoratives", "output": "⠗⠑⠌⠕⠗â â žâ Šâ §â ‘â Ž" }, { "input": "restore", "output": "⠗⠑⠌⠕⠗⠑" }, { "input": "restored", "output": "⠗⠑⠌⠕⠗⠫" }, { "input": "restorer", "output": "⠗⠑⠌⠕⠗⠻" }, { "input": "restorer's", "output": "⠗⠑⠌⠕⠗⠻⠄⠎" }, { "input": "restorers", "output": "⠗⠑⠌⠕⠗⠻⠎" }, { "input": "restores", "output": "⠗⠑⠌⠕⠗⠑⠎" }, { "input": "restoring", "output": "⠗⠑⠌⠕⠗⠌" }, { "input": "restrain", "output": "⠗⠑⠌⠗â â ”" }, { "input": "restrained", "output": "⠗⠑⠌⠗â â ”â «" }, { "input": "restrainer", "output": "⠗⠑⠌⠗â â ”â »" }, { "input": "restrainer's", "output": "⠗⠑⠌⠗â â ”⠻⠄⠎" }, { "input": "restrainers", "output": "⠗⠑⠌⠗â â ”⠻⠎" }, { "input": "restraining", "output": "⠗⠑⠌⠗â â ”â Œ" }, { "input": "restrains", "output": "⠗⠑⠌⠗â â ”â Ž" }, { "input": "restraint", "output": "⠗⠑⠌⠗â â ”â ž" }, { "input": "restraint's", "output": "⠗⠑⠌⠗â â ”â žâ „â Ž" }, { "input": "restraints", "output": "⠗⠑⠌⠗â â ”â žâ Ž" }, { "input": "restrengthen", "output": "⠗⠑⠌⠗⠢⠛⠮â " }, { "input": "restrengthened", "output": "⠗⠑⠌⠗⠢⠛⠮â â «" }, { "input": "restrengthening", "output": "⠗⠑⠌⠗⠢⠛⠮â â Œ" }, { "input": "restrengthens", "output": "⠗⠑⠌⠗⠢⠛⠮â â Ž" }, { "input": "restrict", "output": "⠗⠑⠌⠗⠊⠉⠞" }, { "input": "restricted", "output": "⠗⠑⠌⠗⠊⠉⠞⠫" }, { "input": "restricting", "output": "⠗⠑⠌⠗⠊⠉⠞⠌" }, { "input": "restriction", "output": "⠗⠑⠌⠗⠊⠉⠰â " }, { "input": "restriction's", "output": "⠗⠑⠌⠗⠊⠉⠰â â „â Ž" }, { "input": "restrictions", "output": "⠗⠑⠌⠗⠊⠉⠰â â Ž" }, { "input": "restrictive", "output": "⠗⠑⠌⠗⠊⠉⠞⠊⠧⠑" }, { "input": "restrictively", "output": "⠗⠑⠌⠗⠊⠉⠞⠊⠧⠑⠇⠽" }, { "input": "restrictiveness", "output": "⠗⠑⠌⠗⠊⠉⠞⠊⠧⠑⠰⠎" }, { "input": "restrictiveness's", "output": "⠗⠑⠌⠗⠊⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "restricts", "output": "⠗⠑⠌⠗⠊⠉⠞⠎" }, { "input": "restring", "output": "⠗⠑⠌⠗⠌" }, { "input": "restringing", "output": "⠗⠑⠌⠗⠌⠌" }, { "input": "restrings", "output": "⠗⠑⠌⠗⠌⠎" }, { "input": "restroom", "output": "⠗⠑⠌⠗⠕⠕â " }, { "input": "restroom's", "output": "⠗⠑⠌⠗⠕⠕â â „â Ž" }, { "input": "restrooms", "output": "⠗⠑⠌⠗⠕⠕â â Ž" }, { "input": "restructure", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠑" }, { "input": "restructured", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠫" }, { "input": "restructures", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠑⠎" }, { "input": "restructuring", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠌" }, { "input": "restructuring's", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠌⠄⠎" }, { "input": "restructurings", "output": "⠗⠑⠌⠗⠥⠉⠞⠥⠗⠌⠎" }, { "input": "restrung", "output": "⠗⠑⠌⠗⠥â â ›" }, { "input": "rests", "output": "⠗⠑⠌⠎" }, { "input": "restudied", "output": "⠗⠑⠌⠥⠙⠊⠫" }, { "input": "restudies", "output": "⠗⠑⠌⠥⠙⠊⠑⠎" }, { "input": "restudy", "output": "⠗⠑⠌⠥⠙⠽" }, { "input": "restudying", "output": "⠗⠑⠌⠥⠙⠽⠌" }, { "input": "restyle", "output": "⠗⠑⠌⠽⠇⠑" }, { "input": "restyled", "output": "⠗⠑⠌⠽⠇⠫" }, { "input": "restyles", "output": "⠗⠑⠌⠽⠇⠑⠎" }, { "input": "restyling", "output": "⠗⠑⠌⠽⠇⠌" }, { "input": "resubmit", "output": "⠗⠑⠎⠥⠃â â Šâ ž" }, { "input": "resubmits", "output": "⠗⠑⠎⠥⠃â â Šâ žâ Ž" }, { "input": "resubmitted", "output": "⠗⠑⠎⠥⠃â â Šâ žâ žâ «" }, { "input": "resubmitting", "output": "⠗⠑⠎⠥⠃â â Šâ žâ žâ Œ" }, { "input": "resubscribe", "output": "⠗⠑⠎⠥⠃⠎⠉⠗⠊⠃⠑" }, { "input": "resubscribed", "output": "⠗⠑⠎⠥⠃⠎⠉⠗⠊⠃⠫" }, { "input": "resubscribes", "output": "⠗⠑⠎⠥⠃⠎⠉⠗⠊⠃⠑⠎" }, { "input": "resubscribing", "output": "⠗⠑⠎⠥⠃⠎⠉⠗⠊⠃⠌" }, { "input": "result", "output": "⠗⠑⠎⠥⠇⠞" }, { "input": "result's", "output": "⠗⠑⠎⠥⠇⠞⠄⠎" }, { "input": "resultant", "output": "⠗⠑⠎⠥⠇⠞â â â ž" }, { "input": "resultant's", "output": "⠗⠑⠎⠥⠇⠞â â â žâ „â Ž" }, { "input": "resultants", "output": "⠗⠑⠎⠥⠇⠞â â â žâ Ž" }, { "input": "resulted", "output": "⠗⠑⠎⠥⠇⠞⠫" }, { "input": "resulting", "output": "⠗⠑⠎⠥⠇⠞⠌" }, { "input": "results", "output": "⠗⠑⠎⠥⠇⠞⠎" }, { "input": "resume", "output": "â —â ‘â Žâ ¥â â ‘" }, { "input": "resume's", "output": "â —â ‘â Žâ ¥â â ‘â „â Ž" }, { "input": "resumed", "output": "â —â ‘â Žâ ¥â â «" }, { "input": "resumes", "output": "â —â ‘â Žâ ¥â â ‘â Ž" }, { "input": "resuming", "output": "â —â ‘â Žâ ¥â â Œ" }, { "input": "resumption", "output": "â —â ‘â Žâ ¥â â â °â " }, { "input": "resumption's", "output": "â —â ‘â Žâ ¥â â â °â â „â Ž" }, { "input": "resumptions", "output": "â —â ‘â Žâ ¥â â â °â â Ž" }, { "input": "resupplied", "output": "â —â ‘â Žâ ¥â â â ‡â Šâ «" }, { "input": "resupplies", "output": "â —â ‘â Žâ ¥â â â ‡â Šâ ‘â Ž" }, { "input": "resupply", "output": "â —â ‘â Žâ ¥â â â ‡â ½" }, { "input": "resupplying", "output": "â —â ‘â Žâ ¥â â â ‡â ½â Œ" }, { "input": "resurface", "output": "⠗⠑⠎⠥⠗⠋â â ‰â ‘" }, { "input": "resurfaced", "output": "⠗⠑⠎⠥⠗⠋â â ‰â «" }, { "input": "resurfaces", "output": "⠗⠑⠎⠥⠗⠋â â ‰â ‘â Ž" }, { "input": "resurfacing", "output": "⠗⠑⠎⠥⠗⠋â â ‰â Œ" }, { "input": "resurgence", "output": "⠗⠑⠎⠥⠗⠛⠰⠑" }, { "input": "resurgence's", "output": "⠗⠑⠎⠥⠗⠛⠰⠑⠄⠎" }, { "input": "resurgences", "output": "⠗⠑⠎⠥⠗⠛⠰⠑⠎" }, { "input": "resurgent", "output": "⠗⠑⠎⠥⠗⠛⠢⠞" }, { "input": "resurrect", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞" }, { "input": "resurrected", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞⠫" }, { "input": "resurrecting", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞⠌" }, { "input": "resurrection", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠰â " }, { "input": "resurrection's", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠰â â „â Ž" }, { "input": "resurrections", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠰â â Ž" }, { "input": "resurrects", "output": "⠗⠑⠎⠥⠗⠗⠑⠉⠞⠎" }, { "input": "resurvey", "output": "⠗⠑⠎⠥⠗⠧⠑⠽" }, { "input": "resurveyed", "output": "⠗⠑⠎⠥⠗⠧⠑⠽⠫" }, { "input": "resurveying", "output": "⠗⠑⠎⠥⠗⠧⠑⠽⠌" }, { "input": "resurveys", "output": "⠗⠑⠎⠥⠗⠧⠑⠽⠎" }, { "input": "resuscitate", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ ‘" }, { "input": "resuscitated", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ «" }, { "input": "resuscitates", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ ‘â Ž" }, { "input": "resuscitating", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ Œ" }, { "input": "resuscitation", "output": "⠗⠑⠎⠥⠎⠉⠊⠞⠠â " }, { "input": "resuscitation's", "output": "⠗⠑⠎⠥⠎⠉⠊⠞⠠â â „â Ž" }, { "input": "resuscitator", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ •â —" }, { "input": "resuscitator's", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ •â —â „â Ž" }, { "input": "resuscitators", "output": "⠗⠑⠎⠥⠎⠉⠊⠞â â žâ •â —â Ž" }, { "input": "retail", "output": "â —â ‘â žâ â Šâ ‡" }, { "input": "retail's", "output": "â —â ‘â žâ â Šâ ‡â „â Ž" }, { "input": "retailed", "output": "â —â ‘â žâ â Šâ ‡â «" }, { "input": "retailer", "output": "â —â ‘â žâ â Šâ ‡â »" }, { "input": "retailer's", "output": "â —â ‘â žâ â Šâ ‡â »â „â Ž" }, { "input": "retailers", "output": "â —â ‘â žâ â Šâ ‡â »â Ž" }, { "input": "retailing", "output": "â —â ‘â žâ â Šâ ‡â Œ" }, { "input": "retails", "output": "â —â ‘â žâ â Šâ ‡â Ž" }, { "input": "retain", "output": "â —â ‘â žâ â ”" }, { "input": "retained", "output": "â —â ‘â žâ â ”â «" }, { "input": "retainer", "output": "â —â ‘â žâ â ”â »" }, { "input": "retainer's", "output": "â —â ‘â žâ â ”⠻⠄⠎" }, { "input": "retainers", "output": "â —â ‘â žâ â ”⠻⠎" }, { "input": "retaining", "output": "â —â ‘â žâ â ”â Œ" }, { "input": "retains", "output": "â —â ‘â žâ â ”â Ž" }, { "input": "retake", "output": "â —â ‘â žâ â …â ‘" }, { "input": "retake's", "output": "â —â ‘â žâ â …â ‘â „â Ž" }, { "input": "retaken", "output": "â —â ‘â žâ â …â ¢" }, { "input": "retakes", "output": "â —â ‘â žâ â …â ‘â Ž" }, { "input": "retaking", "output": "â —â ‘â žâ â …â Œ" }, { "input": "retaliate", "output": "â —â ‘â žâ â ‡â Šâ â žâ ‘" }, { "input": "retaliated", "output": "â —â ‘â žâ â ‡â Šâ â žâ «" }, { "input": "retaliates", "output": "â —â ‘â žâ â ‡â Šâ â žâ ‘â Ž" }, { "input": "retaliating", "output": "â —â ‘â žâ â ‡â Šâ â žâ Œ" }, { "input": "retaliation", "output": "â —â ‘â žâ â ‡â Šâ  â " }, { "input": "retaliation's", "output": "â —â ‘â žâ â ‡â Šâ  â â „â Ž" }, { "input": "retaliations", "output": "â —â ‘â žâ â ‡â Šâ  â â Ž" }, { "input": "retaliative", "output": "â —â ‘â žâ â ‡â Šâ â žâ Šâ §â ‘" }, { "input": "retaliatory", "output": "â —â ‘â žâ â ‡â Šâ â žâ •â —â ½" }, { "input": "retard", "output": "⠗⠑⠞⠜⠙" }, { "input": "retard's", "output": "⠗⠑⠞⠜⠙⠄⠎" }, { "input": "retardant", "output": "⠗⠑⠞⠜⠙â â â ž" }, { "input": "retardant's", "output": "⠗⠑⠞⠜⠙â â â žâ „â Ž" }, { "input": "retardants", "output": "⠗⠑⠞⠜⠙â â â žâ Ž" }, { "input": "retardation", "output": "⠗⠑⠞⠜⠙⠠â " }, { "input": "retardation's", "output": "⠗⠑⠞⠜⠙⠠â â „â Ž" }, { "input": "retarded", "output": "⠗⠑⠞⠜⠙⠫" }, { "input": "retarder", "output": "⠗⠑⠞⠜⠙⠻" }, { "input": "retarder's", "output": "⠗⠑⠞⠜⠙⠻⠄⠎" }, { "input": "retarders", "output": "⠗⠑⠞⠜⠙⠻⠎" }, { "input": "retarding", "output": "⠗⠑⠞⠜⠙⠌" }, { "input": "retards", "output": "⠗⠑⠞⠜⠙⠎" }, { "input": "retaught", "output": "â —â ‘â žâ â ¥â £â ž" }, { "input": "retch", "output": "â —â ‘â žâ ¡" }, { "input": "retched", "output": "â —â ‘â žâ ¡â «" }, { "input": "retches", "output": "â —â ‘â žâ ¡â ‘â Ž" }, { "input": "retching", "output": "â —â ‘â žâ ¡â Œ" }, { "input": "reteach", "output": "â —â ‘â žâ ‚â ¡" }, { "input": "reteaches", "output": "â —â ‘â žâ ‚â ¡â ‘â Ž" }, { "input": "reteaching", "output": "â —â ‘â žâ ‚â ¡â Œ" }, { "input": "retell", "output": "⠗⠑⠞⠑⠇⠇" }, { "input": "retelling", "output": "⠗⠑⠞⠑⠇⠇⠌" }, { "input": "retells", "output": "⠗⠑⠞⠑⠇⠇⠎" }, { "input": "retention", "output": "⠗⠑⠞⠢⠰â " }, { "input": "retention's", "output": "⠗⠑⠞⠢⠰â â „â Ž" }, { "input": "retentive", "output": "⠗⠑⠞⠢⠞⠊⠧⠑" }, { "input": "retentively", "output": "⠗⠑⠞⠢⠞⠊⠧⠑⠇⠽" }, { "input": "retentiveness", "output": "⠗⠑⠞⠢⠞⠊⠧⠑⠰⠎" }, { "input": "retentiveness's", "output": "⠗⠑⠞⠢⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "retest", "output": "â —â ‘â žâ ‘â Œ" }, { "input": "retest's", "output": "⠗⠑⠞⠑⠌⠄⠎" }, { "input": "retested", "output": "⠗⠑⠞⠑⠌⠫" }, { "input": "retesting", "output": "⠗⠑⠞⠑⠌⠌" }, { "input": "retests", "output": "⠗⠑⠞⠑⠌⠎" }, { "input": "rethink", "output": "⠗⠑⠹⠔⠅" }, { "input": "rethink's", "output": "⠗⠑⠹⠔⠅⠄⠎" }, { "input": "rethinking", "output": "⠗⠑⠹⠔⠅⠌" }, { "input": "rethinks", "output": "⠗⠑⠹⠔⠅⠎" }, { "input": "rethought", "output": "â —â ‘â ¹â â ³" }, { "input": "reticence", "output": "⠗⠑⠞⠊⠉⠰⠑" }, { "input": "reticence's", "output": "⠗⠑⠞⠊⠉⠰⠑⠄⠎" }, { "input": "reticent", "output": "⠗⠑⠞⠊⠉⠢⠞" }, { "input": "retie", "output": "â —â ‘â žâ Šâ ‘" }, { "input": "retied", "output": "â —â ‘â žâ Šâ «" }, { "input": "reties", "output": "â —â ‘â žâ Šâ ‘â Ž" }, { "input": "retina", "output": "â —â ‘â žâ ”â " }, { "input": "retina's", "output": "â —â ‘â žâ ”â â „â Ž" }, { "input": "retinal", "output": "â —â ‘â žâ ”â â ‡" }, { "input": "retinas", "output": "â —â ‘â žâ ”â â Ž" }, { "input": "retinue", "output": "⠗⠑⠞⠔⠥⠑" }, { "input": "retinue's", "output": "⠗⠑⠞⠔⠥⠑⠄⠎" }, { "input": "retinues", "output": "⠗⠑⠞⠔⠥⠑⠎" }, { "input": "retire", "output": "â —â ‘â žâ Šâ —â ‘" }, { "input": "retired", "output": "â —â ‘â žâ Šâ —â «" }, { "input": "retiree", "output": "â —â ‘â žâ Šâ —â ‘â ‘" }, { "input": "retiree's", "output": "â —â ‘â žâ Šâ —â ‘â ‘â „â Ž" }, { "input": "retirees", "output": "â —â ‘â žâ Šâ —â ‘â ‘â Ž" }, { "input": "retirement", "output": "â —â ‘â žâ Šâ —â ‘â °â ž" }, { "input": "retirement's", "output": "â —â ‘â žâ Šâ —â ‘â °â žâ „â Ž" }, { "input": "retirements", "output": "â —â ‘â žâ Šâ —â ‘â °â žâ Ž" }, { "input": "retires", "output": "â —â ‘â žâ Šâ —â ‘â Ž" }, { "input": "retiring", "output": "â —â ‘â žâ Šâ —â Œ" }, { "input": "retold", "output": "⠗⠑⠞⠕⠇⠙" }, { "input": "retook", "output": "â —â ‘â žâ •â •â …" }, { "input": "retool", "output": "â —â ‘â žâ •â •â ‡" }, { "input": "retooled", "output": "⠗⠑⠞⠕⠕⠇⠫" }, { "input": "retooling", "output": "⠗⠑⠞⠕⠕⠇⠌" }, { "input": "retools", "output": "⠗⠑⠞⠕⠕⠇⠎" }, { "input": "retort", "output": "â —â ‘â žâ •â —â ž" }, { "input": "retort's", "output": "â —â ‘â žâ •â —â žâ „â Ž" }, { "input": "retorted", "output": "â —â ‘â žâ •â —â žâ «" }, { "input": "retorting", "output": "â —â ‘â žâ •â —â žâ Œ" }, { "input": "retorts", "output": "â —â ‘â žâ •â —â žâ Ž" }, { "input": "retouch", "output": "⠗⠑⠞⠳⠡" }, { "input": "retouch's", "output": "⠗⠑⠞⠳⠡⠄⠎" }, { "input": "retouched", "output": "⠗⠑⠞⠳⠡⠫" }, { "input": "retouches", "output": "⠗⠑⠞⠳⠡⠑⠎" }, { "input": "retouching", "output": "⠗⠑⠞⠳⠡⠌" }, { "input": "retrace", "output": "â —â ‘â žâ —â â ‰â ‘" }, { "input": "retraced", "output": "â —â ‘â žâ —â â ‰â «" }, { "input": "retraces", "output": "â —â ‘â žâ —â â ‰â ‘â Ž" }, { "input": "retracing", "output": "â —â ‘â žâ —â â ‰â Œ" }, { "input": "retract", "output": "â —â ‘â žâ —â â ‰â ž" }, { "input": "retractable", "output": "â —â ‘â žâ —â â ‰â žâ â ¼" }, { "input": "retracted", "output": "â —â ‘â žâ —â â ‰â žâ «" }, { "input": "retractile", "output": "â —â ‘â žâ —â â ‰â žâ Šâ ‡â ‘" }, { "input": "retracting", "output": "â —â ‘â žâ —â â ‰â žâ Œ" }, { "input": "retraction", "output": "â —â ‘â žâ —â â ‰â °â " }, { "input": "retraction's", "output": "â —â ‘â žâ —â â ‰â °â â „â Ž" }, { "input": "retractions", "output": "â —â ‘â žâ —â â ‰â °â â Ž" }, { "input": "retracts", "output": "â —â ‘â žâ —â â ‰â žâ Ž" }, { "input": "retrain", "output": "â —â ‘â žâ —â â ”" }, { "input": "retrained", "output": "â —â ‘â žâ —â â ”â «" }, { "input": "retraining", "output": "â —â ‘â žâ —â â ”â Œ" }, { "input": "retrains", "output": "â —â ‘â žâ —â â ”â Ž" }, { "input": "retread", "output": "â —â ‘â žâ —â ‚â ™" }, { "input": "retread's", "output": "⠗⠑⠞⠗⠂⠙⠄⠎" }, { "input": "retreaded", "output": "⠗⠑⠞⠗⠂⠙⠫" }, { "input": "retreading", "output": "⠗⠑⠞⠗⠂⠙⠌" }, { "input": "retreads", "output": "⠗⠑⠞⠗⠂⠙⠎" }, { "input": "retreat", "output": "â —â ‘â žâ —â ‚â ž" }, { "input": "retreat's", "output": "â —â ‘â žâ —â ‚â žâ „â Ž" }, { "input": "retreated", "output": "â —â ‘â žâ —â ‚â žâ «" }, { "input": "retreating", "output": "â —â ‘â žâ —â ‚â žâ Œ" }, { "input": "retreats", "output": "â —â ‘â žâ —â ‚â žâ Ž" }, { "input": "retrench", "output": "⠗⠑⠞⠗⠢⠡" }, { "input": "retrenched", "output": "⠗⠑⠞⠗⠢⠡⠫" }, { "input": "retrenches", "output": "⠗⠑⠞⠗⠢⠡⠑⠎" }, { "input": "retrenching", "output": "⠗⠑⠞⠗⠢⠡⠌" }, { "input": "retrenchment", "output": "⠗⠑⠞⠗⠢⠡⠰⠞" }, { "input": "retrenchment's", "output": "⠗⠑⠞⠗⠢⠡⠰⠞⠄⠎" }, { "input": "retrenchments", "output": "⠗⠑⠞⠗⠢⠡⠰⠞⠎" }, { "input": "retrial", "output": "â —â ‘â žâ —â Šâ â ‡" }, { "input": "retrial's", "output": "â —â ‘â žâ —â Šâ â ‡â „â Ž" }, { "input": "retrials", "output": "â —â ‘â žâ —â Šâ â ‡â Ž" }, { "input": "retribution", "output": "⠗⠑⠞⠗⠊⠃⠥⠰â " }, { "input": "retribution's", "output": "⠗⠑⠞⠗⠊⠃⠥⠰â â „â Ž" }, { "input": "retributions", "output": "⠗⠑⠞⠗⠊⠃⠥⠰â â Ž" }, { "input": "retributive", "output": "⠗⠑⠞⠗⠊⠃⠥⠞⠊⠧⠑" }, { "input": "retried", "output": "â —â ‘â žâ —â Šâ «" }, { "input": "retries", "output": "â —â ‘â žâ —â Šâ ‘â Ž" }, { "input": "retrievable", "output": "â —â ‘â žâ —â Šâ ‘â §â â ¼" }, { "input": "retrieval", "output": "â —â ‘â žâ —â Šâ ‘â §â â ‡" }, { "input": "retrieval's", "output": "â —â ‘â žâ —â Šâ ‘â §â â ‡â „â Ž" }, { "input": "retrievals", "output": "â —â ‘â žâ —â Šâ ‘â §â â ‡â Ž" }, { "input": "retrieve", "output": "â —â ‘â žâ —â Šâ ‘â §â ‘" }, { "input": "retrieve's", "output": "â —â ‘â žâ —â Šâ ‘â §â ‘â „â Ž" }, { "input": "retrieved", "output": "â —â ‘â žâ —â Šâ ‘â §â «" }, { "input": "retriever", "output": "â —â ‘â žâ —â Šâ ‘â §â »" }, { "input": "retriever's", "output": "⠗⠑⠞⠗⠊⠑⠧⠻⠄⠎" }, { "input": "retrievers", "output": "⠗⠑⠞⠗⠊⠑⠧⠻⠎" }, { "input": "retrieves", "output": "â —â ‘â žâ —â Šâ ‘â §â ‘â Ž" }, { "input": "retrieving", "output": "â —â ‘â žâ —â Šâ ‘â §â Œ" }, { "input": "retro's", "output": "â —â ‘â žâ —â •â „â Ž" }, { "input": "retroactive", "output": "â —â ‘â žâ —â •â â ‰â žâ Šâ §â ‘" }, { "input": "retroactively", "output": "â —â ‘â žâ —â •â â ‰â žâ Šâ §â ‘⠇⠽" }, { "input": "retrod", "output": "â —â ‘â žâ —â •â ™" }, { "input": "retrodden", "output": "⠗⠑⠞⠗⠕⠲⠢" }, { "input": "retrofire", "output": "â —â ‘â žâ —â •â ‹â Šâ —â ‘" }, { "input": "retrofired", "output": "â —â ‘â žâ —â •â ‹â Šâ —â «" }, { "input": "retrofires", "output": "â —â ‘â žâ —â •â ‹â Šâ —â ‘â Ž" }, { "input": "retrofiring", "output": "â —â ‘â žâ —â •â ‹â Šâ —â Œ" }, { "input": "retrofit", "output": "â —â ‘â žâ —â •â ‹â Šâ ž" }, { "input": "retrofit's", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ „â Ž" }, { "input": "retrofits", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ Ž" }, { "input": "retrofitted", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ žâ «" }, { "input": "retrofitting", "output": "â —â ‘â žâ —â •â ‹â Šâ žâ žâ Œ" }, { "input": "retrograde", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â ‘" }, { "input": "retrograded", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â «" }, { "input": "retrogrades", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â ‘â Ž" }, { "input": "retrograding", "output": "⠗⠑⠞⠗⠕⠛⠗â â ™â Œ" }, { "input": "retrogress", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎" }, { "input": "retrogressed", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠫" }, { "input": "retrogresses", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠑⠎" }, { "input": "retrogressing", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠌" }, { "input": "retrogression", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠨â " }, { "input": "retrogression's", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠨â â „â Ž" }, { "input": "retrogressive", "output": "⠗⠑⠞⠗⠕⠛⠗⠑⠎⠎⠊⠧⠑" }, { "input": "retrorocket", "output": "⠗⠑⠞⠗⠕⠗⠕⠉⠅⠑⠞" }, { "input": "retrorocket's", "output": "⠗⠑⠞⠗⠕⠗⠕⠉⠅⠑⠞⠄⠎" }, { "input": "retrorockets", "output": "⠗⠑⠞⠗⠕⠗⠕⠉⠅⠑⠞⠎" }, { "input": "retros", "output": "â —â ‘â žâ —â •â Ž" }, { "input": "retrospect", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞" }, { "input": "retrospect's", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠄⠎" }, { "input": "retrospected", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠫" }, { "input": "retrospecting", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠌" }, { "input": "retrospection", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠰â " }, { "input": "retrospection's", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠰â â „â Ž" }, { "input": "retrospective", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑" }, { "input": "retrospective's", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑⠄⠎" }, { "input": "retrospectively", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑⠇⠽" }, { "input": "retrospectives", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠊⠧⠑⠎" }, { "input": "retrospects", "output": "â —â ‘â žâ —â •â Žâ â ‘⠉⠞⠎" }, { "input": "retrovirus", "output": "⠗⠑⠞⠗⠕⠧⠊⠗⠥⠎" }, { "input": "retrovirus's", "output": "⠗⠑⠞⠗⠕⠧⠊⠗⠥⠎⠄⠎" }, { "input": "retroviruses", "output": "⠗⠑⠞⠗⠕⠧⠊⠗⠥⠎⠑⠎" }, { "input": "retry", "output": "â —â ‘â žâ —â ½" }, { "input": "retrying", "output": "⠗⠑⠞⠗⠽⠌" }, { "input": "retsina's", "output": "â —â ‘â žâ Žâ ”â â „â Ž" }, { "input": "return", "output": "⠗⠑⠞⠥⠗â " }, { "input": "return's", "output": "⠗⠑⠞⠥⠗â â „â Ž" }, { "input": "returnable", "output": "⠗⠑⠞⠥⠗â â â ¼" }, { "input": "returnable's", "output": "⠗⠑⠞⠥⠗â â â ¼â „â Ž" }, { "input": "returnables", "output": "⠗⠑⠞⠥⠗â â â ¼â Ž" }, { "input": "returned", "output": "⠗⠑⠞⠥⠗â â «" }, { "input": "returnee", "output": "⠗⠑⠞⠥⠗â â ‘â ‘" }, { "input": "returnee's", "output": "⠗⠑⠞⠥⠗â â ‘â ‘â „â Ž" }, { "input": "returnees", "output": "⠗⠑⠞⠥⠗â â ‘â ‘â Ž" }, { "input": "returning", "output": "⠗⠑⠞⠥⠗â â Œ" }, { "input": "returns", "output": "⠗⠑⠞⠥⠗â â Ž" }, { "input": "retying", "output": "⠗⠑⠞⠽⠌" }, { "input": "retype", "output": "â —â ‘â žâ ½â â ‘" }, { "input": "retyped", "output": "â —â ‘â žâ ½â â «" }, { "input": "retypes", "output": "â —â ‘â žâ ½â â ‘â Ž" }, { "input": "retyping", "output": "â —â ‘â žâ ½â â Œ" }, { "input": "reunification", "output": "â —â ‘â ¥â â Šâ ‹â Šâ ‰â  â " }, { "input": "reunification's", "output": "â —â ‘â ¥â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "reunified", "output": "â —â ‘â ¥â â Šâ ‹â Šâ «" }, { "input": "reunifies", "output": "â —â ‘â ¥â â Šâ ‹â Šâ ‘â Ž" }, { "input": "reunify", "output": "â —â ‘â ¥â â Šâ ‹â ½" }, { "input": "reunifying", "output": "â —â ‘â ¥â â Šâ ‹â ½â Œ" }, { "input": "reunion", "output": "â —â ‘â ¥â â Šâ •â " }, { "input": "reunion's", "output": "â —â ‘â ¥â â Šâ •â â „â Ž" }, { "input": "reunions", "output": "â —â ‘â ¥â â Šâ •â â Ž" }, { "input": "reunite", "output": "â —â ‘â ¥â â Šâ žâ ‘" }, { "input": "reunited", "output": "â —â ‘â ¥â â Šâ žâ «" }, { "input": "reunites", "output": "â —â ‘â ¥â â Šâ žâ ‘â Ž" }, { "input": "reuniting", "output": "â —â ‘â ¥â â Šâ žâ Œ" }, { "input": "reupholster", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻" }, { "input": "reupholstered", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻⠫" }, { "input": "reupholstering", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻⠌" }, { "input": "reupholsters", "output": "â —â ‘â ¥â â “⠕⠇⠌⠻⠎" }, { "input": "reusable", "output": "⠗⠑⠥⠎â â ¼" }, { "input": "reuse", "output": "⠗⠑⠥⠎⠑" }, { "input": "reuse's", "output": "⠗⠑⠥⠎⠑⠄⠎" }, { "input": "reused", "output": "⠗⠑⠥⠎⠫" }, { "input": "reuses", "output": "⠗⠑⠥⠎⠑⠎" }, { "input": "reusing", "output": "⠗⠑⠥⠎⠌" }, { "input": "rev", "output": "â —â ‘â §" }, { "input": "rev's", "output": "â —â ‘â §â „â Ž" }, { "input": "revaluation", "output": "â —â ‘â §â â ‡â ¥â  â " }, { "input": "revaluation's", "output": "â —â ‘â §â â ‡â ¥â  â â „â Ž" }, { "input": "revaluations", "output": "â —â ‘â §â â ‡â ¥â  â â Ž" }, { "input": "revalue", "output": "â —â ‘â §â â ‡â ¥â ‘" }, { "input": "revalued", "output": "â —â ‘â §â â ‡â ¥â «" }, { "input": "revalues", "output": "â —â ‘â §â â ‡â ¥â ‘â Ž" }, { "input": "revaluing", "output": "â —â ‘â §â â ‡â ¥â Œ" }, { "input": "revamp", "output": "â —â ‘â §â â â " }, { "input": "revamp's", "output": "â —â ‘â §â â â â „â Ž" }, { "input": "revamped", "output": "â —â ‘â §â â â â «" }, { "input": "revamping", "output": "â —â ‘â §â â â â Œ" }, { "input": "revamping's", "output": "â —â ‘â §â â â â Œâ „â Ž" }, { "input": "revamps", "output": "â —â ‘â §â â â â Ž" }, { "input": "reveal", "output": "â —â ‘â §â ‚â ‡" }, { "input": "revealed", "output": "⠗⠑⠧⠂⠇⠫" }, { "input": "revealing", "output": "⠗⠑⠧⠂⠇⠌" }, { "input": "revealings", "output": "⠗⠑⠧⠂⠇⠌⠎" }, { "input": "reveals", "output": "⠗⠑⠧⠂⠇⠎" }, { "input": "reveille", "output": "⠗⠑⠧⠑⠊⠇⠇⠑" }, { "input": "reveille's", "output": "⠗⠑⠧⠑⠊⠇⠇⠑⠄⠎" }, { "input": "revel", "output": "â —â ‘â §â ‘â ‡" }, { "input": "revel's", "output": "⠗⠑⠧⠑⠇⠄⠎" }, { "input": "revelation", "output": "⠗⠑⠧⠑⠇⠠â " }, { "input": "revelation's", "output": "⠗⠑⠧⠑⠇⠠â â „â Ž" }, { "input": "revelations", "output": "⠗⠑⠧⠑⠇⠠â â Ž" }, { "input": "reveled", "output": "⠗⠑⠧⠑⠇⠫" }, { "input": "reveler", "output": "⠗⠑⠧⠑⠇⠻" }, { "input": "reveler's", "output": "⠗⠑⠧⠑⠇⠻⠄⠎" }, { "input": "revelers", "output": "⠗⠑⠧⠑⠇⠻⠎" }, { "input": "reveling", "output": "⠗⠑⠧⠑⠇⠌" }, { "input": "revelings", "output": "⠗⠑⠧⠑⠇⠌⠎" }, { "input": "revelries", "output": "⠗⠑⠧⠑⠇⠗⠊⠑⠎" }, { "input": "revelry", "output": "⠗⠑⠧⠑⠇⠗⠽" }, { "input": "revelry's", "output": "⠗⠑⠧⠑⠇⠗⠽⠄⠎" }, { "input": "revels", "output": "⠗⠑⠧⠑⠇⠎" }, { "input": "revenge", "output": "⠗⠑⠧⠢⠛⠑" }, { "input": "revenge's", "output": "⠗⠑⠧⠢⠛⠑⠄⠎" }, { "input": "revenged", "output": "⠗⠑⠧⠢⠛⠫" }, { "input": "revengeful", "output": "⠗⠑⠧⠢⠛⠑⠰⠇" }, { "input": "revengefully", "output": "⠗⠑⠧⠢⠛⠑⠰⠇⠇⠽" }, { "input": "revenges", "output": "⠗⠑⠧⠢⠛⠑⠎" }, { "input": "revenging", "output": "⠗⠑⠧⠢⠛⠌" }, { "input": "revenue", "output": "⠗⠑⠧⠢⠥⠑" }, { "input": "revenue's", "output": "⠗⠑⠧⠢⠥⠑⠄⠎" }, { "input": "revenuer", "output": "⠗⠑⠧⠢⠥⠻" }, { "input": "revenuer's", "output": "⠗⠑⠧⠢⠥⠻⠄⠎" }, { "input": "revenuers", "output": "⠗⠑⠧⠢⠥⠻⠎" }, { "input": "revenues", "output": "⠗⠑⠧⠢⠥⠑⠎" }, { "input": "reverberate", "output": "⠗⠑⠧⠻⠃⠻â â žâ ‘" }, { "input": "reverberated", "output": "⠗⠑⠧⠻⠃⠻â â žâ «" }, { "input": "reverberates", "output": "⠗⠑⠧⠻⠃⠻â â žâ ‘â Ž" }, { "input": "reverberating", "output": "⠗⠑⠧⠻⠃⠻â â žâ Œ" }, { "input": "reverberation", "output": "⠗⠑⠧⠻⠃⠻⠠â " }, { "input": "reverberation's", "output": "⠗⠑⠧⠻⠃⠻⠠â â „â Ž" }, { "input": "reverberations", "output": "⠗⠑⠧⠻⠃⠻⠠â â Ž" }, { "input": "revere", "output": "⠗⠑⠧⠻⠑" }, { "input": "revered", "output": "⠗⠑⠧⠻⠫" }, { "input": "reverence", "output": "â —â â ‘â °â ‘" }, { "input": "reverence's", "output": "â —â â ‘â °â ‘â „â Ž" }, { "input": "reverenced", "output": "â —â â ‘â °â ‘â ™" }, { "input": "reverences", "output": "â —â â ‘â °â ‘â Ž" }, { "input": "reverencing", "output": "â —â â ‘⠢⠉⠌" }, { "input": "reverend", "output": "â —â â ‘⠢⠙" }, { "input": "reverend's", "output": "â —â â ‘⠢⠙⠄⠎" }, { "input": "reverends", "output": "â —â â ‘⠢⠙⠎" }, { "input": "reverent", "output": "â —â â ‘⠢⠞" }, { "input": "reverential", "output": "â —â â ‘⠢⠞⠊â â ‡" }, { "input": "reverently", "output": "â —â â ‘⠢⠞⠇⠽" }, { "input": "reveres", "output": "⠗⠑⠧⠻⠑⠎" }, { "input": "reverie", "output": "â —â â ‘â Šâ ‘" }, { "input": "reverie's", "output": "â —â â ‘â Šâ ‘â „â Ž" }, { "input": "reveries", "output": "â —â â ‘â Šâ ‘â Ž" }, { "input": "revering", "output": "⠗⠑⠧⠻⠌" }, { "input": "revers", "output": "⠗⠑⠧⠻⠎" }, { "input": "revers's", "output": "⠗⠑⠧⠻⠎⠄⠎" }, { "input": "reversal", "output": "⠗⠑⠧⠻⠎â â ‡" }, { "input": "reversal's", "output": "⠗⠑⠧⠻⠎â â ‡â „â Ž" }, { "input": "reversals", "output": "⠗⠑⠧⠻⠎â â ‡â Ž" }, { "input": "reverse", "output": "⠗⠑⠧⠻⠎⠑" }, { "input": "reverse's", "output": "⠗⠑⠧⠻⠎⠑⠄⠎" }, { "input": "reversed", "output": "⠗⠑⠧⠻⠎⠫" }, { "input": "reversely", "output": "⠗⠑⠧⠻⠎⠑⠇⠽" }, { "input": "reverses", "output": "⠗⠑⠧⠻⠎⠑⠎" }, { "input": "reversible", "output": "⠗⠑⠧⠻⠎⠊⠼" }, { "input": "reversibly", "output": "⠗⠑⠧⠻⠎⠊⠃⠇⠽" }, { "input": "reversing", "output": "⠗⠑⠧⠻⠎⠌" }, { "input": "reversion", "output": "⠗⠑⠧⠻⠨â " }, { "input": "reversion's", "output": "⠗⠑⠧⠻⠨â â „â Ž" }, { "input": "revert", "output": "⠗⠑⠧⠻⠞" }, { "input": "reverted", "output": "⠗⠑⠧⠻⠞⠫" }, { "input": "revertible", "output": "⠗⠑⠧⠻⠞⠊⠼" }, { "input": "reverting", "output": "⠗⠑⠧⠻⠞⠌" }, { "input": "reverts", "output": "⠗⠑⠧⠻⠞⠎" }, { "input": "revetment", "output": "â —â ‘â §â ‘â žâ °â ž" }, { "input": "revetment's", "output": "â —â ‘â §â ‘â žâ °â žâ „â Ž" }, { "input": "revetments", "output": "â —â ‘â §â ‘â žâ °â žâ Ž" }, { "input": "review", "output": "â —â ‘â §â Šâ ‘â º" }, { "input": "review's", "output": "⠗⠑⠧⠊⠑⠺⠄⠎" }, { "input": "reviewed", "output": "⠗⠑⠧⠊⠑⠺⠫" }, { "input": "reviewer", "output": "⠗⠑⠧⠊⠑⠺⠻" }, { "input": "reviewer's", "output": "⠗⠑⠧⠊⠑⠺⠻⠄⠎" }, { "input": "reviewers", "output": "⠗⠑⠧⠊⠑⠺⠻⠎" }, { "input": "reviewing", "output": "⠗⠑⠧⠊⠑⠺⠌" }, { "input": "reviews", "output": "⠗⠑⠧⠊⠑⠺⠎" }, { "input": "revile", "output": "⠗⠑⠧⠊⠇⠑" }, { "input": "reviled", "output": "⠗⠑⠧⠊⠇⠫" }, { "input": "revilement", "output": "⠗⠑⠧⠊⠇⠑⠰⠞" }, { "input": "revilement's", "output": "⠗⠑⠧⠊⠇⠑⠰⠞⠄⠎" }, { "input": "reviler", "output": "⠗⠑⠧⠊⠇⠻" }, { "input": "reviler's", "output": "⠗⠑⠧⠊⠇⠻⠄⠎" }, { "input": "revilers", "output": "⠗⠑⠧⠊⠇⠻⠎" }, { "input": "reviles", "output": "⠗⠑⠧⠊⠇⠑⠎" }, { "input": "reviling", "output": "⠗⠑⠧⠊⠇⠌" }, { "input": "revise", "output": "â —â ‘â §â Šâ Žâ ‘" }, { "input": "revise's", "output": "â —â ‘â §â Šâ Žâ ‘â „â Ž" }, { "input": "revised", "output": "â —â ‘â §â Šâ Žâ «" }, { "input": "reviser", "output": "â —â ‘â §â Šâ Žâ »" }, { "input": "reviser's", "output": "⠗⠑⠧⠊⠎⠻⠄⠎" }, { "input": "revisers", "output": "⠗⠑⠧⠊⠎⠻⠎" }, { "input": "revises", "output": "â —â ‘â §â Šâ Žâ ‘â Ž" }, { "input": "revising", "output": "â —â ‘â §â Šâ Žâ Œ" }, { "input": "revision", "output": "â —â ‘â §â Šâ ¨â " }, { "input": "revision's", "output": "â —â ‘â §â Šâ ¨â â „â Ž" }, { "input": "revisionism's", "output": "â —â ‘â §â Šâ ¨â â Šâ Žâ â „â Ž" }, { "input": "revisions", "output": "â —â ‘â §â Šâ ¨â â Ž" }, { "input": "revisit", "output": "â —â ‘â §â Šâ Žâ Šâ ž" }, { "input": "revisited", "output": "â —â ‘â §â Šâ Žâ Šâ žâ «" }, { "input": "revisiting", "output": "â —â ‘â §â Šâ Žâ Šâ žâ Œ" }, { "input": "revisits", "output": "â —â ‘â §â Šâ Žâ Šâ žâ Ž" }, { "input": "revitalization", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ  â " }, { "input": "revitalization's", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "revitalize", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "revitalized", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ «" }, { "input": "revitalizes", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "revitalizing", "output": "â —â ‘â §â Šâ žâ â ‡â Šâ µâ Œ" }, { "input": "revival", "output": "â —â ‘â §â Šâ §â â ‡" }, { "input": "revival's", "output": "â —â ‘â §â Šâ §â â ‡â „â Ž" }, { "input": "revivalism's", "output": "â —â ‘â §â Šâ §â â ‡â Šâ Žâ â „â Ž" }, { "input": "revivalist", "output": "â —â ‘â §â Šâ §â â ‡â Šâ Œ" }, { "input": "revivalist's", "output": "â —â ‘â §â Šâ §â â ‡â Šâ Œâ „â Ž" }, { "input": "revivalists", "output": "â —â ‘â §â Šâ §â â ‡â Šâ Œâ Ž" }, { "input": "revivals", "output": "â —â ‘â §â Šâ §â â ‡â Ž" }, { "input": "revive", "output": "â —â ‘â §â Šâ §â ‘" }, { "input": "revived", "output": "â —â ‘â §â Šâ §â «" }, { "input": "revives", "output": "â —â ‘â §â Šâ §â ‘â Ž" }, { "input": "revivification", "output": "⠗⠑⠧⠊⠧⠊⠋⠊⠉⠠â " }, { "input": "revivification's", "output": "⠗⠑⠧⠊⠧⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "revivified", "output": "â —â ‘â §â Šâ §â Šâ ‹â Šâ «" }, { "input": "revivifies", "output": "â —â ‘â §â Šâ §â Šâ ‹â Šâ ‘â Ž" }, { "input": "revivify", "output": "â —â ‘â §â Šâ §â Šâ ‹â ½" }, { "input": "revivifying", "output": "⠗⠑⠧⠊⠧⠊⠋⠽⠌" }, { "input": "reviving", "output": "â —â ‘â §â Šâ §â Œ" }, { "input": "revocable", "output": "â —â ‘â §â •â ‰â â ¼" }, { "input": "revocation", "output": "⠗⠑⠧⠕⠉⠠â " }, { "input": "revocation's", "output": "⠗⠑⠧⠕⠉⠠â â „â Ž" }, { "input": "revocations", "output": "⠗⠑⠧⠕⠉⠠â â Ž" }, { "input": "revoke", "output": "â —â ‘â §â •â …â ‘" }, { "input": "revoked", "output": "â —â ‘â §â •â …â «" }, { "input": "revokes", "output": "â —â ‘â §â •â …â ‘â Ž" }, { "input": "revoking", "output": "â —â ‘â §â •â …â Œ" }, { "input": "revolt", "output": "⠗⠑⠧⠕⠇⠞" }, { "input": "revolt's", "output": "⠗⠑⠧⠕⠇⠞⠄⠎" }, { "input": "revolted", "output": "⠗⠑⠧⠕⠇⠞⠫" }, { "input": "revolting", "output": "⠗⠑⠧⠕⠇⠞⠌" }, { "input": "revoltingly", "output": "⠗⠑⠧⠕⠇⠞⠌⠇⠽" }, { "input": "revolts", "output": "⠗⠑⠧⠕⠇⠞⠎" }, { "input": "revolution", "output": "⠗⠑⠧⠕⠇⠥⠰â " }, { "input": "revolution's", "output": "⠗⠑⠧⠕⠇⠥⠰â â „â Ž" }, { "input": "revolutionaries", "output": "⠗⠑⠧⠕⠇⠥⠰â â œâ Šâ ‘â Ž" }, { "input": "revolutionary", "output": "⠗⠑⠧⠕⠇⠥⠰â â œâ ½" }, { "input": "revolutionary's", "output": "⠗⠑⠧⠕⠇⠥⠰â â œâ ½â „â Ž" }, { "input": "revolutionist", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ Œ" }, { "input": "revolutionist's", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ Œâ „â Ž" }, { "input": "revolutionists", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ Œâ Ž" }, { "input": "revolutionize", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ ‘" }, { "input": "revolutionized", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ «" }, { "input": "revolutionizes", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ ‘â Ž" }, { "input": "revolutionizing", "output": "⠗⠑⠧⠕⠇⠥⠰â â Šâ µâ Œ" }, { "input": "revolutions", "output": "⠗⠑⠧⠕⠇⠥⠰â â Ž" }, { "input": "revolvable", "output": "⠗⠑⠧⠕⠇⠧â â ¼" }, { "input": "revolve", "output": "⠗⠑⠧⠕⠇⠧⠑" }, { "input": "revolved", "output": "⠗⠑⠧⠕⠇⠧⠫" }, { "input": "revolver", "output": "⠗⠑⠧⠕⠇⠧⠻" }, { "input": "revolver's", "output": "⠗⠑⠧⠕⠇⠧⠻⠄⠎" }, { "input": "revolvers", "output": "⠗⠑⠧⠕⠇⠧⠻⠎" }, { "input": "revolves", "output": "⠗⠑⠧⠕⠇⠧⠑⠎" }, { "input": "revolving", "output": "⠗⠑⠧⠕⠇⠧⠌" }, { "input": "revs", "output": "â —â ‘â §â Ž" }, { "input": "revue", "output": "⠗⠑⠧⠥⠑" }, { "input": "revue's", "output": "⠗⠑⠧⠥⠑⠄⠎" }, { "input": "revues", "output": "⠗⠑⠧⠥⠑⠎" }, { "input": "revulsion", "output": "⠗⠑⠧⠥⠇⠨â " }, { "input": "revulsion's", "output": "⠗⠑⠧⠥⠇⠨â â „â Ž" }, { "input": "revved", "output": "â —â ‘â §â §â «" }, { "input": "revving", "output": "â —â ‘â §â §â Œ" }, { "input": "reward", "output": "⠗⠑⠺⠜⠙" }, { "input": "reward's", "output": "⠗⠑⠺⠜⠙⠄⠎" }, { "input": "rewarded", "output": "⠗⠑⠺⠜⠙⠫" }, { "input": "rewarding", "output": "⠗⠑⠺⠜⠙⠌" }, { "input": "rewards", "output": "⠗⠑⠺⠜⠙⠎" }, { "input": "rewarm", "output": "⠗⠑⠺⠜â " }, { "input": "rewarmed", "output": "⠗⠑⠺⠜â â «" }, { "input": "rewarming", "output": "⠗⠑⠺⠜â â Œ" }, { "input": "rewarms", "output": "⠗⠑⠺⠜â â Ž" }, { "input": "rewash", "output": "â —â ‘â ºâ â ©" }, { "input": "rewashed", "output": "â —â ‘â ºâ â ©â «" }, { "input": "rewashes", "output": "â —â ‘â ºâ â ©â ‘â Ž" }, { "input": "rewashing", "output": "â —â ‘â ºâ â ©â Œ" }, { "input": "reweave", "output": "⠗⠑⠺⠂⠧⠑" }, { "input": "reweaves", "output": "⠗⠑⠺⠂⠧⠑⠎" }, { "input": "reweaving", "output": "⠗⠑⠺⠂⠧⠌" }, { "input": "rewed", "output": "⠗⠑⠺⠫" }, { "input": "rewedded", "output": "⠗⠑⠺⠫⠙⠫" }, { "input": "rewedding", "output": "⠗⠑⠺⠫⠙⠌" }, { "input": "reweds", "output": "⠗⠑⠺⠫⠎" }, { "input": "reweigh", "output": "⠗⠑⠺⠑⠊⠣" }, { "input": "reweighed", "output": "⠗⠑⠺⠑⠊⠣⠫" }, { "input": "reweighing", "output": "⠗⠑⠺⠑⠊⠣⠌" }, { "input": "reweighs", "output": "⠗⠑⠺⠑⠊⠣⠎" }, { "input": "rewind", "output": "⠗⠑⠺⠔⠙" }, { "input": "rewind's", "output": "⠗⠑⠺⠔⠙⠄⠎" }, { "input": "rewindable", "output": "⠗⠑⠺⠔⠙â â ¼" }, { "input": "rewinding", "output": "⠗⠑⠺⠔⠙⠌" }, { "input": "rewinds", "output": "⠗⠑⠺⠔⠙⠎" }, { "input": "rewire", "output": "⠗⠑⠺⠊⠗⠑" }, { "input": "rewired", "output": "⠗⠑⠺⠊⠗⠫" }, { "input": "rewires", "output": "⠗⠑⠺⠊⠗⠑⠎" }, { "input": "rewiring", "output": "⠗⠑⠺⠊⠗⠌" }, { "input": "reword", "output": "⠗⠑⠘⠺" }, { "input": "reworded", "output": "⠗⠑⠘⠺⠫" }, { "input": "rewording", "output": "⠗⠑⠘⠺⠌" }, { "input": "rewords", "output": "⠗⠑⠘⠺⠎" }, { "input": "rework", "output": "â —â ‘â â º" }, { "input": "reworked", "output": "â —â ‘â â ºâ «" }, { "input": "reworking", "output": "â —â ‘â â ºâ Œ" }, { "input": "reworks", "output": "â —â ‘â â ºâ Ž" }, { "input": "rewound", "output": "⠗⠑⠺⠨⠙" }, { "input": "rewove", "output": "⠗⠑⠺⠕⠧⠑" }, { "input": "rewoven", "output": "⠗⠑⠺⠕⠧⠢" }, { "input": "rewrite", "output": "⠗⠑⠺⠗⠊⠞⠑" }, { "input": "rewrite's", "output": "⠗⠑⠺⠗⠊⠞⠑⠄⠎" }, { "input": "rewrites", "output": "⠗⠑⠺⠗⠊⠞⠑⠎" }, { "input": "rewriting", "output": "⠗⠑⠺⠗⠊⠞⠌" }, { "input": "rewritten", "output": "⠗⠑⠺⠗⠊⠞⠞⠢" }, { "input": "rewrote", "output": "⠗⠑⠺⠗⠕⠞⠑" }, { "input": "rezone", "output": "â —â ‘â µâ â •" }, { "input": "rezoned", "output": "⠗⠑⠵⠕â â «" }, { "input": "rezones", "output": "â —â ‘â µâ â •â Ž" }, { "input": "rezoning", "output": "⠗⠑⠵⠕â â Œ" }, { "input": "rhapsodic", "output": "â —â “â â â Žâ •⠙⠊⠉" }, { "input": "rhapsodical", "output": "â —â “â â â Žâ •⠙⠊⠉â â ‡" }, { "input": "rhapsodies", "output": "â —â “â â â Žâ •⠙⠊⠑⠎" }, { "input": "rhapsodize", "output": "â —â “â â â Žâ •⠙⠊⠵⠑" }, { "input": "rhapsodized", "output": "â —â “â â â Žâ •⠙⠊⠵⠫" }, { "input": "rhapsodizes", "output": "â —â “â â â Žâ •⠙⠊⠵⠑⠎" }, { "input": "rhapsodizing", "output": "â —â “â â â Žâ •⠙⠊⠵⠌" }, { "input": "rhapsody", "output": "â —â “â â â Žâ •⠙⠽" }, { "input": "rhapsody's", "output": "â —â “â â â Žâ •⠙⠽⠄⠎" }, { "input": "rhea", "output": "â —â “â ‘â " }, { "input": "rhea's", "output": "â —â “â ‘â â „â Ž" }, { "input": "rheas", "output": "â —â “â ‚â Ž" }, { "input": "rhenium", "output": "⠗⠓⠢⠊⠥â " }, { "input": "rhenium's", "output": "⠗⠓⠢⠊⠥â â „â Ž" }, { "input": "rheostat", "output": "â —â “â ‘â •â Œâ â ž" }, { "input": "rheostat's", "output": "â —â “â ‘â •â Œâ â žâ „â Ž" }, { "input": "rheostats", "output": "â —â “â ‘â •â Œâ â žâ Ž" }, { "input": "rhesus", "output": "⠗⠓⠑⠎⠥⠎" }, { "input": "rhesus's", "output": "⠗⠓⠑⠎⠥⠎⠄⠎" }, { "input": "rhesuses", "output": "⠗⠓⠑⠎⠥⠎⠑⠎" }, { "input": "rhetoric", "output": "â —â “â ‘â žâ •â —â Šâ ‰" }, { "input": "rhetoric's", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠄⠎" }, { "input": "rhetorical", "output": "â —â “â ‘â žâ •â —â Šâ ‰â â ‡" }, { "input": "rhetorically", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠠⠽" }, { "input": "rhetorician", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠊â â " }, { "input": "rhetorician's", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠊â â â „â Ž" }, { "input": "rhetoricians", "output": "⠗⠓⠑⠞⠕⠗⠊⠉⠊â â â Ž" }, { "input": "rheum", "output": "â —â “â ‘â ¥â " }, { "input": "rheum's", "output": "â —â “â ‘â ¥â â „â Ž" }, { "input": "rheumatic", "output": "â —â “â ‘â ¥â â â žâ Šâ ‰" }, { "input": "rheumatic's", "output": "â —â “â ‘â ¥â â â žâ Šâ ‰â „â Ž" }, { "input": "rheumatically", "output": "â —â “â ‘â ¥â â â žâ Šâ ‰â  â ½" }, { "input": "rheumatics", "output": "â —â “â ‘â ¥â â â žâ Šâ ‰â Ž" }, { "input": "rheumatism", "output": "â —â “â ‘â ¥â â â žâ Šâ Žâ " }, { "input": "rheumatism's", "output": "â —â “â ‘â ¥â â â žâ Šâ Žâ â „â Ž" }, { "input": "rheumatoid", "output": "â —â “â ‘â ¥â â â žâ •â Šâ ™" }, { "input": "rheumier", "output": "â —â “â ‘â ¥â â Šâ »" }, { "input": "rheumiest", "output": "â —â “â ‘â ¥â â Šâ ‘â Œ" }, { "input": "rheumy", "output": "â —â “â ‘â ¥â â ½" }, { "input": "rhinestone", "output": "⠗⠓⠔⠑⠌â â •" }, { "input": "rhinestone's", "output": "⠗⠓⠔⠑⠌â â •â „â Ž" }, { "input": "rhinestones", "output": "⠗⠓⠔⠑⠌â â •â Ž" }, { "input": "rhinitis", "output": "⠗⠓⠔⠊⠞⠊⠎" }, { "input": "rhinitis's", "output": "⠗⠓⠔⠊⠞⠊⠎⠄⠎" }, { "input": "rhino", "output": "⠗⠓⠔⠕" }, { "input": "rhino's", "output": "⠗⠓⠔⠕⠄⠎" }, { "input": "rhinoceros", "output": "⠗⠓⠔⠕⠉⠻⠕⠎" }, { "input": "rhinoceros's", "output": "⠗⠓⠔⠕⠉⠻⠕⠎⠄⠎" }, { "input": "rhinoceroses", "output": "⠗⠓⠔⠕⠉⠻⠕⠎⠑⠎" }, { "input": "rhinos", "output": "⠗⠓⠔⠕⠎" }, { "input": "rhizome", "output": "⠗⠓⠊⠵⠕â â ‘" }, { "input": "rhizome's", "output": "⠗⠓⠊⠵⠕â â ‘â „â Ž" }, { "input": "rhizomes", "output": "⠗⠓⠊⠵⠕â â ‘â Ž" }, { "input": "rho", "output": "â —â “â •" }, { "input": "rho's", "output": "â —â “â •â „â Ž" }, { "input": "rhodium", "output": "⠗⠓⠕⠙⠊⠥â " }, { "input": "rhodium's", "output": "⠗⠓⠕⠙⠊⠥â â „â Ž" }, { "input": "rhododendron", "output": "⠗⠓⠕⠙⠕⠙⠢⠙⠗⠕â " }, { "input": "rhododendron's", "output": "⠗⠓⠕⠙⠕⠙⠢⠙⠗⠕â â „â Ž" }, { "input": "rhododendrons", "output": "⠗⠓⠕⠙⠕⠙⠢⠙⠗⠕â â Ž" }, { "input": "rhomboid", "output": "â —â “â •â â ƒâ •â Šâ ™" }, { "input": "rhomboid's", "output": "â —â “â •â â ƒâ •⠊⠙⠄⠎" }, { "input": "rhomboidal", "output": "â —â “â •â â ƒâ •â Šâ ™â â ‡" }, { "input": "rhomboids", "output": "â —â “â •â â ƒâ •⠊⠙⠎" }, { "input": "rhombus", "output": "â —â “â •â â ƒâ ¥â Ž" }, { "input": "rhombus's", "output": "â —â “â •â â ƒâ ¥â Žâ „â Ž" }, { "input": "rhombuses", "output": "â —â “â •â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "rhos", "output": "â —â “â •â Ž" }, { "input": "rhubarb", "output": "⠗⠓⠥⠃⠜⠃" }, { "input": "rhubarb's", "output": "⠗⠓⠥⠃⠜⠃⠄⠎" }, { "input": "rhubarbs", "output": "⠗⠓⠥⠃⠜⠃⠎" }, { "input": "rhyme", "output": "â —â “â ½â â ‘" }, { "input": "rhyme's", "output": "â —â “â ½â â ‘â „â Ž" }, { "input": "rhymed", "output": "â —â “â ½â â «" }, { "input": "rhymer", "output": "â —â “â ½â â »" }, { "input": "rhymer's", "output": "â —â “â ½â â »â „â Ž" }, { "input": "rhymers", "output": "â —â “â ½â â »â Ž" }, { "input": "rhymes", "output": "â —â “â ½â â ‘â Ž" }, { "input": "rhymester", "output": "â —â “â ½â â ‘⠌⠻" }, { "input": "rhymester's", "output": "â —â “â ½â â ‘⠌⠻⠄⠎" }, { "input": "rhymesters", "output": "â —â “â ½â â ‘⠌⠻⠎" }, { "input": "rhyming", "output": "â —â “â ½â â Œ" }, { "input": "rhythm", "output": "⠗⠓⠽⠹â " }, { "input": "rhythm's", "output": "⠗⠓⠽⠹â â „â Ž" }, { "input": "rhythmic", "output": "⠗⠓⠽⠹â â Šâ ‰" }, { "input": "rhythmical", "output": "⠗⠓⠽⠹â â Šâ ‰â â ‡" }, { "input": "rhythmically", "output": "⠗⠓⠽⠹â â Šâ ‰â  â ½" }, { "input": "rhythms", "output": "⠗⠓⠽⠹â â Ž" }, { "input": "rial", "output": "â —â Šâ â ‡" }, { "input": "rial's", "output": "â —â Šâ â ‡â „â Ž" }, { "input": "rials", "output": "â —â Šâ â ‡â Ž" }, { "input": "rib", "output": "â —â Šâ ƒ" }, { "input": "rib's", "output": "⠗⠊⠃⠄⠎" }, { "input": "ribald", "output": "â —â Šâ ƒâ â ‡â ™" }, { "input": "ribaldry", "output": "â —â Šâ ƒâ â ‡â ™â —â ½" }, { "input": "ribaldry's", "output": "â —â Šâ ƒâ â ‡â ™â —⠽⠄⠎" }, { "input": "ribbed", "output": "⠗⠊⠆⠫" }, { "input": "ribber", "output": "⠗⠊⠆⠻" }, { "input": "ribber's", "output": "⠗⠊⠆⠻⠄⠎" }, { "input": "ribbers", "output": "⠗⠊⠆⠻⠎" }, { "input": "ribbing", "output": "⠗⠊⠆⠌" }, { "input": "ribbon", "output": "⠗⠊⠆⠕â " }, { "input": "ribbon's", "output": "⠗⠊⠆⠕â â „â Ž" }, { "input": "ribbons", "output": "⠗⠊⠆⠕â â Ž" }, { "input": "riboflavin", "output": "⠗⠊⠃⠕⠋⠇â â §â ”" }, { "input": "riboflavin's", "output": "⠗⠊⠃⠕⠋⠇â â §â ”â „â Ž" }, { "input": "ribs", "output": "⠗⠊⠃⠎" }, { "input": "rice", "output": "⠗⠊⠉⠑" }, { "input": "rice's", "output": "⠗⠊⠉⠑⠄⠎" }, { "input": "riced", "output": "⠗⠊⠉⠫" }, { "input": "ricer", "output": "⠗⠊⠉⠻" }, { "input": "ricer's", "output": "⠗⠊⠉⠻⠄⠎" }, { "input": "ricers", "output": "⠗⠊⠉⠻⠎" }, { "input": "rices", "output": "⠗⠊⠉⠑⠎" }, { "input": "rich", "output": "â —â Šâ ¡" }, { "input": "rich's", "output": "â —â Šâ ¡â „â Ž" }, { "input": "richer", "output": "â —â Šâ ¡â »" }, { "input": "riches", "output": "â —â Šâ ¡â ‘â Ž" }, { "input": "richest", "output": "â —â Šâ ¡â ‘â Œ" }, { "input": "richly", "output": "⠗⠊⠡⠇⠽" }, { "input": "richness", "output": "â —â Šâ ¡â °â Ž" }, { "input": "richness's", "output": "â —â Šâ ¡â °â Žâ „â Ž" }, { "input": "ricing", "output": "⠗⠊⠉⠌" }, { "input": "rick", "output": "⠗⠊⠉⠅" }, { "input": "rick's", "output": "⠗⠊⠉⠅⠄⠎" }, { "input": "ricked", "output": "⠗⠊⠉⠅⠫" }, { "input": "ricketier", "output": "⠗⠊⠉⠅⠑⠞⠊⠻" }, { "input": "ricketiest", "output": "⠗⠊⠉⠅⠑⠞⠊⠑⠌" }, { "input": "rickets", "output": "⠗⠊⠉⠅⠑⠞⠎" }, { "input": "rickets's", "output": "⠗⠊⠉⠅⠑⠞⠎⠄⠎" }, { "input": "rickety", "output": "⠗⠊⠉⠅⠑⠞⠽" }, { "input": "ricking", "output": "⠗⠊⠉⠅⠌" }, { "input": "rickrack", "output": "⠗⠊⠉⠅⠗â â ‰â …" }, { "input": "rickrack's", "output": "⠗⠊⠉⠅⠗â â ‰â …â „â Ž" }, { "input": "ricks", "output": "⠗⠊⠉⠅⠎" }, { "input": "rickshaw", "output": "⠗⠊⠉⠅⠩â â º" }, { "input": "rickshaw's", "output": "⠗⠊⠉⠅⠩â â ºâ „â Ž" }, { "input": "rickshaws", "output": "⠗⠊⠉⠅⠩â â ºâ Ž" }, { "input": "ricochet", "output": "⠗⠊⠉⠕⠡⠑⠞" }, { "input": "ricochet's", "output": "⠗⠊⠉⠕⠡⠑⠞⠄⠎" }, { "input": "ricocheted", "output": "⠗⠊⠉⠕⠡⠑⠞⠫" }, { "input": "ricocheting", "output": "⠗⠊⠉⠕⠡⠑⠞⠌" }, { "input": "ricochets", "output": "⠗⠊⠉⠕⠡⠑⠞⠎" }, { "input": "ricotta", "output": "⠗⠊⠉⠕⠞⠞â " }, { "input": "ricotta's", "output": "⠗⠊⠉⠕⠞⠞â â „â Ž" }, { "input": "rid", "output": "â —â Šâ ™" }, { "input": "riddance", "output": "⠗⠊⠲⠨⠑" }, { "input": "riddance's", "output": "⠗⠊⠲⠨⠑⠄⠎" }, { "input": "ridden", "output": "⠗⠊⠲⠢" }, { "input": "ridding", "output": "⠗⠊⠲⠌" }, { "input": "riddle", "output": "⠗⠊⠲⠇⠑" }, { "input": "riddle's", "output": "⠗⠊⠲⠇⠑⠄⠎" }, { "input": "riddled", "output": "⠗⠊⠲⠇⠫" }, { "input": "riddles", "output": "⠗⠊⠲⠇⠑⠎" }, { "input": "riddling", "output": "⠗⠊⠲⠇⠌" }, { "input": "ride", "output": "⠗⠊⠙⠑" }, { "input": "ride's", "output": "⠗⠊⠙⠑⠄⠎" }, { "input": "rider", "output": "⠗⠊⠙⠻" }, { "input": "rider's", "output": "⠗⠊⠙⠻⠄⠎" }, { "input": "riderless", "output": "⠗⠊⠙⠻⠨⠎" }, { "input": "riders", "output": "⠗⠊⠙⠻⠎" }, { "input": "ridership", "output": "⠗⠊⠙⠻⠩⠊â " }, { "input": "ridership's", "output": "⠗⠊⠙⠻⠩⠊â â „â Ž" }, { "input": "rides", "output": "⠗⠊⠙⠑⠎" }, { "input": "ridge", "output": "⠗⠊⠙⠛⠑" }, { "input": "ridge's", "output": "⠗⠊⠙⠛⠑⠄⠎" }, { "input": "ridged", "output": "⠗⠊⠙⠛⠫" }, { "input": "ridgepole", "output": "⠗⠊⠙⠛⠑â â •⠇⠑" }, { "input": "ridgepole's", "output": "⠗⠊⠙⠛⠑â â •⠇⠑⠄⠎" }, { "input": "ridgepoles", "output": "⠗⠊⠙⠛⠑â â •⠇⠑⠎" }, { "input": "ridges", "output": "⠗⠊⠙⠛⠑⠎" }, { "input": "ridgier", "output": "⠗⠊⠙⠛⠊⠻" }, { "input": "ridgiest", "output": "⠗⠊⠙⠛⠊⠑⠌" }, { "input": "ridging", "output": "⠗⠊⠙⠛⠌" }, { "input": "ridgy", "output": "⠗⠊⠙⠛⠽" }, { "input": "ridicule", "output": "⠗⠊⠙⠊⠉⠥⠇⠑" }, { "input": "ridicule's", "output": "⠗⠊⠙⠊⠉⠥⠇⠑⠄⠎" }, { "input": "ridiculed", "output": "⠗⠊⠙⠊⠉⠥⠇⠫" }, { "input": "ridicules", "output": "⠗⠊⠙⠊⠉⠥⠇⠑⠎" }, { "input": "ridiculing", "output": "⠗⠊⠙⠊⠉⠥⠇⠌" }, { "input": "ridiculous", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎" }, { "input": "ridiculously", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎⠇⠽" }, { "input": "ridiculousness", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎⠰⠎" }, { "input": "ridiculousness's", "output": "⠗⠊⠙⠊⠉⠥⠇⠳⠎⠰⠎⠄⠎" }, { "input": "riding", "output": "⠗⠊⠙⠌" }, { "input": "riding's", "output": "⠗⠊⠙⠌⠄⠎" }, { "input": "rids", "output": "⠗⠊⠙⠎" }, { "input": "rife", "output": "â —â Šâ ‹â ‘" }, { "input": "rifer", "output": "â —â Šâ ‹â »" }, { "input": "rifest", "output": "â —â Šâ ‹â ‘â Œ" }, { "input": "riff", "output": "â —â Šâ ‹â ‹" }, { "input": "riff's", "output": "â —â Šâ ‹â ‹â „â Ž" }, { "input": "riffed", "output": "â —â Šâ –â «" }, { "input": "riffing", "output": "â —â Šâ –â Œ" }, { "input": "riffle", "output": "⠗⠊⠖⠇⠑" }, { "input": "riffle's", "output": "⠗⠊⠖⠇⠑⠄⠎" }, { "input": "riffled", "output": "⠗⠊⠖⠇⠫" }, { "input": "riffles", "output": "⠗⠊⠖⠇⠑⠎" }, { "input": "riffling", "output": "⠗⠊⠖⠇⠌" }, { "input": "riffraff", "output": "â —â Šâ –â —â â ‹â ‹" }, { "input": "riffraff's", "output": "â —â Šâ –â —â â ‹â ‹â „â Ž" }, { "input": "riffs", "output": "â —â Šâ –â Ž" }, { "input": "rifle", "output": "⠗⠊⠋⠇⠑" }, { "input": "rifle's", "output": "⠗⠊⠋⠇⠑⠄⠎" }, { "input": "rifled", "output": "⠗⠊⠋⠇⠫" }, { "input": "rifleman", "output": "⠗⠊⠋⠇⠑â â â " }, { "input": "rifleman's", "output": "⠗⠊⠋⠇⠑â â â â „â Ž" }, { "input": "riflemen", "output": "⠗⠊⠋⠇⠑â â ¢" }, { "input": "rifler", "output": "⠗⠊⠋⠇⠻" }, { "input": "rifler's", "output": "⠗⠊⠋⠇⠻⠄⠎" }, { "input": "riflers", "output": "⠗⠊⠋⠇⠻⠎" }, { "input": "rifles", "output": "⠗⠊⠋⠇⠑⠎" }, { "input": "rifling", "output": "⠗⠊⠋⠇⠌" }, { "input": "rifling's", "output": "⠗⠊⠋⠇⠌⠄⠎" }, { "input": "rift", "output": "â —â Šâ ‹â ž" }, { "input": "rift's", "output": "â —â Šâ ‹â žâ „â Ž" }, { "input": "rifted", "output": "â —â Šâ ‹â žâ «" }, { "input": "rifting", "output": "â —â Šâ ‹â žâ Œ" }, { "input": "rifts", "output": "â —â Šâ ‹â žâ Ž" }, { "input": "rig", "output": "â —â Šâ ›" }, { "input": "rig's", "output": "⠗⠊⠛⠄⠎" }, { "input": "rigatoni", "output": "â —â Šâ ›â â žâ •â â Š" }, { "input": "rigatoni's", "output": "â —â Šâ ›â â žâ •â â Šâ „â Ž" }, { "input": "rigged", "output": "â —â Šâ ¶â «" }, { "input": "rigger", "output": "â —â Šâ ¶â »" }, { "input": "rigger's", "output": "⠗⠊⠶⠻⠄⠎" }, { "input": "riggers", "output": "⠗⠊⠶⠻⠎" }, { "input": "rigging", "output": "â —â Šâ ¶â Œ" }, { "input": "rigging's", "output": "⠗⠊⠶⠌⠄⠎" }, { "input": "right", "output": "â â —" }, { "input": "right's", "output": "â â —â „â Ž" }, { "input": "righted", "output": "â â —â «" }, { "input": "righteous", "output": "â â —⠑⠳⠎" }, { "input": "righteously", "output": "â â —⠑⠳⠎⠇⠽" }, { "input": "righteousness", "output": "â â —⠑⠳⠎⠰⠎" }, { "input": "righteousness's", "output": "â â —⠑⠳⠎⠰⠎⠄⠎" }, { "input": "righter", "output": "â â —â »" }, { "input": "rightest", "output": "â â —â ‘â Œ" }, { "input": "rightful", "output": "â â —â °â ‡" }, { "input": "rightfully", "output": "â â —⠰⠇⠇⠽" }, { "input": "rightfulness", "output": "â â —⠰⠇⠰⠎" }, { "input": "rightfulness's", "output": "â â —⠰⠇⠰⠎⠄⠎" }, { "input": "righting", "output": "â â —â Œ" }, { "input": "rightism", "output": "â â —â Šâ Žâ " }, { "input": "rightism's", "output": "â â —â Šâ Žâ â „â Ž" }, { "input": "rightist", "output": "â â —â Šâ Œ" }, { "input": "rightist's", "output": "â â —⠊⠌⠄⠎" }, { "input": "rightists", "output": "â â —⠊⠌⠎" }, { "input": "rightly", "output": "â â —⠇⠽" }, { "input": "rightmost", "output": "â â —â â •â Œ" }, { "input": "rightness", "output": "â â —â °â Ž" }, { "input": "rightness's", "output": "â â —â °â Žâ „â Ž" }, { "input": "rights", "output": "â â —â Ž" }, { "input": "rightsize", "output": "â â —⠎⠊⠵⠑" }, { "input": "rightsized", "output": "â â —⠎⠊⠵⠫" }, { "input": "rightsizes", "output": "â â —⠎⠊⠵⠑⠎" }, { "input": "rightsizing", "output": "â â —⠎⠊⠵⠌" }, { "input": "rigid", "output": "⠗⠊⠛⠊⠙" }, { "input": "rigidity", "output": "⠗⠊⠛⠊⠙⠰⠽" }, { "input": "rigidity's", "output": "⠗⠊⠛⠊⠙⠰⠽⠄⠎" }, { "input": "rigidly", "output": "⠗⠊⠛⠊⠙⠇⠽" }, { "input": "rigidness", "output": "⠗⠊⠛⠊⠙⠰⠎" }, { "input": "rigidness's", "output": "⠗⠊⠛⠊⠙⠰⠎⠄⠎" }, { "input": "rigmarole", "output": "â —â Šâ ›â â œâ •⠇⠑" }, { "input": "rigmarole's", "output": "â —â Šâ ›â â œâ •⠇⠑⠄⠎" }, { "input": "rigmaroles", "output": "â —â Šâ ›â â œâ •⠇⠑⠎" }, { "input": "rigor", "output": "⠗⠊⠛⠕⠗" }, { "input": "rigor's", "output": "⠗⠊⠛⠕⠗⠄⠎" }, { "input": "rigorous", "output": "⠗⠊⠛⠕⠗⠳⠎" }, { "input": "rigorously", "output": "⠗⠊⠛⠕⠗⠳⠎⠇⠽" }, { "input": "rigorousness", "output": "⠗⠊⠛⠕⠗⠳⠎⠰⠎" }, { "input": "rigorousness's", "output": "⠗⠊⠛⠕⠗⠳⠎⠰⠎⠄⠎" }, { "input": "rigors", "output": "⠗⠊⠛⠕⠗⠎" }, { "input": "rigs", "output": "⠗⠊⠛⠎" }, { "input": "rile", "output": "⠗⠊⠇⠑" }, { "input": "riled", "output": "⠗⠊⠇⠫" }, { "input": "riles", "output": "⠗⠊⠇⠑⠎" }, { "input": "riling", "output": "⠗⠊⠇⠌" }, { "input": "rill", "output": "⠗⠊⠇⠇" }, { "input": "rill's", "output": "⠗⠊⠇⠇⠄⠎" }, { "input": "rills", "output": "⠗⠊⠇⠇⠎" }, { "input": "rim", "output": "â —â Šâ " }, { "input": "rim's", "output": "â —â Šâ â „â Ž" }, { "input": "rime", "output": "â —â Šâ â ‘" }, { "input": "rime's", "output": "â —â Šâ â ‘â „â Ž" }, { "input": "rimed", "output": "â —â Šâ â «" }, { "input": "rimes", "output": "â —â Šâ â ‘â Ž" }, { "input": "riming", "output": "â —â Šâ â Œ" }, { "input": "rimmed", "output": "â —â Šâ â â «" }, { "input": "rimming", "output": "â —â Šâ â â Œ" }, { "input": "rims", "output": "â —â Šâ â Ž" }, { "input": "rind", "output": "⠗⠔⠙" }, { "input": "rind's", "output": "⠗⠔⠙⠄⠎" }, { "input": "rinds", "output": "⠗⠔⠙⠎" }, { "input": "ring", "output": "â —â Œ" }, { "input": "ring's", "output": "⠗⠌⠄⠎" }, { "input": "ringed", "output": "⠗⠌⠫" }, { "input": "ringer", "output": "⠗⠌⠻" }, { "input": "ringer's", "output": "⠗⠌⠻⠄⠎" }, { "input": "ringers", "output": "⠗⠌⠻⠎" }, { "input": "ringgit", "output": "⠗⠌⠛⠊⠞" }, { "input": "ringgit's", "output": "⠗⠌⠛⠊⠞⠄⠎" }, { "input": "ringgits", "output": "⠗⠌⠛⠊⠞⠎" }, { "input": "ringing", "output": "⠗⠌⠌" }, { "input": "ringings", "output": "⠗⠌⠌⠎" }, { "input": "ringleader", "output": "⠗⠌⠇⠂⠙⠻" }, { "input": "ringleader's", "output": "⠗⠌⠇⠂⠙⠻⠄⠎" }, { "input": "ringleaders", "output": "⠗⠌⠇⠂⠙⠻⠎" }, { "input": "ringlet", "output": "⠗⠌⠇⠑⠞" }, { "input": "ringlet's", "output": "⠗⠌⠇⠑⠞⠄⠎" }, { "input": "ringlets", "output": "⠗⠌⠇⠑⠞⠎" }, { "input": "ringlike", "output": "⠗⠌⠇⠊⠅⠑" }, { "input": "ringmaster", "output": "â —â Œâ â â Œâ »" }, { "input": "ringmaster's", "output": "â —â Œâ â â Œâ »â „â Ž" }, { "input": "ringmasters", "output": "â —â Œâ â â Œâ »â Ž" }, { "input": "rings", "output": "⠗⠌⠎" }, { "input": "ringside", "output": "⠗⠌⠎⠊⠙⠑" }, { "input": "ringside's", "output": "⠗⠌⠎⠊⠙⠑⠄⠎" }, { "input": "ringworm", "output": "⠗⠌⠺⠕⠗â " }, { "input": "ringworm's", "output": "⠗⠌⠺⠕⠗â â „â Ž" }, { "input": "rink", "output": "⠗⠔⠅" }, { "input": "rink's", "output": "⠗⠔⠅⠄⠎" }, { "input": "rinks", "output": "⠗⠔⠅⠎" }, { "input": "rinse", "output": "⠗⠔⠎⠑" }, { "input": "rinse's", "output": "⠗⠔⠎⠑⠄⠎" }, { "input": "rinsed", "output": "⠗⠔⠎⠫" }, { "input": "rinses", "output": "⠗⠔⠎⠑⠎" }, { "input": "rinsing", "output": "⠗⠔⠎⠌" }, { "input": "riot", "output": "â —â Šâ •â ž" }, { "input": "riot's", "output": "â —â Šâ •â žâ „â Ž" }, { "input": "rioted", "output": "â —â Šâ •â žâ «" }, { "input": "rioter", "output": "â —â Šâ •â žâ »" }, { "input": "rioter's", "output": "⠗⠊⠕⠞⠻⠄⠎" }, { "input": "rioters", "output": "⠗⠊⠕⠞⠻⠎" }, { "input": "rioting", "output": "â —â Šâ •â žâ Œ" }, { "input": "rioting's", "output": "⠗⠊⠕⠞⠌⠄⠎" }, { "input": "riotous", "output": "⠗⠊⠕⠞⠳⠎" }, { "input": "riots", "output": "â —â Šâ •â žâ Ž" }, { "input": "rip", "output": "â —â Šâ " }, { "input": "rip's", "output": "â —â Šâ â „â Ž" }, { "input": "riparian", "output": "â —â Šâ â œâ Šâ â " }, { "input": "ripe", "output": "â —â Šâ â ‘" }, { "input": "ripely", "output": "â —â Šâ â ‘⠇⠽" }, { "input": "ripen", "output": "â —â Šâ â ¢" }, { "input": "ripened", "output": "â —â Šâ â ¢â «" }, { "input": "ripeness", "output": "â —â Šâ â ‘â °â Ž" }, { "input": "ripeness's", "output": "â —â Šâ â ‘â °â Žâ „â Ž" }, { "input": "ripening", "output": "â —â Šâ â ¢â Œ" }, { "input": "ripens", "output": "â —â Šâ â ¢â Ž" }, { "input": "riper", "output": "â —â Šâ â »" }, { "input": "ripest", "output": "â —â Šâ â ‘â Œ" }, { "input": "ripoff", "output": "â —â Šâ â ·â ‹" }, { "input": "ripoff's", "output": "â —â Šâ â ·â ‹â „â Ž" }, { "input": "ripoffs", "output": "â —â Šâ â ·â ‹â Ž" }, { "input": "riposte", "output": "â —â Šâ â •⠌⠑" }, { "input": "riposte's", "output": "â —â Šâ â •⠌⠑⠄⠎" }, { "input": "riposted", "output": "â —â Šâ â •⠌⠫" }, { "input": "ripostes", "output": "â —â Šâ â •⠌⠑⠎" }, { "input": "riposting", "output": "â —â Šâ â •⠌⠌" }, { "input": "ripped", "output": "â —â Šâ â â «" }, { "input": "ripper", "output": "â —â Šâ â â »" }, { "input": "ripper's", "output": "â —â Šâ â â »â „â Ž" }, { "input": "rippers", "output": "â —â Šâ â â »â Ž" }, { "input": "ripping", "output": "â —â Šâ â â Œ" }, { "input": "ripple", "output": "â —â Šâ â â ‡â ‘" }, { "input": "ripple's", "output": "â —â Šâ â â ‡â ‘â „â Ž" }, { "input": "rippled", "output": "â —â Šâ â â ‡â «" }, { "input": "ripples", "output": "â —â Šâ â â ‡â ‘â Ž" }, { "input": "ripplier", "output": "â —â Šâ â â ‡â Šâ »" }, { "input": "rippliest", "output": "â —â Šâ â â ‡â Šâ ‘â Œ" }, { "input": "rippling", "output": "â —â Šâ â â ‡â Œ" }, { "input": "ripply", "output": "â —â Šâ â â ‡â ½" }, { "input": "rips", "output": "â —â Šâ â Ž" }, { "input": "ripsaw", "output": "â —â Šâ â Žâ â º" }, { "input": "ripsaw's", "output": "â —â Šâ â Žâ â ºâ „â Ž" }, { "input": "ripsaws", "output": "â —â Šâ â Žâ â ºâ Ž" }, { "input": "riptide", "output": "â —â Šâ â žâ Šâ ™â ‘" }, { "input": "riptide's", "output": "â —â Šâ â žâ Šâ ™â ‘â „â Ž" }, { "input": "riptides", "output": "â —â Šâ â žâ Šâ ™â ‘â Ž" }, { "input": "rise", "output": "â —â Šâ Žâ ‘" }, { "input": "rise's", "output": "â —â Šâ Žâ ‘â „â Ž" }, { "input": "risen", "output": "â —â Šâ Žâ ¢" }, { "input": "riser", "output": "â —â Šâ Žâ »" }, { "input": "riser's", "output": "⠗⠊⠎⠻⠄⠎" }, { "input": "risers", "output": "⠗⠊⠎⠻⠎" }, { "input": "rises", "output": "â —â Šâ Žâ ‘â Ž" }, { "input": "risibility", "output": "⠗⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "risibility's", "output": "⠗⠊⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "risible", "output": "â —â Šâ Žâ Šâ ¼" }, { "input": "rising", "output": "â —â Šâ Žâ Œ" }, { "input": "risk", "output": "â —â Šâ Žâ …" }, { "input": "risk's", "output": "â —â Šâ Žâ …â „â Ž" }, { "input": "risked", "output": "â —â Šâ Žâ …â «" }, { "input": "riskier", "output": "â —â Šâ Žâ …â Šâ »" }, { "input": "riskiest", "output": "â —â Šâ Žâ …â Šâ ‘â Œ" }, { "input": "riskiness", "output": "â —â Šâ Žâ …â Šâ °â Ž" }, { "input": "riskiness's", "output": "â —â Šâ Žâ …â Šâ °â Žâ „â Ž" }, { "input": "risking", "output": "â —â Šâ Žâ …â Œ" }, { "input": "risks", "output": "â —â Šâ Žâ …â Ž" }, { "input": "risky", "output": "â —â Šâ Žâ …â ½" }, { "input": "rite", "output": "â —â Šâ žâ ‘" }, { "input": "rite's", "output": "â —â Šâ žâ ‘â „â Ž" }, { "input": "rites", "output": "â —â Šâ žâ ‘â Ž" }, { "input": "ritual", "output": "â —â Šâ žâ ¥â â ‡" }, { "input": "ritual's", "output": "â —â Šâ žâ ¥â â ‡â „â Ž" }, { "input": "ritualism", "output": "â —â Šâ žâ ¥â â ‡â Šâ Žâ " }, { "input": "ritualism's", "output": "â —â Šâ žâ ¥â â ‡â Šâ Žâ â „â Ž" }, { "input": "ritualistic", "output": "â —â Šâ žâ ¥â â ‡â Šâ Œâ Šâ ‰" }, { "input": "ritualized", "output": "â —â Šâ žâ ¥â â ‡â Šâ µâ «" }, { "input": "ritually", "output": "⠗⠊⠞⠥⠠⠽" }, { "input": "rituals", "output": "â —â Šâ žâ ¥â â ‡â Ž" }, { "input": "ritzier", "output": "⠗⠊⠞⠵⠊⠻" }, { "input": "ritziest", "output": "⠗⠊⠞⠵⠊⠑⠌" }, { "input": "ritzy", "output": "⠗⠊⠞⠵⠽" }, { "input": "rival", "output": "â —â Šâ §â â ‡" }, { "input": "rival's", "output": "â —â Šâ §â â ‡â „â Ž" }, { "input": "rivaled", "output": "â —â Šâ §â â ‡â «" }, { "input": "rivaling", "output": "â —â Šâ §â â ‡â Œ" }, { "input": "rivalries", "output": "â —â Šâ §â â ‡â —â Šâ ‘â Ž" }, { "input": "rivalry", "output": "â —â Šâ §â â ‡â —â ½" }, { "input": "rivalry's", "output": "â —â Šâ §â â ‡â —⠽⠄⠎" }, { "input": "rivals", "output": "â —â Šâ §â â ‡â Ž" }, { "input": "rive", "output": "â —â Šâ §â ‘" }, { "input": "rived", "output": "â —â Šâ §â «" }, { "input": "riven", "output": "â —â Šâ §â ¢" }, { "input": "river", "output": "â —â Šâ §â »" }, { "input": "river's", "output": "⠗⠊⠧⠻⠄⠎" }, { "input": "riverbank", "output": "⠗⠊⠧⠻⠃â â â …" }, { "input": "riverbank's", "output": "⠗⠊⠧⠻⠃â â â …â „â Ž" }, { "input": "riverbanks", "output": "⠗⠊⠧⠻⠃â â â …â Ž" }, { "input": "riverbed", "output": "⠗⠊⠧⠻⠃⠫" }, { "input": "riverbed's", "output": "⠗⠊⠧⠻⠃⠫⠄⠎" }, { "input": "riverbeds", "output": "⠗⠊⠧⠻⠃⠫⠎" }, { "input": "riverboat", "output": "⠗⠊⠧⠻⠃⠕â â ž" }, { "input": "riverboat's", "output": "⠗⠊⠧⠻⠃⠕â â žâ „â Ž" }, { "input": "riverboats", "output": "⠗⠊⠧⠻⠃⠕â â žâ Ž" }, { "input": "riverfront", "output": "⠗⠊⠧⠻⠋⠗⠕â â ž" }, { "input": "rivers", "output": "⠗⠊⠧⠻⠎" }, { "input": "riverside", "output": "⠗⠊⠧⠻⠎⠊⠙⠑" }, { "input": "riverside's", "output": "⠗⠊⠧⠻⠎⠊⠙⠑⠄⠎" }, { "input": "riversides", "output": "⠗⠊⠧⠻⠎⠊⠙⠑⠎" }, { "input": "rives", "output": "â —â Šâ §â ‘â Ž" }, { "input": "rivet", "output": "â —â Šâ §â ‘â ž" }, { "input": "rivet's", "output": "â —â Šâ §â ‘â žâ „â Ž" }, { "input": "riveted", "output": "â —â Šâ §â ‘â žâ «" }, { "input": "riveter", "output": "â —â Šâ §â ‘â žâ »" }, { "input": "riveter's", "output": "⠗⠊⠧⠑⠞⠻⠄⠎" }, { "input": "riveters", "output": "⠗⠊⠧⠑⠞⠻⠎" }, { "input": "riveting", "output": "â —â Šâ §â ‘â žâ Œ" }, { "input": "rivets", "output": "â —â Šâ §â ‘â žâ Ž" }, { "input": "riving", "output": "â —â Šâ §â Œ" }, { "input": "rivulet", "output": "⠗⠊⠧⠥⠇⠑⠞" }, { "input": "rivulet's", "output": "⠗⠊⠧⠥⠇⠑⠞⠄⠎" }, { "input": "rivulets", "output": "⠗⠊⠧⠥⠇⠑⠞⠎" }, { "input": "riyal", "output": "â —â Šâ ½â â ‡" }, { "input": "riyal's", "output": "â —â Šâ ½â â ‡â „â Ž" }, { "input": "riyals", "output": "â —â Šâ ½â â ‡â Ž" }, { "input": "roach", "output": "â —â •â â ¡" }, { "input": "roach's", "output": "â —â •â â ¡â „â Ž" }, { "input": "roaches", "output": "â —â •â â ¡â ‘â Ž" }, { "input": "road", "output": "â —â •â â ™" }, { "input": "road's", "output": "â —â •â â ™â „â Ž" }, { "input": "roadbed", "output": "â —â •â â ™â ƒâ «" }, { "input": "roadbed's", "output": "â —â •â â ™â ƒâ «â „â Ž" }, { "input": "roadbeds", "output": "â —â •â â ™â ƒâ «â Ž" }, { "input": "roadblock", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅" }, { "input": "roadblock's", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠄⠎" }, { "input": "roadblocked", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠫" }, { "input": "roadblocking", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠌" }, { "input": "roadblocks", "output": "â —â •â â ™â ƒâ ‡â •⠉⠅⠎" }, { "input": "roadhouse", "output": "â —â •â â ™â “⠳⠎⠑" }, { "input": "roadhouse's", "output": "â —â •â â ™â “⠳⠎⠑⠄⠎" }, { "input": "roadhouses", "output": "â —â •â â ™â “⠳⠎⠑⠎" }, { "input": "roadkill", "output": "â —â •â â ™â …⠊⠇⠇" }, { "input": "roadkill's", "output": "â —â •â â ™â …⠊⠇⠇⠄⠎" }, { "input": "roadrunner", "output": "â —â •â â ™â —â ¥â â â »" }, { "input": "roadrunner's", "output": "â —â •â â ™â —â ¥â â â »â „â Ž" }, { "input": "roadrunners", "output": "â —â •â â ™â —â ¥â â â »â Ž" }, { "input": "roads", "output": "â —â •â â ™â Ž" }, { "input": "roadshow", "output": "â —â •â â ™â ©â ª" }, { "input": "roadside", "output": "â —â •â â ™â Žâ Šâ ™â ‘" }, { "input": "roadside's", "output": "â —â •â â ™â Žâ Šâ ™â ‘â „â Ž" }, { "input": "roadsides", "output": "â —â •â â ™â Žâ Šâ ™â ‘â Ž" }, { "input": "roadster", "output": "â —â •â â ™â Œâ »" }, { "input": "roadster's", "output": "â —â •â â ™â Œâ »â „â Ž" }, { "input": "roadsters", "output": "â —â •â â ™â Œâ »â Ž" }, { "input": "roadway", "output": "â —â •â â ™â ºâ â ½" }, { "input": "roadway's", "output": "â —â •â â ™â ºâ â ½â „â Ž" }, { "input": "roadways", "output": "â —â •â â ™â ºâ â ½â Ž" }, { "input": "roadwork", "output": "â —â •â â ™â â º" }, { "input": "roadwork's", "output": "â —â •â â ™â â ºâ „â Ž" }, { "input": "roadworthy", "output": "â —â •â â ™â ºâ •⠗⠹⠽" }, { "input": "roam", "output": "â —â •â â " }, { "input": "roamed", "output": "â —â •â â â «" }, { "input": "roamer", "output": "â —â •â â â »" }, { "input": "roamer's", "output": "â —â •â â â »â „â Ž" }, { "input": "roamers", "output": "â —â •â â â »â Ž" }, { "input": "roaming", "output": "â —â •â â â Œ" }, { "input": "roaming's", "output": "â —â •â â â Œâ „â Ž" }, { "input": "roams", "output": "â —â •â â â Ž" }, { "input": "roan", "output": "â —â •â â " }, { "input": "roan's", "output": "â —â •â â â „â Ž" }, { "input": "roans", "output": "â —â •â â â Ž" }, { "input": "roar", "output": "â —â •â œ" }, { "input": "roar's", "output": "⠗⠕⠜⠄⠎" }, { "input": "roared", "output": "⠗⠕⠜⠫" }, { "input": "roarer", "output": "⠗⠕⠜⠻" }, { "input": "roarer's", "output": "⠗⠕⠜⠻⠄⠎" }, { "input": "roarers", "output": "⠗⠕⠜⠻⠎" }, { "input": "roaring", "output": "⠗⠕⠜⠌" }, { "input": "roaring's", "output": "⠗⠕⠜⠌⠄⠎" }, { "input": "roars", "output": "⠗⠕⠜⠎" }, { "input": "roast", "output": "â —â •â â Œ" }, { "input": "roast's", "output": "â —â •â â Œâ „â Ž" }, { "input": "roasted", "output": "â —â •â â Œâ «" }, { "input": "roaster", "output": "â —â •â â Œâ »" }, { "input": "roaster's", "output": "â —â •â â Œâ »â „â Ž" }, { "input": "roasters", "output": "â —â •â â Œâ »â Ž" }, { "input": "roasting", "output": "â —â •â â Œâ Œ" }, { "input": "roasting's", "output": "â —â •â â Œâ Œâ „â Ž" }, { "input": "roastings", "output": "â —â •â â Œâ Œâ Ž" }, { "input": "roasts", "output": "â —â •â â Œâ Ž" }, { "input": "rob", "output": "â —â •â ƒ" }, { "input": "robbed", "output": "⠗⠕⠆⠫" }, { "input": "robber", "output": "⠗⠕⠆⠻" }, { "input": "robber's", "output": "⠗⠕⠆⠻⠄⠎" }, { "input": "robberies", "output": "⠗⠕⠆⠻⠊⠑⠎" }, { "input": "robbers", "output": "⠗⠕⠆⠻⠎" }, { "input": "robbery", "output": "⠗⠕⠆⠻⠽" }, { "input": "robbery's", "output": "⠗⠕⠆⠻⠽⠄⠎" }, { "input": "robbing", "output": "⠗⠕⠆⠌" }, { "input": "robe", "output": "⠗⠕⠃⠑" }, { "input": "robe's", "output": "⠗⠕⠃⠑⠄⠎" }, { "input": "robed", "output": "⠗⠕⠃⠫" }, { "input": "robes", "output": "⠗⠕⠃⠑⠎" }, { "input": "robin", "output": "⠗⠕⠃⠔" }, { "input": "robin's", "output": "⠗⠕⠃⠔⠄⠎" }, { "input": "robing", "output": "⠗⠕⠃⠌" }, { "input": "robins", "output": "⠗⠕⠃⠔⠎" }, { "input": "robot", "output": "⠗⠕⠃⠕⠞" }, { "input": "robot's", "output": "⠗⠕⠃⠕⠞⠄⠎" }, { "input": "robotic", "output": "⠗⠕⠃⠕⠞⠊⠉" }, { "input": "robotics", "output": "⠗⠕⠃⠕⠞⠊⠉⠎" }, { "input": "robotics's", "output": "⠗⠕⠃⠕⠞⠊⠉⠎⠄⠎" }, { "input": "robotize", "output": "⠗⠕⠃⠕⠞⠊⠵⠑" }, { "input": "robotized", "output": "⠗⠕⠃⠕⠞⠊⠵⠫" }, { "input": "robotizes", "output": "⠗⠕⠃⠕⠞⠊⠵⠑⠎" }, { "input": "robotizing", "output": "⠗⠕⠃⠕⠞⠊⠵⠌" }, { "input": "robots", "output": "⠗⠕⠃⠕⠞⠎" }, { "input": "robs", "output": "⠗⠕⠃⠎" }, { "input": "robust", "output": "⠗⠕⠃⠥⠌" }, { "input": "robuster", "output": "⠗⠕⠃⠥⠌⠻" }, { "input": "robustest", "output": "⠗⠕⠃⠥⠌⠑⠌" }, { "input": "robustly", "output": "⠗⠕⠃⠥⠌⠇⠽" }, { "input": "robustness", "output": "⠗⠕⠃⠥⠌⠰⠎" }, { "input": "robustness's", "output": "⠗⠕⠃⠥⠌⠰⠎⠄⠎" }, { "input": "rock", "output": "⠗⠕⠉⠅" }, { "input": "rock's", "output": "⠗⠕⠉⠅⠄⠎" }, { "input": "rockabilly's", "output": "⠗⠕⠉⠅â â ƒâ Šâ ‡â ‡â ½â „â Ž" }, { "input": "rockbound", "output": "⠗⠕⠉⠅⠃⠨⠙" }, { "input": "rocked", "output": "⠗⠕⠉⠅⠫" }, { "input": "rocker", "output": "⠗⠕⠉⠅⠻" }, { "input": "rocker's", "output": "⠗⠕⠉⠅⠻⠄⠎" }, { "input": "rockers", "output": "⠗⠕⠉⠅⠻⠎" }, { "input": "rocket", "output": "⠗⠕⠉⠅⠑⠞" }, { "input": "rocket's", "output": "⠗⠕⠉⠅⠑⠞⠄⠎" }, { "input": "rocketed", "output": "⠗⠕⠉⠅⠑⠞⠫" }, { "input": "rocketing", "output": "⠗⠕⠉⠅⠑⠞⠌" }, { "input": "rocketry", "output": "⠗⠕⠉⠅⠑⠞⠗⠽" }, { "input": "rocketry's", "output": "⠗⠕⠉⠅⠑⠞⠗⠽⠄⠎" }, { "input": "rockets", "output": "⠗⠕⠉⠅⠑⠞⠎" }, { "input": "rockier", "output": "⠗⠕⠉⠅⠊⠻" }, { "input": "rockiest", "output": "⠗⠕⠉⠅⠊⠑⠌" }, { "input": "rockiness", "output": "⠗⠕⠉⠅⠊⠰⠎" }, { "input": "rockiness's", "output": "⠗⠕⠉⠅⠊⠰⠎⠄⠎" }, { "input": "rocking", "output": "⠗⠕⠉⠅⠌" }, { "input": "rocks", "output": "⠗⠕⠉⠅⠎" }, { "input": "rocky", "output": "⠗⠕⠉⠅⠽" }, { "input": "rococo", "output": "⠗⠕⠉⠕⠉⠕" }, { "input": "rococo's", "output": "⠗⠕⠉⠕⠉⠕⠄⠎" }, { "input": "rod", "output": "â —â •â ™" }, { "input": "rod's", "output": "⠗⠕⠙⠄⠎" }, { "input": "rode", "output": "⠗⠕⠙⠑" }, { "input": "rodent", "output": "⠗⠕⠙⠢⠞" }, { "input": "rodent's", "output": "⠗⠕⠙⠢⠞⠄⠎" }, { "input": "rodents", "output": "⠗⠕⠙⠢⠞⠎" }, { "input": "rodeo", "output": "⠗⠕⠙⠑⠕" }, { "input": "rodeo's", "output": "⠗⠕⠙⠑⠕⠄⠎" }, { "input": "rodeos", "output": "⠗⠕⠙⠑⠕⠎" }, { "input": "rods", "output": "⠗⠕⠙⠎" }, { "input": "roe", "output": "â —â •â ‘" }, { "input": "roe's", "output": "â —â •â ‘â „â Ž" }, { "input": "roebuck", "output": "⠗⠕⠑⠃⠥⠉⠅" }, { "input": "roebuck's", "output": "⠗⠕⠑⠃⠥⠉⠅⠄⠎" }, { "input": "roebucks", "output": "⠗⠕⠑⠃⠥⠉⠅⠎" }, { "input": "roentgen", "output": "â —â •â ‘â â žâ ›â ¢" }, { "input": "roentgen's", "output": "â —â •â ‘â â žâ ›â ¢â „â Ž" }, { "input": "roentgens", "output": "â —â •â ‘â â žâ ›â ¢â Ž" }, { "input": "roes", "output": "â —â •â ‘â Ž" }, { "input": "roger", "output": "⠗⠕⠛⠻" }, { "input": "rogered", "output": "⠗⠕⠛⠻⠫" }, { "input": "rogering", "output": "⠗⠕⠛⠻⠌" }, { "input": "rogers", "output": "⠗⠕⠛⠻⠎" }, { "input": "rogue", "output": "⠗⠕⠛⠥⠑" }, { "input": "rogue's", "output": "⠗⠕⠛⠥⠑⠄⠎" }, { "input": "roguery", "output": "⠗⠕⠛⠥⠻⠽" }, { "input": "roguery's", "output": "⠗⠕⠛⠥⠻⠽⠄⠎" }, { "input": "rogues", "output": "⠗⠕⠛⠥⠑⠎" }, { "input": "roguish", "output": "⠗⠕⠛⠥⠊⠩" }, { "input": "roguishly", "output": "⠗⠕⠛⠥⠊⠩⠇⠽" }, { "input": "roguishness's", "output": "⠗⠕⠛⠥⠊⠩⠰⠎⠄⠎" }, { "input": "roil", "output": "â —â •â Šâ ‡" }, { "input": "roiled", "output": "⠗⠕⠊⠇⠫" }, { "input": "roiling", "output": "⠗⠕⠊⠇⠌" }, { "input": "roils", "output": "⠗⠕⠊⠇⠎" }, { "input": "roister", "output": "⠗⠕⠊⠌⠻" }, { "input": "roistered", "output": "⠗⠕⠊⠌⠻⠫" }, { "input": "roisterer", "output": "⠗⠕⠊⠌⠻⠻" }, { "input": "roisterer's", "output": "⠗⠕⠊⠌⠻⠻⠄⠎" }, { "input": "roisterers", "output": "⠗⠕⠊⠌⠻⠻⠎" }, { "input": "roistering", "output": "⠗⠕⠊⠌⠻⠌" }, { "input": "roisters", "output": "⠗⠕⠊⠌⠻⠎" }, { "input": "role", "output": "⠗⠕⠇⠑" }, { "input": "role's", "output": "⠗⠕⠇⠑⠄⠎" }, { "input": "roles", "output": "⠗⠕⠇⠑⠎" }, { "input": "roll", "output": "⠗⠕⠇⠇" }, { "input": "roll's", "output": "⠗⠕⠇⠇⠄⠎" }, { "input": "rollback", "output": "⠗⠕⠇⠇⠃â â ‰â …" }, { "input": "rollback's", "output": "⠗⠕⠇⠇⠃â â ‰â …â „â Ž" }, { "input": "rollbacks", "output": "⠗⠕⠇⠇⠃â â ‰â …â Ž" }, { "input": "rolled", "output": "⠗⠕⠇⠇⠫" }, { "input": "roller", "output": "⠗⠕⠇⠇⠻" }, { "input": "roller's", "output": "⠗⠕⠇⠇⠻⠄⠎" }, { "input": "rollers", "output": "⠗⠕⠇⠇⠻⠎" }, { "input": "rollerskating", "output": "⠗⠕⠇⠇⠻⠎⠅â â žâ Œ" }, { "input": "rollerskating's", "output": "⠗⠕⠇⠇⠻⠎⠅â â žâ Œâ „â Ž" }, { "input": "rollick", "output": "⠗⠕⠇⠇⠊⠉⠅" }, { "input": "rollicked", "output": "⠗⠕⠇⠇⠊⠉⠅⠫" }, { "input": "rollicking", "output": "⠗⠕⠇⠇⠊⠉⠅⠌" }, { "input": "rollicking's", "output": "⠗⠕⠇⠇⠊⠉⠅⠌⠄⠎" }, { "input": "rollicks", "output": "⠗⠕⠇⠇⠊⠉⠅⠎" }, { "input": "rolling", "output": "⠗⠕⠇⠇⠌" }, { "input": "rollings", "output": "⠗⠕⠇⠇⠌⠎" }, { "input": "rolls", "output": "⠗⠕⠇⠇⠎" }, { "input": "romaine", "output": "â —â •â â â ”â ‘" }, { "input": "romaine's", "output": "â —â •â â â ”â ‘â „â Ž" }, { "input": "roman", "output": "â —â •â â â " }, { "input": "roman's", "output": "â —â •â â â â „â Ž" }, { "input": "romance", "output": "â —â •â â ¨â ‘" }, { "input": "romance's", "output": "â —â •â â ¨â ‘â „â Ž" }, { "input": "romanced", "output": "â —â •â â ¨â ‘â ™" }, { "input": "romancer", "output": "â —â •â â ¨â ‘â —" }, { "input": "romancer's", "output": "â —â •â â ¨â ‘â —â „â Ž" }, { "input": "romancers", "output": "â —â •â â ¨â ‘â —â Ž" }, { "input": "romances", "output": "â —â •â â ¨â ‘â Ž" }, { "input": "romancing", "output": "â —â •â â â â ‰â Œ" }, { "input": "romantic", "output": "â —â •â â â â žâ Šâ ‰" }, { "input": "romantic's", "output": "â —â •â â â â žâ Šâ ‰â „â Ž" }, { "input": "romantically", "output": "â —â •â â â â žâ Šâ ‰â  â ½" }, { "input": "romanticism", "output": "â —â •â â â â žâ Šâ ‰â Šâ Žâ " }, { "input": "romanticism's", "output": "â —â •â â â â žâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "romanticist", "output": "â —â •â â â â žâ Šâ ‰â Šâ Œ" }, { "input": "romanticist's", "output": "â —â •â â â â žâ Šâ ‰â Šâ Œâ „â Ž" }, { "input": "romanticists", "output": "â —â •â â â â žâ Šâ ‰â Šâ Œâ Ž" }, { "input": "romanticize", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ ‘" }, { "input": "romanticized", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ «" }, { "input": "romanticizes", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ ‘â Ž" }, { "input": "romanticizing", "output": "â —â •â â â â žâ Šâ ‰â Šâ µâ Œ" }, { "input": "romantics", "output": "â —â •â â â â žâ Šâ ‰â Ž" }, { "input": "romeo", "output": "â —â •â â ‘â •" }, { "input": "romeo's", "output": "â —â •â â ‘â •â „â Ž" }, { "input": "romeos", "output": "â —â •â â ‘â •â Ž" }, { "input": "romp", "output": "â —â •â â " }, { "input": "romp's", "output": "â —â •â â â „â Ž" }, { "input": "romped", "output": "â —â •â â â «" }, { "input": "romper", "output": "â —â •â â â »" }, { "input": "romper's", "output": "â —â •â â â »â „â Ž" }, { "input": "rompers", "output": "â —â •â â â »â Ž" }, { "input": "romping", "output": "â —â •â â â Œ" }, { "input": "romps", "output": "â —â •â â â Ž" }, { "input": "rood", "output": "â —â •â •â ™" }, { "input": "rood's", "output": "⠗⠕⠕⠙⠄⠎" }, { "input": "roods", "output": "⠗⠕⠕⠙⠎" }, { "input": "roof", "output": "â —â •â ·" }, { "input": "roof's", "output": "â —â •â ·â „â Ž" }, { "input": "roofed", "output": "â —â •â ·â «" }, { "input": "roofing", "output": "â —â •â ·â Œ" }, { "input": "roofing's", "output": "⠗⠕⠷⠌⠄⠎" }, { "input": "roofs", "output": "â —â •â ·â Ž" }, { "input": "rooftop", "output": "â —â •â ·â žâ •â " }, { "input": "rooftop's", "output": "â —â •â ·â žâ •â â „â Ž" }, { "input": "rooftops", "output": "â —â •â ·â žâ •â â Ž" }, { "input": "rook", "output": "â —â •â •â …" }, { "input": "rook's", "output": "â —â •â •â …â „â Ž" }, { "input": "rooked", "output": "â —â •â •â …â «" }, { "input": "rookeries", "output": "⠗⠕⠕⠅⠻⠊⠑⠎" }, { "input": "rookery", "output": "⠗⠕⠕⠅⠻⠽" }, { "input": "rookery's", "output": "⠗⠕⠕⠅⠻⠽⠄⠎" }, { "input": "rookie", "output": "â —â •â •â …â Šâ ‘" }, { "input": "rookie's", "output": "â —â •â •â …â Šâ ‘â „â Ž" }, { "input": "rookies", "output": "â —â •â •â …â Šâ ‘â Ž" }, { "input": "rooking", "output": "â —â •â •â …â Œ" }, { "input": "rooks", "output": "â —â •â •â …â Ž" }, { "input": "room", "output": "â —â •â •â " }, { "input": "room's", "output": "â —â •â •â â „â Ž" }, { "input": "roomed", "output": "â —â •â •â â «" }, { "input": "roomer", "output": "â —â •â •â â »" }, { "input": "roomer's", "output": "â —â •â •â â »â „â Ž" }, { "input": "roomers", "output": "â —â •â •â â »â Ž" }, { "input": "roomette", "output": "â —â •â •â â ‘â žâ žâ ‘" }, { "input": "roomette's", "output": "â —â •â •â â ‘â žâ žâ ‘â „â Ž" }, { "input": "roomettes", "output": "â —â •â •â â ‘â žâ žâ ‘â Ž" }, { "input": "roomful", "output": "â —â •â •â â °â ‡" }, { "input": "roomful's", "output": "â —â •â •â â °â ‡â „â Ž" }, { "input": "roomfuls", "output": "â —â •â •â â °â ‡â Ž" }, { "input": "roomier", "output": "â —â •â •â â Šâ »" }, { "input": "roomiest", "output": "â —â •â •â â Šâ ‘â Œ" }, { "input": "roominess", "output": "â —â •â •â â Šâ °â Ž" }, { "input": "roominess's", "output": "â —â •â •â â Šâ °â Žâ „â Ž" }, { "input": "rooming", "output": "â —â •â •â â Œ" }, { "input": "roommate", "output": "â —â •â •â â â â žâ ‘" }, { "input": "roommate's", "output": "â —â •â •â â â â žâ ‘â „â Ž" }, { "input": "roommates", "output": "â —â •â •â â â â žâ ‘â Ž" }, { "input": "rooms", "output": "â —â •â •â â Ž" }, { "input": "roomy", "output": "â —â •â •â â ½" }, { "input": "roost", "output": "â —â •â •â Œ" }, { "input": "roost's", "output": "⠗⠕⠕⠌⠄⠎" }, { "input": "roosted", "output": "⠗⠕⠕⠌⠫" }, { "input": "rooster", "output": "⠗⠕⠕⠌⠻" }, { "input": "rooster's", "output": "⠗⠕⠕⠌⠻⠄⠎" }, { "input": "roosters", "output": "⠗⠕⠕⠌⠻⠎" }, { "input": "roosting", "output": "⠗⠕⠕⠌⠌" }, { "input": "roosts", "output": "⠗⠕⠕⠌⠎" }, { "input": "root", "output": "â —â •â •â ž" }, { "input": "root's", "output": "â —â •â •â žâ „â Ž" }, { "input": "rooted", "output": "â —â •â •â žâ «" }, { "input": "rooter", "output": "â —â •â •â žâ »" }, { "input": "rooter's", "output": "⠗⠕⠕⠞⠻⠄⠎" }, { "input": "rooters", "output": "⠗⠕⠕⠞⠻⠎" }, { "input": "rooting", "output": "â —â •â •â žâ Œ" }, { "input": "rootless", "output": "⠗⠕⠕⠞⠨⠎" }, { "input": "rootlet", "output": "⠗⠕⠕⠞⠇⠑⠞" }, { "input": "rootlet's", "output": "⠗⠕⠕⠞⠇⠑⠞⠄⠎" }, { "input": "rootlets", "output": "⠗⠕⠕⠞⠇⠑⠞⠎" }, { "input": "roots", "output": "â —â •â •â žâ Ž" }, { "input": "rope", "output": "â —â •â â ‘" }, { "input": "rope's", "output": "â —â •â â ‘â „â Ž" }, { "input": "roped", "output": "â —â •â â «" }, { "input": "roper", "output": "â —â •â â »" }, { "input": "roper's", "output": "â —â •â â »â „â Ž" }, { "input": "ropers", "output": "â —â •â â »â Ž" }, { "input": "ropes", "output": "â —â •â â ‘â Ž" }, { "input": "roping", "output": "â —â •â â Œ" }, { "input": "rosaries", "output": "⠗⠕⠎⠜⠊⠑⠎" }, { "input": "rosary", "output": "⠗⠕⠎⠜⠽" }, { "input": "rosary's", "output": "⠗⠕⠎⠜⠽⠄⠎" }, { "input": "rose", "output": "â —â •â Žâ ‘" }, { "input": "rose's", "output": "â —â •â Žâ ‘â „â Ž" }, { "input": "roseate", "output": "â —â •â Žâ ‚â žâ ‘" }, { "input": "rosebud", "output": "⠗⠕⠎⠑⠃⠥⠙" }, { "input": "rosebud's", "output": "⠗⠕⠎⠑⠃⠥⠙⠄⠎" }, { "input": "rosebuds", "output": "⠗⠕⠎⠑⠃⠥⠙⠎" }, { "input": "rosebush", "output": "⠗⠕⠎⠑⠃⠥⠩" }, { "input": "rosebush's", "output": "⠗⠕⠎⠑⠃⠥⠩⠄⠎" }, { "input": "rosebushes", "output": "⠗⠕⠎⠑⠃⠥⠩⠑⠎" }, { "input": "rosemary", "output": "â —â •â Žâ ‘â â œâ ½" }, { "input": "rosemary's", "output": "â —â •â Žâ ‘â â œâ ½â „â Ž" }, { "input": "roses", "output": "â —â •â Žâ ‘â Ž" }, { "input": "rosette", "output": "â —â •â Žâ ‘â žâ žâ ‘" }, { "input": "rosette's", "output": "â —â •â Žâ ‘â žâ žâ ‘â „â Ž" }, { "input": "rosettes", "output": "â —â •â Žâ ‘â žâ žâ ‘â Ž" }, { "input": "rosewater's", "output": "â —â •â Žâ ‘â ºâ â žâ »â „â Ž" }, { "input": "rosewood", "output": "⠗⠕⠎⠑⠺⠕⠕⠙" }, { "input": "rosewood's", "output": "⠗⠕⠎⠑⠺⠕⠕⠙⠄⠎" }, { "input": "rosewoods", "output": "⠗⠕⠎⠑⠺⠕⠕⠙⠎" }, { "input": "rosier", "output": "â —â •â Žâ Šâ »" }, { "input": "rosiest", "output": "â —â •â Žâ Šâ ‘â Œ" }, { "input": "rosily", "output": "⠗⠕⠎⠊⠇⠽" }, { "input": "rosin", "output": "â —â •â Žâ ”" }, { "input": "rosin's", "output": "⠗⠕⠎⠔⠄⠎" }, { "input": "rosined", "output": "⠗⠕⠎⠔⠫" }, { "input": "rosiness", "output": "â —â •â Žâ Šâ °â Ž" }, { "input": "rosiness's", "output": "â —â •â Žâ Šâ °â Žâ „â Ž" }, { "input": "rosining", "output": "⠗⠕⠎⠔⠌" }, { "input": "rosins", "output": "⠗⠕⠎⠔⠎" }, { "input": "roster", "output": "⠗⠕⠌⠻" }, { "input": "roster's", "output": "⠗⠕⠌⠻⠄⠎" }, { "input": "rosters", "output": "⠗⠕⠌⠻⠎" }, { "input": "rostrum", "output": "⠗⠕⠌⠗⠥â " }, { "input": "rostrum's", "output": "⠗⠕⠌⠗⠥â â „â Ž" }, { "input": "rostrums", "output": "⠗⠕⠌⠗⠥â â Ž" }, { "input": "rosy", "output": "â —â •â Žâ ½" }, { "input": "rot", "output": "â —â •â ž" }, { "input": "rot's", "output": "â —â •â žâ „â Ž" }, { "input": "rotaries", "output": "⠗⠕⠞⠜⠊⠑⠎" }, { "input": "rotary", "output": "⠗⠕⠞⠜⠽" }, { "input": "rotary's", "output": "⠗⠕⠞⠜⠽⠄⠎" }, { "input": "rotate", "output": "â —â •â žâ â žâ ‘" }, { "input": "rotated", "output": "â —â •â žâ â žâ «" }, { "input": "rotates", "output": "â —â •â žâ â žâ ‘â Ž" }, { "input": "rotating", "output": "â —â •â žâ â žâ Œ" }, { "input": "rotation", "output": "â —â •â žâ  â " }, { "input": "rotation's", "output": "â —â •â žâ  â â „â Ž" }, { "input": "rotational", "output": "â —â •â žâ  â â â ‡" }, { "input": "rotations", "output": "â —â •â žâ  â â Ž" }, { "input": "rotatory", "output": "â —â •â žâ â žâ •â —â ½" }, { "input": "rote", "output": "â —â •â žâ ‘" }, { "input": "rote's", "output": "â —â •â žâ ‘â „â Ž" }, { "input": "rotgut", "output": "⠗⠕⠞⠛⠥⠞" }, { "input": "rotgut's", "output": "⠗⠕⠞⠛⠥⠞⠄⠎" }, { "input": "rotisserie", "output": "⠗⠕⠞⠊⠎⠎⠻⠊⠑" }, { "input": "rotisserie's", "output": "⠗⠕⠞⠊⠎⠎⠻⠊⠑⠄⠎" }, { "input": "rotisseries", "output": "⠗⠕⠞⠊⠎⠎⠻⠊⠑⠎" }, { "input": "rotogravure", "output": "⠗⠕⠞⠕⠛⠗â â §â ¥â —â ‘" }, { "input": "rotogravure's", "output": "⠗⠕⠞⠕⠛⠗â â §â ¥â —â ‘â „â Ž" }, { "input": "rotogravures", "output": "⠗⠕⠞⠕⠛⠗â â §â ¥â —â ‘â Ž" }, { "input": "rotor", "output": "â —â •â žâ •â —" }, { "input": "rotor's", "output": "â —â •â žâ •â —â „â Ž" }, { "input": "rotors", "output": "â —â •â žâ •â —â Ž" }, { "input": "rototiller", "output": "⠗⠕⠞⠕⠞⠊⠇⠇⠻" }, { "input": "rototiller's", "output": "⠗⠕⠞⠕⠞⠊⠇⠇⠻⠄⠎" }, { "input": "rototillers", "output": "⠗⠕⠞⠕⠞⠊⠇⠇⠻⠎" }, { "input": "rots", "output": "â —â •â žâ Ž" }, { "input": "rotted", "output": "â —â •â žâ žâ «" }, { "input": "rotten", "output": "â —â •â žâ žâ ¢" }, { "input": "rottener", "output": "⠗⠕⠞⠞⠢⠻" }, { "input": "rottenest", "output": "⠗⠕⠞⠞⠢⠑⠌" }, { "input": "rottenly", "output": "⠗⠕⠞⠞⠢⠇⠽" }, { "input": "rottenness", "output": "⠗⠕⠞⠞⠢⠰⠎" }, { "input": "rottenness's", "output": "⠗⠕⠞⠞⠢⠰⠎⠄⠎" }, { "input": "rotting", "output": "â —â •â žâ žâ Œ" }, { "input": "rotund", "output": "â —â •â žâ ¥â â ™" }, { "input": "rotunda", "output": "â —â •â žâ ¥â â ™â " }, { "input": "rotunda's", "output": "â —â •â žâ ¥â â ™â â „â Ž" }, { "input": "rotundas", "output": "â —â •â žâ ¥â â ™â â Ž" }, { "input": "rotundity", "output": "â —â •â žâ ¥â â ™â °â ½" }, { "input": "rotundity's", "output": "â —â •â žâ ¥â â ™â °â ½â „â Ž" }, { "input": "rotundness", "output": "â —â •â žâ ¥â â ™â °â Ž" }, { "input": "rotundness's", "output": "â —â •â žâ ¥â â ™â °â Žâ „â Ž" }, { "input": "rouge", "output": "⠗⠳⠛⠑" }, { "input": "rouge's", "output": "⠗⠳⠛⠑⠄⠎" }, { "input": "rouged", "output": "⠗⠳⠛⠫" }, { "input": "rouges", "output": "⠗⠳⠛⠑⠎" }, { "input": "rough", "output": "⠗⠳⠣" }, { "input": "rough's", "output": "⠗⠳⠣⠄⠎" }, { "input": "roughage", "output": "⠗⠳⠣â â ›â ‘" }, { "input": "roughage's", "output": "⠗⠳⠣â â ›â ‘â „â Ž" }, { "input": "roughed", "output": "⠗⠳⠣⠫" }, { "input": "roughen", "output": "⠗⠳⠣⠢" }, { "input": "roughened", "output": "⠗⠳⠣⠢⠫" }, { "input": "roughening", "output": "⠗⠳⠣⠢⠌" }, { "input": "roughens", "output": "⠗⠳⠣⠢⠎" }, { "input": "rougher", "output": "⠗⠳⠣⠻" }, { "input": "roughest", "output": "⠗⠳⠣⠑⠌" }, { "input": "roughhouse", "output": "⠗⠳⠣⠓⠳⠎⠑" }, { "input": "roughhouse's", "output": "⠗⠳⠣⠓⠳⠎⠑⠄⠎" }, { "input": "roughhoused", "output": "⠗⠳⠣⠓⠳⠎⠫" }, { "input": "roughhouses", "output": "⠗⠳⠣⠓⠳⠎⠑⠎" }, { "input": "roughhousing", "output": "⠗⠳⠣⠓⠳⠎⠌" }, { "input": "roughing", "output": "⠗⠳⠣⠌" }, { "input": "roughly", "output": "⠗⠳⠣⠇⠽" }, { "input": "roughneck", "output": "⠗⠳⠣â â ‘⠉⠅" }, { "input": "roughneck's", "output": "⠗⠳⠣â â ‘⠉⠅⠄⠎" }, { "input": "roughnecked", "output": "⠗⠳⠣â â ‘⠉⠅⠫" }, { "input": "roughnecking", "output": "⠗⠳⠣â â ‘⠉⠅⠌" }, { "input": "roughnecks", "output": "⠗⠳⠣â â ‘⠉⠅⠎" }, { "input": "roughness", "output": "⠗⠳⠣⠰⠎" }, { "input": "roughness's", "output": "⠗⠳⠣⠰⠎⠄⠎" }, { "input": "roughs", "output": "⠗⠳⠣⠎" }, { "input": "roughshod", "output": "⠗⠳⠣⠩⠕⠙" }, { "input": "rouging", "output": "⠗⠳⠛⠌" }, { "input": "roulette", "output": "⠗⠳⠇⠑⠞⠞⠑" }, { "input": "roulette's", "output": "⠗⠳⠇⠑⠞⠞⠑⠄⠎" }, { "input": "round", "output": "⠗⠨⠙" }, { "input": "round's", "output": "⠗⠨⠙⠄⠎" }, { "input": "roundabout", "output": "⠗⠨⠙â â ƒ" }, { "input": "roundabout's", "output": "⠗⠨⠙â â ƒâ „â Ž" }, { "input": "roundabouts", "output": "⠗⠨⠙â â ƒâ Ž" }, { "input": "rounded", "output": "⠗⠨⠙⠫" }, { "input": "roundelay", "output": "⠗⠨⠙⠑⠇â â ½" }, { "input": "roundelay's", "output": "⠗⠨⠙⠑⠇â â ½â „â Ž" }, { "input": "roundelays", "output": "⠗⠨⠙⠑⠇â â ½â Ž" }, { "input": "rounder", "output": "⠗⠨⠙⠻" }, { "input": "roundest", "output": "⠗⠨⠙⠑⠌" }, { "input": "roundhouse", "output": "⠗⠨⠙⠓⠳⠎⠑" }, { "input": "roundhouse's", "output": "⠗⠨⠙⠓⠳⠎⠑⠄⠎" }, { "input": "roundhouses", "output": "⠗⠨⠙⠓⠳⠎⠑⠎" }, { "input": "rounding", "output": "⠗⠨⠙⠌" }, { "input": "roundish", "output": "⠗⠨⠙⠊⠩" }, { "input": "roundly", "output": "⠗⠨⠙⠇⠽" }, { "input": "roundness", "output": "⠗⠨⠙⠰⠎" }, { "input": "roundness's", "output": "⠗⠨⠙⠰⠎⠄⠎" }, { "input": "rounds", "output": "⠗⠨⠙⠎" }, { "input": "roundup", "output": "⠗⠨⠙⠥â " }, { "input": "roundup's", "output": "⠗⠨⠙⠥â â „â Ž" }, { "input": "roundups", "output": "⠗⠨⠙⠥â â Ž" }, { "input": "roundworm", "output": "⠗⠨⠙⠺⠕⠗â " }, { "input": "roundworm's", "output": "⠗⠨⠙⠺⠕⠗â â „â Ž" }, { "input": "roundworms", "output": "⠗⠨⠙⠺⠕⠗â â Ž" }, { "input": "rouse", "output": "⠗⠳⠎⠑" }, { "input": "roused", "output": "⠗⠳⠎⠫" }, { "input": "rouses", "output": "⠗⠳⠎⠑⠎" }, { "input": "rousing", "output": "⠗⠳⠎⠌" }, { "input": "roustabout", "output": "⠗⠳⠌â â ƒ" }, { "input": "roustabout's", "output": "⠗⠳⠌â â ƒâ „â Ž" }, { "input": "roustabouts", "output": "⠗⠳⠌â â ƒâ Ž" }, { "input": "rout", "output": "⠗⠳⠞" }, { "input": "rout's", "output": "⠗⠳⠞⠄⠎" }, { "input": "route", "output": "⠗⠳⠞⠑" }, { "input": "route's", "output": "⠗⠳⠞⠑⠄⠎" }, { "input": "routed", "output": "⠗⠳⠞⠫" }, { "input": "routeing", "output": "⠗⠳⠞⠑⠌" }, { "input": "router", "output": "⠗⠳⠞⠻" }, { "input": "router's", "output": "⠗⠳⠞⠻⠄⠎" }, { "input": "routers", "output": "⠗⠳⠞⠻⠎" }, { "input": "routes", "output": "⠗⠳⠞⠑⠎" }, { "input": "routine", "output": "⠗⠳⠞⠔⠑" }, { "input": "routine's", "output": "⠗⠳⠞⠔⠑⠄⠎" }, { "input": "routinely", "output": "⠗⠳⠞⠔⠑⠇⠽" }, { "input": "routines", "output": "⠗⠳⠞⠔⠑⠎" }, { "input": "routing", "output": "⠗⠳⠞⠌" }, { "input": "routinize", "output": "⠗⠳⠞⠔⠊⠵⠑" }, { "input": "routinized", "output": "⠗⠳⠞⠔⠊⠵⠫" }, { "input": "routinizes", "output": "⠗⠳⠞⠔⠊⠵⠑⠎" }, { "input": "routinizing", "output": "⠗⠳⠞⠔⠊⠵⠌" }, { "input": "routs", "output": "⠗⠳⠞⠎" }, { "input": "rove", "output": "â —â •â §â ‘" }, { "input": "roved", "output": "â —â •â §â «" }, { "input": "rover", "output": "â —â •â §â »" }, { "input": "rover's", "output": "⠗⠕⠧⠻⠄⠎" }, { "input": "rovers", "output": "⠗⠕⠧⠻⠎" }, { "input": "roves", "output": "â —â •â §â ‘â Ž" }, { "input": "roving", "output": "â —â •â §â Œ" }, { "input": "row", "output": "â —â ª" }, { "input": "row's", "output": "⠗⠪⠄⠎" }, { "input": "rowboat", "output": "⠗⠪⠃⠕â â ž" }, { "input": "rowboat's", "output": "⠗⠪⠃⠕â â žâ „â Ž" }, { "input": "rowboats", "output": "⠗⠪⠃⠕â â žâ Ž" }, { "input": "rowdier", "output": "⠗⠪⠙⠊⠻" }, { "input": "rowdies", "output": "⠗⠪⠙⠊⠑⠎" }, { "input": "rowdiest", "output": "⠗⠪⠙⠊⠑⠌" }, { "input": "rowdiness", "output": "⠗⠪⠙⠊⠰⠎" }, { "input": "rowdiness's", "output": "⠗⠪⠙⠊⠰⠎⠄⠎" }, { "input": "rowdy", "output": "⠗⠪⠙⠽" }, { "input": "rowdy's", "output": "⠗⠪⠙⠽⠄⠎" }, { "input": "rowdyism", "output": "⠗⠪⠙⠽⠊⠎â " }, { "input": "rowdyism's", "output": "⠗⠪⠙⠽⠊⠎â â „â Ž" }, { "input": "rowed", "output": "⠗⠪⠫" }, { "input": "rowel", "output": "⠗⠪⠑⠇" }, { "input": "rowel's", "output": "⠗⠪⠑⠇⠄⠎" }, { "input": "roweled", "output": "⠗⠪⠑⠇⠫" }, { "input": "roweling", "output": "⠗⠪⠑⠇⠌" }, { "input": "rowels", "output": "⠗⠪⠑⠇⠎" }, { "input": "rower", "output": "⠗⠪⠻" }, { "input": "rower's", "output": "⠗⠪⠻⠄⠎" }, { "input": "rowers", "output": "⠗⠪⠻⠎" }, { "input": "rowing", "output": "⠗⠪⠌" }, { "input": "rowing's", "output": "⠗⠪⠌⠄⠎" }, { "input": "rows", "output": "⠗⠪⠎" }, { "input": "royal", "output": "â —â •â ½â â ‡" }, { "input": "royal's", "output": "â —â •â ½â â ‡â „â Ž" }, { "input": "royalist", "output": "â —â •â ½â â ‡â Šâ Œ" }, { "input": "royalist's", "output": "â —â •â ½â â ‡â Šâ Œâ „â Ž" }, { "input": "royalists", "output": "â —â •â ½â â ‡â Šâ Œâ Ž" }, { "input": "royally", "output": "⠗⠕⠽⠠⠽" }, { "input": "royals", "output": "â —â •â ½â â ‡â Ž" }, { "input": "royalties", "output": "â —â •â ½â â ‡â žâ Šâ ‘â Ž" }, { "input": "royalties's", "output": "â —â •â ½â â ‡â žâ Šâ ‘â Žâ „â Ž" }, { "input": "royalty", "output": "â —â •â ½â â ‡â žâ ½" }, { "input": "royalty's", "output": "â —â •â ½â â ‡â žâ ½â „â Ž" }, { "input": "rs", "output": "â —â Ž" }, { "input": "rub", "output": "⠗⠥⠃" }, { "input": "rub's", "output": "⠗⠥⠃⠄⠎" }, { "input": "rubato", "output": "⠗⠥⠃â â žâ •" }, { "input": "rubato's", "output": "⠗⠥⠃â â žâ •â „â Ž" }, { "input": "rubatos", "output": "⠗⠥⠃â â žâ •â Ž" }, { "input": "rubbed", "output": "⠗⠥⠆⠫" }, { "input": "rubber", "output": "⠗⠥⠆⠻" }, { "input": "rubber's", "output": "⠗⠥⠆⠻⠄⠎" }, { "input": "rubberier", "output": "⠗⠥⠆⠻⠊⠻" }, { "input": "rubberiest", "output": "⠗⠥⠆⠻⠊⠑⠌" }, { "input": "rubberize", "output": "⠗⠥⠆⠻⠊⠵⠑" }, { "input": "rubberized", "output": "⠗⠥⠆⠻⠊⠵⠫" }, { "input": "rubberizes", "output": "⠗⠥⠆⠻⠊⠵⠑⠎" }, { "input": "rubberizing", "output": "⠗⠥⠆⠻⠊⠵⠌" }, { "input": "rubberneck", "output": "⠗⠥⠆⠻â â ‘⠉⠅" }, { "input": "rubberneck's", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠄⠎" }, { "input": "rubbernecked", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠫" }, { "input": "rubbernecking", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠌" }, { "input": "rubbernecks", "output": "⠗⠥⠆⠻â â ‘⠉⠅⠎" }, { "input": "rubbers", "output": "⠗⠥⠆⠻⠎" }, { "input": "rubbery", "output": "⠗⠥⠆⠻⠽" }, { "input": "rubbing", "output": "⠗⠥⠆⠌" }, { "input": "rubbish", "output": "⠗⠥⠆⠊⠩" }, { "input": "rubbish's", "output": "⠗⠥⠆⠊⠩⠄⠎" }, { "input": "rubbished", "output": "⠗⠥⠆⠊⠩⠫" }, { "input": "rubbishes", "output": "⠗⠥⠆⠊⠩⠑⠎" }, { "input": "rubbishing", "output": "⠗⠥⠆⠊⠩⠌" }, { "input": "rubbishy", "output": "⠗⠥⠆⠊⠩⠽" }, { "input": "rubble", "output": "⠗⠥⠃⠼" }, { "input": "rubble's", "output": "⠗⠥⠃⠼⠄⠎" }, { "input": "rubdown", "output": "⠗⠥⠃⠙⠪â " }, { "input": "rubdown's", "output": "⠗⠥⠃⠙⠪â â „â Ž" }, { "input": "rubdowns", "output": "⠗⠥⠃⠙⠪â â Ž" }, { "input": "rube", "output": "⠗⠥⠃⠑" }, { "input": "rube's", "output": "⠗⠥⠃⠑⠄⠎" }, { "input": "rubella", "output": "⠗⠥⠃⠑⠇⠇â " }, { "input": "rubella's", "output": "⠗⠥⠃⠑⠇⠇â â „â Ž" }, { "input": "rubes", "output": "⠗⠥⠃⠑⠎" }, { "input": "rubicund", "output": "⠗⠥⠃⠊⠉⠥â â ™" }, { "input": "rubidium", "output": "⠗⠥⠃⠊⠙⠊⠥â " }, { "input": "rubidium's", "output": "⠗⠥⠃⠊⠙⠊⠥â â „â Ž" }, { "input": "rubier", "output": "⠗⠥⠃⠊⠻" }, { "input": "rubies", "output": "⠗⠥⠃⠊⠑⠎" }, { "input": "rubiest", "output": "⠗⠥⠃⠊⠑⠌" }, { "input": "ruble", "output": "⠗⠥⠼" }, { "input": "ruble's", "output": "⠗⠥⠼⠄⠎" }, { "input": "rubles", "output": "⠗⠥⠼⠎" }, { "input": "rubric", "output": "⠗⠥⠃⠗⠊⠉" }, { "input": "rubric's", "output": "⠗⠥⠃⠗⠊⠉⠄⠎" }, { "input": "rubrics", "output": "⠗⠥⠃⠗⠊⠉⠎" }, { "input": "rubs", "output": "⠗⠥⠃⠎" }, { "input": "ruby", "output": "⠗⠥⠃⠽" }, { "input": "ruby's", "output": "⠗⠥⠃⠽⠄⠎" }, { "input": "rucksack", "output": "⠗⠥⠉⠅⠎â â ‰â …" }, { "input": "rucksack's", "output": "⠗⠥⠉⠅⠎â â ‰â …â „â Ž" }, { "input": "rucksacks", "output": "⠗⠥⠉⠅⠎â â ‰â …â Ž" }, { "input": "ruckus", "output": "⠗⠥⠉⠅⠥⠎" }, { "input": "ruckus's", "output": "⠗⠥⠉⠅⠥⠎⠄⠎" }, { "input": "ruckuses", "output": "⠗⠥⠉⠅⠥⠎⠑⠎" }, { "input": "rudder", "output": "⠗⠥⠲⠻" }, { "input": "rudder's", "output": "⠗⠥⠲⠻⠄⠎" }, { "input": "rudders", "output": "⠗⠥⠲⠻⠎" }, { "input": "ruddier", "output": "⠗⠥⠲⠊⠻" }, { "input": "ruddiest", "output": "⠗⠥⠲⠊⠑⠌" }, { "input": "ruddiness", "output": "⠗⠥⠲⠊⠰⠎" }, { "input": "ruddiness's", "output": "⠗⠥⠲⠊⠰⠎⠄⠎" }, { "input": "ruddy", "output": "⠗⠥⠲⠽" }, { "input": "rude", "output": "⠗⠥⠙⠑" }, { "input": "rudely", "output": "⠗⠥⠙⠑⠇⠽" }, { "input": "rudeness", "output": "⠗⠥⠙⠑⠰⠎" }, { "input": "rudeness's", "output": "⠗⠥⠙⠑⠰⠎⠄⠎" }, { "input": "ruder", "output": "⠗⠥⠙⠻" }, { "input": "rudest", "output": "⠗⠥⠙⠑⠌" }, { "input": "rudiment", "output": "⠗⠥⠙⠊⠰⠞" }, { "input": "rudiment's", "output": "⠗⠥⠙⠊⠰⠞⠄⠎" }, { "input": "rudimentary", "output": "⠗⠥⠙⠊⠰⠞⠜⠽" }, { "input": "rudiments", "output": "⠗⠥⠙⠊⠰⠞⠎" }, { "input": "rue", "output": "⠗⠥⠑" }, { "input": "rue's", "output": "⠗⠥⠑⠄⠎" }, { "input": "rued", "output": "⠗⠥⠫" }, { "input": "rueful", "output": "⠗⠥⠑⠰⠇" }, { "input": "ruefully", "output": "⠗⠥⠑⠰⠇⠇⠽" }, { "input": "ruefulness", "output": "⠗⠥⠑⠰⠇⠰⠎" }, { "input": "ruefulness's", "output": "⠗⠥⠑⠰⠇⠰⠎⠄⠎" }, { "input": "rues", "output": "⠗⠥⠑⠎" }, { "input": "ruff", "output": "⠗⠥⠋⠋" }, { "input": "ruff's", "output": "⠗⠥⠋⠋⠄⠎" }, { "input": "ruffed", "output": "⠗⠥⠖⠫" }, { "input": "ruffian", "output": "⠗⠥⠖⠊â â " }, { "input": "ruffian's", "output": "⠗⠥⠖⠊â â â „â Ž" }, { "input": "ruffianly", "output": "⠗⠥⠖⠊â â â ‡â ½" }, { "input": "ruffians", "output": "⠗⠥⠖⠊â â â Ž" }, { "input": "ruffing", "output": "⠗⠥⠖⠌" }, { "input": "ruffle", "output": "⠗⠥⠖⠇⠑" }, { "input": "ruffle's", "output": "⠗⠥⠖⠇⠑⠄⠎" }, { "input": "ruffled", "output": "⠗⠥⠖⠇⠫" }, { "input": "ruffles", "output": "⠗⠥⠖⠇⠑⠎" }, { "input": "ruffling", "output": "⠗⠥⠖⠇⠌" }, { "input": "ruffly", "output": "⠗⠥⠖⠇⠽" }, { "input": "ruffs", "output": "⠗⠥⠖⠎" }, { "input": "rug", "output": "⠗⠥⠛" }, { "input": "rug's", "output": "⠗⠥⠛⠄⠎" }, { "input": "rugby", "output": "⠗⠥⠛⠃⠽" }, { "input": "rugby's", "output": "⠗⠥⠛⠃⠽⠄⠎" }, { "input": "rugged", "output": "⠗⠥⠶⠫" }, { "input": "ruggeder", "output": "⠗⠥⠶⠫⠻" }, { "input": "ruggedest", "output": "⠗⠥⠶⠫⠑⠌" }, { "input": "ruggedly", "output": "⠗⠥⠶⠫⠇⠽" }, { "input": "ruggedness", "output": "⠗⠥⠶⠫⠰⠎" }, { "input": "ruggedness's", "output": "⠗⠥⠶⠫⠰⠎⠄⠎" }, { "input": "rugs", "output": "⠗⠥⠛⠎" }, { "input": "ruin", "output": "⠗⠥⠔" }, { "input": "ruin's", "output": "⠗⠥⠔⠄⠎" }, { "input": "ruination", "output": "⠗⠥⠔⠠â " }, { "input": "ruination's", "output": "⠗⠥⠔⠠â â „â Ž" }, { "input": "ruined", "output": "⠗⠥⠔⠫" }, { "input": "ruing", "output": "⠗⠥⠌" }, { "input": "ruining", "output": "⠗⠥⠔⠌" }, { "input": "ruinous", "output": "⠗⠥⠔⠳⠎" }, { "input": "ruinously", "output": "⠗⠥⠔⠳⠎⠇⠽" }, { "input": "ruins", "output": "⠗⠥⠔⠎" }, { "input": "rule", "output": "⠗⠥⠇⠑" }, { "input": "rule's", "output": "⠗⠥⠇⠑⠄⠎" }, { "input": "ruled", "output": "⠗⠥⠇⠫" }, { "input": "ruler", "output": "⠗⠥⠇⠻" }, { "input": "ruler's", "output": "⠗⠥⠇⠻⠄⠎" }, { "input": "rulers", "output": "⠗⠥⠇⠻⠎" }, { "input": "rules", "output": "⠗⠥⠇⠑⠎" }, { "input": "ruling", "output": "⠗⠥⠇⠌" }, { "input": "ruling's", "output": "⠗⠥⠇⠌⠄⠎" }, { "input": "rulings", "output": "⠗⠥⠇⠌⠎" }, { "input": "rum", "output": "â —â ¥â " }, { "input": "rum's", "output": "â —â ¥â â „â Ž" }, { "input": "rumba", "output": "â —â ¥â â ƒâ " }, { "input": "rumba's", "output": "â —â ¥â â ƒâ â „â Ž" }, { "input": "rumbaed", "output": "â —â ¥â â ƒâ â «" }, { "input": "rumbaing", "output": "â —â ¥â â ƒâ â Œ" }, { "input": "rumbas", "output": "â —â ¥â â ƒâ â Ž" }, { "input": "rumble", "output": "â —â ¥â â ¼" }, { "input": "rumble's", "output": "â —â ¥â â ¼â „â Ž" }, { "input": "rumbled", "output": "â —â ¥â â ¼â ™" }, { "input": "rumbles", "output": "â —â ¥â â ¼â Ž" }, { "input": "rumbling", "output": "â —â ¥â â ƒâ ‡â Œ" }, { "input": "rumbling's", "output": "â —â ¥â â ƒâ ‡â Œâ „â Ž" }, { "input": "rumblings", "output": "â —â ¥â â ƒâ ‡â Œâ Ž" }, { "input": "ruminant", "output": "â —â ¥â â ”â â â ž" }, { "input": "ruminant's", "output": "â —â ¥â â ”â â â žâ „â Ž" }, { "input": "ruminants", "output": "â —â ¥â â ”â â â žâ Ž" }, { "input": "ruminate", "output": "â —â ¥â â ”â â žâ ‘" }, { "input": "ruminated", "output": "â —â ¥â â ”â â žâ «" }, { "input": "ruminates", "output": "â —â ¥â â ”â â žâ ‘â Ž" }, { "input": "ruminating", "output": "â —â ¥â â ”â â žâ Œ" }, { "input": "rumination", "output": "â —â ¥â â ”â  â " }, { "input": "rumination's", "output": "â —â ¥â â ”â  â â „â Ž" }, { "input": "ruminations", "output": "â —â ¥â â ”â  â â Ž" }, { "input": "rummage", "output": "â —â ¥â â â â ›â ‘" }, { "input": "rummage's", "output": "â —â ¥â â â â ›â ‘â „â Ž" }, { "input": "rummaged", "output": "â —â ¥â â â â ›â «" }, { "input": "rummages", "output": "â —â ¥â â â â ›â ‘â Ž" }, { "input": "rummaging", "output": "â —â ¥â â â â ›â Œ" }, { "input": "rummer", "output": "â —â ¥â â â »" }, { "input": "rummest", "output": "â —â ¥â â â ‘â Œ" }, { "input": "rummy", "output": "â —â ¥â â â ½" }, { "input": "rummy's", "output": "â —â ¥â â â ½â „â Ž" }, { "input": "rumor", "output": "â —â ¥â â •â —" }, { "input": "rumor's", "output": "â —â ¥â â •â —â „â Ž" }, { "input": "rumored", "output": "â —â ¥â â •â —â «" }, { "input": "rumoring", "output": "â —â ¥â â •â —â Œ" }, { "input": "rumormonger", "output": "â —â ¥â â •â —â â °â ›â »" }, { "input": "rumormonger's", "output": "â —â ¥â â •â —â â °â ›â »â „â Ž" }, { "input": "rumormongers", "output": "â —â ¥â â •â —â â °â ›â »â Ž" }, { "input": "rumors", "output": "â —â ¥â â •â —â Ž" }, { "input": "rump", "output": "â —â ¥â â " }, { "input": "rump's", "output": "â —â ¥â â â „â Ž" }, { "input": "rumple", "output": "â —â ¥â â â ‡â ‘" }, { "input": "rumple's", "output": "â —â ¥â â â ‡â ‘â „â Ž" }, { "input": "rumpled", "output": "â —â ¥â â â ‡â «" }, { "input": "rumples", "output": "â —â ¥â â â ‡â ‘â Ž" }, { "input": "rumpling", "output": "â —â ¥â â â ‡â Œ" }, { "input": "rumply", "output": "â —â ¥â â â ‡â ½" }, { "input": "rumps", "output": "â —â ¥â â â Ž" }, { "input": "rumpus", "output": "â —â ¥â â â ¥â Ž" }, { "input": "rumpus's", "output": "â —â ¥â â â ¥â Žâ „â Ž" }, { "input": "rumpuses", "output": "â —â ¥â â â ¥â Žâ ‘â Ž" }, { "input": "rums", "output": "â —â ¥â â Ž" }, { "input": "run", "output": "â —â ¥â " }, { "input": "run's", "output": "â —â ¥â â „â Ž" }, { "input": "runabout", "output": "â —â ¥â â â ƒ" }, { "input": "runabout's", "output": "â —â ¥â â â ƒâ „â Ž" }, { "input": "runabouts", "output": "â —â ¥â â â ƒâ Ž" }, { "input": "runaround", "output": "â —â ¥â â œâ ¨â ™" }, { "input": "runaround's", "output": "â —â ¥â â œâ ¨â ™â „â Ž" }, { "input": "runarounds", "output": "â —â ¥â â œâ ¨â ™â Ž" }, { "input": "runaway", "output": "â —â ¥â â â ºâ â ½" }, { "input": "runaway's", "output": "â —â ¥â â â ºâ â ½â „â Ž" }, { "input": "runaways", "output": "â —â ¥â â â ºâ â ½â Ž" }, { "input": "rundown", "output": "â —â ¥â â ™â ªâ " }, { "input": "rundown's", "output": "â —â ¥â â ™â ªâ â „â Ž" }, { "input": "rundowns", "output": "â —â ¥â â ™â ªâ â Ž" }, { "input": "rune", "output": "â —â ¥â â ‘" }, { "input": "rune's", "output": "â —â ¥â â ‘â „â Ž" }, { "input": "runes", "output": "â —â ¥â â ‘â Ž" }, { "input": "rung", "output": "â —â ¥â â ›" }, { "input": "rung's", "output": "â —â ¥â â ›â „â Ž" }, { "input": "rungs", "output": "â —â ¥â â ›â Ž" }, { "input": "runlet", "output": "â —â ¥â â ‡â ‘â ž" }, { "input": "runlet's", "output": "â —â ¥â â ‡â ‘â žâ „â Ž" }, { "input": "runlets", "output": "â —â ¥â â ‡â ‘â žâ Ž" }, { "input": "runnel", "output": "â —â ¥â â â ‘â ‡" }, { "input": "runnel's", "output": "â —â ¥â â â ‘⠇⠄⠎" }, { "input": "runnels", "output": "â —â ¥â â â ‘⠇⠎" }, { "input": "runner", "output": "â —â ¥â â â »" }, { "input": "runner's", "output": "â —â ¥â â â »â „â Ž" }, { "input": "runners", "output": "â —â ¥â â â »â Ž" }, { "input": "runnier", "output": "â —â ¥â â â Šâ »" }, { "input": "runniest", "output": "â —â ¥â â â Šâ ‘â Œ" }, { "input": "running", "output": "â —â ¥â â â Œ" }, { "input": "running's", "output": "â —â ¥â â â Œâ „â Ž" }, { "input": "runny", "output": "â —â ¥â â â ½" }, { "input": "runoff", "output": "â —â ¥â â ·â ‹" }, { "input": "runoff's", "output": "â —â ¥â â ·â ‹â „â Ž" }, { "input": "runoffs", "output": "â —â ¥â â ·â ‹â Ž" }, { "input": "runs", "output": "â —â ¥â â Ž" }, { "input": "runt", "output": "â —â ¥â â ž" }, { "input": "runt's", "output": "â —â ¥â â žâ „â Ž" }, { "input": "runtier", "output": "â —â ¥â â žâ Šâ »" }, { "input": "runtiest", "output": "â —â ¥â â žâ Šâ ‘â Œ" }, { "input": "runts", "output": "â —â ¥â â žâ Ž" }, { "input": "runty", "output": "â —â ¥â â žâ ½" }, { "input": "runway", "output": "â —â ¥â â ºâ â ½" }, { "input": "runway's", "output": "â —â ¥â â ºâ â ½â „â Ž" }, { "input": "runways", "output": "â —â ¥â â ºâ â ½â Ž" }, { "input": "rupee", "output": "â —â ¥â â ‘â ‘" }, { "input": "rupee's", "output": "â —â ¥â â ‘â ‘â „â Ž" }, { "input": "rupees", "output": "â —â ¥â â ‘â ‘â Ž" }, { "input": "rupiah", "output": "â —â ¥â â Šâ â “" }, { "input": "rupiah's", "output": "â —â ¥â â Šâ â “â „â Ž" }, { "input": "rupiahs", "output": "â —â ¥â â Šâ â “â Ž" }, { "input": "rupture", "output": "â —â ¥â â žâ ¥â —â ‘" }, { "input": "rupture's", "output": "â —â ¥â â žâ ¥â —â ‘â „â Ž" }, { "input": "ruptured", "output": "â —â ¥â â žâ ¥â —â «" }, { "input": "ruptures", "output": "â —â ¥â â žâ ¥â —â ‘â Ž" }, { "input": "rupturing", "output": "â —â ¥â â žâ ¥â —â Œ" }, { "input": "rural", "output": "⠗⠥⠗â â ‡" }, { "input": "ruse", "output": "⠗⠥⠎⠑" }, { "input": "ruse's", "output": "⠗⠥⠎⠑⠄⠎" }, { "input": "ruses", "output": "⠗⠥⠎⠑⠎" }, { "input": "rush", "output": "⠗⠥⠩" }, { "input": "rush's", "output": "⠗⠥⠩⠄⠎" }, { "input": "rushed", "output": "⠗⠥⠩⠫" }, { "input": "rusher", "output": "⠗⠥⠩⠻" }, { "input": "rusher's", "output": "⠗⠥⠩⠻⠄⠎" }, { "input": "rushers", "output": "⠗⠥⠩⠻⠎" }, { "input": "rushes", "output": "⠗⠥⠩⠑⠎" }, { "input": "rushier", "output": "⠗⠥⠩⠊⠻" }, { "input": "rushiest", "output": "⠗⠥⠩⠊⠑⠌" }, { "input": "rushing", "output": "⠗⠥⠩⠌" }, { "input": "rushy", "output": "⠗⠥⠩⠽" }, { "input": "rusk", "output": "⠗⠥⠎⠅" }, { "input": "rusk's", "output": "⠗⠥⠎⠅⠄⠎" }, { "input": "rusks", "output": "⠗⠥⠎⠅⠎" }, { "input": "russet", "output": "⠗⠥⠎⠎⠑⠞" }, { "input": "russet's", "output": "⠗⠥⠎⠎⠑⠞⠄⠎" }, { "input": "russets", "output": "⠗⠥⠎⠎⠑⠞⠎" }, { "input": "rust", "output": "⠗⠥⠌" }, { "input": "rust's", "output": "⠗⠥⠌⠄⠎" }, { "input": "rusted", "output": "⠗⠥⠌⠫" }, { "input": "rustic", "output": "⠗⠥⠌⠊⠉" }, { "input": "rustic's", "output": "⠗⠥⠌⠊⠉⠄⠎" }, { "input": "rustically", "output": "⠗⠥⠌⠊⠉⠠⠽" }, { "input": "rusticate", "output": "⠗⠥⠌⠊⠉â â žâ ‘" }, { "input": "rusticated", "output": "⠗⠥⠌⠊⠉â â žâ «" }, { "input": "rusticates", "output": "⠗⠥⠌⠊⠉â â žâ ‘â Ž" }, { "input": "rusticating", "output": "⠗⠥⠌⠊⠉â â žâ Œ" }, { "input": "rustication", "output": "⠗⠥⠌⠊⠉⠠â " }, { "input": "rustication's", "output": "⠗⠥⠌⠊⠉⠠â â „â Ž" }, { "input": "rusticity", "output": "⠗⠥⠌⠊⠉⠰⠽" }, { "input": "rusticity's", "output": "⠗⠥⠌⠊⠉⠰⠽⠄⠎" }, { "input": "rustics", "output": "⠗⠥⠌⠊⠉⠎" }, { "input": "rustier", "output": "⠗⠥⠌⠊⠻" }, { "input": "rustiest", "output": "⠗⠥⠌⠊⠑⠌" }, { "input": "rustiness", "output": "⠗⠥⠌⠊⠰⠎" }, { "input": "rustiness's", "output": "⠗⠥⠌⠊⠰⠎⠄⠎" }, { "input": "rusting", "output": "⠗⠥⠌⠌" }, { "input": "rustle", "output": "⠗⠥⠌⠇⠑" }, { "input": "rustle's", "output": "⠗⠥⠌⠇⠑⠄⠎" }, { "input": "rustled", "output": "⠗⠥⠌⠇⠫" }, { "input": "rustler", "output": "⠗⠥⠌⠇⠻" }, { "input": "rustler's", "output": "⠗⠥⠌⠇⠻⠄⠎" }, { "input": "rustlers", "output": "⠗⠥⠌⠇⠻⠎" }, { "input": "rustles", "output": "⠗⠥⠌⠇⠑⠎" }, { "input": "rustling", "output": "⠗⠥⠌⠇⠌" }, { "input": "rustproof", "output": "⠗⠥⠌â â —â •â ·" }, { "input": "rustproofed", "output": "⠗⠥⠌â â —â •â ·â «" }, { "input": "rustproofing", "output": "⠗⠥⠌â â —â •â ·â Œ" }, { "input": "rustproofs", "output": "⠗⠥⠌â â —â •â ·â Ž" }, { "input": "rusts", "output": "⠗⠥⠌⠎" }, { "input": "rusty", "output": "⠗⠥⠌⠽" }, { "input": "rut", "output": "⠗⠥⠞" }, { "input": "rut's", "output": "⠗⠥⠞⠄⠎" }, { "input": "rutabaga", "output": "⠗⠥⠞â â ƒâ â ›â " }, { "input": "rutabaga's", "output": "⠗⠥⠞â â ƒâ â ›â â „â Ž" }, { "input": "rutabagas", "output": "⠗⠥⠞â â ƒâ â ›â â Ž" }, { "input": "ruthenium", "output": "⠗⠥⠮â â Šâ ¥â " }, { "input": "ruthenium's", "output": "⠗⠥⠮â â Šâ ¥â â „â Ž" }, { "input": "rutherfordium", "output": "⠗⠥⠮⠗⠿⠙⠊⠥â " }, { "input": "rutherfordium's", "output": "⠗⠥⠮⠗⠿⠙⠊⠥â â „â Ž" }, { "input": "ruthless", "output": "⠗⠥⠹⠨⠎" }, { "input": "ruthlessly", "output": "⠗⠥⠹⠨⠎⠇⠽" }, { "input": "ruthlessness", "output": "⠗⠥⠹⠨⠎⠰⠎" }, { "input": "ruthlessness's", "output": "⠗⠥⠹⠨⠎⠰⠎⠄⠎" }, { "input": "ruts", "output": "⠗⠥⠞⠎" }, { "input": "rutted", "output": "⠗⠥⠞⠞⠫" }, { "input": "ruttier", "output": "⠗⠥⠞⠞⠊⠻" }, { "input": "ruttiest", "output": "⠗⠥⠞⠞⠊⠑⠌" }, { "input": "rutting", "output": "⠗⠥⠞⠞⠌" }, { "input": "rutty", "output": "⠗⠥⠞⠞⠽" }, { "input": "rye", "output": "⠗⠽⠑" }, { "input": "rye's", "output": "⠗⠽⠑⠄⠎" }, { "input": "s", "output": "â °â Ž" }, { "input": "sabbatical", "output": "â Žâ â †â â žâ Šâ ‰â â ‡" }, { "input": "sabbatical's", "output": "â Žâ â †â â žâ Šâ ‰â â ‡â „â Ž" }, { "input": "sabbaticals", "output": "â Žâ â †â â žâ Šâ ‰â â ‡â Ž" }, { "input": "saber", "output": "â Žâ â ƒâ »" }, { "input": "saber's", "output": "â Žâ â ƒâ »â „â Ž" }, { "input": "sabers", "output": "â Žâ â ƒâ »â Ž" }, { "input": "sable", "output": "â Žâ â ¼" }, { "input": "sable's", "output": "â Žâ â ¼â „â Ž" }, { "input": "sables", "output": "â Žâ â ¼â Ž" }, { "input": "sabot", "output": "â Žâ â ƒâ •â ž" }, { "input": "sabot's", "output": "â Žâ â ƒâ •â žâ „â Ž" }, { "input": "sabotage", "output": "â Žâ â ƒâ •â žâ â ›â ‘" }, { "input": "sabotage's", "output": "â Žâ â ƒâ •â žâ â ›â ‘â „â Ž" }, { "input": "sabotaged", "output": "â Žâ â ƒâ •â žâ â ›â «" }, { "input": "sabotages", "output": "â Žâ â ƒâ •â žâ â ›â ‘â Ž" }, { "input": "sabotaging", "output": "â Žâ â ƒâ •â žâ â ›â Œ" }, { "input": "saboteur", "output": "â Žâ â ƒâ •⠞⠑⠥⠗" }, { "input": "saboteur's", "output": "â Žâ â ƒâ •⠞⠑⠥⠗⠄⠎" }, { "input": "saboteurs", "output": "â Žâ â ƒâ •⠞⠑⠥⠗⠎" }, { "input": "sabots", "output": "â Žâ â ƒâ •â žâ Ž" }, { "input": "sabra", "output": "â Žâ â ƒâ —â " }, { "input": "sabra's", "output": "â Žâ â ƒâ —â â „â Ž" }, { "input": "sabras", "output": "â Žâ â ƒâ —â â Ž" }, { "input": "sac", "output": "â Žâ â ‰" }, { "input": "sac's", "output": "â Žâ â ‰â „â Ž" }, { "input": "saccharin", "output": "â Žâ â ‰â ¡â œâ ”" }, { "input": "saccharin's", "output": "â Žâ â ‰â ¡â œâ ”â „â Ž" }, { "input": "saccharine", "output": "â Žâ â ‰â ¡â œâ ”â ‘" }, { "input": "sacerdotal", "output": "â Žâ â ‰â »â ™â •â žâ â ‡" }, { "input": "sachem", "output": "â Žâ â ¡â ‘â " }, { "input": "sachem's", "output": "â Žâ â ¡â ‘â â „â Ž" }, { "input": "sachems", "output": "â Žâ â ¡â ‘â â Ž" }, { "input": "sachet", "output": "â Žâ â ¡â ‘â ž" }, { "input": "sachet's", "output": "â Žâ â ¡â ‘â žâ „â Ž" }, { "input": "sachets", "output": "â Žâ â ¡â ‘â žâ Ž" }, { "input": "sack", "output": "â Žâ â ‰â …" }, { "input": "sack's", "output": "â Žâ â ‰â …â „â Ž" }, { "input": "sackcloth", "output": "â Žâ â ‰â …⠉⠇⠕⠹" }, { "input": "sackcloth's", "output": "â Žâ â ‰â …⠉⠇⠕⠹⠄⠎" }, { "input": "sacked", "output": "â Žâ â ‰â …â «" }, { "input": "sackful", "output": "â Žâ â ‰â …â °â ‡" }, { "input": "sackful's", "output": "â Žâ â ‰â …⠰⠇⠄⠎" }, { "input": "sackfuls", "output": "â Žâ â ‰â …⠰⠇⠎" }, { "input": "sacking", "output": "â Žâ â ‰â …â Œ" }, { "input": "sacking's", "output": "â Žâ â ‰â …⠌⠄⠎" }, { "input": "sacks", "output": "â Žâ â ‰â …â Ž" }, { "input": "sacra", "output": "â Žâ â ‰â —â " }, { "input": "sacrament", "output": "â Žâ â ‰â —â â °â ž" }, { "input": "sacrament's", "output": "â Žâ â ‰â —â â °â žâ „â Ž" }, { "input": "sacramental", "output": "â Žâ â ‰â —â â °â žâ â ‡" }, { "input": "sacraments", "output": "â Žâ â ‰â —â â °â žâ Ž" }, { "input": "sacred", "output": "â Žâ â ‰â —â «" }, { "input": "sacredly", "output": "â Žâ â ‰â —⠫⠇⠽" }, { "input": "sacredness", "output": "â Žâ â ‰â —â «â °â Ž" }, { "input": "sacredness's", "output": "â Žâ â ‰â —â «â °â Žâ „â Ž" }, { "input": "sacrifice", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠑" }, { "input": "sacrifice's", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠑⠄⠎" }, { "input": "sacrificed", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠫" }, { "input": "sacrifices", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠑⠎" }, { "input": "sacrificial", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠊â â ‡" }, { "input": "sacrificing", "output": "â Žâ â ‰â —⠊⠋⠊⠉⠌" }, { "input": "sacrilege", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠑" }, { "input": "sacrilege's", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠑⠄⠎" }, { "input": "sacrileges", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠑⠎" }, { "input": "sacrilegious", "output": "â Žâ â ‰â —⠊⠇⠑⠛⠊⠳⠎" }, { "input": "sacristan", "output": "â Žâ â ‰â —â Šâ Œâ â " }, { "input": "sacristan's", "output": "â Žâ â ‰â —â Šâ Œâ â â „â Ž" }, { "input": "sacristans", "output": "â Žâ â ‰â —â Šâ Œâ â â Ž" }, { "input": "sacristies", "output": "â Žâ â ‰â —⠊⠌⠊⠑⠎" }, { "input": "sacristy", "output": "â Žâ â ‰â —⠊⠌⠽" }, { "input": "sacristy's", "output": "â Žâ â ‰â —⠊⠌⠽⠄⠎" }, { "input": "sacroiliac", "output": "â Žâ â ‰â —⠕⠊⠇⠊â â ‰" }, { "input": "sacroiliac's", "output": "â Žâ â ‰â —⠕⠊⠇⠊â â ‰â „â Ž" }, { "input": "sacroiliacs", "output": "â Žâ â ‰â —⠕⠊⠇⠊â â ‰â Ž" }, { "input": "sacrosanct", "output": "â Žâ â ‰â —â •â Žâ â â ‰â ž" }, { "input": "sacrosanctness", "output": "â Žâ â ‰â —â •â Žâ â â ‰â žâ °â Ž" }, { "input": "sacrosanctness's", "output": "â Žâ â ‰â —â •â Žâ â â ‰â žâ °â Žâ „â Ž" }, { "input": "sacrum", "output": "â Žâ â ‰â —â ¥â " }, { "input": "sacrum's", "output": "â Žâ â ‰â —â ¥â â „â Ž" }, { "input": "sacs", "output": "â Žâ â ‰â Ž" }, { "input": "sad", "output": "â Žâ â ™" }, { "input": "sadden", "output": "â Žâ â ²â ¢" }, { "input": "saddened", "output": "â Žâ â ²â ¢â «" }, { "input": "saddening", "output": "â Žâ â ²â ¢â Œ" }, { "input": "saddens", "output": "â Žâ â ²â ¢â Ž" }, { "input": "sadder", "output": "â Žâ â ²â »" }, { "input": "saddest", "output": "â Žâ â ²â ‘â Œ" }, { "input": "saddle", "output": "â Žâ â ²â ‡â ‘" }, { "input": "saddle's", "output": "â Žâ â ²â ‡â ‘â „â Ž" }, { "input": "saddlebag", "output": "â Žâ â ²â ‡â ‘â ƒâ â ›" }, { "input": "saddlebag's", "output": "â Žâ â ²â ‡â ‘â ƒâ â ›â „â Ž" }, { "input": "saddlebags", "output": "â Žâ â ²â ‡â ‘â ƒâ â ›â Ž" }, { "input": "saddled", "output": "â Žâ â ²â ‡â «" }, { "input": "saddles", "output": "â Žâ â ²â ‡â ‘â Ž" }, { "input": "saddling", "output": "â Žâ â ²â ‡â Œ" }, { "input": "sades", "output": "â Žâ â ™â ‘â Ž" }, { "input": "sadism", "output": "â Žâ â ™â Šâ Žâ " }, { "input": "sadism's", "output": "â Žâ â ™â Šâ Žâ â „â Ž" }, { "input": "sadist", "output": "â Žâ â ™â Šâ Œ" }, { "input": "sadist's", "output": "â Žâ â ™â Šâ Œâ „â Ž" }, { "input": "sadistic", "output": "â Žâ â ™â Šâ Œâ Šâ ‰" }, { "input": "sadistically", "output": "â Žâ â ™â Šâ Œâ Šâ ‰â  â ½" }, { "input": "sadists", "output": "â Žâ â ™â Šâ Œâ Ž" }, { "input": "sadly", "output": "â Žâ â ™â ‡â ½" }, { "input": "sadness", "output": "â Žâ â ™â °â Ž" }, { "input": "sadness's", "output": "â Žâ â ™â °â Žâ „â Ž" }, { "input": "sadomasochism's", "output": "â Žâ â ™â •â â â Žâ •â ¡â Šâ Žâ â „â Ž" }, { "input": "safari", "output": "â Žâ â ‹â œâ Š" }, { "input": "safari's", "output": "â Žâ â ‹â œâ Šâ „â Ž" }, { "input": "safaried", "output": "â Žâ â ‹â œâ Šâ «" }, { "input": "safariing", "output": "â Žâ â ‹â œâ Šâ Œ" }, { "input": "safaris", "output": "â Žâ â ‹â œâ Šâ Ž" }, { "input": "safe", "output": "â Žâ â ‹â ‘" }, { "input": "safe's", "output": "â Žâ â ‹â ‘â „â Ž" }, { "input": "safeguard", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙" }, { "input": "safeguard's", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠄⠎" }, { "input": "safeguarded", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠫" }, { "input": "safeguarding", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠌" }, { "input": "safeguards", "output": "â Žâ â ‹â ‘⠛⠥⠜⠙⠎" }, { "input": "safekeeping", "output": "â Žâ â ‹â ‘â …â ‘â ‘â â Œ" }, { "input": "safekeeping's", "output": "â Žâ â ‹â ‘â …â ‘â ‘â â Œâ „â Ž" }, { "input": "safely", "output": "â Žâ â ‹â ‘⠇⠽" }, { "input": "safeness", "output": "â Žâ â ‹â ‘â °â Ž" }, { "input": "safeness's", "output": "â Žâ â ‹â ‘â °â Žâ „â Ž" }, { "input": "safer", "output": "â Žâ â ‹â »" }, { "input": "safes", "output": "â Žâ â ‹â ‘â Ž" }, { "input": "safest", "output": "â Žâ â ‹â ‘â Œ" }, { "input": "safeties", "output": "â Žâ â ‹â ‘â žâ Šâ ‘â Ž" }, { "input": "safety", "output": "â Žâ â ‹â ‘â žâ ½" }, { "input": "safety's", "output": "â Žâ â ‹â ‘⠞⠽⠄⠎" }, { "input": "safflower", "output": "â Žâ â –⠇⠪⠻" }, { "input": "safflower's", "output": "â Žâ â –⠇⠪⠻⠄⠎" }, { "input": "safflowers", "output": "â Žâ â –⠇⠪⠻⠎" }, { "input": "saffron", "output": "â Žâ â –â —â •â " }, { "input": "saffron's", "output": "â Žâ â –â —â •â â „â Ž" }, { "input": "saffrons", "output": "â Žâ â –â —â •â â Ž" }, { "input": "sag", "output": "â Žâ â ›" }, { "input": "sag's", "output": "â Žâ â ›â „â Ž" }, { "input": "saga", "output": "â Žâ â ›â " }, { "input": "saga's", "output": "â Žâ â ›â â „â Ž" }, { "input": "sagacious", "output": "â Žâ â ›â â ‰â Šâ ³â Ž" }, { "input": "sagacity", "output": "â Žâ â ›â â ‰â °â ½" }, { "input": "sagacity's", "output": "â Žâ â ›â â ‰â °â ½â „â Ž" }, { "input": "sagas", "output": "â Žâ â ›â â Ž" }, { "input": "sage", "output": "â Žâ â ›â ‘" }, { "input": "sage's", "output": "â Žâ â ›â ‘â „â Ž" }, { "input": "sagebrush", "output": "â Žâ â ›â ‘⠃⠗⠥⠩" }, { "input": "sagebrush's", "output": "â Žâ â ›â ‘⠃⠗⠥⠩⠄⠎" }, { "input": "sager", "output": "â Žâ â ›â »" }, { "input": "sages", "output": "â Žâ â ›â ‘â Ž" }, { "input": "sagest", "output": "â Žâ â ›â ‘â Œ" }, { "input": "sagged", "output": "â Žâ â ¶â «" }, { "input": "saggier", "output": "â Žâ â ¶â Šâ »" }, { "input": "saggiest", "output": "â Žâ â ¶â Šâ ‘â Œ" }, { "input": "sagging", "output": "â Žâ â ¶â Œ" }, { "input": "sago", "output": "â Žâ â ›â •" }, { "input": "sago's", "output": "â Žâ â ›â •â „â Ž" }, { "input": "sags", "output": "â Žâ â ›â Ž" }, { "input": "saguaro", "output": "â Žâ â ›â ¥â œâ •" }, { "input": "saguaro's", "output": "â Žâ â ›â ¥â œâ •â „â Ž" }, { "input": "saguaros", "output": "â Žâ â ›â ¥â œâ •â Ž" }, { "input": "sahib", "output": "â Žâ â “â Šâ ƒ" }, { "input": "sahib's", "output": "â Žâ â “⠊⠃⠄⠎" }, { "input": "sahibs", "output": "â Žâ â “⠊⠃⠎" }, { "input": "said", "output": "â Žâ ™" }, { "input": "sail", "output": "â Žâ â Šâ ‡" }, { "input": "sail's", "output": "â Žâ â Šâ ‡â „â Ž" }, { "input": "sailboard", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙" }, { "input": "sailboard's", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠄⠎" }, { "input": "sailboarder", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠻" }, { "input": "sailboarder's", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠻⠄⠎" }, { "input": "sailboarders", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠻⠎" }, { "input": "sailboarding", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠌" }, { "input": "sailboarding's", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠌⠄⠎" }, { "input": "sailboards", "output": "â Žâ â Šâ ‡â ƒâ •⠜⠙⠎" }, { "input": "sailboat", "output": "â Žâ â Šâ ‡â ƒâ •â â ž" }, { "input": "sailboat's", "output": "â Žâ â Šâ ‡â ƒâ •â â žâ „â Ž" }, { "input": "sailboats", "output": "â Žâ â Šâ ‡â ƒâ •â â žâ Ž" }, { "input": "sailcloth", "output": "â Žâ â Šâ ‡â ‰â ‡â •â ¹" }, { "input": "sailcloth's", "output": "â Žâ â Šâ ‡â ‰â ‡â •⠹⠄⠎" }, { "input": "sailed", "output": "â Žâ â Šâ ‡â «" }, { "input": "sailfish", "output": "â Žâ â Šâ ‡â ‹â Šâ ©" }, { "input": "sailfish's", "output": "â Žâ â Šâ ‡â ‹â Šâ ©â „â Ž" }, { "input": "sailfishes", "output": "â Žâ â Šâ ‡â ‹â Šâ ©â ‘â Ž" }, { "input": "sailing", "output": "â Žâ â Šâ ‡â Œ" }, { "input": "sailing's", "output": "â Žâ â Šâ ‡â Œâ „â Ž" }, { "input": "sailings", "output": "â Žâ â Šâ ‡â Œâ Ž" }, { "input": "sailor", "output": "â Žâ â Šâ ‡â •â —" }, { "input": "sailor's", "output": "â Žâ â Šâ ‡â •â —â „â Ž" }, { "input": "sailors", "output": "â Žâ â Šâ ‡â •â —â Ž" }, { "input": "sailplane", "output": "â Žâ â Šâ ‡â â ‡â â â ‘" }, { "input": "sailplane's", "output": "â Žâ â Šâ ‡â â ‡â â â ‘â „â Ž" }, { "input": "sailplanes", "output": "â Žâ â Šâ ‡â â ‡â â â ‘â Ž" }, { "input": "sails", "output": "â Žâ â Šâ ‡â Ž" }, { "input": "saint", "output": "â Žâ â ”â ž" }, { "input": "saint's", "output": "â Žâ â ”â žâ „â Ž" }, { "input": "sainthood", "output": "â Žâ â ”â žâ “â •â •â ™" }, { "input": "sainthood's", "output": "â Žâ â ”⠞⠓⠕⠕⠙⠄⠎" }, { "input": "saintlier", "output": "â Žâ â ”⠞⠇⠊⠻" }, { "input": "saintliest", "output": "â Žâ â ”⠞⠇⠊⠑⠌" }, { "input": "saintlike", "output": "â Žâ â ”⠞⠇⠊⠅⠑" }, { "input": "saintliness", "output": "â Žâ â ”⠞⠇⠊⠰⠎" }, { "input": "saintliness's", "output": "â Žâ â ”⠞⠇⠊⠰⠎⠄⠎" }, { "input": "saintly", "output": "â Žâ â ”⠞⠇⠽" }, { "input": "saints", "output": "â Žâ â ”â žâ Ž" }, { "input": "saith", "output": "â Žâ â Šâ ¹" }, { "input": "sake", "output": "â Žâ â …â ‘" }, { "input": "sake's", "output": "â Žâ â …â ‘â „â Ž" }, { "input": "salaam", "output": "â Žâ â ‡â â â " }, { "input": "salaam's", "output": "â Žâ â ‡â â â â „â Ž" }, { "input": "salaamed", "output": "â Žâ â ‡â â â â «" }, { "input": "salaaming", "output": "â Žâ â ‡â â â â Œ" }, { "input": "salaams", "output": "â Žâ â ‡â â â â Ž" }, { "input": "salable", "output": "â Žâ â ‡â â ¼" }, { "input": "salacious", "output": "â Žâ â ‡â â ‰â Šâ ³â Ž" }, { "input": "salaciously", "output": "â Žâ â ‡â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "salaciousness", "output": "â Žâ â ‡â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "salaciousness's", "output": "â Žâ â ‡â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "salacity", "output": "â Žâ â ‡â â ‰â °â ½" }, { "input": "salacity's", "output": "â Žâ â ‡â â ‰â °â ½â „â Ž" }, { "input": "salad", "output": "â Žâ â ‡â â ™" }, { "input": "salad's", "output": "â Žâ â ‡â â ™â „â Ž" }, { "input": "salads", "output": "â Žâ â ‡â â ™â Ž" }, { "input": "salamander", "output": "â Žâ â ‡â â â ¯â »" }, { "input": "salamander's", "output": "â Žâ â ‡â â â ¯â »â „â Ž" }, { "input": "salamanders", "output": "â Žâ â ‡â â â ¯â »â Ž" }, { "input": "salami", "output": "â Žâ â ‡â â â Š" }, { "input": "salami's", "output": "â Žâ â ‡â â â Šâ „â Ž" }, { "input": "salamis", "output": "â Žâ â ‡â â â Šâ Ž" }, { "input": "salaried", "output": "â Žâ â ‡â œâ Šâ «" }, { "input": "salaries", "output": "â Žâ â ‡â œâ Šâ ‘â Ž" }, { "input": "salary", "output": "â Žâ â ‡â œâ ½" }, { "input": "salary's", "output": "â Žâ â ‡â œâ ½â „â Ž" }, { "input": "sale", "output": "â Žâ â ‡â ‘" }, { "input": "sale's", "output": "â Žâ â ‡â ‘â „â Ž" }, { "input": "sales", "output": "â Žâ â ‡â ‘â Ž" }, { "input": "salesclerk", "output": "â Žâ â ‡â ‘⠎⠉⠇⠻⠅" }, { "input": "salesclerk's", "output": "â Žâ â ‡â ‘⠎⠉⠇⠻⠅⠄⠎" }, { "input": "salesclerks", "output": "â Žâ â ‡â ‘⠎⠉⠇⠻⠅⠎" }, { "input": "salesgirl", "output": "â Žâ â ‡â ‘⠎⠛⠊⠗⠇" }, { "input": "salesgirl's", "output": "â Žâ â ‡â ‘⠎⠛⠊⠗⠇⠄⠎" }, { "input": "salesgirls", "output": "â Žâ â ‡â ‘⠎⠛⠊⠗⠇⠎" }, { "input": "salesladies", "output": "â Žâ â ‡â ‘â Žâ ‡â â ™â Šâ ‘â Ž" }, { "input": "saleslady", "output": "â Žâ â ‡â ‘â Žâ ‡â â ™â ½" }, { "input": "saleslady's", "output": "â Žâ â ‡â ‘â Žâ ‡â â ™â ½â „â Ž" }, { "input": "salesman", "output": "â Žâ â ‡â ‘â Žâ â â " }, { "input": "salesman's", "output": "â Žâ â ‡â ‘â Žâ â â â „â Ž" }, { "input": "salesmanship", "output": "â Žâ â ‡â ‘â Žâ â â â ©â Šâ " }, { "input": "salesmanship's", "output": "â Žâ â ‡â ‘â Žâ â â â ©â Šâ â „â Ž" }, { "input": "salesmen", "output": "â Žâ â ‡â ‘â Žâ â ¢" }, { "input": "salespeople", "output": "â Žâ â ‡â ‘â Žâ â ‘â •â â ‡â ‘" }, { "input": "salespeople's", "output": "â Žâ â ‡â ‘â Žâ â ‘â •â â ‡â ‘â „â Ž" }, { "input": "salesperson", "output": "â Žâ â ‡â ‘â Žâ â »â Žâ •â " }, { "input": "salesperson's", "output": "â Žâ â ‡â ‘â Žâ â »â Žâ •â â „â Ž" }, { "input": "salespersons", "output": "â Žâ â ‡â ‘â Žâ â »â Žâ •â â Ž" }, { "input": "saleswoman", "output": "â Žâ â ‡â ‘⠎⠺⠕â â â " }, { "input": "saleswoman's", "output": "â Žâ â ‡â ‘⠎⠺⠕â â â â „â Ž" }, { "input": "saleswomen", "output": "â Žâ â ‡â ‘⠎⠺⠕â â ¢" }, { "input": "salience's", "output": "â Žâ â ‡â Šâ °â ‘â „â Ž" }, { "input": "salient", "output": "â Žâ â ‡â Šâ ¢â ž" }, { "input": "salient's", "output": "â Žâ â ‡â Šâ ¢â žâ „â Ž" }, { "input": "saliently", "output": "â Žâ â ‡â Šâ ¢â žâ ‡â ½" }, { "input": "salients", "output": "â Žâ â ‡â Šâ ¢â žâ Ž" }, { "input": "saline", "output": "â Žâ â ‡â ”â ‘" }, { "input": "saline's", "output": "â Žâ â ‡â ”â ‘â „â Ž" }, { "input": "salines", "output": "â Žâ â ‡â ”â ‘â Ž" }, { "input": "salinity", "output": "â Žâ â ‡â ”â °â ½" }, { "input": "salinity's", "output": "â Žâ â ‡â ”⠰⠽⠄⠎" }, { "input": "saliva", "output": "â Žâ â ‡â Šâ §â " }, { "input": "saliva's", "output": "â Žâ â ‡â Šâ §â â „â Ž" }, { "input": "salivary", "output": "â Žâ â ‡â Šâ §â œâ ½" }, { "input": "salivate", "output": "â Žâ â ‡â Šâ §â â žâ ‘" }, { "input": "salivated", "output": "â Žâ â ‡â Šâ §â â žâ «" }, { "input": "salivates", "output": "â Žâ â ‡â Šâ §â â žâ ‘â Ž" }, { "input": "salivating", "output": "â Žâ â ‡â Šâ §â â žâ Œ" }, { "input": "salivation", "output": "â Žâ â ‡â Šâ §â  â " }, { "input": "salivation's", "output": "â Žâ â ‡â Šâ §â  â â „â Ž" }, { "input": "sallied", "output": "â Žâ â ‡â ‡â Šâ «" }, { "input": "sallies", "output": "â Žâ â ‡â ‡â Šâ ‘â Ž" }, { "input": "sallow", "output": "â Žâ â ‡â ‡â ª" }, { "input": "sallower", "output": "â Žâ â ‡â ‡â ªâ »" }, { "input": "sallowest", "output": "â Žâ â ‡â ‡â ªâ ‘â Œ" }, { "input": "sallowness's", "output": "â Žâ â ‡â ‡â ªâ °â Žâ „â Ž" }, { "input": "sally", "output": "â Žâ  â ½" }, { "input": "sally's", "output": "⠎⠠⠽⠄⠎" }, { "input": "sallying", "output": "⠎⠠⠽⠌" }, { "input": "salmon", "output": "â Žâ â ‡â â •â " }, { "input": "salmon's", "output": "â Žâ â ‡â â •â â „â Ž" }, { "input": "salmonella", "output": "â Žâ â ‡â â •â â ‘⠇⠇â " }, { "input": "salmonella's", "output": "â Žâ â ‡â â •â â ‘⠇⠇â â „â Ž" }, { "input": "salmonellae", "output": "â Žâ â ‡â â •â â ‘⠇⠇â â ‘" }, { "input": "salmons", "output": "â Žâ â ‡â â •â â Ž" }, { "input": "salon", "output": "â Žâ â ‡â •â " }, { "input": "salon's", "output": "â Žâ â ‡â •â â „â Ž" }, { "input": "salons", "output": "â Žâ â ‡â •â â Ž" }, { "input": "saloon", "output": "â Žâ â ‡â •â •â " }, { "input": "saloon's", "output": "â Žâ â ‡â •â •â â „â Ž" }, { "input": "saloons", "output": "â Žâ â ‡â •â •â â Ž" }, { "input": "salsa", "output": "â Žâ â ‡â Žâ " }, { "input": "salsa's", "output": "â Žâ â ‡â Žâ â „â Ž" }, { "input": "salsas", "output": "â Žâ â ‡â Žâ â Ž" }, { "input": "salt", "output": "â Žâ â ‡â ž" }, { "input": "salt's", "output": "â Žâ â ‡â žâ „â Ž" }, { "input": "saltcellar", "output": "â Žâ â ‡â žâ ‰â ‘⠇⠇⠜" }, { "input": "saltcellar's", "output": "â Žâ â ‡â žâ ‰â ‘⠇⠇⠜⠄⠎" }, { "input": "saltcellars", "output": "â Žâ â ‡â žâ ‰â ‘⠇⠇⠜⠎" }, { "input": "salted", "output": "â Žâ â ‡â žâ «" }, { "input": "salter", "output": "â Žâ â ‡â žâ »" }, { "input": "saltest", "output": "â Žâ â ‡â žâ ‘â Œ" }, { "input": "saltier", "output": "â Žâ â ‡â žâ Šâ »" }, { "input": "saltiest", "output": "â Žâ â ‡â žâ Šâ ‘â Œ" }, { "input": "saltine", "output": "â Žâ â ‡â žâ ”â ‘" }, { "input": "saltine's", "output": "â Žâ â ‡â žâ ”â ‘â „â Ž" }, { "input": "saltines", "output": "â Žâ â ‡â žâ ”â ‘â Ž" }, { "input": "saltiness", "output": "â Žâ â ‡â žâ Šâ °â Ž" }, { "input": "saltiness's", "output": "â Žâ â ‡â žâ Šâ °â Žâ „â Ž" }, { "input": "salting", "output": "â Žâ â ‡â žâ Œ" }, { "input": "saltpeter", "output": "â Žâ â ‡â žâ â ‘â žâ »" }, { "input": "saltpeter's", "output": "â Žâ â ‡â žâ â ‘⠞⠻⠄⠎" }, { "input": "salts", "output": "â Žâ â ‡â žâ Ž" }, { "input": "saltshaker", "output": "â Žâ â ‡â žâ ©â â …â »" }, { "input": "saltshaker's", "output": "â Žâ â ‡â žâ ©â â …⠻⠄⠎" }, { "input": "saltshakers", "output": "â Žâ â ‡â žâ ©â â …⠻⠎" }, { "input": "saltwater", "output": "â Žâ â ‡â žâ ºâ â žâ »" }, { "input": "saltwater's", "output": "â Žâ â ‡â žâ ºâ â žâ »â „â Ž" }, { "input": "salty", "output": "â Žâ â ‡â žâ ½" }, { "input": "salubrious", "output": "â Žâ â ‡â ¥â ƒâ —⠊⠳⠎" }, { "input": "salutary", "output": "â Žâ â ‡â ¥â žâ œâ ½" }, { "input": "salutation", "output": "â Žâ â ‡â ¥â žâ  â " }, { "input": "salutation's", "output": "â Žâ â ‡â ¥â žâ  â â „â Ž" }, { "input": "salutations", "output": "â Žâ â ‡â ¥â žâ  â â Ž" }, { "input": "salutatorian", "output": "â Žâ â ‡â ¥â žâ â žâ •â —â Šâ â " }, { "input": "salutatorian's", "output": "â Žâ â ‡â ¥â žâ â žâ •â —â Šâ â â „â Ž" }, { "input": "salutatorians", "output": "â Žâ â ‡â ¥â žâ â žâ •â —â Šâ â â Ž" }, { "input": "salutatory", "output": "â Žâ â ‡â ¥â žâ â žâ •â —â ½" }, { "input": "salute", "output": "â Žâ â ‡â ¥â žâ ‘" }, { "input": "salute's", "output": "â Žâ â ‡â ¥â žâ ‘â „â Ž" }, { "input": "saluted", "output": "â Žâ â ‡â ¥â žâ «" }, { "input": "salutes", "output": "â Žâ â ‡â ¥â žâ ‘â Ž" }, { "input": "saluting", "output": "â Žâ â ‡â ¥â žâ Œ" }, { "input": "salvage", "output": "â Žâ â ‡â §â â ›â ‘" }, { "input": "salvage's", "output": "â Žâ â ‡â §â â ›â ‘â „â Ž" }, { "input": "salvageable", "output": "â Žâ â ‡â §â â ›â ‘â â ¼" }, { "input": "salvaged", "output": "â Žâ â ‡â §â â ›â «" }, { "input": "salvages", "output": "â Žâ â ‡â §â â ›â ‘â Ž" }, { "input": "salvaging", "output": "â Žâ â ‡â §â â ›â Œ" }, { "input": "salvation", "output": "â Žâ â ‡â §â  â " }, { "input": "salvation's", "output": "â Žâ â ‡â §â  â â „â Ž" }, { "input": "salve", "output": "â Žâ â ‡â §â ‘" }, { "input": "salve's", "output": "â Žâ â ‡â §â ‘â „â Ž" }, { "input": "salved", "output": "â Žâ â ‡â §â «" }, { "input": "salver", "output": "â Žâ â ‡â §â »" }, { "input": "salver's", "output": "â Žâ â ‡â §â »â „â Ž" }, { "input": "salvers", "output": "â Žâ â ‡â §â »â Ž" }, { "input": "salves", "output": "â Žâ â ‡â §â ‘â Ž" }, { "input": "salving", "output": "â Žâ â ‡â §â Œ" }, { "input": "salvo", "output": "â Žâ â ‡â §â •" }, { "input": "salvo's", "output": "â Žâ â ‡â §â •â „â Ž" }, { "input": "salvos", "output": "â Žâ â ‡â §â •â Ž" }, { "input": "samarium", "output": "â Žâ â â œâ Šâ ¥â " }, { "input": "samarium's", "output": "â Žâ â â œâ Šâ ¥â â „â Ž" }, { "input": "samba", "output": "â Žâ â â ƒâ " }, { "input": "samba's", "output": "â Žâ â â ƒâ â „â Ž" }, { "input": "sambaed", "output": "â Žâ â â ƒâ â «" }, { "input": "sambaing", "output": "â Žâ â â ƒâ â Œ" }, { "input": "sambas", "output": "â Žâ â â ƒâ â Ž" }, { "input": "same", "output": "â Žâ â â ‘" }, { "input": "sameness", "output": "â Žâ â â ‘â °â Ž" }, { "input": "sameness's", "output": "â Žâ â â ‘â °â Žâ „â Ž" }, { "input": "sames", "output": "â Žâ â â ‘â Ž" }, { "input": "samovar", "output": "â Žâ â â •â §â œ" }, { "input": "samovar's", "output": "â Žâ â â •⠧⠜⠄⠎" }, { "input": "samovars", "output": "â Žâ â â •⠧⠜⠎" }, { "input": "sampan", "output": "â Žâ â â â â " }, { "input": "sampan's", "output": "â Žâ â â â â â „â Ž" }, { "input": "sampans", "output": "â Žâ â â â â â Ž" }, { "input": "sample", "output": "â Žâ â â â ‡â ‘" }, { "input": "sample's", "output": "â Žâ â â â ‡â ‘â „â Ž" }, { "input": "sampled", "output": "â Žâ â â â ‡â «" }, { "input": "sampler", "output": "â Žâ â â â ‡â »" }, { "input": "sampler's", "output": "â Žâ â â â ‡â »â „â Ž" }, { "input": "samplers", "output": "â Žâ â â â ‡â »â Ž" }, { "input": "samples", "output": "â Žâ â â â ‡â ‘â Ž" }, { "input": "sampling", "output": "â Žâ â â â ‡â Œ" }, { "input": "samurai", "output": "â Žâ â â ¥â —â â Š" }, { "input": "samurai's", "output": "â Žâ â â ¥â —â â Šâ „â Ž" }, { "input": "sanatorium", "output": "â Žâ â â â žâ •â —â Šâ ¥â " }, { "input": "sanatorium's", "output": "â Žâ â â â žâ •â —â Šâ ¥â â „â Ž" }, { "input": "sanatoriums", "output": "â Žâ â â â žâ •â —â Šâ ¥â â Ž" }, { "input": "sanctification", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ ‰â  â " }, { "input": "sanctification's", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "sanctified", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ «" }, { "input": "sanctifies", "output": "â Žâ â â ‰â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "sanctify", "output": "â Žâ â â ‰â žâ Šâ ‹â ½" }, { "input": "sanctifying", "output": "â Žâ â â ‰â žâ Šâ ‹â ½â Œ" }, { "input": "sanctimonious", "output": "â Žâ â â ‰â žâ Šâ â •â â Šâ ³â Ž" }, { "input": "sanctimoniously", "output": "â Žâ â â ‰â žâ Šâ â •â â Šâ ³â Žâ ‡â ½" }, { "input": "sanctimoniousness's", "output": "â Žâ â â ‰â žâ Šâ â •â â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "sanctimony", "output": "â Žâ â â ‰â žâ Šâ â •â â ½" }, { "input": "sanctimony's", "output": "â Žâ â â ‰â žâ Šâ â •â â ½â „â Ž" }, { "input": "sanction", "output": "â Žâ â â ‰â °â " }, { "input": "sanction's", "output": "â Žâ â â ‰â °â â „â Ž" }, { "input": "sanctioned", "output": "â Žâ â â ‰â °â â «" }, { "input": "sanctioning", "output": "â Žâ â â ‰â °â â Œ" }, { "input": "sanctions", "output": "â Žâ â â ‰â °â â Ž" }, { "input": "sanctity", "output": "â Žâ â â ‰â žâ °â ½" }, { "input": "sanctity's", "output": "â Žâ â â ‰â žâ °â ½â „â Ž" }, { "input": "sanctuaries", "output": "â Žâ â â ‰â žâ ¥â œâ Šâ ‘â Ž" }, { "input": "sanctuary", "output": "â Žâ â â ‰â žâ ¥â œâ ½" }, { "input": "sanctuary's", "output": "â Žâ â â ‰â žâ ¥â œâ ½â „â Ž" }, { "input": "sanctum", "output": "â Žâ â â ‰â žâ ¥â " }, { "input": "sanctum's", "output": "â Žâ â â ‰â žâ ¥â â „â Ž" }, { "input": "sanctums", "output": "â Žâ â â ‰â žâ ¥â â Ž" }, { "input": "sand", "output": "â Žâ ¯" }, { "input": "sand's", "output": "⠎⠯⠄⠎" }, { "input": "sandal", "output": "â Žâ ¯â â ‡" }, { "input": "sandal's", "output": "â Žâ ¯â â ‡â „â Ž" }, { "input": "sandals", "output": "â Žâ ¯â â ‡â Ž" }, { "input": "sandalwood", "output": "â Žâ ¯â â ‡â ºâ •â •â ™" }, { "input": "sandalwood's", "output": "â Žâ ¯â â ‡â ºâ •⠕⠙⠄⠎" }, { "input": "sandbag", "output": "⠎⠯⠃â â ›" }, { "input": "sandbag's", "output": "⠎⠯⠃â â ›â „â Ž" }, { "input": "sandbagged", "output": "⠎⠯⠃â â ¶â «" }, { "input": "sandbagging", "output": "⠎⠯⠃â â ¶â Œ" }, { "input": "sandbags", "output": "⠎⠯⠃â â ›â Ž" }, { "input": "sandbank", "output": "⠎⠯⠃â â â …" }, { "input": "sandbank's", "output": "⠎⠯⠃â â â …â „â Ž" }, { "input": "sandbanks", "output": "⠎⠯⠃â â â …â Ž" }, { "input": "sandbar", "output": "⠎⠯⠃⠜" }, { "input": "sandbar's", "output": "⠎⠯⠃⠜⠄⠎" }, { "input": "sandbars", "output": "⠎⠯⠃⠜⠎" }, { "input": "sandblast", "output": "⠎⠯⠃⠇â â Œ" }, { "input": "sandblast's", "output": "⠎⠯⠃⠇â â Œâ „â Ž" }, { "input": "sandblasted", "output": "⠎⠯⠃⠇â â Œâ «" }, { "input": "sandblaster", "output": "⠎⠯⠃⠇â â Œâ »" }, { "input": "sandblaster's", "output": "⠎⠯⠃⠇â â Œâ »â „â Ž" }, { "input": "sandblasters", "output": "⠎⠯⠃⠇â â Œâ »â Ž" }, { "input": "sandblasting", "output": "⠎⠯⠃⠇â â Œâ Œ" }, { "input": "sandblasts", "output": "⠎⠯⠃⠇â â Œâ Ž" }, { "input": "sandbox", "output": "⠎⠯⠃⠕⠭" }, { "input": "sandbox's", "output": "⠎⠯⠃⠕⠭⠄⠎" }, { "input": "sandboxes", "output": "⠎⠯⠃⠕⠭⠑⠎" }, { "input": "sandcastle", "output": "⠎⠯⠉â â Œâ ‡â ‘" }, { "input": "sandcastle's", "output": "⠎⠯⠉â â Œâ ‡â ‘â „â Ž" }, { "input": "sandcastles", "output": "⠎⠯⠉â â Œâ ‡â ‘â Ž" }, { "input": "sanded", "output": "⠎⠯⠫" }, { "input": "sander", "output": "⠎⠯⠻" }, { "input": "sander's", "output": "⠎⠯⠻⠄⠎" }, { "input": "sanders", "output": "⠎⠯⠻⠎" }, { "input": "sandhog", "output": "⠎⠯⠓⠕⠛" }, { "input": "sandhog's", "output": "⠎⠯⠓⠕⠛⠄⠎" }, { "input": "sandhogs", "output": "⠎⠯⠓⠕⠛⠎" }, { "input": "sandier", "output": "⠎⠯⠊⠻" }, { "input": "sandiest", "output": "⠎⠯⠊⠑⠌" }, { "input": "sandiness", "output": "⠎⠯⠊⠰⠎" }, { "input": "sandiness's", "output": "⠎⠯⠊⠰⠎⠄⠎" }, { "input": "sanding", "output": "⠎⠯⠌" }, { "input": "sandlot", "output": "⠎⠯⠇⠕⠞" }, { "input": "sandlot's", "output": "⠎⠯⠇⠕⠞⠄⠎" }, { "input": "sandlots", "output": "⠎⠯⠇⠕⠞⠎" }, { "input": "sandlotter", "output": "⠎⠯⠇⠕⠞⠞⠻" }, { "input": "sandlotter's", "output": "⠎⠯⠇⠕⠞⠞⠻⠄⠎" }, { "input": "sandlotters", "output": "⠎⠯⠇⠕⠞⠞⠻⠎" }, { "input": "sandman", "output": "â Žâ ¯â â â " }, { "input": "sandman's", "output": "â Žâ ¯â â â â „â Ž" }, { "input": "sandmen", "output": "â Žâ ¯â â ¢" }, { "input": "sandpaper", "output": "â Žâ ¯â â â â »" }, { "input": "sandpaper's", "output": "â Žâ ¯â â â â »â „â Ž" }, { "input": "sandpapered", "output": "â Žâ ¯â â â â »â «" }, { "input": "sandpapering", "output": "â Žâ ¯â â â â »â Œ" }, { "input": "sandpapers", "output": "â Žâ ¯â â â â »â Ž" }, { "input": "sandpiper", "output": "â Žâ ¯â â Šâ â »" }, { "input": "sandpiper's", "output": "â Žâ ¯â â Šâ â »â „â Ž" }, { "input": "sandpipers", "output": "â Žâ ¯â â Šâ â »â Ž" }, { "input": "sands", "output": "⠎⠯⠎" }, { "input": "sandstone", "output": "⠎⠯⠌â â •" }, { "input": "sandstone's", "output": "⠎⠯⠌â â •â „â Ž" }, { "input": "sandstorm", "output": "⠎⠯⠌⠕⠗â " }, { "input": "sandstorm's", "output": "⠎⠯⠌⠕⠗â â „â Ž" }, { "input": "sandstorms", "output": "⠎⠯⠌⠕⠗â â Ž" }, { "input": "sandwich", "output": "⠎⠯⠺⠊⠡" }, { "input": "sandwich's", "output": "⠎⠯⠺⠊⠡⠄⠎" }, { "input": "sandwiched", "output": "⠎⠯⠺⠊⠡⠫" }, { "input": "sandwiches", "output": "⠎⠯⠺⠊⠡⠑⠎" }, { "input": "sandwiching", "output": "⠎⠯⠺⠊⠡⠌" }, { "input": "sandy", "output": "⠎⠯⠽" }, { "input": "sane", "output": "â Žâ â â ‘" }, { "input": "sanely", "output": "â Žâ â â ‘⠇⠽" }, { "input": "saneness", "output": "â Žâ â â ‘â °â Ž" }, { "input": "saneness's", "output": "â Žâ â â ‘â °â Žâ „â Ž" }, { "input": "saner", "output": "â Žâ â â »" }, { "input": "sanest", "output": "â Žâ â â ‘â Œ" }, { "input": "sang", "output": "â Žâ â â ›" }, { "input": "sangfroid", "output": "â Žâ â â ›â ‹â —â •â Šâ ™" }, { "input": "sangfroid's", "output": "â Žâ â â ›â ‹â —⠕⠊⠙⠄⠎" }, { "input": "sangria's", "output": "â Žâ â â ›â —â Šâ â „â Ž" }, { "input": "sangs", "output": "â Žâ â â ›â Ž" }, { "input": "sanguinary", "output": "â Žâ â â ›â ¥â ”⠜⠽" }, { "input": "sanguine", "output": "â Žâ â â ›â ¥â ”â ‘" }, { "input": "sanguinely", "output": "â Žâ â â ›â ¥â ”⠑⠇⠽" }, { "input": "sanitarian", "output": "â Žâ â â Šâ žâ œâ Šâ â " }, { "input": "sanitarian's", "output": "â Žâ â â Šâ žâ œâ Šâ â â „â Ž" }, { "input": "sanitarians", "output": "â Žâ â â Šâ žâ œâ Šâ â â Ž" }, { "input": "sanitarium", "output": "â Žâ â â Šâ žâ œâ Šâ ¥â " }, { "input": "sanitarium's", "output": "â Žâ â â Šâ žâ œâ Šâ ¥â â „â Ž" }, { "input": "sanitariums", "output": "â Žâ â â Šâ žâ œâ Šâ ¥â â Ž" }, { "input": "sanitary", "output": "â Žâ â â Šâ žâ œâ ½" }, { "input": "sanitation", "output": "â Žâ â â Šâ žâ  â " }, { "input": "sanitation's", "output": "â Žâ â â Šâ žâ  â â „â Ž" }, { "input": "sanitize", "output": "â Žâ â â Šâ žâ Šâ µâ ‘" }, { "input": "sanitized", "output": "â Žâ â â Šâ žâ Šâ µâ «" }, { "input": "sanitizes", "output": "â Žâ â â Šâ žâ Šâ µâ ‘â Ž" }, { "input": "sanitizing", "output": "â Žâ â â Šâ žâ Šâ µâ Œ" }, { "input": "sanity", "output": "â Žâ â â °â ½" }, { "input": "sanity's", "output": "â Žâ â â °â ½â „â Ž" }, { "input": "sank", "output": "â Žâ â â …" }, { "input": "sans", "output": "â Žâ â â Ž" }, { "input": "sanserif", "output": "â Žâ â â Žâ »â Šâ ‹" }, { "input": "sap", "output": "â Žâ â " }, { "input": "sap's", "output": "â Žâ â â „â Ž" }, { "input": "sapience", "output": "â Žâ â â Šâ °â ‘" }, { "input": "sapience's", "output": "â Žâ â â Šâ °â ‘â „â Ž" }, { "input": "sapient", "output": "â Žâ â â Šâ ¢â ž" }, { "input": "sapless", "output": "â Žâ â â ¨â Ž" }, { "input": "sapling", "output": "â Žâ â â ‡â Œ" }, { "input": "sapling's", "output": "â Žâ â â ‡â Œâ „â Ž" }, { "input": "saplings", "output": "â Žâ â â ‡â Œâ Ž" }, { "input": "sapped", "output": "â Žâ â â â «" }, { "input": "sapphire", "output": "â Žâ â â â “â Šâ —â ‘" }, { "input": "sapphire's", "output": "â Žâ â â â “â Šâ —â ‘â „â Ž" }, { "input": "sapphires", "output": "â Žâ â â â “â Šâ —â ‘â Ž" }, { "input": "sappier", "output": "â Žâ â â â Šâ »" }, { "input": "sappiest", "output": "â Žâ â â â Šâ ‘â Œ" }, { "input": "sappiness", "output": "â Žâ â â â Šâ °â Ž" }, { "input": "sappiness's", "output": "â Žâ â â â Šâ °â Žâ „â Ž" }, { "input": "sapping", "output": "â Žâ â â â Œ" }, { "input": "sappy", "output": "â Žâ â â â ½" }, { "input": "saprophyte", "output": "â Žâ â â —â •â â “⠽⠞⠑" }, { "input": "saprophyte's", "output": "â Žâ â â —â •â â “⠽⠞⠑⠄⠎" }, { "input": "saprophytes", "output": "â Žâ â â —â •â â “⠽⠞⠑⠎" }, { "input": "saprophytic", "output": "â Žâ â â —â •â â “⠽⠞⠊⠉" }, { "input": "saps", "output": "â Žâ â â Ž" }, { "input": "sapsucker", "output": "â Žâ â â Žâ ¥â ‰â …â »" }, { "input": "sapsucker's", "output": "â Žâ â â Žâ ¥â ‰â …⠻⠄⠎" }, { "input": "sapsuckers", "output": "â Žâ â â Žâ ¥â ‰â …⠻⠎" }, { "input": "sapwood", "output": "â Žâ â â ºâ •â •â ™" }, { "input": "sapwood's", "output": "â Žâ â â ºâ •⠕⠙⠄⠎" }, { "input": "saran", "output": "â Žâ œâ â " }, { "input": "saran's", "output": "â Žâ œâ â â „â Ž" }, { "input": "sarcasm", "output": "⠎⠜⠉â â Žâ " }, { "input": "sarcasm's", "output": "⠎⠜⠉â â Žâ â „â Ž" }, { "input": "sarcasms", "output": "⠎⠜⠉â â Žâ â Ž" }, { "input": "sarcastic", "output": "⠎⠜⠉â â Œâ Šâ ‰" }, { "input": "sarcastically", "output": "⠎⠜⠉â â Œâ Šâ ‰â  â ½" }, { "input": "sarcoma", "output": "⠎⠜⠉⠕â â " }, { "input": "sarcoma's", "output": "⠎⠜⠉⠕â â â „â Ž" }, { "input": "sarcomas", "output": "⠎⠜⠉⠕â â â Ž" }, { "input": "sarcophagi", "output": "⠎⠜⠉⠕â â “â â ›â Š" }, { "input": "sarcophagus", "output": "⠎⠜⠉⠕â â “â â ›â ¥â Ž" }, { "input": "sarcophagus's", "output": "⠎⠜⠉⠕â â “â â ›â ¥â Žâ „â Ž" }, { "input": "sardine", "output": "⠎⠜⠙⠔⠑" }, { "input": "sardine's", "output": "⠎⠜⠙⠔⠑⠄⠎" }, { "input": "sardines", "output": "⠎⠜⠙⠔⠑⠎" }, { "input": "sardonic", "output": "⠎⠜⠙⠕â â Šâ ‰" }, { "input": "sardonically", "output": "⠎⠜⠙⠕â â Šâ ‰â  â ½" }, { "input": "sari", "output": "⠎⠜⠊" }, { "input": "sari's", "output": "⠎⠜⠊⠄⠎" }, { "input": "saris", "output": "⠎⠜⠊⠎" }, { "input": "sarong", "output": "⠎⠜⠰⠛" }, { "input": "sarong's", "output": "⠎⠜⠰⠛⠄⠎" }, { "input": "sarongs", "output": "⠎⠜⠰⠛⠎" }, { "input": "sarsaparilla", "output": "⠎⠜⠎â â â œâ Šâ ‡â ‡â " }, { "input": "sarsaparilla's", "output": "⠎⠜⠎â â â œâ Šâ ‡â ‡â â „â Ž" }, { "input": "sarsaparillas", "output": "⠎⠜⠎â â â œâ Šâ ‡â ‡â â Ž" }, { "input": "sartorial", "output": "⠎⠜⠞⠕⠗⠊â â ‡" }, { "input": "sartorially", "output": "⠎⠜⠞⠕⠗⠊⠠⠽" }, { "input": "sash", "output": "â Žâ â ©" }, { "input": "sash's", "output": "â Žâ â ©â „â Ž" }, { "input": "sashay", "output": "â Žâ â ©â â ½" }, { "input": "sashay's", "output": "â Žâ â ©â â ½â „â Ž" }, { "input": "sashayed", "output": "â Žâ â ©â â ½â «" }, { "input": "sashaying", "output": "â Žâ â ©â â ½â Œ" }, { "input": "sashays", "output": "â Žâ â ©â â ½â Ž" }, { "input": "sashes", "output": "â Žâ â ©â ‘â Ž" }, { "input": "sass", "output": "â Žâ â Žâ Ž" }, { "input": "sass's", "output": "â Žâ â Žâ Žâ „â Ž" }, { "input": "sassafras", "output": "â Žâ â Žâ Žâ â ‹â —â â Ž" }, { "input": "sassafras's", "output": "â Žâ â Žâ Žâ â ‹â —â â Žâ „â Ž" }, { "input": "sassafrases", "output": "â Žâ â Žâ Žâ â ‹â —â â Žâ ‘â Ž" }, { "input": "sassed", "output": "â Žâ â Žâ Žâ «" }, { "input": "sasses", "output": "â Žâ â Žâ Žâ ‘â Ž" }, { "input": "sassier", "output": "â Žâ â Žâ Žâ Šâ »" }, { "input": "sassiest", "output": "â Žâ â Žâ Žâ Šâ ‘â Œ" }, { "input": "sassing", "output": "â Žâ â Žâ Žâ Œ" }, { "input": "sassy", "output": "â Žâ â Žâ Žâ ½" }, { "input": "sat", "output": "â Žâ â ž" }, { "input": "satanic", "output": "â Žâ â žâ â â Šâ ‰" }, { "input": "satanical", "output": "â Žâ â žâ â â Šâ ‰â â ‡" }, { "input": "satanically", "output": "â Žâ â žâ â â Šâ ‰â  â ½" }, { "input": "satanism", "output": "â Žâ â žâ â â Šâ Žâ " }, { "input": "satanism's", "output": "â Žâ â žâ â â Šâ Žâ â „â Ž" }, { "input": "satchel", "output": "â Žâ â žâ ¡â ‘â ‡" }, { "input": "satchel's", "output": "â Žâ â žâ ¡â ‘⠇⠄⠎" }, { "input": "satchels", "output": "â Žâ â žâ ¡â ‘⠇⠎" }, { "input": "sate", "output": "â Žâ â žâ ‘" }, { "input": "sated", "output": "â Žâ â žâ «" }, { "input": "sateen", "output": "â Žâ â žâ ‘â ¢" }, { "input": "sateen's", "output": "â Žâ â žâ ‘⠢⠄⠎" }, { "input": "satellite", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠑" }, { "input": "satellite's", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠑⠄⠎" }, { "input": "satellited", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠫" }, { "input": "satellites", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠑⠎" }, { "input": "satelliting", "output": "â Žâ â žâ ‘⠇⠇⠊⠞⠌" }, { "input": "sates", "output": "â Žâ â žâ ‘â Ž" }, { "input": "satiable", "output": "â Žâ â žâ Šâ â ¼" }, { "input": "satiate", "output": "â Žâ â žâ Šâ â žâ ‘" }, { "input": "satiated", "output": "â Žâ â žâ Šâ â žâ «" }, { "input": "satiates", "output": "â Žâ â žâ Šâ â žâ ‘â Ž" }, { "input": "satiating", "output": "â Žâ â žâ Šâ â žâ Œ" }, { "input": "satiation", "output": "â Žâ â žâ Šâ  â " }, { "input": "satiation's", "output": "â Žâ â žâ Šâ  â â „â Ž" }, { "input": "satiety", "output": "â Žâ â žâ Šâ ‘â žâ ½" }, { "input": "satiety's", "output": "â Žâ â žâ Šâ ‘⠞⠽⠄⠎" }, { "input": "satin", "output": "â Žâ â žâ ”" }, { "input": "satin's", "output": "â Žâ â žâ ”â „â Ž" }, { "input": "sating", "output": "â Žâ â žâ Œ" }, { "input": "satinwood", "output": "â Žâ â žâ ”⠺⠕⠕⠙" }, { "input": "satinwood's", "output": "â Žâ â žâ ”⠺⠕⠕⠙⠄⠎" }, { "input": "satinwoods", "output": "â Žâ â žâ ”⠺⠕⠕⠙⠎" }, { "input": "satiny", "output": "â Žâ â žâ ”â ½" }, { "input": "satire", "output": "â Žâ â žâ Šâ —â ‘" }, { "input": "satire's", "output": "â Žâ â žâ Šâ —â ‘â „â Ž" }, { "input": "satires", "output": "â Žâ â žâ Šâ —â ‘â Ž" }, { "input": "satirical", "output": "â Žâ â žâ Šâ —â Šâ ‰â â ‡" }, { "input": "satirically", "output": "â Žâ â žâ Šâ —⠊⠉⠠⠽" }, { "input": "satirist", "output": "â Žâ â žâ Šâ —â Šâ Œ" }, { "input": "satirist's", "output": "â Žâ â žâ Šâ —⠊⠌⠄⠎" }, { "input": "satirists", "output": "â Žâ â žâ Šâ —⠊⠌⠎" }, { "input": "satirize", "output": "â Žâ â žâ Šâ —⠊⠵⠑" }, { "input": "satirized", "output": "â Žâ â žâ Šâ —⠊⠵⠫" }, { "input": "satirizes", "output": "â Žâ â žâ Šâ —⠊⠵⠑⠎" }, { "input": "satirizing", "output": "â Žâ â žâ Šâ —⠊⠵⠌" }, { "input": "satisfaction", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â °â " }, { "input": "satisfaction's", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â °â â „â Ž" }, { "input": "satisfactions", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â °â â Ž" }, { "input": "satisfactorily", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •⠗⠊⠇⠽" }, { "input": "satisfactory", "output": "â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •â —â ½" }, { "input": "satisfied", "output": "â Žâ â žâ Šâ Žâ ‹â Šâ «" }, { "input": "satisfies", "output": "â Žâ â žâ Šâ Žâ ‹â Šâ ‘â Ž" }, { "input": "satisfy", "output": "â Žâ â žâ Šâ Žâ ‹â ½" }, { "input": "satisfying", "output": "â Žâ â žâ Šâ Žâ ‹â ½â Œ" }, { "input": "satori", "output": "â Žâ â žâ •â —â Š" }, { "input": "satori's", "output": "â Žâ â žâ •â —â Šâ „â Ž" }, { "input": "satrap", "output": "â Žâ â žâ —â â " }, { "input": "satrap's", "output": "â Žâ â žâ —â â â „â Ž" }, { "input": "satraps", "output": "â Žâ â žâ —â â â Ž" }, { "input": "saturate", "output": "â Žâ â žâ ¥â —â â žâ ‘" }, { "input": "saturated", "output": "â Žâ â žâ ¥â —â â žâ «" }, { "input": "saturates", "output": "â Žâ â žâ ¥â —â â žâ ‘â Ž" }, { "input": "saturating", "output": "â Žâ â žâ ¥â —â â žâ Œ" }, { "input": "saturation", "output": "â Žâ â žâ ¥â —â  â " }, { "input": "saturation's", "output": "â Žâ â žâ ¥â —â  â â „â Ž" }, { "input": "saturnine", "output": "â Žâ â žâ ¥â —â â ”â ‘" }, { "input": "satyr", "output": "â Žâ â žâ ½â —" }, { "input": "satyr's", "output": "â Žâ â žâ ½â —â „â Ž" }, { "input": "satyriasis", "output": "â Žâ â žâ ½â —â Šâ â Žâ Šâ Ž" }, { "input": "satyriasis's", "output": "â Žâ â žâ ½â —â Šâ â Žâ Šâ Žâ „â Ž" }, { "input": "satyric", "output": "â Žâ â žâ ½â —â Šâ ‰" }, { "input": "satyrs", "output": "â Žâ â žâ ½â —â Ž" }, { "input": "sauce", "output": "â Žâ â ¥â ‰â ‘" }, { "input": "sauce's", "output": "â Žâ â ¥â ‰â ‘â „â Ž" }, { "input": "sauced", "output": "â Žâ â ¥â ‰â «" }, { "input": "saucepan", "output": "â Žâ â ¥â ‰â ‘â â â " }, { "input": "saucepan's", "output": "â Žâ â ¥â ‰â ‘â â â â „â Ž" }, { "input": "saucepans", "output": "â Žâ â ¥â ‰â ‘â â â â Ž" }, { "input": "saucer", "output": "â Žâ â ¥â ‰â »" }, { "input": "saucer's", "output": "â Žâ â ¥â ‰â »â „â Ž" }, { "input": "saucers", "output": "â Žâ â ¥â ‰â »â Ž" }, { "input": "sauces", "output": "â Žâ â ¥â ‰â ‘â Ž" }, { "input": "saucier", "output": "â Žâ â ¥â ‰â Šâ »" }, { "input": "sauciest", "output": "â Žâ â ¥â ‰â Šâ ‘â Œ" }, { "input": "saucily", "output": "â Žâ â ¥â ‰â Šâ ‡â ½" }, { "input": "sauciness", "output": "â Žâ â ¥â ‰â Šâ °â Ž" }, { "input": "sauciness's", "output": "â Žâ â ¥â ‰â Šâ °â Žâ „â Ž" }, { "input": "saucing", "output": "â Žâ â ¥â ‰â Œ" }, { "input": "saucy", "output": "â Žâ â ¥â ‰â ½" }, { "input": "sauerkraut", "output": "â Žâ â ¥â »â …â —â â ¥â ž" }, { "input": "sauerkraut's", "output": "â Žâ â ¥â »â …â —â â ¥â žâ „â Ž" }, { "input": "sauna", "output": "â Žâ â ¥â â " }, { "input": "sauna's", "output": "â Žâ â ¥â â â „â Ž" }, { "input": "saunaed", "output": "â Žâ â ¥â â â «" }, { "input": "saunaing", "output": "â Žâ â ¥â â â Œ" }, { "input": "saunas", "output": "â Žâ â ¥â â â Ž" }, { "input": "saunter", "output": "â Žâ â ¥â â žâ »" }, { "input": "saunter's", "output": "â Žâ â ¥â â žâ »â „â Ž" }, { "input": "sauntered", "output": "â Žâ â ¥â â žâ »â «" }, { "input": "sauntering", "output": "â Žâ â ¥â â žâ »â Œ" }, { "input": "saunters", "output": "â Žâ â ¥â â žâ »â Ž" }, { "input": "saurian", "output": "â Žâ â ¥â —â Šâ â " }, { "input": "sauropod", "output": "â Žâ â ¥â —â •â â •â ™" }, { "input": "sauropod's", "output": "â Žâ â ¥â —â •â â •⠙⠄⠎" }, { "input": "sauropods", "output": "â Žâ â ¥â —â •â â •⠙⠎" }, { "input": "sausage", "output": "â Žâ â ¥â Žâ â ›â ‘" }, { "input": "sausage's", "output": "â Žâ â ¥â Žâ â ›â ‘â „â Ž" }, { "input": "sausages", "output": "â Žâ â ¥â Žâ â ›â ‘â Ž" }, { "input": "savable", "output": "â Žâ â §â â ¼" }, { "input": "savage", "output": "â Žâ â §â â ›â ‘" }, { "input": "savage's", "output": "â Žâ â §â â ›â ‘â „â Ž" }, { "input": "savaged", "output": "â Žâ â §â â ›â «" }, { "input": "savagely", "output": "â Žâ â §â â ›â ‘⠇⠽" }, { "input": "savageness", "output": "â Žâ â §â â ›â ‘â °â Ž" }, { "input": "savageness's", "output": "â Žâ â §â â ›â ‘â °â Žâ „â Ž" }, { "input": "savager", "output": "â Žâ â §â â ›â »" }, { "input": "savageries", "output": "â Žâ â §â â ›â »â Šâ ‘â Ž" }, { "input": "savagery", "output": "â Žâ â §â â ›â ‘â —â ½" }, { "input": "savagery's", "output": "â Žâ â §â â ›â ‘⠗⠽⠄⠎" }, { "input": "savages", "output": "â Žâ â §â â ›â ‘â Ž" }, { "input": "savagest", "output": "â Žâ â §â â ›â ‘â Œ" }, { "input": "savaging", "output": "â Žâ â §â â ›â Œ" }, { "input": "savanna", "output": "â Žâ â §â â â â " }, { "input": "savanna's", "output": "â Žâ â §â â â â â „â Ž" }, { "input": "savannas", "output": "â Žâ â §â â â â â Ž" }, { "input": "savant", "output": "â Žâ â §â â â ž" }, { "input": "savant's", "output": "â Žâ â §â â â žâ „â Ž" }, { "input": "savants", "output": "â Žâ â §â â â žâ Ž" }, { "input": "save", "output": "â Žâ â §â ‘" }, { "input": "save's", "output": "â Žâ â §â ‘â „â Ž" }, { "input": "saved", "output": "â Žâ â §â «" }, { "input": "saver", "output": "â Žâ â §â »" }, { "input": "saver's", "output": "â Žâ â §â »â „â Ž" }, { "input": "savers", "output": "â Žâ â §â »â Ž" }, { "input": "saves", "output": "â Žâ â §â ‘â Ž" }, { "input": "saving", "output": "â Žâ â §â Œ" }, { "input": "saving's", "output": "â Žâ â §â Œâ „â Ž" }, { "input": "savings", "output": "â Žâ â §â Œâ Ž" }, { "input": "savings's", "output": "â Žâ â §â Œâ Žâ „â Ž" }, { "input": "savior", "output": "â Žâ â §â Šâ •â —" }, { "input": "savior's", "output": "â Žâ â §â Šâ •â —â „â Ž" }, { "input": "saviors", "output": "â Žâ â §â Šâ •â —â Ž" }, { "input": "savor", "output": "â Žâ â §â •â —" }, { "input": "savor's", "output": "â Žâ â §â •â —â „â Ž" }, { "input": "savored", "output": "â Žâ â §â •â —â «" }, { "input": "savorier", "output": "â Žâ â §â •â —â Šâ »" }, { "input": "savories", "output": "â Žâ â §â •â —â Šâ ‘â Ž" }, { "input": "savoriest", "output": "â Žâ â §â •â —â Šâ ‘â Œ" }, { "input": "savoriness", "output": "â Žâ â §â •â —â Šâ °â Ž" }, { "input": "savoriness's", "output": "â Žâ â §â •â —â Šâ °â Žâ „â Ž" }, { "input": "savoring", "output": "â Žâ â §â •â —â Œ" }, { "input": "savors", "output": "â Žâ â §â •â —â Ž" }, { "input": "savory", "output": "â Žâ â §â •â —â ½" }, { "input": "savory's", "output": "â Žâ â §â •⠗⠽⠄⠎" }, { "input": "savvied", "output": "â Žâ â §â §â Šâ «" }, { "input": "savvier", "output": "â Žâ â §â §â Šâ »" }, { "input": "savvies", "output": "â Žâ â §â §â Šâ ‘â Ž" }, { "input": "savviest", "output": "â Žâ â §â §â Šâ ‘â Œ" }, { "input": "savvy", "output": "â Žâ â §â §â ½" }, { "input": "savvy's", "output": "â Žâ â §â §â ½â „â Ž" }, { "input": "savvying", "output": "â Žâ â §â §â ½â Œ" }, { "input": "saw", "output": "â Žâ â º" }, { "input": "saw's", "output": "â Žâ â ºâ „â Ž" }, { "input": "sawbones", "output": "â Žâ â ºâ ƒâ â •â Ž" }, { "input": "sawbones's", "output": "â Žâ â ºâ ƒâ â •â Žâ „â Ž" }, { "input": "sawbuck", "output": "â Žâ â ºâ ƒâ ¥â ‰â …" }, { "input": "sawbuck's", "output": "â Žâ â ºâ ƒâ ¥â ‰â …â „â Ž" }, { "input": "sawbucks", "output": "â Žâ â ºâ ƒâ ¥â ‰â …â Ž" }, { "input": "sawdust", "output": "â Žâ â ºâ ™â ¥â Œ" }, { "input": "sawdust's", "output": "â Žâ â ºâ ™â ¥â Œâ „â Ž" }, { "input": "sawed", "output": "â Žâ â ºâ «" }, { "input": "sawflies", "output": "â Žâ â ºâ ‹â ‡â Šâ ‘â Ž" }, { "input": "sawfly", "output": "â Žâ â ºâ ‹â ‡â ½" }, { "input": "sawfly's", "output": "â Žâ â ºâ ‹â ‡â ½â „â Ž" }, { "input": "sawhorse", "output": "â Žâ â ºâ “â •â —â Žâ ‘" }, { "input": "sawhorse's", "output": "â Žâ â ºâ “â •â —â Žâ ‘â „â Ž" }, { "input": "sawhorses", "output": "â Žâ â ºâ “â •â —â Žâ ‘â Ž" }, { "input": "sawing", "output": "â Žâ â ºâ Œ" }, { "input": "sawmill", "output": "â Žâ â ºâ â Šâ ‡â ‡" }, { "input": "sawmill's", "output": "â Žâ â ºâ â Šâ ‡â ‡â „â Ž" }, { "input": "sawmills", "output": "â Žâ â ºâ â Šâ ‡â ‡â Ž" }, { "input": "saws", "output": "â Žâ â ºâ Ž" }, { "input": "sawyer", "output": "â Žâ â ºâ ½â »" }, { "input": "sawyer's", "output": "â Žâ â ºâ ½â »â „â Ž" }, { "input": "sawyers", "output": "â Žâ â ºâ ½â »â Ž" }, { "input": "sax", "output": "â Žâ â ­" }, { "input": "sax's", "output": "â Žâ â ­â „â Ž" }, { "input": "saxes", "output": "â Žâ â ­â ‘â Ž" }, { "input": "saxifrage", "output": "â Žâ â ­â Šâ ‹â —â â ›â ‘" }, { "input": "saxifrage's", "output": "â Žâ â ­â Šâ ‹â —â â ›â ‘â „â Ž" }, { "input": "saxifrages", "output": "â Žâ â ­â Šâ ‹â —â â ›â ‘â Ž" }, { "input": "saxophone", "output": "â Žâ â ­â •â â “â â •" }, { "input": "saxophone's", "output": "â Žâ â ­â •â â “â â •â „â Ž" }, { "input": "saxophones", "output": "â Žâ â ­â •â â “â â •â Ž" }, { "input": "saxophonist", "output": "â Žâ â ­â •â â “â •â â Šâ Œ" }, { "input": "saxophonist's", "output": "â Žâ â ­â •â â “â •â â Šâ Œâ „â Ž" }, { "input": "saxophonists", "output": "â Žâ â ­â •â â “â •â â Šâ Œâ Ž" }, { "input": "say", "output": "â Žâ â ½" }, { "input": "say's", "output": "â Žâ â ½â „â Ž" }, { "input": "saying", "output": "â Žâ â ½â Œ" }, { "input": "saying's", "output": "â Žâ â ½â Œâ „â Ž" }, { "input": "sayings", "output": "â Žâ â ½â Œâ Ž" }, { "input": "says", "output": "â Žâ â ½â Ž" }, { "input": "scab", "output": "â Žâ ‰â â ƒ" }, { "input": "scab's", "output": "â Žâ ‰â â ƒâ „â Ž" }, { "input": "scabbard", "output": "â Žâ ‰â â †â œâ ™" }, { "input": "scabbard's", "output": "â Žâ ‰â â †â œâ ™â „â Ž" }, { "input": "scabbards", "output": "â Žâ ‰â â †â œâ ™â Ž" }, { "input": "scabbed", "output": "â Žâ ‰â â †â «" }, { "input": "scabbier", "output": "â Žâ ‰â â †â Šâ »" }, { "input": "scabbiest", "output": "â Žâ ‰â â †â Šâ ‘â Œ" }, { "input": "scabbiness", "output": "â Žâ ‰â â †â Šâ °â Ž" }, { "input": "scabbiness's", "output": "â Žâ ‰â â †â Šâ °â Žâ „â Ž" }, { "input": "scabbing", "output": "â Žâ ‰â â †â Œ" }, { "input": "scabby", "output": "â Žâ ‰â â †â ½" }, { "input": "scabies", "output": "â Žâ ‰â â ƒâ Šâ ‘â Ž" }, { "input": "scabies's", "output": "â Žâ ‰â â ƒâ Šâ ‘â Žâ „â Ž" }, { "input": "scabrous", "output": "â Žâ ‰â â ƒâ —⠳⠎" }, { "input": "scabs", "output": "â Žâ ‰â â ƒâ Ž" }, { "input": "scad", "output": "â Žâ ‰â â ™" }, { "input": "scad's", "output": "â Žâ ‰â â ™â „â Ž" }, { "input": "scads", "output": "â Žâ ‰â â ™â Ž" }, { "input": "scaffold", "output": "â Žâ ‰â â –⠕⠇⠙" }, { "input": "scaffold's", "output": "â Žâ ‰â â –⠕⠇⠙⠄⠎" }, { "input": "scaffolding", "output": "â Žâ ‰â â –⠕⠇⠙⠌" }, { "input": "scaffolding's", "output": "â Žâ ‰â â –⠕⠇⠙⠌⠄⠎" }, { "input": "scaffolds", "output": "â Žâ ‰â â –⠕⠇⠙⠎" }, { "input": "scalar", "output": "â Žâ ‰â â ‡â œ" }, { "input": "scalars", "output": "â Žâ ‰â â ‡â œâ Ž" }, { "input": "scalawag", "output": "â Žâ ‰â â ‡â â ºâ â ›" }, { "input": "scalawag's", "output": "â Žâ ‰â â ‡â â ºâ â ›â „â Ž" }, { "input": "scalawags", "output": "â Žâ ‰â â ‡â â ºâ â ›â Ž" }, { "input": "scald", "output": "â Žâ ‰â â ‡â ™" }, { "input": "scald's", "output": "â Žâ ‰â â ‡â ™â „â Ž" }, { "input": "scalded", "output": "â Žâ ‰â â ‡â ™â «" }, { "input": "scalding", "output": "â Žâ ‰â â ‡â ™â Œ" }, { "input": "scalds", "output": "â Žâ ‰â â ‡â ™â Ž" }, { "input": "scale", "output": "â Žâ ‰â â ‡â ‘" }, { "input": "scale's", "output": "â Žâ ‰â â ‡â ‘â „â Ž" }, { "input": "scaled", "output": "â Žâ ‰â â ‡â «" }, { "input": "scaleless", "output": "â Žâ ‰â â ‡â ‘⠨⠎" }, { "input": "scalene", "output": "â Žâ ‰â â ‡â ¢â ‘" }, { "input": "scales", "output": "â Žâ ‰â â ‡â ‘â Ž" }, { "input": "scalier", "output": "â Žâ ‰â â ‡â Šâ »" }, { "input": "scaliest", "output": "â Žâ ‰â â ‡â Šâ ‘â Œ" }, { "input": "scaliness's", "output": "â Žâ ‰â â ‡â Šâ °â Žâ „â Ž" }, { "input": "scaling", "output": "â Žâ ‰â â ‡â Œ" }, { "input": "scallion", "output": "â Žâ ‰â â ‡â ‡â Šâ •â " }, { "input": "scallion's", "output": "â Žâ ‰â â ‡â ‡â Šâ •â â „â Ž" }, { "input": "scallions", "output": "â Žâ ‰â â ‡â ‡â Šâ •â â Ž" }, { "input": "scallop", "output": "â Žâ ‰â â ‡â ‡â •â " }, { "input": "scallop's", "output": "â Žâ ‰â â ‡â ‡â •â â „â Ž" }, { "input": "scalloped", "output": "â Žâ ‰â â ‡â ‡â •â â «" }, { "input": "scalloping", "output": "â Žâ ‰â â ‡â ‡â •â â Œ" }, { "input": "scallops", "output": "â Žâ ‰â â ‡â ‡â •â â Ž" }, { "input": "scalp", "output": "â Žâ ‰â â ‡â " }, { "input": "scalp's", "output": "â Žâ ‰â â ‡â â „â Ž" }, { "input": "scalped", "output": "â Žâ ‰â â ‡â â «" }, { "input": "scalpel", "output": "â Žâ ‰â â ‡â â ‘â ‡" }, { "input": "scalpel's", "output": "â Žâ ‰â â ‡â â ‘⠇⠄⠎" }, { "input": "scalpels", "output": "â Žâ ‰â â ‡â â ‘⠇⠎" }, { "input": "scalper", "output": "â Žâ ‰â â ‡â â »" }, { "input": "scalper's", "output": "â Žâ ‰â â ‡â â »â „â Ž" }, { "input": "scalpers", "output": "â Žâ ‰â â ‡â â »â Ž" }, { "input": "scalping", "output": "â Žâ ‰â â ‡â â Œ" }, { "input": "scalps", "output": "â Žâ ‰â â ‡â â Ž" }, { "input": "scaly", "output": "â Žâ ‰â â ‡â ½" }, { "input": "scam", "output": "â Žâ ‰â â " }, { "input": "scam's", "output": "â Žâ ‰â â â „â Ž" }, { "input": "scammed", "output": "â Žâ ‰â â â â «" }, { "input": "scamming", "output": "â Žâ ‰â â â â Œ" }, { "input": "scamp", "output": "â Žâ ‰â â â " }, { "input": "scamp's", "output": "â Žâ ‰â â â â „â Ž" }, { "input": "scamper", "output": "â Žâ ‰â â â â »" }, { "input": "scamper's", "output": "â Žâ ‰â â â â »â „â Ž" }, { "input": "scampered", "output": "â Žâ ‰â â â â »â «" }, { "input": "scampering", "output": "â Žâ ‰â â â â »â Œ" }, { "input": "scampers", "output": "â Žâ ‰â â â â »â Ž" }, { "input": "scampi", "output": "â Žâ ‰â â â â Š" }, { "input": "scampi's", "output": "â Žâ ‰â â â â Šâ „â Ž" }, { "input": "scamps", "output": "â Žâ ‰â â â â Ž" }, { "input": "scams", "output": "â Žâ ‰â â â Ž" }, { "input": "scan", "output": "â Žâ ‰â â " }, { "input": "scan's", "output": "â Žâ ‰â â â „â Ž" }, { "input": "scandal", "output": "⠎⠉⠯â â ‡" }, { "input": "scandal's", "output": "⠎⠉⠯â â ‡â „â Ž" }, { "input": "scandalize", "output": "⠎⠉⠯â â ‡â Šâ µâ ‘" }, { "input": "scandalized", "output": "⠎⠉⠯â â ‡â Šâ µâ «" }, { "input": "scandalizes", "output": "⠎⠉⠯â â ‡â Šâ µâ ‘â Ž" }, { "input": "scandalizing", "output": "⠎⠉⠯â â ‡â Šâ µâ Œ" }, { "input": "scandalmonger", "output": "⠎⠉⠯â â ‡â â °â ›â »" }, { "input": "scandalmonger's", "output": "⠎⠉⠯â â ‡â â °â ›â »â „â Ž" }, { "input": "scandalmongers", "output": "⠎⠉⠯â â ‡â â °â ›â »â Ž" }, { "input": "scandalous", "output": "⠎⠉⠯â â ‡â ³â Ž" }, { "input": "scandalously", "output": "⠎⠉⠯â â ‡â ³â Žâ ‡â ½" }, { "input": "scandals", "output": "⠎⠉⠯â â ‡â Ž" }, { "input": "scandium", "output": "⠎⠉⠯⠊⠥â " }, { "input": "scandium's", "output": "⠎⠉⠯⠊⠥â â „â Ž" }, { "input": "scanned", "output": "â Žâ ‰â â â â «" }, { "input": "scanner", "output": "â Žâ ‰â â â â »" }, { "input": "scanner's", "output": "â Žâ ‰â â â â »â „â Ž" }, { "input": "scanners", "output": "â Žâ ‰â â â â »â Ž" }, { "input": "scanning", "output": "â Žâ ‰â â â â Œ" }, { "input": "scans", "output": "â Žâ ‰â â â Ž" }, { "input": "scansion", "output": "â Žâ ‰â â â ¨â " }, { "input": "scansion's", "output": "â Žâ ‰â â â ¨â â „â Ž" }, { "input": "scant", "output": "â Žâ ‰â â â ž" }, { "input": "scanted", "output": "â Žâ ‰â â â žâ «" }, { "input": "scanter", "output": "â Žâ ‰â â â žâ »" }, { "input": "scantest", "output": "â Žâ ‰â â â žâ ‘â Œ" }, { "input": "scantier", "output": "â Žâ ‰â â â žâ Šâ »" }, { "input": "scanties", "output": "â Žâ ‰â â â žâ Šâ ‘â Ž" }, { "input": "scantiest", "output": "â Žâ ‰â â â žâ Šâ ‘â Œ" }, { "input": "scantily", "output": "â Žâ ‰â â â žâ Šâ ‡â ½" }, { "input": "scantiness", "output": "â Žâ ‰â â â žâ Šâ °â Ž" }, { "input": "scantiness's", "output": "â Žâ ‰â â â žâ Šâ °â Žâ „â Ž" }, { "input": "scanting", "output": "â Žâ ‰â â â žâ Œ" }, { "input": "scantly", "output": "â Žâ ‰â â â žâ ‡â ½" }, { "input": "scantness", "output": "â Žâ ‰â â â žâ °â Ž" }, { "input": "scantness's", "output": "â Žâ ‰â â â žâ °â Žâ „â Ž" }, { "input": "scants", "output": "â Žâ ‰â â â žâ Ž" }, { "input": "scanty", "output": "â Žâ ‰â â â žâ ½" }, { "input": "scapegoat", "output": "â Žâ ‰â â â ‘⠛⠕â â ž" }, { "input": "scapegoat's", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ „â Ž" }, { "input": "scapegoated", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ «" }, { "input": "scapegoating", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ Œ" }, { "input": "scapegoats", "output": "â Žâ ‰â â â ‘⠛⠕â â žâ Ž" }, { "input": "scapegrace", "output": "â Žâ ‰â â â ‘⠛⠗â â ‰â ‘" }, { "input": "scapegrace's", "output": "â Žâ ‰â â â ‘⠛⠗â â ‰â ‘â „â Ž" }, { "input": "scapegraces", "output": "â Žâ ‰â â â ‘⠛⠗â â ‰â ‘â Ž" }, { "input": "scapula", "output": "â Žâ ‰â â â ¥â ‡â " }, { "input": "scapula's", "output": "â Žâ ‰â â â ¥â ‡â â „â Ž" }, { "input": "scapulae", "output": "â Žâ ‰â â â ¥â ‡â â ‘" }, { "input": "scapular", "output": "â Žâ ‰â â â ¥â ‡â œ" }, { "input": "scapular's", "output": "â Žâ ‰â â â ¥â ‡â œâ „â Ž" }, { "input": "scapulars", "output": "â Žâ ‰â â â ¥â ‡â œâ Ž" }, { "input": "scar", "output": "⠎⠉⠜" }, { "input": "scar's", "output": "⠎⠉⠜⠄⠎" }, { "input": "scarab", "output": "⠎⠉⠜â â ƒ" }, { "input": "scarab's", "output": "⠎⠉⠜â â ƒâ „â Ž" }, { "input": "scarabs", "output": "⠎⠉⠜â â ƒâ Ž" }, { "input": "scarce", "output": "⠎⠉⠜⠉⠑" }, { "input": "scarcely", "output": "⠎⠉⠜⠉⠑⠇⠽" }, { "input": "scarceness", "output": "⠎⠉⠜⠉⠑⠰⠎" }, { "input": "scarceness's", "output": "⠎⠉⠜⠉⠑⠰⠎⠄⠎" }, { "input": "scarcer", "output": "⠎⠉⠜⠉⠻" }, { "input": "scarcest", "output": "⠎⠉⠜⠉⠑⠌" }, { "input": "scarcity", "output": "⠎⠉⠜⠉⠰⠽" }, { "input": "scarcity's", "output": "⠎⠉⠜⠉⠰⠽⠄⠎" }, { "input": "scare", "output": "⠎⠉⠜⠑" }, { "input": "scare's", "output": "⠎⠉⠜⠑⠄⠎" }, { "input": "scarecrow", "output": "⠎⠉⠜⠑⠉⠗⠪" }, { "input": "scarecrow's", "output": "⠎⠉⠜⠑⠉⠗⠪⠄⠎" }, { "input": "scarecrows", "output": "⠎⠉⠜⠑⠉⠗⠪⠎" }, { "input": "scared", "output": "⠎⠉⠜⠫" }, { "input": "scares", "output": "⠎⠉⠜⠑⠎" }, { "input": "scarf", "output": "⠎⠉⠜⠋" }, { "input": "scarf's", "output": "⠎⠉⠜⠋⠄⠎" }, { "input": "scarfed", "output": "⠎⠉⠜⠋⠫" }, { "input": "scarfing", "output": "⠎⠉⠜⠋⠌" }, { "input": "scarfs", "output": "⠎⠉⠜⠋⠎" }, { "input": "scarier", "output": "⠎⠉⠜⠊⠻" }, { "input": "scariest", "output": "⠎⠉⠜⠊⠑⠌" }, { "input": "scarification", "output": "⠎⠉⠜⠊⠋⠊⠉⠠â " }, { "input": "scarification's", "output": "⠎⠉⠜⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "scarified", "output": "⠎⠉⠜⠊⠋⠊⠫" }, { "input": "scarifies", "output": "⠎⠉⠜⠊⠋⠊⠑⠎" }, { "input": "scarify", "output": "⠎⠉⠜⠊⠋⠽" }, { "input": "scarifying", "output": "⠎⠉⠜⠊⠋⠽⠌" }, { "input": "scarily", "output": "⠎⠉⠜⠊⠇⠽" }, { "input": "scariness", "output": "⠎⠉⠜⠊⠰⠎" }, { "input": "scariness's", "output": "⠎⠉⠜⠊⠰⠎⠄⠎" }, { "input": "scaring", "output": "⠎⠉⠜⠌" }, { "input": "scarlatina's", "output": "⠎⠉⠜⠇â â žâ ”â â „â Ž" }, { "input": "scarlet", "output": "⠎⠉⠜⠇⠑⠞" }, { "input": "scarlet's", "output": "⠎⠉⠜⠇⠑⠞⠄⠎" }, { "input": "scarped", "output": "⠎⠉⠜â â «" }, { "input": "scarping", "output": "⠎⠉⠜â â Œ" }, { "input": "scarred", "output": "⠎⠉⠜⠗⠫" }, { "input": "scarring", "output": "⠎⠉⠜⠗⠌" }, { "input": "scars", "output": "⠎⠉⠜⠎" }, { "input": "scarves", "output": "⠎⠉⠜⠧⠑⠎" }, { "input": "scary", "output": "⠎⠉⠜⠽" }, { "input": "scat", "output": "â Žâ ‰â â ž" }, { "input": "scat's", "output": "â Žâ ‰â â žâ „â Ž" }, { "input": "scathing", "output": "â Žâ ‰â â ¹â Œ" }, { "input": "scathingly", "output": "â Žâ ‰â â ¹â Œâ ‡â ½" }, { "input": "scatological", "output": "â Žâ ‰â â žâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "scatology", "output": "â Žâ ‰â â žâ •⠇⠕⠛⠽" }, { "input": "scatology's", "output": "â Žâ ‰â â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "scats", "output": "â Žâ ‰â â žâ Ž" }, { "input": "scatted", "output": "â Žâ ‰â â žâ žâ «" }, { "input": "scatter", "output": "â Žâ ‰â â žâ žâ »" }, { "input": "scatter's", "output": "â Žâ ‰â â žâ žâ »â „â Ž" }, { "input": "scatterbrain", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”" }, { "input": "scatterbrain's", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”â „â Ž" }, { "input": "scatterbrained", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”â «" }, { "input": "scatterbrains", "output": "â Žâ ‰â â žâ žâ »â ƒâ —â â ”â Ž" }, { "input": "scattered", "output": "â Žâ ‰â â žâ žâ »â «" }, { "input": "scattering", "output": "â Žâ ‰â â žâ žâ »â Œ" }, { "input": "scatters", "output": "â Žâ ‰â â žâ žâ »â Ž" }, { "input": "scatting", "output": "â Žâ ‰â â žâ žâ Œ" }, { "input": "scavenge", "output": "â Žâ ‰â â §â ¢â ›â ‘" }, { "input": "scavenged", "output": "â Žâ ‰â â §â ¢â ›â «" }, { "input": "scavenger", "output": "â Žâ ‰â â §â ¢â ›â »" }, { "input": "scavenger's", "output": "â Žâ ‰â â §â ¢â ›â »â „â Ž" }, { "input": "scavengers", "output": "â Žâ ‰â â §â ¢â ›â »â Ž" }, { "input": "scavenges", "output": "â Žâ ‰â â §â ¢â ›â ‘â Ž" }, { "input": "scavenging", "output": "â Žâ ‰â â §â ¢â ›â Œ" }, { "input": "scenario", "output": "⠎⠉⠢⠜⠊⠕" }, { "input": "scenario's", "output": "⠎⠉⠢⠜⠊⠕⠄⠎" }, { "input": "scenarios", "output": "⠎⠉⠢⠜⠊⠕⠎" }, { "input": "scenarist", "output": "⠎⠉⠢⠜⠊⠌" }, { "input": "scenarist's", "output": "⠎⠉⠢⠜⠊⠌⠄⠎" }, { "input": "scenarists", "output": "⠎⠉⠢⠜⠊⠌⠎" }, { "input": "scene", "output": "⠎⠉⠢⠑" }, { "input": "scene's", "output": "⠎⠉⠢⠑⠄⠎" }, { "input": "scenery", "output": "⠎⠉⠢⠻⠽" }, { "input": "scenery's", "output": "⠎⠉⠢⠻⠽⠄⠎" }, { "input": "scenes", "output": "⠎⠉⠢⠑⠎" }, { "input": "scenic", "output": "⠎⠉⠢⠊⠉" }, { "input": "scenically", "output": "⠎⠉⠢⠊⠉⠠⠽" }, { "input": "scent", "output": "⠎⠉⠢⠞" }, { "input": "scent's", "output": "⠎⠉⠢⠞⠄⠎" }, { "input": "scented", "output": "⠎⠉⠢⠞⠫" }, { "input": "scenting", "output": "⠎⠉⠢⠞⠌" }, { "input": "scentless", "output": "⠎⠉⠢⠞⠨⠎" }, { "input": "scents", "output": "⠎⠉⠢⠞⠎" }, { "input": "scepter", "output": "⠎⠉⠑â â žâ »" }, { "input": "scepter's", "output": "⠎⠉⠑â â žâ »â „â Ž" }, { "input": "scepters", "output": "⠎⠉⠑â â žâ »â Ž" }, { "input": "schedule", "output": "⠎⠡⠫⠥⠇⠑" }, { "input": "schedule's", "output": "⠎⠡⠫⠥⠇⠑⠄⠎" }, { "input": "scheduled", "output": "⠎⠡⠫⠥⠇⠫" }, { "input": "scheduler", "output": "⠎⠡⠫⠥⠇⠻" }, { "input": "schedulers", "output": "⠎⠡⠫⠥⠇⠻⠎" }, { "input": "schedules", "output": "⠎⠡⠫⠥⠇⠑⠎" }, { "input": "scheduling", "output": "⠎⠡⠫⠥⠇⠌" }, { "input": "schema", "output": "â Žâ ¡â ‘â â " }, { "input": "schematic", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰" }, { "input": "schematic's", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰â „â Ž" }, { "input": "schematically", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰â  â ½" }, { "input": "schematics", "output": "â Žâ ¡â ‘â â â žâ Šâ ‰â Ž" }, { "input": "schematize", "output": "â Žâ ¡â ‘â â â žâ Šâ µâ ‘" }, { "input": "schematized", "output": "â Žâ ¡â ‘â â â žâ Šâ µâ «" }, { "input": "schematizes", "output": "â Žâ ¡â ‘â â â žâ Šâ µâ ‘â Ž" }, { "input": "schematizing", "output": "â Žâ ¡â ‘â â â žâ Šâ µâ Œ" }, { "input": "scheme", "output": "â Žâ ¡â ‘â â ‘" }, { "input": "scheme's", "output": "â Žâ ¡â ‘â â ‘â „â Ž" }, { "input": "schemed", "output": "â Žâ ¡â ‘â â «" }, { "input": "schemer", "output": "â Žâ ¡â ‘â â »" }, { "input": "schemer's", "output": "â Žâ ¡â ‘â â »â „â Ž" }, { "input": "schemers", "output": "â Žâ ¡â ‘â â »â Ž" }, { "input": "schemes", "output": "â Žâ ¡â ‘â â ‘â Ž" }, { "input": "scheming", "output": "â Žâ ¡â ‘â â Œ" }, { "input": "scherzo", "output": "⠎⠡⠻⠵⠕" }, { "input": "scherzo's", "output": "⠎⠡⠻⠵⠕⠄⠎" }, { "input": "scherzos", "output": "⠎⠡⠻⠵⠕⠎" }, { "input": "schilling", "output": "⠎⠡⠊⠇⠇⠌" }, { "input": "schilling's", "output": "⠎⠡⠊⠇⠇⠌⠄⠎" }, { "input": "schillings", "output": "⠎⠡⠊⠇⠇⠌⠎" }, { "input": "schism", "output": "â Žâ ¡â Šâ Žâ " }, { "input": "schism's", "output": "â Žâ ¡â Šâ Žâ â „â Ž" }, { "input": "schismatic", "output": "â Žâ ¡â Šâ Žâ â â žâ Šâ ‰" }, { "input": "schismatic's", "output": "â Žâ ¡â Šâ Žâ â â žâ Šâ ‰â „â Ž" }, { "input": "schismatics", "output": "â Žâ ¡â Šâ Žâ â â žâ Šâ ‰â Ž" }, { "input": "schisms", "output": "â Žâ ¡â Šâ Žâ â Ž" }, { "input": "schist", "output": "â Žâ ¡â Šâ Œ" }, { "input": "schist's", "output": "⠎⠡⠊⠌⠄⠎" }, { "input": "schizoid", "output": "⠎⠡⠊⠵⠕⠊⠙" }, { "input": "schizoid's", "output": "⠎⠡⠊⠵⠕⠊⠙⠄⠎" }, { "input": "schizoids", "output": "⠎⠡⠊⠵⠕⠊⠙⠎" }, { "input": "schizophrenia", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊â " }, { "input": "schizophrenia's", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊â â „â Ž" }, { "input": "schizophrenic", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊⠉" }, { "input": "schizophrenic's", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊⠉⠄⠎" }, { "input": "schizophrenics", "output": "⠎⠡⠊⠵⠕â â “⠗⠢⠊⠉⠎" }, { "input": "schlemiel", "output": "⠎⠡⠇⠑â â Šâ ‘â ‡" }, { "input": "schlemiel's", "output": "⠎⠡⠇⠑â â Šâ ‘⠇⠄⠎" }, { "input": "schlemiels", "output": "⠎⠡⠇⠑â â Šâ ‘⠇⠎" }, { "input": "schlep", "output": "⠎⠡⠇⠑â " }, { "input": "schlep's", "output": "⠎⠡⠇⠑â â „â Ž" }, { "input": "schlepped", "output": "⠎⠡⠇⠑â â â «" }, { "input": "schlepping", "output": "⠎⠡⠇⠑â â â Œ" }, { "input": "schleps", "output": "⠎⠡⠇⠑â â Ž" }, { "input": "schlock", "output": "⠎⠡⠇⠕⠉⠅" }, { "input": "schlock's", "output": "⠎⠡⠇⠕⠉⠅⠄⠎" }, { "input": "schmaltz", "output": "â Žâ ¡â â â ‡â žâ µ" }, { "input": "schmaltz's", "output": "â Žâ ¡â â â ‡â žâ µâ „â Ž" }, { "input": "schmaltzier", "output": "â Žâ ¡â â â ‡â žâ µâ Šâ »" }, { "input": "schmaltziest", "output": "â Žâ ¡â â â ‡â žâ µâ Šâ ‘â Œ" }, { "input": "schmaltzy", "output": "â Žâ ¡â â â ‡â žâ µâ ½" }, { "input": "schmo", "output": "â Žâ ¡â â •" }, { "input": "schmo's", "output": "â Žâ ¡â â •â „â Ž" }, { "input": "schmoes", "output": "â Žâ ¡â â •â ‘â Ž" }, { "input": "schmooze", "output": "â Žâ ¡â â •⠕⠵⠑" }, { "input": "schmoozed", "output": "â Žâ ¡â â •⠕⠵⠫" }, { "input": "schmoozes", "output": "â Žâ ¡â â •⠕⠵⠑⠎" }, { "input": "schmoozing", "output": "â Žâ ¡â â •⠕⠵⠌" }, { "input": "schmuck", "output": "â Žâ ¡â â ¥â ‰â …" }, { "input": "schmuck's", "output": "â Žâ ¡â â ¥â ‰â …â „â Ž" }, { "input": "schmucks", "output": "â Žâ ¡â â ¥â ‰â …â Ž" }, { "input": "schnapps", "output": "â Žâ ¡â â â â â Ž" }, { "input": "schnapps's", "output": "â Žâ ¡â â â â â Žâ „â Ž" }, { "input": "schnauzer", "output": "â Žâ ¡â â â ¥â µâ »" }, { "input": "schnauzer's", "output": "â Žâ ¡â â â ¥â µâ »â „â Ž" }, { "input": "schnauzers", "output": "â Žâ ¡â â â ¥â µâ »â Ž" }, { "input": "schnoz", "output": "â Žâ ¡â â •â µ" }, { "input": "schnoz's", "output": "â Žâ ¡â â •⠵⠄⠎" }, { "input": "schnozes", "output": "â Žâ ¡â â •⠵⠑⠎" }, { "input": "schnozzle", "output": "â Žâ ¡â â •⠵⠵⠇⠑" }, { "input": "schnozzle's", "output": "â Žâ ¡â â •⠵⠵⠇⠑⠄⠎" }, { "input": "schnozzles", "output": "â Žâ ¡â â •⠵⠵⠇⠑⠎" }, { "input": "scholar", "output": "⠎⠡⠕⠇⠜" }, { "input": "scholar's", "output": "⠎⠡⠕⠇⠜⠄⠎" }, { "input": "scholarly", "output": "⠎⠡⠕⠇⠜⠇⠽" }, { "input": "scholars", "output": "⠎⠡⠕⠇⠜⠎" }, { "input": "scholarship", "output": "⠎⠡⠕⠇⠜⠩⠊â " }, { "input": "scholarship's", "output": "⠎⠡⠕⠇⠜⠩⠊â â „â Ž" }, { "input": "scholarships", "output": "⠎⠡⠕⠇⠜⠩⠊â â Ž" }, { "input": "scholastic", "output": "â Žâ ¡â •â ‡â â Œâ Šâ ‰" }, { "input": "scholastically", "output": "â Žâ ¡â •â ‡â â Œâ Šâ ‰â  â ½" }, { "input": "school", "output": "â Žâ ¡â •â •â ‡" }, { "input": "school's", "output": "⠎⠡⠕⠕⠇⠄⠎" }, { "input": "schoolbook", "output": "⠎⠡⠕⠕⠇⠃⠕⠕⠅" }, { "input": "schoolbook's", "output": "⠎⠡⠕⠕⠇⠃⠕⠕⠅⠄⠎" }, { "input": "schoolbooks", "output": "⠎⠡⠕⠕⠇⠃⠕⠕⠅⠎" }, { "input": "schoolboy", "output": "⠎⠡⠕⠕⠇⠃⠕⠽" }, { "input": "schoolboy's", "output": "⠎⠡⠕⠕⠇⠃⠕⠽⠄⠎" }, { "input": "schoolboys", "output": "⠎⠡⠕⠕⠇⠃⠕⠽⠎" }, { "input": "schoolchild", "output": "⠎⠡⠕⠕⠇⠡⠊⠇⠙" }, { "input": "schoolchild's", "output": "⠎⠡⠕⠕⠇⠡⠊⠇⠙⠄⠎" }, { "input": "schoolchildren", "output": "⠎⠡⠕⠕⠇⠡â " }, { "input": "schooldays", "output": "â Žâ ¡â •â •â ‡â â ™â Ž" }, { "input": "schooled", "output": "⠎⠡⠕⠕⠇⠫" }, { "input": "schoolfellow", "output": "⠎⠡⠕⠕⠇⠋⠑⠇⠇⠪" }, { "input": "schoolfellow's", "output": "⠎⠡⠕⠕⠇⠋⠑⠇⠇⠪⠄⠎" }, { "input": "schoolfellows", "output": "⠎⠡⠕⠕⠇⠋⠑⠇⠇⠪⠎" }, { "input": "schoolgirl", "output": "⠎⠡⠕⠕⠇⠛⠊⠗⠇" }, { "input": "schoolgirl's", "output": "⠎⠡⠕⠕⠇⠛⠊⠗⠇⠄⠎" }, { "input": "schoolgirls", "output": "⠎⠡⠕⠕⠇⠛⠊⠗⠇⠎" }, { "input": "schoolhouse", "output": "⠎⠡⠕⠕⠇⠓⠳⠎⠑" }, { "input": "schoolhouse's", "output": "⠎⠡⠕⠕⠇⠓⠳⠎⠑⠄⠎" }, { "input": "schoolhouses", "output": "⠎⠡⠕⠕⠇⠓⠳⠎⠑⠎" }, { "input": "schooling", "output": "⠎⠡⠕⠕⠇⠌" }, { "input": "schooling's", "output": "⠎⠡⠕⠕⠇⠌⠄⠎" }, { "input": "schoolmarm", "output": "â Žâ ¡â •â •â ‡â â œâ " }, { "input": "schoolmarm's", "output": "â Žâ ¡â •â •â ‡â â œâ â „â Ž" }, { "input": "schoolmarms", "output": "â Žâ ¡â •â •â ‡â â œâ â Ž" }, { "input": "schoolmaster", "output": "â Žâ ¡â •â •â ‡â â â Œâ »" }, { "input": "schoolmaster's", "output": "â Žâ ¡â •â •â ‡â â â Œâ »â „â Ž" }, { "input": "schoolmasters", "output": "â Žâ ¡â •â •â ‡â â â Œâ »â Ž" }, { "input": "schoolmate", "output": "â Žâ ¡â •â •â ‡â â â žâ ‘" }, { "input": "schoolmate's", "output": "â Žâ ¡â •â •â ‡â â â žâ ‘â „â Ž" }, { "input": "schoolmates", "output": "â Žâ ¡â •â •â ‡â â â žâ ‘â Ž" }, { "input": "schoolmistress", "output": "â Žâ ¡â •â •â ‡â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "schoolmistress's", "output": "â Žâ ¡â •â •â ‡â â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "schoolmistresses", "output": "â Žâ ¡â •â •â ‡â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "schoolroom", "output": "⠎⠡⠕⠕⠇⠗⠕⠕â " }, { "input": "schoolroom's", "output": "⠎⠡⠕⠕⠇⠗⠕⠕â â „â Ž" }, { "input": "schoolrooms", "output": "⠎⠡⠕⠕⠇⠗⠕⠕â â Ž" }, { "input": "schools", "output": "⠎⠡⠕⠕⠇⠎" }, { "input": "schoolteacher", "output": "⠎⠡⠕⠕⠇⠞⠂⠡⠻" }, { "input": "schoolteacher's", "output": "⠎⠡⠕⠕⠇⠞⠂⠡⠻⠄⠎" }, { "input": "schoolteachers", "output": "⠎⠡⠕⠕⠇⠞⠂⠡⠻⠎" }, { "input": "schoolwork", "output": "â Žâ ¡â •â •â ‡â â º" }, { "input": "schoolwork's", "output": "â Žâ ¡â •â •â ‡â â ºâ „â Ž" }, { "input": "schoolyard", "output": "⠎⠡⠕⠕⠇⠽⠜⠙" }, { "input": "schoolyard's", "output": "⠎⠡⠕⠕⠇⠽⠜⠙⠄⠎" }, { "input": "schoolyards", "output": "⠎⠡⠕⠕⠇⠽⠜⠙⠎" }, { "input": "schooner", "output": "â Žâ ¡â •â •â â »" }, { "input": "schooner's", "output": "â Žâ ¡â •â •â â »â „â Ž" }, { "input": "schooners", "output": "â Žâ ¡â •â •â â »â Ž" }, { "input": "schuss", "output": "⠎⠡⠥⠎⠎" }, { "input": "schuss's", "output": "⠎⠡⠥⠎⠎⠄⠎" }, { "input": "schussboomer", "output": "⠎⠡⠥⠎⠎⠃⠕⠕â â »" }, { "input": "schussboomer's", "output": "⠎⠡⠥⠎⠎⠃⠕⠕â â »â „â Ž" }, { "input": "schussboomers", "output": "⠎⠡⠥⠎⠎⠃⠕⠕â â »â Ž" }, { "input": "schussed", "output": "⠎⠡⠥⠎⠎⠫" }, { "input": "schusses", "output": "⠎⠡⠥⠎⠎⠑⠎" }, { "input": "schussing", "output": "⠎⠡⠥⠎⠎⠌" }, { "input": "schwa", "output": "â Žâ ¡â ºâ " }, { "input": "schwa's", "output": "â Žâ ¡â ºâ â „â Ž" }, { "input": "schwas", "output": "â Žâ ¡â ºâ â Ž" }, { "input": "sciatic", "output": "⠎⠉⠊â â žâ Šâ ‰" }, { "input": "sciatica", "output": "⠎⠉⠊â â žâ Šâ ‰â " }, { "input": "sciatica's", "output": "⠎⠉⠊â â žâ Šâ ‰â â „â Ž" }, { "input": "science", "output": "⠎⠉⠊⠰⠑" }, { "input": "science's", "output": "⠎⠉⠊⠰⠑⠄⠎" }, { "input": "sciences", "output": "⠎⠉⠊⠰⠑⠎" }, { "input": "scientific", "output": "⠎⠉⠊⠢⠞⠊⠋⠊⠉" }, { "input": "scientifically", "output": "⠎⠉⠊⠢⠞⠊⠋⠊⠉⠠⠽" }, { "input": "scientist", "output": "⠎⠉⠊⠢⠞⠊⠌" }, { "input": "scientist's", "output": "⠎⠉⠊⠢⠞⠊⠌⠄⠎" }, { "input": "scientists", "output": "⠎⠉⠊⠢⠞⠊⠌⠎" }, { "input": "scimitar", "output": "⠎⠉⠊â â Šâ žâ œ" }, { "input": "scimitar's", "output": "⠎⠉⠊â â Šâ žâ œâ „â Ž" }, { "input": "scimitars", "output": "⠎⠉⠊â â Šâ žâ œâ Ž" }, { "input": "scintilla", "output": "⠎⠉⠔⠞⠊⠇⠇â " }, { "input": "scintilla's", "output": "⠎⠉⠔⠞⠊⠇⠇â â „â Ž" }, { "input": "scintillas", "output": "⠎⠉⠔⠞⠊⠇⠇â â Ž" }, { "input": "scintillate", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ ‘" }, { "input": "scintillated", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ «" }, { "input": "scintillates", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ ‘â Ž" }, { "input": "scintillating", "output": "⠎⠉⠔⠞⠊⠇⠇â â žâ Œ" }, { "input": "scintillation", "output": "⠎⠉⠔⠞⠊⠇⠇⠠â " }, { "input": "scintillation's", "output": "⠎⠉⠔⠞⠊⠇⠇⠠â â „â Ž" }, { "input": "scion", "output": "⠎⠉⠊⠕â " }, { "input": "scion's", "output": "⠎⠉⠊⠕â â „â Ž" }, { "input": "scions", "output": "⠎⠉⠊⠕â â Ž" }, { "input": "scissor", "output": "⠎⠉⠊⠎⠎⠕⠗" }, { "input": "scissored", "output": "⠎⠉⠊⠎⠎⠕⠗⠫" }, { "input": "scissoring", "output": "⠎⠉⠊⠎⠎⠕⠗⠌" }, { "input": "scissors", "output": "⠎⠉⠊⠎⠎⠕⠗⠎" }, { "input": "scleroses", "output": "⠎⠉⠇⠻⠕⠎⠑⠎" }, { "input": "sclerosis", "output": "⠎⠉⠇⠻⠕⠎⠊⠎" }, { "input": "sclerosis's", "output": "⠎⠉⠇⠻⠕⠎⠊⠎⠄⠎" }, { "input": "sclerotic", "output": "⠎⠉⠇⠻⠕⠞⠊⠉" }, { "input": "scoff", "output": "⠎⠉⠷⠋" }, { "input": "scoff's", "output": "⠎⠉⠷⠋⠄⠎" }, { "input": "scoffed", "output": "⠎⠉⠷⠋⠫" }, { "input": "scoffer", "output": "⠎⠉⠷⠋⠻" }, { "input": "scoffer's", "output": "⠎⠉⠷⠋⠻⠄⠎" }, { "input": "scoffers", "output": "⠎⠉⠷⠋⠻⠎" }, { "input": "scoffing", "output": "⠎⠉⠷⠋⠌" }, { "input": "scofflaw", "output": "⠎⠉⠷⠋⠇â â º" }, { "input": "scofflaw's", "output": "⠎⠉⠷⠋⠇â â ºâ „â Ž" }, { "input": "scofflaws", "output": "⠎⠉⠷⠋⠇â â ºâ Ž" }, { "input": "scoffs", "output": "⠎⠉⠷⠋⠎" }, { "input": "scold", "output": "⠎⠉⠕⠇⠙" }, { "input": "scold's", "output": "⠎⠉⠕⠇⠙⠄⠎" }, { "input": "scolded", "output": "⠎⠉⠕⠇⠙⠫" }, { "input": "scolding", "output": "⠎⠉⠕⠇⠙⠌" }, { "input": "scolding's", "output": "⠎⠉⠕⠇⠙⠌⠄⠎" }, { "input": "scoldings", "output": "⠎⠉⠕⠇⠙⠌⠎" }, { "input": "scolds", "output": "⠎⠉⠕⠇⠙⠎" }, { "input": "scoliosis", "output": "⠎⠉⠕⠇⠊⠕⠎⠊⠎" }, { "input": "scoliosis's", "output": "⠎⠉⠕⠇⠊⠕⠎⠊⠎⠄⠎" }, { "input": "sconce", "output": "⠎⠉⠕â â ‰â ‘" }, { "input": "sconce's", "output": "⠎⠉⠕â â ‰â ‘â „â Ž" }, { "input": "sconces", "output": "⠎⠉⠕â â ‰â ‘â Ž" }, { "input": "scone", "output": "â Žâ ‰â â •" }, { "input": "scone's", "output": "â Žâ ‰â â •â „â Ž" }, { "input": "scones", "output": "â Žâ ‰â â •â Ž" }, { "input": "scoop", "output": "⠎⠉⠕⠕â " }, { "input": "scoop's", "output": "⠎⠉⠕⠕â â „â Ž" }, { "input": "scooped", "output": "⠎⠉⠕⠕â â «" }, { "input": "scoopful", "output": "⠎⠉⠕⠕â â °â ‡" }, { "input": "scoopful's", "output": "⠎⠉⠕⠕â â °â ‡â „â Ž" }, { "input": "scoopfuls", "output": "⠎⠉⠕⠕â â °â ‡â Ž" }, { "input": "scooping", "output": "⠎⠉⠕⠕â â Œ" }, { "input": "scoops", "output": "⠎⠉⠕⠕â â Ž" }, { "input": "scoot", "output": "⠎⠉⠕⠕⠞" }, { "input": "scooted", "output": "⠎⠉⠕⠕⠞⠫" }, { "input": "scooter", "output": "⠎⠉⠕⠕⠞⠻" }, { "input": "scooter's", "output": "⠎⠉⠕⠕⠞⠻⠄⠎" }, { "input": "scooters", "output": "⠎⠉⠕⠕⠞⠻⠎" }, { "input": "scooting", "output": "⠎⠉⠕⠕⠞⠌" }, { "input": "scoots", "output": "⠎⠉⠕⠕⠞⠎" }, { "input": "scope", "output": "⠎⠉⠕â â ‘" }, { "input": "scope's", "output": "⠎⠉⠕â â ‘â „â Ž" }, { "input": "scoped", "output": "⠎⠉⠕â â «" }, { "input": "scopes", "output": "⠎⠉⠕â â ‘â Ž" }, { "input": "scoping", "output": "⠎⠉⠕â â Œ" }, { "input": "scorbutic", "output": "⠎⠉⠕⠗⠃⠥⠞⠊⠉" }, { "input": "scorch", "output": "⠎⠉⠕⠗⠡" }, { "input": "scorch's", "output": "⠎⠉⠕⠗⠡⠄⠎" }, { "input": "scorched", "output": "⠎⠉⠕⠗⠡⠫" }, { "input": "scorcher", "output": "⠎⠉⠕⠗⠡⠻" }, { "input": "scorcher's", "output": "⠎⠉⠕⠗⠡⠻⠄⠎" }, { "input": "scorchers", "output": "⠎⠉⠕⠗⠡⠻⠎" }, { "input": "scorches", "output": "⠎⠉⠕⠗⠡⠑⠎" }, { "input": "scorching", "output": "⠎⠉⠕⠗⠡⠌" }, { "input": "score", "output": "⠎⠉⠕⠗⠑" }, { "input": "score's", "output": "⠎⠉⠕⠗⠑⠄⠎" }, { "input": "scoreboard", "output": "⠎⠉⠕⠗⠑⠃⠕⠜⠙" }, { "input": "scoreboard's", "output": "⠎⠉⠕⠗⠑⠃⠕⠜⠙⠄⠎" }, { "input": "scoreboards", "output": "⠎⠉⠕⠗⠑⠃⠕⠜⠙⠎" }, { "input": "scorecard", "output": "⠎⠉⠕⠗⠑⠉⠜⠙" }, { "input": "scorecard's", "output": "⠎⠉⠕⠗⠑⠉⠜⠙⠄⠎" }, { "input": "scorecards", "output": "⠎⠉⠕⠗⠑⠉⠜⠙⠎" }, { "input": "scored", "output": "⠎⠉⠕⠗⠫" }, { "input": "scoreless", "output": "⠎⠉⠕⠗⠑⠨⠎" }, { "input": "scorer", "output": "⠎⠉⠕⠗⠻" }, { "input": "scorer's", "output": "⠎⠉⠕⠗⠻⠄⠎" }, { "input": "scorers", "output": "⠎⠉⠕⠗⠻⠎" }, { "input": "scores", "output": "⠎⠉⠕⠗⠑⠎" }, { "input": "scoring", "output": "⠎⠉⠕⠗⠌" }, { "input": "scorn", "output": "⠎⠉⠕⠗â " }, { "input": "scorn's", "output": "⠎⠉⠕⠗â â „â Ž" }, { "input": "scorned", "output": "⠎⠉⠕⠗â â «" }, { "input": "scorner", "output": "⠎⠉⠕⠗â â »" }, { "input": "scorner's", "output": "⠎⠉⠕⠗â â »â „â Ž" }, { "input": "scorners", "output": "⠎⠉⠕⠗â â »â Ž" }, { "input": "scornful", "output": "⠎⠉⠕⠗â â °â ‡" }, { "input": "scornfully", "output": "⠎⠉⠕⠗â â °â ‡â ‡â ½" }, { "input": "scorning", "output": "⠎⠉⠕⠗â â Œ" }, { "input": "scorns", "output": "⠎⠉⠕⠗â â Ž" }, { "input": "scorpion", "output": "⠎⠉⠕⠗â â Šâ •â " }, { "input": "scorpion's", "output": "⠎⠉⠕⠗â â Šâ •â â „â Ž" }, { "input": "scorpions", "output": "⠎⠉⠕⠗â â Šâ •â â Ž" }, { "input": "scotch", "output": "⠎⠉⠕⠞⠡" }, { "input": "scotch's", "output": "⠎⠉⠕⠞⠡⠄⠎" }, { "input": "scotched", "output": "⠎⠉⠕⠞⠡⠫" }, { "input": "scotches", "output": "⠎⠉⠕⠞⠡⠑⠎" }, { "input": "scotching", "output": "⠎⠉⠕⠞⠡⠌" }, { "input": "scotchs", "output": "⠎⠉⠕⠞⠡⠎" }, { "input": "scoundrel", "output": "⠎⠉⠨⠙⠗⠑⠇" }, { "input": "scoundrel's", "output": "⠎⠉⠨⠙⠗⠑⠇⠄⠎" }, { "input": "scoundrels", "output": "⠎⠉⠨⠙⠗⠑⠇⠎" }, { "input": "scour", "output": "⠎⠉⠳⠗" }, { "input": "scoured", "output": "⠎⠉⠳⠗⠫" }, { "input": "scourge", "output": "⠎⠉⠳⠗⠛⠑" }, { "input": "scourge's", "output": "⠎⠉⠳⠗⠛⠑⠄⠎" }, { "input": "scourged", "output": "⠎⠉⠳⠗⠛⠫" }, { "input": "scourges", "output": "⠎⠉⠳⠗⠛⠑⠎" }, { "input": "scourging", "output": "⠎⠉⠳⠗⠛⠌" }, { "input": "scouring", "output": "⠎⠉⠳⠗⠌" }, { "input": "scours", "output": "⠎⠉⠳⠗⠎" }, { "input": "scout", "output": "⠎⠉⠳⠞" }, { "input": "scout's", "output": "⠎⠉⠳⠞⠄⠎" }, { "input": "scouted", "output": "⠎⠉⠳⠞⠫" }, { "input": "scouting", "output": "⠎⠉⠳⠞⠌" }, { "input": "scouting's", "output": "⠎⠉⠳⠞⠌⠄⠎" }, { "input": "scoutmaster", "output": "⠎⠉⠳⠞â â â Œâ »" }, { "input": "scoutmaster's", "output": "⠎⠉⠳⠞â â â Œâ »â „â Ž" }, { "input": "scoutmasters", "output": "⠎⠉⠳⠞â â â Œâ »â Ž" }, { "input": "scouts", "output": "⠎⠉⠳⠞⠎" }, { "input": "scow", "output": "⠎⠉⠪" }, { "input": "scow's", "output": "⠎⠉⠪⠄⠎" }, { "input": "scowl", "output": "⠎⠉⠪⠇" }, { "input": "scowl's", "output": "⠎⠉⠪⠇⠄⠎" }, { "input": "scowled", "output": "⠎⠉⠪⠇⠫" }, { "input": "scowling", "output": "⠎⠉⠪⠇⠌" }, { "input": "scowls", "output": "⠎⠉⠪⠇⠎" }, { "input": "scows", "output": "⠎⠉⠪⠎" }, { "input": "scrabble", "output": "⠎⠉⠗â â ƒâ ¼" }, { "input": "scrabble's", "output": "⠎⠉⠗â â ƒâ ¼â „â Ž" }, { "input": "scrabbled", "output": "⠎⠉⠗â â ƒâ ¼â ™" }, { "input": "scrabbler", "output": "⠎⠉⠗â â ƒâ ¼â —" }, { "input": "scrabbler's", "output": "⠎⠉⠗â â ƒâ ¼â —â „â Ž" }, { "input": "scrabblers", "output": "⠎⠉⠗â â ƒâ ¼â —â Ž" }, { "input": "scrabbles", "output": "⠎⠉⠗â â ƒâ ¼â Ž" }, { "input": "scrabbling", "output": "⠎⠉⠗â â †â ‡â Œ" }, { "input": "scrag", "output": "⠎⠉⠗â â ›" }, { "input": "scrag's", "output": "⠎⠉⠗â â ›â „â Ž" }, { "input": "scragglier", "output": "⠎⠉⠗â â ¶â ‡â Šâ »" }, { "input": "scraggliest", "output": "⠎⠉⠗â â ¶â ‡â Šâ ‘â Œ" }, { "input": "scraggly", "output": "⠎⠉⠗â â ¶â ‡â ½" }, { "input": "scrags", "output": "⠎⠉⠗â â ›â Ž" }, { "input": "scram", "output": "⠎⠉⠗â â " }, { "input": "scramble", "output": "⠎⠉⠗â â â ¼" }, { "input": "scramble's", "output": "⠎⠉⠗â â â ¼â „â Ž" }, { "input": "scrambled", "output": "⠎⠉⠗â â â ¼â ™" }, { "input": "scrambler", "output": "⠎⠉⠗â â â ¼â —" }, { "input": "scrambler's", "output": "⠎⠉⠗â â â ¼â —â „â Ž" }, { "input": "scramblers", "output": "⠎⠉⠗â â â ¼â —â Ž" }, { "input": "scrambles", "output": "⠎⠉⠗â â â ¼â Ž" }, { "input": "scrambling", "output": "⠎⠉⠗â â â ƒâ ‡â Œ" }, { "input": "scrammed", "output": "⠎⠉⠗â â â â «" }, { "input": "scramming", "output": "⠎⠉⠗â â â â Œ" }, { "input": "scrams", "output": "⠎⠉⠗â â â Ž" }, { "input": "scrap", "output": "⠎⠉⠗â â " }, { "input": "scrap's", "output": "⠎⠉⠗â â â „â Ž" }, { "input": "scrapbook", "output": "⠎⠉⠗â â â ƒâ •â •â …" }, { "input": "scrapbook's", "output": "⠎⠉⠗â â â ƒâ •â •â …â „â Ž" }, { "input": "scrapbooks", "output": "⠎⠉⠗â â â ƒâ •â •â …â Ž" }, { "input": "scrape", "output": "⠎⠉⠗â â â ‘" }, { "input": "scrape's", "output": "⠎⠉⠗â â â ‘â „â Ž" }, { "input": "scraped", "output": "⠎⠉⠗â â â «" }, { "input": "scraper", "output": "⠎⠉⠗â â â »" }, { "input": "scraper's", "output": "⠎⠉⠗â â â »â „â Ž" }, { "input": "scrapers", "output": "⠎⠉⠗â â â »â Ž" }, { "input": "scrapes", "output": "⠎⠉⠗â â â ‘â Ž" }, { "input": "scraping", "output": "⠎⠉⠗â â â Œ" }, { "input": "scrapped", "output": "⠎⠉⠗â â â â «" }, { "input": "scrapper", "output": "⠎⠉⠗â â â â »" }, { "input": "scrapper's", "output": "⠎⠉⠗â â â â »â „â Ž" }, { "input": "scrappers", "output": "⠎⠉⠗â â â â »â Ž" }, { "input": "scrappier", "output": "⠎⠉⠗â â â â Šâ »" }, { "input": "scrappiest", "output": "⠎⠉⠗â â â â Šâ ‘â Œ" }, { "input": "scrapping", "output": "⠎⠉⠗â â â â Œ" }, { "input": "scrappy", "output": "⠎⠉⠗â â â â ½" }, { "input": "scraps", "output": "⠎⠉⠗â â â Ž" }, { "input": "scratch", "output": "⠎⠉⠗â â žâ ¡" }, { "input": "scratch's", "output": "⠎⠉⠗â â žâ ¡â „â Ž" }, { "input": "scratched", "output": "⠎⠉⠗â â žâ ¡â «" }, { "input": "scratches", "output": "⠎⠉⠗â â žâ ¡â ‘â Ž" }, { "input": "scratchier", "output": "⠎⠉⠗â â žâ ¡â Šâ »" }, { "input": "scratchiest", "output": "⠎⠉⠗â â žâ ¡â Šâ ‘â Œ" }, { "input": "scratchily", "output": "⠎⠉⠗â â žâ ¡â Šâ ‡â ½" }, { "input": "scratchiness", "output": "⠎⠉⠗â â žâ ¡â Šâ °â Ž" }, { "input": "scratchiness's", "output": "⠎⠉⠗â â žâ ¡â Šâ °â Žâ „â Ž" }, { "input": "scratching", "output": "⠎⠉⠗â â žâ ¡â Œ" }, { "input": "scratchy", "output": "⠎⠉⠗â â žâ ¡â ½" }, { "input": "scrawl", "output": "⠎⠉⠗â â ºâ ‡" }, { "input": "scrawl's", "output": "⠎⠉⠗â â ºâ ‡â „â Ž" }, { "input": "scrawled", "output": "⠎⠉⠗â â ºâ ‡â «" }, { "input": "scrawlier", "output": "⠎⠉⠗â â ºâ ‡â Šâ »" }, { "input": "scrawliest", "output": "⠎⠉⠗â â ºâ ‡â Šâ ‘â Œ" }, { "input": "scrawling", "output": "⠎⠉⠗â â ºâ ‡â Œ" }, { "input": "scrawls", "output": "⠎⠉⠗â â ºâ ‡â Ž" }, { "input": "scrawly", "output": "⠎⠉⠗â â ºâ ‡â ½" }, { "input": "scrawnier", "output": "⠎⠉⠗â â ºâ â Šâ »" }, { "input": "scrawniest", "output": "⠎⠉⠗â â ºâ â Šâ ‘â Œ" }, { "input": "scrawniness", "output": "⠎⠉⠗â â ºâ â Šâ °â Ž" }, { "input": "scrawniness's", "output": "⠎⠉⠗â â ºâ â Šâ °â Žâ „â Ž" }, { "input": "scrawny", "output": "⠎⠉⠗â â ºâ â ½" }, { "input": "scream", "output": "⠎⠉⠗⠂â " }, { "input": "scream's", "output": "⠎⠉⠗⠂â â „â Ž" }, { "input": "screamed", "output": "⠎⠉⠗⠂â â «" }, { "input": "screamer", "output": "⠎⠉⠗⠂â â »" }, { "input": "screamer's", "output": "⠎⠉⠗⠂â â »â „â Ž" }, { "input": "screamers", "output": "⠎⠉⠗⠂â â »â Ž" }, { "input": "screaming", "output": "⠎⠉⠗⠂â â Œ" }, { "input": "screams", "output": "⠎⠉⠗⠂â â Ž" }, { "input": "screech", "output": "⠎⠉⠗⠑⠑⠡" }, { "input": "screech's", "output": "⠎⠉⠗⠑⠑⠡⠄⠎" }, { "input": "screeched", "output": "⠎⠉⠗⠑⠑⠡⠫" }, { "input": "screeches", "output": "⠎⠉⠗⠑⠑⠡⠑⠎" }, { "input": "screechier", "output": "⠎⠉⠗⠑⠑⠡⠊⠻" }, { "input": "screechiest", "output": "⠎⠉⠗⠑⠑⠡⠊⠑⠌" }, { "input": "screeching", "output": "⠎⠉⠗⠑⠑⠡⠌" }, { "input": "screechy", "output": "⠎⠉⠗⠑⠑⠡⠽" }, { "input": "screen", "output": "⠎⠉⠗⠑⠢" }, { "input": "screen's", "output": "⠎⠉⠗⠑⠢⠄⠎" }, { "input": "screened", "output": "⠎⠉⠗⠑⠢⠫" }, { "input": "screening", "output": "⠎⠉⠗⠑⠢⠌" }, { "input": "screening's", "output": "⠎⠉⠗⠑⠢⠌⠄⠎" }, { "input": "screenings", "output": "⠎⠉⠗⠑⠢⠌⠎" }, { "input": "screenplay", "output": "⠎⠉⠗⠑⠢â â ‡â â ½" }, { "input": "screenplay's", "output": "⠎⠉⠗⠑⠢â â ‡â â ½â „â Ž" }, { "input": "screenplays", "output": "⠎⠉⠗⠑⠢â â ‡â â ½â Ž" }, { "input": "screens", "output": "⠎⠉⠗⠑⠢⠎" }, { "input": "screenwriter", "output": "⠎⠉⠗⠑⠢⠺⠗⠊⠞⠻" }, { "input": "screenwriter's", "output": "⠎⠉⠗⠑⠢⠺⠗⠊⠞⠻⠄⠎" }, { "input": "screenwriters", "output": "⠎⠉⠗⠑⠢⠺⠗⠊⠞⠻⠎" }, { "input": "screenwriting's", "output": "⠎⠉⠗⠑⠢⠺⠗⠊⠞⠌⠄⠎" }, { "input": "screw", "output": "⠎⠉⠗⠑⠺" }, { "input": "screw's", "output": "⠎⠉⠗⠑⠺⠄⠎" }, { "input": "screwball", "output": "⠎⠉⠗⠑⠺⠃â â ‡â ‡" }, { "input": "screwball's", "output": "⠎⠉⠗⠑⠺⠃â â ‡â ‡â „â Ž" }, { "input": "screwballs", "output": "⠎⠉⠗⠑⠺⠃â â ‡â ‡â Ž" }, { "input": "screwdriver", "output": "⠎⠉⠗⠑⠺⠙⠗⠊⠧⠻" }, { "input": "screwdriver's", "output": "⠎⠉⠗⠑⠺⠙⠗⠊⠧⠻⠄⠎" }, { "input": "screwdrivers", "output": "⠎⠉⠗⠑⠺⠙⠗⠊⠧⠻⠎" }, { "input": "screwed", "output": "⠎⠉⠗⠑⠺⠫" }, { "input": "screwier", "output": "⠎⠉⠗⠑⠺⠊⠻" }, { "input": "screwiest", "output": "⠎⠉⠗⠑⠺⠊⠑⠌" }, { "input": "screwiness", "output": "⠎⠉⠗⠑⠺⠊⠰⠎" }, { "input": "screwiness's", "output": "⠎⠉⠗⠑⠺⠊⠰⠎⠄⠎" }, { "input": "screwing", "output": "⠎⠉⠗⠑⠺⠌" }, { "input": "screws", "output": "⠎⠉⠗⠑⠺⠎" }, { "input": "screwworm", "output": "⠎⠉⠗⠑⠺⠺⠕⠗â " }, { "input": "screwworm's", "output": "⠎⠉⠗⠑⠺⠺⠕⠗â â „â Ž" }, { "input": "screwworms", "output": "⠎⠉⠗⠑⠺⠺⠕⠗â â Ž" }, { "input": "screwy", "output": "⠎⠉⠗⠑⠺⠽" }, { "input": "scribal", "output": "⠎⠉⠗⠊⠃â â ‡" }, { "input": "scribble", "output": "⠎⠉⠗⠊⠃⠼" }, { "input": "scribble's", "output": "⠎⠉⠗⠊⠃⠼⠄⠎" }, { "input": "scribbled", "output": "⠎⠉⠗⠊⠃⠼⠙" }, { "input": "scribbler", "output": "⠎⠉⠗⠊⠃⠼⠗" }, { "input": "scribbler's", "output": "⠎⠉⠗⠊⠃⠼⠗⠄⠎" }, { "input": "scribblers", "output": "⠎⠉⠗⠊⠃⠼⠗⠎" }, { "input": "scribbles", "output": "⠎⠉⠗⠊⠃⠼⠎" }, { "input": "scribbling", "output": "⠎⠉⠗⠊⠆⠇⠌" }, { "input": "scribe", "output": "⠎⠉⠗⠊⠃⠑" }, { "input": "scribe's", "output": "⠎⠉⠗⠊⠃⠑⠄⠎" }, { "input": "scribes", "output": "⠎⠉⠗⠊⠃⠑⠎" }, { "input": "scrim", "output": "⠎⠉⠗⠊â " }, { "input": "scrim's", "output": "⠎⠉⠗⠊â â „â Ž" }, { "input": "scrimmage", "output": "⠎⠉⠗⠊â â â â ›â ‘" }, { "input": "scrimmage's", "output": "⠎⠉⠗⠊â â â â ›â ‘â „â Ž" }, { "input": "scrimmaged", "output": "⠎⠉⠗⠊â â â â ›â «" }, { "input": "scrimmages", "output": "⠎⠉⠗⠊â â â â ›â ‘â Ž" }, { "input": "scrimmaging", "output": "⠎⠉⠗⠊â â â â ›â Œ" }, { "input": "scrimp", "output": "⠎⠉⠗⠊â â " }, { "input": "scrimped", "output": "⠎⠉⠗⠊â â â «" }, { "input": "scrimping", "output": "⠎⠉⠗⠊â â â Œ" }, { "input": "scrimps", "output": "⠎⠉⠗⠊â â â Ž" }, { "input": "scrims", "output": "⠎⠉⠗⠊â â Ž" }, { "input": "scrimshaw", "output": "⠎⠉⠗⠊â â ©â â º" }, { "input": "scrimshaw's", "output": "⠎⠉⠗⠊â â ©â â ºâ „â Ž" }, { "input": "scrimshawed", "output": "⠎⠉⠗⠊â â ©â â ºâ «" }, { "input": "scrimshawing", "output": "⠎⠉⠗⠊â â ©â â ºâ Œ" }, { "input": "scrimshaws", "output": "⠎⠉⠗⠊â â ©â â ºâ Ž" }, { "input": "scrip", "output": "⠎⠉⠗⠊â " }, { "input": "scrip's", "output": "⠎⠉⠗⠊â â „â Ž" }, { "input": "scrips", "output": "⠎⠉⠗⠊â â Ž" }, { "input": "script", "output": "⠎⠉⠗⠊â â ž" }, { "input": "script's", "output": "⠎⠉⠗⠊â â žâ „â Ž" }, { "input": "scripted", "output": "⠎⠉⠗⠊â â žâ «" }, { "input": "scripting", "output": "⠎⠉⠗⠊â â žâ Œ" }, { "input": "scripts", "output": "⠎⠉⠗⠊â â žâ Ž" }, { "input": "scriptural", "output": "⠎⠉⠗⠊â â žâ ¥â —â â ‡" }, { "input": "scripture", "output": "⠎⠉⠗⠊â â žâ ¥â —â ‘" }, { "input": "scripture's", "output": "⠎⠉⠗⠊â â žâ ¥â —â ‘â „â Ž" }, { "input": "scriptures", "output": "⠎⠉⠗⠊â â žâ ¥â —â ‘â Ž" }, { "input": "scriptwriter", "output": "⠎⠉⠗⠊â â žâ ºâ —â Šâ žâ »" }, { "input": "scriptwriter's", "output": "⠎⠉⠗⠊â â žâ ºâ —⠊⠞⠻⠄⠎" }, { "input": "scriptwriters", "output": "⠎⠉⠗⠊â â žâ ºâ —⠊⠞⠻⠎" }, { "input": "scrivener", "output": "⠎⠉⠗⠊⠧⠢⠻" }, { "input": "scrivener's", "output": "⠎⠉⠗⠊⠧⠢⠻⠄⠎" }, { "input": "scriveners", "output": "⠎⠉⠗⠊⠧⠢⠻⠎" }, { "input": "scrod", "output": "⠎⠉⠗⠕⠙" }, { "input": "scrod's", "output": "⠎⠉⠗⠕⠙⠄⠎" }, { "input": "scrofula", "output": "⠎⠉⠗⠷⠥⠇â " }, { "input": "scrofula's", "output": "⠎⠉⠗⠷⠥⠇â â „â Ž" }, { "input": "scrofulous", "output": "⠎⠉⠗⠷⠥⠇⠳⠎" }, { "input": "scroll", "output": "⠎⠉⠗⠕⠇⠇" }, { "input": "scroll's", "output": "⠎⠉⠗⠕⠇⠇⠄⠎" }, { "input": "scrolled", "output": "⠎⠉⠗⠕⠇⠇⠫" }, { "input": "scrolling", "output": "⠎⠉⠗⠕⠇⠇⠌" }, { "input": "scrolls", "output": "⠎⠉⠗⠕⠇⠇⠎" }, { "input": "scrooge", "output": "⠎⠉⠗⠕⠕⠛⠑" }, { "input": "scrooge's", "output": "⠎⠉⠗⠕⠕⠛⠑⠄⠎" }, { "input": "scrooges", "output": "⠎⠉⠗⠕⠕⠛⠑⠎" }, { "input": "scrota", "output": "⠎⠉⠗⠕⠞â " }, { "input": "scrotal", "output": "⠎⠉⠗⠕⠞â â ‡" }, { "input": "scrotum", "output": "⠎⠉⠗⠕⠞⠥â " }, { "input": "scrotum's", "output": "⠎⠉⠗⠕⠞⠥â â „â Ž" }, { "input": "scrounge", "output": "⠎⠉⠗⠳â â ›â ‘" }, { "input": "scrounged", "output": "⠎⠉⠗⠳â â ›â «" }, { "input": "scrounger", "output": "⠎⠉⠗⠳â â ›â »" }, { "input": "scrounger's", "output": "⠎⠉⠗⠳â â ›â »â „â Ž" }, { "input": "scroungers", "output": "⠎⠉⠗⠳â â ›â »â Ž" }, { "input": "scrounges", "output": "⠎⠉⠗⠳â â ›â ‘â Ž" }, { "input": "scroungier", "output": "⠎⠉⠗⠳â â ›â Šâ »" }, { "input": "scroungiest", "output": "⠎⠉⠗⠳â â ›â Šâ ‘â Œ" }, { "input": "scrounging", "output": "⠎⠉⠗⠳â â ›â Œ" }, { "input": "scroungy", "output": "⠎⠉⠗⠳â â ›â ½" }, { "input": "scrub", "output": "⠎⠉⠗⠥⠃" }, { "input": "scrub's", "output": "⠎⠉⠗⠥⠃⠄⠎" }, { "input": "scrubbed", "output": "⠎⠉⠗⠥⠆⠫" }, { "input": "scrubber", "output": "⠎⠉⠗⠥⠆⠻" }, { "input": "scrubber's", "output": "⠎⠉⠗⠥⠆⠻⠄⠎" }, { "input": "scrubbers", "output": "⠎⠉⠗⠥⠆⠻⠎" }, { "input": "scrubbier", "output": "⠎⠉⠗⠥⠆⠊⠻" }, { "input": "scrubbiest", "output": "⠎⠉⠗⠥⠆⠊⠑⠌" }, { "input": "scrubbing", "output": "⠎⠉⠗⠥⠆⠌" }, { "input": "scrubby", "output": "⠎⠉⠗⠥⠆⠽" }, { "input": "scrubs", "output": "⠎⠉⠗⠥⠃⠎" }, { "input": "scruff", "output": "⠎⠉⠗⠥⠋⠋" }, { "input": "scruff's", "output": "⠎⠉⠗⠥⠋⠋⠄⠎" }, { "input": "scruffier", "output": "⠎⠉⠗⠥⠖⠊⠻" }, { "input": "scruffiest", "output": "⠎⠉⠗⠥⠖⠊⠑⠌" }, { "input": "scruffiness's", "output": "⠎⠉⠗⠥⠖⠊⠰⠎⠄⠎" }, { "input": "scruffs", "output": "⠎⠉⠗⠥⠖⠎" }, { "input": "scruffy", "output": "⠎⠉⠗⠥⠖⠽" }, { "input": "scrumptious", "output": "⠎⠉⠗⠥â â â žâ Šâ ³â Ž" }, { "input": "scrumptiously", "output": "⠎⠉⠗⠥â â â žâ Šâ ³â Žâ ‡â ½" }, { "input": "scrunch", "output": "⠎⠉⠗⠥â â ¡" }, { "input": "scrunch's", "output": "⠎⠉⠗⠥â â ¡â „â Ž" }, { "input": "scrunched", "output": "⠎⠉⠗⠥â â ¡â «" }, { "input": "scrunches", "output": "⠎⠉⠗⠥â â ¡â ‘â Ž" }, { "input": "scrunching", "output": "⠎⠉⠗⠥â â ¡â Œ" }, { "input": "scruple", "output": "⠎⠉⠗⠥â â ‡â ‘" }, { "input": "scruple's", "output": "⠎⠉⠗⠥â â ‡â ‘â „â Ž" }, { "input": "scrupled", "output": "⠎⠉⠗⠥â â ‡â «" }, { "input": "scruples", "output": "⠎⠉⠗⠥â â ‡â ‘â Ž" }, { "input": "scrupling", "output": "⠎⠉⠗⠥â â ‡â Œ" }, { "input": "scrupulosity", "output": "⠎⠉⠗⠥â â ¥â ‡â •â Žâ °â ½" }, { "input": "scrupulosity's", "output": "⠎⠉⠗⠥â â ¥â ‡â •⠎⠰⠽⠄⠎" }, { "input": "scrupulous", "output": "⠎⠉⠗⠥â â ¥â ‡â ³â Ž" }, { "input": "scrupulously", "output": "⠎⠉⠗⠥â â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "scrupulousness", "output": "⠎⠉⠗⠥â â ¥â ‡â ³â Žâ °â Ž" }, { "input": "scrupulousness's", "output": "⠎⠉⠗⠥â â ¥â ‡â ³â Žâ °â Žâ „â Ž" }, { "input": "scrutinize", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠑" }, { "input": "scrutinized", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠫" }, { "input": "scrutinizes", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠑⠎" }, { "input": "scrutinizing", "output": "⠎⠉⠗⠥⠞⠔⠊⠵⠌" }, { "input": "scrutiny", "output": "⠎⠉⠗⠥⠞⠔⠽" }, { "input": "scrutiny's", "output": "⠎⠉⠗⠥⠞⠔⠽⠄⠎" }, { "input": "scuba", "output": "⠎⠉⠥⠃â " }, { "input": "scuba's", "output": "⠎⠉⠥⠃â â „â Ž" }, { "input": "scubaed", "output": "⠎⠉⠥⠃â â «" }, { "input": "scubaing", "output": "⠎⠉⠥⠃â â Œ" }, { "input": "scubas", "output": "⠎⠉⠥⠃â â Ž" }, { "input": "scud", "output": "⠎⠉⠥⠙" }, { "input": "scud's", "output": "⠎⠉⠥⠙⠄⠎" }, { "input": "scudded", "output": "⠎⠉⠥⠲⠫" }, { "input": "scudding", "output": "⠎⠉⠥⠲⠌" }, { "input": "scuds", "output": "⠎⠉⠥⠙⠎" }, { "input": "scuff", "output": "⠎⠉⠥⠋⠋" }, { "input": "scuff's", "output": "⠎⠉⠥⠋⠋⠄⠎" }, { "input": "scuffed", "output": "⠎⠉⠥⠖⠫" }, { "input": "scuffing", "output": "⠎⠉⠥⠖⠌" }, { "input": "scuffle", "output": "⠎⠉⠥⠖⠇⠑" }, { "input": "scuffle's", "output": "⠎⠉⠥⠖⠇⠑⠄⠎" }, { "input": "scuffled", "output": "⠎⠉⠥⠖⠇⠫" }, { "input": "scuffles", "output": "⠎⠉⠥⠖⠇⠑⠎" }, { "input": "scuffling", "output": "⠎⠉⠥⠖⠇⠌" }, { "input": "scuffs", "output": "⠎⠉⠥⠖⠎" }, { "input": "scull", "output": "⠎⠉⠥⠇⠇" }, { "input": "scull's", "output": "⠎⠉⠥⠇⠇⠄⠎" }, { "input": "sculled", "output": "⠎⠉⠥⠇⠇⠫" }, { "input": "sculler", "output": "⠎⠉⠥⠇⠇⠻" }, { "input": "sculler's", "output": "⠎⠉⠥⠇⠇⠻⠄⠎" }, { "input": "sculleries", "output": "⠎⠉⠥⠇⠇⠻⠊⠑⠎" }, { "input": "scullers", "output": "⠎⠉⠥⠇⠇⠻⠎" }, { "input": "scullery", "output": "⠎⠉⠥⠇⠇⠻⠽" }, { "input": "scullery's", "output": "⠎⠉⠥⠇⠇⠻⠽⠄⠎" }, { "input": "sculling", "output": "⠎⠉⠥⠇⠇⠌" }, { "input": "scullion", "output": "⠎⠉⠥⠇⠇⠊⠕â " }, { "input": "scullion's", "output": "⠎⠉⠥⠇⠇⠊⠕â â „â Ž" }, { "input": "scullions", "output": "⠎⠉⠥⠇⠇⠊⠕â â Ž" }, { "input": "sculls", "output": "⠎⠉⠥⠇⠇⠎" }, { "input": "sculpt", "output": "⠎⠉⠥⠇â â ž" }, { "input": "sculpted", "output": "⠎⠉⠥⠇â â žâ «" }, { "input": "sculpting", "output": "⠎⠉⠥⠇â â žâ Œ" }, { "input": "sculptor", "output": "⠎⠉⠥⠇â â žâ •â —" }, { "input": "sculptor's", "output": "⠎⠉⠥⠇â â žâ •â —â „â Ž" }, { "input": "sculptors", "output": "⠎⠉⠥⠇â â žâ •â —â Ž" }, { "input": "sculptress", "output": "⠎⠉⠥⠇â â žâ —â ‘â Žâ Ž" }, { "input": "sculptress's", "output": "⠎⠉⠥⠇â â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "sculptresses", "output": "⠎⠉⠥⠇â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "sculpts", "output": "⠎⠉⠥⠇â â žâ Ž" }, { "input": "sculptural", "output": "⠎⠉⠥⠇â â žâ ¥â —â â ‡" }, { "input": "sculpture", "output": "⠎⠉⠥⠇â â žâ ¥â —â ‘" }, { "input": "sculpture's", "output": "⠎⠉⠥⠇â â žâ ¥â —â ‘â „â Ž" }, { "input": "sculptured", "output": "⠎⠉⠥⠇â â žâ ¥â —â «" }, { "input": "sculptures", "output": "⠎⠉⠥⠇â â žâ ¥â —â ‘â Ž" }, { "input": "sculpturing", "output": "⠎⠉⠥⠇â â žâ ¥â —â Œ" }, { "input": "scum", "output": "⠎⠉⠥â " }, { "input": "scum's", "output": "⠎⠉⠥â â „â Ž" }, { "input": "scumbag", "output": "⠎⠉⠥â â ƒâ â ›" }, { "input": "scumbag's", "output": "⠎⠉⠥â â ƒâ â ›â „â Ž" }, { "input": "scumbags", "output": "⠎⠉⠥â â ƒâ â ›â Ž" }, { "input": "scummed", "output": "⠎⠉⠥â â â «" }, { "input": "scummier", "output": "⠎⠉⠥â â â Šâ »" }, { "input": "scummiest", "output": "⠎⠉⠥â â â Šâ ‘â Œ" }, { "input": "scumming", "output": "⠎⠉⠥â â â Œ" }, { "input": "scummy", "output": "⠎⠉⠥â â â ½" }, { "input": "scums", "output": "⠎⠉⠥â â Ž" }, { "input": "scupper", "output": "⠎⠉⠥â â â »" }, { "input": "scupper's", "output": "⠎⠉⠥â â â »â „â Ž" }, { "input": "scuppered", "output": "⠎⠉⠥â â â »â «" }, { "input": "scuppering", "output": "⠎⠉⠥â â â »â Œ" }, { "input": "scuppers", "output": "⠎⠉⠥â â â »â Ž" }, { "input": "scurf", "output": "⠎⠉⠥⠗⠋" }, { "input": "scurf's", "output": "⠎⠉⠥⠗⠋⠄⠎" }, { "input": "scurfier", "output": "⠎⠉⠥⠗⠋⠊⠻" }, { "input": "scurfiest", "output": "⠎⠉⠥⠗⠋⠊⠑⠌" }, { "input": "scurfy", "output": "⠎⠉⠥⠗⠋⠽" }, { "input": "scurried", "output": "⠎⠉⠥⠗⠗⠊⠫" }, { "input": "scurries", "output": "⠎⠉⠥⠗⠗⠊⠑⠎" }, { "input": "scurrility", "output": "⠎⠉⠥⠗⠗⠊⠇⠰⠽" }, { "input": "scurrility's", "output": "⠎⠉⠥⠗⠗⠊⠇⠰⠽⠄⠎" }, { "input": "scurrilous", "output": "⠎⠉⠥⠗⠗⠊⠇⠳⠎" }, { "input": "scurrilously", "output": "⠎⠉⠥⠗⠗⠊⠇⠳⠎⠇⠽" }, { "input": "scurrilousness", "output": "⠎⠉⠥⠗⠗⠊⠇⠳⠎⠰⠎" }, { "input": "scurrilousness's", "output": "⠎⠉⠥⠗⠗⠊⠇⠳⠎⠰⠎⠄⠎" }, { "input": "scurry", "output": "⠎⠉⠥⠗⠗⠽" }, { "input": "scurry's", "output": "⠎⠉⠥⠗⠗⠽⠄⠎" }, { "input": "scurrying", "output": "⠎⠉⠥⠗⠗⠽⠌" }, { "input": "scurvier", "output": "⠎⠉⠥⠗⠧⠊⠻" }, { "input": "scurviest", "output": "⠎⠉⠥⠗⠧⠊⠑⠌" }, { "input": "scurvily", "output": "⠎⠉⠥⠗⠧⠊⠇⠽" }, { "input": "scurvy", "output": "⠎⠉⠥⠗⠧⠽" }, { "input": "scurvy's", "output": "⠎⠉⠥⠗⠧⠽⠄⠎" }, { "input": "scutcheon", "output": "⠎⠉⠥⠞⠡⠑⠕â " }, { "input": "scutcheon's", "output": "⠎⠉⠥⠞⠡⠑⠕â â „â Ž" }, { "input": "scutcheons", "output": "⠎⠉⠥⠞⠡⠑⠕â â Ž" }, { "input": "scuttle", "output": "⠎⠉⠥⠞⠞⠇⠑" }, { "input": "scuttle's", "output": "⠎⠉⠥⠞⠞⠇⠑⠄⠎" }, { "input": "scuttlebutt", "output": "⠎⠉⠥⠞⠞⠇⠑⠃⠥⠞⠞" }, { "input": "scuttlebutt's", "output": "⠎⠉⠥⠞⠞⠇⠑⠃⠥⠞⠞⠄⠎" }, { "input": "scuttled", "output": "⠎⠉⠥⠞⠞⠇⠫" }, { "input": "scuttles", "output": "⠎⠉⠥⠞⠞⠇⠑⠎" }, { "input": "scuttling", "output": "⠎⠉⠥⠞⠞⠇⠌" }, { "input": "scuzzier", "output": "⠎⠉⠥⠵⠵⠊⠻" }, { "input": "scuzziest", "output": "⠎⠉⠥⠵⠵⠊⠑⠌" }, { "input": "scuzzy", "output": "⠎⠉⠥⠵⠵⠽" }, { "input": "scythe", "output": "⠎⠉⠽⠮" }, { "input": "scythe's", "output": "⠎⠉⠽⠮⠄⠎" }, { "input": "scythed", "output": "⠎⠉⠽⠮⠙" }, { "input": "scythes", "output": "⠎⠉⠽⠮⠎" }, { "input": "scything", "output": "⠎⠉⠽⠹⠌" }, { "input": "sea", "output": "â Žâ ‘â " }, { "input": "sea's", "output": "â Žâ ‘â â „â Ž" }, { "input": "seabed", "output": "⠎⠂⠃⠫" }, { "input": "seabed's", "output": "⠎⠂⠃⠫⠄⠎" }, { "input": "seabeds", "output": "⠎⠂⠃⠫⠎" }, { "input": "seabird", "output": "⠎⠂⠃⠊⠗⠙" }, { "input": "seabird's", "output": "⠎⠂⠃⠊⠗⠙⠄⠎" }, { "input": "seabirds", "output": "⠎⠂⠃⠊⠗⠙⠎" }, { "input": "seaboard", "output": "⠎⠂⠃⠕⠜⠙" }, { "input": "seaboard's", "output": "⠎⠂⠃⠕⠜⠙⠄⠎" }, { "input": "seaboards", "output": "⠎⠂⠃⠕⠜⠙⠎" }, { "input": "seacoast", "output": "⠎⠂⠉⠕â â Œ" }, { "input": "seacoast's", "output": "⠎⠂⠉⠕â â Œâ „â Ž" }, { "input": "seacoasts", "output": "⠎⠂⠉⠕â â Œâ Ž" }, { "input": "seafarer", "output": "⠎⠂⠋⠜⠻" }, { "input": "seafarer's", "output": "⠎⠂⠋⠜⠻⠄⠎" }, { "input": "seafarers", "output": "⠎⠂⠋⠜⠻⠎" }, { "input": "seafaring", "output": "⠎⠂⠋⠜⠌" }, { "input": "seafaring's", "output": "⠎⠂⠋⠜⠌⠄⠎" }, { "input": "seafloor's", "output": "⠎⠂⠋⠇⠕⠕⠗⠄⠎" }, { "input": "seafloors", "output": "⠎⠂⠋⠇⠕⠕⠗⠎" }, { "input": "seafood", "output": "â Žâ ‚â ‹â •â •â ™" }, { "input": "seafood's", "output": "⠎⠂⠋⠕⠕⠙⠄⠎" }, { "input": "seagoing", "output": "⠎⠂⠛⠕⠌" }, { "input": "seal", "output": "â Žâ ‚â ‡" }, { "input": "seal's", "output": "⠎⠂⠇⠄⠎" }, { "input": "sealant", "output": "â Žâ ‚â ‡â â â ž" }, { "input": "sealant's", "output": "â Žâ ‚â ‡â â â žâ „â Ž" }, { "input": "sealants", "output": "â Žâ ‚â ‡â â â žâ Ž" }, { "input": "sealed", "output": "⠎⠂⠇⠫" }, { "input": "sealer", "output": "⠎⠂⠇⠻" }, { "input": "sealer's", "output": "⠎⠂⠇⠻⠄⠎" }, { "input": "sealers", "output": "⠎⠂⠇⠻⠎" }, { "input": "sealing", "output": "⠎⠂⠇⠌" }, { "input": "seals", "output": "⠎⠂⠇⠎" }, { "input": "sealskin", "output": "⠎⠂⠇⠎⠅⠔" }, { "input": "sealskin's", "output": "⠎⠂⠇⠎⠅⠔⠄⠎" }, { "input": "seam", "output": "â Žâ ‚â " }, { "input": "seam's", "output": "â Žâ ‚â â „â Ž" }, { "input": "seaman", "output": "â Žâ ‚â â â " }, { "input": "seaman's", "output": "â Žâ ‚â â â â „â Ž" }, { "input": "seamanship", "output": "â Žâ ‚â â â â ©â Šâ " }, { "input": "seamanship's", "output": "â Žâ ‚â â â â ©â Šâ â „â Ž" }, { "input": "seamed", "output": "â Žâ ‚â â «" }, { "input": "seamen", "output": "â Žâ ‚â â ¢" }, { "input": "seamier", "output": "â Žâ ‚â â Šâ »" }, { "input": "seamiest", "output": "â Žâ ‚â â Šâ ‘â Œ" }, { "input": "seaming", "output": "â Žâ ‚â â Œ" }, { "input": "seamless", "output": "â Žâ ‚â â ¨â Ž" }, { "input": "seams", "output": "â Žâ ‚â â Ž" }, { "input": "seamstress", "output": "â Žâ ‚â â Œâ —â ‘â Žâ Ž" }, { "input": "seamstress's", "output": "â Žâ ‚â â Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "seamstresses", "output": "â Žâ ‚â â Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "seamy", "output": "â Žâ ‚â â ½" }, { "input": "seaplane", "output": "â Žâ ‚â â ‡â â â ‘" }, { "input": "seaplane's", "output": "â Žâ ‚â â ‡â â â ‘â „â Ž" }, { "input": "seaplanes", "output": "â Žâ ‚â â ‡â â â ‘â Ž" }, { "input": "seaport", "output": "â Žâ ‚â â •â —â ž" }, { "input": "seaport's", "output": "â Žâ ‚â â •â —â žâ „â Ž" }, { "input": "seaports", "output": "â Žâ ‚â â •â —â žâ Ž" }, { "input": "sear", "output": "â Žâ ‘â œ" }, { "input": "sear's", "output": "⠎⠑⠜⠄⠎" }, { "input": "search", "output": "⠎⠑⠜⠡" }, { "input": "search's", "output": "⠎⠑⠜⠡⠄⠎" }, { "input": "searched", "output": "⠎⠑⠜⠡⠫" }, { "input": "searcher", "output": "⠎⠑⠜⠡⠻" }, { "input": "searcher's", "output": "⠎⠑⠜⠡⠻⠄⠎" }, { "input": "searchers", "output": "⠎⠑⠜⠡⠻⠎" }, { "input": "searches", "output": "⠎⠑⠜⠡⠑⠎" }, { "input": "searching", "output": "⠎⠑⠜⠡⠌" }, { "input": "searchingly", "output": "⠎⠑⠜⠡⠌⠇⠽" }, { "input": "searchlight", "output": "⠎⠑⠜⠡⠇⠊⠣⠞" }, { "input": "searchlight's", "output": "⠎⠑⠜⠡⠇⠊⠣⠞⠄⠎" }, { "input": "searchlights", "output": "⠎⠑⠜⠡⠇⠊⠣⠞⠎" }, { "input": "seared", "output": "⠎⠑⠜⠫" }, { "input": "searing", "output": "⠎⠑⠜⠌" }, { "input": "sears", "output": "⠎⠑⠜⠎" }, { "input": "seas", "output": "â Žâ ‚â Ž" }, { "input": "seascape", "output": "â Žâ ‚â Žâ ‰â â â ‘" }, { "input": "seascape's", "output": "â Žâ ‚â Žâ ‰â â â ‘â „â Ž" }, { "input": "seascapes", "output": "â Žâ ‚â Žâ ‰â â â ‘â Ž" }, { "input": "seashell", "output": "⠎⠂⠩⠑⠇⠇" }, { "input": "seashell's", "output": "⠎⠂⠩⠑⠇⠇⠄⠎" }, { "input": "seashells", "output": "⠎⠂⠩⠑⠇⠇⠎" }, { "input": "seashore", "output": "â Žâ ‚â ©â •â —â ‘" }, { "input": "seashore's", "output": "â Žâ ‚â ©â •â —â ‘â „â Ž" }, { "input": "seashores", "output": "â Žâ ‚â ©â •â —â ‘â Ž" }, { "input": "seasick", "output": "⠎⠂⠎⠊⠉⠅" }, { "input": "seasickness", "output": "⠎⠂⠎⠊⠉⠅⠰⠎" }, { "input": "seasickness's", "output": "⠎⠂⠎⠊⠉⠅⠰⠎⠄⠎" }, { "input": "seaside", "output": "⠎⠂⠎⠊⠙⠑" }, { "input": "seaside's", "output": "⠎⠂⠎⠊⠙⠑⠄⠎" }, { "input": "seasides", "output": "⠎⠂⠎⠊⠙⠑⠎" }, { "input": "season", "output": "â Žâ ‚â Žâ •â " }, { "input": "season's", "output": "â Žâ ‚â Žâ •â â „â Ž" }, { "input": "seasonable", "output": "â Žâ ‚â Žâ •â â â ¼" }, { "input": "seasonably", "output": "â Žâ ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "seasonal", "output": "â Žâ ‚â Žâ •â â â ‡" }, { "input": "seasonally", "output": "â Žâ ‚â Žâ •â â  â ½" }, { "input": "seasoned", "output": "â Žâ ‚â Žâ •â â «" }, { "input": "seasoning", "output": "â Žâ ‚â Žâ •â â Œ" }, { "input": "seasoning's", "output": "â Žâ ‚â Žâ •â â Œâ „â Ž" }, { "input": "seasonings", "output": "â Žâ ‚â Žâ •â â Œâ Ž" }, { "input": "seasons", "output": "â Žâ ‚â Žâ •â â Ž" }, { "input": "seat", "output": "â Žâ ‚â ž" }, { "input": "seat's", "output": "â Žâ ‚â žâ „â Ž" }, { "input": "seated", "output": "â Žâ ‚â žâ «" }, { "input": "seating", "output": "â Žâ ‚â žâ Œ" }, { "input": "seating's", "output": "⠎⠂⠞⠌⠄⠎" }, { "input": "seatmate", "output": "â Žâ ‚â žâ â â žâ ‘" }, { "input": "seatmate's", "output": "â Žâ ‚â žâ â â žâ ‘â „â Ž" }, { "input": "seatmates", "output": "â Žâ ‚â žâ â â žâ ‘â Ž" }, { "input": "seats", "output": "â Žâ ‚â žâ Ž" }, { "input": "seawall", "output": "â Žâ ‚â ºâ â ‡â ‡" }, { "input": "seawall's", "output": "â Žâ ‚â ºâ â ‡â ‡â „â Ž" }, { "input": "seawalls", "output": "â Žâ ‚â ºâ â ‡â ‡â Ž" }, { "input": "seaward", "output": "⠎⠂⠺⠜⠙" }, { "input": "seaward's", "output": "⠎⠂⠺⠜⠙⠄⠎" }, { "input": "seawards", "output": "⠎⠂⠺⠜⠙⠎" }, { "input": "seawater", "output": "â Žâ ‚â ºâ â žâ »" }, { "input": "seawater's", "output": "â Žâ ‚â ºâ â žâ »â „â Ž" }, { "input": "seaway", "output": "â Žâ ‚â ºâ â ½" }, { "input": "seaway's", "output": "â Žâ ‚â ºâ â ½â „â Ž" }, { "input": "seaways", "output": "â Žâ ‚â ºâ â ½â Ž" }, { "input": "seaweed", "output": "⠎⠂⠺⠑⠫" }, { "input": "seaweed's", "output": "⠎⠂⠺⠑⠫⠄⠎" }, { "input": "seaworthier", "output": "⠎⠂⠺⠕⠗⠹⠊⠻" }, { "input": "seaworthiest", "output": "⠎⠂⠺⠕⠗⠹⠊⠑⠌" }, { "input": "seaworthiness's", "output": "⠎⠂⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "seaworthy", "output": "⠎⠂⠺⠕⠗⠹⠽" }, { "input": "sebaceous", "output": "â Žâ ‘â ƒâ â ‰â ‘⠳⠎" }, { "input": "seborrhea", "output": "⠎⠑⠃⠕⠗⠗⠓⠑â " }, { "input": "seborrhea's", "output": "⠎⠑⠃⠕⠗⠗⠓⠑â â „â Ž" }, { "input": "sec's", "output": "⠎⠑⠉⠄⠎" }, { "input": "secant", "output": "â Žâ ‘â ‰â â â ž" }, { "input": "secant's", "output": "â Žâ ‘â ‰â â â žâ „â Ž" }, { "input": "secants", "output": "â Žâ ‘â ‰â â â žâ Ž" }, { "input": "secede", "output": "⠎⠑⠉⠫⠑" }, { "input": "seceded", "output": "⠎⠑⠉⠫⠫" }, { "input": "secedes", "output": "⠎⠑⠉⠫⠑⠎" }, { "input": "seceding", "output": "⠎⠑⠉⠫⠌" }, { "input": "secession", "output": "⠎⠑⠉⠑⠎⠨â " }, { "input": "secession's", "output": "⠎⠑⠉⠑⠎⠨â â „â Ž" }, { "input": "secessionist", "output": "⠎⠑⠉⠑⠎⠨â â Šâ Œ" }, { "input": "secessionist's", "output": "⠎⠑⠉⠑⠎⠨â â Šâ Œâ „â Ž" }, { "input": "secessionists", "output": "⠎⠑⠉⠑⠎⠨â â Šâ Œâ Ž" }, { "input": "seclude", "output": "⠎⠑⠉⠇⠥⠙⠑" }, { "input": "secluded", "output": "⠎⠑⠉⠇⠥⠙⠫" }, { "input": "secludes", "output": "⠎⠑⠉⠇⠥⠙⠑⠎" }, { "input": "secluding", "output": "⠎⠑⠉⠇⠥⠙⠌" }, { "input": "seclusion", "output": "⠎⠑⠉⠇⠥⠨â " }, { "input": "seclusion's", "output": "⠎⠑⠉⠇⠥⠨â â „â Ž" }, { "input": "seclusive", "output": "⠎⠑⠉⠇⠥⠎⠊⠧⠑" }, { "input": "second", "output": "⠎⠑⠉⠕â â ™" }, { "input": "second's", "output": "⠎⠑⠉⠕â â ™â „â Ž" }, { "input": "secondaries", "output": "⠎⠑⠉⠕â â ™â œâ Šâ ‘â Ž" }, { "input": "secondarily", "output": "⠎⠑⠉⠕â â ™â œâ Šâ ‡â ½" }, { "input": "secondary", "output": "⠎⠑⠉⠕â â ™â œâ ½" }, { "input": "secondary's", "output": "⠎⠑⠉⠕â â ™â œâ ½â „â Ž" }, { "input": "seconded", "output": "⠎⠑⠉⠕â â ™â «" }, { "input": "secondhand", "output": "⠎⠑⠉⠕â â ™â “â ¯" }, { "input": "seconding", "output": "⠎⠑⠉⠕â â ™â Œ" }, { "input": "secondly", "output": "⠎⠑⠉⠕â â ™â ‡â ½" }, { "input": "seconds", "output": "⠎⠑⠉⠕â â ™â Ž" }, { "input": "secrecy", "output": "⠎⠑⠉⠗⠑⠉⠽" }, { "input": "secrecy's", "output": "⠎⠑⠉⠗⠑⠉⠽⠄⠎" }, { "input": "secret", "output": "⠎⠑⠉⠗⠑⠞" }, { "input": "secret's", "output": "⠎⠑⠉⠗⠑⠞⠄⠎" }, { "input": "secretarial", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â ‡" }, { "input": "secretariat", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â ž" }, { "input": "secretariat's", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â žâ „â Ž" }, { "input": "secretariats", "output": "⠎⠑⠉⠗⠑⠞⠜⠊â â žâ Ž" }, { "input": "secretaries", "output": "⠎⠑⠉⠗⠑⠞⠜⠊⠑⠎" }, { "input": "secretary", "output": "⠎⠑⠉⠗⠑⠞⠜⠽" }, { "input": "secretary's", "output": "⠎⠑⠉⠗⠑⠞⠜⠽⠄⠎" }, { "input": "secretaryship", "output": "⠎⠑⠉⠗⠑⠞⠜⠽⠩⠊â " }, { "input": "secretaryship's", "output": "⠎⠑⠉⠗⠑⠞⠜⠽⠩⠊â â „â Ž" }, { "input": "secrete", "output": "⠎⠑⠉⠗⠑⠞⠑" }, { "input": "secreted", "output": "⠎⠑⠉⠗⠑⠞⠫" }, { "input": "secretes", "output": "⠎⠑⠉⠗⠑⠞⠑⠎" }, { "input": "secreting", "output": "⠎⠑⠉⠗⠑⠞⠌" }, { "input": "secretion", "output": "⠎⠑⠉⠗⠑⠰â " }, { "input": "secretion's", "output": "⠎⠑⠉⠗⠑⠰â â „â Ž" }, { "input": "secretions", "output": "⠎⠑⠉⠗⠑⠰â â Ž" }, { "input": "secretive", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑" }, { "input": "secretively", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑⠇⠽" }, { "input": "secretiveness", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑⠰⠎" }, { "input": "secretiveness's", "output": "⠎⠑⠉⠗⠑⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "secretly", "output": "⠎⠑⠉⠗⠑⠞⠇⠽" }, { "input": "secretory", "output": "⠎⠑⠉⠗⠑⠞⠕⠗⠽" }, { "input": "secrets", "output": "⠎⠑⠉⠗⠑⠞⠎" }, { "input": "secs", "output": "⠎⠑⠉⠎" }, { "input": "sect", "output": "⠎⠑⠉⠞" }, { "input": "sect's", "output": "⠎⠑⠉⠞⠄⠎" }, { "input": "sectarian", "output": "⠎⠑⠉⠞⠜⠊â â " }, { "input": "sectarian's", "output": "⠎⠑⠉⠞⠜⠊â â â „â Ž" }, { "input": "sectarianism", "output": "⠎⠑⠉⠞⠜⠊â â â Šâ Žâ " }, { "input": "sectarianism's", "output": "⠎⠑⠉⠞⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "sectarians", "output": "⠎⠑⠉⠞⠜⠊â â â Ž" }, { "input": "sectaries", "output": "⠎⠑⠉⠞⠜⠊⠑⠎" }, { "input": "sectary", "output": "⠎⠑⠉⠞⠜⠽" }, { "input": "sectary's", "output": "⠎⠑⠉⠞⠜⠽⠄⠎" }, { "input": "section", "output": "⠎⠑⠉⠰â " }, { "input": "section's", "output": "⠎⠑⠉⠰â â „â Ž" }, { "input": "sectional", "output": "⠎⠑⠉⠰â â â ‡" }, { "input": "sectional's", "output": "⠎⠑⠉⠰â â â ‡â „â Ž" }, { "input": "sectionalism", "output": "⠎⠑⠉⠰â â â ‡â Šâ Žâ " }, { "input": "sectionalism's", "output": "⠎⠑⠉⠰â â â ‡â Šâ Žâ â „â Ž" }, { "input": "sectionals", "output": "⠎⠑⠉⠰â â â ‡â Ž" }, { "input": "sectioned", "output": "⠎⠑⠉⠰â â «" }, { "input": "sectioning", "output": "⠎⠑⠉⠰â â Œ" }, { "input": "sections", "output": "⠎⠑⠉⠰â â Ž" }, { "input": "sector", "output": "⠎⠑⠉⠞⠕⠗" }, { "input": "sector's", "output": "⠎⠑⠉⠞⠕⠗⠄⠎" }, { "input": "sectors", "output": "⠎⠑⠉⠞⠕⠗⠎" }, { "input": "sects", "output": "⠎⠑⠉⠞⠎" }, { "input": "secular", "output": "⠎⠑⠉⠥⠇⠜" }, { "input": "secularism", "output": "⠎⠑⠉⠥⠇⠜⠊⠎â " }, { "input": "secularism's", "output": "⠎⠑⠉⠥⠇⠜⠊⠎â â „â Ž" }, { "input": "secularization", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠠â " }, { "input": "secularization's", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠠â â „â Ž" }, { "input": "secularize", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠑" }, { "input": "secularized", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠫" }, { "input": "secularizes", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠑⠎" }, { "input": "secularizing", "output": "⠎⠑⠉⠥⠇⠜⠊⠵⠌" }, { "input": "secure", "output": "⠎⠑⠉⠥⠗⠑" }, { "input": "secured", "output": "⠎⠑⠉⠥⠗⠫" }, { "input": "securely", "output": "⠎⠑⠉⠥⠗⠑⠇⠽" }, { "input": "securer", "output": "⠎⠑⠉⠥⠗⠻" }, { "input": "secures", "output": "⠎⠑⠉⠥⠗⠑⠎" }, { "input": "securest", "output": "⠎⠑⠉⠥⠗⠑⠌" }, { "input": "securing", "output": "⠎⠑⠉⠥⠗⠌" }, { "input": "securities", "output": "⠎⠑⠉⠥⠗⠊⠞⠊⠑⠎" }, { "input": "security", "output": "⠎⠑⠉⠥⠗⠰⠽" }, { "input": "security's", "output": "⠎⠑⠉⠥⠗⠰⠽⠄⠎" }, { "input": "sedan", "output": "â Žâ «â â " }, { "input": "sedan's", "output": "â Žâ «â â â „â Ž" }, { "input": "sedans", "output": "â Žâ «â â â Ž" }, { "input": "sedate", "output": "â Žâ ‘â ™â â žâ ‘" }, { "input": "sedated", "output": "â Žâ ‘â ™â â žâ «" }, { "input": "sedately", "output": "â Žâ ‘â ™â â žâ ‘⠇⠽" }, { "input": "sedateness", "output": "â Žâ ‘â ™â â žâ ‘â °â Ž" }, { "input": "sedateness's", "output": "â Žâ ‘â ™â â žâ ‘â °â Žâ „â Ž" }, { "input": "sedater", "output": "â Žâ ‘â ™â â žâ »" }, { "input": "sedates", "output": "â Žâ ‘â ™â â žâ ‘â Ž" }, { "input": "sedatest", "output": "â Žâ ‘â ™â â žâ ‘â Œ" }, { "input": "sedating", "output": "â Žâ ‘â ™â â žâ Œ" }, { "input": "sedation", "output": "⠎⠑⠙⠠â " }, { "input": "sedation's", "output": "⠎⠑⠙⠠â â „â Ž" }, { "input": "sedative", "output": "â Žâ «â â žâ Šâ §â ‘" }, { "input": "sedative's", "output": "â Žâ «â â žâ Šâ §â ‘â „â Ž" }, { "input": "sedatives", "output": "â Žâ «â â žâ Šâ §â ‘â Ž" }, { "input": "sedentary", "output": "⠎⠫⠢⠞⠜⠽" }, { "input": "sedge", "output": "⠎⠫⠛⠑" }, { "input": "sedge's", "output": "⠎⠫⠛⠑⠄⠎" }, { "input": "sedgier", "output": "⠎⠫⠛⠊⠻" }, { "input": "sedgiest", "output": "⠎⠫⠛⠊⠑⠌" }, { "input": "sedgy", "output": "⠎⠫⠛⠽" }, { "input": "sediment", "output": "â Žâ «â Šâ °â ž" }, { "input": "sediment's", "output": "â Žâ «â Šâ °â žâ „â Ž" }, { "input": "sedimentary", "output": "⠎⠫⠊⠰⠞⠜⠽" }, { "input": "sedimentation", "output": "â Žâ «â Šâ °â žâ  â " }, { "input": "sedimentation's", "output": "â Žâ «â Šâ °â žâ  â â „â Ž" }, { "input": "sediments", "output": "â Žâ «â Šâ °â žâ Ž" }, { "input": "sedition", "output": "⠎⠑⠙⠊⠰â " }, { "input": "sedition's", "output": "⠎⠑⠙⠊⠰â â „â Ž" }, { "input": "seditious", "output": "⠎⠑⠙⠊⠞⠊⠳⠎" }, { "input": "seduce", "output": "⠎⠑⠙⠥⠉⠑" }, { "input": "seduced", "output": "⠎⠑⠙⠥⠉⠫" }, { "input": "seducer", "output": "⠎⠑⠙⠥⠉⠻" }, { "input": "seducer's", "output": "⠎⠑⠙⠥⠉⠻⠄⠎" }, { "input": "seducers", "output": "⠎⠑⠙⠥⠉⠻⠎" }, { "input": "seduces", "output": "⠎⠑⠙⠥⠉⠑⠎" }, { "input": "seducing", "output": "⠎⠑⠙⠥⠉⠌" }, { "input": "seduction", "output": "⠎⠑⠙⠥⠉⠰â " }, { "input": "seduction's", "output": "⠎⠑⠙⠥⠉⠰â â „â Ž" }, { "input": "seductions", "output": "⠎⠑⠙⠥⠉⠰â â Ž" }, { "input": "seductive", "output": "⠎⠑⠙⠥⠉⠞⠊⠧⠑" }, { "input": "seductively", "output": "⠎⠑⠙⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "seductiveness's", "output": "⠎⠑⠙⠥⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "sedulous", "output": "⠎⠫⠥⠇⠳⠎" }, { "input": "sedulously", "output": "⠎⠫⠥⠇⠳⠎⠇⠽" }, { "input": "see", "output": "â Žâ ‘â ‘" }, { "input": "see's", "output": "â Žâ ‘â ‘â „â Ž" }, { "input": "seed", "output": "â Žâ ‘â «" }, { "input": "seed's", "output": "â Žâ ‘â «â „â Ž" }, { "input": "seedcase", "output": "â Žâ ‘â «â ‰â â Žâ ‘" }, { "input": "seedcase's", "output": "â Žâ ‘â «â ‰â â Žâ ‘â „â Ž" }, { "input": "seedcases", "output": "â Žâ ‘â «â ‰â â Žâ ‘â Ž" }, { "input": "seeded", "output": "â Žâ ‘â «â «" }, { "input": "seeder", "output": "â Žâ ‘â «â »" }, { "input": "seeder's", "output": "⠎⠑⠫⠻⠄⠎" }, { "input": "seeders", "output": "⠎⠑⠫⠻⠎" }, { "input": "seedier", "output": "â Žâ ‘â «â Šâ »" }, { "input": "seediest", "output": "â Žâ ‘â «â Šâ ‘â Œ" }, { "input": "seediness", "output": "â Žâ ‘â «â Šâ °â Ž" }, { "input": "seediness's", "output": "â Žâ ‘â «â Šâ °â Žâ „â Ž" }, { "input": "seeding", "output": "â Žâ ‘â «â Œ" }, { "input": "seedless", "output": "⠎⠑⠫⠨⠎" }, { "input": "seedling", "output": "⠎⠑⠫⠇⠌" }, { "input": "seedling's", "output": "⠎⠑⠫⠇⠌⠄⠎" }, { "input": "seedlings", "output": "⠎⠑⠫⠇⠌⠎" }, { "input": "seedpod", "output": "â Žâ ‘â «â â •â ™" }, { "input": "seedpod's", "output": "â Žâ ‘â «â â •⠙⠄⠎" }, { "input": "seedpods", "output": "â Žâ ‘â «â â •⠙⠎" }, { "input": "seeds", "output": "â Žâ ‘â «â Ž" }, { "input": "seedy", "output": "â Žâ ‘â «â ½" }, { "input": "seeing", "output": "â Žâ ‘â ‘â Œ" }, { "input": "seeings", "output": "⠎⠑⠑⠌⠎" }, { "input": "seek", "output": "â Žâ ‘â ‘â …" }, { "input": "seeker", "output": "â Žâ ‘â ‘â …â »" }, { "input": "seeker's", "output": "⠎⠑⠑⠅⠻⠄⠎" }, { "input": "seekers", "output": "⠎⠑⠑⠅⠻⠎" }, { "input": "seeking", "output": "â Žâ ‘â ‘â …â Œ" }, { "input": "seeks", "output": "â Žâ ‘â ‘â …â Ž" }, { "input": "seem", "output": "â Žâ ‘â ‘â " }, { "input": "seemed", "output": "â Žâ ‘â ‘â â «" }, { "input": "seeming", "output": "â Žâ ‘â ‘â â Œ" }, { "input": "seemingly", "output": "â Žâ ‘â ‘â â Œâ ‡â ½" }, { "input": "seemlier", "output": "â Žâ ‘â ‘â â ‡â Šâ »" }, { "input": "seemliest", "output": "â Žâ ‘â ‘â â ‡â Šâ ‘â Œ" }, { "input": "seemliness", "output": "â Žâ ‘â ‘â â ‡â Šâ °â Ž" }, { "input": "seemliness's", "output": "â Žâ ‘â ‘â â ‡â Šâ °â Žâ „â Ž" }, { "input": "seemly", "output": "â Žâ ‘â ‘â â ‡â ½" }, { "input": "seems", "output": "â Žâ ‘â ‘â â Ž" }, { "input": "seen", "output": "â Žâ ‘â ¢" }, { "input": "seep", "output": "â Žâ ‘â ‘â " }, { "input": "seepage", "output": "â Žâ ‘â ‘â â â ›â ‘" }, { "input": "seepage's", "output": "â Žâ ‘â ‘â â â ›â ‘â „â Ž" }, { "input": "seeped", "output": "â Žâ ‘â ‘â â «" }, { "input": "seeping", "output": "â Žâ ‘â ‘â â Œ" }, { "input": "seeps", "output": "â Žâ ‘â ‘â â Ž" }, { "input": "seer", "output": "â Žâ ‘â »" }, { "input": "seer's", "output": "⠎⠑⠻⠄⠎" }, { "input": "seers", "output": "⠎⠑⠻⠎" }, { "input": "seersucker", "output": "⠎⠑⠻⠎⠥⠉⠅⠻" }, { "input": "seersucker's", "output": "⠎⠑⠻⠎⠥⠉⠅⠻⠄⠎" }, { "input": "sees", "output": "â Žâ ‘â ‘â Ž" }, { "input": "seesaw", "output": "â Žâ ‘â ‘â Žâ â º" }, { "input": "seesaw's", "output": "â Žâ ‘â ‘â Žâ â ºâ „â Ž" }, { "input": "seesawed", "output": "â Žâ ‘â ‘â Žâ â ºâ «" }, { "input": "seesawing", "output": "â Žâ ‘â ‘â Žâ â ºâ Œ" }, { "input": "seesaws", "output": "â Žâ ‘â ‘â Žâ â ºâ Ž" }, { "input": "seethe", "output": "â Žâ ‘â ‘â ®" }, { "input": "seethed", "output": "⠎⠑⠑⠮⠙" }, { "input": "seethes", "output": "⠎⠑⠑⠮⠎" }, { "input": "seething", "output": "⠎⠑⠑⠹⠌" }, { "input": "segment", "output": "⠎⠑⠛⠰⠞" }, { "input": "segment's", "output": "⠎⠑⠛⠰⠞⠄⠎" }, { "input": "segmentation", "output": "⠎⠑⠛⠰⠞⠠â " }, { "input": "segmentation's", "output": "⠎⠑⠛⠰⠞⠠â â „â Ž" }, { "input": "segmented", "output": "⠎⠑⠛⠰⠞⠫" }, { "input": "segmenting", "output": "⠎⠑⠛⠰⠞⠌" }, { "input": "segments", "output": "⠎⠑⠛⠰⠞⠎" }, { "input": "segregate", "output": "⠎⠑⠛⠗⠑⠛â â žâ ‘" }, { "input": "segregated", "output": "⠎⠑⠛⠗⠑⠛â â žâ «" }, { "input": "segregates", "output": "⠎⠑⠛⠗⠑⠛â â žâ ‘â Ž" }, { "input": "segregating", "output": "⠎⠑⠛⠗⠑⠛â â žâ Œ" }, { "input": "segregation", "output": "⠎⠑⠛⠗⠑⠛⠠â " }, { "input": "segregation's", "output": "⠎⠑⠛⠗⠑⠛⠠â â „â Ž" }, { "input": "segregationist", "output": "⠎⠑⠛⠗⠑⠛⠠â â Šâ Œ" }, { "input": "segregationist's", "output": "⠎⠑⠛⠗⠑⠛⠠â â Šâ Œâ „â Ž" }, { "input": "segregationists", "output": "⠎⠑⠛⠗⠑⠛⠠â â Šâ Œâ Ž" }, { "input": "segue", "output": "⠎⠑⠛⠥⠑" }, { "input": "segue's", "output": "⠎⠑⠛⠥⠑⠄⠎" }, { "input": "segued", "output": "⠎⠑⠛⠥⠫" }, { "input": "segueing", "output": "⠎⠑⠛⠥⠑⠌" }, { "input": "segues", "output": "⠎⠑⠛⠥⠑⠎" }, { "input": "seigneur", "output": "â Žâ ‘â Šâ ›â â ‘⠥⠗" }, { "input": "seigneur's", "output": "â Žâ ‘â Šâ ›â â ‘⠥⠗⠄⠎" }, { "input": "seigneurs", "output": "â Žâ ‘â Šâ ›â â ‘⠥⠗⠎" }, { "input": "seignior", "output": "â Žâ ‘â Šâ ›â â Šâ •â —" }, { "input": "seignior's", "output": "â Žâ ‘â Šâ ›â â Šâ •â —â „â Ž" }, { "input": "seigniors", "output": "â Žâ ‘â Šâ ›â â Šâ •â —â Ž" }, { "input": "seine", "output": "⠎⠑⠔⠑" }, { "input": "seine's", "output": "⠎⠑⠔⠑⠄⠎" }, { "input": "seined", "output": "⠎⠑⠔⠫" }, { "input": "seiner", "output": "⠎⠑⠔⠻" }, { "input": "seiner's", "output": "⠎⠑⠔⠻⠄⠎" }, { "input": "seiners", "output": "⠎⠑⠔⠻⠎" }, { "input": "seines", "output": "⠎⠑⠔⠑⠎" }, { "input": "seining", "output": "⠎⠑⠔⠌" }, { "input": "seismic", "output": "â Žâ ‘â Šâ Žâ â Šâ ‰" }, { "input": "seismically", "output": "â Žâ ‘â Šâ Žâ â Šâ ‰â  â ½" }, { "input": "seismograph", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “" }, { "input": "seismograph's", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â „â Ž" }, { "input": "seismographer", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â »" }, { "input": "seismographer's", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “⠻⠄⠎" }, { "input": "seismographers", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “⠻⠎" }, { "input": "seismographic", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â Šâ ‰" }, { "input": "seismographs", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â Ž" }, { "input": "seismography", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “â ½" }, { "input": "seismography's", "output": "â Žâ ‘â Šâ Žâ â •⠛⠗â â â “⠽⠄⠎" }, { "input": "seismologic", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠊⠉" }, { "input": "seismologist", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠊⠌" }, { "input": "seismologist's", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "seismologists", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠊⠌⠎" }, { "input": "seismology", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠽" }, { "input": "seismology's", "output": "â Žâ ‘â Šâ Žâ â •⠇⠕⠛⠽⠄⠎" }, { "input": "seize", "output": "⠎⠑⠊⠵⠑" }, { "input": "seized", "output": "⠎⠑⠊⠵⠫" }, { "input": "seizes", "output": "⠎⠑⠊⠵⠑⠎" }, { "input": "seizing", "output": "⠎⠑⠊⠵⠌" }, { "input": "seizure", "output": "⠎⠑⠊⠵⠥⠗⠑" }, { "input": "seizure's", "output": "⠎⠑⠊⠵⠥⠗⠑⠄⠎" }, { "input": "seizures", "output": "⠎⠑⠊⠵⠥⠗⠑⠎" }, { "input": "seldom", "output": "⠎⠑⠇⠙⠕â " }, { "input": "select", "output": "⠎⠑⠇⠑⠉⠞" }, { "input": "selected", "output": "⠎⠑⠇⠑⠉⠞⠫" }, { "input": "selecting", "output": "⠎⠑⠇⠑⠉⠞⠌" }, { "input": "selection", "output": "⠎⠑⠇⠑⠉⠰â " }, { "input": "selection's", "output": "⠎⠑⠇⠑⠉⠰â â „â Ž" }, { "input": "selections", "output": "⠎⠑⠇⠑⠉⠰â â Ž" }, { "input": "selective", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠑" }, { "input": "selectively", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "selectivity", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠰⠽" }, { "input": "selectivity's", "output": "⠎⠑⠇⠑⠉⠞⠊⠧⠰⠽⠄⠎" }, { "input": "selectman", "output": "⠎⠑⠇⠑⠉⠞â â â " }, { "input": "selectman's", "output": "⠎⠑⠇⠑⠉⠞â â â â „â Ž" }, { "input": "selectmen", "output": "⠎⠑⠇⠑⠉⠞â â ¢" }, { "input": "selectness", "output": "⠎⠑⠇⠑⠉⠞⠰⠎" }, { "input": "selectness's", "output": "⠎⠑⠇⠑⠉⠞⠰⠎⠄⠎" }, { "input": "selector", "output": "⠎⠑⠇⠑⠉⠞⠕⠗" }, { "input": "selector's", "output": "⠎⠑⠇⠑⠉⠞⠕⠗⠄⠎" }, { "input": "selectors", "output": "⠎⠑⠇⠑⠉⠞⠕⠗⠎" }, { "input": "selects", "output": "⠎⠑⠇⠑⠉⠞⠎" }, { "input": "selenium", "output": "⠎⠑⠇⠢⠊⠥â " }, { "input": "selenium's", "output": "⠎⠑⠇⠢⠊⠥â â „â Ž" }, { "input": "selenographer", "output": "⠎⠑⠇⠢⠕⠛⠗â â â “â »" }, { "input": "selenographer's", "output": "⠎⠑⠇⠢⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "selenographers", "output": "⠎⠑⠇⠢⠕⠛⠗â â â “⠻⠎" }, { "input": "selenography", "output": "⠎⠑⠇⠢⠕⠛⠗â â â “â ½" }, { "input": "selenography's", "output": "⠎⠑⠇⠢⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "self", "output": "⠎⠑⠇⠋" }, { "input": "self's", "output": "⠎⠑⠇⠋⠄⠎" }, { "input": "selfish", "output": "⠎⠑⠇⠋⠊⠩" }, { "input": "selfishly", "output": "⠎⠑⠇⠋⠊⠩⠇⠽" }, { "input": "selfishness", "output": "⠎⠑⠇⠋⠊⠩⠰⠎" }, { "input": "selfishness's", "output": "⠎⠑⠇⠋⠊⠩⠰⠎⠄⠎" }, { "input": "selfless", "output": "⠎⠑⠇⠋⠨⠎" }, { "input": "selflessly", "output": "⠎⠑⠇⠋⠨⠎⠇⠽" }, { "input": "selflessness", "output": "⠎⠑⠇⠋⠨⠎⠰⠎" }, { "input": "selflessness's", "output": "⠎⠑⠇⠋⠨⠎⠰⠎⠄⠎" }, { "input": "selfsame", "output": "⠎⠑⠇⠋⠎â â â ‘" }, { "input": "sell", "output": "⠎⠑⠇⠇" }, { "input": "sell's", "output": "⠎⠑⠇⠇⠄⠎" }, { "input": "seller", "output": "⠎⠑⠇⠇⠻" }, { "input": "seller's", "output": "⠎⠑⠇⠇⠻⠄⠎" }, { "input": "sellers", "output": "⠎⠑⠇⠇⠻⠎" }, { "input": "selling", "output": "⠎⠑⠇⠇⠌" }, { "input": "sellout", "output": "⠎⠑⠇⠇⠳⠞" }, { "input": "sellout's", "output": "⠎⠑⠇⠇⠳⠞⠄⠎" }, { "input": "sellouts", "output": "⠎⠑⠇⠇⠳⠞⠎" }, { "input": "sells", "output": "⠎⠑⠇⠇⠎" }, { "input": "seltzer", "output": "⠎⠑⠇⠞⠵⠻" }, { "input": "seltzer's", "output": "⠎⠑⠇⠞⠵⠻⠄⠎" }, { "input": "selvage", "output": "⠎⠑⠇⠧â â ›â ‘" }, { "input": "selvage's", "output": "⠎⠑⠇⠧â â ›â ‘â „â Ž" }, { "input": "selvages", "output": "⠎⠑⠇⠧â â ›â ‘â Ž" }, { "input": "selves", "output": "⠎⠑⠇⠧⠑⠎" }, { "input": "semantic", "output": "â Žâ ‘â â â â žâ Šâ ‰" }, { "input": "semantically", "output": "â Žâ ‘â â â â žâ Šâ ‰â  â ½" }, { "input": "semanticist", "output": "â Žâ ‘â â â â žâ Šâ ‰â Šâ Œ" }, { "input": "semanticist's", "output": "â Žâ ‘â â â â žâ Šâ ‰â Šâ Œâ „â Ž" }, { "input": "semanticists", "output": "â Žâ ‘â â â â žâ Šâ ‰â Šâ Œâ Ž" }, { "input": "semantics", "output": "â Žâ ‘â â â â žâ Šâ ‰â Ž" }, { "input": "semantics's", "output": "â Žâ ‘â â â â žâ Šâ ‰â Žâ „â Ž" }, { "input": "semaphore", "output": "â Žâ ‘â â â â “â •â —â ‘" }, { "input": "semaphore's", "output": "â Žâ ‘â â â â “â •â —â ‘â „â Ž" }, { "input": "semaphored", "output": "â Žâ ‘â â â â “â •â —â «" }, { "input": "semaphores", "output": "â Žâ ‘â â â â “â •â —â ‘â Ž" }, { "input": "semaphoring", "output": "â Žâ ‘â â â â “â •â —â Œ" }, { "input": "semblance", "output": "â Žâ ‘â â ƒâ ‡â ¨â ‘" }, { "input": "semblance's", "output": "â Žâ ‘â â ƒâ ‡â ¨â ‘â „â Ž" }, { "input": "semblances", "output": "â Žâ ‘â â ƒâ ‡â ¨â ‘â Ž" }, { "input": "semen", "output": "â Žâ ‘â â ¢" }, { "input": "semen's", "output": "â Žâ ‘â â ¢â „â Ž" }, { "input": "semester", "output": "â Žâ ‘â â ‘⠌⠻" }, { "input": "semester's", "output": "â Žâ ‘â â ‘⠌⠻⠄⠎" }, { "input": "semesters", "output": "â Žâ ‘â â ‘⠌⠻⠎" }, { "input": "semi", "output": "â Žâ ‘â â Š" }, { "input": "semi's", "output": "â Žâ ‘â â Šâ „â Ž" }, { "input": "semiannual", "output": "â Žâ ‘â â Šâ â â â ¥â â ‡" }, { "input": "semiannually", "output": "â Žâ ‘â â Šâ â â â ¥â  â ½" }, { "input": "semiarid", "output": "â Žâ ‘â â Šâ œâ Šâ ™" }, { "input": "semiautomatic", "output": "â Žâ ‘â â Šâ â ¥â žâ •â â â žâ Šâ ‰" }, { "input": "semiautomatic's", "output": "â Žâ ‘â â Šâ â ¥â žâ •â â â žâ Šâ ‰â „â Ž" }, { "input": "semiautomatics", "output": "â Žâ ‘â â Šâ â ¥â žâ •â â â žâ Šâ ‰â Ž" }, { "input": "semicircle", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠇⠑" }, { "input": "semicircle's", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠇⠑⠄⠎" }, { "input": "semicircles", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠇⠑⠎" }, { "input": "semicircular", "output": "â Žâ ‘â â Šâ ‰â Šâ —⠉⠥⠇⠜" }, { "input": "semicolon", "output": "â Žâ ‘â â Šâ ‰â •⠇⠕â " }, { "input": "semicolon's", "output": "â Žâ ‘â â Šâ ‰â •⠇⠕â â „â Ž" }, { "input": "semicolons", "output": "â Žâ ‘â â Šâ ‰â •⠇⠕â â Ž" }, { "input": "semiconductor", "output": "â Žâ ‘â â Šâ ‰â •â â ™â ¥â ‰â žâ •â —" }, { "input": "semiconductor's", "output": "â Žâ ‘â â Šâ ‰â •â â ™â ¥â ‰â žâ •â —â „â Ž" }, { "input": "semiconductors", "output": "â Žâ ‘â â Šâ ‰â •â â ™â ¥â ‰â žâ •â —â Ž" }, { "input": "semiconscious", "output": "â Žâ ‘â â Šâ ‰â •â â Žâ ‰â Šâ ³â Ž" }, { "input": "semidarkness", "output": "â Žâ ‘â â Šâ ™â œâ …â °â Ž" }, { "input": "semidarkness's", "output": "â Žâ ‘â â Šâ ™â œâ …â °â Žâ „â Ž" }, { "input": "semidetached", "output": "â Žâ ‘â â Šâ ™â ‘â žâ â ¡â «" }, { "input": "semifinal", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡" }, { "input": "semifinal's", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â „â Ž" }, { "input": "semifinalist", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Šâ Œ" }, { "input": "semifinalist's", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Šâ Œâ „â Ž" }, { "input": "semifinalists", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Šâ Œâ Ž" }, { "input": "semifinals", "output": "â Žâ ‘â â Šâ ‹â ”â â ‡â Ž" }, { "input": "semigloss", "output": "â Žâ ‘â â Šâ ›â ‡â •â Žâ Ž" }, { "input": "semiglosses", "output": "â Žâ ‘â â Šâ ›â ‡â •â Žâ Žâ ‘â Ž" }, { "input": "semimonthlies", "output": "â Žâ ‘â â Šâ â •â â ¹â ‡â Šâ ‘â Ž" }, { "input": "semimonthly", "output": "â Žâ ‘â â Šâ â •â â ¹â ‡â ½" }, { "input": "semimonthly's", "output": "â Žâ ‘â â Šâ â •â â ¹â ‡â ½â „â Ž" }, { "input": "seminal", "output": "â Žâ ‘â â ”â â ‡" }, { "input": "seminar", "output": "â Žâ ‘â â ”â œ" }, { "input": "seminar's", "output": "â Žâ ‘â â ”⠜⠄⠎" }, { "input": "seminarian", "output": "â Žâ ‘â â ”⠜⠊â â " }, { "input": "seminarian's", "output": "â Žâ ‘â â ”⠜⠊â â â „â Ž" }, { "input": "seminarians", "output": "â Žâ ‘â â ”⠜⠊â â â Ž" }, { "input": "seminaries", "output": "â Žâ ‘â â ”⠜⠊⠑⠎" }, { "input": "seminars", "output": "â Žâ ‘â â ”⠜⠎" }, { "input": "seminary", "output": "â Žâ ‘â â ”⠜⠽" }, { "input": "seminary's", "output": "â Žâ ‘â â ”⠜⠽⠄⠎" }, { "input": "semiofficial", "output": "â Žâ ‘â â Šâ ·â ‹â Šâ ‰â Šâ â ‡" }, { "input": "semiotics's", "output": "â Žâ ‘â â Šâ •⠞⠊⠉⠎⠄⠎" }, { "input": "semipermeable", "output": "â Žâ ‘â â Šâ â »â â ‘â â ¼" }, { "input": "semiprecious", "output": "â Žâ ‘â â Šâ â —⠑⠉⠊⠳⠎" }, { "input": "semiprivate", "output": "â Žâ ‘â â Šâ â —â Šâ §â â žâ ‘" }, { "input": "semipro", "output": "â Žâ ‘â â Šâ â —â •" }, { "input": "semiprofessional", "output": "â Žâ ‘â â Šâ â —â •â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "semiprofessional's", "output": "â Žâ ‘â â Šâ â —â •â ‹â ‘â Žâ ¨â â â ‡â „â Ž" }, { "input": "semiprofessionals", "output": "â Žâ ‘â â Šâ â —â •â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "semipros", "output": "â Žâ ‘â â Šâ â —â •â Ž" }, { "input": "semiretired", "output": "â Žâ ‘â â Šâ —â ‘â žâ Šâ —â «" }, { "input": "semis", "output": "â Žâ ‘â â Šâ Ž" }, { "input": "semiskilled", "output": "â Žâ ‘â â Šâ Žâ …⠊⠇⠇⠫" }, { "input": "semisolid", "output": "â Žâ ‘â â Šâ Žâ •⠇⠊⠙" }, { "input": "semisweet", "output": "â Žâ ‘â â Šâ Žâ ºâ ‘â ‘â ž" }, { "input": "semitone", "output": "â Žâ ‘â â Šâ žâ â •" }, { "input": "semitone's", "output": "â Žâ ‘â â Šâ žâ â •â „â Ž" }, { "input": "semitones", "output": "â Žâ ‘â â Šâ žâ â •â Ž" }, { "input": "semitrailer", "output": "â Žâ ‘â â Šâ žâ —â â Šâ ‡â »" }, { "input": "semitrailer's", "output": "â Žâ ‘â â Šâ žâ —â â Šâ ‡â »â „â Ž" }, { "input": "semitrailers", "output": "â Žâ ‘â â Šâ žâ —â â Šâ ‡â »â Ž" }, { "input": "semitransparent", "output": "â Žâ ‘â â Šâ žâ —â â â Žâ â œâ ¢â ž" }, { "input": "semitropical", "output": "â Žâ ‘â â Šâ žâ —â •â â Šâ ‰â â ‡" }, { "input": "semiweeklies", "output": "â Žâ ‘â â Šâ ºâ ‘⠑⠅⠇⠊⠑⠎" }, { "input": "semiweekly", "output": "â Žâ ‘â â Šâ ºâ ‘⠑⠅⠇⠽" }, { "input": "semiweekly's", "output": "â Žâ ‘â â Šâ ºâ ‘⠑⠅⠇⠽⠄⠎" }, { "input": "semiyearly", "output": "â Žâ ‘â â Šâ ½â ‘⠜⠇⠽" }, { "input": "semolina's", "output": "â Žâ ‘â â •⠇⠔â â „â Ž" }, { "input": "sempstress", "output": "â Žâ ‘â â â Œâ —â ‘â Žâ Ž" }, { "input": "sempstress's", "output": "â Žâ ‘â â â Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "sempstresses", "output": "â Žâ ‘â â â Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "senate", "output": "â Žâ ¢â â žâ ‘" }, { "input": "senate's", "output": "â Žâ ¢â â žâ ‘â „â Ž" }, { "input": "senates", "output": "â Žâ ¢â â žâ ‘â Ž" }, { "input": "senator", "output": "â Žâ ¢â â žâ •â —" }, { "input": "senator's", "output": "â Žâ ¢â â žâ •â —â „â Ž" }, { "input": "senatorial", "output": "â Žâ ¢â â žâ •â —â Šâ â ‡" }, { "input": "senators", "output": "â Žâ ¢â â žâ •â —â Ž" }, { "input": "send", "output": "⠎⠢⠙" }, { "input": "sender", "output": "⠎⠢⠙⠻" }, { "input": "sender's", "output": "⠎⠢⠙⠻⠄⠎" }, { "input": "senders", "output": "⠎⠢⠙⠻⠎" }, { "input": "sending", "output": "⠎⠢⠙⠌" }, { "input": "sendoff", "output": "⠎⠢⠙⠷⠋" }, { "input": "sendoff's", "output": "⠎⠢⠙⠷⠋⠄⠎" }, { "input": "sendoffs", "output": "⠎⠢⠙⠷⠋⠎" }, { "input": "sends", "output": "⠎⠢⠙⠎" }, { "input": "senescence's", "output": "⠎⠢⠑⠎⠉⠰⠑⠄⠎" }, { "input": "senile", "output": "⠎⠢⠊⠇⠑" }, { "input": "senility", "output": "⠎⠢⠊⠇⠰⠽" }, { "input": "senility's", "output": "⠎⠢⠊⠇⠰⠽⠄⠎" }, { "input": "senior", "output": "⠎⠢⠊⠕⠗" }, { "input": "senior's", "output": "⠎⠢⠊⠕⠗⠄⠎" }, { "input": "seniority", "output": "⠎⠢⠊⠕⠗⠰⠽" }, { "input": "seniority's", "output": "⠎⠢⠊⠕⠗⠰⠽⠄⠎" }, { "input": "seniors", "output": "⠎⠢⠊⠕⠗⠎" }, { "input": "senna", "output": "â Žâ ¢â â " }, { "input": "senna's", "output": "â Žâ ¢â â â „â Ž" }, { "input": "senor", "output": "â Žâ ‘â â •â —" }, { "input": "senor's", "output": "â Žâ ‘â â •â —â „â Ž" }, { "input": "senora", "output": "⠎⠢⠕⠗â " }, { "input": "senora's", "output": "⠎⠢⠕⠗â â „â Ž" }, { "input": "senoras", "output": "⠎⠢⠕⠗â â Ž" }, { "input": "senorita", "output": "⠎⠢⠕⠗⠊⠞â " }, { "input": "senorita's", "output": "⠎⠢⠕⠗⠊⠞â â „â Ž" }, { "input": "senoritas", "output": "⠎⠢⠕⠗⠊⠞â â Ž" }, { "input": "senors", "output": "⠎⠢⠕⠗⠎" }, { "input": "sens", "output": "⠎⠢⠎" }, { "input": "sensation", "output": "⠎⠢⠎⠠â " }, { "input": "sensation's", "output": "⠎⠢⠎⠠â â „â Ž" }, { "input": "sensational", "output": "⠎⠢⠎⠠â â â ‡" }, { "input": "sensationalism", "output": "⠎⠢⠎⠠â â â ‡â Šâ Žâ " }, { "input": "sensationalism's", "output": "⠎⠢⠎⠠â â â ‡â Šâ Žâ â „â Ž" }, { "input": "sensationalist", "output": "⠎⠢⠎⠠â â â ‡â Šâ Œ" }, { "input": "sensationalist's", "output": "⠎⠢⠎⠠â â â ‡â Šâ Œâ „â Ž" }, { "input": "sensationalists", "output": "⠎⠢⠎⠠â â â ‡â Šâ Œâ Ž" }, { "input": "sensationalize", "output": "⠎⠢⠎⠠â â â ‡â Šâ µâ ‘" }, { "input": "sensationalized", "output": "⠎⠢⠎⠠â â â ‡â Šâ µâ «" }, { "input": "sensationalizes", "output": "⠎⠢⠎⠠â â â ‡â Šâ µâ ‘â Ž" }, { "input": "sensationalizing", "output": "⠎⠢⠎⠠â â â ‡â Šâ µâ Œ" }, { "input": "sensationally", "output": "⠎⠢⠎⠠â â  â ½" }, { "input": "sensations", "output": "⠎⠢⠎⠠â â Ž" }, { "input": "sense", "output": "⠎⠢⠎⠑" }, { "input": "sense's", "output": "⠎⠢⠎⠑⠄⠎" }, { "input": "sensed", "output": "⠎⠢⠎⠫" }, { "input": "senseless", "output": "⠎⠢⠎⠑⠨⠎" }, { "input": "senselessly", "output": "⠎⠢⠎⠑⠨⠎⠇⠽" }, { "input": "senselessness", "output": "⠎⠢⠎⠑⠨⠎⠰⠎" }, { "input": "senselessness's", "output": "⠎⠢⠎⠑⠨⠎⠰⠎⠄⠎" }, { "input": "senses", "output": "⠎⠢⠎⠑⠎" }, { "input": "sensibilities", "output": "⠎⠢⠎⠊⠃⠊⠇⠊⠞⠊⠑⠎" }, { "input": "sensibility", "output": "⠎⠢⠎⠊⠃⠊⠇⠰⠽" }, { "input": "sensibility's", "output": "⠎⠢⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "sensible", "output": "⠎⠢⠎⠊⠼" }, { "input": "sensibleness", "output": "⠎⠢⠎⠊⠼⠰⠎" }, { "input": "sensibleness's", "output": "⠎⠢⠎⠊⠼⠰⠎⠄⠎" }, { "input": "sensibly", "output": "⠎⠢⠎⠊⠃⠇⠽" }, { "input": "sensing", "output": "⠎⠢⠎⠌" }, { "input": "sensitive", "output": "⠎⠢⠎⠊⠞⠊⠧⠑" }, { "input": "sensitive's", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠄⠎" }, { "input": "sensitively", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠇⠽" }, { "input": "sensitiveness", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠰⠎" }, { "input": "sensitiveness's", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "sensitives", "output": "⠎⠢⠎⠊⠞⠊⠧⠑⠎" }, { "input": "sensitivities", "output": "⠎⠢⠎⠊⠞⠊⠧⠊⠞⠊⠑⠎" }, { "input": "sensitivity", "output": "⠎⠢⠎⠊⠞⠊⠧⠰⠽" }, { "input": "sensitivity's", "output": "⠎⠢⠎⠊⠞⠊⠧⠰⠽⠄⠎" }, { "input": "sensitization", "output": "⠎⠢⠎⠊⠞⠊⠵⠠â " }, { "input": "sensitization's", "output": "⠎⠢⠎⠊⠞⠊⠵⠠â â „â Ž" }, { "input": "sensitize", "output": "⠎⠢⠎⠊⠞⠊⠵⠑" }, { "input": "sensitized", "output": "⠎⠢⠎⠊⠞⠊⠵⠫" }, { "input": "sensitizes", "output": "⠎⠢⠎⠊⠞⠊⠵⠑⠎" }, { "input": "sensitizing", "output": "⠎⠢⠎⠊⠞⠊⠵⠌" }, { "input": "sensor", "output": "⠎⠢⠎⠕⠗" }, { "input": "sensor's", "output": "⠎⠢⠎⠕⠗⠄⠎" }, { "input": "sensors", "output": "⠎⠢⠎⠕⠗⠎" }, { "input": "sensory", "output": "⠎⠢⠎⠕⠗⠽" }, { "input": "sensual", "output": "⠎⠢⠎⠥â â ‡" }, { "input": "sensualist", "output": "⠎⠢⠎⠥â â ‡â Šâ Œ" }, { "input": "sensualist's", "output": "⠎⠢⠎⠥â â ‡â Šâ Œâ „â Ž" }, { "input": "sensualists", "output": "⠎⠢⠎⠥â â ‡â Šâ Œâ Ž" }, { "input": "sensuality", "output": "⠎⠢⠎⠥â â ‡â °â ½" }, { "input": "sensuality's", "output": "⠎⠢⠎⠥â â ‡â °â ½â „â Ž" }, { "input": "sensually", "output": "⠎⠢⠎⠥⠠⠽" }, { "input": "sensuous", "output": "⠎⠢⠎⠥⠳⠎" }, { "input": "sensuously", "output": "⠎⠢⠎⠥⠳⠎⠇⠽" }, { "input": "sensuousness", "output": "⠎⠢⠎⠥⠳⠎⠰⠎" }, { "input": "sensuousness's", "output": "⠎⠢⠎⠥⠳⠎⠰⠎⠄⠎" }, { "input": "sent", "output": "⠎⠢⠞" }, { "input": "sentence", "output": "⠎⠢⠞⠰⠑" }, { "input": "sentence's", "output": "⠎⠢⠞⠰⠑⠄⠎" }, { "input": "sentenced", "output": "⠎⠢⠞⠰⠑⠙" }, { "input": "sentences", "output": "⠎⠢⠞⠰⠑⠎" }, { "input": "sentencing", "output": "⠎⠢⠞⠢⠉⠌" }, { "input": "sententious", "output": "⠎⠢⠞⠢⠞⠊⠳⠎" }, { "input": "sentience", "output": "⠎⠢⠞⠊⠰⠑" }, { "input": "sentience's", "output": "⠎⠢⠞⠊⠰⠑⠄⠎" }, { "input": "sentient", "output": "⠎⠢⠞⠊⠢⠞" }, { "input": "sentiment", "output": "⠎⠢⠞⠊⠰⠞" }, { "input": "sentiment's", "output": "⠎⠢⠞⠊⠰⠞⠄⠎" }, { "input": "sentimental", "output": "⠎⠢⠞⠊⠰⠞â â ‡" }, { "input": "sentimentalism", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Žâ " }, { "input": "sentimentalism's", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Žâ â „â Ž" }, { "input": "sentimentalist", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Œ" }, { "input": "sentimentalist's", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Œâ „â Ž" }, { "input": "sentimentalists", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ Œâ Ž" }, { "input": "sentimentality", "output": "⠎⠢⠞⠊⠰⠞â â ‡â °â ½" }, { "input": "sentimentality's", "output": "⠎⠢⠞⠊⠰⠞â â ‡â °â ½â „â Ž" }, { "input": "sentimentalization", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ  â " }, { "input": "sentimentalization's", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ  â â „â Ž" }, { "input": "sentimentalize", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ ‘" }, { "input": "sentimentalized", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ «" }, { "input": "sentimentalizes", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ ‘â Ž" }, { "input": "sentimentalizing", "output": "⠎⠢⠞⠊⠰⠞â â ‡â Šâ µâ Œ" }, { "input": "sentimentally", "output": "⠎⠢⠞⠊⠰⠞⠠⠽" }, { "input": "sentiments", "output": "⠎⠢⠞⠊⠰⠞⠎" }, { "input": "sentinel", "output": "⠎⠢⠞⠔⠑⠇" }, { "input": "sentinel's", "output": "⠎⠢⠞⠔⠑⠇⠄⠎" }, { "input": "sentinels", "output": "⠎⠢⠞⠔⠑⠇⠎" }, { "input": "sentries", "output": "⠎⠢⠞⠗⠊⠑⠎" }, { "input": "sentry", "output": "⠎⠢⠞⠗⠽" }, { "input": "sentry's", "output": "⠎⠢⠞⠗⠽⠄⠎" }, { "input": "sepal", "output": "â Žâ ‘â â â ‡" }, { "input": "sepal's", "output": "â Žâ ‘â â â ‡â „â Ž" }, { "input": "sepals", "output": "â Žâ ‘â â â ‡â Ž" }, { "input": "separability's", "output": "â Žâ ‘â â œâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "separable", "output": "â Žâ ‘â â œâ â ¼" }, { "input": "separably", "output": "â Žâ ‘â â œâ â ƒâ ‡â ½" }, { "input": "separate", "output": "â Žâ ‘â â œâ â žâ ‘" }, { "input": "separate's", "output": "â Žâ ‘â â œâ â žâ ‘â „â Ž" }, { "input": "separated", "output": "â Žâ ‘â â œâ â žâ «" }, { "input": "separately", "output": "â Žâ ‘â â œâ â žâ ‘⠇⠽" }, { "input": "separateness", "output": "â Žâ ‘â â œâ â žâ ‘â °â Ž" }, { "input": "separateness's", "output": "â Žâ ‘â â œâ â žâ ‘â °â Žâ „â Ž" }, { "input": "separates", "output": "â Žâ ‘â â œâ â žâ ‘â Ž" }, { "input": "separating", "output": "â Žâ ‘â â œâ â žâ Œ" }, { "input": "separation", "output": "â Žâ ‘â â œâ  â " }, { "input": "separation's", "output": "â Žâ ‘â â œâ  â â „â Ž" }, { "input": "separations", "output": "â Žâ ‘â â œâ  â â Ž" }, { "input": "separatism", "output": "â Žâ ‘â â œâ â žâ Šâ Žâ " }, { "input": "separatism's", "output": "â Žâ ‘â â œâ â žâ Šâ Žâ â „â Ž" }, { "input": "separatist", "output": "â Žâ ‘â â œâ â žâ Šâ Œ" }, { "input": "separatist's", "output": "â Žâ ‘â â œâ â žâ Šâ Œâ „â Ž" }, { "input": "separatists", "output": "â Žâ ‘â â œâ â žâ Šâ Œâ Ž" }, { "input": "separative", "output": "â Žâ ‘â â œâ â žâ Šâ §â ‘" }, { "input": "separator", "output": "â Žâ ‘â â œâ â žâ •â —" }, { "input": "separator's", "output": "â Žâ ‘â â œâ â žâ •â —â „â Ž" }, { "input": "separators", "output": "â Žâ ‘â â œâ â žâ •â —â Ž" }, { "input": "sepia", "output": "â Žâ ‘â â Šâ " }, { "input": "sepia's", "output": "â Žâ ‘â â Šâ â „â Ž" }, { "input": "sepsis", "output": "â Žâ ‘â â Žâ Šâ Ž" }, { "input": "sepsis's", "output": "â Žâ ‘â â Žâ Šâ Žâ „â Ž" }, { "input": "septa", "output": "â Žâ ‘â â žâ " }, { "input": "septet", "output": "â Žâ ‘â â žâ ‘â ž" }, { "input": "septet's", "output": "â Žâ ‘â â žâ ‘â žâ „â Ž" }, { "input": "septets", "output": "â Žâ ‘â â žâ ‘â žâ Ž" }, { "input": "septic", "output": "â Žâ ‘â â žâ Šâ ‰" }, { "input": "septicemia", "output": "â Žâ ‘â â žâ Šâ ‰â ‘â â Šâ " }, { "input": "septicemia's", "output": "â Žâ ‘â â žâ Šâ ‰â ‘â â Šâ â „â Ž" }, { "input": "septicemic", "output": "â Žâ ‘â â žâ Šâ ‰â ‘â â Šâ ‰" }, { "input": "septuagenarian", "output": "â Žâ ‘â â žâ ¥â â ›â ¢â œâ Šâ â " }, { "input": "septuagenarian's", "output": "â Žâ ‘â â žâ ¥â â ›â ¢â œâ Šâ â â „â Ž" }, { "input": "septuagenarians", "output": "â Žâ ‘â â žâ ¥â â ›â ¢â œâ Šâ â â Ž" }, { "input": "septum", "output": "â Žâ ‘â â žâ ¥â " }, { "input": "septum's", "output": "â Žâ ‘â â žâ ¥â â „â Ž" }, { "input": "sepulcher", "output": "â Žâ ‘â â ¥â ‡â ¡â »" }, { "input": "sepulcher's", "output": "â Žâ ‘â â ¥â ‡â ¡â »â „â Ž" }, { "input": "sepulchered", "output": "â Žâ ‘â â ¥â ‡â ¡â »â «" }, { "input": "sepulchering", "output": "â Žâ ‘â â ¥â ‡â ¡â »â Œ" }, { "input": "sepulchers", "output": "â Žâ ‘â â ¥â ‡â ¡â »â Ž" }, { "input": "sepulchral", "output": "â Žâ ‘â â ¥â ‡â ¡â —â â ‡" }, { "input": "sequel", "output": "⠎⠑⠟⠥⠑⠇" }, { "input": "sequel's", "output": "⠎⠑⠟⠥⠑⠇⠄⠎" }, { "input": "sequels", "output": "⠎⠑⠟⠥⠑⠇⠎" }, { "input": "sequence", "output": "⠎⠑⠟⠥⠰⠑" }, { "input": "sequence's", "output": "⠎⠑⠟⠥⠰⠑⠄⠎" }, { "input": "sequenced", "output": "⠎⠑⠟⠥⠰⠑⠙" }, { "input": "sequencer", "output": "⠎⠑⠟⠥⠰⠑⠗" }, { "input": "sequencers", "output": "⠎⠑⠟⠥⠰⠑⠗⠎" }, { "input": "sequences", "output": "⠎⠑⠟⠥⠰⠑⠎" }, { "input": "sequencing", "output": "⠎⠑⠟⠥⠢⠉⠌" }, { "input": "sequencing's", "output": "⠎⠑⠟⠥⠢⠉⠌⠄⠎" }, { "input": "sequential", "output": "⠎⠑⠟⠥⠢⠞⠊â â ‡" }, { "input": "sequentially", "output": "⠎⠑⠟⠥⠢⠞⠊⠠⠽" }, { "input": "sequester", "output": "⠎⠑⠟⠥⠑⠌⠻" }, { "input": "sequestered", "output": "⠎⠑⠟⠥⠑⠌⠻⠫" }, { "input": "sequestering", "output": "⠎⠑⠟⠥⠑⠌⠻⠌" }, { "input": "sequesters", "output": "⠎⠑⠟⠥⠑⠌⠻⠎" }, { "input": "sequestration", "output": "⠎⠑⠟⠥⠑⠌⠗⠠â " }, { "input": "sequestration's", "output": "⠎⠑⠟⠥⠑⠌⠗⠠â â „â Ž" }, { "input": "sequestrations", "output": "⠎⠑⠟⠥⠑⠌⠗⠠â â Ž" }, { "input": "sequin", "output": "⠎⠑⠟⠥⠔" }, { "input": "sequin's", "output": "⠎⠑⠟⠥⠔⠄⠎" }, { "input": "sequined", "output": "⠎⠑⠟⠥⠔⠫" }, { "input": "sequins", "output": "⠎⠑⠟⠥⠔⠎" }, { "input": "sequoia", "output": "⠎⠑⠟⠥⠕⠊â " }, { "input": "sequoia's", "output": "⠎⠑⠟⠥⠕⠊â â „â Ž" }, { "input": "sequoias", "output": "⠎⠑⠟⠥⠕⠊â â Ž" }, { "input": "seraglio", "output": "â Žâ »â â ›â ‡â Šâ •" }, { "input": "seraglio's", "output": "â Žâ »â â ›â ‡â Šâ •â „â Ž" }, { "input": "seraglios", "output": "â Žâ »â â ›â ‡â Šâ •â Ž" }, { "input": "serape", "output": "â Žâ »â â â ‘" }, { "input": "serape's", "output": "â Žâ »â â â ‘â „â Ž" }, { "input": "serapes", "output": "â Žâ »â â â ‘â Ž" }, { "input": "seraph", "output": "â Žâ »â â â “" }, { "input": "seraph's", "output": "â Žâ »â â â “â „â Ž" }, { "input": "seraphic", "output": "â Žâ »â â â “â Šâ ‰" }, { "input": "seraphs", "output": "â Žâ »â â â “â Ž" }, { "input": "sere", "output": "⠎⠻⠑" }, { "input": "serenade", "output": "⠎⠻⠢â â ™â ‘" }, { "input": "serenade's", "output": "⠎⠻⠢â â ™â ‘â „â Ž" }, { "input": "serenaded", "output": "⠎⠻⠢â â ™â «" }, { "input": "serenades", "output": "⠎⠻⠢â â ™â ‘â Ž" }, { "input": "serenading", "output": "⠎⠻⠢â â ™â Œ" }, { "input": "serendipitous", "output": "⠎⠻⠢⠙⠊â â Šâ žâ ³â Ž" }, { "input": "serendipity", "output": "⠎⠻⠢⠙⠊â â °â ½" }, { "input": "serendipity's", "output": "⠎⠻⠢⠙⠊â â °â ½â „â Ž" }, { "input": "serene", "output": "⠎⠻⠢⠑" }, { "input": "serenely", "output": "⠎⠻⠢⠑⠇⠽" }, { "input": "sereneness", "output": "⠎⠻⠢⠑⠰⠎" }, { "input": "sereneness's", "output": "⠎⠻⠢⠑⠰⠎⠄⠎" }, { "input": "serener", "output": "⠎⠻⠢⠻" }, { "input": "serenest", "output": "⠎⠻⠢⠑⠌" }, { "input": "serenity", "output": "⠎⠻⠢⠰⠽" }, { "input": "serenity's", "output": "⠎⠻⠢⠰⠽⠄⠎" }, { "input": "serer", "output": "⠎⠻⠻" }, { "input": "serest", "output": "⠎⠻⠑⠌" }, { "input": "serf", "output": "⠎⠻⠋" }, { "input": "serf's", "output": "⠎⠻⠋⠄⠎" }, { "input": "serfdom", "output": "⠎⠻⠋⠙⠕â " }, { "input": "serfdom's", "output": "⠎⠻⠋⠙⠕â â „â Ž" }, { "input": "serfs", "output": "⠎⠻⠋⠎" }, { "input": "serge", "output": "⠎⠻⠛⠑" }, { "input": "serge's", "output": "⠎⠻⠛⠑⠄⠎" }, { "input": "sergeant", "output": "⠎⠻⠛⠂â â ž" }, { "input": "sergeant's", "output": "⠎⠻⠛⠂â â žâ „â Ž" }, { "input": "sergeants", "output": "⠎⠻⠛⠂â â žâ Ž" }, { "input": "serial", "output": "⠎⠻⠊â â ‡" }, { "input": "serial's", "output": "⠎⠻⠊â â ‡â „â Ž" }, { "input": "serialization", "output": "⠎⠻⠊â â ‡â Šâ µâ  â " }, { "input": "serialization's", "output": "⠎⠻⠊â â ‡â Šâ µâ  â â „â Ž" }, { "input": "serializations", "output": "⠎⠻⠊â â ‡â Šâ µâ  â â Ž" }, { "input": "serialize", "output": "⠎⠻⠊â â ‡â Šâ µâ ‘" }, { "input": "serialized", "output": "⠎⠻⠊â â ‡â Šâ µâ «" }, { "input": "serializes", "output": "⠎⠻⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "serializing", "output": "⠎⠻⠊â â ‡â Šâ µâ Œ" }, { "input": "serially", "output": "⠎⠻⠊⠠⠽" }, { "input": "serials", "output": "⠎⠻⠊â â ‡â Ž" }, { "input": "series", "output": "⠎⠻⠊⠑⠎" }, { "input": "series's", "output": "⠎⠻⠊⠑⠎⠄⠎" }, { "input": "serigraph", "output": "⠎⠻⠊⠛⠗â â â “" }, { "input": "serigraph's", "output": "⠎⠻⠊⠛⠗â â â “â „â Ž" }, { "input": "serigraphs", "output": "⠎⠻⠊⠛⠗â â â “â Ž" }, { "input": "serious", "output": "⠎⠻⠊⠳⠎" }, { "input": "seriously", "output": "⠎⠻⠊⠳⠎⠇⠽" }, { "input": "seriousness", "output": "⠎⠻⠊⠳⠎⠰⠎" }, { "input": "seriousness's", "output": "⠎⠻⠊⠳⠎⠰⠎⠄⠎" }, { "input": "sermon", "output": "â Žâ »â â •â " }, { "input": "sermon's", "output": "â Žâ »â â •â â „â Ž" }, { "input": "sermonize", "output": "â Žâ »â â •â â Šâ µâ ‘" }, { "input": "sermonized", "output": "â Žâ »â â •â â Šâ µâ «" }, { "input": "sermonizes", "output": "â Žâ »â â •â â Šâ µâ ‘â Ž" }, { "input": "sermonizing", "output": "â Žâ »â â •â â Šâ µâ Œ" }, { "input": "sermons", "output": "â Žâ »â â •â â Ž" }, { "input": "serology", "output": "⠎⠻⠕⠇⠕⠛⠽" }, { "input": "serology's", "output": "⠎⠻⠕⠇⠕⠛⠽⠄⠎" }, { "input": "serous", "output": "⠎⠻⠳⠎" }, { "input": "serpent", "output": "â Žâ »â â ¢â ž" }, { "input": "serpent's", "output": "â Žâ »â â ¢â žâ „â Ž" }, { "input": "serpentine", "output": "â Žâ »â â ¢â žâ ”â ‘" }, { "input": "serpentine's", "output": "â Žâ »â â ¢â žâ ”â ‘â „â Ž" }, { "input": "serpents", "output": "â Žâ »â â ¢â žâ Ž" }, { "input": "serrate", "output": "⠎⠻⠗â â žâ ‘" }, { "input": "serrated", "output": "⠎⠻⠗â â žâ «" }, { "input": "serration", "output": "⠎⠻⠗⠠â " }, { "input": "serration's", "output": "⠎⠻⠗⠠â â „â Ž" }, { "input": "serrations", "output": "⠎⠻⠗⠠â â Ž" }, { "input": "serried", "output": "⠎⠻⠗⠊⠫" }, { "input": "serum", "output": "⠎⠻⠥â " }, { "input": "serum's", "output": "⠎⠻⠥â â „â Ž" }, { "input": "serums", "output": "⠎⠻⠥â â Ž" }, { "input": "servant", "output": "⠎⠻⠧â â â ž" }, { "input": "servant's", "output": "⠎⠻⠧â â â žâ „â Ž" }, { "input": "servants", "output": "⠎⠻⠧â â â žâ Ž" }, { "input": "serve", "output": "⠎⠻⠧⠑" }, { "input": "serve's", "output": "⠎⠻⠧⠑⠄⠎" }, { "input": "served", "output": "⠎⠻⠧⠫" }, { "input": "server", "output": "⠎⠻⠧⠻" }, { "input": "server's", "output": "⠎⠻⠧⠻⠄⠎" }, { "input": "servers", "output": "⠎⠻⠧⠻⠎" }, { "input": "serves", "output": "⠎⠻⠧⠑⠎" }, { "input": "service", "output": "⠎⠻⠧⠊⠉⠑" }, { "input": "service's", "output": "⠎⠻⠧⠊⠉⠑⠄⠎" }, { "input": "serviceability", "output": "⠎⠻⠧⠊⠉⠑â â ƒâ Šâ ‡â °â ½" }, { "input": "serviceability's", "output": "⠎⠻⠧⠊⠉⠑â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "serviceable", "output": "⠎⠻⠧⠊⠉⠑â â ¼" }, { "input": "serviced", "output": "⠎⠻⠧⠊⠉⠫" }, { "input": "serviceman", "output": "⠎⠻⠧⠊⠉⠑â â â " }, { "input": "serviceman's", "output": "⠎⠻⠧⠊⠉⠑â â â â „â Ž" }, { "input": "servicemen", "output": "⠎⠻⠧⠊⠉⠑â â ¢" }, { "input": "services", "output": "⠎⠻⠧⠊⠉⠑⠎" }, { "input": "servicewoman", "output": "⠎⠻⠧⠊⠉⠑⠺⠕â â â " }, { "input": "servicewoman's", "output": "⠎⠻⠧⠊⠉⠑⠺⠕â â â â „â Ž" }, { "input": "servicewomen", "output": "⠎⠻⠧⠊⠉⠑⠺⠕â â ¢" }, { "input": "servicing", "output": "⠎⠻⠧⠊⠉⠌" }, { "input": "serviette", "output": "⠎⠻⠧⠊⠑⠞⠞⠑" }, { "input": "serviette's", "output": "⠎⠻⠧⠊⠑⠞⠞⠑⠄⠎" }, { "input": "serviettes", "output": "⠎⠻⠧⠊⠑⠞⠞⠑⠎" }, { "input": "servile", "output": "⠎⠻⠧⠊⠇⠑" }, { "input": "servility", "output": "⠎⠻⠧⠊⠇⠰⠽" }, { "input": "servility's", "output": "⠎⠻⠧⠊⠇⠰⠽⠄⠎" }, { "input": "serving", "output": "⠎⠻⠧⠌" }, { "input": "serving's", "output": "⠎⠻⠧⠌⠄⠎" }, { "input": "servings", "output": "⠎⠻⠧⠌⠎" }, { "input": "servitor", "output": "⠎⠻⠧⠊⠞⠕⠗" }, { "input": "servitor's", "output": "⠎⠻⠧⠊⠞⠕⠗⠄⠎" }, { "input": "servitors", "output": "⠎⠻⠧⠊⠞⠕⠗⠎" }, { "input": "servitude", "output": "⠎⠻⠧⠊⠞⠥⠙⠑" }, { "input": "servitude's", "output": "⠎⠻⠧⠊⠞⠥⠙⠑⠄⠎" }, { "input": "servo", "output": "⠎⠻⠧⠕" }, { "input": "servo's", "output": "⠎⠻⠧⠕⠄⠎" }, { "input": "servomechanism", "output": "⠎⠻⠧⠕â â ‘â ¡â â â Šâ Žâ " }, { "input": "servomechanism's", "output": "⠎⠻⠧⠕â â ‘â ¡â â â Šâ Žâ â „â Ž" }, { "input": "servomechanisms", "output": "⠎⠻⠧⠕â â ‘â ¡â â â Šâ Žâ â Ž" }, { "input": "servomotor", "output": "⠎⠻⠧⠕â â •â žâ •â —" }, { "input": "servomotor's", "output": "⠎⠻⠧⠕â â •â žâ •â —â „â Ž" }, { "input": "servomotors", "output": "⠎⠻⠧⠕â â •â žâ •â —â Ž" }, { "input": "servos", "output": "⠎⠻⠧⠕⠎" }, { "input": "sesame", "output": "â Žâ ‘â Žâ â â ‘" }, { "input": "sesame's", "output": "â Žâ ‘â Žâ â â ‘â „â Ž" }, { "input": "sesames", "output": "â Žâ ‘â Žâ â â ‘â Ž" }, { "input": "sesquicentennial", "output": "⠎⠑⠎⠟⠥⠊⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "sesquicentennial's", "output": "⠎⠑⠎⠟⠥⠊⠉⠢⠞⠢â â Šâ â ‡â „â Ž" }, { "input": "sesquicentennials", "output": "⠎⠑⠎⠟⠥⠊⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "session", "output": "â Žâ ‘â Žâ ¨â " }, { "input": "session's", "output": "â Žâ ‘â Žâ ¨â â „â Ž" }, { "input": "sessions", "output": "â Žâ ‘â Žâ ¨â â Ž" }, { "input": "set", "output": "â Žâ ‘â ž" }, { "input": "set's", "output": "â Žâ ‘â žâ „â Ž" }, { "input": "setback", "output": "â Žâ ‘â žâ ƒâ â ‰â …" }, { "input": "setback's", "output": "â Žâ ‘â žâ ƒâ â ‰â …â „â Ž" }, { "input": "setbacks", "output": "â Žâ ‘â žâ ƒâ â ‰â …â Ž" }, { "input": "sets", "output": "â Žâ ‘â žâ Ž" }, { "input": "setscrew", "output": "⠎⠑⠞⠎⠉⠗⠑⠺" }, { "input": "setscrew's", "output": "⠎⠑⠞⠎⠉⠗⠑⠺⠄⠎" }, { "input": "setscrews", "output": "⠎⠑⠞⠎⠉⠗⠑⠺⠎" }, { "input": "settable", "output": "â Žâ ‘â žâ žâ â ¼" }, { "input": "settee", "output": "â Žâ ‘â žâ žâ ‘â ‘" }, { "input": "settee's", "output": "â Žâ ‘â žâ žâ ‘â ‘â „â Ž" }, { "input": "settees", "output": "â Žâ ‘â žâ žâ ‘â ‘â Ž" }, { "input": "setter", "output": "â Žâ ‘â žâ žâ »" }, { "input": "setter's", "output": "⠎⠑⠞⠞⠻⠄⠎" }, { "input": "setters", "output": "⠎⠑⠞⠞⠻⠎" }, { "input": "setting", "output": "â Žâ ‘â žâ žâ Œ" }, { "input": "setting's", "output": "⠎⠑⠞⠞⠌⠄⠎" }, { "input": "settings", "output": "⠎⠑⠞⠞⠌⠎" }, { "input": "settle", "output": "⠎⠑⠞⠞⠇⠑" }, { "input": "settle's", "output": "⠎⠑⠞⠞⠇⠑⠄⠎" }, { "input": "settled", "output": "⠎⠑⠞⠞⠇⠫" }, { "input": "settlement", "output": "⠎⠑⠞⠞⠇⠑⠰⠞" }, { "input": "settlement's", "output": "⠎⠑⠞⠞⠇⠑⠰⠞⠄⠎" }, { "input": "settlements", "output": "⠎⠑⠞⠞⠇⠑⠰⠞⠎" }, { "input": "settler", "output": "⠎⠑⠞⠞⠇⠻" }, { "input": "settler's", "output": "⠎⠑⠞⠞⠇⠻⠄⠎" }, { "input": "settlers", "output": "⠎⠑⠞⠞⠇⠻⠎" }, { "input": "settles", "output": "⠎⠑⠞⠞⠇⠑⠎" }, { "input": "settling", "output": "⠎⠑⠞⠞⠇⠌" }, { "input": "setup", "output": "â Žâ ‘â žâ ¥â " }, { "input": "setup's", "output": "â Žâ ‘â žâ ¥â â „â Ž" }, { "input": "setups", "output": "â Žâ ‘â žâ ¥â â Ž" }, { "input": "seven", "output": "â Žâ ‘â §â ¢" }, { "input": "seven's", "output": "⠎⠑⠧⠢⠄⠎" }, { "input": "sevens", "output": "⠎⠑⠧⠢⠎" }, { "input": "seventeen", "output": "⠎⠑⠧⠢⠞⠑⠢" }, { "input": "seventeen's", "output": "⠎⠑⠧⠢⠞⠑⠢⠄⠎" }, { "input": "seventeens", "output": "⠎⠑⠧⠢⠞⠑⠢⠎" }, { "input": "seventeenth", "output": "⠎⠑⠧⠢⠞⠑⠢⠹" }, { "input": "seventeenth's", "output": "⠎⠑⠧⠢⠞⠑⠢⠹⠄⠎" }, { "input": "seventeenths", "output": "⠎⠑⠧⠢⠞⠑⠢⠹⠎" }, { "input": "seventh", "output": "⠎⠑⠧⠢⠹" }, { "input": "seventh's", "output": "⠎⠑⠧⠢⠹⠄⠎" }, { "input": "sevenths", "output": "⠎⠑⠧⠢⠹⠎" }, { "input": "seventies", "output": "⠎⠑⠧⠢⠞⠊⠑⠎" }, { "input": "seventieth", "output": "⠎⠑⠧⠢⠞⠊⠑⠹" }, { "input": "seventieth's", "output": "⠎⠑⠧⠢⠞⠊⠑⠹⠄⠎" }, { "input": "seventieths", "output": "⠎⠑⠧⠢⠞⠊⠑⠹⠎" }, { "input": "seventy", "output": "⠎⠑⠧⠢⠞⠽" }, { "input": "seventy's", "output": "⠎⠑⠧⠢⠞⠽⠄⠎" }, { "input": "sever", "output": "â Žâ â ‘" }, { "input": "several", "output": "â Žâ â ‘â â ‡" }, { "input": "several's", "output": "â Žâ â ‘â â ‡â „â Ž" }, { "input": "severally", "output": "â Žâ â ‘â  â ½" }, { "input": "severance", "output": "â Žâ â ‘⠨⠑" }, { "input": "severance's", "output": "â Žâ â ‘⠨⠑⠄⠎" }, { "input": "severances", "output": "â Žâ â ‘⠨⠑⠎" }, { "input": "severe", "output": "⠎⠑⠧⠻⠑" }, { "input": "severed", "output": "â Žâ â ‘â «" }, { "input": "severely", "output": "⠎⠑⠧⠻⠑⠇⠽" }, { "input": "severeness", "output": "⠎⠑⠧⠻⠑⠰⠎" }, { "input": "severeness's", "output": "⠎⠑⠧⠻⠑⠰⠎⠄⠎" }, { "input": "severer", "output": "⠎⠑⠧⠻⠻" }, { "input": "severest", "output": "⠎⠑⠧⠻⠑⠌" }, { "input": "severing", "output": "â Žâ â ‘â Œ" }, { "input": "severity", "output": "⠎⠑⠧⠻⠰⠽" }, { "input": "severity's", "output": "⠎⠑⠧⠻⠰⠽⠄⠎" }, { "input": "severs", "output": "â Žâ â ‘â Ž" }, { "input": "sew", "output": "â Žâ ‘â º" }, { "input": "sewage", "output": "â Žâ ‘â ºâ â ›â ‘" }, { "input": "sewage's", "output": "â Žâ ‘â ºâ â ›â ‘â „â Ž" }, { "input": "sewed", "output": "⠎⠑⠺⠫" }, { "input": "sewer", "output": "⠎⠑⠺⠻" }, { "input": "sewer's", "output": "⠎⠑⠺⠻⠄⠎" }, { "input": "sewerage", "output": "⠎⠑⠺⠻â â ›â ‘" }, { "input": "sewerage's", "output": "⠎⠑⠺⠻â â ›â ‘â „â Ž" }, { "input": "sewers", "output": "⠎⠑⠺⠻⠎" }, { "input": "sewing", "output": "⠎⠑⠺⠌" }, { "input": "sewing's", "output": "⠎⠑⠺⠌⠄⠎" }, { "input": "sewn", "output": "â Žâ ‘â ºâ " }, { "input": "sews", "output": "⠎⠑⠺⠎" }, { "input": "sex", "output": "â Žâ ‘â ­" }, { "input": "sex's", "output": "â Žâ ‘â ­â „â Ž" }, { "input": "sexagenarian", "output": "â Žâ ‘â ­â â ›â ¢â œâ Šâ â " }, { "input": "sexagenarian's", "output": "â Žâ ‘â ­â â ›â ¢â œâ Šâ â â „â Ž" }, { "input": "sexagenarians", "output": "â Žâ ‘â ­â â ›â ¢â œâ Šâ â â Ž" }, { "input": "sexed", "output": "â Žâ ‘â ­â «" }, { "input": "sexes", "output": "â Žâ ‘â ­â ‘â Ž" }, { "input": "sexier", "output": "â Žâ ‘â ­â Šâ »" }, { "input": "sexiest", "output": "â Žâ ‘â ­â Šâ ‘â Œ" }, { "input": "sexiness", "output": "â Žâ ‘â ­â Šâ °â Ž" }, { "input": "sexiness's", "output": "â Žâ ‘â ­â Šâ °â Žâ „â Ž" }, { "input": "sexing", "output": "â Žâ ‘â ­â Œ" }, { "input": "sexism", "output": "â Žâ ‘â ­â Šâ Žâ " }, { "input": "sexism's", "output": "â Žâ ‘â ­â Šâ Žâ â „â Ž" }, { "input": "sexist", "output": "â Žâ ‘â ­â Šâ Œ" }, { "input": "sexist's", "output": "⠎⠑⠭⠊⠌⠄⠎" }, { "input": "sexists", "output": "⠎⠑⠭⠊⠌⠎" }, { "input": "sexless", "output": "⠎⠑⠭⠨⠎" }, { "input": "sexology's", "output": "⠎⠑⠭⠕⠇⠕⠛⠽⠄⠎" }, { "input": "sexpot", "output": "â Žâ ‘â ­â â •â ž" }, { "input": "sexpot's", "output": "â Žâ ‘â ­â â •â žâ „â Ž" }, { "input": "sexpots", "output": "â Žâ ‘â ­â â •â žâ Ž" }, { "input": "sextant", "output": "â Žâ ‘â ­â žâ â â ž" }, { "input": "sextant's", "output": "â Žâ ‘â ­â žâ â â žâ „â Ž" }, { "input": "sextants", "output": "â Žâ ‘â ­â žâ â â žâ Ž" }, { "input": "sextet", "output": "â Žâ ‘â ­â žâ ‘â ž" }, { "input": "sextet's", "output": "â Žâ ‘â ­â žâ ‘â žâ „â Ž" }, { "input": "sextets", "output": "â Žâ ‘â ­â žâ ‘â žâ Ž" }, { "input": "sexton", "output": "â Žâ ‘â ­â žâ •â " }, { "input": "sexton's", "output": "â Žâ ‘â ­â žâ •â â „â Ž" }, { "input": "sextons", "output": "â Žâ ‘â ­â žâ •â â Ž" }, { "input": "sexual", "output": "â Žâ ‘â ­â ¥â â ‡" }, { "input": "sexuality", "output": "â Žâ ‘â ­â ¥â â ‡â °â ½" }, { "input": "sexuality's", "output": "â Žâ ‘â ­â ¥â â ‡â °â ½â „â Ž" }, { "input": "sexually", "output": "⠎⠑⠭⠥⠠⠽" }, { "input": "sexy", "output": "â Žâ ‘â ­â ½" }, { "input": "sh", "output": "â Žâ “" }, { "input": "shabbier", "output": "â ©â â †â Šâ »" }, { "input": "shabbiest", "output": "â ©â â †â Šâ ‘â Œ" }, { "input": "shabbily", "output": "â ©â â †â Šâ ‡â ½" }, { "input": "shabbiness", "output": "â ©â â †â Šâ °â Ž" }, { "input": "shabbiness's", "output": "â ©â â †â Šâ °â Žâ „â Ž" }, { "input": "shabby", "output": "â ©â â †â ½" }, { "input": "shack", "output": "â ©â â ‰â …" }, { "input": "shack's", "output": "â ©â â ‰â …â „â Ž" }, { "input": "shackle", "output": "â ©â â ‰â …⠇⠑" }, { "input": "shackle's", "output": "â ©â â ‰â …⠇⠑⠄⠎" }, { "input": "shackled", "output": "â ©â â ‰â …⠇⠫" }, { "input": "shackles", "output": "â ©â â ‰â …⠇⠑⠎" }, { "input": "shackling", "output": "â ©â â ‰â …⠇⠌" }, { "input": "shacks", "output": "â ©â â ‰â …â Ž" }, { "input": "shad", "output": "â ©â â ™" }, { "input": "shad's", "output": "â ©â â ™â „â Ž" }, { "input": "shade", "output": "â ©â â ™â ‘" }, { "input": "shade's", "output": "â ©â â ™â ‘â „â Ž" }, { "input": "shaded", "output": "â ©â â ™â «" }, { "input": "shades", "output": "â ©â â ™â ‘â Ž" }, { "input": "shadier", "output": "â ©â â ™â Šâ »" }, { "input": "shadiest", "output": "â ©â â ™â Šâ ‘â Œ" }, { "input": "shadily", "output": "â ©â â ™â Šâ ‡â ½" }, { "input": "shadiness", "output": "â ©â â ™â Šâ °â Ž" }, { "input": "shadiness's", "output": "â ©â â ™â Šâ °â Žâ „â Ž" }, { "input": "shading", "output": "â ©â â ™â Œ" }, { "input": "shading's", "output": "â ©â â ™â Œâ „â Ž" }, { "input": "shadings", "output": "â ©â â ™â Œâ Ž" }, { "input": "shadow", "output": "â ©â â ™â ª" }, { "input": "shadow's", "output": "â ©â â ™â ªâ „â Ž" }, { "input": "shadowbox", "output": "â ©â â ™â ªâ ƒâ •â ­" }, { "input": "shadowboxed", "output": "â ©â â ™â ªâ ƒâ •â ­â «" }, { "input": "shadowboxes", "output": "â ©â â ™â ªâ ƒâ •â ­â ‘â Ž" }, { "input": "shadowboxing", "output": "â ©â â ™â ªâ ƒâ •â ­â Œ" }, { "input": "shadowed", "output": "â ©â â ™â ªâ «" }, { "input": "shadowier", "output": "â ©â â ™â ªâ Šâ »" }, { "input": "shadowiest", "output": "â ©â â ™â ªâ Šâ ‘â Œ" }, { "input": "shadowing", "output": "â ©â â ™â ªâ Œ" }, { "input": "shadows", "output": "â ©â â ™â ªâ Ž" }, { "input": "shadowy", "output": "â ©â â ™â ªâ ½" }, { "input": "shads", "output": "â ©â â ™â Ž" }, { "input": "shady", "output": "â ©â â ™â ½" }, { "input": "shaft", "output": "â ©â â ‹â ž" }, { "input": "shaft's", "output": "â ©â â ‹â žâ „â Ž" }, { "input": "shafted", "output": "â ©â â ‹â žâ «" }, { "input": "shafting", "output": "â ©â â ‹â žâ Œ" }, { "input": "shafts", "output": "â ©â â ‹â žâ Ž" }, { "input": "shag", "output": "â ©â â ›" }, { "input": "shag's", "output": "â ©â â ›â „â Ž" }, { "input": "shagged", "output": "â ©â â ¶â «" }, { "input": "shaggier", "output": "â ©â â ¶â Šâ »" }, { "input": "shaggiest", "output": "â ©â â ¶â Šâ ‘â Œ" }, { "input": "shagginess", "output": "â ©â â ¶â Šâ °â Ž" }, { "input": "shagginess's", "output": "â ©â â ¶â Šâ °â Žâ „â Ž" }, { "input": "shagging", "output": "â ©â â ¶â Œ" }, { "input": "shaggy", "output": "â ©â â ¶â ½" }, { "input": "shags", "output": "â ©â â ›â Ž" }, { "input": "shah", "output": "â ©â â “" }, { "input": "shah's", "output": "â ©â â “â „â Ž" }, { "input": "shahs", "output": "â ©â â “â Ž" }, { "input": "shake", "output": "â ©â â …â ‘" }, { "input": "shake's", "output": "â ©â â …â ‘â „â Ž" }, { "input": "shakedown", "output": "â ©â â …⠑⠙⠪â " }, { "input": "shakedown's", "output": "â ©â â …⠑⠙⠪â â „â Ž" }, { "input": "shakedowns", "output": "â ©â â …⠑⠙⠪â â Ž" }, { "input": "shaken", "output": "â ©â â …â ¢" }, { "input": "shaker", "output": "â ©â â …â »" }, { "input": "shaker's", "output": "â ©â â …⠻⠄⠎" }, { "input": "shakers", "output": "â ©â â …⠻⠎" }, { "input": "shakes", "output": "â ©â â …â ‘â Ž" }, { "input": "shakeup", "output": "â ©â â …â ‘â ¥â " }, { "input": "shakeup's", "output": "â ©â â …â ‘â ¥â â „â Ž" }, { "input": "shakeups", "output": "â ©â â …â ‘â ¥â â Ž" }, { "input": "shakier", "output": "â ©â â …â Šâ »" }, { "input": "shakiest", "output": "â ©â â …â Šâ ‘â Œ" }, { "input": "shakily", "output": "â ©â â …⠊⠇⠽" }, { "input": "shakiness", "output": "â ©â â …â Šâ °â Ž" }, { "input": "shakiness's", "output": "â ©â â …â Šâ °â Žâ „â Ž" }, { "input": "shaking", "output": "â ©â â …â Œ" }, { "input": "shaky", "output": "â ©â â …â ½" }, { "input": "shale", "output": "â ©â â ‡â ‘" }, { "input": "shale's", "output": "â ©â â ‡â ‘â „â Ž" }, { "input": "shall", "output": "â ©" }, { "input": "shallot", "output": "â ©â â ‡â ‡â •â ž" }, { "input": "shallot's", "output": "â ©â â ‡â ‡â •â žâ „â Ž" }, { "input": "shallots", "output": "â ©â â ‡â ‡â •â žâ Ž" }, { "input": "shallow", "output": "â ©â â ‡â ‡â ª" }, { "input": "shallow's", "output": "â ©â â ‡â ‡â ªâ „â Ž" }, { "input": "shallower", "output": "â ©â â ‡â ‡â ªâ »" }, { "input": "shallowest", "output": "â ©â â ‡â ‡â ªâ ‘â Œ" }, { "input": "shallowness", "output": "â ©â â ‡â ‡â ªâ °â Ž" }, { "input": "shallowness's", "output": "â ©â â ‡â ‡â ªâ °â Žâ „â Ž" }, { "input": "shallows", "output": "â ©â â ‡â ‡â ªâ Ž" }, { "input": "shalt", "output": "â ©â â ‡â ž" }, { "input": "sham", "output": "â ©â â " }, { "input": "sham's", "output": "â ©â â â „â Ž" }, { "input": "shaman", "output": "â ©â â â â " }, { "input": "shaman's", "output": "â ©â â â â â „â Ž" }, { "input": "shamanic", "output": "â ©â â â â â Šâ ‰" }, { "input": "shamans", "output": "â ©â â â â â Ž" }, { "input": "shamble", "output": "â ©â â â ¼" }, { "input": "shamble's", "output": "â ©â â â ¼â „â Ž" }, { "input": "shambled", "output": "â ©â â â ¼â ™" }, { "input": "shambles", "output": "â ©â â â ¼â Ž" }, { "input": "shambles's", "output": "â ©â â â ¼â Žâ „â Ž" }, { "input": "shambling", "output": "â ©â â â ƒâ ‡â Œ" }, { "input": "shame", "output": "â ©â â â ‘" }, { "input": "shame's", "output": "â ©â â â ‘â „â Ž" }, { "input": "shamed", "output": "â ©â â â «" }, { "input": "shamefaced", "output": "â ©â â â ‘â ‹â â ‰â «" }, { "input": "shameful", "output": "â ©â â â ‘â °â ‡" }, { "input": "shamefully", "output": "â ©â â â ‘⠰⠇⠇⠽" }, { "input": "shamefulness", "output": "â ©â â â ‘⠰⠇⠰⠎" }, { "input": "shamefulness's", "output": "â ©â â â ‘⠰⠇⠰⠎⠄⠎" }, { "input": "shameless", "output": "â ©â â â ‘⠨⠎" }, { "input": "shamelessly", "output": "â ©â â â ‘⠨⠎⠇⠽" }, { "input": "shamelessness's", "output": "â ©â â â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "shames", "output": "â ©â â â ‘â Ž" }, { "input": "shaming", "output": "â ©â â â Œ" }, { "input": "shammed", "output": "â ©â â â â «" }, { "input": "shamming", "output": "â ©â â â â Œ" }, { "input": "shampoo", "output": "â ©â â â â •â •" }, { "input": "shampoo's", "output": "â ©â â â â •â •â „â Ž" }, { "input": "shampooed", "output": "â ©â â â â •â •â «" }, { "input": "shampooer", "output": "â ©â â â â •â •â »" }, { "input": "shampooer's", "output": "â ©â â â â •⠕⠻⠄⠎" }, { "input": "shampooers", "output": "â ©â â â â •⠕⠻⠎" }, { "input": "shampooing", "output": "â ©â â â â •â •â Œ" }, { "input": "shampoos", "output": "â ©â â â â •â •â Ž" }, { "input": "shamrock", "output": "â ©â â â —⠕⠉⠅" }, { "input": "shamrock's", "output": "â ©â â â —⠕⠉⠅⠄⠎" }, { "input": "shamrocks", "output": "â ©â â â —⠕⠉⠅⠎" }, { "input": "shams", "output": "â ©â â â Ž" }, { "input": "shandy", "output": "⠩⠯⠽" }, { "input": "shanghai", "output": "â ©â â â ›â “â â Š" }, { "input": "shanghaied", "output": "â ©â â â ›â “â â Šâ «" }, { "input": "shanghaiing", "output": "â ©â â â ›â “â â Šâ Œ" }, { "input": "shanghais", "output": "â ©â â â ›â “â â Šâ Ž" }, { "input": "shank", "output": "â ©â â â …" }, { "input": "shank's", "output": "â ©â â â …â „â Ž" }, { "input": "shanks", "output": "â ©â â â …â Ž" }, { "input": "shanties", "output": "â ©â â â žâ Šâ ‘â Ž" }, { "input": "shantung", "output": "â ©â â â žâ ¥â â ›" }, { "input": "shantung's", "output": "â ©â â â žâ ¥â â ›â „â Ž" }, { "input": "shanty", "output": "â ©â â â žâ ½" }, { "input": "shanty's", "output": "â ©â â â žâ ½â „â Ž" }, { "input": "shantytown", "output": "â ©â â â žâ ½â žâ ªâ " }, { "input": "shantytown's", "output": "â ©â â â žâ ½â žâ ªâ â „â Ž" }, { "input": "shantytowns", "output": "â ©â â â žâ ½â žâ ªâ â Ž" }, { "input": "shape", "output": "â ©â â â ‘" }, { "input": "shape's", "output": "â ©â â â ‘â „â Ž" }, { "input": "shaped", "output": "â ©â â â «" }, { "input": "shapeless", "output": "â ©â â â ‘⠨⠎" }, { "input": "shapelessly", "output": "â ©â â â ‘⠨⠎⠇⠽" }, { "input": "shapelessness", "output": "â ©â â â ‘⠨⠎⠰⠎" }, { "input": "shapelessness's", "output": "â ©â â â ‘⠨⠎⠰⠎⠄⠎" }, { "input": "shapelier", "output": "â ©â â â ‘⠇⠊⠻" }, { "input": "shapeliest", "output": "â ©â â â ‘⠇⠊⠑⠌" }, { "input": "shapeliness", "output": "â ©â â â ‘⠇⠊⠰⠎" }, { "input": "shapeliness's", "output": "â ©â â â ‘⠇⠊⠰⠎⠄⠎" }, { "input": "shapely", "output": "â ©â â â ‘⠇⠽" }, { "input": "shapes", "output": "â ©â â â ‘â Ž" }, { "input": "shaping", "output": "â ©â â â Œ" }, { "input": "shard", "output": "⠩⠜⠙" }, { "input": "shard's", "output": "⠩⠜⠙⠄⠎" }, { "input": "shards", "output": "⠩⠜⠙⠎" }, { "input": "share", "output": "⠩⠜⠑" }, { "input": "share's", "output": "⠩⠜⠑⠄⠎" }, { "input": "sharecrop", "output": "⠩⠜⠑⠉⠗⠕â " }, { "input": "sharecropped", "output": "⠩⠜⠑⠉⠗⠕â â â «" }, { "input": "sharecropper", "output": "⠩⠜⠑⠉⠗⠕â â â »" }, { "input": "sharecropper's", "output": "⠩⠜⠑⠉⠗⠕â â â »â „â Ž" }, { "input": "sharecroppers", "output": "⠩⠜⠑⠉⠗⠕â â â »â Ž" }, { "input": "sharecropping", "output": "⠩⠜⠑⠉⠗⠕â â â Œ" }, { "input": "sharecrops", "output": "⠩⠜⠑⠉⠗⠕â â Ž" }, { "input": "shared", "output": "⠩⠜⠫" }, { "input": "shareholder", "output": "⠩⠜⠑⠓⠕⠇⠙⠻" }, { "input": "shareholder's", "output": "⠩⠜⠑⠓⠕⠇⠙⠻⠄⠎" }, { "input": "shareholders", "output": "⠩⠜⠑⠓⠕⠇⠙⠻⠎" }, { "input": "sharer", "output": "⠩⠜⠻" }, { "input": "sharer's", "output": "⠩⠜⠻⠄⠎" }, { "input": "sharers", "output": "⠩⠜⠻⠎" }, { "input": "shares", "output": "⠩⠜⠑⠎" }, { "input": "shareware's", "output": "⠩⠜⠑⠺⠜⠑⠄⠎" }, { "input": "sharia's", "output": "⠩⠜⠊â â „â Ž" }, { "input": "sharing", "output": "⠩⠜⠌" }, { "input": "shark", "output": "⠩⠜⠅" }, { "input": "shark's", "output": "⠩⠜⠅⠄⠎" }, { "input": "sharked", "output": "⠩⠜⠅⠫" }, { "input": "sharking", "output": "⠩⠜⠅⠌" }, { "input": "sharks", "output": "⠩⠜⠅⠎" }, { "input": "sharkskin", "output": "⠩⠜⠅⠎⠅⠔" }, { "input": "sharkskin's", "output": "⠩⠜⠅⠎⠅⠔⠄⠎" }, { "input": "sharp", "output": "â ©â œâ " }, { "input": "sharp's", "output": "â ©â œâ â „â Ž" }, { "input": "sharped", "output": "â ©â œâ â «" }, { "input": "sharpen", "output": "â ©â œâ â ¢" }, { "input": "sharpened", "output": "â ©â œâ â ¢â «" }, { "input": "sharpener", "output": "â ©â œâ â ¢â »" }, { "input": "sharpener's", "output": "â ©â œâ â ¢â »â „â Ž" }, { "input": "sharpeners", "output": "â ©â œâ â ¢â »â Ž" }, { "input": "sharpening", "output": "â ©â œâ â ¢â Œ" }, { "input": "sharpens", "output": "â ©â œâ â ¢â Ž" }, { "input": "sharper", "output": "â ©â œâ â »" }, { "input": "sharper's", "output": "â ©â œâ â »â „â Ž" }, { "input": "sharpers", "output": "â ©â œâ â »â Ž" }, { "input": "sharpest", "output": "â ©â œâ â ‘â Œ" }, { "input": "sharpie", "output": "â ©â œâ â Šâ ‘" }, { "input": "sharpie's", "output": "â ©â œâ â Šâ ‘â „â Ž" }, { "input": "sharpies", "output": "â ©â œâ â Šâ ‘â Ž" }, { "input": "sharping", "output": "â ©â œâ â Œ" }, { "input": "sharply", "output": "â ©â œâ â ‡â ½" }, { "input": "sharpness", "output": "â ©â œâ â °â Ž" }, { "input": "sharpness's", "output": "â ©â œâ â °â Žâ „â Ž" }, { "input": "sharps", "output": "â ©â œâ â Ž" }, { "input": "sharpshooter", "output": "â ©â œâ â ©â •â •â žâ »" }, { "input": "sharpshooter's", "output": "â ©â œâ â ©â •⠕⠞⠻⠄⠎" }, { "input": "sharpshooters", "output": "â ©â œâ â ©â •⠕⠞⠻⠎" }, { "input": "sharpshooting", "output": "â ©â œâ â ©â •â •â žâ Œ" }, { "input": "sharpshooting's", "output": "â ©â œâ â ©â •⠕⠞⠌⠄⠎" }, { "input": "shatter", "output": "â ©â â žâ žâ »" }, { "input": "shatter's", "output": "â ©â â žâ žâ »â „â Ž" }, { "input": "shattered", "output": "â ©â â žâ žâ »â «" }, { "input": "shattering", "output": "â ©â â žâ žâ »â Œ" }, { "input": "shatterproof", "output": "â ©â â žâ žâ »â â —â •â ·" }, { "input": "shatters", "output": "â ©â â žâ žâ »â Ž" }, { "input": "shave", "output": "â ©â â §â ‘" }, { "input": "shave's", "output": "â ©â â §â ‘â „â Ž" }, { "input": "shaved", "output": "â ©â â §â «" }, { "input": "shaven", "output": "â ©â â §â ¢" }, { "input": "shaver", "output": "â ©â â §â »" }, { "input": "shaver's", "output": "â ©â â §â »â „â Ž" }, { "input": "shavers", "output": "â ©â â §â »â Ž" }, { "input": "shaves", "output": "â ©â â §â ‘â Ž" }, { "input": "shaving", "output": "â ©â â §â Œ" }, { "input": "shaving's", "output": "â ©â â §â Œâ „â Ž" }, { "input": "shavings", "output": "â ©â â §â Œâ Ž" }, { "input": "shawl", "output": "â ©â â ºâ ‡" }, { "input": "shawl's", "output": "â ©â â ºâ ‡â „â Ž" }, { "input": "shawls", "output": "â ©â â ºâ ‡â Ž" }, { "input": "shay", "output": "â ©â â ½" }, { "input": "shay's", "output": "â ©â â ½â „â Ž" }, { "input": "shays", "output": "â ©â â ½â Ž" }, { "input": "she", "output": "â ©â ‘" }, { "input": "she's", "output": "â ©â ‘â „â Ž" }, { "input": "sheaf", "output": "â ©â ‚â ‹" }, { "input": "sheaf's", "output": "â ©â ‚â ‹â „â Ž" }, { "input": "shear", "output": "â ©â ‘â œ" }, { "input": "shear's", "output": "⠩⠑⠜⠄⠎" }, { "input": "sheared", "output": "⠩⠑⠜⠫" }, { "input": "shearer", "output": "⠩⠑⠜⠻" }, { "input": "shearer's", "output": "⠩⠑⠜⠻⠄⠎" }, { "input": "shearers", "output": "⠩⠑⠜⠻⠎" }, { "input": "shearing", "output": "⠩⠑⠜⠌" }, { "input": "shears", "output": "⠩⠑⠜⠎" }, { "input": "sheath", "output": "â ©â ‚â ¹" }, { "input": "sheath's", "output": "⠩⠂⠹⠄⠎" }, { "input": "sheathe", "output": "â ©â ‚â ®" }, { "input": "sheathed", "output": "⠩⠂⠮⠙" }, { "input": "sheathes", "output": "⠩⠂⠮⠎" }, { "input": "sheathing", "output": "⠩⠂⠹⠌" }, { "input": "sheathing's", "output": "⠩⠂⠹⠌⠄⠎" }, { "input": "sheathings", "output": "⠩⠂⠹⠌⠎" }, { "input": "sheaths", "output": "⠩⠂⠹⠎" }, { "input": "sheave", "output": "â ©â ‚â §â ‘" }, { "input": "sheave's", "output": "â ©â ‚â §â ‘â „â Ž" }, { "input": "sheaved", "output": "â ©â ‚â §â «" }, { "input": "sheaves", "output": "â ©â ‚â §â ‘â Ž" }, { "input": "sheaving", "output": "â ©â ‚â §â Œ" }, { "input": "shebang", "output": "â ©â ‘â ƒâ â â ›" }, { "input": "shebang's", "output": "â ©â ‘â ƒâ â â ›â „â Ž" }, { "input": "shebangs", "output": "â ©â ‘â ƒâ â â ›â Ž" }, { "input": "shed", "output": "â ©â «" }, { "input": "shed's", "output": "â ©â «â „â Ž" }, { "input": "shedding", "output": "⠩⠫⠙⠌" }, { "input": "sheds", "output": "â ©â «â Ž" }, { "input": "sheen", "output": "â ©â ‘â ¢" }, { "input": "sheen's", "output": "⠩⠑⠢⠄⠎" }, { "input": "sheenier", "output": "⠩⠑⠢⠊⠻" }, { "input": "sheeniest", "output": "⠩⠑⠢⠊⠑⠌" }, { "input": "sheeny", "output": "⠩⠑⠢⠽" }, { "input": "sheep", "output": "â ©â ‘â ‘â " }, { "input": "sheep's", "output": "â ©â ‘â ‘â â „â Ž" }, { "input": "sheepdog", "output": "â ©â ‘â ‘â â ™â •â ›" }, { "input": "sheepdog's", "output": "â ©â ‘â ‘â â ™â •⠛⠄⠎" }, { "input": "sheepdogs", "output": "â ©â ‘â ‘â â ™â •⠛⠎" }, { "input": "sheepfold", "output": "â ©â ‘â ‘â â ‹â •⠇⠙" }, { "input": "sheepfold's", "output": "â ©â ‘â ‘â â ‹â •⠇⠙⠄⠎" }, { "input": "sheepfolds", "output": "â ©â ‘â ‘â â ‹â •⠇⠙⠎" }, { "input": "sheepherder", "output": "â ©â ‘â ‘â â “⠻⠙⠻" }, { "input": "sheepherder's", "output": "â ©â ‘â ‘â â “⠻⠙⠻⠄⠎" }, { "input": "sheepherders", "output": "â ©â ‘â ‘â â “⠻⠙⠻⠎" }, { "input": "sheepish", "output": "â ©â ‘â ‘â â Šâ ©" }, { "input": "sheepishly", "output": "â ©â ‘â ‘â â Šâ ©â ‡â ½" }, { "input": "sheepishness", "output": "â ©â ‘â ‘â â Šâ ©â °â Ž" }, { "input": "sheepishness's", "output": "â ©â ‘â ‘â â Šâ ©â °â Žâ „â Ž" }, { "input": "sheepskin", "output": "â ©â ‘â ‘â â Žâ …â ”" }, { "input": "sheepskin's", "output": "â ©â ‘â ‘â â Žâ …⠔⠄⠎" }, { "input": "sheepskins", "output": "â ©â ‘â ‘â â Žâ …⠔⠎" }, { "input": "sheer", "output": "â ©â ‘â »" }, { "input": "sheer's", "output": "⠩⠑⠻⠄⠎" }, { "input": "sheered", "output": "⠩⠑⠻⠫" }, { "input": "sheerer", "output": "⠩⠑⠻⠻" }, { "input": "sheerest", "output": "⠩⠑⠻⠑⠌" }, { "input": "sheering", "output": "⠩⠑⠻⠌" }, { "input": "sheerness", "output": "⠩⠑⠻⠰⠎" }, { "input": "sheerness's", "output": "⠩⠑⠻⠰⠎⠄⠎" }, { "input": "sheers", "output": "⠩⠑⠻⠎" }, { "input": "sheet", "output": "â ©â ‘â ‘â ž" }, { "input": "sheet's", "output": "â ©â ‘â ‘â žâ „â Ž" }, { "input": "sheeting", "output": "â ©â ‘â ‘â žâ Œ" }, { "input": "sheeting's", "output": "⠩⠑⠑⠞⠌⠄⠎" }, { "input": "sheetlike", "output": "⠩⠑⠑⠞⠇⠊⠅⠑" }, { "input": "sheets", "output": "â ©â ‘â ‘â žâ Ž" }, { "input": "sheikdom", "output": "⠩⠑⠊⠅⠙⠕â " }, { "input": "sheikdom's", "output": "⠩⠑⠊⠅⠙⠕â â „â Ž" }, { "input": "sheikdoms", "output": "⠩⠑⠊⠅⠙⠕â â Ž" }, { "input": "sheikh", "output": "â ©â ‘â Šâ …â “" }, { "input": "sheikh's", "output": "â ©â ‘â Šâ …â “â „â Ž" }, { "input": "sheikhs", "output": "â ©â ‘â Šâ …â “â Ž" }, { "input": "shekel", "output": "â ©â ‘â …â ‘â ‡" }, { "input": "shekel's", "output": "⠩⠑⠅⠑⠇⠄⠎" }, { "input": "shekels", "output": "⠩⠑⠅⠑⠇⠎" }, { "input": "shelf", "output": "⠩⠑⠇⠋" }, { "input": "shelf's", "output": "⠩⠑⠇⠋⠄⠎" }, { "input": "shell", "output": "⠩⠑⠇⠇" }, { "input": "shell's", "output": "⠩⠑⠇⠇⠄⠎" }, { "input": "shellac", "output": "⠩⠑⠇⠇â â ‰" }, { "input": "shellac's", "output": "⠩⠑⠇⠇â â ‰â „â Ž" }, { "input": "shellacked", "output": "⠩⠑⠇⠇â â ‰â …â «" }, { "input": "shellacking", "output": "⠩⠑⠇⠇â â ‰â …â Œ" }, { "input": "shellacking's", "output": "⠩⠑⠇⠇â â ‰â …⠌⠄⠎" }, { "input": "shellackings", "output": "⠩⠑⠇⠇â â ‰â …⠌⠎" }, { "input": "shellacs", "output": "⠩⠑⠇⠇â â ‰â Ž" }, { "input": "shelled", "output": "⠩⠑⠇⠇⠫" }, { "input": "sheller", "output": "⠩⠑⠇⠇⠻" }, { "input": "shellfire's", "output": "⠩⠑⠇⠇⠋⠊⠗⠑⠄⠎" }, { "input": "shellfish", "output": "⠩⠑⠇⠇⠋⠊⠩" }, { "input": "shellfish's", "output": "⠩⠑⠇⠇⠋⠊⠩⠄⠎" }, { "input": "shellfishes", "output": "⠩⠑⠇⠇⠋⠊⠩⠑⠎" }, { "input": "shelling", "output": "⠩⠑⠇⠇⠌" }, { "input": "shells", "output": "⠩⠑⠇⠇⠎" }, { "input": "shelter", "output": "⠩⠑⠇⠞⠻" }, { "input": "shelter's", "output": "⠩⠑⠇⠞⠻⠄⠎" }, { "input": "sheltered", "output": "⠩⠑⠇⠞⠻⠫" }, { "input": "sheltering", "output": "⠩⠑⠇⠞⠻⠌" }, { "input": "shelters", "output": "⠩⠑⠇⠞⠻⠎" }, { "input": "shelve", "output": "⠩⠑⠇⠧⠑" }, { "input": "shelved", "output": "⠩⠑⠇⠧⠫" }, { "input": "shelves", "output": "⠩⠑⠇⠧⠑⠎" }, { "input": "shelving", "output": "⠩⠑⠇⠧⠌" }, { "input": "shelving's", "output": "⠩⠑⠇⠧⠌⠄⠎" }, { "input": "shenanigan", "output": "â ©â ¢â â â Šâ ›â â " }, { "input": "shenanigan's", "output": "â ©â ¢â â â Šâ ›â â â „â Ž" }, { "input": "shenanigans", "output": "â ©â ¢â â â Šâ ›â â â Ž" }, { "input": "shepherd", "output": "â ©â ‘â â “⠻⠙" }, { "input": "shepherd's", "output": "â ©â ‘â â “⠻⠙⠄⠎" }, { "input": "shepherded", "output": "â ©â ‘â â “⠻⠙⠫" }, { "input": "shepherdess", "output": "â ©â ‘â â “⠻⠙⠑⠎⠎" }, { "input": "shepherdess's", "output": "â ©â ‘â â “⠻⠙⠑⠎⠎⠄⠎" }, { "input": "shepherdesses", "output": "â ©â ‘â â “⠻⠙⠑⠎⠎⠑⠎" }, { "input": "shepherding", "output": "â ©â ‘â â “⠻⠙⠌" }, { "input": "shepherds", "output": "â ©â ‘â â “⠻⠙⠎" }, { "input": "sherbet", "output": "⠩⠻⠃⠑⠞" }, { "input": "sherbet's", "output": "⠩⠻⠃⠑⠞⠄⠎" }, { "input": "sherbets", "output": "⠩⠻⠃⠑⠞⠎" }, { "input": "sheriff", "output": "⠩⠻⠊⠋⠋" }, { "input": "sheriff's", "output": "⠩⠻⠊⠋⠋⠄⠎" }, { "input": "sheriffs", "output": "⠩⠻⠊⠖⠎" }, { "input": "sherries", "output": "⠩⠻⠗⠊⠑⠎" }, { "input": "sherry", "output": "⠩⠻⠗⠽" }, { "input": "sherry's", "output": "⠩⠻⠗⠽⠄⠎" }, { "input": "shes", "output": "â ©â ‘â Ž" }, { "input": "shew", "output": "â ©â ‘â º" }, { "input": "shewed", "output": "⠩⠑⠺⠫" }, { "input": "shewing", "output": "⠩⠑⠺⠌" }, { "input": "shewn", "output": "â ©â ‘â ºâ " }, { "input": "shews", "output": "⠩⠑⠺⠎" }, { "input": "shiatsu's", "output": "â ©â Šâ â žâ Žâ ¥â „â Ž" }, { "input": "shibboleth", "output": "⠩⠊⠆⠕⠇⠑⠹" }, { "input": "shibboleth's", "output": "⠩⠊⠆⠕⠇⠑⠹⠄⠎" }, { "input": "shibboleths", "output": "⠩⠊⠆⠕⠇⠑⠹⠎" }, { "input": "shied", "output": "â ©â Šâ «" }, { "input": "shield", "output": "⠩⠊⠑⠇⠙" }, { "input": "shield's", "output": "⠩⠊⠑⠇⠙⠄⠎" }, { "input": "shielded", "output": "⠩⠊⠑⠇⠙⠫" }, { "input": "shielding", "output": "⠩⠊⠑⠇⠙⠌" }, { "input": "shields", "output": "⠩⠊⠑⠇⠙⠎" }, { "input": "shier", "output": "â ©â Šâ »" }, { "input": "shies", "output": "â ©â Šâ ‘â Ž" }, { "input": "shiest", "output": "â ©â Šâ ‘â Œ" }, { "input": "shift", "output": "â ©â Šâ ‹â ž" }, { "input": "shift's", "output": "â ©â Šâ ‹â žâ „â Ž" }, { "input": "shifted", "output": "â ©â Šâ ‹â žâ «" }, { "input": "shiftier", "output": "â ©â Šâ ‹â žâ Šâ »" }, { "input": "shiftiest", "output": "â ©â Šâ ‹â žâ Šâ ‘â Œ" }, { "input": "shiftily", "output": "⠩⠊⠋⠞⠊⠇⠽" }, { "input": "shiftiness", "output": "â ©â Šâ ‹â žâ Šâ °â Ž" }, { "input": "shiftiness's", "output": "â ©â Šâ ‹â žâ Šâ °â Žâ „â Ž" }, { "input": "shifting", "output": "â ©â Šâ ‹â žâ Œ" }, { "input": "shiftless", "output": "⠩⠊⠋⠞⠨⠎" }, { "input": "shiftlessly", "output": "⠩⠊⠋⠞⠨⠎⠇⠽" }, { "input": "shiftlessness", "output": "⠩⠊⠋⠞⠨⠎⠰⠎" }, { "input": "shiftlessness's", "output": "⠩⠊⠋⠞⠨⠎⠰⠎⠄⠎" }, { "input": "shifts", "output": "â ©â Šâ ‹â žâ Ž" }, { "input": "shifty", "output": "â ©â Šâ ‹â žâ ½" }, { "input": "shill", "output": "⠩⠊⠇⠇" }, { "input": "shill's", "output": "⠩⠊⠇⠇⠄⠎" }, { "input": "shilled", "output": "⠩⠊⠇⠇⠫" }, { "input": "shillelagh", "output": "⠩⠊⠇⠇⠑⠇â â £" }, { "input": "shillelagh's", "output": "⠩⠊⠇⠇⠑⠇â â £â „â Ž" }, { "input": "shillelaghs", "output": "⠩⠊⠇⠇⠑⠇â â £â Ž" }, { "input": "shilling", "output": "⠩⠊⠇⠇⠌" }, { "input": "shilling's", "output": "⠩⠊⠇⠇⠌⠄⠎" }, { "input": "shillings", "output": "⠩⠊⠇⠇⠌⠎" }, { "input": "shills", "output": "⠩⠊⠇⠇⠎" }, { "input": "shim", "output": "â ©â Šâ " }, { "input": "shim's", "output": "â ©â Šâ â „â Ž" }, { "input": "shimmed", "output": "â ©â Šâ â â «" }, { "input": "shimmer", "output": "â ©â Šâ â â »" }, { "input": "shimmer's", "output": "â ©â Šâ â â »â „â Ž" }, { "input": "shimmered", "output": "â ©â Šâ â â »â «" }, { "input": "shimmering", "output": "â ©â Šâ â â »â Œ" }, { "input": "shimmers", "output": "â ©â Šâ â â »â Ž" }, { "input": "shimmery", "output": "â ©â Šâ â â »â ½" }, { "input": "shimmied", "output": "â ©â Šâ â â Šâ «" }, { "input": "shimmies", "output": "â ©â Šâ â â Šâ ‘â Ž" }, { "input": "shimming", "output": "â ©â Šâ â â Œ" }, { "input": "shimmy", "output": "â ©â Šâ â â ½" }, { "input": "shimmy's", "output": "â ©â Šâ â â ½â „â Ž" }, { "input": "shimmying", "output": "â ©â Šâ â â ½â Œ" }, { "input": "shims", "output": "â ©â Šâ â Ž" }, { "input": "shin", "output": "â ©â ”" }, { "input": "shin's", "output": "⠩⠔⠄⠎" }, { "input": "shinbone", "output": "⠩⠔⠃â â •" }, { "input": "shinbone's", "output": "⠩⠔⠃â â •â „â Ž" }, { "input": "shinbones", "output": "⠩⠔⠃â â •â Ž" }, { "input": "shindig", "output": "⠩⠔⠙⠊⠛" }, { "input": "shindig's", "output": "⠩⠔⠙⠊⠛⠄⠎" }, { "input": "shindigs", "output": "⠩⠔⠙⠊⠛⠎" }, { "input": "shine", "output": "⠩⠔⠑" }, { "input": "shine's", "output": "⠩⠔⠑⠄⠎" }, { "input": "shined", "output": "⠩⠔⠫" }, { "input": "shiner", "output": "⠩⠔⠻" }, { "input": "shiner's", "output": "⠩⠔⠻⠄⠎" }, { "input": "shiners", "output": "⠩⠔⠻⠎" }, { "input": "shines", "output": "⠩⠔⠑⠎" }, { "input": "shingle", "output": "⠩⠌⠇⠑" }, { "input": "shingle's", "output": "⠩⠌⠇⠑⠄⠎" }, { "input": "shingled", "output": "⠩⠌⠇⠫" }, { "input": "shingles", "output": "⠩⠌⠇⠑⠎" }, { "input": "shingling", "output": "⠩⠌⠇⠌" }, { "input": "shinguard", "output": "⠩⠔⠛⠥⠜⠙" }, { "input": "shinguard's", "output": "⠩⠔⠛⠥⠜⠙⠄⠎" }, { "input": "shinier", "output": "⠩⠔⠊⠻" }, { "input": "shiniest", "output": "⠩⠔⠊⠑⠌" }, { "input": "shininess", "output": "⠩⠔⠊⠰⠎" }, { "input": "shininess's", "output": "⠩⠔⠊⠰⠎⠄⠎" }, { "input": "shining", "output": "⠩⠔⠌" }, { "input": "shinned", "output": "â ©â ”â â «" }, { "input": "shinnied", "output": "â ©â ”â â Šâ «" }, { "input": "shinnies", "output": "â ©â ”â â Šâ ‘â Ž" }, { "input": "shinning", "output": "â ©â ”â â Œ" }, { "input": "shinny", "output": "â ©â ”â â ½" }, { "input": "shinnying", "output": "â ©â ”â â ½â Œ" }, { "input": "shins", "output": "⠩⠔⠎" }, { "input": "shinsplints", "output": "⠩⠔⠎â â ‡â ”â žâ Ž" }, { "input": "shinsplints's", "output": "⠩⠔⠎â â ‡â ”â žâ Žâ „â Ž" }, { "input": "shiny", "output": "⠩⠔⠽" }, { "input": "ship", "output": "â ©â Šâ " }, { "input": "ship's", "output": "â ©â Šâ â „â Ž" }, { "input": "shipboard", "output": "â ©â Šâ â ƒâ •⠜⠙" }, { "input": "shipboard's", "output": "â ©â Šâ â ƒâ •⠜⠙⠄⠎" }, { "input": "shipboards", "output": "â ©â Šâ â ƒâ •⠜⠙⠎" }, { "input": "shipbuilder", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â »" }, { "input": "shipbuilder's", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â »â „â Ž" }, { "input": "shipbuilders", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â »â Ž" }, { "input": "shipbuilding", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â Œ" }, { "input": "shipbuilding's", "output": "â ©â Šâ â ƒâ ¥â Šâ ‡â ™â Œâ „â Ž" }, { "input": "shipload", "output": "â ©â Šâ â ‡â •â â ™" }, { "input": "shipload's", "output": "â ©â Šâ â ‡â •â â ™â „â Ž" }, { "input": "shiploads", "output": "â ©â Šâ â ‡â •â â ™â Ž" }, { "input": "shipmate", "output": "â ©â Šâ â â â žâ ‘" }, { "input": "shipmate's", "output": "â ©â Šâ â â â žâ ‘â „â Ž" }, { "input": "shipmates", "output": "â ©â Šâ â â â žâ ‘â Ž" }, { "input": "shipment", "output": "â ©â Šâ â °â ž" }, { "input": "shipment's", "output": "â ©â Šâ â °â žâ „â Ž" }, { "input": "shipments", "output": "â ©â Šâ â °â žâ Ž" }, { "input": "shipped", "output": "â ©â Šâ â â «" }, { "input": "shipper", "output": "â ©â Šâ â â »" }, { "input": "shipper's", "output": "â ©â Šâ â â »â „â Ž" }, { "input": "shippers", "output": "â ©â Šâ â â »â Ž" }, { "input": "shipping", "output": "â ©â Šâ â â Œ" }, { "input": "shipping's", "output": "â ©â Šâ â â Œâ „â Ž" }, { "input": "ships", "output": "â ©â Šâ â Ž" }, { "input": "shipshape", "output": "â ©â Šâ â ©â â â ‘" }, { "input": "shipwreck", "output": "â ©â Šâ â ºâ —⠑⠉⠅" }, { "input": "shipwreck's", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠄⠎" }, { "input": "shipwrecked", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠫" }, { "input": "shipwrecking", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠌" }, { "input": "shipwrecks", "output": "â ©â Šâ â ºâ —⠑⠉⠅⠎" }, { "input": "shipwright", "output": "â ©â Šâ â ºâ â —" }, { "input": "shipwright's", "output": "â ©â Šâ â ºâ â —â „â Ž" }, { "input": "shipwrights", "output": "â ©â Šâ â ºâ â —â Ž" }, { "input": "shipyard", "output": "â ©â Šâ â ½â œâ ™" }, { "input": "shipyard's", "output": "â ©â Šâ â ½â œâ ™â „â Ž" }, { "input": "shipyards", "output": "â ©â Šâ â ½â œâ ™â Ž" }, { "input": "shire", "output": "â ©â Šâ —â ‘" }, { "input": "shire's", "output": "â ©â Šâ —â ‘â „â Ž" }, { "input": "shires", "output": "â ©â Šâ —â ‘â Ž" }, { "input": "shirk", "output": "â ©â Šâ —â …" }, { "input": "shirked", "output": "â ©â Šâ —â …â «" }, { "input": "shirker", "output": "â ©â Šâ —â …â »" }, { "input": "shirker's", "output": "⠩⠊⠗⠅⠻⠄⠎" }, { "input": "shirkers", "output": "⠩⠊⠗⠅⠻⠎" }, { "input": "shirking", "output": "â ©â Šâ —â …â Œ" }, { "input": "shirks", "output": "â ©â Šâ —â …â Ž" }, { "input": "shirr", "output": "â ©â Šâ —â —" }, { "input": "shirr's", "output": "â ©â Šâ —â —â „â Ž" }, { "input": "shirred", "output": "â ©â Šâ —â —â «" }, { "input": "shirring", "output": "â ©â Šâ —â —â Œ" }, { "input": "shirring's", "output": "⠩⠊⠗⠗⠌⠄⠎" }, { "input": "shirrings", "output": "⠩⠊⠗⠗⠌⠎" }, { "input": "shirrs", "output": "â ©â Šâ —â —â Ž" }, { "input": "shirt", "output": "â ©â Šâ —â ž" }, { "input": "shirt's", "output": "â ©â Šâ —â žâ „â Ž" }, { "input": "shirted", "output": "â ©â Šâ —â žâ «" }, { "input": "shirtfront", "output": "â ©â Šâ —â žâ ‹â —â •â â ž" }, { "input": "shirtfront's", "output": "â ©â Šâ —â žâ ‹â —â •â â žâ „â Ž" }, { "input": "shirtfronts", "output": "â ©â Šâ —â žâ ‹â —â •â â žâ Ž" }, { "input": "shirting", "output": "â ©â Šâ —â žâ Œ" }, { "input": "shirting's", "output": "⠩⠊⠗⠞⠌⠄⠎" }, { "input": "shirtless", "output": "⠩⠊⠗⠞⠨⠎" }, { "input": "shirts", "output": "â ©â Šâ —â žâ Ž" }, { "input": "shirtsleeve", "output": "⠩⠊⠗⠞⠎⠇⠑⠑⠧⠑" }, { "input": "shirtsleeve's", "output": "⠩⠊⠗⠞⠎⠇⠑⠑⠧⠑⠄⠎" }, { "input": "shirtsleeves", "output": "⠩⠊⠗⠞⠎⠇⠑⠑⠧⠑⠎" }, { "input": "shirttail", "output": "â ©â Šâ —â žâ žâ â Šâ ‡" }, { "input": "shirttail's", "output": "â ©â Šâ —â žâ žâ â Šâ ‡â „â Ž" }, { "input": "shirttails", "output": "â ©â Šâ —â žâ žâ â Šâ ‡â Ž" }, { "input": "shirtwaist", "output": "â ©â Šâ —â žâ ºâ â Šâ Œ" }, { "input": "shirtwaist's", "output": "â ©â Šâ —â žâ ºâ â Šâ Œâ „â Ž" }, { "input": "shirtwaists", "output": "â ©â Šâ —â žâ ºâ â Šâ Œâ Ž" }, { "input": "shit", "output": "â ©â Šâ ž" }, { "input": "shit's", "output": "â ©â Šâ žâ „â Ž" }, { "input": "shits", "output": "â ©â Šâ žâ Ž" }, { "input": "shittier", "output": "â ©â Šâ žâ žâ Šâ »" }, { "input": "shittiest", "output": "â ©â Šâ žâ žâ Šâ ‘â Œ" }, { "input": "shitting", "output": "â ©â Šâ žâ žâ Œ" }, { "input": "shitty", "output": "â ©â Šâ žâ žâ ½" }, { "input": "shiv", "output": "â ©â Šâ §" }, { "input": "shiv's", "output": "â ©â Šâ §â „â Ž" }, { "input": "shiver", "output": "â ©â Šâ §â »" }, { "input": "shiver's", "output": "⠩⠊⠧⠻⠄⠎" }, { "input": "shivered", "output": "⠩⠊⠧⠻⠫" }, { "input": "shivering", "output": "⠩⠊⠧⠻⠌" }, { "input": "shivers", "output": "⠩⠊⠧⠻⠎" }, { "input": "shivery", "output": "⠩⠊⠧⠻⠽" }, { "input": "shivs", "output": "â ©â Šâ §â Ž" }, { "input": "shoal", "output": "â ©â •â â ‡" }, { "input": "shoal's", "output": "â ©â •â â ‡â „â Ž" }, { "input": "shoaled", "output": "â ©â •â â ‡â «" }, { "input": "shoaling", "output": "â ©â •â â ‡â Œ" }, { "input": "shoals", "output": "â ©â •â â ‡â Ž" }, { "input": "shoat", "output": "â ©â •â â ž" }, { "input": "shoat's", "output": "â ©â •â â žâ „â Ž" }, { "input": "shoats", "output": "â ©â •â â žâ Ž" }, { "input": "shock", "output": "⠩⠕⠉⠅" }, { "input": "shock's", "output": "⠩⠕⠉⠅⠄⠎" }, { "input": "shocked", "output": "⠩⠕⠉⠅⠫" }, { "input": "shocker", "output": "⠩⠕⠉⠅⠻" }, { "input": "shocker's", "output": "⠩⠕⠉⠅⠻⠄⠎" }, { "input": "shockers", "output": "⠩⠕⠉⠅⠻⠎" }, { "input": "shocking", "output": "⠩⠕⠉⠅⠌" }, { "input": "shockingly", "output": "⠩⠕⠉⠅⠌⠇⠽" }, { "input": "shockproof", "output": "⠩⠕⠉⠅â â —â •â ·" }, { "input": "shocks", "output": "⠩⠕⠉⠅⠎" }, { "input": "shod", "output": "â ©â •â ™" }, { "input": "shoddier", "output": "⠩⠕⠲⠊⠻" }, { "input": "shoddiest", "output": "⠩⠕⠲⠊⠑⠌" }, { "input": "shoddily", "output": "⠩⠕⠲⠊⠇⠽" }, { "input": "shoddiness", "output": "⠩⠕⠲⠊⠰⠎" }, { "input": "shoddiness's", "output": "⠩⠕⠲⠊⠰⠎⠄⠎" }, { "input": "shoddy", "output": "⠩⠕⠲⠽" }, { "input": "shoddy's", "output": "⠩⠕⠲⠽⠄⠎" }, { "input": "shoe", "output": "â ©â •â ‘" }, { "input": "shoe's", "output": "â ©â •â ‘â „â Ž" }, { "input": "shoehorn", "output": "â ©â •â ‘â “â •â —â " }, { "input": "shoehorn's", "output": "â ©â •â ‘â “â •â —â â „â Ž" }, { "input": "shoehorned", "output": "â ©â •â ‘â “â •â —â â «" }, { "input": "shoehorning", "output": "â ©â •â ‘â “â •â —â â Œ" }, { "input": "shoehorns", "output": "â ©â •â ‘â “â •â —â â Ž" }, { "input": "shoeing", "output": "â ©â •â ‘â Œ" }, { "input": "shoelace", "output": "â ©â •â ‘â ‡â â ‰â ‘" }, { "input": "shoelace's", "output": "â ©â •â ‘â ‡â â ‰â ‘â „â Ž" }, { "input": "shoelaces", "output": "â ©â •â ‘â ‡â â ‰â ‘â Ž" }, { "input": "shoemaker", "output": "â ©â •â ‘â â â …â »" }, { "input": "shoemaker's", "output": "â ©â •â ‘â â â …⠻⠄⠎" }, { "input": "shoemakers", "output": "â ©â •â ‘â â â …⠻⠎" }, { "input": "shoes", "output": "â ©â •â ‘â Ž" }, { "input": "shoeshine", "output": "⠩⠕⠑⠩⠔⠑" }, { "input": "shoeshine's", "output": "⠩⠕⠑⠩⠔⠑⠄⠎" }, { "input": "shoeshines", "output": "⠩⠕⠑⠩⠔⠑⠎" }, { "input": "shoestring", "output": "⠩⠕⠑⠌⠗⠌" }, { "input": "shoestring's", "output": "⠩⠕⠑⠌⠗⠌⠄⠎" }, { "input": "shoestrings", "output": "⠩⠕⠑⠌⠗⠌⠎" }, { "input": "shogun", "output": "⠩⠕⠛⠥â " }, { "input": "shogun's", "output": "⠩⠕⠛⠥â â „â Ž" }, { "input": "shogunate", "output": "⠩⠕⠛⠥â â â žâ ‘" }, { "input": "shogunate's", "output": "⠩⠕⠛⠥â â â žâ ‘â „â Ž" }, { "input": "shoguns", "output": "⠩⠕⠛⠥â â Ž" }, { "input": "shone", "output": "â ©â â •" }, { "input": "shoo", "output": "â ©â •â •" }, { "input": "shooed", "output": "â ©â •â •â «" }, { "input": "shooing", "output": "â ©â •â •â Œ" }, { "input": "shook", "output": "â ©â •â •â …" }, { "input": "shoos", "output": "â ©â •â •â Ž" }, { "input": "shoot", "output": "â ©â •â •â ž" }, { "input": "shoot's", "output": "â ©â •â •â žâ „â Ž" }, { "input": "shooter", "output": "â ©â •â •â žâ »" }, { "input": "shooter's", "output": "⠩⠕⠕⠞⠻⠄⠎" }, { "input": "shooters", "output": "⠩⠕⠕⠞⠻⠎" }, { "input": "shooting", "output": "â ©â •â •â žâ Œ" }, { "input": "shooting's", "output": "⠩⠕⠕⠞⠌⠄⠎" }, { "input": "shootings", "output": "⠩⠕⠕⠞⠌⠎" }, { "input": "shootout", "output": "⠩⠕⠕⠞⠳⠞" }, { "input": "shootout's", "output": "⠩⠕⠕⠞⠳⠞⠄⠎" }, { "input": "shootouts", "output": "⠩⠕⠕⠞⠳⠞⠎" }, { "input": "shoots", "output": "â ©â •â •â žâ Ž" }, { "input": "shop", "output": "â ©â •â " }, { "input": "shop's", "output": "â ©â •â â „â Ž" }, { "input": "shopkeeper", "output": "â ©â •â â …â ‘â ‘â â »" }, { "input": "shopkeeper's", "output": "â ©â •â â …â ‘â ‘â â »â „â Ž" }, { "input": "shopkeepers", "output": "â ©â •â â …â ‘â ‘â â »â Ž" }, { "input": "shoplift", "output": "â ©â •â â ‡â Šâ ‹â ž" }, { "input": "shoplifted", "output": "â ©â •â â ‡â Šâ ‹â žâ «" }, { "input": "shoplifter", "output": "â ©â •â â ‡â Šâ ‹â žâ »" }, { "input": "shoplifter's", "output": "â ©â •â â ‡â Šâ ‹â žâ »â „â Ž" }, { "input": "shoplifters", "output": "â ©â •â â ‡â Šâ ‹â žâ »â Ž" }, { "input": "shoplifting", "output": "â ©â •â â ‡â Šâ ‹â žâ Œ" }, { "input": "shoplifting's", "output": "â ©â •â â ‡â Šâ ‹â žâ Œâ „â Ž" }, { "input": "shoplifts", "output": "â ©â •â â ‡â Šâ ‹â žâ Ž" }, { "input": "shoppe", "output": "â ©â •â â â ‘" }, { "input": "shoppe's", "output": "â ©â •â â â ‘â „â Ž" }, { "input": "shopped", "output": "â ©â •â â â «" }, { "input": "shopper", "output": "â ©â •â â â »" }, { "input": "shopper's", "output": "â ©â •â â â »â „â Ž" }, { "input": "shoppers", "output": "â ©â •â â â »â Ž" }, { "input": "shoppes", "output": "â ©â •â â â ‘â Ž" }, { "input": "shopping", "output": "â ©â •â â â Œ" }, { "input": "shopping's", "output": "â ©â •â â â Œâ „â Ž" }, { "input": "shops", "output": "â ©â •â â Ž" }, { "input": "shoptalk", "output": "â ©â •â â žâ â ‡â …" }, { "input": "shoptalk's", "output": "â ©â •â â žâ â ‡â …â „â Ž" }, { "input": "shopworn", "output": "â ©â •â â ºâ •â —â " }, { "input": "shore", "output": "â ©â •â —â ‘" }, { "input": "shore's", "output": "â ©â •â —â ‘â „â Ž" }, { "input": "shorebird", "output": "⠩⠕⠗⠑⠃⠊⠗⠙" }, { "input": "shorebird's", "output": "⠩⠕⠗⠑⠃⠊⠗⠙⠄⠎" }, { "input": "shorebirds", "output": "⠩⠕⠗⠑⠃⠊⠗⠙⠎" }, { "input": "shored", "output": "â ©â •â —â «" }, { "input": "shoreline", "output": "⠩⠕⠗⠑⠇⠔⠑" }, { "input": "shoreline's", "output": "⠩⠕⠗⠑⠇⠔⠑⠄⠎" }, { "input": "shorelines", "output": "⠩⠕⠗⠑⠇⠔⠑⠎" }, { "input": "shores", "output": "â ©â •â —â ‘â Ž" }, { "input": "shoring", "output": "â ©â •â —â Œ" }, { "input": "shoring's", "output": "⠩⠕⠗⠌⠄⠎" }, { "input": "short", "output": "â ©â •â —â ž" }, { "input": "short's", "output": "â ©â •â —â žâ „â Ž" }, { "input": "shortage", "output": "â ©â •â —â žâ â ›â ‘" }, { "input": "shortage's", "output": "â ©â •â —â žâ â ›â ‘â „â Ž" }, { "input": "shortages", "output": "â ©â •â —â žâ â ›â ‘â Ž" }, { "input": "shortbread", "output": "⠩⠕⠗⠞⠃⠗⠂⠙" }, { "input": "shortbread's", "output": "⠩⠕⠗⠞⠃⠗⠂⠙⠄⠎" }, { "input": "shortcake", "output": "â ©â •â —â žâ ‰â â …â ‘" }, { "input": "shortcake's", "output": "â ©â •â —â žâ ‰â â …â ‘â „â Ž" }, { "input": "shortcakes", "output": "â ©â •â —â žâ ‰â â …â ‘â Ž" }, { "input": "shortchange", "output": "â ©â •â —â žâ ¡â â â ›â ‘" }, { "input": "shortchanged", "output": "â ©â •â —â žâ ¡â â â ›â «" }, { "input": "shortchanges", "output": "â ©â •â —â žâ ¡â â â ›â ‘â Ž" }, { "input": "shortchanging", "output": "â ©â •â —â žâ ¡â â â ›â Œ" }, { "input": "shortcoming", "output": "⠩⠕⠗⠞⠉⠕â â Œ" }, { "input": "shortcoming's", "output": "⠩⠕⠗⠞⠉⠕â â Œâ „â Ž" }, { "input": "shortcomings", "output": "⠩⠕⠗⠞⠉⠕â â Œâ Ž" }, { "input": "shortcut", "output": "⠩⠕⠗⠞⠉⠥⠞" }, { "input": "shortcut's", "output": "⠩⠕⠗⠞⠉⠥⠞⠄⠎" }, { "input": "shortcuts", "output": "⠩⠕⠗⠞⠉⠥⠞⠎" }, { "input": "shorted", "output": "â ©â •â —â žâ «" }, { "input": "shorten", "output": "â ©â •â —â žâ ¢" }, { "input": "shortened", "output": "⠩⠕⠗⠞⠢⠫" }, { "input": "shortening", "output": "⠩⠕⠗⠞⠢⠌" }, { "input": "shortening's", "output": "⠩⠕⠗⠞⠢⠌⠄⠎" }, { "input": "shortenings", "output": "⠩⠕⠗⠞⠢⠌⠎" }, { "input": "shortens", "output": "⠩⠕⠗⠞⠢⠎" }, { "input": "shorter", "output": "â ©â •â —â žâ »" }, { "input": "shortest", "output": "â ©â •â —â žâ ‘â Œ" }, { "input": "shortfall", "output": "â ©â •â —â žâ ‹â â ‡â ‡" }, { "input": "shortfall's", "output": "â ©â •â —â žâ ‹â â ‡â ‡â „â Ž" }, { "input": "shortfalls", "output": "â ©â •â —â žâ ‹â â ‡â ‡â Ž" }, { "input": "shorthand", "output": "â ©â •â —â žâ “â ¯" }, { "input": "shorthand's", "output": "⠩⠕⠗⠞⠓⠯⠄⠎" }, { "input": "shorthorn", "output": "â ©â •â —â žâ “â •â —â " }, { "input": "shorthorn's", "output": "â ©â •â —â žâ “â •â —â â „â Ž" }, { "input": "shorthorns", "output": "â ©â •â —â žâ “â •â —â â Ž" }, { "input": "shorting", "output": "â ©â •â —â žâ Œ" }, { "input": "shortish", "output": "â ©â •â —â žâ Šâ ©" }, { "input": "shortlist", "output": "⠩⠕⠗⠞⠇⠊⠌" }, { "input": "shortly", "output": "⠩⠕⠗⠞⠇⠽" }, { "input": "shortness", "output": "â ©â •â —â žâ °â Ž" }, { "input": "shortness's", "output": "â ©â •â —â žâ °â Žâ „â Ž" }, { "input": "shorts", "output": "â ©â •â —â žâ Ž" }, { "input": "shortsighted", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫" }, { "input": "shortsightedly", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫⠇⠽" }, { "input": "shortsightedness", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫⠰⠎" }, { "input": "shortsightedness's", "output": "⠩⠕⠗⠞⠎⠊⠣⠞⠫⠰⠎⠄⠎" }, { "input": "shortstop", "output": "⠩⠕⠗⠞⠌⠕â " }, { "input": "shortstop's", "output": "⠩⠕⠗⠞⠌⠕â â „â Ž" }, { "input": "shortstops", "output": "⠩⠕⠗⠞⠌⠕â â Ž" }, { "input": "shortwave", "output": "â ©â •â —â žâ ºâ â §â ‘" }, { "input": "shortwave's", "output": "â ©â •â —â žâ ºâ â §â ‘â „â Ž" }, { "input": "shortwaves", "output": "â ©â •â —â žâ ºâ â §â ‘â Ž" }, { "input": "shot", "output": "â ©â •â ž" }, { "input": "shot's", "output": "â ©â •â žâ „â Ž" }, { "input": "shotgun", "output": "⠩⠕⠞⠛⠥â " }, { "input": "shotgun's", "output": "⠩⠕⠞⠛⠥â â „â Ž" }, { "input": "shotgunned", "output": "⠩⠕⠞⠛⠥â â â «" }, { "input": "shotgunning", "output": "⠩⠕⠞⠛⠥â â â Œ" }, { "input": "shotguns", "output": "⠩⠕⠞⠛⠥â â Ž" }, { "input": "shots", "output": "â ©â •â žâ Ž" }, { "input": "should", "output": "â ©â ™" }, { "input": "shoulder", "output": "⠩⠳⠇⠙⠻" }, { "input": "shoulder's", "output": "⠩⠳⠇⠙⠻⠄⠎" }, { "input": "shouldered", "output": "⠩⠳⠇⠙⠻⠫" }, { "input": "shouldering", "output": "⠩⠳⠇⠙⠻⠌" }, { "input": "shoulders", "output": "⠩⠳⠇⠙⠻⠎" }, { "input": "shout", "output": "⠩⠳⠞" }, { "input": "shout's", "output": "⠩⠳⠞⠄⠎" }, { "input": "shouted", "output": "⠩⠳⠞⠫" }, { "input": "shouter", "output": "⠩⠳⠞⠻" }, { "input": "shouter's", "output": "⠩⠳⠞⠻⠄⠎" }, { "input": "shouters", "output": "⠩⠳⠞⠻⠎" }, { "input": "shouting", "output": "⠩⠳⠞⠌" }, { "input": "shouts", "output": "⠩⠳⠞⠎" }, { "input": "shove", "output": "â ©â •â §â ‘" }, { "input": "shove's", "output": "â ©â •â §â ‘â „â Ž" }, { "input": "shoved", "output": "â ©â •â §â «" }, { "input": "shovel", "output": "â ©â •â §â ‘â ‡" }, { "input": "shovel's", "output": "⠩⠕⠧⠑⠇⠄⠎" }, { "input": "shoveled", "output": "⠩⠕⠧⠑⠇⠫" }, { "input": "shovelful", "output": "⠩⠕⠧⠑⠇⠰⠇" }, { "input": "shovelful's", "output": "⠩⠕⠧⠑⠇⠰⠇⠄⠎" }, { "input": "shovelfuls", "output": "⠩⠕⠧⠑⠇⠰⠇⠎" }, { "input": "shoveling", "output": "⠩⠕⠧⠑⠇⠌" }, { "input": "shovels", "output": "⠩⠕⠧⠑⠇⠎" }, { "input": "shoves", "output": "â ©â •â §â ‘â Ž" }, { "input": "shoving", "output": "â ©â •â §â Œ" }, { "input": "show", "output": "â ©â ª" }, { "input": "show's", "output": "⠩⠪⠄⠎" }, { "input": "showbiz", "output": "⠩⠪⠃⠊⠵" }, { "input": "showbiz's", "output": "⠩⠪⠃⠊⠵⠄⠎" }, { "input": "showboat", "output": "⠩⠪⠃⠕â â ž" }, { "input": "showboat's", "output": "⠩⠪⠃⠕â â žâ „â Ž" }, { "input": "showboated", "output": "⠩⠪⠃⠕â â žâ «" }, { "input": "showboating", "output": "⠩⠪⠃⠕â â žâ Œ" }, { "input": "showboats", "output": "⠩⠪⠃⠕â â žâ Ž" }, { "input": "showcase", "output": "⠩⠪⠉â â Žâ ‘" }, { "input": "showcase's", "output": "⠩⠪⠉â â Žâ ‘â „â Ž" }, { "input": "showcased", "output": "⠩⠪⠉â â Žâ «" }, { "input": "showcases", "output": "⠩⠪⠉â â Žâ ‘â Ž" }, { "input": "showcasing", "output": "⠩⠪⠉â â Žâ Œ" }, { "input": "showdown", "output": "⠩⠪⠙⠪â " }, { "input": "showdown's", "output": "⠩⠪⠙⠪â â „â Ž" }, { "input": "showdowns", "output": "⠩⠪⠙⠪â â Ž" }, { "input": "showed", "output": "⠩⠪⠫" }, { "input": "shower", "output": "⠩⠪⠻" }, { "input": "shower's", "output": "⠩⠪⠻⠄⠎" }, { "input": "showered", "output": "⠩⠪⠻⠫" }, { "input": "showering", "output": "⠩⠪⠻⠌" }, { "input": "showers", "output": "⠩⠪⠻⠎" }, { "input": "showery", "output": "⠩⠪⠻⠽" }, { "input": "showgirl", "output": "⠩⠪⠛⠊⠗⠇" }, { "input": "showgirl's", "output": "⠩⠪⠛⠊⠗⠇⠄⠎" }, { "input": "showgirls", "output": "⠩⠪⠛⠊⠗⠇⠎" }, { "input": "showier", "output": "⠩⠪⠊⠻" }, { "input": "showiest", "output": "⠩⠪⠊⠑⠌" }, { "input": "showily", "output": "⠩⠪⠊⠇⠽" }, { "input": "showiness", "output": "⠩⠪⠊⠰⠎" }, { "input": "showiness's", "output": "⠩⠪⠊⠰⠎⠄⠎" }, { "input": "showing", "output": "⠩⠪⠌" }, { "input": "showing's", "output": "⠩⠪⠌⠄⠎" }, { "input": "showings", "output": "⠩⠪⠌⠎" }, { "input": "showman", "output": "â ©â ªâ â â " }, { "input": "showman's", "output": "â ©â ªâ â â â „â Ž" }, { "input": "showmanship", "output": "â ©â ªâ â â â ©â Šâ " }, { "input": "showmanship's", "output": "â ©â ªâ â â â ©â Šâ â „â Ž" }, { "input": "showmen", "output": "â ©â ªâ â ¢" }, { "input": "shown", "output": "â ©â ªâ " }, { "input": "showoff", "output": "⠩⠪⠷⠋" }, { "input": "showoff's", "output": "⠩⠪⠷⠋⠄⠎" }, { "input": "showoffs", "output": "⠩⠪⠷⠋⠎" }, { "input": "showpiece", "output": "â ©â ªâ â Šâ ‘⠉⠑" }, { "input": "showpiece's", "output": "â ©â ªâ â Šâ ‘⠉⠑⠄⠎" }, { "input": "showpieces", "output": "â ©â ªâ â Šâ ‘⠉⠑⠎" }, { "input": "showplace", "output": "â ©â ªâ â ‡â â ‰â ‘" }, { "input": "showplace's", "output": "â ©â ªâ â ‡â â ‰â ‘â „â Ž" }, { "input": "showplaces", "output": "â ©â ªâ â ‡â â ‰â ‘â Ž" }, { "input": "showroom", "output": "⠩⠪⠗⠕⠕â " }, { "input": "showroom's", "output": "⠩⠪⠗⠕⠕â â „â Ž" }, { "input": "showrooms", "output": "⠩⠪⠗⠕⠕â â Ž" }, { "input": "shows", "output": "⠩⠪⠎" }, { "input": "showy", "output": "⠩⠪⠽" }, { "input": "shrank", "output": "â ©â —â â â …" }, { "input": "shrapnel", "output": "â ©â —â â â â ‘â ‡" }, { "input": "shrapnel's", "output": "â ©â —â â â â ‘⠇⠄⠎" }, { "input": "shred", "output": "â ©â —â «" }, { "input": "shred's", "output": "â ©â —â «â „â Ž" }, { "input": "shredded", "output": "⠩⠗⠫⠙⠫" }, { "input": "shredder", "output": "⠩⠗⠫⠙⠻" }, { "input": "shredder's", "output": "⠩⠗⠫⠙⠻⠄⠎" }, { "input": "shredders", "output": "⠩⠗⠫⠙⠻⠎" }, { "input": "shredding", "output": "⠩⠗⠫⠙⠌" }, { "input": "shreds", "output": "â ©â —â «â Ž" }, { "input": "shrew", "output": "â ©â —â ‘â º" }, { "input": "shrew's", "output": "⠩⠗⠑⠺⠄⠎" }, { "input": "shrewd", "output": "⠩⠗⠑⠺⠙" }, { "input": "shrewder", "output": "⠩⠗⠑⠺⠙⠻" }, { "input": "shrewdest", "output": "⠩⠗⠑⠺⠙⠑⠌" }, { "input": "shrewdly", "output": "⠩⠗⠑⠺⠙⠇⠽" }, { "input": "shrewdness", "output": "⠩⠗⠑⠺⠙⠰⠎" }, { "input": "shrewdness's", "output": "⠩⠗⠑⠺⠙⠰⠎⠄⠎" }, { "input": "shrewish", "output": "⠩⠗⠑⠺⠊⠩" }, { "input": "shrews", "output": "⠩⠗⠑⠺⠎" }, { "input": "shriek", "output": "â ©â —â Šâ ‘â …" }, { "input": "shriek's", "output": "â ©â —â Šâ ‘â …â „â Ž" }, { "input": "shrieked", "output": "â ©â —â Šâ ‘â …â «" }, { "input": "shrieking", "output": "â ©â —â Šâ ‘â …â Œ" }, { "input": "shrieks", "output": "â ©â —â Šâ ‘â …â Ž" }, { "input": "shrift", "output": "â ©â —â Šâ ‹â ž" }, { "input": "shrift's", "output": "â ©â —â Šâ ‹â žâ „â Ž" }, { "input": "shrike", "output": "â ©â —â Šâ …â ‘" }, { "input": "shrike's", "output": "â ©â —â Šâ …â ‘â „â Ž" }, { "input": "shrikes", "output": "â ©â —â Šâ …â ‘â Ž" }, { "input": "shrill", "output": "⠩⠗⠊⠇⠇" }, { "input": "shrilled", "output": "⠩⠗⠊⠇⠇⠫" }, { "input": "shriller", "output": "⠩⠗⠊⠇⠇⠻" }, { "input": "shrillest", "output": "⠩⠗⠊⠇⠇⠑⠌" }, { "input": "shrilling", "output": "⠩⠗⠊⠇⠇⠌" }, { "input": "shrillness", "output": "⠩⠗⠊⠇⠇⠰⠎" }, { "input": "shrillness's", "output": "⠩⠗⠊⠇⠇⠰⠎⠄⠎" }, { "input": "shrills", "output": "⠩⠗⠊⠇⠇⠎" }, { "input": "shrilly", "output": "⠩⠗⠊⠇⠇⠽" }, { "input": "shrimp", "output": "â ©â —â Šâ â " }, { "input": "shrimp's", "output": "â ©â —â Šâ â â „â Ž" }, { "input": "shrimped", "output": "â ©â —â Šâ â â «" }, { "input": "shrimping", "output": "â ©â —â Šâ â â Œ" }, { "input": "shrimps", "output": "â ©â —â Šâ â â Ž" }, { "input": "shrine", "output": "⠩⠗⠔⠑" }, { "input": "shrine's", "output": "⠩⠗⠔⠑⠄⠎" }, { "input": "shrines", "output": "⠩⠗⠔⠑⠎" }, { "input": "shrink", "output": "⠩⠗⠔⠅" }, { "input": "shrink's", "output": "⠩⠗⠔⠅⠄⠎" }, { "input": "shrinkable", "output": "⠩⠗⠔⠅â â ¼" }, { "input": "shrinkage", "output": "⠩⠗⠔⠅â â ›â ‘" }, { "input": "shrinkage's", "output": "⠩⠗⠔⠅â â ›â ‘â „â Ž" }, { "input": "shrinking", "output": "⠩⠗⠔⠅⠌" }, { "input": "shrinks", "output": "⠩⠗⠔⠅⠎" }, { "input": "shrive", "output": "â ©â —â Šâ §â ‘" }, { "input": "shrived", "output": "â ©â —â Šâ §â «" }, { "input": "shrivel", "output": "â ©â —â Šâ §â ‘â ‡" }, { "input": "shriveled", "output": "⠩⠗⠊⠧⠑⠇⠫" }, { "input": "shriveling", "output": "⠩⠗⠊⠧⠑⠇⠌" }, { "input": "shrivels", "output": "⠩⠗⠊⠧⠑⠇⠎" }, { "input": "shriven", "output": "â ©â —â Šâ §â ¢" }, { "input": "shrives", "output": "â ©â —â Šâ §â ‘â Ž" }, { "input": "shriving", "output": "â ©â —â Šâ §â Œ" }, { "input": "shroud", "output": "⠩⠗⠳⠙" }, { "input": "shroud's", "output": "⠩⠗⠳⠙⠄⠎" }, { "input": "shrouded", "output": "⠩⠗⠳⠙⠫" }, { "input": "shrouding", "output": "⠩⠗⠳⠙⠌" }, { "input": "shrouds", "output": "⠩⠗⠳⠙⠎" }, { "input": "shrub", "output": "⠩⠗⠥⠃" }, { "input": "shrub's", "output": "⠩⠗⠥⠃⠄⠎" }, { "input": "shrubberies", "output": "⠩⠗⠥⠆⠻⠊⠑⠎" }, { "input": "shrubbery", "output": "⠩⠗⠥⠆⠻⠽" }, { "input": "shrubbery's", "output": "⠩⠗⠥⠆⠻⠽⠄⠎" }, { "input": "shrubbier", "output": "⠩⠗⠥⠆⠊⠻" }, { "input": "shrubbiest", "output": "⠩⠗⠥⠆⠊⠑⠌" }, { "input": "shrubby", "output": "⠩⠗⠥⠆⠽" }, { "input": "shrubs", "output": "⠩⠗⠥⠃⠎" }, { "input": "shrug", "output": "⠩⠗⠥⠛" }, { "input": "shrug's", "output": "⠩⠗⠥⠛⠄⠎" }, { "input": "shrugged", "output": "⠩⠗⠥⠶⠫" }, { "input": "shrugging", "output": "⠩⠗⠥⠶⠌" }, { "input": "shrugs", "output": "⠩⠗⠥⠛⠎" }, { "input": "shrunk", "output": "â ©â —â ¥â â …" }, { "input": "shrunken", "output": "â ©â —â ¥â â …â ¢" }, { "input": "shtick", "output": "⠩⠞⠊⠉⠅" }, { "input": "shtick's", "output": "⠩⠞⠊⠉⠅⠄⠎" }, { "input": "shticks", "output": "⠩⠞⠊⠉⠅⠎" }, { "input": "shuck", "output": "⠩⠥⠉⠅" }, { "input": "shuck's", "output": "⠩⠥⠉⠅⠄⠎" }, { "input": "shucked", "output": "⠩⠥⠉⠅⠫" }, { "input": "shucking", "output": "⠩⠥⠉⠅⠌" }, { "input": "shucks", "output": "⠩⠥⠉⠅⠎" }, { "input": "shuckses", "output": "⠩⠥⠉⠅⠎⠑⠎" }, { "input": "shudder", "output": "⠩⠥⠲⠻" }, { "input": "shudder's", "output": "⠩⠥⠲⠻⠄⠎" }, { "input": "shuddered", "output": "⠩⠥⠲⠻⠫" }, { "input": "shuddering", "output": "⠩⠥⠲⠻⠌" }, { "input": "shudders", "output": "⠩⠥⠲⠻⠎" }, { "input": "shuffle", "output": "⠩⠥⠖⠇⠑" }, { "input": "shuffle's", "output": "⠩⠥⠖⠇⠑⠄⠎" }, { "input": "shuffleboard", "output": "⠩⠥⠖⠇⠑⠃⠕⠜⠙" }, { "input": "shuffleboard's", "output": "⠩⠥⠖⠇⠑⠃⠕⠜⠙⠄⠎" }, { "input": "shuffleboards", "output": "⠩⠥⠖⠇⠑⠃⠕⠜⠙⠎" }, { "input": "shuffled", "output": "⠩⠥⠖⠇⠫" }, { "input": "shuffler", "output": "⠩⠥⠖⠇⠻" }, { "input": "shuffler's", "output": "⠩⠥⠖⠇⠻⠄⠎" }, { "input": "shufflers", "output": "⠩⠥⠖⠇⠻⠎" }, { "input": "shuffles", "output": "⠩⠥⠖⠇⠑⠎" }, { "input": "shuffling", "output": "⠩⠥⠖⠇⠌" }, { "input": "shun", "output": "â ©â ¥â " }, { "input": "shunned", "output": "â ©â ¥â â â «" }, { "input": "shunning", "output": "â ©â ¥â â â Œ" }, { "input": "shuns", "output": "â ©â ¥â â Ž" }, { "input": "shunt", "output": "â ©â ¥â â ž" }, { "input": "shunt's", "output": "â ©â ¥â â žâ „â Ž" }, { "input": "shunted", "output": "â ©â ¥â â žâ «" }, { "input": "shunting", "output": "â ©â ¥â â žâ Œ" }, { "input": "shunts", "output": "â ©â ¥â â žâ Ž" }, { "input": "shush", "output": "⠩⠥⠩" }, { "input": "shushed", "output": "⠩⠥⠩⠫" }, { "input": "shushes", "output": "⠩⠥⠩⠑⠎" }, { "input": "shushing", "output": "⠩⠥⠩⠌" }, { "input": "shut", "output": "⠩⠥⠞" }, { "input": "shutdown", "output": "⠩⠥⠞⠙⠪â " }, { "input": "shutdown's", "output": "⠩⠥⠞⠙⠪â â „â Ž" }, { "input": "shutdowns", "output": "⠩⠥⠞⠙⠪â â Ž" }, { "input": "shuteye", "output": "⠩⠥⠞⠑⠽⠑" }, { "input": "shuteye's", "output": "⠩⠥⠞⠑⠽⠑⠄⠎" }, { "input": "shutoff", "output": "⠩⠥⠞⠷⠋" }, { "input": "shutoff's", "output": "⠩⠥⠞⠷⠋⠄⠎" }, { "input": "shutoffs", "output": "⠩⠥⠞⠷⠋⠎" }, { "input": "shutout", "output": "⠩⠥⠞⠳⠞" }, { "input": "shutout's", "output": "⠩⠥⠞⠳⠞⠄⠎" }, { "input": "shutouts", "output": "⠩⠥⠞⠳⠞⠎" }, { "input": "shuts", "output": "⠩⠥⠞⠎" }, { "input": "shutter", "output": "⠩⠥⠞⠞⠻" }, { "input": "shutter's", "output": "⠩⠥⠞⠞⠻⠄⠎" }, { "input": "shutterbug", "output": "⠩⠥⠞⠞⠻⠃⠥⠛" }, { "input": "shutterbug's", "output": "⠩⠥⠞⠞⠻⠃⠥⠛⠄⠎" }, { "input": "shutterbugs", "output": "⠩⠥⠞⠞⠻⠃⠥⠛⠎" }, { "input": "shuttered", "output": "⠩⠥⠞⠞⠻⠫" }, { "input": "shuttering", "output": "⠩⠥⠞⠞⠻⠌" }, { "input": "shutters", "output": "⠩⠥⠞⠞⠻⠎" }, { "input": "shutting", "output": "⠩⠥⠞⠞⠌" }, { "input": "shuttle", "output": "⠩⠥⠞⠞⠇⠑" }, { "input": "shuttle's", "output": "⠩⠥⠞⠞⠇⠑⠄⠎" }, { "input": "shuttlecock", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅" }, { "input": "shuttlecock's", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠄⠎" }, { "input": "shuttlecocked", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠫" }, { "input": "shuttlecocking", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠌" }, { "input": "shuttlecocks", "output": "⠩⠥⠞⠞⠇⠑⠉⠕⠉⠅⠎" }, { "input": "shuttled", "output": "⠩⠥⠞⠞⠇⠫" }, { "input": "shuttles", "output": "⠩⠥⠞⠞⠇⠑⠎" }, { "input": "shuttling", "output": "⠩⠥⠞⠞⠇⠌" }, { "input": "shy", "output": "â ©â ½" }, { "input": "shy's", "output": "⠩⠽⠄⠎" }, { "input": "shyer", "output": "⠩⠽⠻" }, { "input": "shyest", "output": "⠩⠽⠑⠌" }, { "input": "shying", "output": "⠩⠽⠌" }, { "input": "shyly", "output": "⠩⠽⠇⠽" }, { "input": "shyness", "output": "⠩⠽⠰⠎" }, { "input": "shyness's", "output": "⠩⠽⠰⠎⠄⠎" }, { "input": "shyster", "output": "⠩⠽⠌⠻" }, { "input": "shyster's", "output": "⠩⠽⠌⠻⠄⠎" }, { "input": "shysters", "output": "⠩⠽⠌⠻⠎" }, { "input": "sibilant", "output": "⠎⠊⠃⠊⠇â â â ž" }, { "input": "sibilant's", "output": "⠎⠊⠃⠊⠇â â â žâ „â Ž" }, { "input": "sibilants", "output": "⠎⠊⠃⠊⠇â â â žâ Ž" }, { "input": "sibling", "output": "⠎⠊⠃⠇⠌" }, { "input": "sibling's", "output": "⠎⠊⠃⠇⠌⠄⠎" }, { "input": "siblings", "output": "⠎⠊⠃⠇⠌⠎" }, { "input": "sibyl", "output": "⠎⠊⠃⠽⠇" }, { "input": "sibyl's", "output": "⠎⠊⠃⠽⠇⠄⠎" }, { "input": "sibylline", "output": "⠎⠊⠃⠽⠇⠇⠔⠑" }, { "input": "sibyls", "output": "⠎⠊⠃⠽⠇⠎" }, { "input": "sic", "output": "â Žâ Šâ ‰" }, { "input": "sick", "output": "⠎⠊⠉⠅" }, { "input": "sickbed", "output": "⠎⠊⠉⠅⠃⠫" }, { "input": "sickbed's", "output": "⠎⠊⠉⠅⠃⠫⠄⠎" }, { "input": "sickbeds", "output": "⠎⠊⠉⠅⠃⠫⠎" }, { "input": "sicked", "output": "⠎⠊⠉⠅⠫" }, { "input": "sicken", "output": "⠎⠊⠉⠅⠢" }, { "input": "sickened", "output": "⠎⠊⠉⠅⠢⠫" }, { "input": "sickening", "output": "⠎⠊⠉⠅⠢⠌" }, { "input": "sickeningly", "output": "⠎⠊⠉⠅⠢⠌⠇⠽" }, { "input": "sickens", "output": "⠎⠊⠉⠅⠢⠎" }, { "input": "sicker", "output": "⠎⠊⠉⠅⠻" }, { "input": "sickest", "output": "⠎⠊⠉⠅⠑⠌" }, { "input": "sicking", "output": "⠎⠊⠉⠅⠌" }, { "input": "sickish", "output": "⠎⠊⠉⠅⠊⠩" }, { "input": "sickle", "output": "⠎⠊⠉⠅⠇⠑" }, { "input": "sickle's", "output": "⠎⠊⠉⠅⠇⠑⠄⠎" }, { "input": "sickles", "output": "⠎⠊⠉⠅⠇⠑⠎" }, { "input": "sicklier", "output": "⠎⠊⠉⠅⠇⠊⠻" }, { "input": "sickliest", "output": "⠎⠊⠉⠅⠇⠊⠑⠌" }, { "input": "sickly", "output": "⠎⠊⠉⠅⠇⠽" }, { "input": "sickness", "output": "⠎⠊⠉⠅⠰⠎" }, { "input": "sickness's", "output": "⠎⠊⠉⠅⠰⠎⠄⠎" }, { "input": "sicknesses", "output": "⠎⠊⠉⠅⠰⠎⠑⠎" }, { "input": "sicks", "output": "⠎⠊⠉⠅⠎" }, { "input": "sics", "output": "⠎⠊⠉⠎" }, { "input": "side", "output": "⠎⠊⠙⠑" }, { "input": "side's", "output": "⠎⠊⠙⠑⠄⠎" }, { "input": "sidearm", "output": "⠎⠊⠙⠑⠜â " }, { "input": "sidearm's", "output": "⠎⠊⠙⠑⠜â â „â Ž" }, { "input": "sidearms", "output": "⠎⠊⠙⠑⠜â â Ž" }, { "input": "sidebar", "output": "⠎⠊⠙⠑⠃⠜" }, { "input": "sidebar's", "output": "⠎⠊⠙⠑⠃⠜⠄⠎" }, { "input": "sidebars", "output": "⠎⠊⠙⠑⠃⠜⠎" }, { "input": "sideboard", "output": "⠎⠊⠙⠑⠃⠕⠜⠙" }, { "input": "sideboard's", "output": "⠎⠊⠙⠑⠃⠕⠜⠙⠄⠎" }, { "input": "sideboards", "output": "⠎⠊⠙⠑⠃⠕⠜⠙⠎" }, { "input": "sideburns", "output": "⠎⠊⠙⠑⠃⠥⠗â â Ž" }, { "input": "sideburns's", "output": "⠎⠊⠙⠑⠃⠥⠗â â Žâ „â Ž" }, { "input": "sidecar", "output": "⠎⠊⠙⠑⠉⠜" }, { "input": "sidecar's", "output": "⠎⠊⠙⠑⠉⠜⠄⠎" }, { "input": "sidecars", "output": "⠎⠊⠙⠑⠉⠜⠎" }, { "input": "sided", "output": "⠎⠊⠙⠫" }, { "input": "sidekick", "output": "⠎⠊⠙⠑⠅⠊⠉⠅" }, { "input": "sidekick's", "output": "⠎⠊⠙⠑⠅⠊⠉⠅⠄⠎" }, { "input": "sidekicks", "output": "⠎⠊⠙⠑⠅⠊⠉⠅⠎" }, { "input": "sidelight", "output": "⠎⠊⠙⠑⠇⠊⠣⠞" }, { "input": "sidelight's", "output": "⠎⠊⠙⠑⠇⠊⠣⠞⠄⠎" }, { "input": "sidelights", "output": "⠎⠊⠙⠑⠇⠊⠣⠞⠎" }, { "input": "sideline", "output": "⠎⠊⠙⠑⠇⠔⠑" }, { "input": "sideline's", "output": "⠎⠊⠙⠑⠇⠔⠑⠄⠎" }, { "input": "sidelined", "output": "⠎⠊⠙⠑⠇⠔⠫" }, { "input": "sidelines", "output": "⠎⠊⠙⠑⠇⠔⠑⠎" }, { "input": "sidelining", "output": "⠎⠊⠙⠑⠇⠔⠌" }, { "input": "sidelong", "output": "⠎⠊⠙⠑⠇⠰⠛" }, { "input": "sideman", "output": "⠎⠊⠙⠑â â â " }, { "input": "sideman's", "output": "⠎⠊⠙⠑â â â â „â Ž" }, { "input": "sidemen", "output": "⠎⠊⠙⠑â â ¢" }, { "input": "sidepiece", "output": "⠎⠊⠙⠑â â Šâ ‘⠉⠑" }, { "input": "sidepiece's", "output": "⠎⠊⠙⠑â â Šâ ‘⠉⠑⠄⠎" }, { "input": "sidepieces", "output": "⠎⠊⠙⠑â â Šâ ‘⠉⠑⠎" }, { "input": "sidereal", "output": "⠎⠊⠙⠻⠂⠇" }, { "input": "sides", "output": "⠎⠊⠙⠑⠎" }, { "input": "sidesaddle", "output": "⠎⠊⠙⠑⠎â â ²â ‡â ‘" }, { "input": "sidesaddle's", "output": "⠎⠊⠙⠑⠎â â ²â ‡â ‘â „â Ž" }, { "input": "sidesaddles", "output": "⠎⠊⠙⠑⠎â â ²â ‡â ‘â Ž" }, { "input": "sideshow", "output": "⠎⠊⠙⠑⠩⠪" }, { "input": "sideshow's", "output": "⠎⠊⠙⠑⠩⠪⠄⠎" }, { "input": "sideshows", "output": "⠎⠊⠙⠑⠩⠪⠎" }, { "input": "sidesplitting", "output": "⠎⠊⠙⠑⠎â â ‡â Šâ žâ žâ Œ" }, { "input": "sidestep", "output": "⠎⠊⠙⠑⠌⠑â " }, { "input": "sidestep's", "output": "⠎⠊⠙⠑⠌⠑â â „â Ž" }, { "input": "sidestepped", "output": "⠎⠊⠙⠑⠌⠑â â â «" }, { "input": "sidestepping", "output": "⠎⠊⠙⠑⠌⠑â â â Œ" }, { "input": "sidesteps", "output": "⠎⠊⠙⠑⠌⠑â â Ž" }, { "input": "sidestroke", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠑" }, { "input": "sidestroke's", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠑⠄⠎" }, { "input": "sidestroked", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠫" }, { "input": "sidestrokes", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠑⠎" }, { "input": "sidestroking", "output": "⠎⠊⠙⠑⠌⠗⠕⠅⠌" }, { "input": "sideswipe", "output": "⠎⠊⠙⠑⠎⠺⠊â â ‘" }, { "input": "sideswipe's", "output": "⠎⠊⠙⠑⠎⠺⠊â â ‘â „â Ž" }, { "input": "sideswiped", "output": "⠎⠊⠙⠑⠎⠺⠊â â «" }, { "input": "sideswipes", "output": "⠎⠊⠙⠑⠎⠺⠊â â ‘â Ž" }, { "input": "sideswiping", "output": "⠎⠊⠙⠑⠎⠺⠊â â Œ" }, { "input": "sidetrack", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …" }, { "input": "sidetrack's", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â „â Ž" }, { "input": "sidetracked", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â «" }, { "input": "sidetracking", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â Œ" }, { "input": "sidetracks", "output": "⠎⠊⠙⠑⠞⠗â â ‰â …â Ž" }, { "input": "sidewalk", "output": "⠎⠊⠙⠑⠺â â ‡â …" }, { "input": "sidewalk's", "output": "⠎⠊⠙⠑⠺â â ‡â …â „â Ž" }, { "input": "sidewalks", "output": "⠎⠊⠙⠑⠺â â ‡â …â Ž" }, { "input": "sidewall", "output": "⠎⠊⠙⠑⠺â â ‡â ‡" }, { "input": "sidewall's", "output": "⠎⠊⠙⠑⠺â â ‡â ‡â „â Ž" }, { "input": "sidewalls", "output": "⠎⠊⠙⠑⠺â â ‡â ‡â Ž" }, { "input": "sideways", "output": "⠎⠊⠙⠑⠺â â ½â Ž" }, { "input": "sidewinder", "output": "⠎⠊⠙⠑⠺⠔⠙⠻" }, { "input": "sidewinder's", "output": "⠎⠊⠙⠑⠺⠔⠙⠻⠄⠎" }, { "input": "sidewinders", "output": "⠎⠊⠙⠑⠺⠔⠙⠻⠎" }, { "input": "siding", "output": "⠎⠊⠙⠌" }, { "input": "siding's", "output": "⠎⠊⠙⠌⠄⠎" }, { "input": "sidings", "output": "⠎⠊⠙⠌⠎" }, { "input": "sidle", "output": "⠎⠊⠙⠇⠑" }, { "input": "sidle's", "output": "⠎⠊⠙⠇⠑⠄⠎" }, { "input": "sidled", "output": "⠎⠊⠙⠇⠫" }, { "input": "sidles", "output": "⠎⠊⠙⠇⠑⠎" }, { "input": "sidling", "output": "⠎⠊⠙⠇⠌" }, { "input": "siege", "output": "⠎⠊⠑⠛⠑" }, { "input": "siege's", "output": "⠎⠊⠑⠛⠑⠄⠎" }, { "input": "sieges", "output": "⠎⠊⠑⠛⠑⠎" }, { "input": "sienna's", "output": "â Žâ Šâ ¢â â â „â Ž" }, { "input": "sierra", "output": "⠎⠊⠻⠗â " }, { "input": "sierra's", "output": "⠎⠊⠻⠗â â „â Ž" }, { "input": "sierras", "output": "⠎⠊⠻⠗â â Ž" }, { "input": "siesta", "output": "â Žâ Šâ ‘â Œâ " }, { "input": "siesta's", "output": "â Žâ Šâ ‘â Œâ â „â Ž" }, { "input": "siestas", "output": "â Žâ Šâ ‘â Œâ â Ž" }, { "input": "sieve", "output": "â Žâ Šâ ‘â §â ‘" }, { "input": "sieve's", "output": "â Žâ Šâ ‘â §â ‘â „â Ž" }, { "input": "sieved", "output": "â Žâ Šâ ‘â §â «" }, { "input": "sieves", "output": "â Žâ Šâ ‘â §â ‘â Ž" }, { "input": "sieving", "output": "â Žâ Šâ ‘â §â Œ" }, { "input": "sift", "output": "â Žâ Šâ ‹â ž" }, { "input": "sifted", "output": "â Žâ Šâ ‹â žâ «" }, { "input": "sifter", "output": "â Žâ Šâ ‹â žâ »" }, { "input": "sifter's", "output": "⠎⠊⠋⠞⠻⠄⠎" }, { "input": "sifters", "output": "⠎⠊⠋⠞⠻⠎" }, { "input": "sifting", "output": "â Žâ Šâ ‹â žâ Œ" }, { "input": "sifts", "output": "â Žâ Šâ ‹â žâ Ž" }, { "input": "sigh", "output": "â Žâ Šâ £" }, { "input": "sigh's", "output": "⠎⠊⠣⠄⠎" }, { "input": "sighed", "output": "⠎⠊⠣⠫" }, { "input": "sighing", "output": "⠎⠊⠣⠌" }, { "input": "sighs", "output": "⠎⠊⠣⠎" }, { "input": "sight", "output": "⠎⠊⠣⠞" }, { "input": "sight's", "output": "⠎⠊⠣⠞⠄⠎" }, { "input": "sighted", "output": "⠎⠊⠣⠞⠫" }, { "input": "sighting", "output": "⠎⠊⠣⠞⠌" }, { "input": "sighting's", "output": "⠎⠊⠣⠞⠌⠄⠎" }, { "input": "sightings", "output": "⠎⠊⠣⠞⠌⠎" }, { "input": "sightless", "output": "⠎⠊⠣⠞⠨⠎" }, { "input": "sightlier", "output": "⠎⠊⠣⠞⠇⠊⠻" }, { "input": "sightliest", "output": "⠎⠊⠣⠞⠇⠊⠑⠌" }, { "input": "sightly", "output": "⠎⠊⠣⠞⠇⠽" }, { "input": "sightread", "output": "⠎⠊⠣⠞⠗⠂⠙" }, { "input": "sights", "output": "⠎⠊⠣⠞⠎" }, { "input": "sightseeing", "output": "⠎⠊⠣⠞⠎⠑⠑⠌" }, { "input": "sightseeing's", "output": "⠎⠊⠣⠞⠎⠑⠑⠌⠄⠎" }, { "input": "sightseer", "output": "⠎⠊⠣⠞⠎⠑⠻" }, { "input": "sightseer's", "output": "⠎⠊⠣⠞⠎⠑⠻⠄⠎" }, { "input": "sightseers", "output": "⠎⠊⠣⠞⠎⠑⠻⠎" }, { "input": "sigma", "output": "â Žâ Šâ ›â â " }, { "input": "sigma's", "output": "â Žâ Šâ ›â â â „â Ž" }, { "input": "sigmas", "output": "â Žâ Šâ ›â â â Ž" }, { "input": "sign", "output": "â Žâ Šâ ›â " }, { "input": "sign's", "output": "â Žâ Šâ ›â â „â Ž" }, { "input": "signage", "output": "â Žâ Šâ ›â â â ›â ‘" }, { "input": "signage's", "output": "â Žâ Šâ ›â â â ›â ‘â „â Ž" }, { "input": "signal", "output": "â Žâ Šâ ›â â â ‡" }, { "input": "signal's", "output": "â Žâ Šâ ›â â â ‡â „â Ž" }, { "input": "signaled", "output": "â Žâ Šâ ›â â â ‡â «" }, { "input": "signaler", "output": "â Žâ Šâ ›â â â ‡â »" }, { "input": "signaler's", "output": "â Žâ Šâ ›â â â ‡â »â „â Ž" }, { "input": "signalers", "output": "â Žâ Šâ ›â â â ‡â »â Ž" }, { "input": "signaling", "output": "â Žâ Šâ ›â â â ‡â Œ" }, { "input": "signalization", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ  â " }, { "input": "signalization's", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ  â â „â Ž" }, { "input": "signalize", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ ‘" }, { "input": "signalized", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ «" }, { "input": "signalizes", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ ‘â Ž" }, { "input": "signalizing", "output": "â Žâ Šâ ›â â â ‡â Šâ µâ Œ" }, { "input": "signally", "output": "â Žâ Šâ ›â â  â ½" }, { "input": "signals", "output": "â Žâ Šâ ›â â â ‡â Ž" }, { "input": "signatories", "output": "â Žâ Šâ ›â â â žâ •â —â Šâ ‘â Ž" }, { "input": "signatory", "output": "â Žâ Šâ ›â â â žâ •â —â ½" }, { "input": "signatory's", "output": "â Žâ Šâ ›â â â žâ •⠗⠽⠄⠎" }, { "input": "signature", "output": "â Žâ Šâ ›â â â žâ ¥â —â ‘" }, { "input": "signature's", "output": "â Žâ Šâ ›â â â žâ ¥â —â ‘â „â Ž" }, { "input": "signatures", "output": "â Žâ Šâ ›â â â žâ ¥â —â ‘â Ž" }, { "input": "signboard", "output": "â Žâ Šâ ›â â ƒâ •⠜⠙" }, { "input": "signboard's", "output": "â Žâ Šâ ›â â ƒâ •⠜⠙⠄⠎" }, { "input": "signboards", "output": "â Žâ Šâ ›â â ƒâ •⠜⠙⠎" }, { "input": "signed", "output": "â Žâ Šâ ›â â «" }, { "input": "signer", "output": "â Žâ Šâ ›â â »" }, { "input": "signer's", "output": "â Žâ Šâ ›â â »â „â Ž" }, { "input": "signers", "output": "â Žâ Šâ ›â â »â Ž" }, { "input": "signet", "output": "â Žâ Šâ ›â â ‘â ž" }, { "input": "signet's", "output": "â Žâ Šâ ›â â ‘â žâ „â Ž" }, { "input": "signets", "output": "â Žâ Šâ ›â â ‘â žâ Ž" }, { "input": "significance", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â ¨â ‘" }, { "input": "significance's", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â ¨â ‘â „â Ž" }, { "input": "significant", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â â â ž" }, { "input": "significantly", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â â â žâ ‡â ½" }, { "input": "signification", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â  â " }, { "input": "signification's", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "significations", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "signified", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ «" }, { "input": "signifies", "output": "â Žâ Šâ ›â â Šâ ‹â Šâ ‘â Ž" }, { "input": "signify", "output": "â Žâ Šâ ›â â Šâ ‹â ½" }, { "input": "signifying", "output": "â Žâ Šâ ›â â Šâ ‹â ½â Œ" }, { "input": "signing", "output": "â Žâ Šâ ›â â Œ" }, { "input": "signing's", "output": "â Žâ Šâ ›â â Œâ „â Ž" }, { "input": "signings", "output": "â Žâ Šâ ›â â Œâ Ž" }, { "input": "signor", "output": "â Žâ Šâ ›â â •â —" }, { "input": "signor's", "output": "â Žâ Šâ ›â â •â —â „â Ž" }, { "input": "signora", "output": "â Žâ Šâ ›â â •â —â " }, { "input": "signora's", "output": "â Žâ Šâ ›â â •â —â â „â Ž" }, { "input": "signoras", "output": "â Žâ Šâ ›â â •â —â â Ž" }, { "input": "signore", "output": "â Žâ Šâ ›â â •â —â ‘" }, { "input": "signori", "output": "â Žâ Šâ ›â â •â —â Š" }, { "input": "signorina", "output": "â Žâ Šâ ›â â •â —â ”â " }, { "input": "signorina's", "output": "â Žâ Šâ ›â â •â —â ”â â „â Ž" }, { "input": "signorinas", "output": "â Žâ Šâ ›â â •â —â ”â â Ž" }, { "input": "signorine", "output": "â Žâ Šâ ›â â •⠗⠔⠑" }, { "input": "signors", "output": "â Žâ Šâ ›â â •â —â Ž" }, { "input": "signpost", "output": "â Žâ Šâ ›â â â •â Œ" }, { "input": "signpost's", "output": "â Žâ Šâ ›â â â •⠌⠄⠎" }, { "input": "signposted", "output": "â Žâ Šâ ›â â â •⠌⠫" }, { "input": "signposting", "output": "â Žâ Šâ ›â â â •⠌⠌" }, { "input": "signposts", "output": "â Žâ Šâ ›â â â •⠌⠎" }, { "input": "signs", "output": "â Žâ Šâ ›â â Ž" }, { "input": "silage", "output": "â Žâ Šâ ‡â â ›â ‘" }, { "input": "silage's", "output": "â Žâ Šâ ‡â â ›â ‘â „â Ž" }, { "input": "silence", "output": "⠎⠊⠇⠰⠑" }, { "input": "silence's", "output": "⠎⠊⠇⠰⠑⠄⠎" }, { "input": "silenced", "output": "⠎⠊⠇⠰⠑⠙" }, { "input": "silencer", "output": "⠎⠊⠇⠰⠑⠗" }, { "input": "silencer's", "output": "⠎⠊⠇⠰⠑⠗⠄⠎" }, { "input": "silencers", "output": "⠎⠊⠇⠰⠑⠗⠎" }, { "input": "silences", "output": "⠎⠊⠇⠰⠑⠎" }, { "input": "silencing", "output": "⠎⠊⠇⠢⠉⠌" }, { "input": "silent", "output": "⠎⠊⠇⠢⠞" }, { "input": "silent's", "output": "⠎⠊⠇⠢⠞⠄⠎" }, { "input": "silenter", "output": "⠎⠊⠇⠢⠞⠻" }, { "input": "silentest", "output": "⠎⠊⠇⠢⠞⠑⠌" }, { "input": "silently", "output": "⠎⠊⠇⠢⠞⠇⠽" }, { "input": "silents", "output": "⠎⠊⠇⠢⠞⠎" }, { "input": "silhouette", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠑" }, { "input": "silhouette's", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠑⠄⠎" }, { "input": "silhouetted", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠫" }, { "input": "silhouettes", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠑⠎" }, { "input": "silhouetting", "output": "⠎⠊⠇⠓⠳⠑⠞⠞⠌" }, { "input": "silica", "output": "⠎⠊⠇⠊⠉â " }, { "input": "silica's", "output": "⠎⠊⠇⠊⠉â â „â Ž" }, { "input": "silicate", "output": "⠎⠊⠇⠊⠉â â žâ ‘" }, { "input": "silicate's", "output": "⠎⠊⠇⠊⠉â â žâ ‘â „â Ž" }, { "input": "silicates", "output": "⠎⠊⠇⠊⠉â â žâ ‘â Ž" }, { "input": "siliceous", "output": "⠎⠊⠇⠊⠉⠑⠳⠎" }, { "input": "silicon", "output": "⠎⠊⠇⠊⠉⠕â " }, { "input": "silicon's", "output": "⠎⠊⠇⠊⠉⠕â â „â Ž" }, { "input": "silicone", "output": "⠎⠊⠇⠊⠉â â •" }, { "input": "silicone's", "output": "⠎⠊⠇⠊⠉â â •â „â Ž" }, { "input": "silicosis", "output": "⠎⠊⠇⠊⠉⠕⠎⠊⠎" }, { "input": "silicosis's", "output": "⠎⠊⠇⠊⠉⠕⠎⠊⠎⠄⠎" }, { "input": "silk", "output": "⠎⠊⠇⠅" }, { "input": "silk's", "output": "⠎⠊⠇⠅⠄⠎" }, { "input": "silken", "output": "⠎⠊⠇⠅⠢" }, { "input": "silkier", "output": "⠎⠊⠇⠅⠊⠻" }, { "input": "silkiest", "output": "⠎⠊⠇⠅⠊⠑⠌" }, { "input": "silkily", "output": "⠎⠊⠇⠅⠊⠇⠽" }, { "input": "silkiness's", "output": "⠎⠊⠇⠅⠊⠰⠎⠄⠎" }, { "input": "silks", "output": "⠎⠊⠇⠅⠎" }, { "input": "silkscreen", "output": "⠎⠊⠇⠅⠎⠉⠗⠑⠢" }, { "input": "silkscreen's", "output": "⠎⠊⠇⠅⠎⠉⠗⠑⠢⠄⠎" }, { "input": "silkscreens", "output": "⠎⠊⠇⠅⠎⠉⠗⠑⠢⠎" }, { "input": "silkworm", "output": "⠎⠊⠇⠅⠺⠕⠗â " }, { "input": "silkworm's", "output": "⠎⠊⠇⠅⠺⠕⠗â â „â Ž" }, { "input": "silkworms", "output": "⠎⠊⠇⠅⠺⠕⠗â â Ž" }, { "input": "silky", "output": "⠎⠊⠇⠅⠽" }, { "input": "sill", "output": "⠎⠊⠇⠇" }, { "input": "sill's", "output": "⠎⠊⠇⠇⠄⠎" }, { "input": "sillier", "output": "⠎⠊⠇⠇⠊⠻" }, { "input": "sillies", "output": "⠎⠊⠇⠇⠊⠑⠎" }, { "input": "silliest", "output": "⠎⠊⠇⠇⠊⠑⠌" }, { "input": "silliness", "output": "⠎⠊⠇⠇⠊⠰⠎" }, { "input": "silliness's", "output": "⠎⠊⠇⠇⠊⠰⠎⠄⠎" }, { "input": "sills", "output": "⠎⠊⠇⠇⠎" }, { "input": "silly", "output": "⠎⠊⠇⠇⠽" }, { "input": "silly's", "output": "⠎⠊⠇⠇⠽⠄⠎" }, { "input": "silo", "output": "⠎⠊⠇⠕" }, { "input": "silo's", "output": "⠎⠊⠇⠕⠄⠎" }, { "input": "silos", "output": "⠎⠊⠇⠕⠎" }, { "input": "silt", "output": "⠎⠊⠇⠞" }, { "input": "silt's", "output": "⠎⠊⠇⠞⠄⠎" }, { "input": "silted", "output": "⠎⠊⠇⠞⠫" }, { "input": "siltier", "output": "⠎⠊⠇⠞⠊⠻" }, { "input": "siltiest", "output": "⠎⠊⠇⠞⠊⠑⠌" }, { "input": "silting", "output": "⠎⠊⠇⠞⠌" }, { "input": "silts", "output": "⠎⠊⠇⠞⠎" }, { "input": "silty", "output": "⠎⠊⠇⠞⠽" }, { "input": "silver", "output": "⠎⠊⠇⠧⠻" }, { "input": "silver's", "output": "⠎⠊⠇⠧⠻⠄⠎" }, { "input": "silvered", "output": "⠎⠊⠇⠧⠻⠫" }, { "input": "silverfish", "output": "⠎⠊⠇⠧⠻⠋⠊⠩" }, { "input": "silverfish's", "output": "⠎⠊⠇⠧⠻⠋⠊⠩⠄⠎" }, { "input": "silverfishes", "output": "⠎⠊⠇⠧⠻⠋⠊⠩⠑⠎" }, { "input": "silvering", "output": "⠎⠊⠇⠧⠻⠌" }, { "input": "silvers", "output": "⠎⠊⠇⠧⠻⠎" }, { "input": "silversmith", "output": "⠎⠊⠇⠧⠻⠎â â Šâ ¹" }, { "input": "silversmith's", "output": "⠎⠊⠇⠧⠻⠎â â Šâ ¹â „â Ž" }, { "input": "silversmiths", "output": "⠎⠊⠇⠧⠻⠎â â Šâ ¹â Ž" }, { "input": "silverware", "output": "⠎⠊⠇⠧⠻⠺⠜⠑" }, { "input": "silverware's", "output": "⠎⠊⠇⠧⠻⠺⠜⠑⠄⠎" }, { "input": "silvery", "output": "⠎⠊⠇⠧⠻⠽" }, { "input": "simian", "output": "â Žâ Šâ â Šâ â " }, { "input": "simian's", "output": "â Žâ Šâ â Šâ â â „â Ž" }, { "input": "simians", "output": "â Žâ Šâ â Šâ â â Ž" }, { "input": "similar", "output": "â Žâ Šâ â Šâ ‡â œ" }, { "input": "similarities", "output": "â Žâ Šâ â Šâ ‡â œâ Šâ žâ Šâ ‘â Ž" }, { "input": "similarity", "output": "â Žâ Šâ â Šâ ‡â œâ °â ½" }, { "input": "similarity's", "output": "â Žâ Šâ â Šâ ‡â œâ °â ½â „â Ž" }, { "input": "similarly", "output": "â Žâ Šâ â Šâ ‡â œâ ‡â ½" }, { "input": "simile", "output": "â Žâ Šâ â Šâ ‡â ‘" }, { "input": "simile's", "output": "â Žâ Šâ â Šâ ‡â ‘â „â Ž" }, { "input": "similes", "output": "â Žâ Šâ â Šâ ‡â ‘â Ž" }, { "input": "similitude", "output": "â Žâ Šâ â Šâ ‡â Šâ žâ ¥â ™â ‘" }, { "input": "similitude's", "output": "â Žâ Šâ â Šâ ‡â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "simmer", "output": "â Žâ Šâ â â »" }, { "input": "simmer's", "output": "â Žâ Šâ â â »â „â Ž" }, { "input": "simmered", "output": "â Žâ Šâ â â »â «" }, { "input": "simmering", "output": "â Žâ Šâ â â »â Œ" }, { "input": "simmers", "output": "â Žâ Šâ â â »â Ž" }, { "input": "simonize", "output": "â Žâ Šâ â •â â Šâ µâ ‘" }, { "input": "simonized", "output": "â Žâ Šâ â •â â Šâ µâ «" }, { "input": "simonizes", "output": "â Žâ Šâ â •â â Šâ µâ ‘â Ž" }, { "input": "simonizing", "output": "â Žâ Šâ â •â â Šâ µâ Œ" }, { "input": "simony", "output": "â Žâ Šâ â •â â ½" }, { "input": "simony's", "output": "â Žâ Šâ â •â â ½â „â Ž" }, { "input": "simpatico", "output": "â Žâ Šâ â â â žâ Šâ ‰â •" }, { "input": "simper", "output": "â Žâ Šâ â â »" }, { "input": "simper's", "output": "â Žâ Šâ â â »â „â Ž" }, { "input": "simpered", "output": "â Žâ Šâ â â »â «" }, { "input": "simpering", "output": "â Žâ Šâ â â »â Œ" }, { "input": "simpers", "output": "â Žâ Šâ â â »â Ž" }, { "input": "simple", "output": "â Žâ Šâ â â ‡â ‘" }, { "input": "simpleminded", "output": "â Žâ Šâ â â ‡â ‘â â ”⠙⠫" }, { "input": "simpleness", "output": "â Žâ Šâ â â ‡â ‘â °â Ž" }, { "input": "simpleness's", "output": "â Žâ Šâ â â ‡â ‘â °â Žâ „â Ž" }, { "input": "simpler", "output": "â Žâ Šâ â â ‡â »" }, { "input": "simplest", "output": "â Žâ Šâ â â ‡â ‘â Œ" }, { "input": "simpleton", "output": "â Žâ Šâ â â ‡â ‘â žâ •â " }, { "input": "simpleton's", "output": "â Žâ Šâ â â ‡â ‘â žâ •â â „â Ž" }, { "input": "simpletons", "output": "â Žâ Šâ â â ‡â ‘â žâ •â â Ž" }, { "input": "simplex", "output": "â Žâ Šâ â â ‡â ‘â ­" }, { "input": "simplicity", "output": "â Žâ Šâ â â ‡â Šâ ‰â °â ½" }, { "input": "simplicity's", "output": "â Žâ Šâ â â ‡â Šâ ‰â °â ½â „â Ž" }, { "input": "simplification", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‰â  â " }, { "input": "simplification's", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "simplifications", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‰â  â â Ž" }, { "input": "simplified", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ «" }, { "input": "simplifies", "output": "â Žâ Šâ â â ‡â Šâ ‹â Šâ ‘â Ž" }, { "input": "simplify", "output": "â Žâ Šâ â â ‡â Šâ ‹â ½" }, { "input": "simplifying", "output": "â Žâ Šâ â â ‡â Šâ ‹â ½â Œ" }, { "input": "simplistic", "output": "â Žâ Šâ â â ‡â Šâ Œâ Šâ ‰" }, { "input": "simply", "output": "â Žâ Šâ â â ‡â ½" }, { "input": "simulate", "output": "â Žâ Šâ â ¥â ‡â â žâ ‘" }, { "input": "simulated", "output": "â Žâ Šâ â ¥â ‡â â žâ «" }, { "input": "simulates", "output": "â Žâ Šâ â ¥â ‡â â žâ ‘â Ž" }, { "input": "simulating", "output": "â Žâ Šâ â ¥â ‡â â žâ Œ" }, { "input": "simulation", "output": "â Žâ Šâ â ¥â ‡â  â " }, { "input": "simulation's", "output": "â Žâ Šâ â ¥â ‡â  â â „â Ž" }, { "input": "simulations", "output": "â Žâ Šâ â ¥â ‡â  â â Ž" }, { "input": "simulator", "output": "â Žâ Šâ â ¥â ‡â â žâ •â —" }, { "input": "simulator's", "output": "â Žâ Šâ â ¥â ‡â â žâ •â —â „â Ž" }, { "input": "simulators", "output": "â Žâ Šâ â ¥â ‡â â žâ •â —â Ž" }, { "input": "simulcast", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œ" }, { "input": "simulcast's", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ „â Ž" }, { "input": "simulcasted", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ «" }, { "input": "simulcasting", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ Œ" }, { "input": "simulcasts", "output": "â Žâ Šâ â ¥â ‡â ‰â â Œâ Ž" }, { "input": "simultaneity's", "output": "â Žâ Šâ â ¥â ‡â žâ â â ‘⠰⠽⠄⠎" }, { "input": "simultaneous", "output": "â Žâ Šâ â ¥â ‡â žâ â â ‘⠳⠎" }, { "input": "simultaneously", "output": "â Žâ Šâ â ¥â ‡â žâ â â ‘⠳⠎⠇⠽" }, { "input": "sin", "output": "â Žâ ”" }, { "input": "sin's", "output": "⠎⠔⠄⠎" }, { "input": "since", "output": "⠎⠔⠉⠑" }, { "input": "sincere", "output": "⠎⠔⠉⠻⠑" }, { "input": "sincerely", "output": "⠎⠔⠉⠻⠑⠇⠽" }, { "input": "sincerer", "output": "⠎⠔⠉⠻⠻" }, { "input": "sincerest", "output": "⠎⠔⠉⠻⠑⠌" }, { "input": "sincerity", "output": "⠎⠔⠉⠻⠰⠽" }, { "input": "sincerity's", "output": "⠎⠔⠉⠻⠰⠽⠄⠎" }, { "input": "sine", "output": "⠎⠔⠑" }, { "input": "sinecure", "output": "⠎⠔⠑⠉⠥⠗⠑" }, { "input": "sinecure's", "output": "⠎⠔⠑⠉⠥⠗⠑⠄⠎" }, { "input": "sinecures", "output": "⠎⠔⠑⠉⠥⠗⠑⠎" }, { "input": "sinew", "output": "⠎⠔⠑⠺" }, { "input": "sinew's", "output": "⠎⠔⠑⠺⠄⠎" }, { "input": "sinews", "output": "⠎⠔⠑⠺⠎" }, { "input": "sinewy", "output": "⠎⠔⠑⠺⠽" }, { "input": "sinful", "output": "⠎⠔⠰⠇" }, { "input": "sinfully", "output": "⠎⠔⠰⠇⠇⠽" }, { "input": "sinfulness", "output": "⠎⠔⠰⠇⠰⠎" }, { "input": "sinfulness's", "output": "⠎⠔⠰⠇⠰⠎⠄⠎" }, { "input": "sing", "output": "â Žâ Œ" }, { "input": "sing's", "output": "⠎⠌⠄⠎" }, { "input": "singable", "output": "â Žâ Œâ â ¼" }, { "input": "singe", "output": "⠎⠌⠑" }, { "input": "singe's", "output": "⠎⠌⠑⠄⠎" }, { "input": "singed", "output": "⠎⠌⠫" }, { "input": "singeing", "output": "⠎⠌⠑⠌" }, { "input": "singer", "output": "⠎⠌⠻" }, { "input": "singer's", "output": "⠎⠌⠻⠄⠎" }, { "input": "singers", "output": "⠎⠌⠻⠎" }, { "input": "singes", "output": "⠎⠌⠑⠎" }, { "input": "singing", "output": "⠎⠌⠌" }, { "input": "singing's", "output": "⠎⠌⠌⠄⠎" }, { "input": "single", "output": "⠎⠌⠇⠑" }, { "input": "single's", "output": "⠎⠌⠇⠑⠄⠎" }, { "input": "singled", "output": "⠎⠌⠇⠫" }, { "input": "singleness's", "output": "⠎⠌⠇⠑⠰⠎⠄⠎" }, { "input": "singles", "output": "⠎⠌⠇⠑⠎" }, { "input": "singles's", "output": "⠎⠌⠇⠑⠎⠄⠎" }, { "input": "singleton", "output": "⠎⠌⠇⠑⠞⠕â " }, { "input": "singleton's", "output": "⠎⠌⠇⠑⠞⠕â â „â Ž" }, { "input": "singletons", "output": "⠎⠌⠇⠑⠞⠕â â Ž" }, { "input": "singletree", "output": "⠎⠌⠇⠑⠞⠗⠑⠑" }, { "input": "singletree's", "output": "⠎⠌⠇⠑⠞⠗⠑⠑⠄⠎" }, { "input": "singletrees", "output": "⠎⠌⠇⠑⠞⠗⠑⠑⠎" }, { "input": "singling", "output": "⠎⠌⠇⠌" }, { "input": "singly", "output": "⠎⠌⠇⠽" }, { "input": "sings", "output": "⠎⠌⠎" }, { "input": "singsong", "output": "⠎⠌⠎⠰⠛" }, { "input": "singsong's", "output": "⠎⠌⠎⠰⠛⠄⠎" }, { "input": "singsonged", "output": "⠎⠌⠎⠰⠛⠫" }, { "input": "singsonging", "output": "⠎⠌⠎⠰⠛⠌" }, { "input": "singsongs", "output": "⠎⠌⠎⠰⠛⠎" }, { "input": "singular", "output": "⠎⠌⠥⠇⠜" }, { "input": "singular's", "output": "⠎⠌⠥⠇⠜⠄⠎" }, { "input": "singularities", "output": "⠎⠌⠥⠇⠜⠊⠞⠊⠑⠎" }, { "input": "singularity", "output": "⠎⠌⠥⠇⠜⠰⠽" }, { "input": "singularity's", "output": "⠎⠌⠥⠇⠜⠰⠽⠄⠎" }, { "input": "singularly", "output": "⠎⠌⠥⠇⠜⠇⠽" }, { "input": "singulars", "output": "⠎⠌⠥⠇⠜⠎" }, { "input": "sinister", "output": "⠎⠔⠊⠌⠻" }, { "input": "sink", "output": "⠎⠔⠅" }, { "input": "sink's", "output": "⠎⠔⠅⠄⠎" }, { "input": "sinkable", "output": "⠎⠔⠅â â ¼" }, { "input": "sinker", "output": "⠎⠔⠅⠻" }, { "input": "sinker's", "output": "⠎⠔⠅⠻⠄⠎" }, { "input": "sinkers", "output": "⠎⠔⠅⠻⠎" }, { "input": "sinkhole", "output": "⠎⠔⠅⠓⠕⠇⠑" }, { "input": "sinkhole's", "output": "⠎⠔⠅⠓⠕⠇⠑⠄⠎" }, { "input": "sinkholes", "output": "⠎⠔⠅⠓⠕⠇⠑⠎" }, { "input": "sinking", "output": "⠎⠔⠅⠌" }, { "input": "sinks", "output": "⠎⠔⠅⠎" }, { "input": "sinless", "output": "⠎⠔⠨⠎" }, { "input": "sinned", "output": "â Žâ ”â â «" }, { "input": "sinner", "output": "â Žâ ”â â »" }, { "input": "sinner's", "output": "â Žâ ”â â »â „â Ž" }, { "input": "sinners", "output": "â Žâ ”â â »â Ž" }, { "input": "sinning", "output": "â Žâ ”â â Œ" }, { "input": "sins", "output": "⠎⠔⠎" }, { "input": "sinuosity", "output": "⠎⠔⠥⠕⠎⠰⠽" }, { "input": "sinuosity's", "output": "⠎⠔⠥⠕⠎⠰⠽⠄⠎" }, { "input": "sinuous", "output": "⠎⠔⠥⠳⠎" }, { "input": "sinus", "output": "⠎⠔⠥⠎" }, { "input": "sinus's", "output": "⠎⠔⠥⠎⠄⠎" }, { "input": "sinuses", "output": "⠎⠔⠥⠎⠑⠎" }, { "input": "sinusitis", "output": "⠎⠔⠥⠎⠊⠞⠊⠎" }, { "input": "sinusitis's", "output": "⠎⠔⠥⠎⠊⠞⠊⠎⠄⠎" }, { "input": "sinusoidal", "output": "⠎⠔⠥⠎⠕⠊⠙â â ‡" }, { "input": "sip", "output": "â Žâ Šâ " }, { "input": "sip's", "output": "â Žâ Šâ â „â Ž" }, { "input": "siphon", "output": "â Žâ Šâ â “â •â " }, { "input": "siphon's", "output": "â Žâ Šâ â “â •â â „â Ž" }, { "input": "siphoned", "output": "â Žâ Šâ â “â •â â «" }, { "input": "siphoning", "output": "â Žâ Šâ â “â •â â Œ" }, { "input": "siphons", "output": "â Žâ Šâ â “â •â â Ž" }, { "input": "sipped", "output": "â Žâ Šâ â â «" }, { "input": "sipper", "output": "â Žâ Šâ â â »" }, { "input": "sipper's", "output": "â Žâ Šâ â â »â „â Ž" }, { "input": "sippers", "output": "â Žâ Šâ â â »â Ž" }, { "input": "sipping", "output": "â Žâ Šâ â â Œ" }, { "input": "sips", "output": "â Žâ Šâ â Ž" }, { "input": "sir", "output": "â Žâ Šâ —" }, { "input": "sir's", "output": "â Žâ Šâ —â „â Ž" }, { "input": "sire", "output": "â Žâ Šâ —â ‘" }, { "input": "sire's", "output": "â Žâ Šâ —â ‘â „â Ž" }, { "input": "sired", "output": "â Žâ Šâ —â «" }, { "input": "siren", "output": "â Žâ Šâ —â ¢" }, { "input": "siren's", "output": "⠎⠊⠗⠢⠄⠎" }, { "input": "sirens", "output": "⠎⠊⠗⠢⠎" }, { "input": "sires", "output": "â Žâ Šâ —â ‘â Ž" }, { "input": "siring", "output": "â Žâ Šâ —â Œ" }, { "input": "sirloin", "output": "⠎⠊⠗⠇⠕⠔" }, { "input": "sirloin's", "output": "⠎⠊⠗⠇⠕⠔⠄⠎" }, { "input": "sirloins", "output": "⠎⠊⠗⠇⠕⠔⠎" }, { "input": "sirocco", "output": "â Žâ Šâ —â •â ’â •" }, { "input": "sirocco's", "output": "â Žâ Šâ —â •â ’â •â „â Ž" }, { "input": "siroccos", "output": "â Žâ Šâ —â •â ’â •â Ž" }, { "input": "sirree", "output": "â Žâ Šâ —â —â ‘â ‘" }, { "input": "sirree's", "output": "â Žâ Šâ —â —â ‘â ‘â „â Ž" }, { "input": "sirs", "output": "â Žâ Šâ —â Ž" }, { "input": "sis", "output": "â Žâ Šâ Ž" }, { "input": "sis's", "output": "â Žâ Šâ Žâ „â Ž" }, { "input": "sisal", "output": "â Žâ Šâ Žâ â ‡" }, { "input": "sisal's", "output": "â Žâ Šâ Žâ â ‡â „â Ž" }, { "input": "sises", "output": "â Žâ Šâ Žâ ‘â Ž" }, { "input": "sissier", "output": "â Žâ Šâ Žâ Žâ Šâ »" }, { "input": "sissies", "output": "â Žâ Šâ Žâ Žâ Šâ ‘â Ž" }, { "input": "sissiest", "output": "â Žâ Šâ Žâ Žâ Šâ ‘â Œ" }, { "input": "sissified", "output": "â Žâ Šâ Žâ Žâ Šâ ‹â Šâ «" }, { "input": "sissy", "output": "â Žâ Šâ Žâ Žâ ½" }, { "input": "sissy's", "output": "⠎⠊⠎⠎⠽⠄⠎" }, { "input": "sister", "output": "⠎⠊⠌⠻" }, { "input": "sister's", "output": "⠎⠊⠌⠻⠄⠎" }, { "input": "sisterhood", "output": "⠎⠊⠌⠻⠓⠕⠕⠙" }, { "input": "sisterhood's", "output": "⠎⠊⠌⠻⠓⠕⠕⠙⠄⠎" }, { "input": "sisterhoods", "output": "⠎⠊⠌⠻⠓⠕⠕⠙⠎" }, { "input": "sisterliness", "output": "⠎⠊⠌⠻⠇⠊⠰⠎" }, { "input": "sisterliness's", "output": "⠎⠊⠌⠻⠇⠊⠰⠎⠄⠎" }, { "input": "sisterly", "output": "⠎⠊⠌⠻⠇⠽" }, { "input": "sisters", "output": "⠎⠊⠌⠻⠎" }, { "input": "sit", "output": "â Žâ Šâ ž" }, { "input": "sitar", "output": "â Žâ Šâ žâ œ" }, { "input": "sitar's", "output": "⠎⠊⠞⠜⠄⠎" }, { "input": "sitarist", "output": "⠎⠊⠞⠜⠊⠌" }, { "input": "sitarist's", "output": "⠎⠊⠞⠜⠊⠌⠄⠎" }, { "input": "sitarists", "output": "⠎⠊⠞⠜⠊⠌⠎" }, { "input": "sitars", "output": "⠎⠊⠞⠜⠎" }, { "input": "sitcom", "output": "⠎⠊⠞⠉⠕â " }, { "input": "sitcom's", "output": "⠎⠊⠞⠉⠕â â „â Ž" }, { "input": "sitcoms", "output": "⠎⠊⠞⠉⠕â â Ž" }, { "input": "site", "output": "â Žâ Šâ žâ ‘" }, { "input": "site's", "output": "â Žâ Šâ žâ ‘â „â Ž" }, { "input": "sited", "output": "â Žâ Šâ žâ «" }, { "input": "sites", "output": "â Žâ Šâ žâ ‘â Ž" }, { "input": "siting", "output": "â Žâ Šâ žâ Œ" }, { "input": "sits", "output": "â Žâ Šâ žâ Ž" }, { "input": "sitter", "output": "â Žâ Šâ žâ žâ »" }, { "input": "sitter's", "output": "⠎⠊⠞⠞⠻⠄⠎" }, { "input": "sitters", "output": "⠎⠊⠞⠞⠻⠎" }, { "input": "sitting", "output": "â Žâ Šâ žâ žâ Œ" }, { "input": "sitting's", "output": "⠎⠊⠞⠞⠌⠄⠎" }, { "input": "sittings", "output": "⠎⠊⠞⠞⠌⠎" }, { "input": "situate", "output": "â Žâ Šâ žâ ¥â â žâ ‘" }, { "input": "situated", "output": "â Žâ Šâ žâ ¥â â žâ «" }, { "input": "situates", "output": "â Žâ Šâ žâ ¥â â žâ ‘â Ž" }, { "input": "situating", "output": "â Žâ Šâ žâ ¥â â žâ Œ" }, { "input": "situation", "output": "⠎⠊⠞⠥⠠â " }, { "input": "situation's", "output": "⠎⠊⠞⠥⠠â â „â Ž" }, { "input": "situations", "output": "⠎⠊⠞⠥⠠â â Ž" }, { "input": "six", "output": "â Žâ Šâ ­" }, { "input": "six's", "output": "â Žâ Šâ ­â „â Ž" }, { "input": "sixes", "output": "â Žâ Šâ ­â ‘â Ž" }, { "input": "sixpence", "output": "â Žâ Šâ ­â â °â ‘" }, { "input": "sixpence's", "output": "â Žâ Šâ ­â â °â ‘â „â Ž" }, { "input": "sixpences", "output": "â Žâ Šâ ­â â °â ‘â Ž" }, { "input": "sixshooter", "output": "â Žâ Šâ ­â ©â •â •â žâ »" }, { "input": "sixshooter's", "output": "⠎⠊⠭⠩⠕⠕⠞⠻⠄⠎" }, { "input": "sixteen", "output": "â Žâ Šâ ­â žâ ‘â ¢" }, { "input": "sixteen's", "output": "⠎⠊⠭⠞⠑⠢⠄⠎" }, { "input": "sixteens", "output": "⠎⠊⠭⠞⠑⠢⠎" }, { "input": "sixteenth", "output": "⠎⠊⠭⠞⠑⠢⠹" }, { "input": "sixteenth's", "output": "⠎⠊⠭⠞⠑⠢⠹⠄⠎" }, { "input": "sixteenths", "output": "⠎⠊⠭⠞⠑⠢⠹⠎" }, { "input": "sixth", "output": "â Žâ Šâ ­â ¹" }, { "input": "sixth's", "output": "⠎⠊⠭⠹⠄⠎" }, { "input": "sixths", "output": "⠎⠊⠭⠹⠎" }, { "input": "sixties", "output": "â Žâ Šâ ­â žâ Šâ ‘â Ž" }, { "input": "sixtieth", "output": "â Žâ Šâ ­â žâ Šâ ‘â ¹" }, { "input": "sixtieth's", "output": "⠎⠊⠭⠞⠊⠑⠹⠄⠎" }, { "input": "sixtieths", "output": "⠎⠊⠭⠞⠊⠑⠹⠎" }, { "input": "sixty", "output": "â Žâ Šâ ­â žâ ½" }, { "input": "sixty's", "output": "⠎⠊⠭⠞⠽⠄⠎" }, { "input": "sizable", "output": "â Žâ Šâ µâ â ¼" }, { "input": "size", "output": "⠎⠊⠵⠑" }, { "input": "size's", "output": "⠎⠊⠵⠑⠄⠎" }, { "input": "sized", "output": "⠎⠊⠵⠫" }, { "input": "sizer", "output": "⠎⠊⠵⠻" }, { "input": "sizes", "output": "⠎⠊⠵⠑⠎" }, { "input": "sizing", "output": "⠎⠊⠵⠌" }, { "input": "sizing's", "output": "⠎⠊⠵⠌⠄⠎" }, { "input": "sizzle", "output": "⠎⠊⠵⠵⠇⠑" }, { "input": "sizzle's", "output": "⠎⠊⠵⠵⠇⠑⠄⠎" }, { "input": "sizzled", "output": "⠎⠊⠵⠵⠇⠫" }, { "input": "sizzles", "output": "⠎⠊⠵⠵⠇⠑⠎" }, { "input": "sizzling", "output": "⠎⠊⠵⠵⠇⠌" }, { "input": "ska's", "output": "â Žâ …â â „â Ž" }, { "input": "skate", "output": "â Žâ …â â žâ ‘" }, { "input": "skate's", "output": "â Žâ …â â žâ ‘â „â Ž" }, { "input": "skateboard", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙" }, { "input": "skateboard's", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠄⠎" }, { "input": "skateboarded", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠫" }, { "input": "skateboarder", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠻" }, { "input": "skateboarder's", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠻⠄⠎" }, { "input": "skateboarders", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠻⠎" }, { "input": "skateboarding", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠌" }, { "input": "skateboarding's", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠌⠄⠎" }, { "input": "skateboards", "output": "â Žâ …â â žâ ‘⠃⠕⠜⠙⠎" }, { "input": "skated", "output": "â Žâ …â â žâ «" }, { "input": "skater", "output": "â Žâ …â â žâ »" }, { "input": "skater's", "output": "â Žâ …â â žâ »â „â Ž" }, { "input": "skaters", "output": "â Žâ …â â žâ »â Ž" }, { "input": "skates", "output": "â Žâ …â â žâ ‘â Ž" }, { "input": "skating", "output": "â Žâ …â â žâ Œ" }, { "input": "skating's", "output": "â Žâ …â â žâ Œâ „â Ž" }, { "input": "skedaddle", "output": "â Žâ …â ‘â ™â â ²â ‡â ‘" }, { "input": "skedaddle's", "output": "â Žâ …â ‘â ™â â ²â ‡â ‘â „â Ž" }, { "input": "skedaddled", "output": "â Žâ …â ‘â ™â â ²â ‡â «" }, { "input": "skedaddles", "output": "â Žâ …â ‘â ™â â ²â ‡â ‘â Ž" }, { "input": "skedaddling", "output": "â Žâ …â ‘â ™â â ²â ‡â Œ" }, { "input": "skeet", "output": "â Žâ …â ‘â ‘â ž" }, { "input": "skeet's", "output": "â Žâ …â ‘â ‘â žâ „â Ž" }, { "input": "skein", "output": "â Žâ …â ‘â ”" }, { "input": "skein's", "output": "⠎⠅⠑⠔⠄⠎" }, { "input": "skeins", "output": "⠎⠅⠑⠔⠎" }, { "input": "skeletal", "output": "⠎⠅⠑⠇⠑⠞â â ‡" }, { "input": "skeleton", "output": "⠎⠅⠑⠇⠑⠞⠕â " }, { "input": "skeleton's", "output": "⠎⠅⠑⠇⠑⠞⠕â â „â Ž" }, { "input": "skeletons", "output": "⠎⠅⠑⠇⠑⠞⠕â â Ž" }, { "input": "skeptic", "output": "â Žâ …â ‘â â žâ Šâ ‰" }, { "input": "skeptic's", "output": "â Žâ …â ‘â â žâ Šâ ‰â „â Ž" }, { "input": "skeptical", "output": "â Žâ …â ‘â â žâ Šâ ‰â â ‡" }, { "input": "skeptically", "output": "â Žâ …â ‘â â žâ Šâ ‰â  â ½" }, { "input": "skepticism", "output": "â Žâ …â ‘â â žâ Šâ ‰â Šâ Žâ " }, { "input": "skepticism's", "output": "â Žâ …â ‘â â žâ Šâ ‰â Šâ Žâ â „â Ž" }, { "input": "skeptics", "output": "â Žâ …â ‘â â žâ Šâ ‰â Ž" }, { "input": "sketch", "output": "â Žâ …â ‘â žâ ¡" }, { "input": "sketch's", "output": "â Žâ …â ‘â žâ ¡â „â Ž" }, { "input": "sketched", "output": "â Žâ …â ‘â žâ ¡â «" }, { "input": "sketcher", "output": "â Žâ …â ‘â žâ ¡â »" }, { "input": "sketcher's", "output": "⠎⠅⠑⠞⠡⠻⠄⠎" }, { "input": "sketchers", "output": "⠎⠅⠑⠞⠡⠻⠎" }, { "input": "sketches", "output": "â Žâ …â ‘â žâ ¡â ‘â Ž" }, { "input": "sketchier", "output": "â Žâ …â ‘â žâ ¡â Šâ »" }, { "input": "sketchiest", "output": "â Žâ …â ‘â žâ ¡â Šâ ‘â Œ" }, { "input": "sketchiness", "output": "â Žâ …â ‘â žâ ¡â Šâ °â Ž" }, { "input": "sketchiness's", "output": "â Žâ …â ‘â žâ ¡â Šâ °â Žâ „â Ž" }, { "input": "sketching", "output": "â Žâ …â ‘â žâ ¡â Œ" }, { "input": "sketchy", "output": "â Žâ …â ‘â žâ ¡â ½" }, { "input": "skew", "output": "â Žâ …â ‘â º" }, { "input": "skew's", "output": "⠎⠅⠑⠺⠄⠎" }, { "input": "skewed", "output": "⠎⠅⠑⠺⠫" }, { "input": "skewer", "output": "⠎⠅⠑⠺⠻" }, { "input": "skewer's", "output": "⠎⠅⠑⠺⠻⠄⠎" }, { "input": "skewered", "output": "⠎⠅⠑⠺⠻⠫" }, { "input": "skewering", "output": "⠎⠅⠑⠺⠻⠌" }, { "input": "skewers", "output": "⠎⠅⠑⠺⠻⠎" }, { "input": "skewing", "output": "⠎⠅⠑⠺⠌" }, { "input": "skews", "output": "⠎⠅⠑⠺⠎" }, { "input": "ski", "output": "â Žâ …â Š" }, { "input": "ski's", "output": "â Žâ …â Šâ „â Ž" }, { "input": "skid", "output": "â Žâ …â Šâ ™" }, { "input": "skid's", "output": "⠎⠅⠊⠙⠄⠎" }, { "input": "skidded", "output": "⠎⠅⠊⠲⠫" }, { "input": "skidding", "output": "⠎⠅⠊⠲⠌" }, { "input": "skids", "output": "⠎⠅⠊⠙⠎" }, { "input": "skied", "output": "â Žâ …â Šâ «" }, { "input": "skier", "output": "â Žâ …â Šâ »" }, { "input": "skier's", "output": "⠎⠅⠊⠻⠄⠎" }, { "input": "skiers", "output": "⠎⠅⠊⠻⠎" }, { "input": "skies", "output": "â Žâ …â Šâ ‘â Ž" }, { "input": "skiff", "output": "â Žâ …â Šâ ‹â ‹" }, { "input": "skiff's", "output": "â Žâ …â Šâ ‹â ‹â „â Ž" }, { "input": "skiffs", "output": "â Žâ …â Šâ –â Ž" }, { "input": "skiing", "output": "â Žâ …â Šâ Œ" }, { "input": "skiing's", "output": "⠎⠅⠊⠌⠄⠎" }, { "input": "skill", "output": "⠎⠅⠊⠇⠇" }, { "input": "skill's", "output": "⠎⠅⠊⠇⠇⠄⠎" }, { "input": "skilled", "output": "⠎⠅⠊⠇⠇⠫" }, { "input": "skillet", "output": "⠎⠅⠊⠇⠇⠑⠞" }, { "input": "skillet's", "output": "⠎⠅⠊⠇⠇⠑⠞⠄⠎" }, { "input": "skillets", "output": "⠎⠅⠊⠇⠇⠑⠞⠎" }, { "input": "skillful", "output": "⠎⠅⠊⠇⠇⠰⠇" }, { "input": "skillfully", "output": "⠎⠅⠊⠇⠇⠰⠇⠇⠽" }, { "input": "skillfulness", "output": "⠎⠅⠊⠇⠇⠰⠇⠰⠎" }, { "input": "skillfulness's", "output": "⠎⠅⠊⠇⠇⠰⠇⠰⠎⠄⠎" }, { "input": "skills", "output": "⠎⠅⠊⠇⠇⠎" }, { "input": "skim", "output": "â Žâ …â Šâ " }, { "input": "skim's", "output": "â Žâ …â Šâ â „â Ž" }, { "input": "skimmed", "output": "â Žâ …â Šâ â â «" }, { "input": "skimmer", "output": "â Žâ …â Šâ â â »" }, { "input": "skimmer's", "output": "â Žâ …â Šâ â â »â „â Ž" }, { "input": "skimmers", "output": "â Žâ …â Šâ â â »â Ž" }, { "input": "skimming", "output": "â Žâ …â Šâ â â Œ" }, { "input": "skimp", "output": "â Žâ …â Šâ â " }, { "input": "skimped", "output": "â Žâ …â Šâ â â «" }, { "input": "skimpier", "output": "â Žâ …â Šâ â â Šâ »" }, { "input": "skimpiest", "output": "â Žâ …â Šâ â â Šâ ‘â Œ" }, { "input": "skimpily", "output": "â Žâ …â Šâ â â Šâ ‡â ½" }, { "input": "skimpiness", "output": "â Žâ …â Šâ â â Šâ °â Ž" }, { "input": "skimpiness's", "output": "â Žâ …â Šâ â â Šâ °â Žâ „â Ž" }, { "input": "skimping", "output": "â Žâ …â Šâ â â Œ" }, { "input": "skimps", "output": "â Žâ …â Šâ â â Ž" }, { "input": "skimpy", "output": "â Žâ …â Šâ â â ½" }, { "input": "skims", "output": "â Žâ …â Šâ â Ž" }, { "input": "skin", "output": "â Žâ …â ”" }, { "input": "skin's", "output": "⠎⠅⠔⠄⠎" }, { "input": "skincare's", "output": "⠎⠅⠔⠉⠜⠑⠄⠎" }, { "input": "skinflint", "output": "⠎⠅⠔⠋⠇⠔⠞" }, { "input": "skinflint's", "output": "⠎⠅⠔⠋⠇⠔⠞⠄⠎" }, { "input": "skinflints", "output": "⠎⠅⠔⠋⠇⠔⠞⠎" }, { "input": "skinhead", "output": "⠎⠅⠔⠓⠂⠙" }, { "input": "skinhead's", "output": "⠎⠅⠔⠓⠂⠙⠄⠎" }, { "input": "skinheads", "output": "⠎⠅⠔⠓⠂⠙⠎" }, { "input": "skinless", "output": "⠎⠅⠔⠨⠎" }, { "input": "skinned", "output": "â Žâ …â ”â â «" }, { "input": "skinnier", "output": "â Žâ …â ”â â Šâ »" }, { "input": "skinniest", "output": "â Žâ …â ”â â Šâ ‘â Œ" }, { "input": "skinniness", "output": "â Žâ …â ”â â Šâ °â Ž" }, { "input": "skinniness's", "output": "â Žâ …â ”â â Šâ °â Žâ „â Ž" }, { "input": "skinning", "output": "â Žâ …â ”â â Œ" }, { "input": "skinny", "output": "â Žâ …â ”â â ½" }, { "input": "skinny's", "output": "â Žâ …â ”â â ½â „â Ž" }, { "input": "skins", "output": "⠎⠅⠔⠎" }, { "input": "skintight", "output": "⠎⠅⠔⠞⠊⠣⠞" }, { "input": "skip", "output": "â Žâ …â Šâ " }, { "input": "skip's", "output": "â Žâ …â Šâ â „â Ž" }, { "input": "skipped", "output": "â Žâ …â Šâ â â «" }, { "input": "skipper", "output": "â Žâ …â Šâ â â »" }, { "input": "skipper's", "output": "â Žâ …â Šâ â â »â „â Ž" }, { "input": "skippered", "output": "â Žâ …â Šâ â â »â «" }, { "input": "skippering", "output": "â Žâ …â Šâ â â »â Œ" }, { "input": "skippers", "output": "â Žâ …â Šâ â â »â Ž" }, { "input": "skipping", "output": "â Žâ …â Šâ â â Œ" }, { "input": "skips", "output": "â Žâ …â Šâ â Ž" }, { "input": "skirmish", "output": "â Žâ …â Šâ —â â Šâ ©" }, { "input": "skirmish's", "output": "â Žâ …â Šâ —â â Šâ ©â „â Ž" }, { "input": "skirmished", "output": "â Žâ …â Šâ —â â Šâ ©â «" }, { "input": "skirmishes", "output": "â Žâ …â Šâ —â â Šâ ©â ‘â Ž" }, { "input": "skirmishing", "output": "â Žâ …â Šâ —â â Šâ ©â Œ" }, { "input": "skirt", "output": "â Žâ …â Šâ —â ž" }, { "input": "skirt's", "output": "â Žâ …â Šâ —â žâ „â Ž" }, { "input": "skirted", "output": "â Žâ …â Šâ —â žâ «" }, { "input": "skirting", "output": "â Žâ …â Šâ —â žâ Œ" }, { "input": "skirts", "output": "â Žâ …â Šâ —â žâ Ž" }, { "input": "skis", "output": "â Žâ …â Šâ Ž" }, { "input": "skit", "output": "â Žâ …â Šâ ž" }, { "input": "skit's", "output": "â Žâ …â Šâ žâ „â Ž" }, { "input": "skits", "output": "â Žâ …â Šâ žâ Ž" }, { "input": "skitter", "output": "â Žâ …â Šâ žâ žâ »" }, { "input": "skittered", "output": "⠎⠅⠊⠞⠞⠻⠫" }, { "input": "skittering", "output": "⠎⠅⠊⠞⠞⠻⠌" }, { "input": "skitters", "output": "⠎⠅⠊⠞⠞⠻⠎" }, { "input": "skittish", "output": "â Žâ …â Šâ žâ žâ Šâ ©" }, { "input": "skittishness's", "output": "â Žâ …â Šâ žâ žâ Šâ ©â °â Žâ „â Ž" }, { "input": "skivvied", "output": "â Žâ …â Šâ §â §â Šâ «" }, { "input": "skivvies", "output": "â Žâ …â Šâ §â §â Šâ ‘â Ž" }, { "input": "skivvy", "output": "â Žâ …â Šâ §â §â ½" }, { "input": "skivvy's", "output": "⠎⠅⠊⠧⠧⠽⠄⠎" }, { "input": "skivvying", "output": "⠎⠅⠊⠧⠧⠽⠌" }, { "input": "skoal", "output": "â Žâ …â •â â ‡" }, { "input": "skoal's", "output": "â Žâ …â •â â ‡â „â Ž" }, { "input": "skoals", "output": "â Žâ …â •â â ‡â Ž" }, { "input": "skulduggery", "output": "⠎⠅⠥⠇⠙⠥⠶⠻⠽" }, { "input": "skulduggery's", "output": "⠎⠅⠥⠇⠙⠥⠶⠻⠽⠄⠎" }, { "input": "skulk", "output": "⠎⠅⠥⠇⠅" }, { "input": "skulked", "output": "⠎⠅⠥⠇⠅⠫" }, { "input": "skulker", "output": "⠎⠅⠥⠇⠅⠻" }, { "input": "skulker's", "output": "⠎⠅⠥⠇⠅⠻⠄⠎" }, { "input": "skulkers", "output": "⠎⠅⠥⠇⠅⠻⠎" }, { "input": "skulking", "output": "⠎⠅⠥⠇⠅⠌" }, { "input": "skulks", "output": "⠎⠅⠥⠇⠅⠎" }, { "input": "skull", "output": "⠎⠅⠥⠇⠇" }, { "input": "skull's", "output": "⠎⠅⠥⠇⠇⠄⠎" }, { "input": "skullcap", "output": "⠎⠅⠥⠇⠇⠉â â " }, { "input": "skullcap's", "output": "⠎⠅⠥⠇⠇⠉â â â „â Ž" }, { "input": "skullcaps", "output": "⠎⠅⠥⠇⠇⠉â â â Ž" }, { "input": "skulls", "output": "⠎⠅⠥⠇⠇⠎" }, { "input": "skunk", "output": "â Žâ …â ¥â â …" }, { "input": "skunk's", "output": "â Žâ …â ¥â â …â „â Ž" }, { "input": "skunked", "output": "â Žâ …â ¥â â …â «" }, { "input": "skunking", "output": "â Žâ …â ¥â â …â Œ" }, { "input": "skunks", "output": "â Žâ …â ¥â â …â Ž" }, { "input": "sky", "output": "â Žâ …â ½" }, { "input": "sky's", "output": "⠎⠅⠽⠄⠎" }, { "input": "skycap", "output": "⠎⠅⠽⠉â â " }, { "input": "skycap's", "output": "⠎⠅⠽⠉â â â „â Ž" }, { "input": "skycaps", "output": "⠎⠅⠽⠉â â â Ž" }, { "input": "skydive", "output": "⠎⠅⠽⠙⠊⠧⠑" }, { "input": "skydived", "output": "⠎⠅⠽⠙⠊⠧⠫" }, { "input": "skydiver", "output": "⠎⠅⠽⠙⠊⠧⠻" }, { "input": "skydiver's", "output": "⠎⠅⠽⠙⠊⠧⠻⠄⠎" }, { "input": "skydivers", "output": "⠎⠅⠽⠙⠊⠧⠻⠎" }, { "input": "skydives", "output": "⠎⠅⠽⠙⠊⠧⠑⠎" }, { "input": "skydiving", "output": "⠎⠅⠽⠙⠊⠧⠌" }, { "input": "skydiving's", "output": "⠎⠅⠽⠙⠊⠧⠌⠄⠎" }, { "input": "skying", "output": "⠎⠅⠽⠌" }, { "input": "skyjack", "output": "⠎⠅⠽⠚â â ‰â …" }, { "input": "skyjacked", "output": "⠎⠅⠽⠚â â ‰â …â «" }, { "input": "skyjacker", "output": "⠎⠅⠽⠚â â ‰â …â »" }, { "input": "skyjacker's", "output": "⠎⠅⠽⠚â â ‰â …⠻⠄⠎" }, { "input": "skyjackers", "output": "⠎⠅⠽⠚â â ‰â …⠻⠎" }, { "input": "skyjacking", "output": "⠎⠅⠽⠚â â ‰â …â Œ" }, { "input": "skyjacking's", "output": "⠎⠅⠽⠚â â ‰â …⠌⠄⠎" }, { "input": "skyjackings", "output": "⠎⠅⠽⠚â â ‰â …⠌⠎" }, { "input": "skyjacks", "output": "⠎⠅⠽⠚â â ‰â …â Ž" }, { "input": "skylark", "output": "⠎⠅⠽⠇⠜⠅" }, { "input": "skylark's", "output": "⠎⠅⠽⠇⠜⠅⠄⠎" }, { "input": "skylarked", "output": "⠎⠅⠽⠇⠜⠅⠫" }, { "input": "skylarking", "output": "⠎⠅⠽⠇⠜⠅⠌" }, { "input": "skylarks", "output": "⠎⠅⠽⠇⠜⠅⠎" }, { "input": "skylight", "output": "⠎⠅⠽⠇⠊⠣⠞" }, { "input": "skylight's", "output": "⠎⠅⠽⠇⠊⠣⠞⠄⠎" }, { "input": "skylights", "output": "⠎⠅⠽⠇⠊⠣⠞⠎" }, { "input": "skyline", "output": "⠎⠅⠽⠇⠔⠑" }, { "input": "skyline's", "output": "⠎⠅⠽⠇⠔⠑⠄⠎" }, { "input": "skylines", "output": "⠎⠅⠽⠇⠔⠑⠎" }, { "input": "skyrocket", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞" }, { "input": "skyrocket's", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠄⠎" }, { "input": "skyrocketed", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠫" }, { "input": "skyrocketing", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠌" }, { "input": "skyrockets", "output": "⠎⠅⠽⠗⠕⠉⠅⠑⠞⠎" }, { "input": "skyscraper", "output": "⠎⠅⠽⠎⠉⠗â â â »" }, { "input": "skyscraper's", "output": "⠎⠅⠽⠎⠉⠗â â â »â „â Ž" }, { "input": "skyscrapers", "output": "⠎⠅⠽⠎⠉⠗â â â »â Ž" }, { "input": "skyward", "output": "⠎⠅⠽⠺⠜⠙" }, { "input": "skywards", "output": "⠎⠅⠽⠺⠜⠙⠎" }, { "input": "skywriter", "output": "⠎⠅⠽⠺⠗⠊⠞⠻" }, { "input": "skywriter's", "output": "⠎⠅⠽⠺⠗⠊⠞⠻⠄⠎" }, { "input": "skywriters", "output": "⠎⠅⠽⠺⠗⠊⠞⠻⠎" }, { "input": "skywriting", "output": "⠎⠅⠽⠺⠗⠊⠞⠌" }, { "input": "skywriting's", "output": "⠎⠅⠽⠺⠗⠊⠞⠌⠄⠎" }, { "input": "slab", "output": "â Žâ ‡â â ƒ" }, { "input": "slab's", "output": "â Žâ ‡â â ƒâ „â Ž" }, { "input": "slabbed", "output": "â Žâ ‡â â †â «" }, { "input": "slabbing", "output": "â Žâ ‡â â †â Œ" }, { "input": "slabs", "output": "â Žâ ‡â â ƒâ Ž" }, { "input": "slack", "output": "â Žâ ‡â â ‰â …" }, { "input": "slack's", "output": "â Žâ ‡â â ‰â …â „â Ž" }, { "input": "slacked", "output": "â Žâ ‡â â ‰â …â «" }, { "input": "slacken", "output": "â Žâ ‡â â ‰â …â ¢" }, { "input": "slackened", "output": "â Žâ ‡â â ‰â …⠢⠫" }, { "input": "slackening", "output": "â Žâ ‡â â ‰â …⠢⠌" }, { "input": "slackens", "output": "â Žâ ‡â â ‰â …⠢⠎" }, { "input": "slacker", "output": "â Žâ ‡â â ‰â …â »" }, { "input": "slacker's", "output": "â Žâ ‡â â ‰â …⠻⠄⠎" }, { "input": "slackers", "output": "â Žâ ‡â â ‰â …⠻⠎" }, { "input": "slackest", "output": "â Žâ ‡â â ‰â …â ‘â Œ" }, { "input": "slacking", "output": "â Žâ ‡â â ‰â …â Œ" }, { "input": "slackly", "output": "â Žâ ‡â â ‰â …⠇⠽" }, { "input": "slackness", "output": "â Žâ ‡â â ‰â …â °â Ž" }, { "input": "slackness's", "output": "â Žâ ‡â â ‰â …â °â Žâ „â Ž" }, { "input": "slacks", "output": "â Žâ ‡â â ‰â …â Ž" }, { "input": "slacks's", "output": "â Žâ ‡â â ‰â …â Žâ „â Ž" }, { "input": "slag", "output": "â Žâ ‡â â ›" }, { "input": "slag's", "output": "â Žâ ‡â â ›â „â Ž" }, { "input": "slags", "output": "â Žâ ‡â â ›â Ž" }, { "input": "slain", "output": "â Žâ ‡â â ”" }, { "input": "slake", "output": "â Žâ ‡â â …â ‘" }, { "input": "slaked", "output": "â Žâ ‡â â …â «" }, { "input": "slakes", "output": "â Žâ ‡â â …â ‘â Ž" }, { "input": "slaking", "output": "â Žâ ‡â â …â Œ" }, { "input": "slalom", "output": "â Žâ ‡â â ‡â •â " }, { "input": "slalom's", "output": "â Žâ ‡â â ‡â •â â „â Ž" }, { "input": "slalomed", "output": "â Žâ ‡â â ‡â •â â «" }, { "input": "slaloming", "output": "â Žâ ‡â â ‡â •â â Œ" }, { "input": "slaloms", "output": "â Žâ ‡â â ‡â •â â Ž" }, { "input": "slam", "output": "â Žâ ‡â â " }, { "input": "slam's", "output": "â Žâ ‡â â â „â Ž" }, { "input": "slammed", "output": "â Žâ ‡â â â â «" }, { "input": "slammer", "output": "â Žâ ‡â â â â »" }, { "input": "slammer's", "output": "â Žâ ‡â â â â »â „â Ž" }, { "input": "slammers", "output": "â Žâ ‡â â â â »â Ž" }, { "input": "slamming", "output": "â Žâ ‡â â â â Œ" }, { "input": "slams", "output": "â Žâ ‡â â â Ž" }, { "input": "slander", "output": "⠎⠇⠯⠻" }, { "input": "slander's", "output": "⠎⠇⠯⠻⠄⠎" }, { "input": "slandered", "output": "⠎⠇⠯⠻⠫" }, { "input": "slanderer", "output": "⠎⠇⠯⠻⠻" }, { "input": "slanderer's", "output": "⠎⠇⠯⠻⠻⠄⠎" }, { "input": "slanderers", "output": "⠎⠇⠯⠻⠻⠎" }, { "input": "slandering", "output": "⠎⠇⠯⠻⠌" }, { "input": "slanderous", "output": "⠎⠇⠯⠻⠳⠎" }, { "input": "slanders", "output": "⠎⠇⠯⠻⠎" }, { "input": "slang", "output": "â Žâ ‡â â â ›" }, { "input": "slang's", "output": "â Žâ ‡â â â ›â „â Ž" }, { "input": "slangier", "output": "â Žâ ‡â â â ›â Šâ »" }, { "input": "slangiest", "output": "â Žâ ‡â â â ›â Šâ ‘â Œ" }, { "input": "slangy", "output": "â Žâ ‡â â â ›â ½" }, { "input": "slant", "output": "â Žâ ‡â â â ž" }, { "input": "slant's", "output": "â Žâ ‡â â â žâ „â Ž" }, { "input": "slanted", "output": "â Žâ ‡â â â žâ «" }, { "input": "slanting", "output": "â Žâ ‡â â â žâ Œ" }, { "input": "slantingly", "output": "â Žâ ‡â â â žâ Œâ ‡â ½" }, { "input": "slants", "output": "â Žâ ‡â â â žâ Ž" }, { "input": "slantwise", "output": "â Žâ ‡â â â žâ ºâ Šâ Žâ ‘" }, { "input": "slap", "output": "â Žâ ‡â â " }, { "input": "slap's", "output": "â Žâ ‡â â â „â Ž" }, { "input": "slapdash", "output": "â Žâ ‡â â â ™â â ©" }, { "input": "slaphappier", "output": "â Žâ ‡â â â “â â â â Šâ »" }, { "input": "slaphappiest", "output": "â Žâ ‡â â â “â â â â Šâ ‘â Œ" }, { "input": "slaphappy", "output": "â Žâ ‡â â â “â â â â ½" }, { "input": "slapped", "output": "â Žâ ‡â â â â «" }, { "input": "slapping", "output": "â Žâ ‡â â â â Œ" }, { "input": "slaps", "output": "â Žâ ‡â â â Ž" }, { "input": "slapstick", "output": "â Žâ ‡â â â Œâ Šâ ‰â …" }, { "input": "slapstick's", "output": "â Žâ ‡â â â Œâ Šâ ‰â …â „â Ž" }, { "input": "slash", "output": "â Žâ ‡â â ©" }, { "input": "slash's", "output": "â Žâ ‡â â ©â „â Ž" }, { "input": "slashed", "output": "â Žâ ‡â â ©â «" }, { "input": "slasher", "output": "â Žâ ‡â â ©â »" }, { "input": "slasher's", "output": "â Žâ ‡â â ©â »â „â Ž" }, { "input": "slashers", "output": "â Žâ ‡â â ©â »â Ž" }, { "input": "slashes", "output": "â Žâ ‡â â ©â ‘â Ž" }, { "input": "slashing", "output": "â Žâ ‡â â ©â Œ" }, { "input": "slat", "output": "â Žâ ‡â â ž" }, { "input": "slat's", "output": "â Žâ ‡â â žâ „â Ž" }, { "input": "slate", "output": "â Žâ ‡â â žâ ‘" }, { "input": "slate's", "output": "â Žâ ‡â â žâ ‘â „â Ž" }, { "input": "slated", "output": "â Žâ ‡â â žâ «" }, { "input": "slates", "output": "â Žâ ‡â â žâ ‘â Ž" }, { "input": "slather", "output": "â Žâ ‡â â ®â —" }, { "input": "slathered", "output": "â Žâ ‡â â ®â —â «" }, { "input": "slathering", "output": "â Žâ ‡â â ®â —â Œ" }, { "input": "slathers", "output": "â Žâ ‡â â ®â —â Ž" }, { "input": "slating", "output": "â Žâ ‡â â žâ Œ" }, { "input": "slats", "output": "â Žâ ‡â â žâ Ž" }, { "input": "slattern", "output": "â Žâ ‡â â žâ žâ »â " }, { "input": "slattern's", "output": "â Žâ ‡â â žâ žâ »â â „â Ž" }, { "input": "slatternly", "output": "â Žâ ‡â â žâ žâ »â â ‡â ½" }, { "input": "slatterns", "output": "â Žâ ‡â â žâ žâ »â â Ž" }, { "input": "slaughter", "output": "â Žâ ‡â â ¥â £â žâ »" }, { "input": "slaughter's", "output": "â Žâ ‡â â ¥â £â žâ »â „â Ž" }, { "input": "slaughtered", "output": "â Žâ ‡â â ¥â £â žâ »â «" }, { "input": "slaughterer", "output": "â Žâ ‡â â ¥â £â žâ »â »" }, { "input": "slaughterer's", "output": "â Žâ ‡â â ¥â £â žâ »â »â „â Ž" }, { "input": "slaughterers", "output": "â Žâ ‡â â ¥â £â žâ »â »â Ž" }, { "input": "slaughterhouse", "output": "â Žâ ‡â â ¥â £â žâ »â “⠳⠎⠑" }, { "input": "slaughterhouse's", "output": "â Žâ ‡â â ¥â £â žâ »â “⠳⠎⠑⠄⠎" }, { "input": "slaughterhouses", "output": "â Žâ ‡â â ¥â £â žâ »â “⠳⠎⠑⠎" }, { "input": "slaughtering", "output": "â Žâ ‡â â ¥â £â žâ »â Œ" }, { "input": "slaughters", "output": "â Žâ ‡â â ¥â £â žâ »â Ž" }, { "input": "slave", "output": "â Žâ ‡â â §â ‘" }, { "input": "slave's", "output": "â Žâ ‡â â §â ‘â „â Ž" }, { "input": "slaved", "output": "â Žâ ‡â â §â «" }, { "input": "slaveholder", "output": "â Žâ ‡â â §â ‘⠓⠕⠇⠙⠻" }, { "input": "slaveholder's", "output": "â Žâ ‡â â §â ‘⠓⠕⠇⠙⠻⠄⠎" }, { "input": "slaveholders", "output": "â Žâ ‡â â §â ‘⠓⠕⠇⠙⠻⠎" }, { "input": "slaver", "output": "â Žâ ‡â â §â »" }, { "input": "slaver's", "output": "â Žâ ‡â â §â »â „â Ž" }, { "input": "slavered", "output": "â Žâ ‡â â §â »â «" }, { "input": "slavering", "output": "â Žâ ‡â â §â »â Œ" }, { "input": "slavers", "output": "â Žâ ‡â â §â »â Ž" }, { "input": "slavery", "output": "â Žâ ‡â â §â »â ½" }, { "input": "slavery's", "output": "â Žâ ‡â â §â »â ½â „â Ž" }, { "input": "slaves", "output": "â Žâ ‡â â §â ‘â Ž" }, { "input": "slaving", "output": "â Žâ ‡â â §â Œ" }, { "input": "slavish", "output": "â Žâ ‡â â §â Šâ ©" }, { "input": "slavishly", "output": "â Žâ ‡â â §â Šâ ©â ‡â ½" }, { "input": "slavishness", "output": "â Žâ ‡â â §â Šâ ©â °â Ž" }, { "input": "slavishness's", "output": "â Žâ ‡â â §â Šâ ©â °â Žâ „â Ž" }, { "input": "slaw", "output": "â Žâ ‡â â º" }, { "input": "slaw's", "output": "â Žâ ‡â â ºâ „â Ž" }, { "input": "slay", "output": "â Žâ ‡â â ½" }, { "input": "slayer", "output": "â Žâ ‡â â ½â »" }, { "input": "slayer's", "output": "â Žâ ‡â â ½â »â „â Ž" }, { "input": "slayers", "output": "â Žâ ‡â â ½â »â Ž" }, { "input": "slaying", "output": "â Žâ ‡â â ½â Œ" }, { "input": "slaying's", "output": "â Žâ ‡â â ½â Œâ „â Ž" }, { "input": "slayings", "output": "â Žâ ‡â â ½â Œâ Ž" }, { "input": "slays", "output": "â Žâ ‡â â ½â Ž" }, { "input": "sleaze", "output": "⠎⠇⠂⠵⠑" }, { "input": "sleaze's", "output": "⠎⠇⠂⠵⠑⠄⠎" }, { "input": "sleazes", "output": "⠎⠇⠂⠵⠑⠎" }, { "input": "sleazier", "output": "⠎⠇⠂⠵⠊⠻" }, { "input": "sleaziest", "output": "⠎⠇⠂⠵⠊⠑⠌" }, { "input": "sleazily", "output": "⠎⠇⠂⠵⠊⠇⠽" }, { "input": "sleaziness", "output": "⠎⠇⠂⠵⠊⠰⠎" }, { "input": "sleaziness's", "output": "⠎⠇⠂⠵⠊⠰⠎⠄⠎" }, { "input": "sleazy", "output": "⠎⠇⠂⠵⠽" }, { "input": "sled", "output": "⠎⠇⠫" }, { "input": "sled's", "output": "⠎⠇⠫⠄⠎" }, { "input": "sledded", "output": "⠎⠇⠫⠙⠫" }, { "input": "sledder", "output": "⠎⠇⠫⠙⠻" }, { "input": "sledder's", "output": "⠎⠇⠫⠙⠻⠄⠎" }, { "input": "sledders", "output": "⠎⠇⠫⠙⠻⠎" }, { "input": "sledding", "output": "⠎⠇⠫⠙⠌" }, { "input": "sledge", "output": "⠎⠇⠫⠛⠑" }, { "input": "sledge's", "output": "⠎⠇⠫⠛⠑⠄⠎" }, { "input": "sledged", "output": "⠎⠇⠫⠛⠫" }, { "input": "sledgehammer", "output": "⠎⠇⠫⠛⠑⠓â â â â »" }, { "input": "sledgehammer's", "output": "⠎⠇⠫⠛⠑⠓â â â â »â „â Ž" }, { "input": "sledgehammered", "output": "⠎⠇⠫⠛⠑⠓â â â â »â «" }, { "input": "sledgehammering", "output": "⠎⠇⠫⠛⠑⠓â â â â »â Œ" }, { "input": "sledgehammers", "output": "⠎⠇⠫⠛⠑⠓â â â â »â Ž" }, { "input": "sledges", "output": "⠎⠇⠫⠛⠑⠎" }, { "input": "sledging", "output": "⠎⠇⠫⠛⠌" }, { "input": "sleds", "output": "⠎⠇⠫⠎" }, { "input": "sleek", "output": "⠎⠇⠑⠑⠅" }, { "input": "sleeked", "output": "⠎⠇⠑⠑⠅⠫" }, { "input": "sleeker", "output": "⠎⠇⠑⠑⠅⠻" }, { "input": "sleekest", "output": "⠎⠇⠑⠑⠅⠑⠌" }, { "input": "sleeking", "output": "⠎⠇⠑⠑⠅⠌" }, { "input": "sleekly", "output": "⠎⠇⠑⠑⠅⠇⠽" }, { "input": "sleekness", "output": "⠎⠇⠑⠑⠅⠰⠎" }, { "input": "sleekness's", "output": "⠎⠇⠑⠑⠅⠰⠎⠄⠎" }, { "input": "sleeks", "output": "⠎⠇⠑⠑⠅⠎" }, { "input": "sleep", "output": "⠎⠇⠑⠑â " }, { "input": "sleep's", "output": "⠎⠇⠑⠑â â „â Ž" }, { "input": "sleeper", "output": "⠎⠇⠑⠑â â »" }, { "input": "sleeper's", "output": "⠎⠇⠑⠑â â »â „â Ž" }, { "input": "sleepers", "output": "⠎⠇⠑⠑â â »â Ž" }, { "input": "sleepier", "output": "⠎⠇⠑⠑â â Šâ »" }, { "input": "sleepiest", "output": "⠎⠇⠑⠑â â Šâ ‘â Œ" }, { "input": "sleepily", "output": "⠎⠇⠑⠑â â Šâ ‡â ½" }, { "input": "sleepiness", "output": "⠎⠇⠑⠑â â Šâ °â Ž" }, { "input": "sleepiness's", "output": "⠎⠇⠑⠑â â Šâ °â Žâ „â Ž" }, { "input": "sleeping", "output": "⠎⠇⠑⠑â â Œ" }, { "input": "sleepless", "output": "⠎⠇⠑⠑â â ¨â Ž" }, { "input": "sleeplessness", "output": "⠎⠇⠑⠑â â ¨â Žâ °â Ž" }, { "input": "sleeplessness's", "output": "⠎⠇⠑⠑â â ¨â Žâ °â Žâ „â Ž" }, { "input": "sleeps", "output": "⠎⠇⠑⠑â â Ž" }, { "input": "sleepwalk", "output": "⠎⠇⠑⠑â â ºâ â ‡â …" }, { "input": "sleepwalked", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â «" }, { "input": "sleepwalker", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â »" }, { "input": "sleepwalker's", "output": "⠎⠇⠑⠑â â ºâ â ‡â …⠻⠄⠎" }, { "input": "sleepwalkers", "output": "⠎⠇⠑⠑â â ºâ â ‡â …⠻⠎" }, { "input": "sleepwalking", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â Œ" }, { "input": "sleepwalking's", "output": "⠎⠇⠑⠑â â ºâ â ‡â …⠌⠄⠎" }, { "input": "sleepwalks", "output": "⠎⠇⠑⠑â â ºâ â ‡â …â Ž" }, { "input": "sleepwear", "output": "⠎⠇⠑⠑â â ºâ ‘â œ" }, { "input": "sleepwear's", "output": "⠎⠇⠑⠑â â ºâ ‘⠜⠄⠎" }, { "input": "sleepy", "output": "⠎⠇⠑⠑â â ½" }, { "input": "sleepyhead", "output": "⠎⠇⠑⠑â â ½â “â ‚â ™" }, { "input": "sleepyhead's", "output": "⠎⠇⠑⠑â â ½â “⠂⠙⠄⠎" }, { "input": "sleepyheads", "output": "⠎⠇⠑⠑â â ½â “⠂⠙⠎" }, { "input": "sleet", "output": "⠎⠇⠑⠑⠞" }, { "input": "sleet's", "output": "⠎⠇⠑⠑⠞⠄⠎" }, { "input": "sleeted", "output": "⠎⠇⠑⠑⠞⠫" }, { "input": "sleetier", "output": "⠎⠇⠑⠑⠞⠊⠻" }, { "input": "sleetiest", "output": "⠎⠇⠑⠑⠞⠊⠑⠌" }, { "input": "sleeting", "output": "⠎⠇⠑⠑⠞⠌" }, { "input": "sleets", "output": "⠎⠇⠑⠑⠞⠎" }, { "input": "sleety", "output": "⠎⠇⠑⠑⠞⠽" }, { "input": "sleeve", "output": "⠎⠇⠑⠑⠧⠑" }, { "input": "sleeve's", "output": "⠎⠇⠑⠑⠧⠑⠄⠎" }, { "input": "sleeved", "output": "⠎⠇⠑⠑⠧⠫" }, { "input": "sleeveless", "output": "⠎⠇⠑⠑⠧⠑⠨⠎" }, { "input": "sleeves", "output": "⠎⠇⠑⠑⠧⠑⠎" }, { "input": "sleigh", "output": "⠎⠇⠑⠊⠣" }, { "input": "sleigh's", "output": "⠎⠇⠑⠊⠣⠄⠎" }, { "input": "sleighed", "output": "⠎⠇⠑⠊⠣⠫" }, { "input": "sleighing", "output": "⠎⠇⠑⠊⠣⠌" }, { "input": "sleighs", "output": "⠎⠇⠑⠊⠣⠎" }, { "input": "sleight", "output": "⠎⠇⠑⠊⠣⠞" }, { "input": "sleight's", "output": "⠎⠇⠑⠊⠣⠞⠄⠎" }, { "input": "sleights", "output": "⠎⠇⠑⠊⠣⠞⠎" }, { "input": "slender", "output": "⠎⠇⠢⠙⠻" }, { "input": "slenderer", "output": "⠎⠇⠢⠙⠻⠻" }, { "input": "slenderest", "output": "⠎⠇⠢⠙⠻⠑⠌" }, { "input": "slenderize", "output": "⠎⠇⠢⠙⠻⠊⠵⠑" }, { "input": "slenderized", "output": "⠎⠇⠢⠙⠻⠊⠵⠫" }, { "input": "slenderizes", "output": "⠎⠇⠢⠙⠻⠊⠵⠑⠎" }, { "input": "slenderizing", "output": "⠎⠇⠢⠙⠻⠊⠵⠌" }, { "input": "slenderness", "output": "⠎⠇⠢⠙⠻⠰⠎" }, { "input": "slenderness's", "output": "⠎⠇⠢⠙⠻⠰⠎⠄⠎" }, { "input": "slept", "output": "⠎⠇⠑â â ž" }, { "input": "sleuth", "output": "⠎⠇⠑⠥⠹" }, { "input": "sleuth's", "output": "⠎⠇⠑⠥⠹⠄⠎" }, { "input": "sleuths", "output": "⠎⠇⠑⠥⠹⠎" }, { "input": "slew", "output": "⠎⠇⠑⠺" }, { "input": "slew's", "output": "⠎⠇⠑⠺⠄⠎" }, { "input": "slewed", "output": "⠎⠇⠑⠺⠫" }, { "input": "slewing", "output": "⠎⠇⠑⠺⠌" }, { "input": "slews", "output": "⠎⠇⠑⠺⠎" }, { "input": "slice", "output": "⠎⠇⠊⠉⠑" }, { "input": "slice's", "output": "⠎⠇⠊⠉⠑⠄⠎" }, { "input": "sliced", "output": "⠎⠇⠊⠉⠫" }, { "input": "slicer", "output": "⠎⠇⠊⠉⠻" }, { "input": "slicer's", "output": "⠎⠇⠊⠉⠻⠄⠎" }, { "input": "slicers", "output": "⠎⠇⠊⠉⠻⠎" }, { "input": "slices", "output": "⠎⠇⠊⠉⠑⠎" }, { "input": "slicing", "output": "⠎⠇⠊⠉⠌" }, { "input": "slick", "output": "⠎⠇⠊⠉⠅" }, { "input": "slick's", "output": "⠎⠇⠊⠉⠅⠄⠎" }, { "input": "slicked", "output": "⠎⠇⠊⠉⠅⠫" }, { "input": "slicker", "output": "⠎⠇⠊⠉⠅⠻" }, { "input": "slicker's", "output": "⠎⠇⠊⠉⠅⠻⠄⠎" }, { "input": "slickers", "output": "⠎⠇⠊⠉⠅⠻⠎" }, { "input": "slickest", "output": "⠎⠇⠊⠉⠅⠑⠌" }, { "input": "slicking", "output": "⠎⠇⠊⠉⠅⠌" }, { "input": "slickly", "output": "⠎⠇⠊⠉⠅⠇⠽" }, { "input": "slickness", "output": "⠎⠇⠊⠉⠅⠰⠎" }, { "input": "slickness's", "output": "⠎⠇⠊⠉⠅⠰⠎⠄⠎" }, { "input": "slicks", "output": "⠎⠇⠊⠉⠅⠎" }, { "input": "slid", "output": "⠎⠇⠊⠙" }, { "input": "slide", "output": "⠎⠇⠊⠙⠑" }, { "input": "slide's", "output": "⠎⠇⠊⠙⠑⠄⠎" }, { "input": "slider", "output": "⠎⠇⠊⠙⠻" }, { "input": "slider's", "output": "⠎⠇⠊⠙⠻⠄⠎" }, { "input": "sliders", "output": "⠎⠇⠊⠙⠻⠎" }, { "input": "slides", "output": "⠎⠇⠊⠙⠑⠎" }, { "input": "sliding", "output": "⠎⠇⠊⠙⠌" }, { "input": "slier", "output": "⠎⠇⠊⠻" }, { "input": "sliest", "output": "⠎⠇⠊⠑⠌" }, { "input": "slight", "output": "⠎⠇⠊⠣⠞" }, { "input": "slight's", "output": "⠎⠇⠊⠣⠞⠄⠎" }, { "input": "slighted", "output": "⠎⠇⠊⠣⠞⠫" }, { "input": "slighter", "output": "⠎⠇⠊⠣⠞⠻" }, { "input": "slightest", "output": "⠎⠇⠊⠣⠞⠑⠌" }, { "input": "slighting", "output": "⠎⠇⠊⠣⠞⠌" }, { "input": "slightly", "output": "⠎⠇⠊⠣⠞⠇⠽" }, { "input": "slightness", "output": "⠎⠇⠊⠣⠞⠰⠎" }, { "input": "slightness's", "output": "⠎⠇⠊⠣⠞⠰⠎⠄⠎" }, { "input": "slights", "output": "⠎⠇⠊⠣⠞⠎" }, { "input": "slim", "output": "⠎⠇⠊â " }, { "input": "slime", "output": "⠎⠇⠊â â ‘" }, { "input": "slime's", "output": "⠎⠇⠊â â ‘â „â Ž" }, { "input": "slimier", "output": "⠎⠇⠊â â Šâ »" }, { "input": "slimiest", "output": "⠎⠇⠊â â Šâ ‘â Œ" }, { "input": "sliminess's", "output": "⠎⠇⠊â â Šâ °â Žâ „â Ž" }, { "input": "slimmed", "output": "⠎⠇⠊â â â «" }, { "input": "slimmer", "output": "⠎⠇⠊â â â »" }, { "input": "slimmest", "output": "⠎⠇⠊â â â ‘â Œ" }, { "input": "slimming", "output": "⠎⠇⠊â â â Œ" }, { "input": "slimming's", "output": "⠎⠇⠊â â â Œâ „â Ž" }, { "input": "slimness", "output": "⠎⠇⠊â â °â Ž" }, { "input": "slimness's", "output": "⠎⠇⠊â â °â Žâ „â Ž" }, { "input": "slims", "output": "⠎⠇⠊â â Ž" }, { "input": "slimy", "output": "⠎⠇⠊â â ½" }, { "input": "sling", "output": "⠎⠇⠌" }, { "input": "sling's", "output": "⠎⠇⠌⠄⠎" }, { "input": "slinging", "output": "⠎⠇⠌⠌" }, { "input": "slings", "output": "⠎⠇⠌⠎" }, { "input": "slingshot", "output": "⠎⠇⠌⠩⠕⠞" }, { "input": "slingshot's", "output": "⠎⠇⠌⠩⠕⠞⠄⠎" }, { "input": "slingshots", "output": "⠎⠇⠌⠩⠕⠞⠎" }, { "input": "slink", "output": "⠎⠇⠔⠅" }, { "input": "slinkier", "output": "⠎⠇⠔⠅⠊⠻" }, { "input": "slinkiest", "output": "⠎⠇⠔⠅⠊⠑⠌" }, { "input": "slinking", "output": "⠎⠇⠔⠅⠌" }, { "input": "slinks", "output": "⠎⠇⠔⠅⠎" }, { "input": "slinky", "output": "⠎⠇⠔⠅⠽" }, { "input": "slip", "output": "⠎⠇⠊â " }, { "input": "slip's", "output": "⠎⠇⠊â â „â Ž" }, { "input": "slipcover", "output": "⠎⠇⠊â â ‰â •â §â »" }, { "input": "slipcover's", "output": "⠎⠇⠊â â ‰â •⠧⠻⠄⠎" }, { "input": "slipcovers", "output": "⠎⠇⠊â â ‰â •⠧⠻⠎" }, { "input": "slipknot", "output": "⠎⠇⠊â â …â â •â ž" }, { "input": "slipknot's", "output": "⠎⠇⠊â â …â â •â žâ „â Ž" }, { "input": "slipknots", "output": "⠎⠇⠊â â …â â •â žâ Ž" }, { "input": "slippage", "output": "⠎⠇⠊â â â â ›â ‘" }, { "input": "slippage's", "output": "⠎⠇⠊â â â â ›â ‘â „â Ž" }, { "input": "slippages", "output": "⠎⠇⠊â â â â ›â ‘â Ž" }, { "input": "slipped", "output": "⠎⠇⠊â â â «" }, { "input": "slipper", "output": "⠎⠇⠊â â â »" }, { "input": "slipper's", "output": "⠎⠇⠊â â â »â „â Ž" }, { "input": "slipperier", "output": "⠎⠇⠊â â â »â Šâ »" }, { "input": "slipperiest", "output": "⠎⠇⠊â â â »â Šâ ‘â Œ" }, { "input": "slipperiness", "output": "⠎⠇⠊â â â »â Šâ °â Ž" }, { "input": "slipperiness's", "output": "⠎⠇⠊â â â »â Šâ °â Žâ „â Ž" }, { "input": "slippers", "output": "⠎⠇⠊â â â »â Ž" }, { "input": "slippery", "output": "⠎⠇⠊â â â »â ½" }, { "input": "slipping", "output": "⠎⠇⠊â â â Œ" }, { "input": "slips", "output": "⠎⠇⠊â â Ž" }, { "input": "slipshod", "output": "⠎⠇⠊â â ©â •â ™" }, { "input": "slit", "output": "⠎⠇⠊⠞" }, { "input": "slit's", "output": "⠎⠇⠊⠞⠄⠎" }, { "input": "slither", "output": "⠎⠇⠊⠮⠗" }, { "input": "slither's", "output": "⠎⠇⠊⠮⠗⠄⠎" }, { "input": "slithered", "output": "⠎⠇⠊⠮⠗⠫" }, { "input": "slithering", "output": "⠎⠇⠊⠮⠗⠌" }, { "input": "slithers", "output": "⠎⠇⠊⠮⠗⠎" }, { "input": "slithery", "output": "⠎⠇⠊⠮⠗⠽" }, { "input": "slits", "output": "⠎⠇⠊⠞⠎" }, { "input": "slitter", "output": "⠎⠇⠊⠞⠞⠻" }, { "input": "slitting", "output": "⠎⠇⠊⠞⠞⠌" }, { "input": "sliver", "output": "⠎⠇⠊⠧⠻" }, { "input": "sliver's", "output": "⠎⠇⠊⠧⠻⠄⠎" }, { "input": "slivered", "output": "⠎⠇⠊⠧⠻⠫" }, { "input": "slivering", "output": "⠎⠇⠊⠧⠻⠌" }, { "input": "slivers", "output": "⠎⠇⠊⠧⠻⠎" }, { "input": "slob", "output": "⠎⠇⠕⠃" }, { "input": "slob's", "output": "⠎⠇⠕⠃⠄⠎" }, { "input": "slobber", "output": "⠎⠇⠕⠆⠻" }, { "input": "slobber's", "output": "⠎⠇⠕⠆⠻⠄⠎" }, { "input": "slobbered", "output": "⠎⠇⠕⠆⠻⠫" }, { "input": "slobbering", "output": "⠎⠇⠕⠆⠻⠌" }, { "input": "slobbers", "output": "⠎⠇⠕⠆⠻⠎" }, { "input": "slobs", "output": "⠎⠇⠕⠃⠎" }, { "input": "sloe", "output": "⠎⠇⠕⠑" }, { "input": "sloe's", "output": "⠎⠇⠕⠑⠄⠎" }, { "input": "sloes", "output": "⠎⠇⠕⠑⠎" }, { "input": "slog", "output": "⠎⠇⠕⠛" }, { "input": "slog's", "output": "⠎⠇⠕⠛⠄⠎" }, { "input": "slogan", "output": "⠎⠇⠕⠛â â " }, { "input": "slogan's", "output": "⠎⠇⠕⠛â â â „â Ž" }, { "input": "slogans", "output": "⠎⠇⠕⠛â â â Ž" }, { "input": "slogged", "output": "⠎⠇⠕⠶⠫" }, { "input": "slogging", "output": "⠎⠇⠕⠶⠌" }, { "input": "slogs", "output": "⠎⠇⠕⠛⠎" }, { "input": "sloop", "output": "⠎⠇⠕⠕â " }, { "input": "sloop's", "output": "⠎⠇⠕⠕â â „â Ž" }, { "input": "sloops", "output": "⠎⠇⠕⠕â â Ž" }, { "input": "slop", "output": "⠎⠇⠕â " }, { "input": "slop's", "output": "⠎⠇⠕â â „â Ž" }, { "input": "slope", "output": "⠎⠇⠕â â ‘" }, { "input": "slope's", "output": "⠎⠇⠕â â ‘â „â Ž" }, { "input": "sloped", "output": "⠎⠇⠕â â «" }, { "input": "slopes", "output": "⠎⠇⠕â â ‘â Ž" }, { "input": "sloping", "output": "⠎⠇⠕â â Œ" }, { "input": "slopped", "output": "⠎⠇⠕â â â «" }, { "input": "sloppier", "output": "⠎⠇⠕â â â Šâ »" }, { "input": "sloppiest", "output": "⠎⠇⠕â â â Šâ ‘â Œ" }, { "input": "sloppily", "output": "⠎⠇⠕â â â Šâ ‡â ½" }, { "input": "sloppiness", "output": "⠎⠇⠕â â â Šâ °â Ž" }, { "input": "sloppiness's", "output": "⠎⠇⠕â â â Šâ °â Žâ „â Ž" }, { "input": "slopping", "output": "⠎⠇⠕â â â Œ" }, { "input": "sloppy", "output": "⠎⠇⠕â â â ½" }, { "input": "slops", "output": "⠎⠇⠕â â Ž" }, { "input": "slops's", "output": "⠎⠇⠕â â Žâ „â Ž" }, { "input": "slosh", "output": "⠎⠇⠕⠩" }, { "input": "sloshed", "output": "⠎⠇⠕⠩⠫" }, { "input": "sloshes", "output": "⠎⠇⠕⠩⠑⠎" }, { "input": "sloshing", "output": "⠎⠇⠕⠩⠌" }, { "input": "slot", "output": "⠎⠇⠕⠞" }, { "input": "slot's", "output": "⠎⠇⠕⠞⠄⠎" }, { "input": "sloth", "output": "⠎⠇⠕⠹" }, { "input": "sloth's", "output": "⠎⠇⠕⠹⠄⠎" }, { "input": "slothful", "output": "⠎⠇⠕⠹⠰⠇" }, { "input": "slothfully", "output": "⠎⠇⠕⠹⠰⠇⠇⠽" }, { "input": "slothfulness", "output": "⠎⠇⠕⠹⠰⠇⠰⠎" }, { "input": "slothfulness's", "output": "⠎⠇⠕⠹⠰⠇⠰⠎⠄⠎" }, { "input": "sloths", "output": "⠎⠇⠕⠹⠎" }, { "input": "slots", "output": "⠎⠇⠕⠞⠎" }, { "input": "slotted", "output": "⠎⠇⠕⠞⠞⠫" }, { "input": "slotting", "output": "⠎⠇⠕⠞⠞⠌" }, { "input": "slouch", "output": "⠎⠇⠳⠡" }, { "input": "slouch's", "output": "⠎⠇⠳⠡⠄⠎" }, { "input": "slouched", "output": "⠎⠇⠳⠡⠫" }, { "input": "sloucher", "output": "⠎⠇⠳⠡⠻" }, { "input": "sloucher's", "output": "⠎⠇⠳⠡⠻⠄⠎" }, { "input": "slouchers", "output": "⠎⠇⠳⠡⠻⠎" }, { "input": "slouches", "output": "⠎⠇⠳⠡⠑⠎" }, { "input": "slouchier", "output": "⠎⠇⠳⠡⠊⠻" }, { "input": "slouchiest", "output": "⠎⠇⠳⠡⠊⠑⠌" }, { "input": "slouching", "output": "⠎⠇⠳⠡⠌" }, { "input": "slouchy", "output": "⠎⠇⠳⠡⠽" }, { "input": "slough", "output": "⠎⠇⠳⠣" }, { "input": "slough's", "output": "⠎⠇⠳⠣⠄⠎" }, { "input": "sloughed", "output": "⠎⠇⠳⠣⠫" }, { "input": "sloughing", "output": "⠎⠇⠳⠣⠌" }, { "input": "sloughs", "output": "⠎⠇⠳⠣⠎" }, { "input": "sloven", "output": "⠎⠇⠕⠧⠢" }, { "input": "sloven's", "output": "⠎⠇⠕⠧⠢⠄⠎" }, { "input": "slovenlier", "output": "⠎⠇⠕⠧⠢⠇⠊⠻" }, { "input": "slovenliest", "output": "⠎⠇⠕⠧⠢⠇⠊⠑⠌" }, { "input": "slovenliness", "output": "⠎⠇⠕⠧⠢⠇⠊⠰⠎" }, { "input": "slovenliness's", "output": "⠎⠇⠕⠧⠢⠇⠊⠰⠎⠄⠎" }, { "input": "slovenly", "output": "⠎⠇⠕⠧⠢⠇⠽" }, { "input": "slovens", "output": "⠎⠇⠕⠧⠢⠎" }, { "input": "slow", "output": "⠎⠇⠪" }, { "input": "slowdown", "output": "⠎⠇⠪⠙⠪â " }, { "input": "slowdown's", "output": "⠎⠇⠪⠙⠪â â „â Ž" }, { "input": "slowdowns", "output": "⠎⠇⠪⠙⠪â â Ž" }, { "input": "slowed", "output": "⠎⠇⠪⠫" }, { "input": "slower", "output": "⠎⠇⠪⠻" }, { "input": "slowest", "output": "⠎⠇⠪⠑⠌" }, { "input": "slowing", "output": "⠎⠇⠪⠌" }, { "input": "slowly", "output": "⠎⠇⠪⠇⠽" }, { "input": "slowness", "output": "⠎⠇⠪⠰⠎" }, { "input": "slowness's", "output": "⠎⠇⠪⠰⠎⠄⠎" }, { "input": "slowpoke", "output": "⠎⠇⠪â â •â …â ‘" }, { "input": "slowpoke's", "output": "⠎⠇⠪â â •â …â ‘â „â Ž" }, { "input": "slowpokes", "output": "⠎⠇⠪â â •â …â ‘â Ž" }, { "input": "slows", "output": "⠎⠇⠪⠎" }, { "input": "sludge", "output": "⠎⠇⠥⠙⠛⠑" }, { "input": "sludge's", "output": "⠎⠇⠥⠙⠛⠑⠄⠎" }, { "input": "sludgier", "output": "⠎⠇⠥⠙⠛⠊⠻" }, { "input": "sludgiest", "output": "⠎⠇⠥⠙⠛⠊⠑⠌" }, { "input": "slue", "output": "⠎⠇⠥⠑" }, { "input": "slue's", "output": "⠎⠇⠥⠑⠄⠎" }, { "input": "slued", "output": "⠎⠇⠥⠫" }, { "input": "slues", "output": "⠎⠇⠥⠑⠎" }, { "input": "slug", "output": "⠎⠇⠥⠛" }, { "input": "slug's", "output": "⠎⠇⠥⠛⠄⠎" }, { "input": "sluggard", "output": "⠎⠇⠥⠶⠜⠙" }, { "input": "sluggard's", "output": "⠎⠇⠥⠶⠜⠙⠄⠎" }, { "input": "sluggards", "output": "⠎⠇⠥⠶⠜⠙⠎" }, { "input": "slugged", "output": "⠎⠇⠥⠶⠫" }, { "input": "slugger", "output": "⠎⠇⠥⠶⠻" }, { "input": "slugger's", "output": "⠎⠇⠥⠶⠻⠄⠎" }, { "input": "sluggers", "output": "⠎⠇⠥⠶⠻⠎" }, { "input": "slugging", "output": "⠎⠇⠥⠶⠌" }, { "input": "sluggish", "output": "⠎⠇⠥⠶⠊⠩" }, { "input": "sluggishly", "output": "⠎⠇⠥⠶⠊⠩⠇⠽" }, { "input": "sluggishness", "output": "⠎⠇⠥⠶⠊⠩⠰⠎" }, { "input": "sluggishness's", "output": "⠎⠇⠥⠶⠊⠩⠰⠎⠄⠎" }, { "input": "slugs", "output": "⠎⠇⠥⠛⠎" }, { "input": "sluice", "output": "⠎⠇⠥⠊⠉⠑" }, { "input": "sluice's", "output": "⠎⠇⠥⠊⠉⠑⠄⠎" }, { "input": "sluiced", "output": "⠎⠇⠥⠊⠉⠫" }, { "input": "sluices", "output": "⠎⠇⠥⠊⠉⠑⠎" }, { "input": "sluicing", "output": "⠎⠇⠥⠊⠉⠌" }, { "input": "sluing", "output": "⠎⠇⠥⠌" }, { "input": "slum", "output": "⠎⠇⠥â " }, { "input": "slum's", "output": "⠎⠇⠥â â „â Ž" }, { "input": "slumber", "output": "⠎⠇⠥â â ƒâ »" }, { "input": "slumber's", "output": "⠎⠇⠥â â ƒâ »â „â Ž" }, { "input": "slumbered", "output": "⠎⠇⠥â â ƒâ »â «" }, { "input": "slumbering", "output": "⠎⠇⠥â â ƒâ »â Œ" }, { "input": "slumberous", "output": "⠎⠇⠥â â ƒâ »â ³â Ž" }, { "input": "slumbers", "output": "⠎⠇⠥â â ƒâ »â Ž" }, { "input": "slumlord", "output": "⠎⠇⠥â â â ‡" }, { "input": "slumlord's", "output": "⠎⠇⠥â â â ‡â „â Ž" }, { "input": "slumlords", "output": "⠎⠇⠥â â â ‡â Ž" }, { "input": "slummed", "output": "⠎⠇⠥â â â «" }, { "input": "slummer", "output": "⠎⠇⠥â â â »" }, { "input": "slummier", "output": "⠎⠇⠥â â â Šâ »" }, { "input": "slummiest", "output": "⠎⠇⠥â â â Šâ ‘â Œ" }, { "input": "slumming", "output": "⠎⠇⠥â â â Œ" }, { "input": "slump", "output": "⠎⠇⠥â â " }, { "input": "slump's", "output": "⠎⠇⠥â â â „â Ž" }, { "input": "slumped", "output": "⠎⠇⠥â â â «" }, { "input": "slumping", "output": "⠎⠇⠥â â â Œ" }, { "input": "slumps", "output": "⠎⠇⠥â â â Ž" }, { "input": "slums", "output": "⠎⠇⠥â â Ž" }, { "input": "slung", "output": "⠎⠇⠥â â ›" }, { "input": "slunk", "output": "⠎⠇⠥â â …" }, { "input": "slur", "output": "⠎⠇⠥⠗" }, { "input": "slur's", "output": "⠎⠇⠥⠗⠄⠎" }, { "input": "slurp", "output": "⠎⠇⠥⠗â " }, { "input": "slurp's", "output": "⠎⠇⠥⠗â â „â Ž" }, { "input": "slurped", "output": "⠎⠇⠥⠗â â «" }, { "input": "slurping", "output": "⠎⠇⠥⠗â â Œ" }, { "input": "slurps", "output": "⠎⠇⠥⠗â â Ž" }, { "input": "slurred", "output": "⠎⠇⠥⠗⠗⠫" }, { "input": "slurring", "output": "⠎⠇⠥⠗⠗⠌" }, { "input": "slurry's", "output": "⠎⠇⠥⠗⠗⠽⠄⠎" }, { "input": "slurs", "output": "⠎⠇⠥⠗⠎" }, { "input": "slush", "output": "⠎⠇⠥⠩" }, { "input": "slush's", "output": "⠎⠇⠥⠩⠄⠎" }, { "input": "slushier", "output": "⠎⠇⠥⠩⠊⠻" }, { "input": "slushiest", "output": "⠎⠇⠥⠩⠊⠑⠌" }, { "input": "slushiness", "output": "⠎⠇⠥⠩⠊⠰⠎" }, { "input": "slushiness's", "output": "⠎⠇⠥⠩⠊⠰⠎⠄⠎" }, { "input": "slushy", "output": "⠎⠇⠥⠩⠽" }, { "input": "slut", "output": "⠎⠇⠥⠞" }, { "input": "slut's", "output": "⠎⠇⠥⠞⠄⠎" }, { "input": "sluts", "output": "⠎⠇⠥⠞⠎" }, { "input": "sluttier", "output": "⠎⠇⠥⠞⠞⠊⠻" }, { "input": "sluttiest", "output": "⠎⠇⠥⠞⠞⠊⠑⠌" }, { "input": "sluttish", "output": "⠎⠇⠥⠞⠞⠊⠩" }, { "input": "sly", "output": "⠎⠇⠽" }, { "input": "slyly", "output": "⠎⠇⠽⠇⠽" }, { "input": "slyness", "output": "⠎⠇⠽⠰⠎" }, { "input": "slyness's", "output": "⠎⠇⠽⠰⠎⠄⠎" }, { "input": "smack", "output": "â Žâ â â ‰â …" }, { "input": "smack's", "output": "â Žâ â â ‰â …â „â Ž" }, { "input": "smacked", "output": "â Žâ â â ‰â …â «" }, { "input": "smacker", "output": "â Žâ â â ‰â …â »" }, { "input": "smacker's", "output": "â Žâ â â ‰â …⠻⠄⠎" }, { "input": "smackers", "output": "â Žâ â â ‰â …⠻⠎" }, { "input": "smacking", "output": "â Žâ â â ‰â …â Œ" }, { "input": "smacks", "output": "â Žâ â â ‰â …â Ž" }, { "input": "small", "output": "â Žâ â â ‡â ‡" }, { "input": "small's", "output": "â Žâ â â ‡â ‡â „â Ž" }, { "input": "smaller", "output": "â Žâ â â ‡â ‡â »" }, { "input": "smallest", "output": "â Žâ â â ‡â ‡â ‘â Œ" }, { "input": "smallish", "output": "â Žâ â â ‡â ‡â Šâ ©" }, { "input": "smallness", "output": "â Žâ â â ‡â ‡â °â Ž" }, { "input": "smallness's", "output": "â Žâ â â ‡â ‡â °â Žâ „â Ž" }, { "input": "smallpox", "output": "â Žâ â â ‡â ‡â â •â ­" }, { "input": "smallpox's", "output": "â Žâ â â ‡â ‡â â •â ­â „â Ž" }, { "input": "smalls", "output": "â Žâ â â ‡â ‡â Ž" }, { "input": "smarmier", "output": "â Žâ â œâ â Šâ »" }, { "input": "smarmiest", "output": "â Žâ â œâ â Šâ ‘â Œ" }, { "input": "smarmy", "output": "â Žâ â œâ â ½" }, { "input": "smart", "output": "â Žâ â œâ ž" }, { "input": "smart's", "output": "â Žâ â œâ žâ „â Ž" }, { "input": "smarted", "output": "â Žâ â œâ žâ «" }, { "input": "smarten", "output": "â Žâ â œâ žâ ¢" }, { "input": "smartened", "output": "â Žâ â œâ žâ ¢â «" }, { "input": "smartening", "output": "â Žâ â œâ žâ ¢â Œ" }, { "input": "smartens", "output": "â Žâ â œâ žâ ¢â Ž" }, { "input": "smarter", "output": "â Žâ â œâ žâ »" }, { "input": "smartest", "output": "â Žâ â œâ žâ ‘â Œ" }, { "input": "smarties", "output": "â Žâ â œâ žâ Šâ ‘â Ž" }, { "input": "smarting", "output": "â Žâ â œâ žâ Œ" }, { "input": "smartly", "output": "â Žâ â œâ žâ ‡â ½" }, { "input": "smartness", "output": "â Žâ â œâ žâ °â Ž" }, { "input": "smartness's", "output": "â Žâ â œâ žâ °â Žâ „â Ž" }, { "input": "smarts", "output": "â Žâ â œâ žâ Ž" }, { "input": "smarts's", "output": "â Žâ â œâ žâ Žâ „â Ž" }, { "input": "smarty", "output": "â Žâ â œâ žâ ½" }, { "input": "smarty's", "output": "â Žâ â œâ žâ ½â „â Ž" }, { "input": "smartypants", "output": "â Žâ â œâ žâ ½â â â â žâ Ž" }, { "input": "smartypants's", "output": "â Žâ â œâ žâ ½â â â â žâ Žâ „â Ž" }, { "input": "smash", "output": "â Žâ â â ©" }, { "input": "smash's", "output": "â Žâ â â ©â „â Ž" }, { "input": "smashed", "output": "â Žâ â â ©â «" }, { "input": "smashes", "output": "â Žâ â â ©â ‘â Ž" }, { "input": "smashing", "output": "â Žâ â â ©â Œ" }, { "input": "smashup", "output": "â Žâ â â ©â ¥â " }, { "input": "smashup's", "output": "â Žâ â â ©â ¥â â „â Ž" }, { "input": "smashups", "output": "â Žâ â â ©â ¥â â Ž" }, { "input": "smattering", "output": "â Žâ â â žâ žâ »â Œ" }, { "input": "smattering's", "output": "â Žâ â â žâ žâ »â Œâ „â Ž" }, { "input": "smatterings", "output": "â Žâ â â žâ žâ »â Œâ Ž" }, { "input": "smear", "output": "â Žâ â ‘â œ" }, { "input": "smear's", "output": "â Žâ â ‘⠜⠄⠎" }, { "input": "smeared", "output": "â Žâ â ‘⠜⠫" }, { "input": "smearier", "output": "â Žâ â ‘⠜⠊⠻" }, { "input": "smeariest", "output": "â Žâ â ‘⠜⠊⠑⠌" }, { "input": "smearing", "output": "â Žâ â ‘⠜⠌" }, { "input": "smears", "output": "â Žâ â ‘⠜⠎" }, { "input": "smeary", "output": "â Žâ â ‘⠜⠽" }, { "input": "smell", "output": "â Žâ â ‘⠇⠇" }, { "input": "smell's", "output": "â Žâ â ‘⠇⠇⠄⠎" }, { "input": "smelled", "output": "â Žâ â ‘⠇⠇⠫" }, { "input": "smellier", "output": "â Žâ â ‘⠇⠇⠊⠻" }, { "input": "smelliest", "output": "â Žâ â ‘⠇⠇⠊⠑⠌" }, { "input": "smelliness", "output": "â Žâ â ‘⠇⠇⠊⠰⠎" }, { "input": "smelliness's", "output": "â Žâ â ‘⠇⠇⠊⠰⠎⠄⠎" }, { "input": "smelling", "output": "â Žâ â ‘⠇⠇⠌" }, { "input": "smells", "output": "â Žâ â ‘⠇⠇⠎" }, { "input": "smelly", "output": "â Žâ â ‘⠇⠇⠽" }, { "input": "smelt", "output": "â Žâ â ‘⠇⠞" }, { "input": "smelt's", "output": "â Žâ â ‘⠇⠞⠄⠎" }, { "input": "smelted", "output": "â Žâ â ‘⠇⠞⠫" }, { "input": "smelter", "output": "â Žâ â ‘⠇⠞⠻" }, { "input": "smelter's", "output": "â Žâ â ‘⠇⠞⠻⠄⠎" }, { "input": "smelters", "output": "â Žâ â ‘⠇⠞⠻⠎" }, { "input": "smelting", "output": "â Žâ â ‘⠇⠞⠌" }, { "input": "smelts", "output": "â Žâ â ‘⠇⠞⠎" }, { "input": "smidgen", "output": "â Žâ â Šâ ™â ›â ¢" }, { "input": "smidgen's", "output": "â Žâ â Šâ ™â ›â ¢â „â Ž" }, { "input": "smidgens", "output": "â Žâ â Šâ ™â ›â ¢â Ž" }, { "input": "smilax", "output": "â Žâ â Šâ ‡â â ­" }, { "input": "smilax's", "output": "â Žâ â Šâ ‡â â ­â „â Ž" }, { "input": "smile", "output": "â Žâ â Šâ ‡â ‘" }, { "input": "smile's", "output": "â Žâ â Šâ ‡â ‘â „â Ž" }, { "input": "smiled", "output": "â Žâ â Šâ ‡â «" }, { "input": "smiles", "output": "â Žâ â Šâ ‡â ‘â Ž" }, { "input": "smiley's", "output": "â Žâ â Šâ ‡â ‘⠽⠄⠎" }, { "input": "smileys", "output": "â Žâ â Šâ ‡â ‘⠽⠎" }, { "input": "smiling", "output": "â Žâ â Šâ ‡â Œ" }, { "input": "smilingly", "output": "â Žâ â Šâ ‡â Œâ ‡â ½" }, { "input": "smirch", "output": "â Žâ â Šâ —â ¡" }, { "input": "smirch's", "output": "â Žâ â Šâ —â ¡â „â Ž" }, { "input": "smirched", "output": "â Žâ â Šâ —â ¡â «" }, { "input": "smirches", "output": "â Žâ â Šâ —â ¡â ‘â Ž" }, { "input": "smirching", "output": "â Žâ â Šâ —â ¡â Œ" }, { "input": "smirk", "output": "â Žâ â Šâ —â …" }, { "input": "smirk's", "output": "â Žâ â Šâ —â …â „â Ž" }, { "input": "smirked", "output": "â Žâ â Šâ —â …â «" }, { "input": "smirking", "output": "â Žâ â Šâ —â …â Œ" }, { "input": "smirks", "output": "â Žâ â Šâ —â …â Ž" }, { "input": "smite", "output": "â Žâ â Šâ žâ ‘" }, { "input": "smites", "output": "â Žâ â Šâ žâ ‘â Ž" }, { "input": "smith", "output": "â Žâ â Šâ ¹" }, { "input": "smith's", "output": "â Žâ â Šâ ¹â „â Ž" }, { "input": "smithereens", "output": "â Žâ â Šâ ®â —⠑⠢⠎" }, { "input": "smithereens's", "output": "â Žâ â Šâ ®â —⠑⠢⠎⠄⠎" }, { "input": "smithies", "output": "â Žâ â Šâ ¹â Šâ ‘â Ž" }, { "input": "smiths", "output": "â Žâ â Šâ ¹â Ž" }, { "input": "smithy", "output": "â Žâ â Šâ ¹â ½" }, { "input": "smithy's", "output": "â Žâ â Šâ ¹â ½â „â Ž" }, { "input": "smiting", "output": "â Žâ â Šâ žâ Œ" }, { "input": "smitten", "output": "â Žâ â Šâ žâ žâ ¢" }, { "input": "smock", "output": "â Žâ â •⠉⠅" }, { "input": "smock's", "output": "â Žâ â •⠉⠅⠄⠎" }, { "input": "smocked", "output": "â Žâ â •⠉⠅⠫" }, { "input": "smocking", "output": "â Žâ â •⠉⠅⠌" }, { "input": "smocking's", "output": "â Žâ â •⠉⠅⠌⠄⠎" }, { "input": "smocks", "output": "â Žâ â •⠉⠅⠎" }, { "input": "smog", "output": "â Žâ â •â ›" }, { "input": "smog's", "output": "â Žâ â •⠛⠄⠎" }, { "input": "smoggier", "output": "â Žâ â •â ¶â Šâ »" }, { "input": "smoggiest", "output": "â Žâ â •â ¶â Šâ ‘â Œ" }, { "input": "smoggy", "output": "â Žâ â •â ¶â ½" }, { "input": "smoke", "output": "â Žâ â •â …â ‘" }, { "input": "smoke's", "output": "â Žâ â •â …â ‘â „â Ž" }, { "input": "smoked", "output": "â Žâ â •â …â «" }, { "input": "smokehouse", "output": "â Žâ â •⠅⠑⠓⠳⠎⠑" }, { "input": "smokehouse's", "output": "â Žâ â •⠅⠑⠓⠳⠎⠑⠄⠎" }, { "input": "smokehouses", "output": "â Žâ â •⠅⠑⠓⠳⠎⠑⠎" }, { "input": "smokeless", "output": "â Žâ â •⠅⠑⠨⠎" }, { "input": "smoker", "output": "â Žâ â •â …â »" }, { "input": "smoker's", "output": "â Žâ â •⠅⠻⠄⠎" }, { "input": "smokers", "output": "â Žâ â •⠅⠻⠎" }, { "input": "smokes", "output": "â Žâ â •â …â ‘â Ž" }, { "input": "smokestack", "output": "â Žâ â •â …â ‘â Œâ â ‰â …" }, { "input": "smokestack's", "output": "â Žâ â •â …â ‘â Œâ â ‰â …â „â Ž" }, { "input": "smokestacks", "output": "â Žâ â •â …â ‘â Œâ â ‰â …â Ž" }, { "input": "smokier", "output": "â Žâ â •â …â Šâ »" }, { "input": "smokiest", "output": "â Žâ â •â …â Šâ ‘â Œ" }, { "input": "smokiness", "output": "â Žâ â •â …â Šâ °â Ž" }, { "input": "smokiness's", "output": "â Žâ â •â …â Šâ °â Žâ „â Ž" }, { "input": "smoking", "output": "â Žâ â •â …â Œ" }, { "input": "smoking's", "output": "â Žâ â •⠅⠌⠄⠎" }, { "input": "smoky", "output": "â Žâ â •â …â ½" }, { "input": "smolder", "output": "â Žâ â •⠇⠙⠻" }, { "input": "smolder's", "output": "â Žâ â •⠇⠙⠻⠄⠎" }, { "input": "smoldered", "output": "â Žâ â •⠇⠙⠻⠫" }, { "input": "smoldering", "output": "â Žâ â •⠇⠙⠻⠌" }, { "input": "smolders", "output": "â Žâ â •⠇⠙⠻⠎" }, { "input": "smooch", "output": "â Žâ â •â •â ¡" }, { "input": "smooch's", "output": "â Žâ â •â •â ¡â „â Ž" }, { "input": "smooched", "output": "â Žâ â •â •â ¡â «" }, { "input": "smooches", "output": "â Žâ â •â •â ¡â ‘â Ž" }, { "input": "smooching", "output": "â Žâ â •â •â ¡â Œ" }, { "input": "smooth", "output": "â Žâ â •â •â ¹" }, { "input": "smoothed", "output": "â Žâ â •⠕⠮⠙" }, { "input": "smoother", "output": "â Žâ â •⠕⠮⠗" }, { "input": "smoothest", "output": "â Žâ â •⠕⠮⠌" }, { "input": "smoothing", "output": "â Žâ â •⠕⠹⠌" }, { "input": "smoothly", "output": "â Žâ â •⠕⠹⠇⠽" }, { "input": "smoothness", "output": "â Žâ â •⠕⠹⠰⠎" }, { "input": "smoothness's", "output": "â Žâ â •⠕⠹⠰⠎⠄⠎" }, { "input": "smooths", "output": "â Žâ â •⠕⠹⠎" }, { "input": "smote", "output": "â Žâ â •â žâ ‘" }, { "input": "smother", "output": "â Žâ â " }, { "input": "smother's", "output": "â Žâ â â „â Ž" }, { "input": "smothered", "output": "â Žâ â â «" }, { "input": "smothering", "output": "â Žâ â â Œ" }, { "input": "smothers", "output": "â Žâ â â Ž" }, { "input": "smudge", "output": "â Žâ â ¥â ™â ›â ‘" }, { "input": "smudge's", "output": "â Žâ â ¥â ™â ›â ‘â „â Ž" }, { "input": "smudged", "output": "â Žâ â ¥â ™â ›â «" }, { "input": "smudges", "output": "â Žâ â ¥â ™â ›â ‘â Ž" }, { "input": "smudgier", "output": "â Žâ â ¥â ™â ›â Šâ »" }, { "input": "smudgiest", "output": "â Žâ â ¥â ™â ›â Šâ ‘â Œ" }, { "input": "smudging", "output": "â Žâ â ¥â ™â ›â Œ" }, { "input": "smudgy", "output": "â Žâ â ¥â ™â ›â ½" }, { "input": "smug", "output": "â Žâ â ¥â ›" }, { "input": "smugger", "output": "â Žâ â ¥â ¶â »" }, { "input": "smuggest", "output": "â Žâ â ¥â ¶â ‘â Œ" }, { "input": "smuggle", "output": "â Žâ â ¥â ¶â ‡â ‘" }, { "input": "smuggled", "output": "â Žâ â ¥â ¶â ‡â «" }, { "input": "smuggler", "output": "â Žâ â ¥â ¶â ‡â »" }, { "input": "smuggler's", "output": "â Žâ â ¥â ¶â ‡â »â „â Ž" }, { "input": "smugglers", "output": "â Žâ â ¥â ¶â ‡â »â Ž" }, { "input": "smuggles", "output": "â Žâ â ¥â ¶â ‡â ‘â Ž" }, { "input": "smuggling", "output": "â Žâ â ¥â ¶â ‡â Œ" }, { "input": "smuggling's", "output": "â Žâ â ¥â ¶â ‡â Œâ „â Ž" }, { "input": "smugly", "output": "â Žâ â ¥â ›â ‡â ½" }, { "input": "smugness", "output": "â Žâ â ¥â ›â °â Ž" }, { "input": "smugness's", "output": "â Žâ â ¥â ›â °â Žâ „â Ž" }, { "input": "smut", "output": "â Žâ â ¥â ž" }, { "input": "smut's", "output": "â Žâ â ¥â žâ „â Ž" }, { "input": "smuts", "output": "â Žâ â ¥â žâ Ž" }, { "input": "smuttier", "output": "â Žâ â ¥â žâ žâ Šâ »" }, { "input": "smuttiest", "output": "â Žâ â ¥â žâ žâ Šâ ‘â Œ" }, { "input": "smuttiness's", "output": "â Žâ â ¥â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "smutty", "output": "â Žâ â ¥â žâ žâ ½" }, { "input": "snack", "output": "â Žâ â â ‰â …" }, { "input": "snack's", "output": "â Žâ â â ‰â …â „â Ž" }, { "input": "snacked", "output": "â Žâ â â ‰â …â «" }, { "input": "snacking", "output": "â Žâ â â ‰â …â Œ" }, { "input": "snacks", "output": "â Žâ â â ‰â …â Ž" }, { "input": "snaffle", "output": "â Žâ â â –⠇⠑" }, { "input": "snaffle's", "output": "â Žâ â â –⠇⠑⠄⠎" }, { "input": "snaffled", "output": "â Žâ â â –⠇⠫" }, { "input": "snaffles", "output": "â Žâ â â –⠇⠑⠎" }, { "input": "snaffling", "output": "â Žâ â â –⠇⠌" }, { "input": "snafu", "output": "â Žâ â â ‹â ¥" }, { "input": "snafu's", "output": "â Žâ â â ‹â ¥â „â Ž" }, { "input": "snafus", "output": "â Žâ â â ‹â ¥â Ž" }, { "input": "snag", "output": "â Žâ â â ›" }, { "input": "snag's", "output": "â Žâ â â ›â „â Ž" }, { "input": "snagged", "output": "â Žâ â â ¶â «" }, { "input": "snagging", "output": "â Žâ â â ¶â Œ" }, { "input": "snags", "output": "â Žâ â â ›â Ž" }, { "input": "snail", "output": "â Žâ â â Šâ ‡" }, { "input": "snail's", "output": "â Žâ â â Šâ ‡â „â Ž" }, { "input": "snailed", "output": "â Žâ â â Šâ ‡â «" }, { "input": "snailing", "output": "â Žâ â â Šâ ‡â Œ" }, { "input": "snails", "output": "â Žâ â â Šâ ‡â Ž" }, { "input": "snake", "output": "â Žâ â â …â ‘" }, { "input": "snake's", "output": "â Žâ â â …â ‘â „â Ž" }, { "input": "snakebite", "output": "â Žâ â â …⠑⠃⠊⠞⠑" }, { "input": "snakebite's", "output": "â Žâ â â …⠑⠃⠊⠞⠑⠄⠎" }, { "input": "snakebites", "output": "â Žâ â â …⠑⠃⠊⠞⠑⠎" }, { "input": "snaked", "output": "â Žâ â â …â «" }, { "input": "snakelike", "output": "â Žâ â â …⠑⠇⠊⠅⠑" }, { "input": "snakes", "output": "â Žâ â â …â ‘â Ž" }, { "input": "snakier", "output": "â Žâ â â …â Šâ »" }, { "input": "snakiest", "output": "â Žâ â â …â Šâ ‘â Œ" }, { "input": "snaking", "output": "â Žâ â â …â Œ" }, { "input": "snaky", "output": "â Žâ â â …â ½" }, { "input": "snap", "output": "â Žâ â â " }, { "input": "snap's", "output": "â Žâ â â â „â Ž" }, { "input": "snapdragon", "output": "â Žâ â â â ™â —â â ›â •â " }, { "input": "snapdragon's", "output": "â Žâ â â â ™â —â â ›â •â â „â Ž" }, { "input": "snapdragons", "output": "â Žâ â â â ™â —â â ›â •â â Ž" }, { "input": "snapped", "output": "â Žâ â â â â «" }, { "input": "snapper", "output": "â Žâ â â â â »" }, { "input": "snapper's", "output": "â Žâ â â â â »â „â Ž" }, { "input": "snappers", "output": "â Žâ â â â â »â Ž" }, { "input": "snappier", "output": "â Žâ â â â â Šâ »" }, { "input": "snappiest", "output": "â Žâ â â â â Šâ ‘â Œ" }, { "input": "snappiness's", "output": "â Žâ â â â â Šâ °â Žâ „â Ž" }, { "input": "snapping", "output": "â Žâ â â â â Œ" }, { "input": "snappish", "output": "â Žâ â â â â Šâ ©" }, { "input": "snappishness", "output": "â Žâ â â â â Šâ ©â °â Ž" }, { "input": "snappishness's", "output": "â Žâ â â â â Šâ ©â °â Žâ „â Ž" }, { "input": "snappy", "output": "â Žâ â â â â ½" }, { "input": "snaps", "output": "â Žâ â â â Ž" }, { "input": "snapshot", "output": "â Žâ â â â ©â •â ž" }, { "input": "snapshot's", "output": "â Žâ â â â ©â •â žâ „â Ž" }, { "input": "snapshots", "output": "â Žâ â â â ©â •â žâ Ž" }, { "input": "snare", "output": "â Žâ â œâ ‘" }, { "input": "snare's", "output": "â Žâ â œâ ‘â „â Ž" }, { "input": "snared", "output": "â Žâ â œâ «" }, { "input": "snares", "output": "â Žâ â œâ ‘â Ž" }, { "input": "snaring", "output": "â Žâ â œâ Œ" }, { "input": "snarl", "output": "â Žâ â œâ ‡" }, { "input": "snarl's", "output": "â Žâ â œâ ‡â „â Ž" }, { "input": "snarled", "output": "â Žâ â œâ ‡â «" }, { "input": "snarlier", "output": "â Žâ â œâ ‡â Šâ »" }, { "input": "snarliest", "output": "â Žâ â œâ ‡â Šâ ‘â Œ" }, { "input": "snarling", "output": "â Žâ â œâ ‡â Œ" }, { "input": "snarlingly", "output": "â Žâ â œâ ‡â Œâ ‡â ½" }, { "input": "snarls", "output": "â Žâ â œâ ‡â Ž" }, { "input": "snarly", "output": "â Žâ â œâ ‡â ½" }, { "input": "snatch", "output": "â Žâ â â žâ ¡" }, { "input": "snatch's", "output": "â Žâ â â žâ ¡â „â Ž" }, { "input": "snatched", "output": "â Žâ â â žâ ¡â «" }, { "input": "snatches", "output": "â Žâ â â žâ ¡â ‘â Ž" }, { "input": "snatching", "output": "â Žâ â â žâ ¡â Œ" }, { "input": "snazzier", "output": "â Žâ â â µâ µâ Šâ »" }, { "input": "snazziest", "output": "â Žâ â â µâ µâ Šâ ‘â Œ" }, { "input": "snazzy", "output": "â Žâ â â µâ µâ ½" }, { "input": "sneak", "output": "â Žâ â ‚â …" }, { "input": "sneak's", "output": "â Žâ â ‚â …â „â Ž" }, { "input": "sneaked", "output": "â Žâ â ‚â …â «" }, { "input": "sneaker", "output": "â Žâ â ‚â …â »" }, { "input": "sneaker's", "output": "â Žâ â ‚⠅⠻⠄⠎" }, { "input": "sneakers", "output": "â Žâ â ‚⠅⠻⠎" }, { "input": "sneakier", "output": "â Žâ â ‚â …â Šâ »" }, { "input": "sneakiest", "output": "â Žâ â ‚â …â Šâ ‘â Œ" }, { "input": "sneakiness", "output": "â Žâ â ‚â …â Šâ °â Ž" }, { "input": "sneakiness's", "output": "â Žâ â ‚â …â Šâ °â Žâ „â Ž" }, { "input": "sneaking", "output": "â Žâ â ‚â …â Œ" }, { "input": "sneakingly", "output": "â Žâ â ‚⠅⠌⠇⠽" }, { "input": "sneaks", "output": "â Žâ â ‚â …â Ž" }, { "input": "sneaky", "output": "â Žâ â ‚â …â ½" }, { "input": "sneer", "output": "â Žâ â ‘â »" }, { "input": "sneer's", "output": "â Žâ â ‘⠻⠄⠎" }, { "input": "sneered", "output": "â Žâ â ‘⠻⠫" }, { "input": "sneering", "output": "â Žâ â ‘⠻⠌" }, { "input": "sneeringly", "output": "â Žâ â ‘⠻⠌⠇⠽" }, { "input": "sneerings", "output": "â Žâ â ‘⠻⠌⠎" }, { "input": "sneers", "output": "â Žâ â ‘⠻⠎" }, { "input": "sneeze", "output": "â Žâ â ‘⠑⠵⠑" }, { "input": "sneeze's", "output": "â Žâ â ‘⠑⠵⠑⠄⠎" }, { "input": "sneezed", "output": "â Žâ â ‘⠑⠵⠫" }, { "input": "sneezes", "output": "â Žâ â ‘⠑⠵⠑⠎" }, { "input": "sneezing", "output": "â Žâ â ‘⠑⠵⠌" }, { "input": "snicker", "output": "â Žâ â Šâ ‰â …â »" }, { "input": "snicker's", "output": "â Žâ â Šâ ‰â …⠻⠄⠎" }, { "input": "snickered", "output": "â Žâ â Šâ ‰â …⠻⠫" }, { "input": "snickering", "output": "â Žâ â Šâ ‰â …⠻⠌" }, { "input": "snickers", "output": "â Žâ â Šâ ‰â …⠻⠎" }, { "input": "snide", "output": "â Žâ â Šâ ™â ‘" }, { "input": "snider", "output": "â Žâ â Šâ ™â »" }, { "input": "snidest", "output": "â Žâ â Šâ ™â ‘â Œ" }, { "input": "sniff", "output": "â Žâ â Šâ ‹â ‹" }, { "input": "sniff's", "output": "â Žâ â Šâ ‹â ‹â „â Ž" }, { "input": "sniffed", "output": "â Žâ â Šâ –â «" }, { "input": "sniffing", "output": "â Žâ â Šâ –â Œ" }, { "input": "sniffle", "output": "â Žâ â Šâ –⠇⠑" }, { "input": "sniffle's", "output": "â Žâ â Šâ –⠇⠑⠄⠎" }, { "input": "sniffled", "output": "â Žâ â Šâ –⠇⠫" }, { "input": "sniffles", "output": "â Žâ â Šâ –⠇⠑⠎" }, { "input": "sniffling", "output": "â Žâ â Šâ –⠇⠌" }, { "input": "sniffs", "output": "â Žâ â Šâ –â Ž" }, { "input": "snifter", "output": "â Žâ â Šâ ‹â žâ »" }, { "input": "snifter's", "output": "â Žâ â Šâ ‹â žâ »â „â Ž" }, { "input": "snifters", "output": "â Žâ â Šâ ‹â žâ »â Ž" }, { "input": "snip", "output": "â Žâ â Šâ " }, { "input": "snip's", "output": "â Žâ â Šâ â „â Ž" }, { "input": "snipe", "output": "â Žâ â Šâ â ‘" }, { "input": "snipe's", "output": "â Žâ â Šâ â ‘â „â Ž" }, { "input": "sniped", "output": "â Žâ â Šâ â «" }, { "input": "sniper", "output": "â Žâ â Šâ â »" }, { "input": "sniper's", "output": "â Žâ â Šâ â »â „â Ž" }, { "input": "snipers", "output": "â Žâ â Šâ â »â Ž" }, { "input": "snipes", "output": "â Žâ â Šâ â ‘â Ž" }, { "input": "sniping", "output": "â Žâ â Šâ â Œ" }, { "input": "snipped", "output": "â Žâ â Šâ â â «" }, { "input": "snippet", "output": "â Žâ â Šâ â â ‘â ž" }, { "input": "snippet's", "output": "â Žâ â Šâ â â ‘â žâ „â Ž" }, { "input": "snippets", "output": "â Žâ â Šâ â â ‘â žâ Ž" }, { "input": "snippier", "output": "â Žâ â Šâ â â Šâ »" }, { "input": "snippiest", "output": "â Žâ â Šâ â â Šâ ‘â Œ" }, { "input": "snipping", "output": "â Žâ â Šâ â â Œ" }, { "input": "snippy", "output": "â Žâ â Šâ â â ½" }, { "input": "snips", "output": "â Žâ â Šâ â Ž" }, { "input": "snips's", "output": "â Žâ â Šâ â Žâ „â Ž" }, { "input": "snit", "output": "â Žâ â Šâ ž" }, { "input": "snit's", "output": "â Žâ â Šâ žâ „â Ž" }, { "input": "snitch", "output": "â Žâ â Šâ žâ ¡" }, { "input": "snitch's", "output": "â Žâ â Šâ žâ ¡â „â Ž" }, { "input": "snitched", "output": "â Žâ â Šâ žâ ¡â «" }, { "input": "snitches", "output": "â Žâ â Šâ žâ ¡â ‘â Ž" }, { "input": "snitching", "output": "â Žâ â Šâ žâ ¡â Œ" }, { "input": "snits", "output": "â Žâ â Šâ žâ Ž" }, { "input": "snivel", "output": "â Žâ â Šâ §â ‘â ‡" }, { "input": "snivel's", "output": "â Žâ â Šâ §â ‘⠇⠄⠎" }, { "input": "sniveled", "output": "â Žâ â Šâ §â ‘⠇⠫" }, { "input": "sniveler", "output": "â Žâ â Šâ §â ‘⠇⠻" }, { "input": "sniveler's", "output": "â Žâ â Šâ §â ‘⠇⠻⠄⠎" }, { "input": "snivelers", "output": "â Žâ â Šâ §â ‘⠇⠻⠎" }, { "input": "sniveling", "output": "â Žâ â Šâ §â ‘⠇⠌" }, { "input": "snivels", "output": "â Žâ â Šâ §â ‘⠇⠎" }, { "input": "snob", "output": "â Žâ â •â ƒ" }, { "input": "snob's", "output": "â Žâ â •⠃⠄⠎" }, { "input": "snobbery", "output": "â Žâ â •⠆⠻⠽" }, { "input": "snobbery's", "output": "â Žâ â •⠆⠻⠽⠄⠎" }, { "input": "snobbier", "output": "â Žâ â •⠆⠊⠻" }, { "input": "snobbiest", "output": "â Žâ â •⠆⠊⠑⠌" }, { "input": "snobbish", "output": "â Žâ â •⠆⠊⠩" }, { "input": "snobbishness", "output": "â Žâ â •⠆⠊⠩⠰⠎" }, { "input": "snobbishness's", "output": "â Žâ â •⠆⠊⠩⠰⠎⠄⠎" }, { "input": "snobby", "output": "â Žâ â •⠆⠽" }, { "input": "snobs", "output": "â Žâ â •⠃⠎" }, { "input": "snood", "output": "â Žâ â •â •â ™" }, { "input": "snood's", "output": "â Žâ â •⠕⠙⠄⠎" }, { "input": "snoods", "output": "â Žâ â •⠕⠙⠎" }, { "input": "snooker", "output": "â Žâ â •â •â …â »" }, { "input": "snooker's", "output": "â Žâ â •⠕⠅⠻⠄⠎" }, { "input": "snoop", "output": "â Žâ â •â •â " }, { "input": "snoop's", "output": "â Žâ â •â •â â „â Ž" }, { "input": "snooped", "output": "â Žâ â •â •â â «" }, { "input": "snooper", "output": "â Žâ â •â •â â »" }, { "input": "snooper's", "output": "â Žâ â •â •â â »â „â Ž" }, { "input": "snoopers", "output": "â Žâ â •â •â â »â Ž" }, { "input": "snoopier", "output": "â Žâ â •â •â â Šâ »" }, { "input": "snoopiest", "output": "â Žâ â •â •â â Šâ ‘â Œ" }, { "input": "snooping", "output": "â Žâ â •â •â â Œ" }, { "input": "snoops", "output": "â Žâ â •â •â â Ž" }, { "input": "snoopy", "output": "â Žâ â •â •â â ½" }, { "input": "snoot", "output": "â Žâ â •â •â ž" }, { "input": "snoot's", "output": "â Žâ â •â •â žâ „â Ž" }, { "input": "snootier", "output": "â Žâ â •â •â žâ Šâ »" }, { "input": "snootiest", "output": "â Žâ â •â •â žâ Šâ ‘â Œ" }, { "input": "snootiness", "output": "â Žâ â •â •â žâ Šâ °â Ž" }, { "input": "snootiness's", "output": "â Žâ â •â •â žâ Šâ °â Žâ „â Ž" }, { "input": "snoots", "output": "â Žâ â •â •â žâ Ž" }, { "input": "snooty", "output": "â Žâ â •â •â žâ ½" }, { "input": "snooze", "output": "â Žâ â •⠕⠵⠑" }, { "input": "snooze's", "output": "â Žâ â •⠕⠵⠑⠄⠎" }, { "input": "snoozed", "output": "â Žâ â •⠕⠵⠫" }, { "input": "snoozes", "output": "â Žâ â •⠕⠵⠑⠎" }, { "input": "snoozing", "output": "â Žâ â •⠕⠵⠌" }, { "input": "snore", "output": "â Žâ â •â —â ‘" }, { "input": "snore's", "output": "â Žâ â •â —â ‘â „â Ž" }, { "input": "snored", "output": "â Žâ â •â —â «" }, { "input": "snorer", "output": "â Žâ â •â —â »" }, { "input": "snorer's", "output": "â Žâ â •⠗⠻⠄⠎" }, { "input": "snorers", "output": "â Žâ â •⠗⠻⠎" }, { "input": "snores", "output": "â Žâ â •â —â ‘â Ž" }, { "input": "snoring", "output": "â Žâ â •â —â Œ" }, { "input": "snorkel", "output": "â Žâ â •â —â …â ‘â ‡" }, { "input": "snorkel's", "output": "â Žâ â •⠗⠅⠑⠇⠄⠎" }, { "input": "snorkeled", "output": "â Žâ â •⠗⠅⠑⠇⠫" }, { "input": "snorkeler", "output": "â Žâ â •⠗⠅⠑⠇⠻" }, { "input": "snorkeler's", "output": "â Žâ â •⠗⠅⠑⠇⠻⠄⠎" }, { "input": "snorkelers", "output": "â Žâ â •⠗⠅⠑⠇⠻⠎" }, { "input": "snorkeling", "output": "â Žâ â •⠗⠅⠑⠇⠌" }, { "input": "snorkeling's", "output": "â Žâ â •⠗⠅⠑⠇⠌⠄⠎" }, { "input": "snorkels", "output": "â Žâ â •⠗⠅⠑⠇⠎" }, { "input": "snort", "output": "â Žâ â •â —â ž" }, { "input": "snort's", "output": "â Žâ â •â —â žâ „â Ž" }, { "input": "snorted", "output": "â Žâ â •â —â žâ «" }, { "input": "snorter", "output": "â Žâ â •â —â žâ »" }, { "input": "snorter's", "output": "â Žâ â •⠗⠞⠻⠄⠎" }, { "input": "snorters", "output": "â Žâ â •⠗⠞⠻⠎" }, { "input": "snorting", "output": "â Žâ â •â —â žâ Œ" }, { "input": "snorts", "output": "â Žâ â •â —â žâ Ž" }, { "input": "snot", "output": "â Žâ â •â ž" }, { "input": "snot's", "output": "â Žâ â •â žâ „â Ž" }, { "input": "snots", "output": "â Žâ â •â žâ Ž" }, { "input": "snottier", "output": "â Žâ â •â žâ žâ Šâ »" }, { "input": "snottiest", "output": "â Žâ â •â žâ žâ Šâ ‘â Œ" }, { "input": "snottily", "output": "â Žâ â •⠞⠞⠊⠇⠽" }, { "input": "snottiness", "output": "â Žâ â •â žâ žâ Šâ °â Ž" }, { "input": "snottiness's", "output": "â Žâ â •â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "snotty", "output": "â Žâ â •â žâ žâ ½" }, { "input": "snout", "output": "â Žâ â ³â ž" }, { "input": "snout's", "output": "â Žâ â ³â žâ „â Ž" }, { "input": "snouts", "output": "â Žâ â ³â žâ Ž" }, { "input": "snow", "output": "â Žâ â ª" }, { "input": "snow's", "output": "â Žâ â ªâ „â Ž" }, { "input": "snowball", "output": "â Žâ â ªâ ƒâ â ‡â ‡" }, { "input": "snowball's", "output": "â Žâ â ªâ ƒâ â ‡â ‡â „â Ž" }, { "input": "snowballed", "output": "â Žâ â ªâ ƒâ â ‡â ‡â «" }, { "input": "snowballing", "output": "â Žâ â ªâ ƒâ â ‡â ‡â Œ" }, { "input": "snowballs", "output": "â Žâ â ªâ ƒâ â ‡â ‡â Ž" }, { "input": "snowbank", "output": "â Žâ â ªâ ƒâ â â …" }, { "input": "snowbank's", "output": "â Žâ â ªâ ƒâ â â …â „â Ž" }, { "input": "snowbanks", "output": "â Žâ â ªâ ƒâ â â …â Ž" }, { "input": "snowbird", "output": "â Žâ â ªâ ƒâ Šâ —â ™" }, { "input": "snowbird's", "output": "â Žâ â ªâ ƒâ Šâ —⠙⠄⠎" }, { "input": "snowbirds", "output": "â Žâ â ªâ ƒâ Šâ —⠙⠎" }, { "input": "snowboard", "output": "â Žâ â ªâ ƒâ •⠜⠙" }, { "input": "snowboard's", "output": "â Žâ â ªâ ƒâ •⠜⠙⠄⠎" }, { "input": "snowboarded", "output": "â Žâ â ªâ ƒâ •⠜⠙⠫" }, { "input": "snowboarding", "output": "â Žâ â ªâ ƒâ •⠜⠙⠌" }, { "input": "snowboarding's", "output": "â Žâ â ªâ ƒâ •⠜⠙⠌⠄⠎" }, { "input": "snowboards", "output": "â Žâ â ªâ ƒâ •⠜⠙⠎" }, { "input": "snowbound", "output": "â Žâ â ªâ ƒâ ¨â ™" }, { "input": "snowdrift", "output": "â Žâ â ªâ ™â —â Šâ ‹â ž" }, { "input": "snowdrift's", "output": "â Žâ â ªâ ™â —â Šâ ‹â žâ „â Ž" }, { "input": "snowdrifts", "output": "â Žâ â ªâ ™â —â Šâ ‹â žâ Ž" }, { "input": "snowdrop", "output": "â Žâ â ªâ ™â —â •â " }, { "input": "snowdrop's", "output": "â Žâ â ªâ ™â —â •â â „â Ž" }, { "input": "snowdrops", "output": "â Žâ â ªâ ™â —â •â â Ž" }, { "input": "snowed", "output": "â Žâ â ªâ «" }, { "input": "snowfall", "output": "â Žâ â ªâ ‹â â ‡â ‡" }, { "input": "snowfall's", "output": "â Žâ â ªâ ‹â â ‡â ‡â „â Ž" }, { "input": "snowfalls", "output": "â Žâ â ªâ ‹â â ‡â ‡â Ž" }, { "input": "snowflake", "output": "â Žâ â ªâ ‹â ‡â â …â ‘" }, { "input": "snowflake's", "output": "â Žâ â ªâ ‹â ‡â â …â ‘â „â Ž" }, { "input": "snowflakes", "output": "â Žâ â ªâ ‹â ‡â â …â ‘â Ž" }, { "input": "snowier", "output": "â Žâ â ªâ Šâ »" }, { "input": "snowiest", "output": "â Žâ â ªâ Šâ ‘â Œ" }, { "input": "snowiness", "output": "â Žâ â ªâ Šâ °â Ž" }, { "input": "snowiness's", "output": "â Žâ â ªâ Šâ °â Žâ „â Ž" }, { "input": "snowing", "output": "â Žâ â ªâ Œ" }, { "input": "snowman", "output": "â Žâ â ªâ â â " }, { "input": "snowman's", "output": "â Žâ â ªâ â â â „â Ž" }, { "input": "snowmen", "output": "â Žâ â ªâ â ¢" }, { "input": "snowmobile", "output": "â Žâ â ªâ â •⠃⠊⠇⠑" }, { "input": "snowmobile's", "output": "â Žâ â ªâ â •⠃⠊⠇⠑⠄⠎" }, { "input": "snowmobiled", "output": "â Žâ â ªâ â •⠃⠊⠇⠫" }, { "input": "snowmobiles", "output": "â Žâ â ªâ â •⠃⠊⠇⠑⠎" }, { "input": "snowmobiling", "output": "â Žâ â ªâ â •⠃⠊⠇⠌" }, { "input": "snowplow", "output": "â Žâ â ªâ â ‡â ª" }, { "input": "snowplow's", "output": "â Žâ â ªâ â ‡â ªâ „â Ž" }, { "input": "snowplowed", "output": "â Žâ â ªâ â ‡â ªâ «" }, { "input": "snowplowing", "output": "â Žâ â ªâ â ‡â ªâ Œ" }, { "input": "snowplows", "output": "â Žâ â ªâ â ‡â ªâ Ž" }, { "input": "snows", "output": "â Žâ â ªâ Ž" }, { "input": "snowshed", "output": "â Žâ â ªâ ©â «" }, { "input": "snowshoe", "output": "â Žâ â ªâ ©â •â ‘" }, { "input": "snowshoe's", "output": "â Žâ â ªâ ©â •â ‘â „â Ž" }, { "input": "snowshoeing", "output": "â Žâ â ªâ ©â •â ‘â Œ" }, { "input": "snowshoes", "output": "â Žâ â ªâ ©â •â ‘â Ž" }, { "input": "snowstorm", "output": "â Žâ â ªâ Œâ •â —â " }, { "input": "snowstorm's", "output": "â Žâ â ªâ Œâ •â —â â „â Ž" }, { "input": "snowstorms", "output": "â Žâ â ªâ Œâ •â —â â Ž" }, { "input": "snowsuit", "output": "â Žâ â ªâ Žâ ¥â Šâ ž" }, { "input": "snowsuit's", "output": "â Žâ â ªâ Žâ ¥â Šâ žâ „â Ž" }, { "input": "snowsuits", "output": "â Žâ â ªâ Žâ ¥â Šâ žâ Ž" }, { "input": "snowy", "output": "â Žâ â ªâ ½" }, { "input": "snub", "output": "â Žâ â ¥â ƒ" }, { "input": "snub's", "output": "â Žâ â ¥â ƒâ „â Ž" }, { "input": "snubbed", "output": "â Žâ â ¥â †â «" }, { "input": "snubbing", "output": "â Žâ â ¥â †â Œ" }, { "input": "snubs", "output": "â Žâ â ¥â ƒâ Ž" }, { "input": "snuff", "output": "â Žâ â ¥â ‹â ‹" }, { "input": "snuff's", "output": "â Žâ â ¥â ‹â ‹â „â Ž" }, { "input": "snuffbox", "output": "â Žâ â ¥â –⠃⠕⠭" }, { "input": "snuffbox's", "output": "â Žâ â ¥â –⠃⠕⠭⠄⠎" }, { "input": "snuffboxes", "output": "â Žâ â ¥â –⠃⠕⠭⠑⠎" }, { "input": "snuffed", "output": "â Žâ â ¥â –â «" }, { "input": "snuffer", "output": "â Žâ â ¥â –â »" }, { "input": "snuffer's", "output": "â Žâ â ¥â –⠻⠄⠎" }, { "input": "snuffers", "output": "â Žâ â ¥â –⠻⠎" }, { "input": "snuffing", "output": "â Žâ â ¥â –â Œ" }, { "input": "snuffle", "output": "â Žâ â ¥â –⠇⠑" }, { "input": "snuffle's", "output": "â Žâ â ¥â –⠇⠑⠄⠎" }, { "input": "snuffled", "output": "â Žâ â ¥â –⠇⠫" }, { "input": "snuffles", "output": "â Žâ â ¥â –⠇⠑⠎" }, { "input": "snufflier", "output": "â Žâ â ¥â –⠇⠊⠻" }, { "input": "snuffliest", "output": "â Žâ â ¥â –⠇⠊⠑⠌" }, { "input": "snuffling", "output": "â Žâ â ¥â –⠇⠌" }, { "input": "snuffly", "output": "â Žâ â ¥â –⠇⠽" }, { "input": "snuffs", "output": "â Žâ â ¥â –â Ž" }, { "input": "snug", "output": "â Žâ â ¥â ›" }, { "input": "snug's", "output": "â Žâ â ¥â ›â „â Ž" }, { "input": "snugged", "output": "â Žâ â ¥â ¶â «" }, { "input": "snugger", "output": "â Žâ â ¥â ¶â »" }, { "input": "snuggest", "output": "â Žâ â ¥â ¶â ‘â Œ" }, { "input": "snugging", "output": "â Žâ â ¥â ¶â Œ" }, { "input": "snuggle", "output": "â Žâ â ¥â ¶â ‡â ‘" }, { "input": "snuggle's", "output": "â Žâ â ¥â ¶â ‡â ‘â „â Ž" }, { "input": "snuggled", "output": "â Žâ â ¥â ¶â ‡â «" }, { "input": "snuggles", "output": "â Žâ â ¥â ¶â ‡â ‘â Ž" }, { "input": "snuggling", "output": "â Žâ â ¥â ¶â ‡â Œ" }, { "input": "snugly", "output": "â Žâ â ¥â ›â ‡â ½" }, { "input": "snugness's", "output": "â Žâ â ¥â ›â °â Žâ „â Ž" }, { "input": "snugs", "output": "â Žâ â ¥â ›â Ž" }, { "input": "so", "output": "â Ž" }, { "input": "soak", "output": "â Žâ •â â …" }, { "input": "soak's", "output": "â Žâ •â â …â „â Ž" }, { "input": "soaked", "output": "â Žâ •â â …â «" }, { "input": "soaking", "output": "â Žâ •â â …â Œ" }, { "input": "soaking's", "output": "â Žâ •â â …⠌⠄⠎" }, { "input": "soakings", "output": "â Žâ •â â …⠌⠎" }, { "input": "soaks", "output": "â Žâ •â â …â Ž" }, { "input": "soap", "output": "â Žâ •â â " }, { "input": "soap's", "output": "â Žâ •â â â „â Ž" }, { "input": "soapbox", "output": "â Žâ •â â â ƒâ •â ­" }, { "input": "soapbox's", "output": "â Žâ •â â â ƒâ •â ­â „â Ž" }, { "input": "soapboxes", "output": "â Žâ •â â â ƒâ •â ­â ‘â Ž" }, { "input": "soaped", "output": "â Žâ •â â â «" }, { "input": "soapier", "output": "â Žâ •â â â Šâ »" }, { "input": "soapiest", "output": "â Žâ •â â â Šâ ‘â Œ" }, { "input": "soapiness", "output": "â Žâ •â â â Šâ °â Ž" }, { "input": "soapiness's", "output": "â Žâ •â â â Šâ °â Žâ „â Ž" }, { "input": "soaping", "output": "â Žâ •â â â Œ" }, { "input": "soaps", "output": "â Žâ •â â â Ž" }, { "input": "soapstone", "output": "â Žâ •â â â Œâ â •" }, { "input": "soapstone's", "output": "â Žâ •â â â Œâ â •â „â Ž" }, { "input": "soapsuds", "output": "â Žâ •â â â Žâ ¥â ™â Ž" }, { "input": "soapsuds's", "output": "â Žâ •â â â Žâ ¥â ™â Žâ „â Ž" }, { "input": "soapy", "output": "â Žâ •â â â ½" }, { "input": "soar", "output": "â Žâ •â œ" }, { "input": "soar's", "output": "⠎⠕⠜⠄⠎" }, { "input": "soared", "output": "⠎⠕⠜⠫" }, { "input": "soaring", "output": "⠎⠕⠜⠌" }, { "input": "soars", "output": "⠎⠕⠜⠎" }, { "input": "sob", "output": "â Žâ •â ƒ" }, { "input": "sob's", "output": "⠎⠕⠃⠄⠎" }, { "input": "sobbed", "output": "⠎⠕⠆⠫" }, { "input": "sobbing", "output": "⠎⠕⠆⠌" }, { "input": "sobbingly", "output": "⠎⠕⠆⠌⠇⠽" }, { "input": "sober", "output": "⠎⠕⠃⠻" }, { "input": "sobered", "output": "⠎⠕⠃⠻⠫" }, { "input": "soberer", "output": "⠎⠕⠃⠻⠻" }, { "input": "soberest", "output": "⠎⠕⠃⠻⠑⠌" }, { "input": "sobering", "output": "⠎⠕⠃⠻⠌" }, { "input": "soberly", "output": "⠎⠕⠃⠻⠇⠽" }, { "input": "soberness", "output": "⠎⠕⠃⠻⠰⠎" }, { "input": "soberness's", "output": "⠎⠕⠃⠻⠰⠎⠄⠎" }, { "input": "sobers", "output": "⠎⠕⠃⠻⠎" }, { "input": "sobriety", "output": "⠎⠕⠃⠗⠊⠑⠞⠽" }, { "input": "sobriety's", "output": "⠎⠕⠃⠗⠊⠑⠞⠽⠄⠎" }, { "input": "sobriquet", "output": "⠎⠕⠃⠗⠊⠟⠥⠑⠞" }, { "input": "sobriquet's", "output": "⠎⠕⠃⠗⠊⠟⠥⠑⠞⠄⠎" }, { "input": "sobriquets", "output": "⠎⠕⠃⠗⠊⠟⠥⠑⠞⠎" }, { "input": "sobs", "output": "⠎⠕⠃⠎" }, { "input": "soccer", "output": "â Žâ •â ’â »" }, { "input": "soccer's", "output": "⠎⠕⠒⠻⠄⠎" }, { "input": "sociability", "output": "⠎⠕⠉⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "sociability's", "output": "⠎⠕⠉⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "sociable", "output": "⠎⠕⠉⠊â â ¼" }, { "input": "sociable's", "output": "⠎⠕⠉⠊â â ¼â „â Ž" }, { "input": "sociables", "output": "⠎⠕⠉⠊â â ¼â Ž" }, { "input": "sociably", "output": "⠎⠕⠉⠊â â ƒâ ‡â ½" }, { "input": "social", "output": "⠎⠕⠉⠊â â ‡" }, { "input": "social's", "output": "⠎⠕⠉⠊â â ‡â „â Ž" }, { "input": "socialism", "output": "⠎⠕⠉⠊â â ‡â Šâ Žâ " }, { "input": "socialism's", "output": "⠎⠕⠉⠊â â ‡â Šâ Žâ â „â Ž" }, { "input": "socialist", "output": "⠎⠕⠉⠊â â ‡â Šâ Œ" }, { "input": "socialist's", "output": "⠎⠕⠉⠊â â ‡â Šâ Œâ „â Ž" }, { "input": "socialistic", "output": "⠎⠕⠉⠊â â ‡â Šâ Œâ Šâ ‰" }, { "input": "socialists", "output": "⠎⠕⠉⠊â â ‡â Šâ Œâ Ž" }, { "input": "socialite", "output": "⠎⠕⠉⠊â â ‡â Šâ žâ ‘" }, { "input": "socialite's", "output": "⠎⠕⠉⠊â â ‡â Šâ žâ ‘â „â Ž" }, { "input": "socialites", "output": "⠎⠕⠉⠊â â ‡â Šâ žâ ‘â Ž" }, { "input": "socialization", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ  â " }, { "input": "socialization's", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ  â â „â Ž" }, { "input": "socialize", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ ‘" }, { "input": "socialized", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ «" }, { "input": "socializes", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "socializing", "output": "⠎⠕⠉⠊â â ‡â Šâ µâ Œ" }, { "input": "socially", "output": "⠎⠕⠉⠊⠠⠽" }, { "input": "socials", "output": "⠎⠕⠉⠊â â ‡â Ž" }, { "input": "societal", "output": "⠎⠕⠉⠊⠑⠞â â ‡" }, { "input": "societies", "output": "⠎⠕⠉⠊⠑⠞⠊⠑⠎" }, { "input": "society", "output": "⠎⠕⠉⠊⠑⠞⠽" }, { "input": "society's", "output": "⠎⠕⠉⠊⠑⠞⠽⠄⠎" }, { "input": "socioeconomic", "output": "⠎⠕⠉⠊⠕⠑⠉⠕â â •â â Šâ ‰" }, { "input": "sociological", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "sociologist", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠌" }, { "input": "sociologist's", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "sociologists", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠊⠌⠎" }, { "input": "sociology", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠽" }, { "input": "sociology's", "output": "⠎⠕⠉⠊⠕⠇⠕⠛⠽⠄⠎" }, { "input": "sociopath", "output": "⠎⠕⠉⠊⠕â â â ¹" }, { "input": "sociopath's", "output": "⠎⠕⠉⠊⠕â â â ¹â „â Ž" }, { "input": "sociopaths", "output": "⠎⠕⠉⠊⠕â â â ¹â Ž" }, { "input": "sock", "output": "⠎⠕⠉⠅" }, { "input": "sock's", "output": "⠎⠕⠉⠅⠄⠎" }, { "input": "socked", "output": "⠎⠕⠉⠅⠫" }, { "input": "socket", "output": "⠎⠕⠉⠅⠑⠞" }, { "input": "socket's", "output": "⠎⠕⠉⠅⠑⠞⠄⠎" }, { "input": "sockets", "output": "⠎⠕⠉⠅⠑⠞⠎" }, { "input": "sockeye", "output": "⠎⠕⠉⠅⠑⠽⠑" }, { "input": "sockeye's", "output": "⠎⠕⠉⠅⠑⠽⠑⠄⠎" }, { "input": "sockeyes", "output": "⠎⠕⠉⠅⠑⠽⠑⠎" }, { "input": "socking", "output": "⠎⠕⠉⠅⠌" }, { "input": "socks", "output": "⠎⠕⠉⠅⠎" }, { "input": "sod", "output": "â Žâ •â ™" }, { "input": "sod's", "output": "⠎⠕⠙⠄⠎" }, { "input": "soda", "output": "â Žâ •â ™â " }, { "input": "soda's", "output": "â Žâ •â ™â â „â Ž" }, { "input": "sodas", "output": "â Žâ •â ™â â Ž" }, { "input": "sodded", "output": "⠎⠕⠲⠫" }, { "input": "sodden", "output": "⠎⠕⠲⠢" }, { "input": "soddenly", "output": "⠎⠕⠲⠢⠇⠽" }, { "input": "sodding", "output": "⠎⠕⠲⠌" }, { "input": "sodium", "output": "⠎⠕⠙⠊⠥â " }, { "input": "sodium's", "output": "⠎⠕⠙⠊⠥â â „â Ž" }, { "input": "sodomite", "output": "⠎⠕⠙⠕â â Šâ žâ ‘" }, { "input": "sodomite's", "output": "⠎⠕⠙⠕â â Šâ žâ ‘â „â Ž" }, { "input": "sodomites", "output": "⠎⠕⠙⠕â â Šâ žâ ‘â Ž" }, { "input": "sodomize", "output": "⠎⠕⠙⠕â â Šâ µâ ‘" }, { "input": "sodomized", "output": "⠎⠕⠙⠕â â Šâ µâ «" }, { "input": "sodomizes", "output": "⠎⠕⠙⠕â â Šâ µâ ‘â Ž" }, { "input": "sodomizing", "output": "⠎⠕⠙⠕â â Šâ µâ Œ" }, { "input": "sodomy", "output": "⠎⠕⠙⠕â â ½" }, { "input": "sodomy's", "output": "⠎⠕⠙⠕â â ½â „â Ž" }, { "input": "sods", "output": "⠎⠕⠙⠎" }, { "input": "soever", "output": "â Žâ •â â ‘" }, { "input": "sofa", "output": "â Žâ ·â " }, { "input": "sofa's", "output": "â Žâ ·â â „â Ž" }, { "input": "sofas", "output": "â Žâ ·â â Ž" }, { "input": "soft", "output": "â Žâ ·â ž" }, { "input": "softball", "output": "â Žâ ·â žâ ƒâ â ‡â ‡" }, { "input": "softball's", "output": "â Žâ ·â žâ ƒâ â ‡â ‡â „â Ž" }, { "input": "softballs", "output": "â Žâ ·â žâ ƒâ â ‡â ‡â Ž" }, { "input": "softbound", "output": "⠎⠷⠞⠃⠨⠙" }, { "input": "soften", "output": "â Žâ ·â žâ ¢" }, { "input": "softened", "output": "⠎⠷⠞⠢⠫" }, { "input": "softener", "output": "⠎⠷⠞⠢⠻" }, { "input": "softener's", "output": "⠎⠷⠞⠢⠻⠄⠎" }, { "input": "softeners", "output": "⠎⠷⠞⠢⠻⠎" }, { "input": "softening", "output": "⠎⠷⠞⠢⠌" }, { "input": "softens", "output": "⠎⠷⠞⠢⠎" }, { "input": "softer", "output": "â Žâ ·â žâ »" }, { "input": "softest", "output": "â Žâ ·â žâ ‘â Œ" }, { "input": "softhearted", "output": "⠎⠷⠞⠓⠑⠜⠞⠫" }, { "input": "softies", "output": "â Žâ ·â žâ Šâ ‘â Ž" }, { "input": "softly", "output": "⠎⠷⠞⠇⠽" }, { "input": "softness", "output": "â Žâ ·â žâ °â Ž" }, { "input": "softness's", "output": "â Žâ ·â žâ °â Žâ „â Ž" }, { "input": "software", "output": "⠎⠷⠞⠺⠜⠑" }, { "input": "software's", "output": "⠎⠷⠞⠺⠜⠑⠄⠎" }, { "input": "softwood", "output": "⠎⠷⠞⠺⠕⠕⠙" }, { "input": "softwood's", "output": "⠎⠷⠞⠺⠕⠕⠙⠄⠎" }, { "input": "softwoods", "output": "⠎⠷⠞⠺⠕⠕⠙⠎" }, { "input": "softy", "output": "â Žâ ·â žâ ½" }, { "input": "softy's", "output": "⠎⠷⠞⠽⠄⠎" }, { "input": "soggier", "output": "â Žâ •â ¶â Šâ »" }, { "input": "soggiest", "output": "â Žâ •â ¶â Šâ ‘â Œ" }, { "input": "soggily", "output": "⠎⠕⠶⠊⠇⠽" }, { "input": "sogginess", "output": "â Žâ •â ¶â Šâ °â Ž" }, { "input": "sogginess's", "output": "â Žâ •â ¶â Šâ °â Žâ „â Ž" }, { "input": "soggy", "output": "â Žâ •â ¶â ½" }, { "input": "soil", "output": "â Žâ •â Šâ ‡" }, { "input": "soil's", "output": "⠎⠕⠊⠇⠄⠎" }, { "input": "soiled", "output": "⠎⠕⠊⠇⠫" }, { "input": "soiling", "output": "⠎⠕⠊⠇⠌" }, { "input": "soils", "output": "⠎⠕⠊⠇⠎" }, { "input": "sojourn", "output": "⠎⠕⠚⠳⠗â " }, { "input": "sojourn's", "output": "⠎⠕⠚⠳⠗â â „â Ž" }, { "input": "sojourned", "output": "⠎⠕⠚⠳⠗â â «" }, { "input": "sojourner", "output": "⠎⠕⠚⠳⠗â â »" }, { "input": "sojourner's", "output": "⠎⠕⠚⠳⠗â â »â „â Ž" }, { "input": "sojourners", "output": "⠎⠕⠚⠳⠗â â »â Ž" }, { "input": "sojourning", "output": "⠎⠕⠚⠳⠗â â Œ" }, { "input": "sojourns", "output": "⠎⠕⠚⠳⠗â â Ž" }, { "input": "sol", "output": "â Žâ •â ‡" }, { "input": "sol's", "output": "⠎⠕⠇⠄⠎" }, { "input": "solace", "output": "â Žâ •â ‡â â ‰â ‘" }, { "input": "solace's", "output": "â Žâ •â ‡â â ‰â ‘â „â Ž" }, { "input": "solaced", "output": "â Žâ •â ‡â â ‰â «" }, { "input": "solaces", "output": "â Žâ •â ‡â â ‰â ‘â Ž" }, { "input": "solacing", "output": "â Žâ •â ‡â â ‰â Œ" }, { "input": "solar", "output": "⠎⠕⠇⠜" }, { "input": "solaria", "output": "⠎⠕⠇⠜⠊â " }, { "input": "solarium", "output": "⠎⠕⠇⠜⠊⠥â " }, { "input": "solarium's", "output": "⠎⠕⠇⠜⠊⠥â â „â Ž" }, { "input": "sold", "output": "⠎⠕⠇⠙" }, { "input": "solder", "output": "⠎⠕⠇⠙⠻" }, { "input": "solder's", "output": "⠎⠕⠇⠙⠻⠄⠎" }, { "input": "soldered", "output": "⠎⠕⠇⠙⠻⠫" }, { "input": "solderer", "output": "⠎⠕⠇⠙⠻⠻" }, { "input": "solderer's", "output": "⠎⠕⠇⠙⠻⠻⠄⠎" }, { "input": "solderers", "output": "⠎⠕⠇⠙⠻⠻⠎" }, { "input": "soldering", "output": "⠎⠕⠇⠙⠻⠌" }, { "input": "solders", "output": "⠎⠕⠇⠙⠻⠎" }, { "input": "soldier", "output": "⠎⠕⠇⠙⠊⠻" }, { "input": "soldier's", "output": "⠎⠕⠇⠙⠊⠻⠄⠎" }, { "input": "soldiered", "output": "⠎⠕⠇⠙⠊⠻⠫" }, { "input": "soldiering", "output": "⠎⠕⠇⠙⠊⠻⠌" }, { "input": "soldierly", "output": "⠎⠕⠇⠙⠊⠻⠇⠽" }, { "input": "soldiers", "output": "⠎⠕⠇⠙⠊⠻⠎" }, { "input": "soldiery's", "output": "⠎⠕⠇⠙⠊⠻⠽⠄⠎" }, { "input": "sole", "output": "⠎⠕⠇⠑" }, { "input": "sole's", "output": "⠎⠕⠇⠑⠄⠎" }, { "input": "solecism", "output": "⠎⠕⠇⠑⠉⠊⠎â " }, { "input": "solecism's", "output": "⠎⠕⠇⠑⠉⠊⠎â â „â Ž" }, { "input": "solecisms", "output": "⠎⠕⠇⠑⠉⠊⠎â â Ž" }, { "input": "soled", "output": "⠎⠕⠇⠫" }, { "input": "solely", "output": "⠎⠕⠇⠑⠇⠽" }, { "input": "solemn", "output": "⠎⠕⠇⠑â â " }, { "input": "solemner", "output": "⠎⠕⠇⠑â â â »" }, { "input": "solemness", "output": "⠎⠕⠇⠑â â °â Ž" }, { "input": "solemness's", "output": "⠎⠕⠇⠑â â °â Žâ „â Ž" }, { "input": "solemnest", "output": "⠎⠕⠇⠑â â â ‘â Œ" }, { "input": "solemnified", "output": "⠎⠕⠇⠑â â â Šâ ‹â Šâ «" }, { "input": "solemnifies", "output": "⠎⠕⠇⠑â â â Šâ ‹â Šâ ‘â Ž" }, { "input": "solemnify", "output": "⠎⠕⠇⠑â â â Šâ ‹â ½" }, { "input": "solemnifying", "output": "⠎⠕⠇⠑â â â Šâ ‹â ½â Œ" }, { "input": "solemnity", "output": "⠎⠕⠇⠑â â â °â ½" }, { "input": "solemnity's", "output": "⠎⠕⠇⠑â â â °â ½â „â Ž" }, { "input": "solemnization", "output": "⠎⠕⠇⠑â â â Šâ µâ  â " }, { "input": "solemnization's", "output": "⠎⠕⠇⠑â â â Šâ µâ  â â „â Ž" }, { "input": "solemnize", "output": "⠎⠕⠇⠑â â â Šâ µâ ‘" }, { "input": "solemnized", "output": "⠎⠕⠇⠑â â â Šâ µâ «" }, { "input": "solemnizes", "output": "⠎⠕⠇⠑â â â Šâ µâ ‘â Ž" }, { "input": "solemnizing", "output": "⠎⠕⠇⠑â â â Šâ µâ Œ" }, { "input": "solemnly", "output": "⠎⠕⠇⠑â â â ‡â ½" }, { "input": "solemnness's", "output": "⠎⠕⠇⠑â â â °â Žâ „â Ž" }, { "input": "solenoid", "output": "⠎⠕⠇⠢⠕⠊⠙" }, { "input": "solenoid's", "output": "⠎⠕⠇⠢⠕⠊⠙⠄⠎" }, { "input": "solenoids", "output": "⠎⠕⠇⠢⠕⠊⠙⠎" }, { "input": "soles", "output": "⠎⠕⠇⠑⠎" }, { "input": "solicit", "output": "⠎⠕⠇⠊⠉⠊⠞" }, { "input": "solicitation", "output": "⠎⠕⠇⠊⠉⠊⠞⠠â " }, { "input": "solicitation's", "output": "⠎⠕⠇⠊⠉⠊⠞⠠â â „â Ž" }, { "input": "solicitations", "output": "⠎⠕⠇⠊⠉⠊⠞⠠â â Ž" }, { "input": "solicited", "output": "⠎⠕⠇⠊⠉⠊⠞⠫" }, { "input": "soliciting", "output": "⠎⠕⠇⠊⠉⠊⠞⠌" }, { "input": "solicitor", "output": "⠎⠕⠇⠊⠉⠊⠞⠕⠗" }, { "input": "solicitor's", "output": "⠎⠕⠇⠊⠉⠊⠞⠕⠗⠄⠎" }, { "input": "solicitors", "output": "⠎⠕⠇⠊⠉⠊⠞⠕⠗⠎" }, { "input": "solicitous", "output": "⠎⠕⠇⠊⠉⠊⠞⠳⠎" }, { "input": "solicitously", "output": "⠎⠕⠇⠊⠉⠊⠞⠳⠎⠇⠽" }, { "input": "solicitousness's", "output": "⠎⠕⠇⠊⠉⠊⠞⠳⠎⠰⠎⠄⠎" }, { "input": "solicits", "output": "⠎⠕⠇⠊⠉⠊⠞⠎" }, { "input": "solicitude", "output": "⠎⠕⠇⠊⠉⠊⠞⠥⠙⠑" }, { "input": "solicitude's", "output": "⠎⠕⠇⠊⠉⠊⠞⠥⠙⠑⠄⠎" }, { "input": "solid", "output": "⠎⠕⠇⠊⠙" }, { "input": "solid's", "output": "⠎⠕⠇⠊⠙⠄⠎" }, { "input": "solidarity", "output": "⠎⠕⠇⠊⠙⠜⠰⠽" }, { "input": "solidarity's", "output": "⠎⠕⠇⠊⠙⠜⠰⠽⠄⠎" }, { "input": "solider", "output": "⠎⠕⠇⠊⠙⠻" }, { "input": "solidest", "output": "⠎⠕⠇⠊⠙⠑⠌" }, { "input": "solidi", "output": "⠎⠕⠇⠊⠙⠊" }, { "input": "solidification", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠉⠠â " }, { "input": "solidification's", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "solidified", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠫" }, { "input": "solidifies", "output": "⠎⠕⠇⠊⠙⠊⠋⠊⠑⠎" }, { "input": "solidify", "output": "⠎⠕⠇⠊⠙⠊⠋⠽" }, { "input": "solidifying", "output": "⠎⠕⠇⠊⠙⠊⠋⠽⠌" }, { "input": "solidity", "output": "⠎⠕⠇⠊⠙⠰⠽" }, { "input": "solidity's", "output": "⠎⠕⠇⠊⠙⠰⠽⠄⠎" }, { "input": "solidly", "output": "⠎⠕⠇⠊⠙⠇⠽" }, { "input": "solidness", "output": "⠎⠕⠇⠊⠙⠰⠎" }, { "input": "solidness's", "output": "⠎⠕⠇⠊⠙⠰⠎⠄⠎" }, { "input": "solids", "output": "⠎⠕⠇⠊⠙⠎" }, { "input": "solidus", "output": "⠎⠕⠇⠊⠙⠥⠎" }, { "input": "solidus's", "output": "⠎⠕⠇⠊⠙⠥⠎⠄⠎" }, { "input": "soliloquies", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠑⠎" }, { "input": "soliloquize", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠑" }, { "input": "soliloquized", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠫" }, { "input": "soliloquizes", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠑⠎" }, { "input": "soliloquizing", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠊⠵⠌" }, { "input": "soliloquy", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠽" }, { "input": "soliloquy's", "output": "⠎⠕⠇⠊⠇⠕⠟⠥⠽⠄⠎" }, { "input": "soling", "output": "⠎⠕⠇⠌" }, { "input": "solipsism's", "output": "⠎⠕⠇⠊â â Žâ Šâ Žâ â „â Ž" }, { "input": "solitaire", "output": "⠎⠕⠇⠊⠞â â Šâ —â ‘" }, { "input": "solitaire's", "output": "⠎⠕⠇⠊⠞â â Šâ —â ‘â „â Ž" }, { "input": "solitaires", "output": "⠎⠕⠇⠊⠞â â Šâ —â ‘â Ž" }, { "input": "solitaries", "output": "⠎⠕⠇⠊⠞⠜⠊⠑⠎" }, { "input": "solitariness's", "output": "⠎⠕⠇⠊⠞⠜⠊⠰⠎⠄⠎" }, { "input": "solitary", "output": "⠎⠕⠇⠊⠞⠜⠽" }, { "input": "solitary's", "output": "⠎⠕⠇⠊⠞⠜⠽⠄⠎" }, { "input": "solitude", "output": "⠎⠕⠇⠊⠞⠥⠙⠑" }, { "input": "solitude's", "output": "⠎⠕⠇⠊⠞⠥⠙⠑⠄⠎" }, { "input": "solo", "output": "⠎⠕⠇⠕" }, { "input": "solo's", "output": "⠎⠕⠇⠕⠄⠎" }, { "input": "soloed", "output": "⠎⠕⠇⠕⠫" }, { "input": "soloing", "output": "⠎⠕⠇⠕⠌" }, { "input": "soloist", "output": "⠎⠕⠇⠕⠊⠌" }, { "input": "soloist's", "output": "⠎⠕⠇⠕⠊⠌⠄⠎" }, { "input": "soloists", "output": "⠎⠕⠇⠕⠊⠌⠎" }, { "input": "solos", "output": "⠎⠕⠇⠕⠎" }, { "input": "sols", "output": "⠎⠕⠇⠎" }, { "input": "solstice", "output": "⠎⠕⠇⠌⠊⠉⠑" }, { "input": "solstice's", "output": "⠎⠕⠇⠌⠊⠉⠑⠄⠎" }, { "input": "solstices", "output": "⠎⠕⠇⠌⠊⠉⠑⠎" }, { "input": "solubility", "output": "⠎⠕⠇⠥⠃⠊⠇⠰⠽" }, { "input": "solubility's", "output": "⠎⠕⠇⠥⠃⠊⠇⠰⠽⠄⠎" }, { "input": "soluble", "output": "⠎⠕⠇⠥⠼" }, { "input": "soluble's", "output": "⠎⠕⠇⠥⠼⠄⠎" }, { "input": "solubles", "output": "⠎⠕⠇⠥⠼⠎" }, { "input": "solute", "output": "⠎⠕⠇⠥⠞⠑" }, { "input": "solute's", "output": "⠎⠕⠇⠥⠞⠑⠄⠎" }, { "input": "solutes", "output": "⠎⠕⠇⠥⠞⠑⠎" }, { "input": "solution", "output": "⠎⠕⠇⠥⠰â " }, { "input": "solution's", "output": "⠎⠕⠇⠥⠰â â „â Ž" }, { "input": "solutions", "output": "⠎⠕⠇⠥⠰â â Ž" }, { "input": "solvable", "output": "⠎⠕⠇⠧â â ¼" }, { "input": "solve", "output": "⠎⠕⠇⠧⠑" }, { "input": "solved", "output": "⠎⠕⠇⠧⠫" }, { "input": "solvency", "output": "⠎⠕⠇⠧⠢⠉⠽" }, { "input": "solvency's", "output": "⠎⠕⠇⠧⠢⠉⠽⠄⠎" }, { "input": "solvent", "output": "⠎⠕⠇⠧⠢⠞" }, { "input": "solvent's", "output": "⠎⠕⠇⠧⠢⠞⠄⠎" }, { "input": "solvents", "output": "⠎⠕⠇⠧⠢⠞⠎" }, { "input": "solver", "output": "⠎⠕⠇⠧⠻" }, { "input": "solver's", "output": "⠎⠕⠇⠧⠻⠄⠎" }, { "input": "solvers", "output": "⠎⠕⠇⠧⠻⠎" }, { "input": "solves", "output": "⠎⠕⠇⠧⠑⠎" }, { "input": "solving", "output": "⠎⠕⠇⠧⠌" }, { "input": "somatic", "output": "â Žâ •â â â žâ Šâ ‰" }, { "input": "somber", "output": "â Žâ •â â ƒâ »" }, { "input": "somberly", "output": "â Žâ •â â ƒâ »â ‡â ½" }, { "input": "somberness", "output": "â Žâ •â â ƒâ »â °â Ž" }, { "input": "somberness's", "output": "â Žâ •â â ƒâ »â °â Žâ „â Ž" }, { "input": "sombrero", "output": "â Žâ •â â ƒâ —⠻⠕" }, { "input": "sombrero's", "output": "â Žâ •â â ƒâ —⠻⠕⠄⠎" }, { "input": "sombreros", "output": "â Žâ •â â ƒâ —⠻⠕⠎" }, { "input": "some", "output": "â â Ž" }, { "input": "somebodies", "output": "â â Žâ ƒâ •⠙⠊⠑⠎" }, { "input": "somebody", "output": "â â Žâ ƒâ •⠙⠽" }, { "input": "somebody's", "output": "â â Žâ ƒâ •⠙⠽⠄⠎" }, { "input": "someday", "output": "â â Žâ â ™" }, { "input": "somehow", "output": "â â Žâ “â ª" }, { "input": "someone", "output": "â â Žâ â •" }, { "input": "someone's", "output": "â â Žâ â •â „â Ž" }, { "input": "someones", "output": "â â Žâ â •â Ž" }, { "input": "someplace", "output": "â â Žâ â ‡â â ‰â ‘" }, { "input": "somersault", "output": "â Žâ •â â »â Žâ â ¥â ‡â ž" }, { "input": "somersault's", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ „â Ž" }, { "input": "somersaulted", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ «" }, { "input": "somersaulting", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ Œ" }, { "input": "somersaults", "output": "â Žâ •â â »â Žâ â ¥â ‡â žâ Ž" }, { "input": "somerset", "output": "â Žâ •â â »â Žâ ‘â ž" }, { "input": "somerset's", "output": "â Žâ •â â »â Žâ ‘â žâ „â Ž" }, { "input": "somersets", "output": "â Žâ •â â »â Žâ ‘â žâ Ž" }, { "input": "somersetted", "output": "â Žâ •â â »â Žâ ‘â žâ žâ «" }, { "input": "somersetting", "output": "â Žâ •â â »â Žâ ‘â žâ žâ Œ" }, { "input": "something", "output": "â â Žâ ¹â Œ" }, { "input": "something's", "output": "â â Žâ ¹â Œâ „â Ž" }, { "input": "somethings", "output": "â â Žâ ¹â Œâ Ž" }, { "input": "sometime", "output": "â â Žâ â ž" }, { "input": "sometimes", "output": "â â Žâ â žâ Ž" }, { "input": "someway", "output": "â â Žâ ºâ â ½" }, { "input": "somewhat", "output": "â â Žâ ±â â ž" }, { "input": "somewhats", "output": "â â Žâ ±â â žâ Ž" }, { "input": "somewhere", "output": "â â Žâ â ±" }, { "input": "somnambulism", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Žâ " }, { "input": "somnambulism's", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Žâ â „â Ž" }, { "input": "somnambulist", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Œ" }, { "input": "somnambulist's", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Œâ „â Ž" }, { "input": "somnambulists", "output": "â Žâ •â â â â â ƒâ ¥â ‡â Šâ Œâ Ž" }, { "input": "somnolence", "output": "â Žâ •â â â •⠇⠰⠑" }, { "input": "somnolence's", "output": "â Žâ •â â â •⠇⠰⠑⠄⠎" }, { "input": "somnolent", "output": "â Žâ •â â â •⠇⠢⠞" }, { "input": "son", "output": "â Žâ •â " }, { "input": "son's", "output": "â Žâ •â â „â Ž" }, { "input": "sonar", "output": "â Žâ •â â œ" }, { "input": "sonar's", "output": "â Žâ •â â œâ „â Ž" }, { "input": "sonars", "output": "â Žâ •â â œâ Ž" }, { "input": "sonata", "output": "â Žâ •â â â žâ " }, { "input": "sonata's", "output": "â Žâ •â â â žâ â „â Ž" }, { "input": "sonatas", "output": "â Žâ •â â â žâ â Ž" }, { "input": "sonatina", "output": "â Žâ •â â â žâ ”â " }, { "input": "sonatina's", "output": "â Žâ •â â â žâ ”â â „â Ž" }, { "input": "sonatinas", "output": "â Žâ •â â â žâ ”â â Ž" }, { "input": "song", "output": "â Žâ °â ›" }, { "input": "song's", "output": "⠎⠰⠛⠄⠎" }, { "input": "songbird", "output": "⠎⠰⠛⠃⠊⠗⠙" }, { "input": "songbird's", "output": "⠎⠰⠛⠃⠊⠗⠙⠄⠎" }, { "input": "songbirds", "output": "⠎⠰⠛⠃⠊⠗⠙⠎" }, { "input": "songfest", "output": "⠎⠰⠛⠋⠑⠌" }, { "input": "songfest's", "output": "⠎⠰⠛⠋⠑⠌⠄⠎" }, { "input": "songfests", "output": "⠎⠰⠛⠋⠑⠌⠎" }, { "input": "songs", "output": "⠎⠰⠛⠎" }, { "input": "songster", "output": "⠎⠰⠛⠌⠻" }, { "input": "songster's", "output": "⠎⠰⠛⠌⠻⠄⠎" }, { "input": "songsters", "output": "⠎⠰⠛⠌⠻⠎" }, { "input": "songwriter", "output": "⠎⠰⠛⠺⠗⠊⠞⠻" }, { "input": "songwriter's", "output": "⠎⠰⠛⠺⠗⠊⠞⠻⠄⠎" }, { "input": "songwriters", "output": "⠎⠰⠛⠺⠗⠊⠞⠻⠎" }, { "input": "sonic", "output": "â Žâ •â â Šâ ‰" }, { "input": "sonnet", "output": "â Žâ •â â â ‘â ž" }, { "input": "sonnet's", "output": "â Žâ •â â â ‘â žâ „â Ž" }, { "input": "sonnets", "output": "â Žâ •â â â ‘â žâ Ž" }, { "input": "sonnies", "output": "â Žâ •â â â Šâ ‘â Ž" }, { "input": "sonny", "output": "â Žâ •â â â ½" }, { "input": "sonny's", "output": "â Žâ •â â â ½â „â Ž" }, { "input": "sonority", "output": "â Žâ •â â •â —â °â ½" }, { "input": "sonority's", "output": "â Žâ •â â •⠗⠰⠽⠄⠎" }, { "input": "sonorous", "output": "â Žâ •â â •⠗⠳⠎" }, { "input": "sonorousness", "output": "â Žâ •â â •⠗⠳⠎⠰⠎" }, { "input": "sonorousness's", "output": "â Žâ •â â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "sons", "output": "â Žâ •â â Ž" }, { "input": "soon", "output": "â Žâ •â •â " }, { "input": "sooner", "output": "â Žâ •â •â â »" }, { "input": "soonest", "output": "â Žâ •â •â â ‘â Œ" }, { "input": "soot", "output": "â Žâ •â •â ž" }, { "input": "soot's", "output": "â Žâ •â •â žâ „â Ž" }, { "input": "sooth", "output": "â Žâ •â •â ¹" }, { "input": "sooth's", "output": "⠎⠕⠕⠹⠄⠎" }, { "input": "soothe", "output": "â Žâ •â •â ®" }, { "input": "soothed", "output": "⠎⠕⠕⠮⠙" }, { "input": "soother", "output": "⠎⠕⠕⠮⠗" }, { "input": "soother's", "output": "⠎⠕⠕⠮⠗⠄⠎" }, { "input": "soothers", "output": "⠎⠕⠕⠮⠗⠎" }, { "input": "soothes", "output": "⠎⠕⠕⠮⠎" }, { "input": "soothing", "output": "⠎⠕⠕⠹⠌" }, { "input": "soothingly", "output": "⠎⠕⠕⠹⠌⠇⠽" }, { "input": "soothsayer", "output": "⠎⠕⠕⠹⠎â â ½â »" }, { "input": "soothsayer's", "output": "⠎⠕⠕⠹⠎â â ½â »â „â Ž" }, { "input": "soothsayers", "output": "⠎⠕⠕⠹⠎â â ½â »â Ž" }, { "input": "soothsaying", "output": "⠎⠕⠕⠹⠎â â ½â Œ" }, { "input": "soothsaying's", "output": "⠎⠕⠕⠹⠎â â ½â Œâ „â Ž" }, { "input": "sootier", "output": "â Žâ •â •â žâ Šâ »" }, { "input": "sootiest", "output": "â Žâ •â •â žâ Šâ ‘â Œ" }, { "input": "sooty", "output": "â Žâ •â •â žâ ½" }, { "input": "sop", "output": "â Žâ •â " }, { "input": "sop's", "output": "â Žâ •â â „â Ž" }, { "input": "sophism", "output": "â Žâ •â â “â Šâ Žâ " }, { "input": "sophism's", "output": "â Žâ •â â “â Šâ Žâ â „â Ž" }, { "input": "sophist", "output": "â Žâ •â â “â Šâ Œ" }, { "input": "sophist's", "output": "â Žâ •â â “⠊⠌⠄⠎" }, { "input": "sophistic", "output": "â Žâ •â â “⠊⠌⠊⠉" }, { "input": "sophistical", "output": "â Žâ •â â “⠊⠌⠊⠉â â ‡" }, { "input": "sophisticate", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ ‘" }, { "input": "sophisticate's", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ ‘â „â Ž" }, { "input": "sophisticated", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ «" }, { "input": "sophisticates", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ ‘â Ž" }, { "input": "sophisticating", "output": "â Žâ •â â “⠊⠌⠊⠉â â žâ Œ" }, { "input": "sophistication", "output": "â Žâ •â â “⠊⠌⠊⠉⠠â " }, { "input": "sophistication's", "output": "â Žâ •â â “⠊⠌⠊⠉⠠â â „â Ž" }, { "input": "sophistries", "output": "â Žâ •â â “⠊⠌⠗⠊⠑⠎" }, { "input": "sophistry", "output": "â Žâ •â â “⠊⠌⠗⠽" }, { "input": "sophistry's", "output": "â Žâ •â â “⠊⠌⠗⠽⠄⠎" }, { "input": "sophists", "output": "â Žâ •â â “⠊⠌⠎" }, { "input": "sophomore", "output": "â Žâ •â â “â •â â •â —â ‘" }, { "input": "sophomore's", "output": "â Žâ •â â “â •â â •â —â ‘â „â Ž" }, { "input": "sophomores", "output": "â Žâ •â â “â •â â •â —â ‘â Ž" }, { "input": "sophomoric", "output": "â Žâ •â â “â •â â •â —â Šâ ‰" }, { "input": "soporific", "output": "â Žâ •â â •â —â Šâ ‹â Šâ ‰" }, { "input": "soporific's", "output": "â Žâ •â â •⠗⠊⠋⠊⠉⠄⠎" }, { "input": "soporifics", "output": "â Žâ •â â •⠗⠊⠋⠊⠉⠎" }, { "input": "sopped", "output": "â Žâ •â â â «" }, { "input": "soppier", "output": "â Žâ •â â â Šâ »" }, { "input": "soppiest", "output": "â Žâ •â â â Šâ ‘â Œ" }, { "input": "sopping", "output": "â Žâ •â â â Œ" }, { "input": "soppy", "output": "â Žâ •â â â ½" }, { "input": "soprano", "output": "â Žâ •â â —â â â •" }, { "input": "soprano's", "output": "â Žâ •â â —â â â •â „â Ž" }, { "input": "sopranos", "output": "â Žâ •â â —â â â •â Ž" }, { "input": "sops", "output": "â Žâ •â â Ž" }, { "input": "sorbet", "output": "⠎⠕⠗⠃⠑⠞" }, { "input": "sorbet's", "output": "⠎⠕⠗⠃⠑⠞⠄⠎" }, { "input": "sorbets", "output": "⠎⠕⠗⠃⠑⠞⠎" }, { "input": "sorcerer", "output": "⠎⠕⠗⠉⠻⠻" }, { "input": "sorcerer's", "output": "⠎⠕⠗⠉⠻⠻⠄⠎" }, { "input": "sorcerers", "output": "⠎⠕⠗⠉⠻⠻⠎" }, { "input": "sorceress", "output": "⠎⠕⠗⠉⠻⠑⠎⠎" }, { "input": "sorceress's", "output": "⠎⠕⠗⠉⠻⠑⠎⠎⠄⠎" }, { "input": "sorceresses", "output": "⠎⠕⠗⠉⠻⠑⠎⠎⠑⠎" }, { "input": "sorcery", "output": "⠎⠕⠗⠉⠻⠽" }, { "input": "sorcery's", "output": "⠎⠕⠗⠉⠻⠽⠄⠎" }, { "input": "sordid", "output": "⠎⠕⠗⠙⠊⠙" }, { "input": "sordidly", "output": "⠎⠕⠗⠙⠊⠙⠇⠽" }, { "input": "sordidness", "output": "⠎⠕⠗⠙⠊⠙⠰⠎" }, { "input": "sordidness's", "output": "⠎⠕⠗⠙⠊⠙⠰⠎⠄⠎" }, { "input": "sore", "output": "â Žâ •â —â ‘" }, { "input": "sore's", "output": "â Žâ •â —â ‘â „â Ž" }, { "input": "sorehead", "output": "â Žâ •â —â ‘â “â ‚â ™" }, { "input": "sorehead's", "output": "⠎⠕⠗⠑⠓⠂⠙⠄⠎" }, { "input": "soreheads", "output": "⠎⠕⠗⠑⠓⠂⠙⠎" }, { "input": "sorely", "output": "⠎⠕⠗⠑⠇⠽" }, { "input": "soreness", "output": "â Žâ •â —â ‘â °â Ž" }, { "input": "soreness's", "output": "â Žâ •â —â ‘â °â Žâ „â Ž" }, { "input": "sorer", "output": "â Žâ •â —â »" }, { "input": "sores", "output": "â Žâ •â —â ‘â Ž" }, { "input": "sorest", "output": "â Žâ •â —â ‘â Œ" }, { "input": "sorghum", "output": "⠎⠕⠗⠣⠥â " }, { "input": "sorghum's", "output": "⠎⠕⠗⠣⠥â â „â Ž" }, { "input": "sororities", "output": "â Žâ •â —â •â —â Šâ žâ Šâ ‘â Ž" }, { "input": "sorority", "output": "â Žâ •â —â •â —â °â ½" }, { "input": "sorority's", "output": "⠎⠕⠗⠕⠗⠰⠽⠄⠎" }, { "input": "sorrel", "output": "â Žâ •â —â —â ‘â ‡" }, { "input": "sorrel's", "output": "⠎⠕⠗⠗⠑⠇⠄⠎" }, { "input": "sorrels", "output": "⠎⠕⠗⠗⠑⠇⠎" }, { "input": "sorrier", "output": "â Žâ •â —â —â Šâ »" }, { "input": "sorriest", "output": "â Žâ •â —â —â Šâ ‘â Œ" }, { "input": "sorrily", "output": "⠎⠕⠗⠗⠊⠇⠽" }, { "input": "sorriness", "output": "â Žâ •â —â —â Šâ °â Ž" }, { "input": "sorriness's", "output": "â Žâ •â —â —â Šâ °â Žâ „â Ž" }, { "input": "sorrow", "output": "â Žâ •â —â —â ª" }, { "input": "sorrow's", "output": "⠎⠕⠗⠗⠪⠄⠎" }, { "input": "sorrowed", "output": "⠎⠕⠗⠗⠪⠫" }, { "input": "sorrowful", "output": "⠎⠕⠗⠗⠪⠰⠇" }, { "input": "sorrowfully", "output": "⠎⠕⠗⠗⠪⠰⠇⠇⠽" }, { "input": "sorrowfulness", "output": "⠎⠕⠗⠗⠪⠰⠇⠰⠎" }, { "input": "sorrowfulness's", "output": "⠎⠕⠗⠗⠪⠰⠇⠰⠎⠄⠎" }, { "input": "sorrowing", "output": "⠎⠕⠗⠗⠪⠌" }, { "input": "sorrows", "output": "⠎⠕⠗⠗⠪⠎" }, { "input": "sorry", "output": "â Žâ •â —â —â ½" }, { "input": "sort", "output": "â Žâ •â —â ž" }, { "input": "sort's", "output": "â Žâ •â —â žâ „â Ž" }, { "input": "sorta", "output": "â Žâ •â —â žâ " }, { "input": "sorted", "output": "â Žâ •â —â žâ «" }, { "input": "sorter", "output": "â Žâ •â —â žâ »" }, { "input": "sorter's", "output": "⠎⠕⠗⠞⠻⠄⠎" }, { "input": "sorters", "output": "⠎⠕⠗⠞⠻⠎" }, { "input": "sortie", "output": "â Žâ •â —â žâ Šâ ‘" }, { "input": "sortie's", "output": "â Žâ •â —â žâ Šâ ‘â „â Ž" }, { "input": "sortied", "output": "â Žâ •â —â žâ Šâ «" }, { "input": "sortieing", "output": "â Žâ •â —â žâ Šâ ‘â Œ" }, { "input": "sorties", "output": "â Žâ •â —â žâ Šâ ‘â Ž" }, { "input": "sorting", "output": "â Žâ •â —â žâ Œ" }, { "input": "sorts", "output": "â Žâ •â —â žâ Ž" }, { "input": "sot", "output": "â Žâ •â ž" }, { "input": "sot's", "output": "â Žâ •â žâ „â Ž" }, { "input": "sots", "output": "â Žâ •â žâ Ž" }, { "input": "sottish", "output": "â Žâ •â žâ žâ Šâ ©" }, { "input": "sou's", "output": "⠎⠳⠄⠎" }, { "input": "sough", "output": "⠎⠳⠣" }, { "input": "sough's", "output": "⠎⠳⠣⠄⠎" }, { "input": "soughed", "output": "⠎⠳⠣⠫" }, { "input": "soughing", "output": "⠎⠳⠣⠌" }, { "input": "soughs", "output": "⠎⠳⠣⠎" }, { "input": "sought", "output": "â Žâ â ³" }, { "input": "soul", "output": "⠎⠳⠇" }, { "input": "soul's", "output": "⠎⠳⠇⠄⠎" }, { "input": "soulful", "output": "⠎⠳⠇⠰⠇" }, { "input": "soulfully", "output": "⠎⠳⠇⠰⠇⠇⠽" }, { "input": "soulfulness", "output": "⠎⠳⠇⠰⠇⠰⠎" }, { "input": "soulfulness's", "output": "⠎⠳⠇⠰⠇⠰⠎⠄⠎" }, { "input": "soulless", "output": "⠎⠳⠇⠨⠎" }, { "input": "souls", "output": "⠎⠳⠇⠎" }, { "input": "sound", "output": "⠎⠨⠙" }, { "input": "sound's", "output": "⠎⠨⠙⠄⠎" }, { "input": "soundboard", "output": "⠎⠨⠙⠃⠕⠜⠙" }, { "input": "soundboard's", "output": "⠎⠨⠙⠃⠕⠜⠙⠄⠎" }, { "input": "soundboards", "output": "⠎⠨⠙⠃⠕⠜⠙⠎" }, { "input": "sounded", "output": "⠎⠨⠙⠫" }, { "input": "sounder", "output": "⠎⠨⠙⠻" }, { "input": "sounder's", "output": "⠎⠨⠙⠻⠄⠎" }, { "input": "sounders", "output": "⠎⠨⠙⠻⠎" }, { "input": "soundest", "output": "⠎⠨⠙⠑⠌" }, { "input": "sounding", "output": "⠎⠨⠙⠌" }, { "input": "sounding's", "output": "⠎⠨⠙⠌⠄⠎" }, { "input": "soundings", "output": "⠎⠨⠙⠌⠎" }, { "input": "soundless", "output": "⠎⠨⠙⠨⠎" }, { "input": "soundlessly", "output": "⠎⠨⠙⠨⠎⠇⠽" }, { "input": "soundly", "output": "⠎⠨⠙⠇⠽" }, { "input": "soundness", "output": "⠎⠨⠙⠰⠎" }, { "input": "soundness's", "output": "⠎⠨⠙⠰⠎⠄⠎" }, { "input": "soundproof", "output": "⠎⠨⠙â â —â •â ·" }, { "input": "soundproofed", "output": "⠎⠨⠙â â —â •â ·â «" }, { "input": "soundproofing", "output": "⠎⠨⠙â â —â •â ·â Œ" }, { "input": "soundproofing's", "output": "⠎⠨⠙â â —⠕⠷⠌⠄⠎" }, { "input": "soundproofs", "output": "⠎⠨⠙â â —â •â ·â Ž" }, { "input": "sounds", "output": "⠎⠨⠙⠎" }, { "input": "soundtrack", "output": "⠎⠨⠙⠞⠗â â ‰â …" }, { "input": "soundtrack's", "output": "⠎⠨⠙⠞⠗â â ‰â …â „â Ž" }, { "input": "soundtracks", "output": "⠎⠨⠙⠞⠗â â ‰â …â Ž" }, { "input": "soup", "output": "â Žâ ³â " }, { "input": "soup's", "output": "â Žâ ³â â „â Ž" }, { "input": "souped", "output": "â Žâ ³â â «" }, { "input": "soupier", "output": "â Žâ ³â â Šâ »" }, { "input": "soupiest", "output": "â Žâ ³â â Šâ ‘â Œ" }, { "input": "souping", "output": "â Žâ ³â â Œ" }, { "input": "soups", "output": "â Žâ ³â â Ž" }, { "input": "soupy", "output": "â Žâ ³â â ½" }, { "input": "sour", "output": "⠎⠳⠗" }, { "input": "sour's", "output": "⠎⠳⠗⠄⠎" }, { "input": "source", "output": "⠎⠳⠗⠉⠑" }, { "input": "source's", "output": "⠎⠳⠗⠉⠑⠄⠎" }, { "input": "sourced", "output": "⠎⠳⠗⠉⠫" }, { "input": "sources", "output": "⠎⠳⠗⠉⠑⠎" }, { "input": "sourcing", "output": "⠎⠳⠗⠉⠌" }, { "input": "sourdough", "output": "⠎⠳⠗⠙⠳⠣" }, { "input": "sourdough's", "output": "⠎⠳⠗⠙⠳⠣⠄⠎" }, { "input": "sourdoughs", "output": "⠎⠳⠗⠙⠳⠣⠎" }, { "input": "soured", "output": "⠎⠳⠗⠫" }, { "input": "sourer", "output": "⠎⠳⠗⠻" }, { "input": "sourest", "output": "⠎⠳⠗⠑⠌" }, { "input": "souring", "output": "⠎⠳⠗⠌" }, { "input": "sourish", "output": "⠎⠳⠗⠊⠩" }, { "input": "sourly", "output": "⠎⠳⠗⠇⠽" }, { "input": "sourness", "output": "⠎⠳⠗⠰⠎" }, { "input": "sourness's", "output": "⠎⠳⠗⠰⠎⠄⠎" }, { "input": "sourpuss", "output": "⠎⠳⠗â â ¥â Žâ Ž" }, { "input": "sourpuss's", "output": "⠎⠳⠗â â ¥â Žâ Žâ „â Ž" }, { "input": "sourpusses", "output": "⠎⠳⠗â â ¥â Žâ Žâ ‘â Ž" }, { "input": "sours", "output": "⠎⠳⠗⠎" }, { "input": "sous", "output": "⠎⠳⠎" }, { "input": "souse", "output": "⠎⠳⠎⠑" }, { "input": "souse's", "output": "⠎⠳⠎⠑⠄⠎" }, { "input": "soused", "output": "⠎⠳⠎⠫" }, { "input": "souses", "output": "⠎⠳⠎⠑⠎" }, { "input": "sousing", "output": "⠎⠳⠎⠌" }, { "input": "south", "output": "⠎⠳⠹" }, { "input": "south's", "output": "⠎⠳⠹⠄⠎" }, { "input": "southbound", "output": "⠎⠳⠹⠃⠨⠙" }, { "input": "southeast", "output": "⠎⠳⠹⠑â â Œ" }, { "input": "southeast's", "output": "⠎⠳⠹⠑â â Œâ „â Ž" }, { "input": "southeaster", "output": "⠎⠳⠹⠑â â Œâ »" }, { "input": "southeaster's", "output": "⠎⠳⠹⠑â â Œâ »â „â Ž" }, { "input": "southeasterly", "output": "⠎⠳⠹⠑â â Œâ »â ‡â ½" }, { "input": "southeastern", "output": "⠎⠳⠹⠑â â Œâ »â " }, { "input": "southeasters", "output": "⠎⠳⠹⠑â â Œâ »â Ž" }, { "input": "southeastward", "output": "⠎⠳⠹⠑â â Œâ ºâ œâ ™" }, { "input": "southerlies", "output": "⠎⠳⠮⠗⠇⠊⠑⠎" }, { "input": "southerly", "output": "⠎⠳⠮⠗⠇⠽" }, { "input": "southerly's", "output": "⠎⠳⠮⠗⠇⠽⠄⠎" }, { "input": "southern", "output": "⠎⠳⠮⠗â " }, { "input": "southern's", "output": "⠎⠳⠮⠗â â „â Ž" }, { "input": "southerner", "output": "⠎⠳⠮⠗â â »" }, { "input": "southerner's", "output": "⠎⠳⠮⠗â â »â „â Ž" }, { "input": "southerners", "output": "⠎⠳⠮⠗â â »â Ž" }, { "input": "southernmost", "output": "⠎⠳⠮⠗â â â •â Œ" }, { "input": "southerns", "output": "⠎⠳⠮⠗â â Ž" }, { "input": "southpaw", "output": "⠎⠳⠹â â â º" }, { "input": "southpaw's", "output": "⠎⠳⠹â â â ºâ „â Ž" }, { "input": "southpaws", "output": "⠎⠳⠹â â â ºâ Ž" }, { "input": "southward", "output": "⠎⠳⠹⠺⠜⠙" }, { "input": "southward's", "output": "⠎⠳⠹⠺⠜⠙⠄⠎" }, { "input": "southwards", "output": "⠎⠳⠹⠺⠜⠙⠎" }, { "input": "southwest", "output": "⠎⠳⠹⠺⠑⠌" }, { "input": "southwest's", "output": "⠎⠳⠹⠺⠑⠌⠄⠎" }, { "input": "southwester", "output": "⠎⠳⠹⠺⠑⠌⠻" }, { "input": "southwester's", "output": "⠎⠳⠹⠺⠑⠌⠻⠄⠎" }, { "input": "southwesterly", "output": "⠎⠳⠹⠺⠑⠌⠻⠇⠽" }, { "input": "southwestern", "output": "⠎⠳⠹⠺⠑⠌⠻â " }, { "input": "southwesters", "output": "⠎⠳⠹⠺⠑⠌⠻⠎" }, { "input": "southwestward", "output": "⠎⠳⠹⠺⠑⠌⠺⠜⠙" }, { "input": "souvenir", "output": "⠎⠳⠧⠢⠊⠗" }, { "input": "souvenir's", "output": "⠎⠳⠧⠢⠊⠗⠄⠎" }, { "input": "souvenirs", "output": "⠎⠳⠧⠢⠊⠗⠎" }, { "input": "sovereign", "output": "⠎⠕⠧⠻⠑⠊⠛â " }, { "input": "sovereign's", "output": "⠎⠕⠧⠻⠑⠊⠛â â „â Ž" }, { "input": "sovereigns", "output": "⠎⠕⠧⠻⠑⠊⠛â â Ž" }, { "input": "sovereignty", "output": "⠎⠕⠧⠻⠑⠊⠛â â žâ ½" }, { "input": "sovereignty's", "output": "⠎⠕⠧⠻⠑⠊⠛â â žâ ½â „â Ž" }, { "input": "soviet", "output": "â Žâ •â §â Šâ ‘â ž" }, { "input": "soviet's", "output": "â Žâ •â §â Šâ ‘â žâ „â Ž" }, { "input": "soviets", "output": "â Žâ •â §â Šâ ‘â žâ Ž" }, { "input": "sow", "output": "â Žâ ª" }, { "input": "sow's", "output": "⠎⠪⠄⠎" }, { "input": "sowed", "output": "⠎⠪⠫" }, { "input": "sower", "output": "⠎⠪⠻" }, { "input": "sower's", "output": "⠎⠪⠻⠄⠎" }, { "input": "sowers", "output": "⠎⠪⠻⠎" }, { "input": "sowing", "output": "⠎⠪⠌" }, { "input": "sown", "output": "â Žâ ªâ " }, { "input": "sows", "output": "⠎⠪⠎" }, { "input": "soy", "output": "â Žâ •â ½" }, { "input": "soy's", "output": "⠎⠕⠽⠄⠎" }, { "input": "soybean", "output": "⠎⠕⠽⠃⠂â " }, { "input": "soybean's", "output": "⠎⠕⠽⠃⠂â â „â Ž" }, { "input": "soybeans", "output": "⠎⠕⠽⠃⠂â â Ž" }, { "input": "spa", "output": "â Žâ â " }, { "input": "spa's", "output": "â Žâ â â „â Ž" }, { "input": "space", "output": "â Žâ â â ‰â ‘" }, { "input": "space's", "output": "â Žâ â â ‰â ‘â „â Ž" }, { "input": "spacecraft", "output": "â Žâ â â ‰â ‘⠉⠗â â ‹â ž" }, { "input": "spacecraft's", "output": "â Žâ â â ‰â ‘⠉⠗â â ‹â žâ „â Ž" }, { "input": "spacecrafts", "output": "â Žâ â â ‰â ‘⠉⠗â â ‹â žâ Ž" }, { "input": "spaced", "output": "â Žâ â â ‰â «" }, { "input": "spaceflight", "output": "â Žâ â â ‰â ‘⠋⠇⠊⠣⠞" }, { "input": "spaceflight's", "output": "â Žâ â â ‰â ‘⠋⠇⠊⠣⠞⠄⠎" }, { "input": "spaceflights", "output": "â Žâ â â ‰â ‘⠋⠇⠊⠣⠞⠎" }, { "input": "spaceman", "output": "â Žâ â â ‰â ‘â â â " }, { "input": "spaceman's", "output": "â Žâ â â ‰â ‘â â â â „â Ž" }, { "input": "spacemen", "output": "â Žâ â â ‰â ‘â â ¢" }, { "input": "spaceport", "output": "â Žâ â â ‰â ‘â â •â —â ž" }, { "input": "spaceport's", "output": "â Žâ â â ‰â ‘â â •â —â žâ „â Ž" }, { "input": "spaceports", "output": "â Žâ â â ‰â ‘â â •â —â žâ Ž" }, { "input": "spacer", "output": "â Žâ â â ‰â »" }, { "input": "spacer's", "output": "â Žâ â â ‰â »â „â Ž" }, { "input": "spacers", "output": "â Žâ â â ‰â »â Ž" }, { "input": "spaces", "output": "â Žâ â â ‰â ‘â Ž" }, { "input": "spaceship", "output": "â Žâ â â ‰â ‘â ©â Šâ " }, { "input": "spaceship's", "output": "â Žâ â â ‰â ‘â ©â Šâ â „â Ž" }, { "input": "spaceships", "output": "â Žâ â â ‰â ‘â ©â Šâ â Ž" }, { "input": "spacesuit", "output": "â Žâ â â ‰â ‘⠎⠥⠊⠞" }, { "input": "spacesuit's", "output": "â Žâ â â ‰â ‘⠎⠥⠊⠞⠄⠎" }, { "input": "spacesuits", "output": "â Žâ â â ‰â ‘⠎⠥⠊⠞⠎" }, { "input": "spacewalk", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …" }, { "input": "spacewalk's", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â „â Ž" }, { "input": "spacewalked", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â «" }, { "input": "spacewalking", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â Œ" }, { "input": "spacewalks", "output": "â Žâ â â ‰â ‘â ºâ â ‡â …â Ž" }, { "input": "spacey", "output": "â Žâ â â ‰â ‘â ½" }, { "input": "spacial", "output": "â Žâ â â ‰â Šâ â ‡" }, { "input": "spacier", "output": "â Žâ â â ‰â Šâ »" }, { "input": "spaciest", "output": "â Žâ â â ‰â Šâ ‘â Œ" }, { "input": "spaciness", "output": "â Žâ â â ‰â Šâ °â Ž" }, { "input": "spaciness's", "output": "â Žâ â â ‰â Šâ °â Žâ „â Ž" }, { "input": "spacing", "output": "â Žâ â â ‰â Œ" }, { "input": "spacing's", "output": "â Žâ â â ‰â Œâ „â Ž" }, { "input": "spacious", "output": "â Žâ â â ‰â Šâ ³â Ž" }, { "input": "spaciously", "output": "â Žâ â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "spaciousness", "output": "â Žâ â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "spaciousness's", "output": "â Žâ â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "spade", "output": "â Žâ â â ™â ‘" }, { "input": "spade's", "output": "â Žâ â â ™â ‘â „â Ž" }, { "input": "spaded", "output": "â Žâ â â ™â «" }, { "input": "spadeful", "output": "â Žâ â â ™â ‘â °â ‡" }, { "input": "spadeful's", "output": "â Žâ â â ™â ‘⠰⠇⠄⠎" }, { "input": "spadefuls", "output": "â Žâ â â ™â ‘⠰⠇⠎" }, { "input": "spades", "output": "â Žâ â â ™â ‘â Ž" }, { "input": "spadework", "output": "â Žâ â â ™â ‘â â º" }, { "input": "spadework's", "output": "â Žâ â â ™â ‘â â ºâ „â Ž" }, { "input": "spadices", "output": "â Žâ â â ™â Šâ ‰â ‘â Ž" }, { "input": "spading", "output": "â Žâ â â ™â Œ" }, { "input": "spadix", "output": "â Žâ â â ™â Šâ ­" }, { "input": "spadix's", "output": "â Žâ â â ™â Šâ ­â „â Ž" }, { "input": "spaghetti", "output": "â Žâ â â £â ‘â žâ žâ Š" }, { "input": "spaghetti's", "output": "â Žâ â â £â ‘â žâ žâ Šâ „â Ž" }, { "input": "spake", "output": "â Žâ â â …â ‘" }, { "input": "spammer", "output": "â Žâ â â â â »" }, { "input": "spammer's", "output": "â Žâ â â â â »â „â Ž" }, { "input": "spammers", "output": "â Žâ â â â â »â Ž" }, { "input": "span", "output": "â Žâ â â " }, { "input": "span's", "output": "â Žâ â â â „â Ž" }, { "input": "spandex", "output": "â Žâ â ¯â ‘â ­" }, { "input": "spandex's", "output": "â Žâ â ¯â ‘â ­â „â Ž" }, { "input": "spangle", "output": "â Žâ â â â ›â ‡â ‘" }, { "input": "spangle's", "output": "â Žâ â â â ›â ‡â ‘â „â Ž" }, { "input": "spangled", "output": "â Žâ â â â ›â ‡â «" }, { "input": "spangles", "output": "â Žâ â â â ›â ‡â ‘â Ž" }, { "input": "spangling", "output": "â Žâ â â â ›â ‡â Œ" }, { "input": "spaniel", "output": "â Žâ â â â Šâ ‘â ‡" }, { "input": "spaniel's", "output": "â Žâ â â â Šâ ‘⠇⠄⠎" }, { "input": "spaniels", "output": "â Žâ â â â Šâ ‘⠇⠎" }, { "input": "spank", "output": "â Žâ â â â …" }, { "input": "spank's", "output": "â Žâ â â â …â „â Ž" }, { "input": "spanked", "output": "â Žâ â â â …â «" }, { "input": "spanking", "output": "â Žâ â â â …â Œ" }, { "input": "spanking's", "output": "â Žâ â â â …⠌⠄⠎" }, { "input": "spankings", "output": "â Žâ â â â …⠌⠎" }, { "input": "spanks", "output": "â Žâ â â â …â Ž" }, { "input": "spanned", "output": "â Žâ â â â â «" }, { "input": "spanner", "output": "â Žâ â â â â »" }, { "input": "spanner's", "output": "â Žâ â â â â »â „â Ž" }, { "input": "spanners", "output": "â Žâ â â â â »â Ž" }, { "input": "spanning", "output": "â Žâ â â â â Œ" }, { "input": "spans", "output": "â Žâ â â â Ž" }, { "input": "spar", "output": "â Žâ â œ" }, { "input": "spar's", "output": "â Žâ â œâ „â Ž" }, { "input": "spare", "output": "â Žâ â œâ ‘" }, { "input": "spare's", "output": "â Žâ â œâ ‘â „â Ž" }, { "input": "spared", "output": "â Žâ â œâ «" }, { "input": "sparely", "output": "â Žâ â œâ ‘⠇⠽" }, { "input": "spareness", "output": "â Žâ â œâ ‘â °â Ž" }, { "input": "spareness's", "output": "â Žâ â œâ ‘â °â Žâ „â Ž" }, { "input": "sparer", "output": "â Žâ â œâ »" }, { "input": "spareribs", "output": "â Žâ â œâ ‘⠗⠊⠃⠎" }, { "input": "spareribs's", "output": "â Žâ â œâ ‘⠗⠊⠃⠎⠄⠎" }, { "input": "spares", "output": "â Žâ â œâ ‘â Ž" }, { "input": "sparest", "output": "â Žâ â œâ ‘â Œ" }, { "input": "sparing", "output": "â Žâ â œâ Œ" }, { "input": "sparingly", "output": "â Žâ â œâ Œâ ‡â ½" }, { "input": "spark", "output": "â Žâ â œâ …" }, { "input": "spark's", "output": "â Žâ â œâ …â „â Ž" }, { "input": "sparked", "output": "â Žâ â œâ …â «" }, { "input": "sparking", "output": "â Žâ â œâ …â Œ" }, { "input": "sparkle", "output": "â Žâ â œâ …⠇⠑" }, { "input": "sparkle's", "output": "â Žâ â œâ …⠇⠑⠄⠎" }, { "input": "sparkled", "output": "â Žâ â œâ …⠇⠫" }, { "input": "sparkler", "output": "â Žâ â œâ …⠇⠻" }, { "input": "sparkler's", "output": "â Žâ â œâ …⠇⠻⠄⠎" }, { "input": "sparklers", "output": "â Žâ â œâ …⠇⠻⠎" }, { "input": "sparkles", "output": "â Žâ â œâ …⠇⠑⠎" }, { "input": "sparkling", "output": "â Žâ â œâ …⠇⠌" }, { "input": "sparks", "output": "â Žâ â œâ …â Ž" }, { "input": "sparred", "output": "â Žâ â œâ —â «" }, { "input": "sparring", "output": "â Žâ â œâ —â Œ" }, { "input": "sparrow", "output": "â Žâ â œâ —â ª" }, { "input": "sparrow's", "output": "â Žâ â œâ —⠪⠄⠎" }, { "input": "sparrows", "output": "â Žâ â œâ —⠪⠎" }, { "input": "spars", "output": "â Žâ â œâ Ž" }, { "input": "sparse", "output": "â Žâ â œâ Žâ ‘" }, { "input": "sparsely", "output": "â Žâ â œâ Žâ ‘⠇⠽" }, { "input": "sparseness", "output": "â Žâ â œâ Žâ ‘â °â Ž" }, { "input": "sparseness's", "output": "â Žâ â œâ Žâ ‘â °â Žâ „â Ž" }, { "input": "sparser", "output": "â Žâ â œâ Žâ »" }, { "input": "sparsest", "output": "â Žâ â œâ Žâ ‘â Œ" }, { "input": "sparsity", "output": "â Žâ â œâ Žâ °â ½" }, { "input": "sparsity's", "output": "â Žâ â œâ Žâ °â ½â „â Ž" }, { "input": "spartan", "output": "â Žâ â â â " }, { "input": "spas", "output": "â Žâ â â Ž" }, { "input": "spasm", "output": "â Žâ â â Žâ " }, { "input": "spasm's", "output": "â Žâ â â Žâ â „â Ž" }, { "input": "spasmodic", "output": "â Žâ â â Žâ â •⠙⠊⠉" }, { "input": "spasmodically", "output": "â Žâ â â Žâ â •⠙⠊⠉⠠⠽" }, { "input": "spasms", "output": "â Žâ â â Žâ â Ž" }, { "input": "spastic", "output": "â Žâ â â Œâ Šâ ‰" }, { "input": "spastic's", "output": "â Žâ â â Œâ Šâ ‰â „â Ž" }, { "input": "spastics", "output": "â Žâ â â Œâ Šâ ‰â Ž" }, { "input": "spat", "output": "â Žâ â â ž" }, { "input": "spat's", "output": "â Žâ â â žâ „â Ž" }, { "input": "spate", "output": "â Žâ â â žâ ‘" }, { "input": "spate's", "output": "â Žâ â â žâ ‘â „â Ž" }, { "input": "spates", "output": "â Žâ â â žâ ‘â Ž" }, { "input": "spathe", "output": "â Žâ â â ®" }, { "input": "spathe's", "output": "â Žâ â â ®â „â Ž" }, { "input": "spathes", "output": "â Žâ â â ®â Ž" }, { "input": "spatial", "output": "â Žâ â â žâ Šâ â ‡" }, { "input": "spatially", "output": "â Žâ â â žâ Šâ  â ½" }, { "input": "spats", "output": "â Žâ â â žâ Ž" }, { "input": "spatted", "output": "â Žâ â â žâ žâ «" }, { "input": "spatter", "output": "â Žâ â â žâ žâ »" }, { "input": "spatter's", "output": "â Žâ â â žâ žâ »â „â Ž" }, { "input": "spattered", "output": "â Žâ â â žâ žâ »â «" }, { "input": "spattering", "output": "â Žâ â â žâ žâ »â Œ" }, { "input": "spatters", "output": "â Žâ â â žâ žâ »â Ž" }, { "input": "spatting", "output": "â Žâ â â žâ žâ Œ" }, { "input": "spatula", "output": "â Žâ â â žâ ¥â ‡â " }, { "input": "spatula's", "output": "â Žâ â â žâ ¥â ‡â â „â Ž" }, { "input": "spatulas", "output": "â Žâ â â žâ ¥â ‡â â Ž" }, { "input": "spavin", "output": "â Žâ â â §â ”" }, { "input": "spavin's", "output": "â Žâ â â §â ”â „â Ž" }, { "input": "spavined", "output": "â Žâ â â §â ”â «" }, { "input": "spawn", "output": "â Žâ â â ºâ " }, { "input": "spawn's", "output": "â Žâ â â ºâ â „â Ž" }, { "input": "spawned", "output": "â Žâ â â ºâ â «" }, { "input": "spawning", "output": "â Žâ â â ºâ â Œ" }, { "input": "spawns", "output": "â Žâ â â ºâ â Ž" }, { "input": "spay", "output": "â Žâ â â ½" }, { "input": "spayed", "output": "â Žâ â â ½â «" }, { "input": "spaying", "output": "â Žâ â â ½â Œ" }, { "input": "spays", "output": "â Žâ â â ½â Ž" }, { "input": "speak", "output": "â Žâ â ‚â …" }, { "input": "speakeasies", "output": "â Žâ â ‚â …â ‘â â Žâ Šâ ‘â Ž" }, { "input": "speakeasy", "output": "â Žâ â ‚â …â ‘â â Žâ ½" }, { "input": "speakeasy's", "output": "â Žâ â ‚â …â ‘â â Žâ ½â „â Ž" }, { "input": "speaker", "output": "â Žâ â ‚â …â »" }, { "input": "speaker's", "output": "â Žâ â ‚⠅⠻⠄⠎" }, { "input": "speakers", "output": "â Žâ â ‚⠅⠻⠎" }, { "input": "speaking", "output": "â Žâ â ‚â …â Œ" }, { "input": "speakings", "output": "â Žâ â ‚⠅⠌⠎" }, { "input": "speaks", "output": "â Žâ â ‚â …â Ž" }, { "input": "spear", "output": "â Žâ â ‘â œ" }, { "input": "spear's", "output": "â Žâ â ‘⠜⠄⠎" }, { "input": "speared", "output": "â Žâ â ‘⠜⠫" }, { "input": "spearfish", "output": "â Žâ â ‘⠜⠋⠊⠩" }, { "input": "spearfish's", "output": "â Žâ â ‘⠜⠋⠊⠩⠄⠎" }, { "input": "spearfished", "output": "â Žâ â ‘⠜⠋⠊⠩⠫" }, { "input": "spearfishes", "output": "â Žâ â ‘⠜⠋⠊⠩⠑⠎" }, { "input": "spearfishing", "output": "â Žâ â ‘⠜⠋⠊⠩⠌" }, { "input": "spearhead", "output": "â Žâ â ‘⠜⠓⠂⠙" }, { "input": "spearhead's", "output": "â Žâ â ‘⠜⠓⠂⠙⠄⠎" }, { "input": "spearheaded", "output": "â Žâ â ‘⠜⠓⠂⠙⠫" }, { "input": "spearheading", "output": "â Žâ â ‘⠜⠓⠂⠙⠌" }, { "input": "spearheads", "output": "â Žâ â ‘⠜⠓⠂⠙⠎" }, { "input": "spearing", "output": "â Žâ â ‘⠜⠌" }, { "input": "spearmint", "output": "â Žâ â ‘â œâ â ”â ž" }, { "input": "spearmint's", "output": "â Žâ â ‘â œâ â ”â žâ „â Ž" }, { "input": "spears", "output": "â Žâ â ‘⠜⠎" }, { "input": "spec", "output": "â Žâ â ‘â ‰" }, { "input": "spec's", "output": "â Žâ â ‘⠉⠄⠎" }, { "input": "special", "output": "â Žâ â ‘⠉⠊â â ‡" }, { "input": "special's", "output": "â Žâ â ‘⠉⠊â â ‡â „â Ž" }, { "input": "specialist", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ Œ" }, { "input": "specialist's", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ Œâ „â Ž" }, { "input": "specialists", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ Œâ Ž" }, { "input": "specialization", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ  â " }, { "input": "specialization's", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ  â â „â Ž" }, { "input": "specializations", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ  â â Ž" }, { "input": "specialize", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ ‘" }, { "input": "specialized", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ «" }, { "input": "specializes", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ ‘â Ž" }, { "input": "specializing", "output": "â Žâ â ‘⠉⠊â â ‡â Šâ µâ Œ" }, { "input": "specially", "output": "â Žâ â ‘⠉⠊⠠⠽" }, { "input": "specials", "output": "â Žâ â ‘⠉⠊â â ‡â Ž" }, { "input": "specialties", "output": "â Žâ â ‘⠉⠊â â ‡â žâ Šâ ‘â Ž" }, { "input": "specialty", "output": "â Žâ â ‘⠉⠊â â ‡â žâ ½" }, { "input": "specialty's", "output": "â Žâ â ‘⠉⠊â â ‡â žâ ½â „â Ž" }, { "input": "specie", "output": "â Žâ â ‘⠉⠊⠑" }, { "input": "specie's", "output": "â Žâ â ‘⠉⠊⠑⠄⠎" }, { "input": "species", "output": "â Žâ â ‘⠉⠊⠑⠎" }, { "input": "species's", "output": "â Žâ â ‘⠉⠊⠑⠎⠄⠎" }, { "input": "specifiable", "output": "â Žâ â ‘⠉⠊⠋⠊â â ¼" }, { "input": "specific", "output": "â Žâ â ‘⠉⠊⠋⠊⠉" }, { "input": "specific's", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠄⠎" }, { "input": "specifically", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠠⠽" }, { "input": "specification", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠠â " }, { "input": "specification's", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "specifications", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠠â â Ž" }, { "input": "specificity's", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠰⠽⠄⠎" }, { "input": "specifics", "output": "â Žâ â ‘⠉⠊⠋⠊⠉⠎" }, { "input": "specified", "output": "â Žâ â ‘⠉⠊⠋⠊⠫" }, { "input": "specifier", "output": "â Žâ â ‘⠉⠊⠋⠊⠻" }, { "input": "specifiers", "output": "â Žâ â ‘⠉⠊⠋⠊⠻⠎" }, { "input": "specifies", "output": "â Žâ â ‘⠉⠊⠋⠊⠑⠎" }, { "input": "specify", "output": "â Žâ â ‘⠉⠊⠋⠽" }, { "input": "specifying", "output": "â Žâ â ‘⠉⠊⠋⠽⠌" }, { "input": "specimen", "output": "â Žâ â ‘⠉⠊â â ¢" }, { "input": "specimen's", "output": "â Žâ â ‘⠉⠊â â ¢â „â Ž" }, { "input": "specimens", "output": "â Žâ â ‘⠉⠊â â ¢â Ž" }, { "input": "specious", "output": "â Žâ â ‘⠉⠊⠳⠎" }, { "input": "speciously", "output": "â Žâ â ‘⠉⠊⠳⠎⠇⠽" }, { "input": "speciousness's", "output": "â Žâ â ‘⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "speck", "output": "â Žâ â ‘⠉⠅" }, { "input": "speck's", "output": "â Žâ â ‘⠉⠅⠄⠎" }, { "input": "specked", "output": "â Žâ â ‘⠉⠅⠫" }, { "input": "specking", "output": "â Žâ â ‘⠉⠅⠌" }, { "input": "speckle", "output": "â Žâ â ‘⠉⠅⠇⠑" }, { "input": "speckle's", "output": "â Žâ â ‘⠉⠅⠇⠑⠄⠎" }, { "input": "speckled", "output": "â Žâ â ‘⠉⠅⠇⠫" }, { "input": "speckles", "output": "â Žâ â ‘⠉⠅⠇⠑⠎" }, { "input": "speckling", "output": "â Žâ â ‘⠉⠅⠇⠌" }, { "input": "specks", "output": "â Žâ â ‘⠉⠅⠎" }, { "input": "specs", "output": "â Žâ â ‘⠉⠎" }, { "input": "specs's", "output": "â Žâ â ‘⠉⠎⠄⠎" }, { "input": "spectacle", "output": "â Žâ â ‘⠉⠞â â ‰â ‡â ‘" }, { "input": "spectacle's", "output": "â Žâ â ‘⠉⠞â â ‰â ‡â ‘â „â Ž" }, { "input": "spectacles", "output": "â Žâ â ‘⠉⠞â â ‰â ‡â ‘â Ž" }, { "input": "spectacles's", "output": "â Žâ â ‘⠉⠞â â ‰â ‡â ‘â Žâ „â Ž" }, { "input": "spectacular", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œ" }, { "input": "spectacular's", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œâ „â Ž" }, { "input": "spectacularly", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œâ ‡â ½" }, { "input": "spectaculars", "output": "â Žâ â ‘⠉⠞â â ‰â ¥â ‡â œâ Ž" }, { "input": "spectator", "output": "â Žâ â ‘⠉⠞â â žâ •â —" }, { "input": "spectator's", "output": "â Žâ â ‘⠉⠞â â žâ •â —â „â Ž" }, { "input": "spectators", "output": "â Žâ â ‘⠉⠞â â žâ •â —â Ž" }, { "input": "specter", "output": "â Žâ â ‘⠉⠞⠻" }, { "input": "specter's", "output": "â Žâ â ‘⠉⠞⠻⠄⠎" }, { "input": "specters", "output": "â Žâ â ‘⠉⠞⠻⠎" }, { "input": "spectra", "output": "â Žâ â ‘⠉⠞⠗â " }, { "input": "spectral", "output": "â Žâ â ‘⠉⠞⠗â â ‡" }, { "input": "spectrometer", "output": "â Žâ â ‘⠉⠞⠗⠕â â ‘â žâ »" }, { "input": "spectrometer's", "output": "â Žâ â ‘⠉⠞⠗⠕â â ‘⠞⠻⠄⠎" }, { "input": "spectrometers", "output": "â Žâ â ‘⠉⠞⠗⠕â â ‘⠞⠻⠎" }, { "input": "spectroscope", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ‘" }, { "input": "spectroscope's", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "spectroscopes", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ‘â Ž" }, { "input": "spectroscopic", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â Šâ ‰" }, { "input": "spectroscopy", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ½" }, { "input": "spectroscopy's", "output": "â Žâ â ‘⠉⠞⠗⠕⠎⠉⠕â â ½â „â Ž" }, { "input": "spectrum", "output": "â Žâ â ‘⠉⠞⠗⠥â " }, { "input": "spectrum's", "output": "â Žâ â ‘⠉⠞⠗⠥â â „â Ž" }, { "input": "speculate", "output": "â Žâ â ‘⠉⠥⠇â â žâ ‘" }, { "input": "speculated", "output": "â Žâ â ‘⠉⠥⠇â â žâ «" }, { "input": "speculates", "output": "â Žâ â ‘⠉⠥⠇â â žâ ‘â Ž" }, { "input": "speculating", "output": "â Žâ â ‘⠉⠥⠇â â žâ Œ" }, { "input": "speculation", "output": "â Žâ â ‘⠉⠥⠇⠠â " }, { "input": "speculation's", "output": "â Žâ â ‘⠉⠥⠇⠠â â „â Ž" }, { "input": "speculations", "output": "â Žâ â ‘⠉⠥⠇⠠â â Ž" }, { "input": "speculative", "output": "â Žâ â ‘⠉⠥⠇â â žâ Šâ §â ‘" }, { "input": "speculator", "output": "â Žâ â ‘⠉⠥⠇â â žâ •â —" }, { "input": "speculator's", "output": "â Žâ â ‘⠉⠥⠇â â žâ •â —â „â Ž" }, { "input": "speculators", "output": "â Žâ â ‘⠉⠥⠇â â žâ •â —â Ž" }, { "input": "sped", "output": "â Žâ â «" }, { "input": "speech", "output": "â Žâ â ‘â ‘â ¡" }, { "input": "speech's", "output": "â Žâ â ‘â ‘â ¡â „â Ž" }, { "input": "speeches", "output": "â Žâ â ‘â ‘â ¡â ‘â Ž" }, { "input": "speechless", "output": "â Žâ â ‘⠑⠡⠨⠎" }, { "input": "speechlessness's", "output": "â Žâ â ‘⠑⠡⠨⠎⠰⠎⠄⠎" }, { "input": "speed", "output": "â Žâ â ‘â «" }, { "input": "speed's", "output": "â Žâ â ‘â «â „â Ž" }, { "input": "speedboat", "output": "â Žâ â ‘⠫⠃⠕â â ž" }, { "input": "speedboat's", "output": "â Žâ â ‘⠫⠃⠕â â žâ „â Ž" }, { "input": "speedboats", "output": "â Žâ â ‘⠫⠃⠕â â žâ Ž" }, { "input": "speeder", "output": "â Žâ â ‘â «â »" }, { "input": "speeder's", "output": "â Žâ â ‘⠫⠻⠄⠎" }, { "input": "speeders", "output": "â Žâ â ‘⠫⠻⠎" }, { "input": "speedier", "output": "â Žâ â ‘â «â Šâ »" }, { "input": "speediest", "output": "â Žâ â ‘â «â Šâ ‘â Œ" }, { "input": "speedily", "output": "â Žâ â ‘⠫⠊⠇⠽" }, { "input": "speediness's", "output": "â Žâ â ‘â «â Šâ °â Žâ „â Ž" }, { "input": "speeding", "output": "â Žâ â ‘â «â Œ" }, { "input": "speeding's", "output": "â Žâ â ‘⠫⠌⠄⠎" }, { "input": "speedometer", "output": "â Žâ â ‘â «â •â â ‘â žâ »" }, { "input": "speedometer's", "output": "â Žâ â ‘â «â •â â ‘⠞⠻⠄⠎" }, { "input": "speedometers", "output": "â Žâ â ‘â «â •â â ‘⠞⠻⠎" }, { "input": "speeds", "output": "â Žâ â ‘â «â Ž" }, { "input": "speedster", "output": "â Žâ â ‘⠫⠌⠻" }, { "input": "speedster's", "output": "â Žâ â ‘⠫⠌⠻⠄⠎" }, { "input": "speedsters", "output": "â Žâ â ‘⠫⠌⠻⠎" }, { "input": "speedup", "output": "â Žâ â ‘â «â ¥â " }, { "input": "speedup's", "output": "â Žâ â ‘â «â ¥â â „â Ž" }, { "input": "speedups", "output": "â Žâ â ‘â «â ¥â â Ž" }, { "input": "speedway", "output": "â Žâ â ‘â «â ºâ â ½" }, { "input": "speedway's", "output": "â Žâ â ‘â «â ºâ â ½â „â Ž" }, { "input": "speedways", "output": "â Žâ â ‘â «â ºâ â ½â Ž" }, { "input": "speedwell", "output": "â Žâ â ‘⠫⠺⠑⠇⠇" }, { "input": "speedwell's", "output": "â Žâ â ‘⠫⠺⠑⠇⠇⠄⠎" }, { "input": "speedy", "output": "â Žâ â ‘â «â ½" }, { "input": "speleology's", "output": "â Žâ â ‘⠇⠑⠕⠇⠕⠛⠽⠄⠎" }, { "input": "spell", "output": "â Žâ â ‘⠇⠇" }, { "input": "spell's", "output": "â Žâ â ‘⠇⠇⠄⠎" }, { "input": "spellbind", "output": "â Žâ â ‘⠇⠇⠃⠔⠙" }, { "input": "spellbinder", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠻" }, { "input": "spellbinder's", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠻⠄⠎" }, { "input": "spellbinders", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠻⠎" }, { "input": "spellbinding", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠌" }, { "input": "spellbinds", "output": "â Žâ â ‘⠇⠇⠃⠔⠙⠎" }, { "input": "spellbound", "output": "â Žâ â ‘⠇⠇⠃⠨⠙" }, { "input": "spelldown", "output": "â Žâ â ‘⠇⠇⠙⠪â " }, { "input": "spelldown's", "output": "â Žâ â ‘⠇⠇⠙⠪â â „â Ž" }, { "input": "spelldowns", "output": "â Žâ â ‘⠇⠇⠙⠪â â Ž" }, { "input": "spelled", "output": "â Žâ â ‘⠇⠇⠫" }, { "input": "speller", "output": "â Žâ â ‘⠇⠇⠻" }, { "input": "speller's", "output": "â Žâ â ‘⠇⠇⠻⠄⠎" }, { "input": "spellers", "output": "â Žâ â ‘⠇⠇⠻⠎" }, { "input": "spelling", "output": "â Žâ â ‘⠇⠇⠌" }, { "input": "spelling's", "output": "â Žâ â ‘⠇⠇⠌⠄⠎" }, { "input": "spellings", "output": "â Žâ â ‘⠇⠇⠌⠎" }, { "input": "spells", "output": "â Žâ â ‘⠇⠇⠎" }, { "input": "spelunker", "output": "â Žâ â ‘⠇⠥â â …â »" }, { "input": "spelunker's", "output": "â Žâ â ‘⠇⠥â â …⠻⠄⠎" }, { "input": "spelunkers", "output": "â Žâ â ‘⠇⠥â â …⠻⠎" }, { "input": "spelunking's", "output": "â Žâ â ‘⠇⠥â â …⠌⠄⠎" }, { "input": "spend", "output": "â Žâ â ¢â ™" }, { "input": "spendable", "output": "â Žâ â ¢â ™â â ¼" }, { "input": "spender", "output": "â Žâ â ¢â ™â »" }, { "input": "spender's", "output": "â Žâ â ¢â ™â »â „â Ž" }, { "input": "spenders", "output": "â Žâ â ¢â ™â »â Ž" }, { "input": "spending", "output": "â Žâ â ¢â ™â Œ" }, { "input": "spending's", "output": "â Žâ â ¢â ™â Œâ „â Ž" }, { "input": "spends", "output": "â Žâ â ¢â ™â Ž" }, { "input": "spendthrift", "output": "â Žâ â ¢â ™â ¹â —â Šâ ‹â ž" }, { "input": "spendthrift's", "output": "â Žâ â ¢â ™â ¹â —â Šâ ‹â žâ „â Ž" }, { "input": "spendthrifts", "output": "â Žâ â ¢â ™â ¹â —â Šâ ‹â žâ Ž" }, { "input": "spent", "output": "â Žâ â ¢â ž" }, { "input": "sperm", "output": "â Žâ â »â " }, { "input": "sperm's", "output": "â Žâ â »â â „â Ž" }, { "input": "spermatozoa", "output": "â Žâ â »â â â žâ •⠵⠕â " }, { "input": "spermatozoon", "output": "â Žâ â »â â â žâ •⠵⠕⠕â " }, { "input": "spermatozoon's", "output": "â Žâ â »â â â žâ •⠵⠕⠕â â „â Ž" }, { "input": "spermicide", "output": "â Žâ â »â â Šâ ‰â Šâ ™â ‘" }, { "input": "spermicide's", "output": "â Žâ â »â â Šâ ‰â Šâ ™â ‘â „â Ž" }, { "input": "spermicides", "output": "â Žâ â »â â Šâ ‰â Šâ ™â ‘â Ž" }, { "input": "sperms", "output": "â Žâ â »â â Ž" }, { "input": "spew", "output": "â Žâ â ‘â º" }, { "input": "spew's", "output": "â Žâ â ‘⠺⠄⠎" }, { "input": "spewed", "output": "â Žâ â ‘⠺⠫" }, { "input": "spewer", "output": "â Žâ â ‘⠺⠻" }, { "input": "spewer's", "output": "â Žâ â ‘⠺⠻⠄⠎" }, { "input": "spewers", "output": "â Žâ â ‘⠺⠻⠎" }, { "input": "spewing", "output": "â Žâ â ‘⠺⠌" }, { "input": "spews", "output": "â Žâ â ‘⠺⠎" }, { "input": "sphagnum's", "output": "â Žâ â “â â ›â â ¥â â „â Ž" }, { "input": "sphagnums", "output": "â Žâ â “â â ›â â ¥â â Ž" }, { "input": "sphere", "output": "â Žâ â “⠻⠑" }, { "input": "sphere's", "output": "â Žâ â “⠻⠑⠄⠎" }, { "input": "spheres", "output": "â Žâ â “⠻⠑⠎" }, { "input": "spherical", "output": "â Žâ â “⠻⠊⠉â â ‡" }, { "input": "spherically", "output": "â Žâ â “⠻⠊⠉⠠⠽" }, { "input": "spheroid", "output": "â Žâ â “⠻⠕⠊⠙" }, { "input": "spheroid's", "output": "â Žâ â “⠻⠕⠊⠙⠄⠎" }, { "input": "spheroidal", "output": "â Žâ â “⠻⠕⠊⠙â â ‡" }, { "input": "spheroids", "output": "â Žâ â “⠻⠕⠊⠙⠎" }, { "input": "sphincter", "output": "â Žâ â “⠔⠉⠞⠻" }, { "input": "sphincter's", "output": "â Žâ â “⠔⠉⠞⠻⠄⠎" }, { "input": "sphincters", "output": "â Žâ â “⠔⠉⠞⠻⠎" }, { "input": "sphinx", "output": "â Žâ â “⠔⠭" }, { "input": "sphinx's", "output": "â Žâ â “⠔⠭⠄⠎" }, { "input": "sphinxes", "output": "â Žâ â “⠔⠭⠑⠎" }, { "input": "spice", "output": "â Žâ â Šâ ‰â ‘" }, { "input": "spice's", "output": "â Žâ â Šâ ‰â ‘â „â Ž" }, { "input": "spiced", "output": "â Žâ â Šâ ‰â «" }, { "input": "spices", "output": "â Žâ â Šâ ‰â ‘â Ž" }, { "input": "spicier", "output": "â Žâ â Šâ ‰â Šâ »" }, { "input": "spiciest", "output": "â Žâ â Šâ ‰â Šâ ‘â Œ" }, { "input": "spicily", "output": "â Žâ â Šâ ‰â Šâ ‡â ½" }, { "input": "spiciness", "output": "â Žâ â Šâ ‰â Šâ °â Ž" }, { "input": "spiciness's", "output": "â Žâ â Šâ ‰â Šâ °â Žâ „â Ž" }, { "input": "spicing", "output": "â Žâ â Šâ ‰â Œ" }, { "input": "spicule", "output": "â Žâ â Šâ ‰â ¥â ‡â ‘" }, { "input": "spicule's", "output": "â Žâ â Šâ ‰â ¥â ‡â ‘â „â Ž" }, { "input": "spicules", "output": "â Žâ â Šâ ‰â ¥â ‡â ‘â Ž" }, { "input": "spicy", "output": "â Žâ â Šâ ‰â ½" }, { "input": "spider", "output": "â Žâ â Šâ ™â »" }, { "input": "spider's", "output": "â Žâ â Šâ ™â »â „â Ž" }, { "input": "spiderier", "output": "â Žâ â Šâ ™â »â Šâ »" }, { "input": "spideriest", "output": "â Žâ â Šâ ™â »â Šâ ‘â Œ" }, { "input": "spiders", "output": "â Žâ â Šâ ™â »â Ž" }, { "input": "spidery", "output": "â Žâ â Šâ ™â »â ½" }, { "input": "spied", "output": "â Žâ â Šâ «" }, { "input": "spiel", "output": "â Žâ â Šâ ‘â ‡" }, { "input": "spiel's", "output": "â Žâ â Šâ ‘⠇⠄⠎" }, { "input": "spieled", "output": "â Žâ â Šâ ‘⠇⠫" }, { "input": "spieling", "output": "â Žâ â Šâ ‘⠇⠌" }, { "input": "spiels", "output": "â Žâ â Šâ ‘⠇⠎" }, { "input": "spies", "output": "â Žâ â Šâ ‘â Ž" }, { "input": "spiffier", "output": "â Žâ â Šâ –â Šâ »" }, { "input": "spiffiest", "output": "â Žâ â Šâ –â Šâ ‘â Œ" }, { "input": "spiffy", "output": "â Žâ â Šâ –â ½" }, { "input": "spigot", "output": "â Žâ â Šâ ›â •â ž" }, { "input": "spigot's", "output": "â Žâ â Šâ ›â •â žâ „â Ž" }, { "input": "spigots", "output": "â Žâ â Šâ ›â •â žâ Ž" }, { "input": "spike", "output": "â Žâ â Šâ …â ‘" }, { "input": "spike's", "output": "â Žâ â Šâ …â ‘â „â Ž" }, { "input": "spiked", "output": "â Žâ â Šâ …â «" }, { "input": "spikes", "output": "â Žâ â Šâ …â ‘â Ž" }, { "input": "spikier", "output": "â Žâ â Šâ …â Šâ »" }, { "input": "spikiest", "output": "â Žâ â Šâ …â Šâ ‘â Œ" }, { "input": "spikiness's", "output": "â Žâ â Šâ …â Šâ °â Žâ „â Ž" }, { "input": "spiking", "output": "â Žâ â Šâ …â Œ" }, { "input": "spiky", "output": "â Žâ â Šâ …â ½" }, { "input": "spill", "output": "â Žâ â Šâ ‡â ‡" }, { "input": "spill's", "output": "â Žâ â Šâ ‡â ‡â „â Ž" }, { "input": "spillage", "output": "â Žâ â Šâ ‡â ‡â â ›â ‘" }, { "input": "spillage's", "output": "â Žâ â Šâ ‡â ‡â â ›â ‘â „â Ž" }, { "input": "spillages", "output": "â Žâ â Šâ ‡â ‡â â ›â ‘â Ž" }, { "input": "spilled", "output": "â Žâ â Šâ ‡â ‡â «" }, { "input": "spilling", "output": "â Žâ â Šâ ‡â ‡â Œ" }, { "input": "spills", "output": "â Žâ â Šâ ‡â ‡â Ž" }, { "input": "spillway", "output": "â Žâ â Šâ ‡â ‡â ºâ â ½" }, { "input": "spillway's", "output": "â Žâ â Šâ ‡â ‡â ºâ â ½â „â Ž" }, { "input": "spillways", "output": "â Žâ â Šâ ‡â ‡â ºâ â ½â Ž" }, { "input": "spin", "output": "â Žâ â ”" }, { "input": "spin's", "output": "â Žâ â ”â „â Ž" }, { "input": "spinach", "output": "â Žâ â ”â â ¡" }, { "input": "spinach's", "output": "â Žâ â ”â â ¡â „â Ž" }, { "input": "spinal", "output": "â Žâ â ”â â ‡" }, { "input": "spinal's", "output": "â Žâ â ”â â ‡â „â Ž" }, { "input": "spinally", "output": "â Žâ â ”â  â ½" }, { "input": "spinals", "output": "â Žâ â ”â â ‡â Ž" }, { "input": "spindle", "output": "â Žâ â ”⠙⠇⠑" }, { "input": "spindle's", "output": "â Žâ â ”⠙⠇⠑⠄⠎" }, { "input": "spindled", "output": "â Žâ â ”⠙⠇⠫" }, { "input": "spindles", "output": "â Žâ â ”⠙⠇⠑⠎" }, { "input": "spindlier", "output": "â Žâ â ”⠙⠇⠊⠻" }, { "input": "spindliest", "output": "â Žâ â ”⠙⠇⠊⠑⠌" }, { "input": "spindling", "output": "â Žâ â ”⠙⠇⠌" }, { "input": "spindly", "output": "â Žâ â ”⠙⠇⠽" }, { "input": "spine", "output": "â Žâ â ”â ‘" }, { "input": "spine's", "output": "â Žâ â ”â ‘â „â Ž" }, { "input": "spineless", "output": "â Žâ â ”⠑⠨⠎" }, { "input": "spines", "output": "â Žâ â ”â ‘â Ž" }, { "input": "spinet", "output": "â Žâ â ”â ‘â ž" }, { "input": "spinet's", "output": "â Žâ â ”â ‘â žâ „â Ž" }, { "input": "spinets", "output": "â Žâ â ”â ‘â žâ Ž" }, { "input": "spinier", "output": "â Žâ â ”â Šâ »" }, { "input": "spiniest", "output": "â Žâ â ”â Šâ ‘â Œ" }, { "input": "spinnaker", "output": "â Žâ â ”â â â …â »" }, { "input": "spinnaker's", "output": "â Žâ â ”â â â …⠻⠄⠎" }, { "input": "spinnakers", "output": "â Žâ â ”â â â …⠻⠎" }, { "input": "spinner", "output": "â Žâ â ”â â »" }, { "input": "spinner's", "output": "â Žâ â ”â â »â „â Ž" }, { "input": "spinneret", "output": "â Žâ â ”â â »â ‘â ž" }, { "input": "spinneret's", "output": "â Žâ â ”â â »â ‘â žâ „â Ž" }, { "input": "spinnerets", "output": "â Žâ â ”â â »â ‘â žâ Ž" }, { "input": "spinners", "output": "â Žâ â ”â â »â Ž" }, { "input": "spinning", "output": "â Žâ â ”â â Œ" }, { "input": "spinning's", "output": "â Žâ â ”â â Œâ „â Ž" }, { "input": "spins", "output": "â Žâ â ”â Ž" }, { "input": "spinster", "output": "â Žâ â ”⠌⠻" }, { "input": "spinster's", "output": "â Žâ â ”⠌⠻⠄⠎" }, { "input": "spinsterhood", "output": "â Žâ â ”⠌⠻⠓⠕⠕⠙" }, { "input": "spinsterhood's", "output": "â Žâ â ”⠌⠻⠓⠕⠕⠙⠄⠎" }, { "input": "spinsterish", "output": "â Žâ â ”⠌⠻⠊⠩" }, { "input": "spinsters", "output": "â Žâ â ”⠌⠻⠎" }, { "input": "spiny", "output": "â Žâ â ”â ½" }, { "input": "spiracle", "output": "â Žâ â Šâ —â â ‰â ‡â ‘" }, { "input": "spiracle's", "output": "â Žâ â Šâ —â â ‰â ‡â ‘â „â Ž" }, { "input": "spiracles", "output": "â Žâ â Šâ —â â ‰â ‡â ‘â Ž" }, { "input": "spiral", "output": "â Žâ â Šâ —â â ‡" }, { "input": "spiral's", "output": "â Žâ â Šâ —â â ‡â „â Ž" }, { "input": "spiraled", "output": "â Žâ â Šâ —â â ‡â «" }, { "input": "spiraling", "output": "â Žâ â Šâ —â â ‡â Œ" }, { "input": "spirally", "output": "â Žâ â Šâ —â  â ½" }, { "input": "spirals", "output": "â Žâ â Šâ —â â ‡â Ž" }, { "input": "spire", "output": "â Žâ â Šâ —â ‘" }, { "input": "spire's", "output": "â Žâ â Šâ —â ‘â „â Ž" }, { "input": "spirea", "output": "â Žâ â Šâ —â ‘â " }, { "input": "spirea's", "output": "â Žâ â Šâ —â ‘â â „â Ž" }, { "input": "spireas", "output": "â Žâ â Šâ —â ‚â Ž" }, { "input": "spires", "output": "â Žâ â Šâ —â ‘â Ž" }, { "input": "spirit", "output": "⠸⠎" }, { "input": "spirit's", "output": "⠸⠎⠄⠎" }, { "input": "spirited", "output": "⠸⠎⠫" }, { "input": "spiriting", "output": "⠸⠎⠌" }, { "input": "spiritless", "output": "⠸⠎⠨⠎" }, { "input": "spirits", "output": "⠸⠎⠎" }, { "input": "spiritual", "output": "⠸⠎⠥â â ‡" }, { "input": "spiritual's", "output": "⠸⠎⠥â â ‡â „â Ž" }, { "input": "spiritualism", "output": "⠸⠎⠥â â ‡â Šâ Žâ " }, { "input": "spiritualism's", "output": "⠸⠎⠥â â ‡â Šâ Žâ â „â Ž" }, { "input": "spiritualist", "output": "⠸⠎⠥â â ‡â Šâ Œ" }, { "input": "spiritualist's", "output": "⠸⠎⠥â â ‡â Šâ Œâ „â Ž" }, { "input": "spiritualistic", "output": "⠸⠎⠥â â ‡â Šâ Œâ Šâ ‰" }, { "input": "spiritualists", "output": "⠸⠎⠥â â ‡â Šâ Œâ Ž" }, { "input": "spirituality", "output": "⠸⠎⠥â â ‡â °â ½" }, { "input": "spirituality's", "output": "⠸⠎⠥â â ‡â °â ½â „â Ž" }, { "input": "spiritually", "output": "⠸⠎⠥⠠⠽" }, { "input": "spirituals", "output": "⠸⠎⠥â â ‡â Ž" }, { "input": "spirituous", "output": "⠸⠎⠥⠳⠎" }, { "input": "spirochete", "output": "â Žâ â Šâ —â •â ¡â ‘â žâ ‘" }, { "input": "spirochete's", "output": "â Žâ â Šâ —â •â ¡â ‘â žâ ‘â „â Ž" }, { "input": "spirochetes", "output": "â Žâ â Šâ —â •â ¡â ‘â žâ ‘â Ž" }, { "input": "spiry", "output": "â Žâ â Šâ —â ½" }, { "input": "spit", "output": "â Žâ â Šâ ž" }, { "input": "spit's", "output": "â Žâ â Šâ žâ „â Ž" }, { "input": "spitball", "output": "â Žâ â Šâ žâ ƒâ â ‡â ‡" }, { "input": "spitball's", "output": "â Žâ â Šâ žâ ƒâ â ‡â ‡â „â Ž" }, { "input": "spitballs", "output": "â Žâ â Šâ žâ ƒâ â ‡â ‡â Ž" }, { "input": "spite", "output": "â Žâ â Šâ žâ ‘" }, { "input": "spite's", "output": "â Žâ â Šâ žâ ‘â „â Ž" }, { "input": "spited", "output": "â Žâ â Šâ žâ «" }, { "input": "spiteful", "output": "â Žâ â Šâ žâ ‘â °â ‡" }, { "input": "spitefuller", "output": "â Žâ â Šâ žâ ‘⠰⠇⠇⠻" }, { "input": "spitefullest", "output": "â Žâ â Šâ žâ ‘⠰⠇⠇⠑⠌" }, { "input": "spitefully", "output": "â Žâ â Šâ žâ ‘⠰⠇⠇⠽" }, { "input": "spitefulness", "output": "â Žâ â Šâ žâ ‘⠰⠇⠰⠎" }, { "input": "spitefulness's", "output": "â Žâ â Šâ žâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "spites", "output": "â Žâ â Šâ žâ ‘â Ž" }, { "input": "spitfire", "output": "â Žâ â Šâ žâ ‹â Šâ —â ‘" }, { "input": "spitfire's", "output": "â Žâ â Šâ žâ ‹â Šâ —â ‘â „â Ž" }, { "input": "spitfires", "output": "â Žâ â Šâ žâ ‹â Šâ —â ‘â Ž" }, { "input": "spiting", "output": "â Žâ â Šâ žâ Œ" }, { "input": "spits", "output": "â Žâ â Šâ žâ Ž" }, { "input": "spitted", "output": "â Žâ â Šâ žâ žâ «" }, { "input": "spitting", "output": "â Žâ â Šâ žâ žâ Œ" }, { "input": "spittle", "output": "â Žâ â Šâ žâ žâ ‡â ‘" }, { "input": "spittle's", "output": "â Žâ â Šâ žâ žâ ‡â ‘â „â Ž" }, { "input": "spittoon", "output": "â Žâ â Šâ žâ žâ •â •â " }, { "input": "spittoon's", "output": "â Žâ â Šâ žâ žâ •â •â â „â Ž" }, { "input": "spittoons", "output": "â Žâ â Šâ žâ žâ •â •â â Ž" }, { "input": "splash", "output": "â Žâ â ‡â â ©" }, { "input": "splash's", "output": "â Žâ â ‡â â ©â „â Ž" }, { "input": "splashdown", "output": "â Žâ â ‡â â ©â ™â ªâ " }, { "input": "splashdown's", "output": "â Žâ â ‡â â ©â ™â ªâ â „â Ž" }, { "input": "splashdowns", "output": "â Žâ â ‡â â ©â ™â ªâ â Ž" }, { "input": "splashed", "output": "â Žâ â ‡â â ©â «" }, { "input": "splashes", "output": "â Žâ â ‡â â ©â ‘â Ž" }, { "input": "splashier", "output": "â Žâ â ‡â â ©â Šâ »" }, { "input": "splashiest", "output": "â Žâ â ‡â â ©â Šâ ‘â Œ" }, { "input": "splashily", "output": "â Žâ â ‡â â ©â Šâ ‡â ½" }, { "input": "splashiness", "output": "â Žâ â ‡â â ©â Šâ °â Ž" }, { "input": "splashiness's", "output": "â Žâ â ‡â â ©â Šâ °â Žâ „â Ž" }, { "input": "splashing", "output": "â Žâ â ‡â â ©â Œ" }, { "input": "splashy", "output": "â Žâ â ‡â â ©â ½" }, { "input": "splat", "output": "â Žâ â ‡â â ž" }, { "input": "splat's", "output": "â Žâ â ‡â â žâ „â Ž" }, { "input": "splats", "output": "â Žâ â ‡â â žâ Ž" }, { "input": "splatted", "output": "â Žâ â ‡â â žâ žâ «" }, { "input": "splatter", "output": "â Žâ â ‡â â žâ žâ »" }, { "input": "splatter's", "output": "â Žâ â ‡â â žâ žâ »â „â Ž" }, { "input": "splattered", "output": "â Žâ â ‡â â žâ žâ »â «" }, { "input": "splattering", "output": "â Žâ â ‡â â žâ žâ »â Œ" }, { "input": "splatters", "output": "â Žâ â ‡â â žâ žâ »â Ž" }, { "input": "splatting", "output": "â Žâ â ‡â â žâ žâ Œ" }, { "input": "splay", "output": "â Žâ â ‡â â ½" }, { "input": "splay's", "output": "â Žâ â ‡â â ½â „â Ž" }, { "input": "splayed", "output": "â Žâ â ‡â â ½â «" }, { "input": "splayfeet", "output": "â Žâ â ‡â â ½â ‹â ‘â ‘â ž" }, { "input": "splayfoot", "output": "â Žâ â ‡â â ½â ‹â •â •â ž" }, { "input": "splayfoot's", "output": "â Žâ â ‡â â ½â ‹â •â •â žâ „â Ž" }, { "input": "splayfooted", "output": "â Žâ â ‡â â ½â ‹â •â •â žâ «" }, { "input": "splaying", "output": "â Žâ â ‡â â ½â Œ" }, { "input": "splays", "output": "â Žâ â ‡â â ½â Ž" }, { "input": "spleen", "output": "â Žâ â ‡â ‘â ¢" }, { "input": "spleen's", "output": "â Žâ â ‡â ‘⠢⠄⠎" }, { "input": "spleens", "output": "â Žâ â ‡â ‘⠢⠎" }, { "input": "splendid", "output": "â Žâ â ‡â ¢â ™â Šâ ™" }, { "input": "splendider", "output": "â Žâ â ‡â ¢â ™â Šâ ™â »" }, { "input": "splendidest", "output": "â Žâ â ‡â ¢â ™â Šâ ™â ‘â Œ" }, { "input": "splendidly", "output": "â Žâ â ‡â ¢â ™â Šâ ™â ‡â ½" }, { "input": "splendor", "output": "â Žâ â ‡â ¢â ™â •â —" }, { "input": "splendor's", "output": "â Žâ â ‡â ¢â ™â •â —â „â Ž" }, { "input": "splendorous", "output": "â Žâ â ‡â ¢â ™â •⠗⠳⠎" }, { "input": "splendors", "output": "â Žâ â ‡â ¢â ™â •â —â Ž" }, { "input": "splenetic", "output": "â Žâ â ‡â ¢â ‘â žâ Šâ ‰" }, { "input": "splice", "output": "â Žâ â ‡â Šâ ‰â ‘" }, { "input": "splice's", "output": "â Žâ â ‡â Šâ ‰â ‘â „â Ž" }, { "input": "spliced", "output": "â Žâ â ‡â Šâ ‰â «" }, { "input": "splicer", "output": "â Žâ â ‡â Šâ ‰â »" }, { "input": "splicer's", "output": "â Žâ â ‡â Šâ ‰â »â „â Ž" }, { "input": "splicers", "output": "â Žâ â ‡â Šâ ‰â »â Ž" }, { "input": "splices", "output": "â Žâ â ‡â Šâ ‰â ‘â Ž" }, { "input": "splicing", "output": "â Žâ â ‡â Šâ ‰â Œ" }, { "input": "spline", "output": "â Žâ â ‡â ”â ‘" }, { "input": "splines", "output": "â Žâ â ‡â ”â ‘â Ž" }, { "input": "splint", "output": "â Žâ â ‡â ”â ž" }, { "input": "splint's", "output": "â Žâ â ‡â ”â žâ „â Ž" }, { "input": "splinted", "output": "â Žâ â ‡â ”â žâ «" }, { "input": "splinter", "output": "â Žâ â ‡â ”â žâ »" }, { "input": "splinter's", "output": "â Žâ â ‡â ”⠞⠻⠄⠎" }, { "input": "splintered", "output": "â Žâ â ‡â ”⠞⠻⠫" }, { "input": "splintering", "output": "â Žâ â ‡â ”⠞⠻⠌" }, { "input": "splinters", "output": "â Žâ â ‡â ”⠞⠻⠎" }, { "input": "splintery", "output": "â Žâ â ‡â ”⠞⠻⠽" }, { "input": "splinting", "output": "â Žâ â ‡â ”â žâ Œ" }, { "input": "splints", "output": "â Žâ â ‡â ”â žâ Ž" }, { "input": "split", "output": "â Žâ â ‡â Šâ ž" }, { "input": "split's", "output": "â Žâ â ‡â Šâ žâ „â Ž" }, { "input": "splits", "output": "â Žâ â ‡â Šâ žâ Ž" }, { "input": "splitting", "output": "â Žâ â ‡â Šâ žâ žâ Œ" }, { "input": "splitting's", "output": "â Žâ â ‡â Šâ žâ žâ Œâ „â Ž" }, { "input": "splittings", "output": "â Žâ â ‡â Šâ žâ žâ Œâ Ž" }, { "input": "splodge", "output": "â Žâ â ‡â •⠙⠛⠑" }, { "input": "splotch", "output": "â Žâ â ‡â •â žâ ¡" }, { "input": "splotch's", "output": "â Žâ â ‡â •â žâ ¡â „â Ž" }, { "input": "splotched", "output": "â Žâ â ‡â •â žâ ¡â «" }, { "input": "splotches", "output": "â Žâ â ‡â •â žâ ¡â ‘â Ž" }, { "input": "splotchier", "output": "â Žâ â ‡â •â žâ ¡â Šâ »" }, { "input": "splotchiest", "output": "â Žâ â ‡â •â žâ ¡â Šâ ‘â Œ" }, { "input": "splotching", "output": "â Žâ â ‡â •â žâ ¡â Œ" }, { "input": "splotchy", "output": "â Žâ â ‡â •â žâ ¡â ½" }, { "input": "splurge", "output": "â Žâ â ‡â ¥â —⠛⠑" }, { "input": "splurge's", "output": "â Žâ â ‡â ¥â —⠛⠑⠄⠎" }, { "input": "splurged", "output": "â Žâ â ‡â ¥â —⠛⠫" }, { "input": "splurges", "output": "â Žâ â ‡â ¥â —⠛⠑⠎" }, { "input": "splurging", "output": "â Žâ â ‡â ¥â —⠛⠌" }, { "input": "splutter", "output": "â Žâ â ‡â ¥â žâ žâ »" }, { "input": "splutter's", "output": "â Žâ â ‡â ¥â žâ žâ »â „â Ž" }, { "input": "spluttered", "output": "â Žâ â ‡â ¥â žâ žâ »â «" }, { "input": "spluttering", "output": "â Žâ â ‡â ¥â žâ žâ »â Œ" }, { "input": "splutters", "output": "â Žâ â ‡â ¥â žâ žâ »â Ž" }, { "input": "spoil", "output": "â Žâ â •â Šâ ‡" }, { "input": "spoil's", "output": "â Žâ â •⠊⠇⠄⠎" }, { "input": "spoilage", "output": "â Žâ â •â Šâ ‡â â ›â ‘" }, { "input": "spoilage's", "output": "â Žâ â •â Šâ ‡â â ›â ‘â „â Ž" }, { "input": "spoiled", "output": "â Žâ â •⠊⠇⠫" }, { "input": "spoiler", "output": "â Žâ â •⠊⠇⠻" }, { "input": "spoiler's", "output": "â Žâ â •⠊⠇⠻⠄⠎" }, { "input": "spoilers", "output": "â Žâ â •⠊⠇⠻⠎" }, { "input": "spoiling", "output": "â Žâ â •⠊⠇⠌" }, { "input": "spoils", "output": "â Žâ â •⠊⠇⠎" }, { "input": "spoilsport", "output": "â Žâ â •⠊⠇⠎â â •â —â ž" }, { "input": "spoilsport's", "output": "â Žâ â •⠊⠇⠎â â •â —â žâ „â Ž" }, { "input": "spoilsports", "output": "â Žâ â •⠊⠇⠎â â •â —â žâ Ž" }, { "input": "spoke", "output": "â Žâ â •â …â ‘" }, { "input": "spoke's", "output": "â Žâ â •â …â ‘â „â Ž" }, { "input": "spoken", "output": "â Žâ â •â …â ¢" }, { "input": "spokes", "output": "â Žâ â •â …â ‘â Ž" }, { "input": "spokesman", "output": "â Žâ â •â …â ‘â Žâ â â " }, { "input": "spokesman's", "output": "â Žâ â •â …â ‘â Žâ â â â „â Ž" }, { "input": "spokesmen", "output": "â Žâ â •â …â ‘â Žâ â ¢" }, { "input": "spokespeople", "output": "â Žâ â •â …â ‘â Žâ â ‘â •â â ‡â ‘" }, { "input": "spokesperson", "output": "â Žâ â •â …â ‘â Žâ â »â Žâ •â " }, { "input": "spokesperson's", "output": "â Žâ â •â …â ‘â Žâ â »â Žâ •â â „â Ž" }, { "input": "spokespersons", "output": "â Žâ â •â …â ‘â Žâ â »â Žâ •â â Ž" }, { "input": "spokeswoman", "output": "â Žâ â •⠅⠑⠎⠺⠕â â â " }, { "input": "spokeswoman's", "output": "â Žâ â •⠅⠑⠎⠺⠕â â â â „â Ž" }, { "input": "spokeswomen", "output": "â Žâ â •⠅⠑⠎⠺⠕â â ¢" }, { "input": "spoliation", "output": "â Žâ â •⠇⠊⠠â " }, { "input": "spoliation's", "output": "â Žâ â •⠇⠊⠠â â „â Ž" }, { "input": "sponge", "output": "â Žâ â °â ›â ‘" }, { "input": "sponge's", "output": "â Žâ â °â ›â ‘â „â Ž" }, { "input": "spongecake", "output": "â Žâ â °â ›â ‘â ‰â â …â ‘" }, { "input": "spongecake's", "output": "â Žâ â °â ›â ‘â ‰â â …â ‘â „â Ž" }, { "input": "sponged", "output": "â Žâ â °â ›â «" }, { "input": "sponger", "output": "â Žâ â °â ›â »" }, { "input": "sponger's", "output": "â Žâ â °â ›â »â „â Ž" }, { "input": "spongers", "output": "â Žâ â °â ›â »â Ž" }, { "input": "sponges", "output": "â Žâ â °â ›â ‘â Ž" }, { "input": "spongier", "output": "â Žâ â °â ›â Šâ »" }, { "input": "spongiest", "output": "â Žâ â °â ›â Šâ ‘â Œ" }, { "input": "sponginess's", "output": "â Žâ â °â ›â Šâ °â Žâ „â Ž" }, { "input": "sponging", "output": "â Žâ â °â ›â Œ" }, { "input": "spongy", "output": "â Žâ â °â ›â ½" }, { "input": "sponsor", "output": "â Žâ â •â â Žâ •â —" }, { "input": "sponsor's", "output": "â Žâ â •â â Žâ •â —â „â Ž" }, { "input": "sponsored", "output": "â Žâ â •â â Žâ •â —â «" }, { "input": "sponsoring", "output": "â Žâ â •â â Žâ •â —â Œ" }, { "input": "sponsors", "output": "â Žâ â •â â Žâ •â —â Ž" }, { "input": "sponsorship", "output": "â Žâ â •â â Žâ •â —â ©â Šâ " }, { "input": "sponsorship's", "output": "â Žâ â •â â Žâ •â —â ©â Šâ â „â Ž" }, { "input": "spontaneity", "output": "â Žâ â •â â žâ â â ‘â °â ½" }, { "input": "spontaneity's", "output": "â Žâ â •â â žâ â â ‘⠰⠽⠄⠎" }, { "input": "spontaneous", "output": "â Žâ â •â â žâ â â ‘⠳⠎" }, { "input": "spontaneously", "output": "â Žâ â •â â žâ â â ‘⠳⠎⠇⠽" }, { "input": "spoof", "output": "â Žâ â •â ·" }, { "input": "spoof's", "output": "â Žâ â •â ·â „â Ž" }, { "input": "spoofed", "output": "â Žâ â •â ·â «" }, { "input": "spoofing", "output": "â Žâ â •â ·â Œ" }, { "input": "spoofs", "output": "â Žâ â •â ·â Ž" }, { "input": "spook", "output": "â Žâ â •â •â …" }, { "input": "spook's", "output": "â Žâ â •â •â …â „â Ž" }, { "input": "spooked", "output": "â Žâ â •â •â …â «" }, { "input": "spookier", "output": "â Žâ â •â •â …â Šâ »" }, { "input": "spookiest", "output": "â Žâ â •â •â …â Šâ ‘â Œ" }, { "input": "spookiness", "output": "â Žâ â •â •â …â Šâ °â Ž" }, { "input": "spookiness's", "output": "â Žâ â •â •â …â Šâ °â Žâ „â Ž" }, { "input": "spooking", "output": "â Žâ â •â •â …â Œ" }, { "input": "spooks", "output": "â Žâ â •â •â …â Ž" }, { "input": "spooky", "output": "â Žâ â •â •â …â ½" }, { "input": "spool", "output": "â Žâ â •â •â ‡" }, { "input": "spool's", "output": "â Žâ â •⠕⠇⠄⠎" }, { "input": "spooled", "output": "â Žâ â •⠕⠇⠫" }, { "input": "spooling", "output": "â Žâ â •⠕⠇⠌" }, { "input": "spools", "output": "â Žâ â •⠕⠇⠎" }, { "input": "spoon", "output": "â Žâ â •â •â " }, { "input": "spoon's", "output": "â Žâ â •â •â â „â Ž" }, { "input": "spoonbill", "output": "â Žâ â •â •â â ƒâ Šâ ‡â ‡" }, { "input": "spoonbill's", "output": "â Žâ â •â •â â ƒâ Šâ ‡â ‡â „â Ž" }, { "input": "spoonbills", "output": "â Žâ â •â •â â ƒâ Šâ ‡â ‡â Ž" }, { "input": "spooned", "output": "â Žâ â •â •â â «" }, { "input": "spoonerism", "output": "â Žâ â •â •â â »â Šâ Žâ " }, { "input": "spoonerism's", "output": "â Žâ â •â •â â »â Šâ Žâ â „â Ž" }, { "input": "spoonerisms", "output": "â Žâ â •â •â â »â Šâ Žâ â Ž" }, { "input": "spoonful", "output": "â Žâ â •â •â â °â ‡" }, { "input": "spoonful's", "output": "â Žâ â •â •â â °â ‡â „â Ž" }, { "input": "spoonfuls", "output": "â Žâ â •â •â â °â ‡â Ž" }, { "input": "spooning", "output": "â Žâ â •â •â â Œ" }, { "input": "spoons", "output": "â Žâ â •â •â â Ž" }, { "input": "spoor", "output": "â Žâ â •â •â —" }, { "input": "spoor's", "output": "â Žâ â •â •â —â „â Ž" }, { "input": "spoored", "output": "â Žâ â •â •â —â «" }, { "input": "spooring", "output": "â Žâ â •â •â —â Œ" }, { "input": "spoors", "output": "â Žâ â •â •â —â Ž" }, { "input": "sporadic", "output": "â Žâ â •â —â â ™â Šâ ‰" }, { "input": "sporadically", "output": "â Žâ â •â —â â ™â Šâ ‰â  â ½" }, { "input": "spore", "output": "â Žâ â •â —â ‘" }, { "input": "spore's", "output": "â Žâ â •â —â ‘â „â Ž" }, { "input": "spored", "output": "â Žâ â •â —â «" }, { "input": "spores", "output": "â Žâ â •â —â ‘â Ž" }, { "input": "sporing", "output": "â Žâ â •â —â Œ" }, { "input": "sporran", "output": "â Žâ â •â —â —â â " }, { "input": "sport", "output": "â Žâ â •â —â ž" }, { "input": "sport's", "output": "â Žâ â •â —â žâ „â Ž" }, { "input": "sported", "output": "â Žâ â •â —â žâ «" }, { "input": "sportier", "output": "â Žâ â •â —â žâ Šâ »" }, { "input": "sportiest", "output": "â Žâ â •â —â žâ Šâ ‘â Œ" }, { "input": "sportiness", "output": "â Žâ â •â —â žâ Šâ °â Ž" }, { "input": "sportiness's", "output": "â Žâ â •â —â žâ Šâ °â Žâ „â Ž" }, { "input": "sporting", "output": "â Žâ â •â —â žâ Œ" }, { "input": "sportive", "output": "â Žâ â •â —â žâ Šâ §â ‘" }, { "input": "sportively", "output": "â Žâ â •⠗⠞⠊⠧⠑⠇⠽" }, { "input": "sports", "output": "â Žâ â •â —â žâ Ž" }, { "input": "sportscast", "output": "â Žâ â •â —â žâ Žâ ‰â â Œ" }, { "input": "sportscast's", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ „â Ž" }, { "input": "sportscaster", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ »" }, { "input": "sportscaster's", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ »â „â Ž" }, { "input": "sportscasters", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ »â Ž" }, { "input": "sportscasting", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ Œ" }, { "input": "sportscasts", "output": "â Žâ â •â —â žâ Žâ ‰â â Œâ Ž" }, { "input": "sportsman", "output": "â Žâ â •â —â žâ Žâ â â " }, { "input": "sportsman's", "output": "â Žâ â •â —â žâ Žâ â â â „â Ž" }, { "input": "sportsmanlike", "output": "â Žâ â •â —â žâ Žâ â â â ‡â Šâ …â ‘" }, { "input": "sportsmanship", "output": "â Žâ â •â —â žâ Žâ â â â ©â Šâ " }, { "input": "sportsmanship's", "output": "â Žâ â •â —â žâ Žâ â â â ©â Šâ â „â Ž" }, { "input": "sportsmen", "output": "â Žâ â •â —â žâ Žâ â ¢" }, { "input": "sportswear", "output": "â Žâ â •⠗⠞⠎⠺⠑⠜" }, { "input": "sportswear's", "output": "â Žâ â •⠗⠞⠎⠺⠑⠜⠄⠎" }, { "input": "sportswoman", "output": "â Žâ â •⠗⠞⠎⠺⠕â â â " }, { "input": "sportswoman's", "output": "â Žâ â •⠗⠞⠎⠺⠕â â â â „â Ž" }, { "input": "sportswomen", "output": "â Žâ â •⠗⠞⠎⠺⠕â â ¢" }, { "input": "sportswriter", "output": "â Žâ â •⠗⠞⠎⠺⠗⠊⠞⠻" }, { "input": "sportswriter's", "output": "â Žâ â •⠗⠞⠎⠺⠗⠊⠞⠻⠄⠎" }, { "input": "sportswriters", "output": "â Žâ â •⠗⠞⠎⠺⠗⠊⠞⠻⠎" }, { "input": "sporty", "output": "â Žâ â •â —â žâ ½" }, { "input": "spot", "output": "â Žâ â •â ž" }, { "input": "spot's", "output": "â Žâ â •â žâ „â Ž" }, { "input": "spotless", "output": "â Žâ â •⠞⠨⠎" }, { "input": "spotlessly", "output": "â Žâ â •⠞⠨⠎⠇⠽" }, { "input": "spotlessness", "output": "â Žâ â •⠞⠨⠎⠰⠎" }, { "input": "spotlessness's", "output": "â Žâ â •⠞⠨⠎⠰⠎⠄⠎" }, { "input": "spotlight", "output": "â Žâ â •⠞⠇⠊⠣⠞" }, { "input": "spotlight's", "output": "â Žâ â •⠞⠇⠊⠣⠞⠄⠎" }, { "input": "spotlighted", "output": "â Žâ â •⠞⠇⠊⠣⠞⠫" }, { "input": "spotlighting", "output": "â Žâ â •⠞⠇⠊⠣⠞⠌" }, { "input": "spotlights", "output": "â Žâ â •⠞⠇⠊⠣⠞⠎" }, { "input": "spots", "output": "â Žâ â •â žâ Ž" }, { "input": "spotted", "output": "â Žâ â •â žâ žâ «" }, { "input": "spotter", "output": "â Žâ â •â žâ žâ »" }, { "input": "spotter's", "output": "â Žâ â •⠞⠞⠻⠄⠎" }, { "input": "spotters", "output": "â Žâ â •⠞⠞⠻⠎" }, { "input": "spottier", "output": "â Žâ â •â žâ žâ Šâ »" }, { "input": "spottiest", "output": "â Žâ â •â žâ žâ Šâ ‘â Œ" }, { "input": "spottily", "output": "â Žâ â •⠞⠞⠊⠇⠽" }, { "input": "spottiness", "output": "â Žâ â •â žâ žâ Šâ °â Ž" }, { "input": "spottiness's", "output": "â Žâ â •â žâ žâ Šâ °â Žâ „â Ž" }, { "input": "spotting", "output": "â Žâ â •â žâ žâ Œ" }, { "input": "spotty", "output": "â Žâ â •â žâ žâ ½" }, { "input": "spousal's", "output": "â Žâ â ³â Žâ â ‡â „â Ž" }, { "input": "spousals", "output": "â Žâ â ³â Žâ â ‡â Ž" }, { "input": "spouse", "output": "â Žâ â ³â Žâ ‘" }, { "input": "spouse's", "output": "â Žâ â ³â Žâ ‘â „â Ž" }, { "input": "spouses", "output": "â Žâ â ³â Žâ ‘â Ž" }, { "input": "spout", "output": "â Žâ â ³â ž" }, { "input": "spout's", "output": "â Žâ â ³â žâ „â Ž" }, { "input": "spouted", "output": "â Žâ â ³â žâ «" }, { "input": "spouting", "output": "â Žâ â ³â žâ Œ" }, { "input": "spouts", "output": "â Žâ â ³â žâ Ž" }, { "input": "sprain", "output": "â Žâ â —â â ”" }, { "input": "sprain's", "output": "â Žâ â —â â ”â „â Ž" }, { "input": "sprained", "output": "â Žâ â —â â ”â «" }, { "input": "spraining", "output": "â Žâ â —â â ”â Œ" }, { "input": "sprains", "output": "â Žâ â —â â ”â Ž" }, { "input": "sprang", "output": "â Žâ â —â â â ›" }, { "input": "sprat", "output": "â Žâ â —â â ž" }, { "input": "sprat's", "output": "â Žâ â —â â žâ „â Ž" }, { "input": "sprats", "output": "â Žâ â —â â žâ Ž" }, { "input": "sprawl", "output": "â Žâ â —â â ºâ ‡" }, { "input": "sprawl's", "output": "â Žâ â —â â ºâ ‡â „â Ž" }, { "input": "sprawled", "output": "â Žâ â —â â ºâ ‡â «" }, { "input": "sprawling", "output": "â Žâ â —â â ºâ ‡â Œ" }, { "input": "sprawls", "output": "â Žâ â —â â ºâ ‡â Ž" }, { "input": "spray", "output": "â Žâ â —â â ½" }, { "input": "spray's", "output": "â Žâ â —â â ½â „â Ž" }, { "input": "sprayed", "output": "â Žâ â —â â ½â «" }, { "input": "sprayer", "output": "â Žâ â —â â ½â »" }, { "input": "sprayer's", "output": "â Žâ â —â â ½â »â „â Ž" }, { "input": "sprayers", "output": "â Žâ â —â â ½â »â Ž" }, { "input": "spraying", "output": "â Žâ â —â â ½â Œ" }, { "input": "sprays", "output": "â Žâ â —â â ½â Ž" }, { "input": "spread", "output": "â Žâ â —â ‚â ™" }, { "input": "spread's", "output": "â Žâ â —⠂⠙⠄⠎" }, { "input": "spreadable", "output": "â Žâ â —â ‚â ™â â ¼" }, { "input": "spreader", "output": "â Žâ â —⠂⠙⠻" }, { "input": "spreader's", "output": "â Žâ â —⠂⠙⠻⠄⠎" }, { "input": "spreaders", "output": "â Žâ â —⠂⠙⠻⠎" }, { "input": "spreading", "output": "â Žâ â —⠂⠙⠌" }, { "input": "spreads", "output": "â Žâ â —⠂⠙⠎" }, { "input": "spreadsheet", "output": "â Žâ â —⠂⠙⠩⠑⠑⠞" }, { "input": "spreadsheet's", "output": "â Žâ â —⠂⠙⠩⠑⠑⠞⠄⠎" }, { "input": "spreadsheets", "output": "â Žâ â —⠂⠙⠩⠑⠑⠞⠎" }, { "input": "spree", "output": "â Žâ â —â ‘â ‘" }, { "input": "spree's", "output": "â Žâ â —â ‘â ‘â „â Ž" }, { "input": "spreed", "output": "â Žâ â —â ‘â «" }, { "input": "spreeing", "output": "â Žâ â —â ‘â ‘â Œ" }, { "input": "sprees", "output": "â Žâ â —â ‘â ‘â Ž" }, { "input": "sprier", "output": "â Žâ â —â Šâ »" }, { "input": "spriest", "output": "â Žâ â —â Šâ ‘â Œ" }, { "input": "sprig", "output": "â Žâ â —â Šâ ›" }, { "input": "sprig's", "output": "â Žâ â —⠊⠛⠄⠎" }, { "input": "sprightlier", "output": "â Žâ â â —⠇⠊⠻" }, { "input": "sprightliest", "output": "â Žâ â â —⠇⠊⠑⠌" }, { "input": "sprightliness", "output": "â Žâ â â —⠇⠊⠰⠎" }, { "input": "sprightliness's", "output": "â Žâ â â —⠇⠊⠰⠎⠄⠎" }, { "input": "sprightly", "output": "â Žâ â â —⠇⠽" }, { "input": "sprigs", "output": "â Žâ â —⠊⠛⠎" }, { "input": "spring", "output": "â Žâ â —â Œ" }, { "input": "spring's", "output": "â Žâ â —⠌⠄⠎" }, { "input": "springboard", "output": "â Žâ â —⠌⠃⠕⠜⠙" }, { "input": "springboard's", "output": "â Žâ â —⠌⠃⠕⠜⠙⠄⠎" }, { "input": "springboards", "output": "â Žâ â —⠌⠃⠕⠜⠙⠎" }, { "input": "springier", "output": "â Žâ â —⠌⠊⠻" }, { "input": "springiest", "output": "â Žâ â —⠌⠊⠑⠌" }, { "input": "springily", "output": "â Žâ â —⠌⠊⠇⠽" }, { "input": "springiness", "output": "â Žâ â —⠌⠊⠰⠎" }, { "input": "springiness's", "output": "â Žâ â —⠌⠊⠰⠎⠄⠎" }, { "input": "springing", "output": "â Žâ â —⠌⠌" }, { "input": "springlike", "output": "â Žâ â —⠌⠇⠊⠅⠑" }, { "input": "springs", "output": "â Žâ â —⠌⠎" }, { "input": "springtime", "output": "â Žâ â —â Œâ â ž" }, { "input": "springtime's", "output": "â Žâ â —â Œâ â žâ „â Ž" }, { "input": "springy", "output": "â Žâ â —⠌⠽" }, { "input": "sprinkle", "output": "â Žâ â —⠔⠅⠇⠑" }, { "input": "sprinkle's", "output": "â Žâ â —⠔⠅⠇⠑⠄⠎" }, { "input": "sprinkled", "output": "â Žâ â —⠔⠅⠇⠫" }, { "input": "sprinkler", "output": "â Žâ â —⠔⠅⠇⠻" }, { "input": "sprinkler's", "output": "â Žâ â —⠔⠅⠇⠻⠄⠎" }, { "input": "sprinklers", "output": "â Žâ â —⠔⠅⠇⠻⠎" }, { "input": "sprinkles", "output": "â Žâ â —⠔⠅⠇⠑⠎" }, { "input": "sprinkling", "output": "â Žâ â —⠔⠅⠇⠌" }, { "input": "sprinkling's", "output": "â Žâ â —⠔⠅⠇⠌⠄⠎" }, { "input": "sprinklings", "output": "â Žâ â —⠔⠅⠇⠌⠎" }, { "input": "sprint", "output": "â Žâ â —⠔⠞" }, { "input": "sprint's", "output": "â Žâ â —⠔⠞⠄⠎" }, { "input": "sprinted", "output": "â Žâ â —⠔⠞⠫" }, { "input": "sprinter", "output": "â Žâ â —⠔⠞⠻" }, { "input": "sprinter's", "output": "â Žâ â —⠔⠞⠻⠄⠎" }, { "input": "sprinters", "output": "â Žâ â —⠔⠞⠻⠎" }, { "input": "sprinting", "output": "â Žâ â —⠔⠞⠌" }, { "input": "sprints", "output": "â Žâ â —⠔⠞⠎" }, { "input": "sprite", "output": "â Žâ â —â Šâ žâ ‘" }, { "input": "sprite's", "output": "â Žâ â —â Šâ žâ ‘â „â Ž" }, { "input": "sprites", "output": "â Žâ â —â Šâ žâ ‘â Ž" }, { "input": "spritz", "output": "â Žâ â —â Šâ žâ µ" }, { "input": "spritz's", "output": "â Žâ â —⠊⠞⠵⠄⠎" }, { "input": "spritzed", "output": "â Žâ â —⠊⠞⠵⠫" }, { "input": "spritzes", "output": "â Žâ â —⠊⠞⠵⠑⠎" }, { "input": "spritzing", "output": "â Žâ â —⠊⠞⠵⠌" }, { "input": "sprocket", "output": "â Žâ â —⠕⠉⠅⠑⠞" }, { "input": "sprocket's", "output": "â Žâ â —⠕⠉⠅⠑⠞⠄⠎" }, { "input": "sprockets", "output": "â Žâ â —⠕⠉⠅⠑⠞⠎" }, { "input": "sprout", "output": "â Žâ â —⠳⠞" }, { "input": "sprout's", "output": "â Žâ â —⠳⠞⠄⠎" }, { "input": "sprouted", "output": "â Žâ â —⠳⠞⠫" }, { "input": "sprouting", "output": "â Žâ â —⠳⠞⠌" }, { "input": "sprouts", "output": "â Žâ â —⠳⠞⠎" }, { "input": "spruce", "output": "â Žâ â —⠥⠉⠑" }, { "input": "spruce's", "output": "â Žâ â —⠥⠉⠑⠄⠎" }, { "input": "spruced", "output": "â Žâ â —⠥⠉⠫" }, { "input": "sprucely", "output": "â Žâ â —⠥⠉⠑⠇⠽" }, { "input": "spruceness", "output": "â Žâ â —⠥⠉⠑⠰⠎" }, { "input": "spruceness's", "output": "â Žâ â —⠥⠉⠑⠰⠎⠄⠎" }, { "input": "sprucer", "output": "â Žâ â —⠥⠉⠻" }, { "input": "spruces", "output": "â Žâ â —⠥⠉⠑⠎" }, { "input": "sprucest", "output": "â Žâ â —⠥⠉⠑⠌" }, { "input": "sprucing", "output": "â Žâ â —⠥⠉⠌" }, { "input": "sprung", "output": "â Žâ â —â ¥â â ›" }, { "input": "spry", "output": "â Žâ â —â ½" }, { "input": "spryly", "output": "â Žâ â —⠽⠇⠽" }, { "input": "spryness", "output": "â Žâ â —⠽⠰⠎" }, { "input": "spryness's", "output": "â Žâ â —⠽⠰⠎⠄⠎" }, { "input": "spud", "output": "â Žâ â ¥â ™" }, { "input": "spud's", "output": "â Žâ â ¥â ™â „â Ž" }, { "input": "spuds", "output": "â Žâ â ¥â ™â Ž" }, { "input": "spume", "output": "â Žâ â ¥â â ‘" }, { "input": "spume's", "output": "â Žâ â ¥â â ‘â „â Ž" }, { "input": "spumed", "output": "â Žâ â ¥â â «" }, { "input": "spumes", "output": "â Žâ â ¥â â ‘â Ž" }, { "input": "spumier", "output": "â Žâ â ¥â â Šâ »" }, { "input": "spumiest", "output": "â Žâ â ¥â â Šâ ‘â Œ" }, { "input": "spuming", "output": "â Žâ â ¥â â Œ" }, { "input": "spumoni", "output": "â Žâ â ¥â â •â â Š" }, { "input": "spumoni's", "output": "â Žâ â ¥â â •â â Šâ „â Ž" }, { "input": "spumy", "output": "â Žâ â ¥â â ½" }, { "input": "spun", "output": "â Žâ â ¥â " }, { "input": "spunk", "output": "â Žâ â ¥â â …" }, { "input": "spunk's", "output": "â Žâ â ¥â â …â „â Ž" }, { "input": "spunkier", "output": "â Žâ â ¥â â …â Šâ »" }, { "input": "spunkiest", "output": "â Žâ â ¥â â …â Šâ ‘â Œ" }, { "input": "spunky", "output": "â Žâ â ¥â â …â ½" }, { "input": "spur", "output": "â Žâ â ¥â —" }, { "input": "spur's", "output": "â Žâ â ¥â —â „â Ž" }, { "input": "spurge", "output": "â Žâ â ¥â —⠛⠑" }, { "input": "spurge's", "output": "â Žâ â ¥â —⠛⠑⠄⠎" }, { "input": "spurious", "output": "â Žâ â ¥â —⠊⠳⠎" }, { "input": "spuriously", "output": "â Žâ â ¥â —⠊⠳⠎⠇⠽" }, { "input": "spuriousness", "output": "â Žâ â ¥â —⠊⠳⠎⠰⠎" }, { "input": "spuriousness's", "output": "â Žâ â ¥â —⠊⠳⠎⠰⠎⠄⠎" }, { "input": "spurn", "output": "â Žâ â ¥â —â " }, { "input": "spurned", "output": "â Žâ â ¥â —â â «" }, { "input": "spurning", "output": "â Žâ â ¥â —â â Œ" }, { "input": "spurns", "output": "â Žâ â ¥â —â â Ž" }, { "input": "spurred", "output": "â Žâ â ¥â —â —â «" }, { "input": "spurring", "output": "â Žâ â ¥â —â —â Œ" }, { "input": "spurs", "output": "â Žâ â ¥â —â Ž" }, { "input": "spurt", "output": "â Žâ â ¥â —â ž" }, { "input": "spurt's", "output": "â Žâ â ¥â —â žâ „â Ž" }, { "input": "spurted", "output": "â Žâ â ¥â —â žâ «" }, { "input": "spurting", "output": "â Žâ â ¥â —â žâ Œ" }, { "input": "spurts", "output": "â Žâ â ¥â —â žâ Ž" }, { "input": "sputa", "output": "â Žâ â ¥â žâ " }, { "input": "sputnik", "output": "â Žâ â ¥â žâ â Šâ …" }, { "input": "sputnik's", "output": "â Žâ â ¥â žâ â Šâ …â „â Ž" }, { "input": "sputniks", "output": "â Žâ â ¥â žâ â Šâ …â Ž" }, { "input": "sputter", "output": "â Žâ â ¥â žâ žâ »" }, { "input": "sputter's", "output": "â Žâ â ¥â žâ žâ »â „â Ž" }, { "input": "sputtered", "output": "â Žâ â ¥â žâ žâ »â «" }, { "input": "sputtering", "output": "â Žâ â ¥â žâ žâ »â Œ" }, { "input": "sputters", "output": "â Žâ â ¥â žâ žâ »â Ž" }, { "input": "sputum", "output": "â Žâ â ¥â žâ ¥â " }, { "input": "sputum's", "output": "â Žâ â ¥â žâ ¥â â „â Ž" }, { "input": "spy", "output": "â Žâ â ½" }, { "input": "spy's", "output": "â Žâ â ½â „â Ž" }, { "input": "spyglass", "output": "â Žâ â ½â ›â ‡â â Žâ Ž" }, { "input": "spyglass's", "output": "â Žâ â ½â ›â ‡â â Žâ Žâ „â Ž" }, { "input": "spyglasses", "output": "â Žâ â ½â ›â ‡â â Žâ Žâ ‘â Ž" }, { "input": "spying", "output": "â Žâ â ½â Œ" }, { "input": "squab", "output": "â Žâ Ÿâ ¥â â ƒ" }, { "input": "squab's", "output": "â Žâ Ÿâ ¥â â ƒâ „â Ž" }, { "input": "squabble", "output": "â Žâ Ÿâ ¥â â ƒâ ¼" }, { "input": "squabble's", "output": "â Žâ Ÿâ ¥â â ƒâ ¼â „â Ž" }, { "input": "squabbled", "output": "â Žâ Ÿâ ¥â â ƒâ ¼â ™" }, { "input": "squabbler", "output": "â Žâ Ÿâ ¥â â ƒâ ¼â —" }, { "input": "squabbler's", "output": "â Žâ Ÿâ ¥â â ƒâ ¼â —â „â Ž" }, { "input": "squabblers", "output": "â Žâ Ÿâ ¥â â ƒâ ¼â —â Ž" }, { "input": "squabbles", "output": "â Žâ Ÿâ ¥â â ƒâ ¼â Ž" }, { "input": "squabbling", "output": "â Žâ Ÿâ ¥â â †â ‡â Œ" }, { "input": "squabs", "output": "â Žâ Ÿâ ¥â â ƒâ Ž" }, { "input": "squad", "output": "â Žâ Ÿâ ¥â â ™" }, { "input": "squad's", "output": "â Žâ Ÿâ ¥â â ™â „â Ž" }, { "input": "squadron", "output": "â Žâ Ÿâ ¥â â ™â —â •â " }, { "input": "squadron's", "output": "â Žâ Ÿâ ¥â â ™â —â •â â „â Ž" }, { "input": "squadrons", "output": "â Žâ Ÿâ ¥â â ™â —â •â â Ž" }, { "input": "squads", "output": "â Žâ Ÿâ ¥â â ™â Ž" }, { "input": "squalid", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™" }, { "input": "squalider", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â »" }, { "input": "squalidest", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â ‘â Œ" }, { "input": "squalidly", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â ‡â ½" }, { "input": "squalidness", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â °â Ž" }, { "input": "squalidness's", "output": "â Žâ Ÿâ ¥â â ‡â Šâ ™â °â Žâ „â Ž" }, { "input": "squall", "output": "â Žâ Ÿâ ¥â â ‡â ‡" }, { "input": "squall's", "output": "â Žâ Ÿâ ¥â â ‡â ‡â „â Ž" }, { "input": "squalled", "output": "â Žâ Ÿâ ¥â â ‡â ‡â «" }, { "input": "squallier", "output": "â Žâ Ÿâ ¥â â ‡â ‡â Šâ »" }, { "input": "squalliest", "output": "â Žâ Ÿâ ¥â â ‡â ‡â Šâ ‘â Œ" }, { "input": "squalling", "output": "â Žâ Ÿâ ¥â â ‡â ‡â Œ" }, { "input": "squalls", "output": "â Žâ Ÿâ ¥â â ‡â ‡â Ž" }, { "input": "squalor", "output": "â Žâ Ÿâ ¥â â ‡â •â —" }, { "input": "squalor's", "output": "â Žâ Ÿâ ¥â â ‡â •â —â „â Ž" }, { "input": "squamous", "output": "â Žâ Ÿâ ¥â â â ³â Ž" }, { "input": "squander", "output": "⠎⠟⠥⠯⠻" }, { "input": "squandered", "output": "⠎⠟⠥⠯⠻⠫" }, { "input": "squandering", "output": "⠎⠟⠥⠯⠻⠌" }, { "input": "squanders", "output": "⠎⠟⠥⠯⠻⠎" }, { "input": "square", "output": "⠎⠟⠥⠜⠑" }, { "input": "square's", "output": "⠎⠟⠥⠜⠑⠄⠎" }, { "input": "squared", "output": "⠎⠟⠥⠜⠫" }, { "input": "squarely", "output": "⠎⠟⠥⠜⠑⠇⠽" }, { "input": "squareness", "output": "⠎⠟⠥⠜⠑⠰⠎" }, { "input": "squareness's", "output": "⠎⠟⠥⠜⠑⠰⠎⠄⠎" }, { "input": "squarer", "output": "⠎⠟⠥⠜⠻" }, { "input": "squares", "output": "⠎⠟⠥⠜⠑⠎" }, { "input": "squarest", "output": "⠎⠟⠥⠜⠑⠌" }, { "input": "squaring", "output": "⠎⠟⠥⠜⠌" }, { "input": "squash", "output": "â Žâ Ÿâ ¥â â ©" }, { "input": "squash's", "output": "â Žâ Ÿâ ¥â â ©â „â Ž" }, { "input": "squashed", "output": "â Žâ Ÿâ ¥â â ©â «" }, { "input": "squashes", "output": "â Žâ Ÿâ ¥â â ©â ‘â Ž" }, { "input": "squashier", "output": "â Žâ Ÿâ ¥â â ©â Šâ »" }, { "input": "squashiest", "output": "â Žâ Ÿâ ¥â â ©â Šâ ‘â Œ" }, { "input": "squashing", "output": "â Žâ Ÿâ ¥â â ©â Œ" }, { "input": "squashy", "output": "â Žâ Ÿâ ¥â â ©â ½" }, { "input": "squat", "output": "â Žâ Ÿâ ¥â â ž" }, { "input": "squat's", "output": "â Žâ Ÿâ ¥â â žâ „â Ž" }, { "input": "squatness", "output": "â Žâ Ÿâ ¥â â žâ °â Ž" }, { "input": "squatness's", "output": "â Žâ Ÿâ ¥â â žâ °â Žâ „â Ž" }, { "input": "squats", "output": "â Žâ Ÿâ ¥â â žâ Ž" }, { "input": "squatted", "output": "â Žâ Ÿâ ¥â â žâ žâ «" }, { "input": "squatter", "output": "â Žâ Ÿâ ¥â â žâ žâ »" }, { "input": "squatter's", "output": "â Žâ Ÿâ ¥â â žâ žâ »â „â Ž" }, { "input": "squatters", "output": "â Žâ Ÿâ ¥â â žâ žâ »â Ž" }, { "input": "squattest", "output": "â Žâ Ÿâ ¥â â žâ žâ ‘â Œ" }, { "input": "squatting", "output": "â Žâ Ÿâ ¥â â žâ žâ Œ" }, { "input": "squaw", "output": "â Žâ Ÿâ ¥â â º" }, { "input": "squaw's", "output": "â Žâ Ÿâ ¥â â ºâ „â Ž" }, { "input": "squawk", "output": "â Žâ Ÿâ ¥â â ºâ …" }, { "input": "squawk's", "output": "â Žâ Ÿâ ¥â â ºâ …â „â Ž" }, { "input": "squawked", "output": "â Žâ Ÿâ ¥â â ºâ …â «" }, { "input": "squawker", "output": "â Žâ Ÿâ ¥â â ºâ …â »" }, { "input": "squawker's", "output": "â Žâ Ÿâ ¥â â ºâ …⠻⠄⠎" }, { "input": "squawkers", "output": "â Žâ Ÿâ ¥â â ºâ …⠻⠎" }, { "input": "squawking", "output": "â Žâ Ÿâ ¥â â ºâ …â Œ" }, { "input": "squawks", "output": "â Žâ Ÿâ ¥â â ºâ …â Ž" }, { "input": "squaws", "output": "â Žâ Ÿâ ¥â â ºâ Ž" }, { "input": "squeak", "output": "⠎⠟⠥⠂⠅" }, { "input": "squeak's", "output": "⠎⠟⠥⠂⠅⠄⠎" }, { "input": "squeaked", "output": "⠎⠟⠥⠂⠅⠫" }, { "input": "squeaker", "output": "⠎⠟⠥⠂⠅⠻" }, { "input": "squeaker's", "output": "⠎⠟⠥⠂⠅⠻⠄⠎" }, { "input": "squeakers", "output": "⠎⠟⠥⠂⠅⠻⠎" }, { "input": "squeakier", "output": "⠎⠟⠥⠂⠅⠊⠻" }, { "input": "squeakiest", "output": "⠎⠟⠥⠂⠅⠊⠑⠌" }, { "input": "squeakily", "output": "⠎⠟⠥⠂⠅⠊⠇⠽" }, { "input": "squeakiness", "output": "⠎⠟⠥⠂⠅⠊⠰⠎" }, { "input": "squeakiness's", "output": "⠎⠟⠥⠂⠅⠊⠰⠎⠄⠎" }, { "input": "squeaking", "output": "⠎⠟⠥⠂⠅⠌" }, { "input": "squeaks", "output": "⠎⠟⠥⠂⠅⠎" }, { "input": "squeaky", "output": "⠎⠟⠥⠂⠅⠽" }, { "input": "squeal", "output": "⠎⠟⠥⠂⠇" }, { "input": "squeal's", "output": "⠎⠟⠥⠂⠇⠄⠎" }, { "input": "squealed", "output": "⠎⠟⠥⠂⠇⠫" }, { "input": "squealer", "output": "⠎⠟⠥⠂⠇⠻" }, { "input": "squealer's", "output": "⠎⠟⠥⠂⠇⠻⠄⠎" }, { "input": "squealers", "output": "⠎⠟⠥⠂⠇⠻⠎" }, { "input": "squealing", "output": "⠎⠟⠥⠂⠇⠌" }, { "input": "squeals", "output": "⠎⠟⠥⠂⠇⠎" }, { "input": "squeamish", "output": "⠎⠟⠥⠂â â Šâ ©" }, { "input": "squeamishly", "output": "⠎⠟⠥⠂â â Šâ ©â ‡â ½" }, { "input": "squeamishness", "output": "⠎⠟⠥⠂â â Šâ ©â °â Ž" }, { "input": "squeamishness's", "output": "⠎⠟⠥⠂â â Šâ ©â °â Žâ „â Ž" }, { "input": "squeegee", "output": "⠎⠟⠥⠑⠑⠛⠑⠑" }, { "input": "squeegee's", "output": "⠎⠟⠥⠑⠑⠛⠑⠑⠄⠎" }, { "input": "squeegeed", "output": "⠎⠟⠥⠑⠑⠛⠑⠫" }, { "input": "squeegeeing", "output": "⠎⠟⠥⠑⠑⠛⠑⠑⠌" }, { "input": "squeegees", "output": "⠎⠟⠥⠑⠑⠛⠑⠑⠎" }, { "input": "squeezable", "output": "⠎⠟⠥⠑⠑⠵â â ¼" }, { "input": "squeeze", "output": "⠎⠟⠥⠑⠑⠵⠑" }, { "input": "squeeze's", "output": "⠎⠟⠥⠑⠑⠵⠑⠄⠎" }, { "input": "squeezed", "output": "⠎⠟⠥⠑⠑⠵⠫" }, { "input": "squeezer", "output": "⠎⠟⠥⠑⠑⠵⠻" }, { "input": "squeezer's", "output": "⠎⠟⠥⠑⠑⠵⠻⠄⠎" }, { "input": "squeezers", "output": "⠎⠟⠥⠑⠑⠵⠻⠎" }, { "input": "squeezes", "output": "⠎⠟⠥⠑⠑⠵⠑⠎" }, { "input": "squeezing", "output": "⠎⠟⠥⠑⠑⠵⠌" }, { "input": "squelch", "output": "⠎⠟⠥⠑⠇⠡" }, { "input": "squelch's", "output": "⠎⠟⠥⠑⠇⠡⠄⠎" }, { "input": "squelched", "output": "⠎⠟⠥⠑⠇⠡⠫" }, { "input": "squelches", "output": "⠎⠟⠥⠑⠇⠡⠑⠎" }, { "input": "squelchier", "output": "⠎⠟⠥⠑⠇⠡⠊⠻" }, { "input": "squelchiest", "output": "⠎⠟⠥⠑⠇⠡⠊⠑⠌" }, { "input": "squelching", "output": "⠎⠟⠥⠑⠇⠡⠌" }, { "input": "squid", "output": "⠎⠟⠥⠊⠙" }, { "input": "squid's", "output": "⠎⠟⠥⠊⠙⠄⠎" }, { "input": "squids", "output": "⠎⠟⠥⠊⠙⠎" }, { "input": "squiggle", "output": "⠎⠟⠥⠊⠶⠇⠑" }, { "input": "squiggle's", "output": "⠎⠟⠥⠊⠶⠇⠑⠄⠎" }, { "input": "squiggled", "output": "⠎⠟⠥⠊⠶⠇⠫" }, { "input": "squiggles", "output": "⠎⠟⠥⠊⠶⠇⠑⠎" }, { "input": "squigglier", "output": "⠎⠟⠥⠊⠶⠇⠊⠻" }, { "input": "squiggliest", "output": "⠎⠟⠥⠊⠶⠇⠊⠑⠌" }, { "input": "squiggling", "output": "⠎⠟⠥⠊⠶⠇⠌" }, { "input": "squiggly", "output": "⠎⠟⠥⠊⠶⠇⠽" }, { "input": "squint", "output": "⠎⠟⠥⠔⠞" }, { "input": "squint's", "output": "⠎⠟⠥⠔⠞⠄⠎" }, { "input": "squinted", "output": "⠎⠟⠥⠔⠞⠫" }, { "input": "squinter", "output": "⠎⠟⠥⠔⠞⠻" }, { "input": "squintest", "output": "⠎⠟⠥⠔⠞⠑⠌" }, { "input": "squinting", "output": "⠎⠟⠥⠔⠞⠌" }, { "input": "squints", "output": "⠎⠟⠥⠔⠞⠎" }, { "input": "squire", "output": "⠎⠟⠥⠊⠗⠑" }, { "input": "squire's", "output": "⠎⠟⠥⠊⠗⠑⠄⠎" }, { "input": "squired", "output": "⠎⠟⠥⠊⠗⠫" }, { "input": "squires", "output": "⠎⠟⠥⠊⠗⠑⠎" }, { "input": "squiring", "output": "⠎⠟⠥⠊⠗⠌" }, { "input": "squirm", "output": "⠎⠟⠥⠊⠗â " }, { "input": "squirm's", "output": "⠎⠟⠥⠊⠗â â „â Ž" }, { "input": "squirmed", "output": "⠎⠟⠥⠊⠗â â «" }, { "input": "squirmier", "output": "⠎⠟⠥⠊⠗â â Šâ »" }, { "input": "squirmiest", "output": "⠎⠟⠥⠊⠗â â Šâ ‘â Œ" }, { "input": "squirming", "output": "⠎⠟⠥⠊⠗â â Œ" }, { "input": "squirms", "output": "⠎⠟⠥⠊⠗â â Ž" }, { "input": "squirmy", "output": "⠎⠟⠥⠊⠗â â ½" }, { "input": "squirrel", "output": "⠎⠟⠥⠊⠗⠗⠑⠇" }, { "input": "squirrel's", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠄⠎" }, { "input": "squirreled", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠫" }, { "input": "squirreling", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠌" }, { "input": "squirrels", "output": "⠎⠟⠥⠊⠗⠗⠑⠇⠎" }, { "input": "squirt", "output": "⠎⠟⠥⠊⠗⠞" }, { "input": "squirt's", "output": "⠎⠟⠥⠊⠗⠞⠄⠎" }, { "input": "squirted", "output": "⠎⠟⠥⠊⠗⠞⠫" }, { "input": "squirting", "output": "⠎⠟⠥⠊⠗⠞⠌" }, { "input": "squirts", "output": "⠎⠟⠥⠊⠗⠞⠎" }, { "input": "squish", "output": "⠎⠟⠥⠊⠩" }, { "input": "squish's", "output": "⠎⠟⠥⠊⠩⠄⠎" }, { "input": "squished", "output": "⠎⠟⠥⠊⠩⠫" }, { "input": "squishes", "output": "⠎⠟⠥⠊⠩⠑⠎" }, { "input": "squishier", "output": "⠎⠟⠥⠊⠩⠊⠻" }, { "input": "squishiest", "output": "⠎⠟⠥⠊⠩⠊⠑⠌" }, { "input": "squishing", "output": "⠎⠟⠥⠊⠩⠌" }, { "input": "squishy", "output": "⠎⠟⠥⠊⠩⠽" }, { "input": "stab", "output": "â Œâ â ƒ" }, { "input": "stab's", "output": "â Œâ â ƒâ „â Ž" }, { "input": "stabbed", "output": "â Œâ â †â «" }, { "input": "stabber", "output": "â Œâ â †â »" }, { "input": "stabber's", "output": "â Œâ â †â »â „â Ž" }, { "input": "stabbers", "output": "â Œâ â †â »â Ž" }, { "input": "stabbing", "output": "â Œâ â †â Œ" }, { "input": "stabbing's", "output": "â Œâ â †â Œâ „â Ž" }, { "input": "stabbings", "output": "â Œâ â †â Œâ Ž" }, { "input": "stability", "output": "â Œâ â ƒâ Šâ ‡â °â ½" }, { "input": "stability's", "output": "â Œâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "stabilization", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ  â " }, { "input": "stabilization's", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ  â â „â Ž" }, { "input": "stabilize", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ ‘" }, { "input": "stabilized", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ «" }, { "input": "stabilizer", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ »" }, { "input": "stabilizer's", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ »â „â Ž" }, { "input": "stabilizers", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ »â Ž" }, { "input": "stabilizes", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ ‘â Ž" }, { "input": "stabilizing", "output": "â Œâ â ƒâ Šâ ‡â Šâ µâ Œ" }, { "input": "stable", "output": "â Œâ â ¼" }, { "input": "stable's", "output": "â Œâ â ¼â „â Ž" }, { "input": "stabled", "output": "â Œâ â ¼â ™" }, { "input": "stabler", "output": "â Œâ â ¼â —" }, { "input": "stables", "output": "â Œâ â ¼â Ž" }, { "input": "stablest", "output": "â Œâ â ¼â Œ" }, { "input": "stabling", "output": "â Œâ â ƒâ ‡â Œ" }, { "input": "stabs", "output": "â Œâ â ƒâ Ž" }, { "input": "staccato", "output": "â Œâ â ’â â žâ •" }, { "input": "staccato's", "output": "â Œâ â ’â â žâ •â „â Ž" }, { "input": "staccatos", "output": "â Œâ â ’â â žâ •â Ž" }, { "input": "stack", "output": "â Œâ â ‰â …" }, { "input": "stack's", "output": "â Œâ â ‰â …â „â Ž" }, { "input": "stacked", "output": "â Œâ â ‰â …â «" }, { "input": "stacking", "output": "â Œâ â ‰â …â Œ" }, { "input": "stacks", "output": "â Œâ â ‰â …â Ž" }, { "input": "stadium", "output": "â Œâ â ™â Šâ ¥â " }, { "input": "stadium's", "output": "â Œâ â ™â Šâ ¥â â „â Ž" }, { "input": "stadiums", "output": "â Œâ â ™â Šâ ¥â â Ž" }, { "input": "staff", "output": "â Œâ â ‹â ‹" }, { "input": "staff's", "output": "â Œâ â ‹â ‹â „â Ž" }, { "input": "staffed", "output": "â Œâ â –â «" }, { "input": "staffer", "output": "â Œâ â –â »" }, { "input": "staffer's", "output": "â Œâ â –⠻⠄⠎" }, { "input": "staffers", "output": "â Œâ â –⠻⠎" }, { "input": "staffing", "output": "â Œâ â –â Œ" }, { "input": "staffing's", "output": "â Œâ â –⠌⠄⠎" }, { "input": "staffs", "output": "â Œâ â –â Ž" }, { "input": "stag", "output": "â Œâ â ›" }, { "input": "stag's", "output": "â Œâ â ›â „â Ž" }, { "input": "stage", "output": "â Œâ â ›â ‘" }, { "input": "stage's", "output": "â Œâ â ›â ‘â „â Ž" }, { "input": "stagecoach", "output": "â Œâ â ›â ‘⠉⠕â â ¡" }, { "input": "stagecoach's", "output": "â Œâ â ›â ‘⠉⠕â â ¡â „â Ž" }, { "input": "stagecoaches", "output": "â Œâ â ›â ‘⠉⠕â â ¡â ‘â Ž" }, { "input": "stagecraft's", "output": "â Œâ â ›â ‘⠉⠗â â ‹â žâ „â Ž" }, { "input": "staged", "output": "â Œâ â ›â «" }, { "input": "stagehand", "output": "â Œâ â ›â ‘â “â ¯" }, { "input": "stagehand's", "output": "â Œâ â ›â ‘⠓⠯⠄⠎" }, { "input": "stagehands", "output": "â Œâ â ›â ‘⠓⠯⠎" }, { "input": "stages", "output": "â Œâ â ›â ‘â Ž" }, { "input": "stagflation", "output": "â Œâ â ›â ‹â ‡â  â " }, { "input": "stagflation's", "output": "â Œâ â ›â ‹â ‡â  â â „â Ž" }, { "input": "stagger", "output": "â Œâ â ¶â »" }, { "input": "stagger's", "output": "â Œâ â ¶â »â „â Ž" }, { "input": "staggered", "output": "â Œâ â ¶â »â «" }, { "input": "staggering", "output": "â Œâ â ¶â »â Œ" }, { "input": "staggeringly", "output": "â Œâ â ¶â »â Œâ ‡â ½" }, { "input": "staggers", "output": "â Œâ â ¶â »â Ž" }, { "input": "stagier", "output": "â Œâ â ›â Šâ »" }, { "input": "stagiest", "output": "â Œâ â ›â Šâ ‘â Œ" }, { "input": "staging", "output": "â Œâ â ›â Œ" }, { "input": "staging's", "output": "â Œâ â ›â Œâ „â Ž" }, { "input": "stagings", "output": "â Œâ â ›â Œâ Ž" }, { "input": "stagnancy", "output": "â Œâ â ›â â â â ‰â ½" }, { "input": "stagnancy's", "output": "â Œâ â ›â â â â ‰â ½â „â Ž" }, { "input": "stagnant", "output": "â Œâ â ›â â â â ž" }, { "input": "stagnantly", "output": "â Œâ â ›â â â â žâ ‡â ½" }, { "input": "stagnate", "output": "â Œâ â ›â â â žâ ‘" }, { "input": "stagnated", "output": "â Œâ â ›â â â žâ «" }, { "input": "stagnates", "output": "â Œâ â ›â â â žâ ‘â Ž" }, { "input": "stagnating", "output": "â Œâ â ›â â â žâ Œ" }, { "input": "stagnation", "output": "â Œâ â ›â â  â " }, { "input": "stagnation's", "output": "â Œâ â ›â â  â â „â Ž" }, { "input": "stags", "output": "â Œâ â ›â Ž" }, { "input": "staid", "output": "â Œâ â Šâ ™" }, { "input": "staider", "output": "â Œâ â Šâ ™â »" }, { "input": "staidest", "output": "â Œâ â Šâ ™â ‘â Œ" }, { "input": "staidly", "output": "â Œâ â Šâ ™â ‡â ½" }, { "input": "staidness", "output": "â Œâ â Šâ ™â °â Ž" }, { "input": "staidness's", "output": "â Œâ â Šâ ™â °â Žâ „â Ž" }, { "input": "stain", "output": "â Œâ â ”" }, { "input": "stain's", "output": "â Œâ â ”â „â Ž" }, { "input": "stained", "output": "â Œâ â ”â «" }, { "input": "staining", "output": "â Œâ â ”â Œ" }, { "input": "stainless", "output": "â Œâ â ”⠨⠎" }, { "input": "stainless's", "output": "â Œâ â ”⠨⠎⠄⠎" }, { "input": "stains", "output": "â Œâ â ”â Ž" }, { "input": "stair", "output": "â Œâ â Šâ —" }, { "input": "stair's", "output": "â Œâ â Šâ —â „â Ž" }, { "input": "staircase", "output": "â Œâ â Šâ —â ‰â â Žâ ‘" }, { "input": "staircase's", "output": "â Œâ â Šâ —â ‰â â Žâ ‘â „â Ž" }, { "input": "staircases", "output": "â Œâ â Šâ —â ‰â â Žâ ‘â Ž" }, { "input": "stairs", "output": "â Œâ â Šâ —â Ž" }, { "input": "stairway", "output": "â Œâ â Šâ —â ºâ â ½" }, { "input": "stairway's", "output": "â Œâ â Šâ —â ºâ â ½â „â Ž" }, { "input": "stairways", "output": "â Œâ â Šâ —â ºâ â ½â Ž" }, { "input": "stairwell", "output": "â Œâ â Šâ —⠺⠑⠇⠇" }, { "input": "stairwell's", "output": "â Œâ â Šâ —⠺⠑⠇⠇⠄⠎" }, { "input": "stairwells", "output": "â Œâ â Šâ —⠺⠑⠇⠇⠎" }, { "input": "stake", "output": "â Œâ â …â ‘" }, { "input": "stake's", "output": "â Œâ â …â ‘â „â Ž" }, { "input": "staked", "output": "â Œâ â …â «" }, { "input": "stakeout", "output": "â Œâ â …⠑⠳⠞" }, { "input": "stakeout's", "output": "â Œâ â …⠑⠳⠞⠄⠎" }, { "input": "stakeouts", "output": "â Œâ â …⠑⠳⠞⠎" }, { "input": "stakes", "output": "â Œâ â …â ‘â Ž" }, { "input": "staking", "output": "â Œâ â …â Œ" }, { "input": "stalactite", "output": "â Œâ â ‡â â ‰â žâ Šâ žâ ‘" }, { "input": "stalactite's", "output": "â Œâ â ‡â â ‰â žâ Šâ žâ ‘â „â Ž" }, { "input": "stalactites", "output": "â Œâ â ‡â â ‰â žâ Šâ žâ ‘â Ž" }, { "input": "stalagmite", "output": "â Œâ â ‡â â ›â â Šâ žâ ‘" }, { "input": "stalagmite's", "output": "â Œâ â ‡â â ›â â Šâ žâ ‘â „â Ž" }, { "input": "stalagmites", "output": "â Œâ â ‡â â ›â â Šâ žâ ‘â Ž" }, { "input": "stale", "output": "â Œâ â ‡â ‘" }, { "input": "staled", "output": "â Œâ â ‡â «" }, { "input": "stalemate", "output": "â Œâ â ‡â ‘â â â žâ ‘" }, { "input": "stalemate's", "output": "â Œâ â ‡â ‘â â â žâ ‘â „â Ž" }, { "input": "stalemated", "output": "â Œâ â ‡â ‘â â â žâ «" }, { "input": "stalemates", "output": "â Œâ â ‡â ‘â â â žâ ‘â Ž" }, { "input": "stalemating", "output": "â Œâ â ‡â ‘â â â žâ Œ" }, { "input": "staleness", "output": "â Œâ â ‡â ‘â °â Ž" }, { "input": "staleness's", "output": "â Œâ â ‡â ‘â °â Žâ „â Ž" }, { "input": "staler", "output": "â Œâ â ‡â »" }, { "input": "stales", "output": "â Œâ â ‡â ‘â Ž" }, { "input": "stalest", "output": "â Œâ â ‡â ‘â Œ" }, { "input": "staling", "output": "â Œâ â ‡â Œ" }, { "input": "stalk", "output": "â Œâ â ‡â …" }, { "input": "stalk's", "output": "â Œâ â ‡â …â „â Ž" }, { "input": "stalked", "output": "â Œâ â ‡â …â «" }, { "input": "stalker", "output": "â Œâ â ‡â …â »" }, { "input": "stalker's", "output": "â Œâ â ‡â …⠻⠄⠎" }, { "input": "stalkers", "output": "â Œâ â ‡â …⠻⠎" }, { "input": "stalking", "output": "â Œâ â ‡â …â Œ" }, { "input": "stalking's", "output": "â Œâ â ‡â …⠌⠄⠎" }, { "input": "stalkings", "output": "â Œâ â ‡â …⠌⠎" }, { "input": "stalks", "output": "â Œâ â ‡â …â Ž" }, { "input": "stall", "output": "â Œâ â ‡â ‡" }, { "input": "stall's", "output": "â Œâ â ‡â ‡â „â Ž" }, { "input": "stalled", "output": "â Œâ â ‡â ‡â «" }, { "input": "stalling", "output": "â Œâ â ‡â ‡â Œ" }, { "input": "stallion", "output": "â Œâ â ‡â ‡â Šâ •â " }, { "input": "stallion's", "output": "â Œâ â ‡â ‡â Šâ •â â „â Ž" }, { "input": "stallions", "output": "â Œâ â ‡â ‡â Šâ •â â Ž" }, { "input": "stalls", "output": "â Œâ â ‡â ‡â Ž" }, { "input": "stalwart", "output": "â Œâ â ‡â ºâ œâ ž" }, { "input": "stalwart's", "output": "â Œâ â ‡â ºâ œâ žâ „â Ž" }, { "input": "stalwarts", "output": "â Œâ â ‡â ºâ œâ žâ Ž" }, { "input": "stamen", "output": "â Œâ â â ¢" }, { "input": "stamen's", "output": "â Œâ â â ¢â „â Ž" }, { "input": "stamens", "output": "â Œâ â â ¢â Ž" }, { "input": "stamina", "output": "â Œâ â â ”â " }, { "input": "stamina's", "output": "â Œâ â â ”â â „â Ž" }, { "input": "stammer", "output": "â Œâ â â â »" }, { "input": "stammer's", "output": "â Œâ â â â »â „â Ž" }, { "input": "stammered", "output": "â Œâ â â â »â «" }, { "input": "stammerer", "output": "â Œâ â â â »â »" }, { "input": "stammerer's", "output": "â Œâ â â â »â »â „â Ž" }, { "input": "stammerers", "output": "â Œâ â â â »â »â Ž" }, { "input": "stammering", "output": "â Œâ â â â »â Œ" }, { "input": "stammers", "output": "â Œâ â â â »â Ž" }, { "input": "stamp", "output": "â Œâ â â " }, { "input": "stamp's", "output": "â Œâ â â â „â Ž" }, { "input": "stamped", "output": "â Œâ â â â «" }, { "input": "stampede", "output": "â Œâ â â â «â ‘" }, { "input": "stampede's", "output": "â Œâ â â â «â ‘â „â Ž" }, { "input": "stampeded", "output": "â Œâ â â â «â «" }, { "input": "stampedes", "output": "â Œâ â â â «â ‘â Ž" }, { "input": "stampeding", "output": "â Œâ â â â «â Œ" }, { "input": "stamper", "output": "â Œâ â â â »" }, { "input": "stamper's", "output": "â Œâ â â â »â „â Ž" }, { "input": "stampers", "output": "â Œâ â â â »â Ž" }, { "input": "stamping", "output": "â Œâ â â â Œ" }, { "input": "stamps", "output": "â Œâ â â â Ž" }, { "input": "stance", "output": "⠌⠨⠑" }, { "input": "stance's", "output": "⠌⠨⠑⠄⠎" }, { "input": "stances", "output": "⠌⠨⠑⠎" }, { "input": "stanch", "output": "â Œâ â â ¡" }, { "input": "stanched", "output": "â Œâ â â ¡â «" }, { "input": "stancher", "output": "â Œâ â â ¡â »" }, { "input": "stanches", "output": "â Œâ â â ¡â ‘â Ž" }, { "input": "stanchest", "output": "â Œâ â â ¡â ‘â Œ" }, { "input": "stanching", "output": "â Œâ â â ¡â Œ" }, { "input": "stanchion", "output": "â Œâ â â ¡â Šâ •â " }, { "input": "stanchion's", "output": "â Œâ â â ¡â Šâ •â â „â Ž" }, { "input": "stanchions", "output": "â Œâ â â ¡â Šâ •â â Ž" }, { "input": "stand", "output": "⠌⠯" }, { "input": "stand's", "output": "⠌⠯⠄⠎" }, { "input": "standalone", "output": "⠌⠯â â ‡â •â â ‘" }, { "input": "standard", "output": "⠌⠯⠜⠙" }, { "input": "standard's", "output": "⠌⠯⠜⠙⠄⠎" }, { "input": "standardization", "output": "⠌⠯⠜⠙⠊⠵⠠â " }, { "input": "standardization's", "output": "⠌⠯⠜⠙⠊⠵⠠â â „â Ž" }, { "input": "standardize", "output": "⠌⠯⠜⠙⠊⠵⠑" }, { "input": "standardized", "output": "⠌⠯⠜⠙⠊⠵⠫" }, { "input": "standardizes", "output": "⠌⠯⠜⠙⠊⠵⠑⠎" }, { "input": "standardizing", "output": "⠌⠯⠜⠙⠊⠵⠌" }, { "input": "standards", "output": "⠌⠯⠜⠙⠎" }, { "input": "standby", "output": "⠌⠯⠃⠽" }, { "input": "standby's", "output": "⠌⠯⠃⠽⠄⠎" }, { "input": "standbys", "output": "⠌⠯⠃⠽⠎" }, { "input": "standee", "output": "⠌⠯⠑⠑" }, { "input": "standee's", "output": "⠌⠯⠑⠑⠄⠎" }, { "input": "standees", "output": "⠌⠯⠑⠑⠎" }, { "input": "stander", "output": "⠌⠯⠻" }, { "input": "stander's", "output": "⠌⠯⠻⠄⠎" }, { "input": "standers", "output": "⠌⠯⠻⠎" }, { "input": "standing", "output": "⠌⠯⠌" }, { "input": "standing's", "output": "⠌⠯⠌⠄⠎" }, { "input": "standings", "output": "⠌⠯⠌⠎" }, { "input": "standoff", "output": "⠌⠯⠷⠋" }, { "input": "standoff's", "output": "⠌⠯⠷⠋⠄⠎" }, { "input": "standoffish", "output": "⠌⠯⠷⠋⠊⠩" }, { "input": "standoffs", "output": "⠌⠯⠷⠋⠎" }, { "input": "standout", "output": "⠌⠯⠳⠞" }, { "input": "standout's", "output": "⠌⠯⠳⠞⠄⠎" }, { "input": "standouts", "output": "⠌⠯⠳⠞⠎" }, { "input": "standpoint", "output": "⠌⠯â â •⠔⠞" }, { "input": "standpoint's", "output": "⠌⠯â â •⠔⠞⠄⠎" }, { "input": "standpoints", "output": "⠌⠯â â •⠔⠞⠎" }, { "input": "stands", "output": "⠌⠯⠎" }, { "input": "standstill", "output": "⠌⠯⠌⠊⠇⠇" }, { "input": "standstill's", "output": "⠌⠯⠌⠊⠇⠇⠄⠎" }, { "input": "standstills", "output": "⠌⠯⠌⠊⠇⠇⠎" }, { "input": "stank", "output": "â Œâ â â …" }, { "input": "stanza", "output": "â Œâ â â µâ " }, { "input": "stanza's", "output": "â Œâ â â µâ â „â Ž" }, { "input": "stanzas", "output": "â Œâ â â µâ â Ž" }, { "input": "staph", "output": "â Œâ â â “" }, { "input": "staph's", "output": "â Œâ â â “â „â Ž" }, { "input": "staphylococcal", "output": "â Œâ â â “⠽⠇⠕⠉⠕⠒â â ‡" }, { "input": "staphylococci", "output": "â Œâ â â “⠽⠇⠕⠉⠕⠒⠊" }, { "input": "staphylococcus", "output": "â Œâ â â “⠽⠇⠕⠉⠕⠒⠥⠎" }, { "input": "staphylococcus's", "output": "â Œâ â â “⠽⠇⠕⠉⠕⠒⠥⠎⠄⠎" }, { "input": "staple", "output": "â Œâ â â ‡â ‘" }, { "input": "staple's", "output": "â Œâ â â ‡â ‘â „â Ž" }, { "input": "stapled", "output": "â Œâ â â ‡â «" }, { "input": "stapler", "output": "â Œâ â â ‡â »" }, { "input": "stapler's", "output": "â Œâ â â ‡â »â „â Ž" }, { "input": "staplers", "output": "â Œâ â â ‡â »â Ž" }, { "input": "staples", "output": "â Œâ â â ‡â ‘â Ž" }, { "input": "stapling", "output": "â Œâ â â ‡â Œ" }, { "input": "star", "output": "⠌⠜" }, { "input": "star's", "output": "⠌⠜⠄⠎" }, { "input": "starboard", "output": "⠌⠜⠃⠕⠜⠙" }, { "input": "starboard's", "output": "⠌⠜⠃⠕⠜⠙⠄⠎" }, { "input": "starch", "output": "⠌⠜⠡" }, { "input": "starch's", "output": "⠌⠜⠡⠄⠎" }, { "input": "starched", "output": "⠌⠜⠡⠫" }, { "input": "starches", "output": "⠌⠜⠡⠑⠎" }, { "input": "starchier", "output": "⠌⠜⠡⠊⠻" }, { "input": "starchiest", "output": "⠌⠜⠡⠊⠑⠌" }, { "input": "starchiness", "output": "⠌⠜⠡⠊⠰⠎" }, { "input": "starchiness's", "output": "⠌⠜⠡⠊⠰⠎⠄⠎" }, { "input": "starching", "output": "⠌⠜⠡⠌" }, { "input": "starchy", "output": "⠌⠜⠡⠽" }, { "input": "stardom", "output": "⠌⠜⠙⠕â " }, { "input": "stardom's", "output": "⠌⠜⠙⠕â â „â Ž" }, { "input": "stardust's", "output": "⠌⠜⠙⠥⠌⠄⠎" }, { "input": "stare", "output": "⠌⠜⠑" }, { "input": "stare's", "output": "⠌⠜⠑⠄⠎" }, { "input": "stared", "output": "⠌⠜⠫" }, { "input": "starer", "output": "⠌⠜⠻" }, { "input": "starer's", "output": "⠌⠜⠻⠄⠎" }, { "input": "starers", "output": "⠌⠜⠻⠎" }, { "input": "stares", "output": "⠌⠜⠑⠎" }, { "input": "starfish", "output": "⠌⠜⠋⠊⠩" }, { "input": "starfish's", "output": "⠌⠜⠋⠊⠩⠄⠎" }, { "input": "starfishes", "output": "⠌⠜⠋⠊⠩⠑⠎" }, { "input": "stargazer", "output": "⠌⠜⠛â â µâ »" }, { "input": "stargazer's", "output": "⠌⠜⠛â â µâ »â „â Ž" }, { "input": "stargazers", "output": "⠌⠜⠛â â µâ »â Ž" }, { "input": "staring", "output": "⠌⠜⠌" }, { "input": "stark", "output": "⠌⠜⠅" }, { "input": "starker", "output": "⠌⠜⠅⠻" }, { "input": "starkest", "output": "⠌⠜⠅⠑⠌" }, { "input": "starkly", "output": "⠌⠜⠅⠇⠽" }, { "input": "starkness", "output": "⠌⠜⠅⠰⠎" }, { "input": "starkness's", "output": "⠌⠜⠅⠰⠎⠄⠎" }, { "input": "starless", "output": "⠌⠜⠨⠎" }, { "input": "starlet", "output": "⠌⠜⠇⠑⠞" }, { "input": "starlet's", "output": "⠌⠜⠇⠑⠞⠄⠎" }, { "input": "starlets", "output": "⠌⠜⠇⠑⠞⠎" }, { "input": "starlight", "output": "⠌⠜⠇⠊⠣⠞" }, { "input": "starlight's", "output": "⠌⠜⠇⠊⠣⠞⠄⠎" }, { "input": "starling", "output": "⠌⠜⠇⠌" }, { "input": "starling's", "output": "⠌⠜⠇⠌⠄⠎" }, { "input": "starlings", "output": "⠌⠜⠇⠌⠎" }, { "input": "starlit", "output": "⠌⠜⠇⠊⠞" }, { "input": "starred", "output": "⠌⠜⠗⠫" }, { "input": "starrier", "output": "⠌⠜⠗⠊⠻" }, { "input": "starriest", "output": "⠌⠜⠗⠊⠑⠌" }, { "input": "starring", "output": "⠌⠜⠗⠌" }, { "input": "starry", "output": "⠌⠜⠗⠽" }, { "input": "stars", "output": "⠌⠜⠎" }, { "input": "start", "output": "⠌⠜⠞" }, { "input": "start's", "output": "⠌⠜⠞⠄⠎" }, { "input": "started", "output": "⠌⠜⠞⠫" }, { "input": "starter", "output": "⠌⠜⠞⠻" }, { "input": "starter's", "output": "⠌⠜⠞⠻⠄⠎" }, { "input": "starters", "output": "⠌⠜⠞⠻⠎" }, { "input": "starting", "output": "⠌⠜⠞⠌" }, { "input": "startle", "output": "⠌⠜⠞⠇⠑" }, { "input": "startled", "output": "⠌⠜⠞⠇⠫" }, { "input": "startles", "output": "⠌⠜⠞⠇⠑⠎" }, { "input": "startling", "output": "⠌⠜⠞⠇⠌" }, { "input": "startlingly", "output": "⠌⠜⠞⠇⠌⠇⠽" }, { "input": "starts", "output": "⠌⠜⠞⠎" }, { "input": "starvation", "output": "⠌⠜⠧⠠â " }, { "input": "starvation's", "output": "⠌⠜⠧⠠â â „â Ž" }, { "input": "starve", "output": "⠌⠜⠧⠑" }, { "input": "starved", "output": "⠌⠜⠧⠫" }, { "input": "starveling", "output": "⠌⠜⠧⠑⠇⠌" }, { "input": "starveling's", "output": "⠌⠜⠧⠑⠇⠌⠄⠎" }, { "input": "starvelings", "output": "⠌⠜⠧⠑⠇⠌⠎" }, { "input": "starves", "output": "⠌⠜⠧⠑⠎" }, { "input": "starving", "output": "⠌⠜⠧⠌" }, { "input": "starvings", "output": "⠌⠜⠧⠌⠎" }, { "input": "stash", "output": "â Œâ â ©" }, { "input": "stash's", "output": "â Œâ â ©â „â Ž" }, { "input": "stashed", "output": "â Œâ â ©â «" }, { "input": "stashes", "output": "â Œâ â ©â ‘â Ž" }, { "input": "stashing", "output": "â Œâ â ©â Œ" }, { "input": "stat's", "output": "â Œâ â žâ „â Ž" }, { "input": "state", "output": "â Œâ â žâ ‘" }, { "input": "state's", "output": "â Œâ â žâ ‘â „â Ž" }, { "input": "statecraft", "output": "â Œâ â žâ ‘⠉⠗â â ‹â ž" }, { "input": "statecraft's", "output": "â Œâ â žâ ‘⠉⠗â â ‹â žâ „â Ž" }, { "input": "stated", "output": "â Œâ â žâ «" }, { "input": "statehood", "output": "â Œâ â žâ ‘â “â •â •â ™" }, { "input": "statehood's", "output": "â Œâ â žâ ‘⠓⠕⠕⠙⠄⠎" }, { "input": "statehouse", "output": "â Œâ â žâ ‘⠓⠳⠎⠑" }, { "input": "statehouse's", "output": "â Œâ â žâ ‘⠓⠳⠎⠑⠄⠎" }, { "input": "statehouses", "output": "â Œâ â žâ ‘⠓⠳⠎⠑⠎" }, { "input": "stateless", "output": "â Œâ â žâ ‘⠨⠎" }, { "input": "statelessness's", "output": "â Œâ â žâ ‘⠨⠎⠰⠎⠄⠎" }, { "input": "statelier", "output": "â Œâ â žâ ‘⠇⠊⠻" }, { "input": "stateliest", "output": "â Œâ â žâ ‘⠇⠊⠑⠌" }, { "input": "stateliness", "output": "â Œâ â žâ ‘⠇⠊⠰⠎" }, { "input": "stateliness's", "output": "â Œâ â žâ ‘⠇⠊⠰⠎⠄⠎" }, { "input": "stately", "output": "â Œâ â žâ ‘⠇⠽" }, { "input": "statement", "output": "â Œâ â žâ ‘â °â ž" }, { "input": "statement's", "output": "â Œâ â žâ ‘â °â žâ „â Ž" }, { "input": "statements", "output": "â Œâ â žâ ‘â °â žâ Ž" }, { "input": "stater", "output": "â Œâ â žâ »" }, { "input": "stateroom", "output": "â Œâ â žâ ‘â —â •â •â " }, { "input": "stateroom's", "output": "â Œâ â žâ ‘â —â •â •â â „â Ž" }, { "input": "staterooms", "output": "â Œâ â žâ ‘â —â •â •â â Ž" }, { "input": "states", "output": "â Œâ â žâ ‘â Ž" }, { "input": "stateside", "output": "â Œâ â žâ ‘⠎⠊⠙⠑" }, { "input": "statesman", "output": "â Œâ â žâ ‘â Žâ â â " }, { "input": "statesman's", "output": "â Œâ â žâ ‘â Žâ â â â „â Ž" }, { "input": "statesmanlike", "output": "â Œâ â žâ ‘â Žâ â â â ‡â Šâ …â ‘" }, { "input": "statesmanship", "output": "â Œâ â žâ ‘â Žâ â â â ©â Šâ " }, { "input": "statesmanship's", "output": "â Œâ â žâ ‘â Žâ â â â ©â Šâ â „â Ž" }, { "input": "statesmen", "output": "â Œâ â žâ ‘â Žâ â ¢" }, { "input": "statewide", "output": "â Œâ â žâ ‘⠺⠊⠙⠑" }, { "input": "static", "output": "â Œâ â žâ Šâ ‰" }, { "input": "static's", "output": "â Œâ â žâ Šâ ‰â „â Ž" }, { "input": "statically", "output": "â Œâ â žâ Šâ ‰â  â ½" }, { "input": "stating", "output": "â Œâ â žâ Œ" }, { "input": "station", "output": "⠌⠠â " }, { "input": "station's", "output": "⠌⠠â â „â Ž" }, { "input": "stationary", "output": "⠌⠠â â œâ ½" }, { "input": "stationed", "output": "⠌⠠â â «" }, { "input": "stationer", "output": "⠌⠠â â »" }, { "input": "stationer's", "output": "⠌⠠â â »â „â Ž" }, { "input": "stationers", "output": "⠌⠠â â »â Ž" }, { "input": "stationery", "output": "⠌⠠â â »â ½" }, { "input": "stationery's", "output": "⠌⠠â â »â ½â „â Ž" }, { "input": "stationing", "output": "⠌⠠â â Œ" }, { "input": "stations", "output": "⠌⠠â â Ž" }, { "input": "statistic", "output": "â Œâ â žâ Šâ Œâ Šâ ‰" }, { "input": "statistic's", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â „â Ž" }, { "input": "statistical", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â â ‡" }, { "input": "statistically", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â  â ½" }, { "input": "statistician", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Šâ â " }, { "input": "statistician's", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Šâ â â „â Ž" }, { "input": "statisticians", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Šâ â â Ž" }, { "input": "statistics", "output": "â Œâ â žâ Šâ Œâ Šâ ‰â Ž" }, { "input": "stats", "output": "â Œâ â žâ Ž" }, { "input": "statuary", "output": "â Œâ â žâ ¥â œâ ½" }, { "input": "statuary's", "output": "â Œâ â žâ ¥â œâ ½â „â Ž" }, { "input": "statue", "output": "â Œâ â žâ ¥â ‘" }, { "input": "statue's", "output": "â Œâ â žâ ¥â ‘â „â Ž" }, { "input": "statues", "output": "â Œâ â žâ ¥â ‘â Ž" }, { "input": "statuesque", "output": "â Œâ â žâ ¥â ‘⠎⠟⠥⠑" }, { "input": "statuette", "output": "â Œâ â žâ ¥â ‘â žâ žâ ‘" }, { "input": "statuette's", "output": "â Œâ â žâ ¥â ‘â žâ žâ ‘â „â Ž" }, { "input": "statuettes", "output": "â Œâ â žâ ¥â ‘â žâ žâ ‘â Ž" }, { "input": "stature", "output": "â Œâ â žâ ¥â —â ‘" }, { "input": "stature's", "output": "â Œâ â žâ ¥â —â ‘â „â Ž" }, { "input": "statures", "output": "â Œâ â žâ ¥â —â ‘â Ž" }, { "input": "status", "output": "â Œâ â žâ ¥â Ž" }, { "input": "status's", "output": "â Œâ â žâ ¥â Žâ „â Ž" }, { "input": "statuses", "output": "â Œâ â žâ ¥â Žâ ‘â Ž" }, { "input": "statute", "output": "â Œâ â žâ ¥â žâ ‘" }, { "input": "statute's", "output": "â Œâ â žâ ¥â žâ ‘â „â Ž" }, { "input": "statutes", "output": "â Œâ â žâ ¥â žâ ‘â Ž" }, { "input": "statutory", "output": "â Œâ â žâ ¥â žâ •â —â ½" }, { "input": "staunch", "output": "â Œâ â ¥â â ¡" }, { "input": "staunched", "output": "â Œâ â ¥â â ¡â «" }, { "input": "stauncher", "output": "â Œâ â ¥â â ¡â »" }, { "input": "staunches", "output": "â Œâ â ¥â â ¡â ‘â Ž" }, { "input": "staunchest", "output": "â Œâ â ¥â â ¡â ‘â Œ" }, { "input": "staunching", "output": "â Œâ â ¥â â ¡â Œ" }, { "input": "staunchly", "output": "â Œâ â ¥â â ¡â ‡â ½" }, { "input": "staunchness's", "output": "â Œâ â ¥â â ¡â °â Žâ „â Ž" }, { "input": "stave", "output": "â Œâ â §â ‘" }, { "input": "stave's", "output": "â Œâ â §â ‘â „â Ž" }, { "input": "staved", "output": "â Œâ â §â «" }, { "input": "staves", "output": "â Œâ â §â ‘â Ž" }, { "input": "staving", "output": "â Œâ â §â Œ" }, { "input": "stay", "output": "â Œâ â ½" }, { "input": "stay's", "output": "â Œâ â ½â „â Ž" }, { "input": "stayed", "output": "â Œâ â ½â «" }, { "input": "staying", "output": "â Œâ â ½â Œ" }, { "input": "stays", "output": "â Œâ â ½â Ž" }, { "input": "stead", "output": "⠌⠂⠙" }, { "input": "stead's", "output": "⠌⠂⠙⠄⠎" }, { "input": "steadfast", "output": "⠌⠂⠙⠋â â Œ" }, { "input": "steadfastly", "output": "⠌⠂⠙⠋â â Œâ ‡â ½" }, { "input": "steadfastness", "output": "⠌⠂⠙⠋â â Œâ °â Ž" }, { "input": "steadfastness's", "output": "⠌⠂⠙⠋â â Œâ °â Žâ „â Ž" }, { "input": "steadied", "output": "⠌⠂⠙⠊⠫" }, { "input": "steadier", "output": "⠌⠂⠙⠊⠻" }, { "input": "steadies", "output": "⠌⠂⠙⠊⠑⠎" }, { "input": "steadiest", "output": "⠌⠂⠙⠊⠑⠌" }, { "input": "steadily", "output": "⠌⠂⠙⠊⠇⠽" }, { "input": "steadiness", "output": "⠌⠂⠙⠊⠰⠎" }, { "input": "steadiness's", "output": "⠌⠂⠙⠊⠰⠎⠄⠎" }, { "input": "steads", "output": "⠌⠂⠙⠎" }, { "input": "steady", "output": "⠌⠂⠙⠽" }, { "input": "steady's", "output": "⠌⠂⠙⠽⠄⠎" }, { "input": "steadying", "output": "⠌⠂⠙⠽⠌" }, { "input": "steak", "output": "⠌⠂⠅" }, { "input": "steak's", "output": "⠌⠂⠅⠄⠎" }, { "input": "steakhouse", "output": "⠌⠂⠅⠓⠳⠎⠑" }, { "input": "steakhouse's", "output": "⠌⠂⠅⠓⠳⠎⠑⠄⠎" }, { "input": "steakhouses", "output": "⠌⠂⠅⠓⠳⠎⠑⠎" }, { "input": "steaks", "output": "⠌⠂⠅⠎" }, { "input": "steal", "output": "⠌⠂⠇" }, { "input": "steal's", "output": "⠌⠂⠇⠄⠎" }, { "input": "stealing", "output": "⠌⠂⠇⠌" }, { "input": "steals", "output": "⠌⠂⠇⠎" }, { "input": "stealth", "output": "⠌⠂⠇⠹" }, { "input": "stealth's", "output": "⠌⠂⠇⠹⠄⠎" }, { "input": "stealthier", "output": "⠌⠂⠇⠹⠊⠻" }, { "input": "stealthiest", "output": "⠌⠂⠇⠹⠊⠑⠌" }, { "input": "stealthily", "output": "⠌⠂⠇⠹⠊⠇⠽" }, { "input": "stealthiness", "output": "⠌⠂⠇⠹⠊⠰⠎" }, { "input": "stealthiness's", "output": "⠌⠂⠇⠹⠊⠰⠎⠄⠎" }, { "input": "stealthy", "output": "⠌⠂⠇⠹⠽" }, { "input": "steam", "output": "⠌⠂â " }, { "input": "steam's", "output": "⠌⠂â â „â Ž" }, { "input": "steamboat", "output": "⠌⠂â â ƒâ •â â ž" }, { "input": "steamboat's", "output": "⠌⠂â â ƒâ •â â žâ „â Ž" }, { "input": "steamboats", "output": "⠌⠂â â ƒâ •â â žâ Ž" }, { "input": "steamed", "output": "⠌⠂â â «" }, { "input": "steamer", "output": "⠌⠂â â »" }, { "input": "steamer's", "output": "⠌⠂â â »â „â Ž" }, { "input": "steamers", "output": "⠌⠂â â »â Ž" }, { "input": "steamfitter", "output": "⠌⠂â â ‹â Šâ žâ žâ »" }, { "input": "steamfitter's", "output": "⠌⠂â â ‹â Šâ žâ žâ »â „â Ž" }, { "input": "steamfitters", "output": "⠌⠂â â ‹â Šâ žâ žâ »â Ž" }, { "input": "steamfitting", "output": "⠌⠂â â ‹â Šâ žâ žâ Œ" }, { "input": "steamfitting's", "output": "⠌⠂â â ‹â Šâ žâ žâ Œâ „â Ž" }, { "input": "steamier", "output": "⠌⠂â â Šâ »" }, { "input": "steamiest", "output": "⠌⠂â â Šâ ‘â Œ" }, { "input": "steaminess", "output": "⠌⠂â â Šâ °â Ž" }, { "input": "steaminess's", "output": "⠌⠂â â Šâ °â Žâ „â Ž" }, { "input": "steaming", "output": "⠌⠂â â Œ" }, { "input": "steamroll", "output": "⠌⠂â â —⠕⠇⠇" }, { "input": "steamrolled", "output": "⠌⠂â â —⠕⠇⠇⠫" }, { "input": "steamroller", "output": "⠌⠂â â —⠕⠇⠇⠻" }, { "input": "steamroller's", "output": "⠌⠂â â —⠕⠇⠇⠻⠄⠎" }, { "input": "steamrollered", "output": "⠌⠂â â —⠕⠇⠇⠻⠫" }, { "input": "steamrollering", "output": "⠌⠂â â —⠕⠇⠇⠻⠌" }, { "input": "steamrollers", "output": "⠌⠂â â —⠕⠇⠇⠻⠎" }, { "input": "steamrolling", "output": "⠌⠂â â —⠕⠇⠇⠌" }, { "input": "steamrolls", "output": "⠌⠂â â —⠕⠇⠇⠎" }, { "input": "steams", "output": "⠌⠂â â Ž" }, { "input": "steamship", "output": "⠌⠂â â ©â Šâ " }, { "input": "steamship's", "output": "⠌⠂â â ©â Šâ â „â Ž" }, { "input": "steamships", "output": "⠌⠂â â ©â Šâ â Ž" }, { "input": "steamy", "output": "⠌⠂â â ½" }, { "input": "steed", "output": "⠌⠑⠫" }, { "input": "steed's", "output": "⠌⠑⠫⠄⠎" }, { "input": "steeds", "output": "⠌⠑⠫⠎" }, { "input": "steel", "output": "⠌⠑⠑⠇" }, { "input": "steel's", "output": "⠌⠑⠑⠇⠄⠎" }, { "input": "steeled", "output": "⠌⠑⠑⠇⠫" }, { "input": "steelier", "output": "⠌⠑⠑⠇⠊⠻" }, { "input": "steeliest", "output": "⠌⠑⠑⠇⠊⠑⠌" }, { "input": "steeliness", "output": "⠌⠑⠑⠇⠊⠰⠎" }, { "input": "steeliness's", "output": "⠌⠑⠑⠇⠊⠰⠎⠄⠎" }, { "input": "steeling", "output": "⠌⠑⠑⠇⠌" }, { "input": "steels", "output": "⠌⠑⠑⠇⠎" }, { "input": "steelworks's", "output": "⠌⠑⠑⠇â â ºâ Žâ „â Ž" }, { "input": "steely", "output": "⠌⠑⠑⠇⠽" }, { "input": "steelyard", "output": "⠌⠑⠑⠇⠽⠜⠙" }, { "input": "steelyard's", "output": "⠌⠑⠑⠇⠽⠜⠙⠄⠎" }, { "input": "steelyards", "output": "⠌⠑⠑⠇⠽⠜⠙⠎" }, { "input": "steep", "output": "⠌⠑⠑â " }, { "input": "steep's", "output": "⠌⠑⠑â â „â Ž" }, { "input": "steeped", "output": "⠌⠑⠑â â «" }, { "input": "steeper", "output": "⠌⠑⠑â â »" }, { "input": "steepest", "output": "⠌⠑⠑â â ‘â Œ" }, { "input": "steeping", "output": "⠌⠑⠑â â Œ" }, { "input": "steeple", "output": "⠌⠑⠑â â ‡â ‘" }, { "input": "steeple's", "output": "⠌⠑⠑â â ‡â ‘â „â Ž" }, { "input": "steeplechase", "output": "⠌⠑⠑â â ‡â ‘â ¡â â Žâ ‘" }, { "input": "steeplechase's", "output": "⠌⠑⠑â â ‡â ‘â ¡â â Žâ ‘â „â Ž" }, { "input": "steeplechases", "output": "⠌⠑⠑â â ‡â ‘â ¡â â Žâ ‘â Ž" }, { "input": "steeplejack", "output": "⠌⠑⠑â â ‡â ‘â šâ â ‰â …" }, { "input": "steeplejack's", "output": "⠌⠑⠑â â ‡â ‘â šâ â ‰â …â „â Ž" }, { "input": "steeplejacks", "output": "⠌⠑⠑â â ‡â ‘â šâ â ‰â …â Ž" }, { "input": "steeples", "output": "⠌⠑⠑â â ‡â ‘â Ž" }, { "input": "steeply", "output": "⠌⠑⠑â â ‡â ½" }, { "input": "steepness", "output": "⠌⠑⠑â â °â Ž" }, { "input": "steepness's", "output": "⠌⠑⠑â â °â Žâ „â Ž" }, { "input": "steeps", "output": "⠌⠑⠑â â Ž" }, { "input": "steer", "output": "⠌⠑⠻" }, { "input": "steer's", "output": "⠌⠑⠻⠄⠎" }, { "input": "steerable", "output": "⠌⠑⠻â â ¼" }, { "input": "steerage", "output": "⠌⠑⠻â â ›â ‘" }, { "input": "steerage's", "output": "⠌⠑⠻â â ›â ‘â „â Ž" }, { "input": "steered", "output": "⠌⠑⠻⠫" }, { "input": "steering", "output": "⠌⠑⠻⠌" }, { "input": "steering's", "output": "⠌⠑⠻⠌⠄⠎" }, { "input": "steers", "output": "⠌⠑⠻⠎" }, { "input": "steersman", "output": "⠌⠑⠻⠎â â â " }, { "input": "steersman's", "output": "⠌⠑⠻⠎â â â â „â Ž" }, { "input": "steersmen", "output": "⠌⠑⠻⠎â â ¢" }, { "input": "stegosauri", "output": "⠌⠑⠛⠕⠎â â ¥â —â Š" }, { "input": "stegosaurus", "output": "⠌⠑⠛⠕⠎â â ¥â —⠥⠎" }, { "input": "stegosaurus's", "output": "⠌⠑⠛⠕⠎â â ¥â —⠥⠎⠄⠎" }, { "input": "stegosauruses", "output": "⠌⠑⠛⠕⠎â â ¥â —⠥⠎⠑⠎" }, { "input": "stein", "output": "⠌⠑⠔" }, { "input": "stein's", "output": "⠌⠑⠔⠄⠎" }, { "input": "steins", "output": "⠌⠑⠔⠎" }, { "input": "stellar", "output": "⠌⠑⠇⠇⠜" }, { "input": "stem", "output": "⠌⠑â " }, { "input": "stem's", "output": "⠌⠑â â „â Ž" }, { "input": "stemless", "output": "⠌⠑â â ¨â Ž" }, { "input": "stemmed", "output": "⠌⠑â â â «" }, { "input": "stemming", "output": "⠌⠑â â â Œ" }, { "input": "stems", "output": "⠌⠑â â Ž" }, { "input": "stemware", "output": "⠌⠑â â ºâ œâ ‘" }, { "input": "stemware's", "output": "⠌⠑â â ºâ œâ ‘â „â Ž" }, { "input": "stench", "output": "⠌⠢⠡" }, { "input": "stench's", "output": "⠌⠢⠡⠄⠎" }, { "input": "stenches", "output": "⠌⠢⠡⠑⠎" }, { "input": "stencil", "output": "⠌⠢⠉⠊⠇" }, { "input": "stencil's", "output": "⠌⠢⠉⠊⠇⠄⠎" }, { "input": "stenciled", "output": "⠌⠢⠉⠊⠇⠫" }, { "input": "stenciling", "output": "⠌⠢⠉⠊⠇⠌" }, { "input": "stencils", "output": "⠌⠢⠉⠊⠇⠎" }, { "input": "stenographer", "output": "⠌⠢⠕⠛⠗â â â “â »" }, { "input": "stenographer's", "output": "⠌⠢⠕⠛⠗â â â “⠻⠄⠎" }, { "input": "stenographers", "output": "⠌⠢⠕⠛⠗â â â “⠻⠎" }, { "input": "stenographic", "output": "⠌⠢⠕⠛⠗â â â “â Šâ ‰" }, { "input": "stenography", "output": "⠌⠢⠕⠛⠗â â â “â ½" }, { "input": "stenography's", "output": "⠌⠢⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "stentorian", "output": "⠌⠢⠞⠕⠗⠊â â " }, { "input": "step", "output": "⠌⠑â " }, { "input": "step's", "output": "⠌⠑â â „â Ž" }, { "input": "stepbrother", "output": "⠌⠑â â ƒâ —⠕⠮⠗" }, { "input": "stepbrother's", "output": "⠌⠑â â ƒâ —⠕⠮⠗⠄⠎" }, { "input": "stepbrothers", "output": "⠌⠑â â ƒâ —⠕⠮⠗⠎" }, { "input": "stepchild", "output": "⠌⠑â â ¡â Šâ ‡â ™" }, { "input": "stepchild's", "output": "⠌⠑â â ¡â Šâ ‡â ™â „â Ž" }, { "input": "stepchildren", "output": "⠌⠑â â ¡â " }, { "input": "stepdaughter", "output": "⠌⠑â â ™â â ¥â £â žâ »" }, { "input": "stepdaughter's", "output": "⠌⠑â â ™â â ¥â £â žâ »â „â Ž" }, { "input": "stepdaughters", "output": "⠌⠑â â ™â â ¥â £â žâ »â Ž" }, { "input": "stepfather", "output": "⠌⠑â â â ‹" }, { "input": "stepfather's", "output": "⠌⠑â â â ‹â „â Ž" }, { "input": "stepfathers", "output": "⠌⠑â â â ‹â Ž" }, { "input": "stepladder", "output": "⠌⠑â â ‡â â ²â »" }, { "input": "stepladder's", "output": "⠌⠑â â ‡â â ²â »â „â Ž" }, { "input": "stepladders", "output": "⠌⠑â â ‡â â ²â »â Ž" }, { "input": "stepmother", "output": "⠌⠑â â â " }, { "input": "stepmother's", "output": "⠌⠑â â â â „â Ž" }, { "input": "stepmothers", "output": "⠌⠑â â â â Ž" }, { "input": "stepparent", "output": "⠌⠑â â â œâ ¢â ž" }, { "input": "stepparent's", "output": "⠌⠑â â â œâ ¢â žâ „â Ž" }, { "input": "stepparents", "output": "⠌⠑â â â œâ ¢â žâ Ž" }, { "input": "steppe", "output": "⠌⠑â â â ‘" }, { "input": "steppe's", "output": "⠌⠑â â â ‘â „â Ž" }, { "input": "stepped", "output": "⠌⠑â â â «" }, { "input": "stepper", "output": "⠌⠑â â â »" }, { "input": "stepper's", "output": "⠌⠑â â â »â „â Ž" }, { "input": "steppers", "output": "⠌⠑â â â »â Ž" }, { "input": "steppes", "output": "⠌⠑â â â ‘â Ž" }, { "input": "stepping", "output": "⠌⠑â â â Œ" }, { "input": "steppingstone", "output": "⠌⠑â â â Œâ Œâ â •" }, { "input": "steppingstone's", "output": "⠌⠑â â â Œâ Œâ â •â „â Ž" }, { "input": "steppingstones", "output": "⠌⠑â â â Œâ Œâ â •â Ž" }, { "input": "steps", "output": "⠌⠑â â Ž" }, { "input": "stepsister", "output": "⠌⠑â â Žâ Šâ Œâ »" }, { "input": "stepsister's", "output": "⠌⠑â â Žâ Šâ Œâ »â „â Ž" }, { "input": "stepsisters", "output": "⠌⠑â â Žâ Šâ Œâ »â Ž" }, { "input": "stepson", "output": "⠌⠑â â Žâ •â " }, { "input": "stepson's", "output": "⠌⠑â â Žâ •â â „â Ž" }, { "input": "stepsons", "output": "⠌⠑â â Žâ •â â Ž" }, { "input": "stereo", "output": "⠌⠻⠑⠕" }, { "input": "stereo's", "output": "⠌⠻⠑⠕⠄⠎" }, { "input": "stereophonic", "output": "⠌⠻⠑⠕â â “â •â â Šâ ‰" }, { "input": "stereos", "output": "⠌⠻⠑⠕⠎" }, { "input": "stereoscope", "output": "⠌⠻⠑⠕⠎⠉⠕â â ‘" }, { "input": "stereoscope's", "output": "⠌⠻⠑⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "stereoscopes", "output": "⠌⠻⠑⠕⠎⠉⠕â â ‘â Ž" }, { "input": "stereotype", "output": "⠌⠻⠑⠕⠞⠽â â ‘" }, { "input": "stereotype's", "output": "⠌⠻⠑⠕⠞⠽â â ‘â „â Ž" }, { "input": "stereotyped", "output": "⠌⠻⠑⠕⠞⠽â â «" }, { "input": "stereotypes", "output": "⠌⠻⠑⠕⠞⠽â â ‘â Ž" }, { "input": "stereotypical", "output": "⠌⠻⠑⠕⠞⠽â â Šâ ‰â â ‡" }, { "input": "stereotyping", "output": "⠌⠻⠑⠕⠞⠽â â Œ" }, { "input": "sterile", "output": "⠌⠻⠊⠇⠑" }, { "input": "sterility", "output": "⠌⠻⠊⠇⠰⠽" }, { "input": "sterility's", "output": "⠌⠻⠊⠇⠰⠽⠄⠎" }, { "input": "sterilization", "output": "⠌⠻⠊⠇⠊⠵⠠â " }, { "input": "sterilization's", "output": "⠌⠻⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "sterilizations", "output": "⠌⠻⠊⠇⠊⠵⠠â â Ž" }, { "input": "sterilize", "output": "⠌⠻⠊⠇⠊⠵⠑" }, { "input": "sterilized", "output": "⠌⠻⠊⠇⠊⠵⠫" }, { "input": "sterilizer", "output": "⠌⠻⠊⠇⠊⠵⠻" }, { "input": "sterilizer's", "output": "⠌⠻⠊⠇⠊⠵⠻⠄⠎" }, { "input": "sterilizers", "output": "⠌⠻⠊⠇⠊⠵⠻⠎" }, { "input": "sterilizes", "output": "⠌⠻⠊⠇⠊⠵⠑⠎" }, { "input": "sterilizing", "output": "⠌⠻⠊⠇⠊⠵⠌" }, { "input": "sterling", "output": "⠌⠻⠇⠌" }, { "input": "sterling's", "output": "⠌⠻⠇⠌⠄⠎" }, { "input": "stern", "output": "⠌⠻â " }, { "input": "stern's", "output": "⠌⠻â â „â Ž" }, { "input": "sterner", "output": "⠌⠻â â »" }, { "input": "sternest", "output": "⠌⠻â â ‘â Œ" }, { "input": "sternly", "output": "⠌⠻â â ‡â ½" }, { "input": "sternness", "output": "⠌⠻â â °â Ž" }, { "input": "sternness's", "output": "⠌⠻â â °â Žâ „â Ž" }, { "input": "sterns", "output": "⠌⠻â â Ž" }, { "input": "sternum", "output": "⠌⠻â â ¥â " }, { "input": "sternum's", "output": "⠌⠻â â ¥â â „â Ž" }, { "input": "sternums", "output": "⠌⠻â â ¥â â Ž" }, { "input": "steroid", "output": "⠌⠻⠕⠊⠙" }, { "input": "steroid's", "output": "⠌⠻⠕⠊⠙⠄⠎" }, { "input": "steroidal", "output": "⠌⠻⠕⠊⠙â â ‡" }, { "input": "steroids", "output": "⠌⠻⠕⠊⠙⠎" }, { "input": "stertorous", "output": "⠌⠻⠞⠕⠗⠳⠎" }, { "input": "stet", "output": "⠌⠑⠞" }, { "input": "stethoscope", "output": "⠌⠑⠹⠕⠎⠉⠕â â ‘" }, { "input": "stethoscope's", "output": "⠌⠑⠹⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "stethoscopes", "output": "⠌⠑⠹⠕⠎⠉⠕â â ‘â Ž" }, { "input": "stets", "output": "⠌⠑⠞⠎" }, { "input": "stetted", "output": "⠌⠑⠞⠞⠫" }, { "input": "stetting", "output": "⠌⠑⠞⠞⠌" }, { "input": "stevedore", "output": "⠌⠑⠧⠫⠕⠗⠑" }, { "input": "stevedore's", "output": "⠌⠑⠧⠫⠕⠗⠑⠄⠎" }, { "input": "stevedores", "output": "⠌⠑⠧⠫⠕⠗⠑⠎" }, { "input": "stew", "output": "⠌⠑⠺" }, { "input": "stew's", "output": "⠌⠑⠺⠄⠎" }, { "input": "steward", "output": "⠌⠑⠺⠜⠙" }, { "input": "steward's", "output": "⠌⠑⠺⠜⠙⠄⠎" }, { "input": "stewarded", "output": "⠌⠑⠺⠜⠙⠫" }, { "input": "stewardess", "output": "⠌⠑⠺⠜⠙⠑⠎⠎" }, { "input": "stewardess's", "output": "⠌⠑⠺⠜⠙⠑⠎⠎⠄⠎" }, { "input": "stewardesses", "output": "⠌⠑⠺⠜⠙⠑⠎⠎⠑⠎" }, { "input": "stewarding", "output": "⠌⠑⠺⠜⠙⠌" }, { "input": "stewards", "output": "⠌⠑⠺⠜⠙⠎" }, { "input": "stewardship", "output": "⠌⠑⠺⠜⠙⠩⠊â " }, { "input": "stewardship's", "output": "⠌⠑⠺⠜⠙⠩⠊â â „â Ž" }, { "input": "stewed", "output": "⠌⠑⠺⠫" }, { "input": "stewing", "output": "⠌⠑⠺⠌" }, { "input": "stews", "output": "⠌⠑⠺⠎" }, { "input": "stick", "output": "⠌⠊⠉⠅" }, { "input": "stick's", "output": "⠌⠊⠉⠅⠄⠎" }, { "input": "sticker", "output": "⠌⠊⠉⠅⠻" }, { "input": "sticker's", "output": "⠌⠊⠉⠅⠻⠄⠎" }, { "input": "stickers", "output": "⠌⠊⠉⠅⠻⠎" }, { "input": "stickier", "output": "⠌⠊⠉⠅⠊⠻" }, { "input": "stickies", "output": "⠌⠊⠉⠅⠊⠑⠎" }, { "input": "stickiest", "output": "⠌⠊⠉⠅⠊⠑⠌" }, { "input": "stickily", "output": "⠌⠊⠉⠅⠊⠇⠽" }, { "input": "stickiness", "output": "⠌⠊⠉⠅⠊⠰⠎" }, { "input": "stickiness's", "output": "⠌⠊⠉⠅⠊⠰⠎⠄⠎" }, { "input": "sticking", "output": "⠌⠊⠉⠅⠌" }, { "input": "stickleback", "output": "⠌⠊⠉⠅⠇⠑⠃â â ‰â …" }, { "input": "stickleback's", "output": "⠌⠊⠉⠅⠇⠑⠃â â ‰â …â „â Ž" }, { "input": "sticklebacks", "output": "⠌⠊⠉⠅⠇⠑⠃â â ‰â …â Ž" }, { "input": "stickler", "output": "⠌⠊⠉⠅⠇⠻" }, { "input": "stickler's", "output": "⠌⠊⠉⠅⠇⠻⠄⠎" }, { "input": "sticklers", "output": "⠌⠊⠉⠅⠇⠻⠎" }, { "input": "stickpin", "output": "⠌⠊⠉⠅â â ”" }, { "input": "stickpin's", "output": "⠌⠊⠉⠅â â ”â „â Ž" }, { "input": "stickpins", "output": "⠌⠊⠉⠅â â ”â Ž" }, { "input": "sticks", "output": "⠌⠊⠉⠅⠎" }, { "input": "stickup", "output": "⠌⠊⠉⠅⠥â " }, { "input": "stickup's", "output": "⠌⠊⠉⠅⠥â â „â Ž" }, { "input": "stickups", "output": "⠌⠊⠉⠅⠥â â Ž" }, { "input": "sticky", "output": "⠌⠊⠉⠅⠽" }, { "input": "sticky's", "output": "⠌⠊⠉⠅⠽⠄⠎" }, { "input": "sties", "output": "⠌⠊⠑⠎" }, { "input": "stiff", "output": "⠌⠊⠋⠋" }, { "input": "stiff's", "output": "⠌⠊⠋⠋⠄⠎" }, { "input": "stiffed", "output": "⠌⠊⠖⠫" }, { "input": "stiffen", "output": "⠌⠊⠖⠢" }, { "input": "stiffened", "output": "⠌⠊⠖⠢⠫" }, { "input": "stiffener", "output": "⠌⠊⠖⠢⠻" }, { "input": "stiffener's", "output": "⠌⠊⠖⠢⠻⠄⠎" }, { "input": "stiffeners", "output": "⠌⠊⠖⠢⠻⠎" }, { "input": "stiffening", "output": "⠌⠊⠖⠢⠌" }, { "input": "stiffening's", "output": "⠌⠊⠖⠢⠌⠄⠎" }, { "input": "stiffens", "output": "⠌⠊⠖⠢⠎" }, { "input": "stiffer", "output": "⠌⠊⠖⠻" }, { "input": "stiffest", "output": "⠌⠊⠖⠑⠌" }, { "input": "stiffing", "output": "⠌⠊⠖⠌" }, { "input": "stiffly", "output": "⠌⠊⠖⠇⠽" }, { "input": "stiffness", "output": "⠌⠊⠖⠰⠎" }, { "input": "stiffness's", "output": "⠌⠊⠖⠰⠎⠄⠎" }, { "input": "stiffs", "output": "⠌⠊⠖⠎" }, { "input": "stifle", "output": "⠌⠊⠋⠇⠑" }, { "input": "stifled", "output": "⠌⠊⠋⠇⠫" }, { "input": "stifles", "output": "⠌⠊⠋⠇⠑⠎" }, { "input": "stifling", "output": "⠌⠊⠋⠇⠌" }, { "input": "stiflings", "output": "⠌⠊⠋⠇⠌⠎" }, { "input": "stigma", "output": "⠌⠊⠛â â " }, { "input": "stigma's", "output": "⠌⠊⠛â â â „â Ž" }, { "input": "stigmas", "output": "⠌⠊⠛â â â Ž" }, { "input": "stigmata", "output": "⠌⠊⠛â â â žâ " }, { "input": "stigmatic", "output": "⠌⠊⠛â â â žâ Šâ ‰" }, { "input": "stigmatization", "output": "⠌⠊⠛â â â žâ Šâ µâ  â " }, { "input": "stigmatization's", "output": "⠌⠊⠛â â â žâ Šâ µâ  â â „â Ž" }, { "input": "stigmatize", "output": "⠌⠊⠛â â â žâ Šâ µâ ‘" }, { "input": "stigmatized", "output": "⠌⠊⠛â â â žâ Šâ µâ «" }, { "input": "stigmatizes", "output": "⠌⠊⠛â â â žâ Šâ µâ ‘â Ž" }, { "input": "stigmatizing", "output": "⠌⠊⠛â â â žâ Šâ µâ Œ" }, { "input": "stile", "output": "⠌⠊⠇⠑" }, { "input": "stile's", "output": "⠌⠊⠇⠑⠄⠎" }, { "input": "stiles", "output": "⠌⠊⠇⠑⠎" }, { "input": "stiletto", "output": "⠌⠊⠇⠑⠞⠞⠕" }, { "input": "stiletto's", "output": "⠌⠊⠇⠑⠞⠞⠕⠄⠎" }, { "input": "stilettos", "output": "⠌⠊⠇⠑⠞⠞⠕⠎" }, { "input": "still", "output": "â Œ" }, { "input": "still's", "output": "⠌⠄⠎" }, { "input": "stillbirth", "output": "⠌⠊⠇⠇⠃⠊⠗⠹" }, { "input": "stillbirth's", "output": "⠌⠊⠇⠇⠃⠊⠗⠹⠄⠎" }, { "input": "stillbirths", "output": "⠌⠊⠇⠇⠃⠊⠗⠹⠎" }, { "input": "stillborn", "output": "⠌⠊⠇⠇⠃⠕⠗â " }, { "input": "stilled", "output": "⠌⠊⠇⠇⠫" }, { "input": "stiller", "output": "⠌⠊⠇⠇⠻" }, { "input": "stillest", "output": "⠌⠊⠇⠇⠑⠌" }, { "input": "stilling", "output": "⠌⠊⠇⠇⠌" }, { "input": "stillness", "output": "⠌⠊⠇⠇⠰⠎" }, { "input": "stillness's", "output": "⠌⠊⠇⠇⠰⠎⠄⠎" }, { "input": "stills", "output": "⠌⠊⠇⠇⠎" }, { "input": "stilt", "output": "⠌⠊⠇⠞" }, { "input": "stilt's", "output": "⠌⠊⠇⠞⠄⠎" }, { "input": "stilted", "output": "⠌⠊⠇⠞⠫" }, { "input": "stilts", "output": "⠌⠊⠇⠞⠎" }, { "input": "stimulant", "output": "⠌⠊â â ¥â ‡â â â ž" }, { "input": "stimulant's", "output": "⠌⠊â â ¥â ‡â â â žâ „â Ž" }, { "input": "stimulants", "output": "⠌⠊â â ¥â ‡â â â žâ Ž" }, { "input": "stimulate", "output": "⠌⠊â â ¥â ‡â â žâ ‘" }, { "input": "stimulated", "output": "⠌⠊â â ¥â ‡â â žâ «" }, { "input": "stimulates", "output": "⠌⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "stimulating", "output": "⠌⠊â â ¥â ‡â â žâ Œ" }, { "input": "stimulation", "output": "⠌⠊â â ¥â ‡â  â " }, { "input": "stimulation's", "output": "⠌⠊â â ¥â ‡â  â â „â Ž" }, { "input": "stimuli", "output": "⠌⠊â â ¥â ‡â Š" }, { "input": "stimulus", "output": "⠌⠊â â ¥â ‡â ¥â Ž" }, { "input": "stimulus's", "output": "⠌⠊â â ¥â ‡â ¥â Žâ „â Ž" }, { "input": "sting", "output": "⠌⠌" }, { "input": "sting's", "output": "⠌⠌⠄⠎" }, { "input": "stinger", "output": "⠌⠌⠻" }, { "input": "stinger's", "output": "⠌⠌⠻⠄⠎" }, { "input": "stingers", "output": "⠌⠌⠻⠎" }, { "input": "stingier", "output": "⠌⠌⠊⠻" }, { "input": "stingiest", "output": "⠌⠌⠊⠑⠌" }, { "input": "stingily", "output": "⠌⠌⠊⠇⠽" }, { "input": "stinginess", "output": "⠌⠌⠊⠰⠎" }, { "input": "stinginess's", "output": "⠌⠌⠊⠰⠎⠄⠎" }, { "input": "stinging", "output": "⠌⠌⠌" }, { "input": "stingray", "output": "⠌⠌⠗â â ½" }, { "input": "stingray's", "output": "⠌⠌⠗â â ½â „â Ž" }, { "input": "stingrays", "output": "⠌⠌⠗â â ½â Ž" }, { "input": "stings", "output": "⠌⠌⠎" }, { "input": "stingy", "output": "⠌⠌⠽" }, { "input": "stink", "output": "⠌⠔⠅" }, { "input": "stink's", "output": "⠌⠔⠅⠄⠎" }, { "input": "stinkbug", "output": "⠌⠔⠅⠃⠥⠛" }, { "input": "stinkbug's", "output": "⠌⠔⠅⠃⠥⠛⠄⠎" }, { "input": "stinkbugs", "output": "⠌⠔⠅⠃⠥⠛⠎" }, { "input": "stinker", "output": "⠌⠔⠅⠻" }, { "input": "stinker's", "output": "⠌⠔⠅⠻⠄⠎" }, { "input": "stinkers", "output": "⠌⠔⠅⠻⠎" }, { "input": "stinkier", "output": "⠌⠔⠅⠊⠻" }, { "input": "stinkiest", "output": "⠌⠔⠅⠊⠑⠌" }, { "input": "stinking", "output": "⠌⠔⠅⠌" }, { "input": "stinks", "output": "⠌⠔⠅⠎" }, { "input": "stinky", "output": "⠌⠔⠅⠽" }, { "input": "stint", "output": "⠌⠔⠞" }, { "input": "stint's", "output": "⠌⠔⠞⠄⠎" }, { "input": "stinted", "output": "⠌⠔⠞⠫" }, { "input": "stinting", "output": "⠌⠔⠞⠌" }, { "input": "stints", "output": "⠌⠔⠞⠎" }, { "input": "stipend", "output": "⠌⠊â â ¢â ™" }, { "input": "stipend's", "output": "⠌⠊â â ¢â ™â „â Ž" }, { "input": "stipends", "output": "⠌⠊â â ¢â ™â Ž" }, { "input": "stipple", "output": "⠌⠊â â â ‡â ‘" }, { "input": "stipple's", "output": "⠌⠊â â â ‡â ‘â „â Ž" }, { "input": "stippled", "output": "⠌⠊â â â ‡â «" }, { "input": "stipples", "output": "⠌⠊â â â ‡â ‘â Ž" }, { "input": "stippling", "output": "⠌⠊â â â ‡â Œ" }, { "input": "stippling's", "output": "⠌⠊â â â ‡â Œâ „â Ž" }, { "input": "stipulate", "output": "⠌⠊â â ¥â ‡â â žâ ‘" }, { "input": "stipulated", "output": "⠌⠊â â ¥â ‡â â žâ «" }, { "input": "stipulates", "output": "⠌⠊â â ¥â ‡â â žâ ‘â Ž" }, { "input": "stipulating", "output": "⠌⠊â â ¥â ‡â â žâ Œ" }, { "input": "stipulation", "output": "⠌⠊â â ¥â ‡â  â " }, { "input": "stipulation's", "output": "⠌⠊â â ¥â ‡â  â â „â Ž" }, { "input": "stipulations", "output": "⠌⠊â â ¥â ‡â  â â Ž" }, { "input": "stir", "output": "⠌⠊⠗" }, { "input": "stir's", "output": "⠌⠊⠗⠄⠎" }, { "input": "stirred", "output": "⠌⠊⠗⠗⠫" }, { "input": "stirrer", "output": "⠌⠊⠗⠗⠻" }, { "input": "stirrer's", "output": "⠌⠊⠗⠗⠻⠄⠎" }, { "input": "stirrers", "output": "⠌⠊⠗⠗⠻⠎" }, { "input": "stirring", "output": "⠌⠊⠗⠗⠌" }, { "input": "stirrings", "output": "⠌⠊⠗⠗⠌⠎" }, { "input": "stirrup", "output": "⠌⠊⠗⠗⠥â " }, { "input": "stirrup's", "output": "⠌⠊⠗⠗⠥â â „â Ž" }, { "input": "stirrups", "output": "⠌⠊⠗⠗⠥â â Ž" }, { "input": "stirs", "output": "⠌⠊⠗⠎" }, { "input": "stitch", "output": "⠌⠊⠞⠡" }, { "input": "stitch's", "output": "⠌⠊⠞⠡⠄⠎" }, { "input": "stitched", "output": "⠌⠊⠞⠡⠫" }, { "input": "stitchery", "output": "⠌⠊⠞⠡⠻⠽" }, { "input": "stitchery's", "output": "⠌⠊⠞⠡⠻⠽⠄⠎" }, { "input": "stitches", "output": "⠌⠊⠞⠡⠑⠎" }, { "input": "stitching", "output": "⠌⠊⠞⠡⠌" }, { "input": "stitching's", "output": "⠌⠊⠞⠡⠌⠄⠎" }, { "input": "stoat", "output": "⠌⠕â â ž" }, { "input": "stoat's", "output": "⠌⠕â â žâ „â Ž" }, { "input": "stoats", "output": "⠌⠕â â žâ Ž" }, { "input": "stochastic", "output": "⠌⠕⠡â â Œâ Šâ ‰" }, { "input": "stock", "output": "⠌⠕⠉⠅" }, { "input": "stock's", "output": "⠌⠕⠉⠅⠄⠎" }, { "input": "stockade", "output": "⠌⠕⠉⠅â â ™â ‘" }, { "input": "stockade's", "output": "⠌⠕⠉⠅â â ™â ‘â „â Ž" }, { "input": "stockaded", "output": "⠌⠕⠉⠅â â ™â «" }, { "input": "stockades", "output": "⠌⠕⠉⠅â â ™â ‘â Ž" }, { "input": "stockading", "output": "⠌⠕⠉⠅â â ™â Œ" }, { "input": "stockbreeder", "output": "⠌⠕⠉⠅⠃⠗⠑⠫⠻" }, { "input": "stockbreeder's", "output": "⠌⠕⠉⠅⠃⠗⠑⠫⠻⠄⠎" }, { "input": "stockbreeders", "output": "⠌⠕⠉⠅⠃⠗⠑⠫⠻⠎" }, { "input": "stockbroker", "output": "⠌⠕⠉⠅⠃⠗⠕⠅⠻" }, { "input": "stockbroker's", "output": "⠌⠕⠉⠅⠃⠗⠕⠅⠻⠄⠎" }, { "input": "stockbrokers", "output": "⠌⠕⠉⠅⠃⠗⠕⠅⠻⠎" }, { "input": "stockbroking's", "output": "⠌⠕⠉⠅⠃⠗⠕⠅⠌⠄⠎" }, { "input": "stocked", "output": "⠌⠕⠉⠅⠫" }, { "input": "stockholder", "output": "⠌⠕⠉⠅⠓⠕⠇⠙⠻" }, { "input": "stockholder's", "output": "⠌⠕⠉⠅⠓⠕⠇⠙⠻⠄⠎" }, { "input": "stockholders", "output": "⠌⠕⠉⠅⠓⠕⠇⠙⠻⠎" }, { "input": "stockier", "output": "⠌⠕⠉⠅⠊⠻" }, { "input": "stockiest", "output": "⠌⠕⠉⠅⠊⠑⠌" }, { "input": "stockiness", "output": "⠌⠕⠉⠅⠊⠰⠎" }, { "input": "stockiness's", "output": "⠌⠕⠉⠅⠊⠰⠎⠄⠎" }, { "input": "stockinette", "output": "⠌⠕⠉⠅⠔⠑⠞⠞⠑" }, { "input": "stockinette's", "output": "⠌⠕⠉⠅⠔⠑⠞⠞⠑⠄⠎" }, { "input": "stocking", "output": "⠌⠕⠉⠅⠌" }, { "input": "stocking's", "output": "⠌⠕⠉⠅⠌⠄⠎" }, { "input": "stockings", "output": "⠌⠕⠉⠅⠌⠎" }, { "input": "stockpile", "output": "⠌⠕⠉⠅â â Šâ ‡â ‘" }, { "input": "stockpile's", "output": "⠌⠕⠉⠅â â Šâ ‡â ‘â „â Ž" }, { "input": "stockpiled", "output": "⠌⠕⠉⠅â â Šâ ‡â «" }, { "input": "stockpiles", "output": "⠌⠕⠉⠅â â Šâ ‡â ‘â Ž" }, { "input": "stockpiling", "output": "⠌⠕⠉⠅â â Šâ ‡â Œ" }, { "input": "stockpot", "output": "⠌⠕⠉⠅â â •â ž" }, { "input": "stockpot's", "output": "⠌⠕⠉⠅â â •â žâ „â Ž" }, { "input": "stockpots", "output": "⠌⠕⠉⠅â â •â žâ Ž" }, { "input": "stockroom", "output": "⠌⠕⠉⠅⠗⠕⠕â " }, { "input": "stockroom's", "output": "⠌⠕⠉⠅⠗⠕⠕â â „â Ž" }, { "input": "stockrooms", "output": "⠌⠕⠉⠅⠗⠕⠕â â Ž" }, { "input": "stocks", "output": "⠌⠕⠉⠅⠎" }, { "input": "stocktaking's", "output": "⠌⠕⠉⠅⠞â â …⠌⠄⠎" }, { "input": "stocky", "output": "⠌⠕⠉⠅⠽" }, { "input": "stockyard", "output": "⠌⠕⠉⠅⠽⠜⠙" }, { "input": "stockyard's", "output": "⠌⠕⠉⠅⠽⠜⠙⠄⠎" }, { "input": "stockyards", "output": "⠌⠕⠉⠅⠽⠜⠙⠎" }, { "input": "stodgier", "output": "⠌⠕⠙⠛⠊⠻" }, { "input": "stodgiest", "output": "⠌⠕⠙⠛⠊⠑⠌" }, { "input": "stodgily", "output": "⠌⠕⠙⠛⠊⠇⠽" }, { "input": "stodginess", "output": "⠌⠕⠙⠛⠊⠰⠎" }, { "input": "stodginess's", "output": "⠌⠕⠙⠛⠊⠰⠎⠄⠎" }, { "input": "stodgy", "output": "⠌⠕⠙⠛⠽" }, { "input": "stoic", "output": "⠌⠕⠊⠉" }, { "input": "stoic's", "output": "⠌⠕⠊⠉⠄⠎" }, { "input": "stoical", "output": "⠌⠕⠊⠉â â ‡" }, { "input": "stoically", "output": "⠌⠕⠊⠉⠠⠽" }, { "input": "stoicism", "output": "⠌⠕⠊⠉⠊⠎â " }, { "input": "stoicism's", "output": "⠌⠕⠊⠉⠊⠎â â „â Ž" }, { "input": "stoics", "output": "⠌⠕⠊⠉⠎" }, { "input": "stoke", "output": "⠌⠕⠅⠑" }, { "input": "stoked", "output": "⠌⠕⠅⠫" }, { "input": "stoker", "output": "⠌⠕⠅⠻" }, { "input": "stoker's", "output": "⠌⠕⠅⠻⠄⠎" }, { "input": "stokers", "output": "⠌⠕⠅⠻⠎" }, { "input": "stokes", "output": "⠌⠕⠅⠑⠎" }, { "input": "stoking", "output": "⠌⠕⠅⠌" }, { "input": "stole", "output": "⠌⠕⠇⠑" }, { "input": "stole's", "output": "⠌⠕⠇⠑⠄⠎" }, { "input": "stolen", "output": "⠌⠕⠇⠢" }, { "input": "stoles", "output": "⠌⠕⠇⠑⠎" }, { "input": "stolid", "output": "⠌⠕⠇⠊⠙" }, { "input": "stolider", "output": "⠌⠕⠇⠊⠙⠻" }, { "input": "stolidest", "output": "⠌⠕⠇⠊⠙⠑⠌" }, { "input": "stolidity", "output": "⠌⠕⠇⠊⠙⠰⠽" }, { "input": "stolidity's", "output": "⠌⠕⠇⠊⠙⠰⠽⠄⠎" }, { "input": "stolidly", "output": "⠌⠕⠇⠊⠙⠇⠽" }, { "input": "stolidness", "output": "⠌⠕⠇⠊⠙⠰⠎" }, { "input": "stolidness's", "output": "⠌⠕⠇⠊⠙⠰⠎⠄⠎" }, { "input": "stolon", "output": "⠌⠕⠇⠕â " }, { "input": "stolon's", "output": "⠌⠕⠇⠕â â „â Ž" }, { "input": "stolons", "output": "⠌⠕⠇⠕â â Ž" }, { "input": "stomach", "output": "⠌⠕â â â ¡" }, { "input": "stomach's", "output": "⠌⠕â â â ¡â „â Ž" }, { "input": "stomachache", "output": "⠌⠕â â â ¡â â ¡â ‘" }, { "input": "stomachache's", "output": "⠌⠕â â â ¡â â ¡â ‘â „â Ž" }, { "input": "stomachaches", "output": "⠌⠕â â â ¡â â ¡â ‘â Ž" }, { "input": "stomached", "output": "⠌⠕â â â ¡â «" }, { "input": "stomacher", "output": "⠌⠕â â â ¡â »" }, { "input": "stomacher's", "output": "⠌⠕â â â ¡â »â „â Ž" }, { "input": "stomachers", "output": "⠌⠕â â â ¡â »â Ž" }, { "input": "stomaching", "output": "⠌⠕â â â ¡â Œ" }, { "input": "stomachs", "output": "⠌⠕â â â ¡â Ž" }, { "input": "stomp", "output": "⠌⠕â â " }, { "input": "stomp's", "output": "⠌⠕â â â „â Ž" }, { "input": "stomped", "output": "⠌⠕â â â «" }, { "input": "stomping", "output": "⠌⠕â â â Œ" }, { "input": "stomps", "output": "⠌⠕â â â Ž" }, { "input": "stone", "output": "â Œâ â •" }, { "input": "stone's", "output": "â Œâ â •â „â Ž" }, { "input": "stoned", "output": "⠌⠕â â «" }, { "input": "stones", "output": "â Œâ â •â Ž" }, { "input": "stonewall", "output": "â Œâ â •â ºâ â ‡â ‡" }, { "input": "stonewalled", "output": "â Œâ â •â ºâ â ‡â ‡â «" }, { "input": "stonewalling", "output": "â Œâ â •â ºâ â ‡â ‡â Œ" }, { "input": "stonewalls", "output": "â Œâ â •â ºâ â ‡â ‡â Ž" }, { "input": "stoneware", "output": "â Œâ â •⠺⠜⠑" }, { "input": "stoneware's", "output": "â Œâ â •⠺⠜⠑⠄⠎" }, { "input": "stonework", "output": "â Œâ â •â â º" }, { "input": "stonework's", "output": "â Œâ â •â â ºâ „â Ž" }, { "input": "stonier", "output": "⠌⠕â â Šâ »" }, { "input": "stoniest", "output": "⠌⠕â â Šâ ‘â Œ" }, { "input": "stonily", "output": "⠌⠕â â Šâ ‡â ½" }, { "input": "stoniness", "output": "⠌⠕â â Šâ °â Ž" }, { "input": "stoniness's", "output": "⠌⠕â â Šâ °â Žâ „â Ž" }, { "input": "stoning", "output": "⠌⠕â â Œ" }, { "input": "stony", "output": "⠌⠕â â ½" }, { "input": "stood", "output": "⠌⠕⠕⠙" }, { "input": "stooge", "output": "⠌⠕⠕⠛⠑" }, { "input": "stooge's", "output": "⠌⠕⠕⠛⠑⠄⠎" }, { "input": "stooges", "output": "⠌⠕⠕⠛⠑⠎" }, { "input": "stool", "output": "⠌⠕⠕⠇" }, { "input": "stool's", "output": "⠌⠕⠕⠇⠄⠎" }, { "input": "stools", "output": "⠌⠕⠕⠇⠎" }, { "input": "stoop", "output": "⠌⠕⠕â " }, { "input": "stoop's", "output": "⠌⠕⠕â â „â Ž" }, { "input": "stooped", "output": "⠌⠕⠕â â «" }, { "input": "stooping", "output": "⠌⠕⠕â â Œ" }, { "input": "stoops", "output": "⠌⠕⠕â â Ž" }, { "input": "stop", "output": "⠌⠕â " }, { "input": "stop's", "output": "⠌⠕â â „â Ž" }, { "input": "stopcock", "output": "⠌⠕â â ‰â •⠉⠅" }, { "input": "stopcock's", "output": "⠌⠕â â ‰â •⠉⠅⠄⠎" }, { "input": "stopcocks", "output": "⠌⠕â â ‰â •⠉⠅⠎" }, { "input": "stopgap", "output": "⠌⠕â â ›â â " }, { "input": "stopgap's", "output": "⠌⠕â â ›â â â „â Ž" }, { "input": "stopgaps", "output": "⠌⠕â â ›â â â Ž" }, { "input": "stoplight", "output": "⠌⠕â â ‡â Šâ £â ž" }, { "input": "stoplight's", "output": "⠌⠕â â ‡â Šâ £â žâ „â Ž" }, { "input": "stoplights", "output": "⠌⠕â â ‡â Šâ £â žâ Ž" }, { "input": "stopover", "output": "⠌⠕â â •â §â »" }, { "input": "stopover's", "output": "⠌⠕â â •⠧⠻⠄⠎" }, { "input": "stopovers", "output": "⠌⠕â â •⠧⠻⠎" }, { "input": "stoppable", "output": "⠌⠕â â â â ¼" }, { "input": "stoppage", "output": "⠌⠕â â â â ›â ‘" }, { "input": "stoppage's", "output": "⠌⠕â â â â ›â ‘â „â Ž" }, { "input": "stoppages", "output": "⠌⠕â â â â ›â ‘â Ž" }, { "input": "stopped", "output": "⠌⠕â â â «" }, { "input": "stopper", "output": "⠌⠕â â â »" }, { "input": "stopper's", "output": "⠌⠕â â â »â „â Ž" }, { "input": "stoppered", "output": "⠌⠕â â â »â «" }, { "input": "stoppering", "output": "⠌⠕â â â »â Œ" }, { "input": "stoppers", "output": "⠌⠕â â â »â Ž" }, { "input": "stopping", "output": "⠌⠕â â â Œ" }, { "input": "stopple", "output": "⠌⠕â â â ‡â ‘" }, { "input": "stopple's", "output": "⠌⠕â â â ‡â ‘â „â Ž" }, { "input": "stoppled", "output": "⠌⠕â â â ‡â «" }, { "input": "stopples", "output": "⠌⠕â â â ‡â ‘â Ž" }, { "input": "stoppling", "output": "⠌⠕â â â ‡â Œ" }, { "input": "stops", "output": "⠌⠕â â Ž" }, { "input": "stopwatch", "output": "⠌⠕â â ºâ â žâ ¡" }, { "input": "stopwatch's", "output": "⠌⠕â â ºâ â žâ ¡â „â Ž" }, { "input": "stopwatches", "output": "⠌⠕â â ºâ â žâ ¡â ‘â Ž" }, { "input": "storage", "output": "⠌⠕⠗â â ›â ‘" }, { "input": "storage's", "output": "⠌⠕⠗â â ›â ‘â „â Ž" }, { "input": "store", "output": "⠌⠕⠗⠑" }, { "input": "store's", "output": "⠌⠕⠗⠑⠄⠎" }, { "input": "stored", "output": "⠌⠕⠗⠫" }, { "input": "storefront", "output": "⠌⠕⠗⠑⠋⠗⠕â â ž" }, { "input": "storefront's", "output": "⠌⠕⠗⠑⠋⠗⠕â â žâ „â Ž" }, { "input": "storefronts", "output": "⠌⠕⠗⠑⠋⠗⠕â â žâ Ž" }, { "input": "storehouse", "output": "⠌⠕⠗⠑⠓⠳⠎⠑" }, { "input": "storehouse's", "output": "⠌⠕⠗⠑⠓⠳⠎⠑⠄⠎" }, { "input": "storehouses", "output": "⠌⠕⠗⠑⠓⠳⠎⠑⠎" }, { "input": "storekeeper", "output": "⠌⠕⠗⠑⠅⠑⠑â â »" }, { "input": "storekeeper's", "output": "⠌⠕⠗⠑⠅⠑⠑â â »â „â Ž" }, { "input": "storekeepers", "output": "⠌⠕⠗⠑⠅⠑⠑â â »â Ž" }, { "input": "storeroom", "output": "⠌⠕⠗⠑⠗⠕⠕â " }, { "input": "storeroom's", "output": "⠌⠕⠗⠑⠗⠕⠕â â „â Ž" }, { "input": "storerooms", "output": "⠌⠕⠗⠑⠗⠕⠕â â Ž" }, { "input": "stores", "output": "⠌⠕⠗⠑⠎" }, { "input": "storied", "output": "⠌⠕⠗⠊⠫" }, { "input": "stories", "output": "⠌⠕⠗⠊⠑⠎" }, { "input": "storing", "output": "⠌⠕⠗⠌" }, { "input": "stork", "output": "⠌⠕⠗⠅" }, { "input": "stork's", "output": "⠌⠕⠗⠅⠄⠎" }, { "input": "storks", "output": "⠌⠕⠗⠅⠎" }, { "input": "storm", "output": "⠌⠕⠗â " }, { "input": "storm's", "output": "⠌⠕⠗â â „â Ž" }, { "input": "stormed", "output": "⠌⠕⠗â â «" }, { "input": "stormier", "output": "⠌⠕⠗â â Šâ »" }, { "input": "stormiest", "output": "⠌⠕⠗â â Šâ ‘â Œ" }, { "input": "stormily", "output": "⠌⠕⠗â â Šâ ‡â ½" }, { "input": "storminess", "output": "⠌⠕⠗â â Šâ °â Ž" }, { "input": "storminess's", "output": "⠌⠕⠗â â Šâ °â Žâ „â Ž" }, { "input": "storming", "output": "⠌⠕⠗â â Œ" }, { "input": "storms", "output": "⠌⠕⠗â â Ž" }, { "input": "stormy", "output": "⠌⠕⠗â â ½" }, { "input": "story", "output": "⠌⠕⠗⠽" }, { "input": "story's", "output": "⠌⠕⠗⠽⠄⠎" }, { "input": "storybook", "output": "⠌⠕⠗⠽⠃⠕⠕⠅" }, { "input": "storybook's", "output": "⠌⠕⠗⠽⠃⠕⠕⠅⠄⠎" }, { "input": "storybooks", "output": "⠌⠕⠗⠽⠃⠕⠕⠅⠎" }, { "input": "storyteller", "output": "⠌⠕⠗⠽⠞⠑⠇⠇⠻" }, { "input": "storyteller's", "output": "⠌⠕⠗⠽⠞⠑⠇⠇⠻⠄⠎" }, { "input": "storytellers", "output": "⠌⠕⠗⠽⠞⠑⠇⠇⠻⠎" }, { "input": "storytelling's", "output": "⠌⠕⠗⠽⠞⠑⠇⠇⠌⠄⠎" }, { "input": "stout", "output": "⠌⠳⠞" }, { "input": "stout's", "output": "⠌⠳⠞⠄⠎" }, { "input": "stouter", "output": "⠌⠳⠞⠻" }, { "input": "stoutest", "output": "⠌⠳⠞⠑⠌" }, { "input": "stoutly", "output": "⠌⠳⠞⠇⠽" }, { "input": "stoutness", "output": "⠌⠳⠞⠰⠎" }, { "input": "stoutness's", "output": "⠌⠳⠞⠰⠎⠄⠎" }, { "input": "stove", "output": "⠌⠕⠧⠑" }, { "input": "stove's", "output": "⠌⠕⠧⠑⠄⠎" }, { "input": "stovepipe", "output": "⠌⠕⠧⠑â â Šâ â ‘" }, { "input": "stovepipe's", "output": "⠌⠕⠧⠑â â Šâ â ‘â „â Ž" }, { "input": "stovepipes", "output": "⠌⠕⠧⠑â â Šâ â ‘â Ž" }, { "input": "stoves", "output": "⠌⠕⠧⠑⠎" }, { "input": "stow", "output": "⠌⠪" }, { "input": "stowage's", "output": "⠌⠪â â ›â ‘â „â Ž" }, { "input": "stowaway", "output": "⠌⠪â â ºâ â ½" }, { "input": "stowaway's", "output": "⠌⠪â â ºâ â ½â „â Ž" }, { "input": "stowaways", "output": "⠌⠪â â ºâ â ½â Ž" }, { "input": "stowed", "output": "⠌⠪⠫" }, { "input": "stowing", "output": "⠌⠪⠌" }, { "input": "stows", "output": "⠌⠪⠎" }, { "input": "straddle", "output": "⠌⠗â â ²â ‡â ‘" }, { "input": "straddle's", "output": "⠌⠗â â ²â ‡â ‘â „â Ž" }, { "input": "straddled", "output": "⠌⠗â â ²â ‡â «" }, { "input": "straddler", "output": "⠌⠗â â ²â ‡â »" }, { "input": "straddler's", "output": "⠌⠗â â ²â ‡â »â „â Ž" }, { "input": "straddlers", "output": "⠌⠗â â ²â ‡â »â Ž" }, { "input": "straddles", "output": "⠌⠗â â ²â ‡â ‘â Ž" }, { "input": "straddling", "output": "⠌⠗â â ²â ‡â Œ" }, { "input": "strafe", "output": "⠌⠗â â ‹â ‘" }, { "input": "strafe's", "output": "⠌⠗â â ‹â ‘â „â Ž" }, { "input": "strafed", "output": "⠌⠗â â ‹â «" }, { "input": "strafes", "output": "⠌⠗â â ‹â ‘â Ž" }, { "input": "strafing", "output": "⠌⠗â â ‹â Œ" }, { "input": "straggle", "output": "⠌⠗â â ¶â ‡â ‘" }, { "input": "straggled", "output": "⠌⠗â â ¶â ‡â «" }, { "input": "straggler", "output": "⠌⠗â â ¶â ‡â »" }, { "input": "straggler's", "output": "⠌⠗â â ¶â ‡â »â „â Ž" }, { "input": "stragglers", "output": "⠌⠗â â ¶â ‡â »â Ž" }, { "input": "straggles", "output": "⠌⠗â â ¶â ‡â ‘â Ž" }, { "input": "stragglier", "output": "⠌⠗â â ¶â ‡â Šâ »" }, { "input": "straggliest", "output": "⠌⠗â â ¶â ‡â Šâ ‘â Œ" }, { "input": "straggling", "output": "⠌⠗â â ¶â ‡â Œ" }, { "input": "straggly", "output": "⠌⠗â â ¶â ‡â ½" }, { "input": "straight", "output": "⠌⠗â â Šâ £â ž" }, { "input": "straight's", "output": "⠌⠗â â Šâ £â žâ „â Ž" }, { "input": "straightaway", "output": "⠌⠗â â Šâ £â žâ â ºâ â ½" }, { "input": "straightaway's", "output": "⠌⠗â â Šâ £â žâ â ºâ â ½â „â Ž" }, { "input": "straightaways", "output": "⠌⠗â â Šâ £â žâ â ºâ â ½â Ž" }, { "input": "straightedge", "output": "⠌⠗â â Šâ £â žâ «â ›â ‘" }, { "input": "straightedge's", "output": "⠌⠗â â Šâ £â žâ «â ›â ‘â „â Ž" }, { "input": "straightedges", "output": "⠌⠗â â Šâ £â žâ «â ›â ‘â Ž" }, { "input": "straighten", "output": "⠌⠗â â Šâ £â žâ ¢" }, { "input": "straightened", "output": "⠌⠗â â Šâ £â žâ ¢â «" }, { "input": "straightener", "output": "⠌⠗â â Šâ £â žâ ¢â »" }, { "input": "straightener's", "output": "⠌⠗â â Šâ £â žâ ¢â »â „â Ž" }, { "input": "straighteners", "output": "⠌⠗â â Šâ £â žâ ¢â »â Ž" }, { "input": "straightening", "output": "⠌⠗â â Šâ £â žâ ¢â Œ" }, { "input": "straightens", "output": "⠌⠗â â Šâ £â žâ ¢â Ž" }, { "input": "straighter", "output": "⠌⠗â â Šâ £â žâ »" }, { "input": "straightest", "output": "⠌⠗â â Šâ £â žâ ‘â Œ" }, { "input": "straightforward", "output": "⠌⠗â â Šâ £â žâ ¿â ºâ œâ ™" }, { "input": "straightforwardly", "output": "⠌⠗â â Šâ £â žâ ¿â ºâ œâ ™â ‡â ½" }, { "input": "straightforwardness's", "output": "⠌⠗â â Šâ £â žâ ¿â ºâ œâ ™â °â Žâ „â Ž" }, { "input": "straightforwards", "output": "⠌⠗â â Šâ £â žâ ¿â ºâ œâ ™â Ž" }, { "input": "straightly", "output": "⠌⠗â â Šâ £â žâ ‡â ½" }, { "input": "straightness", "output": "⠌⠗â â Šâ £â žâ °â Ž" }, { "input": "straightness's", "output": "⠌⠗â â Šâ £â žâ °â Žâ „â Ž" }, { "input": "straights", "output": "⠌⠗â â Šâ £â žâ Ž" }, { "input": "straightway", "output": "⠌⠗â â Šâ £â žâ ºâ â ½" }, { "input": "strain", "output": "⠌⠗â â ”" }, { "input": "strain's", "output": "⠌⠗â â ”â „â Ž" }, { "input": "strained", "output": "⠌⠗â â ”â «" }, { "input": "strainer", "output": "⠌⠗â â ”â »" }, { "input": "strainer's", "output": "⠌⠗â â ”⠻⠄⠎" }, { "input": "strainers", "output": "⠌⠗â â ”⠻⠎" }, { "input": "straining", "output": "⠌⠗â â ”â Œ" }, { "input": "strains", "output": "⠌⠗â â ”â Ž" }, { "input": "strait", "output": "⠌⠗â â Šâ ž" }, { "input": "strait's", "output": "⠌⠗â â Šâ žâ „â Ž" }, { "input": "straiten", "output": "⠌⠗â â Šâ žâ ¢" }, { "input": "straitened", "output": "⠌⠗â â Šâ žâ ¢â «" }, { "input": "straitening", "output": "⠌⠗â â Šâ žâ ¢â Œ" }, { "input": "straitens", "output": "⠌⠗â â Šâ žâ ¢â Ž" }, { "input": "straitjacket", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â ž" }, { "input": "straitjacket's", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ „â Ž" }, { "input": "straitjacketed", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ «" }, { "input": "straitjacketing", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ Œ" }, { "input": "straitjackets", "output": "⠌⠗â â Šâ žâ šâ â ‰â …â ‘â žâ Ž" }, { "input": "straits", "output": "⠌⠗â â Šâ žâ Ž" }, { "input": "strand", "output": "⠌⠗⠯" }, { "input": "strand's", "output": "⠌⠗⠯⠄⠎" }, { "input": "stranded", "output": "⠌⠗⠯⠫" }, { "input": "stranding", "output": "⠌⠗⠯⠌" }, { "input": "strands", "output": "⠌⠗⠯⠎" }, { "input": "strange", "output": "⠌⠗â â â ›â ‘" }, { "input": "strangely", "output": "⠌⠗â â â ›â ‘⠇⠽" }, { "input": "strangeness", "output": "⠌⠗â â â ›â ‘â °â Ž" }, { "input": "strangeness's", "output": "⠌⠗â â â ›â ‘â °â Žâ „â Ž" }, { "input": "stranger", "output": "⠌⠗â â â ›â »" }, { "input": "stranger's", "output": "⠌⠗â â â ›â »â „â Ž" }, { "input": "strangers", "output": "⠌⠗â â â ›â »â Ž" }, { "input": "strangest", "output": "⠌⠗â â â ›â ‘â Œ" }, { "input": "strangle", "output": "⠌⠗â â â ›â ‡â ‘" }, { "input": "strangled", "output": "⠌⠗â â â ›â ‡â «" }, { "input": "stranglehold", "output": "⠌⠗â â â ›â ‡â ‘⠓⠕⠇⠙" }, { "input": "stranglehold's", "output": "⠌⠗â â â ›â ‡â ‘⠓⠕⠇⠙⠄⠎" }, { "input": "strangleholds", "output": "⠌⠗â â â ›â ‡â ‘⠓⠕⠇⠙⠎" }, { "input": "strangler", "output": "⠌⠗â â â ›â ‡â »" }, { "input": "strangler's", "output": "⠌⠗â â â ›â ‡â »â „â Ž" }, { "input": "stranglers", "output": "⠌⠗â â â ›â ‡â »â Ž" }, { "input": "strangles", "output": "⠌⠗â â â ›â ‡â ‘â Ž" }, { "input": "strangling", "output": "⠌⠗â â â ›â ‡â Œ" }, { "input": "strangulate", "output": "⠌⠗â â â ›â ¥â ‡â â žâ ‘" }, { "input": "strangulated", "output": "⠌⠗â â â ›â ¥â ‡â â žâ «" }, { "input": "strangulates", "output": "⠌⠗â â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "strangulating", "output": "⠌⠗â â â ›â ¥â ‡â â žâ Œ" }, { "input": "strangulation", "output": "⠌⠗â â â ›â ¥â ‡â  â " }, { "input": "strangulation's", "output": "⠌⠗â â â ›â ¥â ‡â  â â „â Ž" }, { "input": "strap", "output": "⠌⠗â â " }, { "input": "strap's", "output": "⠌⠗â â â „â Ž" }, { "input": "strapless", "output": "⠌⠗â â â ¨â Ž" }, { "input": "strapless's", "output": "⠌⠗â â â ¨â Žâ „â Ž" }, { "input": "straplesses", "output": "⠌⠗â â â ¨â Žâ ‘â Ž" }, { "input": "strapped", "output": "⠌⠗â â â â «" }, { "input": "strapping", "output": "⠌⠗â â â â Œ" }, { "input": "strapping's", "output": "⠌⠗â â â â Œâ „â Ž" }, { "input": "straps", "output": "⠌⠗â â â Ž" }, { "input": "strata", "output": "⠌⠗â â žâ " }, { "input": "stratagem", "output": "⠌⠗â â žâ â ›â ‘â " }, { "input": "stratagem's", "output": "⠌⠗â â žâ â ›â ‘â â „â Ž" }, { "input": "stratagems", "output": "⠌⠗â â žâ â ›â ‘â â Ž" }, { "input": "strategic", "output": "⠌⠗â â žâ ‘⠛⠊⠉" }, { "input": "strategically", "output": "⠌⠗â â žâ ‘⠛⠊⠉⠠⠽" }, { "input": "strategics", "output": "⠌⠗â â žâ ‘⠛⠊⠉⠎" }, { "input": "strategics's", "output": "⠌⠗â â žâ ‘⠛⠊⠉⠎⠄⠎" }, { "input": "strategies", "output": "⠌⠗â â žâ ‘⠛⠊⠑⠎" }, { "input": "strategist", "output": "⠌⠗â â žâ ‘⠛⠊⠌" }, { "input": "strategist's", "output": "⠌⠗â â žâ ‘⠛⠊⠌⠄⠎" }, { "input": "strategists", "output": "⠌⠗â â žâ ‘⠛⠊⠌⠎" }, { "input": "strategy", "output": "⠌⠗â â žâ ‘⠛⠽" }, { "input": "strategy's", "output": "⠌⠗â â žâ ‘⠛⠽⠄⠎" }, { "input": "strati", "output": "⠌⠗â â žâ Š" }, { "input": "stratification", "output": "⠌⠗â â žâ Šâ ‹â Šâ ‰â  â " }, { "input": "stratification's", "output": "⠌⠗â â žâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "stratified", "output": "⠌⠗â â žâ Šâ ‹â Šâ «" }, { "input": "stratifies", "output": "⠌⠗â â žâ Šâ ‹â Šâ ‘â Ž" }, { "input": "stratify", "output": "⠌⠗â â žâ Šâ ‹â ½" }, { "input": "stratifying", "output": "⠌⠗â â žâ Šâ ‹â ½â Œ" }, { "input": "stratosphere", "output": "⠌⠗â â žâ •â Žâ â “⠻⠑" }, { "input": "stratosphere's", "output": "⠌⠗â â žâ •â Žâ â “⠻⠑⠄⠎" }, { "input": "stratospheres", "output": "⠌⠗â â žâ •â Žâ â “⠻⠑⠎" }, { "input": "stratum", "output": "⠌⠗â â žâ ¥â " }, { "input": "stratum's", "output": "⠌⠗â â žâ ¥â â „â Ž" }, { "input": "stratus", "output": "⠌⠗â â žâ ¥â Ž" }, { "input": "stratus's", "output": "⠌⠗â â žâ ¥â Žâ „â Ž" }, { "input": "straw", "output": "⠌⠗â â º" }, { "input": "straw's", "output": "⠌⠗â â ºâ „â Ž" }, { "input": "strawberries", "output": "⠌⠗â â ºâ ƒâ »â —â Šâ ‘â Ž" }, { "input": "strawberry", "output": "⠌⠗â â ºâ ƒâ »â —â ½" }, { "input": "strawberry's", "output": "⠌⠗â â ºâ ƒâ »â —⠽⠄⠎" }, { "input": "strawed", "output": "⠌⠗â â ºâ «" }, { "input": "strawing", "output": "⠌⠗â â ºâ Œ" }, { "input": "straws", "output": "⠌⠗â â ºâ Ž" }, { "input": "stray", "output": "⠌⠗â â ½" }, { "input": "stray's", "output": "⠌⠗â â ½â „â Ž" }, { "input": "strayed", "output": "⠌⠗â â ½â «" }, { "input": "straying", "output": "⠌⠗â â ½â Œ" }, { "input": "strays", "output": "⠌⠗â â ½â Ž" }, { "input": "streak", "output": "⠌⠗⠂⠅" }, { "input": "streak's", "output": "⠌⠗⠂⠅⠄⠎" }, { "input": "streaked", "output": "⠌⠗⠂⠅⠫" }, { "input": "streakier", "output": "⠌⠗⠂⠅⠊⠻" }, { "input": "streakiest", "output": "⠌⠗⠂⠅⠊⠑⠌" }, { "input": "streaking", "output": "⠌⠗⠂⠅⠌" }, { "input": "streaks", "output": "⠌⠗⠂⠅⠎" }, { "input": "streaky", "output": "⠌⠗⠂⠅⠽" }, { "input": "stream", "output": "⠌⠗⠂â " }, { "input": "stream's", "output": "⠌⠗⠂â â „â Ž" }, { "input": "streamed", "output": "⠌⠗⠂â â «" }, { "input": "streamer", "output": "⠌⠗⠂â â »" }, { "input": "streamer's", "output": "⠌⠗⠂â â »â „â Ž" }, { "input": "streamers", "output": "⠌⠗⠂â â »â Ž" }, { "input": "streaming", "output": "⠌⠗⠂â â Œ" }, { "input": "streamline", "output": "⠌⠗⠂â â ‡â ”â ‘" }, { "input": "streamlined", "output": "⠌⠗⠂â â ‡â ”â «" }, { "input": "streamlines", "output": "⠌⠗⠂â â ‡â ”â ‘â Ž" }, { "input": "streamlining", "output": "⠌⠗⠂â â ‡â ”â Œ" }, { "input": "streams", "output": "⠌⠗⠂â â Ž" }, { "input": "street", "output": "⠌⠗⠑⠑⠞" }, { "input": "street's", "output": "⠌⠗⠑⠑⠞⠄⠎" }, { "input": "streetcar", "output": "⠌⠗⠑⠑⠞⠉⠜" }, { "input": "streetcar's", "output": "⠌⠗⠑⠑⠞⠉⠜⠄⠎" }, { "input": "streetcars", "output": "⠌⠗⠑⠑⠞⠉⠜⠎" }, { "input": "streetlight", "output": "⠌⠗⠑⠑⠞⠇⠊⠣⠞" }, { "input": "streetlight's", "output": "⠌⠗⠑⠑⠞⠇⠊⠣⠞⠄⠎" }, { "input": "streetlights", "output": "⠌⠗⠑⠑⠞⠇⠊⠣⠞⠎" }, { "input": "streets", "output": "⠌⠗⠑⠑⠞⠎" }, { "input": "streetwalker", "output": "⠌⠗⠑⠑⠞⠺â â ‡â …â »" }, { "input": "streetwalker's", "output": "⠌⠗⠑⠑⠞⠺â â ‡â …⠻⠄⠎" }, { "input": "streetwalkers", "output": "⠌⠗⠑⠑⠞⠺â â ‡â …⠻⠎" }, { "input": "streetwise", "output": "⠌⠗⠑⠑⠞⠺⠊⠎⠑" }, { "input": "strength", "output": "⠌⠗⠢⠛⠹" }, { "input": "strength's", "output": "⠌⠗⠢⠛⠹⠄⠎" }, { "input": "strengthen", "output": "⠌⠗⠢⠛⠮â " }, { "input": "strengthened", "output": "⠌⠗⠢⠛⠮â â «" }, { "input": "strengthener", "output": "⠌⠗⠢⠛⠮â â »" }, { "input": "strengthener's", "output": "⠌⠗⠢⠛⠮â â »â „â Ž" }, { "input": "strengtheners", "output": "⠌⠗⠢⠛⠮â â »â Ž" }, { "input": "strengthening", "output": "⠌⠗⠢⠛⠮â â Œ" }, { "input": "strengthens", "output": "⠌⠗⠢⠛⠮â â Ž" }, { "input": "strengths", "output": "⠌⠗⠢⠛⠹⠎" }, { "input": "strenuous", "output": "⠌⠗⠢⠥⠳⠎" }, { "input": "strenuously", "output": "⠌⠗⠢⠥⠳⠎⠇⠽" }, { "input": "strenuousness", "output": "⠌⠗⠢⠥⠳⠎⠰⠎" }, { "input": "strenuousness's", "output": "⠌⠗⠢⠥⠳⠎⠰⠎⠄⠎" }, { "input": "strep", "output": "⠌⠗⠑â " }, { "input": "strep's", "output": "⠌⠗⠑â â „â Ž" }, { "input": "streptococcal", "output": "⠌⠗⠑â â žâ •⠉⠕⠒â â ‡" }, { "input": "streptococci", "output": "⠌⠗⠑â â žâ •⠉⠕⠒⠊" }, { "input": "streptococcus", "output": "⠌⠗⠑â â žâ •⠉⠕⠒⠥⠎" }, { "input": "streptococcus's", "output": "⠌⠗⠑â â žâ •⠉⠕⠒⠥⠎⠄⠎" }, { "input": "streptomycin", "output": "⠌⠗⠑â â žâ •â â ½â ‰â ”" }, { "input": "streptomycin's", "output": "⠌⠗⠑â â žâ •â â ½â ‰â ”â „â Ž" }, { "input": "stress", "output": "⠌⠗⠑⠎⠎" }, { "input": "stress's", "output": "⠌⠗⠑⠎⠎⠄⠎" }, { "input": "stressed", "output": "⠌⠗⠑⠎⠎⠫" }, { "input": "stresses", "output": "⠌⠗⠑⠎⠎⠑⠎" }, { "input": "stressful", "output": "⠌⠗⠑⠎⠎⠰⠇" }, { "input": "stressing", "output": "⠌⠗⠑⠎⠎⠌" }, { "input": "stretch", "output": "⠌⠗⠑⠞⠡" }, { "input": "stretch's", "output": "⠌⠗⠑⠞⠡⠄⠎" }, { "input": "stretchable", "output": "⠌⠗⠑⠞⠡â â ¼" }, { "input": "stretched", "output": "⠌⠗⠑⠞⠡⠫" }, { "input": "stretcher", "output": "⠌⠗⠑⠞⠡⠻" }, { "input": "stretcher's", "output": "⠌⠗⠑⠞⠡⠻⠄⠎" }, { "input": "stretchers", "output": "⠌⠗⠑⠞⠡⠻⠎" }, { "input": "stretches", "output": "⠌⠗⠑⠞⠡⠑⠎" }, { "input": "stretchier", "output": "⠌⠗⠑⠞⠡⠊⠻" }, { "input": "stretchiest", "output": "⠌⠗⠑⠞⠡⠊⠑⠌" }, { "input": "stretching", "output": "⠌⠗⠑⠞⠡⠌" }, { "input": "stretchy", "output": "⠌⠗⠑⠞⠡⠽" }, { "input": "strew", "output": "⠌⠗⠑⠺" }, { "input": "strewed", "output": "⠌⠗⠑⠺⠫" }, { "input": "strewing", "output": "⠌⠗⠑⠺⠌" }, { "input": "strewn", "output": "⠌⠗⠑⠺â " }, { "input": "strews", "output": "⠌⠗⠑⠺⠎" }, { "input": "stria", "output": "⠌⠗⠊â " }, { "input": "stria's", "output": "⠌⠗⠊â â „â Ž" }, { "input": "striae", "output": "⠌⠗⠊â â ‘" }, { "input": "striated", "output": "⠌⠗⠊â â žâ «" }, { "input": "stricken", "output": "⠌⠗⠊⠉⠅⠢" }, { "input": "strict", "output": "⠌⠗⠊⠉⠞" }, { "input": "stricter", "output": "⠌⠗⠊⠉⠞⠻" }, { "input": "strictest", "output": "⠌⠗⠊⠉⠞⠑⠌" }, { "input": "strictly", "output": "⠌⠗⠊⠉⠞⠇⠽" }, { "input": "strictness", "output": "⠌⠗⠊⠉⠞⠰⠎" }, { "input": "strictness's", "output": "⠌⠗⠊⠉⠞⠰⠎⠄⠎" }, { "input": "stricture", "output": "⠌⠗⠊⠉⠞⠥⠗⠑" }, { "input": "stricture's", "output": "⠌⠗⠊⠉⠞⠥⠗⠑⠄⠎" }, { "input": "strictures", "output": "⠌⠗⠊⠉⠞⠥⠗⠑⠎" }, { "input": "stridden", "output": "⠌⠗⠊⠲⠢" }, { "input": "stride", "output": "⠌⠗⠊⠙⠑" }, { "input": "stride's", "output": "⠌⠗⠊⠙⠑⠄⠎" }, { "input": "stridency's", "output": "⠌⠗⠊⠙⠢⠉⠽⠄⠎" }, { "input": "strident", "output": "⠌⠗⠊⠙⠢⠞" }, { "input": "stridently", "output": "⠌⠗⠊⠙⠢⠞⠇⠽" }, { "input": "strides", "output": "⠌⠗⠊⠙⠑⠎" }, { "input": "striding", "output": "⠌⠗⠊⠙⠌" }, { "input": "strife", "output": "⠌⠗⠊⠋⠑" }, { "input": "strife's", "output": "⠌⠗⠊⠋⠑⠄⠎" }, { "input": "strike", "output": "⠌⠗⠊⠅⠑" }, { "input": "strike's", "output": "⠌⠗⠊⠅⠑⠄⠎" }, { "input": "strikeout", "output": "⠌⠗⠊⠅⠑⠳⠞" }, { "input": "strikeout's", "output": "⠌⠗⠊⠅⠑⠳⠞⠄⠎" }, { "input": "strikeouts", "output": "⠌⠗⠊⠅⠑⠳⠞⠎" }, { "input": "striker", "output": "⠌⠗⠊⠅⠻" }, { "input": "striker's", "output": "⠌⠗⠊⠅⠻⠄⠎" }, { "input": "strikers", "output": "⠌⠗⠊⠅⠻⠎" }, { "input": "strikes", "output": "⠌⠗⠊⠅⠑⠎" }, { "input": "striking", "output": "⠌⠗⠊⠅⠌" }, { "input": "strikingly", "output": "⠌⠗⠊⠅⠌⠇⠽" }, { "input": "strikings", "output": "⠌⠗⠊⠅⠌⠎" }, { "input": "string", "output": "⠌⠗⠌" }, { "input": "string's", "output": "⠌⠗⠌⠄⠎" }, { "input": "stringed", "output": "⠌⠗⠌⠫" }, { "input": "stringency", "output": "⠌⠗⠌⠢⠉⠽" }, { "input": "stringency's", "output": "⠌⠗⠌⠢⠉⠽⠄⠎" }, { "input": "stringent", "output": "⠌⠗⠌⠢⠞" }, { "input": "stringently", "output": "⠌⠗⠌⠢⠞⠇⠽" }, { "input": "stringer", "output": "⠌⠗⠌⠻" }, { "input": "stringer's", "output": "⠌⠗⠌⠻⠄⠎" }, { "input": "stringers", "output": "⠌⠗⠌⠻⠎" }, { "input": "stringier", "output": "⠌⠗⠌⠊⠻" }, { "input": "stringiest", "output": "⠌⠗⠌⠊⠑⠌" }, { "input": "stringiness", "output": "⠌⠗⠌⠊⠰⠎" }, { "input": "stringiness's", "output": "⠌⠗⠌⠊⠰⠎⠄⠎" }, { "input": "stringing", "output": "⠌⠗⠌⠌" }, { "input": "strings", "output": "⠌⠗⠌⠎" }, { "input": "stringy", "output": "⠌⠗⠌⠽" }, { "input": "strip", "output": "⠌⠗⠊â " }, { "input": "strip's", "output": "⠌⠗⠊â â „â Ž" }, { "input": "stripe", "output": "⠌⠗⠊â â ‘" }, { "input": "stripe's", "output": "⠌⠗⠊â â ‘â „â Ž" }, { "input": "striped", "output": "⠌⠗⠊â â «" }, { "input": "stripes", "output": "⠌⠗⠊â â ‘â Ž" }, { "input": "stripier", "output": "⠌⠗⠊â â Šâ »" }, { "input": "stripiest", "output": "⠌⠗⠊â â Šâ ‘â Œ" }, { "input": "striping", "output": "⠌⠗⠊â â Œ" }, { "input": "stripling", "output": "⠌⠗⠊â â ‡â Œ" }, { "input": "stripling's", "output": "⠌⠗⠊â â ‡â Œâ „â Ž" }, { "input": "striplings", "output": "⠌⠗⠊â â ‡â Œâ Ž" }, { "input": "stripped", "output": "⠌⠗⠊â â â «" }, { "input": "stripper", "output": "⠌⠗⠊â â â »" }, { "input": "stripper's", "output": "⠌⠗⠊â â â »â „â Ž" }, { "input": "strippers", "output": "⠌⠗⠊â â â »â Ž" }, { "input": "stripping", "output": "⠌⠗⠊â â â Œ" }, { "input": "strips", "output": "⠌⠗⠊â â Ž" }, { "input": "striptease", "output": "⠌⠗⠊â â žâ ‚â Žâ ‘" }, { "input": "striptease's", "output": "⠌⠗⠊â â žâ ‚â Žâ ‘â „â Ž" }, { "input": "stripteased", "output": "⠌⠗⠊â â žâ ‚â Žâ «" }, { "input": "stripteaser", "output": "⠌⠗⠊â â žâ ‚â Žâ »" }, { "input": "stripteaser's", "output": "⠌⠗⠊â â žâ ‚⠎⠻⠄⠎" }, { "input": "stripteasers", "output": "⠌⠗⠊â â žâ ‚⠎⠻⠎" }, { "input": "stripteases", "output": "⠌⠗⠊â â žâ ‚â Žâ ‘â Ž" }, { "input": "stripteasing", "output": "⠌⠗⠊â â žâ ‚â Žâ Œ" }, { "input": "strive", "output": "⠌⠗⠊⠧⠑" }, { "input": "striven", "output": "⠌⠗⠊⠧⠢" }, { "input": "strives", "output": "⠌⠗⠊⠧⠑⠎" }, { "input": "striving", "output": "⠌⠗⠊⠧⠌" }, { "input": "strobe", "output": "⠌⠗⠕⠃⠑" }, { "input": "strobe's", "output": "⠌⠗⠕⠃⠑⠄⠎" }, { "input": "strobes", "output": "⠌⠗⠕⠃⠑⠎" }, { "input": "stroboscope", "output": "⠌⠗⠕⠃⠕⠎⠉⠕â â ‘" }, { "input": "stroboscope's", "output": "⠌⠗⠕⠃⠕⠎⠉⠕â â ‘â „â Ž" }, { "input": "stroboscopes", "output": "⠌⠗⠕⠃⠕⠎⠉⠕â â ‘â Ž" }, { "input": "stroboscopic", "output": "⠌⠗⠕⠃⠕⠎⠉⠕â â Šâ ‰" }, { "input": "strode", "output": "⠌⠗⠕⠙⠑" }, { "input": "stroke", "output": "⠌⠗⠕⠅⠑" }, { "input": "stroke's", "output": "⠌⠗⠕⠅⠑⠄⠎" }, { "input": "stroked", "output": "⠌⠗⠕⠅⠫" }, { "input": "strokes", "output": "⠌⠗⠕⠅⠑⠎" }, { "input": "stroking", "output": "⠌⠗⠕⠅⠌" }, { "input": "stroll", "output": "⠌⠗⠕⠇⠇" }, { "input": "stroll's", "output": "⠌⠗⠕⠇⠇⠄⠎" }, { "input": "strolled", "output": "⠌⠗⠕⠇⠇⠫" }, { "input": "stroller", "output": "⠌⠗⠕⠇⠇⠻" }, { "input": "stroller's", "output": "⠌⠗⠕⠇⠇⠻⠄⠎" }, { "input": "strollers", "output": "⠌⠗⠕⠇⠇⠻⠎" }, { "input": "strolling", "output": "⠌⠗⠕⠇⠇⠌" }, { "input": "strolls", "output": "⠌⠗⠕⠇⠇⠎" }, { "input": "strong", "output": "⠌⠗⠰⠛" }, { "input": "strongbox", "output": "⠌⠗⠰⠛⠃⠕⠭" }, { "input": "strongbox's", "output": "⠌⠗⠰⠛⠃⠕⠭⠄⠎" }, { "input": "strongboxes", "output": "⠌⠗⠰⠛⠃⠕⠭⠑⠎" }, { "input": "stronger", "output": "⠌⠗⠰⠛⠻" }, { "input": "strongest", "output": "⠌⠗⠰⠛⠑⠌" }, { "input": "stronghold", "output": "⠌⠗⠰⠛⠓⠕⠇⠙" }, { "input": "stronghold's", "output": "⠌⠗⠰⠛⠓⠕⠇⠙⠄⠎" }, { "input": "strongholds", "output": "⠌⠗⠰⠛⠓⠕⠇⠙⠎" }, { "input": "strongly", "output": "⠌⠗⠰⠛⠇⠽" }, { "input": "strontium", "output": "⠌⠗⠕â â žâ Šâ ¥â " }, { "input": "strontium's", "output": "⠌⠗⠕â â žâ Šâ ¥â â „â Ž" }, { "input": "strop", "output": "⠌⠗⠕â " }, { "input": "strop's", "output": "⠌⠗⠕â â „â Ž" }, { "input": "strophe", "output": "⠌⠗⠕â â “â ‘" }, { "input": "strophe's", "output": "⠌⠗⠕â â “â ‘â „â Ž" }, { "input": "strophes", "output": "⠌⠗⠕â â “â ‘â Ž" }, { "input": "strophic", "output": "⠌⠗⠕â â “â Šâ ‰" }, { "input": "stropped", "output": "⠌⠗⠕â â â «" }, { "input": "stropping", "output": "⠌⠗⠕â â â Œ" }, { "input": "strops", "output": "⠌⠗⠕â â Ž" }, { "input": "strove", "output": "⠌⠗⠕⠧⠑" }, { "input": "struck", "output": "⠌⠗⠥⠉⠅" }, { "input": "structural", "output": "⠌⠗⠥⠉⠞⠥⠗â â ‡" }, { "input": "structuralist", "output": "⠌⠗⠥⠉⠞⠥⠗â â ‡â Šâ Œ" }, { "input": "structurally", "output": "⠌⠗⠥⠉⠞⠥⠗⠠⠽" }, { "input": "structure", "output": "⠌⠗⠥⠉⠞⠥⠗⠑" }, { "input": "structure's", "output": "⠌⠗⠥⠉⠞⠥⠗⠑⠄⠎" }, { "input": "structured", "output": "⠌⠗⠥⠉⠞⠥⠗⠫" }, { "input": "structures", "output": "⠌⠗⠥⠉⠞⠥⠗⠑⠎" }, { "input": "structuring", "output": "⠌⠗⠥⠉⠞⠥⠗⠌" }, { "input": "strudel", "output": "⠌⠗⠥⠙⠑⠇" }, { "input": "strudel's", "output": "⠌⠗⠥⠙⠑⠇⠄⠎" }, { "input": "strudels", "output": "⠌⠗⠥⠙⠑⠇⠎" }, { "input": "struggle", "output": "⠌⠗⠥⠶⠇⠑" }, { "input": "struggle's", "output": "⠌⠗⠥⠶⠇⠑⠄⠎" }, { "input": "struggled", "output": "⠌⠗⠥⠶⠇⠫" }, { "input": "struggles", "output": "⠌⠗⠥⠶⠇⠑⠎" }, { "input": "struggling", "output": "⠌⠗⠥⠶⠇⠌" }, { "input": "strum", "output": "⠌⠗⠥â " }, { "input": "strum's", "output": "⠌⠗⠥â â „â Ž" }, { "input": "strummed", "output": "⠌⠗⠥â â â «" }, { "input": "strumming", "output": "⠌⠗⠥â â â Œ" }, { "input": "strumpet", "output": "⠌⠗⠥â â â ‘â ž" }, { "input": "strumpet's", "output": "⠌⠗⠥â â â ‘â žâ „â Ž" }, { "input": "strumpets", "output": "⠌⠗⠥â â â ‘â žâ Ž" }, { "input": "strums", "output": "⠌⠗⠥â â Ž" }, { "input": "strung", "output": "⠌⠗⠥â â ›" }, { "input": "strut", "output": "⠌⠗⠥⠞" }, { "input": "strut's", "output": "⠌⠗⠥⠞⠄⠎" }, { "input": "struts", "output": "⠌⠗⠥⠞⠎" }, { "input": "strutted", "output": "⠌⠗⠥⠞⠞⠫" }, { "input": "strutting", "output": "⠌⠗⠥⠞⠞⠌" }, { "input": "strychnine", "output": "⠌⠗⠽⠡â â ”â ‘" }, { "input": "strychnine's", "output": "⠌⠗⠽⠡â â ”â ‘â „â Ž" }, { "input": "stub", "output": "⠌⠥⠃" }, { "input": "stub's", "output": "⠌⠥⠃⠄⠎" }, { "input": "stubbed", "output": "⠌⠥⠆⠫" }, { "input": "stubbier", "output": "⠌⠥⠆⠊⠻" }, { "input": "stubbiest", "output": "⠌⠥⠆⠊⠑⠌" }, { "input": "stubbing", "output": "⠌⠥⠆⠌" }, { "input": "stubble", "output": "⠌⠥⠃⠼" }, { "input": "stubble's", "output": "⠌⠥⠃⠼⠄⠎" }, { "input": "stubblier", "output": "⠌⠥⠆⠇⠊⠻" }, { "input": "stubbliest", "output": "⠌⠥⠆⠇⠊⠑⠌" }, { "input": "stubbly", "output": "⠌⠥⠆⠇⠽" }, { "input": "stubborn", "output": "⠌⠥⠆⠕⠗â " }, { "input": "stubborner", "output": "⠌⠥⠆⠕⠗â â »" }, { "input": "stubbornest", "output": "⠌⠥⠆⠕⠗â â ‘â Œ" }, { "input": "stubbornly", "output": "⠌⠥⠆⠕⠗â â ‡â ½" }, { "input": "stubbornness", "output": "⠌⠥⠆⠕⠗â â °â Ž" }, { "input": "stubbornness's", "output": "⠌⠥⠆⠕⠗â â °â Žâ „â Ž" }, { "input": "stubby", "output": "⠌⠥⠆⠽" }, { "input": "stubs", "output": "⠌⠥⠃⠎" }, { "input": "stucco", "output": "⠌⠥⠒⠕" }, { "input": "stucco's", "output": "⠌⠥⠒⠕⠄⠎" }, { "input": "stuccoed", "output": "⠌⠥⠒⠕⠫" }, { "input": "stuccoes", "output": "⠌⠥⠒⠕⠑⠎" }, { "input": "stuccoing", "output": "⠌⠥⠒⠕⠌" }, { "input": "stuck", "output": "⠌⠥⠉⠅" }, { "input": "stud", "output": "⠌⠥⠙" }, { "input": "stud's", "output": "⠌⠥⠙⠄⠎" }, { "input": "studded", "output": "⠌⠥⠲⠫" }, { "input": "studding", "output": "⠌⠥⠲⠌" }, { "input": "studding's", "output": "⠌⠥⠲⠌⠄⠎" }, { "input": "student", "output": "⠌⠥⠙⠢⠞" }, { "input": "student's", "output": "⠌⠥⠙⠢⠞⠄⠎" }, { "input": "students", "output": "⠌⠥⠙⠢⠞⠎" }, { "input": "studentship", "output": "⠌⠥⠙⠢⠞⠩⠊â " }, { "input": "studentships", "output": "⠌⠥⠙⠢⠞⠩⠊â â Ž" }, { "input": "studied", "output": "⠌⠥⠙⠊⠫" }, { "input": "studiedly", "output": "⠌⠥⠙⠊⠫⠇⠽" }, { "input": "studies", "output": "⠌⠥⠙⠊⠑⠎" }, { "input": "studio", "output": "⠌⠥⠙⠊⠕" }, { "input": "studio's", "output": "⠌⠥⠙⠊⠕⠄⠎" }, { "input": "studios", "output": "⠌⠥⠙⠊⠕⠎" }, { "input": "studious", "output": "⠌⠥⠙⠊⠳⠎" }, { "input": "studiously", "output": "⠌⠥⠙⠊⠳⠎⠇⠽" }, { "input": "studiousness's", "output": "⠌⠥⠙⠊⠳⠎⠰⠎⠄⠎" }, { "input": "studs", "output": "⠌⠥⠙⠎" }, { "input": "study", "output": "⠌⠥⠙⠽" }, { "input": "study's", "output": "⠌⠥⠙⠽⠄⠎" }, { "input": "studying", "output": "⠌⠥⠙⠽⠌" }, { "input": "stuff", "output": "⠌⠥⠋⠋" }, { "input": "stuff's", "output": "⠌⠥⠋⠋⠄⠎" }, { "input": "stuffed", "output": "⠌⠥⠖⠫" }, { "input": "stuffier", "output": "⠌⠥⠖⠊⠻" }, { "input": "stuffiest", "output": "⠌⠥⠖⠊⠑⠌" }, { "input": "stuffily", "output": "⠌⠥⠖⠊⠇⠽" }, { "input": "stuffiness", "output": "⠌⠥⠖⠊⠰⠎" }, { "input": "stuffiness's", "output": "⠌⠥⠖⠊⠰⠎⠄⠎" }, { "input": "stuffing", "output": "⠌⠥⠖⠌" }, { "input": "stuffing's", "output": "⠌⠥⠖⠌⠄⠎" }, { "input": "stuffs", "output": "⠌⠥⠖⠎" }, { "input": "stuffy", "output": "⠌⠥⠖⠽" }, { "input": "stultification", "output": "⠌⠥⠇⠞⠊⠋⠊⠉⠠â " }, { "input": "stultification's", "output": "⠌⠥⠇⠞⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "stultified", "output": "⠌⠥⠇⠞⠊⠋⠊⠫" }, { "input": "stultifies", "output": "⠌⠥⠇⠞⠊⠋⠊⠑⠎" }, { "input": "stultify", "output": "⠌⠥⠇⠞⠊⠋⠽" }, { "input": "stultifying", "output": "⠌⠥⠇⠞⠊⠋⠽⠌" }, { "input": "stumble", "output": "⠌⠥â â ¼" }, { "input": "stumble's", "output": "⠌⠥â â ¼â „â Ž" }, { "input": "stumbled", "output": "⠌⠥â â ¼â ™" }, { "input": "stumbler", "output": "⠌⠥â â ¼â —" }, { "input": "stumbler's", "output": "⠌⠥â â ¼â —â „â Ž" }, { "input": "stumblers", "output": "⠌⠥â â ¼â —â Ž" }, { "input": "stumbles", "output": "⠌⠥â â ¼â Ž" }, { "input": "stumbling", "output": "⠌⠥â â ƒâ ‡â Œ" }, { "input": "stump", "output": "⠌⠥â â " }, { "input": "stump's", "output": "⠌⠥â â â „â Ž" }, { "input": "stumped", "output": "⠌⠥â â â «" }, { "input": "stumpier", "output": "⠌⠥â â â Šâ »" }, { "input": "stumpiest", "output": "⠌⠥â â â Šâ ‘â Œ" }, { "input": "stumping", "output": "⠌⠥â â â Œ" }, { "input": "stumps", "output": "⠌⠥â â â Ž" }, { "input": "stumpy", "output": "⠌⠥â â â ½" }, { "input": "stun", "output": "⠌⠥â " }, { "input": "stung", "output": "⠌⠥â â ›" }, { "input": "stunk", "output": "⠌⠥â â …" }, { "input": "stunned", "output": "⠌⠥â â â «" }, { "input": "stunning", "output": "⠌⠥â â â Œ" }, { "input": "stunningly", "output": "⠌⠥â â â Œâ ‡â ½" }, { "input": "stuns", "output": "⠌⠥â â Ž" }, { "input": "stunt", "output": "⠌⠥â â ž" }, { "input": "stunt's", "output": "⠌⠥â â žâ „â Ž" }, { "input": "stunted", "output": "⠌⠥â â žâ «" }, { "input": "stunting", "output": "⠌⠥â â žâ Œ" }, { "input": "stunts", "output": "⠌⠥â â žâ Ž" }, { "input": "stupefaction", "output": "⠌⠥â â ‘â ‹â â ‰â °â " }, { "input": "stupefaction's", "output": "⠌⠥â â ‘â ‹â â ‰â °â â „â Ž" }, { "input": "stupefied", "output": "⠌⠥â â ‘â ‹â Šâ «" }, { "input": "stupefies", "output": "⠌⠥â â ‘â ‹â Šâ ‘â Ž" }, { "input": "stupefy", "output": "⠌⠥â â ‘â ‹â ½" }, { "input": "stupefying", "output": "⠌⠥â â ‘⠋⠽⠌" }, { "input": "stupendous", "output": "⠌⠥â â ¢â ™â ³â Ž" }, { "input": "stupendously", "output": "⠌⠥â â ¢â ™â ³â Žâ ‡â ½" }, { "input": "stupid", "output": "⠌⠥â â Šâ ™" }, { "input": "stupid's", "output": "⠌⠥â â Šâ ™â „â Ž" }, { "input": "stupider", "output": "⠌⠥â â Šâ ™â »" }, { "input": "stupidest", "output": "⠌⠥â â Šâ ™â ‘â Œ" }, { "input": "stupidities", "output": "⠌⠥â â Šâ ™â Šâ žâ Šâ ‘â Ž" }, { "input": "stupidity", "output": "⠌⠥â â Šâ ™â °â ½" }, { "input": "stupidity's", "output": "⠌⠥â â Šâ ™â °â ½â „â Ž" }, { "input": "stupidly", "output": "⠌⠥â â Šâ ™â ‡â ½" }, { "input": "stupids", "output": "⠌⠥â â Šâ ™â Ž" }, { "input": "stupor", "output": "⠌⠥â â •â —" }, { "input": "stupor's", "output": "⠌⠥â â •â —â „â Ž" }, { "input": "stupors", "output": "⠌⠥â â •â —â Ž" }, { "input": "sturdier", "output": "⠌⠥⠗⠙⠊⠻" }, { "input": "sturdiest", "output": "⠌⠥⠗⠙⠊⠑⠌" }, { "input": "sturdily", "output": "⠌⠥⠗⠙⠊⠇⠽" }, { "input": "sturdiness", "output": "⠌⠥⠗⠙⠊⠰⠎" }, { "input": "sturdiness's", "output": "⠌⠥⠗⠙⠊⠰⠎⠄⠎" }, { "input": "sturdy", "output": "⠌⠥⠗⠙⠽" }, { "input": "sturgeon", "output": "⠌⠥⠗⠛⠑⠕â " }, { "input": "sturgeon's", "output": "⠌⠥⠗⠛⠑⠕â â „â Ž" }, { "input": "sturgeons", "output": "⠌⠥⠗⠛⠑⠕â â Ž" }, { "input": "stutter", "output": "⠌⠥⠞⠞⠻" }, { "input": "stutter's", "output": "⠌⠥⠞⠞⠻⠄⠎" }, { "input": "stuttered", "output": "⠌⠥⠞⠞⠻⠫" }, { "input": "stutterer", "output": "⠌⠥⠞⠞⠻⠻" }, { "input": "stutterer's", "output": "⠌⠥⠞⠞⠻⠻⠄⠎" }, { "input": "stutterers", "output": "⠌⠥⠞⠞⠻⠻⠎" }, { "input": "stuttering", "output": "⠌⠥⠞⠞⠻⠌" }, { "input": "stutters", "output": "⠌⠥⠞⠞⠻⠎" }, { "input": "sty", "output": "⠌⠽" }, { "input": "sty's", "output": "⠌⠽⠄⠎" }, { "input": "style", "output": "⠌⠽⠇⠑" }, { "input": "style's", "output": "⠌⠽⠇⠑⠄⠎" }, { "input": "styled", "output": "⠌⠽⠇⠫" }, { "input": "styles", "output": "⠌⠽⠇⠑⠎" }, { "input": "styli", "output": "⠌⠽⠇⠊" }, { "input": "styling", "output": "⠌⠽⠇⠌" }, { "input": "stylish", "output": "⠌⠽⠇⠊⠩" }, { "input": "stylishly", "output": "⠌⠽⠇⠊⠩⠇⠽" }, { "input": "stylishness", "output": "⠌⠽⠇⠊⠩⠰⠎" }, { "input": "stylishness's", "output": "⠌⠽⠇⠊⠩⠰⠎⠄⠎" }, { "input": "stylist", "output": "⠌⠽⠇⠊⠌" }, { "input": "stylist's", "output": "⠌⠽⠇⠊⠌⠄⠎" }, { "input": "stylistic", "output": "⠌⠽⠇⠊⠌⠊⠉" }, { "input": "stylistically", "output": "⠌⠽⠇⠊⠌⠊⠉⠠⠽" }, { "input": "stylists", "output": "⠌⠽⠇⠊⠌⠎" }, { "input": "stylize", "output": "⠌⠽⠇⠊⠵⠑" }, { "input": "stylized", "output": "⠌⠽⠇⠊⠵⠫" }, { "input": "stylizes", "output": "⠌⠽⠇⠊⠵⠑⠎" }, { "input": "stylizing", "output": "⠌⠽⠇⠊⠵⠌" }, { "input": "stylus", "output": "⠌⠽⠇⠥⠎" }, { "input": "stylus's", "output": "⠌⠽⠇⠥⠎⠄⠎" }, { "input": "styluses", "output": "⠌⠽⠇⠥⠎⠑⠎" }, { "input": "stymie", "output": "⠌⠽â â Šâ ‘" }, { "input": "stymie's", "output": "⠌⠽â â Šâ ‘â „â Ž" }, { "input": "stymied", "output": "⠌⠽â â Šâ «" }, { "input": "stymieing", "output": "⠌⠽â â Šâ ‘â Œ" }, { "input": "stymies", "output": "⠌⠽â â Šâ ‘â Ž" }, { "input": "styptic", "output": "⠌⠽â â žâ Šâ ‰" }, { "input": "styptic's", "output": "⠌⠽â â žâ Šâ ‰â „â Ž" }, { "input": "styptics", "output": "⠌⠽â â žâ Šâ ‰â Ž" }, { "input": "suasion", "output": "â Žâ ¥â â ¨â " }, { "input": "suasion's", "output": "â Žâ ¥â â ¨â â „â Ž" }, { "input": "suave", "output": "â Žâ ¥â â §â ‘" }, { "input": "suavely", "output": "â Žâ ¥â â §â ‘⠇⠽" }, { "input": "suaveness", "output": "â Žâ ¥â â §â ‘â °â Ž" }, { "input": "suaveness's", "output": "â Žâ ¥â â §â ‘â °â Žâ „â Ž" }, { "input": "suaver", "output": "â Žâ ¥â â §â »" }, { "input": "suavest", "output": "â Žâ ¥â â §â ‘â Œ" }, { "input": "suavity", "output": "â Žâ ¥â â §â °â ½" }, { "input": "suavity's", "output": "â Žâ ¥â â §â °â ½â „â Ž" }, { "input": "sub", "output": "⠎⠥⠃" }, { "input": "sub's", "output": "⠎⠥⠃⠄⠎" }, { "input": "subarea", "output": "⠎⠥⠃⠜⠑â " }, { "input": "subarea's", "output": "⠎⠥⠃⠜⠑â â „â Ž" }, { "input": "subareas", "output": "⠎⠥⠃⠜⠂⠎" }, { "input": "subatomic", "output": "⠎⠥⠃â â žâ •â â Šâ ‰" }, { "input": "subbasement", "output": "⠎⠥⠃⠃â â Žâ ‘â °â ž" }, { "input": "subbasement's", "output": "⠎⠥⠃⠃â â Žâ ‘â °â žâ „â Ž" }, { "input": "subbasements", "output": "⠎⠥⠃⠃â â Žâ ‘â °â žâ Ž" }, { "input": "subbed", "output": "⠎⠥⠆⠫" }, { "input": "subbing", "output": "⠎⠥⠃⠃⠌" }, { "input": "subbranch", "output": "⠎⠥⠃⠃⠗â â â ¡" }, { "input": "subbranch's", "output": "⠎⠥⠃⠃⠗â â â ¡â „â Ž" }, { "input": "subbranches", "output": "⠎⠥⠃⠃⠗â â â ¡â ‘â Ž" }, { "input": "subcategories", "output": "⠎⠥⠃⠉â â žâ ‘⠛⠕⠗⠊⠑⠎" }, { "input": "subcategory", "output": "⠎⠥⠃⠉â â žâ ‘⠛⠕⠗⠽" }, { "input": "subcategory's", "output": "⠎⠥⠃⠉â â žâ ‘⠛⠕⠗⠽⠄⠎" }, { "input": "subclass", "output": "⠎⠥⠃⠉⠇â â Žâ Ž" }, { "input": "subcommittee", "output": "⠎⠥⠃⠉⠕â â â Šâ žâ žâ ‘â ‘" }, { "input": "subcommittee's", "output": "⠎⠥⠃⠉⠕â â â Šâ žâ žâ ‘â ‘â „â Ž" }, { "input": "subcommittees", "output": "⠎⠥⠃⠉⠕â â â Šâ žâ žâ ‘â ‘â Ž" }, { "input": "subcompact", "output": "⠎⠥⠃⠉⠕â â â â ‰â ž" }, { "input": "subcompact's", "output": "⠎⠥⠃⠉⠕â â â â ‰â žâ „â Ž" }, { "input": "subcompacts", "output": "⠎⠥⠃⠉⠕â â â â ‰â žâ Ž" }, { "input": "subconscious", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Ž" }, { "input": "subconscious's", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Žâ „â Ž" }, { "input": "subconsciously", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "subconsciousness", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "subconsciousness's", "output": "⠎⠥⠃⠉⠕â â Žâ ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "subcontinent", "output": "⠎⠥⠃⠉⠕â â žâ ”⠢⠞" }, { "input": "subcontinent's", "output": "⠎⠥⠃⠉⠕â â žâ ”⠢⠞⠄⠎" }, { "input": "subcontinental", "output": "⠎⠥⠃⠉⠕â â žâ ”⠢⠞â â ‡" }, { "input": "subcontinents", "output": "⠎⠥⠃⠉⠕â â žâ ”⠢⠞⠎" }, { "input": "subcontract", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â ž" }, { "input": "subcontract's", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ „â Ž" }, { "input": "subcontracted", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ «" }, { "input": "subcontracting", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ Œ" }, { "input": "subcontractor", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ •â —" }, { "input": "subcontractor's", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ •â —â „â Ž" }, { "input": "subcontractors", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ •â —â Ž" }, { "input": "subcontracts", "output": "⠎⠥⠃⠉⠕â â žâ —â â ‰â žâ Ž" }, { "input": "subculture", "output": "⠎⠥⠃⠉⠥⠇⠞⠥⠗⠑" }, { "input": "subculture's", "output": "⠎⠥⠃⠉⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "subcultures", "output": "⠎⠥⠃⠉⠥⠇⠞⠥⠗⠑⠎" }, { "input": "subcutaneous", "output": "⠎⠥⠃⠉⠥⠞â â â ‘⠳⠎" }, { "input": "subdivide", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠑" }, { "input": "subdivided", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠫" }, { "input": "subdivides", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠑⠎" }, { "input": "subdividing", "output": "⠎⠥⠃⠙⠊⠧⠊⠙⠌" }, { "input": "subdivision", "output": "⠎⠥⠃⠙⠊⠧⠊⠨â " }, { "input": "subdivision's", "output": "⠎⠥⠃⠙⠊⠧⠊⠨â â „â Ž" }, { "input": "subdivisions", "output": "⠎⠥⠃⠙⠊⠧⠊⠨â â Ž" }, { "input": "subdue", "output": "⠎⠥⠃⠙⠥⠑" }, { "input": "subdued", "output": "⠎⠥⠃⠙⠥⠫" }, { "input": "subdues", "output": "⠎⠥⠃⠙⠥⠑⠎" }, { "input": "subduing", "output": "⠎⠥⠃⠙⠥⠌" }, { "input": "subfamilies", "output": "⠎⠥⠃⠋â â â Šâ ‡â Šâ ‘â Ž" }, { "input": "subfamily", "output": "⠎⠥⠃⠋â â â Šâ ‡â ½" }, { "input": "subfamily's", "output": "⠎⠥⠃⠋â â â Šâ ‡â ½â „â Ž" }, { "input": "subfreezing", "output": "⠎⠥⠃⠋⠗⠑⠑⠵⠌" }, { "input": "subgroup", "output": "⠎⠥⠃⠛⠗⠳â " }, { "input": "subgroup's", "output": "⠎⠥⠃⠛⠗⠳â â „â Ž" }, { "input": "subgroups", "output": "⠎⠥⠃⠛⠗⠳â â Ž" }, { "input": "subhead", "output": "⠎⠥⠃⠓⠂⠙" }, { "input": "subhead's", "output": "⠎⠥⠃⠓⠂⠙⠄⠎" }, { "input": "subheading", "output": "⠎⠥⠃⠓⠂⠙⠌" }, { "input": "subheading's", "output": "⠎⠥⠃⠓⠂⠙⠌⠄⠎" }, { "input": "subheadings", "output": "⠎⠥⠃⠓⠂⠙⠌⠎" }, { "input": "subheads", "output": "⠎⠥⠃⠓⠂⠙⠎" }, { "input": "subhuman", "output": "⠎⠥⠃⠓⠥â â â " }, { "input": "subhuman's", "output": "⠎⠥⠃⠓⠥â â â â „â Ž" }, { "input": "subhumans", "output": "⠎⠥⠃⠓⠥â â â â Ž" }, { "input": "subject", "output": "⠎⠥⠃⠚⠑⠉⠞" }, { "input": "subject's", "output": "⠎⠥⠃⠚⠑⠉⠞⠄⠎" }, { "input": "subjected", "output": "⠎⠥⠃⠚⠑⠉⠞⠫" }, { "input": "subjecting", "output": "⠎⠥⠃⠚⠑⠉⠞⠌" }, { "input": "subjection", "output": "⠎⠥⠃⠚⠑⠉⠰â " }, { "input": "subjection's", "output": "⠎⠥⠃⠚⠑⠉⠰â â „â Ž" }, { "input": "subjective", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠑" }, { "input": "subjectively", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠑⠇⠽" }, { "input": "subjectivity", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠰⠽" }, { "input": "subjectivity's", "output": "⠎⠥⠃⠚⠑⠉⠞⠊⠧⠰⠽⠄⠎" }, { "input": "subjects", "output": "⠎⠥⠃⠚⠑⠉⠞⠎" }, { "input": "subjoin", "output": "⠎⠥⠃⠚⠕⠔" }, { "input": "subjoined", "output": "⠎⠥⠃⠚⠕⠔⠫" }, { "input": "subjoining", "output": "⠎⠥⠃⠚⠕⠔⠌" }, { "input": "subjoins", "output": "⠎⠥⠃⠚⠕⠔⠎" }, { "input": "subjugate", "output": "⠎⠥⠃⠚⠥⠛â â žâ ‘" }, { "input": "subjugated", "output": "⠎⠥⠃⠚⠥⠛â â žâ «" }, { "input": "subjugates", "output": "⠎⠥⠃⠚⠥⠛â â žâ ‘â Ž" }, { "input": "subjugating", "output": "⠎⠥⠃⠚⠥⠛â â žâ Œ" }, { "input": "subjugation", "output": "⠎⠥⠃⠚⠥⠛⠠â " }, { "input": "subjugation's", "output": "⠎⠥⠃⠚⠥⠛⠠â â „â Ž" }, { "input": "subjunctive", "output": "⠎⠥⠃⠚⠥â â ‰â žâ Šâ §â ‘" }, { "input": "subjunctive's", "output": "⠎⠥⠃⠚⠥â â ‰â žâ Šâ §â ‘â „â Ž" }, { "input": "subjunctives", "output": "⠎⠥⠃⠚⠥â â ‰â žâ Šâ §â ‘â Ž" }, { "input": "sublease", "output": "⠎⠥⠃⠇⠂⠎⠑" }, { "input": "sublease's", "output": "⠎⠥⠃⠇⠂⠎⠑⠄⠎" }, { "input": "subleased", "output": "⠎⠥⠃⠇⠂⠎⠫" }, { "input": "subleases", "output": "⠎⠥⠃⠇⠂⠎⠑⠎" }, { "input": "subleasing", "output": "⠎⠥⠃⠇⠂⠎⠌" }, { "input": "sublet", "output": "⠎⠥⠃⠇⠑⠞" }, { "input": "sublet's", "output": "⠎⠥⠃⠇⠑⠞⠄⠎" }, { "input": "sublets", "output": "⠎⠥⠃⠇⠑⠞⠎" }, { "input": "subletting", "output": "⠎⠥⠃⠇⠑⠞⠞⠌" }, { "input": "sublimate", "output": "⠎⠥⠃⠇⠊â â â žâ ‘" }, { "input": "sublimated", "output": "⠎⠥⠃⠇⠊â â â žâ «" }, { "input": "sublimates", "output": "⠎⠥⠃⠇⠊â â â žâ ‘â Ž" }, { "input": "sublimating", "output": "⠎⠥⠃⠇⠊â â â žâ Œ" }, { "input": "sublimation", "output": "⠎⠥⠃⠇⠊â â  â " }, { "input": "sublimation's", "output": "⠎⠥⠃⠇⠊â â  â â „â Ž" }, { "input": "sublime", "output": "⠎⠥⠃⠇⠊â â ‘" }, { "input": "sublimed", "output": "⠎⠥⠃⠇⠊â â «" }, { "input": "sublimely", "output": "⠎⠥⠃⠇⠊â â ‘⠇⠽" }, { "input": "sublimer", "output": "⠎⠥⠃⠇⠊â â »" }, { "input": "sublimes", "output": "⠎⠥⠃⠇⠊â â ‘â Ž" }, { "input": "sublimest", "output": "⠎⠥⠃⠇⠊â â ‘â Œ" }, { "input": "subliminal", "output": "⠎⠥⠃⠇⠊â â ”â â ‡" }, { "input": "subliminally", "output": "⠎⠥⠃⠇⠊â â ”â  â ½" }, { "input": "subliming", "output": "⠎⠥⠃⠇⠊â â Œ" }, { "input": "sublimity", "output": "⠎⠥⠃⠇⠊â â °â ½" }, { "input": "sublimity's", "output": "⠎⠥⠃⠇⠊â â °â ½â „â Ž" }, { "input": "submarginal", "output": "⠎⠥⠃â â œâ ›â ”â â ‡" }, { "input": "submarine", "output": "⠎⠥⠃â â œâ ”â ‘" }, { "input": "submarine's", "output": "⠎⠥⠃â â œâ ”â ‘â „â Ž" }, { "input": "submarines", "output": "⠎⠥⠃â â œâ ”â ‘â Ž" }, { "input": "submerge", "output": "⠎⠥⠃â â »â ›â ‘" }, { "input": "submerged", "output": "⠎⠥⠃â â »â ›â «" }, { "input": "submergence", "output": "⠎⠥⠃â â »â ›â °â ‘" }, { "input": "submergence's", "output": "⠎⠥⠃â â »â ›â °â ‘â „â Ž" }, { "input": "submerges", "output": "⠎⠥⠃â â »â ›â ‘â Ž" }, { "input": "submerging", "output": "⠎⠥⠃â â »â ›â Œ" }, { "input": "submerse", "output": "⠎⠥⠃â â »â Žâ ‘" }, { "input": "submersed", "output": "⠎⠥⠃â â »â Žâ «" }, { "input": "submerses", "output": "⠎⠥⠃â â »â Žâ ‘â Ž" }, { "input": "submersible", "output": "⠎⠥⠃â â »â Žâ Šâ ¼" }, { "input": "submersible's", "output": "⠎⠥⠃â â »â Žâ Šâ ¼â „â Ž" }, { "input": "submersibles", "output": "⠎⠥⠃â â »â Žâ Šâ ¼â Ž" }, { "input": "submersing", "output": "⠎⠥⠃â â »â Žâ Œ" }, { "input": "submersion", "output": "⠎⠥⠃â â »â ¨â " }, { "input": "submersion's", "output": "⠎⠥⠃â â »â ¨â â „â Ž" }, { "input": "submicroscopic", "output": "⠎⠥⠃â â Šâ ‰â —⠕⠎⠉⠕â â Šâ ‰" }, { "input": "submission", "output": "⠎⠥⠃â â Šâ Žâ ¨â " }, { "input": "submission's", "output": "⠎⠥⠃â â Šâ Žâ ¨â â „â Ž" }, { "input": "submissions", "output": "⠎⠥⠃â â Šâ Žâ ¨â â Ž" }, { "input": "submissive", "output": "⠎⠥⠃â â Šâ Žâ Žâ Šâ §â ‘" }, { "input": "submissiveness's", "output": "⠎⠥⠃â â Šâ Žâ Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "submit", "output": "⠎⠥⠃â â Šâ ž" }, { "input": "submits", "output": "⠎⠥⠃â â Šâ žâ Ž" }, { "input": "submitted", "output": "⠎⠥⠃â â Šâ žâ žâ «" }, { "input": "submitter", "output": "⠎⠥⠃â â Šâ žâ žâ »" }, { "input": "submitting", "output": "⠎⠥⠃â â Šâ žâ žâ Œ" }, { "input": "subnormal", "output": "⠎⠥⠃â â •â —â â â ‡" }, { "input": "suborbital", "output": "⠎⠥⠃⠕⠗⠃⠊⠞â â ‡" }, { "input": "suborder", "output": "⠎⠥⠃⠕⠗⠙⠻" }, { "input": "suborder's", "output": "⠎⠥⠃⠕⠗⠙⠻⠄⠎" }, { "input": "suborders", "output": "⠎⠥⠃⠕⠗⠙⠻⠎" }, { "input": "subordinate", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ ‘" }, { "input": "subordinate's", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ ‘â „â Ž" }, { "input": "subordinated", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ «" }, { "input": "subordinates", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ ‘â Ž" }, { "input": "subordinating", "output": "⠎⠥⠃⠕⠗⠙⠔â â žâ Œ" }, { "input": "subordination", "output": "⠎⠥⠃⠕⠗⠙⠔⠠â " }, { "input": "subordination's", "output": "⠎⠥⠃⠕⠗⠙⠔⠠â â „â Ž" }, { "input": "suborn", "output": "⠎⠥⠃⠕⠗â " }, { "input": "subornation", "output": "⠎⠥⠃⠕⠗â â  â " }, { "input": "subornation's", "output": "⠎⠥⠃⠕⠗â â  â â „â Ž" }, { "input": "suborned", "output": "⠎⠥⠃⠕⠗â â «" }, { "input": "suborning", "output": "⠎⠥⠃⠕⠗â â Œ" }, { "input": "suborns", "output": "⠎⠥⠃⠕⠗â â Ž" }, { "input": "subplot", "output": "⠎⠥⠃â â ‡â •â ž" }, { "input": "subplot's", "output": "⠎⠥⠃â â ‡â •â žâ „â Ž" }, { "input": "subplots", "output": "⠎⠥⠃â â ‡â •â žâ Ž" }, { "input": "subpoena", "output": "⠎⠥⠃â â •â ‘â â " }, { "input": "subpoena's", "output": "⠎⠥⠃â â •â ‘â â â „â Ž" }, { "input": "subpoenaed", "output": "⠎⠥⠃â â •â ‘â â â «" }, { "input": "subpoenaing", "output": "⠎⠥⠃â â •â ‘â â â Œ" }, { "input": "subpoenas", "output": "⠎⠥⠃â â •â ‘â â â Ž" }, { "input": "subprofessional", "output": "⠎⠥⠃â â —â •â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "subprofessional's", "output": "⠎⠥⠃â â —â •â ‹â ‘â Žâ ¨â â â ‡â „â Ž" }, { "input": "subprofessionals", "output": "⠎⠥⠃â â —â •â ‹â ‘â Žâ ¨â â â ‡â Ž" }, { "input": "subprogram", "output": "⠎⠥⠃â â —⠕⠛⠗â â " }, { "input": "subprograms", "output": "⠎⠥⠃â â —⠕⠛⠗â â â Ž" }, { "input": "subroutine", "output": "⠎⠥⠃⠗⠳⠞⠔⠑" }, { "input": "subroutine's", "output": "⠎⠥⠃⠗⠳⠞⠔⠑⠄⠎" }, { "input": "subroutines", "output": "⠎⠥⠃⠗⠳⠞⠔⠑⠎" }, { "input": "subs", "output": "⠎⠥⠃⠎" }, { "input": "subscribe", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠑" }, { "input": "subscribed", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠫" }, { "input": "subscriber", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠻" }, { "input": "subscriber's", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠻⠄⠎" }, { "input": "subscribers", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠻⠎" }, { "input": "subscribes", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠑⠎" }, { "input": "subscribing", "output": "⠎⠥⠃⠎⠉⠗⠊⠃⠌" }, { "input": "subscript", "output": "⠎⠥⠃⠎⠉⠗⠊â â ž" }, { "input": "subscript's", "output": "⠎⠥⠃⠎⠉⠗⠊â â žâ „â Ž" }, { "input": "subscription", "output": "⠎⠥⠃⠎⠉⠗⠊â â °â " }, { "input": "subscription's", "output": "⠎⠥⠃⠎⠉⠗⠊â â °â â „â Ž" }, { "input": "subscriptions", "output": "⠎⠥⠃⠎⠉⠗⠊â â °â â Ž" }, { "input": "subscripts", "output": "⠎⠥⠃⠎⠉⠗⠊â â žâ Ž" }, { "input": "subsection", "output": "⠎⠥⠃⠎⠑⠉⠰â " }, { "input": "subsection's", "output": "⠎⠥⠃⠎⠑⠉⠰â â „â Ž" }, { "input": "subsections", "output": "⠎⠥⠃⠎⠑⠉⠰â â Ž" }, { "input": "subsequent", "output": "⠎⠥⠃⠎⠑⠟⠥⠢⠞" }, { "input": "subsequently", "output": "⠎⠥⠃⠎⠑⠟⠥⠢⠞⠇⠽" }, { "input": "subservience", "output": "⠎⠥⠃⠎⠻⠧⠊⠰⠑" }, { "input": "subservience's", "output": "⠎⠥⠃⠎⠻⠧⠊⠰⠑⠄⠎" }, { "input": "subservient", "output": "⠎⠥⠃⠎⠻⠧⠊⠢⠞" }, { "input": "subset", "output": "⠎⠥⠃⠎⠑⠞" }, { "input": "subset's", "output": "⠎⠥⠃⠎⠑⠞⠄⠎" }, { "input": "subsets", "output": "⠎⠥⠃⠎⠑⠞⠎" }, { "input": "subside", "output": "⠎⠥⠃⠎⠊⠙⠑" }, { "input": "subsided", "output": "⠎⠥⠃⠎⠊⠙⠫" }, { "input": "subsidence", "output": "⠎⠥⠃⠎⠊⠙⠰⠑" }, { "input": "subsidence's", "output": "⠎⠥⠃⠎⠊⠙⠰⠑⠄⠎" }, { "input": "subsides", "output": "⠎⠥⠃⠎⠊⠙⠑⠎" }, { "input": "subsidiaries", "output": "⠎⠥⠃⠎⠊⠙⠊⠜⠊⠑⠎" }, { "input": "subsidiary", "output": "⠎⠥⠃⠎⠊⠙⠊⠜⠽" }, { "input": "subsidiary's", "output": "⠎⠥⠃⠎⠊⠙⠊⠜⠽⠄⠎" }, { "input": "subsidies", "output": "⠎⠥⠃⠎⠊⠙⠊⠑⠎" }, { "input": "subsiding", "output": "⠎⠥⠃⠎⠊⠙⠌" }, { "input": "subsidization", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠠â " }, { "input": "subsidization's", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠠â â „â Ž" }, { "input": "subsidize", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠑" }, { "input": "subsidized", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠫" }, { "input": "subsidizer", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠻" }, { "input": "subsidizer's", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠻⠄⠎" }, { "input": "subsidizers", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠻⠎" }, { "input": "subsidizes", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠑⠎" }, { "input": "subsidizing", "output": "⠎⠥⠃⠎⠊⠙⠊⠵⠌" }, { "input": "subsidy", "output": "⠎⠥⠃⠎⠊⠙⠽" }, { "input": "subsidy's", "output": "⠎⠥⠃⠎⠊⠙⠽⠄⠎" }, { "input": "subsist", "output": "⠎⠥⠃⠎⠊⠌" }, { "input": "subsisted", "output": "⠎⠥⠃⠎⠊⠌⠫" }, { "input": "subsistence", "output": "⠎⠥⠃⠎⠊⠌⠰⠑" }, { "input": "subsistence's", "output": "⠎⠥⠃⠎⠊⠌⠰⠑⠄⠎" }, { "input": "subsisting", "output": "⠎⠥⠃⠎⠊⠌⠌" }, { "input": "subsists", "output": "⠎⠥⠃⠎⠊⠌⠎" }, { "input": "subsoil", "output": "⠎⠥⠃⠎⠕⠊⠇" }, { "input": "subsoil's", "output": "⠎⠥⠃⠎⠕⠊⠇⠄⠎" }, { "input": "subsonic", "output": "⠎⠥⠃⠎⠕â â Šâ ‰" }, { "input": "subspace", "output": "⠎⠥⠃⠎â â â ‰â ‘" }, { "input": "substance", "output": "⠎⠥⠃⠌⠨⠑" }, { "input": "substance's", "output": "⠎⠥⠃⠌⠨⠑⠄⠎" }, { "input": "substances", "output": "⠎⠥⠃⠌⠨⠑⠎" }, { "input": "substandard", "output": "⠎⠥⠃⠌⠯⠜⠙" }, { "input": "substantial", "output": "⠎⠥⠃⠌â â â žâ Šâ â ‡" }, { "input": "substantially", "output": "⠎⠥⠃⠌â â â žâ Šâ  â ½" }, { "input": "substantiate", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ ‘" }, { "input": "substantiated", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ «" }, { "input": "substantiates", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ ‘â Ž" }, { "input": "substantiating", "output": "⠎⠥⠃⠌â â â žâ Šâ â žâ Œ" }, { "input": "substantiation", "output": "⠎⠥⠃⠌â â â žâ Šâ  â " }, { "input": "substantiation's", "output": "⠎⠥⠃⠌â â â žâ Šâ  â â „â Ž" }, { "input": "substantiations", "output": "⠎⠥⠃⠌â â â žâ Šâ  â â Ž" }, { "input": "substantive", "output": "⠎⠥⠃⠌â â â žâ Šâ §â ‘" }, { "input": "substantive's", "output": "⠎⠥⠃⠌â â â žâ Šâ §â ‘â „â Ž" }, { "input": "substantively", "output": "⠎⠥⠃⠌â â â žâ Šâ §â ‘⠇⠽" }, { "input": "substantives", "output": "⠎⠥⠃⠌â â â žâ Šâ §â ‘â Ž" }, { "input": "substation", "output": "⠎⠥⠃⠌⠠â " }, { "input": "substation's", "output": "⠎⠥⠃⠌⠠â â „â Ž" }, { "input": "substations", "output": "⠎⠥⠃⠌⠠â â Ž" }, { "input": "substitute", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠑" }, { "input": "substitute's", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠑⠄⠎" }, { "input": "substituted", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠫" }, { "input": "substitutes", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠑⠎" }, { "input": "substituting", "output": "⠎⠥⠃⠌⠊⠞⠥⠞⠌" }, { "input": "substitution", "output": "⠎⠥⠃⠌⠊⠞⠥⠰â " }, { "input": "substitution's", "output": "⠎⠥⠃⠌⠊⠞⠥⠰â â „â Ž" }, { "input": "substitutions", "output": "⠎⠥⠃⠌⠊⠞⠥⠰â â Ž" }, { "input": "substrata", "output": "⠎⠥⠃⠌⠗â â žâ " }, { "input": "substrate", "output": "⠎⠥⠃⠌⠗â â žâ ‘" }, { "input": "substrate's", "output": "⠎⠥⠃⠌⠗â â žâ ‘â „â Ž" }, { "input": "substrates", "output": "⠎⠥⠃⠌⠗â â žâ ‘â Ž" }, { "input": "substratum", "output": "⠎⠥⠃⠌⠗â â žâ ¥â " }, { "input": "substratum's", "output": "⠎⠥⠃⠌⠗â â žâ ¥â â „â Ž" }, { "input": "substructure", "output": "⠎⠥⠃⠌⠗⠥⠉⠞⠥⠗⠑" }, { "input": "substructure's", "output": "⠎⠥⠃⠌⠗⠥⠉⠞⠥⠗⠑⠄⠎" }, { "input": "substructures", "output": "⠎⠥⠃⠌⠗⠥⠉⠞⠥⠗⠑⠎" }, { "input": "subsume", "output": "⠎⠥⠃⠎⠥â â ‘" }, { "input": "subsumed", "output": "⠎⠥⠃⠎⠥â â «" }, { "input": "subsumes", "output": "⠎⠥⠃⠎⠥â â ‘â Ž" }, { "input": "subsuming", "output": "⠎⠥⠃⠎⠥â â Œ" }, { "input": "subsurface", "output": "⠎⠥⠃⠎⠥⠗⠋â â ‰â ‘" }, { "input": "subsurface's", "output": "⠎⠥⠃⠎⠥⠗⠋â â ‰â ‘â „â Ž" }, { "input": "subsystem", "output": "⠎⠥⠃⠎⠽⠌⠑â " }, { "input": "subsystem's", "output": "⠎⠥⠃⠎⠽⠌⠑â â „â Ž" }, { "input": "subsystems", "output": "⠎⠥⠃⠎⠽⠌⠑â â Ž" }, { "input": "subteen", "output": "⠎⠥⠃⠞⠑⠢" }, { "input": "subteen's", "output": "⠎⠥⠃⠞⠑⠢⠄⠎" }, { "input": "subteens", "output": "⠎⠥⠃⠞⠑⠢⠎" }, { "input": "subtenancy", "output": "⠎⠥⠃⠞⠢â â â ‰â ½" }, { "input": "subtenancy's", "output": "⠎⠥⠃⠞⠢â â â ‰â ½â „â Ž" }, { "input": "subterfuge", "output": "⠎⠥⠃⠞⠻⠋⠥⠛⠑" }, { "input": "subterfuge's", "output": "⠎⠥⠃⠞⠻⠋⠥⠛⠑⠄⠎" }, { "input": "subterfuges", "output": "⠎⠥⠃⠞⠻⠋⠥⠛⠑⠎" }, { "input": "subterranean", "output": "⠎⠥⠃⠞⠻⠗â â â ‚â " }, { "input": "subtitle", "output": "⠎⠥⠃⠞⠊⠞⠇⠑" }, { "input": "subtitle's", "output": "⠎⠥⠃⠞⠊⠞⠇⠑⠄⠎" }, { "input": "subtitled", "output": "⠎⠥⠃⠞⠊⠞⠇⠫" }, { "input": "subtitles", "output": "⠎⠥⠃⠞⠊⠞⠇⠑⠎" }, { "input": "subtitling", "output": "⠎⠥⠃⠞⠊⠞⠇⠌" }, { "input": "subtle", "output": "⠎⠥⠃⠞⠇⠑" }, { "input": "subtler", "output": "⠎⠥⠃⠞⠇⠻" }, { "input": "subtlest", "output": "⠎⠥⠃⠞⠇⠑⠌" }, { "input": "subtleties", "output": "⠎⠥⠃⠞⠇⠑⠞⠊⠑⠎" }, { "input": "subtlety", "output": "⠎⠥⠃⠞⠇⠑⠞⠽" }, { "input": "subtlety's", "output": "⠎⠥⠃⠞⠇⠑⠞⠽⠄⠎" }, { "input": "subtly", "output": "⠎⠥⠃⠞⠇⠽" }, { "input": "subtopic", "output": "⠎⠥⠃⠞⠕â â Šâ ‰" }, { "input": "subtopic's", "output": "⠎⠥⠃⠞⠕â â Šâ ‰â „â Ž" }, { "input": "subtopics", "output": "⠎⠥⠃⠞⠕â â Šâ ‰â Ž" }, { "input": "subtotal", "output": "⠎⠥⠃⠞⠕⠞â â ‡" }, { "input": "subtotal's", "output": "⠎⠥⠃⠞⠕⠞â â ‡â „â Ž" }, { "input": "subtotaled", "output": "⠎⠥⠃⠞⠕⠞â â ‡â «" }, { "input": "subtotaling", "output": "⠎⠥⠃⠞⠕⠞â â ‡â Œ" }, { "input": "subtotals", "output": "⠎⠥⠃⠞⠕⠞â â ‡â Ž" }, { "input": "subtract", "output": "⠎⠥⠃⠞⠗â â ‰â ž" }, { "input": "subtracted", "output": "⠎⠥⠃⠞⠗â â ‰â žâ «" }, { "input": "subtracting", "output": "⠎⠥⠃⠞⠗â â ‰â žâ Œ" }, { "input": "subtraction", "output": "⠎⠥⠃⠞⠗â â ‰â °â " }, { "input": "subtraction's", "output": "⠎⠥⠃⠞⠗â â ‰â °â â „â Ž" }, { "input": "subtractions", "output": "⠎⠥⠃⠞⠗â â ‰â °â â Ž" }, { "input": "subtracts", "output": "⠎⠥⠃⠞⠗â â ‰â žâ Ž" }, { "input": "subtrahend", "output": "⠎⠥⠃⠞⠗â â “⠢⠙" }, { "input": "subtrahend's", "output": "⠎⠥⠃⠞⠗â â “⠢⠙⠄⠎" }, { "input": "subtrahends", "output": "⠎⠥⠃⠞⠗â â “⠢⠙⠎" }, { "input": "subtropic", "output": "⠎⠥⠃⠞⠗⠕â â Šâ ‰" }, { "input": "subtropical", "output": "⠎⠥⠃⠞⠗⠕â â Šâ ‰â â ‡" }, { "input": "subtropics", "output": "⠎⠥⠃⠞⠗⠕â â Šâ ‰â Ž" }, { "input": "subtropics's", "output": "⠎⠥⠃⠞⠗⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "suburb", "output": "⠎⠥⠃⠥⠗⠃" }, { "input": "suburb's", "output": "⠎⠥⠃⠥⠗⠃⠄⠎" }, { "input": "suburban", "output": "⠎⠥⠃⠥⠗⠃â â " }, { "input": "suburban's", "output": "⠎⠥⠃⠥⠗⠃â â â „â Ž" }, { "input": "suburbanite", "output": "⠎⠥⠃⠥⠗⠃â â â Šâ žâ ‘" }, { "input": "suburbanite's", "output": "⠎⠥⠃⠥⠗⠃â â â Šâ žâ ‘â „â Ž" }, { "input": "suburbanites", "output": "⠎⠥⠃⠥⠗⠃â â â Šâ žâ ‘â Ž" }, { "input": "suburbans", "output": "⠎⠥⠃⠥⠗⠃â â â Ž" }, { "input": "suburbia", "output": "⠎⠥⠃⠥⠗⠃⠊â " }, { "input": "suburbia's", "output": "⠎⠥⠃⠥⠗⠃⠊â â „â Ž" }, { "input": "suburbs", "output": "⠎⠥⠃⠥⠗⠃⠎" }, { "input": "subversion", "output": "⠎⠥⠃⠧⠻⠨â " }, { "input": "subversion's", "output": "⠎⠥⠃⠧⠻⠨â â „â Ž" }, { "input": "subversive", "output": "⠎⠥⠃⠧⠻⠎⠊⠧⠑" }, { "input": "subversive's", "output": "⠎⠥⠃⠧⠻⠎⠊⠧⠑⠄⠎" }, { "input": "subversiveness's", "output": "⠎⠥⠃⠧⠻⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "subversives", "output": "⠎⠥⠃⠧⠻⠎⠊⠧⠑⠎" }, { "input": "subvert", "output": "⠎⠥⠃⠧⠻⠞" }, { "input": "subverted", "output": "⠎⠥⠃⠧⠻⠞⠫" }, { "input": "subverting", "output": "⠎⠥⠃⠧⠻⠞⠌" }, { "input": "subverts", "output": "⠎⠥⠃⠧⠻⠞⠎" }, { "input": "subway", "output": "⠎⠥⠃⠺â â ½" }, { "input": "subway's", "output": "⠎⠥⠃⠺â â ½â „â Ž" }, { "input": "subways", "output": "⠎⠥⠃⠺â â ½â Ž" }, { "input": "succeed", "output": "⠎⠥⠒⠑⠫" }, { "input": "succeeded", "output": "⠎⠥⠒⠑⠫⠫" }, { "input": "succeeding", "output": "⠎⠥⠒⠑⠫⠌" }, { "input": "succeeds", "output": "⠎⠥⠒⠑⠫⠎" }, { "input": "success", "output": "⠎⠥⠒⠑⠎⠎" }, { "input": "success's", "output": "⠎⠥⠒⠑⠎⠎⠄⠎" }, { "input": "successes", "output": "⠎⠥⠒⠑⠎⠎⠑⠎" }, { "input": "successful", "output": "⠎⠥⠒⠑⠎⠎⠰⠇" }, { "input": "successfully", "output": "⠎⠥⠒⠑⠎⠎⠰⠇⠇⠽" }, { "input": "succession", "output": "⠎⠥⠒⠑⠎⠨â " }, { "input": "succession's", "output": "⠎⠥⠒⠑⠎⠨â â „â Ž" }, { "input": "successions", "output": "⠎⠥⠒⠑⠎⠨â â Ž" }, { "input": "successive", "output": "⠎⠥⠒⠑⠎⠎⠊⠧⠑" }, { "input": "successively", "output": "⠎⠥⠒⠑⠎⠎⠊⠧⠑⠇⠽" }, { "input": "successor", "output": "⠎⠥⠒⠑⠎⠎⠕⠗" }, { "input": "successor's", "output": "⠎⠥⠒⠑⠎⠎⠕⠗⠄⠎" }, { "input": "successors", "output": "⠎⠥⠒⠑⠎⠎⠕⠗⠎" }, { "input": "succinct", "output": "⠎⠥⠒⠔⠉⠞" }, { "input": "succincter", "output": "⠎⠥⠒⠔⠉⠞⠻" }, { "input": "succinctest", "output": "⠎⠥⠒⠔⠉⠞⠑⠌" }, { "input": "succinctly", "output": "⠎⠥⠒⠔⠉⠞⠇⠽" }, { "input": "succinctness", "output": "⠎⠥⠒⠔⠉⠞⠰⠎" }, { "input": "succinctness's", "output": "⠎⠥⠒⠔⠉⠞⠰⠎⠄⠎" }, { "input": "succor", "output": "⠎⠥⠒⠕⠗" }, { "input": "succor's", "output": "⠎⠥⠒⠕⠗⠄⠎" }, { "input": "succored", "output": "⠎⠥⠒⠕⠗⠫" }, { "input": "succoring", "output": "⠎⠥⠒⠕⠗⠌" }, { "input": "succors", "output": "⠎⠥⠒⠕⠗⠎" }, { "input": "succotash", "output": "⠎⠥⠒⠕⠞â â ©" }, { "input": "succotash's", "output": "⠎⠥⠒⠕⠞â â ©â „â Ž" }, { "input": "succulence", "output": "⠎⠥⠒⠥⠇⠰⠑" }, { "input": "succulence's", "output": "⠎⠥⠒⠥⠇⠰⠑⠄⠎" }, { "input": "succulency", "output": "⠎⠥⠒⠥⠇⠢⠉⠽" }, { "input": "succulency's", "output": "⠎⠥⠒⠥⠇⠢⠉⠽⠄⠎" }, { "input": "succulent", "output": "⠎⠥⠒⠥⠇⠢⠞" }, { "input": "succulent's", "output": "⠎⠥⠒⠥⠇⠢⠞⠄⠎" }, { "input": "succulents", "output": "⠎⠥⠒⠥⠇⠢⠞⠎" }, { "input": "succumb", "output": "⠎⠥⠒⠥â â ƒ" }, { "input": "succumbed", "output": "⠎⠥⠒⠥â â ƒâ «" }, { "input": "succumbing", "output": "⠎⠥⠒⠥â â ƒâ Œ" }, { "input": "succumbs", "output": "⠎⠥⠒⠥â â ƒâ Ž" }, { "input": "such", "output": "â Žâ ¡" }, { "input": "suchlike", "output": "⠎⠡⠇⠊⠅⠑" }, { "input": "suck", "output": "⠎⠥⠉⠅" }, { "input": "suck's", "output": "⠎⠥⠉⠅⠄⠎" }, { "input": "sucked", "output": "⠎⠥⠉⠅⠫" }, { "input": "sucker", "output": "⠎⠥⠉⠅⠻" }, { "input": "sucker's", "output": "⠎⠥⠉⠅⠻⠄⠎" }, { "input": "suckered", "output": "⠎⠥⠉⠅⠻⠫" }, { "input": "suckering", "output": "⠎⠥⠉⠅⠻⠌" }, { "input": "suckers", "output": "⠎⠥⠉⠅⠻⠎" }, { "input": "sucking", "output": "⠎⠥⠉⠅⠌" }, { "input": "suckle", "output": "⠎⠥⠉⠅⠇⠑" }, { "input": "suckled", "output": "⠎⠥⠉⠅⠇⠫" }, { "input": "suckles", "output": "⠎⠥⠉⠅⠇⠑⠎" }, { "input": "suckling", "output": "⠎⠥⠉⠅⠇⠌" }, { "input": "suckling's", "output": "⠎⠥⠉⠅⠇⠌⠄⠎" }, { "input": "sucklings", "output": "⠎⠥⠉⠅⠇⠌⠎" }, { "input": "sucks", "output": "⠎⠥⠉⠅⠎" }, { "input": "sucrose", "output": "⠎⠥⠉⠗⠕⠎⠑" }, { "input": "sucrose's", "output": "⠎⠥⠉⠗⠕⠎⠑⠄⠎" }, { "input": "suction", "output": "⠎⠥⠉⠰â " }, { "input": "suction's", "output": "⠎⠥⠉⠰â â „â Ž" }, { "input": "suctioned", "output": "⠎⠥⠉⠰â â «" }, { "input": "suctioning", "output": "⠎⠥⠉⠰â â Œ" }, { "input": "suctions", "output": "⠎⠥⠉⠰â â Ž" }, { "input": "sudden", "output": "⠎⠥⠲⠢" }, { "input": "suddenly", "output": "⠎⠥⠲⠢⠇⠽" }, { "input": "suddenness", "output": "⠎⠥⠲⠢⠰⠎" }, { "input": "suddenness's", "output": "⠎⠥⠲⠢⠰⠎⠄⠎" }, { "input": "suds", "output": "⠎⠥⠙⠎" }, { "input": "suds's", "output": "⠎⠥⠙⠎⠄⠎" }, { "input": "sudsier", "output": "⠎⠥⠙⠎⠊⠻" }, { "input": "sudsiest", "output": "⠎⠥⠙⠎⠊⠑⠌" }, { "input": "sudsy", "output": "⠎⠥⠙⠎⠽" }, { "input": "sue", "output": "⠎⠥⠑" }, { "input": "sued", "output": "⠎⠥⠫" }, { "input": "suede", "output": "⠎⠥⠫⠑" }, { "input": "suede's", "output": "⠎⠥⠫⠑⠄⠎" }, { "input": "sues", "output": "⠎⠥⠑⠎" }, { "input": "suet", "output": "⠎⠥⠑⠞" }, { "input": "suet's", "output": "⠎⠥⠑⠞⠄⠎" }, { "input": "suety", "output": "⠎⠥⠑⠞⠽" }, { "input": "suffer", "output": "⠎⠥⠖⠻" }, { "input": "sufferance", "output": "⠎⠥⠖⠻⠨⠑" }, { "input": "sufferance's", "output": "⠎⠥⠖⠻⠨⠑⠄⠎" }, { "input": "suffered", "output": "⠎⠥⠖⠻⠫" }, { "input": "sufferer", "output": "⠎⠥⠖⠻⠻" }, { "input": "sufferer's", "output": "⠎⠥⠖⠻⠻⠄⠎" }, { "input": "sufferers", "output": "⠎⠥⠖⠻⠻⠎" }, { "input": "suffering", "output": "⠎⠥⠖⠻⠌" }, { "input": "suffering's", "output": "⠎⠥⠖⠻⠌⠄⠎" }, { "input": "sufferings", "output": "⠎⠥⠖⠻⠌⠎" }, { "input": "suffers", "output": "⠎⠥⠖⠻⠎" }, { "input": "suffice", "output": "⠎⠥⠖⠊⠉⠑" }, { "input": "sufficed", "output": "⠎⠥⠖⠊⠉⠫" }, { "input": "suffices", "output": "⠎⠥⠖⠊⠉⠑⠎" }, { "input": "sufficiency", "output": "⠎⠥⠖⠊⠉⠊⠢⠉⠽" }, { "input": "sufficiency's", "output": "⠎⠥⠖⠊⠉⠊⠢⠉⠽⠄⠎" }, { "input": "sufficient", "output": "⠎⠥⠖⠊⠉⠊⠢⠞" }, { "input": "sufficiently", "output": "⠎⠥⠖⠊⠉⠊⠢⠞⠇⠽" }, { "input": "sufficing", "output": "⠎⠥⠖⠊⠉⠌" }, { "input": "suffix", "output": "⠎⠥⠖⠊⠭" }, { "input": "suffix's", "output": "⠎⠥⠖⠊⠭⠄⠎" }, { "input": "suffixation", "output": "⠎⠥⠖⠊⠭⠠â " }, { "input": "suffixation's", "output": "⠎⠥⠖⠊⠭⠠â â „â Ž" }, { "input": "suffixed", "output": "⠎⠥⠖⠊⠭⠫" }, { "input": "suffixes", "output": "⠎⠥⠖⠊⠭⠑⠎" }, { "input": "suffixing", "output": "⠎⠥⠖⠊⠭⠌" }, { "input": "suffocate", "output": "⠎⠥⠖⠕⠉â â žâ ‘" }, { "input": "suffocated", "output": "⠎⠥⠖⠕⠉â â žâ «" }, { "input": "suffocates", "output": "⠎⠥⠖⠕⠉â â žâ ‘â Ž" }, { "input": "suffocating", "output": "⠎⠥⠖⠕⠉â â žâ Œ" }, { "input": "suffocation", "output": "⠎⠥⠖⠕⠉⠠â " }, { "input": "suffocation's", "output": "⠎⠥⠖⠕⠉⠠â â „â Ž" }, { "input": "suffragan", "output": "⠎⠥⠖⠗â â ›â â " }, { "input": "suffragan's", "output": "⠎⠥⠖⠗â â ›â â â „â Ž" }, { "input": "suffragans", "output": "⠎⠥⠖⠗â â ›â â â Ž" }, { "input": "suffrage", "output": "⠎⠥⠖⠗â â ›â ‘" }, { "input": "suffrage's", "output": "⠎⠥⠖⠗â â ›â ‘â „â Ž" }, { "input": "suffragette", "output": "⠎⠥⠖⠗â â ›â ‘â žâ žâ ‘" }, { "input": "suffragette's", "output": "⠎⠥⠖⠗â â ›â ‘â žâ žâ ‘â „â Ž" }, { "input": "suffragettes", "output": "⠎⠥⠖⠗â â ›â ‘â žâ žâ ‘â Ž" }, { "input": "suffragist", "output": "⠎⠥⠖⠗â â ›â Šâ Œ" }, { "input": "suffragist's", "output": "⠎⠥⠖⠗â â ›â Šâ Œâ „â Ž" }, { "input": "suffragists", "output": "⠎⠥⠖⠗â â ›â Šâ Œâ Ž" }, { "input": "suffuse", "output": "⠎⠥⠖⠥⠎⠑" }, { "input": "suffused", "output": "⠎⠥⠖⠥⠎⠫" }, { "input": "suffuses", "output": "⠎⠥⠖⠥⠎⠑⠎" }, { "input": "suffusing", "output": "⠎⠥⠖⠥⠎⠌" }, { "input": "suffusion", "output": "⠎⠥⠖⠥⠨â " }, { "input": "suffusion's", "output": "⠎⠥⠖⠥⠨â â „â Ž" }, { "input": "sugar", "output": "⠎⠥⠛⠜" }, { "input": "sugar's", "output": "⠎⠥⠛⠜⠄⠎" }, { "input": "sugarcane", "output": "⠎⠥⠛⠜⠉â â â ‘" }, { "input": "sugarcane's", "output": "⠎⠥⠛⠜⠉â â â ‘â „â Ž" }, { "input": "sugarcoat", "output": "⠎⠥⠛⠜⠉⠕â â ž" }, { "input": "sugarcoated", "output": "⠎⠥⠛⠜⠉⠕â â žâ «" }, { "input": "sugarcoating", "output": "⠎⠥⠛⠜⠉⠕â â žâ Œ" }, { "input": "sugarcoats", "output": "⠎⠥⠛⠜⠉⠕â â žâ Ž" }, { "input": "sugared", "output": "⠎⠥⠛⠜⠫" }, { "input": "sugarier", "output": "⠎⠥⠛⠜⠊⠻" }, { "input": "sugariest", "output": "⠎⠥⠛⠜⠊⠑⠌" }, { "input": "sugaring", "output": "⠎⠥⠛⠜⠌" }, { "input": "sugarless", "output": "⠎⠥⠛⠜⠨⠎" }, { "input": "sugarplum", "output": "⠎⠥⠛⠜â â ‡â ¥â " }, { "input": "sugarplum's", "output": "⠎⠥⠛⠜â â ‡â ¥â â „â Ž" }, { "input": "sugarplums", "output": "⠎⠥⠛⠜â â ‡â ¥â â Ž" }, { "input": "sugars", "output": "⠎⠥⠛⠜⠎" }, { "input": "sugary", "output": "⠎⠥⠛⠜⠽" }, { "input": "suggest", "output": "⠎⠥⠶⠑⠌" }, { "input": "suggested", "output": "⠎⠥⠶⠑⠌⠫" }, { "input": "suggester", "output": "⠎⠥⠶⠑⠌⠻" }, { "input": "suggestibility", "output": "⠎⠥⠶⠑⠌⠊⠃⠊⠇⠰⠽" }, { "input": "suggestibility's", "output": "⠎⠥⠶⠑⠌⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "suggestible", "output": "⠎⠥⠶⠑⠌⠊⠼" }, { "input": "suggesting", "output": "⠎⠥⠶⠑⠌⠌" }, { "input": "suggestion", "output": "⠎⠥⠶⠑⠎⠰â " }, { "input": "suggestion's", "output": "⠎⠥⠶⠑⠎⠰â â „â Ž" }, { "input": "suggestions", "output": "⠎⠥⠶⠑⠎⠰â â Ž" }, { "input": "suggestive", "output": "⠎⠥⠶⠑⠌⠊⠧⠑" }, { "input": "suggestively", "output": "⠎⠥⠶⠑⠌⠊⠧⠑⠇⠽" }, { "input": "suggestiveness", "output": "⠎⠥⠶⠑⠌⠊⠧⠑⠰⠎" }, { "input": "suggestiveness's", "output": "⠎⠥⠶⠑⠌⠊⠧⠑⠰⠎⠄⠎" }, { "input": "suggests", "output": "⠎⠥⠶⠑⠌⠎" }, { "input": "suicidal", "output": "⠎⠥⠊⠉⠊⠙â â ‡" }, { "input": "suicide", "output": "⠎⠥⠊⠉⠊⠙⠑" }, { "input": "suicide's", "output": "⠎⠥⠊⠉⠊⠙⠑⠄⠎" }, { "input": "suicides", "output": "⠎⠥⠊⠉⠊⠙⠑⠎" }, { "input": "suing", "output": "⠎⠥⠌" }, { "input": "suit", "output": "⠎⠥⠊⠞" }, { "input": "suit's", "output": "⠎⠥⠊⠞⠄⠎" }, { "input": "suitability", "output": "⠎⠥⠊⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "suitability's", "output": "⠎⠥⠊⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "suitable", "output": "⠎⠥⠊⠞â â ¼" }, { "input": "suitableness", "output": "⠎⠥⠊⠞â â ¼â °â Ž" }, { "input": "suitableness's", "output": "⠎⠥⠊⠞â â ¼â °â Žâ „â Ž" }, { "input": "suitably", "output": "⠎⠥⠊⠞â â ƒâ ‡â ½" }, { "input": "suitcase", "output": "⠎⠥⠊⠞⠉â â Žâ ‘" }, { "input": "suitcase's", "output": "⠎⠥⠊⠞⠉â â Žâ ‘â „â Ž" }, { "input": "suitcases", "output": "⠎⠥⠊⠞⠉â â Žâ ‘â Ž" }, { "input": "suite", "output": "⠎⠥⠊⠞⠑" }, { "input": "suite's", "output": "⠎⠥⠊⠞⠑⠄⠎" }, { "input": "suited", "output": "⠎⠥⠊⠞⠫" }, { "input": "suites", "output": "⠎⠥⠊⠞⠑⠎" }, { "input": "suiting", "output": "⠎⠥⠊⠞⠌" }, { "input": "suiting's", "output": "⠎⠥⠊⠞⠌⠄⠎" }, { "input": "suitor", "output": "⠎⠥⠊⠞⠕⠗" }, { "input": "suitor's", "output": "⠎⠥⠊⠞⠕⠗⠄⠎" }, { "input": "suitors", "output": "⠎⠥⠊⠞⠕⠗⠎" }, { "input": "suits", "output": "⠎⠥⠊⠞⠎" }, { "input": "sukiyaki", "output": "⠎⠥⠅⠊⠽â â …â Š" }, { "input": "sukiyaki's", "output": "⠎⠥⠅⠊⠽â â …â Šâ „â Ž" }, { "input": "sulfa", "output": "⠎⠥⠇⠋â " }, { "input": "sulfa's", "output": "⠎⠥⠇⠋â â „â Ž" }, { "input": "sulfate", "output": "⠎⠥⠇⠋â â žâ ‘" }, { "input": "sulfate's", "output": "⠎⠥⠇⠋â â žâ ‘â „â Ž" }, { "input": "sulfates", "output": "⠎⠥⠇⠋â â žâ ‘â Ž" }, { "input": "sulfide", "output": "⠎⠥⠇⠋⠊⠙⠑" }, { "input": "sulfide's", "output": "⠎⠥⠇⠋⠊⠙⠑⠄⠎" }, { "input": "sulfides", "output": "⠎⠥⠇⠋⠊⠙⠑⠎" }, { "input": "sulfur", "output": "⠎⠥⠇⠋⠥⠗" }, { "input": "sulfur's", "output": "⠎⠥⠇⠋⠥⠗⠄⠎" }, { "input": "sulfured", "output": "⠎⠥⠇⠋⠥⠗⠫" }, { "input": "sulfuric", "output": "⠎⠥⠇⠋⠥⠗⠊⠉" }, { "input": "sulfuring", "output": "⠎⠥⠇⠋⠥⠗⠌" }, { "input": "sulfurous", "output": "⠎⠥⠇⠋⠥⠗⠳⠎" }, { "input": "sulfurs", "output": "⠎⠥⠇⠋⠥⠗⠎" }, { "input": "sulk", "output": "⠎⠥⠇⠅" }, { "input": "sulk's", "output": "⠎⠥⠇⠅⠄⠎" }, { "input": "sulked", "output": "⠎⠥⠇⠅⠫" }, { "input": "sulkier", "output": "⠎⠥⠇⠅⠊⠻" }, { "input": "sulkies", "output": "⠎⠥⠇⠅⠊⠑⠎" }, { "input": "sulkiest", "output": "⠎⠥⠇⠅⠊⠑⠌" }, { "input": "sulkily", "output": "⠎⠥⠇⠅⠊⠇⠽" }, { "input": "sulkiness", "output": "⠎⠥⠇⠅⠊⠰⠎" }, { "input": "sulkiness's", "output": "⠎⠥⠇⠅⠊⠰⠎⠄⠎" }, { "input": "sulking", "output": "⠎⠥⠇⠅⠌" }, { "input": "sulks", "output": "⠎⠥⠇⠅⠎" }, { "input": "sulky", "output": "⠎⠥⠇⠅⠽" }, { "input": "sulky's", "output": "⠎⠥⠇⠅⠽⠄⠎" }, { "input": "sullen", "output": "⠎⠥⠇⠇⠢" }, { "input": "sullener", "output": "⠎⠥⠇⠇⠢⠻" }, { "input": "sullenest", "output": "⠎⠥⠇⠇⠢⠑⠌" }, { "input": "sullenly", "output": "⠎⠥⠇⠇⠢⠇⠽" }, { "input": "sullenness", "output": "⠎⠥⠇⠇⠢⠰⠎" }, { "input": "sullenness's", "output": "⠎⠥⠇⠇⠢⠰⠎⠄⠎" }, { "input": "sullied", "output": "⠎⠥⠇⠇⠊⠫" }, { "input": "sullies", "output": "⠎⠥⠇⠇⠊⠑⠎" }, { "input": "sully", "output": "⠎⠥⠇⠇⠽" }, { "input": "sullying", "output": "⠎⠥⠇⠇⠽⠌" }, { "input": "sultan", "output": "⠎⠥⠇⠞â â " }, { "input": "sultan's", "output": "⠎⠥⠇⠞â â â „â Ž" }, { "input": "sultana", "output": "⠎⠥⠇⠞â â â " }, { "input": "sultana's", "output": "⠎⠥⠇⠞â â â â „â Ž" }, { "input": "sultanas", "output": "⠎⠥⠇⠞â â â â Ž" }, { "input": "sultanate", "output": "⠎⠥⠇⠞â â â â žâ ‘" }, { "input": "sultanate's", "output": "⠎⠥⠇⠞â â â â žâ ‘â „â Ž" }, { "input": "sultanates", "output": "⠎⠥⠇⠞â â â â žâ ‘â Ž" }, { "input": "sultans", "output": "⠎⠥⠇⠞â â â Ž" }, { "input": "sultrier", "output": "⠎⠥⠇⠞⠗⠊⠻" }, { "input": "sultriest", "output": "⠎⠥⠇⠞⠗⠊⠑⠌" }, { "input": "sultrily", "output": "⠎⠥⠇⠞⠗⠊⠇⠽" }, { "input": "sultriness's", "output": "⠎⠥⠇⠞⠗⠊⠰⠎⠄⠎" }, { "input": "sultry", "output": "⠎⠥⠇⠞⠗⠽" }, { "input": "sum", "output": "â Žâ ¥â " }, { "input": "sum's", "output": "â Žâ ¥â â „â Ž" }, { "input": "sumac", "output": "â Žâ ¥â â â ‰" }, { "input": "sumac's", "output": "â Žâ ¥â â â ‰â „â Ž" }, { "input": "summaries", "output": "â Žâ ¥â â â œâ Šâ ‘â Ž" }, { "input": "summarily", "output": "â Žâ ¥â â â œâ Šâ ‡â ½" }, { "input": "summarize", "output": "â Žâ ¥â â â œâ Šâ µâ ‘" }, { "input": "summarized", "output": "â Žâ ¥â â â œâ Šâ µâ «" }, { "input": "summarizes", "output": "â Žâ ¥â â â œâ Šâ µâ ‘â Ž" }, { "input": "summarizing", "output": "â Žâ ¥â â â œâ Šâ µâ Œ" }, { "input": "summary", "output": "â Žâ ¥â â â œâ ½" }, { "input": "summary's", "output": "â Žâ ¥â â â œâ ½â „â Ž" }, { "input": "summation", "output": "â Žâ ¥â â â  â " }, { "input": "summation's", "output": "â Žâ ¥â â â  â â „â Ž" }, { "input": "summations", "output": "â Žâ ¥â â â  â â Ž" }, { "input": "summed", "output": "â Žâ ¥â â â «" }, { "input": "summer", "output": "â Žâ ¥â â â »" }, { "input": "summer's", "output": "â Žâ ¥â â â »â „â Ž" }, { "input": "summered", "output": "â Žâ ¥â â â »â «" }, { "input": "summerhouse", "output": "â Žâ ¥â â â »â “⠳⠎⠑" }, { "input": "summerhouse's", "output": "â Žâ ¥â â â »â “⠳⠎⠑⠄⠎" }, { "input": "summerhouses", "output": "â Žâ ¥â â â »â “⠳⠎⠑⠎" }, { "input": "summerier", "output": "â Žâ ¥â â â »â Šâ »" }, { "input": "summeriest", "output": "â Žâ ¥â â â »â Šâ ‘â Œ" }, { "input": "summering", "output": "â Žâ ¥â â â »â Œ" }, { "input": "summers", "output": "â Žâ ¥â â â »â Ž" }, { "input": "summertime", "output": "â Žâ ¥â â â »â â ž" }, { "input": "summertime's", "output": "â Žâ ¥â â â »â â žâ „â Ž" }, { "input": "summery", "output": "â Žâ ¥â â â »â ½" }, { "input": "summing", "output": "â Žâ ¥â â â Œ" }, { "input": "summit", "output": "â Žâ ¥â â â Šâ ž" }, { "input": "summit's", "output": "â Žâ ¥â â â Šâ žâ „â Ž" }, { "input": "summitry", "output": "â Žâ ¥â â â Šâ žâ —â ½" }, { "input": "summitry's", "output": "â Žâ ¥â â â Šâ žâ —⠽⠄⠎" }, { "input": "summits", "output": "â Žâ ¥â â â Šâ žâ Ž" }, { "input": "summon", "output": "â Žâ ¥â â â •â " }, { "input": "summoned", "output": "â Žâ ¥â â â •â â «" }, { "input": "summoner", "output": "â Žâ ¥â â â •â â »" }, { "input": "summoner's", "output": "â Žâ ¥â â â •â â »â „â Ž" }, { "input": "summoners", "output": "â Žâ ¥â â â •â â »â Ž" }, { "input": "summoning", "output": "â Žâ ¥â â â •â â Œ" }, { "input": "summons", "output": "â Žâ ¥â â â •â â Ž" }, { "input": "summons's", "output": "â Žâ ¥â â â •â â Žâ „â Ž" }, { "input": "summonsed", "output": "â Žâ ¥â â â •â â Žâ «" }, { "input": "summonses", "output": "â Žâ ¥â â â •â â Žâ ‘â Ž" }, { "input": "summonsing", "output": "â Žâ ¥â â â •â â Žâ Œ" }, { "input": "sumo", "output": "â Žâ ¥â â •" }, { "input": "sumo's", "output": "â Žâ ¥â â •â „â Ž" }, { "input": "sump", "output": "â Žâ ¥â â " }, { "input": "sump's", "output": "â Žâ ¥â â â „â Ž" }, { "input": "sumps", "output": "â Žâ ¥â â â Ž" }, { "input": "sumptuous", "output": "â Žâ ¥â â â žâ ¥â ³â Ž" }, { "input": "sumptuousness's", "output": "â Žâ ¥â â â žâ ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "sums", "output": "â Žâ ¥â â Ž" }, { "input": "sun", "output": "â Žâ ¥â " }, { "input": "sun's", "output": "â Žâ ¥â â „â Ž" }, { "input": "sunbath", "output": "â Žâ ¥â â ƒâ â ¹" }, { "input": "sunbath's", "output": "â Žâ ¥â â ƒâ â ¹â „â Ž" }, { "input": "sunbathe", "output": "â Žâ ¥â â ƒâ â ®" }, { "input": "sunbathed", "output": "â Žâ ¥â â ƒâ â ®â ™" }, { "input": "sunbather", "output": "â Žâ ¥â â ƒâ â ®â —" }, { "input": "sunbather's", "output": "â Žâ ¥â â ƒâ â ®â —â „â Ž" }, { "input": "sunbathers", "output": "â Žâ ¥â â ƒâ â ®â —â Ž" }, { "input": "sunbathes", "output": "â Žâ ¥â â ƒâ â ®â Ž" }, { "input": "sunbathing", "output": "â Žâ ¥â â ƒâ â ¹â Œ" }, { "input": "sunbathing's", "output": "â Žâ ¥â â ƒâ â ¹â Œâ „â Ž" }, { "input": "sunbaths", "output": "â Žâ ¥â â ƒâ â ¹â Ž" }, { "input": "sunbeam", "output": "â Žâ ¥â â ƒâ ‚â " }, { "input": "sunbeam's", "output": "â Žâ ¥â â ƒâ ‚â â „â Ž" }, { "input": "sunbeams", "output": "â Žâ ¥â â ƒâ ‚â â Ž" }, { "input": "sunblock", "output": "â Žâ ¥â â ƒâ ‡â •⠉⠅" }, { "input": "sunblock's", "output": "â Žâ ¥â â ƒâ ‡â •⠉⠅⠄⠎" }, { "input": "sunblocks", "output": "â Žâ ¥â â ƒâ ‡â •⠉⠅⠎" }, { "input": "sunbonnet", "output": "â Žâ ¥â â ƒâ •â â â ‘â ž" }, { "input": "sunbonnet's", "output": "â Žâ ¥â â ƒâ •â â â ‘â žâ „â Ž" }, { "input": "sunbonnets", "output": "â Žâ ¥â â ƒâ •â â â ‘â žâ Ž" }, { "input": "sunburn", "output": "â Žâ ¥â â ƒâ ¥â —â " }, { "input": "sunburn's", "output": "â Žâ ¥â â ƒâ ¥â —â â „â Ž" }, { "input": "sunburned", "output": "â Žâ ¥â â ƒâ ¥â —â â «" }, { "input": "sunburning", "output": "â Žâ ¥â â ƒâ ¥â —â â Œ" }, { "input": "sunburns", "output": "â Žâ ¥â â ƒâ ¥â —â â Ž" }, { "input": "sunburst", "output": "â Žâ ¥â â ƒâ ¥â —â Œ" }, { "input": "sunburst's", "output": "â Žâ ¥â â ƒâ ¥â —⠌⠄⠎" }, { "input": "sunbursts", "output": "â Žâ ¥â â ƒâ ¥â —⠌⠎" }, { "input": "sundae", "output": "â Žâ ¥â â ™â â ‘" }, { "input": "sundae's", "output": "â Žâ ¥â â ™â â ‘â „â Ž" }, { "input": "sundaes", "output": "â Žâ ¥â â ™â â ‘â Ž" }, { "input": "sunder", "output": "â Žâ â ¥" }, { "input": "sundered", "output": "â Žâ â ¥â «" }, { "input": "sundering", "output": "â Žâ â ¥â Œ" }, { "input": "sunders", "output": "â Žâ â ¥â Ž" }, { "input": "sundial", "output": "â Žâ ¥â â ™â Šâ â ‡" }, { "input": "sundial's", "output": "â Žâ ¥â â ™â Šâ â ‡â „â Ž" }, { "input": "sundials", "output": "â Žâ ¥â â ™â Šâ â ‡â Ž" }, { "input": "sundown", "output": "â Žâ ¥â â ™â ªâ " }, { "input": "sundown's", "output": "â Žâ ¥â â ™â ªâ â „â Ž" }, { "input": "sundowns", "output": "â Žâ ¥â â ™â ªâ â Ž" }, { "input": "sundries", "output": "â Žâ ¥â â ™â —â Šâ ‘â Ž" }, { "input": "sundries's", "output": "â Žâ ¥â â ™â —â Šâ ‘â Žâ „â Ž" }, { "input": "sundry", "output": "â Žâ ¥â â ™â —â ½" }, { "input": "sunfish", "output": "â Žâ ¥â â ‹â Šâ ©" }, { "input": "sunfish's", "output": "â Žâ ¥â â ‹â Šâ ©â „â Ž" }, { "input": "sunfishes", "output": "â Žâ ¥â â ‹â Šâ ©â ‘â Ž" }, { "input": "sunflower", "output": "â Žâ ¥â â ‹â ‡â ªâ »" }, { "input": "sunflower's", "output": "â Žâ ¥â â ‹â ‡â ªâ »â „â Ž" }, { "input": "sunflowers", "output": "â Žâ ¥â â ‹â ‡â ªâ »â Ž" }, { "input": "sung", "output": "â Žâ ¥â â ›" }, { "input": "sunglasses", "output": "â Žâ ¥â â ›â ‡â â Žâ Žâ ‘â Ž" }, { "input": "sunglasses's", "output": "â Žâ ¥â â ›â ‡â â Žâ Žâ ‘â Žâ „â Ž" }, { "input": "sunk", "output": "â Žâ ¥â â …" }, { "input": "sunken", "output": "â Žâ ¥â â …â ¢" }, { "input": "sunlamp", "output": "â Žâ ¥â â ‡â â â " }, { "input": "sunlamp's", "output": "â Žâ ¥â â ‡â â â â „â Ž" }, { "input": "sunlamps", "output": "â Žâ ¥â â ‡â â â â Ž" }, { "input": "sunless", "output": "â Žâ ¥â â ¨â Ž" }, { "input": "sunlight", "output": "â Žâ ¥â â ‡â Šâ £â ž" }, { "input": "sunlight's", "output": "â Žâ ¥â â ‡â Šâ £â žâ „â Ž" }, { "input": "sunlit", "output": "â Žâ ¥â â ‡â Šâ ž" }, { "input": "sunned", "output": "â Žâ ¥â â â «" }, { "input": "sunnier", "output": "â Žâ ¥â â â Šâ »" }, { "input": "sunniest", "output": "â Žâ ¥â â â Šâ ‘â Œ" }, { "input": "sunniness", "output": "â Žâ ¥â â â Šâ °â Ž" }, { "input": "sunniness's", "output": "â Žâ ¥â â â Šâ °â Žâ „â Ž" }, { "input": "sunning", "output": "â Žâ ¥â â â Œ" }, { "input": "sunny", "output": "â Žâ ¥â â â ½" }, { "input": "sunrise", "output": "â Žâ ¥â â —â Šâ Žâ ‘" }, { "input": "sunrise's", "output": "â Žâ ¥â â —â Šâ Žâ ‘â „â Ž" }, { "input": "sunrises", "output": "â Žâ ¥â â —â Šâ Žâ ‘â Ž" }, { "input": "sunroof", "output": "â Žâ ¥â â —â •â ·" }, { "input": "sunroof's", "output": "â Žâ ¥â â —â •â ·â „â Ž" }, { "input": "sunroofs", "output": "â Žâ ¥â â —â •â ·â Ž" }, { "input": "suns", "output": "â Žâ ¥â â Ž" }, { "input": "sunscreen", "output": "â Žâ ¥â â Žâ ‰â —â ‘â ¢" }, { "input": "sunscreen's", "output": "â Žâ ¥â â Žâ ‰â —⠑⠢⠄⠎" }, { "input": "sunscreens", "output": "â Žâ ¥â â Žâ ‰â —⠑⠢⠎" }, { "input": "sunset", "output": "â Žâ ¥â â Žâ ‘â ž" }, { "input": "sunset's", "output": "â Žâ ¥â â Žâ ‘â žâ „â Ž" }, { "input": "sunsets", "output": "â Žâ ¥â â Žâ ‘â žâ Ž" }, { "input": "sunshine", "output": "â Žâ ¥â â ©â ”â ‘" }, { "input": "sunshine's", "output": "â Žâ ¥â â ©â ”â ‘â „â Ž" }, { "input": "sunshiny", "output": "â Žâ ¥â â ©â ”â ½" }, { "input": "sunspot", "output": "â Žâ ¥â â Žâ â •â ž" }, { "input": "sunspot's", "output": "â Žâ ¥â â Žâ â •â žâ „â Ž" }, { "input": "sunspots", "output": "â Žâ ¥â â Žâ â •â žâ Ž" }, { "input": "sunstroke", "output": "â Žâ ¥â â Œâ —â •â …â ‘" }, { "input": "sunstroke's", "output": "â Žâ ¥â â Œâ —â •â …â ‘â „â Ž" }, { "input": "suntan", "output": "â Žâ ¥â â žâ â " }, { "input": "suntan's", "output": "â Žâ ¥â â žâ â â „â Ž" }, { "input": "suntanned", "output": "â Žâ ¥â â žâ â â â «" }, { "input": "suntanning", "output": "â Žâ ¥â â žâ â â â Œ" }, { "input": "suntans", "output": "â Žâ ¥â â žâ â â Ž" }, { "input": "sunup", "output": "â Žâ ¥â â ¥â " }, { "input": "sunup's", "output": "â Žâ ¥â â ¥â â „â Ž" }, { "input": "sup", "output": "â Žâ ¥â " }, { "input": "sup's", "output": "â Žâ ¥â â „â Ž" }, { "input": "super", "output": "â Žâ ¥â â »" }, { "input": "super's", "output": "â Žâ ¥â â »â „â Ž" }, { "input": "superabundance", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â ¨â ‘" }, { "input": "superabundance's", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â ¨â ‘â „â Ž" }, { "input": "superabundances", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â ¨â ‘â Ž" }, { "input": "superabundant", "output": "â Žâ ¥â â »â â ƒâ ¥â â ™â â â ž" }, { "input": "superannuate", "output": "â Žâ ¥â â »â â â â ¥â â žâ ‘" }, { "input": "superannuated", "output": "â Žâ ¥â â »â â â â ¥â â žâ «" }, { "input": "superannuates", "output": "â Žâ ¥â â »â â â â ¥â â žâ ‘â Ž" }, { "input": "superannuating", "output": "â Žâ ¥â â »â â â â ¥â â žâ Œ" }, { "input": "superannuation's", "output": "â Žâ ¥â â »â â â â ¥â  â â „â Ž" }, { "input": "superb", "output": "â Žâ ¥â â »â ƒ" }, { "input": "superber", "output": "â Žâ ¥â â »â ƒâ »" }, { "input": "superbest", "output": "â Žâ ¥â â »â ƒâ ‘â Œ" }, { "input": "superbly", "output": "â Žâ ¥â â »â ƒâ ‡â ½" }, { "input": "supercargo", "output": "â Žâ ¥â â »â ‰â œâ ›â •" }, { "input": "supercargo's", "output": "â Žâ ¥â â »â ‰â œâ ›â •â „â Ž" }, { "input": "supercargoes", "output": "â Žâ ¥â â »â ‰â œâ ›â •â ‘â Ž" }, { "input": "supercharge", "output": "â Žâ ¥â â »â ¡â œâ ›â ‘" }, { "input": "supercharged", "output": "â Žâ ¥â â »â ¡â œâ ›â «" }, { "input": "supercharger", "output": "â Žâ ¥â â »â ¡â œâ ›â »" }, { "input": "supercharger's", "output": "â Žâ ¥â â »â ¡â œâ ›â »â „â Ž" }, { "input": "superchargers", "output": "â Žâ ¥â â »â ¡â œâ ›â »â Ž" }, { "input": "supercharges", "output": "â Žâ ¥â â »â ¡â œâ ›â ‘â Ž" }, { "input": "supercharging", "output": "â Žâ ¥â â »â ¡â œâ ›â Œ" }, { "input": "supercilious", "output": "â Žâ ¥â â »â ‰â Šâ ‡â Šâ ³â Ž" }, { "input": "superciliousness's", "output": "â Žâ ¥â â »â ‰â Šâ ‡â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "supercities", "output": "â Žâ ¥â â »â ‰â Šâ žâ Šâ ‘â Ž" }, { "input": "supercity", "output": "â Žâ ¥â â »â ‰â °â ½" }, { "input": "supercity's", "output": "â Žâ ¥â â »â ‰â °â ½â „â Ž" }, { "input": "supercomputer", "output": "â Žâ ¥â â »â ‰â •â â â ¥â žâ »" }, { "input": "supercomputer's", "output": "â Žâ ¥â â »â ‰â •â â â ¥â žâ »â „â Ž" }, { "input": "supercomputers", "output": "â Žâ ¥â â »â ‰â •â â â ¥â žâ »â Ž" }, { "input": "superconducting", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ Œ" }, { "input": "superconductive", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ Šâ §â ‘" }, { "input": "superconductivity", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ Šâ §â °â ½" }, { "input": "superconductivity's", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ Šâ §â °â ½â „â Ž" }, { "input": "superconductor", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ •â —" }, { "input": "superconductor's", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ •â —â „â Ž" }, { "input": "superconductors", "output": "â Žâ ¥â â »â ‰â •â â ™â ¥â ‰â žâ •â —â Ž" }, { "input": "superego", "output": "â Žâ ¥â â »â ‘⠛⠕" }, { "input": "superego's", "output": "â Žâ ¥â â »â ‘⠛⠕⠄⠎" }, { "input": "superegos", "output": "â Žâ ¥â â »â ‘⠛⠕⠎" }, { "input": "supererogation", "output": "â Žâ ¥â â »â »â •⠛⠠â " }, { "input": "supererogation's", "output": "â Žâ ¥â â »â »â •⠛⠠â â „â Ž" }, { "input": "supererogatory", "output": "â Žâ ¥â â »â »â •â ›â â žâ •â —â ½" }, { "input": "superficial", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ â ‡" }, { "input": "superficiality", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ â ‡â °â ½" }, { "input": "superficiality's", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ â ‡â °â ½â „â Ž" }, { "input": "superficially", "output": "â Žâ ¥â â »â ‹â Šâ ‰â Šâ  â ½" }, { "input": "superfine", "output": "â Žâ ¥â â »â ‹â ”â ‘" }, { "input": "superfluity", "output": "â Žâ ¥â â »â ‹â ‡â ¥â °â ½" }, { "input": "superfluity's", "output": "â Žâ ¥â â »â ‹â ‡â ¥â °â ½â „â Ž" }, { "input": "superfluous", "output": "â Žâ ¥â â »â ‹â ‡â ¥â ³â Ž" }, { "input": "superfluousness's", "output": "â Žâ ¥â â »â ‹â ‡â ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "superheros", "output": "â Žâ ¥â â »â “⠻⠕⠎" }, { "input": "superhighway", "output": "â Žâ ¥â â »â “⠊⠣⠺â â ½" }, { "input": "superhighway's", "output": "â Žâ ¥â â »â “⠊⠣⠺â â ½â „â Ž" }, { "input": "superhighways", "output": "â Žâ ¥â â »â “⠊⠣⠺â â ½â Ž" }, { "input": "superhuman", "output": "â Žâ ¥â â »â “â ¥â â â " }, { "input": "superimpose", "output": "â Žâ ¥â â »â Šâ â â •â Žâ ‘" }, { "input": "superimposed", "output": "â Žâ ¥â â »â Šâ â â •â Žâ «" }, { "input": "superimposes", "output": "â Žâ ¥â â »â Šâ â â •â Žâ ‘â Ž" }, { "input": "superimposing", "output": "â Žâ ¥â â »â Šâ â â •â Žâ Œ" }, { "input": "superimposition", "output": "â Žâ ¥â â »â Šâ â â •â Žâ Šâ °â " }, { "input": "superimposition's", "output": "â Žâ ¥â â »â Šâ â â •â Žâ Šâ °â â „â Ž" }, { "input": "superintend", "output": "â Žâ ¥â â »â ”⠞⠢⠙" }, { "input": "superintended", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠫" }, { "input": "superintendence", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠰⠑" }, { "input": "superintendence's", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠰⠑⠄⠎" }, { "input": "superintendency", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠉⠽" }, { "input": "superintendency's", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠉⠽⠄⠎" }, { "input": "superintendent", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠞" }, { "input": "superintendent's", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠞⠄⠎" }, { "input": "superintendents", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠢⠞⠎" }, { "input": "superintending", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠌" }, { "input": "superintends", "output": "â Žâ ¥â â »â ”⠞⠢⠙⠎" }, { "input": "superior", "output": "â Žâ ¥â â »â Šâ •â —" }, { "input": "superior's", "output": "â Žâ ¥â â »â Šâ •â —â „â Ž" }, { "input": "superiority", "output": "â Žâ ¥â â »â Šâ •â —â °â ½" }, { "input": "superiority's", "output": "â Žâ ¥â â »â Šâ •⠗⠰⠽⠄⠎" }, { "input": "superiors", "output": "â Žâ ¥â â »â Šâ •â —â Ž" }, { "input": "superlative", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘" }, { "input": "superlative's", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘â „â Ž" }, { "input": "superlatively", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘⠇⠽" }, { "input": "superlatives", "output": "â Žâ ¥â â »â ‡â â žâ Šâ §â ‘â Ž" }, { "input": "superman", "output": "â Žâ ¥â â »â â â " }, { "input": "superman's", "output": "â Žâ ¥â â »â â â â „â Ž" }, { "input": "supermarket", "output": "â Žâ ¥â â »â â œâ …â ‘â ž" }, { "input": "supermarket's", "output": "â Žâ ¥â â »â â œâ …â ‘â žâ „â Ž" }, { "input": "supermarkets", "output": "â Žâ ¥â â »â â œâ …â ‘â žâ Ž" }, { "input": "supermen", "output": "â Žâ ¥â â »â â ¢" }, { "input": "supermom", "output": "â Žâ ¥â â »â â •â " }, { "input": "supermom's", "output": "â Žâ ¥â â »â â •â â „â Ž" }, { "input": "supermoms", "output": "â Žâ ¥â â »â â •â â Ž" }, { "input": "supernal", "output": "â Žâ ¥â â »â â â ‡" }, { "input": "supernatural", "output": "â Žâ ¥â â »â â â žâ ¥â —â â ‡" }, { "input": "supernaturals", "output": "â Žâ ¥â â »â â â žâ ¥â —â â ‡â Ž" }, { "input": "supernova", "output": "â Žâ ¥â â »â â •â §â " }, { "input": "supernova's", "output": "â Žâ ¥â â »â â •â §â â „â Ž" }, { "input": "supernovae", "output": "â Žâ ¥â â »â â •â §â â ‘" }, { "input": "supernovas", "output": "â Žâ ¥â â »â â •â §â â Ž" }, { "input": "supernumeraries", "output": "â Žâ ¥â â »â â ¥â â »â œâ Šâ ‘â Ž" }, { "input": "supernumerary", "output": "â Žâ ¥â â »â â ¥â â »â œâ ½" }, { "input": "supernumerary's", "output": "â Žâ ¥â â »â â ¥â â »â œâ ½â „â Ž" }, { "input": "superpose", "output": "â Žâ ¥â â »â â •â Žâ ‘" }, { "input": "superposed", "output": "â Žâ ¥â â »â â •â Žâ «" }, { "input": "superposes", "output": "â Žâ ¥â â »â â •â Žâ ‘â Ž" }, { "input": "superposing", "output": "â Žâ ¥â â »â â •â Žâ Œ" }, { "input": "superposition", "output": "â Žâ ¥â â »â â •â Žâ Šâ °â " }, { "input": "superposition's", "output": "â Žâ ¥â â »â â •â Žâ Šâ °â â „â Ž" }, { "input": "superpower", "output": "â Žâ ¥â â »â â ªâ »" }, { "input": "superpower's", "output": "â Žâ ¥â â »â â ªâ »â „â Ž" }, { "input": "superpowers", "output": "â Žâ ¥â â »â â ªâ »â Ž" }, { "input": "supers", "output": "â Žâ ¥â â »â Ž" }, { "input": "supersaturate", "output": "â Žâ ¥â â »â Žâ â žâ ¥â —â â žâ ‘" }, { "input": "supersaturated", "output": "â Žâ ¥â â »â Žâ â žâ ¥â —â â žâ «" }, { "input": "supersaturates", "output": "â Žâ ¥â â »â Žâ â žâ ¥â —â â žâ ‘â Ž" }, { "input": "supersaturating", "output": "â Žâ ¥â â »â Žâ â žâ ¥â —â â žâ Œ" }, { "input": "supersaturation", "output": "â Žâ ¥â â »â Žâ â žâ ¥â —â  â " }, { "input": "supersaturation's", "output": "â Žâ ¥â â »â Žâ â žâ ¥â —â  â â „â Ž" }, { "input": "superscribe", "output": "â Žâ ¥â â »â Žâ ‰â —⠊⠃⠑" }, { "input": "superscribed", "output": "â Žâ ¥â â »â Žâ ‰â —⠊⠃⠫" }, { "input": "superscribes", "output": "â Žâ ¥â â »â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "superscribing", "output": "â Žâ ¥â â »â Žâ ‰â —⠊⠃⠌" }, { "input": "superscript", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â ž" }, { "input": "superscript's", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â žâ „â Ž" }, { "input": "superscription", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â °â " }, { "input": "superscription's", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â °â â „â Ž" }, { "input": "superscripts", "output": "â Žâ ¥â â »â Žâ ‰â —â Šâ â žâ Ž" }, { "input": "supersede", "output": "â Žâ ¥â â »â Žâ «â ‘" }, { "input": "superseded", "output": "â Žâ ¥â â »â Žâ «â «" }, { "input": "supersedes", "output": "â Žâ ¥â â »â Žâ «â ‘â Ž" }, { "input": "superseding", "output": "â Žâ ¥â â »â Žâ «â Œ" }, { "input": "supersonic", "output": "â Žâ ¥â â »â Žâ •â â Šâ ‰" }, { "input": "superstar", "output": "â Žâ ¥â â »â Œâ œ" }, { "input": "superstar's", "output": "â Žâ ¥â â »â Œâ œâ „â Ž" }, { "input": "superstars", "output": "â Žâ ¥â â »â Œâ œâ Ž" }, { "input": "superstition", "output": "â Žâ ¥â â »â Œâ Šâ °â " }, { "input": "superstition's", "output": "â Žâ ¥â â »â Œâ Šâ °â â „â Ž" }, { "input": "superstitions", "output": "â Žâ ¥â â »â Œâ Šâ °â â Ž" }, { "input": "superstitious", "output": "â Žâ ¥â â »â Œâ Šâ žâ Šâ ³â Ž" }, { "input": "superstitiously", "output": "â Žâ ¥â â »â Œâ Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "superstructure", "output": "â Žâ ¥â â »â Œâ —⠥⠉⠞⠥⠗⠑" }, { "input": "superstructure's", "output": "â Žâ ¥â â »â Œâ —⠥⠉⠞⠥⠗⠑⠄⠎" }, { "input": "superstructures", "output": "â Žâ ¥â â »â Œâ —⠥⠉⠞⠥⠗⠑⠎" }, { "input": "supertanker", "output": "â Žâ ¥â â »â žâ â â …â »" }, { "input": "supertanker's", "output": "â Žâ ¥â â »â žâ â â …⠻⠄⠎" }, { "input": "supertankers", "output": "â Žâ ¥â â »â žâ â â …⠻⠎" }, { "input": "supervene", "output": "â Žâ ¥â â »â §â ¢â ‘" }, { "input": "supervened", "output": "â Žâ ¥â â »â §â ¢â «" }, { "input": "supervenes", "output": "â Žâ ¥â â »â §â ¢â ‘â Ž" }, { "input": "supervening", "output": "â Žâ ¥â â »â §â ¢â Œ" }, { "input": "supervention", "output": "â Žâ ¥â â »â §â ¢â °â " }, { "input": "supervention's", "output": "â Žâ ¥â â »â §â ¢â °â â „â Ž" }, { "input": "supervise", "output": "â Žâ ¥â â »â §â Šâ Žâ ‘" }, { "input": "supervised", "output": "â Žâ ¥â â »â §â Šâ Žâ «" }, { "input": "supervises", "output": "â Žâ ¥â â »â §â Šâ Žâ ‘â Ž" }, { "input": "supervising", "output": "â Žâ ¥â â »â §â Šâ Žâ Œ" }, { "input": "supervision", "output": "â Žâ ¥â â »â §â Šâ ¨â " }, { "input": "supervision's", "output": "â Žâ ¥â â »â §â Šâ ¨â â „â Ž" }, { "input": "supervisions", "output": "â Žâ ¥â â »â §â Šâ ¨â â Ž" }, { "input": "supervisor", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —" }, { "input": "supervisor's", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —â „â Ž" }, { "input": "supervisors", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —â Ž" }, { "input": "supervisory", "output": "â Žâ ¥â â »â §â Šâ Žâ •â —â ½" }, { "input": "supine", "output": "â Žâ ¥â â ”â ‘" }, { "input": "supped", "output": "â Žâ ¥â â â «" }, { "input": "supper", "output": "â Žâ ¥â â â »" }, { "input": "supper's", "output": "â Žâ ¥â â â »â „â Ž" }, { "input": "suppers", "output": "â Žâ ¥â â â »â Ž" }, { "input": "supping", "output": "â Žâ ¥â â â Œ" }, { "input": "supplant", "output": "â Žâ ¥â â â ‡â â â ž" }, { "input": "supplanted", "output": "â Žâ ¥â â â ‡â â â žâ «" }, { "input": "supplanting", "output": "â Žâ ¥â â â ‡â â â žâ Œ" }, { "input": "supplants", "output": "â Žâ ¥â â â ‡â â â žâ Ž" }, { "input": "supple", "output": "â Žâ ¥â â â ‡â ‘" }, { "input": "supplement", "output": "â Žâ ¥â â â ‡â ‘â °â ž" }, { "input": "supplement's", "output": "â Žâ ¥â â â ‡â ‘â °â žâ „â Ž" }, { "input": "supplemental", "output": "â Žâ ¥â â â ‡â ‘â °â žâ â ‡" }, { "input": "supplementary", "output": "â Žâ ¥â â â ‡â ‘⠰⠞⠜⠽" }, { "input": "supplementation's", "output": "â Žâ ¥â â â ‡â ‘â °â žâ  â â „â Ž" }, { "input": "supplemented", "output": "â Žâ ¥â â â ‡â ‘â °â žâ «" }, { "input": "supplementing", "output": "â Žâ ¥â â â ‡â ‘â °â žâ Œ" }, { "input": "supplements", "output": "â Žâ ¥â â â ‡â ‘â °â žâ Ž" }, { "input": "suppleness", "output": "â Žâ ¥â â â ‡â ‘â °â Ž" }, { "input": "suppleness's", "output": "â Žâ ¥â â â ‡â ‘â °â Žâ „â Ž" }, { "input": "suppler", "output": "â Žâ ¥â â â ‡â »" }, { "input": "supplest", "output": "â Žâ ¥â â â ‡â ‘â Œ" }, { "input": "suppliant", "output": "â Žâ ¥â â â ‡â Šâ â â ž" }, { "input": "suppliant's", "output": "â Žâ ¥â â â ‡â Šâ â â žâ „â Ž" }, { "input": "suppliants", "output": "â Žâ ¥â â â ‡â Šâ â â žâ Ž" }, { "input": "supplicant", "output": "â Žâ ¥â â â ‡â Šâ ‰â â â ž" }, { "input": "supplicant's", "output": "â Žâ ¥â â â ‡â Šâ ‰â â â žâ „â Ž" }, { "input": "supplicants", "output": "â Žâ ¥â â â ‡â Šâ ‰â â â žâ Ž" }, { "input": "supplicate", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ ‘" }, { "input": "supplicated", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ «" }, { "input": "supplicates", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "supplicating", "output": "â Žâ ¥â â â ‡â Šâ ‰â â žâ Œ" }, { "input": "supplication", "output": "â Žâ ¥â â â ‡â Šâ ‰â  â " }, { "input": "supplication's", "output": "â Žâ ¥â â â ‡â Šâ ‰â  â â „â Ž" }, { "input": "supplications", "output": "â Žâ ¥â â â ‡â Šâ ‰â  â â Ž" }, { "input": "supplied", "output": "â Žâ ¥â â â ‡â Šâ «" }, { "input": "supplier", "output": "â Žâ ¥â â â ‡â Šâ »" }, { "input": "supplier's", "output": "â Žâ ¥â â â ‡â Šâ »â „â Ž" }, { "input": "suppliers", "output": "â Žâ ¥â â â ‡â Šâ »â Ž" }, { "input": "supplies", "output": "â Žâ ¥â â â ‡â Šâ ‘â Ž" }, { "input": "supply", "output": "â Žâ ¥â â â ‡â ½" }, { "input": "supply's", "output": "â Žâ ¥â â â ‡â ½â „â Ž" }, { "input": "supplying", "output": "â Žâ ¥â â â ‡â ½â Œ" }, { "input": "support", "output": "â Žâ ¥â â â •â —â ž" }, { "input": "support's", "output": "â Žâ ¥â â â •â —â žâ „â Ž" }, { "input": "supportable", "output": "â Žâ ¥â â â •â —â žâ â ¼" }, { "input": "supported", "output": "â Žâ ¥â â â •â —â žâ «" }, { "input": "supporter", "output": "â Žâ ¥â â â •â —â žâ »" }, { "input": "supporter's", "output": "â Žâ ¥â â â •⠗⠞⠻⠄⠎" }, { "input": "supporters", "output": "â Žâ ¥â â â •⠗⠞⠻⠎" }, { "input": "supporting", "output": "â Žâ ¥â â â •â —â žâ Œ" }, { "input": "supportive", "output": "â Žâ ¥â â â •â —â žâ Šâ §â ‘" }, { "input": "supports", "output": "â Žâ ¥â â â •â —â žâ Ž" }, { "input": "suppose", "output": "â Žâ ¥â â â •â Žâ ‘" }, { "input": "supposed", "output": "â Žâ ¥â â â •â Žâ «" }, { "input": "supposedly", "output": "â Žâ ¥â â â •⠎⠫⠇⠽" }, { "input": "supposes", "output": "â Žâ ¥â â â •â Žâ ‘â Ž" }, { "input": "supposing", "output": "â Žâ ¥â â â •â Žâ Œ" }, { "input": "supposition", "output": "â Žâ ¥â â â •â Žâ Šâ °â " }, { "input": "supposition's", "output": "â Žâ ¥â â â •â Žâ Šâ °â â „â Ž" }, { "input": "suppositions", "output": "â Žâ ¥â â â •â Žâ Šâ °â â Ž" }, { "input": "suppositories", "output": "â Žâ ¥â â â •â Žâ Šâ žâ •â —â Šâ ‘â Ž" }, { "input": "suppository", "output": "â Žâ ¥â â â •â Žâ Šâ žâ •â —â ½" }, { "input": "suppository's", "output": "â Žâ ¥â â â •⠎⠊⠞⠕⠗⠽⠄⠎" }, { "input": "suppress", "output": "â Žâ ¥â â â —â ‘â Žâ Ž" }, { "input": "suppressed", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ «" }, { "input": "suppresses", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "suppressible", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ Šâ ¼" }, { "input": "suppressing", "output": "â Žâ ¥â â â —â ‘â Žâ Žâ Œ" }, { "input": "suppression", "output": "â Žâ ¥â â â —â ‘â Žâ ¨â " }, { "input": "suppression's", "output": "â Žâ ¥â â â —â ‘â Žâ ¨â â „â Ž" }, { "input": "suppurate", "output": "â Žâ ¥â â â ¥â —â â žâ ‘" }, { "input": "suppurated", "output": "â Žâ ¥â â â ¥â —â â žâ «" }, { "input": "suppurates", "output": "â Žâ ¥â â â ¥â —â â žâ ‘â Ž" }, { "input": "suppurating", "output": "â Žâ ¥â â â ¥â —â â žâ Œ" }, { "input": "suppuration", "output": "â Žâ ¥â â â ¥â —â  â " }, { "input": "suppuration's", "output": "â Žâ ¥â â â ¥â —â  â â „â Ž" }, { "input": "supra", "output": "â Žâ ¥â â —â " }, { "input": "supranational", "output": "â Žâ ¥â â —â â â  â â â ‡" }, { "input": "supremacist", "output": "â Žâ ¥â â —â ‘â â â ‰â Šâ Œ" }, { "input": "supremacist's", "output": "â Žâ ¥â â —â ‘â â â ‰â Šâ Œâ „â Ž" }, { "input": "supremacists", "output": "â Žâ ¥â â —â ‘â â â ‰â Šâ Œâ Ž" }, { "input": "supremacy", "output": "â Žâ ¥â â —â ‘â â â ‰â ½" }, { "input": "supremacy's", "output": "â Žâ ¥â â —â ‘â â â ‰â ½â „â Ž" }, { "input": "supreme", "output": "â Žâ ¥â â —â ‘â â ‘" }, { "input": "supremely", "output": "â Žâ ¥â â —â ‘â â ‘⠇⠽" }, { "input": "sups", "output": "â Žâ ¥â â Ž" }, { "input": "surcease", "output": "⠎⠥⠗⠉⠂⠎⠑" }, { "input": "surcease's", "output": "⠎⠥⠗⠉⠂⠎⠑⠄⠎" }, { "input": "surceased", "output": "⠎⠥⠗⠉⠂⠎⠫" }, { "input": "surceases", "output": "⠎⠥⠗⠉⠂⠎⠑⠎" }, { "input": "surceasing", "output": "⠎⠥⠗⠉⠂⠎⠌" }, { "input": "surcharge", "output": "⠎⠥⠗⠡⠜⠛⠑" }, { "input": "surcharge's", "output": "⠎⠥⠗⠡⠜⠛⠑⠄⠎" }, { "input": "surcharged", "output": "⠎⠥⠗⠡⠜⠛⠫" }, { "input": "surcharges", "output": "⠎⠥⠗⠡⠜⠛⠑⠎" }, { "input": "surcharging", "output": "⠎⠥⠗⠡⠜⠛⠌" }, { "input": "surcingle", "output": "⠎⠥⠗⠉⠌⠇⠑" }, { "input": "surcingle's", "output": "⠎⠥⠗⠉⠌⠇⠑⠄⠎" }, { "input": "surcingles", "output": "⠎⠥⠗⠉⠌⠇⠑⠎" }, { "input": "sure", "output": "⠎⠥⠗⠑" }, { "input": "surefire", "output": "⠎⠥⠗⠑⠋⠊⠗⠑" }, { "input": "surefooted", "output": "⠎⠥⠗⠑⠋⠕⠕⠞⠫" }, { "input": "surely", "output": "⠎⠥⠗⠑⠇⠽" }, { "input": "sureness", "output": "⠎⠥⠗⠑⠰⠎" }, { "input": "sureness's", "output": "⠎⠥⠗⠑⠰⠎⠄⠎" }, { "input": "surer", "output": "⠎⠥⠗⠻" }, { "input": "surest", "output": "⠎⠥⠗⠑⠌" }, { "input": "sureties", "output": "⠎⠥⠗⠑⠞⠊⠑⠎" }, { "input": "surety", "output": "⠎⠥⠗⠑⠞⠽" }, { "input": "surety's", "output": "⠎⠥⠗⠑⠞⠽⠄⠎" }, { "input": "surf", "output": "⠎⠥⠗⠋" }, { "input": "surf's", "output": "⠎⠥⠗⠋⠄⠎" }, { "input": "surface", "output": "⠎⠥⠗⠋â â ‰â ‘" }, { "input": "surface's", "output": "⠎⠥⠗⠋â â ‰â ‘â „â Ž" }, { "input": "surfaced", "output": "⠎⠥⠗⠋â â ‰â «" }, { "input": "surfaces", "output": "⠎⠥⠗⠋â â ‰â ‘â Ž" }, { "input": "surfacing", "output": "⠎⠥⠗⠋â â ‰â Œ" }, { "input": "surfboard", "output": "⠎⠥⠗⠋⠃⠕⠜⠙" }, { "input": "surfboard's", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠄⠎" }, { "input": "surfboarded", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠫" }, { "input": "surfboarding", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠌" }, { "input": "surfboards", "output": "⠎⠥⠗⠋⠃⠕⠜⠙⠎" }, { "input": "surfed", "output": "⠎⠥⠗⠋⠫" }, { "input": "surfeit", "output": "⠎⠥⠗⠋⠑⠊⠞" }, { "input": "surfeit's", "output": "⠎⠥⠗⠋⠑⠊⠞⠄⠎" }, { "input": "surfeited", "output": "⠎⠥⠗⠋⠑⠊⠞⠫" }, { "input": "surfeiting", "output": "⠎⠥⠗⠋⠑⠊⠞⠌" }, { "input": "surfeits", "output": "⠎⠥⠗⠋⠑⠊⠞⠎" }, { "input": "surfer", "output": "⠎⠥⠗⠋⠻" }, { "input": "surfer's", "output": "⠎⠥⠗⠋⠻⠄⠎" }, { "input": "surfers", "output": "⠎⠥⠗⠋⠻⠎" }, { "input": "surfing", "output": "⠎⠥⠗⠋⠌" }, { "input": "surfing's", "output": "⠎⠥⠗⠋⠌⠄⠎" }, { "input": "surfs", "output": "⠎⠥⠗⠋⠎" }, { "input": "surge", "output": "⠎⠥⠗⠛⠑" }, { "input": "surge's", "output": "⠎⠥⠗⠛⠑⠄⠎" }, { "input": "surged", "output": "⠎⠥⠗⠛⠫" }, { "input": "surgeon", "output": "⠎⠥⠗⠛⠑⠕â " }, { "input": "surgeon's", "output": "⠎⠥⠗⠛⠑⠕â â „â Ž" }, { "input": "surgeons", "output": "⠎⠥⠗⠛⠑⠕â â Ž" }, { "input": "surgeries", "output": "⠎⠥⠗⠛⠻⠊⠑⠎" }, { "input": "surgery", "output": "⠎⠥⠗⠛⠻⠽" }, { "input": "surgery's", "output": "⠎⠥⠗⠛⠻⠽⠄⠎" }, { "input": "surges", "output": "⠎⠥⠗⠛⠑⠎" }, { "input": "surgical", "output": "⠎⠥⠗⠛⠊⠉â â ‡" }, { "input": "surgically", "output": "⠎⠥⠗⠛⠊⠉⠠⠽" }, { "input": "surging", "output": "⠎⠥⠗⠛⠌" }, { "input": "surlier", "output": "⠎⠥⠗⠇⠊⠻" }, { "input": "surliest", "output": "⠎⠥⠗⠇⠊⠑⠌" }, { "input": "surliness", "output": "⠎⠥⠗⠇⠊⠰⠎" }, { "input": "surliness's", "output": "⠎⠥⠗⠇⠊⠰⠎⠄⠎" }, { "input": "surly", "output": "⠎⠥⠗⠇⠽" }, { "input": "surmise", "output": "⠎⠥⠗â â Šâ Žâ ‘" }, { "input": "surmise's", "output": "⠎⠥⠗â â Šâ Žâ ‘â „â Ž" }, { "input": "surmised", "output": "⠎⠥⠗â â Šâ Žâ «" }, { "input": "surmises", "output": "⠎⠥⠗â â Šâ Žâ ‘â Ž" }, { "input": "surmising", "output": "⠎⠥⠗â â Šâ Žâ Œ" }, { "input": "surmount", "output": "⠎⠥⠗â â ¨â ž" }, { "input": "surmountable", "output": "⠎⠥⠗â â ¨â žâ â ¼" }, { "input": "surmounted", "output": "⠎⠥⠗â â ¨â žâ «" }, { "input": "surmounting", "output": "⠎⠥⠗â â ¨â žâ Œ" }, { "input": "surmounts", "output": "⠎⠥⠗â â ¨â žâ Ž" }, { "input": "surname", "output": "⠎⠥⠗â â " }, { "input": "surname's", "output": "⠎⠥⠗â â â „â Ž" }, { "input": "surnames", "output": "⠎⠥⠗â â â Ž" }, { "input": "surpass", "output": "⠎⠥⠗â â â Žâ Ž" }, { "input": "surpassed", "output": "⠎⠥⠗â â â Žâ Žâ «" }, { "input": "surpasses", "output": "⠎⠥⠗â â â Žâ Žâ ‘â Ž" }, { "input": "surpassing", "output": "⠎⠥⠗â â â Žâ Žâ Œ" }, { "input": "surplice", "output": "⠎⠥⠗â â ‡â Šâ ‰â ‘" }, { "input": "surplice's", "output": "⠎⠥⠗â â ‡â Šâ ‰â ‘â „â Ž" }, { "input": "surplices", "output": "⠎⠥⠗â â ‡â Šâ ‰â ‘â Ž" }, { "input": "surplus", "output": "⠎⠥⠗â â ‡â ¥â Ž" }, { "input": "surplus's", "output": "⠎⠥⠗â â ‡â ¥â Žâ „â Ž" }, { "input": "surpluses", "output": "⠎⠥⠗â â ‡â ¥â Žâ ‘â Ž" }, { "input": "surplussed", "output": "⠎⠥⠗â â ‡â ¥â Žâ Žâ «" }, { "input": "surplussing", "output": "⠎⠥⠗â â ‡â ¥â Žâ Žâ Œ" }, { "input": "surprise", "output": "⠎⠥⠗â â —â Šâ Žâ ‘" }, { "input": "surprise's", "output": "⠎⠥⠗â â —â Šâ Žâ ‘â „â Ž" }, { "input": "surprised", "output": "⠎⠥⠗â â —â Šâ Žâ «" }, { "input": "surprises", "output": "⠎⠥⠗â â —â Šâ Žâ ‘â Ž" }, { "input": "surprising", "output": "⠎⠥⠗â â —â Šâ Žâ Œ" }, { "input": "surprisingly", "output": "⠎⠥⠗â â —⠊⠎⠌⠇⠽" }, { "input": "surprisings", "output": "⠎⠥⠗â â —⠊⠎⠌⠎" }, { "input": "surreal", "output": "⠎⠥⠗⠗⠂⠇" }, { "input": "surrealism", "output": "⠎⠥⠗⠗⠂⠇⠊⠎â " }, { "input": "surrealism's", "output": "⠎⠥⠗⠗⠂⠇⠊⠎â â „â Ž" }, { "input": "surrealist", "output": "⠎⠥⠗⠗⠂⠇⠊⠌" }, { "input": "surrealist's", "output": "⠎⠥⠗⠗⠂⠇⠊⠌⠄⠎" }, { "input": "surrealistic", "output": "⠎⠥⠗⠗⠂⠇⠊⠌⠊⠉" }, { "input": "surrealistically", "output": "⠎⠥⠗⠗⠂⠇⠊⠌⠊⠉⠠⠽" }, { "input": "surrealists", "output": "⠎⠥⠗⠗⠂⠇⠊⠌⠎" }, { "input": "surrender", "output": "⠎⠥⠗⠗⠢⠙⠻" }, { "input": "surrender's", "output": "⠎⠥⠗⠗⠢⠙⠻⠄⠎" }, { "input": "surrendered", "output": "⠎⠥⠗⠗⠢⠙⠻⠫" }, { "input": "surrendering", "output": "⠎⠥⠗⠗⠢⠙⠻⠌" }, { "input": "surrenders", "output": "⠎⠥⠗⠗⠢⠙⠻⠎" }, { "input": "surreptitious", "output": "⠎⠥⠗⠗⠑â â žâ Šâ žâ Šâ ³â Ž" }, { "input": "surreptitiously", "output": "⠎⠥⠗⠗⠑â â žâ Šâ žâ Šâ ³â Žâ ‡â ½" }, { "input": "surreptitiousness's", "output": "⠎⠥⠗⠗⠑â â žâ Šâ žâ Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "surrey", "output": "⠎⠥⠗⠗⠑⠽" }, { "input": "surrey's", "output": "⠎⠥⠗⠗⠑⠽⠄⠎" }, { "input": "surreys", "output": "⠎⠥⠗⠗⠑⠽⠎" }, { "input": "surrogacy's", "output": "⠎⠥⠗⠗⠕⠛â â ‰â ½â „â Ž" }, { "input": "surrogate", "output": "⠎⠥⠗⠗⠕⠛â â žâ ‘" }, { "input": "surrogate's", "output": "⠎⠥⠗⠗⠕⠛â â žâ ‘â „â Ž" }, { "input": "surrogates", "output": "⠎⠥⠗⠗⠕⠛â â žâ ‘â Ž" }, { "input": "surround", "output": "⠎⠥⠗⠗⠨⠙" }, { "input": "surrounded", "output": "⠎⠥⠗⠗⠨⠙⠫" }, { "input": "surrounding", "output": "⠎⠥⠗⠗⠨⠙⠌" }, { "input": "surrounding's", "output": "⠎⠥⠗⠗⠨⠙⠌⠄⠎" }, { "input": "surroundings", "output": "⠎⠥⠗⠗⠨⠙⠌⠎" }, { "input": "surroundings's", "output": "⠎⠥⠗⠗⠨⠙⠌⠎⠄⠎" }, { "input": "surrounds", "output": "⠎⠥⠗⠗⠨⠙⠎" }, { "input": "surtax", "output": "⠎⠥⠗⠞â â ­" }, { "input": "surtax's", "output": "⠎⠥⠗⠞â â ­â „â Ž" }, { "input": "surtaxed", "output": "⠎⠥⠗⠞â â ­â «" }, { "input": "surtaxes", "output": "⠎⠥⠗⠞â â ­â ‘â Ž" }, { "input": "surtaxing", "output": "⠎⠥⠗⠞â â ­â Œ" }, { "input": "surveillance", "output": "⠎⠥⠗⠧⠑⠊⠇⠇⠨⠑" }, { "input": "surveillance's", "output": "⠎⠥⠗⠧⠑⠊⠇⠇⠨⠑⠄⠎" }, { "input": "survey", "output": "⠎⠥⠗⠧⠑⠽" }, { "input": "survey's", "output": "⠎⠥⠗⠧⠑⠽⠄⠎" }, { "input": "surveyed", "output": "⠎⠥⠗⠧⠑⠽⠫" }, { "input": "surveying", "output": "⠎⠥⠗⠧⠑⠽⠌" }, { "input": "surveying's", "output": "⠎⠥⠗⠧⠑⠽⠌⠄⠎" }, { "input": "surveyor", "output": "⠎⠥⠗⠧⠑⠽⠕⠗" }, { "input": "surveyor's", "output": "⠎⠥⠗⠧⠑⠽⠕⠗⠄⠎" }, { "input": "surveyors", "output": "⠎⠥⠗⠧⠑⠽⠕⠗⠎" }, { "input": "surveys", "output": "⠎⠥⠗⠧⠑⠽⠎" }, { "input": "survival", "output": "⠎⠥⠗⠧⠊⠧â â ‡" }, { "input": "survival's", "output": "⠎⠥⠗⠧⠊⠧â â ‡â „â Ž" }, { "input": "survivalist", "output": "⠎⠥⠗⠧⠊⠧â â ‡â Šâ Œ" }, { "input": "survivalist's", "output": "⠎⠥⠗⠧⠊⠧â â ‡â Šâ Œâ „â Ž" }, { "input": "survivalists", "output": "⠎⠥⠗⠧⠊⠧â â ‡â Šâ Œâ Ž" }, { "input": "survivals", "output": "⠎⠥⠗⠧⠊⠧â â ‡â Ž" }, { "input": "survive", "output": "⠎⠥⠗⠧⠊⠧⠑" }, { "input": "survived", "output": "⠎⠥⠗⠧⠊⠧⠫" }, { "input": "survives", "output": "⠎⠥⠗⠧⠊⠧⠑⠎" }, { "input": "surviving", "output": "⠎⠥⠗⠧⠊⠧⠌" }, { "input": "survivor", "output": "⠎⠥⠗⠧⠊⠧⠕⠗" }, { "input": "survivor's", "output": "⠎⠥⠗⠧⠊⠧⠕⠗⠄⠎" }, { "input": "survivors", "output": "⠎⠥⠗⠧⠊⠧⠕⠗⠎" }, { "input": "susceptibility", "output": "⠎⠥⠎⠉⠑â â žâ Šâ ƒâ Šâ ‡â °â ½" }, { "input": "susceptibility's", "output": "⠎⠥⠎⠉⠑â â žâ Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "susceptible", "output": "⠎⠥⠎⠉⠑â â žâ Šâ ¼" }, { "input": "sushi", "output": "⠎⠥⠩⠊" }, { "input": "sushi's", "output": "⠎⠥⠩⠊⠄⠎" }, { "input": "suspect", "output": "⠎⠥⠎â â ‘⠉⠞" }, { "input": "suspect's", "output": "⠎⠥⠎â â ‘⠉⠞⠄⠎" }, { "input": "suspected", "output": "⠎⠥⠎â â ‘⠉⠞⠫" }, { "input": "suspecting", "output": "⠎⠥⠎â â ‘⠉⠞⠌" }, { "input": "suspects", "output": "⠎⠥⠎â â ‘⠉⠞⠎" }, { "input": "suspend", "output": "⠎⠥⠎â â ¢â ™" }, { "input": "suspended", "output": "⠎⠥⠎â â ¢â ™â «" }, { "input": "suspender", "output": "⠎⠥⠎â â ¢â ™â »" }, { "input": "suspender's", "output": "⠎⠥⠎â â ¢â ™â »â „â Ž" }, { "input": "suspenders", "output": "⠎⠥⠎â â ¢â ™â »â Ž" }, { "input": "suspending", "output": "⠎⠥⠎â â ¢â ™â Œ" }, { "input": "suspends", "output": "⠎⠥⠎â â ¢â ™â Ž" }, { "input": "suspense", "output": "⠎⠥⠎â â ¢â Žâ ‘" }, { "input": "suspense's", "output": "⠎⠥⠎â â ¢â Žâ ‘â „â Ž" }, { "input": "suspenseful", "output": "⠎⠥⠎â â ¢â Žâ ‘â °â ‡" }, { "input": "suspension", "output": "⠎⠥⠎â â ¢â ¨â " }, { "input": "suspension's", "output": "⠎⠥⠎â â ¢â ¨â â „â Ž" }, { "input": "suspensions", "output": "⠎⠥⠎â â ¢â ¨â â Ž" }, { "input": "suspicion", "output": "⠎⠥⠎â â Šâ ‰â Šâ •â " }, { "input": "suspicion's", "output": "⠎⠥⠎â â Šâ ‰â Šâ •â â „â Ž" }, { "input": "suspicions", "output": "⠎⠥⠎â â Šâ ‰â Šâ •â â Ž" }, { "input": "suspicious", "output": "⠎⠥⠎â â Šâ ‰â Šâ ³â Ž" }, { "input": "suspiciously", "output": "⠎⠥⠎â â Šâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "sustain", "output": "⠎⠥⠌â â ”" }, { "input": "sustainable", "output": "⠎⠥⠌â â ”â â ¼" }, { "input": "sustained", "output": "⠎⠥⠌â â ”â «" }, { "input": "sustaining", "output": "⠎⠥⠌â â ”â Œ" }, { "input": "sustains", "output": "⠎⠥⠌â â ”â Ž" }, { "input": "sustenance", "output": "⠎⠥⠌⠢⠨⠑" }, { "input": "sustenance's", "output": "⠎⠥⠌⠢⠨⠑⠄⠎" }, { "input": "sutler", "output": "⠎⠥⠞⠇⠻" }, { "input": "sutler's", "output": "⠎⠥⠞⠇⠻⠄⠎" }, { "input": "sutlers", "output": "⠎⠥⠞⠇⠻⠎" }, { "input": "suture", "output": "⠎⠥⠞⠥⠗⠑" }, { "input": "suture's", "output": "⠎⠥⠞⠥⠗⠑⠄⠎" }, { "input": "sutured", "output": "⠎⠥⠞⠥⠗⠫" }, { "input": "sutures", "output": "⠎⠥⠞⠥⠗⠑⠎" }, { "input": "suturing", "output": "⠎⠥⠞⠥⠗⠌" }, { "input": "suzerain", "output": "⠎⠥⠵⠻â â ”" }, { "input": "suzerain's", "output": "⠎⠥⠵⠻â â ”â „â Ž" }, { "input": "suzerains", "output": "⠎⠥⠵⠻â â ”â Ž" }, { "input": "suzerainty's", "output": "⠎⠥⠵⠻â â ”⠞⠽⠄⠎" }, { "input": "svelte", "output": "⠎⠧⠑⠇⠞⠑" }, { "input": "svelter", "output": "⠎⠧⠑⠇⠞⠻" }, { "input": "sveltest", "output": "⠎⠧⠑⠇⠞⠑⠌" }, { "input": "swab", "output": "â Žâ ºâ â ƒ" }, { "input": "swab's", "output": "â Žâ ºâ â ƒâ „â Ž" }, { "input": "swabbed", "output": "â Žâ ºâ â †â «" }, { "input": "swabbing", "output": "â Žâ ºâ â †â Œ" }, { "input": "swabs", "output": "â Žâ ºâ â ƒâ Ž" }, { "input": "swaddle", "output": "â Žâ ºâ â ²â ‡â ‘" }, { "input": "swaddled", "output": "â Žâ ºâ â ²â ‡â «" }, { "input": "swaddles", "output": "â Žâ ºâ â ²â ‡â ‘â Ž" }, { "input": "swaddling", "output": "â Žâ ºâ â ²â ‡â Œ" }, { "input": "swag", "output": "â Žâ ºâ â ›" }, { "input": "swag's", "output": "â Žâ ºâ â ›â „â Ž" }, { "input": "swagged", "output": "â Žâ ºâ â ¶â «" }, { "input": "swagger", "output": "â Žâ ºâ â ¶â »" }, { "input": "swagger's", "output": "â Žâ ºâ â ¶â »â „â Ž" }, { "input": "swaggered", "output": "â Žâ ºâ â ¶â »â «" }, { "input": "swaggerer", "output": "â Žâ ºâ â ¶â »â »" }, { "input": "swaggering", "output": "â Žâ ºâ â ¶â »â Œ" }, { "input": "swaggers", "output": "â Žâ ºâ â ¶â »â Ž" }, { "input": "swagging", "output": "â Žâ ºâ â ¶â Œ" }, { "input": "swags", "output": "â Žâ ºâ â ›â Ž" }, { "input": "swain", "output": "â Žâ ºâ â ”" }, { "input": "swain's", "output": "â Žâ ºâ â ”â „â Ž" }, { "input": "swains", "output": "â Žâ ºâ â ”â Ž" }, { "input": "swallow", "output": "â Žâ ºâ â ‡â ‡â ª" }, { "input": "swallow's", "output": "â Žâ ºâ â ‡â ‡â ªâ „â Ž" }, { "input": "swallowed", "output": "â Žâ ºâ â ‡â ‡â ªâ «" }, { "input": "swallowing", "output": "â Žâ ºâ â ‡â ‡â ªâ Œ" }, { "input": "swallows", "output": "â Žâ ºâ â ‡â ‡â ªâ Ž" }, { "input": "swallowtail", "output": "â Žâ ºâ â ‡â ‡â ªâ žâ â Šâ ‡" }, { "input": "swallowtail's", "output": "â Žâ ºâ â ‡â ‡â ªâ žâ â Šâ ‡â „â Ž" }, { "input": "swallowtails", "output": "â Žâ ºâ â ‡â ‡â ªâ žâ â Šâ ‡â Ž" }, { "input": "swam", "output": "â Žâ ºâ â " }, { "input": "swami", "output": "â Žâ ºâ â â Š" }, { "input": "swami's", "output": "â Žâ ºâ â â Šâ „â Ž" }, { "input": "swamis", "output": "â Žâ ºâ â â Šâ Ž" }, { "input": "swamp", "output": "â Žâ ºâ â â " }, { "input": "swamp's", "output": "â Žâ ºâ â â â „â Ž" }, { "input": "swamped", "output": "â Žâ ºâ â â â «" }, { "input": "swampier", "output": "â Žâ ºâ â â â Šâ »" }, { "input": "swampiest", "output": "â Žâ ºâ â â â Šâ ‘â Œ" }, { "input": "swamping", "output": "â Žâ ºâ â â â Œ" }, { "input": "swampland", "output": "â Žâ ºâ â â â ‡â ¯" }, { "input": "swampland's", "output": "â Žâ ºâ â â â ‡â ¯â „â Ž" }, { "input": "swamps", "output": "â Žâ ºâ â â â Ž" }, { "input": "swampy", "output": "â Žâ ºâ â â â ½" }, { "input": "swan", "output": "â Žâ ºâ â " }, { "input": "swan's", "output": "â Žâ ºâ â â „â Ž" }, { "input": "swank", "output": "â Žâ ºâ â â …" }, { "input": "swank's", "output": "â Žâ ºâ â â …â „â Ž" }, { "input": "swanked", "output": "â Žâ ºâ â â …â «" }, { "input": "swanker", "output": "â Žâ ºâ â â …â »" }, { "input": "swankest", "output": "â Žâ ºâ â â …â ‘â Œ" }, { "input": "swankier", "output": "â Žâ ºâ â â …â Šâ »" }, { "input": "swankiest", "output": "â Žâ ºâ â â …â Šâ ‘â Œ" }, { "input": "swankily", "output": "â Žâ ºâ â â …⠊⠇⠽" }, { "input": "swankiness", "output": "â Žâ ºâ â â …â Šâ °â Ž" }, { "input": "swankiness's", "output": "â Žâ ºâ â â …â Šâ °â Žâ „â Ž" }, { "input": "swanking", "output": "â Žâ ºâ â â …â Œ" }, { "input": "swanks", "output": "â Žâ ºâ â â …â Ž" }, { "input": "swanky", "output": "â Žâ ºâ â â …â ½" }, { "input": "swans", "output": "â Žâ ºâ â â Ž" }, { "input": "swap", "output": "â Žâ ºâ â " }, { "input": "swap's", "output": "â Žâ ºâ â â „â Ž" }, { "input": "swapped", "output": "â Žâ ºâ â â â «" }, { "input": "swapping", "output": "â Žâ ºâ â â â Œ" }, { "input": "swaps", "output": "â Žâ ºâ â â Ž" }, { "input": "sward", "output": "⠎⠺⠜⠙" }, { "input": "sward's", "output": "⠎⠺⠜⠙⠄⠎" }, { "input": "swards", "output": "⠎⠺⠜⠙⠎" }, { "input": "swarm", "output": "⠎⠺⠜â " }, { "input": "swarm's", "output": "⠎⠺⠜â â „â Ž" }, { "input": "swarmed", "output": "⠎⠺⠜â â «" }, { "input": "swarming", "output": "⠎⠺⠜â â Œ" }, { "input": "swarms", "output": "⠎⠺⠜â â Ž" }, { "input": "swarthier", "output": "⠎⠺⠜⠹⠊⠻" }, { "input": "swarthiest", "output": "⠎⠺⠜⠹⠊⠑⠌" }, { "input": "swarthy", "output": "⠎⠺⠜⠹⠽" }, { "input": "swash", "output": "â Žâ ºâ â ©" }, { "input": "swash's", "output": "â Žâ ºâ â ©â „â Ž" }, { "input": "swashbuckler", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠻" }, { "input": "swashbuckler's", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠻⠄⠎" }, { "input": "swashbucklers", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠻⠎" }, { "input": "swashbuckling", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠌" }, { "input": "swashbuckling's", "output": "â Žâ ºâ â ©â ƒâ ¥â ‰â …⠇⠌⠄⠎" }, { "input": "swashed", "output": "â Žâ ºâ â ©â «" }, { "input": "swashes", "output": "â Žâ ºâ â ©â ‘â Ž" }, { "input": "swashing", "output": "â Žâ ºâ â ©â Œ" }, { "input": "swastika", "output": "â Žâ ºâ â Œâ Šâ …â " }, { "input": "swastika's", "output": "â Žâ ºâ â Œâ Šâ …â â „â Ž" }, { "input": "swastikas", "output": "â Žâ ºâ â Œâ Šâ …â â Ž" }, { "input": "swat", "output": "â Žâ ºâ â ž" }, { "input": "swat's", "output": "â Žâ ºâ â žâ „â Ž" }, { "input": "swatch", "output": "â Žâ ºâ â žâ ¡" }, { "input": "swatch's", "output": "â Žâ ºâ â žâ ¡â „â Ž" }, { "input": "swatches", "output": "â Žâ ºâ â žâ ¡â ‘â Ž" }, { "input": "swath", "output": "â Žâ ºâ â ¹" }, { "input": "swath's", "output": "â Žâ ºâ â ¹â „â Ž" }, { "input": "swathe", "output": "â Žâ ºâ â ®" }, { "input": "swathe's", "output": "â Žâ ºâ â ®â „â Ž" }, { "input": "swathed", "output": "â Žâ ºâ â ®â ™" }, { "input": "swathes", "output": "â Žâ ºâ â ®â Ž" }, { "input": "swathing", "output": "â Žâ ºâ â ¹â Œ" }, { "input": "swaths", "output": "â Žâ ºâ â ¹â Ž" }, { "input": "swats", "output": "â Žâ ºâ â žâ Ž" }, { "input": "swatted", "output": "â Žâ ºâ â žâ žâ «" }, { "input": "swatter", "output": "â Žâ ºâ â žâ žâ »" }, { "input": "swatter's", "output": "â Žâ ºâ â žâ žâ »â „â Ž" }, { "input": "swattered", "output": "â Žâ ºâ â žâ žâ »â «" }, { "input": "swattering", "output": "â Žâ ºâ â žâ žâ »â Œ" }, { "input": "swatters", "output": "â Žâ ºâ â žâ žâ »â Ž" }, { "input": "swatting", "output": "â Žâ ºâ â žâ žâ Œ" }, { "input": "sway", "output": "â Žâ ºâ â ½" }, { "input": "sway's", "output": "â Žâ ºâ â ½â „â Ž" }, { "input": "swayback", "output": "â Žâ ºâ â ½â ƒâ â ‰â …" }, { "input": "swayback's", "output": "â Žâ ºâ â ½â ƒâ â ‰â …â „â Ž" }, { "input": "swaybacked", "output": "â Žâ ºâ â ½â ƒâ â ‰â …â «" }, { "input": "swayed", "output": "â Žâ ºâ â ½â «" }, { "input": "swaying", "output": "â Žâ ºâ â ½â Œ" }, { "input": "sways", "output": "â Žâ ºâ â ½â Ž" }, { "input": "swear", "output": "⠎⠺⠑⠜" }, { "input": "swearer", "output": "⠎⠺⠑⠜⠻" }, { "input": "swearer's", "output": "⠎⠺⠑⠜⠻⠄⠎" }, { "input": "swearers", "output": "⠎⠺⠑⠜⠻⠎" }, { "input": "swearing", "output": "⠎⠺⠑⠜⠌" }, { "input": "swears", "output": "⠎⠺⠑⠜⠎" }, { "input": "swearword", "output": "⠎⠺⠑⠜⠘⠺" }, { "input": "swearword's", "output": "⠎⠺⠑⠜⠘⠺⠄⠎" }, { "input": "swearwords", "output": "⠎⠺⠑⠜⠘⠺⠎" }, { "input": "sweat", "output": "⠎⠺⠂⠞" }, { "input": "sweat's", "output": "⠎⠺⠂⠞⠄⠎" }, { "input": "sweater", "output": "⠎⠺⠂⠞⠻" }, { "input": "sweater's", "output": "⠎⠺⠂⠞⠻⠄⠎" }, { "input": "sweaters", "output": "⠎⠺⠂⠞⠻⠎" }, { "input": "sweatier", "output": "⠎⠺⠂⠞⠊⠻" }, { "input": "sweatiest", "output": "⠎⠺⠂⠞⠊⠑⠌" }, { "input": "sweating", "output": "⠎⠺⠂⠞⠌" }, { "input": "sweatpants", "output": "⠎⠺⠂⠞â â â â žâ Ž" }, { "input": "sweatpants's", "output": "⠎⠺⠂⠞â â â â žâ Žâ „â Ž" }, { "input": "sweats", "output": "⠎⠺⠂⠞⠎" }, { "input": "sweats's", "output": "⠎⠺⠂⠞⠎⠄⠎" }, { "input": "sweatshirt", "output": "⠎⠺⠂⠞⠩⠊⠗⠞" }, { "input": "sweatshirt's", "output": "⠎⠺⠂⠞⠩⠊⠗⠞⠄⠎" }, { "input": "sweatshirts", "output": "⠎⠺⠂⠞⠩⠊⠗⠞⠎" }, { "input": "sweatshop", "output": "⠎⠺⠂⠞⠩⠕â " }, { "input": "sweatshop's", "output": "⠎⠺⠂⠞⠩⠕â â „â Ž" }, { "input": "sweatshops", "output": "⠎⠺⠂⠞⠩⠕â â Ž" }, { "input": "sweaty", "output": "⠎⠺⠂⠞⠽" }, { "input": "sweep", "output": "⠎⠺⠑⠑â " }, { "input": "sweep's", "output": "⠎⠺⠑⠑â â „â Ž" }, { "input": "sweeper", "output": "⠎⠺⠑⠑â â »" }, { "input": "sweeper's", "output": "⠎⠺⠑⠑â â »â „â Ž" }, { "input": "sweepers", "output": "⠎⠺⠑⠑â â »â Ž" }, { "input": "sweeping", "output": "⠎⠺⠑⠑â â Œ" }, { "input": "sweeping's", "output": "⠎⠺⠑⠑â â Œâ „â Ž" }, { "input": "sweepingly", "output": "⠎⠺⠑⠑â â Œâ ‡â ½" }, { "input": "sweepings", "output": "⠎⠺⠑⠑â â Œâ Ž" }, { "input": "sweepings's", "output": "⠎⠺⠑⠑â â Œâ Žâ „â Ž" }, { "input": "sweeps", "output": "⠎⠺⠑⠑â â Ž" }, { "input": "sweepstakes", "output": "⠎⠺⠑⠑â â Œâ â …â ‘â Ž" }, { "input": "sweepstakes's", "output": "⠎⠺⠑⠑â â Œâ â …â ‘â Žâ „â Ž" }, { "input": "sweet", "output": "⠎⠺⠑⠑⠞" }, { "input": "sweet's", "output": "⠎⠺⠑⠑⠞⠄⠎" }, { "input": "sweetbread", "output": "⠎⠺⠑⠑⠞⠃⠗⠂⠙" }, { "input": "sweetbread's", "output": "⠎⠺⠑⠑⠞⠃⠗⠂⠙⠄⠎" }, { "input": "sweetbreads", "output": "⠎⠺⠑⠑⠞⠃⠗⠂⠙⠎" }, { "input": "sweetbrier", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠻" }, { "input": "sweetbrier's", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠻⠄⠎" }, { "input": "sweetbriers", "output": "⠎⠺⠑⠑⠞⠃⠗⠊⠻⠎" }, { "input": "sweeten", "output": "⠎⠺⠑⠑⠞⠢" }, { "input": "sweetened", "output": "⠎⠺⠑⠑⠞⠢⠫" }, { "input": "sweetener", "output": "⠎⠺⠑⠑⠞⠢⠻" }, { "input": "sweetener's", "output": "⠎⠺⠑⠑⠞⠢⠻⠄⠎" }, { "input": "sweeteners", "output": "⠎⠺⠑⠑⠞⠢⠻⠎" }, { "input": "sweetening", "output": "⠎⠺⠑⠑⠞⠢⠌" }, { "input": "sweetening's", "output": "⠎⠺⠑⠑⠞⠢⠌⠄⠎" }, { "input": "sweetens", "output": "⠎⠺⠑⠑⠞⠢⠎" }, { "input": "sweeter", "output": "⠎⠺⠑⠑⠞⠻" }, { "input": "sweetest", "output": "⠎⠺⠑⠑⠞⠑⠌" }, { "input": "sweetheart", "output": "⠎⠺⠑⠑⠞⠓⠑⠜⠞" }, { "input": "sweetheart's", "output": "⠎⠺⠑⠑⠞⠓⠑⠜⠞⠄⠎" }, { "input": "sweethearts", "output": "⠎⠺⠑⠑⠞⠓⠑⠜⠞⠎" }, { "input": "sweetie", "output": "⠎⠺⠑⠑⠞⠊⠑" }, { "input": "sweetie's", "output": "⠎⠺⠑⠑⠞⠊⠑⠄⠎" }, { "input": "sweeties", "output": "⠎⠺⠑⠑⠞⠊⠑⠎" }, { "input": "sweetish", "output": "⠎⠺⠑⠑⠞⠊⠩" }, { "input": "sweetly", "output": "⠎⠺⠑⠑⠞⠇⠽" }, { "input": "sweetmeat", "output": "⠎⠺⠑⠑⠞â â ‚â ž" }, { "input": "sweetmeat's", "output": "⠎⠺⠑⠑⠞â â ‚â žâ „â Ž" }, { "input": "sweetmeats", "output": "⠎⠺⠑⠑⠞â â ‚â žâ Ž" }, { "input": "sweetness", "output": "⠎⠺⠑⠑⠞⠰⠎" }, { "input": "sweetness's", "output": "⠎⠺⠑⠑⠞⠰⠎⠄⠎" }, { "input": "sweets", "output": "⠎⠺⠑⠑⠞⠎" }, { "input": "swell", "output": "⠎⠺⠑⠇⠇" }, { "input": "swell's", "output": "⠎⠺⠑⠇⠇⠄⠎" }, { "input": "swelled", "output": "⠎⠺⠑⠇⠇⠫" }, { "input": "sweller", "output": "⠎⠺⠑⠇⠇⠻" }, { "input": "swellest", "output": "⠎⠺⠑⠇⠇⠑⠌" }, { "input": "swellhead", "output": "⠎⠺⠑⠇⠇⠓⠂⠙" }, { "input": "swellhead's", "output": "⠎⠺⠑⠇⠇⠓⠂⠙⠄⠎" }, { "input": "swellheaded", "output": "⠎⠺⠑⠇⠇⠓⠂⠙⠫" }, { "input": "swellheads", "output": "⠎⠺⠑⠇⠇⠓⠂⠙⠎" }, { "input": "swelling", "output": "⠎⠺⠑⠇⠇⠌" }, { "input": "swelling's", "output": "⠎⠺⠑⠇⠇⠌⠄⠎" }, { "input": "swellings", "output": "⠎⠺⠑⠇⠇⠌⠎" }, { "input": "swells", "output": "⠎⠺⠑⠇⠇⠎" }, { "input": "swelter", "output": "⠎⠺⠑⠇⠞⠻" }, { "input": "swelter's", "output": "⠎⠺⠑⠇⠞⠻⠄⠎" }, { "input": "sweltered", "output": "⠎⠺⠑⠇⠞⠻⠫" }, { "input": "sweltering", "output": "⠎⠺⠑⠇⠞⠻⠌" }, { "input": "swelters", "output": "⠎⠺⠑⠇⠞⠻⠎" }, { "input": "swept", "output": "⠎⠺⠑â â ž" }, { "input": "sweptback", "output": "⠎⠺⠑â â žâ ƒâ â ‰â …" }, { "input": "swerve", "output": "⠎⠺⠻⠧⠑" }, { "input": "swerve's", "output": "⠎⠺⠻⠧⠑⠄⠎" }, { "input": "swerved", "output": "⠎⠺⠻⠧⠫" }, { "input": "swerves", "output": "⠎⠺⠻⠧⠑⠎" }, { "input": "swerving", "output": "⠎⠺⠻⠧⠌" }, { "input": "swift", "output": "⠎⠺⠊⠋⠞" }, { "input": "swift's", "output": "⠎⠺⠊⠋⠞⠄⠎" }, { "input": "swifter", "output": "⠎⠺⠊⠋⠞⠻" }, { "input": "swiftest", "output": "⠎⠺⠊⠋⠞⠑⠌" }, { "input": "swiftly", "output": "⠎⠺⠊⠋⠞⠇⠽" }, { "input": "swiftness", "output": "⠎⠺⠊⠋⠞⠰⠎" }, { "input": "swiftness's", "output": "⠎⠺⠊⠋⠞⠰⠎⠄⠎" }, { "input": "swifts", "output": "⠎⠺⠊⠋⠞⠎" }, { "input": "swig", "output": "⠎⠺⠊⠛" }, { "input": "swig's", "output": "⠎⠺⠊⠛⠄⠎" }, { "input": "swigged", "output": "⠎⠺⠊⠶⠫" }, { "input": "swigging", "output": "⠎⠺⠊⠶⠌" }, { "input": "swigs", "output": "⠎⠺⠊⠛⠎" }, { "input": "swill", "output": "⠎⠺⠊⠇⠇" }, { "input": "swill's", "output": "⠎⠺⠊⠇⠇⠄⠎" }, { "input": "swilled", "output": "⠎⠺⠊⠇⠇⠫" }, { "input": "swilling", "output": "⠎⠺⠊⠇⠇⠌" }, { "input": "swills", "output": "⠎⠺⠊⠇⠇⠎" }, { "input": "swim", "output": "⠎⠺⠊â " }, { "input": "swim's", "output": "⠎⠺⠊â â „â Ž" }, { "input": "swimmer", "output": "⠎⠺⠊â â â »" }, { "input": "swimmer's", "output": "⠎⠺⠊â â â »â „â Ž" }, { "input": "swimmers", "output": "⠎⠺⠊â â â »â Ž" }, { "input": "swimming", "output": "⠎⠺⠊â â â Œ" }, { "input": "swimming's", "output": "⠎⠺⠊â â â Œâ „â Ž" }, { "input": "swims", "output": "⠎⠺⠊â â Ž" }, { "input": "swimsuit", "output": "⠎⠺⠊â â Žâ ¥â Šâ ž" }, { "input": "swimsuit's", "output": "⠎⠺⠊â â Žâ ¥â Šâ žâ „â Ž" }, { "input": "swimsuits", "output": "⠎⠺⠊â â Žâ ¥â Šâ žâ Ž" }, { "input": "swindle", "output": "⠎⠺⠔⠙⠇⠑" }, { "input": "swindle's", "output": "⠎⠺⠔⠙⠇⠑⠄⠎" }, { "input": "swindled", "output": "⠎⠺⠔⠙⠇⠫" }, { "input": "swindler", "output": "⠎⠺⠔⠙⠇⠻" }, { "input": "swindler's", "output": "⠎⠺⠔⠙⠇⠻⠄⠎" }, { "input": "swindlers", "output": "⠎⠺⠔⠙⠇⠻⠎" }, { "input": "swindles", "output": "⠎⠺⠔⠙⠇⠑⠎" }, { "input": "swindling", "output": "⠎⠺⠔⠙⠇⠌" }, { "input": "swine", "output": "⠎⠺⠔⠑" }, { "input": "swine's", "output": "⠎⠺⠔⠑⠄⠎" }, { "input": "swineherd", "output": "⠎⠺⠔⠑⠓⠻⠙" }, { "input": "swineherd's", "output": "⠎⠺⠔⠑⠓⠻⠙⠄⠎" }, { "input": "swineherds", "output": "⠎⠺⠔⠑⠓⠻⠙⠎" }, { "input": "swines", "output": "⠎⠺⠔⠑⠎" }, { "input": "swing", "output": "⠎⠺⠌" }, { "input": "swing's", "output": "⠎⠺⠌⠄⠎" }, { "input": "swinger", "output": "⠎⠺⠌⠻" }, { "input": "swinger's", "output": "⠎⠺⠌⠻⠄⠎" }, { "input": "swingers", "output": "⠎⠺⠌⠻⠎" }, { "input": "swinging", "output": "⠎⠺⠌⠌" }, { "input": "swings", "output": "⠎⠺⠌⠎" }, { "input": "swinish", "output": "⠎⠺⠔⠊⠩" }, { "input": "swipe", "output": "⠎⠺⠊â â ‘" }, { "input": "swipe's", "output": "⠎⠺⠊â â ‘â „â Ž" }, { "input": "swiped", "output": "⠎⠺⠊â â «" }, { "input": "swipes", "output": "⠎⠺⠊â â ‘â Ž" }, { "input": "swiping", "output": "⠎⠺⠊â â Œ" }, { "input": "swirl", "output": "⠎⠺⠊⠗⠇" }, { "input": "swirl's", "output": "⠎⠺⠊⠗⠇⠄⠎" }, { "input": "swirled", "output": "⠎⠺⠊⠗⠇⠫" }, { "input": "swirlier", "output": "⠎⠺⠊⠗⠇⠊⠻" }, { "input": "swirliest", "output": "⠎⠺⠊⠗⠇⠊⠑⠌" }, { "input": "swirling", "output": "⠎⠺⠊⠗⠇⠌" }, { "input": "swirls", "output": "⠎⠺⠊⠗⠇⠎" }, { "input": "swirly", "output": "⠎⠺⠊⠗⠇⠽" }, { "input": "swish", "output": "⠎⠺⠊⠩" }, { "input": "swish's", "output": "⠎⠺⠊⠩⠄⠎" }, { "input": "swished", "output": "⠎⠺⠊⠩⠫" }, { "input": "swisher", "output": "⠎⠺⠊⠩⠻" }, { "input": "swishes", "output": "⠎⠺⠊⠩⠑⠎" }, { "input": "swishest", "output": "⠎⠺⠊⠩⠑⠌" }, { "input": "swishing", "output": "⠎⠺⠊⠩⠌" }, { "input": "switch", "output": "⠎⠺⠊⠞⠡" }, { "input": "switch's", "output": "⠎⠺⠊⠞⠡⠄⠎" }, { "input": "switchable", "output": "⠎⠺⠊⠞⠡â â ¼" }, { "input": "switchback", "output": "⠎⠺⠊⠞⠡⠃â â ‰â …" }, { "input": "switchback's", "output": "⠎⠺⠊⠞⠡⠃â â ‰â …â „â Ž" }, { "input": "switchbacks", "output": "⠎⠺⠊⠞⠡⠃â â ‰â …â Ž" }, { "input": "switchblade", "output": "⠎⠺⠊⠞⠡⠃⠇â â ™â ‘" }, { "input": "switchblade's", "output": "⠎⠺⠊⠞⠡⠃⠇â â ™â ‘â „â Ž" }, { "input": "switchblades", "output": "⠎⠺⠊⠞⠡⠃⠇â â ™â ‘â Ž" }, { "input": "switchboard", "output": "⠎⠺⠊⠞⠡⠃⠕⠜⠙" }, { "input": "switchboard's", "output": "⠎⠺⠊⠞⠡⠃⠕⠜⠙⠄⠎" }, { "input": "switchboards", "output": "⠎⠺⠊⠞⠡⠃⠕⠜⠙⠎" }, { "input": "switched", "output": "⠎⠺⠊⠞⠡⠫" }, { "input": "switcher", "output": "⠎⠺⠊⠞⠡⠻" }, { "input": "switcher's", "output": "⠎⠺⠊⠞⠡⠻⠄⠎" }, { "input": "switchers", "output": "⠎⠺⠊⠞⠡⠻⠎" }, { "input": "switches", "output": "⠎⠺⠊⠞⠡⠑⠎" }, { "input": "switching", "output": "⠎⠺⠊⠞⠡⠌" }, { "input": "swivel", "output": "⠎⠺⠊⠧⠑⠇" }, { "input": "swivel's", "output": "⠎⠺⠊⠧⠑⠇⠄⠎" }, { "input": "swiveled", "output": "⠎⠺⠊⠧⠑⠇⠫" }, { "input": "swiveling", "output": "⠎⠺⠊⠧⠑⠇⠌" }, { "input": "swivels", "output": "⠎⠺⠊⠧⠑⠇⠎" }, { "input": "swollen", "output": "⠎⠺⠕⠇⠇⠢" }, { "input": "swoon", "output": "⠎⠺⠕⠕â " }, { "input": "swoon's", "output": "⠎⠺⠕⠕â â „â Ž" }, { "input": "swooned", "output": "⠎⠺⠕⠕â â «" }, { "input": "swooning", "output": "⠎⠺⠕⠕â â Œ" }, { "input": "swoons", "output": "⠎⠺⠕⠕â â Ž" }, { "input": "swoop", "output": "⠎⠺⠕⠕â " }, { "input": "swoop's", "output": "⠎⠺⠕⠕â â „â Ž" }, { "input": "swooped", "output": "⠎⠺⠕⠕â â «" }, { "input": "swooping", "output": "⠎⠺⠕⠕â â Œ" }, { "input": "swoops", "output": "⠎⠺⠕⠕â â Ž" }, { "input": "sword", "output": "⠎⠺⠕⠗⠙" }, { "input": "sword's", "output": "⠎⠺⠕⠗⠙⠄⠎" }, { "input": "swordfish", "output": "⠎⠺⠕⠗⠙⠋⠊⠩" }, { "input": "swordfish's", "output": "⠎⠺⠕⠗⠙⠋⠊⠩⠄⠎" }, { "input": "swordfishes", "output": "⠎⠺⠕⠗⠙⠋⠊⠩⠑⠎" }, { "input": "swordplay", "output": "⠎⠺⠕⠗⠙â â ‡â â ½" }, { "input": "swordplay's", "output": "⠎⠺⠕⠗⠙â â ‡â â ½â „â Ž" }, { "input": "swords", "output": "⠎⠺⠕⠗⠙⠎" }, { "input": "swordsman", "output": "⠎⠺⠕⠗⠙⠎â â â " }, { "input": "swordsman's", "output": "⠎⠺⠕⠗⠙⠎â â â â „â Ž" }, { "input": "swordsmanship's", "output": "⠎⠺⠕⠗⠙⠎â â â â ©â Šâ â „â Ž" }, { "input": "swordsmen", "output": "⠎⠺⠕⠗⠙⠎â â ¢" }, { "input": "swore", "output": "⠎⠺⠕⠗⠑" }, { "input": "sworn", "output": "⠎⠺⠕⠗â " }, { "input": "swum", "output": "⠎⠺⠥â " }, { "input": "swung", "output": "⠎⠺⠥â â ›" }, { "input": "sybarite", "output": "⠎⠽⠃⠜⠊⠞⠑" }, { "input": "sybarite's", "output": "⠎⠽⠃⠜⠊⠞⠑⠄⠎" }, { "input": "sybarites", "output": "⠎⠽⠃⠜⠊⠞⠑⠎" }, { "input": "sybaritic", "output": "⠎⠽⠃⠜⠊⠞⠊⠉" }, { "input": "sycamore", "output": "⠎⠽⠉â â â •â —â ‘" }, { "input": "sycamore's", "output": "⠎⠽⠉â â â •â —â ‘â „â Ž" }, { "input": "sycamores", "output": "⠎⠽⠉â â â •â —â ‘â Ž" }, { "input": "sycophancy's", "output": "⠎⠽⠉⠕â â “â â â ‰â ½â „â Ž" }, { "input": "sycophant", "output": "⠎⠽⠉⠕â â “â â â ž" }, { "input": "sycophant's", "output": "⠎⠽⠉⠕â â “â â â žâ „â Ž" }, { "input": "sycophantic", "output": "⠎⠽⠉⠕â â “â â â žâ Šâ ‰" }, { "input": "sycophants", "output": "⠎⠽⠉⠕â â “â â â žâ Ž" }, { "input": "syllabic", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰" }, { "input": "syllabicate", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â â žâ ‘" }, { "input": "syllabicated", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â â žâ «" }, { "input": "syllabicates", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â â žâ ‘â Ž" }, { "input": "syllabicating", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â â žâ Œ" }, { "input": "syllabication", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â  â " }, { "input": "syllabication's", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‰â  â â „â Ž" }, { "input": "syllabification", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ ‰â  â " }, { "input": "syllabification's", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "syllabified", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ «" }, { "input": "syllabifies", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â Šâ ‘â Ž" }, { "input": "syllabify", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â ½" }, { "input": "syllabifying", "output": "⠎⠽⠇⠇â â ƒâ Šâ ‹â ½â Œ" }, { "input": "syllable", "output": "⠎⠽⠇⠇â â ¼" }, { "input": "syllable's", "output": "⠎⠽⠇⠇â â ¼â „â Ž" }, { "input": "syllables", "output": "⠎⠽⠇⠇â â ¼â Ž" }, { "input": "syllabus", "output": "⠎⠽⠇⠇â â ƒâ ¥â Ž" }, { "input": "syllabus's", "output": "⠎⠽⠇⠇â â ƒâ ¥â Žâ „â Ž" }, { "input": "syllabuses", "output": "⠎⠽⠇⠇â â ƒâ ¥â Žâ ‘â Ž" }, { "input": "syllogism", "output": "⠎⠽⠇⠇⠕⠛⠊⠎â " }, { "input": "syllogism's", "output": "⠎⠽⠇⠇⠕⠛⠊⠎â â „â Ž" }, { "input": "syllogisms", "output": "⠎⠽⠇⠇⠕⠛⠊⠎â â Ž" }, { "input": "syllogistic", "output": "⠎⠽⠇⠇⠕⠛⠊⠌⠊⠉" }, { "input": "sylph", "output": "⠎⠽⠇â â “" }, { "input": "sylph's", "output": "⠎⠽⠇â â “â „â Ž" }, { "input": "sylphic", "output": "⠎⠽⠇â â “â Šâ ‰" }, { "input": "sylphs", "output": "⠎⠽⠇â â “â Ž" }, { "input": "sylvan", "output": "⠎⠽⠇⠧â â " }, { "input": "symbioses", "output": "â Žâ ½â â ƒâ Šâ •â Žâ ‘â Ž" }, { "input": "symbiosis", "output": "â Žâ ½â â ƒâ Šâ •â Žâ Šâ Ž" }, { "input": "symbiosis's", "output": "â Žâ ½â â ƒâ Šâ •â Žâ Šâ Žâ „â Ž" }, { "input": "symbiotic", "output": "â Žâ ½â â ƒâ Šâ •â žâ Šâ ‰" }, { "input": "symbol", "output": "â Žâ ½â â ƒâ •â ‡" }, { "input": "symbol's", "output": "â Žâ ½â â ƒâ •⠇⠄⠎" }, { "input": "symbolic", "output": "â Žâ ½â â ƒâ •⠇⠊⠉" }, { "input": "symbolically", "output": "â Žâ ½â â ƒâ •⠇⠊⠉⠠⠽" }, { "input": "symbolism", "output": "â Žâ ½â â ƒâ •⠇⠊⠎â " }, { "input": "symbolism's", "output": "â Žâ ½â â ƒâ •⠇⠊⠎â â „â Ž" }, { "input": "symbolization", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠠â " }, { "input": "symbolization's", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠠â â „â Ž" }, { "input": "symbolize", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠑" }, { "input": "symbolized", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠫" }, { "input": "symbolizes", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠑⠎" }, { "input": "symbolizing", "output": "â Žâ ½â â ƒâ •⠇⠊⠵⠌" }, { "input": "symbols", "output": "â Žâ ½â â ƒâ •⠇⠎" }, { "input": "symmetric", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‰" }, { "input": "symmetrical", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "symmetrically", "output": "â Žâ ½â â â ‘⠞⠗⠊⠉⠠⠽" }, { "input": "symmetries", "output": "â Žâ ½â â â ‘â žâ —â Šâ ‘â Ž" }, { "input": "symmetry", "output": "â Žâ ½â â â ‘â žâ —â ½" }, { "input": "symmetry's", "output": "â Žâ ½â â â ‘⠞⠗⠽⠄⠎" }, { "input": "sympathetic", "output": "â Žâ ½â â â â ®â žâ Šâ ‰" }, { "input": "sympathetically", "output": "â Žâ ½â â â â ®â žâ Šâ ‰â  â ½" }, { "input": "sympathies", "output": "â Žâ ½â â â â ¹â Šâ ‘â Ž" }, { "input": "sympathies's", "output": "â Žâ ½â â â â ¹â Šâ ‘â Žâ „â Ž" }, { "input": "sympathize", "output": "â Žâ ½â â â â ¹â Šâ µâ ‘" }, { "input": "sympathized", "output": "â Žâ ½â â â â ¹â Šâ µâ «" }, { "input": "sympathizer", "output": "â Žâ ½â â â â ¹â Šâ µâ »" }, { "input": "sympathizer's", "output": "â Žâ ½â â â â ¹â Šâ µâ »â „â Ž" }, { "input": "sympathizers", "output": "â Žâ ½â â â â ¹â Šâ µâ »â Ž" }, { "input": "sympathizes", "output": "â Žâ ½â â â â ¹â Šâ µâ ‘â Ž" }, { "input": "sympathizing", "output": "â Žâ ½â â â â ¹â Šâ µâ Œ" }, { "input": "sympathy", "output": "â Žâ ½â â â â ¹â ½" }, { "input": "sympathy's", "output": "â Žâ ½â â â â ¹â ½â „â Ž" }, { "input": "symphonic", "output": "â Žâ ½â â â “â •â â Šâ ‰" }, { "input": "symphonies", "output": "â Žâ ½â â â “â •â â Šâ ‘â Ž" }, { "input": "symphony", "output": "â Žâ ½â â â “â •â â ½" }, { "input": "symphony's", "output": "â Žâ ½â â â “â •â â ½â „â Ž" }, { "input": "symposium", "output": "â Žâ ½â â â •â Žâ Šâ ¥â " }, { "input": "symposium's", "output": "â Žâ ½â â â •â Žâ Šâ ¥â â „â Ž" }, { "input": "symposiums", "output": "â Žâ ½â â â •â Žâ Šâ ¥â â Ž" }, { "input": "symptom", "output": "â Žâ ½â â â žâ •â " }, { "input": "symptom's", "output": "â Žâ ½â â â žâ •â â „â Ž" }, { "input": "symptomatic", "output": "â Žâ ½â â â žâ •â â â žâ Šâ ‰" }, { "input": "symptomatically", "output": "â Žâ ½â â â žâ •â â â žâ Šâ ‰â  â ½" }, { "input": "symptoms", "output": "â Žâ ½â â â žâ •â â Ž" }, { "input": "synagogal", "output": "â Žâ ½â â â ›â •â ›â â ‡" }, { "input": "synagogue", "output": "â Žâ ½â â â ›â •⠛⠥⠑" }, { "input": "synagogue's", "output": "â Žâ ½â â â ›â •⠛⠥⠑⠄⠎" }, { "input": "synagogues", "output": "â Žâ ½â â â ›â •⠛⠥⠑⠎" }, { "input": "synapse", "output": "â Žâ ½â â â â Žâ ‘" }, { "input": "synapse's", "output": "â Žâ ½â â â â Žâ ‘â „â Ž" }, { "input": "synapses", "output": "â Žâ ½â â â â Žâ ‘â Ž" }, { "input": "sync", "output": "â Žâ ½â â ‰" }, { "input": "sync's", "output": "â Žâ ½â â ‰â „â Ž" }, { "input": "synced", "output": "â Žâ ½â â ‰â «" }, { "input": "synchronization", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ  â " }, { "input": "synchronization's", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ  â â „â Ž" }, { "input": "synchronizations", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ  â â Ž" }, { "input": "synchronize", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ ‘" }, { "input": "synchronized", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ «" }, { "input": "synchronizes", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ ‘â Ž" }, { "input": "synchronizing", "output": "â Žâ ½â â ¡â —â •â â Šâ µâ Œ" }, { "input": "synchronous", "output": "â Žâ ½â â ¡â —â •â â ³â Ž" }, { "input": "synchronously", "output": "â Žâ ½â â ¡â —â •â â ³â Žâ ‡â ½" }, { "input": "syncing", "output": "â Žâ ½â â ‰â Œ" }, { "input": "syncopate", "output": "â Žâ ½â â ‰â •â â â žâ ‘" }, { "input": "syncopated", "output": "â Žâ ½â â ‰â •â â â žâ «" }, { "input": "syncopates", "output": "â Žâ ½â â ‰â •â â â žâ ‘â Ž" }, { "input": "syncopating", "output": "â Žâ ½â â ‰â •â â â žâ Œ" }, { "input": "syncopation", "output": "â Žâ ½â â ‰â •â â  â " }, { "input": "syncopation's", "output": "â Žâ ½â â ‰â •â â  â â „â Ž" }, { "input": "syncope", "output": "â Žâ ½â â ‰â •â â ‘" }, { "input": "syncope's", "output": "â Žâ ½â â ‰â •â â ‘â „â Ž" }, { "input": "syncs", "output": "â Žâ ½â â ‰â Ž" }, { "input": "syndicate", "output": "â Žâ ½â â ™â Šâ ‰â â žâ ‘" }, { "input": "syndicate's", "output": "â Žâ ½â â ™â Šâ ‰â â žâ ‘â „â Ž" }, { "input": "syndicated", "output": "â Žâ ½â â ™â Šâ ‰â â žâ «" }, { "input": "syndicates", "output": "â Žâ ½â â ™â Šâ ‰â â žâ ‘â Ž" }, { "input": "syndicating", "output": "â Žâ ½â â ™â Šâ ‰â â žâ Œ" }, { "input": "syndication", "output": "â Žâ ½â â ™â Šâ ‰â  â " }, { "input": "syndication's", "output": "â Žâ ½â â ™â Šâ ‰â  â â „â Ž" }, { "input": "syndrome", "output": "â Žâ ½â â ™â —â •â â ‘" }, { "input": "syndrome's", "output": "â Žâ ½â â ™â —â •â â ‘â „â Ž" }, { "input": "syndromes", "output": "â Žâ ½â â ™â —â •â â ‘â Ž" }, { "input": "synergism", "output": "â Žâ ½â â »â ›â Šâ Žâ " }, { "input": "synergism's", "output": "â Žâ ½â â »â ›â Šâ Žâ â „â Ž" }, { "input": "synergistic", "output": "â Žâ ½â â »â ›â Šâ Œâ Šâ ‰" }, { "input": "synergy", "output": "â Žâ ½â â »â ›â ½" }, { "input": "synergy's", "output": "â Žâ ½â â »â ›â ½â „â Ž" }, { "input": "synfuel", "output": "â Žâ ½â â ‹â ¥â ‘â ‡" }, { "input": "synfuel's", "output": "â Žâ ½â â ‹â ¥â ‘⠇⠄⠎" }, { "input": "synfuels", "output": "â Žâ ½â â ‹â ¥â ‘⠇⠎" }, { "input": "synod", "output": "â Žâ ½â â •â ™" }, { "input": "synod's", "output": "â Žâ ½â â •⠙⠄⠎" }, { "input": "synods", "output": "â Žâ ½â â •⠙⠎" }, { "input": "synonym", "output": "â Žâ ½â â •â â ½â " }, { "input": "synonym's", "output": "â Žâ ½â â •â â ½â â „â Ž" }, { "input": "synonymous", "output": "â Žâ ½â â •â â ½â â ³â Ž" }, { "input": "synonyms", "output": "â Žâ ½â â •â â ½â â Ž" }, { "input": "synonymy", "output": "â Žâ ½â â •â â ½â â ½" }, { "input": "synonymy's", "output": "â Žâ ½â â •â â ½â â ½â „â Ž" }, { "input": "synopses", "output": "â Žâ ½â â •â â Žâ ‘â Ž" }, { "input": "synopsis", "output": "â Žâ ½â â •â â Žâ Šâ Ž" }, { "input": "synopsis's", "output": "â Žâ ½â â •â â Žâ Šâ Žâ „â Ž" }, { "input": "synoptic", "output": "â Žâ ½â â •â â žâ Šâ ‰" }, { "input": "syntactic", "output": "â Žâ ½â â žâ â ‰â žâ Šâ ‰" }, { "input": "syntactical", "output": "â Žâ ½â â žâ â ‰â žâ Šâ ‰â â ‡" }, { "input": "syntactically", "output": "â Žâ ½â â žâ â ‰â žâ Šâ ‰â  â ½" }, { "input": "syntax", "output": "â Žâ ½â â žâ â ­" }, { "input": "syntax's", "output": "â Žâ ½â â žâ â ­â „â Ž" }, { "input": "syntheses", "output": "â Žâ ½â â ®â Žâ ‘â Ž" }, { "input": "synthesis", "output": "â Žâ ½â â ®â Žâ Šâ Ž" }, { "input": "synthesis's", "output": "â Žâ ½â â ®â Žâ Šâ Žâ „â Ž" }, { "input": "synthesize", "output": "â Žâ ½â â ®â Žâ Šâ µâ ‘" }, { "input": "synthesized", "output": "â Žâ ½â â ®â Žâ Šâ µâ «" }, { "input": "synthesizer", "output": "â Žâ ½â â ®â Žâ Šâ µâ »" }, { "input": "synthesizer's", "output": "â Žâ ½â â ®â Žâ Šâ µâ »â „â Ž" }, { "input": "synthesizers", "output": "â Žâ ½â â ®â Žâ Šâ µâ »â Ž" }, { "input": "synthesizes", "output": "â Žâ ½â â ®â Žâ Šâ µâ ‘â Ž" }, { "input": "synthesizing", "output": "â Žâ ½â â ®â Žâ Šâ µâ Œ" }, { "input": "synthetic", "output": "â Žâ ½â â ®â žâ Šâ ‰" }, { "input": "synthetic's", "output": "â Žâ ½â â ®â žâ Šâ ‰â „â Ž" }, { "input": "synthetically", "output": "â Žâ ½â â ®â žâ Šâ ‰â  â ½" }, { "input": "synthetics", "output": "â Žâ ½â â ®â žâ Šâ ‰â Ž" }, { "input": "syphilis", "output": "â Žâ ½â â “⠊⠇⠊⠎" }, { "input": "syphilis's", "output": "â Žâ ½â â “⠊⠇⠊⠎⠄⠎" }, { "input": "syphilitic", "output": "â Žâ ½â â “⠊⠇⠊⠞⠊⠉" }, { "input": "syphilitic's", "output": "â Žâ ½â â “⠊⠇⠊⠞⠊⠉⠄⠎" }, { "input": "syphilitics", "output": "â Žâ ½â â “⠊⠇⠊⠞⠊⠉⠎" }, { "input": "syringe", "output": "⠎⠽⠗⠌⠑" }, { "input": "syringe's", "output": "⠎⠽⠗⠌⠑⠄⠎" }, { "input": "syringed", "output": "⠎⠽⠗⠌⠫" }, { "input": "syringes", "output": "⠎⠽⠗⠌⠑⠎" }, { "input": "syringing", "output": "⠎⠽⠗⠌⠌" }, { "input": "syrup", "output": "⠎⠽⠗⠥â " }, { "input": "syrup's", "output": "⠎⠽⠗⠥â â „â Ž" }, { "input": "syrups", "output": "⠎⠽⠗⠥â â Ž" }, { "input": "syrupy", "output": "⠎⠽⠗⠥â â ½" }, { "input": "system", "output": "⠎⠽⠌⠑â " }, { "input": "system's", "output": "⠎⠽⠌⠑â â „â Ž" }, { "input": "systematic", "output": "⠎⠽⠌⠑â â â žâ Šâ ‰" }, { "input": "systematical", "output": "⠎⠽⠌⠑â â â žâ Šâ ‰â â ‡" }, { "input": "systematically", "output": "⠎⠽⠌⠑â â â žâ Šâ ‰â  â ½" }, { "input": "systematization", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ  â " }, { "input": "systematization's", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ  â â „â Ž" }, { "input": "systematize", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ ‘" }, { "input": "systematized", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ «" }, { "input": "systematizes", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ ‘â Ž" }, { "input": "systematizing", "output": "⠎⠽⠌⠑â â â žâ Šâ µâ Œ" }, { "input": "systemic", "output": "⠎⠽⠌⠑â â Šâ ‰" }, { "input": "systemic's", "output": "⠎⠽⠌⠑â â Šâ ‰â „â Ž" }, { "input": "systemics", "output": "⠎⠽⠌⠑â â Šâ ‰â Ž" }, { "input": "systems", "output": "⠎⠽⠌⠑â â Ž" }, { "input": "systole", "output": "⠎⠽⠌⠕⠇⠑" }, { "input": "systole's", "output": "⠎⠽⠌⠕⠇⠑⠄⠎" }, { "input": "systoles", "output": "⠎⠽⠌⠕⠇⠑⠎" }, { "input": "systolic", "output": "⠎⠽⠌⠕⠇⠊⠉" }, { "input": "t", "output": "â °â ž" }, { "input": "tab", "output": "â žâ â ƒ" }, { "input": "tab's", "output": "â žâ â ƒâ „â Ž" }, { "input": "tabbed", "output": "â žâ â †â «" }, { "input": "tabbies", "output": "â žâ â †â Šâ ‘â Ž" }, { "input": "tabbing", "output": "â žâ â †â Œ" }, { "input": "tabbouleh", "output": "â žâ â †â ³â ‡â ‘â “" }, { "input": "tabbouleh's", "output": "â žâ â †â ³â ‡â ‘â “â „â Ž" }, { "input": "tabby", "output": "â žâ â †â ½" }, { "input": "tabby's", "output": "â žâ â †â ½â „â Ž" }, { "input": "tabernacle", "output": "â žâ â ƒâ »â â â ‰â ‡â ‘" }, { "input": "tabernacle's", "output": "â žâ â ƒâ »â â â ‰â ‡â ‘â „â Ž" }, { "input": "tabernacles", "output": "â žâ â ƒâ »â â â ‰â ‡â ‘â Ž" }, { "input": "tabla", "output": "â žâ â ƒâ ‡â " }, { "input": "tabla's", "output": "â žâ â ƒâ ‡â â „â Ž" }, { "input": "tablas", "output": "â žâ â ƒâ ‡â â Ž" }, { "input": "table", "output": "â žâ â ¼" }, { "input": "table's", "output": "â žâ â ¼â „â Ž" }, { "input": "tableau", "output": "â žâ â ƒâ ‡â ‚â ¥" }, { "input": "tableau's", "output": "â žâ â ƒâ ‡â ‚⠥⠄⠎" }, { "input": "tableaux", "output": "â žâ â ƒâ ‡â ‚⠥⠭" }, { "input": "tablecloth", "output": "â žâ â ¼â ‰â ‡â •â ¹" }, { "input": "tablecloth's", "output": "â žâ â ¼â ‰â ‡â •⠹⠄⠎" }, { "input": "tablecloths", "output": "â žâ â ¼â ‰â ‡â •⠹⠎" }, { "input": "tabled", "output": "â žâ â ¼â ™" }, { "input": "tableland", "output": "â žâ â ¼â ‡â ¯" }, { "input": "tableland's", "output": "â žâ â ¼â ‡â ¯â „â Ž" }, { "input": "tablelands", "output": "â žâ â ¼â ‡â ¯â Ž" }, { "input": "tables", "output": "â žâ â ¼â Ž" }, { "input": "tablespoon", "output": "â žâ â ¼â Žâ â •â •â " }, { "input": "tablespoon's", "output": "â žâ â ¼â Žâ â •â •â â „â Ž" }, { "input": "tablespoonful", "output": "â žâ â ¼â Žâ â •â •â â °â ‡" }, { "input": "tablespoonful's", "output": "â žâ â ¼â Žâ â •â •â â °â ‡â „â Ž" }, { "input": "tablespoonfuls", "output": "â žâ â ¼â Žâ â •â •â â °â ‡â Ž" }, { "input": "tablespoons", "output": "â žâ â ¼â Žâ â •â •â â Ž" }, { "input": "tablet", "output": "â žâ â ¼â ž" }, { "input": "tablet's", "output": "â žâ â ¼â žâ „â Ž" }, { "input": "tabletop", "output": "â žâ â ¼â žâ •â " }, { "input": "tabletop's", "output": "â žâ â ¼â žâ •â â „â Ž" }, { "input": "tabletops", "output": "â žâ â ¼â žâ •â â Ž" }, { "input": "tablets", "output": "â žâ â ¼â žâ Ž" }, { "input": "tableware", "output": "â žâ â ¼â ºâ œâ ‘" }, { "input": "tableware's", "output": "â žâ â ¼â ºâ œâ ‘â „â Ž" }, { "input": "tabling", "output": "â žâ â ƒâ ‡â Œ" }, { "input": "tabloid", "output": "â žâ â ƒâ ‡â •â Šâ ™" }, { "input": "tabloid's", "output": "â žâ â ƒâ ‡â •⠊⠙⠄⠎" }, { "input": "tabloids", "output": "â žâ â ƒâ ‡â •⠊⠙⠎" }, { "input": "taboo", "output": "â žâ â ƒâ •â •" }, { "input": "taboo's", "output": "â žâ â ƒâ •â •â „â Ž" }, { "input": "tabooed", "output": "â žâ â ƒâ •â •â «" }, { "input": "tabooing", "output": "â žâ â ƒâ •â •â Œ" }, { "input": "taboos", "output": "â žâ â ƒâ •â •â Ž" }, { "input": "tabor", "output": "â žâ â ƒâ •â —" }, { "input": "tabor's", "output": "â žâ â ƒâ •â —â „â Ž" }, { "input": "tabors", "output": "â žâ â ƒâ •â —â Ž" }, { "input": "tabs", "output": "â žâ â ƒâ Ž" }, { "input": "tabular", "output": "â žâ â ƒâ ¥â ‡â œ" }, { "input": "tabulate", "output": "â žâ â ƒâ ¥â ‡â â žâ ‘" }, { "input": "tabulated", "output": "â žâ â ƒâ ¥â ‡â â žâ «" }, { "input": "tabulates", "output": "â žâ â ƒâ ¥â ‡â â žâ ‘â Ž" }, { "input": "tabulating", "output": "â žâ â ƒâ ¥â ‡â â žâ Œ" }, { "input": "tabulation", "output": "â žâ â ƒâ ¥â ‡â  â " }, { "input": "tabulation's", "output": "â žâ â ƒâ ¥â ‡â  â â „â Ž" }, { "input": "tabulator", "output": "â žâ â ƒâ ¥â ‡â â žâ •â —" }, { "input": "tabulator's", "output": "â žâ â ƒâ ¥â ‡â â žâ •â —â „â Ž" }, { "input": "tabulators", "output": "â žâ â ƒâ ¥â ‡â â žâ •â —â Ž" }, { "input": "tachometer", "output": "â žâ â ¡â •â â ‘â žâ »" }, { "input": "tachometer's", "output": "â žâ â ¡â •â â ‘⠞⠻⠄⠎" }, { "input": "tachometers", "output": "â žâ â ¡â •â â ‘⠞⠻⠎" }, { "input": "tachycardia", "output": "â žâ â ¡â ½â ‰â œâ ™â Šâ " }, { "input": "tachycardia's", "output": "â žâ â ¡â ½â ‰â œâ ™â Šâ â „â Ž" }, { "input": "tacit", "output": "â žâ â ‰â Šâ ž" }, { "input": "tacitly", "output": "â žâ â ‰â Šâ žâ ‡â ½" }, { "input": "tacitness", "output": "â žâ â ‰â Šâ žâ °â Ž" }, { "input": "tacitness's", "output": "â žâ â ‰â Šâ žâ °â Žâ „â Ž" }, { "input": "taciturn", "output": "â žâ â ‰â Šâ žâ ¥â —â " }, { "input": "taciturnity", "output": "â žâ â ‰â Šâ žâ ¥â —â â °â ½" }, { "input": "taciturnity's", "output": "â žâ â ‰â Šâ žâ ¥â —â â °â ½â „â Ž" }, { "input": "taciturnly", "output": "â žâ â ‰â Šâ žâ ¥â —â â ‡â ½" }, { "input": "tack", "output": "â žâ â ‰â …" }, { "input": "tack's", "output": "â žâ â ‰â …â „â Ž" }, { "input": "tacked", "output": "â žâ â ‰â …â «" }, { "input": "tacker", "output": "â žâ â ‰â …â »" }, { "input": "tacker's", "output": "â žâ â ‰â …⠻⠄⠎" }, { "input": "tackers", "output": "â žâ â ‰â …⠻⠎" }, { "input": "tackier", "output": "â žâ â ‰â …â Šâ »" }, { "input": "tackiest", "output": "â žâ â ‰â …â Šâ ‘â Œ" }, { "input": "tackiness", "output": "â žâ â ‰â …â Šâ °â Ž" }, { "input": "tackiness's", "output": "â žâ â ‰â …â Šâ °â Žâ „â Ž" }, { "input": "tacking", "output": "â žâ â ‰â …â Œ" }, { "input": "tackle", "output": "â žâ â ‰â …⠇⠑" }, { "input": "tackle's", "output": "â žâ â ‰â …⠇⠑⠄⠎" }, { "input": "tackled", "output": "â žâ â ‰â …⠇⠫" }, { "input": "tackler", "output": "â žâ â ‰â …⠇⠻" }, { "input": "tackler's", "output": "â žâ â ‰â …⠇⠻⠄⠎" }, { "input": "tacklers", "output": "â žâ â ‰â …⠇⠻⠎" }, { "input": "tackles", "output": "â žâ â ‰â …⠇⠑⠎" }, { "input": "tackling", "output": "â žâ â ‰â …⠇⠌" }, { "input": "tacks", "output": "â žâ â ‰â …â Ž" }, { "input": "tacky", "output": "â žâ â ‰â …â ½" }, { "input": "taco", "output": "â žâ â ‰â •" }, { "input": "taco's", "output": "â žâ â ‰â •â „â Ž" }, { "input": "tacos", "output": "â žâ â ‰â •â Ž" }, { "input": "tact", "output": "â žâ â ‰â ž" }, { "input": "tact's", "output": "â žâ â ‰â žâ „â Ž" }, { "input": "tactful", "output": "â žâ â ‰â žâ °â ‡" }, { "input": "tactfully", "output": "â žâ â ‰â žâ °â ‡â ‡â ½" }, { "input": "tactfulness", "output": "â žâ â ‰â žâ °â ‡â °â Ž" }, { "input": "tactfulness's", "output": "â žâ â ‰â žâ °â ‡â °â Žâ „â Ž" }, { "input": "tactic", "output": "â žâ â ‰â žâ Šâ ‰" }, { "input": "tactic's", "output": "â žâ â ‰â žâ Šâ ‰â „â Ž" }, { "input": "tactical", "output": "â žâ â ‰â žâ Šâ ‰â â ‡" }, { "input": "tactically", "output": "â žâ â ‰â žâ Šâ ‰â  â ½" }, { "input": "tactician", "output": "â žâ â ‰â žâ Šâ ‰â Šâ â " }, { "input": "tactician's", "output": "â žâ â ‰â žâ Šâ ‰â Šâ â â „â Ž" }, { "input": "tacticians", "output": "â žâ â ‰â žâ Šâ ‰â Šâ â â Ž" }, { "input": "tactics", "output": "â žâ â ‰â žâ Šâ ‰â Ž" }, { "input": "tactile", "output": "â žâ â ‰â žâ Šâ ‡â ‘" }, { "input": "tactility", "output": "â žâ â ‰â žâ Šâ ‡â °â ½" }, { "input": "tactility's", "output": "â žâ â ‰â žâ Šâ ‡â °â ½â „â Ž" }, { "input": "tactless", "output": "â žâ â ‰â žâ ¨â Ž" }, { "input": "tactlessly", "output": "â žâ â ‰â žâ ¨â Žâ ‡â ½" }, { "input": "tactlessness", "output": "â žâ â ‰â žâ ¨â Žâ °â Ž" }, { "input": "tactlessness's", "output": "â žâ â ‰â žâ ¨â Žâ °â Žâ „â Ž" }, { "input": "tad", "output": "â žâ â ™" }, { "input": "tad's", "output": "â žâ â ™â „â Ž" }, { "input": "tadpole", "output": "â žâ â ™â â •⠇⠑" }, { "input": "tadpole's", "output": "â žâ â ™â â •⠇⠑⠄⠎" }, { "input": "tadpoles", "output": "â žâ â ™â â •⠇⠑⠎" }, { "input": "tads", "output": "â žâ â ™â Ž" }, { "input": "taffeta", "output": "â žâ â –â ‘â žâ " }, { "input": "taffeta's", "output": "â žâ â –â ‘â žâ â „â Ž" }, { "input": "taffies", "output": "â žâ â –â Šâ ‘â Ž" }, { "input": "taffrail", "output": "â žâ â –â —â â Šâ ‡" }, { "input": "taffrail's", "output": "â žâ â –â —â â Šâ ‡â „â Ž" }, { "input": "taffrails", "output": "â žâ â –â —â â Šâ ‡â Ž" }, { "input": "taffy", "output": "â žâ â –â ½" }, { "input": "taffy's", "output": "â žâ â –⠽⠄⠎" }, { "input": "tag", "output": "â žâ â ›" }, { "input": "tag's", "output": "â žâ â ›â „â Ž" }, { "input": "tagged", "output": "â žâ â ¶â «" }, { "input": "tagger", "output": "â žâ â ¶â »" }, { "input": "tagger's", "output": "â žâ â ¶â »â „â Ž" }, { "input": "taggers", "output": "â žâ â ¶â »â Ž" }, { "input": "tagging", "output": "â žâ â ¶â Œ" }, { "input": "tags", "output": "â žâ â ›â Ž" }, { "input": "taiga", "output": "â žâ â Šâ ›â " }, { "input": "taiga's", "output": "â žâ â Šâ ›â â „â Ž" }, { "input": "taigas", "output": "â žâ â Šâ ›â â Ž" }, { "input": "tail", "output": "â žâ â Šâ ‡" }, { "input": "tail's", "output": "â žâ â Šâ ‡â „â Ž" }, { "input": "tailcoat", "output": "â žâ â Šâ ‡â ‰â •â â ž" }, { "input": "tailcoat's", "output": "â žâ â Šâ ‡â ‰â •â â žâ „â Ž" }, { "input": "tailcoats", "output": "â žâ â Šâ ‡â ‰â •â â žâ Ž" }, { "input": "tailed", "output": "â žâ â Šâ ‡â «" }, { "input": "tailgate", "output": "â žâ â Šâ ‡â ›â â žâ ‘" }, { "input": "tailgate's", "output": "â žâ â Šâ ‡â ›â â žâ ‘â „â Ž" }, { "input": "tailgated", "output": "â žâ â Šâ ‡â ›â â žâ «" }, { "input": "tailgater", "output": "â žâ â Šâ ‡â ›â â žâ »" }, { "input": "tailgater's", "output": "â žâ â Šâ ‡â ›â â žâ »â „â Ž" }, { "input": "tailgaters", "output": "â žâ â Šâ ‡â ›â â žâ »â Ž" }, { "input": "tailgates", "output": "â žâ â Šâ ‡â ›â â žâ ‘â Ž" }, { "input": "tailgating", "output": "â žâ â Šâ ‡â ›â â žâ Œ" }, { "input": "tailing", "output": "â žâ â Šâ ‡â Œ" }, { "input": "tailless", "output": "â žâ â Šâ ‡â ¨â Ž" }, { "input": "taillight", "output": "â žâ â Šâ ‡â ‡â Šâ £â ž" }, { "input": "taillight's", "output": "â žâ â Šâ ‡â ‡â Šâ £â žâ „â Ž" }, { "input": "taillights", "output": "â žâ â Šâ ‡â ‡â Šâ £â žâ Ž" }, { "input": "tailor", "output": "â žâ â Šâ ‡â •â —" }, { "input": "tailor's", "output": "â žâ â Šâ ‡â •â —â „â Ž" }, { "input": "tailored", "output": "â žâ â Šâ ‡â •â —â «" }, { "input": "tailoring", "output": "â žâ â Šâ ‡â •â —â Œ" }, { "input": "tailoring's", "output": "â žâ â Šâ ‡â •⠗⠌⠄⠎" }, { "input": "tailors", "output": "â žâ â Šâ ‡â •â —â Ž" }, { "input": "tailpipe", "output": "â žâ â Šâ ‡â â Šâ â ‘" }, { "input": "tailpipe's", "output": "â žâ â Šâ ‡â â Šâ â ‘â „â Ž" }, { "input": "tailpipes", "output": "â žâ â Šâ ‡â â Šâ â ‘â Ž" }, { "input": "tails", "output": "â žâ â Šâ ‡â Ž" }, { "input": "tailspin", "output": "â žâ â Šâ ‡â Žâ â ”" }, { "input": "tailspin's", "output": "â žâ â Šâ ‡â Žâ â ”â „â Ž" }, { "input": "tailspins", "output": "â žâ â Šâ ‡â Žâ â ”â Ž" }, { "input": "tailwind", "output": "â žâ â Šâ ‡â ºâ ”â ™" }, { "input": "tailwind's", "output": "â žâ â Šâ ‡â ºâ ”⠙⠄⠎" }, { "input": "tailwinds", "output": "â žâ â Šâ ‡â ºâ ”⠙⠎" }, { "input": "taint", "output": "â žâ â ”â ž" }, { "input": "taint's", "output": "â žâ â ”â žâ „â Ž" }, { "input": "tainted", "output": "â žâ â ”â žâ «" }, { "input": "tainting", "output": "â žâ â ”â žâ Œ" }, { "input": "taints", "output": "â žâ â ”â žâ Ž" }, { "input": "take", "output": "â žâ â …â ‘" }, { "input": "take's", "output": "â žâ â …â ‘â „â Ž" }, { "input": "takeaways", "output": "â žâ â …â ‘â â ºâ â ½â Ž" }, { "input": "taken", "output": "â žâ â …â ¢" }, { "input": "takeoff", "output": "â žâ â …â ‘â ·â ‹" }, { "input": "takeoff's", "output": "â žâ â …â ‘â ·â ‹â „â Ž" }, { "input": "takeoffs", "output": "â žâ â …â ‘â ·â ‹â Ž" }, { "input": "takeout", "output": "â žâ â …⠑⠳⠞" }, { "input": "takeout's", "output": "â žâ â …⠑⠳⠞⠄⠎" }, { "input": "takeouts", "output": "â žâ â …⠑⠳⠞⠎" }, { "input": "takeover", "output": "â žâ â …â ‘â •â §â »" }, { "input": "takeover's", "output": "â žâ â …⠑⠕⠧⠻⠄⠎" }, { "input": "takeovers", "output": "â žâ â …⠑⠕⠧⠻⠎" }, { "input": "taker", "output": "â žâ â …â »" }, { "input": "taker's", "output": "â žâ â …⠻⠄⠎" }, { "input": "takers", "output": "â žâ â …⠻⠎" }, { "input": "takes", "output": "â žâ â …â ‘â Ž" }, { "input": "taking", "output": "â žâ â …â Œ" }, { "input": "taking's", "output": "â žâ â …⠌⠄⠎" }, { "input": "takings", "output": "â žâ â …⠌⠎" }, { "input": "takings's", "output": "â žâ â …⠌⠎⠄⠎" }, { "input": "talc", "output": "â žâ â ‡â ‰" }, { "input": "talc's", "output": "â žâ â ‡â ‰â „â Ž" }, { "input": "talcum", "output": "â žâ â ‡â ‰â ¥â " }, { "input": "talcum's", "output": "â žâ â ‡â ‰â ¥â â „â Ž" }, { "input": "tale", "output": "â žâ â ‡â ‘" }, { "input": "tale's", "output": "â žâ â ‡â ‘â „â Ž" }, { "input": "talebearer", "output": "â žâ â ‡â ‘⠃⠑⠜⠻" }, { "input": "talebearer's", "output": "â žâ â ‡â ‘⠃⠑⠜⠻⠄⠎" }, { "input": "talebearers", "output": "â žâ â ‡â ‘⠃⠑⠜⠻⠎" }, { "input": "talent", "output": "â žâ â ‡â ¢â ž" }, { "input": "talent's", "output": "â žâ â ‡â ¢â žâ „â Ž" }, { "input": "talented", "output": "â žâ â ‡â ¢â žâ «" }, { "input": "talents", "output": "â žâ â ‡â ¢â žâ Ž" }, { "input": "tales", "output": "â žâ â ‡â ‘â Ž" }, { "input": "tali", "output": "â žâ â ‡â Š" }, { "input": "talisman", "output": "â žâ â ‡â Šâ Žâ â â " }, { "input": "talisman's", "output": "â žâ â ‡â Šâ Žâ â â â „â Ž" }, { "input": "talismans", "output": "â žâ â ‡â Šâ Žâ â â â Ž" }, { "input": "talk", "output": "â žâ â ‡â …" }, { "input": "talk's", "output": "â žâ â ‡â …â „â Ž" }, { "input": "talkative", "output": "â žâ â ‡â …â â žâ Šâ §â ‘" }, { "input": "talkatively", "output": "â žâ â ‡â …â â žâ Šâ §â ‘⠇⠽" }, { "input": "talkativeness", "output": "â žâ â ‡â …â â žâ Šâ §â ‘â °â Ž" }, { "input": "talkativeness's", "output": "â žâ â ‡â …â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "talked", "output": "â žâ â ‡â …â «" }, { "input": "talker", "output": "â žâ â ‡â …â »" }, { "input": "talker's", "output": "â žâ â ‡â …⠻⠄⠎" }, { "input": "talkers", "output": "â žâ â ‡â …⠻⠎" }, { "input": "talkier", "output": "â žâ â ‡â …â Šâ »" }, { "input": "talkiest", "output": "â žâ â ‡â …â Šâ ‘â Œ" }, { "input": "talking", "output": "â žâ â ‡â …â Œ" }, { "input": "talks", "output": "â žâ â ‡â …â Ž" }, { "input": "talky", "output": "â žâ â ‡â …â ½" }, { "input": "tall", "output": "â žâ â ‡â ‡" }, { "input": "taller", "output": "â žâ â ‡â ‡â »" }, { "input": "tallest", "output": "â žâ â ‡â ‡â ‘â Œ" }, { "input": "tallied", "output": "â žâ â ‡â ‡â Šâ «" }, { "input": "tallier", "output": "â žâ â ‡â ‡â Šâ »" }, { "input": "tallier's", "output": "â žâ â ‡â ‡â Šâ »â „â Ž" }, { "input": "talliers", "output": "â žâ â ‡â ‡â Šâ »â Ž" }, { "input": "tallies", "output": "â žâ â ‡â ‡â Šâ ‘â Ž" }, { "input": "tallish", "output": "â žâ â ‡â ‡â Šâ ©" }, { "input": "tallness", "output": "â žâ â ‡â ‡â °â Ž" }, { "input": "tallness's", "output": "â žâ â ‡â ‡â °â Žâ „â Ž" }, { "input": "tallow", "output": "â žâ â ‡â ‡â ª" }, { "input": "tallow's", "output": "â žâ â ‡â ‡â ªâ „â Ž" }, { "input": "tallowy", "output": "â žâ â ‡â ‡â ªâ ½" }, { "input": "tally", "output": "â žâ  â ½" }, { "input": "tally's", "output": "⠞⠠⠽⠄⠎" }, { "input": "tallyho", "output": "⠞⠠⠽⠓⠕" }, { "input": "tallyho's", "output": "⠞⠠⠽⠓⠕⠄⠎" }, { "input": "tallyhoed", "output": "⠞⠠⠽⠓⠕⠫" }, { "input": "tallyhoing", "output": "⠞⠠⠽⠓⠕⠌" }, { "input": "tallyhos", "output": "⠞⠠⠽⠓⠕⠎" }, { "input": "tallying", "output": "⠞⠠⠽⠌" }, { "input": "talon", "output": "â žâ â ‡â •â " }, { "input": "talon's", "output": "â žâ â ‡â •â â „â Ž" }, { "input": "talons", "output": "â žâ â ‡â •â â Ž" }, { "input": "talus", "output": "â žâ â ‡â ¥â Ž" }, { "input": "talus's", "output": "â žâ â ‡â ¥â Žâ „â Ž" }, { "input": "taluses", "output": "â žâ â ‡â ¥â Žâ ‘â Ž" }, { "input": "tam", "output": "â žâ â " }, { "input": "tam's", "output": "â žâ â â „â Ž" }, { "input": "tamable", "output": "â žâ â â â ¼" }, { "input": "tamale", "output": "â žâ â â â ‡â ‘" }, { "input": "tamale's", "output": "â žâ â â â ‡â ‘â „â Ž" }, { "input": "tamales", "output": "â žâ â â â ‡â ‘â Ž" }, { "input": "tamarack", "output": "â žâ â â œâ â ‰â …" }, { "input": "tamarack's", "output": "â žâ â â œâ â ‰â …â „â Ž" }, { "input": "tamaracks", "output": "â žâ â â œâ â ‰â …â Ž" }, { "input": "tamarind", "output": "â žâ â â œâ ”â ™" }, { "input": "tamarind's", "output": "â žâ â â œâ ”⠙⠄⠎" }, { "input": "tamarinds", "output": "â žâ â â œâ ”⠙⠎" }, { "input": "tambourine", "output": "â žâ â â ƒâ ³â —⠔⠑" }, { "input": "tambourine's", "output": "â žâ â â ƒâ ³â —⠔⠑⠄⠎" }, { "input": "tambourines", "output": "â žâ â â ƒâ ³â —⠔⠑⠎" }, { "input": "tame", "output": "â žâ â â ‘" }, { "input": "tamed", "output": "â žâ â â «" }, { "input": "tamely", "output": "â žâ â â ‘⠇⠽" }, { "input": "tameness", "output": "â žâ â â ‘â °â Ž" }, { "input": "tameness's", "output": "â žâ â â ‘â °â Žâ „â Ž" }, { "input": "tamer", "output": "â žâ â â »" }, { "input": "tamer's", "output": "â žâ â â »â „â Ž" }, { "input": "tamers", "output": "â žâ â â »â Ž" }, { "input": "tames", "output": "â žâ â â ‘â Ž" }, { "input": "tamest", "output": "â žâ â â ‘â Œ" }, { "input": "taming", "output": "â žâ â â Œ" }, { "input": "tamp", "output": "â žâ â â " }, { "input": "tamped", "output": "â žâ â â â «" }, { "input": "tamper", "output": "â žâ â â â »" }, { "input": "tampered", "output": "â žâ â â â »â «" }, { "input": "tamperer", "output": "â žâ â â â »â »" }, { "input": "tamperer's", "output": "â žâ â â â »â »â „â Ž" }, { "input": "tamperers", "output": "â žâ â â â »â »â Ž" }, { "input": "tampering", "output": "â žâ â â â »â Œ" }, { "input": "tampers", "output": "â žâ â â â »â Ž" }, { "input": "tamping", "output": "â žâ â â â Œ" }, { "input": "tampon", "output": "â žâ â â â •â " }, { "input": "tampon's", "output": "â žâ â â â •â â „â Ž" }, { "input": "tampons", "output": "â žâ â â â •â â Ž" }, { "input": "tamps", "output": "â žâ â â â Ž" }, { "input": "tams", "output": "â žâ â â Ž" }, { "input": "tan", "output": "â žâ â " }, { "input": "tan's", "output": "â žâ â â „â Ž" }, { "input": "tanager", "output": "â žâ â â â ›â »" }, { "input": "tanager's", "output": "â žâ â â â ›â »â „â Ž" }, { "input": "tanagers", "output": "â žâ â â â ›â »â Ž" }, { "input": "tanbark", "output": "â žâ â â ƒâ œâ …" }, { "input": "tanbark's", "output": "â žâ â â ƒâ œâ …â „â Ž" }, { "input": "tandem", "output": "⠞⠯⠑â " }, { "input": "tandem's", "output": "⠞⠯⠑â â „â Ž" }, { "input": "tandems", "output": "⠞⠯⠑â â Ž" }, { "input": "tandoori's", "output": "⠞⠯⠕⠕⠗⠊⠄⠎" }, { "input": "tang", "output": "â žâ â â ›" }, { "input": "tang's", "output": "â žâ â â ›â „â Ž" }, { "input": "tangelo", "output": "â žâ â â ›â ‘⠇⠕" }, { "input": "tangelo's", "output": "â žâ â â ›â ‘⠇⠕⠄⠎" }, { "input": "tangelos", "output": "â žâ â â ›â ‘⠇⠕⠎" }, { "input": "tangent", "output": "â žâ â â ›â ¢â ž" }, { "input": "tangent's", "output": "â žâ â â ›â ¢â žâ „â Ž" }, { "input": "tangential", "output": "â žâ â â ›â ¢â žâ Šâ â ‡" }, { "input": "tangentially", "output": "â žâ â â ›â ¢â žâ Šâ  â ½" }, { "input": "tangents", "output": "â žâ â â ›â ¢â žâ Ž" }, { "input": "tangerine", "output": "â žâ â â ›â »â ”â ‘" }, { "input": "tangerine's", "output": "â žâ â â ›â »â ”â ‘â „â Ž" }, { "input": "tangerines", "output": "â žâ â â ›â »â ”â ‘â Ž" }, { "input": "tangibility", "output": "â žâ â â ›â Šâ ƒâ Šâ ‡â °â ½" }, { "input": "tangibility's", "output": "â žâ â â ›â Šâ ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "tangible", "output": "â žâ â â ›â Šâ ¼" }, { "input": "tangible's", "output": "â žâ â â ›â Šâ ¼â „â Ž" }, { "input": "tangibleness", "output": "â žâ â â ›â Šâ ¼â °â Ž" }, { "input": "tangibleness's", "output": "â žâ â â ›â Šâ ¼â °â Žâ „â Ž" }, { "input": "tangibles", "output": "â žâ â â ›â Šâ ¼â Ž" }, { "input": "tangibly", "output": "â žâ â â ›â Šâ ƒâ ‡â ½" }, { "input": "tangier", "output": "â žâ â â ›â Šâ »" }, { "input": "tangiest", "output": "â žâ â â ›â Šâ ‘â Œ" }, { "input": "tangle", "output": "â žâ â â ›â ‡â ‘" }, { "input": "tangle's", "output": "â žâ â â ›â ‡â ‘â „â Ž" }, { "input": "tangled", "output": "â žâ â â ›â ‡â «" }, { "input": "tangles", "output": "â žâ â â ›â ‡â ‘â Ž" }, { "input": "tangling", "output": "â žâ â â ›â ‡â Œ" }, { "input": "tango", "output": "â žâ â â ›â •" }, { "input": "tango's", "output": "â žâ â â ›â •â „â Ž" }, { "input": "tangoed", "output": "â žâ â â ›â •â «" }, { "input": "tangoing", "output": "â žâ â â ›â •â Œ" }, { "input": "tangos", "output": "â žâ â â ›â •â Ž" }, { "input": "tangs", "output": "â žâ â â ›â Ž" }, { "input": "tangy", "output": "â žâ â â ›â ½" }, { "input": "tank", "output": "â žâ â â …" }, { "input": "tank's", "output": "â žâ â â …â „â Ž" }, { "input": "tankard", "output": "â žâ â â …⠜⠙" }, { "input": "tankard's", "output": "â žâ â â …⠜⠙⠄⠎" }, { "input": "tankards", "output": "â žâ â â …⠜⠙⠎" }, { "input": "tanked", "output": "â žâ â â …â «" }, { "input": "tanker", "output": "â žâ â â …â »" }, { "input": "tanker's", "output": "â žâ â â …⠻⠄⠎" }, { "input": "tankers", "output": "â žâ â â …⠻⠎" }, { "input": "tankful", "output": "â žâ â â …â °â ‡" }, { "input": "tankful's", "output": "â žâ â â …⠰⠇⠄⠎" }, { "input": "tankfuls", "output": "â žâ â â …⠰⠇⠎" }, { "input": "tanking", "output": "â žâ â â …â Œ" }, { "input": "tanks", "output": "â žâ â â …â Ž" }, { "input": "tanned", "output": "â žâ â â â «" }, { "input": "tanner", "output": "â žâ â â â »" }, { "input": "tanner's", "output": "â žâ â â â »â „â Ž" }, { "input": "tanneries", "output": "â žâ â â â »â Šâ ‘â Ž" }, { "input": "tanners", "output": "â žâ â â â »â Ž" }, { "input": "tannery", "output": "â žâ â â â »â ½" }, { "input": "tannery's", "output": "â žâ â â â »â ½â „â Ž" }, { "input": "tannest", "output": "â žâ â â â ‘â Œ" }, { "input": "tannin", "output": "â žâ â â â ”" }, { "input": "tannin's", "output": "â žâ â â â ”â „â Ž" }, { "input": "tanning", "output": "â žâ â â â Œ" }, { "input": "tanning's", "output": "â žâ â â â Œâ „â Ž" }, { "input": "tans", "output": "â žâ â â Ž" }, { "input": "tansy", "output": "â žâ â â Žâ ½" }, { "input": "tansy's", "output": "â žâ â â Žâ ½â „â Ž" }, { "input": "tantalization", "output": "â žâ â â žâ â ‡â Šâ µâ  â " }, { "input": "tantalization's", "output": "â žâ â â žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "tantalize", "output": "â žâ â â žâ â ‡â Šâ µâ ‘" }, { "input": "tantalized", "output": "â žâ â â žâ â ‡â Šâ µâ «" }, { "input": "tantalizer", "output": "â žâ â â žâ â ‡â Šâ µâ »" }, { "input": "tantalizer's", "output": "â žâ â â žâ â ‡â Šâ µâ »â „â Ž" }, { "input": "tantalizers", "output": "â žâ â â žâ â ‡â Šâ µâ »â Ž" }, { "input": "tantalizes", "output": "â žâ â â žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "tantalizing", "output": "â žâ â â žâ â ‡â Šâ µâ Œ" }, { "input": "tantalizingly", "output": "â žâ â â žâ â ‡â Šâ µâ Œâ ‡â ½" }, { "input": "tantalum", "output": "â žâ â â žâ â ‡â ¥â " }, { "input": "tantalum's", "output": "â žâ â â žâ â ‡â ¥â â „â Ž" }, { "input": "tantamount", "output": "â žâ â â žâ â â ¨â ž" }, { "input": "tantra", "output": "â žâ â â žâ —â " }, { "input": "tantra's", "output": "â žâ â â žâ —â â „â Ž" }, { "input": "tantrum", "output": "â žâ â â žâ —â ¥â " }, { "input": "tantrum's", "output": "â žâ â â žâ —â ¥â â „â Ž" }, { "input": "tantrums", "output": "â žâ â â žâ —â ¥â â Ž" }, { "input": "tap", "output": "â žâ â " }, { "input": "tap's", "output": "â žâ â â „â Ž" }, { "input": "tape", "output": "â žâ â â ‘" }, { "input": "tape's", "output": "â žâ â â ‘â „â Ž" }, { "input": "taped", "output": "â žâ â â «" }, { "input": "tapeline", "output": "â žâ â â ‘⠇⠔⠑" }, { "input": "tapeline's", "output": "â žâ â â ‘⠇⠔⠑⠄⠎" }, { "input": "tapelines", "output": "â žâ â â ‘⠇⠔⠑⠎" }, { "input": "taper", "output": "â žâ â â »" }, { "input": "taper's", "output": "â žâ â â »â „â Ž" }, { "input": "tapered", "output": "â žâ â â »â «" }, { "input": "tapering", "output": "â žâ â â »â Œ" }, { "input": "tapers", "output": "â žâ â â »â Ž" }, { "input": "tapes", "output": "â žâ â â ‘â Ž" }, { "input": "tapestries", "output": "â žâ â â ‘⠌⠗⠊⠑⠎" }, { "input": "tapestry", "output": "â žâ â â ‘⠌⠗⠽" }, { "input": "tapestry's", "output": "â žâ â â ‘⠌⠗⠽⠄⠎" }, { "input": "tapeworm", "output": "â žâ â â ‘⠺⠕⠗â " }, { "input": "tapeworm's", "output": "â žâ â â ‘⠺⠕⠗â â „â Ž" }, { "input": "tapeworms", "output": "â žâ â â ‘⠺⠕⠗â â Ž" }, { "input": "taping", "output": "â žâ â â Œ" }, { "input": "tapioca", "output": "â žâ â â Šâ •â ‰â " }, { "input": "tapioca's", "output": "â žâ â â Šâ •â ‰â â „â Ž" }, { "input": "tapir", "output": "â žâ â â Šâ —" }, { "input": "tapir's", "output": "â žâ â â Šâ —â „â Ž" }, { "input": "tapirs", "output": "â žâ â â Šâ —â Ž" }, { "input": "tapped", "output": "â žâ â â â «" }, { "input": "tapper", "output": "â žâ â â â »" }, { "input": "tapper's", "output": "â žâ â â â »â „â Ž" }, { "input": "tappers", "output": "â žâ â â â »â Ž" }, { "input": "tapping", "output": "â žâ â â â Œ" }, { "input": "taproom", "output": "â žâ â â —â •â •â " }, { "input": "taproom's", "output": "â žâ â â —â •â •â â „â Ž" }, { "input": "taprooms", "output": "â žâ â â —â •â •â â Ž" }, { "input": "taproot", "output": "â žâ â â —â •â •â ž" }, { "input": "taproot's", "output": "â žâ â â —â •â •â žâ „â Ž" }, { "input": "taproots", "output": "â žâ â â —â •â •â žâ Ž" }, { "input": "taps", "output": "â žâ â â Ž" }, { "input": "tar", "output": "â žâ œ" }, { "input": "tar's", "output": "⠞⠜⠄⠎" }, { "input": "tarantella", "output": "â žâ œâ â â žâ ‘⠇⠇â " }, { "input": "tarantella's", "output": "â žâ œâ â â žâ ‘⠇⠇â â „â Ž" }, { "input": "tarantellas", "output": "â žâ œâ â â žâ ‘⠇⠇â â Ž" }, { "input": "tarantula", "output": "â žâ œâ â â žâ ¥â ‡â " }, { "input": "tarantula's", "output": "â žâ œâ â â žâ ¥â ‡â â „â Ž" }, { "input": "tarantulas", "output": "â žâ œâ â â žâ ¥â ‡â â Ž" }, { "input": "tardier", "output": "⠞⠜⠙⠊⠻" }, { "input": "tardiest", "output": "⠞⠜⠙⠊⠑⠌" }, { "input": "tardily", "output": "⠞⠜⠙⠊⠇⠽" }, { "input": "tardiness", "output": "⠞⠜⠙⠊⠰⠎" }, { "input": "tardiness's", "output": "⠞⠜⠙⠊⠰⠎⠄⠎" }, { "input": "tardy", "output": "⠞⠜⠙⠽" }, { "input": "tare", "output": "⠞⠜⠑" }, { "input": "tare's", "output": "⠞⠜⠑⠄⠎" }, { "input": "tared", "output": "⠞⠜⠫" }, { "input": "tares", "output": "⠞⠜⠑⠎" }, { "input": "target", "output": "⠞⠜⠛⠑⠞" }, { "input": "target's", "output": "⠞⠜⠛⠑⠞⠄⠎" }, { "input": "targeted", "output": "⠞⠜⠛⠑⠞⠫" }, { "input": "targeting", "output": "⠞⠜⠛⠑⠞⠌" }, { "input": "targets", "output": "⠞⠜⠛⠑⠞⠎" }, { "input": "tariff", "output": "⠞⠜⠊⠋⠋" }, { "input": "tariff's", "output": "⠞⠜⠊⠋⠋⠄⠎" }, { "input": "tariffs", "output": "⠞⠜⠊⠖⠎" }, { "input": "taring", "output": "⠞⠜⠌" }, { "input": "tarmac", "output": "â žâ œâ â â ‰" }, { "input": "tarmac's", "output": "â žâ œâ â â ‰â „â Ž" }, { "input": "tarmacked", "output": "â žâ œâ â â ‰â …â «" }, { "input": "tarmacking", "output": "â žâ œâ â â ‰â …â Œ" }, { "input": "tarmacs", "output": "â žâ œâ â â ‰â Ž" }, { "input": "tarnish", "output": "â žâ œâ â Šâ ©" }, { "input": "tarnish's", "output": "â žâ œâ â Šâ ©â „â Ž" }, { "input": "tarnished", "output": "â žâ œâ â Šâ ©â «" }, { "input": "tarnishes", "output": "â žâ œâ â Šâ ©â ‘â Ž" }, { "input": "tarnishing", "output": "â žâ œâ â Šâ ©â Œ" }, { "input": "taro", "output": "⠞⠜⠕" }, { "input": "taro's", "output": "⠞⠜⠕⠄⠎" }, { "input": "taros", "output": "⠞⠜⠕⠎" }, { "input": "tarot", "output": "⠞⠜⠕⠞" }, { "input": "tarot's", "output": "⠞⠜⠕⠞⠄⠎" }, { "input": "tarots", "output": "⠞⠜⠕⠞⠎" }, { "input": "tarp", "output": "â žâ œâ " }, { "input": "tarp's", "output": "â žâ œâ â „â Ž" }, { "input": "tarpaulin", "output": "â žâ œâ â â ¥â ‡â ”" }, { "input": "tarpaulin's", "output": "â žâ œâ â â ¥â ‡â ”â „â Ž" }, { "input": "tarpaulins", "output": "â žâ œâ â â ¥â ‡â ”â Ž" }, { "input": "tarpon", "output": "â žâ œâ â •â " }, { "input": "tarpon's", "output": "â žâ œâ â •â â „â Ž" }, { "input": "tarpons", "output": "â žâ œâ â •â â Ž" }, { "input": "tarps", "output": "â žâ œâ â Ž" }, { "input": "tarragon", "output": "⠞⠜⠗â â ›â •â " }, { "input": "tarragon's", "output": "⠞⠜⠗â â ›â •â â „â Ž" }, { "input": "tarragons", "output": "⠞⠜⠗â â ›â •â â Ž" }, { "input": "tarred", "output": "⠞⠜⠗⠫" }, { "input": "tarried", "output": "⠞⠜⠗⠊⠫" }, { "input": "tarrier", "output": "⠞⠜⠗⠊⠻" }, { "input": "tarries", "output": "⠞⠜⠗⠊⠑⠎" }, { "input": "tarriest", "output": "⠞⠜⠗⠊⠑⠌" }, { "input": "tarring", "output": "⠞⠜⠗⠌" }, { "input": "tarry", "output": "⠞⠜⠗⠽" }, { "input": "tarrying", "output": "⠞⠜⠗⠽⠌" }, { "input": "tars", "output": "⠞⠜⠎" }, { "input": "tarsal", "output": "⠞⠜⠎â â ‡" }, { "input": "tarsal's", "output": "⠞⠜⠎â â ‡â „â Ž" }, { "input": "tarsals", "output": "⠞⠜⠎â â ‡â Ž" }, { "input": "tarsi", "output": "⠞⠜⠎⠊" }, { "input": "tarsus", "output": "⠞⠜⠎⠥⠎" }, { "input": "tarsus's", "output": "⠞⠜⠎⠥⠎⠄⠎" }, { "input": "tart", "output": "⠞⠜⠞" }, { "input": "tart's", "output": "⠞⠜⠞⠄⠎" }, { "input": "tartan", "output": "⠞⠜⠞â â " }, { "input": "tartan's", "output": "⠞⠜⠞â â â „â Ž" }, { "input": "tartans", "output": "⠞⠜⠞â â â Ž" }, { "input": "tartar", "output": "⠞⠜⠞⠜" }, { "input": "tartar's", "output": "⠞⠜⠞⠜⠄⠎" }, { "input": "tartaric", "output": "⠞⠜⠞⠜⠊⠉" }, { "input": "tartars", "output": "⠞⠜⠞⠜⠎" }, { "input": "tarter", "output": "⠞⠜⠞⠻" }, { "input": "tartest", "output": "⠞⠜⠞⠑⠌" }, { "input": "tartly", "output": "⠞⠜⠞⠇⠽" }, { "input": "tartness", "output": "⠞⠜⠞⠰⠎" }, { "input": "tartness's", "output": "⠞⠜⠞⠰⠎⠄⠎" }, { "input": "tarts", "output": "⠞⠜⠞⠎" }, { "input": "task", "output": "â žâ â Žâ …" }, { "input": "task's", "output": "â žâ â Žâ …â „â Ž" }, { "input": "tasked", "output": "â žâ â Žâ …â «" }, { "input": "tasking", "output": "â žâ â Žâ …â Œ" }, { "input": "taskmaster", "output": "â žâ â Žâ …â â â Œâ »" }, { "input": "taskmaster's", "output": "â žâ â Žâ …â â â Œâ »â „â Ž" }, { "input": "taskmasters", "output": "â žâ â Žâ …â â â Œâ »â Ž" }, { "input": "taskmistress", "output": "â žâ â Žâ …â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "taskmistress's", "output": "â žâ â Žâ …â â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "taskmistresses", "output": "â žâ â Žâ …â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "tasks", "output": "â žâ â Žâ …â Ž" }, { "input": "tassel", "output": "â žâ â Žâ Žâ ‘â ‡" }, { "input": "tassel's", "output": "â žâ â Žâ Žâ ‘⠇⠄⠎" }, { "input": "tasseled", "output": "â žâ â Žâ Žâ ‘⠇⠫" }, { "input": "tasseling", "output": "â žâ â Žâ Žâ ‘⠇⠌" }, { "input": "tassels", "output": "â žâ â Žâ Žâ ‘⠇⠎" }, { "input": "taste", "output": "â žâ â Œâ ‘" }, { "input": "taste's", "output": "â žâ â Œâ ‘â „â Ž" }, { "input": "tasted", "output": "â žâ â Œâ «" }, { "input": "tasteful", "output": "â žâ â Œâ ‘â °â ‡" }, { "input": "tastefully", "output": "â žâ â Œâ ‘⠰⠇⠇⠽" }, { "input": "tastefulness", "output": "â žâ â Œâ ‘⠰⠇⠰⠎" }, { "input": "tastefulness's", "output": "â žâ â Œâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "tasteless", "output": "â žâ â Œâ ‘⠨⠎" }, { "input": "tastelessly", "output": "â žâ â Œâ ‘⠨⠎⠇⠽" }, { "input": "tastelessness", "output": "â žâ â Œâ ‘⠨⠎⠰⠎" }, { "input": "tastelessness's", "output": "â žâ â Œâ ‘⠨⠎⠰⠎⠄⠎" }, { "input": "taster", "output": "â žâ â Œâ »" }, { "input": "taster's", "output": "â žâ â Œâ »â „â Ž" }, { "input": "tasters", "output": "â žâ â Œâ »â Ž" }, { "input": "tastes", "output": "â žâ â Œâ ‘â Ž" }, { "input": "tastier", "output": "â žâ â Œâ Šâ »" }, { "input": "tastiest", "output": "â žâ â Œâ Šâ ‘â Œ" }, { "input": "tastily", "output": "â žâ â Œâ Šâ ‡â ½" }, { "input": "tastiness", "output": "â žâ â Œâ Šâ °â Ž" }, { "input": "tastiness's", "output": "â žâ â Œâ Šâ °â Žâ „â Ž" }, { "input": "tasting", "output": "â žâ â Œâ Œ" }, { "input": "tasty", "output": "â žâ â Œâ ½" }, { "input": "tat", "output": "â žâ â ž" }, { "input": "tatami", "output": "â žâ â žâ â â Š" }, { "input": "tatami's", "output": "â žâ â žâ â â Šâ „â Ž" }, { "input": "tatamis", "output": "â žâ â žâ â â Šâ Ž" }, { "input": "tats", "output": "â žâ â žâ Ž" }, { "input": "tatted", "output": "â žâ â žâ žâ «" }, { "input": "tatter", "output": "â žâ â žâ žâ »" }, { "input": "tatter's", "output": "â žâ â žâ žâ »â „â Ž" }, { "input": "tatterdemalion", "output": "â žâ â žâ žâ »â ™â ‘â â â ‡â Šâ •â " }, { "input": "tatterdemalion's", "output": "â žâ â žâ žâ »â ™â ‘â â â ‡â Šâ •â â „â Ž" }, { "input": "tatterdemalions", "output": "â žâ â žâ žâ »â ™â ‘â â â ‡â Šâ •â â Ž" }, { "input": "tattered", "output": "â žâ â žâ žâ »â «" }, { "input": "tattering", "output": "â žâ â žâ žâ »â Œ" }, { "input": "tatters", "output": "â žâ â žâ žâ »â Ž" }, { "input": "tatting", "output": "â žâ â žâ žâ Œ" }, { "input": "tatting's", "output": "â žâ â žâ žâ Œâ „â Ž" }, { "input": "tattle", "output": "â žâ â žâ žâ ‡â ‘" }, { "input": "tattle's", "output": "â žâ â žâ žâ ‡â ‘â „â Ž" }, { "input": "tattled", "output": "â žâ â žâ žâ ‡â «" }, { "input": "tattler", "output": "â žâ â žâ žâ ‡â »" }, { "input": "tattler's", "output": "â žâ â žâ žâ ‡â »â „â Ž" }, { "input": "tattlers", "output": "â žâ â žâ žâ ‡â »â Ž" }, { "input": "tattles", "output": "â žâ â žâ žâ ‡â ‘â Ž" }, { "input": "tattletale", "output": "â žâ â žâ žâ ‡â ‘â žâ â ‡â ‘" }, { "input": "tattletale's", "output": "â žâ â žâ žâ ‡â ‘â žâ â ‡â ‘â „â Ž" }, { "input": "tattletales", "output": "â žâ â žâ žâ ‡â ‘â žâ â ‡â ‘â Ž" }, { "input": "tattling", "output": "â žâ â žâ žâ ‡â Œ" }, { "input": "tattoo", "output": "â žâ â žâ žâ •â •" }, { "input": "tattoo's", "output": "â žâ â žâ žâ •â •â „â Ž" }, { "input": "tattooed", "output": "â žâ â žâ žâ •â •â «" }, { "input": "tattooer", "output": "â žâ â žâ žâ •â •â »" }, { "input": "tattooer's", "output": "â žâ â žâ žâ •⠕⠻⠄⠎" }, { "input": "tattooers", "output": "â žâ â žâ žâ •⠕⠻⠎" }, { "input": "tattooing", "output": "â žâ â žâ žâ •â •â Œ" }, { "input": "tattooist", "output": "â žâ â žâ žâ •â •â Šâ Œ" }, { "input": "tattooist's", "output": "â žâ â žâ žâ •⠕⠊⠌⠄⠎" }, { "input": "tattooists", "output": "â žâ â žâ žâ •⠕⠊⠌⠎" }, { "input": "tattoos", "output": "â žâ â žâ žâ •â •â Ž" }, { "input": "tatty", "output": "â žâ â žâ žâ ½" }, { "input": "tau", "output": "â žâ â ¥" }, { "input": "tau's", "output": "â žâ â ¥â „â Ž" }, { "input": "taught", "output": "â žâ â ¥â £â ž" }, { "input": "taunt", "output": "â žâ â ¥â â ž" }, { "input": "taunt's", "output": "â žâ â ¥â â žâ „â Ž" }, { "input": "taunted", "output": "â žâ â ¥â â žâ «" }, { "input": "taunter", "output": "â žâ â ¥â â žâ »" }, { "input": "taunter's", "output": "â žâ â ¥â â žâ »â „â Ž" }, { "input": "taunters", "output": "â žâ â ¥â â žâ »â Ž" }, { "input": "taunting", "output": "â žâ â ¥â â žâ Œ" }, { "input": "tauntingly", "output": "â žâ â ¥â â žâ Œâ ‡â ½" }, { "input": "taunts", "output": "â žâ â ¥â â žâ Ž" }, { "input": "taupe", "output": "â žâ â ¥â â ‘" }, { "input": "taupe's", "output": "â žâ â ¥â â ‘â „â Ž" }, { "input": "taus", "output": "â žâ â ¥â Ž" }, { "input": "taut", "output": "â žâ â ¥â ž" }, { "input": "tauter", "output": "â žâ â ¥â žâ »" }, { "input": "tautest", "output": "â žâ â ¥â žâ ‘â Œ" }, { "input": "tautly", "output": "â žâ â ¥â žâ ‡â ½" }, { "input": "tautness", "output": "â žâ â ¥â žâ °â Ž" }, { "input": "tautness's", "output": "â žâ â ¥â žâ °â Žâ „â Ž" }, { "input": "tautological", "output": "â žâ â ¥â žâ •⠇⠕⠛⠊⠉â â ‡" }, { "input": "tautologies", "output": "â žâ â ¥â žâ •⠇⠕⠛⠊⠑⠎" }, { "input": "tautologous", "output": "â žâ â ¥â žâ •⠇⠕⠛⠳⠎" }, { "input": "tautology", "output": "â žâ â ¥â žâ •⠇⠕⠛⠽" }, { "input": "tautology's", "output": "â žâ â ¥â žâ •⠇⠕⠛⠽⠄⠎" }, { "input": "tavern", "output": "â žâ â §â »â " }, { "input": "tavern's", "output": "â žâ â §â »â â „â Ž" }, { "input": "taverns", "output": "â žâ â §â »â â Ž" }, { "input": "tawdrier", "output": "â žâ â ºâ ™â —â Šâ »" }, { "input": "tawdriest", "output": "â žâ â ºâ ™â —â Šâ ‘â Œ" }, { "input": "tawdrily", "output": "â žâ â ºâ ™â —⠊⠇⠽" }, { "input": "tawdriness", "output": "â žâ â ºâ ™â —â Šâ °â Ž" }, { "input": "tawdriness's", "output": "â žâ â ºâ ™â —â Šâ °â Žâ „â Ž" }, { "input": "tawdry", "output": "â žâ â ºâ ™â —â ½" }, { "input": "tawnier", "output": "â žâ â ºâ â Šâ »" }, { "input": "tawniest", "output": "â žâ â ºâ â Šâ ‘â Œ" }, { "input": "tawny", "output": "â žâ â ºâ â ½" }, { "input": "tawny's", "output": "â žâ â ºâ â ½â „â Ž" }, { "input": "tax", "output": "â žâ â ­" }, { "input": "tax's", "output": "â žâ â ­â „â Ž" }, { "input": "taxable", "output": "â žâ â ­â â ¼" }, { "input": "taxation", "output": "â žâ â ­â  â " }, { "input": "taxation's", "output": "â žâ â ­â  â â „â Ž" }, { "input": "taxed", "output": "â žâ â ­â «" }, { "input": "taxer", "output": "â žâ â ­â »" }, { "input": "taxer's", "output": "â žâ â ­â »â „â Ž" }, { "input": "taxers", "output": "â žâ â ­â »â Ž" }, { "input": "taxes", "output": "â žâ â ­â ‘â Ž" }, { "input": "taxi", "output": "â žâ â ­â Š" }, { "input": "taxi's", "output": "â žâ â ­â Šâ „â Ž" }, { "input": "taxicab", "output": "â žâ â ­â Šâ ‰â â ƒ" }, { "input": "taxicab's", "output": "â žâ â ­â Šâ ‰â â ƒâ „â Ž" }, { "input": "taxicabs", "output": "â žâ â ­â Šâ ‰â â ƒâ Ž" }, { "input": "taxidermist", "output": "â žâ â ­â Šâ ™â »â â Šâ Œ" }, { "input": "taxidermist's", "output": "â žâ â ­â Šâ ™â »â â Šâ Œâ „â Ž" }, { "input": "taxidermists", "output": "â žâ â ­â Šâ ™â »â â Šâ Œâ Ž" }, { "input": "taxidermy", "output": "â žâ â ­â Šâ ™â »â â ½" }, { "input": "taxidermy's", "output": "â žâ â ­â Šâ ™â »â â ½â „â Ž" }, { "input": "taxied", "output": "â žâ â ­â Šâ «" }, { "input": "taxiing", "output": "â žâ â ­â Šâ Œ" }, { "input": "taximeter", "output": "â žâ â ­â Šâ â ‘â žâ »" }, { "input": "taximeter's", "output": "â žâ â ­â Šâ â ‘⠞⠻⠄⠎" }, { "input": "taximeters", "output": "â žâ â ­â Šâ â ‘⠞⠻⠎" }, { "input": "taxing", "output": "â žâ â ­â Œ" }, { "input": "taxis", "output": "â žâ â ­â Šâ Ž" }, { "input": "taxonomic", "output": "â žâ â ­â •â â •â â Šâ ‰" }, { "input": "taxonomies", "output": "â žâ â ­â •â â •â â Šâ ‘â Ž" }, { "input": "taxonomist", "output": "â žâ â ­â •â â •â â Šâ Œ" }, { "input": "taxonomist's", "output": "â žâ â ­â •â â •â â Šâ Œâ „â Ž" }, { "input": "taxonomists", "output": "â žâ â ­â •â â •â â Šâ Œâ Ž" }, { "input": "taxonomy", "output": "â žâ â ­â •â â •â â ½" }, { "input": "taxonomy's", "output": "â žâ â ­â •â â •â â ½â „â Ž" }, { "input": "taxpayer", "output": "â žâ â ­â â â ½â »" }, { "input": "taxpayer's", "output": "â žâ â ­â â â ½â »â „â Ž" }, { "input": "taxpayers", "output": "â žâ â ­â â â ½â »â Ž" }, { "input": "taxpaying", "output": "â žâ â ­â â â ½â Œ" }, { "input": "tea", "output": "â žâ ‘â " }, { "input": "tea's", "output": "â žâ ‘â â „â Ž" }, { "input": "teabag", "output": "â žâ ‚â ƒâ â ›" }, { "input": "teach", "output": "â žâ ‚â ¡" }, { "input": "teachable", "output": "â žâ ‚â ¡â â ¼" }, { "input": "teacher", "output": "â žâ ‚â ¡â »" }, { "input": "teacher's", "output": "⠞⠂⠡⠻⠄⠎" }, { "input": "teachers", "output": "⠞⠂⠡⠻⠎" }, { "input": "teaches", "output": "â žâ ‚â ¡â ‘â Ž" }, { "input": "teaching", "output": "â žâ ‚â ¡â Œ" }, { "input": "teaching's", "output": "⠞⠂⠡⠌⠄⠎" }, { "input": "teachings", "output": "⠞⠂⠡⠌⠎" }, { "input": "teacup", "output": "⠞⠂⠉⠥â " }, { "input": "teacup's", "output": "⠞⠂⠉⠥â â „â Ž" }, { "input": "teacupful", "output": "⠞⠂⠉⠥â â °â ‡" }, { "input": "teacupful's", "output": "⠞⠂⠉⠥â â °â ‡â „â Ž" }, { "input": "teacupfuls", "output": "⠞⠂⠉⠥â â °â ‡â Ž" }, { "input": "teacups", "output": "⠞⠂⠉⠥â â Ž" }, { "input": "teak", "output": "â žâ ‚â …" }, { "input": "teak's", "output": "â žâ ‚â …â „â Ž" }, { "input": "teakettle", "output": "⠞⠂⠅⠑⠞⠞⠇⠑" }, { "input": "teakettle's", "output": "⠞⠂⠅⠑⠞⠞⠇⠑⠄⠎" }, { "input": "teakettles", "output": "⠞⠂⠅⠑⠞⠞⠇⠑⠎" }, { "input": "teaks", "output": "â žâ ‚â …â Ž" }, { "input": "teal", "output": "â žâ ‚â ‡" }, { "input": "teal's", "output": "⠞⠂⠇⠄⠎" }, { "input": "teals", "output": "⠞⠂⠇⠎" }, { "input": "team", "output": "â žâ ‚â " }, { "input": "team's", "output": "â žâ ‚â â „â Ž" }, { "input": "teamed", "output": "â žâ ‚â â «" }, { "input": "teaming", "output": "â žâ ‚â â Œ" }, { "input": "teammate", "output": "â žâ ‚â â â â žâ ‘" }, { "input": "teammate's", "output": "â žâ ‚â â â â žâ ‘â „â Ž" }, { "input": "teammates", "output": "â žâ ‚â â â â žâ ‘â Ž" }, { "input": "teams", "output": "â žâ ‚â â Ž" }, { "input": "teamster", "output": "â žâ ‚â â Œâ »" }, { "input": "teamster's", "output": "â žâ ‚â â Œâ »â „â Ž" }, { "input": "teamsters", "output": "â žâ ‚â â Œâ »â Ž" }, { "input": "teamwork", "output": "â žâ ‚â â â º" }, { "input": "teamwork's", "output": "â žâ ‚â â â ºâ „â Ž" }, { "input": "teapot", "output": "â žâ ‚â â •â ž" }, { "input": "teapot's", "output": "â žâ ‚â â •â žâ „â Ž" }, { "input": "teapots", "output": "â žâ ‚â â •â žâ Ž" }, { "input": "tear", "output": "â žâ ‘â œ" }, { "input": "tear's", "output": "⠞⠑⠜⠄⠎" }, { "input": "teardrop", "output": "⠞⠑⠜⠙⠗⠕â " }, { "input": "teardrop's", "output": "⠞⠑⠜⠙⠗⠕â â „â Ž" }, { "input": "teardrops", "output": "⠞⠑⠜⠙⠗⠕â â Ž" }, { "input": "teared", "output": "⠞⠑⠜⠫" }, { "input": "tearful", "output": "⠞⠑⠜⠰⠇" }, { "input": "tearfully", "output": "⠞⠑⠜⠰⠇⠇⠽" }, { "input": "teargas", "output": "⠞⠑⠜⠛â â Ž" }, { "input": "teargas's", "output": "⠞⠑⠜⠛â â Žâ „â Ž" }, { "input": "teargases", "output": "⠞⠑⠜⠛â â Žâ ‘â Ž" }, { "input": "teargassed", "output": "⠞⠑⠜⠛â â Žâ Žâ «" }, { "input": "teargassing", "output": "⠞⠑⠜⠛â â Žâ Žâ Œ" }, { "input": "tearier", "output": "⠞⠑⠜⠊⠻" }, { "input": "teariest", "output": "⠞⠑⠜⠊⠑⠌" }, { "input": "tearing", "output": "⠞⠑⠜⠌" }, { "input": "tearjerker", "output": "⠞⠑⠜⠚⠻⠅⠻" }, { "input": "tearjerker's", "output": "⠞⠑⠜⠚⠻⠅⠻⠄⠎" }, { "input": "tearjerkers", "output": "⠞⠑⠜⠚⠻⠅⠻⠎" }, { "input": "tearoom", "output": "â žâ ‚â —â •â •â " }, { "input": "tearoom's", "output": "â žâ ‚â —â •â •â â „â Ž" }, { "input": "tearooms", "output": "â žâ ‚â —â •â •â â Ž" }, { "input": "tears", "output": "⠞⠑⠜⠎" }, { "input": "teary", "output": "⠞⠑⠜⠽" }, { "input": "teas", "output": "â žâ ‚â Ž" }, { "input": "tease", "output": "â žâ ‚â Žâ ‘" }, { "input": "tease's", "output": "â žâ ‚â Žâ ‘â „â Ž" }, { "input": "teased", "output": "â žâ ‚â Žâ «" }, { "input": "teasel", "output": "â žâ ‚â Žâ ‘â ‡" }, { "input": "teasel's", "output": "⠞⠂⠎⠑⠇⠄⠎" }, { "input": "teasels", "output": "⠞⠂⠎⠑⠇⠎" }, { "input": "teaser", "output": "â žâ ‚â Žâ »" }, { "input": "teaser's", "output": "⠞⠂⠎⠻⠄⠎" }, { "input": "teasers", "output": "⠞⠂⠎⠻⠎" }, { "input": "teases", "output": "â žâ ‚â Žâ ‘â Ž" }, { "input": "teasing", "output": "â žâ ‚â Žâ Œ" }, { "input": "teaspoon", "output": "â žâ ‚â Žâ â •â •â " }, { "input": "teaspoon's", "output": "â žâ ‚â Žâ â •â •â â „â Ž" }, { "input": "teaspoonful", "output": "â žâ ‚â Žâ â •â •â â °â ‡" }, { "input": "teaspoonful's", "output": "â žâ ‚â Žâ â •â •â â °â ‡â „â Ž" }, { "input": "teaspoonfuls", "output": "â žâ ‚â Žâ â •â •â â °â ‡â Ž" }, { "input": "teaspoons", "output": "â žâ ‚â Žâ â •â •â â Ž" }, { "input": "teat", "output": "â žâ ‚â ž" }, { "input": "teat's", "output": "â žâ ‚â žâ „â Ž" }, { "input": "teatime", "output": "â žâ ‚â â ž" }, { "input": "teats", "output": "â žâ ‚â žâ Ž" }, { "input": "tech's", "output": "â žâ ‘â ¡â „â Ž" }, { "input": "technetium", "output": "â žâ ‘â ¡â â ‘â žâ Šâ ¥â " }, { "input": "technetium's", "output": "â žâ ‘â ¡â â ‘â žâ Šâ ¥â â „â Ž" }, { "input": "technical", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡" }, { "input": "technicalities", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "technicality", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡â °â ½" }, { "input": "technicality's", "output": "â žâ ‘â ¡â â Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "technically", "output": "â žâ ‘â ¡â â Šâ ‰â  â ½" }, { "input": "technician", "output": "â žâ ‘â ¡â â Šâ ‰â Šâ â " }, { "input": "technician's", "output": "â žâ ‘â ¡â â Šâ ‰â Šâ â â „â Ž" }, { "input": "technicians", "output": "â žâ ‘â ¡â â Šâ ‰â Šâ â â Ž" }, { "input": "technique", "output": "â žâ ‘â ¡â â Šâ Ÿâ ¥â ‘" }, { "input": "technique's", "output": "â žâ ‘â ¡â â Šâ Ÿâ ¥â ‘â „â Ž" }, { "input": "techniques", "output": "â žâ ‘â ¡â â Šâ Ÿâ ¥â ‘â Ž" }, { "input": "technocracy", "output": "â žâ ‘â ¡â â •⠉⠗â â ‰â ½" }, { "input": "technocracy's", "output": "â žâ ‘â ¡â â •⠉⠗â â ‰â ½â „â Ž" }, { "input": "technocrat", "output": "â žâ ‘â ¡â â •⠉⠗â â ž" }, { "input": "technocrat's", "output": "â žâ ‘â ¡â â •⠉⠗â â žâ „â Ž" }, { "input": "technocrats", "output": "â žâ ‘â ¡â â •⠉⠗â â žâ Ž" }, { "input": "technological", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "technologically", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "technologies", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠑⠎" }, { "input": "technologist", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠌" }, { "input": "technologist's", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "technologists", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠊⠌⠎" }, { "input": "technology", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠽" }, { "input": "technology's", "output": "â žâ ‘â ¡â â •⠇⠕⠛⠽⠄⠎" }, { "input": "techs", "output": "â žâ ‘â ¡â Ž" }, { "input": "tectonics", "output": "⠞⠑⠉⠞⠕â â Šâ ‰â Ž" }, { "input": "tectonics's", "output": "⠞⠑⠉⠞⠕â â Šâ ‰â Žâ „â Ž" }, { "input": "ted", "output": "â žâ «" }, { "input": "tedious", "output": "⠞⠫⠊⠳⠎" }, { "input": "tediously", "output": "⠞⠫⠊⠳⠎⠇⠽" }, { "input": "tediousness", "output": "⠞⠫⠊⠳⠎⠰⠎" }, { "input": "tediousness's", "output": "⠞⠫⠊⠳⠎⠰⠎⠄⠎" }, { "input": "tedium", "output": "â žâ «â Šâ ¥â " }, { "input": "tedium's", "output": "â žâ «â Šâ ¥â â „â Ž" }, { "input": "tee", "output": "â žâ ‘â ‘" }, { "input": "tee's", "output": "â žâ ‘â ‘â „â Ž" }, { "input": "teed", "output": "â žâ ‘â «" }, { "input": "teeing", "output": "â žâ ‘â ‘â Œ" }, { "input": "teem", "output": "â žâ ‘â ‘â " }, { "input": "teemed", "output": "â žâ ‘â ‘â â «" }, { "input": "teeming", "output": "â žâ ‘â ‘â â Œ" }, { "input": "teems", "output": "â žâ ‘â ‘â â Ž" }, { "input": "teen", "output": "â žâ ‘â ¢" }, { "input": "teen's", "output": "⠞⠑⠢⠄⠎" }, { "input": "teenage", "output": "â žâ ‘â ¢â â ›â ‘" }, { "input": "teenager", "output": "â žâ ‘â ¢â â ›â »" }, { "input": "teenager's", "output": "â žâ ‘â ¢â â ›â »â „â Ž" }, { "input": "teenagers", "output": "â žâ ‘â ¢â â ›â »â Ž" }, { "input": "teenier", "output": "⠞⠑⠢⠊⠻" }, { "input": "teeniest", "output": "⠞⠑⠢⠊⠑⠌" }, { "input": "teens", "output": "⠞⠑⠢⠎" }, { "input": "teeny", "output": "⠞⠑⠢⠽" }, { "input": "tees", "output": "â žâ ‘â ‘â Ž" }, { "input": "teeter", "output": "â žâ ‘â ‘â žâ »" }, { "input": "teeter's", "output": "⠞⠑⠑⠞⠻⠄⠎" }, { "input": "teetered", "output": "⠞⠑⠑⠞⠻⠫" }, { "input": "teetering", "output": "⠞⠑⠑⠞⠻⠌" }, { "input": "teeters", "output": "⠞⠑⠑⠞⠻⠎" }, { "input": "teeth", "output": "â žâ ‘â ‘â ¹" }, { "input": "teethe", "output": "â žâ ‘â ‘â ®" }, { "input": "teethed", "output": "⠞⠑⠑⠮⠙" }, { "input": "teethes", "output": "⠞⠑⠑⠮⠎" }, { "input": "teething", "output": "⠞⠑⠑⠹⠌" }, { "input": "teething's", "output": "⠞⠑⠑⠹⠌⠄⠎" }, { "input": "teetotal", "output": "â žâ ‘â ‘â žâ •â žâ â ‡" }, { "input": "teetotaler", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â »" }, { "input": "teetotaler's", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â »â „â Ž" }, { "input": "teetotalers", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â »â Ž" }, { "input": "teetotalism's", "output": "â žâ ‘â ‘â žâ •â žâ â ‡â Šâ Žâ â „â Ž" }, { "input": "tektite", "output": "â žâ ‘â …â žâ Šâ žâ ‘" }, { "input": "tektite's", "output": "â žâ ‘â …â žâ Šâ žâ ‘â „â Ž" }, { "input": "tektites", "output": "â žâ ‘â …â žâ Šâ žâ ‘â Ž" }, { "input": "telecast", "output": "⠞⠑⠇⠑⠉â â Œ" }, { "input": "telecast's", "output": "⠞⠑⠇⠑⠉â â Œâ „â Ž" }, { "input": "telecaster", "output": "⠞⠑⠇⠑⠉â â Œâ »" }, { "input": "telecaster's", "output": "⠞⠑⠇⠑⠉â â Œâ »â „â Ž" }, { "input": "telecasters", "output": "⠞⠑⠇⠑⠉â â Œâ »â Ž" }, { "input": "telecasting", "output": "⠞⠑⠇⠑⠉â â Œâ Œ" }, { "input": "telecasts", "output": "⠞⠑⠇⠑⠉â â Œâ Ž" }, { "input": "telecommunication", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â â Šâ ‰â  â " }, { "input": "telecommunication's", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â â Šâ ‰â  â â „â Ž" }, { "input": "telecommunications", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â â Šâ ‰â  â â Ž" }, { "input": "telecommunications's", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â â Šâ ‰â  â â Žâ „â Ž" }, { "input": "telecommute", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ ‘" }, { "input": "telecommuted", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ «" }, { "input": "telecommuter", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ »" }, { "input": "telecommuter's", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ »â „â Ž" }, { "input": "telecommuters", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ »â Ž" }, { "input": "telecommutes", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ ‘â Ž" }, { "input": "telecommuting", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ Œ" }, { "input": "telecommuting's", "output": "⠞⠑⠇⠑⠉⠕â â â ¥â žâ Œâ „â Ž" }, { "input": "teleconference", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘" }, { "input": "teleconference's", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘â „â Ž" }, { "input": "teleconferenced", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘â ™" }, { "input": "teleconferences", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â °â ‘â Ž" }, { "input": "teleconferencing", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â ¢â ‰â Œ" }, { "input": "teleconferencing's", "output": "⠞⠑⠇⠑⠉⠕â â ‹â »â ¢â ‰â Œâ „â Ž" }, { "input": "telegram", "output": "⠞⠑⠇⠑⠛⠗â â " }, { "input": "telegram's", "output": "⠞⠑⠇⠑⠛⠗â â â „â Ž" }, { "input": "telegrams", "output": "⠞⠑⠇⠑⠛⠗â â â Ž" }, { "input": "telegraph", "output": "⠞⠑⠇⠑⠛⠗â â â “" }, { "input": "telegraph's", "output": "⠞⠑⠇⠑⠛⠗â â â “â „â Ž" }, { "input": "telegraphed", "output": "⠞⠑⠇⠑⠛⠗â â â “â «" }, { "input": "telegrapher", "output": "⠞⠑⠇⠑⠛⠗â â â “â »" }, { "input": "telegrapher's", "output": "⠞⠑⠇⠑⠛⠗â â â “⠻⠄⠎" }, { "input": "telegraphers", "output": "⠞⠑⠇⠑⠛⠗â â â “⠻⠎" }, { "input": "telegraphic", "output": "⠞⠑⠇⠑⠛⠗â â â “â Šâ ‰" }, { "input": "telegraphically", "output": "⠞⠑⠇⠑⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "telegraphing", "output": "⠞⠑⠇⠑⠛⠗â â â “â Œ" }, { "input": "telegraphist", "output": "⠞⠑⠇⠑⠛⠗â â â “â Šâ Œ" }, { "input": "telegraphist's", "output": "⠞⠑⠇⠑⠛⠗â â â “⠊⠌⠄⠎" }, { "input": "telegraphists", "output": "⠞⠑⠇⠑⠛⠗â â â “⠊⠌⠎" }, { "input": "telegraphs", "output": "⠞⠑⠇⠑⠛⠗â â â “â Ž" }, { "input": "telegraphy", "output": "⠞⠑⠇⠑⠛⠗â â â “â ½" }, { "input": "telegraphy's", "output": "⠞⠑⠇⠑⠛⠗â â â “⠽⠄⠎" }, { "input": "telekinesis", "output": "⠞⠑⠇⠑⠅⠔⠑⠎⠊⠎" }, { "input": "telekinesis's", "output": "⠞⠑⠇⠑⠅⠔⠑⠎⠊⠎⠄⠎" }, { "input": "telekinetic", "output": "⠞⠑⠇⠑⠅⠔⠑⠞⠊⠉" }, { "input": "telemarketer", "output": "⠞⠑⠇⠑â â œâ …â ‘â žâ »" }, { "input": "telemarketer's", "output": "⠞⠑⠇⠑â â œâ …⠑⠞⠻⠄⠎" }, { "input": "telemarketers", "output": "⠞⠑⠇⠑â â œâ …⠑⠞⠻⠎" }, { "input": "telemarketing", "output": "⠞⠑⠇⠑â â œâ …â ‘â žâ Œ" }, { "input": "telemarketing's", "output": "⠞⠑⠇⠑â â œâ …⠑⠞⠌⠄⠎" }, { "input": "telemeter", "output": "⠞⠑⠇⠑â â ‘â žâ »" }, { "input": "telemeter's", "output": "⠞⠑⠇⠑â â ‘⠞⠻⠄⠎" }, { "input": "telemeters", "output": "⠞⠑⠇⠑â â ‘⠞⠻⠎" }, { "input": "telemetries", "output": "⠞⠑⠇⠑â â ‘â žâ —â Šâ ‘â Ž" }, { "input": "telemetry", "output": "⠞⠑⠇⠑â â ‘â žâ —â ½" }, { "input": "telemetry's", "output": "⠞⠑⠇⠑â â ‘⠞⠗⠽⠄⠎" }, { "input": "telepathic", "output": "⠞⠑⠇⠑â â â ¹â Šâ ‰" }, { "input": "telepathically", "output": "⠞⠑⠇⠑â â â ¹â Šâ ‰â  â ½" }, { "input": "telepathy", "output": "⠞⠑⠇⠑â â â ¹â ½" }, { "input": "telepathy's", "output": "⠞⠑⠇⠑â â â ¹â ½â „â Ž" }, { "input": "telephone", "output": "⠞⠑⠇⠑â â “â â •" }, { "input": "telephone's", "output": "⠞⠑⠇⠑â â “â â •â „â Ž" }, { "input": "telephoned", "output": "⠞⠑⠇⠑â â “â •â â «" }, { "input": "telephoner", "output": "⠞⠑⠇⠑â â “â •â â »" }, { "input": "telephoner's", "output": "⠞⠑⠇⠑â â “â •â â »â „â Ž" }, { "input": "telephoners", "output": "⠞⠑⠇⠑â â “â •â â »â Ž" }, { "input": "telephones", "output": "⠞⠑⠇⠑â â “â â •â Ž" }, { "input": "telephonic", "output": "⠞⠑⠇⠑â â “â •â â Šâ ‰" }, { "input": "telephoning", "output": "⠞⠑⠇⠑â â “â •â â Œ" }, { "input": "telephony", "output": "⠞⠑⠇⠑â â “â •â â ½" }, { "input": "telephony's", "output": "⠞⠑⠇⠑â â “â •â â ½â „â Ž" }, { "input": "telephoto", "output": "⠞⠑⠇⠑â â “â •â žâ •" }, { "input": "telephoto's", "output": "⠞⠑⠇⠑â â “â •â žâ •â „â Ž" }, { "input": "telephotography", "output": "⠞⠑⠇⠑â â “⠕⠞⠕⠛⠗â â â “â ½" }, { "input": "telephotography's", "output": "⠞⠑⠇⠑â â “⠕⠞⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "telephotos", "output": "⠞⠑⠇⠑â â “â •â žâ •â Ž" }, { "input": "teleplay", "output": "⠞⠑⠇⠑â â ‡â â ½" }, { "input": "teleplay's", "output": "⠞⠑⠇⠑â â ‡â â ½â „â Ž" }, { "input": "teleplays", "output": "⠞⠑⠇⠑â â ‡â â ½â Ž" }, { "input": "teleprocessing", "output": "⠞⠑⠇⠑â â —⠕⠉⠑⠎⠎⠌" }, { "input": "teleprocessing's", "output": "⠞⠑⠇⠑â â —⠕⠉⠑⠎⠎⠌⠄⠎" }, { "input": "teleprompter", "output": "⠞⠑⠇⠑â â —â •â â â žâ »" }, { "input": "teleprompter's", "output": "⠞⠑⠇⠑â â —â •â â â žâ »â „â Ž" }, { "input": "teleprompters", "output": "⠞⠑⠇⠑â â —â •â â â žâ »â Ž" }, { "input": "telescope", "output": "⠞⠑⠇⠑⠎⠉⠕â â ‘" }, { "input": "telescope's", "output": "⠞⠑⠇⠑⠎⠉⠕â â ‘â „â Ž" }, { "input": "telescoped", "output": "⠞⠑⠇⠑⠎⠉⠕â â «" }, { "input": "telescopes", "output": "⠞⠑⠇⠑⠎⠉⠕â â ‘â Ž" }, { "input": "telescopic", "output": "⠞⠑⠇⠑⠎⠉⠕â â Šâ ‰" }, { "input": "telescopically", "output": "⠞⠑⠇⠑⠎⠉⠕â â Šâ ‰â  â ½" }, { "input": "telescoping", "output": "⠞⠑⠇⠑⠎⠉⠕â â Œ" }, { "input": "teletext's", "output": "⠞⠑⠇⠑⠞⠑⠭⠞⠄⠎" }, { "input": "teletexts", "output": "⠞⠑⠇⠑⠞⠑⠭⠞⠎" }, { "input": "telethon", "output": "⠞⠑⠇⠑⠹⠕â " }, { "input": "telethon's", "output": "⠞⠑⠇⠑⠹⠕â â „â Ž" }, { "input": "telethons", "output": "⠞⠑⠇⠑⠹⠕â â Ž" }, { "input": "teletype", "output": "⠞⠑⠇⠑⠞⠽â â ‘" }, { "input": "teletypes", "output": "⠞⠑⠇⠑⠞⠽â â ‘â Ž" }, { "input": "teletypewriter", "output": "⠞⠑⠇⠑⠞⠽â â ‘⠺⠗⠊⠞⠻" }, { "input": "teletypewriter's", "output": "⠞⠑⠇⠑⠞⠽â â ‘⠺⠗⠊⠞⠻⠄⠎" }, { "input": "teletypewriters", "output": "⠞⠑⠇⠑⠞⠽â â ‘⠺⠗⠊⠞⠻⠎" }, { "input": "televangelism's", "output": "⠞⠑⠇⠑⠧â â â ›â ‘⠇⠊⠎â â „â Ž" }, { "input": "televangelist", "output": "⠞⠑⠇⠑⠧â â â ›â ‘⠇⠊⠌" }, { "input": "televangelist's", "output": "⠞⠑⠇⠑⠧â â â ›â ‘⠇⠊⠌⠄⠎" }, { "input": "televangelists", "output": "⠞⠑⠇⠑⠧â â â ›â ‘⠇⠊⠌⠎" }, { "input": "televise", "output": "⠞⠑⠇⠑⠧⠊⠎⠑" }, { "input": "televised", "output": "⠞⠑⠇⠑⠧⠊⠎⠫" }, { "input": "televises", "output": "⠞⠑⠇⠑⠧⠊⠎⠑⠎" }, { "input": "televising", "output": "⠞⠑⠇⠑⠧⠊⠎⠌" }, { "input": "television", "output": "⠞⠑⠇⠑⠧⠊⠨â " }, { "input": "television's", "output": "⠞⠑⠇⠑⠧⠊⠨â â „â Ž" }, { "input": "televisions", "output": "⠞⠑⠇⠑⠧⠊⠨â â Ž" }, { "input": "telex", "output": "⠞⠑⠇⠑⠭" }, { "input": "telex's", "output": "⠞⠑⠇⠑⠭⠄⠎" }, { "input": "telexed", "output": "⠞⠑⠇⠑⠭⠫" }, { "input": "telexes", "output": "⠞⠑⠇⠑⠭⠑⠎" }, { "input": "telexing", "output": "⠞⠑⠇⠑⠭⠌" }, { "input": "tell", "output": "⠞⠑⠇⠇" }, { "input": "teller", "output": "⠞⠑⠇⠇⠻" }, { "input": "teller's", "output": "⠞⠑⠇⠇⠻⠄⠎" }, { "input": "tellers", "output": "⠞⠑⠇⠇⠻⠎" }, { "input": "telling", "output": "⠞⠑⠇⠇⠌" }, { "input": "tellingly", "output": "⠞⠑⠇⠇⠌⠇⠽" }, { "input": "tells", "output": "⠞⠑⠇⠇⠎" }, { "input": "telltale", "output": "⠞⠑⠇⠇⠞â â ‡â ‘" }, { "input": "telltale's", "output": "⠞⠑⠇⠇⠞â â ‡â ‘â „â Ž" }, { "input": "telltales", "output": "⠞⠑⠇⠇⠞â â ‡â ‘â Ž" }, { "input": "tellurium", "output": "⠞⠑⠇⠇⠥⠗⠊⠥â " }, { "input": "tellurium's", "output": "⠞⠑⠇⠇⠥⠗⠊⠥â â „â Ž" }, { "input": "temblor", "output": "â žâ ‘â â ƒâ ‡â •â —" }, { "input": "temblor's", "output": "â žâ ‘â â ƒâ ‡â •â —â „â Ž" }, { "input": "temblors", "output": "â žâ ‘â â ƒâ ‡â •â —â Ž" }, { "input": "temerity", "output": "â žâ ‘â â »â °â ½" }, { "input": "temerity's", "output": "â žâ ‘â â »â °â ½â „â Ž" }, { "input": "temp", "output": "â žâ ‘â â " }, { "input": "temp's", "output": "â žâ ‘â â â „â Ž" }, { "input": "temped", "output": "â žâ ‘â â â «" }, { "input": "temper", "output": "â žâ ‘â â â »" }, { "input": "temper's", "output": "â žâ ‘â â â »â „â Ž" }, { "input": "tempera", "output": "â žâ ‘â â â »â " }, { "input": "tempera's", "output": "â žâ ‘â â â »â â „â Ž" }, { "input": "temperament", "output": "â žâ ‘â â â »â â °â ž" }, { "input": "temperament's", "output": "â žâ ‘â â â »â â °â žâ „â Ž" }, { "input": "temperamental", "output": "â žâ ‘â â â »â â °â žâ â ‡" }, { "input": "temperamentally", "output": "â žâ ‘â â â »â â °â žâ  â ½" }, { "input": "temperaments", "output": "â žâ ‘â â â »â â °â žâ Ž" }, { "input": "temperance", "output": "â žâ ‘â â â »â ¨â ‘" }, { "input": "temperance's", "output": "â žâ ‘â â â »â ¨â ‘â „â Ž" }, { "input": "temperas", "output": "â žâ ‘â â â »â â Ž" }, { "input": "temperate", "output": "â žâ ‘â â â »â â žâ ‘" }, { "input": "temperately", "output": "â žâ ‘â â â »â â žâ ‘⠇⠽" }, { "input": "temperateness", "output": "â žâ ‘â â â »â â žâ ‘â °â Ž" }, { "input": "temperateness's", "output": "â žâ ‘â â â »â â žâ ‘â °â Žâ „â Ž" }, { "input": "temperature", "output": "â žâ ‘â â â »â â žâ ¥â —â ‘" }, { "input": "temperature's", "output": "â žâ ‘â â â »â â žâ ¥â —â ‘â „â Ž" }, { "input": "temperatures", "output": "â žâ ‘â â â »â â žâ ¥â —â ‘â Ž" }, { "input": "tempered", "output": "â žâ ‘â â â »â «" }, { "input": "tempering", "output": "â žâ ‘â â â »â Œ" }, { "input": "tempers", "output": "â žâ ‘â â â »â Ž" }, { "input": "tempest", "output": "â žâ ‘â â â ‘â Œ" }, { "input": "tempest's", "output": "â žâ ‘â â â ‘⠌⠄⠎" }, { "input": "tempests", "output": "â žâ ‘â â â ‘⠌⠎" }, { "input": "tempestuous", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎" }, { "input": "tempestuously", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎⠇⠽" }, { "input": "tempestuousness", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎⠰⠎" }, { "input": "tempestuousness's", "output": "â žâ ‘â â â ‘⠌⠥⠳⠎⠰⠎⠄⠎" }, { "input": "temping", "output": "â žâ ‘â â â Œ" }, { "input": "template", "output": "â žâ ‘â â â ‡â â žâ ‘" }, { "input": "template's", "output": "â žâ ‘â â â ‡â â žâ ‘â „â Ž" }, { "input": "templates", "output": "â žâ ‘â â â ‡â â žâ ‘â Ž" }, { "input": "temple", "output": "â žâ ‘â â â ‡â ‘" }, { "input": "temple's", "output": "â žâ ‘â â â ‡â ‘â „â Ž" }, { "input": "temples", "output": "â žâ ‘â â â ‡â ‘â Ž" }, { "input": "tempo", "output": "â žâ ‘â â â •" }, { "input": "tempo's", "output": "â žâ ‘â â â •â „â Ž" }, { "input": "temporal", "output": "â žâ ‘â â â •â —â â ‡" }, { "input": "temporally", "output": "â žâ ‘â â â •â —â  â ½" }, { "input": "temporaries", "output": "â žâ ‘â â â •⠗⠜⠊⠑⠎" }, { "input": "temporarily", "output": "â žâ ‘â â â •⠗⠜⠊⠇⠽" }, { "input": "temporariness's", "output": "â žâ ‘â â â •⠗⠜⠊⠰⠎⠄⠎" }, { "input": "temporary", "output": "â žâ ‘â â â •⠗⠜⠽" }, { "input": "temporary's", "output": "â žâ ‘â â â •⠗⠜⠽⠄⠎" }, { "input": "temporize", "output": "â žâ ‘â â â •⠗⠊⠵⠑" }, { "input": "temporized", "output": "â žâ ‘â â â •⠗⠊⠵⠫" }, { "input": "temporizer", "output": "â žâ ‘â â â •⠗⠊⠵⠻" }, { "input": "temporizer's", "output": "â žâ ‘â â â •⠗⠊⠵⠻⠄⠎" }, { "input": "temporizers", "output": "â žâ ‘â â â •⠗⠊⠵⠻⠎" }, { "input": "temporizes", "output": "â žâ ‘â â â •⠗⠊⠵⠑⠎" }, { "input": "temporizing", "output": "â žâ ‘â â â •⠗⠊⠵⠌" }, { "input": "tempos", "output": "â žâ ‘â â â •â Ž" }, { "input": "temps", "output": "â žâ ‘â â â Ž" }, { "input": "tempt", "output": "â žâ ‘â â â ž" }, { "input": "temptation", "output": "â žâ ‘â â â žâ  â " }, { "input": "temptation's", "output": "â žâ ‘â â â žâ  â â „â Ž" }, { "input": "temptations", "output": "â žâ ‘â â â žâ  â â Ž" }, { "input": "tempted", "output": "â žâ ‘â â â žâ «" }, { "input": "tempter", "output": "â žâ ‘â â â žâ »" }, { "input": "tempter's", "output": "â žâ ‘â â â žâ »â „â Ž" }, { "input": "tempters", "output": "â žâ ‘â â â žâ »â Ž" }, { "input": "tempting", "output": "â žâ ‘â â â žâ Œ" }, { "input": "temptingly", "output": "â žâ ‘â â â žâ Œâ ‡â ½" }, { "input": "temptress", "output": "â žâ ‘â â â žâ —â ‘â Žâ Ž" }, { "input": "temptress's", "output": "â žâ ‘â â â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "temptresses", "output": "â žâ ‘â â â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "tempts", "output": "â žâ ‘â â â žâ Ž" }, { "input": "tempura", "output": "â žâ ‘â â â ¥â —â " }, { "input": "tempura's", "output": "â žâ ‘â â â ¥â —â â „â Ž" }, { "input": "ten", "output": "â žâ ¢" }, { "input": "ten's", "output": "⠞⠢⠄⠎" }, { "input": "tenability", "output": "â žâ ¢â â ƒâ Šâ ‡â °â ½" }, { "input": "tenability's", "output": "â žâ ¢â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "tenable", "output": "â žâ ¢â â ¼" }, { "input": "tenably", "output": "â žâ ¢â â ƒâ ‡â ½" }, { "input": "tenacious", "output": "â žâ ¢â â ‰â Šâ ³â Ž" }, { "input": "tenaciously", "output": "â žâ ¢â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "tenaciousness", "output": "â žâ ¢â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "tenaciousness's", "output": "â žâ ¢â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "tenacity", "output": "â žâ ¢â â ‰â °â ½" }, { "input": "tenacity's", "output": "â žâ ¢â â ‰â °â ½â „â Ž" }, { "input": "tenancies", "output": "â žâ ¢â â â ‰â Šâ ‘â Ž" }, { "input": "tenancy", "output": "â žâ ¢â â â ‰â ½" }, { "input": "tenancy's", "output": "â žâ ¢â â â ‰â ½â „â Ž" }, { "input": "tenant", "output": "â žâ ¢â â â ž" }, { "input": "tenant's", "output": "â žâ ¢â â â žâ „â Ž" }, { "input": "tenanted", "output": "â žâ ¢â â â žâ «" }, { "input": "tenanting", "output": "â žâ ¢â â â žâ Œ" }, { "input": "tenantry", "output": "â žâ ¢â â â žâ —â ½" }, { "input": "tenantry's", "output": "â žâ ¢â â â žâ —⠽⠄⠎" }, { "input": "tenants", "output": "â žâ ¢â â â žâ Ž" }, { "input": "tend", "output": "⠞⠢⠙" }, { "input": "tended", "output": "⠞⠢⠙⠫" }, { "input": "tendencies", "output": "⠞⠢⠙⠢⠉⠊⠑⠎" }, { "input": "tendency", "output": "⠞⠢⠙⠢⠉⠽" }, { "input": "tendency's", "output": "⠞⠢⠙⠢⠉⠽⠄⠎" }, { "input": "tendentious", "output": "⠞⠢⠙⠢⠞⠊⠳⠎" }, { "input": "tendentiously", "output": "⠞⠢⠙⠢⠞⠊⠳⠎⠇⠽" }, { "input": "tendentiousness", "output": "⠞⠢⠙⠢⠞⠊⠳⠎⠰⠎" }, { "input": "tendentiousness's", "output": "⠞⠢⠙⠢⠞⠊⠳⠎⠰⠎⠄⠎" }, { "input": "tender", "output": "⠞⠢⠙⠻" }, { "input": "tender's", "output": "⠞⠢⠙⠻⠄⠎" }, { "input": "tendered", "output": "⠞⠢⠙⠻⠫" }, { "input": "tenderer", "output": "⠞⠢⠙⠻⠻" }, { "input": "tenderest", "output": "⠞⠢⠙⠻⠑⠌" }, { "input": "tenderfoot", "output": "⠞⠢⠙⠻⠋⠕⠕⠞" }, { "input": "tenderfoot's", "output": "⠞⠢⠙⠻⠋⠕⠕⠞⠄⠎" }, { "input": "tenderfoots", "output": "⠞⠢⠙⠻⠋⠕⠕⠞⠎" }, { "input": "tenderhearted", "output": "⠞⠢⠙⠻⠓⠑⠜⠞⠫" }, { "input": "tenderheartedly", "output": "⠞⠢⠙⠻⠓⠑⠜⠞⠫⠇⠽" }, { "input": "tenderheartedness", "output": "⠞⠢⠙⠻⠓⠑⠜⠞⠫⠰⠎" }, { "input": "tenderheartedness's", "output": "⠞⠢⠙⠻⠓⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "tendering", "output": "⠞⠢⠙⠻⠌" }, { "input": "tenderize", "output": "⠞⠢⠙⠻⠊⠵⠑" }, { "input": "tenderized", "output": "⠞⠢⠙⠻⠊⠵⠫" }, { "input": "tenderizer", "output": "⠞⠢⠙⠻⠊⠵⠻" }, { "input": "tenderizer's", "output": "⠞⠢⠙⠻⠊⠵⠻⠄⠎" }, { "input": "tenderizers", "output": "⠞⠢⠙⠻⠊⠵⠻⠎" }, { "input": "tenderizes", "output": "⠞⠢⠙⠻⠊⠵⠑⠎" }, { "input": "tenderizing", "output": "⠞⠢⠙⠻⠊⠵⠌" }, { "input": "tenderloin", "output": "⠞⠢⠙⠻⠇⠕⠔" }, { "input": "tenderloin's", "output": "⠞⠢⠙⠻⠇⠕⠔⠄⠎" }, { "input": "tenderloins", "output": "⠞⠢⠙⠻⠇⠕⠔⠎" }, { "input": "tenderly", "output": "⠞⠢⠙⠻⠇⠽" }, { "input": "tenderness", "output": "⠞⠢⠙⠻⠰⠎" }, { "input": "tenderness's", "output": "⠞⠢⠙⠻⠰⠎⠄⠎" }, { "input": "tenders", "output": "⠞⠢⠙⠻⠎" }, { "input": "tending", "output": "⠞⠢⠙⠌" }, { "input": "tendinitis", "output": "⠞⠢⠙⠔⠊⠞⠊⠎" }, { "input": "tendinitis's", "output": "⠞⠢⠙⠔⠊⠞⠊⠎⠄⠎" }, { "input": "tendon", "output": "⠞⠢⠙⠕â " }, { "input": "tendon's", "output": "⠞⠢⠙⠕â â „â Ž" }, { "input": "tendons", "output": "⠞⠢⠙⠕â â Ž" }, { "input": "tendril", "output": "⠞⠢⠙⠗⠊⠇" }, { "input": "tendril's", "output": "⠞⠢⠙⠗⠊⠇⠄⠎" }, { "input": "tendrils", "output": "⠞⠢⠙⠗⠊⠇⠎" }, { "input": "tends", "output": "⠞⠢⠙⠎" }, { "input": "tenement", "output": "⠞⠢⠑⠰⠞" }, { "input": "tenement's", "output": "⠞⠢⠑⠰⠞⠄⠎" }, { "input": "tenements", "output": "⠞⠢⠑⠰⠞⠎" }, { "input": "tenet", "output": "⠞⠢⠑⠞" }, { "input": "tenet's", "output": "⠞⠢⠑⠞⠄⠎" }, { "input": "tenets", "output": "⠞⠢⠑⠞⠎" }, { "input": "tenfold", "output": "⠞⠢⠋⠕⠇⠙" }, { "input": "tennis", "output": "â žâ ¢â â Šâ Ž" }, { "input": "tennis's", "output": "â žâ ¢â â Šâ Žâ „â Ž" }, { "input": "tenon", "output": "⠞⠢⠕â " }, { "input": "tenon's", "output": "⠞⠢⠕â â „â Ž" }, { "input": "tenoned", "output": "⠞⠢⠕â â «" }, { "input": "tenoning", "output": "⠞⠢⠕â â Œ" }, { "input": "tenons", "output": "⠞⠢⠕â â Ž" }, { "input": "tenor", "output": "⠞⠢⠕⠗" }, { "input": "tenor's", "output": "⠞⠢⠕⠗⠄⠎" }, { "input": "tenors", "output": "⠞⠢⠕⠗⠎" }, { "input": "tenpin", "output": "â žâ ¢â â ”" }, { "input": "tenpin's", "output": "â žâ ¢â â ”â „â Ž" }, { "input": "tenpins", "output": "â žâ ¢â â ”â Ž" }, { "input": "tenpins's", "output": "â žâ ¢â â ”â Žâ „â Ž" }, { "input": "tens", "output": "⠞⠢⠎" }, { "input": "tense", "output": "⠞⠢⠎⠑" }, { "input": "tense's", "output": "⠞⠢⠎⠑⠄⠎" }, { "input": "tensed", "output": "⠞⠢⠎⠫" }, { "input": "tensely", "output": "⠞⠢⠎⠑⠇⠽" }, { "input": "tenseness", "output": "⠞⠢⠎⠑⠰⠎" }, { "input": "tenseness's", "output": "⠞⠢⠎⠑⠰⠎⠄⠎" }, { "input": "tenser", "output": "⠞⠢⠎⠻" }, { "input": "tenses", "output": "⠞⠢⠎⠑⠎" }, { "input": "tensest", "output": "⠞⠢⠎⠑⠌" }, { "input": "tensile", "output": "⠞⠢⠎⠊⠇⠑" }, { "input": "tensing", "output": "⠞⠢⠎⠌" }, { "input": "tension", "output": "⠞⠢⠨â " }, { "input": "tension's", "output": "⠞⠢⠨â â „â Ž" }, { "input": "tensions", "output": "⠞⠢⠨â â Ž" }, { "input": "tensity", "output": "⠞⠢⠎⠰⠽" }, { "input": "tensity's", "output": "⠞⠢⠎⠰⠽⠄⠎" }, { "input": "tensor", "output": "⠞⠢⠎⠕⠗" }, { "input": "tensors", "output": "⠞⠢⠎⠕⠗⠎" }, { "input": "tent", "output": "⠞⠢⠞" }, { "input": "tent's", "output": "⠞⠢⠞⠄⠎" }, { "input": "tentacle", "output": "⠞⠢⠞â â ‰â ‡â ‘" }, { "input": "tentacle's", "output": "⠞⠢⠞â â ‰â ‡â ‘â „â Ž" }, { "input": "tentacled", "output": "⠞⠢⠞â â ‰â ‡â «" }, { "input": "tentacles", "output": "⠞⠢⠞â â ‰â ‡â ‘â Ž" }, { "input": "tentative", "output": "⠞⠢⠞â â žâ Šâ §â ‘" }, { "input": "tentatively", "output": "⠞⠢⠞â â žâ Šâ §â ‘⠇⠽" }, { "input": "tentativeness's", "output": "⠞⠢⠞â â žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "tented", "output": "⠞⠢⠞⠫" }, { "input": "tenterhook", "output": "⠞⠢⠞⠻⠓⠕⠕⠅" }, { "input": "tenterhook's", "output": "⠞⠢⠞⠻⠓⠕⠕⠅⠄⠎" }, { "input": "tenterhooks", "output": "⠞⠢⠞⠻⠓⠕⠕⠅⠎" }, { "input": "tenth", "output": "⠞⠢⠹" }, { "input": "tenth's", "output": "⠞⠢⠹⠄⠎" }, { "input": "tenthly", "output": "⠞⠢⠹⠇⠽" }, { "input": "tenths", "output": "⠞⠢⠹⠎" }, { "input": "tenting", "output": "⠞⠢⠞⠌" }, { "input": "tents", "output": "⠞⠢⠞⠎" }, { "input": "tenuity", "output": "⠞⠢⠥⠰⠽" }, { "input": "tenuity's", "output": "⠞⠢⠥⠰⠽⠄⠎" }, { "input": "tenuous", "output": "⠞⠢⠥⠳⠎" }, { "input": "tenuously", "output": "⠞⠢⠥⠳⠎⠇⠽" }, { "input": "tenuousness", "output": "⠞⠢⠥⠳⠎⠰⠎" }, { "input": "tenuousness's", "output": "⠞⠢⠥⠳⠎⠰⠎⠄⠎" }, { "input": "tenure", "output": "⠞⠢⠥⠗⠑" }, { "input": "tenure's", "output": "⠞⠢⠥⠗⠑⠄⠎" }, { "input": "tenured", "output": "⠞⠢⠥⠗⠫" }, { "input": "tenures", "output": "⠞⠢⠥⠗⠑⠎" }, { "input": "tenuring", "output": "⠞⠢⠥⠗⠌" }, { "input": "tepee", "output": "â žâ ‘â â ‘â ‘" }, { "input": "tepee's", "output": "â žâ ‘â â ‘â ‘â „â Ž" }, { "input": "tepees", "output": "â žâ ‘â â ‘â ‘â Ž" }, { "input": "tepid", "output": "â žâ ‘â â Šâ ™" }, { "input": "tepidity", "output": "â žâ ‘â â Šâ ™â °â ½" }, { "input": "tepidity's", "output": "â žâ ‘â â Šâ ™â °â ½â „â Ž" }, { "input": "tepidly", "output": "â žâ ‘â â Šâ ™â ‡â ½" }, { "input": "tepidness", "output": "â žâ ‘â â Šâ ™â °â Ž" }, { "input": "tepidness's", "output": "â žâ ‘â â Šâ ™â °â Žâ „â Ž" }, { "input": "tequila", "output": "⠞⠑⠟⠥⠊⠇â " }, { "input": "tequila's", "output": "⠞⠑⠟⠥⠊⠇â â „â Ž" }, { "input": "tequilas", "output": "⠞⠑⠟⠥⠊⠇â â Ž" }, { "input": "terabit", "output": "â žâ »â â ƒâ Šâ ž" }, { "input": "terabit's", "output": "â žâ »â â ƒâ Šâ žâ „â Ž" }, { "input": "terabits", "output": "â žâ »â â ƒâ Šâ žâ Ž" }, { "input": "terabyte", "output": "â žâ »â â ƒâ ½â žâ ‘" }, { "input": "terabyte's", "output": "â žâ »â â ƒâ ½â žâ ‘â „â Ž" }, { "input": "terabytes", "output": "â žâ »â â ƒâ ½â žâ ‘â Ž" }, { "input": "terahertz", "output": "â žâ »â â “⠻⠞⠵" }, { "input": "terahertz's", "output": "â žâ »â â “⠻⠞⠵⠄⠎" }, { "input": "terbium", "output": "⠞⠻⠃⠊⠥â " }, { "input": "terbium's", "output": "⠞⠻⠃⠊⠥â â „â Ž" }, { "input": "tercentenaries", "output": "⠞⠻⠉⠢⠞⠢⠜⠊⠑⠎" }, { "input": "tercentenary", "output": "⠞⠻⠉⠢⠞⠢⠜⠽" }, { "input": "tercentenary's", "output": "⠞⠻⠉⠢⠞⠢⠜⠽⠄⠎" }, { "input": "tercentennial", "output": "⠞⠻⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "tercentennial's", "output": "⠞⠻⠉⠢⠞⠢â â Šâ â ‡â „â Ž" }, { "input": "tercentennials", "output": "⠞⠻⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "term", "output": "â žâ »â " }, { "input": "term's", "output": "â žâ »â â „â Ž" }, { "input": "termagant", "output": "â žâ »â â â ›â â â ž" }, { "input": "termagant's", "output": "â žâ »â â â ›â â â žâ „â Ž" }, { "input": "termagants", "output": "â žâ »â â â ›â â â žâ Ž" }, { "input": "termed", "output": "â žâ »â â «" }, { "input": "terminable", "output": "â žâ »â â ”â â ¼" }, { "input": "terminal", "output": "â žâ »â â ”â â ‡" }, { "input": "terminal's", "output": "â žâ »â â ”â â ‡â „â Ž" }, { "input": "terminally", "output": "â žâ »â â ”â  â ½" }, { "input": "terminals", "output": "â žâ »â â ”â â ‡â Ž" }, { "input": "terminate", "output": "â žâ »â â ”â â žâ ‘" }, { "input": "terminated", "output": "â žâ »â â ”â â žâ «" }, { "input": "terminates", "output": "â žâ »â â ”â â žâ ‘â Ž" }, { "input": "terminating", "output": "â žâ »â â ”â â žâ Œ" }, { "input": "termination", "output": "â žâ »â â ”â  â " }, { "input": "termination's", "output": "â žâ »â â ”â  â â „â Ž" }, { "input": "terminations", "output": "â žâ »â â ”â  â â Ž" }, { "input": "terminator", "output": "â žâ »â â ”â â žâ •â —" }, { "input": "terminators", "output": "â žâ »â â ”â â žâ •â —â Ž" }, { "input": "terming", "output": "â žâ »â â Œ" }, { "input": "termini", "output": "â žâ »â â ”â Š" }, { "input": "terminological", "output": "â žâ »â â ”⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "terminologically", "output": "â žâ »â â ”⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "terminologies", "output": "â žâ »â â ”⠕⠇⠕⠛⠊⠑⠎" }, { "input": "terminology", "output": "â žâ »â â ”⠕⠇⠕⠛⠽" }, { "input": "terminology's", "output": "â žâ »â â ”⠕⠇⠕⠛⠽⠄⠎" }, { "input": "terminus", "output": "â žâ »â â ”⠥⠎" }, { "input": "terminus's", "output": "â žâ »â â ”⠥⠎⠄⠎" }, { "input": "termite", "output": "â žâ »â â Šâ žâ ‘" }, { "input": "termite's", "output": "â žâ »â â Šâ žâ ‘â „â Ž" }, { "input": "termites", "output": "â žâ »â â Šâ žâ ‘â Ž" }, { "input": "termly", "output": "â žâ »â â ‡â ½" }, { "input": "terms", "output": "â žâ »â â Ž" }, { "input": "tern", "output": "â žâ »â " }, { "input": "tern's", "output": "â žâ »â â „â Ž" }, { "input": "ternaries", "output": "â žâ »â â œâ Šâ ‘â Ž" }, { "input": "ternary", "output": "â žâ »â â œâ ½" }, { "input": "ternary's", "output": "â žâ »â â œâ ½â „â Ž" }, { "input": "terns", "output": "â žâ »â â Ž" }, { "input": "terrace", "output": "⠞⠻⠗â â ‰â ‘" }, { "input": "terrace's", "output": "⠞⠻⠗â â ‰â ‘â „â Ž" }, { "input": "terraced", "output": "⠞⠻⠗â â ‰â «" }, { "input": "terraces", "output": "⠞⠻⠗â â ‰â ‘â Ž" }, { "input": "terracing", "output": "⠞⠻⠗â â ‰â Œ" }, { "input": "terracotta's", "output": "⠞⠻⠗â â ‰â •â žâ žâ â „â Ž" }, { "input": "terrain", "output": "⠞⠻⠗â â ”" }, { "input": "terrain's", "output": "⠞⠻⠗â â ”â „â Ž" }, { "input": "terrains", "output": "⠞⠻⠗â â ”â Ž" }, { "input": "terrapin", "output": "⠞⠻⠗â â â ”" }, { "input": "terrapin's", "output": "⠞⠻⠗â â â ”â „â Ž" }, { "input": "terrapins", "output": "⠞⠻⠗â â â ”â Ž" }, { "input": "terrarium", "output": "⠞⠻⠗⠜⠊⠥â " }, { "input": "terrarium's", "output": "⠞⠻⠗⠜⠊⠥â â „â Ž" }, { "input": "terrariums", "output": "⠞⠻⠗⠜⠊⠥â â Ž" }, { "input": "terrazzo", "output": "⠞⠻⠗â â µâ µâ •" }, { "input": "terrazzo's", "output": "⠞⠻⠗â â µâ µâ •â „â Ž" }, { "input": "terrazzos", "output": "⠞⠻⠗â â µâ µâ •â Ž" }, { "input": "terrestrial", "output": "⠞⠻⠗⠑⠌⠗⠊â â ‡" }, { "input": "terrestrial's", "output": "⠞⠻⠗⠑⠌⠗⠊â â ‡â „â Ž" }, { "input": "terrestrially", "output": "⠞⠻⠗⠑⠌⠗⠊⠠⠽" }, { "input": "terrestrials", "output": "⠞⠻⠗⠑⠌⠗⠊â â ‡â Ž" }, { "input": "terrible", "output": "⠞⠻⠗⠊⠼" }, { "input": "terribleness", "output": "⠞⠻⠗⠊⠼⠰⠎" }, { "input": "terribleness's", "output": "⠞⠻⠗⠊⠼⠰⠎⠄⠎" }, { "input": "terribly", "output": "⠞⠻⠗⠊⠃⠇⠽" }, { "input": "terrier", "output": "⠞⠻⠗⠊⠻" }, { "input": "terrier's", "output": "⠞⠻⠗⠊⠻⠄⠎" }, { "input": "terriers", "output": "⠞⠻⠗⠊⠻⠎" }, { "input": "terrific", "output": "⠞⠻⠗⠊⠋⠊⠉" }, { "input": "terrifically", "output": "⠞⠻⠗⠊⠋⠊⠉⠠⠽" }, { "input": "terrified", "output": "⠞⠻⠗⠊⠋⠊⠫" }, { "input": "terrifies", "output": "⠞⠻⠗⠊⠋⠊⠑⠎" }, { "input": "terrify", "output": "⠞⠻⠗⠊⠋⠽" }, { "input": "terrifying", "output": "⠞⠻⠗⠊⠋⠽⠌" }, { "input": "terrifyingly", "output": "⠞⠻⠗⠊⠋⠽⠌⠇⠽" }, { "input": "territorial", "output": "⠞⠻⠗⠊⠞⠕⠗⠊â â ‡" }, { "input": "territorial's", "output": "⠞⠻⠗⠊⠞⠕⠗⠊â â ‡â „â Ž" }, { "input": "territorials", "output": "⠞⠻⠗⠊⠞⠕⠗⠊â â ‡â Ž" }, { "input": "territories", "output": "⠞⠻⠗⠊⠞⠕⠗⠊⠑⠎" }, { "input": "territory", "output": "⠞⠻⠗⠊⠞⠕⠗⠽" }, { "input": "territory's", "output": "⠞⠻⠗⠊⠞⠕⠗⠽⠄⠎" }, { "input": "terror", "output": "⠞⠻⠗⠕⠗" }, { "input": "terror's", "output": "⠞⠻⠗⠕⠗⠄⠎" }, { "input": "terrorism", "output": "⠞⠻⠗⠕⠗⠊⠎â " }, { "input": "terrorism's", "output": "⠞⠻⠗⠕⠗⠊⠎â â „â Ž" }, { "input": "terrorist", "output": "⠞⠻⠗⠕⠗⠊⠌" }, { "input": "terrorist's", "output": "⠞⠻⠗⠕⠗⠊⠌⠄⠎" }, { "input": "terrorists", "output": "⠞⠻⠗⠕⠗⠊⠌⠎" }, { "input": "terrorize", "output": "⠞⠻⠗⠕⠗⠊⠵⠑" }, { "input": "terrorized", "output": "⠞⠻⠗⠕⠗⠊⠵⠫" }, { "input": "terrorizes", "output": "⠞⠻⠗⠕⠗⠊⠵⠑⠎" }, { "input": "terrorizing", "output": "⠞⠻⠗⠕⠗⠊⠵⠌" }, { "input": "terrors", "output": "⠞⠻⠗⠕⠗⠎" }, { "input": "terry", "output": "⠞⠻⠗⠽" }, { "input": "terry's", "output": "⠞⠻⠗⠽⠄⠎" }, { "input": "terrycloth", "output": "⠞⠻⠗⠽⠉⠇⠕⠹" }, { "input": "terrycloth's", "output": "⠞⠻⠗⠽⠉⠇⠕⠹⠄⠎" }, { "input": "terse", "output": "⠞⠻⠎⠑" }, { "input": "tersely", "output": "⠞⠻⠎⠑⠇⠽" }, { "input": "terseness", "output": "⠞⠻⠎⠑⠰⠎" }, { "input": "terseness's", "output": "⠞⠻⠎⠑⠰⠎⠄⠎" }, { "input": "terser", "output": "⠞⠻⠎⠻" }, { "input": "tersest", "output": "⠞⠻⠎⠑⠌" }, { "input": "tertiary", "output": "⠞⠻⠞⠊⠜⠽" }, { "input": "test", "output": "â žâ ‘â Œ" }, { "input": "test's", "output": "⠞⠑⠌⠄⠎" }, { "input": "testable", "output": "â žâ ‘â Œâ â ¼" }, { "input": "testament", "output": "â žâ ‘â Œâ â °â ž" }, { "input": "testament's", "output": "â žâ ‘â Œâ â °â žâ „â Ž" }, { "input": "testamentary", "output": "â žâ ‘â Œâ â °â žâ œâ ½" }, { "input": "testaments", "output": "â žâ ‘â Œâ â °â žâ Ž" }, { "input": "testate", "output": "â žâ ‘â Œâ â žâ ‘" }, { "input": "testates", "output": "â žâ ‘â Œâ â žâ ‘â Ž" }, { "input": "testator", "output": "â žâ ‘â Œâ â žâ •â —" }, { "input": "testator's", "output": "â žâ ‘â Œâ â žâ •â —â „â Ž" }, { "input": "testators", "output": "â žâ ‘â Œâ â žâ •â —â Ž" }, { "input": "testatrices", "output": "â žâ ‘â Œâ â žâ —⠊⠉⠑⠎" }, { "input": "testatrix", "output": "â žâ ‘â Œâ â žâ —â Šâ ­" }, { "input": "testatrix's", "output": "â žâ ‘â Œâ â žâ —â Šâ ­â „â Ž" }, { "input": "tested", "output": "⠞⠑⠌⠫" }, { "input": "tester", "output": "⠞⠑⠌⠻" }, { "input": "tester's", "output": "⠞⠑⠌⠻⠄⠎" }, { "input": "testers", "output": "⠞⠑⠌⠻⠎" }, { "input": "testes", "output": "⠞⠑⠌⠑⠎" }, { "input": "testicle", "output": "⠞⠑⠌⠊⠉⠇⠑" }, { "input": "testicle's", "output": "⠞⠑⠌⠊⠉⠇⠑⠄⠎" }, { "input": "testicles", "output": "⠞⠑⠌⠊⠉⠇⠑⠎" }, { "input": "testier", "output": "⠞⠑⠌⠊⠻" }, { "input": "testiest", "output": "⠞⠑⠌⠊⠑⠌" }, { "input": "testified", "output": "⠞⠑⠌⠊⠋⠊⠫" }, { "input": "testifier", "output": "⠞⠑⠌⠊⠋⠊⠻" }, { "input": "testifier's", "output": "⠞⠑⠌⠊⠋⠊⠻⠄⠎" }, { "input": "testifiers", "output": "⠞⠑⠌⠊⠋⠊⠻⠎" }, { "input": "testifies", "output": "⠞⠑⠌⠊⠋⠊⠑⠎" }, { "input": "testify", "output": "⠞⠑⠌⠊⠋⠽" }, { "input": "testifying", "output": "⠞⠑⠌⠊⠋⠽⠌" }, { "input": "testily", "output": "⠞⠑⠌⠊⠇⠽" }, { "input": "testimonial", "output": "⠞⠑⠌⠊â â •â â Šâ â ‡" }, { "input": "testimonial's", "output": "⠞⠑⠌⠊â â •â â Šâ â ‡â „â Ž" }, { "input": "testimonials", "output": "⠞⠑⠌⠊â â •â â Šâ â ‡â Ž" }, { "input": "testimonies", "output": "⠞⠑⠌⠊â â •â â Šâ ‘â Ž" }, { "input": "testimony", "output": "⠞⠑⠌⠊â â •â â ½" }, { "input": "testimony's", "output": "⠞⠑⠌⠊â â •â â ½â „â Ž" }, { "input": "testiness", "output": "⠞⠑⠌⠊⠰⠎" }, { "input": "testiness's", "output": "⠞⠑⠌⠊⠰⠎⠄⠎" }, { "input": "testing", "output": "⠞⠑⠌⠌" }, { "input": "testings", "output": "⠞⠑⠌⠌⠎" }, { "input": "testis", "output": "⠞⠑⠌⠊⠎" }, { "input": "testis's", "output": "⠞⠑⠌⠊⠎⠄⠎" }, { "input": "testosterone", "output": "⠞⠑⠌⠕⠌⠻â â •" }, { "input": "testosterone's", "output": "⠞⠑⠌⠕⠌⠻â â •â „â Ž" }, { "input": "tests", "output": "⠞⠑⠌⠎" }, { "input": "testy", "output": "⠞⠑⠌⠽" }, { "input": "tetanus", "output": "â žâ ‘â žâ â â ¥â Ž" }, { "input": "tetanus's", "output": "â žâ ‘â žâ â â ¥â Žâ „â Ž" }, { "input": "tether", "output": "⠞⠑⠮⠗" }, { "input": "tether's", "output": "⠞⠑⠮⠗⠄⠎" }, { "input": "tethered", "output": "⠞⠑⠮⠗⠫" }, { "input": "tethering", "output": "⠞⠑⠮⠗⠌" }, { "input": "tethers", "output": "⠞⠑⠮⠗⠎" }, { "input": "tetra", "output": "â žâ ‘â žâ —â " }, { "input": "tetra's", "output": "â žâ ‘â žâ —â â „â Ž" }, { "input": "tetracycline", "output": "â žâ ‘â žâ —â â ‰â ½â ‰â ‡â ”â ‘" }, { "input": "tetracycline's", "output": "â žâ ‘â žâ —â â ‰â ½â ‰â ‡â ”â ‘â „â Ž" }, { "input": "tetrahedral", "output": "â žâ ‘â žâ —â â “â «â —â â ‡" }, { "input": "tetrahedron", "output": "â žâ ‘â žâ —â â “â «â —â •â " }, { "input": "tetrahedron's", "output": "â žâ ‘â žâ —â â “â «â —â •â â „â Ž" }, { "input": "tetrahedrons", "output": "â žâ ‘â žâ —â â “â «â —â •â â Ž" }, { "input": "tetrameter", "output": "â žâ ‘â žâ —â â â ‘â žâ »" }, { "input": "tetrameter's", "output": "â žâ ‘â žâ —â â â ‘⠞⠻⠄⠎" }, { "input": "tetrameters", "output": "â žâ ‘â žâ —â â â ‘⠞⠻⠎" }, { "input": "tetras", "output": "â žâ ‘â žâ —â â Ž" }, { "input": "text", "output": "â žâ ‘â ­â ž" }, { "input": "text's", "output": "â žâ ‘â ­â žâ „â Ž" }, { "input": "textbook", "output": "⠞⠑⠭⠞⠃⠕⠕⠅" }, { "input": "textbook's", "output": "⠞⠑⠭⠞⠃⠕⠕⠅⠄⠎" }, { "input": "textbooks", "output": "⠞⠑⠭⠞⠃⠕⠕⠅⠎" }, { "input": "textile", "output": "⠞⠑⠭⠞⠊⠇⠑" }, { "input": "textile's", "output": "⠞⠑⠭⠞⠊⠇⠑⠄⠎" }, { "input": "textiles", "output": "⠞⠑⠭⠞⠊⠇⠑⠎" }, { "input": "texts", "output": "â žâ ‘â ­â žâ Ž" }, { "input": "textual", "output": "â žâ ‘â ­â žâ ¥â â ‡" }, { "input": "textually", "output": "⠞⠑⠭⠞⠥⠠⠽" }, { "input": "textural", "output": "⠞⠑⠭⠞⠥⠗â â ‡" }, { "input": "texture", "output": "⠞⠑⠭⠞⠥⠗⠑" }, { "input": "texture's", "output": "⠞⠑⠭⠞⠥⠗⠑⠄⠎" }, { "input": "textured", "output": "⠞⠑⠭⠞⠥⠗⠫" }, { "input": "textures", "output": "⠞⠑⠭⠞⠥⠗⠑⠎" }, { "input": "texturing", "output": "⠞⠑⠭⠞⠥⠗⠌" }, { "input": "thalami", "output": "â ¹â â ‡â â â Š" }, { "input": "thalamus", "output": "â ¹â â ‡â â â ¥â Ž" }, { "input": "thalamus's", "output": "â ¹â â ‡â â â ¥â Žâ „â Ž" }, { "input": "thalidomide's", "output": "â ¹â â ‡â Šâ ™â •â â Šâ ™â ‘â „â Ž" }, { "input": "thallium", "output": "â ¹â â ‡â ‡â Šâ ¥â " }, { "input": "thallium's", "output": "â ¹â â ‡â ‡â Šâ ¥â â „â Ž" }, { "input": "than", "output": "â ¹â â " }, { "input": "thane", "output": "â ¹â â â ‘" }, { "input": "thane's", "output": "â ¹â â â ‘â „â Ž" }, { "input": "thanes", "output": "â ¹â â â ‘â Ž" }, { "input": "thank", "output": "â ¹â â â …" }, { "input": "thanked", "output": "â ¹â â â …â «" }, { "input": "thankful", "output": "â ¹â â â …â °â ‡" }, { "input": "thankfully", "output": "â ¹â â â …⠰⠇⠇⠽" }, { "input": "thankfulness", "output": "â ¹â â â …⠰⠇⠰⠎" }, { "input": "thankfulness's", "output": "â ¹â â â …⠰⠇⠰⠎⠄⠎" }, { "input": "thanking", "output": "â ¹â â â …â Œ" }, { "input": "thankless", "output": "â ¹â â â …⠨⠎" }, { "input": "thanklessly", "output": "â ¹â â â …⠨⠎⠇⠽" }, { "input": "thanklessness", "output": "â ¹â â â …⠨⠎⠰⠎" }, { "input": "thanklessness's", "output": "â ¹â â â …⠨⠎⠰⠎⠄⠎" }, { "input": "thanks", "output": "â ¹â â â …â Ž" }, { "input": "thanksgiving", "output": "â ¹â â â …⠎⠛⠊⠧⠌" }, { "input": "thanksgiving's", "output": "â ¹â â â …⠎⠛⠊⠧⠌⠄⠎" }, { "input": "thanksgivings", "output": "â ¹â â â …⠎⠛⠊⠧⠌⠎" }, { "input": "that", "output": "â ž" }, { "input": "that's", "output": "â žâ „â Ž" }, { "input": "thatch", "output": "â ¹â â žâ ¡" }, { "input": "thatch's", "output": "â ¹â â žâ ¡â „â Ž" }, { "input": "thatched", "output": "â ¹â â žâ ¡â «" }, { "input": "thatcher", "output": "â ¹â â žâ ¡â »" }, { "input": "thatches", "output": "â ¹â â žâ ¡â ‘â Ž" }, { "input": "thatching", "output": "â ¹â â žâ ¡â Œ" }, { "input": "thatching's", "output": "â ¹â â žâ ¡â Œâ „â Ž" }, { "input": "thaw", "output": "â ¹â â º" }, { "input": "thaw's", "output": "â ¹â â ºâ „â Ž" }, { "input": "thawed", "output": "â ¹â â ºâ «" }, { "input": "thawing", "output": "â ¹â â ºâ Œ" }, { "input": "thaws", "output": "â ¹â â ºâ Ž" }, { "input": "the", "output": "â ®" }, { "input": "theater", "output": "â ®â â žâ »" }, { "input": "theater's", "output": "â ®â â žâ »â „â Ž" }, { "input": "theatergoer", "output": "â ®â â žâ »â ›â •â »" }, { "input": "theatergoer's", "output": "â ®â â žâ »â ›â •⠻⠄⠎" }, { "input": "theatergoers", "output": "â ®â â žâ »â ›â •⠻⠎" }, { "input": "theaters", "output": "â ®â â žâ »â Ž" }, { "input": "theatrical", "output": "â ®â â žâ —â Šâ ‰â â ‡" }, { "input": "theatricality's", "output": "â ®â â žâ —â Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "theatrically", "output": "â ®â â žâ —⠊⠉⠠⠽" }, { "input": "theatricals's", "output": "â ®â â žâ —â Šâ ‰â â ‡â Žâ „â Ž" }, { "input": "theatrics", "output": "â ®â â žâ —⠊⠉⠎" }, { "input": "theatrics's", "output": "â ®â â žâ —⠊⠉⠎⠄⠎" }, { "input": "thee", "output": "⠮⠑" }, { "input": "thees", "output": "⠮⠑⠎" }, { "input": "theft", "output": "⠮⠋⠞" }, { "input": "theft's", "output": "⠮⠋⠞⠄⠎" }, { "input": "thefts", "output": "⠮⠋⠞⠎" }, { "input": "their", "output": "⠸⠮" }, { "input": "theirs", "output": "⠸⠮⠎" }, { "input": "theism", "output": "⠮⠊⠎â " }, { "input": "theism's", "output": "⠮⠊⠎â â „â Ž" }, { "input": "theist", "output": "⠮⠊⠌" }, { "input": "theist's", "output": "⠮⠊⠌⠄⠎" }, { "input": "theistic", "output": "⠮⠊⠌⠊⠉" }, { "input": "theists", "output": "⠮⠊⠌⠎" }, { "input": "them", "output": "â ®â " }, { "input": "thematic", "output": "â ®â â â žâ Šâ ‰" }, { "input": "thematically", "output": "â ®â â â žâ Šâ ‰â  â ½" }, { "input": "theme", "output": "â ®â â ‘" }, { "input": "theme's", "output": "â ®â â ‘â „â Ž" }, { "input": "themes", "output": "â ®â â ‘â Ž" }, { "input": "themselves", "output": "â ®â â §â Ž" }, { "input": "then", "output": "â ®â " }, { "input": "then's", "output": "â ®â â „â Ž" }, { "input": "thence", "output": "⠹⠰⠑" }, { "input": "thenceforth", "output": "⠹⠰⠑⠿⠹" }, { "input": "thenceforward", "output": "⠹⠰⠑⠿⠺⠜⠙" }, { "input": "theocracies", "output": "⠮⠕⠉⠗â â ‰â Šâ ‘â Ž" }, { "input": "theocracy", "output": "⠮⠕⠉⠗â â ‰â ½" }, { "input": "theocracy's", "output": "⠮⠕⠉⠗â â ‰â ½â „â Ž" }, { "input": "theocratic", "output": "⠮⠕⠉⠗â â žâ Šâ ‰" }, { "input": "theologian", "output": "⠮⠕⠇⠕⠛⠊â â " }, { "input": "theologian's", "output": "⠮⠕⠇⠕⠛⠊â â â „â Ž" }, { "input": "theologians", "output": "⠮⠕⠇⠕⠛⠊â â â Ž" }, { "input": "theological", "output": "⠮⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "theologies", "output": "⠮⠕⠇⠕⠛⠊⠑⠎" }, { "input": "theology", "output": "⠮⠕⠇⠕⠛⠽" }, { "input": "theology's", "output": "⠮⠕⠇⠕⠛⠽⠄⠎" }, { "input": "theorem", "output": "⠮⠕⠗⠑â " }, { "input": "theorem's", "output": "⠮⠕⠗⠑â â „â Ž" }, { "input": "theorems", "output": "⠮⠕⠗⠑â â Ž" }, { "input": "theoretic", "output": "⠮⠕⠗⠑⠞⠊⠉" }, { "input": "theoretical", "output": "⠮⠕⠗⠑⠞⠊⠉â â ‡" }, { "input": "theoretically", "output": "⠮⠕⠗⠑⠞⠊⠉⠠⠽" }, { "input": "theoretician", "output": "⠮⠕⠗⠑⠞⠊⠉⠊â â " }, { "input": "theoretician's", "output": "⠮⠕⠗⠑⠞⠊⠉⠊â â â „â Ž" }, { "input": "theoreticians", "output": "⠮⠕⠗⠑⠞⠊⠉⠊â â â Ž" }, { "input": "theories", "output": "⠮⠕⠗⠊⠑⠎" }, { "input": "theorist", "output": "⠮⠕⠗⠊⠌" }, { "input": "theorist's", "output": "⠮⠕⠗⠊⠌⠄⠎" }, { "input": "theorists", "output": "⠮⠕⠗⠊⠌⠎" }, { "input": "theorize", "output": "⠮⠕⠗⠊⠵⠑" }, { "input": "theorized", "output": "⠮⠕⠗⠊⠵⠫" }, { "input": "theorizes", "output": "⠮⠕⠗⠊⠵⠑⠎" }, { "input": "theorizing", "output": "⠮⠕⠗⠊⠵⠌" }, { "input": "theory", "output": "⠮⠕⠗⠽" }, { "input": "theory's", "output": "⠮⠕⠗⠽⠄⠎" }, { "input": "theosophic", "output": "⠮⠕⠎⠕â â “â Šâ ‰" }, { "input": "theosophical", "output": "⠮⠕⠎⠕â â “â Šâ ‰â â ‡" }, { "input": "theosophist", "output": "⠮⠕⠎⠕â â “â Šâ Œ" }, { "input": "theosophist's", "output": "⠮⠕⠎⠕â â “⠊⠌⠄⠎" }, { "input": "theosophists", "output": "⠮⠕⠎⠕â â “⠊⠌⠎" }, { "input": "theosophy", "output": "⠮⠕⠎⠕â â “â ½" }, { "input": "theosophy's", "output": "⠮⠕⠎⠕â â “⠽⠄⠎" }, { "input": "therapeutic", "output": "⠮⠗â â â ‘⠥⠞⠊⠉" }, { "input": "therapeutically", "output": "⠮⠗â â â ‘⠥⠞⠊⠉⠠⠽" }, { "input": "therapeutics", "output": "⠮⠗â â â ‘⠥⠞⠊⠉⠎" }, { "input": "therapeutics's", "output": "⠮⠗â â â ‘⠥⠞⠊⠉⠎⠄⠎" }, { "input": "therapies", "output": "⠮⠗â â â Šâ ‘â Ž" }, { "input": "therapist", "output": "⠮⠗â â â Šâ Œ" }, { "input": "therapist's", "output": "⠮⠗â â â Šâ Œâ „â Ž" }, { "input": "therapists", "output": "⠮⠗â â â Šâ Œâ Ž" }, { "input": "therapy", "output": "⠮⠗â â â ½" }, { "input": "therapy's", "output": "⠮⠗â â â ½â „â Ž" }, { "input": "there", "output": "â â ®" }, { "input": "there's", "output": "â â ®â „â Ž" }, { "input": "thereabout", "output": "â â ®â â ƒ" }, { "input": "thereabouts", "output": "â â ®â â ƒâ Ž" }, { "input": "thereafter", "output": "â â ®â â ‹" }, { "input": "thereat", "output": "â â ®â â ž" }, { "input": "thereby", "output": "â â ®â ƒâ ½" }, { "input": "therefor", "output": "â â ®â ¿" }, { "input": "therefore", "output": "â â ®â ¿â ‘" }, { "input": "therefrom", "output": "â â ®â ‹â —â •â " }, { "input": "therein", "output": "â â ®â ”" }, { "input": "thereof", "output": "â â ®â ·" }, { "input": "thereon", "output": "â â ®â •â " }, { "input": "thereto", "output": "â â ®â žâ •" }, { "input": "theretofore", "output": "â â ®â žâ •â ¿â ‘" }, { "input": "thereunto", "output": "â â ®â ¥â â žâ •" }, { "input": "thereupon", "output": "â â ®â ˜â ¥" }, { "input": "therewith", "output": "â â ®â ¾" }, { "input": "thermal", "output": "⠮⠗â â â ‡" }, { "input": "thermal's", "output": "⠮⠗â â â ‡â „â Ž" }, { "input": "thermally", "output": "⠮⠗â â  â ½" }, { "input": "thermals", "output": "⠮⠗â â â ‡â Ž" }, { "input": "thermionic", "output": "⠮⠗â â Šâ •â â Šâ ‰" }, { "input": "thermodynamic", "output": "⠮⠗â â •⠙⠽â â â â Šâ ‰" }, { "input": "thermodynamics", "output": "⠮⠗â â •⠙⠽â â â â Šâ ‰â Ž" }, { "input": "thermodynamics's", "output": "⠮⠗â â •⠙⠽â â â â Šâ ‰â Žâ „â Ž" }, { "input": "thermometer", "output": "⠮⠗â â •â â ‘â žâ »" }, { "input": "thermometer's", "output": "⠮⠗â â •â â ‘⠞⠻⠄⠎" }, { "input": "thermometers", "output": "⠮⠗â â •â â ‘⠞⠻⠎" }, { "input": "thermometric", "output": "⠮⠗â â •â â ‘â žâ —â Šâ ‰" }, { "input": "thermonuclear", "output": "⠮⠗â â •â â ¥â ‰â ‡â ‘â œ" }, { "input": "thermoplastic", "output": "⠮⠗â â •â â ‡â â Œâ Šâ ‰" }, { "input": "thermoplastic's", "output": "⠮⠗â â •â â ‡â â Œâ Šâ ‰â „â Ž" }, { "input": "thermoplastics", "output": "⠮⠗â â •â â ‡â â Œâ Šâ ‰â Ž" }, { "input": "thermos", "output": "⠮⠗â â •â Ž" }, { "input": "thermos's", "output": "⠮⠗â â •â Žâ „â Ž" }, { "input": "thermoses", "output": "⠮⠗â â •â Žâ ‘â Ž" }, { "input": "thermostat", "output": "⠮⠗â â •â Œâ â ž" }, { "input": "thermostat's", "output": "⠮⠗â â •â Œâ â žâ „â Ž" }, { "input": "thermostatic", "output": "⠮⠗â â •â Œâ â žâ Šâ ‰" }, { "input": "thermostats", "output": "⠮⠗â â •â Œâ â žâ Ž" }, { "input": "thesauri", "output": "⠮⠎â â ¥â —â Š" }, { "input": "thesaurus", "output": "⠮⠎â â ¥â —⠥⠎" }, { "input": "thesaurus's", "output": "⠮⠎â â ¥â —⠥⠎⠄⠎" }, { "input": "thesauruses", "output": "⠮⠎â â ¥â —⠥⠎⠑⠎" }, { "input": "these", "output": "⠘⠮" }, { "input": "theses", "output": "⠮⠎⠑⠎" }, { "input": "thesis", "output": "⠮⠎⠊⠎" }, { "input": "thesis's", "output": "⠮⠎⠊⠎⠄⠎" }, { "input": "thespian", "output": "⠮⠎â â Šâ â " }, { "input": "thespian's", "output": "⠮⠎â â Šâ â â „â Ž" }, { "input": "thespians", "output": "⠮⠎â â Šâ â â Ž" }, { "input": "theta", "output": "⠮⠞â " }, { "input": "theta's", "output": "⠮⠞â â „â Ž" }, { "input": "thetas", "output": "⠮⠞â â Ž" }, { "input": "thew", "output": "⠮⠺" }, { "input": "thew's", "output": "⠮⠺⠄⠎" }, { "input": "thews", "output": "⠮⠺⠎" }, { "input": "they", "output": "⠮⠽" }, { "input": "thiamine", "output": "⠹⠊â â â ”â ‘" }, { "input": "thiamine's", "output": "⠹⠊â â â ”â ‘â „â Ž" }, { "input": "thick", "output": "⠹⠊⠉⠅" }, { "input": "thick's", "output": "⠹⠊⠉⠅⠄⠎" }, { "input": "thicken", "output": "⠹⠊⠉⠅⠢" }, { "input": "thickened", "output": "⠹⠊⠉⠅⠢⠫" }, { "input": "thickener", "output": "⠹⠊⠉⠅⠢⠻" }, { "input": "thickener's", "output": "⠹⠊⠉⠅⠢⠻⠄⠎" }, { "input": "thickeners", "output": "⠹⠊⠉⠅⠢⠻⠎" }, { "input": "thickening", "output": "⠹⠊⠉⠅⠢⠌" }, { "input": "thickening's", "output": "⠹⠊⠉⠅⠢⠌⠄⠎" }, { "input": "thickenings", "output": "⠹⠊⠉⠅⠢⠌⠎" }, { "input": "thickens", "output": "⠹⠊⠉⠅⠢⠎" }, { "input": "thicker", "output": "⠹⠊⠉⠅⠻" }, { "input": "thickest", "output": "⠹⠊⠉⠅⠑⠌" }, { "input": "thicket", "output": "⠹⠊⠉⠅⠑⠞" }, { "input": "thicket's", "output": "⠹⠊⠉⠅⠑⠞⠄⠎" }, { "input": "thickets", "output": "⠹⠊⠉⠅⠑⠞⠎" }, { "input": "thickheaded", "output": "⠹⠊⠉⠅⠓⠂⠙⠫" }, { "input": "thickheaded's", "output": "⠹⠊⠉⠅⠓⠂⠙⠫⠄⠎" }, { "input": "thickly", "output": "⠹⠊⠉⠅⠇⠽" }, { "input": "thickness", "output": "⠹⠊⠉⠅⠰⠎" }, { "input": "thickness's", "output": "⠹⠊⠉⠅⠰⠎⠄⠎" }, { "input": "thicknesses", "output": "⠹⠊⠉⠅⠰⠎⠑⠎" }, { "input": "thickset", "output": "⠹⠊⠉⠅⠎⠑⠞" }, { "input": "thief", "output": "⠹⠊⠑⠋" }, { "input": "thief's", "output": "⠹⠊⠑⠋⠄⠎" }, { "input": "thieve", "output": "⠹⠊⠑⠧⠑" }, { "input": "thieved", "output": "⠹⠊⠑⠧⠫" }, { "input": "thievery", "output": "⠹⠊⠑⠧⠻⠽" }, { "input": "thievery's", "output": "⠹⠊⠑⠧⠻⠽⠄⠎" }, { "input": "thieves", "output": "⠹⠊⠑⠧⠑⠎" }, { "input": "thieving", "output": "⠹⠊⠑⠧⠌" }, { "input": "thieving's", "output": "⠹⠊⠑⠧⠌⠄⠎" }, { "input": "thievish", "output": "⠹⠊⠑⠧⠊⠩" }, { "input": "thigh", "output": "⠹⠊⠣" }, { "input": "thigh's", "output": "⠹⠊⠣⠄⠎" }, { "input": "thighbone", "output": "⠹⠊⠣⠃â â •" }, { "input": "thighbone's", "output": "⠹⠊⠣⠃â â •â „â Ž" }, { "input": "thighbones", "output": "⠹⠊⠣⠃â â •â Ž" }, { "input": "thighs", "output": "⠹⠊⠣⠎" }, { "input": "thimble", "output": "⠹⠊â â ¼" }, { "input": "thimble's", "output": "⠹⠊â â ¼â „â Ž" }, { "input": "thimbleful", "output": "⠹⠊â â ¼â °â ‡" }, { "input": "thimbleful's", "output": "⠹⠊â â ¼â °â ‡â „â Ž" }, { "input": "thimblefuls", "output": "⠹⠊â â ¼â °â ‡â Ž" }, { "input": "thimbles", "output": "⠹⠊â â ¼â Ž" }, { "input": "thin", "output": "⠹⠔" }, { "input": "thine", "output": "⠹⠔⠑" }, { "input": "thing", "output": "⠹⠌" }, { "input": "thing's", "output": "⠹⠌⠄⠎" }, { "input": "thingamajig", "output": "⠹⠌â â â â šâ Šâ ›" }, { "input": "thingamajig's", "output": "⠹⠌â â â â šâ Šâ ›â „â Ž" }, { "input": "thingamajigs", "output": "⠹⠌â â â â šâ Šâ ›â Ž" }, { "input": "things", "output": "⠹⠌⠎" }, { "input": "think", "output": "⠹⠔⠅" }, { "input": "thinker", "output": "⠹⠔⠅⠻" }, { "input": "thinker's", "output": "⠹⠔⠅⠻⠄⠎" }, { "input": "thinkers", "output": "⠹⠔⠅⠻⠎" }, { "input": "thinking", "output": "⠹⠔⠅⠌" }, { "input": "thinking's", "output": "⠹⠔⠅⠌⠄⠎" }, { "input": "thinks", "output": "⠹⠔⠅⠎" }, { "input": "thinly", "output": "⠹⠔⠇⠽" }, { "input": "thinned", "output": "⠹⠔â â «" }, { "input": "thinner", "output": "⠹⠔â â »" }, { "input": "thinner's", "output": "⠹⠔â â »â „â Ž" }, { "input": "thinners", "output": "⠹⠔â â »â Ž" }, { "input": "thinness", "output": "⠹⠔⠰⠎" }, { "input": "thinness's", "output": "⠹⠔⠰⠎⠄⠎" }, { "input": "thinnest", "output": "⠹⠔â â ‘â Œ" }, { "input": "thinning", "output": "⠹⠔â â Œ" }, { "input": "thins", "output": "⠹⠔⠎" }, { "input": "third", "output": "⠹⠊⠗⠙" }, { "input": "third's", "output": "⠹⠊⠗⠙⠄⠎" }, { "input": "thirdly", "output": "⠹⠊⠗⠙⠇⠽" }, { "input": "thirds", "output": "⠹⠊⠗⠙⠎" }, { "input": "thirst", "output": "⠹⠊⠗⠌" }, { "input": "thirst's", "output": "⠹⠊⠗⠌⠄⠎" }, { "input": "thirsted", "output": "⠹⠊⠗⠌⠫" }, { "input": "thirstier", "output": "⠹⠊⠗⠌⠊⠻" }, { "input": "thirstiest", "output": "⠹⠊⠗⠌⠊⠑⠌" }, { "input": "thirstily", "output": "⠹⠊⠗⠌⠊⠇⠽" }, { "input": "thirstiness", "output": "⠹⠊⠗⠌⠊⠰⠎" }, { "input": "thirstiness's", "output": "⠹⠊⠗⠌⠊⠰⠎⠄⠎" }, { "input": "thirsting", "output": "⠹⠊⠗⠌⠌" }, { "input": "thirsts", "output": "⠹⠊⠗⠌⠎" }, { "input": "thirsty", "output": "⠹⠊⠗⠌⠽" }, { "input": "thirteen", "output": "⠹⠊⠗⠞⠑⠢" }, { "input": "thirteen's", "output": "⠹⠊⠗⠞⠑⠢⠄⠎" }, { "input": "thirteens", "output": "⠹⠊⠗⠞⠑⠢⠎" }, { "input": "thirteenth", "output": "⠹⠊⠗⠞⠑⠢⠹" }, { "input": "thirteenth's", "output": "⠹⠊⠗⠞⠑⠢⠹⠄⠎" }, { "input": "thirteenths", "output": "⠹⠊⠗⠞⠑⠢⠹⠎" }, { "input": "thirties", "output": "⠹⠊⠗⠞⠊⠑⠎" }, { "input": "thirtieth", "output": "⠹⠊⠗⠞⠊⠑⠹" }, { "input": "thirtieth's", "output": "⠹⠊⠗⠞⠊⠑⠹⠄⠎" }, { "input": "thirtieths", "output": "⠹⠊⠗⠞⠊⠑⠹⠎" }, { "input": "thirty", "output": "⠹⠊⠗⠞⠽" }, { "input": "thirty's", "output": "⠹⠊⠗⠞⠽⠄⠎" }, { "input": "this", "output": "â ¹" }, { "input": "thistle", "output": "⠹⠊⠌⠇⠑" }, { "input": "thistle's", "output": "⠹⠊⠌⠇⠑⠄⠎" }, { "input": "thistledown", "output": "⠹⠊⠌⠇⠑⠙⠪â " }, { "input": "thistledown's", "output": "⠹⠊⠌⠇⠑⠙⠪â â „â Ž" }, { "input": "thistles", "output": "⠹⠊⠌⠇⠑⠎" }, { "input": "thither", "output": "⠹⠊⠮⠗" }, { "input": "tho", "output": "⠹⠕" }, { "input": "thole", "output": "⠹⠕⠇⠑" }, { "input": "thole's", "output": "⠹⠕⠇⠑⠄⠎" }, { "input": "tholes", "output": "⠹⠕⠇⠑⠎" }, { "input": "thong", "output": "⠹⠰⠛" }, { "input": "thong's", "output": "⠹⠰⠛⠄⠎" }, { "input": "thongs", "output": "⠹⠰⠛⠎" }, { "input": "thoracic", "output": "⠹⠕⠗â â ‰â Šâ ‰" }, { "input": "thorax", "output": "⠹⠕⠗â â ­" }, { "input": "thorax's", "output": "⠹⠕⠗â â ­â „â Ž" }, { "input": "thoraxes", "output": "⠹⠕⠗â â ­â ‘â Ž" }, { "input": "thorium", "output": "⠹⠕⠗⠊⠥â " }, { "input": "thorium's", "output": "⠹⠕⠗⠊⠥â â „â Ž" }, { "input": "thorn", "output": "⠹⠕⠗â " }, { "input": "thorn's", "output": "⠹⠕⠗â â „â Ž" }, { "input": "thornier", "output": "⠹⠕⠗â â Šâ »" }, { "input": "thorniest", "output": "⠹⠕⠗â â Šâ ‘â Œ" }, { "input": "thorniness", "output": "⠹⠕⠗â â Šâ °â Ž" }, { "input": "thorniness's", "output": "⠹⠕⠗â â Šâ °â Žâ „â Ž" }, { "input": "thorns", "output": "⠹⠕⠗â â Ž" }, { "input": "thorny", "output": "⠹⠕⠗â â ½" }, { "input": "thorough", "output": "⠹⠕⠗⠳⠣" }, { "input": "thoroughbred", "output": "⠹⠕⠗⠳⠣⠃⠗⠫" }, { "input": "thoroughbred's", "output": "⠹⠕⠗⠳⠣⠃⠗⠫⠄⠎" }, { "input": "thoroughbreds", "output": "⠹⠕⠗⠳⠣⠃⠗⠫⠎" }, { "input": "thorougher", "output": "⠹⠕⠗⠳⠣⠻" }, { "input": "thoroughest", "output": "⠹⠕⠗⠳⠣⠑⠌" }, { "input": "thoroughfare", "output": "⠹⠕⠗⠳⠣⠋⠜⠑" }, { "input": "thoroughfare's", "output": "⠹⠕⠗⠳⠣⠋⠜⠑⠄⠎" }, { "input": "thoroughfares", "output": "⠹⠕⠗⠳⠣⠋⠜⠑⠎" }, { "input": "thoroughgoing", "output": "⠹⠕⠗⠳⠣⠛⠕⠌" }, { "input": "thoroughly", "output": "⠹⠕⠗⠳⠣⠇⠽" }, { "input": "thoroughness", "output": "⠹⠕⠗⠳⠣⠰⠎" }, { "input": "thoroughness's", "output": "⠹⠕⠗⠳⠣⠰⠎⠄⠎" }, { "input": "those", "output": "⠘⠹" }, { "input": "thou", "output": "⠹⠳" }, { "input": "thou's", "output": "⠹⠳⠄⠎" }, { "input": "though", "output": "⠹⠳⠣" }, { "input": "thought", "output": "â ¹â â ³" }, { "input": "thought's", "output": "â ¹â â ³â „â Ž" }, { "input": "thoughtful", "output": "â ¹â â ³â °â ‡" }, { "input": "thoughtfully", "output": "â ¹â â ³â °â ‡â ‡â ½" }, { "input": "thoughtfulness", "output": "â ¹â â ³â °â ‡â °â Ž" }, { "input": "thoughtfulness's", "output": "â ¹â â ³â °â ‡â °â Žâ „â Ž" }, { "input": "thoughtless", "output": "â ¹â â ³â ¨â Ž" }, { "input": "thoughtlessly", "output": "â ¹â â ³â ¨â Žâ ‡â ½" }, { "input": "thoughtlessness", "output": "â ¹â â ³â ¨â Žâ °â Ž" }, { "input": "thoughtlessness's", "output": "â ¹â â ³â ¨â Žâ °â Žâ „â Ž" }, { "input": "thoughts", "output": "â ¹â â ³â Ž" }, { "input": "thous", "output": "⠹⠳⠎" }, { "input": "thousand", "output": "⠹⠳⠎⠯" }, { "input": "thousand's", "output": "⠹⠳⠎⠯⠄⠎" }, { "input": "thousandfold", "output": "⠹⠳⠎⠯⠋⠕⠇⠙" }, { "input": "thousands", "output": "⠹⠳⠎⠯⠎" }, { "input": "thousandth", "output": "⠹⠳⠎⠯⠹" }, { "input": "thousandth's", "output": "⠹⠳⠎⠯⠹⠄⠎" }, { "input": "thousandths", "output": "⠹⠳⠎⠯⠹⠎" }, { "input": "thrall", "output": "⠹⠗â â ‡â ‡" }, { "input": "thrall's", "output": "⠹⠗â â ‡â ‡â „â Ž" }, { "input": "thralldom", "output": "⠹⠗â â ‡â ‡â ™â •â " }, { "input": "thralldom's", "output": "⠹⠗â â ‡â ‡â ™â •â â „â Ž" }, { "input": "thralled", "output": "⠹⠗â â ‡â ‡â «" }, { "input": "thralling", "output": "⠹⠗â â ‡â ‡â Œ" }, { "input": "thralls", "output": "⠹⠗â â ‡â ‡â Ž" }, { "input": "thrash", "output": "⠹⠗â â ©" }, { "input": "thrash's", "output": "⠹⠗â â ©â „â Ž" }, { "input": "thrashed", "output": "⠹⠗â â ©â «" }, { "input": "thrasher", "output": "⠹⠗â â ©â »" }, { "input": "thrasher's", "output": "⠹⠗â â ©â »â „â Ž" }, { "input": "thrashers", "output": "⠹⠗â â ©â »â Ž" }, { "input": "thrashes", "output": "⠹⠗â â ©â ‘â Ž" }, { "input": "thrashing", "output": "⠹⠗â â ©â Œ" }, { "input": "thrashing's", "output": "⠹⠗â â ©â Œâ „â Ž" }, { "input": "thrashings", "output": "⠹⠗â â ©â Œâ Ž" }, { "input": "thread", "output": "⠹⠗⠂⠙" }, { "input": "thread's", "output": "⠹⠗⠂⠙⠄⠎" }, { "input": "threadbare", "output": "⠹⠗⠂⠙⠃⠜⠑" }, { "input": "threaded", "output": "⠹⠗⠂⠙⠫" }, { "input": "threader", "output": "⠹⠗⠂⠙⠻" }, { "input": "threader's", "output": "⠹⠗⠂⠙⠻⠄⠎" }, { "input": "threaders", "output": "⠹⠗⠂⠙⠻⠎" }, { "input": "threadier", "output": "⠹⠗⠂⠙⠊⠻" }, { "input": "threadiest", "output": "⠹⠗⠂⠙⠊⠑⠌" }, { "input": "threading", "output": "⠹⠗⠂⠙⠌" }, { "input": "threadlike", "output": "⠹⠗⠂⠙⠇⠊⠅⠑" }, { "input": "threads", "output": "⠹⠗⠂⠙⠎" }, { "input": "thready", "output": "⠹⠗⠂⠙⠽" }, { "input": "threat", "output": "⠹⠗⠂⠞" }, { "input": "threat's", "output": "⠹⠗⠂⠞⠄⠎" }, { "input": "threaten", "output": "⠹⠗⠂⠞⠢" }, { "input": "threatened", "output": "⠹⠗⠂⠞⠢⠫" }, { "input": "threatening", "output": "⠹⠗⠂⠞⠢⠌" }, { "input": "threateningly", "output": "⠹⠗⠂⠞⠢⠌⠇⠽" }, { "input": "threatens", "output": "⠹⠗⠂⠞⠢⠎" }, { "input": "threats", "output": "⠹⠗⠂⠞⠎" }, { "input": "three", "output": "⠹⠗⠑⠑" }, { "input": "three's", "output": "⠹⠗⠑⠑⠄⠎" }, { "input": "threefold", "output": "⠹⠗⠑⠑⠋⠕⠇⠙" }, { "input": "threes", "output": "⠹⠗⠑⠑⠎" }, { "input": "threescore", "output": "⠹⠗⠑⠑⠎⠉⠕⠗⠑" }, { "input": "threescore's", "output": "⠹⠗⠑⠑⠎⠉⠕⠗⠑⠄⠎" }, { "input": "threescores", "output": "⠹⠗⠑⠑⠎⠉⠕⠗⠑⠎" }, { "input": "threesome", "output": "⠹⠗⠑⠑â â Ž" }, { "input": "threesome's", "output": "⠹⠗⠑⠑â â Žâ „â Ž" }, { "input": "threesomes", "output": "⠹⠗⠑⠑â â Žâ Ž" }, { "input": "threnodies", "output": "⠹⠗⠢⠕⠙⠊⠑⠎" }, { "input": "threnody", "output": "⠹⠗⠢⠕⠙⠽" }, { "input": "threnody's", "output": "⠹⠗⠢⠕⠙⠽⠄⠎" }, { "input": "thresh", "output": "⠹⠗⠑⠩" }, { "input": "thresh's", "output": "⠹⠗⠑⠩⠄⠎" }, { "input": "threshed", "output": "⠹⠗⠑⠩⠫" }, { "input": "thresher", "output": "⠹⠗⠑⠩⠻" }, { "input": "thresher's", "output": "⠹⠗⠑⠩⠻⠄⠎" }, { "input": "threshers", "output": "⠹⠗⠑⠩⠻⠎" }, { "input": "threshes", "output": "⠹⠗⠑⠩⠑⠎" }, { "input": "threshing", "output": "⠹⠗⠑⠩⠌" }, { "input": "threshold", "output": "⠹⠗⠑⠩⠕⠇⠙" }, { "input": "threshold's", "output": "⠹⠗⠑⠩⠕⠇⠙⠄⠎" }, { "input": "thresholds", "output": "⠹⠗⠑⠩⠕⠇⠙⠎" }, { "input": "threw", "output": "⠹⠗⠑⠺" }, { "input": "thrice", "output": "⠹⠗⠊⠉⠑" }, { "input": "thrift", "output": "⠹⠗⠊⠋⠞" }, { "input": "thrift's", "output": "⠹⠗⠊⠋⠞⠄⠎" }, { "input": "thriftier", "output": "⠹⠗⠊⠋⠞⠊⠻" }, { "input": "thriftiest", "output": "⠹⠗⠊⠋⠞⠊⠑⠌" }, { "input": "thriftily", "output": "⠹⠗⠊⠋⠞⠊⠇⠽" }, { "input": "thriftiness", "output": "⠹⠗⠊⠋⠞⠊⠰⠎" }, { "input": "thriftiness's", "output": "⠹⠗⠊⠋⠞⠊⠰⠎⠄⠎" }, { "input": "thriftless", "output": "⠹⠗⠊⠋⠞⠨⠎" }, { "input": "thrifts", "output": "⠹⠗⠊⠋⠞⠎" }, { "input": "thrifty", "output": "⠹⠗⠊⠋⠞⠽" }, { "input": "thrill", "output": "⠹⠗⠊⠇⠇" }, { "input": "thrill's", "output": "⠹⠗⠊⠇⠇⠄⠎" }, { "input": "thrilled", "output": "⠹⠗⠊⠇⠇⠫" }, { "input": "thriller", "output": "⠹⠗⠊⠇⠇⠻" }, { "input": "thriller's", "output": "⠹⠗⠊⠇⠇⠻⠄⠎" }, { "input": "thrillers", "output": "⠹⠗⠊⠇⠇⠻⠎" }, { "input": "thrilling", "output": "⠹⠗⠊⠇⠇⠌" }, { "input": "thrills", "output": "⠹⠗⠊⠇⠇⠎" }, { "input": "thrive", "output": "⠹⠗⠊⠧⠑" }, { "input": "thrived", "output": "⠹⠗⠊⠧⠫" }, { "input": "thrives", "output": "⠹⠗⠊⠧⠑⠎" }, { "input": "thriving", "output": "⠹⠗⠊⠧⠌" }, { "input": "throat", "output": "⠹⠗⠕â â ž" }, { "input": "throat's", "output": "⠹⠗⠕â â žâ „â Ž" }, { "input": "throatier", "output": "⠹⠗⠕â â žâ Šâ »" }, { "input": "throatiest", "output": "⠹⠗⠕â â žâ Šâ ‘â Œ" }, { "input": "throatily", "output": "⠹⠗⠕â â žâ Šâ ‡â ½" }, { "input": "throatiness", "output": "⠹⠗⠕â â žâ Šâ °â Ž" }, { "input": "throatiness's", "output": "⠹⠗⠕â â žâ Šâ °â Žâ „â Ž" }, { "input": "throats", "output": "⠹⠗⠕â â žâ Ž" }, { "input": "throaty", "output": "⠹⠗⠕â â žâ ½" }, { "input": "throb", "output": "⠹⠗⠕⠃" }, { "input": "throb's", "output": "⠹⠗⠕⠃⠄⠎" }, { "input": "throbbed", "output": "⠹⠗⠕⠆⠫" }, { "input": "throbbing", "output": "⠹⠗⠕⠆⠌" }, { "input": "throbs", "output": "⠹⠗⠕⠃⠎" }, { "input": "throe", "output": "⠹⠗⠕⠑" }, { "input": "throe's", "output": "⠹⠗⠕⠑⠄⠎" }, { "input": "throes", "output": "⠹⠗⠕⠑⠎" }, { "input": "thrombi", "output": "⠹⠗⠕â â ƒâ Š" }, { "input": "thromboses", "output": "⠹⠗⠕â â ƒâ •â Žâ ‘â Ž" }, { "input": "thrombosis", "output": "⠹⠗⠕â â ƒâ •â Žâ Šâ Ž" }, { "input": "thrombosis's", "output": "⠹⠗⠕â â ƒâ •â Žâ Šâ Žâ „â Ž" }, { "input": "thrombotic", "output": "⠹⠗⠕â â ƒâ •â žâ Šâ ‰" }, { "input": "thrombus", "output": "⠹⠗⠕â â ƒâ ¥â Ž" }, { "input": "thrombus's", "output": "⠹⠗⠕â â ƒâ ¥â Žâ „â Ž" }, { "input": "throne", "output": "⠹⠗â â •" }, { "input": "throne's", "output": "⠹⠗â â •â „â Ž" }, { "input": "thrones", "output": "⠹⠗â â •â Ž" }, { "input": "throng", "output": "⠹⠗⠰⠛" }, { "input": "throng's", "output": "⠹⠗⠰⠛⠄⠎" }, { "input": "thronged", "output": "⠹⠗⠰⠛⠫" }, { "input": "thronging", "output": "⠹⠗⠰⠛⠌" }, { "input": "throngs", "output": "⠹⠗⠰⠛⠎" }, { "input": "throttle", "output": "⠹⠗⠕⠞⠞⠇⠑" }, { "input": "throttle's", "output": "⠹⠗⠕⠞⠞⠇⠑⠄⠎" }, { "input": "throttled", "output": "⠹⠗⠕⠞⠞⠇⠫" }, { "input": "throttler", "output": "⠹⠗⠕⠞⠞⠇⠻" }, { "input": "throttler's", "output": "⠹⠗⠕⠞⠞⠇⠻⠄⠎" }, { "input": "throttlers", "output": "⠹⠗⠕⠞⠞⠇⠻⠎" }, { "input": "throttles", "output": "⠹⠗⠕⠞⠞⠇⠑⠎" }, { "input": "throttling", "output": "⠹⠗⠕⠞⠞⠇⠌" }, { "input": "through", "output": "â â ¹" }, { "input": "throughout", "output": "â â ¹â ³â ž" }, { "input": "throughput", "output": "â â ¹â â ¥â ž" }, { "input": "throughput's", "output": "â â ¹â â ¥â žâ „â Ž" }, { "input": "throw", "output": "⠹⠗⠪" }, { "input": "throw's", "output": "⠹⠗⠪⠄⠎" }, { "input": "throwaway", "output": "⠹⠗⠪â â ºâ â ½" }, { "input": "throwaway's", "output": "⠹⠗⠪â â ºâ â ½â „â Ž" }, { "input": "throwaways", "output": "⠹⠗⠪â â ºâ â ½â Ž" }, { "input": "throwback", "output": "⠹⠗⠪⠃â â ‰â …" }, { "input": "throwback's", "output": "⠹⠗⠪⠃â â ‰â …â „â Ž" }, { "input": "throwbacks", "output": "⠹⠗⠪⠃â â ‰â …â Ž" }, { "input": "thrower", "output": "⠹⠗⠪⠻" }, { "input": "thrower's", "output": "⠹⠗⠪⠻⠄⠎" }, { "input": "throwers", "output": "⠹⠗⠪⠻⠎" }, { "input": "throwing", "output": "⠹⠗⠪⠌" }, { "input": "thrown", "output": "⠹⠗⠪â " }, { "input": "throws", "output": "⠹⠗⠪⠎" }, { "input": "thrum", "output": "⠹⠗⠥â " }, { "input": "thrum's", "output": "⠹⠗⠥â â „â Ž" }, { "input": "thrummed", "output": "⠹⠗⠥â â â «" }, { "input": "thrumming", "output": "⠹⠗⠥â â â Œ" }, { "input": "thrums", "output": "⠹⠗⠥â â Ž" }, { "input": "thrush", "output": "⠹⠗⠥⠩" }, { "input": "thrush's", "output": "⠹⠗⠥⠩⠄⠎" }, { "input": "thrushes", "output": "⠹⠗⠥⠩⠑⠎" }, { "input": "thrust", "output": "⠹⠗⠥⠌" }, { "input": "thrust's", "output": "⠹⠗⠥⠌⠄⠎" }, { "input": "thrusting", "output": "⠹⠗⠥⠌⠌" }, { "input": "thrusts", "output": "⠹⠗⠥⠌⠎" }, { "input": "thruway", "output": "⠹⠗⠥⠺â â ½" }, { "input": "thruway's", "output": "⠹⠗⠥⠺â â ½â „â Ž" }, { "input": "thruways", "output": "⠹⠗⠥⠺â â ½â Ž" }, { "input": "thud", "output": "⠹⠥⠙" }, { "input": "thud's", "output": "⠹⠥⠙⠄⠎" }, { "input": "thudded", "output": "⠹⠥⠲⠫" }, { "input": "thudding", "output": "⠹⠥⠲⠌" }, { "input": "thuds", "output": "⠹⠥⠙⠎" }, { "input": "thug", "output": "⠹⠥⠛" }, { "input": "thug's", "output": "⠹⠥⠛⠄⠎" }, { "input": "thuggery's", "output": "⠹⠥⠶⠻⠽⠄⠎" }, { "input": "thugs", "output": "⠹⠥⠛⠎" }, { "input": "thulium", "output": "⠹⠥⠇⠊⠥â " }, { "input": "thulium's", "output": "⠹⠥⠇⠊⠥â â „â Ž" }, { "input": "thumb", "output": "⠹⠥â â ƒ" }, { "input": "thumb's", "output": "⠹⠥â â ƒâ „â Ž" }, { "input": "thumbed", "output": "⠹⠥â â ƒâ «" }, { "input": "thumbing", "output": "⠹⠥â â ƒâ Œ" }, { "input": "thumbnail", "output": "⠹⠥â â ƒâ â â Šâ ‡" }, { "input": "thumbnail's", "output": "⠹⠥â â ƒâ â â Šâ ‡â „â Ž" }, { "input": "thumbnails", "output": "⠹⠥â â ƒâ â â Šâ ‡â Ž" }, { "input": "thumbs", "output": "⠹⠥â â ƒâ Ž" }, { "input": "thumbscrew", "output": "⠹⠥â â ƒâ Žâ ‰â —â ‘â º" }, { "input": "thumbscrew's", "output": "⠹⠥â â ƒâ Žâ ‰â —⠑⠺⠄⠎" }, { "input": "thumbscrews", "output": "⠹⠥â â ƒâ Žâ ‰â —⠑⠺⠎" }, { "input": "thumbtack", "output": "⠹⠥â â ƒâ žâ â ‰â …" }, { "input": "thumbtack's", "output": "⠹⠥â â ƒâ žâ â ‰â …â „â Ž" }, { "input": "thumbtacks", "output": "⠹⠥â â ƒâ žâ â ‰â …â Ž" }, { "input": "thump", "output": "⠹⠥â â " }, { "input": "thump's", "output": "⠹⠥â â â „â Ž" }, { "input": "thumped", "output": "⠹⠥â â â «" }, { "input": "thumping", "output": "⠹⠥â â â Œ" }, { "input": "thumping's", "output": "⠹⠥â â â Œâ „â Ž" }, { "input": "thumps", "output": "⠹⠥â â â Ž" }, { "input": "thunder", "output": "â ¹â â ¥" }, { "input": "thunder's", "output": "â ¹â â ¥â „â Ž" }, { "input": "thunderbolt", "output": "â ¹â â ¥â ƒâ •⠇⠞" }, { "input": "thunderbolt's", "output": "â ¹â â ¥â ƒâ •⠇⠞⠄⠎" }, { "input": "thunderbolts", "output": "â ¹â â ¥â ƒâ •⠇⠞⠎" }, { "input": "thunderclap", "output": "â ¹â â ¥â ‰â ‡â â " }, { "input": "thunderclap's", "output": "â ¹â â ¥â ‰â ‡â â â „â Ž" }, { "input": "thunderclaps", "output": "â ¹â â ¥â ‰â ‡â â â Ž" }, { "input": "thundercloud", "output": "â ¹â â ¥â ‰â ‡â ³â ™" }, { "input": "thundercloud's", "output": "â ¹â â ¥â ‰â ‡â ³â ™â „â Ž" }, { "input": "thunderclouds", "output": "â ¹â â ¥â ‰â ‡â ³â ™â Ž" }, { "input": "thundered", "output": "â ¹â â ¥â «" }, { "input": "thunderer", "output": "â ¹â â ¥â »" }, { "input": "thunderer's", "output": "â ¹â â ¥â »â „â Ž" }, { "input": "thunderers", "output": "â ¹â â ¥â »â Ž" }, { "input": "thunderhead", "output": "â ¹â â ¥â “â ‚â ™" }, { "input": "thunderhead's", "output": "â ¹â â ¥â “⠂⠙⠄⠎" }, { "input": "thunderheads", "output": "â ¹â â ¥â “⠂⠙⠎" }, { "input": "thundering", "output": "â ¹â â ¥â Œ" }, { "input": "thunderous", "output": "â ¹â â ¥â ³â Ž" }, { "input": "thunders", "output": "â ¹â â ¥â Ž" }, { "input": "thundershower", "output": "â ¹â â ¥â ©â ªâ »" }, { "input": "thundershower's", "output": "â ¹â â ¥â ©â ªâ »â „â Ž" }, { "input": "thundershowers", "output": "â ¹â â ¥â ©â ªâ »â Ž" }, { "input": "thunderstorm", "output": "â ¹â â ¥â Œâ •â —â " }, { "input": "thunderstorm's", "output": "â ¹â â ¥â Œâ •â —â â „â Ž" }, { "input": "thunderstorms", "output": "â ¹â â ¥â Œâ •â —â â Ž" }, { "input": "thunderstruck", "output": "â ¹â â ¥â Œâ —⠥⠉⠅" }, { "input": "thus", "output": "⠹⠥⠎" }, { "input": "thwack", "output": "⠹⠺â â ‰â …" }, { "input": "thwack's", "output": "⠹⠺â â ‰â …â „â Ž" }, { "input": "thwacked", "output": "⠹⠺â â ‰â …â «" }, { "input": "thwacker", "output": "⠹⠺â â ‰â …â »" }, { "input": "thwacker's", "output": "⠹⠺â â ‰â …⠻⠄⠎" }, { "input": "thwackers", "output": "⠹⠺â â ‰â …⠻⠎" }, { "input": "thwacking", "output": "⠹⠺â â ‰â …â Œ" }, { "input": "thwacks", "output": "⠹⠺â â ‰â …â Ž" }, { "input": "thwart", "output": "⠹⠺⠜⠞" }, { "input": "thwart's", "output": "⠹⠺⠜⠞⠄⠎" }, { "input": "thwarted", "output": "⠹⠺⠜⠞⠫" }, { "input": "thwarting", "output": "⠹⠺⠜⠞⠌" }, { "input": "thwarts", "output": "⠹⠺⠜⠞⠎" }, { "input": "thy", "output": "⠹⠽" }, { "input": "thyme", "output": "⠹⠽â â ‘" }, { "input": "thyme's", "output": "⠹⠽â â ‘â „â Ž" }, { "input": "thymine", "output": "⠹⠽â â ”â ‘" }, { "input": "thymine's", "output": "⠹⠽â â ”â ‘â „â Ž" }, { "input": "thymus", "output": "⠹⠽â â ¥â Ž" }, { "input": "thymus's", "output": "⠹⠽â â ¥â Žâ „â Ž" }, { "input": "thymuses", "output": "⠹⠽â â ¥â Žâ ‘â Ž" }, { "input": "thyroid", "output": "⠹⠽⠗⠕⠊⠙" }, { "input": "thyroid's", "output": "⠹⠽⠗⠕⠊⠙⠄⠎" }, { "input": "thyroidal", "output": "⠹⠽⠗⠕⠊⠙â â ‡" }, { "input": "thyroids", "output": "⠹⠽⠗⠕⠊⠙⠎" }, { "input": "thyself", "output": "⠹⠽⠋" }, { "input": "ti", "output": "â žâ Š" }, { "input": "ti's", "output": "â žâ Šâ „â Ž" }, { "input": "tiara", "output": "â žâ Šâ œâ " }, { "input": "tiara's", "output": "â žâ Šâ œâ â „â Ž" }, { "input": "tiaras", "output": "â žâ Šâ œâ â Ž" }, { "input": "tibia", "output": "⠞⠊⠃⠊â " }, { "input": "tibia's", "output": "⠞⠊⠃⠊â â „â Ž" }, { "input": "tibiae", "output": "⠞⠊⠃⠊â â ‘" }, { "input": "tibial", "output": "⠞⠊⠃⠊â â ‡" }, { "input": "tic", "output": "â žâ Šâ ‰" }, { "input": "tic's", "output": "⠞⠊⠉⠄⠎" }, { "input": "tick", "output": "⠞⠊⠉⠅" }, { "input": "tick's", "output": "⠞⠊⠉⠅⠄⠎" }, { "input": "ticked", "output": "⠞⠊⠉⠅⠫" }, { "input": "ticker", "output": "⠞⠊⠉⠅⠻" }, { "input": "ticker's", "output": "⠞⠊⠉⠅⠻⠄⠎" }, { "input": "tickers", "output": "⠞⠊⠉⠅⠻⠎" }, { "input": "ticket", "output": "⠞⠊⠉⠅⠑⠞" }, { "input": "ticket's", "output": "⠞⠊⠉⠅⠑⠞⠄⠎" }, { "input": "ticketed", "output": "⠞⠊⠉⠅⠑⠞⠫" }, { "input": "ticketing", "output": "⠞⠊⠉⠅⠑⠞⠌" }, { "input": "tickets", "output": "⠞⠊⠉⠅⠑⠞⠎" }, { "input": "ticking", "output": "⠞⠊⠉⠅⠌" }, { "input": "ticking's", "output": "⠞⠊⠉⠅⠌⠄⠎" }, { "input": "tickle", "output": "⠞⠊⠉⠅⠇⠑" }, { "input": "tickle's", "output": "⠞⠊⠉⠅⠇⠑⠄⠎" }, { "input": "tickled", "output": "⠞⠊⠉⠅⠇⠫" }, { "input": "tickler", "output": "⠞⠊⠉⠅⠇⠻" }, { "input": "tickler's", "output": "⠞⠊⠉⠅⠇⠻⠄⠎" }, { "input": "ticklers", "output": "⠞⠊⠉⠅⠇⠻⠎" }, { "input": "tickles", "output": "⠞⠊⠉⠅⠇⠑⠎" }, { "input": "tickling", "output": "⠞⠊⠉⠅⠇⠌" }, { "input": "ticklish", "output": "⠞⠊⠉⠅⠇⠊⠩" }, { "input": "ticklishly", "output": "⠞⠊⠉⠅⠇⠊⠩⠇⠽" }, { "input": "ticklishness", "output": "⠞⠊⠉⠅⠇⠊⠩⠰⠎" }, { "input": "ticklishness's", "output": "⠞⠊⠉⠅⠇⠊⠩⠰⠎⠄⠎" }, { "input": "ticks", "output": "⠞⠊⠉⠅⠎" }, { "input": "ticktacktoe", "output": "⠞⠊⠉⠅⠞â â ‰â …â žâ •â ‘" }, { "input": "ticktacktoe's", "output": "⠞⠊⠉⠅⠞â â ‰â …â žâ •â ‘â „â Ž" }, { "input": "ticktock", "output": "⠞⠊⠉⠅⠞⠕⠉⠅" }, { "input": "ticktock's", "output": "⠞⠊⠉⠅⠞⠕⠉⠅⠄⠎" }, { "input": "ticktocks", "output": "⠞⠊⠉⠅⠞⠕⠉⠅⠎" }, { "input": "tics", "output": "⠞⠊⠉⠎" }, { "input": "tidal", "output": "â žâ Šâ ™â â ‡" }, { "input": "tidally", "output": "⠞⠊⠙⠠⠽" }, { "input": "tidbit", "output": "⠞⠊⠙⠃⠊⠞" }, { "input": "tidbit's", "output": "⠞⠊⠙⠃⠊⠞⠄⠎" }, { "input": "tidbits", "output": "⠞⠊⠙⠃⠊⠞⠎" }, { "input": "tiddlywinks", "output": "⠞⠊⠲⠇⠽⠺⠔⠅⠎" }, { "input": "tiddlywinks's", "output": "⠞⠊⠲⠇⠽⠺⠔⠅⠎⠄⠎" }, { "input": "tide", "output": "⠞⠊⠙⠑" }, { "input": "tide's", "output": "⠞⠊⠙⠑⠄⠎" }, { "input": "tided", "output": "⠞⠊⠙⠫" }, { "input": "tideland", "output": "⠞⠊⠙⠑⠇⠯" }, { "input": "tideland's", "output": "⠞⠊⠙⠑⠇⠯⠄⠎" }, { "input": "tidelands", "output": "⠞⠊⠙⠑⠇⠯⠎" }, { "input": "tides", "output": "⠞⠊⠙⠑⠎" }, { "input": "tidewater", "output": "⠞⠊⠙⠑⠺â â žâ »" }, { "input": "tidewater's", "output": "⠞⠊⠙⠑⠺â â žâ »â „â Ž" }, { "input": "tidewaters", "output": "⠞⠊⠙⠑⠺â â žâ »â Ž" }, { "input": "tideway", "output": "⠞⠊⠙⠑⠺â â ½" }, { "input": "tideway's", "output": "⠞⠊⠙⠑⠺â â ½â „â Ž" }, { "input": "tideways", "output": "⠞⠊⠙⠑⠺â â ½â Ž" }, { "input": "tidied", "output": "⠞⠊⠙⠊⠫" }, { "input": "tidier", "output": "⠞⠊⠙⠊⠻" }, { "input": "tidies", "output": "⠞⠊⠙⠊⠑⠎" }, { "input": "tidiest", "output": "⠞⠊⠙⠊⠑⠌" }, { "input": "tidily", "output": "⠞⠊⠙⠊⠇⠽" }, { "input": "tidiness", "output": "⠞⠊⠙⠊⠰⠎" }, { "input": "tidiness's", "output": "⠞⠊⠙⠊⠰⠎⠄⠎" }, { "input": "tiding", "output": "⠞⠊⠙⠌" }, { "input": "tidings", "output": "⠞⠊⠙⠌⠎" }, { "input": "tidings's", "output": "⠞⠊⠙⠌⠎⠄⠎" }, { "input": "tidy", "output": "⠞⠊⠙⠽" }, { "input": "tidy's", "output": "⠞⠊⠙⠽⠄⠎" }, { "input": "tidying", "output": "⠞⠊⠙⠽⠌" }, { "input": "tie", "output": "â žâ Šâ ‘" }, { "input": "tie's", "output": "â žâ Šâ ‘â „â Ž" }, { "input": "tieback", "output": "â žâ Šâ ‘â ƒâ â ‰â …" }, { "input": "tieback's", "output": "â žâ Šâ ‘â ƒâ â ‰â …â „â Ž" }, { "input": "tiebacks", "output": "â žâ Šâ ‘â ƒâ â ‰â …â Ž" }, { "input": "tiebreaker", "output": "⠞⠊⠑⠃⠗⠂⠅⠻" }, { "input": "tiebreaker's", "output": "⠞⠊⠑⠃⠗⠂⠅⠻⠄⠎" }, { "input": "tiebreakers", "output": "⠞⠊⠑⠃⠗⠂⠅⠻⠎" }, { "input": "tied", "output": "â žâ Šâ «" }, { "input": "tier", "output": "â žâ Šâ »" }, { "input": "tier's", "output": "⠞⠊⠻⠄⠎" }, { "input": "tiers", "output": "⠞⠊⠻⠎" }, { "input": "ties", "output": "â žâ Šâ ‘â Ž" }, { "input": "tiff", "output": "â žâ Šâ ‹â ‹" }, { "input": "tiff's", "output": "â žâ Šâ ‹â ‹â „â Ž" }, { "input": "tiffed", "output": "â žâ Šâ –â «" }, { "input": "tiffing", "output": "â žâ Šâ –â Œ" }, { "input": "tiffs", "output": "â žâ Šâ –â Ž" }, { "input": "tiger", "output": "⠞⠊⠛⠻" }, { "input": "tiger's", "output": "⠞⠊⠛⠻⠄⠎" }, { "input": "tigerish", "output": "⠞⠊⠛⠻⠊⠩" }, { "input": "tigers", "output": "⠞⠊⠛⠻⠎" }, { "input": "tight", "output": "⠞⠊⠣⠞" }, { "input": "tighten", "output": "⠞⠊⠣⠞⠢" }, { "input": "tightened", "output": "⠞⠊⠣⠞⠢⠫" }, { "input": "tightener", "output": "⠞⠊⠣⠞⠢⠻" }, { "input": "tightener's", "output": "⠞⠊⠣⠞⠢⠻⠄⠎" }, { "input": "tighteners", "output": "⠞⠊⠣⠞⠢⠻⠎" }, { "input": "tightening", "output": "⠞⠊⠣⠞⠢⠌" }, { "input": "tightens", "output": "⠞⠊⠣⠞⠢⠎" }, { "input": "tighter", "output": "⠞⠊⠣⠞⠻" }, { "input": "tightest", "output": "⠞⠊⠣⠞⠑⠌" }, { "input": "tightfisted", "output": "⠞⠊⠣⠞⠋⠊⠌⠫" }, { "input": "tightly", "output": "⠞⠊⠣⠞⠇⠽" }, { "input": "tightness", "output": "⠞⠊⠣⠞⠰⠎" }, { "input": "tightness's", "output": "⠞⠊⠣⠞⠰⠎⠄⠎" }, { "input": "tightrope", "output": "⠞⠊⠣⠞⠗⠕â â ‘" }, { "input": "tightrope's", "output": "⠞⠊⠣⠞⠗⠕â â ‘â „â Ž" }, { "input": "tightropes", "output": "⠞⠊⠣⠞⠗⠕â â ‘â Ž" }, { "input": "tights", "output": "⠞⠊⠣⠞⠎" }, { "input": "tights's", "output": "⠞⠊⠣⠞⠎⠄⠎" }, { "input": "tightwad", "output": "⠞⠊⠣⠞⠺â â ™" }, { "input": "tightwad's", "output": "⠞⠊⠣⠞⠺â â ™â „â Ž" }, { "input": "tightwads", "output": "⠞⠊⠣⠞⠺â â ™â Ž" }, { "input": "tigress", "output": "⠞⠊⠛⠗⠑⠎⠎" }, { "input": "tigress's", "output": "⠞⠊⠛⠗⠑⠎⠎⠄⠎" }, { "input": "tigresses", "output": "⠞⠊⠛⠗⠑⠎⠎⠑⠎" }, { "input": "tilde", "output": "⠞⠊⠇⠙⠑" }, { "input": "tilde's", "output": "⠞⠊⠇⠙⠑⠄⠎" }, { "input": "tildes", "output": "⠞⠊⠇⠙⠑⠎" }, { "input": "tile", "output": "⠞⠊⠇⠑" }, { "input": "tile's", "output": "⠞⠊⠇⠑⠄⠎" }, { "input": "tiled", "output": "⠞⠊⠇⠫" }, { "input": "tiles", "output": "⠞⠊⠇⠑⠎" }, { "input": "tiling", "output": "⠞⠊⠇⠌" }, { "input": "tiling's", "output": "⠞⠊⠇⠌⠄⠎" }, { "input": "till", "output": "⠞⠊⠇⠇" }, { "input": "till's", "output": "⠞⠊⠇⠇⠄⠎" }, { "input": "tillable", "output": "⠞⠊⠇⠇â â ¼" }, { "input": "tillage", "output": "⠞⠊⠇⠇â â ›â ‘" }, { "input": "tillage's", "output": "⠞⠊⠇⠇â â ›â ‘â „â Ž" }, { "input": "tilled", "output": "⠞⠊⠇⠇⠫" }, { "input": "tiller", "output": "⠞⠊⠇⠇⠻" }, { "input": "tiller's", "output": "⠞⠊⠇⠇⠻⠄⠎" }, { "input": "tillers", "output": "⠞⠊⠇⠇⠻⠎" }, { "input": "tilling", "output": "⠞⠊⠇⠇⠌" }, { "input": "tills", "output": "⠞⠊⠇⠇⠎" }, { "input": "tilt", "output": "⠞⠊⠇⠞" }, { "input": "tilt's", "output": "⠞⠊⠇⠞⠄⠎" }, { "input": "tilted", "output": "⠞⠊⠇⠞⠫" }, { "input": "tilting", "output": "⠞⠊⠇⠞⠌" }, { "input": "tilts", "output": "⠞⠊⠇⠞⠎" }, { "input": "timber", "output": "â žâ Šâ â ƒâ »" }, { "input": "timber's", "output": "â žâ Šâ â ƒâ »â „â Ž" }, { "input": "timbered", "output": "â žâ Šâ â ƒâ »â «" }, { "input": "timbering", "output": "â žâ Šâ â ƒâ »â Œ" }, { "input": "timberland", "output": "â žâ Šâ â ƒâ »â ‡â ¯" }, { "input": "timberland's", "output": "â žâ Šâ â ƒâ »â ‡â ¯â „â Ž" }, { "input": "timberline", "output": "â žâ Šâ â ƒâ »â ‡â ”â ‘" }, { "input": "timberline's", "output": "â žâ Šâ â ƒâ »â ‡â ”â ‘â „â Ž" }, { "input": "timberlines", "output": "â žâ Šâ â ƒâ »â ‡â ”â ‘â Ž" }, { "input": "timbers", "output": "â žâ Šâ â ƒâ »â Ž" }, { "input": "timbre", "output": "â žâ Šâ â ƒâ —â ‘" }, { "input": "timbre's", "output": "â žâ Šâ â ƒâ —â ‘â „â Ž" }, { "input": "timbrel", "output": "â žâ Šâ â ƒâ —â ‘â ‡" }, { "input": "timbrel's", "output": "â žâ Šâ â ƒâ —⠑⠇⠄⠎" }, { "input": "timbrels", "output": "â žâ Šâ â ƒâ —⠑⠇⠎" }, { "input": "timbres", "output": "â žâ Šâ â ƒâ —â ‘â Ž" }, { "input": "time", "output": "â â ž" }, { "input": "time's", "output": "â â žâ „â Ž" }, { "input": "timed", "output": "â â žâ ™" }, { "input": "timekeeper", "output": "â â žâ …â ‘â ‘â â »" }, { "input": "timekeeper's", "output": "â â žâ …â ‘â ‘â â »â „â Ž" }, { "input": "timekeepers", "output": "â â žâ …â ‘â ‘â â »â Ž" }, { "input": "timekeeping's", "output": "â â žâ …â ‘â ‘â â Œâ „â Ž" }, { "input": "timeless", "output": "â â žâ ¨â Ž" }, { "input": "timelessness", "output": "â â žâ ¨â Žâ °â Ž" }, { "input": "timelessness's", "output": "â â žâ ¨â Žâ °â Žâ „â Ž" }, { "input": "timelier", "output": "â â žâ ‡â Šâ »" }, { "input": "timeliest", "output": "â â žâ ‡â Šâ ‘â Œ" }, { "input": "timeliness", "output": "â â žâ ‡â Šâ °â Ž" }, { "input": "timeliness's", "output": "â â žâ ‡â Šâ °â Žâ „â Ž" }, { "input": "timely", "output": "â â žâ ‡â ½" }, { "input": "timeout", "output": "â â žâ ³â ž" }, { "input": "timeout's", "output": "â â žâ ³â žâ „â Ž" }, { "input": "timeouts", "output": "â â žâ ³â žâ Ž" }, { "input": "timepiece", "output": "â â žâ â Šâ ‘⠉⠑" }, { "input": "timepiece's", "output": "â â žâ â Šâ ‘⠉⠑⠄⠎" }, { "input": "timepieces", "output": "â â žâ â Šâ ‘⠉⠑⠎" }, { "input": "timer", "output": "â â žâ —" }, { "input": "timer's", "output": "â â žâ —â „â Ž" }, { "input": "timers", "output": "â â žâ —â Ž" }, { "input": "times", "output": "â â žâ Ž" }, { "input": "timescale", "output": "â â žâ Žâ ‰â â ‡â ‘" }, { "input": "timescales", "output": "â â žâ Žâ ‰â â ‡â ‘â Ž" }, { "input": "timeserving's", "output": "â â žâ Žâ »â §â Œâ „â Ž" }, { "input": "timetable", "output": "â â žâ žâ â ¼" }, { "input": "timetable's", "output": "â â žâ žâ â ¼â „â Ž" }, { "input": "timetabled", "output": "â â žâ žâ â ¼â ™" }, { "input": "timetables", "output": "â â žâ žâ â ¼â Ž" }, { "input": "timetabling", "output": "â â žâ žâ â ƒâ ‡â Œ" }, { "input": "timeworn", "output": "â â žâ ºâ •â —â " }, { "input": "timezone", "output": "â â žâ µâ â •" }, { "input": "timid", "output": "â žâ Šâ â Šâ ™" }, { "input": "timider", "output": "â žâ Šâ â Šâ ™â »" }, { "input": "timidest", "output": "â žâ Šâ â Šâ ™â ‘â Œ" }, { "input": "timidity", "output": "â žâ Šâ â Šâ ™â °â ½" }, { "input": "timidity's", "output": "â žâ Šâ â Šâ ™â °â ½â „â Ž" }, { "input": "timidly", "output": "â žâ Šâ â Šâ ™â ‡â ½" }, { "input": "timidness", "output": "â žâ Šâ â Šâ ™â °â Ž" }, { "input": "timidness's", "output": "â žâ Šâ â Šâ ™â °â Žâ „â Ž" }, { "input": "timing", "output": "â žâ Šâ â Œ" }, { "input": "timing's", "output": "â žâ Šâ â Œâ „â Ž" }, { "input": "timings", "output": "â žâ Šâ â Œâ Ž" }, { "input": "timorous", "output": "â žâ Šâ â •⠗⠳⠎" }, { "input": "timorously", "output": "â žâ Šâ â •⠗⠳⠎⠇⠽" }, { "input": "timorousness's", "output": "â žâ Šâ â •⠗⠳⠎⠰⠎⠄⠎" }, { "input": "timothy", "output": "â žâ Šâ â •⠹⠽" }, { "input": "timothy's", "output": "â žâ Šâ â •⠹⠽⠄⠎" }, { "input": "timpani", "output": "â žâ Šâ â â â â Š" }, { "input": "timpani's", "output": "â žâ Šâ â â â â Šâ „â Ž" }, { "input": "timpanist", "output": "â žâ Šâ â â â â Šâ Œ" }, { "input": "timpanist's", "output": "â žâ Šâ â â â â Šâ Œâ „â Ž" }, { "input": "timpanists", "output": "â žâ Šâ â â â â Šâ Œâ Ž" }, { "input": "tin", "output": "â žâ ”" }, { "input": "tin's", "output": "⠞⠔⠄⠎" }, { "input": "tincture", "output": "⠞⠔⠉⠞⠥⠗⠑" }, { "input": "tincture's", "output": "⠞⠔⠉⠞⠥⠗⠑⠄⠎" }, { "input": "tinctured", "output": "⠞⠔⠉⠞⠥⠗⠫" }, { "input": "tinctures", "output": "⠞⠔⠉⠞⠥⠗⠑⠎" }, { "input": "tincturing", "output": "⠞⠔⠉⠞⠥⠗⠌" }, { "input": "tinder", "output": "⠞⠔⠙⠻" }, { "input": "tinder's", "output": "⠞⠔⠙⠻⠄⠎" }, { "input": "tinderbox", "output": "⠞⠔⠙⠻⠃⠕⠭" }, { "input": "tinderbox's", "output": "⠞⠔⠙⠻⠃⠕⠭⠄⠎" }, { "input": "tinderboxes", "output": "⠞⠔⠙⠻⠃⠕⠭⠑⠎" }, { "input": "tine", "output": "⠞⠔⠑" }, { "input": "tine's", "output": "⠞⠔⠑⠄⠎" }, { "input": "tines", "output": "⠞⠔⠑⠎" }, { "input": "tinfoil", "output": "⠞⠔⠋⠕⠊⠇" }, { "input": "tinfoil's", "output": "⠞⠔⠋⠕⠊⠇⠄⠎" }, { "input": "ting", "output": "â žâ Œ" }, { "input": "tinge", "output": "⠞⠌⠑" }, { "input": "tinge's", "output": "⠞⠌⠑⠄⠎" }, { "input": "tinged", "output": "⠞⠌⠫" }, { "input": "tingeing", "output": "⠞⠌⠑⠌" }, { "input": "tinges", "output": "⠞⠌⠑⠎" }, { "input": "tinging", "output": "⠞⠌⠌" }, { "input": "tingle", "output": "⠞⠌⠇⠑" }, { "input": "tingle's", "output": "⠞⠌⠇⠑⠄⠎" }, { "input": "tingled", "output": "⠞⠌⠇⠫" }, { "input": "tingles", "output": "⠞⠌⠇⠑⠎" }, { "input": "tinglier", "output": "⠞⠌⠇⠊⠻" }, { "input": "tingliest", "output": "⠞⠌⠇⠊⠑⠌" }, { "input": "tingling", "output": "⠞⠌⠇⠌" }, { "input": "tingling's", "output": "⠞⠌⠇⠌⠄⠎" }, { "input": "tinglings", "output": "⠞⠌⠇⠌⠎" }, { "input": "tingly", "output": "⠞⠌⠇⠽" }, { "input": "tings", "output": "⠞⠌⠎" }, { "input": "tinier", "output": "⠞⠔⠊⠻" }, { "input": "tiniest", "output": "⠞⠔⠊⠑⠌" }, { "input": "tininess", "output": "⠞⠔⠊⠰⠎" }, { "input": "tininess's", "output": "⠞⠔⠊⠰⠎⠄⠎" }, { "input": "tinker", "output": "⠞⠔⠅⠻" }, { "input": "tinker's", "output": "⠞⠔⠅⠻⠄⠎" }, { "input": "tinkered", "output": "⠞⠔⠅⠻⠫" }, { "input": "tinkerer", "output": "⠞⠔⠅⠻⠻" }, { "input": "tinkerer's", "output": "⠞⠔⠅⠻⠻⠄⠎" }, { "input": "tinkerers", "output": "⠞⠔⠅⠻⠻⠎" }, { "input": "tinkering", "output": "⠞⠔⠅⠻⠌" }, { "input": "tinkers", "output": "⠞⠔⠅⠻⠎" }, { "input": "tinkle", "output": "⠞⠔⠅⠇⠑" }, { "input": "tinkle's", "output": "⠞⠔⠅⠇⠑⠄⠎" }, { "input": "tinkled", "output": "⠞⠔⠅⠇⠫" }, { "input": "tinkles", "output": "⠞⠔⠅⠇⠑⠎" }, { "input": "tinkling", "output": "⠞⠔⠅⠇⠌" }, { "input": "tinned", "output": "â žâ ”â â «" }, { "input": "tinnier", "output": "â žâ ”â â Šâ »" }, { "input": "tinniest", "output": "â žâ ”â â Šâ ‘â Œ" }, { "input": "tinniness", "output": "â žâ ”â â Šâ °â Ž" }, { "input": "tinniness's", "output": "â žâ ”â â Šâ °â Žâ „â Ž" }, { "input": "tinning", "output": "â žâ ”â â Œ" }, { "input": "tinnitus's", "output": "â žâ ”â â Šâ žâ ¥â Žâ „â Ž" }, { "input": "tinny", "output": "â žâ ”â â ½" }, { "input": "tinplate's", "output": "â žâ ”â â ‡â â žâ ‘â „â Ž" }, { "input": "tins", "output": "⠞⠔⠎" }, { "input": "tinsel", "output": "⠞⠔⠎⠑⠇" }, { "input": "tinsel's", "output": "⠞⠔⠎⠑⠇⠄⠎" }, { "input": "tinseled", "output": "⠞⠔⠎⠑⠇⠫" }, { "input": "tinseling", "output": "⠞⠔⠎⠑⠇⠌" }, { "input": "tinsels", "output": "⠞⠔⠎⠑⠇⠎" }, { "input": "tinsmith", "output": "⠞⠔⠎â â Šâ ¹" }, { "input": "tinsmith's", "output": "⠞⠔⠎â â Šâ ¹â „â Ž" }, { "input": "tinsmiths", "output": "⠞⠔⠎â â Šâ ¹â Ž" }, { "input": "tint", "output": "⠞⠔⠞" }, { "input": "tint's", "output": "⠞⠔⠞⠄⠎" }, { "input": "tinted", "output": "⠞⠔⠞⠫" }, { "input": "tinting", "output": "⠞⠔⠞⠌" }, { "input": "tintinnabulation", "output": "⠞⠔⠞⠔â â â ƒâ ¥â ‡â  â " }, { "input": "tintinnabulation's", "output": "⠞⠔⠞⠔â â â ƒâ ¥â ‡â  â â „â Ž" }, { "input": "tintinnabulations", "output": "⠞⠔⠞⠔â â â ƒâ ¥â ‡â  â â Ž" }, { "input": "tints", "output": "⠞⠔⠞⠎" }, { "input": "tintype", "output": "⠞⠔⠞⠽â â ‘" }, { "input": "tintype's", "output": "⠞⠔⠞⠽â â ‘â „â Ž" }, { "input": "tintypes", "output": "⠞⠔⠞⠽â â ‘â Ž" }, { "input": "tinware", "output": "⠞⠔⠺⠜⠑" }, { "input": "tinware's", "output": "⠞⠔⠺⠜⠑⠄⠎" }, { "input": "tiny", "output": "⠞⠔⠽" }, { "input": "tip", "output": "â žâ Šâ " }, { "input": "tip's", "output": "â žâ Šâ â „â Ž" }, { "input": "tipped", "output": "â žâ Šâ â â «" }, { "input": "tipper", "output": "â žâ Šâ â â »" }, { "input": "tipper's", "output": "â žâ Šâ â â »â „â Ž" }, { "input": "tippers", "output": "â žâ Šâ â â »â Ž" }, { "input": "tippet", "output": "â žâ Šâ â â ‘â ž" }, { "input": "tippet's", "output": "â žâ Šâ â â ‘â žâ „â Ž" }, { "input": "tippets", "output": "â žâ Šâ â â ‘â žâ Ž" }, { "input": "tipping", "output": "â žâ Šâ â â Œ" }, { "input": "tipple", "output": "â žâ Šâ â â ‡â ‘" }, { "input": "tipple's", "output": "â žâ Šâ â â ‡â ‘â „â Ž" }, { "input": "tippled", "output": "â žâ Šâ â â ‡â «" }, { "input": "tippler", "output": "â žâ Šâ â â ‡â »" }, { "input": "tippler's", "output": "â žâ Šâ â â ‡â »â „â Ž" }, { "input": "tipplers", "output": "â žâ Šâ â â ‡â »â Ž" }, { "input": "tipples", "output": "â žâ Šâ â â ‡â ‘â Ž" }, { "input": "tippling", "output": "â žâ Šâ â â ‡â Œ" }, { "input": "tips", "output": "â žâ Šâ â Ž" }, { "input": "tipsier", "output": "â žâ Šâ â Žâ Šâ »" }, { "input": "tipsiest", "output": "â žâ Šâ â Žâ Šâ ‘â Œ" }, { "input": "tipsily", "output": "â žâ Šâ â Žâ Šâ ‡â ½" }, { "input": "tipsiness's", "output": "â žâ Šâ â Žâ Šâ °â Žâ „â Ž" }, { "input": "tipster", "output": "â žâ Šâ â Œâ »" }, { "input": "tipster's", "output": "â žâ Šâ â Œâ »â „â Ž" }, { "input": "tipsters", "output": "â žâ Šâ â Œâ »â Ž" }, { "input": "tipsy", "output": "â žâ Šâ â Žâ ½" }, { "input": "tiptoe", "output": "â žâ Šâ â žâ •â ‘" }, { "input": "tiptoe's", "output": "â žâ Šâ â žâ •â ‘â „â Ž" }, { "input": "tiptoed", "output": "â žâ Šâ â žâ •â «" }, { "input": "tiptoeing", "output": "â žâ Šâ â žâ •â ‘â Œ" }, { "input": "tiptoes", "output": "â žâ Šâ â žâ •â ‘â Ž" }, { "input": "tiptop", "output": "â žâ Šâ â žâ •â " }, { "input": "tiptop's", "output": "â žâ Šâ â žâ •â â „â Ž" }, { "input": "tiptops", "output": "â žâ Šâ â žâ •â â Ž" }, { "input": "tirade", "output": "â žâ Šâ —â â ™â ‘" }, { "input": "tirade's", "output": "â žâ Šâ —â â ™â ‘â „â Ž" }, { "input": "tirades", "output": "â žâ Šâ —â â ™â ‘â Ž" }, { "input": "tire", "output": "â žâ Šâ —â ‘" }, { "input": "tire's", "output": "â žâ Šâ —â ‘â „â Ž" }, { "input": "tired", "output": "â žâ Šâ —â «" }, { "input": "tireder", "output": "â žâ Šâ —â «â »" }, { "input": "tiredest", "output": "â žâ Šâ —â «â ‘â Œ" }, { "input": "tiredness", "output": "â žâ Šâ —â «â °â Ž" }, { "input": "tiredness's", "output": "â žâ Šâ —â «â °â Žâ „â Ž" }, { "input": "tireless", "output": "⠞⠊⠗⠑⠨⠎" }, { "input": "tirelessly", "output": "⠞⠊⠗⠑⠨⠎⠇⠽" }, { "input": "tirelessness", "output": "⠞⠊⠗⠑⠨⠎⠰⠎" }, { "input": "tirelessness's", "output": "⠞⠊⠗⠑⠨⠎⠰⠎⠄⠎" }, { "input": "tires", "output": "â žâ Šâ —â ‘â Ž" }, { "input": "tiresome", "output": "â žâ Šâ —â ‘â â Ž" }, { "input": "tiresomely", "output": "â žâ Šâ —â ‘â â Žâ ‡â ½" }, { "input": "tiresomeness", "output": "â žâ Šâ —â ‘â â Žâ °â Ž" }, { "input": "tiresomeness's", "output": "â žâ Šâ —â ‘â â Žâ °â Žâ „â Ž" }, { "input": "tiring", "output": "â žâ Šâ —â Œ" }, { "input": "tissue", "output": "⠞⠊⠎⠎⠥⠑" }, { "input": "tissue's", "output": "⠞⠊⠎⠎⠥⠑⠄⠎" }, { "input": "tissues", "output": "⠞⠊⠎⠎⠥⠑⠎" }, { "input": "tit", "output": "â žâ Šâ ž" }, { "input": "tit's", "output": "â žâ Šâ žâ „â Ž" }, { "input": "titan", "output": "â žâ Šâ žâ â " }, { "input": "titan's", "output": "â žâ Šâ žâ â â „â Ž" }, { "input": "titanic", "output": "â žâ Šâ žâ â â Šâ ‰" }, { "input": "titanium", "output": "â žâ Šâ žâ â â Šâ ¥â " }, { "input": "titanium's", "output": "â žâ Šâ žâ â â Šâ ¥â â „â Ž" }, { "input": "titans", "output": "â žâ Šâ žâ â â Ž" }, { "input": "tithe", "output": "â žâ Šâ ®" }, { "input": "tithe's", "output": "⠞⠊⠮⠄⠎" }, { "input": "tithed", "output": "⠞⠊⠮⠙" }, { "input": "tither", "output": "⠞⠊⠮⠗" }, { "input": "tither's", "output": "⠞⠊⠮⠗⠄⠎" }, { "input": "tithers", "output": "⠞⠊⠮⠗⠎" }, { "input": "tithes", "output": "⠞⠊⠮⠎" }, { "input": "tithing", "output": "⠞⠊⠹⠌" }, { "input": "titian's", "output": "â žâ Šâ žâ Šâ â â „â Ž" }, { "input": "titillate", "output": "⠞⠊⠞⠊⠇⠇â â žâ ‘" }, { "input": "titillated", "output": "⠞⠊⠞⠊⠇⠇â â žâ «" }, { "input": "titillates", "output": "⠞⠊⠞⠊⠇⠇â â žâ ‘â Ž" }, { "input": "titillating", "output": "⠞⠊⠞⠊⠇⠇â â žâ Œ" }, { "input": "titillatingly", "output": "⠞⠊⠞⠊⠇⠇â â žâ Œâ ‡â ½" }, { "input": "titillation", "output": "⠞⠊⠞⠊⠇⠇⠠â " }, { "input": "titillation's", "output": "⠞⠊⠞⠊⠇⠇⠠â â „â Ž" }, { "input": "titivation", "output": "â žâ Šâ žâ Šâ §â  â " }, { "input": "titivation's", "output": "â žâ Šâ žâ Šâ §â  â â „â Ž" }, { "input": "title", "output": "⠞⠊⠞⠇⠑" }, { "input": "title's", "output": "⠞⠊⠞⠇⠑⠄⠎" }, { "input": "titled", "output": "⠞⠊⠞⠇⠫" }, { "input": "titleholder", "output": "⠞⠊⠞⠇⠑⠓⠕⠇⠙⠻" }, { "input": "titleholder's", "output": "⠞⠊⠞⠇⠑⠓⠕⠇⠙⠻⠄⠎" }, { "input": "titleholders", "output": "⠞⠊⠞⠇⠑⠓⠕⠇⠙⠻⠎" }, { "input": "titles", "output": "⠞⠊⠞⠇⠑⠎" }, { "input": "titling", "output": "⠞⠊⠞⠇⠌" }, { "input": "titlist", "output": "⠞⠊⠞⠇⠊⠌" }, { "input": "titlist's", "output": "⠞⠊⠞⠇⠊⠌⠄⠎" }, { "input": "titlists", "output": "⠞⠊⠞⠇⠊⠌⠎" }, { "input": "titmice", "output": "â žâ Šâ žâ â Šâ ‰â ‘" }, { "input": "titmouse", "output": "â žâ Šâ žâ â ³â Žâ ‘" }, { "input": "titmouse's", "output": "â žâ Šâ žâ â ³â Žâ ‘â „â Ž" }, { "input": "tits", "output": "â žâ Šâ žâ Ž" }, { "input": "titter", "output": "â žâ Šâ žâ žâ »" }, { "input": "titter's", "output": "⠞⠊⠞⠞⠻⠄⠎" }, { "input": "tittered", "output": "⠞⠊⠞⠞⠻⠫" }, { "input": "tittering", "output": "⠞⠊⠞⠞⠻⠌" }, { "input": "titters", "output": "⠞⠊⠞⠞⠻⠎" }, { "input": "tittle", "output": "⠞⠊⠞⠞⠇⠑" }, { "input": "tittle's", "output": "⠞⠊⠞⠞⠇⠑⠄⠎" }, { "input": "tittles", "output": "⠞⠊⠞⠞⠇⠑⠎" }, { "input": "titular", "output": "⠞⠊⠞⠥⠇⠜" }, { "input": "tizzies", "output": "⠞⠊⠵⠵⠊⠑⠎" }, { "input": "tizzy", "output": "⠞⠊⠵⠵⠽" }, { "input": "tizzy's", "output": "⠞⠊⠵⠵⠽⠄⠎" }, { "input": "to", "output": "â žâ •" }, { "input": "toad", "output": "â žâ •â â ™" }, { "input": "toad's", "output": "â žâ •â â ™â „â Ž" }, { "input": "toadied", "output": "â žâ •â â ™â Šâ «" }, { "input": "toadies", "output": "â žâ •â â ™â Šâ ‘â Ž" }, { "input": "toads", "output": "â žâ •â â ™â Ž" }, { "input": "toadstool", "output": "â žâ •â â ™â Œâ •â •â ‡" }, { "input": "toadstool's", "output": "â žâ •â â ™â Œâ •⠕⠇⠄⠎" }, { "input": "toadstools", "output": "â žâ •â â ™â Œâ •⠕⠇⠎" }, { "input": "toady", "output": "â žâ •â â ™â ½" }, { "input": "toady's", "output": "â žâ •â â ™â ½â „â Ž" }, { "input": "toadying", "output": "â žâ •â â ™â ½â Œ" }, { "input": "toadyism", "output": "â žâ •â â ™â ½â Šâ Žâ " }, { "input": "toadyism's", "output": "â žâ •â â ™â ½â Šâ Žâ â „â Ž" }, { "input": "toast", "output": "â žâ •â â Œ" }, { "input": "toast's", "output": "â žâ •â â Œâ „â Ž" }, { "input": "toasted", "output": "â žâ •â â Œâ «" }, { "input": "toaster", "output": "â žâ •â â Œâ »" }, { "input": "toaster's", "output": "â žâ •â â Œâ »â „â Ž" }, { "input": "toasters", "output": "â žâ •â â Œâ »â Ž" }, { "input": "toastier", "output": "â žâ •â â Œâ Šâ »" }, { "input": "toastiest", "output": "â žâ •â â Œâ Šâ ‘â Œ" }, { "input": "toasting", "output": "â žâ •â â Œâ Œ" }, { "input": "toastmaster", "output": "â žâ •â â Œâ â â Œâ »" }, { "input": "toastmaster's", "output": "â žâ •â â Œâ â â Œâ »â „â Ž" }, { "input": "toastmasters", "output": "â žâ •â â Œâ â â Œâ »â Ž" }, { "input": "toastmistress", "output": "â žâ •â â Œâ â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "toastmistress's", "output": "â žâ •â â Œâ â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "toastmistresses", "output": "â žâ •â â Œâ â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "toasts", "output": "â žâ •â â Œâ Ž" }, { "input": "toasty", "output": "â žâ •â â Œâ ½" }, { "input": "tobacco", "output": "â žâ •â ƒâ â ’â •" }, { "input": "tobacco's", "output": "â žâ •â ƒâ â ’â •â „â Ž" }, { "input": "tobacconist", "output": "â žâ •â ƒâ â ’â •â â Šâ Œ" }, { "input": "tobacconist's", "output": "â žâ •â ƒâ â ’â •â â Šâ Œâ „â Ž" }, { "input": "tobacconists", "output": "â žâ •â ƒâ â ’â •â â Šâ Œâ Ž" }, { "input": "tobaccos", "output": "â žâ •â ƒâ â ’â •â Ž" }, { "input": "toboggan", "output": "⠞⠕⠃⠕⠶â â " }, { "input": "toboggan's", "output": "⠞⠕⠃⠕⠶â â â „â Ž" }, { "input": "tobogganed", "output": "⠞⠕⠃⠕⠶â â â «" }, { "input": "tobogganer", "output": "⠞⠕⠃⠕⠶â â â »" }, { "input": "tobogganer's", "output": "⠞⠕⠃⠕⠶â â â »â „â Ž" }, { "input": "tobogganers", "output": "⠞⠕⠃⠕⠶â â â »â Ž" }, { "input": "tobogganing", "output": "⠞⠕⠃⠕⠶â â â Œ" }, { "input": "tobogganing's", "output": "⠞⠕⠃⠕⠶â â â Œâ „â Ž" }, { "input": "toboggans", "output": "⠞⠕⠃⠕⠶â â â Ž" }, { "input": "tocsin", "output": "⠞⠕⠉⠎⠔" }, { "input": "tocsin's", "output": "⠞⠕⠉⠎⠔⠄⠎" }, { "input": "tocsins", "output": "⠞⠕⠉⠎⠔⠎" }, { "input": "today", "output": "â žâ ™" }, { "input": "today's", "output": "⠞⠙⠄⠎" }, { "input": "toddies", "output": "⠞⠕⠲⠊⠑⠎" }, { "input": "toddle", "output": "⠞⠕⠲⠇⠑" }, { "input": "toddle's", "output": "⠞⠕⠲⠇⠑⠄⠎" }, { "input": "toddled", "output": "⠞⠕⠲⠇⠫" }, { "input": "toddler", "output": "⠞⠕⠲⠇⠻" }, { "input": "toddler's", "output": "⠞⠕⠲⠇⠻⠄⠎" }, { "input": "toddlers", "output": "⠞⠕⠲⠇⠻⠎" }, { "input": "toddles", "output": "⠞⠕⠲⠇⠑⠎" }, { "input": "toddling", "output": "⠞⠕⠲⠇⠌" }, { "input": "toddy", "output": "⠞⠕⠲⠽" }, { "input": "toddy's", "output": "⠞⠕⠲⠽⠄⠎" }, { "input": "toe", "output": "â žâ •â ‘" }, { "input": "toe's", "output": "â žâ •â ‘â „â Ž" }, { "input": "toed", "output": "â žâ •â «" }, { "input": "toehold", "output": "⠞⠕⠑⠓⠕⠇⠙" }, { "input": "toehold's", "output": "⠞⠕⠑⠓⠕⠇⠙⠄⠎" }, { "input": "toeholds", "output": "⠞⠕⠑⠓⠕⠇⠙⠎" }, { "input": "toeing", "output": "â žâ •â ‘â Œ" }, { "input": "toenail", "output": "â žâ •â ‘â â â Šâ ‡" }, { "input": "toenail's", "output": "â žâ •â ‘â â â Šâ ‡â „â Ž" }, { "input": "toenails", "output": "â žâ •â ‘â â â Šâ ‡â Ž" }, { "input": "toes", "output": "â žâ •â ‘â Ž" }, { "input": "toffee", "output": "â žâ ·â ‹â ‘â ‘" }, { "input": "toffee's", "output": "â žâ ·â ‹â ‘â ‘â „â Ž" }, { "input": "toffees", "output": "â žâ ·â ‹â ‘â ‘â Ž" }, { "input": "tofu", "output": "â žâ ·â ¥" }, { "input": "tofu's", "output": "⠞⠷⠥⠄⠎" }, { "input": "tog", "output": "â žâ •â ›" }, { "input": "tog's", "output": "⠞⠕⠛⠄⠎" }, { "input": "toga", "output": "â žâ •â ›â " }, { "input": "toga's", "output": "â žâ •â ›â â „â Ž" }, { "input": "togaed", "output": "â žâ •â ›â â «" }, { "input": "togas", "output": "â žâ •â ›â â Ž" }, { "input": "together", "output": "⠞⠛⠗" }, { "input": "togetherness", "output": "⠞⠛⠗⠰⠎" }, { "input": "togetherness's", "output": "⠞⠛⠗⠰⠎⠄⠎" }, { "input": "toggle", "output": "⠞⠕⠶⠇⠑" }, { "input": "toggle's", "output": "⠞⠕⠶⠇⠑⠄⠎" }, { "input": "toggled", "output": "⠞⠕⠶⠇⠫" }, { "input": "toggles", "output": "⠞⠕⠶⠇⠑⠎" }, { "input": "toggling", "output": "⠞⠕⠶⠇⠌" }, { "input": "togs", "output": "⠞⠕⠛⠎" }, { "input": "togs's", "output": "⠞⠕⠛⠎⠄⠎" }, { "input": "toil", "output": "â žâ •â Šâ ‡" }, { "input": "toil's", "output": "⠞⠕⠊⠇⠄⠎" }, { "input": "toiled", "output": "⠞⠕⠊⠇⠫" }, { "input": "toiler", "output": "⠞⠕⠊⠇⠻" }, { "input": "toiler's", "output": "⠞⠕⠊⠇⠻⠄⠎" }, { "input": "toilers", "output": "⠞⠕⠊⠇⠻⠎" }, { "input": "toilet", "output": "⠞⠕⠊⠇⠑⠞" }, { "input": "toilet's", "output": "⠞⠕⠊⠇⠑⠞⠄⠎" }, { "input": "toileted", "output": "⠞⠕⠊⠇⠑⠞⠫" }, { "input": "toileting", "output": "⠞⠕⠊⠇⠑⠞⠌" }, { "input": "toiletries", "output": "⠞⠕⠊⠇⠑⠞⠗⠊⠑⠎" }, { "input": "toiletry", "output": "⠞⠕⠊⠇⠑⠞⠗⠽" }, { "input": "toiletry's", "output": "⠞⠕⠊⠇⠑⠞⠗⠽⠄⠎" }, { "input": "toilets", "output": "⠞⠕⠊⠇⠑⠞⠎" }, { "input": "toilette", "output": "⠞⠕⠊⠇⠑⠞⠞⠑" }, { "input": "toilette's", "output": "⠞⠕⠊⠇⠑⠞⠞⠑⠄⠎" }, { "input": "toiling", "output": "⠞⠕⠊⠇⠌" }, { "input": "toils", "output": "⠞⠕⠊⠇⠎" }, { "input": "toilsome", "output": "â žâ •â Šâ ‡â â Ž" }, { "input": "toke", "output": "â žâ •â …â ‘" }, { "input": "toke's", "output": "â žâ •â …â ‘â „â Ž" }, { "input": "toked", "output": "â žâ •â …â «" }, { "input": "token", "output": "â žâ •â …â ¢" }, { "input": "token's", "output": "⠞⠕⠅⠢⠄⠎" }, { "input": "tokenism", "output": "⠞⠕⠅⠢⠊⠎â " }, { "input": "tokenism's", "output": "⠞⠕⠅⠢⠊⠎â â „â Ž" }, { "input": "tokens", "output": "⠞⠕⠅⠢⠎" }, { "input": "tokes", "output": "â žâ •â …â ‘â Ž" }, { "input": "toking", "output": "â žâ •â …â Œ" }, { "input": "told", "output": "⠞⠕⠇⠙" }, { "input": "tole", "output": "⠞⠕⠇⠑" }, { "input": "tole's", "output": "⠞⠕⠇⠑⠄⠎" }, { "input": "tolerable", "output": "⠞⠕⠇⠻â â ¼" }, { "input": "tolerably", "output": "⠞⠕⠇⠻â â ƒâ ‡â ½" }, { "input": "tolerance", "output": "⠞⠕⠇⠻⠨⠑" }, { "input": "tolerance's", "output": "⠞⠕⠇⠻⠨⠑⠄⠎" }, { "input": "tolerances", "output": "⠞⠕⠇⠻⠨⠑⠎" }, { "input": "tolerant", "output": "⠞⠕⠇⠻â â â ž" }, { "input": "tolerantly", "output": "⠞⠕⠇⠻â â â žâ ‡â ½" }, { "input": "tolerate", "output": "⠞⠕⠇⠻â â žâ ‘" }, { "input": "tolerated", "output": "⠞⠕⠇⠻â â žâ «" }, { "input": "tolerates", "output": "⠞⠕⠇⠻â â žâ ‘â Ž" }, { "input": "tolerating", "output": "⠞⠕⠇⠻â â žâ Œ" }, { "input": "toleration", "output": "⠞⠕⠇⠻⠠â " }, { "input": "toleration's", "output": "⠞⠕⠇⠻⠠â â „â Ž" }, { "input": "toll", "output": "⠞⠕⠇⠇" }, { "input": "toll's", "output": "⠞⠕⠇⠇⠄⠎" }, { "input": "tollbooth", "output": "⠞⠕⠇⠇⠃⠕⠕⠹" }, { "input": "tollbooth's", "output": "⠞⠕⠇⠇⠃⠕⠕⠹⠄⠎" }, { "input": "tollbooths", "output": "⠞⠕⠇⠇⠃⠕⠕⠹⠎" }, { "input": "tolled", "output": "⠞⠕⠇⠇⠫" }, { "input": "tollgate", "output": "⠞⠕⠇⠇⠛â â žâ ‘" }, { "input": "tollgate's", "output": "⠞⠕⠇⠇⠛â â žâ ‘â „â Ž" }, { "input": "tollgates", "output": "⠞⠕⠇⠇⠛â â žâ ‘â Ž" }, { "input": "tolling", "output": "⠞⠕⠇⠇⠌" }, { "input": "tolls", "output": "⠞⠕⠇⠇⠎" }, { "input": "tollway", "output": "⠞⠕⠇⠇⠺â â ½" }, { "input": "tollway's", "output": "⠞⠕⠇⠇⠺â â ½â „â Ž" }, { "input": "tollways", "output": "⠞⠕⠇⠇⠺â â ½â Ž" }, { "input": "toluene", "output": "⠞⠕⠇⠥⠢⠑" }, { "input": "toluene's", "output": "⠞⠕⠇⠥⠢⠑⠄⠎" }, { "input": "tom", "output": "â žâ •â " }, { "input": "tom's", "output": "â žâ •â â „â Ž" }, { "input": "tomahawk", "output": "â žâ •â â â “â â ºâ …" }, { "input": "tomahawk's", "output": "â žâ •â â â “â â ºâ …â „â Ž" }, { "input": "tomahawked", "output": "â žâ •â â â “â â ºâ …â «" }, { "input": "tomahawking", "output": "â žâ •â â â “â â ºâ …â Œ" }, { "input": "tomahawks", "output": "â žâ •â â â “â â ºâ …â Ž" }, { "input": "tomato", "output": "â žâ •â â â žâ •" }, { "input": "tomato's", "output": "â žâ •â â â žâ •â „â Ž" }, { "input": "tomatoes", "output": "â žâ •â â â žâ •â ‘â Ž" }, { "input": "tomb", "output": "â žâ •â â ƒ" }, { "input": "tomb's", "output": "â žâ •â â ƒâ „â Ž" }, { "input": "tombed", "output": "â žâ •â â ƒâ «" }, { "input": "tombing", "output": "â žâ •â â ƒâ Œ" }, { "input": "tomboy", "output": "â žâ •â â ƒâ •â ½" }, { "input": "tomboy's", "output": "â žâ •â â ƒâ •⠽⠄⠎" }, { "input": "tomboyish", "output": "â žâ •â â ƒâ •⠽⠊⠩" }, { "input": "tomboys", "output": "â žâ •â â ƒâ •⠽⠎" }, { "input": "tombs", "output": "â žâ •â â ƒâ Ž" }, { "input": "tombstone", "output": "â žâ •â â ƒâ Œâ â •" }, { "input": "tombstone's", "output": "â žâ •â â ƒâ Œâ â •â „â Ž" }, { "input": "tombstones", "output": "â žâ •â â ƒâ Œâ â •â Ž" }, { "input": "tomcat", "output": "â žâ •â â ‰â â ž" }, { "input": "tomcat's", "output": "â žâ •â â ‰â â žâ „â Ž" }, { "input": "tomcats", "output": "â žâ •â â ‰â â žâ Ž" }, { "input": "tome", "output": "â žâ •â â ‘" }, { "input": "tome's", "output": "â žâ •â â ‘â „â Ž" }, { "input": "tomes", "output": "â žâ •â â ‘â Ž" }, { "input": "tomfooleries", "output": "â žâ •â â ‹â •⠕⠇⠻⠊⠑⠎" }, { "input": "tomfoolery", "output": "â žâ •â â ‹â •⠕⠇⠻⠽" }, { "input": "tomfoolery's", "output": "â žâ •â â ‹â •⠕⠇⠻⠽⠄⠎" }, { "input": "tomographic", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‰" }, { "input": "tomography", "output": "â žâ •â â •⠛⠗â â â “â ½" }, { "input": "tomography's", "output": "â žâ •â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "tomorrow", "output": "â žâ " }, { "input": "tomorrow's", "output": "â žâ â „â Ž" }, { "input": "tomorrows", "output": "â žâ â Ž" }, { "input": "toms", "output": "â žâ •â â Ž" }, { "input": "tomtit", "output": "â žâ •â â žâ Šâ ž" }, { "input": "tomtit's", "output": "â žâ •â â žâ Šâ žâ „â Ž" }, { "input": "tomtits", "output": "â žâ •â â žâ Šâ žâ Ž" }, { "input": "ton", "output": "â žâ •â " }, { "input": "ton's", "output": "â žâ •â â „â Ž" }, { "input": "tonal", "output": "â žâ •â â â ‡" }, { "input": "tonalities", "output": "â žâ •â â â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "tonality", "output": "â žâ •â â â ‡â °â ½" }, { "input": "tonality's", "output": "â žâ •â â â ‡â °â ½â „â Ž" }, { "input": "tonally", "output": "â žâ •â â  â ½" }, { "input": "tone", "output": "â žâ â •" }, { "input": "tone's", "output": "â žâ â •â „â Ž" }, { "input": "tonearm", "output": "â žâ •â â ‘â œâ " }, { "input": "tonearm's", "output": "â žâ •â â ‘â œâ â „â Ž" }, { "input": "tonearms", "output": "â žâ •â â ‘â œâ â Ž" }, { "input": "toned", "output": "â žâ •â â «" }, { "input": "toneless", "output": "â žâ â •⠨⠎" }, { "input": "toner", "output": "â žâ •â â »" }, { "input": "toner's", "output": "â žâ •â â »â „â Ž" }, { "input": "tones", "output": "â žâ â •â Ž" }, { "input": "tong", "output": "â žâ °â ›" }, { "input": "tong's", "output": "⠞⠰⠛⠄⠎" }, { "input": "tonged", "output": "⠞⠰⠛⠫" }, { "input": "tonging", "output": "⠞⠰⠛⠌" }, { "input": "tongs", "output": "⠞⠰⠛⠎" }, { "input": "tongue", "output": "⠞⠰⠛⠥⠑" }, { "input": "tongue's", "output": "⠞⠰⠛⠥⠑⠄⠎" }, { "input": "tongued", "output": "⠞⠰⠛⠥⠫" }, { "input": "tongueless", "output": "⠞⠰⠛⠥⠑⠨⠎" }, { "input": "tongues", "output": "⠞⠰⠛⠥⠑⠎" }, { "input": "tonguing", "output": "⠞⠰⠛⠥⠌" }, { "input": "tonic", "output": "â žâ •â â Šâ ‰" }, { "input": "tonic's", "output": "â žâ •â â Šâ ‰â „â Ž" }, { "input": "tonics", "output": "â žâ •â â Šâ ‰â Ž" }, { "input": "tonier", "output": "â žâ •â â Šâ »" }, { "input": "toniest", "output": "â žâ •â â Šâ ‘â Œ" }, { "input": "tonight", "output": "â žâ " }, { "input": "tonight's", "output": "â žâ â „â Ž" }, { "input": "toning", "output": "â žâ •â â Œ" }, { "input": "tonnage", "output": "â žâ •â â â â ›â ‘" }, { "input": "tonnage's", "output": "â žâ •â â â â ›â ‘â „â Ž" }, { "input": "tonnages", "output": "â žâ •â â â â ›â ‘â Ž" }, { "input": "tonne", "output": "â žâ •â â â ‘" }, { "input": "tonne's", "output": "â žâ •â â â ‘â „â Ž" }, { "input": "tonnes", "output": "â žâ •â â â ‘â Ž" }, { "input": "tons", "output": "â žâ •â â Ž" }, { "input": "tonsil", "output": "â žâ •â â Žâ Šâ ‡" }, { "input": "tonsil's", "output": "â žâ •â â Žâ Šâ ‡â „â Ž" }, { "input": "tonsillectomies", "output": "â žâ •â â Žâ Šâ ‡â ‡â ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "tonsillectomy", "output": "â žâ •â â Žâ Šâ ‡â ‡â ‘⠉⠞⠕â â ½" }, { "input": "tonsillectomy's", "output": "â žâ •â â Žâ Šâ ‡â ‡â ‘⠉⠞⠕â â ½â „â Ž" }, { "input": "tonsillitis", "output": "â žâ •â â Žâ Šâ ‡â ‡â Šâ žâ Šâ Ž" }, { "input": "tonsillitis's", "output": "â žâ •â â Žâ Šâ ‡â ‡â Šâ žâ Šâ Žâ „â Ž" }, { "input": "tonsils", "output": "â žâ •â â Žâ Šâ ‡â Ž" }, { "input": "tonsorial", "output": "â žâ •â â Žâ •â —â Šâ â ‡" }, { "input": "tonsure", "output": "â žâ •â â Žâ ¥â —â ‘" }, { "input": "tonsure's", "output": "â žâ •â â Žâ ¥â —â ‘â „â Ž" }, { "input": "tonsured", "output": "â žâ •â â Žâ ¥â —â «" }, { "input": "tonsures", "output": "â žâ •â â Žâ ¥â —â ‘â Ž" }, { "input": "tonsuring", "output": "â žâ •â â Žâ ¥â —â Œ" }, { "input": "tony", "output": "â žâ •â â ½" }, { "input": "too", "output": "â žâ •â •" }, { "input": "took", "output": "â žâ •â •â …" }, { "input": "tool", "output": "â žâ •â •â ‡" }, { "input": "tool's", "output": "⠞⠕⠕⠇⠄⠎" }, { "input": "toolbar", "output": "⠞⠕⠕⠇⠃⠜" }, { "input": "toolbox", "output": "⠞⠕⠕⠇⠃⠕⠭" }, { "input": "toolbox's", "output": "⠞⠕⠕⠇⠃⠕⠭⠄⠎" }, { "input": "toolboxes", "output": "⠞⠕⠕⠇⠃⠕⠭⠑⠎" }, { "input": "tooled", "output": "⠞⠕⠕⠇⠫" }, { "input": "tooling", "output": "⠞⠕⠕⠇⠌" }, { "input": "toolkit", "output": "⠞⠕⠕⠇⠅⠊⠞" }, { "input": "toolmaker", "output": "â žâ •â •â ‡â â â …â »" }, { "input": "toolmaker's", "output": "â žâ •â •â ‡â â â …⠻⠄⠎" }, { "input": "toolmakers", "output": "â žâ •â •â ‡â â â …⠻⠎" }, { "input": "tools", "output": "⠞⠕⠕⠇⠎" }, { "input": "toot", "output": "â žâ •â •â ž" }, { "input": "toot's", "output": "â žâ •â •â žâ „â Ž" }, { "input": "tooted", "output": "â žâ •â •â žâ «" }, { "input": "tooter", "output": "â žâ •â •â žâ »" }, { "input": "tooter's", "output": "⠞⠕⠕⠞⠻⠄⠎" }, { "input": "tooters", "output": "⠞⠕⠕⠞⠻⠎" }, { "input": "tooth", "output": "â žâ •â •â ¹" }, { "input": "tooth's", "output": "⠞⠕⠕⠹⠄⠎" }, { "input": "toothache", "output": "â žâ •â •â ¹â â ¡â ‘" }, { "input": "toothache's", "output": "â žâ •â •â ¹â â ¡â ‘â „â Ž" }, { "input": "toothaches", "output": "â žâ •â •â ¹â â ¡â ‘â Ž" }, { "input": "toothbrush", "output": "⠞⠕⠕⠹⠃⠗⠥⠩" }, { "input": "toothbrush's", "output": "⠞⠕⠕⠹⠃⠗⠥⠩⠄⠎" }, { "input": "toothbrushes", "output": "⠞⠕⠕⠹⠃⠗⠥⠩⠑⠎" }, { "input": "toothed", "output": "⠞⠕⠕⠮⠙" }, { "input": "toothier", "output": "⠞⠕⠕⠹⠊⠻" }, { "input": "toothiest", "output": "⠞⠕⠕⠹⠊⠑⠌" }, { "input": "toothily", "output": "⠞⠕⠕⠹⠊⠇⠽" }, { "input": "toothless", "output": "⠞⠕⠕⠹⠨⠎" }, { "input": "toothpaste", "output": "â žâ •â •â ¹â â â Œâ ‘" }, { "input": "toothpaste's", "output": "â žâ •â •â ¹â â â Œâ ‘â „â Ž" }, { "input": "toothpastes", "output": "â žâ •â •â ¹â â â Œâ ‘â Ž" }, { "input": "toothpick", "output": "â žâ •â •â ¹â â Šâ ‰â …" }, { "input": "toothpick's", "output": "â žâ •â •â ¹â â Šâ ‰â …â „â Ž" }, { "input": "toothpicks", "output": "â žâ •â •â ¹â â Šâ ‰â …â Ž" }, { "input": "toothsome", "output": "â žâ •â •â ¹â â Ž" }, { "input": "toothy", "output": "⠞⠕⠕⠹⠽" }, { "input": "tooting", "output": "â žâ •â •â žâ Œ" }, { "input": "toots", "output": "â žâ •â •â žâ Ž" }, { "input": "top", "output": "â žâ •â " }, { "input": "top's", "output": "â žâ •â â „â Ž" }, { "input": "topaz", "output": "â žâ •â â â µ" }, { "input": "topaz's", "output": "â žâ •â â â µâ „â Ž" }, { "input": "topazes", "output": "â žâ •â â â µâ ‘â Ž" }, { "input": "topcoat", "output": "â žâ •â â ‰â •â â ž" }, { "input": "topcoat's", "output": "â žâ •â â ‰â •â â žâ „â Ž" }, { "input": "topcoats", "output": "â žâ •â â ‰â •â â žâ Ž" }, { "input": "topdressing", "output": "â žâ •â â ™â —â ‘â Žâ Žâ Œ" }, { "input": "topdressing's", "output": "â žâ •â â ™â —⠑⠎⠎⠌⠄⠎" }, { "input": "topdressings", "output": "â žâ •â â ™â —⠑⠎⠎⠌⠎" }, { "input": "topflight", "output": "â žâ •â â ‹â ‡â Šâ £â ž" }, { "input": "topiary's", "output": "â žâ •â â Šâ œâ ½â „â Ž" }, { "input": "topic", "output": "â žâ •â â Šâ ‰" }, { "input": "topic's", "output": "â žâ •â â Šâ ‰â „â Ž" }, { "input": "topical", "output": "â žâ •â â Šâ ‰â â ‡" }, { "input": "topicality's", "output": "â žâ •â â Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "topically", "output": "â žâ •â â Šâ ‰â  â ½" }, { "input": "topics", "output": "â žâ •â â Šâ ‰â Ž" }, { "input": "topknot", "output": "â žâ •â â …â â •â ž" }, { "input": "topknot's", "output": "â žâ •â â …â â •â žâ „â Ž" }, { "input": "topknots", "output": "â žâ •â â …â â •â žâ Ž" }, { "input": "topless", "output": "â žâ •â â ¨â Ž" }, { "input": "topmast", "output": "â žâ •â â â â Œ" }, { "input": "topmast's", "output": "â žâ •â â â â Œâ „â Ž" }, { "input": "topmasts", "output": "â žâ •â â â â Œâ Ž" }, { "input": "topmost", "output": "â žâ •â â â •â Œ" }, { "input": "topnotch", "output": "â žâ •â â â •â žâ ¡" }, { "input": "topographer", "output": "â žâ •â â •⠛⠗â â â “â »" }, { "input": "topographer's", "output": "â žâ •â â •⠛⠗â â â “⠻⠄⠎" }, { "input": "topographers", "output": "â žâ •â â •⠛⠗â â â “⠻⠎" }, { "input": "topographic", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‰" }, { "input": "topographical", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "topographies", "output": "â žâ •â â •⠛⠗â â â “â Šâ ‘â Ž" }, { "input": "topography", "output": "â žâ •â â •⠛⠗â â â “â ½" }, { "input": "topography's", "output": "â žâ •â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "topological", "output": "â žâ •â â •⠇⠕⠛⠊⠉â â ‡" }, { "input": "topologically", "output": "â žâ •â â •⠇⠕⠛⠊⠉⠠⠽" }, { "input": "topology", "output": "â žâ •â â •⠇⠕⠛⠽" }, { "input": "topped", "output": "â žâ •â â â «" }, { "input": "topping", "output": "â žâ •â â â Œ" }, { "input": "topping's", "output": "â žâ •â â â Œâ „â Ž" }, { "input": "toppings", "output": "â žâ •â â â Œâ Ž" }, { "input": "topple", "output": "â žâ •â â â ‡â ‘" }, { "input": "toppled", "output": "â žâ •â â â ‡â «" }, { "input": "topples", "output": "â žâ •â â â ‡â ‘â Ž" }, { "input": "toppling", "output": "â žâ •â â â ‡â Œ" }, { "input": "tops", "output": "â žâ •â â Ž" }, { "input": "topsail", "output": "â žâ •â â Žâ â Šâ ‡" }, { "input": "topsail's", "output": "â žâ •â â Žâ â Šâ ‡â „â Ž" }, { "input": "topsails", "output": "â žâ •â â Žâ â Šâ ‡â Ž" }, { "input": "topside", "output": "â žâ •â â Žâ Šâ ™â ‘" }, { "input": "topside's", "output": "â žâ •â â Žâ Šâ ™â ‘â „â Ž" }, { "input": "topsides", "output": "â žâ •â â Žâ Šâ ™â ‘â Ž" }, { "input": "topsoil", "output": "â žâ •â â Žâ •â Šâ ‡" }, { "input": "topsoil's", "output": "â žâ •â â Žâ •⠊⠇⠄⠎" }, { "input": "topspin's", "output": "â žâ •â â Žâ â ”â „â Ž" }, { "input": "toque", "output": "⠞⠕⠟⠥⠑" }, { "input": "toque's", "output": "⠞⠕⠟⠥⠑⠄⠎" }, { "input": "toques", "output": "⠞⠕⠟⠥⠑⠎" }, { "input": "tor", "output": "â žâ •â —" }, { "input": "tor's", "output": "â žâ •â —â „â Ž" }, { "input": "torch", "output": "â žâ •â —â ¡" }, { "input": "torch's", "output": "â žâ •â —â ¡â „â Ž" }, { "input": "torchbearer", "output": "⠞⠕⠗⠡⠃⠑⠜⠻" }, { "input": "torchbearer's", "output": "⠞⠕⠗⠡⠃⠑⠜⠻⠄⠎" }, { "input": "torchbearers", "output": "⠞⠕⠗⠡⠃⠑⠜⠻⠎" }, { "input": "torched", "output": "â žâ •â —â ¡â «" }, { "input": "torches", "output": "â žâ •â —â ¡â ‘â Ž" }, { "input": "torching", "output": "â žâ •â —â ¡â Œ" }, { "input": "torchlight", "output": "⠞⠕⠗⠡⠇⠊⠣⠞" }, { "input": "torchlight's", "output": "⠞⠕⠗⠡⠇⠊⠣⠞⠄⠎" }, { "input": "tore", "output": "â žâ •â —â ‘" }, { "input": "toreador", "output": "⠞⠕⠗⠂⠙⠕⠗" }, { "input": "toreador's", "output": "⠞⠕⠗⠂⠙⠕⠗⠄⠎" }, { "input": "toreadors", "output": "⠞⠕⠗⠂⠙⠕⠗⠎" }, { "input": "torment", "output": "â žâ •â —â °â ž" }, { "input": "torment's", "output": "â žâ •â —â °â žâ „â Ž" }, { "input": "tormented", "output": "â žâ •â —â °â žâ «" }, { "input": "tormenting", "output": "â žâ •â —â °â žâ Œ" }, { "input": "tormentingly", "output": "⠞⠕⠗⠰⠞⠌⠇⠽" }, { "input": "tormentor", "output": "â žâ •â —â °â žâ •â —" }, { "input": "tormentor's", "output": "â žâ •â —â °â žâ •â —â „â Ž" }, { "input": "tormentors", "output": "â žâ •â —â °â žâ •â —â Ž" }, { "input": "torments", "output": "â žâ •â —â °â žâ Ž" }, { "input": "torn", "output": "â žâ •â —â " }, { "input": "tornado", "output": "â žâ •â —â â â ™â •" }, { "input": "tornado's", "output": "â žâ •â —â â â ™â •â „â Ž" }, { "input": "tornadoes", "output": "â žâ •â —â â â ™â •â ‘â Ž" }, { "input": "torpedo", "output": "â žâ •â —â â «â •" }, { "input": "torpedo's", "output": "â žâ •â —â â «â •â „â Ž" }, { "input": "torpedoed", "output": "â žâ •â —â â «â •â «" }, { "input": "torpedoes", "output": "â žâ •â —â â «â •â ‘â Ž" }, { "input": "torpedoing", "output": "â žâ •â —â â «â •â Œ" }, { "input": "torpid", "output": "â žâ •â —â â Šâ ™" }, { "input": "torpidity", "output": "â žâ •â —â â Šâ ™â °â ½" }, { "input": "torpidity's", "output": "â žâ •â —â â Šâ ™â °â ½â „â Ž" }, { "input": "torpor", "output": "â žâ •â —â â •â —" }, { "input": "torpor's", "output": "â žâ •â —â â •â —â „â Ž" }, { "input": "torque", "output": "⠞⠕⠗⠟⠥⠑" }, { "input": "torque's", "output": "⠞⠕⠗⠟⠥⠑⠄⠎" }, { "input": "torqued", "output": "⠞⠕⠗⠟⠥⠫" }, { "input": "torques", "output": "⠞⠕⠗⠟⠥⠑⠎" }, { "input": "torquing", "output": "⠞⠕⠗⠟⠥⠌" }, { "input": "torrent", "output": "⠞⠕⠗⠗⠢⠞" }, { "input": "torrent's", "output": "⠞⠕⠗⠗⠢⠞⠄⠎" }, { "input": "torrential", "output": "⠞⠕⠗⠗⠢⠞⠊â â ‡" }, { "input": "torrents", "output": "⠞⠕⠗⠗⠢⠞⠎" }, { "input": "torrid", "output": "â žâ •â —â —â Šâ ™" }, { "input": "torrider", "output": "⠞⠕⠗⠗⠊⠙⠻" }, { "input": "torridest", "output": "⠞⠕⠗⠗⠊⠙⠑⠌" }, { "input": "torridity", "output": "⠞⠕⠗⠗⠊⠙⠰⠽" }, { "input": "torridity's", "output": "⠞⠕⠗⠗⠊⠙⠰⠽⠄⠎" }, { "input": "torridly", "output": "⠞⠕⠗⠗⠊⠙⠇⠽" }, { "input": "torridness", "output": "⠞⠕⠗⠗⠊⠙⠰⠎" }, { "input": "torridness's", "output": "⠞⠕⠗⠗⠊⠙⠰⠎⠄⠎" }, { "input": "tors", "output": "â žâ •â —â Ž" }, { "input": "torsion", "output": "â žâ •â —â ¨â " }, { "input": "torsion's", "output": "â žâ •â —â ¨â â „â Ž" }, { "input": "torsional", "output": "â žâ •â —â ¨â â â ‡" }, { "input": "torso", "output": "â žâ •â —â Žâ •" }, { "input": "torso's", "output": "â žâ •â —â Žâ •â „â Ž" }, { "input": "torsos", "output": "â žâ •â —â Žâ •â Ž" }, { "input": "tort", "output": "â žâ •â —â ž" }, { "input": "tort's", "output": "â žâ •â —â žâ „â Ž" }, { "input": "torte", "output": "â žâ •â —â žâ ‘" }, { "input": "torte's", "output": "â žâ •â —â žâ ‘â „â Ž" }, { "input": "tortellini", "output": "⠞⠕⠗⠞⠑⠇⠇⠔⠊" }, { "input": "tortellini's", "output": "⠞⠕⠗⠞⠑⠇⠇⠔⠊⠄⠎" }, { "input": "tortes", "output": "â žâ •â —â žâ ‘â Ž" }, { "input": "tortilla", "output": "⠞⠕⠗⠞⠊⠇⠇â " }, { "input": "tortilla's", "output": "⠞⠕⠗⠞⠊⠇⠇â â „â Ž" }, { "input": "tortillas", "output": "⠞⠕⠗⠞⠊⠇⠇â â Ž" }, { "input": "tortoise", "output": "â žâ •â —â žâ •â Šâ Žâ ‘" }, { "input": "tortoise's", "output": "â žâ •â —â žâ •â Šâ Žâ ‘â „â Ž" }, { "input": "tortoises", "output": "â žâ •â —â žâ •â Šâ Žâ ‘â Ž" }, { "input": "tortoiseshell", "output": "⠞⠕⠗⠞⠕⠊⠎⠑⠩⠑⠇⠇" }, { "input": "tortoiseshell's", "output": "⠞⠕⠗⠞⠕⠊⠎⠑⠩⠑⠇⠇⠄⠎" }, { "input": "tortoiseshells", "output": "⠞⠕⠗⠞⠕⠊⠎⠑⠩⠑⠇⠇⠎" }, { "input": "tortoni", "output": "â žâ •â —â žâ •â â Š" }, { "input": "tortoni's", "output": "â žâ •â —â žâ •â â Šâ „â Ž" }, { "input": "torts", "output": "â žâ •â —â žâ Ž" }, { "input": "tortuous", "output": "⠞⠕⠗⠞⠥⠳⠎" }, { "input": "tortuously", "output": "⠞⠕⠗⠞⠥⠳⠎⠇⠽" }, { "input": "tortuousness's", "output": "⠞⠕⠗⠞⠥⠳⠎⠰⠎⠄⠎" }, { "input": "torture", "output": "⠞⠕⠗⠞⠥⠗⠑" }, { "input": "torture's", "output": "⠞⠕⠗⠞⠥⠗⠑⠄⠎" }, { "input": "tortured", "output": "⠞⠕⠗⠞⠥⠗⠫" }, { "input": "torturer", "output": "⠞⠕⠗⠞⠥⠗⠻" }, { "input": "torturer's", "output": "⠞⠕⠗⠞⠥⠗⠻⠄⠎" }, { "input": "torturers", "output": "⠞⠕⠗⠞⠥⠗⠻⠎" }, { "input": "tortures", "output": "⠞⠕⠗⠞⠥⠗⠑⠎" }, { "input": "torturing", "output": "⠞⠕⠗⠞⠥⠗⠌" }, { "input": "torus", "output": "⠞⠕⠗⠥⠎" }, { "input": "toss", "output": "â žâ •â Žâ Ž" }, { "input": "toss's", "output": "â žâ •â Žâ Žâ „â Ž" }, { "input": "tossed", "output": "â žâ •â Žâ Žâ «" }, { "input": "tosses", "output": "â žâ •â Žâ Žâ ‘â Ž" }, { "input": "tossing", "output": "â žâ •â Žâ Žâ Œ" }, { "input": "tossup", "output": "â žâ •â Žâ Žâ ¥â " }, { "input": "tossup's", "output": "â žâ •â Žâ Žâ ¥â â „â Ž" }, { "input": "tossups", "output": "â žâ •â Žâ Žâ ¥â â Ž" }, { "input": "tot", "output": "â žâ •â ž" }, { "input": "tot's", "output": "â žâ •â žâ „â Ž" }, { "input": "total", "output": "â žâ •â žâ â ‡" }, { "input": "total's", "output": "â žâ •â žâ â ‡â „â Ž" }, { "input": "totaled", "output": "â žâ •â žâ â ‡â «" }, { "input": "totaling", "output": "â žâ •â žâ â ‡â Œ" }, { "input": "totalitarian", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â " }, { "input": "totalitarian's", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â â „â Ž" }, { "input": "totalitarianism", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â â Šâ Žâ " }, { "input": "totalitarianism's", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â â Šâ Žâ â „â Ž" }, { "input": "totalitarians", "output": "â žâ •â žâ â ‡â Šâ žâ œâ Šâ â â Ž" }, { "input": "totalities", "output": "â žâ •â žâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "totality", "output": "â žâ •â žâ â ‡â °â ½" }, { "input": "totality's", "output": "â žâ •â žâ â ‡â °â ½â „â Ž" }, { "input": "totalizator", "output": "â žâ •â žâ â ‡â Šâ µâ â žâ •â —" }, { "input": "totalizator's", "output": "â žâ •â žâ â ‡â Šâ µâ â žâ •â —â „â Ž" }, { "input": "totalizators", "output": "â žâ •â žâ â ‡â Šâ µâ â žâ •â —â Ž" }, { "input": "totally", "output": "â žâ •â žâ  â ½" }, { "input": "totals", "output": "â žâ •â žâ â ‡â Ž" }, { "input": "tote", "output": "â žâ •â žâ ‘" }, { "input": "tote's", "output": "â žâ •â žâ ‘â „â Ž" }, { "input": "toted", "output": "â žâ •â žâ «" }, { "input": "totem", "output": "â žâ •â žâ ‘â " }, { "input": "totem's", "output": "â žâ •â žâ ‘â â „â Ž" }, { "input": "totemic", "output": "â žâ •â žâ ‘â â Šâ ‰" }, { "input": "totems", "output": "â žâ •â žâ ‘â â Ž" }, { "input": "totes", "output": "â žâ •â žâ ‘â Ž" }, { "input": "toting", "output": "â žâ •â žâ Œ" }, { "input": "tots", "output": "â žâ •â žâ Ž" }, { "input": "totted", "output": "â žâ •â žâ žâ «" }, { "input": "totter", "output": "â žâ •â žâ žâ »" }, { "input": "totter's", "output": "⠞⠕⠞⠞⠻⠄⠎" }, { "input": "tottered", "output": "⠞⠕⠞⠞⠻⠫" }, { "input": "totterer", "output": "⠞⠕⠞⠞⠻⠻" }, { "input": "totterer's", "output": "⠞⠕⠞⠞⠻⠻⠄⠎" }, { "input": "totterers", "output": "⠞⠕⠞⠞⠻⠻⠎" }, { "input": "tottering", "output": "⠞⠕⠞⠞⠻⠌" }, { "input": "totters", "output": "⠞⠕⠞⠞⠻⠎" }, { "input": "totting", "output": "â žâ •â žâ žâ Œ" }, { "input": "toucan", "output": "⠞⠳⠉â â " }, { "input": "toucan's", "output": "⠞⠳⠉â â â „â Ž" }, { "input": "toucans", "output": "⠞⠳⠉â â â Ž" }, { "input": "touch", "output": "⠞⠳⠡" }, { "input": "touch's", "output": "⠞⠳⠡⠄⠎" }, { "input": "touchable", "output": "⠞⠳⠡â â ¼" }, { "input": "touchdown", "output": "⠞⠳⠡⠙⠪â " }, { "input": "touchdown's", "output": "⠞⠳⠡⠙⠪â â „â Ž" }, { "input": "touchdowns", "output": "⠞⠳⠡⠙⠪â â Ž" }, { "input": "touched", "output": "⠞⠳⠡⠫" }, { "input": "touches", "output": "⠞⠳⠡⠑⠎" }, { "input": "touchier", "output": "⠞⠳⠡⠊⠻" }, { "input": "touchiest", "output": "⠞⠳⠡⠊⠑⠌" }, { "input": "touchiness's", "output": "⠞⠳⠡⠊⠰⠎⠄⠎" }, { "input": "touching", "output": "⠞⠳⠡⠌" }, { "input": "touchingly", "output": "⠞⠳⠡⠌⠇⠽" }, { "input": "touchings", "output": "⠞⠳⠡⠌⠎" }, { "input": "touchscreen", "output": "⠞⠳⠡⠎⠉⠗⠑⠢" }, { "input": "touchscreen's", "output": "⠞⠳⠡⠎⠉⠗⠑⠢⠄⠎" }, { "input": "touchscreens", "output": "⠞⠳⠡⠎⠉⠗⠑⠢⠎" }, { "input": "touchstone", "output": "⠞⠳⠡⠌â â •" }, { "input": "touchstone's", "output": "⠞⠳⠡⠌â â •â „â Ž" }, { "input": "touchstones", "output": "⠞⠳⠡⠌â â •â Ž" }, { "input": "touchy", "output": "⠞⠳⠡⠽" }, { "input": "tough", "output": "⠞⠳⠣" }, { "input": "tough's", "output": "⠞⠳⠣⠄⠎" }, { "input": "toughen", "output": "⠞⠳⠣⠢" }, { "input": "toughened", "output": "⠞⠳⠣⠢⠫" }, { "input": "toughener", "output": "⠞⠳⠣⠢⠻" }, { "input": "toughener's", "output": "⠞⠳⠣⠢⠻⠄⠎" }, { "input": "tougheners", "output": "⠞⠳⠣⠢⠻⠎" }, { "input": "toughening", "output": "⠞⠳⠣⠢⠌" }, { "input": "toughens", "output": "⠞⠳⠣⠢⠎" }, { "input": "tougher", "output": "⠞⠳⠣⠻" }, { "input": "toughest", "output": "⠞⠳⠣⠑⠌" }, { "input": "toughly", "output": "⠞⠳⠣⠇⠽" }, { "input": "toughness", "output": "⠞⠳⠣⠰⠎" }, { "input": "toughness's", "output": "⠞⠳⠣⠰⠎⠄⠎" }, { "input": "toughs", "output": "⠞⠳⠣⠎" }, { "input": "toupee", "output": "â žâ ³â â ‘â ‘" }, { "input": "toupee's", "output": "â žâ ³â â ‘â ‘â „â Ž" }, { "input": "toupees", "output": "â žâ ³â â ‘â ‘â Ž" }, { "input": "tour", "output": "⠞⠳⠗" }, { "input": "tour's", "output": "⠞⠳⠗⠄⠎" }, { "input": "toured", "output": "⠞⠳⠗⠫" }, { "input": "touring", "output": "⠞⠳⠗⠌" }, { "input": "tourism", "output": "⠞⠳⠗⠊⠎â " }, { "input": "tourism's", "output": "⠞⠳⠗⠊⠎â â „â Ž" }, { "input": "tourist", "output": "⠞⠳⠗⠊⠌" }, { "input": "tourist's", "output": "⠞⠳⠗⠊⠌⠄⠎" }, { "input": "tourists", "output": "⠞⠳⠗⠊⠌⠎" }, { "input": "tourmaline", "output": "⠞⠳⠗â â â ‡â ”â ‘" }, { "input": "tourmaline's", "output": "⠞⠳⠗â â â ‡â ”â ‘â „â Ž" }, { "input": "tournament", "output": "⠞⠳⠗â â â °â ž" }, { "input": "tournament's", "output": "⠞⠳⠗â â â °â žâ „â Ž" }, { "input": "tournaments", "output": "⠞⠳⠗â â â °â žâ Ž" }, { "input": "tourney", "output": "⠞⠳⠗â â ‘â ½" }, { "input": "tourney's", "output": "⠞⠳⠗â â ‘⠽⠄⠎" }, { "input": "tourneys", "output": "⠞⠳⠗â â ‘⠽⠎" }, { "input": "tourniquet", "output": "⠞⠳⠗â â Šâ Ÿâ ¥â ‘â ž" }, { "input": "tourniquet's", "output": "⠞⠳⠗â â Šâ Ÿâ ¥â ‘â žâ „â Ž" }, { "input": "tourniquets", "output": "⠞⠳⠗â â Šâ Ÿâ ¥â ‘â žâ Ž" }, { "input": "tours", "output": "⠞⠳⠗⠎" }, { "input": "tousle", "output": "⠞⠳⠎⠇⠑" }, { "input": "tousled", "output": "⠞⠳⠎⠇⠫" }, { "input": "tousles", "output": "⠞⠳⠎⠇⠑⠎" }, { "input": "tousling", "output": "⠞⠳⠎⠇⠌" }, { "input": "tout", "output": "⠞⠳⠞" }, { "input": "tout's", "output": "⠞⠳⠞⠄⠎" }, { "input": "touted", "output": "⠞⠳⠞⠫" }, { "input": "touting", "output": "⠞⠳⠞⠌" }, { "input": "touts", "output": "⠞⠳⠞⠎" }, { "input": "tow", "output": "â žâ ª" }, { "input": "tow's", "output": "⠞⠪⠄⠎" }, { "input": "toward", "output": "⠞⠪⠜⠙" }, { "input": "towards", "output": "⠞⠪⠜⠙⠎" }, { "input": "towboat", "output": "⠞⠪⠃⠕â â ž" }, { "input": "towboat's", "output": "⠞⠪⠃⠕â â žâ „â Ž" }, { "input": "towboats", "output": "⠞⠪⠃⠕â â žâ Ž" }, { "input": "towed", "output": "⠞⠪⠫" }, { "input": "towel", "output": "⠞⠪⠑⠇" }, { "input": "towel's", "output": "⠞⠪⠑⠇⠄⠎" }, { "input": "toweled", "output": "⠞⠪⠑⠇⠫" }, { "input": "toweling", "output": "⠞⠪⠑⠇⠌" }, { "input": "toweling's", "output": "⠞⠪⠑⠇⠌⠄⠎" }, { "input": "towelings", "output": "⠞⠪⠑⠇⠌⠎" }, { "input": "towels", "output": "⠞⠪⠑⠇⠎" }, { "input": "tower", "output": "⠞⠪⠻" }, { "input": "tower's", "output": "⠞⠪⠻⠄⠎" }, { "input": "towered", "output": "⠞⠪⠻⠫" }, { "input": "towering", "output": "⠞⠪⠻⠌" }, { "input": "towers", "output": "⠞⠪⠻⠎" }, { "input": "towhead", "output": "⠞⠪⠓⠂⠙" }, { "input": "towhead's", "output": "⠞⠪⠓⠂⠙⠄⠎" }, { "input": "towheaded", "output": "⠞⠪⠓⠂⠙⠫" }, { "input": "towheads", "output": "⠞⠪⠓⠂⠙⠎" }, { "input": "towhee", "output": "⠞⠪⠓⠑⠑" }, { "input": "towhee's", "output": "⠞⠪⠓⠑⠑⠄⠎" }, { "input": "towhees", "output": "⠞⠪⠓⠑⠑⠎" }, { "input": "towing", "output": "⠞⠪⠌" }, { "input": "towline", "output": "⠞⠪⠇⠔⠑" }, { "input": "towline's", "output": "⠞⠪⠇⠔⠑⠄⠎" }, { "input": "towlines", "output": "⠞⠪⠇⠔⠑⠎" }, { "input": "town", "output": "â žâ ªâ " }, { "input": "town's", "output": "â žâ ªâ â „â Ž" }, { "input": "townhouse", "output": "â žâ ªâ â “⠳⠎⠑" }, { "input": "townhouse's", "output": "â žâ ªâ â “⠳⠎⠑⠄⠎" }, { "input": "townhouses", "output": "â žâ ªâ â “⠳⠎⠑⠎" }, { "input": "towns", "output": "â žâ ªâ â Ž" }, { "input": "townsfolk", "output": "â žâ ªâ â Žâ ‹â •⠇⠅" }, { "input": "townsfolk's", "output": "â žâ ªâ â Žâ ‹â •⠇⠅⠄⠎" }, { "input": "township", "output": "â žâ ªâ â ©â Šâ " }, { "input": "township's", "output": "â žâ ªâ â ©â Šâ â „â Ž" }, { "input": "townships", "output": "â žâ ªâ â ©â Šâ â Ž" }, { "input": "townsman", "output": "â žâ ªâ â Žâ â â " }, { "input": "townsman's", "output": "â žâ ªâ â Žâ â â â „â Ž" }, { "input": "townsmen", "output": "â žâ ªâ â Žâ â ¢" }, { "input": "townspeople", "output": "â žâ ªâ â Žâ â ‘â •â â ‡â ‘" }, { "input": "townspeople's", "output": "â žâ ªâ â Žâ â ‘â •â â ‡â ‘â „â Ž" }, { "input": "townswoman", "output": "â žâ ªâ â Žâ ºâ •â â â " }, { "input": "townswoman's", "output": "â žâ ªâ â Žâ ºâ •â â â â „â Ž" }, { "input": "townswomen", "output": "â žâ ªâ â Žâ ºâ •â â ¢" }, { "input": "towpath", "output": "â žâ ªâ â â ¹" }, { "input": "towpath's", "output": "â žâ ªâ â â ¹â „â Ž" }, { "input": "towpaths", "output": "â žâ ªâ â â ¹â Ž" }, { "input": "tows", "output": "⠞⠪⠎" }, { "input": "toxemia", "output": "â žâ •â ­â ‘â â Šâ " }, { "input": "toxemia's", "output": "â žâ •â ­â ‘â â Šâ â „â Ž" }, { "input": "toxic", "output": "â žâ •â ­â Šâ ‰" }, { "input": "toxicity", "output": "⠞⠕⠭⠊⠉⠰⠽" }, { "input": "toxicity's", "output": "⠞⠕⠭⠊⠉⠰⠽⠄⠎" }, { "input": "toxicologist", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠊⠌" }, { "input": "toxicologist's", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "toxicologists", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠊⠌⠎" }, { "input": "toxicology", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠽" }, { "input": "toxicology's", "output": "⠞⠕⠭⠊⠉⠕⠇⠕⠛⠽⠄⠎" }, { "input": "toxin", "output": "â žâ •â ­â ”" }, { "input": "toxin's", "output": "⠞⠕⠭⠔⠄⠎" }, { "input": "toxins", "output": "⠞⠕⠭⠔⠎" }, { "input": "toy", "output": "â žâ •â ½" }, { "input": "toy's", "output": "⠞⠕⠽⠄⠎" }, { "input": "toyed", "output": "⠞⠕⠽⠫" }, { "input": "toying", "output": "⠞⠕⠽⠌" }, { "input": "toys", "output": "⠞⠕⠽⠎" }, { "input": "trace", "output": "â žâ —â â ‰â ‘" }, { "input": "trace's", "output": "â žâ —â â ‰â ‘â „â Ž" }, { "input": "traceable", "output": "â žâ —â â ‰â ‘â â ¼" }, { "input": "traced", "output": "â žâ —â â ‰â «" }, { "input": "tracer", "output": "â žâ —â â ‰â »" }, { "input": "tracer's", "output": "â žâ —â â ‰â »â „â Ž" }, { "input": "traceries", "output": "â žâ —â â ‰â »â Šâ ‘â Ž" }, { "input": "tracers", "output": "â žâ —â â ‰â »â Ž" }, { "input": "tracery", "output": "â žâ —â â ‰â »â ½" }, { "input": "tracery's", "output": "â žâ —â â ‰â »â ½â „â Ž" }, { "input": "traces", "output": "â žâ —â â ‰â ‘â Ž" }, { "input": "trachea", "output": "â žâ —â â ¡â ‘â " }, { "input": "trachea's", "output": "â žâ —â â ¡â ‘â â „â Ž" }, { "input": "tracheae", "output": "â žâ —â â ¡â ‘â â ‘" }, { "input": "tracheal", "output": "â žâ —â â ¡â ‚â ‡" }, { "input": "tracheotomies", "output": "â žâ —â â ¡â ‘â •â žâ •â â Šâ ‘â Ž" }, { "input": "tracheotomy", "output": "â žâ —â â ¡â ‘â •â žâ •â â ½" }, { "input": "tracheotomy's", "output": "â žâ —â â ¡â ‘â •â žâ •â â ½â „â Ž" }, { "input": "tracing", "output": "â žâ —â â ‰â Œ" }, { "input": "tracing's", "output": "â žâ —â â ‰â Œâ „â Ž" }, { "input": "tracings", "output": "â žâ —â â ‰â Œâ Ž" }, { "input": "track", "output": "â žâ —â â ‰â …" }, { "input": "track's", "output": "â žâ —â â ‰â …â „â Ž" }, { "input": "tracked", "output": "â žâ —â â ‰â …â «" }, { "input": "tracker", "output": "â žâ —â â ‰â …â »" }, { "input": "tracker's", "output": "â žâ —â â ‰â …⠻⠄⠎" }, { "input": "trackers", "output": "â žâ —â â ‰â …⠻⠎" }, { "input": "tracking", "output": "â žâ —â â ‰â …â Œ" }, { "input": "trackless", "output": "â žâ —â â ‰â …⠨⠎" }, { "input": "tracks", "output": "â žâ —â â ‰â …â Ž" }, { "input": "tract", "output": "â žâ —â â ‰â ž" }, { "input": "tract's", "output": "â žâ —â â ‰â žâ „â Ž" }, { "input": "tractability's", "output": "â žâ —â â ‰â žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "tractable", "output": "â žâ —â â ‰â žâ â ¼" }, { "input": "tractably", "output": "â žâ —â â ‰â žâ â ƒâ ‡â ½" }, { "input": "traction", "output": "â žâ —â â ‰â °â " }, { "input": "traction's", "output": "â žâ —â â ‰â °â â „â Ž" }, { "input": "tractor", "output": "â žâ —â â ‰â žâ •â —" }, { "input": "tractor's", "output": "â žâ —â â ‰â žâ •â —â „â Ž" }, { "input": "tractors", "output": "â žâ —â â ‰â žâ •â —â Ž" }, { "input": "tracts", "output": "â žâ —â â ‰â žâ Ž" }, { "input": "trade", "output": "â žâ —â â ™â ‘" }, { "input": "trade's", "output": "â žâ —â â ™â ‘â „â Ž" }, { "input": "traded", "output": "â žâ —â â ™â «" }, { "input": "trademark", "output": "â žâ —â â ™â ‘â â œâ …" }, { "input": "trademark's", "output": "â žâ —â â ™â ‘â â œâ …â „â Ž" }, { "input": "trademarked", "output": "â žâ —â â ™â ‘â â œâ …â «" }, { "input": "trademarking", "output": "â žâ —â â ™â ‘â â œâ …â Œ" }, { "input": "trademarks", "output": "â žâ —â â ™â ‘â â œâ …â Ž" }, { "input": "trader", "output": "â žâ —â â ™â »" }, { "input": "trader's", "output": "â žâ —â â ™â »â „â Ž" }, { "input": "traders", "output": "â žâ —â â ™â »â Ž" }, { "input": "trades", "output": "â žâ —â â ™â ‘â Ž" }, { "input": "tradesman", "output": "â žâ —â â ™â ‘â Žâ â â " }, { "input": "tradesman's", "output": "â žâ —â â ™â ‘â Žâ â â â „â Ž" }, { "input": "tradesmen", "output": "â žâ —â â ™â ‘â Žâ â ¢" }, { "input": "tradespeople's", "output": "â žâ —â â ™â ‘â Žâ â ‘â •â â ‡â ‘â „â Ž" }, { "input": "tradeswoman", "output": "â žâ —â â ™â ‘⠎⠺⠕â â â " }, { "input": "tradeswoman's", "output": "â žâ —â â ™â ‘⠎⠺⠕â â â â „â Ž" }, { "input": "tradeswomen", "output": "â žâ —â â ™â ‘⠎⠺⠕â â ¢" }, { "input": "trading", "output": "â žâ —â â ™â Œ" }, { "input": "trading's", "output": "â žâ —â â ™â Œâ „â Ž" }, { "input": "tradings", "output": "â žâ —â â ™â Œâ Ž" }, { "input": "tradition", "output": "â žâ —â â ™â Šâ °â " }, { "input": "tradition's", "output": "â žâ —â â ™â Šâ °â â „â Ž" }, { "input": "traditional", "output": "â žâ —â â ™â Šâ °â â â ‡" }, { "input": "traditionalism's", "output": "â žâ —â â ™â Šâ °â â â ‡â Šâ Žâ â „â Ž" }, { "input": "traditionalist", "output": "â žâ —â â ™â Šâ °â â â ‡â Šâ Œ" }, { "input": "traditionalist's", "output": "â žâ —â â ™â Šâ °â â â ‡â Šâ Œâ „â Ž" }, { "input": "traditionalists", "output": "â žâ —â â ™â Šâ °â â â ‡â Šâ Œâ Ž" }, { "input": "traditionally", "output": "â žâ —â â ™â Šâ °â â  â ½" }, { "input": "traditions", "output": "â žâ —â â ™â Šâ °â â Ž" }, { "input": "traduce", "output": "â žâ —â â ™â ¥â ‰â ‘" }, { "input": "traduced", "output": "â žâ —â â ™â ¥â ‰â «" }, { "input": "traducer", "output": "â žâ —â â ™â ¥â ‰â »" }, { "input": "traducer's", "output": "â žâ —â â ™â ¥â ‰â »â „â Ž" }, { "input": "traducers", "output": "â žâ —â â ™â ¥â ‰â »â Ž" }, { "input": "traduces", "output": "â žâ —â â ™â ¥â ‰â ‘â Ž" }, { "input": "traducing", "output": "â žâ —â â ™â ¥â ‰â Œ" }, { "input": "traffic", "output": "â žâ —â â –â Šâ ‰" }, { "input": "traffic's", "output": "â žâ —â â –⠊⠉⠄⠎" }, { "input": "trafficked", "output": "â žâ —â â –⠊⠉⠅⠫" }, { "input": "trafficker", "output": "â žâ —â â –⠊⠉⠅⠻" }, { "input": "trafficker's", "output": "â žâ —â â –⠊⠉⠅⠻⠄⠎" }, { "input": "traffickers", "output": "â žâ —â â –⠊⠉⠅⠻⠎" }, { "input": "trafficking", "output": "â žâ —â â –⠊⠉⠅⠌" }, { "input": "trafficking's", "output": "â žâ —â â –⠊⠉⠅⠌⠄⠎" }, { "input": "traffics", "output": "â žâ —â â –⠊⠉⠎" }, { "input": "tragedian", "output": "â žâ —â â ›â «â Šâ â " }, { "input": "tragedian's", "output": "â žâ —â â ›â «â Šâ â â „â Ž" }, { "input": "tragedians", "output": "â žâ —â â ›â «â Šâ â â Ž" }, { "input": "tragedienne", "output": "â žâ —â â ›â «â Šâ ¢â â ‘" }, { "input": "tragedienne's", "output": "â žâ —â â ›â «â Šâ ¢â â ‘â „â Ž" }, { "input": "tragediennes", "output": "â žâ —â â ›â «â Šâ ¢â â ‘â Ž" }, { "input": "tragedies", "output": "â žâ —â â ›â «â Šâ ‘â Ž" }, { "input": "tragedy", "output": "â žâ —â â ›â «â ½" }, { "input": "tragedy's", "output": "â žâ —â â ›â «â ½â „â Ž" }, { "input": "tragic", "output": "â žâ —â â ›â Šâ ‰" }, { "input": "tragically", "output": "â žâ —â â ›â Šâ ‰â  â ½" }, { "input": "tragicomedies", "output": "â žâ —â â ›â Šâ ‰â •â â «â Šâ ‘â Ž" }, { "input": "tragicomedy", "output": "â žâ —â â ›â Šâ ‰â •â â «â ½" }, { "input": "tragicomedy's", "output": "â žâ —â â ›â Šâ ‰â •â â «â ½â „â Ž" }, { "input": "trail", "output": "â žâ —â â Šâ ‡" }, { "input": "trail's", "output": "â žâ —â â Šâ ‡â „â Ž" }, { "input": "trailblazer", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ »" }, { "input": "trailblazer's", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ »â „â Ž" }, { "input": "trailblazers", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ »â Ž" }, { "input": "trailblazing", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ Œ" }, { "input": "trailblazing's", "output": "â žâ —â â Šâ ‡â ƒâ ‡â â µâ Œâ „â Ž" }, { "input": "trailed", "output": "â žâ —â â Šâ ‡â «" }, { "input": "trailer", "output": "â žâ —â â Šâ ‡â »" }, { "input": "trailer's", "output": "â žâ —â â Šâ ‡â »â „â Ž" }, { "input": "trailers", "output": "â žâ —â â Šâ ‡â »â Ž" }, { "input": "trailing", "output": "â žâ —â â Šâ ‡â Œ" }, { "input": "trails", "output": "â žâ —â â Šâ ‡â Ž" }, { "input": "train", "output": "â žâ —â â ”" }, { "input": "train's", "output": "â žâ —â â ”â „â Ž" }, { "input": "trainable", "output": "â žâ —â â ”â â ¼" }, { "input": "trained", "output": "â žâ —â â ”â «" }, { "input": "trainee", "output": "â žâ —â â ”â ‘â ‘" }, { "input": "trainee's", "output": "â žâ —â â ”â ‘â ‘â „â Ž" }, { "input": "trainees", "output": "â žâ —â â ”â ‘â ‘â Ž" }, { "input": "trainer", "output": "â žâ —â â ”â »" }, { "input": "trainer's", "output": "â žâ —â â ”⠻⠄⠎" }, { "input": "trainers", "output": "â žâ —â â ”⠻⠎" }, { "input": "training", "output": "â žâ —â â ”â Œ" }, { "input": "training's", "output": "â žâ —â â ”⠌⠄⠎" }, { "input": "trainload", "output": "â žâ —â â ”⠇⠕â â ™" }, { "input": "trainload's", "output": "â žâ —â â ”⠇⠕â â ™â „â Ž" }, { "input": "trainloads", "output": "â žâ —â â ”⠇⠕â â ™â Ž" }, { "input": "trainman", "output": "â žâ —â â ”â â â " }, { "input": "trainman's", "output": "â žâ —â â ”â â â â „â Ž" }, { "input": "trainmen", "output": "â žâ —â â ”â â ¢" }, { "input": "trains", "output": "â žâ —â â ”â Ž" }, { "input": "traipse", "output": "â žâ —â â Šâ â Žâ ‘" }, { "input": "traipse's", "output": "â žâ —â â Šâ â Žâ ‘â „â Ž" }, { "input": "traipsed", "output": "â žâ —â â Šâ â Žâ «" }, { "input": "traipses", "output": "â žâ —â â Šâ â Žâ ‘â Ž" }, { "input": "traipsing", "output": "â žâ —â â Šâ â Žâ Œ" }, { "input": "trait", "output": "â žâ —â â Šâ ž" }, { "input": "trait's", "output": "â žâ —â â Šâ žâ „â Ž" }, { "input": "traitor", "output": "â žâ —â â Šâ žâ •â —" }, { "input": "traitor's", "output": "â žâ —â â Šâ žâ •â —â „â Ž" }, { "input": "traitorous", "output": "â žâ —â â Šâ žâ •⠗⠳⠎" }, { "input": "traitors", "output": "â žâ —â â Šâ žâ •â —â Ž" }, { "input": "traits", "output": "â žâ —â â Šâ žâ Ž" }, { "input": "trajectories", "output": "â žâ —â â šâ ‘⠉⠞⠕⠗⠊⠑⠎" }, { "input": "trajectory", "output": "â žâ —â â šâ ‘⠉⠞⠕⠗⠽" }, { "input": "trajectory's", "output": "â žâ —â â šâ ‘⠉⠞⠕⠗⠽⠄⠎" }, { "input": "tram", "output": "â žâ —â â " }, { "input": "tram's", "output": "â žâ —â â â „â Ž" }, { "input": "trammed", "output": "â žâ —â â â â «" }, { "input": "trammel", "output": "â žâ —â â â â ‘â ‡" }, { "input": "trammel's", "output": "â žâ —â â â â ‘⠇⠄⠎" }, { "input": "trammeled", "output": "â žâ —â â â â ‘⠇⠫" }, { "input": "trammeling", "output": "â žâ —â â â â ‘⠇⠌" }, { "input": "trammels", "output": "â žâ —â â â â ‘⠇⠎" }, { "input": "tramming", "output": "â žâ —â â â â Œ" }, { "input": "tramp", "output": "â žâ —â â â " }, { "input": "tramp's", "output": "â žâ —â â â â „â Ž" }, { "input": "tramped", "output": "â žâ —â â â â «" }, { "input": "tramper", "output": "â žâ —â â â â »" }, { "input": "tramper's", "output": "â žâ —â â â â »â „â Ž" }, { "input": "trampers", "output": "â žâ —â â â â »â Ž" }, { "input": "tramping", "output": "â žâ —â â â â Œ" }, { "input": "trample", "output": "â žâ —â â â â ‡â ‘" }, { "input": "trample's", "output": "â žâ —â â â â ‡â ‘â „â Ž" }, { "input": "trampled", "output": "â žâ —â â â â ‡â «" }, { "input": "trampler", "output": "â žâ —â â â â ‡â »" }, { "input": "trampler's", "output": "â žâ —â â â â ‡â »â „â Ž" }, { "input": "tramplers", "output": "â žâ —â â â â ‡â »â Ž" }, { "input": "tramples", "output": "â žâ —â â â â ‡â ‘â Ž" }, { "input": "trampling", "output": "â žâ —â â â â ‡â Œ" }, { "input": "trampoline", "output": "â žâ —â â â â •⠇⠔⠑" }, { "input": "trampoline's", "output": "â žâ —â â â â •⠇⠔⠑⠄⠎" }, { "input": "trampolines", "output": "â žâ —â â â â •⠇⠔⠑⠎" }, { "input": "tramps", "output": "â žâ —â â â â Ž" }, { "input": "trams", "output": "â žâ —â â â Ž" }, { "input": "trance", "output": "⠞⠗⠨⠑" }, { "input": "trance's", "output": "⠞⠗⠨⠑⠄⠎" }, { "input": "trances", "output": "⠞⠗⠨⠑⠎" }, { "input": "tranquil", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡" }, { "input": "tranquiler", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â »" }, { "input": "tranquilest", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‘â Œ" }, { "input": "tranquility", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â °â ½" }, { "input": "tranquility's", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â °â ½â „â Ž" }, { "input": "tranquilize", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ ‘" }, { "input": "tranquilized", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ «" }, { "input": "tranquilizer", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ »" }, { "input": "tranquilizer's", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ »â „â Ž" }, { "input": "tranquilizers", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ »â Ž" }, { "input": "tranquilizes", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ ‘â Ž" }, { "input": "tranquilizing", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â Šâ µâ Œ" }, { "input": "tranquilly", "output": "â žâ —â â â Ÿâ ¥â Šâ ‡â ‡â ½" }, { "input": "transact", "output": "â žâ —â â â Žâ â ‰â ž" }, { "input": "transacted", "output": "â žâ —â â â Žâ â ‰â žâ «" }, { "input": "transacting", "output": "â žâ —â â â Žâ â ‰â žâ Œ" }, { "input": "transaction", "output": "â žâ —â â â Žâ â ‰â °â " }, { "input": "transaction's", "output": "â žâ —â â â Žâ â ‰â °â â „â Ž" }, { "input": "transactions", "output": "â žâ —â â â Žâ â ‰â °â â Ž" }, { "input": "transactor", "output": "â žâ —â â â Žâ â ‰â žâ •â —" }, { "input": "transactor's", "output": "â žâ —â â â Žâ â ‰â žâ •â —â „â Ž" }, { "input": "transactors", "output": "â žâ —â â â Žâ â ‰â žâ •â —â Ž" }, { "input": "transacts", "output": "â žâ —â â â Žâ â ‰â žâ Ž" }, { "input": "transatlantic", "output": "â žâ —â â â Žâ â žâ ‡â â â žâ Šâ ‰" }, { "input": "transceiver", "output": "â žâ —â â â Žâ ‰â ‘â Šâ §â »" }, { "input": "transceiver's", "output": "â žâ —â â â Žâ ‰â ‘⠊⠧⠻⠄⠎" }, { "input": "transceivers", "output": "â žâ —â â â Žâ ‰â ‘⠊⠧⠻⠎" }, { "input": "transcend", "output": "â žâ —â â â Žâ ‰â ¢â ™" }, { "input": "transcended", "output": "â žâ —â â â Žâ ‰â ¢â ™â «" }, { "input": "transcendence", "output": "â žâ —â â â Žâ ‰â ¢â ™â °â ‘" }, { "input": "transcendence's", "output": "â žâ —â â â Žâ ‰â ¢â ™â °â ‘â „â Ž" }, { "input": "transcendent", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â ž" }, { "input": "transcendental", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡" }, { "input": "transcendentalism", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Žâ " }, { "input": "transcendentalism's", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Žâ â „â Ž" }, { "input": "transcendentalist", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Œ" }, { "input": "transcendentalist's", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Œâ „â Ž" }, { "input": "transcendentalists", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ â ‡â Šâ Œâ Ž" }, { "input": "transcendentally", "output": "â žâ —â â â Žâ ‰â ¢â ™â ¢â žâ  â ½" }, { "input": "transcending", "output": "â žâ —â â â Žâ ‰â ¢â ™â Œ" }, { "input": "transcends", "output": "â žâ —â â â Žâ ‰â ¢â ™â Ž" }, { "input": "transcontinental", "output": "â žâ —â â â Žâ ‰â •â â žâ ”⠢⠞â â ‡" }, { "input": "transcribe", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠑" }, { "input": "transcribed", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠫" }, { "input": "transcriber", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠻" }, { "input": "transcriber's", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠻⠄⠎" }, { "input": "transcribers", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠻⠎" }, { "input": "transcribes", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠑⠎" }, { "input": "transcribing", "output": "â žâ —â â â Žâ ‰â —⠊⠃⠌" }, { "input": "transcript", "output": "â žâ —â â â Žâ ‰â —â Šâ â ž" }, { "input": "transcript's", "output": "â žâ —â â â Žâ ‰â —â Šâ â žâ „â Ž" }, { "input": "transcription", "output": "â žâ —â â â Žâ ‰â —â Šâ â °â " }, { "input": "transcription's", "output": "â žâ —â â â Žâ ‰â —â Šâ â °â â „â Ž" }, { "input": "transcriptions", "output": "â žâ —â â â Žâ ‰â —â Šâ â °â â Ž" }, { "input": "transcripts", "output": "â žâ —â â â Žâ ‰â —â Šâ â žâ Ž" }, { "input": "transducer", "output": "â žâ —â â â Žâ ™â ¥â ‰â »" }, { "input": "transducer's", "output": "â žâ —â â â Žâ ™â ¥â ‰â »â „â Ž" }, { "input": "transducers", "output": "â žâ —â â â Žâ ™â ¥â ‰â »â Ž" }, { "input": "transect", "output": "â žâ —â â â Žâ ‘⠉⠞" }, { "input": "transected", "output": "â žâ —â â â Žâ ‘⠉⠞⠫" }, { "input": "transecting", "output": "â žâ —â â â Žâ ‘⠉⠞⠌" }, { "input": "transects", "output": "â žâ —â â â Žâ ‘⠉⠞⠎" }, { "input": "transept", "output": "â žâ —â â â Žâ ‘â â ž" }, { "input": "transept's", "output": "â žâ —â â â Žâ ‘â â žâ „â Ž" }, { "input": "transepts", "output": "â žâ —â â â Žâ ‘â â žâ Ž" }, { "input": "transfer", "output": "â žâ —â â â Žâ ‹â »" }, { "input": "transfer's", "output": "â žâ —â â â Žâ ‹â »â „â Ž" }, { "input": "transferable", "output": "â žâ —â â â Žâ ‹â »â â ¼" }, { "input": "transferal", "output": "â žâ —â â â Žâ ‹â »â â ‡" }, { "input": "transferal's", "output": "â žâ —â â â Žâ ‹â »â â ‡â „â Ž" }, { "input": "transferals", "output": "â žâ —â â â Žâ ‹â »â â ‡â Ž" }, { "input": "transference", "output": "â žâ —â â â Žâ ‹â »â °â ‘" }, { "input": "transference's", "output": "â žâ —â â â Žâ ‹â »â °â ‘â „â Ž" }, { "input": "transferred", "output": "â žâ —â â â Žâ ‹â »â —â «" }, { "input": "transferring", "output": "â žâ —â â â Žâ ‹â »â —â Œ" }, { "input": "transfers", "output": "â žâ —â â â Žâ ‹â »â Ž" }, { "input": "transfiguration", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â  â " }, { "input": "transfiguration's", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â  â â „â Ž" }, { "input": "transfigure", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â ‘" }, { "input": "transfigured", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â «" }, { "input": "transfigures", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â ‘â Ž" }, { "input": "transfiguring", "output": "â žâ —â â â Žâ ‹â Šâ ›â ¥â —â Œ" }, { "input": "transfinite", "output": "â žâ —â â â Žâ ‹â ”â Šâ žâ ‘" }, { "input": "transfix", "output": "â žâ —â â â Žâ ‹â Šâ ­" }, { "input": "transfixed", "output": "â žâ —â â â Žâ ‹â Šâ ­â «" }, { "input": "transfixes", "output": "â žâ —â â â Žâ ‹â Šâ ­â ‘â Ž" }, { "input": "transfixing", "output": "â žâ —â â â Žâ ‹â Šâ ­â Œ" }, { "input": "transform", "output": "â žâ —â â â Žâ ¿â " }, { "input": "transform's", "output": "â žâ —â â â Žâ ¿â â „â Ž" }, { "input": "transformable", "output": "â žâ —â â â Žâ ¿â â â ¼" }, { "input": "transformation", "output": "â žâ —â â â Žâ ¿â â  â " }, { "input": "transformation's", "output": "â žâ —â â â Žâ ¿â â  â â „â Ž" }, { "input": "transformations", "output": "â žâ —â â â Žâ ¿â â  â â Ž" }, { "input": "transformed", "output": "â žâ —â â â Žâ ¿â â «" }, { "input": "transformer", "output": "â žâ —â â â Žâ ¿â â »" }, { "input": "transformer's", "output": "â žâ —â â â Žâ ¿â â »â „â Ž" }, { "input": "transformers", "output": "â žâ —â â â Žâ ¿â â »â Ž" }, { "input": "transforming", "output": "â žâ —â â â Žâ ¿â â Œ" }, { "input": "transforms", "output": "â žâ —â â â Žâ ¿â â Ž" }, { "input": "transfuse", "output": "â žâ —â â â Žâ ‹â ¥â Žâ ‘" }, { "input": "transfused", "output": "â žâ —â â â Žâ ‹â ¥â Žâ «" }, { "input": "transfuses", "output": "â žâ —â â â Žâ ‹â ¥â Žâ ‘â Ž" }, { "input": "transfusing", "output": "â žâ —â â â Žâ ‹â ¥â Žâ Œ" }, { "input": "transfusion", "output": "â žâ —â â â Žâ ‹â ¥â ¨â " }, { "input": "transfusion's", "output": "â žâ —â â â Žâ ‹â ¥â ¨â â „â Ž" }, { "input": "transfusions", "output": "â žâ —â â â Žâ ‹â ¥â ¨â â Ž" }, { "input": "transgender", "output": "â žâ —â â â Žâ ›â ¢â ™â »" }, { "input": "transgenders", "output": "â žâ —â â â Žâ ›â ¢â ™â »â Ž" }, { "input": "transgress", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Ž" }, { "input": "transgressed", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ «" }, { "input": "transgresses", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "transgressing", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ Œ" }, { "input": "transgression", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ ¨â " }, { "input": "transgression's", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ ¨â â „â Ž" }, { "input": "transgressions", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ ¨â â Ž" }, { "input": "transgressor", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ •â —" }, { "input": "transgressor's", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ •â —â „â Ž" }, { "input": "transgressors", "output": "â žâ —â â â Žâ ›â —â ‘â Žâ Žâ •â —â Ž" }, { "input": "transience", "output": "â žâ —â â â Žâ Šâ °â ‘" }, { "input": "transience's", "output": "â žâ —â â â Žâ Šâ °â ‘â „â Ž" }, { "input": "transiency", "output": "â žâ —â â â Žâ Šâ ¢â ‰â ½" }, { "input": "transiency's", "output": "â žâ —â â â Žâ Šâ ¢â ‰â ½â „â Ž" }, { "input": "transient", "output": "â žâ —â â â Žâ Šâ ¢â ž" }, { "input": "transient's", "output": "â žâ —â â â Žâ Šâ ¢â žâ „â Ž" }, { "input": "transiently", "output": "â žâ —â â â Žâ Šâ ¢â žâ ‡â ½" }, { "input": "transients", "output": "â žâ —â â â Žâ Šâ ¢â žâ Ž" }, { "input": "transistor", "output": "â žâ —â â â Žâ Šâ Œâ •â —" }, { "input": "transistor's", "output": "â žâ —â â â Žâ Šâ Œâ •â —â „â Ž" }, { "input": "transistorize", "output": "â žâ —â â â Žâ Šâ Œâ •⠗⠊⠵⠑" }, { "input": "transistorized", "output": "â žâ —â â â Žâ Šâ Œâ •⠗⠊⠵⠫" }, { "input": "transistorizes", "output": "â žâ —â â â Žâ Šâ Œâ •⠗⠊⠵⠑⠎" }, { "input": "transistorizing", "output": "â žâ —â â â Žâ Šâ Œâ •⠗⠊⠵⠌" }, { "input": "transistors", "output": "â žâ —â â â Žâ Šâ Œâ •â —â Ž" }, { "input": "transit", "output": "â žâ —â â â Žâ Šâ ž" }, { "input": "transit's", "output": "â žâ —â â â Žâ Šâ žâ „â Ž" }, { "input": "transited", "output": "â žâ —â â â Žâ Šâ žâ «" }, { "input": "transiting", "output": "â žâ —â â â Žâ Šâ žâ Œ" }, { "input": "transition", "output": "â žâ —â â â Žâ Šâ °â " }, { "input": "transition's", "output": "â žâ —â â â Žâ Šâ °â â „â Ž" }, { "input": "transitional", "output": "â žâ —â â â Žâ Šâ °â â â ‡" }, { "input": "transitionally", "output": "â žâ —â â â Žâ Šâ °â â  â ½" }, { "input": "transitioned", "output": "â žâ —â â â Žâ Šâ °â â «" }, { "input": "transitioning", "output": "â žâ —â â â Žâ Šâ °â â Œ" }, { "input": "transitions", "output": "â žâ —â â â Žâ Šâ °â â Ž" }, { "input": "transitive", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘" }, { "input": "transitive's", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘â „â Ž" }, { "input": "transitively", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘⠇⠽" }, { "input": "transitiveness", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘â °â Ž" }, { "input": "transitiveness's", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "transitives", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â ‘â Ž" }, { "input": "transitivity's", "output": "â žâ —â â â Žâ Šâ žâ Šâ §â °â ½â „â Ž" }, { "input": "transitory", "output": "â žâ —â â â Žâ Šâ žâ •â —â ½" }, { "input": "transits", "output": "â žâ —â â â Žâ Šâ žâ Ž" }, { "input": "translatable", "output": "â žâ —â â â Žâ ‡â â žâ â ¼" }, { "input": "translate", "output": "â žâ —â â â Žâ ‡â â žâ ‘" }, { "input": "translated", "output": "â žâ —â â â Žâ ‡â â žâ «" }, { "input": "translates", "output": "â žâ —â â â Žâ ‡â â žâ ‘â Ž" }, { "input": "translating", "output": "â žâ —â â â Žâ ‡â â žâ Œ" }, { "input": "translation", "output": "â žâ —â â â Žâ ‡â  â " }, { "input": "translation's", "output": "â žâ —â â â Žâ ‡â  â â „â Ž" }, { "input": "translations", "output": "â žâ —â â â Žâ ‡â  â â Ž" }, { "input": "translator", "output": "â žâ —â â â Žâ ‡â â žâ •â —" }, { "input": "translator's", "output": "â žâ —â â â Žâ ‡â â žâ •â —â „â Ž" }, { "input": "translators", "output": "â žâ —â â â Žâ ‡â â žâ •â —â Ž" }, { "input": "transliterate", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ ‘" }, { "input": "transliterated", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ «" }, { "input": "transliterates", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ ‘â Ž" }, { "input": "transliterating", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â â žâ Œ" }, { "input": "transliteration", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â  â " }, { "input": "transliteration's", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â  â â „â Ž" }, { "input": "transliterations", "output": "â žâ —â â â Žâ ‡â Šâ žâ »â  â â Ž" }, { "input": "translucence", "output": "â žâ —â â â Žâ ‡â ¥â ‰â °â ‘" }, { "input": "translucence's", "output": "â žâ —â â â Žâ ‡â ¥â ‰â °â ‘â „â Ž" }, { "input": "translucency", "output": "â žâ —â â â Žâ ‡â ¥â ‰â ¢â ‰â ½" }, { "input": "translucency's", "output": "â žâ —â â â Žâ ‡â ¥â ‰â ¢â ‰â ½â „â Ž" }, { "input": "translucent", "output": "â žâ —â â â Žâ ‡â ¥â ‰â ¢â ž" }, { "input": "translucently", "output": "â žâ —â â â Žâ ‡â ¥â ‰â ¢â žâ ‡â ½" }, { "input": "transmigrate", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ ‘" }, { "input": "transmigrated", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ «" }, { "input": "transmigrates", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ ‘â Ž" }, { "input": "transmigrating", "output": "â žâ —â â â Žâ â Šâ ›â —â â žâ Œ" }, { "input": "transmigration", "output": "â žâ —â â â Žâ â Šâ ›â —â  â " }, { "input": "transmigration's", "output": "â žâ —â â â Žâ â Šâ ›â —â  â â „â Ž" }, { "input": "transmissible", "output": "â žâ —â â â Žâ â Šâ Žâ Žâ Šâ ¼" }, { "input": "transmission", "output": "â žâ —â â â Žâ â Šâ Žâ ¨â " }, { "input": "transmission's", "output": "â žâ —â â â Žâ â Šâ Žâ ¨â â „â Ž" }, { "input": "transmissions", "output": "â žâ —â â â Žâ â Šâ Žâ ¨â â Ž" }, { "input": "transmit", "output": "â žâ —â â â Žâ â Šâ ž" }, { "input": "transmits", "output": "â žâ —â â â Žâ â Šâ žâ Ž" }, { "input": "transmittable", "output": "â žâ —â â â Žâ â Šâ žâ žâ â ¼" }, { "input": "transmittal", "output": "â žâ —â â â Žâ â Šâ žâ žâ â ‡" }, { "input": "transmittal's", "output": "â žâ —â â â Žâ â Šâ žâ žâ â ‡â „â Ž" }, { "input": "transmittance", "output": "â žâ —â â â Žâ â Šâ žâ žâ ¨â ‘" }, { "input": "transmittance's", "output": "â žâ —â â â Žâ â Šâ žâ žâ ¨â ‘â „â Ž" }, { "input": "transmitted", "output": "â žâ —â â â Žâ â Šâ žâ žâ «" }, { "input": "transmitter", "output": "â žâ —â â â Žâ â Šâ žâ žâ »" }, { "input": "transmitter's", "output": "â žâ —â â â Žâ â Šâ žâ žâ »â „â Ž" }, { "input": "transmitters", "output": "â žâ —â â â Žâ â Šâ žâ žâ »â Ž" }, { "input": "transmitting", "output": "â žâ —â â â Žâ â Šâ žâ žâ Œ" }, { "input": "transmogrification", "output": "â žâ —â â â Žâ â •⠛⠗⠊⠋⠊⠉⠠â " }, { "input": "transmogrification's", "output": "â žâ —â â â Žâ â •⠛⠗⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "transmutable", "output": "â žâ —â â â Žâ â ¥â žâ â ¼" }, { "input": "transmutation", "output": "â žâ —â â â Žâ â ¥â žâ  â " }, { "input": "transmutation's", "output": "â žâ —â â â Žâ â ¥â žâ  â â „â Ž" }, { "input": "transmutations", "output": "â žâ —â â â Žâ â ¥â žâ  â â Ž" }, { "input": "transmute", "output": "â žâ —â â â Žâ â ¥â žâ ‘" }, { "input": "transmuted", "output": "â žâ —â â â Žâ â ¥â žâ «" }, { "input": "transmutes", "output": "â žâ —â â â Žâ â ¥â žâ ‘â Ž" }, { "input": "transmuting", "output": "â žâ —â â â Žâ â ¥â žâ Œ" }, { "input": "transnational", "output": "â žâ —â â â Žâ â  â â â ‡" }, { "input": "transnational's", "output": "â žâ —â â â Žâ â  â â â ‡â „â Ž" }, { "input": "transnationals", "output": "â žâ —â â â Žâ â  â â â ‡â Ž" }, { "input": "transoceanic", "output": "â žâ —â â â Žâ •⠉⠂â â Šâ ‰" }, { "input": "transom", "output": "â žâ —â â â Žâ •â " }, { "input": "transom's", "output": "â žâ —â â â Žâ •â â „â Ž" }, { "input": "transoms", "output": "â žâ —â â â Žâ •â â Ž" }, { "input": "transpacific", "output": "â žâ —â â â Žâ â â ‰â Šâ ‹â Šâ ‰" }, { "input": "transparencies", "output": "â žâ —â â â Žâ â œâ ¢â ‰â Šâ ‘â Ž" }, { "input": "transparency", "output": "â žâ —â â â Žâ â œâ ¢â ‰â ½" }, { "input": "transparency's", "output": "â žâ —â â â Žâ â œâ ¢â ‰â ½â „â Ž" }, { "input": "transparent", "output": "â žâ —â â â Žâ â œâ ¢â ž" }, { "input": "transparently", "output": "â žâ —â â â Žâ â œâ ¢â žâ ‡â ½" }, { "input": "transpiration", "output": "â žâ —â â â Žâ â Šâ —â  â " }, { "input": "transpiration's", "output": "â žâ —â â â Žâ â Šâ —â  â â „â Ž" }, { "input": "transpire", "output": "â žâ —â â â Žâ â Šâ —â ‘" }, { "input": "transpired", "output": "â žâ —â â â Žâ â Šâ —â «" }, { "input": "transpires", "output": "â žâ —â â â Žâ â Šâ —â ‘â Ž" }, { "input": "transpiring", "output": "â žâ —â â â Žâ â Šâ —â Œ" }, { "input": "transplant", "output": "â žâ —â â â Žâ â ‡â â â ž" }, { "input": "transplant's", "output": "â žâ —â â â Žâ â ‡â â â žâ „â Ž" }, { "input": "transplantation", "output": "â žâ —â â â Žâ â ‡â â â žâ  â " }, { "input": "transplantation's", "output": "â žâ —â â â Žâ â ‡â â â žâ  â â „â Ž" }, { "input": "transplanted", "output": "â žâ —â â â Žâ â ‡â â â žâ «" }, { "input": "transplanting", "output": "â žâ —â â â Žâ â ‡â â â žâ Œ" }, { "input": "transplants", "output": "â žâ —â â â Žâ â ‡â â â žâ Ž" }, { "input": "transpolar", "output": "â žâ —â â â Žâ â •⠇⠜" }, { "input": "transponder", "output": "â žâ —â â â Žâ â •â â ™â »" }, { "input": "transponder's", "output": "â žâ —â â â Žâ â •â â ™â »â „â Ž" }, { "input": "transponders", "output": "â žâ —â â â Žâ â •â â ™â »â Ž" }, { "input": "transport", "output": "â žâ —â â â Žâ â •â —â ž" }, { "input": "transport's", "output": "â žâ —â â â Žâ â •â —â žâ „â Ž" }, { "input": "transportable", "output": "â žâ —â â â Žâ â •â —â žâ â ¼" }, { "input": "transportation", "output": "â žâ —â â â Žâ â •â —â žâ  â " }, { "input": "transportation's", "output": "â žâ —â â â Žâ â •â —â žâ  â â „â Ž" }, { "input": "transported", "output": "â žâ —â â â Žâ â •â —â žâ «" }, { "input": "transporter", "output": "â žâ —â â â Žâ â •â —â žâ »" }, { "input": "transporter's", "output": "â žâ —â â â Žâ â •⠗⠞⠻⠄⠎" }, { "input": "transporters", "output": "â žâ —â â â Žâ â •⠗⠞⠻⠎" }, { "input": "transporting", "output": "â žâ —â â â Žâ â •â —â žâ Œ" }, { "input": "transports", "output": "â žâ —â â â Žâ â •â —â žâ Ž" }, { "input": "transpose", "output": "â žâ —â â â Žâ â •â Žâ ‘" }, { "input": "transposed", "output": "â žâ —â â â Žâ â •â Žâ «" }, { "input": "transposes", "output": "â žâ —â â â Žâ â •â Žâ ‘â Ž" }, { "input": "transposing", "output": "â žâ —â â â Žâ â •â Žâ Œ" }, { "input": "transposition", "output": "â žâ —â â â Žâ â •â Žâ Šâ °â " }, { "input": "transposition's", "output": "â žâ —â â â Žâ â •â Žâ Šâ °â â „â Ž" }, { "input": "transpositions", "output": "â žâ —â â â Žâ â •â Žâ Šâ °â â Ž" }, { "input": "transsexual", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡" }, { "input": "transsexual's", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡â „â Ž" }, { "input": "transsexualism", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡â Šâ Žâ " }, { "input": "transsexualism's", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡â Šâ Žâ â „â Ž" }, { "input": "transsexuals", "output": "â žâ —â â â Žâ Žâ ‘â ­â ¥â â ‡â Ž" }, { "input": "transship", "output": "â žâ —â â â Žâ ©â Šâ " }, { "input": "transshipment", "output": "â žâ —â â â Žâ ©â Šâ â °â ž" }, { "input": "transshipment's", "output": "â žâ —â â â Žâ ©â Šâ â °â žâ „â Ž" }, { "input": "transshipped", "output": "â žâ —â â â Žâ ©â Šâ â â «" }, { "input": "transshipping", "output": "â žâ —â â â Žâ ©â Šâ â â Œ" }, { "input": "transships", "output": "â žâ —â â â Žâ ©â Šâ â Ž" }, { "input": "transubstantiation", "output": "â žâ —â â â Žâ ¥â ƒâ Œâ â â žâ Šâ  â " }, { "input": "transubstantiation's", "output": "â žâ —â â â Žâ ¥â ƒâ Œâ â â žâ Šâ  â â „â Ž" }, { "input": "transverse", "output": "â žâ —â â â Žâ §â »â Žâ ‘" }, { "input": "transverse's", "output": "â žâ —â â â Žâ §â »â Žâ ‘â „â Ž" }, { "input": "transversely", "output": "â žâ —â â â Žâ §â »â Žâ ‘⠇⠽" }, { "input": "transverses", "output": "â žâ —â â â Žâ §â »â Žâ ‘â Ž" }, { "input": "transvestism", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠎â " }, { "input": "transvestism's", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠎â â „â Ž" }, { "input": "transvestite", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠞⠑" }, { "input": "transvestite's", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠞⠑⠄⠎" }, { "input": "transvestites", "output": "â žâ —â â â Žâ §â ‘⠌⠊⠞⠑⠎" }, { "input": "trap", "output": "â žâ —â â " }, { "input": "trap's", "output": "â žâ —â â â „â Ž" }, { "input": "trapdoor", "output": "â žâ —â â â ™â •â •â —" }, { "input": "trapdoor's", "output": "â žâ —â â â ™â •â •â —â „â Ž" }, { "input": "trapdoors", "output": "â žâ —â â â ™â •â •â —â Ž" }, { "input": "trapeze", "output": "â žâ —â â â ‘⠵⠑" }, { "input": "trapeze's", "output": "â žâ —â â â ‘⠵⠑⠄⠎" }, { "input": "trapezes", "output": "â žâ —â â â ‘⠵⠑⠎" }, { "input": "trapezoid", "output": "â žâ —â â â ‘⠵⠕⠊⠙" }, { "input": "trapezoid's", "output": "â žâ —â â â ‘⠵⠕⠊⠙⠄⠎" }, { "input": "trapezoidal", "output": "â žâ —â â â ‘⠵⠕⠊⠙â â ‡" }, { "input": "trapezoids", "output": "â žâ —â â â ‘⠵⠕⠊⠙⠎" }, { "input": "trappable", "output": "â žâ —â â â â â ¼" }, { "input": "trapped", "output": "â žâ —â â â â «" }, { "input": "trapper", "output": "â žâ —â â â â »" }, { "input": "trapper's", "output": "â žâ —â â â â »â „â Ž" }, { "input": "trappers", "output": "â žâ —â â â â »â Ž" }, { "input": "trapping", "output": "â žâ —â â â â Œ" }, { "input": "trappings", "output": "â žâ —â â â â Œâ Ž" }, { "input": "trappings's", "output": "â žâ —â â â â Œâ Žâ „â Ž" }, { "input": "traps", "output": "â žâ —â â â Ž" }, { "input": "trapshooting", "output": "â žâ —â â â ©â •â •â žâ Œ" }, { "input": "trapshooting's", "output": "â žâ —â â â ©â •⠕⠞⠌⠄⠎" }, { "input": "trash", "output": "â žâ —â â ©" }, { "input": "trash's", "output": "â žâ —â â ©â „â Ž" }, { "input": "trashcan", "output": "â žâ —â â ©â ‰â â " }, { "input": "trashcan's", "output": "â žâ —â â ©â ‰â â â „â Ž" }, { "input": "trashcans", "output": "â žâ —â â ©â ‰â â â Ž" }, { "input": "trashed", "output": "â žâ —â â ©â «" }, { "input": "trashes", "output": "â žâ —â â ©â ‘â Ž" }, { "input": "trashier", "output": "â žâ —â â ©â Šâ »" }, { "input": "trashiest", "output": "â žâ —â â ©â Šâ ‘â Œ" }, { "input": "trashiness", "output": "â žâ —â â ©â Šâ °â Ž" }, { "input": "trashiness's", "output": "â žâ —â â ©â Šâ °â Žâ „â Ž" }, { "input": "trashing", "output": "â žâ —â â ©â Œ" }, { "input": "trashy", "output": "â žâ —â â ©â ½" }, { "input": "trauma", "output": "â žâ —â â ¥â â " }, { "input": "trauma's", "output": "â žâ —â â ¥â â â „â Ž" }, { "input": "traumas", "output": "â žâ —â â ¥â â â Ž" }, { "input": "traumatic", "output": "â žâ —â â ¥â â â žâ Šâ ‰" }, { "input": "traumatize", "output": "â žâ —â â ¥â â â žâ Šâ µâ ‘" }, { "input": "traumatized", "output": "â žâ —â â ¥â â â žâ Šâ µâ «" }, { "input": "traumatizes", "output": "â žâ —â â ¥â â â žâ Šâ µâ ‘â Ž" }, { "input": "traumatizing", "output": "â žâ —â â ¥â â â žâ Šâ µâ Œ" }, { "input": "travail", "output": "â žâ —â â §â â Šâ ‡" }, { "input": "travail's", "output": "â žâ —â â §â â Šâ ‡â „â Ž" }, { "input": "travailed", "output": "â žâ —â â §â â Šâ ‡â «" }, { "input": "travailing", "output": "â žâ —â â §â â Šâ ‡â Œ" }, { "input": "travails", "output": "â žâ —â â §â â Šâ ‡â Ž" }, { "input": "travel", "output": "â žâ —â â §â ‘â ‡" }, { "input": "travel's", "output": "â žâ —â â §â ‘⠇⠄⠎" }, { "input": "traveled", "output": "â žâ —â â §â ‘⠇⠫" }, { "input": "traveler", "output": "â žâ —â â §â ‘⠇⠻" }, { "input": "traveler's", "output": "â žâ —â â §â ‘⠇⠻⠄⠎" }, { "input": "travelers", "output": "â žâ —â â §â ‘⠇⠻⠎" }, { "input": "traveling", "output": "â žâ —â â §â ‘⠇⠌" }, { "input": "traveling's", "output": "â žâ —â â §â ‘⠇⠌⠄⠎" }, { "input": "travelings", "output": "â žâ —â â §â ‘⠇⠌⠎" }, { "input": "travelogue", "output": "â žâ —â â §â ‘⠇⠕⠛⠥⠑" }, { "input": "travelogue's", "output": "â žâ —â â §â ‘⠇⠕⠛⠥⠑⠄⠎" }, { "input": "travelogues", "output": "â žâ —â â §â ‘⠇⠕⠛⠥⠑⠎" }, { "input": "travels", "output": "â žâ —â â §â ‘⠇⠎" }, { "input": "traversal", "output": "â žâ —â â §â »â Žâ â ‡" }, { "input": "traversal's", "output": "â žâ —â â §â »â Žâ â ‡â „â Ž" }, { "input": "traversals", "output": "â žâ —â â §â »â Žâ â ‡â Ž" }, { "input": "traverse", "output": "â žâ —â â §â »â Žâ ‘" }, { "input": "traverse's", "output": "â žâ —â â §â »â Žâ ‘â „â Ž" }, { "input": "traversed", "output": "â žâ —â â §â »â Žâ «" }, { "input": "traverses", "output": "â žâ —â â §â »â Žâ ‘â Ž" }, { "input": "traversing", "output": "â žâ —â â §â »â Žâ Œ" }, { "input": "travestied", "output": "â žâ —â â §â ‘⠌⠊⠫" }, { "input": "travesties", "output": "â žâ —â â §â ‘⠌⠊⠑⠎" }, { "input": "travesty", "output": "â žâ —â â §â ‘⠌⠽" }, { "input": "travesty's", "output": "â žâ —â â §â ‘⠌⠽⠄⠎" }, { "input": "travestying", "output": "â žâ —â â §â ‘⠌⠽⠌" }, { "input": "trawl", "output": "â žâ —â â ºâ ‡" }, { "input": "trawl's", "output": "â žâ —â â ºâ ‡â „â Ž" }, { "input": "trawled", "output": "â žâ —â â ºâ ‡â «" }, { "input": "trawler", "output": "â žâ —â â ºâ ‡â »" }, { "input": "trawler's", "output": "â žâ —â â ºâ ‡â »â „â Ž" }, { "input": "trawlers", "output": "â žâ —â â ºâ ‡â »â Ž" }, { "input": "trawling", "output": "â žâ —â â ºâ ‡â Œ" }, { "input": "trawls", "output": "â žâ —â â ºâ ‡â Ž" }, { "input": "tray", "output": "â žâ —â â ½" }, { "input": "tray's", "output": "â žâ —â â ½â „â Ž" }, { "input": "trays", "output": "â žâ —â â ½â Ž" }, { "input": "treacheries", "output": "⠞⠗⠂⠡⠻⠊⠑⠎" }, { "input": "treacherous", "output": "⠞⠗⠂⠡⠻⠳⠎" }, { "input": "treacherously", "output": "⠞⠗⠂⠡⠻⠳⠎⠇⠽" }, { "input": "treacherousness", "output": "⠞⠗⠂⠡⠻⠳⠎⠰⠎" }, { "input": "treacherousness's", "output": "⠞⠗⠂⠡⠻⠳⠎⠰⠎⠄⠎" }, { "input": "treachery", "output": "⠞⠗⠂⠡⠻⠽" }, { "input": "treachery's", "output": "⠞⠗⠂⠡⠻⠽⠄⠎" }, { "input": "treacle", "output": "⠞⠗⠂⠉⠇⠑" }, { "input": "treacle's", "output": "⠞⠗⠂⠉⠇⠑⠄⠎" }, { "input": "tread", "output": "â žâ —â ‚â ™" }, { "input": "tread's", "output": "⠞⠗⠂⠙⠄⠎" }, { "input": "treading", "output": "⠞⠗⠂⠙⠌" }, { "input": "treadle", "output": "⠞⠗⠂⠙⠇⠑" }, { "input": "treadle's", "output": "⠞⠗⠂⠙⠇⠑⠄⠎" }, { "input": "treadled", "output": "⠞⠗⠂⠙⠇⠫" }, { "input": "treadles", "output": "⠞⠗⠂⠙⠇⠑⠎" }, { "input": "treadling", "output": "⠞⠗⠂⠙⠇⠌" }, { "input": "treadmill", "output": "â žâ —â ‚â ™â â Šâ ‡â ‡" }, { "input": "treadmill's", "output": "â žâ —â ‚â ™â â Šâ ‡â ‡â „â Ž" }, { "input": "treadmills", "output": "â žâ —â ‚â ™â â Šâ ‡â ‡â Ž" }, { "input": "treads", "output": "⠞⠗⠂⠙⠎" }, { "input": "treason", "output": "â žâ —â ‚â Žâ •â " }, { "input": "treason's", "output": "â žâ —â ‚â Žâ •â â „â Ž" }, { "input": "treasonable", "output": "â žâ —â ‚â Žâ •â â â ¼" }, { "input": "treasonous", "output": "â žâ —â ‚â Žâ •â â ³â Ž" }, { "input": "treasure", "output": "⠞⠗⠂⠎⠥⠗⠑" }, { "input": "treasure's", "output": "⠞⠗⠂⠎⠥⠗⠑⠄⠎" }, { "input": "treasured", "output": "⠞⠗⠂⠎⠥⠗⠫" }, { "input": "treasurer", "output": "⠞⠗⠂⠎⠥⠗⠻" }, { "input": "treasurer's", "output": "⠞⠗⠂⠎⠥⠗⠻⠄⠎" }, { "input": "treasurers", "output": "⠞⠗⠂⠎⠥⠗⠻⠎" }, { "input": "treasures", "output": "⠞⠗⠂⠎⠥⠗⠑⠎" }, { "input": "treasuries", "output": "⠞⠗⠂⠎⠥⠗⠊⠑⠎" }, { "input": "treasuring", "output": "⠞⠗⠂⠎⠥⠗⠌" }, { "input": "treasury", "output": "⠞⠗⠂⠎⠥⠗⠽" }, { "input": "treasury's", "output": "⠞⠗⠂⠎⠥⠗⠽⠄⠎" }, { "input": "treat", "output": "â žâ —â ‚â ž" }, { "input": "treat's", "output": "â žâ —â ‚â žâ „â Ž" }, { "input": "treatable", "output": "â žâ —â ‚â žâ â ¼" }, { "input": "treated", "output": "â žâ —â ‚â žâ «" }, { "input": "treaties", "output": "â žâ —â ‚â žâ Šâ ‘â Ž" }, { "input": "treating", "output": "â žâ —â ‚â žâ Œ" }, { "input": "treatise", "output": "â žâ —â ‚â žâ Šâ Žâ ‘" }, { "input": "treatise's", "output": "â žâ —â ‚â žâ Šâ Žâ ‘â „â Ž" }, { "input": "treatises", "output": "â žâ —â ‚â žâ Šâ Žâ ‘â Ž" }, { "input": "treatment", "output": "â žâ —â ‚â žâ °â ž" }, { "input": "treatment's", "output": "â žâ —â ‚â žâ °â žâ „â Ž" }, { "input": "treatments", "output": "â žâ —â ‚â žâ °â žâ Ž" }, { "input": "treats", "output": "â žâ —â ‚â žâ Ž" }, { "input": "treaty", "output": "â žâ —â ‚â žâ ½" }, { "input": "treaty's", "output": "⠞⠗⠂⠞⠽⠄⠎" }, { "input": "treble", "output": "â žâ —â ‘â ¼" }, { "input": "treble's", "output": "⠞⠗⠑⠼⠄⠎" }, { "input": "trebled", "output": "⠞⠗⠑⠼⠙" }, { "input": "trebles", "output": "⠞⠗⠑⠼⠎" }, { "input": "trebling", "output": "⠞⠗⠑⠃⠇⠌" }, { "input": "tree", "output": "â žâ —â ‘â ‘" }, { "input": "tree's", "output": "â žâ —â ‘â ‘â „â Ž" }, { "input": "treed", "output": "â žâ —â ‘â «" }, { "input": "treeing", "output": "â žâ —â ‘â ‘â Œ" }, { "input": "treeless", "output": "⠞⠗⠑⠑⠨⠎" }, { "input": "treelike", "output": "⠞⠗⠑⠑⠇⠊⠅⠑" }, { "input": "trees", "output": "â žâ —â ‘â ‘â Ž" }, { "input": "treetop", "output": "â žâ —â ‘â ‘â žâ •â " }, { "input": "treetop's", "output": "â žâ —â ‘â ‘â žâ •â â „â Ž" }, { "input": "treetops", "output": "â žâ —â ‘â ‘â žâ •â â Ž" }, { "input": "trefoil", "output": "â žâ —â ‘â ‹â •â Šâ ‡" }, { "input": "trefoil's", "output": "⠞⠗⠑⠋⠕⠊⠇⠄⠎" }, { "input": "trefoils", "output": "⠞⠗⠑⠋⠕⠊⠇⠎" }, { "input": "trek", "output": "â žâ —â ‘â …" }, { "input": "trek's", "output": "â žâ —â ‘â …â „â Ž" }, { "input": "trekked", "output": "â žâ —â ‘â …â …â «" }, { "input": "trekker", "output": "â žâ —â ‘â …â …â »" }, { "input": "trekker's", "output": "⠞⠗⠑⠅⠅⠻⠄⠎" }, { "input": "trekkers", "output": "⠞⠗⠑⠅⠅⠻⠎" }, { "input": "trekking", "output": "â žâ —â ‘â …â …â Œ" }, { "input": "treks", "output": "â žâ —â ‘â …â Ž" }, { "input": "trellis", "output": "⠞⠗⠑⠇⠇⠊⠎" }, { "input": "trellis's", "output": "⠞⠗⠑⠇⠇⠊⠎⠄⠎" }, { "input": "trellised", "output": "⠞⠗⠑⠇⠇⠊⠎⠫" }, { "input": "trellises", "output": "⠞⠗⠑⠇⠇⠊⠎⠑⠎" }, { "input": "trellising", "output": "⠞⠗⠑⠇⠇⠊⠎⠌" }, { "input": "trematode", "output": "â žâ —â ‘â â â žâ •⠙⠑" }, { "input": "trematode's", "output": "â žâ —â ‘â â â žâ •⠙⠑⠄⠎" }, { "input": "trematodes", "output": "â žâ —â ‘â â â žâ •⠙⠑⠎" }, { "input": "tremble", "output": "â žâ —â ‘â â ¼" }, { "input": "tremble's", "output": "â žâ —â ‘â â ¼â „â Ž" }, { "input": "trembled", "output": "â žâ —â ‘â â ¼â ™" }, { "input": "trembles", "output": "â žâ —â ‘â â ¼â Ž" }, { "input": "trembling", "output": "â žâ —â ‘â â ƒâ ‡â Œ" }, { "input": "tremendous", "output": "â žâ —â ‘â â ¢â ™â ³â Ž" }, { "input": "tremendously", "output": "â žâ —â ‘â â ¢â ™â ³â Žâ ‡â ½" }, { "input": "tremolo", "output": "â žâ —â ‘â â •⠇⠕" }, { "input": "tremolo's", "output": "â žâ —â ‘â â •⠇⠕⠄⠎" }, { "input": "tremolos", "output": "â žâ —â ‘â â •⠇⠕⠎" }, { "input": "tremor", "output": "â žâ —â ‘â â •â —" }, { "input": "tremor's", "output": "â žâ —â ‘â â •â —â „â Ž" }, { "input": "tremors", "output": "â žâ —â ‘â â •â —â Ž" }, { "input": "tremulous", "output": "â žâ —â ‘â â ¥â ‡â ³â Ž" }, { "input": "tremulously", "output": "â žâ —â ‘â â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "tremulousness", "output": "â žâ —â ‘â â ¥â ‡â ³â Žâ °â Ž" }, { "input": "tremulousness's", "output": "â žâ —â ‘â â ¥â ‡â ³â Žâ °â Žâ „â Ž" }, { "input": "trench", "output": "⠞⠗⠢⠡" }, { "input": "trench's", "output": "⠞⠗⠢⠡⠄⠎" }, { "input": "trenchancy's", "output": "⠞⠗⠢⠡â â â ‰â ½â „â Ž" }, { "input": "trenchant", "output": "⠞⠗⠢⠡â â â ž" }, { "input": "trenched", "output": "⠞⠗⠢⠡⠫" }, { "input": "trencherman", "output": "⠞⠗⠢⠡⠻â â â " }, { "input": "trencherman's", "output": "⠞⠗⠢⠡⠻â â â â „â Ž" }, { "input": "trenchermen", "output": "⠞⠗⠢⠡⠻â â ¢" }, { "input": "trenches", "output": "⠞⠗⠢⠡⠑⠎" }, { "input": "trenching", "output": "⠞⠗⠢⠡⠌" }, { "input": "trend", "output": "⠞⠗⠢⠙" }, { "input": "trend's", "output": "⠞⠗⠢⠙⠄⠎" }, { "input": "trended", "output": "⠞⠗⠢⠙⠫" }, { "input": "trendier", "output": "⠞⠗⠢⠙⠊⠻" }, { "input": "trendies", "output": "⠞⠗⠢⠙⠊⠑⠎" }, { "input": "trendiest", "output": "⠞⠗⠢⠙⠊⠑⠌" }, { "input": "trendiness's", "output": "⠞⠗⠢⠙⠊⠰⠎⠄⠎" }, { "input": "trending", "output": "⠞⠗⠢⠙⠌" }, { "input": "trends", "output": "⠞⠗⠢⠙⠎" }, { "input": "trendy", "output": "⠞⠗⠢⠙⠽" }, { "input": "trendy's", "output": "⠞⠗⠢⠙⠽⠄⠎" }, { "input": "trepidation", "output": "â žâ —â ‘â â Šâ ™â  â " }, { "input": "trepidation's", "output": "â žâ —â ‘â â Šâ ™â  â â „â Ž" }, { "input": "trespass", "output": "â žâ —â ‘â Žâ â â Žâ Ž" }, { "input": "trespass's", "output": "â žâ —â ‘â Žâ â â Žâ Žâ „â Ž" }, { "input": "trespassed", "output": "â žâ —â ‘â Žâ â â Žâ Žâ «" }, { "input": "trespasser", "output": "â žâ —â ‘â Žâ â â Žâ Žâ »" }, { "input": "trespasser's", "output": "â žâ —â ‘â Žâ â â Žâ Žâ »â „â Ž" }, { "input": "trespassers", "output": "â žâ —â ‘â Žâ â â Žâ Žâ »â Ž" }, { "input": "trespasses", "output": "â žâ —â ‘â Žâ â â Žâ Žâ ‘â Ž" }, { "input": "trespassing", "output": "â žâ —â ‘â Žâ â â Žâ Žâ Œ" }, { "input": "tress", "output": "â žâ —â ‘â Žâ Ž" }, { "input": "tress's", "output": "â žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "tresses", "output": "â žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "trestle", "output": "⠞⠗⠑⠌⠇⠑" }, { "input": "trestle's", "output": "⠞⠗⠑⠌⠇⠑⠄⠎" }, { "input": "trestles", "output": "⠞⠗⠑⠌⠇⠑⠎" }, { "input": "trey", "output": "â žâ —â ‘â ½" }, { "input": "trey's", "output": "⠞⠗⠑⠽⠄⠎" }, { "input": "treys", "output": "⠞⠗⠑⠽⠎" }, { "input": "triad", "output": "â žâ —â Šâ â ™" }, { "input": "triad's", "output": "â žâ —â Šâ â ™â „â Ž" }, { "input": "triads", "output": "â žâ —â Šâ â ™â Ž" }, { "input": "triage", "output": "â žâ —â Šâ â ›â ‘" }, { "input": "triage's", "output": "â žâ —â Šâ â ›â ‘â „â Ž" }, { "input": "trial", "output": "â žâ —â Šâ â ‡" }, { "input": "trial's", "output": "â žâ —â Šâ â ‡â „â Ž" }, { "input": "trialed", "output": "â žâ —â Šâ â ‡â «" }, { "input": "trialing", "output": "â žâ —â Šâ â ‡â Œ" }, { "input": "trials", "output": "â žâ —â Šâ â ‡â Ž" }, { "input": "triangle", "output": "â žâ —â Šâ â â ›â ‡â ‘" }, { "input": "triangle's", "output": "â žâ —â Šâ â â ›â ‡â ‘â „â Ž" }, { "input": "triangles", "output": "â žâ —â Šâ â â ›â ‡â ‘â Ž" }, { "input": "triangular", "output": "â žâ —â Šâ â â ›â ¥â ‡â œ" }, { "input": "triangularly", "output": "â žâ —â Šâ â â ›â ¥â ‡â œâ ‡â ½" }, { "input": "triangulate", "output": "â žâ —â Šâ â â ›â ¥â ‡â â žâ ‘" }, { "input": "triangulated", "output": "â žâ —â Šâ â â ›â ¥â ‡â â žâ «" }, { "input": "triangulates", "output": "â žâ —â Šâ â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "triangulating", "output": "â žâ —â Šâ â â ›â ¥â ‡â â žâ Œ" }, { "input": "triangulation", "output": "â žâ —â Šâ â â ›â ¥â ‡â  â " }, { "input": "triangulation's", "output": "â žâ —â Šâ â â ›â ¥â ‡â  â â „â Ž" }, { "input": "triathlon", "output": "â žâ —â Šâ â ¹â ‡â •â " }, { "input": "triathlon's", "output": "â žâ —â Šâ â ¹â ‡â •â â „â Ž" }, { "input": "triathlons", "output": "â žâ —â Šâ â ¹â ‡â •â â Ž" }, { "input": "tribal", "output": "â žâ —â Šâ ƒâ â ‡" }, { "input": "tribalism", "output": "â žâ —â Šâ ƒâ â ‡â Šâ Žâ " }, { "input": "tribalism's", "output": "â žâ —â Šâ ƒâ â ‡â Šâ Žâ â „â Ž" }, { "input": "tribe", "output": "⠞⠗⠊⠃⠑" }, { "input": "tribe's", "output": "⠞⠗⠊⠃⠑⠄⠎" }, { "input": "tribes", "output": "⠞⠗⠊⠃⠑⠎" }, { "input": "tribesman", "output": "⠞⠗⠊⠃⠑⠎â â â " }, { "input": "tribesman's", "output": "⠞⠗⠊⠃⠑⠎â â â â „â Ž" }, { "input": "tribesmen", "output": "⠞⠗⠊⠃⠑⠎â â ¢" }, { "input": "tribulation", "output": "⠞⠗⠊⠃⠥⠇⠠â " }, { "input": "tribulation's", "output": "⠞⠗⠊⠃⠥⠇⠠â â „â Ž" }, { "input": "tribulations", "output": "⠞⠗⠊⠃⠥⠇⠠â â Ž" }, { "input": "tribunal", "output": "⠞⠗⠊⠃⠥â â â ‡" }, { "input": "tribunal's", "output": "⠞⠗⠊⠃⠥â â â ‡â „â Ž" }, { "input": "tribunals", "output": "⠞⠗⠊⠃⠥â â â ‡â Ž" }, { "input": "tribune", "output": "⠞⠗⠊⠃⠥â â ‘" }, { "input": "tribune's", "output": "⠞⠗⠊⠃⠥â â ‘â „â Ž" }, { "input": "tribunes", "output": "⠞⠗⠊⠃⠥â â ‘â Ž" }, { "input": "tributaries", "output": "⠞⠗⠊⠃⠥⠞⠜⠊⠑⠎" }, { "input": "tributary", "output": "⠞⠗⠊⠃⠥⠞⠜⠽" }, { "input": "tributary's", "output": "⠞⠗⠊⠃⠥⠞⠜⠽⠄⠎" }, { "input": "tribute", "output": "⠞⠗⠊⠃⠥⠞⠑" }, { "input": "tribute's", "output": "⠞⠗⠊⠃⠥⠞⠑⠄⠎" }, { "input": "tributes", "output": "⠞⠗⠊⠃⠥⠞⠑⠎" }, { "input": "trice", "output": "⠞⠗⠊⠉⠑" }, { "input": "trice's", "output": "⠞⠗⠊⠉⠑⠄⠎" }, { "input": "tricentennial", "output": "⠞⠗⠊⠉⠢⠞⠢â â Šâ â ‡" }, { "input": "tricentennial's", "output": "⠞⠗⠊⠉⠢⠞⠢â â Šâ â ‡â „â Ž" }, { "input": "tricentennials", "output": "⠞⠗⠊⠉⠢⠞⠢â â Šâ â ‡â Ž" }, { "input": "triceps", "output": "⠞⠗⠊⠉⠑â â Ž" }, { "input": "triceps's", "output": "⠞⠗⠊⠉⠑â â Žâ „â Ž" }, { "input": "tricepses", "output": "⠞⠗⠊⠉⠑â â Žâ ‘â Ž" }, { "input": "triceratops", "output": "⠞⠗⠊⠉⠻â â žâ •â â Ž" }, { "input": "triceratops's", "output": "⠞⠗⠊⠉⠻â â žâ •â â Žâ „â Ž" }, { "input": "trichina", "output": "â žâ —â Šâ ¡â ”â " }, { "input": "trichina's", "output": "â žâ —â Šâ ¡â ”â â „â Ž" }, { "input": "trichinae", "output": "â žâ —â Šâ ¡â ”â â ‘" }, { "input": "trichinosis", "output": "⠞⠗⠊⠡⠔⠕⠎⠊⠎" }, { "input": "trichinosis's", "output": "⠞⠗⠊⠡⠔⠕⠎⠊⠎⠄⠎" }, { "input": "trick", "output": "⠞⠗⠊⠉⠅" }, { "input": "trick's", "output": "⠞⠗⠊⠉⠅⠄⠎" }, { "input": "tricked", "output": "⠞⠗⠊⠉⠅⠫" }, { "input": "trickery", "output": "⠞⠗⠊⠉⠅⠻⠽" }, { "input": "trickery's", "output": "⠞⠗⠊⠉⠅⠻⠽⠄⠎" }, { "input": "trickier", "output": "⠞⠗⠊⠉⠅⠊⠻" }, { "input": "trickiest", "output": "⠞⠗⠊⠉⠅⠊⠑⠌" }, { "input": "trickily", "output": "⠞⠗⠊⠉⠅⠊⠇⠽" }, { "input": "trickiness", "output": "⠞⠗⠊⠉⠅⠊⠰⠎" }, { "input": "trickiness's", "output": "⠞⠗⠊⠉⠅⠊⠰⠎⠄⠎" }, { "input": "tricking", "output": "⠞⠗⠊⠉⠅⠌" }, { "input": "trickle", "output": "⠞⠗⠊⠉⠅⠇⠑" }, { "input": "trickle's", "output": "⠞⠗⠊⠉⠅⠇⠑⠄⠎" }, { "input": "trickled", "output": "⠞⠗⠊⠉⠅⠇⠫" }, { "input": "trickles", "output": "⠞⠗⠊⠉⠅⠇⠑⠎" }, { "input": "trickling", "output": "⠞⠗⠊⠉⠅⠇⠌" }, { "input": "tricks", "output": "⠞⠗⠊⠉⠅⠎" }, { "input": "trickster", "output": "⠞⠗⠊⠉⠅⠌⠻" }, { "input": "trickster's", "output": "⠞⠗⠊⠉⠅⠌⠻⠄⠎" }, { "input": "tricksters", "output": "⠞⠗⠊⠉⠅⠌⠻⠎" }, { "input": "tricky", "output": "⠞⠗⠊⠉⠅⠽" }, { "input": "tricolor", "output": "⠞⠗⠊⠉⠕⠇⠕⠗" }, { "input": "tricolor's", "output": "⠞⠗⠊⠉⠕⠇⠕⠗⠄⠎" }, { "input": "tricolors", "output": "⠞⠗⠊⠉⠕⠇⠕⠗⠎" }, { "input": "tricycle", "output": "⠞⠗⠊⠉⠽⠉⠇⠑" }, { "input": "tricycle's", "output": "⠞⠗⠊⠉⠽⠉⠇⠑⠄⠎" }, { "input": "tricycles", "output": "⠞⠗⠊⠉⠽⠉⠇⠑⠎" }, { "input": "trident", "output": "⠞⠗⠊⠙⠢⠞" }, { "input": "trident's", "output": "⠞⠗⠊⠙⠢⠞⠄⠎" }, { "input": "tridents", "output": "⠞⠗⠊⠙⠢⠞⠎" }, { "input": "tried", "output": "â žâ —â Šâ «" }, { "input": "triennial", "output": "â žâ —â Šâ ¢â â Šâ â ‡" }, { "input": "triennial's", "output": "â žâ —â Šâ ¢â â Šâ â ‡â „â Ž" }, { "input": "triennially", "output": "â žâ —â Šâ ¢â â Šâ  â ½" }, { "input": "triennials", "output": "â žâ —â Šâ ¢â â Šâ â ‡â Ž" }, { "input": "tries", "output": "â žâ —â Šâ ‘â Ž" }, { "input": "trifle", "output": "⠞⠗⠊⠋⠇⠑" }, { "input": "trifle's", "output": "⠞⠗⠊⠋⠇⠑⠄⠎" }, { "input": "trifled", "output": "⠞⠗⠊⠋⠇⠫" }, { "input": "trifler", "output": "⠞⠗⠊⠋⠇⠻" }, { "input": "trifler's", "output": "⠞⠗⠊⠋⠇⠻⠄⠎" }, { "input": "triflers", "output": "⠞⠗⠊⠋⠇⠻⠎" }, { "input": "trifles", "output": "⠞⠗⠊⠋⠇⠑⠎" }, { "input": "trifling", "output": "⠞⠗⠊⠋⠇⠌" }, { "input": "trifocals", "output": "â žâ —â Šâ ‹â •â ‰â â ‡â Ž" }, { "input": "trifocals's", "output": "â žâ —â Šâ ‹â •â ‰â â ‡â Žâ „â Ž" }, { "input": "trig", "output": "â žâ —â Šâ ›" }, { "input": "trig's", "output": "⠞⠗⠊⠛⠄⠎" }, { "input": "trigger", "output": "â žâ —â Šâ ¶â »" }, { "input": "trigger's", "output": "⠞⠗⠊⠶⠻⠄⠎" }, { "input": "triggered", "output": "⠞⠗⠊⠶⠻⠫" }, { "input": "triggering", "output": "⠞⠗⠊⠶⠻⠌" }, { "input": "triggers", "output": "⠞⠗⠊⠶⠻⠎" }, { "input": "triglyceride", "output": "⠞⠗⠊⠛⠇⠽⠉⠻⠊⠙⠑" }, { "input": "triglyceride's", "output": "⠞⠗⠊⠛⠇⠽⠉⠻⠊⠙⠑⠄⠎" }, { "input": "triglycerides", "output": "⠞⠗⠊⠛⠇⠽⠉⠻⠊⠙⠑⠎" }, { "input": "trigonometric", "output": "⠞⠗⠊⠛⠕â â •â â ‘â žâ —â Šâ ‰" }, { "input": "trigonometry", "output": "⠞⠗⠊⠛⠕â â •â â ‘â žâ —â ½" }, { "input": "trigonometry's", "output": "⠞⠗⠊⠛⠕â â •â â ‘⠞⠗⠽⠄⠎" }, { "input": "trike", "output": "â žâ —â Šâ …â ‘" }, { "input": "trike's", "output": "â žâ —â Šâ …â ‘â „â Ž" }, { "input": "trikes", "output": "â žâ —â Šâ …â ‘â Ž" }, { "input": "trilateral", "output": "â žâ —â Šâ ‡â â žâ »â â ‡" }, { "input": "trilaterals", "output": "â žâ —â Šâ ‡â â žâ »â â ‡â Ž" }, { "input": "trill", "output": "⠞⠗⠊⠇⠇" }, { "input": "trill's", "output": "⠞⠗⠊⠇⠇⠄⠎" }, { "input": "trilled", "output": "⠞⠗⠊⠇⠇⠫" }, { "input": "trilling", "output": "⠞⠗⠊⠇⠇⠌" }, { "input": "trillion", "output": "⠞⠗⠊⠇⠇⠊⠕â " }, { "input": "trillion's", "output": "⠞⠗⠊⠇⠇⠊⠕â â „â Ž" }, { "input": "trillions", "output": "⠞⠗⠊⠇⠇⠊⠕â â Ž" }, { "input": "trillionth", "output": "⠞⠗⠊⠇⠇⠊⠕â â ¹" }, { "input": "trillionth's", "output": "⠞⠗⠊⠇⠇⠊⠕â â ¹â „â Ž" }, { "input": "trillionths", "output": "⠞⠗⠊⠇⠇⠊⠕â â ¹â Ž" }, { "input": "trillium", "output": "⠞⠗⠊⠇⠇⠊⠥â " }, { "input": "trillium's", "output": "⠞⠗⠊⠇⠇⠊⠥â â „â Ž" }, { "input": "trills", "output": "⠞⠗⠊⠇⠇⠎" }, { "input": "trilobite", "output": "⠞⠗⠊⠇⠕⠃⠊⠞⠑" }, { "input": "trilobite's", "output": "⠞⠗⠊⠇⠕⠃⠊⠞⠑⠄⠎" }, { "input": "trilobites", "output": "⠞⠗⠊⠇⠕⠃⠊⠞⠑⠎" }, { "input": "trilogies", "output": "⠞⠗⠊⠇⠕⠛⠊⠑⠎" }, { "input": "trilogy", "output": "⠞⠗⠊⠇⠕⠛⠽" }, { "input": "trilogy's", "output": "⠞⠗⠊⠇⠕⠛⠽⠄⠎" }, { "input": "trim", "output": "â žâ —â Šâ " }, { "input": "trim's", "output": "â žâ —â Šâ â „â Ž" }, { "input": "trimaran", "output": "â žâ —â Šâ â œâ â " }, { "input": "trimaran's", "output": "â žâ —â Šâ â œâ â â „â Ž" }, { "input": "trimarans", "output": "â žâ —â Šâ â œâ â â Ž" }, { "input": "trimester", "output": "â žâ —â Šâ â ‘⠌⠻" }, { "input": "trimester's", "output": "â žâ —â Šâ â ‘⠌⠻⠄⠎" }, { "input": "trimesters", "output": "â žâ —â Šâ â ‘⠌⠻⠎" }, { "input": "trimly", "output": "â žâ —â Šâ â ‡â ½" }, { "input": "trimmed", "output": "â žâ —â Šâ â â «" }, { "input": "trimmer", "output": "â žâ —â Šâ â â »" }, { "input": "trimmer's", "output": "â žâ —â Šâ â â »â „â Ž" }, { "input": "trimmers", "output": "â žâ —â Šâ â â »â Ž" }, { "input": "trimmest", "output": "â žâ —â Šâ â â ‘â Œ" }, { "input": "trimming", "output": "â žâ —â Šâ â â Œ" }, { "input": "trimming's", "output": "â žâ —â Šâ â â Œâ „â Ž" }, { "input": "trimmings", "output": "â žâ —â Šâ â â Œâ Ž" }, { "input": "trimmings's", "output": "â žâ —â Šâ â â Œâ Žâ „â Ž" }, { "input": "trimness", "output": "â žâ —â Šâ â °â Ž" }, { "input": "trimness's", "output": "â žâ —â Šâ â °â Žâ „â Ž" }, { "input": "trimonthly", "output": "â žâ —â Šâ â •â â ¹â ‡â ½" }, { "input": "trims", "output": "â žâ —â Šâ â Ž" }, { "input": "trinities", "output": "⠞⠗⠔⠊⠞⠊⠑⠎" }, { "input": "trinitrotoluene", "output": "â žâ —â Šâ â Šâ žâ —⠕⠞⠕⠇⠥⠢⠑" }, { "input": "trinitrotoluene's", "output": "â žâ —â Šâ â Šâ žâ —⠕⠞⠕⠇⠥⠢⠑⠄⠎" }, { "input": "trinity", "output": "⠞⠗⠔⠰⠽" }, { "input": "trinity's", "output": "⠞⠗⠔⠰⠽⠄⠎" }, { "input": "trinket", "output": "⠞⠗⠔⠅⠑⠞" }, { "input": "trinket's", "output": "⠞⠗⠔⠅⠑⠞⠄⠎" }, { "input": "trinkets", "output": "⠞⠗⠔⠅⠑⠞⠎" }, { "input": "trio", "output": "â žâ —â Šâ •" }, { "input": "trio's", "output": "â žâ —â Šâ •â „â Ž" }, { "input": "trios", "output": "â žâ —â Šâ •â Ž" }, { "input": "trip", "output": "â žâ —â Šâ " }, { "input": "trip's", "output": "â žâ —â Šâ â „â Ž" }, { "input": "tripartite", "output": "â žâ —â Šâ â â Šâ žâ ‘" }, { "input": "tripe", "output": "â žâ —â Šâ â ‘" }, { "input": "tripe's", "output": "â žâ —â Šâ â ‘â „â Ž" }, { "input": "triple", "output": "â žâ —â Šâ â ‡â ‘" }, { "input": "triple's", "output": "â žâ —â Šâ â ‡â ‘â „â Ž" }, { "input": "tripled", "output": "â žâ —â Šâ â ‡â «" }, { "input": "triples", "output": "â žâ —â Šâ â ‡â ‘â Ž" }, { "input": "triplet", "output": "â žâ —â Šâ â ‡â ‘â ž" }, { "input": "triplet's", "output": "â žâ —â Šâ â ‡â ‘â žâ „â Ž" }, { "input": "triplets", "output": "â žâ —â Šâ â ‡â ‘â žâ Ž" }, { "input": "triplex", "output": "â žâ —â Šâ â ‡â ‘â ­" }, { "input": "triplex's", "output": "â žâ —â Šâ â ‡â ‘â ­â „â Ž" }, { "input": "triplexes", "output": "â žâ —â Šâ â ‡â ‘â ­â ‘â Ž" }, { "input": "triplicate", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ ‘" }, { "input": "triplicate's", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ ‘â „â Ž" }, { "input": "triplicated", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ «" }, { "input": "triplicates", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ ‘â Ž" }, { "input": "triplicating", "output": "â žâ —â Šâ â ‡â Šâ ‰â â žâ Œ" }, { "input": "tripling", "output": "â žâ —â Šâ â ‡â Œ" }, { "input": "triply", "output": "â žâ —â Šâ â ‡â ½" }, { "input": "tripod", "output": "â žâ —â Šâ â •â ™" }, { "input": "tripod's", "output": "â žâ —â Šâ â •⠙⠄⠎" }, { "input": "tripodal", "output": "â žâ —â Šâ â •â ™â â ‡" }, { "input": "tripods", "output": "â žâ —â Šâ â •⠙⠎" }, { "input": "tripos", "output": "â žâ —â Šâ â •â Ž" }, { "input": "tripped", "output": "â žâ —â Šâ â â «" }, { "input": "tripping", "output": "â žâ —â Šâ â â Œ" }, { "input": "trips", "output": "â žâ —â Šâ â Ž" }, { "input": "triptych", "output": "â žâ —â Šâ â žâ ½â ¡" }, { "input": "triptych's", "output": "â žâ —â Šâ â žâ ½â ¡â „â Ž" }, { "input": "triptychs", "output": "â žâ —â Šâ â žâ ½â ¡â Ž" }, { "input": "trireme", "output": "â žâ —â Šâ —â ‘â â ‘" }, { "input": "trireme's", "output": "â žâ —â Šâ —â ‘â â ‘â „â Ž" }, { "input": "triremes", "output": "â žâ —â Šâ —â ‘â â ‘â Ž" }, { "input": "trisect", "output": "⠞⠗⠊⠎⠑⠉⠞" }, { "input": "trisected", "output": "⠞⠗⠊⠎⠑⠉⠞⠫" }, { "input": "trisecting", "output": "⠞⠗⠊⠎⠑⠉⠞⠌" }, { "input": "trisection", "output": "⠞⠗⠊⠎⠑⠉⠰â " }, { "input": "trisection's", "output": "⠞⠗⠊⠎⠑⠉⠰â â „â Ž" }, { "input": "trisects", "output": "⠞⠗⠊⠎⠑⠉⠞⠎" }, { "input": "trite", "output": "â žâ —â Šâ žâ ‘" }, { "input": "tritely", "output": "⠞⠗⠊⠞⠑⠇⠽" }, { "input": "triteness", "output": "â žâ —â Šâ žâ ‘â °â Ž" }, { "input": "triteness's", "output": "â žâ —â Šâ žâ ‘â °â Žâ „â Ž" }, { "input": "triter", "output": "â žâ —â Šâ žâ »" }, { "input": "tritest", "output": "â žâ —â Šâ žâ ‘â Œ" }, { "input": "tritium", "output": "â žâ —â Šâ žâ Šâ ¥â " }, { "input": "tritium's", "output": "â žâ —â Šâ žâ Šâ ¥â â „â Ž" }, { "input": "triumph", "output": "â žâ —â Šâ ¥â â â “" }, { "input": "triumph's", "output": "â žâ —â Šâ ¥â â â “â „â Ž" }, { "input": "triumphal", "output": "â žâ —â Šâ ¥â â â “â â ‡" }, { "input": "triumphant", "output": "â žâ —â Šâ ¥â â â “â â â ž" }, { "input": "triumphantly", "output": "â žâ —â Šâ ¥â â â “â â â žâ ‡â ½" }, { "input": "triumphed", "output": "â žâ —â Šâ ¥â â â “â «" }, { "input": "triumphing", "output": "â žâ —â Šâ ¥â â â “â Œ" }, { "input": "triumphs", "output": "â žâ —â Šâ ¥â â â “â Ž" }, { "input": "triumvir", "output": "â žâ —â Šâ ¥â â §â Šâ —" }, { "input": "triumvir's", "output": "â žâ —â Šâ ¥â â §â Šâ —â „â Ž" }, { "input": "triumvirate", "output": "â žâ —â Šâ ¥â â §â Šâ —â â žâ ‘" }, { "input": "triumvirate's", "output": "â žâ —â Šâ ¥â â §â Šâ —â â žâ ‘â „â Ž" }, { "input": "triumvirates", "output": "â žâ —â Šâ ¥â â §â Šâ —â â žâ ‘â Ž" }, { "input": "triumvirs", "output": "â žâ —â Šâ ¥â â §â Šâ —â Ž" }, { "input": "trivalent", "output": "â žâ —â Šâ §â â ‡â ¢â ž" }, { "input": "trivet", "output": "â žâ —â Šâ §â ‘â ž" }, { "input": "trivet's", "output": "â žâ —â Šâ §â ‘â žâ „â Ž" }, { "input": "trivets", "output": "â žâ —â Šâ §â ‘â žâ Ž" }, { "input": "trivia", "output": "â žâ —â Šâ §â Šâ " }, { "input": "trivia's", "output": "â žâ —â Šâ §â Šâ â „â Ž" }, { "input": "trivial", "output": "â žâ —â Šâ §â Šâ â ‡" }, { "input": "trivialities", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "triviality", "output": "â žâ —â Šâ §â Šâ â ‡â °â ½" }, { "input": "triviality's", "output": "â žâ —â Šâ §â Šâ â ‡â °â ½â „â Ž" }, { "input": "trivialization", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ  â " }, { "input": "trivialization's", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "trivialize", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ ‘" }, { "input": "trivialized", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ «" }, { "input": "trivializes", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ ‘â Ž" }, { "input": "trivializing", "output": "â žâ —â Šâ §â Šâ â ‡â Šâ µâ Œ" }, { "input": "trivially", "output": "â žâ —â Šâ §â Šâ  â ½" }, { "input": "trivium", "output": "â žâ —â Šâ §â Šâ ¥â " }, { "input": "trivium's", "output": "â žâ —â Šâ §â Šâ ¥â â „â Ž" }, { "input": "trochaic", "output": "â žâ —â •â ¡â â Šâ ‰" }, { "input": "trochee", "output": "â žâ —â •â ¡â ‘â ‘" }, { "input": "trochee's", "output": "â žâ —â •â ¡â ‘â ‘â „â Ž" }, { "input": "trochees", "output": "â žâ —â •â ¡â ‘â ‘â Ž" }, { "input": "trod", "output": "â žâ —â •â ™" }, { "input": "trodden", "output": "⠞⠗⠕⠲⠢" }, { "input": "troika", "output": "â žâ —â •â Šâ …â " }, { "input": "troika's", "output": "â žâ —â •â Šâ …â â „â Ž" }, { "input": "troikas", "output": "â žâ —â •â Šâ …â â Ž" }, { "input": "troll", "output": "⠞⠗⠕⠇⠇" }, { "input": "troll's", "output": "⠞⠗⠕⠇⠇⠄⠎" }, { "input": "trolled", "output": "⠞⠗⠕⠇⠇⠫" }, { "input": "trolley", "output": "⠞⠗⠕⠇⠇⠑⠽" }, { "input": "trolley's", "output": "⠞⠗⠕⠇⠇⠑⠽⠄⠎" }, { "input": "trolleys", "output": "⠞⠗⠕⠇⠇⠑⠽⠎" }, { "input": "trolling", "output": "⠞⠗⠕⠇⠇⠌" }, { "input": "trollop", "output": "⠞⠗⠕⠇⠇⠕â " }, { "input": "trollop's", "output": "⠞⠗⠕⠇⠇⠕â â „â Ž" }, { "input": "trollops", "output": "⠞⠗⠕⠇⠇⠕â â Ž" }, { "input": "trolls", "output": "⠞⠗⠕⠇⠇⠎" }, { "input": "trombone", "output": "â žâ —â •â â ƒâ â •" }, { "input": "trombone's", "output": "â žâ —â •â â ƒâ â •â „â Ž" }, { "input": "trombones", "output": "â žâ —â •â â ƒâ â •â Ž" }, { "input": "trombonist", "output": "â žâ —â •â â ƒâ •â â Šâ Œ" }, { "input": "trombonist's", "output": "â žâ —â •â â ƒâ •â â Šâ Œâ „â Ž" }, { "input": "trombonists", "output": "â žâ —â •â â ƒâ •â â Šâ Œâ Ž" }, { "input": "tromp", "output": "â žâ —â •â â " }, { "input": "tromped", "output": "â žâ —â •â â â «" }, { "input": "tromping", "output": "â žâ —â •â â â Œ" }, { "input": "tromps", "output": "â žâ —â •â â â Ž" }, { "input": "troop", "output": "â žâ —â •â •â " }, { "input": "troop's", "output": "â žâ —â •â •â â „â Ž" }, { "input": "trooped", "output": "â žâ —â •â •â â «" }, { "input": "trooper", "output": "â žâ —â •â •â â »" }, { "input": "trooper's", "output": "â žâ —â •â •â â »â „â Ž" }, { "input": "troopers", "output": "â žâ —â •â •â â »â Ž" }, { "input": "trooping", "output": "â žâ —â •â •â â Œ" }, { "input": "troops", "output": "â žâ —â •â •â â Ž" }, { "input": "troopship", "output": "â žâ —â •â •â â ©â Šâ " }, { "input": "troopship's", "output": "â žâ —â •â •â â ©â Šâ â „â Ž" }, { "input": "troopships", "output": "â žâ —â •â •â â ©â Šâ â Ž" }, { "input": "trope", "output": "â žâ —â •â â ‘" }, { "input": "trope's", "output": "â žâ —â •â â ‘â „â Ž" }, { "input": "tropes", "output": "â žâ —â •â â ‘â Ž" }, { "input": "trophies", "output": "â žâ —â •â â “â Šâ ‘â Ž" }, { "input": "trophy", "output": "â žâ —â •â â “â ½" }, { "input": "trophy's", "output": "â žâ —â •â â “⠽⠄⠎" }, { "input": "tropic", "output": "â žâ —â •â â Šâ ‰" }, { "input": "tropic's", "output": "â žâ —â •â â Šâ ‰â „â Ž" }, { "input": "tropical", "output": "â žâ —â •â â Šâ ‰â â ‡" }, { "input": "tropically", "output": "â žâ —â •â â Šâ ‰â  â ½" }, { "input": "tropics", "output": "â žâ —â •â â Šâ ‰â Ž" }, { "input": "tropics's", "output": "â žâ —â •â â Šâ ‰â Žâ „â Ž" }, { "input": "tropism", "output": "â žâ —â •â â Šâ Žâ " }, { "input": "tropism's", "output": "â žâ —â •â â Šâ Žâ â „â Ž" }, { "input": "tropisms", "output": "â žâ —â •â â Šâ Žâ â Ž" }, { "input": "troposphere", "output": "â žâ —â •â â •â Žâ â “⠻⠑" }, { "input": "troposphere's", "output": "â žâ —â •â â •â Žâ â “⠻⠑⠄⠎" }, { "input": "tropospheres", "output": "â žâ —â •â â •â Žâ â “⠻⠑⠎" }, { "input": "trot", "output": "â žâ —â •â ž" }, { "input": "trot's", "output": "â žâ —â •â žâ „â Ž" }, { "input": "troth", "output": "â žâ —â •â ¹" }, { "input": "troth's", "output": "⠞⠗⠕⠹⠄⠎" }, { "input": "trots", "output": "â žâ —â •â žâ Ž" }, { "input": "trotted", "output": "â žâ —â •â žâ žâ «" }, { "input": "trotter", "output": "â žâ —â •â žâ žâ »" }, { "input": "trotter's", "output": "⠞⠗⠕⠞⠞⠻⠄⠎" }, { "input": "trotters", "output": "⠞⠗⠕⠞⠞⠻⠎" }, { "input": "trotting", "output": "â žâ —â •â žâ žâ Œ" }, { "input": "troubadour", "output": "⠞⠗⠳⠃â â ™â ³â —" }, { "input": "troubadour's", "output": "⠞⠗⠳⠃â â ™â ³â —â „â Ž" }, { "input": "troubadours", "output": "⠞⠗⠳⠃â â ™â ³â —â Ž" }, { "input": "trouble", "output": "⠞⠗⠳⠼" }, { "input": "trouble's", "output": "⠞⠗⠳⠼⠄⠎" }, { "input": "troubled", "output": "⠞⠗⠳⠼⠙" }, { "input": "troublemaker", "output": "⠞⠗⠳⠼â â â …â »" }, { "input": "troublemaker's", "output": "⠞⠗⠳⠼â â â …⠻⠄⠎" }, { "input": "troublemakers", "output": "⠞⠗⠳⠼â â â …⠻⠎" }, { "input": "troubles", "output": "⠞⠗⠳⠼⠎" }, { "input": "troubleshoot", "output": "⠞⠗⠳⠼⠩⠕⠕⠞" }, { "input": "troubleshooted", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠫" }, { "input": "troubleshooter", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠻" }, { "input": "troubleshooter's", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠻⠄⠎" }, { "input": "troubleshooters", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠻⠎" }, { "input": "troubleshooting", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠌" }, { "input": "troubleshooting's", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠌⠄⠎" }, { "input": "troubleshoots", "output": "⠞⠗⠳⠼⠩⠕⠕⠞⠎" }, { "input": "troubleshot", "output": "⠞⠗⠳⠼⠩⠕⠞" }, { "input": "troublesome", "output": "⠞⠗⠳⠼â â Ž" }, { "input": "troublesomely", "output": "⠞⠗⠳⠼â â Žâ ‡â ½" }, { "input": "troubling", "output": "⠞⠗⠳⠃⠇⠌" }, { "input": "trough", "output": "⠞⠗⠳⠣" }, { "input": "trough's", "output": "⠞⠗⠳⠣⠄⠎" }, { "input": "troughs", "output": "⠞⠗⠳⠣⠎" }, { "input": "trounce", "output": "â žâ —â ³â â ‰â ‘" }, { "input": "trounced", "output": "â žâ —â ³â â ‰â «" }, { "input": "trouncer", "output": "â žâ —â ³â â ‰â »" }, { "input": "trouncer's", "output": "â žâ —â ³â â ‰â »â „â Ž" }, { "input": "trouncers", "output": "â žâ —â ³â â ‰â »â Ž" }, { "input": "trounces", "output": "â žâ —â ³â â ‰â ‘â Ž" }, { "input": "trouncing", "output": "â žâ —â ³â â ‰â Œ" }, { "input": "troupe", "output": "â žâ —â ³â â ‘" }, { "input": "troupe's", "output": "â žâ —â ³â â ‘â „â Ž" }, { "input": "trouped", "output": "â žâ —â ³â â «" }, { "input": "trouper", "output": "â žâ —â ³â â »" }, { "input": "trouper's", "output": "â žâ —â ³â â »â „â Ž" }, { "input": "troupers", "output": "â žâ —â ³â â »â Ž" }, { "input": "troupes", "output": "â žâ —â ³â â ‘â Ž" }, { "input": "trouping", "output": "â žâ —â ³â â Œ" }, { "input": "trouser", "output": "⠞⠗⠳⠎⠻" }, { "input": "trouser's", "output": "⠞⠗⠳⠎⠻⠄⠎" }, { "input": "trousers", "output": "⠞⠗⠳⠎⠻⠎" }, { "input": "trousers's", "output": "⠞⠗⠳⠎⠻⠎⠄⠎" }, { "input": "trousseau", "output": "⠞⠗⠳⠎⠎⠂⠥" }, { "input": "trousseau's", "output": "⠞⠗⠳⠎⠎⠂⠥⠄⠎" }, { "input": "trousseaux", "output": "⠞⠗⠳⠎⠎⠂⠥⠭" }, { "input": "trout", "output": "⠞⠗⠳⠞" }, { "input": "trout's", "output": "⠞⠗⠳⠞⠄⠎" }, { "input": "trouts", "output": "⠞⠗⠳⠞⠎" }, { "input": "trove", "output": "â žâ —â •â §â ‘" }, { "input": "trove's", "output": "â žâ —â •â §â ‘â „â Ž" }, { "input": "troves", "output": "â žâ —â •â §â ‘â Ž" }, { "input": "trow", "output": "â žâ —â ª" }, { "input": "trowed", "output": "⠞⠗⠪⠫" }, { "input": "trowel", "output": "⠞⠗⠪⠑⠇" }, { "input": "trowel's", "output": "⠞⠗⠪⠑⠇⠄⠎" }, { "input": "troweled", "output": "⠞⠗⠪⠑⠇⠫" }, { "input": "troweling", "output": "⠞⠗⠪⠑⠇⠌" }, { "input": "trowels", "output": "⠞⠗⠪⠑⠇⠎" }, { "input": "trowing", "output": "⠞⠗⠪⠌" }, { "input": "trows", "output": "⠞⠗⠪⠎" }, { "input": "troy", "output": "â žâ —â •â ½" }, { "input": "troys", "output": "⠞⠗⠕⠽⠎" }, { "input": "truancy", "output": "â žâ —â ¥â â â ‰â ½" }, { "input": "truancy's", "output": "â žâ —â ¥â â â ‰â ½â „â Ž" }, { "input": "truant", "output": "â žâ —â ¥â â â ž" }, { "input": "truant's", "output": "â žâ —â ¥â â â žâ „â Ž" }, { "input": "truanted", "output": "â žâ —â ¥â â â žâ «" }, { "input": "truanting", "output": "â žâ —â ¥â â â žâ Œ" }, { "input": "truants", "output": "â žâ —â ¥â â â žâ Ž" }, { "input": "truce", "output": "⠞⠗⠥⠉⠑" }, { "input": "truce's", "output": "⠞⠗⠥⠉⠑⠄⠎" }, { "input": "truces", "output": "⠞⠗⠥⠉⠑⠎" }, { "input": "truck", "output": "⠞⠗⠥⠉⠅" }, { "input": "truck's", "output": "⠞⠗⠥⠉⠅⠄⠎" }, { "input": "trucked", "output": "⠞⠗⠥⠉⠅⠫" }, { "input": "trucker", "output": "⠞⠗⠥⠉⠅⠻" }, { "input": "trucker's", "output": "⠞⠗⠥⠉⠅⠻⠄⠎" }, { "input": "truckers", "output": "⠞⠗⠥⠉⠅⠻⠎" }, { "input": "trucking", "output": "⠞⠗⠥⠉⠅⠌" }, { "input": "trucking's", "output": "⠞⠗⠥⠉⠅⠌⠄⠎" }, { "input": "truckle", "output": "⠞⠗⠥⠉⠅⠇⠑" }, { "input": "truckle's", "output": "⠞⠗⠥⠉⠅⠇⠑⠄⠎" }, { "input": "truckled", "output": "⠞⠗⠥⠉⠅⠇⠫" }, { "input": "truckles", "output": "⠞⠗⠥⠉⠅⠇⠑⠎" }, { "input": "truckling", "output": "⠞⠗⠥⠉⠅⠇⠌" }, { "input": "truckload", "output": "⠞⠗⠥⠉⠅⠇⠕â â ™" }, { "input": "truckload's", "output": "⠞⠗⠥⠉⠅⠇⠕â â ™â „â Ž" }, { "input": "truckloads", "output": "⠞⠗⠥⠉⠅⠇⠕â â ™â Ž" }, { "input": "trucks", "output": "⠞⠗⠥⠉⠅⠎" }, { "input": "truculence", "output": "⠞⠗⠥⠉⠥⠇⠰⠑" }, { "input": "truculence's", "output": "⠞⠗⠥⠉⠥⠇⠰⠑⠄⠎" }, { "input": "truculent", "output": "⠞⠗⠥⠉⠥⠇⠢⠞" }, { "input": "truculently", "output": "⠞⠗⠥⠉⠥⠇⠢⠞⠇⠽" }, { "input": "trudge", "output": "⠞⠗⠥⠙⠛⠑" }, { "input": "trudge's", "output": "⠞⠗⠥⠙⠛⠑⠄⠎" }, { "input": "trudged", "output": "⠞⠗⠥⠙⠛⠫" }, { "input": "trudges", "output": "⠞⠗⠥⠙⠛⠑⠎" }, { "input": "trudging", "output": "⠞⠗⠥⠙⠛⠌" }, { "input": "true", "output": "⠞⠗⠥⠑" }, { "input": "true's", "output": "⠞⠗⠥⠑⠄⠎" }, { "input": "trued", "output": "⠞⠗⠥⠫" }, { "input": "truer", "output": "⠞⠗⠥⠻" }, { "input": "trues", "output": "⠞⠗⠥⠑⠎" }, { "input": "truest", "output": "⠞⠗⠥⠑⠌" }, { "input": "truffle", "output": "⠞⠗⠥⠖⠇⠑" }, { "input": "truffle's", "output": "⠞⠗⠥⠖⠇⠑⠄⠎" }, { "input": "truffles", "output": "⠞⠗⠥⠖⠇⠑⠎" }, { "input": "truing", "output": "⠞⠗⠥⠌" }, { "input": "truism", "output": "⠞⠗⠥⠊⠎â " }, { "input": "truism's", "output": "⠞⠗⠥⠊⠎â â „â Ž" }, { "input": "truisms", "output": "⠞⠗⠥⠊⠎â â Ž" }, { "input": "truly", "output": "⠞⠗⠥⠇⠽" }, { "input": "trump", "output": "â žâ —â ¥â â " }, { "input": "trump's", "output": "â žâ —â ¥â â â „â Ž" }, { "input": "trumped", "output": "â žâ —â ¥â â â «" }, { "input": "trumpery", "output": "â žâ —â ¥â â â »â ½" }, { "input": "trumpery's", "output": "â žâ —â ¥â â â »â ½â „â Ž" }, { "input": "trumpet", "output": "â žâ —â ¥â â â ‘â ž" }, { "input": "trumpet's", "output": "â žâ —â ¥â â â ‘â žâ „â Ž" }, { "input": "trumpeted", "output": "â žâ —â ¥â â â ‘â žâ «" }, { "input": "trumpeter", "output": "â žâ —â ¥â â â ‘â žâ »" }, { "input": "trumpeter's", "output": "â žâ —â ¥â â â ‘⠞⠻⠄⠎" }, { "input": "trumpeters", "output": "â žâ —â ¥â â â ‘⠞⠻⠎" }, { "input": "trumpeting", "output": "â žâ —â ¥â â â ‘â žâ Œ" }, { "input": "trumpets", "output": "â žâ —â ¥â â â ‘â žâ Ž" }, { "input": "trumping", "output": "â žâ —â ¥â â â Œ" }, { "input": "trumps", "output": "â žâ —â ¥â â â Ž" }, { "input": "truncate", "output": "â žâ —â ¥â â ‰â â žâ ‘" }, { "input": "truncated", "output": "â žâ —â ¥â â ‰â â žâ «" }, { "input": "truncates", "output": "â žâ —â ¥â â ‰â â žâ ‘â Ž" }, { "input": "truncating", "output": "â žâ —â ¥â â ‰â â žâ Œ" }, { "input": "truncation", "output": "â žâ —â ¥â â ‰â  â " }, { "input": "truncation's", "output": "â žâ —â ¥â â ‰â  â â „â Ž" }, { "input": "truncheon", "output": "â žâ —â ¥â â ¡â ‘â •â " }, { "input": "truncheon's", "output": "â žâ —â ¥â â ¡â ‘â •â â „â Ž" }, { "input": "truncheons", "output": "â žâ —â ¥â â ¡â ‘â •â â Ž" }, { "input": "trundle", "output": "â žâ —â ¥â â ™â ‡â ‘" }, { "input": "trundle's", "output": "â žâ —â ¥â â ™â ‡â ‘â „â Ž" }, { "input": "trundled", "output": "â žâ —â ¥â â ™â ‡â «" }, { "input": "trundler", "output": "â žâ —â ¥â â ™â ‡â »" }, { "input": "trundler's", "output": "â žâ —â ¥â â ™â ‡â »â „â Ž" }, { "input": "trundlers", "output": "â žâ —â ¥â â ™â ‡â »â Ž" }, { "input": "trundles", "output": "â žâ —â ¥â â ™â ‡â ‘â Ž" }, { "input": "trundling", "output": "â žâ —â ¥â â ™â ‡â Œ" }, { "input": "trunk", "output": "â žâ —â ¥â â …" }, { "input": "trunk's", "output": "â žâ —â ¥â â …â „â Ž" }, { "input": "trunking", "output": "â žâ —â ¥â â …â Œ" }, { "input": "trunks", "output": "â žâ —â ¥â â …â Ž" }, { "input": "truss", "output": "⠞⠗⠥⠎⠎" }, { "input": "truss's", "output": "⠞⠗⠥⠎⠎⠄⠎" }, { "input": "trussed", "output": "⠞⠗⠥⠎⠎⠫" }, { "input": "trusses", "output": "⠞⠗⠥⠎⠎⠑⠎" }, { "input": "trussing", "output": "⠞⠗⠥⠎⠎⠌" }, { "input": "trust", "output": "⠞⠗⠥⠌" }, { "input": "trust's", "output": "⠞⠗⠥⠌⠄⠎" }, { "input": "trusted", "output": "⠞⠗⠥⠌⠫" }, { "input": "trustee", "output": "⠞⠗⠥⠌⠑⠑" }, { "input": "trustee's", "output": "⠞⠗⠥⠌⠑⠑⠄⠎" }, { "input": "trustees", "output": "⠞⠗⠥⠌⠑⠑⠎" }, { "input": "trusteeship", "output": "⠞⠗⠥⠌⠑⠑⠩⠊â " }, { "input": "trusteeship's", "output": "⠞⠗⠥⠌⠑⠑⠩⠊â â „â Ž" }, { "input": "trusteeships", "output": "⠞⠗⠥⠌⠑⠑⠩⠊â â Ž" }, { "input": "trustful", "output": "⠞⠗⠥⠌⠰⠇" }, { "input": "trustfully", "output": "⠞⠗⠥⠌⠰⠇⠇⠽" }, { "input": "trustfulness", "output": "⠞⠗⠥⠌⠰⠇⠰⠎" }, { "input": "trustfulness's", "output": "⠞⠗⠥⠌⠰⠇⠰⠎⠄⠎" }, { "input": "trustier", "output": "⠞⠗⠥⠌⠊⠻" }, { "input": "trusties", "output": "⠞⠗⠥⠌⠊⠑⠎" }, { "input": "trustiest", "output": "⠞⠗⠥⠌⠊⠑⠌" }, { "input": "trusting", "output": "⠞⠗⠥⠌⠌" }, { "input": "trustingly", "output": "⠞⠗⠥⠌⠌⠇⠽" }, { "input": "trusts", "output": "⠞⠗⠥⠌⠎" }, { "input": "trustworthier", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠻" }, { "input": "trustworthiest", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠑⠌" }, { "input": "trustworthiness", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠰⠎" }, { "input": "trustworthiness's", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "trustworthy", "output": "⠞⠗⠥⠌⠺⠕⠗⠹⠽" }, { "input": "trusty", "output": "⠞⠗⠥⠌⠽" }, { "input": "trusty's", "output": "⠞⠗⠥⠌⠽⠄⠎" }, { "input": "truth", "output": "⠞⠗⠥⠹" }, { "input": "truth's", "output": "⠞⠗⠥⠹⠄⠎" }, { "input": "truthful", "output": "⠞⠗⠥⠹⠰⠇" }, { "input": "truthfully", "output": "⠞⠗⠥⠹⠰⠇⠇⠽" }, { "input": "truthfulness", "output": "⠞⠗⠥⠹⠰⠇⠰⠎" }, { "input": "truthfulness's", "output": "⠞⠗⠥⠹⠰⠇⠰⠎⠄⠎" }, { "input": "truths", "output": "⠞⠗⠥⠹⠎" }, { "input": "try", "output": "â žâ —â ½" }, { "input": "try's", "output": "⠞⠗⠽⠄⠎" }, { "input": "trying", "output": "⠞⠗⠽⠌" }, { "input": "tryingly", "output": "⠞⠗⠽⠌⠇⠽" }, { "input": "tryout", "output": "⠞⠗⠽⠳⠞" }, { "input": "tryout's", "output": "⠞⠗⠽⠳⠞⠄⠎" }, { "input": "tryouts", "output": "⠞⠗⠽⠳⠞⠎" }, { "input": "tryst", "output": "⠞⠗⠽⠌" }, { "input": "tryst's", "output": "⠞⠗⠽⠌⠄⠎" }, { "input": "trysted", "output": "⠞⠗⠽⠌⠫" }, { "input": "trysting", "output": "⠞⠗⠽⠌⠌" }, { "input": "trysts", "output": "⠞⠗⠽⠌⠎" }, { "input": "ts", "output": "â žâ Ž" }, { "input": "tsetse", "output": "â žâ Žâ ‘â žâ Žâ ‘" }, { "input": "tsetse's", "output": "â žâ Žâ ‘â žâ Žâ ‘â „â Ž" }, { "input": "tsetses", "output": "â žâ Žâ ‘â žâ Žâ ‘â Ž" }, { "input": "tsunami", "output": "â žâ Žâ ¥â â â â Š" }, { "input": "tsunami's", "output": "â žâ Žâ ¥â â â â Šâ „â Ž" }, { "input": "tsunamis", "output": "â žâ Žâ ¥â â â â Šâ Ž" }, { "input": "tub", "output": "⠞⠥⠃" }, { "input": "tub's", "output": "⠞⠥⠃⠄⠎" }, { "input": "tuba", "output": "⠞⠥⠃â " }, { "input": "tuba's", "output": "⠞⠥⠃â â „â Ž" }, { "input": "tubal", "output": "⠞⠥⠃â â ‡" }, { "input": "tubas", "output": "⠞⠥⠃â â Ž" }, { "input": "tubbier", "output": "⠞⠥⠆⠊⠻" }, { "input": "tubbiest", "output": "⠞⠥⠆⠊⠑⠌" }, { "input": "tubby", "output": "⠞⠥⠆⠽" }, { "input": "tube", "output": "⠞⠥⠃⠑" }, { "input": "tube's", "output": "⠞⠥⠃⠑⠄⠎" }, { "input": "tubed", "output": "⠞⠥⠃⠫" }, { "input": "tubeless", "output": "⠞⠥⠃⠑⠨⠎" }, { "input": "tubeless's", "output": "⠞⠥⠃⠑⠨⠎⠄⠎" }, { "input": "tuber", "output": "⠞⠥⠃⠻" }, { "input": "tuber's", "output": "⠞⠥⠃⠻⠄⠎" }, { "input": "tubercle", "output": "⠞⠥⠃⠻⠉⠇⠑" }, { "input": "tubercle's", "output": "⠞⠥⠃⠻⠉⠇⠑⠄⠎" }, { "input": "tubercles", "output": "⠞⠥⠃⠻⠉⠇⠑⠎" }, { "input": "tubercular", "output": "⠞⠥⠃⠻⠉⠥⠇⠜" }, { "input": "tuberculin", "output": "⠞⠥⠃⠻⠉⠥⠇⠔" }, { "input": "tuberculin's", "output": "⠞⠥⠃⠻⠉⠥⠇⠔⠄⠎" }, { "input": "tuberculosis", "output": "⠞⠥⠃⠻⠉⠥⠇⠕⠎⠊⠎" }, { "input": "tuberculosis's", "output": "⠞⠥⠃⠻⠉⠥⠇⠕⠎⠊⠎⠄⠎" }, { "input": "tuberculous", "output": "⠞⠥⠃⠻⠉⠥⠇⠳⠎" }, { "input": "tuberose", "output": "⠞⠥⠃⠻⠕⠎⠑" }, { "input": "tuberose's", "output": "⠞⠥⠃⠻⠕⠎⠑⠄⠎" }, { "input": "tuberous", "output": "⠞⠥⠃⠻⠳⠎" }, { "input": "tubers", "output": "⠞⠥⠃⠻⠎" }, { "input": "tubes", "output": "⠞⠥⠃⠑⠎" }, { "input": "tubful", "output": "⠞⠥⠃⠰⠇" }, { "input": "tubful's", "output": "⠞⠥⠃⠰⠇⠄⠎" }, { "input": "tubfuls", "output": "⠞⠥⠃⠰⠇⠎" }, { "input": "tubing", "output": "⠞⠥⠃⠌" }, { "input": "tubing's", "output": "⠞⠥⠃⠌⠄⠎" }, { "input": "tubs", "output": "⠞⠥⠃⠎" }, { "input": "tubular", "output": "⠞⠥⠃⠥⠇⠜" }, { "input": "tubule", "output": "⠞⠥⠃⠥⠇⠑" }, { "input": "tubule's", "output": "⠞⠥⠃⠥⠇⠑⠄⠎" }, { "input": "tubules", "output": "⠞⠥⠃⠥⠇⠑⠎" }, { "input": "tuck", "output": "⠞⠥⠉⠅" }, { "input": "tuck's", "output": "⠞⠥⠉⠅⠄⠎" }, { "input": "tucked", "output": "⠞⠥⠉⠅⠫" }, { "input": "tucker", "output": "⠞⠥⠉⠅⠻" }, { "input": "tucker's", "output": "⠞⠥⠉⠅⠻⠄⠎" }, { "input": "tuckered", "output": "⠞⠥⠉⠅⠻⠫" }, { "input": "tuckering", "output": "⠞⠥⠉⠅⠻⠌" }, { "input": "tuckers", "output": "⠞⠥⠉⠅⠻⠎" }, { "input": "tucking", "output": "⠞⠥⠉⠅⠌" }, { "input": "tucks", "output": "⠞⠥⠉⠅⠎" }, { "input": "tuft", "output": "⠞⠥⠋⠞" }, { "input": "tuft's", "output": "⠞⠥⠋⠞⠄⠎" }, { "input": "tufted", "output": "⠞⠥⠋⠞⠫" }, { "input": "tufter", "output": "⠞⠥⠋⠞⠻" }, { "input": "tufter's", "output": "⠞⠥⠋⠞⠻⠄⠎" }, { "input": "tufters", "output": "⠞⠥⠋⠞⠻⠎" }, { "input": "tufting", "output": "⠞⠥⠋⠞⠌" }, { "input": "tufts", "output": "⠞⠥⠋⠞⠎" }, { "input": "tug", "output": "⠞⠥⠛" }, { "input": "tug's", "output": "⠞⠥⠛⠄⠎" }, { "input": "tugboat", "output": "⠞⠥⠛⠃⠕â â ž" }, { "input": "tugboat's", "output": "⠞⠥⠛⠃⠕â â žâ „â Ž" }, { "input": "tugboats", "output": "⠞⠥⠛⠃⠕â â žâ Ž" }, { "input": "tugged", "output": "⠞⠥⠶⠫" }, { "input": "tugging", "output": "⠞⠥⠶⠌" }, { "input": "tugs", "output": "⠞⠥⠛⠎" }, { "input": "tuition", "output": "⠞⠥⠊⠰â " }, { "input": "tuition's", "output": "⠞⠥⠊⠰â â „â Ž" }, { "input": "tularemia", "output": "⠞⠥⠇⠜⠑â â Šâ " }, { "input": "tularemia's", "output": "⠞⠥⠇⠜⠑â â Šâ â „â Ž" }, { "input": "tulip", "output": "⠞⠥⠇⠊â " }, { "input": "tulip's", "output": "⠞⠥⠇⠊â â „â Ž" }, { "input": "tulips", "output": "⠞⠥⠇⠊â â Ž" }, { "input": "tulle", "output": "⠞⠥⠇⠇⠑" }, { "input": "tulle's", "output": "⠞⠥⠇⠇⠑⠄⠎" }, { "input": "tumble", "output": "â žâ ¥â â ¼" }, { "input": "tumble's", "output": "â žâ ¥â â ¼â „â Ž" }, { "input": "tumbled", "output": "â žâ ¥â â ¼â ™" }, { "input": "tumbledown", "output": "â žâ ¥â â ¼â ™â ªâ " }, { "input": "tumbler", "output": "â žâ ¥â â ¼â —" }, { "input": "tumbler's", "output": "â žâ ¥â â ¼â —â „â Ž" }, { "input": "tumblers", "output": "â žâ ¥â â ¼â —â Ž" }, { "input": "tumbles", "output": "â žâ ¥â â ¼â Ž" }, { "input": "tumbleweed", "output": "â žâ ¥â â ¼â ºâ ‘â «" }, { "input": "tumbleweed's", "output": "â žâ ¥â â ¼â ºâ ‘â «â „â Ž" }, { "input": "tumbleweeds", "output": "â žâ ¥â â ¼â ºâ ‘â «â Ž" }, { "input": "tumbling", "output": "â žâ ¥â â ƒâ ‡â Œ" }, { "input": "tumbling's", "output": "â žâ ¥â â ƒâ ‡â Œâ „â Ž" }, { "input": "tumbrel", "output": "â žâ ¥â â ƒâ —â ‘â ‡" }, { "input": "tumbrel's", "output": "â žâ ¥â â ƒâ —⠑⠇⠄⠎" }, { "input": "tumbrels", "output": "â žâ ¥â â ƒâ —⠑⠇⠎" }, { "input": "tumescence's", "output": "â žâ ¥â â ‘⠎⠉⠰⠑⠄⠎" }, { "input": "tumid", "output": "â žâ ¥â â Šâ ™" }, { "input": "tumidity", "output": "â žâ ¥â â Šâ ™â °â ½" }, { "input": "tumidity's", "output": "â žâ ¥â â Šâ ™â °â ½â „â Ž" }, { "input": "tummies", "output": "â žâ ¥â â â Šâ ‘â Ž" }, { "input": "tummy", "output": "â žâ ¥â â â ½" }, { "input": "tummy's", "output": "â žâ ¥â â â ½â „â Ž" }, { "input": "tumor", "output": "â žâ ¥â â •â —" }, { "input": "tumor's", "output": "â žâ ¥â â •â —â „â Ž" }, { "input": "tumorous", "output": "â žâ ¥â â •⠗⠳⠎" }, { "input": "tumors", "output": "â žâ ¥â â •â —â Ž" }, { "input": "tumult", "output": "â žâ ¥â â ¥â ‡â ž" }, { "input": "tumult's", "output": "â žâ ¥â â ¥â ‡â žâ „â Ž" }, { "input": "tumults", "output": "â žâ ¥â â ¥â ‡â žâ Ž" }, { "input": "tumultuous", "output": "â žâ ¥â â ¥â ‡â žâ ¥â ³â Ž" }, { "input": "tun", "output": "â žâ ¥â " }, { "input": "tun's", "output": "â žâ ¥â â „â Ž" }, { "input": "tuna", "output": "â žâ ¥â â " }, { "input": "tuna's", "output": "â žâ ¥â â â „â Ž" }, { "input": "tunas", "output": "â žâ ¥â â â Ž" }, { "input": "tundra", "output": "â žâ ¥â â ™â —â " }, { "input": "tundra's", "output": "â žâ ¥â â ™â —â â „â Ž" }, { "input": "tundras", "output": "â žâ ¥â â ™â —â â Ž" }, { "input": "tune", "output": "â žâ ¥â â ‘" }, { "input": "tune's", "output": "â žâ ¥â â ‘â „â Ž" }, { "input": "tuned", "output": "â žâ ¥â â «" }, { "input": "tuneful", "output": "â žâ ¥â â ‘â °â ‡" }, { "input": "tunefully", "output": "â žâ ¥â â ‘⠰⠇⠇⠽" }, { "input": "tunefulness's", "output": "â žâ ¥â â ‘⠰⠇⠰⠎⠄⠎" }, { "input": "tuneless", "output": "â žâ ¥â â ‘⠨⠎" }, { "input": "tunelessly", "output": "â žâ ¥â â ‘⠨⠎⠇⠽" }, { "input": "tuner", "output": "â žâ ¥â â »" }, { "input": "tuner's", "output": "â žâ ¥â â »â „â Ž" }, { "input": "tuners", "output": "â žâ ¥â â »â Ž" }, { "input": "tunes", "output": "â žâ ¥â â ‘â Ž" }, { "input": "tuneup", "output": "â žâ ¥â â ‘â ¥â " }, { "input": "tuneup's", "output": "â žâ ¥â â ‘â ¥â â „â Ž" }, { "input": "tuneups", "output": "â žâ ¥â â ‘â ¥â â Ž" }, { "input": "tungsten", "output": "â žâ ¥â â ›â Œâ ¢" }, { "input": "tungsten's", "output": "â žâ ¥â â ›â Œâ ¢â „â Ž" }, { "input": "tunic", "output": "â žâ ¥â â Šâ ‰" }, { "input": "tunic's", "output": "â žâ ¥â â Šâ ‰â „â Ž" }, { "input": "tunics", "output": "â žâ ¥â â Šâ ‰â Ž" }, { "input": "tuning", "output": "â žâ ¥â â Œ" }, { "input": "tunnel", "output": "â žâ ¥â â â ‘â ‡" }, { "input": "tunnel's", "output": "â žâ ¥â â â ‘⠇⠄⠎" }, { "input": "tunneled", "output": "â žâ ¥â â â ‘⠇⠫" }, { "input": "tunneler", "output": "â žâ ¥â â â ‘⠇⠻" }, { "input": "tunneler's", "output": "â žâ ¥â â â ‘⠇⠻⠄⠎" }, { "input": "tunnelers", "output": "â žâ ¥â â â ‘⠇⠻⠎" }, { "input": "tunneling", "output": "â žâ ¥â â â ‘⠇⠌" }, { "input": "tunnelings", "output": "â žâ ¥â â â ‘⠇⠌⠎" }, { "input": "tunnels", "output": "â žâ ¥â â â ‘⠇⠎" }, { "input": "tunnies", "output": "â žâ ¥â â â Šâ ‘â Ž" }, { "input": "tunny", "output": "â žâ ¥â â â ½" }, { "input": "tunny's", "output": "â žâ ¥â â â ½â „â Ž" }, { "input": "tuns", "output": "â žâ ¥â â Ž" }, { "input": "turban", "output": "⠞⠥⠗⠃â â " }, { "input": "turban's", "output": "⠞⠥⠗⠃â â â „â Ž" }, { "input": "turbans", "output": "⠞⠥⠗⠃â â â Ž" }, { "input": "turbid", "output": "⠞⠥⠗⠃⠊⠙" }, { "input": "turbidity's", "output": "⠞⠥⠗⠃⠊⠙⠰⠽⠄⠎" }, { "input": "turbine", "output": "⠞⠥⠗⠃⠔⠑" }, { "input": "turbine's", "output": "⠞⠥⠗⠃⠔⠑⠄⠎" }, { "input": "turbines", "output": "⠞⠥⠗⠃⠔⠑⠎" }, { "input": "turbofan", "output": "⠞⠥⠗⠃⠕⠋â â " }, { "input": "turbofan's", "output": "⠞⠥⠗⠃⠕⠋â â â „â Ž" }, { "input": "turbofans", "output": "⠞⠥⠗⠃⠕⠋â â â Ž" }, { "input": "turbojet", "output": "⠞⠥⠗⠃⠕⠚⠑⠞" }, { "input": "turbojet's", "output": "⠞⠥⠗⠃⠕⠚⠑⠞⠄⠎" }, { "input": "turbojets", "output": "⠞⠥⠗⠃⠕⠚⠑⠞⠎" }, { "input": "turboprop", "output": "⠞⠥⠗⠃⠕â â —â •â " }, { "input": "turboprop's", "output": "⠞⠥⠗⠃⠕â â —â •â â „â Ž" }, { "input": "turboprops", "output": "⠞⠥⠗⠃⠕â â —â •â â Ž" }, { "input": "turbot", "output": "⠞⠥⠗⠃⠕⠞" }, { "input": "turbot's", "output": "⠞⠥⠗⠃⠕⠞⠄⠎" }, { "input": "turbots", "output": "⠞⠥⠗⠃⠕⠞⠎" }, { "input": "turbulence", "output": "⠞⠥⠗⠃⠥⠇⠰⠑" }, { "input": "turbulence's", "output": "⠞⠥⠗⠃⠥⠇⠰⠑⠄⠎" }, { "input": "turbulent", "output": "⠞⠥⠗⠃⠥⠇⠢⠞" }, { "input": "turbulently", "output": "⠞⠥⠗⠃⠥⠇⠢⠞⠇⠽" }, { "input": "turd", "output": "⠞⠥⠗⠙" }, { "input": "turd's", "output": "⠞⠥⠗⠙⠄⠎" }, { "input": "turds", "output": "⠞⠥⠗⠙⠎" }, { "input": "tureen", "output": "⠞⠥⠗⠑⠢" }, { "input": "tureen's", "output": "⠞⠥⠗⠑⠢⠄⠎" }, { "input": "tureens", "output": "⠞⠥⠗⠑⠢⠎" }, { "input": "turf", "output": "⠞⠥⠗⠋" }, { "input": "turf's", "output": "⠞⠥⠗⠋⠄⠎" }, { "input": "turfed", "output": "⠞⠥⠗⠋⠫" }, { "input": "turfing", "output": "⠞⠥⠗⠋⠌" }, { "input": "turfs", "output": "⠞⠥⠗⠋⠎" }, { "input": "turfy", "output": "⠞⠥⠗⠋⠽" }, { "input": "turgid", "output": "⠞⠥⠗⠛⠊⠙" }, { "input": "turgidity", "output": "⠞⠥⠗⠛⠊⠙⠰⠽" }, { "input": "turgidity's", "output": "⠞⠥⠗⠛⠊⠙⠰⠽⠄⠎" }, { "input": "turgidly", "output": "⠞⠥⠗⠛⠊⠙⠇⠽" }, { "input": "turkey", "output": "⠞⠥⠗⠅⠑⠽" }, { "input": "turkey's", "output": "⠞⠥⠗⠅⠑⠽⠄⠎" }, { "input": "turkeys", "output": "⠞⠥⠗⠅⠑⠽⠎" }, { "input": "turmeric", "output": "⠞⠥⠗â â »â Šâ ‰" }, { "input": "turmeric's", "output": "⠞⠥⠗â â »â Šâ ‰â „â Ž" }, { "input": "turmerics", "output": "⠞⠥⠗â â »â Šâ ‰â Ž" }, { "input": "turmoil", "output": "⠞⠥⠗â â •â Šâ ‡" }, { "input": "turmoil's", "output": "⠞⠥⠗â â •⠊⠇⠄⠎" }, { "input": "turmoils", "output": "⠞⠥⠗â â •⠊⠇⠎" }, { "input": "turn", "output": "⠞⠥⠗â " }, { "input": "turn's", "output": "⠞⠥⠗â â „â Ž" }, { "input": "turnabout", "output": "⠞⠥⠗â â â ƒ" }, { "input": "turnabout's", "output": "⠞⠥⠗â â â ƒâ „â Ž" }, { "input": "turnabouts", "output": "⠞⠥⠗â â â ƒâ Ž" }, { "input": "turnaround", "output": "⠞⠥⠗â â œâ ¨â ™" }, { "input": "turnaround's", "output": "⠞⠥⠗â â œâ ¨â ™â „â Ž" }, { "input": "turnarounds", "output": "⠞⠥⠗â â œâ ¨â ™â Ž" }, { "input": "turnbuckle", "output": "⠞⠥⠗â â ƒâ ¥â ‰â …⠇⠑" }, { "input": "turnbuckle's", "output": "⠞⠥⠗â â ƒâ ¥â ‰â …⠇⠑⠄⠎" }, { "input": "turnbuckles", "output": "⠞⠥⠗â â ƒâ ¥â ‰â …⠇⠑⠎" }, { "input": "turncoat", "output": "⠞⠥⠗â â ‰â •â â ž" }, { "input": "turncoat's", "output": "⠞⠥⠗â â ‰â •â â žâ „â Ž" }, { "input": "turncoats", "output": "⠞⠥⠗â â ‰â •â â žâ Ž" }, { "input": "turned", "output": "⠞⠥⠗â â «" }, { "input": "turner", "output": "⠞⠥⠗â â »" }, { "input": "turner's", "output": "⠞⠥⠗â â »â „â Ž" }, { "input": "turners", "output": "⠞⠥⠗â â »â Ž" }, { "input": "turning", "output": "⠞⠥⠗â â Œ" }, { "input": "turnip", "output": "⠞⠥⠗â â Šâ " }, { "input": "turnip's", "output": "⠞⠥⠗â â Šâ â „â Ž" }, { "input": "turnips", "output": "⠞⠥⠗â â Šâ â Ž" }, { "input": "turnkey", "output": "⠞⠥⠗â â …â ‘â ½" }, { "input": "turnkey's", "output": "⠞⠥⠗â â …⠑⠽⠄⠎" }, { "input": "turnkeys", "output": "⠞⠥⠗â â …⠑⠽⠎" }, { "input": "turnoff", "output": "⠞⠥⠗â â ·â ‹" }, { "input": "turnoff's", "output": "⠞⠥⠗â â ·â ‹â „â Ž" }, { "input": "turnoffs", "output": "⠞⠥⠗â â ·â ‹â Ž" }, { "input": "turnout", "output": "⠞⠥⠗â â ³â ž" }, { "input": "turnout's", "output": "⠞⠥⠗â â ³â žâ „â Ž" }, { "input": "turnouts", "output": "⠞⠥⠗â â ³â žâ Ž" }, { "input": "turnover", "output": "⠞⠥⠗â â •â §â »" }, { "input": "turnover's", "output": "⠞⠥⠗â â •⠧⠻⠄⠎" }, { "input": "turnovers", "output": "⠞⠥⠗â â •⠧⠻⠎" }, { "input": "turnpike", "output": "⠞⠥⠗â â â Šâ …â ‘" }, { "input": "turnpike's", "output": "⠞⠥⠗â â â Šâ …â ‘â „â Ž" }, { "input": "turnpikes", "output": "⠞⠥⠗â â â Šâ …â ‘â Ž" }, { "input": "turns", "output": "⠞⠥⠗â â Ž" }, { "input": "turnstile", "output": "⠞⠥⠗â â Œâ Šâ ‡â ‘" }, { "input": "turnstile's", "output": "⠞⠥⠗â â Œâ Šâ ‡â ‘â „â Ž" }, { "input": "turnstiles", "output": "⠞⠥⠗â â Œâ Šâ ‡â ‘â Ž" }, { "input": "turntable", "output": "⠞⠥⠗â â žâ â ¼" }, { "input": "turntable's", "output": "⠞⠥⠗â â žâ â ¼â „â Ž" }, { "input": "turntables", "output": "⠞⠥⠗â â žâ â ¼â Ž" }, { "input": "turpentine", "output": "⠞⠥⠗â â ¢â žâ ”â ‘" }, { "input": "turpentine's", "output": "⠞⠥⠗â â ¢â žâ ”â ‘â „â Ž" }, { "input": "turpitude", "output": "⠞⠥⠗â â Šâ žâ ¥â ™â ‘" }, { "input": "turpitude's", "output": "⠞⠥⠗â â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "turquoise", "output": "⠞⠥⠗⠟⠥⠕⠊⠎⠑" }, { "input": "turquoise's", "output": "⠞⠥⠗⠟⠥⠕⠊⠎⠑⠄⠎" }, { "input": "turquoises", "output": "⠞⠥⠗⠟⠥⠕⠊⠎⠑⠎" }, { "input": "turret", "output": "⠞⠥⠗⠗⠑⠞" }, { "input": "turret's", "output": "⠞⠥⠗⠗⠑⠞⠄⠎" }, { "input": "turrets", "output": "⠞⠥⠗⠗⠑⠞⠎" }, { "input": "turtle", "output": "⠞⠥⠗⠞⠇⠑" }, { "input": "turtle's", "output": "⠞⠥⠗⠞⠇⠑⠄⠎" }, { "input": "turtledove", "output": "⠞⠥⠗⠞⠇⠑⠙⠕⠧⠑" }, { "input": "turtledove's", "output": "⠞⠥⠗⠞⠇⠑⠙⠕⠧⠑⠄⠎" }, { "input": "turtledoves", "output": "⠞⠥⠗⠞⠇⠑⠙⠕⠧⠑⠎" }, { "input": "turtleneck", "output": "⠞⠥⠗⠞⠇⠑â â ‘⠉⠅" }, { "input": "turtleneck's", "output": "⠞⠥⠗⠞⠇⠑â â ‘⠉⠅⠄⠎" }, { "input": "turtlenecked", "output": "⠞⠥⠗⠞⠇⠑â â ‘⠉⠅⠫" }, { "input": "turtlenecks", "output": "⠞⠥⠗⠞⠇⠑â â ‘⠉⠅⠎" }, { "input": "turtles", "output": "⠞⠥⠗⠞⠇⠑⠎" }, { "input": "tush", "output": "⠞⠥⠩" }, { "input": "tush's", "output": "⠞⠥⠩⠄⠎" }, { "input": "tushes", "output": "⠞⠥⠩⠑⠎" }, { "input": "tusk", "output": "⠞⠥⠎⠅" }, { "input": "tusk's", "output": "⠞⠥⠎⠅⠄⠎" }, { "input": "tusked", "output": "⠞⠥⠎⠅⠫" }, { "input": "tusks", "output": "⠞⠥⠎⠅⠎" }, { "input": "tussle", "output": "⠞⠥⠎⠎⠇⠑" }, { "input": "tussle's", "output": "⠞⠥⠎⠎⠇⠑⠄⠎" }, { "input": "tussled", "output": "⠞⠥⠎⠎⠇⠫" }, { "input": "tussles", "output": "⠞⠥⠎⠎⠇⠑⠎" }, { "input": "tussling", "output": "⠞⠥⠎⠎⠇⠌" }, { "input": "tussock", "output": "⠞⠥⠎⠎⠕⠉⠅" }, { "input": "tussock's", "output": "⠞⠥⠎⠎⠕⠉⠅⠄⠎" }, { "input": "tussocks", "output": "⠞⠥⠎⠎⠕⠉⠅⠎" }, { "input": "tussocky", "output": "⠞⠥⠎⠎⠕⠉⠅⠽" }, { "input": "tutelage", "output": "⠞⠥⠞⠑⠇â â ›â ‘" }, { "input": "tutelage's", "output": "⠞⠥⠞⠑⠇â â ›â ‘â „â Ž" }, { "input": "tutelary", "output": "⠞⠥⠞⠑⠇⠜⠽" }, { "input": "tutor", "output": "⠞⠥⠞⠕⠗" }, { "input": "tutor's", "output": "⠞⠥⠞⠕⠗⠄⠎" }, { "input": "tutored", "output": "⠞⠥⠞⠕⠗⠫" }, { "input": "tutorial", "output": "⠞⠥⠞⠕⠗⠊â â ‡" }, { "input": "tutorial's", "output": "⠞⠥⠞⠕⠗⠊â â ‡â „â Ž" }, { "input": "tutorials", "output": "⠞⠥⠞⠕⠗⠊â â ‡â Ž" }, { "input": "tutoring", "output": "⠞⠥⠞⠕⠗⠌" }, { "input": "tutors", "output": "⠞⠥⠞⠕⠗⠎" }, { "input": "tutorship", "output": "⠞⠥⠞⠕⠗⠩⠊â " }, { "input": "tutorship's", "output": "⠞⠥⠞⠕⠗⠩⠊â â „â Ž" }, { "input": "tutti", "output": "⠞⠥⠞⠞⠊" }, { "input": "tutti's", "output": "⠞⠥⠞⠞⠊⠄⠎" }, { "input": "tuttis", "output": "⠞⠥⠞⠞⠊⠎" }, { "input": "tutu", "output": "⠞⠥⠞⠥" }, { "input": "tutu's", "output": "⠞⠥⠞⠥⠄⠎" }, { "input": "tutus", "output": "⠞⠥⠞⠥⠎" }, { "input": "tux", "output": "⠞⠥⠭" }, { "input": "tux's", "output": "⠞⠥⠭⠄⠎" }, { "input": "tuxedo", "output": "⠞⠥⠭⠫⠕" }, { "input": "tuxedo's", "output": "⠞⠥⠭⠫⠕⠄⠎" }, { "input": "tuxedos", "output": "⠞⠥⠭⠫⠕⠎" }, { "input": "tuxes", "output": "⠞⠥⠭⠑⠎" }, { "input": "twaddle", "output": "â žâ ºâ â ²â ‡â ‘" }, { "input": "twaddle's", "output": "â žâ ºâ â ²â ‡â ‘â „â Ž" }, { "input": "twaddled", "output": "â žâ ºâ â ²â ‡â «" }, { "input": "twaddler", "output": "â žâ ºâ â ²â ‡â »" }, { "input": "twaddler's", "output": "â žâ ºâ â ²â ‡â »â „â Ž" }, { "input": "twaddlers", "output": "â žâ ºâ â ²â ‡â »â Ž" }, { "input": "twaddles", "output": "â žâ ºâ â ²â ‡â ‘â Ž" }, { "input": "twaddling", "output": "â žâ ºâ â ²â ‡â Œ" }, { "input": "twain", "output": "â žâ ºâ â ”" }, { "input": "twain's", "output": "â žâ ºâ â ”â „â Ž" }, { "input": "twang", "output": "â žâ ºâ â â ›" }, { "input": "twang's", "output": "â žâ ºâ â â ›â „â Ž" }, { "input": "twanged", "output": "â žâ ºâ â â ›â «" }, { "input": "twangier", "output": "â žâ ºâ â â ›â Šâ »" }, { "input": "twangiest", "output": "â žâ ºâ â â ›â Šâ ‘â Œ" }, { "input": "twanging", "output": "â žâ ºâ â â ›â Œ" }, { "input": "twangs", "output": "â žâ ºâ â â ›â Ž" }, { "input": "twangy", "output": "â žâ ºâ â â ›â ½" }, { "input": "twas", "output": "â žâ ºâ â Ž" }, { "input": "tweak", "output": "⠞⠺⠂⠅" }, { "input": "tweak's", "output": "⠞⠺⠂⠅⠄⠎" }, { "input": "tweaked", "output": "⠞⠺⠂⠅⠫" }, { "input": "tweaking", "output": "⠞⠺⠂⠅⠌" }, { "input": "tweaks", "output": "⠞⠺⠂⠅⠎" }, { "input": "twee", "output": "⠞⠺⠑⠑" }, { "input": "tweed", "output": "⠞⠺⠑⠫" }, { "input": "tweed's", "output": "⠞⠺⠑⠫⠄⠎" }, { "input": "tweedier", "output": "⠞⠺⠑⠫⠊⠻" }, { "input": "tweediest", "output": "⠞⠺⠑⠫⠊⠑⠌" }, { "input": "tweeds", "output": "⠞⠺⠑⠫⠎" }, { "input": "tweeds's", "output": "⠞⠺⠑⠫⠎⠄⠎" }, { "input": "tweedy", "output": "⠞⠺⠑⠫⠽" }, { "input": "tween", "output": "⠞⠺⠑⠢" }, { "input": "tweet", "output": "⠞⠺⠑⠑⠞" }, { "input": "tweet's", "output": "⠞⠺⠑⠑⠞⠄⠎" }, { "input": "tweeted", "output": "⠞⠺⠑⠑⠞⠫" }, { "input": "tweeter", "output": "⠞⠺⠑⠑⠞⠻" }, { "input": "tweeter's", "output": "⠞⠺⠑⠑⠞⠻⠄⠎" }, { "input": "tweeters", "output": "⠞⠺⠑⠑⠞⠻⠎" }, { "input": "tweeting", "output": "⠞⠺⠑⠑⠞⠌" }, { "input": "tweets", "output": "⠞⠺⠑⠑⠞⠎" }, { "input": "tweezers", "output": "⠞⠺⠑⠑⠵⠻⠎" }, { "input": "tweezers's", "output": "⠞⠺⠑⠑⠵⠻⠎⠄⠎" }, { "input": "twelfth", "output": "⠞⠺⠑⠇⠋⠹" }, { "input": "twelfth's", "output": "⠞⠺⠑⠇⠋⠹⠄⠎" }, { "input": "twelfths", "output": "⠞⠺⠑⠇⠋⠹⠎" }, { "input": "twelve", "output": "⠞⠺⠑⠇⠧⠑" }, { "input": "twelve's", "output": "⠞⠺⠑⠇⠧⠑⠄⠎" }, { "input": "twelvemonth", "output": "⠞⠺⠑⠇⠧⠑â â •â â ¹" }, { "input": "twelvemonth's", "output": "⠞⠺⠑⠇⠧⠑â â •â â ¹â „â Ž" }, { "input": "twelvemonths", "output": "⠞⠺⠑⠇⠧⠑â â •â â ¹â Ž" }, { "input": "twelves", "output": "⠞⠺⠑⠇⠧⠑⠎" }, { "input": "twenties", "output": "⠞⠺⠢⠞⠊⠑⠎" }, { "input": "twentieth", "output": "⠞⠺⠢⠞⠊⠑⠹" }, { "input": "twentieth's", "output": "⠞⠺⠢⠞⠊⠑⠹⠄⠎" }, { "input": "twentieths", "output": "⠞⠺⠢⠞⠊⠑⠹⠎" }, { "input": "twenty", "output": "⠞⠺⠢⠞⠽" }, { "input": "twenty's", "output": "⠞⠺⠢⠞⠽⠄⠎" }, { "input": "twerp", "output": "⠞⠺⠻â " }, { "input": "twerp's", "output": "⠞⠺⠻â â „â Ž" }, { "input": "twerps", "output": "⠞⠺⠻â â Ž" }, { "input": "twice", "output": "⠞⠺⠊⠉⠑" }, { "input": "twiddle", "output": "⠞⠺⠊⠲⠇⠑" }, { "input": "twiddle's", "output": "⠞⠺⠊⠲⠇⠑⠄⠎" }, { "input": "twiddled", "output": "⠞⠺⠊⠲⠇⠫" }, { "input": "twiddles", "output": "⠞⠺⠊⠲⠇⠑⠎" }, { "input": "twiddlier", "output": "⠞⠺⠊⠲⠇⠊⠻" }, { "input": "twiddliest", "output": "⠞⠺⠊⠲⠇⠊⠑⠌" }, { "input": "twiddling", "output": "⠞⠺⠊⠲⠇⠌" }, { "input": "twig", "output": "⠞⠺⠊⠛" }, { "input": "twig's", "output": "⠞⠺⠊⠛⠄⠎" }, { "input": "twigged", "output": "⠞⠺⠊⠶⠫" }, { "input": "twiggier", "output": "⠞⠺⠊⠶⠊⠻" }, { "input": "twiggiest", "output": "⠞⠺⠊⠶⠊⠑⠌" }, { "input": "twigging", "output": "⠞⠺⠊⠶⠌" }, { "input": "twiggy", "output": "⠞⠺⠊⠶⠽" }, { "input": "twigs", "output": "⠞⠺⠊⠛⠎" }, { "input": "twilight", "output": "⠞⠺⠊⠇⠊⠣⠞" }, { "input": "twilight's", "output": "⠞⠺⠊⠇⠊⠣⠞⠄⠎" }, { "input": "twill", "output": "⠞⠺⠊⠇⠇" }, { "input": "twill's", "output": "⠞⠺⠊⠇⠇⠄⠎" }, { "input": "twilled", "output": "⠞⠺⠊⠇⠇⠫" }, { "input": "twin", "output": "⠞⠺⠔" }, { "input": "twin's", "output": "⠞⠺⠔⠄⠎" }, { "input": "twine", "output": "⠞⠺⠔⠑" }, { "input": "twine's", "output": "⠞⠺⠔⠑⠄⠎" }, { "input": "twined", "output": "⠞⠺⠔⠫" }, { "input": "twiner", "output": "⠞⠺⠔⠻" }, { "input": "twiner's", "output": "⠞⠺⠔⠻⠄⠎" }, { "input": "twiners", "output": "⠞⠺⠔⠻⠎" }, { "input": "twines", "output": "⠞⠺⠔⠑⠎" }, { "input": "twinge", "output": "⠞⠺⠌⠑" }, { "input": "twinge's", "output": "⠞⠺⠌⠑⠄⠎" }, { "input": "twinged", "output": "⠞⠺⠌⠫" }, { "input": "twinges", "output": "⠞⠺⠌⠑⠎" }, { "input": "twinging", "output": "⠞⠺⠌⠌" }, { "input": "twining", "output": "⠞⠺⠔⠌" }, { "input": "twinkle", "output": "⠞⠺⠔⠅⠇⠑" }, { "input": "twinkle's", "output": "⠞⠺⠔⠅⠇⠑⠄⠎" }, { "input": "twinkled", "output": "⠞⠺⠔⠅⠇⠫" }, { "input": "twinkles", "output": "⠞⠺⠔⠅⠇⠑⠎" }, { "input": "twinkling", "output": "⠞⠺⠔⠅⠇⠌" }, { "input": "twinkling's", "output": "⠞⠺⠔⠅⠇⠌⠄⠎" }, { "input": "twinklings", "output": "⠞⠺⠔⠅⠇⠌⠎" }, { "input": "twinkly", "output": "⠞⠺⠔⠅⠇⠽" }, { "input": "twinned", "output": "⠞⠺⠔â â «" }, { "input": "twinning", "output": "⠞⠺⠔â â Œ" }, { "input": "twins", "output": "⠞⠺⠔⠎" }, { "input": "twirl", "output": "⠞⠺⠊⠗⠇" }, { "input": "twirl's", "output": "⠞⠺⠊⠗⠇⠄⠎" }, { "input": "twirled", "output": "⠞⠺⠊⠗⠇⠫" }, { "input": "twirler", "output": "⠞⠺⠊⠗⠇⠻" }, { "input": "twirler's", "output": "⠞⠺⠊⠗⠇⠻⠄⠎" }, { "input": "twirlers", "output": "⠞⠺⠊⠗⠇⠻⠎" }, { "input": "twirlier", "output": "⠞⠺⠊⠗⠇⠊⠻" }, { "input": "twirliest", "output": "⠞⠺⠊⠗⠇⠊⠑⠌" }, { "input": "twirling", "output": "⠞⠺⠊⠗⠇⠌" }, { "input": "twirls", "output": "⠞⠺⠊⠗⠇⠎" }, { "input": "twist", "output": "⠞⠺⠊⠌" }, { "input": "twist's", "output": "⠞⠺⠊⠌⠄⠎" }, { "input": "twisted", "output": "⠞⠺⠊⠌⠫" }, { "input": "twister", "output": "⠞⠺⠊⠌⠻" }, { "input": "twister's", "output": "⠞⠺⠊⠌⠻⠄⠎" }, { "input": "twisters", "output": "⠞⠺⠊⠌⠻⠎" }, { "input": "twistier", "output": "⠞⠺⠊⠌⠊⠻" }, { "input": "twistiest", "output": "⠞⠺⠊⠌⠊⠑⠌" }, { "input": "twisting", "output": "⠞⠺⠊⠌⠌" }, { "input": "twists", "output": "⠞⠺⠊⠌⠎" }, { "input": "twit", "output": "⠞⠺⠊⠞" }, { "input": "twit's", "output": "⠞⠺⠊⠞⠄⠎" }, { "input": "twitch", "output": "⠞⠺⠊⠞⠡" }, { "input": "twitch's", "output": "⠞⠺⠊⠞⠡⠄⠎" }, { "input": "twitched", "output": "⠞⠺⠊⠞⠡⠫" }, { "input": "twitches", "output": "⠞⠺⠊⠞⠡⠑⠎" }, { "input": "twitching", "output": "⠞⠺⠊⠞⠡⠌" }, { "input": "twits", "output": "⠞⠺⠊⠞⠎" }, { "input": "twitted", "output": "⠞⠺⠊⠞⠞⠫" }, { "input": "twitter", "output": "⠞⠺⠊⠞⠞⠻" }, { "input": "twitter's", "output": "⠞⠺⠊⠞⠞⠻⠄⠎" }, { "input": "twittered", "output": "⠞⠺⠊⠞⠞⠻⠫" }, { "input": "twittering", "output": "⠞⠺⠊⠞⠞⠻⠌" }, { "input": "twitters", "output": "⠞⠺⠊⠞⠞⠻⠎" }, { "input": "twittery", "output": "⠞⠺⠊⠞⠞⠻⠽" }, { "input": "twitting", "output": "⠞⠺⠊⠞⠞⠌" }, { "input": "two", "output": "⠞⠺⠕" }, { "input": "two's", "output": "⠞⠺⠕⠄⠎" }, { "input": "twofer", "output": "⠞⠺⠕⠋⠻" }, { "input": "twofer's", "output": "⠞⠺⠕⠋⠻⠄⠎" }, { "input": "twofers", "output": "⠞⠺⠕⠋⠻⠎" }, { "input": "twofold", "output": "⠞⠺⠕⠋⠕⠇⠙" }, { "input": "twos", "output": "⠞⠺⠕⠎" }, { "input": "twosome", "output": "⠞⠺⠕â â Ž" }, { "input": "twosome's", "output": "⠞⠺⠕â â Žâ „â Ž" }, { "input": "twosomes", "output": "⠞⠺⠕â â Žâ Ž" }, { "input": "tycoon", "output": "⠞⠽⠉⠕⠕â " }, { "input": "tycoon's", "output": "⠞⠽⠉⠕⠕â â „â Ž" }, { "input": "tycoons", "output": "⠞⠽⠉⠕⠕â â Ž" }, { "input": "tying", "output": "⠞⠽⠌" }, { "input": "tyke", "output": "⠞⠽⠅⠑" }, { "input": "tyke's", "output": "⠞⠽⠅⠑⠄⠎" }, { "input": "tykes", "output": "⠞⠽⠅⠑⠎" }, { "input": "tympani", "output": "â žâ ½â â â â â Š" }, { "input": "tympani's", "output": "â žâ ½â â â â â Šâ „â Ž" }, { "input": "tympanist", "output": "â žâ ½â â â â â Šâ Œ" }, { "input": "tympanist's", "output": "â žâ ½â â â â â Šâ Œâ „â Ž" }, { "input": "tympanists", "output": "â žâ ½â â â â â Šâ Œâ Ž" }, { "input": "tympanum", "output": "â žâ ½â â â â â ¥â " }, { "input": "tympanum's", "output": "â žâ ½â â â â â ¥â â „â Ž" }, { "input": "tympanums", "output": "â žâ ½â â â â â ¥â â Ž" }, { "input": "type", "output": "â žâ ½â â ‘" }, { "input": "type's", "output": "â žâ ½â â ‘â „â Ž" }, { "input": "typecast", "output": "â žâ ½â â ‘â ‰â â Œ" }, { "input": "typecasting", "output": "â žâ ½â â ‘â ‰â â Œâ Œ" }, { "input": "typecasts", "output": "â žâ ½â â ‘â ‰â â Œâ Ž" }, { "input": "typed", "output": "â žâ ½â â «" }, { "input": "typeface", "output": "â žâ ½â â ‘â ‹â â ‰â ‘" }, { "input": "typeface's", "output": "â žâ ½â â ‘â ‹â â ‰â ‘â „â Ž" }, { "input": "typefaces", "output": "â žâ ½â â ‘â ‹â â ‰â ‘â Ž" }, { "input": "types", "output": "â žâ ½â â ‘â Ž" }, { "input": "typescript", "output": "â žâ ½â â ‘⠎⠉⠗⠊â â ž" }, { "input": "typescript's", "output": "â žâ ½â â ‘⠎⠉⠗⠊â â žâ „â Ž" }, { "input": "typescripts", "output": "â žâ ½â â ‘⠎⠉⠗⠊â â žâ Ž" }, { "input": "typeset", "output": "â žâ ½â â ‘â Žâ ‘â ž" }, { "input": "typesets", "output": "â žâ ½â â ‘â Žâ ‘â žâ Ž" }, { "input": "typesetter", "output": "â žâ ½â â ‘â Žâ ‘â žâ žâ »" }, { "input": "typesetter's", "output": "â žâ ½â â ‘⠎⠑⠞⠞⠻⠄⠎" }, { "input": "typesetters", "output": "â žâ ½â â ‘⠎⠑⠞⠞⠻⠎" }, { "input": "typesetting", "output": "â žâ ½â â ‘â Žâ ‘â žâ žâ Œ" }, { "input": "typesetting's", "output": "â žâ ½â â ‘⠎⠑⠞⠞⠌⠄⠎" }, { "input": "typewrite", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠑" }, { "input": "typewriter", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠻" }, { "input": "typewriter's", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠻⠄⠎" }, { "input": "typewriters", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠻⠎" }, { "input": "typewrites", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠑⠎" }, { "input": "typewriting", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠌" }, { "input": "typewriting's", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠌⠄⠎" }, { "input": "typewritten", "output": "â žâ ½â â ‘⠺⠗⠊⠞⠞⠢" }, { "input": "typewrote", "output": "â žâ ½â â ‘⠺⠗⠕⠞⠑" }, { "input": "typhoid", "output": "â žâ ½â â “â •â Šâ ™" }, { "input": "typhoid's", "output": "â žâ ½â â “⠕⠊⠙⠄⠎" }, { "input": "typhoon", "output": "â žâ ½â â “â •â •â " }, { "input": "typhoon's", "output": "â žâ ½â â “â •â •â â „â Ž" }, { "input": "typhoons", "output": "â žâ ½â â “â •â •â â Ž" }, { "input": "typhus", "output": "â žâ ½â â “⠥⠎" }, { "input": "typhus's", "output": "â žâ ½â â “⠥⠎⠄⠎" }, { "input": "typical", "output": "â žâ ½â â Šâ ‰â â ‡" }, { "input": "typicality", "output": "â žâ ½â â Šâ ‰â â ‡â °â ½" }, { "input": "typicality's", "output": "â žâ ½â â Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "typically", "output": "â žâ ½â â Šâ ‰â  â ½" }, { "input": "typification", "output": "â žâ ½â â Šâ ‹â Šâ ‰â  â " }, { "input": "typification's", "output": "â žâ ½â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "typified", "output": "â žâ ½â â Šâ ‹â Šâ «" }, { "input": "typifies", "output": "â žâ ½â â Šâ ‹â Šâ ‘â Ž" }, { "input": "typify", "output": "â žâ ½â â Šâ ‹â ½" }, { "input": "typifying", "output": "â žâ ½â â Šâ ‹â ½â Œ" }, { "input": "typing", "output": "â žâ ½â â Œ" }, { "input": "typing's", "output": "â žâ ½â â Œâ „â Ž" }, { "input": "typist", "output": "â žâ ½â â Šâ Œ" }, { "input": "typist's", "output": "â žâ ½â â Šâ Œâ „â Ž" }, { "input": "typists", "output": "â žâ ½â â Šâ Œâ Ž" }, { "input": "typo", "output": "â žâ ½â â •" }, { "input": "typo's", "output": "â žâ ½â â •â „â Ž" }, { "input": "typographer", "output": "â žâ ½â â •⠛⠗â â â “â »" }, { "input": "typographer's", "output": "â žâ ½â â •⠛⠗â â â “⠻⠄⠎" }, { "input": "typographers", "output": "â žâ ½â â •⠛⠗â â â “⠻⠎" }, { "input": "typographic", "output": "â žâ ½â â •⠛⠗â â â “â Šâ ‰" }, { "input": "typographical", "output": "â žâ ½â â •⠛⠗â â â “â Šâ ‰â â ‡" }, { "input": "typographically", "output": "â žâ ½â â •⠛⠗â â â “⠊⠉⠠⠽" }, { "input": "typography", "output": "â žâ ½â â •⠛⠗â â â “â ½" }, { "input": "typography's", "output": "â žâ ½â â •⠛⠗â â â “⠽⠄⠎" }, { "input": "typology's", "output": "â žâ ½â â •⠇⠕⠛⠽⠄⠎" }, { "input": "typos", "output": "â žâ ½â â •â Ž" }, { "input": "tyrannic", "output": "⠞⠽⠗â â â â Šâ ‰" }, { "input": "tyrannical", "output": "⠞⠽⠗â â â â Šâ ‰â â ‡" }, { "input": "tyrannically", "output": "⠞⠽⠗â â â â Šâ ‰â  â ½" }, { "input": "tyrannies", "output": "⠞⠽⠗â â â â Šâ ‘â Ž" }, { "input": "tyrannize", "output": "⠞⠽⠗â â â â Šâ µâ ‘" }, { "input": "tyrannized", "output": "⠞⠽⠗â â â â Šâ µâ «" }, { "input": "tyrannizes", "output": "⠞⠽⠗â â â â Šâ µâ ‘â Ž" }, { "input": "tyrannizing", "output": "⠞⠽⠗â â â â Šâ µâ Œ" }, { "input": "tyrannosaur", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —" }, { "input": "tyrannosaur's", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —â „â Ž" }, { "input": "tyrannosaurs", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —â Ž" }, { "input": "tyrannosaurus", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —⠥⠎" }, { "input": "tyrannosaurus's", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —⠥⠎⠄⠎" }, { "input": "tyrannosauruses", "output": "⠞⠽⠗â â â â •â Žâ â ¥â —⠥⠎⠑⠎" }, { "input": "tyrannous", "output": "⠞⠽⠗â â â â ³â Ž" }, { "input": "tyranny", "output": "⠞⠽⠗â â â â ½" }, { "input": "tyranny's", "output": "⠞⠽⠗â â â â ½â „â Ž" }, { "input": "tyrant", "output": "⠞⠽⠗â â â ž" }, { "input": "tyrant's", "output": "⠞⠽⠗â â â žâ „â Ž" }, { "input": "tyrants", "output": "⠞⠽⠗â â â žâ Ž" }, { "input": "tyro", "output": "⠞⠽⠗⠕" }, { "input": "tyro's", "output": "⠞⠽⠗⠕⠄⠎" }, { "input": "tyros", "output": "⠞⠽⠗⠕⠎" }, { "input": "u", "output": "â °â ¥" }, { "input": "ubiquitous", "output": "⠥⠃⠊⠟⠥⠊⠞⠳⠎" }, { "input": "ubiquitously", "output": "⠥⠃⠊⠟⠥⠊⠞⠳⠎⠇⠽" }, { "input": "ubiquity", "output": "⠥⠃⠊⠟⠥⠰⠽" }, { "input": "ubiquity's", "output": "⠥⠃⠊⠟⠥⠰⠽⠄⠎" }, { "input": "udder", "output": "⠥⠲⠻" }, { "input": "udder's", "output": "⠥⠲⠻⠄⠎" }, { "input": "udders", "output": "⠥⠲⠻⠎" }, { "input": "ufologist", "output": "⠥⠋⠕⠇⠕⠛⠊⠌" }, { "input": "ufologist's", "output": "⠥⠋⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "ufologists", "output": "⠥⠋⠕⠇⠕⠛⠊⠌⠎" }, { "input": "ufology", "output": "⠥⠋⠕⠇⠕⠛⠽" }, { "input": "ufology's", "output": "⠥⠋⠕⠇⠕⠛⠽⠄⠎" }, { "input": "ugh", "output": "⠥⠣" }, { "input": "uglier", "output": "⠥⠛⠇⠊⠻" }, { "input": "ugliest", "output": "⠥⠛⠇⠊⠑⠌" }, { "input": "ugliness", "output": "⠥⠛⠇⠊⠰⠎" }, { "input": "ugliness's", "output": "⠥⠛⠇⠊⠰⠎⠄⠎" }, { "input": "ugly", "output": "⠥⠛⠇⠽" }, { "input": "uh", "output": "⠥⠓" }, { "input": "ukase", "output": "⠥⠅â â Žâ ‘" }, { "input": "ukase's", "output": "⠥⠅â â Žâ ‘â „â Ž" }, { "input": "ukases", "output": "⠥⠅â â Žâ ‘â Ž" }, { "input": "ukulele", "output": "⠥⠅⠥⠇⠑⠇⠑" }, { "input": "ukulele's", "output": "⠥⠅⠥⠇⠑⠇⠑⠄⠎" }, { "input": "ukuleles", "output": "⠥⠅⠥⠇⠑⠇⠑⠎" }, { "input": "ulcer", "output": "⠥⠇⠉⠻" }, { "input": "ulcer's", "output": "⠥⠇⠉⠻⠄⠎" }, { "input": "ulcerate", "output": "⠥⠇⠉⠻â â žâ ‘" }, { "input": "ulcerated", "output": "⠥⠇⠉⠻â â žâ «" }, { "input": "ulcerates", "output": "⠥⠇⠉⠻â â žâ ‘â Ž" }, { "input": "ulcerating", "output": "⠥⠇⠉⠻â â žâ Œ" }, { "input": "ulceration", "output": "⠥⠇⠉⠻⠠â " }, { "input": "ulceration's", "output": "⠥⠇⠉⠻⠠â â „â Ž" }, { "input": "ulcerous", "output": "⠥⠇⠉⠻⠳⠎" }, { "input": "ulcers", "output": "⠥⠇⠉⠻⠎" }, { "input": "ulna", "output": "⠥⠇â â " }, { "input": "ulna's", "output": "⠥⠇â â â „â Ž" }, { "input": "ulnae", "output": "⠥⠇â â â ‘" }, { "input": "ulnar", "output": "⠥⠇â â œ" }, { "input": "ulster", "output": "⠥⠇⠌⠻" }, { "input": "ulster's", "output": "⠥⠇⠌⠻⠄⠎" }, { "input": "ulsters", "output": "⠥⠇⠌⠻⠎" }, { "input": "ulterior", "output": "⠥⠇⠞⠻⠊⠕⠗" }, { "input": "ultimate", "output": "⠥⠇⠞⠊â â â žâ ‘" }, { "input": "ultimate's", "output": "⠥⠇⠞⠊â â â žâ ‘â „â Ž" }, { "input": "ultimately", "output": "⠥⠇⠞⠊â â â žâ ‘⠇⠽" }, { "input": "ultimatum", "output": "⠥⠇⠞⠊â â â žâ ¥â " }, { "input": "ultimatum's", "output": "⠥⠇⠞⠊â â â žâ ¥â â „â Ž" }, { "input": "ultimatums", "output": "⠥⠇⠞⠊â â â žâ ¥â â Ž" }, { "input": "ultimo", "output": "⠥⠇⠞⠊â â •" }, { "input": "ultra", "output": "⠥⠇⠞⠗â " }, { "input": "ultra's", "output": "⠥⠇⠞⠗â â „â Ž" }, { "input": "ultraconservative", "output": "⠥⠇⠞⠗â â ‰â •â â Žâ »â §â â žâ Šâ §â ‘" }, { "input": "ultraconservative's", "output": "⠥⠇⠞⠗â â ‰â •â â Žâ »â §â â žâ Šâ §â ‘â „â Ž" }, { "input": "ultraconservatives", "output": "⠥⠇⠞⠗â â ‰â •â â Žâ »â §â â žâ Šâ §â ‘â Ž" }, { "input": "ultrahigh", "output": "⠥⠇⠞⠗â â “â Šâ £" }, { "input": "ultralight", "output": "⠥⠇⠞⠗â â ‡â Šâ £â ž" }, { "input": "ultralight's", "output": "⠥⠇⠞⠗â â ‡â Šâ £â žâ „â Ž" }, { "input": "ultralights", "output": "⠥⠇⠞⠗â â ‡â Šâ £â žâ Ž" }, { "input": "ultramarine", "output": "⠥⠇⠞⠗â â â œâ ”â ‘" }, { "input": "ultramarine's", "output": "⠥⠇⠞⠗â â â œâ ”â ‘â „â Ž" }, { "input": "ultramodern", "output": "⠥⠇⠞⠗â â â •⠙⠻â " }, { "input": "ultras", "output": "⠥⠇⠞⠗â â Ž" }, { "input": "ultrasonic", "output": "⠥⠇⠞⠗â â Žâ •â â Šâ ‰" }, { "input": "ultrasonically", "output": "⠥⠇⠞⠗â â Žâ •â â Šâ ‰â  â ½" }, { "input": "ultrasound", "output": "⠥⠇⠞⠗â â Žâ ¨â ™" }, { "input": "ultrasound's", "output": "⠥⠇⠞⠗â â Žâ ¨â ™â „â Ž" }, { "input": "ultrasounds", "output": "⠥⠇⠞⠗â â Žâ ¨â ™â Ž" }, { "input": "ultraviolet", "output": "⠥⠇⠞⠗â â §â Šâ •⠇⠑⠞" }, { "input": "ultraviolet's", "output": "⠥⠇⠞⠗â â §â Šâ •⠇⠑⠞⠄⠎" }, { "input": "ululate", "output": "⠥⠇⠥⠇â â žâ ‘" }, { "input": "ululated", "output": "⠥⠇⠥⠇â â žâ «" }, { "input": "ululates", "output": "⠥⠇⠥⠇â â žâ ‘â Ž" }, { "input": "ululating", "output": "⠥⠇⠥⠇â â žâ Œ" }, { "input": "um", "output": "â ¥â " }, { "input": "umbel", "output": "â ¥â â ƒâ ‘â ‡" }, { "input": "umbel's", "output": "â ¥â â ƒâ ‘⠇⠄⠎" }, { "input": "umbels", "output": "â ¥â â ƒâ ‘⠇⠎" }, { "input": "umber", "output": "â ¥â â ƒâ »" }, { "input": "umber's", "output": "â ¥â â ƒâ »â „â Ž" }, { "input": "umbilical", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â â ‡" }, { "input": "umbilici", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â Š" }, { "input": "umbilicus", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â ¥â Ž" }, { "input": "umbilicus's", "output": "â ¥â â ƒâ Šâ ‡â Šâ ‰â ¥â Žâ „â Ž" }, { "input": "umbra", "output": "â ¥â â ƒâ —â " }, { "input": "umbra's", "output": "â ¥â â ƒâ —â â „â Ž" }, { "input": "umbrage", "output": "â ¥â â ƒâ —â â ›â ‘" }, { "input": "umbrage's", "output": "â ¥â â ƒâ —â â ›â ‘â „â Ž" }, { "input": "umbras", "output": "â ¥â â ƒâ —â â Ž" }, { "input": "umbrella", "output": "â ¥â â ƒâ —⠑⠇⠇â " }, { "input": "umbrella's", "output": "â ¥â â ƒâ —⠑⠇⠇â â „â Ž" }, { "input": "umbrellas", "output": "â ¥â â ƒâ —⠑⠇⠇â â Ž" }, { "input": "umiak", "output": "â ¥â â Šâ â …" }, { "input": "umiak's", "output": "â ¥â â Šâ â …â „â Ž" }, { "input": "umiaks", "output": "â ¥â â Šâ â …â Ž" }, { "input": "umlaut", "output": "â ¥â â ‡â â ¥â ž" }, { "input": "umlaut's", "output": "â ¥â â ‡â â ¥â žâ „â Ž" }, { "input": "umlauts", "output": "â ¥â â ‡â â ¥â žâ Ž" }, { "input": "ump", "output": "â ¥â â " }, { "input": "ump's", "output": "â ¥â â â „â Ž" }, { "input": "umped", "output": "â ¥â â â «" }, { "input": "umping", "output": "â ¥â â â Œ" }, { "input": "umpire", "output": "â ¥â â â Šâ —â ‘" }, { "input": "umpire's", "output": "â ¥â â â Šâ —â ‘â „â Ž" }, { "input": "umpired", "output": "â ¥â â â Šâ —â «" }, { "input": "umpires", "output": "â ¥â â â Šâ —â ‘â Ž" }, { "input": "umpiring", "output": "â ¥â â â Šâ —â Œ" }, { "input": "umps", "output": "â ¥â â â Ž" }, { "input": "umpteen", "output": "â ¥â â â žâ ‘â ¢" }, { "input": "umpteenth", "output": "â ¥â â â žâ ‘⠢⠹" }, { "input": "unabashed", "output": "â ¥â â â ƒâ â ©â «" }, { "input": "unabashedly", "output": "â ¥â â â ƒâ â ©â «â ‡â ½" }, { "input": "unabated", "output": "â ¥â â â ƒâ â žâ «" }, { "input": "unable", "output": "â ¥â â â ¼" }, { "input": "unabridged", "output": "â ¥â â â ƒâ —⠊⠙⠛⠫" }, { "input": "unabridged's", "output": "â ¥â â â ƒâ —⠊⠙⠛⠫⠄⠎" }, { "input": "unabridgeds", "output": "â ¥â â â ƒâ —⠊⠙⠛⠫⠎" }, { "input": "unaccented", "output": "â ¥â â â ’⠢⠞⠫" }, { "input": "unacceptability", "output": "â ¥â â â ’â ‘â â žâ â ƒâ Šâ ‡â °â ½" }, { "input": "unacceptable", "output": "â ¥â â â ’â ‘â â žâ â ¼" }, { "input": "unacceptably", "output": "â ¥â â â ’â ‘â â žâ â ƒâ ‡â ½" }, { "input": "unaccepted", "output": "â ¥â â â ’â ‘â â žâ «" }, { "input": "unaccommodating", "output": "â ¥â â â ’â •â â â •â ™â â žâ Œ" }, { "input": "unaccompanied", "output": "â ¥â â â ’â •â â â â â Šâ «" }, { "input": "unaccomplished", "output": "â ¥â â â ’â •â â â ‡â Šâ ©â «" }, { "input": "unaccountable", "output": "â ¥â â â ’⠨⠞â â ¼" }, { "input": "unaccountably", "output": "â ¥â â â ’⠨⠞â â ƒâ ‡â ½" }, { "input": "unaccounted", "output": "â ¥â â â ’⠨⠞⠫" }, { "input": "unaccredited", "output": "â ¥â â â ’â —â «â Šâ žâ «" }, { "input": "unaccustomed", "output": "â ¥â â â ’⠥⠌⠕â â «" }, { "input": "unacknowledged", "output": "â ¥â â â ‰â â …⠇⠫⠛⠫" }, { "input": "unacquainted", "output": "â ¥â â â ‰â Ÿâ ¥â â ”â žâ «" }, { "input": "unadorned", "output": "â ¥â â â ™â •â —â â «" }, { "input": "unadulterated", "output": "â ¥â â â ™â ¥â ‡â žâ »â â žâ «" }, { "input": "unadventurous", "output": "â ¥â â â ™â §â ¢â žâ ¥â —⠳⠎" }, { "input": "unadvertised", "output": "â ¥â â â ™â §â »â žâ Šâ Žâ «" }, { "input": "unadvised", "output": "â ¥â â â ™â §â Šâ Žâ «" }, { "input": "unadvisedly", "output": "â ¥â â â ™â §â Šâ Žâ «â ‡â ½" }, { "input": "unaesthetic", "output": "â ¥â â â ‘⠎⠮⠞⠊⠉" }, { "input": "unaffected", "output": "â ¥â â â –⠑⠉⠞⠫" }, { "input": "unaffiliated", "output": "â ¥â â â –⠊⠇⠊â â žâ «" }, { "input": "unafraid", "output": "â ¥â â â ‹â —â â Šâ ™" }, { "input": "unaided", "output": "â ¥â â â Šâ ™â «" }, { "input": "unalienable", "output": "â ¥â â â ‡â Šâ ¢â â ¼" }, { "input": "unaligned", "output": "â ¥â â â ‡â Šâ ›â â «" }, { "input": "unalike", "output": "â ¥â â â ‡â Šâ …â ‘" }, { "input": "unalterable", "output": "â ¥â â â ‡â žâ »â â ¼" }, { "input": "unalterably", "output": "â ¥â â â ‡â žâ »â â ƒâ ‡â ½" }, { "input": "unaltered", "output": "â ¥â â â ‡â žâ »â «" }, { "input": "unambiguous", "output": "â ¥â â â â ƒâ Šâ ›â ¥â ³â Ž" }, { "input": "unambiguously", "output": "â ¥â â â â ƒâ Šâ ›â ¥â ³â Žâ ‡â ½" }, { "input": "unanimity", "output": "â ¥â â â â Šâ â °â ½" }, { "input": "unanimity's", "output": "â ¥â â â â Šâ â °â ½â „â Ž" }, { "input": "unanimous", "output": "â ¥â â â â Šâ â ³â Ž" }, { "input": "unanimously", "output": "â ¥â â â â Šâ â ³â Žâ ‡â ½" }, { "input": "unannounced", "output": "â ¥â â â â â ³â â ‰â «" }, { "input": "unanswerable", "output": "â ¥â â â â Žâ ºâ »â â ¼" }, { "input": "unanswered", "output": "â ¥â â â â Žâ ºâ »â «" }, { "input": "unanticipated", "output": "â ¥â â â â žâ Šâ ‰â Šâ â â žâ «" }, { "input": "unapparent", "output": "â ¥â â â â â œâ ¢â ž" }, { "input": "unappealing", "output": "â ¥â â â â â ‚⠇⠌" }, { "input": "unappealingly", "output": "â ¥â â â â â ‚⠇⠌⠇⠽" }, { "input": "unappetizing", "output": "â ¥â â â â â ‘⠞⠊⠵⠌" }, { "input": "unappreciated", "output": "â ¥â â â â â —⠑⠉⠊â â žâ «" }, { "input": "unappreciative", "output": "â ¥â â â â â —⠑⠉⠊â â žâ Šâ §â ‘" }, { "input": "unapproachable", "output": "â ¥â â â â â —â •â â ¡â â ¼" }, { "input": "unappropriated", "output": "â ¥â â â â â —â •â â —â Šâ â žâ «" }, { "input": "unapproved", "output": "â ¥â â â â â —â •â §â «" }, { "input": "unarmed", "output": "â ¥â â œâ â «" }, { "input": "unarmored", "output": "â ¥â â œâ â •â —â «" }, { "input": "unashamed", "output": "â ¥â â â ©â â â «" }, { "input": "unashamedly", "output": "â ¥â â â ©â â â «â ‡â ½" }, { "input": "unasked", "output": "â ¥â â â Žâ …â «" }, { "input": "unassailable", "output": "â ¥â â â Žâ Žâ â Šâ ‡â â ¼" }, { "input": "unassertive", "output": "â ¥â â â Žâ Žâ »â žâ Šâ §â ‘" }, { "input": "unassigned", "output": "â ¥â â â Žâ Žâ Šâ ›â â «" }, { "input": "unassisted", "output": "â ¥â â â Žâ Žâ Šâ Œâ «" }, { "input": "unassuming", "output": "â ¥â â â Žâ Žâ ¥â â Œ" }, { "input": "unassumingly", "output": "â ¥â â â Žâ Žâ ¥â â Œâ ‡â ½" }, { "input": "unattached", "output": "â ¥â â â žâ žâ â ¡â «" }, { "input": "unattainable", "output": "â ¥â â â žâ žâ â ”â â ¼" }, { "input": "unattended", "output": "â ¥â â â žâ žâ ¢â ™â «" }, { "input": "unattested", "output": "â ¥â â â žâ žâ ‘⠌⠫" }, { "input": "unattractive", "output": "â ¥â â â žâ žâ —â â ‰â žâ Šâ §â ‘" }, { "input": "unattributed", "output": "â ¥â â â žâ žâ —⠊⠃⠥⠞⠫" }, { "input": "unauthentic", "output": "â ¥â â â ¥â ®â â žâ Šâ ‰" }, { "input": "unauthenticated", "output": "â ¥â â â ¥â ®â â žâ Šâ ‰â â žâ «" }, { "input": "unauthorized", "output": "â ¥â â â ¥â ¹â •⠗⠊⠵⠫" }, { "input": "unavailability", "output": "â ¥â â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½" }, { "input": "unavailability's", "output": "â ¥â â â §â â Šâ ‡â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "unavailable", "output": "â ¥â â â §â â Šâ ‡â â ¼" }, { "input": "unavailing", "output": "â ¥â â â §â â Šâ ‡â Œ" }, { "input": "unavailingly", "output": "â ¥â â â §â â Šâ ‡â Œâ ‡â ½" }, { "input": "unavoidable", "output": "â ¥â â â §â •â Šâ ™â â ¼" }, { "input": "unavoidably", "output": "â ¥â â â §â •â Šâ ™â â ƒâ ‡â ½" }, { "input": "unaware", "output": "â ¥â â â ºâ œâ ‘" }, { "input": "unawareness's", "output": "â ¥â â â ºâ œâ ‘â °â Žâ „â Ž" }, { "input": "unawares", "output": "â ¥â â â ºâ œâ ‘â Ž" }, { "input": "unbaked", "output": "â ¥â â ƒâ â …â «" }, { "input": "unbalanced", "output": "â ¥â â ƒâ â ‡â ¨â ‘â ™" }, { "input": "unbaptized", "output": "â ¥â â ƒâ â â žâ Šâ µâ «" }, { "input": "unbar", "output": "â ¥â â ƒâ œ" }, { "input": "unbarred", "output": "â ¥â â ƒâ œâ —â «" }, { "input": "unbarring", "output": "â ¥â â ƒâ œâ —â Œ" }, { "input": "unbars", "output": "â ¥â â ƒâ œâ Ž" }, { "input": "unbearable", "output": "â ¥â â ƒâ ‘â œâ â ¼" }, { "input": "unbearably", "output": "â ¥â â ƒâ ‘â œâ â ƒâ ‡â ½" }, { "input": "unbeatable", "output": "â ¥â â ƒâ ‚â žâ â ¼" }, { "input": "unbeaten", "output": "â ¥â â ƒâ ‚â žâ ¢" }, { "input": "unbecoming", "output": "â ¥â â ƒâ ‘⠉⠕â â Œ" }, { "input": "unbecomingly", "output": "â ¥â â ƒâ ‘⠉⠕â â Œâ ‡â ½" }, { "input": "unbeknownst", "output": "â ¥â â ƒâ ‘â â …â â Œ" }, { "input": "unbelief", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠋" }, { "input": "unbelief's", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠋⠄⠎" }, { "input": "unbelievable", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧â â ¼" }, { "input": "unbelievably", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧â â ƒâ ‡â ½" }, { "input": "unbeliever", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧⠻" }, { "input": "unbeliever's", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧⠻⠄⠎" }, { "input": "unbelievers", "output": "â ¥â â ƒâ ‘⠇⠊⠑⠧⠻⠎" }, { "input": "unbend", "output": "â ¥â â ƒâ ¢â ™" }, { "input": "unbending", "output": "â ¥â â ƒâ ¢â ™â Œ" }, { "input": "unbends", "output": "â ¥â â ƒâ ¢â ™â Ž" }, { "input": "unbent", "output": "â ¥â â ƒâ ¢â ž" }, { "input": "unbiased", "output": "â ¥â â ƒâ Šâ â Žâ «" }, { "input": "unbid", "output": "â ¥â â ƒâ Šâ ™" }, { "input": "unbidden", "output": "â ¥â â ƒâ Šâ ²â ¢" }, { "input": "unbind", "output": "â ¥â â ƒâ ”â ™" }, { "input": "unbinding", "output": "â ¥â â ƒâ ”⠙⠌" }, { "input": "unbinds", "output": "â ¥â â ƒâ ”⠙⠎" }, { "input": "unblock", "output": "â ¥â â ƒâ ‡â •⠉⠅" }, { "input": "unblocked", "output": "â ¥â â ƒâ ‡â •⠉⠅⠫" }, { "input": "unblocking", "output": "â ¥â â ƒâ ‡â •⠉⠅⠌" }, { "input": "unblocks", "output": "â ¥â â ƒâ ‡â •⠉⠅⠎" }, { "input": "unblushing", "output": "â ¥â â ƒâ ‡â ¥â ©â Œ" }, { "input": "unblushingly", "output": "â ¥â â ƒâ ‡â ¥â ©â Œâ ‡â ½" }, { "input": "unbolt", "output": "â ¥â â ƒâ •⠇⠞" }, { "input": "unbolted", "output": "â ¥â â ƒâ •⠇⠞⠫" }, { "input": "unbolting", "output": "â ¥â â ƒâ •⠇⠞⠌" }, { "input": "unbolts", "output": "â ¥â â ƒâ •⠇⠞⠎" }, { "input": "unborn", "output": "â ¥â â ƒâ •â —â " }, { "input": "unbosom", "output": "â ¥â â ƒâ •â Žâ •â " }, { "input": "unbosomed", "output": "â ¥â â ƒâ •â Žâ •â â «" }, { "input": "unbosoming", "output": "â ¥â â ƒâ •â Žâ •â â Œ" }, { "input": "unbosoms", "output": "â ¥â â ƒâ •â Žâ •â â Ž" }, { "input": "unbound", "output": "â ¥â â ƒâ ¨â ™" }, { "input": "unbounded", "output": "â ¥â â ƒâ ¨â ™â «" }, { "input": "unbranded", "output": "â ¥â â ƒâ —⠯⠫" }, { "input": "unbreakable", "output": "â ¥â â ƒâ —â ‚â …â â ¼" }, { "input": "unbridled", "output": "â ¥â â ƒâ —⠊⠙⠇⠫" }, { "input": "unbroken", "output": "â ¥â â ƒâ —â •â …â ¢" }, { "input": "unbuckle", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠑" }, { "input": "unbuckled", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠫" }, { "input": "unbuckles", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠑⠎" }, { "input": "unbuckling", "output": "â ¥â â ƒâ ¥â ‰â …⠇⠌" }, { "input": "unburden", "output": "â ¥â â ƒâ ¥â —⠙⠢" }, { "input": "unburdened", "output": "â ¥â â ƒâ ¥â —⠙⠢⠫" }, { "input": "unburdening", "output": "â ¥â â ƒâ ¥â —⠙⠢⠌" }, { "input": "unburdens", "output": "â ¥â â ƒâ ¥â —⠙⠢⠎" }, { "input": "unbutton", "output": "â ¥â â ƒâ ¥â žâ žâ •â " }, { "input": "unbuttoned", "output": "â ¥â â ƒâ ¥â žâ žâ •â â «" }, { "input": "unbuttoning", "output": "â ¥â â ƒâ ¥â žâ žâ •â â Œ" }, { "input": "unbuttons", "output": "â ¥â â ƒâ ¥â žâ žâ •â â Ž" }, { "input": "uncalled", "output": "â ¥â â ‰â â ‡â ‡â «" }, { "input": "uncannier", "output": "â ¥â â ‰â â â â Šâ »" }, { "input": "uncanniest", "output": "â ¥â â ‰â â â â Šâ ‘â Œ" }, { "input": "uncannily", "output": "â ¥â â ‰â â â â Šâ ‡â ½" }, { "input": "uncanny", "output": "â ¥â â ‰â â â â ½" }, { "input": "uncap", "output": "â ¥â â ‰â â " }, { "input": "uncapped", "output": "â ¥â â ‰â â â â «" }, { "input": "uncapping", "output": "â ¥â â ‰â â â â Œ" }, { "input": "uncaps", "output": "â ¥â â ‰â â â Ž" }, { "input": "uncaring", "output": "â ¥â â ‰â œâ Œ" }, { "input": "uncased", "output": "â ¥â â ‰â â Žâ «" }, { "input": "uncatalogued", "output": "â ¥â â ‰â â žâ â ‡â •⠛⠥⠫" }, { "input": "uncaught", "output": "â ¥â â ‰â â ¥â £â ž" }, { "input": "unceasing", "output": "â ¥â â ‰â ‚â Žâ Œ" }, { "input": "unceasingly", "output": "â ¥â â ‰â ‚⠎⠌⠇⠽" }, { "input": "uncensored", "output": "â ¥â â ‰â ¢â Žâ •â —â «" }, { "input": "unceremonious", "output": "â ¥â â ‰â »â ‘â â •â â Šâ ³â Ž" }, { "input": "unceremoniously", "output": "â ¥â â ‰â »â ‘â â •â â Šâ ³â Žâ ‡â ½" }, { "input": "uncertain", "output": "â ¥â â ‰â »â žâ â ”" }, { "input": "uncertainly", "output": "â ¥â â ‰â »â žâ â ”⠇⠽" }, { "input": "uncertainties", "output": "â ¥â â ‰â »â žâ â ”â žâ Šâ ‘â Ž" }, { "input": "uncertainty", "output": "â ¥â â ‰â »â žâ â ”â žâ ½" }, { "input": "uncertainty's", "output": "â ¥â â ‰â »â žâ â ”⠞⠽⠄⠎" }, { "input": "unchain", "output": "â ¥â â ¡â â ”" }, { "input": "unchained", "output": "â ¥â â ¡â â ”â «" }, { "input": "unchaining", "output": "â ¥â â ¡â â ”â Œ" }, { "input": "unchains", "output": "â ¥â â ¡â â ”â Ž" }, { "input": "unchallenged", "output": "â ¥â â ¡â â ‡â ‡â ¢â ›â «" }, { "input": "unchanged", "output": "â ¥â â ¡â â â ›â «" }, { "input": "unchanging", "output": "â ¥â â ¡â â â ›â Œ" }, { "input": "unchaperoned", "output": "â ¥â â ¡â â â »â •â â «" }, { "input": "uncharacteristic", "output": "â ¥â â â ¡â Šâ Œâ Šâ ‰" }, { "input": "uncharacteristically", "output": "â ¥â â â ¡â Šâ Œâ Šâ ‰â  â ½" }, { "input": "uncharged", "output": "â ¥â â ¡â œâ ›â «" }, { "input": "uncharitable", "output": "â ¥â â ¡â œâ Šâ žâ â ¼" }, { "input": "uncharitably", "output": "â ¥â â ¡â œâ Šâ žâ â ƒâ ‡â ½" }, { "input": "uncharted", "output": "â ¥â â ¡â œâ žâ «" }, { "input": "unchaste", "output": "â ¥â â ¡â â Œâ ‘" }, { "input": "unchaster", "output": "â ¥â â ¡â â Œâ »" }, { "input": "unchastest", "output": "â ¥â â ¡â â Œâ ‘â Œ" }, { "input": "unchecked", "output": "â ¥â â ¡â ‘⠉⠅⠫" }, { "input": "unchristian", "output": "â ¥â â ¡â —⠊⠌⠊â â " }, { "input": "uncial", "output": "â ¥â â ‰â Šâ â ‡" }, { "input": "uncial's", "output": "â ¥â â ‰â Šâ â ‡â „â Ž" }, { "input": "uncircumcised", "output": "â ¥â â ‰â Šâ —⠉⠥â â ‰â Šâ Žâ «" }, { "input": "uncivil", "output": "â ¥â â ‰â Šâ §â Šâ ‡" }, { "input": "uncivilized", "output": "â ¥â â ‰â Šâ §â Šâ ‡â Šâ µâ «" }, { "input": "uncivilly", "output": "â ¥â â ‰â Šâ §â Šâ ‡â ‡â ½" }, { "input": "unclad", "output": "â ¥â â ‰â ‡â â ™" }, { "input": "unclaimed", "output": "â ¥â â ‰â ‡â â Šâ â «" }, { "input": "unclasp", "output": "â ¥â â ‰â ‡â â Žâ " }, { "input": "unclasped", "output": "â ¥â â ‰â ‡â â Žâ â «" }, { "input": "unclasping", "output": "â ¥â â ‰â ‡â â Žâ â Œ" }, { "input": "unclasps", "output": "â ¥â â ‰â ‡â â Žâ â Ž" }, { "input": "unclassified", "output": "â ¥â â ‰â ‡â â Žâ Žâ Šâ ‹â Šâ «" }, { "input": "uncle", "output": "â ¥â â ‰â ‡â ‘" }, { "input": "uncle's", "output": "â ¥â â ‰â ‡â ‘â „â Ž" }, { "input": "unclean", "output": "â ¥â â ‰â ‡â ‚â " }, { "input": "uncleaned", "output": "â ¥â â ‰â ‡â ‚â â «" }, { "input": "uncleaner", "output": "â ¥â â ‰â ‡â ‚â â »" }, { "input": "uncleanest", "output": "â ¥â â ‰â ‡â ‚â â ‘â Œ" }, { "input": "uncleanlier", "output": "â ¥â â ‰â ‡â ‚â â ‡â Šâ »" }, { "input": "uncleanliest", "output": "â ¥â â ‰â ‡â ‚â â ‡â Šâ ‘â Œ" }, { "input": "uncleanliness", "output": "â ¥â â ‰â ‡â ‚â â ‡â Šâ °â Ž" }, { "input": "uncleanliness's", "output": "â ¥â â ‰â ‡â ‚â â ‡â Šâ °â Žâ „â Ž" }, { "input": "uncleanly", "output": "â ¥â â ‰â ‡â ‚â â ‡â ½" }, { "input": "uncleanness", "output": "â ¥â â ‰â ‡â ‚â â °â Ž" }, { "input": "uncleanness's", "output": "â ¥â â ‰â ‡â ‚â â °â Žâ „â Ž" }, { "input": "unclear", "output": "â ¥â â ‰â ‡â ‘â œ" }, { "input": "uncleared", "output": "â ¥â â ‰â ‡â ‘⠜⠫" }, { "input": "unclearer", "output": "â ¥â â ‰â ‡â ‘⠜⠻" }, { "input": "unclearest", "output": "â ¥â â ‰â ‡â ‘⠜⠑⠌" }, { "input": "uncles", "output": "â ¥â â ‰â ‡â ‘â Ž" }, { "input": "uncloak", "output": "â ¥â â ‰â ‡â •â â …" }, { "input": "uncloaked", "output": "â ¥â â ‰â ‡â •â â …â «" }, { "input": "uncloaking", "output": "â ¥â â ‰â ‡â •â â …â Œ" }, { "input": "uncloaks", "output": "â ¥â â ‰â ‡â •â â …â Ž" }, { "input": "unclog", "output": "â ¥â â ‰â ‡â •â ›" }, { "input": "unclogged", "output": "â ¥â â ‰â ‡â •â ¶â «" }, { "input": "unclogging", "output": "â ¥â â ‰â ‡â •â ¶â Œ" }, { "input": "unclogs", "output": "â ¥â â ‰â ‡â •⠛⠎" }, { "input": "unclothe", "output": "â ¥â â ‰â ‡â •â ®" }, { "input": "unclothed", "output": "â ¥â â ‰â ‡â •⠮⠙" }, { "input": "unclothes", "output": "â ¥â â ‰â ‡â •⠮⠎" }, { "input": "unclothing", "output": "â ¥â â ‰â ‡â •⠹⠌" }, { "input": "unclouded", "output": "â ¥â â ‰â ‡â ³â ™â «" }, { "input": "uncluttered", "output": "â ¥â â ‰â ‡â ¥â žâ žâ »â «" }, { "input": "uncoil", "output": "â ¥â â ‰â •â Šâ ‡" }, { "input": "uncoiled", "output": "â ¥â â ‰â •⠊⠇⠫" }, { "input": "uncoiling", "output": "â ¥â â ‰â •⠊⠇⠌" }, { "input": "uncoils", "output": "â ¥â â ‰â •⠊⠇⠎" }, { "input": "uncollected", "output": "â ¥â â ‰â •⠇⠇⠑⠉⠞⠫" }, { "input": "uncolored", "output": "â ¥â â ‰â •⠇⠕⠗⠫" }, { "input": "uncombed", "output": "â ¥â â ‰â •â â ƒâ «" }, { "input": "uncombined", "output": "â ¥â â ‰â •â â ƒâ ”â «" }, { "input": "uncomfortable", "output": "â ¥â â ‰â •â â ¿â žâ â ¼" }, { "input": "uncomfortably", "output": "â ¥â â ‰â •â â ¿â žâ â ƒâ ‡â ½" }, { "input": "uncommitted", "output": "â ¥â â ‰â •â â â Šâ žâ žâ «" }, { "input": "uncommon", "output": "â ¥â â ‰â •â â â •â " }, { "input": "uncommoner", "output": "â ¥â â ‰â •â â â •â â »" }, { "input": "uncommonest", "output": "â ¥â â ‰â •â â â •â â ‘â Œ" }, { "input": "uncommonly", "output": "â ¥â â ‰â •â â â •â â ‡â ½" }, { "input": "uncommonness", "output": "â ¥â â ‰â •â â â •â â °â Ž" }, { "input": "uncommonness's", "output": "â ¥â â ‰â •â â â •â â °â Žâ „â Ž" }, { "input": "uncommunicative", "output": "â ¥â â ‰â •â â â ¥â â Šâ ‰â â žâ Šâ §â ‘" }, { "input": "uncompensated", "output": "â ¥â â ‰â •â â â ¢â Žâ â žâ «" }, { "input": "uncomplaining", "output": "â ¥â â ‰â •â â â ‡â â ”â Œ" }, { "input": "uncompleted", "output": "â ¥â â ‰â •â â â ‡â ‘â žâ «" }, { "input": "uncomplicated", "output": "â ¥â â ‰â •â â â ‡â Šâ ‰â â žâ «" }, { "input": "uncomplimentary", "output": "â ¥â â ‰â •â â â ‡â Šâ °â žâ œâ ½" }, { "input": "uncompounded", "output": "â ¥â â ‰â •â â â ¨â ™â «" }, { "input": "uncomprehending", "output": "â ¥â â ‰â •â â â —⠑⠓⠢⠙⠌" }, { "input": "uncompressed", "output": "â ¥â â ‰â •â â â —â ‘â Žâ Žâ «" }, { "input": "uncompromising", "output": "â ¥â â ‰â •â â â —â •â â Šâ Žâ Œ" }, { "input": "uncompromisingly", "output": "â ¥â â ‰â •â â â —â •â â Šâ Žâ Œâ ‡â ½" }, { "input": "unconcealed", "output": "â ¥â â ‰â •â â ‰â ‚⠇⠫" }, { "input": "unconcern", "output": "â ¥â â ‰â •â â ‰â »â " }, { "input": "unconcern's", "output": "â ¥â â ‰â •â â ‰â »â â „â Ž" }, { "input": "unconcerned", "output": "â ¥â â ‰â •â â ‰â »â â «" }, { "input": "unconcernedly", "output": "â ¥â â ‰â •â â ‰â »â â «â ‡â ½" }, { "input": "unconditional", "output": "â ¥â â ‰â •â â ™â Šâ °â â â ‡" }, { "input": "unconditionally", "output": "â ¥â â ‰â •â â ™â Šâ °â â  â ½" }, { "input": "unconditioned", "output": "â ¥â â ‰â •â â ™â Šâ °â â «" }, { "input": "unconfined", "output": "â ¥â â ‰â •â â ‹â ”â «" }, { "input": "unconfirmed", "output": "â ¥â â ‰â •â â ‹â Šâ —â â «" }, { "input": "unconformable", "output": "â ¥â â ‰â •â â ¿â â â ¼" }, { "input": "unconnected", "output": "â ¥â â ‰â •â â â ‘⠉⠞⠫" }, { "input": "unconquerable", "output": "â ¥â â ‰â •â â Ÿâ ¥â »â â ¼" }, { "input": "unconquered", "output": "â ¥â â ‰â •â â Ÿâ ¥â »â «" }, { "input": "unconscionable", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ •â â â ¼" }, { "input": "unconscionably", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ •â â â ƒâ ‡â ½" }, { "input": "unconscious", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Ž" }, { "input": "unconscious's", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Žâ „â Ž" }, { "input": "unconsciously", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Žâ ‡â ½" }, { "input": "unconsciousness", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Žâ °â Ž" }, { "input": "unconsciousness's", "output": "â ¥â â ‰â •â â Žâ ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "unconsecrated", "output": "â ¥â â ‰â •â â Žâ ‘⠉⠗â â žâ «" }, { "input": "unconsidered", "output": "â ¥â â ‰â •â â Žâ Šâ ™â »â «" }, { "input": "unconsolidated", "output": "â ¥â â ‰â •â â Žâ •⠇⠊⠙â â žâ «" }, { "input": "unconstitutional", "output": "â ¥â â ‰â •â â Œâ Šâ žâ ¥â °â â â ‡" }, { "input": "unconstitutionality", "output": "â ¥â â ‰â •â â Œâ Šâ žâ ¥â °â â â ‡â °â ½" }, { "input": "unconstitutionality's", "output": "â ¥â â ‰â •â â Œâ Šâ žâ ¥â °â â â ‡â °â ½â „â Ž" }, { "input": "unconstrained", "output": "â ¥â â ‰â •â â Œâ —â â ”â «" }, { "input": "unconsumed", "output": "â ¥â â ‰â •â â Žâ ¥â â «" }, { "input": "unconsummated", "output": "â ¥â â ‰â •â â Žâ ¥â â â â žâ «" }, { "input": "uncontaminated", "output": "â ¥â â ‰â •â â žâ â â ”â â žâ «" }, { "input": "uncontested", "output": "â ¥â â ‰â •â â žâ ‘⠌⠫" }, { "input": "uncontrollable", "output": "â ¥â â ‰â •â â žâ —⠕⠇⠇â â ¼" }, { "input": "uncontrollably", "output": "â ¥â â ‰â •â â žâ —⠕⠇⠇â â ƒâ ‡â ½" }, { "input": "uncontrolled", "output": "â ¥â â ‰â •â â žâ —⠕⠇⠇⠫" }, { "input": "uncontroversial", "output": "â ¥â â ‰â •â â žâ —⠕⠧⠻⠎⠊â â ‡" }, { "input": "unconventional", "output": "â ¥â â ‰â •â â §â ¢â °â â â ‡" }, { "input": "unconventionality", "output": "â ¥â â ‰â •â â §â ¢â °â â â ‡â °â ½" }, { "input": "unconventionality's", "output": "â ¥â â ‰â •â â §â ¢â °â â â ‡â °â ½â „â Ž" }, { "input": "unconventionally", "output": "â ¥â â ‰â •â â §â ¢â °â â  â ½" }, { "input": "unconverted", "output": "â ¥â â ‰â •â â §â »â žâ «" }, { "input": "unconvinced", "output": "â ¥â â ‰â •â â §â ”⠉⠫" }, { "input": "unconvincing", "output": "â ¥â â ‰â •â â §â ”⠉⠌" }, { "input": "unconvincingly", "output": "â ¥â â ‰â •â â §â ”⠉⠌⠇⠽" }, { "input": "uncooked", "output": "â ¥â â ‰â •â •â …â «" }, { "input": "uncooperative", "output": "â ¥â â ‰â •â •â â »â â žâ Šâ §â ‘" }, { "input": "uncoordinated", "output": "â ¥â â ‰â •⠕⠗⠙⠔â â žâ «" }, { "input": "uncork", "output": "â ¥â â ‰â •â —â …" }, { "input": "uncorked", "output": "â ¥â â ‰â •â —â …â «" }, { "input": "uncorking", "output": "â ¥â â ‰â •â —â …â Œ" }, { "input": "uncorks", "output": "â ¥â â ‰â •â —â …â Ž" }, { "input": "uncorrected", "output": "â ¥â â ‰â •⠗⠗⠑⠉⠞⠫" }, { "input": "uncorrelated", "output": "â ¥â â ‰â •â —â —â ‘â ‡â â žâ «" }, { "input": "uncorroborated", "output": "â ¥â â ‰â •⠗⠗⠕⠃⠕⠗â â žâ «" }, { "input": "uncountable", "output": "â ¥â â ‰â ¨â žâ â ¼" }, { "input": "uncounted", "output": "â ¥â â ‰â ¨â žâ «" }, { "input": "uncouple", "output": "â ¥â â ‰â ³â â ‡â ‘" }, { "input": "uncoupled", "output": "â ¥â â ‰â ³â â ‡â «" }, { "input": "uncouples", "output": "â ¥â â ‰â ³â â ‡â ‘â Ž" }, { "input": "uncoupling", "output": "â ¥â â ‰â ³â â ‡â Œ" }, { "input": "uncouth", "output": "â ¥â â ‰â ³â ¹" }, { "input": "uncouthly", "output": "â ¥â â ‰â ³â ¹â ‡â ½" }, { "input": "uncover", "output": "â ¥â â ‰â •â §â »" }, { "input": "uncovered", "output": "â ¥â â ‰â •⠧⠻⠫" }, { "input": "uncovering", "output": "â ¥â â ‰â •⠧⠻⠌" }, { "input": "uncovers", "output": "â ¥â â ‰â •⠧⠻⠎" }, { "input": "uncritical", "output": "â ¥â â ‰â —â Šâ žâ Šâ ‰â â ‡" }, { "input": "uncross", "output": "â ¥â â ‰â —â •â Žâ Ž" }, { "input": "uncrossed", "output": "â ¥â â ‰â —â •â Žâ Žâ «" }, { "input": "uncrosses", "output": "â ¥â â ‰â —â •â Žâ Žâ ‘â Ž" }, { "input": "uncrossing", "output": "â ¥â â ‰â —â •â Žâ Žâ Œ" }, { "input": "uncrowded", "output": "â ¥â â ‰â —⠪⠙⠫" }, { "input": "uncrowned", "output": "â ¥â â ‰â —â ªâ â «" }, { "input": "unction", "output": "â ¥â â ‰â °â " }, { "input": "unction's", "output": "â ¥â â ‰â °â â „â Ž" }, { "input": "unctions", "output": "â ¥â â ‰â °â â Ž" }, { "input": "unctuous", "output": "â ¥â â ‰â žâ ¥â ³â Ž" }, { "input": "unctuously", "output": "â ¥â â ‰â žâ ¥â ³â Žâ ‡â ½" }, { "input": "unctuousness", "output": "â ¥â â ‰â žâ ¥â ³â Žâ °â Ž" }, { "input": "unctuousness's", "output": "â ¥â â ‰â žâ ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "uncultivated", "output": "â ¥â â ‰â ¥â ‡â žâ Šâ §â â žâ «" }, { "input": "uncultured", "output": "â ¥â â ‰â ¥â ‡â žâ ¥â —â «" }, { "input": "uncured", "output": "â ¥â â ‰â ¥â —â «" }, { "input": "uncustomary", "output": "â ¥â â ‰â ¥â Œâ •â â œâ ½" }, { "input": "uncut", "output": "â ¥â â ‰â ¥â ž" }, { "input": "undamaged", "output": "â ¥â â ™â â â â ›â «" }, { "input": "undated", "output": "â ¥â â ™â â žâ «" }, { "input": "undaunted", "output": "â ¥â â ™â â ¥â â žâ «" }, { "input": "undauntedly", "output": "â ¥â â ™â â ¥â â žâ «â ‡â ½" }, { "input": "undeceive", "output": "â ¥â â ™â ‰â §" }, { "input": "undeceived", "output": "â ¥â â ™â ‰â §â ™" }, { "input": "undeceives", "output": "â ¥â â ™â ‰â §â Ž" }, { "input": "undeceiving", "output": "â ¥â â ™â ‰â §â ›" }, { "input": "undecidable", "output": "â ¥â â ™â ‘⠉⠊⠙â â ¼" }, { "input": "undecided", "output": "â ¥â â ™â ‘⠉⠊⠙⠫" }, { "input": "undecided's", "output": "â ¥â â ™â ‘⠉⠊⠙⠫⠄⠎" }, { "input": "undecideds", "output": "â ¥â â ™â ‘⠉⠊⠙⠫⠎" }, { "input": "undecipherable", "output": "â ¥â â ™â ‘⠉⠊â â “â »â â ¼" }, { "input": "undeclared", "output": "â ¥â â ™â ‰â ‡â ™" }, { "input": "undefeated", "output": "â ¥â â ™â ‘â ‹â ‚â žâ «" }, { "input": "undefended", "output": "â ¥â â ™â ‘⠋⠢⠙⠫" }, { "input": "undefinable", "output": "â ¥â â ™â ‘â ‹â ”â â ¼" }, { "input": "undefined", "output": "â ¥â â ™â ‘⠋⠔⠫" }, { "input": "undelivered", "output": "â ¥â â ™â ‘⠇⠊⠧⠻⠫" }, { "input": "undemanding", "output": "â ¥â â ™â ‘â â ¯â Œ" }, { "input": "undemocratic", "output": "â ¥â â ™â ‘â â •⠉⠗â â žâ Šâ ‰" }, { "input": "undemonstrative", "output": "â ¥â â ™â ‘â â •â â Œâ —â â žâ Šâ §â ‘" }, { "input": "undemonstratively", "output": "â ¥â â ™â ‘â â •â â Œâ —â â žâ Šâ §â ‘⠇⠽" }, { "input": "undeniable", "output": "â ¥â â ™â ¢â Šâ â ¼" }, { "input": "undeniably", "output": "â ¥â â ™â ¢â Šâ â ƒâ ‡â ½" }, { "input": "undependable", "output": "â ¥â â ™â ‘â â ¢â ™â â ¼" }, { "input": "under", "output": "â â ¥" }, { "input": "underachieve", "output": "â â ¥â â ¡â Šâ ‘â §â ‘" }, { "input": "underachieved", "output": "â â ¥â â ¡â Šâ ‘â §â «" }, { "input": "underachiever", "output": "â â ¥â â ¡â Šâ ‘â §â »" }, { "input": "underachiever's", "output": "â â ¥â â ¡â Šâ ‘⠧⠻⠄⠎" }, { "input": "underachievers", "output": "â â ¥â â ¡â Šâ ‘⠧⠻⠎" }, { "input": "underachieves", "output": "â â ¥â â ¡â Šâ ‘â §â ‘â Ž" }, { "input": "underachieving", "output": "â â ¥â â ¡â Šâ ‘â §â Œ" }, { "input": "underact", "output": "â â ¥â â ‰â ž" }, { "input": "underacted", "output": "â â ¥â â ‰â žâ «" }, { "input": "underacting", "output": "â â ¥â â ‰â žâ Œ" }, { "input": "underacts", "output": "â â ¥â â ‰â žâ Ž" }, { "input": "underage", "output": "â â ¥â â ›â ‘" }, { "input": "underarm", "output": "â â ¥â œâ " }, { "input": "underarm's", "output": "â â ¥â œâ â „â Ž" }, { "input": "underarms", "output": "â â ¥â œâ â Ž" }, { "input": "underbellies", "output": "â â ¥â ƒâ ‘⠇⠇⠊⠑⠎" }, { "input": "underbelly", "output": "â â ¥â ƒâ ‘⠇⠇⠽" }, { "input": "underbelly's", "output": "â â ¥â ƒâ ‘⠇⠇⠽⠄⠎" }, { "input": "underbid", "output": "â â ¥â ƒâ Šâ ™" }, { "input": "underbidding", "output": "â â ¥â ƒâ Šâ ²â Œ" }, { "input": "underbids", "output": "â â ¥â ƒâ Šâ ™â Ž" }, { "input": "underbrush", "output": "â â ¥â ƒâ —⠥⠩" }, { "input": "underbrush's", "output": "â â ¥â ƒâ —⠥⠩⠄⠎" }, { "input": "undercarriage", "output": "â â ¥â ‰â œâ —â Šâ â ›â ‘" }, { "input": "undercarriage's", "output": "â â ¥â ‰â œâ —â Šâ â ›â ‘â „â Ž" }, { "input": "undercarriages", "output": "â â ¥â ‰â œâ —â Šâ â ›â ‘â Ž" }, { "input": "undercharge", "output": "â â ¥â ¡â œâ ›â ‘" }, { "input": "undercharge's", "output": "â â ¥â ¡â œâ ›â ‘â „â Ž" }, { "input": "undercharged", "output": "â â ¥â ¡â œâ ›â «" }, { "input": "undercharges", "output": "â â ¥â ¡â œâ ›â ‘â Ž" }, { "input": "undercharging", "output": "â â ¥â ¡â œâ ›â Œ" }, { "input": "underclass", "output": "â â ¥â ‰â ‡â â Žâ Ž" }, { "input": "underclass's", "output": "â â ¥â ‰â ‡â â Žâ Žâ „â Ž" }, { "input": "underclassman", "output": "â â ¥â ‰â ‡â â Žâ Žâ â â " }, { "input": "underclassman's", "output": "â â ¥â ‰â ‡â â Žâ Žâ â â â „â Ž" }, { "input": "underclassmen", "output": "â â ¥â ‰â ‡â â Žâ Žâ â ¢" }, { "input": "underclothes", "output": "â â ¥â ‰â ‡â •⠮⠎" }, { "input": "underclothes's", "output": "â â ¥â ‰â ‡â •⠮⠎⠄⠎" }, { "input": "underclothing", "output": "â â ¥â ‰â ‡â •⠹⠌" }, { "input": "underclothing's", "output": "â â ¥â ‰â ‡â •⠹⠌⠄⠎" }, { "input": "undercoat", "output": "â â ¥â ‰â •â â ž" }, { "input": "undercoat's", "output": "â â ¥â ‰â •â â žâ „â Ž" }, { "input": "undercoated", "output": "â â ¥â ‰â •â â žâ «" }, { "input": "undercoating", "output": "â â ¥â ‰â •â â žâ Œ" }, { "input": "undercoating's", "output": "â â ¥â ‰â •â â žâ Œâ „â Ž" }, { "input": "undercoatings", "output": "â â ¥â ‰â •â â žâ Œâ Ž" }, { "input": "undercoats", "output": "â â ¥â ‰â •â â žâ Ž" }, { "input": "undercover", "output": "â â ¥â ‰â •â §â »" }, { "input": "undercurrent", "output": "â â ¥â ‰â ¥â —⠗⠢⠞" }, { "input": "undercurrent's", "output": "â â ¥â ‰â ¥â —⠗⠢⠞⠄⠎" }, { "input": "undercurrents", "output": "â â ¥â ‰â ¥â —⠗⠢⠞⠎" }, { "input": "undercut", "output": "â â ¥â ‰â ¥â ž" }, { "input": "undercut's", "output": "â â ¥â ‰â ¥â žâ „â Ž" }, { "input": "undercuts", "output": "â â ¥â ‰â ¥â žâ Ž" }, { "input": "undercutting", "output": "â â ¥â ‰â ¥â žâ žâ Œ" }, { "input": "underdeveloped", "output": "â â ¥â ™â ‘⠧⠑⠇⠕â â «" }, { "input": "underdevelopment", "output": "â â ¥â ™â ‘⠧⠑⠇⠕â â °â ž" }, { "input": "underdevelopment's", "output": "â â ¥â ™â ‘⠧⠑⠇⠕â â °â žâ „â Ž" }, { "input": "underdog", "output": "â â ¥â ™â •â ›" }, { "input": "underdog's", "output": "â â ¥â ™â •⠛⠄⠎" }, { "input": "underdogs", "output": "â â ¥â ™â •⠛⠎" }, { "input": "underdone", "output": "â â ¥â ™â â •" }, { "input": "underemployed", "output": "â â ¥â ‘â â â ‡â •⠽⠫" }, { "input": "underemployment", "output": "â â ¥â ‘â â â ‡â •⠽⠰⠞" }, { "input": "underemployment's", "output": "â â ¥â ‘â â â ‡â •⠽⠰⠞⠄⠎" }, { "input": "underestimate", "output": "â â ¥â ‘⠌⠊â â â žâ ‘" }, { "input": "underestimate's", "output": "â â ¥â ‘⠌⠊â â â žâ ‘â „â Ž" }, { "input": "underestimated", "output": "â â ¥â ‘⠌⠊â â â žâ «" }, { "input": "underestimates", "output": "â â ¥â ‘⠌⠊â â â žâ ‘â Ž" }, { "input": "underestimating", "output": "â â ¥â ‘⠌⠊â â â žâ Œ" }, { "input": "underexpose", "output": "â â ¥â ‘â ­â â •â Žâ ‘" }, { "input": "underexposed", "output": "â â ¥â ‘â ­â â •â Žâ «" }, { "input": "underexposes", "output": "â â ¥â ‘â ­â â •â Žâ ‘â Ž" }, { "input": "underexposing", "output": "â â ¥â ‘â ­â â •â Žâ Œ" }, { "input": "underexposure", "output": "â â ¥â ‘â ­â â •⠎⠥⠗⠑" }, { "input": "underexposure's", "output": "â â ¥â ‘â ­â â •⠎⠥⠗⠑⠄⠎" }, { "input": "underexposures", "output": "â â ¥â ‘â ­â â •⠎⠥⠗⠑⠎" }, { "input": "underfed", "output": "â â ¥â ‹â «" }, { "input": "underfeed", "output": "â â ¥â ‹â ‘â «" }, { "input": "underfeeding", "output": "â â ¥â ‹â ‘â «â Œ" }, { "input": "underfeeds", "output": "â â ¥â ‹â ‘â «â Ž" }, { "input": "underflow", "output": "â â ¥â ‹â ‡â ª" }, { "input": "underfoot", "output": "â â ¥â ‹â •â •â ž" }, { "input": "underfunded", "output": "â â ¥â ‹â ¥â â ™â «" }, { "input": "underfur", "output": "â â ¥â ‹â ¥â —" }, { "input": "underfur's", "output": "â â ¥â ‹â ¥â —â „â Ž" }, { "input": "undergarment", "output": "â â ¥â ›â œâ °â ž" }, { "input": "undergarment's", "output": "â â ¥â ›â œâ °â žâ „â Ž" }, { "input": "undergarments", "output": "â â ¥â ›â œâ °â žâ Ž" }, { "input": "undergo", "output": "â â ¥â ›â •" }, { "input": "undergoes", "output": "â â ¥â ›â •â ‘â Ž" }, { "input": "undergoing", "output": "â â ¥â ›â •â Œ" }, { "input": "undergone", "output": "â â ¥â ›â â •" }, { "input": "undergrad", "output": "â â ¥â ›â —â â ™" }, { "input": "undergrads", "output": "â â ¥â ›â —â â ™â Ž" }, { "input": "undergraduate", "output": "â â ¥â ›â —â â ™â ¥â â žâ ‘" }, { "input": "undergraduate's", "output": "â â ¥â ›â —â â ™â ¥â â žâ ‘â „â Ž" }, { "input": "undergraduates", "output": "â â ¥â ›â —â â ™â ¥â â žâ ‘â Ž" }, { "input": "underground", "output": "â â ¥â ›â —⠨⠙" }, { "input": "underground's", "output": "â â ¥â ›â —⠨⠙⠄⠎" }, { "input": "undergrounds", "output": "â â ¥â ›â —⠨⠙⠎" }, { "input": "undergrowth", "output": "â â ¥â ›â —⠪⠹" }, { "input": "undergrowth's", "output": "â â ¥â ›â —⠪⠹⠄⠎" }, { "input": "underhand", "output": "â â ¥â “â ¯" }, { "input": "underhanded", "output": "â â ¥â “⠯⠫" }, { "input": "underhandedly", "output": "â â ¥â “⠯⠫⠇⠽" }, { "input": "underhandedness", "output": "â â ¥â “⠯⠫⠰⠎" }, { "input": "underhandedness's", "output": "â â ¥â “⠯⠫⠰⠎⠄⠎" }, { "input": "underlain", "output": "â â ¥â ‡â â ”" }, { "input": "underlay", "output": "â â ¥â ‡â â ½" }, { "input": "underlay's", "output": "â â ¥â ‡â â ½â „â Ž" }, { "input": "underlays", "output": "â â ¥â ‡â â ½â Ž" }, { "input": "underlie", "output": "â â ¥â ‡â Šâ ‘" }, { "input": "underlies", "output": "â â ¥â ‡â Šâ ‘â Ž" }, { "input": "underline", "output": "â â ¥â ‡â ”â ‘" }, { "input": "underline's", "output": "â â ¥â ‡â ”â ‘â „â Ž" }, { "input": "underlined", "output": "â â ¥â ‡â ”â «" }, { "input": "underlines", "output": "â â ¥â ‡â ”â ‘â Ž" }, { "input": "underling", "output": "â â ¥â ‡â Œ" }, { "input": "underling's", "output": "â â ¥â ‡â Œâ „â Ž" }, { "input": "underlings", "output": "â â ¥â ‡â Œâ Ž" }, { "input": "underlining", "output": "â â ¥â ‡â ”â Œ" }, { "input": "underlip", "output": "â â ¥â ‡â Šâ " }, { "input": "underlip's", "output": "â â ¥â ‡â Šâ â „â Ž" }, { "input": "underlips", "output": "â â ¥â ‡â Šâ â Ž" }, { "input": "underlying", "output": "â â ¥â ‡â ½â Œ" }, { "input": "undermine", "output": "â â ¥â â ”â ‘" }, { "input": "undermined", "output": "â â ¥â â ”â «" }, { "input": "undermines", "output": "â â ¥â â ”â ‘â Ž" }, { "input": "undermining", "output": "â â ¥â â ”â Œ" }, { "input": "undermost", "output": "â â ¥â â •â Œ" }, { "input": "underneath", "output": "â â ¥â â ‚â ¹" }, { "input": "underneath's", "output": "â â ¥â â ‚⠹⠄⠎" }, { "input": "underneaths", "output": "â â ¥â â ‚⠹⠎" }, { "input": "undernourished", "output": "â â ¥â â ³â —â Šâ ©â «" }, { "input": "undernourishment's", "output": "â â ¥â â ³â —â Šâ ©â °â žâ „â Ž" }, { "input": "underpaid", "output": "â â ¥â â ™" }, { "input": "underpants", "output": "â â ¥â â â â žâ Ž" }, { "input": "underpants's", "output": "â â ¥â â â â žâ Žâ „â Ž" }, { "input": "underpart", "output": "â â ¥â â " }, { "input": "underpart's", "output": "â â ¥â â â „â Ž" }, { "input": "underparts", "output": "â â ¥â â â Ž" }, { "input": "underpass", "output": "â â ¥â â â Žâ Ž" }, { "input": "underpass's", "output": "â â ¥â â â Žâ Žâ „â Ž" }, { "input": "underpasses", "output": "â â ¥â â â Žâ Žâ ‘â Ž" }, { "input": "underpay", "output": "â â ¥â â â ½" }, { "input": "underpaying", "output": "â â ¥â â â ½â Œ" }, { "input": "underpayment", "output": "â â ¥â â â ½â °â ž" }, { "input": "underpayment's", "output": "â â ¥â â â ½â °â žâ „â Ž" }, { "input": "underpayments", "output": "â â ¥â â â ½â °â žâ Ž" }, { "input": "underpays", "output": "â â ¥â â â ½â Ž" }, { "input": "underpin", "output": "â â ¥â â ”" }, { "input": "underpinned", "output": "â â ¥â â ”â â «" }, { "input": "underpinning", "output": "â â ¥â â ”â â Œ" }, { "input": "underpinning's", "output": "â â ¥â â ”â â Œâ „â Ž" }, { "input": "underpinnings", "output": "â â ¥â â ”â â Œâ Ž" }, { "input": "underpins", "output": "â â ¥â â ”â Ž" }, { "input": "underplay", "output": "â â ¥â â ‡â â ½" }, { "input": "underplayed", "output": "â â ¥â â ‡â â ½â «" }, { "input": "underplaying", "output": "â â ¥â â ‡â â ½â Œ" }, { "input": "underplays", "output": "â â ¥â â ‡â â ½â Ž" }, { "input": "underpopulated", "output": "â â ¥â â •â â ¥â ‡â â žâ «" }, { "input": "underprivileged", "output": "â â ¥â â —⠊⠧⠊⠇⠑⠛⠫" }, { "input": "underproduction", "output": "â â ¥â â —⠕⠙⠥⠉⠰â " }, { "input": "underproduction's", "output": "â â ¥â â —⠕⠙⠥⠉⠰â â „â Ž" }, { "input": "underrate", "output": "â â ¥â —â â žâ ‘" }, { "input": "underrated", "output": "â â ¥â —â â žâ «" }, { "input": "underrates", "output": "â â ¥â —â â žâ ‘â Ž" }, { "input": "underrating", "output": "â â ¥â —â â žâ Œ" }, { "input": "underrepresented", "output": "â â ¥â —â ‘â â —⠑⠎⠢⠞⠫" }, { "input": "underscore", "output": "â â ¥â Žâ ‰â •â —â ‘" }, { "input": "underscore's", "output": "â â ¥â Žâ ‰â •â —â ‘â „â Ž" }, { "input": "underscored", "output": "â â ¥â Žâ ‰â •â —â «" }, { "input": "underscores", "output": "â â ¥â Žâ ‰â •â —â ‘â Ž" }, { "input": "underscoring", "output": "â â ¥â Žâ ‰â •â —â Œ" }, { "input": "undersea", "output": "â â ¥â Žâ ‘â " }, { "input": "underseas", "output": "â â ¥â Žâ ‚â Ž" }, { "input": "undersecretaries", "output": "â â ¥â Žâ ‘⠉⠗⠑⠞⠜⠊⠑⠎" }, { "input": "undersecretary", "output": "â â ¥â Žâ ‘⠉⠗⠑⠞⠜⠽" }, { "input": "undersecretary's", "output": "â â ¥â Žâ ‘⠉⠗⠑⠞⠜⠽⠄⠎" }, { "input": "undersell", "output": "â â ¥â Žâ ‘⠇⠇" }, { "input": "underselling", "output": "â â ¥â Žâ ‘⠇⠇⠌" }, { "input": "undersells", "output": "â â ¥â Žâ ‘⠇⠇⠎" }, { "input": "undersexed", "output": "â â ¥â Žâ ‘â ­â «" }, { "input": "undershirt", "output": "â â ¥â ©â Šâ —â ž" }, { "input": "undershirt's", "output": "â â ¥â ©â Šâ —â žâ „â Ž" }, { "input": "undershirts", "output": "â â ¥â ©â Šâ —â žâ Ž" }, { "input": "undershoot", "output": "â â ¥â ©â •â •â ž" }, { "input": "undershooting", "output": "â â ¥â ©â •â •â žâ Œ" }, { "input": "undershoots", "output": "â â ¥â ©â •â •â žâ Ž" }, { "input": "undershorts", "output": "â â ¥â ©â •â —â žâ Ž" }, { "input": "undershorts's", "output": "â â ¥â ©â •â —â žâ Žâ „â Ž" }, { "input": "undershot", "output": "â â ¥â ©â •â ž" }, { "input": "underside", "output": "â â ¥â Žâ Šâ ™â ‘" }, { "input": "underside's", "output": "â â ¥â Žâ Šâ ™â ‘â „â Ž" }, { "input": "undersides", "output": "â â ¥â Žâ Šâ ™â ‘â Ž" }, { "input": "undersign", "output": "â â ¥â Žâ Šâ ›â " }, { "input": "undersigned", "output": "â â ¥â Žâ Šâ ›â â «" }, { "input": "undersigned's", "output": "â â ¥â Žâ Šâ ›â â «â „â Ž" }, { "input": "undersigning", "output": "â â ¥â Žâ Šâ ›â â Œ" }, { "input": "undersigns", "output": "â â ¥â Žâ Šâ ›â â Ž" }, { "input": "undersized", "output": "â â ¥â Žâ Šâ µâ «" }, { "input": "underskirt", "output": "â â ¥â Žâ …â Šâ —â ž" }, { "input": "underskirt's", "output": "â â ¥â Žâ …â Šâ —â žâ „â Ž" }, { "input": "underskirts", "output": "â â ¥â Žâ …â Šâ —â žâ Ž" }, { "input": "undersold", "output": "â â ¥â Žâ •⠇⠙" }, { "input": "understaffed", "output": "â â ¥â Œâ â –â «" }, { "input": "understand", "output": "â â ¥â Œâ ¯" }, { "input": "understandable", "output": "â â ¥â Œâ ¯â â ¼" }, { "input": "understandably", "output": "â â ¥â Œâ ¯â â ƒâ ‡â ½" }, { "input": "understanding", "output": "â â ¥â Œâ ¯â Œ" }, { "input": "understanding's", "output": "â â ¥â Œâ ¯â Œâ „â Ž" }, { "input": "understandingly", "output": "â â ¥â Œâ ¯â Œâ ‡â ½" }, { "input": "understandings", "output": "â â ¥â Œâ ¯â Œâ Ž" }, { "input": "understands", "output": "â â ¥â Œâ ¯â Ž" }, { "input": "understate", "output": "â â ¥â Œâ â žâ ‘" }, { "input": "understated", "output": "â â ¥â Œâ â žâ «" }, { "input": "understatement", "output": "â â ¥â Œâ â žâ ‘â °â ž" }, { "input": "understatement's", "output": "â â ¥â Œâ â žâ ‘â °â žâ „â Ž" }, { "input": "understatements", "output": "â â ¥â Œâ â žâ ‘â °â žâ Ž" }, { "input": "understates", "output": "â â ¥â Œâ â žâ ‘â Ž" }, { "input": "understating", "output": "â â ¥â Œâ â žâ Œ" }, { "input": "understood", "output": "â â ¥â Œâ •â •â ™" }, { "input": "understudied", "output": "â â ¥â Œâ ¥â ™â Šâ «" }, { "input": "understudies", "output": "â â ¥â Œâ ¥â ™â Šâ ‘â Ž" }, { "input": "understudy", "output": "â â ¥â Œâ ¥â ™â ½" }, { "input": "understudy's", "output": "â â ¥â Œâ ¥â ™â ½â „â Ž" }, { "input": "understudying", "output": "â â ¥â Œâ ¥â ™â ½â Œ" }, { "input": "undertake", "output": "â â ¥â žâ â …â ‘" }, { "input": "undertaken", "output": "â â ¥â žâ â …â ¢" }, { "input": "undertaker", "output": "â â ¥â žâ â …â »" }, { "input": "undertaker's", "output": "â â ¥â žâ â …⠻⠄⠎" }, { "input": "undertakers", "output": "â â ¥â žâ â …⠻⠎" }, { "input": "undertakes", "output": "â â ¥â žâ â …â ‘â Ž" }, { "input": "undertaking", "output": "â â ¥â žâ â …â Œ" }, { "input": "undertaking's", "output": "â â ¥â žâ â …⠌⠄⠎" }, { "input": "undertakings", "output": "â â ¥â žâ â …⠌⠎" }, { "input": "underthings", "output": "â â ¥â ¹â Œâ Ž" }, { "input": "underthings's", "output": "â â ¥â ¹â Œâ Žâ „â Ž" }, { "input": "undertone", "output": "â â ¥â žâ â •" }, { "input": "undertone's", "output": "â â ¥â žâ â •â „â Ž" }, { "input": "undertones", "output": "â â ¥â žâ â •â Ž" }, { "input": "undertook", "output": "â â ¥â žâ •â •â …" }, { "input": "undertow", "output": "â â ¥â žâ ª" }, { "input": "undertow's", "output": "â â ¥â žâ ªâ „â Ž" }, { "input": "undertows", "output": "â â ¥â žâ ªâ Ž" }, { "input": "underused", "output": "â â ¥â ¥â Žâ «" }, { "input": "underutilized", "output": "â â ¥â ¥â žâ Šâ ‡â Šâ µâ «" }, { "input": "undervaluation", "output": "â â ¥â §â â ‡â ¥â  â " }, { "input": "undervaluation's", "output": "â â ¥â §â â ‡â ¥â  â â „â Ž" }, { "input": "undervalue", "output": "â â ¥â §â â ‡â ¥â ‘" }, { "input": "undervalued", "output": "â â ¥â §â â ‡â ¥â «" }, { "input": "undervalues", "output": "â â ¥â §â â ‡â ¥â ‘â Ž" }, { "input": "undervaluing", "output": "â â ¥â §â â ‡â ¥â Œ" }, { "input": "underwater", "output": "â â ¥â ºâ â žâ »" }, { "input": "underwear", "output": "â â ¥â ºâ ‘â œ" }, { "input": "underwear's", "output": "â â ¥â ºâ ‘⠜⠄⠎" }, { "input": "underweight", "output": "â â ¥â ºâ ‘⠊⠣⠞" }, { "input": "underweight's", "output": "â â ¥â ºâ ‘⠊⠣⠞⠄⠎" }, { "input": "underwent", "output": "â â ¥â ºâ ¢â ž" }, { "input": "underworld", "output": "â â ¥â ¸â º" }, { "input": "underworld's", "output": "â â ¥â ¸â ºâ „â Ž" }, { "input": "underworlds", "output": "â â ¥â ¸â ºâ Ž" }, { "input": "underwrite", "output": "â â ¥â ºâ —â Šâ žâ ‘" }, { "input": "underwriter", "output": "â â ¥â ºâ —â Šâ žâ »" }, { "input": "underwriter's", "output": "â â ¥â ºâ —⠊⠞⠻⠄⠎" }, { "input": "underwriters", "output": "â â ¥â ºâ —⠊⠞⠻⠎" }, { "input": "underwrites", "output": "â â ¥â ºâ —â Šâ žâ ‘â Ž" }, { "input": "underwriting", "output": "â â ¥â ºâ —â Šâ žâ Œ" }, { "input": "underwritten", "output": "â â ¥â ºâ —â Šâ žâ žâ ¢" }, { "input": "underwrote", "output": "â â ¥â ºâ —â •â žâ ‘" }, { "input": "undeserved", "output": "â ¥â â ™â ‘⠎⠻⠧⠫" }, { "input": "undeservedly", "output": "â ¥â â ™â ‘⠎⠻⠧⠫⠇⠽" }, { "input": "undeserving", "output": "â ¥â â ™â ‘⠎⠻⠧⠌" }, { "input": "undesirability", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ƒâ Šâ ‡â °â ½" }, { "input": "undesirability's", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "undesirable", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ¼" }, { "input": "undesirable's", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ¼â „â Ž" }, { "input": "undesirables", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ¼â Ž" }, { "input": "undesirably", "output": "â ¥â â ™â ‘â Žâ Šâ —â â ƒâ ‡â ½" }, { "input": "undesired", "output": "â ¥â â ™â ‘â Žâ Šâ —â «" }, { "input": "undetectable", "output": "â ¥â â ™â ‘⠞⠑⠉⠞â â ¼" }, { "input": "undetected", "output": "â ¥â â ™â ‘⠞⠑⠉⠞⠫" }, { "input": "undetermined", "output": "â ¥â â ™â ‘â žâ »â â ”â «" }, { "input": "undeterred", "output": "â ¥â â ™â ‘⠞⠻⠗⠫" }, { "input": "undeveloped", "output": "â ¥â â ™â ‘⠧⠑⠇⠕â â «" }, { "input": "undeviating", "output": "â ¥â â ™â ‘â §â Šâ â žâ Œ" }, { "input": "undid", "output": "â ¥â â ™â Šâ ™" }, { "input": "undies", "output": "â ¥â â ™â Šâ ‘â Ž" }, { "input": "undies's", "output": "â ¥â â ™â Šâ ‘â Žâ „â Ž" }, { "input": "undifferentiated", "output": "â ¥â â ™â Šâ –⠻⠢⠞⠊â â žâ «" }, { "input": "undigested", "output": "â ¥â â ™â Šâ ›â ‘⠌⠫" }, { "input": "undignified", "output": "â ¥â â ™â Šâ ›â â Šâ ‹â Šâ «" }, { "input": "undiluted", "output": "â ¥â â ™â Šâ ‡â ¥â žâ «" }, { "input": "undiminished", "output": "â ¥â â ™â Šâ â ”â Šâ ©â «" }, { "input": "undimmed", "output": "â ¥â â ™â Šâ â â «" }, { "input": "undiplomatic", "output": "â ¥â â ™â Šâ â ‡â •â â â žâ Šâ ‰" }, { "input": "undisciplined", "output": "â ¥â â ™â Šâ Žâ ‰â Šâ â ‡â ”â «" }, { "input": "undisclosed", "output": "â ¥â â ™â Šâ Žâ ‰â ‡â •â Žâ «" }, { "input": "undiscovered", "output": "â ¥â â ™â Šâ Žâ ‰â •⠧⠻⠫" }, { "input": "undiscriminating", "output": "â ¥â â ™â Šâ Žâ ‰â —â Šâ â ”â â žâ Œ" }, { "input": "undisguised", "output": "â ¥â â ™â Šâ Žâ ›â ¥â Šâ Žâ «" }, { "input": "undisputed", "output": "â ¥â â ™â Šâ Žâ â ¥â žâ «" }, { "input": "undissolved", "output": "â ¥â â ™â Šâ Žâ Žâ •⠇⠧⠫" }, { "input": "undistinguished", "output": "â ¥â â ™â Šâ Žâ žâ Œâ ¥â Šâ ©â «" }, { "input": "undistributed", "output": "â ¥â â ™â Šâ Žâ žâ —⠊⠃⠥⠞⠫" }, { "input": "undisturbed", "output": "â ¥â â ™â Šâ Žâ žâ ¥â —⠃⠫" }, { "input": "undivided", "output": "â ¥â â ™â Šâ §â Šâ ™â «" }, { "input": "undo", "output": "â ¥â â ™â •" }, { "input": "undocumented", "output": "â ¥â â ™â •⠉⠥⠰⠞⠫" }, { "input": "undoes", "output": "â ¥â â ™â •â ‘â Ž" }, { "input": "undoing", "output": "â ¥â â ™â •â Œ" }, { "input": "undoing's", "output": "â ¥â â ™â •⠌⠄⠎" }, { "input": "undoings", "output": "â ¥â â ™â •⠌⠎" }, { "input": "undomesticated", "output": "â ¥â â ™â •â â ‘⠌⠊⠉â â žâ «" }, { "input": "undone", "output": "â ¥â â ™â â •" }, { "input": "undoubted", "output": "â ¥â â ™â ³â ƒâ žâ «" }, { "input": "undoubtedly", "output": "â ¥â â ™â ³â ƒâ žâ «â ‡â ½" }, { "input": "undramatic", "output": "â ¥â â ™â —â â â â žâ Šâ ‰" }, { "input": "undreamed", "output": "â ¥â â ™â —â ‚â â «" }, { "input": "undress", "output": "â ¥â â ™â —â ‘â Žâ Ž" }, { "input": "undress's", "output": "â ¥â â ™â —â ‘â Žâ Žâ „â Ž" }, { "input": "undressed", "output": "â ¥â â ™â —â ‘â Žâ Žâ «" }, { "input": "undresses", "output": "â ¥â â ™â —â ‘â Žâ Žâ ‘â Ž" }, { "input": "undressing", "output": "â ¥â â ™â —â ‘â Žâ Žâ Œ" }, { "input": "undrinkable", "output": "â ¥â â ™â —⠔⠅â â ¼" }, { "input": "undue", "output": "â ¥â â ™â ¥â ‘" }, { "input": "undulant", "output": "â ¥â â ™â ¥â ‡â â â ž" }, { "input": "undulate", "output": "â ¥â â ™â ¥â ‡â â žâ ‘" }, { "input": "undulated", "output": "â ¥â â ™â ¥â ‡â â žâ «" }, { "input": "undulates", "output": "â ¥â â ™â ¥â ‡â â žâ ‘â Ž" }, { "input": "undulating", "output": "â ¥â â ™â ¥â ‡â â žâ Œ" }, { "input": "undulation", "output": "â ¥â â ™â ¥â ‡â  â " }, { "input": "undulation's", "output": "â ¥â â ™â ¥â ‡â  â â „â Ž" }, { "input": "undulations", "output": "â ¥â â ™â ¥â ‡â  â â Ž" }, { "input": "unduly", "output": "â ¥â â ™â ¥â ‡â ½" }, { "input": "undying", "output": "â ¥â â ™â ½â Œ" }, { "input": "unearned", "output": "â ¥â â ‘â œâ â «" }, { "input": "unearth", "output": "â ¥â â ‘⠜⠹" }, { "input": "unearthed", "output": "â ¥â â ‘⠜⠮⠙" }, { "input": "unearthing", "output": "â ¥â â ‘⠜⠹⠌" }, { "input": "unearthliness", "output": "â ¥â â ‘⠜⠹⠇⠊⠰⠎" }, { "input": "unearthliness's", "output": "â ¥â â ‘⠜⠹⠇⠊⠰⠎⠄⠎" }, { "input": "unearthly", "output": "â ¥â â ‘⠜⠹⠇⠽" }, { "input": "unearths", "output": "â ¥â â ‘⠜⠹⠎" }, { "input": "unease", "output": "â ¥â â ‘â â Žâ ‘" }, { "input": "unease's", "output": "â ¥â â ‘â â Žâ ‘â „â Ž" }, { "input": "uneasier", "output": "â ¥â â ‘â â Žâ Šâ »" }, { "input": "uneasiest", "output": "â ¥â â ‘â â Žâ Šâ ‘â Œ" }, { "input": "uneasily", "output": "â ¥â â ‘â â Žâ Šâ ‡â ½" }, { "input": "uneasiness", "output": "â ¥â â ‘â â Žâ Šâ °â Ž" }, { "input": "uneasiness's", "output": "â ¥â â ‘â â Žâ Šâ °â Žâ „â Ž" }, { "input": "uneasy", "output": "â ¥â â ‘â â Žâ ½" }, { "input": "uneaten", "output": "â ¥â â ‘â â žâ ¢" }, { "input": "uneconomic", "output": "â ¥â â ‘⠉⠕â â •â â Šâ ‰" }, { "input": "uneconomical", "output": "â ¥â â ‘⠉⠕â â •â â Šâ ‰â â ‡" }, { "input": "uneconomically", "output": "â ¥â â ‘⠉⠕â â •â â Šâ ‰â  â ½" }, { "input": "unedited", "output": "â ¥â â «â Šâ žâ «" }, { "input": "uneducated", "output": "â ¥â â «â ¥â ‰â â žâ «" }, { "input": "unembarrassed", "output": "â ¥â â ‘â â ƒâ œâ —â â Žâ Žâ «" }, { "input": "unemotional", "output": "â ¥â â ‘â â •â °â â â ‡" }, { "input": "unemphatic", "output": "â ¥â â ‘â â â “â â žâ Šâ ‰" }, { "input": "unemployable", "output": "â ¥â â ‘â â â ‡â •â ½â â ¼" }, { "input": "unemployed", "output": "â ¥â â ‘â â â ‡â •⠽⠫" }, { "input": "unemployed's", "output": "â ¥â â ‘â â â ‡â •⠽⠫⠄⠎" }, { "input": "unemployment", "output": "â ¥â â ‘â â â ‡â •⠽⠰⠞" }, { "input": "unemployment's", "output": "â ¥â â ‘â â â ‡â •⠽⠰⠞⠄⠎" }, { "input": "unenclosed", "output": "â ¥â â ¢â ‰â ‡â •â Žâ «" }, { "input": "unencumbered", "output": "â ¥â â ¢â ‰â ¥â â ƒâ »â «" }, { "input": "unending", "output": "â ¥â â ¢â ™â Œ" }, { "input": "unendurable", "output": "â ¥â â ¢â ™â ¥â —â â ¼" }, { "input": "unenforceable", "output": "â ¥â â ¢â ¿â ‰â ‘â â ¼" }, { "input": "unenforced", "output": "â ¥â â ¢â ¿â ‰â «" }, { "input": "unenlightened", "output": "â ¥â â ¢â ‡â Šâ £â žâ ¢â «" }, { "input": "unenterprising", "output": "â ¥â â ¢â žâ »â â —â Šâ Žâ Œ" }, { "input": "unenthusiastic", "output": "â ¥â â ¢â ¹â ¥â Žâ Šâ â Œâ Šâ ‰" }, { "input": "unenviable", "output": "â ¥â â ¢â §â Šâ â ¼" }, { "input": "unequal", "output": "â ¥â â ‘â Ÿâ ¥â â ‡" }, { "input": "unequaled", "output": "â ¥â â ‘â Ÿâ ¥â â ‡â «" }, { "input": "unequally", "output": "â ¥â â ‘⠟⠥⠠⠽" }, { "input": "unequipped", "output": "â ¥â â ‘⠟⠥⠊â â â «" }, { "input": "unequivocal", "output": "â ¥â â ‘⠟⠥⠊⠧⠕⠉â â ‡" }, { "input": "unequivocally", "output": "â ¥â â ‘⠟⠥⠊⠧⠕⠉⠠⠽" }, { "input": "unerring", "output": "â ¥â â »â —â Œ" }, { "input": "unerringly", "output": "â ¥â â »â —⠌⠇⠽" }, { "input": "unessential", "output": "â ¥â â ‘⠎⠎⠢⠞⠊â â ‡" }, { "input": "unethical", "output": "â ¥â â ‘⠹⠊⠉â â ‡" }, { "input": "uneven", "output": "â ¥â â ‘â §â ¢" }, { "input": "unevener", "output": "â ¥â â ‘⠧⠢⠻" }, { "input": "unevenest", "output": "â ¥â â ‘⠧⠢⠑⠌" }, { "input": "unevenly", "output": "â ¥â â ‘⠧⠢⠇⠽" }, { "input": "unevenness", "output": "â ¥â â ‘⠧⠢⠰⠎" }, { "input": "unevenness's", "output": "â ¥â â ‘⠧⠢⠰⠎⠄⠎" }, { "input": "uneventful", "output": "â ¥â â ‘⠧⠢⠞⠰⠇" }, { "input": "uneventfully", "output": "â ¥â â ‘⠧⠢⠞⠰⠇⠇⠽" }, { "input": "unexampled", "output": "â ¥â â ‘â ­â â â â ‡â «" }, { "input": "unexceptionable", "output": "â ¥â â ‘⠭⠉⠑â â °â â â ¼" }, { "input": "unexceptionably", "output": "â ¥â â ‘⠭⠉⠑â â °â â â ƒâ ‡â ½" }, { "input": "unexceptional", "output": "â ¥â â ‘⠭⠉⠑â â °â â â ‡" }, { "input": "unexceptionally", "output": "â ¥â â ‘⠭⠉⠑â â °â â  â ½" }, { "input": "unexcited", "output": "â ¥â â ‘⠭⠉⠊⠞⠫" }, { "input": "unexciting", "output": "â ¥â â ‘⠭⠉⠊⠞⠌" }, { "input": "unexcused", "output": "â ¥â â ‘⠭⠉⠥⠎⠫" }, { "input": "unexpected", "output": "â ¥â â ‘â ­â â ‘⠉⠞⠫" }, { "input": "unexpectedly", "output": "â ¥â â ‘â ­â â ‘⠉⠞⠫⠇⠽" }, { "input": "unexpectedness's", "output": "â ¥â â ‘â ­â â ‘⠉⠞⠫⠰⠎⠄⠎" }, { "input": "unexpired", "output": "â ¥â â ‘â ­â â Šâ —â «" }, { "input": "unexplained", "output": "â ¥â â ‘â ­â â ‡â â ”â «" }, { "input": "unexploited", "output": "â ¥â â ‘â ­â â ‡â •â Šâ žâ «" }, { "input": "unexplored", "output": "â ¥â â ‘â ­â â ‡â •â —â «" }, { "input": "unexposed", "output": "â ¥â â ‘â ­â â •â Žâ «" }, { "input": "unexpressed", "output": "â ¥â â ‘â ­â â —â ‘â Žâ Žâ «" }, { "input": "unexpurgated", "output": "â ¥â â ‘â ­â â ¥â —â ›â â žâ «" }, { "input": "unfading", "output": "â ¥â â ‹â â ™â Œ" }, { "input": "unfailing", "output": "â ¥â â ‹â â Šâ ‡â Œ" }, { "input": "unfailingly", "output": "â ¥â â ‹â â Šâ ‡â Œâ ‡â ½" }, { "input": "unfair", "output": "â ¥â â ‹â â Šâ —" }, { "input": "unfairer", "output": "â ¥â â ‹â â Šâ —â »" }, { "input": "unfairest", "output": "â ¥â â ‹â â Šâ —â ‘â Œ" }, { "input": "unfairly", "output": "â ¥â â ‹â â Šâ —⠇⠽" }, { "input": "unfairness", "output": "â ¥â â ‹â â Šâ —â °â Ž" }, { "input": "unfairness's", "output": "â ¥â â ‹â â Šâ —â °â Žâ „â Ž" }, { "input": "unfaithful", "output": "â ¥â â ‹â â Šâ ¹â °â ‡" }, { "input": "unfaithfully", "output": "â ¥â â ‹â â Šâ ¹â °â ‡â ‡â ½" }, { "input": "unfaithfulness", "output": "â ¥â â ‹â â Šâ ¹â °â ‡â °â Ž" }, { "input": "unfaithfulness's", "output": "â ¥â â ‹â â Šâ ¹â °â ‡â °â Žâ „â Ž" }, { "input": "unfamiliar", "output": "â ¥â â ‹â â â Šâ ‡â Šâ œ" }, { "input": "unfamiliarity", "output": "â ¥â â ‹â â â Šâ ‡â Šâ œâ °â ½" }, { "input": "unfamiliarity's", "output": "â ¥â â ‹â â â Šâ ‡â Šâ œâ °â ½â „â Ž" }, { "input": "unfashionable", "output": "â ¥â â ‹â â ©â Šâ •â â â ¼" }, { "input": "unfasten", "output": "â ¥â â ‹â â Œâ ¢" }, { "input": "unfastened", "output": "â ¥â â ‹â â Œâ ¢â «" }, { "input": "unfastening", "output": "â ¥â â ‹â â Œâ ¢â Œ" }, { "input": "unfastens", "output": "â ¥â â ‹â â Œâ ¢â Ž" }, { "input": "unfathomable", "output": "â ¥â â ‹â â ¹â •â â â ¼" }, { "input": "unfavorable", "output": "â ¥â â ‹â â §â •â —â â ¼" }, { "input": "unfavorably", "output": "â ¥â â ‹â â §â •â —â â ƒâ ‡â ½" }, { "input": "unfeasible", "output": "â ¥â â ‹â ‚â Žâ Šâ ¼" }, { "input": "unfed", "output": "â ¥â â ‹â «" }, { "input": "unfeeling", "output": "â ¥â â ‹â ‘⠑⠇⠌" }, { "input": "unfeelingly", "output": "â ¥â â ‹â ‘⠑⠇⠌⠇⠽" }, { "input": "unfeigned", "output": "â ¥â â ‹â ‘â Šâ ›â â «" }, { "input": "unfeminine", "output": "â ¥â â ‹â ‘â â ”⠔⠑" }, { "input": "unfertilized", "output": "â ¥â â ‹â »â žâ Šâ ‡â Šâ µâ «" }, { "input": "unfetter", "output": "â ¥â â ‹â ‘â žâ žâ »" }, { "input": "unfettered", "output": "â ¥â â ‹â ‘⠞⠞⠻⠫" }, { "input": "unfettering", "output": "â ¥â â ‹â ‘⠞⠞⠻⠌" }, { "input": "unfetters", "output": "â ¥â â ‹â ‘⠞⠞⠻⠎" }, { "input": "unfilled", "output": "â ¥â â ‹â Šâ ‡â ‡â «" }, { "input": "unfiltered", "output": "â ¥â â ‹â Šâ ‡â žâ »â «" }, { "input": "unfinished", "output": "â ¥â â ‹â ”â Šâ ©â «" }, { "input": "unfit", "output": "â ¥â â ‹â Šâ ž" }, { "input": "unfitness", "output": "â ¥â â ‹â Šâ žâ °â Ž" }, { "input": "unfitness's", "output": "â ¥â â ‹â Šâ žâ °â Žâ „â Ž" }, { "input": "unfits", "output": "â ¥â â ‹â Šâ žâ Ž" }, { "input": "unfitted", "output": "â ¥â â ‹â Šâ žâ žâ «" }, { "input": "unfitting", "output": "â ¥â â ‹â Šâ žâ žâ Œ" }, { "input": "unfix", "output": "â ¥â â ‹â Šâ ­" }, { "input": "unfixed", "output": "â ¥â â ‹â Šâ ­â «" }, { "input": "unfixes", "output": "â ¥â â ‹â Šâ ­â ‘â Ž" }, { "input": "unfixing", "output": "â ¥â â ‹â Šâ ­â Œ" }, { "input": "unflagging", "output": "â ¥â â ‹â ‡â â ¶â Œ" }, { "input": "unflaggingly", "output": "â ¥â â ‹â ‡â â ¶â Œâ ‡â ½" }, { "input": "unflappability", "output": "â ¥â â ‹â ‡â â â â â ƒâ Šâ ‡â °â ½" }, { "input": "unflappability's", "output": "â ¥â â ‹â ‡â â â â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "unflappable", "output": "â ¥â â ‹â ‡â â â â â ¼" }, { "input": "unflappably", "output": "â ¥â â ‹â ‡â â â â â ƒâ ‡â ½" }, { "input": "unflattering", "output": "â ¥â â ‹â ‡â â žâ žâ »â Œ" }, { "input": "unflavored", "output": "â ¥â â ‹â ‡â â §â •â —â «" }, { "input": "unfledged", "output": "â ¥â â ‹â ‡â «â ›â «" }, { "input": "unflinching", "output": "â ¥â â ‹â ‡â ”â ¡â Œ" }, { "input": "unflinchingly", "output": "â ¥â â ‹â ‡â ”⠡⠌⠇⠽" }, { "input": "unfold", "output": "â ¥â â ‹â •⠇⠙" }, { "input": "unfolded", "output": "â ¥â â ‹â •⠇⠙⠫" }, { "input": "unfolding", "output": "â ¥â â ‹â •⠇⠙⠌" }, { "input": "unfolds", "output": "â ¥â â ‹â •⠇⠙⠎" }, { "input": "unforced", "output": "â ¥â â ¿â ‰â «" }, { "input": "unforeseeable", "output": "â ¥â â ¿â ‘â Žâ ‘â ‘â â ¼" }, { "input": "unforeseen", "output": "â ¥â â ¿â ‘â Žâ ‘â ¢" }, { "input": "unforgettable", "output": "â ¥â â ¿â ›â ‘â žâ žâ â ¼" }, { "input": "unforgettably", "output": "â ¥â â ¿â ›â ‘â žâ žâ â ƒâ ‡â ½" }, { "input": "unforgivable", "output": "â ¥â â ¿â ›â Šâ §â â ¼" }, { "input": "unforgiving", "output": "â ¥â â ¿â ›â Šâ §â Œ" }, { "input": "unforgotten", "output": "â ¥â â ¿â ›â •â žâ žâ ¢" }, { "input": "unformed", "output": "â ¥â â ¿â â «" }, { "input": "unformulated", "output": "â ¥â â ¿â â ¥â ‡â â žâ «" }, { "input": "unfortified", "output": "â ¥â â ¿â žâ Šâ ‹â Šâ «" }, { "input": "unfortunate", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘" }, { "input": "unfortunate's", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘â „â Ž" }, { "input": "unfortunately", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘⠇⠽" }, { "input": "unfortunates", "output": "â ¥â â ¿â žâ ¥â â â žâ ‘â Ž" }, { "input": "unfounded", "output": "â ¥â â ‹â ¨â ™â «" }, { "input": "unframed", "output": "â ¥â â ‹â —â â â «" }, { "input": "unfreeze", "output": "â ¥â â ‹â —⠑⠑⠵⠑" }, { "input": "unfreezes", "output": "â ¥â â ‹â —⠑⠑⠵⠑⠎" }, { "input": "unfreezing", "output": "â ¥â â ‹â —⠑⠑⠵⠌" }, { "input": "unfrequented", "output": "â ¥â â ‹â —⠑⠟⠥⠢⠞⠫" }, { "input": "unfriendlier", "output": "â ¥â â ‹â —⠇⠊⠻" }, { "input": "unfriendliest", "output": "â ¥â â ‹â —⠇⠊⠑⠌" }, { "input": "unfriendliness", "output": "â ¥â â ‹â —⠇⠊⠰⠎" }, { "input": "unfriendliness's", "output": "â ¥â â ‹â —⠇⠊⠰⠎⠄⠎" }, { "input": "unfriendly", "output": "â ¥â â ‹â —⠇⠽" }, { "input": "unfrock", "output": "â ¥â â ‹â —⠕⠉⠅" }, { "input": "unfrocked", "output": "â ¥â â ‹â —⠕⠉⠅⠫" }, { "input": "unfrocking", "output": "â ¥â â ‹â —⠕⠉⠅⠌" }, { "input": "unfrocks", "output": "â ¥â â ‹â —⠕⠉⠅⠎" }, { "input": "unfroze", "output": "â ¥â â ‹â —⠕⠵⠑" }, { "input": "unfrozen", "output": "â ¥â â ‹â —⠕⠵⠢" }, { "input": "unfruitful", "output": "â ¥â â ‹â —⠥⠊⠞⠰⠇" }, { "input": "unfulfilled", "output": "â ¥â â ‹â ¥â ‡â ‹â Šâ ‡â ‡â «" }, { "input": "unfunded", "output": "â ¥â â ‹â ¥â â ™â «" }, { "input": "unfunny", "output": "â ¥â â ‹â ¥â â â ½" }, { "input": "unfurl", "output": "â ¥â â ‹â ¥â —â ‡" }, { "input": "unfurled", "output": "â ¥â â ‹â ¥â —⠇⠫" }, { "input": "unfurling", "output": "â ¥â â ‹â ¥â —⠇⠌" }, { "input": "unfurls", "output": "â ¥â â ‹â ¥â —⠇⠎" }, { "input": "unfurnished", "output": "â ¥â â ‹â ¥â —â â Šâ ©â «" }, { "input": "ungainlier", "output": "â ¥â â ›â â ”⠇⠊⠻" }, { "input": "ungainliest", "output": "â ¥â â ›â â ”⠇⠊⠑⠌" }, { "input": "ungainliness", "output": "â ¥â â ›â â ”⠇⠊⠰⠎" }, { "input": "ungainliness's", "output": "â ¥â â ›â â ”⠇⠊⠰⠎⠄⠎" }, { "input": "ungainly", "output": "â ¥â â ›â â ”⠇⠽" }, { "input": "ungenerous", "output": "â ¥â â ›â ¢â »â ³â Ž" }, { "input": "ungentle", "output": "â ¥â â ›â ¢â žâ ‡â ‘" }, { "input": "ungentlemanly", "output": "â ¥â â ›â ¢â žâ ‡â ‘â â â â ‡â ½" }, { "input": "unglued", "output": "â ¥â â ›â ‡â ¥â «" }, { "input": "ungodlier", "output": "â ¥â â ›â •⠙⠇⠊⠻" }, { "input": "ungodliest", "output": "â ¥â â ›â •⠙⠇⠊⠑⠌" }, { "input": "ungodliness", "output": "â ¥â â ›â •⠙⠇⠊⠰⠎" }, { "input": "ungodliness's", "output": "â ¥â â ›â •⠙⠇⠊⠰⠎⠄⠎" }, { "input": "ungodly", "output": "â ¥â â ›â •⠙⠇⠽" }, { "input": "ungovernable", "output": "â ¥â â ›â •â §â »â â â ¼" }, { "input": "ungoverned", "output": "â ¥â â ›â •â §â »â â «" }, { "input": "ungraceful", "output": "â ¥â â ›â —â â ‰â ‘â °â ‡" }, { "input": "ungracefully", "output": "â ¥â â ›â —â â ‰â ‘⠰⠇⠇⠽" }, { "input": "ungracious", "output": "â ¥â â ›â —â â ‰â Šâ ³â Ž" }, { "input": "ungraded", "output": "â ¥â â ›â —â â ™â «" }, { "input": "ungrammatical", "output": "â ¥â â ›â —â â â â â žâ Šâ ‰â â ‡" }, { "input": "ungrammatically", "output": "â ¥â â ›â —â â â â â žâ Šâ ‰â  â ½" }, { "input": "ungrateful", "output": "â ¥â â ›â —â â žâ ‘â °â ‡" }, { "input": "ungratefully", "output": "â ¥â â ›â —â â žâ ‘⠰⠇⠇⠽" }, { "input": "ungratefulness", "output": "â ¥â â ›â —â â žâ ‘⠰⠇⠰⠎" }, { "input": "ungratefulness's", "output": "â ¥â â ›â —â â žâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "ungrudging", "output": "â ¥â â ›â —⠥⠙⠛⠌" }, { "input": "unguarded", "output": "â ¥â â ›â ¥â œâ ™â «" }, { "input": "unguent", "output": "â ¥â â ›â ¥â ¢â ž" }, { "input": "unguent's", "output": "â ¥â â ›â ¥â ¢â žâ „â Ž" }, { "input": "unguents", "output": "â ¥â â ›â ¥â ¢â žâ Ž" }, { "input": "unguided", "output": "â ¥â â ›â ¥â Šâ ™â «" }, { "input": "ungulate", "output": "â ¥â â ›â ¥â ‡â â žâ ‘" }, { "input": "ungulate's", "output": "â ¥â â ›â ¥â ‡â â žâ ‘â „â Ž" }, { "input": "ungulates", "output": "â ¥â â ›â ¥â ‡â â žâ ‘â Ž" }, { "input": "unhallowed", "output": "â ¥â â “â â ‡â ‡â ªâ «" }, { "input": "unhampered", "output": "â ¥â â “â â â â »â «" }, { "input": "unhand", "output": "â ¥â â “â ¯" }, { "input": "unhanded", "output": "â ¥â â “⠯⠫" }, { "input": "unhandier", "output": "â ¥â â “⠯⠊⠻" }, { "input": "unhandiest", "output": "â ¥â â “⠯⠊⠑⠌" }, { "input": "unhanding", "output": "â ¥â â “⠯⠌" }, { "input": "unhands", "output": "â ¥â â “⠯⠎" }, { "input": "unhandy", "output": "â ¥â â “⠯⠽" }, { "input": "unhappier", "output": "â ¥â â “â â â â Šâ »" }, { "input": "unhappiest", "output": "â ¥â â “â â â â Šâ ‘â Œ" }, { "input": "unhappily", "output": "â ¥â â “â â â â Šâ ‡â ½" }, { "input": "unhappiness", "output": "â ¥â â “â â â â Šâ °â Ž" }, { "input": "unhappiness's", "output": "â ¥â â “â â â â Šâ °â Žâ „â Ž" }, { "input": "unhappy", "output": "â ¥â â “â â â â ½" }, { "input": "unhardened", "output": "â ¥â â “⠜⠙⠢⠫" }, { "input": "unharmed", "output": "â ¥â â “â œâ â «" }, { "input": "unharness", "output": "â ¥â â “⠜⠰⠎" }, { "input": "unharnessed", "output": "â ¥â â “⠜⠰⠎⠫" }, { "input": "unharnesses", "output": "â ¥â â “⠜⠰⠎⠑⠎" }, { "input": "unharnessing", "output": "â ¥â â “⠜⠰⠎⠌" }, { "input": "unharvested", "output": "â ¥â â “⠜⠧⠑⠌⠫" }, { "input": "unhatched", "output": "â ¥â â “â â žâ ¡â «" }, { "input": "unhealed", "output": "â ¥â â “⠂⠇⠫" }, { "input": "unhealthful", "output": "â ¥â â “⠂⠇⠹⠰⠇" }, { "input": "unhealthier", "output": "â ¥â â “⠂⠇⠹⠊⠻" }, { "input": "unhealthiest", "output": "â ¥â â “⠂⠇⠹⠊⠑⠌" }, { "input": "unhealthiness", "output": "â ¥â â “⠂⠇⠹⠊⠰⠎" }, { "input": "unhealthiness's", "output": "â ¥â â “⠂⠇⠹⠊⠰⠎⠄⠎" }, { "input": "unhealthy", "output": "â ¥â â “⠂⠇⠹⠽" }, { "input": "unheard", "output": "â ¥â â “⠑⠜⠙" }, { "input": "unheated", "output": "â ¥â â “â ‚â žâ «" }, { "input": "unheeded", "output": "â ¥â â “â ‘â «â «" }, { "input": "unhelpful", "output": "â ¥â â “â ‘â ‡â â °â ‡" }, { "input": "unhesitating", "output": "â ¥â â “â ‘â Žâ Šâ žâ â žâ Œ" }, { "input": "unhesitatingly", "output": "â ¥â â “â ‘â Žâ Šâ žâ â žâ Œâ ‡â ½" }, { "input": "unhindered", "output": "â ¥â â “⠔⠙⠻⠫" }, { "input": "unhinge", "output": "â ¥â â “⠌⠑" }, { "input": "unhinged", "output": "â ¥â â “⠌⠫" }, { "input": "unhinges", "output": "â ¥â â “⠌⠑⠎" }, { "input": "unhinging", "output": "â ¥â â “⠌⠌" }, { "input": "unhistorical", "output": "â ¥â â “⠊⠌⠕⠗⠊⠉â â ‡" }, { "input": "unhitch", "output": "â ¥â â “â Šâ žâ ¡" }, { "input": "unhitched", "output": "â ¥â â “â Šâ žâ ¡â «" }, { "input": "unhitches", "output": "â ¥â â “â Šâ žâ ¡â ‘â Ž" }, { "input": "unhitching", "output": "â ¥â â “â Šâ žâ ¡â Œ" }, { "input": "unholier", "output": "â ¥â â “⠕⠇⠊⠻" }, { "input": "unholiest", "output": "â ¥â â “⠕⠇⠊⠑⠌" }, { "input": "unholiness", "output": "â ¥â â “⠕⠇⠊⠰⠎" }, { "input": "unholiness's", "output": "â ¥â â “⠕⠇⠊⠰⠎⠄⠎" }, { "input": "unholy", "output": "â ¥â â “⠕⠇⠽" }, { "input": "unhook", "output": "â ¥â â “â •â •â …" }, { "input": "unhooked", "output": "â ¥â â “â •â •â …â «" }, { "input": "unhooking", "output": "â ¥â â “â •â •â …â Œ" }, { "input": "unhooks", "output": "â ¥â â “â •â •â …â Ž" }, { "input": "unhorse", "output": "â ¥â â “â •â —â Žâ ‘" }, { "input": "unhorsed", "output": "â ¥â â “â •â —â Žâ «" }, { "input": "unhorses", "output": "â ¥â â “â •â —â Žâ ‘â Ž" }, { "input": "unhorsing", "output": "â ¥â â “â •â —â Žâ Œ" }, { "input": "unhurried", "output": "â ¥â â “⠥⠗⠗⠊⠫" }, { "input": "unhurt", "output": "â ¥â â “⠥⠗⠞" }, { "input": "unicameral", "output": "â ¥â â Šâ ‰â â â »â â ‡" }, { "input": "unicellular", "output": "â ¥â â Šâ ‰â ‘⠇⠇⠥⠇⠜" }, { "input": "unicorn", "output": "â ¥â â Šâ ‰â •â —â " }, { "input": "unicorn's", "output": "â ¥â â Šâ ‰â •â —â â „â Ž" }, { "input": "unicorns", "output": "â ¥â â Šâ ‰â •â —â â Ž" }, { "input": "unicycle", "output": "â ¥â â Šâ ‰â ½â ‰â ‡â ‘" }, { "input": "unicycle's", "output": "â ¥â â Šâ ‰â ½â ‰â ‡â ‘â „â Ž" }, { "input": "unicycles", "output": "â ¥â â Šâ ‰â ½â ‰â ‡â ‘â Ž" }, { "input": "unidentifiable", "output": "â ¥â â Šâ ™â ¢â žâ Šâ ‹â Šâ â ¼" }, { "input": "unidentified", "output": "â ¥â â Šâ ™â ¢â žâ Šâ ‹â Šâ «" }, { "input": "unidiomatic", "output": "â ¥â â Šâ ™â Šâ •â â â žâ Šâ ‰" }, { "input": "unidirectional", "output": "â ¥â â Šâ ™â Šâ —⠑⠉⠰â â â ‡" }, { "input": "unification", "output": "â ¥â â Šâ ‹â Šâ ‰â  â " }, { "input": "unification's", "output": "â ¥â â Šâ ‹â Šâ ‰â  â â „â Ž" }, { "input": "unified", "output": "â ¥â â Šâ ‹â Šâ «" }, { "input": "unifies", "output": "â ¥â â Šâ ‹â Šâ ‘â Ž" }, { "input": "uniform", "output": "â ¥â â Šâ ¿â " }, { "input": "uniform's", "output": "â ¥â â Šâ ¿â â „â Ž" }, { "input": "uniformed", "output": "â ¥â â Šâ ¿â â «" }, { "input": "uniforming", "output": "â ¥â â Šâ ¿â â Œ" }, { "input": "uniformity", "output": "â ¥â â Šâ ¿â â °â ½" }, { "input": "uniformity's", "output": "â ¥â â Šâ ¿â â °â ½â „â Ž" }, { "input": "uniformly", "output": "â ¥â â Šâ ¿â â ‡â ½" }, { "input": "uniforms", "output": "â ¥â â Šâ ¿â â Ž" }, { "input": "unify", "output": "â ¥â â Šâ ‹â ½" }, { "input": "unifying", "output": "â ¥â â Šâ ‹â ½â Œ" }, { "input": "unilateral", "output": "â ¥â â Šâ ‡â â žâ »â â ‡" }, { "input": "unilaterally", "output": "â ¥â â Šâ ‡â â žâ »â  â ½" }, { "input": "unimaginable", "output": "â ¥â â Šâ â â ›â ”â â ¼" }, { "input": "unimaginative", "output": "â ¥â â Šâ â â ›â ”â â žâ Šâ §â ‘" }, { "input": "unimaginatively", "output": "â ¥â â Šâ â â ›â ”â â žâ Šâ §â ‘⠇⠽" }, { "input": "unimpaired", "output": "â ¥â â Šâ â â â Šâ —â «" }, { "input": "unimpeachable", "output": "â ¥â â Šâ â â ‚â ¡â â ¼" }, { "input": "unimplementable", "output": "â ¥â â Šâ â â ‡â ‘â °â žâ â ¼" }, { "input": "unimplemented", "output": "â ¥â â Šâ â â ‡â ‘â °â žâ «" }, { "input": "unimportant", "output": "â ¥â â Šâ â â •â —â žâ â â ž" }, { "input": "unimposing", "output": "â ¥â â Šâ â â •â Žâ Œ" }, { "input": "unimpressed", "output": "â ¥â â Šâ â â —â ‘â Žâ Žâ «" }, { "input": "unimpressive", "output": "â ¥â â Šâ â â —â ‘â Žâ Žâ Šâ §â ‘" }, { "input": "unimproved", "output": "â ¥â â Šâ â â —â •â §â «" }, { "input": "unincorporated", "output": "â ¥â â ”⠉⠕⠗â â •â —â â žâ «" }, { "input": "uninfected", "output": "â ¥â â ”⠋⠑⠉⠞⠫" }, { "input": "uninfluenced", "output": "â ¥â â ”⠋⠇⠥⠰⠑⠙" }, { "input": "uninformative", "output": "â ¥â â ”â ¿â â â žâ Šâ §â ‘" }, { "input": "uninformed", "output": "â ¥â â ”â ¿â â «" }, { "input": "uninhabitable", "output": "â ¥â â ”â “â â ƒâ Šâ žâ â ¼" }, { "input": "uninhabited", "output": "â ¥â â ”â “â â ƒâ Šâ žâ «" }, { "input": "uninhibited", "output": "â ¥â â ”⠓⠊⠃⠊⠞⠫" }, { "input": "uninhibitedly", "output": "â ¥â â ”⠓⠊⠃⠊⠞⠫⠇⠽" }, { "input": "uninitialized", "output": "â ¥â â ”â Šâ žâ Šâ â ‡â Šâ µâ «" }, { "input": "uninitiated", "output": "â ¥â â ”â Šâ žâ Šâ â žâ «" }, { "input": "uninjured", "output": "â ¥â â ”⠚⠥⠗⠫" }, { "input": "uninspired", "output": "â ¥â â ”â Žâ â Šâ —â «" }, { "input": "uninspiring", "output": "â ¥â â ”â Žâ â Šâ —â Œ" }, { "input": "uninstall", "output": "â ¥â â ”â Œâ â ‡â ‡" }, { "input": "uninstallable", "output": "â ¥â â ”â Œâ â ‡â ‡â â ¼" }, { "input": "uninstalled", "output": "â ¥â â ”â Œâ â ‡â ‡â «" }, { "input": "uninstaller", "output": "â ¥â â ”â Œâ â ‡â ‡â »" }, { "input": "uninstaller's", "output": "â ¥â â ”â Œâ â ‡â ‡â »â „â Ž" }, { "input": "uninstallers", "output": "â ¥â â ”â Œâ â ‡â ‡â »â Ž" }, { "input": "uninstalling", "output": "â ¥â â ”â Œâ â ‡â ‡â Œ" }, { "input": "uninstalls", "output": "â ¥â â ”â Œâ â ‡â ‡â Ž" }, { "input": "uninstructed", "output": "â ¥â â ”⠌⠗⠥⠉⠞⠫" }, { "input": "uninsured", "output": "â ¥â â ”⠎⠥⠗⠫" }, { "input": "unintelligent", "output": "â ¥â â ”⠞⠑⠇⠇⠊⠛⠢⠞" }, { "input": "unintelligible", "output": "â ¥â â ”⠞⠑⠇⠇⠊⠛⠊⠼" }, { "input": "unintelligibly", "output": "â ¥â â ”⠞⠑⠇⠇⠊⠛⠊⠃⠇⠽" }, { "input": "unintended", "output": "â ¥â â ”⠞⠢⠙⠫" }, { "input": "unintentional", "output": "â ¥â â ”⠞⠢⠰â â â ‡" }, { "input": "unintentionally", "output": "â ¥â â ”⠞⠢⠰â â  â ½" }, { "input": "uninterested", "output": "â ¥â â ”⠞⠻⠑⠌⠫" }, { "input": "uninteresting", "output": "â ¥â â ”⠞⠻⠑⠌⠌" }, { "input": "uninterpreted", "output": "â ¥â â ”â žâ »â â —â ‘â žâ «" }, { "input": "uninterrupted", "output": "â ¥â â ”⠞⠻⠗⠥â â žâ «" }, { "input": "uninvited", "output": "â ¥â â ”â §â Šâ žâ «" }, { "input": "uninviting", "output": "â ¥â â ”â §â Šâ žâ Œ" }, { "input": "union", "output": "â ¥â â Šâ •â " }, { "input": "union's", "output": "â ¥â â Šâ •â â „â Ž" }, { "input": "unionism's", "output": "â ¥â â Šâ •â â Šâ Žâ â „â Ž" }, { "input": "unionization", "output": "â ¥â â Šâ •â â Šâ µâ  â " }, { "input": "unionization's", "output": "â ¥â â Šâ •â â Šâ µâ  â â „â Ž" }, { "input": "unionize", "output": "â ¥â â Šâ •â â Šâ µâ ‘" }, { "input": "unionized", "output": "â ¥â â Šâ •â â Šâ µâ «" }, { "input": "unionizes", "output": "â ¥â â Šâ •â â Šâ µâ ‘â Ž" }, { "input": "unionizing", "output": "â ¥â â Šâ •â â Šâ µâ Œ" }, { "input": "unions", "output": "â ¥â â Šâ •â â Ž" }, { "input": "unique", "output": "â ¥â â Šâ Ÿâ ¥â ‘" }, { "input": "uniquely", "output": "â ¥â â Šâ Ÿâ ¥â ‘⠇⠽" }, { "input": "uniqueness", "output": "â ¥â â Šâ Ÿâ ¥â ‘â °â Ž" }, { "input": "uniqueness's", "output": "â ¥â â Šâ Ÿâ ¥â ‘â °â Žâ „â Ž" }, { "input": "uniquer", "output": "â ¥â â Šâ Ÿâ ¥â »" }, { "input": "uniquest", "output": "â ¥â â Šâ Ÿâ ¥â ‘â Œ" }, { "input": "unisex", "output": "â ¥â â Šâ Žâ ‘â ­" }, { "input": "unisex's", "output": "â ¥â â Šâ Žâ ‘â ­â „â Ž" }, { "input": "unison", "output": "â ¥â â Šâ Žâ •â " }, { "input": "unison's", "output": "â ¥â â Šâ Žâ •â â „â Ž" }, { "input": "unit", "output": "â ¥â â Šâ ž" }, { "input": "unit's", "output": "â ¥â â Šâ žâ „â Ž" }, { "input": "unitary", "output": "â ¥â â Šâ žâ œâ ½" }, { "input": "unite", "output": "â ¥â â Šâ žâ ‘" }, { "input": "united", "output": "â ¥â â Šâ žâ «" }, { "input": "unitedly", "output": "â ¥â â Šâ žâ «â ‡â ½" }, { "input": "unites", "output": "â ¥â â Šâ žâ ‘â Ž" }, { "input": "unities", "output": "â ¥â â Šâ žâ Šâ ‘â Ž" }, { "input": "uniting", "output": "â ¥â â Šâ žâ Œ" }, { "input": "unitize", "output": "â ¥â â Šâ žâ Šâ µâ ‘" }, { "input": "unitized", "output": "â ¥â â Šâ žâ Šâ µâ «" }, { "input": "unitizes", "output": "â ¥â â Šâ žâ Šâ µâ ‘â Ž" }, { "input": "unitizing", "output": "â ¥â â Šâ žâ Šâ µâ Œ" }, { "input": "units", "output": "â ¥â â Šâ žâ Ž" }, { "input": "unity", "output": "â ¥â â °â ½" }, { "input": "unity's", "output": "â ¥â â °â ½â „â Ž" }, { "input": "univalent", "output": "â ¥â â Šâ §â â ‡â ¢â ž" }, { "input": "univalve", "output": "â ¥â â Šâ §â â ‡â §â ‘" }, { "input": "univalve's", "output": "â ¥â â Šâ §â â ‡â §â ‘â „â Ž" }, { "input": "univalves", "output": "â ¥â â Šâ §â â ‡â §â ‘â Ž" }, { "input": "universal", "output": "â ¥â â Šâ §â »â Žâ â ‡" }, { "input": "universal's", "output": "â ¥â â Šâ §â »â Žâ â ‡â „â Ž" }, { "input": "universality", "output": "â ¥â â Šâ §â »â Žâ â ‡â °â ½" }, { "input": "universality's", "output": "â ¥â â Šâ §â »â Žâ â ‡â °â ½â „â Ž" }, { "input": "universalize", "output": "â ¥â â Šâ §â »â Žâ â ‡â Šâ µâ ‘" }, { "input": "universalized", "output": "â ¥â â Šâ §â »â Žâ â ‡â Šâ µâ «" }, { "input": "universalizes", "output": "â ¥â â Šâ §â »â Žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "universalizing", "output": "â ¥â â Šâ §â »â Žâ â ‡â Šâ µâ Œ" }, { "input": "universally", "output": "â ¥â â Šâ §â »â Žâ  â ½" }, { "input": "universals", "output": "â ¥â â Šâ §â »â Žâ â ‡â Ž" }, { "input": "universe", "output": "â ¥â â Šâ §â »â Žâ ‘" }, { "input": "universe's", "output": "â ¥â â Šâ §â »â Žâ ‘â „â Ž" }, { "input": "universes", "output": "â ¥â â Šâ §â »â Žâ ‘â Ž" }, { "input": "universities", "output": "â ¥â â Šâ §â »â Žâ Šâ žâ Šâ ‘â Ž" }, { "input": "university", "output": "â ¥â â Šâ §â »â Žâ °â ½" }, { "input": "university's", "output": "â ¥â â Šâ §â »â Žâ °â ½â „â Ž" }, { "input": "unjust", "output": "â ¥â â šâ ¥â Œ" }, { "input": "unjustifiable", "output": "â ¥â â šâ ¥â Œâ Šâ ‹â Šâ â ¼" }, { "input": "unjustified", "output": "â ¥â â šâ ¥â Œâ Šâ ‹â Šâ «" }, { "input": "unjustly", "output": "â ¥â â šâ ¥â Œâ ‡â ½" }, { "input": "unkempt", "output": "â ¥â â …â ‘â â â ž" }, { "input": "unkind", "output": "â ¥â â …⠔⠙" }, { "input": "unkinder", "output": "â ¥â â …⠔⠙⠻" }, { "input": "unkindest", "output": "â ¥â â …⠔⠙⠑⠌" }, { "input": "unkindlier", "output": "â ¥â â …⠔⠙⠇⠊⠻" }, { "input": "unkindliest", "output": "â ¥â â …⠔⠙⠇⠊⠑⠌" }, { "input": "unkindly", "output": "â ¥â â …⠔⠙⠇⠽" }, { "input": "unkindness", "output": "â ¥â â …⠔⠙⠰⠎" }, { "input": "unkindness's", "output": "â ¥â â …⠔⠙⠰⠎⠄⠎" }, { "input": "unknowable", "output": "â ¥â â â …â â ¼" }, { "input": "unknowable's", "output": "â ¥â â â …â â ¼â „â Ž" }, { "input": "unknowing", "output": "â ¥â â â …â Œ" }, { "input": "unknowingly", "output": "â ¥â â â …⠌⠇⠽" }, { "input": "unknowings", "output": "â ¥â â â …⠌⠎" }, { "input": "unknown", "output": "â ¥â â â …â " }, { "input": "unknown's", "output": "â ¥â â â …â â „â Ž" }, { "input": "unknowns", "output": "â ¥â â â …â â Ž" }, { "input": "unlabeled", "output": "â ¥â â ‡â â ƒâ ‘⠇⠫" }, { "input": "unlace", "output": "â ¥â â ‡â â ‰â ‘" }, { "input": "unlaced", "output": "â ¥â â ‡â â ‰â «" }, { "input": "unlaces", "output": "â ¥â â ‡â â ‰â ‘â Ž" }, { "input": "unlacing", "output": "â ¥â â ‡â â ‰â Œ" }, { "input": "unladen", "output": "â ¥â â ‡â â ™â ¢" }, { "input": "unladylike", "output": "â ¥â â ‡â â ™â ½â ‡â Šâ …â ‘" }, { "input": "unlatch", "output": "â ¥â â ‡â â žâ ¡" }, { "input": "unlatched", "output": "â ¥â â ‡â â žâ ¡â «" }, { "input": "unlatches", "output": "â ¥â â ‡â â žâ ¡â ‘â Ž" }, { "input": "unlatching", "output": "â ¥â â ‡â â žâ ¡â Œ" }, { "input": "unlawful", "output": "â ¥â â ‡â â ºâ °â ‡" }, { "input": "unlawfully", "output": "â ¥â â ‡â â ºâ °â ‡â ‡â ½" }, { "input": "unlawfulness", "output": "â ¥â â ‡â â ºâ °â ‡â °â Ž" }, { "input": "unlawfulness's", "output": "â ¥â â ‡â â ºâ °â ‡â °â Žâ „â Ž" }, { "input": "unleaded", "output": "â ¥â â ‡â ‚⠙⠫" }, { "input": "unleaded's", "output": "â ¥â â ‡â ‚⠙⠫⠄⠎" }, { "input": "unlearn", "output": "â ¥â â ‡â ‘â œâ " }, { "input": "unlearned", "output": "â ¥â â ‡â ‘â œâ â «" }, { "input": "unlearning", "output": "â ¥â â ‡â ‘â œâ â Œ" }, { "input": "unlearns", "output": "â ¥â â ‡â ‘â œâ â Ž" }, { "input": "unleash", "output": "â ¥â â ‡â ‚â ©" }, { "input": "unleashed", "output": "â ¥â â ‡â ‚â ©â «" }, { "input": "unleashes", "output": "â ¥â â ‡â ‚â ©â ‘â Ž" }, { "input": "unleashing", "output": "â ¥â â ‡â ‚â ©â Œ" }, { "input": "unleavened", "output": "â ¥â â ‡â ‚⠧⠢⠫" }, { "input": "unless", "output": "â ¥â â ¨â Ž" }, { "input": "unlettered", "output": "â ¥â â ‡â —â «" }, { "input": "unlicensed", "output": "â ¥â â ‡â Šâ ‰â ¢â Žâ «" }, { "input": "unlighted", "output": "â ¥â â ‡â Šâ £â žâ «" }, { "input": "unlikable", "output": "â ¥â â ‡â Šâ …â â ¼" }, { "input": "unlike", "output": "â ¥â â ‡â Šâ …â ‘" }, { "input": "unlikelier", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠻" }, { "input": "unlikeliest", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠑⠌" }, { "input": "unlikelihood", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠓⠕⠕⠙" }, { "input": "unlikelihood's", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠓⠕⠕⠙⠄⠎" }, { "input": "unlikeliness", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠰⠎" }, { "input": "unlikeliness's", "output": "â ¥â â ‡â Šâ …⠑⠇⠊⠰⠎⠄⠎" }, { "input": "unlikely", "output": "â ¥â â ‡â Šâ …⠑⠇⠽" }, { "input": "unlikeness", "output": "â ¥â â ‡â Šâ …â ‘â °â Ž" }, { "input": "unlikeness's", "output": "â ¥â â ‡â Šâ …â ‘â °â Žâ „â Ž" }, { "input": "unlimber", "output": "â ¥â â ‡â Šâ â ƒâ »" }, { "input": "unlimbered", "output": "â ¥â â ‡â Šâ â ƒâ »â «" }, { "input": "unlimbering", "output": "â ¥â â ‡â Šâ â ƒâ »â Œ" }, { "input": "unlimbers", "output": "â ¥â â ‡â Šâ â ƒâ »â Ž" }, { "input": "unlimited", "output": "â ¥â â ‡â Šâ â Šâ žâ «" }, { "input": "unlined", "output": "â ¥â â ‡â ”â «" }, { "input": "unlisted", "output": "â ¥â â ‡â Šâ Œâ «" }, { "input": "unlivable", "output": "â ¥â â ‡â Šâ §â â ¼" }, { "input": "unload", "output": "â ¥â â ‡â •â â ™" }, { "input": "unloaded", "output": "â ¥â â ‡â •â â ™â «" }, { "input": "unloading", "output": "â ¥â â ‡â •â â ™â Œ" }, { "input": "unloads", "output": "â ¥â â ‡â •â â ™â Ž" }, { "input": "unlock", "output": "â ¥â â ‡â •⠉⠅" }, { "input": "unlocked", "output": "â ¥â â ‡â •⠉⠅⠫" }, { "input": "unlocking", "output": "â ¥â â ‡â •⠉⠅⠌" }, { "input": "unlocks", "output": "â ¥â â ‡â •⠉⠅⠎" }, { "input": "unloose", "output": "â ¥â â ‡â •â •â Žâ ‘" }, { "input": "unloosed", "output": "â ¥â â ‡â •â •â Žâ «" }, { "input": "unloosen", "output": "â ¥â â ‡â •â •â Žâ ¢" }, { "input": "unloosened", "output": "â ¥â â ‡â •⠕⠎⠢⠫" }, { "input": "unloosening", "output": "â ¥â â ‡â •⠕⠎⠢⠌" }, { "input": "unloosens", "output": "â ¥â â ‡â •⠕⠎⠢⠎" }, { "input": "unlooses", "output": "â ¥â â ‡â •â •â Žâ ‘â Ž" }, { "input": "unloosing", "output": "â ¥â â ‡â •â •â Žâ Œ" }, { "input": "unlovable", "output": "â ¥â â ‡â •â §â â ¼" }, { "input": "unloved", "output": "â ¥â â ‡â •â §â «" }, { "input": "unlovelier", "output": "â ¥â â ‡â •⠧⠑⠇⠊⠻" }, { "input": "unloveliest", "output": "â ¥â â ‡â •⠧⠑⠇⠊⠑⠌" }, { "input": "unloving", "output": "â ¥â â ‡â •â §â Œ" }, { "input": "unluckier", "output": "â ¥â â ‡â ¥â ‰â …â Šâ »" }, { "input": "unluckiest", "output": "â ¥â â ‡â ¥â ‰â …â Šâ ‘â Œ" }, { "input": "unluckily", "output": "â ¥â â ‡â ¥â ‰â …⠊⠇⠽" }, { "input": "unluckiness", "output": "â ¥â â ‡â ¥â ‰â …â Šâ °â Ž" }, { "input": "unluckiness's", "output": "â ¥â â ‡â ¥â ‰â …â Šâ °â Žâ „â Ž" }, { "input": "unlucky", "output": "â ¥â â ‡â ¥â ‰â …â ½" }, { "input": "unmade", "output": "â ¥â â â â ™â ‘" }, { "input": "unmake", "output": "â ¥â â â â …â ‘" }, { "input": "unmakes", "output": "â ¥â â â â …â ‘â Ž" }, { "input": "unmaking", "output": "â ¥â â â â …â Œ" }, { "input": "unman", "output": "â ¥â â â â " }, { "input": "unmanageable", "output": "â ¥â â â â â â ›â ‘â â ¼" }, { "input": "unmanlier", "output": "â ¥â â â â â ‡â Šâ »" }, { "input": "unmanliest", "output": "â ¥â â â â â ‡â Šâ ‘â Œ" }, { "input": "unmanly", "output": "â ¥â â â â â ‡â ½" }, { "input": "unmanned", "output": "â ¥â â â â â â «" }, { "input": "unmannerly", "output": "â ¥â â â â â â »â ‡â ½" }, { "input": "unmanning", "output": "â ¥â â â â â â Œ" }, { "input": "unmans", "output": "â ¥â â â â â Ž" }, { "input": "unmarked", "output": "â ¥â â â œâ …â «" }, { "input": "unmarketable", "output": "â ¥â â â œâ …â ‘â žâ â ¼" }, { "input": "unmarred", "output": "â ¥â â â œâ —â «" }, { "input": "unmarried", "output": "â ¥â â â œâ —â Šâ «" }, { "input": "unmask", "output": "â ¥â â â â Žâ …" }, { "input": "unmasked", "output": "â ¥â â â â Žâ …â «" }, { "input": "unmasking", "output": "â ¥â â â â Žâ …â Œ" }, { "input": "unmasks", "output": "â ¥â â â â Žâ …â Ž" }, { "input": "unmatched", "output": "â ¥â â â â žâ ¡â «" }, { "input": "unmeaning", "output": "â ¥â â â ‚â â Œ" }, { "input": "unmeant", "output": "â ¥â â â ‚â â ž" }, { "input": "unmeasured", "output": "â ¥â â â ‚⠎⠥⠗⠫" }, { "input": "unmediated", "output": "â ¥â â â «â Šâ â žâ «" }, { "input": "unmemorable", "output": "â ¥â â â ‘â â •â —â â ¼" }, { "input": "unmentionable", "output": "â ¥â â â ¢â °â â â ¼" }, { "input": "unmentionable's", "output": "â ¥â â â ¢â °â â â ¼â „â Ž" }, { "input": "unmentionables", "output": "â ¥â â â ¢â °â â â ¼â Ž" }, { "input": "unmentionables's", "output": "â ¥â â â ¢â °â â â ¼â Žâ „â Ž" }, { "input": "unmentioned", "output": "â ¥â â â ¢â °â â «" }, { "input": "unmerciful", "output": "â ¥â â â »â ‰â Šâ °â ‡" }, { "input": "unmercifully", "output": "â ¥â â â »â ‰â Šâ °â ‡â ‡â ½" }, { "input": "unmerited", "output": "â ¥â â â »â Šâ žâ «" }, { "input": "unmindful", "output": "â ¥â â â ”⠙⠰⠇" }, { "input": "unmistakable", "output": "â ¥â â â Šâ Žâ žâ â …â â ¼" }, { "input": "unmistakably", "output": "â ¥â â â Šâ Žâ žâ â …â â ƒâ ‡â ½" }, { "input": "unmitigated", "output": "â ¥â â â Šâ žâ Šâ ›â â žâ «" }, { "input": "unmixed", "output": "â ¥â â â Šâ ­â «" }, { "input": "unmodified", "output": "â ¥â â â •⠙⠊⠋⠊⠫" }, { "input": "unmoral", "output": "â ¥â â â •â —â â ‡" }, { "input": "unmorality", "output": "â ¥â â â •â —â â ‡â °â ½" }, { "input": "unmorality's", "output": "â ¥â â â •â —â â ‡â °â ½â „â Ž" }, { "input": "unmotivated", "output": "â ¥â â â •â žâ Šâ §â â žâ «" }, { "input": "unmounted", "output": "â ¥â â â ¨â žâ «" }, { "input": "unmovable", "output": "â ¥â â â •â §â â ¼" }, { "input": "unmoved", "output": "â ¥â â â •â §â «" }, { "input": "unnameable", "output": "â ¥â â â â â ¼" }, { "input": "unnamed", "output": "â ¥â â â â ™" }, { "input": "unnatural", "output": "â ¥â â â â žâ ¥â —â â ‡" }, { "input": "unnaturally", "output": "â ¥â â â â žâ ¥â —â  â ½" }, { "input": "unnaturalness", "output": "â ¥â â â â žâ ¥â —â â ‡â °â Ž" }, { "input": "unnaturalness's", "output": "â ¥â â â â žâ ¥â —â â ‡â °â Žâ „â Ž" }, { "input": "unnecessarily", "output": "â ¥â â â ‘⠉⠑⠎⠎⠜⠊⠇⠽" }, { "input": "unnecessary", "output": "â ¥â â â ‘â ‰" }, { "input": "unneeded", "output": "â ¥â â â ‘â «â «" }, { "input": "unnerve", "output": "â ¥â â â »â §â ‘" }, { "input": "unnerved", "output": "â ¥â â â »â §â «" }, { "input": "unnerves", "output": "â ¥â â â »â §â ‘â Ž" }, { "input": "unnerving", "output": "â ¥â â â »â §â Œ" }, { "input": "unnoticeable", "output": "â ¥â â â •⠞⠊⠉⠑â â ¼" }, { "input": "unnoticed", "output": "â ¥â â â •⠞⠊⠉⠫" }, { "input": "unnumbered", "output": "â ¥â â â ¥â â ƒâ »â «" }, { "input": "unobjectionable", "output": "â ¥â â •⠃⠚⠑⠉⠰â â â ¼" }, { "input": "unobservant", "output": "â ¥â â •⠃⠎⠻⠧â â â ž" }, { "input": "unobserved", "output": "â ¥â â •⠃⠎⠻⠧⠫" }, { "input": "unobstructed", "output": "â ¥â â •⠃⠌⠗⠥⠉⠞⠫" }, { "input": "unobtainable", "output": "â ¥â â •⠃⠞â â ”â â ¼" }, { "input": "unobtrusive", "output": "â ¥â â •⠃⠞⠗⠥⠎⠊⠧⠑" }, { "input": "unobtrusively", "output": "â ¥â â •⠃⠞⠗⠥⠎⠊⠧⠑⠇⠽" }, { "input": "unobtrusiveness", "output": "â ¥â â •⠃⠞⠗⠥⠎⠊⠧⠑⠰⠎" }, { "input": "unobtrusiveness's", "output": "â ¥â â •⠃⠞⠗⠥⠎⠊⠧⠑⠰⠎⠄⠎" }, { "input": "unoccupied", "output": "â ¥â â •â ’â ¥â â Šâ «" }, { "input": "unoffensive", "output": "â ¥â â ·â ‹â ¢â Žâ Šâ §â ‘" }, { "input": "unofficial", "output": "â ¥â â ·â ‹â Šâ ‰â Šâ â ‡" }, { "input": "unofficially", "output": "â ¥â â ·â ‹â Šâ ‰â Šâ  â ½" }, { "input": "unopened", "output": "â ¥â â •â â ¢â «" }, { "input": "unopposed", "output": "â ¥â â •â â â •â Žâ «" }, { "input": "unorganized", "output": "â ¥â â •â —â ›â â â Šâ µâ «" }, { "input": "unoriginal", "output": "â ¥â â •⠗⠊⠛⠔â â ‡" }, { "input": "unorthodox", "output": "â ¥â â •⠗⠹⠕⠙⠕⠭" }, { "input": "unpack", "output": "â ¥â â â â ‰â …" }, { "input": "unpacked", "output": "â ¥â â â â ‰â …â «" }, { "input": "unpacking", "output": "â ¥â â â â ‰â …â Œ" }, { "input": "unpacks", "output": "â ¥â â â â ‰â …â Ž" }, { "input": "unpaid", "output": "â ¥â â â ™" }, { "input": "unpainted", "output": "â ¥â â â â ”â žâ «" }, { "input": "unpaired", "output": "â ¥â â â â Šâ —â «" }, { "input": "unpalatable", "output": "â ¥â â â â ‡â â žâ â ¼" }, { "input": "unparalleled", "output": "â ¥â â â œâ â ‡â ‡â ‘⠇⠫" }, { "input": "unpardonable", "output": "â ¥â â â œâ ™â •â â â ¼" }, { "input": "unpardonably", "output": "â ¥â â â œâ ™â •â â â ƒâ ‡â ½" }, { "input": "unpasteurized", "output": "â ¥â â â â Œâ ‘⠥⠗⠊⠵⠫" }, { "input": "unpatriotic", "output": "â ¥â â â â žâ —â Šâ •â žâ Šâ ‰" }, { "input": "unpaved", "output": "â ¥â â â â §â «" }, { "input": "unpeeled", "output": "â ¥â â â ‘⠑⠇⠫" }, { "input": "unpeople", "output": "â ¥â â â ‘â •â â ‡â ‘" }, { "input": "unperceived", "output": "â ¥â â â »â ‰â §â ™" }, { "input": "unperceptive", "output": "â ¥â â â »â ‰â ‘â â žâ Šâ §â ‘" }, { "input": "unperformed", "output": "â ¥â â â »â ¿â â «" }, { "input": "unperson", "output": "â ¥â â â »â Žâ •â " }, { "input": "unperson's", "output": "â ¥â â â »â Žâ •â â „â Ž" }, { "input": "unpersons", "output": "â ¥â â â »â Žâ •â â Ž" }, { "input": "unpersuaded", "output": "â ¥â â â »â Žâ ¥â â ™â «" }, { "input": "unpersuasive", "output": "â ¥â â â »â Žâ ¥â â Žâ Šâ §â ‘" }, { "input": "unperturbed", "output": "â ¥â â â »â žâ ¥â —⠃⠫" }, { "input": "unpick", "output": "â ¥â â â Šâ ‰â …" }, { "input": "unpin", "output": "â ¥â â â ”" }, { "input": "unpinned", "output": "â ¥â â â ”â â «" }, { "input": "unpinning", "output": "â ¥â â â ”â â Œ" }, { "input": "unpins", "output": "â ¥â â â ”â Ž" }, { "input": "unplanned", "output": "â ¥â â â ‡â â â â «" }, { "input": "unpleasant", "output": "â ¥â â â ‡â ‚â Žâ â â ž" }, { "input": "unpleasantly", "output": "â ¥â â â ‡â ‚â Žâ â â žâ ‡â ½" }, { "input": "unpleasantness", "output": "â ¥â â â ‡â ‚â Žâ â â žâ °â Ž" }, { "input": "unpleasantness's", "output": "â ¥â â â ‡â ‚â Žâ â â žâ °â Žâ „â Ž" }, { "input": "unpleasing", "output": "â ¥â â â ‡â ‚â Žâ Œ" }, { "input": "unplug", "output": "â ¥â â â ‡â ¥â ›" }, { "input": "unplugged", "output": "â ¥â â â ‡â ¥â ¶â «" }, { "input": "unplugging", "output": "â ¥â â â ‡â ¥â ¶â Œ" }, { "input": "unplugs", "output": "â ¥â â â ‡â ¥â ›â Ž" }, { "input": "unplumbed", "output": "â ¥â â â ‡â ¥â â ƒâ «" }, { "input": "unpolished", "output": "â ¥â â â •⠇⠊⠩⠫" }, { "input": "unpolitical", "output": "â ¥â â â •⠇⠊⠞⠊⠉â â ‡" }, { "input": "unpolluted", "output": "â ¥â â â •⠇⠇⠥⠞⠫" }, { "input": "unpopular", "output": "â ¥â â â •â â ¥â ‡â œ" }, { "input": "unpopularity", "output": "â ¥â â â •â â ¥â ‡â œâ °â ½" }, { "input": "unpopularity's", "output": "â ¥â â â •â â ¥â ‡â œâ °â ½â „â Ž" }, { "input": "unpractical", "output": "â ¥â â â —â â ‰â žâ Šâ ‰â â ‡" }, { "input": "unpracticed", "output": "â ¥â â â —â â ‰â žâ Šâ ‰â «" }, { "input": "unprecedented", "output": "â ¥â â â —⠑⠉⠫⠢⠞⠫" }, { "input": "unpredictability", "output": "â ¥â â â —⠑⠙⠊⠉⠞â â ƒâ Šâ ‡â °â ½" }, { "input": "unpredictability's", "output": "â ¥â â â —⠑⠙⠊⠉⠞â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "unpredictable", "output": "â ¥â â â —⠑⠙⠊⠉⠞â â ¼" }, { "input": "unprejudiced", "output": "â ¥â â â —⠑⠚⠥⠙⠊⠉⠫" }, { "input": "unpremeditated", "output": "â ¥â â â —â ‘â â «â Šâ žâ â žâ «" }, { "input": "unprepared", "output": "â ¥â â â —â ‘â â œâ «" }, { "input": "unpreparedness", "output": "â ¥â â â —â ‘â â œâ «â °â Ž" }, { "input": "unpreparedness's", "output": "â ¥â â â —â ‘â â œâ «â °â Žâ „â Ž" }, { "input": "unpressed", "output": "â ¥â â â —â ‘â Žâ Žâ «" }, { "input": "unpretentious", "output": "â ¥â â â —⠑⠞⠢⠞⠊⠳⠎" }, { "input": "unpretentiously", "output": "â ¥â â â —⠑⠞⠢⠞⠊⠳⠎⠇⠽" }, { "input": "unpreventable", "output": "â ¥â â â —⠑⠧⠢⠞â â ¼" }, { "input": "unprincipled", "output": "â ¥â â â —⠔⠉⠊â â ‡â «" }, { "input": "unprintable", "output": "â ¥â â â —⠔⠞â â ¼" }, { "input": "unprivileged", "output": "â ¥â â â —⠊⠧⠊⠇⠑⠛⠫" }, { "input": "unprocessed", "output": "â ¥â â â —⠕⠉⠑⠎⠎⠫" }, { "input": "unproductive", "output": "â ¥â â â —⠕⠙⠥⠉⠞⠊⠧⠑" }, { "input": "unproductively", "output": "â ¥â â â —⠕⠙⠥⠉⠞⠊⠧⠑⠇⠽" }, { "input": "unprofessional", "output": "â ¥â â â —â •â ‹â ‘â Žâ ¨â â â ‡" }, { "input": "unprofitable", "output": "â ¥â â â —â ·â Šâ žâ â ¼" }, { "input": "unprofitably", "output": "â ¥â â â —â ·â Šâ žâ â ƒâ ‡â ½" }, { "input": "unpromising", "output": "â ¥â â â —â •â â Šâ Žâ Œ" }, { "input": "unprompted", "output": "â ¥â â â —â •â â â žâ «" }, { "input": "unpronounceable", "output": "â ¥â â â —â •â â ³â â ‰â ‘â â ¼" }, { "input": "unpropitious", "output": "â ¥â â â —â •â â Šâ žâ Šâ ³â Ž" }, { "input": "unprotected", "output": "â ¥â â â —⠕⠞⠑⠉⠞⠫" }, { "input": "unproved", "output": "â ¥â â â —â •â §â «" }, { "input": "unproven", "output": "â ¥â â â —â •â §â ¢" }, { "input": "unprovided", "output": "â ¥â â â —⠕⠧⠊⠙⠫" }, { "input": "unprovoked", "output": "â ¥â â â —â •â §â •â …â «" }, { "input": "unpublished", "output": "â ¥â â â ¥â ƒâ ‡â Šâ ©â «" }, { "input": "unpunished", "output": "â ¥â â â ¥â â Šâ ©â «" }, { "input": "unqualified", "output": "â ¥â â Ÿâ ¥â â ‡â Šâ ‹â Šâ «" }, { "input": "unquenchable", "output": "â ¥â â Ÿâ ¥â ¢â ¡â â ¼" }, { "input": "unquestionable", "output": "â ¥â â â Ÿâ â ¼" }, { "input": "unquestionably", "output": "â ¥â â â Ÿâ â ƒâ ‡â ½" }, { "input": "unquestioned", "output": "â ¥â â â Ÿâ «" }, { "input": "unquestioning", "output": "â ¥â â â Ÿâ Œ" }, { "input": "unquestioningly", "output": "â ¥â â â Ÿâ Œâ ‡â ½" }, { "input": "unquieter", "output": "â ¥â â Ÿâ ¥â Šâ ‘â žâ »" }, { "input": "unquietest", "output": "â ¥â â Ÿâ ¥â Šâ ‘â žâ ‘â Œ" }, { "input": "unquote", "output": "â ¥â â Ÿâ ¥â •â žâ ‘" }, { "input": "unquoted", "output": "â ¥â â Ÿâ ¥â •â žâ «" }, { "input": "unquotes", "output": "â ¥â â Ÿâ ¥â •â žâ ‘â Ž" }, { "input": "unquoting", "output": "â ¥â â Ÿâ ¥â •â žâ Œ" }, { "input": "unrated", "output": "â ¥â â —â â žâ «" }, { "input": "unravel", "output": "â ¥â â —â â §â ‘â ‡" }, { "input": "unraveled", "output": "â ¥â â —â â §â ‘⠇⠫" }, { "input": "unraveling", "output": "â ¥â â —â â §â ‘⠇⠌" }, { "input": "unravels", "output": "â ¥â â —â â §â ‘⠇⠎" }, { "input": "unreachable", "output": "â ¥â â —â ‚â ¡â â ¼" }, { "input": "unread", "output": "â ¥â â —â ‚â ™" }, { "input": "unreadable", "output": "â ¥â â —â ‚â ™â â ¼" }, { "input": "unreadier", "output": "â ¥â â —⠂⠙⠊⠻" }, { "input": "unreadiest", "output": "â ¥â â —⠂⠙⠊⠑⠌" }, { "input": "unready", "output": "â ¥â â —⠂⠙⠽" }, { "input": "unreal", "output": "â ¥â â —â ‚â ‡" }, { "input": "unrealistic", "output": "â ¥â â —⠂⠇⠊⠌⠊⠉" }, { "input": "unrealistically", "output": "â ¥â â —⠂⠇⠊⠌⠊⠉⠠⠽" }, { "input": "unreality's", "output": "â ¥â â —⠂⠇⠰⠽⠄⠎" }, { "input": "unrealized", "output": "â ¥â â —⠂⠇⠊⠵⠫" }, { "input": "unreasonable", "output": "â ¥â â —â ‚â Žâ •â â â ¼" }, { "input": "unreasonableness", "output": "â ¥â â —â ‚â Žâ •â â â ¼â °â Ž" }, { "input": "unreasonableness's", "output": "â ¥â â —â ‚â Žâ •â â â ¼â °â Žâ „â Ž" }, { "input": "unreasonably", "output": "â ¥â â —â ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "unreasoning", "output": "â ¥â â —â ‚â Žâ •â â Œ" }, { "input": "unrecognizable", "output": "â ¥â â —⠑⠉⠕⠛â â Šâ µâ â ¼" }, { "input": "unrecognized", "output": "â ¥â â —⠑⠉⠕⠛â â Šâ µâ «" }, { "input": "unreconstructed", "output": "â ¥â â —⠑⠉⠕â â Œâ —⠥⠉⠞⠫" }, { "input": "unrecorded", "output": "â ¥â â —⠑⠉⠕⠗⠙⠫" }, { "input": "unrecoverable", "output": "â ¥â â —⠑⠉⠕⠧⠻â â ¼" }, { "input": "unreel", "output": "â ¥â â —â ‘â ‘â ‡" }, { "input": "unreeled", "output": "â ¥â â —⠑⠑⠇⠫" }, { "input": "unreeling", "output": "â ¥â â —⠑⠑⠇⠌" }, { "input": "unreels", "output": "â ¥â â —⠑⠑⠇⠎" }, { "input": "unrefined", "output": "â ¥â â —⠑⠋⠔⠫" }, { "input": "unreformed", "output": "â ¥â â —â ‘â ¿â â «" }, { "input": "unregenerate", "output": "â ¥â â —⠑⠛⠢⠻â â žâ ‘" }, { "input": "unregistered", "output": "â ¥â â —⠑⠛⠊⠌⠻⠫" }, { "input": "unregulated", "output": "â ¥â â —⠑⠛⠥⠇â â žâ «" }, { "input": "unrehearsed", "output": "â ¥â â —⠑⠓⠑⠜⠎⠫" }, { "input": "unrelated", "output": "â ¥â â —â ‘â ‡â â žâ «" }, { "input": "unreleased", "output": "â ¥â â —⠑⠇⠂⠎⠫" }, { "input": "unrelenting", "output": "â ¥â â —⠑⠇⠢⠞⠌" }, { "input": "unrelentingly", "output": "â ¥â â —⠑⠇⠢⠞⠌⠇⠽" }, { "input": "unreliability", "output": "â ¥â â —⠑⠇⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "unreliability's", "output": "â ¥â â —⠑⠇⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "unreliable", "output": "â ¥â â —⠑⠇⠊â â ¼" }, { "input": "unreliably", "output": "â ¥â â —⠑⠇⠊â â ƒâ ‡â ½" }, { "input": "unrelieved", "output": "â ¥â â —⠑⠇⠊⠑⠧⠫" }, { "input": "unremarkable", "output": "â ¥â â —â ‘â â œâ …â â ¼" }, { "input": "unremembered", "output": "â ¥â â —â ‘â â ‘â â ƒâ »â «" }, { "input": "unremitting", "output": "â ¥â â —â ‘â â Šâ žâ žâ Œ" }, { "input": "unrepeatable", "output": "â ¥â â —â ‘â â ‚â žâ â ¼" }, { "input": "unrepentant", "output": "â ¥â â —â ‘â â ¢â žâ â â ž" }, { "input": "unreported", "output": "â ¥â â —â ‘â â •â —â žâ «" }, { "input": "unrepresentative", "output": "â ¥â â —â ‘â â —⠑⠎⠢⠞â â žâ Šâ §â ‘" }, { "input": "unrepresented", "output": "â ¥â â —â ‘â â —⠑⠎⠢⠞⠫" }, { "input": "unrequited", "output": "â ¥â â —⠑⠟⠥⠊⠞⠫" }, { "input": "unreserved", "output": "â ¥â â —⠑⠎⠻⠧⠫" }, { "input": "unreservedly", "output": "â ¥â â —⠑⠎⠻⠧⠫⠇⠽" }, { "input": "unresistant", "output": "â ¥â â —â ‘â Žâ Šâ Œâ â â ž" }, { "input": "unresolved", "output": "â ¥â â —⠑⠎⠕⠇⠧⠫" }, { "input": "unresponsive", "output": "â ¥â â —â ‘â Žâ â •â â Žâ Šâ §â ‘" }, { "input": "unresponsively", "output": "â ¥â â —â ‘â Žâ â •â â Žâ Šâ §â ‘⠇⠽" }, { "input": "unresponsiveness", "output": "â ¥â â —â ‘â Žâ â •â â Žâ Šâ §â ‘â °â Ž" }, { "input": "unresponsiveness's", "output": "â ¥â â —â ‘â Žâ â •â â Žâ Šâ §â ‘â °â Žâ „â Ž" }, { "input": "unrest", "output": "â ¥â â —â ‘â Œ" }, { "input": "unrest's", "output": "â ¥â â —⠑⠌⠄⠎" }, { "input": "unrestrained", "output": "â ¥â â —⠑⠌⠗â â ”â «" }, { "input": "unrestricted", "output": "â ¥â â —⠑⠌⠗⠊⠉⠞⠫" }, { "input": "unrewarding", "output": "â ¥â â —⠑⠺⠜⠙⠌" }, { "input": "unrighteous", "output": "â ¥â â â —⠑⠳⠎" }, { "input": "unrighteousness", "output": "â ¥â â â —⠑⠳⠎⠰⠎" }, { "input": "unrighteousness's", "output": "â ¥â â â —⠑⠳⠎⠰⠎⠄⠎" }, { "input": "unripe", "output": "â ¥â â —â Šâ â ‘" }, { "input": "unripened", "output": "â ¥â â —â Šâ â ¢â «" }, { "input": "unriper", "output": "â ¥â â —â Šâ â »" }, { "input": "unripest", "output": "â ¥â â —â Šâ â ‘â Œ" }, { "input": "unrivaled", "output": "â ¥â â —â Šâ §â â ‡â «" }, { "input": "unroll", "output": "â ¥â â —⠕⠇⠇" }, { "input": "unrolled", "output": "â ¥â â —⠕⠇⠇⠫" }, { "input": "unrolling", "output": "â ¥â â —⠕⠇⠇⠌" }, { "input": "unrolls", "output": "â ¥â â —⠕⠇⠇⠎" }, { "input": "unromantic", "output": "â ¥â â —â •â â â â žâ Šâ ‰" }, { "input": "unruffled", "output": "â ¥â â —⠥⠖⠇⠫" }, { "input": "unrulier", "output": "â ¥â â —⠥⠇⠊⠻" }, { "input": "unruliest", "output": "â ¥â â —⠥⠇⠊⠑⠌" }, { "input": "unruliness", "output": "â ¥â â —⠥⠇⠊⠰⠎" }, { "input": "unruliness's", "output": "â ¥â â —⠥⠇⠊⠰⠎⠄⠎" }, { "input": "unruly", "output": "â ¥â â —⠥⠇⠽" }, { "input": "unsaddle", "output": "â ¥â â Žâ â ²â ‡â ‘" }, { "input": "unsaddled", "output": "â ¥â â Žâ â ²â ‡â «" }, { "input": "unsaddles", "output": "â ¥â â Žâ â ²â ‡â ‘â Ž" }, { "input": "unsaddling", "output": "â ¥â â Žâ â ²â ‡â Œ" }, { "input": "unsafe", "output": "â ¥â â Žâ â ‹â ‘" }, { "input": "unsafely", "output": "â ¥â â Žâ â ‹â ‘⠇⠽" }, { "input": "unsafer", "output": "â ¥â â Žâ â ‹â »" }, { "input": "unsafest", "output": "â ¥â â Žâ â ‹â ‘â Œ" }, { "input": "unsaid", "output": "â ¥â â Žâ ™" }, { "input": "unsalted", "output": "â ¥â â Žâ â ‡â žâ «" }, { "input": "unsanctioned", "output": "â ¥â â Žâ â â ‰â °â â «" }, { "input": "unsanitary", "output": "â ¥â â Žâ â â Šâ žâ œâ ½" }, { "input": "unsatisfactorily", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •⠗⠊⠇⠽" }, { "input": "unsatisfactory", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â â ‰â žâ •â —â ½" }, { "input": "unsatisfied", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â Šâ «" }, { "input": "unsatisfying", "output": "â ¥â â Žâ â žâ Šâ Žâ ‹â ½â Œ" }, { "input": "unsaturated", "output": "â ¥â â Žâ â žâ ¥â —â â žâ «" }, { "input": "unsaved", "output": "â ¥â â Žâ â §â «" }, { "input": "unsavory", "output": "â ¥â â Žâ â §â •â —â ½" }, { "input": "unsay", "output": "â ¥â â Žâ â ½" }, { "input": "unsaying", "output": "â ¥â â Žâ â ½â Œ" }, { "input": "unsays", "output": "â ¥â â Žâ â ½â Ž" }, { "input": "unscathed", "output": "â ¥â â Žâ ‰â â ®â ™" }, { "input": "unscented", "output": "â ¥â â Žâ ‰â ¢â žâ «" }, { "input": "unscheduled", "output": "â ¥â â Žâ ¡â «â ¥â ‡â «" }, { "input": "unschooled", "output": "â ¥â â Žâ ¡â •⠕⠇⠫" }, { "input": "unscientific", "output": "â ¥â â Žâ ‰â Šâ ¢â žâ Šâ ‹â Šâ ‰" }, { "input": "unscientifically", "output": "â ¥â â Žâ ‰â Šâ ¢â žâ Šâ ‹â Šâ ‰â  â ½" }, { "input": "unscramble", "output": "â ¥â â Žâ ‰â —â â â ¼" }, { "input": "unscrambled", "output": "â ¥â â Žâ ‰â —â â â ¼â ™" }, { "input": "unscrambles", "output": "â ¥â â Žâ ‰â —â â â ¼â Ž" }, { "input": "unscrambling", "output": "â ¥â â Žâ ‰â —â â â ƒâ ‡â Œ" }, { "input": "unscratched", "output": "â ¥â â Žâ ‰â —â â žâ ¡â «" }, { "input": "unscrew", "output": "â ¥â â Žâ ‰â —â ‘â º" }, { "input": "unscrewed", "output": "â ¥â â Žâ ‰â —⠑⠺⠫" }, { "input": "unscrewing", "output": "â ¥â â Žâ ‰â —⠑⠺⠌" }, { "input": "unscrews", "output": "â ¥â â Žâ ‰â —⠑⠺⠎" }, { "input": "unscrupulous", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Ž" }, { "input": "unscrupulously", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Žâ ‡â ½" }, { "input": "unscrupulousness", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Žâ °â Ž" }, { "input": "unscrupulousness's", "output": "â ¥â â Žâ ‰â —â ¥â â ¥â ‡â ³â Žâ °â Žâ „â Ž" }, { "input": "unseal", "output": "â ¥â â Žâ ‚â ‡" }, { "input": "unsealed", "output": "â ¥â â Žâ ‚⠇⠫" }, { "input": "unsealing", "output": "â ¥â â Žâ ‚⠇⠌" }, { "input": "unseals", "output": "â ¥â â Žâ ‚⠇⠎" }, { "input": "unsearchable", "output": "â ¥â â Žâ ‘⠜⠡â â ¼" }, { "input": "unseasonable", "output": "â ¥â â Žâ ‚â Žâ •â â â ¼" }, { "input": "unseasonably", "output": "â ¥â â Žâ ‚â Žâ •â â â ƒâ ‡â ½" }, { "input": "unseasoned", "output": "â ¥â â Žâ ‚â Žâ •â â «" }, { "input": "unseat", "output": "â ¥â â Žâ ‚â ž" }, { "input": "unseated", "output": "â ¥â â Žâ ‚â žâ «" }, { "input": "unseating", "output": "â ¥â â Žâ ‚â žâ Œ" }, { "input": "unseats", "output": "â ¥â â Žâ ‚â žâ Ž" }, { "input": "unseeing", "output": "â ¥â â Žâ ‘â ‘â Œ" }, { "input": "unseemlier", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ »" }, { "input": "unseemliest", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ ‘â Œ" }, { "input": "unseemliness", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ °â Ž" }, { "input": "unseemliness's", "output": "â ¥â â Žâ ‘â ‘â â ‡â Šâ °â Žâ „â Ž" }, { "input": "unseemly", "output": "â ¥â â Žâ ‘â ‘â â ‡â ½" }, { "input": "unseen", "output": "â ¥â â Žâ ‘â ¢" }, { "input": "unseen's", "output": "â ¥â â Žâ ‘⠢⠄⠎" }, { "input": "unsegmented", "output": "â ¥â â Žâ ‘⠛⠰⠞⠫" }, { "input": "unsegregated", "output": "â ¥â â Žâ ‘⠛⠗⠑⠛â â žâ «" }, { "input": "unselfish", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩" }, { "input": "unselfishly", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩⠇⠽" }, { "input": "unselfishness", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩⠰⠎" }, { "input": "unselfishness's", "output": "â ¥â â Žâ ‘⠇⠋⠊⠩⠰⠎⠄⠎" }, { "input": "unsent", "output": "â ¥â â Žâ ¢â ž" }, { "input": "unsentimental", "output": "â ¥â â Žâ ¢â žâ Šâ °â žâ â ‡" }, { "input": "unset", "output": "â ¥â â Žâ ‘â ž" }, { "input": "unsettle", "output": "â ¥â â Žâ ‘⠞⠞⠇⠑" }, { "input": "unsettled", "output": "â ¥â â Žâ ‘⠞⠞⠇⠫" }, { "input": "unsettles", "output": "â ¥â â Žâ ‘⠞⠞⠇⠑⠎" }, { "input": "unsettling", "output": "â ¥â â Žâ ‘⠞⠞⠇⠌" }, { "input": "unshackle", "output": "â ¥â â ©â â ‰â …⠇⠑" }, { "input": "unshackled", "output": "â ¥â â ©â â ‰â …⠇⠫" }, { "input": "unshackles", "output": "â ¥â â ©â â ‰â …⠇⠑⠎" }, { "input": "unshackling", "output": "â ¥â â ©â â ‰â …⠇⠌" }, { "input": "unshakable", "output": "â ¥â â ©â â …â â ¼" }, { "input": "unshakably", "output": "â ¥â â ©â â …â â ƒâ ‡â ½" }, { "input": "unshaped", "output": "â ¥â â ©â â â «" }, { "input": "unshapely", "output": "â ¥â â ©â â â ‘⠇⠽" }, { "input": "unshaven", "output": "â ¥â â ©â â §â ¢" }, { "input": "unsheathe", "output": "â ¥â â ©â ‚â ®" }, { "input": "unsheathed", "output": "â ¥â â ©â ‚⠮⠙" }, { "input": "unsheathes", "output": "â ¥â â ©â ‚⠮⠎" }, { "input": "unsheathing", "output": "â ¥â â ©â ‚⠹⠌" }, { "input": "unshod", "output": "â ¥â â ©â •â ™" }, { "input": "unshorn", "output": "â ¥â â ©â •â —â " }, { "input": "unsifted", "output": "â ¥â â Žâ Šâ ‹â žâ «" }, { "input": "unsightlier", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ »" }, { "input": "unsightliest", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ ‘â Œ" }, { "input": "unsightliness", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ °â Ž" }, { "input": "unsightliness's", "output": "â ¥â â Žâ Šâ £â žâ ‡â Šâ °â Žâ „â Ž" }, { "input": "unsightly", "output": "â ¥â â Žâ Šâ £â žâ ‡â ½" }, { "input": "unsigned", "output": "â ¥â â Žâ Šâ ›â â «" }, { "input": "unsinkable", "output": "â ¥â â Žâ ”â …â â ¼" }, { "input": "unskilled", "output": "â ¥â â Žâ …⠊⠇⠇⠫" }, { "input": "unskillful", "output": "â ¥â â Žâ …⠊⠇⠇⠰⠇" }, { "input": "unskillfully", "output": "â ¥â â Žâ …⠊⠇⠇⠰⠇⠇⠽" }, { "input": "unsmiling", "output": "â ¥â â Žâ â Šâ ‡â Œ" }, { "input": "unsnap", "output": "â ¥â â Žâ â â " }, { "input": "unsnapped", "output": "â ¥â â Žâ â â â â «" }, { "input": "unsnapping", "output": "â ¥â â Žâ â â â â Œ" }, { "input": "unsnaps", "output": "â ¥â â Žâ â â â Ž" }, { "input": "unsnarl", "output": "â ¥â â Žâ â œâ ‡" }, { "input": "unsnarled", "output": "â ¥â â Žâ â œâ ‡â «" }, { "input": "unsnarling", "output": "â ¥â â Žâ â œâ ‡â Œ" }, { "input": "unsnarls", "output": "â ¥â â Žâ â œâ ‡â Ž" }, { "input": "unsociable", "output": "â ¥â â Žâ •⠉⠊â â ¼" }, { "input": "unsoiled", "output": "â ¥â â Žâ •⠊⠇⠫" }, { "input": "unsold", "output": "â ¥â â Žâ •⠇⠙" }, { "input": "unsolicited", "output": "â ¥â â Žâ •⠇⠊⠉⠊⠞⠫" }, { "input": "unsolvable", "output": "â ¥â â Žâ •⠇⠧â â ¼" }, { "input": "unsolved", "output": "â ¥â â Žâ •⠇⠧⠫" }, { "input": "unsophisticated", "output": "â ¥â â Žâ •â â “⠊⠌⠊⠉â â žâ «" }, { "input": "unsorted", "output": "â ¥â â Žâ •â —â žâ «" }, { "input": "unsought", "output": "â ¥â â Žâ â ³" }, { "input": "unsound", "output": "â ¥â â Žâ ¨â ™" }, { "input": "unsounder", "output": "â ¥â â Žâ ¨â ™â »" }, { "input": "unsoundest", "output": "â ¥â â Žâ ¨â ™â ‘â Œ" }, { "input": "unsoundly", "output": "â ¥â â Žâ ¨â ™â ‡â ½" }, { "input": "unsoundness", "output": "â ¥â â Žâ ¨â ™â °â Ž" }, { "input": "unsoundness's", "output": "â ¥â â Žâ ¨â ™â °â Žâ „â Ž" }, { "input": "unsparing", "output": "â ¥â â Žâ â œâ Œ" }, { "input": "unsparingly", "output": "â ¥â â Žâ â œâ Œâ ‡â ½" }, { "input": "unspeakable", "output": "â ¥â â Žâ â ‚â …â â ¼" }, { "input": "unspeakably", "output": "â ¥â â Žâ â ‚â …â â ƒâ ‡â ½" }, { "input": "unspecific", "output": "â ¥â â Žâ â ‘⠉⠊⠋⠊⠉" }, { "input": "unspecified", "output": "â ¥â â Žâ â ‘⠉⠊⠋⠊⠫" }, { "input": "unspent", "output": "â ¥â â Žâ â ¢â ž" }, { "input": "unspoiled", "output": "â ¥â â Žâ â •⠊⠇⠫" }, { "input": "unspoken", "output": "â ¥â â Žâ â •â …â ¢" }, { "input": "unsportsmanlike", "output": "â ¥â â Žâ â •â —â žâ Žâ â â â ‡â Šâ …â ‘" }, { "input": "unstable", "output": "â ¥â â Œâ â ¼" }, { "input": "unstabler", "output": "â ¥â â Œâ â ¼â —" }, { "input": "unstablest", "output": "â ¥â â Œâ â ¼â Œ" }, { "input": "unstably", "output": "â ¥â â Œâ â ƒâ ‡â ½" }, { "input": "unstained", "output": "â ¥â â Œâ â ”â «" }, { "input": "unstated", "output": "â ¥â â Œâ â žâ «" }, { "input": "unsteadier", "output": "â ¥â â Œâ ‚⠙⠊⠻" }, { "input": "unsteadiest", "output": "â ¥â â Œâ ‚⠙⠊⠑⠌" }, { "input": "unsteadily", "output": "â ¥â â Œâ ‚⠙⠊⠇⠽" }, { "input": "unsteadiness", "output": "â ¥â â Œâ ‚⠙⠊⠰⠎" }, { "input": "unsteadiness's", "output": "â ¥â â Œâ ‚⠙⠊⠰⠎⠄⠎" }, { "input": "unsteady", "output": "â ¥â â Œâ ‚⠙⠽" }, { "input": "unstop", "output": "â ¥â â Œâ •â " }, { "input": "unstoppable", "output": "â ¥â â Œâ •â â â â ¼" }, { "input": "unstopped", "output": "â ¥â â Œâ •â â â «" }, { "input": "unstopping", "output": "â ¥â â Œâ •â â â Œ" }, { "input": "unstops", "output": "â ¥â â Œâ •â â Ž" }, { "input": "unstrap", "output": "â ¥â â Œâ —â â " }, { "input": "unstrapped", "output": "â ¥â â Œâ —â â â â «" }, { "input": "unstrapping", "output": "â ¥â â Œâ —â â â â Œ" }, { "input": "unstraps", "output": "â ¥â â Œâ —â â â Ž" }, { "input": "unstressed", "output": "â ¥â â Œâ —â ‘â Žâ Žâ «" }, { "input": "unstructured", "output": "â ¥â â Œâ —⠥⠉⠞⠥⠗⠫" }, { "input": "unstrung", "output": "â ¥â â Œâ —â ¥â â ›" }, { "input": "unstuck", "output": "â ¥â â Œâ ¥â ‰â …" }, { "input": "unstudied", "output": "â ¥â â Œâ ¥â ™â Šâ «" }, { "input": "unsubscribe", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠑" }, { "input": "unsubscribed", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠫" }, { "input": "unsubscribes", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠑⠎" }, { "input": "unsubscribing", "output": "â ¥â â Žâ ¥â ƒâ Žâ ‰â —⠊⠃⠌" }, { "input": "unsubstantial", "output": "â ¥â â Žâ ¥â ƒâ Œâ â â žâ Šâ â ‡" }, { "input": "unsubstantiated", "output": "â ¥â â Žâ ¥â ƒâ Œâ â â žâ Šâ â žâ «" }, { "input": "unsubtle", "output": "â ¥â â Žâ ¥â ƒâ žâ ‡â ‘" }, { "input": "unsuccessful", "output": "â ¥â â Žâ ¥â ’â ‘â Žâ Žâ °â ‡" }, { "input": "unsuccessfully", "output": "â ¥â â Žâ ¥â ’⠑⠎⠎⠰⠇⠇⠽" }, { "input": "unsuitability", "output": "â ¥â â Žâ ¥â Šâ žâ â ƒâ Šâ ‡â °â ½" }, { "input": "unsuitability's", "output": "â ¥â â Žâ ¥â Šâ žâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "unsuitable", "output": "â ¥â â Žâ ¥â Šâ žâ â ¼" }, { "input": "unsuitably", "output": "â ¥â â Žâ ¥â Šâ žâ â ƒâ ‡â ½" }, { "input": "unsuited", "output": "â ¥â â Žâ ¥â Šâ žâ «" }, { "input": "unsung", "output": "â ¥â â Žâ ¥â â ›" }, { "input": "unsupervised", "output": "â ¥â â Žâ ¥â â »â §â Šâ Žâ «" }, { "input": "unsupportable", "output": "â ¥â â Žâ ¥â â â •â —â žâ â ¼" }, { "input": "unsupported", "output": "â ¥â â Žâ ¥â â â •â —â žâ «" }, { "input": "unsure", "output": "â ¥â â Žâ ¥â —â ‘" }, { "input": "unsurpassed", "output": "â ¥â â Žâ ¥â —â â â Žâ Žâ «" }, { "input": "unsurprising", "output": "â ¥â â Žâ ¥â —â â —â Šâ Žâ Œ" }, { "input": "unsuspected", "output": "â ¥â â Žâ ¥â Žâ â ‘⠉⠞⠫" }, { "input": "unsuspecting", "output": "â ¥â â Žâ ¥â Žâ â ‘⠉⠞⠌" }, { "input": "unsuspectingly", "output": "â ¥â â Žâ ¥â Žâ â ‘⠉⠞⠌⠇⠽" }, { "input": "unswayed", "output": "â ¥â â Žâ ºâ â ½â «" }, { "input": "unsweetened", "output": "â ¥â â Žâ ºâ ‘⠑⠞⠢⠫" }, { "input": "unswerving", "output": "â ¥â â Žâ ºâ »â §â Œ" }, { "input": "unsymmetrical", "output": "â ¥â â Žâ ½â â â ‘â žâ —â Šâ ‰â â ‡" }, { "input": "unsympathetic", "output": "â ¥â â Žâ ½â â â â ®â žâ Šâ ‰" }, { "input": "unsympathetically", "output": "â ¥â â Žâ ½â â â â ®â žâ Šâ ‰â  â ½" }, { "input": "unsystematic", "output": "â ¥â â Žâ ½â Œâ ‘â â â žâ Šâ ‰" }, { "input": "untactful", "output": "â ¥â â žâ â ‰â žâ °â ‡" }, { "input": "untainted", "output": "â ¥â â žâ â ”â žâ «" }, { "input": "untalented", "output": "â ¥â â žâ â ‡â ¢â žâ «" }, { "input": "untamed", "output": "â ¥â â žâ â â «" }, { "input": "untangle", "output": "â ¥â â žâ â â ›â ‡â ‘" }, { "input": "untangled", "output": "â ¥â â žâ â â ›â ‡â «" }, { "input": "untangles", "output": "â ¥â â žâ â â ›â ‡â ‘â Ž" }, { "input": "untangling", "output": "â ¥â â žâ â â ›â ‡â Œ" }, { "input": "untanned", "output": "â ¥â â žâ â â â «" }, { "input": "untapped", "output": "â ¥â â žâ â â â «" }, { "input": "untarnished", "output": "â ¥â â žâ œâ â Šâ ©â «" }, { "input": "untasted", "output": "â ¥â â žâ â Œâ «" }, { "input": "untaught", "output": "â ¥â â žâ â ¥â £â ž" }, { "input": "unteachable", "output": "â ¥â â žâ ‚â ¡â â ¼" }, { "input": "untenable", "output": "â ¥â â žâ ¢â â ¼" }, { "input": "untenanted", "output": "â ¥â â žâ ¢â â â žâ «" }, { "input": "untended", "output": "â ¥â â žâ ¢â ™â «" }, { "input": "untested", "output": "â ¥â â žâ ‘⠌⠫" }, { "input": "unthinkable", "output": "â ¥â â ¹â ”â …â â ¼" }, { "input": "unthinkably", "output": "â ¥â â ¹â ”â …â â ƒâ ‡â ½" }, { "input": "unthinking", "output": "â ¥â â ¹â ”â …â Œ" }, { "input": "unthinkingly", "output": "â ¥â â ¹â ”⠅⠌⠇⠽" }, { "input": "untidier", "output": "â ¥â â žâ Šâ ™â Šâ »" }, { "input": "untidiest", "output": "â ¥â â žâ Šâ ™â Šâ ‘â Œ" }, { "input": "untidiness", "output": "â ¥â â žâ Šâ ™â Šâ °â Ž" }, { "input": "untidiness's", "output": "â ¥â â žâ Šâ ™â Šâ °â Žâ „â Ž" }, { "input": "untidy", "output": "â ¥â â žâ Šâ ™â ½" }, { "input": "untie", "output": "â ¥â â žâ Šâ ‘" }, { "input": "untied", "output": "â ¥â â žâ Šâ «" }, { "input": "unties", "output": "â ¥â â žâ Šâ ‘â Ž" }, { "input": "until", "output": "â ¥â â žâ Šâ ‡" }, { "input": "untimelier", "output": "â ¥â â â žâ ‡â Šâ »" }, { "input": "untimeliest", "output": "â ¥â â â žâ ‡â Šâ ‘â Œ" }, { "input": "untimeliness", "output": "â ¥â â â žâ ‡â Šâ °â Ž" }, { "input": "untimeliness's", "output": "â ¥â â â žâ ‡â Šâ °â Žâ „â Ž" }, { "input": "untimely", "output": "â ¥â â â žâ ‡â ½" }, { "input": "untiring", "output": "â ¥â â žâ Šâ —â Œ" }, { "input": "untiringly", "output": "â ¥â â žâ Šâ —⠌⠇⠽" }, { "input": "untitled", "output": "â ¥â â žâ Šâ žâ ‡â «" }, { "input": "unto", "output": "â ¥â â žâ •" }, { "input": "untold", "output": "â ¥â â žâ •⠇⠙" }, { "input": "untouchable", "output": "â ¥â â žâ ³â ¡â â ¼" }, { "input": "untouchable's", "output": "â ¥â â žâ ³â ¡â â ¼â „â Ž" }, { "input": "untouchables", "output": "â ¥â â žâ ³â ¡â â ¼â Ž" }, { "input": "untouched", "output": "â ¥â â žâ ³â ¡â «" }, { "input": "untoward", "output": "â ¥â â žâ ªâ œâ ™" }, { "input": "untraceable", "output": "â ¥â â žâ —â â ‰â ‘â â ¼" }, { "input": "untrained", "output": "â ¥â â žâ —â â ”â «" }, { "input": "untrammeled", "output": "â ¥â â žâ —â â â â ‘⠇⠫" }, { "input": "untranslatable", "output": "â ¥â â žâ —â â â Žâ ‡â â žâ â ¼" }, { "input": "untranslated", "output": "â ¥â â žâ —â â â Žâ ‡â â žâ «" }, { "input": "untraveled", "output": "â ¥â â žâ —â â §â ‘⠇⠫" }, { "input": "untreated", "output": "â ¥â â žâ —â ‚â žâ «" }, { "input": "untried", "output": "â ¥â â žâ —â Šâ «" }, { "input": "untrimmed", "output": "â ¥â â žâ —â Šâ â â «" }, { "input": "untrod", "output": "â ¥â â žâ —â •â ™" }, { "input": "untroubled", "output": "â ¥â â žâ —⠳⠼⠙" }, { "input": "untrue", "output": "â ¥â â žâ —⠥⠑" }, { "input": "untruer", "output": "â ¥â â žâ —⠥⠻" }, { "input": "untruest", "output": "â ¥â â žâ —⠥⠑⠌" }, { "input": "untruly", "output": "â ¥â â žâ —⠥⠇⠽" }, { "input": "untrustworthy", "output": "â ¥â â žâ —⠥⠌⠺⠕⠗⠹⠽" }, { "input": "untruth", "output": "â ¥â â žâ —⠥⠹" }, { "input": "untruth's", "output": "â ¥â â žâ —⠥⠹⠄⠎" }, { "input": "untruthful", "output": "â ¥â â žâ —⠥⠹⠰⠇" }, { "input": "untruthfully", "output": "â ¥â â žâ —⠥⠹⠰⠇⠇⠽" }, { "input": "untruthfulness", "output": "â ¥â â žâ —⠥⠹⠰⠇⠰⠎" }, { "input": "untruthfulness's", "output": "â ¥â â žâ —⠥⠹⠰⠇⠰⠎⠄⠎" }, { "input": "untruths", "output": "â ¥â â žâ —⠥⠹⠎" }, { "input": "untutored", "output": "â ¥â â žâ ¥â žâ •â —â «" }, { "input": "untwist", "output": "â ¥â â žâ ºâ Šâ Œ" }, { "input": "untwisted", "output": "â ¥â â žâ ºâ Šâ Œâ «" }, { "input": "untwisting", "output": "â ¥â â žâ ºâ Šâ Œâ Œ" }, { "input": "untwists", "output": "â ¥â â žâ ºâ Šâ Œâ Ž" }, { "input": "untying", "output": "â ¥â â žâ ½â Œ" }, { "input": "unusable", "output": "â ¥â â ¥â Žâ â ¼" }, { "input": "unused", "output": "â ¥â â ¥â Žâ «" }, { "input": "unusual", "output": "â ¥â â ¥â Žâ ¥â â ‡" }, { "input": "unusually", "output": "â ¥â â ¥â Žâ ¥â  â ½" }, { "input": "unutterable", "output": "â ¥â â ¥â žâ žâ »â â ¼" }, { "input": "unutterably", "output": "â ¥â â ¥â žâ žâ »â â ƒâ ‡â ½" }, { "input": "unvaried", "output": "â ¥â â §â œâ Šâ «" }, { "input": "unvarnished", "output": "â ¥â â §â œâ â Šâ ©â «" }, { "input": "unvarying", "output": "â ¥â â §â œâ ½â Œ" }, { "input": "unveil", "output": "â ¥â â §â ‘â Šâ ‡" }, { "input": "unveiled", "output": "â ¥â â §â ‘⠊⠇⠫" }, { "input": "unveiling", "output": "â ¥â â §â ‘⠊⠇⠌" }, { "input": "unveils", "output": "â ¥â â §â ‘⠊⠇⠎" }, { "input": "unverifiable", "output": "â ¥â â §â »â Šâ ‹â Šâ â ¼" }, { "input": "unverified", "output": "â ¥â â §â »â Šâ ‹â Šâ «" }, { "input": "unvoiced", "output": "â ¥â â §â •⠊⠉⠫" }, { "input": "unwanted", "output": "â ¥â â ºâ â â žâ «" }, { "input": "unwarier", "output": "â ¥â â ºâ œâ Šâ »" }, { "input": "unwariest", "output": "â ¥â â ºâ œâ Šâ ‘â Œ" }, { "input": "unwarily", "output": "â ¥â â ºâ œâ Šâ ‡â ½" }, { "input": "unwariness", "output": "â ¥â â ºâ œâ Šâ °â Ž" }, { "input": "unwariness's", "output": "â ¥â â ºâ œâ Šâ °â Žâ „â Ž" }, { "input": "unwarrantable", "output": "â ¥â â ºâ œâ —â â â žâ â ¼" }, { "input": "unwarranted", "output": "â ¥â â ºâ œâ —â â â žâ «" }, { "input": "unwary", "output": "â ¥â â ºâ œâ ½" }, { "input": "unwashed", "output": "â ¥â â ºâ â ©â «" }, { "input": "unwavering", "output": "â ¥â â ºâ â §â »â Œ" }, { "input": "unwearable", "output": "â ¥â â ºâ ‘â œâ â ¼" }, { "input": "unwearied", "output": "â ¥â â ºâ ‘⠜⠊⠫" }, { "input": "unwed", "output": "â ¥â â ºâ «" }, { "input": "unwelcome", "output": "â ¥â â ºâ ‘⠇⠉⠕â â ‘" }, { "input": "unwell", "output": "â ¥â â ºâ ‘⠇⠇" }, { "input": "unwholesome", "output": "â ¥â â ±â •⠇⠑â â Ž" }, { "input": "unwholesomeness", "output": "â ¥â â ±â •⠇⠑â â Žâ °â Ž" }, { "input": "unwholesomeness's", "output": "â ¥â â ±â •⠇⠑â â Žâ °â Žâ „â Ž" }, { "input": "unwieldier", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠻" }, { "input": "unwieldiest", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠑⠌" }, { "input": "unwieldiness", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠰⠎" }, { "input": "unwieldiness's", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠊⠰⠎⠄⠎" }, { "input": "unwieldy", "output": "â ¥â â ºâ Šâ ‘⠇⠙⠽" }, { "input": "unwilling", "output": "â ¥â â ºâ Šâ ‡â ‡â Œ" }, { "input": "unwillingly", "output": "â ¥â â ºâ Šâ ‡â ‡â Œâ ‡â ½" }, { "input": "unwillingness", "output": "â ¥â â ºâ Šâ ‡â ‡â Œâ °â Ž" }, { "input": "unwillingness's", "output": "â ¥â â ºâ Šâ ‡â ‡â Œâ °â Žâ „â Ž" }, { "input": "unwind", "output": "â ¥â â ºâ ”â ™" }, { "input": "unwinding", "output": "â ¥â â ºâ ”⠙⠌" }, { "input": "unwinds", "output": "â ¥â â ºâ ”⠙⠎" }, { "input": "unwise", "output": "â ¥â â ºâ Šâ Žâ ‘" }, { "input": "unwisely", "output": "â ¥â â ºâ Šâ Žâ ‘⠇⠽" }, { "input": "unwiser", "output": "â ¥â â ºâ Šâ Žâ »" }, { "input": "unwisest", "output": "â ¥â â ºâ Šâ Žâ ‘â Œ" }, { "input": "unwitting", "output": "â ¥â â ºâ Šâ žâ žâ Œ" }, { "input": "unwittingly", "output": "â ¥â â ºâ Šâ žâ žâ Œâ ‡â ½" }, { "input": "unwonted", "output": "â ¥â â ºâ •â â žâ «" }, { "input": "unworkable", "output": "â ¥â â â ºâ â ¼" }, { "input": "unworldliness", "output": "â ¥â â ¸â ºâ ‡â Šâ °â Ž" }, { "input": "unworldliness's", "output": "â ¥â â ¸â ºâ ‡â Šâ °â Žâ „â Ž" }, { "input": "unworldly", "output": "â ¥â â ¸â ºâ ‡â ½" }, { "input": "unworn", "output": "â ¥â â ºâ •â —â " }, { "input": "unworried", "output": "â ¥â â ºâ •â —â —â Šâ «" }, { "input": "unworthier", "output": "â ¥â â ºâ •⠗⠹⠊⠻" }, { "input": "unworthiest", "output": "â ¥â â ºâ •⠗⠹⠊⠑⠌" }, { "input": "unworthily", "output": "â ¥â â ºâ •⠗⠹⠊⠇⠽" }, { "input": "unworthiness", "output": "â ¥â â ºâ •⠗⠹⠊⠰⠎" }, { "input": "unworthiness's", "output": "â ¥â â ºâ •⠗⠹⠊⠰⠎⠄⠎" }, { "input": "unworthy", "output": "â ¥â â ºâ •⠗⠹⠽" }, { "input": "unwound", "output": "â ¥â â ºâ ¨â ™" }, { "input": "unwoven", "output": "â ¥â â ºâ •â §â ¢" }, { "input": "unwrap", "output": "â ¥â â ºâ —â â " }, { "input": "unwrapped", "output": "â ¥â â ºâ —â â â â «" }, { "input": "unwrapping", "output": "â ¥â â ºâ —â â â â Œ" }, { "input": "unwraps", "output": "â ¥â â ºâ —â â â Ž" }, { "input": "unwrinkled", "output": "â ¥â â ºâ —⠔⠅⠇⠫" }, { "input": "unwritten", "output": "â ¥â â ºâ —â Šâ žâ žâ ¢" }, { "input": "unyielding", "output": "â ¥â â ½â Šâ ‘⠇⠙⠌" }, { "input": "unyoke", "output": "â ¥â â ½â •â …â ‘" }, { "input": "unyoked", "output": "â ¥â â ½â •â …â «" }, { "input": "unyokes", "output": "â ¥â â ½â •â …â ‘â Ž" }, { "input": "unyoking", "output": "â ¥â â ½â •â …â Œ" }, { "input": "unzip", "output": "â ¥â â µâ Šâ " }, { "input": "unzipped", "output": "â ¥â â µâ Šâ â â «" }, { "input": "unzipping", "output": "â ¥â â µâ Šâ â â Œ" }, { "input": "unzips", "output": "â ¥â â µâ Šâ â Ž" }, { "input": "up", "output": "â ¥â " }, { "input": "upbeat", "output": "â ¥â â ƒâ ‚â ž" }, { "input": "upbeat's", "output": "â ¥â â ƒâ ‚â žâ „â Ž" }, { "input": "upbeats", "output": "â ¥â â ƒâ ‚â žâ Ž" }, { "input": "upbraid", "output": "â ¥â â ƒâ —â â Šâ ™" }, { "input": "upbraided", "output": "â ¥â â ƒâ —â â Šâ ™â «" }, { "input": "upbraiding", "output": "â ¥â â ƒâ —â â Šâ ™â Œ" }, { "input": "upbraids", "output": "â ¥â â ƒâ —â â Šâ ™â Ž" }, { "input": "upbringing", "output": "â ¥â â ƒâ —⠌⠌" }, { "input": "upbringing's", "output": "â ¥â â ƒâ —⠌⠌⠄⠎" }, { "input": "upbringings", "output": "â ¥â â ƒâ —⠌⠌⠎" }, { "input": "upchuck", "output": "â ¥â â ¡â ¥â ‰â …" }, { "input": "upchucked", "output": "â ¥â â ¡â ¥â ‰â …â «" }, { "input": "upchucking", "output": "â ¥â â ¡â ¥â ‰â …â Œ" }, { "input": "upchucks", "output": "â ¥â â ¡â ¥â ‰â …â Ž" }, { "input": "upcoming", "output": "â ¥â â ‰â •â â Œ" }, { "input": "upcountry", "output": "â ¥â â ‰â ¨â žâ —â ½" }, { "input": "upcountry's", "output": "â ¥â â ‰â ¨â žâ —⠽⠄⠎" }, { "input": "update", "output": "â ¥â â ™â â žâ ‘" }, { "input": "update's", "output": "â ¥â â ™â â žâ ‘â „â Ž" }, { "input": "updated", "output": "â ¥â â ™â â žâ «" }, { "input": "updater", "output": "â ¥â â ™â â žâ »" }, { "input": "updates", "output": "â ¥â â ™â â žâ ‘â Ž" }, { "input": "updating", "output": "â ¥â â ™â â žâ Œ" }, { "input": "updraft", "output": "â ¥â â ™â —â â ‹â ž" }, { "input": "updraft's", "output": "â ¥â â ™â —â â ‹â žâ „â Ž" }, { "input": "updrafts", "output": "â ¥â â ™â —â â ‹â žâ Ž" }, { "input": "upend", "output": "â ¥â â ¢â ™" }, { "input": "upended", "output": "â ¥â â ¢â ™â «" }, { "input": "upending", "output": "â ¥â â ¢â ™â Œ" }, { "input": "upends", "output": "â ¥â â ¢â ™â Ž" }, { "input": "upfront", "output": "â ¥â â ‹â —â •â â ž" }, { "input": "upgrade", "output": "â ¥â â ›â —â â ™â ‘" }, { "input": "upgrade's", "output": "â ¥â â ›â —â â ™â ‘â „â Ž" }, { "input": "upgraded", "output": "â ¥â â ›â —â â ™â «" }, { "input": "upgrades", "output": "â ¥â â ›â —â â ™â ‘â Ž" }, { "input": "upgrading", "output": "â ¥â â ›â —â â ™â Œ" }, { "input": "upheaval", "output": "â ¥â â “â ‚â §â â ‡" }, { "input": "upheaval's", "output": "â ¥â â “â ‚â §â â ‡â „â Ž" }, { "input": "upheavals", "output": "â ¥â â “â ‚â §â â ‡â Ž" }, { "input": "upheld", "output": "â ¥â â “⠑⠇⠙" }, { "input": "uphill", "output": "â ¥â â “⠊⠇⠇" }, { "input": "uphill's", "output": "â ¥â â “⠊⠇⠇⠄⠎" }, { "input": "uphills", "output": "â ¥â â “⠊⠇⠇⠎" }, { "input": "uphold", "output": "â ¥â â “⠕⠇⠙" }, { "input": "upholding", "output": "â ¥â â “⠕⠇⠙⠌" }, { "input": "upholds", "output": "â ¥â â “⠕⠇⠙⠎" }, { "input": "upholster", "output": "â ¥â â “⠕⠇⠌⠻" }, { "input": "upholstered", "output": "â ¥â â “⠕⠇⠌⠻⠫" }, { "input": "upholsterer", "output": "â ¥â â “⠕⠇⠌⠻⠻" }, { "input": "upholsterer's", "output": "â ¥â â “⠕⠇⠌⠻⠻⠄⠎" }, { "input": "upholsterers", "output": "â ¥â â “⠕⠇⠌⠻⠻⠎" }, { "input": "upholstering", "output": "â ¥â â “⠕⠇⠌⠻⠌" }, { "input": "upholsters", "output": "â ¥â â “⠕⠇⠌⠻⠎" }, { "input": "upholstery", "output": "â ¥â â “⠕⠇⠌⠻⠽" }, { "input": "upholstery's", "output": "â ¥â â “⠕⠇⠌⠻⠽⠄⠎" }, { "input": "upkeep", "output": "â ¥â â …â ‘â ‘â " }, { "input": "upkeep's", "output": "â ¥â â …â ‘â ‘â â „â Ž" }, { "input": "upland", "output": "â ¥â â ‡â ¯" }, { "input": "upland's", "output": "â ¥â â ‡â ¯â „â Ž" }, { "input": "uplands", "output": "â ¥â â ‡â ¯â Ž" }, { "input": "uplift", "output": "â ¥â â ‡â Šâ ‹â ž" }, { "input": "uplift's", "output": "â ¥â â ‡â Šâ ‹â žâ „â Ž" }, { "input": "uplifted", "output": "â ¥â â ‡â Šâ ‹â žâ «" }, { "input": "uplifting", "output": "â ¥â â ‡â Šâ ‹â žâ Œ" }, { "input": "upliftings", "output": "â ¥â â ‡â Šâ ‹â žâ Œâ Ž" }, { "input": "uplifts", "output": "â ¥â â ‡â Šâ ‹â žâ Ž" }, { "input": "upload", "output": "â ¥â â ‡â •â â ™" }, { "input": "upmarket", "output": "â ¥â â â œâ …â ‘â ž" }, { "input": "upon", "output": "⠘⠥" }, { "input": "upped", "output": "â ¥â â â «" }, { "input": "upper", "output": "â ¥â â â »" }, { "input": "upper's", "output": "â ¥â â â »â „â Ž" }, { "input": "uppercase", "output": "â ¥â â â »â ‰â â Žâ ‘" }, { "input": "uppercase's", "output": "â ¥â â â »â ‰â â Žâ ‘â „â Ž" }, { "input": "upperclassman", "output": "â ¥â â â »â ‰â ‡â â Žâ Žâ â â " }, { "input": "upperclassman's", "output": "â ¥â â â »â ‰â ‡â â Žâ Žâ â â â „â Ž" }, { "input": "upperclassmen", "output": "â ¥â â â »â ‰â ‡â â Žâ Žâ â ¢" }, { "input": "uppercut", "output": "â ¥â â â »â ‰â ¥â ž" }, { "input": "uppercut's", "output": "â ¥â â â »â ‰â ¥â žâ „â Ž" }, { "input": "uppercuts", "output": "â ¥â â â »â ‰â ¥â žâ Ž" }, { "input": "uppercutting", "output": "â ¥â â â »â ‰â ¥â žâ žâ Œ" }, { "input": "uppermost", "output": "â ¥â â â »â â •â Œ" }, { "input": "uppers", "output": "â ¥â â â »â Ž" }, { "input": "upping", "output": "â ¥â â â Œ" }, { "input": "uppish", "output": "â ¥â â â Šâ ©" }, { "input": "uppity", "output": "â ¥â â â °â ½" }, { "input": "upraise", "output": "â ¥â â —â â Šâ Žâ ‘" }, { "input": "upraised", "output": "â ¥â â —â â Šâ Žâ «" }, { "input": "upraises", "output": "â ¥â â —â â Šâ Žâ ‘â Ž" }, { "input": "upraising", "output": "â ¥â â —â â Šâ Žâ Œ" }, { "input": "uprear", "output": "â ¥â â —â ‘â œ" }, { "input": "upreared", "output": "â ¥â â —⠑⠜⠫" }, { "input": "uprearing", "output": "â ¥â â —⠑⠜⠌" }, { "input": "uprears", "output": "â ¥â â —⠑⠜⠎" }, { "input": "upright", "output": "â ¥â â â —" }, { "input": "upright's", "output": "â ¥â â â —â „â Ž" }, { "input": "uprightly", "output": "â ¥â â â —⠇⠽" }, { "input": "uprightness's", "output": "â ¥â â â —â °â Žâ „â Ž" }, { "input": "uprights", "output": "â ¥â â â —â Ž" }, { "input": "uprising", "output": "â ¥â â —â Šâ Žâ Œ" }, { "input": "uprising's", "output": "â ¥â â —⠊⠎⠌⠄⠎" }, { "input": "uprisings", "output": "â ¥â â —⠊⠎⠌⠎" }, { "input": "uproar", "output": "â ¥â â —â •â œ" }, { "input": "uproar's", "output": "â ¥â â —⠕⠜⠄⠎" }, { "input": "uproarious", "output": "â ¥â â —⠕⠜⠊⠳⠎" }, { "input": "uproariously", "output": "â ¥â â —⠕⠜⠊⠳⠎⠇⠽" }, { "input": "uproars", "output": "â ¥â â —⠕⠜⠎" }, { "input": "uproot", "output": "â ¥â â —â •â •â ž" }, { "input": "uprooted", "output": "â ¥â â —â •â •â žâ «" }, { "input": "uprooting", "output": "â ¥â â —â •â •â žâ Œ" }, { "input": "uproots", "output": "â ¥â â —â •â •â žâ Ž" }, { "input": "ups", "output": "â ¥â â Ž" }, { "input": "upscale", "output": "â ¥â â Žâ ‰â â ‡â ‘" }, { "input": "upset", "output": "â ¥â â Žâ ‘â ž" }, { "input": "upset's", "output": "â ¥â â Žâ ‘â žâ „â Ž" }, { "input": "upsets", "output": "â ¥â â Žâ ‘â žâ Ž" }, { "input": "upsetting", "output": "â ¥â â Žâ ‘â žâ žâ Œ" }, { "input": "upshot", "output": "â ¥â â ©â •â ž" }, { "input": "upshot's", "output": "â ¥â â ©â •â žâ „â Ž" }, { "input": "upshots", "output": "â ¥â â ©â •â žâ Ž" }, { "input": "upside", "output": "â ¥â â Žâ Šâ ™â ‘" }, { "input": "upside's", "output": "â ¥â â Žâ Šâ ™â ‘â „â Ž" }, { "input": "upsides", "output": "â ¥â â Žâ Šâ ™â ‘â Ž" }, { "input": "upsilon", "output": "â ¥â â Žâ Šâ ‡â •â " }, { "input": "upsilon's", "output": "â ¥â â Žâ Šâ ‡â •â â „â Ž" }, { "input": "upsilons", "output": "â ¥â â Žâ Šâ ‡â •â â Ž" }, { "input": "upstage", "output": "â ¥â â Œâ â ›â ‘" }, { "input": "upstaged", "output": "â ¥â â Œâ â ›â «" }, { "input": "upstages", "output": "â ¥â â Œâ â ›â ‘â Ž" }, { "input": "upstaging", "output": "â ¥â â Œâ â ›â Œ" }, { "input": "upstairs", "output": "â ¥â â Œâ â Šâ —â Ž" }, { "input": "upstanding", "output": "â ¥â â Œâ ¯â Œ" }, { "input": "upstart", "output": "â ¥â â Œâ œâ ž" }, { "input": "upstart's", "output": "â ¥â â Œâ œâ žâ „â Ž" }, { "input": "upstarted", "output": "â ¥â â Œâ œâ žâ «" }, { "input": "upstarting", "output": "â ¥â â Œâ œâ žâ Œ" }, { "input": "upstarts", "output": "â ¥â â Œâ œâ žâ Ž" }, { "input": "upstate", "output": "â ¥â â Œâ â žâ ‘" }, { "input": "upstate's", "output": "â ¥â â Œâ â žâ ‘â „â Ž" }, { "input": "upstream", "output": "â ¥â â Œâ —â ‚â " }, { "input": "upstroke", "output": "â ¥â â Œâ —â •â …â ‘" }, { "input": "upstroke's", "output": "â ¥â â Œâ —â •â …â ‘â „â Ž" }, { "input": "upstrokes", "output": "â ¥â â Œâ —â •â …â ‘â Ž" }, { "input": "upsurge", "output": "â ¥â â Žâ ¥â —⠛⠑" }, { "input": "upsurge's", "output": "â ¥â â Žâ ¥â —⠛⠑⠄⠎" }, { "input": "upsurged", "output": "â ¥â â Žâ ¥â —⠛⠫" }, { "input": "upsurges", "output": "â ¥â â Žâ ¥â —⠛⠑⠎" }, { "input": "upsurging", "output": "â ¥â â Žâ ¥â —⠛⠌" }, { "input": "upswing", "output": "â ¥â â Žâ ºâ Œ" }, { "input": "upswing's", "output": "â ¥â â Žâ ºâ Œâ „â Ž" }, { "input": "upswings", "output": "â ¥â â Žâ ºâ Œâ Ž" }, { "input": "uptake", "output": "â ¥â â žâ â …â ‘" }, { "input": "uptake's", "output": "â ¥â â žâ â …â ‘â „â Ž" }, { "input": "uptakes", "output": "â ¥â â žâ â …â ‘â Ž" }, { "input": "upthrust", "output": "â ¥â â ¹â —⠥⠌" }, { "input": "upthrust's", "output": "â ¥â â ¹â —⠥⠌⠄⠎" }, { "input": "upthrusting", "output": "â ¥â â ¹â —⠥⠌⠌" }, { "input": "upthrusts", "output": "â ¥â â ¹â —⠥⠌⠎" }, { "input": "uptick", "output": "â ¥â â žâ Šâ ‰â …" }, { "input": "uptick's", "output": "â ¥â â žâ Šâ ‰â …â „â Ž" }, { "input": "upticks", "output": "â ¥â â žâ Šâ ‰â …â Ž" }, { "input": "uptight", "output": "â ¥â â žâ Šâ £â ž" }, { "input": "uptown", "output": "â ¥â â žâ ªâ " }, { "input": "uptown's", "output": "â ¥â â žâ ªâ â „â Ž" }, { "input": "upturn", "output": "â ¥â â žâ ¥â —â " }, { "input": "upturn's", "output": "â ¥â â žâ ¥â —â â „â Ž" }, { "input": "upturned", "output": "â ¥â â žâ ¥â —â â «" }, { "input": "upturning", "output": "â ¥â â žâ ¥â —â â Œ" }, { "input": "upturns", "output": "â ¥â â žâ ¥â —â â Ž" }, { "input": "upward", "output": "â ¥â â ºâ œâ ™" }, { "input": "upwardly", "output": "â ¥â â ºâ œâ ™â ‡â ½" }, { "input": "upwards", "output": "â ¥â â ºâ œâ ™â Ž" }, { "input": "uracil", "output": "⠥⠗â â ‰â Šâ ‡" }, { "input": "uracil's", "output": "⠥⠗â â ‰â Šâ ‡â „â Ž" }, { "input": "uranium", "output": "⠥⠗â â â Šâ ¥â " }, { "input": "uranium's", "output": "⠥⠗â â â Šâ ¥â â „â Ž" }, { "input": "urban", "output": "⠥⠗⠃â â " }, { "input": "urbane", "output": "⠥⠗⠃â â â ‘" }, { "input": "urbaner", "output": "⠥⠗⠃â â â »" }, { "input": "urbanest", "output": "⠥⠗⠃â â â ‘â Œ" }, { "input": "urbanity", "output": "⠥⠗⠃â â â °â ½" }, { "input": "urbanity's", "output": "⠥⠗⠃â â â °â ½â „â Ž" }, { "input": "urbanization", "output": "⠥⠗⠃â â â Šâ µâ  â " }, { "input": "urbanization's", "output": "⠥⠗⠃â â â Šâ µâ  â â „â Ž" }, { "input": "urbanize", "output": "⠥⠗⠃â â â Šâ µâ ‘" }, { "input": "urbanized", "output": "⠥⠗⠃â â â Šâ µâ «" }, { "input": "urbanizes", "output": "⠥⠗⠃â â â Šâ µâ ‘â Ž" }, { "input": "urbanizing", "output": "⠥⠗⠃â â â Šâ µâ Œ" }, { "input": "urbanologist", "output": "⠥⠗⠃â â â •⠇⠕⠛⠊⠌" }, { "input": "urbanologist's", "output": "⠥⠗⠃â â â •⠇⠕⠛⠊⠌⠄⠎" }, { "input": "urbanologists", "output": "⠥⠗⠃â â â •⠇⠕⠛⠊⠌⠎" }, { "input": "urbanology", "output": "⠥⠗⠃â â â •⠇⠕⠛⠽" }, { "input": "urbanology's", "output": "⠥⠗⠃â â â •⠇⠕⠛⠽⠄⠎" }, { "input": "urchin", "output": "⠥⠗⠡⠔" }, { "input": "urchin's", "output": "⠥⠗⠡⠔⠄⠎" }, { "input": "urchins", "output": "⠥⠗⠡⠔⠎" }, { "input": "urea", "output": "⠥⠗⠑â " }, { "input": "urea's", "output": "⠥⠗⠑â â „â Ž" }, { "input": "uremia", "output": "⠥⠗⠑â â Šâ " }, { "input": "uremia's", "output": "⠥⠗⠑â â Šâ â „â Ž" }, { "input": "uremic", "output": "⠥⠗⠑â â Šâ ‰" }, { "input": "ureter", "output": "⠥⠗⠑⠞⠻" }, { "input": "ureter's", "output": "⠥⠗⠑⠞⠻⠄⠎" }, { "input": "ureters", "output": "⠥⠗⠑⠞⠻⠎" }, { "input": "urethane", "output": "⠥⠗⠑⠹â â â ‘" }, { "input": "urethane's", "output": "⠥⠗⠑⠹â â â ‘â „â Ž" }, { "input": "urethra", "output": "⠥⠗⠑⠹⠗â " }, { "input": "urethra's", "output": "⠥⠗⠑⠹⠗â â „â Ž" }, { "input": "urethrae", "output": "⠥⠗⠑⠹⠗â â ‘" }, { "input": "urethral", "output": "⠥⠗⠑⠹⠗â â ‡" }, { "input": "urge", "output": "⠥⠗⠛⠑" }, { "input": "urge's", "output": "⠥⠗⠛⠑⠄⠎" }, { "input": "urged", "output": "⠥⠗⠛⠫" }, { "input": "urgency", "output": "⠥⠗⠛⠢⠉⠽" }, { "input": "urgency's", "output": "⠥⠗⠛⠢⠉⠽⠄⠎" }, { "input": "urgent", "output": "⠥⠗⠛⠢⠞" }, { "input": "urgently", "output": "⠥⠗⠛⠢⠞⠇⠽" }, { "input": "urges", "output": "⠥⠗⠛⠑⠎" }, { "input": "urging", "output": "⠥⠗⠛⠌" }, { "input": "uric", "output": "⠥⠗⠊⠉" }, { "input": "urinal", "output": "⠥⠗⠔â â ‡" }, { "input": "urinal's", "output": "⠥⠗⠔â â ‡â „â Ž" }, { "input": "urinals", "output": "⠥⠗⠔â â ‡â Ž" }, { "input": "urinalyses", "output": "⠥⠗⠔â â ‡â ½â Žâ ‘â Ž" }, { "input": "urinalysis", "output": "⠥⠗⠔â â ‡â ½â Žâ Šâ Ž" }, { "input": "urinalysis's", "output": "⠥⠗⠔â â ‡â ½â Žâ Šâ Žâ „â Ž" }, { "input": "urinary", "output": "⠥⠗⠔⠜⠽" }, { "input": "urinate", "output": "⠥⠗⠔â â žâ ‘" }, { "input": "urinated", "output": "⠥⠗⠔â â žâ «" }, { "input": "urinates", "output": "⠥⠗⠔â â žâ ‘â Ž" }, { "input": "urinating", "output": "⠥⠗⠔â â žâ Œ" }, { "input": "urination", "output": "⠥⠗⠔⠠â " }, { "input": "urination's", "output": "⠥⠗⠔⠠â â „â Ž" }, { "input": "urine", "output": "⠥⠗⠔⠑" }, { "input": "urine's", "output": "⠥⠗⠔⠑⠄⠎" }, { "input": "urn", "output": "⠥⠗â " }, { "input": "urn's", "output": "⠥⠗â â „â Ž" }, { "input": "urns", "output": "⠥⠗â â Ž" }, { "input": "urogenital", "output": "⠥⠗⠕⠛⠢⠊⠞â â ‡" }, { "input": "urologist", "output": "⠥⠗⠕⠇⠕⠛⠊⠌" }, { "input": "urologist's", "output": "⠥⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "urologists", "output": "⠥⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "urology", "output": "⠥⠗⠕⠇⠕⠛⠽" }, { "input": "urology's", "output": "⠥⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "ursine", "output": "⠥⠗⠎⠔⠑" }, { "input": "urticaria", "output": "⠥⠗⠞⠊⠉⠜⠊â " }, { "input": "urticaria's", "output": "⠥⠗⠞⠊⠉⠜⠊â â „â Ž" }, { "input": "us", "output": "â ¥" }, { "input": "usability", "output": "⠥⠎â â ƒâ Šâ ‡â °â ½" }, { "input": "usability's", "output": "⠥⠎â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "usable", "output": "⠥⠎â â ¼" }, { "input": "usage", "output": "⠥⠎â â ›â ‘" }, { "input": "usage's", "output": "⠥⠎â â ›â ‘â „â Ž" }, { "input": "usages", "output": "⠥⠎â â ›â ‘â Ž" }, { "input": "use", "output": "⠥⠎⠑" }, { "input": "use's", "output": "⠥⠎⠑⠄⠎" }, { "input": "used", "output": "⠥⠎⠫" }, { "input": "useful", "output": "⠥⠎⠑⠰⠇" }, { "input": "usefully", "output": "⠥⠎⠑⠰⠇⠇⠽" }, { "input": "usefulness", "output": "⠥⠎⠑⠰⠇⠰⠎" }, { "input": "usefulness's", "output": "⠥⠎⠑⠰⠇⠰⠎⠄⠎" }, { "input": "useless", "output": "⠥⠎⠑⠨⠎" }, { "input": "uselessly", "output": "⠥⠎⠑⠨⠎⠇⠽" }, { "input": "uselessness", "output": "⠥⠎⠑⠨⠎⠰⠎" }, { "input": "uselessness's", "output": "⠥⠎⠑⠨⠎⠰⠎⠄⠎" }, { "input": "user", "output": "⠥⠎⠻" }, { "input": "user's", "output": "⠥⠎⠻⠄⠎" }, { "input": "users", "output": "⠥⠎⠻⠎" }, { "input": "uses", "output": "⠥⠎⠑⠎" }, { "input": "usher", "output": "⠥⠩⠻" }, { "input": "usher's", "output": "⠥⠩⠻⠄⠎" }, { "input": "ushered", "output": "⠥⠩⠻⠫" }, { "input": "usherette", "output": "⠥⠩⠻⠑⠞⠞⠑" }, { "input": "usherette's", "output": "⠥⠩⠻⠑⠞⠞⠑⠄⠎" }, { "input": "usherettes", "output": "⠥⠩⠻⠑⠞⠞⠑⠎" }, { "input": "ushering", "output": "⠥⠩⠻⠌" }, { "input": "ushers", "output": "⠥⠩⠻⠎" }, { "input": "using", "output": "⠥⠎⠌" }, { "input": "usual", "output": "⠥⠎⠥â â ‡" }, { "input": "usual's", "output": "⠥⠎⠥â â ‡â „â Ž" }, { "input": "usually", "output": "⠥⠎⠥⠠⠽" }, { "input": "usurer", "output": "⠥⠎⠥⠗⠻" }, { "input": "usurer's", "output": "⠥⠎⠥⠗⠻⠄⠎" }, { "input": "usurers", "output": "⠥⠎⠥⠗⠻⠎" }, { "input": "usurious", "output": "⠥⠎⠥⠗⠊⠳⠎" }, { "input": "usurp", "output": "⠥⠎⠥⠗â " }, { "input": "usurpation", "output": "⠥⠎⠥⠗â â  â " }, { "input": "usurpation's", "output": "⠥⠎⠥⠗â â  â â „â Ž" }, { "input": "usurped", "output": "⠥⠎⠥⠗â â «" }, { "input": "usurper", "output": "⠥⠎⠥⠗â â »" }, { "input": "usurper's", "output": "⠥⠎⠥⠗â â »â „â Ž" }, { "input": "usurpers", "output": "⠥⠎⠥⠗â â »â Ž" }, { "input": "usurping", "output": "⠥⠎⠥⠗â â Œ" }, { "input": "usurps", "output": "⠥⠎⠥⠗â â Ž" }, { "input": "usury", "output": "⠥⠎⠥⠗⠽" }, { "input": "usury's", "output": "⠥⠎⠥⠗⠽⠄⠎" }, { "input": "utensil", "output": "⠥⠞⠢⠎⠊⠇" }, { "input": "utensil's", "output": "⠥⠞⠢⠎⠊⠇⠄⠎" }, { "input": "utensils", "output": "⠥⠞⠢⠎⠊⠇⠎" }, { "input": "uteri", "output": "⠥⠞⠻⠊" }, { "input": "uterine", "output": "⠥⠞⠻⠔⠑" }, { "input": "uterus", "output": "⠥⠞⠻⠥⠎" }, { "input": "uterus's", "output": "⠥⠞⠻⠥⠎⠄⠎" }, { "input": "utilitarian", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â " }, { "input": "utilitarian's", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â â „â Ž" }, { "input": "utilitarianism", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â â Šâ Žâ " }, { "input": "utilitarianism's", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "utilitarians", "output": "⠥⠞⠊⠇⠊⠞⠜⠊â â â Ž" }, { "input": "utilities", "output": "⠥⠞⠊⠇⠊⠞⠊⠑⠎" }, { "input": "utility", "output": "⠥⠞⠊⠇⠰⠽" }, { "input": "utility's", "output": "⠥⠞⠊⠇⠰⠽⠄⠎" }, { "input": "utilizable", "output": "⠥⠞⠊⠇⠊⠵â â ¼" }, { "input": "utilization", "output": "⠥⠞⠊⠇⠊⠵⠠â " }, { "input": "utilization's", "output": "⠥⠞⠊⠇⠊⠵⠠â â „â Ž" }, { "input": "utilize", "output": "⠥⠞⠊⠇⠊⠵⠑" }, { "input": "utilized", "output": "⠥⠞⠊⠇⠊⠵⠫" }, { "input": "utilizes", "output": "⠥⠞⠊⠇⠊⠵⠑⠎" }, { "input": "utilizing", "output": "⠥⠞⠊⠇⠊⠵⠌" }, { "input": "utmost", "output": "⠥⠞â â •â Œ" }, { "input": "utmost's", "output": "⠥⠞â â •⠌⠄⠎" }, { "input": "utopia", "output": "⠥⠞⠕â â Šâ " }, { "input": "utopia's", "output": "⠥⠞⠕â â Šâ â „â Ž" }, { "input": "utopias", "output": "⠥⠞⠕â â Šâ â Ž" }, { "input": "utter", "output": "⠥⠞⠞⠻" }, { "input": "utterance", "output": "⠥⠞⠞⠻⠨⠑" }, { "input": "utterance's", "output": "⠥⠞⠞⠻⠨⠑⠄⠎" }, { "input": "utterances", "output": "⠥⠞⠞⠻⠨⠑⠎" }, { "input": "uttered", "output": "⠥⠞⠞⠻⠫" }, { "input": "uttering", "output": "⠥⠞⠞⠻⠌" }, { "input": "utterly", "output": "⠥⠞⠞⠻⠇⠽" }, { "input": "uttermost", "output": "⠥⠞⠞⠻â â •â Œ" }, { "input": "uttermost's", "output": "⠥⠞⠞⠻â â •⠌⠄⠎" }, { "input": "utters", "output": "⠥⠞⠞⠻⠎" }, { "input": "uvula", "output": "⠥⠧⠥⠇â " }, { "input": "uvula's", "output": "⠥⠧⠥⠇â â „â Ž" }, { "input": "uvular", "output": "⠥⠧⠥⠇⠜" }, { "input": "uvular's", "output": "⠥⠧⠥⠇⠜⠄⠎" }, { "input": "uvulars", "output": "⠥⠧⠥⠇⠜⠎" }, { "input": "uvulas", "output": "⠥⠧⠥⠇â â Ž" }, { "input": "uxorious", "output": "⠥⠭⠕⠗⠊⠳⠎" }, { "input": "v", "output": "â °â §" }, { "input": "vacancies", "output": "â §â â ‰â â â ‰â Šâ ‘â Ž" }, { "input": "vacancy", "output": "â §â â ‰â â â ‰â ½" }, { "input": "vacancy's", "output": "â §â â ‰â â â ‰â ½â „â Ž" }, { "input": "vacant", "output": "â §â â ‰â â â ž" }, { "input": "vacantly", "output": "â §â â ‰â â â žâ ‡â ½" }, { "input": "vacate", "output": "â §â â ‰â â žâ ‘" }, { "input": "vacated", "output": "â §â â ‰â â žâ «" }, { "input": "vacates", "output": "â §â â ‰â â žâ ‘â Ž" }, { "input": "vacating", "output": "â §â â ‰â â žâ Œ" }, { "input": "vacation", "output": "â §â â ‰â  â " }, { "input": "vacation's", "output": "â §â â ‰â  â â „â Ž" }, { "input": "vacationed", "output": "â §â â ‰â  â â «" }, { "input": "vacationer", "output": "â §â â ‰â  â â »" }, { "input": "vacationer's", "output": "â §â â ‰â  â â »â „â Ž" }, { "input": "vacationers", "output": "â §â â ‰â  â â »â Ž" }, { "input": "vacationing", "output": "â §â â ‰â  â â Œ" }, { "input": "vacationist", "output": "â §â â ‰â  â â Šâ Œ" }, { "input": "vacationist's", "output": "â §â â ‰â  â â Šâ Œâ „â Ž" }, { "input": "vacationists", "output": "â §â â ‰â  â â Šâ Œâ Ž" }, { "input": "vacations", "output": "â §â â ‰â  â â Ž" }, { "input": "vaccinate", "output": "â §â â ’â ”â â žâ ‘" }, { "input": "vaccinated", "output": "â §â â ’â ”â â žâ «" }, { "input": "vaccinates", "output": "â §â â ’â ”â â žâ ‘â Ž" }, { "input": "vaccinating", "output": "â §â â ’â ”â â žâ Œ" }, { "input": "vaccination", "output": "â §â â ’⠔⠠â " }, { "input": "vaccination's", "output": "â §â â ’⠔⠠â â „â Ž" }, { "input": "vaccinations", "output": "â §â â ’⠔⠠â â Ž" }, { "input": "vaccine", "output": "â §â â ’⠔⠑" }, { "input": "vaccine's", "output": "â §â â ’⠔⠑⠄⠎" }, { "input": "vaccines", "output": "â §â â ’⠔⠑⠎" }, { "input": "vacillate", "output": "â §â â ‰â Šâ ‡â ‡â â žâ ‘" }, { "input": "vacillated", "output": "â §â â ‰â Šâ ‡â ‡â â žâ «" }, { "input": "vacillates", "output": "â §â â ‰â Šâ ‡â ‡â â žâ ‘â Ž" }, { "input": "vacillating", "output": "â §â â ‰â Šâ ‡â ‡â â žâ Œ" }, { "input": "vacillation", "output": "â §â â ‰â Šâ ‡â ‡â  â " }, { "input": "vacillation's", "output": "â §â â ‰â Šâ ‡â ‡â  â â „â Ž" }, { "input": "vacillations", "output": "â §â â ‰â Šâ ‡â ‡â  â â Ž" }, { "input": "vacuity", "output": "â §â â ‰â ¥â °â ½" }, { "input": "vacuity's", "output": "â §â â ‰â ¥â °â ½â „â Ž" }, { "input": "vacuole", "output": "â §â â ‰â ¥â •⠇⠑" }, { "input": "vacuole's", "output": "â §â â ‰â ¥â •⠇⠑⠄⠎" }, { "input": "vacuoles", "output": "â §â â ‰â ¥â •⠇⠑⠎" }, { "input": "vacuous", "output": "â §â â ‰â ¥â ³â Ž" }, { "input": "vacuously", "output": "â §â â ‰â ¥â ³â Žâ ‡â ½" }, { "input": "vacuousness's", "output": "â §â â ‰â ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "vacuum", "output": "â §â â ‰â ¥â ¥â " }, { "input": "vacuum's", "output": "â §â â ‰â ¥â ¥â â „â Ž" }, { "input": "vacuumed", "output": "â §â â ‰â ¥â ¥â â «" }, { "input": "vacuuming", "output": "â §â â ‰â ¥â ¥â â Œ" }, { "input": "vacuums", "output": "â §â â ‰â ¥â ¥â â Ž" }, { "input": "vagabond", "output": "â §â â ›â â ƒâ •â â ™" }, { "input": "vagabond's", "output": "â §â â ›â â ƒâ •â â ™â „â Ž" }, { "input": "vagabondage", "output": "â §â â ›â â ƒâ •â â ™â â ›â ‘" }, { "input": "vagabondage's", "output": "â §â â ›â â ƒâ •â â ™â â ›â ‘â „â Ž" }, { "input": "vagabonded", "output": "â §â â ›â â ƒâ •â â ™â «" }, { "input": "vagabonding", "output": "â §â â ›â â ƒâ •â â ™â Œ" }, { "input": "vagabonds", "output": "â §â â ›â â ƒâ •â â ™â Ž" }, { "input": "vagaries", "output": "â §â â ›â œâ Šâ ‘â Ž" }, { "input": "vagarious", "output": "â §â â ›â œâ Šâ ³â Ž" }, { "input": "vagary", "output": "â §â â ›â œâ ½" }, { "input": "vagary's", "output": "â §â â ›â œâ ½â „â Ž" }, { "input": "vagina", "output": "â §â â ›â ”â " }, { "input": "vagina's", "output": "â §â â ›â ”â â „â Ž" }, { "input": "vaginae", "output": "â §â â ›â ”â â ‘" }, { "input": "vaginal", "output": "â §â â ›â ”â â ‡" }, { "input": "vaginally", "output": "â §â â ›â ”â  â ½" }, { "input": "vagrancy", "output": "â §â â ›â —â â â ‰â ½" }, { "input": "vagrancy's", "output": "â §â â ›â —â â â ‰â ½â „â Ž" }, { "input": "vagrant", "output": "â §â â ›â —â â â ž" }, { "input": "vagrant's", "output": "â §â â ›â —â â â žâ „â Ž" }, { "input": "vagrants", "output": "â §â â ›â —â â â žâ Ž" }, { "input": "vague", "output": "â §â â ›â ¥â ‘" }, { "input": "vaguely", "output": "â §â â ›â ¥â ‘⠇⠽" }, { "input": "vagueness", "output": "â §â â ›â ¥â ‘â °â Ž" }, { "input": "vagueness's", "output": "â §â â ›â ¥â ‘â °â Žâ „â Ž" }, { "input": "vaguer", "output": "â §â â ›â ¥â »" }, { "input": "vaguest", "output": "â §â â ›â ¥â ‘â Œ" }, { "input": "vain", "output": "â §â â ”" }, { "input": "vainer", "output": "â §â â ”â »" }, { "input": "vainest", "output": "â §â â ”â ‘â Œ" }, { "input": "vainglorious", "output": "â §â â ”⠛⠇⠕⠗⠊⠳⠎" }, { "input": "vaingloriously", "output": "â §â â ”⠛⠇⠕⠗⠊⠳⠎⠇⠽" }, { "input": "vainglory", "output": "â §â â ”⠛⠇⠕⠗⠽" }, { "input": "vainglory's", "output": "â §â â ”⠛⠇⠕⠗⠽⠄⠎" }, { "input": "vainly", "output": "â §â â ”⠇⠽" }, { "input": "valance", "output": "â §â â ‡â ¨â ‘" }, { "input": "valance's", "output": "â §â â ‡â ¨â ‘â „â Ž" }, { "input": "valances", "output": "â §â â ‡â ¨â ‘â Ž" }, { "input": "vale", "output": "â §â â ‡â ‘" }, { "input": "vale's", "output": "â §â â ‡â ‘â „â Ž" }, { "input": "valediction", "output": "â §â â ‡â ‘⠙⠊⠉⠰â " }, { "input": "valediction's", "output": "â §â â ‡â ‘⠙⠊⠉⠰â â „â Ž" }, { "input": "valedictions", "output": "â §â â ‡â ‘⠙⠊⠉⠰â â Ž" }, { "input": "valedictorian", "output": "â §â â ‡â ‘⠙⠊⠉⠞⠕⠗⠊â â " }, { "input": "valedictorian's", "output": "â §â â ‡â ‘⠙⠊⠉⠞⠕⠗⠊â â â „â Ž" }, { "input": "valedictorians", "output": "â §â â ‡â ‘⠙⠊⠉⠞⠕⠗⠊â â â Ž" }, { "input": "valedictories", "output": "â §â â ‡â ‘⠙⠊⠉⠞⠕⠗⠊⠑⠎" }, { "input": "valedictory", "output": "â §â â ‡â ‘⠙⠊⠉⠞⠕⠗⠽" }, { "input": "valedictory's", "output": "â §â â ‡â ‘⠙⠊⠉⠞⠕⠗⠽⠄⠎" }, { "input": "valence", "output": "â §â â ‡â °â ‘" }, { "input": "valence's", "output": "â §â â ‡â °â ‘â „â Ž" }, { "input": "valences", "output": "â §â â ‡â °â ‘â Ž" }, { "input": "valentine", "output": "â §â â ‡â ¢â žâ ”â ‘" }, { "input": "valentine's", "output": "â §â â ‡â ¢â žâ ”â ‘â „â Ž" }, { "input": "valentines", "output": "â §â â ‡â ¢â žâ ”â ‘â Ž" }, { "input": "vales", "output": "â §â â ‡â ‘â Ž" }, { "input": "valet", "output": "â §â â ‡â ‘â ž" }, { "input": "valet's", "output": "â §â â ‡â ‘â žâ „â Ž" }, { "input": "valeted", "output": "â §â â ‡â ‘â žâ «" }, { "input": "valeting", "output": "â §â â ‡â ‘â žâ Œ" }, { "input": "valets", "output": "â §â â ‡â ‘â žâ Ž" }, { "input": "valetudinarian", "output": "â §â â ‡â ‘⠞⠥⠙⠔⠜⠊â â " }, { "input": "valetudinarian's", "output": "â §â â ‡â ‘⠞⠥⠙⠔⠜⠊â â â „â Ž" }, { "input": "valetudinarianism", "output": "â §â â ‡â ‘⠞⠥⠙⠔⠜⠊â â â Šâ Žâ " }, { "input": "valetudinarianism's", "output": "â §â â ‡â ‘⠞⠥⠙⠔⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "valetudinarians", "output": "â §â â ‡â ‘⠞⠥⠙⠔⠜⠊â â â Ž" }, { "input": "valiance", "output": "â §â â ‡â Šâ ¨â ‘" }, { "input": "valiance's", "output": "â §â â ‡â Šâ ¨â ‘â „â Ž" }, { "input": "valiant", "output": "â §â â ‡â Šâ â â ž" }, { "input": "valiantly", "output": "â §â â ‡â Šâ â â žâ ‡â ½" }, { "input": "valid", "output": "â §â â ‡â Šâ ™" }, { "input": "validate", "output": "â §â â ‡â Šâ ™â â žâ ‘" }, { "input": "validated", "output": "â §â â ‡â Šâ ™â â žâ «" }, { "input": "validates", "output": "â §â â ‡â Šâ ™â â žâ ‘â Ž" }, { "input": "validating", "output": "â §â â ‡â Šâ ™â â žâ Œ" }, { "input": "validation", "output": "â §â â ‡â Šâ ™â  â " }, { "input": "validation's", "output": "â §â â ‡â Šâ ™â  â â „â Ž" }, { "input": "validations", "output": "â §â â ‡â Šâ ™â  â â Ž" }, { "input": "validity", "output": "â §â â ‡â Šâ ™â °â ½" }, { "input": "validity's", "output": "â §â â ‡â Šâ ™â °â ½â „â Ž" }, { "input": "validly", "output": "â §â â ‡â Šâ ™â ‡â ½" }, { "input": "validness", "output": "â §â â ‡â Šâ ™â °â Ž" }, { "input": "validness's", "output": "â §â â ‡â Šâ ™â °â Žâ „â Ž" }, { "input": "valise", "output": "â §â â ‡â Šâ Žâ ‘" }, { "input": "valise's", "output": "â §â â ‡â Šâ Žâ ‘â „â Ž" }, { "input": "valises", "output": "â §â â ‡â Šâ Žâ ‘â Ž" }, { "input": "valley", "output": "â §â â ‡â ‡â ‘â ½" }, { "input": "valley's", "output": "â §â â ‡â ‡â ‘⠽⠄⠎" }, { "input": "valleys", "output": "â §â â ‡â ‡â ‘⠽⠎" }, { "input": "valor", "output": "â §â â ‡â •â —" }, { "input": "valor's", "output": "â §â â ‡â •â —â „â Ž" }, { "input": "valorous", "output": "â §â â ‡â •⠗⠳⠎" }, { "input": "valorously", "output": "â §â â ‡â •⠗⠳⠎⠇⠽" }, { "input": "valuable", "output": "â §â â ‡â ¥â â ¼" }, { "input": "valuable's", "output": "â §â â ‡â ¥â â ¼â „â Ž" }, { "input": "valuables", "output": "â §â â ‡â ¥â â ¼â Ž" }, { "input": "valuate", "output": "â §â â ‡â ¥â â žâ ‘" }, { "input": "valuated", "output": "â §â â ‡â ¥â â žâ «" }, { "input": "valuates", "output": "â §â â ‡â ¥â â žâ ‘â Ž" }, { "input": "valuating", "output": "â §â â ‡â ¥â â žâ Œ" }, { "input": "valuation", "output": "â §â â ‡â ¥â  â " }, { "input": "valuation's", "output": "â §â â ‡â ¥â  â â „â Ž" }, { "input": "valuations", "output": "â §â â ‡â ¥â  â â Ž" }, { "input": "value", "output": "â §â â ‡â ¥â ‘" }, { "input": "value's", "output": "â §â â ‡â ¥â ‘â „â Ž" }, { "input": "valued", "output": "â §â â ‡â ¥â «" }, { "input": "valueless", "output": "â §â â ‡â ¥â ‘⠨⠎" }, { "input": "values", "output": "â §â â ‡â ¥â ‘â Ž" }, { "input": "valuing", "output": "â §â â ‡â ¥â Œ" }, { "input": "valve", "output": "â §â â ‡â §â ‘" }, { "input": "valve's", "output": "â §â â ‡â §â ‘â „â Ž" }, { "input": "valved", "output": "â §â â ‡â §â «" }, { "input": "valveless", "output": "â §â â ‡â §â ‘⠨⠎" }, { "input": "valves", "output": "â §â â ‡â §â ‘â Ž" }, { "input": "valving", "output": "â §â â ‡â §â Œ" }, { "input": "valvular", "output": "â §â â ‡â §â ¥â ‡â œ" }, { "input": "vamoose", "output": "â §â â â •â •â Žâ ‘" }, { "input": "vamoosed", "output": "â §â â â •â •â Žâ «" }, { "input": "vamooses", "output": "â §â â â •â •â Žâ ‘â Ž" }, { "input": "vamoosing", "output": "â §â â â •â •â Žâ Œ" }, { "input": "vamp", "output": "â §â â â " }, { "input": "vamp's", "output": "â §â â â â „â Ž" }, { "input": "vamped", "output": "â §â â â â «" }, { "input": "vamping", "output": "â §â â â â Œ" }, { "input": "vampire", "output": "â §â â â â Šâ —â ‘" }, { "input": "vampire's", "output": "â §â â â â Šâ —â ‘â „â Ž" }, { "input": "vampires", "output": "â §â â â â Šâ —â ‘â Ž" }, { "input": "vamps", "output": "â §â â â â Ž" }, { "input": "van", "output": "â §â â " }, { "input": "van's", "output": "â §â â â „â Ž" }, { "input": "vanadium", "output": "â §â â â â ™â Šâ ¥â " }, { "input": "vanadium's", "output": "â §â â â â ™â Šâ ¥â â „â Ž" }, { "input": "vandal", "output": "â §â ¯â â ‡" }, { "input": "vandal's", "output": "â §â ¯â â ‡â „â Ž" }, { "input": "vandalism", "output": "â §â ¯â â ‡â Šâ Žâ " }, { "input": "vandalism's", "output": "â §â ¯â â ‡â Šâ Žâ â „â Ž" }, { "input": "vandalize", "output": "â §â ¯â â ‡â Šâ µâ ‘" }, { "input": "vandalized", "output": "â §â ¯â â ‡â Šâ µâ «" }, { "input": "vandalizes", "output": "â §â ¯â â ‡â Šâ µâ ‘â Ž" }, { "input": "vandalizing", "output": "â §â ¯â â ‡â Šâ µâ Œ" }, { "input": "vandals", "output": "â §â ¯â â ‡â Ž" }, { "input": "vane", "output": "â §â â â ‘" }, { "input": "vane's", "output": "â §â â â ‘â „â Ž" }, { "input": "vanes", "output": "â §â â â ‘â Ž" }, { "input": "vanguard", "output": "â §â â â ›â ¥â œâ ™" }, { "input": "vanguard's", "output": "â §â â â ›â ¥â œâ ™â „â Ž" }, { "input": "vanguards", "output": "â §â â â ›â ¥â œâ ™â Ž" }, { "input": "vanilla", "output": "â §â â â Šâ ‡â ‡â " }, { "input": "vanilla's", "output": "â §â â â Šâ ‡â ‡â â „â Ž" }, { "input": "vanillas", "output": "â §â â â Šâ ‡â ‡â â Ž" }, { "input": "vanish", "output": "â §â â â Šâ ©" }, { "input": "vanished", "output": "â §â â â Šâ ©â «" }, { "input": "vanishes", "output": "â §â â â Šâ ©â ‘â Ž" }, { "input": "vanishing", "output": "â §â â â Šâ ©â Œ" }, { "input": "vanishings", "output": "â §â â â Šâ ©â Œâ Ž" }, { "input": "vanities", "output": "â §â â â Šâ žâ Šâ ‘â Ž" }, { "input": "vanity", "output": "â §â â â °â ½" }, { "input": "vanity's", "output": "â §â â â °â ½â „â Ž" }, { "input": "vanned", "output": "â §â â â â «" }, { "input": "vanning", "output": "â §â â â â Œ" }, { "input": "vanquish", "output": "â §â â â Ÿâ ¥â Šâ ©" }, { "input": "vanquished", "output": "â §â â â Ÿâ ¥â Šâ ©â «" }, { "input": "vanquisher", "output": "â §â â â Ÿâ ¥â Šâ ©â »" }, { "input": "vanquisher's", "output": "â §â â â Ÿâ ¥â Šâ ©â »â „â Ž" }, { "input": "vanquishers", "output": "â §â â â Ÿâ ¥â Šâ ©â »â Ž" }, { "input": "vanquishes", "output": "â §â â â Ÿâ ¥â Šâ ©â ‘â Ž" }, { "input": "vanquishing", "output": "â §â â â Ÿâ ¥â Šâ ©â Œ" }, { "input": "vans", "output": "â §â â â Ž" }, { "input": "vantage", "output": "â §â â â žâ â ›â ‘" }, { "input": "vantage's", "output": "â §â â â žâ â ›â ‘â „â Ž" }, { "input": "vantages", "output": "â §â â â žâ â ›â ‘â Ž" }, { "input": "vapid", "output": "â §â â â Šâ ™" }, { "input": "vapidity", "output": "â §â â â Šâ ™â °â ½" }, { "input": "vapidity's", "output": "â §â â â Šâ ™â °â ½â „â Ž" }, { "input": "vapidly", "output": "â §â â â Šâ ™â ‡â ½" }, { "input": "vapidness", "output": "â §â â â Šâ ™â °â Ž" }, { "input": "vapidness's", "output": "â §â â â Šâ ™â °â Žâ „â Ž" }, { "input": "vapor", "output": "â §â â â •â —" }, { "input": "vapor's", "output": "â §â â â •â —â „â Ž" }, { "input": "vaporization", "output": "â §â â â •⠗⠊⠵⠠â " }, { "input": "vaporization's", "output": "â §â â â •⠗⠊⠵⠠â â „â Ž" }, { "input": "vaporize", "output": "â §â â â •⠗⠊⠵⠑" }, { "input": "vaporized", "output": "â §â â â •⠗⠊⠵⠫" }, { "input": "vaporizer", "output": "â §â â â •⠗⠊⠵⠻" }, { "input": "vaporizer's", "output": "â §â â â •⠗⠊⠵⠻⠄⠎" }, { "input": "vaporizers", "output": "â §â â â •⠗⠊⠵⠻⠎" }, { "input": "vaporizes", "output": "â §â â â •⠗⠊⠵⠑⠎" }, { "input": "vaporizing", "output": "â §â â â •⠗⠊⠵⠌" }, { "input": "vaporous", "output": "â §â â â •⠗⠳⠎" }, { "input": "vapors", "output": "â §â â â •â —â Ž" }, { "input": "vapory", "output": "â §â â â •â —â ½" }, { "input": "vaquero", "output": "â §â â Ÿâ ¥â »â •" }, { "input": "vaquero's", "output": "â §â â Ÿâ ¥â »â •â „â Ž" }, { "input": "vaqueros", "output": "â §â â Ÿâ ¥â »â •â Ž" }, { "input": "variability", "output": "⠧⠜⠊â â ƒâ Šâ ‡â °â ½" }, { "input": "variability's", "output": "⠧⠜⠊â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "variable", "output": "⠧⠜⠊â â ¼" }, { "input": "variable's", "output": "⠧⠜⠊â â ¼â „â Ž" }, { "input": "variables", "output": "⠧⠜⠊â â ¼â Ž" }, { "input": "variably", "output": "⠧⠜⠊â â ƒâ ‡â ½" }, { "input": "variance", "output": "⠧⠜⠊⠨⠑" }, { "input": "variance's", "output": "⠧⠜⠊⠨⠑⠄⠎" }, { "input": "variances", "output": "⠧⠜⠊⠨⠑⠎" }, { "input": "variant", "output": "⠧⠜⠊â â â ž" }, { "input": "variant's", "output": "⠧⠜⠊â â â žâ „â Ž" }, { "input": "variants", "output": "⠧⠜⠊â â â žâ Ž" }, { "input": "variate", "output": "⠧⠜⠊â â žâ ‘" }, { "input": "variation", "output": "⠧⠜⠊⠠â " }, { "input": "variation's", "output": "⠧⠜⠊⠠â â „â Ž" }, { "input": "variations", "output": "⠧⠜⠊⠠â â Ž" }, { "input": "varicolored", "output": "⠧⠜⠊⠉⠕⠇⠕⠗⠫" }, { "input": "varicose", "output": "⠧⠜⠊⠉⠕⠎⠑" }, { "input": "varied", "output": "⠧⠜⠊⠫" }, { "input": "variegate", "output": "⠧⠜⠊⠑⠛â â žâ ‘" }, { "input": "variegated", "output": "⠧⠜⠊⠑⠛â â žâ «" }, { "input": "variegates", "output": "⠧⠜⠊⠑⠛â â žâ ‘â Ž" }, { "input": "variegating", "output": "⠧⠜⠊⠑⠛â â žâ Œ" }, { "input": "variegation's", "output": "⠧⠜⠊⠑⠛⠠â â „â Ž" }, { "input": "varies", "output": "⠧⠜⠊⠑⠎" }, { "input": "varietal", "output": "⠧⠜⠊⠑⠞â â ‡" }, { "input": "varietal's", "output": "⠧⠜⠊⠑⠞â â ‡â „â Ž" }, { "input": "varietals", "output": "⠧⠜⠊⠑⠞â â ‡â Ž" }, { "input": "varieties", "output": "⠧⠜⠊⠑⠞⠊⠑⠎" }, { "input": "variety", "output": "⠧⠜⠊⠑⠞⠽" }, { "input": "variety's", "output": "⠧⠜⠊⠑⠞⠽⠄⠎" }, { "input": "various", "output": "⠧⠜⠊⠳⠎" }, { "input": "variously", "output": "⠧⠜⠊⠳⠎⠇⠽" }, { "input": "varlet", "output": "⠧⠜⠇⠑⠞" }, { "input": "varlet's", "output": "⠧⠜⠇⠑⠞⠄⠎" }, { "input": "varlets", "output": "⠧⠜⠇⠑⠞⠎" }, { "input": "varmint", "output": "â §â œâ â ”â ž" }, { "input": "varmint's", "output": "â §â œâ â ”â žâ „â Ž" }, { "input": "varmints", "output": "â §â œâ â ”â žâ Ž" }, { "input": "varnish", "output": "â §â œâ â Šâ ©" }, { "input": "varnish's", "output": "â §â œâ â Šâ ©â „â Ž" }, { "input": "varnished", "output": "â §â œâ â Šâ ©â «" }, { "input": "varnishes", "output": "â §â œâ â Šâ ©â ‘â Ž" }, { "input": "varnishing", "output": "â §â œâ â Šâ ©â Œ" }, { "input": "vars", "output": "⠧⠜⠎" }, { "input": "varsities", "output": "⠧⠜⠎⠊⠞⠊⠑⠎" }, { "input": "varsity", "output": "⠧⠜⠎⠰⠽" }, { "input": "varsity's", "output": "⠧⠜⠎⠰⠽⠄⠎" }, { "input": "vary", "output": "⠧⠜⠽" }, { "input": "varying", "output": "⠧⠜⠽⠌" }, { "input": "vascular", "output": "â §â â Žâ ‰â ¥â ‡â œ" }, { "input": "vase", "output": "â §â â Žâ ‘" }, { "input": "vase's", "output": "â §â â Žâ ‘â „â Ž" }, { "input": "vasectomies", "output": "â §â â Žâ ‘⠉⠞⠕â â Šâ ‘â Ž" }, { "input": "vasectomy", "output": "â §â â Žâ ‘⠉⠞⠕â â ½" }, { "input": "vasectomy's", "output": "â §â â Žâ ‘⠉⠞⠕â â ½â „â Ž" }, { "input": "vases", "output": "â §â â Žâ ‘â Ž" }, { "input": "vasomotor", "output": "â §â â Žâ •â â •â žâ •â —" }, { "input": "vassal", "output": "â §â â Žâ Žâ â ‡" }, { "input": "vassal's", "output": "â §â â Žâ Žâ â ‡â „â Ž" }, { "input": "vassalage", "output": "â §â â Žâ Žâ â ‡â â ›â ‘" }, { "input": "vassalage's", "output": "â §â â Žâ Žâ â ‡â â ›â ‘â „â Ž" }, { "input": "vassals", "output": "â §â â Žâ Žâ â ‡â Ž" }, { "input": "vast", "output": "â §â â Œ" }, { "input": "vast's", "output": "â §â â Œâ „â Ž" }, { "input": "vaster", "output": "â §â â Œâ »" }, { "input": "vastest", "output": "â §â â Œâ ‘â Œ" }, { "input": "vastly", "output": "â §â â Œâ ‡â ½" }, { "input": "vastness", "output": "â §â â Œâ °â Ž" }, { "input": "vastness's", "output": "â §â â Œâ °â Žâ „â Ž" }, { "input": "vasts", "output": "â §â â Œâ Ž" }, { "input": "vat", "output": "â §â â ž" }, { "input": "vat's", "output": "â §â â žâ „â Ž" }, { "input": "vats", "output": "â §â â žâ Ž" }, { "input": "vatted", "output": "â §â â žâ žâ «" }, { "input": "vatting", "output": "â §â â žâ žâ Œ" }, { "input": "vaudeville", "output": "â §â â ¥â ™â ‘⠧⠊⠇⠇⠑" }, { "input": "vaudeville's", "output": "â §â â ¥â ™â ‘⠧⠊⠇⠇⠑⠄⠎" }, { "input": "vaudevillian", "output": "â §â â ¥â ™â ‘⠧⠊⠇⠇⠊â â " }, { "input": "vaudevillian's", "output": "â §â â ¥â ™â ‘⠧⠊⠇⠇⠊â â â „â Ž" }, { "input": "vaudevillians", "output": "â §â â ¥â ™â ‘⠧⠊⠇⠇⠊â â â Ž" }, { "input": "vault", "output": "â §â â ¥â ‡â ž" }, { "input": "vault's", "output": "â §â â ¥â ‡â žâ „â Ž" }, { "input": "vaulted", "output": "â §â â ¥â ‡â žâ «" }, { "input": "vaulter", "output": "â §â â ¥â ‡â žâ »" }, { "input": "vaulter's", "output": "â §â â ¥â ‡â žâ »â „â Ž" }, { "input": "vaulters", "output": "â §â â ¥â ‡â žâ »â Ž" }, { "input": "vaulting", "output": "â §â â ¥â ‡â žâ Œ" }, { "input": "vaulting's", "output": "â §â â ¥â ‡â žâ Œâ „â Ž" }, { "input": "vaults", "output": "â §â â ¥â ‡â žâ Ž" }, { "input": "vaunt", "output": "â §â â ¥â â ž" }, { "input": "vaunt's", "output": "â §â â ¥â â žâ „â Ž" }, { "input": "vaunted", "output": "â §â â ¥â â žâ «" }, { "input": "vaunting", "output": "â §â â ¥â â žâ Œ" }, { "input": "vaunts", "output": "â §â â ¥â â žâ Ž" }, { "input": "veal", "output": "â §â ‚â ‡" }, { "input": "veal's", "output": "⠧⠂⠇⠄⠎" }, { "input": "vector", "output": "⠧⠑⠉⠞⠕⠗" }, { "input": "vector's", "output": "⠧⠑⠉⠞⠕⠗⠄⠎" }, { "input": "vectored", "output": "⠧⠑⠉⠞⠕⠗⠫" }, { "input": "vectoring", "output": "⠧⠑⠉⠞⠕⠗⠌" }, { "input": "vectors", "output": "⠧⠑⠉⠞⠕⠗⠎" }, { "input": "veejay", "output": "â §â ‘â ‘â šâ â ½" }, { "input": "veejay's", "output": "â §â ‘â ‘â šâ â ½â „â Ž" }, { "input": "veejays", "output": "â §â ‘â ‘â šâ â ½â Ž" }, { "input": "veep", "output": "â §â ‘â ‘â " }, { "input": "veep's", "output": "â §â ‘â ‘â â „â Ž" }, { "input": "veeps", "output": "â §â ‘â ‘â â Ž" }, { "input": "veer", "output": "â §â ‘â »" }, { "input": "veer's", "output": "⠧⠑⠻⠄⠎" }, { "input": "veered", "output": "⠧⠑⠻⠫" }, { "input": "veering", "output": "⠧⠑⠻⠌" }, { "input": "veers", "output": "⠧⠑⠻⠎" }, { "input": "veg's", "output": "⠧⠑⠛⠄⠎" }, { "input": "vegan", "output": "â §â ‘â ›â â " }, { "input": "vegan's", "output": "â §â ‘â ›â â â „â Ž" }, { "input": "vegans", "output": "â §â ‘â ›â â â Ž" }, { "input": "vegetable", "output": "⠧⠑⠛⠑⠞â â ¼" }, { "input": "vegetable's", "output": "⠧⠑⠛⠑⠞â â ¼â „â Ž" }, { "input": "vegetables", "output": "⠧⠑⠛⠑⠞â â ¼â Ž" }, { "input": "vegetarian", "output": "⠧⠑⠛⠑⠞⠜⠊â â " }, { "input": "vegetarian's", "output": "⠧⠑⠛⠑⠞⠜⠊â â â „â Ž" }, { "input": "vegetarianism", "output": "⠧⠑⠛⠑⠞⠜⠊â â â Šâ Žâ " }, { "input": "vegetarianism's", "output": "⠧⠑⠛⠑⠞⠜⠊â â â Šâ Žâ â „â Ž" }, { "input": "vegetarians", "output": "⠧⠑⠛⠑⠞⠜⠊â â â Ž" }, { "input": "vegetate", "output": "⠧⠑⠛⠑⠞â â žâ ‘" }, { "input": "vegetated", "output": "⠧⠑⠛⠑⠞â â žâ «" }, { "input": "vegetates", "output": "⠧⠑⠛⠑⠞â â žâ ‘â Ž" }, { "input": "vegetating", "output": "⠧⠑⠛⠑⠞â â žâ Œ" }, { "input": "vegetation", "output": "⠧⠑⠛⠑⠞⠠â " }, { "input": "vegetation's", "output": "⠧⠑⠛⠑⠞⠠â â „â Ž" }, { "input": "vegetative", "output": "⠧⠑⠛⠑⠞â â žâ Šâ §â ‘" }, { "input": "veggie", "output": "â §â ‘â ¶â Šâ ‘" }, { "input": "veggie's", "output": "â §â ‘â ¶â Šâ ‘â „â Ž" }, { "input": "veggies", "output": "â §â ‘â ¶â Šâ ‘â Ž" }, { "input": "vehemence", "output": "â §â ‘â “â ‘â â °â ‘" }, { "input": "vehemence's", "output": "â §â ‘â “â ‘â â °â ‘â „â Ž" }, { "input": "vehemency", "output": "â §â ‘â “â ‘â â ¢â ‰â ½" }, { "input": "vehemency's", "output": "â §â ‘â “â ‘â â ¢â ‰â ½â „â Ž" }, { "input": "vehement", "output": "â §â ‘â “â ‘â °â ž" }, { "input": "vehemently", "output": "⠧⠑⠓⠑⠰⠞⠇⠽" }, { "input": "vehicle", "output": "⠧⠑⠓⠊⠉⠇⠑" }, { "input": "vehicle's", "output": "⠧⠑⠓⠊⠉⠇⠑⠄⠎" }, { "input": "vehicles", "output": "⠧⠑⠓⠊⠉⠇⠑⠎" }, { "input": "vehicular", "output": "⠧⠑⠓⠊⠉⠥⠇⠜" }, { "input": "veil", "output": "â §â ‘â Šâ ‡" }, { "input": "veil's", "output": "⠧⠑⠊⠇⠄⠎" }, { "input": "veiled", "output": "⠧⠑⠊⠇⠫" }, { "input": "veiling", "output": "⠧⠑⠊⠇⠌" }, { "input": "veils", "output": "⠧⠑⠊⠇⠎" }, { "input": "vein", "output": "â §â ‘â ”" }, { "input": "vein's", "output": "⠧⠑⠔⠄⠎" }, { "input": "veined", "output": "⠧⠑⠔⠫" }, { "input": "veining", "output": "⠧⠑⠔⠌" }, { "input": "veins", "output": "⠧⠑⠔⠎" }, { "input": "vela", "output": "â §â ‘â ‡â " }, { "input": "veld", "output": "⠧⠑⠇⠙" }, { "input": "veld's", "output": "⠧⠑⠇⠙⠄⠎" }, { "input": "velds", "output": "⠧⠑⠇⠙⠎" }, { "input": "vellum", "output": "⠧⠑⠇⠇⠥â " }, { "input": "vellum's", "output": "⠧⠑⠇⠇⠥â â „â Ž" }, { "input": "velocipede", "output": "⠧⠑⠇⠕⠉⠊â â «â ‘" }, { "input": "velocipede's", "output": "⠧⠑⠇⠕⠉⠊â â «â ‘â „â Ž" }, { "input": "velocipedes", "output": "⠧⠑⠇⠕⠉⠊â â «â ‘â Ž" }, { "input": "velocities", "output": "⠧⠑⠇⠕⠉⠊⠞⠊⠑⠎" }, { "input": "velocity", "output": "⠧⠑⠇⠕⠉⠰⠽" }, { "input": "velocity's", "output": "⠧⠑⠇⠕⠉⠰⠽⠄⠎" }, { "input": "velour", "output": "⠧⠑⠇⠳⠗" }, { "input": "velour's", "output": "⠧⠑⠇⠳⠗⠄⠎" }, { "input": "velours", "output": "⠧⠑⠇⠳⠗⠎" }, { "input": "velum", "output": "⠧⠑⠇⠥â " }, { "input": "velum's", "output": "⠧⠑⠇⠥â â „â Ž" }, { "input": "velvet", "output": "⠧⠑⠇⠧⠑⠞" }, { "input": "velvet's", "output": "⠧⠑⠇⠧⠑⠞⠄⠎" }, { "input": "velveteen", "output": "⠧⠑⠇⠧⠑⠞⠑⠢" }, { "input": "velveteen's", "output": "⠧⠑⠇⠧⠑⠞⠑⠢⠄⠎" }, { "input": "velvetier", "output": "⠧⠑⠇⠧⠑⠞⠊⠻" }, { "input": "velvetiest", "output": "⠧⠑⠇⠧⠑⠞⠊⠑⠌" }, { "input": "velvety", "output": "⠧⠑⠇⠧⠑⠞⠽" }, { "input": "venal", "output": "â §â ¢â â ‡" }, { "input": "venality", "output": "â §â ¢â â ‡â °â ½" }, { "input": "venality's", "output": "â §â ¢â â ‡â °â ½â „â Ž" }, { "input": "venally", "output": "⠧⠢⠠⠽" }, { "input": "venation", "output": "⠧⠢⠠â " }, { "input": "venation's", "output": "⠧⠢⠠â â „â Ž" }, { "input": "vend", "output": "⠧⠢⠙" }, { "input": "vended", "output": "⠧⠢⠙⠫" }, { "input": "vendetta", "output": "⠧⠢⠙⠑⠞⠞â " }, { "input": "vendetta's", "output": "⠧⠢⠙⠑⠞⠞â â „â Ž" }, { "input": "vendettas", "output": "⠧⠢⠙⠑⠞⠞â â Ž" }, { "input": "vendible", "output": "⠧⠢⠙⠊⠼" }, { "input": "vending", "output": "⠧⠢⠙⠌" }, { "input": "vendor", "output": "⠧⠢⠙⠕⠗" }, { "input": "vendor's", "output": "⠧⠢⠙⠕⠗⠄⠎" }, { "input": "vendors", "output": "⠧⠢⠙⠕⠗⠎" }, { "input": "vends", "output": "⠧⠢⠙⠎" }, { "input": "veneer", "output": "⠧⠢⠑⠻" }, { "input": "veneer's", "output": "⠧⠢⠑⠻⠄⠎" }, { "input": "veneered", "output": "⠧⠢⠑⠻⠫" }, { "input": "veneering", "output": "⠧⠢⠑⠻⠌" }, { "input": "veneers", "output": "⠧⠢⠑⠻⠎" }, { "input": "venerability", "output": "⠧⠢⠻â â ƒâ Šâ ‡â °â ½" }, { "input": "venerability's", "output": "⠧⠢⠻â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "venerable", "output": "⠧⠢⠻â â ¼" }, { "input": "venerate", "output": "⠧⠢⠻â â žâ ‘" }, { "input": "venerated", "output": "⠧⠢⠻â â žâ «" }, { "input": "venerates", "output": "⠧⠢⠻â â žâ ‘â Ž" }, { "input": "venerating", "output": "⠧⠢⠻â â žâ Œ" }, { "input": "veneration", "output": "⠧⠢⠻⠠â " }, { "input": "veneration's", "output": "⠧⠢⠻⠠â â „â Ž" }, { "input": "venereal", "output": "⠧⠢⠻⠂⠇" }, { "input": "vengeance", "output": "⠧⠢⠛⠑⠨⠑" }, { "input": "vengeance's", "output": "⠧⠢⠛⠑⠨⠑⠄⠎" }, { "input": "vengeful", "output": "⠧⠢⠛⠑⠰⠇" }, { "input": "vengefully", "output": "⠧⠢⠛⠑⠰⠇⠇⠽" }, { "input": "venial", "output": "⠧⠢⠊â â ‡" }, { "input": "venireman", "output": "⠧⠢⠊⠗⠑â â â " }, { "input": "venireman's", "output": "⠧⠢⠊⠗⠑â â â â „â Ž" }, { "input": "veniremen", "output": "⠧⠢⠊⠗⠑â â ¢" }, { "input": "venison", "output": "⠧⠢⠊⠎⠕â " }, { "input": "venison's", "output": "⠧⠢⠊⠎⠕â â „â Ž" }, { "input": "venom", "output": "⠧⠢⠕â " }, { "input": "venom's", "output": "⠧⠢⠕â â „â Ž" }, { "input": "venomous", "output": "⠧⠢⠕â â ³â Ž" }, { "input": "venomously", "output": "⠧⠢⠕â â ³â Žâ ‡â ½" }, { "input": "venous", "output": "⠧⠢⠳⠎" }, { "input": "vent", "output": "⠧⠢⠞" }, { "input": "vent's", "output": "⠧⠢⠞⠄⠎" }, { "input": "vented", "output": "⠧⠢⠞⠫" }, { "input": "ventilate", "output": "⠧⠢⠞⠊⠇â â žâ ‘" }, { "input": "ventilated", "output": "⠧⠢⠞⠊⠇â â žâ «" }, { "input": "ventilates", "output": "⠧⠢⠞⠊⠇â â žâ ‘â Ž" }, { "input": "ventilating", "output": "⠧⠢⠞⠊⠇â â žâ Œ" }, { "input": "ventilation", "output": "⠧⠢⠞⠊⠇⠠â " }, { "input": "ventilation's", "output": "⠧⠢⠞⠊⠇⠠â â „â Ž" }, { "input": "ventilator", "output": "⠧⠢⠞⠊⠇â â žâ •â —" }, { "input": "ventilator's", "output": "⠧⠢⠞⠊⠇â â žâ •â —â „â Ž" }, { "input": "ventilators", "output": "⠧⠢⠞⠊⠇â â žâ •â —â Ž" }, { "input": "venting", "output": "⠧⠢⠞⠌" }, { "input": "ventral", "output": "⠧⠢⠞⠗â â ‡" }, { "input": "ventricle", "output": "⠧⠢⠞⠗⠊⠉⠇⠑" }, { "input": "ventricle's", "output": "⠧⠢⠞⠗⠊⠉⠇⠑⠄⠎" }, { "input": "ventricles", "output": "⠧⠢⠞⠗⠊⠉⠇⠑⠎" }, { "input": "ventricular", "output": "⠧⠢⠞⠗⠊⠉⠥⠇⠜" }, { "input": "ventriloquism", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠎â " }, { "input": "ventriloquism's", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠎â â „â Ž" }, { "input": "ventriloquist", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠌" }, { "input": "ventriloquist's", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠌⠄⠎" }, { "input": "ventriloquists", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠊⠌⠎" }, { "input": "ventriloquy", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠽" }, { "input": "ventriloquy's", "output": "⠧⠢⠞⠗⠊⠇⠕⠟⠥⠽⠄⠎" }, { "input": "vents", "output": "⠧⠢⠞⠎" }, { "input": "venture", "output": "⠧⠢⠞⠥⠗⠑" }, { "input": "venture's", "output": "⠧⠢⠞⠥⠗⠑⠄⠎" }, { "input": "ventured", "output": "⠧⠢⠞⠥⠗⠫" }, { "input": "ventures", "output": "⠧⠢⠞⠥⠗⠑⠎" }, { "input": "venturesome", "output": "⠧⠢⠞⠥⠗⠑â â Ž" }, { "input": "venturesomely", "output": "⠧⠢⠞⠥⠗⠑â â Žâ ‡â ½" }, { "input": "venturesomeness", "output": "⠧⠢⠞⠥⠗⠑â â Žâ °â Ž" }, { "input": "venturesomeness's", "output": "⠧⠢⠞⠥⠗⠑â â Žâ °â Žâ „â Ž" }, { "input": "venturing", "output": "⠧⠢⠞⠥⠗⠌" }, { "input": "venturous", "output": "⠧⠢⠞⠥⠗⠳⠎" }, { "input": "venturously", "output": "⠧⠢⠞⠥⠗⠳⠎⠇⠽" }, { "input": "venturousness", "output": "⠧⠢⠞⠥⠗⠳⠎⠰⠎" }, { "input": "venturousness's", "output": "⠧⠢⠞⠥⠗⠳⠎⠰⠎⠄⠎" }, { "input": "venue", "output": "⠧⠢⠥⠑" }, { "input": "venue's", "output": "⠧⠢⠥⠑⠄⠎" }, { "input": "venues", "output": "⠧⠢⠥⠑⠎" }, { "input": "veracious", "output": "â §â »â â ‰â Šâ ³â Ž" }, { "input": "veraciously", "output": "â §â »â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "veracity", "output": "â §â »â â ‰â °â ½" }, { "input": "veracity's", "output": "â §â »â â ‰â °â ½â „â Ž" }, { "input": "veranda", "output": "⠧⠻⠯â " }, { "input": "veranda's", "output": "⠧⠻⠯â â „â Ž" }, { "input": "verandas", "output": "⠧⠻⠯â â Ž" }, { "input": "verb", "output": "⠧⠻⠃" }, { "input": "verb's", "output": "⠧⠻⠃⠄⠎" }, { "input": "verbal", "output": "⠧⠻⠃â â ‡" }, { "input": "verbal's", "output": "⠧⠻⠃â â ‡â „â Ž" }, { "input": "verbalization", "output": "⠧⠻⠃â â ‡â Šâ µâ  â " }, { "input": "verbalization's", "output": "⠧⠻⠃â â ‡â Šâ µâ  â â „â Ž" }, { "input": "verbalize", "output": "⠧⠻⠃â â ‡â Šâ µâ ‘" }, { "input": "verbalized", "output": "⠧⠻⠃â â ‡â Šâ µâ «" }, { "input": "verbalizes", "output": "⠧⠻⠃â â ‡â Šâ µâ ‘â Ž" }, { "input": "verbalizing", "output": "⠧⠻⠃â â ‡â Šâ µâ Œ" }, { "input": "verbally", "output": "⠧⠻⠃⠠⠽" }, { "input": "verbals", "output": "⠧⠻⠃â â ‡â Ž" }, { "input": "verbatim", "output": "⠧⠻⠃â â žâ Šâ " }, { "input": "verbena", "output": "⠧⠻⠃⠢â " }, { "input": "verbena's", "output": "⠧⠻⠃⠢â â „â Ž" }, { "input": "verbenas", "output": "⠧⠻⠃⠢â â Ž" }, { "input": "verbiage", "output": "⠧⠻⠃⠊â â ›â ‘" }, { "input": "verbiage's", "output": "⠧⠻⠃⠊â â ›â ‘â „â Ž" }, { "input": "verbose", "output": "⠧⠻⠃⠕⠎⠑" }, { "input": "verbosity", "output": "⠧⠻⠃⠕⠎⠰⠽" }, { "input": "verbosity's", "output": "⠧⠻⠃⠕⠎⠰⠽⠄⠎" }, { "input": "verboten", "output": "⠧⠻⠃⠕⠞⠢" }, { "input": "verbs", "output": "⠧⠻⠃⠎" }, { "input": "verdant", "output": "⠧⠻⠙â â â ž" }, { "input": "verdantly", "output": "⠧⠻⠙â â â žâ ‡â ½" }, { "input": "verdict", "output": "⠧⠻⠙⠊⠉⠞" }, { "input": "verdict's", "output": "⠧⠻⠙⠊⠉⠞⠄⠎" }, { "input": "verdicts", "output": "⠧⠻⠙⠊⠉⠞⠎" }, { "input": "verdigris", "output": "⠧⠻⠙⠊⠛⠗⠊⠎" }, { "input": "verdigris's", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠄⠎" }, { "input": "verdigrised", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠫" }, { "input": "verdigrises", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠑⠎" }, { "input": "verdigrising", "output": "⠧⠻⠙⠊⠛⠗⠊⠎⠌" }, { "input": "verdure", "output": "⠧⠻⠙⠥⠗⠑" }, { "input": "verdure's", "output": "⠧⠻⠙⠥⠗⠑⠄⠎" }, { "input": "verge", "output": "⠧⠻⠛⠑" }, { "input": "verge's", "output": "⠧⠻⠛⠑⠄⠎" }, { "input": "verged", "output": "⠧⠻⠛⠫" }, { "input": "verges", "output": "⠧⠻⠛⠑⠎" }, { "input": "verging", "output": "⠧⠻⠛⠌" }, { "input": "verier", "output": "⠧⠻⠊⠻" }, { "input": "veriest", "output": "⠧⠻⠊⠑⠌" }, { "input": "verifiable", "output": "⠧⠻⠊⠋⠊â â ¼" }, { "input": "verification", "output": "⠧⠻⠊⠋⠊⠉⠠â " }, { "input": "verification's", "output": "⠧⠻⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "verified", "output": "⠧⠻⠊⠋⠊⠫" }, { "input": "verifies", "output": "⠧⠻⠊⠋⠊⠑⠎" }, { "input": "verify", "output": "⠧⠻⠊⠋⠽" }, { "input": "verifying", "output": "⠧⠻⠊⠋⠽⠌" }, { "input": "verily", "output": "⠧⠻⠊⠇⠽" }, { "input": "verisimilitude", "output": "⠧⠻⠊⠎⠊â â Šâ ‡â Šâ žâ ¥â ™â ‘" }, { "input": "verisimilitude's", "output": "⠧⠻⠊⠎⠊â â Šâ ‡â Šâ žâ ¥â ™â ‘â „â Ž" }, { "input": "veritable", "output": "⠧⠻⠊⠞â â ¼" }, { "input": "veritably", "output": "⠧⠻⠊⠞â â ƒâ ‡â ½" }, { "input": "verities", "output": "⠧⠻⠊⠞⠊⠑⠎" }, { "input": "verity", "output": "⠧⠻⠰⠽" }, { "input": "verity's", "output": "⠧⠻⠰⠽⠄⠎" }, { "input": "vermicelli", "output": "â §â »â â Šâ ‰â ‘⠇⠇⠊" }, { "input": "vermicelli's", "output": "â §â »â â Šâ ‰â ‘⠇⠇⠊⠄⠎" }, { "input": "vermiculite", "output": "â §â »â â Šâ ‰â ¥â ‡â Šâ žâ ‘" }, { "input": "vermiculite's", "output": "â §â »â â Šâ ‰â ¥â ‡â Šâ žâ ‘â „â Ž" }, { "input": "vermiform", "output": "â §â »â â Šâ ¿â " }, { "input": "vermilion", "output": "â §â »â â Šâ ‡â Šâ •â " }, { "input": "vermilion's", "output": "â §â »â â Šâ ‡â Šâ •â â „â Ž" }, { "input": "vermin", "output": "â §â »â â ”" }, { "input": "vermin's", "output": "â §â »â â ”â „â Ž" }, { "input": "verminous", "output": "â §â »â â ”⠳⠎" }, { "input": "vermouth", "output": "â §â »â â ³â ¹" }, { "input": "vermouth's", "output": "â §â »â â ³â ¹â „â Ž" }, { "input": "vernacular", "output": "â §â »â â â ‰â ¥â ‡â œ" }, { "input": "vernacular's", "output": "â §â »â â â ‰â ¥â ‡â œâ „â Ž" }, { "input": "vernaculars", "output": "â §â »â â â ‰â ¥â ‡â œâ Ž" }, { "input": "vernal", "output": "â §â »â â â ‡" }, { "input": "vernier", "output": "â §â »â â Šâ »" }, { "input": "vernier's", "output": "â §â »â â Šâ »â „â Ž" }, { "input": "verniers", "output": "â §â »â â Šâ »â Ž" }, { "input": "veronica", "output": "⠧⠻⠕â â Šâ ‰â " }, { "input": "veronica's", "output": "⠧⠻⠕â â Šâ ‰â â „â Ž" }, { "input": "versatile", "output": "⠧⠻⠎â â žâ Šâ ‡â ‘" }, { "input": "versatility", "output": "⠧⠻⠎â â žâ Šâ ‡â °â ½" }, { "input": "versatility's", "output": "⠧⠻⠎â â žâ Šâ ‡â °â ½â „â Ž" }, { "input": "verse", "output": "⠧⠻⠎⠑" }, { "input": "verse's", "output": "⠧⠻⠎⠑⠄⠎" }, { "input": "versed", "output": "⠧⠻⠎⠫" }, { "input": "verses", "output": "⠧⠻⠎⠑⠎" }, { "input": "versification", "output": "⠧⠻⠎⠊⠋⠊⠉⠠â " }, { "input": "versification's", "output": "⠧⠻⠎⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "versified", "output": "⠧⠻⠎⠊⠋⠊⠫" }, { "input": "versifier", "output": "⠧⠻⠎⠊⠋⠊⠻" }, { "input": "versifier's", "output": "⠧⠻⠎⠊⠋⠊⠻⠄⠎" }, { "input": "versifiers", "output": "⠧⠻⠎⠊⠋⠊⠻⠎" }, { "input": "versifies", "output": "⠧⠻⠎⠊⠋⠊⠑⠎" }, { "input": "versify", "output": "⠧⠻⠎⠊⠋⠽" }, { "input": "versifying", "output": "⠧⠻⠎⠊⠋⠽⠌" }, { "input": "versing", "output": "⠧⠻⠎⠌" }, { "input": "version", "output": "⠧⠻⠨â " }, { "input": "version's", "output": "⠧⠻⠨â â „â Ž" }, { "input": "versions", "output": "⠧⠻⠨â â Ž" }, { "input": "versus", "output": "⠧⠻⠎⠥⠎" }, { "input": "vertebra", "output": "⠧⠻⠞⠑⠃⠗â " }, { "input": "vertebra's", "output": "⠧⠻⠞⠑⠃⠗â â „â Ž" }, { "input": "vertebrae", "output": "⠧⠻⠞⠑⠃⠗â â ‘" }, { "input": "vertebral", "output": "⠧⠻⠞⠑⠃⠗â â ‡" }, { "input": "vertebrate", "output": "⠧⠻⠞⠑⠃⠗â â žâ ‘" }, { "input": "vertebrate's", "output": "⠧⠻⠞⠑⠃⠗â â žâ ‘â „â Ž" }, { "input": "vertebrates", "output": "⠧⠻⠞⠑⠃⠗â â žâ ‘â Ž" }, { "input": "vertex", "output": "⠧⠻⠞⠑⠭" }, { "input": "vertex's", "output": "⠧⠻⠞⠑⠭⠄⠎" }, { "input": "vertexes", "output": "⠧⠻⠞⠑⠭⠑⠎" }, { "input": "vertical", "output": "⠧⠻⠞⠊⠉â â ‡" }, { "input": "vertical's", "output": "⠧⠻⠞⠊⠉â â ‡â „â Ž" }, { "input": "vertically", "output": "⠧⠻⠞⠊⠉⠠⠽" }, { "input": "verticals", "output": "⠧⠻⠞⠊⠉â â ‡â Ž" }, { "input": "vertiginous", "output": "⠧⠻⠞⠊⠛⠔⠳⠎" }, { "input": "vertigo", "output": "⠧⠻⠞⠊⠛⠕" }, { "input": "vertigo's", "output": "⠧⠻⠞⠊⠛⠕⠄⠎" }, { "input": "verve", "output": "⠧⠻⠧⠑" }, { "input": "verve's", "output": "⠧⠻⠧⠑⠄⠎" }, { "input": "very", "output": "â §" }, { "input": "vesicle", "output": "⠧⠑⠎⠊⠉⠇⠑" }, { "input": "vesicle's", "output": "⠧⠑⠎⠊⠉⠇⠑⠄⠎" }, { "input": "vesicles", "output": "⠧⠑⠎⠊⠉⠇⠑⠎" }, { "input": "vesicular", "output": "⠧⠑⠎⠊⠉⠥⠇⠜" }, { "input": "vesiculate", "output": "⠧⠑⠎⠊⠉⠥⠇â â žâ ‘" }, { "input": "vesper", "output": "â §â ‘â Žâ â »" }, { "input": "vesper's", "output": "â §â ‘â Žâ â »â „â Ž" }, { "input": "vespers", "output": "â §â ‘â Žâ â »â Ž" }, { "input": "vessel", "output": "â §â ‘â Žâ Žâ ‘â ‡" }, { "input": "vessel's", "output": "⠧⠑⠎⠎⠑⠇⠄⠎" }, { "input": "vessels", "output": "⠧⠑⠎⠎⠑⠇⠎" }, { "input": "vest", "output": "â §â ‘â Œ" }, { "input": "vest's", "output": "⠧⠑⠌⠄⠎" }, { "input": "vestal", "output": "â §â ‘â Œâ â ‡" }, { "input": "vestal's", "output": "â §â ‘â Œâ â ‡â „â Ž" }, { "input": "vestals", "output": "â §â ‘â Œâ â ‡â Ž" }, { "input": "vested", "output": "⠧⠑⠌⠫" }, { "input": "vestibule", "output": "⠧⠑⠌⠊⠃⠥⠇⠑" }, { "input": "vestibule's", "output": "⠧⠑⠌⠊⠃⠥⠇⠑⠄⠎" }, { "input": "vestibules", "output": "⠧⠑⠌⠊⠃⠥⠇⠑⠎" }, { "input": "vestige", "output": "⠧⠑⠌⠊⠛⠑" }, { "input": "vestige's", "output": "⠧⠑⠌⠊⠛⠑⠄⠎" }, { "input": "vestiges", "output": "⠧⠑⠌⠊⠛⠑⠎" }, { "input": "vestigial", "output": "⠧⠑⠌⠊⠛⠊â â ‡" }, { "input": "vesting", "output": "⠧⠑⠌⠌" }, { "input": "vesting's", "output": "⠧⠑⠌⠌⠄⠎" }, { "input": "vestment", "output": "⠧⠑⠌⠰⠞" }, { "input": "vestment's", "output": "⠧⠑⠌⠰⠞⠄⠎" }, { "input": "vestments", "output": "⠧⠑⠌⠰⠞⠎" }, { "input": "vestries", "output": "⠧⠑⠌⠗⠊⠑⠎" }, { "input": "vestry", "output": "⠧⠑⠌⠗⠽" }, { "input": "vestry's", "output": "⠧⠑⠌⠗⠽⠄⠎" }, { "input": "vestryman", "output": "⠧⠑⠌⠗⠽â â â " }, { "input": "vestryman's", "output": "⠧⠑⠌⠗⠽â â â â „â Ž" }, { "input": "vestrymen", "output": "⠧⠑⠌⠗⠽â â ¢" }, { "input": "vests", "output": "⠧⠑⠌⠎" }, { "input": "vet", "output": "â §â ‘â ž" }, { "input": "vet's", "output": "â §â ‘â žâ „â Ž" }, { "input": "vetch", "output": "â §â ‘â žâ ¡" }, { "input": "vetch's", "output": "â §â ‘â žâ ¡â „â Ž" }, { "input": "vetches", "output": "â §â ‘â žâ ¡â ‘â Ž" }, { "input": "veteran", "output": "â §â ‘â žâ »â â " }, { "input": "veteran's", "output": "â §â ‘â žâ »â â â „â Ž" }, { "input": "veterans", "output": "â §â ‘â žâ »â â â Ž" }, { "input": "veterinarian", "output": "⠧⠑⠞⠻⠔⠜⠊â â " }, { "input": "veterinarian's", "output": "⠧⠑⠞⠻⠔⠜⠊â â â „â Ž" }, { "input": "veterinarians", "output": "⠧⠑⠞⠻⠔⠜⠊â â â Ž" }, { "input": "veterinaries", "output": "⠧⠑⠞⠻⠔⠜⠊⠑⠎" }, { "input": "veterinary", "output": "⠧⠑⠞⠻⠔⠜⠽" }, { "input": "veterinary's", "output": "⠧⠑⠞⠻⠔⠜⠽⠄⠎" }, { "input": "veto", "output": "â §â ‘â žâ •" }, { "input": "veto's", "output": "â §â ‘â žâ •â „â Ž" }, { "input": "vetoed", "output": "â §â ‘â žâ •â «" }, { "input": "vetoes", "output": "â §â ‘â žâ •â ‘â Ž" }, { "input": "vetoing", "output": "â §â ‘â žâ •â Œ" }, { "input": "vets", "output": "â §â ‘â žâ Ž" }, { "input": "vetted", "output": "â §â ‘â žâ žâ «" }, { "input": "vetting", "output": "â §â ‘â žâ žâ Œ" }, { "input": "vex", "output": "â §â ‘â ­" }, { "input": "vexation", "output": "â §â ‘â ­â  â " }, { "input": "vexation's", "output": "â §â ‘â ­â  â â „â Ž" }, { "input": "vexations", "output": "â §â ‘â ­â  â â Ž" }, { "input": "vexatious", "output": "â §â ‘â ­â â žâ Šâ ³â Ž" }, { "input": "vexed", "output": "â §â ‘â ­â «" }, { "input": "vexes", "output": "â §â ‘â ­â ‘â Ž" }, { "input": "vexing", "output": "â §â ‘â ­â Œ" }, { "input": "vhf", "output": "â §â “â ‹" }, { "input": "via", "output": "â §â Šâ " }, { "input": "viability", "output": "â §â Šâ â ƒâ Šâ ‡â °â ½" }, { "input": "viability's", "output": "â §â Šâ â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "viable", "output": "â §â Šâ â ¼" }, { "input": "viaduct", "output": "â §â Šâ â ™â ¥â ‰â ž" }, { "input": "viaduct's", "output": "â §â Šâ â ™â ¥â ‰â žâ „â Ž" }, { "input": "viaducts", "output": "â §â Šâ â ™â ¥â ‰â žâ Ž" }, { "input": "vial", "output": "â §â Šâ â ‡" }, { "input": "vial's", "output": "â §â Šâ â ‡â „â Ž" }, { "input": "vials", "output": "â §â Šâ â ‡â Ž" }, { "input": "viand", "output": "â §â Šâ ¯" }, { "input": "viand's", "output": "⠧⠊⠯⠄⠎" }, { "input": "viands", "output": "⠧⠊⠯⠎" }, { "input": "vibe", "output": "⠧⠊⠃⠑" }, { "input": "vibe's", "output": "⠧⠊⠃⠑⠄⠎" }, { "input": "vibes", "output": "⠧⠊⠃⠑⠎" }, { "input": "vibes's", "output": "⠧⠊⠃⠑⠎⠄⠎" }, { "input": "vibraharp", "output": "⠧⠊⠃⠗â â “â œâ " }, { "input": "vibraharp's", "output": "⠧⠊⠃⠗â â “â œâ â „â Ž" }, { "input": "vibraharps", "output": "⠧⠊⠃⠗â â “â œâ â Ž" }, { "input": "vibrancy", "output": "⠧⠊⠃⠗â â â ‰â ½" }, { "input": "vibrancy's", "output": "⠧⠊⠃⠗â â â ‰â ½â „â Ž" }, { "input": "vibrant", "output": "⠧⠊⠃⠗â â â ž" }, { "input": "vibrantly", "output": "⠧⠊⠃⠗â â â žâ ‡â ½" }, { "input": "vibraphone", "output": "⠧⠊⠃⠗â â â “â â •" }, { "input": "vibraphone's", "output": "⠧⠊⠃⠗â â â “â â •â „â Ž" }, { "input": "vibraphones", "output": "⠧⠊⠃⠗â â â “â â •â Ž" }, { "input": "vibraphonist", "output": "⠧⠊⠃⠗â â â “â •â â Šâ Œ" }, { "input": "vibraphonist's", "output": "⠧⠊⠃⠗â â â “â •â â Šâ Œâ „â Ž" }, { "input": "vibraphonists", "output": "⠧⠊⠃⠗â â â “â •â â Šâ Œâ Ž" }, { "input": "vibrate", "output": "⠧⠊⠃⠗â â žâ ‘" }, { "input": "vibrated", "output": "⠧⠊⠃⠗â â žâ «" }, { "input": "vibrates", "output": "⠧⠊⠃⠗â â žâ ‘â Ž" }, { "input": "vibrating", "output": "⠧⠊⠃⠗â â žâ Œ" }, { "input": "vibration", "output": "⠧⠊⠃⠗⠠â " }, { "input": "vibration's", "output": "⠧⠊⠃⠗⠠â â „â Ž" }, { "input": "vibrations", "output": "⠧⠊⠃⠗⠠â â Ž" }, { "input": "vibrato", "output": "⠧⠊⠃⠗â â žâ •" }, { "input": "vibrato's", "output": "⠧⠊⠃⠗â â žâ •â „â Ž" }, { "input": "vibrator", "output": "⠧⠊⠃⠗â â žâ •â —" }, { "input": "vibrator's", "output": "⠧⠊⠃⠗â â žâ •â —â „â Ž" }, { "input": "vibrators", "output": "⠧⠊⠃⠗â â žâ •â —â Ž" }, { "input": "vibratory", "output": "⠧⠊⠃⠗â â žâ •â —â ½" }, { "input": "vibratos", "output": "⠧⠊⠃⠗â â žâ •â Ž" }, { "input": "viburnum", "output": "⠧⠊⠃⠥⠗â â ¥â " }, { "input": "viburnum's", "output": "⠧⠊⠃⠥⠗â â ¥â â „â Ž" }, { "input": "viburnums", "output": "⠧⠊⠃⠥⠗â â ¥â â Ž" }, { "input": "vicar", "output": "⠧⠊⠉⠜" }, { "input": "vicar's", "output": "⠧⠊⠉⠜⠄⠎" }, { "input": "vicarage", "output": "⠧⠊⠉⠜â â ›â ‘" }, { "input": "vicarage's", "output": "⠧⠊⠉⠜â â ›â ‘â „â Ž" }, { "input": "vicarages", "output": "⠧⠊⠉⠜â â ›â ‘â Ž" }, { "input": "vicarious", "output": "⠧⠊⠉⠜⠊⠳⠎" }, { "input": "vicariously", "output": "⠧⠊⠉⠜⠊⠳⠎⠇⠽" }, { "input": "vicariousness", "output": "⠧⠊⠉⠜⠊⠳⠎⠰⠎" }, { "input": "vicariousness's", "output": "⠧⠊⠉⠜⠊⠳⠎⠰⠎⠄⠎" }, { "input": "vicars", "output": "⠧⠊⠉⠜⠎" }, { "input": "vice", "output": "⠧⠊⠉⠑" }, { "input": "vice's", "output": "⠧⠊⠉⠑⠄⠎" }, { "input": "viced", "output": "⠧⠊⠉⠑⠙" }, { "input": "vicegerent", "output": "⠧⠊⠉⠑⠛⠻⠢⠞" }, { "input": "vicegerent's", "output": "⠧⠊⠉⠑⠛⠻⠢⠞⠄⠎" }, { "input": "vicegerents", "output": "⠧⠊⠉⠑⠛⠻⠢⠞⠎" }, { "input": "vicennial", "output": "⠧⠊⠉⠢â â Šâ â ‡" }, { "input": "viceregal", "output": "⠧⠊⠉⠑⠗⠑⠛â â ‡" }, { "input": "viceroy", "output": "⠧⠊⠉⠑⠗⠕⠽" }, { "input": "viceroy's", "output": "⠧⠊⠉⠑⠗⠕⠽⠄⠎" }, { "input": "viceroys", "output": "⠧⠊⠉⠑⠗⠕⠽⠎" }, { "input": "vices", "output": "⠧⠊⠉⠑⠎" }, { "input": "vichyssoise", "output": "⠧⠊⠡⠽⠎⠎⠕⠊⠎⠑" }, { "input": "vichyssoise's", "output": "⠧⠊⠡⠽⠎⠎⠕⠊⠎⠑⠄⠎" }, { "input": "vicing", "output": "⠧⠊⠉⠌" }, { "input": "vicinity", "output": "⠧⠊⠉⠔⠰⠽" }, { "input": "vicinity's", "output": "⠧⠊⠉⠔⠰⠽⠄⠎" }, { "input": "vicious", "output": "⠧⠊⠉⠊⠳⠎" }, { "input": "viciously", "output": "⠧⠊⠉⠊⠳⠎⠇⠽" }, { "input": "viciousness", "output": "⠧⠊⠉⠊⠳⠎⠰⠎" }, { "input": "viciousness's", "output": "⠧⠊⠉⠊⠳⠎⠰⠎⠄⠎" }, { "input": "vicissitude", "output": "⠧⠊⠉⠊⠎⠎⠊⠞⠥⠙⠑" }, { "input": "vicissitude's", "output": "⠧⠊⠉⠊⠎⠎⠊⠞⠥⠙⠑⠄⠎" }, { "input": "vicissitudes", "output": "⠧⠊⠉⠊⠎⠎⠊⠞⠥⠙⠑⠎" }, { "input": "victim", "output": "⠧⠊⠉⠞⠊â " }, { "input": "victim's", "output": "⠧⠊⠉⠞⠊â â „â Ž" }, { "input": "victimization", "output": "⠧⠊⠉⠞⠊â â Šâ µâ  â " }, { "input": "victimization's", "output": "⠧⠊⠉⠞⠊â â Šâ µâ  â â „â Ž" }, { "input": "victimize", "output": "⠧⠊⠉⠞⠊â â Šâ µâ ‘" }, { "input": "victimized", "output": "⠧⠊⠉⠞⠊â â Šâ µâ «" }, { "input": "victimizes", "output": "⠧⠊⠉⠞⠊â â Šâ µâ ‘â Ž" }, { "input": "victimizing", "output": "⠧⠊⠉⠞⠊â â Šâ µâ Œ" }, { "input": "victims", "output": "⠧⠊⠉⠞⠊â â Ž" }, { "input": "victor", "output": "⠧⠊⠉⠞⠕⠗" }, { "input": "victor's", "output": "⠧⠊⠉⠞⠕⠗⠄⠎" }, { "input": "victories", "output": "⠧⠊⠉⠞⠕⠗⠊⠑⠎" }, { "input": "victorious", "output": "⠧⠊⠉⠞⠕⠗⠊⠳⠎" }, { "input": "victoriously", "output": "⠧⠊⠉⠞⠕⠗⠊⠳⠎⠇⠽" }, { "input": "victors", "output": "⠧⠊⠉⠞⠕⠗⠎" }, { "input": "victory", "output": "⠧⠊⠉⠞⠕⠗⠽" }, { "input": "victory's", "output": "⠧⠊⠉⠞⠕⠗⠽⠄⠎" }, { "input": "victual", "output": "⠧⠊⠉⠞⠥â â ‡" }, { "input": "victual's", "output": "⠧⠊⠉⠞⠥â â ‡â „â Ž" }, { "input": "victualed", "output": "⠧⠊⠉⠞⠥â â ‡â «" }, { "input": "victualing", "output": "⠧⠊⠉⠞⠥â â ‡â Œ" }, { "input": "victuals", "output": "⠧⠊⠉⠞⠥â â ‡â Ž" }, { "input": "videlicet", "output": "⠧⠊⠙⠑⠇⠊⠉⠑⠞" }, { "input": "video", "output": "⠧⠊⠙⠑⠕" }, { "input": "video's", "output": "⠧⠊⠙⠑⠕⠄⠎" }, { "input": "videocassette", "output": "⠧⠊⠙⠑⠕⠉â â Žâ Žâ ‘â žâ žâ ‘" }, { "input": "videocassette's", "output": "⠧⠊⠙⠑⠕⠉â â Žâ Žâ ‘â žâ žâ ‘â „â Ž" }, { "input": "videocassettes", "output": "⠧⠊⠙⠑⠕⠉â â Žâ Žâ ‘â žâ žâ ‘â Ž" }, { "input": "videodisc", "output": "⠧⠊⠙⠑⠕⠙⠊⠎⠉" }, { "input": "videodisc's", "output": "⠧⠊⠙⠑⠕⠙⠊⠎⠉⠄⠎" }, { "input": "videodiscs", "output": "⠧⠊⠙⠑⠕⠙⠊⠎⠉⠎" }, { "input": "videos", "output": "⠧⠊⠙⠑⠕⠎" }, { "input": "videotape", "output": "⠧⠊⠙⠑⠕⠞â â â ‘" }, { "input": "videotape's", "output": "⠧⠊⠙⠑⠕⠞â â â ‘â „â Ž" }, { "input": "videotaped", "output": "⠧⠊⠙⠑⠕⠞â â â «" }, { "input": "videotapes", "output": "⠧⠊⠙⠑⠕⠞â â â ‘â Ž" }, { "input": "videotaping", "output": "⠧⠊⠙⠑⠕⠞â â â Œ" }, { "input": "vie", "output": "â §â Šâ ‘" }, { "input": "vied", "output": "â §â Šâ «" }, { "input": "vies", "output": "â §â Šâ ‘â Ž" }, { "input": "view", "output": "â §â Šâ ‘â º" }, { "input": "view's", "output": "⠧⠊⠑⠺⠄⠎" }, { "input": "viewed", "output": "⠧⠊⠑⠺⠫" }, { "input": "viewer", "output": "⠧⠊⠑⠺⠻" }, { "input": "viewer's", "output": "⠧⠊⠑⠺⠻⠄⠎" }, { "input": "viewers", "output": "⠧⠊⠑⠺⠻⠎" }, { "input": "viewership", "output": "⠧⠊⠑⠺⠻⠩⠊â " }, { "input": "viewership's", "output": "⠧⠊⠑⠺⠻⠩⠊â â „â Ž" }, { "input": "viewfinder", "output": "⠧⠊⠑⠺⠋⠔⠙⠻" }, { "input": "viewfinder's", "output": "⠧⠊⠑⠺⠋⠔⠙⠻⠄⠎" }, { "input": "viewfinders", "output": "⠧⠊⠑⠺⠋⠔⠙⠻⠎" }, { "input": "viewing", "output": "⠧⠊⠑⠺⠌" }, { "input": "viewing's", "output": "⠧⠊⠑⠺⠌⠄⠎" }, { "input": "viewings", "output": "⠧⠊⠑⠺⠌⠎" }, { "input": "viewpoint", "output": "â §â Šâ ‘â ºâ â •⠔⠞" }, { "input": "viewpoint's", "output": "â §â Šâ ‘â ºâ â •⠔⠞⠄⠎" }, { "input": "viewpoints", "output": "â §â Šâ ‘â ºâ â •⠔⠞⠎" }, { "input": "views", "output": "⠧⠊⠑⠺⠎" }, { "input": "vigesimal", "output": "⠧⠊⠛⠑⠎⠊â â â ‡" }, { "input": "vigil", "output": "⠧⠊⠛⠊⠇" }, { "input": "vigil's", "output": "⠧⠊⠛⠊⠇⠄⠎" }, { "input": "vigilance", "output": "⠧⠊⠛⠊⠇⠨⠑" }, { "input": "vigilance's", "output": "⠧⠊⠛⠊⠇⠨⠑⠄⠎" }, { "input": "vigilant", "output": "⠧⠊⠛⠊⠇â â â ž" }, { "input": "vigilante", "output": "⠧⠊⠛⠊⠇â â â žâ ‘" }, { "input": "vigilante's", "output": "⠧⠊⠛⠊⠇â â â žâ ‘â „â Ž" }, { "input": "vigilantes", "output": "⠧⠊⠛⠊⠇â â â žâ ‘â Ž" }, { "input": "vigilantism", "output": "⠧⠊⠛⠊⠇â â â žâ Šâ Žâ " }, { "input": "vigilantism's", "output": "⠧⠊⠛⠊⠇â â â žâ Šâ Žâ â „â Ž" }, { "input": "vigilantist", "output": "⠧⠊⠛⠊⠇â â â žâ Šâ Œ" }, { "input": "vigilantist's", "output": "⠧⠊⠛⠊⠇â â â žâ Šâ Œâ „â Ž" }, { "input": "vigilantly", "output": "⠧⠊⠛⠊⠇â â â žâ ‡â ½" }, { "input": "vigils", "output": "⠧⠊⠛⠊⠇⠎" }, { "input": "vignette", "output": "â §â Šâ ›â â ‘â žâ žâ ‘" }, { "input": "vignette's", "output": "â §â Šâ ›â â ‘â žâ žâ ‘â „â Ž" }, { "input": "vignetted", "output": "â §â Šâ ›â â ‘â žâ žâ «" }, { "input": "vignettes", "output": "â §â Šâ ›â â ‘â žâ žâ ‘â Ž" }, { "input": "vignetting", "output": "â §â Šâ ›â â ‘â žâ žâ Œ" }, { "input": "vignettist", "output": "â §â Šâ ›â â ‘â žâ žâ Šâ Œ" }, { "input": "vignettist's", "output": "â §â Šâ ›â â ‘⠞⠞⠊⠌⠄⠎" }, { "input": "vignettists", "output": "â §â Šâ ›â â ‘⠞⠞⠊⠌⠎" }, { "input": "vigor", "output": "⠧⠊⠛⠕⠗" }, { "input": "vigor's", "output": "⠧⠊⠛⠕⠗⠄⠎" }, { "input": "vigorous", "output": "⠧⠊⠛⠕⠗⠳⠎" }, { "input": "vigorously", "output": "⠧⠊⠛⠕⠗⠳⠎⠇⠽" }, { "input": "viking", "output": "â §â Šâ …â Œ" }, { "input": "viking's", "output": "⠧⠊⠅⠌⠄⠎" }, { "input": "vikings", "output": "⠧⠊⠅⠌⠎" }, { "input": "vile", "output": "⠧⠊⠇⠑" }, { "input": "vilely", "output": "⠧⠊⠇⠑⠇⠽" }, { "input": "vileness", "output": "⠧⠊⠇⠑⠰⠎" }, { "input": "vileness's", "output": "⠧⠊⠇⠑⠰⠎⠄⠎" }, { "input": "viler", "output": "⠧⠊⠇⠻" }, { "input": "vilest", "output": "⠧⠊⠇⠑⠌" }, { "input": "vilification", "output": "⠧⠊⠇⠊⠋⠊⠉⠠â " }, { "input": "vilification's", "output": "⠧⠊⠇⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "vilified", "output": "⠧⠊⠇⠊⠋⠊⠫" }, { "input": "vilifies", "output": "⠧⠊⠇⠊⠋⠊⠑⠎" }, { "input": "vilify", "output": "⠧⠊⠇⠊⠋⠽" }, { "input": "vilifying", "output": "⠧⠊⠇⠊⠋⠽⠌" }, { "input": "villa", "output": "⠧⠊⠇⠇â " }, { "input": "villa's", "output": "⠧⠊⠇⠇â â „â Ž" }, { "input": "village", "output": "⠧⠊⠇⠇â â ›â ‘" }, { "input": "village's", "output": "⠧⠊⠇⠇â â ›â ‘â „â Ž" }, { "input": "villager", "output": "⠧⠊⠇⠇â â ›â »" }, { "input": "villager's", "output": "⠧⠊⠇⠇â â ›â »â „â Ž" }, { "input": "villagers", "output": "⠧⠊⠇⠇â â ›â »â Ž" }, { "input": "villages", "output": "⠧⠊⠇⠇â â ›â ‘â Ž" }, { "input": "villain", "output": "⠧⠊⠇⠇â â ”" }, { "input": "villain's", "output": "⠧⠊⠇⠇â â ”â „â Ž" }, { "input": "villainies", "output": "⠧⠊⠇⠇â â ”â Šâ ‘â Ž" }, { "input": "villainous", "output": "⠧⠊⠇⠇â â ”⠳⠎" }, { "input": "villains", "output": "⠧⠊⠇⠇â â ”â Ž" }, { "input": "villainy", "output": "⠧⠊⠇⠇â â ”â ½" }, { "input": "villainy's", "output": "⠧⠊⠇⠇â â ”⠽⠄⠎" }, { "input": "villas", "output": "⠧⠊⠇⠇â â Ž" }, { "input": "villein", "output": "⠧⠊⠇⠇⠑⠔" }, { "input": "villein's", "output": "⠧⠊⠇⠇⠑⠔⠄⠎" }, { "input": "villeinage", "output": "⠧⠊⠇⠇⠑⠔â â ›â ‘" }, { "input": "villeinage's", "output": "⠧⠊⠇⠇⠑⠔â â ›â ‘â „â Ž" }, { "input": "villeins", "output": "⠧⠊⠇⠇⠑⠔⠎" }, { "input": "villi", "output": "⠧⠊⠇⠇⠊" }, { "input": "villus", "output": "⠧⠊⠇⠇⠥⠎" }, { "input": "villus's", "output": "⠧⠊⠇⠇⠥⠎⠄⠎" }, { "input": "vim", "output": "â §â Šâ " }, { "input": "vim's", "output": "â §â Šâ â „â Ž" }, { "input": "vinaigrette", "output": "â §â ”â â Šâ ›â —â ‘â žâ žâ ‘" }, { "input": "vinaigrette's", "output": "â §â ”â â Šâ ›â —â ‘â žâ žâ ‘â „â Ž" }, { "input": "vincible", "output": "⠧⠔⠉⠊⠼" }, { "input": "vindicate", "output": "⠧⠔⠙⠊⠉â â žâ ‘" }, { "input": "vindicated", "output": "⠧⠔⠙⠊⠉â â žâ «" }, { "input": "vindicates", "output": "⠧⠔⠙⠊⠉â â žâ ‘â Ž" }, { "input": "vindicating", "output": "⠧⠔⠙⠊⠉â â žâ Œ" }, { "input": "vindication", "output": "⠧⠔⠙⠊⠉⠠â " }, { "input": "vindication's", "output": "⠧⠔⠙⠊⠉⠠â â „â Ž" }, { "input": "vindications", "output": "⠧⠔⠙⠊⠉⠠â â Ž" }, { "input": "vindicator", "output": "⠧⠔⠙⠊⠉â â žâ •â —" }, { "input": "vindicator's", "output": "⠧⠔⠙⠊⠉â â žâ •â —â „â Ž" }, { "input": "vindicators", "output": "⠧⠔⠙⠊⠉â â žâ •â —â Ž" }, { "input": "vindictive", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑" }, { "input": "vindictively", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑⠇⠽" }, { "input": "vindictiveness", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑⠰⠎" }, { "input": "vindictiveness's", "output": "⠧⠔⠙⠊⠉⠞⠊⠧⠑⠰⠎⠄⠎" }, { "input": "vine", "output": "⠧⠔⠑" }, { "input": "vine's", "output": "⠧⠔⠑⠄⠎" }, { "input": "vinegar", "output": "⠧⠔⠑⠛⠜" }, { "input": "vinegar's", "output": "⠧⠔⠑⠛⠜⠄⠎" }, { "input": "vinegary", "output": "⠧⠔⠑⠛⠜⠽" }, { "input": "vines", "output": "⠧⠔⠑⠎" }, { "input": "vineyard", "output": "⠧⠔⠑⠽⠜⠙" }, { "input": "vineyard's", "output": "⠧⠔⠑⠽⠜⠙⠄⠎" }, { "input": "vineyards", "output": "⠧⠔⠑⠽⠜⠙⠎" }, { "input": "vino's", "output": "⠧⠔⠕⠄⠎" }, { "input": "vinous", "output": "⠧⠔⠳⠎" }, { "input": "vintage", "output": "⠧⠔⠞â â ›â ‘" }, { "input": "vintage's", "output": "⠧⠔⠞â â ›â ‘â „â Ž" }, { "input": "vintages", "output": "⠧⠔⠞â â ›â ‘â Ž" }, { "input": "vintner", "output": "⠧⠔⠞â â »" }, { "input": "vintner's", "output": "⠧⠔⠞â â »â „â Ž" }, { "input": "vintners", "output": "⠧⠔⠞â â »â Ž" }, { "input": "vinyl", "output": "⠧⠔⠽⠇" }, { "input": "vinyl's", "output": "⠧⠔⠽⠇⠄⠎" }, { "input": "vinyls", "output": "⠧⠔⠽⠇⠎" }, { "input": "viol", "output": "â §â Šâ •â ‡" }, { "input": "viol's", "output": "⠧⠊⠕⠇⠄⠎" }, { "input": "viola", "output": "â §â Šâ •â ‡â " }, { "input": "viola's", "output": "â §â Šâ •â ‡â â „â Ž" }, { "input": "violable", "output": "â §â Šâ •â ‡â â ¼" }, { "input": "violas", "output": "â §â Šâ •â ‡â â Ž" }, { "input": "violate", "output": "â §â Šâ •â ‡â â žâ ‘" }, { "input": "violated", "output": "â §â Šâ •â ‡â â žâ «" }, { "input": "violates", "output": "â §â Šâ •â ‡â â žâ ‘â Ž" }, { "input": "violating", "output": "â §â Šâ •â ‡â â žâ Œ" }, { "input": "violation", "output": "⠧⠊⠕⠇⠠â " }, { "input": "violation's", "output": "⠧⠊⠕⠇⠠â â „â Ž" }, { "input": "violations", "output": "⠧⠊⠕⠇⠠â â Ž" }, { "input": "violator", "output": "â §â Šâ •â ‡â â žâ •â —" }, { "input": "violator's", "output": "â §â Šâ •â ‡â â žâ •â —â „â Ž" }, { "input": "violators", "output": "â §â Šâ •â ‡â â žâ •â —â Ž" }, { "input": "violence", "output": "⠧⠊⠕⠇⠰⠑" }, { "input": "violence's", "output": "⠧⠊⠕⠇⠰⠑⠄⠎" }, { "input": "violent", "output": "⠧⠊⠕⠇⠢⠞" }, { "input": "violently", "output": "⠧⠊⠕⠇⠢⠞⠇⠽" }, { "input": "violet", "output": "⠧⠊⠕⠇⠑⠞" }, { "input": "violet's", "output": "⠧⠊⠕⠇⠑⠞⠄⠎" }, { "input": "violets", "output": "⠧⠊⠕⠇⠑⠞⠎" }, { "input": "violin", "output": "⠧⠊⠕⠇⠔" }, { "input": "violin's", "output": "⠧⠊⠕⠇⠔⠄⠎" }, { "input": "violinist", "output": "⠧⠊⠕⠇⠔⠊⠌" }, { "input": "violinist's", "output": "⠧⠊⠕⠇⠔⠊⠌⠄⠎" }, { "input": "violinists", "output": "⠧⠊⠕⠇⠔⠊⠌⠎" }, { "input": "violins", "output": "⠧⠊⠕⠇⠔⠎" }, { "input": "violist", "output": "⠧⠊⠕⠇⠊⠌" }, { "input": "violist's", "output": "⠧⠊⠕⠇⠊⠌⠄⠎" }, { "input": "violists", "output": "⠧⠊⠕⠇⠊⠌⠎" }, { "input": "violoncellist", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠊⠌" }, { "input": "violoncellist's", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠊⠌⠄⠎" }, { "input": "violoncellists", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠊⠌⠎" }, { "input": "violoncello", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠕" }, { "input": "violoncello's", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠕⠄⠎" }, { "input": "violoncellos", "output": "⠧⠊⠕⠇⠕â â ‰â ‘⠇⠇⠕⠎" }, { "input": "viols", "output": "⠧⠊⠕⠇⠎" }, { "input": "viper", "output": "â §â Šâ â »" }, { "input": "viper's", "output": "â §â Šâ â »â „â Ž" }, { "input": "viperous", "output": "â §â Šâ â »â ³â Ž" }, { "input": "vipers", "output": "â §â Šâ â »â Ž" }, { "input": "virago", "output": "â §â Šâ —â â ›â •" }, { "input": "virago's", "output": "â §â Šâ —â â ›â •â „â Ž" }, { "input": "viragoes", "output": "â §â Šâ —â â ›â •â ‘â Ž" }, { "input": "viral", "output": "â §â Šâ —â â ‡" }, { "input": "vireo", "output": "â §â Šâ —â ‘â •" }, { "input": "vireo's", "output": "â §â Šâ —â ‘â •â „â Ž" }, { "input": "vireos", "output": "â §â Šâ —â ‘â •â Ž" }, { "input": "virgin", "output": "⠧⠊⠗⠛⠔" }, { "input": "virgin's", "output": "⠧⠊⠗⠛⠔⠄⠎" }, { "input": "virginal", "output": "⠧⠊⠗⠛⠔â â ‡" }, { "input": "virginal's", "output": "⠧⠊⠗⠛⠔â â ‡â „â Ž" }, { "input": "virginals", "output": "⠧⠊⠗⠛⠔â â ‡â Ž" }, { "input": "virginity", "output": "⠧⠊⠗⠛⠔⠰⠽" }, { "input": "virginity's", "output": "⠧⠊⠗⠛⠔⠰⠽⠄⠎" }, { "input": "virgins", "output": "⠧⠊⠗⠛⠔⠎" }, { "input": "virgule", "output": "⠧⠊⠗⠛⠥⠇⠑" }, { "input": "virgule's", "output": "⠧⠊⠗⠛⠥⠇⠑⠄⠎" }, { "input": "virgules", "output": "⠧⠊⠗⠛⠥⠇⠑⠎" }, { "input": "virile", "output": "⠧⠊⠗⠊⠇⠑" }, { "input": "virility", "output": "⠧⠊⠗⠊⠇⠰⠽" }, { "input": "virility's", "output": "⠧⠊⠗⠊⠇⠰⠽⠄⠎" }, { "input": "virologist", "output": "⠧⠊⠗⠕⠇⠕⠛⠊⠌" }, { "input": "virologist's", "output": "⠧⠊⠗⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "virologists", "output": "⠧⠊⠗⠕⠇⠕⠛⠊⠌⠎" }, { "input": "virology", "output": "⠧⠊⠗⠕⠇⠕⠛⠽" }, { "input": "virology's", "output": "⠧⠊⠗⠕⠇⠕⠛⠽⠄⠎" }, { "input": "virtual", "output": "â §â Šâ —â žâ ¥â â ‡" }, { "input": "virtually", "output": "⠧⠊⠗⠞⠥⠠⠽" }, { "input": "virtue", "output": "⠧⠊⠗⠞⠥⠑" }, { "input": "virtue's", "output": "⠧⠊⠗⠞⠥⠑⠄⠎" }, { "input": "virtues", "output": "⠧⠊⠗⠞⠥⠑⠎" }, { "input": "virtuosity", "output": "⠧⠊⠗⠞⠥⠕⠎⠰⠽" }, { "input": "virtuosity's", "output": "⠧⠊⠗⠞⠥⠕⠎⠰⠽⠄⠎" }, { "input": "virtuoso", "output": "⠧⠊⠗⠞⠥⠕⠎⠕" }, { "input": "virtuoso's", "output": "⠧⠊⠗⠞⠥⠕⠎⠕⠄⠎" }, { "input": "virtuous", "output": "⠧⠊⠗⠞⠥⠳⠎" }, { "input": "virtuously", "output": "⠧⠊⠗⠞⠥⠳⠎⠇⠽" }, { "input": "virtuousness", "output": "⠧⠊⠗⠞⠥⠳⠎⠰⠎" }, { "input": "virtuousness's", "output": "⠧⠊⠗⠞⠥⠳⠎⠰⠎⠄⠎" }, { "input": "virulence", "output": "⠧⠊⠗⠥⠇⠰⠑" }, { "input": "virulence's", "output": "⠧⠊⠗⠥⠇⠰⠑⠄⠎" }, { "input": "virulent", "output": "⠧⠊⠗⠥⠇⠢⠞" }, { "input": "virulently", "output": "⠧⠊⠗⠥⠇⠢⠞⠇⠽" }, { "input": "virus", "output": "⠧⠊⠗⠥⠎" }, { "input": "virus's", "output": "⠧⠊⠗⠥⠎⠄⠎" }, { "input": "viruses", "output": "⠧⠊⠗⠥⠎⠑⠎" }, { "input": "visa", "output": "â §â Šâ Žâ " }, { "input": "visa's", "output": "â §â Šâ Žâ â „â Ž" }, { "input": "visaed", "output": "â §â Šâ Žâ â «" }, { "input": "visage", "output": "â §â Šâ Žâ â ›â ‘" }, { "input": "visage's", "output": "â §â Šâ Žâ â ›â ‘â „â Ž" }, { "input": "visages", "output": "â §â Šâ Žâ â ›â ‘â Ž" }, { "input": "visaing", "output": "â §â Šâ Žâ â Œ" }, { "input": "visas", "output": "â §â Šâ Žâ â Ž" }, { "input": "viscera", "output": "⠧⠊⠎⠉⠻â " }, { "input": "visceral", "output": "⠧⠊⠎⠉⠻â â ‡" }, { "input": "viscerally", "output": "⠧⠊⠎⠉⠻⠠⠽" }, { "input": "viscid", "output": "⠧⠊⠎⠉⠊⠙" }, { "input": "viscose's", "output": "⠧⠊⠎⠉⠕⠎⠑⠄⠎" }, { "input": "viscosity", "output": "⠧⠊⠎⠉⠕⠎⠰⠽" }, { "input": "viscosity's", "output": "⠧⠊⠎⠉⠕⠎⠰⠽⠄⠎" }, { "input": "viscount", "output": "⠧⠊⠎⠉⠨⠞" }, { "input": "viscount's", "output": "⠧⠊⠎⠉⠨⠞⠄⠎" }, { "input": "viscountess", "output": "⠧⠊⠎⠉⠨⠞⠑⠎⠎" }, { "input": "viscountess's", "output": "⠧⠊⠎⠉⠨⠞⠑⠎⠎⠄⠎" }, { "input": "viscountesses", "output": "⠧⠊⠎⠉⠨⠞⠑⠎⠎⠑⠎" }, { "input": "viscounts", "output": "⠧⠊⠎⠉⠨⠞⠎" }, { "input": "viscous", "output": "⠧⠊⠎⠉⠳⠎" }, { "input": "viscus", "output": "⠧⠊⠎⠉⠥⠎" }, { "input": "viscus's", "output": "⠧⠊⠎⠉⠥⠎⠄⠎" }, { "input": "vise", "output": "â §â Šâ Žâ ‘" }, { "input": "vise's", "output": "â §â Šâ Žâ ‘â „â Ž" }, { "input": "vised", "output": "â §â Šâ Žâ «" }, { "input": "vises", "output": "â §â Šâ Žâ ‘â Ž" }, { "input": "visibility", "output": "⠧⠊⠎⠊⠃⠊⠇⠰⠽" }, { "input": "visibility's", "output": "⠧⠊⠎⠊⠃⠊⠇⠰⠽⠄⠎" }, { "input": "visible", "output": "â §â Šâ Žâ Šâ ¼" }, { "input": "visibly", "output": "⠧⠊⠎⠊⠃⠇⠽" }, { "input": "vising", "output": "â §â Šâ Žâ Œ" }, { "input": "vision", "output": "â §â Šâ ¨â " }, { "input": "vision's", "output": "â §â Šâ ¨â â „â Ž" }, { "input": "visionaries", "output": "â §â Šâ ¨â â œâ Šâ ‘â Ž" }, { "input": "visionary", "output": "â §â Šâ ¨â â œâ ½" }, { "input": "visionary's", "output": "â §â Šâ ¨â â œâ ½â „â Ž" }, { "input": "visioned", "output": "â §â Šâ ¨â â «" }, { "input": "visioning", "output": "â §â Šâ ¨â â Œ" }, { "input": "visions", "output": "â §â Šâ ¨â â Ž" }, { "input": "visit", "output": "â §â Šâ Žâ Šâ ž" }, { "input": "visit's", "output": "â §â Šâ Žâ Šâ žâ „â Ž" }, { "input": "visitant", "output": "â §â Šâ Žâ Šâ žâ â â ž" }, { "input": "visitant's", "output": "â §â Šâ Žâ Šâ žâ â â žâ „â Ž" }, { "input": "visitants", "output": "â §â Šâ Žâ Šâ žâ â â žâ Ž" }, { "input": "visitation", "output": "â §â Šâ Žâ Šâ žâ  â " }, { "input": "visitation's", "output": "â §â Šâ Žâ Šâ žâ  â â „â Ž" }, { "input": "visitations", "output": "â §â Šâ Žâ Šâ žâ  â â Ž" }, { "input": "visited", "output": "â §â Šâ Žâ Šâ žâ «" }, { "input": "visiting", "output": "â §â Šâ Žâ Šâ žâ Œ" }, { "input": "visitor", "output": "â §â Šâ Žâ Šâ žâ •â —" }, { "input": "visitor's", "output": "â §â Šâ Žâ Šâ žâ •â —â „â Ž" }, { "input": "visitors", "output": "â §â Šâ Žâ Šâ žâ •â —â Ž" }, { "input": "visits", "output": "â §â Šâ Žâ Šâ žâ Ž" }, { "input": "visor", "output": "â §â Šâ Žâ •â —" }, { "input": "visor's", "output": "â §â Šâ Žâ •â —â „â Ž" }, { "input": "visors", "output": "â §â Šâ Žâ •â —â Ž" }, { "input": "vista", "output": "â §â Šâ Œâ " }, { "input": "vista's", "output": "â §â Šâ Œâ â „â Ž" }, { "input": "vistas", "output": "â §â Šâ Œâ â Ž" }, { "input": "visual", "output": "â §â Šâ Žâ ¥â â ‡" }, { "input": "visual's", "output": "â §â Šâ Žâ ¥â â ‡â „â Ž" }, { "input": "visualization", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ  â " }, { "input": "visualization's", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ  â â „â Ž" }, { "input": "visualizations", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ  â â Ž" }, { "input": "visualize", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ ‘" }, { "input": "visualized", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ «" }, { "input": "visualizer", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ »" }, { "input": "visualizer's", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ »â „â Ž" }, { "input": "visualizers", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ »â Ž" }, { "input": "visualizes", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ ‘â Ž" }, { "input": "visualizing", "output": "â §â Šâ Žâ ¥â â ‡â Šâ µâ Œ" }, { "input": "visually", "output": "⠧⠊⠎⠥⠠⠽" }, { "input": "visuals", "output": "â §â Šâ Žâ ¥â â ‡â Ž" }, { "input": "vita", "output": "â §â Šâ žâ " }, { "input": "vita's", "output": "â §â Šâ žâ â „â Ž" }, { "input": "vitae", "output": "â §â Šâ žâ â ‘" }, { "input": "vital", "output": "â §â Šâ žâ â ‡" }, { "input": "vitality", "output": "â §â Šâ žâ â ‡â °â ½" }, { "input": "vitality's", "output": "â §â Šâ žâ â ‡â °â ½â „â Ž" }, { "input": "vitalization", "output": "â §â Šâ žâ â ‡â Šâ µâ  â " }, { "input": "vitalization's", "output": "â §â Šâ žâ â ‡â Šâ µâ  â â „â Ž" }, { "input": "vitalize", "output": "â §â Šâ žâ â ‡â Šâ µâ ‘" }, { "input": "vitalized", "output": "â §â Šâ žâ â ‡â Šâ µâ «" }, { "input": "vitalizes", "output": "â §â Šâ žâ â ‡â Šâ µâ ‘â Ž" }, { "input": "vitalizing", "output": "â §â Šâ žâ â ‡â Šâ µâ Œ" }, { "input": "vitally", "output": "â §â Šâ žâ  â ½" }, { "input": "vitals", "output": "â §â Šâ žâ â ‡â Ž" }, { "input": "vitals's", "output": "â §â Šâ žâ â ‡â Žâ „â Ž" }, { "input": "vitamin", "output": "â §â Šâ žâ â â ”" }, { "input": "vitamin's", "output": "â §â Šâ žâ â â ”â „â Ž" }, { "input": "vitamins", "output": "â §â Šâ žâ â â ”â Ž" }, { "input": "vitiate", "output": "â §â Šâ žâ Šâ â žâ ‘" }, { "input": "vitiated", "output": "â §â Šâ žâ Šâ â žâ «" }, { "input": "vitiates", "output": "â §â Šâ žâ Šâ â žâ ‘â Ž" }, { "input": "vitiating", "output": "â §â Šâ žâ Šâ â žâ Œ" }, { "input": "vitiation", "output": "â §â Šâ žâ Šâ  â " }, { "input": "vitiation's", "output": "â §â Šâ žâ Šâ  â â „â Ž" }, { "input": "viticulture", "output": "⠧⠊⠞⠊⠉⠥⠇⠞⠥⠗⠑" }, { "input": "viticulture's", "output": "⠧⠊⠞⠊⠉⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "viticulturist", "output": "⠧⠊⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌" }, { "input": "viticulturist's", "output": "⠧⠊⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌⠄⠎" }, { "input": "viticulturists", "output": "⠧⠊⠞⠊⠉⠥⠇⠞⠥⠗⠊⠌⠎" }, { "input": "vitreous", "output": "⠧⠊⠞⠗⠑⠳⠎" }, { "input": "vitrifaction", "output": "â §â Šâ žâ —â Šâ ‹â â ‰â °â " }, { "input": "vitrifaction's", "output": "â §â Šâ žâ —â Šâ ‹â â ‰â °â â „â Ž" }, { "input": "vitrification", "output": "⠧⠊⠞⠗⠊⠋⠊⠉⠠â " }, { "input": "vitrification's", "output": "⠧⠊⠞⠗⠊⠋⠊⠉⠠â â „â Ž" }, { "input": "vitrified", "output": "â §â Šâ žâ —â Šâ ‹â Šâ «" }, { "input": "vitrifies", "output": "â §â Šâ žâ —â Šâ ‹â Šâ ‘â Ž" }, { "input": "vitrify", "output": "â §â Šâ žâ —â Šâ ‹â ½" }, { "input": "vitrifying", "output": "⠧⠊⠞⠗⠊⠋⠽⠌" }, { "input": "vitrine", "output": "⠧⠊⠞⠗⠔⠑" }, { "input": "vitrine's", "output": "⠧⠊⠞⠗⠔⠑⠄⠎" }, { "input": "vitrines", "output": "⠧⠊⠞⠗⠔⠑⠎" }, { "input": "vitriol", "output": "â §â Šâ žâ —â Šâ •â ‡" }, { "input": "vitriol's", "output": "⠧⠊⠞⠗⠊⠕⠇⠄⠎" }, { "input": "vitriolic", "output": "⠧⠊⠞⠗⠊⠕⠇⠊⠉" }, { "input": "vittles", "output": "⠧⠊⠞⠞⠇⠑⠎" }, { "input": "vittles's", "output": "⠧⠊⠞⠞⠇⠑⠎⠄⠎" }, { "input": "vituperate", "output": "â §â Šâ žâ ¥â â »â â žâ ‘" }, { "input": "vituperated", "output": "â §â Šâ žâ ¥â â »â â žâ «" }, { "input": "vituperates", "output": "â §â Šâ žâ ¥â â »â â žâ ‘â Ž" }, { "input": "vituperating", "output": "â §â Šâ žâ ¥â â »â â žâ Œ" }, { "input": "vituperation", "output": "â §â Šâ žâ ¥â â »â  â " }, { "input": "vituperation's", "output": "â §â Šâ žâ ¥â â »â  â â „â Ž" }, { "input": "vituperative", "output": "â §â Šâ žâ ¥â â »â â žâ Šâ §â ‘" }, { "input": "viva", "output": "â §â Šâ §â " }, { "input": "viva's", "output": "â §â Šâ §â â „â Ž" }, { "input": "vivace", "output": "â §â Šâ §â â ‰â ‘" }, { "input": "vivacious", "output": "â §â Šâ §â â ‰â Šâ ³â Ž" }, { "input": "vivaciously", "output": "â §â Šâ §â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "vivaciousness", "output": "â §â Šâ §â â ‰â Šâ ³â Žâ °â Ž" }, { "input": "vivaciousness's", "output": "â §â Šâ §â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "vivacity", "output": "â §â Šâ §â â ‰â °â ½" }, { "input": "vivacity's", "output": "â §â Šâ §â â ‰â °â ½â „â Ž" }, { "input": "vivaria", "output": "⠧⠊⠧⠜⠊â " }, { "input": "vivarium", "output": "⠧⠊⠧⠜⠊⠥â " }, { "input": "vivarium's", "output": "⠧⠊⠧⠜⠊⠥â â „â Ž" }, { "input": "vivariums", "output": "⠧⠊⠧⠜⠊⠥â â Ž" }, { "input": "vivas", "output": "â §â Šâ §â â Ž" }, { "input": "vivid", "output": "â §â Šâ §â Šâ ™" }, { "input": "vivider", "output": "⠧⠊⠧⠊⠙⠻" }, { "input": "vividest", "output": "⠧⠊⠧⠊⠙⠑⠌" }, { "input": "vividly", "output": "⠧⠊⠧⠊⠙⠇⠽" }, { "input": "vividness", "output": "⠧⠊⠧⠊⠙⠰⠎" }, { "input": "vividness's", "output": "⠧⠊⠧⠊⠙⠰⠎⠄⠎" }, { "input": "vivified", "output": "â §â Šâ §â Šâ ‹â Šâ «" }, { "input": "vivifies", "output": "â §â Šâ §â Šâ ‹â Šâ ‘â Ž" }, { "input": "vivify", "output": "â §â Šâ §â Šâ ‹â ½" }, { "input": "vivifying", "output": "⠧⠊⠧⠊⠋⠽⠌" }, { "input": "viviparous", "output": "â §â Šâ §â Šâ â œâ ³â Ž" }, { "input": "vivisect", "output": "⠧⠊⠧⠊⠎⠑⠉⠞" }, { "input": "vivisected", "output": "⠧⠊⠧⠊⠎⠑⠉⠞⠫" }, { "input": "vivisecting", "output": "⠧⠊⠧⠊⠎⠑⠉⠞⠌" }, { "input": "vivisection", "output": "⠧⠊⠧⠊⠎⠑⠉⠰â " }, { "input": "vivisection's", "output": "⠧⠊⠧⠊⠎⠑⠉⠰â â „â Ž" }, { "input": "vivisectional", "output": "⠧⠊⠧⠊⠎⠑⠉⠰â â â ‡" }, { "input": "vivisects", "output": "⠧⠊⠧⠊⠎⠑⠉⠞⠎" }, { "input": "vixen", "output": "â §â Šâ ­â ¢" }, { "input": "vixen's", "output": "⠧⠊⠭⠢⠄⠎" }, { "input": "vixenish", "output": "⠧⠊⠭⠢⠊⠩" }, { "input": "vixenishly", "output": "⠧⠊⠭⠢⠊⠩⠇⠽" }, { "input": "vixens", "output": "⠧⠊⠭⠢⠎" }, { "input": "vizier", "output": "⠧⠊⠵⠊⠻" }, { "input": "vizier's", "output": "⠧⠊⠵⠊⠻⠄⠎" }, { "input": "viziers", "output": "⠧⠊⠵⠊⠻⠎" }, { "input": "vocable", "output": "â §â •â ‰â â ¼" }, { "input": "vocable's", "output": "â §â •â ‰â â ¼â „â Ž" }, { "input": "vocables", "output": "â §â •â ‰â â ¼â Ž" }, { "input": "vocabularies", "output": "â §â •â ‰â â ƒâ ¥â ‡â œâ Šâ ‘â Ž" }, { "input": "vocabulary", "output": "â §â •â ‰â â ƒâ ¥â ‡â œâ ½" }, { "input": "vocabulary's", "output": "â §â •â ‰â â ƒâ ¥â ‡â œâ ½â „â Ž" }, { "input": "vocal", "output": "â §â •â ‰â â ‡" }, { "input": "vocal's", "output": "â §â •â ‰â â ‡â „â Ž" }, { "input": "vocalic", "output": "â §â •â ‰â â ‡â Šâ ‰" }, { "input": "vocalist", "output": "â §â •â ‰â â ‡â Šâ Œ" }, { "input": "vocalist's", "output": "â §â •â ‰â â ‡â Šâ Œâ „â Ž" }, { "input": "vocalists", "output": "â §â •â ‰â â ‡â Šâ Œâ Ž" }, { "input": "vocalization", "output": "â §â •â ‰â â ‡â Šâ µâ  â " }, { "input": "vocalization's", "output": "â §â •â ‰â â ‡â Šâ µâ  â â „â Ž" }, { "input": "vocalizations", "output": "â §â •â ‰â â ‡â Šâ µâ  â â Ž" }, { "input": "vocalize", "output": "â §â •â ‰â â ‡â Šâ µâ ‘" }, { "input": "vocalized", "output": "â §â •â ‰â â ‡â Šâ µâ «" }, { "input": "vocalizes", "output": "â §â •â ‰â â ‡â Šâ µâ ‘â Ž" }, { "input": "vocalizing", "output": "â §â •â ‰â â ‡â Šâ µâ Œ" }, { "input": "vocally", "output": "⠧⠕⠉⠠⠽" }, { "input": "vocals", "output": "â §â •â ‰â â ‡â Ž" }, { "input": "vocation", "output": "⠧⠕⠉⠠â " }, { "input": "vocation's", "output": "⠧⠕⠉⠠â â „â Ž" }, { "input": "vocational", "output": "⠧⠕⠉⠠â â â ‡" }, { "input": "vocations", "output": "⠧⠕⠉⠠â â Ž" }, { "input": "vocative", "output": "â §â •â ‰â â žâ Šâ §â ‘" }, { "input": "vocative's", "output": "â §â •â ‰â â žâ Šâ §â ‘â „â Ž" }, { "input": "vocatives", "output": "â §â •â ‰â â žâ Šâ §â ‘â Ž" }, { "input": "vociferate", "output": "⠧⠕⠉⠊⠋⠻â â žâ ‘" }, { "input": "vociferated", "output": "⠧⠕⠉⠊⠋⠻â â žâ «" }, { "input": "vociferates", "output": "⠧⠕⠉⠊⠋⠻â â žâ ‘â Ž" }, { "input": "vociferating", "output": "⠧⠕⠉⠊⠋⠻â â žâ Œ" }, { "input": "vociferation", "output": "⠧⠕⠉⠊⠋⠻⠠â " }, { "input": "vociferation's", "output": "⠧⠕⠉⠊⠋⠻⠠â â „â Ž" }, { "input": "vociferous", "output": "⠧⠕⠉⠊⠋⠻⠳⠎" }, { "input": "vociferously", "output": "⠧⠕⠉⠊⠋⠻⠳⠎⠇⠽" }, { "input": "vociferousness", "output": "⠧⠕⠉⠊⠋⠻⠳⠎⠰⠎" }, { "input": "vociferousness's", "output": "⠧⠕⠉⠊⠋⠻⠳⠎⠰⠎⠄⠎" }, { "input": "vodka", "output": "⠧⠕⠙⠅â " }, { "input": "vodka's", "output": "⠧⠕⠙⠅â â „â Ž" }, { "input": "vogue", "output": "⠧⠕⠛⠥⠑" }, { "input": "vogue's", "output": "⠧⠕⠛⠥⠑⠄⠎" }, { "input": "vogues", "output": "⠧⠕⠛⠥⠑⠎" }, { "input": "voguish", "output": "⠧⠕⠛⠥⠊⠩" }, { "input": "voice", "output": "⠧⠕⠊⠉⠑" }, { "input": "voice's", "output": "⠧⠕⠊⠉⠑⠄⠎" }, { "input": "voiced", "output": "⠧⠕⠊⠉⠫" }, { "input": "voiceless", "output": "⠧⠕⠊⠉⠑⠨⠎" }, { "input": "voicelessly", "output": "⠧⠕⠊⠉⠑⠨⠎⠇⠽" }, { "input": "voicelessness", "output": "⠧⠕⠊⠉⠑⠨⠎⠰⠎" }, { "input": "voicelessness's", "output": "⠧⠕⠊⠉⠑⠨⠎⠰⠎⠄⠎" }, { "input": "voices", "output": "⠧⠕⠊⠉⠑⠎" }, { "input": "voicing", "output": "⠧⠕⠊⠉⠌" }, { "input": "void", "output": "â §â •â Šâ ™" }, { "input": "void's", "output": "⠧⠕⠊⠙⠄⠎" }, { "input": "voidable", "output": "â §â •â Šâ ™â â ¼" }, { "input": "voided", "output": "⠧⠕⠊⠙⠫" }, { "input": "voiding", "output": "⠧⠕⠊⠙⠌" }, { "input": "voids", "output": "⠧⠕⠊⠙⠎" }, { "input": "voile", "output": "⠧⠕⠊⠇⠑" }, { "input": "voile's", "output": "⠧⠕⠊⠇⠑⠄⠎" }, { "input": "volatile", "output": "â §â •â ‡â â žâ Šâ ‡â ‘" }, { "input": "volatility", "output": "â §â •â ‡â â žâ Šâ ‡â °â ½" }, { "input": "volatility's", "output": "â §â •â ‡â â žâ Šâ ‡â °â ½â „â Ž" }, { "input": "volatilize", "output": "â §â •â ‡â â žâ Šâ ‡â Šâ µâ ‘" }, { "input": "volatilized", "output": "â §â •â ‡â â žâ Šâ ‡â Šâ µâ «" }, { "input": "volatilizes", "output": "â §â •â ‡â â žâ Šâ ‡â Šâ µâ ‘â Ž" }, { "input": "volatilizing", "output": "â §â •â ‡â â žâ Šâ ‡â Šâ µâ Œ" }, { "input": "volcanic", "output": "⠧⠕⠇⠉â â â Šâ ‰" }, { "input": "volcano", "output": "⠧⠕⠇⠉â â â •" }, { "input": "volcano's", "output": "⠧⠕⠇⠉â â â •â „â Ž" }, { "input": "volcanoes", "output": "⠧⠕⠇⠉â â â •â ‘â Ž" }, { "input": "vole", "output": "⠧⠕⠇⠑" }, { "input": "vole's", "output": "⠧⠕⠇⠑⠄⠎" }, { "input": "voles", "output": "⠧⠕⠇⠑⠎" }, { "input": "volition", "output": "⠧⠕⠇⠊⠰â " }, { "input": "volition's", "output": "⠧⠕⠇⠊⠰â â „â Ž" }, { "input": "volitional", "output": "⠧⠕⠇⠊⠰â â â ‡" }, { "input": "volley", "output": "⠧⠕⠇⠇⠑⠽" }, { "input": "volley's", "output": "⠧⠕⠇⠇⠑⠽⠄⠎" }, { "input": "volleyball", "output": "⠧⠕⠇⠇⠑⠽⠃â â ‡â ‡" }, { "input": "volleyball's", "output": "⠧⠕⠇⠇⠑⠽⠃â â ‡â ‡â „â Ž" }, { "input": "volleyballs", "output": "⠧⠕⠇⠇⠑⠽⠃â â ‡â ‡â Ž" }, { "input": "volleyed", "output": "⠧⠕⠇⠇⠑⠽⠫" }, { "input": "volleying", "output": "⠧⠕⠇⠇⠑⠽⠌" }, { "input": "volleys", "output": "⠧⠕⠇⠇⠑⠽⠎" }, { "input": "volt", "output": "⠧⠕⠇⠞" }, { "input": "volt's", "output": "⠧⠕⠇⠞⠄⠎" }, { "input": "voltage", "output": "⠧⠕⠇⠞â â ›â ‘" }, { "input": "voltage's", "output": "⠧⠕⠇⠞â â ›â ‘â „â Ž" }, { "input": "voltages", "output": "⠧⠕⠇⠞â â ›â ‘â Ž" }, { "input": "voltaic", "output": "⠧⠕⠇⠞â â Šâ ‰" }, { "input": "voltmeter", "output": "⠧⠕⠇⠞â â ‘â žâ »" }, { "input": "voltmeter's", "output": "⠧⠕⠇⠞â â ‘⠞⠻⠄⠎" }, { "input": "voltmeters", "output": "⠧⠕⠇⠞â â ‘⠞⠻⠎" }, { "input": "volts", "output": "⠧⠕⠇⠞⠎" }, { "input": "volubility", "output": "⠧⠕⠇⠥⠃⠊⠇⠰⠽" }, { "input": "volubility's", "output": "⠧⠕⠇⠥⠃⠊⠇⠰⠽⠄⠎" }, { "input": "voluble", "output": "⠧⠕⠇⠥⠼" }, { "input": "volubly", "output": "⠧⠕⠇⠥⠃⠇⠽" }, { "input": "volume", "output": "⠧⠕⠇⠥â â ‘" }, { "input": "volume's", "output": "⠧⠕⠇⠥â â ‘â „â Ž" }, { "input": "volumes", "output": "⠧⠕⠇⠥â â ‘â Ž" }, { "input": "voluminous", "output": "⠧⠕⠇⠥â â ”⠳⠎" }, { "input": "voluminously", "output": "⠧⠕⠇⠥â â ”⠳⠎⠇⠽" }, { "input": "voluminousness", "output": "⠧⠕⠇⠥â â ”⠳⠎⠰⠎" }, { "input": "voluminousness's", "output": "⠧⠕⠇⠥â â ”⠳⠎⠰⠎⠄⠎" }, { "input": "voluntaries", "output": "⠧⠕⠇⠥â â žâ œâ Šâ ‘â Ž" }, { "input": "voluntarily", "output": "⠧⠕⠇⠥â â žâ œâ Šâ ‡â ½" }, { "input": "voluntarism", "output": "⠧⠕⠇⠥â â žâ œâ Šâ Žâ " }, { "input": "voluntarism's", "output": "⠧⠕⠇⠥â â žâ œâ Šâ Žâ â „â Ž" }, { "input": "voluntary", "output": "⠧⠕⠇⠥â â žâ œâ ½" }, { "input": "voluntary's", "output": "⠧⠕⠇⠥â â žâ œâ ½â „â Ž" }, { "input": "volunteer", "output": "⠧⠕⠇⠥â â žâ ‘â »" }, { "input": "volunteer's", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠄⠎" }, { "input": "volunteered", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠫" }, { "input": "volunteering", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠌" }, { "input": "volunteerism", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠊⠎â " }, { "input": "volunteerism's", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠊⠎â â „â Ž" }, { "input": "volunteers", "output": "⠧⠕⠇⠥â â žâ ‘⠻⠎" }, { "input": "voluptuaries", "output": "⠧⠕⠇⠥â â žâ ¥â œâ Šâ ‘â Ž" }, { "input": "voluptuary", "output": "⠧⠕⠇⠥â â žâ ¥â œâ ½" }, { "input": "voluptuary's", "output": "⠧⠕⠇⠥â â žâ ¥â œâ ½â „â Ž" }, { "input": "voluptuous", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Ž" }, { "input": "voluptuously", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Žâ ‡â ½" }, { "input": "voluptuousness", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Žâ °â Ž" }, { "input": "voluptuousness's", "output": "⠧⠕⠇⠥â â žâ ¥â ³â Žâ °â Žâ „â Ž" }, { "input": "volute", "output": "⠧⠕⠇⠥⠞⠑" }, { "input": "volute's", "output": "⠧⠕⠇⠥⠞⠑⠄⠎" }, { "input": "volutes", "output": "⠧⠕⠇⠥⠞⠑⠎" }, { "input": "vomit", "output": "â §â •â â Šâ ž" }, { "input": "vomit's", "output": "â §â •â â Šâ žâ „â Ž" }, { "input": "vomited", "output": "â §â •â â Šâ žâ «" }, { "input": "vomiting", "output": "â §â •â â Šâ žâ Œ" }, { "input": "vomits", "output": "â §â •â â Šâ žâ Ž" }, { "input": "voodoo", "output": "⠧⠕⠕⠙⠕⠕" }, { "input": "voodoo's", "output": "⠧⠕⠕⠙⠕⠕⠄⠎" }, { "input": "voodooed", "output": "⠧⠕⠕⠙⠕⠕⠫" }, { "input": "voodooing", "output": "⠧⠕⠕⠙⠕⠕⠌" }, { "input": "voodooism", "output": "⠧⠕⠕⠙⠕⠕⠊⠎â " }, { "input": "voodooism's", "output": "⠧⠕⠕⠙⠕⠕⠊⠎â â „â Ž" }, { "input": "voodoos", "output": "⠧⠕⠕⠙⠕⠕⠎" }, { "input": "voracious", "output": "â §â •â —â â ‰â Šâ ³â Ž" }, { "input": "voraciously", "output": "â §â •â —â â ‰â Šâ ³â Žâ ‡â ½" }, { "input": "voraciousness's", "output": "â §â •â —â â ‰â Šâ ³â Žâ °â Žâ „â Ž" }, { "input": "voracity", "output": "â §â •â —â â ‰â °â ½" }, { "input": "voracity's", "output": "â §â •â —â â ‰â °â ½â „â Ž" }, { "input": "vortex", "output": "â §â •â —â žâ ‘â ­" }, { "input": "vortex's", "output": "â §â •â —â žâ ‘â ­â „â Ž" }, { "input": "vortexes", "output": "â §â •â —â žâ ‘â ­â ‘â Ž" }, { "input": "votaries", "output": "⠧⠕⠞⠜⠊⠑⠎" }, { "input": "votary", "output": "⠧⠕⠞⠜⠽" }, { "input": "votary's", "output": "⠧⠕⠞⠜⠽⠄⠎" }, { "input": "vote", "output": "â §â •â žâ ‘" }, { "input": "vote's", "output": "â §â •â žâ ‘â „â Ž" }, { "input": "voted", "output": "â §â •â žâ «" }, { "input": "voter", "output": "â §â •â žâ »" }, { "input": "voter's", "output": "⠧⠕⠞⠻⠄⠎" }, { "input": "voters", "output": "⠧⠕⠞⠻⠎" }, { "input": "votes", "output": "â §â •â žâ ‘â Ž" }, { "input": "voting", "output": "â §â •â žâ Œ" }, { "input": "votive", "output": "â §â •â žâ Šâ §â ‘" }, { "input": "vouch", "output": "⠧⠳⠡" }, { "input": "vouched", "output": "⠧⠳⠡⠫" }, { "input": "voucher", "output": "⠧⠳⠡⠻" }, { "input": "voucher's", "output": "⠧⠳⠡⠻⠄⠎" }, { "input": "vouchers", "output": "⠧⠳⠡⠻⠎" }, { "input": "vouches", "output": "⠧⠳⠡⠑⠎" }, { "input": "vouching", "output": "⠧⠳⠡⠌" }, { "input": "vouchsafe", "output": "⠧⠳⠡⠎â â ‹â ‘" }, { "input": "vouchsafed", "output": "⠧⠳⠡⠎â â ‹â «" }, { "input": "vouchsafes", "output": "⠧⠳⠡⠎â â ‹â ‘â Ž" }, { "input": "vouchsafing", "output": "⠧⠳⠡⠎â â ‹â Œ" }, { "input": "vow", "output": "â §â ª" }, { "input": "vow's", "output": "⠧⠪⠄⠎" }, { "input": "vowed", "output": "⠧⠪⠫" }, { "input": "vowel", "output": "⠧⠪⠑⠇" }, { "input": "vowel's", "output": "⠧⠪⠑⠇⠄⠎" }, { "input": "vowels", "output": "⠧⠪⠑⠇⠎" }, { "input": "vowing", "output": "⠧⠪⠌" }, { "input": "vows", "output": "⠧⠪⠎" }, { "input": "voyage", "output": "â §â •â ½â â ›â ‘" }, { "input": "voyage's", "output": "â §â •â ½â â ›â ‘â „â Ž" }, { "input": "voyaged", "output": "â §â •â ½â â ›â «" }, { "input": "voyager", "output": "â §â •â ½â â ›â »" }, { "input": "voyager's", "output": "â §â •â ½â â ›â »â „â Ž" }, { "input": "voyagers", "output": "â §â •â ½â â ›â »â Ž" }, { "input": "voyages", "output": "â §â •â ½â â ›â ‘â Ž" }, { "input": "voyageur", "output": "â §â •â ½â â ›â ‘⠥⠗" }, { "input": "voyageur's", "output": "â §â •â ½â â ›â ‘⠥⠗⠄⠎" }, { "input": "voyageurs", "output": "â §â •â ½â â ›â ‘⠥⠗⠎" }, { "input": "voyaging", "output": "â §â •â ½â â ›â Œ" }, { "input": "voyeur", "output": "⠧⠕⠽⠑⠥⠗" }, { "input": "voyeur's", "output": "⠧⠕⠽⠑⠥⠗⠄⠎" }, { "input": "voyeurism", "output": "⠧⠕⠽⠑⠥⠗⠊⠎â " }, { "input": "voyeurism's", "output": "⠧⠕⠽⠑⠥⠗⠊⠎â â „â Ž" }, { "input": "voyeuristic", "output": "⠧⠕⠽⠑⠥⠗⠊⠌⠊⠉" }, { "input": "voyeurs", "output": "⠧⠕⠽⠑⠥⠗⠎" }, { "input": "vs", "output": "â §â Ž" }, { "input": "vulcanization", "output": "⠧⠥⠇⠉â â â Šâ µâ  â " }, { "input": "vulcanization's", "output": "⠧⠥⠇⠉â â â Šâ µâ  â â „â Ž" }, { "input": "vulcanize", "output": "⠧⠥⠇⠉â â â Šâ µâ ‘" }, { "input": "vulcanized", "output": "⠧⠥⠇⠉â â â Šâ µâ «" }, { "input": "vulcanizes", "output": "⠧⠥⠇⠉â â â Šâ µâ ‘â Ž" }, { "input": "vulcanizing", "output": "⠧⠥⠇⠉â â â Šâ µâ Œ" }, { "input": "vulgar", "output": "⠧⠥⠇⠛⠜" }, { "input": "vulgarer", "output": "⠧⠥⠇⠛⠜⠻" }, { "input": "vulgarest", "output": "⠧⠥⠇⠛⠜⠑⠌" }, { "input": "vulgarian", "output": "⠧⠥⠇⠛⠜⠊â â " }, { "input": "vulgarian's", "output": "⠧⠥⠇⠛⠜⠊â â â „â Ž" }, { "input": "vulgarians", "output": "⠧⠥⠇⠛⠜⠊â â â Ž" }, { "input": "vulgarism", "output": "⠧⠥⠇⠛⠜⠊⠎â " }, { "input": "vulgarism's", "output": "⠧⠥⠇⠛⠜⠊⠎â â „â Ž" }, { "input": "vulgarisms", "output": "⠧⠥⠇⠛⠜⠊⠎â â Ž" }, { "input": "vulgarities", "output": "⠧⠥⠇⠛⠜⠊⠞⠊⠑⠎" }, { "input": "vulgarity", "output": "⠧⠥⠇⠛⠜⠰⠽" }, { "input": "vulgarity's", "output": "⠧⠥⠇⠛⠜⠰⠽⠄⠎" }, { "input": "vulgarization", "output": "⠧⠥⠇⠛⠜⠊⠵⠠â " }, { "input": "vulgarization's", "output": "⠧⠥⠇⠛⠜⠊⠵⠠â â „â Ž" }, { "input": "vulgarize", "output": "⠧⠥⠇⠛⠜⠊⠵⠑" }, { "input": "vulgarized", "output": "⠧⠥⠇⠛⠜⠊⠵⠫" }, { "input": "vulgarizer", "output": "⠧⠥⠇⠛⠜⠊⠵⠻" }, { "input": "vulgarizer's", "output": "⠧⠥⠇⠛⠜⠊⠵⠻⠄⠎" }, { "input": "vulgarizers", "output": "⠧⠥⠇⠛⠜⠊⠵⠻⠎" }, { "input": "vulgarizes", "output": "⠧⠥⠇⠛⠜⠊⠵⠑⠎" }, { "input": "vulgarizing", "output": "⠧⠥⠇⠛⠜⠊⠵⠌" }, { "input": "vulgarly", "output": "⠧⠥⠇⠛⠜⠇⠽" }, { "input": "vulnerabilities", "output": "⠧⠥⠇â â »â â ƒâ Šâ ‡â Šâ žâ Šâ ‘â Ž" }, { "input": "vulnerability", "output": "⠧⠥⠇â â »â â ƒâ Šâ ‡â °â ½" }, { "input": "vulnerability's", "output": "⠧⠥⠇â â »â â ƒâ Šâ ‡â °â ½â „â Ž" }, { "input": "vulnerable", "output": "⠧⠥⠇â â »â â ¼" }, { "input": "vulnerably", "output": "⠧⠥⠇â â »â â ƒâ ‡â ½" }, { "input": "vulpine", "output": "⠧⠥⠇â â ”â ‘" }, { "input": "vulture", "output": "⠧⠥⠇⠞⠥⠗⠑" }, { "input": "vulture's", "output": "⠧⠥⠇⠞⠥⠗⠑⠄⠎" }, { "input": "vultures", "output": "⠧⠥⠇⠞⠥⠗⠑⠎" }, { "input": "vulturous", "output": "⠧⠥⠇⠞⠥⠗⠳⠎" }, { "input": "vulva", "output": "⠧⠥⠇⠧â " }, { "input": "vulva's", "output": "⠧⠥⠇⠧â â „â Ž" }, { "input": "vulvae", "output": "⠧⠥⠇⠧â â ‘" }, { "input": "vying", "output": "⠧⠽⠌" }, { "input": "w", "output": "â °â º" }, { "input": "wackier", "output": "â ºâ â ‰â …â Šâ »" }, { "input": "wackiest", "output": "â ºâ â ‰â …â Šâ ‘â Œ" }, { "input": "wackiness", "output": "â ºâ â ‰â …â Šâ °â Ž" }, { "input": "wackiness's", "output": "â ºâ â ‰â …â Šâ °â Žâ „â Ž" }, { "input": "wacko", "output": "â ºâ â ‰â …â •" }, { "input": "wacko's", "output": "â ºâ â ‰â …â •â „â Ž" }, { "input": "wackos", "output": "â ºâ â ‰â …â •â Ž" }, { "input": "wacky", "output": "â ºâ â ‰â …â ½" }, { "input": "wad", "output": "â ºâ â ™" }, { "input": "wad's", "output": "â ºâ â ™â „â Ž" }, { "input": "wadded", "output": "â ºâ â ²â «" }, { "input": "wadding", "output": "â ºâ â ²â Œ" }, { "input": "wadding's", "output": "â ºâ â ²â Œâ „â Ž" }, { "input": "waddle", "output": "â ºâ â ²â ‡â ‘" }, { "input": "waddle's", "output": "â ºâ â ²â ‡â ‘â „â Ž" }, { "input": "waddled", "output": "â ºâ â ²â ‡â «" }, { "input": "waddles", "output": "â ºâ â ²â ‡â ‘â Ž" }, { "input": "waddling", "output": "â ºâ â ²â ‡â Œ" }, { "input": "wade", "output": "â ºâ â ™â ‘" }, { "input": "wade's", "output": "â ºâ â ™â ‘â „â Ž" }, { "input": "waded", "output": "â ºâ â ™â «" }, { "input": "wader", "output": "â ºâ â ™â »" }, { "input": "wader's", "output": "â ºâ â ™â »â „â Ž" }, { "input": "waders", "output": "â ºâ â ™â »â Ž" }, { "input": "waders's", "output": "â ºâ â ™â »â Žâ „â Ž" }, { "input": "wades", "output": "â ºâ â ™â ‘â Ž" }, { "input": "wadi", "output": "â ºâ â ™â Š" }, { "input": "wadi's", "output": "â ºâ â ™â Šâ „â Ž" }, { "input": "wading", "output": "â ºâ â ™â Œ" }, { "input": "wadis", "output": "â ºâ â ™â Šâ Ž" }, { "input": "wads", "output": "â ºâ â ™â Ž" }, { "input": "wafer", "output": "â ºâ â ‹â »" }, { "input": "wafer's", "output": "â ºâ â ‹â »â „â Ž" }, { "input": "wafers", "output": "â ºâ â ‹â »â Ž" }, { "input": "waffle", "output": "â ºâ â –⠇⠑" }, { "input": "waffle's", "output": "â ºâ â –⠇⠑⠄⠎" }, { "input": "waffled", "output": "â ºâ â –⠇⠫" }, { "input": "waffler", "output": "â ºâ â –⠇⠻" }, { "input": "waffler's", "output": "â ºâ â –⠇⠻⠄⠎" }, { "input": "wafflers", "output": "â ºâ â –⠇⠻⠎" }, { "input": "waffles", "output": "â ºâ â –⠇⠑⠎" }, { "input": "waffling", "output": "â ºâ â –⠇⠌" }, { "input": "waft", "output": "â ºâ â ‹â ž" }, { "input": "waft's", "output": "â ºâ â ‹â žâ „â Ž" }, { "input": "wafted", "output": "â ºâ â ‹â žâ «" }, { "input": "wafting", "output": "â ºâ â ‹â žâ Œ" }, { "input": "wafts", "output": "â ºâ â ‹â žâ Ž" }, { "input": "wag", "output": "â ºâ â ›" }, { "input": "wag's", "output": "â ºâ â ›â „â Ž" }, { "input": "wage", "output": "â ºâ â ›â ‘" }, { "input": "wage's", "output": "â ºâ â ›â ‘â „â Ž" }, { "input": "waged", "output": "â ºâ â ›â «" }, { "input": "wager", "output": "â ºâ â ›â »" }, { "input": "wager's", "output": "â ºâ â ›â »â „â Ž" }, { "input": "wagered", "output": "â ºâ â ›â »â «" }, { "input": "wagerer", "output": "â ºâ â ›â »â »" }, { "input": "wagerer's", "output": "â ºâ â ›â »â »â „â Ž" }, { "input": "wagerers", "output": "â ºâ â ›â »â »â Ž" }, { "input": "wagering", "output": "â ºâ â ›â »â Œ" }, { "input": "wagers", "output": "â ºâ â ›â »â Ž" }, { "input": "wages", "output": "â ºâ â ›â ‘â Ž" }, { "input": "wagged", "output": "â ºâ â ¶â «" }, { "input": "waggeries", "output": "â ºâ â ¶â »â Šâ ‘â Ž" }, { "input": "waggery", "output": "â ºâ â ¶â »â ½" }, { "input": "waggery's", "output": "â ºâ â ¶â »â ½â „â Ž" }, { "input": "wagging", "output": "â ºâ â ¶â Œ" }, { "input": "waggish", "output": "â ºâ â ¶â Šâ ©" }, { "input": "waggishly", "output": "â ºâ â ¶â Šâ ©â ‡â ½" }, { "input": "waggishness", "output": "â ºâ â ¶â Šâ ©â °â Ž" }, { "input": "waggishness's", "output": "â ºâ â ¶â Šâ ©â °â Žâ „â Ž" }, { "input": "waggle", "output": "â ºâ â ¶â ‡â ‘" }, { "input": "waggle's", "output": "â ºâ â ¶â ‡â ‘â „â Ž" }, { "input": "waggled", "output": "â ºâ â ¶â ‡â «" }, { "input": "waggles", "output": "â ºâ â ¶â ‡â ‘â Ž" }, { "input": "waggling", "output": "â ºâ â ¶â ‡â Œ" }, { "input": "waging", "output": "â ºâ â ›â Œ" }, { "input": "wagon", "output": "â ºâ â ›â •â " }, { "input": "wagon's", "output": "â ºâ â ›â •â â „â Ž" }, { "input": "wagoner", "output": "â ºâ â ›â •â â »" }, { "input": "wagoner's", "output": "â ºâ â ›â •â â »â „â Ž" }, { "input": "wagoners", "output": "â ºâ â ›â •â â »â Ž" }, { "input": "wagons", "output": "â ºâ â ›â •â â Ž" }, { "input": "wags", "output": "â ºâ â ›â Ž" }, { "input": "waif", "output": "â ºâ â Šâ ‹" }, { "input": "waif's", "output": "â ºâ â Šâ ‹â „â Ž" }, { "input": "waifs", "output": "â ºâ â Šâ ‹â Ž" }, { "input": "wail", "output": "â ºâ â Šâ ‡" }, { "input": "wail's", "output": "â ºâ â Šâ ‡â „â Ž" }, { "input": "wailed", "output": "â ºâ â Šâ ‡â «" }, { "input": "wailer", "output": "â ºâ â Šâ ‡â »" }, { "input": "wailer's", "output": "â ºâ â Šâ ‡â »â „â Ž" }, { "input": "wailers", "output": "â ºâ â Šâ ‡â »â Ž" }, { "input": "wailing", "output": "â ºâ â Šâ ‡â Œ" }, { "input": "wailing's", "output": "â ºâ â Šâ ‡â Œâ „â Ž" }, { "input": "wails", "output": "â ºâ â Šâ ‡â Ž" }, { "input": "wain", "output": "â ºâ â ”" }, { "input": "wain's", "output": "â ºâ â ”â „â Ž" }, { "input": "wains", "output": "â ºâ â ”â Ž" }, { "input": "wainscot", "output": "â ºâ â ”⠎⠉⠕⠞" }, { "input": "wainscot's", "output": "â ºâ â ”⠎⠉⠕⠞⠄⠎" }, { "input": "wainscoted", "output": "â ºâ â ”⠎⠉⠕⠞⠫" }, { "input": "wainscoting", "output": "â ºâ â ”⠎⠉⠕⠞⠌" }, { "input": "wainscoting's", "output": "â ºâ â ”⠎⠉⠕⠞⠌⠄⠎" }, { "input": "wainscotings", "output": "â ºâ â ”⠎⠉⠕⠞⠌⠎" }, { "input": "wainscots", "output": "â ºâ â ”⠎⠉⠕⠞⠎" }, { "input": "wainwright", "output": "â ºâ â ”â ºâ â —" }, { "input": "wainwright's", "output": "â ºâ â ”â ºâ â —â „â Ž" }, { "input": "wainwrights", "output": "â ºâ â ”â ºâ â —â Ž" }, { "input": "waist", "output": "â ºâ â Šâ Œ" }, { "input": "waist's", "output": "â ºâ â Šâ Œâ „â Ž" }, { "input": "waistband", "output": "â ºâ â Šâ Œâ ƒâ ¯" }, { "input": "waistband's", "output": "â ºâ â Šâ Œâ ƒâ ¯â „â Ž" }, { "input": "waistbands", "output": "â ºâ â Šâ Œâ ƒâ ¯â Ž" }, { "input": "waistcoat", "output": "â ºâ â Šâ Œâ ‰â •â â ž" }, { "input": "waistcoat's", "output": "â ºâ â Šâ Œâ ‰â •â â žâ „â Ž" }, { "input": "waistcoats", "output": "â ºâ â Šâ Œâ ‰â •â â žâ Ž" }, { "input": "waistline", "output": "â ºâ â Šâ Œâ ‡â ”â ‘" }, { "input": "waistline's", "output": "â ºâ â Šâ Œâ ‡â ”â ‘â „â Ž" }, { "input": "waistlines", "output": "â ºâ â Šâ Œâ ‡â ”â ‘â Ž" }, { "input": "waists", "output": "â ºâ â Šâ Œâ Ž" }, { "input": "wait", "output": "â ºâ â Šâ ž" }, { "input": "wait's", "output": "â ºâ â Šâ žâ „â Ž" }, { "input": "waited", "output": "â ºâ â Šâ žâ «" }, { "input": "waiter", "output": "â ºâ â Šâ žâ »" }, { "input": "waiter's", "output": "â ºâ â Šâ žâ »â „â Ž" }, { "input": "waiters", "output": "â ºâ â Šâ žâ »â Ž" }, { "input": "waiting", "output": "â ºâ â Šâ žâ Œ" }, { "input": "waiting's", "output": "â ºâ â Šâ žâ Œâ „â Ž" }, { "input": "waitperson", "output": "â ºâ â Šâ žâ â »â Žâ •â " }, { "input": "waitperson's", "output": "â ºâ â Šâ žâ â »â Žâ •â â „â Ž" }, { "input": "waitpersons", "output": "â ºâ â Šâ žâ â »â Žâ •â â Ž" }, { "input": "waitress", "output": "â ºâ â Šâ žâ —â ‘â Žâ Ž" }, { "input": "waitress's", "output": "â ºâ â Šâ žâ —â ‘â Žâ Žâ „â Ž" }, { "input": "waitresses", "output": "â ºâ â Šâ žâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "waits", "output": "â ºâ â Šâ žâ Ž" }, { "input": "waitstaff", "output": "â ºâ â Šâ žâ Œâ â ‹â ‹" }, { "input": "waitstaff's", "output": "â ºâ â Šâ žâ Œâ â ‹â ‹â „â Ž" }, { "input": "waive", "output": "â ºâ â Šâ §â ‘" }, { "input": "waived", "output": "â ºâ â Šâ §â «" }, { "input": "waiver", "output": "â ºâ â Šâ §â »" }, { "input": "waiver's", "output": "â ºâ â Šâ §â »â „â Ž" }, { "input": "waivers", "output": "â ºâ â Šâ §â »â Ž" }, { "input": "waives", "output": "â ºâ â Šâ §â ‘â Ž" }, { "input": "waiving", "output": "â ºâ â Šâ §â Œ" }, { "input": "wake", "output": "â ºâ â …â ‘" }, { "input": "wake's", "output": "â ºâ â …â ‘â „â Ž" }, { "input": "waked", "output": "â ºâ â …â «" }, { "input": "wakeful", "output": "â ºâ â …â ‘â °â ‡" }, { "input": "wakefully", "output": "â ºâ â …⠑⠰⠇⠇⠽" }, { "input": "wakefulness", "output": "â ºâ â …⠑⠰⠇⠰⠎" }, { "input": "wakefulness's", "output": "â ºâ â …⠑⠰⠇⠰⠎⠄⠎" }, { "input": "waken", "output": "â ºâ â …â ¢" }, { "input": "wakened", "output": "â ºâ â …⠢⠫" }, { "input": "wakening", "output": "â ºâ â …⠢⠌" }, { "input": "wakens", "output": "â ºâ â …⠢⠎" }, { "input": "wakes", "output": "â ºâ â …â ‘â Ž" }, { "input": "waking", "output": "â ºâ â …â Œ" }, { "input": "wakings", "output": "â ºâ â …⠌⠎" }, { "input": "wale", "output": "â ºâ â ‡â ‘" }, { "input": "wale's", "output": "â ºâ â ‡â ‘â „â Ž" }, { "input": "waled", "output": "â ºâ â ‡â «" }, { "input": "wales", "output": "â ºâ â ‡â ‘â Ž" }, { "input": "waling", "output": "â ºâ â ‡â Œ" }, { "input": "walk", "output": "â ºâ â ‡â …" }, { "input": "walk's", "output": "â ºâ â ‡â …â „â Ž" }, { "input": "walked", "output": "â ºâ â ‡â …â «" }, { "input": "walker", "output": "â ºâ â ‡â …â »" }, { "input": "walker's", "output": "â ºâ â ‡â …⠻⠄⠎" }, { "input": "walkers", "output": "â ºâ â ‡â …⠻⠎" }, { "input": "walking", "output": "â ºâ â ‡â …â Œ" }, { "input": "walking's", "output": "â ºâ â ‡â …⠌⠄⠎" }, { "input": "walkout", "output": "â ºâ â ‡â …⠳⠞" }, { "input": "walkout's", "output": "â ºâ â ‡â …⠳⠞⠄⠎" }, { "input": "walkouts", "output": "â ºâ â ‡â …⠳⠞⠎" }, { "input": "walks", "output": "â ºâ â ‡â …â Ž" }, { "input": "walkway", "output": "â ºâ â ‡â …â ºâ â ½" }, { "input": "walkway's", "output": "â ºâ â ‡â …â ºâ â ½â „â Ž" }, { "input": "walkways", "output": "â ºâ â ‡â …â ºâ â ½â Ž" }, { "input": "wall", "output": "â ºâ â ‡â ‡" }, { "input": "wall's", "output": "â ºâ â ‡â ‡â „â Ž" }, { "input": "wallabies", "output": "â ºâ â ‡â ‡â â ƒâ Šâ ‘â Ž" }, { "input": "wallaby", "output": "â ºâ â ‡â ‡â â ƒâ ½" }, { "input": "wallaby's", "output": "â ºâ â ‡â ‡â â ƒâ ½â „â Ž" }, { "input": "wallboard", "output": "â ºâ â ‡â ‡â ƒâ •⠜⠙" }, { "input": "wallboard's", "output": "â ºâ â ‡â ‡â ƒâ •⠜⠙⠄⠎" }, { "input": "walled", "output": "â ºâ â ‡â ‡â «" }, { "input": "wallet", "output": "â ºâ â ‡â ‡â ‘â ž" }, { "input": "wallet's", "output": "â ºâ â ‡â ‡â ‘â žâ „â Ž" }, { "input": "wallets", "output": "â ºâ â ‡â ‡â ‘â žâ Ž" }, { "input": "walleye", "output": "â ºâ â ‡â ‡â ‘⠽⠑" }, { "input": "walleye's", "output": "â ºâ â ‡â ‡â ‘⠽⠑⠄⠎" }, { "input": "walleyed", "output": "â ºâ â ‡â ‡â ‘⠽⠫" }, { "input": "walleyes", "output": "â ºâ â ‡â ‡â ‘⠽⠑⠎" }, { "input": "wallflower", "output": "â ºâ â ‡â ‡â ‹â ‡â ªâ »" }, { "input": "wallflower's", "output": "â ºâ â ‡â ‡â ‹â ‡â ªâ »â „â Ž" }, { "input": "wallflowers", "output": "â ºâ â ‡â ‡â ‹â ‡â ªâ »â Ž" }, { "input": "walling", "output": "â ºâ â ‡â ‡â Œ" }, { "input": "wallop", "output": "â ºâ â ‡â ‡â •â " }, { "input": "wallop's", "output": "â ºâ â ‡â ‡â •â â „â Ž" }, { "input": "walloped", "output": "â ºâ â ‡â ‡â •â â «" }, { "input": "walloping", "output": "â ºâ â ‡â ‡â •â â Œ" }, { "input": "walloping's", "output": "â ºâ â ‡â ‡â •â â Œâ „â Ž" }, { "input": "wallopings", "output": "â ºâ â ‡â ‡â •â â Œâ Ž" }, { "input": "wallops", "output": "â ºâ â ‡â ‡â •â â Ž" }, { "input": "wallow", "output": "â ºâ â ‡â ‡â ª" }, { "input": "wallow's", "output": "â ºâ â ‡â ‡â ªâ „â Ž" }, { "input": "wallowed", "output": "â ºâ â ‡â ‡â ªâ «" }, { "input": "wallowing", "output": "â ºâ â ‡â ‡â ªâ Œ" }, { "input": "wallows", "output": "â ºâ â ‡â ‡â ªâ Ž" }, { "input": "wallpaper", "output": "â ºâ â ‡â ‡â â â â »" }, { "input": "wallpaper's", "output": "â ºâ â ‡â ‡â â â â »â „â Ž" }, { "input": "wallpapered", "output": "â ºâ â ‡â ‡â â â â »â «" }, { "input": "wallpapering", "output": "â ºâ â ‡â ‡â â â â »â Œ" }, { "input": "wallpapers", "output": "â ºâ â ‡â ‡â â â â »â Ž" }, { "input": "walls", "output": "â ºâ â ‡â ‡â Ž" }, { "input": "walnut", "output": "â ºâ â ‡â â ¥â ž" }, { "input": "walnut's", "output": "â ºâ â ‡â â ¥â žâ „â Ž" }, { "input": "walnuts", "output": "â ºâ â ‡â â ¥â žâ Ž" }, { "input": "walrus", "output": "â ºâ â ‡â —⠥⠎" }, { "input": "walrus's", "output": "â ºâ â ‡â —⠥⠎⠄⠎" }, { "input": "walruses", "output": "â ºâ â ‡â —⠥⠎⠑⠎" }, { "input": "waltz", "output": "â ºâ â ‡â žâ µ" }, { "input": "waltz's", "output": "â ºâ â ‡â žâ µâ „â Ž" }, { "input": "waltzed", "output": "â ºâ â ‡â žâ µâ «" }, { "input": "waltzer", "output": "â ºâ â ‡â žâ µâ »" }, { "input": "waltzer's", "output": "â ºâ â ‡â žâ µâ »â „â Ž" }, { "input": "waltzers", "output": "â ºâ â ‡â žâ µâ »â Ž" }, { "input": "waltzes", "output": "â ºâ â ‡â žâ µâ ‘â Ž" }, { "input": "waltzing", "output": "â ºâ â ‡â žâ µâ Œ" }, { "input": "wampum", "output": "â ºâ â â â ¥â " }, { "input": "wampum's", "output": "â ºâ â â â ¥â â „â Ž" }, { "input": "wan", "output": "â ºâ â " }, { "input": "wand", "output": "⠺⠯" }, { "input": "wand's", "output": "⠺⠯⠄⠎" }, { "input": "wander", "output": "⠺⠯⠻" }, { "input": "wandered", "output": "⠺⠯⠻⠫" }, { "input": "wanderer", "output": "⠺⠯⠻⠻" }, { "input": "wanderer's", "output": "⠺⠯⠻⠻⠄⠎" }, { "input": "wanderers", "output": "⠺⠯⠻⠻⠎" }, { "input": "wandering", "output": "⠺⠯⠻⠌" }, { "input": "wanderings's", "output": "⠺⠯⠻⠌⠎⠄⠎" }, { "input": "wanderlust", "output": "⠺⠯⠻⠇⠥⠌" }, { "input": "wanderlust's", "output": "⠺⠯⠻⠇⠥⠌⠄⠎" }, { "input": "wanderlusts", "output": "⠺⠯⠻⠇⠥⠌⠎" }, { "input": "wanders", "output": "⠺⠯⠻⠎" }, { "input": "wands", "output": "⠺⠯⠎" }, { "input": "wane", "output": "â ºâ â â ‘" }, { "input": "wane's", "output": "â ºâ â â ‘â „â Ž" }, { "input": "waned", "output": "â ºâ â â «" }, { "input": "wanes", "output": "â ºâ â â ‘â Ž" }, { "input": "wangle", "output": "â ºâ â â ›â ‡â ‘" }, { "input": "wangle's", "output": "â ºâ â â ›â ‡â ‘â „â Ž" }, { "input": "wangled", "output": "â ºâ â â ›â ‡â «" }, { "input": "wangler", "output": "â ºâ â â ›â ‡â »" }, { "input": "wangler's", "output": "â ºâ â â ›â ‡â »â „â Ž" }, { "input": "wanglers", "output": "â ºâ â â ›â ‡â »â Ž" }, { "input": "wangles", "output": "â ºâ â â ›â ‡â ‘â Ž" }, { "input": "wangling", "output": "â ºâ â â ›â ‡â Œ" }, { "input": "waning", "output": "â ºâ â â Œ" }, { "input": "wanly", "output": "â ºâ â â ‡â ½" }, { "input": "wanna", "output": "â ºâ â â â " }, { "input": "wannabe", "output": "â ºâ â â â â ƒâ ‘" }, { "input": "wannabe's", "output": "â ºâ â â â â ƒâ ‘â „â Ž" }, { "input": "wannabes", "output": "â ºâ â â â â ƒâ ‘â Ž" }, { "input": "wanner", "output": "â ºâ â â â »" }, { "input": "wanness", "output": "â ºâ â â °â Ž" }, { "input": "wanness's", "output": "â ºâ â â °â Žâ „â Ž" }, { "input": "wannest", "output": "â ºâ â â â ‘â Œ" }, { "input": "want", "output": "â ºâ â â ž" }, { "input": "want's", "output": "â ºâ â â žâ „â Ž" }, { "input": "wanted", "output": "â ºâ â â žâ «" }, { "input": "wanting", "output": "â ºâ â â žâ Œ" }, { "input": "wanton", "output": "â ºâ â â žâ •â " }, { "input": "wanton's", "output": "â ºâ â â žâ •â â „â Ž" }, { "input": "wantoned", "output": "â ºâ â â žâ •â â «" }, { "input": "wantoning", "output": "â ºâ â â žâ •â â Œ" }, { "input": "wantonly", "output": "â ºâ â â žâ •â â ‡â ½" }, { "input": "wantonness", "output": "â ºâ â â žâ •â â °â Ž" }, { "input": "wantonness's", "output": "â ºâ â â žâ •â â °â Žâ „â Ž" }, { "input": "wantons", "output": "â ºâ â â žâ •â â Ž" }, { "input": "wants", "output": "â ºâ â â žâ Ž" }, { "input": "wapiti", "output": "â ºâ â â Šâ žâ Š" }, { "input": "wapiti's", "output": "â ºâ â â Šâ žâ Šâ „â Ž" }, { "input": "wapitis", "output": "â ºâ â â Šâ žâ Šâ Ž" }, { "input": "war", "output": "⠺⠜" }, { "input": "war's", "output": "⠺⠜⠄⠎" }, { "input": "warble", "output": "⠺⠜⠼" }, { "input": "warble's", "output": "⠺⠜⠼⠄⠎" }, { "input": "warbled", "output": "⠺⠜⠼⠙" }, { "input": "warbler", "output": "⠺⠜⠼⠗" }, { "input": "warbler's", "output": "⠺⠜⠼⠗⠄⠎" }, { "input": "warblers", "output": "⠺⠜⠼⠗⠎" }, { "input": "warbles", "output": "⠺⠜⠼⠎" }, { "input": "warbling", "output": "⠺⠜⠃⠇⠌" }, { "input": "warbonnet", "output": "⠺⠜⠃⠕â â â ‘â ž" }, { "input": "warbonnet's", "output": "⠺⠜⠃⠕â â â ‘â žâ „â Ž" }, { "input": "warbonnets", "output": "⠺⠜⠃⠕â â â ‘â žâ Ž" }, { "input": "ward", "output": "⠺⠜⠙" }, { "input": "ward's", "output": "⠺⠜⠙⠄⠎" }, { "input": "warded", "output": "⠺⠜⠙⠫" }, { "input": "warden", "output": "⠺⠜⠙⠢" }, { "input": "warden's", "output": "⠺⠜⠙⠢⠄⠎" }, { "input": "wardens", "output": "⠺⠜⠙⠢⠎" }, { "input": "warder", "output": "⠺⠜⠙⠻" }, { "input": "warder's", "output": "⠺⠜⠙⠻⠄⠎" }, { "input": "warders", "output": "⠺⠜⠙⠻⠎" }, { "input": "warding", "output": "⠺⠜⠙⠌" }, { "input": "wardrobe", "output": "⠺⠜⠙⠗⠕⠃⠑" }, { "input": "wardrobe's", "output": "⠺⠜⠙⠗⠕⠃⠑⠄⠎" }, { "input": "wardrobes", "output": "⠺⠜⠙⠗⠕⠃⠑⠎" }, { "input": "wardroom", "output": "⠺⠜⠙⠗⠕⠕â " }, { "input": "wardroom's", "output": "⠺⠜⠙⠗⠕⠕â â „â Ž" }, { "input": "wardrooms", "output": "⠺⠜⠙⠗⠕⠕â â Ž" }, { "input": "wards", "output": "⠺⠜⠙⠎" }, { "input": "ware", "output": "⠺⠜⠑" }, { "input": "ware's", "output": "⠺⠜⠑⠄⠎" }, { "input": "warehouse", "output": "⠺⠜⠑⠓⠳⠎⠑" }, { "input": "warehouse's", "output": "⠺⠜⠑⠓⠳⠎⠑⠄⠎" }, { "input": "warehoused", "output": "⠺⠜⠑⠓⠳⠎⠫" }, { "input": "warehouses", "output": "⠺⠜⠑⠓⠳⠎⠑⠎" }, { "input": "warehousing", "output": "⠺⠜⠑⠓⠳⠎⠌" }, { "input": "wares", "output": "⠺⠜⠑⠎" }, { "input": "warfare", "output": "⠺⠜⠋⠜⠑" }, { "input": "warfare's", "output": "⠺⠜⠋⠜⠑⠄⠎" }, { "input": "warhead", "output": "⠺⠜⠓⠂⠙" }, { "input": "warhead's", "output": "⠺⠜⠓⠂⠙⠄⠎" }, { "input": "warheads", "output": "⠺⠜⠓⠂⠙⠎" }, { "input": "warhorse", "output": "⠺⠜⠓⠕⠗⠎⠑" }, { "input": "warhorse's", "output": "⠺⠜⠓⠕⠗⠎⠑⠄⠎" }, { "input": "warhorses", "output": "⠺⠜⠓⠕⠗⠎⠑⠎" }, { "input": "warier", "output": "⠺⠜⠊⠻" }, { "input": "wariest", "output": "⠺⠜⠊⠑⠌" }, { "input": "warily", "output": "⠺⠜⠊⠇⠽" }, { "input": "wariness", "output": "⠺⠜⠊⠰⠎" }, { "input": "wariness's", "output": "⠺⠜⠊⠰⠎⠄⠎" }, { "input": "warlike", "output": "⠺⠜⠇⠊⠅⠑" }, { "input": "warlock", "output": "⠺⠜⠇⠕⠉⠅" }, { "input": "warlock's", "output": "⠺⠜⠇⠕⠉⠅⠄⠎" }, { "input": "warlocks", "output": "⠺⠜⠇⠕⠉⠅⠎" }, { "input": "warlord", "output": "⠺⠜â â ‡" }, { "input": "warlord's", "output": "⠺⠜â â ‡â „â Ž" }, { "input": "warlords", "output": "⠺⠜â â ‡â Ž" }, { "input": "warm", "output": "⠺⠜â " }, { "input": "warmblooded", "output": "⠺⠜â â ƒâ ‡â •⠕⠙⠫" }, { "input": "warmed", "output": "⠺⠜â â «" }, { "input": "warmer", "output": "⠺⠜â â »" }, { "input": "warmer's", "output": "⠺⠜â â »â „â Ž" }, { "input": "warmers", "output": "⠺⠜â â »â Ž" }, { "input": "warmest", "output": "⠺⠜â â ‘â Œ" }, { "input": "warmhearted", "output": "⠺⠜â â “⠑⠜⠞⠫" }, { "input": "warmheartedness", "output": "⠺⠜â â “⠑⠜⠞⠫⠰⠎" }, { "input": "warmheartedness's", "output": "⠺⠜â â “⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "warming", "output": "⠺⠜â â Œ" }, { "input": "warmish", "output": "⠺⠜â â Šâ ©" }, { "input": "warmly", "output": "⠺⠜â â ‡â ½" }, { "input": "warmness", "output": "⠺⠜â â °â Ž" }, { "input": "warmness's", "output": "⠺⠜â â °â Žâ „â Ž" }, { "input": "warmonger", "output": "⠺⠜â â °â ›â »" }, { "input": "warmonger's", "output": "⠺⠜â â °â ›â »â „â Ž" }, { "input": "warmongering", "output": "⠺⠜â â °â ›â »â Œ" }, { "input": "warmongering's", "output": "⠺⠜â â °â ›â »â Œâ „â Ž" }, { "input": "warmongers", "output": "⠺⠜â â °â ›â »â Ž" }, { "input": "warms", "output": "⠺⠜â â Ž" }, { "input": "warmth", "output": "⠺⠜â â ¹" }, { "input": "warmth's", "output": "⠺⠜â â ¹â „â Ž" }, { "input": "warn", "output": "⠺⠜â " }, { "input": "warned", "output": "⠺⠜â â «" }, { "input": "warning", "output": "⠺⠜â â Œ" }, { "input": "warning's", "output": "⠺⠜â â Œâ „â Ž" }, { "input": "warnings", "output": "⠺⠜â â Œâ Ž" }, { "input": "warns", "output": "⠺⠜â â Ž" }, { "input": "warp", "output": "⠺⠜â " }, { "input": "warp's", "output": "⠺⠜â â „â Ž" }, { "input": "warpath", "output": "⠺⠜â â â ¹" }, { "input": "warpath's", "output": "⠺⠜â â â ¹â „â Ž" }, { "input": "warpaths", "output": "⠺⠜â â â ¹â Ž" }, { "input": "warped", "output": "⠺⠜â â «" }, { "input": "warping", "output": "⠺⠜â â Œ" }, { "input": "warps", "output": "⠺⠜â â Ž" }, { "input": "warrant", "output": "⠺⠜⠗â â â ž" }, { "input": "warrant's", "output": "⠺⠜⠗â â â žâ „â Ž" }, { "input": "warranted", "output": "⠺⠜⠗â â â žâ «" }, { "input": "warrantied", "output": "⠺⠜⠗â â â žâ Šâ «" }, { "input": "warranties", "output": "⠺⠜⠗â â â žâ Šâ ‘â Ž" }, { "input": "warranting", "output": "⠺⠜⠗â â â žâ Œ" }, { "input": "warrants", "output": "⠺⠜⠗â â â žâ Ž" }, { "input": "warranty", "output": "⠺⠜⠗â â â žâ ½" }, { "input": "warranty's", "output": "⠺⠜⠗â â â žâ ½â „â Ž" }, { "input": "warrantying", "output": "⠺⠜⠗â â â žâ ½â Œ" }, { "input": "warred", "output": "⠺⠜⠗⠫" }, { "input": "warren", "output": "⠺⠜⠗⠢" }, { "input": "warren's", "output": "⠺⠜⠗⠢⠄⠎" }, { "input": "warrens", "output": "⠺⠜⠗⠢⠎" }, { "input": "warring", "output": "⠺⠜⠗⠌" }, { "input": "warrior", "output": "⠺⠜⠗⠊⠕⠗" }, { "input": "warrior's", "output": "⠺⠜⠗⠊⠕⠗⠄⠎" }, { "input": "warriors", "output": "⠺⠜⠗⠊⠕⠗⠎" }, { "input": "wars", "output": "⠺⠜⠎" }, { "input": "warship", "output": "⠺⠜⠩⠊â " }, { "input": "warship's", "output": "⠺⠜⠩⠊â â „â Ž" }, { "input": "warships", "output": "⠺⠜⠩⠊â â Ž" }, { "input": "wart", "output": "⠺⠜⠞" }, { "input": "wart's", "output": "⠺⠜⠞⠄⠎" }, { "input": "warthog", "output": "⠺⠜⠞⠓⠕⠛" }, { "input": "warthog's", "output": "⠺⠜⠞⠓⠕⠛⠄⠎" }, { "input": "warthogs", "output": "⠺⠜⠞⠓⠕⠛⠎" }, { "input": "wartier", "output": "⠺⠜⠞⠊⠻" }, { "input": "wartiest", "output": "⠺⠜⠞⠊⠑⠌" }, { "input": "wartime", "output": "⠺⠜â â ž" }, { "input": "wartime's", "output": "⠺⠜â â žâ „â Ž" }, { "input": "warts", "output": "⠺⠜⠞⠎" }, { "input": "warty", "output": "⠺⠜⠞⠽" }, { "input": "wary", "output": "⠺⠜⠽" }, { "input": "was", "output": "â ´" }, { "input": "wash", "output": "â ºâ â ©" }, { "input": "wash's", "output": "â ºâ â ©â „â Ž" }, { "input": "washable", "output": "â ºâ â ©â â ¼" }, { "input": "washable's", "output": "â ºâ â ©â â ¼â „â Ž" }, { "input": "washables", "output": "â ºâ â ©â â ¼â Ž" }, { "input": "washbasin", "output": "â ºâ â ©â ƒâ â Žâ ”" }, { "input": "washbasin's", "output": "â ºâ â ©â ƒâ â Žâ ”â „â Ž" }, { "input": "washbasins", "output": "â ºâ â ©â ƒâ â Žâ ”â Ž" }, { "input": "washboard", "output": "â ºâ â ©â ƒâ •⠜⠙" }, { "input": "washboard's", "output": "â ºâ â ©â ƒâ •⠜⠙⠄⠎" }, { "input": "washboards", "output": "â ºâ â ©â ƒâ •⠜⠙⠎" }, { "input": "washbowl", "output": "â ºâ â ©â ƒâ ªâ ‡" }, { "input": "washbowl's", "output": "â ºâ â ©â ƒâ ªâ ‡â „â Ž" }, { "input": "washbowls", "output": "â ºâ â ©â ƒâ ªâ ‡â Ž" }, { "input": "washcloth", "output": "â ºâ â ©â ‰â ‡â •â ¹" }, { "input": "washcloth's", "output": "â ºâ â ©â ‰â ‡â •⠹⠄⠎" }, { "input": "washcloths", "output": "â ºâ â ©â ‰â ‡â •⠹⠎" }, { "input": "washed", "output": "â ºâ â ©â «" }, { "input": "washer", "output": "â ºâ â ©â »" }, { "input": "washer's", "output": "â ºâ â ©â »â „â Ž" }, { "input": "washers", "output": "â ºâ â ©â »â Ž" }, { "input": "washerwoman", "output": "â ºâ â ©â »â ºâ •â â â " }, { "input": "washerwoman's", "output": "â ºâ â ©â »â ºâ •â â â â „â Ž" }, { "input": "washerwomen", "output": "â ºâ â ©â »â ºâ •â â ¢" }, { "input": "washes", "output": "â ºâ â ©â ‘â Ž" }, { "input": "washier", "output": "â ºâ â ©â Šâ »" }, { "input": "washiest", "output": "â ºâ â ©â Šâ ‘â Œ" }, { "input": "washing", "output": "â ºâ â ©â Œ" }, { "input": "washing's", "output": "â ºâ â ©â Œâ „â Ž" }, { "input": "washout", "output": "â ºâ â ©â ³â ž" }, { "input": "washout's", "output": "â ºâ â ©â ³â žâ „â Ž" }, { "input": "washouts", "output": "â ºâ â ©â ³â žâ Ž" }, { "input": "washrag", "output": "â ºâ â ©â —â â ›" }, { "input": "washrag's", "output": "â ºâ â ©â —â â ›â „â Ž" }, { "input": "washrags", "output": "â ºâ â ©â —â â ›â Ž" }, { "input": "washroom", "output": "â ºâ â ©â —â •â •â " }, { "input": "washroom's", "output": "â ºâ â ©â —â •â •â â „â Ž" }, { "input": "washrooms", "output": "â ºâ â ©â —â •â •â â Ž" }, { "input": "washstand", "output": "â ºâ â ©â Œâ ¯" }, { "input": "washstand's", "output": "â ºâ â ©â Œâ ¯â „â Ž" }, { "input": "washstands", "output": "â ºâ â ©â Œâ ¯â Ž" }, { "input": "washtub", "output": "â ºâ â ©â žâ ¥â ƒ" }, { "input": "washtub's", "output": "â ºâ â ©â žâ ¥â ƒâ „â Ž" }, { "input": "washtubs", "output": "â ºâ â ©â žâ ¥â ƒâ Ž" }, { "input": "washy", "output": "â ºâ â ©â ½" }, { "input": "wasp", "output": "â ºâ â Žâ " }, { "input": "wasp's", "output": "â ºâ â Žâ â „â Ž" }, { "input": "waspish", "output": "â ºâ â Žâ â Šâ ©" }, { "input": "waspishness", "output": "â ºâ â Žâ â Šâ ©â °â Ž" }, { "input": "waspishness's", "output": "â ºâ â Žâ â Šâ ©â °â Žâ „â Ž" }, { "input": "wasps", "output": "â ºâ â Žâ â Ž" }, { "input": "wassail", "output": "â ºâ â Žâ Žâ â Šâ ‡" }, { "input": "wassail's", "output": "â ºâ â Žâ Žâ â Šâ ‡â „â Ž" }, { "input": "wassailed", "output": "â ºâ â Žâ Žâ â Šâ ‡â «" }, { "input": "wassailing", "output": "â ºâ â Žâ Žâ â Šâ ‡â Œ" }, { "input": "wassails", "output": "â ºâ â Žâ Žâ â Šâ ‡â Ž" }, { "input": "wast", "output": "â ºâ â Œ" }, { "input": "wastage", "output": "â ºâ â Œâ â ›â ‘" }, { "input": "wastage's", "output": "â ºâ â Œâ â ›â ‘â „â Ž" }, { "input": "waste", "output": "â ºâ â Œâ ‘" }, { "input": "waste's", "output": "â ºâ â Œâ ‘â „â Ž" }, { "input": "wastebasket", "output": "â ºâ â Œâ ‘â ƒâ â Žâ …â ‘â ž" }, { "input": "wastebasket's", "output": "â ºâ â Œâ ‘â ƒâ â Žâ …â ‘â žâ „â Ž" }, { "input": "wastebaskets", "output": "â ºâ â Œâ ‘â ƒâ â Žâ …â ‘â žâ Ž" }, { "input": "wasted", "output": "â ºâ â Œâ «" }, { "input": "wasteful", "output": "â ºâ â Œâ ‘â °â ‡" }, { "input": "wastefully", "output": "â ºâ â Œâ ‘⠰⠇⠇⠽" }, { "input": "wastefulness", "output": "â ºâ â Œâ ‘⠰⠇⠰⠎" }, { "input": "wastefulness's", "output": "â ºâ â Œâ ‘⠰⠇⠰⠎⠄⠎" }, { "input": "wasteland", "output": "â ºâ â Œâ ‘⠇⠯" }, { "input": "wasteland's", "output": "â ºâ â Œâ ‘⠇⠯⠄⠎" }, { "input": "wastelands", "output": "â ºâ â Œâ ‘⠇⠯⠎" }, { "input": "wastepaper", "output": "â ºâ â Œâ ‘â â â â »" }, { "input": "wastepaper's", "output": "â ºâ â Œâ ‘â â â â »â „â Ž" }, { "input": "waster", "output": "â ºâ â Œâ »" }, { "input": "waster's", "output": "â ºâ â Œâ »â „â Ž" }, { "input": "wasters", "output": "â ºâ â Œâ »â Ž" }, { "input": "wastes", "output": "â ºâ â Œâ ‘â Ž" }, { "input": "wasting", "output": "â ºâ â Œâ Œ" }, { "input": "wastrel", "output": "â ºâ â Œâ —â ‘â ‡" }, { "input": "wastrel's", "output": "â ºâ â Œâ —⠑⠇⠄⠎" }, { "input": "wastrels", "output": "â ºâ â Œâ —⠑⠇⠎" }, { "input": "watch", "output": "â ºâ â žâ ¡" }, { "input": "watch's", "output": "â ºâ â žâ ¡â „â Ž" }, { "input": "watchband", "output": "â ºâ â žâ ¡â ƒâ ¯" }, { "input": "watchband's", "output": "â ºâ â žâ ¡â ƒâ ¯â „â Ž" }, { "input": "watchbands", "output": "â ºâ â žâ ¡â ƒâ ¯â Ž" }, { "input": "watchdog", "output": "â ºâ â žâ ¡â ™â •â ›" }, { "input": "watchdog's", "output": "â ºâ â žâ ¡â ™â •⠛⠄⠎" }, { "input": "watchdogs", "output": "â ºâ â žâ ¡â ™â •⠛⠎" }, { "input": "watched", "output": "â ºâ â žâ ¡â «" }, { "input": "watcher", "output": "â ºâ â žâ ¡â »" }, { "input": "watcher's", "output": "â ºâ â žâ ¡â »â „â Ž" }, { "input": "watchers", "output": "â ºâ â žâ ¡â »â Ž" }, { "input": "watches", "output": "â ºâ â žâ ¡â ‘â Ž" }, { "input": "watchful", "output": "â ºâ â žâ ¡â °â ‡" }, { "input": "watchfully", "output": "â ºâ â žâ ¡â °â ‡â ‡â ½" }, { "input": "watchfulness", "output": "â ºâ â žâ ¡â °â ‡â °â Ž" }, { "input": "watchfulness's", "output": "â ºâ â žâ ¡â °â ‡â °â Žâ „â Ž" }, { "input": "watching", "output": "â ºâ â žâ ¡â Œ" }, { "input": "watchmaker", "output": "â ºâ â žâ ¡â â â …â »" }, { "input": "watchmaker's", "output": "â ºâ â žâ ¡â â â …⠻⠄⠎" }, { "input": "watchmakers", "output": "â ºâ â žâ ¡â â â …⠻⠎" }, { "input": "watchmaking", "output": "â ºâ â žâ ¡â â â …â Œ" }, { "input": "watchmaking's", "output": "â ºâ â žâ ¡â â â …⠌⠄⠎" }, { "input": "watchman", "output": "â ºâ â žâ ¡â â â " }, { "input": "watchman's", "output": "â ºâ â žâ ¡â â â â „â Ž" }, { "input": "watchmen", "output": "â ºâ â žâ ¡â â ¢" }, { "input": "watchtower", "output": "â ºâ â žâ ¡â žâ ªâ »" }, { "input": "watchtower's", "output": "â ºâ â žâ ¡â žâ ªâ »â „â Ž" }, { "input": "watchtowers", "output": "â ºâ â žâ ¡â žâ ªâ »â Ž" }, { "input": "watchword", "output": "â ºâ â žâ ¡â ˜â º" }, { "input": "watchword's", "output": "â ºâ â žâ ¡â ˜â ºâ „â Ž" }, { "input": "watchwords", "output": "â ºâ â žâ ¡â ˜â ºâ Ž" }, { "input": "water", "output": "â ºâ â žâ »" }, { "input": "water's", "output": "â ºâ â žâ »â „â Ž" }, { "input": "waterbed", "output": "â ºâ â žâ »â ƒâ «" }, { "input": "waterbed's", "output": "â ºâ â žâ »â ƒâ «â „â Ž" }, { "input": "waterbeds", "output": "â ºâ â žâ »â ƒâ «â Ž" }, { "input": "waterbird", "output": "â ºâ â žâ »â ƒâ Šâ —â ™" }, { "input": "waterbird's", "output": "â ºâ â žâ »â ƒâ Šâ —⠙⠄⠎" }, { "input": "waterbirds", "output": "â ºâ â žâ »â ƒâ Šâ —⠙⠎" }, { "input": "watercolor", "output": "â ºâ â žâ »â ‰â •⠇⠕⠗" }, { "input": "watercolor's", "output": "â ºâ â žâ »â ‰â •⠇⠕⠗⠄⠎" }, { "input": "watercolors", "output": "â ºâ â žâ »â ‰â •⠇⠕⠗⠎" }, { "input": "watercourse", "output": "â ºâ â žâ »â ‰â ³â —â Žâ ‘" }, { "input": "watercourse's", "output": "â ºâ â žâ »â ‰â ³â —â Žâ ‘â „â Ž" }, { "input": "watercourses", "output": "â ºâ â žâ »â ‰â ³â —â Žâ ‘â Ž" }, { "input": "watercraft", "output": "â ºâ â žâ »â ‰â —â â ‹â ž" }, { "input": "watercraft's", "output": "â ºâ â žâ »â ‰â —â â ‹â žâ „â Ž" }, { "input": "watercress", "output": "â ºâ â žâ »â ‰â —â ‘â Žâ Ž" }, { "input": "watercress's", "output": "â ºâ â žâ »â ‰â —â ‘â Žâ Žâ „â Ž" }, { "input": "watered", "output": "â ºâ â žâ »â «" }, { "input": "waterfall", "output": "â ºâ â žâ »â ‹â â ‡â ‡" }, { "input": "waterfall's", "output": "â ºâ â žâ »â ‹â â ‡â ‡â „â Ž" }, { "input": "waterfalls", "output": "â ºâ â žâ »â ‹â â ‡â ‡â Ž" }, { "input": "waterfowl", "output": "â ºâ â žâ »â ‹â ªâ ‡" }, { "input": "waterfowl's", "output": "â ºâ â žâ »â ‹â ªâ ‡â „â Ž" }, { "input": "waterfowls", "output": "â ºâ â žâ »â ‹â ªâ ‡â Ž" }, { "input": "waterfront", "output": "â ºâ â žâ »â ‹â —â •â â ž" }, { "input": "waterfront's", "output": "â ºâ â žâ »â ‹â —â •â â žâ „â Ž" }, { "input": "waterfronts", "output": "â ºâ â žâ »â ‹â —â •â â žâ Ž" }, { "input": "waterier", "output": "â ºâ â žâ »â Šâ »" }, { "input": "wateriest", "output": "â ºâ â žâ »â Šâ ‘â Œ" }, { "input": "wateriness", "output": "â ºâ â žâ »â Šâ °â Ž" }, { "input": "wateriness's", "output": "â ºâ â žâ »â Šâ °â Žâ „â Ž" }, { "input": "watering", "output": "â ºâ â žâ »â Œ" }, { "input": "waterlilies", "output": "â ºâ â žâ »â ‡â Šâ ‡â Šâ ‘â Ž" }, { "input": "waterlily", "output": "â ºâ â žâ »â ‡â Šâ ‡â ½" }, { "input": "waterlily's", "output": "â ºâ â žâ »â ‡â Šâ ‡â ½â „â Ž" }, { "input": "waterline", "output": "â ºâ â žâ »â ‡â ”â ‘" }, { "input": "waterline's", "output": "â ºâ â žâ »â ‡â ”â ‘â „â Ž" }, { "input": "waterlines", "output": "â ºâ â žâ »â ‡â ”â ‘â Ž" }, { "input": "waterlogged", "output": "â ºâ â žâ »â ‡â •â ¶â «" }, { "input": "watermark", "output": "â ºâ â žâ »â â œâ …" }, { "input": "watermark's", "output": "â ºâ â žâ »â â œâ …â „â Ž" }, { "input": "watermarked", "output": "â ºâ â žâ »â â œâ …â «" }, { "input": "watermarking", "output": "â ºâ â žâ »â â œâ …â Œ" }, { "input": "watermarks", "output": "â ºâ â žâ »â â œâ …â Ž" }, { "input": "watermelon", "output": "â ºâ â žâ »â â ‘⠇⠕â " }, { "input": "watermelon's", "output": "â ºâ â žâ »â â ‘⠇⠕â â „â Ž" }, { "input": "watermelons", "output": "â ºâ â žâ »â â ‘⠇⠕â â Ž" }, { "input": "waterproof", "output": "â ºâ â žâ »â â —â •â ·" }, { "input": "waterproof's", "output": "â ºâ â žâ »â â —â •â ·â „â Ž" }, { "input": "waterproofed", "output": "â ºâ â žâ »â â —â •â ·â «" }, { "input": "waterproofing", "output": "â ºâ â žâ »â â —â •â ·â Œ" }, { "input": "waterproofing's", "output": "â ºâ â žâ »â â —⠕⠷⠌⠄⠎" }, { "input": "waterproofs", "output": "â ºâ â žâ »â â —â •â ·â Ž" }, { "input": "waters", "output": "â ºâ â žâ »â Ž" }, { "input": "waters's", "output": "â ºâ â žâ »â Žâ „â Ž" }, { "input": "watershed", "output": "â ºâ â žâ »â ©â «" }, { "input": "watershed's", "output": "â ºâ â žâ »â ©â «â „â Ž" }, { "input": "watersheds", "output": "â ºâ â žâ »â ©â «â Ž" }, { "input": "waterside", "output": "â ºâ â žâ »â Žâ Šâ ™â ‘" }, { "input": "waterside's", "output": "â ºâ â žâ »â Žâ Šâ ™â ‘â „â Ž" }, { "input": "watersides", "output": "â ºâ â žâ »â Žâ Šâ ™â ‘â Ž" }, { "input": "waterspout", "output": "â ºâ â žâ »â Žâ â ³â ž" }, { "input": "waterspout's", "output": "â ºâ â žâ »â Žâ â ³â žâ „â Ž" }, { "input": "waterspouts", "output": "â ºâ â žâ »â Žâ â ³â žâ Ž" }, { "input": "watertight", "output": "â ºâ â žâ »â žâ Šâ £â ž" }, { "input": "waterway", "output": "â ºâ â žâ »â ºâ â ½" }, { "input": "waterway's", "output": "â ºâ â žâ »â ºâ â ½â „â Ž" }, { "input": "waterways", "output": "â ºâ â žâ »â ºâ â ½â Ž" }, { "input": "waterworks", "output": "â ºâ â žâ »â â ºâ Ž" }, { "input": "waterworks's", "output": "â ºâ â žâ »â â ºâ Žâ „â Ž" }, { "input": "watery", "output": "â ºâ â žâ »â ½" }, { "input": "watt", "output": "â ºâ â žâ ž" }, { "input": "watt's", "output": "â ºâ â žâ žâ „â Ž" }, { "input": "wattage", "output": "â ºâ â žâ žâ â ›â ‘" }, { "input": "wattage's", "output": "â ºâ â žâ žâ â ›â ‘â „â Ž" }, { "input": "wattle", "output": "â ºâ â žâ žâ ‡â ‘" }, { "input": "wattle's", "output": "â ºâ â žâ žâ ‡â ‘â „â Ž" }, { "input": "wattled", "output": "â ºâ â žâ žâ ‡â «" }, { "input": "wattles", "output": "â ºâ â žâ žâ ‡â ‘â Ž" }, { "input": "wattling", "output": "â ºâ â žâ žâ ‡â Œ" }, { "input": "watts", "output": "â ºâ â žâ žâ Ž" }, { "input": "wave", "output": "â ºâ â §â ‘" }, { "input": "wave's", "output": "â ºâ â §â ‘â „â Ž" }, { "input": "waved", "output": "â ºâ â §â «" }, { "input": "waveform", "output": "â ºâ â §â ‘â ¿â " }, { "input": "wavelength", "output": "â ºâ â §â ‘⠇⠢⠛⠹" }, { "input": "wavelength's", "output": "â ºâ â §â ‘⠇⠢⠛⠹⠄⠎" }, { "input": "wavelengths", "output": "â ºâ â §â ‘⠇⠢⠛⠹⠎" }, { "input": "wavelet", "output": "â ºâ â §â ‘⠇⠑⠞" }, { "input": "wavelet's", "output": "â ºâ â §â ‘⠇⠑⠞⠄⠎" }, { "input": "wavelets", "output": "â ºâ â §â ‘⠇⠑⠞⠎" }, { "input": "wavelike", "output": "â ºâ â §â ‘⠇⠊⠅⠑" }, { "input": "waver", "output": "â ºâ â §â »" }, { "input": "waver's", "output": "â ºâ â §â »â „â Ž" }, { "input": "wavered", "output": "â ºâ â §â »â «" }, { "input": "waverer", "output": "â ºâ â §â »â »" }, { "input": "waverer's", "output": "â ºâ â §â »â »â „â Ž" }, { "input": "waverers", "output": "â ºâ â §â »â »â Ž" }, { "input": "wavering", "output": "â ºâ â §â »â Œ" }, { "input": "waveringly", "output": "â ºâ â §â »â Œâ ‡â ½" }, { "input": "wavers", "output": "â ºâ â §â »â Ž" }, { "input": "waves", "output": "â ºâ â §â ‘â Ž" }, { "input": "wavier", "output": "â ºâ â §â Šâ »" }, { "input": "waviest", "output": "â ºâ â §â Šâ ‘â Œ" }, { "input": "waviness", "output": "â ºâ â §â Šâ °â Ž" }, { "input": "waviness's", "output": "â ºâ â §â Šâ °â Žâ „â Ž" }, { "input": "waving", "output": "â ºâ â §â Œ" }, { "input": "wavy", "output": "â ºâ â §â ½" }, { "input": "wax", "output": "â ºâ â ­" }, { "input": "wax's", "output": "â ºâ â ­â „â Ž" }, { "input": "waxed", "output": "â ºâ â ­â «" }, { "input": "waxen", "output": "â ºâ â ­â ¢" }, { "input": "waxes", "output": "â ºâ â ­â ‘â Ž" }, { "input": "waxier", "output": "â ºâ â ­â Šâ »" }, { "input": "waxiest", "output": "â ºâ â ­â Šâ ‘â Œ" }, { "input": "waxiness", "output": "â ºâ â ­â Šâ °â Ž" }, { "input": "waxiness's", "output": "â ºâ â ­â Šâ °â Žâ „â Ž" }, { "input": "waxing", "output": "â ºâ â ­â Œ" }, { "input": "waxwing", "output": "â ºâ â ­â ºâ Œ" }, { "input": "waxwing's", "output": "â ºâ â ­â ºâ Œâ „â Ž" }, { "input": "waxwings", "output": "â ºâ â ­â ºâ Œâ Ž" }, { "input": "waxwork", "output": "â ºâ â ­â â º" }, { "input": "waxwork's", "output": "â ºâ â ­â â ºâ „â Ž" }, { "input": "waxworks", "output": "â ºâ â ­â â ºâ Ž" }, { "input": "waxy", "output": "â ºâ â ­â ½" }, { "input": "way", "output": "â ºâ â ½" }, { "input": "way's", "output": "â ºâ â ½â „â Ž" }, { "input": "waybill", "output": "â ºâ â ½â ƒâ Šâ ‡â ‡" }, { "input": "waybill's", "output": "â ºâ â ½â ƒâ Šâ ‡â ‡â „â Ž" }, { "input": "waybills", "output": "â ºâ â ½â ƒâ Šâ ‡â ‡â Ž" }, { "input": "wayfarer", "output": "â ºâ â ½â ‹â œâ »" }, { "input": "wayfarer's", "output": "â ºâ â ½â ‹â œâ »â „â Ž" }, { "input": "wayfarers", "output": "â ºâ â ½â ‹â œâ »â Ž" }, { "input": "wayfaring", "output": "â ºâ â ½â ‹â œâ Œ" }, { "input": "wayfaring's", "output": "â ºâ â ½â ‹â œâ Œâ „â Ž" }, { "input": "wayfarings", "output": "â ºâ â ½â ‹â œâ Œâ Ž" }, { "input": "waylaid", "output": "â ºâ â ½â ‡â â Šâ ™" }, { "input": "waylay", "output": "â ºâ â ½â ‡â â ½" }, { "input": "waylayer", "output": "â ºâ â ½â ‡â â ½â »" }, { "input": "waylayer's", "output": "â ºâ â ½â ‡â â ½â »â „â Ž" }, { "input": "waylayers", "output": "â ºâ â ½â ‡â â ½â »â Ž" }, { "input": "waylaying", "output": "â ºâ â ½â ‡â â ½â Œ" }, { "input": "waylays", "output": "â ºâ â ½â ‡â â ½â Ž" }, { "input": "ways", "output": "â ºâ â ½â Ž" }, { "input": "wayside", "output": "â ºâ â ½â Žâ Šâ ™â ‘" }, { "input": "wayside's", "output": "â ºâ â ½â Žâ Šâ ™â ‘â „â Ž" }, { "input": "waysides", "output": "â ºâ â ½â Žâ Šâ ™â ‘â Ž" }, { "input": "wayward", "output": "â ºâ â ½â ºâ œâ ™" }, { "input": "waywardly", "output": "â ºâ â ½â ºâ œâ ™â ‡â ½" }, { "input": "waywardness", "output": "â ºâ â ½â ºâ œâ ™â °â Ž" }, { "input": "waywardness's", "output": "â ºâ â ½â ºâ œâ ™â °â Žâ „â Ž" }, { "input": "we", "output": "⠺⠑" }, { "input": "weak", "output": "⠺⠂⠅" }, { "input": "weaken", "output": "⠺⠂⠅⠢" }, { "input": "weakened", "output": "⠺⠂⠅⠢⠫" }, { "input": "weakener", "output": "⠺⠂⠅⠢⠻" }, { "input": "weakener's", "output": "⠺⠂⠅⠢⠻⠄⠎" }, { "input": "weakeners", "output": "⠺⠂⠅⠢⠻⠎" }, { "input": "weakening", "output": "⠺⠂⠅⠢⠌" }, { "input": "weakens", "output": "⠺⠂⠅⠢⠎" }, { "input": "weaker", "output": "⠺⠂⠅⠻" }, { "input": "weakest", "output": "⠺⠂⠅⠑⠌" }, { "input": "weakfish", "output": "⠺⠂⠅⠋⠊⠩" }, { "input": "weakfish's", "output": "⠺⠂⠅⠋⠊⠩⠄⠎" }, { "input": "weakfishes", "output": "⠺⠂⠅⠋⠊⠩⠑⠎" }, { "input": "weakling", "output": "⠺⠂⠅⠇⠌" }, { "input": "weakling's", "output": "⠺⠂⠅⠇⠌⠄⠎" }, { "input": "weaklings", "output": "⠺⠂⠅⠇⠌⠎" }, { "input": "weakly", "output": "⠺⠂⠅⠇⠽" }, { "input": "weakness", "output": "⠺⠂⠅⠰⠎" }, { "input": "weakness's", "output": "⠺⠂⠅⠰⠎⠄⠎" }, { "input": "weaknesses", "output": "⠺⠂⠅⠰⠎⠑⠎" }, { "input": "weal", "output": "⠺⠂⠇" }, { "input": "weal's", "output": "⠺⠂⠇⠄⠎" }, { "input": "weals", "output": "⠺⠂⠇⠎" }, { "input": "wealth", "output": "⠺⠂⠇⠹" }, { "input": "wealth's", "output": "⠺⠂⠇⠹⠄⠎" }, { "input": "wealthier", "output": "⠺⠂⠇⠹⠊⠻" }, { "input": "wealthiest", "output": "⠺⠂⠇⠹⠊⠑⠌" }, { "input": "wealthiness", "output": "⠺⠂⠇⠹⠊⠰⠎" }, { "input": "wealthiness's", "output": "⠺⠂⠇⠹⠊⠰⠎⠄⠎" }, { "input": "wealthy", "output": "⠺⠂⠇⠹⠽" }, { "input": "wean", "output": "⠺⠂â " }, { "input": "weaned", "output": "⠺⠂â â «" }, { "input": "weaning", "output": "⠺⠂â â Œ" }, { "input": "weans", "output": "⠺⠂â â Ž" }, { "input": "weapon", "output": "⠺⠂â â •â " }, { "input": "weapon's", "output": "⠺⠂â â •â â „â Ž" }, { "input": "weaponless", "output": "⠺⠂â â •â â ¨â Ž" }, { "input": "weaponry", "output": "⠺⠂â â •â â —â ½" }, { "input": "weaponry's", "output": "⠺⠂â â •â â —⠽⠄⠎" }, { "input": "weapons", "output": "⠺⠂â â •â â Ž" }, { "input": "wear", "output": "⠺⠑⠜" }, { "input": "wear's", "output": "⠺⠑⠜⠄⠎" }, { "input": "wearable", "output": "⠺⠑⠜â â ¼" }, { "input": "wearer", "output": "⠺⠑⠜⠻" }, { "input": "wearer's", "output": "⠺⠑⠜⠻⠄⠎" }, { "input": "wearers", "output": "⠺⠑⠜⠻⠎" }, { "input": "wearied", "output": "⠺⠑⠜⠊⠫" }, { "input": "wearier", "output": "⠺⠑⠜⠊⠻" }, { "input": "wearies", "output": "⠺⠑⠜⠊⠑⠎" }, { "input": "weariest", "output": "⠺⠑⠜⠊⠑⠌" }, { "input": "wearily", "output": "⠺⠑⠜⠊⠇⠽" }, { "input": "weariness", "output": "⠺⠑⠜⠊⠰⠎" }, { "input": "weariness's", "output": "⠺⠑⠜⠊⠰⠎⠄⠎" }, { "input": "wearing", "output": "⠺⠑⠜⠌" }, { "input": "wearings", "output": "⠺⠑⠜⠌⠎" }, { "input": "wearisome", "output": "⠺⠑⠜⠊â â Ž" }, { "input": "wearisomely", "output": "⠺⠑⠜⠊â â Žâ ‡â ½" }, { "input": "wears", "output": "⠺⠑⠜⠎" }, { "input": "weary", "output": "⠺⠑⠜⠽" }, { "input": "wearying", "output": "⠺⠑⠜⠽⠌" }, { "input": "weasel", "output": "⠺⠂⠎⠑⠇" }, { "input": "weasel's", "output": "⠺⠂⠎⠑⠇⠄⠎" }, { "input": "weaseled", "output": "⠺⠂⠎⠑⠇⠫" }, { "input": "weaseling", "output": "⠺⠂⠎⠑⠇⠌" }, { "input": "weaselly", "output": "⠺⠂⠎⠑⠇⠇⠽" }, { "input": "weasels", "output": "⠺⠂⠎⠑⠇⠎" }, { "input": "weather", "output": "⠺⠂⠮⠗" }, { "input": "weather's", "output": "⠺⠂⠮⠗⠄⠎" }, { "input": "weathercock", "output": "⠺⠂⠮⠗⠉⠕⠉⠅" }, { "input": "weathercock's", "output": "⠺⠂⠮⠗⠉⠕⠉⠅⠄⠎" }, { "input": "weathercocks", "output": "⠺⠂⠮⠗⠉⠕⠉⠅⠎" }, { "input": "weathered", "output": "⠺⠂⠮⠗⠫" }, { "input": "weathering", "output": "⠺⠂⠮⠗⠌" }, { "input": "weathering's", "output": "⠺⠂⠮⠗⠌⠄⠎" }, { "input": "weatherization", "output": "⠺⠂⠮⠗⠊⠵⠠â " }, { "input": "weatherization's", "output": "⠺⠂⠮⠗⠊⠵⠠â â „â Ž" }, { "input": "weatherize", "output": "⠺⠂⠮⠗⠊⠵⠑" }, { "input": "weatherized", "output": "⠺⠂⠮⠗⠊⠵⠫" }, { "input": "weatherizes", "output": "⠺⠂⠮⠗⠊⠵⠑⠎" }, { "input": "weatherizing", "output": "⠺⠂⠮⠗⠊⠵⠌" }, { "input": "weatherman", "output": "⠺⠂⠮⠗â â â " }, { "input": "weatherman's", "output": "⠺⠂⠮⠗â â â â „â Ž" }, { "input": "weathermen", "output": "⠺⠂⠮⠗â â ¢" }, { "input": "weatherperson", "output": "⠺⠂⠮⠗â â »â Žâ •â " }, { "input": "weatherperson's", "output": "⠺⠂⠮⠗â â »â Žâ •â â „â Ž" }, { "input": "weatherpersons", "output": "⠺⠂⠮⠗â â »â Žâ •â â Ž" }, { "input": "weatherproof", "output": "⠺⠂⠮⠗â â —â •â ·" }, { "input": "weatherproofed", "output": "⠺⠂⠮⠗â â —â •â ·â «" }, { "input": "weatherproofing", "output": "⠺⠂⠮⠗â â —â •â ·â Œ" }, { "input": "weatherproofs", "output": "⠺⠂⠮⠗â â —â •â ·â Ž" }, { "input": "weathers", "output": "⠺⠂⠮⠗⠎" }, { "input": "weatherstrip", "output": "⠺⠂⠮⠗⠌⠗⠊â " }, { "input": "weatherstripped", "output": "⠺⠂⠮⠗⠌⠗⠊â â â «" }, { "input": "weatherstripping", "output": "⠺⠂⠮⠗⠌⠗⠊â â â Œ" }, { "input": "weatherstripping's", "output": "⠺⠂⠮⠗⠌⠗⠊â â â Œâ „â Ž" }, { "input": "weatherstrips", "output": "⠺⠂⠮⠗⠌⠗⠊â â Ž" }, { "input": "weave", "output": "⠺⠂⠧⠑" }, { "input": "weave's", "output": "⠺⠂⠧⠑⠄⠎" }, { "input": "weaved", "output": "⠺⠂⠧⠫" }, { "input": "weaver", "output": "⠺⠂⠧⠻" }, { "input": "weaver's", "output": "⠺⠂⠧⠻⠄⠎" }, { "input": "weavers", "output": "⠺⠂⠧⠻⠎" }, { "input": "weaves", "output": "⠺⠂⠧⠑⠎" }, { "input": "weaving", "output": "⠺⠂⠧⠌" }, { "input": "weaving's", "output": "⠺⠂⠧⠌⠄⠎" }, { "input": "web", "output": "⠺⠑⠃" }, { "input": "web's", "output": "⠺⠑⠃⠄⠎" }, { "input": "webbed", "output": "⠺⠑⠆⠫" }, { "input": "webbing", "output": "⠺⠑⠆⠌" }, { "input": "webbing's", "output": "⠺⠑⠆⠌⠄⠎" }, { "input": "webfeet", "output": "⠺⠑⠃⠋⠑⠑⠞" }, { "input": "webfoot", "output": "⠺⠑⠃⠋⠕⠕⠞" }, { "input": "webfoot's", "output": "⠺⠑⠃⠋⠕⠕⠞⠄⠎" }, { "input": "webmaster", "output": "⠺⠑⠃â â â Œâ »" }, { "input": "webmaster's", "output": "⠺⠑⠃â â â Œâ »â „â Ž" }, { "input": "webmasters", "output": "⠺⠑⠃â â â Œâ »â Ž" }, { "input": "webmistress", "output": "⠺⠑⠃â â Šâ Œâ —â ‘â Žâ Ž" }, { "input": "webmistress's", "output": "⠺⠑⠃â â Šâ Œâ —â ‘â Žâ Žâ „â Ž" }, { "input": "webmistresses", "output": "⠺⠑⠃â â Šâ Œâ —â ‘â Žâ Žâ ‘â Ž" }, { "input": "webs", "output": "⠺⠑⠃⠎" }, { "input": "website", "output": "⠺⠑⠃⠎⠊⠞⠑" }, { "input": "website's", "output": "⠺⠑⠃⠎⠊⠞⠑⠄⠎" }, { "input": "websites", "output": "⠺⠑⠃⠎⠊⠞⠑⠎" }, { "input": "wed", "output": "⠺⠫" }, { "input": "wedded", "output": "⠺⠫⠙⠫" }, { "input": "wedder", "output": "⠺⠫⠙⠻" }, { "input": "wedding", "output": "⠺⠫⠙⠌" }, { "input": "wedding's", "output": "⠺⠫⠙⠌⠄⠎" }, { "input": "weddings", "output": "⠺⠫⠙⠌⠎" }, { "input": "wedge", "output": "⠺⠫⠛⠑" }, { "input": "wedge's", "output": "⠺⠫⠛⠑⠄⠎" }, { "input": "wedged", "output": "⠺⠫⠛⠫" }, { "input": "wedges", "output": "⠺⠫⠛⠑⠎" }, { "input": "wedgie", "output": "⠺⠫⠛⠊⠑" }, { "input": "wedgie's", "output": "⠺⠫⠛⠊⠑⠄⠎" }, { "input": "wedgies", "output": "⠺⠫⠛⠊⠑⠎" }, { "input": "wedging", "output": "⠺⠫⠛⠌" }, { "input": "wedlock", "output": "⠺⠫⠇⠕⠉⠅" }, { "input": "wedlock's", "output": "⠺⠫⠇⠕⠉⠅⠄⠎" }, { "input": "weds", "output": "⠺⠫⠎" }, { "input": "wee", "output": "⠺⠑⠑" }, { "input": "wee's", "output": "⠺⠑⠑⠄⠎" }, { "input": "weed", "output": "⠺⠑⠫" }, { "input": "weed's", "output": "⠺⠑⠫⠄⠎" }, { "input": "weeded", "output": "⠺⠑⠫⠫" }, { "input": "weeder", "output": "⠺⠑⠫⠻" }, { "input": "weeder's", "output": "⠺⠑⠫⠻⠄⠎" }, { "input": "weeders", "output": "⠺⠑⠫⠻⠎" }, { "input": "weedier", "output": "⠺⠑⠫⠊⠻" }, { "input": "weediest", "output": "⠺⠑⠫⠊⠑⠌" }, { "input": "weeding", "output": "⠺⠑⠫⠌" }, { "input": "weedless", "output": "⠺⠑⠫⠨⠎" }, { "input": "weeds", "output": "⠺⠑⠫⠎" }, { "input": "weedy", "output": "⠺⠑⠫⠽" }, { "input": "weeing", "output": "⠺⠑⠑⠌" }, { "input": "week", "output": "⠺⠑⠑⠅" }, { "input": "week's", "output": "⠺⠑⠑⠅⠄⠎" }, { "input": "weekday", "output": "⠺⠑⠑⠅â â ™" }, { "input": "weekday's", "output": "⠺⠑⠑⠅â â ™â „â Ž" }, { "input": "weekdays", "output": "⠺⠑⠑⠅â â ™â Ž" }, { "input": "weekend", "output": "⠺⠑⠑⠅⠢⠙" }, { "input": "weekend's", "output": "⠺⠑⠑⠅⠢⠙⠄⠎" }, { "input": "weekended", "output": "⠺⠑⠑⠅⠢⠙⠫" }, { "input": "weekending", "output": "⠺⠑⠑⠅⠢⠙⠌" }, { "input": "weekends", "output": "⠺⠑⠑⠅⠢⠙⠎" }, { "input": "weeklies", "output": "⠺⠑⠑⠅⠇⠊⠑⠎" }, { "input": "weekly", "output": "⠺⠑⠑⠅⠇⠽" }, { "input": "weekly's", "output": "⠺⠑⠑⠅⠇⠽⠄⠎" }, { "input": "weeknight", "output": "⠺⠑⠑⠅â â Šâ £â ž" }, { "input": "weeknight's", "output": "⠺⠑⠑⠅â â Šâ £â žâ „â Ž" }, { "input": "weeknights", "output": "⠺⠑⠑⠅â â Šâ £â žâ Ž" }, { "input": "weeks", "output": "⠺⠑⠑⠅⠎" }, { "input": "ween", "output": "⠺⠑⠢" }, { "input": "weened", "output": "⠺⠑⠢⠫" }, { "input": "weenier", "output": "⠺⠑⠢⠊⠻" }, { "input": "weeniest", "output": "⠺⠑⠢⠊⠑⠌" }, { "input": "weening", "output": "⠺⠑⠢⠌" }, { "input": "weens", "output": "⠺⠑⠢⠎" }, { "input": "weensier", "output": "⠺⠑⠢⠎⠊⠻" }, { "input": "weensiest", "output": "⠺⠑⠢⠎⠊⠑⠌" }, { "input": "weensy", "output": "⠺⠑⠢⠎⠽" }, { "input": "weep", "output": "⠺⠑⠑â " }, { "input": "weep's", "output": "⠺⠑⠑â â „â Ž" }, { "input": "weeper", "output": "⠺⠑⠑â â »" }, { "input": "weeper's", "output": "⠺⠑⠑â â »â „â Ž" }, { "input": "weepers", "output": "⠺⠑⠑â â »â Ž" }, { "input": "weepier", "output": "⠺⠑⠑â â Šâ »" }, { "input": "weepies", "output": "⠺⠑⠑â â Šâ ‘â Ž" }, { "input": "weepiest", "output": "⠺⠑⠑â â Šâ ‘â Œ" }, { "input": "weeping", "output": "⠺⠑⠑â â Œ" }, { "input": "weepings", "output": "⠺⠑⠑â â Œâ Ž" }, { "input": "weeps", "output": "⠺⠑⠑â â Ž" }, { "input": "weepy", "output": "⠺⠑⠑â â ½" }, { "input": "weepy's", "output": "⠺⠑⠑â â ½â „â Ž" }, { "input": "weer", "output": "⠺⠑⠻" }, { "input": "wees", "output": "⠺⠑⠑⠎" }, { "input": "weest", "output": "⠺⠑⠑⠌" }, { "input": "weevil", "output": "⠺⠑⠑⠧⠊⠇" }, { "input": "weevil's", "output": "⠺⠑⠑⠧⠊⠇⠄⠎" }, { "input": "weevils", "output": "⠺⠑⠑⠧⠊⠇⠎" }, { "input": "weft", "output": "⠺⠑⠋⠞" }, { "input": "weft's", "output": "⠺⠑⠋⠞⠄⠎" }, { "input": "wefts", "output": "⠺⠑⠋⠞⠎" }, { "input": "weigh", "output": "⠺⠑⠊⠣" }, { "input": "weigh's", "output": "⠺⠑⠊⠣⠄⠎" }, { "input": "weighed", "output": "⠺⠑⠊⠣⠫" }, { "input": "weighing", "output": "⠺⠑⠊⠣⠌" }, { "input": "weighs", "output": "⠺⠑⠊⠣⠎" }, { "input": "weight", "output": "⠺⠑⠊⠣⠞" }, { "input": "weight's", "output": "⠺⠑⠊⠣⠞⠄⠎" }, { "input": "weighted", "output": "⠺⠑⠊⠣⠞⠫" }, { "input": "weightier", "output": "⠺⠑⠊⠣⠞⠊⠻" }, { "input": "weightiest", "output": "⠺⠑⠊⠣⠞⠊⠑⠌" }, { "input": "weightiness", "output": "⠺⠑⠊⠣⠞⠊⠰⠎" }, { "input": "weightiness's", "output": "⠺⠑⠊⠣⠞⠊⠰⠎⠄⠎" }, { "input": "weighting", "output": "⠺⠑⠊⠣⠞⠌" }, { "input": "weightless", "output": "⠺⠑⠊⠣⠞⠨⠎" }, { "input": "weightlessness", "output": "⠺⠑⠊⠣⠞⠨⠎⠰⠎" }, { "input": "weightlessness's", "output": "⠺⠑⠊⠣⠞⠨⠎⠰⠎⠄⠎" }, { "input": "weightlifter", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠻" }, { "input": "weightlifter's", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠻⠄⠎" }, { "input": "weightlifters", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠻⠎" }, { "input": "weightlifting", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠌" }, { "input": "weightlifting's", "output": "⠺⠑⠊⠣⠞⠇⠊⠋⠞⠌⠄⠎" }, { "input": "weights", "output": "⠺⠑⠊⠣⠞⠎" }, { "input": "weighty", "output": "⠺⠑⠊⠣⠞⠽" }, { "input": "weir", "output": "⠺⠑⠊⠗" }, { "input": "weir's", "output": "⠺⠑⠊⠗⠄⠎" }, { "input": "weird", "output": "⠺⠑⠊⠗⠙" }, { "input": "weirder", "output": "⠺⠑⠊⠗⠙⠻" }, { "input": "weirdest", "output": "⠺⠑⠊⠗⠙⠑⠌" }, { "input": "weirdie", "output": "⠺⠑⠊⠗⠙⠊⠑" }, { "input": "weirdie's", "output": "⠺⠑⠊⠗⠙⠊⠑⠄⠎" }, { "input": "weirdies", "output": "⠺⠑⠊⠗⠙⠊⠑⠎" }, { "input": "weirdly", "output": "⠺⠑⠊⠗⠙⠇⠽" }, { "input": "weirdness", "output": "⠺⠑⠊⠗⠙⠰⠎" }, { "input": "weirdness's", "output": "⠺⠑⠊⠗⠙⠰⠎⠄⠎" }, { "input": "weirdo", "output": "⠺⠑⠊⠗⠙⠕" }, { "input": "weirdo's", "output": "⠺⠑⠊⠗⠙⠕⠄⠎" }, { "input": "weirdos", "output": "⠺⠑⠊⠗⠙⠕⠎" }, { "input": "weirs", "output": "⠺⠑⠊⠗⠎" }, { "input": "welcome", "output": "⠺⠑⠇⠉⠕â â ‘" }, { "input": "welcome's", "output": "⠺⠑⠇⠉⠕â â ‘â „â Ž" }, { "input": "welcomed", "output": "⠺⠑⠇⠉⠕â â «" }, { "input": "welcomes", "output": "⠺⠑⠇⠉⠕â â ‘â Ž" }, { "input": "welcoming", "output": "⠺⠑⠇⠉⠕â â Œ" }, { "input": "weld", "output": "⠺⠑⠇⠙" }, { "input": "weld's", "output": "⠺⠑⠇⠙⠄⠎" }, { "input": "weldable", "output": "⠺⠑⠇⠙â â ¼" }, { "input": "welded", "output": "⠺⠑⠇⠙⠫" }, { "input": "welder", "output": "⠺⠑⠇⠙⠻" }, { "input": "welder's", "output": "⠺⠑⠇⠙⠻⠄⠎" }, { "input": "welders", "output": "⠺⠑⠇⠙⠻⠎" }, { "input": "welding", "output": "⠺⠑⠇⠙⠌" }, { "input": "welds", "output": "⠺⠑⠇⠙⠎" }, { "input": "welfare", "output": "⠺⠑⠇⠋⠜⠑" }, { "input": "welfare's", "output": "⠺⠑⠇⠋⠜⠑⠄⠎" }, { "input": "welkin", "output": "⠺⠑⠇⠅⠔" }, { "input": "welkin's", "output": "⠺⠑⠇⠅⠔⠄⠎" }, { "input": "well", "output": "⠺⠑⠇⠇" }, { "input": "well's", "output": "⠺⠑⠇⠇⠄⠎" }, { "input": "welled", "output": "⠺⠑⠇⠇⠫" }, { "input": "wellhead", "output": "⠺⠑⠇⠇⠓⠂⠙" }, { "input": "wellhead's", "output": "⠺⠑⠇⠇⠓⠂⠙⠄⠎" }, { "input": "wellheads", "output": "⠺⠑⠇⠇⠓⠂⠙⠎" }, { "input": "welling", "output": "⠺⠑⠇⠇⠌" }, { "input": "wellington", "output": "⠺⠑⠇⠇⠌⠞⠕â " }, { "input": "wellness's", "output": "⠺⠑⠇⠇⠰⠎⠄⠎" }, { "input": "wells", "output": "⠺⠑⠇⠇⠎" }, { "input": "wellspring", "output": "⠺⠑⠇⠇⠎â â —â Œ" }, { "input": "wellspring's", "output": "⠺⠑⠇⠇⠎â â —⠌⠄⠎" }, { "input": "wellsprings", "output": "⠺⠑⠇⠇⠎â â —⠌⠎" }, { "input": "welsh", "output": "⠺⠑⠇⠩" }, { "input": "welshed", "output": "⠺⠑⠇⠩⠫" }, { "input": "welsher", "output": "⠺⠑⠇⠩⠻" }, { "input": "welsher's", "output": "⠺⠑⠇⠩⠻⠄⠎" }, { "input": "welshers", "output": "⠺⠑⠇⠩⠻⠎" }, { "input": "welshes", "output": "⠺⠑⠇⠩⠑⠎" }, { "input": "welshing", "output": "⠺⠑⠇⠩⠌" }, { "input": "welt", "output": "⠺⠑⠇⠞" }, { "input": "welt's", "output": "⠺⠑⠇⠞⠄⠎" }, { "input": "welted", "output": "⠺⠑⠇⠞⠫" }, { "input": "welter", "output": "⠺⠑⠇⠞⠻" }, { "input": "welter's", "output": "⠺⠑⠇⠞⠻⠄⠎" }, { "input": "weltered", "output": "⠺⠑⠇⠞⠻⠫" }, { "input": "weltering", "output": "⠺⠑⠇⠞⠻⠌" }, { "input": "welters", "output": "⠺⠑⠇⠞⠻⠎" }, { "input": "welterweight", "output": "⠺⠑⠇⠞⠻⠺⠑⠊⠣⠞" }, { "input": "welterweight's", "output": "⠺⠑⠇⠞⠻⠺⠑⠊⠣⠞⠄⠎" }, { "input": "welterweights", "output": "⠺⠑⠇⠞⠻⠺⠑⠊⠣⠞⠎" }, { "input": "welting", "output": "⠺⠑⠇⠞⠌" }, { "input": "welts", "output": "⠺⠑⠇⠞⠎" }, { "input": "wen", "output": "⠺⠢" }, { "input": "wen's", "output": "⠺⠢⠄⠎" }, { "input": "wench", "output": "⠺⠢⠡" }, { "input": "wench's", "output": "⠺⠢⠡⠄⠎" }, { "input": "wenches", "output": "⠺⠢⠡⠑⠎" }, { "input": "wend", "output": "⠺⠢⠙" }, { "input": "wended", "output": "⠺⠢⠙⠫" }, { "input": "wending", "output": "⠺⠢⠙⠌" }, { "input": "wends", "output": "⠺⠢⠙⠎" }, { "input": "wens", "output": "⠺⠢⠎" }, { "input": "went", "output": "⠺⠢⠞" }, { "input": "wept", "output": "⠺⠑â â ž" }, { "input": "were", "output": "â ¶" }, { "input": "werewolf", "output": "⠺⠻⠑⠺⠕⠇⠋" }, { "input": "werewolf's", "output": "⠺⠻⠑⠺⠕⠇⠋⠄⠎" }, { "input": "werewolves", "output": "⠺⠻⠑⠺⠕⠇⠧⠑⠎" }, { "input": "west", "output": "⠺⠑⠌" }, { "input": "west's", "output": "⠺⠑⠌⠄⠎" }, { "input": "westbound", "output": "⠺⠑⠌⠃⠨⠙" }, { "input": "westerlies", "output": "⠺⠑⠌⠻⠇⠊⠑⠎" }, { "input": "westerly", "output": "⠺⠑⠌⠻⠇⠽" }, { "input": "westerly's", "output": "⠺⠑⠌⠻⠇⠽⠄⠎" }, { "input": "western", "output": "⠺⠑⠌⠻â " }, { "input": "western's", "output": "⠺⠑⠌⠻â â „â Ž" }, { "input": "westerner", "output": "⠺⠑⠌⠻â â »" }, { "input": "westerner's", "output": "⠺⠑⠌⠻â â »â „â Ž" }, { "input": "westerners", "output": "⠺⠑⠌⠻â â »â Ž" }, { "input": "westernization", "output": "⠺⠑⠌⠻â â Šâ µâ  â " }, { "input": "westernization's", "output": "⠺⠑⠌⠻â â Šâ µâ  â â „â Ž" }, { "input": "westernize", "output": "⠺⠑⠌⠻â â Šâ µâ ‘" }, { "input": "westernized", "output": "⠺⠑⠌⠻â â Šâ µâ «" }, { "input": "westernizes", "output": "⠺⠑⠌⠻â â Šâ µâ ‘â Ž" }, { "input": "westernizing", "output": "⠺⠑⠌⠻â â Šâ µâ Œ" }, { "input": "westernmost", "output": "⠺⠑⠌⠻â â â •â Œ" }, { "input": "westerns", "output": "⠺⠑⠌⠻â â Ž" }, { "input": "westward", "output": "⠺⠑⠌⠺⠜⠙" }, { "input": "westwards", "output": "⠺⠑⠌⠺⠜⠙⠎" }, { "input": "wet", "output": "⠺⠑⠞" }, { "input": "wet's", "output": "⠺⠑⠞⠄⠎" }, { "input": "wetback", "output": "⠺⠑⠞⠃â â ‰â …" }, { "input": "wetback's", "output": "⠺⠑⠞⠃â â ‰â …â „â Ž" }, { "input": "wetbacks", "output": "⠺⠑⠞⠃â â ‰â …â Ž" }, { "input": "wetland", "output": "⠺⠑⠞⠇⠯" }, { "input": "wetland's", "output": "⠺⠑⠞⠇⠯⠄⠎" }, { "input": "wetlands", "output": "⠺⠑⠞⠇⠯⠎" }, { "input": "wetly", "output": "⠺⠑⠞⠇⠽" }, { "input": "wetness", "output": "⠺⠑⠞⠰⠎" }, { "input": "wetness's", "output": "⠺⠑⠞⠰⠎⠄⠎" }, { "input": "wets", "output": "⠺⠑⠞⠎" }, { "input": "wetter", "output": "⠺⠑⠞⠞⠻" }, { "input": "wetter's", "output": "⠺⠑⠞⠞⠻⠄⠎" }, { "input": "wetters", "output": "⠺⠑⠞⠞⠻⠎" }, { "input": "wettest", "output": "⠺⠑⠞⠞⠑⠌" }, { "input": "wetting", "output": "⠺⠑⠞⠞⠌" }, { "input": "whack", "output": "â ±â â ‰â …" }, { "input": "whack's", "output": "â ±â â ‰â …â „â Ž" }, { "input": "whacked", "output": "â ±â â ‰â …â «" }, { "input": "whacker", "output": "â ±â â ‰â …â »" }, { "input": "whacker's", "output": "â ±â â ‰â …⠻⠄⠎" }, { "input": "whackers", "output": "â ±â â ‰â …⠻⠎" }, { "input": "whacking", "output": "â ±â â ‰â …â Œ" }, { "input": "whacks", "output": "â ±â â ‰â …â Ž" }, { "input": "whale", "output": "â ±â â ‡â ‘" }, { "input": "whale's", "output": "â ±â â ‡â ‘â „â Ž" }, { "input": "whaleboat", "output": "â ±â â ‡â ‘⠃⠕â â ž" }, { "input": "whaleboat's", "output": "â ±â â ‡â ‘⠃⠕â â žâ „â Ž" }, { "input": "whaleboats", "output": "â ±â â ‡â ‘⠃⠕â â žâ Ž" }, { "input": "whalebone", "output": "â ±â â ‡â ‘â ƒâ â •" }, { "input": "whalebone's", "output": "â ±â â ‡â ‘â ƒâ â •â „â Ž" }, { "input": "whaled", "output": "â ±â â ‡â «" }, { "input": "whaler", "output": "â ±â â ‡â »" }, { "input": "whaler's", "output": "â ±â â ‡â »â „â Ž" }, { "input": "whalers", "output": "â ±â â ‡â »â Ž" }, { "input": "whales", "output": "â ±â â ‡â ‘â Ž" }, { "input": "whaling", "output": "â ±â â ‡â Œ" }, { "input": "whaling's", "output": "â ±â â ‡â Œâ „â Ž" }, { "input": "wham", "output": "â ±â â " }, { "input": "wham's", "output": "â ±â â â „â Ž" }, { "input": "whammed", "output": "â ±â â â â «" }, { "input": "whammies", "output": "â ±â â â â Šâ ‘â Ž" }, { "input": "whamming", "output": "â ±â â â â Œ" }, { "input": "whammy", "output": "â ±â â â â ½" }, { "input": "whammy's", "output": "â ±â â â â ½â „â Ž" }, { "input": "whams", "output": "â ±â â â Ž" }, { "input": "wharf", "output": "⠱⠜⠋" }, { "input": "wharf's", "output": "⠱⠜⠋⠄⠎" }, { "input": "wharves", "output": "⠱⠜⠧⠑⠎" }, { "input": "what", "output": "â ±â â ž" }, { "input": "what's", "output": "â ±â â žâ „â Ž" }, { "input": "whatchamacallit", "output": "â ±â â žâ ¡â â â â ‰â â ‡â ‡â Šâ ž" }, { "input": "whatchamacallit's", "output": "â ±â â žâ ¡â â â â ‰â â ‡â ‡â Šâ žâ „â Ž" }, { "input": "whatchamacallits", "output": "â ±â â žâ ¡â â â â ‰â â ‡â ‡â Šâ žâ Ž" }, { "input": "whatever", "output": "â ±â â žâ â ‘" }, { "input": "whatnot", "output": "â ±â â žâ â •â ž" }, { "input": "whatnot's", "output": "â ±â â žâ â •â žâ „â Ž" }, { "input": "whats", "output": "â ±â â žâ Ž" }, { "input": "whatsoever", "output": "â ±â â žâ Žâ •â â ‘" }, { "input": "wheal", "output": "⠱⠂⠇" }, { "input": "wheal's", "output": "⠱⠂⠇⠄⠎" }, { "input": "wheals", "output": "⠱⠂⠇⠎" }, { "input": "wheat", "output": "⠱⠂⠞" }, { "input": "wheat's", "output": "⠱⠂⠞⠄⠎" }, { "input": "wheaten", "output": "⠱⠂⠞⠢" }, { "input": "whee", "output": "⠱⠑⠑" }, { "input": "wheedle", "output": "⠱⠑⠫⠇⠑" }, { "input": "wheedled", "output": "⠱⠑⠫⠇⠫" }, { "input": "wheedler", "output": "⠱⠑⠫⠇⠻" }, { "input": "wheedler's", "output": "⠱⠑⠫⠇⠻⠄⠎" }, { "input": "wheedlers", "output": "⠱⠑⠫⠇⠻⠎" }, { "input": "wheedles", "output": "⠱⠑⠫⠇⠑⠎" }, { "input": "wheedling", "output": "⠱⠑⠫⠇⠌" }, { "input": "wheel", "output": "⠱⠑⠑⠇" }, { "input": "wheel's", "output": "⠱⠑⠑⠇⠄⠎" }, { "input": "wheelbarrow", "output": "⠱⠑⠑⠇⠃⠜⠗⠪" }, { "input": "wheelbarrow's", "output": "⠱⠑⠑⠇⠃⠜⠗⠪⠄⠎" }, { "input": "wheelbarrows", "output": "⠱⠑⠑⠇⠃⠜⠗⠪⠎" }, { "input": "wheelbase", "output": "⠱⠑⠑⠇⠃â â Žâ ‘" }, { "input": "wheelbase's", "output": "⠱⠑⠑⠇⠃â â Žâ ‘â „â Ž" }, { "input": "wheelbases", "output": "⠱⠑⠑⠇⠃â â Žâ ‘â Ž" }, { "input": "wheelchair", "output": "⠱⠑⠑⠇⠡â â Šâ —" }, { "input": "wheelchair's", "output": "⠱⠑⠑⠇⠡â â Šâ —â „â Ž" }, { "input": "wheelchairs", "output": "⠱⠑⠑⠇⠡â â Šâ —â Ž" }, { "input": "wheeled", "output": "⠱⠑⠑⠇⠫" }, { "input": "wheeler", "output": "⠱⠑⠑⠇⠻" }, { "input": "wheeling", "output": "⠱⠑⠑⠇⠌" }, { "input": "wheels", "output": "⠱⠑⠑⠇⠎" }, { "input": "wheelwright", "output": "⠱⠑⠑⠇⠺â â —" }, { "input": "wheelwright's", "output": "⠱⠑⠑⠇⠺â â —â „â Ž" }, { "input": "wheelwrights", "output": "⠱⠑⠑⠇⠺â â —â Ž" }, { "input": "wheeze", "output": "⠱⠑⠑⠵⠑" }, { "input": "wheeze's", "output": "⠱⠑⠑⠵⠑⠄⠎" }, { "input": "wheezed", "output": "⠱⠑⠑⠵⠫" }, { "input": "wheezes", "output": "⠱⠑⠑⠵⠑⠎" }, { "input": "wheezier", "output": "⠱⠑⠑⠵⠊⠻" }, { "input": "wheeziest", "output": "⠱⠑⠑⠵⠊⠑⠌" }, { "input": "wheeziness's", "output": "⠱⠑⠑⠵⠊⠰⠎⠄⠎" }, { "input": "wheezing", "output": "⠱⠑⠑⠵⠌" }, { "input": "wheezy", "output": "⠱⠑⠑⠵⠽" }, { "input": "whelk", "output": "⠱⠑⠇⠅" }, { "input": "whelk's", "output": "⠱⠑⠇⠅⠄⠎" }, { "input": "whelked", "output": "⠱⠑⠇⠅⠫" }, { "input": "whelks", "output": "⠱⠑⠇⠅⠎" }, { "input": "whelm", "output": "⠱⠑⠇â " }, { "input": "whelmed", "output": "⠱⠑⠇â â «" }, { "input": "whelming", "output": "⠱⠑⠇â â Œ" }, { "input": "whelms", "output": "⠱⠑⠇â â Ž" }, { "input": "whelp", "output": "⠱⠑⠇â " }, { "input": "whelp's", "output": "⠱⠑⠇â â „â Ž" }, { "input": "whelped", "output": "⠱⠑⠇â â «" }, { "input": "whelping", "output": "⠱⠑⠇â â Œ" }, { "input": "whelps", "output": "⠱⠑⠇â â Ž" }, { "input": "when", "output": "⠱⠢" }, { "input": "when's", "output": "⠱⠢⠄⠎" }, { "input": "whence", "output": "⠱⠰⠑" }, { "input": "whenever", "output": "⠱⠢â â ‘" }, { "input": "whens", "output": "⠱⠢⠎" }, { "input": "whensoever", "output": "⠱⠢⠎⠕â â ‘" }, { "input": "where", "output": "â â ±" }, { "input": "where's", "output": "â â ±â „â Ž" }, { "input": "whereabouts", "output": "â â ±â â ƒâ Ž" }, { "input": "whereabouts's", "output": "â â ±â â ƒâ Žâ „â Ž" }, { "input": "whereas", "output": "â â ±â â Ž" }, { "input": "whereat", "output": "â â ±â â ž" }, { "input": "whereby", "output": "â â ±â ƒâ ½" }, { "input": "wherefore", "output": "â â ±â ¿â ‘" }, { "input": "wherefore's", "output": "â â ±â ¿â ‘â „â Ž" }, { "input": "wherefores", "output": "â â ±â ¿â ‘â Ž" }, { "input": "wherein", "output": "â â ±â ”" }, { "input": "whereof", "output": "â â ±â ·" }, { "input": "whereon", "output": "â â ±â •â " }, { "input": "wheres", "output": "â â ±â Ž" }, { "input": "wheresoever", "output": "â â ±â Žâ •â â ‘" }, { "input": "whereto", "output": "â â ±â žâ •" }, { "input": "whereupon", "output": "â â ±â ˜â ¥" }, { "input": "wherever", "output": "⠱⠻â â ‘" }, { "input": "wherewith", "output": "â â ±â ¾" }, { "input": "wherewithal", "output": "â â ±â ¾â â ‡" }, { "input": "wherewithal's", "output": "â â ±â ¾â â ‡â „â Ž" }, { "input": "wherries", "output": "⠱⠻⠗⠊⠑⠎" }, { "input": "wherry", "output": "⠱⠻⠗⠽" }, { "input": "wherry's", "output": "⠱⠻⠗⠽⠄⠎" }, { "input": "whet", "output": "⠱⠑⠞" }, { "input": "whether", "output": "⠱⠑⠮⠗" }, { "input": "whets", "output": "⠱⠑⠞⠎" }, { "input": "whetstone", "output": "⠱⠑⠞⠌â â •" }, { "input": "whetstone's", "output": "⠱⠑⠞⠌â â •â „â Ž" }, { "input": "whetstones", "output": "⠱⠑⠞⠌â â •â Ž" }, { "input": "whetted", "output": "⠱⠑⠞⠞⠫" }, { "input": "whetting", "output": "⠱⠑⠞⠞⠌" }, { "input": "whew", "output": "⠱⠑⠺" }, { "input": "whey", "output": "⠱⠑⠽" }, { "input": "whey's", "output": "⠱⠑⠽⠄⠎" }, { "input": "which", "output": "â ±" }, { "input": "whichever", "output": "⠱⠊⠡â â ‘" }, { "input": "whiff", "output": "⠱⠊⠋⠋" }, { "input": "whiff's", "output": "⠱⠊⠋⠋⠄⠎" }, { "input": "whiffed", "output": "⠱⠊⠖⠫" }, { "input": "whiffing", "output": "⠱⠊⠖⠌" }, { "input": "whiffletree", "output": "⠱⠊⠖⠇⠑⠞⠗⠑⠑" }, { "input": "whiffletree's", "output": "⠱⠊⠖⠇⠑⠞⠗⠑⠑⠄⠎" }, { "input": "whiffletrees", "output": "⠱⠊⠖⠇⠑⠞⠗⠑⠑⠎" }, { "input": "whiffs", "output": "⠱⠊⠖⠎" }, { "input": "while", "output": "⠱⠊⠇⠑" }, { "input": "while's", "output": "⠱⠊⠇⠑⠄⠎" }, { "input": "whiled", "output": "⠱⠊⠇⠫" }, { "input": "whiles", "output": "⠱⠊⠇⠑⠎" }, { "input": "whiling", "output": "⠱⠊⠇⠌" }, { "input": "whilom", "output": "⠱⠊⠇⠕â " }, { "input": "whilst", "output": "⠱⠊⠇⠌" }, { "input": "whim", "output": "⠱⠊â " }, { "input": "whim's", "output": "⠱⠊â â „â Ž" }, { "input": "whimper", "output": "⠱⠊â â â »" }, { "input": "whimper's", "output": "⠱⠊â â â »â „â Ž" }, { "input": "whimpered", "output": "⠱⠊â â â »â «" }, { "input": "whimpering", "output": "⠱⠊â â â »â Œ" }, { "input": "whimpers", "output": "⠱⠊â â â »â Ž" }, { "input": "whims", "output": "⠱⠊â â Ž" }, { "input": "whimsical", "output": "⠱⠊â â Žâ Šâ ‰â â ‡" }, { "input": "whimsicality", "output": "⠱⠊â â Žâ Šâ ‰â â ‡â °â ½" }, { "input": "whimsicality's", "output": "⠱⠊â â Žâ Šâ ‰â â ‡â °â ½â „â Ž" }, { "input": "whimsically", "output": "⠱⠊â â Žâ Šâ ‰â  â ½" }, { "input": "whimsies", "output": "⠱⠊â â Žâ Šâ ‘â Ž" }, { "input": "whimsy", "output": "⠱⠊â â Žâ ½" }, { "input": "whimsy's", "output": "⠱⠊â â Žâ ½â „â Ž" }, { "input": "whine", "output": "⠱⠔⠑" }, { "input": "whine's", "output": "⠱⠔⠑⠄⠎" }, { "input": "whined", "output": "⠱⠔⠫" }, { "input": "whiner", "output": "⠱⠔⠻" }, { "input": "whiner's", "output": "⠱⠔⠻⠄⠎" }, { "input": "whiners", "output": "⠱⠔⠻⠎" }, { "input": "whines", "output": "⠱⠔⠑⠎" }, { "input": "whinier", "output": "⠱⠔⠊⠻" }, { "input": "whiniest", "output": "⠱⠔⠊⠑⠌" }, { "input": "whining", "output": "⠱⠔⠌" }, { "input": "whinnied", "output": "⠱⠔â â Šâ «" }, { "input": "whinnies", "output": "⠱⠔â â Šâ ‘â Ž" }, { "input": "whinny", "output": "⠱⠔â â ½" }, { "input": "whinny's", "output": "⠱⠔â â ½â „â Ž" }, { "input": "whinnying", "output": "⠱⠔â â ½â Œ" }, { "input": "whiny", "output": "⠱⠔⠽" }, { "input": "whip", "output": "⠱⠊â " }, { "input": "whip's", "output": "⠱⠊â â „â Ž" }, { "input": "whipcord", "output": "⠱⠊â â ‰â •â —â ™" }, { "input": "whipcord's", "output": "⠱⠊â â ‰â •⠗⠙⠄⠎" }, { "input": "whiplash", "output": "⠱⠊â â ‡â â ©" }, { "input": "whiplash's", "output": "⠱⠊â â ‡â â ©â „â Ž" }, { "input": "whiplashes", "output": "⠱⠊â â ‡â â ©â ‘â Ž" }, { "input": "whipped", "output": "⠱⠊â â â «" }, { "input": "whipper", "output": "⠱⠊â â â »" }, { "input": "whipper's", "output": "⠱⠊â â â »â „â Ž" }, { "input": "whippers", "output": "⠱⠊â â â »â Ž" }, { "input": "whippersnapper", "output": "⠱⠊â â â »â Žâ â â â â »" }, { "input": "whippersnapper's", "output": "⠱⠊â â â »â Žâ â â â â »â „â Ž" }, { "input": "whippersnappers", "output": "⠱⠊â â â »â Žâ â â â â »â Ž" }, { "input": "whippet", "output": "⠱⠊â â â ‘â ž" }, { "input": "whippet's", "output": "⠱⠊â â â ‘â žâ „â Ž" }, { "input": "whippets", "output": "⠱⠊â â â ‘â žâ Ž" }, { "input": "whipping", "output": "⠱⠊â â â Œ" }, { "input": "whipping's", "output": "⠱⠊â â â Œâ „â Ž" }, { "input": "whippings", "output": "⠱⠊â â â Œâ Ž" }, { "input": "whippletree", "output": "⠱⠊â â â ‡â ‘â žâ —â ‘â ‘" }, { "input": "whippletree's", "output": "⠱⠊â â â ‡â ‘â žâ —â ‘â ‘â „â Ž" }, { "input": "whippletrees", "output": "⠱⠊â â â ‡â ‘â žâ —â ‘â ‘â Ž" }, { "input": "whippoorwill", "output": "⠱⠊â â â •⠕⠗⠺⠊⠇⠇" }, { "input": "whippoorwill's", "output": "⠱⠊â â â •⠕⠗⠺⠊⠇⠇⠄⠎" }, { "input": "whippoorwills", "output": "⠱⠊â â â •⠕⠗⠺⠊⠇⠇⠎" }, { "input": "whips", "output": "⠱⠊â â Ž" }, { "input": "whipsaw", "output": "⠱⠊â â Žâ â º" }, { "input": "whipsaw's", "output": "⠱⠊â â Žâ â ºâ „â Ž" }, { "input": "whipsawed", "output": "⠱⠊â â Žâ â ºâ «" }, { "input": "whipsawing", "output": "⠱⠊â â Žâ â ºâ Œ" }, { "input": "whipsaws", "output": "⠱⠊â â Žâ â ºâ Ž" }, { "input": "whir", "output": "⠱⠊⠗" }, { "input": "whir's", "output": "⠱⠊⠗⠄⠎" }, { "input": "whirl", "output": "⠱⠊⠗⠇" }, { "input": "whirl's", "output": "⠱⠊⠗⠇⠄⠎" }, { "input": "whirled", "output": "⠱⠊⠗⠇⠫" }, { "input": "whirligig", "output": "⠱⠊⠗⠇⠊⠛⠊⠛" }, { "input": "whirligig's", "output": "⠱⠊⠗⠇⠊⠛⠊⠛⠄⠎" }, { "input": "whirligigs", "output": "⠱⠊⠗⠇⠊⠛⠊⠛⠎" }, { "input": "whirling", "output": "⠱⠊⠗⠇⠌" }, { "input": "whirlpool", "output": "⠱⠊⠗⠇â â •â •â ‡" }, { "input": "whirlpool's", "output": "⠱⠊⠗⠇â â •⠕⠇⠄⠎" }, { "input": "whirlpools", "output": "⠱⠊⠗⠇â â •⠕⠇⠎" }, { "input": "whirls", "output": "⠱⠊⠗⠇⠎" }, { "input": "whirlwind", "output": "⠱⠊⠗⠇⠺⠔⠙" }, { "input": "whirlwind's", "output": "⠱⠊⠗⠇⠺⠔⠙⠄⠎" }, { "input": "whirlwinds", "output": "⠱⠊⠗⠇⠺⠔⠙⠎" }, { "input": "whirred", "output": "⠱⠊⠗⠗⠫" }, { "input": "whirring", "output": "⠱⠊⠗⠗⠌" }, { "input": "whirs", "output": "⠱⠊⠗⠎" }, { "input": "whisk", "output": "⠱⠊⠎⠅" }, { "input": "whisk's", "output": "⠱⠊⠎⠅⠄⠎" }, { "input": "whisked", "output": "⠱⠊⠎⠅⠫" }, { "input": "whisker", "output": "⠱⠊⠎⠅⠻" }, { "input": "whisker's", "output": "⠱⠊⠎⠅⠻⠄⠎" }, { "input": "whiskered", "output": "⠱⠊⠎⠅⠻⠫" }, { "input": "whiskers", "output": "⠱⠊⠎⠅⠻⠎" }, { "input": "whiskey", "output": "⠱⠊⠎⠅⠑⠽" }, { "input": "whiskey's", "output": "⠱⠊⠎⠅⠑⠽⠄⠎" }, { "input": "whiskeys", "output": "⠱⠊⠎⠅⠑⠽⠎" }, { "input": "whisking", "output": "⠱⠊⠎⠅⠌" }, { "input": "whisks", "output": "⠱⠊⠎⠅⠎" }, { "input": "whiskys", "output": "⠱⠊⠎⠅⠽⠎" }, { "input": "whisper", "output": "⠱⠊⠎â â »" }, { "input": "whisper's", "output": "⠱⠊⠎â â »â „â Ž" }, { "input": "whispered", "output": "⠱⠊⠎â â »â «" }, { "input": "whisperer", "output": "⠱⠊⠎â â »â »" }, { "input": "whisperer's", "output": "⠱⠊⠎â â »â »â „â Ž" }, { "input": "whisperers", "output": "⠱⠊⠎â â »â »â Ž" }, { "input": "whispering", "output": "⠱⠊⠎â â »â Œ" }, { "input": "whispers", "output": "⠱⠊⠎â â »â Ž" }, { "input": "whist", "output": "⠱⠊⠌" }, { "input": "whist's", "output": "⠱⠊⠌⠄⠎" }, { "input": "whistle", "output": "⠱⠊⠌⠇⠑" }, { "input": "whistle's", "output": "⠱⠊⠌⠇⠑⠄⠎" }, { "input": "whistled", "output": "⠱⠊⠌⠇⠫" }, { "input": "whistler", "output": "⠱⠊⠌⠇⠻" }, { "input": "whistler's", "output": "⠱⠊⠌⠇⠻⠄⠎" }, { "input": "whistlers", "output": "⠱⠊⠌⠇⠻⠎" }, { "input": "whistles", "output": "⠱⠊⠌⠇⠑⠎" }, { "input": "whistling", "output": "⠱⠊⠌⠇⠌" }, { "input": "whit", "output": "⠱⠊⠞" }, { "input": "whit's", "output": "⠱⠊⠞⠄⠎" }, { "input": "white", "output": "⠱⠊⠞⠑" }, { "input": "white's", "output": "⠱⠊⠞⠑⠄⠎" }, { "input": "whitecap", "output": "⠱⠊⠞⠑⠉â â " }, { "input": "whitecap's", "output": "⠱⠊⠞⠑⠉â â â „â Ž" }, { "input": "whitecaps", "output": "⠱⠊⠞⠑⠉â â â Ž" }, { "input": "whitefish", "output": "⠱⠊⠞⠑⠋⠊⠩" }, { "input": "whitefish's", "output": "⠱⠊⠞⠑⠋⠊⠩⠄⠎" }, { "input": "whitefishes", "output": "⠱⠊⠞⠑⠋⠊⠩⠑⠎" }, { "input": "whitehead", "output": "⠱⠊⠞⠑⠓⠂⠙" }, { "input": "whitehead's", "output": "⠱⠊⠞⠑⠓⠂⠙⠄⠎" }, { "input": "whiteheads", "output": "⠱⠊⠞⠑⠓⠂⠙⠎" }, { "input": "whiten", "output": "⠱⠊⠞⠢" }, { "input": "whitened", "output": "⠱⠊⠞⠢⠫" }, { "input": "whitener", "output": "⠱⠊⠞⠢⠻" }, { "input": "whitener's", "output": "⠱⠊⠞⠢⠻⠄⠎" }, { "input": "whiteners", "output": "⠱⠊⠞⠢⠻⠎" }, { "input": "whiteness", "output": "⠱⠊⠞⠑⠰⠎" }, { "input": "whiteness's", "output": "⠱⠊⠞⠑⠰⠎⠄⠎" }, { "input": "whitening", "output": "⠱⠊⠞⠢⠌" }, { "input": "whitening's", "output": "⠱⠊⠞⠢⠌⠄⠎" }, { "input": "whitenings", "output": "⠱⠊⠞⠢⠌⠎" }, { "input": "whitens", "output": "⠱⠊⠞⠢⠎" }, { "input": "whiteout's", "output": "⠱⠊⠞⠑⠳⠞⠄⠎" }, { "input": "whiteouts", "output": "⠱⠊⠞⠑⠳⠞⠎" }, { "input": "whiter", "output": "⠱⠊⠞⠻" }, { "input": "whites", "output": "⠱⠊⠞⠑⠎" }, { "input": "whitest", "output": "⠱⠊⠞⠑⠌" }, { "input": "whitetail", "output": "⠱⠊⠞⠑⠞â â Šâ ‡" }, { "input": "whitetail's", "output": "⠱⠊⠞⠑⠞â â Šâ ‡â „â Ž" }, { "input": "whitetails", "output": "⠱⠊⠞⠑⠞â â Šâ ‡â Ž" }, { "input": "whitewall", "output": "⠱⠊⠞⠑⠺â â ‡â ‡" }, { "input": "whitewall's", "output": "⠱⠊⠞⠑⠺â â ‡â ‡â „â Ž" }, { "input": "whitewalls", "output": "⠱⠊⠞⠑⠺â â ‡â ‡â Ž" }, { "input": "whitewash", "output": "⠱⠊⠞⠑⠺â â ©" }, { "input": "whitewash's", "output": "⠱⠊⠞⠑⠺â â ©â „â Ž" }, { "input": "whitewashed", "output": "⠱⠊⠞⠑⠺â â ©â «" }, { "input": "whitewashes", "output": "⠱⠊⠞⠑⠺â â ©â ‘â Ž" }, { "input": "whitewashing", "output": "⠱⠊⠞⠑⠺â â ©â Œ" }, { "input": "whitewater", "output": "⠱⠊⠞⠑⠺â â žâ »" }, { "input": "whitewater's", "output": "⠱⠊⠞⠑⠺â â žâ »â „â Ž" }, { "input": "whither", "output": "⠱⠊⠮⠗" }, { "input": "whiting", "output": "⠱⠊⠞⠌" }, { "input": "whiting's", "output": "⠱⠊⠞⠌⠄⠎" }, { "input": "whitings", "output": "⠱⠊⠞⠌⠎" }, { "input": "whitish", "output": "⠱⠊⠞⠊⠩" }, { "input": "whits", "output": "⠱⠊⠞⠎" }, { "input": "whittle", "output": "⠱⠊⠞⠞⠇⠑" }, { "input": "whittled", "output": "⠱⠊⠞⠞⠇⠫" }, { "input": "whittler", "output": "⠱⠊⠞⠞⠇⠻" }, { "input": "whittler's", "output": "⠱⠊⠞⠞⠇⠻⠄⠎" }, { "input": "whittlers", "output": "⠱⠊⠞⠞⠇⠻⠎" }, { "input": "whittles", "output": "⠱⠊⠞⠞⠇⠑⠎" }, { "input": "whittling", "output": "⠱⠊⠞⠞⠇⠌" }, { "input": "whiz", "output": "⠱⠊⠵" }, { "input": "whiz's", "output": "⠱⠊⠵⠄⠎" }, { "input": "whizkid", "output": "⠱⠊⠵⠅⠊⠙" }, { "input": "whizkid's", "output": "⠱⠊⠵⠅⠊⠙⠄⠎" }, { "input": "whizzbang", "output": "⠱⠊⠵⠵⠃â â â ›" }, { "input": "whizzbang's", "output": "⠱⠊⠵⠵⠃â â â ›â „â Ž" }, { "input": "whizzbangs", "output": "⠱⠊⠵⠵⠃â â â ›â Ž" }, { "input": "whizzed", "output": "⠱⠊⠵⠵⠫" }, { "input": "whizzes", "output": "⠱⠊⠵⠵⠑⠎" }, { "input": "whizzing", "output": "⠱⠊⠵⠵⠌" }, { "input": "who", "output": "⠱⠕" }, { "input": "who's", "output": "⠱⠕⠄⠎" }, { "input": "whoa", "output": "⠱⠕â " }, { "input": "whodunit", "output": "⠱⠕⠙⠥â â Šâ ž" }, { "input": "whodunit's", "output": "⠱⠕⠙⠥â â Šâ žâ „â Ž" }, { "input": "whodunits", "output": "⠱⠕⠙⠥â â Šâ žâ Ž" }, { "input": "whoever", "output": "⠱⠕â â ‘" }, { "input": "whole", "output": "⠱⠕⠇⠑" }, { "input": "whole's", "output": "⠱⠕⠇⠑⠄⠎" }, { "input": "wholehearted", "output": "⠱⠕⠇⠑⠓⠑⠜⠞⠫" }, { "input": "wholeheartedly", "output": "⠱⠕⠇⠑⠓⠑⠜⠞⠫⠇⠽" }, { "input": "wholeheartedness", "output": "⠱⠕⠇⠑⠓⠑⠜⠞⠫⠰⠎" }, { "input": "wholeheartedness's", "output": "⠱⠕⠇⠑⠓⠑⠜⠞⠫⠰⠎⠄⠎" }, { "input": "wholeness", "output": "⠱⠕⠇⠑⠰⠎" }, { "input": "wholeness's", "output": "⠱⠕⠇⠑⠰⠎⠄⠎" }, { "input": "wholes", "output": "⠱⠕⠇⠑⠎" }, { "input": "wholesale", "output": "⠱⠕⠇⠑⠎â â ‡â ‘" }, { "input": "wholesale's", "output": "⠱⠕⠇⠑⠎â â ‡â ‘â „â Ž" }, { "input": "wholesaled", "output": "⠱⠕⠇⠑⠎â â ‡â «" }, { "input": "wholesaler", "output": "⠱⠕⠇⠑⠎â â ‡â »" }, { "input": "wholesaler's", "output": "⠱⠕⠇⠑⠎â â ‡â »â „â Ž" }, { "input": "wholesalers", "output": "⠱⠕⠇⠑⠎â â ‡â »â Ž" }, { "input": "wholesales", "output": "⠱⠕⠇⠑⠎â â ‡â ‘â Ž" }, { "input": "wholesaling", "output": "⠱⠕⠇⠑⠎â â ‡â Œ" }, { "input": "wholesome", "output": "⠱⠕⠇⠑â â Ž" }, { "input": "wholesomely", "output": "⠱⠕⠇⠑â â Žâ ‡â ½" }, { "input": "wholesomeness", "output": "⠱⠕⠇⠑â â Žâ °â Ž" }, { "input": "wholesomeness's", "output": "⠱⠕⠇⠑â â Žâ °â Žâ „â Ž" }, { "input": "wholly", "output": "⠱⠕⠇⠇⠽" }, { "input": "whom", "output": "⠱⠕â " }, { "input": "whomever", "output": "⠱⠕â â â ‘" }, { "input": "whomsoever", "output": "⠱⠕â â Žâ •â â ‘" }, { "input": "whoop", "output": "⠱⠕⠕â " }, { "input": "whoop's", "output": "⠱⠕⠕â â „â Ž" }, { "input": "whooped", "output": "⠱⠕⠕â â «" }, { "input": "whoopee", "output": "⠱⠕⠕â â ‘â ‘" }, { "input": "whoopees", "output": "⠱⠕⠕â â ‘â ‘â Ž" }, { "input": "whooper", "output": "⠱⠕⠕â â »" }, { "input": "whooper's", "output": "⠱⠕⠕â â »â „â Ž" }, { "input": "whoopers", "output": "⠱⠕⠕â â »â Ž" }, { "input": "whooping", "output": "⠱⠕⠕â â Œ" }, { "input": "whoops", "output": "⠱⠕⠕â â Ž" }, { "input": "whoosh", "output": "⠱⠕⠕⠩" }, { "input": "whoosh's", "output": "⠱⠕⠕⠩⠄⠎" }, { "input": "whooshed", "output": "⠱⠕⠕⠩⠫" }, { "input": "whooshes", "output": "⠱⠕⠕⠩⠑⠎" }, { "input": "whooshing", "output": "⠱⠕⠕⠩⠌" }, { "input": "whopper", "output": "⠱⠕â â â »" }, { "input": "whopper's", "output": "⠱⠕â â â »â „â Ž" }, { "input": "whoppers", "output": "⠱⠕â â â »â Ž" }, { "input": "whopping", "output": "⠱⠕â â â Œ" }, { "input": "whore", "output": "⠱⠕⠗⠑" }, { "input": "whore's", "output": "⠱⠕⠗⠑⠄⠎" }, { "input": "whorehouse", "output": "⠱⠕⠗⠑⠓⠳⠎⠑" }, { "input": "whorehouse's", "output": "⠱⠕⠗⠑⠓⠳⠎⠑⠄⠎" }, { "input": "whorehouses", "output": "⠱⠕⠗⠑⠓⠳⠎⠑⠎" }, { "input": "whoreish", "output": "⠱⠕⠗⠑⠊⠩" }, { "input": "whores", "output": "⠱⠕⠗⠑⠎" }, { "input": "whorish", "output": "⠱⠕⠗⠊⠩" }, { "input": "whorl", "output": "⠱⠕⠗⠇" }, { "input": "whorl's", "output": "⠱⠕⠗⠇⠄⠎" }, { "input": "whorled", "output": "⠱⠕⠗⠇⠫" }, { "input": "whorls", "output": "⠱⠕⠗⠇⠎" }, { "input": "whose", "output": "⠘⠱" }, { "input": "whoso", "output": "⠱⠕⠎⠕" }, { "input": "whosoever", "output": "⠱⠕⠎⠕â â ‘" }, { "input": "why", "output": "⠱⠽" }, { "input": "why's", "output": "⠱⠽⠄⠎" }, { "input": "whys", "output": "⠱⠽⠎" }, { "input": "wick", "output": "⠺⠊⠉⠅" }, { "input": "wick's", "output": "⠺⠊⠉⠅⠄⠎" }, { "input": "wicked", "output": "⠺⠊⠉⠅⠫" }, { "input": "wickeder", "output": "⠺⠊⠉⠅⠫⠻" }, { "input": "wickedest", "output": "⠺⠊⠉⠅⠫⠑⠌" }, { "input": "wickedly", "output": "⠺⠊⠉⠅⠫⠇⠽" }, { "input": "wickedness", "output": "⠺⠊⠉⠅⠫⠰⠎" }, { "input": "wickedness's", "output": "⠺⠊⠉⠅⠫⠰⠎⠄⠎" }, { "input": "wicker", "output": "⠺⠊⠉⠅⠻" }, { "input": "wicker's", "output": "⠺⠊⠉⠅⠻⠄⠎" }, { "input": "wickers", "output": "⠺⠊⠉⠅⠻⠎" }, { "input": "wickerwork", "output": "⠺⠊⠉⠅⠻â â º" }, { "input": "wickerwork's", "output": "⠺⠊⠉⠅⠻â â ºâ „â Ž" }, { "input": "wicket", "output": "⠺⠊⠉⠅⠑⠞" }, { "input": "wicket's", "output": "⠺⠊⠉⠅⠑⠞⠄⠎" }, { "input": "wickets", "output": "⠺⠊⠉⠅⠑⠞⠎" }, { "input": "wicks", "output": "⠺⠊⠉⠅⠎" }, { "input": "wide", "output": "⠺⠊⠙⠑" }, { "input": "widely", "output": "⠺⠊⠙⠑⠇⠽" }, { "input": "widemouthed", "output": "⠺⠊⠙⠑â â ³â ®â ™" }, { "input": "widen", "output": "⠺⠊⠙⠢" }, { "input": "widened", "output": "⠺⠊⠙⠢⠫" }, { "input": "widener", "output": "⠺⠊⠙⠢⠻" }, { "input": "widener's", "output": "⠺⠊⠙⠢⠻⠄⠎" }, { "input": "wideners", "output": "⠺⠊⠙⠢⠻⠎" }, { "input": "wideness", "output": "⠺⠊⠙⠑⠰⠎" }, { "input": "wideness's", "output": "⠺⠊⠙⠑⠰⠎⠄⠎" }, { "input": "widening", "output": "⠺⠊⠙⠢⠌" }, { "input": "widens", "output": "⠺⠊⠙⠢⠎" }, { "input": "wider", "output": "⠺⠊⠙⠻" }, { "input": "widespread", "output": "⠺⠊⠙⠑⠎â â —â ‚â ™" }, { "input": "widest", "output": "⠺⠊⠙⠑⠌" }, { "input": "widow", "output": "⠺⠊⠙⠪" }, { "input": "widow's", "output": "⠺⠊⠙⠪⠄⠎" }, { "input": "widowed", "output": "⠺⠊⠙⠪⠫" }, { "input": "widower", "output": "⠺⠊⠙⠪⠻" }, { "input": "widower's", "output": "⠺⠊⠙⠪⠻⠄⠎" }, { "input": "widowers", "output": "⠺⠊⠙⠪⠻⠎" }, { "input": "widowhood", "output": "⠺⠊⠙⠪⠓⠕⠕⠙" }, { "input": "widowhood's", "output": "⠺⠊⠙⠪⠓⠕⠕⠙⠄⠎" }, { "input": "widowing", "output": "⠺⠊⠙⠪⠌" }, { "input": "widows", "output": "⠺⠊⠙⠪⠎" }, { "input": "width", "output": "⠺⠊⠙⠹" }, { "input": "width's", "output": "⠺⠊⠙⠹⠄⠎" }, { "input": "widths", "output": "⠺⠊⠙⠹⠎" }, { "input": "wield", "output": "⠺⠊⠑⠇⠙" }, { "input": "wielded", "output": "⠺⠊⠑⠇⠙⠫" }, { "input": "wielder", "output": "⠺⠊⠑⠇⠙⠻" }, { "input": "wielder's", "output": "⠺⠊⠑⠇⠙⠻⠄⠎" }, { "input": "wielders", "output": "⠺⠊⠑⠇⠙⠻⠎" }, { "input": "wielding", "output": "⠺⠊⠑⠇⠙⠌" }, { "input": "wields", "output": "⠺⠊⠑⠇⠙⠎" }, { "input": "wiener", "output": "⠺⠊⠢⠻" }, { "input": "wiener's", "output": "⠺⠊⠢⠻⠄⠎" }, { "input": "wieners", "output": "⠺⠊⠢⠻⠎" }, { "input": "wife", "output": "⠺⠊⠋⠑" }, { "input": "wife's", "output": "⠺⠊⠋⠑⠄⠎" }, { "input": "wifeless", "output": "⠺⠊⠋⠑⠨⠎" }, { "input": "wifelier", "output": "⠺⠊⠋⠑⠇⠊⠻" }, { "input": "wifeliest", "output": "⠺⠊⠋⠑⠇⠊⠑⠌" }, { "input": "wifely", "output": "⠺⠊⠋⠑⠇⠽" }, { "input": "wig", "output": "⠺⠊⠛" }, { "input": "wig's", "output": "⠺⠊⠛⠄⠎" }, { "input": "wigeon", "output": "⠺⠊⠛⠑⠕â " }, { "input": "wigeon's", "output": "⠺⠊⠛⠑⠕â â „â Ž" }, { "input": "wigged", "output": "⠺⠊⠶⠫" }, { "input": "wigging", "output": "⠺⠊⠶⠌" }, { "input": "wiggle", "output": "⠺⠊⠶⠇⠑" }, { "input": "wiggle's", "output": "⠺⠊⠶⠇⠑⠄⠎" }, { "input": "wiggled", "output": "⠺⠊⠶⠇⠫" }, { "input": "wiggler", "output": "⠺⠊⠶⠇⠻" }, { "input": "wiggler's", "output": "⠺⠊⠶⠇⠻⠄⠎" }, { "input": "wigglers", "output": "⠺⠊⠶⠇⠻⠎" }, { "input": "wiggles", "output": "⠺⠊⠶⠇⠑⠎" }, { "input": "wigglier", "output": "⠺⠊⠶⠇⠊⠻" }, { "input": "wiggliest", "output": "⠺⠊⠶⠇⠊⠑⠌" }, { "input": "wiggling", "output": "⠺⠊⠶⠇⠌" }, { "input": "wiggly", "output": "⠺⠊⠶⠇⠽" }, { "input": "wight", "output": "⠺⠊⠣⠞" }, { "input": "wight's", "output": "⠺⠊⠣⠞⠄⠎" }, { "input": "wights", "output": "⠺⠊⠣⠞⠎" }, { "input": "wiglet", "output": "⠺⠊⠛⠇⠑⠞" }, { "input": "wiglet's", "output": "⠺⠊⠛⠇⠑⠞⠄⠎" }, { "input": "wiglets", "output": "⠺⠊⠛⠇⠑⠞⠎" }, { "input": "wigs", "output": "⠺⠊⠛⠎" }, { "input": "wigwag", "output": "⠺⠊⠛⠺â â ›" }, { "input": "wigwag's", "output": "⠺⠊⠛⠺â â ›â „â Ž" }, { "input": "wigwagged", "output": "⠺⠊⠛⠺â â ¶â «" }, { "input": "wigwagging", "output": "⠺⠊⠛⠺â â ¶â Œ" }, { "input": "wigwags", "output": "⠺⠊⠛⠺â â ›â Ž" }, { "input": "wigwam", "output": "⠺⠊⠛⠺â â " }, { "input": "wigwam's", "output": "⠺⠊⠛⠺â â â „â Ž" }, { "input": "wigwams", "output": "⠺⠊⠛⠺â â â Ž" }, { "input": "wiki", "output": "⠺⠊⠅⠊" }, { "input": "wiki's", "output": "⠺⠊⠅⠊⠄⠎" }, { "input": "wikis", "output": "⠺⠊⠅⠊⠎" }, { "input": "wild", "output": "⠺⠊⠇⠙" }, { "input": "wild's", "output": "⠺⠊⠇⠙⠄⠎" }, { "input": "wildcat", "output": "⠺⠊⠇⠙⠉â â ž" }, { "input": "wildcat's", "output": "⠺⠊⠇⠙⠉â â žâ „â Ž" }, { "input": "wildcats", "output": "⠺⠊⠇⠙⠉â â žâ Ž" }, { "input": "wildcatted", "output": "⠺⠊⠇⠙⠉â â žâ žâ «" }, { "input": "wildcatting", "output": "⠺⠊⠇⠙⠉â â žâ žâ Œ" }, { "input": "wildebeest", "output": "⠺⠊⠇⠙⠑⠃⠑⠑⠌" }, { "input": "wildebeest's", "output": "⠺⠊⠇⠙⠑⠃⠑⠑⠌⠄⠎" }, { "input": "wildebeests", "output": "⠺⠊⠇⠙⠑⠃⠑⠑⠌⠎" }, { "input": "wilder", "output": "⠺⠊⠇⠙⠻" }, { "input": "wilderness", "output": "⠺⠊⠇⠙⠻⠰⠎" }, { "input": "wilderness's", "output": "⠺⠊⠇⠙⠻⠰⠎⠄⠎" }, { "input": "wildernesses", "output": "⠺⠊⠇⠙⠻⠰⠎⠑⠎" }, { "input": "wildest", "output": "⠺⠊⠇⠙⠑⠌" }, { "input": "wildfire", "output": "⠺⠊⠇⠙⠋⠊⠗⠑" }, { "input": "wildfire's", "output": "⠺⠊⠇⠙⠋⠊⠗⠑⠄⠎" }, { "input": "wildfires", "output": "⠺⠊⠇⠙⠋⠊⠗⠑⠎" }, { "input": "wildflower", "output": "⠺⠊⠇⠙⠋⠇⠪⠻" }, { "input": "wildflower's", "output": "⠺⠊⠇⠙⠋⠇⠪⠻⠄⠎" }, { "input": "wildflowers", "output": "⠺⠊⠇⠙⠋⠇⠪⠻⠎" }, { "input": "wildfowl", "output": "⠺⠊⠇⠙⠋⠪⠇" }, { "input": "wildfowl's", "output": "⠺⠊⠇⠙⠋⠪⠇⠄⠎" }, { "input": "wildlife", "output": "⠺⠊⠇⠙⠇⠊⠋⠑" }, { "input": "wildlife's", "output": "⠺⠊⠇⠙⠇⠊⠋⠑⠄⠎" }, { "input": "wildly", "output": "⠺⠊⠇⠙⠇⠽" }, { "input": "wildness", "output": "⠺⠊⠇⠙⠰⠎" }, { "input": "wildness's", "output": "⠺⠊⠇⠙⠰⠎⠄⠎" }, { "input": "wilds", "output": "⠺⠊⠇⠙⠎" }, { "input": "wilds's", "output": "⠺⠊⠇⠙⠎⠄⠎" }, { "input": "wile", "output": "⠺⠊⠇⠑" }, { "input": "wile's", "output": "⠺⠊⠇⠑⠄⠎" }, { "input": "wiled", "output": "⠺⠊⠇⠫" }, { "input": "wiles", "output": "⠺⠊⠇⠑⠎" }, { "input": "wilier", "output": "⠺⠊⠇⠊⠻" }, { "input": "wiliest", "output": "⠺⠊⠇⠊⠑⠌" }, { "input": "wiliness", "output": "⠺⠊⠇⠊⠰⠎" }, { "input": "wiliness's", "output": "⠺⠊⠇⠊⠰⠎⠄⠎" }, { "input": "wiling", "output": "⠺⠊⠇⠌" }, { "input": "will", "output": "â º" }, { "input": "will's", "output": "⠺⠄⠎" }, { "input": "willed", "output": "⠺⠊⠇⠇⠫" }, { "input": "willful", "output": "⠺⠊⠇⠇⠰⠇" }, { "input": "willfully", "output": "⠺⠊⠇⠇⠰⠇⠇⠽" }, { "input": "willfulness", "output": "⠺⠊⠇⠇⠰⠇⠰⠎" }, { "input": "willfulness's", "output": "⠺⠊⠇⠇⠰⠇⠰⠎⠄⠎" }, { "input": "willies", "output": "⠺⠊⠇⠇⠊⠑⠎" }, { "input": "willies's", "output": "⠺⠊⠇⠇⠊⠑⠎⠄⠎" }, { "input": "willing", "output": "⠺⠊⠇⠇⠌" }, { "input": "willingly", "output": "⠺⠊⠇⠇⠌⠇⠽" }, { "input": "willingness", "output": "⠺⠊⠇⠇⠌⠰⠎" }, { "input": "willingness's", "output": "⠺⠊⠇⠇⠌⠰⠎⠄⠎" }, { "input": "williwaw", "output": "⠺⠊⠇⠇⠊⠺â â º" }, { "input": "williwaw's", "output": "⠺⠊⠇⠇⠊⠺â â ºâ „â Ž" }, { "input": "williwaws", "output": "⠺⠊⠇⠇⠊⠺â â ºâ Ž" }, { "input": "willow", "output": "⠺⠊⠇⠇⠪" }, { "input": "willow's", "output": "⠺⠊⠇⠇⠪⠄⠎" }, { "input": "willowier", "output": "⠺⠊⠇⠇⠪⠊⠻" }, { "input": "willowiest", "output": "⠺⠊⠇⠇⠪⠊⠑⠌" }, { "input": "willows", "output": "⠺⠊⠇⠇⠪⠎" }, { "input": "willowy", "output": "⠺⠊⠇⠇⠪⠽" }, { "input": "willpower", "output": "⠺⠊⠇⠇â â ªâ »" }, { "input": "willpower's", "output": "⠺⠊⠇⠇â â ªâ »â „â Ž" }, { "input": "wills", "output": "⠺⠊⠇⠇⠎" }, { "input": "wilt", "output": "⠺⠊⠇⠞" }, { "input": "wilt's", "output": "⠺⠊⠇⠞⠄⠎" }, { "input": "wilted", "output": "⠺⠊⠇⠞⠫" }, { "input": "wilting", "output": "⠺⠊⠇⠞⠌" }, { "input": "wilts", "output": "⠺⠊⠇⠞⠎" }, { "input": "wily", "output": "⠺⠊⠇⠽" }, { "input": "wimp", "output": "⠺⠊â â " }, { "input": "wimp's", "output": "⠺⠊â â â „â Ž" }, { "input": "wimpier", "output": "⠺⠊â â â Šâ »" }, { "input": "wimpiest", "output": "⠺⠊â â â Šâ ‘â Œ" }, { "input": "wimple", "output": "⠺⠊â â â ‡â ‘" }, { "input": "wimple's", "output": "⠺⠊â â â ‡â ‘â „â Ž" }, { "input": "wimpled", "output": "⠺⠊â â â ‡â «" }, { "input": "wimples", "output": "⠺⠊â â â ‡â ‘â Ž" }, { "input": "wimpling", "output": "⠺⠊â â â ‡â Œ" }, { "input": "wimps", "output": "⠺⠊â â â Ž" }, { "input": "wimpy", "output": "⠺⠊â â â ½" }, { "input": "win", "output": "⠺⠔" }, { "input": "win's", "output": "⠺⠔⠄⠎" }, { "input": "wince", "output": "⠺⠔⠉⠑" }, { "input": "wince's", "output": "⠺⠔⠉⠑⠄⠎" }, { "input": "winced", "output": "⠺⠔⠉⠫" }, { "input": "winces", "output": "⠺⠔⠉⠑⠎" }, { "input": "winch", "output": "⠺⠔⠡" }, { "input": "winch's", "output": "⠺⠔⠡⠄⠎" }, { "input": "winched", "output": "⠺⠔⠡⠫" }, { "input": "winches", "output": "⠺⠔⠡⠑⠎" }, { "input": "winching", "output": "⠺⠔⠡⠌" }, { "input": "wincing", "output": "⠺⠔⠉⠌" }, { "input": "wind", "output": "⠺⠔⠙" }, { "input": "wind's", "output": "⠺⠔⠙⠄⠎" }, { "input": "windbag", "output": "⠺⠔⠙⠃â â ›" }, { "input": "windbag's", "output": "⠺⠔⠙⠃â â ›â „â Ž" }, { "input": "windbags", "output": "⠺⠔⠙⠃â â ›â Ž" }, { "input": "windbreak", "output": "⠺⠔⠙⠃⠗⠂⠅" }, { "input": "windbreak's", "output": "⠺⠔⠙⠃⠗⠂⠅⠄⠎" }, { "input": "windbreaker", "output": "⠺⠔⠙⠃⠗⠂⠅⠻" }, { "input": "windbreaker's", "output": "⠺⠔⠙⠃⠗⠂⠅⠻⠄⠎" }, { "input": "windbreakers", "output": "⠺⠔⠙⠃⠗⠂⠅⠻⠎" }, { "input": "windbreaks", "output": "⠺⠔⠙⠃⠗⠂⠅⠎" }, { "input": "windburn", "output": "⠺⠔⠙⠃⠥⠗â " }, { "input": "windburn's", "output": "⠺⠔⠙⠃⠥⠗â â „â Ž" }, { "input": "windburned", "output": "⠺⠔⠙⠃⠥⠗â â «" }, { "input": "windchill", "output": "⠺⠔⠙⠡⠊⠇⠇" }, { "input": "windchill's", "output": "⠺⠔⠙⠡⠊⠇⠇⠄⠎" }, { "input": "winded", "output": "⠺⠔⠙⠫" }, { "input": "winder", "output": "⠺⠔⠙⠻" }, { "input": "winder's", "output": "⠺⠔⠙⠻⠄⠎" }, { "input": "winders", "output": "⠺⠔⠙⠻⠎" }, { "input": "windfall", "output": "⠺⠔⠙⠋â â ‡â ‡" }, { "input": "windfall's", "output": "⠺⠔⠙⠋â â ‡â ‡â „â Ž" }, { "input": "windfalls", "output": "⠺⠔⠙⠋â â ‡â ‡â Ž" }, { "input": "windflower", "output": "⠺⠔⠙⠋⠇⠪⠻" }, { "input": "windflower's", "output": "⠺⠔⠙⠋⠇⠪⠻⠄⠎" }, { "input": "windflowers", "output": "⠺⠔⠙⠋⠇⠪⠻⠎" }, { "input": "windier", "output": "⠺⠔⠙⠊⠻" }, { "input": "windiest", "output": "⠺⠔⠙⠊⠑⠌" }, { "input": "windily", "output": "⠺⠔⠙⠊⠇⠽" }, { "input": "windiness", "output": "⠺⠔⠙⠊⠰⠎" }, { "input": "windiness's", "output": "⠺⠔⠙⠊⠰⠎⠄⠎" }, { "input": "winding", "output": "⠺⠔⠙⠌" }, { "input": "winding's", "output": "⠺⠔⠙⠌⠄⠎" }, { "input": "windjammer", "output": "⠺⠔⠙⠚â â â â »" }, { "input": "windjammer's", "output": "⠺⠔⠙⠚â â â â »â „â Ž" }, { "input": "windjammers", "output": "⠺⠔⠙⠚â â â â »â Ž" }, { "input": "windlass", "output": "⠺⠔⠙⠇â â Žâ Ž" }, { "input": "windlass's", "output": "⠺⠔⠙⠇â â Žâ Žâ „â Ž" }, { "input": "windlasses", "output": "⠺⠔⠙⠇â â Žâ Žâ ‘â Ž" }, { "input": "windmill", "output": "⠺⠔⠙â â Šâ ‡â ‡" }, { "input": "windmill's", "output": "⠺⠔⠙â â Šâ ‡â ‡â „â Ž" }, { "input": "windmilled", "output": "⠺⠔⠙â â Šâ ‡â ‡â «" }, { "input": "windmilling", "output": "⠺⠔⠙â â Šâ ‡â ‡â Œ" }, { "input": "windmills", "output": "⠺⠔⠙â â Šâ ‡â ‡â Ž" }, { "input": "window", "output": "⠺⠔⠙⠪" }, { "input": "window's", "output": "⠺⠔⠙⠪⠄⠎" }, { "input": "windowed", "output": "⠺⠔⠙⠪⠫" }, { "input": "windowing", "output": "⠺⠔⠙⠪⠌" }, { "input": "windowless", "output": "⠺⠔⠙⠪⠨⠎" }, { "input": "windowpane", "output": "⠺⠔⠙⠪â â â â ‘" }, { "input": "windowpane's", "output": "⠺⠔⠙⠪â â â â ‘â „â Ž" }, { "input": "windowpanes", "output": "⠺⠔⠙⠪â â â â ‘â Ž" }, { "input": "windows", "output": "⠺⠔⠙⠪⠎" }, { "input": "windowsill", "output": "⠺⠔⠙⠪⠎⠊⠇⠇" }, { "input": "windowsill's", "output": "⠺⠔⠙⠪⠎⠊⠇⠇⠄⠎" }, { "input": "windowsills", "output": "⠺⠔⠙⠪⠎⠊⠇⠇⠎" }, { "input": "windpipe", "output": "⠺⠔⠙â â Šâ â ‘" }, { "input": "windpipe's", "output": "⠺⠔⠙â â Šâ â ‘â „â Ž" }, { "input": "windpipes", "output": "⠺⠔⠙â â Šâ â ‘â Ž" }, { "input": "windproof", "output": "⠺⠔⠙â â —â •â ·" }, { "input": "windrow", "output": "⠺⠔⠙⠗⠪" }, { "input": "windrow's", "output": "⠺⠔⠙⠗⠪⠄⠎" }, { "input": "windrows", "output": "⠺⠔⠙⠗⠪⠎" }, { "input": "winds", "output": "⠺⠔⠙⠎" }, { "input": "windscreen", "output": "⠺⠔⠙⠎⠉⠗⠑⠢" }, { "input": "windscreen's", "output": "⠺⠔⠙⠎⠉⠗⠑⠢⠄⠎" }, { "input": "windscreens", "output": "⠺⠔⠙⠎⠉⠗⠑⠢⠎" }, { "input": "windshield", "output": "⠺⠔⠙⠩⠊⠑⠇⠙" }, { "input": "windshield's", "output": "⠺⠔⠙⠩⠊⠑⠇⠙⠄⠎" }, { "input": "windshields", "output": "⠺⠔⠙⠩⠊⠑⠇⠙⠎" }, { "input": "windsock", "output": "⠺⠔⠙⠎⠕⠉⠅" }, { "input": "windsock's", "output": "⠺⠔⠙⠎⠕⠉⠅⠄⠎" }, { "input": "windsocks", "output": "⠺⠔⠙⠎⠕⠉⠅⠎" }, { "input": "windstorm", "output": "⠺⠔⠙⠌⠕⠗â " }, { "input": "windstorm's", "output": "⠺⠔⠙⠌⠕⠗â â „â Ž" }, { "input": "windstorms", "output": "⠺⠔⠙⠌⠕⠗â â Ž" }, { "input": "windsurf", "output": "⠺⠔⠙⠎⠥⠗⠋" }, { "input": "windsurfed", "output": "⠺⠔⠙⠎⠥⠗⠋⠫" }, { "input": "windsurfing", "output": "⠺⠔⠙⠎⠥⠗⠋⠌" }, { "input": "windsurfing's", "output": "⠺⠔⠙⠎⠥⠗⠋⠌⠄⠎" }, { "input": "windsurfs", "output": "⠺⠔⠙⠎⠥⠗⠋⠎" }, { "input": "windswept", "output": "⠺⠔⠙⠎⠺⠑â â ž" }, { "input": "windup", "output": "⠺⠔⠙⠥â " }, { "input": "windup's", "output": "⠺⠔⠙⠥â â „â Ž" }, { "input": "windups", "output": "⠺⠔⠙⠥â â Ž" }, { "input": "windward", "output": "⠺⠔⠙⠺⠜⠙" }, { "input": "windward's", "output": "⠺⠔⠙⠺⠜⠙⠄⠎" }, { "input": "windy", "output": "⠺⠔⠙⠽" }, { "input": "wine", "output": "⠺⠔⠑" }, { "input": "wine's", "output": "⠺⠔⠑⠄⠎" }, { "input": "wined", "output": "⠺⠔⠫" }, { "input": "wineglass", "output": "⠺⠔⠑⠛⠇â â Žâ Ž" }, { "input": "wineglass's", "output": "⠺⠔⠑⠛⠇â â Žâ Žâ „â Ž" }, { "input": "wineglasses", "output": "⠺⠔⠑⠛⠇â â Žâ Žâ ‘â Ž" }, { "input": "winegrower", "output": "⠺⠔⠑⠛⠗⠪⠻" }, { "input": "winegrower's", "output": "⠺⠔⠑⠛⠗⠪⠻⠄⠎" }, { "input": "winegrowers", "output": "⠺⠔⠑⠛⠗⠪⠻⠎" }, { "input": "winemaker", "output": "⠺⠔⠑â â â …â »" }, { "input": "winemaker's", "output": "⠺⠔⠑â â â …⠻⠄⠎" }, { "input": "winemakers", "output": "⠺⠔⠑â â â …⠻⠎" }, { "input": "wineries", "output": "⠺⠔⠻⠊⠑⠎" }, { "input": "winery", "output": "⠺⠔⠻⠽" }, { "input": "winery's", "output": "⠺⠔⠻⠽⠄⠎" }, { "input": "wines", "output": "⠺⠔⠑⠎" }, { "input": "wing", "output": "⠺⠌" }, { "input": "wing's", "output": "⠺⠌⠄⠎" }, { "input": "wingding", "output": "⠺⠌⠙⠌" }, { "input": "wingding's", "output": "⠺⠌⠙⠌⠄⠎" }, { "input": "wingdings", "output": "⠺⠌⠙⠌⠎" }, { "input": "winged", "output": "⠺⠌⠫" }, { "input": "winger", "output": "⠺⠌⠻" }, { "input": "wingers", "output": "⠺⠌⠻⠎" }, { "input": "winging", "output": "⠺⠌⠌" }, { "input": "wingless", "output": "⠺⠌⠨⠎" }, { "input": "winglike", "output": "⠺⠌⠇⠊⠅⠑" }, { "input": "wings", "output": "⠺⠌⠎" }, { "input": "wingspan", "output": "⠺⠌⠎â â â " }, { "input": "wingspan's", "output": "⠺⠌⠎â â â â „â Ž" }, { "input": "wingspans", "output": "⠺⠌⠎â â â â Ž" }, { "input": "wingspread", "output": "⠺⠌⠎â â —â ‚â ™" }, { "input": "wingspread's", "output": "⠺⠌⠎â â —⠂⠙⠄⠎" }, { "input": "wingspreads", "output": "⠺⠌⠎â â —⠂⠙⠎" }, { "input": "wingtip", "output": "⠺⠌⠞⠊â " }, { "input": "wingtip's", "output": "⠺⠌⠞⠊â â „â Ž" }, { "input": "wingtips", "output": "⠺⠌⠞⠊â â Ž" }, { "input": "winier", "output": "⠺⠔⠊⠻" }, { "input": "winiest", "output": "⠺⠔⠊⠑⠌" }, { "input": "wining", "output": "⠺⠔⠌" }, { "input": "wink", "output": "⠺⠔⠅" }, { "input": "wink's", "output": "⠺⠔⠅⠄⠎" }, { "input": "winked", "output": "⠺⠔⠅⠫" }, { "input": "winker", "output": "⠺⠔⠅⠻" }, { "input": "winker's", "output": "⠺⠔⠅⠻⠄⠎" }, { "input": "winkers", "output": "⠺⠔⠅⠻⠎" }, { "input": "winking", "output": "⠺⠔⠅⠌" }, { "input": "winks", "output": "⠺⠔⠅⠎" }, { "input": "winnable", "output": "⠺⠔â â â ¼" }, { "input": "winner", "output": "⠺⠔â â »" }, { "input": "winner's", "output": "⠺⠔â â »â „â Ž" }, { "input": "winners", "output": "⠺⠔â â »â Ž" }, { "input": "winning", "output": "⠺⠔â â Œ" }, { "input": "winning's", "output": "⠺⠔â â Œâ „â Ž" }, { "input": "winningly", "output": "⠺⠔â â Œâ ‡â ½" }, { "input": "winnings", "output": "⠺⠔â â Œâ Ž" }, { "input": "winnow", "output": "⠺⠔â â ª" }, { "input": "winnowed", "output": "⠺⠔â â ªâ «" }, { "input": "winnower", "output": "⠺⠔â â ªâ »" }, { "input": "winnower's", "output": "⠺⠔â â ªâ »â „â Ž" }, { "input": "winnowers", "output": "⠺⠔â â ªâ »â Ž" }, { "input": "winnowing", "output": "⠺⠔â â ªâ Œ" }, { "input": "winnows", "output": "⠺⠔â â ªâ Ž" }, { "input": "wino", "output": "⠺⠔⠕" }, { "input": "wino's", "output": "⠺⠔⠕⠄⠎" }, { "input": "winos", "output": "⠺⠔⠕⠎" }, { "input": "wins", "output": "⠺⠔⠎" }, { "input": "winsome", "output": "⠺⠔â â Ž" }, { "input": "winsomely", "output": "⠺⠔â â Žâ ‡â ½" }, { "input": "winsomeness", "output": "⠺⠔â â Žâ °â Ž" }, { "input": "winsomeness's", "output": "⠺⠔â â Žâ °â Žâ „â Ž" }, { "input": "winsomer", "output": "⠺⠔â â Žâ —" }, { "input": "winsomest", "output": "⠺⠔â â Žâ Œ" }, { "input": "winter", "output": "⠺⠔⠞⠻" }, { "input": "winter's", "output": "⠺⠔⠞⠻⠄⠎" }, { "input": "wintered", "output": "⠺⠔⠞⠻⠫" }, { "input": "wintergreen", "output": "⠺⠔⠞⠻⠛⠗⠑⠢" }, { "input": "wintergreen's", "output": "⠺⠔⠞⠻⠛⠗⠑⠢⠄⠎" }, { "input": "wintering", "output": "⠺⠔⠞⠻⠌" }, { "input": "winterize", "output": "⠺⠔⠞⠻⠊⠵⠑" }, { "input": "winterized", "output": "⠺⠔⠞⠻⠊⠵⠫" }, { "input": "winterizes", "output": "⠺⠔⠞⠻⠊⠵⠑⠎" }, { "input": "winterizing", "output": "⠺⠔⠞⠻⠊⠵⠌" }, { "input": "winters", "output": "⠺⠔⠞⠻⠎" }, { "input": "wintertime", "output": "⠺⠔⠞⠻â â ž" }, { "input": "wintertime's", "output": "⠺⠔⠞⠻â â žâ „â Ž" }, { "input": "wintrier", "output": "⠺⠔⠞⠗⠊⠻" }, { "input": "wintriest", "output": "⠺⠔⠞⠗⠊⠑⠌" }, { "input": "wintry", "output": "⠺⠔⠞⠗⠽" }, { "input": "winy", "output": "⠺⠔⠽" }, { "input": "wipe", "output": "⠺⠊â â ‘" }, { "input": "wipe's", "output": "⠺⠊â â ‘â „â Ž" }, { "input": "wiped", "output": "⠺⠊â â «" }, { "input": "wiper", "output": "⠺⠊â â »" }, { "input": "wiper's", "output": "⠺⠊â â »â „â Ž" }, { "input": "wipers", "output": "⠺⠊â â »â Ž" }, { "input": "wipes", "output": "⠺⠊â â ‘â Ž" }, { "input": "wiping", "output": "⠺⠊â â Œ" }, { "input": "wire", "output": "⠺⠊⠗⠑" }, { "input": "wire's", "output": "⠺⠊⠗⠑⠄⠎" }, { "input": "wired", "output": "⠺⠊⠗⠫" }, { "input": "wirehair", "output": "⠺⠊⠗⠑⠓â â Šâ —" }, { "input": "wirehair's", "output": "⠺⠊⠗⠑⠓â â Šâ —â „â Ž" }, { "input": "wirehairs", "output": "⠺⠊⠗⠑⠓â â Šâ —â Ž" }, { "input": "wireless", "output": "⠺⠊⠗⠑⠨⠎" }, { "input": "wireless's", "output": "⠺⠊⠗⠑⠨⠎⠄⠎" }, { "input": "wirelesses", "output": "⠺⠊⠗⠑⠨⠎⠑⠎" }, { "input": "wires", "output": "⠺⠊⠗⠑⠎" }, { "input": "wiretap", "output": "⠺⠊⠗⠑⠞â â " }, { "input": "wiretap's", "output": "⠺⠊⠗⠑⠞â â â „â Ž" }, { "input": "wiretapped", "output": "⠺⠊⠗⠑⠞â â â â «" }, { "input": "wiretapper", "output": "⠺⠊⠗⠑⠞â â â â »" }, { "input": "wiretapper's", "output": "⠺⠊⠗⠑⠞â â â â »â „â Ž" }, { "input": "wiretappers", "output": "⠺⠊⠗⠑⠞â â â â »â Ž" }, { "input": "wiretapping", "output": "⠺⠊⠗⠑⠞â â â â Œ" }, { "input": "wiretapping's", "output": "⠺⠊⠗⠑⠞â â â â Œâ „â Ž" }, { "input": "wiretaps", "output": "⠺⠊⠗⠑⠞â â â Ž" }, { "input": "wirier", "output": "⠺⠊⠗⠊⠻" }, { "input": "wiriest", "output": "⠺⠊⠗⠊⠑⠌" }, { "input": "wiriness", "output": "⠺⠊⠗⠊⠰⠎" }, { "input": "wiriness's", "output": "⠺⠊⠗⠊⠰⠎⠄⠎" }, { "input": "wiring", "output": "⠺⠊⠗⠌" }, { "input": "wiring's", "output": "⠺⠊⠗⠌⠄⠎" }, { "input": "wiry", "output": "⠺⠊⠗⠽" }, { "input": "wisdom", "output": "⠺⠊⠎⠙⠕â " }, { "input": "wisdom's", "output": "⠺⠊⠎⠙⠕â â „â Ž" }, { "input": "wise", "output": "⠺⠊⠎⠑" }, { "input": "wise's", "output": "⠺⠊⠎⠑⠄⠎" }, { "input": "wiseacre", "output": "⠺⠊⠎⠑â â ‰â —â ‘" }, { "input": "wiseacre's", "output": "⠺⠊⠎⠑â â ‰â —â ‘â „â Ž" }, { "input": "wiseacres", "output": "⠺⠊⠎⠑â â ‰â —â ‘â Ž" }, { "input": "wisecrack", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …" }, { "input": "wisecrack's", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â „â Ž" }, { "input": "wisecracked", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â «" }, { "input": "wisecracking", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â Œ" }, { "input": "wisecracks", "output": "⠺⠊⠎⠑⠉⠗â â ‰â …â Ž" }, { "input": "wisely", "output": "⠺⠊⠎⠑⠇⠽" }, { "input": "wiser", "output": "⠺⠊⠎⠻" }, { "input": "wises", "output": "⠺⠊⠎⠑⠎" }, { "input": "wisest", "output": "⠺⠊⠎⠑⠌" }, { "input": "wish", "output": "⠺⠊⠩" }, { "input": "wish's", "output": "⠺⠊⠩⠄⠎" }, { "input": "wishbone", "output": "⠺⠊⠩⠃â â •" }, { "input": "wishbone's", "output": "⠺⠊⠩⠃â â •â „â Ž" }, { "input": "wishbones", "output": "⠺⠊⠩⠃â â •â Ž" }, { "input": "wished", "output": "⠺⠊⠩⠫" }, { "input": "wisher", "output": "⠺⠊⠩⠻" }, { "input": "wisher's", "output": "⠺⠊⠩⠻⠄⠎" }, { "input": "wishers", "output": "⠺⠊⠩⠻⠎" }, { "input": "wishes", "output": "⠺⠊⠩⠑⠎" }, { "input": "wishful", "output": "⠺⠊⠩⠰⠇" }, { "input": "wishfully", "output": "⠺⠊⠩⠰⠇⠇⠽" }, { "input": "wishing", "output": "⠺⠊⠩⠌" }, { "input": "wisp", "output": "⠺⠊⠎â " }, { "input": "wisp's", "output": "⠺⠊⠎â â „â Ž" }, { "input": "wispier", "output": "⠺⠊⠎â â Šâ »" }, { "input": "wispiest", "output": "⠺⠊⠎â â Šâ ‘â Œ" }, { "input": "wisps", "output": "⠺⠊⠎â â Ž" }, { "input": "wispy", "output": "⠺⠊⠎â â ½" }, { "input": "wist", "output": "⠺⠊⠌" }, { "input": "wisteria", "output": "⠺⠊⠌⠻⠊â " }, { "input": "wisteria's", "output": "⠺⠊⠌⠻⠊â â „â Ž" }, { "input": "wisterias", "output": "⠺⠊⠌⠻⠊â â Ž" }, { "input": "wistful", "output": "⠺⠊⠌⠰⠇" }, { "input": "wistfully", "output": "⠺⠊⠌⠰⠇⠇⠽" }, { "input": "wistfulness", "output": "⠺⠊⠌⠰⠇⠰⠎" }, { "input": "wistfulness's", "output": "⠺⠊⠌⠰⠇⠰⠎⠄⠎" }, { "input": "wit", "output": "⠺⠊⠞" }, { "input": "wit's", "output": "⠺⠊⠞⠄⠎" }, { "input": "witch", "output": "⠺⠊⠞⠡" }, { "input": "witch's", "output": "⠺⠊⠞⠡⠄⠎" }, { "input": "witchcraft", "output": "⠺⠊⠞⠡⠉⠗â â ‹â ž" }, { "input": "witchcraft's", "output": "⠺⠊⠞⠡⠉⠗â â ‹â žâ „â Ž" }, { "input": "witched", "output": "⠺⠊⠞⠡⠫" }, { "input": "witchery", "output": "⠺⠊⠞⠡⠻⠽" }, { "input": "witchery's", "output": "⠺⠊⠞⠡⠻⠽⠄⠎" }, { "input": "witches", "output": "⠺⠊⠞⠡⠑⠎" }, { "input": "witching", "output": "⠺⠊⠞⠡⠌" }, { "input": "with", "output": "â ¾" }, { "input": "withal", "output": "â ¾â â ‡" }, { "input": "withdraw", "output": "⠾⠙⠗â â º" }, { "input": "withdrawal", "output": "⠾⠙⠗â â ºâ â ‡" }, { "input": "withdrawal's", "output": "⠾⠙⠗â â ºâ â ‡â „â Ž" }, { "input": "withdrawals", "output": "⠾⠙⠗â â ºâ â ‡â Ž" }, { "input": "withdrawing", "output": "⠾⠙⠗â â ºâ Œ" }, { "input": "withdrawn", "output": "⠾⠙⠗â â ºâ " }, { "input": "withdraws", "output": "⠾⠙⠗â â ºâ Ž" }, { "input": "withdrew", "output": "⠾⠙⠗⠑⠺" }, { "input": "withe", "output": "⠾⠑" }, { "input": "withe's", "output": "⠾⠑⠄⠎" }, { "input": "withed", "output": "⠾⠫" }, { "input": "wither", "output": "⠾⠻" }, { "input": "withered", "output": "⠾⠻⠫" }, { "input": "withering", "output": "⠾⠻⠌" }, { "input": "witherings", "output": "⠾⠻⠌⠎" }, { "input": "withers", "output": "⠾⠻⠎" }, { "input": "withers's", "output": "⠾⠻⠎⠄⠎" }, { "input": "withes", "output": "⠾⠑⠎" }, { "input": "withheld", "output": "⠾⠓⠑⠇⠙" }, { "input": "withhold", "output": "⠾⠓⠕⠇⠙" }, { "input": "withholding", "output": "⠾⠓⠕⠇⠙⠌" }, { "input": "withholding's", "output": "⠾⠓⠕⠇⠙⠌⠄⠎" }, { "input": "withholds", "output": "⠾⠓⠕⠇⠙⠎" }, { "input": "within", "output": "⠾⠔" }, { "input": "within's", "output": "⠾⠔⠄⠎" }, { "input": "withing", "output": "⠾⠌" }, { "input": "without", "output": "⠾⠳⠞" }, { "input": "withstand", "output": "⠾⠌⠯" }, { "input": "withstanding", "output": "⠾⠌⠯⠌" }, { "input": "withstands", "output": "⠾⠌⠯⠎" }, { "input": "withstood", "output": "⠾⠌⠕⠕⠙" }, { "input": "witless", "output": "⠺⠊⠞⠨⠎" }, { "input": "witlessly", "output": "⠺⠊⠞⠨⠎⠇⠽" }, { "input": "witlessness", "output": "⠺⠊⠞⠨⠎⠰⠎" }, { "input": "witlessness's", "output": "⠺⠊⠞⠨⠎⠰⠎⠄⠎" }, { "input": "witness", "output": "⠺⠊⠞⠰⠎" }, { "input": "witness's", "output": "⠺⠊⠞⠰⠎⠄⠎" }, { "input": "witnessed", "output": "⠺⠊⠞⠰⠎⠫" }, { "input": "witnesses", "output": "⠺⠊⠞⠰⠎⠑⠎" }, { "input": "witnessing", "output": "⠺⠊⠞⠰⠎⠌" }, { "input": "wits", "output": "⠺⠊⠞⠎" }, { "input": "wits's", "output": "⠺⠊⠞⠎⠄⠎" }, { "input": "witted", "output": "⠺⠊⠞⠞⠫" }, { "input": "witticism", "output": "⠺⠊⠞⠞⠊⠉⠊⠎â " }, { "input": "witticism's", "output": "⠺⠊⠞⠞⠊⠉⠊⠎â â „â Ž" }, { "input": "witticisms", "output": "⠺⠊⠞⠞⠊⠉⠊⠎â â Ž" }, { "input": "wittier", "output": "⠺⠊⠞⠞⠊⠻" }, { "input": "wittiest", "output": "⠺⠊⠞⠞⠊⠑⠌" }, { "input": "wittily", "output": "⠺⠊⠞⠞⠊⠇⠽" }, { "input": "wittiness", "output": "⠺⠊⠞⠞⠊⠰⠎" }, { "input": "wittiness's", "output": "⠺⠊⠞⠞⠊⠰⠎⠄⠎" }, { "input": "witting", "output": "⠺⠊⠞⠞⠌" }, { "input": "wittingly", "output": "⠺⠊⠞⠞⠌⠇⠽" }, { "input": "witty", "output": "⠺⠊⠞⠞⠽" }, { "input": "wive", "output": "⠺⠊⠧⠑" }, { "input": "wived", "output": "⠺⠊⠧⠫" }, { "input": "wives", "output": "⠺⠊⠧⠑⠎" }, { "input": "wiving", "output": "⠺⠊⠧⠌" }, { "input": "wiz", "output": "⠺⠊⠵" }, { "input": "wizard", "output": "⠺⠊⠵⠜⠙" }, { "input": "wizard's", "output": "⠺⠊⠵⠜⠙⠄⠎" }, { "input": "wizardry", "output": "⠺⠊⠵⠜⠙⠗⠽" }, { "input": "wizardry's", "output": "⠺⠊⠵⠜⠙⠗⠽⠄⠎" }, { "input": "wizards", "output": "⠺⠊⠵⠜⠙⠎" }, { "input": "wizened", "output": "⠺⠊⠵⠢⠫" }, { "input": "woad's", "output": "⠺⠕â â ™â „â Ž" }, { "input": "wobble", "output": "⠺⠕⠃⠼" }, { "input": "wobble's", "output": "⠺⠕⠃⠼⠄⠎" }, { "input": "wobbled", "output": "⠺⠕⠃⠼⠙" }, { "input": "wobbles", "output": "⠺⠕⠃⠼⠎" }, { "input": "wobblier", "output": "⠺⠕⠆⠇⠊⠻" }, { "input": "wobbliest", "output": "⠺⠕⠆⠇⠊⠑⠌" }, { "input": "wobbliness", "output": "⠺⠕⠆⠇⠊⠰⠎" }, { "input": "wobbliness's", "output": "⠺⠕⠆⠇⠊⠰⠎⠄⠎" }, { "input": "wobbling", "output": "⠺⠕⠆⠇⠌" }, { "input": "wobbly", "output": "⠺⠕⠆⠇⠽" }, { "input": "woe", "output": "⠺⠕⠑" }, { "input": "woe's", "output": "⠺⠕⠑⠄⠎" }, { "input": "woebegone", "output": "⠺⠕⠑⠃⠑⠛â â •" }, { "input": "woeful", "output": "⠺⠕⠑⠰⠇" }, { "input": "woefuller", "output": "⠺⠕⠑⠰⠇⠇⠻" }, { "input": "woefullest", "output": "⠺⠕⠑⠰⠇⠇⠑⠌" }, { "input": "woefully", "output": "⠺⠕⠑⠰⠇⠇⠽" }, { "input": "woefulness", "output": "⠺⠕⠑⠰⠇⠰⠎" }, { "input": "woefulness's", "output": "⠺⠕⠑⠰⠇⠰⠎⠄⠎" }, { "input": "woes", "output": "⠺⠕⠑⠎" }, { "input": "wok", "output": "⠺⠕⠅" }, { "input": "wok's", "output": "⠺⠕⠅⠄⠎" }, { "input": "woke", "output": "⠺⠕⠅⠑" }, { "input": "woken", "output": "⠺⠕⠅⠢" }, { "input": "woks", "output": "⠺⠕⠅⠎" }, { "input": "wolf", "output": "⠺⠕⠇⠋" }, { "input": "wolf's", "output": "⠺⠕⠇⠋⠄⠎" }, { "input": "wolfed", "output": "⠺⠕⠇⠋⠫" }, { "input": "wolfhound", "output": "⠺⠕⠇⠋⠓⠨⠙" }, { "input": "wolfhound's", "output": "⠺⠕⠇⠋⠓⠨⠙⠄⠎" }, { "input": "wolfhounds", "output": "⠺⠕⠇⠋⠓⠨⠙⠎" }, { "input": "wolfing", "output": "⠺⠕⠇⠋⠌" }, { "input": "wolfish", "output": "⠺⠕⠇⠋⠊⠩" }, { "input": "wolfram", "output": "⠺⠕⠇⠋⠗â â " }, { "input": "wolfram's", "output": "⠺⠕⠇⠋⠗â â â „â Ž" }, { "input": "wolfs", "output": "⠺⠕⠇⠋⠎" }, { "input": "wolverine", "output": "⠺⠕⠇⠧⠻⠔⠑" }, { "input": "wolverine's", "output": "⠺⠕⠇⠧⠻⠔⠑⠄⠎" }, { "input": "wolverines", "output": "⠺⠕⠇⠧⠻⠔⠑⠎" }, { "input": "wolves", "output": "⠺⠕⠇⠧⠑⠎" }, { "input": "woman", "output": "⠺⠕â â â " }, { "input": "woman's", "output": "⠺⠕â â â â „â Ž" }, { "input": "womanhood", "output": "⠺⠕â â â â “â •â •â ™" }, { "input": "womanhood's", "output": "⠺⠕â â â â “⠕⠕⠙⠄⠎" }, { "input": "womanish", "output": "⠺⠕â â â â Šâ ©" }, { "input": "womanize", "output": "⠺⠕â â â â Šâ µâ ‘" }, { "input": "womanized", "output": "⠺⠕â â â â Šâ µâ «" }, { "input": "womanizer", "output": "⠺⠕â â â â Šâ µâ »" }, { "input": "womanizer's", "output": "⠺⠕â â â â Šâ µâ »â „â Ž" }, { "input": "womanizers", "output": "⠺⠕â â â â Šâ µâ »â Ž" }, { "input": "womanizes", "output": "⠺⠕â â â â Šâ µâ ‘â Ž" }, { "input": "womanizing", "output": "⠺⠕â â â â Šâ µâ Œ" }, { "input": "womankind", "output": "⠺⠕â â â â …⠔⠙" }, { "input": "womankind's", "output": "⠺⠕â â â â …⠔⠙⠄⠎" }, { "input": "womanlier", "output": "⠺⠕â â â â ‡â Šâ »" }, { "input": "womanliest", "output": "⠺⠕â â â â ‡â Šâ ‘â Œ" }, { "input": "womanlike", "output": "⠺⠕â â â â ‡â Šâ …â ‘" }, { "input": "womanlike's", "output": "⠺⠕â â â â ‡â Šâ …â ‘â „â Ž" }, { "input": "womanliness", "output": "⠺⠕â â â â ‡â Šâ °â Ž" }, { "input": "womanliness's", "output": "⠺⠕â â â â ‡â Šâ °â Žâ „â Ž" }, { "input": "womanly", "output": "⠺⠕â â â â ‡â ½" }, { "input": "womb", "output": "⠺⠕â â ƒ" }, { "input": "womb's", "output": "⠺⠕â â ƒâ „â Ž" }, { "input": "wombat", "output": "⠺⠕â â ƒâ â ž" }, { "input": "wombat's", "output": "⠺⠕â â ƒâ â žâ „â Ž" }, { "input": "wombats", "output": "⠺⠕â â ƒâ â žâ Ž" }, { "input": "wombs", "output": "⠺⠕â â ƒâ Ž" }, { "input": "women", "output": "⠺⠕â â ¢" }, { "input": "womenfolk", "output": "⠺⠕â â ¢â ‹â •⠇⠅" }, { "input": "womenfolk's", "output": "⠺⠕â â ¢â ‹â •⠇⠅⠄⠎" }, { "input": "womenfolks", "output": "⠺⠕â â ¢â ‹â •⠇⠅⠎" }, { "input": "womenfolks's", "output": "⠺⠕â â ¢â ‹â •⠇⠅⠎⠄⠎" }, { "input": "won", "output": "⠺⠕â " }, { "input": "won's", "output": "⠺⠕â â „â Ž" }, { "input": "wonder", "output": "⠺⠕â â ™â »" }, { "input": "wonder's", "output": "⠺⠕â â ™â »â „â Ž" }, { "input": "wondered", "output": "⠺⠕â â ™â »â «" }, { "input": "wonderful", "output": "⠺⠕â â ™â »â °â ‡" }, { "input": "wonderfully", "output": "⠺⠕â â ™â »â °â ‡â ‡â ½" }, { "input": "wonderfulness", "output": "⠺⠕â â ™â »â °â ‡â °â Ž" }, { "input": "wonderfulness's", "output": "⠺⠕â â ™â »â °â ‡â °â Žâ „â Ž" }, { "input": "wondering", "output": "⠺⠕â â ™â »â Œ" }, { "input": "wonderland", "output": "⠺⠕â â ™â »â ‡â ¯" }, { "input": "wonderland's", "output": "⠺⠕â â ™â »â ‡â ¯â „â Ž" }, { "input": "wonderlands", "output": "⠺⠕â â ™â »â ‡â ¯â Ž" }, { "input": "wonderment", "output": "⠺⠕â â ™â »â °â ž" }, { "input": "wonderment's", "output": "⠺⠕â â ™â »â °â žâ „â Ž" }, { "input": "wonders", "output": "⠺⠕â â ™â »â Ž" }, { "input": "wondrous", "output": "⠺⠕â â ™â —⠳⠎" }, { "input": "wondrously", "output": "⠺⠕â â ™â —⠳⠎⠇⠽" }, { "input": "wonkier", "output": "⠺⠕â â …â Šâ »" }, { "input": "wonkiest", "output": "⠺⠕â â …â Šâ ‘â Œ" }, { "input": "wont", "output": "⠺⠕â â ž" }, { "input": "wont's", "output": "⠺⠕â â žâ „â Ž" }, { "input": "wonted", "output": "⠺⠕â â žâ «" }, { "input": "woo", "output": "⠺⠕⠕" }, { "input": "wood", "output": "⠺⠕⠕⠙" }, { "input": "wood's", "output": "⠺⠕⠕⠙⠄⠎" }, { "input": "woodbine", "output": "⠺⠕⠕⠙⠃⠔⠑" }, { "input": "woodbine's", "output": "⠺⠕⠕⠙⠃⠔⠑⠄⠎" }, { "input": "woodcarver", "output": "⠺⠕⠕⠙⠉⠜⠧⠻" }, { "input": "woodcarver's", "output": "⠺⠕⠕⠙⠉⠜⠧⠻⠄⠎" }, { "input": "woodcarvers", "output": "⠺⠕⠕⠙⠉⠜⠧⠻⠎" }, { "input": "woodcarving", "output": "⠺⠕⠕⠙⠉⠜⠧⠌" }, { "input": "woodcarving's", "output": "⠺⠕⠕⠙⠉⠜⠧⠌⠄⠎" }, { "input": "woodcarvings", "output": "⠺⠕⠕⠙⠉⠜⠧⠌⠎" }, { "input": "woodchuck", "output": "⠺⠕⠕⠙⠡⠥⠉⠅" }, { "input": "woodchuck's", "output": "⠺⠕⠕⠙⠡⠥⠉⠅⠄⠎" }, { "input": "woodchucks", "output": "⠺⠕⠕⠙⠡⠥⠉⠅⠎" }, { "input": "woodcock", "output": "⠺⠕⠕⠙⠉⠕⠉⠅" }, { "input": "woodcock's", "output": "⠺⠕⠕⠙⠉⠕⠉⠅⠄⠎" }, { "input": "woodcocks", "output": "⠺⠕⠕⠙⠉⠕⠉⠅⠎" }, { "input": "woodcraft", "output": "⠺⠕⠕⠙⠉⠗â â ‹â ž" }, { "input": "woodcraft's", "output": "⠺⠕⠕⠙⠉⠗â â ‹â žâ „â Ž" }, { "input": "woodcut", "output": "⠺⠕⠕⠙⠉⠥⠞" }, { "input": "woodcut's", "output": "⠺⠕⠕⠙⠉⠥⠞⠄⠎" }, { "input": "woodcuts", "output": "⠺⠕⠕⠙⠉⠥⠞⠎" }, { "input": "woodcutter", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠻" }, { "input": "woodcutter's", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠻⠄⠎" }, { "input": "woodcutters", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠻⠎" }, { "input": "woodcutting", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠌" }, { "input": "woodcutting's", "output": "⠺⠕⠕⠙⠉⠥⠞⠞⠌⠄⠎" }, { "input": "wooded", "output": "⠺⠕⠕⠙⠫" }, { "input": "wooden", "output": "⠺⠕⠕⠙⠢" }, { "input": "woodener", "output": "⠺⠕⠕⠙⠢⠻" }, { "input": "woodenest", "output": "⠺⠕⠕⠙⠢⠑⠌" }, { "input": "woodenly", "output": "⠺⠕⠕⠙⠢⠇⠽" }, { "input": "woodenness", "output": "⠺⠕⠕⠙⠢⠰⠎" }, { "input": "woodenness's", "output": "⠺⠕⠕⠙⠢⠰⠎⠄⠎" }, { "input": "woodier", "output": "⠺⠕⠕⠙⠊⠻" }, { "input": "woodies", "output": "⠺⠕⠕⠙⠊⠑⠎" }, { "input": "woodiest", "output": "⠺⠕⠕⠙⠊⠑⠌" }, { "input": "woodiness", "output": "⠺⠕⠕⠙⠊⠰⠎" }, { "input": "woodiness's", "output": "⠺⠕⠕⠙⠊⠰⠎⠄⠎" }, { "input": "wooding", "output": "⠺⠕⠕⠙⠌" }, { "input": "woodland", "output": "⠺⠕⠕⠙⠇⠯" }, { "input": "woodland's", "output": "⠺⠕⠕⠙⠇⠯⠄⠎" }, { "input": "woodlands", "output": "⠺⠕⠕⠙⠇⠯⠎" }, { "input": "woodlot", "output": "⠺⠕⠕⠙⠇⠕⠞" }, { "input": "woodlot's", "output": "⠺⠕⠕⠙⠇⠕⠞⠄⠎" }, { "input": "woodlots", "output": "⠺⠕⠕⠙⠇⠕⠞⠎" }, { "input": "woodman", "output": "⠺⠕⠕⠙â â â " }, { "input": "woodman's", "output": "⠺⠕⠕⠙â â â â „â Ž" }, { "input": "woodmen", "output": "⠺⠕⠕⠙â â ¢" }, { "input": "woodpecker", "output": "⠺⠕⠕⠙â â ‘⠉⠅⠻" }, { "input": "woodpecker's", "output": "⠺⠕⠕⠙â â ‘⠉⠅⠻⠄⠎" }, { "input": "woodpeckers", "output": "⠺⠕⠕⠙â â ‘⠉⠅⠻⠎" }, { "input": "woodpile", "output": "⠺⠕⠕⠙â â Šâ ‡â ‘" }, { "input": "woodpile's", "output": "⠺⠕⠕⠙â â Šâ ‡â ‘â „â Ž" }, { "input": "woodpiles", "output": "⠺⠕⠕⠙â â Šâ ‡â ‘â Ž" }, { "input": "woods", "output": "⠺⠕⠕⠙⠎" }, { "input": "woods's", "output": "⠺⠕⠕⠙⠎⠄⠎" }, { "input": "woodshed", "output": "⠺⠕⠕⠙⠩⠫" }, { "input": "woodshed's", "output": "⠺⠕⠕⠙⠩⠫⠄⠎" }, { "input": "woodsheds", "output": "⠺⠕⠕⠙⠩⠫⠎" }, { "input": "woodsier", "output": "⠺⠕⠕⠙⠎⠊⠻" }, { "input": "woodsiest", "output": "⠺⠕⠕⠙⠎⠊⠑⠌" }, { "input": "woodsiness", "output": "⠺⠕⠕⠙⠎⠊⠰⠎" }, { "input": "woodsiness's", "output": "⠺⠕⠕⠙⠎⠊⠰⠎⠄⠎" }, { "input": "woodsman", "output": "⠺⠕⠕⠙⠎â â â " }, { "input": "woodsman's", "output": "⠺⠕⠕⠙⠎â â â â „â Ž" }, { "input": "woodsmen", "output": "⠺⠕⠕⠙⠎â â ¢" }, { "input": "woodsy", "output": "⠺⠕⠕⠙⠎⠽" }, { "input": "woodwind", "output": "⠺⠕⠕⠙⠺⠔⠙" }, { "input": "woodwind's", "output": "⠺⠕⠕⠙⠺⠔⠙⠄⠎" }, { "input": "woodwinds", "output": "⠺⠕⠕⠙⠺⠔⠙⠎" }, { "input": "woodwork", "output": "⠺⠕⠕⠙â â º" }, { "input": "woodwork's", "output": "⠺⠕⠕⠙â â ºâ „â Ž" }, { "input": "woodworker", "output": "⠺⠕⠕⠙â â ºâ »" }, { "input": "woodworker's", "output": "⠺⠕⠕⠙â â ºâ »â „â Ž" }, { "input": "woodworkers", "output": "⠺⠕⠕⠙â â ºâ »â Ž" }, { "input": "woodworking", "output": "⠺⠕⠕⠙â â ºâ Œ" }, { "input": "woodworking's", "output": "⠺⠕⠕⠙â â ºâ Œâ „â Ž" }, { "input": "woodworm", "output": "⠺⠕⠕⠙⠺⠕⠗â " }, { "input": "woody", "output": "⠺⠕⠕⠙⠽" }, { "input": "woody's", "output": "⠺⠕⠕⠙⠽⠄⠎" }, { "input": "wooed", "output": "⠺⠕⠕⠫" }, { "input": "wooer", "output": "⠺⠕⠕⠻" }, { "input": "wooer's", "output": "⠺⠕⠕⠻⠄⠎" }, { "input": "wooers", "output": "⠺⠕⠕⠻⠎" }, { "input": "woof", "output": "⠺⠕⠷" }, { "input": "woof's", "output": "⠺⠕⠷⠄⠎" }, { "input": "woofed", "output": "⠺⠕⠷⠫" }, { "input": "woofer", "output": "⠺⠕⠷⠻" }, { "input": "woofer's", "output": "⠺⠕⠷⠻⠄⠎" }, { "input": "woofers", "output": "⠺⠕⠷⠻⠎" }, { "input": "woofing", "output": "⠺⠕⠷⠌" }, { "input": "woofs", "output": "⠺⠕⠷⠎" }, { "input": "wooing", "output": "⠺⠕⠕⠌" }, { "input": "wool", "output": "⠺⠕⠕⠇" }, { "input": "wool's", "output": "⠺⠕⠕⠇⠄⠎" }, { "input": "woolen", "output": "⠺⠕⠕⠇⠢" }, { "input": "woolen's", "output": "⠺⠕⠕⠇⠢⠄⠎" }, { "input": "woolens", "output": "⠺⠕⠕⠇⠢⠎" }, { "input": "woolgathering", "output": "⠺⠕⠕⠇⠛â â ®â —â Œ" }, { "input": "woolgathering's", "output": "⠺⠕⠕⠇⠛â â ®â —⠌⠄⠎" }, { "input": "woollier", "output": "⠺⠕⠕⠇⠇⠊⠻" }, { "input": "woollies", "output": "⠺⠕⠕⠇⠇⠊⠑⠎" }, { "input": "woolliest", "output": "⠺⠕⠕⠇⠇⠊⠑⠌" }, { "input": "woolliness", "output": "⠺⠕⠕⠇⠇⠊⠰⠎" }, { "input": "woolliness's", "output": "⠺⠕⠕⠇⠇⠊⠰⠎⠄⠎" }, { "input": "woolly", "output": "⠺⠕⠕⠇⠇⠽" }, { "input": "woolly's", "output": "⠺⠕⠕⠇⠇⠽⠄⠎" }, { "input": "woos", "output": "⠺⠕⠕⠎" }, { "input": "woozier", "output": "⠺⠕⠕⠵⠊⠻" }, { "input": "wooziest", "output": "⠺⠕⠕⠵⠊⠑⠌" }, { "input": "woozily", "output": "⠺⠕⠕⠵⠊⠇⠽" }, { "input": "wooziness", "output": "⠺⠕⠕⠵⠊⠰⠎" }, { "input": "wooziness's", "output": "⠺⠕⠕⠵⠊⠰⠎⠄⠎" }, { "input": "woozy", "output": "⠺⠕⠕⠵⠽" }, { "input": "word", "output": "⠘⠺" }, { "input": "word's", "output": "⠘⠺⠄⠎" }, { "input": "wordage", "output": "⠘⠺â â ›â ‘" }, { "input": "wordage's", "output": "⠘⠺â â ›â ‘â „â Ž" }, { "input": "wordbook", "output": "⠘⠺⠃⠕⠕⠅" }, { "input": "wordbook's", "output": "⠘⠺⠃⠕⠕⠅⠄⠎" }, { "input": "wordbooks", "output": "⠘⠺⠃⠕⠕⠅⠎" }, { "input": "worded", "output": "⠘⠺⠫" }, { "input": "wordier", "output": "⠘⠺⠊⠻" }, { "input": "wordiest", "output": "⠘⠺⠊⠑⠌" }, { "input": "wordily", "output": "⠘⠺⠊⠇⠽" }, { "input": "wordiness", "output": "⠘⠺⠊⠰⠎" }, { "input": "wordiness's", "output": "⠘⠺⠊⠰⠎⠄⠎" }, { "input": "wording", "output": "⠘⠺⠌" }, { "input": "wording's", "output": "⠘⠺⠌⠄⠎" }, { "input": "wordings", "output": "⠘⠺⠌⠎" }, { "input": "wordplay", "output": "⠘⠺â â ‡â â ½" }, { "input": "wordplay's", "output": "⠘⠺â â ‡â â ½â „â Ž" }, { "input": "words", "output": "⠘⠺⠎" }, { "input": "wordy", "output": "⠘⠺⠽" }, { "input": "wore", "output": "⠺⠕⠗⠑" }, { "input": "work", "output": "â â º" }, { "input": "work's", "output": "â â ºâ „â Ž" }, { "input": "workable", "output": "â â ºâ â ¼" }, { "input": "workaday", "output": "â â ºâ â â ™" }, { "input": "workaholic", "output": "â â ºâ â “⠕⠇⠊⠉" }, { "input": "workaholic's", "output": "â â ºâ â “⠕⠇⠊⠉⠄⠎" }, { "input": "workaholics", "output": "â â ºâ â “⠕⠇⠊⠉⠎" }, { "input": "workbench", "output": "â â ºâ ƒâ ¢â ¡" }, { "input": "workbench's", "output": "â â ºâ ƒâ ¢â ¡â „â Ž" }, { "input": "workbenches", "output": "â â ºâ ƒâ ¢â ¡â ‘â Ž" }, { "input": "workbook", "output": "â â ºâ ƒâ •â •â …" }, { "input": "workbook's", "output": "â â ºâ ƒâ •â •â …â „â Ž" }, { "input": "workbooks", "output": "â â ºâ ƒâ •â •â …â Ž" }, { "input": "workday", "output": "â â ºâ â ™" }, { "input": "workday's", "output": "â â ºâ â ™â „â Ž" }, { "input": "workdays", "output": "â â ºâ â ™â Ž" }, { "input": "worked", "output": "â â ºâ «" }, { "input": "worker", "output": "â â ºâ »" }, { "input": "worker's", "output": "â â ºâ »â „â Ž" }, { "input": "workers", "output": "â â ºâ »â Ž" }, { "input": "workfare", "output": "â â ºâ ‹â œâ ‘" }, { "input": "workfare's", "output": "â â ºâ ‹â œâ ‘â „â Ž" }, { "input": "workforce", "output": "â â ºâ ¿â ‰â ‘" }, { "input": "workforce's", "output": "â â ºâ ¿â ‰â ‘â „â Ž" }, { "input": "workhorse", "output": "â â ºâ “â •â —â Žâ ‘" }, { "input": "workhorse's", "output": "â â ºâ “â •â —â Žâ ‘â „â Ž" }, { "input": "workhorses", "output": "â â ºâ “â •â —â Žâ ‘â Ž" }, { "input": "workhouse", "output": "â â ºâ “⠳⠎⠑" }, { "input": "workhouse's", "output": "â â ºâ “⠳⠎⠑⠄⠎" }, { "input": "workhouses", "output": "â â ºâ “⠳⠎⠑⠎" }, { "input": "working", "output": "â â ºâ Œ" }, { "input": "working's", "output": "â â ºâ Œâ „â Ž" }, { "input": "workingman", "output": "â â ºâ Œâ â â " }, { "input": "workingman's", "output": "â â ºâ Œâ â â â „â Ž" }, { "input": "workingmen", "output": "â â ºâ Œâ â ¢" }, { "input": "workings", "output": "â â ºâ Œâ Ž" }, { "input": "workings's", "output": "â â ºâ Œâ Žâ „â Ž" }, { "input": "workingwoman", "output": "â â ºâ Œâ ºâ •â â â " }, { "input": "workingwoman's", "output": "â â ºâ Œâ ºâ •â â â â „â Ž" }, { "input": "workingwomen", "output": "â â ºâ Œâ ºâ •â â ¢" }, { "input": "workload", "output": "â â ºâ ‡â •â â ™" }, { "input": "workload's", "output": "â â ºâ ‡â •â â ™â „â Ž" }, { "input": "workloads", "output": "â â ºâ ‡â •â â ™â Ž" }, { "input": "workman", "output": "â â ºâ â â " }, { "input": "workman's", "output": "â â ºâ â â â „â Ž" }, { "input": "workmanlike", "output": "â â ºâ â â â ‡â Šâ …â ‘" }, { "input": "workmanship", "output": "â â ºâ â â â ©â Šâ " }, { "input": "workmanship's", "output": "â â ºâ â â â ©â Šâ â „â Ž" }, { "input": "workmen", "output": "â â ºâ â ¢" }, { "input": "workout", "output": "â â ºâ ³â ž" }, { "input": "workout's", "output": "â â ºâ ³â žâ „â Ž" }, { "input": "workouts", "output": "â â ºâ ³â žâ Ž" }, { "input": "workplace", "output": "â â ºâ â ‡â â ‰â ‘" }, { "input": "workplace's", "output": "â â ºâ â ‡â â ‰â ‘â „â Ž" }, { "input": "workplaces", "output": "â â ºâ â ‡â â ‰â ‘â Ž" }, { "input": "works", "output": "â â ºâ Ž" }, { "input": "works's", "output": "â â ºâ Žâ „â Ž" }, { "input": "worksheet", "output": "â â ºâ ©â ‘â ‘â ž" }, { "input": "worksheet's", "output": "â â ºâ ©â ‘â ‘â žâ „â Ž" }, { "input": "worksheets", "output": "â â ºâ ©â ‘â ‘â žâ Ž" }, { "input": "workshop", "output": "â â ºâ ©â •â " }, { "input": "workshop's", "output": "â â ºâ ©â •â â „â Ž" }, { "input": "workshops", "output": "â â ºâ ©â •â â Ž" }, { "input": "workstation", "output": "â â ºâ Œâ  â " }, { "input": "workstation's", "output": "â â ºâ Œâ  â â „â Ž" }, { "input": "workstations", "output": "â â ºâ Œâ  â â Ž" }, { "input": "worktable", "output": "â â ºâ žâ â ¼" }, { "input": "worktable's", "output": "â â ºâ žâ â ¼â „â Ž" }, { "input": "worktables", "output": "â â ºâ žâ â ¼â Ž" }, { "input": "workup", "output": "â â ºâ ¥â " }, { "input": "workup's", "output": "â â ºâ ¥â â „â Ž" }, { "input": "workups", "output": "â â ºâ ¥â â Ž" }, { "input": "workweek", "output": "â â ºâ ºâ ‘â ‘â …" }, { "input": "workweek's", "output": "â â ºâ ºâ ‘â ‘â …â „â Ž" }, { "input": "workweeks", "output": "â â ºâ ºâ ‘â ‘â …â Ž" }, { "input": "world", "output": "⠸⠺" }, { "input": "world's", "output": "⠸⠺⠄⠎" }, { "input": "worldlier", "output": "⠸⠺⠇⠊⠻" }, { "input": "worldliest", "output": "⠸⠺⠇⠊⠑⠌" }, { "input": "worldliness", "output": "⠸⠺⠇⠊⠰⠎" }, { "input": "worldliness's", "output": "⠸⠺⠇⠊⠰⠎⠄⠎" }, { "input": "worldly", "output": "⠸⠺⠇⠽" }, { "input": "worlds", "output": "⠸⠺⠎" }, { "input": "worldview", "output": "⠸⠺⠧⠊⠑⠺" }, { "input": "worldview's", "output": "⠸⠺⠧⠊⠑⠺⠄⠎" }, { "input": "worldviews", "output": "⠸⠺⠧⠊⠑⠺⠎" }, { "input": "worldwide", "output": "⠸⠺⠺⠊⠙⠑" }, { "input": "worm", "output": "⠺⠕⠗â " }, { "input": "worm's", "output": "⠺⠕⠗â â „â Ž" }, { "input": "wormed", "output": "⠺⠕⠗â â «" }, { "input": "wormhole", "output": "⠺⠕⠗â â “⠕⠇⠑" }, { "input": "wormhole's", "output": "⠺⠕⠗â â “⠕⠇⠑⠄⠎" }, { "input": "wormholes", "output": "⠺⠕⠗â â “⠕⠇⠑⠎" }, { "input": "wormier", "output": "⠺⠕⠗â â Šâ »" }, { "input": "wormiest", "output": "⠺⠕⠗â â Šâ ‘â Œ" }, { "input": "worming", "output": "⠺⠕⠗â â Œ" }, { "input": "worms", "output": "⠺⠕⠗â â Ž" }, { "input": "wormwood", "output": "⠺⠕⠗â â ºâ •â •â ™" }, { "input": "wormwood's", "output": "⠺⠕⠗â â ºâ •⠕⠙⠄⠎" }, { "input": "wormy", "output": "⠺⠕⠗â â ½" }, { "input": "worn", "output": "⠺⠕⠗â " }, { "input": "worried", "output": "⠺⠕⠗⠗⠊⠫" }, { "input": "worrier", "output": "⠺⠕⠗⠗⠊⠻" }, { "input": "worrier's", "output": "⠺⠕⠗⠗⠊⠻⠄⠎" }, { "input": "worriers", "output": "⠺⠕⠗⠗⠊⠻⠎" }, { "input": "worries", "output": "⠺⠕⠗⠗⠊⠑⠎" }, { "input": "worriment", "output": "⠺⠕⠗⠗⠊⠰⠞" }, { "input": "worriment's", "output": "⠺⠕⠗⠗⠊⠰⠞⠄⠎" }, { "input": "worrisome", "output": "⠺⠕⠗⠗⠊â â Ž" }, { "input": "worry", "output": "⠺⠕⠗⠗⠽" }, { "input": "worry's", "output": "⠺⠕⠗⠗⠽⠄⠎" }, { "input": "worrying", "output": "⠺⠕⠗⠗⠽⠌" }, { "input": "worryings", "output": "⠺⠕⠗⠗⠽⠌⠎" }, { "input": "worrywart", "output": "⠺⠕⠗⠗⠽⠺⠜⠞" }, { "input": "worrywart's", "output": "⠺⠕⠗⠗⠽⠺⠜⠞⠄⠎" }, { "input": "worrywarts", "output": "⠺⠕⠗⠗⠽⠺⠜⠞⠎" }, { "input": "worse", "output": "⠺⠕⠗⠎⠑" }, { "input": "worse's", "output": "⠺⠕⠗⠎⠑⠄⠎" }, { "input": "worsen", "output": "⠺⠕⠗⠎⠢" }, { "input": "worsened", "output": "⠺⠕⠗⠎⠢⠫" }, { "input": "worsening", "output": "⠺⠕⠗⠎⠢⠌" }, { "input": "worsens", "output": "⠺⠕⠗⠎⠢⠎" }, { "input": "worship", "output": "⠺⠕⠗⠩⠊â " }, { "input": "worship's", "output": "⠺⠕⠗⠩⠊â â „â Ž" }, { "input": "worshiped", "output": "⠺⠕⠗⠩⠊â â «" }, { "input": "worshiper", "output": "⠺⠕⠗⠩⠊â â »" }, { "input": "worshiper's", "output": "⠺⠕⠗⠩⠊â â »â „â Ž" }, { "input": "worshipers", "output": "⠺⠕⠗⠩⠊â â »â Ž" }, { "input": "worshipful", "output": "⠺⠕⠗⠩⠊â â °â ‡" }, { "input": "worshiping", "output": "⠺⠕⠗⠩⠊â â Œ" }, { "input": "worships", "output": "⠺⠕⠗⠩⠊â â Ž" }, { "input": "worst", "output": "⠺⠕⠗⠌" }, { "input": "worst's", "output": "⠺⠕⠗⠌⠄⠎" }, { "input": "worsted", "output": "⠺⠕⠗⠌⠫" }, { "input": "worsted's", "output": "⠺⠕⠗⠌⠫⠄⠎" }, { "input": "worsting", "output": "⠺⠕⠗⠌⠌" }, { "input": "worsts", "output": "⠺⠕⠗⠌⠎" }, { "input": "wort", "output": "⠺⠕⠗⠞" }, { "input": "wort's", "output": "⠺⠕⠗⠞⠄⠎" }, { "input": "worth", "output": "⠺⠕⠗⠹" }, { "input": "worth's", "output": "⠺⠕⠗⠹⠄⠎" }, { "input": "worthier", "output": "⠺⠕⠗⠹⠊⠻" }, { "input": "worthies", "output": "⠺⠕⠗⠹⠊⠑⠎" }, { "input": "worthiest", "output": "⠺⠕⠗⠹⠊⠑⠌" }, { "input": "worthily", "output": "⠺⠕⠗⠹⠊⠇⠽" }, { "input": "worthiness", "output": "⠺⠕⠗⠹⠊⠰⠎" }, { "input": "worthiness's", "output": "⠺⠕⠗⠹⠊⠰⠎⠄⠎" }, { "input": "worthless", "output": "⠺⠕⠗⠹⠨⠎" }, { "input": "worthlessly", "output": "⠺⠕⠗⠹⠨⠎⠇⠽" }, { "input": "worthlessness", "output": "⠺⠕⠗⠹⠨⠎⠰⠎" }, { "input": "worthlessness's", "output": "⠺⠕⠗⠹⠨⠎⠰⠎⠄⠎" }, { "input": "worthwhile", "output": "⠺⠕⠗⠹⠱⠊⠇⠑" }, { "input": "worthy", "output": "⠺⠕⠗⠹⠽" }, { "input": "worthy's", "output": "⠺⠕⠗⠹⠽⠄⠎" }, { "input": "wot", "output": "⠺⠕⠞" }, { "input": "would", "output": "⠺⠙" }, { "input": "woulds", "output": "⠺⠙⠎" }, { "input": "wouldst", "output": "⠺⠙⠌" }, { "input": "wound", "output": "⠺⠨⠙" }, { "input": "wound's", "output": "⠺⠨⠙⠄⠎" }, { "input": "wounded", "output": "⠺⠨⠙⠫" }, { "input": "wounder", "output": "⠺⠨⠙⠻" }, { "input": "wounding", "output": "⠺⠨⠙⠌" }, { "input": "wounds", "output": "⠺⠨⠙⠎" }, { "input": "wove", "output": "⠺⠕⠧⠑" }, { "input": "woven", "output": "⠺⠕⠧⠢" }, { "input": "wow", "output": "⠺⠪" }, { "input": "wow's", "output": "⠺⠪⠄⠎" }, { "input": "wowed", "output": "⠺⠪⠫" }, { "input": "wowing", "output": "⠺⠪⠌" }, { "input": "wows", "output": "⠺⠪⠎" }, { "input": "wrack", "output": "⠺⠗â â ‰â …" }, { "input": "wrack's", "output": "⠺⠗â â ‰â …â „â Ž" }, { "input": "wraith", "output": "⠺⠗â â Šâ ¹" }, { "input": "wraith's", "output": "⠺⠗â â Šâ ¹â „â Ž" }, { "input": "wraiths", "output": "⠺⠗â â Šâ ¹â Ž" }, { "input": "wrangle", "output": "⠺⠗â â â ›â ‡â ‘" }, { "input": "wrangle's", "output": "⠺⠗â â â ›â ‡â ‘â „â Ž" }, { "input": "wrangled", "output": "⠺⠗â â â ›â ‡â «" }, { "input": "wrangler", "output": "⠺⠗â â â ›â ‡â »" }, { "input": "wrangler's", "output": "⠺⠗â â â ›â ‡â »â „â Ž" }, { "input": "wranglers", "output": "⠺⠗â â â ›â ‡â »â Ž" }, { "input": "wrangles", "output": "⠺⠗â â â ›â ‡â ‘â Ž" }, { "input": "wrangling", "output": "⠺⠗â â â ›â ‡â Œ" }, { "input": "wrap", "output": "⠺⠗â â " }, { "input": "wrap's", "output": "⠺⠗â â â „â Ž" }, { "input": "wraparound", "output": "⠺⠗â â â œâ ¨â ™" }, { "input": "wraparound's", "output": "⠺⠗â â â œâ ¨â ™â „â Ž" }, { "input": "wraparounds", "output": "⠺⠗â â â œâ ¨â ™â Ž" }, { "input": "wrapped", "output": "⠺⠗â â â â «" }, { "input": "wrapper", "output": "⠺⠗â â â â »" }, { "input": "wrapper's", "output": "⠺⠗â â â â »â „â Ž" }, { "input": "wrappers", "output": "⠺⠗â â â â »â Ž" }, { "input": "wrapping", "output": "⠺⠗â â â â Œ" }, { "input": "wrapping's", "output": "⠺⠗â â â â Œâ „â Ž" }, { "input": "wrappings", "output": "⠺⠗â â â â Œâ Ž" }, { "input": "wraps", "output": "⠺⠗â â â Ž" }, { "input": "wrasse", "output": "⠺⠗â â Žâ Žâ ‘" }, { "input": "wrasse's", "output": "⠺⠗â â Žâ Žâ ‘â „â Ž" }, { "input": "wrasses", "output": "⠺⠗â â Žâ Žâ ‘â Ž" }, { "input": "wrath", "output": "⠺⠗â â ¹" }, { "input": "wrath's", "output": "⠺⠗â â ¹â „â Ž" }, { "input": "wrathful", "output": "⠺⠗â â ¹â °â ‡" }, { "input": "wrathfully", "output": "⠺⠗â â ¹â °â ‡â ‡â ½" }, { "input": "wreak", "output": "⠺⠗⠂⠅" }, { "input": "wreaked", "output": "⠺⠗⠂⠅⠫" }, { "input": "wreaking", "output": "⠺⠗⠂⠅⠌" }, { "input": "wreaks", "output": "⠺⠗⠂⠅⠎" }, { "input": "wreath", "output": "⠺⠗⠂⠹" }, { "input": "wreath's", "output": "⠺⠗⠂⠹⠄⠎" }, { "input": "wreathe", "output": "⠺⠗⠂⠮" }, { "input": "wreathed", "output": "⠺⠗⠂⠮⠙" }, { "input": "wreathes", "output": "⠺⠗⠂⠮⠎" }, { "input": "wreathing", "output": "⠺⠗⠂⠹⠌" }, { "input": "wreaths", "output": "⠺⠗⠂⠹⠎" }, { "input": "wreck", "output": "⠺⠗⠑⠉⠅" }, { "input": "wreck's", "output": "⠺⠗⠑⠉⠅⠄⠎" }, { "input": "wreckage", "output": "⠺⠗⠑⠉⠅â â ›â ‘" }, { "input": "wreckage's", "output": "⠺⠗⠑⠉⠅â â ›â ‘â „â Ž" }, { "input": "wrecked", "output": "⠺⠗⠑⠉⠅⠫" }, { "input": "wrecker", "output": "⠺⠗⠑⠉⠅⠻" }, { "input": "wrecker's", "output": "⠺⠗⠑⠉⠅⠻⠄⠎" }, { "input": "wreckers", "output": "⠺⠗⠑⠉⠅⠻⠎" }, { "input": "wrecking", "output": "⠺⠗⠑⠉⠅⠌" }, { "input": "wrecks", "output": "⠺⠗⠑⠉⠅⠎" }, { "input": "wren", "output": "⠺⠗⠢" }, { "input": "wren's", "output": "⠺⠗⠢⠄⠎" }, { "input": "wrench", "output": "⠺⠗⠢⠡" }, { "input": "wrench's", "output": "⠺⠗⠢⠡⠄⠎" }, { "input": "wrenched", "output": "⠺⠗⠢⠡⠫" }, { "input": "wrenches", "output": "⠺⠗⠢⠡⠑⠎" }, { "input": "wrenching", "output": "⠺⠗⠢⠡⠌" }, { "input": "wrens", "output": "⠺⠗⠢⠎" }, { "input": "wrest", "output": "⠺⠗⠑⠌" }, { "input": "wrest's", "output": "⠺⠗⠑⠌⠄⠎" }, { "input": "wrested", "output": "⠺⠗⠑⠌⠫" }, { "input": "wresting", "output": "⠺⠗⠑⠌⠌" }, { "input": "wrestle", "output": "⠺⠗⠑⠌⠇⠑" }, { "input": "wrestle's", "output": "⠺⠗⠑⠌⠇⠑⠄⠎" }, { "input": "wrestled", "output": "⠺⠗⠑⠌⠇⠫" }, { "input": "wrestler", "output": "⠺⠗⠑⠌⠇⠻" }, { "input": "wrestler's", "output": "⠺⠗⠑⠌⠇⠻⠄⠎" }, { "input": "wrestlers", "output": "⠺⠗⠑⠌⠇⠻⠎" }, { "input": "wrestles", "output": "⠺⠗⠑⠌⠇⠑⠎" }, { "input": "wrestling", "output": "⠺⠗⠑⠌⠇⠌" }, { "input": "wrestling's", "output": "⠺⠗⠑⠌⠇⠌⠄⠎" }, { "input": "wrests", "output": "⠺⠗⠑⠌⠎" }, { "input": "wretch", "output": "⠺⠗⠑⠞⠡" }, { "input": "wretch's", "output": "⠺⠗⠑⠞⠡⠄⠎" }, { "input": "wretched", "output": "⠺⠗⠑⠞⠡⠫" }, { "input": "wretcheder", "output": "⠺⠗⠑⠞⠡⠫⠻" }, { "input": "wretchedest", "output": "⠺⠗⠑⠞⠡⠫⠑⠌" }, { "input": "wretchedly", "output": "⠺⠗⠑⠞⠡⠫⠇⠽" }, { "input": "wretchedness", "output": "⠺⠗⠑⠞⠡⠫⠰⠎" }, { "input": "wretchedness's", "output": "⠺⠗⠑⠞⠡⠫⠰⠎⠄⠎" }, { "input": "wretches", "output": "⠺⠗⠑⠞⠡⠑⠎" }, { "input": "wriggle", "output": "⠺⠗⠊⠶⠇⠑" }, { "input": "wriggle's", "output": "⠺⠗⠊⠶⠇⠑⠄⠎" }, { "input": "wriggled", "output": "⠺⠗⠊⠶⠇⠫" }, { "input": "wriggler", "output": "⠺⠗⠊⠶⠇⠻" }, { "input": "wriggler's", "output": "⠺⠗⠊⠶⠇⠻⠄⠎" }, { "input": "wrigglers", "output": "⠺⠗⠊⠶⠇⠻⠎" }, { "input": "wriggles", "output": "⠺⠗⠊⠶⠇⠑⠎" }, { "input": "wrigglier", "output": "⠺⠗⠊⠶⠇⠊⠻" }, { "input": "wriggliest", "output": "⠺⠗⠊⠶⠇⠊⠑⠌" }, { "input": "wriggling", "output": "⠺⠗⠊⠶⠇⠌" }, { "input": "wriggly", "output": "⠺⠗⠊⠶⠇⠽" }, { "input": "wright", "output": "â ºâ â —" }, { "input": "wright's", "output": "â ºâ â —â „â Ž" }, { "input": "wrights", "output": "â ºâ â —â Ž" }, { "input": "wring", "output": "⠺⠗⠌" }, { "input": "wring's", "output": "⠺⠗⠌⠄⠎" }, { "input": "wringer", "output": "⠺⠗⠌⠻" }, { "input": "wringer's", "output": "⠺⠗⠌⠻⠄⠎" }, { "input": "wringers", "output": "⠺⠗⠌⠻⠎" }, { "input": "wringing", "output": "⠺⠗⠌⠌" }, { "input": "wrings", "output": "⠺⠗⠌⠎" }, { "input": "wrinkle", "output": "⠺⠗⠔⠅⠇⠑" }, { "input": "wrinkle's", "output": "⠺⠗⠔⠅⠇⠑⠄⠎" }, { "input": "wrinkled", "output": "⠺⠗⠔⠅⠇⠫" }, { "input": "wrinkles", "output": "⠺⠗⠔⠅⠇⠑⠎" }, { "input": "wrinklier", "output": "⠺⠗⠔⠅⠇⠊⠻" }, { "input": "wrinklies", "output": "⠺⠗⠔⠅⠇⠊⠑⠎" }, { "input": "wrinkliest", "output": "⠺⠗⠔⠅⠇⠊⠑⠌" }, { "input": "wrinkling", "output": "⠺⠗⠔⠅⠇⠌" }, { "input": "wrinkly", "output": "⠺⠗⠔⠅⠇⠽" }, { "input": "wrinkly's", "output": "⠺⠗⠔⠅⠇⠽⠄⠎" }, { "input": "wrist", "output": "⠺⠗⠊⠌" }, { "input": "wrist's", "output": "⠺⠗⠊⠌⠄⠎" }, { "input": "wristband", "output": "⠺⠗⠊⠌⠃⠯" }, { "input": "wristband's", "output": "⠺⠗⠊⠌⠃⠯⠄⠎" }, { "input": "wristbands", "output": "⠺⠗⠊⠌⠃⠯⠎" }, { "input": "wrists", "output": "⠺⠗⠊⠌⠎" }, { "input": "wristwatch", "output": "⠺⠗⠊⠌⠺â â žâ ¡" }, { "input": "wristwatch's", "output": "⠺⠗⠊⠌⠺â â žâ ¡â „â Ž" }, { "input": "wristwatches", "output": "⠺⠗⠊⠌⠺â â žâ ¡â ‘â Ž" }, { "input": "writ", "output": "⠺⠗⠊⠞" }, { "input": "writ's", "output": "⠺⠗⠊⠞⠄⠎" }, { "input": "writable", "output": "⠺⠗⠊⠞â â ¼" }, { "input": "write", "output": "⠺⠗⠊⠞⠑" }, { "input": "writer", "output": "⠺⠗⠊⠞⠻" }, { "input": "writer's", "output": "⠺⠗⠊⠞⠻⠄⠎" }, { "input": "writers", "output": "⠺⠗⠊⠞⠻⠎" }, { "input": "writes", "output": "⠺⠗⠊⠞⠑⠎" }, { "input": "writhe", "output": "⠺⠗⠊⠮" }, { "input": "writhe's", "output": "⠺⠗⠊⠮⠄⠎" }, { "input": "writhed", "output": "⠺⠗⠊⠮⠙" }, { "input": "writhes", "output": "⠺⠗⠊⠮⠎" }, { "input": "writhing", "output": "⠺⠗⠊⠹⠌" }, { "input": "writing", "output": "⠺⠗⠊⠞⠌" }, { "input": "writing's", "output": "⠺⠗⠊⠞⠌⠄⠎" }, { "input": "writings", "output": "⠺⠗⠊⠞⠌⠎" }, { "input": "writs", "output": "⠺⠗⠊⠞⠎" }, { "input": "written", "output": "⠺⠗⠊⠞⠞⠢" }, { "input": "wrong", "output": "⠺⠗⠰⠛" }, { "input": "wrong's", "output": "⠺⠗⠰⠛⠄⠎" }, { "input": "wrongdoer", "output": "⠺⠗⠰⠛⠙⠕⠻" }, { "input": "wrongdoer's", "output": "⠺⠗⠰⠛⠙⠕⠻⠄⠎" }, { "input": "wrongdoers", "output": "⠺⠗⠰⠛⠙⠕⠻⠎" }, { "input": "wrongdoing", "output": "⠺⠗⠰⠛⠙⠕⠌" }, { "input": "wrongdoing's", "output": "⠺⠗⠰⠛⠙⠕⠌⠄⠎" }, { "input": "wrongdoings", "output": "⠺⠗⠰⠛⠙⠕⠌⠎" }, { "input": "wronged", "output": "⠺⠗⠰⠛⠫" }, { "input": "wronger", "output": "⠺⠗⠰⠛⠻" }, { "input": "wrongest", "output": "⠺⠗⠰⠛⠑⠌" }, { "input": "wrongful", "output": "⠺⠗⠰⠛⠰⠇" }, { "input": "wrongfully", "output": "⠺⠗⠰⠛⠰⠇⠇⠽" }, { "input": "wrongfulness", "output": "⠺⠗⠰⠛⠰⠇⠰⠎" }, { "input": "wrongfulness's", "output": "⠺⠗⠰⠛⠰⠇⠰⠎⠄⠎" }, { "input": "wrongheaded", "output": "⠺⠗⠰⠛⠓⠂⠙⠫" }, { "input": "wrongheadedly", "output": "⠺⠗⠰⠛⠓⠂⠙⠫⠇⠽" }, { "input": "wrongheadedness", "output": "⠺⠗⠰⠛⠓⠂⠙⠫⠰⠎" }, { "input": "wrongheadedness's", "output": "⠺⠗⠰⠛⠓⠂⠙⠫⠰⠎⠄⠎" }, { "input": "wronging", "output": "⠺⠗⠰⠛⠌" }, { "input": "wrongly", "output": "⠺⠗⠰⠛⠇⠽" }, { "input": "wrongness", "output": "⠺⠗⠰⠛⠰⠎" }, { "input": "wrongness's", "output": "⠺⠗⠰⠛⠰⠎⠄⠎" }, { "input": "wrongs", "output": "⠺⠗⠰⠛⠎" }, { "input": "wrote", "output": "⠺⠗⠕⠞⠑" }, { "input": "wroth", "output": "⠺⠗⠕⠹" }, { "input": "wrought", "output": "⠺⠗â â ³" }, { "input": "wrung", "output": "⠺⠗⠥â â ›" }, { "input": "wry", "output": "⠺⠗⠽" }, { "input": "wryer", "output": "⠺⠗⠽⠻" }, { "input": "wryest", "output": "⠺⠗⠽⠑⠌" }, { "input": "wryly", "output": "⠺⠗⠽⠇⠽" }, { "input": "wryness", "output": "⠺⠗⠽⠰⠎" }, { "input": "wryness's", "output": "⠺⠗⠽⠰⠎⠄⠎" }, { "input": "wurst", "output": "⠺⠥⠗⠌" }, { "input": "wurst's", "output": "⠺⠥⠗⠌⠄⠎" }, { "input": "wursts", "output": "⠺⠥⠗⠌⠎" }, { "input": "wuss", "output": "⠺⠥⠎⠎" }, { "input": "wuss's", "output": "⠺⠥⠎⠎⠄⠎" }, { "input": "wusses", "output": "⠺⠥⠎⠎⠑⠎" }, { "input": "wussier", "output": "⠺⠥⠎⠎⠊⠻" }, { "input": "wussies", "output": "⠺⠥⠎⠎⠊⠑⠎" }, { "input": "wussiest", "output": "⠺⠥⠎⠎⠊⠑⠌" }, { "input": "wussy", "output": "⠺⠥⠎⠎⠽" }, { "input": "wussy's", "output": "⠺⠥⠎⠎⠽⠄⠎" }, { "input": "x", "output": "â °â ­" }, { "input": "xenon", "output": "⠭⠢⠕â " }, { "input": "xenon's", "output": "⠭⠢⠕â â „â Ž" }, { "input": "xenophobia", "output": "⠭⠢⠕â â “⠕⠃⠊â " }, { "input": "xenophobia's", "output": "⠭⠢⠕â â “⠕⠃⠊â â „â Ž" }, { "input": "xenophobic", "output": "⠭⠢⠕â â “⠕⠃⠊⠉" }, { "input": "xerographic", "output": "⠭⠻⠕⠛⠗â â â “â Šâ ‰" }, { "input": "xerography", "output": "⠭⠻⠕⠛⠗â â â “â ½" }, { "input": "xerography's", "output": "⠭⠻⠕⠛⠗â â â “⠽⠄⠎" }, { "input": "xi", "output": "â ­â Š" }, { "input": "xi's", "output": "â ­â Šâ „â Ž" }, { "input": "xis", "output": "â ­â Šâ Ž" }, { "input": "xylem", "output": "⠭⠽⠇⠑â " }, { "input": "xylem's", "output": "⠭⠽⠇⠑â â „â Ž" }, { "input": "xylophone", "output": "⠭⠽⠇⠕â â “â â •" }, { "input": "xylophone's", "output": "⠭⠽⠇⠕â â “â â •â „â Ž" }, { "input": "xylophones", "output": "⠭⠽⠇⠕â â “â â •â Ž" }, { "input": "xylophonist", "output": "⠭⠽⠇⠕â â “â •â â Šâ Œ" }, { "input": "xylophonist's", "output": "⠭⠽⠇⠕â â “â •â â Šâ Œâ „â Ž" }, { "input": "xylophonists", "output": "⠭⠽⠇⠕â â “â •â â Šâ Œâ Ž" }, { "input": "y", "output": "â °â ½" }, { "input": "ya", "output": "â ½â " }, { "input": "yacht", "output": "â ½â â ¡â ž" }, { "input": "yacht's", "output": "â ½â â ¡â žâ „â Ž" }, { "input": "yachted", "output": "â ½â â ¡â žâ «" }, { "input": "yachting", "output": "â ½â â ¡â žâ Œ" }, { "input": "yachting's", "output": "â ½â â ¡â žâ Œâ „â Ž" }, { "input": "yachts", "output": "â ½â â ¡â žâ Ž" }, { "input": "yachtsman", "output": "â ½â â ¡â žâ Žâ â â " }, { "input": "yachtsman's", "output": "â ½â â ¡â žâ Žâ â â â „â Ž" }, { "input": "yachtsmen", "output": "â ½â â ¡â žâ Žâ â ¢" }, { "input": "yahoo", "output": "â ½â â “â •â •" }, { "input": "yahoo's", "output": "â ½â â “â •â •â „â Ž" }, { "input": "yahoos", "output": "â ½â â “â •â •â Ž" }, { "input": "yak", "output": "â ½â â …" }, { "input": "yak's", "output": "â ½â â …â „â Ž" }, { "input": "yakked", "output": "â ½â â …â …â «" }, { "input": "yakking", "output": "â ½â â …â …â Œ" }, { "input": "yaks", "output": "â ½â â …â Ž" }, { "input": "yam", "output": "â ½â â " }, { "input": "yam's", "output": "â ½â â â „â Ž" }, { "input": "yammer", "output": "â ½â â â â »" }, { "input": "yammer's", "output": "â ½â â â â »â „â Ž" }, { "input": "yammered", "output": "â ½â â â â »â «" }, { "input": "yammerer", "output": "â ½â â â â »â »" }, { "input": "yammerer's", "output": "â ½â â â â »â »â „â Ž" }, { "input": "yammerers", "output": "â ½â â â â »â »â Ž" }, { "input": "yammering", "output": "â ½â â â â »â Œ" }, { "input": "yammers", "output": "â ½â â â â »â Ž" }, { "input": "yams", "output": "â ½â â â Ž" }, { "input": "yang's", "output": "â ½â â â ›â „â Ž" }, { "input": "yank", "output": "â ½â â â …" }, { "input": "yank's", "output": "â ½â â â …â „â Ž" }, { "input": "yanked", "output": "â ½â â â …â «" }, { "input": "yanking", "output": "â ½â â â …â Œ" }, { "input": "yanks", "output": "â ½â â â …â Ž" }, { "input": "yap", "output": "â ½â â " }, { "input": "yap's", "output": "â ½â â â „â Ž" }, { "input": "yapped", "output": "â ½â â â â «" }, { "input": "yapping", "output": "â ½â â â â Œ" }, { "input": "yaps", "output": "â ½â â â Ž" }, { "input": "yard", "output": "⠽⠜⠙" }, { "input": "yard's", "output": "⠽⠜⠙⠄⠎" }, { "input": "yardage", "output": "⠽⠜⠙â â ›â ‘" }, { "input": "yardage's", "output": "⠽⠜⠙â â ›â ‘â „â Ž" }, { "input": "yardages", "output": "⠽⠜⠙â â ›â ‘â Ž" }, { "input": "yardarm", "output": "⠽⠜⠙⠜â " }, { "input": "yardarm's", "output": "⠽⠜⠙⠜â â „â Ž" }, { "input": "yardarms", "output": "⠽⠜⠙⠜â â Ž" }, { "input": "yardman", "output": "⠽⠜⠙â â â " }, { "input": "yardman's", "output": "⠽⠜⠙â â â â „â Ž" }, { "input": "yardmaster", "output": "⠽⠜⠙â â â Œâ »" }, { "input": "yardmaster's", "output": "⠽⠜⠙â â â Œâ »â „â Ž" }, { "input": "yardmasters", "output": "⠽⠜⠙â â â Œâ »â Ž" }, { "input": "yardmen", "output": "⠽⠜⠙â â ¢" }, { "input": "yards", "output": "⠽⠜⠙⠎" }, { "input": "yardstick", "output": "⠽⠜⠙⠌⠊⠉⠅" }, { "input": "yardstick's", "output": "⠽⠜⠙⠌⠊⠉⠅⠄⠎" }, { "input": "yardsticks", "output": "⠽⠜⠙⠌⠊⠉⠅⠎" }, { "input": "yarmulke", "output": "⠽⠜â â ¥â ‡â …â ‘" }, { "input": "yarmulke's", "output": "⠽⠜â â ¥â ‡â …â ‘â „â Ž" }, { "input": "yarmulkes", "output": "⠽⠜â â ¥â ‡â …â ‘â Ž" }, { "input": "yarn", "output": "⠽⠜â " }, { "input": "yarn's", "output": "⠽⠜â â „â Ž" }, { "input": "yarns", "output": "⠽⠜â â Ž" }, { "input": "yarrow", "output": "⠽⠜⠗⠪" }, { "input": "yarrow's", "output": "⠽⠜⠗⠪⠄⠎" }, { "input": "yaw", "output": "â ½â â º" }, { "input": "yaw's", "output": "â ½â â ºâ „â Ž" }, { "input": "yawed", "output": "â ½â â ºâ «" }, { "input": "yawing", "output": "â ½â â ºâ Œ" }, { "input": "yawl", "output": "â ½â â ºâ ‡" }, { "input": "yawl's", "output": "â ½â â ºâ ‡â „â Ž" }, { "input": "yawls", "output": "â ½â â ºâ ‡â Ž" }, { "input": "yawn", "output": "â ½â â ºâ " }, { "input": "yawn's", "output": "â ½â â ºâ â „â Ž" }, { "input": "yawned", "output": "â ½â â ºâ â «" }, { "input": "yawner", "output": "â ½â â ºâ â »" }, { "input": "yawner's", "output": "â ½â â ºâ â »â „â Ž" }, { "input": "yawners", "output": "â ½â â ºâ â »â Ž" }, { "input": "yawning", "output": "â ½â â ºâ â Œ" }, { "input": "yawns", "output": "â ½â â ºâ â Ž" }, { "input": "yaws", "output": "â ½â â ºâ Ž" }, { "input": "yaws's", "output": "â ½â â ºâ Žâ „â Ž" }, { "input": "ye", "output": "⠽⠑" }, { "input": "yea", "output": "⠽⠑â " }, { "input": "yea's", "output": "⠽⠑â â „â Ž" }, { "input": "yeah", "output": "⠽⠂⠓" }, { "input": "yeah's", "output": "⠽⠂⠓⠄⠎" }, { "input": "yeahs", "output": "⠽⠂⠓⠎" }, { "input": "year", "output": "⠽⠑⠜" }, { "input": "year's", "output": "⠽⠑⠜⠄⠎" }, { "input": "yearbook", "output": "⠽⠑⠜⠃⠕⠕⠅" }, { "input": "yearbook's", "output": "⠽⠑⠜⠃⠕⠕⠅⠄⠎" }, { "input": "yearbooks", "output": "⠽⠑⠜⠃⠕⠕⠅⠎" }, { "input": "yearlies", "output": "⠽⠑⠜⠇⠊⠑⠎" }, { "input": "yearling", "output": "⠽⠑⠜⠇⠌" }, { "input": "yearling's", "output": "⠽⠑⠜⠇⠌⠄⠎" }, { "input": "yearlings", "output": "⠽⠑⠜⠇⠌⠎" }, { "input": "yearlong", "output": "⠽⠑⠜⠇⠰⠛" }, { "input": "yearly", "output": "⠽⠑⠜⠇⠽" }, { "input": "yearly's", "output": "⠽⠑⠜⠇⠽⠄⠎" }, { "input": "yearn", "output": "⠽⠑⠜â " }, { "input": "yearned", "output": "⠽⠑⠜â â «" }, { "input": "yearning", "output": "⠽⠑⠜â â Œ" }, { "input": "yearning's", "output": "⠽⠑⠜â â Œâ „â Ž" }, { "input": "yearnings", "output": "⠽⠑⠜â â Œâ Ž" }, { "input": "yearns", "output": "⠽⠑⠜â â Ž" }, { "input": "years", "output": "⠽⠑⠜⠎" }, { "input": "yeas", "output": "⠽⠂⠎" }, { "input": "yeast", "output": "⠽⠂⠌" }, { "input": "yeast's", "output": "⠽⠂⠌⠄⠎" }, { "input": "yeastier", "output": "⠽⠂⠌⠊⠻" }, { "input": "yeastiest", "output": "⠽⠂⠌⠊⠑⠌" }, { "input": "yeasts", "output": "⠽⠂⠌⠎" }, { "input": "yeasty", "output": "⠽⠂⠌⠽" }, { "input": "yegg", "output": "⠽⠑⠛⠛" }, { "input": "yegg's", "output": "⠽⠑⠛⠛⠄⠎" }, { "input": "yeggs", "output": "⠽⠑⠶⠎" }, { "input": "yell", "output": "⠽⠑⠇⠇" }, { "input": "yell's", "output": "⠽⠑⠇⠇⠄⠎" }, { "input": "yelled", "output": "⠽⠑⠇⠇⠫" }, { "input": "yelling", "output": "⠽⠑⠇⠇⠌" }, { "input": "yellow", "output": "⠽⠑⠇⠇⠪" }, { "input": "yellow's", "output": "⠽⠑⠇⠇⠪⠄⠎" }, { "input": "yellowed", "output": "⠽⠑⠇⠇⠪⠫" }, { "input": "yellower", "output": "⠽⠑⠇⠇⠪⠻" }, { "input": "yellowest", "output": "⠽⠑⠇⠇⠪⠑⠌" }, { "input": "yellowing", "output": "⠽⠑⠇⠇⠪⠌" }, { "input": "yellowish", "output": "⠽⠑⠇⠇⠪⠊⠩" }, { "input": "yellowness's", "output": "⠽⠑⠇⠇⠪⠰⠎⠄⠎" }, { "input": "yellows", "output": "⠽⠑⠇⠇⠪⠎" }, { "input": "yells", "output": "⠽⠑⠇⠇⠎" }, { "input": "yelp", "output": "⠽⠑⠇â " }, { "input": "yelp's", "output": "⠽⠑⠇â â „â Ž" }, { "input": "yelped", "output": "⠽⠑⠇â â «" }, { "input": "yelping", "output": "⠽⠑⠇â â Œ" }, { "input": "yelps", "output": "⠽⠑⠇â â Ž" }, { "input": "yen", "output": "⠽⠢" }, { "input": "yen's", "output": "⠽⠢⠄⠎" }, { "input": "yens", "output": "⠽⠢⠎" }, { "input": "yeoman", "output": "⠽⠑⠕â â â " }, { "input": "yeoman's", "output": "⠽⠑⠕â â â â „â Ž" }, { "input": "yeomanry", "output": "⠽⠑⠕â â â â —â ½" }, { "input": "yeomanry's", "output": "⠽⠑⠕â â â â —⠽⠄⠎" }, { "input": "yeomen", "output": "⠽⠑⠕â â ¢" }, { "input": "yep", "output": "⠽⠑â " }, { "input": "yep's", "output": "⠽⠑â â „â Ž" }, { "input": "yeps", "output": "⠽⠑â â Ž" }, { "input": "yes", "output": "⠽⠑⠎" }, { "input": "yes's", "output": "⠽⠑⠎⠄⠎" }, { "input": "yeses", "output": "⠽⠑⠎⠑⠎" }, { "input": "yeshiva", "output": "⠽⠑⠩⠊⠧â " }, { "input": "yeshiva's", "output": "⠽⠑⠩⠊⠧â â „â Ž" }, { "input": "yeshivas", "output": "⠽⠑⠩⠊⠧â â Ž" }, { "input": "yessed", "output": "⠽⠑⠎⠎⠫" }, { "input": "yessing", "output": "⠽⠑⠎⠎⠌" }, { "input": "yest", "output": "⠽⠑⠌" }, { "input": "yesterday", "output": "⠽⠑⠌⠻â â ™" }, { "input": "yesterday's", "output": "⠽⠑⠌⠻â â ™â „â Ž" }, { "input": "yesterdays", "output": "⠽⠑⠌⠻â â ™â Ž" }, { "input": "yesteryear", "output": "⠽⠑⠌⠻⠽⠑⠜" }, { "input": "yesteryear's", "output": "⠽⠑⠌⠻⠽⠑⠜⠄⠎" }, { "input": "yet", "output": "⠽⠑⠞" }, { "input": "yeti", "output": "⠽⠑⠞⠊" }, { "input": "yew", "output": "⠽⠑⠺" }, { "input": "yew's", "output": "⠽⠑⠺⠄⠎" }, { "input": "yews", "output": "⠽⠑⠺⠎" }, { "input": "yield", "output": "⠽⠊⠑⠇⠙" }, { "input": "yield's", "output": "⠽⠊⠑⠇⠙⠄⠎" }, { "input": "yielded", "output": "⠽⠊⠑⠇⠙⠫" }, { "input": "yielding", "output": "⠽⠊⠑⠇⠙⠌" }, { "input": "yieldings", "output": "⠽⠊⠑⠇⠙⠌⠎" }, { "input": "yields", "output": "⠽⠊⠑⠇⠙⠎" }, { "input": "yin's", "output": "⠽⠔⠄⠎" }, { "input": "yip", "output": "⠽⠊â " }, { "input": "yip's", "output": "⠽⠊â â „â Ž" }, { "input": "yipe", "output": "⠽⠊â â ‘" }, { "input": "yipped", "output": "⠽⠊â â â «" }, { "input": "yippee", "output": "⠽⠊â â â ‘â ‘" }, { "input": "yipping", "output": "⠽⠊â â â Œ" }, { "input": "yips", "output": "⠽⠊â â Ž" }, { "input": "yo", "output": "⠽⠕" }, { "input": "yodel", "output": "⠽⠕⠙⠑⠇" }, { "input": "yodel's", "output": "⠽⠕⠙⠑⠇⠄⠎" }, { "input": "yodeled", "output": "⠽⠕⠙⠑⠇⠫" }, { "input": "yodeler", "output": "⠽⠕⠙⠑⠇⠻" }, { "input": "yodeler's", "output": "⠽⠕⠙⠑⠇⠻⠄⠎" }, { "input": "yodelers", "output": "⠽⠕⠙⠑⠇⠻⠎" }, { "input": "yodeling", "output": "⠽⠕⠙⠑⠇⠌" }, { "input": "yodels", "output": "⠽⠕⠙⠑⠇⠎" }, { "input": "yoga", "output": "⠽⠕⠛â " }, { "input": "yoga's", "output": "⠽⠕⠛â â „â Ž" }, { "input": "yogi", "output": "⠽⠕⠛⠊" }, { "input": "yogi's", "output": "⠽⠕⠛⠊⠄⠎" }, { "input": "yogis", "output": "⠽⠕⠛⠊⠎" }, { "input": "yogurt", "output": "⠽⠕⠛⠥⠗⠞" }, { "input": "yogurt's", "output": "⠽⠕⠛⠥⠗⠞⠄⠎" }, { "input": "yogurts", "output": "⠽⠕⠛⠥⠗⠞⠎" }, { "input": "yoke", "output": "⠽⠕⠅⠑" }, { "input": "yoke's", "output": "⠽⠕⠅⠑⠄⠎" }, { "input": "yoked", "output": "⠽⠕⠅⠫" }, { "input": "yokel", "output": "⠽⠕⠅⠑⠇" }, { "input": "yokel's", "output": "⠽⠕⠅⠑⠇⠄⠎" }, { "input": "yokels", "output": "⠽⠕⠅⠑⠇⠎" }, { "input": "yokes", "output": "⠽⠕⠅⠑⠎" }, { "input": "yoking", "output": "⠽⠕⠅⠌" }, { "input": "yolk", "output": "⠽⠕⠇⠅" }, { "input": "yolk's", "output": "⠽⠕⠇⠅⠄⠎" }, { "input": "yolked", "output": "⠽⠕⠇⠅⠫" }, { "input": "yolks", "output": "⠽⠕⠇⠅⠎" }, { "input": "yon", "output": "⠽⠕â " }, { "input": "yonder", "output": "⠽⠕â â ™â »" }, { "input": "yore", "output": "⠽⠕⠗⠑" }, { "input": "yore's", "output": "⠽⠕⠗⠑⠄⠎" }, { "input": "you", "output": "â ½" }, { "input": "you's", "output": "⠽⠳⠄⠎" }, { "input": "young", "output": "â â ½" }, { "input": "young's", "output": "â â ½â „â Ž" }, { "input": "younger", "output": "â â ½â »" }, { "input": "youngest", "output": "â â ½â ‘â Œ" }, { "input": "youngish", "output": "â â ½â Šâ ©" }, { "input": "youngster", "output": "â â ½â Œâ »" }, { "input": "youngster's", "output": "â â ½â Œâ »â „â Ž" }, { "input": "youngsters", "output": "â â ½â Œâ »â Ž" }, { "input": "your", "output": "⠽⠗" }, { "input": "yours", "output": "⠽⠗⠎" }, { "input": "yourself", "output": "⠽⠗⠋" }, { "input": "yourselves", "output": "⠽⠗⠧⠎" }, { "input": "yous", "output": "⠽⠳⠎" }, { "input": "youth", "output": "⠽⠳⠹" }, { "input": "youth's", "output": "⠽⠳⠹⠄⠎" }, { "input": "youthful", "output": "⠽⠳⠹⠰⠇" }, { "input": "youthfully", "output": "⠽⠳⠹⠰⠇⠇⠽" }, { "input": "youthfulness", "output": "⠽⠳⠹⠰⠇⠰⠎" }, { "input": "youthfulness's", "output": "⠽⠳⠹⠰⠇⠰⠎⠄⠎" }, { "input": "youths", "output": "⠽⠳⠹⠎" }, { "input": "yow", "output": "⠽⠪" }, { "input": "yowl", "output": "⠽⠪⠇" }, { "input": "yowl's", "output": "⠽⠪⠇⠄⠎" }, { "input": "yowled", "output": "⠽⠪⠇⠫" }, { "input": "yowling", "output": "⠽⠪⠇⠌" }, { "input": "yowls", "output": "⠽⠪⠇⠎" }, { "input": "ytterbium", "output": "⠽⠞⠞⠻⠃⠊⠥â " }, { "input": "ytterbium's", "output": "⠽⠞⠞⠻⠃⠊⠥â â „â Ž" }, { "input": "yttrium", "output": "⠽⠞⠞⠗⠊⠥â " }, { "input": "yttrium's", "output": "⠽⠞⠞⠗⠊⠥â â „â Ž" }, { "input": "yucca", "output": "⠽⠥⠒â " }, { "input": "yucca's", "output": "⠽⠥⠒â â „â Ž" }, { "input": "yuccas", "output": "⠽⠥⠒â â Ž" }, { "input": "yuck", "output": "⠽⠥⠉⠅" }, { "input": "yuckier", "output": "⠽⠥⠉⠅⠊⠻" }, { "input": "yuckiest", "output": "⠽⠥⠉⠅⠊⠑⠌" }, { "input": "yucky", "output": "⠽⠥⠉⠅⠽" }, { "input": "yuk", "output": "⠽⠥⠅" }, { "input": "yuk's", "output": "⠽⠥⠅⠄⠎" }, { "input": "yukked", "output": "⠽⠥⠅⠅⠫" }, { "input": "yukking", "output": "⠽⠥⠅⠅⠌" }, { "input": "yuks", "output": "⠽⠥⠅⠎" }, { "input": "yule", "output": "⠽⠥⠇⠑" }, { "input": "yule's", "output": "⠽⠥⠇⠑⠄⠎" }, { "input": "yuletide", "output": "⠽⠥⠇⠑⠞⠊⠙⠑" }, { "input": "yuletide's", "output": "⠽⠥⠇⠑⠞⠊⠙⠑⠄⠎" }, { "input": "yum", "output": "⠽⠥â " }, { "input": "yummier", "output": "⠽⠥â â â Šâ »" }, { "input": "yummiest", "output": "⠽⠥â â â Šâ ‘â Œ" }, { "input": "yummy", "output": "⠽⠥â â â ½" }, { "input": "yup", "output": "⠽⠥â " }, { "input": "yup's", "output": "⠽⠥â â „â Ž" }, { "input": "yuppie", "output": "⠽⠥â â â Šâ ‘" }, { "input": "yuppie's", "output": "⠽⠥â â â Šâ ‘â „â Ž" }, { "input": "yuppies", "output": "⠽⠥â â â Šâ ‘â Ž" }, { "input": "yups", "output": "⠽⠥â â Ž" }, { "input": "yurt", "output": "⠽⠥⠗⠞" }, { "input": "yurt's", "output": "⠽⠥⠗⠞⠄⠎" }, { "input": "yurts", "output": "⠽⠥⠗⠞⠎" }, { "input": "z", "output": "â °â µ" }, { "input": "zanier", "output": "â µâ â â Šâ »" }, { "input": "zanies", "output": "â µâ â â Šâ ‘â Ž" }, { "input": "zaniest", "output": "â µâ â â Šâ ‘â Œ" }, { "input": "zaniness", "output": "â µâ â â Šâ °â Ž" }, { "input": "zaniness's", "output": "â µâ â â Šâ °â Žâ „â Ž" }, { "input": "zany", "output": "â µâ â â ½" }, { "input": "zany's", "output": "â µâ â â ½â „â Ž" }, { "input": "zap", "output": "â µâ â " }, { "input": "zap's", "output": "â µâ â â „â Ž" }, { "input": "zapped", "output": "â µâ â â â «" }, { "input": "zapping", "output": "â µâ â â â Œ" }, { "input": "zaps", "output": "â µâ â â Ž" }, { "input": "zeal", "output": "⠵⠂⠇" }, { "input": "zeal's", "output": "⠵⠂⠇⠄⠎" }, { "input": "zealot", "output": "⠵⠂⠇⠕⠞" }, { "input": "zealot's", "output": "⠵⠂⠇⠕⠞⠄⠎" }, { "input": "zealotry's", "output": "⠵⠂⠇⠕⠞⠗⠽⠄⠎" }, { "input": "zealots", "output": "⠵⠂⠇⠕⠞⠎" }, { "input": "zealous", "output": "⠵⠂⠇⠳⠎" }, { "input": "zealously", "output": "⠵⠂⠇⠳⠎⠇⠽" }, { "input": "zealousness", "output": "⠵⠂⠇⠳⠎⠰⠎" }, { "input": "zealousness's", "output": "⠵⠂⠇⠳⠎⠰⠎⠄⠎" }, { "input": "zebra", "output": "⠵⠑⠃⠗â " }, { "input": "zebra's", "output": "⠵⠑⠃⠗â â „â Ž" }, { "input": "zebras", "output": "⠵⠑⠃⠗â â Ž" }, { "input": "zebu", "output": "⠵⠑⠃⠥" }, { "input": "zebu's", "output": "⠵⠑⠃⠥⠄⠎" }, { "input": "zebus", "output": "⠵⠑⠃⠥⠎" }, { "input": "zed", "output": "⠵⠫" }, { "input": "zed's", "output": "⠵⠫⠄⠎" }, { "input": "zeds", "output": "⠵⠫⠎" }, { "input": "zeitgeist's", "output": "⠵⠑⠊⠞⠛⠑⠊⠌⠄⠎" }, { "input": "zeitgeists", "output": "⠵⠑⠊⠞⠛⠑⠊⠌⠎" }, { "input": "zenith", "output": "⠵⠢⠊⠹" }, { "input": "zenith's", "output": "⠵⠢⠊⠹⠄⠎" }, { "input": "zeniths", "output": "⠵⠢⠊⠹⠎" }, { "input": "zephyr", "output": "⠵⠑â â “⠽⠗" }, { "input": "zephyr's", "output": "⠵⠑â â “⠽⠗⠄⠎" }, { "input": "zephyrs", "output": "⠵⠑â â “⠽⠗⠎" }, { "input": "zeppelin", "output": "⠵⠑â â â ‘⠇⠔" }, { "input": "zeppelin's", "output": "⠵⠑â â â ‘⠇⠔⠄⠎" }, { "input": "zeppelins", "output": "⠵⠑â â â ‘⠇⠔⠎" }, { "input": "zero", "output": "⠵⠻⠕" }, { "input": "zero's", "output": "⠵⠻⠕⠄⠎" }, { "input": "zeroed", "output": "⠵⠻⠕⠫" }, { "input": "zeroing", "output": "⠵⠻⠕⠌" }, { "input": "zeros", "output": "⠵⠻⠕⠎" }, { "input": "zest", "output": "⠵⠑⠌" }, { "input": "zest's", "output": "⠵⠑⠌⠄⠎" }, { "input": "zestful", "output": "⠵⠑⠌⠰⠇" }, { "input": "zestfully", "output": "⠵⠑⠌⠰⠇⠇⠽" }, { "input": "zestfulness", "output": "⠵⠑⠌⠰⠇⠰⠎" }, { "input": "zestfulness's", "output": "⠵⠑⠌⠰⠇⠰⠎⠄⠎" }, { "input": "zestier", "output": "⠵⠑⠌⠊⠻" }, { "input": "zestiest", "output": "⠵⠑⠌⠊⠑⠌" }, { "input": "zests", "output": "⠵⠑⠌⠎" }, { "input": "zesty", "output": "⠵⠑⠌⠽" }, { "input": "zeta", "output": "⠵⠑⠞â " }, { "input": "zeta's", "output": "⠵⠑⠞â â „â Ž" }, { "input": "zetas", "output": "⠵⠑⠞â â Ž" }, { "input": "zigzag", "output": "⠵⠊⠛⠵â â ›" }, { "input": "zigzag's", "output": "⠵⠊⠛⠵â â ›â „â Ž" }, { "input": "zigzagged", "output": "⠵⠊⠛⠵â â ¶â «" }, { "input": "zigzagging", "output": "⠵⠊⠛⠵â â ¶â Œ" }, { "input": "zigzags", "output": "⠵⠊⠛⠵â â ›â Ž" }, { "input": "zilch", "output": "⠵⠊⠇⠡" }, { "input": "zilch's", "output": "⠵⠊⠇⠡⠄⠎" }, { "input": "zillion", "output": "⠵⠊⠇⠇⠊⠕â " }, { "input": "zillion's", "output": "⠵⠊⠇⠇⠊⠕â â „â Ž" }, { "input": "zillions", "output": "⠵⠊⠇⠇⠊⠕â â Ž" }, { "input": "zinc", "output": "⠵⠔⠉" }, { "input": "zinc's", "output": "⠵⠔⠉⠄⠎" }, { "input": "zincked", "output": "⠵⠔⠉⠅⠫" }, { "input": "zincking", "output": "⠵⠔⠉⠅⠌" }, { "input": "zincs", "output": "⠵⠔⠉⠎" }, { "input": "zinfandel", "output": "⠵⠔⠋⠯⠑⠇" }, { "input": "zinfandel's", "output": "⠵⠔⠋⠯⠑⠇⠄⠎" }, { "input": "zing", "output": "⠵⠌" }, { "input": "zing's", "output": "⠵⠌⠄⠎" }, { "input": "zinged", "output": "⠵⠌⠫" }, { "input": "zinger", "output": "⠵⠌⠻" }, { "input": "zinger's", "output": "⠵⠌⠻⠄⠎" }, { "input": "zingers", "output": "⠵⠌⠻⠎" }, { "input": "zingier", "output": "⠵⠌⠊⠻" }, { "input": "zingiest", "output": "⠵⠌⠊⠑⠌" }, { "input": "zinging", "output": "⠵⠌⠌" }, { "input": "zings", "output": "⠵⠌⠎" }, { "input": "zinnia", "output": "⠵⠔â â Šâ " }, { "input": "zinnia's", "output": "⠵⠔â â Šâ â „â Ž" }, { "input": "zinnias", "output": "⠵⠔â â Šâ â Ž" }, { "input": "zip", "output": "⠵⠊â " }, { "input": "zip's", "output": "⠵⠊â â „â Ž" }, { "input": "zipped", "output": "⠵⠊â â â «" }, { "input": "zipper", "output": "⠵⠊â â â »" }, { "input": "zipper's", "output": "⠵⠊â â â »â „â Ž" }, { "input": "zippered", "output": "⠵⠊â â â »â «" }, { "input": "zippering", "output": "⠵⠊â â â »â Œ" }, { "input": "zippers", "output": "⠵⠊â â â »â Ž" }, { "input": "zippier", "output": "⠵⠊â â â Šâ »" }, { "input": "zippiest", "output": "⠵⠊â â â Šâ ‘â Œ" }, { "input": "zipping", "output": "⠵⠊â â â Œ" }, { "input": "zippy", "output": "⠵⠊â â â ½" }, { "input": "zips", "output": "⠵⠊â â Ž" }, { "input": "zircon", "output": "⠵⠊⠗⠉⠕â " }, { "input": "zircon's", "output": "⠵⠊⠗⠉⠕â â „â Ž" }, { "input": "zirconium", "output": "⠵⠊⠗⠉⠕â â Šâ ¥â " }, { "input": "zirconium's", "output": "⠵⠊⠗⠉⠕â â Šâ ¥â â „â Ž" }, { "input": "zircons", "output": "⠵⠊⠗⠉⠕â â Ž" }, { "input": "zit", "output": "⠵⠊⠞" }, { "input": "zit's", "output": "⠵⠊⠞⠄⠎" }, { "input": "zither", "output": "⠵⠊⠮⠗" }, { "input": "zither's", "output": "⠵⠊⠮⠗⠄⠎" }, { "input": "zithers", "output": "⠵⠊⠮⠗⠎" }, { "input": "zits", "output": "⠵⠊⠞⠎" }, { "input": "zloties", "output": "⠵⠇⠕⠞⠊⠑⠎" }, { "input": "zloty", "output": "⠵⠇⠕⠞⠽" }, { "input": "zloty's", "output": "⠵⠇⠕⠞⠽⠄⠎" }, { "input": "zlotys", "output": "⠵⠇⠕⠞⠽⠎" }, { "input": "zodiac", "output": "⠵⠕⠙⠊â â ‰" }, { "input": "zodiac's", "output": "⠵⠕⠙⠊â â ‰â „â Ž" }, { "input": "zodiacal", "output": "⠵⠕⠙⠊â â ‰â â ‡" }, { "input": "zodiacs", "output": "⠵⠕⠙⠊â â ‰â Ž" }, { "input": "zombie", "output": "⠵⠕â â ƒâ Šâ ‘" }, { "input": "zombie's", "output": "⠵⠕â â ƒâ Šâ ‘â „â Ž" }, { "input": "zombies", "output": "⠵⠕â â ƒâ Šâ ‘â Ž" }, { "input": "zonal", "output": "⠵⠕â â â ‡" }, { "input": "zone", "output": "â µâ â •" }, { "input": "zone's", "output": "â µâ â •â „â Ž" }, { "input": "zoned", "output": "⠵⠕â â «" }, { "input": "zones", "output": "â µâ â •â Ž" }, { "input": "zoning", "output": "⠵⠕â â Œ" }, { "input": "zoning's", "output": "⠵⠕â â Œâ „â Ž" }, { "input": "zonked", "output": "⠵⠕â â …â «" }, { "input": "zoo", "output": "⠵⠕⠕" }, { "input": "zoo's", "output": "⠵⠕⠕⠄⠎" }, { "input": "zoological", "output": "⠵⠕⠕⠇⠕⠛⠊⠉â â ‡" }, { "input": "zoologically", "output": "⠵⠕⠕⠇⠕⠛⠊⠉⠠⠽" }, { "input": "zoologist", "output": "⠵⠕⠕⠇⠕⠛⠊⠌" }, { "input": "zoologist's", "output": "⠵⠕⠕⠇⠕⠛⠊⠌⠄⠎" }, { "input": "zoologists", "output": "⠵⠕⠕⠇⠕⠛⠊⠌⠎" }, { "input": "zoology", "output": "⠵⠕⠕⠇⠕⠛⠽" }, { "input": "zoology's", "output": "⠵⠕⠕⠇⠕⠛⠽⠄⠎" }, { "input": "zoom", "output": "⠵⠕⠕â " }, { "input": "zoom's", "output": "⠵⠕⠕â â „â Ž" }, { "input": "zoomed", "output": "⠵⠕⠕â â «" }, { "input": "zooming", "output": "⠵⠕⠕â â Œ" }, { "input": "zooms", "output": "⠵⠕⠕â â Ž" }, { "input": "zoophyte", "output": "⠵⠕⠕â â “⠽⠞⠑" }, { "input": "zoophyte's", "output": "⠵⠕⠕â â “⠽⠞⠑⠄⠎" }, { "input": "zoophytes", "output": "⠵⠕⠕â â “⠽⠞⠑⠎" }, { "input": "zoophytic", "output": "⠵⠕⠕â â “⠽⠞⠊⠉" }, { "input": "zoos", "output": "⠵⠕⠕⠎" }, { "input": "zounds", "output": "⠵⠨⠙⠎" }, { "input": "zucchini", "output": "⠵⠥⠉⠡⠔⠊" }, { "input": "zucchini's", "output": "⠵⠥⠉⠡⠔⠊⠄⠎" }, { "input": "zucchinis", "output": "⠵⠥⠉⠡⠔⠊⠎" }, { "input": "zwieback", "output": "⠵⠺⠊⠑⠃â â ‰â …" }, { "input": "zwieback's", "output": "⠵⠺⠊⠑⠃â â ‰â …â „â Ž" }, { "input": "zydeco's", "output": "⠵⠽⠙⠑⠉⠕⠄⠎" }, { "input": "zygote", "output": "⠵⠽⠛⠕⠞⠑" }, { "input": "zygote's", "output": "⠵⠽⠛⠕⠞⠑⠄⠎" }, { "input": "zygotes", "output": "⠵⠽⠛⠕⠞⠑⠎" }, { "input": "zygotic", "output": "⠵⠽⠛⠕⠞⠊⠉" }, { "input": "zymurgy", "output": "⠵⠽â â ¥â —⠛⠽" }, { "input": "zymurgy's", "output": "⠵⠽â â ¥â —⠛⠽⠄⠎" } ], "flags": { "outputUniBrl": true } } ] } liblouis-2.5.3/tests/harness/hu-hu-g1_harness.txt0000664000175000017500000067634512161041534016734 00000000000000{ "tables": [ "unicode.dis", "hu-hu-g1.ctb" ], "tests": [ { "data": [ { "input": "â â ‰â ‰â ‘⠎⠎⠊⠃⠊⠇⠊⠞⠽", "output": "accessibility" }, { "input": "â â ™â ˆâ Žâ ±â ‘â —â ¾", "output": "adásszerű" }, { "input": "â â ™â ˆâ Žâ ±â ·â â ‘â ž", "output": "adásszünet" }, { "input": "â â ™â ˆâ Žâ £â ˆâ —⠈⠎⠊⠛", "output": "adászárásig" }, { "input": "â â ™â ªâ Žâ ±â ˆâ â ‡â ", "output": "adósszámla" }, { "input": "â ¨â â ¹â â ›â •⠎⠱⠑⠗⠛⠡⠫", "output": "Agyagosszergény" }, { "input": "â â ¹â â ›â ¹â ¾â —⠾⠊⠅⠑â ", "output": "agyaggyűrűiken" }, { "input": "â â ¹â •â â «â •â ", "output": "agyonnyom" }, { "input": "â â ¹â •â â «â ¬â £â •â žâ ž", "output": "agyonnyúzott" }, { "input": "â â ¹â •â â «â ¾â žâ ž ", "output": "agyonnyűtt " }, { "input": "⠈⠹⠬⠎⠱⠑⠅⠑⠗⠑⠅", "output": "ágyússzekerek" }, { "input": "⠈⠚⠥⠇⠈⠎⠱⠑⠗⠾", "output": "ájulásszerű" }, { "input": "â â …⠈⠉⠎⠟⠧⠡⠫", "output": "akácsövény" }, { "input": "⠈⠅⠈⠉⠎⠟⠧⠡⠫", "output": "ákácsövény" }, { "input": "â â ‡â ˆâ Žâ ±â •⠇⠛⠈⠚â ", "output": "alásszolgája" }, { "input": "â â ‡â ˆâ Žâ ±â •⠇⠛⠈⠚⠥⠅ ", "output": "alásszolgájuk " }, { "input": "â â ‡â …â â ‡â â â £â ˆâ Žâ ±â ‘â —â §â ‘â —", "output": "alkalmazásszerver" }, { "input": "â â ‡â …â â ‡â â â £â ˆâ Žâ ±â Šâ â žâ ¾", "output": "alkalmazásszintű" }, { "input": "⠈⠇⠇⠈⠎⠱⠟⠛", "output": "állásszög" }, { "input": "â â ‡â â ˆâ Žâ ±â ·â —â …â ‘", "output": "almásszürke" }, { "input": "â â ‡â §â ˆâ Žâ ±â ‘⠛⠡⠫", "output": "alvásszegény" }, { "input": "â â ‡â §â ˆâ Žâ ±â ·â …⠎⠡⠛⠇⠑⠞⠑", "output": "alvásszükséglete" }, { "input": "â â ‡â §â ˆâ Žâ £â â §â â —", "output": "alvászavar" }, { "input": "â â «â â ›â ¹â »â £â »", "output": "anyaggyÅ‘zÅ‘" }, { "input": "â â «â â ›â ¹â ¾â šâ žâ ¡â Ž", "output": "anyaggyűjtés" }, { "input": "â â —â â «â •⠎⠱⠻⠅⠑", "output": "aranyosszÅ‘ke" }, { "input": "⠈⠗⠃⠕⠉⠩⠬⠩", "output": "árboccsúcs" }, { "input": "⠈⠗⠃⠪⠉⠩⠬⠩", "output": "árbóccsúcs" }, { "input": "⠈⠗⠃⠕⠉⠎⠥⠙â â —â â ž", "output": "árbocsudarat" }, { "input": "â â —⠉⠷⠗⠑⠛⠹⠥⠇⠇â â ™â ˆâ Ž", "output": "arcüreggyulladás" }, { "input": "â â —⠉⠩⠕â â ž", "output": "arccsont" }, { "input": "â â —⠉⠎⠑⠃", "output": "arcseb" }, { "input": "â â —⠉⠎⠑⠃⠑ ", "output": "arcsebe " }, { "input": "â â —⠉⠎⠡⠗⠷⠇⠡⠎", "output": "arcsérülés" }, { "input": "â â —⠣⠡â â «â •â ", "output": "arzénnyom" }, { "input": "⠈⠗⠑â â ‘⠇⠅⠑⠙⠡⠎⠱⠑⠗⠾", "output": "áremelkedésszerű" }, { "input": "⠈⠗⠛⠥⠎⠱⠑â â ¾", "output": "árgusszemű" }, { "input": "⠈⠗⠗⠡⠎⠱â â ƒâ ˆâ ¸â ž", "output": "árrésszabályt" }, { "input": "⠈⠗⠧⠌⠣⠎⠬⠚⠞⠕⠞⠞â ", "output": "árvízsújtotta" }, { "input": "⠈⠞⠇â â ›â ¹â ‘â —â ‘â …â —â ‘", "output": "átlaggyerekre" }, { "input": "â â ¥â žâ ªâ Žâ ±â ‘â â ·â §â ‘â ›", "output": "autósszemüveg" }, { "input": "â â ¥â žâ ªâ Žâ ±â »â «â ‘â ›", "output": "autósszÅ‘nyeg" }, { "input": "â â £â •â â «â •â â ƒâ â ", "output": "azonnyomban" }, { "input": "⠃⠈⠙⠕⠛⠹⠾⠚⠞⠑â â ¡â «", "output": "bádoggyűjtemény" }, { "input": "⠨⠃⠈â â «â Œâ —â ‘â Ž", "output": "Bánnyíres" }, { "input": "⠃⠈⠣⠊⠎⠱⠊â â ž", "output": "bázisszint" }, { "input": "⠨⠃â â —â ©â ©â â ‡", "output": "Barccsal" }, { "input": "â ƒâ â —⠅⠈⠩⠣⠑â â ‘", "output": "barkácszene" }, { "input": "â ƒâ â —â â ˆâ Žâ ±â »â …â ‘", "output": "barnásszÅ‘ke" }, { "input": "â ƒâ â —â â ˆâ Žâ ±â »â …â ¡â ž", "output": "barnásszÅ‘két" }, { "input": "â ƒâ â —â â ˆâ Žâ ±â ·â —â …â ‘", "output": "barnásszürke" }, { "input": "â ƒâ â —â â ‘⠱⠱â â ‡", "output": "barnesszal" }, { "input": "â ƒâ â —â •â â Žâ ˆâ ›â ¹â ¾â šâ žâ ‘â â ¡â «", "output": "baromsággyűjtemény" }, { "input": "â ƒâ â ±â ±â ¥â Žâ ±â ‘â —â ¾", "output": "basszusszerű" }, { "input": "â ƒâ â ±â ±â ¥â Žâ ±â Šâ â žâ ‘⠞⠊⠣⠈⠞⠕⠗", "output": "basszusszintetizátor" }, { "input": "⠃⠑⠩⠇⠡⠎⠱⠑⠗⠾⠑â ", "output": "becslésszerűen" }, { "input": "⠃⠑⠅⠑⠣⠙⠡⠎⠱⠊â â žâ ¾", "output": "bekezdésszintű" }, { "input": "⠨⠃⠡⠅⠡⠎⠱⠑â â žâ â â ™â —⠈⠎", "output": "Békésszentandrás" }, { "input": "⠃⠡⠇⠡⠎⠱⠟⠧⠑⠞", "output": "bélésszövet" }, { "input": "⠃⠡⠸⠑⠛⠹⠾⠚⠞⠑â â ¡â «", "output": "bélyeggyűjtemény" }, { "input": "⠃⠡⠗⠉⠎⠷⠧⠑⠛", "output": "bércsüveg" }, { "input": "⠃⠑⠗⠑â â ™â ‘⠣⠡⠎⠱⠑⠗⠾ ", "output": "berendezésszerű " }, { "input": "⠃⠑⠗⠑â â ™â ‘⠣⠡⠎⠱⠑⠞⠞", "output": "berendezésszett" }, { "input": "⠃⠑⠞⠑⠛⠹⠪⠹⠈⠱", "output": "beteggyógyász" }, { "input": "⠃⠊⠇⠊â â ©â £â Ÿâ —⠛⠡⠎", "output": "bilincszörgés" }, { "input": "⠃⠊â â Žâ ‘â â ¹â ¹â Ÿâ …â ¡â —", "output": "binsenggyökér" }, { "input": "⠃⠇⠥⠑⠎⠣⠑â â ‘", "output": "blueszene" }, { "input": "⠃⠊⠣â â Šâ ±â ±â ¡", "output": "biznisszé" }, { "input": "⠃⠕⠓⠪⠉⠎â â â …⠈⠚â ", "output": "bohócsapkája" }, { "input": "⠃⠕â â ƒâ •â â â ‘⠹⠹", "output": "bonbonmeggy" }, { "input": "⠃⠕⠗⠎⠱⠑â ", "output": "borsszem" }, { "input": "⠃⠕⠗⠎⠱⠪⠗⠪", "output": "borsszóró" }, { "input": "⠃⠕⠗⠣â â Žâ ±â »â —â ¾", "output": "borzasszÅ‘rű" }, { "input": "⠃⠕⠗⠣⠜⠌⠗", "output": "borzzsír" }, { "input": "⠃⠻⠛⠡⠎⠱⠑⠗⠾", "output": "bÅ‘gésszerű" }, { "input": "⠃⠟⠗⠞⠟â â «â ‘⠇⠧⠑", "output": "börtönnyelve" }, { "input": "⠃⠟⠗⠞⠟â â «â Œâ ‡â ˆâ Žâ •â â ‚ ⠃⠟⠗⠞⠟â â «â Šâ žâ ª", "output": "börtönnyíláson, börtönnyitó" }, { "input": "⠃⠗⠑⠅⠑⠛⠡⠎⠱⠑⠗⠾", "output": "brekegésszerű" }, { "input": "⠨⠃⠗⠊⠛â â â žâ ½", "output": "Briganty" }, { "input": "⠃⠗⠕â â £â Žâ ˆâ Žâ …â ", "output": "bronzsáska" }, { "input": "⠃⠗⠕â â £â Žâ ˆâ Žâ …⠈⠅", "output": "bronzsáskák" }, { "input": "⠃⠗⠕â â £â Žâ â Žâ •â …â …â â ‡ ", "output": "bronzsasokkal " }, { "input": "⠃⠗⠕â â £â Žâ Šâ Žâ â …", "output": "bronzsisak" }, { "input": "⠃⠥⠅⠈⠎⠱⠈â â ƒâ ", "output": "bukásszámba" }, { "input": "⠃⠬⠩⠬⠚⠈⠗⠈⠎⠱⠑⠗⠾", "output": "búcsújárásszerű" }, { "input": "⠃⠾â â «â •â â •â …", "output": "bűnnyomok" }, { "input": "⠉⠓⠊â â Žâ ‘â Žâ £â â ©â …â ª", "output": "chipseszacskó" }, { "input": "⠉⠊⠗⠊â â ‘⠇⠡⠎⠱⠑⠗⠾⠑â ", "output": "ciripelésszerűen" }, { "input": "⠉⠥⠗⠊⠕⠎⠊⠞⠽", "output": "curiosity" }, { "input": "â ©â â â ˆâ Žâ ±â ˆâ ", "output": "csapásszám" }, { "input": "⠩⠈⠗⠙⠈⠎⠱⠪⠇⠪", "output": "csárdásszóló" }, { "input": "â ©â â žâ žâ â â ˆâ Žâ ±â ‘â —â ¾", "output": "csattanásszerű" }, { "input": "â ©â â §â â —⠈⠎⠱⠑⠗⠾", "output": "csavarásszerű" }, { "input": "⠩⠊⠅⠪⠎⠱⠈â â â ™â ª", "output": "csikósszámadó" }, { "input": "⠩⠊⠇⠇â â ›â ¹â ˆâ —â â â …", "output": "csillaggyárnak" }, { "input": "â ©â Šâ â …⠡⠎⠱⠡⠇⠾", "output": "csipkésszélű" }, { "input": "â ©â Œâ â ¡â Žâ ±â ˆâ ", "output": "csípésszám" }, { "input": "⠩⠕⠃⠃â â â ˆâ Žâ ±â ‘â —â ¾", "output": "csobbanásszerű" }, { "input": "⠩⠥⠅⠇⠈⠎⠱⠑⠗⠾", "output": "csuklásszerű" }, { "input": "⠨⠙⠊⠪⠎⠱⠊⠇⠈⠹⠊", "output": "Diósszilágyi" }, { "input": "⠙⠊⠱⠱⠑⠗⠞⠈⠉⠊⠪", "output": "disszertáció" }, { "input": "⠙⠕⠃â â ‘⠗⠛⠡⠎⠱⠑⠗⠾⠑â ", "output": "dobpergésszerűen" }, { "input": "⠙⠟⠛⠹â â â šâ ¬", "output": "döggyapjú" }, { "input": "⠙⠟⠛⠹⠈⠗â â â …", "output": "döggyárnak" }, { "input": "⠙⠻⠇⠡⠎⠱⠟⠛", "output": "dÅ‘lésszög" }, { "input": "⠙⠟⠗⠛⠡⠎⠱⠑⠗⠾", "output": "dörgésszerű" }, { "input": "⠙⠟⠗⠛⠡⠎⠱⠑⠗⠾ ", "output": "dörgésszerű " }, { "input": "⠙⠟⠗⠜⠣⠟⠗⠑⠚", "output": "dörzszörej" }, { "input": "⠙⠗â â ›â •⠫⠕⠎⠱⠈⠣â â ™ ", "output": "dragonyosszázad " }, { "input": "⠙⠗â â ›â •⠫⠕⠎⠣⠈⠱⠇⠪â â ‡â š", "output": "dragonyoszászlóalj" }, { "input": "⠙⠗⠕⠛⠹â â â ¬â Ž", "output": "droggyanús" }, { "input": "⠙⠕â â â Šâ â ›â ¹â â â ¬", "output": "doppinggyanú" }, { "input": "⠙⠬⠎⠱â â …⠈⠇⠇⠬", "output": "dússzakállú" }, { "input": "⠡⠙⠑⠎⠱⠈⠚⠬", "output": "édesszájú" }, { "input": "⠡⠙⠑⠎⠱⠑⠱⠞⠑⠎⠞⠧⠡⠗", "output": "édesszesztestvér" }, { "input": "⠡⠙⠑⠎⠎⠡⠛⠹⠈⠗⠞⠪⠅", "output": "édességgyártók" }, { "input": "⠡⠛⠡⠎⠱â â ƒâ ˆâ ¸", "output": "égésszabály" }, { "input": "⠡⠛⠡⠎⠱â â ›", "output": "égésszag" }, { "input": "⠡⠛⠡⠎⠱⠈â ", "output": "égésszám" }, { "input": "⠡⠛⠡⠎⠱⠊⠛⠑⠞⠑⠇⠡⠎", "output": "égésszigetelés" }, { "input": "⠑⠙⠣⠡⠎⠱⠈â â •â ž", "output": "edzésszámot" }, { "input": "⠑⠋⠋⠑⠅⠞⠥⠎⠱⠑⠗⠾⠑â ", "output": "effektusszerűen" }, { "input": "⠑⠹⠑â â ‘⠎⠱⠈⠇⠬", "output": "egyenesszálú" }, { "input": "⠑⠹⠑â â ‘⠎⠱⠈⠗⠫⠬â â …", "output": "egyenesszárnyúak" }, { "input": "⠑⠹⠑â â ‘⠎⠱⠟⠛", "output": "egyenesszög" }, { "input": "⠑⠹⠑⠣⠎⠡⠛", "output": "egyezség" }, { "input": "⠑⠹⠑⠎⠱⠈â â ƒâ â ", "output": "egyesszámban" }, { "input": "⠑⠹⠎⠡⠛⠹⠑⠗⠳⠈⠃⠪⠇", "output": "egységgyertyából" }, { "input": "⠡⠓⠑⠎⠱⠈⠚â â ž ", "output": "éhesszájat " }, { "input": "⠑⠚⠞⠻⠑⠗⠫⠻⠎⠱⠈⠗⠫â â …", "output": "ejtÅ‘ernyÅ‘sszárnyak" }, { "input": "⠑⠚⠞⠻⠑⠗⠫⠻⠎⠱⠈⠣â â ™", "output": "ejtÅ‘ernyÅ‘sszázad" }, { "input": "⠑⠚⠞⠻⠑⠗⠫⠻⠎⠣⠈⠱⠇⠪â â ‡â š ", "output": "ejtÅ‘ernyÅ‘szászlóalj " }, { "input": "⠡⠅⠑⠎⠱⠪⠇⠈⠎", "output": "ékesszólás" }, { "input": "⠡⠅⠑⠎⠱⠪⠇⠪ ", "output": "ékesszóló " }, { "input": "⠑⠅⠓⠪⠎⠱⠑⠅⠡⠗", "output": "ekhósszekér" }, { "input": "⠑⠅⠓⠪⠎⠱⠑⠅⠑⠗⠑⠅", "output": "ekhósszekerek" }, { "input": "⠑⠇⠑⠅⠞⠗⠕â â «â â ‡â ˆâ ƒâ —â ", "output": "elektronnyalábra" }, { "input": "⠑⠇⠑⠎⠡⠛⠹⠾⠚⠞⠡⠎ ", "output": "eleséggyűjtés " }, { "input": "⠡⠇⠑⠎⠱⠑â â ¾", "output": "élesszemű" }, { "input": "⠑⠇⠇⠈⠞⠈⠎⠱⠑⠗⠾", "output": "ellátásszerű" }, { "input": "⠑⠇⠇⠑â â ˆâ ‡â ‡â ˆâ Žâ ±â ‘â …â —â ¡â «â ‚ ⠑⠇⠇⠑â â ˆâ ‡â ‡â ˆâ Žâ £â ªâ â ", "output": "ellenállásszekrény, ellenállászóna" }, { "input": "⠑⠇⠇⠑â â «â Šâ ‡â â žâ …â •â £â â ž", "output": "ellennyilatkozat" }, { "input": "⠑⠇⠇⠑â â «â •â â ˆâ Ž", "output": "ellennyomás" }, { "input": "â ‘â ‡â â ¡â â ‰â Žâ ¡â ›", "output": "elméncség" }, { "input": "⠑⠇⠻⠌⠗⠈⠎⠱⠑⠗⠾ ", "output": "előírásszerű " }, { "input": "⠑⠇⠗⠡â â Šâ ±â ±â ¡â … ", "output": "elrémisszék " }, { "input": "â ‘â â ƒâ ‘⠗⠓⠬⠎⠱â â ›â •â ž ", "output": "emberhússzagot " }, { "input": "â ‘â â ‘⠇⠡⠎⠱⠑⠗⠾", "output": "emelésszerű" }, { "input": "⠑⠫⠧⠑⠎⠜⠊â â ªâ —", "output": "enyveszsinór" }, { "input": "â ‘â â •⠱⠱â â ‡", "output": "eposszal" }, { "input": "⠡⠗⠉⠩â â â â ™â ¡â …â ‚ ⠡⠗⠉⠩⠑â â ›â ¡â Žâ ‚ ⠡⠗⠉⠩â â žâ •â —â â  ", "output": "érccsapadék, érccsengés, érccsatorna " }, { "input": "⠡⠗⠉⠎â â ‡â â …", "output": "ércsalak" }, { "input": "⠡⠗⠉⠎â â Ž", "output": "ércsas" }, { "input": "⠡⠗⠉⠎â â —⠥⠅⠅â â ‡", "output": "ércsarukkal" }, { "input": "⠡⠗⠉⠎⠑⠸⠑â ", "output": "ércselyem" }, { "input": "⠡⠗⠉⠎⠌â â ‚ ⠡⠗⠉⠎⠌â â šâ ˆâ ƒâ â ‚ ⠡⠗⠉⠎⠌â â ‡â ˆâ ™â  ", "output": "ércsíp, ércsípjába, ércsípláda " }, { "input": "â ¡â —â ©â Œâ â žâ ‘â žâ »", "output": "ércsíptetÅ‘" }, { "input": "⠡⠗⠉⠎⠊⠎â â …", "output": "ércsisak" }, { "input": "⠡⠗⠉⠎⠕⠙⠗⠕⠫", "output": "ércsodrony" }, { "input": "⠑⠗⠻⠎⠌⠞⠡⠎⠱â â ƒâ ˆâ ¸â •⠣⠈⠎", "output": "erÅ‘sítésszabályozás" }, { "input": "⠑⠗⠻⠋⠕⠗⠗⠈⠎⠣â â ƒâ ˆâ ‡â ª", "output": "erÅ‘forrászabáló" }, { "input": "⠑⠗⠻⠇⠅⠟⠙⠡⠎⠱â â ›â ¬â â â …", "output": "erÅ‘lködésszagúnak" }, { "input": "⠡⠗⠣⠡⠅⠑⠇⠡⠎⠱⠊â â ž", "output": "érzékelésszint" }, { "input": "⠡⠱⠱⠑⠗⠾", "output": "ésszerű" }, { "input": "⠑⠱⠅⠟⠣⠎⠕⠗⠂ ⠑⠱⠅⠟⠣⠎⠕⠗⠈â ", "output": "eszközsor, eszközsorán" }, { "input": "â ‘â §â ¡â Žâ £â â §â â —", "output": "evészavar" }, { "input": "â ‹â â ¹â •⠎⠱⠑â â žâ ‘â …", "output": "fagyosszentek" }, { "input": "⠋⠈⠅⠸⠈⠎⠣⠑â â ‘", "output": "fáklyászene" }, { "input": "â ‹â â —â …â â Žâ ±â ˆâ š ", "output": "farkasszáj " }, { "input": "â ‹â â —â …â â Žâ ±â ‘â ", "output": "farkasszem" }, { "input": "â ‹â â —â …â â Žâ ±â ‘â â ‘â ž ", "output": "farkasszemet " }, { "input": "⠨⠋â â —â …â â Žâ ±â Šâ ›â ‘â žâ ‚", "output": "Farkassziget," }, { "input": "⠋⠈⠎⠱⠈⠗⠬", "output": "fásszárú" }, { "input": "⠋⠈⠣⠊⠎⠱⠟⠛â â ‘â …", "output": "fázisszögnek" }, { "input": "⠋⠑⠹⠑â â ‰â ©â •â â •â —â ž", "output": "fegyenccsoport" }, { "input": "⠋⠑⠹⠑â â ‰â Žâ â â …⠈⠞ ", "output": "fegyencsapkát " }, { "input": "⠋⠑⠓⠡⠗⠑⠎⠱⠻⠅⠑⠂ ⠋⠑⠓⠡⠗⠑⠎⠱⠷⠗⠅⠑ ", "output": "fehéresszÅ‘ke, fehéresszürke " }, { "input": "⠋⠑⠅⠑⠞⠡⠎⠱⠷⠗⠅⠑", "output": "feketésszürke" }, { "input": "⠋⠑⠇⠙⠕⠇⠛⠕⠣⠈⠎⠣⠑â â ‘â …â â —", "output": "feldolgozászenekar" }, { "input": "⠋⠑⠇⠑⠎⠡⠛⠹⠊⠇⠅⠕⠎", "output": "feleséggyilkos" }, { "input": "⠋⠑⠇⠋⠑⠙⠑⠣⠡⠎⠱⠈â â ƒâ ", "output": "felfedezésszámba" }, { "input": "⠋⠑⠇⠎⠡⠛⠹⠊⠇⠅⠕⠇⠈⠎", "output": "felséggyilkolás" }, { "input": "⠋⠑⠇⠎⠕⠗⠕⠇⠈⠎⠱⠑⠗⠾⠑â ", "output": "felsorolásszerűen" }, { "input": "⠋⠑⠇⠱⠑⠗⠑⠇⠡⠎⠱⠑⠞⠞⠑⠞", "output": "felszerelésszettet" }, { "input": "⠋⠑⠇⠞⠑⠧⠡⠎⠱⠑⠗⠾⠑â ", "output": "feltevésszerűen" }, { "input": "⠋⠑⠗⠞⠻⠣⠡⠎⠱⠑⠗⠾", "output": "fertÅ‘zésszerű" }, { "input": "â ‹â ¡â â ‘⠎⠱⠷⠗⠅⠑", "output": "fémesszürke" }, { "input": "⠋⠊⠇⠉⠩⠊⠣â â ", "output": "filccsizma" }, { "input": "⠨⠋⠊⠋⠞⠽⠤⠨⠋⠊⠋⠞⠽", "output": "Fifty-Fifty" }, { "input": "⠋⠊⠇⠊⠛⠗⠈â â «â ‘⠇⠾", "output": "filigránnyelű" }, { "input": "â ‹â •â ›â â Žâ ±â ‘â ›", "output": "fogasszeg" }, { "input": "⠋⠕⠛⠋⠈⠚⠈⠎⠱⠑⠗⠾", "output": "fogfájásszerű" }, { "input": "⠋⠕⠛⠇â â ‡â …⠕⠣⠈⠎⠱⠑⠗⠾", "output": "foglalkozásszerű" }, { "input": "⠋⠕⠛⠹â â ‡â ¥", "output": "foggyalu" }, { "input": "⠋⠕⠛⠹⠟⠅⠡⠗", "output": "foggyökér" }, { "input": "⠋⠕⠛⠹⠥⠇⠇â â ™â ˆâ Ž", "output": "foggyulladás" }, { "input": "⠋⠕⠛⠹⠾⠗⠾", "output": "foggyűrű" }, { "input": "⠋⠕⠗⠛⠈⠎⠱â â ƒâ ˆâ ¸", "output": "forgásszabály" }, { "input": "â ‹â •â —â â ˆâ â Žâ ±â Šâ â žâ ‘⠞⠊⠣⠈⠞⠕⠗⠕⠅", "output": "formánsszintetizátorok" }, { "input": "⠋⠕⠗⠗⠈⠎⠱⠟⠧⠑⠛", "output": "forrásszöveg" }, { "input": "⠋⠕⠎⠱⠌â â ¾", "output": "fosszínű" }, { "input": "⠋⠟⠇⠙⠩⠥⠱â â â ‡â ˆâ Žâ ±â ‘⠗⠾⠑â ", "output": "földcsuszamlásszerűen" }, { "input": "⠋⠟⠇⠡⠇⠑⠱⠱⠑â ", "output": "fölélesszem" }, { "input": "⠋⠻⠣⠻⠅â â ‡â ˆâ â «â ‘⠇⠑⠞", "output": "fÅ‘zÅ‘kalánnyelet" }, { "input": "⠋⠥⠧â â —⠕⠎⠱⠑⠅⠡⠗", "output": "fuvarosszekér" }, { "input": "⠋⠬⠧⠪⠎⠱⠑⠅⠉⠊⠪", "output": "fúvósszekció" }, { "input": "⠋⠬⠧⠪⠎⠱⠑⠗⠱⠈â ", "output": "fúvósszerszám" }, { "input": "⠋⠬⠧⠪⠎⠱⠊â â ‹â ªâ â Šâ ", "output": "fúvósszimfónia" }, { "input": "⠋⠬⠧⠪⠎⠣⠑â â ‘â …â â —", "output": "fúvószenekar" }, { "input": "⠋⠾⠞⠡⠎⠱â â ›", "output": "fűtésszag" }, { "input": "â ›â â —â â ƒâ •â â ‰â Žâ ‘â —â ‘â ›", "output": "garaboncsereg" }, { "input": "⠛⠈⠣⠎â â —â â ½", "output": "gázspray" }, { "input": "⠛⠈⠣⠎⠞⠕â ", "output": "gázstop" }, { "input": "⠛⠈⠣⠎⠥⠛⠈⠗", "output": "gázsugár" }, { "input": "⠛⠑⠛⠹⠈⠗⠕⠎", "output": "geggyáros" }, { "input": "⠛⠑⠗⠊â â ‰â Žâ ¡â —⠷⠇⠞", "output": "gerincsérült" }, { "input": "⠛⠑⠗⠊â â ‰â Žâ ¡â —â § ", "output": "gerincsérv " }, { "input": "⠛⠊â â ±â ‘â â ›â ¹â Ÿâ …â ¡â —", "output": "ginszenggyökér" }, { "input": "⠛⠊â â £â ‘â â ›â ¹â Ÿâ …â ¡â —", "output": "ginzenggyökér" }, { "input": "⠨⠛⠕â â ƒâ •⠎⠱⠑⠛", "output": "Gombosszeg" }, { "input": "⠛⠕â â ™â §â Šâ Žâ ‘⠇⠡⠎⠱⠑⠗⠾", "output": "gondviselésszerű" }, { "input": "⠛⠻⠣⠎⠌â ", "output": "gÅ‘zsíp" }, { "input": "⠛⠻⠣⠎⠥⠛⠈⠗", "output": "gÅ‘zsugár" }, { "input": "⠛⠻⠣⠱⠊⠧â â ³â ³â ¬", "output": "gÅ‘zszivattyú" }, { "input": "⠛⠗⠈â â ˆâ žâ •⠎⠣⠈⠱⠇⠪â â ‡â š", "output": "gránátoszászlóalj" }, { "input": "⠛⠬⠫⠧⠑⠗⠎⠱⠑⠗⠣⠻", "output": "gúnyversszerzÅ‘" }, { "input": "â ¹â â ‡â •⠛⠕⠎⠱⠈⠣â â ™", "output": "gyalogosszázad" }, { "input": "â ¹â â ‡â •⠛⠕⠎⠣⠈⠱⠇⠪â â ‡â šâ ‚", "output": "gyalogoszászlóalj," }, { "input": "⠹⠕⠗⠎⠱⠈⠗⠫⠬", "output": "gyorsszárnyú" }, { "input": "⠹⠕⠗⠎⠱⠑⠅⠡⠗ ", "output": "gyorsszekér " }, { "input": "⠹⠕⠗⠎⠱⠾⠗⠻", "output": "gyorsszűrÅ‘" }, { "input": "⠹⠬⠚⠞⠈⠎⠱â â ƒâ ˆâ ¸", "output": "gyújtásszabály" }, { "input": "⠹⠬⠚⠞⠈⠎⠜⠊â â ªâ —", "output": "gyújtászsinór" }, { "input": "⠹⠷⠇⠑⠅⠑⠣⠡⠎⠱â â ƒâ â ™â Žâ ˆâ ›â •â ž", "output": "gyülekezésszabadságot" }, { "input": "⠹⠾⠇⠡⠎⠱⠌â â ‘", "output": "gyűlésszíne" }, { "input": "â “â â ƒâ â —â ©â ©â â ‡", "output": "habarccsal" }, { "input": "â “â â ƒâ Šâ žâ ¥â Žâ ±â ‘⠗⠾⠑â ", "output": "habitusszerűen" }, { "input": "â “â â ™â Šâ â «â â ›â ¹â ˆâ —", "output": "hadianyaggyár" }, { "input": "â “â â ™â Žâ ‘⠗⠑⠛⠹⠾⠚⠞⠡⠎ ", "output": "hadsereggyűjtés " }, { "input": "â “â â šâ ‡â ˆâ Žâ ±â Ÿâ ›", "output": "hajlásszög" }, { "input": "â “â â šâ ªâ Žâ ±â ‘⠅⠑⠗⠉⠑ ", "output": "hajósszekerce " }, { "input": "â “â â šâ ªâ Žâ ±â ‘â â ¡â ¸â £â ‘â ž", "output": "hajósszemélyzet" }, { "input": "â “â â â ¹â â â ˆâ ±â ˆâ Žâ ±â ‘â —â ¾", "output": "hangyamászásszerű" }, { "input": "â “â â â Šâ Žâ ±â Œâ â ‘â Ž", "output": "hamisszínes" }, { "input": "â “â â ‡â ‡â ˆâ Žâ £â â §â â —", "output": "hallászavar" }, { "input": "â “â â ‡â •â žâ žâ â Žâ ±â ‘â …â ¡â — ", "output": "halottasszekér " }, { "input": "â “â â ‡â •â žâ žâ â Žâ ±â •â ƒâ ", "output": "halottasszoba" }, { "input": "â “â â ‡â •â žâ žâ â Žâ ±â •⠃⠈⠃â ", "output": "halottasszobába" }, { "input": "â “â â â §â â Žâ ±â »â …â ‘", "output": "hamvasszÅ‘ke" }, { "input": "â “â â â §â â Žâ ±â ·â —â …â ‘", "output": "hamvasszürke" }, { "input": "â “â â â ›â ¹â â …â •â —â ‡â â ž", "output": "hanggyakorlat" }, { "input": "⠓⠈⠫⠈⠎⠱â â ›", "output": "hányásszag" }, { "input": "â “â â —â â ›â •⠎⠣⠟⠇⠙", "output": "haragoszöld" }, { "input": "â “â â —â â â ›â ¹â ˆâ —â •â Žâ •â …", "output": "haranggyárosok" }, { "input": "â “â â —⠉⠕⠎⠱⠑⠇⠇⠑â ", "output": "harcosszellem" }, { "input": "â “â â —⠉⠩⠑⠇⠑⠅â â ¡â « ", "output": "harccselekmény " }, { "input": "â “â â —⠉⠩⠕â â •â —â ž", "output": "harccsoport" }, { "input": "â “â â —⠉⠎⠕⠗", "output": "harcsor" }, { "input": "â “â â —â â Šâ â ‰â Žâ •â —â «â Š", "output": "harmincsornyi" }, { "input": "⠓⠈⠗â â â Žâ ±â ˆâ â ¬", "output": "hármasszámú" }, { "input": "⠓⠈⠗â â â Žâ ±â â …", "output": "hármasszak" }, { "input": "⠨⠓⠈⠗â â â Žâ ±â Šâ ›â ‘â ž", "output": "Hármassziget" }, { "input": "⠓⠈⠗⠎⠱⠡â ", "output": "hársszén" }, { "input": "⠓⠈⠗⠎⠱⠑â â ‘â ž", "output": "hársszenet" }, { "input": "⠓⠈⠗⠳⠈⠎⠱⠈⠗⠫⠬", "output": "hártyásszárnyú" }, { "input": "â “â â Žâ ±â »â —⠣⠑⠞", "output": "hasszÅ‘rzet" }, { "input": "â “â â Žâ ±â ¡â ‡", "output": "hasszél" }, { "input": "â “â â Žâ Šâ Žâ ±â â ›â •â ž", "output": "hasisszagot" }, { "input": "â “â â žâ ˆâ Žâ ±â ¡â ‡â ‘â Žâ Žâ ¡â ›", "output": "hatásszélesség" }, { "input": "â “â â žâ ˆâ Žâ ±â ·â â ‘â ž", "output": "hatásszünet" }, { "input": "⠓⠈⠜⠈⠗⠅⠕⠙⠈⠎⠈⠞", "output": "házsárkodását" }, { "input": "â “â â £â ¥â ›â Žâ ˆâ ›â ¹â ˆâ —", "output": "hazugsággyár" }, { "input": "⠓⠑⠹⠑⠎⠱⠟⠛", "output": "hegyesszög" }, { "input": "⠓⠑⠹⠱⠕⠗⠕⠎⠱⠑⠗⠾", "output": "hegyszorosszerű" }, { "input": "⠓⠑⠅⠥⠎⠱â â ›â •â ž", "output": "hekusszagot" }, { "input": "â “â ‘â â žâ ‘â Žâ ±â â …â žâ â â ‹â •â ¸â â â ˆâ ž", "output": "hentesszaktanfolyamát" }, { "input": "⠓⠊⠗⠙⠑⠞⠡⠎⠱â â ›â ¬", "output": "hirdetésszagú" }, { "input": "⠓⠊⠗⠙⠑⠞⠡⠎⠱⠟⠧⠑⠛", "output": "hirdetésszöveg" }, { "input": "â “â Šâ §â â žâ ˆâ Žâ ±â ‘⠗⠾⠑â ", "output": "hivatásszerűen" }, { "input": "â “â Šâ §â â žâ …⠕⠣⠈⠎⠱⠑⠗⠾", "output": "hivatkozásszerű" }, { "input": "⠓⠌⠧⠈⠎⠱⠾⠗⠡⠎", "output": "hívásszűrés" }, { "input": "⠓⠌⠣⠑⠇⠅⠑⠙⠡⠎⠱⠈â â ƒâ ", "output": "hízelkedésszámba" }, { "input": "⠓⠪⠸â â ›â ¹â ¥â ‡â ‡â â ™â ˆâ Ž", "output": "hólyaggyulladás" }, { "input": "⠓⠟⠗⠛⠡⠎⠱⠑⠗⠾", "output": "hörgésszerű" }, { "input": "⠓⠻⠎⠱⠌â â ¡â ±", "output": "hÅ‘sszínész" }, { "input": "⠓⠻⠎⠱⠟⠧⠑⠞⠎⠡⠛ ", "output": "hÅ‘sszövetség " }, { "input": "⠓⠬⠎⠇⠑⠧⠑⠎⠱â â ›", "output": "húslevesszag" }, { "input": "⠓⠬⠎⠱â â ‹â ž", "output": "hússzaft" }, { "input": "⠓⠬⠎⠱â â ›", "output": "hússzag" }, { "input": "⠓⠬⠎⠱â â ›â ¬", "output": "hússzagú" }, { "input": "⠓⠬⠎⠱⠈⠇⠇⠌⠞â â ˆâ « ", "output": "hússzállítmány " }, { "input": "⠓⠬⠎⠱⠈⠇⠇⠌⠞⠪", "output": "hússzállító" }, { "input": "⠓⠬⠎⠱â â ‡â •â â â ", "output": "hússzalonna" }, { "input": "⠓⠬⠎⠱⠑⠅⠗⠡⠫", "output": "hússzekrény" }, { "input": "⠓⠬⠎⠱⠑⠇⠑⠞", "output": "hússzelet" }, { "input": "⠨⠓⠬⠎⠱⠊⠛⠑⠞", "output": "Hússziget" }, { "input": "⠓⠬⠎⠱⠌â â ¾", "output": "hússzínű" }, { "input": "⠨⠓⠬⠎⠱⠟⠧⠑⠞⠎⠡⠛", "output": "Hússzövetség" }, { "input": "⠓⠾⠎⠡⠛⠹⠾⠗⠾⠎⠟⠅", "output": "hűséggyűrűsök" }, { "input": "⠓⠾⠧⠟⠎⠱⠑â â ¾", "output": "hűvösszemű" }, { "input": "⠊⠙⠑⠛⠹⠑â â ›â ‘â Žâ ¡â ›", "output": "ideggyengeség" }, { "input": "⠊⠙⠑⠛⠹⠪⠹⠈⠱â â ž", "output": "ideggyógyászat" }, { "input": "⠊⠙⠑⠛⠹⠪⠹⠊â â žâ ¡â £â ‘â ž", "output": "ideggyógyintézet" }, { "input": "⠊⠙⠑⠛⠹⠟â â ›â ‘", "output": "ideggyönge" }, { "input": "⠊⠙⠑⠛⠹⠟⠞⠗⠻", "output": "ideggyötrÅ‘" }, { "input": "⠊⠙⠑⠛⠹⠥⠇⠇â â ™â ˆâ Ž", "output": "ideggyulladás" }, { "input": "⠊⠙⠑â â žâ Šâ žâ ˆâ Žâ £â â §â â —", "output": "identitászavar" }, { "input": "⠊⠙⠻⠚⠈⠗⠈⠎⠱⠕⠇⠛⠈⠇â â ž", "output": "idÅ‘járásszolgálat" }, { "input": "â Šâ â ˆâ ™â Žâ ˆâ ›â ¹â ¾â šâ žâ ‘â â ¡â «", "output": "imádsággyűjtemény" }, { "input": "â Šâ â â ¥â ‡â £â ¥â Žâ ±â ¡â ‡â ‘⠎⠎⠡⠛⠡⠞", "output": "impulzusszélességét" }, { "input": "â Šâ â â Žâ ±â ‘â —â ‘â ", "output": "inasszerep" }, { "input": "â Šâ â â Žâ ±â ‘â —â ‘â â ‘â ž ", "output": "inasszerepet " }, { "input": "â Šâ â â Žâ ±â ‘â —â ‘â žâ ‘â žâ ‘â ž", "output": "inasszeretetet" }, { "input": "â Šâ â ™â Šâ ˆâ â «â ‘⠇⠧", "output": "indiánnyelv" }, { "input": "â Šâ â ‹â •â —â â ˆâ ‰â Šâ ªâ Žâ ±â â ƒâ â ™â Žâ ˆâ ›", "output": "információsszabadság" }, { "input": "â Šâ â ¹â ‘â â «â ‘⠇⠧⠕⠅⠞â â žâ ˆâ Ž", "output": "ingyennyelvoktatás" }, { "input": "â Œâ â «â ¬â šâ žâ ªâ ‚", "output": "ínnyújtó," }, { "input": "â Œâ â «â ¬â šâ žâ ªâ ž ", "output": "ínnyújtót " }, { "input": "⠌⠫⠑â â ‰â Žâ ¡â ›", "output": "ínyencség" }, { "input": "⠌⠗⠈⠎⠱⠑⠗⠑⠞⠑⠞⠂", "output": "írásszeretet," }, { "input": "â Šâ Žâ â ¡â žâ ‡â ¡â Žâ ±â ˆâ ", "output": "ismétlésszám" }, { "input": "⠊⠗⠞⠈⠎⠱⠡⠇", "output": "irtásszél" }, { "input": "â Šâ Žâ žâ ‘â â «â Šâ ‡â ", "output": "istennyila" }, { "input": "⠚⠈⠗⠈⠎⠱⠑⠗⠾ ", "output": "járásszerű " }, { "input": "⠚⠈⠗⠈⠎⠱⠡⠅⠓⠑⠸", "output": "járásszékhely" }, { "input": "⠚⠈⠎â â Šâ Žâ ±â •⠃⠕⠗", "output": "jáspisszobor" }, { "input": "⠚⠑⠛⠑⠉⠩⠕â â •â —â ž", "output": "jegeccsoport" }, { "input": "⠚⠡⠛⠹⠈⠗⠞⠈⠎", "output": "jéggyártás" }, { "input": "⠚⠑⠇⠑â â ¡â Žâ ±â ‘â —â ¾ ", "output": "jelenésszerű " }, { "input": "⠚⠑⠇⠑â â žâ ¡â Žâ ±â ‘â —â ¾", "output": "jelentésszerű" }, { "input": "⠚⠑⠇⠑â â žâ ¡â Žâ ±â Šâ â ž", "output": "jelentésszint" }, { "input": "⠚⠑⠇⠣⠡⠎⠱⠑⠗⠾", "output": "jelzésszerű" }, { "input": "⠚⠪⠎⠱â â §â â Šâ ‚", "output": "jósszavai," }, { "input": "⠚⠪⠎⠱⠑⠇⠇⠑â â ‘â ‚", "output": "jósszelleme," }, { "input": "â …â â ƒâ Šâ â «â Œâ ‡â ˆâ Žâ •â ", "output": "kabinnyíláson" }, { "input": "â …â â ƒâ Šâ â «â •â â ˆâ Ž", "output": "kabinnyomás" }, { "input": "⠙⠊⠣⠈⠚â â «â ‘⠇⠧", "output": "dizájnnyelv" }, { "input": "⠙⠊⠣⠈⠚â â «â â …⠇⠈â â ‰", "output": "dizájnnyaklánc" }, { "input": "â …â â …â â Žâ ±â ª", "output": "kakasszó" }, { "input": "â …â â ‡â â â ˆâ ©â £â ‘â â ›â ¡â Ž", "output": "kalapácszengés" }, { "input": "â …â â ‡â â â ˆâ ©â £â •â â ›â •â —â ", "output": "kalapácszongora" }, { "input": "â …â â â Šâ •â â «â Š", "output": "kamionnyi" }, { "input": "â …â â â â —⠈⠎⠱⠑⠗⠾", "output": "kaparásszerű" }, { "input": "⠨⠅â â â •⠇⠩", "output": "Kapolcs" }, { "input": "⠨⠅â â â •⠎⠱⠑⠅⠩⠻", "output": "KaposszekcsÅ‘" }, { "input": "⠨⠅â â â •⠎⠱⠑⠗⠙â â “â ‘â ¸", "output": "Kaposszerdahely" }, { "input": "â …â â â ¥â Žâ ±â •â ƒâ ", "output": "kapusszoba" }, { "input": "â …â â —⠕⠎⠱⠡⠅", "output": "karosszék" }, { "input": "â …â â —⠞⠈⠩⠣⠈â â •â —", "output": "kartácszápor" }, { "input": "â …â â —â žâ •â â «â Š", "output": "kartonnyi" }, { "input": "â …â â Žâ ±â ¡â …", "output": "kasszék" }, { "input": "â …â â žâ â ‡â ªâ ›â ¥â Žâ ±â ˆâ ", "output": "katalógusszám" }, { "input": "â …â â žâ ‘â …â Šâ £â â ¥â Žâ ±â ‘â —â ¾", "output": "katekizmusszerű" }, { "input": "â …â â žâ žâ Šâ â žâ ˆâ Žâ ±â ˆâ ", "output": "kattintásszám" }, { "input": "â …â â §â â —⠈⠎⠱⠑⠗⠾", "output": "kavarásszerű" }, { "input": "â …â â §â Šâ ©â ±â ‘â —â ¾ ", "output": "kavicsszerű " }, { "input": "â …â â §â Šâ ©â £â ˆâ â •â —", "output": "kavicszápor" }, { "input": "â …â â §â Šâ ©â £â ˆâ žâ •â «", "output": "kavicszátony" }, { "input": "â …â â §â Šâ ©â £â ¥â £â â ‡â ¡â …", "output": "kavicszuzalék" }, { "input": "⠅⠡⠅⠑⠎⠱⠷⠗⠅⠑", "output": "kékesszürke" }, { "input": "⠨⠅⠑â â ‘â â ‘⠎⠱⠑â â žâ â ˆâ —â žâ •â ", "output": "Kemenesszentmárton" }, { "input": "⠨⠅⠑â â ‘â â ‘⠎⠱⠑â â žâ â ¡â žâ ‘â —", "output": "Kemenesszentpéter" }, { "input": "â …â ¡â â â ˆâ Žâ ±â ‘â —â ¾ ", "output": "képmásszerű " }, { "input": "â …â ¡â â §â ˆâ ‡â žâ ˆâ Žâ ±â ˆâ â •â ž", "output": "képváltásszámot" }, { "input": "â …â ¡â â £â ¡â Žâ ±â ‘â —â ¾ ", "output": "képzésszerű " }, { "input": "â …â ¡â â £â ¡â Žâ ±â ‘⠗⠧⠑⠣⠡⠎", "output": "képzésszervezés" }, { "input": "⠅⠑⠗⠑⠅⠑⠎⠱⠡⠅", "output": "kerekesszék" }, { "input": "⠅⠑⠗⠑⠎⠡⠎⠱⠕⠇⠛⠈⠇⠞â â žâ ª", "output": "keresésszolgáltató" }, { "input": "⠅⠡⠗⠙⠡⠎⠣⠈â â •â —", "output": "kérdészápor" }, { "input": "⠅⠡⠗⠡⠎⠱⠑⠗⠾⠑â ", "output": "kérésszerűen" }, { "input": "⠅⠑⠗⠌⠞⠡⠎⠱â â ›â ›â â žâ ª", "output": "kerítésszaggató" }, { "input": "⠅⠡⠎⠱⠬⠗⠈⠎", "output": "késszúrás" }, { "input": "⠅⠑⠞⠗⠑⠉⠩â â â ™â ", "output": "ketreccsapda" }, { "input": "â …â ‘â §â ¡â Žâ ±â â §â ¬ ", "output": "kevésszavú " }, { "input": "⠅⠑⠧⠡⠎⠱⠑⠗", "output": "kevésszer" }, { "input": "â …â Šâ â ™â ˆâ Žâ £â ˆâ —⠕⠇⠈⠎", "output": "kiadászárolás" }, { "input": "⠅⠊⠋⠑⠚⠇⠑⠱⠱⠑â ", "output": "kifejlesszem" }, { "input": "⠅⠊⠓⠌⠧⠈⠎⠱⠑⠗⠾", "output": "kihívásszerű" }, { "input": "⠅⠊⠇⠑â â ‰â ©â â žâ •â —â â ", "output": "kilenccsatorna" }, { "input": "⠅⠊⠇⠊â â ©â £â Ÿâ —⠛⠡⠎⠞ ", "output": "kilincszörgést " }, { "input": "⠨⠅⠊⠎⠱⠈⠇⠇⠈⠎", "output": "Kisszállás" }, { "input": "⠅⠊⠎⠱⠈â â ¬", "output": "kisszámú" }, { "input": "⠨⠅⠊⠎⠱⠑⠃⠑â ", "output": "Kisszeben" }, { "input": "⠅⠊⠎⠱⠌â â ‘â Ž", "output": "kisszínes" }, { "input": "⠅⠊⠎⠱⠡⠅", "output": "kisszék" }, { "input": "⠅⠊⠎⠱⠑⠅⠗⠡⠫", "output": "kisszekrény" }, { "input": "⠨⠅⠊⠎⠱⠑â â žâ â ˆâ —â žâ •â ", "output": "Kisszentmárton" }, { "input": "⠅⠊⠎⠱⠑⠗⠾", "output": "kisszerű" }, { "input": "⠨⠅⠊⠎⠱⠊⠛⠑⠞", "output": "Kissziget" }, { "input": "⠅⠊⠎⠱⠕⠃⠈⠃â â ", "output": "kisszobában" }, { "input": "⠅⠊⠎⠱⠪⠞⠈⠗", "output": "kisszótár" }, { "input": "⠨⠅⠊⠎⠣⠕â â ƒâ •â —", "output": "Kiszombor" }, { "input": "⠅⠊⠎⠱⠟⠧⠑⠞⠅⠑⠣⠑⠞", "output": "kisszövetkezet" }, { "input": "⠅⠊⠱⠟⠛⠑⠇⠇⠡⠎⠱⠑⠗⠾⠑â ", "output": "kiszögellésszerűen" }, { "input": "⠨⠅⠊⠎⠜⠊⠙⠈⠫", "output": "Kiszsidány" }, { "input": "⠅⠊⠞⠟⠗⠡⠎⠱⠑⠗⠾", "output": "kitörésszerű" }, { "input": "â …â Šâ žâ ·â â žâ ‘â žâ ¡â Žâ ±â â ‡â â ›â •â …â â ž", "output": "kitüntetésszalagokat" }, { "input": "⠅⠊⠧⠡⠛⠣⠡⠎⠱⠑⠗⠾⠑â ", "output": "kivégzésszerűen" }, { "input": "⠅⠇⠊⠑â â Žâ ±â •â ‹â žâ §â ‘â —", "output": "kliensszoftver" }, { "input": "⠅⠪⠉⠩⠕â â ª", "output": "kóccsomó" }, { "input": "⠅⠕⠇⠃⠈⠱⠕⠎⠜⠑â â ‡â ‘", "output": "kolbászoszsemle" }, { "input": "⠅⠕⠇⠙⠥⠎⠱⠈⠚", "output": "koldusszáj" }, { "input": "⠅⠕⠇⠙⠥⠎⠱â â …⠈⠇⠇", "output": "koldusszakáll" }, { "input": "⠅⠕⠇⠙⠥⠎⠱⠑⠛⠡⠫", "output": "koldusszegény" }, { "input": "⠅⠕⠇⠙⠥⠎⠣⠑â â ‘ ", "output": "kolduszene " }, { "input": "â …â •â â â ¥â â Šâ …⠈⠉⠊⠪⠎⠱⠕⠃â ", "output": "kommunikációsszoba" }, { "input": "â …â •â â â •⠱⠱⠑⠱⠱⠕⠗", "output": "komposszesszor" }, { "input": "â …â •â â â •⠱⠱⠑⠱⠱⠕⠗⠈⠞⠥⠎ ", "output": "komposszesszorátus " }, { "input": "â …â •â —â â •⠎⠱⠷⠗⠅⠑", "output": "kormosszürke" }, { "input": "â …â •â Žâ ±â â —â §", "output": "kosszarv" }, { "input": "⠅⠕⠎⠱⠑â ", "output": "kosszem" }, { "input": "⠅⠕⠗⠞⠈⠗⠎⠣⠑â â ‘â Š", "output": "kortárszenei" }, { "input": "⠅⠪⠗⠥⠎⠣⠑â â ‘", "output": "kóruszene" }, { "input": "⠅⠟⠓⠟⠛⠡⠎⠱⠑⠗⠾", "output": "köhögésszerű" }, { "input": "⠅⠟⠇⠩⠟â â «â â …⠇⠈â â ‰â â Šâ ž", "output": "kölcsönnyakláncait" }, { "input": "⠅⠟⠣⠇⠑⠅⠑⠙⠡⠎⠱⠑⠗⠧⠑⠣⠻⠅", "output": "közlekedésszervezÅ‘k" }, { "input": "â …â »â â ¾â §â ‘⠎⠱⠑â ", "output": "kÅ‘művesszem" }, { "input": "â …â »â â ¾â §â ‘⠎⠱⠑⠗⠱⠈â â â Šâ ž ", "output": "kÅ‘művesszerszámait " }, { "input": "â …â •â â Žâ žâ â â Žâ ±â Šâ â ƒâ ªâ ‡â ¥â â â Šâ â â …", "output": "konstansszimbólumainak" }, { "input": "â …â Ÿâ â žâ Ÿâ Žâ ±â ‘⠛⠡⠸", "output": "köntösszegély" }, { "input": "⠅⠟⠫⠟⠅⠇⠡⠎⠱⠡⠇⠑⠎", "output": "könyöklésszéles" }, { "input": "⠅⠟⠫⠧⠑⠎⠱⠑⠅⠗⠡⠫", "output": "könyvesszekrény" }, { "input": "⠅⠻⠗⠊⠎⠱⠈⠗", "output": "kÅ‘risszár" }, { "input": "⠅⠻⠗⠊⠎⠱⠈⠗â â ž ", "output": "kÅ‘risszárat " }, { "input": "â …â Ÿâ —â Ÿâ Žâ ±â â …⠈⠇", "output": "körösszakál" }, { "input": "â …â Ÿâ —â Ÿâ Žâ ±â â …⠈⠇⠊ ", "output": "körösszakáli " }, { "input": "⠨⠅⠟⠗⠟⠎⠣⠥⠛", "output": "Köröszug" }, { "input": "⠅⠟⠞⠑⠇⠑⠎⠎⠡⠛⠹â â …⠕⠗⠇⠈⠎", "output": "kötelességgyakorlás" }, { "input": "⠅⠟⠣⠎⠈⠧", "output": "közsáv" }, { "input": "⠅⠟⠣⠎⠑⠗⠑⠛", "output": "közsereg" }, { "input": "â …â •â â žâ â …⠞⠥⠎⠱⠈â ", "output": "kontaktusszám" }, { "input": "⠅⠥⠙â â —⠉⠎⠕⠗⠕⠣â â ž", "output": "kudarcsorozat" }, { "input": "⠅⠥⠇⠩⠣⠟⠗⠛⠡⠎", "output": "kulcszörgés" }, { "input": "â …â ¥â â ‡â ¥â â ›â ¹â ˆâ —", "output": "kuplunggyár" }, { "input": "⠅⠥⠗⠥⠉⠎⠈⠛", "output": "kurucság" }, { "input": "⠅⠷⠇⠙⠑⠞⠡⠎⠱â â ›â ", "output": "küldetésszaga" }, { "input": "⠅⠷⠇⠟â â ‰â Žâ ¡â ›", "output": "különcség" }, { "input": "⠅⠷⠇⠟â â «â Œâ ‡â ª", "output": "különnyíló" }, { "input": "â ‡â â ƒâ Šâ —â Šâ â žâ ¥â Žâ ±â ‘â —â ¾", "output": "labirintusszerű" }, { "input": "â ‡â â …⠈⠎⠱⠑â â žâ ‘⠇⠻", "output": "lakásszentelÅ‘" }, { "input": "â ‡â â …⠈⠎⠱⠟⠧⠑⠞⠅⠑⠣⠑⠞", "output": "lakásszövetkezet" }, { "input": "â ‡â â …⠈⠎⠱⠑⠗⠣⠻⠅", "output": "lakásszerzÅ‘k" }, { "input": "â ‡â â …⠕⠎⠱⠈â ", "output": "lakosszám" }, { "input": "⠇⠈â â ‰â ©â Ÿâ —⠛⠡⠎ ", "output": "lánccsörgés " }, { "input": "⠇⠈â â ‰â ±â ‘â ", "output": "láncszem" }, { "input": "⠇⠈â â ›â ¹â ¬â šâ žâ •â ›â â žâ ª", "output": "lánggyújtogató" }, { "input": "â ‡â â â •⠎⠱⠈⠗⠬", "output": "laposszárú" }, { "input": "⠇⠈⠞⠈⠎⠱⠟⠛", "output": "látásszög" }, { "input": "⠇⠈⠞⠈⠎⠣â â §â â —", "output": "látászavar" }, { "input": "⠇⠈⠞⠕â â ˆâ Žâ ±â ‘â —â ¾", "output": "látomásszerű" }, { "input": "â ‡â â £â â ‰â ©â •â â žâ §â ˆâ £", "output": "lazaccsontváz" }, { "input": "⠇⠈⠣⠎⠑⠃⠑⠎⠎⠡⠛⠛⠑⠇", "output": "lázsebességgel" }, { "input": "⠇⠈⠣⠎⠪⠓â â šâ žâ ˆâ Ž", "output": "lázsóhajtás" }, { "input": "⠇⠑⠃⠑⠛⠡⠎⠱⠑⠗⠾", "output": "lebegésszerű" }, { "input": "⠇⠡⠛⠹⠟⠅", "output": "léggyök" }, { "input": "⠇⠡⠛⠹⠟⠅⠡⠗ ", "output": "léggyökér " }, { "input": "⠇⠑⠚⠞⠡⠎⠱⠟⠛", "output": "lejtésszög" }, { "input": "⠇⠑⠚⠞⠡⠎⠱⠟⠛⠑", "output": "lejtésszöge" }, { "input": "⠇⠑⠎⠱â â ƒâ ˆâ ¸", "output": "lesszabály" }, { "input": "⠇⠑â â ‘⠣⠎⠞⠬⠙⠊⠪", "output": "lemezstúdió" }, { "input": "⠇⠑â â ›â ¡â Žâ ±â â ƒâ ˆâ ¸", "output": "lengésszabály" }, { "input": "⠇⠑⠭⠊⠅⠕â â «â Š", "output": "lexikonnyi" }, { "input": "⠇⠡⠛⠣⠡⠎⠱⠈â ", "output": "légzésszám" }, { "input": "⠇⠡⠛⠣⠡⠎⠱⠑⠗⠾", "output": "légzésszerű" }, { "input": "⠇⠡⠛⠣⠡⠎⠣â â §â â —", "output": "légzészavar" }, { "input": "⠇⠡â â ©â »â Žâ ±â ˆâ —â «â ¬", "output": "lépcsÅ‘sszárnyú" }, { "input": "⠇⠡â â ¡â Žâ ±â ˆâ ", "output": "lépésszám" }, { "input": "⠇⠡â â ¡â Žâ £â â š ", "output": "lépészaj " }, { "input": "⠇⠡â â žâ ‘â â «â •â â •â ", "output": "léptennyomon" }, { "input": "⠇⠑⠧⠑⠎⠱â â ›", "output": "levesszag" }, { "input": "⠇⠑⠧⠑⠎⠱â â ›â •â ž", "output": "levesszagot" }, { "input": "⠇⠑⠧⠑⠎⠱⠑⠙⠻", "output": "levesszedÅ‘" }, { "input": "⠇⠊⠃⠑⠗⠞⠽", "output": "liberty" }, { "input": "⠇⠊⠉⠑â â ‰â ©â â ‡â ˆâ ™ ", "output": "licenccsalád " }, { "input": "⠇⠊⠉⠑â â ‰â Žâ ¡â —â žâ ¡â Ž", "output": "licencsértés" }, { "input": "⠇⠊⠱⠞⠑⠎⠣â â ©â …â ª", "output": "liszteszacskó" }, { "input": "⠇⠕⠛⠹⠾⠚⠞⠑â â ¡â «", "output": "loggyűjtemény" }, { "input": "⠇⠕⠧â â Žâ ±â ˆâ £â â ™", "output": "lovasszázad" }, { "input": "⠇⠕⠧â â Žâ ±â ‘â …â ‘â —â ‘â ž ", "output": "lovasszekeret " }, { "input": "⠇⠟⠅⠡⠎⠱⠈â ", "output": "lökésszám" }, { "input": "⠇⠟⠅⠡⠎⠱⠑⠗⠾ ", "output": "lökésszerű " }, { "input": "⠇⠻â â •⠗⠕⠎⠱⠑⠅⠡⠗", "output": "lÅ‘porosszekér" }, { "input": "⠇⠻â â •⠗⠕⠎⠱⠑⠅⠑⠗⠑⠅", "output": "lÅ‘porosszekerek" }, { "input": "⠇⠻⠗⠡⠎⠱⠑⠗⠾", "output": "lÅ‘résszerű" }, { "input": "⠇⠥⠛â â Žâ ±â ‘â —â ¾", "output": "lugasszerű" }, { "input": "⠇⠥⠭⠥⠎⠱⠈⠇⠇⠕⠙â ", "output": "luxusszálloda" }, { "input": "â â â ©â …â â …â â â â —⠈⠎⠱⠑⠗⠾ ", "output": "macskakaparásszerű " }, { "input": "â â â ›â ˆâ â «â ‘⠇⠧â â ‘â Žâ žâ ‘â —â ‘â …", "output": "magánnyelvmesterek" }, { "input": "â â â ›â ˆâ â «â â —â â ‡â ªâ …", "output": "magánnyaralók" }, { "input": "â â â ›â ˆâ â «â ¥â ›â ™â Œâ šâ â ¡â â £â žâ ˆâ —", "output": "magánnyugdíjpénztár" }, { "input": "â â â ›â â Žâ ±â ˆâ —â ¬", "output": "magasszárú" }, { "input": "â â â ›â ¹â ¾â šâ žâ ‘â â ¡â «â —⠻⠇", "output": "maggyűjteményrÅ‘l" }, { "input": "â â ˆâ ›â â ˆâ Žâ ±â ˆâ â ƒâ ", "output": "mágnásszámba" }, { "input": "â â ˆâ ›â â ‘â Žâ ±â â ‡â â ›", "output": "mágnesszalag" }, { "input": "â â ˆâ ›â â ‘⠎⠱⠑⠗⠾", "output": "mágnesszerű" }, { "input": "â â ˆâ ›â â ‘⠎⠣⠈⠗", "output": "mágneszár" }, { "input": "â â â ‡â â ‰â Žâ ˆâ ›", "output": "malacság" }, { "input": "â â â ‡â â ‰â Žâ ·â ‡â ž ", "output": "malacsült " }, { "input": "â â ˆâ ‡â “⠈⠎⠱⠑⠅⠡⠗", "output": "málhásszekér" }, { "input": "â â ˆâ ‡â “⠈⠎⠱⠑⠅⠑⠗⠑⠊⠅⠑⠞ ", "output": "málhásszekereiket " }, { "input": "â â â â ™â â —â Šâ â «â ‘⠇⠧", "output": "mandarinnyelv" }, { "input": "â ¨â â â —⠕⠎⠱⠡⠅", "output": "Marosszék" }, { "input": "â ¨â â â —⠕⠎⠱⠑â â žâ ¹â Ÿâ —â ¹ ", "output": "Marosszentgyörgy " }, { "input": "â ¨â â â —⠕⠎⠣⠥⠛", "output": "Maroszug" }, { "input": "â ¨â â â —â žâ —â â §â ‘⠗⠱⠱â â ‡", "output": "Martraversszal" }, { "input": "â â â žâ —â â ‰â Žâ •â —", "output": "matracsor" }, { "input": "â â ˆâ Žâ ±â Œâ â ¾", "output": "másszínű" }, { "input": "â â ˆâ Žâ ±â •â —", "output": "másszor" }, { "input": "â â ˆâ Žâ ±â ªâ §â â ‡", "output": "másszóval" }, { "input": "â â ˆâ Žâ ±â »â —⠾⠑⠅", "output": "másszÅ‘rűek" }, { "input": "â â ¡â ©â ‘⠎⠱⠑â ", "output": "mécsesszem" }, { "input": "â â ‘⠙⠗⠑⠎⠱⠡⠅", "output": "medresszék" }, { "input": "â â ‘⠛⠋⠈⠣⠈⠎⠱⠑⠗⠾", "output": "megfázásszerű" }, { "input": "â â ‘⠹⠹⠃⠑⠋⠻⠞⠞", "output": "meggybefÅ‘tt" }, { "input": "â â ‘⠹⠹⠑⠇", "output": "meggyel" }, { "input": "â â ‘⠹⠹⠑â ", "output": "meggyen" }, { "input": "â â ‘⠹⠹⠑⠎", "output": "meggyes" }, { "input": "â ¨â â ‘⠹⠹⠑⠎⠊", "output": "Meggyesi" }, { "input": "â â ‘⠹⠹⠑⠞", "output": "meggyet" }, { "input": "â â ‘⠹⠹⠋â ", "output": "meggyfa" }, { "input": "â â ‘⠹⠹⠓⠑⠣", "output": "meggyhez" }, { "input": "â â ‘⠹⠹⠌⠣⠾", "output": "meggyízű" }, { "input": "â â ‘⠹⠹⠅⠡â â ž", "output": "meggyként" }, { "input": "â â ‘⠹⠹⠇⠑⠅⠧⠈⠗", "output": "meggylekvár" }, { "input": "â â ‘⠹⠹â â â ›", "output": "meggymag" }, { "input": "â â ‘⠹⠹â â ‘â …", "output": "meggynek" }, { "input": "â â ‘⠹⠹â â Šâ —â •â Ž", "output": "meggypiros" }, { "input": "â â ‘⠹⠹⠎⠟⠗", "output": "meggysör" }, { "input": "â â ‘⠹⠹⠱⠌â ", "output": "meggyszín" }, { "input": "â â ‘⠹⠹⠞⠻⠇", "output": "meggytÅ‘l" }, { "input": "â â ‘⠹⠹⠞⠻⠇", "output": "meggytÅ‘l" }, { "input": "â â ‘⠹⠹⠧⠟⠗⠟⠎", "output": "meggyvörös" }, { "input": "â â ‘⠹⠹⠣⠻", "output": "meggyzÅ‘" }, { "input": "â â ‘⠛⠇⠑â â ‘⠞⠡⠎⠱⠕⠋⠞⠧⠑⠗", "output": "meglepetésszoftver" }, { "input": "â â ¡â “⠑⠎⠱⠌â ", "output": "méhesszín" }, { "input": "â â ¡â “⠑⠎⠱⠌â â ƒâ ‘â  ", "output": "méhesszínben " }, { "input": "â â ¡â â ‘⠎⠱⠈⠗⠫⠡⠅⠕⠅", "output": "ménesszárnyékok" }, { "input": "â â ¡â —⠑⠛⠹⠟⠅⠑⠗⠑⠞", "output": "méreggyökeret" }, { "input": "â â ¡â —⠑⠛⠹⠟⠅⠡⠗⠗⠡", "output": "méreggyökérré" }, { "input": "â â ¡â —⠑⠛⠹⠷â â Ÿâ ‡â ©â ©â ¡ ", "output": "méreggyümölccsé " }, { "input": "â â ¡â —⠅⠻⠣⠡⠎⠱⠑⠗⠧⠑⠣⠻", "output": "mérkÅ‘zésszervezÅ‘" }, { "input": "â â ¡â —⠇⠑⠛⠹⠈⠗", "output": "mérleggyár" }, { "input": "â â ‘⠱⠑⠎⠱⠷⠗⠅⠑", "output": "meszesszürke" }, { "input": "â â ¡â £â Žâ ˆâ —â ›â ", "output": "mézsárga" }, { "input": "â â ¡â £â Žâ ‘â —", "output": "mézser" }, { "input": "â â ¡â £â Žâ Ÿâ —", "output": "mézsör" }, { "input": "â ¨â â Šâ …⠕⠎⠱⠡â â ‡â â …", "output": "Mikosszéplak" }, { "input": "â â Šâ …⠥⠇⠈⠎⠱⠑⠗⠅⠪", "output": "mikulásszerkó" }, { "input": "â â Šâ …â —â •â ‹â •â â «â Œâ ‡â ˆâ Ž", "output": "mikrofonnyílás" }, { "input": "â â Šâ …â —â •â â «â Š", "output": "mikronnyi" }, { "input": "â â Šâ žâ ‘⠱⠱⠑⠗", "output": "mitesszer" }, { "input": "â â Šâ žâ ¥â ›â —⠈⠱⠱â â ‡", "output": "mitugrásszal" }, { "input": "â â •â “â â Žâ £â Ÿâ ‡â ™", "output": "mohaszöld" }, { "input": "â â •⠇⠕⠱⠱⠑⠗", "output": "molosszer" }, { "input": "â â ªâ …⠥⠎⠱⠑⠗⠾ ", "output": "mókusszerű " }, { "input": "â â ªâ …⠥⠎⠱⠻⠗", "output": "mókusszÅ‘r" }, { "input": "â â •⠞⠕⠗⠕⠎⠱⠈â ", "output": "motorosszán" }, { "input": "â â •⠣⠛⠈⠎⠱⠑⠗⠾", "output": "mozgásszerű" }, { "input": "â â •⠣⠛⠈⠎⠣â â §â â —", "output": "mozgászavar" }, { "input": "â â ¥â â …⠈⠎⠱⠈⠇⠇⠪", "output": "munkásszálló" }, { "input": "â â ¥â œâ Šâ …⠥⠎⠱⠑â ", "output": "muzsikusszem" }, { "input": "â â ¾â šâ ¡â ›â ¹â ˆâ —", "output": "műjéggyár" }, { "input": "â â ¾â …⠟⠙⠡⠎⠣â â §â â — ", "output": "működészavar " }, { "input": "â â ¾â §â ‘⠇⠻⠙⠡⠎⠱⠑⠗⠧⠑⠣⠻", "output": "művelÅ‘désszervezÅ‘" }, { "input": "⠫⠈⠇â â Žâ ±â ˆâ šâ ¬", "output": "nyálasszájú" }, { "input": "â â ˆâ ±â ¥â žâ â £â ˆâ Žâ ±â ‘â —â ¾ ", "output": "nászutazásszerű " }, { "input": "â â ‘⠙⠧⠑⠎⠱⠷⠗⠅⠑", "output": "nedvesszürke" }, { "input": "â â ¡â ¹â £â ‘â žâ ½â â —â ™", "output": "négyzetyard" }, { "input": "â â ‘⠓⠡⠣⠎⠡⠛", "output": "nehézség" }, { "input": "â â ‘⠓⠡⠣⠎⠬⠸⠬", "output": "nehézsúlyú" }, { "input": "â ¨â â ‘â â ‘â Žâ ±â â ‡â ªâ …", "output": "Nemesszalók" }, { "input": "â ¨â â ‘â â ‘⠎⠱⠑â â žâ â â ™â —⠈⠎", "output": "Nemesszentandrás" }, { "input": "â â ‘â â ‘⠎⠱⠻⠗â â ‘", "output": "nemesszÅ‘rme" }, { "input": "â â ‘â â ‘⠣⠎â â â …â ", "output": "nemezsapka" }, { "input": "â â ‘â â ‘⠣⠎â â â …⠈⠞", "output": "nemezsapkát" }, { "input": "â â ‘â â ‘⠣⠎⠈⠞⠕⠗ ", "output": "nemezsátor " }, { "input": "â â ‘⠗⠉⠎⠞⠪⠇â ", "output": "nercstóla" }, { "input": "â â ¡â â ‘⠎⠎⠡⠛⠹â â —â â â •⠙⠈⠎", "output": "népességgyarapodás" }, { "input": "â â ‘⠥⠞⠗⠕â â «â â ‡â ˆâ ƒâ •â …â â ž", "output": "neutronnyalábokat" }, { "input": "â «â â —⠛⠕â â ‰â ©â Šâ £â â ", "output": "nyargonccsizma" }, { "input": "⠫⠑⠗⠑⠛⠹⠈⠗⠞⠪⠅", "output": "nyereggyártók" }, { "input": "â «â Šâ …â …â â â ˆâ Žâ ±â ‘â —â ¾", "output": "nyikkanásszerű" }, { "input": "â «â Šâ ‡â â Žâ ±â ‘⠗⠧⠑⠣⠑⠞", "output": "nyilasszervezet" }, { "input": "⠫⠌⠇⠈⠎⠣⠈⠗⠪", "output": "nyílászáró" }, { "input": "⠫⠕⠇⠉⠧â â â «â •⠇⠉", "output": "nyolcvannyolc" }, { "input": "⠫⠕⠇⠉⠩â â žâ •â —â â ˆâ Ž ", "output": "nyolccsatornás " }, { "input": "⠫⠕⠇⠉⠎⠑⠃⠑⠎⠎⠡⠛⠑⠎", "output": "nyolcsebességes" }, { "input": "â «â •â â ˆâ Žâ ±â â ƒâ ˆâ ¸â £â ª", "output": "nyomásszabályzó" }, { "input": "â «â •â â ˆâ Žâ ±â ‘â —â ¾", "output": "nyomásszerű" }, { "input": "â «â •â â ˆâ Žâ ±â Šâ â žâ ‘â ", "output": "nyomásszinten" }, { "input": "â •â …â žâ â žâ ˆâ Žâ ±â •⠉⠊⠕⠇⠪⠛⠊â â Š", "output": "oktatásszociológiai" }, { "input": "â •â —â ™â â Žâ ±â »â —â ¾", "output": "ordasszÅ‘rű" }, { "input": "â •â —â ›â â £â â ¥â Žâ ±â ‘â —â ¾", "output": "orgazmusszerű" }, { "input": "⠪⠗⠊⠈⠎⠱â â ‡â â â â â ™â —â ", "output": "óriásszalamandra" }, { "input": "⠕⠗⠕⠱⠇⠈â â «â •â ", "output": "oroszlánnyom" }, { "input": "â •â —â §â •â Žâ ±â â …â ¡â —â žâ »", "output": "orvosszakértÅ‘" }, { "input": "⠕⠗⠧⠕⠎⠱⠈⠣â â ™â •â Ž", "output": "orvosszázados" }, { "input": "⠕⠗⠧⠕⠎⠱⠑â â ¡â ¸", "output": "orvosszemély" }, { "input": "⠕⠗⠧⠕⠎⠱⠑⠗⠑⠊⠅⠅⠑⠇", "output": "orvosszereikkel" }, { "input": "⠕⠗⠧⠕⠎⠱⠑⠗⠾", "output": "orvosszerű" }, { "input": "⠕⠗⠧⠕⠎⠱⠟⠧⠑⠞⠎⠡⠛", "output": "orvosszövetség" }, { "input": "⠪⠉⠑⠈â â «â Š", "output": "óceánnyi" }, { "input": "⠪⠧⠕⠙⠈⠎⠱⠊â â žâ ¾", "output": "óvodásszintű" }, { "input": "⠟⠅⠗⠟⠎⠱⠑⠅⠡⠗", "output": "ökrösszekér" }, { "input": "â Ÿâ â ˆâ ‡â ‡â ˆâ Žâ ±â ‘â —â ¾", "output": "önállásszerű" }, { "input": "â Ÿâ â «â •â â ˆâ Žâ ", "output": "önnyomása" }, { "input": "â Ÿâ â «â •â â â žâ ¬ ", "output": "önnyomatú " }, { "input": "â Ÿâ â «â ¥â ›â ™â Œâ šâ â £â ˆâ Žâ ˆâ ž", "output": "önnyugdíjazását" }, { "input": "⠟⠗⠟⠅⠎⠡⠛⠹⠾⠚⠞⠑â â ¡â «â ƒâ ‘â ", "output": "örökséggyűjteményben" }, { "input": "⠟⠗⠧⠡⠫⠇⠡⠎⠱⠑⠗⠾", "output": "örvénylésszerű" }, { "input": "⠻⠎⠱⠈⠗â â â £â ˆâ Žâ ¬ ", "output": "Å‘sszármazású " }, { "input": "⠻⠎⠱⠡⠅⠑⠸⠑⠅", "output": "Å‘sszékelyek" }, { "input": "⠟⠱⠱⠑⠅⠡⠗⠑⠛⠑⠞⠑⠞⠞", "output": "összekéregetett" }, { "input": "⠟⠱⠱⠑⠅⠡⠗⠑⠛⠑⠞⠞⠑⠅", "output": "összekéregettek" }, { "input": "⠟⠱⠱⠑⠅⠑⠗⠑⠎⠛⠡⠇⠞", "output": "összekeresgélt" }, { "input": "⠻⠱⠱⠑⠇", "output": "Å‘sszel" }, { "input": "⠻⠎⠱⠑⠇⠇⠑â ", "output": "Å‘sszellem" }, { "input": "â Ÿâ žâ §â Ÿâ Žâ ±â â …â â â Š", "output": "ötvösszakmai" }, { "input": "⠻⠣⠎⠑⠃⠑⠎⠑â ", "output": "Å‘zsebesen" }, { "input": "⠻⠣⠎⠟⠗⠡⠞", "output": "Å‘zsörét" }, { "input": "⠻⠣⠎⠥⠞â ", "output": "Å‘zsuta" }, { "input": "â â â ™â ‡â ˆâ Žâ ±â •â ƒâ ", "output": "padlásszoba" }, { "input": "â â â ™â ‡â ˆâ Žâ £â ¥â ›â •â ¸", "output": "padlászugoly" }, { "input": "â â â ‡â ªâ ‰â Žâ ˆâ ›", "output": "palócság" }, { "input": "â â â â Šâ —⠕⠎⠱⠑⠇⠑⠞⠗⠑", "output": "papirosszeletre" }, { "input": "â â â â —⠊⠅⠈⠎⠱â â ‡â •â â â â ¤â ƒâ â £â ˆâ —", "output": "paprikásszalonna-bazár" }, { "input": "â â â â ¥â ©â £â ˆâ â •â —", "output": "papucszápor" }, { "input": "â â ˆâ —â â ˆâ Žâ ±â ¡â …", "output": "párnásszék" }, { "input": "â â ˆâ žâ •⠱⠱â â ‡", "output": "pátosszal" }, { "input": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â ‘⠗⠧⠑⠣⠑⠞", "output": "pedagógusszervezet" }, { "input": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â •⠃⠈⠃â ", "output": "pedagógusszobába" }, { "input": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â Ÿâ §â ‘â žâ Žâ ¡â ›", "output": "pedagógusszövetség" }, { "input": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â žâ —⠈⠚⠅", "output": "pedagógussztrájk" }, { "input": "â â ¡â â £â ‘â Žâ £â â ©â …â ª", "output": "pénzeszacskó" }, { "input": "â â ¡â â £â ‘⠱⠅⠟⠣⠟⠅", "output": "pénzeszközök" }, { "input": "â â ¡â â £â ‘⠎⠜⠈⠅", "output": "pénzeszsák" }, { "input": "â â ¡â â £â œâ Šâ ™â ªâ Žâ ˆâ ›â ƒâ â  ", "output": "pénzzsidóságban " }, { "input": "â â ¡â â £â Žâ ‘⠛⠡⠸", "output": "pénzsegély" }, { "input": "â â ¡â â £â Žâ •â —â •â £â â ž", "output": "pénzsorozat" }, { "input": "â â ¡â â £â Žâ ªâ §â ˆâ —", "output": "pénzsóvár" }, { "input": "â â ¡â â £â ±â ¾â …â ‘", "output": "pénzszűke" }, { "input": "â â ‘⠗⠑⠉⠎⠷⠞⠻â â »", "output": "perecsütÅ‘nÅ‘" }, { "input": "â â ‘â —â ›â â â ‘â â «â â ‡â ˆâ ƒ", "output": "pergamennyaláb" }, { "input": "â â ‘⠗⠊⠪⠙⠥⠎⠱⠈â â ˆâ â â …", "output": "periódusszámának" }, { "input": "â â Šâ â ‰â ©â â —â â •â …", "output": "piaccsarnok" }, { "input": "â ¨â â Šâ ‡â Šâ Žâ ±â ˆâ â žâ ªâ ‚", "output": "Pilisszántó," }, { "input": "â ¨â â Šâ ‡â Šâ Žâ ±â ‘â â žâ …⠑⠗⠑⠱⠞", "output": "Pilisszentkereszt" }, { "input": "â â Šâ —⠌⠞⠪⠎⠱⠑⠇⠑⠞⠑⠅⠑â ", "output": "pirítósszeleteken" }, { "input": "â â Šâ —⠕⠎⠱⠑â ", "output": "pirosszem" }, { "input": "â â Šâ —⠕⠎⠣⠈⠱⠇⠪⠎", "output": "piroszászlós" }, { "input": "â â Šâ ±â …⠕⠎⠱⠻⠅⠑", "output": "piszkosszÅ‘ke" }, { "input": "â â Šâ ±â …⠕⠎⠱⠷⠗⠅⠑ ", "output": "piszkosszürke " }, { "input": "â â Šâ ±â …⠕⠎⠣⠟⠇⠙", "output": "piszkoszöld" }, { "input": "â â Šâ ±â žâ •⠸⠇⠟⠧⠡⠎⠱⠑⠗⠾⠑â ", "output": "pisztolylövésszerűen" }, { "input": "â â ‡â â ½â Žâ žâ â žâ Šâ •â â «â Š", "output": "playstationnyi" }, { "input": "â â ‡â ·â Žâ ±â ‘â —â ¾", "output": "plüsszerű" }, { "input": "â â ‡â ·â Žâ Žâ œâ ˆâ …", "output": "plüsszsák" }, { "input": "â â ‡â ·â Žâ Žâ œâ Šâ —⠈⠋ ", "output": "plüsszsiráf " }, { "input": "â â ‡â ·â Žâ Žâ œâ Ÿâ ¸â ¡â ž", "output": "plüsszsölyét" }, { "input": "â â •⠅⠗⠪⠉⠩⠌⠅", "output": "pokróccsík" }, { "input": "â â •⠇⠉⠎⠕⠗", "output": "polcsor" }, { "input": "â â •⠇⠊⠉⠈⠚⠅⠕â â Šâ ±â ±â ¡â —", "output": "policájkomisszér" }, { "input": "â â •⠗⠉⠎⠡⠗⠷⠇⠡⠎", "output": "porcsérülés" }, { "input": "â â •⠗⠉⠑⠇⠈â â «â ¬â ‡", "output": "porcelánnyúl" }, { "input": "â â •⠗⠞⠈⠎⠱⠕⠃â ", "output": "portásszoba" }, { "input": "â â •⠎⠞⠈⠎⠱â â …⠱⠑⠗⠧⠑⠣⠑⠞", "output": "postásszakszervezet" }, { "input": "â â •⠎⠞⠈⠎⠱⠞⠗⠈⠚⠅", "output": "postássztrájk" }, { "input": "â â ªâ ‡â ¥â Žâ ±â ˆâ â “â •â £", "output": "pólusszámhoz" }, { "input": "â â —⠑⠉⠌⠣⠎⠡⠛", "output": "precízség" }, { "input": "â â —⠡⠎⠱⠑⠗⠾", "output": "présszerű" }, { "input": "â â —â Šâ â â •⠱⠱â ", "output": "priamossza" }, { "input": "â â —â Šâ â ‰â Žâ ¡â ›â ‘â ™", "output": "princséged" }, { "input": "â â —⠕⠛⠹â â …", "output": "proggyak" }, { "input": "â â —â •â žâ •â â «â â ‡â ˆâ ƒâ •â …", "output": "protonnyalábok" }, { "comment": [ "this testcase testing begcaps opcode backtranslation if a word containing both lowercase and uppercase letters" ], "input": "⠨⠨â â ±â ˆâ ‹â ¤â Ÿâ ±â ±â ‘â §â •â â ˆâ Žâ ž", "output": "PSZÃF-összevonást" }, { "input": "â â ±â Šâ ‰â “⠕⠇⠪⠛⠥⠎⠱⠟⠧⠑⠞⠎⠡⠛", "output": "pszichológusszövetség" }, { "input": "â â ¥â ‡â £â ¥â Žâ ±â ˆâ ", "output": "pulzusszám" }, { "input": "â â ¥â Žâ …⠈⠎⠱â â …â â ±", "output": "puskásszakasz" }, { "input": "â â ¥â Žâ …⠈⠎⠱⠈⠣â â ™", "output": "puskásszázad" }, { "input": "â â ¥â Žâ …⠈⠎⠣⠈⠱⠇⠪â â ‡â š ", "output": "puskászászlóalj " }, { "input": "â —â â šâ £â Žâ â ƒâ ‡â •â ", "output": "rajzsablon" }, { "input": "â —â â šâ £â Žâ â —â •â …", "output": "rajzsarok" }, { "input": "â —â â šâ £â Žâ â —â …â •â ž", "output": "rajzsarkot" }, { "input": "â —â â šâ £â Žâ •â —â •â £â â žâ ƒâ â ", "output": "rajzsorozatban" }, { "input": "⠗⠈⠉⠎⠈⠛", "output": "rácság" }, { "input": "⠗⠈⠙⠊⠪⠎⠱⠕⠃â ", "output": "rádiósszoba" }, { "input": "â —â â …⠈⠎⠱⠈â â —â ", "output": "rakásszámra" }, { "input": "⠨⠗⠈⠅⠕⠎⠱⠑â â žâ â Šâ “⠈⠸", "output": "Rákosszentmihály" }, { "input": "â —â ˆâ â ™â ¥â ‡â ˆâ Žâ ±â ‘⠗⠾⠑â ", "output": "rándulásszerűen" }, { "input": "â —â ˆâ â žâ ˆâ Žâ ±â â ›", "output": "rántásszag" }, { "input": "â —â ˆâ â žâ ˆâ Žâ ±â ‘â —â ¾ ", "output": "rántásszerű " }, { "input": "â —â ‘â â ‡â Šâ žâ ˆâ Žâ ±â â ›â ¬", "output": "realitásszagú" }, { "input": "â —â ‘â â ‡â Šâ žâ ½â â ¾â Žâ •â —â ", "output": "realityműsora" }, { "input": "⠗⠑⠉⠡⠎⠱⠈⠗⠬", "output": "recésszárú" }, { "input": "⠗⠡⠛⠊⠎⠡⠛⠹⠾⠚⠞⠻", "output": "régiséggyűjtÅ‘" }, { "input": "â —â ¡â â Šâ ±â ±â ¡â žâ ‘â …", "output": "rémisszétek" }, { "input": "⠗⠡⠎⠣⠈⠗⠈⠎", "output": "részárás" }, { "input": "â —â ‘â â ™â ‘⠇⠅⠑⠣⠡⠎⠱⠑⠗⠾", "output": "rendelkezésszerű" }, { "input": "â —â ‘â â ·â ‡â ¡â Žâ ±â ‘â —â ¾", "output": "repülésszerű" }, { "input": "â —â ‘â â ·â ‡â »â Žâ ±â ˆâ —â «", "output": "repülÅ‘sszárny" }, { "input": "⠗⠡⠜⠥⠞", "output": "rézsut" }, { "input": "⠗⠊⠉⠊â â ¥â Žâ ±â ‘â —â ¾", "output": "ricinusszerű" }, { "input": "â —â Šâ žâ …â â Žâ ˆâ ›â ¹â ¾â šâ žâ »", "output": "ritkasággyűjtÅ‘" }, { "input": "â —â Šâ žâ â ¥â Žâ ±â â ƒâ ˆâ ¸â •⠣⠪", "output": "ritmusszabályozó" }, { "input": "â —â Šâ žâ â ¥â Žâ £â â §â â —", "output": "ritmuszavar" }, { "input": "⠗⠊⠜⠣â â ƒâ ˆâ ‡â ªâ …â â ž", "output": "rizszabálókat" }, { "input": "⠗⠕⠃⠃â â â ˆâ Žâ ±â ‘â —â ¾", "output": "robbanásszerű" }, { "input": "⠗⠕⠃⠃â â â ˆâ Žâ £â â šâ ž", "output": "robbanászajt" }, { "input": "â —â •â â ¹â •⠎⠱⠡⠇⠾", "output": "rongyosszélű" }, { "input": "⠗⠕⠱⠱⠑â â ‡â ¡â …â ¾", "output": "rosszemlékű" }, { "input": "â —â •â žâ “â â ™â ˆâ Žâ ±â â ›", "output": "rothadásszag" }, { "input": "⠗⠕⠧⠈⠎⠱⠑⠗⠾⠑â ", "output": "rovásszerűen" }, { "input": "⠗⠪⠜⠈⠎⠱⠻⠅⠡⠎", "output": "rózsásszÅ‘kés" }, { "input": "⠗⠕⠜⠣â â ƒâ ˆâ ‡â ˆâ Ž", "output": "rozszabálás" }, { "input": "⠗⠥⠃⠊â â «â â …⠇⠈â â ‰", "output": "rubinnyaklánc" }, { "input": "⠗⠥⠓⠈⠎⠱⠑⠅⠗⠡⠫", "output": "ruhásszekrény" }, { "input": "⠗⠥⠓⠈⠎⠱⠕⠃⠈â â ¡", "output": "ruhásszobámé" }, { "input": "⠗⠬⠜⠕⠎⠱⠈⠚⠬", "output": "rúzsosszájú" }, { "input": "⠎⠈⠗⠛⠈⠎⠱⠌â â ¾", "output": "sárgásszínű" }, { "input": "â Žâ â Žâ ±â ˆâ —â «â ¬", "output": "sasszárnyú" }, { "input": "â Žâ â Žâ ±â ‘â ›", "output": "sasszeg" }, { "input": "⠎⠈⠎⠱⠡â â ", "output": "sásszéna" }, { "input": "⠎⠈⠎⠱⠑⠗⠾ ", "output": "sásszerű " }, { "input": "â Žâ â Žâ ±â Ÿâ â Ÿâ ™", "output": "sasszömöd" }, { "input": "⠎⠈⠞⠈â â ©â â â â ž", "output": "sátáncsapat" }, { "input": "â ±â â ‡â â ›â ¹â â …â •â —â ‡â â žâ ˆâ ž", "output": "szalaggyakorlatát" }, { "input": "â ±â â ‡â â ›â ¹â ¾â šâ žâ ‘â â ¡â «", "output": "szalaggyűjtemény" }, { "input": "⠱⠑⠛⠹⠈⠗", "output": "szeggyár" }, { "input": "â Žâ ‘â ¸â â ‘⠎⠱⠻⠅⠑", "output": "selymesszÅ‘ke" }, { "input": "⠎⠑⠗⠑⠛⠹⠾⠚⠞⠡⠎", "output": "sereggyűjtés" }, { "input": "⠎⠑⠗⠞⠡⠎⠱⠑⠇⠑⠞", "output": "sertésszelet" }, { "input": "⠎⠑⠗⠞⠡⠎⠱⠾⠣â â ‘â ©â ‘â «â ¡â —â ‘", "output": "sertésszűzpecsenyére" }, { "input": "⠎⠑⠗⠞⠡⠎⠜⠌⠗", "output": "sertészsír" }, { "input": "⠱⠡â â «â •â â •â …â â ž", "output": "szénnyomokat" }, { "input": "⠱⠕⠉⠊⠈⠇⠊⠎⠱⠈⠇⠇⠈⠎⠓⠑⠸⠤â â —⠕⠛⠗â â ", "output": "szociálisszálláshely-program" }, { "input": "â Žâ •â â …⠈⠎⠱⠑⠇⠑⠞", "output": "sonkásszelet" }, { "input": "â Žâ •â â …⠈⠎⠱⠑⠗⠾ ", "output": "sonkásszerű " }, { "input": "â Žâ •â â …⠈⠎⠜⠑â â ‡â ‘", "output": "sonkászsemle" }, { "input": "â Žâ •â —â Žâ ©â â â ˆâ Žâ ±â ‘⠗⠾⠂", "output": "sorscsapásszerű," }, { "input": "â Žâ â â «â •â ‡â â ‘⠹⠹⠑â ", "output": "spanyolmeggyen" }, { "input": "â Žâ â Šâ ‰â ‰â ±â ¾â —⠻⠃⠑", "output": "spiccszűrÅ‘be" }, { "input": "â Žâ žâ â ™â Šâ •â â «â Š", "output": "stadionnyi" }, { "input": "⠎⠞⠌⠇⠥⠎⠱⠑⠗⠾⠂ ⠎⠞⠌⠇⠥⠎⠱⠑⠗⠅⠑⠱⠞⠻", "output": "stílusszerű, stílusszerkesztÅ‘" }, { "input": "⠎⠥⠛⠈⠗⠣⠈⠎⠱⠑⠗⠾ ", "output": "sugárzásszerű " }, { "input": "⠎⠥⠛⠈⠗⠣⠈⠎⠱⠊â â žâ ‘â …", "output": "sugárzásszintek" }, { "input": "⠎⠥⠓â â â ‰â ©â ·â —â “â ‘", "output": "suhanccsürhe" }, { "input": "⠎⠥⠓â â â ‰â Žâ ‘â —â ‘â ›", "output": "suhancsereg" }, { "input": "â ±â â ›â ‡â ˆâ ±â ±â ¡â …", "output": "szaglásszék" }, { "input": "â ±â â ‡â •â â «â ‘⠇⠧⠂ â ±â â ‡â •â â «â ‘â ‡â §â ‘â  ", "output": "szalonnyelv, szalonnyelven " }, { "input": "⠱⠈⠇⠇⠕⠙⠈⠎⠱⠟⠧⠑⠞⠎⠡⠛", "output": "szállodásszövetség" }, { "input": "⠨⠱â â â •⠎⠱⠑⠛", "output": "Szamosszeg" }, { "input": "â ±â â â Šâ žâ ¡â ‰â ©â •â â •â —â ž", "output": "szanitéccsoport" }, { "input": "⠱⠈⠗â â £â Žâ ˆâ ›", "output": "szárazság" }, { "input": "⠱⠈⠗â â £â Žâ ·â ‡â ž", "output": "szárazsült" }, { "input": "â ±â â —â §â â Žâ ±â Œâ §", "output": "szarvasszív" }, { "input": "â ±â â —â §â â Žâ œâ Œâ —", "output": "szarvaszsír" }, { "input": "⠱⠑⠣⠕â â «â Šâ žâ ª", "output": "szezonnyitó" }, { "input": "⠱⠡â â ˆâ Žâ ±â ‘â …â ¡â —", "output": "szénásszekér" }, { "input": "⠱⠑â â žâ Žâ ¡â ›â ‘⠎⠱⠾⠣â â ˆâ —â Šâ ˆâ ", "output": "szentségesszűzmáriám" }, { "input": "⠱⠑â â žâ Žâ ¡â ›â ¹â â ‡â ˆâ £â ˆâ Ž", "output": "szentséggyalázás" }, { "input": "⠨⠱⠑â â ‘⠎⠱⠕â â ƒâ â ž", "output": "Szepesszombat" }, { "input": "⠱⠑⠗⠣⠻⠙⠡⠎⠱⠈â ", "output": "szerzÅ‘désszám" }, { "input": "⠱⠑⠗⠣⠻⠙⠡⠎⠱⠑⠛⠡⠎", "output": "szerzÅ‘désszegés" }, { "input": "⠱⠑⠗⠣⠻⠙⠡⠎⠱⠑⠛⠻", "output": "szerzÅ‘désszegÅ‘" }, { "input": "⠱⠑⠗⠧⠊⠣⠎â â —â •â …", "output": "szervizsarok" }, { "input": "⠱⠡⠞⠕⠱⠱â ", "output": "szétossza" }, { "input": "⠱⠡⠞⠕⠱⠱⠈⠅ ", "output": "szétosszák " }, { "input": "⠨⠱⠊⠇⠧⠈⠎⠱⠑â â žâ â ˆâ —â žâ •â ", "output": "Szilvásszentmárton" }, { "input": "⠱⠊â â ™â Šâ …⠈⠞⠥⠎⠱⠑⠗⠾ ", "output": "szindikátusszerű " }, { "input": "⠱⠊â â ™â Šâ …⠈⠞⠥⠎⠱⠑⠗⠧⠑⠣⠻", "output": "szindikátusszervezÅ‘" }, { "input": "⠱⠌â â «â •â â ˆâ Ž", "output": "színnyomás" }, { "input": "⠱⠕⠉⠎⠑⠛⠡⠸", "output": "szocsegély" }, { "input": "⠱⠪⠙⠈⠎⠱⠊⠋⠕â ", "output": "szódásszifon" }, { "input": "⠱⠕⠅⠈⠎⠱⠑⠗⠾", "output": "szokásszerű" }, { "input": "⠱⠪⠇⠈⠎⠱â â ƒâ â ™â Žâ ˆâ ›", "output": "szólásszabadság" }, { "input": "⠱⠪⠇⠈⠎⠱â â â ¥â ‡â ˆâ Ž", "output": "szólásszapulás" }, { "input": "⠱⠪⠗â â …⠕⠣⠈⠎⠱⠈â â ƒâ ", "output": "szórakozásszámba" }, { "input": "⠱⠕⠗⠕â â ›â ˆâ Žâ ±â ‘â —â ¾", "output": "szorongásszerű" }, { "input": "⠱⠕⠗⠕â â ›â ˆâ Žâ ±â Šâ â ž", "output": "szorongásszint" }, { "input": "⠱⠟⠛⠹⠈⠗", "output": "szöggyár" }, { "input": "⠱⠟⠧⠑⠛⠹⠾⠚⠞⠑â â ¡â «", "output": "szöveggyűjtemény" }, { "input": "⠱⠻⠫⠑⠛⠹⠈⠗", "output": "szÅ‘nyeggyár" }, { "input": "⠱⠬⠫⠕⠛⠹⠡⠗⠌⠞⠡⠎", "output": "szúnyoggyérítés" }, { "input": "⠱⠬⠗⠈⠎⠱⠑⠗⠾", "output": "szúrásszerű" }, { "input": "⠱⠬⠗⠪⠎⠱⠑â â ¾", "output": "szúrósszemű" }, { "input": "⠱⠷⠇⠑⠞⠡⠎⠱â â ƒâ ˆâ ¸â •⠣⠈⠎", "output": "születésszabályozás" }, { "input": "⠱⠾⠣⠎⠷⠇⠞", "output": "szűzsült" }, { "input": "â žâ â ­â Šâ Žâ ±â ¥â —⠅⠈⠇⠈⠎", "output": "taxisszurkálás" }, { "input": "⠞⠈⠛⠥⠇⠈⠎⠱â â ƒâ ˆâ ¸", "output": "tágulásszabály" }, { "input": "â žâ â ›â ¹â ¾â ‡â ¡â Ž", "output": "taggyűlés" }, { "input": "â žâ ˆâ â ‰â ©â •â â •â —â ž", "output": "tánccsoport" }, { "input": "⠞⠈⠗⠎â â ‡â ›â ˆâ Žâ ±â ˆâ â ƒâ ", "output": "társalgásszámba" }, { "input": "⠞⠈⠗⠎â â ‡â ›â ˆâ Žâ ±â ‘â —â ¾ ", "output": "társalgásszerű " }, { "input": "⠞⠈⠗⠎⠱⠑⠅⠡⠗", "output": "társszekér" }, { "input": "⠞⠈⠗⠎⠱⠟⠧⠑⠞⠎⠡⠛", "output": "társszövetség" }, { "input": "⠞⠑⠓⠑⠞⠎⠡⠛⠹⠈⠗", "output": "tehetséggyár" }, { "input": "⠞⠑⠈⠎⠱⠑⠗⠧⠌⠣", "output": "teásszervíz" }, { "input": "⠞⠑⠚⠋⠟⠇⠟⠎⠱⠈⠚⠬", "output": "tejfölösszájú" }, { "input": "â žâ ‘â …â â »â Žâ ±â ˆâ â ‡â ˆâ ‡â ˆâ Ž", "output": "teknÅ‘sszámlálás" }, { "input": "⠞⠑⠇⠑â â ·â ‡â ¡â Žâ ±â ‘⠗⠅⠑⠣⠑⠞ ", "output": "településszerkezet " }, { "input": "⠞⠑⠇⠑â â ·â ‡â ¡â Žâ £â ªâ â ˆâ šâ ˆâ —â ", "output": "települészónájára" }, { "input": "â žâ ‘â â â ‡â •â â •â Žâ ±â â …â ¡â —â žâ »", "output": "templomosszakértÅ‘" }, { "input": "⠞⠑⠞⠱⠡⠎⠣â â š", "output": "tetszészaj" }, { "input": "⠞⠑⠞⠱⠡⠎⠜⠊⠧â â š ", "output": "tetszészsivaj " }, { "input": "⠞⠊⠛⠗⠊⠎⠱⠑â â ‘â … ", "output": "tigrisszemek " }, { "input": "⠞⠊⠛⠗⠊⠎⠱⠑⠗⠾", "output": "tigrisszerű" }, { "input": "⠞⠊⠱⠞⠎⠡⠛⠹⠾⠚⠞⠑â â ¡â «", "output": "tisztséggyűjtemény" }, { "input": "â žâ Šâ â ¥â Žâ ±â ˆâ ", "output": "tipusszám" }, { "input": "â žâ Œâ â ¥â Žâ ±â ˆâ ", "output": "típusszám" }, { "input": "â žâ Œâ â ¥â Žâ ±â Ÿâ §â ‘â ›", "output": "típusszöveg" }, { "input": "â žâ Œâ â ¥â Žâ £â ¥â ƒâ ƒâ •â «", "output": "típuszubbony" }, { "input": "⠞⠊⠞⠅⠕⠎⠱⠕⠇⠛⠈⠇â â ž", "output": "titkosszolgálat" }, { "input": "⠞⠊⠣⠑⠙⠑⠎⠱⠈⠇⠇⠈⠎", "output": "tizedesszállás" }, { "input": "⠞⠌⠣⠛â â ‡â ‡â •â â «â Š", "output": "tízgallonnyi" }, { "input": "⠞⠕⠚⠈⠎⠣⠈â â •â —", "output": "tojászápor" }, { "input": "⠞⠕⠚⠈⠎⠱⠑⠗⠾", "output": "tojásszerű" }, { "input": "â žâ •â â ˆâ £â Žâ ˆâ —⠛⠈⠚â ", "output": "topázsárgája" }, { "input": "⠞⠕⠗⠣⠎⠈⠛", "output": "torzság" }, { "input": "⠞⠟⠃⠃⠑⠎⠱⠈â ", "output": "többesszám" }, { "input": "⠞⠟⠇⠞⠡⠎⠱â â ƒâ ˆâ ¸â •⠣⠪", "output": "töltésszabályozó" }, { "input": "⠞⠟⠇⠞⠡⠎⠱⠈â ", "output": "töltésszám" }, { "input": "⠞⠟⠇⠞⠡⠎⠱⠑⠗⠾⠑â ", "output": "töltésszerűen" }, { "input": "⠞⠟⠇⠞⠡⠎⠱â â …â â ±", "output": "töltésszakasz" }, { "input": "⠞⠟⠗⠇⠑⠱⠱⠑â ", "output": "törlesszem" }, { "input": "⠞⠟⠧⠊⠎⠱⠈⠗", "output": "tövisszár" }, { "input": "⠞⠟⠧⠊⠎⠱⠬⠗⠈⠎", "output": "tövisszúrás" }, { "input": "⠞⠻⠣⠑⠛⠹â â â •â ž", "output": "tÅ‘zeggyapot" }, { "input": "⠞⠗⠊⠉⠓⠊â â «â â §â â ¸â ", "output": "trichinnyavalya" }, { "input": "⠞⠥⠙⠈⠎⠱⠊â â ž", "output": "tudásszint" }, { "input": "⠞⠥⠙⠈⠎⠱⠕â â š", "output": "tudásszomj" }, { "input": "⠞⠥⠗⠊⠣â â ¥â Žâ ±â ‘â …â žâ •â —", "output": "turizmusszektor" }, { "input": "⠞⠷⠅⠗⠟⠎⠱⠡⠇⠾", "output": "tükrösszélű" }, { "input": "â žâ ·â â žâ ‘⠞⠡⠎⠱⠑⠗⠾⠑â ", "output": "tüntetésszerűen" }, { "input": "⠞⠷⠣⠑⠎⠱⠑â â ¾", "output": "tüzesszemű" }, { "input": "⠞⠾⠣⠜⠕â â ›â ‡â »â — ", "output": "tűzzsonglÅ‘r " }, { "input": "⠞⠾⠣⠎⠑⠃⠑⠎⠎⠡⠛", "output": "tűzsebesség" }, { "input": "⠞⠾⠣⠎⠥⠛⠈⠗", "output": "tűzsugár" }, { "input": "⠥⠙⠧â â —â •â â ‰â Žâ ‘â —â ‘â ›", "output": "udvaroncsereg" }, { "input": "⠥⠛⠗⠈⠎⠱⠑⠗⠾⠑â ", "output": "ugrásszerűen" }, { "input": "⠥⠛⠗⠈⠎⠱⠟⠛⠡â â ‘â …", "output": "ugrásszögének" }, { "input": "⠬⠚⠕â â ‰â Žâ ˆâ ›", "output": "újoncság" }, { "input": "⠥⠇⠈â â ¥â Žâ ±â ˆâ £â â ™", "output": "ulánusszázad" }, { "input": "â ¥â â Šâ §â ‘â —â Žâ Šâ žâ ½", "output": "university" }, { "input": "⠥⠞â â ‡â ˆâ Žâ ±â ‘⠗⠾⠑â ", "output": "utalásszerűen" }, { "input": "⠥⠞â â ‡â ˆâ Žâ ±â Šâ â žâ ‘â ", "output": "utalásszinten" }, { "input": "⠥⠞⠈â â â ªâ žâ ‡â ˆâ Žâ ±â ˆâ ‡â ‡â Œâ žâ â ˆâ «â «â â ‡", "output": "utánpótlásszállítmánnyal" }, { "input": "⠥⠞⠈â â «â •â â ˆâ Ž", "output": "utánnyomás" }, { "input": "⠥⠞â â Žâ ±â ˆâ ‡â ‡â Œâ žâ ª", "output": "utasszállító" }, { "input": "⠥⠞â â Žâ ±â ˆâ ", "output": "utasszám" }, { "input": "⠥⠞â â Žâ ±â ‘â —â ‘â ", "output": "utasszerep" }, { "input": "⠥⠞â â Žâ ±â Šâ â ž", "output": "utasszint" }, { "input": "⠥⠞â â Žâ ±â •⠇⠛⠈⠇â â ž", "output": "utasszolgálat" }, { "input": "⠥⠞â â Žâ Œâ žâ ˆâ Žâ ±â â §â â …â …â â ‡", "output": "utasításszavakkal" }, { "input": "⠥⠞â â £â ˆâ Žâ ±â ‘â —â ¾", "output": "utazásszerű" }, { "input": "⠥⠞â â £â ˆâ Žâ ±â ‘⠗⠧⠑⠣⠻", "output": "utazásszervezÅ‘" }, { "input": "⠷⠇⠡⠎⠱â â …", "output": "ülésszak" }, { "input": "⠷⠇⠡⠎⠱â â …", "output": "ülésszak" }, { "input": "⠷⠎⠞⠟⠅⠟⠎⠱⠑⠗⠾", "output": "üstökösszerű" }, { "input": "⠷⠞⠡⠎⠱⠑⠗⠾", "output": "ütésszerű" }, { "input": "⠷⠞⠡⠎⠣⠈â â •â — ", "output": "ütészápor " }, { "input": "⠷⠧⠑⠛⠹â â â •â ž", "output": "üveggyapot" }, { "input": "⠷⠧⠑⠛⠹⠈⠗⠞⠈⠎", "output": "üveggyártás" }, { "input": "⠷⠧⠑⠛⠹⠟â â ¹", "output": "üveggyöngy" }, { "input": "⠷⠧⠑⠛⠹⠾⠗⠾", "output": "üveggyűrű" }, { "input": "â §â â ›â ™â â ‡â žâ “⠬⠎⠱⠑⠗⠾", "output": "vagdalthússzerű" }, { "input": "â §â â ›â •â â «â Š", "output": "vagonnyi" }, { "input": "â §â â …â â —â ©â ©â â ‡", "output": "vakarccsal" }, { "input": "â §â â ‡â ‡â ˆâ Žâ ±â â ƒâ â ™â Žâ ˆâ ›", "output": "vallásszabadság" }, { "input": "â §â â ‡â ‡â •â â ˆâ Žâ ±â ˆâ â ƒâ ", "output": "vallomásszámba" }, { "input": "⠧⠈⠇⠇â â ‘⠗⠑⠉⠩⠕â â žâ šâ ˆâ ƒâ ªâ ‡", "output": "vállpereccsontjából" }, { "input": "⠨⠧⠈â â •â Žâ ±â â ƒâ â ™â Š", "output": "Vámosszabadi" }, { "input": "⠧⠈⠗⠕⠎⠱⠡â â ‘", "output": "városszépe" }, { "input": "⠧⠈⠗⠕⠎⠱⠑⠗⠞⠑", "output": "városszerte" }, { "input": "⠧⠈⠗⠕⠎⠱⠊⠇⠥⠑⠞⠞", "output": "várossziluett" }, { "input": "⠧⠈⠗⠕⠎⠣â â šâ •â ", "output": "városzajon" }, { "input": "⠧⠈⠗⠕⠎⠣â â šâ ž ", "output": "városzajt " }, { "input": "⠧⠈⠗⠕⠎⠜â â —â â •â …", "output": "városzsarnok" }, { "input": "â §â â Žâ â Žâ ±â â …⠕⠱⠞⠈⠸", "output": "vasasszakosztály" }, { "input": "â §â â Žâ ¥â žâ â Žâ ±â žâ —⠈⠚⠅", "output": "vasutassztrájk" }, { "input": "â §â â Žâ ±â ˆâ ‡â ‡â Œâ žâ â ˆâ «", "output": "vasszállítmány" }, { "input": "⠨⠧â â ±â â —", "output": "Vaszar" }, { "input": "⠨⠧⠈⠜â â •â …", "output": "Vázsnok" }, { "input": "⠧⠡⠛⠊⠛⠹â â …â •â —â •â ‡â â Š", "output": "végiggyakorolni" }, { "input": "⠧⠡⠛⠊⠛⠹â â ‡â •⠛⠕⠇⠓â â žâ šâ ", "output": "végiggyalogolhatja" }, { "input": "â §â ‘â â ™â ¡â ›â ¹â ‘â —â â ‘â …", "output": "vendéggyermek" }, { "input": "â §â ‘â â ™â ¡â ›â ¹â ·â ‡â ‘⠅⠑⠣⠑⠞", "output": "vendéggyülekezet" }, { "input": "â §â ‘â —â ‘â Žâ ±â â …⠈⠇⠇⠬ ", "output": "veresszakállú " }, { "input": "⠧⠑⠗⠑⠎⠱⠑â â ¾", "output": "veresszemű" }, { "input": "â §â ‘â —â Žâ ±â â …", "output": "versszak" }, { "input": "â §â ‘â —â Žâ ±â â …⠈⠃â â  ", "output": "versszakában " }, { "input": "⠧⠑⠗⠎⠱⠑⠗⠾", "output": "versszerű" }, { "input": "⠧⠑⠗⠎⠱⠑⠗⠑⠞⠻", "output": "versszeretÅ‘" }, { "input": "⠧⠡⠗⠞⠑⠎⠱⠈⠣â â ™", "output": "vértesszázad" }, { "input": "⠧⠡⠗⠞⠑⠎⠱⠈⠣â â ™â ƒâ ‘⠇⠊ ", "output": "vértesszázadbeli " }, { "input": "⠨⠧⠡⠗⠞⠑⠎⠱⠻⠇⠻⠎", "output": "VértesszÅ‘lÅ‘s" }, { "input": "â §â ‘â žâ ¡â Žâ ±â â ‡â â ›", "output": "vetésszalag" }, { "input": "⠧⠊⠉⠉⠎⠕⠗", "output": "viccsor" }, { "input": "⠧⠊⠇⠈⠛⠕⠎⠎⠈⠛⠹⠬⠚⠞⠈⠎⠗â ", "output": "világossággyújtásra" }, { "input": "⠧⠊⠇⠈⠛⠕⠎⠱⠻⠅⠑", "output": "világosszÅ‘ke" }, { "input": "⠧⠊⠇⠈⠛⠕⠎⠱⠷⠗⠅⠑ ", "output": "világosszürke " }, { "input": "⠧⠊⠇⠈⠛⠹⠾⠇⠟⠇⠻", "output": "világgyűlölÅ‘" }, { "input": "⠧⠊⠇⠇â â â •⠎⠱⠡⠅", "output": "villamosszék" }, { "input": "⠧⠊⠇⠇â â â •⠎⠱⠑⠗⠾", "output": "villamosszerű" }, { "input": "⠧⠊⠇⠇â â â ˆâ Žâ ±â ‘⠗⠾⠑â ", "output": "villanásszerűen" }, { "input": "⠧⠊⠱⠱â â ¡â ‡â ¡â Žâ ±â ‘â —â ¾", "output": "visszaélésszerű" }, { "input": "⠧⠊⠗⠈⠛⠹â â â šâ â Šâ …â â ž", "output": "virággyapjaikat" }, { "input": "⠧⠊⠗⠈⠛⠹⠾⠚⠞⠑â â ¡â « ", "output": "virággyűjtemény " }, { "input": "⠧⠊⠗⠈⠛⠹⠾⠚⠞⠡⠎", "output": "virággyűjtés" }, { "input": "⠧⠊⠗⠛⠕â â ‰â Žâ ˆâ ›", "output": "virgoncság" }, { "input": "⠧⠌⠗⠥⠎⠱⠑⠗⠾", "output": "vírusszerű" }, { "input": "⠧⠌⠗⠥⠎⠱⠾⠗⠡⠎", "output": "vírusszűrés" }, { "input": "⠧⠊⠎⠑⠇⠅⠑⠙⠡⠎⠱⠑⠗⠾", "output": "viselkedésszerű" }, { "input": "⠧⠊⠎⠑⠇⠅⠑⠙⠡⠎⠣â â §â â —", "output": "viselkedészavar" }, { "input": "â §â Šâ Žâ ¥â â ‡â ‡â ½", "output": "visually" }, { "input": "⠧⠊⠱⠱⠡⠗", "output": "visszér" }, { "input": "⠧⠊⠱⠱⠑⠗⠑⠎", "output": "visszeres" }, { "input": "⠧⠊⠱⠱⠡⠗â â ¾â žâ ¡â ž ", "output": "visszérműtét " }, { "input": "⠧⠊⠞⠕⠗⠇⠈⠎⠱⠑⠣⠕â ", "output": "vitorlásszezon" }, { "input": "â §â Šâ žâ —â Šâ â «â Š", "output": "vitrinnyi" }, { "input": "⠧⠊⠣⠑⠇⠑⠞⠑⠎⠣â â ©â …â ª ", "output": "vizeleteszacskó " }, { "input": "⠧⠊⠣⠑⠎⠜⠑â â ‡â ‘", "output": "vizeszsemle" }, { "input": "⠧⠌⠣⠋⠕⠸⠈⠎⠱⠑⠗⠾", "output": "vízfolyásszerű" }, { "input": "⠧⠌⠣⠎⠈⠧", "output": "vízsáv" }, { "input": "⠧⠌⠣⠎⠊⠧â â žâ â › ", "output": "vízsivatag " }, { "input": "⠧⠌⠣⠑⠎⠡⠎⠱⠑⠗⠾⠑â ", "output": "vízesésszerűen" }, { "input": "⠧⠌⠣⠎⠕⠙⠕⠗", "output": "vízsodor" }, { "input": "â §â •â â ªâ Žâ ±â ‘â —â ‘â â ˆâ ™ ", "output": "vonósszerenád " }, { "input": "â §â •â â ªâ Žâ £â ‘â â ‘â …â â —", "output": "vonószenekar" }, { "input": "⠧⠟⠗⠓⠑⠫⠑⠎⠱⠻⠅⠑", "output": "vörhenyesszÅ‘ke" }, { "input": "⠧⠟⠗⠟⠎⠑⠎⠱⠻⠅⠑", "output": "vörösesszÅ‘ke" }, { "input": "⠧⠟⠗⠟⠎⠑⠎⠱⠻⠅⠑", "output": "vörösesszÅ‘ke" }, { "input": "â §â Ÿâ —â Ÿâ Žâ ±â â …⠈⠇⠇⠬", "output": "vörösszakállú" }, { "input": "⠧⠟⠗⠟⠎⠱⠑â ", "output": "vörösszem" }, { "input": "⠧⠟⠗⠟⠎⠱⠌â â ¾", "output": "vörösszínű" }, { "input": "⠧⠟⠗⠟⠎⠱⠻⠅⠑", "output": "vörösszÅ‘ke" }, { "input": "⠧⠟⠗⠟⠎⠣⠈⠱⠇⠪", "output": "vöröszászló" }, { "input": "⠺⠑⠃⠑⠎⠱⠕⠇⠛⠈⠇⠞â â žâ ˆâ Ž", "output": "webesszolgáltatás" }, { "input": "â £â â …â ‡â â žâ ˆâ Žâ ±â ˆâ â ƒâ ", "output": "zaklatásszámba" }, { "input": "⠣⠈⠇⠕⠛⠹⠾⠗⠾â â ‘â ž", "output": "záloggyűrűmet" }, { "input": "â £â â §â â —⠕⠎⠱⠷⠗⠅⠑", "output": "zavarosszürke" }, { "input": "⠣⠇⠕⠞⠽⠗⠪⠇", "output": "zlotyról" }, { "input": "⠣⠟⠅⠅⠑â â ¡â Žâ ±â ‘â —â ¾", "output": "zökkenésszerű" }, { "input": "⠣⠟⠗⠛⠡⠎⠱⠑⠗⠾", "output": "zörgésszerű" }, { "input": "⠣⠥⠓â â â ˆâ Žâ ±â ‘â —â ¾", "output": "zuhanásszerű" }, { "input": "â œâ â —⠕⠇⠈⠎⠱⠑⠗⠾", "output": "zsarolásszerű" }, { "input": "⠜⠌⠗⠕⠎⠱⠡â ", "output": "zsírosszén" }, { "input": "⠜⠕⠇⠙⠕⠎⠱⠕⠅⠈⠎", "output": "zsoldosszokás" }, { "input": "â ¨â  â žâ ‘â ‡â ‘â ‹â •â â ±â ˆâ â •â â ’ ⠼⠚⠋⠤⠼â â ¤â ¼â ƒâ ‘⠋⠤⠼⠃⠑⠋⠄", "output": "A telefonszámom: 06-1-256-256." }, { "input": "â ¨â  â ‹â Ÿâ ‡â ™â —â ‘â â ›â ¡â Ž ⠼⠛⠂⠑ ⠑⠗⠻⠎⠎⠡⠛⠾ ⠧⠕⠇⠞⠄", "output": "A földrengés 7,5 erÅ‘sségű volt." }, { "input": "⠨⠞â â â ˆâ Ž â â ¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ â “â •â ¹ â â Š ⠧⠈⠗ ⠗⠈⠄", "output": "Tamás még nem tudta, hogy mi vár rá." }, { "input": "⠦⠨⠞â â â ˆâ Ž â â ¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ â “â •â ¹ â â Š ⠧⠈⠗ ⠗⠈⠄⠴", "output": "\"Tamás még nem tudta, hogy mi vár rá.\"" }, { "input": "⠨⠊ ⠙⠕â â  â „â ž â â • ⠺⠓⠽ â “â â â â ‘â â ‘â ™ â žâ “â Šâ Ž â â —⠕⠃⠇⠑â â „", "output": "I don't no why happened this problem." }, { "input": "â ¨â â £ â ¼â â ¼â § â â â —â â ›â —â â ‹â ¥â Ž â â ‡â â â šâ ˆâ  â  â …â ‘â ™â §â ‘â £â â ¡â « ⠊⠛⠡⠫⠃⠑ ⠧⠑⠓⠑⠞⠻⠄", "output": "Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘." }, { "input": "â ¤ â ¨â  â Žâ Šâ §â â žâ â ›â Š â …â â —â â §â ˆâ â ¬â žâ •â â ‚ â â ‘â ¹â §â ‘â  â §â â ¹ â Ÿâ žâ §â ‘â  â â ¡â —⠋⠟⠇⠙⠫⠊⠗⠑ â Šâ â â ‘â â „ ⠨⠑⠹ ⠨⠋⠕⠗⠙⠄ ⠨⠙⠑ â â Š â â ‘â  â â ‘⠹⠷â â … â â â ›â ˆâ §â â ‡â „ â ¤ ⠨⠑⠇⠻⠧⠑⠞⠞⠑ â â £ â Šâ —â â žâ žâ ˆâ —⠉⠈⠚⠈⠞⠂ â ¡â Ž ⠈⠞â â ™â •â žâ ž â ¨â â â ±â Šâ ‹â â â … â ‘â ¹ â â â ›â •â ‡ â ‹â •â â žâ •â žâ „ â ¤ â ¨â “â  â §â Šâ ±â ±â â šâ Ÿâ â ‚ â …â ‘â —â ‘â Žâ Žâ ‘â  â â ‘â › â  â §â â Žâ ¬â žâ ˆâ ‡â ‡â •â â ˆâ Ž â â ‘⠇⠇⠑⠞⠞ â  â ¨â ›â —â â â ™ ⠨⠓⠕⠞⠑⠇⠃â â â „", "output": "- A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban." }, { "input": "â ¨â  â §â ¡â žâ ‘â ‡â ˆâ — â ¼â  â °â ‘â „", "output": "A vételár 1 €." }, { "input": "⠨⠙⠑ â â ‘â …â ‘â  â â â ¹â •â  â â ‘⠓⠑⠣⠑â â —â ‘ â ‘â Žâ Šâ … â  â ‡â ‘â §â ¡â ‡â Œâ —â ˆâ Ž â ®â â ¡â £â ™ â ‘â ‡ â  â “â ‘â ¸â ‘â Žâ Œâ —â ˆâ Žâ Š ⠓⠊⠃⠈⠅â â ž â ¡â Ž â  â ©â ¬â «â  â Œâ —â ˆâ Žâ •â â â žâ µâ „", "output": "De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat)." }, { "input": "â ¨â  â …â Šâ ˆâ ‡â ‡â Œâ žâ ˆâ Ž â â ‘â ›â «â Šâ žâ ªâ šâ ˆâ  â šâ ‘â ‡â ‘â  â §â •â ‡â ž â â £ ⠨⠨â â §â ¹â •â ± â ‘â ‡â â Ÿâ …â ‘â „", "output": "A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke." }, { "input": "â ¨â  â â •â â žâ •â Ž ⠊⠙⠻ â ¼â â â „⠙⠑ â â ‘⠗⠉⠄", "output": "A pontos idÅ‘ 11:45 perc." }, { "input": "â  â ”â ¨â  â …â Šâ â ™â ˆâ Ž ⠬⠚⠙⠕â â Žâ ˆâ ›â â Šâ „", "output": "•A kiadás újdonságai." }, { "input": "â ¨â  â “â ¥â  â ¤â ‡â Šâ Žâ ž ⠋⠈⠚⠇ â â ‘â  â ‡â ¡â žâ ‘â £â Šâ …â „", "output": "A hu_list fájl nem létezik." }, { "input": "â ¨â â £ â ‘â ¤â â â Šâ ‡ ⠉⠌â â ‘â â ’ â â …â â —â â Šâ ˜â â …â â —â â Šâ „⠓⠥⠄", "output": "Az e-mail címem: akarmi@akarmi.hu." } ], "flags": { "outputUniBrl": true, "testmode": "backtranslate" } }, { "data": [ { "input": "accessibility", "output": "â â ‰â ‰â ‘⠎⠎⠊⠃⠊⠇⠊⠞⠽" }, { "input": "adásszerű", "output": "â â ™â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "adásszünet", "output": "â â ™â ˆâ Žâ ±â ·â â ‘â ž" }, { "input": "adászárásig", "output": "â â ™â ˆâ Žâ £â ˆâ —⠈⠎⠊⠛" }, { "input": "adósszámla", "output": "â â ™â ªâ Žâ ±â ˆâ â ‡â " }, { "input": "Agyagosszergény", "output": "â ¨â â ¹â â ›â •⠎⠱⠑⠗⠛⠡⠫" }, { "input": "agyaggyűrűiken", "output": "â â ¹â â ›â ¹â ¾â —⠾⠊⠅⠑â " }, { "input": "agyonnyom", "output": "â â ¹â •â â «â •â " }, { "input": "agyonnyúzott", "output": "â â ¹â •â â «â ¬â £â •â žâ ž" }, { "input": "agyonnyűtt ", "output": "â â ¹â •â â «â ¾â žâ ž " }, { "input": "ágyússzekerek", "output": "⠈⠹⠬⠎⠱⠑⠅⠑⠗⠑⠅" }, { "input": "ájulásszerű", "output": "⠈⠚⠥⠇⠈⠎⠱⠑⠗⠾" }, { "input": "akácsövény", "output": "â â …⠈⠉⠎⠟⠧⠡⠫" }, { "input": "ákácsövény", "output": "⠈⠅⠈⠉⠎⠟⠧⠡⠫" }, { "input": "alásszolgája", "output": "â â ‡â ˆâ Žâ ±â •⠇⠛⠈⠚â " }, { "input": "alásszolgájuk ", "output": "â â ‡â ˆâ Žâ ±â •⠇⠛⠈⠚⠥⠅ " }, { "input": "alkalmazásszerver", "output": "â â ‡â …â â ‡â â â £â ˆâ Žâ ±â ‘â —â §â ‘â —" }, { "input": "alkalmazásszintű", "output": "â â ‡â …â â ‡â â â £â ˆâ Žâ ±â Šâ â žâ ¾" }, { "input": "állásszög", "output": "⠈⠇⠇⠈⠎⠱⠟⠛" }, { "input": "almásszürke", "output": "â â ‡â â ˆâ Žâ ±â ·â —â …â ‘" }, { "input": "alvásszegény", "output": "â â ‡â §â ˆâ Žâ ±â ‘⠛⠡⠫" }, { "input": "alvásszükséglete", "output": "â â ‡â §â ˆâ Žâ ±â ·â …⠎⠡⠛⠇⠑⠞⠑" }, { "input": "alvászavar", "output": "â â ‡â §â ˆâ Žâ £â â §â â —" }, { "input": "anyaggyÅ‘zÅ‘", "output": "â â «â â ›â ¹â »â £â »" }, { "input": "anyaggyűjtés", "output": "â â «â â ›â ¹â ¾â šâ žâ ¡â Ž" }, { "input": "aranyosszÅ‘ke", "output": "â â —â â «â •⠎⠱⠻⠅⠑" }, { "input": "árboccsúcs", "output": "⠈⠗⠃⠕⠉⠩⠬⠩" }, { "input": "árbóccsúcs", "output": "⠈⠗⠃⠪⠉⠩⠬⠩" }, { "input": "árbocsudarat", "output": "⠈⠗⠃⠕⠉⠎⠥⠙â â —â â ž" }, { "input": "arcüreggyulladás", "output": "â â —⠉⠷⠗⠑⠛⠹⠥⠇⠇â â ™â ˆâ Ž" }, { "input": "arccsont", "output": "â â —⠉⠩⠕â â ž" }, { "input": "arcseb", "output": "â â —⠉⠎⠑⠃" }, { "input": "arcsebe ", "output": "â â —⠉⠎⠑⠃⠑ " }, { "input": "arcsérülés", "output": "â â —⠉⠎⠡⠗⠷⠇⠡⠎" }, { "input": "arzénnyom", "output": "â â —⠣⠡â â «â •â " }, { "input": "áremelkedésszerű", "output": "⠈⠗⠑â â ‘⠇⠅⠑⠙⠡⠎⠱⠑⠗⠾" }, { "input": "árgusszemű", "output": "⠈⠗⠛⠥⠎⠱⠑â â ¾" }, { "input": "árrésszabályt", "output": "⠈⠗⠗⠡⠎⠱â â ƒâ ˆâ ¸â ž" }, { "input": "árvízsújtotta", "output": "⠈⠗⠧⠌⠣⠎⠬⠚⠞⠕⠞⠞â " }, { "input": "átlaggyerekre", "output": "⠈⠞⠇â â ›â ¹â ‘â —â ‘â …â —â ‘" }, { "input": "autósszemüveg", "output": "â â ¥â žâ ªâ Žâ ±â ‘â â ·â §â ‘â ›" }, { "input": "autósszÅ‘nyeg", "output": "â â ¥â žâ ªâ Žâ ±â »â «â ‘â ›" }, { "input": "azonnyomban", "output": "â â £â •â â «â •â â ƒâ â " }, { "input": "bádoggyűjtemény", "output": "⠃⠈⠙⠕⠛⠹⠾⠚⠞⠑â â ¡â «" }, { "input": "Bánnyíres", "output": "⠨⠃⠈â â «â Œâ —â ‘â Ž" }, { "input": "bázisszint", "output": "⠃⠈⠣⠊⠎⠱⠊â â ž" }, { "input": "Barccsal", "output": "⠨⠃â â —â ©â ©â â ‡" }, { "input": "barkácszene", "output": "â ƒâ â —⠅⠈⠩⠣⠑â â ‘" }, { "input": "barnásszÅ‘ke", "output": "â ƒâ â —â â ˆâ Žâ ±â »â …â ‘" }, { "input": "barnásszÅ‘két", "output": "â ƒâ â —â â ˆâ Žâ ±â »â …â ¡â ž" }, { "input": "barnásszürke", "output": "â ƒâ â —â â ˆâ Žâ ±â ·â —â …â ‘" }, { "input": "barnesszal", "output": "â ƒâ â —â â ‘⠱⠱â â ‡" }, { "input": "baromsággyűjtemény", "output": "â ƒâ â —â •â â Žâ ˆâ ›â ¹â ¾â šâ žâ ‘â â ¡â «" }, { "input": "basszusszerű", "output": "â ƒâ â ±â ±â ¥â Žâ ±â ‘â —â ¾" }, { "input": "basszusszintetizátor", "output": "â ƒâ â ±â ±â ¥â Žâ ±â Šâ â žâ ‘⠞⠊⠣⠈⠞⠕⠗" }, { "input": "becslésszerűen", "output": "⠃⠑⠩⠇⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "bekezdésszintű", "output": "⠃⠑⠅⠑⠣⠙⠡⠎⠱⠊â â žâ ¾" }, { "input": "Békésszentandrás", "output": "⠨⠃⠡⠅⠡⠎⠱⠑â â žâ â â ™â —⠈⠎" }, { "input": "bélésszövet", "output": "⠃⠡⠇⠡⠎⠱⠟⠧⠑⠞" }, { "input": "bélyeggyűjtemény", "output": "⠃⠡⠸⠑⠛⠹⠾⠚⠞⠑â â ¡â «" }, { "input": "bércsüveg", "output": "⠃⠡⠗⠉⠎⠷⠧⠑⠛" }, { "input": "berendezésszerű ", "output": "⠃⠑⠗⠑â â ™â ‘⠣⠡⠎⠱⠑⠗⠾ " }, { "input": "berendezésszett", "output": "⠃⠑⠗⠑â â ™â ‘⠣⠡⠎⠱⠑⠞⠞" }, { "input": "beteggyógyász", "output": "⠃⠑⠞⠑⠛⠹⠪⠹⠈⠱" }, { "input": "bilincszörgés", "output": "⠃⠊⠇⠊â â ©â £â Ÿâ —⠛⠡⠎" }, { "input": "binsenggyökér", "output": "⠃⠊â â Žâ ‘â â ¹â ¹â Ÿâ …â ¡â —" }, { "input": "blueszene", "output": "⠃⠇⠥⠑⠎⠣⠑â â ‘" }, { "input": "biznisszé", "output": "⠃⠊⠣â â Šâ ±â ±â ¡" }, { "input": "bohócsapkája", "output": "⠃⠕⠓⠪⠉⠎â â â …⠈⠚â " }, { "input": "bonbonmeggy", "output": "⠃⠕â â ƒâ •â â â ‘⠹⠹" }, { "input": "borsszem", "output": "⠃⠕⠗⠎⠱⠑â " }, { "input": "borsszóró", "output": "⠃⠕⠗⠎⠱⠪⠗⠪" }, { "input": "borzasszÅ‘rű", "output": "⠃⠕⠗⠣â â Žâ ±â »â —â ¾" }, { "input": "borzzsír", "output": "⠃⠕⠗⠣⠜⠌⠗" }, { "input": "bÅ‘gésszerű", "output": "⠃⠻⠛⠡⠎⠱⠑⠗⠾" }, { "input": "börtönnyelve", "output": "⠃⠟⠗⠞⠟â â «â ‘⠇⠧⠑" }, { "input": "börtönnyíláson, börtönnyitó", "output": "⠃⠟⠗⠞⠟â â «â Œâ ‡â ˆâ Žâ •â â ‚ ⠃⠟⠗⠞⠟â â «â Šâ žâ ª" }, { "input": "brekegésszerű", "output": "⠃⠗⠑⠅⠑⠛⠡⠎⠱⠑⠗⠾" }, { "input": "Briganty", "output": "⠨⠃⠗⠊⠛â â â žâ ½" }, { "input": "bronzsáska", "output": "⠃⠗⠕â â £â Žâ ˆâ Žâ …â " }, { "input": "bronzsáskák", "output": "⠃⠗⠕â â £â Žâ ˆâ Žâ …⠈⠅" }, { "input": "bronzsasokkal ", "output": "⠃⠗⠕â â £â Žâ â Žâ •â …â …â â ‡ " }, { "input": "bronzsisak", "output": "⠃⠗⠕â â £â Žâ Šâ Žâ â …" }, { "input": "bukásszámba", "output": "⠃⠥⠅⠈⠎⠱⠈â â ƒâ " }, { "input": "búcsújárásszerű", "output": "⠃⠬⠩⠬⠚⠈⠗⠈⠎⠱⠑⠗⠾" }, { "input": "bűnnyomok", "output": "⠃⠾â â «â •â â •â …" }, { "input": "chipseszacskó", "output": "⠉⠓⠊â â Žâ ‘â Žâ £â â ©â …â ª" }, { "input": "ciripelésszerűen", "output": "⠉⠊⠗⠊â â ‘⠇⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "curiosity", "output": "⠉⠥⠗⠊⠕⠎⠊⠞⠽" }, { "input": "csapásszám", "output": "â ©â â â ˆâ Žâ ±â ˆâ " }, { "input": "csárdásszóló", "output": "⠩⠈⠗⠙⠈⠎⠱⠪⠇⠪" }, { "input": "csattanásszerű", "output": "â ©â â žâ žâ â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "csavarásszerű", "output": "â ©â â §â â —⠈⠎⠱⠑⠗⠾" }, { "input": "csikósszámadó", "output": "⠩⠊⠅⠪⠎⠱⠈â â â ™â ª" }, { "input": "csillaggyárnak", "output": "⠩⠊⠇⠇â â ›â ¹â ˆâ —â â â …" }, { "input": "csipkésszélű", "output": "â ©â Šâ â …⠡⠎⠱⠡⠇⠾" }, { "input": "csípésszám", "output": "â ©â Œâ â ¡â Žâ ±â ˆâ " }, { "input": "csobbanásszerű", "output": "⠩⠕⠃⠃â â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "csuklásszerű", "output": "⠩⠥⠅⠇⠈⠎⠱⠑⠗⠾" }, { "input": "diósszilágyi", "output": "⠙⠊⠪⠎⠱⠊⠇⠈⠹⠊" }, { "input": "disszertáció", "output": "⠙⠊⠱⠱⠑⠗⠞⠈⠉⠊⠪" }, { "input": "dobpergésszerűen", "output": "⠙⠕⠃â â ‘⠗⠛⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "döggyapjú", "output": "⠙⠟⠛⠹â â â šâ ¬" }, { "input": "döggyárnak", "output": "⠙⠟⠛⠹⠈⠗â â â …" }, { "input": "dÅ‘lésszög", "output": "⠙⠻⠇⠡⠎⠱⠟⠛" }, { "input": "dörgésszerű", "output": "⠙⠟⠗⠛⠡⠎⠱⠑⠗⠾" }, { "input": "dörgésszerű ", "output": "⠙⠟⠗⠛⠡⠎⠱⠑⠗⠾ " }, { "input": "dörzszörej", "output": "⠙⠟⠗⠜⠣⠟⠗⠑⠚" }, { "input": "dragonyosszázad ", "output": "⠙⠗â â ›â •⠫⠕⠎⠱⠈⠣â â ™ " }, { "input": "dragonyoszászlóalj", "output": "⠙⠗â â ›â •⠫⠕⠎⠣⠈⠱⠇⠪â â ‡â š" }, { "input": "droggyanús", "output": "⠙⠗⠕⠛⠹â â â ¬â Ž" }, { "input": "doppinggyanú", "output": "⠙⠕â â â Šâ â ›â ¹â â â ¬" }, { "input": "dússzakállú", "output": "⠙⠬⠎⠱â â …⠈⠇⠇⠬" }, { "input": "édesszájú", "output": "⠡⠙⠑⠎⠱⠈⠚⠬" }, { "input": "édesszesztestvér", "output": "⠡⠙⠑⠎⠱⠑⠱⠞⠑⠎⠞⠧⠡⠗" }, { "input": "édességgyártók", "output": "⠡⠙⠑⠎⠎⠡⠛⠹⠈⠗⠞⠪⠅" }, { "input": "égésszabály", "output": "⠡⠛⠡⠎⠱â â ƒâ ˆâ ¸" }, { "input": "égésszag", "output": "⠡⠛⠡⠎⠱â â ›" }, { "input": "égésszám", "output": "⠡⠛⠡⠎⠱⠈â " }, { "input": "égésszigetelés", "output": "⠡⠛⠡⠎⠱⠊⠛⠑⠞⠑⠇⠡⠎" }, { "input": "edzésszámot", "output": "⠑⠙⠣⠡⠎⠱⠈â â •â ž" }, { "input": "effektusszerűen", "output": "⠑⠋⠋⠑⠅⠞⠥⠎⠱⠑⠗⠾⠑â " }, { "input": "egyenesszálú", "output": "⠑⠹⠑â â ‘⠎⠱⠈⠇⠬" }, { "input": "egyenesszárnyúak", "output": "⠑⠹⠑â â ‘⠎⠱⠈⠗⠫⠬â â …" }, { "input": "egyenesszög", "output": "⠑⠹⠑â â ‘⠎⠱⠟⠛" }, { "input": "egyezség", "output": "⠑⠹⠑⠣⠎⠡⠛" }, { "input": "egyesszámban", "output": "⠑⠹⠑⠎⠱⠈â â ƒâ â " }, { "input": "egységgyertyából", "output": "⠑⠹⠎⠡⠛⠹⠑⠗⠳⠈⠃⠪⠇" }, { "input": "éhesszájat ", "output": "⠡⠓⠑⠎⠱⠈⠚â â ž " }, { "input": "ejtÅ‘ernyÅ‘sszárnyak", "output": "⠑⠚⠞⠻⠑⠗⠫⠻⠎⠱⠈⠗⠫â â …" }, { "input": "ejtÅ‘ernyÅ‘sszázad", "output": "⠑⠚⠞⠻⠑⠗⠫⠻⠎⠱⠈⠣â â ™" }, { "input": "ejtÅ‘ernyÅ‘szászlóalj ", "output": "⠑⠚⠞⠻⠑⠗⠫⠻⠎⠣⠈⠱⠇⠪â â ‡â š " }, { "input": "ékesszólás", "output": "⠡⠅⠑⠎⠱⠪⠇⠈⠎" }, { "input": "ékesszóló ", "output": "⠡⠅⠑⠎⠱⠪⠇⠪ " }, { "input": "ekhósszekér", "output": "⠑⠅⠓⠪⠎⠱⠑⠅⠡⠗" }, { "input": "ekhósszekerek", "output": "⠑⠅⠓⠪⠎⠱⠑⠅⠑⠗⠑⠅" }, { "input": "elektronnyalábra", "output": "⠑⠇⠑⠅⠞⠗⠕â â «â â ‡â ˆâ ƒâ —â " }, { "input": "eleséggyűjtés ", "output": "⠑⠇⠑⠎⠡⠛⠹⠾⠚⠞⠡⠎ " }, { "input": "élesszemű", "output": "⠡⠇⠑⠎⠱⠑â â ¾" }, { "input": "ellátásszerű", "output": "⠑⠇⠇⠈⠞⠈⠎⠱⠑⠗⠾" }, { "input": "ellenállásszekrény, ellenállászóna", "output": "⠑⠇⠇⠑â â ˆâ ‡â ‡â ˆâ Žâ ±â ‘â …â —â ¡â «â ‚ ⠑⠇⠇⠑â â ˆâ ‡â ‡â ˆâ Žâ £â ªâ â " }, { "input": "ellennyilatkozat", "output": "⠑⠇⠇⠑â â «â Šâ ‡â â žâ …â •â £â â ž" }, { "input": "ellennyomás", "output": "⠑⠇⠇⠑â â «â •â â ˆâ Ž" }, { "input": "elméncség", "output": "â ‘â ‡â â ¡â â ‰â Žâ ¡â ›" }, { "input": "előírásszerű ", "output": "⠑⠇⠻⠌⠗⠈⠎⠱⠑⠗⠾ " }, { "input": "elrémisszék ", "output": "⠑⠇⠗⠡â â Šâ ±â ±â ¡â … " }, { "input": "emberhússzagot ", "output": "â ‘â â ƒâ ‘⠗⠓⠬⠎⠱â â ›â •â ž " }, { "input": "emelésszerű", "output": "â ‘â â ‘⠇⠡⠎⠱⠑⠗⠾" }, { "input": "enyveszsinór", "output": "⠑⠫⠧⠑⠎⠜⠊â â ªâ —" }, { "input": "eposszal", "output": "â ‘â â •⠱⠱â â ‡" }, { "input": "érccsapadék, érccsengés, érccsatorna ", "output": "⠡⠗⠉⠩â â â â ™â ¡â …â ‚ ⠡⠗⠉⠩⠑â â ›â ¡â Žâ ‚ ⠡⠗⠉⠩â â žâ •â —â â  " }, { "input": "ércsalak", "output": "⠡⠗⠉⠎â â ‡â â …" }, { "input": "ércsas", "output": "⠡⠗⠉⠎â â Ž" }, { "input": "ércsarukkal", "output": "⠡⠗⠉⠎â â —⠥⠅⠅â â ‡" }, { "input": "ércselyem", "output": "⠡⠗⠉⠎⠑⠸⠑â " }, { "input": "ércsíp, ércsípjába, ércsípláda ", "output": "⠡⠗⠉⠎⠌â â ‚ ⠡⠗⠉⠎⠌â â šâ ˆâ ƒâ â ‚ ⠡⠗⠉⠎⠌â â ‡â ˆâ ™â  " }, { "input": "ércsíptetÅ‘", "output": "â ¡â —â ©â Œâ â žâ ‘â žâ »" }, { "input": "ércsisak", "output": "⠡⠗⠉⠎⠊⠎â â …" }, { "input": "ércsodrony", "output": "⠡⠗⠉⠎⠕⠙⠗⠕⠫" }, { "input": "erÅ‘sítésszabályozás", "output": "⠑⠗⠻⠎⠌⠞⠡⠎⠱â â ƒâ ˆâ ¸â •⠣⠈⠎" }, { "input": "erÅ‘forrászabáló", "output": "⠑⠗⠻⠋⠕⠗⠗⠈⠎⠣â â ƒâ ˆâ ‡â ª" }, { "input": "erÅ‘lködésszagúnak", "output": "⠑⠗⠻⠇⠅⠟⠙⠡⠎⠱â â ›â ¬â â â …" }, { "input": "érzékelésszint", "output": "⠡⠗⠣⠡⠅⠑⠇⠡⠎⠱⠊â â ž" }, { "input": "ésszerű", "output": "⠡⠱⠱⠑⠗⠾" }, { "input": "eszközsor, eszközsorán", "output": "⠑⠱⠅⠟⠣⠎⠕⠗⠂ ⠑⠱⠅⠟⠣⠎⠕⠗⠈â " }, { "input": "evészavar", "output": "â ‘â §â ¡â Žâ £â â §â â —" }, { "input": "fagyosszentek", "output": "â ‹â â ¹â •⠎⠱⠑â â žâ ‘â …" }, { "input": "fáklyászene", "output": "⠋⠈⠅⠸⠈⠎⠣⠑â â ‘" }, { "input": "farkasszáj ", "output": "â ‹â â —â …â â Žâ ±â ˆâ š " }, { "input": "farkasszem", "output": "â ‹â â —â …â â Žâ ±â ‘â " }, { "input": "farkasszemet ", "output": "â ‹â â —â …â â Žâ ±â ‘â â ‘â ž " }, { "input": "Farkassziget,", "output": "⠨⠋â â —â …â â Žâ ±â Šâ ›â ‘â žâ ‚" }, { "input": "fásszárú", "output": "⠋⠈⠎⠱⠈⠗⠬" }, { "input": "fázisszögnek", "output": "⠋⠈⠣⠊⠎⠱⠟⠛â â ‘â …" }, { "input": "fegyenccsoport", "output": "⠋⠑⠹⠑â â ‰â ©â •â â •â —â ž" }, { "input": "fegyencsapkát ", "output": "⠋⠑⠹⠑â â ‰â Žâ â â …⠈⠞ " }, { "input": "fehéresszÅ‘ke, fehéresszürke ", "output": "⠋⠑⠓⠡⠗⠑⠎⠱⠻⠅⠑⠂ ⠋⠑⠓⠡⠗⠑⠎⠱⠷⠗⠅⠑ " }, { "input": "feketésszürke", "output": "⠋⠑⠅⠑⠞⠡⠎⠱⠷⠗⠅⠑" }, { "input": "feldolgozászenekar", "output": "⠋⠑⠇⠙⠕⠇⠛⠕⠣⠈⠎⠣⠑â â ‘â …â â —" }, { "input": "feleséggyilkos", "output": "⠋⠑⠇⠑⠎⠡⠛⠹⠊⠇⠅⠕⠎" }, { "input": "felfedezésszámba", "output": "⠋⠑⠇⠋⠑⠙⠑⠣⠡⠎⠱⠈â â ƒâ " }, { "input": "felséggyilkolás", "output": "⠋⠑⠇⠎⠡⠛⠹⠊⠇⠅⠕⠇⠈⠎" }, { "input": "felsorolásszerűen", "output": "⠋⠑⠇⠎⠕⠗⠕⠇⠈⠎⠱⠑⠗⠾⠑â " }, { "input": "felszerelésszettet", "output": "⠋⠑⠇⠱⠑⠗⠑⠇⠡⠎⠱⠑⠞⠞⠑⠞" }, { "input": "feltevésszerűen", "output": "⠋⠑⠇⠞⠑⠧⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "fertÅ‘zésszerű", "output": "⠋⠑⠗⠞⠻⠣⠡⠎⠱⠑⠗⠾" }, { "input": "fémesszürke", "output": "â ‹â ¡â â ‘⠎⠱⠷⠗⠅⠑" }, { "input": "filccsizma", "output": "⠋⠊⠇⠉⠩⠊⠣â â " }, { "input": "Fifty-Fifty", "output": "⠨⠋⠊⠋⠞⠽⠤⠨⠋⠊⠋⠞⠽" }, { "input": "filigránnyelű", "output": "⠋⠊⠇⠊⠛⠗⠈â â «â ‘⠇⠾" }, { "input": "fogasszeg", "output": "â ‹â •â ›â â Žâ ±â ‘â ›" }, { "input": "fogfájásszerű", "output": "⠋⠕⠛⠋⠈⠚⠈⠎⠱⠑⠗⠾" }, { "input": "foglalkozásszerű", "output": "⠋⠕⠛⠇â â ‡â …⠕⠣⠈⠎⠱⠑⠗⠾" }, { "input": "foggyalu", "output": "⠋⠕⠛⠹â â ‡â ¥" }, { "input": "foggyökér", "output": "⠋⠕⠛⠹⠟⠅⠡⠗" }, { "input": "foggyulladás", "output": "⠋⠕⠛⠹⠥⠇⠇â â ™â ˆâ Ž" }, { "input": "foggyűrű", "output": "⠋⠕⠛⠹⠾⠗⠾" }, { "input": "forgásszabály", "output": "⠋⠕⠗⠛⠈⠎⠱â â ƒâ ˆâ ¸" }, { "input": "formánsszintetizátorok", "output": "â ‹â •â —â â ˆâ â Žâ ±â Šâ â žâ ‘⠞⠊⠣⠈⠞⠕⠗⠕⠅" }, { "input": "forrásszöveg", "output": "⠋⠕⠗⠗⠈⠎⠱⠟⠧⠑⠛" }, { "input": "fosszínű", "output": "⠋⠕⠎⠱⠌â â ¾" }, { "input": "földcsuszamlásszerűen", "output": "⠋⠟⠇⠙⠩⠥⠱â â â ‡â ˆâ Žâ ±â ‘⠗⠾⠑â " }, { "input": "fölélesszem", "output": "⠋⠟⠇⠡⠇⠑⠱⠱⠑â " }, { "input": "fÅ‘zÅ‘kalánnyelet", "output": "⠋⠻⠣⠻⠅â â ‡â ˆâ â «â ‘⠇⠑⠞" }, { "input": "fuvarosszekér", "output": "⠋⠥⠧â â —⠕⠎⠱⠑⠅⠡⠗" }, { "input": "fúvósszekció", "output": "⠋⠬⠧⠪⠎⠱⠑⠅⠉⠊⠪" }, { "input": "fúvósszerszám", "output": "⠋⠬⠧⠪⠎⠱⠑⠗⠱⠈â " }, { "input": "fúvósszimfónia", "output": "⠋⠬⠧⠪⠎⠱⠊â â ‹â ªâ â Šâ " }, { "input": "fúvószenekar", "output": "⠋⠬⠧⠪⠎⠣⠑â â ‘â …â â —" }, { "input": "fűtésszag", "output": "⠋⠾⠞⠡⠎⠱â â ›" }, { "input": "garaboncsereg", "output": "â ›â â —â â ƒâ •â â ‰â Žâ ‘â —â ‘â ›" }, { "input": "gázspray", "output": "⠛⠈⠣⠎â â —â â ½" }, { "input": "gátstop", "output": "⠛⠈⠞⠎⠞⠕â " }, { "input": "gázsugár", "output": "⠛⠈⠣⠎⠥⠛⠈⠗" }, { "input": "geggyáros", "output": "⠛⠑⠛⠹⠈⠗⠕⠎" }, { "input": "gerincsérült", "output": "⠛⠑⠗⠊â â ‰â Žâ ¡â —⠷⠇⠞" }, { "input": "gerincsérv ", "output": "⠛⠑⠗⠊â â ‰â Žâ ¡â —â § " }, { "input": "ginszenggyökér", "output": "⠛⠊â â ±â ‘â â ›â ¹â Ÿâ …â ¡â —" }, { "input": "ginzenggyökér", "output": "⠛⠊â â £â ‘â â ›â ¹â Ÿâ …â ¡â —" }, { "input": "Gombosszeg", "output": "⠨⠛⠕â â ƒâ •⠎⠱⠑⠛" }, { "input": "gondviselésszerű", "output": "⠛⠕â â ™â §â Šâ Žâ ‘⠇⠡⠎⠱⠑⠗⠾" }, { "input": "gÅ‘zsíp", "output": "⠛⠻⠣⠎⠌â " }, { "input": "gÅ‘zsugár", "output": "⠛⠻⠣⠎⠥⠛⠈⠗" }, { "input": "gÅ‘zszivattyú", "output": "⠛⠻⠣⠱⠊⠧â â ³â ³â ¬" }, { "input": "gránátoszászlóalj", "output": "⠛⠗⠈â â ˆâ žâ •⠎⠣⠈⠱⠇⠪â â ‡â š" }, { "input": "gúnyversszerzÅ‘", "output": "⠛⠬⠫⠧⠑⠗⠎⠱⠑⠗⠣⠻" }, { "input": "gyalogosszázad", "output": "â ¹â â ‡â •⠛⠕⠎⠱⠈⠣â â ™" }, { "input": "gyalogoszászlóalj,", "output": "â ¹â â ‡â •⠛⠕⠎⠣⠈⠱⠇⠪â â ‡â šâ ‚" }, { "input": "gyorsszárnyú", "output": "⠹⠕⠗⠎⠱⠈⠗⠫⠬" }, { "input": "gyorsszekér ", "output": "⠹⠕⠗⠎⠱⠑⠅⠡⠗ " }, { "input": "gyorsszűrÅ‘", "output": "⠹⠕⠗⠎⠱⠾⠗⠻" }, { "input": "gyújtásszabály", "output": "⠹⠬⠚⠞⠈⠎⠱â â ƒâ ˆâ ¸" }, { "input": "gyújtászsinór", "output": "⠹⠬⠚⠞⠈⠎⠜⠊â â ªâ —" }, { "input": "gyülekezésszabadságot", "output": "⠹⠷⠇⠑⠅⠑⠣⠡⠎⠱â â ƒâ â ™â Žâ ˆâ ›â •â ž" }, { "input": "gyűlésszíne", "output": "⠹⠾⠇⠡⠎⠱⠌â â ‘" }, { "input": "habarccsal", "output": "â “â â ƒâ â —â ©â ©â â ‡" }, { "input": "habitusszerűen", "output": "â “â â ƒâ Šâ žâ ¥â Žâ ±â ‘⠗⠾⠑â " }, { "input": "hadianyaggyár", "output": "â “â â ™â Šâ â «â â ›â ¹â ˆâ —" }, { "input": "hadsereggyűjtés ", "output": "â “â â ™â Žâ ‘⠗⠑⠛⠹⠾⠚⠞⠡⠎ " }, { "input": "hajlásszög", "output": "â “â â šâ ‡â ˆâ Žâ ±â Ÿâ ›" }, { "input": "hajósszekerce ", "output": "â “â â šâ ªâ Žâ ±â ‘⠅⠑⠗⠉⠑ " }, { "input": "hajósszemélyzet", "output": "â “â â šâ ªâ Žâ ±â ‘â â ¡â ¸â £â ‘â ž" }, { "input": "hangyamászásszerű", "output": "â “â â â ¹â â â ˆâ ±â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "hamisszínes", "output": "â “â â â Šâ Žâ ±â Œâ â ‘â Ž" }, { "input": "hallászavar", "output": "â “â â ‡â ‡â ˆâ Žâ £â â §â â —" }, { "input": "halottasszekér ", "output": "â “â â ‡â •â žâ žâ â Žâ ±â ‘â …â ¡â — " }, { "input": "halottasszoba", "output": "â “â â ‡â •â žâ žâ â Žâ ±â •â ƒâ " }, { "input": "halottasszobába", "output": "â “â â ‡â •â žâ žâ â Žâ ±â •⠃⠈⠃â " }, { "input": "hamvasszÅ‘ke", "output": "â “â â â §â â Žâ ±â »â …â ‘" }, { "input": "hamvasszürke", "output": "â “â â â §â â Žâ ±â ·â —â …â ‘" }, { "input": "hanggyakorlat", "output": "â “â â â ›â ¹â â …â •â —â ‡â â ž" }, { "input": "hányásszag", "output": "⠓⠈⠫⠈⠎⠱â â ›" }, { "input": "haragoszöld", "output": "â “â â —â â ›â •⠎⠣⠟⠇⠙" }, { "input": "haranggyárosok", "output": "â “â â —â â â ›â ¹â ˆâ —â •â Žâ •â …" }, { "input": "harcosszellem", "output": "â “â â —⠉⠕⠎⠱⠑⠇⠇⠑â " }, { "input": "harccselekmény ", "output": "â “â â —⠉⠩⠑⠇⠑⠅â â ¡â « " }, { "input": "harccsoport", "output": "â “â â —⠉⠩⠕â â •â —â ž" }, { "input": "harcsor", "output": "â “â â —⠉⠎⠕⠗" }, { "input": "harmincsornyi", "output": "â “â â —â â Šâ â ‰â Žâ •â —â «â Š" }, { "input": "hármasszámú", "output": "⠓⠈⠗â â â Žâ ±â ˆâ â ¬" }, { "input": "hármasszak", "output": "⠓⠈⠗â â â Žâ ±â â …" }, { "input": "Hármassziget", "output": "⠨⠓⠈⠗â â â Žâ ±â Šâ ›â ‘â ž" }, { "input": "hársszén", "output": "⠓⠈⠗⠎⠱⠡â " }, { "input": "hársszenet", "output": "⠓⠈⠗⠎⠱⠑â â ‘â ž" }, { "input": "hártyásszárnyú", "output": "⠓⠈⠗⠳⠈⠎⠱⠈⠗⠫⠬" }, { "input": "hasszÅ‘rzet", "output": "â “â â Žâ ±â »â —⠣⠑⠞" }, { "input": "hasszél", "output": "â “â â Žâ ±â ¡â ‡" }, { "input": "hasisszagot", "output": "â “â â Žâ Šâ Žâ ±â â ›â •â ž" }, { "input": "hatásszélesség", "output": "â “â â žâ ˆâ Žâ ±â ¡â ‡â ‘â Žâ Žâ ¡â ›" }, { "input": "hatásszünet", "output": "â “â â žâ ˆâ Žâ ±â ·â â ‘â ž" }, { "input": "házsárkodását", "output": "⠓⠈⠜⠈⠗⠅⠕⠙⠈⠎⠈⠞" }, { "input": "hazugsággyár", "output": "â “â â £â ¥â ›â Žâ ˆâ ›â ¹â ˆâ —" }, { "input": "hegyesszög", "output": "⠓⠑⠹⠑⠎⠱⠟⠛" }, { "input": "hegyszorosszerű", "output": "⠓⠑⠹⠱⠕⠗⠕⠎⠱⠑⠗⠾" }, { "input": "hekusszagot", "output": "⠓⠑⠅⠥⠎⠱â â ›â •â ž" }, { "input": "hentesszaktanfolyamát", "output": "â “â ‘â â žâ ‘â Žâ ±â â …â žâ â â ‹â •â ¸â â â ˆâ ž" }, { "input": "hirdetésszagú", "output": "⠓⠊⠗⠙⠑⠞⠡⠎⠱â â ›â ¬" }, { "input": "hirdetésszöveg", "output": "⠓⠊⠗⠙⠑⠞⠡⠎⠱⠟⠧⠑⠛" }, { "input": "hivatásszerűen", "output": "â “â Šâ §â â žâ ˆâ Žâ ±â ‘⠗⠾⠑â " }, { "input": "hivatkozásszerű", "output": "â “â Šâ §â â žâ …⠕⠣⠈⠎⠱⠑⠗⠾" }, { "input": "hívásszűrés", "output": "⠓⠌⠧⠈⠎⠱⠾⠗⠡⠎" }, { "input": "hízelkedésszámba", "output": "⠓⠌⠣⠑⠇⠅⠑⠙⠡⠎⠱⠈â â ƒâ " }, { "input": "hólyaggyulladás", "output": "⠓⠪⠸â â ›â ¹â ¥â ‡â ‡â â ™â ˆâ Ž" }, { "input": "hörgésszerű", "output": "⠓⠟⠗⠛⠡⠎⠱⠑⠗⠾" }, { "input": "hÅ‘sszínész", "output": "⠓⠻⠎⠱⠌â â ¡â ±" }, { "input": "hÅ‘sszövetség ", "output": "⠓⠻⠎⠱⠟⠧⠑⠞⠎⠡⠛ " }, { "input": "húslevesszag", "output": "⠓⠬⠎⠇⠑⠧⠑⠎⠱â â ›" }, { "input": "hússzaft", "output": "⠓⠬⠎⠱â â ‹â ž" }, { "input": "hússzag", "output": "⠓⠬⠎⠱â â ›" }, { "input": "hússzagú", "output": "⠓⠬⠎⠱â â ›â ¬" }, { "input": "hússzállítmány ", "output": "⠓⠬⠎⠱⠈⠇⠇⠌⠞â â ˆâ « " }, { "input": "hússzállító", "output": "⠓⠬⠎⠱⠈⠇⠇⠌⠞⠪" }, { "input": "hússzalonna", "output": "⠓⠬⠎⠱â â ‡â •â â â " }, { "input": "hússzekrény", "output": "⠓⠬⠎⠱⠑⠅⠗⠡⠫" }, { "input": "hússzelet", "output": "⠓⠬⠎⠱⠑⠇⠑⠞" }, { "input": "Hússziget", "output": "⠨⠓⠬⠎⠱⠊⠛⠑⠞" }, { "input": "hússzínű", "output": "⠓⠬⠎⠱⠌â â ¾" }, { "input": "Hússzövetség", "output": "⠨⠓⠬⠎⠱⠟⠧⠑⠞⠎⠡⠛" }, { "input": "hűséggyűrűsök", "output": "⠓⠾⠎⠡⠛⠹⠾⠗⠾⠎⠟⠅" }, { "input": "hűvösszemű", "output": "⠓⠾⠧⠟⠎⠱⠑â â ¾" }, { "input": "ideggyengeség", "output": "⠊⠙⠑⠛⠹⠑â â ›â ‘â Žâ ¡â ›" }, { "input": "ideggyógyászat", "output": "⠊⠙⠑⠛⠹⠪⠹⠈⠱â â ž" }, { "input": "ideggyógyintézet", "output": "⠊⠙⠑⠛⠹⠪⠹⠊â â žâ ¡â £â ‘â ž" }, { "input": "ideggyönge", "output": "⠊⠙⠑⠛⠹⠟â â ›â ‘" }, { "input": "ideggyötrÅ‘", "output": "⠊⠙⠑⠛⠹⠟⠞⠗⠻" }, { "input": "ideggyulladás", "output": "⠊⠙⠑⠛⠹⠥⠇⠇â â ™â ˆâ Ž" }, { "input": "identitászavar", "output": "⠊⠙⠑â â žâ Šâ žâ ˆâ Žâ £â â §â â —" }, { "input": "idÅ‘járásszolgálat", "output": "⠊⠙⠻⠚⠈⠗⠈⠎⠱⠕⠇⠛⠈⠇â â ž" }, { "input": "imádsággyűjtemény", "output": "â Šâ â ˆâ ™â Žâ ˆâ ›â ¹â ¾â šâ žâ ‘â â ¡â «" }, { "input": "impulzusszélességét", "output": "â Šâ â â ¥â ‡â £â ¥â Žâ ±â ¡â ‡â ‘⠎⠎⠡⠛⠡⠞" }, { "input": "inasszerep", "output": "â Šâ â â Žâ ±â ‘â —â ‘â " }, { "input": "inasszerepet ", "output": "â Šâ â â Žâ ±â ‘â —â ‘â â ‘â ž " }, { "input": "inasszeretetet", "output": "â Šâ â â Žâ ±â ‘â —â ‘â žâ ‘â žâ ‘â ž" }, { "input": "indiánnyelv", "output": "â Šâ â ™â Šâ ˆâ â «â ‘⠇⠧" }, { "input": "információsszabadság", "output": "â Šâ â ‹â •â —â â ˆâ ‰â Šâ ªâ Žâ ±â â ƒâ â ™â Žâ ˆâ ›" }, { "input": "ingyennyelvoktatás", "output": "â Šâ â ¹â ‘â â «â ‘⠇⠧⠕⠅⠞â â žâ ˆâ Ž" }, { "input": "ínnyújtó,", "output": "â Œâ â «â ¬â šâ žâ ªâ ‚" }, { "input": "ínnyújtót ", "output": "â Œâ â «â ¬â šâ žâ ªâ ž " }, { "input": "ínyencség", "output": "⠌⠫⠑â â ‰â Žâ ¡â ›" }, { "input": "írásszeretet,", "output": "⠌⠗⠈⠎⠱⠑⠗⠑⠞⠑⠞⠂" }, { "input": "ismétlésszám", "output": "â Šâ Žâ â ¡â žâ ‡â ¡â Žâ ±â ˆâ " }, { "input": "irtásszél", "output": "⠊⠗⠞⠈⠎⠱⠡⠇" }, { "input": "istennyila", "output": "â Šâ Žâ žâ ‘â â «â Šâ ‡â " }, { "input": "járásszerű ", "output": "⠚⠈⠗⠈⠎⠱⠑⠗⠾ " }, { "input": "járásszékhely", "output": "⠚⠈⠗⠈⠎⠱⠡⠅⠓⠑⠸" }, { "input": "jáspisszobor", "output": "⠚⠈⠎â â Šâ Žâ ±â •⠃⠕⠗" }, { "input": "jegeccsoport", "output": "⠚⠑⠛⠑⠉⠩⠕â â •â —â ž" }, { "input": "jéggyártás", "output": "⠚⠡⠛⠹⠈⠗⠞⠈⠎" }, { "input": "jelenésszerű ", "output": "⠚⠑⠇⠑â â ¡â Žâ ±â ‘â —â ¾ " }, { "input": "jelentésszerű", "output": "⠚⠑⠇⠑â â žâ ¡â Žâ ±â ‘â —â ¾" }, { "input": "jelentésszint", "output": "⠚⠑⠇⠑â â žâ ¡â Žâ ±â Šâ â ž" }, { "input": "jelzésszerű", "output": "⠚⠑⠇⠣⠡⠎⠱⠑⠗⠾" }, { "input": "jósszavai,", "output": "⠚⠪⠎⠱â â §â â Šâ ‚" }, { "input": "jósszelleme,", "output": "⠚⠪⠎⠱⠑⠇⠇⠑â â ‘â ‚" }, { "input": "kabinnyíláson", "output": "â …â â ƒâ Šâ â «â Œâ ‡â ˆâ Žâ •â " }, { "input": "kabinnyomás", "output": "â …â â ƒâ Šâ â «â •â â ˆâ Ž" }, { "input": "dizájnnyelv", "output": "⠙⠊⠣⠈⠚â â «â ‘⠇⠧" }, { "input": "dizájnnyaklánc", "output": "⠙⠊⠣⠈⠚â â «â â …⠇⠈â â ‰" }, { "input": "kakasszó", "output": "â …â â …â â Žâ ±â ª" }, { "input": "kalapácszengés", "output": "â …â â ‡â â â ˆâ ©â £â ‘â â ›â ¡â Ž" }, { "input": "kalapácszongora", "output": "â …â â ‡â â â ˆâ ©â £â •â â ›â •â —â " }, { "input": "kamionnyi", "output": "â …â â â Šâ •â â «â Š" }, { "input": "kaparásszerű", "output": "â …â â â â —⠈⠎⠱⠑⠗⠾" }, { "input": "Kapolcs", "output": "⠨⠅â â â •⠇⠩" }, { "input": "KaposszekcsÅ‘", "output": "⠨⠅â â â •⠎⠱⠑⠅⠩⠻" }, { "input": "Kaposszerdahely", "output": "⠨⠅â â â •⠎⠱⠑⠗⠙â â “â ‘â ¸" }, { "input": "kapusszoba", "output": "â …â â â ¥â Žâ ±â •â ƒâ " }, { "input": "karosszék", "output": "â …â â —⠕⠎⠱⠡⠅" }, { "input": "kartácszápor", "output": "â …â â —⠞⠈⠩⠣⠈â â •â —" }, { "input": "kartonnyi", "output": "â …â â —â žâ •â â «â Š" }, { "input": "kasszék", "output": "â …â â Žâ ±â ¡â …" }, { "input": "katalógusszám", "output": "â …â â žâ â ‡â ªâ ›â ¥â Žâ ±â ˆâ " }, { "input": "katekizmusszerű", "output": "â …â â žâ ‘â …â Šâ £â â ¥â Žâ ±â ‘â —â ¾" }, { "input": "kattintásszám", "output": "â …â â žâ žâ Šâ â žâ ˆâ Žâ ±â ˆâ " }, { "input": "kavarásszerű", "output": "â …â â §â â —⠈⠎⠱⠑⠗⠾" }, { "input": "kavicsszerű ", "output": "â …â â §â Šâ ©â ±â ‘â —â ¾ " }, { "input": "kavicszápor", "output": "â …â â §â Šâ ©â £â ˆâ â •â —" }, { "input": "kavicszátony", "output": "â …â â §â Šâ ©â £â ˆâ žâ •â «" }, { "input": "kavicszuzalék", "output": "â …â â §â Šâ ©â £â ¥â £â â ‡â ¡â …" }, { "input": "kékesszürke", "output": "⠅⠡⠅⠑⠎⠱⠷⠗⠅⠑" }, { "input": "Kemenesszentmárton", "output": "⠨⠅⠑â â ‘â â ‘⠎⠱⠑â â žâ â ˆâ —â žâ •â " }, { "input": "Kemenesszentpéter", "output": "⠨⠅⠑â â ‘â â ‘⠎⠱⠑â â žâ â ¡â žâ ‘â —" }, { "input": "képmásszerű ", "output": "â …â ¡â â â ˆâ Žâ ±â ‘â —â ¾ " }, { "input": "képváltásszámot", "output": "â …â ¡â â §â ˆâ ‡â žâ ˆâ Žâ ±â ˆâ â •â ž" }, { "input": "képzésszerű ", "output": "â …â ¡â â £â ¡â Žâ ±â ‘â —â ¾ " }, { "input": "képzésszervezés", "output": "â …â ¡â â £â ¡â Žâ ±â ‘⠗⠧⠑⠣⠡⠎" }, { "input": "kerekesszék", "output": "⠅⠑⠗⠑⠅⠑⠎⠱⠡⠅" }, { "input": "keresésszolgáltató", "output": "⠅⠑⠗⠑⠎⠡⠎⠱⠕⠇⠛⠈⠇⠞â â žâ ª" }, { "input": "kérdészápor", "output": "⠅⠡⠗⠙⠡⠎⠣⠈â â •â —" }, { "input": "kérésszerűen", "output": "⠅⠡⠗⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "kerítésszaggató", "output": "⠅⠑⠗⠌⠞⠡⠎⠱â â ›â ›â â žâ ª" }, { "input": "késszúrás", "output": "⠅⠡⠎⠱⠬⠗⠈⠎" }, { "input": "ketreccsapda", "output": "⠅⠑⠞⠗⠑⠉⠩â â â ™â " }, { "input": "kevésszavú ", "output": "â …â ‘â §â ¡â Žâ ±â â §â ¬ " }, { "input": "kevésszer", "output": "⠅⠑⠧⠡⠎⠱⠑⠗" }, { "input": "kiadászárolás", "output": "â …â Šâ â ™â ˆâ Žâ £â ˆâ —⠕⠇⠈⠎" }, { "input": "kifejlesszem", "output": "⠅⠊⠋⠑⠚⠇⠑⠱⠱⠑â " }, { "input": "kihívásszerű", "output": "⠅⠊⠓⠌⠧⠈⠎⠱⠑⠗⠾" }, { "input": "kilenccsatorna", "output": "⠅⠊⠇⠑â â ‰â ©â â žâ •â —â â " }, { "input": "kilincszörgést ", "output": "⠅⠊⠇⠊â â ©â £â Ÿâ —⠛⠡⠎⠞ " }, { "input": "Kisszállás", "output": "⠨⠅⠊⠎⠱⠈⠇⠇⠈⠎" }, { "input": "kisszámú", "output": "⠅⠊⠎⠱⠈â â ¬" }, { "input": "Kisszeben", "output": "⠨⠅⠊⠎⠱⠑⠃⠑â " }, { "input": "kisszínes", "output": "⠅⠊⠎⠱⠌â â ‘â Ž" }, { "input": "kisszék", "output": "⠅⠊⠎⠱⠡⠅" }, { "input": "kisszekrény", "output": "⠅⠊⠎⠱⠑⠅⠗⠡⠫" }, { "input": "Kisszentmárton", "output": "⠨⠅⠊⠎⠱⠑â â žâ â ˆâ —â žâ •â " }, { "input": "kisszerű", "output": "⠅⠊⠎⠱⠑⠗⠾" }, { "input": "Kissziget", "output": "⠨⠅⠊⠎⠱⠊⠛⠑⠞" }, { "input": "kisszobában", "output": "⠅⠊⠎⠱⠕⠃⠈⠃â â " }, { "input": "kisszótár", "output": "⠅⠊⠎⠱⠪⠞⠈⠗" }, { "input": "Kiszombor", "output": "⠨⠅⠊⠎⠣⠕â â ƒâ •â —" }, { "input": "kisszövetkezet", "output": "⠅⠊⠎⠱⠟⠧⠑⠞⠅⠑⠣⠑⠞" }, { "input": "kiszögellésszerűen", "output": "⠅⠊⠱⠟⠛⠑⠇⠇⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "Kiszsidány", "output": "⠨⠅⠊⠎⠜⠊⠙⠈⠫" }, { "input": "kitörésszerű", "output": "⠅⠊⠞⠟⠗⠡⠎⠱⠑⠗⠾" }, { "input": "kitüntetésszalagokat", "output": "â …â Šâ žâ ·â â žâ ‘â žâ ¡â Žâ ±â â ‡â â ›â •â …â â ž" }, { "input": "kivégzésszerűen", "output": "⠅⠊⠧⠡⠛⠣⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "kliensszoftver", "output": "⠅⠇⠊⠑â â Žâ ±â •â ‹â žâ §â ‘â —" }, { "input": "kóccsomó", "output": "⠅⠪⠉⠩⠕â â ª" }, { "input": "kolbászoszsemle", "output": "⠅⠕⠇⠃⠈⠱⠕⠎⠜⠑â â ‡â ‘" }, { "input": "koldusszáj", "output": "⠅⠕⠇⠙⠥⠎⠱⠈⠚" }, { "input": "koldusszakáll", "output": "⠅⠕⠇⠙⠥⠎⠱â â …⠈⠇⠇" }, { "input": "koldusszegény", "output": "⠅⠕⠇⠙⠥⠎⠱⠑⠛⠡⠫" }, { "input": "kolduszene ", "output": "⠅⠕⠇⠙⠥⠎⠣⠑â â ‘ " }, { "input": "kommunikációsszoba", "output": "â …â •â â â ¥â â Šâ …⠈⠉⠊⠪⠎⠱⠕⠃â " }, { "input": "komposszesszor", "output": "â …â •â â â •⠱⠱⠑⠱⠱⠕⠗" }, { "input": "komposszesszorátus ", "output": "â …â •â â â •⠱⠱⠑⠱⠱⠕⠗⠈⠞⠥⠎ " }, { "input": "kormosszürke", "output": "â …â •â —â â •⠎⠱⠷⠗⠅⠑" }, { "input": "kosszarv", "output": "â …â •â Žâ ±â â —â §" }, { "input": "kosszem", "output": "⠅⠕⠎⠱⠑â " }, { "input": "kortárszenei", "output": "⠅⠕⠗⠞⠈⠗⠎⠣⠑â â ‘â Š" }, { "input": "kóruszene", "output": "⠅⠪⠗⠥⠎⠣⠑â â ‘" }, { "input": "köhögésszerű", "output": "⠅⠟⠓⠟⠛⠡⠎⠱⠑⠗⠾" }, { "input": "kölcsönnyakláncait", "output": "⠅⠟⠇⠩⠟â â «â â …⠇⠈â â ‰â â Šâ ž" }, { "input": "közlekedésszervezÅ‘k", "output": "⠅⠟⠣⠇⠑⠅⠑⠙⠡⠎⠱⠑⠗⠧⠑⠣⠻⠅" }, { "input": "kÅ‘művesszem", "output": "â …â »â â ¾â §â ‘⠎⠱⠑â " }, { "input": "kÅ‘művesszerszámait ", "output": "â …â »â â ¾â §â ‘⠎⠱⠑⠗⠱⠈â â â Šâ ž " }, { "input": "konstansszimbólumainak", "output": "â …â •â â Žâ žâ â â Žâ ±â Šâ â ƒâ ªâ ‡â ¥â â â Šâ â â …" }, { "input": "köntösszegély", "output": "â …â Ÿâ â žâ Ÿâ Žâ ±â ‘⠛⠡⠸" }, { "input": "könyöklésszéles", "output": "⠅⠟⠫⠟⠅⠇⠡⠎⠱⠡⠇⠑⠎" }, { "input": "könyvesszekrény", "output": "⠅⠟⠫⠧⠑⠎⠱⠑⠅⠗⠡⠫" }, { "input": "kÅ‘risszár", "output": "⠅⠻⠗⠊⠎⠱⠈⠗" }, { "input": "kÅ‘risszárat ", "output": "⠅⠻⠗⠊⠎⠱⠈⠗â â ž " }, { "input": "körösszakál", "output": "â …â Ÿâ —â Ÿâ Žâ ±â â …⠈⠇" }, { "input": "körösszakáli ", "output": "â …â Ÿâ —â Ÿâ Žâ ±â â …⠈⠇⠊ " }, { "input": "Köröszug", "output": "⠨⠅⠟⠗⠟⠎⠣⠥⠛" }, { "input": "kötelességgyakorlás", "output": "⠅⠟⠞⠑⠇⠑⠎⠎⠡⠛⠹â â …⠕⠗⠇⠈⠎" }, { "input": "közsáv", "output": "⠅⠟⠣⠎⠈⠧" }, { "input": "közsereg", "output": "⠅⠟⠣⠎⠑⠗⠑⠛" }, { "input": "kontaktusszám", "output": "â …â •â â žâ â …⠞⠥⠎⠱⠈â " }, { "input": "kudarcsorozat", "output": "⠅⠥⠙â â —⠉⠎⠕⠗⠕⠣â â ž" }, { "input": "kulcszörgés", "output": "⠅⠥⠇⠩⠣⠟⠗⠛⠡⠎" }, { "input": "kuplunggyár", "output": "â …â ¥â â ‡â ¥â â ›â ¹â ˆâ —" }, { "input": "kurucság", "output": "⠅⠥⠗⠥⠉⠎⠈⠛" }, { "input": "küldetésszaga", "output": "⠅⠷⠇⠙⠑⠞⠡⠎⠱â â ›â " }, { "input": "különcség", "output": "⠅⠷⠇⠟â â ‰â Žâ ¡â ›" }, { "input": "különnyíló", "output": "⠅⠷⠇⠟â â «â Œâ ‡â ª" }, { "input": "labirintusszerű", "output": "â ‡â â ƒâ Šâ —â Šâ â žâ ¥â Žâ ±â ‘â —â ¾" }, { "input": "lakásszentelÅ‘", "output": "â ‡â â …⠈⠎⠱⠑â â žâ ‘⠇⠻" }, { "input": "lakásszövetkezet", "output": "â ‡â â …⠈⠎⠱⠟⠧⠑⠞⠅⠑⠣⠑⠞" }, { "input": "lakásszerzÅ‘k", "output": "â ‡â â …⠈⠎⠱⠑⠗⠣⠻⠅" }, { "input": "lakosszám", "output": "â ‡â â …⠕⠎⠱⠈â " }, { "input": "lánccsörgés ", "output": "⠇⠈â â ‰â ©â Ÿâ —⠛⠡⠎ " }, { "input": "láncszem", "output": "⠇⠈â â ‰â ±â ‘â " }, { "input": "lánggyújtogató", "output": "⠇⠈â â ›â ¹â ¬â šâ žâ •â ›â â žâ ª" }, { "input": "laposszárú", "output": "â ‡â â â •⠎⠱⠈⠗⠬" }, { "input": "látásszög", "output": "⠇⠈⠞⠈⠎⠱⠟⠛" }, { "input": "látászavar", "output": "⠇⠈⠞⠈⠎⠣â â §â â —" }, { "input": "látomásszerű", "output": "⠇⠈⠞⠕â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "lazaccsontváz", "output": "â ‡â â £â â ‰â ©â •â â žâ §â ˆâ £" }, { "input": "lázsebességgel", "output": "⠇⠈⠣⠎⠑⠃⠑⠎⠎⠡⠛⠛⠑⠇" }, { "input": "lázsóhajtás", "output": "⠇⠈⠣⠎⠪⠓â â šâ žâ ˆâ Ž" }, { "input": "lebegésszerű", "output": "⠇⠑⠃⠑⠛⠡⠎⠱⠑⠗⠾" }, { "input": "léggyök", "output": "⠇⠡⠛⠹⠟⠅" }, { "input": "léggyökér ", "output": "⠇⠡⠛⠹⠟⠅⠡⠗ " }, { "input": "lejtésszög", "output": "⠇⠑⠚⠞⠡⠎⠱⠟⠛" }, { "input": "lejtésszöge", "output": "⠇⠑⠚⠞⠡⠎⠱⠟⠛⠑" }, { "input": "lesszabály", "output": "⠇⠑⠎⠱â â ƒâ ˆâ ¸" }, { "input": "lemezstúdió", "output": "⠇⠑â â ‘⠣⠎⠞⠬⠙⠊⠪" }, { "input": "lengésszabály", "output": "⠇⠑â â ›â ¡â Žâ ±â â ƒâ ˆâ ¸" }, { "input": "lexikonnyi", "output": "⠇⠑⠭⠊⠅⠕â â «â Š" }, { "input": "légzésszám", "output": "⠇⠡⠛⠣⠡⠎⠱⠈â " }, { "input": "légzésszerű", "output": "⠇⠡⠛⠣⠡⠎⠱⠑⠗⠾" }, { "input": "légzészavar", "output": "⠇⠡⠛⠣⠡⠎⠣â â §â â —" }, { "input": "lépcsÅ‘sszárnyú", "output": "⠇⠡â â ©â »â Žâ ±â ˆâ —â «â ¬" }, { "input": "lépésszám", "output": "⠇⠡â â ¡â Žâ ±â ˆâ " }, { "input": "lépészaj ", "output": "⠇⠡â â ¡â Žâ £â â š " }, { "input": "léptennyomon", "output": "⠇⠡â â žâ ‘â â «â •â â •â " }, { "input": "levesszag", "output": "⠇⠑⠧⠑⠎⠱â â ›" }, { "input": "levesszagot", "output": "⠇⠑⠧⠑⠎⠱â â ›â •â ž" }, { "input": "levesszedÅ‘", "output": "⠇⠑⠧⠑⠎⠱⠑⠙⠻" }, { "input": "liberty", "output": "⠇⠊⠃⠑⠗⠞⠽" }, { "input": "licenccsalád ", "output": "⠇⠊⠉⠑â â ‰â ©â â ‡â ˆâ ™ " }, { "input": "licencsértés", "output": "⠇⠊⠉⠑â â ‰â Žâ ¡â —â žâ ¡â Ž" }, { "input": "liszteszacskó", "output": "⠇⠊⠱⠞⠑⠎⠣â â ©â …â ª" }, { "input": "loggyűjtemény", "output": "⠇⠕⠛⠹⠾⠚⠞⠑â â ¡â «" }, { "input": "lovasszázad", "output": "⠇⠕⠧â â Žâ ±â ˆâ £â â ™" }, { "input": "lovasszekeret ", "output": "⠇⠕⠧â â Žâ ±â ‘â …â ‘â —â ‘â ž " }, { "input": "lökésszám", "output": "⠇⠟⠅⠡⠎⠱⠈â " }, { "input": "lökésszerű ", "output": "⠇⠟⠅⠡⠎⠱⠑⠗⠾ " }, { "input": "lÅ‘porosszekér", "output": "⠇⠻â â •⠗⠕⠎⠱⠑⠅⠡⠗" }, { "input": "lÅ‘porosszekerek", "output": "⠇⠻â â •⠗⠕⠎⠱⠑⠅⠑⠗⠑⠅" }, { "input": "lÅ‘résszerű", "output": "⠇⠻⠗⠡⠎⠱⠑⠗⠾" }, { "input": "lugasszerű", "output": "⠇⠥⠛â â Žâ ±â ‘â —â ¾" }, { "input": "luxusszálloda", "output": "⠇⠥⠭⠥⠎⠱⠈⠇⠇⠕⠙â " }, { "input": "macskakaparásszerű ", "output": "â â â ©â …â â …â â â â —⠈⠎⠱⠑⠗⠾ " }, { "input": "magánnyelvmesterek", "output": "â â â ›â ˆâ â «â ‘⠇⠧â â ‘â Žâ žâ ‘â —â ‘â …" }, { "input": "magánnyaralók", "output": "â â â ›â ˆâ â «â â —â â ‡â ªâ …" }, { "input": "magánnyugdíjpénztár", "output": "â â â ›â ˆâ â «â ¥â ›â ™â Œâ šâ â ¡â â £â žâ ˆâ —" }, { "input": "magasszárú", "output": "â â â ›â â Žâ ±â ˆâ —â ¬" }, { "input": "maggyűjteményrÅ‘l", "output": "â â â ›â ¹â ¾â šâ žâ ‘â â ¡â «â —⠻⠇" }, { "input": "mágnásszámba", "output": "â â ˆâ ›â â ˆâ Žâ ±â ˆâ â ƒâ " }, { "input": "mágnesszalag", "output": "â â ˆâ ›â â ‘â Žâ ±â â ‡â â ›" }, { "input": "mágnesszerű", "output": "â â ˆâ ›â â ‘⠎⠱⠑⠗⠾" }, { "input": "mágneszár", "output": "â â ˆâ ›â â ‘⠎⠣⠈⠗" }, { "input": "malacság", "output": "â â â ‡â â ‰â Žâ ˆâ ›" }, { "input": "malacsült ", "output": "â â â ‡â â ‰â Žâ ·â ‡â ž " }, { "input": "málhásszekér", "output": "â â ˆâ ‡â “⠈⠎⠱⠑⠅⠡⠗" }, { "input": "málhásszekereiket ", "output": "â â ˆâ ‡â “⠈⠎⠱⠑⠅⠑⠗⠑⠊⠅⠑⠞ " }, { "input": "mandarinnyelv", "output": "â â â â ™â â —â Šâ â «â ‘⠇⠧" }, { "input": "Marosszék", "output": "â ¨â â â —⠕⠎⠱⠡⠅" }, { "input": "Marosszentgyörgy ", "output": "â ¨â â â —⠕⠎⠱⠑â â žâ ¹â Ÿâ —â ¹ " }, { "input": "Maroszug", "output": "â ¨â â â —⠕⠎⠣⠥⠛" }, { "input": "Martraversszal", "output": "â ¨â â â —â žâ —â â §â ‘⠗⠱⠱â â ‡" }, { "input": "matracsor", "output": "â â â žâ —â â ‰â Žâ •â —" }, { "input": "másszínű", "output": "â â ˆâ Žâ ±â Œâ â ¾" }, { "input": "másszor", "output": "â â ˆâ Žâ ±â •â —" }, { "input": "másszóval", "output": "â â ˆâ Žâ ±â ªâ §â â ‡" }, { "input": "másszÅ‘rűek", "output": "â â ˆâ Žâ ±â »â —⠾⠑⠅" }, { "input": "mécsesszem", "output": "â â ¡â ©â ‘⠎⠱⠑â " }, { "input": "medresszék", "output": "â â ‘⠙⠗⠑⠎⠱⠡⠅" }, { "input": "megfázásszerű", "output": "â â ‘⠛⠋⠈⠣⠈⠎⠱⠑⠗⠾" }, { "input": "meggybefÅ‘tt", "output": "â â ‘⠹⠹⠃⠑⠋⠻⠞⠞" }, { "input": "meggyel", "output": "â â ‘⠹⠹⠑⠇" }, { "input": "meggyen", "output": "â â ‘⠹⠹⠑â " }, { "input": "meggyes", "output": "â â ‘⠹⠹⠑⠎" }, { "input": "Meggyesi", "output": "â ¨â â ‘⠹⠹⠑⠎⠊" }, { "input": "meggyet", "output": "â â ‘⠹⠹⠑⠞" }, { "input": "meggyfa", "output": "â â ‘⠹⠹⠋â " }, { "input": "meggyhez", "output": "â â ‘⠹⠹⠓⠑⠣" }, { "input": "meggyízű", "output": "â â ‘⠹⠹⠌⠣⠾" }, { "input": "meggyként", "output": "â â ‘⠹⠹⠅⠡â â ž" }, { "input": "meggylekvár", "output": "â â ‘⠹⠹⠇⠑⠅⠧⠈⠗" }, { "input": "meggymag", "output": "â â ‘⠹⠹â â â ›" }, { "input": "meggynek", "output": "â â ‘⠹⠹â â ‘â …" }, { "input": "meggypiros", "output": "â â ‘⠹⠹â â Šâ —â •â Ž" }, { "input": "meggysör", "output": "â â ‘⠹⠹⠎⠟⠗" }, { "input": "meggyszín", "output": "â â ‘⠹⠹⠱⠌â " }, { "input": "meggytÅ‘l", "output": "â â ‘⠹⠹⠞⠻⠇" }, { "input": "meggytÅ‘l", "output": "â â ‘⠹⠹⠞⠻⠇" }, { "input": "meggyvörös", "output": "â â ‘⠹⠹⠧⠟⠗⠟⠎" }, { "input": "meggyzÅ‘", "output": "â â ‘⠹⠹⠣⠻" }, { "input": "meglepetésszoftver", "output": "â â ‘⠛⠇⠑â â ‘⠞⠡⠎⠱⠕⠋⠞⠧⠑⠗" }, { "input": "méhesszín", "output": "â â ¡â “⠑⠎⠱⠌â " }, { "input": "méhesszínben ", "output": "â â ¡â “⠑⠎⠱⠌â â ƒâ ‘â  " }, { "input": "ménesszárnyékok", "output": "â â ¡â â ‘⠎⠱⠈⠗⠫⠡⠅⠕⠅" }, { "input": "méreggyökeret", "output": "â â ¡â —⠑⠛⠹⠟⠅⠑⠗⠑⠞" }, { "input": "méreggyökérré", "output": "â â ¡â —⠑⠛⠹⠟⠅⠡⠗⠗⠡" }, { "input": "méreggyümölccsé ", "output": "â â ¡â —⠑⠛⠹⠷â â Ÿâ ‡â ©â ©â ¡ " }, { "input": "mérkÅ‘zésszervezÅ‘", "output": "â â ¡â —⠅⠻⠣⠡⠎⠱⠑⠗⠧⠑⠣⠻" }, { "input": "mérleggyár", "output": "â â ¡â —⠇⠑⠛⠹⠈⠗" }, { "input": "meszesszürke", "output": "â â ‘⠱⠑⠎⠱⠷⠗⠅⠑" }, { "input": "mézsárga", "output": "â â ¡â £â Žâ ˆâ —â ›â " }, { "input": "mézser", "output": "â â ¡â £â Žâ ‘â —" }, { "input": "mézsör", "output": "â â ¡â £â Žâ Ÿâ —" }, { "input": "Mikosszéplak", "output": "â ¨â â Šâ …⠕⠎⠱⠡â â ‡â â …" }, { "input": "mikulásszerkó", "output": "â â Šâ …⠥⠇⠈⠎⠱⠑⠗⠅⠪" }, { "input": "mikrofonnyílás", "output": "â â Šâ …â —â •â ‹â •â â «â Œâ ‡â ˆâ Ž" }, { "input": "mikronnyi", "output": "â â Šâ …â —â •â â «â Š" }, { "input": "mitesszer", "output": "â â Šâ žâ ‘⠱⠱⠑⠗" }, { "input": "mitugrásszal", "output": "â â Šâ žâ ¥â ›â —⠈⠱⠱â â ‡" }, { "input": "mohaszöld", "output": "â â •â “â â Žâ £â Ÿâ ‡â ™" }, { "input": "molosszer", "output": "â â •⠇⠕⠱⠱⠑⠗" }, { "input": "mókusszerű ", "output": "â â ªâ …⠥⠎⠱⠑⠗⠾ " }, { "input": "mókusszÅ‘r", "output": "â â ªâ …⠥⠎⠱⠻⠗" }, { "input": "motorosszán", "output": "â â •⠞⠕⠗⠕⠎⠱⠈â " }, { "input": "mozgásszerű", "output": "â â •⠣⠛⠈⠎⠱⠑⠗⠾" }, { "input": "mozgászavar", "output": "â â •⠣⠛⠈⠎⠣â â §â â —" }, { "input": "munkásszálló", "output": "â â ¥â â …⠈⠎⠱⠈⠇⠇⠪" }, { "input": "muzsikusszem", "output": "â â ¥â œâ Šâ …⠥⠎⠱⠑â " }, { "input": "műjéggyár", "output": "â â ¾â šâ ¡â ›â ¹â ˆâ —" }, { "input": "működészavar ", "output": "â â ¾â …⠟⠙⠡⠎⠣â â §â â — " }, { "input": "művelÅ‘désszervezÅ‘", "output": "â â ¾â §â ‘⠇⠻⠙⠡⠎⠱⠑⠗⠧⠑⠣⠻" }, { "input": "nyálasszájú", "output": "⠫⠈⠇â â Žâ ±â ˆâ šâ ¬" }, { "input": "nászutazásszerű ", "output": "â â ˆâ ±â ¥â žâ â £â ˆâ Žâ ±â ‘â —â ¾ " }, { "input": "nedvesszürke", "output": "â â ‘⠙⠧⠑⠎⠱⠷⠗⠅⠑" }, { "input": "négyzetyard", "output": "â â ¡â ¹â £â ‘â žâ ½â â —â ™" }, { "input": "nehézség", "output": "â â ‘⠓⠡⠣⠎⠡⠛" }, { "input": "nehézsúlyú", "output": "â â ‘⠓⠡⠣⠎⠬⠸⠬" }, { "input": "Nemesszalók", "output": "â ¨â â ‘â â ‘â Žâ ±â â ‡â ªâ …" }, { "input": "Nemesszentandrás", "output": "â ¨â â ‘â â ‘⠎⠱⠑â â žâ â â ™â —⠈⠎" }, { "input": "nemesszÅ‘rme", "output": "â â ‘â â ‘⠎⠱⠻⠗â â ‘" }, { "input": "nemezsapka", "output": "â â ‘â â ‘⠣⠎â â â …â " }, { "input": "nemezsapkát", "output": "â â ‘â â ‘⠣⠎â â â …⠈⠞" }, { "input": "nemezsátor ", "output": "â â ‘â â ‘⠣⠎⠈⠞⠕⠗ " }, { "input": "nercstóla", "output": "â â ‘⠗⠉⠎⠞⠪⠇â " }, { "input": "népességgyarapodás", "output": "â â ¡â â ‘⠎⠎⠡⠛⠹â â —â â â •⠙⠈⠎" }, { "input": "neutronnyalábokat", "output": "â â ‘⠥⠞⠗⠕â â «â â ‡â ˆâ ƒâ •â …â â ž" }, { "input": "nyargonccsizma", "output": "â «â â —⠛⠕â â ‰â ©â Šâ £â â " }, { "input": "nyereggyártók", "output": "⠫⠑⠗⠑⠛⠹⠈⠗⠞⠪⠅" }, { "input": "nyikkanásszerű", "output": "â «â Šâ …â …â â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "nyilasszervezet", "output": "â «â Šâ ‡â â Žâ ±â ‘⠗⠧⠑⠣⠑⠞" }, { "input": "nyílászáró", "output": "⠫⠌⠇⠈⠎⠣⠈⠗⠪" }, { "input": "nyolcvannyolc", "output": "⠫⠕⠇⠉⠧â â â «â •⠇⠉" }, { "input": "nyolccsatornás ", "output": "⠫⠕⠇⠉⠩â â žâ •â —â â ˆâ Ž " }, { "input": "nyolcsebességes", "output": "⠫⠕⠇⠉⠎⠑⠃⠑⠎⠎⠡⠛⠑⠎" }, { "input": "nyomásszabályzó", "output": "â «â •â â ˆâ Žâ ±â â ƒâ ˆâ ¸â £â ª" }, { "input": "nyomásszerű", "output": "â «â •â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "nyomásszinten", "output": "â «â •â â ˆâ Žâ ±â Šâ â žâ ‘â " }, { "input": "oktatásszociológiai", "output": "â •â …â žâ â žâ ˆâ Žâ ±â •⠉⠊⠕⠇⠪⠛⠊â â Š" }, { "input": "ordasszÅ‘rű", "output": "â •â —â ™â â Žâ ±â »â —â ¾" }, { "input": "orgazmusszerű", "output": "â •â —â ›â â £â â ¥â Žâ ±â ‘â —â ¾" }, { "input": "óriásszalamandra", "output": "⠪⠗⠊⠈⠎⠱â â ‡â â â â â ™â —â " }, { "input": "oroszlánnyom", "output": "⠕⠗⠕⠱⠇⠈â â «â •â " }, { "input": "orvosszakértÅ‘", "output": "â •â —â §â •â Žâ ±â â …â ¡â —â žâ »" }, { "input": "orvosszázados", "output": "⠕⠗⠧⠕⠎⠱⠈⠣â â ™â •â Ž" }, { "input": "orvosszemély", "output": "⠕⠗⠧⠕⠎⠱⠑â â ¡â ¸" }, { "input": "orvosszereikkel", "output": "⠕⠗⠧⠕⠎⠱⠑⠗⠑⠊⠅⠅⠑⠇" }, { "input": "orvosszerű", "output": "⠕⠗⠧⠕⠎⠱⠑⠗⠾" }, { "input": "orvosszövetség", "output": "⠕⠗⠧⠕⠎⠱⠟⠧⠑⠞⠎⠡⠛" }, { "input": "óceánnyi", "output": "⠪⠉⠑⠈â â «â Š" }, { "input": "óvodásszintű", "output": "⠪⠧⠕⠙⠈⠎⠱⠊â â žâ ¾" }, { "input": "ökrösszekér", "output": "⠟⠅⠗⠟⠎⠱⠑⠅⠡⠗" }, { "input": "önállásszerű", "output": "â Ÿâ â ˆâ ‡â ‡â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "önnyomása", "output": "â Ÿâ â «â •â â ˆâ Žâ " }, { "input": "önnyomatú ", "output": "â Ÿâ â «â •â â â žâ ¬ " }, { "input": "önnyugdíjazását", "output": "â Ÿâ â «â ¥â ›â ™â Œâ šâ â £â ˆâ Žâ ˆâ ž" }, { "input": "örökséggyűjteményben", "output": "⠟⠗⠟⠅⠎⠡⠛⠹⠾⠚⠞⠑â â ¡â «â ƒâ ‘â " }, { "input": "örvénylésszerű", "output": "⠟⠗⠧⠡⠫⠇⠡⠎⠱⠑⠗⠾" }, { "input": "Å‘sszármazású ", "output": "⠻⠎⠱⠈⠗â â â £â ˆâ Žâ ¬ " }, { "input": "Å‘sszékelyek", "output": "⠻⠎⠱⠡⠅⠑⠸⠑⠅" }, { "input": "összekéregetett", "output": "⠟⠱⠱⠑⠅⠡⠗⠑⠛⠑⠞⠑⠞⠞" }, { "input": "összekéregettek", "output": "⠟⠱⠱⠑⠅⠡⠗⠑⠛⠑⠞⠞⠑⠅" }, { "input": "összekeresgélt", "output": "⠟⠱⠱⠑⠅⠑⠗⠑⠎⠛⠡⠇⠞" }, { "input": "Å‘sszel", "output": "⠻⠱⠱⠑⠇" }, { "input": "Å‘sszellem", "output": "⠻⠎⠱⠑⠇⠇⠑â " }, { "input": "ötvösszakmai", "output": "â Ÿâ žâ §â Ÿâ Žâ ±â â …â â â Š" }, { "input": "Å‘zsebesen", "output": "⠻⠣⠎⠑⠃⠑⠎⠑â " }, { "input": "Å‘zsörét", "output": "⠻⠣⠎⠟⠗⠡⠞" }, { "input": "Å‘zsuta", "output": "⠻⠣⠎⠥⠞â " }, { "input": "padlásszoba", "output": "â â â ™â ‡â ˆâ Žâ ±â •â ƒâ " }, { "input": "padlászugoly", "output": "â â â ™â ‡â ˆâ Žâ £â ¥â ›â •â ¸" }, { "input": "palócság", "output": "â â â ‡â ªâ ‰â Žâ ˆâ ›" }, { "input": "papirosszeletre", "output": "â â â â Šâ —⠕⠎⠱⠑⠇⠑⠞⠗⠑" }, { "input": "paprikásszalonna-bazár", "output": "â â â â —⠊⠅⠈⠎⠱â â ‡â •â â â â ¤â ƒâ â £â ˆâ —" }, { "input": "papucszápor", "output": "â â â â ¥â ©â £â ˆâ â •â —" }, { "input": "párnásszék", "output": "â â ˆâ —â â ˆâ Žâ ±â ¡â …" }, { "input": "pátosszal", "output": "â â ˆâ žâ •⠱⠱â â ‡" }, { "input": "pedagógusszervezet", "output": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â ‘⠗⠧⠑⠣⠑⠞" }, { "input": "pedagógusszobába", "output": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â •⠃⠈⠃â " }, { "input": "pedagógusszövetség", "output": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â Ÿâ §â ‘â žâ Žâ ¡â ›" }, { "input": "pedagógussztrájk", "output": "â â ‘â ™â â ›â ªâ ›â ¥â Žâ ±â žâ —⠈⠚⠅" }, { "input": "pénzeszacskó", "output": "â â ¡â â £â ‘â Žâ £â â ©â …â ª" }, { "input": "pénzeszközök", "output": "â â ¡â â £â ‘⠱⠅⠟⠣⠟⠅" }, { "input": "pénzeszsák", "output": "â â ¡â â £â ‘⠎⠜⠈⠅" }, { "input": "pénzzsidóságban ", "output": "â â ¡â â £â œâ Šâ ™â ªâ Žâ ˆâ ›â ƒâ â  " }, { "input": "pénzsegély", "output": "â â ¡â â £â Žâ ‘⠛⠡⠸" }, { "input": "pénzsorozat", "output": "â â ¡â â £â Žâ •â —â •â £â â ž" }, { "input": "pénzsóvár", "output": "â â ¡â â £â Žâ ªâ §â ˆâ —" }, { "input": "pénzszűke", "output": "â â ¡â â £â ±â ¾â …â ‘" }, { "input": "perecsütÅ‘nÅ‘", "output": "â â ‘⠗⠑⠉⠎⠷⠞⠻â â »" }, { "input": "pergamennyaláb", "output": "â â ‘â —â ›â â â ‘â â «â â ‡â ˆâ ƒ" }, { "input": "periódusszámának", "output": "â â ‘⠗⠊⠪⠙⠥⠎⠱⠈â â ˆâ â â …" }, { "input": "piaccsarnok", "output": "â â Šâ â ‰â ©â â —â â •â …" }, { "input": "Pilisszántó,", "output": "â ¨â â Šâ ‡â Šâ Žâ ±â ˆâ â žâ ªâ ‚" }, { "input": "Pilisszentkereszt", "output": "â ¨â â Šâ ‡â Šâ Žâ ±â ‘â â žâ …⠑⠗⠑⠱⠞" }, { "input": "pirítósszeleteken", "output": "â â Šâ —⠌⠞⠪⠎⠱⠑⠇⠑⠞⠑⠅⠑â " }, { "input": "pirosszem", "output": "â â Šâ —⠕⠎⠱⠑â " }, { "input": "piroszászlós", "output": "â â Šâ —⠕⠎⠣⠈⠱⠇⠪⠎" }, { "input": "piszkosszÅ‘ke", "output": "â â Šâ ±â …⠕⠎⠱⠻⠅⠑" }, { "input": "piszkosszürke ", "output": "â â Šâ ±â …⠕⠎⠱⠷⠗⠅⠑ " }, { "input": "piszkoszöld", "output": "â â Šâ ±â …⠕⠎⠣⠟⠇⠙" }, { "input": "pisztolylövésszerűen", "output": "â â Šâ ±â žâ •⠸⠇⠟⠧⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "playstationnyi", "output": "â â ‡â â ½â Žâ žâ â žâ Šâ •â â «â Š" }, { "input": "plüsszerű", "output": "â â ‡â ·â Žâ ±â ‘â —â ¾" }, { "input": "plüsszsák", "output": "â â ‡â ·â Žâ Žâ œâ ˆâ …" }, { "input": "plüsszsiráf ", "output": "â â ‡â ·â Žâ Žâ œâ Šâ —⠈⠋ " }, { "input": "plüsszsölyét", "output": "â â ‡â ·â Žâ Žâ œâ Ÿâ ¸â ¡â ž" }, { "input": "pokróccsík", "output": "â â •⠅⠗⠪⠉⠩⠌⠅" }, { "input": "polcsor", "output": "â â •⠇⠉⠎⠕⠗" }, { "input": "policájkomisszér", "output": "â â •⠇⠊⠉⠈⠚⠅⠕â â Šâ ±â ±â ¡â —" }, { "input": "porcsérülés", "output": "â â •⠗⠉⠎⠡⠗⠷⠇⠡⠎" }, { "input": "porcelánnyúl", "output": "â â •⠗⠉⠑⠇⠈â â «â ¬â ‡" }, { "input": "portásszoba", "output": "â â •⠗⠞⠈⠎⠱⠕⠃â " }, { "input": "postásszakszervezet", "output": "â â •⠎⠞⠈⠎⠱â â …⠱⠑⠗⠧⠑⠣⠑⠞" }, { "input": "postássztrájk", "output": "â â •⠎⠞⠈⠎⠱⠞⠗⠈⠚⠅" }, { "input": "pólusszámhoz", "output": "â â ªâ ‡â ¥â Žâ ±â ˆâ â “â •â £" }, { "input": "precízség", "output": "â â —⠑⠉⠌⠣⠎⠡⠛" }, { "input": "présszerű", "output": "â â —⠡⠎⠱⠑⠗⠾" }, { "input": "priamossza", "output": "â â —â Šâ â â •⠱⠱â " }, { "input": "princséged", "output": "â â —â Šâ â ‰â Žâ ¡â ›â ‘â ™" }, { "input": "proggyak", "output": "â â —⠕⠛⠹â â …" }, { "input": "protonnyalábok", "output": "â â —â •â žâ •â â «â â ‡â ˆâ ƒâ •â …" }, { "comment": [ "this testcase look begcaps opcode working if a word containing both lowercase and uppercase letters" ], "input": "PSZÃF-összevonást", "output": "⠨⠨â â ±â ˆâ ‹â ¤â Ÿâ ±â ±â ‘â §â •â â ˆâ Žâ ž" }, { "input": "pszichológusszövetség", "output": "â â ±â Šâ ‰â “⠕⠇⠪⠛⠥⠎⠱⠟⠧⠑⠞⠎⠡⠛" }, { "input": "pulzusszám", "output": "â â ¥â ‡â £â ¥â Žâ ±â ˆâ " }, { "input": "puskásszakasz", "output": "â â ¥â Žâ …⠈⠎⠱â â …â â ±" }, { "input": "puskásszázad", "output": "â â ¥â Žâ …⠈⠎⠱⠈⠣â â ™" }, { "input": "puskászászlóalj ", "output": "â â ¥â Žâ …⠈⠎⠣⠈⠱⠇⠪â â ‡â š " }, { "input": "rajzsablon", "output": "â —â â šâ £â Žâ â ƒâ ‡â •â " }, { "input": "rajzsarok", "output": "â —â â šâ £â Žâ â —â •â …" }, { "input": "rajzsarkot", "output": "â —â â šâ £â Žâ â —â …â •â ž" }, { "input": "rajzsorozatban", "output": "â —â â šâ £â Žâ •â —â •â £â â žâ ƒâ â " }, { "input": "rácság", "output": "⠗⠈⠉⠎⠈⠛" }, { "input": "rádiósszoba", "output": "⠗⠈⠙⠊⠪⠎⠱⠕⠃â " }, { "input": "rakásszámra", "output": "â —â â …⠈⠎⠱⠈â â —â " }, { "input": "Rákosszentmihály", "output": "⠨⠗⠈⠅⠕⠎⠱⠑â â žâ â Šâ “⠈⠸" }, { "input": "rándulásszerűen", "output": "â —â ˆâ â ™â ¥â ‡â ˆâ Žâ ±â ‘⠗⠾⠑â " }, { "input": "rántásszag", "output": "â —â ˆâ â žâ ˆâ Žâ ±â â ›" }, { "input": "rántásszerű ", "output": "â —â ˆâ â žâ ˆâ Žâ ±â ‘â —â ¾ " }, { "input": "realitásszagú", "output": "â —â ‘â â ‡â Šâ žâ ˆâ Žâ ±â â ›â ¬" }, { "input": "realityműsora", "output": "â —â ‘â â ‡â Šâ žâ ½â â ¾â Žâ •â —â " }, { "input": "recésszárú", "output": "⠗⠑⠉⠡⠎⠱⠈⠗⠬" }, { "input": "régiséggyűjtÅ‘", "output": "⠗⠡⠛⠊⠎⠡⠛⠹⠾⠚⠞⠻" }, { "input": "rémisszétek", "output": "â —â ¡â â Šâ ±â ±â ¡â žâ ‘â …" }, { "input": "részárás", "output": "⠗⠡⠎⠣⠈⠗⠈⠎" }, { "input": "rendelkezésszerű", "output": "â —â ‘â â ™â ‘⠇⠅⠑⠣⠡⠎⠱⠑⠗⠾" }, { "input": "repülésszerű", "output": "â —â ‘â â ·â ‡â ¡â Žâ ±â ‘â —â ¾" }, { "input": "repülÅ‘sszárny", "output": "â —â ‘â â ·â ‡â »â Žâ ±â ˆâ —â «" }, { "input": "rézsut", "output": "⠗⠡⠜⠥⠞" }, { "input": "ricinusszerű", "output": "⠗⠊⠉⠊â â ¥â Žâ ±â ‘â —â ¾" }, { "input": "ritkasággyűjtÅ‘", "output": "â —â Šâ žâ …â â Žâ ˆâ ›â ¹â ¾â šâ žâ »" }, { "input": "ritmusszabályozó", "output": "â —â Šâ žâ â ¥â Žâ ±â â ƒâ ˆâ ¸â •⠣⠪" }, { "input": "ritmuszavar", "output": "â —â Šâ žâ â ¥â Žâ £â â §â â —" }, { "input": "rizszabálókat", "output": "⠗⠊⠜⠣â â ƒâ ˆâ ‡â ªâ …â â ž" }, { "input": "robbanásszerű", "output": "⠗⠕⠃⠃â â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "robbanászajt", "output": "⠗⠕⠃⠃â â â ˆâ Žâ £â â šâ ž" }, { "input": "rongyosszélű", "output": "â —â •â â ¹â •⠎⠱⠡⠇⠾" }, { "input": "rosszemlékű", "output": "⠗⠕⠱⠱⠑â â ‡â ¡â …â ¾" }, { "input": "rothadásszag", "output": "â —â •â žâ “â â ™â ˆâ Žâ ±â â ›" }, { "input": "rovásszerűen", "output": "⠗⠕⠧⠈⠎⠱⠑⠗⠾⠑â " }, { "input": "rózsásszÅ‘kés", "output": "⠗⠪⠜⠈⠎⠱⠻⠅⠡⠎" }, { "input": "rozszabálás", "output": "⠗⠕⠜⠣â â ƒâ ˆâ ‡â ˆâ Ž" }, { "input": "rubinnyaklánc", "output": "⠗⠥⠃⠊â â «â â …⠇⠈â â ‰" }, { "input": "ruhásszekrény", "output": "⠗⠥⠓⠈⠎⠱⠑⠅⠗⠡⠫" }, { "input": "ruhásszobámé", "output": "⠗⠥⠓⠈⠎⠱⠕⠃⠈â â ¡" }, { "input": "rúzsosszájú", "output": "⠗⠬⠜⠕⠎⠱⠈⠚⠬" }, { "input": "sárgásszínű", "output": "⠎⠈⠗⠛⠈⠎⠱⠌â â ¾" }, { "input": "sasszárnyú", "output": "â Žâ â Žâ ±â ˆâ —â «â ¬" }, { "input": "sasszeg", "output": "â Žâ â Žâ ±â ‘â ›" }, { "input": "sásszéna", "output": "⠎⠈⠎⠱⠡â â " }, { "input": "sásszerű ", "output": "⠎⠈⠎⠱⠑⠗⠾ " }, { "input": "sasszömöd", "output": "â Žâ â Žâ ±â Ÿâ â Ÿâ ™" }, { "input": "sátáncsapat", "output": "⠎⠈⠞⠈â â ©â â â â ž" }, { "input": "szalaggyakorlatát", "output": "â ±â â ‡â â ›â ¹â â …â •â —â ‡â â žâ ˆâ ž" }, { "input": "szalaggyűjtemény", "output": "â ±â â ‡â â ›â ¹â ¾â šâ žâ ‘â â ¡â «" }, { "input": "szeggyár", "output": "⠱⠑⠛⠹⠈⠗" }, { "input": "selymesszÅ‘ke", "output": "â Žâ ‘â ¸â â ‘⠎⠱⠻⠅⠑" }, { "input": "sereggyűjtés", "output": "⠎⠑⠗⠑⠛⠹⠾⠚⠞⠡⠎" }, { "input": "sertésszelet", "output": "⠎⠑⠗⠞⠡⠎⠱⠑⠇⠑⠞" }, { "input": "sertésszűzpecsenyére", "output": "⠎⠑⠗⠞⠡⠎⠱⠾⠣â â ‘â ©â ‘â «â ¡â —â ‘" }, { "input": "sertészsír", "output": "⠎⠑⠗⠞⠡⠎⠜⠌⠗" }, { "input": "szénnyomokat", "output": "⠱⠡â â «â •â â •â …â â ž" }, { "input": "szociálisszálláshely-program", "output": "⠱⠕⠉⠊⠈⠇⠊⠎⠱⠈⠇⠇⠈⠎⠓⠑⠸⠤â â —⠕⠛⠗â â " }, { "input": "sonkásszelet", "output": "â Žâ •â â …⠈⠎⠱⠑⠇⠑⠞" }, { "input": "sonkásszerű ", "output": "â Žâ •â â …⠈⠎⠱⠑⠗⠾ " }, { "input": "sonkászsemle", "output": "â Žâ •â â …⠈⠎⠜⠑â â ‡â ‘" }, { "input": "sorscsapásszerű,", "output": "â Žâ •â —â Žâ ©â â â ˆâ Žâ ±â ‘⠗⠾⠂" }, { "input": "spanyolmeggyen", "output": "â Žâ â â «â •â ‡â â ‘⠹⠹⠑â " }, { "input": "spiccszűrÅ‘be", "output": "â Žâ â Šâ ‰â ‰â ±â ¾â —⠻⠃⠑" }, { "input": "stadionnyi", "output": "â Žâ žâ â ™â Šâ •â â «â Š" }, { "input": "stílusszerű, stílusszerkesztÅ‘", "output": "⠎⠞⠌⠇⠥⠎⠱⠑⠗⠾⠂ ⠎⠞⠌⠇⠥⠎⠱⠑⠗⠅⠑⠱⠞⠻" }, { "input": "sugárzásszerű ", "output": "⠎⠥⠛⠈⠗⠣⠈⠎⠱⠑⠗⠾ " }, { "input": "sugárzásszintek", "output": "⠎⠥⠛⠈⠗⠣⠈⠎⠱⠊â â žâ ‘â …" }, { "input": "suhanccsürhe", "output": "⠎⠥⠓â â â ‰â ©â ·â —â “â ‘" }, { "input": "suhancsereg", "output": "⠎⠥⠓â â â ‰â Žâ ‘â —â ‘â ›" }, { "input": "szaglásszék", "output": "â ±â â ›â ‡â ˆâ ±â ±â ¡â …" }, { "input": "szalonnyelv, szalonnyelven ", "output": "â ±â â ‡â •â â «â ‘⠇⠧⠂ â ±â â ‡â •â â «â ‘â ‡â §â ‘â  " }, { "input": "szállodásszövetség", "output": "⠱⠈⠇⠇⠕⠙⠈⠎⠱⠟⠧⠑⠞⠎⠡⠛" }, { "input": "Szamosszeg", "output": "⠨⠱â â â •⠎⠱⠑⠛" }, { "input": "szanitéccsoport", "output": "â ±â â â Šâ žâ ¡â ‰â ©â •â â •â —â ž" }, { "input": "szárazság", "output": "⠱⠈⠗â â £â Žâ ˆâ ›" }, { "input": "szárazsült", "output": "⠱⠈⠗â â £â Žâ ·â ‡â ž" }, { "input": "szarvasszív", "output": "â ±â â —â §â â Žâ ±â Œâ §" }, { "input": "szarvaszsír", "output": "â ±â â —â §â â Žâ œâ Œâ —" }, { "input": "szezonnyitó", "output": "⠱⠑⠣⠕â â «â Šâ žâ ª" }, { "input": "szénásszekér", "output": "⠱⠡â â ˆâ Žâ ±â ‘â …â ¡â —" }, { "input": "szentségesszűzmáriám", "output": "⠱⠑â â žâ Žâ ¡â ›â ‘⠎⠱⠾⠣â â ˆâ —â Šâ ˆâ " }, { "input": "szentséggyalázás", "output": "⠱⠑â â žâ Žâ ¡â ›â ¹â â ‡â ˆâ £â ˆâ Ž" }, { "input": "Szepesszombat", "output": "⠨⠱⠑â â ‘⠎⠱⠕â â ƒâ â ž" }, { "input": "szerzÅ‘désszám", "output": "⠱⠑⠗⠣⠻⠙⠡⠎⠱⠈â " }, { "input": "szerzÅ‘désszegés", "output": "⠱⠑⠗⠣⠻⠙⠡⠎⠱⠑⠛⠡⠎" }, { "input": "szerzÅ‘désszegÅ‘", "output": "⠱⠑⠗⠣⠻⠙⠡⠎⠱⠑⠛⠻" }, { "input": "szervizsarok", "output": "⠱⠑⠗⠧⠊⠣⠎â â —â •â …" }, { "input": "szétossza", "output": "⠱⠡⠞⠕⠱⠱â " }, { "input": "szétosszák ", "output": "⠱⠡⠞⠕⠱⠱⠈⠅ " }, { "input": "Szilvásszentmárton", "output": "⠨⠱⠊⠇⠧⠈⠎⠱⠑â â žâ â ˆâ —â žâ •â " }, { "input": "szindikátusszerű ", "output": "⠱⠊â â ™â Šâ …⠈⠞⠥⠎⠱⠑⠗⠾ " }, { "input": "szindikátusszervezÅ‘", "output": "⠱⠊â â ™â Šâ …⠈⠞⠥⠎⠱⠑⠗⠧⠑⠣⠻" }, { "input": "színnyomás", "output": "⠱⠌â â «â •â â ˆâ Ž" }, { "input": "szocsegély", "output": "⠱⠕⠉⠎⠑⠛⠡⠸" }, { "input": "szódásszifon", "output": "⠱⠪⠙⠈⠎⠱⠊⠋⠕â " }, { "input": "szokásszerű", "output": "⠱⠕⠅⠈⠎⠱⠑⠗⠾" }, { "input": "szólásszabadság", "output": "⠱⠪⠇⠈⠎⠱â â ƒâ â ™â Žâ ˆâ ›" }, { "input": "szólásszapulás", "output": "⠱⠪⠇⠈⠎⠱â â â ¥â ‡â ˆâ Ž" }, { "input": "szórakozásszámba", "output": "⠱⠪⠗â â …⠕⠣⠈⠎⠱⠈â â ƒâ " }, { "input": "szorongásszerű", "output": "⠱⠕⠗⠕â â ›â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "szorongásszint", "output": "⠱⠕⠗⠕â â ›â ˆâ Žâ ±â Šâ â ž" }, { "input": "szöggyár", "output": "⠱⠟⠛⠹⠈⠗" }, { "input": "szöveggyűjtemény", "output": "⠱⠟⠧⠑⠛⠹⠾⠚⠞⠑â â ¡â «" }, { "input": "szÅ‘nyeggyár", "output": "⠱⠻⠫⠑⠛⠹⠈⠗" }, { "input": "szúnyoggyérítés", "output": "⠱⠬⠫⠕⠛⠹⠡⠗⠌⠞⠡⠎" }, { "input": "szúrásszerű", "output": "⠱⠬⠗⠈⠎⠱⠑⠗⠾" }, { "input": "szúrósszemű", "output": "⠱⠬⠗⠪⠎⠱⠑â â ¾" }, { "input": "születésszabályozás", "output": "⠱⠷⠇⠑⠞⠡⠎⠱â â ƒâ ˆâ ¸â •⠣⠈⠎" }, { "input": "szűzsült", "output": "⠱⠾⠣⠎⠷⠇⠞" }, { "input": "taxisszurkálás", "output": "â žâ â ­â Šâ Žâ ±â ¥â —⠅⠈⠇⠈⠎" }, { "input": "tágulásszabály", "output": "⠞⠈⠛⠥⠇⠈⠎⠱â â ƒâ ˆâ ¸" }, { "input": "taggyűlés", "output": "â žâ â ›â ¹â ¾â ‡â ¡â Ž" }, { "input": "tánccsoport", "output": "â žâ ˆâ â ‰â ©â •â â •â —â ž" }, { "input": "társalgásszámba", "output": "⠞⠈⠗⠎â â ‡â ›â ˆâ Žâ ±â ˆâ â ƒâ " }, { "input": "társalgásszerű ", "output": "⠞⠈⠗⠎â â ‡â ›â ˆâ Žâ ±â ‘â —â ¾ " }, { "input": "társszekér", "output": "⠞⠈⠗⠎⠱⠑⠅⠡⠗" }, { "input": "társszövetség", "output": "⠞⠈⠗⠎⠱⠟⠧⠑⠞⠎⠡⠛" }, { "input": "tehetséggyár", "output": "⠞⠑⠓⠑⠞⠎⠡⠛⠹⠈⠗" }, { "input": "teásszervíz", "output": "⠞⠑⠈⠎⠱⠑⠗⠧⠌⠣" }, { "input": "tejfölösszájú", "output": "⠞⠑⠚⠋⠟⠇⠟⠎⠱⠈⠚⠬" }, { "input": "teknÅ‘sszámlálás", "output": "â žâ ‘â …â â »â Žâ ±â ˆâ â ‡â ˆâ ‡â ˆâ Ž" }, { "input": "településszerkezet ", "output": "⠞⠑⠇⠑â â ·â ‡â ¡â Žâ ±â ‘⠗⠅⠑⠣⠑⠞ " }, { "input": "települészónájára", "output": "⠞⠑⠇⠑â â ·â ‡â ¡â Žâ £â ªâ â ˆâ šâ ˆâ —â " }, { "input": "templomosszakértÅ‘", "output": "â žâ ‘â â â ‡â •â â •â Žâ ±â â …â ¡â —â žâ »" }, { "input": "tetszészaj", "output": "⠞⠑⠞⠱⠡⠎⠣â â š" }, { "input": "tetszészsivaj ", "output": "⠞⠑⠞⠱⠡⠎⠜⠊⠧â â š " }, { "input": "tigrisszemek ", "output": "⠞⠊⠛⠗⠊⠎⠱⠑â â ‘â … " }, { "input": "tigrisszerű", "output": "⠞⠊⠛⠗⠊⠎⠱⠑⠗⠾" }, { "input": "tisztséggyűjtemény", "output": "⠞⠊⠱⠞⠎⠡⠛⠹⠾⠚⠞⠑â â ¡â «" }, { "input": "tipusszám", "output": "â žâ Šâ â ¥â Žâ ±â ˆâ " }, { "input": "típusszám", "output": "â žâ Œâ â ¥â Žâ ±â ˆâ " }, { "input": "típusszöveg", "output": "â žâ Œâ â ¥â Žâ ±â Ÿâ §â ‘â ›" }, { "input": "típuszubbony", "output": "â žâ Œâ â ¥â Žâ £â ¥â ƒâ ƒâ •â «" }, { "input": "titkosszolgálat", "output": "⠞⠊⠞⠅⠕⠎⠱⠕⠇⠛⠈⠇â â ž" }, { "input": "tizedesszállás", "output": "⠞⠊⠣⠑⠙⠑⠎⠱⠈⠇⠇⠈⠎" }, { "input": "tízgallonnyi", "output": "⠞⠌⠣⠛â â ‡â ‡â •â â «â Š" }, { "input": "tojászápor", "output": "⠞⠕⠚⠈⠎⠣⠈â â •â —" }, { "input": "tojásszerű", "output": "⠞⠕⠚⠈⠎⠱⠑⠗⠾" }, { "input": "topázsárgája", "output": "â žâ •â â ˆâ £â Žâ ˆâ —⠛⠈⠚â " }, { "input": "torzság", "output": "⠞⠕⠗⠣⠎⠈⠛" }, { "input": "többesszám", "output": "⠞⠟⠃⠃⠑⠎⠱⠈â " }, { "input": "töltésszabályozó", "output": "⠞⠟⠇⠞⠡⠎⠱â â ƒâ ˆâ ¸â •⠣⠪" }, { "input": "töltésszám", "output": "⠞⠟⠇⠞⠡⠎⠱⠈â " }, { "input": "töltésszerűen", "output": "⠞⠟⠇⠞⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "töltésszakasz", "output": "⠞⠟⠇⠞⠡⠎⠱â â …â â ±" }, { "input": "törlesszem", "output": "⠞⠟⠗⠇⠑⠱⠱⠑â " }, { "input": "tövisszár", "output": "⠞⠟⠧⠊⠎⠱⠈⠗" }, { "input": "tövisszúrás", "output": "⠞⠟⠧⠊⠎⠱⠬⠗⠈⠎" }, { "input": "tÅ‘zeggyapot", "output": "⠞⠻⠣⠑⠛⠹â â â •â ž" }, { "input": "trichinnyavalya", "output": "⠞⠗⠊⠉⠓⠊â â «â â §â â ¸â " }, { "input": "tudásszint", "output": "⠞⠥⠙⠈⠎⠱⠊â â ž" }, { "input": "tudásszomj", "output": "⠞⠥⠙⠈⠎⠱⠕â â š" }, { "input": "turizmusszektor", "output": "⠞⠥⠗⠊⠣â â ¥â Žâ ±â ‘â …â žâ •â —" }, { "input": "tükrösszélű", "output": "⠞⠷⠅⠗⠟⠎⠱⠡⠇⠾" }, { "input": "tüntetésszerűen", "output": "â žâ ·â â žâ ‘⠞⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "tüzesszemű", "output": "⠞⠷⠣⠑⠎⠱⠑â â ¾" }, { "input": "tűzzsonglÅ‘r ", "output": "⠞⠾⠣⠜⠕â â ›â ‡â »â — " }, { "input": "tűzsebesség", "output": "⠞⠾⠣⠎⠑⠃⠑⠎⠎⠡⠛" }, { "input": "tűzsugár", "output": "⠞⠾⠣⠎⠥⠛⠈⠗" }, { "input": "udvaroncsereg", "output": "⠥⠙⠧â â —â •â â ‰â Žâ ‘â —â ‘â ›" }, { "input": "ugrásszerűen", "output": "⠥⠛⠗⠈⠎⠱⠑⠗⠾⠑â " }, { "input": "ugrásszögének", "output": "⠥⠛⠗⠈⠎⠱⠟⠛⠡â â ‘â …" }, { "input": "újoncság", "output": "⠬⠚⠕â â ‰â Žâ ˆâ ›" }, { "input": "ulánusszázad", "output": "⠥⠇⠈â â ¥â Žâ ±â ˆâ £â â ™" }, { "input": "university", "output": "â ¥â â Šâ §â ‘â —â Žâ Šâ žâ ½" }, { "input": "utalásszerűen", "output": "⠥⠞â â ‡â ˆâ Žâ ±â ‘⠗⠾⠑â " }, { "input": "utalásszinten", "output": "⠥⠞â â ‡â ˆâ Žâ ±â Šâ â žâ ‘â " }, { "input": "utánpótlásszállítmánnyal", "output": "⠥⠞⠈â â â ªâ žâ ‡â ˆâ Žâ ±â ˆâ ‡â ‡â Œâ žâ â ˆâ «â «â â ‡" }, { "input": "utánnyomás", "output": "⠥⠞⠈â â «â •â â ˆâ Ž" }, { "input": "utasszállító", "output": "⠥⠞â â Žâ ±â ˆâ ‡â ‡â Œâ žâ ª" }, { "input": "utasszám", "output": "⠥⠞â â Žâ ±â ˆâ " }, { "input": "utasszerep", "output": "⠥⠞â â Žâ ±â ‘â —â ‘â " }, { "input": "utasszint", "output": "⠥⠞â â Žâ ±â Šâ â ž" }, { "input": "utasszolgálat", "output": "⠥⠞â â Žâ ±â •⠇⠛⠈⠇â â ž" }, { "input": "utasításszavakkal", "output": "⠥⠞â â Žâ Œâ žâ ˆâ Žâ ±â â §â â …â …â â ‡" }, { "input": "utazásszerű", "output": "⠥⠞â â £â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "utazásszervezÅ‘", "output": "⠥⠞â â £â ˆâ Žâ ±â ‘⠗⠧⠑⠣⠻" }, { "input": "ülésszak", "output": "⠷⠇⠡⠎⠱â â …" }, { "input": "ülésszak", "output": "⠷⠇⠡⠎⠱â â …" }, { "input": "üstökösszerű", "output": "⠷⠎⠞⠟⠅⠟⠎⠱⠑⠗⠾" }, { "input": "ütésszerű", "output": "⠷⠞⠡⠎⠱⠑⠗⠾" }, { "input": "ütészápor ", "output": "⠷⠞⠡⠎⠣⠈â â •â — " }, { "input": "üveggyapot", "output": "⠷⠧⠑⠛⠹â â â •â ž" }, { "input": "üveggyártás", "output": "⠷⠧⠑⠛⠹⠈⠗⠞⠈⠎" }, { "input": "üveggyöngy", "output": "⠷⠧⠑⠛⠹⠟â â ¹" }, { "input": "üveggyűrű", "output": "⠷⠧⠑⠛⠹⠾⠗⠾" }, { "input": "vagdalthússzerű", "output": "â §â â ›â ™â â ‡â žâ “⠬⠎⠱⠑⠗⠾" }, { "input": "vagonnyi", "output": "â §â â ›â •â â «â Š" }, { "input": "vakarccsal", "output": "â §â â …â â —â ©â ©â â ‡" }, { "input": "vallásszabadság", "output": "â §â â ‡â ‡â ˆâ Žâ ±â â ƒâ â ™â Žâ ˆâ ›" }, { "input": "vallásszociológus", "output": "â §â â ‡â ‡â ˆâ Žâ ±â •⠉⠊⠕⠇⠪⠛⠥⠎" }, { "input": "vallásszociológus", "output": "â §â â ‡â ‡â ˆâ Žâ ±â •⠉⠊⠕⠇⠪⠛⠥⠎" }, { "input": "vallomásszámba", "output": "â §â â ‡â ‡â •â â ˆâ Žâ ±â ˆâ â ƒâ " }, { "input": "vállpereccsontjából", "output": "⠧⠈⠇⠇â â ‘⠗⠑⠉⠩⠕â â žâ šâ ˆâ ƒâ ªâ ‡" }, { "input": "Vámosszabadi", "output": "⠨⠧⠈â â •â Žâ ±â â ƒâ â ™â Š" }, { "input": "városszépe", "output": "⠧⠈⠗⠕⠎⠱⠡â â ‘" }, { "input": "városszerte", "output": "⠧⠈⠗⠕⠎⠱⠑⠗⠞⠑" }, { "input": "várossziluett", "output": "⠧⠈⠗⠕⠎⠱⠊⠇⠥⠑⠞⠞" }, { "input": "városzajon", "output": "⠧⠈⠗⠕⠎⠣â â šâ •â " }, { "input": "városzajt ", "output": "⠧⠈⠗⠕⠎⠣â â šâ ž " }, { "input": "városzsarnok", "output": "⠧⠈⠗⠕⠎⠜â â —â â •â …" }, { "input": "vasasszakosztály", "output": "â §â â Žâ â Žâ ±â â …⠕⠱⠞⠈⠸" }, { "input": "vasutassztrájk", "output": "â §â â Žâ ¥â žâ â Žâ ±â žâ —⠈⠚⠅" }, { "input": "vasszállítmány", "output": "â §â â Žâ ±â ˆâ ‡â ‡â Œâ žâ â ˆâ «" }, { "input": "Vaszar", "output": "⠨⠧â â ±â â —" }, { "input": "Vázsnok", "output": "⠨⠧⠈⠜â â •â …" }, { "input": "végiggyakorolni", "output": "⠧⠡⠛⠊⠛⠹â â …â •â —â •â ‡â â Š" }, { "input": "végiggyalogolhatja", "output": "⠧⠡⠛⠊⠛⠹â â ‡â •⠛⠕⠇⠓â â žâ šâ " }, { "input": "vendéggyermek", "output": "â §â ‘â â ™â ¡â ›â ¹â ‘â —â â ‘â …" }, { "input": "vendéggyülekezet", "output": "â §â ‘â â ™â ¡â ›â ¹â ·â ‡â ‘⠅⠑⠣⠑⠞" }, { "input": "veresszakállú ", "output": "â §â ‘â —â ‘â Žâ ±â â …⠈⠇⠇⠬ " }, { "input": "veresszemű", "output": "⠧⠑⠗⠑⠎⠱⠑â â ¾" }, { "input": "versszak", "output": "â §â ‘â —â Žâ ±â â …" }, { "input": "versszakában ", "output": "â §â ‘â —â Žâ ±â â …⠈⠃â â  " }, { "input": "versszerű", "output": "⠧⠑⠗⠎⠱⠑⠗⠾" }, { "input": "versszeretÅ‘", "output": "⠧⠑⠗⠎⠱⠑⠗⠑⠞⠻" }, { "input": "vértesszázad", "output": "⠧⠡⠗⠞⠑⠎⠱⠈⠣â â ™" }, { "input": "vértesszázadbeli ", "output": "⠧⠡⠗⠞⠑⠎⠱⠈⠣â â ™â ƒâ ‘⠇⠊ " }, { "input": "VértesszÅ‘lÅ‘s", "output": "⠨⠧⠡⠗⠞⠑⠎⠱⠻⠇⠻⠎" }, { "input": "vetésszalag", "output": "â §â ‘â žâ ¡â Žâ ±â â ‡â â ›" }, { "input": "viccsor", "output": "⠧⠊⠉⠉⠎⠕⠗" }, { "input": "világossággyújtásra", "output": "⠧⠊⠇⠈⠛⠕⠎⠎⠈⠛⠹⠬⠚⠞⠈⠎⠗â " }, { "input": "világosszÅ‘ke", "output": "⠧⠊⠇⠈⠛⠕⠎⠱⠻⠅⠑" }, { "input": "világosszürke ", "output": "⠧⠊⠇⠈⠛⠕⠎⠱⠷⠗⠅⠑ " }, { "input": "világgyűlölÅ‘", "output": "⠧⠊⠇⠈⠛⠹⠾⠇⠟⠇⠻" }, { "input": "villamosszék", "output": "⠧⠊⠇⠇â â â •⠎⠱⠡⠅" }, { "input": "villamosszerű", "output": "⠧⠊⠇⠇â â â •⠎⠱⠑⠗⠾" }, { "input": "villanásszerűen", "output": "⠧⠊⠇⠇â â â ˆâ Žâ ±â ‘⠗⠾⠑â " }, { "input": "visszaélésszerű", "output": "⠧⠊⠱⠱â â ¡â ‡â ¡â Žâ ±â ‘â —â ¾" }, { "input": "virággyapjaikat", "output": "⠧⠊⠗⠈⠛⠹â â â šâ â Šâ …â â ž" }, { "input": "virággyűjtemény ", "output": "⠧⠊⠗⠈⠛⠹⠾⠚⠞⠑â â ¡â « " }, { "input": "virággyűjtés", "output": "⠧⠊⠗⠈⠛⠹⠾⠚⠞⠡⠎" }, { "input": "virgoncság", "output": "⠧⠊⠗⠛⠕â â ‰â Žâ ˆâ ›" }, { "input": "vírusszerű", "output": "⠧⠌⠗⠥⠎⠱⠑⠗⠾" }, { "input": "vírusszűrés", "output": "⠧⠌⠗⠥⠎⠱⠾⠗⠡⠎" }, { "input": "viselkedésszerű", "output": "⠧⠊⠎⠑⠇⠅⠑⠙⠡⠎⠱⠑⠗⠾" }, { "input": "viselkedészavar", "output": "⠧⠊⠎⠑⠇⠅⠑⠙⠡⠎⠣â â §â â —" }, { "input": "visually", "output": "â §â Šâ Žâ ¥â â ‡â ‡â ½" }, { "input": "visszér", "output": "⠧⠊⠱⠱⠡⠗" }, { "input": "visszeres", "output": "⠧⠊⠱⠱⠑⠗⠑⠎" }, { "input": "visszérműtét ", "output": "⠧⠊⠱⠱⠡⠗â â ¾â žâ ¡â ž " }, { "input": "vitorlásszezon", "output": "⠧⠊⠞⠕⠗⠇⠈⠎⠱⠑⠣⠕â " }, { "input": "vitrinnyi", "output": "â §â Šâ žâ —â Šâ â «â Š" }, { "input": "vizeleteszacskó ", "output": "⠧⠊⠣⠑⠇⠑⠞⠑⠎⠣â â ©â …â ª " }, { "input": "vizeszsemle", "output": "⠧⠊⠣⠑⠎⠜⠑â â ‡â ‘" }, { "input": "vízfolyásszerű", "output": "⠧⠌⠣⠋⠕⠸⠈⠎⠱⠑⠗⠾" }, { "input": "vízsáv", "output": "⠧⠌⠣⠎⠈⠧" }, { "input": "vízsivatag ", "output": "⠧⠌⠣⠎⠊⠧â â žâ â › " }, { "input": "vízesésszerűen", "output": "⠧⠌⠣⠑⠎⠡⠎⠱⠑⠗⠾⠑â " }, { "input": "vízsodor", "output": "⠧⠌⠣⠎⠕⠙⠕⠗" }, { "input": "vonósszerenád ", "output": "â §â •â â ªâ Žâ ±â ‘â —â ‘â â ˆâ ™ " }, { "input": "vonószenekar", "output": "â §â •â â ªâ Žâ £â ‘â â ‘â …â â —" }, { "input": "vörhenyesszÅ‘ke", "output": "⠧⠟⠗⠓⠑⠫⠑⠎⠱⠻⠅⠑" }, { "input": "vörösesszÅ‘ke", "output": "⠧⠟⠗⠟⠎⠑⠎⠱⠻⠅⠑" }, { "input": "vörösesszÅ‘ke", "output": "⠧⠟⠗⠟⠎⠑⠎⠱⠻⠅⠑" }, { "input": "vörösszakállú", "output": "â §â Ÿâ —â Ÿâ Žâ ±â â …⠈⠇⠇⠬" }, { "input": "vörösszem", "output": "⠧⠟⠗⠟⠎⠱⠑â " }, { "input": "vörösszínű", "output": "⠧⠟⠗⠟⠎⠱⠌â â ¾" }, { "input": "vörösszÅ‘ke", "output": "⠧⠟⠗⠟⠎⠱⠻⠅⠑" }, { "input": "vöröszászló", "output": "⠧⠟⠗⠟⠎⠣⠈⠱⠇⠪" }, { "input": "webesszolgáltatás", "output": "⠺⠑⠃⠑⠎⠱⠕⠇⠛⠈⠇⠞â â žâ ˆâ Ž" }, { "input": "zaklatásszámba", "output": "â £â â …â ‡â â žâ ˆâ Žâ ±â ˆâ â ƒâ " }, { "input": "záloggyűrűmet", "output": "⠣⠈⠇⠕⠛⠹⠾⠗⠾â â ‘â ž" }, { "input": "zavarosszürke", "output": "â £â â §â â —⠕⠎⠱⠷⠗⠅⠑" }, { "input": "zlotyról", "output": "⠣⠇⠕⠞⠽⠗⠪⠇" }, { "input": "zökkenésszerű", "output": "⠣⠟⠅⠅⠑â â ¡â Žâ ±â ‘â —â ¾" }, { "input": "zörgésszerű", "output": "⠣⠟⠗⠛⠡⠎⠱⠑⠗⠾" }, { "input": "zuhanásszerű", "output": "⠣⠥⠓â â â ˆâ Žâ ±â ‘â —â ¾" }, { "input": "zsarolásszerű", "output": "â œâ â —⠕⠇⠈⠎⠱⠑⠗⠾" }, { "input": "zsírosszén", "output": "⠜⠌⠗⠕⠎⠱⠡â " }, { "input": "zsoldosszokás", "output": "⠜⠕⠇⠙⠕⠎⠱⠕⠅⠈⠎" }, { "input": "A telefonszámom: 06-1-256-256.", "output": "â ¨â  â žâ ‘â ‡â ‘â ‹â •â â ±â ˆâ â •â â ’ ⠼⠚⠋⠤⠼â â ¤â ¼â ƒâ ‘⠋⠤⠼⠃⠑⠋⠄" }, { "input": "A földrengés 7,5 erÅ‘sségű volt.", "output": "â ¨â  â ‹â Ÿâ ‡â ™â —â ‘â â ›â ¡â Ž ⠼⠛⠂⠑ ⠑⠗⠻⠎⠎⠡⠛⠾ ⠧⠕⠇⠞⠄" }, { "input": "Tamás még nem tudta, hogy mi vár rá.", "output": "⠨⠞â â â ˆâ Ž â â ¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ â “â •â ¹ â â Š ⠧⠈⠗ ⠗⠈⠄" }, { "input": "\"Tamás még nem tudta, hogy mi vár rá.\"", "output": "⠦⠨⠞â â â ˆâ Ž â â ¡â › â â ‘â  â žâ ¥â ™â žâ â ‚ â “â •â ¹ â â Š ⠧⠈⠗ ⠗⠈⠄⠴" }, { "input": "I don't no why happened this problem.", "output": "⠨⠊ ⠙⠕â â  â „â ž â â • ⠺⠓⠽ â “â â â â ‘â â ‘â ™ â žâ “â Šâ Ž â â —⠕⠃⠇⠑â â „" }, { "input": "Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘.", "output": "â ¨â â £ â ¼â â ¼â § â â â —â â ›â —â â ‹â ¥â Ž â â ‡â â â šâ ˆâ  â  â …â ‘â ™â §â ‘â £â â ¡â « ⠊⠛⠡⠫⠃⠑ ⠧⠑⠓⠑⠞⠻⠄" }, { "input": "- A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban.", "output": "â ¤ â ¨â  â Žâ Šâ §â â žâ â ›â Š â …â â —â â §â ˆâ â ¬â žâ •â â ‚ â â ‘â ¹â §â ‘â  â §â â ¹ â Ÿâ žâ §â ‘â  â â ¡â —⠋⠟⠇⠙⠫⠊⠗⠑ â Šâ â â ‘â â „ ⠨⠑⠹ ⠨⠋⠕⠗⠙⠄ ⠨⠙⠑ â â Š â â ‘â  â â ‘⠹⠷â â … â â â ›â ˆâ §â â ‡â „ â ¤ ⠨⠑⠇⠻⠧⠑⠞⠞⠑ â â £ â Šâ —â â žâ žâ ˆâ —⠉⠈⠚⠈⠞⠂ â ¡â Ž ⠈⠞â â ™â •â žâ ž â ¨â â â ±â Šâ ‹â â â … â ‘â ¹ â â â ›â •â ‡ â ‹â •â â žâ •â žâ „ â ¤ â ¨â “â  â §â Šâ ±â ±â â šâ Ÿâ â ‚ â …â ‘â —â ‘â Žâ Žâ ‘â  â â ‘â › â  â §â â Žâ ¬â žâ ˆâ ‡â ‡â •â â ˆâ Ž â â ‘⠇⠇⠑⠞⠞ â  â ¨â ›â —â â â ™ ⠨⠓⠕⠞⠑⠇⠃â â â „" }, { "input": "A vételár 1 €.", "output": "â ¨â  â §â ¡â žâ ‘â ‡â ˆâ — â ¼â  â °â ‘â „" }, { "input": "De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat).", "output": "⠨⠙⠑ â â ‘â …â ‘â  â â â ¹â •â  â â ‘⠓⠑⠣⠑â â —â ‘ â ‘â Žâ Šâ … â  â ‡â ‘â §â ¡â ‡â Œâ —â ˆâ Ž â ®â â ¡â £â ™ â ‘â ‡ â  â “â ‘â ¸â ‘â Žâ Œâ —â ˆâ Žâ Š ⠓⠊⠃⠈⠅â â ž â ¡â Ž â  â ©â ¬â «â  â Œâ —â ˆâ Žâ •â â â žâ µâ „" }, { "input": "A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke.", "output": "â ¨â  â …â Šâ ˆâ ‡â ‡â Œâ žâ ˆâ Ž â â ‘â ›â «â Šâ žâ ªâ šâ ˆâ  â šâ ‘â ‡â ‘â  â §â •â ‡â ž â â £ ⠨⠨â â §â ¹â •â ± â ‘â ‡â â Ÿâ …â ‘â „" }, { "input": "A pontos idÅ‘ 11:45 perc.", "output": "â ¨â  â â •â â žâ •â Ž ⠊⠙⠻ â ¼â â â „⠙⠑ â â ‘⠗⠉⠄" }, { "input": "•A kiadás újdonságai.", "output": "â  â ”â ¨â  â …â Šâ â ™â ˆâ Ž ⠬⠚⠙⠕â â Žâ ˆâ ›â â Šâ „" }, { "input": "A hu_list fájl nem létezik.", "output": "â ¨â  â “â ¥â  â ¤â ‡â Šâ Žâ ž ⠋⠈⠚⠇ â â ‘â  â ‡â ¡â žâ ‘â £â Šâ …â „" }, { "input": "Az e-mail címem: akarmi@akarmi.hu.", "output": "â ¨â â £ â ‘â ¤â â â Šâ ‡ ⠉⠌â â ‘â â ’ â â …â â —â â Šâ ˜â â …â â —â â Šâ „⠓⠥⠄" } ], "flags": { "outputUniBrl": true } } ] }liblouis-2.5.3/tests/harness/en-gb-g1_harness.txt0000664000175000017500000000125012161041534016647 00000000000000{ "tables": [ "unicode.dis", "en-gb-g1.utb" ], "tests": [ { "data": [ { "comment": [ "using ordinary apostrophes." ], "input": "we've I'm wasn't you're", "output": "⠺⠑⠄⠧⠑ â  â Šâ „â  â ºâ â Žâ â „â ž ⠽⠕⠥⠄⠗⠑" }, { "comment": [ "Using right single apostrophes, as often found on the web." ], "input": "we’ve I’m wasn’t you’re", "output": "⠺⠑⠄⠧⠑ â  â Šâ „â  â ºâ â Žâ â „â ž ⠽⠕⠥⠄⠗⠑" } ], "flags": { "outputUniBrl": true } } ] } liblouis-2.5.3/tests/harness/letterDefTest_harness.txt0000664000175000017500000000027212161041534020133 00000000000000{ "tests": [ { "data": [ { "output": "â Žâ ", "input": "â â Ž" } ] } ], "tables": [ "letterDefTest.ctb" ] } liblouis-2.5.3/tests/harness/nocross_harness.txt0000664000175000017500000000166512161041534017052 00000000000000{ "tables": [ "unicode.dis", "nocross.ctb" ], "tests": [ { "data": [ { "comment": ["dead-ened"], "input": "deadened", "output": "⠙⠑â â ™â ¢â «" }, { "comment": ["em-bold-ened"], "input": "emboldened", "output": "â ‘â â ƒâ •⠇⠙⠢⠫" }, { "comment": ["gar-den-er"], "input": "gardener", "output": "â ›â â —â ¿â ‘â —" }, { "comment": ["de-nounce"], "input": "denounce", "output": "⠙⠑â â •â ¥â â ‰â ‘" }, { "comment": ["de-nial"], "input": "denial", "output": "⠙⠑â â Šâ â ‡" }, { "comment": [ "den-tal" ], "input": "dental", "output": "â ¿â žâ â ‡" } ], "flags": { "outputUniBrl": true } } ] } liblouis-2.5.3/tests/harness/hu-hu-g1-hyph_harness.txt0000664000175000017500000026766312161041534017701 00000000000000{ "tables": [ "unicode.dis", "hu-hu-g1.ctb", "hyph_hu_HU.dic" ], "tests": [ { "data": [ { "input": "adásszerű", "output": "adás-sze-rű" }, { "input": "adásszünet", "output": "adás-szü-net" }, { "input": "adászárásig", "output": "adás-zá-rá-sig" }, { "input": "adósszámla", "output": "adós-szám-la" }, { "input": "Agyagosszergény", "output": "Agya-gosszer-gény" }, { "input": "agyaggyűrűiken", "output": "agyag-gyű-rű-i-ken" }, { "input": "agyonnyom", "output": "agyon-nyom" }, { "input": "agyonnyúzott", "output": "agyon-nyú-zott" }, { "input": "agyonnyűtt", "output": "agyon-nyűtt" }, { "input": "ágyússzekerek", "output": "ágyús-sze-ke-rek" }, { "input": "ájulásszerű", "output": "áju-lás-sze-rű" }, { "input": "akácsövény", "output": "akácsö-vény" }, { "input": "ákácsövény", "output": "ák-ácsö-vény" }, { "input": "alásszolgája", "output": "alás-szol-gá-ja" }, { "input": "alásszolgájuk", "output": "alás-szol-gá-juk" }, { "input": "alkalmazásszerver", "output": "al-kal-ma-zás-szer-ver" }, { "input": "alkalmazásszintű", "output": "al-kal-ma-zás-szin-tű" }, { "input": "állásszög", "output": "ál-lás-szög" }, { "input": "almásszürke", "output": "al-más-szür-ke" }, { "input": "alvásszegény", "output": "al-vás-sze-gény" }, { "input": "alvásszükséglete", "output": "al-vás-szük-ség-le-te" }, { "input": "alvászavar", "output": "al-vás-za-var" }, { "input": "anyaggyÅ‘zÅ‘", "output": "anyag-gyÅ‘-zÅ‘" }, { "input": "anyaggyűjtés", "output": "anyag-gyűj-tés" }, { "input": "aranyosszÅ‘ke", "output": "ara-nyos-szÅ‘-ke" }, { "input": "árboccsúcs", "output": "ár-boc-csúcs" }, { "input": "árbóccsúcs", "output": "ár-bóc-csúcs" }, { "input": "árbocsudarat", "output": "ár-bo-csu-da-rat" }, { "input": "arcüreggyulladás", "output": "arc-üreg-gyul-la-dás" }, { "input": "arccsont", "output": "arc-csont" }, { "input": "arcseb", "output": "arc-seb" }, { "input": "arcsebe", "output": "arc-se-be" }, { "input": "arcsérülés", "output": "arc-sé-rü-lés" }, { "input": "arzénnyom", "output": "ar-zén-nyom" }, { "input": "áremelkedésszerű", "output": "ár-emel-ke-dés-sze-rű" }, { "input": "árgusszemű", "output": "ár-gus-sze-mű" }, { "input": "árrésszabályt", "output": "ár-rés-sza-bályt" }, { "input": "árvízsújtotta", "output": "ár-víz-súj-tot-ta" }, { "input": "átlaggyerekre", "output": "át-lag-gye-rek-re" }, { "input": "autósszemüveg", "output": "au-tós-szem-üveg" }, { "input": "autósszÅ‘nyeg", "output": "au-tós-szÅ‘-nyeg" }, { "input": "azonnyomban", "output": "azon-nyom-ban" }, { "input": "bádoggyűjtemény", "output": "bá-dog-gyűj-te-mény" }, { "input": "Bánnyíres", "output": "Bán-nyí-res" }, { "input": "bázisszint", "output": "bá-zis-szint" }, { "input": "Barccsal", "output": "Barccsal" }, { "input": "barkácszene", "output": "bar-kács-ze-ne" }, { "input": "barnásszÅ‘ke", "output": "bar-nás-szÅ‘-ke" }, { "input": "barnásszÅ‘két", "output": "bar-nás-szÅ‘-két" }, { "input": "barnásszürke", "output": "bar-nás-szür-ke" }, { "input": "barnesszal", "output": "bar-nes-szal" }, { "input": "baromsággyűjtemény", "output": "ba-rom-ság-gyűj-te-mény" }, { "input": "basszusszerű", "output": "basszus-sze-rű" }, { "input": "basszusszintetizátor", "output": "basszus-szin-te-ti-zá-tor" }, { "input": "becslésszerűen", "output": "becs-lés-sze-rű-en" }, { "input": "berendezésszerű", "output": "be-ren-de-zés-sze-rű" }, { "input": "berendezésszett", "output": "be-ren-de-zés-szett" }, { "input": "Békésszentandrás", "output": "Bé-kés-szent-and-rás" }, { "input": "bélésszövet", "output": "bé-lés-szö-vet" }, { "input": "bélyeggyűjtemény", "output": "bé-lyeg-gyűj-te-mény" }, { "input": "bércsüveg", "output": "bérc-sü-veg" }, { "input": "beteggyógyász", "output": "be-teg-gyó-gyász" }, { "input": "bekezdésszintű", "output": "be-kez-dés-szin-tű" }, { "input": "bilincszörgés", "output": "bi-linc-ször-gés" }, { "input": "binsenggyökér", "output": "bin-seng-gyö-kér" }, { "input": "blueszene", "output": "blues-ze-ne" }, { "input": "bohócsapkája", "output": "bo-hóc-sap-ká-ja" }, { "input": "bohócság", "output": "bo-hóc-ság" }, { "input": "bohócszerű", "output": "bo-hóc-sze-rű" }, { "input": "bohócszerep", "output": "bo-hóc-sze-rep" }, { "input": "bonbonmeggy", "output": "bon-bon-meggy" }, { "input": "borsszem", "output": "bors-szem" }, { "input": "borsszóró", "output": "bors-szó-ró" }, { "input": "borzasszÅ‘rű", "output": "bor-zasszÅ‘-rű" }, { "input": "borzzsír", "output": "borz-zsír" }, { "input": "bÅ‘gésszerű", "output": "bÅ‘-gés-sze-rű" }, { "input": "börtönnyelve", "output": "bör-tön-nyel-ve" }, { "input": "börtönnyíláson", "output": "bör-tön-nyí-lá-son" }, { "input": "börtönnyitó", "output": "bör-tön-nyi-tó" }, { "input": "bukásszámba", "output": "bu-kás-szám-ba" }, { "input": "búcsújárásszerű", "output": "bú-csú-já-rás-sze-rű" }, { "input": "brekegésszerű", "output": "bre-ke-géssze-rű" }, { "input": "bronzsáska", "output": "bron-zsás-ka" }, { "input": "bronzsáskák", "output": "bron-zsás-kák" }, { "input": "bronzsasokkal", "output": "bron-zsa-sok-kal" }, { "input": "bronzsisak", "output": "bronz-si-sak" }, { "input": "bűnnyomok", "output": "bűn-nyo-mok" }, { "input": "chipseszacskó", "output": "ch-ip-seszacs-kó" }, { "input": "ciripelésszerűen", "output": "ci-ri-pe-lés-sze-rű-en" }, { "input": "curiosity", "output": "cu-ri-o-sity" }, { "input": "csapásszám", "output": "csa-pás-szám" }, { "input": "csárdásszóló", "output": "csár-dás-szó-ló" }, { "input": "csattanásszerű", "output": "csat-ta-nás-sze-rű" }, { "input": "csavarásszerű", "output": "csa-va-rás-sze-rű" }, { "input": "csikósszámadó", "output": "csi-kósszám-adó" }, { "input": "csillaggyárnak", "output": "csil-lag-gyár-nak" }, { "input": "csipkésszélű", "output": "csip-kés-szé-lű" }, { "input": "csípésszám", "output": "csí-pés-szám" }, { "input": "csobbanásszerű", "output": "csob-ba-nás-sze-rű" }, { "input": "csuklásszerű", "output": "csuk-lás-sze-rű" }, { "input": "Diósszilágyi", "output": "Di-ós-szil-ágyi" }, { "input": "disszertáció", "output": "disszer-tá-ció" }, { "input": "dobpergésszerűen", "output": "dob-per-gés-sze-rű-en" }, { "input": "döggyapjú", "output": "dög-gyap-jú" }, { "input": "döggyárnak", "output": "dög-gyár-nak" }, { "input": "dÅ‘lésszög", "output": "dÅ‘-lés-szög" }, { "input": "dörgésszerű", "output": "dör-gés-sze-rű" }, { "input": "dörgésszerű", "output": "dör-gés-sze-rű" }, { "input": "dörzszörej", "output": "dörzs-zö-rej" }, { "input": "dragonyosszázad", "output": "dra-go-nyos-szá-zad" }, { "input": "dragonyoszászlóalj", "output": "dra-gonyo-s-zász-ló-alj" }, { "input": "droggyanús", "output": "drog-gya-nús" }, { "input": "doppinggyanú", "output": "dop-ping-gya-nú" }, { "input": "dússzakállú", "output": "dússzak-ál-lú" }, { "input": "édesszájú", "output": "édes-szá-jú" }, { "input": "édesszesztestvér", "output": "édes-szesz-test-vér" }, { "input": "édességgyártók", "output": "édes-ség-gyár-tók" }, { "input": "égésszabály", "output": "égés-sza-bály" }, { "input": "égésszag", "output": "égés-szag" }, { "input": "égésszám", "output": "égés-szám" }, { "input": "égésszigetelés", "output": "égés-szi-ge-te-lés" }, { "input": "edzésszámot", "output": "edzés-szá-mot" }, { "input": "effektusszerűen", "output": "effek-tus-sze-rű-en" }, { "input": "egyenesszálú", "output": "egye-nes-szá-lú" }, { "input": "egyenesszárnyúak", "output": "egye-nes-szár-nyú-ak" }, { "input": "egyenesszög", "output": "egye-nes-szög" }, { "input": "egyezség", "output": "egyez-ség" }, { "input": "egyesszámban", "output": "egyesszám-ban" }, { "input": "egységgyertyából", "output": "egy-ség-gyer-tyá-ból" }, { "input": "elektronnyalábra", "output": "e-lek-tron-nya-láb-ra" }, { "input": "éhesszájat", "output": "é-hes-szá-jat" }, { "input": "ejtÅ‘ernyÅ‘sszárnyak", "output": "ej-tÅ‘-er-nyÅ‘s-szár-nyak" }, { "input": "ejtÅ‘ernyÅ‘sszázad", "output": "ej-tÅ‘-er-nyÅ‘s-szá-zad" }, { "input": "ejtÅ‘ernyÅ‘szászlóalj", "output": "ej-tÅ‘-er-nyÅ‘-s-zász-ló-alj" }, { "input": "ékesszólás", "output": "ékes-szó-lás" }, { "input": "ékesszóló", "output": "ékes-szó-ló" }, { "input": "ekhósszekér", "output": "ek-hós-sze-kér" }, { "input": "ekhósszekerek", "output": "ek-hós-sze-ke-rek" }, { "input": "eleséggyűjtés", "output": "ele-ség-gyűj-tés" }, { "input": "élesszemű", "output": "éles-sze-mű" }, { "input": "ellátásszerű", "output": "el-lá-tás-sze-rű" }, { "input": "ellenállásszekrény", "output": "el-len-ál-lás-szek-rény" }, { "input": "ellennyilatkozat", "output": "el-len-nyi-lat-ko-zat" }, { "input": "ellennyomás", "output": "el-len-nyo-más" }, { "input": "elméncség", "output": "el-ménc-ség" }, { "input": "előírásszerű", "output": "elÅ‘-írás-sze-rű" }, { "input": "elrémisszék", "output": "el-ré-misszék" }, { "input": "emberhússzagot", "output": "em-ber-hús-sza-got" }, { "input": "emelésszerű", "output": "eme-lés-sze-rű" }, { "input": "enyveszsinór", "output": "eny-ves-zsi-nór" }, { "input": "erÅ‘forrászabáló", "output": "erÅ‘-for-rás-za-bá-ló" }, { "input": "erÅ‘lködésszagúnak", "output": "erÅ‘l-kö-dés-sza-gú-nak" }, { "input": "erÅ‘sítésszabályozás", "output": "erÅ‘-sí-tés-sza-bá-lyo-zás" }, { "input": "érccsapadék", "output": "érc-csa-pa-dék" }, { "input": "érccsengés", "output": "érc-csen-gés" }, { "input": "érccsatorna", "output": "érc-csa-tor-na" }, { "input": "ércsalak", "output": "érc-sa-lak" }, { "input": "ércsas", "output": "érc-sas" }, { "input": "ércsarukkal", "output": "érc-sa-ruk-kal" }, { "input": "ércselyem", "output": "érc-se-lyem" }, { "input": "ércsíp", "output": "érc-síp" }, { "input": "ércsípjába", "output": "érc-síp-já-ba" }, { "input": "ércsípláda", "output": "érc-síp-lá-da" }, { "input": "ércsíptetÅ‘", "output": "érc-síp-te-tÅ‘" }, { "input": "ércsisak", "output": "érc-si-sak" }, { "input": "ércsodrony", "output": "érc-sod-rony" }, { "input": "érzékelésszint", "output": "ér-zé-ke-lés-szint" }, { "input": "ésszerű", "output": "ésszerű" }, { "input": "eszközsor", "output": "esz-köz-sor" }, { "input": "eszközsorán", "output": "esz-köz-so-rán" }, { "input": "evészavar", "output": "evés-za-var" }, { "input": "fagyosszentek", "output": "fa-gyos-szen-tek" }, { "input": "fáklyászene", "output": "fák-lyás-ze-ne" }, { "input": "farkasszáj", "output": "far-kas-száj" }, { "input": "farkasszem", "output": "far-kas-szem" }, { "input": "farkasszemet", "output": "far-kas-sze-met" }, { "input": "Farkassziget", "output": "Fark-as-szi-get" }, { "input": "fásszárú", "output": "fás-szá-rú" }, { "input": "fázisszögnek", "output": "fá-zis-szög-nek" }, { "input": "fegyenccsoport", "output": "fe-gyenc-cso-port" }, { "input": "fegyencsapkát", "output": "fe-gyenc-sap-kát" }, { "input": "fehéresszÅ‘ke", "output": "fe-hé-resszÅ‘-ke" }, { "input": "fehéresszürke", "output": "fe-hé-res-szür-ke" }, { "input": "feketésszürke", "output": "fe-ke-tés-szür-ke" }, { "input": "feldolgozászenekar", "output": "fel-dol-go-zás-ze-ne-kar" }, { "input": "feleséggyilkos", "output": "fe-le-ség-gyil-kos" }, { "input": "felséggyilkolás", "output": "fel-ség-gyil-ko-lás" }, { "input": "felfedezésszámba", "output": "fel-fe-de-zés-szám-ba" }, { "input": "felsorolásszerűen", "output": "fel-so-ro-lás-sze-rű-en" }, { "input": "feltevésszerűen", "output": "fel-te-vés-sze-rű-en" }, { "input": "felszerelésszettet", "output": "fel-sze-re-lésszet-tet" }, { "input": "fertÅ‘zésszerű", "output": "fer-tÅ‘-zés-sze-rű" }, { "input": "fémesszürke", "output": "fé-mes-szür-ke" }, { "input": "filccsizma", "output": "filc-csiz-ma" }, { "input": "filigránnyelű", "output": "fi-lig-rán-nye-lű" }, { "input": "fogasszeg", "output": "fo-gas-szeg" }, { "input": "fogfájásszerű", "output": "fog-fá-jás-sze-rű" }, { "input": "foglalkozásszerű", "output": "fog-lal-ko-zás-sze-rű" }, { "input": "foggyalu", "output": "fog-gya-lu" }, { "input": "foggyökér", "output": "fog-gyö-kér" }, { "input": "foggyulladás", "output": "fog-gyul-la-dás" }, { "input": "foggyűrű", "output": "fog-gyű-rű" }, { "input": "forgásszabály", "output": "for-gás-sza-bály" }, { "input": "forrásszöveg", "output": "for-rás-szö-veg" }, { "input": "fosszínű", "output": "fosszí-nű" }, { "input": "földcsuszamlásszerűen", "output": "föld-csu-szam-lás-sze-rű-en" }, { "input": "fölélesszem", "output": "föl-élesszem" }, { "input": "fÅ‘zÅ‘kalánnyelet", "output": "fÅ‘-zÅ‘-ka-lán-nye-let" }, { "input": "fuvarosszekér", "output": "fu-va-ros-sze-kér" }, { "input": "fúvósszekció", "output": "fú-vós-szek-ció" }, { "input": "fúvósszerszám", "output": "fú-vós-szer-szám" }, { "input": "fúvósszimfónia", "output": "fú-vós-szim-fó-nia" }, { "input": "fúvószenekar", "output": "fú-vós-ze-ne-kar" }, { "input": "fűtésszag", "output": "fű-tés-szag" }, { "input": "garaboncsereg", "output": "ga-ra-bon-cse-reg" }, { "input": "gázspray", "output": "gáz-spray" }, { "input": "gázstop", "output": "gáz-stop" }, { "input": "gázsugár", "output": "gáz-su-gár" }, { "input": "geggyáros", "output": "geg-gyá-ros" }, { "input": "gerincsérült", "output": "ge-rinc-sé-rült" }, { "input": "gerincsérv", "output": "ge-rinc-sérv" }, { "input": "ginszenggyökér", "output": "gin-szeng-gyö-kér" }, { "input": "ginzenggyökér", "output": "gin-zeng-gyö-kér" }, { "input": "Gombosszeg", "output": "Gom-bosszeg" }, { "input": "gondviselésszerű", "output": "gond-vi-se-lés-sze-rű" }, { "input": "gÅ‘zsíp", "output": "gÅ‘z-síp" }, { "input": "gÅ‘zsugár", "output": "gÅ‘z-su-gár" }, { "input": "gÅ‘zszivattyú", "output": "gÅ‘z-szi-vattyú" }, { "input": "gránátoszászlóalj", "output": "grá-ná-to-s-zász-ló-alj" }, { "input": "gúnyversszerzÅ‘", "output": "gúny-vers-szer-zÅ‘" }, { "input": "gyalogosszázad", "output": "gya-lo-gos-szá-zad" }, { "input": "gyalogoszászlóalj", "output": "gya-lo-gos-zász-ló-alj" }, { "input": "gyorsszárnyú", "output": "gyors-szár-nyú" }, { "input": "gyorsszekér", "output": "gyors-sze-kér" }, { "input": "gyorsszűrÅ‘", "output": "gyors-szű-rÅ‘" }, { "input": "gyújtásszabály", "output": "gyúj-tás-sza-bály" }, { "input": "gyújtászsinór", "output": "gyúj-tás-zsi-nór" }, { "input": "gyülekezésszabadságot", "output": "gyü-le-ke-zés-sza-bad-sá-got" }, { "input": "gyűlésszíne", "output": "gyű-lés-szí-ne" }, { "input": "habarccsal", "output": "ha-barccsal" }, { "input": "habitusszerűen", "output": "ha-bi-tus-sze-rű-en" }, { "input": "hadianyaggyár", "output": "ha-di-anyag-gyár" }, { "input": "hadsereggyűjtés", "output": "had-se-reg-gyűj-tés" }, { "input": "hajlásszög", "output": "haj-lás-szög" }, { "input": "hajósszekerce", "output": "ha-jós-sze-ker-ce" }, { "input": "hajósszemélyzet", "output": "ha-jós-sze-mély-zet" }, { "input": "hangyamászásszerű", "output": "han-gya-má-szás-sze-rű" }, { "input": "hamisszínes", "output": "ha-mis-szí-nes" }, { "input": "hallászavar", "output": "hal-lás-za-var" }, { "input": "halottasszekér", "output": "ha-lottassze-kér" }, { "input": "halottasszoba", "output": "ha-lottas-szo-ba" }, { "input": "halottasszobába", "output": "ha-lottas-szo-bá-ba" }, { "input": "hamvasszÅ‘ke", "output": "ham-vas-szÅ‘-ke" }, { "input": "hamvasszürke", "output": "ham-vas-szür-ke" }, { "input": "hanggyakorlat", "output": "hang-gya-kor-lat" }, { "input": "hanggyűjtemény", "output": "hang-gyűj-te-mény" }, { "input": "hányásszag", "output": "há-nyás-szag" }, { "input": "haragoszöld", "output": "ha-ra-gos-zöld" }, { "input": "haranggyárosok", "output": "ha-rang-gyá-ro-sok" }, { "input": "harcosszellem", "output": "har-cos-szel-lem" }, { "input": "harccselekmény", "output": "harc-cse-lek-mény" }, { "input": "harccsoport", "output": "harc-cso-port" }, { "input": "harcsor", "output": "harc-sor" }, { "input": "harmincsornyi", "output": "har-minc-sor-nyi" }, { "input": "hármasszámú", "output": "hár-mas-szá-mú" }, { "input": "hármasszak", "output": "hár-masszak" }, { "input": "Hármassziget", "output": "Hár-mas-szi-get" }, { "input": "hársszén", "output": "hárs-szén" }, { "input": "hársszenet", "output": "hárs-sze-net" }, { "input": "hártyásszárnyú", "output": "hár-tyás-szár-nyú" }, { "input": "hasszÅ‘rzet", "output": "has-szÅ‘r-zet" }, { "input": "hasszél", "output": "has-szél" }, { "input": "hasisszagot", "output": "ha-sis-sza-got" }, { "input": "hatásszélesség", "output": "ha-tás-szé-les-ség" }, { "input": "hatásszünet", "output": "ha-tás-szü-net" }, { "input": "házsárkodását", "output": "há-zsár-ko-dá-sát" }, { "input": "hazugsággyár", "output": "ha-zug-ság-gyár" }, { "input": "hegyesszög", "output": "he-gyes-szög" }, { "input": "hekusszagot", "output": "he-kus-sza-got" }, { "input": "hegyszorosszerű", "output": "hegy-szo-ros-sze-rű" }, { "input": "hentesszaktanfolyamát", "output": "hen-tesszak-tan-fo-lya-mát" }, { "input": "hirdetésszagú", "output": "hir-de-tés-sza-gú" }, { "input": "hirdetésszöveg", "output": "hir-de-tés-szö-veg" }, { "input": "hivatásszerűen", "output": "hi-va-tás-sze-rű-en" }, { "input": "hivatkozásszerű", "output": "hi-vat-ko-zás-sze-rű" }, { "input": "hívásszűrés", "output": "hí-vás-szű-rés" }, { "input": "hízelkedésszámba", "output": "hí-zel-ke-dés-szám-ba" }, { "input": "hörgésszerű", "output": "hör-gés-sze-rű" }, { "input": "hÅ‘sszínész", "output": "hÅ‘s-szí-nész" }, { "input": "hÅ‘sszövetség", "output": "hÅ‘s-szö-vet-ség" }, { "input": "hólyaggyulladás", "output": "hó-lyag-gyul-la-dás" }, { "input": "húslevesszag", "output": "hús-le-ves-szag" }, { "input": "hússzaft", "output": "hús-szaft" }, { "input": "hússzag", "output": "hús-szag" }, { "input": "hússzagú", "output": "hús-sza-gú" }, { "input": "hússzállítmány", "output": "hús-szál-lít-mány" }, { "input": "hússzállító", "output": "hús-szál-lí-tó" }, { "input": "hússzalonna", "output": "hússza-lon-na" }, { "input": "hússzekrény", "output": "hús-szek-rény" }, { "input": "hússzelet", "output": "hús-sze-let" }, { "input": "Hússziget", "output": "Hús-szi-get" }, { "input": "hússzínű", "output": "hús-szí-nű" }, { "input": "Hússzövetség", "output": "Hús-szö-vet-ség" }, { "input": "hűséggyűrűsök", "output": "hű-ség-gyű-rű-sök" }, { "input": "hűvösszemű", "output": "hű-vös-sze-mű" }, { "input": "ideggyengeség", "output": "ideg-gyen-ge-ség" }, { "input": "ideggyógyászat", "output": "ideg-gyó-gyá-szat" }, { "input": "ideggyógyintézet", "output": "ideg-gyógy-in-té-zet" }, { "input": "ideggyönge", "output": "ideg-gyön-ge" }, { "input": "ideggyötrÅ‘", "output": "ideg-gyöt-rÅ‘" }, { "input": "ideggyulladás", "output": "ideg-gyul-la-dás" }, { "input": "identitászavar", "output": "iden-ti-tás-za-var" }, { "input": "idÅ‘járásszolgálat", "output": "idÅ‘-já-rás-szol-gá-lat" }, { "input": "imádsággyűjtemény", "output": "imád-ság-gyűj-te-mény" }, { "input": "impulzusszélességét", "output": "im-pul-zus-szé-les-sé-gét" }, { "input": "inasszerep", "output": "i-nas-sze-rep" }, { "input": "inasszerepet", "output": "i-nas-sze-re-pet" }, { "input": "inasszeretetet", "output": "i-nas-sze-re-te-tet" }, { "input": "indiánnyelv", "output": "in-di-án-nyelv" }, { "input": "információsszabadság", "output": "in-for-má-ci-ós-sza-bad-ság" }, { "input": "ingyennyelvoktatás", "output": "in-gyen-nyelv-ok-ta-tás" }, { "input": "ínnyújtó", "output": "ín-nyúj-tó" }, { "input": "ínnyújtót", "output": "ín-nyúj-tót" }, { "input": "ínyencség", "output": "ínyenc-ség" }, { "input": "írásszeretet", "output": "írás-sze-re-tet" }, { "input": "ismétlésszám", "output": "is-mét-lés-szám" }, { "input": "irtásszél", "output": "ir-tás-szél" }, { "input": "istennyila", "output": "is-ten-nyi-la" }, { "input": "járásszerű", "output": "já-rás-sze-rű" }, { "input": "járásszékhely", "output": "já-rás-szék-hely" }, { "input": "jáspisszobor", "output": "jás-pis-szo-bor" }, { "input": "jegeccsoport", "output": "je-gec-cso-port" }, { "input": "jéggyártás", "output": "jég-gyár-tás" }, { "input": "jelenésszerű", "output": "je-le-nés-sze-rű" }, { "input": "jelentésszerű", "output": "je-len-tés-sze-rű" }, { "input": "jelentésszint", "output": "je-len-tés-szint" }, { "input": "jelzésszerű", "output": "jel-zés-sze-rű" }, { "input": "jósszavai", "output": "jós-sza-vai" }, { "input": "jósszelleme", "output": "jós-szel-le-me" }, { "input": "kabinnyíláson", "output": "ka-bin-nyí-lá-son" }, { "input": "kabinnyomás", "output": "ka-bin-nyo-más" }, { "input": "dizájnnyelv", "output": "di-zájnnyelv" }, { "input": "dizájnnyaklánc", "output": "di-zájn-nyak-lánc" }, { "input": "kakasszó", "output": "ka-kas-szó" }, { "input": "kalapácszengés", "output": "ka-la-pács-zen-gés" }, { "input": "kalapácszongora", "output": "ka-la-pács-zon-go-ra" }, { "input": "kamionnyi", "output": "ka-mi-on-nyi" }, { "input": "kaparásszerű", "output": "ka-pa-rás-sze-rű" }, { "input": "Kapolcs", "output": "Ka-polcs" }, { "input": "Kapolcsi", "output": "Ka-pol-csi" }, { "input": "Kapolcsra", "output": "Ka-polcs-ra" }, { "input": "Kapolcsról", "output": "Ka-polcs-ról" }, { "input": "KaposszekcsÅ‘", "output": "Ka-pos-szek-csÅ‘" }, { "input": "Kaposszerdahely", "output": "Ka-pos-szer-da-hely" }, { "input": "kapusszoba", "output": "ka-pus-szo-ba" }, { "input": "karosszék", "output": "ka-ros-szék" }, { "input": "kartácszápor", "output": "kar-tács-zá-por" }, { "input": "kartonnyi", "output": "kar-tonnyi" }, { "input": "kasszék", "output": "kas-szék" }, { "input": "katalógusszám", "output": "ka-ta-ló-gus-szám" }, { "input": "katekizmusszerű", "output": "ka-te-kiz-mus-sze-rű" }, { "input": "kavarásszerű", "output": "ka-va-rás-sze-rű" }, { "input": "kavicsszerű", "output": "ka-vics-sze-rű" }, { "input": "kavicszápor", "output": "ka-vics-zá-por" }, { "input": "kavicszátony", "output": "ka-vics-zá-tony" }, { "input": "kavicszuzalék", "output": "ka-vics-zu-zal-ék" }, { "input": "kékesszürke", "output": "ké-kes-szür-ke" }, { "input": "Kemenesszentmárton", "output": "Ke-me-nesszent-már-ton" }, { "input": "Kemenesszentpéter", "output": "Ke-me-nesszent-pé-ter" }, { "input": "képmásszerű", "output": "kép-más-sze-rű" }, { "input": "képváltásszámot", "output": "kép-vál-tás-szá-mot" }, { "input": "képzésszerű", "output": "kép-zés-sze-rű" }, { "input": "képzésszervezés", "output": "kép-zés-szer-ve-zés" }, { "input": "kerekesszék", "output": "ke-re-kes-szék" }, { "input": "keresésszolgáltató", "output": "ke-resés-szol-gál-ta-tó" }, { "input": "kérdészápor", "output": "kér-dés-zá-por" }, { "input": "kérésszerűen", "output": "ké-réssze-rű-en" }, { "input": "késszúrás", "output": "kés-szú-rás" }, { "input": "ketreccsapda", "output": "ket-rec-csap-da" }, { "input": "kevésszavú", "output": "ke-vés-sza-vú" }, { "input": "kevésszer", "output": "ke-vés-szer" }, { "input": "kerítésszaggató", "output": "ke-rí-tés-szag-ga-tó" }, { "input": "kiadászárolás", "output": "ki-a-dás-zá-ro-lás" }, { "input": "kifejlesszem", "output": "ki-fej-lesszem" }, { "input": "kihívásszerű", "output": "ki-hí-vás-sze-rű" }, { "input": "kilenccsatorna", "output": "ki-lenc-csa-tor-na" }, { "input": "kilincszörgést", "output": "ki-linc-ször-gést" }, { "input": "Kisszállás", "output": "Kis-szál-lás" }, { "input": "kisszámú", "output": "kis-szá-mú" }, { "input": "Kisszeben", "output": "Kis-sze-ben" }, { "input": "kisszínes", "output": "kis-szí-nes" }, { "input": "kisszék", "output": "kis-szék" }, { "input": "kisszekrény", "output": "kis-szek-rény" }, { "input": "Kisszentmárton", "output": "Kis-szent-már-ton" }, { "input": "kisszerű", "output": "kis-sze-rű" }, { "input": "Kissziget", "output": "Kis-szi-get" }, { "input": "kisszobában", "output": "kis-szo-bá-ban" }, { "input": "kisszótár", "output": "kis-szó-tár" }, { "input": "Kiszombor", "output": "Kis-zom-bor" }, { "input": "kisszövetkezet", "output": "kis-szö-vet-ke-zet" }, { "input": "kiszögellésszerűen", "output": "ki-szö-gel-lés-sze-rű-en" }, { "input": "Kiszsidány", "output": "Kisz-si-dány" }, { "input": "kitörésszerű", "output": "ki-tö-rés-sze-rű" }, { "input": "kitüntetésszalagokat", "output": "ki-tün-te-tés-sza-la-go-kat" }, { "input": "kivégzésszerűen", "output": "ki-vég-zés-sze-rű-en" }, { "input": "kliensszoftver", "output": "kli-ens-szoft-ver" }, { "input": "kóccsomó", "output": "kóc-cso-mó" }, { "input": "koldusszáj", "output": "kol-dus-száj" }, { "input": "koldusszakáll", "output": "kol-dus-sza-káll" }, { "input": "koldusszegény", "output": "kol-dus-sze-gény" }, { "input": "kolduszene", "output": "kol-du-s-ze-ne" }, { "input": "kommunikációsszoba", "output": "kom-mu-ni-ká-ci-ós-szo-ba" }, { "input": "komposszesszor", "output": "kom-possz-esszor" }, { "input": "komposszesszorátus", "output": "kom-possz-esszo-rá-tus" }, { "input": "kormosszürke", "output": "kor-mos-szür-ke" }, { "input": "kosszarv", "output": "kos-szarv" }, { "input": "kosszem", "output": "kos-szem" }, { "input": "kortárszenei", "output": "kor-társ-ze-nei" }, { "input": "kóruszene", "output": "kó-rus-ze-ne" }, { "input": "köhögésszerű", "output": "kö-hö-gés-sze-rű" }, { "input": "könyöklésszéles", "output": "kö-nyök-lés-szé-les" }, { "input": "könyvesszekrény", "output": "köny-ves-szek-rény" }, { "input": "kötelességgyakorlás", "output": "kö-te-les-ség-gya-kor-lás" }, { "input": "kölcsönnyakláncait", "output": "köl-csön-nyak-lán-ca-it" }, { "input": "közlekedésszervezÅ‘k", "output": "köz-le-ke-dés-szer-ve-zÅ‘k" }, { "input": "kÅ‘művesszem", "output": "kÅ‘-mű-ves-szem" }, { "input": "kÅ‘művesszerszámait", "output": "kÅ‘-mű-ves-szer-szá-ma-it" }, { "input": "konstansszimbólumainak", "output": "kons-tans-szim-bó-lu-ma-i-nak" }, { "input": "köntösszegély", "output": "kön-t-ös-sze-gély" }, { "input": "kÅ‘risszár", "output": "kÅ‘-risszár" }, { "input": "kÅ‘risszárat", "output": "kÅ‘-risszá-rat" }, { "input": "körösszakál", "output": "kö-rös-sza-kál" }, { "input": "körösszakáli", "output": "kö-rös-sza-ká-li" }, { "input": "Köröszug", "output": "Kör-ö-s-zug" }, { "input": "közsáv", "output": "köz-sáv" }, { "input": "közsereg", "output": "köz-se-reg" }, { "input": "kontaktusszám", "output": "kon-tak-tus-szám" }, { "input": "kudarcsorozat", "output": "ku-darc-so-ro-zat" }, { "input": "kulcszörgés", "output": "kulcs-zör-gés" }, { "input": "kuplunggyár", "output": "kup-lung-gyár" }, { "input": "kurucság", "output": "ku-ruc-ság" }, { "input": "küldetésszaga", "output": "kül-de-tés-sza-ga" }, { "input": "különcség", "output": "kü-lönc-ség" }, { "input": "különnyíló", "output": "kü-lön-nyí-ló" }, { "input": "labirintusszerű", "output": "la-bi-rin-tus-sze-rű" }, { "input": "lakásszentelÅ‘", "output": "la-kás-szen-te-lÅ‘" }, { "input": "lakásszövetkezet", "output": "la-kás-szö-vet-ke-zet" }, { "input": "lakásszerzÅ‘k", "output": "la-kás-szer-zÅ‘k" }, { "input": "lakosszám", "output": "la-kosszám" }, { "input": "lánccsörgés", "output": "lánc-csör-gés" }, { "input": "láncszem", "output": "lánc-szem" }, { "input": "lánggyújtogató", "output": "láng-gyúj-to-ga-tó" }, { "input": "laposszárú", "output": "la-posszá-rú" }, { "input": "látásszög", "output": "lá-tás-szög" }, { "input": "látászavar", "output": "lá-tás-za-var" }, { "input": "látomásszerű", "output": "lá-to-más-sze-rű" }, { "input": "lazaccsontváz", "output": "la-zaccsont-váz" }, { "input": "lázsebességgel", "output": "láz-se-bes-ség-gel" }, { "input": "lázsóhajtás", "output": "láz-só-haj-tás" }, { "input": "lebegésszerű", "output": "le-be-gés-sze-rű" }, { "input": "léggyök", "output": "lég-gyök" }, { "input": "léggyökér", "output": "lég-gyö-kér" }, { "input": "lejtésszög", "output": "lej-tés-szög" }, { "input": "lejtésszöge", "output": "lej-tés-szö-ge" }, { "input": "lesszabály", "output": "les-sza-bály" }, { "input": "lemezstúdió", "output": "le-mez-stú-dió" }, { "input": "lengésszabály", "output": "len-gés-sza-bály" }, { "input": "lexikonnyi", "output": "le-xi-kon-nyi" }, { "input": "légzésszám", "output": "lég-zés-szám" }, { "input": "légzésszerű", "output": "lég-zés-sze-rű" }, { "input": "légzészavar", "output": "lég-zés-za-var" }, { "input": "lépcsÅ‘sszárnyú", "output": "lép-csÅ‘s-szár-nyú" }, { "input": "lépésszám", "output": "lé-pés-szám" }, { "input": "lépészaj", "output": "lé-pés-zaj" }, { "input": "léptennyomon", "output": "lép-ten-nyo-mon" }, { "input": "levesszag", "output": "le-ves-szag" }, { "input": "levesszagot", "output": "le-ves-sza-got" }, { "input": "levesszedÅ‘", "output": "le-ves-sze-dÅ‘" }, { "input": "liberty", "output": "li-berty" }, { "input": "licenccsalád", "output": "li-cenccsa-lád" }, { "input": "licencsértés", "output": "li-cenc-s-ér-tés" }, { "input": "liszteszacskó", "output": "lisz-teszacs-kó" }, { "input": "loggyűjtemény", "output": "log-gyűj-te-mény" }, { "input": "lovasszázad", "output": "lo-vas-szá-zad" }, { "input": "lovasszekeret", "output": "lo-vas-sze-ke-ret" }, { "input": "lökésszám", "output": "lö-kés-szám" }, { "input": "lökésszerű", "output": "lö-kés-sze-rű" }, { "input": "lÅ‘porosszekerek", "output": "lÅ‘-po-ros-sze-ke-rek" }, { "input": "lÅ‘résszerű", "output": "lÅ‘-rés-sze-rű" }, { "input": "lugasszerű", "output": "lu-gas-sze-rű" }, { "input": "luxusszálloda", "output": "lu-xus-szál-lo-da" }, { "input": "macskakaparásszerű", "output": "macs-ka-ka-pa-rás-sze-rű" }, { "input": "magánnyelvmesterek", "output": "ma-gán-nyelv-mes-te-rek" }, { "input": "magánnyaralók", "output": "ma-gán-nya-ra-lók" }, { "input": "magasszárú", "output": "ma-gasszá-rú" }, { "input": "magánnyugdíjpénztár", "output": "ma-gán-nyug-díj-pénz-tár" }, { "input": "maggyűjteményrÅ‘l", "output": "mag-gyűj-te-mény-rÅ‘l" }, { "input": "mágnásszámba", "output": "mág-nás-szám-ba" }, { "input": "mágnesszalag", "output": "mág-nes-sza-lag" }, { "input": "mágnesszerű", "output": "mág-nes-sze-rű" }, { "input": "mágneszár", "output": "mág-nes-zár" }, { "input": "malacság", "output": "ma-lac-ság" }, { "input": "malacsült", "output": "ma-lac-sült" }, { "input": "málhásszekér", "output": "mál-hás-sze-kér" }, { "input": "málhásszekereiket", "output": "mál-hás-sze-ke-re-i-ket" }, { "input": "mandarinnyelv", "output": "man-da-rin-nyelv" }, { "input": "Marosszék", "output": "Ma-ros-szék" }, { "input": "Marosszentgyörgy", "output": "Ma-ros-szent-györgy" }, { "input": "Maroszug", "output": "Ma-ro-s-zug" }, { "input": "Martraversszal", "output": "Mart-ra-vers-szal" }, { "input": "matracsor", "output": "mat-rac-sor" }, { "input": "másszínű", "output": "más-szí-nű" }, { "input": "másszor", "output": "más-szor" }, { "input": "másszóval", "output": "más-szó-val" }, { "input": "másszÅ‘rűek", "output": "másszÅ‘-rű-ek" }, { "input": "mécsesszem", "output": "mé-csesszem" }, { "input": "medresszék", "output": "med-resszék" }, { "input": "megfázásszerű", "output": "meg-fá-zás-sze-rű" }, { "input": "meggybefÅ‘tt", "output": "meggy-be-fÅ‘tt" }, { "input": "meggyel", "output": "meggyel" }, { "input": "meggyen", "output": "meggyen" }, { "input": "meggyes", "output": "meggyes" }, { "input": "Meggyesi", "output": "Meggye-si" }, { "input": "meggyet", "output": "meggyet" }, { "input": "meggyfa", "output": "meggy-fa" }, { "input": "meggyhez", "output": "meggy-hez" }, { "input": "meggyízű", "output": "meggy-ízű" }, { "input": "meggyként", "output": "meggy-ként" }, { "input": "meggylekvár", "output": "meggy-lek-vár" }, { "input": "meggymag", "output": "meggy-mag" }, { "input": "meggynek", "output": "meggy-nek" }, { "input": "meggypiros", "output": "meggy-pi-ros" }, { "input": "meggysör", "output": "meggy-sör" }, { "input": "meggyszín", "output": "meggy-szín" }, { "input": "meggytÅ‘l", "output": "meggy-tÅ‘l" }, { "input": "meggytÅ‘l", "output": "meggy-tÅ‘l" }, { "input": "meggyvörös", "output": "meggy-vö-rös" }, { "input": "meggyzÅ‘", "output": "meggy-zÅ‘" }, { "input": "meglepetésszoftver", "output": "meg-le-pe-tés-szoft-ver" }, { "input": "méhesszín", "output": "mé-hes-szín" }, { "input": "méhesszínben", "output": "mé-hes-szín-ben" }, { "input": "ménesszárnyékok", "output": "mé-nes-szár-nyé-kok" }, { "input": "méreggyökeret", "output": "mé-reg-gyö-ke-ret" }, { "input": "méreggyökérré", "output": "mé-reg-gyö-kér-ré" }, { "input": "méreggyümölccsé", "output": "mé-reg-gyü-mölccsé" }, { "input": "mérkÅ‘zésszervezÅ‘", "output": "mér-kÅ‘-zés-szer-ve-zÅ‘" }, { "input": "mérleggyár", "output": "mér-leg-gyár" }, { "input": "meszesszürke", "output": "me-szes-szür-ke" }, { "input": "mézsárga", "output": "méz-sár-ga" }, { "input": "mézser", "output": "méz-ser" }, { "input": "mézsör", "output": "méz-sör" }, { "input": "Mikosszéplak", "output": "Mi-kosszép-lak" }, { "input": "mikulásszerkó", "output": "mi-ku-lás-szer-kó" }, { "input": "mikrofonnyílás", "output": "mik-ro-fon-nyí-lás" }, { "input": "mikronnyi", "output": "mik-ronnyi" }, { "input": "mitesszer", "output": "mi-tesszer" }, { "input": "mitugrásszal", "output": "mit-ug-rásszal" }, { "input": "mohaszöld", "output": "mo-ha-szöld" }, { "input": "molosszer", "output": "mo-losszer" }, { "input": "mókusszerű", "output": "mó-kus-sze-rű" }, { "input": "mókusszÅ‘r", "output": "mó-kus-szÅ‘r" }, { "input": "motorosszán", "output": "mo-to-rosszán" }, { "input": "mozgásszerű", "output": "moz-gás-sze-rű" }, { "input": "mozgászavar", "output": "moz-gás-za-var" }, { "input": "munkásszálló", "output": "mun-kás-szál-ló" }, { "input": "muzsikusszem", "output": "mu-zsi-kus-szem" }, { "input": "műjéggyár", "output": "mű-jég-gyár" }, { "input": "működészavar", "output": "mű-kö-dés-za-var" }, { "input": "művelÅ‘désszervezÅ‘", "output": "mű-ve-lÅ‘-dés-szer-ve-zÅ‘" }, { "input": "nyálasszájú", "output": "nyá-las-szá-jú" }, { "input": "nászutazásszerű", "output": "nász-uta-zás-sze-rű" }, { "input": "nedvesszürke", "output": "ned-ves-szür-ke" }, { "input": "négyzetyard", "output": "négy-zet-yard" }, { "input": "nehézség", "output": "ne-héz-ség" }, { "input": "nehézsúlyú", "output": "ne-héz-sú-lyú" }, { "input": "Nemesszalók", "output": "Ne-messza-lók" }, { "input": "Nemesszentandrás", "output": "Ne-messzent-and-rás" }, { "input": "nemesszÅ‘rme", "output": "ne-messzÅ‘r-me" }, { "input": "nemezsapka", "output": "ne-mez-sap-ka" }, { "input": "nemezsapkát", "output": "ne-mez-sap-kát" }, { "input": "nemezsátor", "output": "ne-mez-sá-tor" }, { "input": "nercstóla", "output": "nerc-stó-la" }, { "input": "népességgyarapodás", "output": "né-pes-ség-gya-ra-po-dás" }, { "input": "neutronnyalábokat", "output": "ne-ut-ron-nya-lá-bo-kat" }, { "input": "nyargonccsizma", "output": "nyar-gonc-csiz-ma" }, { "input": "nyereggyártók", "output": "nye-reg-gyár-tók" }, { "input": "nyikkanásszerű", "output": "nyik-ka-nás-sze-rű" }, { "input": "nyilasszervezet", "output": "nyi-las-szer-ve-zet" }, { "input": "nyílászáró", "output": "nyí-lás-zá-ró" }, { "input": "nyolcvannyolc", "output": "nyolc-van-nyolc" }, { "input": "nyolccsatornás", "output": "nyolc-csa-tor-nás" }, { "input": "nyolcsebességes", "output": "nyol-cse-bes-sé-ges" }, { "input": "nyomásszabályzó", "output": "nyo-más-sza-bály-zó" }, { "input": "nyomásszerű", "output": "nyo-más-sze-rű" }, { "input": "nyomásszinten", "output": "nyo-más-szin-ten" }, { "input": "oktatásszociológiai", "output": "ok-ta-tás-szo-cio-ló-gi-ai" }, { "input": "ordasszÅ‘rű", "output": "ord-asszÅ‘-rű" }, { "input": "orgazmusszerű", "output": "or-gaz-mus-sze-rű" }, { "input": "óriásszalamandra", "output": "óri-ás-sza-la-mand-ra" }, { "input": "oroszlánnyom", "output": "orosz-lán-nyom" }, { "input": "orvosszakértÅ‘", "output": "or-vos-szak-ér-tÅ‘" }, { "input": "orvosszázados", "output": "or-vos-szá-za-dos" }, { "input": "orvosszemély", "output": "or-vos-sze-mély" }, { "input": "orvosszereikkel", "output": "or-vos-sze-re-ik-kel" }, { "input": "orvosszerű", "output": "or-vos-sze-rű" }, { "input": "orvosszövetség", "output": "or-vos-szö-vet-ség" }, { "input": "óceánnyi", "output": "óce-án-nyi" }, { "input": "óceánnal", "output": "óce-án-nal" }, { "input": "óceánon", "output": "óce-á-non" }, { "input": "óvodásszintű", "output": "óvo-dás-szin-tű" }, { "input": "ökrösszekér", "output": "ök-rössze-kér" }, { "input": "önállásszerű", "output": "ön-ál-lás-sze-rű" }, { "input": "önnyomása", "output": "ön-nyo-má-sa" }, { "input": "önnyomatú", "output": "ön-nyo-ma-tú" }, { "input": "önnyugdíjazását", "output": "ön-nyug-dí-ja-zá-sát" }, { "input": "örökséggyűjteményben", "output": "örök-ség-gyűj-te-mény-ben" }, { "input": "örvénylésszerű", "output": "ör-vény-lés-sze-rű" }, { "input": "Å‘sszármazású", "output": "Å‘s-szár-ma-zá-sú" }, { "input": "Å‘sszékelyek", "output": "Å‘s-szé-ke-lyek" }, { "input": "összekeresgélt", "output": "össze-ke-res-gélt" }, { "input": "összekéregetett", "output": "össze-ké-re-ge-tett" }, { "input": "összekéregettek", "output": "össze-ké-re-get-tek" }, { "input": "Å‘sszel", "output": "Å‘sszel" }, { "input": "Å‘sszellem", "output": "Å‘s-szel-lem" }, { "input": "ötvösszakmai", "output": "öt-vös-szak-mai" }, { "input": "Å‘zsebesen", "output": "Å‘z-se-be-sen" }, { "input": "Å‘zsörét", "output": "Å‘z-sö-rét" }, { "input": "Å‘zsuta", "output": "Å‘z-su-ta" }, { "input": "padlásszoba", "output": "pad-lás-szo-ba" }, { "input": "padlászugoly", "output": "pad-lás-zu-goly" }, { "input": "palócság", "output": "pa-lóc-ság" }, { "input": "paprikásszalonna", "output": "pap-ri-kássza-lon-na" }, { "input": "papirosszeletre", "output": "pa-pi-ros-sze-let-re" }, { "input": "papucszápor", "output": "pa-puc-s-zá-por" }, { "input": "párnásszék", "output": "pár-nás-szék" }, { "input": "pátosszal", "output": "pá-tosszal" }, { "input": "pedagógusszervezet", "output": "pe-da-gó-gus-szer-ve-zet" }, { "input": "pedagógusszobába", "output": "pe-da-gó-gus-szo-bá-ba" }, { "input": "pedagógusszövetség", "output": "pe-da-gó-gus-szö-vet-ség" }, { "input": "pedagógussztrájk", "output": "pe-da-gó-gus-sztrájk" }, { "input": "pénzeszacskó", "output": "pén-zeszacs-kó" }, { "input": "pénzeszközök", "output": "pénz-esz-kö-zök" }, { "input": "pénzeszsák", "output": "pén-zes-zsák" }, { "input": "pénzzsidóságban", "output": "pénz-zsi-dó-ság-ban" }, { "input": "pénzsegély", "output": "pénz-se-gély" }, { "input": "pénzsorozat", "output": "pénz-so-ro-zat" }, { "input": "pénzsóvár", "output": "pénz-só-vár" }, { "input": "pénzszűke", "output": "pénz-szű-ke" }, { "input": "perecsütÅ‘nÅ‘", "output": "pe-rec-sü-tÅ‘-nÅ‘" }, { "input": "pergamennyaláb", "output": "per-ga-men-nya-láb" }, { "input": "periódusszámának", "output": "pe-ri-ó-dus-szá-má-nak" }, { "input": "piaccsarnok", "output": "pi-ac-csar-nok" }, { "input": "Pilisszántó", "output": "Pi-lis-szán-tó" }, { "input": "Pilisszentkereszt", "output": "Pi-lis-szent-ke-reszt" }, { "input": "pirítósszeleteken", "output": "pi-rí-tós-sze-le-te-ken" }, { "input": "pirosszem", "output": "pi-ros-szem" }, { "input": "piroszászlós", "output": "pi-ros-zász-lós" }, { "input": "piszkosszÅ‘ke", "output": "pisz-kos-szÅ‘-ke" }, { "input": "piszkosszürke", "output": "pisz-kos-szür-ke" }, { "input": "piszkoszöld", "output": "pisz-kos-zöld" }, { "input": "pisztolylövésszerűen", "output": "pisz-toly-lö-vés-sze-rű-en" }, { "input": "plüsszerű", "output": "plüssze-rű" }, { "input": "plüsszsák", "output": "plüss-zsák" }, { "input": "plüsszsiráf", "output": "plüss-zsi-ráf" }, { "input": "plüsszsölyét", "output": "plüsszs-ö-lyét" }, { "input": "pokróccsík", "output": "pok-róc-csík" }, { "input": "polcsor", "output": "polc-sor" }, { "input": "policájkomisszér", "output": "po-li-cáj-ko-missz-ér" }, { "input": "porcsérülés", "output": "porc-sé-rü-lés" }, { "input": "porcelánnyúl", "output": "por-ce-lán-nyúl" }, { "input": "portásszoba", "output": "por-tás-szo-ba" }, { "input": "postásszakszervezet", "output": "pos-tás-szak-szer-ve-zet" }, { "input": "postássztrájk", "output": "pos-tás-sztrájk" }, { "input": "pólusszámhoz", "output": "pó-lus-szám-hoz" }, { "input": "precízség", "output": "pre-cíz-ség" }, { "input": "présszerű", "output": "prés-sze-rű" }, { "input": "priamossza", "output": "pria-mos-sza" }, { "input": "princséged", "output": "princsé-ged" }, { "input": "proggyak", "output": "prog-gyak" }, { "input": "protonnyalábok", "output": "pro-ton-nya-lá-bok" }, { "input": "pszichológusszövetség", "output": "pszi-cho-ló-gus-szö-vet-ség" }, { "input": "pulzusszám", "output": "pul-zus-szám" }, { "input": "puskásszakasz", "output": "pus-kás-sza-kasz" }, { "input": "puskásszázad", "output": "pus-kás-szá-zad" }, { "input": "puskászászlóalj", "output": "pus-ká-s-zász-ló-alj" }, { "input": "rajzsablon", "output": "rajz-sab-lon" }, { "input": "rajzsorozatban", "output": "rajz-so-ro-zat-ban" }, { "input": "rácság", "output": "rác-ság" }, { "input": "rádiósszoba", "output": "rá-di-ós-szo-ba" }, { "input": "rakásszámra", "output": "ra-kás-szám-ra" }, { "input": "Rákosszentmihály", "output": "Rá-kos-szent-mi-hály" }, { "input": "rándulásszerűen", "output": "rán-du-lás-sze-rű-en" }, { "input": "rántásszag", "output": "rán-tás-szag" }, { "input": "rántásszerű", "output": "rán-tás-sze-rű" }, { "input": "realitásszagú", "output": "re-a-li-tás-sza-gú" }, { "input": "recésszárú", "output": "re-cés-szá-rú" }, { "input": "régiséggyűjtÅ‘", "output": "ré-gi-ség-gyűj-tÅ‘" }, { "input": "rémisszétek", "output": "ré-misszé-tek" }, { "input": "részárás", "output": "rés-zárás" }, { "input": "rendelkezésszerű", "output": "ren-del-ke-zés-sze-rű" }, { "input": "repülésszerű", "output": "re-pü-lés-sze-rű" }, { "input": "repülÅ‘sszárny", "output": "re-pü-lÅ‘s-szárny" }, { "input": "rézsut", "output": "rézsut" }, { "input": "ricinusszerű", "output": "ri-ci-nus-sze-rű" }, { "input": "ritkasággyűjtÅ‘", "output": "rit-ka-ság-gyűj-tÅ‘" }, { "input": "ritmusszabályozó", "output": "rit-mus-sza-bá-lyo-zó" }, { "input": "ritmuszavar", "output": "rit-mus-za-var" }, { "input": "rizszabálókat", "output": "rizs-za-bá-ló-kat" }, { "input": "robbanásszerű", "output": "rob-ba-nás-sze-rű" }, { "input": "robbanászajt", "output": "rob-ba-nászajt" }, { "input": "rongyosszélű", "output": "ron-gyos-szé-lű" }, { "input": "rosszemlékű", "output": "ros-szem-lé-kű" }, { "input": "rothadásszag", "output": "rot-ha-dás-szag" }, { "input": "rovásszerűen", "output": "ro-vás-sze-rű-en" }, { "input": "rózsásszÅ‘kés", "output": "ró-zsás-szÅ‘-kés" }, { "input": "rozszabálás", "output": "rozsza-bá-lás" }, { "input": "rubinnyaklánc", "output": "ru-bin-nyak-lánc" }, { "input": "ruhásszekrény", "output": "ru-hás-szek-rény" }, { "input": "ruhásszobámé", "output": "ru-hás-szo-bá-mé" }, { "input": "szanitéccsoport", "output": "sza-ni-téc-cso-port" }, { "input": "sárgásszínű", "output": "sár-gás-szí-nű" }, { "input": "sasszárnyú", "output": "sas-szár-nyú" }, { "input": "sasszeg", "output": "sas-szeg" }, { "input": "sásszéna", "output": "sás-szé-na" }, { "input": "sásszerű", "output": "sás-sze-rű" }, { "input": "sasszömöd", "output": "sasszö-möd" }, { "input": "sátáncsapat", "output": "sá-tán-csa-pat" }, { "input": "szeggyár", "output": "szeg-gyár" }, { "input": "selymesszÅ‘ke", "output": "sely-messzÅ‘-ke" }, { "input": "sereggyűjtés", "output": "se-reg-gyűj-tés" }, { "input": "sertésszelet", "output": "ser-tés-sze-let" }, { "input": "sertésszűzpecsenyére", "output": "ser-tés-szűz-pe-cse-nyé-re" }, { "input": "sertészsír", "output": "ser-tés-zsír" }, { "input": "szénnyomokat", "output": "szén-nyo-mo-kat" }, { "input": "sonkásszelet", "output": "son-kás-sze-let" }, { "input": "sonkásszerű", "output": "son-kás-sze-rű" }, { "input": "sonkászsemle", "output": "son-kás-zsem-le" }, { "input": "sorscsapásszerű", "output": "sors-csa-pás-sze-rű" }, { "input": "spanyolmeggyen", "output": "spa-nyol-meggyen" }, { "input": "spiccszűrÅ‘be", "output": "spicc-szű-rÅ‘-be" }, { "input": "stadionnyi", "output": "sta-di-on-nyi" }, { "input": "stílusszerű", "output": "stí-lus-sze-rű" }, { "input": "stílusszerkesztÅ‘", "output": "stí-lus-szer-kesz-tÅ‘" }, { "input": "sugárzásszerű", "output": "su-gár-zás-sze-rű" }, { "input": "sugárzásszintek", "output": "su-gár-zás-szin-tek" }, { "input": "suhanccsürhe", "output": "su-hanccsür-he" }, { "input": "suhancsereg", "output": "su-han-cse-reg" }, { "input": "szaglásszék", "output": "szag-lás-szék" }, { "input": "szalonnyelv", "output": "sza-lon-nyelv" }, { "input": "szalonnyelven", "output": "sza-lon-nyel-ven" }, { "input": "szállodásszövetség", "output": "szál-lo-dás-szö-vet-ség" }, { "input": "Szamosszeg", "output": "Sza-mos-szeg" }, { "input": "szárazság", "output": "szá-raz-ság" }, { "input": "szárazsült", "output": "szá-raz-sült" }, { "input": "szarvasszív", "output": "szar-vasszív" }, { "input": "szarvaszsír", "output": "szar-vaszsír" }, { "input": "szénásszekér", "output": "szé-nás-sze-kér" }, { "input": "szezonnyitó", "output": "sze-zon-nyi-tó" }, { "input": "szentségesszűzmáriám", "output": "szent-ség-esszűz-má-ri-ám" }, { "input": "szentséggyalázás", "output": "szent-ség-gya-lá-zás" }, { "input": "Szepesszombat", "output": "Sze-pesszom-bat" }, { "input": "szerzÅ‘désszám", "output": "szer-zÅ‘-dés-szám" }, { "input": "szerzÅ‘désszegés", "output": "szer-zÅ‘-dés-sze-gés" }, { "input": "szerzÅ‘désszegÅ‘", "output": "szer-zÅ‘-dés-sze-gÅ‘" }, { "input": "szétossza", "output": "szét-ossza" }, { "input": "szétosszák", "output": "szét-osszák" }, { "input": "Szilvásszentmárton", "output": "Szil-vás-szent-már-ton" }, { "input": "szindikátusszervezÅ‘", "output": "szin-di-ká-tus-szer-ve-zÅ‘" }, { "input": "színnyomás", "output": "szín-nyo-más" }, { "input": "szocsegély", "output": "szocs-egély" }, { "input": "szódásszifon", "output": "szó-dás-szi-fon" }, { "input": "szólásszabadság", "output": "szó-lás-sza-bad-ság" }, { "input": "szokásszerű", "output": "szo-kás-sze-rű" }, { "input": "szólásszapulás", "output": "szó-lás-sza-pu-lás" }, { "input": "szórakozásszámba", "output": "szó-ra-ko-zás-szám-ba" }, { "input": "szorongásszerű", "output": "szo-ron-gás-sze-rű" }, { "input": "szorongásszint", "output": "szo-ron-gás-szint" }, { "input": "szöggyár", "output": "szög-gyár" }, { "input": "szöveggyűjtemény", "output": "szö-veg-gyűj-te-mény" }, { "input": "szÅ‘nyeggyár", "output": "szÅ‘-nyeg-gyár" }, { "input": "szúnyoggyérítés", "output": "szú-nyog-gyé-rí-tés" }, { "input": "szúrásszerű", "output": "szú-rás-sze-rű" }, { "input": "szúrósszemű", "output": "szú-rós-sze-mű" }, { "input": "születésszabályozás", "output": "szü-le-tés-sza-bá-lyo-zás" }, { "input": "szűzsült", "output": "szűz-sült" }, { "input": "taxisszurkálás", "output": "ta-xis-szur-ká-lás" }, { "input": "tágulásszabály", "output": "tá-gu-lás-sza-bály" }, { "input": "társalgásszámba", "output": "tár-sal-gás-szám-ba" }, { "input": "taggyűlés", "output": "tag-gyű-lés" }, { "input": "tánccsoport", "output": "tánc-cso-port" }, { "input": "társalgásszerű", "output": "tár-sal-gás-sze-rű" }, { "input": "társszekér", "output": "társ-sze-kér" }, { "input": "társszövetség", "output": "társ-szö-vet-ség" }, { "input": "tehetséggyár", "output": "te-het-ség-gyár" }, { "input": "teásszervíz", "output": "te-ás-szer-víz" }, { "input": "tejfölösszájú", "output": "tej-fö-lös-szá-jú" }, { "input": "teknÅ‘sszámlálás", "output": "tek-nÅ‘s-szám-lá-lás" }, { "input": "településszerkezet", "output": "te-le-pü-lés-szer-ke-zet" }, { "input": "települészónájára", "output": "te-le-pü-lés-zó-ná-já-ra" }, { "input": "templomosszakértÅ‘", "output": "temp-lo-mos-szak-ér-tÅ‘" }, { "input": "tetszészaj", "output": "tet-szés-zaj" }, { "input": "tetszészsivaj", "output": "tet-szés-z-si-vaj" }, { "input": "tigrisszemek", "output": "tig-ris-sze-mek" }, { "input": "tigrisszerű", "output": "tig-ris-sze-rű" }, { "input": "tisztséggyűjtemény", "output": "tiszt-ség-gyűj-te-mény" }, { "input": "tipusszám", "output": "ti-pus-szám" }, { "input": "típusszám", "output": "tí-pus-szám" }, { "input": "típusszöveg", "output": "tí-pus-szö-veg" }, { "input": "típuszubbony", "output": "tí-pu-s-zub-bony" }, { "input": "titkosszolgálat", "output": "tit-kos-szol-gá-lat" }, { "input": "tizedesszállás", "output": "ti-ze-desszál-lás" }, { "input": "tízgallonnyi", "output": "tíz-gal-lonnyi" }, { "input": "tojászápor", "output": "to-jás-zá-por" }, { "input": "tojásszerű", "output": "to-jás-sze-rű" }, { "input": "topázsárgája", "output": "to-pá-zsár-gá-ja" }, { "input": "torzság", "output": "torz-ság" }, { "input": "többesszám", "output": "töb-bessz-ám" }, { "input": "töltésszabályozó", "output": "töl-tés-sza-bá-lyo-zó" }, { "input": "töltésszám", "output": "töl-tés-szám" }, { "input": "töltésszerűen", "output": "töl-tés-sze-rű-en" }, { "input": "töltésszakasz", "output": "töl-tés-sza-kasz" }, { "input": "törlesszem", "output": "tör-lesszem" }, { "input": "tövisszár", "output": "tö-vis-szár" }, { "input": "tövisszúrás", "output": "tö-vis-szú-rás" }, { "input": "tÅ‘zeggyapot", "output": "tÅ‘-zeg-gya-pot" }, { "input": "trichinnyavalya", "output": "tri-chinnya-va-lya" }, { "input": "tudásszint", "output": "tu-dás-szint" }, { "input": "tudásszomj", "output": "tu-dás-szomj" }, { "input": "turizmusszektor", "output": "tu-riz-mus-szek-tor" }, { "input": "tükrösszélű", "output": "tük-rösszé-lű" }, { "input": "tüntetésszerűen", "output": "tün-te-tés-sze-rű-en" }, { "input": "tüzesszemű", "output": "tü-zes-sze-mű" }, { "input": "tűzzsonglÅ‘r", "output": "tűz-zsong-lÅ‘r" }, { "input": "tűzsebesség", "output": "tűz-se-bes-ség" }, { "input": "tűzsugár", "output": "tűz-su-gár" }, { "input": "udvaroncsereg", "output": "ud-va-ron-cse-reg" }, { "input": "ugrásszerűen", "output": "ug-rás-sze-rű-en" }, { "input": "ugrásszögének", "output": "ug-rás-szö-gé-nek" }, { "input": "újoncság", "output": "újonc-ság" }, { "input": "ulánusszázad", "output": "ulá-nusszá-zad" }, { "input": "university", "output": "uni-ver-sity" }, { "input": "utalásszerűen", "output": "uta-lás-sze-rű-en" }, { "input": "utalásszinten", "output": "uta-lás-szin-ten" }, { "input": "utánpótlásszállítmánnyal", "output": "után-pót-lásszál-lít-mánnyal" }, { "input": "utánnyomás", "output": "után-nyo-más" }, { "input": "utasszállító", "output": "utas-szál-lí-tó" }, { "input": "utasszám", "output": "utas-szám" }, { "input": "utasszerep", "output": "utassze-rep" }, { "input": "utasszint", "output": "utasszint" }, { "input": "utasszolgálat", "output": "utasszol-gá-lat" }, { "input": "utasításszavakkal", "output": "uta-sí-tás-sza-vak-kal" }, { "input": "utazásszerű", "output": "uta-zás-sze-rű" }, { "input": "utazásszervezÅ‘", "output": "uta-zás-szer-ve-zÅ‘" }, { "input": "ülésszak", "output": "ülés-szak" }, { "input": "ülésszak", "output": "ülés-szak" }, { "input": "üstökösszerű", "output": "üs-tö-kös-sze-rű" }, { "input": "ütésszerű", "output": "ütés-sze-rű" }, { "input": "ütészápor", "output": "ütés-zá-por" }, { "input": "üveggyapot", "output": "üveg-gya-pot" }, { "input": "üveggyártás", "output": "üveg-gyár-tás" }, { "input": "üveggyöngy", "output": "üveg-gyöngy" }, { "input": "üveggyűrű", "output": "üveg-gyű-rű" }, { "input": "vagdalthússzerű", "output": "vag-dalt-hús-sze-rű" }, { "input": "vagonnyi", "output": "va-gon-nyi" }, { "input": "vakarccsal", "output": "va-karccsal" }, { "input": "vallásszabadság", "output": "val-lás-sza-bad-ság" }, { "input": "vallásszociológus", "output": "val-lás-szo-cio-ló-gus" }, { "input": "vallomásszámba", "output": "val-lo-más-szám-ba" }, { "input": "vállpereccsontjából", "output": "váll-pe-rec-csont-já-ból" }, { "input": "Vámosszabadi", "output": "Vá-mos-sza-ba-di" }, { "input": "városszépe", "output": "vá-ros-szé-pe" }, { "input": "városszerte", "output": "vá-ros-szer-te" }, { "input": "várossziluett", "output": "vá-ros-szi-lu-ett" }, { "input": "városzajon", "output": "vá-rosza-jon" }, { "input": "városzajt", "output": "vá-roszajt" }, { "input": "városzsarnok", "output": "vá-roszsar-nok" }, { "input": "vasasszakosztály", "output": "va-sas-szak-osz-tály" }, { "input": "vasutassztrájk", "output": "vas-utas-sztrájk" }, { "input": "vasszállítmány", "output": "vas-szál-lít-mány" }, { "input": "Vaszar", "output": "Vas-zar" }, { "input": "Vázsnok", "output": "Vázs-nok" }, { "input": "végiggyalogolhatja", "output": "vé-gig-gya-lo-gol-hat-ja" }, { "input": "végiggyakorolni", "output": "vé-gig-gya-ko-rol-ni" }, { "input": "vendéggyermek", "output": "ven-dég-gyer-mek" }, { "input": "vendéggyülekezet", "output": "ven-dég-gyü-le-ke-zet" }, { "input": "veresszakállú", "output": "ve-ressza-kál-lú" }, { "input": "veresszemű", "output": "ve-res-sze-mű" }, { "input": "versszak", "output": "vers-szak" }, { "input": "versszakában", "output": "vers-sza-ká-ban" }, { "input": "versszerű", "output": "vers-sze-rű" }, { "input": "versszeretÅ‘", "output": "vers-sze-re-tÅ‘" }, { "input": "vértesszázad", "output": "vér-tesszá-zad" }, { "input": "vértesszázadbeli", "output": "vér-tesszá-zad-be-li" }, { "input": "VértesszÅ‘lÅ‘s", "output": "Vér-tes-szÅ‘-lÅ‘s" }, { "input": "vetésszalag", "output": "ve-tés-sza-lag" }, { "input": "viccsor", "output": "viccsor" }, { "input": "világosszÅ‘ke", "output": "vi-lá-gos-szÅ‘-ke" }, { "input": "világosszürke", "output": "vi-lá-gos-szür-ke" }, { "input": "világossággyújtásra", "output": "vi-lá-gos-ság-gyúj-tás-ra" }, { "input": "világgyűlölÅ‘", "output": "vi-lág-gyű-lö-lÅ‘" }, { "input": "villanásszerűen", "output": "vil-la-nás-sze-rű-en" }, { "input": "villamosszék", "output": "vil-la-mos-szék" }, { "input": "villamosszerű", "output": "vil-la-mos-sze-rű" }, { "input": "visszaélésszerű", "output": "vissza-élés-sze-rű" }, { "input": "virággyapjaikat", "output": "vi-rág-gyap-ja-i-kat" }, { "input": "virággyűjtemény", "output": "vi-rág-gyűj-te-mény" }, { "input": "virággyűjtés", "output": "vi-rág-gyűj-tés" }, { "input": "virgoncság", "output": "vir-gonc-ság" }, { "input": "vírusszerű", "output": "ví-rus-sze-rű" }, { "input": "visually", "output": "vi-su-ally" }, { "input": "viselkedésszerű", "output": "vi-sel-ke-dés-sze-rű" }, { "input": "viselkedészavar", "output": "vi-sel-ke-dés-za-var" }, { "input": "visszér", "output": "vissz-ér" }, { "input": "visszeres", "output": "vissz-eres" }, { "input": "visszérműtét", "output": "vissz-ér-mű-tét" }, { "input": "vitorlásszezon", "output": "vi-tor-lás-sze-zon" }, { "input": "vitrinnyi", "output": "vit-rin-nyi" }, { "input": "vizeleteszacskó", "output": "vi-ze-le-teszacs-kó" }, { "input": "vizeszsemle", "output": "vi-zes-z-sem-le" }, { "input": "vízfolyásszerű", "output": "víz-fo-lyás-sze-rű" }, { "input": "vízsáv", "output": "víz-sáv" }, { "input": "vízsivatag", "output": "víz-si-va-tag" }, { "input": "vízesésszerűen", "output": "víz-esés-sze-rű-en" }, { "input": "vízsodor", "output": "víz-so-dor" }, { "input": "vonósszerenád", "output": "vo-nós-sze-re-nád" }, { "input": "vonószenekar", "output": "vo-nós-ze-ne-kar" }, { "input": "vörhenyesszÅ‘ke", "output": "vör-he-nyesszÅ‘-ke" }, { "input": "vörösesszÅ‘ke", "output": "vö-rö-ses-szÅ‘-ke" }, { "input": "vörösesszÅ‘ke", "output": "vö-rö-ses-szÅ‘-ke" }, { "input": "vörösszakállú", "output": "vö-rös-sza-kál-lú" }, { "input": "vörösszem", "output": "vörös-szem" }, { "input": "vörösszínű", "output": "vö-rös-szí-nű" }, { "input": "vörösszÅ‘ke", "output": "vö-rösszÅ‘-ke" }, { "input": "vöröszászló", "output": "vör-ö-s-zász-ló" }, { "input": "webesszolgáltatás", "output": "we-besszol-gál-ta-tás" }, { "input": "zaklatásszámba", "output": "zak-la-tás-szám-ba" }, { "input": "záloggyűrűmet", "output": "zá-log-gyű-rű-met" }, { "input": "zavarosszürke", "output": "za-va-ros-szür-ke" }, { "input": "zlotyról", "output": "zlo-ty-ról" }, { "input": "zökkenésszerű", "output": "zök-ke-nés-sze-rű" }, { "input": "zörgésszerű", "output": "zör-gés-sze-rű" }, { "input": "zuhanásszerű", "output": "zu-ha-nás-sze-rű" }, { "input": "zsarolásszerű", "output": "zsa-ro-lás-sze-rű" }, { "input": "zsírosszén", "output": "zsí-rosszén" }, { "input": "zsoldosszokás", "output": "zsol-dos-szo-kás" } ], "flags": { "outputUniBrl": true, "testmode": "hyphenate" } } ] }liblouis-2.5.3/tests/harness/Makefile.in0000664000175000017500000005130012161044154015135 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tests/harness DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ en-gb-g1_harness.txt \ en-GB-g2_harness.txt \ en-ueb-g2-dictionary_harness.txt \ en-us-g2-dictionary_harness.txt \ ethio-g1_harness.txt \ hu-hu-comp8_harness.txt \ hu-hu-g1_harness.txt \ hu-hu-g1-hyph_harness.txt \ iu-ca-g1_harness.txt \ letterDefTest_harness.txt \ nocross_harness.txt \ ta-ta-g1_harness.txt HARNESS_DIR = $(top_srcdir)/tests/harness harness_ENVIRONMENT = \ HARNESS_DIR=$(HARNESS_DIR) \ LOUIS_TABLEPATH=$(top_srcdir)/tables,$(top_srcdir)/tests/tables,$(top_srcdir)/tests/tables/moreTables \ PYTHONPATH=$(HARNESS_DIR):$(top_srcdir)/python:$$PYTHONPATH \ LD_LIBRARY_PATH=$(top_srcdir)/liblouis/.libs:$$LD_LIBRARY_PATH \ PATH=$(top_srcdir)/tools:$$PATH all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/harness/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/harness/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am @HAVE_PYTHON_TRUE@@HAVE_UCS4_TRUE@runall runAll: @HAVE_PYTHON_TRUE@@HAVE_UCS4_TRUE@ @$(harness_ENVIRONMENT) ./runHarness.py @HAVE_PYTHON_TRUE@@HAVE_UCS4_TRUE@$(EXTRA_DIST): @HAVE_PYTHON_TRUE@@HAVE_UCS4_TRUE@ @$(harness_ENVIRONMENT) ./runHarness.py $@ @HAVE_PYTHON_TRUE@@HAVE_UCS4_FALSE@runall runAll: @HAVE_PYTHON_TRUE@@HAVE_UCS4_FALSE@ @echo Please configure with --enable-ucs4 @HAVE_PYTHON_FALSE@runall runAll: @HAVE_PYTHON_FALSE@ @echo Python is required to run the harness tests. check: @true .PHONY: $(EXTRA_DIST) runall runAll # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tests/harness/en-GB-g2_harness.txt0000664000175000017500000000467212161041534016563 00000000000000{ "tables": [ "unicode.dis", "en-GB-g2.ctb" ], "tests": [ { "data": [ { "comment": [ "an example of testing simple backtranslation." ], "input": "â ® â ‰â â ž â Žâ â ž â •â  â ® â â â ž", "output": "the cat sat on the mat" }, { "comment": [ "same as above example." ], "input": "â –â ® â â •â •â ", "output": "to the moon" }, { "brlCursorPos": 2, "comment": [ "an example where the text to be backtranslated is grade 2, but the word at the cursor is grade 1." ], "cursorPos": 4, "input": "â ½ ⠺⠑â â ž â žâ •", "mode": "compbrlAtCursor", "output": "you went to" } ], "flags": { "outputUniBrl": true, "testmode": "backtranslate" } }, { "data": [ { "comment": [ "an example of a simple message being forward translated, and contractions expected." ], "input": "the cat sat on the mat", "output": "â ® â ‰â â ž â Žâ â ž â •â  â ® â â â ž" }, { "comment": [ "same as above example." ], "input": "to the moon", "output": "â –â ® â â •â •â " }, { "brlCursorPos": 2, "comment": [ "an example of where text should generally be contracted, accept at the point of the cursor.", "also specify where the computer cursor is at, and where we expect the braille cursor to be." ], "cursorPos": 4, "input": "you went to", "mode": "compbrlAtCursor", "output": "â ½ ⠺⠑â â ž â žâ •" }, { "brlCursorPos": 15, "comment": [ "An example to reproduce:", "https://bugzilla.gnome.org/show_bug.cgi?id=651217", "note that the braille cursor is very squeued.", "computer cursor is at pos 13, expected braille cursor at 15, but actually at 17." ], "cursorPos": 13, "input": "Pappa Pappa help me.", "mode": "compbrlAtCursor", "output": "â  â â â â â  â  â â â â â  â “â ‘â ‡â  â â ‘â ²" } ], "flags": { "outputUniBrl": true } } ] }liblouis-2.5.3/tests/harness/ta-ta-g1_harness.txt0000664000175000017500000000217612161041534016675 00000000000000{ "tables": [ "unicode.dis", "ta-ta-g1.ctb" ], "tests": [ { "data": [ { "input": "இ", "output": "â Š" }, { "input": "ப", "output": "â " }, { "input": "பி", "output": "â â Š" }, { "input": "கà¯", "output": "⠈⠅" }, { "input": " ஸà¯à®°à¯€ ", "output": " â Ž " }, { "input": "பஸà¯à®°à¯€", "output": "â â ˆâ Žâ —â ”" }, { "input": " கà¯à®· ", "output": " â Ÿ " }, { "input": "கà¯à®·à¯.", "output": "⠈⠟⠲" }, { "input": "“", "output": "â  â ¦" }, { "input": "â€", "output": "â ´â „" }, { "input": "‘", "output": "â ¦" }, { "input": "’", "output": "â ´" } ], "flags": { "outputUniBrl": true } } ] }liblouis-2.5.3/tests/multiple_table_path.pl0000775000175000017500000000324512161041523016005 00000000000000#!/usr/bin/perl use warnings; use strict; use Cwd 'abs_path'; $|++; # Test a specific table with lou_checktable which causes an endless loop. # # Copyright (C) 2011 by Swiss Library for the Blind, Visually Impaired and Print Disabled # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. my @tables = ( # a global table "en-us-g2.ctb", # a local table "loop.ctb", # a table with a relative path "$ENV{srcdir}/tables/loop.ctb", # a list of tables with a relative path "$ENV{srcdir}/../tables/en-us-g2.ctb,en-us-g1.ctb", # a table with an absolute path abs_path("$ENV{srcdir}/tables/loop.ctb"), # a list of tables with an absolute path abs_path("$ENV{srcdir}/../tables/en-us-g2.ctb") . ",en-us-g1.ctb", # table combinations # all global tables "en-us-g2.ctb,braille-patterns.cti", # a global and a local table "braille-patterns.cti,pass2.ctb", # a local and a global table "pass2.ctb,braille-patterns.cti", # a relative, a local and a global table "$ENV{srcdir}/tables/loop.ctb,pass2.ctb,braille-patterns.cti", # a table which includes local and global tables "include.utb", # a relative table and a table which includes local and global tables # currently fails # "$ENV{srcdir}/tables/loop.ctb,include.utb", ); # ensure existing tables are found foreach my $table (@tables) { system("../tools/lou_checktable $table --quiet") == 0 or die; } # ensure a non-existing table is not found system("../tools/lou_checktable nonexistent.ctb 2> /dev/null") != 0 or die; liblouis-2.5.3/tests/inpos.c0000664000175000017500000000263312161041523012723 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { /* input aaabcd ef g 012345 67 8 pass0 a bcddef g 0 345567 8 pass1 x cddw g 0 4556 8 pass2 zy dw g 00 56 8 pass3 zy deeeg 00 56668 */ int result = 0; const char* txt = "aaabcdefg"; const char* table1 = "inpos_pass0.ctb"; const char* table2 = "inpos_pass0.ctb,inpos_pass1.ctb"; const char* table3 = "inpos_pass0.ctb,inpos_pass1.ctb,inpos_pass2.ctb"; const char* table4 = "inpos_pass0.ctb,inpos_pass1.ctb,inpos_pass2.ctb,inpos_pass3.ctb"; const char* brl1 = "abcddefg"; const char* brl2 = "xcddwg"; const char* brl3 = "zydwg"; const char* brl4 = "zydeeeg"; const int inpos1[] = {0,3,4,5,5,6,7,8}; const int inpos2[] = {0,4,5,5,6,8}; const int inpos3[] = {0,0,5,6,8}; const int inpos4[] = {0,0,5,6,6,6,8}; result |= check_inpos(table1, txt, inpos1); result |= check_inpos(table2, txt, inpos2); result |= check_inpos(table3, txt, inpos3); result |= check_inpos(table4, txt, inpos4); result |= check_translation(table1, txt, NULL, brl1); result |= check_translation(table2, txt, NULL, brl2); result |= check_translation(table3, txt, NULL, brl3); result |= check_translation(table4, txt, NULL, brl4); return result; } liblouis-2.5.3/tests/pass2.c0000664000175000017500000000063612161041534012626 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { const char* table = "pass2.ctb"; int result = 0; /* First check a plain word to see if the table works */ result = check_translation(table, "Rene", NULL, "rene"); /* then try a word which uses pass2 */ result |= check_translation(table, "Reno", NULL, "ren'o"); return result; } liblouis-2.5.3/tests/capitalized_word.c0000664000175000017500000000041612161041534015116 00000000000000#include #include #include #include "brl_checks.h" int main (int argc, char **argv) { const char *str1 = "World "; const int expected_pos1[]={0,1,2,3,4,3}; return check_cursor_pos(str1, expected_pos1); } liblouis-2.5.3/tests/pass2_inpos.c0000664000175000017500000000151712161041523014033 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { const char* table = "pass2.ctb"; int result = 0; /* First check a plain word to see if inpos handling generally works */ const char* str1 = "Rene"; const int expected_inpos1[] = {0,1,2,3,3}; result |= check_inpos(table, str1, expected_inpos1); /* then try a word which uses pass2 and makes the output longer */ const char* str2 = "Reno"; const int expected_inpos2[] = {0,1,2,3,3}; result |= check_inpos(table, str2, expected_inpos2); /* finally try a word also uses pass2, deletes a char from the output and essentially shortens the output */ const char* str3 = "xRen"; const int expected_inpos3[] = {1,2,3}; result |= check_inpos(table, str3, expected_inpos3); return result; } liblouis-2.5.3/tests/Makefile.am0000664000175000017500000000723212161041534013465 00000000000000SUBDIRS = tables doctests harness harnessSources AM_CPPFLAGS = -I$(top_srcdir)/liblouis LDADD = $(top_builddir)/liblouis/liblouis.la present_progressive_SOURCES = \ brl_checks.c \ brl_checks.h \ present_progressive.c capitalized_word_SOURCES = \ brl_checks.c \ brl_checks.h \ capitalized_word.c capitalized_with_sentance_SOURCES = \ brl_checks.c \ brl_checks.h \ capitalized_with_sentance.c inpos_compbrl_SOURCES = \ brl_checks.c \ brl_checks.h \ inpos_compbrl.c lastworditalafter_SOURCES = \ brl_checks.c \ brl_checks.h \ lastworditalafter.c en_gb_g1_italics_SOURCES = \ brl_checks.c \ brl_checks.h \ en_gb_g1_italics.c pass2_SOURCES = \ brl_checks.c \ brl_checks.h \ pass2.c pass2_inpos_SOURCES = \ brl_checks.c \ brl_checks.h \ pass2_inpos.c inpos_SOURCES = \ brl_checks.c \ brl_checks.h \ inpos.c inpos_match_replace_SOURCES = \ brl_checks.c \ brl_checks.h \ inpos_match_replace.c letterDefTest_SOURCES = \ brl_checks.c \ brl_checks.h \ letterDefTest.c uplow_with_unicode_SOURCES = \ brl_checks.c \ brl_checks.h \ uplow_with_unicode.c squash_space_SOURCES = \ brl_checks.c \ brl_checks.h \ squash_space.c hyphenate_achena_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_achena.c hyphenate_alderen_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_alderen.c hyphenate_straightforward_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_straightforward.c hyphenate_xxx_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_xxx.c pass1Only_SOURCES = \ brl_checks.c \ brl_checks.h \ pass1Only.c outpos_SOURCES = \ brl_checks.c \ brl_checks.h \ outpos.c getTable_SOURCES = getTable.c typeform_SOURCES = \ typeform.c pass0_typebuf_SOURCES = \ brl_checks.c \ brl_checks.h \ pass0_typebuf.c hash_collision_SOURCES = \ brl_checks.c \ brl_checks.h \ hash_collision.c check_PROGRAMS = \ pass2 \ pass2_inpos \ inpos \ inpos_match_replace \ uplow_with_unicode \ present_progressive \ capitalized_word \ capitalized_with_sentance \ inpos_compbrl \ lastworditalafter \ en_gb_g1_italics \ letterDefTest \ squash_space \ hyphenate_achena \ hyphenate_alderen \ hyphenate_straightforward \ hyphenate_xxx \ pass1Only \ outpos \ getTable \ typeform \ pass0_typebuf \ hash_collision dist_check_SCRIPTS = \ check_all_tables.pl \ check_endless_loop.pl \ multiple_table_path.pl # if we have Python and liblouis is configured with ucs4 then we can # invoke the python based tests if HAVE_PYTHON if HAVE_UCS4 dist_check_SCRIPTS += \ check_doctests.py endif endif # The present_progressive should not really fail but for the moment # the issue doesn't seem to be critical enough that anybody has enough # interest to fix it. XFAIL_TESTS = \ present_progressive \ lastworditalafter \ en_gb_g1_italics \ squash_space # Hyphenation is not what it is made out to be. Quite a few of the # tests fail. XFAIL_TESTS += hyphenate_achena hyphenate_alderen # The hash_collision currently fails. The first translation works but subsequent ones fail. XFAIL_TESTS += hash_collision TESTS = \ $(check_PROGRAMS) \ $(dist_check_SCRIPTS) TESTS_ENVIRONMENT = \ LOUIS_TABLEPATH=$(top_srcdir)/tables,$(top_srcdir)/tests/tables,$(top_srcdir)/tests/tables/moreTables \ PYTHONPATH=$(HARNESS_DIR):$(top_srcdir)/python:$$PYTHONPATH \ HARNESS_DIR=$(HARNESS_DIR) \ LD_LIBRARY_PATH=$(top_srcdir)/liblouis/.libs:$$LD_LIBRARY_PATH \ PATH=$(top_srcdir)/tools:$$PATH liblouis-2.5.3/tests/hyphenate_straightforward.c0000664000175000017500000000023612161041523017047 00000000000000#include "brl_checks.h" int main(int argc, char **argv) { return check_hyphenation("en-us-g1.ctb,hyph_en_US.dic", "straightforward", "010000001001000"); } liblouis-2.5.3/tests/inpos_compbrl.c0000664000175000017500000000050012161041523014430 00000000000000#include #include #include #include "brl_checks.h" int main (int argc, char **argv) { const char *str1 = "user@example.com"; const int expected_inpos[] = {0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,15,15}; return check_inpos(TRANSLATION_TABLE, str1, expected_inpos); } liblouis-2.5.3/tests/pass0_typebuf.c0000664000175000017500000000073612161041523014361 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { int i; char* table = "pass0_typebuf.ctb"; char* text = "foo baz"; char* expected = "foobar .baz"; char* typeform = malloc(20 * sizeof(char)); for (i = 0; i < 7; i++) typeform[i] = 0; for (i = 4; i < 7; i++) typeform[i] = 1; if (!check_translation(table, text, typeform, expected)) return 0; return 1; } liblouis-2.5.3/tests/pass1Only.c0000664000175000017500000000044712161041534013467 00000000000000#include #include #include #include "liblouis.h" #include "brl_checks.h" int main(int argc, char **argv) { const char* table = "en-us-comp8.ctb"; int result = 0; result = check_translation_with_mode(table, "a", NULL, "a", pass1Only); return result; } liblouis-2.5.3/tests/typeform.c0000664000175000017500000026326612161041523013453 00000000000000/* This is not a test per se, i.e. it doesn't invoke any functionality of liblouis and compares the result with a known good value. Instead it just invokes the liblouis translation machinery on a fairly large text. This is done simply to be able to run valgrind on a big translation. Thanks to this a number of bugs have been found and as I write this there are still some memory problems remaining. There are errors such as Invalid reads and writes, Conditional jump or move depends on uninitialized value and Use of uninitialized value. See the section on finding memory leaks in HACKING to find out how you can use valgrind to find and possibly fix the remaining problems. */ #include #include #include #include "liblouis.h" #include "louis.h" int main (int argc, char **argv) { const char* strings[] = { "I", "Alice's Adventures In Wonderland", "II", "The King and Queen inspecting the tarts", "III", "Alice's Adventures In Wonderland", "By", "\n Lewis Carroll. ", "With Forty-Two\n Illustrations", "By", "\n John Tenniel. ", "\n NEW YORK\n 1866. ", "IV", "V", "All in the golden afternoon", "Full leisurely we glide;", "For both our oars, with little skill,", "By little arms are plied,", "While little hands make vain pretence", "Our wanderings to guide.", "Ah, cruel Three! In such an hour", "Beneath such dreamy weather,", "To beg a tale of breath too weak", "To stir the tiniest feather!", "Yet what can one poor voice avail", "Against three tongues together?", "VI", "Imperious Prima flashes forth", "Her edict 'to begin it'--", "In gentler tone Secunda hopes", "'There will be nonsense in it'--", "While Tertia interrupts the tale", "Not more than once a minute.", "Anon, to sudden silence won,", "In fancy they pursue", "The dream-child moving through a land", "Of wonders wild and new,", "In friendly chat with bird or beast--", " And half believe it true.", "And ever, as the story drained", "The wells of fancy dry,", "And faintly strove that weary one", "To put the subject by,", "\"The rest next time--\" \"It is next time!\"", "The happy voices cry.", "VII", "Thus grew the tale of Wonderland:", "Thus slowly, one by one,", "Its quaint events were hammered out--", "And now the tale is done,", "And home we steer, a merry crew,", "Beneath the setting sun.", "Alice! a childish story take,", "And with a gentle hand", "Lay it where Childhood's dreams are twined", "In Memory's mystic band,", "Like pilgrim's wither'd wreath of flowers", "Pluck'd in a far-off land.", "VIII", "Contents", "IX", "I. Down the Rabbit-Hole", "II. The Pool of Tears", "III. A Caucus-Race and a Long Tale", "List of images", "The King and Queen inspecting the tarts", "White Rabbit checking watch", "Alice finding tiny door behind curtain", "Alice taking “Drink Me†bottle", "Alice stretched tall", "Giant Alice watching Rabbit run away", "Alice in pool of tears", "Alice with Mouse in pool of tears", "Mouse telling story to birds and Alice", "Dodo presenting thimble", "1", "White Rabbit checking watch", "\n Chapter I. \n Down the Rabbit-Hole\n ", "\n Alice was beginning to get very tired of sitting by her sister on\n the bank, and of having nothing to do: once or twice she had peeped into the\n book her sister was reading, but it had no pictures or conversations in it, ", "\"and what is ", "2", " the use of a book,\"", "\n thought Alice, \"without pictures or\n conversation?\"\n ", " So she was considering in her own mind (as well as she could, for the hot day\n made her feel very sleepy and stupid), whether the pleasure of making a\n daisy-chain would be worth the trouble of getting up and picking the daisies,\n when suddenly a White Rabbit with pink eyes ran close by her. ", "There was nothing so very remarkable in that; nor did\n Alice think it so very much out of the way to hear\n the Rabbitsay to itself, \"Oh dear! Oh dear! I shall\n be late!\" (when she thought it over afterwards, it occurred to her that\n she ought to have wondered at this, but at the time it all seemed quite\n natural); but when the Rabbit actually took a watch out of its\n waistcoat-pocket, and looked at it, and then hurried on,\n Alice started to her feet, for it flashed across her mind that\n she had never before seen a rabbit with either a waistcoat-pocket, or a watch to\n take out of it, and, ", "3", " burning with curiosity, she ran\n across the field after it, and fortunately was just in time to see it pop down a\n large rabbit-hole under the hedge. ", "In another moment down went Alice after it, never once considering\n how in the world she was to get out again.", "The rabbit-hole went straight on like a tunnel for some way, and then dipped\n suddenly down, so suddenly that Alice had not a moment to think\n about stopping herself before she found herself falling down a very deep well. ", " Either the well was very deep, or she fell very slowly, for she had plenty of\n time as she went down to look about her and to wonder what was going to happen\n next. First, she tried to look down and make out what she was coming to, but it\n was too dark to see anything; then she looked at the sides of the well, and\n noticed that they were filled with cupboards and book-shelves; here and there\n she saw maps and pictures hung upon pegs. She took down B2 ", "4", " a jar from one of the shelves as she passed; it was labelled \"ORANGE\n MARMALADE\", but to her great disappointment it was empty: she did not like to\n drop the jar for fear of killing somebody, so managed to put it into one of the\n cupboards as she fell past it. ", "\"Well!\" thought Alice to herself, \"after such a fall as this, I shall think nothing of tumbling down stairs!\n How brave they'll all think me at home! Why, I wouldn\"t say anything about\n it, even if I fell off the top of the house!\" (Which was very likely\n true.) ", " Down, down, down. Would the fall never come to an end! \"I wonder how many miles I've fallen by this time?\" she said\n aloud. ", "\"I must be getting somewhere near the centre of the earth.\n Let me see: that would be four thousand miles down, I think—\" (for, you see,\n Alice had learnt several things of this sort in her lessons\n in the schoolroom, and though this was not a very good\n opportunity for showing off her knowledge, as there was no one to listen to\n ", "5", "her, still it was good practice to say it over)\n \"—yes, that's about the right distance—but then I wonder what Latitude or\n Longitude I've got to?\"", " (Alice had no idea what Latitude was, or\n Longitude either, but thought they were nice grand words to say.)", "Presently she began again. \"I wonder if I shall fall right\n through the earth! How funny it'll seem to come out among\n the people that walk with their heads downward! The Antipathies, I\n think—\" (she was rather glad there was no one listening,\n this time, as it didn't sound at all the right word) \" —but I\n shall have to ask them what the name of the country is, you know. Please,\n Ma'am, is this New Zealand or Australia?\" (and she tried to curtsey as\n she spoke—fancy curtseying as you\"re falling through the air! Do\n you think you could manage it?) \"And what an ignorant little girl\n she'll think me for asking! No, it'll never do to ask: perhaps I shall see\n it written up somewhere.\"", "6", "Down, down, down. There was nothing else to do, so Alice soon began\n talking again. \"Dinah 'll miss me very much\n to-night, I should think!\" (Dinah was the cat.) \"I hope they'll remember her saucer of milk at tea-time.\n Dinah my dear! I wish you were down here with me! There are\n no mice in the air, I'm afraid, but you might catch a bat, and that's very\n like a mouse, you know. But do cats eat bats, I wonder?\" And here\n Alice began to get rather sleepy, and went on saying to\n herself, in a dreamy sort of way, \"Do cats eat bats? Do cats eat\n bats?\" and sometimes, \"Do bats eat cats?\" for, you\n see, as she couldn't answer either question, it didn't much matter which way she\n put it. She felt that she was dozing off, and had just begun to dream that she\n was walking hand in hand with Dinah, and saying to her very\n earnestly, \"Now, Dinah, tell me the truth: did you\n ever eat a bat?\" when suddenly, thump! thump! down she came upon a heap\n of sticks and dry leaves, and the fall was over.", "7", "Alice was not a bit hurt, and she jumped up on to her feet in a\n moment: she looked up, but it was all dark overhead; before her was another long\n passage, and the White Rabbit was still in sight, hurrying down it. There was\n not a moment to be lost: away went Alice like the wind, and was\n just in time to hear it say, as it turned a corner, \"Oh my ears\n and whiskers, how late it's getting!\" She was close behind it when she\n turned the corner, but the Rabbitwas no longer to be seen: she\n found herself in a long, low hall, which was lit up by a row of lamps hanging\n from the roof.", "There were doors all round the hall, but they were all locked; and when\n Alice had been all the way down one side and up the other,\n trying every door, she walked sadly down the middle, wondering how she was ever\n to get out again.", "Suddenly she came upon a little three-legged table, all made of solid glass;\n there was nothing on it except a tiny golden key, and Alice's first thought was\n that it might belong to one of the ", "8", " doors of the hall;\n but, alas! either the locks were too large, or the key was too small, but at any\n rate it would not open any of them. However, on the second time round, she came\n upon a low curtain she had not noticed before, and behind it was a little door\n about fifteen inches high: she tried the little golden key in the lock, and to\n her great delight it fitted!", "Alice finding tiny door behind curtain", "Alice opened the door and found that it led into a small passage,\n not much larger than a rat-hole: she knelt down and looked along the passage\n into the loveliest garden you ever saw. How she longed to get out of that dark\n hall, and wander about among those beds of bright ", "9", " flowers\n and those cool fountains, but she could not even get her head though the\n doorway; \"and even if my head would go through,\" thought poor\n Alice, \"it would be of very little use without\n my shoulders. Oh, how I wish I could shut up like a telescope! I think I\n could, if I only know how to begin.\" For, you see, so many\n out-of-the-way things had happened lately, that Alice had begun to\n think that very few things indeed were really impossible.", "There seemed to be no use in waiting by the little door, so she went back to the\n table, half hoping she might find another key on it, or at any rate a book of\n rules for shutting people up like telescopes: this time she found a little\n bottle on it, (\"which certainly was not here before,\" said Alice,)\n and round the neck of the bottle was a paper label, with the words \"DRINK ME\"\n beautifully printed on it in large letters.", "It was all very well to say \"Drink me,\" but the wise little Alice\n was not going to do that\n ", "10", "in a hurry. \"No, I'll look first,\" she\n said, \"and see whether it’s marked 'poison' or not:\" for she\n had read several nice little histories about children who had got burnt, and\n eaten up by wild beasts and other unpleasant things, all because they\n would not remember the simple rules their friends had taught\n them: such as, that a red-hot poker will burn you if you hold it too long; and\n that if you cut your finger very deeply with a knife, it usually\n bleeds; and she had never forgotten that, if you drink much from a bottle marked\n \"poison,\" it is almost certain to disagree with you, sooner or later.", "Alice taking “Drink Me†bottle", "However, this bottle was not marked \"poison,\" ", "11", " so Alice ventured to taste it, and finding it very nice, (it\n had, in fact, a sort of mixed flavour of cherry-tart, custard, pine-apple, roast\n turkey, toffee, and hot buttered toast,) she very soon finished it off.", "\"What a curious feeling!\" said Alice, \"I must be shutting up like a telescope.\"", "And so it was indeed: she was now only ten inches high, and her face brightened\n up at the thought that she was now the right size for going through the little\n door into that lovely garden. First, however, she waited for a few minutes to\n see if she was going to shrink any further: she felt a little nervous about\n this; \"for it might end, you know,\" said Alice\n to herself, \"in my going out altogether, like a candle. I wonder\n what I should be like then?\" And she tried to fancy what the flame of a\n candle is like after the candle is blown out, ", "12", " for she\n could not remember ever having seen such a thing.", "After a while, finding that nothing more happened, she decided on going into the\n garden at once; but, alas for poor Alice! when she got to the door, she found\n she had forgotten the little golden key, and when she went back to the table for\n it, she found she could not possibly reach it: she could see it quite plainly\n through the glass, and she tried her best to climb up one of the legs of the\n table, but it was too slippery; and when she had tired herself out with trying,\n the poor little thing sat down and cried.", "\"Come, there’s no use in crying like that!\" said\n Alice to herself, rather sharply; \"I advise you\n to leave off this minute!\" She generally gave herself very good advice,\n (though she very seldom followed it,) and sometimes she scolded herself so\n severely as to bring tears into her eyes; and once she remembered trying to box\n her own ears for having cheated herself ", "13", " in\n a game of croquet she was playing against herself, for this curious child was\n very fond of pretending to be two people. \"But it’s no use\n now,\" thought poor Alice, \"to pretend to be\n two people! Why, there's hardly enough of me left to make one\n respectable person!\"", "Soon her eye fell on a little glass box that was lying under the table: she\n opened it, and found in it a very small cake, on which the words \"EAT ME\" were\n beautifully marked in currants. \"Well, I’ll eat it,\" said\n Alice, \"and if it makes me grow larger, I can\n reach the key; and if it makes me grow smaller, I can creep under the door;\n so either way I’ll get into the garden, and I don’t care which\n happens!\"", "She ate a little bit, and said anxiously to herself, ‘Which way?\n Which way?’, holding her hand on the top of her head to feel which way\n it was growing, and she was quite surprised to find that she remained the same\n size: to be sure, this generally happens when one eats cake, but\n Alice had got so much into the ", "14", " way of expecting nothing but out-of-the-way things to happen,\n that it seemed quite dull and stupid for life to go on in the common way.", "So she set to work, and very soon finished off the cake.", "15", "CHAPTER II", "The Pool of Tears", "Alice stretched tall", "\"Curiouser and curiouser!\" cried Alice (she was so much surprised,\n that for the moment she quite forgot how to speak good English); \"now I'm\n opening out like the largest telescope that ever was! Good-bye, feet!\" (for when\n she looked down at her feet, they seemed to be almost out of sight, they were\n getting so far off). \"Oh, my poor little feet, I wonder ", "16", "who will put on your shoes and stockings for you now, dears?\n I'm sure I shan't be able! I shall be a great deal too far off to\n trouble myself about you: you must manage the best way you can; -but I must be\n kind to them,\" thought Alice, \"or perhaps they won't walk the way I\n want to go! Let me see: I'll give them a new pair of boots every Christmas.\"", "And she went on planning to herself how she would manage it. \"They must go by the\n carrier,\" she thought; \"and how funny it'll seem, sending presents to one's own\n feet! And how odd the directions will look!", "Alice's Right Foot, Esq.", " Hearthrug,", " Near the fender,", " (with Alice's love).", "Oh dear, what nonsense I'm talking!\"", "Just then her head struck against the roof of the hall: in fact she was now more\n than nine feet high, and she at once took up the little golden key and hurried\n off to the garden door.", "17", "Poor Alice! It was as much as she could do, lying down on one side, to look\n through into the garden with one eye; but to get through was more hopeless than\n ever: she sat down and began to cry again.", "\"You ought to be ashamed of yourself,\" said Alice, \"a great girl\n like you,\" (she might well say this), \"to go on crying in this way! Stop this\n moment, I tell you!\" But she went on all the same, shedding gallons of tears,\n until there was a large pool all round her, about four inches deep and reaching\n half down the hall.", "After a time she heard a little pattering of feet in the distance, and she\n hastily dried her eyes to see what was coming. It was the White Rabbit\n returning, splendidly dressed, with a pair of white kid gloves in one hand and a\n large fan in the other: he came trotting along in a great hurry, muttering to\n himself as he came, \"Oh! the Duchess, the Duchess! Oh! won't she be savage if\n I've kept her waiting!\" Alice felt so desperate that she was ready\n to ask help ", "18", " of any one; so, when the\n Rabbitcame near her, she began, in a low, timid voice, \"If you\n please, sir-\" The Rabbit started violently, dropped the white kid gloves and the\n fan, and skurried away into the darkness as hard as he could go.", "Giant Alice watching Rabbit run away", "19", "Alice took up the fan and gloves, and, as the hall was very hot, she\n kept fanning herself all the time she went on talking: \"Dear, dear! How queer\n everything is to-day! And yesterday things went on just as usual. I wonder if\n I've been changed in the night? Let me think: was I the same when I got up this\n morning? I almost think I can remember feeling a little different. But if I'm\n not the same, the next question is, Who in the world am I? Ah,\n that's the great puzzle!\" And she began thinking over all the\n children she knew that were of the same age as herself, to see if she could have\n been changed for any of them.", "\"I'm sure I'm not Ada,\" she said, \"for her hair goes in such long ringlets, and\n mine doesn't go in ringlets at all; and I'm sure I can't be Mabel, for I know\n all sorts of things, and she, oh! she knows such a very little! Besides,\n she's she, and I'm I, and-oh dear, how puzzling it all is! I'll\n try if I know all the things I used to know. Let me see: four times five is\n twelve, ", "20", " and four times six is thirteen, and\n four times seven is-oh dear! I shall never get to twenty at that rate! However,\n the Multiplication Table doesn't signify: let's try Geography. London is the\n capital of Paris, and Paris is the capital of Rome, and Rome-no,\n that's all wrong, I'm certain! I must have been changed for\n Mabel! I'll try and say \"How doth the little-'\" and she crossed her hands on her\n lap as if she were saying lessons, and began to repeat it, but her voice sounded\n hoarse and strange, and the words did not come the same as they used to do:-", "\"How doth the little crocodile", " Improve his shining tail,", "And pour the waters of the Nile", " On every golden scale!", "\"How cheerfully he seems to grin,", " How neatly spread his claws,", "And welcome little fishes in", " With gently smiling jaws!\"", "21", "\"I'm sure those are not the right words,\" said poor Alice, and her\n eyes filled with tears again as she went on, \"I must be Mabel after all, and I\n shall have to go and live in that poky little house, and have next to no toys to\n play with, and oh! ever so many lessons to learn! No, I've made up my mind about\n it; if I'm Mabel, I'll stay down here! It'll be no use their putting their heads\n down and saying \"Come up again, dear!\" I shall only look up and say \"Who am I\n then? Tell me that first, and then, if I like being that person, I'll come up:\n if not, I'll stay down here till I'm somebody else' -but, oh dear!\" cried\n Alice, with a sudden burst of tears, \"I do wish they\n would put their heads down! I am so very tired of\n being all alone here!\"", "As she said this she looked down at her hands, and was surprised to see that she\n had put on one of the Rabbit's little white kid gloves while she was talking.\n \"How can I have done that?\" she thought. \"I must be growing\n small", "22", " again.\" She got up and went to the\n table to measure herself by it, and found that, as nearly as she could guess,\n she was now about two feet high, and was going on shrinking rapidly: she soon\n found out that the cause of this was the fan she was holding, and she dropped it\n hastily, just in time to avoid shrinking away altogether.", "\"That was a narrow escape!\" said Alice, a good deal\n frightened at the sudden change, but very glad to find herself still in\n existence; \"and now for the garden!\" and she ran with all speed back to the\n little door: but, alas! the little door was shut again, and the little golden\n key was lying on the glass table as before, \"and things are worse than ever,\"\n thought the poor child, \"for I never was so small as this before, never! And I\n declare it's too bad, that it is!\"", "As she said these words her foot slipped, and in another moment, splash! she was\n up to her chin in salt water. Her first idea was that she had somehow fallen\n into the sea, \"and in ", "23", "that case I can go\n back by railway,\" she said to herself. (Alice had been to the seaside once in\n her life, and had come to the general conclusion, that wherever you go to on the\n English coast you find a number of bathing machines in the sea, some children\n digging in the sand with wooden spades, then a row of lodging houses, and behind\n them a railway station.) However, she soon made out that she was in the pool of\n tears which she had wept when she was nine feet high.", "Alice in pool of tears", "\"I wish I hadn't cried so much!\" said Alice, as she swam about,\n trying to find her way out.", "24", " \"I shall be\n punished for it now, I suppose, by being drowned in my own tears! That\n will be a queer thing, to be sure! However, everything is queer\n to-day.\"", "Just then she heard something splashing about in the pool a little way off, and\n she swam nearer to make out what it was: at first she thought it must be a\n walrus or hippopotamus, but then she remembered how small she was now, and she\n soon made out that it was only a mouse that had slipped in like herself.", "\"Would it be of any use, now,\" thought Alice, \"to speak to this\n mouse? Everything is so out-of-the-way down here, that I should think very\n likely it can talk: at any rate, there's no harm in trying.\" So she began: \"O\n Mouse, do you know the way out of this pool? I am very tired of swimming about\n here, O Mouse!\" (Alice thought this must be the right way of speaking to a\n mouse: she had never done such a thing before, but she remembered having seen in\n her brother's Latin Grammar, \"A mouse- ", "25", "of a\n mouse-to a mouse-a mouse-O mouse!\" The Mouse looked at her rather inquisitively,\n and seemed to her to wink with one of its little eyes, but it said nothing.", "\"Perhaps it doesn't understand English,\" thought Alice; \"I daresay it's a French mouse, come over with William the\n Conqueror.\" (For, with all her knowledge of history, Alice\n had no very clear notion how long ago anything had happened.) So she began\n again: \"Ou est ma chatte?\" which was the first sentence in\n her French lesson-book. The Mousegave a sudden leap out of the\n water, and seemed to quiver all over with fright. \"Oh, I beg your\n pardon!\" cried Alice hastily, afraid that she had hurt the\n poor animal's feelings. \"I quite forgot you didn't like\n cats.\"", "\"Not like cats!\" cried the Mouse, in a shrill, passionate\n voice. \"Would you like cats if you were me?\"", "\"Well, perhaps not,\" said Alice in a soothing\n tone: ", "\"don't be angry about it. And yet ", "26", "I wish I could show you our cat Dinah: I\n think you'd take a fancy to cats if you could only see her. She is such a\n dear quiet thing,\"", "\n Alice went on, half to herself, as she swam lazily ", "\n Alice with Mousein pool of tears ", " about\n in the pool, \"and she sits purring so nicely by the fire, licking\n her paws and washing her face-and she is such a nice soft thing to nurse-and\n she's such a capital one for catching mice-oh, I beg your pardon!\" cried\n Alice again, for this time the Mousewas bristling\n all over, and she felt certain it must be really ", "27", " offended. \"We won't talk about her any more if\n you'd rather not.\"", "\"We indeed!\" cried the Mouse, who was trembling down to the\n end of his tail. \"As if I would talk on such a subject! Our\n family always hated cats: nasty, low, vulgar things! Don't let\n me hear the name again!\"", "\"I won't indeed!\" said Alice, in a great hurry to change the subject\n of conversation. \"Are you-are you fond-of-of dogs?\" The Mousedid\n not answer, so Alice went on eagerly: \"There is such a nice little\n dog near our house I should like to show you! A little bright-eyed terrier, you\n know, with oh, such long curly brown hair! And it'll fetch things when you throw\n them, and it'll sit up and beg for its dinner, and all sorts of things-I can't\n remember half of them-and it belongs to a farmer, you know, and he says it's so\n useful, it's worth a hundred pounds! He says it kills all the rats and-oh dear!\"\n cried Alice in a sorrowful tone, \"I'm afraid I've offended it ", "28", " again!\" For the Mousewas swimming away from her as\n hard as it could go, and making quite a commotion in the pool as it went.", "So she called softly after it, \"Mouse dear! Do come back again, and we won't talk\n about cats or dogs either, if you don't like them!\" When the\n Mouseheard this, it turned round and swam slowly back to her: its\n face was quite pale (with passion, Alice thought), and it said in a\n low trembling voice, \"Let us get to the shore, and then I'll tell you my\n history, and you'll understand why it is I hate cats and dogs.\"", "It was high time to go, for the pool was getting quite crowded with the birds and\n animals that had fallen into it: there were a Duck and a Dodo, a Lory and an\n Eaglet, and several other curious creatures. Alice led the way, and\n the whole party swam to the shore.", "29", "CHAPTER III", "A Caucus-Race and a Long Tale", "Mouse telling story to birds and Alice", "They were indeed a queer-looking party that assembled on the bank-the birds with\n draggled feathers, the animals with their fur clinging close to them, and all\n dripping wet, cross, and uncomfortable.", "The first question of course was, how to get dry again: they had a consultation\n about this, ", "30", " and after a few minutes it seemed quite\n natural to Alice to find herself talking familiarly with them, as\n if she had known them all her life. Indeed, she had quite a long argument with\n the Lory, who at last turned sulky, and would only say, \"I am older than you,\n and must know better;\" and this Alice would not allow without\n knowing how old it was, and, as the Lory positively refused to tell its age,\n there was no more to be said.", "At last the Mouse, who seemed to be a person of authority among them, called out,\n \"Sit down, all of you, and listen to me! I'll soon make you dry\n enough!\" They all sat down at once, in a large ring, with the\n Mousein the middle. Alice kept her eyes anxiously\n fixed on it, for she felt sure she would catch a bad cold if she did not get dry\n very soon.", "\"Ahem!\" said the Mousewith an important air, \"are you all ready?\n This is the driest thing I know. Silence all round, if you please!\n 'William the Conqueror, whose cause was ", "31", " favoured by the pope, was soon submitted to by the English,\n who wanted leaders, and had been of late much accustomed to usurpation and\n conquest. Edwin and Morcar, the earls of Mercia and\n Northumbria-'\"", "\"Ugh!\" said the Lory, with a shiver.", "\"I beg your pardon?\" said the Mouse, frowning, but very politely: \"Did you\n speak?\"", "\"Not I!\" said the Lory hastily.", "\"I thought you did,\" said the Mouse. -\"I proceed. 'Edwin and\n Morcar, the earls of Mercia and Northumbria, declared for him: and even\n Stigand, the patriotic archbishop of Canterbury, found it\n advisable-'\"", "\"Found what?\" said the Duck.", "\"Found it,\" the Mouse replied rather crossly: \"of course you know\n what 'it' means.\"", "\"I know what 'it' means well enough, when I find a thing,\" said the Duck: \"it's\n generally a frog or a worm. The question is, what did the archbishop find?\"", "The Mousedid not notice this question, but ", "32", " hurriedly went on, \"'-found it advisable to go with Edgar\n Atheling to meet William and offer him the crown. William's conduct at first was\n moderate. But the insolence of his Normans-' How are you getting on now, my\n dear?\" it continued, turning to Alice as it spoke.", "\"As wet as ever,\" said Alice in a melancholy tone: \"it doesn't seem\n to dry me at all.\"", "\"In that case,\" said the Dodo solemnly, rising to its feet, \"I move that the\n meeting adjourn, for the immediate adoption of more energetic remedies-\"", "\"Speak English!\" said the Eaglet. \"I don't know the meaning of half those long\n words, and, what's more, I don't believe you do either!\" And the Eaglet bent\n down its head to hide a smile: some of the other birds tittered audibly.", "\"What I was going to say,\" said the Dodo in an offended tone, \"was, that the best\n thing to get us dry would be a Caucus-race.\"", "\"What is a Caucus-race?\" said Alice; not that she wanted much to\n know, but the Dodo ", "33", " had paused as if it\n thought that somebody ought to speak, and no one else seemed\n inclined to say anything.", "\"Why,\" said the Dodo, \"the best way to explain it is to do it.\" (And, as you\n might like to try the thing yourself, some winter day, I will tell you how the\n Dodo managed it.)", "First it marked out a race-course, in a sort of circle, (\"the exact shape doesn't\n matter,\" it said,) and then all the party were placed along the course, here and\n there. There was no \"One, two, three, and away,\" but they began running when\n they liked, and left off when they liked, so that it was not easy to know when\n the race was over. However, when they had been running half an hour or so, and\n were quite dry again, the Dodo suddenly called out \"The race is over!\" and they\n all crowded round it, panting, and asking, \"But who has won?\"", "This question the Dodo could not answer without a great deal of thought, and it\n sat for a long time with one finger pressed upon its ", "34", " forehead (the position in which you usually see Shakespeare,\n in the pictures of him), while the rest waited in silence. At last the Dodo\n said, \"everybody has won, and all must have prizes.\"", "\"But who is to give the prizes?\" quite a chorus of voices asked.", "\"Why, she, of course,\" said the Dodo, pointing to Alice\n with one finger; and the whole party at once crowded round her, calling out in a\n confused way, \"Prizes! Prizes!\"", "Alice had no idea what to do, and in despair she put her hand in her\n pocket, and pulled out a box of comfits, (luckily the salt water had not got\n into it), and handed them round as prizes. There was exactly one a-piece all\n round.", "\"But she must have a prize herself, you know,\" said the Mouse.", "\"Of course,\" the Dodo replied very gravely. \"What else have you got in your\n pocket?\" he went on, turning to Alice.", "\"Only a thimble,\" said Alice sadly.", "\"Hand it over here,\" said the Dodo.", "35", "Dodo presenting thimble", "Then they all crowded round her once more, while the Dodo solemnly presented the\n thimble, saying \"We beg your acceptance of this elegant thimble;\" and, when it\n had finished this short speech, they all cheered.", "36", "Alice thought the whole thing very absurd, but they all looked so\n grave that she did not dare to laugh; and, as she could not think of anything to\n say, she simply bowed, and took the thimble, looking as solemn as she could.", "The next thing was to eat the comfits: this caused some noise and confusion, as\n the large birds complained that they could not taste theirs, and the small ones\n choked and had to be patted on the back. However, it was over at last, and they\n sat down again in a ring, and begged the Mouseto tell them\n something more.", "\"You promised to tell me your history, you know,\" said Alice, \"and\n why it is you hate-C and D,\" she added in a whisper, half afraid that it would\n be offended again.", "\"Mine is a long and a sad tale!\" said the Mouse, turning to Alice,\n and sighing.", "It is a long tail, certainly,\" said\n Alice, looking down with wonder at the Mouse's tail; \"but why do you call it sad?\" And she kept on puzzling about\n it while the Mousewas speaking, ", "37", " so that her idea of the tale was something like this:-", " \"Fury said to a", " mouse, That he", " met in the", " house,", " \"Let us", " both go to", " law: I will", " prosecute", " you.-Come,", " I'll take no", " denial; We", " must have a", " trial: For", " really this", " morning I've", " nothing", " to do.\"", " Said the", " mouse to the", " cur, \"Such", " a trial,", " dear Sir,", " With", " no jury", " or judge,", " would be", " wasting", " our", " breath.\"", " \"I'll be", " judge, I'll", " be jury,\"", " Said", " cunning", " old Fury:", " \"I'll", " try the", " whole", " cause,", " and", " condemn", " you", " to", " death.\"", "38", "\"You are not attending!\" said the Mouseto Alice\n severely. \"What are you thinking of?\"", "\"I beg your pardon,\" said Alice very humbly: \"you had got to the\n fifth bend, I think?\"", "\"I had not!\" cried the Mouse, sharply and very angrily.", "\"A knot!\" said Alice, always ready to make herself useful, and\n looking anxiously about her. \"Oh, do let me help to undo it!\"", "\"I shall do nothing of the sort,\" said the Mouse, getting up and walking away.\n \"You insult me by talking such nonsense!\"", "\"I didn't mean it!\" pleaded poor Alice. \"But you're so easily offended, you\n know!\"", "The Mouseonly growled in reply.", "\"Please come back and finish your story!\" Alice called after it; and\n the others all joined in chorus, \"Yes, please do!\" but the\n Mouseonly shook its head impatiently, and walked a little\n quicker.", "\"What a pity it wouldn't stay!\" sighed the Lory, as soon as it was quite out of\n sight; ", "39", " and an old Crab took the opportunity\n of saying to her daughter \"Ah, my dear! Let this be a lesson to you never to\n lose your temper!\" \"Hold your tongue, Ma!\" said the young Crab, a\n little snappishly. \"You're enough to try the patience of an oyster!\"", "\"I wish I had our Dinah here, I know I do!\" said Alice\n aloud, addressing nobody in particular. \"She'd soon fetch it back!\"", "\"And who is Dinah, if I might venture to ask the question?\" said the\n Lory.", "Alice replied eagerly, for she was always ready to talk about her\n pet: \"Dinah's our cat. And she's such a capital one for catching\n mice you can't think! And oh, I wish you could see her after the birds! Why,\n she'll eat a little bird as soon as look at it!\"", "This speech caused a remarkable sensation among the party. Some of the birds\n hurried off at once: one old Magpie began wrapping itself up very carefully,\n remarking, \"I really must be getting home; the night-air doesn't ", "40", " suit my throat!\" and a Canary called out in a\n trembling voice to its children, \"Come away, my dears! It's high time you were\n all in bed!\" On various pretexts they all moved off, and Alice was\n soon left alone.", "\"I wish I hadn't mentioned Dinah!\" she said to herself in a\n melancholy tone. \"Nobody seems to like her, down here, and I'm sure she's the\n best cat in the world! Oh, my dear Dinah! I wonder if I shall ever\n see you any more!\" And here poor Alice began to cry again, for she\n felt very lonely and low-spirited. In a little while, however, she again heard a\n little pattering of footsteps in the distance, and she looked up eagerly, half\n hoping that the Mousehad changed his mind, and was coming back to\n finish his story.", "I", "Alice's Adventures In Wonderland", "II", "The King and Queen inspecting the tarts", "III", "Alice's Adventures In Wonderland", "By", "\n Lewis Carroll. ", "With Forty-Two\n Illustrations", "By", "\n John Tenniel. ", "\n NEW YORK\n 1866. ", "IV", "V", "All in the golden afternoon", "Full leisurely we glide;", "For both our oars, with little skill,", "By little arms are plied,", "While little hands make vain pretence", "Our wanderings to guide.", "Ah, cruel Three! In such an hour", "Beneath such dreamy weather,", "To beg a tale of breath too weak", "To stir the tiniest feather!", "Yet what can one poor voice avail", "Against three tongues together?", "VI", "Imperious Prima flashes forth", "Her edict 'to begin it'--", "In gentler tone Secunda hopes", "'There will be nonsense in it'--", "While Tertia interrupts the tale", "Not more than once a minute.", "Anon, to sudden silence won,", "In fancy they pursue", "The dream-child moving through a land", "Of wonders wild and new,", "In friendly chat with bird or beast--", " And half believe it true.", "And ever, as the story drained", "The wells of fancy dry,", "And faintly strove that weary one", "To put the subject by,", "\"The rest next time--\" \"It is next time!\"", "The happy voices cry.", "VII", "Thus grew the tale of Wonderland:", "Thus slowly, one by one,", "Its quaint events were hammered out--", "And now the tale is done,", "And home we steer, a merry crew,", "Beneath the setting sun.", "Alice! a childish story take,", "And with a gentle hand", "Lay it where Childhood's dreams are twined", "In Memory's mystic band,", "Like pilgrim's wither'd wreath of flowers", "Pluck'd in a far-off land.", "VIII", "Contents", "IX", "I. Down the Rabbit-Hole", "II. The Pool of Tears", "III. A Caucus-Race and a Long Tale", "List of images", "The King and Queen inspecting the tarts", "White Rabbit checking watch", "Alice finding tiny door behind curtain", "Alice taking “Drink Me†bottle", "Alice stretched tall", "Giant Alice watching Rabbit run away", "Alice in pool of tears", "Alice with Mouse in pool of tears", "Mouse telling story to birds and Alice", "Dodo presenting thimble", "1", "White Rabbit checking watch", "\n Chapter I. \n Down the Rabbit-Hole\n ", "\n Alice was beginning to get very tired of sitting by her sister on\n the bank, and of having nothing to do: once or twice she had peeped into the\n book her sister was reading, but it had no pictures or conversations in it, ", "\"and what is ", "2", " the use of a book,\"", "\n thought Alice, \"without pictures or\n conversation?\"\n ", " So she was considering in her own mind (as well as she could, for the hot day\n made her feel very sleepy and stupid), whether the pleasure of making a\n daisy-chain would be worth the trouble of getting up and picking the daisies,\n when suddenly a White Rabbit with pink eyes ran close by her. ", "There was nothing so very remarkable in that; nor did\n Alice think it so very much out of the way to hear\n the Rabbitsay to itself, \"Oh dear! Oh dear! I shall\n be late!\" (when she thought it over afterwards, it occurred to her that\n she ought to have wondered at this, but at the time it all seemed quite\n natural); but when the Rabbit actually took a watch out of its\n waistcoat-pocket, and looked at it, and then hurried on,\n Alice started to her feet, for it flashed across her mind that\n she had never before seen a rabbit with either a waistcoat-pocket, or a watch to\n take out of it, and, ", "3", " burning with curiosity, she ran\n across the field after it, and fortunately was just in time to see it pop down a\n large rabbit-hole under the hedge. ", "In another moment down went Alice after it, never once considering\n how in the world she was to get out again.", "The rabbit-hole went straight on like a tunnel for some way, and then dipped\n suddenly down, so suddenly that Alice had not a moment to think\n about stopping herself before she found herself falling down a very deep well. ", " Either the well was very deep, or she fell very slowly, for she had plenty of\n time as she went down to look about her and to wonder what was going to happen\n next. First, she tried to look down and make out what she was coming to, but it\n was too dark to see anything; then she looked at the sides of the well, and\n noticed that they were filled with cupboards and book-shelves; here and there\n she saw maps and pictures hung upon pegs. She took down B2 ", "4", " a jar from one of the shelves as she passed; it was labelled \"ORANGE\n MARMALADE\", but to her great disappointment it was empty: she did not like to\n drop the jar for fear of killing somebody, so managed to put it into one of the\n cupboards as she fell past it. ", "\"Well!\" thought Alice to herself, \"after such a fall as this, I shall think nothing of tumbling down stairs!\n How brave they'll all think me at home! Why, I wouldn\"t say anything about\n it, even if I fell off the top of the house!\" (Which was very likely\n true.) ", " Down, down, down. Would the fall never come to an end! \"I wonder how many miles I've fallen by this time?\" she said\n aloud. ", "\"I must be getting somewhere near the centre of the earth.\n Let me see: that would be four thousand miles down, I think—\" (for, you see,\n Alice had learnt several things of this sort in her lessons\n in the schoolroom, and though this was not a very good\n opportunity for showing off her knowledge, as there was no one to listen to\n ", "5", "her, still it was good practice to say it over)\n \"—yes, that's about the right distance—but then I wonder what Latitude or\n Longitude I've got to?\"", " (Alice had no idea what Latitude was, or\n Longitude either, but thought they were nice grand words to say.)", "Presently she began again. \"I wonder if I shall fall right\n through the earth! How funny it'll seem to come out among\n the people that walk with their heads downward! The Antipathies, I\n think—\" (she was rather glad there was no one listening,\n this time, as it didn't sound at all the right word) \" —but I\n shall have to ask them what the name of the country is, you know. Please,\n Ma'am, is this New Zealand or Australia?\" (and she tried to curtsey as\n she spoke—fancy curtseying as you\"re falling through the air! Do\n you think you could manage it?) \"And what an ignorant little girl\n she'll think me for asking! No, it'll never do to ask: perhaps I shall see\n it written up somewhere.\"", "6", "Down, down, down. There was nothing else to do, so Alice soon began\n talking again. \"Dinah 'll miss me very much\n to-night, I should think!\" (Dinah was the cat.) \"I hope they'll remember her saucer of milk at tea-time.\n Dinah my dear! I wish you were down here with me! There are\n no mice in the air, I'm afraid, but you might catch a bat, and that's very\n like a mouse, you know. But do cats eat bats, I wonder?\" And here\n Alice began to get rather sleepy, and went on saying to\n herself, in a dreamy sort of way, \"Do cats eat bats? Do cats eat\n bats?\" and sometimes, \"Do bats eat cats?\" for, you\n see, as she couldn't answer either question, it didn't much matter which way she\n put it. She felt that she was dozing off, and had just begun to dream that she\n was walking hand in hand with Dinah, and saying to her very\n earnestly, \"Now, Dinah, tell me the truth: did you\n ever eat a bat?\" when suddenly, thump! thump! down she came upon a heap\n of sticks and dry leaves, and the fall was over.", "7", "Alice was not a bit hurt, and she jumped up on to her feet in a\n moment: she looked up, but it was all dark overhead; before her was another long\n passage, and the White Rabbit was still in sight, hurrying down it. There was\n not a moment to be lost: away went Alice like the wind, and was\n just in time to hear it say, as it turned a corner, \"Oh my ears\n and whiskers, how late it's getting!\" She was close behind it when she\n turned the corner, but the Rabbitwas no longer to be seen: she\n found herself in a long, low hall, which was lit up by a row of lamps hanging\n from the roof.", "There were doors all round the hall, but they were all locked; and when\n Alice had been all the way down one side and up the other,\n trying every door, she walked sadly down the middle, wondering how she was ever\n to get out again.", "Suddenly she came upon a little three-legged table, all made of solid glass;\n there was nothing on it except a tiny golden key, and Alice's first thought was\n that it might belong to one of the ", "8", " doors of the hall;\n but, alas! either the locks were too large, or the key was too small, but at any\n rate it would not open any of them. However, on the second time round, she came\n upon a low curtain she had not noticed before, and behind it was a little door\n about fifteen inches high: she tried the little golden key in the lock, and to\n her great delight it fitted!", "Alice finding tiny door behind curtain", "Alice opened the door and found that it led into a small passage,\n not much larger than a rat-hole: she knelt down and looked along the passage\n into the loveliest garden you ever saw. How she longed to get out of that dark\n hall, and wander about among those beds of bright ", "9", " flowers\n and those cool fountains, but she could not even get her head though the\n doorway; \"and even if my head would go through,\" thought poor\n Alice, \"it would be of very little use without\n my shoulders. Oh, how I wish I could shut up like a telescope! I think I\n could, if I only know how to begin.\" For, you see, so many\n out-of-the-way things had happened lately, that Alice had begun to\n think that very few things indeed were really impossible.", "There seemed to be no use in waiting by the little door, so she went back to the\n table, half hoping she might find another key on it, or at any rate a book of\n rules for shutting people up like telescopes: this time she found a little\n bottle on it, (\"which certainly was not here before,\" said Alice,)\n and round the neck of the bottle was a paper label, with the words \"DRINK ME\"\n beautifully printed on it in large letters.", "It was all very well to say \"Drink me,\" but the wise little Alice\n was not going to do that\n ", "10", "in a hurry. \"No, I'll look first,\" she\n said, \"and see whether it’s marked 'poison' or not:\" for she\n had read several nice little histories about children who had got burnt, and\n eaten up by wild beasts and other unpleasant things, all because they\n would not remember the simple rules their friends had taught\n them: such as, that a red-hot poker will burn you if you hold it too long; and\n that if you cut your finger very deeply with a knife, it usually\n bleeds; and she had never forgotten that, if you drink much from a bottle marked\n \"poison,\" it is almost certain to disagree with you, sooner or later.", "Alice taking “Drink Me†bottle", "However, this bottle was not marked \"poison,\" ", "11", " so Alice ventured to taste it, and finding it very nice, (it\n had, in fact, a sort of mixed flavour of cherry-tart, custard, pine-apple, roast\n turkey, toffee, and hot buttered toast,) she very soon finished it off.", "\"What a curious feeling!\" said Alice, \"I must be shutting up like a telescope.\"", "And so it was indeed: she was now only ten inches high, and her face brightened\n up at the thought that she was now the right size for going through the little\n door into that lovely garden. First, however, she waited for a few minutes to\n see if she was going to shrink any further: she felt a little nervous about\n this; \"for it might end, you know,\" said Alice\n to herself, \"in my going out altogether, like a candle. I wonder\n what I should be like then?\" And she tried to fancy what the flame of a\n candle is like after the candle is blown out, ", "12", " for she\n could not remember ever having seen such a thing.", "After a while, finding that nothing more happened, she decided on going into the\n garden at once; but, alas for poor Alice! when she got to the door, she found\n she had forgotten the little golden key, and when she went back to the table for\n it, she found she could not possibly reach it: she could see it quite plainly\n through the glass, and she tried her best to climb up one of the legs of the\n table, but it was too slippery; and when she had tired herself out with trying,\n the poor little thing sat down and cried.", "\"Come, there’s no use in crying like that!\" said\n Alice to herself, rather sharply; \"I advise you\n to leave off this minute!\" She generally gave herself very good advice,\n (though she very seldom followed it,) and sometimes she scolded herself so\n severely as to bring tears into her eyes; and once she remembered trying to box\n her own ears for having cheated herself ", "13", " in\n a game of croquet she was playing against herself, for this curious child was\n very fond of pretending to be two people. \"But it’s no use\n now,\" thought poor Alice, \"to pretend to be\n two people! Why, there's hardly enough of me left to make one\n respectable person!\"", "Soon her eye fell on a little glass box that was lying under the table: she\n opened it, and found in it a very small cake, on which the words \"EAT ME\" were\n beautifully marked in currants. \"Well, I’ll eat it,\" said\n Alice, \"and if it makes me grow larger, I can\n reach the key; and if it makes me grow smaller, I can creep under the door;\n so either way I’ll get into the garden, and I don’t care which\n happens!\"", "She ate a little bit, and said anxiously to herself, ‘Which way?\n Which way?’, holding her hand on the top of her head to feel which way\n it was growing, and she was quite surprised to find that she remained the same\n size: to be sure, this generally happens when one eats cake, but\n Alice had got so much into the ", "14", " way of expecting nothing but out-of-the-way things to happen,\n that it seemed quite dull and stupid for life to go on in the common way.", "So she set to work, and very soon finished off the cake.", "15", "CHAPTER II", "The Pool of Tears", "Alice stretched tall", "\"Curiouser and curiouser!\" cried Alice (she was so much surprised,\n that for the moment she quite forgot how to speak good English); \"now I'm\n opening out like the largest telescope that ever was! Good-bye, feet!\" (for when\n she looked down at her feet, they seemed to be almost out of sight, they were\n getting so far off). \"Oh, my poor little feet, I wonder ", "16", "who will put on your shoes and stockings for you now, dears?\n I'm sure I shan't be able! I shall be a great deal too far off to\n trouble myself about you: you must manage the best way you can; -but I must be\n kind to them,\" thought Alice, \"or perhaps they won't walk the way I\n want to go! Let me see: I'll give them a new pair of boots every Christmas.\"", "And she went on planning to herself how she would manage it. \"They must go by the\n carrier,\" she thought; \"and how funny it'll seem, sending presents to one's own\n feet! And how odd the directions will look!", "Alice's Right Foot, Esq.", " Hearthrug,", " Near the fender,", " (with Alice's love).", "Oh dear, what nonsense I'm talking!\"", "Just then her head struck against the roof of the hall: in fact she was now more\n than nine feet high, and she at once took up the little golden key and hurried\n off to the garden door.", "17", "Poor Alice! It was as much as she could do, lying down on one side, to look\n through into the garden with one eye; but to get through was more hopeless than\n ever: she sat down and began to cry again.", "\"You ought to be ashamed of yourself,\" said Alice, \"a great girl\n like you,\" (she might well say this), \"to go on crying in this way! Stop this\n moment, I tell you!\" But she went on all the same, shedding gallons of tears,\n until there was a large pool all round her, about four inches deep and reaching\n half down the hall.", "After a time she heard a little pattering of feet in the distance, and she\n hastily dried her eyes to see what was coming. It was the White Rabbit\n returning, splendidly dressed, with a pair of white kid gloves in one hand and a\n large fan in the other: he came trotting along in a great hurry, muttering to\n himself as he came, \"Oh! the Duchess, the Duchess! Oh! won't she be savage if\n I've kept her waiting!\" Alice felt so desperate that she was ready\n to ask help ", "18", " of any one; so, when the\n Rabbitcame near her, she began, in a low, timid voice, \"If you\n please, sir-\" The Rabbit started violently, dropped the white kid gloves and the\n fan, and skurried away into the darkness as hard as he could go.", "Giant Alice watching Rabbit run away", "19", "Alice took up the fan and gloves, and, as the hall was very hot, she\n kept fanning herself all the time she went on talking: \"Dear, dear! How queer\n everything is to-day! And yesterday things went on just as usual. I wonder if\n I've been changed in the night? Let me think: was I the same when I got up this\n morning? I almost think I can remember feeling a little different. But if I'm\n not the same, the next question is, Who in the world am I? Ah,\n that's the great puzzle!\" And she began thinking over all the\n children she knew that were of the same age as herself, to see if she could have\n been changed for any of them.", "\"I'm sure I'm not Ada,\" she said, \"for her hair goes in such long ringlets, and\n mine doesn't go in ringlets at all; and I'm sure I can't be Mabel, for I know\n all sorts of things, and she, oh! she knows such a very little! Besides,\n she's she, and I'm I, and-oh dear, how puzzling it all is! I'll\n try if I know all the things I used to know. Let me see: four times five is\n twelve, ", "20", " and four times six is thirteen, and\n four times seven is-oh dear! I shall never get to twenty at that rate! However,\n the Multiplication Table doesn't signify: let's try Geography. London is the\n capital of Paris, and Paris is the capital of Rome, and Rome-no,\n that's all wrong, I'm certain! I must have been changed for\n Mabel! I'll try and say \"How doth the little-'\" and she crossed her hands on her\n lap as if she were saying lessons, and began to repeat it, but her voice sounded\n hoarse and strange, and the words did not come the same as they used to do:-", "\"How doth the little crocodile", " Improve his shining tail,", "And pour the waters of the Nile", " On every golden scale!", "\"How cheerfully he seems to grin,", " How neatly spread his claws,", "And welcome little fishes in", " With gently smiling jaws!\"", "21", "\"I'm sure those are not the right words,\" said poor Alice, and her\n eyes filled with tears again as she went on, \"I must be Mabel after all, and I\n shall have to go and live in that poky little house, and have next to no toys to\n play with, and oh! ever so many lessons to learn! No, I've made up my mind about\n it; if I'm Mabel, I'll stay down here! It'll be no use their putting their heads\n down and saying \"Come up again, dear!\" I shall only look up and say \"Who am I\n then? Tell me that first, and then, if I like being that person, I'll come up:\n if not, I'll stay down here till I'm somebody else' -but, oh dear!\" cried\n Alice, with a sudden burst of tears, \"I do wish they\n would put their heads down! I am so very tired of\n being all alone here!\"", "As she said this she looked down at her hands, and was surprised to see that she\n had put on one of the Rabbit's little white kid gloves while she was talking.\n \"How can I have done that?\" she thought. \"I must be growing\n small", "22", " again.\" She got up and went to the\n table to measure herself by it, and found that, as nearly as she could guess,\n she was now about two feet high, and was going on shrinking rapidly: she soon\n found out that the cause of this was the fan she was holding, and she dropped it\n hastily, just in time to avoid shrinking away altogether.", "\"That was a narrow escape!\" said Alice, a good deal\n frightened at the sudden change, but very glad to find herself still in\n existence; \"and now for the garden!\" and she ran with all speed back to the\n little door: but, alas! the little door was shut again, and the little golden\n key was lying on the glass table as before, \"and things are worse than ever,\"\n thought the poor child, \"for I never was so small as this before, never! And I\n declare it's too bad, that it is!\"", "As she said these words her foot slipped, and in another moment, splash! she was\n up to her chin in salt water. Her first idea was that she had somehow fallen\n into the sea, \"and in ", "23", "that case I can go\n back by railway,\" she said to herself. (Alice had been to the seaside once in\n her life, and had come to the general conclusion, that wherever you go to on the\n English coast you find a number of bathing machines in the sea, some children\n digging in the sand with wooden spades, then a row of lodging houses, and behind\n them a railway station.) However, she soon made out that she was in the pool of\n tears which she had wept when she was nine feet high.", "Alice in pool of tears", "\"I wish I hadn't cried so much!\" said Alice, as she swam about,\n trying to find her way out.", "24", " \"I shall be\n punished for it now, I suppose, by being drowned in my own tears! That\n will be a queer thing, to be sure! However, everything is queer\n to-day.\"", "Just then she heard something splashing about in the pool a little way off, and\n she swam nearer to make out what it was: at first she thought it must be a\n walrus or hippopotamus, but then she remembered how small she was now, and she\n soon made out that it was only a mouse that had slipped in like herself.", "\"Would it be of any use, now,\" thought Alice, \"to speak to this\n mouse? Everything is so out-of-the-way down here, that I should think very\n likely it can talk: at any rate, there's no harm in trying.\" So she began: \"O\n Mouse, do you know the way out of this pool? I am very tired of swimming about\n here, O Mouse!\" (Alice thought this must be the right way of speaking to a\n mouse: she had never done such a thing before, but she remembered having seen in\n her brother's Latin Grammar, \"A mouse- ", "25", "of a\n mouse-to a mouse-a mouse-O mouse!\" The Mouse looked at her rather inquisitively,\n and seemed to her to wink with one of its little eyes, but it said nothing.", "\"Perhaps it doesn't understand English,\" thought Alice; \"I daresay it's a French mouse, come over with William the\n Conqueror.\" (For, with all her knowledge of history, Alice\n had no very clear notion how long ago anything had happened.) So she began\n again: \"Ou est ma chatte?\" which was the first sentence in\n her French lesson-book. The Mousegave a sudden leap out of the\n water, and seemed to quiver all over with fright. \"Oh, I beg your\n pardon!\" cried Alice hastily, afraid that she had hurt the\n poor animal's feelings. \"I quite forgot you didn't like\n cats.\"", "\"Not like cats!\" cried the Mouse, in a shrill, passionate\n voice. \"Would you like cats if you were me?\"", "\"Well, perhaps not,\" said Alice in a soothing\n tone: ", "\"don't be angry about it. And yet ", "26", "I wish I could show you our cat Dinah: I\n think you'd take a fancy to cats if you could only see her. She is such a\n dear quiet thing,\"", "\n Alice went on, half to herself, as she swam lazily ", "\n Alice with Mousein pool of tears ", " about\n in the pool, \"and she sits purring so nicely by the fire, licking\n her paws and washing her face-and she is such a nice soft thing to nurse-and\n she's such a capital one for catching mice-oh, I beg your pardon!\" cried\n Alice again, for this time the Mousewas bristling\n all over, and she felt certain it must be really ", "27", " offended. \"We won't talk about her any more if\n you'd rather not.\"", "\"We indeed!\" cried the Mouse, who was trembling down to the\n end of his tail. \"As if I would talk on such a subject! Our\n family always hated cats: nasty, low, vulgar things! Don't let\n me hear the name again!\"", "\"I won't indeed!\" said Alice, in a great hurry to change the subject\n of conversation. \"Are you-are you fond-of-of dogs?\" The Mousedid\n not answer, so Alice went on eagerly: \"There is such a nice little\n dog near our house I should like to show you! A little bright-eyed terrier, you\n know, with oh, such long curly brown hair! And it'll fetch things when you throw\n them, and it'll sit up and beg for its dinner, and all sorts of things-I can't\n remember half of them-and it belongs to a farmer, you know, and he says it's so\n useful, it's worth a hundred pounds! He says it kills all the rats and-oh dear!\"\n cried Alice in a sorrowful tone, \"I'm afraid I've offended it ", "28", " again!\" For the Mousewas swimming away from her as\n hard as it could go, and making quite a commotion in the pool as it went.", "So she called softly after it, \"Mouse dear! Do come back again, and we won't talk\n about cats or dogs either, if you don't like them!\" When the\n Mouseheard this, it turned round and swam slowly back to her: its\n face was quite pale (with passion, Alice thought), and it said in a\n low trembling voice, \"Let us get to the shore, and then I'll tell you my\n history, and you'll understand why it is I hate cats and dogs.\"", "It was high time to go, for the pool was getting quite crowded with the birds and\n animals that had fallen into it: there were a Duck and a Dodo, a Lory and an\n Eaglet, and several other curious creatures. Alice led the way, and\n the whole party swam to the shore.", "29", "CHAPTER III", "A Caucus-Race and a Long Tale", "Mouse telling story to birds and Alice", "They were indeed a queer-looking party that assembled on the bank-the birds with\n draggled feathers, the animals with their fur clinging close to them, and all\n dripping wet, cross, and uncomfortable.", "The first question of course was, how to get dry again: they had a consultation\n about this, ", "30", " and after a few minutes it seemed quite\n natural to Alice to find herself talking familiarly with them, as\n if she had known them all her life. Indeed, she had quite a long argument with\n the Lory, who at last turned sulky, and would only say, \"I am older than you,\n and must know better;\" and this Alice would not allow without\n knowing how old it was, and, as the Lory positively refused to tell its age,\n there was no more to be said.", "At last the Mouse, who seemed to be a person of authority among them, called out,\n \"Sit down, all of you, and listen to me! I'll soon make you dry\n enough!\" They all sat down at once, in a large ring, with the\n Mousein the middle. Alice kept her eyes anxiously\n fixed on it, for she felt sure she would catch a bad cold if she did not get dry\n very soon.", "\"Ahem!\" said the Mousewith an important air, \"are you all ready?\n This is the driest thing I know. Silence all round, if you please!\n 'William the Conqueror, whose cause was ", "31", " favoured by the pope, was soon submitted to by the English,\n who wanted leaders, and had been of late much accustomed to usurpation and\n conquest. Edwin and Morcar, the earls of Mercia and\n Northumbria-'\"", "\"Ugh!\" said the Lory, with a shiver.", "\"I beg your pardon?\" said the Mouse, frowning, but very politely: \"Did you\n speak?\"", "\"Not I!\" said the Lory hastily.", "\"I thought you did,\" said the Mouse. -\"I proceed. 'Edwin and\n Morcar, the earls of Mercia and Northumbria, declared for him: and even\n Stigand, the patriotic archbishop of Canterbury, found it\n advisable-'\"", "\"Found what?\" said the Duck.", "\"Found it,\" the Mouse replied rather crossly: \"of course you know\n what 'it' means.\"", "\"I know what 'it' means well enough, when I find a thing,\" said the Duck: \"it's\n generally a frog or a worm. The question is, what did the archbishop find?\"", "The Mousedid not notice this question, but ", "32", " hurriedly went on, \"'-found it advisable to go with Edgar\n Atheling to meet William and offer him the crown. William's conduct at first was\n moderate. But the insolence of his Normans-' How are you getting on now, my\n dear?\" it continued, turning to Alice as it spoke.", "\"As wet as ever,\" said Alice in a melancholy tone: \"it doesn't seem\n to dry me at all.\"", "\"In that case,\" said the Dodo solemnly, rising to its feet, \"I move that the\n meeting adjourn, for the immediate adoption of more energetic remedies-\"", "\"Speak English!\" said the Eaglet. \"I don't know the meaning of half those long\n words, and, what's more, I don't believe you do either!\" And the Eaglet bent\n down its head to hide a smile: some of the other birds tittered audibly.", "\"What I was going to say,\" said the Dodo in an offended tone, \"was, that the best\n thing to get us dry would be a Caucus-race.\"", "\"What is a Caucus-race?\" said Alice; not that she wanted much to\n know, but the Dodo ", "33", " had paused as if it\n thought that somebody ought to speak, and no one else seemed\n inclined to say anything.", "\"Why,\" said the Dodo, \"the best way to explain it is to do it.\" (And, as you\n might like to try the thing yourself, some winter day, I will tell you how the\n Dodo managed it.)", "First it marked out a race-course, in a sort of circle, (\"the exact shape doesn't\n matter,\" it said,) and then all the party were placed along the course, here and\n there. There was no \"One, two, three, and away,\" but they began running when\n they liked, and left off when they liked, so that it was not easy to know when\n the race was over. However, when they had been running half an hour or so, and\n were quite dry again, the Dodo suddenly called out \"The race is over!\" and they\n all crowded round it, panting, and asking, \"But who has won?\"", "This question the Dodo could not answer without a great deal of thought, and it\n sat for a long time with one finger pressed upon its ", "34", " forehead (the position in which you usually see Shakespeare,\n in the pictures of him), while the rest waited in silence. At last the Dodo\n said, \"everybody has won, and all must have prizes.\"", "\"But who is to give the prizes?\" quite a chorus of voices asked.", "\"Why, she, of course,\" said the Dodo, pointing to Alice\n with one finger; and the whole party at once crowded round her, calling out in a\n confused way, \"Prizes! Prizes!\"", "Alice had no idea what to do, and in despair she put her hand in her\n pocket, and pulled out a box of comfits, (luckily the salt water had not got\n into it), and handed them round as prizes. There was exactly one a-piece all\n round.", "\"But she must have a prize herself, you know,\" said the Mouse.", "\"Of course,\" the Dodo replied very gravely. \"What else have you got in your\n pocket?\" he went on, turning to Alice.", "\"Only a thimble,\" said Alice sadly.", "\"Hand it over here,\" said the Dodo.", "35", "Dodo presenting thimble", "Then they all crowded round her once more, while the Dodo solemnly presented the\n thimble, saying \"We beg your acceptance of this elegant thimble;\" and, when it\n had finished this short speech, they all cheered.", "36", "Alice thought the whole thing very absurd, but they all looked so\n grave that she did not dare to laugh; and, as she could not think of anything to\n say, she simply bowed, and took the thimble, looking as solemn as she could.", "The next thing was to eat the comfits: this caused some noise and confusion, as\n the large birds complained that they could not taste theirs, and the small ones\n choked and had to be patted on the back. However, it was over at last, and they\n sat down again in a ring, and begged the Mouseto tell them\n something more.", "\"You promised to tell me your history, you know,\" said Alice, \"and\n why it is you hate-C and D,\" she added in a whisper, half afraid that it would\n be offended again.", "\"Mine is a long and a sad tale!\" said the Mouse, turning to Alice,\n and sighing.", "It is a long tail, certainly,\" said\n Alice, looking down with wonder at the Mouse's tail; \"but why do you call it sad?\" And she kept on puzzling about\n it while the Mousewas speaking, ", "37", " so that her idea of the tale was something like this:-", " \"Fury said to a", " mouse, That he", " met in the", " house,", " \"Let us", " both go to", " law: I will", " prosecute", " you.-Come,", " I'll take no", " denial; We", " must have a", " trial: For", " really this", " morning I've", " nothing", " to do.\"", " Said the", " mouse to the", " cur, \"Such", " a trial,", " dear Sir,", " With", " no jury", " or judge,", " would be", " wasting", " our", " breath.\"", " \"I'll be", " judge, I'll", " be jury,\"", " Said", " cunning", " old Fury:", " \"I'll", " try the", " whole", " cause,", " and", " condemn", " you", " to", " death.\"", "38", "\"You are not attending!\" said the Mouseto Alice\n severely. \"What are you thinking of?\"", "\"I beg your pardon,\" said Alice very humbly: \"you had got to the\n fifth bend, I think?\"", "\"I had not!\" cried the Mouse, sharply and very angrily.", "\"A knot!\" said Alice, always ready to make herself useful, and\n looking anxiously about her. \"Oh, do let me help to undo it!\"", "\"I shall do nothing of the sort,\" said the Mouse, getting up and walking away.\n \"You insult me by talking such nonsense!\"", "\"I didn't mean it!\" pleaded poor Alice. \"But you're so easily offended, you\n know!\"", "The Mouseonly growled in reply.", "\"Please come back and finish your story!\" Alice called after it; and\n the others all joined in chorus, \"Yes, please do!\" but the\n Mouseonly shook its head impatiently, and walked a little\n quicker.", "\"What a pity it wouldn't stay!\" sighed the Lory, as soon as it was quite out of\n sight; ", "39", " and an old Crab took the opportunity\n of saying to her daughter \"Ah, my dear! Let this be a lesson to you never to\n lose your temper!\" \"Hold your tongue, Ma!\" said the young Crab, a\n little snappishly. \"You're enough to try the patience of an oyster!\"", "\"I wish I had our Dinah here, I know I do!\" said Alice\n aloud, addressing nobody in particular. \"She'd soon fetch it back!\"", "\"And who is Dinah, if I might venture to ask the question?\" said the\n Lory.", "Alice replied eagerly, for she was always ready to talk about her\n pet: \"Dinah's our cat. And she's such a capital one for catching\n mice you can't think! And oh, I wish you could see her after the birds! Why,\n she'll eat a little bird as soon as look at it!\"", "This speech caused a remarkable sensation among the party. Some of the birds\n hurried off at once: one old Magpie began wrapping itself up very carefully,\n remarking, \"I really must be getting home; the night-air doesn't ", "40", " suit my throat!\" and a Canary called out in a\n trembling voice to its children, \"Come away, my dears! It's high time you were\n all in bed!\" On various pretexts they all moved off, and Alice was\n soon left alone.", "\"I wish I hadn't mentioned Dinah!\" she said to herself in a\n melancholy tone. \"Nobody seems to like her, down here, and I'm sure she's the\n best cat in the world! Oh, my dear Dinah! I wonder if I shall ever\n see you any more!\" And here poor Alice began to cry again, for she\n felt very lonely and low-spirited. In a little while, however, she again heard a\n little pattering of footsteps in the distance, and she looked up eagerly, half\n hoping that the Mousehad changed his mind, and was coming back to\n finish his story." }; const char* table = "unicode.dis,en-us-g2.ctb"; unsigned int i; int j; for (i=0; i < sizeof(strings)/sizeof(strings[0]); i++) { int inlen = strlen(strings[i]); int outlen = inlen * 3; widechar* inbuf = malloc(inlen * sizeof(widechar)); widechar* outbuf = malloc(outlen * sizeof(widechar)); char* typeform = malloc(outlen * sizeof(char)); for (j=0; j<=inlen; j++) typeform[j] = 0; extParseChars(strings[i], inbuf); if (!lou_translate(table, inbuf, &inlen, outbuf, &outlen, typeform, NULL, NULL, NULL, NULL, 0)) return 1; free(inbuf); free(outbuf); free(typeform); } return 0; } liblouis-2.5.3/tests/tables/0000775000175000017500000000000012161044235012760 500000000000000liblouis-2.5.3/tests/tables/nocross.ctb0000664000175000017500000000031112161041523015050 00000000000000include text_nabcc.dis include digits8Dots.uti include latinLetterDef8Dots.uti sign . 46 sign $ 1246 sign = 123456 sign ? 26 nocross ed 1246 nocross en 26 nocross den 123456 include hyph_en_US.dic liblouis-2.5.3/tests/tables/lowercase_with_unicode.ctb0000664000175000017500000000030212161041523020107 00000000000000display ^ 2346 uplow Gg 1245 uplow Rr 1235 uplow Oo 135 uplow Ss 234 lowercase \x00df 2346 # LATIN LETTER SHARP S word gross 1245-2346 word gro\x00df 1245-2346 liblouis-2.5.3/tests/tables/letterDefTest.ctb0000664000175000017500000000114212161041523016143 00000000000000# define dot mappings ## Note: at any given time, only 3 opCodes should be defined in this table. ## This table is to illustrate the internal treatment of various letter definitions. ## this works. #uplow \x2804\x280d 134 #uplow \x280e\x280e 234 ## the following does not work. letter \x280d 134 letter \x280e 234 ## neither does this: #lowercase \x280d 134 #lowercase \x280e 234 ## doesnt work either: #uppercase \x280d 134 #uppercase \x280e 234 ## small test to show that always opcode works. ## tests/harness/letterDefinition_harness.py expects 'ms' to be 'sm' in braille. always \x280d\x280e 234-134 liblouis-2.5.3/tests/tables/pass2.ctb0000664000175000017500000000067412161041523014426 00000000000000uplow Ee 15 LATIN CAPITAL LETTER E - LATIN SMALL LETTER E uplow Nn 1345 LATIN CAPITAL LETTER N - LATIN SMALL LETTER N uplow Rr 1235 LATIN CAPITAL LETTER R - LATIN SMALL LETTER R uplow Oo 135 LATIN CAPITAL LETTER O - LATIN SMALL LETTER O uplow Xx 1346 punctuation ' 6 APOSTROPHE APOSTROPHE-QUOTE pass2 @135 @6-135 pass2 @1346 ? liblouis-2.5.3/tests/tables/Makefile.am0000664000175000017500000000115212161041523014730 00000000000000SUBDIRS = moreTables EXTRA_DIST = \ bad.ctb \ empty.ctb \ inpos_match_replace.ctb \ inpos_pass0.ctb \ inpos_pass1.ctb \ inpos_pass2.ctb \ inpos_pass3.ctb \ large.ctb \ letterDefTest.ctb \ letterDefTest_letter.ctb \ letterDefTest_lowercase.ctb \ letterDefTest_uplow.ctb \ letterDefTest_uppercase.ctb \ loop.ctb \ lowercase_with_unicode.ctb \ nocross.ctb \ pass0_typebuf.ctb \ pass2.ctb \ squash_space_with_context_1.utb \ squash_space_with_context_2.utb \ squash_space_with_correct.utb \ squash_space_with_repeated.utb \ uplow_with_unicode.ctb liblouis-2.5.3/tests/tables/letterDefTest_letter.ctb0000664000175000017500000000013612161041523017524 00000000000000display m 134 display s 234 letter \x280d 134 letter \x280e 234 always \x280d\x280e 234-134 liblouis-2.5.3/tests/tables/bad.ctb0000775000175000017500000000001012161041523014107 00000000000000bad bad liblouis-2.5.3/tests/tables/large.ctb0000664000175000017500000100320112161041523014456 00000000000000# this nonsensical table should trigger some edge cases with the # liblouis handling of hash tables. It can also be used for profiling. include latinLetterDef6Dots.uti always aaaaa 1 always aaaab 1 always aaaac 1 always aaaad 1 always aaaae 1 always aaaaf 1 always aaaag 1 always aaaah 1 always aaaai 1 always aaaaj 1 always aaaak 1 always aaaal 1 always aaaam 1 always aaaan 1 always aaaao 1 always aaaap 1 always aaaaq 1 always aaaar 1 always aaaas 1 always aaaat 1 always aaaau 1 always aaaav 1 always aaaaw 1 always aaaax 1 always aaaay 1 always aaaaz 1 always aaaba 1 always aaabb 1 always aaabc 1 always aaabd 1 always aaabe 1 always aaabf 1 always aaabg 1 always aaabh 1 always aaabi 1 always aaabj 1 always aaabk 1 always aaabl 1 always aaabm 1 always aaabn 1 always aaabo 1 always aaabp 1 always aaabq 1 always aaabr 1 always aaabs 1 always aaabt 1 always aaabu 1 always aaabv 1 always aaabw 1 always aaabx 1 always aaaby 1 always aaabz 1 always aaaca 1 always aaacb 1 always aaacc 1 always aaacd 1 always aaace 1 always aaacf 1 always aaacg 1 always aaach 1 always aaaci 1 always aaacj 1 always aaack 1 always aaacl 1 always aaacm 1 always aaacn 1 always aaaco 1 always aaacp 1 always aaacq 1 always aaacr 1 always aaacs 1 always aaact 1 always aaacu 1 always aaacv 1 always aaacw 1 always aaacx 1 always aaacy 1 always aaacz 1 always aaada 1 always aaadb 1 always aaadc 1 always aaadd 1 always aaade 1 always aaadf 1 always aaadg 1 always aaadh 1 always aaadi 1 always aaadj 1 always aaadk 1 always aaadl 1 always aaadm 1 always aaadn 1 always aaado 1 always aaadp 1 always aaadq 1 always aaadr 1 always aaads 1 always aaadt 1 always aaadu 1 always aaadv 1 always aaadw 1 always aaadx 1 always aaady 1 always aaadz 1 always aaaea 1 always aaaeb 1 always aaaec 1 always aaaed 1 always aaaee 1 always aaaef 1 always aaaeg 1 always aaaeh 1 always aaaei 1 always aaaej 1 always aaaek 1 always aaael 1 always aaaem 1 always aaaen 1 always aaaeo 1 always aaaep 1 always aaaeq 1 always aaaer 1 always aaaes 1 always aaaet 1 always aaaeu 1 always aaaev 1 always aaaew 1 always aaaex 1 always aaaey 1 always aaaez 1 always aaafa 1 always aaafb 1 always aaafc 1 always aaafd 1 always aaafe 1 always aaaff 1 always aaafg 1 always aaafh 1 always aaafi 1 always aaafj 1 always aaafk 1 always aaafl 1 always aaafm 1 always aaafn 1 always aaafo 1 always aaafp 1 always aaafq 1 always aaafr 1 always aaafs 1 always aaaft 1 always aaafu 1 always aaafv 1 always aaafw 1 always aaafx 1 always aaafy 1 always aaafz 1 always aaaga 1 always aaagb 1 always aaagc 1 always aaagd 1 always aaage 1 always aaagf 1 always aaagg 1 always aaagh 1 always aaagi 1 always aaagj 1 always aaagk 1 always aaagl 1 always aaagm 1 always aaagn 1 always aaago 1 always aaagp 1 always aaagq 1 always aaagr 1 always aaags 1 always aaagt 1 always aaagu 1 always aaagv 1 always aaagw 1 always aaagx 1 always aaagy 1 always aaagz 1 always aaaha 1 always aaahb 1 always aaahc 1 always aaahd 1 always aaahe 1 always aaahf 1 always aaahg 1 always aaahh 1 always aaahi 1 always aaahj 1 always aaahk 1 always aaahl 1 always aaahm 1 always aaahn 1 always aaaho 1 always aaahp 1 always aaahq 1 always aaahr 1 always aaahs 1 always aaaht 1 always aaahu 1 always aaahv 1 always aaahw 1 always aaahx 1 always aaahy 1 always aaahz 1 always aaaia 1 always aaaib 1 always aaaic 1 always aaaid 1 always aaaie 1 always aaaif 1 always aaaig 1 always aaaih 1 always aaaii 1 always aaaij 1 always aaaik 1 always aaail 1 always aaaim 1 always aaain 1 always aaaio 1 always aaaip 1 always aaaiq 1 always aaair 1 always aaais 1 always aaait 1 always aaaiu 1 always aaaiv 1 always aaaiw 1 always aaaix 1 always aaaiy 1 always aaaiz 1 always aaaja 1 always aaajb 1 always aaajc 1 always aaajd 1 always aaaje 1 always aaajf 1 always aaajg 1 always aaajh 1 always aaaji 1 always aaajj 1 always aaajk 1 always aaajl 1 always aaajm 1 always aaajn 1 always aaajo 1 always aaajp 1 always aaajq 1 always aaajr 1 always aaajs 1 always aaajt 1 always aaaju 1 always aaajv 1 always aaajw 1 always aaajx 1 always aaajy 1 always aaajz 1 always aaaka 1 always aaakb 1 always aaakc 1 always aaakd 1 always aaake 1 always aaakf 1 always aaakg 1 always aaakh 1 always aaaki 1 always aaakj 1 always aaakk 1 always aaakl 1 always aaakm 1 always aaakn 1 always aaako 1 always aaakp 1 always aaakq 1 always aaakr 1 always aaaks 1 always aaakt 1 always aaaku 1 always aaakv 1 always aaakw 1 always aaakx 1 always aaaky 1 always aaakz 1 always aaala 1 always aaalb 1 always aaalc 1 always aaald 1 always aaale 1 always aaalf 1 always aaalg 1 always aaalh 1 always aaali 1 always aaalj 1 always aaalk 1 always aaall 1 always aaalm 1 always aaaln 1 always aaalo 1 always aaalp 1 always aaalq 1 always aaalr 1 always aaals 1 always aaalt 1 always aaalu 1 always aaalv 1 always aaalw 1 always aaalx 1 always aaaly 1 always aaalz 1 always aaama 1 always aaamb 1 always aaamc 1 always aaamd 1 always aaame 1 always aaamf 1 always aaamg 1 always aaamh 1 always aaami 1 always aaamj 1 always aaamk 1 always aaaml 1 always aaamm 1 always aaamn 1 always aaamo 1 always aaamp 1 always aaamq 1 always aaamr 1 always aaams 1 always aaamt 1 always aaamu 1 always aaamv 1 always aaamw 1 always aaamx 1 always aaamy 1 always aaamz 1 always aaana 1 always aaanb 1 always aaanc 1 always aaand 1 always aaane 1 always aaanf 1 always aaang 1 always aaanh 1 always aaani 1 always aaanj 1 always aaank 1 always aaanl 1 always aaanm 1 always aaann 1 always aaano 1 always aaanp 1 always aaanq 1 always aaanr 1 always aaans 1 always aaant 1 always aaanu 1 always aaanv 1 always aaanw 1 always aaanx 1 always aaany 1 always aaanz 1 always aaaoa 1 always aaaob 1 always aaaoc 1 always aaaod 1 always aaaoe 1 always aaaof 1 always aaaog 1 always aaaoh 1 always aaaoi 1 always aaaoj 1 always aaaok 1 always aaaol 1 always aaaom 1 always aaaon 1 always aaaoo 1 always aaaop 1 always aaaoq 1 always aaaor 1 always aaaos 1 always aaaot 1 always aaaou 1 always aaaov 1 always aaaow 1 always aaaox 1 always aaaoy 1 always aaaoz 1 always aaapa 1 always aaapb 1 always aaapc 1 always aaapd 1 always aaape 1 always aaapf 1 always aaapg 1 always aaaph 1 always aaapi 1 always aaapj 1 always aaapk 1 always aaapl 1 always aaapm 1 always aaapn 1 always aaapo 1 always aaapp 1 always aaapq 1 always aaapr 1 always aaaps 1 always aaapt 1 always aaapu 1 always aaapv 1 always aaapw 1 always aaapx 1 always aaapy 1 always aaapz 1 always aaaqa 1 always aaaqb 1 always aaaqc 1 always aaaqd 1 always aaaqe 1 always aaaqf 1 always aaaqg 1 always aaaqh 1 always aaaqi 1 always aaaqj 1 always aaaqk 1 always aaaql 1 always aaaqm 1 always aaaqn 1 always aaaqo 1 always aaaqp 1 always aaaqq 1 always aaaqr 1 always aaaqs 1 always aaaqt 1 always aaaqu 1 always aaaqv 1 always aaaqw 1 always aaaqx 1 always aaaqy 1 always aaaqz 1 always aaara 1 always aaarb 1 always aaarc 1 always aaard 1 always aaare 1 always aaarf 1 always aaarg 1 always aaarh 1 always aaari 1 always aaarj 1 always aaark 1 always aaarl 1 always aaarm 1 always aaarn 1 always aaaro 1 always aaarp 1 always aaarq 1 always aaarr 1 always aaars 1 always aaart 1 always aaaru 1 always aaarv 1 always aaarw 1 always aaarx 1 always aaary 1 always aaarz 1 always aaasa 1 always aaasb 1 always aaasc 1 always aaasd 1 always aaase 1 always aaasf 1 always aaasg 1 always aaash 1 always aaasi 1 always aaasj 1 always aaask 1 always aaasl 1 always aaasm 1 always aaasn 1 always aaaso 1 always aaasp 1 always aaasq 1 always aaasr 1 always aaass 1 always aaast 1 always aaasu 1 always aaasv 1 always aaasw 1 always aaasx 1 always aaasy 1 always aaasz 1 always aaata 1 always aaatb 1 always aaatc 1 always aaatd 1 always aaate 1 always aaatf 1 always aaatg 1 always aaath 1 always aaati 1 always aaatj 1 always aaatk 1 always aaatl 1 always aaatm 1 always aaatn 1 always aaato 1 always aaatp 1 always aaatq 1 always aaatr 1 always aaats 1 always aaatt 1 always aaatu 1 always aaatv 1 always aaatw 1 always aaatx 1 always aaaty 1 always aaatz 1 always aaaua 1 always aaaub 1 always aaauc 1 always aaaud 1 always aaaue 1 always aaauf 1 always aaaug 1 always aaauh 1 always aaaui 1 always aaauj 1 always aaauk 1 always aaaul 1 always aaaum 1 always aaaun 1 always aaauo 1 always aaaup 1 always aaauq 1 always aaaur 1 always aaaus 1 always aaaut 1 always aaauu 1 always aaauv 1 always aaauw 1 always aaaux 1 always aaauy 1 always aaauz 1 always aaava 1 always aaavb 1 always aaavc 1 always aaavd 1 always aaave 1 always aaavf 1 always aaavg 1 always aaavh 1 always aaavi 1 always aaavj 1 always aaavk 1 always aaavl 1 always aaavm 1 always aaavn 1 always aaavo 1 always aaavp 1 always aaavq 1 always aaavr 1 always aaavs 1 always aaavt 1 always aaavu 1 always aaavv 1 always aaavw 1 always aaavx 1 always aaavy 1 always aaavz 1 always aaawa 1 always aaawb 1 always aaawc 1 always aaawd 1 always aaawe 1 always aaawf 1 always aaawg 1 always aaawh 1 always aaawi 1 always aaawj 1 always aaawk 1 always aaawl 1 always aaawm 1 always aaawn 1 always aaawo 1 always aaawp 1 always aaawq 1 always aaawr 1 always aaaws 1 always aaawt 1 always aaawu 1 always aaawv 1 always aaaww 1 always aaawx 1 always aaawy 1 always aaawz 1 always aaaxa 1 always aaaxb 1 always aaaxc 1 always aaaxd 1 always aaaxe 1 always aaaxf 1 always aaaxg 1 always aaaxh 1 always aaaxi 1 always aaaxj 1 always aaaxk 1 always aaaxl 1 always aaaxm 1 always aaaxn 1 always aaaxo 1 always aaaxp 1 always aaaxq 1 always aaaxr 1 always aaaxs 1 always aaaxt 1 always aaaxu 1 always aaaxv 1 always aaaxw 1 always aaaxx 1 always aaaxy 1 always aaaxz 1 always aaaya 1 always aaayb 1 always aaayc 1 always aaayd 1 always aaaye 1 always aaayf 1 always aaayg 1 always aaayh 1 always aaayi 1 always aaayj 1 always aaayk 1 always aaayl 1 always aaaym 1 always aaayn 1 always aaayo 1 always aaayp 1 always aaayq 1 always aaayr 1 always aaays 1 always aaayt 1 always aaayu 1 always aaayv 1 always aaayw 1 always aaayx 1 always aaayy 1 always aaayz 1 always aaaza 1 always aaazb 1 always aaazc 1 always aaazd 1 always aaaze 1 always aaazf 1 always aaazg 1 always aaazh 1 always aaazi 1 always aaazj 1 always aaazk 1 always aaazl 1 always aaazm 1 always aaazn 1 always aaazo 1 always aaazp 1 always aaazq 1 always aaazr 1 always aaazs 1 always aaazt 1 always aaazu 1 always aaazv 1 always aaazw 1 always aaazx 1 always aaazy 1 always aaazz 1 always aabaa 1 always aabab 1 always aabac 1 always aabad 1 always aabae 1 always aabaf 1 always aabag 1 always aabah 1 always aabai 1 always aabaj 1 always aabak 1 always aabal 1 always aabam 1 always aaban 1 always aabao 1 always aabap 1 always aabaq 1 always aabar 1 always aabas 1 always aabat 1 always aabau 1 always aabav 1 always aabaw 1 always aabax 1 always aabay 1 always aabaz 1 always aabba 1 always aabbb 1 always aabbc 1 always aabbd 1 always aabbe 1 always aabbf 1 always aabbg 1 always aabbh 1 always aabbi 1 always aabbj 1 always aabbk 1 always aabbl 1 always aabbm 1 always aabbn 1 always aabbo 1 always aabbp 1 always aabbq 1 always aabbr 1 always aabbs 1 always aabbt 1 always aabbu 1 always aabbv 1 always aabbw 1 always aabbx 1 always aabby 1 always aabbz 1 always aabca 1 always aabcb 1 always aabcc 1 always aabcd 1 always aabce 1 always aabcf 1 always aabcg 1 always aabch 1 always aabci 1 always aabcj 1 always aabck 1 always aabcl 1 always aabcm 1 always aabcn 1 always aabco 1 always aabcp 1 always aabcq 1 always aabcr 1 always aabcs 1 always aabct 1 always aabcu 1 always aabcv 1 always aabcw 1 always aabcx 1 always aabcy 1 always aabcz 1 always aabda 1 always aabdb 1 always aabdc 1 always aabdd 1 always aabde 1 always aabdf 1 always aabdg 1 always aabdh 1 always aabdi 1 always aabdj 1 always aabdk 1 always aabdl 1 always aabdm 1 always aabdn 1 always aabdo 1 always aabdp 1 always aabdq 1 always aabdr 1 always aabds 1 always aabdt 1 always aabdu 1 always aabdv 1 always aabdw 1 always aabdx 1 always aabdy 1 always aabdz 1 always aabea 1 always aabeb 1 always aabec 1 always aabed 1 always aabee 1 always aabef 1 always aabeg 1 always aabeh 1 always aabei 1 always aabej 1 always aabek 1 always aabel 1 always aabem 1 always aaben 1 always aabeo 1 always aabep 1 always aabeq 1 always aaber 1 always aabes 1 always aabet 1 always aabeu 1 always aabev 1 always aabew 1 always aabex 1 always aabey 1 always aabez 1 always aabfa 1 always aabfb 1 always aabfc 1 always aabfd 1 always aabfe 1 always aabff 1 always aabfg 1 always aabfh 1 always aabfi 1 always aabfj 1 always aabfk 1 always aabfl 1 always aabfm 1 always aabfn 1 always aabfo 1 always aabfp 1 always aabfq 1 always aabfr 1 always aabfs 1 always aabft 1 always aabfu 1 always aabfv 1 always aabfw 1 always aabfx 1 always aabfy 1 always aabfz 1 always aabga 1 always aabgb 1 always aabgc 1 always aabgd 1 always aabge 1 always aabgf 1 always aabgg 1 always aabgh 1 always aabgi 1 always aabgj 1 always aabgk 1 always aabgl 1 always aabgm 1 always aabgn 1 always aabgo 1 always aabgp 1 always aabgq 1 always aabgr 1 always aabgs 1 always aabgt 1 always aabgu 1 always aabgv 1 always aabgw 1 always aabgx 1 always aabgy 1 always aabgz 1 always aabha 1 always aabhb 1 always aabhc 1 always aabhd 1 always aabhe 1 always aabhf 1 always aabhg 1 always aabhh 1 always aabhi 1 always aabhj 1 always aabhk 1 always aabhl 1 always aabhm 1 always aabhn 1 always aabho 1 always aabhp 1 always aabhq 1 always aabhr 1 always aabhs 1 always aabht 1 always aabhu 1 always aabhv 1 always aabhw 1 always aabhx 1 always aabhy 1 always aabhz 1 always aabia 1 always aabib 1 always aabic 1 always aabid 1 always aabie 1 always aabif 1 always aabig 1 always aabih 1 always aabii 1 always aabij 1 always aabik 1 always aabil 1 always aabim 1 always aabin 1 always aabio 1 always aabip 1 always aabiq 1 always aabir 1 always aabis 1 always aabit 1 always aabiu 1 always aabiv 1 always aabiw 1 always aabix 1 always aabiy 1 always aabiz 1 always aabja 1 always aabjb 1 always aabjc 1 always aabjd 1 always aabje 1 always aabjf 1 always aabjg 1 always aabjh 1 always aabji 1 always aabjj 1 always aabjk 1 always aabjl 1 always aabjm 1 always aabjn 1 always aabjo 1 always aabjp 1 always aabjq 1 always aabjr 1 always aabjs 1 always aabjt 1 always aabju 1 always aabjv 1 always aabjw 1 always aabjx 1 always aabjy 1 always aabjz 1 always aabka 1 always aabkb 1 always aabkc 1 always aabkd 1 always aabke 1 always aabkf 1 always aabkg 1 always aabkh 1 always aabki 1 always aabkj 1 always aabkk 1 always aabkl 1 always aabkm 1 always aabkn 1 always aabko 1 always aabkp 1 always aabkq 1 always aabkr 1 always aabks 1 always aabkt 1 always aabku 1 always aabkv 1 always aabkw 1 always aabkx 1 always aabky 1 always aabkz 1 always aabla 1 always aablb 1 always aablc 1 always aabld 1 always aable 1 always aablf 1 always aablg 1 always aablh 1 always aabli 1 always aablj 1 always aablk 1 always aabll 1 always aablm 1 always aabln 1 always aablo 1 always aablp 1 always aablq 1 always aablr 1 always aabls 1 always aablt 1 always aablu 1 always aablv 1 always aablw 1 always aablx 1 always aably 1 always aablz 1 always aabma 1 always aabmb 1 always aabmc 1 always aabmd 1 always aabme 1 always aabmf 1 always aabmg 1 always aabmh 1 always aabmi 1 always aabmj 1 always aabmk 1 always aabml 1 always aabmm 1 always aabmn 1 always aabmo 1 always aabmp 1 always aabmq 1 always aabmr 1 always aabms 1 always aabmt 1 always aabmu 1 always aabmv 1 always aabmw 1 always aabmx 1 always aabmy 1 always aabmz 1 always aabna 1 always aabnb 1 always aabnc 1 always aabnd 1 always aabne 1 always aabnf 1 always aabng 1 always aabnh 1 always aabni 1 always aabnj 1 always aabnk 1 always aabnl 1 always aabnm 1 always aabnn 1 always aabno 1 always aabnp 1 always aabnq 1 always aabnr 1 always aabns 1 always aabnt 1 always aabnu 1 always aabnv 1 always aabnw 1 always aabnx 1 always aabny 1 always aabnz 1 always aaboa 1 always aabob 1 always aaboc 1 always aabod 1 always aaboe 1 always aabof 1 always aabog 1 always aaboh 1 always aaboi 1 always aaboj 1 always aabok 1 always aabol 1 always aabom 1 always aabon 1 always aaboo 1 always aabop 1 always aaboq 1 always aabor 1 always aabos 1 always aabot 1 always aabou 1 always aabov 1 always aabow 1 always aabox 1 always aaboy 1 always aaboz 1 always aabpa 1 always aabpb 1 always aabpc 1 always aabpd 1 always aabpe 1 always aabpf 1 always aabpg 1 always aabph 1 always aabpi 1 always aabpj 1 always aabpk 1 always aabpl 1 always aabpm 1 always aabpn 1 always aabpo 1 always aabpp 1 always aabpq 1 always aabpr 1 always aabps 1 always aabpt 1 always aabpu 1 always aabpv 1 always aabpw 1 always aabpx 1 always aabpy 1 always aabpz 1 always aabqa 1 always aabqb 1 always aabqc 1 always aabqd 1 always aabqe 1 always aabqf 1 always aabqg 1 always aabqh 1 always aabqi 1 always aabqj 1 always aabqk 1 always aabql 1 always aabqm 1 always aabqn 1 always aabqo 1 always aabqp 1 always aabqq 1 always aabqr 1 always aabqs 1 always aabqt 1 always aabqu 1 always aabqv 1 always aabqw 1 always aabqx 1 always aabqy 1 always aabqz 1 always aabra 1 always aabrb 1 always aabrc 1 always aabrd 1 always aabre 1 always aabrf 1 always aabrg 1 always aabrh 1 always aabri 1 always aabrj 1 always aabrk 1 always aabrl 1 always aabrm 1 always aabrn 1 always aabro 1 always aabrp 1 always aabrq 1 always aabrr 1 always aabrs 1 always aabrt 1 always aabru 1 always aabrv 1 always aabrw 1 always aabrx 1 always aabry 1 always aabrz 1 always aabsa 1 always aabsb 1 always aabsc 1 always aabsd 1 always aabse 1 always aabsf 1 always aabsg 1 always aabsh 1 always aabsi 1 always aabsj 1 always aabsk 1 always aabsl 1 always aabsm 1 always aabsn 1 always aabso 1 always aabsp 1 always aabsq 1 always aabsr 1 always aabss 1 always aabst 1 always aabsu 1 always aabsv 1 always aabsw 1 always aabsx 1 always aabsy 1 always aabsz 1 always aabta 1 always aabtb 1 always aabtc 1 always aabtd 1 always aabte 1 always aabtf 1 always aabtg 1 always aabth 1 always aabti 1 always aabtj 1 always aabtk 1 always aabtl 1 always aabtm 1 always aabtn 1 always aabto 1 always aabtp 1 always aabtq 1 always aabtr 1 always aabts 1 always aabtt 1 always aabtu 1 always aabtv 1 always aabtw 1 always aabtx 1 always aabty 1 always aabtz 1 always aabua 1 always aabub 1 always aabuc 1 always aabud 1 always aabue 1 always aabuf 1 always aabug 1 always aabuh 1 always aabui 1 always aabuj 1 always aabuk 1 always aabul 1 always aabum 1 always aabun 1 always aabuo 1 always aabup 1 always aabuq 1 always aabur 1 always aabus 1 always aabut 1 always aabuu 1 always aabuv 1 always aabuw 1 always aabux 1 always aabuy 1 always aabuz 1 always aabva 1 always aabvb 1 always aabvc 1 always aabvd 1 always aabve 1 always aabvf 1 always aabvg 1 always aabvh 1 always aabvi 1 always aabvj 1 always aabvk 1 always aabvl 1 always aabvm 1 always aabvn 1 always aabvo 1 always aabvp 1 always aabvq 1 always aabvr 1 always aabvs 1 always aabvt 1 always aabvu 1 always aabvv 1 always aabvw 1 always aabvx 1 always aabvy 1 always aabvz 1 always aabwa 1 always aabwb 1 always aabwc 1 always aabwd 1 always aabwe 1 always aabwf 1 always aabwg 1 always aabwh 1 always aabwi 1 always aabwj 1 always aabwk 1 always aabwl 1 always aabwm 1 always aabwn 1 always aabwo 1 always aabwp 1 always aabwq 1 always aabwr 1 always aabws 1 always aabwt 1 always aabwu 1 always aabwv 1 always aabww 1 always aabwx 1 always aabwy 1 always aabwz 1 always aabxa 1 always aabxb 1 always aabxc 1 always aabxd 1 always aabxe 1 always aabxf 1 always aabxg 1 always aabxh 1 always aabxi 1 always aabxj 1 always aabxk 1 always aabxl 1 always aabxm 1 always aabxn 1 always aabxo 1 always aabxp 1 always aabxq 1 always aabxr 1 always aabxs 1 always aabxt 1 always aabxu 1 always aabxv 1 always aabxw 1 always aabxx 1 always aabxy 1 always aabxz 1 always aabya 1 always aabyb 1 always aabyc 1 always aabyd 1 always aabye 1 always aabyf 1 always aabyg 1 always aabyh 1 always aabyi 1 always aabyj 1 always aabyk 1 always aabyl 1 always aabym 1 always aabyn 1 always aabyo 1 always aabyp 1 always aabyq 1 always aabyr 1 always aabys 1 always aabyt 1 always aabyu 1 always aabyv 1 always aabyw 1 always aabyx 1 always aabyy 1 always aabyz 1 always aabza 1 always aabzb 1 always aabzc 1 always aabzd 1 always aabze 1 always aabzf 1 always aabzg 1 always aabzh 1 always aabzi 1 always aabzj 1 always aabzk 1 always aabzl 1 always aabzm 1 always aabzn 1 always aabzo 1 always aabzp 1 always aabzq 1 always aabzr 1 always aabzs 1 always aabzt 1 always aabzu 1 always aabzv 1 always aabzw 1 always aabzx 1 always aabzy 1 always aabzz 1 always aacaa 1 always aacab 1 always aacac 1 always aacad 1 always aacae 1 always aacaf 1 always aacag 1 always aacah 1 always aacai 1 always aacaj 1 always aacak 1 always aacal 1 always aacam 1 always aacan 1 always aacao 1 always aacap 1 always aacaq 1 always aacar 1 always aacas 1 always aacat 1 always aacau 1 always aacav 1 always aacaw 1 always aacax 1 always aacay 1 always aacaz 1 always aacba 1 always aacbb 1 always aacbc 1 always aacbd 1 always aacbe 1 always aacbf 1 always aacbg 1 always aacbh 1 always aacbi 1 always aacbj 1 always aacbk 1 always aacbl 1 always aacbm 1 always aacbn 1 always aacbo 1 always aacbp 1 always aacbq 1 always aacbr 1 always aacbs 1 always aacbt 1 always aacbu 1 always aacbv 1 always aacbw 1 always aacbx 1 always aacby 1 always aacbz 1 always aacca 1 always aaccb 1 always aaccc 1 always aaccd 1 always aacce 1 always aaccf 1 always aaccg 1 always aacch 1 always aacci 1 always aaccj 1 always aacck 1 always aaccl 1 always aaccm 1 always aaccn 1 always aacco 1 always aaccp 1 always aaccq 1 always aaccr 1 always aaccs 1 always aacct 1 always aaccu 1 always aaccv 1 always aaccw 1 always aaccx 1 always aaccy 1 always aaccz 1 always aacda 1 always aacdb 1 always aacdc 1 always aacdd 1 always aacde 1 always aacdf 1 always aacdg 1 always aacdh 1 always aacdi 1 always aacdj 1 always aacdk 1 always aacdl 1 always aacdm 1 always aacdn 1 always aacdo 1 always aacdp 1 always aacdq 1 always aacdr 1 always aacds 1 always aacdt 1 always aacdu 1 always aacdv 1 always aacdw 1 always aacdx 1 always aacdy 1 always aacdz 1 always aacea 1 always aaceb 1 always aacec 1 always aaced 1 always aacee 1 always aacef 1 always aaceg 1 always aaceh 1 always aacei 1 always aacej 1 always aacek 1 always aacel 1 always aacem 1 always aacen 1 always aaceo 1 always aacep 1 always aaceq 1 always aacer 1 always aaces 1 always aacet 1 always aaceu 1 always aacev 1 always aacew 1 always aacex 1 always aacey 1 always aacez 1 always aacfa 1 always aacfb 1 always aacfc 1 always aacfd 1 always aacfe 1 always aacff 1 always aacfg 1 always aacfh 1 always aacfi 1 always aacfj 1 always aacfk 1 always aacfl 1 always aacfm 1 always aacfn 1 always aacfo 1 always aacfp 1 always aacfq 1 always aacfr 1 always aacfs 1 always aacft 1 always aacfu 1 always aacfv 1 always aacfw 1 always aacfx 1 always aacfy 1 always aacfz 1 always aacga 1 always aacgb 1 always aacgc 1 always aacgd 1 always aacge 1 always aacgf 1 always aacgg 1 always aacgh 1 always aacgi 1 always aacgj 1 always aacgk 1 always aacgl 1 always aacgm 1 always aacgn 1 always aacgo 1 always aacgp 1 always aacgq 1 always aacgr 1 always aacgs 1 always aacgt 1 always aacgu 1 always aacgv 1 always aacgw 1 always aacgx 1 always aacgy 1 always aacgz 1 always aacha 1 always aachb 1 always aachc 1 always aachd 1 always aache 1 always aachf 1 always aachg 1 always aachh 1 always aachi 1 always aachj 1 always aachk 1 always aachl 1 always aachm 1 always aachn 1 always aacho 1 always aachp 1 always aachq 1 always aachr 1 always aachs 1 always aacht 1 always aachu 1 always aachv 1 always aachw 1 always aachx 1 always aachy 1 always aachz 1 always aacia 1 always aacib 1 always aacic 1 always aacid 1 always aacie 1 always aacif 1 always aacig 1 always aacih 1 always aacii 1 always aacij 1 always aacik 1 always aacil 1 always aacim 1 always aacin 1 always aacio 1 always aacip 1 always aaciq 1 always aacir 1 always aacis 1 always aacit 1 always aaciu 1 always aaciv 1 always aaciw 1 always aacix 1 always aaciy 1 always aaciz 1 always aacja 1 always aacjb 1 always aacjc 1 always aacjd 1 always aacje 1 always aacjf 1 always aacjg 1 always aacjh 1 always aacji 1 always aacjj 1 always aacjk 1 always aacjl 1 always aacjm 1 always aacjn 1 always aacjo 1 always aacjp 1 always aacjq 1 always aacjr 1 always aacjs 1 always aacjt 1 always aacju 1 always aacjv 1 always aacjw 1 always aacjx 1 always aacjy 1 always aacjz 1 always aacka 1 always aackb 1 always aackc 1 always aackd 1 always aacke 1 always aackf 1 always aackg 1 always aackh 1 always aacki 1 always aackj 1 always aackk 1 always aackl 1 always aackm 1 always aackn 1 always aacko 1 always aackp 1 always aackq 1 always aackr 1 always aacks 1 always aackt 1 always aacku 1 always aackv 1 always aackw 1 always aackx 1 always aacky 1 always aackz 1 always aacla 1 always aaclb 1 always aaclc 1 always aacld 1 always aacle 1 always aaclf 1 always aaclg 1 always aaclh 1 always aacli 1 always aaclj 1 always aaclk 1 always aacll 1 always aaclm 1 always aacln 1 always aaclo 1 always aaclp 1 always aaclq 1 always aaclr 1 always aacls 1 always aaclt 1 always aaclu 1 always aaclv 1 always aaclw 1 always aaclx 1 always aacly 1 always aaclz 1 always aacma 1 always aacmb 1 always aacmc 1 always aacmd 1 always aacme 1 always aacmf 1 always aacmg 1 always aacmh 1 always aacmi 1 always aacmj 1 always aacmk 1 always aacml 1 always aacmm 1 always aacmn 1 always aacmo 1 always aacmp 1 always aacmq 1 always aacmr 1 always aacms 1 always aacmt 1 always aacmu 1 always aacmv 1 always aacmw 1 always aacmx 1 always aacmy 1 always aacmz 1 always aacna 1 always aacnb 1 always aacnc 1 always aacnd 1 always aacne 1 always aacnf 1 always aacng 1 always aacnh 1 always aacni 1 always aacnj 1 always aacnk 1 always aacnl 1 always aacnm 1 always aacnn 1 always aacno 1 always aacnp 1 always aacnq 1 always aacnr 1 always aacns 1 always aacnt 1 always aacnu 1 always aacnv 1 always aacnw 1 always aacnx 1 always aacny 1 always aacnz 1 always aacoa 1 always aacob 1 always aacoc 1 always aacod 1 always aacoe 1 always aacof 1 always aacog 1 always aacoh 1 always aacoi 1 always aacoj 1 always aacok 1 always aacol 1 always aacom 1 always aacon 1 always aacoo 1 always aacop 1 always aacoq 1 always aacor 1 always aacos 1 always aacot 1 always aacou 1 always aacov 1 always aacow 1 always aacox 1 always aacoy 1 always aacoz 1 always aacpa 1 always aacpb 1 always aacpc 1 always aacpd 1 always aacpe 1 always aacpf 1 always aacpg 1 always aacph 1 always aacpi 1 always aacpj 1 always aacpk 1 always aacpl 1 always aacpm 1 always aacpn 1 always aacpo 1 always aacpp 1 always aacpq 1 always aacpr 1 always aacps 1 always aacpt 1 always aacpu 1 always aacpv 1 always aacpw 1 always aacpx 1 always aacpy 1 always aacpz 1 always aacqa 1 always aacqb 1 always aacqc 1 always aacqd 1 always aacqe 1 always aacqf 1 always aacqg 1 always aacqh 1 always aacqi 1 always aacqj 1 always aacqk 1 always aacql 1 always aacqm 1 always aacqn 1 always aacqo 1 always aacqp 1 always aacqq 1 always aacqr 1 always aacqs 1 always aacqt 1 always aacqu 1 always aacqv 1 always aacqw 1 always aacqx 1 always aacqy 1 always aacqz 1 always aacra 1 always aacrb 1 always aacrc 1 always aacrd 1 always aacre 1 always aacrf 1 always aacrg 1 always aacrh 1 always aacri 1 always aacrj 1 always aacrk 1 always aacrl 1 always aacrm 1 always aacrn 1 always aacro 1 always aacrp 1 always aacrq 1 always aacrr 1 always aacrs 1 always aacrt 1 always aacru 1 always aacrv 1 always aacrw 1 always aacrx 1 always aacry 1 always aacrz 1 always aacsa 1 always aacsb 1 always aacsc 1 always aacsd 1 always aacse 1 always aacsf 1 always aacsg 1 always aacsh 1 always aacsi 1 always aacsj 1 always aacsk 1 always aacsl 1 always aacsm 1 always aacsn 1 always aacso 1 always aacsp 1 always aacsq 1 always aacsr 1 always aacss 1 always aacst 1 always aacsu 1 always aacsv 1 always aacsw 1 always aacsx 1 always aacsy 1 always aacsz 1 always aacta 1 always aactb 1 always aactc 1 always aactd 1 always aacte 1 always aactf 1 always aactg 1 always aacth 1 always aacti 1 always aactj 1 always aactk 1 always aactl 1 always aactm 1 always aactn 1 always aacto 1 always aactp 1 always aactq 1 always aactr 1 always aacts 1 always aactt 1 always aactu 1 always aactv 1 always aactw 1 always aactx 1 always aacty 1 always aactz 1 always aacua 1 always aacub 1 always aacuc 1 always aacud 1 always aacue 1 always aacuf 1 always aacug 1 always aacuh 1 always aacui 1 always aacuj 1 always aacuk 1 always aacul 1 always aacum 1 always aacun 1 always aacuo 1 always aacup 1 always aacuq 1 always aacur 1 always aacus 1 always aacut 1 always aacuu 1 always aacuv 1 always aacuw 1 always aacux 1 always aacuy 1 always aacuz 1 always aacva 1 always aacvb 1 always aacvc 1 always aacvd 1 always aacve 1 always aacvf 1 always aacvg 1 always aacvh 1 always aacvi 1 always aacvj 1 always aacvk 1 always aacvl 1 always aacvm 1 always aacvn 1 always aacvo 1 always aacvp 1 always aacvq 1 always aacvr 1 always aacvs 1 always aacvt 1 always aacvu 1 always aacvv 1 always aacvw 1 always aacvx 1 always aacvy 1 always aacvz 1 always aacwa 1 always aacwb 1 always aacwc 1 always aacwd 1 always aacwe 1 always aacwf 1 always aacwg 1 always aacwh 1 always aacwi 1 always aacwj 1 always aacwk 1 always aacwl 1 always aacwm 1 always aacwn 1 always aacwo 1 always aacwp 1 always aacwq 1 always aacwr 1 always aacws 1 always aacwt 1 always aacwu 1 always aacwv 1 always aacww 1 always aacwx 1 always aacwy 1 always aacwz 1 always aacxa 1 always aacxb 1 always aacxc 1 always aacxd 1 always aacxe 1 always aacxf 1 always aacxg 1 always aacxh 1 always aacxi 1 always aacxj 1 always aacxk 1 always aacxl 1 always aacxm 1 always aacxn 1 always aacxo 1 always aacxp 1 always aacxq 1 always aacxr 1 always aacxs 1 always aacxt 1 always aacxu 1 always aacxv 1 always aacxw 1 always aacxx 1 always aacxy 1 always aacxz 1 always aacya 1 always aacyb 1 always aacyc 1 always aacyd 1 always aacye 1 always aacyf 1 always aacyg 1 always aacyh 1 always aacyi 1 always aacyj 1 always aacyk 1 always aacyl 1 always aacym 1 always aacyn 1 always aacyo 1 always aacyp 1 always aacyq 1 always aacyr 1 always aacys 1 always aacyt 1 always aacyu 1 always aacyv 1 always aacyw 1 always aacyx 1 always aacyy 1 always aacyz 1 always aacza 1 always aaczb 1 always aaczc 1 always aaczd 1 always aacze 1 always aaczf 1 always aaczg 1 always aaczh 1 always aaczi 1 always aaczj 1 always aaczk 1 always aaczl 1 always aaczm 1 always aaczn 1 always aaczo 1 always aaczp 1 always aaczq 1 always aaczr 1 always aaczs 1 always aaczt 1 always aaczu 1 always aaczv 1 always aaczw 1 always aaczx 1 always aaczy 1 always aaczz 1 always aadaa 1 always aadab 1 always aadac 1 always aadad 1 always aadae 1 always aadaf 1 always aadag 1 always aadah 1 always aadai 1 always aadaj 1 always aadak 1 always aadal 1 always aadam 1 always aadan 1 always aadao 1 always aadap 1 always aadaq 1 always aadar 1 always aadas 1 always aadat 1 always aadau 1 always aadav 1 always aadaw 1 always aadax 1 always aaday 1 always aadaz 1 always aadba 1 always aadbb 1 always aadbc 1 always aadbd 1 always aadbe 1 always aadbf 1 always aadbg 1 always aadbh 1 always aadbi 1 always aadbj 1 always aadbk 1 always aadbl 1 always aadbm 1 always aadbn 1 always aadbo 1 always aadbp 1 always aadbq 1 always aadbr 1 always aadbs 1 always aadbt 1 always aadbu 1 always aadbv 1 always aadbw 1 always aadbx 1 always aadby 1 always aadbz 1 always aadca 1 always aadcb 1 always aadcc 1 always aadcd 1 always aadce 1 always aadcf 1 always aadcg 1 always aadch 1 always aadci 1 always aadcj 1 always aadck 1 always aadcl 1 always aadcm 1 always aadcn 1 always aadco 1 always aadcp 1 always aadcq 1 always aadcr 1 always aadcs 1 always aadct 1 always aadcu 1 always aadcv 1 always aadcw 1 always aadcx 1 always aadcy 1 always aadcz 1 always aadda 1 always aaddb 1 always aaddc 1 always aaddd 1 always aadde 1 always aaddf 1 always aaddg 1 always aaddh 1 always aaddi 1 always aaddj 1 always aaddk 1 always aaddl 1 always aaddm 1 always aaddn 1 always aaddo 1 always aaddp 1 always aaddq 1 always aaddr 1 always aadds 1 always aaddt 1 always aaddu 1 always aaddv 1 always aaddw 1 always aaddx 1 always aaddy 1 always aaddz 1 always aadea 1 always aadeb 1 always aadec 1 always aaded 1 always aadee 1 always aadef 1 always aadeg 1 always aadeh 1 always aadei 1 always aadej 1 always aadek 1 always aadel 1 always aadem 1 always aaden 1 always aadeo 1 always aadep 1 always aadeq 1 always aader 1 always aades 1 always aadet 1 always aadeu 1 always aadev 1 always aadew 1 always aadex 1 always aadey 1 always aadez 1 always aadfa 1 always aadfb 1 always aadfc 1 always aadfd 1 always aadfe 1 always aadff 1 always aadfg 1 always aadfh 1 always aadfi 1 always aadfj 1 always aadfk 1 always aadfl 1 always aadfm 1 always aadfn 1 always aadfo 1 always aadfp 1 always aadfq 1 always aadfr 1 always aadfs 1 always aadft 1 always aadfu 1 always aadfv 1 always aadfw 1 always aadfx 1 always aadfy 1 always aadfz 1 always aadga 1 always aadgb 1 always aadgc 1 always aadgd 1 always aadge 1 always aadgf 1 always aadgg 1 always aadgh 1 always aadgi 1 always aadgj 1 always aadgk 1 always aadgl 1 always aadgm 1 always aadgn 1 always aadgo 1 always aadgp 1 always aadgq 1 always aadgr 1 always aadgs 1 always aadgt 1 always aadgu 1 always aadgv 1 always aadgw 1 always aadgx 1 always aadgy 1 always aadgz 1 always aadha 1 always aadhb 1 always aadhc 1 always aadhd 1 always aadhe 1 always aadhf 1 always aadhg 1 always aadhh 1 always aadhi 1 always aadhj 1 always aadhk 1 always aadhl 1 always aadhm 1 always aadhn 1 always aadho 1 always aadhp 1 always aadhq 1 always aadhr 1 always aadhs 1 always aadht 1 always aadhu 1 always aadhv 1 always aadhw 1 always aadhx 1 always aadhy 1 always aadhz 1 always aadia 1 always aadib 1 always aadic 1 always aadid 1 always aadie 1 always aadif 1 always aadig 1 always aadih 1 always aadii 1 always aadij 1 always aadik 1 always aadil 1 always aadim 1 always aadin 1 always aadio 1 always aadip 1 always aadiq 1 always aadir 1 always aadis 1 always aadit 1 always aadiu 1 always aadiv 1 always aadiw 1 always aadix 1 always aadiy 1 always aadiz 1 always aadja 1 always aadjb 1 always aadjc 1 always aadjd 1 always aadje 1 always aadjf 1 always aadjg 1 always aadjh 1 always aadji 1 always aadjj 1 always aadjk 1 always aadjl 1 always aadjm 1 always aadjn 1 always aadjo 1 always aadjp 1 always aadjq 1 always aadjr 1 always aadjs 1 always aadjt 1 always aadju 1 always aadjv 1 always aadjw 1 always aadjx 1 always aadjy 1 always aadjz 1 always aadka 1 always aadkb 1 always aadkc 1 always aadkd 1 always aadke 1 always aadkf 1 always aadkg 1 always aadkh 1 always aadki 1 always aadkj 1 always aadkk 1 always aadkl 1 always aadkm 1 always aadkn 1 always aadko 1 always aadkp 1 always aadkq 1 always aadkr 1 always aadks 1 always aadkt 1 always aadku 1 always aadkv 1 always aadkw 1 always aadkx 1 always aadky 1 always aadkz 1 always aadla 1 always aadlb 1 always aadlc 1 always aadld 1 always aadle 1 always aadlf 1 always aadlg 1 always aadlh 1 always aadli 1 always aadlj 1 always aadlk 1 always aadll 1 always aadlm 1 always aadln 1 always aadlo 1 always aadlp 1 always aadlq 1 always aadlr 1 always aadls 1 always aadlt 1 always aadlu 1 always aadlv 1 always aadlw 1 always aadlx 1 always aadly 1 always aadlz 1 always aadma 1 always aadmb 1 always aadmc 1 always aadmd 1 always aadme 1 always aadmf 1 always aadmg 1 always aadmh 1 always aadmi 1 always aadmj 1 always aadmk 1 always aadml 1 always aadmm 1 always aadmn 1 always aadmo 1 always aadmp 1 always aadmq 1 always aadmr 1 always aadms 1 always aadmt 1 always aadmu 1 always aadmv 1 always aadmw 1 always aadmx 1 always aadmy 1 always aadmz 1 always aadna 1 always aadnb 1 always aadnc 1 always aadnd 1 always aadne 1 always aadnf 1 always aadng 1 always aadnh 1 always aadni 1 always aadnj 1 always aadnk 1 always aadnl 1 always aadnm 1 always aadnn 1 always aadno 1 always aadnp 1 always aadnq 1 always aadnr 1 always aadns 1 always aadnt 1 always aadnu 1 always aadnv 1 always aadnw 1 always aadnx 1 always aadny 1 always aadnz 1 always aadoa 1 always aadob 1 always aadoc 1 always aadod 1 always aadoe 1 always aadof 1 always aadog 1 always aadoh 1 always aadoi 1 always aadoj 1 always aadok 1 always aadol 1 always aadom 1 always aadon 1 always aadoo 1 always aadop 1 always aadoq 1 always aador 1 always aados 1 always aadot 1 always aadou 1 always aadov 1 always aadow 1 always aadox 1 always aadoy 1 always aadoz 1 always aadpa 1 always aadpb 1 always aadpc 1 always aadpd 1 always aadpe 1 always aadpf 1 always aadpg 1 always aadph 1 always aadpi 1 always aadpj 1 always aadpk 1 always aadpl 1 always aadpm 1 always aadpn 1 always aadpo 1 always aadpp 1 always aadpq 1 always aadpr 1 always aadps 1 always aadpt 1 always aadpu 1 always aadpv 1 always aadpw 1 always aadpx 1 always aadpy 1 always aadpz 1 always aadqa 1 always aadqb 1 always aadqc 1 always aadqd 1 always aadqe 1 always aadqf 1 always aadqg 1 always aadqh 1 always aadqi 1 always aadqj 1 always aadqk 1 always aadql 1 always aadqm 1 always aadqn 1 always aadqo 1 always aadqp 1 always aadqq 1 always aadqr 1 always aadqs 1 always aadqt 1 always aadqu 1 always aadqv 1 always aadqw 1 always aadqx 1 always aadqy 1 always aadqz 1 always aadra 1 always aadrb 1 always aadrc 1 always aadrd 1 always aadre 1 always aadrf 1 always aadrg 1 always aadrh 1 always aadri 1 always aadrj 1 always aadrk 1 always aadrl 1 always aadrm 1 always aadrn 1 always aadro 1 always aadrp 1 always aadrq 1 always aadrr 1 always aadrs 1 always aadrt 1 always aadru 1 always aadrv 1 always aadrw 1 always aadrx 1 always aadry 1 always aadrz 1 always aadsa 1 always aadsb 1 always aadsc 1 always aadsd 1 always aadse 1 always aadsf 1 always aadsg 1 always aadsh 1 always aadsi 1 always aadsj 1 always aadsk 1 always aadsl 1 always aadsm 1 always aadsn 1 always aadso 1 always aadsp 1 always aadsq 1 always aadsr 1 always aadss 1 always aadst 1 always aadsu 1 always aadsv 1 always aadsw 1 always aadsx 1 always aadsy 1 always aadsz 1 always aadta 1 always aadtb 1 always aadtc 1 always aadtd 1 always aadte 1 always aadtf 1 always aadtg 1 always aadth 1 always aadti 1 always aadtj 1 always aadtk 1 always aadtl 1 always aadtm 1 always aadtn 1 always aadto 1 always aadtp 1 always aadtq 1 always aadtr 1 always aadts 1 always aadtt 1 always aadtu 1 always aadtv 1 always aadtw 1 always aadtx 1 always aadty 1 always aadtz 1 always aadua 1 always aadub 1 always aaduc 1 always aadud 1 always aadue 1 always aaduf 1 always aadug 1 always aaduh 1 always aadui 1 always aaduj 1 always aaduk 1 always aadul 1 always aadum 1 always aadun 1 always aaduo 1 always aadup 1 always aaduq 1 always aadur 1 always aadus 1 always aadut 1 always aaduu 1 always aaduv 1 always aaduw 1 always aadux 1 always aaduy 1 always aaduz 1 always aadva 1 always aadvb 1 always aadvc 1 always aadvd 1 always aadve 1 always aadvf 1 always aadvg 1 always aadvh 1 always aadvi 1 always aadvj 1 always aadvk 1 always aadvl 1 always aadvm 1 always aadvn 1 always aadvo 1 always aadvp 1 always aadvq 1 always aadvr 1 always aadvs 1 always aadvt 1 always aadvu 1 always aadvv 1 always aadvw 1 always aadvx 1 always aadvy 1 always aadvz 1 always aadwa 1 always aadwb 1 always aadwc 1 always aadwd 1 always aadwe 1 always aadwf 1 always aadwg 1 always aadwh 1 always aadwi 1 always aadwj 1 always aadwk 1 always aadwl 1 always aadwm 1 always aadwn 1 always aadwo 1 always aadwp 1 always aadwq 1 always aadwr 1 always aadws 1 always aadwt 1 always aadwu 1 always aadwv 1 always aadww 1 always aadwx 1 always aadwy 1 always aadwz 1 always aadxa 1 always aadxb 1 always aadxc 1 always aadxd 1 always aadxe 1 always aadxf 1 always aadxg 1 always aadxh 1 always aadxi 1 always aadxj 1 always aadxk 1 always aadxl 1 always aadxm 1 always aadxn 1 always aadxo 1 always aadxp 1 always aadxq 1 always aadxr 1 always aadxs 1 always aadxt 1 always aadxu 1 always aadxv 1 always aadxw 1 always aadxx 1 always aadxy 1 always aadxz 1 always aadya 1 always aadyb 1 always aadyc 1 always aadyd 1 always aadye 1 always aadyf 1 always aadyg 1 always aadyh 1 always aadyi 1 always aadyj 1 always aadyk 1 always aadyl 1 always aadym 1 always aadyn 1 always aadyo 1 always aadyp 1 always aadyq 1 always aadyr 1 always aadys 1 always aadyt 1 always aadyu 1 always aadyv 1 always aadyw 1 always aadyx 1 always aadyy 1 always aadyz 1 always aadza 1 always aadzb 1 always aadzc 1 always aadzd 1 always aadze 1 always aadzf 1 always aadzg 1 always aadzh 1 always aadzi 1 always aadzj 1 always aadzk 1 always aadzl 1 always aadzm 1 always aadzn 1 always aadzo 1 always aadzp 1 always aadzq 1 always aadzr 1 always aadzs 1 always aadzt 1 always aadzu 1 always aadzv 1 always aadzw 1 always aadzx 1 always aadzy 1 always aadzz 1 always aaeaa 1 always aaeab 1 always aaeac 1 always aaead 1 always aaeae 1 always aaeaf 1 always aaeag 1 always aaeah 1 always aaeai 1 always aaeaj 1 always aaeak 1 always aaeal 1 always aaeam 1 always aaean 1 always aaeao 1 always aaeap 1 always aaeaq 1 always aaear 1 always aaeas 1 always aaeat 1 always aaeau 1 always aaeav 1 always aaeaw 1 always aaeax 1 always aaeay 1 always aaeaz 1 always aaeba 1 always aaebb 1 always aaebc 1 always aaebd 1 always aaebe 1 always aaebf 1 always aaebg 1 always aaebh 1 always aaebi 1 always aaebj 1 always aaebk 1 always aaebl 1 always aaebm 1 always aaebn 1 always aaebo 1 always aaebp 1 always aaebq 1 always aaebr 1 always aaebs 1 always aaebt 1 always aaebu 1 always aaebv 1 always aaebw 1 always aaebx 1 always aaeby 1 always aaebz 1 always aaeca 1 always aaecb 1 always aaecc 1 always aaecd 1 always aaece 1 always aaecf 1 always aaecg 1 always aaech 1 always aaeci 1 always aaecj 1 always aaeck 1 always aaecl 1 always aaecm 1 always aaecn 1 always aaeco 1 always aaecp 1 always aaecq 1 always aaecr 1 always aaecs 1 always aaect 1 always aaecu 1 always aaecv 1 always aaecw 1 always aaecx 1 always aaecy 1 always aaecz 1 always aaeda 1 always aaedb 1 always aaedc 1 always aaedd 1 always aaede 1 always aaedf 1 always aaedg 1 always aaedh 1 always aaedi 1 always aaedj 1 always aaedk 1 always aaedl 1 always aaedm 1 always aaedn 1 always aaedo 1 always aaedp 1 always aaedq 1 always aaedr 1 always aaeds 1 always aaedt 1 always aaedu 1 always aaedv 1 always aaedw 1 always aaedx 1 always aaedy 1 always aaedz 1 always aaeea 1 always aaeeb 1 always aaeec 1 always aaeed 1 always aaeee 1 always aaeef 1 always aaeeg 1 always aaeeh 1 always aaeei 1 always aaeej 1 always aaeek 1 always aaeel 1 always aaeem 1 always aaeen 1 always aaeeo 1 always aaeep 1 always aaeeq 1 always aaeer 1 always aaees 1 always aaeet 1 always aaeeu 1 always aaeev 1 always aaeew 1 always aaeex 1 always aaeey 1 always aaeez 1 always aaefa 1 always aaefb 1 always aaefc 1 always aaefd 1 always aaefe 1 always aaeff 1 always aaefg 1 always aaefh 1 always aaefi 1 always aaefj 1 always aaefk 1 always aaefl 1 always aaefm 1 always aaefn 1 always aaefo 1 always aaefp 1 always aaefq 1 always aaefr 1 always aaefs 1 always aaeft 1 always aaefu 1 always aaefv 1 always aaefw 1 always aaefx 1 always aaefy 1 always aaefz 1 always aaega 1 always aaegb 1 always aaegc 1 always aaegd 1 always aaege 1 always aaegf 1 always aaegg 1 always aaegh 1 always aaegi 1 always aaegj 1 always aaegk 1 always aaegl 1 always aaegm 1 always aaegn 1 always aaego 1 always aaegp 1 always aaegq 1 always aaegr 1 always aaegs 1 always aaegt 1 always aaegu 1 always aaegv 1 always aaegw 1 always aaegx 1 always aaegy 1 always aaegz 1 always aaeha 1 always aaehb 1 always aaehc 1 always aaehd 1 always aaehe 1 always aaehf 1 always aaehg 1 always aaehh 1 always aaehi 1 always aaehj 1 always aaehk 1 always aaehl 1 always aaehm 1 always aaehn 1 always aaeho 1 always aaehp 1 always aaehq 1 always aaehr 1 always aaehs 1 always aaeht 1 always aaehu 1 always aaehv 1 always aaehw 1 always aaehx 1 always aaehy 1 always aaehz 1 always aaeia 1 always aaeib 1 always aaeic 1 always aaeid 1 always aaeie 1 always aaeif 1 always aaeig 1 always aaeih 1 always aaeii 1 always aaeij 1 always aaeik 1 always aaeil 1 always aaeim 1 always aaein 1 always aaeio 1 always aaeip 1 always aaeiq 1 always aaeir 1 always aaeis 1 always aaeit 1 always aaeiu 1 always aaeiv 1 always aaeiw 1 always aaeix 1 always aaeiy 1 always aaeiz 1 always aaeja 1 always aaejb 1 always aaejc 1 always aaejd 1 always aaeje 1 always aaejf 1 always aaejg 1 always aaejh 1 always aaeji 1 always aaejj 1 always aaejk 1 always aaejl 1 always aaejm 1 always aaejn 1 always aaejo 1 always aaejp 1 always aaejq 1 always aaejr 1 always aaejs 1 always aaejt 1 always aaeju 1 always aaejv 1 always aaejw 1 always aaejx 1 always aaejy 1 always aaejz 1 always aaeka 1 always aaekb 1 always aaekc 1 always aaekd 1 always aaeke 1 always aaekf 1 always aaekg 1 always aaekh 1 always aaeki 1 always aaekj 1 always aaekk 1 always aaekl 1 always aaekm 1 always aaekn 1 always aaeko 1 always aaekp 1 always aaekq 1 always aaekr 1 always aaeks 1 always aaekt 1 always aaeku 1 always aaekv 1 always aaekw 1 always aaekx 1 always aaeky 1 always aaekz 1 always aaela 1 always aaelb 1 always aaelc 1 always aaeld 1 always aaele 1 always aaelf 1 always aaelg 1 always aaelh 1 always aaeli 1 always aaelj 1 always aaelk 1 always aaell 1 always aaelm 1 always aaeln 1 always aaelo 1 always aaelp 1 always aaelq 1 always aaelr 1 always aaels 1 always aaelt 1 always aaelu 1 always aaelv 1 always aaelw 1 always aaelx 1 always aaely 1 always aaelz 1 always aaema 1 always aaemb 1 always aaemc 1 always aaemd 1 always aaeme 1 always aaemf 1 always aaemg 1 always aaemh 1 always aaemi 1 always aaemj 1 always aaemk 1 always aaeml 1 always aaemm 1 always aaemn 1 always aaemo 1 always aaemp 1 always aaemq 1 always aaemr 1 always aaems 1 always aaemt 1 always aaemu 1 always aaemv 1 always aaemw 1 always aaemx 1 always aaemy 1 always aaemz 1 always aaena 1 always aaenb 1 always aaenc 1 always aaend 1 always aaene 1 always aaenf 1 always aaeng 1 always aaenh 1 always aaeni 1 always aaenj 1 always aaenk 1 always aaenl 1 always aaenm 1 always aaenn 1 always aaeno 1 always aaenp 1 always aaenq 1 always aaenr 1 always aaens 1 always aaent 1 always aaenu 1 always aaenv 1 always aaenw 1 always aaenx 1 always aaeny 1 always aaenz 1 always aaeoa 1 always aaeob 1 always aaeoc 1 always aaeod 1 always aaeoe 1 always aaeof 1 always aaeog 1 always aaeoh 1 always aaeoi 1 always aaeoj 1 always aaeok 1 always aaeol 1 always aaeom 1 always aaeon 1 always aaeoo 1 always aaeop 1 always aaeoq 1 always aaeor 1 always aaeos 1 always aaeot 1 always aaeou 1 always aaeov 1 always aaeow 1 always aaeox 1 always aaeoy 1 always aaeoz 1 always aaepa 1 always aaepb 1 always aaepc 1 always aaepd 1 always aaepe 1 always aaepf 1 always aaepg 1 always aaeph 1 always aaepi 1 always aaepj 1 always aaepk 1 always aaepl 1 always aaepm 1 always aaepn 1 always aaepo 1 always aaepp 1 always aaepq 1 always aaepr 1 always aaeps 1 always aaept 1 always aaepu 1 always aaepv 1 always aaepw 1 always aaepx 1 always aaepy 1 always aaepz 1 always aaeqa 1 always aaeqb 1 always aaeqc 1 always aaeqd 1 always aaeqe 1 always aaeqf 1 always aaeqg 1 always aaeqh 1 always aaeqi 1 always aaeqj 1 always aaeqk 1 always aaeql 1 always aaeqm 1 always aaeqn 1 always aaeqo 1 always aaeqp 1 always aaeqq 1 always aaeqr 1 always aaeqs 1 always aaeqt 1 always aaequ 1 always aaeqv 1 always aaeqw 1 always aaeqx 1 always aaeqy 1 always aaeqz 1 always aaera 1 always aaerb 1 always aaerc 1 always aaerd 1 always aaere 1 always aaerf 1 always aaerg 1 always aaerh 1 always aaeri 1 always aaerj 1 always aaerk 1 always aaerl 1 always aaerm 1 always aaern 1 always aaero 1 always aaerp 1 always aaerq 1 always aaerr 1 always aaers 1 always aaert 1 always aaeru 1 always aaerv 1 always aaerw 1 always aaerx 1 always aaery 1 always aaerz 1 always aaesa 1 always aaesb 1 always aaesc 1 always aaesd 1 always aaese 1 always aaesf 1 always aaesg 1 always aaesh 1 always aaesi 1 always aaesj 1 always aaesk 1 always aaesl 1 always aaesm 1 always aaesn 1 always aaeso 1 always aaesp 1 always aaesq 1 always aaesr 1 always aaess 1 always aaest 1 always aaesu 1 always aaesv 1 always aaesw 1 always aaesx 1 always aaesy 1 always aaesz 1 always aaeta 1 always aaetb 1 always aaetc 1 always aaetd 1 always aaete 1 always aaetf 1 always aaetg 1 always aaeth 1 always aaeti 1 always aaetj 1 always aaetk 1 always aaetl 1 always aaetm 1 always aaetn 1 always aaeto 1 always aaetp 1 always aaetq 1 always aaetr 1 always aaets 1 always aaett 1 always aaetu 1 always aaetv 1 always aaetw 1 always aaetx 1 always aaety 1 always aaetz 1 always aaeua 1 always aaeub 1 always aaeuc 1 always aaeud 1 always aaeue 1 always aaeuf 1 always aaeug 1 always aaeuh 1 always aaeui 1 always aaeuj 1 always aaeuk 1 always aaeul 1 always aaeum 1 always aaeun 1 always aaeuo 1 always aaeup 1 always aaeuq 1 always aaeur 1 always aaeus 1 always aaeut 1 always aaeuu 1 always aaeuv 1 always aaeuw 1 always aaeux 1 always aaeuy 1 always aaeuz 1 always aaeva 1 always aaevb 1 always aaevc 1 always aaevd 1 always aaeve 1 always aaevf 1 always aaevg 1 always aaevh 1 always aaevi 1 always aaevj 1 always aaevk 1 always aaevl 1 always aaevm 1 always aaevn 1 always aaevo 1 always aaevp 1 always aaevq 1 always aaevr 1 always aaevs 1 always aaevt 1 always aaevu 1 always aaevv 1 always aaevw 1 always aaevx 1 always aaevy 1 always aaevz 1 always aaewa 1 always aaewb 1 always aaewc 1 always aaewd 1 always aaewe 1 always aaewf 1 always aaewg 1 always aaewh 1 always aaewi 1 always aaewj 1 always aaewk 1 always aaewl 1 always aaewm 1 always aaewn 1 always aaewo 1 always aaewp 1 always aaewq 1 always aaewr 1 always aaews 1 always aaewt 1 always aaewu 1 always aaewv 1 always aaeww 1 always aaewx 1 always aaewy 1 always aaewz 1 always aaexa 1 always aaexb 1 always aaexc 1 always aaexd 1 always aaexe 1 always aaexf 1 always aaexg 1 always aaexh 1 always aaexi 1 always aaexj 1 always aaexk 1 always aaexl 1 always aaexm 1 always aaexn 1 always aaexo 1 always aaexp 1 always aaexq 1 always aaexr 1 always aaexs 1 always aaext 1 always aaexu 1 always aaexv 1 always aaexw 1 always aaexx 1 always aaexy 1 always aaexz 1 always aaeya 1 always aaeyb 1 always aaeyc 1 always aaeyd 1 always aaeye 1 always aaeyf 1 always aaeyg 1 always aaeyh 1 always aaeyi 1 always aaeyj 1 always aaeyk 1 always aaeyl 1 always aaeym 1 always aaeyn 1 always aaeyo 1 always aaeyp 1 always aaeyq 1 always aaeyr 1 always aaeys 1 always aaeyt 1 always aaeyu 1 always aaeyv 1 always aaeyw 1 always aaeyx 1 always aaeyy 1 always aaeyz 1 always aaeza 1 always aaezb 1 always aaezc 1 always aaezd 1 always aaeze 1 always aaezf 1 always aaezg 1 always aaezh 1 always aaezi 1 always aaezj 1 always aaezk 1 always aaezl 1 always aaezm 1 always aaezn 1 always aaezo 1 always aaezp 1 always aaezq 1 always aaezr 1 always aaezs 1 always aaezt 1 always aaezu 1 always aaezv 1 always aaezw 1 always aaezx 1 always aaezy 1 always aaezz 1 always aafaa 1 always aafab 1 always aafac 1 always aafad 1 always aafae 1 always aafaf 1 always aafag 1 always aafah 1 always aafai 1 always aafaj 1 always aafak 1 always aafal 1 always aafam 1 always aafan 1 always aafao 1 always aafap 1 always aafaq 1 always aafar 1 always aafas 1 always aafat 1 always aafau 1 always aafav 1 always aafaw 1 always aafax 1 always aafay 1 always aafaz 1 always aafba 1 always aafbb 1 always aafbc 1 always aafbd 1 always aafbe 1 always aafbf 1 always aafbg 1 always aafbh 1 always aafbi 1 always aafbj 1 always aafbk 1 always aafbl 1 always aafbm 1 always aafbn 1 always aafbo 1 always aafbp 1 always aafbq 1 always aafbr 1 always aafbs 1 always aafbt 1 always aafbu 1 always aafbv 1 always aafbw 1 always aafbx 1 always aafby 1 always aafbz 1 always aafca 1 always aafcb 1 always aafcc 1 always aafcd 1 always aafce 1 always aafcf 1 always aafcg 1 always aafch 1 always aafci 1 always aafcj 1 always aafck 1 always aafcl 1 always aafcm 1 always aafcn 1 always aafco 1 always aafcp 1 always aafcq 1 always aafcr 1 always aafcs 1 always aafct 1 always aafcu 1 always aafcv 1 always aafcw 1 always aafcx 1 always aafcy 1 always aafcz 1 always aafda 1 always aafdb 1 always aafdc 1 always aafdd 1 always aafde 1 always aafdf 1 always aafdg 1 always aafdh 1 always aafdi 1 always aafdj 1 always aafdk 1 always aafdl 1 always aafdm 1 always aafdn 1 always aafdo 1 always aafdp 1 always aafdq 1 always aafdr 1 always aafds 1 always aafdt 1 always aafdu 1 always aafdv 1 always aafdw 1 always aafdx 1 always aafdy 1 always aafdz 1 always aafea 1 always aafeb 1 always aafec 1 always aafed 1 always aafee 1 always aafef 1 always aafeg 1 always aafeh 1 always aafei 1 always aafej 1 always aafek 1 always aafel 1 always aafem 1 always aafen 1 always aafeo 1 always aafep 1 always aafeq 1 always aafer 1 always aafes 1 always aafet 1 always aafeu 1 always aafev 1 always aafew 1 always aafex 1 always aafey 1 always aafez 1 always aaffa 1 always aaffb 1 always aaffc 1 always aaffd 1 always aaffe 1 always aafff 1 always aaffg 1 always aaffh 1 always aaffi 1 always aaffj 1 always aaffk 1 always aaffl 1 always aaffm 1 always aaffn 1 always aaffo 1 always aaffp 1 always aaffq 1 always aaffr 1 always aaffs 1 always aafft 1 always aaffu 1 always aaffv 1 always aaffw 1 always aaffx 1 always aaffy 1 always aaffz 1 always aafga 1 always aafgb 1 always aafgc 1 always aafgd 1 always aafge 1 always aafgf 1 always aafgg 1 always aafgh 1 always aafgi 1 always aafgj 1 always aafgk 1 always aafgl 1 always aafgm 1 always aafgn 1 always aafgo 1 always aafgp 1 always aafgq 1 always aafgr 1 always aafgs 1 always aafgt 1 always aafgu 1 always aafgv 1 always aafgw 1 always aafgx 1 always aafgy 1 always aafgz 1 always aafha 1 always aafhb 1 always aafhc 1 always aafhd 1 always aafhe 1 always aafhf 1 always aafhg 1 always aafhh 1 always aafhi 1 always aafhj 1 always aafhk 1 always aafhl 1 always aafhm 1 always aafhn 1 always aafho 1 always aafhp 1 always aafhq 1 always aafhr 1 always aafhs 1 always aafht 1 always aafhu 1 always aafhv 1 always aafhw 1 always aafhx 1 always aafhy 1 always aafhz 1 always aafia 1 always aafib 1 always aafic 1 always aafid 1 always aafie 1 always aafif 1 always aafig 1 always aafih 1 always aafii 1 always aafij 1 always aafik 1 always aafil 1 always aafim 1 always aafin 1 always aafio 1 always aafip 1 always aafiq 1 always aafir 1 always aafis 1 always aafit 1 always aafiu 1 always aafiv 1 always aafiw 1 always aafix 1 always aafiy 1 always aafiz 1 always aafja 1 always aafjb 1 always aafjc 1 always aafjd 1 always aafje 1 always aafjf 1 always aafjg 1 always aafjh 1 always aafji 1 always aafjj 1 always aafjk 1 always aafjl 1 always aafjm 1 always aafjn 1 always aafjo 1 always aafjp 1 always aafjq 1 always aafjr 1 always aafjs 1 always aafjt 1 always aafju 1 always aafjv 1 always aafjw 1 always aafjx 1 always aafjy 1 always aafjz 1 always aafka 1 always aafkb 1 always aafkc 1 always aafkd 1 always aafke 1 always aafkf 1 always aafkg 1 always aafkh 1 always aafki 1 always aafkj 1 always aafkk 1 always aafkl 1 always aafkm 1 always aafkn 1 always aafko 1 always aafkp 1 always aafkq 1 always aafkr 1 always aafks 1 always aafkt 1 always aafku 1 always aafkv 1 always aafkw 1 always aafkx 1 always aafky 1 always aafkz 1 always aafla 1 always aaflb 1 always aaflc 1 always aafld 1 always aafle 1 always aaflf 1 always aaflg 1 always aaflh 1 always aafli 1 always aaflj 1 always aaflk 1 always aafll 1 always aaflm 1 always aafln 1 always aaflo 1 always aaflp 1 always aaflq 1 always aaflr 1 always aafls 1 always aaflt 1 always aaflu 1 always aaflv 1 always aaflw 1 always aaflx 1 always aafly 1 always aaflz 1 always aafma 1 always aafmb 1 always aafmc 1 always aafmd 1 always aafme 1 always aafmf 1 always aafmg 1 always aafmh 1 always aafmi 1 always aafmj 1 always aafmk 1 always aafml 1 always aafmm 1 always aafmn 1 always aafmo 1 always aafmp 1 always aafmq 1 always aafmr 1 always aafms 1 always aafmt 1 always aafmu 1 always aafmv 1 always aafmw 1 always aafmx 1 always aafmy 1 always aafmz 1 always aafna 1 always aafnb 1 always aafnc 1 always aafnd 1 always aafne 1 always aafnf 1 always aafng 1 always aafnh 1 always aafni 1 always aafnj 1 always aafnk 1 always aafnl 1 always aafnm 1 always aafnn 1 always aafno 1 always aafnp 1 always aafnq 1 always aafnr 1 always aafns 1 always aafnt 1 always aafnu 1 always aafnv 1 always aafnw 1 always aafnx 1 always aafny 1 always aafnz 1 always aafoa 1 always aafob 1 always aafoc 1 always aafod 1 always aafoe 1 always aafof 1 always aafog 1 always aafoh 1 always aafoi 1 always aafoj 1 always aafok 1 always aafol 1 always aafom 1 always aafon 1 always aafoo 1 always aafop 1 always aafoq 1 always aafor 1 always aafos 1 always aafot 1 always aafou 1 always aafov 1 always aafow 1 always aafox 1 always aafoy 1 always aafoz 1 always aafpa 1 always aafpb 1 always aafpc 1 always aafpd 1 always aafpe 1 always aafpf 1 always aafpg 1 always aafph 1 always aafpi 1 always aafpj 1 always aafpk 1 always aafpl 1 always aafpm 1 always aafpn 1 always aafpo 1 always aafpp 1 always aafpq 1 always aafpr 1 always aafps 1 always aafpt 1 always aafpu 1 always aafpv 1 always aafpw 1 always aafpx 1 always aafpy 1 always aafpz 1 always aafqa 1 always aafqb 1 always aafqc 1 always aafqd 1 always aafqe 1 always aafqf 1 always aafqg 1 always aafqh 1 always aafqi 1 always aafqj 1 always aafqk 1 always aafql 1 always aafqm 1 always aafqn 1 always aafqo 1 always aafqp 1 always aafqq 1 always aafqr 1 always aafqs 1 always aafqt 1 always aafqu 1 always aafqv 1 always aafqw 1 always aafqx 1 always aafqy 1 always aafqz 1 always aafra 1 always aafrb 1 always aafrc 1 always aafrd 1 always aafre 1 always aafrf 1 always aafrg 1 always aafrh 1 always aafri 1 always aafrj 1 always aafrk 1 always aafrl 1 always aafrm 1 always aafrn 1 always aafro 1 always aafrp 1 always aafrq 1 always aafrr 1 always aafrs 1 always aafrt 1 always aafru 1 always aafrv 1 always aafrw 1 always aafrx 1 always aafry 1 always aafrz 1 always aafsa 1 always aafsb 1 always aafsc 1 always aafsd 1 always aafse 1 always aafsf 1 always aafsg 1 always aafsh 1 always aafsi 1 always aafsj 1 always aafsk 1 always aafsl 1 always aafsm 1 always aafsn 1 always aafso 1 always aafsp 1 always aafsq 1 always aafsr 1 always aafss 1 always aafst 1 always aafsu 1 always aafsv 1 always aafsw 1 always aafsx 1 always aafsy 1 always aafsz 1 always aafta 1 always aaftb 1 always aaftc 1 always aaftd 1 always aafte 1 always aaftf 1 always aaftg 1 always aafth 1 always aafti 1 always aaftj 1 always aaftk 1 always aaftl 1 always aaftm 1 always aaftn 1 always aafto 1 always aaftp 1 always aaftq 1 always aaftr 1 always aafts 1 always aaftt 1 always aaftu 1 always aaftv 1 always aaftw 1 always aaftx 1 always aafty 1 always aaftz 1 always aafua 1 always aafub 1 always aafuc 1 always aafud 1 always aafue 1 always aafuf 1 always aafug 1 always aafuh 1 always aafui 1 always aafuj 1 always aafuk 1 always aaful 1 always aafum 1 always aafun 1 always aafuo 1 always aafup 1 always aafuq 1 always aafur 1 always aafus 1 always aafut 1 always aafuu 1 always aafuv 1 always aafuw 1 always aafux 1 always aafuy 1 always aafuz 1 always aafva 1 always aafvb 1 always aafvc 1 always aafvd 1 always aafve 1 always aafvf 1 always aafvg 1 always aafvh 1 always aafvi 1 always aafvj 1 always aafvk 1 always aafvl 1 always aafvm 1 always aafvn 1 always aafvo 1 always aafvp 1 always aafvq 1 always aafvr 1 always aafvs 1 always aafvt 1 always aafvu 1 always aafvv 1 always aafvw 1 always aafvx 1 always aafvy 1 always aafvz 1 always aafwa 1 always aafwb 1 always aafwc 1 always aafwd 1 always aafwe 1 always aafwf 1 always aafwg 1 always aafwh 1 always aafwi 1 always aafwj 1 always aafwk 1 always aafwl 1 always aafwm 1 always aafwn 1 always aafwo 1 always aafwp 1 always aafwq 1 always aafwr 1 always aafws 1 always aafwt 1 always aafwu 1 always aafwv 1 always aafww 1 always aafwx 1 always aafwy 1 always aafwz 1 always aafxa 1 always aafxb 1 always aafxc 1 always aafxd 1 always aafxe 1 always aafxf 1 always aafxg 1 always aafxh 1 always aafxi 1 always aafxj 1 always aafxk 1 always aafxl 1 always aafxm 1 always aafxn 1 always aafxo 1 always aafxp 1 always aafxq 1 always aafxr 1 always aafxs 1 always aafxt 1 always aafxu 1 always aafxv 1 always aafxw 1 always aafxx 1 always aafxy 1 always aafxz 1 always aafya 1 always aafyb 1 always aafyc 1 always aafyd 1 always aafye 1 always aafyf 1 always aafyg 1 always aafyh 1 always aafyi 1 always aafyj 1 always aafyk 1 always aafyl 1 always aafym 1 always aafyn 1 always aafyo 1 always aafyp 1 always aafyq 1 always aafyr 1 always aafys 1 always aafyt 1 always aafyu 1 always aafyv 1 always aafyw 1 always aafyx 1 always aafyy 1 always aafyz 1 always aafza 1 always aafzb 1 always aafzc 1 always aafzd 1 always aafze 1 always aafzf 1 always aafzg 1 always aafzh 1 always aafzi 1 always aafzj 1 always aafzk 1 always aafzl 1 always aafzm 1 always aafzn 1 always aafzo 1 always aafzp 1 always aafzq 1 always aafzr 1 always aafzs 1 always aafzt 1 always aafzu 1 always aafzv 1 always aafzw 1 always aafzx 1 always aafzy 1 always aafzz 1 always aagaa 1 always aagab 1 always aagac 1 always aagad 1 always aagae 1 always aagaf 1 always aagag 1 always aagah 1 always aagai 1 always aagaj 1 always aagak 1 always aagal 1 always aagam 1 always aagan 1 always aagao 1 always aagap 1 always aagaq 1 always aagar 1 always aagas 1 always aagat 1 always aagau 1 always aagav 1 always aagaw 1 always aagax 1 always aagay 1 always aagaz 1 always aagba 1 always aagbb 1 always aagbc 1 always aagbd 1 always aagbe 1 always aagbf 1 always aagbg 1 always aagbh 1 always aagbi 1 always aagbj 1 always aagbk 1 always aagbl 1 always aagbm 1 always aagbn 1 always aagbo 1 always aagbp 1 always aagbq 1 always aagbr 1 always aagbs 1 always aagbt 1 always aagbu 1 always aagbv 1 always aagbw 1 always aagbx 1 always aagby 1 always aagbz 1 always aagca 1 always aagcb 1 always aagcc 1 always aagcd 1 always aagce 1 always aagcf 1 always aagcg 1 always aagch 1 always aagci 1 always aagcj 1 always aagck 1 always aagcl 1 always aagcm 1 always aagcn 1 always aagco 1 always aagcp 1 always aagcq 1 always aagcr 1 always aagcs 1 always aagct 1 always aagcu 1 always aagcv 1 always aagcw 1 always aagcx 1 always aagcy 1 always aagcz 1 always aagda 1 always aagdb 1 always aagdc 1 always aagdd 1 always aagde 1 always aagdf 1 always aagdg 1 always aagdh 1 always aagdi 1 always aagdj 1 always aagdk 1 always aagdl 1 always aagdm 1 always aagdn 1 always aagdo 1 always aagdp 1 always aagdq 1 always aagdr 1 always aagds 1 always aagdt 1 always aagdu 1 always aagdv 1 always aagdw 1 always aagdx 1 always aagdy 1 always aagdz 1 always aagea 1 always aageb 1 always aagec 1 always aaged 1 always aagee 1 always aagef 1 always aageg 1 always aageh 1 always aagei 1 always aagej 1 always aagek 1 always aagel 1 always aagem 1 always aagen 1 always aageo 1 always aagep 1 always aageq 1 always aager 1 always aages 1 always aaget 1 always aageu 1 always aagev 1 always aagew 1 always aagex 1 always aagey 1 always aagez 1 always aagfa 1 always aagfb 1 always aagfc 1 always aagfd 1 always aagfe 1 always aagff 1 always aagfg 1 always aagfh 1 always aagfi 1 always aagfj 1 always aagfk 1 always aagfl 1 always aagfm 1 always aagfn 1 always aagfo 1 always aagfp 1 always aagfq 1 always aagfr 1 always aagfs 1 always aagft 1 always aagfu 1 always aagfv 1 always aagfw 1 always aagfx 1 always aagfy 1 always aagfz 1 always aagga 1 always aaggb 1 always aaggc 1 always aaggd 1 always aagge 1 always aaggf 1 always aaggg 1 always aaggh 1 always aaggi 1 always aaggj 1 always aaggk 1 always aaggl 1 always aaggm 1 always aaggn 1 always aaggo 1 always aaggp 1 always aaggq 1 always aaggr 1 always aaggs 1 always aaggt 1 always aaggu 1 always aaggv 1 always aaggw 1 always aaggx 1 always aaggy 1 always aaggz 1 always aagha 1 always aaghb 1 always aaghc 1 always aaghd 1 always aaghe 1 always aaghf 1 always aaghg 1 always aaghh 1 always aaghi 1 always aaghj 1 always aaghk 1 always aaghl 1 always aaghm 1 always aaghn 1 always aagho 1 always aaghp 1 always aaghq 1 always aaghr 1 always aaghs 1 always aaght 1 always aaghu 1 always aaghv 1 always aaghw 1 always aaghx 1 always aaghy 1 always aaghz 1 always aagia 1 always aagib 1 always aagic 1 always aagid 1 always aagie 1 always aagif 1 always aagig 1 always aagih 1 always aagii 1 always aagij 1 always aagik 1 always aagil 1 always aagim 1 always aagin 1 always aagio 1 always aagip 1 always aagiq 1 always aagir 1 always aagis 1 always aagit 1 always aagiu 1 always aagiv 1 always aagiw 1 always aagix 1 always aagiy 1 always aagiz 1 always aagja 1 always aagjb 1 always aagjc 1 always aagjd 1 always aagje 1 always aagjf 1 always aagjg 1 always aagjh 1 always aagji 1 always aagjj 1 always aagjk 1 always aagjl 1 always aagjm 1 always aagjn 1 always aagjo 1 always aagjp 1 always aagjq 1 always aagjr 1 always aagjs 1 always aagjt 1 always aagju 1 always aagjv 1 always aagjw 1 always aagjx 1 always aagjy 1 always aagjz 1 always aagka 1 always aagkb 1 always aagkc 1 always aagkd 1 always aagke 1 always aagkf 1 always aagkg 1 always aagkh 1 always aagki 1 always aagkj 1 always aagkk 1 always aagkl 1 always aagkm 1 always aagkn 1 always aagko 1 always aagkp 1 always aagkq 1 always aagkr 1 always aagks 1 always aagkt 1 always aagku 1 always aagkv 1 always aagkw 1 always aagkx 1 always aagky 1 always aagkz 1 always aagla 1 always aaglb 1 always aaglc 1 always aagld 1 always aagle 1 always aaglf 1 always aaglg 1 always aaglh 1 always aagli 1 always aaglj 1 always aaglk 1 always aagll 1 always aaglm 1 always aagln 1 always aaglo 1 always aaglp 1 always aaglq 1 always aaglr 1 always aagls 1 always aaglt 1 always aaglu 1 always aaglv 1 always aaglw 1 always aaglx 1 always aagly 1 always aaglz 1 always aagma 1 always aagmb 1 always aagmc 1 always aagmd 1 always aagme 1 always aagmf 1 always aagmg 1 always aagmh 1 always aagmi 1 always aagmj 1 always aagmk 1 always aagml 1 always aagmm 1 always aagmn 1 always aagmo 1 always aagmp 1 always aagmq 1 always aagmr 1 always aagms 1 always aagmt 1 always aagmu 1 always aagmv 1 always aagmw 1 always aagmx 1 always aagmy 1 always aagmz 1 always aagna 1 always aagnb 1 always aagnc 1 always aagnd 1 always aagne 1 always aagnf 1 always aagng 1 always aagnh 1 always aagni 1 always aagnj 1 always aagnk 1 always aagnl 1 always aagnm 1 always aagnn 1 always aagno 1 always aagnp 1 always aagnq 1 always aagnr 1 always aagns 1 always aagnt 1 always aagnu 1 always aagnv 1 always aagnw 1 always aagnx 1 always aagny 1 always aagnz 1 always aagoa 1 always aagob 1 always aagoc 1 always aagod 1 always aagoe 1 always aagof 1 always aagog 1 always aagoh 1 always aagoi 1 always aagoj 1 always aagok 1 always aagol 1 always aagom 1 always aagon 1 always aagoo 1 always aagop 1 always aagoq 1 always aagor 1 always aagos 1 always aagot 1 always aagou 1 always aagov 1 always aagow 1 always aagox 1 always aagoy 1 always aagoz 1 always aagpa 1 always aagpb 1 always aagpc 1 always aagpd 1 always aagpe 1 always aagpf 1 always aagpg 1 always aagph 1 always aagpi 1 always aagpj 1 always aagpk 1 always aagpl 1 always aagpm 1 always aagpn 1 always aagpo 1 always aagpp 1 always aagpq 1 always aagpr 1 always aagps 1 always aagpt 1 always aagpu 1 always aagpv 1 always aagpw 1 always aagpx 1 always aagpy 1 always aagpz 1 always aagqa 1 always aagqb 1 always aagqc 1 always aagqd 1 always aagqe 1 always aagqf 1 always aagqg 1 always aagqh 1 always aagqi 1 always aagqj 1 always aagqk 1 always aagql 1 always aagqm 1 always aagqn 1 always aagqo 1 always aagqp 1 always aagqq 1 always aagqr 1 always aagqs 1 always aagqt 1 always aagqu 1 always aagqv 1 always aagqw 1 always aagqx 1 always aagqy 1 always aagqz 1 always aagra 1 always aagrb 1 always aagrc 1 always aagrd 1 always aagre 1 always aagrf 1 always aagrg 1 always aagrh 1 always aagri 1 always aagrj 1 always aagrk 1 always aagrl 1 always aagrm 1 always aagrn 1 always aagro 1 always aagrp 1 always aagrq 1 always aagrr 1 always aagrs 1 always aagrt 1 always aagru 1 always aagrv 1 always aagrw 1 always aagrx 1 always aagry 1 always aagrz 1 always aagsa 1 always aagsb 1 always aagsc 1 always aagsd 1 always aagse 1 always aagsf 1 always aagsg 1 always aagsh 1 always aagsi 1 always aagsj 1 always aagsk 1 always aagsl 1 always aagsm 1 always aagsn 1 always aagso 1 always aagsp 1 always aagsq 1 always aagsr 1 always aagss 1 always aagst 1 always aagsu 1 always aagsv 1 always aagsw 1 always aagsx 1 always aagsy 1 always aagsz 1 always aagta 1 always aagtb 1 always aagtc 1 always aagtd 1 always aagte 1 always aagtf 1 always aagtg 1 always aagth 1 always aagti 1 always aagtj 1 always aagtk 1 always aagtl 1 always aagtm 1 always aagtn 1 always aagto 1 always aagtp 1 always aagtq 1 always aagtr 1 always aagts 1 always aagtt 1 always aagtu 1 always aagtv 1 always aagtw 1 always aagtx 1 always aagty 1 always aagtz 1 always aagua 1 always aagub 1 always aaguc 1 always aagud 1 always aague 1 always aaguf 1 always aagug 1 always aaguh 1 always aagui 1 always aaguj 1 always aaguk 1 always aagul 1 always aagum 1 always aagun 1 always aaguo 1 always aagup 1 always aaguq 1 always aagur 1 always aagus 1 always aagut 1 always aaguu 1 always aaguv 1 always aaguw 1 always aagux 1 always aaguy 1 always aaguz 1 always aagva 1 always aagvb 1 always aagvc 1 always aagvd 1 always aagve 1 always aagvf 1 always aagvg 1 always aagvh 1 always aagvi 1 always aagvj 1 always aagvk 1 always aagvl 1 always aagvm 1 always aagvn 1 always aagvo 1 always aagvp 1 always aagvq 1 always aagvr 1 always aagvs 1 always aagvt 1 always aagvu 1 always aagvv 1 always aagvw 1 always aagvx 1 always aagvy 1 always aagvz 1 always aagwa 1 always aagwb 1 always aagwc 1 always aagwd 1 always aagwe 1 always aagwf 1 always aagwg 1 always aagwh 1 always aagwi 1 always aagwj 1 always aagwk 1 always aagwl 1 always aagwm 1 always aagwn 1 always aagwo 1 always aagwp 1 always aagwq 1 always aagwr 1 always aagws 1 always aagwt 1 always aagwu 1 always aagwv 1 always aagww 1 always aagwx 1 always aagwy 1 always aagwz 1 always aagxa 1 always aagxb 1 always aagxc 1 always aagxd 1 always aagxe 1 always aagxf 1 always aagxg 1 always aagxh 1 always aagxi 1 always aagxj 1 always aagxk 1 always aagxl 1 always aagxm 1 always aagxn 1 always aagxo 1 always aagxp 1 always aagxq 1 always aagxr 1 always aagxs 1 always aagxt 1 always aagxu 1 always aagxv 1 always aagxw 1 always aagxx 1 always aagxy 1 always aagxz 1 always aagya 1 always aagyb 1 always aagyc 1 always aagyd 1 always aagye 1 always aagyf 1 always aagyg 1 always aagyh 1 always aagyi 1 always aagyj 1 always aagyk 1 always aagyl 1 always aagym 1 always aagyn 1 always aagyo 1 always aagyp 1 always aagyq 1 always aagyr 1 always aagys 1 always aagyt 1 always aagyu 1 always aagyv 1 always aagyw 1 always aagyx 1 always aagyy 1 always aagyz 1 always aagza 1 always aagzb 1 always aagzc 1 always aagzd 1 always aagze 1 always aagzf 1 always aagzg 1 always aagzh 1 always aagzi 1 always aagzj 1 always aagzk 1 always aagzl 1 always aagzm 1 always aagzn 1 always aagzo 1 always aagzp 1 always aagzq 1 always aagzr 1 always aagzs 1 always aagzt 1 always aagzu 1 always aagzv 1 always aagzw 1 always aagzx 1 always aagzy 1 always aagzz 1 always aahaa 1 always aahab 1 always aahac 1 always aahad 1 always aahae 1 always aahaf 1 always aahag 1 always aahah 1 always aahai 1 always aahaj 1 always aahak 1 always aahal 1 always aaham 1 always aahan 1 always aahao 1 always aahap 1 always aahaq 1 always aahar 1 always aahas 1 always aahat 1 always aahau 1 always aahav 1 always aahaw 1 always aahax 1 always aahay 1 always aahaz 1 always aahba 1 always aahbb 1 always aahbc 1 always aahbd 1 always aahbe 1 always aahbf 1 always aahbg 1 always aahbh 1 always aahbi 1 always aahbj 1 always aahbk 1 always aahbl 1 always aahbm 1 always aahbn 1 always aahbo 1 always aahbp 1 always aahbq 1 always aahbr 1 always aahbs 1 always aahbt 1 always aahbu 1 always aahbv 1 always aahbw 1 always aahbx 1 always aahby 1 always aahbz 1 always aahca 1 always aahcb 1 always aahcc 1 always aahcd 1 always aahce 1 always aahcf 1 always aahcg 1 always aahch 1 always aahci 1 always aahcj 1 always aahck 1 always aahcl 1 always aahcm 1 always aahcn 1 always aahco 1 always aahcp 1 always aahcq 1 always aahcr 1 always aahcs 1 always aahct 1 always aahcu 1 always aahcv 1 always aahcw 1 always aahcx 1 always aahcy 1 always aahcz 1 always aahda 1 always aahdb 1 always aahdc 1 always aahdd 1 always aahde 1 always aahdf 1 always aahdg 1 always aahdh 1 always aahdi 1 always aahdj 1 always aahdk 1 always aahdl 1 always aahdm 1 always aahdn 1 always aahdo 1 always aahdp 1 always aahdq 1 always aahdr 1 always aahds 1 always aahdt 1 always aahdu 1 always aahdv 1 always aahdw 1 always aahdx 1 always aahdy 1 always aahdz 1 always aahea 1 always aaheb 1 always aahec 1 always aahed 1 always aahee 1 always aahef 1 always aaheg 1 always aaheh 1 always aahei 1 always aahej 1 always aahek 1 always aahel 1 always aahem 1 always aahen 1 always aaheo 1 always aahep 1 always aaheq 1 always aaher 1 always aahes 1 always aahet 1 always aaheu 1 always aahev 1 always aahew 1 always aahex 1 always aahey 1 always aahez 1 always aahfa 1 always aahfb 1 always aahfc 1 always aahfd 1 always aahfe 1 always aahff 1 always aahfg 1 always aahfh 1 always aahfi 1 always aahfj 1 always aahfk 1 always aahfl 1 always aahfm 1 always aahfn 1 always aahfo 1 always aahfp 1 always aahfq 1 always aahfr 1 always aahfs 1 always aahft 1 always aahfu 1 always aahfv 1 always aahfw 1 always aahfx 1 always aahfy 1 always aahfz 1 always aahga 1 always aahgb 1 always aahgc 1 always aahgd 1 always aahge 1 always aahgf 1 always aahgg 1 always aahgh 1 always aahgi 1 always aahgj 1 always aahgk 1 always aahgl 1 always aahgm 1 always aahgn 1 always aahgo 1 always aahgp 1 always aahgq 1 always aahgr 1 always aahgs 1 always aahgt 1 always aahgu 1 always aahgv 1 always aahgw 1 always aahgx 1 always aahgy 1 always aahgz 1 always aahha 1 always aahhb 1 always aahhc 1 always aahhd 1 always aahhe 1 always aahhf 1 always aahhg 1 always aahhh 1 always aahhi 1 always aahhj 1 always aahhk 1 always aahhl 1 always aahhm 1 always aahhn 1 always aahho 1 always aahhp 1 always aahhq 1 always aahhr 1 always aahhs 1 always aahht 1 always aahhu 1 always aahhv 1 always aahhw 1 always aahhx 1 always aahhy 1 always aahhz 1 always aahia 1 always aahib 1 always aahic 1 always aahid 1 always aahie 1 always aahif 1 always aahig 1 always aahih 1 always aahii 1 always aahij 1 always aahik 1 always aahil 1 always aahim 1 always aahin 1 always aahio 1 always aahip 1 always aahiq 1 always aahir 1 always aahis 1 always aahit 1 always aahiu 1 always aahiv 1 always aahiw 1 always aahix 1 always aahiy 1 always aahiz 1 always aahja 1 always aahjb 1 always aahjc 1 always aahjd 1 always aahje 1 always aahjf 1 always aahjg 1 always aahjh 1 always aahji 1 always aahjj 1 always aahjk 1 always aahjl 1 always aahjm 1 always aahjn 1 always aahjo 1 always aahjp 1 always aahjq 1 always aahjr 1 always aahjs 1 always aahjt 1 always aahju 1 always aahjv 1 always aahjw 1 always aahjx 1 always aahjy 1 always aahjz 1 always aahka 1 always aahkb 1 always aahkc 1 always aahkd 1 always aahke 1 always aahkf 1 always aahkg 1 always aahkh 1 always aahki 1 always aahkj 1 always aahkk 1 always aahkl 1 always aahkm 1 always aahkn 1 always aahko 1 always aahkp 1 always aahkq 1 always aahkr 1 always aahks 1 always aahkt 1 always aahku 1 always aahkv 1 always aahkw 1 always aahkx 1 always aahky 1 always aahkz 1 always aahla 1 always aahlb 1 always aahlc 1 always aahld 1 always aahle 1 always aahlf 1 always aahlg 1 always aahlh 1 always aahli 1 always aahlj 1 always aahlk 1 always aahll 1 always aahlm 1 always aahln 1 always aahlo 1 always aahlp 1 always aahlq 1 always aahlr 1 always aahls 1 always aahlt 1 always aahlu 1 always aahlv 1 always aahlw 1 always aahlx 1 always aahly 1 always aahlz 1 always aahma 1 always aahmb 1 always aahmc 1 always aahmd 1 always aahme 1 always aahmf 1 always aahmg 1 always aahmh 1 always aahmi 1 always aahmj 1 always aahmk 1 always aahml 1 always aahmm 1 always aahmn 1 always aahmo 1 always aahmp 1 always aahmq 1 always aahmr 1 always aahms 1 always aahmt 1 always aahmu 1 always aahmv 1 always aahmw 1 always aahmx 1 always aahmy 1 always aahmz 1 always aahna 1 always aahnb 1 always aahnc 1 always aahnd 1 always aahne 1 always aahnf 1 always aahng 1 always aahnh 1 always aahni 1 always aahnj 1 always aahnk 1 always aahnl 1 always aahnm 1 always aahnn 1 always aahno 1 always aahnp 1 always aahnq 1 always aahnr 1 always aahns 1 always aahnt 1 always aahnu 1 always aahnv 1 always aahnw 1 always aahnx 1 always aahny 1 always aahnz 1 always aahoa 1 always aahob 1 always aahoc 1 always aahod 1 always aahoe 1 always aahof 1 always aahog 1 always aahoh 1 always aahoi 1 always aahoj 1 always aahok 1 always aahol 1 always aahom 1 always aahon 1 always aahoo 1 always aahop 1 always aahoq 1 always aahor 1 always aahos 1 always aahot 1 always aahou 1 always aahov 1 always aahow 1 always aahox 1 always aahoy 1 always aahoz 1 always aahpa 1 always aahpb 1 always aahpc 1 always aahpd 1 always aahpe 1 always aahpf 1 always aahpg 1 always aahph 1 always aahpi 1 always aahpj 1 always aahpk 1 always aahpl 1 always aahpm 1 always aahpn 1 always aahpo 1 always aahpp 1 always aahpq 1 always aahpr 1 always aahps 1 always aahpt 1 always aahpu 1 always aahpv 1 always aahpw 1 always aahpx 1 always aahpy 1 always aahpz 1 always aahqa 1 always aahqb 1 always aahqc 1 always aahqd 1 always aahqe 1 always aahqf 1 always aahqg 1 always aahqh 1 always aahqi 1 always aahqj 1 always aahqk 1 always aahql 1 always aahqm 1 always aahqn 1 always aahqo 1 always aahqp 1 always aahqq 1 always aahqr 1 always aahqs 1 always aahqt 1 always aahqu 1 always aahqv 1 always aahqw 1 always aahqx 1 always aahqy 1 always aahqz 1 always aahra 1 always aahrb 1 always aahrc 1 always aahrd 1 always aahre 1 always aahrf 1 always aahrg 1 always aahrh 1 always aahri 1 always aahrj 1 always aahrk 1 always aahrl 1 always aahrm 1 always aahrn 1 always aahro 1 always aahrp 1 always aahrq 1 always aahrr 1 always aahrs 1 always aahrt 1 always aahru 1 always aahrv 1 always aahrw 1 always aahrx 1 always aahry 1 always aahrz 1 always aahsa 1 always aahsb 1 always aahsc 1 always aahsd 1 always aahse 1 always aahsf 1 always aahsg 1 always aahsh 1 always aahsi 1 always aahsj 1 always aahsk 1 always aahsl 1 always aahsm 1 always aahsn 1 always aahso 1 always aahsp 1 always aahsq 1 always aahsr 1 always aahss 1 always aahst 1 always aahsu 1 always aahsv 1 always aahsw 1 always aahsx 1 always aahsy 1 always aahsz 1 always aahta 1 always aahtb 1 always aahtc 1 always aahtd 1 always aahte 1 always aahtf 1 always aahtg 1 always aahth 1 always aahti 1 always aahtj 1 always aahtk 1 always aahtl 1 always aahtm 1 always aahtn 1 always aahto 1 always aahtp 1 always aahtq 1 always aahtr 1 always aahts 1 always aahtt 1 always aahtu 1 always aahtv 1 always aahtw 1 always aahtx 1 always aahty 1 always aahtz 1 always aahua 1 always aahub 1 always aahuc 1 always aahud 1 always aahue 1 always aahuf 1 always aahug 1 always aahuh 1 always aahui 1 always aahuj 1 always aahuk 1 always aahul 1 always aahum 1 always aahun 1 always aahuo 1 always aahup 1 always aahuq 1 always aahur 1 always aahus 1 always aahut 1 always aahuu 1 always aahuv 1 always aahuw 1 always aahux 1 always aahuy 1 always aahuz 1 always aahva 1 always aahvb 1 always aahvc 1 always aahvd 1 always aahve 1 always aahvf 1 always aahvg 1 always aahvh 1 always aahvi 1 always aahvj 1 always aahvk 1 always aahvl 1 always aahvm 1 always aahvn 1 always aahvo 1 always aahvp 1 always aahvq 1 always aahvr 1 always aahvs 1 always aahvt 1 always aahvu 1 always aahvv 1 always aahvw 1 always aahvx 1 always aahvy 1 always aahvz 1 always aahwa 1 always aahwb 1 always aahwc 1 always aahwd 1 always aahwe 1 always aahwf 1 always aahwg 1 always aahwh 1 always aahwi 1 always aahwj 1 always aahwk 1 always aahwl 1 always aahwm 1 always aahwn 1 always aahwo 1 always aahwp 1 always aahwq 1 always aahwr 1 always aahws 1 always aahwt 1 always aahwu 1 always aahwv 1 always aahww 1 always aahwx 1 always aahwy 1 always aahwz 1 always aahxa 1 always aahxb 1 always aahxc 1 always aahxd 1 always aahxe 1 always aahxf 1 always aahxg 1 always aahxh 1 always aahxi 1 always aahxj 1 always aahxk 1 always aahxl 1 always aahxm 1 always aahxn 1 always aahxo 1 always aahxp 1 always aahxq 1 always aahxr 1 always aahxs 1 always aahxt 1 always aahxu 1 always aahxv 1 always aahxw 1 always aahxx 1 always aahxy 1 always aahxz 1 always aahya 1 always aahyb 1 always aahyc 1 always aahyd 1 always aahye 1 always aahyf 1 always aahyg 1 always aahyh 1 always aahyi 1 always aahyj 1 always aahyk 1 always aahyl 1 always aahym 1 always aahyn 1 always aahyo 1 always aahyp 1 always aahyq 1 always aahyr 1 always aahys 1 always aahyt 1 always aahyu 1 always aahyv 1 always aahyw 1 always aahyx 1 always aahyy 1 always aahyz 1 always aahza 1 always aahzb 1 always aahzc 1 always aahzd 1 always aahze 1 always aahzf 1 always aahzg 1 always aahzh 1 always aahzi 1 always aahzj 1 always aahzk 1 always aahzl 1 always aahzm 1 always aahzn 1 always aahzo 1 always aahzp 1 always aahzq 1 always aahzr 1 always aahzs 1 always aahzt 1 always aahzu 1 always aahzv 1 always aahzw 1 always aahzx 1 always aahzy 1 always aahzz 1 always aaiaa 1 always aaiab 1 always aaiac 1 always aaiad 1 always aaiae 1 always aaiaf 1 always aaiag 1 always aaiah 1 always aaiai 1 always aaiaj 1 always aaiak 1 always aaial 1 always aaiam 1 always aaian 1 always aaiao 1 always aaiap 1 always aaiaq 1 always aaiar 1 always aaias 1 always aaiat 1 always aaiau 1 always aaiav 1 always aaiaw 1 always aaiax 1 always aaiay 1 always aaiaz 1 always aaiba 1 always aaibb 1 always aaibc 1 always aaibd 1 always aaibe 1 always aaibf 1 always aaibg 1 always aaibh 1 always aaibi 1 always aaibj 1 always aaibk 1 always aaibl 1 always aaibm 1 always aaibn 1 always aaibo 1 always aaibp 1 always aaibq 1 always aaibr 1 always aaibs 1 always aaibt 1 always aaibu 1 always aaibv 1 always aaibw 1 always aaibx 1 always aaiby 1 always aaibz 1 always aaica 1 always aaicb 1 always aaicc 1 always aaicd 1 always aaice 1 always aaicf 1 always aaicg 1 always aaich 1 always aaici 1 always aaicj 1 always aaick 1 always aaicl 1 always aaicm 1 always aaicn 1 always aaico 1 always aaicp 1 always aaicq 1 always aaicr 1 always aaics 1 always aaict 1 always aaicu 1 always aaicv 1 always aaicw 1 always aaicx 1 always aaicy 1 always aaicz 1 always aaida 1 always aaidb 1 always aaidc 1 always aaidd 1 always aaide 1 always aaidf 1 always aaidg 1 always aaidh 1 always aaidi 1 always aaidj 1 always aaidk 1 always aaidl 1 always aaidm 1 always aaidn 1 always aaido 1 always aaidp 1 always aaidq 1 always aaidr 1 always aaids 1 always aaidt 1 always aaidu 1 always aaidv 1 always aaidw 1 always aaidx 1 always aaidy 1 always aaidz 1 always aaiea 1 always aaieb 1 always aaiec 1 always aaied 1 always aaiee 1 always aaief 1 always aaieg 1 always aaieh 1 always aaiei 1 always aaiej 1 always aaiek 1 always aaiel 1 always aaiem 1 always aaien 1 always aaieo 1 always aaiep 1 always aaieq 1 always aaier 1 always aaies 1 always aaiet 1 always aaieu 1 always aaiev 1 always aaiew 1 always aaiex 1 always aaiey 1 always aaiez 1 always aaifa 1 always aaifb 1 always aaifc 1 always aaifd 1 always aaife 1 always aaiff 1 always aaifg 1 always aaifh 1 always aaifi 1 always aaifj 1 always aaifk 1 always aaifl 1 always aaifm 1 always aaifn 1 always aaifo 1 always aaifp 1 always aaifq 1 always aaifr 1 always aaifs 1 always aaift 1 always aaifu 1 always aaifv 1 always aaifw 1 always aaifx 1 always aaify 1 always aaifz 1 always aaiga 1 always aaigb 1 always aaigc 1 always aaigd 1 always aaige 1 always aaigf 1 always aaigg 1 always aaigh 1 always aaigi 1 always aaigj 1 always aaigk 1 always aaigl 1 always aaigm 1 always aaign 1 always aaigo 1 always aaigp 1 always aaigq 1 always aaigr 1 always aaigs 1 always aaigt 1 always aaigu 1 always aaigv 1 always aaigw 1 always aaigx 1 always aaigy 1 always aaigz 1 always aaiha 1 always aaihb 1 always aaihc 1 always aaihd 1 always aaihe 1 always aaihf 1 always aaihg 1 always aaihh 1 always aaihi 1 always aaihj 1 always aaihk 1 always aaihl 1 always aaihm 1 always aaihn 1 always aaiho 1 always aaihp 1 always aaihq 1 always aaihr 1 always aaihs 1 always aaiht 1 always aaihu 1 always aaihv 1 always aaihw 1 always aaihx 1 always aaihy 1 always aaihz 1 always aaiia 1 always aaiib 1 always aaiic 1 always aaiid 1 always aaiie 1 always aaiif 1 always aaiig 1 always aaiih 1 always aaiii 1 always aaiij 1 always aaiik 1 always aaiil 1 always aaiim 1 always aaiin 1 always aaiio 1 always aaiip 1 always aaiiq 1 always aaiir 1 always aaiis 1 always aaiit 1 always aaiiu 1 always aaiiv 1 always aaiiw 1 always aaiix 1 always aaiiy 1 always aaiiz 1 always aaija 1 always aaijb 1 always aaijc 1 always aaijd 1 always aaije 1 always aaijf 1 always aaijg 1 always aaijh 1 always aaiji 1 always aaijj 1 always aaijk 1 always aaijl 1 always aaijm 1 always aaijn 1 always aaijo 1 always aaijp 1 always aaijq 1 always aaijr 1 always aaijs 1 always aaijt 1 always aaiju 1 always aaijv 1 always aaijw 1 always aaijx 1 always aaijy 1 always aaijz 1 always aaika 1 always aaikb 1 always aaikc 1 always aaikd 1 always aaike 1 always aaikf 1 always aaikg 1 always aaikh 1 always aaiki 1 always aaikj 1 always aaikk 1 always aaikl 1 always aaikm 1 always aaikn 1 always aaiko 1 always aaikp 1 always aaikq 1 always aaikr 1 always aaiks 1 always aaikt 1 always aaiku 1 always aaikv 1 always aaikw 1 always aaikx 1 always aaiky 1 always aaikz 1 always aaila 1 always aailb 1 always aailc 1 always aaild 1 always aaile 1 always aailf 1 always aailg 1 always aailh 1 always aaili 1 always aailj 1 always aailk 1 always aaill 1 always aailm 1 always aailn 1 always aailo 1 always aailp 1 always aailq 1 always aailr 1 always aails 1 always aailt 1 always aailu 1 always aailv 1 always aailw 1 always aailx 1 always aaily 1 always aailz 1 always aaima 1 always aaimb 1 always aaimc 1 always aaimd 1 always aaime 1 always aaimf 1 always aaimg 1 always aaimh 1 always aaimi 1 always aaimj 1 always aaimk 1 always aaiml 1 always aaimm 1 always aaimn 1 always aaimo 1 always aaimp 1 always aaimq 1 always aaimr 1 always aaims 1 always aaimt 1 always aaimu 1 always aaimv 1 always aaimw 1 always aaimx 1 always aaimy 1 always aaimz 1 always aaina 1 always aainb 1 always aainc 1 always aaind 1 always aaine 1 always aainf 1 always aaing 1 always aainh 1 always aaini 1 always aainj 1 always aaink 1 always aainl 1 always aainm 1 always aainn 1 always aaino 1 always aainp 1 always aainq 1 always aainr 1 always aains 1 always aaint 1 always aainu 1 always aainv 1 always aainw 1 always aainx 1 always aainy 1 always aainz 1 always aaioa 1 always aaiob 1 always aaioc 1 always aaiod 1 always aaioe 1 always aaiof 1 always aaiog 1 always aaioh 1 always aaioi 1 always aaioj 1 always aaiok 1 always aaiol 1 always aaiom 1 always aaion 1 always aaioo 1 always aaiop 1 always aaioq 1 always aaior 1 always aaios 1 always aaiot 1 always aaiou 1 always aaiov 1 always aaiow 1 always aaiox 1 always aaioy 1 always aaioz 1 always aaipa 1 always aaipb 1 always aaipc 1 always aaipd 1 always aaipe 1 always aaipf 1 always aaipg 1 always aaiph 1 always aaipi 1 always aaipj 1 always aaipk 1 always aaipl 1 always aaipm 1 always aaipn 1 always aaipo 1 always aaipp 1 always aaipq 1 always aaipr 1 always aaips 1 always aaipt 1 always aaipu 1 always aaipv 1 always aaipw 1 always aaipx 1 always aaipy 1 always aaipz 1 always aaiqa 1 always aaiqb 1 always aaiqc 1 always aaiqd 1 always aaiqe 1 always aaiqf 1 always aaiqg 1 always aaiqh 1 always aaiqi 1 always aaiqj 1 always aaiqk 1 always aaiql 1 always aaiqm 1 always aaiqn 1 always aaiqo 1 always aaiqp 1 always aaiqq 1 always aaiqr 1 always aaiqs 1 always aaiqt 1 always aaiqu 1 always aaiqv 1 always aaiqw 1 always aaiqx 1 always aaiqy 1 always aaiqz 1 always aaira 1 always aairb 1 always aairc 1 always aaird 1 always aaire 1 always aairf 1 always aairg 1 always aairh 1 always aairi 1 always aairj 1 always aairk 1 always aairl 1 always aairm 1 always aairn 1 always aairo 1 always aairp 1 always aairq 1 always aairr 1 always aairs 1 always aairt 1 always aairu 1 always aairv 1 always aairw 1 always aairx 1 always aairy 1 always aairz 1 always aaisa 1 always aaisb 1 always aaisc 1 always aaisd 1 always aaise 1 always aaisf 1 always aaisg 1 always aaish 1 always aaisi 1 always aaisj 1 always aaisk 1 always aaisl 1 always aaism 1 always aaisn 1 always aaiso 1 always aaisp 1 always aaisq 1 always aaisr 1 always aaiss 1 always aaist 1 always aaisu 1 always aaisv 1 always aaisw 1 always aaisx 1 always aaisy 1 always aaisz 1 always aaita 1 always aaitb 1 always aaitc 1 always aaitd 1 always aaite 1 always aaitf 1 always aaitg 1 always aaith 1 always aaiti 1 always aaitj 1 always aaitk 1 always aaitl 1 always aaitm 1 always aaitn 1 always aaito 1 always aaitp 1 always aaitq 1 always aaitr 1 always aaits 1 always aaitt 1 always aaitu 1 always aaitv 1 always aaitw 1 always aaitx 1 always aaity 1 always aaitz 1 always aaiua 1 always aaiub 1 always aaiuc 1 always aaiud 1 always aaiue 1 always aaiuf 1 always aaiug 1 always aaiuh 1 always aaiui 1 always aaiuj 1 always aaiuk 1 always aaiul 1 always aaium 1 always aaiun 1 always aaiuo 1 always aaiup 1 always aaiuq 1 always aaiur 1 always aaius 1 always aaiut 1 always aaiuu 1 always aaiuv 1 always aaiuw 1 always aaiux 1 always aaiuy 1 always aaiuz 1 always aaiva 1 always aaivb 1 always aaivc 1 always aaivd 1 always aaive 1 always aaivf 1 always aaivg 1 always aaivh 1 always aaivi 1 always aaivj 1 always aaivk 1 always aaivl 1 always aaivm 1 always aaivn 1 always aaivo 1 always aaivp 1 always aaivq 1 always aaivr 1 always aaivs 1 always aaivt 1 always aaivu 1 always aaivv 1 always aaivw 1 always aaivx 1 always aaivy 1 always aaivz 1 always aaiwa 1 always aaiwb 1 always aaiwc 1 always aaiwd 1 always aaiwe 1 always aaiwf 1 always aaiwg 1 always aaiwh 1 always aaiwi 1 always aaiwj 1 always aaiwk 1 always aaiwl 1 always aaiwm 1 always aaiwn 1 always aaiwo 1 always aaiwp 1 always aaiwq 1 always aaiwr 1 always aaiws 1 always aaiwt 1 always aaiwu 1 always aaiwv 1 always aaiww 1 always aaiwx 1 always aaiwy 1 always aaiwz 1 always aaixa 1 always aaixb 1 always aaixc 1 always aaixd 1 always aaixe 1 always aaixf 1 always aaixg 1 always aaixh 1 always aaixi 1 always aaixj 1 always aaixk 1 always aaixl 1 always aaixm 1 always aaixn 1 always aaixo 1 always aaixp 1 always aaixq 1 always aaixr 1 always aaixs 1 always aaixt 1 always aaixu 1 always aaixv 1 always aaixw 1 always aaixx 1 always aaixy 1 always aaixz 1 always aaiya 1 always aaiyb 1 always aaiyc 1 always aaiyd 1 always aaiye 1 always aaiyf 1 always aaiyg 1 always aaiyh 1 always aaiyi 1 always aaiyj 1 always aaiyk 1 always aaiyl 1 always aaiym 1 always aaiyn 1 always aaiyo 1 always aaiyp 1 always aaiyq 1 always aaiyr 1 always aaiys 1 always aaiyt 1 always aaiyu 1 always aaiyv 1 always aaiyw 1 always aaiyx 1 always aaiyy 1 always aaiyz 1 always aaiza 1 always aaizb 1 always aaizc 1 always aaizd 1 always aaize 1 always aaizf 1 always aaizg 1 always aaizh 1 always aaizi 1 always aaizj 1 always aaizk 1 always aaizl 1 always aaizm 1 always aaizn 1 always aaizo 1 always aaizp 1 always aaizq 1 always aaizr 1 always aaizs 1 always aaizt 1 always aaizu 1 always aaizv 1 always aaizw 1 always aaizx 1 always aaizy 1 always aaizz 1 always aajaa 1 always aajab 1 always aajac 1 always aajad 1 always aajae 1 always aajaf 1 always aajag 1 always aajah 1 always aajai 1 always aajaj 1 always aajak 1 always aajal 1 always aajam 1 always aajan 1 always aajao 1 always aajap 1 always aajaq 1 always aajar 1 always aajas 1 always aajat 1 always aajau 1 always aajav 1 always aajaw 1 always aajax 1 always aajay 1 always aajaz 1 always aajba 1 always aajbb 1 always aajbc 1 always aajbd 1 always aajbe 1 always aajbf 1 always aajbg 1 always aajbh 1 always aajbi 1 always aajbj 1 always aajbk 1 always aajbl 1 always aajbm 1 always aajbn 1 always aajbo 1 always aajbp 1 always aajbq 1 always aajbr 1 always aajbs 1 always aajbt 1 always aajbu 1 always aajbv 1 always aajbw 1 always aajbx 1 always aajby 1 always aajbz 1 always aajca 1 always aajcb 1 always aajcc 1 always aajcd 1 always aajce 1 always aajcf 1 always aajcg 1 always aajch 1 always aajci 1 always aajcj 1 always aajck 1 always aajcl 1 always aajcm 1 always aajcn 1 always aajco 1 always aajcp 1 always aajcq 1 always aajcr 1 always aajcs 1 always aajct 1 always aajcu 1 always aajcv 1 always aajcw 1 always aajcx 1 always aajcy 1 always aajcz 1 always aajda 1 always aajdb 1 always aajdc 1 always aajdd 1 always aajde 1 always aajdf 1 always aajdg 1 always aajdh 1 always aajdi 1 always aajdj 1 always aajdk 1 always aajdl 1 always aajdm 1 always aajdn 1 always aajdo 1 always aajdp 1 always aajdq 1 always aajdr 1 always aajds 1 always aajdt 1 always aajdu 1 always aajdv 1 always aajdw 1 always aajdx 1 always aajdy 1 always aajdz 1 always aajea 1 always aajeb 1 always aajec 1 always aajed 1 always aajee 1 always aajef 1 always aajeg 1 always aajeh 1 always aajei 1 always aajej 1 always aajek 1 always aajel 1 always aajem 1 always aajen 1 always aajeo 1 always aajep 1 always aajeq 1 always aajer 1 always aajes 1 always aajet 1 always aajeu 1 always aajev 1 always aajew 1 always aajex 1 always aajey 1 always aajez 1 always aajfa 1 always aajfb 1 always aajfc 1 always aajfd 1 always aajfe 1 always aajff 1 always aajfg 1 always aajfh 1 always aajfi 1 always aajfj 1 always aajfk 1 always aajfl 1 always aajfm 1 always aajfn 1 always aajfo 1 always aajfp 1 always aajfq 1 always aajfr 1 always aajfs 1 always aajft 1 always aajfu 1 always aajfv 1 always aajfw 1 always aajfx 1 always aajfy 1 always aajfz 1 always aajga 1 always aajgb 1 always aajgc 1 always aajgd 1 always aajge 1 always aajgf 1 always aajgg 1 always aajgh 1 always aajgi 1 always aajgj 1 always aajgk 1 always aajgl 1 always aajgm 1 always aajgn 1 always aajgo 1 always aajgp 1 always aajgq 1 always aajgr 1 always aajgs 1 always aajgt 1 always aajgu 1 always aajgv 1 always aajgw 1 always aajgx 1 always aajgy 1 always aajgz 1 always aajha 1 always aajhb 1 always aajhc 1 always aajhd 1 always aajhe 1 always aajhf 1 always aajhg 1 always aajhh 1 always aajhi 1 always aajhj 1 always aajhk 1 always aajhl 1 always aajhm 1 always aajhn 1 always aajho 1 always aajhp 1 always aajhq 1 always aajhr 1 always aajhs 1 always aajht 1 always aajhu 1 always aajhv 1 always aajhw 1 always aajhx 1 always aajhy 1 always aajhz 1 always aajia 1 always aajib 1 always aajic 1 always aajid 1 always aajie 1 always aajif 1 always aajig 1 always aajih 1 always aajii 1 always aajij 1 always aajik 1 always aajil 1 always aajim 1 always aajin 1 always aajio 1 always aajip 1 always aajiq 1 always aajir 1 always aajis 1 always aajit 1 always aajiu 1 always aajiv 1 always aajiw 1 always aajix 1 always aajiy 1 always aajiz 1 always aajja 1 always aajjb 1 always aajjc 1 always aajjd 1 always aajje 1 always aajjf 1 always aajjg 1 always aajjh 1 always aajji 1 always aajjj 1 always aajjk 1 always aajjl 1 always aajjm 1 always aajjn 1 always aajjo 1 always aajjp 1 always aajjq 1 always aajjr 1 always aajjs 1 always aajjt 1 always aajju 1 always aajjv 1 always aajjw 1 always aajjx 1 always aajjy 1 always aajjz 1 always aajka 1 always aajkb 1 always aajkc 1 always aajkd 1 always aajke 1 always aajkf 1 always aajkg 1 always aajkh 1 always aajki 1 always aajkj 1 always aajkk 1 always aajkl 1 always aajkm 1 always aajkn 1 always aajko 1 always aajkp 1 always aajkq 1 always aajkr 1 always aajks 1 always aajkt 1 always aajku 1 always aajkv 1 always aajkw 1 always aajkx 1 always aajky 1 always aajkz 1 always aajla 1 always aajlb 1 always aajlc 1 always aajld 1 always aajle 1 always aajlf 1 always aajlg 1 always aajlh 1 always aajli 1 always aajlj 1 always aajlk 1 always aajll 1 always aajlm 1 always aajln 1 always aajlo 1 always aajlp 1 always aajlq 1 always aajlr 1 always aajls 1 always aajlt 1 always aajlu 1 always aajlv 1 always aajlw 1 always aajlx 1 always aajly 1 always aajlz 1 always aajma 1 always aajmb 1 always aajmc 1 always aajmd 1 always aajme 1 always aajmf 1 always aajmg 1 always aajmh 1 always aajmi 1 always aajmj 1 always aajmk 1 always aajml 1 always aajmm 1 always aajmn 1 always aajmo 1 always aajmp 1 always aajmq 1 always aajmr 1 always aajms 1 always aajmt 1 always aajmu 1 always aajmv 1 always aajmw 1 always aajmx 1 always aajmy 1 always aajmz 1 always aajna 1 always aajnb 1 always aajnc 1 always aajnd 1 always aajne 1 always aajnf 1 always aajng 1 always aajnh 1 always aajni 1 always aajnj 1 always aajnk 1 always aajnl 1 always aajnm 1 always aajnn 1 always aajno 1 always aajnp 1 always aajnq 1 always aajnr 1 always aajns 1 always aajnt 1 always aajnu 1 always aajnv 1 always aajnw 1 always aajnx 1 always aajny 1 always aajnz 1 always aajoa 1 always aajob 1 always aajoc 1 always aajod 1 always aajoe 1 always aajof 1 always aajog 1 always aajoh 1 always aajoi 1 always aajoj 1 always aajok 1 always aajol 1 always aajom 1 always aajon 1 always aajoo 1 always aajop 1 always aajoq 1 always aajor 1 always aajos 1 always aajot 1 always aajou 1 always aajov 1 always aajow 1 always aajox 1 always aajoy 1 always aajoz 1 always aajpa 1 always aajpb 1 always aajpc 1 always aajpd 1 always aajpe 1 always aajpf 1 always aajpg 1 always aajph 1 always aajpi 1 always aajpj 1 always aajpk 1 always aajpl 1 always aajpm 1 always aajpn 1 always aajpo 1 always aajpp 1 always aajpq 1 always aajpr 1 always aajps 1 always aajpt 1 always aajpu 1 always aajpv 1 always aajpw 1 always aajpx 1 always aajpy 1 always aajpz 1 always aajqa 1 always aajqb 1 always aajqc 1 always aajqd 1 always aajqe 1 always aajqf 1 always aajqg 1 always aajqh 1 always aajqi 1 always aajqj 1 always aajqk 1 always aajql 1 always aajqm 1 always aajqn 1 always aajqo 1 always aajqp 1 always aajqq 1 always aajqr 1 always aajqs 1 always aajqt 1 always aajqu 1 always aajqv 1 always aajqw 1 always aajqx 1 always aajqy 1 always aajqz 1 always aajra 1 always aajrb 1 always aajrc 1 always aajrd 1 always aajre 1 always aajrf 1 always aajrg 1 always aajrh 1 always aajri 1 always aajrj 1 always aajrk 1 always aajrl 1 always aajrm 1 always aajrn 1 always aajro 1 always aajrp 1 always aajrq 1 always aajrr 1 always aajrs 1 always aajrt 1 always aajru 1 always aajrv 1 always aajrw 1 always aajrx 1 always aajry 1 always aajrz 1 always aajsa 1 always aajsb 1 always aajsc 1 always aajsd 1 always aajse 1 always aajsf 1 always aajsg 1 always aajsh 1 always aajsi 1 always aajsj 1 always aajsk 1 always aajsl 1 always aajsm 1 always aajsn 1 always aajso 1 always aajsp 1 always aajsq 1 always aajsr 1 always aajss 1 always aajst 1 always aajsu 1 always aajsv 1 always aajsw 1 always aajsx 1 always aajsy 1 always aajsz 1 always aajta 1 always aajtb 1 always aajtc 1 always aajtd 1 always aajte 1 always aajtf 1 always aajtg 1 always aajth 1 always aajti 1 always aajtj 1 always aajtk 1 always aajtl 1 always aajtm 1 always aajtn 1 always aajto 1 always aajtp 1 always aajtq 1 always aajtr 1 always aajts 1 always aajtt 1 always aajtu 1 always aajtv 1 always aajtw 1 always aajtx 1 always aajty 1 always aajtz 1 always aajua 1 always aajub 1 always aajuc 1 always aajud 1 always aajue 1 always aajuf 1 always aajug 1 always aajuh 1 always aajui 1 always aajuj 1 always aajuk 1 always aajul 1 always aajum 1 always aajun 1 always aajuo 1 always aajup 1 always aajuq 1 always aajur 1 always aajus 1 always aajut 1 always aajuu 1 always aajuv 1 always aajuw 1 always aajux 1 always aajuy 1 always aajuz 1 always aajva 1 always aajvb 1 always aajvc 1 always aajvd 1 always aajve 1 always aajvf 1 always aajvg 1 always aajvh 1 always aajvi 1 always aajvj 1 always aajvk 1 always aajvl 1 always aajvm 1 always aajvn 1 always aajvo 1 always aajvp 1 always aajvq 1 always aajvr 1 always aajvs 1 always aajvt 1 always aajvu 1 always aajvv 1 always aajvw 1 always aajvx 1 always aajvy 1 always aajvz 1 always aajwa 1 always aajwb 1 always aajwc 1 always aajwd 1 always aajwe 1 always aajwf 1 always aajwg 1 always aajwh 1 always aajwi 1 always aajwj 1 always aajwk 1 always aajwl 1 always aajwm 1 always aajwn 1 always aajwo 1 always aajwp 1 always aajwq 1 always aajwr 1 always aajws 1 always aajwt 1 always aajwu 1 always aajwv 1 always aajww 1 always aajwx 1 always aajwy 1 always aajwz 1 always aajxa 1 always aajxb 1 always aajxc 1 always aajxd 1 always aajxe 1 always aajxf 1 always aajxg 1 always aajxh 1 always aajxi 1 always aajxj 1 always aajxk 1 always aajxl 1 always aajxm 1 always aajxn 1 always aajxo 1 always aajxp 1 always aajxq 1 always aajxr 1 always aajxs 1 always aajxt 1 always aajxu 1 always aajxv 1 always aajxw 1 always aajxx 1 always aajxy 1 always aajxz 1 always aajya 1 always aajyb 1 always aajyc 1 always aajyd 1 always aajye 1 always aajyf 1 always aajyg 1 always aajyh 1 always aajyi 1 always aajyj 1 always aajyk 1 always aajyl 1 always aajym 1 always aajyn 1 always aajyo 1 always aajyp 1 always aajyq 1 always aajyr 1 always aajys 1 always aajyt 1 always aajyu 1 always aajyv 1 always aajyw 1 always aajyx 1 always aajyy 1 always aajyz 1 always aajza 1 always aajzb 1 always aajzc 1 always aajzd 1 always aajze 1 always aajzf 1 always aajzg 1 always aajzh 1 always aajzi 1 always aajzj 1 always aajzk 1 always aajzl 1 always aajzm 1 always aajzn 1 always aajzo 1 always aajzp 1 always aajzq 1 always aajzr 1 always aajzs 1 always aajzt 1 always aajzu 1 always aajzv 1 always aajzw 1 always aajzx 1 always aajzy 1 always aajzz 1 always aakaa 1 always aakab 1 always aakac 1 always aakad 1 always aakae 1 always aakaf 1 always aakag 1 always aakah 1 always aakai 1 always aakaj 1 always aakak 1 always aakal 1 always aakam 1 always aakan 1 always aakao 1 always aakap 1 always aakaq 1 always aakar 1 always aakas 1 always aakat 1 always aakau 1 always aakav 1 always aakaw 1 always aakax 1 always aakay 1 always aakaz 1 always aakba 1 always aakbb 1 always aakbc 1 always aakbd 1 always aakbe 1 always aakbf 1 always aakbg 1 always aakbh 1 always aakbi 1 always aakbj 1 always aakbk 1 always aakbl 1 always aakbm 1 always aakbn 1 always aakbo 1 always aakbp 1 always aakbq 1 always aakbr 1 always aakbs 1 always aakbt 1 always aakbu 1 always aakbv 1 always aakbw 1 always aakbx 1 always aakby 1 always aakbz 1 always aakca 1 always aakcb 1 always aakcc 1 always aakcd 1 always aakce 1 always aakcf 1 always aakcg 1 always aakch 1 always aakci 1 always aakcj 1 always aakck 1 always aakcl 1 always aakcm 1 always aakcn 1 always aakco 1 always aakcp 1 always aakcq 1 always aakcr 1 always aakcs 1 always aakct 1 always aakcu 1 always aakcv 1 always aakcw 1 always aakcx 1 always aakcy 1 always aakcz 1 always aakda 1 always aakdb 1 always aakdc 1 always aakdd 1 always aakde 1 always aakdf 1 always aakdg 1 always aakdh 1 always aakdi 1 always aakdj 1 always aakdk 1 always aakdl 1 always aakdm 1 always aakdn 1 always aakdo 1 always aakdp 1 always aakdq 1 always aakdr 1 always aakds 1 always aakdt 1 always aakdu 1 always aakdv 1 always aakdw 1 always aakdx 1 always aakdy 1 always aakdz 1 always aakea 1 always aakeb 1 always aakec 1 always aaked 1 always aakee 1 always aakef 1 always aakeg 1 always aakeh 1 always aakei 1 always aakej 1 always aakek 1 always aakel 1 always aakem 1 always aaken 1 always aakeo 1 always aakep 1 always aakeq 1 always aaker 1 always aakes 1 always aaket 1 always aakeu 1 always aakev 1 always aakew 1 always aakex 1 always aakey 1 always aakez 1 always aakfa 1 always aakfb 1 always aakfc 1 always aakfd 1 always aakfe 1 always aakff 1 always aakfg 1 always aakfh 1 always aakfi 1 always aakfj 1 always aakfk 1 always aakfl 1 always aakfm 1 always aakfn 1 always aakfo 1 always aakfp 1 always aakfq 1 always aakfr 1 always aakfs 1 always aakft 1 always aakfu 1 always aakfv 1 always aakfw 1 always aakfx 1 always aakfy 1 always aakfz 1 always aakga 1 always aakgb 1 always aakgc 1 always aakgd 1 always aakge 1 always aakgf 1 always aakgg 1 always aakgh 1 always aakgi 1 always aakgj 1 always aakgk 1 always aakgl 1 always aakgm 1 always aakgn 1 always aakgo 1 always aakgp 1 always aakgq 1 always aakgr 1 always aakgs 1 always aakgt 1 always aakgu 1 always aakgv 1 always aakgw 1 always aakgx 1 always aakgy 1 always aakgz 1 always aakha 1 always aakhb 1 always aakhc 1 always aakhd 1 always aakhe 1 always aakhf 1 always aakhg 1 always aakhh 1 always aakhi 1 always aakhj 1 always aakhk 1 always aakhl 1 always aakhm 1 always aakhn 1 always aakho 1 always aakhp 1 always aakhq 1 always aakhr 1 always aakhs 1 always aakht 1 always aakhu 1 always aakhv 1 always aakhw 1 always aakhx 1 always aakhy 1 always aakhz 1 always aakia 1 always aakib 1 always aakic 1 always aakid 1 always aakie 1 always aakif 1 always aakig 1 always aakih 1 always aakii 1 always aakij 1 always aakik 1 always aakil 1 always aakim 1 always aakin 1 always aakio 1 always aakip 1 always aakiq 1 always aakir 1 always aakis 1 always aakit 1 always aakiu 1 always aakiv 1 always aakiw 1 always aakix 1 always aakiy 1 always aakiz 1 always aakja 1 always aakjb 1 always aakjc 1 always aakjd 1 always aakje 1 always aakjf 1 always aakjg 1 always aakjh 1 always aakji 1 always aakjj 1 always aakjk 1 always aakjl 1 always aakjm 1 always aakjn 1 always aakjo 1 always aakjp 1 always aakjq 1 always aakjr 1 always aakjs 1 always aakjt 1 always aakju 1 always aakjv 1 always aakjw 1 always aakjx 1 always aakjy 1 always aakjz 1 always aakka 1 always aakkb 1 always aakkc 1 always aakkd 1 always aakke 1 always aakkf 1 always aakkg 1 always aakkh 1 always aakki 1 always aakkj 1 always aakkk 1 always aakkl 1 always aakkm 1 always aakkn 1 always aakko 1 always aakkp 1 always aakkq 1 always aakkr 1 always aakks 1 always aakkt 1 always aakku 1 always aakkv 1 always aakkw 1 always aakkx 1 always aakky 1 always aakkz 1 always aakla 1 always aaklb 1 always aaklc 1 always aakld 1 always aakle 1 always aaklf 1 always aaklg 1 always aaklh 1 always aakli 1 always aaklj 1 always aaklk 1 always aakll 1 always aaklm 1 always aakln 1 always aaklo 1 always aaklp 1 always aaklq 1 always aaklr 1 always aakls 1 always aaklt 1 always aaklu 1 always aaklv 1 always aaklw 1 always aaklx 1 always aakly 1 always aaklz 1 always aakma 1 always aakmb 1 always aakmc 1 always aakmd 1 always aakme 1 always aakmf 1 always aakmg 1 always aakmh 1 always aakmi 1 always aakmj 1 always aakmk 1 always aakml 1 always aakmm 1 always aakmn 1 always aakmo 1 always aakmp 1 always aakmq 1 always aakmr 1 always aakms 1 always aakmt 1 always aakmu 1 always aakmv 1 always aakmw 1 always aakmx 1 always aakmy 1 always aakmz 1 always aakna 1 always aaknb 1 always aaknc 1 always aaknd 1 always aakne 1 always aaknf 1 always aakng 1 always aaknh 1 always aakni 1 always aaknj 1 always aaknk 1 always aaknl 1 always aaknm 1 always aaknn 1 always aakno 1 always aaknp 1 always aaknq 1 always aaknr 1 always aakns 1 always aaknt 1 always aaknu 1 always aaknv 1 always aaknw 1 always aaknx 1 always aakny 1 always aaknz 1 always aakoa 1 always aakob 1 always aakoc 1 always aakod 1 always aakoe 1 always aakof 1 always aakog 1 always aakoh 1 always aakoi 1 always aakoj 1 always aakok 1 always aakol 1 always aakom 1 always aakon 1 always aakoo 1 always aakop 1 always aakoq 1 always aakor 1 always aakos 1 always aakot 1 always aakou 1 always aakov 1 always aakow 1 always aakox 1 always aakoy 1 always aakoz 1 always aakpa 1 always aakpb 1 always aakpc 1 always aakpd 1 always aakpe 1 always aakpf 1 always aakpg 1 always aakph 1 always aakpi 1 always aakpj 1 always aakpk 1 always aakpl 1 always aakpm 1 always aakpn 1 always aakpo 1 always aakpp 1 always aakpq 1 always aakpr 1 always aakps 1 always aakpt 1 always aakpu 1 always aakpv 1 always aakpw 1 always aakpx 1 always aakpy 1 always aakpz 1 always aakqa 1 always aakqb 1 always aakqc 1 always aakqd 1 always aakqe 1 always aakqf 1 always aakqg 1 always aakqh 1 always aakqi 1 always aakqj 1 always aakqk 1 always aakql 1 always aakqm 1 always aakqn 1 always aakqo 1 always aakqp 1 always aakqq 1 always aakqr 1 always aakqs 1 always aakqt 1 always aakqu 1 always aakqv 1 always aakqw 1 always aakqx 1 always aakqy 1 always aakqz 1 always aakra 1 always aakrb 1 always aakrc 1 always aakrd 1 always aakre 1 always aakrf 1 always aakrg 1 always aakrh 1 always aakri 1 always aakrj 1 always aakrk 1 always aakrl 1 always aakrm 1 always aakrn 1 always aakro 1 always aakrp 1 always aakrq 1 always aakrr 1 always aakrs 1 always aakrt 1 always aakru 1 always aakrv 1 always aakrw 1 always aakrx 1 always aakry 1 always aakrz 1 always aaksa 1 always aaksb 1 always aaksc 1 always aaksd 1 always aakse 1 always aaksf 1 always aaksg 1 always aaksh 1 always aaksi 1 always aaksj 1 always aaksk 1 always aaksl 1 always aaksm 1 always aaksn 1 always aakso 1 always aaksp 1 always aaksq 1 always aaksr 1 always aakss 1 always aakst 1 always aaksu 1 always aaksv 1 always aaksw 1 always aaksx 1 always aaksy 1 always aaksz 1 always aakta 1 always aaktb 1 always aaktc 1 always aaktd 1 always aakte 1 always aaktf 1 always aaktg 1 always aakth 1 always aakti 1 always aaktj 1 always aaktk 1 always aaktl 1 always aaktm 1 always aaktn 1 always aakto 1 always aaktp 1 always aaktq 1 always aaktr 1 always aakts 1 always aaktt 1 always aaktu 1 always aaktv 1 always aaktw 1 always aaktx 1 always aakty 1 always aaktz 1 always aakua 1 always aakub 1 always aakuc 1 always aakud 1 always aakue 1 always aakuf 1 always aakug 1 always aakuh 1 always aakui 1 always aakuj 1 always aakuk 1 always aakul 1 always aakum 1 always aakun 1 always aakuo 1 always aakup 1 always aakuq 1 always aakur 1 always aakus 1 always aakut 1 always aakuu 1 always aakuv 1 always aakuw 1 always aakux 1 always aakuy 1 always aakuz 1 always aakva 1 always aakvb 1 always aakvc 1 always aakvd 1 always aakve 1 always aakvf 1 always aakvg 1 always aakvh 1 always aakvi 1 always aakvj 1 always aakvk 1 always aakvl 1 always aakvm 1 always aakvn 1 always aakvo 1 always aakvp 1 always aakvq 1 always aakvr 1 always aakvs 1 always aakvt 1 always aakvu 1 always aakvv 1 always aakvw 1 always aakvx 1 always aakvy 1 always aakvz 1 always aakwa 1 always aakwb 1 always aakwc 1 always aakwd 1 always aakwe 1 always aakwf 1 always aakwg 1 always aakwh 1 always aakwi 1 always aakwj 1 always aakwk 1 always aakwl 1 always aakwm 1 always aakwn 1 always aakwo 1 always aakwp 1 always aakwq 1 always aakwr 1 always aakws 1 always aakwt 1 always aakwu 1 always aakwv 1 always aakww 1 always aakwx 1 always aakwy 1 always aakwz 1 always aakxa 1 always aakxb 1 always aakxc 1 always aakxd 1 always aakxe 1 always aakxf 1 always aakxg 1 always aakxh 1 always aakxi 1 always aakxj 1 always aakxk 1 always aakxl 1 always aakxm 1 always aakxn 1 always aakxo 1 always aakxp 1 always aakxq 1 always aakxr 1 always aakxs 1 always aakxt 1 always aakxu 1 always aakxv 1 always aakxw 1 always aakxx 1 always aakxy 1 always aakxz 1 always aakya 1 always aakyb 1 always aakyc 1 always aakyd 1 always aakye 1 always aakyf 1 always aakyg 1 always aakyh 1 always aakyi 1 always aakyj 1 always aakyk 1 always aakyl 1 always aakym 1 always aakyn 1 always aakyo 1 always aakyp 1 always aakyq 1 always aakyr 1 always aakys 1 always aakyt 1 always aakyu 1 always aakyv 1 always aakyw 1 always aakyx 1 always aakyy 1 always aakyz 1 always aakza 1 always aakzb 1 always aakzc 1 always aakzd 1 always aakze 1 always aakzf 1 always aakzg 1 always aakzh 1 always aakzi 1 always aakzj 1 always aakzk 1 always aakzl 1 always aakzm 1 always aakzn 1 always aakzo 1 always aakzp 1 always aakzq 1 always aakzr 1 always aakzs 1 always aakzt 1 always aakzu 1 always aakzv 1 always aakzw 1 always aakzx 1 always aakzy 1 always aakzz 1 always aalaa 1 always aalab 1 always aalac 1 always aalad 1 always aalae 1 always aalaf 1 always aalag 1 always aalah 1 always aalai 1 always aalaj 1 always aalak 1 always aalal 1 always aalam 1 always aalan 1 always aalao 1 always aalap 1 always aalaq 1 always aalar 1 always aalas 1 always aalat 1 always aalau 1 always aalav 1 always aalaw 1 always aalax 1 always aalay 1 always aalaz 1 always aalba 1 always aalbb 1 always aalbc 1 always aalbd 1 always aalbe 1 always aalbf 1 always aalbg 1 always aalbh 1 always aalbi 1 always aalbj 1 always aalbk 1 always aalbl 1 always aalbm 1 always aalbn 1 always aalbo 1 always aalbp 1 always aalbq 1 always aalbr 1 always aalbs 1 always aalbt 1 always aalbu 1 always aalbv 1 always aalbw 1 always aalbx 1 always aalby 1 always aalbz 1 always aalca 1 always aalcb 1 always aalcc 1 always aalcd 1 always aalce 1 always aalcf 1 always aalcg 1 always aalch 1 always aalci 1 always aalcj 1 always aalck 1 always aalcl 1 always aalcm 1 always aalcn 1 always aalco 1 always aalcp 1 always aalcq 1 always aalcr 1 always aalcs 1 always aalct 1 always aalcu 1 always aalcv 1 always aalcw 1 always aalcx 1 always aalcy 1 always aalcz 1 always aalda 1 always aaldb 1 always aaldc 1 always aaldd 1 always aalde 1 always aaldf 1 always aaldg 1 always aaldh 1 always aaldi 1 always aaldj 1 always aaldk 1 always aaldl 1 always aaldm 1 always aaldn 1 always aaldo 1 always aaldp 1 always aaldq 1 always aaldr 1 always aalds 1 always aaldt 1 always aaldu 1 always aaldv 1 always aaldw 1 always aaldx 1 always aaldy 1 always aaldz 1 always aalea 1 always aaleb 1 always aalec 1 always aaled 1 always aalee 1 always aalef 1 always aaleg 1 always aaleh 1 always aalei 1 always aalej 1 always aalek 1 always aalel 1 always aalem 1 always aalen 1 always aaleo 1 always aalep 1 always aaleq 1 always aaler 1 always aales 1 always aalet 1 always aaleu 1 always aalev 1 always aalew 1 always aalex 1 always aaley 1 always aalez 1 always aalfa 1 always aalfb 1 always aalfc 1 always aalfd 1 always aalfe 1 always aalff 1 always aalfg 1 always aalfh 1 always aalfi 1 always aalfj 1 always aalfk 1 always aalfl 1 always aalfm 1 always aalfn 1 always aalfo 1 always aalfp 1 always aalfq 1 always aalfr 1 always aalfs 1 always aalft 1 always aalfu 1 always aalfv 1 always aalfw 1 always aalfx 1 always aalfy 1 always aalfz 1 always aalga 1 always aalgb 1 always aalgc 1 always aalgd 1 always aalge 1 always aalgf 1 always aalgg 1 always aalgh 1 always aalgi 1 always aalgj 1 always aalgk 1 always aalgl 1 always aalgm 1 always aalgn 1 always aalgo 1 always aalgp 1 always aalgq 1 always aalgr 1 always aalgs 1 always aalgt 1 always aalgu 1 always aalgv 1 always aalgw 1 always aalgx 1 always aalgy 1 always aalgz 1 always aalha 1 always aalhb 1 always aalhc 1 always aalhd 1 always aalhe 1 always aalhf 1 always aalhg 1 always aalhh 1 always aalhi 1 always aalhj 1 always aalhk 1 always aalhl 1 always aalhm 1 always aalhn 1 always aalho 1 always aalhp 1 always aalhq 1 always aalhr 1 always aalhs 1 always aalht 1 always aalhu 1 always aalhv 1 always aalhw 1 always aalhx 1 always aalhy 1 always aalhz 1 always aalia 1 always aalib 1 always aalic 1 always aalid 1 always aalie 1 always aalif 1 always aalig 1 always aalih 1 always aalii 1 always aalij 1 always aalik 1 always aalil 1 always aalim 1 always aalin 1 always aalio 1 always aalip 1 always aaliq 1 always aalir 1 always aalis 1 always aalit 1 always aaliu 1 always aaliv 1 always aaliw 1 always aalix 1 always aaliy 1 always aaliz 1 always aalja 1 always aaljb 1 always aaljc 1 always aaljd 1 always aalje 1 always aaljf 1 always aaljg 1 always aaljh 1 always aalji 1 always aaljj 1 always aaljk 1 always aaljl 1 always aaljm 1 always aaljn 1 always aaljo 1 always aaljp 1 always aaljq 1 always aaljr 1 always aaljs 1 always aaljt 1 always aalju 1 always aaljv 1 always aaljw 1 always aaljx 1 always aaljy 1 always aaljz 1 always aalka 1 always aalkb 1 always aalkc 1 always aalkd 1 always aalke 1 always aalkf 1 always aalkg 1 always aalkh 1 always aalki 1 always aalkj 1 always aalkk 1 always aalkl 1 always aalkm 1 always aalkn 1 always aalko 1 always aalkp 1 always aalkq 1 always aalkr 1 always aalks 1 always aalkt 1 always aalku 1 always aalkv 1 always aalkw 1 always aalkx 1 always aalky 1 always aalkz 1 always aalla 1 always aallb 1 always aallc 1 always aalld 1 always aalle 1 always aallf 1 always aallg 1 always aallh 1 always aalli 1 always aallj 1 always aallk 1 always aalll 1 always aallm 1 always aalln 1 always aallo 1 always aallp 1 always aallq 1 always aallr 1 always aalls 1 always aallt 1 always aallu 1 always aallv 1 always aallw 1 always aallx 1 always aally 1 always aallz 1 always aalma 1 always aalmb 1 always aalmc 1 always aalmd 1 always aalme 1 always aalmf 1 always aalmg 1 always aalmh 1 always aalmi 1 always aalmj 1 always aalmk 1 always aalml 1 always aalmm 1 always aalmn 1 always aalmo 1 always aalmp 1 always aalmq 1 always aalmr 1 always aalms 1 always aalmt 1 always aalmu 1 always aalmv 1 always aalmw 1 always aalmx 1 always aalmy 1 always aalmz 1 always aalna 1 always aalnb 1 always aalnc 1 always aalnd 1 always aalne 1 always aalnf 1 always aalng 1 always aalnh 1 always aalni 1 always aalnj 1 always aalnk 1 always aalnl 1 always aalnm 1 always aalnn 1 always aalno 1 always aalnp 1 always aalnq 1 always aalnr 1 always aalns 1 always aalnt 1 always aalnu 1 always aalnv 1 always aalnw 1 always aalnx 1 always aalny 1 always aalnz 1 always aaloa 1 always aalob 1 always aaloc 1 always aalod 1 always aaloe 1 always aalof 1 always aalog 1 always aaloh 1 always aaloi 1 always aaloj 1 always aalok 1 always aalol 1 always aalom 1 always aalon 1 always aaloo 1 always aalop 1 always aaloq 1 always aalor 1 always aalos 1 always aalot 1 always aalou 1 always aalov 1 always aalow 1 always aalox 1 always aaloy 1 always aaloz 1 always aalpa 1 always aalpb 1 always aalpc 1 always aalpd 1 always aalpe 1 always aalpf 1 always aalpg 1 always aalph 1 always aalpi 1 always aalpj 1 always aalpk 1 always aalpl 1 always aalpm 1 always aalpn 1 always aalpo 1 always aalpp 1 always aalpq 1 always aalpr 1 always aalps 1 always aalpt 1 always aalpu 1 always aalpv 1 always aalpw 1 always aalpx 1 always aalpy 1 always aalpz 1 always aalqa 1 always aalqb 1 always aalqc 1 always aalqd 1 always aalqe 1 always aalqf 1 always aalqg 1 always aalqh 1 always aalqi 1 always aalqj 1 always aalqk 1 always aalql 1 always aalqm 1 always aalqn 1 always aalqo 1 always aalqp 1 always aalqq 1 always aalqr 1 always aalqs 1 always aalqt 1 always aalqu 1 always aalqv 1 always aalqw 1 always aalqx 1 always aalqy 1 always aalqz 1 always aalra 1 always aalrb 1 always aalrc 1 always aalrd 1 always aalre 1 always aalrf 1 always aalrg 1 always aalrh 1 always aalri 1 always aalrj 1 always aalrk 1 always aalrl 1 always aalrm 1 always aalrn 1 always aalro 1 always aalrp 1 always aalrq 1 always aalrr 1 always aalrs 1 always aalrt 1 always aalru 1 always aalrv 1 always aalrw 1 always aalrx 1 always aalry 1 always aalrz 1 always aalsa 1 always aalsb 1 always aalsc 1 always aalsd 1 always aalse 1 always aalsf 1 always aalsg 1 always aalsh 1 always aalsi 1 always aalsj 1 always aalsk 1 always aalsl 1 always aalsm 1 always aalsn 1 always aalso 1 always aalsp 1 always aalsq 1 always aalsr 1 always aalss 1 always aalst 1 always aalsu 1 always aalsv 1 always aalsw 1 always aalsx 1 always aalsy 1 always aalsz 1 always aalta 1 always aaltb 1 always aaltc 1 always aaltd 1 always aalte 1 always aaltf 1 always aaltg 1 always aalth 1 always aalti 1 always aaltj 1 always aaltk 1 always aaltl 1 always aaltm 1 always aaltn 1 always aalto 1 always aaltp 1 always aaltq 1 always aaltr 1 always aalts 1 always aaltt 1 always aaltu 1 always aaltv 1 always aaltw 1 always aaltx 1 always aalty 1 always aaltz 1 always aalua 1 always aalub 1 always aaluc 1 always aalud 1 always aalue 1 always aaluf 1 always aalug 1 always aaluh 1 always aalui 1 always aaluj 1 always aaluk 1 always aalul 1 always aalum 1 always aalun 1 always aaluo 1 always aalup 1 always aaluq 1 always aalur 1 always aalus 1 always aalut 1 always aaluu 1 always aaluv 1 always aaluw 1 always aalux 1 always aaluy 1 always aaluz 1 always aalva 1 always aalvb 1 always aalvc 1 always aalvd 1 always aalve 1 always aalvf 1 always aalvg 1 always aalvh 1 always aalvi 1 always aalvj 1 always aalvk 1 always aalvl 1 always aalvm 1 always aalvn 1 always aalvo 1 always aalvp 1 always aalvq 1 always aalvr 1 always aalvs 1 always aalvt 1 always aalvu 1 always aalvv 1 always aalvw 1 always aalvx 1 always aalvy 1 always aalvz 1 always aalwa 1 always aalwb 1 always aalwc 1 always aalwd 1 always aalwe 1 always aalwf 1 always aalwg 1 always aalwh 1 always aalwi 1 always aalwj 1 always aalwk 1 always aalwl 1 always aalwm 1 always aalwn 1 always aalwo 1 always aalwp 1 always aalwq 1 always aalwr 1 always aalws 1 always aalwt 1 always aalwu 1 always aalwv 1 always aalww 1 always aalwx 1 always aalwy 1 always aalwz 1 always aalxa 1 always aalxb 1 always aalxc 1 always aalxd 1 always aalxe 1 always aalxf 1 always aalxg 1 always aalxh 1 always aalxi 1 always aalxj 1 always aalxk 1 always aalxl 1 always aalxm 1 always aalxn 1 always aalxo 1 always aalxp 1 always aalxq 1 always aalxr 1 always aalxs 1 always aalxt 1 always aalxu 1 always aalxv 1 always aalxw 1 always aalxx 1 always aalxy 1 always aalxz 1 always aalya 1 always aalyb 1 always aalyc 1 always aalyd 1 always aalye 1 always aalyf 1 always aalyg 1 always aalyh 1 always aalyi 1 always aalyj 1 always aalyk 1 always aalyl 1 always aalym 1 always aalyn 1 always aalyo 1 always aalyp 1 always aalyq 1 always aalyr 1 always aalys 1 always aalyt 1 always aalyu 1 always aalyv 1 always aalyw 1 always aalyx 1 always aalyy 1 always aalyz 1 always aalza 1 always aalzb 1 always aalzc 1 always aalzd 1 always aalze 1 always aalzf 1 always aalzg 1 always aalzh 1 always aalzi 1 always aalzj 1 always aalzk 1 always aalzl 1 always aalzm 1 always aalzn 1 always aalzo 1 always aalzp 1 always aalzq 1 always aalzr 1 always aalzs 1 always aalzt 1 always aalzu 1 always aalzv 1 always aalzw 1 always aalzx 1 always aalzy 1 always aalzz 1 always aamaa 1 always aamab 1 always aamac 1 always aamad 1 always aamae 1 always aamaf 1 always aamag 1 always aamah 1 always aamai 1 always aamaj 1 always aamak 1 always aamal 1 always aamam 1 always aaman 1 always aamao 1 always aamap 1 always aamaq 1 always aamar 1 always aamas 1 always aamat 1 always aamau 1 always aamav 1 always aamaw 1 always aamax 1 always aamay 1 always aamaz 1 always aamba 1 always aambb 1 always aambc 1 always aambd 1 always aambe 1 always aambf 1 always aambg 1 always aambh 1 always aambi 1 always aambj 1 always aambk 1 always aambl 1 always aambm 1 always aambn 1 always aambo 1 always aambp 1 always aambq 1 always aambr 1 always aambs 1 always aambt 1 always aambu 1 always aambv 1 always aambw 1 always aambx 1 always aamby 1 always aambz 1 always aamca 1 always aamcb 1 always aamcc 1 always aamcd 1 always aamce 1 always aamcf 1 always aamcg 1 always aamch 1 always aamci 1 always aamcj 1 always aamck 1 always aamcl 1 always aamcm 1 always aamcn 1 always aamco 1 always aamcp 1 always aamcq 1 always aamcr 1 always aamcs 1 always aamct 1 always aamcu 1 always aamcv 1 always aamcw 1 always aamcx 1 always aamcy 1 always aamcz 1 always aamda 1 always aamdb 1 always aamdc 1 always aamdd 1 always aamde 1 always aamdf 1 always aamdg 1 always aamdh 1 always aamdi 1 always aamdj 1 always aamdk 1 always aamdl 1 always aamdm 1 always aamdn 1 always aamdo 1 always aamdp 1 always aamdq 1 always aamdr 1 always aamds 1 always aamdt 1 always aamdu 1 always aamdv 1 always aamdw 1 always aamdx 1 always aamdy 1 always aamdz 1 always aamea 1 always aameb 1 always aamec 1 always aamed 1 always aamee 1 always aamef 1 always aameg 1 always aameh 1 always aamei 1 always aamej 1 always aamek 1 always aamel 1 always aamem 1 always aamen 1 always aameo 1 always aamep 1 always aameq 1 always aamer 1 always aames 1 always aamet 1 always aameu 1 always aamev 1 always aamew 1 always aamex 1 always aamey 1 always aamez 1 always aamfa 1 always aamfb 1 always aamfc 1 always aamfd 1 always aamfe 1 always aamff 1 always aamfg 1 always aamfh 1 always aamfi 1 always aamfj 1 always aamfk 1 always aamfl 1 always aamfm 1 always aamfn 1 always aamfo 1 always aamfp 1 always aamfq 1 always aamfr 1 always aamfs 1 always aamft 1 always aamfu 1 always aamfv 1 always aamfw 1 always aamfx 1 always aamfy 1 always aamfz 1 always aamga 1 always aamgb 1 always aamgc 1 always aamgd 1 always aamge 1 always aamgf 1 always aamgg 1 always aamgh 1 always aamgi 1 always aamgj 1 always aamgk 1 always aamgl 1 always aamgm 1 always aamgn 1 always aamgo 1 always aamgp 1 always aamgq 1 always aamgr 1 always aamgs 1 always aamgt 1 always aamgu 1 always aamgv 1 always aamgw 1 always aamgx 1 always aamgy 1 always aamgz 1 always aamha 1 always aamhb 1 always aamhc 1 always aamhd 1 always aamhe 1 always aamhf 1 always aamhg 1 always aamhh 1 always aamhi 1 always aamhj 1 always aamhk 1 always aamhl 1 always aamhm 1 always aamhn 1 always aamho 1 always aamhp 1 always aamhq 1 always aamhr 1 always aamhs 1 always aamht 1 always aamhu 1 always aamhv 1 always aamhw 1 always aamhx 1 always aamhy 1 always aamhz 1 always aamia 1 always aamib 1 always aamic 1 always aamid 1 always aamie 1 always aamif 1 always aamig 1 always aamih 1 always aamii 1 always aamij 1 always aamik 1 always aamil 1 always aamim 1 always aamin 1 always aamio 1 always aamip 1 always aamiq 1 always aamir 1 always aamis 1 always aamit 1 always aamiu 1 always aamiv 1 always aamiw 1 always aamix 1 always aamiy 1 always aamiz 1 always aamja 1 always aamjb 1 always aamjc 1 always aamjd 1 always aamje 1 always aamjf 1 always aamjg 1 always aamjh 1 always aamji 1 always aamjj 1 always aamjk 1 always aamjl 1 always aamjm 1 always aamjn 1 always aamjo 1 always aamjp 1 always aamjq 1 always aamjr 1 always aamjs 1 always aamjt 1 always aamju 1 always aamjv 1 always aamjw 1 always aamjx 1 always aamjy 1 always aamjz 1 always aamka 1 always aamkb 1 always aamkc 1 always aamkd 1 always aamke 1 always aamkf 1 always aamkg 1 always aamkh 1 always aamki 1 always aamkj 1 always aamkk 1 always aamkl 1 always aamkm 1 always aamkn 1 always aamko 1 always aamkp 1 always aamkq 1 always aamkr 1 always aamks 1 always aamkt 1 always aamku 1 always aamkv 1 always aamkw 1 always aamkx 1 always aamky 1 always aamkz 1 always aamla 1 always aamlb 1 always aamlc 1 always aamld 1 always aamle 1 always aamlf 1 always aamlg 1 always aamlh 1 always aamli 1 always aamlj 1 always aamlk 1 always aamll 1 always aamlm 1 always aamln 1 always aamlo 1 always aamlp 1 always aamlq 1 always aamlr 1 always aamls 1 always aamlt 1 always aamlu 1 always aamlv 1 always aamlw 1 always aamlx 1 always aamly 1 always aamlz 1 always aamma 1 always aammb 1 always aammc 1 always aammd 1 always aamme 1 always aammf 1 always aammg 1 always aammh 1 always aammi 1 always aammj 1 always aammk 1 always aamml 1 always aammm 1 always aammn 1 always aammo 1 always aammp 1 always aammq 1 always aammr 1 always aamms 1 always aammt 1 always aammu 1 always aammv 1 always aammw 1 always aammx 1 always aammy 1 always aammz 1 always aamna 1 always aamnb 1 always aamnc 1 always aamnd 1 always aamne 1 always aamnf 1 always aamng 1 always aamnh 1 always aamni 1 always aamnj 1 always aamnk 1 always aamnl 1 always aamnm 1 always aamnn 1 always aamno 1 always aamnp 1 always aamnq 1 always aamnr 1 always aamns 1 always aamnt 1 always aamnu 1 always aamnv 1 always aamnw 1 always aamnx 1 always aamny 1 always aamnz 1 always aamoa 1 always aamob 1 always aamoc 1 always aamod 1 always aamoe 1 always aamof 1 always aamog 1 always aamoh 1 always aamoi 1 always aamoj 1 always aamok 1 always aamol 1 always aamom 1 always aamon 1 always aamoo 1 always aamop 1 always aamoq 1 always aamor 1 always aamos 1 always aamot 1 always aamou 1 always aamov 1 always aamow 1 always aamox 1 always aamoy 1 always aamoz 1 always aampa 1 always aampb 1 always aampc 1 always aampd 1 always aampe 1 always aampf 1 always aampg 1 always aamph 1 always aampi 1 always aampj 1 always aampk 1 always aampl 1 always aampm 1 always aampn 1 always aampo 1 always aampp 1 always aampq 1 always aampr 1 always aamps 1 always aampt 1 always aampu 1 always aampv 1 always aampw 1 always aampx 1 always aampy 1 always aampz 1 always aamqa 1 always aamqb 1 always aamqc 1 always aamqd 1 always aamqe 1 always aamqf 1 always aamqg 1 always aamqh 1 always aamqi 1 always aamqj 1 always aamqk 1 always aamql 1 always aamqm 1 always aamqn 1 always aamqo 1 always aamqp 1 always aamqq 1 always aamqr 1 always aamqs 1 always aamqt 1 always aamqu 1 always aamqv 1 always aamqw 1 always aamqx 1 always aamqy 1 always aamqz 1 always aamra 1 always aamrb 1 always aamrc 1 always aamrd 1 always aamre 1 always aamrf 1 always aamrg 1 always aamrh 1 always aamri 1 always aamrj 1 always aamrk 1 always aamrl 1 always aamrm 1 always aamrn 1 always aamro 1 always aamrp 1 always aamrq 1 always aamrr 1 always aamrs 1 always aamrt 1 always aamru 1 always aamrv 1 always aamrw 1 always aamrx 1 always aamry 1 always aamrz 1 always aamsa 1 always aamsb 1 always aamsc 1 always aamsd 1 always aamse 1 always aamsf 1 always aamsg 1 always aamsh 1 always aamsi 1 always aamsj 1 always aamsk 1 always aamsl 1 always aamsm 1 always aamsn 1 always aamso 1 always aamsp 1 always aamsq 1 always aamsr 1 always aamss 1 always aamst 1 always aamsu 1 always aamsv 1 always aamsw 1 always aamsx 1 always aamsy 1 always aamsz 1 always aamta 1 always aamtb 1 always aamtc 1 always aamtd 1 always aamte 1 always aamtf 1 always aamtg 1 always aamth 1 always aamti 1 always aamtj 1 always aamtk 1 always aamtl 1 always aamtm 1 always aamtn 1 always aamto 1 always aamtp 1 always aamtq 1 always aamtr 1 always aamts 1 always aamtt 1 always aamtu 1 always aamtv 1 always aamtw 1 always aamtx 1 always aamty 1 always aamtz 1 always aamua 1 always aamub 1 always aamuc 1 always aamud 1 always aamue 1 always aamuf 1 always aamug 1 always aamuh 1 always aamui 1 always aamuj 1 always aamuk 1 always aamul 1 always aamum 1 always aamun 1 always aamuo 1 always aamup 1 always aamuq 1 always aamur 1 always aamus 1 always aamut 1 always aamuu 1 always aamuv 1 always aamuw 1 always aamux 1 always aamuy 1 always aamuz 1 always aamva 1 always aamvb 1 always aamvc 1 always aamvd 1 always aamve 1 always aamvf 1 always aamvg 1 always aamvh 1 always aamvi 1 always aamvj 1 always aamvk 1 always aamvl 1 always aamvm 1 always aamvn 1 always aamvo 1 always aamvp 1 always aamvq 1 always aamvr 1 always aamvs 1 always aamvt 1 always aamvu 1 always aamvv 1 always aamvw 1 always aamvx 1 always aamvy 1 always aamvz 1 always aamwa 1 always aamwb 1 always aamwc 1 always aamwd 1 always aamwe 1 always aamwf 1 always aamwg 1 always aamwh 1 always aamwi 1 always aamwj 1 always aamwk 1 always aamwl 1 always aamwm 1 always aamwn 1 always aamwo 1 always aamwp 1 always aamwq 1 always aamwr 1 always aamws 1 always aamwt 1 always aamwu 1 always aamwv 1 always aamww 1 always aamwx 1 always aamwy 1 always aamwz 1 always aamxa 1 always aamxb 1 always aamxc 1 always aamxd 1 always aamxe 1 always aamxf 1 always aamxg 1 always aamxh 1 always aamxi 1 always aamxj 1 always aamxk 1 always aamxl 1 always aamxm 1 always aamxn 1 always aamxo 1 always aamxp 1 always aamxq 1 always aamxr 1 always aamxs 1 always aamxt 1 always aamxu 1 always aamxv 1 always aamxw 1 always aamxx 1 always aamxy 1 always aamxz 1 always aamya 1 always aamyb 1 always aamyc 1 always aamyd 1 always aamye 1 always aamyf 1 always aamyg 1 always aamyh 1 always aamyi 1 always aamyj 1 always aamyk 1 always aamyl 1 always aamym 1 always aamyn 1 always aamyo 1 always aamyp 1 always aamyq 1 always aamyr 1 always aamys 1 always aamyt 1 always aamyu 1 always aamyv 1 always aamyw 1 always aamyx 1 always aamyy 1 always aamyz 1 always aamza 1 always aamzb 1 always aamzc 1 always aamzd 1 always aamze 1 always aamzf 1 always aamzg 1 always aamzh 1 always aamzi 1 always aamzj 1 always aamzk 1 always aamzl 1 always aamzm 1 always aamzn 1 always aamzo 1 always aamzp 1 always aamzq 1 always aamzr 1 always aamzs 1 always aamzt 1 always aamzu 1 always aamzv 1 always aamzw 1 always aamzx 1 always aamzy 1 always aamzz 1 always aanaa 1 always aanab 1 always aanac 1 always aanad 1 always aanae 1 always aanaf 1 always aanag 1 always aanah 1 always aanai 1 always aanaj 1 always aanak 1 always aanal 1 always aanam 1 always aanan 1 always aanao 1 always aanap 1 always aanaq 1 always aanar 1 always aanas 1 always aanat 1 always aanau 1 always aanav 1 always aanaw 1 always aanax 1 always aanay 1 always aanaz 1 always aanba 1 always aanbb 1 always aanbc 1 always aanbd 1 always aanbe 1 always aanbf 1 always aanbg 1 always aanbh 1 always aanbi 1 always aanbj 1 always aanbk 1 always aanbl 1 always aanbm 1 always aanbn 1 always aanbo 1 always aanbp 1 always aanbq 1 always aanbr 1 always aanbs 1 always aanbt 1 always aanbu 1 always aanbv 1 always aanbw 1 always aanbx 1 always aanby 1 always aanbz 1 always aanca 1 always aancb 1 always aancc 1 always aancd 1 always aance 1 always aancf 1 always aancg 1 always aanch 1 always aanci 1 always aancj 1 always aanck 1 always aancl 1 always aancm 1 always aancn 1 always aanco 1 always aancp 1 always aancq 1 always aancr 1 always aancs 1 always aanct 1 always aancu 1 always aancv 1 always aancw 1 always aancx 1 always aancy 1 always aancz 1 always aanda 1 always aandb 1 always aandc 1 always aandd 1 always aande 1 always aandf 1 always aandg 1 always aandh 1 always aandi 1 always aandj 1 always aandk 1 always aandl 1 always aandm 1 always aandn 1 always aando 1 always aandp 1 always aandq 1 always aandr 1 always aands 1 always aandt 1 always aandu 1 always aandv 1 always aandw 1 always aandx 1 always aandy 1 always aandz 1 always aanea 1 always aaneb 1 always aanec 1 always aaned 1 always aanee 1 always aanef 1 always aaneg 1 always aaneh 1 always aanei 1 always aanej 1 always aanek 1 always aanel 1 always aanem 1 always aanen 1 always aaneo 1 always aanep 1 always aaneq 1 always aaner 1 always aanes 1 always aanet 1 always aaneu 1 always aanev 1 always aanew 1 always aanex 1 always aaney 1 always aanez 1 always aanfa 1 always aanfb 1 always aanfc 1 always aanfd 1 always aanfe 1 always aanff 1 always aanfg 1 always aanfh 1 always aanfi 1 always aanfj 1 always aanfk 1 always aanfl 1 always aanfm 1 always aanfn 1 always aanfo 1 always aanfp 1 always aanfq 1 always aanfr 1 always aanfs 1 always aanft 1 always aanfu 1 always aanfv 1 always aanfw 1 always aanfx 1 always aanfy 1 always aanfz 1 always aanga 1 always aangb 1 always aangc 1 always aangd 1 always aange 1 always aangf 1 always aangg 1 always aangh 1 always aangi 1 always aangj 1 always aangk 1 always aangl 1 always aangm 1 always aangn 1 always aango 1 always aangp 1 always aangq 1 always aangr 1 always aangs 1 always aangt 1 always aangu 1 always aangv 1 always aangw 1 always aangx 1 always aangy 1 always aangz 1 always aanha 1 always aanhb 1 always aanhc 1 always aanhd 1 always aanhe 1 always aanhf 1 always aanhg 1 always aanhh 1 always aanhi 1 always aanhj 1 always aanhk 1 always aanhl 1 always aanhm 1 always aanhn 1 always aanho 1 always aanhp 1 always aanhq 1 always aanhr 1 always aanhs 1 always aanht 1 always aanhu 1 always aanhv 1 always aanhw 1 always aanhx 1 always aanhy 1 always aanhz 1 always aania 1 always aanib 1 always aanic 1 always aanid 1 always aanie 1 always aanif 1 always aanig 1 always aanih 1 always aanii 1 always aanij 1 always aanik 1 always aanil 1 always aanim 1 always aanin 1 always aanio 1 always aanip 1 always aaniq 1 always aanir 1 always aanis 1 always aanit 1 always aaniu 1 always aaniv 1 always aaniw 1 always aanix 1 always aaniy 1 always aaniz 1 always aanja 1 always aanjb 1 always aanjc 1 always aanjd 1 always aanje 1 always aanjf 1 always aanjg 1 always aanjh 1 always aanji 1 always aanjj 1 always aanjk 1 always aanjl 1 always aanjm 1 always aanjn 1 always aanjo 1 always aanjp 1 always aanjq 1 always aanjr 1 always aanjs 1 always aanjt 1 always aanju 1 always aanjv 1 always aanjw 1 always aanjx 1 always aanjy 1 always aanjz 1 always aanka 1 always aankb 1 always aankc 1 always aankd 1 always aanke 1 always aankf 1 always aankg 1 always aankh 1 always aanki 1 always aankj 1 always aankk 1 always aankl 1 always aankm 1 always aankn 1 always aanko 1 always aankp 1 always aankq 1 always aankr 1 always aanks 1 always aankt 1 always aanku 1 always aankv 1 always aankw 1 always aankx 1 always aanky 1 always aankz 1 always aanla 1 always aanlb 1 always aanlc 1 always aanld 1 always aanle 1 always aanlf 1 always aanlg 1 always aanlh 1 always aanli 1 always aanlj 1 always aanlk 1 always aanll 1 always aanlm 1 always aanln 1 always aanlo 1 always aanlp 1 always aanlq 1 always aanlr 1 always aanls 1 always aanlt 1 always aanlu 1 always aanlv 1 always aanlw 1 always aanlx 1 always aanly 1 always aanlz 1 always aanma 1 always aanmb 1 always aanmc 1 always aanmd 1 always aanme 1 always aanmf 1 always aanmg 1 always aanmh 1 always aanmi 1 always aanmj 1 always aanmk 1 always aanml 1 always aanmm 1 always aanmn 1 always aanmo 1 always aanmp 1 always aanmq 1 always aanmr 1 always aanms 1 always aanmt 1 always aanmu 1 always aanmv 1 always aanmw 1 always aanmx 1 always aanmy 1 always aanmz 1 always aanna 1 always aannb 1 always aannc 1 always aannd 1 always aanne 1 always aannf 1 always aanng 1 always aannh 1 always aanni 1 always aannj 1 always aannk 1 always aannl 1 always aannm 1 always aannn 1 always aanno 1 always aannp 1 always aannq 1 always aannr 1 always aanns 1 always aannt 1 always aannu 1 always aannv 1 always aannw 1 always aannx 1 always aanny 1 always aannz 1 always aanoa 1 always aanob 1 always aanoc 1 always aanod 1 always aanoe 1 always aanof 1 always aanog 1 always aanoh 1 always aanoi 1 always aanoj 1 always aanok 1 always aanol 1 always aanom 1 always aanon 1 always aanoo 1 always aanop 1 always aanoq 1 always aanor 1 always aanos 1 always aanot 1 always aanou 1 always aanov 1 always aanow 1 always aanox 1 always aanoy 1 always aanoz 1 always aanpa 1 always aanpb 1 always aanpc 1 always aanpd 1 always aanpe 1 always aanpf 1 always aanpg 1 always aanph 1 always aanpi 1 always aanpj 1 always aanpk 1 always aanpl 1 always aanpm 1 always aanpn 1 always aanpo 1 always aanpp 1 always aanpq 1 always aanpr 1 always aanps 1 always aanpt 1 always aanpu 1 always aanpv 1 always aanpw 1 always aanpx 1 always aanpy 1 always aanpz 1 always aanqa 1 always aanqb 1 always aanqc 1 always aanqd 1 always aanqe 1 always aanqf 1 always aanqg 1 always aanqh 1 always aanqi 1 always aanqj 1 always aanqk 1 always aanql 1 always aanqm 1 always aanqn 1 always aanqo 1 always aanqp 1 always aanqq 1 always aanqr 1 always aanqs 1 always aanqt 1 always aanqu 1 always aanqv 1 always aanqw 1 always aanqx 1 always aanqy 1 always aanqz 1 always aanra 1 always aanrb 1 always aanrc 1 always aanrd 1 always aanre 1 always aanrf 1 always aanrg 1 always aanrh 1 always aanri 1 always aanrj 1 always aanrk 1 always aanrl 1 always aanrm 1 always aanrn 1 always aanro 1 always aanrp 1 always aanrq 1 always aanrr 1 always aanrs 1 always aanrt 1 always aanru 1 always aanrv 1 always aanrw 1 always aanrx 1 always aanry 1 always aanrz 1 always aansa 1 always aansb 1 always aansc 1 always aansd 1 always aanse 1 always aansf 1 always aansg 1 always aansh 1 always aansi 1 always aansj 1 always aansk 1 always aansl 1 always aansm 1 always aansn 1 always aanso 1 always aansp 1 always aansq 1 always aansr 1 always aanss 1 always aanst 1 always aansu 1 always aansv 1 always aansw 1 always aansx 1 always aansy 1 always aansz 1 always aanta 1 always aantb 1 always aantc 1 always aantd 1 always aante 1 always aantf 1 always aantg 1 always aanth 1 always aanti 1 always aantj 1 always aantk 1 always aantl 1 always aantm 1 always aantn 1 always aanto 1 always aantp 1 always aantq 1 always aantr 1 always aants 1 always aantt 1 always aantu 1 always aantv 1 always aantw 1 always aantx 1 always aanty 1 always aantz 1 always aanua 1 always aanub 1 always aanuc 1 always aanud 1 always aanue 1 always aanuf 1 always aanug 1 always aanuh 1 always aanui 1 always aanuj 1 always aanuk 1 always aanul 1 always aanum 1 always aanun 1 always aanuo 1 always aanup 1 always aanuq 1 always aanur 1 always aanus 1 always aanut 1 always aanuu 1 always aanuv 1 always aanuw 1 always aanux 1 always aanuy 1 always aanuz 1 always aanva 1 always aanvb 1 always aanvc 1 always aanvd 1 always aanve 1 always aanvf 1 always aanvg 1 always aanvh 1 always aanvi 1 always aanvj 1 always aanvk 1 always aanvl 1 always aanvm 1 always aanvn 1 always aanvo 1 always aanvp 1 always aanvq 1 always aanvr 1 always aanvs 1 always aanvt 1 always aanvu 1 always aanvv 1 always aanvw 1 always aanvx 1 always aanvy 1 always aanvz 1 always aanwa 1 always aanwb 1 always aanwc 1 always aanwd 1 always aanwe 1 always aanwf 1 always aanwg 1 always aanwh 1 always aanwi 1 always aanwj 1 always aanwk 1 always aanwl 1 always aanwm 1 always aanwn 1 always aanwo 1 always aanwp 1 always aanwq 1 always aanwr 1 always aanws 1 always aanwt 1 always aanwu 1 always aanwv 1 always aanww 1 always aanwx 1 always aanwy 1 always aanwz 1 always aanxa 1 always aanxb 1 always aanxc 1 always aanxd 1 always aanxe 1 always aanxf 1 always aanxg 1 always aanxh 1 always aanxi 1 always aanxj 1 always aanxk 1 always aanxl 1 always aanxm 1 always aanxn 1 always aanxo 1 always aanxp 1 always aanxq 1 always aanxr 1 always aanxs 1 always aanxt 1 always aanxu 1 always aanxv 1 always aanxw 1 always aanxx 1 always aanxy 1 always aanxz 1 always aanya 1 always aanyb 1 always aanyc 1 always aanyd 1 always aanye 1 always aanyf 1 always aanyg 1 always aanyh 1 always aanyi 1 always aanyj 1 always aanyk 1 always aanyl 1 always aanym 1 always aanyn 1 always aanyo 1 always aanyp 1 always aanyq 1 always aanyr 1 always aanys 1 always aanyt 1 always aanyu 1 always aanyv 1 always aanyw 1 always aanyx 1 always aanyy 1 always aanyz 1 always aanza 1 always aanzb 1 always aanzc 1 always aanzd 1 always aanze 1 always aanzf 1 always aanzg 1 always aanzh 1 always aanzi 1 always aanzj 1 always aanzk 1 always aanzl 1 always aanzm 1 always aanzn 1 always aanzo 1 always aanzp 1 always aanzq 1 always aanzr 1 always aanzs 1 always aanzt 1 always aanzu 1 always aanzv 1 always aanzw 1 always aanzx 1 always aanzy 1 always aanzz 1 always aaoaa 1 always aaoab 1 always aaoac 1 always aaoad 1 always aaoae 1 always aaoaf 1 always aaoag 1 always aaoah 1 always aaoai 1 always aaoaj 1 always aaoak 1 always aaoal 1 always aaoam 1 always aaoan 1 always aaoao 1 always aaoap 1 always aaoaq 1 always aaoar 1 always aaoas 1 always aaoat 1 always aaoau 1 always aaoav 1 always aaoaw 1 always aaoax 1 always aaoay 1 always aaoaz 1 always aaoba 1 always aaobb 1 always aaobc 1 always aaobd 1 always aaobe 1 always aaobf 1 always aaobg 1 always aaobh 1 always aaobi 1 always aaobj 1 always aaobk 1 always aaobl 1 always aaobm 1 always aaobn 1 always aaobo 1 always aaobp 1 always aaobq 1 always aaobr 1 always aaobs 1 always aaobt 1 always aaobu 1 always aaobv 1 always aaobw 1 always aaobx 1 always aaoby 1 always aaobz 1 always aaoca 1 always aaocb 1 always aaocc 1 always aaocd 1 always aaoce 1 always aaocf 1 always aaocg 1 always aaoch 1 always aaoci 1 always aaocj 1 always aaock 1 always aaocl 1 always aaocm 1 always aaocn 1 always aaoco 1 always aaocp 1 always aaocq 1 always aaocr 1 always aaocs 1 always aaoct 1 always aaocu 1 always aaocv 1 always aaocw 1 always aaocx 1 always aaocy 1 always aaocz 1 always aaoda 1 always aaodb 1 always aaodc 1 always aaodd 1 always aaode 1 always aaodf 1 always aaodg 1 always aaodh 1 always aaodi 1 always aaodj 1 always aaodk 1 always aaodl 1 always aaodm 1 always aaodn 1 always aaodo 1 always aaodp 1 always aaodq 1 always aaodr 1 always aaods 1 always aaodt 1 always aaodu 1 always aaodv 1 always aaodw 1 always aaodx 1 always aaody 1 always aaodz 1 always aaoea 1 always aaoeb 1 always aaoec 1 always aaoed 1 always aaoee 1 always aaoef 1 always aaoeg 1 always aaoeh 1 always aaoei 1 always aaoej 1 always aaoek 1 always aaoel 1 always aaoem 1 always aaoen 1 always aaoeo 1 always aaoep 1 always aaoeq 1 always aaoer 1 always aaoes 1 always aaoet 1 always aaoeu 1 always aaoev 1 always aaoew 1 always aaoex 1 always aaoey 1 always aaoez 1 always aaofa 1 always aaofb 1 always aaofc 1 always aaofd 1 always aaofe 1 always aaoff 1 always aaofg 1 always aaofh 1 always aaofi 1 always aaofj 1 always aaofk 1 always aaofl 1 always aaofm 1 always aaofn 1 always aaofo 1 always aaofp 1 always aaofq 1 always aaofr 1 always aaofs 1 always aaoft 1 always aaofu 1 always aaofv 1 always aaofw 1 always aaofx 1 always aaofy 1 always aaofz 1 always aaoga 1 always aaogb 1 always aaogc 1 always aaogd 1 always aaoge 1 always aaogf 1 always aaogg 1 always aaogh 1 always aaogi 1 always aaogj 1 always aaogk 1 always aaogl 1 always aaogm 1 always aaogn 1 always aaogo 1 always aaogp 1 always aaogq 1 always aaogr 1 always aaogs 1 always aaogt 1 always aaogu 1 always aaogv 1 always aaogw 1 always aaogx 1 always aaogy 1 always aaogz 1 always aaoha 1 always aaohb 1 always aaohc 1 always aaohd 1 always aaohe 1 always aaohf 1 always aaohg 1 always aaohh 1 always aaohi 1 always aaohj 1 always aaohk 1 always aaohl 1 always aaohm 1 always aaohn 1 always aaoho 1 always aaohp 1 always aaohq 1 always aaohr 1 always aaohs 1 always aaoht 1 always aaohu 1 always aaohv 1 always aaohw 1 always aaohx 1 always aaohy 1 always aaohz 1 always aaoia 1 always aaoib 1 always aaoic 1 always aaoid 1 always aaoie 1 always aaoif 1 always aaoig 1 always aaoih 1 always aaoii 1 always aaoij 1 always aaoik 1 always aaoil 1 always aaoim 1 always aaoin 1 always aaoio 1 always aaoip 1 always aaoiq 1 always aaoir 1 always aaois 1 always aaoit 1 always aaoiu 1 always aaoiv 1 always aaoiw 1 always aaoix 1 always aaoiy 1 always aaoiz 1 always aaoja 1 always aaojb 1 always aaojc 1 always aaojd 1 always aaoje 1 always aaojf 1 always aaojg 1 always aaojh 1 always aaoji 1 always aaojj 1 always aaojk 1 always aaojl 1 always aaojm 1 always aaojn 1 always aaojo 1 always aaojp 1 always aaojq 1 always aaojr 1 always aaojs 1 always aaojt 1 always aaoju 1 always aaojv 1 always aaojw 1 always aaojx 1 always aaojy 1 always aaojz 1 always aaoka 1 always aaokb 1 always aaokc 1 always aaokd 1 always aaoke 1 always aaokf 1 always aaokg 1 always aaokh 1 always aaoki 1 always aaokj 1 always aaokk 1 always aaokl 1 always aaokm 1 always aaokn 1 always aaoko 1 always aaokp 1 always aaokq 1 always aaokr 1 always aaoks 1 always aaokt 1 always aaoku 1 always aaokv 1 always aaokw 1 always aaokx 1 always aaoky 1 always aaokz 1 always aaola 1 always aaolb 1 always aaolc 1 always aaold 1 always aaole 1 always aaolf 1 always aaolg 1 always aaolh 1 always aaoli 1 always aaolj 1 always aaolk 1 always aaoll 1 always aaolm 1 always aaoln 1 always aaolo 1 always aaolp 1 always aaolq 1 always aaolr 1 always aaols 1 always aaolt 1 always aaolu 1 always aaolv 1 always aaolw 1 always aaolx 1 always aaoly 1 always aaolz 1 always aaoma 1 always aaomb 1 always aaomc 1 always aaomd 1 always aaome 1 always aaomf 1 always aaomg 1 always aaomh 1 always aaomi 1 always aaomj 1 always aaomk 1 always aaoml 1 always aaomm 1 always aaomn 1 always aaomo 1 always aaomp 1 always aaomq 1 always aaomr 1 always aaoms 1 always aaomt 1 always aaomu 1 always aaomv 1 always aaomw 1 always aaomx 1 always aaomy 1 always aaomz 1 always aaona 1 always aaonb 1 always aaonc 1 always aaond 1 always aaone 1 always aaonf 1 always aaong 1 always aaonh 1 always aaoni 1 always aaonj 1 always aaonk 1 always aaonl 1 always aaonm 1 always aaonn 1 always aaono 1 always aaonp 1 always aaonq 1 always aaonr 1 always aaons 1 always aaont 1 always aaonu 1 always aaonv 1 always aaonw 1 always aaonx 1 always aaony 1 always aaonz 1 always aaooa 1 always aaoob 1 always aaooc 1 always aaood 1 always aaooe 1 always aaoof 1 always aaoog 1 always aaooh 1 always aaooi 1 always aaooj 1 always aaook 1 always aaool 1 always aaoom 1 always aaoon 1 always aaooo 1 always aaoop 1 always aaooq 1 always aaoor 1 always aaoos 1 always aaoot 1 always aaoou 1 always aaoov 1 always aaoow 1 always aaoox 1 always aaooy 1 always aaooz 1 always aaopa 1 always aaopb 1 always aaopc 1 always aaopd 1 always aaope 1 always aaopf 1 always aaopg 1 always aaoph 1 always aaopi 1 always aaopj 1 always aaopk 1 always aaopl 1 always aaopm 1 always aaopn 1 always aaopo 1 always aaopp 1 always aaopq 1 always aaopr 1 always aaops 1 always aaopt 1 always aaopu 1 always aaopv 1 always aaopw 1 always aaopx 1 always aaopy 1 always aaopz 1 always aaoqa 1 always aaoqb 1 always aaoqc 1 always aaoqd 1 always aaoqe 1 always aaoqf 1 always aaoqg 1 always aaoqh 1 always aaoqi 1 always aaoqj 1 always aaoqk 1 always aaoql 1 always aaoqm 1 always aaoqn 1 always aaoqo 1 always aaoqp 1 always aaoqq 1 always aaoqr 1 always aaoqs 1 always aaoqt 1 always aaoqu 1 always aaoqv 1 always aaoqw 1 always aaoqx 1 always aaoqy 1 always aaoqz 1 always aaora 1 always aaorb 1 always aaorc 1 always aaord 1 always aaore 1 always aaorf 1 always aaorg 1 always aaorh 1 always aaori 1 always aaorj 1 always aaork 1 always aaorl 1 always aaorm 1 always aaorn 1 always aaoro 1 always aaorp 1 always aaorq 1 always aaorr 1 always aaors 1 always aaort 1 always aaoru 1 always aaorv 1 always aaorw 1 always aaorx 1 always aaory 1 always aaorz 1 always aaosa 1 always aaosb 1 always aaosc 1 always aaosd 1 always aaose 1 always aaosf 1 always aaosg 1 always aaosh 1 always aaosi 1 always aaosj 1 always aaosk 1 always aaosl 1 always aaosm 1 always aaosn 1 always aaoso 1 always aaosp 1 always aaosq 1 always aaosr 1 always aaoss 1 always aaost 1 always aaosu 1 always aaosv 1 always aaosw 1 always aaosx 1 always aaosy 1 always aaosz 1 always aaota 1 always aaotb 1 always aaotc 1 always aaotd 1 always aaote 1 always aaotf 1 always aaotg 1 always aaoth 1 always aaoti 1 always aaotj 1 always aaotk 1 always aaotl 1 always aaotm 1 always aaotn 1 always aaoto 1 always aaotp 1 always aaotq 1 always aaotr 1 always aaots 1 always aaott 1 always aaotu 1 always aaotv 1 always aaotw 1 always aaotx 1 always aaoty 1 always aaotz 1 always aaoua 1 always aaoub 1 always aaouc 1 always aaoud 1 always aaoue 1 always aaouf 1 always aaoug 1 always aaouh 1 always aaoui 1 always aaouj 1 always aaouk 1 always aaoul 1 always aaoum 1 always aaoun 1 always aaouo 1 always aaoup 1 always aaouq 1 always aaour 1 always aaous 1 always aaout 1 always aaouu 1 always aaouv 1 always aaouw 1 always aaoux 1 always aaouy 1 always aaouz 1 always aaova 1 always aaovb 1 always aaovc 1 always aaovd 1 always aaove 1 always aaovf 1 always aaovg 1 always aaovh 1 always aaovi 1 always aaovj 1 always aaovk 1 always aaovl 1 always aaovm 1 always aaovn 1 always aaovo 1 always aaovp 1 always aaovq 1 always aaovr 1 always aaovs 1 always aaovt 1 always aaovu 1 always aaovv 1 always aaovw 1 always aaovx 1 always aaovy 1 always aaovz 1 always aaowa 1 always aaowb 1 always aaowc 1 always aaowd 1 always aaowe 1 always aaowf 1 always aaowg 1 always aaowh 1 always aaowi 1 always aaowj 1 always aaowk 1 always aaowl 1 always aaowm 1 always aaown 1 always aaowo 1 always aaowp 1 always aaowq 1 always aaowr 1 always aaows 1 always aaowt 1 always aaowu 1 always aaowv 1 always aaoww 1 always aaowx 1 always aaowy 1 always aaowz 1 always aaoxa 1 always aaoxb 1 always aaoxc 1 always aaoxd 1 always aaoxe 1 always aaoxf 1 always aaoxg 1 always aaoxh 1 always aaoxi 1 always aaoxj 1 always aaoxk 1 always aaoxl 1 always aaoxm 1 always aaoxn 1 always aaoxo 1 always aaoxp 1 always aaoxq 1 always aaoxr 1 always aaoxs 1 always aaoxt 1 always aaoxu 1 always aaoxv 1 always aaoxw 1 always aaoxx 1 always aaoxy 1 always aaoxz 1 always aaoya 1 always aaoyb 1 always aaoyc 1 always aaoyd 1 always aaoye 1 always aaoyf 1 always aaoyg 1 always aaoyh 1 always aaoyi 1 always aaoyj 1 always aaoyk 1 always aaoyl 1 always aaoym 1 always aaoyn 1 always aaoyo 1 always aaoyp 1 always aaoyq 1 always aaoyr 1 always aaoys 1 always aaoyt 1 always aaoyu 1 always aaoyv 1 always aaoyw 1 always aaoyx 1 always aaoyy 1 always aaoyz 1 always aaoza 1 always aaozb 1 always aaozc 1 always aaozd 1 always aaoze 1 always aaozf 1 always aaozg 1 always aaozh 1 always aaozi 1 always aaozj 1 always aaozk 1 always aaozl 1 always aaozm 1 always aaozn 1 always aaozo 1 always aaozp 1 always aaozq 1 always aaozr 1 always aaozs 1 always aaozt 1 always aaozu 1 always aaozv 1 always aaozw 1 always aaozx 1 always aaozy 1 always aaozz 1 always aapaa 1 always aapab 1 always aapac 1 always aapad 1 always aapae 1 always aapaf 1 always aapag 1 always aapah 1 always aapai 1 always aapaj 1 always aapak 1 always aapal 1 always aapam 1 always aapan 1 always aapao 1 always aapap 1 always aapaq 1 always aapar 1 always aapas 1 always aapat 1 always aapau 1 always aapav 1 always aapaw 1 always aapax 1 always aapay 1 always aapaz 1 always aapba 1 always aapbb 1 always aapbc 1 always aapbd 1 always aapbe 1 always aapbf 1 always aapbg 1 always aapbh 1 always aapbi 1 always aapbj 1 always aapbk 1 always aapbl 1 always aapbm 1 always aapbn 1 always aapbo 1 always aapbp 1 always aapbq 1 always aapbr 1 always aapbs 1 always aapbt 1 always aapbu 1 always aapbv 1 always aapbw 1 always aapbx 1 always aapby 1 always aapbz 1 always aapca 1 always aapcb 1 always aapcc 1 always aapcd 1 always aapce 1 always aapcf 1 always aapcg 1 always aapch 1 always aapci 1 always aapcj 1 always aapck 1 always aapcl 1 always aapcm 1 always aapcn 1 always aapco 1 always aapcp 1 always aapcq 1 always aapcr 1 always aapcs 1 always aapct 1 always aapcu 1 always aapcv 1 always aapcw 1 always aapcx 1 always aapcy 1 always aapcz 1 always aapda 1 always aapdb 1 always aapdc 1 always aapdd 1 always aapde 1 always aapdf 1 always aapdg 1 always aapdh 1 always aapdi 1 always aapdj 1 always aapdk 1 always aapdl 1 always aapdm 1 always aapdn 1 always aapdo 1 always aapdp 1 always aapdq 1 always aapdr 1 always aapds 1 always aapdt 1 always aapdu 1 always aapdv 1 always aapdw 1 always aapdx 1 always aapdy 1 always aapdz 1 always aapea 1 always aapeb 1 always aapec 1 always aaped 1 always aapee 1 always aapef 1 always aapeg 1 always aapeh 1 always aapei 1 always aapej 1 always aapek 1 always aapel 1 always aapem 1 always aapen 1 always aapeo 1 always aapep 1 always aapeq 1 always aaper 1 always aapes 1 always aapet 1 always aapeu 1 always aapev 1 always aapew 1 always aapex 1 always aapey 1 always aapez 1 always aapfa 1 always aapfb 1 always aapfc 1 always aapfd 1 always aapfe 1 always aapff 1 always aapfg 1 always aapfh 1 always aapfi 1 always aapfj 1 always aapfk 1 always aapfl 1 always aapfm 1 always aapfn 1 always aapfo 1 always aapfp 1 always aapfq 1 always aapfr 1 always aapfs 1 always aapft 1 always aapfu 1 always aapfv 1 always aapfw 1 always aapfx 1 always aapfy 1 always aapfz 1 always aapga 1 always aapgb 1 always aapgc 1 always aapgd 1 always aapge 1 always aapgf 1 always aapgg 1 always aapgh 1 always aapgi 1 always aapgj 1 always aapgk 1 always aapgl 1 always aapgm 1 always aapgn 1 always aapgo 1 always aapgp 1 always aapgq 1 always aapgr 1 always aapgs 1 always aapgt 1 always aapgu 1 always aapgv 1 always aapgw 1 always aapgx 1 always aapgy 1 always aapgz 1 always aapha 1 always aaphb 1 always aaphc 1 always aaphd 1 always aaphe 1 always aaphf 1 always aaphg 1 always aaphh 1 always aaphi 1 always aaphj 1 always aaphk 1 always aaphl 1 always aaphm 1 always aaphn 1 always aapho 1 always aaphp 1 always aaphq 1 always aaphr 1 always aaphs 1 always aapht 1 always aaphu 1 always aaphv 1 always aaphw 1 always aaphx 1 always aaphy 1 always aaphz 1 always aapia 1 always aapib 1 always aapic 1 always aapid 1 always aapie 1 always aapif 1 always aapig 1 always aapih 1 always aapii 1 always aapij 1 always aapik 1 always aapil 1 always aapim 1 always aapin 1 always aapio 1 always aapip 1 always aapiq 1 always aapir 1 always aapis 1 always aapit 1 always aapiu 1 always aapiv 1 always aapiw 1 always aapix 1 always aapiy 1 always aapiz 1 always aapja 1 always aapjb 1 always aapjc 1 always aapjd 1 always aapje 1 always aapjf 1 always aapjg 1 always aapjh 1 always aapji 1 always aapjj 1 always aapjk 1 always aapjl 1 always aapjm 1 always aapjn 1 always aapjo 1 always aapjp 1 always aapjq 1 always aapjr 1 always aapjs 1 always aapjt 1 always aapju 1 always aapjv 1 always aapjw 1 always aapjx 1 always aapjy 1 always aapjz 1 always aapka 1 always aapkb 1 always aapkc 1 always aapkd 1 always aapke 1 always aapkf 1 always aapkg 1 always aapkh 1 always aapki 1 always aapkj 1 always aapkk 1 always aapkl 1 always aapkm 1 always aapkn 1 always aapko 1 always aapkp 1 always aapkq 1 always aapkr 1 always aapks 1 always aapkt 1 always aapku 1 always aapkv 1 always aapkw 1 always aapkx 1 always aapky 1 always aapkz 1 always aapla 1 always aaplb 1 always aaplc 1 always aapld 1 always aaple 1 always aaplf 1 always aaplg 1 always aaplh 1 always aapli 1 always aaplj 1 always aaplk 1 always aapll 1 always aaplm 1 always aapln 1 always aaplo 1 always aaplp 1 always aaplq 1 always aaplr 1 always aapls 1 always aaplt 1 always aaplu 1 always aaplv 1 always aaplw 1 always aaplx 1 always aaply 1 always aaplz 1 always aapma 1 always aapmb 1 always aapmc 1 always aapmd 1 always aapme 1 always aapmf 1 always aapmg 1 always aapmh 1 always aapmi 1 always aapmj 1 always aapmk 1 always aapml 1 always aapmm 1 always aapmn 1 always aapmo 1 always aapmp 1 always aapmq 1 always aapmr 1 always aapms 1 always aapmt 1 always aapmu 1 always aapmv 1 always aapmw 1 always aapmx 1 always aapmy 1 always aapmz 1 always aapna 1 always aapnb 1 always aapnc 1 always aapnd 1 always aapne 1 always aapnf 1 always aapng 1 always aapnh 1 always aapni 1 always aapnj 1 always aapnk 1 always aapnl 1 always aapnm 1 always aapnn 1 always aapno 1 always aapnp 1 always aapnq 1 always aapnr 1 always aapns 1 always aapnt 1 always aapnu 1 always aapnv 1 always aapnw 1 always aapnx 1 always aapny 1 always aapnz 1 always aapoa 1 always aapob 1 always aapoc 1 always aapod 1 always aapoe 1 always aapof 1 always aapog 1 always aapoh 1 always aapoi 1 always aapoj 1 always aapok 1 always aapol 1 always aapom 1 always aapon 1 always aapoo 1 always aapop 1 always aapoq 1 always aapor 1 always aapos 1 always aapot 1 always aapou 1 always aapov 1 always aapow 1 always aapox 1 always aapoy 1 always aapoz 1 always aappa 1 always aappb 1 always aappc 1 always aappd 1 always aappe 1 always aappf 1 always aappg 1 always aapph 1 always aappi 1 always aappj 1 always aappk 1 always aappl 1 always aappm 1 always aappn 1 always aappo 1 always aappp 1 always aappq 1 always aappr 1 always aapps 1 always aappt 1 always aappu 1 always aappv 1 always aappw 1 always aappx 1 always aappy 1 always aappz 1 always aapqa 1 always aapqb 1 always aapqc 1 always aapqd 1 always aapqe 1 always aapqf 1 always aapqg 1 always aapqh 1 always aapqi 1 always aapqj 1 always aapqk 1 always aapql 1 always aapqm 1 always aapqn 1 always aapqo 1 always aapqp 1 always aapqq 1 always aapqr 1 always aapqs 1 always aapqt 1 always aapqu 1 always aapqv 1 always aapqw 1 always aapqx 1 always aapqy 1 always aapqz 1 always aapra 1 always aaprb 1 always aaprc 1 always aaprd 1 always aapre 1 always aaprf 1 always aaprg 1 always aaprh 1 always aapri 1 always aaprj 1 always aaprk 1 always aaprl 1 always aaprm 1 always aaprn 1 always aapro 1 always aaprp 1 always aaprq 1 always aaprr 1 always aaprs 1 always aaprt 1 always aapru 1 always aaprv 1 always aaprw 1 always aaprx 1 always aapry 1 always aaprz 1 always aapsa 1 always aapsb 1 always aapsc 1 always aapsd 1 always aapse 1 always aapsf 1 always aapsg 1 always aapsh 1 always aapsi 1 always aapsj 1 always aapsk 1 always aapsl 1 always aapsm 1 always aapsn 1 always aapso 1 always aapsp 1 always aapsq 1 always aapsr 1 always aapss 1 always aapst 1 always aapsu 1 always aapsv 1 always aapsw 1 always aapsx 1 always aapsy 1 always aapsz 1 always aapta 1 always aaptb 1 always aaptc 1 always aaptd 1 always aapte 1 always aaptf 1 always aaptg 1 always aapth 1 always aapti 1 always aaptj 1 always aaptk 1 always aaptl 1 always aaptm 1 always aaptn 1 always aapto 1 always aaptp 1 always aaptq 1 always aaptr 1 always aapts 1 always aaptt 1 always aaptu 1 always aaptv 1 always aaptw 1 always aaptx 1 always aapty 1 always aaptz 1 always aapua 1 always aapub 1 always aapuc 1 always aapud 1 always aapue 1 always aapuf 1 always aapug 1 always aapuh 1 always aapui 1 always aapuj 1 always aapuk 1 always aapul 1 always aapum 1 always aapun 1 always aapuo 1 always aapup 1 always aapuq 1 always aapur 1 always aapus 1 always aaput 1 always aapuu 1 always aapuv 1 always aapuw 1 always aapux 1 always aapuy 1 always aapuz 1 always aapva 1 always aapvb 1 always aapvc 1 always aapvd 1 always aapve 1 always aapvf 1 always aapvg 1 always aapvh 1 always aapvi 1 always aapvj 1 always aapvk 1 always aapvl 1 always aapvm 1 always aapvn 1 always aapvo 1 always aapvp 1 always aapvq 1 always aapvr 1 always aapvs 1 always aapvt 1 always aapvu 1 always aapvv 1 always aapvw 1 always aapvx 1 always aapvy 1 always aapvz 1 always aapwa 1 always aapwb 1 always aapwc 1 always aapwd 1 always aapwe 1 always aapwf 1 always aapwg 1 always aapwh 1 always aapwi 1 always aapwj 1 always aapwk 1 always aapwl 1 always aapwm 1 always aapwn 1 always aapwo 1 always aapwp 1 always aapwq 1 always aapwr 1 always aapws 1 always aapwt 1 always aapwu 1 always aapwv 1 always aapww 1 always aapwx 1 always aapwy 1 always aapwz 1 always aapxa 1 always aapxb 1 always aapxc 1 always aapxd 1 always aapxe 1 always aapxf 1 always aapxg 1 always aapxh 1 always aapxi 1 always aapxj 1 always aapxk 1 always aapxl 1 always aapxm 1 always aapxn 1 always aapxo 1 always aapxp 1 always aapxq 1 always aapxr 1 always aapxs 1 always aapxt 1 always aapxu 1 always aapxv 1 always aapxw 1 always aapxx 1 always aapxy 1 always aapxz 1 always aapya 1 always aapyb 1 always aapyc 1 always aapyd 1 always aapye 1 always aapyf 1 always aapyg 1 always aapyh 1 always aapyi 1 always aapyj 1 always aapyk 1 always aapyl 1 always aapym 1 always aapyn 1 always aapyo 1 always aapyp 1 always aapyq 1 always aapyr 1 always aapys 1 always aapyt 1 always aapyu 1 always aapyv 1 always aapyw 1 always aapyx 1 always aapyy 1 always aapyz 1 always aapza 1 always aapzb 1 always aapzc 1 always aapzd 1 always aapze 1 always aapzf 1 always aapzg 1 always aapzh 1 always aapzi 1 always aapzj 1 always aapzk 1 always aapzl 1 always aapzm 1 always aapzn 1 always aapzo 1 always aapzp 1 always aapzq 1 always aapzr 1 always aapzs 1 always aapzt 1 always aapzu 1 always aapzv 1 always aapzw 1 always aapzx 1 always aapzy 1 always aapzz 1 always aaqaa 1 always aaqab 1 always aaqac 1 always aaqad 1 always aaqae 1 always aaqaf 1 always aaqag 1 always aaqah 1 always aaqai 1 always aaqaj 1 always aaqak 1 always aaqal 1 always aaqam 1 always aaqan 1 always aaqao 1 always aaqap 1 always aaqaq 1 always aaqar 1 always aaqas 1 always aaqat 1 always aaqau 1 always aaqav 1 always aaqaw 1 always aaqax 1 always aaqay 1 always aaqaz 1 always aaqba 1 always aaqbb 1 always aaqbc 1 always aaqbd 1 always aaqbe 1 always aaqbf 1 always aaqbg 1 always aaqbh 1 always aaqbi 1 always aaqbj 1 always aaqbk 1 always aaqbl 1 always aaqbm 1 always aaqbn 1 always aaqbo 1 always aaqbp 1 always aaqbq 1 always aaqbr 1 always aaqbs 1 always aaqbt 1 always aaqbu 1 always aaqbv 1 always aaqbw 1 always aaqbx 1 always aaqby 1 always aaqbz 1 always aaqca 1 always aaqcb 1 always aaqcc 1 always aaqcd 1 always aaqce 1 always aaqcf 1 always aaqcg 1 always aaqch 1 always aaqci 1 always aaqcj 1 always aaqck 1 always aaqcl 1 always aaqcm 1 always aaqcn 1 always aaqco 1 always aaqcp 1 always aaqcq 1 always aaqcr 1 always aaqcs 1 always aaqct 1 always aaqcu 1 always aaqcv 1 always aaqcw 1 always aaqcx 1 always aaqcy 1 always aaqcz 1 always aaqda 1 always aaqdb 1 always aaqdc 1 always aaqdd 1 always aaqde 1 always aaqdf 1 always aaqdg 1 always aaqdh 1 always aaqdi 1 always aaqdj 1 always aaqdk 1 always aaqdl 1 always aaqdm 1 always aaqdn 1 always aaqdo 1 always aaqdp 1 always aaqdq 1 always aaqdr 1 always aaqds 1 always aaqdt 1 always aaqdu 1 always aaqdv 1 always aaqdw 1 always aaqdx 1 always aaqdy 1 always aaqdz 1 always aaqea 1 always aaqeb 1 always aaqec 1 always aaqed 1 always aaqee 1 always aaqef 1 always aaqeg 1 always aaqeh 1 always aaqei 1 always aaqej 1 always aaqek 1 always aaqel 1 always aaqem 1 always aaqen 1 always aaqeo 1 always aaqep 1 always aaqeq 1 always aaqer 1 always aaqes 1 always aaqet 1 always aaqeu 1 always aaqev 1 always aaqew 1 always aaqex 1 always aaqey 1 always aaqez 1 always aaqfa 1 always aaqfb 1 always aaqfc 1 always aaqfd 1 always aaqfe 1 always aaqff 1 always aaqfg 1 always aaqfh 1 always aaqfi 1 always aaqfj 1 always aaqfk 1 always aaqfl 1 always aaqfm 1 always aaqfn 1 always aaqfo 1 always aaqfp 1 always aaqfq 1 always aaqfr 1 always aaqfs 1 always aaqft 1 always aaqfu 1 always aaqfv 1 always aaqfw 1 always aaqfx 1 always aaqfy 1 always aaqfz 1 always aaqga 1 always aaqgb 1 always aaqgc 1 always aaqgd 1 always aaqge 1 always aaqgf 1 always aaqgg 1 always aaqgh 1 always aaqgi 1 always aaqgj 1 always aaqgk 1 always aaqgl 1 always aaqgm 1 always aaqgn 1 always aaqgo 1 always aaqgp 1 always aaqgq 1 always aaqgr 1 always aaqgs 1 always aaqgt 1 always aaqgu 1 always aaqgv 1 always aaqgw 1 always aaqgx 1 always aaqgy 1 always aaqgz 1 always aaqha 1 always aaqhb 1 always aaqhc 1 always aaqhd 1 always aaqhe 1 always aaqhf 1 always aaqhg 1 always aaqhh 1 always aaqhi 1 always aaqhj 1 always aaqhk 1 always aaqhl 1 always aaqhm 1 always aaqhn 1 always aaqho 1 always aaqhp 1 always aaqhq 1 always aaqhr 1 always aaqhs 1 always aaqht 1 always aaqhu 1 always aaqhv 1 always aaqhw 1 always aaqhx 1 always aaqhy 1 always aaqhz 1 always aaqia 1 always aaqib 1 always aaqic 1 always aaqid 1 always aaqie 1 always aaqif 1 always aaqig 1 always aaqih 1 always aaqii 1 always aaqij 1 always aaqik 1 always aaqil 1 always aaqim 1 always aaqin 1 always aaqio 1 always aaqip 1 always aaqiq 1 always aaqir 1 always aaqis 1 always aaqit 1 always aaqiu 1 always aaqiv 1 always aaqiw 1 always aaqix 1 always aaqiy 1 always aaqiz 1 always aaqja 1 always aaqjb 1 always aaqjc 1 always aaqjd 1 always aaqje 1 always aaqjf 1 always aaqjg 1 always aaqjh 1 always aaqji 1 always aaqjj 1 always aaqjk 1 always aaqjl 1 always aaqjm 1 always aaqjn 1 always aaqjo 1 always aaqjp 1 always aaqjq 1 always aaqjr 1 always aaqjs 1 always aaqjt 1 always aaqju 1 always aaqjv 1 always aaqjw 1 always aaqjx 1 always aaqjy 1 always aaqjz 1 always aaqka 1 always aaqkb 1 always aaqkc 1 always aaqkd 1 always aaqke 1 always aaqkf 1 always aaqkg 1 always aaqkh 1 always aaqki 1 always aaqkj 1 always aaqkk 1 always aaqkl 1 always aaqkm 1 always aaqkn 1 always aaqko 1 always aaqkp 1 always aaqkq 1 always aaqkr 1 always aaqks 1 always aaqkt 1 always aaqku 1 always aaqkv 1 always aaqkw 1 always aaqkx 1 always aaqky 1 always aaqkz 1 always aaqla 1 always aaqlb 1 always aaqlc 1 always aaqld 1 always aaqle 1 always aaqlf 1 always aaqlg 1 always aaqlh 1 always aaqli 1 always aaqlj 1 always aaqlk 1 always aaqll 1 always aaqlm 1 always aaqln 1 always aaqlo 1 always aaqlp 1 always aaqlq 1 always aaqlr 1 always aaqls 1 always aaqlt 1 always aaqlu 1 always aaqlv 1 always aaqlw 1 always aaqlx 1 always aaqly 1 always aaqlz 1 always aaqma 1 always aaqmb 1 always aaqmc 1 always aaqmd 1 always aaqme 1 always aaqmf 1 always aaqmg 1 always aaqmh 1 always aaqmi 1 always aaqmj 1 always aaqmk 1 always aaqml 1 always aaqmm 1 always aaqmn 1 always aaqmo 1 always aaqmp 1 always aaqmq 1 always aaqmr 1 always aaqms 1 always aaqmt 1 always aaqmu 1 always aaqmv 1 always aaqmw 1 always aaqmx 1 always aaqmy 1 always aaqmz 1 always aaqna 1 always aaqnb 1 always aaqnc 1 always aaqnd 1 always aaqne 1 always aaqnf 1 always aaqng 1 always aaqnh 1 always aaqni 1 always aaqnj 1 always aaqnk 1 always aaqnl 1 always aaqnm 1 always aaqnn 1 always aaqno 1 always aaqnp 1 always aaqnq 1 always aaqnr 1 always aaqns 1 always aaqnt 1 always aaqnu 1 always aaqnv 1 always aaqnw 1 always aaqnx 1 always aaqny 1 always aaqnz 1 always aaqoa 1 always aaqob 1 always aaqoc 1 always aaqod 1 always aaqoe 1 always aaqof 1 always aaqog 1 always aaqoh 1 always aaqoi 1 always aaqoj 1 always aaqok 1 always aaqol 1 always aaqom 1 always aaqon 1 always aaqoo 1 always aaqop 1 always aaqoq 1 always aaqor 1 always aaqos 1 always aaqot 1 always aaqou 1 always aaqov 1 always aaqow 1 always aaqox 1 always aaqoy 1 always aaqoz 1 always aaqpa 1 always aaqpb 1 always aaqpc 1 always aaqpd 1 always aaqpe 1 always aaqpf 1 always aaqpg 1 always aaqph 1 always aaqpi 1 always aaqpj 1 always aaqpk 1 always aaqpl 1 always aaqpm 1 always aaqpn 1 always aaqpo 1 always aaqpp 1 always aaqpq 1 always aaqpr 1 always aaqps 1 always aaqpt 1 always aaqpu 1 always aaqpv 1 always aaqpw 1 always aaqpx 1 always aaqpy 1 always aaqpz 1 always aaqqa 1 always aaqqb 1 always aaqqc 1 always aaqqd 1 always aaqqe 1 always aaqqf 1 always aaqqg 1 always aaqqh 1 always aaqqi 1 always aaqqj 1 always aaqqk 1 always aaqql 1 always aaqqm 1 always aaqqn 1 always aaqqo 1 always aaqqp 1 always aaqqq 1 always aaqqr 1 always aaqqs 1 always aaqqt 1 always aaqqu 1 always aaqqv 1 always aaqqw 1 always aaqqx 1 always aaqqy 1 always aaqqz 1 always aaqra 1 always aaqrb 1 always aaqrc 1 always aaqrd 1 always aaqre 1 always aaqrf 1 always aaqrg 1 always aaqrh 1 always aaqri 1 always aaqrj 1 always aaqrk 1 always aaqrl 1 always aaqrm 1 always aaqrn 1 always aaqro 1 always aaqrp 1 always aaqrq 1 always aaqrr 1 always aaqrs 1 always aaqrt 1 always aaqru 1 always aaqrv 1 always aaqrw 1 always aaqrx 1 always aaqry 1 always aaqrz 1 always aaqsa 1 always aaqsb 1 always aaqsc 1 always aaqsd 1 always aaqse 1 always aaqsf 1 always aaqsg 1 always aaqsh 1 always aaqsi 1 always aaqsj 1 always aaqsk 1 always aaqsl 1 always aaqsm 1 always aaqsn 1 always aaqso 1 always aaqsp 1 always aaqsq 1 always aaqsr 1 always aaqss 1 always aaqst 1 always aaqsu 1 always aaqsv 1 always aaqsw 1 always aaqsx 1 always aaqsy 1 always aaqsz 1 always aaqta 1 always aaqtb 1 always aaqtc 1 always aaqtd 1 always aaqte 1 always aaqtf 1 always aaqtg 1 always aaqth 1 always aaqti 1 always aaqtj 1 always aaqtk 1 always aaqtl 1 always aaqtm 1 always aaqtn 1 always aaqto 1 always aaqtp 1 always aaqtq 1 always aaqtr 1 always aaqts 1 always aaqtt 1 always aaqtu 1 always aaqtv 1 always aaqtw 1 always aaqtx 1 always aaqty 1 always aaqtz 1 always aaqua 1 always aaqub 1 always aaquc 1 always aaqud 1 always aaque 1 always aaquf 1 always aaqug 1 always aaquh 1 always aaqui 1 always aaquj 1 always aaquk 1 always aaqul 1 always aaqum 1 always aaqun 1 always aaquo 1 always aaqup 1 always aaquq 1 always aaqur 1 always aaqus 1 always aaqut 1 always aaquu 1 always aaquv 1 always aaquw 1 always aaqux 1 always aaquy 1 always aaquz 1 always aaqva 1 always aaqvb 1 always aaqvc 1 always aaqvd 1 always aaqve 1 always aaqvf 1 always aaqvg 1 always aaqvh 1 always aaqvi 1 always aaqvj 1 always aaqvk 1 always aaqvl 1 always aaqvm 1 always aaqvn 1 always aaqvo 1 always aaqvp 1 always aaqvq 1 always aaqvr 1 always aaqvs 1 always aaqvt 1 always aaqvu 1 always aaqvv 1 always aaqvw 1 always aaqvx 1 always aaqvy 1 always aaqvz 1 always aaqwa 1 always aaqwb 1 always aaqwc 1 always aaqwd 1 always aaqwe 1 always aaqwf 1 always aaqwg 1 always aaqwh 1 always aaqwi 1 always aaqwj 1 always aaqwk 1 always aaqwl 1 always aaqwm 1 always aaqwn 1 always aaqwo 1 always aaqwp 1 always aaqwq 1 always aaqwr 1 always aaqws 1 always aaqwt 1 always aaqwu 1 always aaqwv 1 always aaqww 1 always aaqwx 1 always aaqwy 1 always aaqwz 1 always aaqxa 1 always aaqxb 1 always aaqxc 1 always aaqxd 1 always aaqxe 1 always aaqxf 1 always aaqxg 1 always aaqxh 1 always aaqxi 1 always aaqxj 1 always aaqxk 1 always aaqxl 1 always aaqxm 1 always aaqxn 1 always aaqxo 1 always aaqxp 1 always aaqxq 1 always aaqxr 1 always aaqxs 1 always aaqxt 1 always aaqxu 1 always aaqxv 1 always aaqxw 1 always aaqxx 1 always aaqxy 1 always aaqxz 1 always aaqya 1 always aaqyb 1 always aaqyc 1 always aaqyd 1 always aaqye 1 always aaqyf 1 always aaqyg 1 always aaqyh 1 always aaqyi 1 always aaqyj 1 always aaqyk 1 always aaqyl 1 always aaqym 1 always aaqyn 1 always aaqyo 1 always aaqyp 1 always aaqyq 1 always aaqyr 1 always aaqys 1 always aaqyt 1 always aaqyu 1 always aaqyv 1 always aaqyw 1 always aaqyx 1 always aaqyy 1 always aaqyz 1 always aaqza 1 always aaqzb 1 always aaqzc 1 always aaqzd 1 always aaqze 1 always aaqzf 1 always aaqzg 1 always aaqzh 1 always aaqzi 1 always aaqzj 1 always aaqzk 1 always aaqzl 1 always aaqzm 1 always aaqzn 1 always aaqzo 1 always aaqzp 1 always aaqzq 1 always aaqzr 1 always aaqzs 1 always aaqzt 1 always aaqzu 1 always aaqzv 1 always aaqzw 1 always aaqzx 1 always aaqzy 1 always aaqzz 1 always aaraa 1 always aarab 1 always aarac 1 always aarad 1 always aarae 1 always aaraf 1 always aarag 1 always aarah 1 always aarai 1 always aaraj 1 always aarak 1 always aaral 1 always aaram 1 always aaran 1 always aarao 1 always aarap 1 always aaraq 1 always aarar 1 always aaras 1 always aarat 1 always aarau 1 always aarav 1 always aaraw 1 always aarax 1 always aaray 1 always aaraz 1 always aarba 1 always aarbb 1 always aarbc 1 always aarbd 1 always aarbe 1 always aarbf 1 always aarbg 1 always aarbh 1 always aarbi 1 always aarbj 1 always aarbk 1 always aarbl 1 always aarbm 1 always aarbn 1 always aarbo 1 always aarbp 1 always aarbq 1 always aarbr 1 always aarbs 1 always aarbt 1 always aarbu 1 always aarbv 1 always aarbw 1 always aarbx 1 always aarby 1 always aarbz 1 always aarca 1 always aarcb 1 always aarcc 1 always aarcd 1 always aarce 1 always aarcf 1 always aarcg 1 always aarch 1 always aarci 1 always aarcj 1 always aarck 1 always aarcl 1 always aarcm 1 always aarcn 1 always aarco 1 always aarcp 1 always aarcq 1 always aarcr 1 always aarcs 1 always aarct 1 always aarcu 1 always aarcv 1 always aarcw 1 always aarcx 1 always aarcy 1 always aarcz 1 always aarda 1 always aardb 1 always aardc 1 always aardd 1 always aarde 1 always aardf 1 always aardg 1 always aardh 1 always aardi 1 always aardj 1 always aardk 1 always aardl 1 always aardm 1 always aardn 1 always aardo 1 always aardp 1 always aardq 1 always aardr 1 always aards 1 always aardt 1 always aardu 1 always aardv 1 always aardw 1 always aardx 1 always aardy 1 always aardz 1 always aarea 1 always aareb 1 always aarec 1 always aared 1 always aaree 1 always aaref 1 always aareg 1 always aareh 1 always aarei 1 always aarej 1 always aarek 1 always aarel 1 always aarem 1 always aaren 1 always aareo 1 always aarep 1 always aareq 1 always aarer 1 always aares 1 always aaret 1 always aareu 1 always aarev 1 always aarew 1 always aarex 1 always aarey 1 always aarez 1 always aarfa 1 always aarfb 1 always aarfc 1 always aarfd 1 always aarfe 1 always aarff 1 always aarfg 1 always aarfh 1 always aarfi 1 always aarfj 1 always aarfk 1 always aarfl 1 always aarfm 1 always aarfn 1 always aarfo 1 always aarfp 1 always aarfq 1 always aarfr 1 always aarfs 1 always aarft 1 always aarfu 1 always aarfv 1 always aarfw 1 always aarfx 1 always aarfy 1 always aarfz 1 always aarga 1 always aargb 1 always aargc 1 always aargd 1 always aarge 1 always aargf 1 always aargg 1 always aargh 1 always aargi 1 always aargj 1 always aargk 1 always aargl 1 always aargm 1 always aargn 1 always aargo 1 always aargp 1 always aargq 1 always aargr 1 always aargs 1 always aargt 1 always aargu 1 always aargv 1 always aargw 1 always aargx 1 always aargy 1 always aargz 1 always aarha 1 always aarhb 1 always aarhc 1 always aarhd 1 always aarhe 1 always aarhf 1 always aarhg 1 always aarhh 1 always aarhi 1 always aarhj 1 always aarhk 1 always aarhl 1 always aarhm 1 always aarhn 1 always aarho 1 always aarhp 1 always aarhq 1 always aarhr 1 always aarhs 1 always aarht 1 always aarhu 1 always aarhv 1 always aarhw 1 always aarhx 1 always aarhy 1 always aarhz 1 always aaria 1 always aarib 1 always aaric 1 always aarid 1 always aarie 1 always aarif 1 always aarig 1 always aarih 1 always aarii 1 always aarij 1 always aarik 1 always aaril 1 always aarim 1 always aarin 1 always aario 1 always aarip 1 always aariq 1 always aarir 1 always aaris 1 always aarit 1 always aariu 1 always aariv 1 always aariw 1 always aarix 1 always aariy 1 always aariz 1 always aarja 1 always aarjb 1 always aarjc 1 always aarjd 1 always aarje 1 always aarjf 1 always aarjg 1 always aarjh 1 always aarji 1 always aarjj 1 always aarjk 1 always aarjl 1 always aarjm 1 always aarjn 1 always aarjo 1 always aarjp 1 always aarjq 1 always aarjr 1 always aarjs 1 always aarjt 1 always aarju 1 always aarjv 1 always aarjw 1 always aarjx 1 always aarjy 1 always aarjz 1 always aarka 1 always aarkb 1 always aarkc 1 always aarkd 1 always aarke 1 always aarkf 1 always aarkg 1 always aarkh 1 always aarki 1 always aarkj 1 always aarkk 1 always aarkl 1 always aarkm 1 always aarkn 1 always aarko 1 always aarkp 1 always aarkq 1 always aarkr 1 always aarks 1 always aarkt 1 always aarku 1 always aarkv 1 always aarkw 1 always aarkx 1 always aarky 1 always aarkz 1 always aarla 1 always aarlb 1 always aarlc 1 always aarld 1 always aarle 1 always aarlf 1 always aarlg 1 always aarlh 1 always aarli 1 always aarlj 1 always aarlk 1 always aarll 1 always aarlm 1 always aarln 1 always aarlo 1 always aarlp 1 always aarlq 1 always aarlr 1 always aarls 1 always aarlt 1 always aarlu 1 always aarlv 1 always aarlw 1 always aarlx 1 always aarly 1 always aarlz 1 always aarma 1 always aarmb 1 always aarmc 1 always aarmd 1 always aarme 1 always aarmf 1 always aarmg 1 always aarmh 1 always aarmi 1 always aarmj 1 always aarmk 1 always aarml 1 always aarmm 1 always aarmn 1 always aarmo 1 always aarmp 1 always aarmq 1 always aarmr 1 always aarms 1 always aarmt 1 always aarmu 1 always aarmv 1 always aarmw 1 always aarmx 1 always aarmy 1 always aarmz 1 always aarna 1 always aarnb 1 always aarnc 1 always aarnd 1 always aarne 1 always aarnf 1 always aarng 1 always aarnh 1 always aarni 1 always aarnj 1 always aarnk 1 always aarnl 1 always aarnm 1 always aarnn 1 always aarno 1 always aarnp 1 always aarnq 1 always aarnr 1 always aarns 1 always aarnt 1 always aarnu 1 always aarnv 1 always aarnw 1 always aarnx 1 always aarny 1 always aarnz 1 always aaroa 1 always aarob 1 always aaroc 1 always aarod 1 always aaroe 1 always aarof 1 always aarog 1 always aaroh 1 always aaroi 1 always aaroj 1 always aarok 1 always aarol 1 always aarom 1 always aaron 1 always aaroo 1 always aarop 1 always aaroq 1 always aaror 1 always aaros 1 always aarot 1 always aarou 1 always aarov 1 always aarow 1 always aarox 1 always aaroy 1 always aaroz 1 always aarpa 1 always aarpb 1 always aarpc 1 always aarpd 1 always aarpe 1 always aarpf 1 always aarpg 1 always aarph 1 always aarpi 1 always aarpj 1 always aarpk 1 always aarpl 1 always aarpm 1 always aarpn 1 always aarpo 1 always aarpp 1 always aarpq 1 always aarpr 1 always aarps 1 always aarpt 1 always aarpu 1 always aarpv 1 always aarpw 1 always aarpx 1 always aarpy 1 always aarpz 1 always aarqa 1 always aarqb 1 always aarqc 1 always aarqd 1 always aarqe 1 always aarqf 1 always aarqg 1 always aarqh 1 always aarqi 1 always aarqj 1 always aarqk 1 always aarql 1 always aarqm 1 always aarqn 1 always aarqo 1 always aarqp 1 always aarqq 1 always aarqr 1 always aarqs 1 always aarqt 1 always aarqu 1 always aarqv 1 always aarqw 1 always aarqx 1 always aarqy 1 always aarqz 1 always aarra 1 always aarrb 1 always aarrc 1 always aarrd 1 always aarre 1 always aarrf 1 always aarrg 1 always aarrh 1 always aarri 1 always aarrj 1 always aarrk 1 always aarrl 1 always aarrm 1 always aarrn 1 always aarro 1 always aarrp 1 always aarrq 1 always aarrr 1 always aarrs 1 always aarrt 1 always aarru 1 always aarrv 1 always aarrw 1 always aarrx 1 always aarry 1 always aarrz 1 always aarsa 1 always aarsb 1 always aarsc 1 always aarsd 1 always aarse 1 always aarsf 1 always aarsg 1 always aarsh 1 always aarsi 1 always aarsj 1 always aarsk 1 always aarsl 1 always aarsm 1 always aarsn 1 always aarso 1 always aarsp 1 always aarsq 1 always aarsr 1 always aarss 1 always aarst 1 always aarsu 1 always aarsv 1 always aarsw 1 always aarsx 1 always aarsy 1 always aarsz 1 always aarta 1 always aartb 1 always aartc 1 always aartd 1 always aarte 1 always aartf 1 always aartg 1 always aarth 1 always aarti 1 always aartj 1 always aartk 1 always aartl 1 always aartm 1 always aartn 1 always aarto 1 always aartp 1 always aartq 1 always aartr 1 always aarts 1 always aartt 1 always aartu 1 always aartv 1 always aartw 1 always aartx 1 always aarty 1 always aartz 1 always aarua 1 always aarub 1 always aaruc 1 always aarud 1 always aarue 1 always aaruf 1 always aarug 1 always aaruh 1 always aarui 1 always aaruj 1 always aaruk 1 always aarul 1 always aarum 1 always aarun 1 always aaruo 1 always aarup 1 always aaruq 1 always aarur 1 always aarus 1 always aarut 1 always aaruu 1 always aaruv 1 always aaruw 1 always aarux 1 always aaruy 1 always aaruz 1 always aarva 1 always aarvb 1 always aarvc 1 always aarvd 1 always aarve 1 always aarvf 1 always aarvg 1 always aarvh 1 always aarvi 1 always aarvj 1 always aarvk 1 always aarvl 1 always aarvm 1 always aarvn 1 always aarvo 1 always aarvp 1 always aarvq 1 always aarvr 1 always aarvs 1 always aarvt 1 always aarvu 1 always aarvv 1 always aarvw 1 always aarvx 1 always aarvy 1 always aarvz 1 always aarwa 1 always aarwb 1 always aarwc 1 always aarwd 1 always aarwe 1 always aarwf 1 always aarwg 1 always aarwh 1 always aarwi 1 always aarwj 1 always aarwk 1 always aarwl 1 always aarwm 1 always aarwn 1 always aarwo 1 always aarwp 1 always aarwq 1 always aarwr 1 always aarws 1 always aarwt 1 always aarwu 1 always aarwv 1 always aarww 1 always aarwx 1 always aarwy 1 always aarwz 1 always aarxa 1 always aarxb 1 always aarxc 1 always aarxd 1 always aarxe 1 always aarxf 1 always aarxg 1 always aarxh 1 always aarxi 1 always aarxj 1 always aarxk 1 always aarxl 1 always aarxm 1 always aarxn 1 always aarxo 1 always aarxp 1 always aarxq 1 always aarxr 1 always aarxs 1 always aarxt 1 always aarxu 1 always aarxv 1 always aarxw 1 always aarxx 1 always aarxy 1 always aarxz 1 always aarya 1 always aaryb 1 always aaryc 1 always aaryd 1 always aarye 1 always aaryf 1 always aaryg 1 always aaryh 1 always aaryi 1 always aaryj 1 always aaryk 1 always aaryl 1 always aarym 1 always aaryn 1 always aaryo 1 always aaryp 1 always aaryq 1 always aaryr 1 always aarys 1 always aaryt 1 always aaryu 1 always aaryv 1 always aaryw 1 always aaryx 1 always aaryy 1 always aaryz 1 always aarza 1 always aarzb 1 always aarzc 1 always aarzd 1 always aarze 1 always aarzf 1 always aarzg 1 always aarzh 1 always aarzi 1 always aarzj 1 always aarzk 1 always aarzl 1 always aarzm 1 always aarzn 1 always aarzo 1 always aarzp 1 always aarzq 1 always aarzr 1 always aarzs 1 always aarzt 1 always aarzu 1 always aarzv 1 always aarzw 1 always aarzx 1 always aarzy 1 always aarzz 1 always aasaa 1 always aasab 1 always aasac 1 always aasad 1 always aasae 1 always aasaf 1 always aasag 1 always aasah 1 always aasai 1 always aasaj 1 always aasak 1 always aasal 1 always aasam 1 always aasan 1 always aasao 1 always aasap 1 always aasaq 1 always aasar 1 always aasas 1 always aasat 1 always aasau 1 always aasav 1 always aasaw 1 always aasax 1 always aasay 1 always aasaz 1 always aasba 1 always aasbb 1 always aasbc 1 always aasbd 1 always aasbe 1 always aasbf 1 always aasbg 1 always aasbh 1 always aasbi 1 always aasbj 1 always aasbk 1 always aasbl 1 always aasbm 1 always aasbn 1 always aasbo 1 always aasbp 1 always aasbq 1 always aasbr 1 always aasbs 1 always aasbt 1 always aasbu 1 always aasbv 1 always aasbw 1 always aasbx 1 always aasby 1 always aasbz 1 always aasca 1 always aascb 1 always aascc 1 always aascd 1 always aasce 1 always aascf 1 always aascg 1 always aasch 1 always aasci 1 always aascj 1 always aasck 1 always aascl 1 always aascm 1 always aascn 1 always aasco 1 always aascp 1 always aascq 1 always aascr 1 always aascs 1 always aasct 1 always aascu 1 always aascv 1 always aascw 1 always aascx 1 always aascy 1 always aascz 1 always aasda 1 always aasdb 1 always aasdc 1 always aasdd 1 always aasde 1 always aasdf 1 always aasdg 1 always aasdh 1 always aasdi 1 always aasdj 1 always aasdk 1 always aasdl 1 always aasdm 1 always aasdn 1 always aasdo 1 always aasdp 1 always aasdq 1 always aasdr 1 always aasds 1 always aasdt 1 always aasdu 1 always aasdv 1 always aasdw 1 always aasdx 1 always aasdy 1 always aasdz 1 always aasea 1 always aaseb 1 always aasec 1 always aased 1 always aasee 1 always aasef 1 always aaseg 1 always aaseh 1 always aasei 1 always aasej 1 always aasek 1 always aasel 1 always aasem 1 always aasen 1 always aaseo 1 always aasep 1 always aaseq 1 always aaser 1 always aases 1 always aaset 1 always aaseu 1 always aasev 1 always aasew 1 always aasex 1 always aasey 1 always aasez 1 always aasfa 1 always aasfb 1 always aasfc 1 always aasfd 1 always aasfe 1 always aasff 1 always aasfg 1 always aasfh 1 always aasfi 1 always aasfj 1 always aasfk 1 always aasfl 1 always aasfm 1 always aasfn 1 always aasfo 1 always aasfp 1 always aasfq 1 always aasfr 1 always aasfs 1 always aasft 1 always aasfu 1 always aasfv 1 always aasfw 1 always aasfx 1 always aasfy 1 always aasfz 1 always aasga 1 always aasgb 1 always aasgc 1 always aasgd 1 always aasge 1 always aasgf 1 always aasgg 1 always aasgh 1 always aasgi 1 always aasgj 1 always aasgk 1 always aasgl 1 always aasgm 1 always aasgn 1 always aasgo 1 always aasgp 1 always aasgq 1 always aasgr 1 always aasgs 1 always aasgt 1 always aasgu 1 always aasgv 1 always aasgw 1 always aasgx 1 always aasgy 1 always aasgz 1 always aasha 1 always aashb 1 always aashc 1 always aashd 1 always aashe 1 always aashf 1 always aashg 1 always aashh 1 always aashi 1 always aashj 1 always aashk 1 always aashl 1 always aashm 1 always aashn 1 always aasho 1 always aashp 1 always aashq 1 always aashr 1 always aashs 1 always aasht 1 always aashu 1 always aashv 1 always aashw 1 always aashx 1 always aashy 1 always aashz 1 always aasia 1 always aasib 1 always aasic 1 always aasid 1 always aasie 1 always aasif 1 always aasig 1 always aasih 1 always aasii 1 always aasij 1 always aasik 1 always aasil 1 always aasim 1 always aasin 1 always aasio 1 always aasip 1 always aasiq 1 always aasir 1 always aasis 1 always aasit 1 always aasiu 1 always aasiv 1 always aasiw 1 always aasix 1 always aasiy 1 always aasiz 1 always aasja 1 always aasjb 1 always aasjc 1 always aasjd 1 always aasje 1 always aasjf 1 always aasjg 1 always aasjh 1 always aasji 1 always aasjj 1 always aasjk 1 always aasjl 1 always aasjm 1 always aasjn 1 always aasjo 1 always aasjp 1 always aasjq 1 always aasjr 1 always aasjs 1 always aasjt 1 always aasju 1 always aasjv 1 always aasjw 1 always aasjx 1 always aasjy 1 always aasjz 1 always aaska 1 always aaskb 1 always aaskc 1 always aaskd 1 always aaske 1 always aaskf 1 always aaskg 1 always aaskh 1 always aaski 1 always aaskj 1 always aaskk 1 always aaskl 1 always aaskm 1 always aaskn 1 always aasko 1 always aaskp 1 always aaskq 1 always aaskr 1 always aasks 1 always aaskt 1 always aasku 1 always aaskv 1 always aaskw 1 always aaskx 1 always aasky 1 always aaskz 1 always aasla 1 always aaslb 1 always aaslc 1 always aasld 1 always aasle 1 always aaslf 1 always aaslg 1 always aaslh 1 always aasli 1 always aaslj 1 always aaslk 1 always aasll 1 always aaslm 1 always aasln 1 always aaslo 1 always aaslp 1 always aaslq 1 always aaslr 1 always aasls 1 always aaslt 1 always aaslu 1 always aaslv 1 always aaslw 1 always aaslx 1 always aasly 1 always aaslz 1 always aasma 1 always aasmb 1 always aasmc 1 always aasmd 1 always aasme 1 always aasmf 1 always aasmg 1 always aasmh 1 always aasmi 1 always aasmj 1 always aasmk 1 always aasml 1 always aasmm 1 always aasmn 1 always aasmo 1 always aasmp 1 always aasmq 1 always aasmr 1 always aasms 1 always aasmt 1 always aasmu 1 always aasmv 1 always aasmw 1 always aasmx 1 always aasmy 1 always aasmz 1 always aasna 1 always aasnb 1 always aasnc 1 always aasnd 1 always aasne 1 always aasnf 1 always aasng 1 always aasnh 1 always aasni 1 always aasnj 1 always aasnk 1 always aasnl 1 always aasnm 1 always aasnn 1 always aasno 1 always aasnp 1 always aasnq 1 always aasnr 1 always aasns 1 always aasnt 1 always aasnu 1 always aasnv 1 always aasnw 1 always aasnx 1 always aasny 1 always aasnz 1 always aasoa 1 always aasob 1 always aasoc 1 always aasod 1 always aasoe 1 always aasof 1 always aasog 1 always aasoh 1 always aasoi 1 always aasoj 1 always aasok 1 always aasol 1 always aasom 1 always aason 1 always aasoo 1 always aasop 1 always aasoq 1 always aasor 1 always aasos 1 always aasot 1 always aasou 1 always aasov 1 always aasow 1 always aasox 1 always aasoy 1 always aasoz 1 always aaspa 1 always aaspb 1 always aaspc 1 always aaspd 1 always aaspe 1 always aaspf 1 always aaspg 1 always aasph 1 always aaspi 1 always aaspj 1 always aaspk 1 always aaspl 1 always aaspm 1 always aaspn 1 always aaspo 1 always aaspp 1 always aaspq 1 always aaspr 1 always aasps 1 always aaspt 1 always aaspu 1 always aaspv 1 always aaspw 1 always aaspx 1 always aaspy 1 always aaspz 1 always aasqa 1 always aasqb 1 always aasqc 1 always aasqd 1 always aasqe 1 always aasqf 1 always aasqg 1 always aasqh 1 always aasqi 1 always aasqj 1 always aasqk 1 always aasql 1 always aasqm 1 always aasqn 1 always aasqo 1 always aasqp 1 always aasqq 1 always aasqr 1 always aasqs 1 always aasqt 1 always aasqu 1 always aasqv 1 always aasqw 1 always aasqx 1 always aasqy 1 always aasqz 1 always aasra 1 always aasrb 1 always aasrc 1 always aasrd 1 always aasre 1 always aasrf 1 always aasrg 1 always aasrh 1 always aasri 1 always aasrj 1 always aasrk 1 always aasrl 1 always aasrm 1 always aasrn 1 always aasro 1 always aasrp 1 always aasrq 1 always aasrr 1 always aasrs 1 always aasrt 1 always aasru 1 always aasrv 1 always aasrw 1 always aasrx 1 always aasry 1 always aasrz 1 always aassa 1 always aassb 1 always aassc 1 always aassd 1 always aasse 1 always aassf 1 always aassg 1 always aassh 1 always aassi 1 always aassj 1 always aassk 1 always aassl 1 always aassm 1 always aassn 1 always aasso 1 always aassp 1 always aassq 1 always aassr 1 always aasss 1 always aasst 1 always aassu 1 always aassv 1 always aassw 1 always aassx 1 always aassy 1 always aassz 1 always aasta 1 always aastb 1 always aastc 1 always aastd 1 always aaste 1 always aastf 1 always aastg 1 always aasth 1 always aasti 1 always aastj 1 always aastk 1 always aastl 1 always aastm 1 always aastn 1 always aasto 1 always aastp 1 always aastq 1 always aastr 1 always aasts 1 always aastt 1 always aastu 1 always aastv 1 always aastw 1 always aastx 1 always aasty 1 always aastz 1 always aasua 1 always aasub 1 always aasuc 1 always aasud 1 always aasue 1 always aasuf 1 always aasug 1 always aasuh 1 always aasui 1 always aasuj 1 always aasuk 1 always aasul 1 always aasum 1 always aasun 1 always aasuo 1 always aasup 1 always aasuq 1 always aasur 1 always aasus 1 always aasut 1 always aasuu 1 always aasuv 1 always aasuw 1 always aasux 1 always aasuy 1 always aasuz 1 always aasva 1 always aasvb 1 always aasvc 1 always aasvd 1 always aasve 1 always aasvf 1 always aasvg 1 always aasvh 1 always aasvi 1 always aasvj 1 always aasvk 1 always aasvl 1 always aasvm 1 always aasvn 1 always aasvo 1 always aasvp 1 always aasvq 1 always aasvr 1 always aasvs 1 always aasvt 1 always aasvu 1 always aasvv 1 always aasvw 1 always aasvx 1 always aasvy 1 always aasvz 1 always aaswa 1 always aaswb 1 always aaswc 1 always aaswd 1 always aaswe 1 always aaswf 1 always aaswg 1 always aaswh 1 always aaswi 1 always aaswj 1 always aaswk 1 always aaswl 1 always aaswm 1 always aaswn 1 always aaswo 1 always aaswp 1 always aaswq 1 always aaswr 1 always aasws 1 always aaswt 1 always aaswu 1 always aaswv 1 always aasww 1 always aaswx 1 always aaswy 1 always aaswz 1 always aasxa 1 always aasxb 1 always aasxc 1 always aasxd 1 always aasxe 1 always aasxf 1 always aasxg 1 always aasxh 1 always aasxi 1 always aasxj 1 always aasxk 1 always aasxl 1 always aasxm 1 always aasxn 1 always aasxo 1 always aasxp 1 always aasxq 1 always aasxr 1 always aasxs 1 always aasxt 1 always aasxu 1 always aasxv 1 always aasxw 1 always aasxx 1 always aasxy 1 always aasxz 1 always aasya 1 always aasyb 1 always aasyc 1 always aasyd 1 always aasye 1 always aasyf 1 always aasyg 1 always aasyh 1 always aasyi 1 always aasyj 1 always aasyk 1 always aasyl 1 always aasym 1 always aasyn 1 always aasyo 1 always aasyp 1 always aasyq 1 always aasyr 1 always aasys 1 always aasyt 1 always aasyu 1 always aasyv 1 always aasyw 1 always aasyx 1 always aasyy 1 always aasyz 1 always aasza 1 always aaszb 1 always aaszc 1 always aaszd 1 always aasze 1 always aaszf 1 always aaszg 1 always aaszh 1 always aaszi 1 always aaszj 1 always aaszk 1 always aaszl 1 always aaszm 1 always aaszn 1 always aaszo 1 always aaszp 1 always aaszq 1 always aaszr 1 always aaszs 1 always aaszt 1 always aaszu 1 always aaszv 1 always aaszw 1 always aaszx 1 always aaszy 1 always aaszz 1 always aataa 1 always aatab 1 always aatac 1 always aatad 1 always aatae 1 always aataf 1 always aatag 1 always aatah 1 always aatai 1 always aataj 1 always aatak 1 always aatal 1 always aatam 1 always aatan 1 always aatao 1 always aatap 1 always aataq 1 always aatar 1 always aatas 1 always aatat 1 always aatau 1 always aatav 1 always aataw 1 always aatax 1 always aatay 1 always aataz 1 always aatba 1 always aatbb 1 always aatbc 1 always aatbd 1 always aatbe 1 always aatbf 1 always aatbg 1 always aatbh 1 always aatbi 1 always aatbj 1 always aatbk 1 always aatbl 1 always aatbm 1 always aatbn 1 always aatbo 1 always aatbp 1 always aatbq 1 always aatbr 1 always aatbs 1 always aatbt 1 always aatbu 1 always aatbv 1 always aatbw 1 always aatbx 1 always aatby 1 always aatbz 1 always aatca 1 always aatcb 1 always aatcc 1 always aatcd 1 always aatce 1 always aatcf 1 always aatcg 1 always aatch 1 always aatci 1 always aatcj 1 always aatck 1 always aatcl 1 always aatcm 1 always aatcn 1 always aatco 1 always aatcp 1 always aatcq 1 always aatcr 1 always aatcs 1 always aatct 1 always aatcu 1 always aatcv 1 always aatcw 1 always aatcx 1 always aatcy 1 always aatcz 1 always aatda 1 always aatdb 1 always aatdc 1 always aatdd 1 always aatde 1 always aatdf 1 always aatdg 1 always aatdh 1 always aatdi 1 always aatdj 1 always aatdk 1 always aatdl 1 always aatdm 1 always aatdn 1 always aatdo 1 always aatdp 1 always aatdq 1 always aatdr 1 always aatds 1 always aatdt 1 always aatdu 1 always aatdv 1 always aatdw 1 always aatdx 1 always aatdy 1 always aatdz 1 always aatea 1 always aateb 1 always aatec 1 always aated 1 always aatee 1 always aatef 1 always aateg 1 always aateh 1 always aatei 1 always aatej 1 always aatek 1 always aatel 1 always aatem 1 always aaten 1 always aateo 1 always aatep 1 always aateq 1 always aater 1 always aates 1 always aatet 1 always aateu 1 always aatev 1 always aatew 1 always aatex 1 always aatey 1 always aatez 1 always aatfa 1 always aatfb 1 always aatfc 1 always aatfd 1 always aatfe 1 always aatff 1 always aatfg 1 always aatfh 1 always aatfi 1 always aatfj 1 always aatfk 1 always aatfl 1 always aatfm 1 always aatfn 1 always aatfo 1 always aatfp 1 always aatfq 1 always aatfr 1 always aatfs 1 always aatft 1 always aatfu 1 always aatfv 1 always aatfw 1 always aatfx 1 always aatfy 1 always aatfz 1 always aatga 1 always aatgb 1 always aatgc 1 always aatgd 1 always aatge 1 always aatgf 1 always aatgg 1 always aatgh 1 always aatgi 1 always aatgj 1 always aatgk 1 always aatgl 1 always aatgm 1 always aatgn 1 always aatgo 1 always aatgp 1 always aatgq 1 always aatgr 1 always aatgs 1 always aatgt 1 always aatgu 1 always aatgv 1 always aatgw 1 always aatgx 1 always aatgy 1 always aatgz 1 always aatha 1 always aathb 1 always aathc 1 always aathd 1 always aathe 1 always aathf 1 always aathg 1 always aathh 1 always aathi 1 always aathj 1 always aathk 1 always aathl 1 always aathm 1 always aathn 1 always aatho 1 always aathp 1 always aathq 1 always aathr 1 always aaths 1 always aatht 1 always aathu 1 always aathv 1 always aathw 1 always aathx 1 always aathy 1 always aathz 1 always aatia 1 always aatib 1 always aatic 1 always aatid 1 always aatie 1 always aatif 1 always aatig 1 always aatih 1 always aatii 1 always aatij 1 always aatik 1 always aatil 1 always aatim 1 always aatin 1 always aatio 1 always aatip 1 always aatiq 1 always aatir 1 always aatis 1 always aatit 1 always aatiu 1 always aativ 1 always aatiw 1 always aatix 1 always aatiy 1 always aatiz 1 always aatja 1 always aatjb 1 always aatjc 1 always aatjd 1 always aatje 1 always aatjf 1 always aatjg 1 always aatjh 1 always aatji 1 always aatjj 1 always aatjk 1 always aatjl 1 always aatjm 1 always aatjn 1 always aatjo 1 always aatjp 1 always aatjq 1 always aatjr 1 always aatjs 1 always aatjt 1 always aatju 1 always aatjv 1 always aatjw 1 always aatjx 1 always aatjy 1 always aatjz 1 always aatka 1 always aatkb 1 always aatkc 1 always aatkd 1 always aatke 1 always aatkf 1 always aatkg 1 always aatkh 1 always aatki 1 always aatkj 1 always aatkk 1 always aatkl 1 always aatkm 1 always aatkn 1 always aatko 1 always aatkp 1 always aatkq 1 always aatkr 1 always aatks 1 always aatkt 1 always aatku 1 always aatkv 1 always aatkw 1 always aatkx 1 always aatky 1 always aatkz 1 always aatla 1 always aatlb 1 always aatlc 1 always aatld 1 always aatle 1 always aatlf 1 always aatlg 1 always aatlh 1 always aatli 1 always aatlj 1 always aatlk 1 always aatll 1 always aatlm 1 always aatln 1 always aatlo 1 always aatlp 1 always aatlq 1 always aatlr 1 always aatls 1 always aatlt 1 always aatlu 1 always aatlv 1 always aatlw 1 always aatlx 1 always aatly 1 always aatlz 1 always aatma 1 always aatmb 1 always aatmc 1 always aatmd 1 always aatme 1 always aatmf 1 always aatmg 1 always aatmh 1 always aatmi 1 always aatmj 1 always aatmk 1 always aatml 1 always aatmm 1 always aatmn 1 always aatmo 1 always aatmp 1 always aatmq 1 always aatmr 1 always aatms 1 always aatmt 1 always aatmu 1 always aatmv 1 always aatmw 1 always aatmx 1 always aatmy 1 always aatmz 1 always aatna 1 always aatnb 1 always aatnc 1 always aatnd 1 always aatne 1 always aatnf 1 always aatng 1 always aatnh 1 always aatni 1 always aatnj 1 always aatnk 1 always aatnl 1 always aatnm 1 always aatnn 1 always aatno 1 always aatnp 1 always aatnq 1 always aatnr 1 always aatns 1 always aatnt 1 always aatnu 1 always aatnv 1 always aatnw 1 always aatnx 1 always aatny 1 always aatnz 1 always aatoa 1 always aatob 1 always aatoc 1 always aatod 1 always aatoe 1 always aatof 1 always aatog 1 always aatoh 1 always aatoi 1 always aatoj 1 always aatok 1 always aatol 1 always aatom 1 always aaton 1 always aatoo 1 always aatop 1 always aatoq 1 always aator 1 always aatos 1 always aatot 1 always aatou 1 always aatov 1 always aatow 1 always aatox 1 always aatoy 1 always aatoz 1 always aatpa 1 always aatpb 1 always aatpc 1 always aatpd 1 always aatpe 1 always aatpf 1 always aatpg 1 always aatph 1 always aatpi 1 always aatpj 1 always aatpk 1 always aatpl 1 always aatpm 1 always aatpn 1 always aatpo 1 always aatpp 1 always aatpq 1 always aatpr 1 always aatps 1 always aatpt 1 always aatpu 1 always aatpv 1 always aatpw 1 always aatpx 1 always aatpy 1 always aatpz 1 always aatqa 1 always aatqb 1 always aatqc 1 always aatqd 1 always aatqe 1 always aatqf 1 always aatqg 1 always aatqh 1 always aatqi 1 always aatqj 1 always aatqk 1 always aatql 1 always aatqm 1 always aatqn 1 always aatqo 1 always aatqp 1 always aatqq 1 always aatqr 1 always aatqs 1 always aatqt 1 always aatqu 1 always aatqv 1 always aatqw 1 always aatqx 1 always aatqy 1 always aatqz 1 always aatra 1 always aatrb 1 always aatrc 1 always aatrd 1 always aatre 1 always aatrf 1 always aatrg 1 always aatrh 1 always aatri 1 always aatrj 1 always aatrk 1 always aatrl 1 always aatrm 1 always aatrn 1 always aatro 1 always aatrp 1 always aatrq 1 always aatrr 1 always aatrs 1 always aatrt 1 always aatru 1 always aatrv 1 always aatrw 1 always aatrx 1 always aatry 1 always aatrz 1 always aatsa 1 always aatsb 1 always aatsc 1 always aatsd 1 always aatse 1 always aatsf 1 always aatsg 1 always aatsh 1 always aatsi 1 always aatsj 1 always aatsk 1 always aatsl 1 always aatsm 1 always aatsn 1 always aatso 1 always aatsp 1 always aatsq 1 always aatsr 1 always aatss 1 always aatst 1 always aatsu 1 always aatsv 1 always aatsw 1 always aatsx 1 always aatsy 1 always aatsz 1 always aatta 1 always aattb 1 always aattc 1 always aattd 1 always aatte 1 always aattf 1 always aattg 1 always aatth 1 always aatti 1 always aattj 1 always aattk 1 always aattl 1 always aattm 1 always aattn 1 always aatto 1 always aattp 1 always aattq 1 always aattr 1 always aatts 1 always aattt 1 always aattu 1 always aattv 1 always aattw 1 always aattx 1 always aatty 1 always aattz 1 always aatua 1 always aatub 1 always aatuc 1 always aatud 1 always aatue 1 always aatuf 1 always aatug 1 always aatuh 1 always aatui 1 always aatuj 1 always aatuk 1 always aatul 1 always aatum 1 always aatun 1 always aatuo 1 always aatup 1 always aatuq 1 always aatur 1 always aatus 1 always aatut 1 always aatuu 1 always aatuv 1 always aatuw 1 always aatux 1 always aatuy 1 always aatuz 1 always aatva 1 always aatvb 1 always aatvc 1 always aatvd 1 always aatve 1 always aatvf 1 always aatvg 1 always aatvh 1 always aatvi 1 always aatvj 1 always aatvk 1 always aatvl 1 always aatvm 1 always aatvn 1 always aatvo 1 always aatvp 1 always aatvq 1 always aatvr 1 always aatvs 1 always aatvt 1 always aatvu 1 always aatvv 1 always aatvw 1 always aatvx 1 always aatvy 1 always aatvz 1 always aatwa 1 always aatwb 1 always aatwc 1 always aatwd 1 always aatwe 1 always aatwf 1 always aatwg 1 always aatwh 1 always aatwi 1 always aatwj 1 always aatwk 1 always aatwl 1 always aatwm 1 always aatwn 1 always aatwo 1 always aatwp 1 always aatwq 1 always aatwr 1 always aatws 1 always aatwt 1 always aatwu 1 always aatwv 1 always aatww 1 always aatwx 1 always aatwy 1 always aatwz 1 always aatxa 1 always aatxb 1 always aatxc 1 always aatxd 1 always aatxe 1 always aatxf 1 always aatxg 1 always aatxh 1 always aatxi 1 always aatxj 1 always aatxk 1 always aatxl 1 always aatxm 1 always aatxn 1 always aatxo 1 always aatxp 1 always aatxq 1 always aatxr 1 always aatxs 1 always aatxt 1 always aatxu 1 always aatxv 1 always aatxw 1 always aatxx 1 always aatxy 1 always aatxz 1 always aatya 1 always aatyb 1 always aatyc 1 always aatyd 1 always aatye 1 always aatyf 1 always aatyg 1 always aatyh 1 always aatyi 1 always aatyj 1 always aatyk 1 always aatyl 1 always aatym 1 always aatyn 1 always aatyo 1 always aatyp 1 always aatyq 1 always aatyr 1 always aatys 1 always aatyt 1 always aatyu 1 always aatyv 1 always aatyw 1 always aatyx 1 always aatyy 1 always aatyz 1 always aatza 1 always aatzb 1 always aatzc 1 always aatzd 1 always aatze 1 always aatzf 1 always aatzg 1 always aatzh 1 always aatzi 1 always aatzj 1 always aatzk 1 always aatzl 1 always aatzm 1 always aatzn 1 always aatzo 1 always aatzp 1 always aatzq 1 always aatzr 1 always aatzs 1 always aatzt 1 always aatzu 1 always aatzv 1 always aatzw 1 always aatzx 1 always aatzy 1 always aatzz 1 always aauaa 1 always aauab 1 always aauac 1 always aauad 1 always aauae 1 always aauaf 1 always aauag 1 always aauah 1 always aauai 1 always aauaj 1 always aauak 1 always aaual 1 always aauam 1 always aauan 1 always aauao 1 always aauap 1 always aauaq 1 always aauar 1 always aauas 1 always aauat 1 always aauau 1 always aauav 1 always aauaw 1 always aauax 1 always aauay 1 always aauaz 1 always aauba 1 always aaubb 1 always aaubc 1 always aaubd 1 always aaube 1 always aaubf 1 always aaubg 1 always aaubh 1 always aaubi 1 always aaubj 1 always aaubk 1 always aaubl 1 always aaubm 1 always aaubn 1 always aaubo 1 always aaubp 1 always aaubq 1 always aaubr 1 always aaubs 1 always aaubt 1 always aaubu 1 always aaubv 1 always aaubw 1 always aaubx 1 always aauby 1 always aaubz 1 always aauca 1 always aaucb 1 always aaucc 1 always aaucd 1 always aauce 1 always aaucf 1 always aaucg 1 always aauch 1 always aauci 1 always aaucj 1 always aauck 1 always aaucl 1 always aaucm 1 always aaucn 1 always aauco 1 always aaucp 1 always aaucq 1 always aaucr 1 always aaucs 1 always aauct 1 always aaucu 1 always aaucv 1 always aaucw 1 always aaucx 1 always aaucy 1 always aaucz 1 always aauda 1 always aaudb 1 always aaudc 1 always aaudd 1 always aaude 1 always aaudf 1 always aaudg 1 always aaudh 1 always aaudi 1 always aaudj 1 always aaudk 1 always aaudl 1 always aaudm 1 always aaudn 1 always aaudo 1 always aaudp 1 always aaudq 1 always aaudr 1 always aauds 1 always aaudt 1 always aaudu 1 always aaudv 1 always aaudw 1 always aaudx 1 always aaudy 1 always aaudz 1 always aauea 1 always aaueb 1 always aauec 1 always aaued 1 always aauee 1 always aauef 1 always aaueg 1 always aaueh 1 always aauei 1 always aauej 1 always aauek 1 always aauel 1 always aauem 1 always aauen 1 always aaueo 1 always aauep 1 always aaueq 1 always aauer 1 always aaues 1 always aauet 1 always aaueu 1 always aauev 1 always aauew 1 always aauex 1 always aauey 1 always aauez 1 always aaufa 1 always aaufb 1 always aaufc 1 always aaufd 1 always aaufe 1 always aauff 1 always aaufg 1 always aaufh 1 always aaufi 1 always aaufj 1 always aaufk 1 always aaufl 1 always aaufm 1 always aaufn 1 always aaufo 1 always aaufp 1 always aaufq 1 always aaufr 1 always aaufs 1 always aauft 1 always aaufu 1 always aaufv 1 always aaufw 1 always aaufx 1 always aaufy 1 always aaufz 1 always aauga 1 always aaugb 1 always aaugc 1 always aaugd 1 always aauge 1 always aaugf 1 always aaugg 1 always aaugh 1 always aaugi 1 always aaugj 1 always aaugk 1 always aaugl 1 always aaugm 1 always aaugn 1 always aaugo 1 always aaugp 1 always aaugq 1 always aaugr 1 always aaugs 1 always aaugt 1 always aaugu 1 always aaugv 1 always aaugw 1 always aaugx 1 always aaugy 1 always aaugz 1 always aauha 1 always aauhb 1 always aauhc 1 always aauhd 1 always aauhe 1 always aauhf 1 always aauhg 1 always aauhh 1 always aauhi 1 always aauhj 1 always aauhk 1 always aauhl 1 always aauhm 1 always aauhn 1 always aauho 1 always aauhp 1 always aauhq 1 always aauhr 1 always aauhs 1 always aauht 1 always aauhu 1 always aauhv 1 always aauhw 1 always aauhx 1 always aauhy 1 always aauhz 1 always aauia 1 always aauib 1 always aauic 1 always aauid 1 always aauie 1 always aauif 1 always aauig 1 always aauih 1 always aauii 1 always aauij 1 always aauik 1 always aauil 1 always aauim 1 always aauin 1 always aauio 1 always aauip 1 always aauiq 1 always aauir 1 always aauis 1 always aauit 1 always aauiu 1 always aauiv 1 always aauiw 1 always aauix 1 always aauiy 1 always aauiz 1 always aauja 1 always aaujb 1 always aaujc 1 always aaujd 1 always aauje 1 always aaujf 1 always aaujg 1 always aaujh 1 always aauji 1 always aaujj 1 always aaujk 1 always aaujl 1 always aaujm 1 always aaujn 1 always aaujo 1 always aaujp 1 always aaujq 1 always aaujr 1 always aaujs 1 always aaujt 1 always aauju 1 always aaujv 1 always aaujw 1 always aaujx 1 always aaujy 1 always aaujz 1 always aauka 1 always aaukb 1 always aaukc 1 always aaukd 1 always aauke 1 always aaukf 1 always aaukg 1 always aaukh 1 always aauki 1 always aaukj 1 always aaukk 1 always aaukl 1 always aaukm 1 always aaukn 1 always aauko 1 always aaukp 1 always aaukq 1 always aaukr 1 always aauks 1 always aaukt 1 always aauku 1 always aaukv 1 always aaukw 1 always aaukx 1 always aauky 1 always aaukz 1 always aaula 1 always aaulb 1 always aaulc 1 always aauld 1 always aaule 1 always aaulf 1 always aaulg 1 always aaulh 1 always aauli 1 always aaulj 1 always aaulk 1 always aaull 1 always aaulm 1 always aauln 1 always aaulo 1 always aaulp 1 always aaulq 1 always aaulr 1 always aauls 1 always aault 1 always aaulu 1 always aaulv 1 always aaulw 1 always aaulx 1 always aauly 1 always aaulz 1 always aauma 1 always aaumb 1 always aaumc 1 always aaumd 1 always aaume 1 always aaumf 1 always aaumg 1 always aaumh 1 always aaumi 1 always aaumj 1 always aaumk 1 always aauml 1 always aaumm 1 always aaumn 1 always aaumo 1 always aaump 1 always aaumq 1 always aaumr 1 always aaums 1 always aaumt 1 always aaumu 1 always aaumv 1 always aaumw 1 always aaumx 1 always aaumy 1 always aaumz 1 always aauna 1 always aaunb 1 always aaunc 1 always aaund 1 always aaune 1 always aaunf 1 always aaung 1 always aaunh 1 always aauni 1 always aaunj 1 always aaunk 1 always aaunl 1 always aaunm 1 always aaunn 1 always aauno 1 always aaunp 1 always aaunq 1 always aaunr 1 always aauns 1 always aaunt 1 always aaunu 1 always aaunv 1 always aaunw 1 always aaunx 1 always aauny 1 always aaunz 1 always aauoa 1 always aauob 1 always aauoc 1 always aauod 1 always aauoe 1 always aauof 1 always aauog 1 always aauoh 1 always aauoi 1 always aauoj 1 always aauok 1 always aauol 1 always aauom 1 always aauon 1 always aauoo 1 always aauop 1 always aauoq 1 always aauor 1 always aauos 1 always aauot 1 always aauou 1 always aauov 1 always aauow 1 always aauox 1 always aauoy 1 always aauoz 1 always aaupa 1 always aaupb 1 always aaupc 1 always aaupd 1 always aaupe 1 always aaupf 1 always aaupg 1 always aauph 1 always aaupi 1 always aaupj 1 always aaupk 1 always aaupl 1 always aaupm 1 always aaupn 1 always aaupo 1 always aaupp 1 always aaupq 1 always aaupr 1 always aaups 1 always aaupt 1 always aaupu 1 always aaupv 1 always aaupw 1 always aaupx 1 always aaupy 1 always aaupz 1 always aauqa 1 always aauqb 1 always aauqc 1 always aauqd 1 always aauqe 1 always aauqf 1 always aauqg 1 always aauqh 1 always aauqi 1 always aauqj 1 always aauqk 1 always aauql 1 always aauqm 1 always aauqn 1 always aauqo 1 always aauqp 1 always aauqq 1 always aauqr 1 always aauqs 1 always aauqt 1 always aauqu 1 always aauqv 1 always aauqw 1 always aauqx 1 always aauqy 1 always aauqz 1 always aaura 1 always aaurb 1 always aaurc 1 always aaurd 1 always aaure 1 always aaurf 1 always aaurg 1 always aaurh 1 always aauri 1 always aaurj 1 always aaurk 1 always aaurl 1 always aaurm 1 always aaurn 1 always aauro 1 always aaurp 1 always aaurq 1 always aaurr 1 always aaurs 1 always aaurt 1 always aauru 1 always aaurv 1 always aaurw 1 always aaurx 1 always aaury 1 always aaurz 1 always aausa 1 always aausb 1 always aausc 1 always aausd 1 always aause 1 always aausf 1 always aausg 1 always aaush 1 always aausi 1 always aausj 1 always aausk 1 always aausl 1 always aausm 1 always aausn 1 always aauso 1 always aausp 1 always aausq 1 always aausr 1 always aauss 1 always aaust 1 always aausu 1 always aausv 1 always aausw 1 always aausx 1 always aausy 1 always aausz 1 always aauta 1 always aautb 1 always aautc 1 always aautd 1 always aaute 1 always aautf 1 always aautg 1 always aauth 1 always aauti 1 always aautj 1 always aautk 1 always aautl 1 always aautm 1 always aautn 1 always aauto 1 always aautp 1 always aautq 1 always aautr 1 always aauts 1 always aautt 1 always aautu 1 always aautv 1 always aautw 1 always aautx 1 always aauty 1 always aautz 1 always aauua 1 always aauub 1 always aauuc 1 always aauud 1 always aauue 1 always aauuf 1 always aauug 1 always aauuh 1 always aauui 1 always aauuj 1 always aauuk 1 always aauul 1 always aauum 1 always aauun 1 always aauuo 1 always aauup 1 always aauuq 1 always aauur 1 always aauus 1 always aauut 1 always aauuu 1 always aauuv 1 always aauuw 1 always aauux 1 always aauuy 1 always aauuz 1 always aauva 1 always aauvb 1 always aauvc 1 always aauvd 1 always aauve 1 always aauvf 1 always aauvg 1 always aauvh 1 always aauvi 1 always aauvj 1 always aauvk 1 always aauvl 1 always aauvm 1 always aauvn 1 always aauvo 1 always aauvp 1 always aauvq 1 always aauvr 1 always aauvs 1 always aauvt 1 always aauvu 1 always aauvv 1 always aauvw 1 always aauvx 1 always aauvy 1 always aauvz 1 always aauwa 1 always aauwb 1 always aauwc 1 always aauwd 1 always aauwe 1 always aauwf 1 always aauwg 1 always aauwh 1 always aauwi 1 always aauwj 1 always aauwk 1 always aauwl 1 always aauwm 1 always aauwn 1 always aauwo 1 always aauwp 1 always aauwq 1 always aauwr 1 always aauws 1 always aauwt 1 always aauwu 1 always aauwv 1 always aauww 1 always aauwx 1 always aauwy 1 always aauwz 1 always aauxa 1 always aauxb 1 always aauxc 1 always aauxd 1 always aauxe 1 always aauxf 1 always aauxg 1 always aauxh 1 always aauxi 1 always aauxj 1 always aauxk 1 always aauxl 1 always aauxm 1 always aauxn 1 always aauxo 1 always aauxp 1 always aauxq 1 always aauxr 1 always aauxs 1 always aauxt 1 always aauxu 1 always aauxv 1 always aauxw 1 always aauxx 1 always aauxy 1 always aauxz 1 always aauya 1 always aauyb 1 always aauyc 1 always aauyd 1 always aauye 1 always aauyf 1 always aauyg 1 always aauyh 1 always aauyi 1 always aauyj 1 always aauyk 1 always aauyl 1 always aauym 1 always aauyn 1 always aauyo 1 always aauyp 1 always aauyq 1 always aauyr 1 always aauys 1 always aauyt 1 always aauyu 1 always aauyv 1 always aauyw 1 always aauyx 1 always aauyy 1 always aauyz 1 always aauza 1 always aauzb 1 always aauzc 1 always aauzd 1 always aauze 1 always aauzf 1 always aauzg 1 always aauzh 1 always aauzi 1 always aauzj 1 always aauzk 1 always aauzl 1 always aauzm 1 always aauzn 1 always aauzo 1 always aauzp 1 always aauzq 1 always aauzr 1 always aauzs 1 always aauzt 1 always aauzu 1 always aauzv 1 always aauzw 1 always aauzx 1 always aauzy 1 always aauzz 1 always aavaa 1 always aavab 1 always aavac 1 always aavad 1 always aavae 1 always aavaf 1 always aavag 1 always aavah 1 always aavai 1 always aavaj 1 always aavak 1 always aaval 1 always aavam 1 always aavan 1 always aavao 1 always aavap 1 always aavaq 1 always aavar 1 always aavas 1 always aavat 1 always aavau 1 always aavav 1 always aavaw 1 always aavax 1 always aavay 1 always aavaz 1 always aavba 1 always aavbb 1 always aavbc 1 always aavbd 1 always aavbe 1 always aavbf 1 always aavbg 1 always aavbh 1 always aavbi 1 always aavbj 1 always aavbk 1 always aavbl 1 always aavbm 1 always aavbn 1 always aavbo 1 always aavbp 1 always aavbq 1 always aavbr 1 always aavbs 1 always aavbt 1 always aavbu 1 always aavbv 1 always aavbw 1 always aavbx 1 always aavby 1 always aavbz 1 always aavca 1 always aavcb 1 always aavcc 1 always aavcd 1 always aavce 1 always aavcf 1 always aavcg 1 always aavch 1 always aavci 1 always aavcj 1 always aavck 1 always aavcl 1 always aavcm 1 always aavcn 1 always aavco 1 always aavcp 1 always aavcq 1 always aavcr 1 always aavcs 1 always aavct 1 always aavcu 1 always aavcv 1 always aavcw 1 always aavcx 1 always aavcy 1 always aavcz 1 always aavda 1 always aavdb 1 always aavdc 1 always aavdd 1 always aavde 1 always aavdf 1 always aavdg 1 always aavdh 1 always aavdi 1 always aavdj 1 always aavdk 1 always aavdl 1 always aavdm 1 always aavdn 1 always aavdo 1 always aavdp 1 always aavdq 1 always aavdr 1 always aavds 1 always aavdt 1 always aavdu 1 always aavdv 1 always aavdw 1 always aavdx 1 always aavdy 1 always aavdz 1 always aavea 1 always aaveb 1 always aavec 1 always aaved 1 always aavee 1 always aavef 1 always aaveg 1 always aaveh 1 always aavei 1 always aavej 1 always aavek 1 always aavel 1 always aavem 1 always aaven 1 always aaveo 1 always aavep 1 always aaveq 1 always aaver 1 always aaves 1 always aavet 1 always aaveu 1 always aavev 1 always aavew 1 always aavex 1 always aavey 1 always aavez 1 always aavfa 1 always aavfb 1 always aavfc 1 always aavfd 1 always aavfe 1 always aavff 1 always aavfg 1 always aavfh 1 always aavfi 1 always aavfj 1 always aavfk 1 always aavfl 1 always aavfm 1 always aavfn 1 always aavfo 1 always aavfp 1 always aavfq 1 always aavfr 1 always aavfs 1 always aavft 1 always aavfu 1 always aavfv 1 always aavfw 1 always aavfx 1 always aavfy 1 always aavfz 1 always aavga 1 always aavgb 1 always aavgc 1 always aavgd 1 always aavge 1 always aavgf 1 always aavgg 1 always aavgh 1 always aavgi 1 always aavgj 1 always aavgk 1 always aavgl 1 always aavgm 1 always aavgn 1 always aavgo 1 always aavgp 1 always aavgq 1 always aavgr 1 always aavgs 1 always aavgt 1 always aavgu 1 always aavgv 1 always aavgw 1 always aavgx 1 always aavgy 1 always aavgz 1 always aavha 1 always aavhb 1 always aavhc 1 always aavhd 1 always aavhe 1 always aavhf 1 always aavhg 1 always aavhh 1 always aavhi 1 always aavhj 1 always aavhk 1 always aavhl 1 always aavhm 1 always aavhn 1 always aavho 1 always aavhp 1 always aavhq 1 always aavhr 1 always aavhs 1 always aavht 1 always aavhu 1 always aavhv 1 always aavhw 1 always aavhx 1 always aavhy 1 always aavhz 1 always aavia 1 always aavib 1 always aavic 1 always aavid 1 always aavie 1 always aavif 1 always aavig 1 always aavih 1 always aavii 1 always aavij 1 always aavik 1 always aavil 1 always aavim 1 always aavin 1 always aavio 1 always aavip 1 always aaviq 1 always aavir 1 always aavis 1 always aavit 1 always aaviu 1 always aaviv 1 always aaviw 1 always aavix 1 always aaviy 1 always aaviz 1 always aavja 1 always aavjb 1 always aavjc 1 always aavjd 1 always aavje 1 always aavjf 1 always aavjg 1 always aavjh 1 always aavji 1 always aavjj 1 always aavjk 1 always aavjl 1 always aavjm 1 always aavjn 1 always aavjo 1 always aavjp 1 always aavjq 1 always aavjr 1 always aavjs 1 always aavjt 1 always aavju 1 always aavjv 1 always aavjw 1 always aavjx 1 always aavjy 1 always aavjz 1 always aavka 1 always aavkb 1 always aavkc 1 always aavkd 1 always aavke 1 always aavkf 1 always aavkg 1 always aavkh 1 always aavki 1 always aavkj 1 always aavkk 1 always aavkl 1 always aavkm 1 always aavkn 1 always aavko 1 always aavkp 1 always aavkq 1 always aavkr 1 always aavks 1 always aavkt 1 always aavku 1 always aavkv 1 always aavkw 1 always aavkx 1 always aavky 1 always aavkz 1 always aavla 1 always aavlb 1 always aavlc 1 always aavld 1 always aavle 1 always aavlf 1 always aavlg 1 always aavlh 1 always aavli 1 always aavlj 1 always aavlk 1 always aavll 1 always aavlm 1 always aavln 1 always aavlo 1 always aavlp 1 always aavlq 1 always aavlr 1 always aavls 1 always aavlt 1 always aavlu 1 always aavlv 1 always aavlw 1 always aavlx 1 always aavly 1 always aavlz 1 always aavma 1 always aavmb 1 always aavmc 1 always aavmd 1 always aavme 1 always aavmf 1 always aavmg 1 always aavmh 1 always aavmi 1 always aavmj 1 always aavmk 1 always aavml 1 always aavmm 1 always aavmn 1 always aavmo 1 always aavmp 1 always aavmq 1 always aavmr 1 always aavms 1 always aavmt 1 always aavmu 1 always aavmv 1 always aavmw 1 always aavmx 1 always aavmy 1 always aavmz 1 always aavna 1 always aavnb 1 always aavnc 1 always aavnd 1 always aavne 1 always aavnf 1 always aavng 1 always aavnh 1 always aavni 1 always aavnj 1 always aavnk 1 always aavnl 1 always aavnm 1 always aavnn 1 always aavno 1 always aavnp 1 always aavnq 1 always aavnr 1 always aavns 1 always aavnt 1 always aavnu 1 always aavnv 1 always aavnw 1 always aavnx 1 always aavny 1 always aavnz 1 always aavoa 1 always aavob 1 always aavoc 1 always aavod 1 always aavoe 1 always aavof 1 always aavog 1 always aavoh 1 always aavoi 1 always aavoj 1 always aavok 1 always aavol 1 always aavom 1 always aavon 1 always aavoo 1 always aavop 1 always aavoq 1 always aavor 1 always aavos 1 always aavot 1 always aavou 1 always aavov 1 always aavow 1 always aavox 1 always aavoy 1 always aavoz 1 always aavpa 1 always aavpb 1 always aavpc 1 always aavpd 1 always aavpe 1 always aavpf 1 always aavpg 1 always aavph 1 always aavpi 1 always aavpj 1 always aavpk 1 always aavpl 1 always aavpm 1 always aavpn 1 always aavpo 1 always aavpp 1 always aavpq 1 always aavpr 1 always aavps 1 always aavpt 1 always aavpu 1 always aavpv 1 always aavpw 1 always aavpx 1 always aavpy 1 always aavpz 1 always aavqa 1 always aavqb 1 always aavqc 1 always aavqd 1 always aavqe 1 always aavqf 1 always aavqg 1 always aavqh 1 always aavqi 1 always aavqj 1 always aavqk 1 always aavql 1 always aavqm 1 always aavqn 1 always aavqo 1 always aavqp 1 always aavqq 1 always aavqr 1 always aavqs 1 always aavqt 1 always aavqu 1 always aavqv 1 always aavqw 1 always aavqx 1 always aavqy 1 always aavqz 1 always aavra 1 always aavrb 1 always aavrc 1 always aavrd 1 always aavre 1 always aavrf 1 always aavrg 1 always aavrh 1 always aavri 1 always aavrj 1 always aavrk 1 always aavrl 1 always aavrm 1 always aavrn 1 always aavro 1 always aavrp 1 always aavrq 1 always aavrr 1 always aavrs 1 always aavrt 1 always aavru 1 always aavrv 1 always aavrw 1 always aavrx 1 always aavry 1 always aavrz 1 always aavsa 1 always aavsb 1 always aavsc 1 always aavsd 1 always aavse 1 always aavsf 1 always aavsg 1 always aavsh 1 always aavsi 1 always aavsj 1 always aavsk 1 always aavsl 1 always aavsm 1 always aavsn 1 always aavso 1 always aavsp 1 always aavsq 1 always aavsr 1 always aavss 1 always aavst 1 always aavsu 1 always aavsv 1 always aavsw 1 always aavsx 1 always aavsy 1 always aavsz 1 always aavta 1 always aavtb 1 always aavtc 1 always aavtd 1 always aavte 1 always aavtf 1 always aavtg 1 always aavth 1 always aavti 1 always aavtj 1 always aavtk 1 always aavtl 1 always aavtm 1 always aavtn 1 always aavto 1 always aavtp 1 always aavtq 1 always aavtr 1 always aavts 1 always aavtt 1 always aavtu 1 always aavtv 1 always aavtw 1 always aavtx 1 always aavty 1 always aavtz 1 always aavua 1 always aavub 1 always aavuc 1 always aavud 1 always aavue 1 always aavuf 1 always aavug 1 always aavuh 1 always aavui 1 always aavuj 1 always aavuk 1 always aavul 1 always aavum 1 always aavun 1 always aavuo 1 always aavup 1 always aavuq 1 always aavur 1 always aavus 1 always aavut 1 always aavuu 1 always aavuv 1 always aavuw 1 always aavux 1 always aavuy 1 always aavuz 1 always aavva 1 always aavvb 1 always aavvc 1 always aavvd 1 always aavve 1 always aavvf 1 always aavvg 1 always aavvh 1 always aavvi 1 always aavvj 1 always aavvk 1 always aavvl 1 always aavvm 1 always aavvn 1 always aavvo 1 always aavvp 1 always aavvq 1 always aavvr 1 always aavvs 1 always aavvt 1 always aavvu 1 always aavvv 1 always aavvw 1 always aavvx 1 always aavvy 1 always aavvz 1 always aavwa 1 always aavwb 1 always aavwc 1 always aavwd 1 always aavwe 1 always aavwf 1 always aavwg 1 always aavwh 1 always aavwi 1 always aavwj 1 always aavwk 1 always aavwl 1 always aavwm 1 always aavwn 1 always aavwo 1 always aavwp 1 always aavwq 1 always aavwr 1 always aavws 1 always aavwt 1 always aavwu 1 always aavwv 1 always aavww 1 always aavwx 1 always aavwy 1 always aavwz 1 always aavxa 1 always aavxb 1 always aavxc 1 always aavxd 1 always aavxe 1 always aavxf 1 always aavxg 1 always aavxh 1 always aavxi 1 always aavxj 1 always aavxk 1 always aavxl 1 always aavxm 1 always aavxn 1 always aavxo 1 always aavxp 1 always aavxq 1 always aavxr 1 always aavxs 1 always aavxt 1 always aavxu 1 always aavxv 1 always aavxw 1 always aavxx 1 always aavxy 1 always aavxz 1 always aavya 1 always aavyb 1 always aavyc 1 always aavyd 1 always aavye 1 always aavyf 1 always aavyg 1 always aavyh 1 always aavyi 1 always aavyj 1 always aavyk 1 always aavyl 1 always aavym 1 always aavyn 1 always aavyo 1 always aavyp 1 always aavyq 1 always aavyr 1 always aavys 1 always aavyt 1 always aavyu 1 always aavyv 1 always aavyw 1 always aavyx 1 always aavyy 1 always aavyz 1 always aavza 1 always aavzb 1 always aavzc 1 always aavzd 1 always aavze 1 always aavzf 1 always aavzg 1 always aavzh 1 always aavzi 1 always aavzj 1 always aavzk 1 always aavzl 1 always aavzm 1 always aavzn 1 always aavzo 1 always aavzp 1 always aavzq 1 always aavzr 1 always aavzs 1 always aavzt 1 always aavzu 1 always aavzv 1 always aavzw 1 always aavzx 1 always aavzy 1 always aavzz 1 always aawaa 1 always aawab 1 always aawac 1 always aawad 1 always aawae 1 always aawaf 1 always aawag 1 always aawah 1 always aawai 1 always aawaj 1 always aawak 1 always aawal 1 always aawam 1 always aawan 1 always aawao 1 always aawap 1 always aawaq 1 always aawar 1 always aawas 1 always aawat 1 always aawau 1 always aawav 1 always aawaw 1 always aawax 1 always aaway 1 always aawaz 1 always aawba 1 always aawbb 1 always aawbc 1 always aawbd 1 always aawbe 1 always aawbf 1 always aawbg 1 always aawbh 1 always aawbi 1 always aawbj 1 always aawbk 1 always aawbl 1 always aawbm 1 always aawbn 1 always aawbo 1 always aawbp 1 always aawbq 1 always aawbr 1 always aawbs 1 always aawbt 1 always aawbu 1 always aawbv 1 always aawbw 1 always aawbx 1 always aawby 1 always aawbz 1 always aawca 1 always aawcb 1 always aawcc 1 always aawcd 1 always aawce 1 always aawcf 1 always aawcg 1 always aawch 1 always aawci 1 always aawcj 1 always aawck 1 always aawcl 1 always aawcm 1 always aawcn 1 always aawco 1 always aawcp 1 always aawcq 1 always aawcr 1 always aawcs 1 always aawct 1 always aawcu 1 always aawcv 1 always aawcw 1 always aawcx 1 always aawcy 1 always aawcz 1 always aawda 1 always aawdb 1 always aawdc 1 always aawdd 1 always aawde 1 always aawdf 1 always aawdg 1 always aawdh 1 always aawdi 1 always aawdj 1 always aawdk 1 always aawdl 1 always aawdm 1 always aawdn 1 always aawdo 1 always aawdp 1 always aawdq 1 always aawdr 1 always aawds 1 always aawdt 1 always aawdu 1 always aawdv 1 always aawdw 1 always aawdx 1 always aawdy 1 always aawdz 1 always aawea 1 always aaweb 1 always aawec 1 always aawed 1 always aawee 1 always aawef 1 always aaweg 1 always aaweh 1 always aawei 1 always aawej 1 always aawek 1 always aawel 1 always aawem 1 always aawen 1 always aaweo 1 always aawep 1 always aaweq 1 always aawer 1 always aawes 1 always aawet 1 always aaweu 1 always aawev 1 always aawew 1 always aawex 1 always aawey 1 always aawez 1 always aawfa 1 always aawfb 1 always aawfc 1 always aawfd 1 always aawfe 1 always aawff 1 always aawfg 1 always aawfh 1 always aawfi 1 always aawfj 1 always aawfk 1 always aawfl 1 always aawfm 1 always aawfn 1 always aawfo 1 always aawfp 1 always aawfq 1 always aawfr 1 always aawfs 1 always aawft 1 always aawfu 1 always aawfv 1 always aawfw 1 always aawfx 1 always aawfy 1 always aawfz 1 always aawga 1 always aawgb 1 always aawgc 1 always aawgd 1 always aawge 1 always aawgf 1 always aawgg 1 always aawgh 1 always aawgi 1 always aawgj 1 always aawgk 1 always aawgl 1 always aawgm 1 always aawgn 1 always aawgo 1 always aawgp 1 always aawgq 1 always aawgr 1 always aawgs 1 always aawgt 1 always aawgu 1 always aawgv 1 always aawgw 1 always aawgx 1 always aawgy 1 always aawgz 1 always aawha 1 always aawhb 1 always aawhc 1 always aawhd 1 always aawhe 1 always aawhf 1 always aawhg 1 always aawhh 1 always aawhi 1 always aawhj 1 always aawhk 1 always aawhl 1 always aawhm 1 always aawhn 1 always aawho 1 always aawhp 1 always aawhq 1 always aawhr 1 always aawhs 1 always aawht 1 always aawhu 1 always aawhv 1 always aawhw 1 always aawhx 1 always aawhy 1 always aawhz 1 always aawia 1 always aawib 1 always aawic 1 always aawid 1 always aawie 1 always aawif 1 always aawig 1 always aawih 1 always aawii 1 always aawij 1 always aawik 1 always aawil 1 always aawim 1 always aawin 1 always aawio 1 always aawip 1 always aawiq 1 always aawir 1 always aawis 1 always aawit 1 always aawiu 1 always aawiv 1 always aawiw 1 always aawix 1 always aawiy 1 always aawiz 1 always aawja 1 always aawjb 1 always aawjc 1 always aawjd 1 always aawje 1 always aawjf 1 always aawjg 1 always aawjh 1 always aawji 1 always aawjj 1 always aawjk 1 always aawjl 1 always aawjm 1 always aawjn 1 always aawjo 1 always aawjp 1 always aawjq 1 always aawjr 1 always aawjs 1 always aawjt 1 always aawju 1 always aawjv 1 always aawjw 1 always aawjx 1 always aawjy 1 always aawjz 1 always aawka 1 always aawkb 1 always aawkc 1 always aawkd 1 always aawke 1 always aawkf 1 always aawkg 1 always aawkh 1 always aawki 1 always aawkj 1 always aawkk 1 always aawkl 1 always aawkm 1 always aawkn 1 always aawko 1 always aawkp 1 always aawkq 1 always aawkr 1 always aawks 1 always aawkt 1 always aawku 1 always aawkv 1 always aawkw 1 always aawkx 1 always aawky 1 always aawkz 1 always aawla 1 always aawlb 1 always aawlc 1 always aawld 1 always aawle 1 always aawlf 1 always aawlg 1 always aawlh 1 always aawli 1 always aawlj 1 always aawlk 1 always aawll 1 always aawlm 1 always aawln 1 always aawlo 1 always aawlp 1 always aawlq 1 always aawlr 1 always aawls 1 always aawlt 1 always aawlu 1 always aawlv 1 always aawlw 1 always aawlx 1 always aawly 1 always aawlz 1 always aawma 1 always aawmb 1 always aawmc 1 always aawmd 1 always aawme 1 always aawmf 1 always aawmg 1 always aawmh 1 always aawmi 1 always aawmj 1 always aawmk 1 always aawml 1 always aawmm 1 always aawmn 1 always aawmo 1 always aawmp 1 always aawmq 1 always aawmr 1 always aawms 1 always aawmt 1 always aawmu 1 always aawmv 1 always aawmw 1 always aawmx 1 always aawmy 1 always aawmz 1 always aawna 1 always aawnb 1 always aawnc 1 always aawnd 1 always aawne 1 always aawnf 1 always aawng 1 always aawnh 1 always aawni 1 always aawnj 1 always aawnk 1 always aawnl 1 always aawnm 1 always aawnn 1 always aawno 1 always aawnp 1 always aawnq 1 always aawnr 1 always aawns 1 always aawnt 1 always aawnu 1 always aawnv 1 always aawnw 1 always aawnx 1 always aawny 1 always aawnz 1 always aawoa 1 always aawob 1 always aawoc 1 always aawod 1 always aawoe 1 always aawof 1 always aawog 1 always aawoh 1 always aawoi 1 always aawoj 1 always aawok 1 always aawol 1 always aawom 1 always aawon 1 always aawoo 1 always aawop 1 always aawoq 1 always aawor 1 always aawos 1 always aawot 1 always aawou 1 always aawov 1 always aawow 1 always aawox 1 always aawoy 1 always aawoz 1 always aawpa 1 always aawpb 1 always aawpc 1 always aawpd 1 always aawpe 1 always aawpf 1 always aawpg 1 always aawph 1 always aawpi 1 always aawpj 1 always aawpk 1 always aawpl 1 always aawpm 1 always aawpn 1 always aawpo 1 always aawpp 1 always aawpq 1 always aawpr 1 always aawps 1 always aawpt 1 always aawpu 1 always aawpv 1 always aawpw 1 always aawpx 1 always aawpy 1 always aawpz 1 always aawqa 1 always aawqb 1 always aawqc 1 always aawqd 1 always aawqe 1 always aawqf 1 always aawqg 1 always aawqh 1 always aawqi 1 always aawqj 1 always aawqk 1 always aawql 1 always aawqm 1 always aawqn 1 always aawqo 1 always aawqp 1 always aawqq 1 always aawqr 1 always aawqs 1 always aawqt 1 always aawqu 1 always aawqv 1 always aawqw 1 always aawqx 1 always aawqy 1 always aawqz 1 always aawra 1 always aawrb 1 always aawrc 1 always aawrd 1 always aawre 1 always aawrf 1 always aawrg 1 always aawrh 1 always aawri 1 always aawrj 1 always aawrk 1 always aawrl 1 always aawrm 1 always aawrn 1 always aawro 1 always aawrp 1 always aawrq 1 always aawrr 1 always aawrs 1 always aawrt 1 always aawru 1 always aawrv 1 always aawrw 1 always aawrx 1 always aawry 1 always aawrz 1 always aawsa 1 always aawsb 1 always aawsc 1 always aawsd 1 always aawse 1 always aawsf 1 always aawsg 1 always aawsh 1 always aawsi 1 always aawsj 1 always aawsk 1 always aawsl 1 always aawsm 1 always aawsn 1 always aawso 1 always aawsp 1 always aawsq 1 always aawsr 1 always aawss 1 always aawst 1 always aawsu 1 always aawsv 1 always aawsw 1 always aawsx 1 always aawsy 1 always aawsz 1 always aawta 1 always aawtb 1 always aawtc 1 always aawtd 1 always aawte 1 always aawtf 1 always aawtg 1 always aawth 1 always aawti 1 always aawtj 1 always aawtk 1 always aawtl 1 always aawtm 1 always aawtn 1 always aawto 1 always aawtp 1 always aawtq 1 always aawtr 1 always aawts 1 always aawtt 1 always aawtu 1 always aawtv 1 always aawtw 1 always aawtx 1 always aawty 1 always aawtz 1 always aawua 1 always aawub 1 always aawuc 1 always aawud 1 always aawue 1 always aawuf 1 always aawug 1 always aawuh 1 always aawui 1 always aawuj 1 always aawuk 1 always aawul 1 always aawum 1 always aawun 1 always aawuo 1 always aawup 1 always aawuq 1 always aawur 1 always aawus 1 always aawut 1 always aawuu 1 always aawuv 1 always aawuw 1 always aawux 1 always aawuy 1 always aawuz 1 always aawva 1 always aawvb 1 always aawvc 1 always aawvd 1 always aawve 1 always aawvf 1 always aawvg 1 always aawvh 1 always aawvi 1 always aawvj 1 always aawvk 1 always aawvl 1 always aawvm 1 always aawvn 1 always aawvo 1 always aawvp 1 always aawvq 1 always aawvr 1 always aawvs 1 always aawvt 1 always aawvu 1 always aawvv 1 always aawvw 1 always aawvx 1 always aawvy 1 always aawvz 1 always aawwa 1 always aawwb 1 always aawwc 1 always aawwd 1 always aawwe 1 always aawwf 1 always aawwg 1 always aawwh 1 always aawwi 1 always aawwj 1 always aawwk 1 always aawwl 1 always aawwm 1 always aawwn 1 always aawwo 1 always aawwp 1 always aawwq 1 always aawwr 1 always aawws 1 always aawwt 1 always aawwu 1 always aawwv 1 always aawww 1 always aawwx 1 always aawwy 1 always aawwz 1 always aawxa 1 always aawxb 1 always aawxc 1 always aawxd 1 always aawxe 1 always aawxf 1 always aawxg 1 always aawxh 1 always aawxi 1 always aawxj 1 always aawxk 1 always aawxl 1 always aawxm 1 always aawxn 1 always aawxo 1 always aawxp 1 always aawxq 1 always aawxr 1 always aawxs 1 always aawxt 1 always aawxu 1 always aawxv 1 always aawxw 1 always aawxx 1 always aawxy 1 always aawxz 1 always aawya 1 always aawyb 1 always aawyc 1 always aawyd 1 always aawye 1 always aawyf 1 always aawyg 1 always aawyh 1 always aawyi 1 always aawyj 1 always aawyk 1 always aawyl 1 always aawym 1 always aawyn 1 always aawyo 1 always aawyp 1 always aawyq 1 always aawyr 1 always aawys 1 always aawyt 1 always aawyu 1 always aawyv 1 always aawyw 1 always aawyx 1 always aawyy 1 always aawyz 1 always aawza 1 always aawzb 1 always aawzc 1 always aawzd 1 always aawze 1 always aawzf 1 always aawzg 1 always aawzh 1 always aawzi 1 always aawzj 1 always aawzk 1 always aawzl 1 always aawzm 1 always aawzn 1 always aawzo 1 always aawzp 1 always aawzq 1 always aawzr 1 always aawzs 1 always aawzt 1 always aawzu 1 always aawzv 1 always aawzw 1 always aawzx 1 always aawzy 1 always aawzz 1 always aaxaa 1 always aaxab 1 always aaxac 1 always aaxad 1 always aaxae 1 always aaxaf 1 always aaxag 1 always aaxah 1 always aaxai 1 always aaxaj 1 always aaxak 1 always aaxal 1 always aaxam 1 always aaxan 1 always aaxao 1 always aaxap 1 always aaxaq 1 always aaxar 1 always aaxas 1 always aaxat 1 always aaxau 1 always aaxav 1 always aaxaw 1 always aaxax 1 always aaxay 1 always aaxaz 1 always aaxba 1 always aaxbb 1 always aaxbc 1 always aaxbd 1 always aaxbe 1 always aaxbf 1 always aaxbg 1 always aaxbh 1 always aaxbi 1 always aaxbj 1 always aaxbk 1 always aaxbl 1 always aaxbm 1 always aaxbn 1 always aaxbo 1 always aaxbp 1 always aaxbq 1 always aaxbr 1 always aaxbs 1 always aaxbt 1 always aaxbu 1 always aaxbv 1 always aaxbw 1 always aaxbx 1 always aaxby 1 always aaxbz 1 always aaxca 1 always aaxcb 1 always aaxcc 1 always aaxcd 1 always aaxce 1 always aaxcf 1 always aaxcg 1 always aaxch 1 always aaxci 1 always aaxcj 1 always aaxck 1 always aaxcl 1 always aaxcm 1 always aaxcn 1 always aaxco 1 always aaxcp 1 always aaxcq 1 always aaxcr 1 always aaxcs 1 always aaxct 1 always aaxcu 1 always aaxcv 1 always aaxcw 1 always aaxcx 1 always aaxcy 1 always aaxcz 1 always aaxda 1 always aaxdb 1 always aaxdc 1 always aaxdd 1 always aaxde 1 always aaxdf 1 always aaxdg 1 always aaxdh 1 always aaxdi 1 always aaxdj 1 always aaxdk 1 always aaxdl 1 always aaxdm 1 always aaxdn 1 always aaxdo 1 always aaxdp 1 always aaxdq 1 always aaxdr 1 always aaxds 1 always aaxdt 1 always aaxdu 1 always aaxdv 1 always aaxdw 1 always aaxdx 1 always aaxdy 1 always aaxdz 1 always aaxea 1 always aaxeb 1 always aaxec 1 always aaxed 1 always aaxee 1 always aaxef 1 always aaxeg 1 always aaxeh 1 always aaxei 1 always aaxej 1 always aaxek 1 always aaxel 1 always aaxem 1 always aaxen 1 always aaxeo 1 always aaxep 1 always aaxeq 1 always aaxer 1 always aaxes 1 always aaxet 1 always aaxeu 1 always aaxev 1 always aaxew 1 always aaxex 1 always aaxey 1 always aaxez 1 always aaxfa 1 always aaxfb 1 always aaxfc 1 always aaxfd 1 always aaxfe 1 always aaxff 1 always aaxfg 1 always aaxfh 1 always aaxfi 1 always aaxfj 1 always aaxfk 1 always aaxfl 1 always aaxfm 1 always aaxfn 1 always aaxfo 1 always aaxfp 1 always aaxfq 1 always aaxfr 1 always aaxfs 1 always aaxft 1 always aaxfu 1 always aaxfv 1 always aaxfw 1 always aaxfx 1 always aaxfy 1 always aaxfz 1 always aaxga 1 always aaxgb 1 always aaxgc 1 always aaxgd 1 always aaxge 1 always aaxgf 1 always aaxgg 1 always aaxgh 1 always aaxgi 1 always aaxgj 1 always aaxgk 1 always aaxgl 1 always aaxgm 1 always aaxgn 1 always aaxgo 1 always aaxgp 1 always aaxgq 1 always aaxgr 1 always aaxgs 1 always aaxgt 1 always aaxgu 1 always aaxgv 1 always aaxgw 1 always aaxgx 1 always aaxgy 1 always aaxgz 1 always aaxha 1 always aaxhb 1 always aaxhc 1 always aaxhd 1 always aaxhe 1 always aaxhf 1 always aaxhg 1 always aaxhh 1 always aaxhi 1 always aaxhj 1 always aaxhk 1 always aaxhl 1 always aaxhm 1 always aaxhn 1 always aaxho 1 always aaxhp 1 always aaxhq 1 always aaxhr 1 always aaxhs 1 always aaxht 1 always aaxhu 1 always aaxhv 1 always aaxhw 1 always aaxhx 1 always aaxhy 1 always aaxhz 1 always aaxia 1 always aaxib 1 always aaxic 1 always aaxid 1 always aaxie 1 always aaxif 1 always aaxig 1 always aaxih 1 always aaxii 1 always aaxij 1 always aaxik 1 always aaxil 1 always aaxim 1 always aaxin 1 always aaxio 1 always aaxip 1 always aaxiq 1 always aaxir 1 always aaxis 1 always aaxit 1 always aaxiu 1 always aaxiv 1 always aaxiw 1 always aaxix 1 always aaxiy 1 always aaxiz 1 always aaxja 1 always aaxjb 1 always aaxjc 1 always aaxjd 1 always aaxje 1 always aaxjf 1 always aaxjg 1 always aaxjh 1 always aaxji 1 always aaxjj 1 always aaxjk 1 always aaxjl 1 always aaxjm 1 always aaxjn 1 always aaxjo 1 always aaxjp 1 always aaxjq 1 always aaxjr 1 always aaxjs 1 always aaxjt 1 always aaxju 1 always aaxjv 1 always aaxjw 1 always aaxjx 1 always aaxjy 1 always aaxjz 1 always aaxka 1 always aaxkb 1 always aaxkc 1 always aaxkd 1 always aaxke 1 always aaxkf 1 always aaxkg 1 always aaxkh 1 always aaxki 1 always aaxkj 1 always aaxkk 1 always aaxkl 1 always aaxkm 1 always aaxkn 1 always aaxko 1 always aaxkp 1 always aaxkq 1 always aaxkr 1 always aaxks 1 always aaxkt 1 always aaxku 1 always aaxkv 1 always aaxkw 1 always aaxkx 1 always aaxky 1 always aaxkz 1 always aaxla 1 always aaxlb 1 always aaxlc 1 always aaxld 1 always aaxle 1 always aaxlf 1 always aaxlg 1 always aaxlh 1 always aaxli 1 always aaxlj 1 always aaxlk 1 always aaxll 1 always aaxlm 1 always aaxln 1 always aaxlo 1 always aaxlp 1 always aaxlq 1 always aaxlr 1 always aaxls 1 always aaxlt 1 always aaxlu 1 always aaxlv 1 always aaxlw 1 always aaxlx 1 always aaxly 1 always aaxlz 1 always aaxma 1 always aaxmb 1 always aaxmc 1 always aaxmd 1 always aaxme 1 always aaxmf 1 always aaxmg 1 always aaxmh 1 always aaxmi 1 always aaxmj 1 always aaxmk 1 always aaxml 1 always aaxmm 1 always aaxmn 1 always aaxmo 1 always aaxmp 1 always aaxmq 1 always aaxmr 1 always aaxms 1 always aaxmt 1 always aaxmu 1 always aaxmv 1 always aaxmw 1 always aaxmx 1 always aaxmy 1 always aaxmz 1 always aaxna 1 always aaxnb 1 always aaxnc 1 always aaxnd 1 always aaxne 1 always aaxnf 1 always aaxng 1 always aaxnh 1 always aaxni 1 always aaxnj 1 always aaxnk 1 always aaxnl 1 always aaxnm 1 always aaxnn 1 always aaxno 1 always aaxnp 1 always aaxnq 1 always aaxnr 1 always aaxns 1 always aaxnt 1 always aaxnu 1 always aaxnv 1 always aaxnw 1 always aaxnx 1 always aaxny 1 always aaxnz 1 always aaxoa 1 always aaxob 1 always aaxoc 1 always aaxod 1 always aaxoe 1 always aaxof 1 always aaxog 1 always aaxoh 1 always aaxoi 1 always aaxoj 1 always aaxok 1 always aaxol 1 always aaxom 1 always aaxon 1 always aaxoo 1 always aaxop 1 always aaxoq 1 always aaxor 1 always aaxos 1 always aaxot 1 always aaxou 1 always aaxov 1 always aaxow 1 always aaxox 1 always aaxoy 1 always aaxoz 1 always aaxpa 1 always aaxpb 1 always aaxpc 1 always aaxpd 1 always aaxpe 1 always aaxpf 1 always aaxpg 1 always aaxph 1 always aaxpi 1 always aaxpj 1 always aaxpk 1 always aaxpl 1 always aaxpm 1 always aaxpn 1 always aaxpo 1 always aaxpp 1 always aaxpq 1 always aaxpr 1 always aaxps 1 always aaxpt 1 always aaxpu 1 always aaxpv 1 always aaxpw 1 always aaxpx 1 always aaxpy 1 always aaxpz 1 always aaxqa 1 always aaxqb 1 always aaxqc 1 always aaxqd 1 always aaxqe 1 always aaxqf 1 always aaxqg 1 always aaxqh 1 always aaxqi 1 always aaxqj 1 always aaxqk 1 always aaxql 1 always aaxqm 1 always aaxqn 1 always aaxqo 1 always aaxqp 1 always aaxqq 1 always aaxqr 1 always aaxqs 1 always aaxqt 1 always aaxqu 1 always aaxqv 1 always aaxqw 1 always aaxqx 1 always aaxqy 1 always aaxqz 1 always aaxra 1 always aaxrb 1 always aaxrc 1 always aaxrd 1 always aaxre 1 always aaxrf 1 always aaxrg 1 always aaxrh 1 always aaxri 1 always aaxrj 1 always aaxrk 1 always aaxrl 1 always aaxrm 1 always aaxrn 1 always aaxro 1 always aaxrp 1 always aaxrq 1 always aaxrr 1 always aaxrs 1 always aaxrt 1 always aaxru 1 always aaxrv 1 always aaxrw 1 always aaxrx 1 always aaxry 1 always aaxrz 1 always aaxsa 1 always aaxsb 1 always aaxsc 1 always aaxsd 1 always aaxse 1 always aaxsf 1 always aaxsg 1 always aaxsh 1 always aaxsi 1 always aaxsj 1 always aaxsk 1 always aaxsl 1 always aaxsm 1 always aaxsn 1 always aaxso 1 always aaxsp 1 always aaxsq 1 always aaxsr 1 always aaxss 1 always aaxst 1 always aaxsu 1 always aaxsv 1 always aaxsw 1 always aaxsx 1 always aaxsy 1 always aaxsz 1 always aaxta 1 always aaxtb 1 always aaxtc 1 always aaxtd 1 always aaxte 1 always aaxtf 1 always aaxtg 1 always aaxth 1 always aaxti 1 always aaxtj 1 always aaxtk 1 always aaxtl 1 always aaxtm 1 always aaxtn 1 always aaxto 1 always aaxtp 1 always aaxtq 1 always aaxtr 1 always aaxts 1 always aaxtt 1 always aaxtu 1 always aaxtv 1 always aaxtw 1 always aaxtx 1 always aaxty 1 always aaxtz 1 always aaxua 1 always aaxub 1 always aaxuc 1 always aaxud 1 always aaxue 1 always aaxuf 1 always aaxug 1 always aaxuh 1 always aaxui 1 always aaxuj 1 always aaxuk 1 always aaxul 1 always aaxum 1 always aaxun 1 always aaxuo 1 always aaxup 1 always aaxuq 1 always aaxur 1 always aaxus 1 always aaxut 1 always aaxuu 1 always aaxuv 1 always aaxuw 1 always aaxux 1 always aaxuy 1 always aaxuz 1 always aaxva 1 always aaxvb 1 always aaxvc 1 always aaxvd 1 always aaxve 1 always aaxvf 1 always aaxvg 1 always aaxvh 1 always aaxvi 1 always aaxvj 1 always aaxvk 1 always aaxvl 1 always aaxvm 1 always aaxvn 1 always aaxvo 1 always aaxvp 1 always aaxvq 1 always aaxvr 1 always aaxvs 1 always aaxvt 1 always aaxvu 1 always aaxvv 1 always aaxvw 1 always aaxvx 1 always aaxvy 1 always aaxvz 1 always aaxwa 1 always aaxwb 1 always aaxwc 1 always aaxwd 1 always aaxwe 1 always aaxwf 1 always aaxwg 1 always aaxwh 1 always aaxwi 1 always aaxwj 1 always aaxwk 1 always aaxwl 1 always aaxwm 1 always aaxwn 1 always aaxwo 1 always aaxwp 1 always aaxwq 1 always aaxwr 1 always aaxws 1 always aaxwt 1 always aaxwu 1 always aaxwv 1 always aaxww 1 always aaxwx 1 always aaxwy 1 always aaxwz 1 always aaxxa 1 always aaxxb 1 always aaxxc 1 always aaxxd 1 always aaxxe 1 always aaxxf 1 always aaxxg 1 always aaxxh 1 always aaxxi 1 always aaxxj 1 always aaxxk 1 always aaxxl 1 always aaxxm 1 always aaxxn 1 always aaxxo 1 always aaxxp 1 always aaxxq 1 always aaxxr 1 always aaxxs 1 always aaxxt 1 always aaxxu 1 always aaxxv 1 always aaxxw 1 always aaxxx 1 always aaxxy 1 always aaxxz 1 always aaxya 1 always aaxyb 1 always aaxyc 1 always aaxyd 1 always aaxye 1 always aaxyf 1 always aaxyg 1 always aaxyh 1 always aaxyi 1 always aaxyj 1 always aaxyk 1 always aaxyl 1 always aaxym 1 always aaxyn 1 always aaxyo 1 always aaxyp 1 always aaxyq 1 always aaxyr 1 always aaxys 1 always aaxyt 1 always aaxyu 1 always aaxyv 1 always aaxyw 1 always aaxyx 1 always aaxyy 1 always aaxyz 1 always aaxza 1 always aaxzb 1 always aaxzc 1 always aaxzd 1 always aaxze 1 always aaxzf 1 always aaxzg 1 always aaxzh 1 always aaxzi 1 always aaxzj 1 always aaxzk 1 always aaxzl 1 always aaxzm 1 always aaxzn 1 always aaxzo 1 always aaxzp 1 always aaxzq 1 always aaxzr 1 always aaxzs 1 always aaxzt 1 always aaxzu 1 always aaxzv 1 always aaxzw 1 always aaxzx 1 always aaxzy 1 always aaxzz 1 always aayaa 1 always aayab 1 always aayac 1 always aayad 1 always aayae 1 always aayaf 1 always aayag 1 always aayah 1 always aayai 1 always aayaj 1 always aayak 1 always aayal 1 always aayam 1 always aayan 1 always aayao 1 always aayap 1 always aayaq 1 always aayar 1 always aayas 1 always aayat 1 always aayau 1 always aayav 1 always aayaw 1 always aayax 1 always aayay 1 always aayaz 1 always aayba 1 always aaybb 1 always aaybc 1 always aaybd 1 always aaybe 1 always aaybf 1 always aaybg 1 always aaybh 1 always aaybi 1 always aaybj 1 always aaybk 1 always aaybl 1 always aaybm 1 always aaybn 1 always aaybo 1 always aaybp 1 always aaybq 1 always aaybr 1 always aaybs 1 always aaybt 1 always aaybu 1 always aaybv 1 always aaybw 1 always aaybx 1 always aayby 1 always aaybz 1 always aayca 1 always aaycb 1 always aaycc 1 always aaycd 1 always aayce 1 always aaycf 1 always aaycg 1 always aaych 1 always aayci 1 always aaycj 1 always aayck 1 always aaycl 1 always aaycm 1 always aaycn 1 always aayco 1 always aaycp 1 always aaycq 1 always aaycr 1 always aaycs 1 always aayct 1 always aaycu 1 always aaycv 1 always aaycw 1 always aaycx 1 always aaycy 1 always aaycz 1 always aayda 1 always aaydb 1 always aaydc 1 always aaydd 1 always aayde 1 always aaydf 1 always aaydg 1 always aaydh 1 always aaydi 1 always aaydj 1 always aaydk 1 always aaydl 1 always aaydm 1 always aaydn 1 always aaydo 1 always aaydp 1 always aaydq 1 always aaydr 1 always aayds 1 always aaydt 1 always aaydu 1 always aaydv 1 always aaydw 1 always aaydx 1 always aaydy 1 always aaydz 1 always aayea 1 always aayeb 1 always aayec 1 always aayed 1 always aayee 1 always aayef 1 always aayeg 1 always aayeh 1 always aayei 1 always aayej 1 always aayek 1 always aayel 1 always aayem 1 always aayen 1 always aayeo 1 always aayep 1 always aayeq 1 always aayer 1 always aayes 1 always aayet 1 always aayeu 1 always aayev 1 always aayew 1 always aayex 1 always aayey 1 always aayez 1 always aayfa 1 always aayfb 1 always aayfc 1 always aayfd 1 always aayfe 1 always aayff 1 always aayfg 1 always aayfh 1 always aayfi 1 always aayfj 1 always aayfk 1 always aayfl 1 always aayfm 1 always aayfn 1 always aayfo 1 always aayfp 1 always aayfq 1 always aayfr 1 always aayfs 1 always aayft 1 always aayfu 1 always aayfv 1 always aayfw 1 always aayfx 1 always aayfy 1 always aayfz 1 always aayga 1 always aaygb 1 always aaygc 1 always aaygd 1 always aayge 1 always aaygf 1 always aaygg 1 always aaygh 1 always aaygi 1 always aaygj 1 always aaygk 1 always aaygl 1 always aaygm 1 always aaygn 1 always aaygo 1 always aaygp 1 always aaygq 1 always aaygr 1 always aaygs 1 always aaygt 1 always aaygu 1 always aaygv 1 always aaygw 1 always aaygx 1 always aaygy 1 always aaygz 1 always aayha 1 always aayhb 1 always aayhc 1 always aayhd 1 always aayhe 1 always aayhf 1 always aayhg 1 always aayhh 1 always aayhi 1 always aayhj 1 always aayhk 1 always aayhl 1 always aayhm 1 always aayhn 1 always aayho 1 always aayhp 1 always aayhq 1 always aayhr 1 always aayhs 1 always aayht 1 always aayhu 1 always aayhv 1 always aayhw 1 always aayhx 1 always aayhy 1 always aayhz 1 always aayia 1 always aayib 1 always aayic 1 always aayid 1 always aayie 1 always aayif 1 always aayig 1 always aayih 1 always aayii 1 always aayij 1 always aayik 1 always aayil 1 always aayim 1 always aayin 1 always aayio 1 always aayip 1 always aayiq 1 always aayir 1 always aayis 1 always aayit 1 always aayiu 1 always aayiv 1 always aayiw 1 always aayix 1 always aayiy 1 always aayiz 1 always aayja 1 always aayjb 1 always aayjc 1 always aayjd 1 always aayje 1 always aayjf 1 always aayjg 1 always aayjh 1 always aayji 1 always aayjj 1 always aayjk 1 always aayjl 1 always aayjm 1 always aayjn 1 always aayjo 1 always aayjp 1 always aayjq 1 always aayjr 1 always aayjs 1 always aayjt 1 always aayju 1 always aayjv 1 always aayjw 1 always aayjx 1 always aayjy 1 always aayjz 1 always aayka 1 always aaykb 1 always aaykc 1 always aaykd 1 always aayke 1 always aaykf 1 always aaykg 1 always aaykh 1 always aayki 1 always aaykj 1 always aaykk 1 always aaykl 1 always aaykm 1 always aaykn 1 always aayko 1 always aaykp 1 always aaykq 1 always aaykr 1 always aayks 1 always aaykt 1 always aayku 1 always aaykv 1 always aaykw 1 always aaykx 1 always aayky 1 always aaykz 1 always aayla 1 always aaylb 1 always aaylc 1 always aayld 1 always aayle 1 always aaylf 1 always aaylg 1 always aaylh 1 always aayli 1 always aaylj 1 always aaylk 1 always aayll 1 always aaylm 1 always aayln 1 always aaylo 1 always aaylp 1 always aaylq 1 always aaylr 1 always aayls 1 always aaylt 1 always aaylu 1 always aaylv 1 always aaylw 1 always aaylx 1 always aayly 1 always aaylz 1 always aayma 1 always aaymb 1 always aaymc 1 always aaymd 1 always aayme 1 always aaymf 1 always aaymg 1 always aaymh 1 always aaymi 1 always aaymj 1 always aaymk 1 always aayml 1 always aaymm 1 always aaymn 1 always aaymo 1 always aaymp 1 always aaymq 1 always aaymr 1 always aayms 1 always aaymt 1 always aaymu 1 always aaymv 1 always aaymw 1 always aaymx 1 always aaymy 1 always aaymz 1 always aayna 1 always aaynb 1 always aaync 1 always aaynd 1 always aayne 1 always aaynf 1 always aayng 1 always aaynh 1 always aayni 1 always aaynj 1 always aaynk 1 always aaynl 1 always aaynm 1 always aaynn 1 always aayno 1 always aaynp 1 always aaynq 1 always aaynr 1 always aayns 1 always aaynt 1 always aaynu 1 always aaynv 1 always aaynw 1 always aaynx 1 always aayny 1 always aaynz 1 always aayoa 1 always aayob 1 always aayoc 1 always aayod 1 always aayoe 1 always aayof 1 always aayog 1 always aayoh 1 always aayoi 1 always aayoj 1 always aayok 1 always aayol 1 always aayom 1 always aayon 1 always aayoo 1 always aayop 1 always aayoq 1 always aayor 1 always aayos 1 always aayot 1 always aayou 1 always aayov 1 always aayow 1 always aayox 1 always aayoy 1 always aayoz 1 always aaypa 1 always aaypb 1 always aaypc 1 always aaypd 1 always aaype 1 always aaypf 1 always aaypg 1 always aayph 1 always aaypi 1 always aaypj 1 always aaypk 1 always aaypl 1 always aaypm 1 always aaypn 1 always aaypo 1 always aaypp 1 always aaypq 1 always aaypr 1 always aayps 1 always aaypt 1 always aaypu 1 always aaypv 1 always aaypw 1 always aaypx 1 always aaypy 1 always aaypz 1 always aayqa 1 always aayqb 1 always aayqc 1 always aayqd 1 always aayqe 1 always aayqf 1 always aayqg 1 always aayqh 1 always aayqi 1 always aayqj 1 always aayqk 1 always aayql 1 always aayqm 1 always aayqn 1 always aayqo 1 always aayqp 1 always aayqq 1 always aayqr 1 always aayqs 1 always aayqt 1 always aayqu 1 always aayqv 1 always aayqw 1 always aayqx 1 always aayqy 1 always aayqz 1 always aayra 1 always aayrb 1 always aayrc 1 always aayrd 1 always aayre 1 always aayrf 1 always aayrg 1 always aayrh 1 always aayri 1 always aayrj 1 always aayrk 1 always aayrl 1 always aayrm 1 always aayrn 1 always aayro 1 always aayrp 1 always aayrq 1 always aayrr 1 always aayrs 1 always aayrt 1 always aayru 1 always aayrv 1 always aayrw 1 always aayrx 1 always aayry 1 always aayrz 1 always aaysa 1 always aaysb 1 always aaysc 1 always aaysd 1 always aayse 1 always aaysf 1 always aaysg 1 always aaysh 1 always aaysi 1 always aaysj 1 always aaysk 1 always aaysl 1 always aaysm 1 always aaysn 1 always aayso 1 always aaysp 1 always aaysq 1 always aaysr 1 always aayss 1 always aayst 1 always aaysu 1 always aaysv 1 always aaysw 1 always aaysx 1 always aaysy 1 always aaysz 1 always aayta 1 always aaytb 1 always aaytc 1 always aaytd 1 always aayte 1 always aaytf 1 always aaytg 1 always aayth 1 always aayti 1 always aaytj 1 always aaytk 1 always aaytl 1 always aaytm 1 always aaytn 1 always aayto 1 always aaytp 1 always aaytq 1 always aaytr 1 always aayts 1 always aaytt 1 always aaytu 1 always aaytv 1 always aaytw 1 always aaytx 1 always aayty 1 always aaytz 1 always aayua 1 always aayub 1 always aayuc 1 always aayud 1 always aayue 1 always aayuf 1 always aayug 1 always aayuh 1 always aayui 1 always aayuj 1 always aayuk 1 always aayul 1 always aayum 1 always aayun 1 always aayuo 1 always aayup 1 always aayuq 1 always aayur 1 always aayus 1 always aayut 1 always aayuu 1 always aayuv 1 always aayuw 1 always aayux 1 always aayuy 1 always aayuz 1 always aayva 1 always aayvb 1 always aayvc 1 always aayvd 1 always aayve 1 always aayvf 1 always aayvg 1 always aayvh 1 always aayvi 1 always aayvj 1 always aayvk 1 always aayvl 1 always aayvm 1 always aayvn 1 always aayvo 1 always aayvp 1 always aayvq 1 always aayvr 1 always aayvs 1 always aayvt 1 always aayvu 1 always aayvv 1 always aayvw 1 always aayvx 1 always aayvy 1 always aayvz 1 always aaywa 1 always aaywb 1 always aaywc 1 always aaywd 1 always aaywe 1 always aaywf 1 always aaywg 1 always aaywh 1 always aaywi 1 always aaywj 1 always aaywk 1 always aaywl 1 always aaywm 1 always aaywn 1 always aaywo 1 always aaywp 1 always aaywq 1 always aaywr 1 always aayws 1 always aaywt 1 always aaywu 1 always aaywv 1 always aayww 1 always aaywx 1 always aaywy 1 always aaywz 1 always aayxa 1 always aayxb 1 always aayxc 1 always aayxd 1 always aayxe 1 always aayxf 1 always aayxg 1 always aayxh 1 always aayxi 1 always aayxj 1 always aayxk 1 always aayxl 1 always aayxm 1 always aayxn 1 always aayxo 1 always aayxp 1 always aayxq 1 always aayxr 1 always aayxs 1 always aayxt 1 always aayxu 1 always aayxv 1 always aayxw 1 always aayxx 1 always aayxy 1 always aayxz 1 always aayya 1 always aayyb 1 always aayyc 1 always aayyd 1 always aayye 1 always aayyf 1 always aayyg 1 always aayyh 1 always aayyi 1 always aayyj 1 always aayyk 1 always aayyl 1 always aayym 1 always aayyn 1 always aayyo 1 always aayyp 1 always aayyq 1 always aayyr 1 always aayys 1 always aayyt 1 always aayyu 1 always aayyv 1 always aayyw 1 always aayyx 1 always aayyy 1 always aayyz 1 always aayza 1 always aayzb 1 always aayzc 1 always aayzd 1 always aayze 1 always aayzf 1 always aayzg 1 always aayzh 1 always aayzi 1 always aayzj 1 always aayzk 1 always aayzl 1 always aayzm 1 always aayzn 1 always aayzo 1 always aayzp 1 always aayzq 1 always aayzr 1 always aayzs 1 always aayzt 1 always aayzu 1 always aayzv 1 always aayzw 1 always aayzx 1 always aayzy 1 always aayzz 1 always aazaa 1 always aazab 1 always aazac 1 always aazad 1 always aazae 1 always aazaf 1 always aazag 1 always aazah 1 always aazai 1 always aazaj 1 always aazak 1 always aazal 1 always aazam 1 always aazan 1 always aazao 1 always aazap 1 always aazaq 1 always aazar 1 always aazas 1 always aazat 1 always aazau 1 always aazav 1 always aazaw 1 always aazax 1 always aazay 1 always aazaz 1 always aazba 1 always aazbb 1 always aazbc 1 always aazbd 1 always aazbe 1 always aazbf 1 always aazbg 1 always aazbh 1 always aazbi 1 always aazbj 1 always aazbk 1 always aazbl 1 always aazbm 1 always aazbn 1 always aazbo 1 always aazbp 1 always aazbq 1 always aazbr 1 always aazbs 1 always aazbt 1 always aazbu 1 always aazbv 1 always aazbw 1 always aazbx 1 always aazby 1 always aazbz 1 always aazca 1 always aazcb 1 always aazcc 1 always aazcd 1 always aazce 1 always aazcf 1 always aazcg 1 always aazch 1 always aazci 1 always aazcj 1 always aazck 1 always aazcl 1 always aazcm 1 always aazcn 1 always aazco 1 always aazcp 1 always aazcq 1 always aazcr 1 always aazcs 1 always aazct 1 always aazcu 1 always aazcv 1 always aazcw 1 always aazcx 1 always aazcy 1 always aazcz 1 always aazda 1 always aazdb 1 always aazdc 1 always aazdd 1 always aazde 1 always aazdf 1 always aazdg 1 always aazdh 1 always aazdi 1 always aazdj 1 always aazdk 1 always aazdl 1 always aazdm 1 always aazdn 1 always aazdo 1 always aazdp 1 always aazdq 1 always aazdr 1 always aazds 1 always aazdt 1 always aazdu 1 always aazdv 1 always aazdw 1 always aazdx 1 always aazdy 1 always aazdz 1 always aazea 1 always aazeb 1 always aazec 1 always aazed 1 always aazee 1 always aazef 1 always aazeg 1 always aazeh 1 always aazei 1 always aazej 1 always aazek 1 always aazel 1 always aazem 1 always aazen 1 always aazeo 1 always aazep 1 always aazeq 1 always aazer 1 always aazes 1 always aazet 1 always aazeu 1 always aazev 1 always aazew 1 always aazex 1 always aazey 1 always aazez 1 always aazfa 1 always aazfb 1 always aazfc 1 always aazfd 1 always aazfe 1 always aazff 1 always aazfg 1 always aazfh 1 always aazfi 1 always aazfj 1 always aazfk 1 always aazfl 1 always aazfm 1 always aazfn 1 always aazfo 1 always aazfp 1 always aazfq 1 always aazfr 1 always aazfs 1 always aazft 1 always aazfu 1 always aazfv 1 always aazfw 1 always aazfx 1 always aazfy 1 always aazfz 1 always aazga 1 always aazgb 1 always aazgc 1 always aazgd 1 always aazge 1 always aazgf 1 always aazgg 1 always aazgh 1 always aazgi 1 always aazgj 1 always aazgk 1 always aazgl 1 always aazgm 1 always aazgn 1 always aazgo 1 always aazgp 1 always aazgq 1 always aazgr 1 always aazgs 1 always aazgt 1 always aazgu 1 always aazgv 1 always aazgw 1 always aazgx 1 always aazgy 1 always aazgz 1 always aazha 1 always aazhb 1 always aazhc 1 always aazhd 1 always aazhe 1 always aazhf 1 always aazhg 1 always aazhh 1 always aazhi 1 always aazhj 1 always aazhk 1 always aazhl 1 always aazhm 1 always aazhn 1 always aazho 1 always aazhp 1 always aazhq 1 always aazhr 1 always aazhs 1 always aazht 1 always aazhu 1 always aazhv 1 always aazhw 1 always aazhx 1 always aazhy 1 always aazhz 1 always aazia 1 always aazib 1 always aazic 1 always aazid 1 always aazie 1 always aazif 1 always aazig 1 always aazih 1 always aazii 1 always aazij 1 always aazik 1 always aazil 1 always aazim 1 always aazin 1 always aazio 1 always aazip 1 always aaziq 1 always aazir 1 always aazis 1 always aazit 1 always aaziu 1 always aaziv 1 always aaziw 1 always aazix 1 always aaziy 1 always aaziz 1 always aazja 1 always aazjb 1 always aazjc 1 always aazjd 1 always aazje 1 always aazjf 1 always aazjg 1 always aazjh 1 always aazji 1 always aazjj 1 always aazjk 1 always aazjl 1 always aazjm 1 always aazjn 1 always aazjo 1 always aazjp 1 always aazjq 1 always aazjr 1 always aazjs 1 always aazjt 1 always aazju 1 always aazjv 1 always aazjw 1 always aazjx 1 always aazjy 1 always aazjz 1 always aazka 1 always aazkb 1 always aazkc 1 always aazkd 1 always aazke 1 always aazkf 1 always aazkg 1 always aazkh 1 always aazki 1 always aazkj 1 always aazkk 1 always aazkl 1 always aazkm 1 always aazkn 1 always aazko 1 always aazkp 1 always aazkq 1 always aazkr 1 always aazks 1 always aazkt 1 always aazku 1 always aazkv 1 always aazkw 1 always aazkx 1 always aazky 1 always aazkz 1 always aazla 1 always aazlb 1 always aazlc 1 always aazld 1 always aazle 1 always aazlf 1 always aazlg 1 always aazlh 1 always aazli 1 always aazlj 1 always aazlk 1 always aazll 1 always aazlm 1 always aazln 1 always aazlo 1 always aazlp 1 always aazlq 1 always aazlr 1 always aazls 1 always aazlt 1 always aazlu 1 always aazlv 1 always aazlw 1 always aazlx 1 always aazly 1 always aazlz 1 always aazma 1 always aazmb 1 always aazmc 1 always aazmd 1 always aazme 1 always aazmf 1 always aazmg 1 always aazmh 1 always aazmi 1 always aazmj 1 always aazmk 1 always aazml 1 always aazmm 1 always aazmn 1 always aazmo 1 always aazmp 1 always aazmq 1 always aazmr 1 always aazms 1 always aazmt 1 always aazmu 1 always aazmv 1 always aazmw 1 always aazmx 1 always aazmy 1 always aazmz 1 always aazna 1 always aaznb 1 always aaznc 1 always aaznd 1 always aazne 1 always aaznf 1 always aazng 1 always aaznh 1 always aazni 1 always aaznj 1 always aaznk 1 always aaznl 1 always aaznm 1 always aaznn 1 always aazno 1 always aaznp 1 always aaznq 1 always aaznr 1 always aazns 1 always aaznt 1 always aaznu 1 always aaznv 1 always aaznw 1 always aaznx 1 always aazny 1 always aaznz 1 always aazoa 1 always aazob 1 always aazoc 1 always aazod 1 always aazoe 1 always aazof 1 always aazog 1 always aazoh 1 always aazoi 1 always aazoj 1 always aazok 1 always aazol 1 always aazom 1 always aazon 1 always aazoo 1 always aazop 1 always aazoq 1 always aazor 1 always aazos 1 always aazot 1 always aazou 1 always aazov 1 always aazow 1 always aazox 1 always aazoy 1 always aazoz 1 always aazpa 1 always aazpb 1 always aazpc 1 always aazpd 1 always aazpe 1 always aazpf 1 always aazpg 1 always aazph 1 always aazpi 1 always aazpj 1 always aazpk 1 always aazpl 1 always aazpm 1 always aazpn 1 always aazpo 1 always aazpp 1 always aazpq 1 always aazpr 1 always aazps 1 always aazpt 1 always aazpu 1 always aazpv 1 always aazpw 1 always aazpx 1 always aazpy 1 always aazpz 1 always aazqa 1 always aazqb 1 always aazqc 1 always aazqd 1 always aazqe 1 always aazqf 1 always aazqg 1 always aazqh 1 always aazqi 1 always aazqj 1 always aazqk 1 always aazql 1 always aazqm 1 always aazqn 1 always aazqo 1 always aazqp 1 always aazqq 1 always aazqr 1 always aazqs 1 always aazqt 1 always aazqu 1 always aazqv 1 always aazqw 1 always aazqx 1 always aazqy 1 always aazqz 1 always aazra 1 always aazrb 1 always aazrc 1 always aazrd 1 always aazre 1 always aazrf 1 always aazrg 1 always aazrh 1 always aazri 1 always aazrj 1 always aazrk 1 always aazrl 1 always aazrm 1 always aazrn 1 always aazro 1 always aazrp 1 always aazrq 1 always aazrr 1 always aazrs 1 always aazrt 1 always aazru 1 always aazrv 1 always aazrw 1 always aazrx 1 always aazry 1 always aazrz 1 always aazsa 1 always aazsb 1 always aazsc 1 always aazsd 1 always aazse 1 always aazsf 1 always aazsg 1 always aazsh 1 always aazsi 1 always aazsj 1 always aazsk 1 always aazsl 1 always aazsm 1 always aazsn 1 always aazso 1 always aazsp 1 always aazsq 1 always aazsr 1 always aazss 1 always aazst 1 always aazsu 1 always aazsv 1 always aazsw 1 always aazsx 1 always aazsy 1 always aazsz 1 always aazta 1 always aaztb 1 always aaztc 1 always aaztd 1 always aazte 1 always aaztf 1 always aaztg 1 always aazth 1 always aazti 1 always aaztj 1 always aaztk 1 always aaztl 1 always aaztm 1 always aaztn 1 always aazto 1 always aaztp 1 always aaztq 1 always aaztr 1 always aazts 1 always aaztt 1 always aaztu 1 always aaztv 1 always aaztw 1 always aaztx 1 always aazty 1 always aaztz 1 always aazua 1 always aazub 1 always aazuc 1 always aazud 1 always aazue 1 always aazuf 1 always aazug 1 always aazuh 1 always aazui 1 always aazuj 1 always aazuk 1 always aazul 1 always aazum 1 always aazun 1 always aazuo 1 always aazup 1 always aazuq 1 always aazur 1 always aazus 1 always aazut 1 always aazuu 1 always aazuv 1 always aazuw 1 always aazux 1 always aazuy 1 always aazuz 1 always aazva 1 always aazvb 1 always aazvc 1 always aazvd 1 always aazve 1 always aazvf 1 always aazvg 1 always aazvh 1 always aazvi 1 always aazvj 1 always aazvk 1 always aazvl 1 always aazvm 1 always aazvn 1 always aazvo 1 always aazvp 1 always aazvq 1 always aazvr 1 always aazvs 1 always aazvt 1 always aazvu 1 always aazvv 1 always aazvw 1 always aazvx 1 always aazvy 1 always aazvz 1 always aazwa 1 always aazwb 1 always aazwc 1 always aazwd 1 always aazwe 1 always aazwf 1 always aazwg 1 always aazwh 1 always aazwi 1 always aazwj 1 always aazwk 1 always aazwl 1 always aazwm 1 always aazwn 1 always aazwo 1 always aazwp 1 always aazwq 1 always aazwr 1 always aazws 1 always aazwt 1 always aazwu 1 always aazwv 1 always aazww 1 always aazwx 1 always aazwy 1 always aazwz 1 always aazxa 1 always aazxb 1 always aazxc 1 always aazxd 1 always aazxe 1 always aazxf 1 always aazxg 1 always aazxh 1 always aazxi 1 always aazxj 1 always aazxk 1 always aazxl 1 always aazxm 1 always aazxn 1 always aazxo 1 always aazxp 1 always aazxq 1 always aazxr 1 always aazxs 1 always aazxt 1 always aazxu 1 always aazxv 1 always aazxw 1 always aazxx 1 always aazxy 1 always aazxz 1 always aazya 1 always aazyb 1 always aazyc 1 always aazyd 1 always aazye 1 always aazyf 1 always aazyg 1 always aazyh 1 always aazyi 1 always aazyj 1 always aazyk 1 always aazyl 1 always aazym 1 always aazyn 1 always aazyo 1 always aazyp 1 always aazyq 1 always aazyr 1 always aazys 1 always aazyt 1 always aazyu 1 always aazyv 1 always aazyw 1 always aazyx 1 always aazyy 1 always aazyz 1 always aazza 1 always aazzb 1 always aazzc 1 always aazzd 1 always aazze 1 always aazzf 1 always aazzg 1 always aazzh 1 always aazzi 1 always aazzj 1 always aazzk 1 always aazzl 1 always aazzm 1 always aazzn 1 always aazzo 1 always aazzp 1 always aazzq 1 always aazzr 1 always aazzs 1 always aazzt 1 always aazzu 1 always aazzv 1 always aazzw 1 always aazzx 1 always aazzy 1 always aazzz 1 liblouis-2.5.3/tests/tables/squash_space_with_correct.utb0000664000175000017500000000011012161041523020634 00000000000000space \t 9 space \n 0 correct "\t" " " correct "\n" " " repeated \s 0 liblouis-2.5.3/tests/tables/moreTables/0000775000175000017500000000000012161044235015055 500000000000000liblouis-2.5.3/tests/tables/moreTables/Makefile.am0000664000175000017500000000003112161041523017020 00000000000000EXTRA_DIST = include.utb liblouis-2.5.3/tests/tables/moreTables/include.utb0000664000175000017500000000021312161041523017125 00000000000000# this table simpy checks if files can be inlcuded from a local dir and from the global dir include pass2.ctb include braille-patterns.cti liblouis-2.5.3/tests/tables/moreTables/Makefile.in0000664000175000017500000004667212161044154017061 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tests/tables/moreTables DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = include.utb all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/tables/moreTables/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/tables/moreTables/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tests/tables/inpos_pass2.ctb0000664000175000017500000000002712161041523015626 00000000000000pass2 @12-3-4 @56-34 liblouis-2.5.3/tests/tables/pass0_typebuf.ctb0000664000175000017500000000062112161041523016152 00000000000000uplow Aa 1 uplow Bb 12 uplow Cc 14 uplow Dd 145 uplow Ee 15 uplow Ff 124 uplow Gg 1245 uplow Hh 125 uplow Ii 24 uplow Jj 245 uplow Kk 13 uplow Ll 123 uplow Mm 134 uplow Nn 1345 uplow Oo 135 uplow Pp 1234 uplow Qq 12345 uplow Rr 1235 uplow Ss 234 uplow Tt 2345 uplow Uu 136 uplow Vv 1236 uplow Ww 2456 uplow Xx 1346 uplow Yy 13456 uplow Zz 1356 sign . 46 lastworditalbefore 46 correct "foo" "foobar" liblouis-2.5.3/tests/tables/inpos_pass1.ctb0000664000175000017500000000004212161041523015622 00000000000000context ["ab"] @12 always ef 13 liblouis-2.5.3/tests/tables/inpos_pass3.ctb0000664000175000017500000000002312161041523015623 00000000000000pass3 [@13] @5-5-5 liblouis-2.5.3/tests/tables/letterDefTest_uplow.ctb0000664000175000017500000000015012161041523017367 00000000000000display m 134 display s 234 uplow \x2804\x280d 134 uplow \x280e\x280e 234 always \x280d\x280e 234-134 liblouis-2.5.3/tests/tables/letterDefTest_uppercase.ctb0000664000175000017500000000014412161041523020213 00000000000000display m 134 display s 234 uppercase \x280d 134 uppercase \x280e 234 always \x280d\x280e 234-134 liblouis-2.5.3/tests/tables/inpos_pass0.ctb0000664000175000017500000000022112161041523015620 00000000000000sign a 1 sign b 2 sign c 3 sign d 4 sign e 5 sign f 6 sign g 7 sign w 13 sign x 12 sign y 34 sign z 56 correct ["aaa"] "a" correct ["d"] "dd" liblouis-2.5.3/tests/tables/inpos_match_replace.ctb0000664000175000017500000000147212161041523017372 00000000000000display A 1 display B 12 display E 15 display F 124 display G 1245 display I 24 display L 123 display N 1345 display R 1235 display S 234 display U 136 display V 1236 display 7 12456 display - 36 display - 36a uplow \x0041\x0061 1 Aa uplow \x0042\x0062 12 Bb uplow \x0045\x0065 15 Ee uplow \x0046\x0066 124 Ff uplow \x0047\x0067 1245 Gg uplow \x0049\x0069 24 Ii uplow \x004C\x006C 123 Ll uplow \x004E\x006E 1345 Nn uplow \x0052\x0072 1235 Rr uplow \x0053\x0073 234 Ss uplow \x0055\x0075 136 Uu uplow \x0056\x0076 1236 Vv digit \x0037 12456 7 punctuation \x002D 36 - math \x2212 36a - begword ver 36a pass2 @36[@36a] @1236-12456 liblouis-2.5.3/tests/tables/uplow_with_unicode.ctb0000664000175000017500000000030512161041523017274 00000000000000display ^ 2346 uplow Gg 1245 uplow Rr 1235 uplow Oo 135 uplow Ss 234 uplow \x1e9e\x00df 2346 LATIN LETTER SHARP S word gross 1245-2346 word gro\x00df 1245-2346 liblouis-2.5.3/tests/tables/letterDefTest_lowercase.ctb0000664000175000017500000000014412161041523020210 00000000000000display m 134 display s 234 lowercase \x280d 134 lowercase \x280e 234 always \x280d\x280e 234-134 liblouis-2.5.3/tests/tables/squash_space_with_context_1.utb0000664000175000017500000000006112161041523021104 00000000000000space \t 9 space \n 0 space \s 0 context $s. @0 liblouis-2.5.3/tests/tables/empty.ctb0000664000175000017500000000014712161041523014527 00000000000000# this table is needed in the hash_collision test where the rules are # dynamically added to the table liblouis-2.5.3/tests/tables/Makefile.in0000664000175000017500000006575112161044154014763 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tests/tables DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = moreTables EXTRA_DIST = \ bad.ctb \ empty.ctb \ inpos_match_replace.ctb \ inpos_pass0.ctb \ inpos_pass1.ctb \ inpos_pass2.ctb \ inpos_pass3.ctb \ large.ctb \ letterDefTest.ctb \ letterDefTest_letter.ctb \ letterDefTest_lowercase.ctb \ letterDefTest_uplow.ctb \ letterDefTest_uppercase.ctb \ loop.ctb \ lowercase_with_unicode.ctb \ nocross.ctb \ pass0_typebuf.ctb \ pass2.ctb \ squash_space_with_context_1.utb \ squash_space_with_context_2.utb \ squash_space_with_correct.utb \ squash_space_with_repeated.utb \ uplow_with_unicode.ctb all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/tables/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/tables/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tests/tables/loop.ctb0000664000175000017500000000321612161041523014342 00000000000000uplow \x0041\x0061 1,1 Aa LATIN CAPITAL LETTER A - LATIN SMALL LETTER A uplow \x0042\x0062 12,12 Bb LATIN CAPITAL LETTER B - LATIN SMALL LETTER B uplow \x0043\x0063 14,14 Cc LATIN CAPITAL LETTER C - LATIN SMALL LETTER C uplow \x0044\x0064 145,145 Dd LATIN CAPITAL LETTER D - LATIN SMALL LETTER D uplow \x0045\x0065 15,15 Ee LATIN CAPITAL LETTER E - LATIN SMALL LETTER E uplow \x0046\x0066 124,124 Ff LATIN CAPITAL LETTER F - LATIN SMALL LETTER F uplow \x0047\x0067 1245,1245 Gg LATIN CAPITAL LETTER G - LATIN SMALL LETTER G uplow \x0048\x0068 125,125 Hh LATIN CAPITAL LETTER H - LATIN SMALL LETTER H uplow \x0049\x0069 24,24 Ii LATIN CAPITAL LETTER I - LATIN SMALL LETTER I uplow \x004A\x006A 245,245 Jj LATIN CAPITAL LETTER J - LATIN SMALL LETTER J uplow \x004C\x006C 123,123 Ll LATIN CAPITAL LETTER L - LATIN SMALL LETTER L uplow \x0052\x0072 1235,1235 Rr LATIN CAPITAL LETTER R - LATIN SMALL LETTER R uplow \x0054\x0074 2345,2345 Tt LATIN CAPITAL LETTER T - LATIN SMALL LETTER T sign % 146 class digitletter abcdefghij context $d[]%digitletter @6 context $d"."[]%digitletter @6 context $U2[]$u @6 context $U[]$u @6 liblouis-2.5.3/tests/tables/squash_space_with_context_2.utb0000664000175000017500000000010212161041523021101 00000000000000space \t 9 space \n 0 space \s 0 context [$s]$s ? context [$s] @0liblouis-2.5.3/tests/tables/squash_space_with_repeated.utb0000664000175000017500000000005112161041523020770 00000000000000space \t 9 space \n 24578 repeated \s 0 liblouis-2.5.3/tests/getTable.c0000775000175000017500000000141112161041534013320 00000000000000#include #include #include #include "liblouis.h" int main(int argc, char **argv) { const char* goodTable = "en-us-g1.ctb"; const char* badTable = "bad.ctb"; void* table = NULL; int result = 0; table = lou_getTable(goodTable); if (!table) { printf("Getting %s failed, expected success\n", goodTable); result = 1; } else table = NULL; table = lou_getTable(badTable); if (table) { printf("Getting %s succeeded, expected failure\n", badTable); table = NULL; result = 1; } table = lou_getTable(goodTable); if (!table) { printf("Getting %s failed, expected success\n", goodTable); result = 1; } else table = NULL; lou_free(); return result; } liblouis-2.5.3/tests/hash_collision.c0000664000175000017500000000130412161041523014563 00000000000000#include #include "brl_checks.h" #include "liblouis.h" int main (int argc, char **argv) { int result = 0; char *table = "empty.ctb"; char rule[18]; lou_compileString(table, "include latinLetterDef6Dots.uti"); for (char c1 = 'a'; c1 <= 'z'; c1++) { for (char c2 = 'a'; c2 <= 'z'; c2++) { for (char c3 = 'a'; c3 <= 'z'; c3++) { sprintf(rule, "always aa%c%c%c 1", c1, c2, c3); lou_compileString(table, rule); } } } result |= check_translation(table, "aaaaa", NULL, "a"); /* Strangely enough subsequent translations fail */ result |= check_translation(table, "aaaaa", NULL, "a"); result |= check_translation(table, "aazzz", NULL, "a"); return result; } liblouis-2.5.3/tests/hyphenate_achena.c0000664000175000017500000000076412161041523015062 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { int ret = 0; char *tables = "da-dk-g2.ctb"; char *word = "achena"; char * hyphens = calloc(8, sizeof(char)); hyphens[0] = '0'; hyphens[1] = '1'; hyphens[2] = '0'; hyphens[3] = '0'; hyphens[4] = '1'; hyphens[5] = '0'; ret = check_hyphenation(tables, word, hyphens); assert(hyphens[6] == '\0'); assert(hyphens[7] == '\0'); free(hyphens); return ret; } liblouis-2.5.3/tests/letterDefTest.c0000664000175000017500000000113612161041534014350 00000000000000#include #include #include #include "liblouis.h" #include "brl_checks.h" int main(int argc, char **argv) { int result = 0; const char *text = "\\x280d\\x280e"; // "â â Ž" const char *expected = "sm"; // "â Žâ " result |= check_translation("letterDefTest_letter.ctb", text, NULL, expected); result |= check_translation("letterDefTest_lowercase.ctb", text, NULL, expected); result |= check_translation("letterDefTest_uplow.ctb", text, NULL, expected); result |= check_translation("letterDefTest_uppercase.ctb", text, NULL, expected); return result; } liblouis-2.5.3/tests/en_gb_g1_italics.c0000664000175000017500000000154612161041534014750 00000000000000#include #include #include #include "brl_checks.h" #undef TRANSLATION_TABLE #define TRANSLATION_TABLE "en-gb-g1.utb" int main(int argc, char **argv) { int result = 0; const char *str = "This is a Test"; const char *typeform = "00000000000000"; const char *expected = ",this is a ,test"; result |= check_translation(TRANSLATION_TABLE, str, convert_typeform(typeform), expected); str = "This is a Test in Italic."; typeform = "1111111111111111111111111"; expected = "..,this is a ,test in ,italic4.'"; result |= check_translation(TRANSLATION_TABLE, str, convert_typeform(typeform), expected); str = "This is a Test"; typeform = "00000111100000"; expected = ",this .is .a ,test"; result |= check_translation(TRANSLATION_TABLE, str, convert_typeform(typeform), expected); return result; } liblouis-2.5.3/tests/harnessSources/0000775000175000017500000000000012161044235014515 500000000000000liblouis-2.5.3/tests/harnessSources/ta-ta-g1_harness_source.txt0000664000175000017500000000020012161041523021601 00000000000000tables: ta-ta-g1.ctb இ ப பி க௠ஸà¯à®°à¯€ பஸà¯à®°à¯€ கà¯à®· கà¯à®·à¯. “ †‘ ’ liblouis-2.5.3/tests/harnessSources/ethio-g1_harness_sources.txt0000664000175000017500000000054612161041523022103 00000000000000tables: ethio-g1.ctb ኢትዮá’ክ áŠá‹°áˆŽá‰½áŠ• በኮáˆá’ተር ላይ ታይᕠለማድረጠተችáˆáˆá¢ á‹á‹­áŠáˆ¥á‹áˆ«áŠ• በኤንጺዲኤ አማካáŠáŠá‰µ የአማርኛ ትáŒáˆªáŠ› áŠá‹°áˆŽá‰½áŠ• በብሬሠማንበብ እና መáƒá ይችላሉᢠተዘጋጀ በዶክተር ታáˆáˆ© በላይᢠáˆáˆáˆŒ 1 2012 liblouis-2.5.3/tests/harnessSources/hu-hu-g1-hyph_harness_source.txt0000664000175000017500000010174212161041523022604 00000000000000tables: hu-hu-g1.ctb, hyph_hu_HU.dic testmode: hyphenate adásszerű testmode: hyphenate adásszünet testmode: hyphenate adászárásig testmode: hyphenate adósszámla testmode: hyphenate Agyagosszergény testmode: hyphenate agyaggyűrűiken testmode: hyphenate agyonnyom testmode: hyphenate agyonnyúzott testmode: hyphenate agyonnyűtt testmode: hyphenate ágyússzekerek testmode: hyphenate ájulásszerű testmode: hyphenate akácsövény testmode: hyphenate ákácsövény testmode: hyphenate alásszolgája testmode: hyphenate alásszolgájuk testmode: hyphenate alkalmazásszerver testmode: hyphenate alkalmazásszintű testmode: hyphenate állásszög testmode: hyphenate almásszürke testmode: hyphenate alvásszegény testmode: hyphenate alvásszükséglete testmode: hyphenate alvászavar testmode: hyphenate anyaggyÅ‘zÅ‘ testmode: hyphenate anyaggyűjtés testmode: hyphenate aranyosszÅ‘ke testmode: hyphenate árboccsúcs testmode: hyphenate árbóccsúcs testmode: hyphenate árbocsudarat testmode: hyphenate arcüreggyulladás testmode: hyphenate arccsont testmode: hyphenate arcseb testmode: hyphenate arcsebe testmode: hyphenate arcsérülés testmode: hyphenate arzénnyom testmode: hyphenate áremelkedésszerű testmode: hyphenate árgusszemű testmode: hyphenate árrésszabályt testmode: hyphenate árvízsújtotta testmode: hyphenate átlaggyerekre testmode: hyphenate autósszemüveg testmode: hyphenate autósszÅ‘nyeg testmode: hyphenate azonnyomban testmode: hyphenate bádoggyűjtemény testmode: hyphenate Bánnyíres testmode: hyphenate bázisszint testmode: hyphenate Barccsal testmode: hyphenate barkácszene testmode: hyphenate barnásszÅ‘ke testmode: hyphenate barnásszÅ‘két testmode: hyphenate barnásszürke testmode: hyphenate barnesszal testmode: hyphenate baromsággyűjtemény testmode: hyphenate basszusszerű testmode: hyphenate basszusszintetizátor testmode: hyphenate becslésszerűen testmode: hyphenate berendezésszerű testmode: hyphenate berendezésszett testmode: hyphenate Békésszentandrás testmode: hyphenate bélésszövet testmode: hyphenate bélyeggyűjtemény testmode: hyphenate bércsüveg testmode: hyphenate beteggyógyász testmode: hyphenate bekezdésszintű testmode: hyphenate bilincszörgés testmode: hyphenate binsenggyökér testmode: hyphenate blueszene testmode: hyphenate bohócsapkája testmode: hyphenate bohócság testmode: hyphenate bohócszerű testmode: hyphenate bohócszerep testmode: hyphenate bonbonmeggy testmode: hyphenate borsszem testmode: hyphenate borsszóró testmode: hyphenate borzasszÅ‘rű testmode: hyphenate borzzsír testmode: hyphenate bÅ‘gésszerű testmode: hyphenate börtönnyelve testmode: hyphenate börtönnyíláson testmode: hyphenate börtönnyitó testmode: hyphenate bukásszámba testmode: hyphenate búcsújárásszerű testmode: hyphenate brekegésszerű testmode: hyphenate bronzsáska testmode: hyphenate bronzsáskák testmode: hyphenate bronzsasokkal testmode: hyphenate bronzsisak testmode: hyphenate bűnnyomok testmode: hyphenate chipseszacskó testmode: hyphenate ciripelésszerűen testmode: hyphenate curiosity testmode: hyphenate csapásszám testmode: hyphenate csárdásszóló testmode: hyphenate csattanásszerű testmode: hyphenate csavarásszerű testmode: hyphenate csikósszámadó testmode: hyphenate csillaggyárnak testmode: hyphenate csipkésszélű testmode: hyphenate csípésszám testmode: hyphenate csobbanásszerű testmode: hyphenate csuklásszerű testmode: hyphenate Diósszilágyi testmode: hyphenate disszertáció testmode: hyphenate dobpergésszerűen testmode: hyphenate döggyapjú testmode: hyphenate döggyárnak testmode: hyphenate dÅ‘lésszög testmode: hyphenate dörgésszerű testmode: hyphenate dörgésszerű testmode: hyphenate dörzszörej testmode: hyphenate dragonyosszázad testmode: hyphenate dragonyoszászlóalj testmode: hyphenate droggyanús testmode: hyphenate doppinggyanú testmode: hyphenate dússzakállú testmode: hyphenate édesszájú testmode: hyphenate édesszesztestvér testmode: hyphenate édességgyártók testmode: hyphenate égésszabály testmode: hyphenate égésszag testmode: hyphenate égésszám testmode: hyphenate égésszigetelés testmode: hyphenate edzésszámot testmode: hyphenate effektusszerűen testmode: hyphenate egyenesszálú testmode: hyphenate egyenesszárnyúak testmode: hyphenate egyenesszög testmode: hyphenate egyezség testmode: hyphenate egyesszámban testmode: hyphenate egységgyertyából testmode: hyphenate elektronnyalábra testmode: hyphenate éhesszájat testmode: hyphenate ejtÅ‘ernyÅ‘sszárnyak testmode: hyphenate ejtÅ‘ernyÅ‘sszázad testmode: hyphenate ejtÅ‘ernyÅ‘szászlóalj testmode: hyphenate ékesszólás testmode: hyphenate ékesszóló testmode: hyphenate ekhósszekér testmode: hyphenate ekhósszekerek testmode: hyphenate eleséggyűjtés testmode: hyphenate élesszemű testmode: hyphenate ellátásszerű testmode: hyphenate ellenállásszekrény testmode: hyphenate ellennyilatkozat testmode: hyphenate ellennyomás testmode: hyphenate elméncség testmode: hyphenate előírásszerű testmode: hyphenate elrémisszék testmode: hyphenate emberhússzagot testmode: hyphenate emelésszerű testmode: hyphenate enyveszsinór testmode: hyphenate erÅ‘forrászabáló testmode: hyphenate erÅ‘lködésszagúnak testmode: hyphenate erÅ‘sítésszabályozás testmode: hyphenate érccsapadék testmode: hyphenate érccsengés testmode: hyphenate érccsatorna testmode: hyphenate ércsalak testmode: hyphenate ércsas testmode: hyphenate ércsarukkal testmode: hyphenate ércselyem testmode: hyphenate ércsíp testmode: hyphenate ércsípjába testmode: hyphenate ércsípláda testmode: hyphenate ércsíptetÅ‘ testmode: hyphenate ércsisak testmode: hyphenate ércsodrony testmode: hyphenate érzékelésszint testmode: hyphenate ésszerű testmode: hyphenate eszközsor testmode: hyphenate eszközsorán testmode: hyphenate evészavar testmode: hyphenate fagyosszentek testmode: hyphenate fáklyászene testmode: hyphenate farkasszáj testmode: hyphenate farkasszem testmode: hyphenate farkasszemet testmode: hyphenate Farkassziget testmode: hyphenate fásszárú testmode: hyphenate fázisszögnek testmode: hyphenate fegyenccsoport testmode: hyphenate fegyencsapkát testmode: hyphenate fehéresszÅ‘ke testmode: hyphenate fehéresszürke testmode: hyphenate feketésszürke testmode: hyphenate feldolgozászenekar testmode: hyphenate feleséggyilkos testmode: hyphenate felséggyilkolás testmode: hyphenate felfedezésszámba testmode: hyphenate felsorolásszerűen testmode: hyphenate feltevésszerűen testmode: hyphenate felszerelésszettet testmode: hyphenate fertÅ‘zésszerű testmode: hyphenate fémesszürke testmode: hyphenate filccsizma testmode: hyphenate filigránnyelű testmode: hyphenate fogasszeg testmode: hyphenate fogfájásszerű testmode: hyphenate foglalkozásszerű testmode: hyphenate foggyalu testmode: hyphenate foggyökér testmode: hyphenate foggyulladás testmode: hyphenate foggyűrű testmode: hyphenate forgásszabály testmode: hyphenate forrásszöveg testmode: hyphenate fosszínű testmode: hyphenate földcsuszamlásszerűen testmode: hyphenate fölélesszem testmode: hyphenate fÅ‘zÅ‘kalánnyelet testmode: hyphenate fuvarosszekér testmode: hyphenate fúvósszekció testmode: hyphenate fúvósszerszám testmode: hyphenate fúvósszimfónia testmode: hyphenate fúvószenekar testmode: hyphenate fűtésszag testmode: hyphenate garaboncsereg testmode: hyphenate gázspray testmode: hyphenate gázstop testmode: hyphenate gázsugár testmode: hyphenate geggyáros testmode: hyphenate gerincsérült testmode: hyphenate gerincsérv testmode: hyphenate ginszenggyökér testmode: hyphenate ginzenggyökér testmode: hyphenate Gombosszeg testmode: hyphenate gondviselésszerű testmode: hyphenate gÅ‘zsíp testmode: hyphenate gÅ‘zsugár testmode: hyphenate gÅ‘zszivattyú testmode: hyphenate gránátoszászlóalj testmode: hyphenate gúnyversszerzÅ‘ testmode: hyphenate gyalogosszázad testmode: hyphenate gyalogoszászlóalj testmode: hyphenate gyorsszárnyú testmode: hyphenate gyorsszekér testmode: hyphenate gyorsszűrÅ‘ testmode: hyphenate gyújtásszabály testmode: hyphenate gyújtászsinór testmode: hyphenate gyülekezésszabadságot testmode: hyphenate gyűlésszíne testmode: hyphenate habarccsal testmode: hyphenate habitusszerűen testmode: hyphenate hadianyaggyár testmode: hyphenate hadsereggyűjtés testmode: hyphenate hajlásszög testmode: hyphenate hajósszekerce testmode: hyphenate hajósszemélyzet testmode: hyphenate hangyamászásszerű testmode: hyphenate hamisszínes testmode: hyphenate hallászavar testmode: hyphenate halottasszekér testmode: hyphenate halottasszoba testmode: hyphenate halottasszobába testmode: hyphenate hamvasszÅ‘ke testmode: hyphenate hamvasszürke testmode: hyphenate hanggyakorlat testmode: hyphenate hanggyűjtemény testmode: hyphenate hányásszag testmode: hyphenate haragoszöld testmode: hyphenate haranggyárosok testmode: hyphenate harcosszellem testmode: hyphenate harccselekmény testmode: hyphenate harccsoport testmode: hyphenate harcsor testmode: hyphenate harmincsornyi testmode: hyphenate hármasszámú testmode: hyphenate hármasszak testmode: hyphenate Hármassziget testmode: hyphenate hársszén testmode: hyphenate hársszenet testmode: hyphenate hártyásszárnyú testmode: hyphenate hasszÅ‘rzet testmode: hyphenate hasszél testmode: hyphenate hasisszagot testmode: hyphenate hatásszélesség testmode: hyphenate hatásszünet testmode: hyphenate házsárkodását testmode: hyphenate hazugsággyár testmode: hyphenate hegyesszög testmode: hyphenate hekusszagot testmode: hyphenate hegyszorosszerű testmode: hyphenate hentesszaktanfolyamát testmode: hyphenate hirdetésszagú testmode: hyphenate hirdetésszöveg testmode: hyphenate hivatásszerűen testmode: hyphenate hivatkozásszerű testmode: hyphenate hívásszűrés testmode: hyphenate hízelkedésszámba testmode: hyphenate hörgésszerű testmode: hyphenate hÅ‘sszínész testmode: hyphenate hÅ‘sszövetség testmode: hyphenate hólyaggyulladás testmode: hyphenate húslevesszag testmode: hyphenate hússzaft testmode: hyphenate hússzag testmode: hyphenate hússzagú testmode: hyphenate hússzállítmány testmode: hyphenate hússzállító testmode: hyphenate hússzalonna testmode: hyphenate hússzekrény testmode: hyphenate hússzelet testmode: hyphenate Hússziget testmode: hyphenate hússzínű testmode: hyphenate Hússzövetség testmode: hyphenate hűséggyűrűsök testmode: hyphenate hűvösszemű testmode: hyphenate ideggyengeség testmode: hyphenate ideggyógyászat testmode: hyphenate ideggyógyintézet testmode: hyphenate ideggyönge testmode: hyphenate ideggyötrÅ‘ testmode: hyphenate ideggyulladás testmode: hyphenate identitászavar testmode: hyphenate idÅ‘járásszolgálat testmode: hyphenate imádsággyűjtemény testmode: hyphenate impulzusszélességét testmode: hyphenate inasszerep testmode: hyphenate inasszerepet testmode: hyphenate inasszeretetet testmode: hyphenate indiánnyelv testmode: hyphenate információsszabadság testmode: hyphenate ingyennyelvoktatás testmode: hyphenate ínnyújtó testmode: hyphenate ínnyújtót testmode: hyphenate ínyencség testmode: hyphenate írásszeretet testmode: hyphenate ismétlésszám testmode: hyphenate irtásszél testmode: hyphenate istennyila testmode: hyphenate járásszerű testmode: hyphenate járásszékhely testmode: hyphenate jáspisszobor testmode: hyphenate jegeccsoport testmode: hyphenate jéggyártás testmode: hyphenate jelenésszerű testmode: hyphenate jelentésszerű testmode: hyphenate jelentésszint testmode: hyphenate jelzésszerű testmode: hyphenate jósszavai testmode: hyphenate jósszelleme testmode: hyphenate kabinnyíláson testmode: hyphenate kabinnyomás testmode: hyphenate dizájnnyelv testmode: hyphenate dizájnnyaklánc testmode: hyphenate kakasszó testmode: hyphenate kalapácszengés testmode: hyphenate kalapácszongora testmode: hyphenate kamionnyi testmode: hyphenate kaparásszerű testmode: hyphenate Kapolcs testmode: hyphenate Kapolcsi testmode: hyphenate Kapolcsra testmode: hyphenate Kapolcsról testmode: hyphenate KaposszekcsÅ‘ testmode: hyphenate Kaposszerdahely testmode: hyphenate kapusszoba testmode: hyphenate karosszék testmode: hyphenate kartácszápor testmode: hyphenate kartonnyi testmode: hyphenate kasszék testmode: hyphenate katalógusszám testmode: hyphenate katekizmusszerű testmode: hyphenate kavarásszerű testmode: hyphenate kavicsszerű testmode: hyphenate kavicszápor testmode: hyphenate kavicszátony testmode: hyphenate kavicszuzalék testmode: hyphenate kékesszürke testmode: hyphenate Kemenesszentmárton testmode: hyphenate Kemenesszentpéter testmode: hyphenate képmásszerű testmode: hyphenate képváltásszámot testmode: hyphenate képzésszerű testmode: hyphenate képzésszervezés testmode: hyphenate kerekesszék testmode: hyphenate keresésszolgáltató testmode: hyphenate kérdészápor testmode: hyphenate kérésszerűen testmode: hyphenate késszúrás testmode: hyphenate ketreccsapda testmode: hyphenate kevésszavú testmode: hyphenate kevésszer testmode: hyphenate kerítésszaggató testmode: hyphenate kiadászárolás testmode: hyphenate kifejlesszem testmode: hyphenate kihívásszerű testmode: hyphenate kilenccsatorna testmode: hyphenate kilincszörgést testmode: hyphenate Kisszállás testmode: hyphenate kisszámú testmode: hyphenate Kisszeben testmode: hyphenate kisszínes testmode: hyphenate kisszék testmode: hyphenate kisszekrény testmode: hyphenate Kisszentmárton testmode: hyphenate kisszerű testmode: hyphenate Kissziget testmode: hyphenate kisszobában testmode: hyphenate kisszótár testmode: hyphenate Kiszombor testmode: hyphenate kisszövetkezet testmode: hyphenate kiszögellésszerűen testmode: hyphenate Kiszsidány testmode: hyphenate kitörésszerű testmode: hyphenate kitüntetésszalagokat testmode: hyphenate kivégzésszerűen testmode: hyphenate kliensszoftver testmode: hyphenate kóccsomó testmode: hyphenate koldusszáj testmode: hyphenate koldusszakáll testmode: hyphenate koldusszegény testmode: hyphenate kolduszene testmode: hyphenate kommunikációsszoba testmode: hyphenate komposszesszor testmode: hyphenate komposszesszorátus testmode: hyphenate kormosszürke testmode: hyphenate kosszarv testmode: hyphenate kosszem testmode: hyphenate kortárszenei testmode: hyphenate kóruszene testmode: hyphenate köhögésszerű testmode: hyphenate könyöklésszéles testmode: hyphenate könyvesszekrény testmode: hyphenate kötelességgyakorlás testmode: hyphenate kölcsönnyakláncait testmode: hyphenate közlekedésszervezÅ‘k testmode: hyphenate kÅ‘művesszem testmode: hyphenate kÅ‘művesszerszámait testmode: hyphenate konstansszimbólumainak testmode: hyphenate köntösszegély testmode: hyphenate kÅ‘risszár testmode: hyphenate kÅ‘risszárat testmode: hyphenate körösszakál testmode: hyphenate körösszakáli testmode: hyphenate Köröszug testmode: hyphenate közsáv testmode: hyphenate közsereg testmode: hyphenate kontaktusszám testmode: hyphenate kudarcsorozat testmode: hyphenate kulcszörgés testmode: hyphenate kuplunggyár testmode: hyphenate kurucság testmode: hyphenate küldetésszaga testmode: hyphenate különcség testmode: hyphenate különnyíló testmode: hyphenate labirintusszerű testmode: hyphenate lakásszentelÅ‘ testmode: hyphenate lakásszövetkezet testmode: hyphenate lakásszerzÅ‘k testmode: hyphenate lakosszám testmode: hyphenate lánccsörgés testmode: hyphenate láncszem testmode: hyphenate lánggyújtogató testmode: hyphenate laposszárú testmode: hyphenate látásszög testmode: hyphenate látászavar testmode: hyphenate látomásszerű testmode: hyphenate lazaccsontváz testmode: hyphenate lázsebességgel testmode: hyphenate lázsóhajtás testmode: hyphenate lebegésszerű testmode: hyphenate léggyök testmode: hyphenate léggyökér testmode: hyphenate lejtésszög testmode: hyphenate lejtésszöge testmode: hyphenate lesszabály testmode: hyphenate lemezstúdió testmode: hyphenate lengésszabály testmode: hyphenate lexikonnyi testmode: hyphenate légzésszám testmode: hyphenate légzésszerű testmode: hyphenate légzészavar testmode: hyphenate lépcsÅ‘sszárnyú testmode: hyphenate lépésszám testmode: hyphenate lépészaj testmode: hyphenate léptennyomon testmode: hyphenate levesszag testmode: hyphenate levesszagot testmode: hyphenate levesszedÅ‘ testmode: hyphenate liberty testmode: hyphenate licenccsalád testmode: hyphenate licencsértés testmode: hyphenate liszteszacskó testmode: hyphenate loggyűjtemény testmode: hyphenate lovasszázad testmode: hyphenate lovasszekeret testmode: hyphenate lökésszám testmode: hyphenate lökésszerű testmode: hyphenate lÅ‘porosszekerek testmode: hyphenate lÅ‘résszerű testmode: hyphenate lugasszerű testmode: hyphenate luxusszálloda testmode: hyphenate macskakaparásszerű testmode: hyphenate magánnyelvmesterek testmode: hyphenate magánnyaralók testmode: hyphenate magasszárú testmode: hyphenate magánnyugdíjpénztár testmode: hyphenate maggyűjteményrÅ‘l testmode: hyphenate mágnásszámba testmode: hyphenate mágnesszalag testmode: hyphenate mágnesszerű testmode: hyphenate mágneszár testmode: hyphenate malacság testmode: hyphenate malacsült testmode: hyphenate málhásszekér testmode: hyphenate málhásszekereiket testmode: hyphenate mandarinnyelv testmode: hyphenate Marosszék testmode: hyphenate Marosszentgyörgy testmode: hyphenate Maroszug testmode: hyphenate Martraversszal testmode: hyphenate matracsor testmode: hyphenate másszínű testmode: hyphenate másszor testmode: hyphenate másszóval testmode: hyphenate másszÅ‘rűek testmode: hyphenate mécsesszem testmode: hyphenate medresszék testmode: hyphenate megfázásszerű testmode: hyphenate meggybefÅ‘tt testmode: hyphenate meggyel testmode: hyphenate meggyen testmode: hyphenate meggyes testmode: hyphenate Meggyesi testmode: hyphenate meggyet testmode: hyphenate meggyfa testmode: hyphenate meggyhez testmode: hyphenate meggyízű testmode: hyphenate meggyként testmode: hyphenate meggylekvár testmode: hyphenate meggymag testmode: hyphenate meggynek testmode: hyphenate meggypiros testmode: hyphenate meggysör testmode: hyphenate meggyszín testmode: hyphenate meggytÅ‘l testmode: hyphenate meggytÅ‘l testmode: hyphenate meggyvörös testmode: hyphenate meggyzÅ‘ testmode: hyphenate meglepetésszoftver testmode: hyphenate méhesszín testmode: hyphenate méhesszínben testmode: hyphenate ménesszárnyékok testmode: hyphenate méreggyökeret testmode: hyphenate méreggyökérré testmode: hyphenate méreggyümölccsé testmode: hyphenate mérkÅ‘zésszervezÅ‘ testmode: hyphenate mérleggyár testmode: hyphenate meszesszürke testmode: hyphenate mézsárga testmode: hyphenate mézser testmode: hyphenate mézsör testmode: hyphenate Mikosszéplak testmode: hyphenate mikulásszerkó testmode: hyphenate mikrofonnyílás testmode: hyphenate mikronnyi testmode: hyphenate mitesszer testmode: hyphenate mitugrásszal testmode: hyphenate mohaszöld testmode: hyphenate molosszer testmode: hyphenate mókusszerű testmode: hyphenate mókusszÅ‘r testmode: hyphenate motorosszán testmode: hyphenate mozgásszerű testmode: hyphenate mozgászavar testmode: hyphenate munkásszálló testmode: hyphenate muzsikusszem testmode: hyphenate műjéggyár testmode: hyphenate működészavar testmode: hyphenate művelÅ‘désszervezÅ‘ testmode: hyphenate nyálasszájú testmode: hyphenate nászutazásszerű testmode: hyphenate nedvesszürke testmode: hyphenate négyzetyard testmode: hyphenate nehézség testmode: hyphenate nehézsúlyú testmode: hyphenate Nemesszalók testmode: hyphenate Nemesszentandrás testmode: hyphenate nemesszÅ‘rme testmode: hyphenate nemezsapka testmode: hyphenate nemezsapkát testmode: hyphenate nemezsátor testmode: hyphenate nercstóla testmode: hyphenate népességgyarapodás testmode: hyphenate neutronnyalábokat testmode: hyphenate nyargonccsizma testmode: hyphenate nyereggyártók testmode: hyphenate nyikkanásszerű testmode: hyphenate nyilasszervezet testmode: hyphenate nyílászáró testmode: hyphenate nyolcvannyolc testmode: hyphenate nyolccsatornás testmode: hyphenate nyolcsebességes testmode: hyphenate nyomásszabályzó testmode: hyphenate nyomásszerű testmode: hyphenate nyomásszinten testmode: hyphenate oktatásszociológiai testmode: hyphenate ordasszÅ‘rű testmode: hyphenate orgazmusszerű testmode: hyphenate óriásszalamandra testmode: hyphenate oroszlánnyom testmode: hyphenate orvosszakértÅ‘ testmode: hyphenate orvosszázados testmode: hyphenate orvosszemély testmode: hyphenate orvosszereikkel testmode: hyphenate orvosszerű testmode: hyphenate orvosszövetség testmode: hyphenate óceánnyi testmode: hyphenate óceánnal testmode: hyphenate óceánon testmode: hyphenate óvodásszintű testmode: hyphenate ökrösszekér testmode: hyphenate önállásszerű testmode: hyphenate önnyomása testmode: hyphenate önnyomatú testmode: hyphenate önnyugdíjazását testmode: hyphenate örökséggyűjteményben testmode: hyphenate örvénylésszerű testmode: hyphenate Å‘sszármazású testmode: hyphenate Å‘sszékelyek testmode: hyphenate összekeresgélt testmode: hyphenate összekéregetett testmode: hyphenate összekéregettek testmode: hyphenate Å‘sszel testmode: hyphenate Å‘sszellem testmode: hyphenate ötvösszakmai testmode: hyphenate Å‘zsebesen testmode: hyphenate Å‘zsörét testmode: hyphenate Å‘zsuta testmode: hyphenate padlásszoba testmode: hyphenate padlászugoly testmode: hyphenate palócság testmode: hyphenate paprikásszalonna testmode: hyphenate papirosszeletre testmode: hyphenate papucszápor testmode: hyphenate párnásszék testmode: hyphenate pátosszal testmode: hyphenate pedagógusszervezet testmode: hyphenate pedagógusszobába testmode: hyphenate pedagógusszövetség testmode: hyphenate pedagógussztrájk testmode: hyphenate pénzeszacskó testmode: hyphenate pénzeszközök testmode: hyphenate pénzeszsák testmode: hyphenate pénzzsidóságban testmode: hyphenate pénzsegély testmode: hyphenate pénzsorozat testmode: hyphenate pénzsóvár testmode: hyphenate pénzszűke testmode: hyphenate perecsütÅ‘nÅ‘ testmode: hyphenate pergamennyaláb testmode: hyphenate periódusszámának testmode: hyphenate piaccsarnok testmode: hyphenate Pilisszántó testmode: hyphenate Pilisszentkereszt testmode: hyphenate pirítósszeleteken testmode: hyphenate pirosszem testmode: hyphenate piroszászlós testmode: hyphenate piszkosszÅ‘ke testmode: hyphenate piszkosszürke testmode: hyphenate piszkoszöld testmode: hyphenate pisztolylövésszerűen testmode: hyphenate plüsszerű testmode: hyphenate plüsszsák testmode: hyphenate plüsszsiráf testmode: hyphenate plüsszsölyét testmode: hyphenate pokróccsík testmode: hyphenate polcsor testmode: hyphenate policájkomisszér testmode: hyphenate porcsérülés testmode: hyphenate porcelánnyúl testmode: hyphenate portásszoba testmode: hyphenate postásszakszervezet testmode: hyphenate postássztrájk testmode: hyphenate pólusszámhoz testmode: hyphenate precízség testmode: hyphenate présszerű testmode: hyphenate priamossza testmode: hyphenate princséged testmode: hyphenate proggyak testmode: hyphenate protonnyalábok testmode: hyphenate pszichológusszövetség testmode: hyphenate pulzusszám testmode: hyphenate puskásszakasz testmode: hyphenate puskásszázad testmode: hyphenate puskászászlóalj testmode: hyphenate rajzsablon testmode: hyphenate rajzsorozatban testmode: hyphenate rácság testmode: hyphenate rádiósszoba testmode: hyphenate rakásszámra testmode: hyphenate Rákosszentmihály testmode: hyphenate rándulásszerűen testmode: hyphenate rántásszag testmode: hyphenate rántásszerű testmode: hyphenate realitásszagú testmode: hyphenate recésszárú testmode: hyphenate régiséggyűjtÅ‘ testmode: hyphenate rémisszétek testmode: hyphenate részárás testmode: hyphenate rendelkezésszerű testmode: hyphenate repülésszerű testmode: hyphenate repülÅ‘sszárny testmode: hyphenate rézsut testmode: hyphenate ricinusszerű testmode: hyphenate ritkasággyűjtÅ‘ testmode: hyphenate ritmusszabályozó testmode: hyphenate ritmuszavar testmode: hyphenate rizszabálókat testmode: hyphenate robbanásszerű testmode: hyphenate robbanászajt testmode: hyphenate rongyosszélű testmode: hyphenate rosszemlékű testmode: hyphenate rothadásszag testmode: hyphenate rovásszerűen testmode: hyphenate rózsásszÅ‘kés testmode: hyphenate rozszabálás testmode: hyphenate rubinnyaklánc testmode: hyphenate ruhásszekrény testmode: hyphenate ruhásszobámé testmode: hyphenate szanitéccsoport testmode: hyphenate sárgásszínű testmode: hyphenate sasszárnyú testmode: hyphenate sasszeg testmode: hyphenate sásszéna testmode: hyphenate sásszerű testmode: hyphenate sasszömöd testmode: hyphenate sátáncsapat testmode: hyphenate szeggyár testmode: hyphenate selymesszÅ‘ke testmode: hyphenate sereggyűjtés testmode: hyphenate sertésszelet testmode: hyphenate sertésszűzpecsenyére testmode: hyphenate sertészsír testmode: hyphenate szénnyomokat testmode: hyphenate sonkásszelet testmode: hyphenate sonkásszerű testmode: hyphenate sonkászsemle testmode: hyphenate sorscsapásszerű testmode: hyphenate spanyolmeggyen testmode: hyphenate spiccszűrÅ‘be testmode: hyphenate stadionnyi testmode: hyphenate stílusszerű testmode: hyphenate stílusszerkesztÅ‘ testmode: hyphenate sugárzásszerű testmode: hyphenate sugárzásszintek testmode: hyphenate suhanccsürhe testmode: hyphenate suhancsereg testmode: hyphenate szaglásszék testmode: hyphenate szalonnyelv testmode: hyphenate szalonnyelven testmode: hyphenate szállodásszövetség testmode: hyphenate Szamosszeg testmode: hyphenate szárazság testmode: hyphenate szárazsült testmode: hyphenate szarvasszív testmode: hyphenate szarvaszsír testmode: hyphenate szénásszekér testmode: hyphenate szezonnyitó testmode: hyphenate szentségesszűzmáriám testmode: hyphenate szentséggyalázás testmode: hyphenate Szepesszombat testmode: hyphenate szerzÅ‘désszám testmode: hyphenate szerzÅ‘désszegés testmode: hyphenate szerzÅ‘désszegÅ‘ testmode: hyphenate szétossza testmode: hyphenate szétosszák testmode: hyphenate Szilvásszentmárton testmode: hyphenate szindikátusszervezÅ‘ testmode: hyphenate színnyomás testmode: hyphenate szocsegély testmode: hyphenate szódásszifon testmode: hyphenate szólásszabadság testmode: hyphenate szokásszerű testmode: hyphenate szólásszapulás testmode: hyphenate szórakozásszámba testmode: hyphenate szorongásszerű testmode: hyphenate szorongásszint testmode: hyphenate szöggyár testmode: hyphenate szöveggyűjtemény testmode: hyphenate szÅ‘nyeggyár testmode: hyphenate szúnyoggyérítés testmode: hyphenate szúrásszerű testmode: hyphenate szúrósszemű testmode: hyphenate születésszabályozás testmode: hyphenate szűzsült testmode: hyphenate taxisszurkálás testmode: hyphenate tágulásszabály testmode: hyphenate társalgásszámba testmode: hyphenate taggyűlés testmode: hyphenate tánccsoport testmode: hyphenate társalgásszerű testmode: hyphenate társszekér testmode: hyphenate társszövetség testmode: hyphenate tehetséggyár testmode: hyphenate teásszervíz testmode: hyphenate tejfölösszájú testmode: hyphenate teknÅ‘sszámlálás testmode: hyphenate településszerkezet testmode: hyphenate települészónájára testmode: hyphenate templomosszakértÅ‘ testmode: hyphenate tetszészaj testmode: hyphenate tetszészsivaj testmode: hyphenate tigrisszemek testmode: hyphenate tigrisszerű testmode: hyphenate tisztséggyűjtemény testmode: hyphenate tipusszám testmode: hyphenate típusszám testmode: hyphenate típusszöveg testmode: hyphenate típuszubbony testmode: hyphenate titkosszolgálat testmode: hyphenate tizedesszállás testmode: hyphenate tízgallonnyi testmode: hyphenate tojászápor testmode: hyphenate tojásszerű testmode: hyphenate topázsárgája testmode: hyphenate torzság testmode: hyphenate többesszám testmode: hyphenate töltésszabályozó testmode: hyphenate töltésszám testmode: hyphenate töltésszerűen testmode: hyphenate töltésszakasz testmode: hyphenate törlesszem testmode: hyphenate tövisszár testmode: hyphenate tövisszúrás testmode: hyphenate tÅ‘zeggyapot testmode: hyphenate trichinnyavalya testmode: hyphenate tudásszint testmode: hyphenate tudásszomj testmode: hyphenate turizmusszektor testmode: hyphenate tükrösszélű testmode: hyphenate tüntetésszerűen testmode: hyphenate tüzesszemű testmode: hyphenate tűzzsonglÅ‘r testmode: hyphenate tűzsebesség testmode: hyphenate tűzsugár testmode: hyphenate udvaroncsereg testmode: hyphenate ugrásszerűen testmode: hyphenate ugrásszögének testmode: hyphenate újoncság testmode: hyphenate ulánusszázad testmode: hyphenate university testmode: hyphenate utalásszerűen testmode: hyphenate utalásszinten testmode: hyphenate utánpótlásszállítmánnyal testmode: hyphenate utánnyomás testmode: hyphenate utasszállító testmode: hyphenate utasszám testmode: hyphenate utasszerep testmode: hyphenate utasszint testmode: hyphenate utasszolgálat testmode: hyphenate utasításszavakkal testmode: hyphenate utazásszerű testmode: hyphenate utazásszervezÅ‘ testmode: hyphenate ülésszak testmode: hyphenate ülésszak testmode: hyphenate üstökösszerű testmode: hyphenate ütésszerű testmode: hyphenate ütészápor testmode: hyphenate üveggyapot testmode: hyphenate üveggyártás testmode: hyphenate üveggyöngy testmode: hyphenate üveggyűrű testmode: hyphenate vagdalthússzerű testmode: hyphenate vagonnyi testmode: hyphenate vakarccsal testmode: hyphenate vallásszabadság testmode: hyphenate vallásszociológus testmode: hyphenate vallomásszámba testmode: hyphenate vállpereccsontjából testmode: hyphenate Vámosszabadi testmode: hyphenate városszépe testmode: hyphenate városszerte testmode: hyphenate várossziluett testmode: hyphenate városzajon testmode: hyphenate városzajt testmode: hyphenate városzsarnok testmode: hyphenate vasasszakosztály testmode: hyphenate vasutassztrájk testmode: hyphenate vasszállítmány testmode: hyphenate Vaszar testmode: hyphenate Vázsnok testmode: hyphenate végiggyalogolhatja testmode: hyphenate végiggyakorolni testmode: hyphenate vendéggyermek testmode: hyphenate vendéggyülekezet testmode: hyphenate veresszakállú testmode: hyphenate veresszemű testmode: hyphenate versszak testmode: hyphenate versszakában testmode: hyphenate versszerű testmode: hyphenate versszeretÅ‘ testmode: hyphenate vértesszázad testmode: hyphenate vértesszázadbeli testmode: hyphenate VértesszÅ‘lÅ‘s testmode: hyphenate vetésszalag testmode: hyphenate viccsor testmode: hyphenate világosszÅ‘ke testmode: hyphenate világosszürke testmode: hyphenate világossággyújtásra testmode: hyphenate világgyűlölÅ‘ testmode: hyphenate villanásszerűen testmode: hyphenate villamosszék testmode: hyphenate villamosszerű testmode: hyphenate visszaélésszerű testmode: hyphenate virággyapjaikat testmode: hyphenate virággyűjtemény testmode: hyphenate virággyűjtés testmode: hyphenate virgoncság testmode: hyphenate vírusszerű testmode: hyphenate visually testmode: hyphenate viselkedésszerű testmode: hyphenate viselkedészavar testmode: hyphenate visszér testmode: hyphenate visszeres testmode: hyphenate visszérműtét testmode: hyphenate vitorlásszezon testmode: hyphenate vitrinnyi testmode: hyphenate vizeleteszacskó testmode: hyphenate vizeszsemle testmode: hyphenate vízfolyásszerű testmode: hyphenate vízsáv testmode: hyphenate vízsivatag testmode: hyphenate vízesésszerűen testmode: hyphenate vízsodor testmode: hyphenate vonósszerenád testmode: hyphenate vonószenekar testmode: hyphenate vörhenyesszÅ‘ke testmode: hyphenate vörösesszÅ‘ke testmode: hyphenate vörösesszÅ‘ke testmode: hyphenate vörösszakállú testmode: hyphenate vörösszem testmode: hyphenate vörösszínű testmode: hyphenate vörösszÅ‘ke testmode: hyphenate vöröszászló testmode: hyphenate webesszolgáltatás testmode: hyphenate zaklatásszámba testmode: hyphenate záloggyűrűmet testmode: hyphenate zavarosszürke testmode: hyphenate zlotyról testmode: hyphenate zökkenésszerű testmode: hyphenate zörgésszerű testmode: hyphenate zuhanásszerű testmode: hyphenate zsarolásszerű testmode: hyphenate zsírosszén testmode: hyphenate zsoldosszokás liblouis-2.5.3/tests/harnessSources/en-GB-g2_harness_source.txt0000664000175000017500000000215212161041523021474 00000000000000tables: en-GB-g2.ctb comment: an example of a simple message being forward translated, and contractions expected. the cat sat on the mat comment: same as above example. to the moon comment: an example of where text should generally be contracted, accept at the point of the cursor. comment: also specify where the computer cursor is at, and where we expect the braille cursor to be. brlCursorPos: 2 cursorPos: 4 mode: compbrlAtCursor you went to comment: an example of testing simple backtranslation. testmode: backtranslate the cat sat on the mat comment: same as above example. testmode: backtranslate to the moon comment: an example where the text to be backtranslated is grade 2, but the word at the cursor is grade 1. brlCursorPos: 2 cursorPos: 4 mode: compbrlAtCursor testmode: backtranslate you went to comment: An example to reproduce: comment: https://bugzilla.gnome.org/show_bug.cgi?id=651217 comment: note that the braille cursor is very squeued. comment: computer cursor is at pos 13, expected braille cursor at 15, but actually at 17. brlCursorPos: 15 cursorPos: 13 mode: compbrlAtCursor Pappa Pappa help me. liblouis-2.5.3/tests/harnessSources/Makefile.am0000664000175000017500000000037012161041523016466 00000000000000EXTRA_DIST = \ en-GB-g2_harness_source.txt \ ethio-g1_harness_sources.txt \ hu-hu-comp8_harness_source.txt\ hu-hu-g1_harness_source.txt \ hu-hu-g1-hyph_harness_source.txt \ iu-ca-g1_harness_source.txt \ ta-ta-g1_harness_source.txt liblouis-2.5.3/tests/harnessSources/hu-hu-comp8_harness_source.txt0000664000175000017500000000527112161041523022355 00000000000000tables: hu-hu-comp8.ctb adásszerű testmode: backtranslate adásszerű adásszünet testmode: backtranslate adásszünet adósszámla testmode: backtranslate adósszámla Agyagosszergény testmode: backtranslate Agyagosszergény agyaggyűrűiken testmode: backtranslate agyaggyűrűiken agyonnyom testmode: backtranslate agyonnyom comment: this testcase testing all accented letters árvíztűrÅ‘tükörfúrógép testmode: backtranslate comment: this testcase testing all accented letters back translation árvíztűrÅ‘tükörfúrógép comment: this testcase containing a sentence with have normal characters and numbers. A telefonszámom: 06-1-256-256. testmode: backtranslate comment: this testcase containing a sentence with have normal characters and numbers, but testing back translation. A telefonszámom: 06-1-256-256. A földrengés 7,5 erÅ‘sségű volt. testmode: backtranslate A földrengés 7,5 erÅ‘sségű volt. Tamás még nem tudta, hogy mi vár rá. testmode: backtranslate Tamás még nem tudta, hogy mi vár rá. "Tamás még nem tudta, hogy mi vár rá." testmode: backtranslate "Tamás még nem tudta, hogy mi vár rá." I don't no why happened this problem. testmode: backtranslate I don't no why happened this problem. Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘. testmode: backtranslate Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘. - A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban. testmode: backtranslate - A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban. A vételár 1 €. testmode: backtranslate A vételár 1 €. De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat). testmode: backtranslate De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat). A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke. testmode: backtranslate A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke. A pontos idÅ‘ 11:45 perc. testmode: backtranslate A pontos idÅ‘ 11:45 perc. •A kiadás újdonságai. testmode: backtranslate •A kiadás újdonságai. A hu_list fájl nem létezik. testmode: backtranslate A hu_list fájl nem létezik. Az e-mail címem: akarmi@akarmi.hu. testmode: backtranslate Az e-mail címem: akarmi@akarmi.hu. liblouis-2.5.3/tests/harnessSources/iu-ca-g1_harness_source.txt0000664000175000017500000000056612161041523021610 00000000000000tables: iu-ca-g1.ctb á áƒ á… áŠ á¯ á± á³ á¸ á‘‰ ᑌ ᑎ á‘ á‘• ᑦ á‘« á‘­ ᑯ ᑲ á’ƒ á’‰ á’‹ á’ á’ á’¡ á’£ á’¥ á’§ á’ª á’» á“€ á“‚ á“„ ᓇ á“ á“­ ᓯ ᓱ á“´ á”… á““ á“• á“— ᓚ ᓪ ᔦ ᔨ ᔪ á”­ ᔾ á•“ á•• á•— á•™ á• á•‚ ᕆ ᕈ á•‹ ᕠᙯ á•¿ á– á–ƒ á–… á– á–‘ á–“ áŠá–• á™± ᙳ ᙵ áŠá–– á–  á–¢ á–¤ áŠá–¦ á•¼áƒ á•¼á… á•¼áŠ ' liblouis-2.5.3/tests/harnessSources/Makefile.in0000664000175000017500000004721412161044154016512 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tests/harnessSources DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ en-GB-g2_harness_source.txt \ ethio-g1_harness_sources.txt \ hu-hu-comp8_harness_source.txt\ hu-hu-g1_harness_source.txt \ hu-hu-g1-hyph_harness_source.txt \ iu-ca-g1_harness_source.txt \ ta-ta-g1_harness_source.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/harnessSources/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/harnessSources/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tests/harnessSources/hu-hu-g1_harness_source.txt0000664000175000017500000015410512161041523021637 00000000000000tables: hu-hu-g1.ctb accessibility testmode: backtranslate accessibility adásszerű testmode: backtranslate adásszerű adásszünet testmode: backtranslate adásszünet adászárásig testmode: backtranslate adászárásig adósszámla testmode: backtranslate adósszámla Agyagosszergény testmode: backtranslate Agyagosszergény agyaggyűrűiken testmode: backtranslate agyaggyűrűiken agyonnyom testmode: backtranslate agyonnyom agyonnyúzott testmode: backtranslate agyonnyúzott agyonnyűtt testmode: backtranslate agyonnyűtt ágyússzekerek testmode: backtranslate ágyússzekerek ájulásszerű testmode: backtranslate ájulásszerű akácsövény testmode: backtranslate akácsövény ákácsövény testmode: backtranslate ákácsövény alásszolgája testmode: backtranslate alásszolgája alásszolgájuk testmode: backtranslate alásszolgájuk alkalmazásszerver testmode: backtranslate alkalmazásszerver alkalmazásszintű testmode: backtranslate alkalmazásszintű állásszög testmode: backtranslate állásszög almásszürke testmode: backtranslate almásszürke alvásszegény testmode: backtranslate alvásszegény alvásszükséglete testmode: backtranslate alvásszükséglete alvászavar testmode: backtranslate alvászavar anyaggyÅ‘zÅ‘ testmode: backtranslate anyaggyÅ‘zÅ‘ anyaggyűjtés testmode: backtranslate anyaggyűjtés aranyosszÅ‘ke testmode: backtranslate aranyosszÅ‘ke árboccsúcs testmode: backtranslate árboccsúcs árbóccsúcs testmode: backtranslate árbóccsúcs árbocsudarat testmode: backtranslate árbocsudarat arcüreggyulladás testmode: backtranslate arcüreggyulladás arccsont testmode: backtranslate arccsont arcseb testmode: backtranslate arcseb arcsebe testmode: backtranslate arcsebe arcsérülés testmode: backtranslate arcsérülés arzénnyom testmode: backtranslate arzénnyom áremelkedésszerű testmode: backtranslate áremelkedésszerű árgusszemű testmode: backtranslate árgusszemű árrésszabályt testmode: backtranslate árrésszabályt árvízsújtotta testmode: backtranslate árvízsújtotta átlaggyerekre testmode: backtranslate átlaggyerekre autósszemüveg testmode: backtranslate autósszemüveg autósszÅ‘nyeg testmode: backtranslate autósszÅ‘nyeg azonnyomban testmode: backtranslate azonnyomban bádoggyűjtemény testmode: backtranslate bádoggyűjtemény Bánnyíres testmode: backtranslate Bánnyíres bázisszint testmode: backtranslate bázisszint Barccsal testmode: backtranslate Barccsal barkácszene testmode: backtranslate barkácszene barnásszÅ‘ke testmode: backtranslate barnásszÅ‘ke barnásszÅ‘két testmode: backtranslate barnásszÅ‘két barnásszürke testmode: backtranslate barnásszürke barnesszal testmode: backtranslate barnesszal baromsággyűjtemény testmode: backtranslate baromsággyűjtemény basszusszerű testmode: backtranslate basszusszerű basszusszintetizátor testmode: backtranslate basszusszintetizátor becslésszerűen testmode: backtranslate becslésszerűen bekezdésszintű testmode: backtranslate bekezdésszintű Békésszentandrás testmode: backtranslate Békésszentandrás bélésszövet testmode: backtranslate bélésszövet bélyeggyűjtemény testmode: backtranslate bélyeggyűjtemény bércsüveg testmode: backtranslate bércsüveg berendezésszerű testmode: backtranslate berendezésszerű berendezésszett testmode: backtranslate berendezésszett beteggyógyász testmode: backtranslate beteggyógyász bilincszörgés testmode: backtranslate bilincszörgés binsenggyökér testmode: backtranslate binsenggyökér blueszene testmode: backtranslate blueszene biznisszé testmode: backtranslate biznisszé bohócsapkája testmode: backtranslate bohócsapkája bonbonmeggy testmode: backtranslate bonbonmeggy borsszem testmode: backtranslate borsszem borsszóró testmode: backtranslate borsszóró borzasszÅ‘rű testmode: backtranslate borzasszÅ‘rű borzzsír testmode: backtranslate borzzsír bÅ‘gésszerű testmode: backtranslate bÅ‘gésszerű börtönnyelve testmode: backtranslate börtönnyelve börtönnyíláson, börtönnyitó testmode: backtranslate börtönnyíláson, börtönnyitó brekegésszerű testmode: backtranslate brekegésszerű Briganty testmode: backtranslate Briganty bronzsáska testmode: backtranslate bronzsáska bronzsáskák testmode: backtranslate bronzsáskák bronzsasokkal testmode: backtranslate bronzsasokkal bronzsisak testmode: backtranslate bronzsisak bukásszámba testmode: backtranslate bukásszámba búcsújárásszerű testmode: backtranslate búcsújárásszerű bűnnyomok testmode: backtranslate bűnnyomok chipseszacskó testmode: backtranslate chipseszacskó ciripelésszerűen testmode: backtranslate ciripelésszerűen curiosity testmode: backtranslate curiosity csapásszám testmode: backtranslate csapásszám csárdásszóló testmode: backtranslate csárdásszóló csattanásszerű testmode: backtranslate csattanásszerű csavarásszerű testmode: backtranslate csavarásszerű csikósszámadó testmode: backtranslate csikósszámadó csillaggyárnak testmode: backtranslate csillaggyárnak csipkésszélű testmode: backtranslate csipkésszélű csípésszám testmode: backtranslate csípésszám csobbanásszerű testmode: backtranslate csobbanásszerű csuklásszerű testmode: backtranslate csuklásszerű diósszilágyi testmode: backtranslate Diósszilágyi disszertáció testmode: backtranslate disszertáció dobpergésszerűen testmode: backtranslate dobpergésszerűen döggyapjú testmode: backtranslate döggyapjú döggyárnak testmode: backtranslate döggyárnak dÅ‘lésszög testmode: backtranslate dÅ‘lésszög dörgésszerű testmode: backtranslate dörgésszerű dörgésszerű testmode: backtranslate dörgésszerű dörzszörej testmode: backtranslate dörzszörej dragonyosszázad testmode: backtranslate dragonyosszázad dragonyoszászlóalj testmode: backtranslate dragonyoszászlóalj droggyanús testmode: backtranslate droggyanús doppinggyanú testmode: backtranslate doppinggyanú dússzakállú testmode: backtranslate dússzakállú édesszájú testmode: backtranslate édesszájú édesszesztestvér testmode: backtranslate édesszesztestvér édességgyártók testmode: backtranslate édességgyártók égésszabály testmode: backtranslate égésszabály égésszag testmode: backtranslate égésszag égésszám testmode: backtranslate égésszám égésszigetelés testmode: backtranslate égésszigetelés edzésszámot testmode: backtranslate edzésszámot effektusszerűen testmode: backtranslate effektusszerűen egyenesszálú testmode: backtranslate egyenesszálú egyenesszárnyúak testmode: backtranslate egyenesszárnyúak egyenesszög testmode: backtranslate egyenesszög egyezség testmode: backtranslate egyezség egyesszámban testmode: backtranslate egyesszámban egységgyertyából testmode: backtranslate egységgyertyából éhesszájat testmode: backtranslate éhesszájat ejtÅ‘ernyÅ‘sszárnyak testmode: backtranslate ejtÅ‘ernyÅ‘sszárnyak ejtÅ‘ernyÅ‘sszázad testmode: backtranslate ejtÅ‘ernyÅ‘sszázad ejtÅ‘ernyÅ‘szászlóalj testmode: backtranslate ejtÅ‘ernyÅ‘szászlóalj ékesszólás testmode: backtranslate ékesszólás ékesszóló testmode: backtranslate ékesszóló ekhósszekér testmode: backtranslate ekhósszekér ekhósszekerek testmode: backtranslate ekhósszekerek elektronnyalábra testmode: backtranslate elektronnyalábra eleséggyűjtés testmode: backtranslate eleséggyűjtés élesszemű testmode: backtranslate élesszemű ellátásszerű testmode: backtranslate ellátásszerű ellenállásszekrény, ellenállászóna testmode: backtranslate ellenállásszekrény, ellenállászóna ellennyilatkozat testmode: backtranslate ellennyilatkozat ellennyomás testmode: backtranslate ellennyomás elméncség testmode: backtranslate elméncség előírásszerű testmode: backtranslate előírásszerű elrémisszék testmode: backtranslate elrémisszék emberhússzagot testmode: backtranslate emberhússzagot emelésszerű testmode: backtranslate emelésszerű enyveszsinór testmode: backtranslate enyveszsinór eposszal testmode: backtranslate eposszal érccsapadék, érccsengés, érccsatorna testmode: backtranslate érccsapadék, érccsengés, érccsatorna ércsalak testmode: backtranslate ércsalak ércsas testmode: backtranslate ércsas ércsarukkal testmode: backtranslate ércsarukkal ércselyem testmode: backtranslate ércselyem ércsíp, ércsípjába, ércsípláda testmode: backtranslate ércsíp, ércsípjába, ércsípláda ércsíptetÅ‘ testmode: backtranslate ércsíptetÅ‘ ércsisak testmode: backtranslate ércsisak ércsodrony testmode: backtranslate ércsodrony erÅ‘sítésszabályozás testmode: backtranslate erÅ‘sítésszabályozás erÅ‘forrászabáló testmode: backtranslate erÅ‘forrászabáló erÅ‘lködésszagúnak testmode: backtranslate erÅ‘lködésszagúnak érzékelésszint testmode: backtranslate érzékelésszint ésszerű testmode: backtranslate ésszerű eszközsor, eszközsorán testmode: backtranslate eszközsor, eszközsorán evészavar testmode: backtranslate evészavar fagyosszentek testmode: backtranslate fagyosszentek fáklyászene testmode: backtranslate fáklyászene farkasszáj testmode: backtranslate farkasszáj farkasszem testmode: backtranslate farkasszem farkasszemet testmode: backtranslate farkasszemet Farkassziget, testmode: backtranslate Farkassziget, fásszárú testmode: backtranslate fásszárú fázisszögnek testmode: backtranslate fázisszögnek fegyenccsoport testmode: backtranslate fegyenccsoport fegyencsapkát testmode: backtranslate fegyencsapkát fehéresszÅ‘ke, fehéresszürke testmode: backtranslate fehéresszÅ‘ke, fehéresszürke feketésszürke testmode: backtranslate feketésszürke feldolgozászenekar testmode: backtranslate feldolgozászenekar feleséggyilkos testmode: backtranslate feleséggyilkos felfedezésszámba testmode: backtranslate felfedezésszámba felséggyilkolás testmode: backtranslate felséggyilkolás felsorolásszerűen testmode: backtranslate felsorolásszerűen felszerelésszettet testmode: backtranslate felszerelésszettet feltevésszerűen testmode: backtranslate feltevésszerűen fertÅ‘zésszerű testmode: backtranslate fertÅ‘zésszerű fémesszürke testmode: backtranslate fémesszürke filccsizma testmode: backtranslate filccsizma Fifty-Fifty testmode: backtranslate Fifty-Fifty filigránnyelű testmode: backtranslate filigránnyelű fogasszeg testmode: backtranslate fogasszeg fogfájásszerű testmode: backtranslate fogfájásszerű foglalkozásszerű testmode: backtranslate foglalkozásszerű foggyalu testmode: backtranslate foggyalu foggyökér testmode: backtranslate foggyökér foggyulladás testmode: backtranslate foggyulladás foggyűrű testmode: backtranslate foggyűrű forgásszabály testmode: backtranslate forgásszabály formánsszintetizátorok testmode: backtranslate formánsszintetizátorok forrásszöveg testmode: backtranslate forrásszöveg fosszínű testmode: backtranslate fosszínű földcsuszamlásszerűen testmode: backtranslate földcsuszamlásszerűen fölélesszem testmode: backtranslate fölélesszem fÅ‘zÅ‘kalánnyelet testmode: backtranslate fÅ‘zÅ‘kalánnyelet fuvarosszekér testmode: backtranslate fuvarosszekér fúvósszekció testmode: backtranslate fúvósszekció fúvósszerszám testmode: backtranslate fúvósszerszám fúvósszimfónia testmode: backtranslate fúvósszimfónia fúvószenekar testmode: backtranslate fúvószenekar fűtésszag testmode: backtranslate fűtésszag garaboncsereg testmode: backtranslate garaboncsereg gázspray testmode: backtranslate gázspray gátstop testmode: backtranslate gázstop gázsugár testmode: backtranslate gázsugár geggyáros testmode: backtranslate geggyáros gerincsérült testmode: backtranslate gerincsérült gerincsérv testmode: backtranslate gerincsérv ginszenggyökér testmode: backtranslate ginszenggyökér ginzenggyökér testmode: backtranslate ginzenggyökér Gombosszeg testmode: backtranslate Gombosszeg gondviselésszerű testmode: backtranslate gondviselésszerű gÅ‘zsíp testmode: backtranslate gÅ‘zsíp gÅ‘zsugár testmode: backtranslate gÅ‘zsugár gÅ‘zszivattyú testmode: backtranslate gÅ‘zszivattyú gránátoszászlóalj testmode: backtranslate gránátoszászlóalj gúnyversszerzÅ‘ testmode: backtranslate gúnyversszerzÅ‘ gyalogosszázad testmode: backtranslate gyalogosszázad gyalogoszászlóalj, testmode: backtranslate gyalogoszászlóalj, gyorsszárnyú testmode: backtranslate gyorsszárnyú gyorsszekér testmode: backtranslate gyorsszekér gyorsszűrÅ‘ testmode: backtranslate gyorsszűrÅ‘ gyújtásszabály testmode: backtranslate gyújtásszabály gyújtászsinór testmode: backtranslate gyújtászsinór gyülekezésszabadságot testmode: backtranslate gyülekezésszabadságot gyűlésszíne testmode: backtranslate gyűlésszíne habarccsal testmode: backtranslate habarccsal habitusszerűen testmode: backtranslate habitusszerűen hadianyaggyár testmode: backtranslate hadianyaggyár hadsereggyűjtés testmode: backtranslate hadsereggyűjtés hajlásszög testmode: backtranslate hajlásszög hajósszekerce testmode: backtranslate hajósszekerce hajósszemélyzet testmode: backtranslate hajósszemélyzet hangyamászásszerű testmode: backtranslate hangyamászásszerű hamisszínes testmode: backtranslate hamisszínes hallászavar testmode: backtranslate hallászavar halottasszekér testmode: backtranslate halottasszekér halottasszoba testmode: backtranslate halottasszoba halottasszobába testmode: backtranslate halottasszobába hamvasszÅ‘ke testmode: backtranslate hamvasszÅ‘ke hamvasszürke testmode: backtranslate hamvasszürke hanggyakorlat testmode: backtranslate hanggyakorlat hányásszag testmode: backtranslate hányásszag haragoszöld testmode: backtranslate haragoszöld haranggyárosok testmode: backtranslate haranggyárosok harcosszellem testmode: backtranslate harcosszellem harccselekmény testmode: backtranslate harccselekmény harccsoport testmode: backtranslate harccsoport harcsor testmode: backtranslate harcsor harmincsornyi testmode: backtranslate harmincsornyi hármasszámú testmode: backtranslate hármasszámú hármasszak testmode: backtranslate hármasszak Hármassziget testmode: backtranslate Hármassziget hársszén testmode: backtranslate hársszén hársszenet testmode: backtranslate hársszenet hártyásszárnyú testmode: backtranslate hártyásszárnyú hasszÅ‘rzet testmode: backtranslate hasszÅ‘rzet hasszél testmode: backtranslate hasszél hasisszagot testmode: backtranslate hasisszagot hatásszélesség testmode: backtranslate hatásszélesség hatásszünet testmode: backtranslate hatásszünet házsárkodását testmode: backtranslate házsárkodását hazugsággyár testmode: backtranslate hazugsággyár hegyesszög testmode: backtranslate hegyesszög hegyszorosszerű testmode: backtranslate hegyszorosszerű hekusszagot testmode: backtranslate hekusszagot hentesszaktanfolyamát testmode: backtranslate hentesszaktanfolyamát hirdetésszagú testmode: backtranslate hirdetésszagú hirdetésszöveg testmode: backtranslate hirdetésszöveg hivatásszerűen testmode: backtranslate hivatásszerűen hivatkozásszerű testmode: backtranslate hivatkozásszerű hívásszűrés testmode: backtranslate hívásszűrés hízelkedésszámba testmode: backtranslate hízelkedésszámba hólyaggyulladás testmode: backtranslate hólyaggyulladás hörgésszerű testmode: backtranslate hörgésszerű hÅ‘sszínész testmode: backtranslate hÅ‘sszínész hÅ‘sszövetség testmode: backtranslate hÅ‘sszövetség húslevesszag testmode: backtranslate húslevesszag hússzaft testmode: backtranslate hússzaft hússzag testmode: backtranslate hússzag hússzagú testmode: backtranslate hússzagú hússzállítmány testmode: backtranslate hússzállítmány hússzállító testmode: backtranslate hússzállító hússzalonna testmode: backtranslate hússzalonna hússzekrény testmode: backtranslate hússzekrény hússzelet testmode: backtranslate hússzelet Hússziget testmode: backtranslate Hússziget hússzínű testmode: backtranslate hússzínű Hússzövetség testmode: backtranslate Hússzövetség hűséggyűrűsök testmode: backtranslate hűséggyűrűsök hűvösszemű testmode: backtranslate hűvösszemű ideggyengeség testmode: backtranslate ideggyengeség ideggyógyászat testmode: backtranslate ideggyógyászat ideggyógyintézet testmode: backtranslate ideggyógyintézet ideggyönge testmode: backtranslate ideggyönge ideggyötrÅ‘ testmode: backtranslate ideggyötrÅ‘ ideggyulladás testmode: backtranslate ideggyulladás identitászavar testmode: backtranslate identitászavar idÅ‘járásszolgálat testmode: backtranslate idÅ‘járásszolgálat imádsággyűjtemény testmode: backtranslate imádsággyűjtemény impulzusszélességét testmode: backtranslate impulzusszélességét inasszerep testmode: backtranslate inasszerep inasszerepet testmode: backtranslate inasszerepet inasszeretetet testmode: backtranslate inasszeretetet indiánnyelv testmode: backtranslate indiánnyelv információsszabadság testmode: backtranslate információsszabadság ingyennyelvoktatás testmode: backtranslate ingyennyelvoktatás ínnyújtó, testmode: backtranslate ínnyújtó, ínnyújtót testmode: backtranslate ínnyújtót ínyencség testmode: backtranslate ínyencség írásszeretet, testmode: backtranslate írásszeretet, ismétlésszám testmode: backtranslate ismétlésszám irtásszél testmode: backtranslate irtásszél istennyila testmode: backtranslate istennyila járásszerű testmode: backtranslate járásszerű járásszékhely testmode: backtranslate járásszékhely jáspisszobor testmode: backtranslate jáspisszobor jegeccsoport testmode: backtranslate jegeccsoport jéggyártás testmode: backtranslate jéggyártás jelenésszerű testmode: backtranslate jelenésszerű jelentésszerű testmode: backtranslate jelentésszerű jelentésszint testmode: backtranslate jelentésszint jelzésszerű testmode: backtranslate jelzésszerű jósszavai, testmode: backtranslate jósszavai, jósszelleme, testmode: backtranslate jósszelleme, kabinnyíláson testmode: backtranslate kabinnyíláson kabinnyomás testmode: backtranslate kabinnyomás dizájnnyelv testmode: backtranslate dizájnnyelv dizájnnyaklánc testmode: backtranslate dizájnnyaklánc kakasszó testmode: backtranslate kakasszó kalapácszengés testmode: backtranslate kalapácszengés kalapácszongora testmode: backtranslate kalapácszongora kamionnyi testmode: backtranslate kamionnyi kaparásszerű testmode: backtranslate kaparásszerű Kapolcs testmode: backtranslate Kapolcs KaposszekcsÅ‘ testmode: backtranslate KaposszekcsÅ‘ Kaposszerdahely testmode: backtranslate Kaposszerdahely kapusszoba testmode: backtranslate kapusszoba karosszék testmode: backtranslate karosszék kartácszápor testmode: backtranslate kartácszápor kartonnyi testmode: backtranslate kartonnyi kasszék testmode: backtranslate kasszék katalógusszám testmode: backtranslate katalógusszám katekizmusszerű testmode: backtranslate katekizmusszerű kattintásszám testmode: backtranslate kattintásszám kavarásszerű testmode: backtranslate kavarásszerű kavicsszerű testmode: backtranslate kavicsszerű kavicszápor testmode: backtranslate kavicszápor kavicszátony testmode: backtranslate kavicszátony kavicszuzalék testmode: backtranslate kavicszuzalék kékesszürke testmode: backtranslate kékesszürke Kemenesszentmárton testmode: backtranslate Kemenesszentmárton Kemenesszentpéter testmode: backtranslate Kemenesszentpéter képmásszerű testmode: backtranslate képmásszerű képváltásszámot testmode: backtranslate képváltásszámot képzésszerű testmode: backtranslate képzésszerű képzésszervezés testmode: backtranslate képzésszervezés kerekesszék testmode: backtranslate kerekesszék keresésszolgáltató testmode: backtranslate keresésszolgáltató kérdészápor testmode: backtranslate kérdészápor kérésszerűen testmode: backtranslate kérésszerűen kerítésszaggató testmode: backtranslate kerítésszaggató késszúrás testmode: backtranslate késszúrás ketreccsapda testmode: backtranslate ketreccsapda kevésszavú testmode: backtranslate kevésszavú kevésszer testmode: backtranslate kevésszer kiadászárolás testmode: backtranslate kiadászárolás kifejlesszem testmode: backtranslate kifejlesszem kihívásszerű testmode: backtranslate kihívásszerű kilenccsatorna testmode: backtranslate kilenccsatorna kilincszörgést testmode: backtranslate kilincszörgést Kisszállás testmode: backtranslate Kisszállás kisszámú testmode: backtranslate kisszámú Kisszeben testmode: backtranslate Kisszeben kisszínes testmode: backtranslate kisszínes kisszék testmode: backtranslate kisszék kisszekrény testmode: backtranslate kisszekrény Kisszentmárton testmode: backtranslate Kisszentmárton kisszerű testmode: backtranslate kisszerű Kissziget testmode: backtranslate Kissziget kisszobában testmode: backtranslate kisszobában kisszótár testmode: backtranslate kisszótár Kiszombor testmode: backtranslate Kiszombor kisszövetkezet testmode: backtranslate kisszövetkezet kiszögellésszerűen testmode: backtranslate kiszögellésszerűen Kiszsidány testmode: backtranslate Kiszsidány kitörésszerű testmode: backtranslate kitörésszerű kitüntetésszalagokat testmode: backtranslate kitüntetésszalagokat kivégzésszerűen testmode: backtranslate kivégzésszerűen kliensszoftver testmode: backtranslate kliensszoftver kóccsomó testmode: backtranslate kóccsomó kolbászoszsemle testmode: backtranslate kolbászoszsemle koldusszáj testmode: backtranslate koldusszáj koldusszakáll testmode: backtranslate koldusszakáll koldusszegény testmode: backtranslate koldusszegény kolduszene testmode: backtranslate kolduszene kommunikációsszoba testmode: backtranslate kommunikációsszoba komposszesszor testmode: backtranslate komposszesszor komposszesszorátus testmode: backtranslate komposszesszorátus kormosszürke testmode: backtranslate kormosszürke kosszarv testmode: backtranslate kosszarv kosszem testmode: backtranslate kosszem kortárszenei testmode: backtranslate kortárszenei kóruszene testmode: backtranslate kóruszene köhögésszerű testmode: backtranslate köhögésszerű kölcsönnyakláncait testmode: backtranslate kölcsönnyakláncait közlekedésszervezÅ‘k testmode: backtranslate közlekedésszervezÅ‘k kÅ‘művesszem testmode: backtranslate kÅ‘művesszem kÅ‘művesszerszámait testmode: backtranslate kÅ‘művesszerszámait konstansszimbólumainak testmode: backtranslate konstansszimbólumainak köntösszegély testmode: backtranslate köntösszegély könyöklésszéles testmode: backtranslate könyöklésszéles könyvesszekrény testmode: backtranslate könyvesszekrény kÅ‘risszár testmode: backtranslate kÅ‘risszár kÅ‘risszárat testmode: backtranslate kÅ‘risszárat körösszakál testmode: backtranslate körösszakál körösszakáli testmode: backtranslate körösszakáli Köröszug testmode: backtranslate Köröszug kötelességgyakorlás testmode: backtranslate kötelességgyakorlás közsáv testmode: backtranslate közsáv közsereg testmode: backtranslate közsereg kontaktusszám testmode: backtranslate kontaktusszám kudarcsorozat testmode: backtranslate kudarcsorozat kulcszörgés testmode: backtranslate kulcszörgés kuplunggyár testmode: backtranslate kuplunggyár kurucság testmode: backtranslate kurucság küldetésszaga testmode: backtranslate küldetésszaga különcség testmode: backtranslate különcség különnyíló testmode: backtranslate különnyíló labirintusszerű testmode: backtranslate labirintusszerű lakásszentelÅ‘ testmode: backtranslate lakásszentelÅ‘ lakásszövetkezet testmode: backtranslate lakásszövetkezet lakásszerzÅ‘k testmode: backtranslate lakásszerzÅ‘k lakosszám testmode: backtranslate lakosszám lánccsörgés testmode: backtranslate lánccsörgés láncszem testmode: backtranslate láncszem lánggyújtogató testmode: backtranslate lánggyújtogató laposszárú testmode: backtranslate laposszárú látásszög testmode: backtranslate látásszög látászavar testmode: backtranslate látászavar látomásszerű testmode: backtranslate látomásszerű lazaccsontváz testmode: backtranslate lazaccsontváz lázsebességgel testmode: backtranslate lázsebességgel lázsóhajtás testmode: backtranslate lázsóhajtás lebegésszerű testmode: backtranslate lebegésszerű léggyök testmode: backtranslate léggyök léggyökér testmode: backtranslate léggyökér lejtésszög testmode: backtranslate lejtésszög lejtésszöge testmode: backtranslate lejtésszöge lesszabály testmode: backtranslate lesszabály lemezstúdió testmode: backtranslate lemezstúdió lengésszabály testmode: backtranslate lengésszabály lexikonnyi testmode: backtranslate lexikonnyi légzésszám testmode: backtranslate légzésszám légzésszerű testmode: backtranslate légzésszerű légzészavar testmode: backtranslate légzészavar lépcsÅ‘sszárnyú testmode: backtranslate lépcsÅ‘sszárnyú lépésszám testmode: backtranslate lépésszám lépészaj testmode: backtranslate lépészaj léptennyomon testmode: backtranslate léptennyomon levesszag testmode: backtranslate levesszag levesszagot testmode: backtranslate levesszagot levesszedÅ‘ testmode: backtranslate levesszedÅ‘ liberty testmode: backtranslate liberty licenccsalád testmode: backtranslate licenccsalád licencsértés testmode: backtranslate licencsértés liszteszacskó testmode: backtranslate liszteszacskó loggyűjtemény testmode: backtranslate loggyűjtemény lovasszázad testmode: backtranslate lovasszázad lovasszekeret testmode: backtranslate lovasszekeret lökésszám testmode: backtranslate lökésszám lökésszerű testmode: backtranslate lökésszerű lÅ‘porosszekér testmode: backtranslate lÅ‘porosszekér lÅ‘porosszekerek testmode: backtranslate lÅ‘porosszekerek lÅ‘résszerű testmode: backtranslate lÅ‘résszerű lugasszerű testmode: backtranslate lugasszerű luxusszálloda testmode: backtranslate luxusszálloda macskakaparásszerű testmode: backtranslate macskakaparásszerű magánnyelvmesterek testmode: backtranslate magánnyelvmesterek magánnyaralók testmode: backtranslate magánnyaralók magánnyugdíjpénztár testmode: backtranslate magánnyugdíjpénztár magasszárú testmode: backtranslate magasszárú maggyűjteményrÅ‘l testmode: backtranslate maggyűjteményrÅ‘l mágnásszámba testmode: backtranslate mágnásszámba mágnesszalag testmode: backtranslate mágnesszalag mágnesszerű testmode: backtranslate mágnesszerű mágneszár testmode: backtranslate mágneszár malacság testmode: backtranslate malacság malacsült testmode: backtranslate malacsült málhásszekér testmode: backtranslate málhásszekér málhásszekereiket testmode: backtranslate málhásszekereiket mandarinnyelv testmode: backtranslate mandarinnyelv Marosszék testmode: backtranslate Marosszék Marosszentgyörgy testmode: backtranslate Marosszentgyörgy Maroszug testmode: backtranslate Maroszug Martraversszal testmode: backtranslate Martraversszal matracsor testmode: backtranslate matracsor másszínű testmode: backtranslate másszínű másszor testmode: backtranslate másszor másszóval testmode: backtranslate másszóval másszÅ‘rűek testmode: backtranslate másszÅ‘rűek mécsesszem testmode: backtranslate mécsesszem medresszék testmode: backtranslate medresszék megfázásszerű testmode: backtranslate megfázásszerű meggybefÅ‘tt testmode: backtranslate meggybefÅ‘tt meggyel testmode: backtranslate meggyel meggyen testmode: backtranslate meggyen meggyes testmode: backtranslate meggyes Meggyesi testmode: backtranslate Meggyesi meggyet testmode: backtranslate meggyet meggyfa testmode: backtranslate meggyfa meggyhez testmode: backtranslate meggyhez meggyízű testmode: backtranslate meggyízű meggyként testmode: backtranslate meggyként meggylekvár testmode: backtranslate meggylekvár meggymag testmode: backtranslate meggymag meggynek testmode: backtranslate meggynek meggypiros testmode: backtranslate meggypiros meggysör testmode: backtranslate meggysör meggyszín testmode: backtranslate meggyszín meggytÅ‘l testmode: backtranslate meggytÅ‘l meggytÅ‘l testmode: backtranslate meggytÅ‘l meggyvörös testmode: backtranslate meggyvörös meggyzÅ‘ testmode: backtranslate meggyzÅ‘ meglepetésszoftver testmode: backtranslate meglepetésszoftver méhesszín testmode: backtranslate méhesszín méhesszínben testmode: backtranslate méhesszínben ménesszárnyékok testmode: backtranslate ménesszárnyékok méreggyökeret testmode: backtranslate méreggyökeret méreggyökérré testmode: backtranslate méreggyökérré méreggyümölccsé testmode: backtranslate méreggyümölccsé mérkÅ‘zésszervezÅ‘ testmode: backtranslate mérkÅ‘zésszervezÅ‘ mérleggyár testmode: backtranslate mérleggyár meszesszürke testmode: backtranslate meszesszürke mézsárga testmode: backtranslate mézsárga mézser testmode: backtranslate mézser mézsör testmode: backtranslate mézsör Mikosszéplak testmode: backtranslate Mikosszéplak mikulásszerkó testmode: backtranslate mikulásszerkó mikrofonnyílás testmode: backtranslate mikrofonnyílás mikronnyi testmode: backtranslate mikronnyi mitesszer testmode: backtranslate mitesszer mitugrásszal testmode: backtranslate mitugrásszal mohaszöld testmode: backtranslate mohaszöld molosszer testmode: backtranslate molosszer mókusszerű testmode: backtranslate mókusszerű mókusszÅ‘r testmode: backtranslate mókusszÅ‘r motorosszán testmode: backtranslate motorosszán mozgásszerű testmode: backtranslate mozgásszerű mozgászavar testmode: backtranslate mozgászavar munkásszálló testmode: backtranslate munkásszálló muzsikusszem testmode: backtranslate muzsikusszem műjéggyár testmode: backtranslate műjéggyár működészavar testmode: backtranslate működészavar művelÅ‘désszervezÅ‘ testmode: backtranslate művelÅ‘désszervezÅ‘ nyálasszájú testmode: backtranslate nyálasszájú nászutazásszerű testmode: backtranslate nászutazásszerű nedvesszürke testmode: backtranslate nedvesszürke négyzetyard testmode: backtranslate négyzetyard nehézség testmode: backtranslate nehézség nehézsúlyú testmode: backtranslate nehézsúlyú Nemesszalók testmode: backtranslate Nemesszalók Nemesszentandrás testmode: backtranslate Nemesszentandrás nemesszÅ‘rme testmode: backtranslate nemesszÅ‘rme nemezsapka testmode: backtranslate nemezsapka nemezsapkát testmode: backtranslate nemezsapkát nemezsátor testmode: backtranslate nemezsátor nercstóla testmode: backtranslate nercstóla népességgyarapodás testmode: backtranslate népességgyarapodás neutronnyalábokat testmode: backtranslate neutronnyalábokat nyargonccsizma testmode: backtranslate nyargonccsizma nyereggyártók testmode: backtranslate nyereggyártók nyikkanásszerű testmode: backtranslate nyikkanásszerű nyilasszervezet testmode: backtranslate nyilasszervezet nyílászáró testmode: backtranslate nyílászáró nyolcvannyolc testmode: backtranslate nyolcvannyolc nyolccsatornás testmode: backtranslate nyolccsatornás nyolcsebességes testmode: backtranslate nyolcsebességes nyomásszabályzó testmode: backtranslate nyomásszabályzó nyomásszerű testmode: backtranslate nyomásszerű nyomásszinten testmode: backtranslate nyomásszinten oktatásszociológiai testmode: backtranslate oktatásszociológiai ordasszÅ‘rű testmode: backtranslate ordasszÅ‘rű orgazmusszerű testmode: backtranslate orgazmusszerű óriásszalamandra testmode: backtranslate óriásszalamandra oroszlánnyom testmode: backtranslate oroszlánnyom orvosszakértÅ‘ testmode: backtranslate orvosszakértÅ‘ orvosszázados testmode: backtranslate orvosszázados orvosszemély testmode: backtranslate orvosszemély orvosszereikkel testmode: backtranslate orvosszereikkel orvosszerű testmode: backtranslate orvosszerű orvosszövetség testmode: backtranslate orvosszövetség óceánnyi testmode: backtranslate óceánnyi óvodásszintű testmode: backtranslate óvodásszintű ökrösszekér testmode: backtranslate ökrösszekér önállásszerű testmode: backtranslate önállásszerű önnyomása testmode: backtranslate önnyomása önnyomatú testmode: backtranslate önnyomatú önnyugdíjazását testmode: backtranslate önnyugdíjazását örökséggyűjteményben testmode: backtranslate örökséggyűjteményben örvénylésszerű testmode: backtranslate örvénylésszerű Å‘sszármazású testmode: backtranslate Å‘sszármazású Å‘sszékelyek testmode: backtranslate Å‘sszékelyek összekéregetett testmode: backtranslate összekéregetett összekéregettek testmode: backtranslate összekéregettek összekeresgélt testmode: backtranslate összekeresgélt Å‘sszel testmode: backtranslate Å‘sszel Å‘sszellem testmode: backtranslate Å‘sszellem ötvösszakmai testmode: backtranslate ötvösszakmai Å‘zsebesen testmode: backtranslate Å‘zsebesen Å‘zsörét testmode: backtranslate Å‘zsörét Å‘zsuta testmode: backtranslate Å‘zsuta padlásszoba testmode: backtranslate padlásszoba padlászugoly testmode: backtranslate padlászugoly palócság testmode: backtranslate palócság papirosszeletre testmode: backtranslate papirosszeletre paprikásszalonna-bazár testmode: backtranslate paprikásszalonna-bazár papucszápor testmode: backtranslate papucszápor párnásszék testmode: backtranslate párnásszék pátosszal testmode: backtranslate pátosszal pedagógusszervezet testmode: backtranslate pedagógusszervezet pedagógusszobába testmode: backtranslate pedagógusszobába pedagógusszövetség testmode: backtranslate pedagógusszövetség pedagógussztrájk testmode: backtranslate pedagógussztrájk pénzeszacskó testmode: backtranslate pénzeszacskó pénzeszközök testmode: backtranslate pénzeszközök pénzeszsák testmode: backtranslate pénzeszsák pénzzsidóságban testmode: backtranslate pénzzsidóságban pénzsegély testmode: backtranslate pénzsegély pénzsorozat testmode: backtranslate pénzsorozat pénzsóvár testmode: backtranslate pénzsóvár pénzszűke testmode: backtranslate pénzszűke perecsütÅ‘nÅ‘ testmode: backtranslate perecsütÅ‘nÅ‘ pergamennyaláb testmode: backtranslate pergamennyaláb periódusszámának testmode: backtranslate periódusszámának piaccsarnok testmode: backtranslate piaccsarnok Pilisszántó, testmode: backtranslate Pilisszántó, Pilisszentkereszt testmode: backtranslate Pilisszentkereszt pirítósszeleteken testmode: backtranslate pirítósszeleteken pirosszem testmode: backtranslate pirosszem piroszászlós testmode: backtranslate piroszászlós piszkosszÅ‘ke testmode: backtranslate piszkosszÅ‘ke piszkosszürke testmode: backtranslate piszkosszürke piszkoszöld testmode: backtranslate piszkoszöld pisztolylövésszerűen testmode: backtranslate pisztolylövésszerűen playstationnyi testmode: backtranslate playstationnyi plüsszerű testmode: backtranslate plüsszerű plüsszsák testmode: backtranslate plüsszsák plüsszsiráf testmode: backtranslate plüsszsiráf plüsszsölyét testmode: backtranslate plüsszsölyét pokróccsík testmode: backtranslate pokróccsík polcsor testmode: backtranslate polcsor policájkomisszér testmode: backtranslate policájkomisszér porcsérülés testmode: backtranslate porcsérülés porcelánnyúl testmode: backtranslate porcelánnyúl portásszoba testmode: backtranslate portásszoba postásszakszervezet testmode: backtranslate postásszakszervezet postássztrájk testmode: backtranslate postássztrájk pólusszámhoz testmode: backtranslate pólusszámhoz precízség testmode: backtranslate precízség présszerű testmode: backtranslate présszerű priamossza testmode: backtranslate priamossza princséged testmode: backtranslate princséged proggyak testmode: backtranslate proggyak protonnyalábok testmode: backtranslate protonnyalábok comment: this testcase look begcaps opcode working if a word containing both lowercase and uppercase letters PSZÃF-összevonást comment: this testcase testing begcaps opcode backtranslation if a word containing both lowercase and uppercase letters testmode: backtranslate PSZÃF-összevonást pszichológusszövetség testmode: backtranslate pszichológusszövetség pulzusszám testmode: backtranslate pulzusszám puskásszakasz testmode: backtranslate puskásszakasz puskásszázad testmode: backtranslate puskásszázad puskászászlóalj testmode: backtranslate puskászászlóalj rajzsablon testmode: backtranslate rajzsablon rajzsarok testmode: backtranslate rajzsarok rajzsarkot testmode: backtranslate rajzsarkot rajzsorozatban testmode: backtranslate rajzsorozatban rácság testmode: backtranslate rácság rádiósszoba testmode: backtranslate rádiósszoba rakásszámra testmode: backtranslate rakásszámra Rákosszentmihály testmode: backtranslate Rákosszentmihály rándulásszerűen testmode: backtranslate rándulásszerűen rántásszag testmode: backtranslate rántásszag rántásszerű testmode: backtranslate rántásszerű realitásszagú testmode: backtranslate realitásszagú realityműsora testmode: backtranslate realityműsora recésszárú testmode: backtranslate recésszárú régiséggyűjtÅ‘ testmode: backtranslate régiséggyűjtÅ‘ rémisszétek testmode: backtranslate rémisszétek részárás testmode: backtranslate részárás rendelkezésszerű testmode: backtranslate rendelkezésszerű repülésszerű testmode: backtranslate repülésszerű repülÅ‘sszárny testmode: backtranslate repülÅ‘sszárny rézsut testmode: backtranslate rézsut ricinusszerű testmode: backtranslate ricinusszerű ritkasággyűjtÅ‘ testmode: backtranslate ritkasággyűjtÅ‘ ritmusszabályozó testmode: backtranslate ritmusszabályozó ritmuszavar testmode: backtranslate ritmuszavar rizszabálókat testmode: backtranslate rizszabálókat robbanásszerű testmode: backtranslate robbanásszerű robbanászajt testmode: backtranslate robbanászajt rongyosszélű testmode: backtranslate rongyosszélű rosszemlékű testmode: backtranslate rosszemlékű rothadásszag testmode: backtranslate rothadásszag rovásszerűen testmode: backtranslate rovásszerűen rózsásszÅ‘kés testmode: backtranslate rózsásszÅ‘kés rozszabálás testmode: backtranslate rozszabálás rubinnyaklánc testmode: backtranslate rubinnyaklánc ruhásszekrény testmode: backtranslate ruhásszekrény ruhásszobámé testmode: backtranslate ruhásszobámé rúzsosszájú testmode: backtranslate rúzsosszájú sárgásszínű testmode: backtranslate sárgásszínű sasszárnyú testmode: backtranslate sasszárnyú sasszeg testmode: backtranslate sasszeg sásszéna testmode: backtranslate sásszéna sásszerű testmode: backtranslate sásszerű sasszömöd testmode: backtranslate sasszömöd sátáncsapat testmode: backtranslate sátáncsapat szalaggyakorlatát testmode: backtranslate szalaggyakorlatát szalaggyűjtemény testmode: backtranslate szalaggyűjtemény szeggyár testmode: backtranslate szeggyár selymesszÅ‘ke testmode: backtranslate selymesszÅ‘ke sereggyűjtés testmode: backtranslate sereggyűjtés sertésszelet testmode: backtranslate sertésszelet sertésszűzpecsenyére testmode: backtranslate sertésszűzpecsenyére sertészsír testmode: backtranslate sertészsír szénnyomokat testmode: backtranslate szénnyomokat szociálisszálláshely-program testmode: backtranslate szociálisszálláshely-program sonkásszelet testmode: backtranslate sonkásszelet sonkásszerű testmode: backtranslate sonkásszerű sonkászsemle testmode: backtranslate sonkászsemle sorscsapásszerű, testmode: backtranslate sorscsapásszerű, spanyolmeggyen testmode: backtranslate spanyolmeggyen spiccszűrÅ‘be testmode: backtranslate spiccszűrÅ‘be stadionnyi testmode: backtranslate stadionnyi stílusszerű, stílusszerkesztÅ‘ testmode: backtranslate stílusszerű, stílusszerkesztÅ‘ sugárzásszerű testmode: backtranslate sugárzásszerű sugárzásszintek testmode: backtranslate sugárzásszintek suhanccsürhe testmode: backtranslate suhanccsürhe suhancsereg testmode: backtranslate suhancsereg szaglásszék testmode: backtranslate szaglásszék szalonnyelv, szalonnyelven testmode: backtranslate szalonnyelv, szalonnyelven szállodásszövetség testmode: backtranslate szállodásszövetség Szamosszeg testmode: backtranslate Szamosszeg szanitéccsoport testmode: backtranslate szanitéccsoport szárazság testmode: backtranslate szárazság szárazsült testmode: backtranslate szárazsült szarvasszív testmode: backtranslate szarvasszív szarvaszsír testmode: backtranslate szarvaszsír szezonnyitó testmode: backtranslate szezonnyitó szénásszekér testmode: backtranslate szénásszekér szentségesszűzmáriám testmode: backtranslate szentségesszűzmáriám szentséggyalázás testmode: backtranslate szentséggyalázás Szepesszombat testmode: backtranslate Szepesszombat szerzÅ‘désszám testmode: backtranslate szerzÅ‘désszám szerzÅ‘désszegés testmode: backtranslate szerzÅ‘désszegés szerzÅ‘désszegÅ‘ testmode: backtranslate szerzÅ‘désszegÅ‘ szervizsarok testmode: backtranslate szervizsarok szétossza testmode: backtranslate szétossza szétosszák testmode: backtranslate szétosszák Szilvásszentmárton testmode: backtranslate Szilvásszentmárton szindikátusszerű testmode: backtranslate szindikátusszerű szindikátusszervezÅ‘ testmode: backtranslate szindikátusszervezÅ‘ színnyomás testmode: backtranslate színnyomás szocsegély testmode: backtranslate szocsegély szódásszifon testmode: backtranslate szódásszifon szokásszerű testmode: backtranslate szokásszerű szólásszabadság testmode: backtranslate szólásszabadság szólásszapulás testmode: backtranslate szólásszapulás szórakozásszámba testmode: backtranslate szórakozásszámba szorongásszerű testmode: backtranslate szorongásszerű szorongásszint testmode: backtranslate szorongásszint szöggyár testmode: backtranslate szöggyár szöveggyűjtemény testmode: backtranslate szöveggyűjtemény szÅ‘nyeggyár testmode: backtranslate szÅ‘nyeggyár szúnyoggyérítés testmode: backtranslate szúnyoggyérítés szúrásszerű testmode: backtranslate szúrásszerű szúrósszemű testmode: backtranslate szúrósszemű születésszabályozás testmode: backtranslate születésszabályozás szűzsült testmode: backtranslate szűzsült taxisszurkálás testmode: backtranslate taxisszurkálás tágulásszabály testmode: backtranslate tágulásszabály taggyűlés testmode: backtranslate taggyűlés tánccsoport testmode: backtranslate tánccsoport társalgásszámba testmode: backtranslate társalgásszámba társalgásszerű testmode: backtranslate társalgásszerű társszekér testmode: backtranslate társszekér társszövetség testmode: backtranslate társszövetség tehetséggyár testmode: backtranslate tehetséggyár teásszervíz testmode: backtranslate teásszervíz tejfölösszájú testmode: backtranslate tejfölösszájú teknÅ‘sszámlálás testmode: backtranslate teknÅ‘sszámlálás településszerkezet testmode: backtranslate településszerkezet települészónájára testmode: backtranslate települészónájára templomosszakértÅ‘ testmode: backtranslate templomosszakértÅ‘ tetszészaj testmode: backtranslate tetszészaj tetszészsivaj testmode: backtranslate tetszészsivaj tigrisszemek testmode: backtranslate tigrisszemek tigrisszerű testmode: backtranslate tigrisszerű tisztséggyűjtemény testmode: backtranslate tisztséggyűjtemény tipusszám testmode: backtranslate tipusszám típusszám testmode: backtranslate típusszám típusszöveg testmode: backtranslate típusszöveg típuszubbony testmode: backtranslate típuszubbony titkosszolgálat testmode: backtranslate titkosszolgálat tizedesszállás testmode: backtranslate tizedesszállás tízgallonnyi testmode: backtranslate tízgallonnyi tojászápor testmode: backtranslate tojászápor tojásszerű testmode: backtranslate tojásszerű topázsárgája testmode: backtranslate topázsárgája torzság testmode: backtranslate torzság többesszám testmode: backtranslate többesszám töltésszabályozó testmode: backtranslate töltésszabályozó töltésszám testmode: backtranslate töltésszám töltésszerűen testmode: backtranslate töltésszerűen töltésszakasz testmode: backtranslate töltésszakasz törlesszem testmode: backtranslate törlesszem tövisszár testmode: backtranslate tövisszár tövisszúrás testmode: backtranslate tövisszúrás tÅ‘zeggyapot testmode: backtranslate tÅ‘zeggyapot trichinnyavalya testmode: backtranslate trichinnyavalya tudásszint testmode: backtranslate tudásszint tudásszomj testmode: backtranslate tudásszomj turizmusszektor testmode: backtranslate turizmusszektor tükrösszélű testmode: backtranslate tükrösszélű tüntetésszerűen testmode: backtranslate tüntetésszerűen tüzesszemű testmode: backtranslate tüzesszemű tűzzsonglÅ‘r testmode: backtranslate tűzzsonglÅ‘r tűzsebesség testmode: backtranslate tűzsebesség tűzsugár testmode: backtranslate tűzsugár udvaroncsereg testmode: backtranslate udvaroncsereg ugrásszerűen testmode: backtranslate ugrásszerűen ugrásszögének testmode: backtranslate ugrásszögének újoncság testmode: backtranslate újoncság ulánusszázad testmode: backtranslate ulánusszázad university testmode: backtranslate university utalásszerűen testmode: backtranslate utalásszerűen utalásszinten testmode: backtranslate utalásszinten utánpótlásszállítmánnyal testmode: backtranslate utánpótlásszállítmánnyal utánnyomás testmode: backtranslate utánnyomás utasszállító testmode: backtranslate utasszállító utasszám testmode: backtranslate utasszám utasszerep testmode: backtranslate utasszerep utasszint testmode: backtranslate utasszint utasszolgálat testmode: backtranslate utasszolgálat utasításszavakkal testmode: backtranslate utasításszavakkal utazásszerű testmode: backtranslate utazásszerű utazásszervezÅ‘ testmode: backtranslate utazásszervezÅ‘ ülésszak testmode: backtranslate ülésszak ülésszak testmode: backtranslate ülésszak üstökösszerű testmode: backtranslate üstökösszerű ütésszerű testmode: backtranslate ütésszerű ütészápor testmode: backtranslate ütészápor üveggyapot testmode: backtranslate üveggyapot üveggyártás testmode: backtranslate üveggyártás üveggyöngy testmode: backtranslate üveggyöngy üveggyűrű testmode: backtranslate üveggyűrű vagdalthússzerű testmode: backtranslate vagdalthússzerű vagonnyi testmode: backtranslate vagonnyi vakarccsal testmode: backtranslate vakarccsal vallásszabadság testmode: backtranslate vallásszabadság vallásszociológus testmode: vacktranslate vallásszociológus vallomásszámba testmode: backtranslate vallomásszámba vállpereccsontjából testmode: backtranslate vállpereccsontjából Vámosszabadi testmode: backtranslate Vámosszabadi városszépe testmode: backtranslate városszépe városszerte testmode: backtranslate városszerte várossziluett testmode: backtranslate várossziluett városzajon testmode: backtranslate városzajon városzajt testmode: backtranslate városzajt városzsarnok testmode: backtranslate városzsarnok vasasszakosztály testmode: backtranslate vasasszakosztály vasutassztrájk testmode: backtranslate vasutassztrájk vasszállítmány testmode: backtranslate vasszállítmány Vaszar testmode: backtranslate Vaszar Vázsnok testmode: backtranslate Vázsnok végiggyakorolni testmode: backtranslate végiggyakorolni végiggyalogolhatja testmode: backtranslate végiggyalogolhatja vendéggyermek testmode: backtranslate vendéggyermek vendéggyülekezet testmode: backtranslate vendéggyülekezet veresszakállú testmode: backtranslate veresszakállú veresszemű testmode: backtranslate veresszemű versszak testmode: backtranslate versszak versszakában testmode: backtranslate versszakában versszerű testmode: backtranslate versszerű versszeretÅ‘ testmode: backtranslate versszeretÅ‘ vértesszázad testmode: backtranslate vértesszázad vértesszázadbeli testmode: backtranslate vértesszázadbeli VértesszÅ‘lÅ‘s testmode: backtranslate VértesszÅ‘lÅ‘s vetésszalag testmode: backtranslate vetésszalag viccsor testmode: backtranslate viccsor világossággyújtásra testmode: backtranslate világossággyújtásra világosszÅ‘ke testmode: backtranslate világosszÅ‘ke világosszürke testmode: backtranslate világosszürke világgyűlölÅ‘ testmode: backtranslate világgyűlölÅ‘ villamosszék testmode: backtranslate villamosszék villamosszerű testmode: backtranslate villamosszerű villanásszerűen testmode: backtranslate villanásszerűen visszaélésszerű testmode: backtranslate visszaélésszerű virággyapjaikat testmode: backtranslate virággyapjaikat virággyűjtemény testmode: backtranslate virággyűjtemény virággyűjtés testmode: backtranslate virággyűjtés virgoncság testmode: backtranslate virgoncság vírusszerű testmode: backtranslate vírusszerű vírusszűrés testmode: backtranslate vírusszűrés viselkedésszerű testmode: backtranslate viselkedésszerű viselkedészavar testmode: backtranslate viselkedészavar visually testmode: backtranslate visually visszér testmode: backtranslate visszér visszeres testmode: backtranslate visszeres visszérműtét testmode: backtranslate visszérműtét vitorlásszezon testmode: backtranslate vitorlásszezon vitrinnyi testmode: backtranslate vitrinnyi vizeleteszacskó testmode: backtranslate vizeleteszacskó vizeszsemle testmode: backtranslate vizeszsemle vízfolyásszerű testmode: backtranslate vízfolyásszerű vízsáv testmode: backtranslate vízsáv vízsivatag testmode: backtranslate vízsivatag vízesésszerűen testmode: backtranslate vízesésszerűen vízsodor testmode: backtranslate vízsodor vonósszerenád testmode: backtranslate vonósszerenád vonószenekar testmode: backtranslate vonószenekar vörhenyesszÅ‘ke testmode: backtranslate vörhenyesszÅ‘ke vörösesszÅ‘ke testmode: backtranslate vörösesszÅ‘ke vörösesszÅ‘ke testmode: backtranslate vörösesszÅ‘ke vörösszakállú testmode: backtranslate vörösszakállú vörösszem testmode: backtranslate vörösszem vörösszínű testmode: backtranslate vörösszínű vörösszÅ‘ke testmode: backtranslate vörösszÅ‘ke vöröszászló testmode: backtranslate vöröszászló webesszolgáltatás testmode: backtranslate webesszolgáltatás zaklatásszámba testmode: backtranslate zaklatásszámba záloggyűrűmet testmode: backtranslate záloggyűrűmet zavarosszürke testmode: backtranslate zavarosszürke zlotyról testmode: backtranslate zlotyról zökkenésszerű testmode: backtranslate zökkenésszerű zörgésszerű testmode: backtranslate zörgésszerű zuhanásszerű testmode: backtranslate zuhanásszerű zsarolásszerű testmode: backtranslate zsarolásszerű zsírosszén testmode: backtranslate zsírosszén zsoldosszokás testmode: backtranslate zsoldosszokás A telefonszámom: 06-1-256-256. testmode: backtranslate A telefonszámom: 06-1-256-256. A földrengés 7,5 erÅ‘sségű volt. testmode: backtranslate A földrengés 7,5 erÅ‘sségű volt. Tamás még nem tudta, hogy mi vár rá. testmode: backtranslate Tamás még nem tudta, hogy mi vár rá. "Tamás még nem tudta, hogy mi vár rá." testmode: backtranslate "Tamás még nem tudta, hogy mi vár rá." I don't no why happened this problem. testmode: backtranslate I don't no why happened this problem. Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘. testmode: backtranslate Az 1§ paragrafus alapján a kedvezmény igénybe vehetÅ‘. - A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban. testmode: backtranslate - A sivatagi karavánúton, negyven vagy ötven mérföldnyire innen. Egy Ford. De mi nem megyünk magával. - ElÅ‘vette az irattárcáját, és átadott Naszifnak egy angol fontot. - Ha visszajön, keressen meg a vasútállomás mellett a Grand Hotelban. A vételár 1 €. testmode: backtranslate A vételár 1 €. De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat). testmode: backtranslate De nekem nagyon nehezemre esik a levélírás (nézd el a helyesírási hibákat és a csúnya írásomat). A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke. testmode: backtranslate A kiállítás megnyitóján jelen volt az MVGYOSZ elnöke. A pontos idÅ‘ 11:45 perc. testmode: backtranslate A pontos idÅ‘ 11:45 perc. •A kiadás újdonságai. testmode: backtranslate •A kiadás újdonságai. A hu_list fájl nem létezik. testmode: backtranslate A hu_list fájl nem létezik. Az e-mail címem: akarmi@akarmi.hu. testmode: backtranslate Az e-mail címem: akarmi@akarmi.hu. liblouis-2.5.3/tests/inpos_match_replace.c0000664000175000017500000000072412161041523015571 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { int result = 0; const char* txt = "Fussball-Vereinigung"; const char* table = "inpos_match_replace.ctb"; const char* brl = "FUSSBALL-V7EINIGUNG"; const int inpos[] = {0,1,2,3,4,5,6,7,8,9,9,12,13,14,15,16,17,18,19}; result |= check_translation(table, txt, NULL, brl); result |= check_inpos(table, txt, inpos); return result; } liblouis-2.5.3/tests/Makefile.in0000664000175000017500000014021312161044154013474 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ check_PROGRAMS = pass2$(EXEEXT) pass2_inpos$(EXEEXT) inpos$(EXEEXT) \ inpos_match_replace$(EXEEXT) uplow_with_unicode$(EXEEXT) \ present_progressive$(EXEEXT) capitalized_word$(EXEEXT) \ capitalized_with_sentance$(EXEEXT) inpos_compbrl$(EXEEXT) \ lastworditalafter$(EXEEXT) en_gb_g1_italics$(EXEEXT) \ letterDefTest$(EXEEXT) squash_space$(EXEEXT) \ hyphenate_achena$(EXEEXT) hyphenate_alderen$(EXEEXT) \ hyphenate_straightforward$(EXEEXT) hyphenate_xxx$(EXEEXT) \ pass1Only$(EXEEXT) outpos$(EXEEXT) getTable$(EXEEXT) \ typeform$(EXEEXT) pass0_typebuf$(EXEEXT) \ hash_collision$(EXEEXT) # if we have Python and liblouis is configured with ucs4 then we can # invoke the python based tests @HAVE_PYTHON_TRUE@@HAVE_UCS4_TRUE@am__append_1 = \ @HAVE_PYTHON_TRUE@@HAVE_UCS4_TRUE@ check_doctests.py XFAIL_TESTS = present_progressive$(EXEEXT) lastworditalafter$(EXEEXT) \ en_gb_g1_italics$(EXEEXT) squash_space$(EXEEXT) \ hyphenate_achena$(EXEEXT) hyphenate_alderen$(EXEEXT) \ hash_collision$(EXEEXT) subdir = tests DIST_COMMON = $(am__dist_check_SCRIPTS_DIST) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am_capitalized_with_sentance_OBJECTS = brl_checks.$(OBJEXT) \ capitalized_with_sentance.$(OBJEXT) capitalized_with_sentance_OBJECTS = \ $(am_capitalized_with_sentance_OBJECTS) capitalized_with_sentance_LDADD = $(LDADD) capitalized_with_sentance_DEPENDENCIES = \ $(top_builddir)/liblouis/liblouis.la am_capitalized_word_OBJECTS = brl_checks.$(OBJEXT) \ capitalized_word.$(OBJEXT) capitalized_word_OBJECTS = $(am_capitalized_word_OBJECTS) capitalized_word_LDADD = $(LDADD) capitalized_word_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_en_gb_g1_italics_OBJECTS = brl_checks.$(OBJEXT) \ en_gb_g1_italics.$(OBJEXT) en_gb_g1_italics_OBJECTS = $(am_en_gb_g1_italics_OBJECTS) en_gb_g1_italics_LDADD = $(LDADD) en_gb_g1_italics_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_getTable_OBJECTS = getTable.$(OBJEXT) getTable_OBJECTS = $(am_getTable_OBJECTS) getTable_LDADD = $(LDADD) getTable_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_hash_collision_OBJECTS = brl_checks.$(OBJEXT) \ hash_collision.$(OBJEXT) hash_collision_OBJECTS = $(am_hash_collision_OBJECTS) hash_collision_LDADD = $(LDADD) hash_collision_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_hyphenate_achena_OBJECTS = brl_checks.$(OBJEXT) \ hyphenate_achena.$(OBJEXT) hyphenate_achena_OBJECTS = $(am_hyphenate_achena_OBJECTS) hyphenate_achena_LDADD = $(LDADD) hyphenate_achena_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_hyphenate_alderen_OBJECTS = brl_checks.$(OBJEXT) \ hyphenate_alderen.$(OBJEXT) hyphenate_alderen_OBJECTS = $(am_hyphenate_alderen_OBJECTS) hyphenate_alderen_LDADD = $(LDADD) hyphenate_alderen_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_hyphenate_straightforward_OBJECTS = brl_checks.$(OBJEXT) \ hyphenate_straightforward.$(OBJEXT) hyphenate_straightforward_OBJECTS = \ $(am_hyphenate_straightforward_OBJECTS) hyphenate_straightforward_LDADD = $(LDADD) hyphenate_straightforward_DEPENDENCIES = \ $(top_builddir)/liblouis/liblouis.la am_hyphenate_xxx_OBJECTS = brl_checks.$(OBJEXT) \ hyphenate_xxx.$(OBJEXT) hyphenate_xxx_OBJECTS = $(am_hyphenate_xxx_OBJECTS) hyphenate_xxx_LDADD = $(LDADD) hyphenate_xxx_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_inpos_OBJECTS = brl_checks.$(OBJEXT) inpos.$(OBJEXT) inpos_OBJECTS = $(am_inpos_OBJECTS) inpos_LDADD = $(LDADD) inpos_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_inpos_compbrl_OBJECTS = brl_checks.$(OBJEXT) \ inpos_compbrl.$(OBJEXT) inpos_compbrl_OBJECTS = $(am_inpos_compbrl_OBJECTS) inpos_compbrl_LDADD = $(LDADD) inpos_compbrl_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_inpos_match_replace_OBJECTS = brl_checks.$(OBJEXT) \ inpos_match_replace.$(OBJEXT) inpos_match_replace_OBJECTS = $(am_inpos_match_replace_OBJECTS) inpos_match_replace_LDADD = $(LDADD) inpos_match_replace_DEPENDENCIES = \ $(top_builddir)/liblouis/liblouis.la am_lastworditalafter_OBJECTS = brl_checks.$(OBJEXT) \ lastworditalafter.$(OBJEXT) lastworditalafter_OBJECTS = $(am_lastworditalafter_OBJECTS) lastworditalafter_LDADD = $(LDADD) lastworditalafter_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_letterDefTest_OBJECTS = brl_checks.$(OBJEXT) \ letterDefTest.$(OBJEXT) letterDefTest_OBJECTS = $(am_letterDefTest_OBJECTS) letterDefTest_LDADD = $(LDADD) letterDefTest_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_outpos_OBJECTS = brl_checks.$(OBJEXT) outpos.$(OBJEXT) outpos_OBJECTS = $(am_outpos_OBJECTS) outpos_LDADD = $(LDADD) outpos_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_pass0_typebuf_OBJECTS = brl_checks.$(OBJEXT) \ pass0_typebuf.$(OBJEXT) pass0_typebuf_OBJECTS = $(am_pass0_typebuf_OBJECTS) pass0_typebuf_LDADD = $(LDADD) pass0_typebuf_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_pass1Only_OBJECTS = brl_checks.$(OBJEXT) pass1Only.$(OBJEXT) pass1Only_OBJECTS = $(am_pass1Only_OBJECTS) pass1Only_LDADD = $(LDADD) pass1Only_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_pass2_OBJECTS = brl_checks.$(OBJEXT) pass2.$(OBJEXT) pass2_OBJECTS = $(am_pass2_OBJECTS) pass2_LDADD = $(LDADD) pass2_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_pass2_inpos_OBJECTS = brl_checks.$(OBJEXT) pass2_inpos.$(OBJEXT) pass2_inpos_OBJECTS = $(am_pass2_inpos_OBJECTS) pass2_inpos_LDADD = $(LDADD) pass2_inpos_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_present_progressive_OBJECTS = brl_checks.$(OBJEXT) \ present_progressive.$(OBJEXT) present_progressive_OBJECTS = $(am_present_progressive_OBJECTS) present_progressive_LDADD = $(LDADD) present_progressive_DEPENDENCIES = \ $(top_builddir)/liblouis/liblouis.la am_squash_space_OBJECTS = brl_checks.$(OBJEXT) squash_space.$(OBJEXT) squash_space_OBJECTS = $(am_squash_space_OBJECTS) squash_space_LDADD = $(LDADD) squash_space_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_typeform_OBJECTS = typeform.$(OBJEXT) typeform_OBJECTS = $(am_typeform_OBJECTS) typeform_LDADD = $(LDADD) typeform_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la am_uplow_with_unicode_OBJECTS = brl_checks.$(OBJEXT) \ uplow_with_unicode.$(OBJEXT) uplow_with_unicode_OBJECTS = $(am_uplow_with_unicode_OBJECTS) uplow_with_unicode_LDADD = $(LDADD) uplow_with_unicode_DEPENDENCIES = \ $(top_builddir)/liblouis/liblouis.la am__dist_check_SCRIPTS_DIST = check_all_tables.pl \ check_endless_loop.pl multiple_table_path.pl check_doctests.py DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/liblouis depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(capitalized_with_sentance_SOURCES) \ $(capitalized_word_SOURCES) $(en_gb_g1_italics_SOURCES) \ $(getTable_SOURCES) $(hash_collision_SOURCES) \ $(hyphenate_achena_SOURCES) $(hyphenate_alderen_SOURCES) \ $(hyphenate_straightforward_SOURCES) $(hyphenate_xxx_SOURCES) \ $(inpos_SOURCES) $(inpos_compbrl_SOURCES) \ $(inpos_match_replace_SOURCES) $(lastworditalafter_SOURCES) \ $(letterDefTest_SOURCES) $(outpos_SOURCES) \ $(pass0_typebuf_SOURCES) $(pass1Only_SOURCES) $(pass2_SOURCES) \ $(pass2_inpos_SOURCES) $(present_progressive_SOURCES) \ $(squash_space_SOURCES) $(typeform_SOURCES) \ $(uplow_with_unicode_SOURCES) DIST_SOURCES = $(capitalized_with_sentance_SOURCES) \ $(capitalized_word_SOURCES) $(en_gb_g1_italics_SOURCES) \ $(getTable_SOURCES) $(hash_collision_SOURCES) \ $(hyphenate_achena_SOURCES) $(hyphenate_alderen_SOURCES) \ $(hyphenate_straightforward_SOURCES) $(hyphenate_xxx_SOURCES) \ $(inpos_SOURCES) $(inpos_compbrl_SOURCES) \ $(inpos_match_replace_SOURCES) $(lastworditalafter_SOURCES) \ $(letterDefTest_SOURCES) $(outpos_SOURCES) \ $(pass0_typebuf_SOURCES) $(pass1Only_SOURCES) $(pass2_SOURCES) \ $(pass2_inpos_SOURCES) $(present_progressive_SOURCES) \ $(squash_space_SOURCES) $(typeform_SOURCES) \ $(uplow_with_unicode_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags am__tty_colors = \ red=; grn=; lgn=; blu=; std= DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = tables doctests harness harnessSources AM_CPPFLAGS = -I$(top_srcdir)/liblouis LDADD = $(top_builddir)/liblouis/liblouis.la present_progressive_SOURCES = \ brl_checks.c \ brl_checks.h \ present_progressive.c capitalized_word_SOURCES = \ brl_checks.c \ brl_checks.h \ capitalized_word.c capitalized_with_sentance_SOURCES = \ brl_checks.c \ brl_checks.h \ capitalized_with_sentance.c inpos_compbrl_SOURCES = \ brl_checks.c \ brl_checks.h \ inpos_compbrl.c lastworditalafter_SOURCES = \ brl_checks.c \ brl_checks.h \ lastworditalafter.c en_gb_g1_italics_SOURCES = \ brl_checks.c \ brl_checks.h \ en_gb_g1_italics.c pass2_SOURCES = \ brl_checks.c \ brl_checks.h \ pass2.c pass2_inpos_SOURCES = \ brl_checks.c \ brl_checks.h \ pass2_inpos.c inpos_SOURCES = \ brl_checks.c \ brl_checks.h \ inpos.c inpos_match_replace_SOURCES = \ brl_checks.c \ brl_checks.h \ inpos_match_replace.c letterDefTest_SOURCES = \ brl_checks.c \ brl_checks.h \ letterDefTest.c uplow_with_unicode_SOURCES = \ brl_checks.c \ brl_checks.h \ uplow_with_unicode.c squash_space_SOURCES = \ brl_checks.c \ brl_checks.h \ squash_space.c hyphenate_achena_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_achena.c hyphenate_alderen_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_alderen.c hyphenate_straightforward_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_straightforward.c hyphenate_xxx_SOURCES = \ brl_checks.c \ brl_checks.h \ hyphenate_xxx.c pass1Only_SOURCES = \ brl_checks.c \ brl_checks.h \ pass1Only.c outpos_SOURCES = \ brl_checks.c \ brl_checks.h \ outpos.c getTable_SOURCES = getTable.c typeform_SOURCES = \ typeform.c pass0_typebuf_SOURCES = \ brl_checks.c \ brl_checks.h \ pass0_typebuf.c hash_collision_SOURCES = \ brl_checks.c \ brl_checks.h \ hash_collision.c dist_check_SCRIPTS = check_all_tables.pl check_endless_loop.pl \ multiple_table_path.pl $(am__append_1) TESTS = \ $(check_PROGRAMS) \ $(dist_check_SCRIPTS) TESTS_ENVIRONMENT = \ LOUIS_TABLEPATH=$(top_srcdir)/tables,$(top_srcdir)/tests/tables,$(top_srcdir)/tests/tables/moreTables \ PYTHONPATH=$(HARNESS_DIR):$(top_srcdir)/python:$$PYTHONPATH \ HARNESS_DIR=$(HARNESS_DIR) \ LD_LIBRARY_PATH=$(top_srcdir)/liblouis/.libs:$$LD_LIBRARY_PATH \ PATH=$(top_srcdir)/tools:$$PATH all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list capitalized_with_sentance$(EXEEXT): $(capitalized_with_sentance_OBJECTS) $(capitalized_with_sentance_DEPENDENCIES) $(EXTRA_capitalized_with_sentance_DEPENDENCIES) @rm -f capitalized_with_sentance$(EXEEXT) $(LINK) $(capitalized_with_sentance_OBJECTS) $(capitalized_with_sentance_LDADD) $(LIBS) capitalized_word$(EXEEXT): $(capitalized_word_OBJECTS) $(capitalized_word_DEPENDENCIES) $(EXTRA_capitalized_word_DEPENDENCIES) @rm -f capitalized_word$(EXEEXT) $(LINK) $(capitalized_word_OBJECTS) $(capitalized_word_LDADD) $(LIBS) en_gb_g1_italics$(EXEEXT): $(en_gb_g1_italics_OBJECTS) $(en_gb_g1_italics_DEPENDENCIES) $(EXTRA_en_gb_g1_italics_DEPENDENCIES) @rm -f en_gb_g1_italics$(EXEEXT) $(LINK) $(en_gb_g1_italics_OBJECTS) $(en_gb_g1_italics_LDADD) $(LIBS) getTable$(EXEEXT): $(getTable_OBJECTS) $(getTable_DEPENDENCIES) $(EXTRA_getTable_DEPENDENCIES) @rm -f getTable$(EXEEXT) $(LINK) $(getTable_OBJECTS) $(getTable_LDADD) $(LIBS) hash_collision$(EXEEXT): $(hash_collision_OBJECTS) $(hash_collision_DEPENDENCIES) $(EXTRA_hash_collision_DEPENDENCIES) @rm -f hash_collision$(EXEEXT) $(LINK) $(hash_collision_OBJECTS) $(hash_collision_LDADD) $(LIBS) hyphenate_achena$(EXEEXT): $(hyphenate_achena_OBJECTS) $(hyphenate_achena_DEPENDENCIES) $(EXTRA_hyphenate_achena_DEPENDENCIES) @rm -f hyphenate_achena$(EXEEXT) $(LINK) $(hyphenate_achena_OBJECTS) $(hyphenate_achena_LDADD) $(LIBS) hyphenate_alderen$(EXEEXT): $(hyphenate_alderen_OBJECTS) $(hyphenate_alderen_DEPENDENCIES) $(EXTRA_hyphenate_alderen_DEPENDENCIES) @rm -f hyphenate_alderen$(EXEEXT) $(LINK) $(hyphenate_alderen_OBJECTS) $(hyphenate_alderen_LDADD) $(LIBS) hyphenate_straightforward$(EXEEXT): $(hyphenate_straightforward_OBJECTS) $(hyphenate_straightforward_DEPENDENCIES) $(EXTRA_hyphenate_straightforward_DEPENDENCIES) @rm -f hyphenate_straightforward$(EXEEXT) $(LINK) $(hyphenate_straightforward_OBJECTS) $(hyphenate_straightforward_LDADD) $(LIBS) hyphenate_xxx$(EXEEXT): $(hyphenate_xxx_OBJECTS) $(hyphenate_xxx_DEPENDENCIES) $(EXTRA_hyphenate_xxx_DEPENDENCIES) @rm -f hyphenate_xxx$(EXEEXT) $(LINK) $(hyphenate_xxx_OBJECTS) $(hyphenate_xxx_LDADD) $(LIBS) inpos$(EXEEXT): $(inpos_OBJECTS) $(inpos_DEPENDENCIES) $(EXTRA_inpos_DEPENDENCIES) @rm -f inpos$(EXEEXT) $(LINK) $(inpos_OBJECTS) $(inpos_LDADD) $(LIBS) inpos_compbrl$(EXEEXT): $(inpos_compbrl_OBJECTS) $(inpos_compbrl_DEPENDENCIES) $(EXTRA_inpos_compbrl_DEPENDENCIES) @rm -f inpos_compbrl$(EXEEXT) $(LINK) $(inpos_compbrl_OBJECTS) $(inpos_compbrl_LDADD) $(LIBS) inpos_match_replace$(EXEEXT): $(inpos_match_replace_OBJECTS) $(inpos_match_replace_DEPENDENCIES) $(EXTRA_inpos_match_replace_DEPENDENCIES) @rm -f inpos_match_replace$(EXEEXT) $(LINK) $(inpos_match_replace_OBJECTS) $(inpos_match_replace_LDADD) $(LIBS) lastworditalafter$(EXEEXT): $(lastworditalafter_OBJECTS) $(lastworditalafter_DEPENDENCIES) $(EXTRA_lastworditalafter_DEPENDENCIES) @rm -f lastworditalafter$(EXEEXT) $(LINK) $(lastworditalafter_OBJECTS) $(lastworditalafter_LDADD) $(LIBS) letterDefTest$(EXEEXT): $(letterDefTest_OBJECTS) $(letterDefTest_DEPENDENCIES) $(EXTRA_letterDefTest_DEPENDENCIES) @rm -f letterDefTest$(EXEEXT) $(LINK) $(letterDefTest_OBJECTS) $(letterDefTest_LDADD) $(LIBS) outpos$(EXEEXT): $(outpos_OBJECTS) $(outpos_DEPENDENCIES) $(EXTRA_outpos_DEPENDENCIES) @rm -f outpos$(EXEEXT) $(LINK) $(outpos_OBJECTS) $(outpos_LDADD) $(LIBS) pass0_typebuf$(EXEEXT): $(pass0_typebuf_OBJECTS) $(pass0_typebuf_DEPENDENCIES) $(EXTRA_pass0_typebuf_DEPENDENCIES) @rm -f pass0_typebuf$(EXEEXT) $(LINK) $(pass0_typebuf_OBJECTS) $(pass0_typebuf_LDADD) $(LIBS) pass1Only$(EXEEXT): $(pass1Only_OBJECTS) $(pass1Only_DEPENDENCIES) $(EXTRA_pass1Only_DEPENDENCIES) @rm -f pass1Only$(EXEEXT) $(LINK) $(pass1Only_OBJECTS) $(pass1Only_LDADD) $(LIBS) pass2$(EXEEXT): $(pass2_OBJECTS) $(pass2_DEPENDENCIES) $(EXTRA_pass2_DEPENDENCIES) @rm -f pass2$(EXEEXT) $(LINK) $(pass2_OBJECTS) $(pass2_LDADD) $(LIBS) pass2_inpos$(EXEEXT): $(pass2_inpos_OBJECTS) $(pass2_inpos_DEPENDENCIES) $(EXTRA_pass2_inpos_DEPENDENCIES) @rm -f pass2_inpos$(EXEEXT) $(LINK) $(pass2_inpos_OBJECTS) $(pass2_inpos_LDADD) $(LIBS) present_progressive$(EXEEXT): $(present_progressive_OBJECTS) $(present_progressive_DEPENDENCIES) $(EXTRA_present_progressive_DEPENDENCIES) @rm -f present_progressive$(EXEEXT) $(LINK) $(present_progressive_OBJECTS) $(present_progressive_LDADD) $(LIBS) squash_space$(EXEEXT): $(squash_space_OBJECTS) $(squash_space_DEPENDENCIES) $(EXTRA_squash_space_DEPENDENCIES) @rm -f squash_space$(EXEEXT) $(LINK) $(squash_space_OBJECTS) $(squash_space_LDADD) $(LIBS) typeform$(EXEEXT): $(typeform_OBJECTS) $(typeform_DEPENDENCIES) $(EXTRA_typeform_DEPENDENCIES) @rm -f typeform$(EXEEXT) $(LINK) $(typeform_OBJECTS) $(typeform_LDADD) $(LIBS) uplow_with_unicode$(EXEEXT): $(uplow_with_unicode_OBJECTS) $(uplow_with_unicode_DEPENDENCIES) $(EXTRA_uplow_with_unicode_DEPENDENCIES) @rm -f uplow_with_unicode$(EXEEXT) $(LINK) $(uplow_with_unicode_OBJECTS) $(uplow_with_unicode_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/brl_checks.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/capitalized_with_sentance.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/capitalized_word.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/en_gb_g1_italics.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getTable.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash_collision.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hyphenate_achena.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hyphenate_alderen.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hyphenate_straightforward.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hyphenate_xxx.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inpos.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inpos_compbrl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inpos_match_replace.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lastworditalafter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/letterDefTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/outpos.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pass0_typebuf.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pass1Only.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pass2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pass2_inpos.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/present_progressive.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/squash_space.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/typeform.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uplow_with_unicode.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ list=' $(TESTS) '; \ $(am__tty_colors); \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ elif test -f $$tst; then dir=; \ else dir="$(srcdir)/"; fi; \ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ col=$$red; res=XPASS; \ ;; \ *) \ col=$$grn; res=PASS; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xfail=`expr $$xfail + 1`; \ col=$$lgn; res=XFAIL; \ ;; \ *) \ failed=`expr $$failed + 1`; \ col=$$red; res=FAIL; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ col=$$blu; res=SKIP; \ fi; \ echo "$${col}$$res$${std}: $$tst"; \ done; \ if test "$$all" -eq 1; then \ tests="test"; \ All=""; \ else \ tests="tests"; \ All="All "; \ fi; \ if test "$$failed" -eq 0; then \ if test "$$xfail" -eq 0; then \ banner="$$All$$all $$tests passed"; \ else \ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ fi; \ else \ if test "$$xpass" -eq 0; then \ banner="$$failed of $$all $$tests failed"; \ else \ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ fi; \ fi; \ dashes="$$banner"; \ skipped=""; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ skipped="($$skip test was not run)"; \ else \ skipped="($$skip tests were not run)"; \ fi; \ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ if test "$$failed" -eq 0; then \ col="$$grn"; \ else \ col="$$red"; \ fi; \ echo "$${col}$$dashes$${std}"; \ echo "$${col}$$banner$${std}"; \ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ test -z "$$report" || echo "$${col}$$report$${std}"; \ echo "$${col}$$dashes$${std}"; \ test "$$failed" -eq 0; \ else :; fi distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) \ $(dist_check_SCRIPTS) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool ctags \ ctags-recursive distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tests/present_progressive.c0000664000175000017500000000325712161041523015706 00000000000000#include #include #include #include "brl_checks.h" /* Note that this test used to fail worse than it does now. The current situation isn't hugely critical, though probably still incorrect. There are two key portions of the string: the "ing" (which gets contracted to one character) and the double space at the end. When translated, you get: "greetings " -> "greet+s " Notice that the translation also contracts the double space into a single space. With regard to cursor position, compbrlAtCursor is set, which means that the word encompassed by the cursor will be uncontracted (computer braille). This means that if the cursor is anywhere within "greetings", the translated output will also be "greetings", so the cursor positions are identical up to the end of the s (position 8). It gets more interesting at position 9 (the first space). Now, greetings gets contracted, so the output cursor position becomes 7. Still correct so far. Position 10 (the second space) is the problem. Because compbrlAtCursor is set, the current word should probably be expanded. In this case, it is just a space. However, the two spaces are still compressed into one, even though the second should have been expanded. The translation has still contracted the second space, even though it should have stopped contracting at the cursor. See also the description in http://code.google.com/p/liblouis/issues/detail?id=4 */ int main (int argc, char **argv) { const char *str2 = "greetings "; const int expected_pos2[]={0,1,2,3,4,5,6,7,8,7,8}; return check_cursor_pos(str2, expected_pos2); } liblouis-2.5.3/tests/lastworditalafter.c0000664000175000017500000000151012161041523015317 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { int result = 0; /* First check italics with the English table */ const char *str = "He said it wasn't always working as expected."; const char *typeform = "110000000000000000111111111111110000000000000"; const char *expected = ".,he sd x wasn't .alw .\"w+ z expect$4"; result |= check_translation(TRANSLATION_TABLE, str, typeform, expected); /* Then check a test table that defines lastworditalafter */ str = "Er sagte es funktioniere nicht immer wie erwartet."; typeform = "11000000000011111111111111111100000000000000000000"; expected = "_ER SAGTE ES __FUNKTION0RE NI4T', IMMER W0 ERWARTET."; result |= check_translation("de-ch-g1.ctb", str, typeform, expected); return result; } liblouis-2.5.3/tests/hyphenate_alderen.c0000664000175000017500000000101212161041523015240 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { int ret = 0; char *tables = "da-dk-g2.ctb"; char *word = "alderen"; char * hyphens = calloc(9, sizeof(char)); hyphens[0] = '0'; hyphens[1] = '0'; hyphens[2] = '1'; hyphens[3] = '0'; hyphens[4] = '1'; hyphens[5] = '0'; hyphens[6] = '0'; ret = check_hyphenation(tables, word, hyphens); assert(hyphens[7] == '\0'); assert(hyphens[8] == '\0'); free(hyphens); return ret; } liblouis-2.5.3/tests/hyphenate_xxx.c0000664000175000017500000000107012161041523014461 00000000000000#include #include #include #include "brl_checks.h" /* Illustrates the same bug as doctests/hyphenate_xxx_test.txt * The same bug can be reproduced with only 3 'x'es. */ int main(int argc, char **argv) { int ret = 0; char *tables = "cs-g1.ctb,hyph_cs_CZ.dic"; char *word = "xxx"; char * hyphens = calloc(5, sizeof(char)); hyphens[0] = '0'; hyphens[1] = '0'; hyphens[2] = '0'; ret = check_hyphenation(tables, word, hyphens); assert(hyphens[3] == '\0'); assert(hyphens[4] == '\0'); free(hyphens); return ret; } liblouis-2.5.3/tests/check_endless_loop.pl0000775000175000017500000000115412161041523015607 00000000000000#!/usr/bin/perl use warnings; use strict; $|++; # Test a specific table with lou_checktable which causes an endless loop. # # Copyright (C) 2010 by Swiss Library for the Blind, Visually Impaired and Print Disabled # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. my $table="loop.ctb"; $SIG{ALRM} = sub { die "lou_checktable on $table stuck in endless loop\n" }; alarm 5; system("../tools/lou_checktable $table --quiet") == 0 or die "lou_checktable on $table failed\n"; alarm 0; liblouis-2.5.3/tests/brl_checks.h0000664000175000017500000000266112161041523013700 00000000000000#define TRANSLATION_TABLE "compress.cti,en-us-g2.ctb" int check_inpos(const char *tableList, const char *str, const int *expected_poslist); int check_outpos(const char *tableList, const char *str, const int *expected_poslist); /* Check if the cursor position is where you expect it to be after translating str. Return 0 if the translation is as expected and 1 otherwise. */ int check_cursor_pos(const char *str, const int *expected_pos); /* Check if a string is translated as expected. Return 0 if the translation is as expected and 1 otherwise. */ int check_translation(const char *tableList, const char *str, const char *typeform, const char *expected); /* Check if a string is translated as expected. Return 0 if the translation is as expected and 1 otherwise. */ int check_translation_with_mode(const char *tableList, const char *str, const char *typeform, const char *expected, int mode); /* Check if a string is hyphenated as expected. Return 0 if the hyphenation is as expected and 1 otherwise. */ int check_hyphenation(const char *tableList, const char *str, const char *expected); /* Helper function to convert a typeform string of '0's, '1's, '2's etc. to the required format, which is an array of 0s, 1s, 2s, etc. For example, "0000011111000" is converted to {0,0,0,0,0,1,1,1,1,1,0,0,0} The caller is responsible for freeing the returned array. */ char * convert_typeform(const char* typeform_string); liblouis-2.5.3/tests/uplow_with_unicode.c0000664000175000017500000000113312161041523015474 00000000000000#include #include #include #include "liblouis.h" #include "brl_checks.h" int main(int argc, char **argv) { int result = 0; const char *str1 = "gross"; const char *str2 = "gro\\x00df"; const char *expected = "g^"; result |= check_translation("uplow_with_unicode.ctb", str1, NULL, expected); result |= check_translation("uplow_with_unicode.ctb", str2, NULL, expected); result |= check_translation("lowercase_with_unicode.ctb", str1, NULL, expected); result |= check_translation("lowercase_with_unicode.ctb", str2, NULL, expected); return result; } liblouis-2.5.3/tests/check_all_tables.pl0000775000175000017500000000240512161041523015223 00000000000000#!/usr/bin/perl use warnings; use strict; $|++; # Test all tables with lou_checktable. # # Copyright (C) 2010 by Swiss Library for the Blind, Visually Impaired and Print Disabled # Copyright (C) 2012-2013 Mesar Hameed # # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. my $fail = 0; # some tables are quite big and take some time to check, so keep the timeout reasonably long my $timeout = 120; # seconds # We assume that the productive tables, i.e. the ones that are shipped # with liblouis (and need to be tested) are found in the first path in # LOUIS_TABLEPATH. The subsequent entries are for test tables. my $tablesdir = (split(',', $ENV{LOUIS_TABLEPATH}))[0]; # get all the tables from the tables directory my @tables = glob("$tablesdir/*.{utb,ctb}"); foreach my $table (@tables) { if (my $pid = fork) { waitpid($pid, 0); if ($?) { print STDERR "lou_checktable on $table failed or timed out\n"; $fail = 1; } } else { die "cannot fork: $!" unless defined($pid); alarm $timeout; exec ("../tools/lou_checktable $table --quiet"); die "Exec of lou_checktable failed: $!"; } } exit $fail; liblouis-2.5.3/tests/outpos.c0000664000175000017500000000150012161041534013116 00000000000000#include #include #include #include "brl_checks.h" int main(int argc, char **argv) { const char* table = "en-us-g1.ctb"; int result = 0; /* One input maps to one output. */ const char* str1 = "ab"; const int expected_outpos1[] = {0, 1}; result |= check_outpos(table, str1, expected_outpos1); /* One input maps to two output. */ const char* str2 = "1"; const int expected_outpos2[] = {1}; result |= check_outpos(table, str2, expected_outpos2); /* Similar to test 2, but multiple input. */ const char* str3 = "1 2"; const int expected_outpos3[] = {1, 2, 4}; result |= check_outpos(table, str3, expected_outpos3); const char* str4 = "1 2 3"; const int expected_outpos4[] = {1, 2, 4, 5, 7}; result |= check_outpos(table, str4, expected_outpos4); return result; } liblouis-2.5.3/tests/doctests/0000775000175000017500000000000012161044235013336 500000000000000liblouis-2.5.3/tests/doctests/Makefile.am0000664000175000017500000000014212161041523015304 00000000000000EXTRA_DIST = \ en-GB-g2.ctb_test.txt \ hyphenate_xxx_test.txt \ nl-BE-g1.ctb_test.txt liblouis-2.5.3/tests/doctests/nl-BE-g1.ctb_test.txt0000664000175000017500000001531012161041523017024 00000000000000Liblouis tests for Dutch language ================================= >>> tables = ['nl-BE.dis', 'nl-BE-g1.ctb'] >>> t = TestHelper(tables) >>> t.braille(u'a ä â à á') u'a ` 1 { {' >>> t.braille(u'b') u'b' >>> t.braille(u'c ç') u'c &' >>> t.braille(u'd') u'd' >>> t.braille(u'e ë ê è é') u'e 6 2 ~ %' >>> t.braille(u'f') u'f' >>> t.braille(u'g') u'g' >>> t.braille(u'h') u'h' >>> t.braille(u'i ï î ì í') u'i 7 3 | |' >>> t.braille(u'j') u'j' >>> t.braille(u'k') u'k' >>> t.braille(u'l') u'l' >>> t.braille(u'm') u'm' >>> t.braille(u'n ñ') u'n 7' >>> t.braille(u'o ö ô ò ó') u'o 9 4 0 0' >>> t.braille(u'p') u'p' >>> t.braille(u'q') u'q' >>> t.braille(u'r') u'r' Tests that have the '#doctest:+SKIP' annotation are skipped. They are known problems. >>> t.braille(u's ß') u's ~' >>> t.braille(u't') u't' >>> t.braille(u'u ü û ù ú') u'u 8 5 } }' >>> t.braille(u'v') u'v' >>> t.braille(u'w') u'w' >>> t.braille(u'x') u'x' >>> t.braille(u'y') u'y' >>> t.braille(u'z') u'z' >>> t.braille(u'punt .') u'punt /' >>> t.braille(u'komma ,') u'komma ,' >>> t.braille(u'puntkomma ;') u'puntkomma ;' >>> t.braille(u'dubbele punt :') u'dubbele punt :' >>> t.braille(u'vraagteken ?') u'vraagteken ?' >>> t.braille(u'uitroepteken !') u'uitroepteken +' >>> t.braille(u'schuine streep /') u'schuine streep |' >>> t.braille(u'liggend streepje -') u'liggend streepje -' >>> t.braille(u'beletselteken ...') u'beletselteken ///' >>> t.braille(u'(ronde haakjes)') u'(ronde haakjes)' >>> t.braille(u'“dubbele aanhalingstekensâ€') u'=dubbele aanhalingstekens=' >>> t.braille(u'\'enkele aanhalingstekens\'') u'.enkele aanhalingstekens.' >>> t.braille(u'[vierkante haakjes]') u'{vierkante haakjes}' >>> t.braille(u'ampersand &') u'ampersand &' >>> t.braille(u'asterisk *') u'asterisk *' >>> t.braille(u'at @') u'at `' >>> t.braille(u'backslash \\') u'backslash !1' >>> t.braille(u'copyright ©') u'copyright !c' >>> t.braille(u'dollar $') u'dollar d' >>> t.braille(u'euro €') u'euro e' >>> t.braille(u'gelijkheidsteken =') u'gelijkheidsteken =' >>> t.braille(u'groter dan >') u'groter dan !o' >>> t.braille(u'hekje #') u'hekje !#' >>> t.braille(u'kleiner dan <') u'kleiner dan !9' >>> t.braille(u'paragraaf §') u'paragraaf 0' >>> t.braille(u'pond £') u'pond p' >>> t.braille(u'registered ®') u'registered !r' >>> t.braille(u'underscore _') u'underscore _' >>> t.braille(u'yen Â¥') u'yen y' >>> t.braille(u'1') u'#a' >>> t.braille(u'2') u'#b' >>> t.braille(u'3') u'#c' >>> t.braille(u'4') u'#d' >>> t.braille(u'5') u'#e' >>> t.braille(u'6') u'#f' >>> t.braille(u'7') u'#g' >>> t.braille(u'8') u'#h' >>> t.braille(u'9') u'#i' >>> t.braille(u'0') u'#j' >>> t.braille(u'1.234.567,89') u'#a/bcd/efg,hi' >>> t.braille(u'050-12 34 56') u'#jej-#ab #cd #ef' >>> t.braille(u'050/78 90 12') u'#jej|#gh #ij #ab' >>> t.braille(u'050-34.56.78') u'#jej-#cd/ef/gh' >>> t.braille(u'BE03 4747 0637 8184') u'>be#jc #dgdg #jfcg #hahd' >>> t.braille(u'+ 32 11 32 43 54') u'+ #cb #aa #cb #dc #ed' >>> t.braille(u'1e, 1ste') u"#a'e, #aste" >>> t.braille(u'2e, 2de') u"#b'e, #b'de" >>> t.braille(u'3e, 3de') u"#c'e, #c'de" >>> t.braille(u'15e, 27ste') u"#ae'e, #bgste" >>> t.braille(u'10a') u"#aj'a" >>> t.braille(u'12.b') u"#ab/'b" >>> t.braille(u'1 + 2 = 3') u'#a + #b = #c' >>> t.braille(u'9 - 5 = 4') u'#i - #e = #d' >>> t.braille(u'3 × 3 = 9') u'#c ( #c = #i' >>> t.braille(u'8 ÷ 4 = 2') u'#h / #d = #b' >>> t.braille(u'65+-kaart') u'#fe!+-kaart' >>> t.braille(u'40-jarige') u'#dj-jarige' >>> t.braille(u'79,5 %') u'#gi,e %' >>> t.braille(u'15%') u'#ae %' >>> t.braille(u'37,8° C') u'#cg,h") $c' >>> t.braille(u'65 m²') u'#fe m|#b' >>> t.braille(u'1.000 cm³') u'#a/jjj cm|#c' >>> t.braille(u'½ kg - 1/2 kg') u'#a|#b kg - #a|#b kg' >>> t.braille(u'¼ l - 1/4 l') u'#a|#d l - #a|#d l' >>> t.braille(u'COâ‚‚-uitstoot: 158 g COâ‚‚/km') u'>co1;-uitstoot: #aeh g >co1;|km' >>> t.braille(u'Benedictus XVI') u'$benedictus >xvi' >>> t.braille(u'Jozef II-straat') u"$jozef >ii-'straat" >>> t.braille(u'WO II') u'>wo >ii' >>> t.braille(u'EEN woord in hoofdletters') u'>een woord in hoofdletters' >>> t.braille(u'TWEE WOORDEN in hoofdletters') u'>twee >woorden in hoofdletters' >>> t.braille(u'DRIE WOORDEN IN hoofdletters') u'>drie >woorden >in hoofdletters' >>> t.braille(u'MEER DAN DRIE WOORDEN in hoofdletters') #doctest:+SKIP u'>>meer dan drie >woorden in hoofdletters' >>> t.braille(u'BTW-TARIEF volledig in hoofdletters') u'>btw-tarief volledig in hoofdletters' >>> t.braille(u'BTW-tarief alleen btw in hoofdletters') u">btw-'tarief alleen btw in hoofdletters" >>> t.braille(u'P+R park and ride') u'>p!+r park and ride' >>> t.braille(u'N-VA Nieuw-Vlaamse Alliantie') u'>n-va $nieuw-$vlaamse $alliantie' >>> t.braille(u'CD&V Christen-Democratisch en Vlaams') u'>cd!&v $christen-$democratisch en $vlaams' >>> t.braille(u'W.F. Hermans') u'>w/f/ $hermans' >>> t.braille(u'FAQ\'s') u">faq.'s" >>> t.braille(u'VTM\'er') u">vtm.'er" >>> t.braille(u'65+\'er') u'#fe!+.er' >>> t.braille(u'SLAAT DE VLAM IN DE PAN, DEK DE VUURHAARD DAN AF MET EEN BRANDWERENDE DEKEN OF EEN VOCHTIGE DOEK.') #doctest:+SKIP u'>>slaat de vlam in de pan, dek de vuurhaard dan af met een brandwerende deken of een vochtige >doek/' >>> t.braille(u'lisa_dirk@yahoo.com') u'lisa_dirk`yahoo/com' >>> t.braille(u'http://www.avh.asso.fr') u'http:||www/avh/asso/fr' >>> t.braille(u'C:\\Documents and Settings') u'$c:!1$documents and $settings' >>> t.braille(u'€ 12,35') u'e#ab,ce' >>> t.braille(u'€12,35') u'e#ab,ce' >>> t.braille(u'$ 10,00') u'd#aj,jj' >>> t.braille(u'$10,00') u'd#aj,jj' >>> t.braille(u'£ 65,47') u'p#fe,dg' >>> t.braille(u'£65,47') u'p#fe,dg' >>> t.braille(u'Â¥ 100.000') u'y#ajj/jjj' >>> t.braille(u'Â¥100.000') u'y#ajj/jjj' >>> t.braille(u'Eén') u'$%%n' >>> t.braille(u'É-U') u'>%-u' liblouis-2.5.3/tests/doctests/hyphenate_xxx_test.txt0000664000175000017500000000047512161041523017755 00000000000000Liblouis hyphenate crash test ============================= Originally reported at: http://www.freelists.org/post/liblouis-liblouisxml/Another-crash-in-Python-hyphenation >>> import louis >>> tables = ["cs-g1.ctb", "hyph_cs_CZ.dic"] >>> louis.hyphenate(tables, "xxxxxxxxxxxxxxx") u'000000000000000' liblouis-2.5.3/tests/doctests/en-GB-g2.ctb_test.txt0000664000175000017500000000121312161041523017015 00000000000000Liblouis tests ============== This is an example test file in reStructuredText format Define the table you want to test and initiate the test helper >>> tables = ['en-GB-g2.ctb'] >>> t = TestHelper(tables) Now do some tests. Check that "the" is correctly contracted >>> t.braille('the cat sat on the mat') u'! cat sat on ! mat' Make sure that "to" is contracted correctly and joined to next word. >>> t.braille('to the moon') u'6! moon' Check that "to" at end of line doesn't get contracted, and that "went" is expanded when cursor is positioned within the word. >>> t.cursor('you went to', 4) (u'y went to', 2) liblouis-2.5.3/tests/doctests/Makefile.in0000664000175000017500000004674412161044154015342 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = tests/doctests DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ en-GB-g2.ctb_test.txt \ hyphenate_xxx_test.txt \ nl-BE-g1.ctb_test.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/doctests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/doctests/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/tests/check_doctests.py0000775000175000017500000000151512161041534014771 00000000000000#!/usr/bin/python import doctest import glob import sys import louis if sys.version_info >= (3,): sys.stderr.write("The doctests have not been ported to python 3. Skipping...\n") sys.exit(0) class TestHelper(): def __init__(self, tables): self.tables = tables def braille(self, txt): return louis.translateString(self.tables, txt) def cursor(self, txt, cursorPos): return louis.translate(self.tables, txt, cursorPos=cursorPos, mode=louis.compbrlAtCursor)[0:4:3] exit_value = 0 for test in glob.iglob('doctests/*_test.txt'): failure_count, ignore = doctest.testfile( test, report=True, encoding='utf-8', extraglobs={'TestHelper': TestHelper}) if failure_count > 0: exit_value = 1 sys.exit(exit_value) liblouis-2.5.3/tests/capitalized_with_sentance.c0000664000175000017500000000045412161041523016776 00000000000000#include #include #include #include "brl_checks.h" int main (int argc, char **argv) { const char *str1 = "This is a test "; const int expected_pos1[]={0,1,2,3,2,3,4,5,6,7,8,9,10,11,11}; return check_cursor_pos(str1, expected_pos1); } liblouis-2.5.3/tests/brl_checks.c0000664000175000017500000001524712161041523013677 00000000000000#include #include #include #include #include "liblouis.h" #include "louis.h" #include "brl_checks.h" void print_int_array(const char *prefix, int *pos_list, int len) { int i; printf("%s ", prefix); for (i = 0; i < len; i++) printf("%d ", pos_list[i]); printf("\n"); } void print_widechars(widechar * buf, int len) { int i; for (i = 0; i < len; i++) printf("%c", buf[i]); } /* Helper function to convert a typeform string of '0's, '1's, '2's etc. to the required format, which is an array of 0s, 1s, 2s, etc. For example, "0000011111000" is converted to {0,0,0,0,0,1,1,1,1,1,0,0,0} The caller is responsible for freeing the returned array. */ char * convert_typeform(const char* typeform_string) { int len = strlen(typeform_string); char *typeform = malloc(len * sizeof(char)); int i; for (i=0; i #include #include #include "brl_checks.h" int main(int argc, char **argv) { int i; int result = 0; const char *tests[] = { /* first column is the text, the second is the expected value */ " ", " ", /* the usual case */ " ", " ", /* a very long string */ " " \ " " \ " " \ " " \ " " \ " ", " ", /* an even longer string */ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " ", " ", /* a string containing tabs */ " \t", " \t", " \t ", " \t ", "\t ", "\t ", /* Strings containing newlines */ " \n", " \n", " \n ", " \n ", "\n ", "\n " }; /* A number of strings that we want to squash, i.e. they should all result in an output of one space */ const char *strings[] = { /* a simple space */ " ", /* a long string */ " ", /* a very long string */ " " \ " " \ " " \ " " \ " " \ " ", /* an even longer string */ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " " \ " ", /* a couple of strings containing tabs */ " \t", " \t ", "\t ", /* Strings containing newlines */ " \n", " \n ", "\n ", /* All mixed */ " \n \t \n \t\t \n\n\n\t\t ", }; const char *expected = " "; int tests_len = sizeof(tests)/sizeof(char*); for (i = 0; i < tests_len; i += 2) result |= check_translation("squash_space_with_repeated.utb", tests[i], NULL, tests[i+1]); tests_len = sizeof(strings)/sizeof(char*); for (i = 0; i < tests_len; i++) result |= check_translation("squash_space_with_correct.utb", strings[i], NULL, expected); for (i = 0; i < tests_len; i++) result |= check_translation("squash_space_with_context_1.utb", strings[i], NULL, expected); for (i = 0; i < tests_len; i++) result |= check_translation("squash_space_with_context_2.utb", strings[i], NULL, expected); return result; } liblouis-2.5.3/gnulib/0000775000175000017500000000000012161044234011623 500000000000000liblouis-2.5.3/gnulib/progname.c0000664000175000017500000000615012161041522013516 00000000000000/* Program name management. Copyright (C) 2001-2003, 2005-2013 Free Software Foundation, Inc. Written by Bruno Haible , 2001. 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, see . */ #include /* Specification. */ #undef ENABLE_RELOCATABLE /* avoid defining set_program_name as a macro */ #include "progname.h" #include /* get program_invocation_name declaration */ #include #include #include /* String containing name the program is called with. To be initialized by main(). */ const char *program_name = NULL; /* Set program_name, based on argv[0]. argv0 must be a string allocated with indefinite extent, and must not be modified after this call. */ void set_program_name (const char *argv0) { /* libtool creates a temporary executable whose name is sometimes prefixed with "lt-" (depends on the platform). It also makes argv[0] absolute. But the name of the temporary executable is a detail that should not be visible to the end user and to the test suite. Remove this "/.libs/" or "/.libs/lt-" prefix here. */ const char *slash; const char *base; /* Sanity check. POSIX requires the invoking process to pass a non-NULL argv[0]. */ if (argv0 == NULL) { /* It's a bug in the invoking program. Help diagnosing it. */ fputs ("A NULL argv[0] was passed through an exec system call.\n", stderr); abort (); } slash = strrchr (argv0, '/'); base = (slash != NULL ? slash + 1 : argv0); if (base - argv0 >= 7 && strncmp (base - 7, "/.libs/", 7) == 0) { argv0 = base; if (strncmp (base, "lt-", 3) == 0) { argv0 = base + 3; /* On glibc systems, remove the "lt-" prefix from the variable program_invocation_short_name. */ #if HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME program_invocation_short_name = (char *) argv0; #endif } } /* But don't strip off a leading / in general, because when the user runs /some/hidden/place/bin/cp foo foo he should get the error message /some/hidden/place/bin/cp: `foo' and `foo' are the same file not cp: `foo' and `foo' are the same file */ program_name = argv0; /* On glibc systems, the error() function comes from libc and uses the variable program_invocation_name, not program_name. So set this variable as well. */ #if HAVE_DECL_PROGRAM_INVOCATION_NAME program_invocation_name = (char *) argv0; #endif } liblouis-2.5.3/gnulib/Makefile.am0000664000175000017500000005501212161041522013577 00000000000000## DO NOT EDIT! GENERATED AUTOMATICALLY! ## Process this file with automake to produce Makefile.in. # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # Reproduce by: gnulib-tool --import --dir=. --local-dir=gnulib/override --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --no-conditional-dependencies --libtool --macro-prefix=gl getopt-gnu malloc-gnu progname realloc-gnu version-etc AUTOMAKE_OPTIONS = 1.5 gnits SUBDIRS = noinst_HEADERS = noinst_LIBRARIES = noinst_LTLIBRARIES = EXTRA_DIST = BUILT_SOURCES = SUFFIXES = MOSTLYCLEANFILES = core *.stackdump MOSTLYCLEANDIRS = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = EXTRA_DIST += m4/gnulib-cache.m4 AM_CPPFLAGS = AM_CFLAGS = noinst_LTLIBRARIES += libgnu.la libgnu_la_SOURCES = libgnu_la_LIBADD = $(gl_LTLIBOBJS) libgnu_la_DEPENDENCIES = $(gl_LTLIBOBJS) EXTRA_libgnu_la_SOURCES = libgnu_la_LDFLAGS = $(AM_LDFLAGS) libgnu_la_LDFLAGS += -no-undefined libgnu_la_LDFLAGS += $(LTLIBINTL) ## begin gnulib module getopt-posix BUILT_SOURCES += $(GETOPT_H) # We need the following in order to create when the system # doesn't have one that works with the given compiler. getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ < $(srcdir)/getopt.in.h; \ } > $@-t && \ mv -f $@-t $@ MOSTLYCLEANFILES += getopt.h getopt.h-t EXTRA_DIST += getopt.c getopt.in.h getopt1.c getopt_int.h EXTRA_libgnu_la_SOURCES += getopt.c getopt1.c ## end gnulib module getopt-posix ## begin gnulib module gettext-h libgnu_la_SOURCES += gettext.h ## end gnulib module gettext-h ## begin gnulib module malloc-gnu EXTRA_DIST += malloc.c EXTRA_libgnu_la_SOURCES += malloc.c ## end gnulib module malloc-gnu ## begin gnulib module malloc-posix EXTRA_DIST += malloc.c EXTRA_libgnu_la_SOURCES += malloc.c ## end gnulib module malloc-posix ## begin gnulib module progname libgnu_la_SOURCES += progname.h progname.c ## end gnulib module progname ## begin gnulib module realloc-gnu EXTRA_DIST += realloc.c EXTRA_libgnu_la_SOURCES += realloc.c ## end gnulib module realloc-gnu ## begin gnulib module realloc-posix EXTRA_DIST += realloc.c EXTRA_libgnu_la_SOURCES += realloc.c ## end gnulib module realloc-posix ## begin gnulib module snippet/_Noreturn # Because this Makefile snippet defines a variable used by other # gnulib Makefile snippets, it must be present in all Makefile.am that # need it. This is ensured by the applicability 'all' defined above. _NORETURN_H=$(top_srcdir)/build-aux/snippet/_Noreturn.h EXTRA_DIST += $(top_srcdir)/build-aux/snippet/_Noreturn.h ## end gnulib module snippet/_Noreturn ## begin gnulib module snippet/arg-nonnull # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. BUILT_SOURCES += arg-nonnull.h # The arg-nonnull.h that gets inserted into generated .h files is the same as # build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut # off. arg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/GL_ARG_NONNULL/,$$p' \ < $(top_srcdir)/build-aux/snippet/arg-nonnull.h \ > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += arg-nonnull.h arg-nonnull.h-t ARG_NONNULL_H=arg-nonnull.h EXTRA_DIST += $(top_srcdir)/build-aux/snippet/arg-nonnull.h ## end gnulib module snippet/arg-nonnull ## begin gnulib module snippet/c++defs # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. BUILT_SOURCES += c++defs.h # The c++defs.h that gets inserted into generated .h files is the same as # build-aux/snippet/c++defs.h, except that it has the copyright header cut off. c++defs.h: $(top_srcdir)/build-aux/snippet/c++defs.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/_GL_CXXDEFS/,$$p' \ < $(top_srcdir)/build-aux/snippet/c++defs.h \ > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += c++defs.h c++defs.h-t CXXDEFS_H=c++defs.h EXTRA_DIST += $(top_srcdir)/build-aux/snippet/c++defs.h ## end gnulib module snippet/c++defs ## begin gnulib module snippet/warn-on-use BUILT_SOURCES += warn-on-use.h # The warn-on-use.h that gets inserted into generated .h files is the same as # build-aux/snippet/warn-on-use.h, except that it has the copyright header cut # off. warn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/^.ifndef/,$$p' \ < $(top_srcdir)/build-aux/snippet/warn-on-use.h \ > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t WARN_ON_USE_H=warn-on-use.h EXTRA_DIST += $(top_srcdir)/build-aux/snippet/warn-on-use.h ## end gnulib module snippet/warn-on-use ## begin gnulib module stdarg BUILT_SOURCES += $(STDARG_H) # We need the following in order to create when the system # doesn't have one that works with the given compiler. if GL_GENERATE_STDARG_H stdarg.h: stdarg.in.h $(top_builddir)/config.status $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STDARG_H''@|$(NEXT_STDARG_H)|g' \ < $(srcdir)/stdarg.in.h; \ } > $@-t && \ mv $@-t $@ else stdarg.h: $(top_builddir)/config.status rm -f $@ endif MOSTLYCLEANFILES += stdarg.h stdarg.h-t EXTRA_DIST += stdarg.in.h ## end gnulib module stdarg ## begin gnulib module stddef BUILT_SOURCES += $(STDDEF_H) # We need the following in order to create when the system # doesn't have one that works with the given compiler. if GL_GENERATE_STDDEF_H stddef.h: stddef.in.h $(top_builddir)/config.status $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \ -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \ -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \ < $(srcdir)/stddef.in.h; \ } > $@-t && \ mv $@-t $@ else stddef.h: $(top_builddir)/config.status rm -f $@ endif MOSTLYCLEANFILES += stddef.h stddef.h-t EXTRA_DIST += stddef.in.h ## end gnulib module stddef ## begin gnulib module stdlib BUILT_SOURCES += stdlib.h # We need the following in order to create when the system # doesn't have one that works with the given compiler. stdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \ $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \ -e 's/@''GNULIB__EXIT''@/$(GNULIB__EXIT)/g' \ -e 's/@''GNULIB_ATOLL''@/$(GNULIB_ATOLL)/g' \ -e 's/@''GNULIB_CALLOC_POSIX''@/$(GNULIB_CALLOC_POSIX)/g' \ -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GNULIB_CANONICALIZE_FILE_NAME)/g' \ -e 's/@''GNULIB_GETLOADAVG''@/$(GNULIB_GETLOADAVG)/g' \ -e 's/@''GNULIB_GETSUBOPT''@/$(GNULIB_GETSUBOPT)/g' \ -e 's/@''GNULIB_GRANTPT''@/$(GNULIB_GRANTPT)/g' \ -e 's/@''GNULIB_MALLOC_POSIX''@/$(GNULIB_MALLOC_POSIX)/g' \ -e 's/@''GNULIB_MBTOWC''@/$(GNULIB_MBTOWC)/g' \ -e 's/@''GNULIB_MKDTEMP''@/$(GNULIB_MKDTEMP)/g' \ -e 's/@''GNULIB_MKOSTEMP''@/$(GNULIB_MKOSTEMP)/g' \ -e 's/@''GNULIB_MKOSTEMPS''@/$(GNULIB_MKOSTEMPS)/g' \ -e 's/@''GNULIB_MKSTEMP''@/$(GNULIB_MKSTEMP)/g' \ -e 's/@''GNULIB_MKSTEMPS''@/$(GNULIB_MKSTEMPS)/g' \ -e 's/@''GNULIB_POSIX_OPENPT''@/$(GNULIB_POSIX_OPENPT)/g' \ -e 's/@''GNULIB_PTSNAME''@/$(GNULIB_PTSNAME)/g' \ -e 's/@''GNULIB_PTSNAME_R''@/$(GNULIB_PTSNAME_R)/g' \ -e 's/@''GNULIB_PUTENV''@/$(GNULIB_PUTENV)/g' \ -e 's/@''GNULIB_RANDOM''@/$(GNULIB_RANDOM)/g' \ -e 's/@''GNULIB_RANDOM_R''@/$(GNULIB_RANDOM_R)/g' \ -e 's/@''GNULIB_REALLOC_POSIX''@/$(GNULIB_REALLOC_POSIX)/g' \ -e 's/@''GNULIB_REALPATH''@/$(GNULIB_REALPATH)/g' \ -e 's/@''GNULIB_RPMATCH''@/$(GNULIB_RPMATCH)/g' \ -e 's/@''GNULIB_SETENV''@/$(GNULIB_SETENV)/g' \ -e 's/@''GNULIB_STRTOD''@/$(GNULIB_STRTOD)/g' \ -e 's/@''GNULIB_STRTOLL''@/$(GNULIB_STRTOLL)/g' \ -e 's/@''GNULIB_STRTOULL''@/$(GNULIB_STRTOULL)/g' \ -e 's/@''GNULIB_SYSTEM_POSIX''@/$(GNULIB_SYSTEM_POSIX)/g' \ -e 's/@''GNULIB_UNLOCKPT''@/$(GNULIB_UNLOCKPT)/g' \ -e 's/@''GNULIB_UNSETENV''@/$(GNULIB_UNSETENV)/g' \ -e 's/@''GNULIB_WCTOMB''@/$(GNULIB_WCTOMB)/g' \ < $(srcdir)/stdlib.in.h | \ sed -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \ -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \ -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \ -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \ -e 's|@''HAVE_GRANTPT''@|$(HAVE_GRANTPT)|g' \ -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \ -e 's|@''HAVE_MKOSTEMP''@|$(HAVE_MKOSTEMP)|g' \ -e 's|@''HAVE_MKOSTEMPS''@|$(HAVE_MKOSTEMPS)|g' \ -e 's|@''HAVE_MKSTEMP''@|$(HAVE_MKSTEMP)|g' \ -e 's|@''HAVE_MKSTEMPS''@|$(HAVE_MKSTEMPS)|g' \ -e 's|@''HAVE_POSIX_OPENPT''@|$(HAVE_POSIX_OPENPT)|g' \ -e 's|@''HAVE_PTSNAME''@|$(HAVE_PTSNAME)|g' \ -e 's|@''HAVE_PTSNAME_R''@|$(HAVE_PTSNAME_R)|g' \ -e 's|@''HAVE_RANDOM''@|$(HAVE_RANDOM)|g' \ -e 's|@''HAVE_RANDOM_H''@|$(HAVE_RANDOM_H)|g' \ -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \ -e 's|@''HAVE_REALPATH''@|$(HAVE_REALPATH)|g' \ -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \ -e 's|@''HAVE_DECL_SETENV''@|$(HAVE_DECL_SETENV)|g' \ -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \ -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \ -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \ -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \ -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \ -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \ -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \ -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \ -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \ -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \ -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \ -e 's|@''REPLACE_PTSNAME''@|$(REPLACE_PTSNAME)|g' \ -e 's|@''REPLACE_PTSNAME_R''@|$(REPLACE_PTSNAME_R)|g' \ -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \ -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \ -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \ -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \ -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \ -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \ -e 's|@''REPLACE_UNSETENV''@|$(REPLACE_UNSETENV)|g' \ -e 's|@''REPLACE_WCTOMB''@|$(REPLACE_WCTOMB)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _Noreturn/r $(_NORETURN_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += stdlib.h stdlib.h-t EXTRA_DIST += stdlib.in.h ## end gnulib module stdlib ## begin gnulib module sys_types BUILT_SOURCES += sys/types.h # We need the following in order to create when the system # doesn't have one that works with the given compiler. sys/types.h: sys_types.in.h $(top_builddir)/config.status $(AM_V_at)$(MKDIR_P) sys $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += sys/types.h sys/types.h-t EXTRA_DIST += sys_types.in.h ## end gnulib module sys_types ## begin gnulib module unistd BUILT_SOURCES += unistd.h libgnu_la_SOURCES += unistd.c # We need the following in order to create an empty placeholder for # when the system doesn't have one. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \ -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \ -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \ -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \ -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \ -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \ -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \ -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \ -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \ -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \ -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \ -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \ -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \ -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \ -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \ -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \ -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \ -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \ -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \ -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \ -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \ -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \ -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \ -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \ -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \ -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \ -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \ -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \ -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \ -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \ -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \ -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \ -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \ -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \ -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \ -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \ -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \ -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \ -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \ -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \ -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \ -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \ -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \ -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \ -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \ -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \ -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \ -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \ -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \ < $(srcdir)/unistd.in.h | \ sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \ -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \ -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \ -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \ -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \ -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \ -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \ -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \ -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \ -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \ -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \ -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \ -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \ -e 's|@''HAVE_GETLOGIN''@|$(HAVE_GETLOGIN)|g' \ -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \ -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \ -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \ -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \ -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \ -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \ -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \ -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \ -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \ -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \ -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \ -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \ -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \ -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \ -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \ -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \ -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \ -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \ -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \ -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \ -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \ -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ | \ sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \ -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \ -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \ -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \ -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \ -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \ -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \ -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \ -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \ -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \ -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \ -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \ -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \ -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \ -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \ -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \ -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \ -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \ -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \ -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \ -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \ -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += unistd.h unistd.h-t EXTRA_DIST += unistd.in.h ## end gnulib module unistd ## begin gnulib module version-etc libgnu_la_SOURCES += version-etc.h version-etc.c ## end gnulib module version-etc mostlyclean-local: mostlyclean-generic @for dir in '' $(MOSTLYCLEANDIRS); do \ if test -n "$$dir" && test -d $$dir; then \ echo "rmdir $$dir"; rmdir $$dir; \ fi; \ done; \ : liblouis-2.5.3/gnulib/version-etc.h0000664000175000017500000000555512161041522014161 00000000000000/* Print --version and bug-reporting information in a consistent format. Copyright (C) 1999, 2003, 2005, 2009-2013 Free Software Foundation, Inc. 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, see . */ /* Written by Jim Meyering. */ #ifndef VERSION_ETC_H # define VERSION_ETC_H 1 # include # include /* The 'sentinel' attribute was added in gcc 4.0. */ #ifndef _GL_ATTRIBUTE_SENTINEL # if 4 <= __GNUC__ # define _GL_ATTRIBUTE_SENTINEL __attribute__ ((__sentinel__)) # else # define _GL_ATTRIBUTE_SENTINEL /* empty */ # endif #endif extern const char version_etc_copyright[]; /* The three functions below display the --version information in the standard way: command and package names, package version, followed by a short GPLv3+ notice and a list of up to 10 author names. If COMMAND_NAME is NULL, the PACKAGE is assumed to be the name of the program. The formats are therefore: PACKAGE VERSION or COMMAND_NAME (PACKAGE) VERSION. The functions differ in the way they are passed author names: */ /* N_AUTHORS names are supplied in array AUTHORS. */ extern void version_etc_arn (FILE *stream, const char *command_name, const char *package, const char *version, const char * const * authors, size_t n_authors); /* Names are passed in the NULL-terminated array AUTHORS. */ extern void version_etc_ar (FILE *stream, const char *command_name, const char *package, const char *version, const char * const * authors); /* Names are passed in the NULL-terminated va_list. */ extern void version_etc_va (FILE *stream, const char *command_name, const char *package, const char *version, va_list authors); /* Names are passed as separate arguments, with an additional NULL argument at the end. */ extern void version_etc (FILE *stream, const char *command_name, const char *package, const char *version, /* const char *author1, ..., NULL */ ...) _GL_ATTRIBUTE_SENTINEL; /* Display the usual "Report bugs to" stanza. */ extern void emit_bug_reporting_address (void); #endif /* VERSION_ETC_H */ liblouis-2.5.3/gnulib/getopt.c0000664000175000017500000011750412161041522013216 00000000000000/* Getopt for GNU. NOTE: getopt is part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to drepper@gnu.org before changing it! Copyright (C) 1987-1996, 1998-2004, 2006, 2008-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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, see . */ #ifndef _LIBC # include #endif #include "getopt.h" #include #include #include #include #ifdef _LIBC # include #else # include "gettext.h" # define _(msgid) gettext (msgid) #endif #if defined _LIBC && defined USE_IN_LIBIO # include #endif /* This version of 'getopt' appears to the caller like standard Unix 'getopt' but it behaves differently for the user, since it allows the user to intersperse the options with the other arguments. As 'getopt_long' works, it permutes the elements of ARGV so that, when it is done, all the options precede everything else. Thus all application programs are extended to handle flexible argument order. Using 'getopt' or setting the environment variable POSIXLY_CORRECT disables permutation. Then the behavior is completely standard. GNU application programs can use a third alternative mode in which they can distinguish the relative order of options and other arguments. */ #include "getopt_int.h" /* For communication from 'getopt' to the caller. When 'getopt' finds an option that takes an argument, the argument value is returned here. Also, when 'ordering' is RETURN_IN_ORDER, each non-option ARGV-element is returned here. */ char *optarg; /* Index in ARGV of the next element to be scanned. This is used for communication to and from the caller and for communication between successive calls to 'getopt'. On entry to 'getopt', zero means this is the first call; initialize. When 'getopt' returns -1, this is the index of the first of the non-option elements that the caller should itself scan. Otherwise, 'optind' communicates from one call to the next how much of ARGV has been scanned so far. */ /* 1003.2 says this must be 1 before any call. */ int optind = 1; /* Callers store zero here to inhibit the error message for unrecognized options. */ int opterr = 1; /* Set to an option character which was unrecognized. This must be initialized on some systems to avoid linking in the system's own getopt implementation. */ int optopt = '?'; /* Keep a global copy of all internal members of getopt_data. */ static struct _getopt_data getopt_data; #if defined HAVE_DECL_GETENV && !HAVE_DECL_GETENV extern char *getenv (); #endif #ifdef _LIBC /* Stored original parameters. XXX This is no good solution. We should rather copy the args so that we can compare them later. But we must not use malloc(3). */ extern int __libc_argc; extern char **__libc_argv; /* Bash 2.0 gives us an environment variable containing flags indicating ARGV elements that should not be considered arguments. */ # ifdef USE_NONOPTION_FLAGS /* Defined in getopt_init.c */ extern char *__getopt_nonoption_flags; # endif # ifdef USE_NONOPTION_FLAGS # define SWAP_FLAGS(ch1, ch2) \ if (d->__nonoption_flags_len > 0) \ { \ char __tmp = __getopt_nonoption_flags[ch1]; \ __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \ __getopt_nonoption_flags[ch2] = __tmp; \ } # else # define SWAP_FLAGS(ch1, ch2) # endif #else /* !_LIBC */ # define SWAP_FLAGS(ch1, ch2) #endif /* _LIBC */ /* Exchange two adjacent subsequences of ARGV. One subsequence is elements [first_nonopt,last_nonopt) which contains all the non-options that have been skipped so far. The other is elements [last_nonopt,optind), which contains all the options processed since those non-options were skipped. 'first_nonopt' and 'last_nonopt' are relocated so that they describe the new indices of the non-options in ARGV after they are moved. */ static void exchange (char **argv, struct _getopt_data *d) { int bottom = d->__first_nonopt; int middle = d->__last_nonopt; int top = d->optind; char *tem; /* Exchange the shorter segment with the far end of the longer segment. That puts the shorter segment into the right place. It leaves the longer segment in the right place overall, but it consists of two parts that need to be swapped next. */ #if defined _LIBC && defined USE_NONOPTION_FLAGS /* First make sure the handling of the '__getopt_nonoption_flags' string can work normally. Our top argument must be in the range of the string. */ if (d->__nonoption_flags_len > 0 && top >= d->__nonoption_flags_max_len) { /* We must extend the array. The user plays games with us and presents new arguments. */ char *new_str = malloc (top + 1); if (new_str == NULL) d->__nonoption_flags_len = d->__nonoption_flags_max_len = 0; else { memset (__mempcpy (new_str, __getopt_nonoption_flags, d->__nonoption_flags_max_len), '\0', top + 1 - d->__nonoption_flags_max_len); d->__nonoption_flags_max_len = top + 1; __getopt_nonoption_flags = new_str; } } #endif while (top > middle && middle > bottom) { if (top - middle > middle - bottom) { /* Bottom segment is the short one. */ int len = middle - bottom; register int i; /* Swap it with the top part of the top segment. */ for (i = 0; i < len; i++) { tem = argv[bottom + i]; argv[bottom + i] = argv[top - (middle - bottom) + i]; argv[top - (middle - bottom) + i] = tem; SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); } /* Exclude the moved bottom segment from further swapping. */ top -= len; } else { /* Top segment is the short one. */ int len = top - middle; register int i; /* Swap it with the bottom part of the bottom segment. */ for (i = 0; i < len; i++) { tem = argv[bottom + i]; argv[bottom + i] = argv[middle + i]; argv[middle + i] = tem; SWAP_FLAGS (bottom + i, middle + i); } /* Exclude the moved top segment from further swapping. */ bottom += len; } } /* Update records for the slots the non-options now occupy. */ d->__first_nonopt += (d->optind - d->__last_nonopt); d->__last_nonopt = d->optind; } /* Initialize the internal data when the first call is made. */ static const char * _getopt_initialize (int argc _GL_UNUSED, char **argv _GL_UNUSED, const char *optstring, struct _getopt_data *d, int posixly_correct) { /* Start processing options with ARGV-element 1 (since ARGV-element 0 is the program name); the sequence of previously skipped non-option ARGV-elements is empty. */ d->__first_nonopt = d->__last_nonopt = d->optind; d->__nextchar = NULL; d->__posixly_correct = posixly_correct || !!getenv ("POSIXLY_CORRECT"); /* Determine how to handle the ordering of options and nonoptions. */ if (optstring[0] == '-') { d->__ordering = RETURN_IN_ORDER; ++optstring; } else if (optstring[0] == '+') { d->__ordering = REQUIRE_ORDER; ++optstring; } else if (d->__posixly_correct) d->__ordering = REQUIRE_ORDER; else d->__ordering = PERMUTE; #if defined _LIBC && defined USE_NONOPTION_FLAGS if (!d->__posixly_correct && argc == __libc_argc && argv == __libc_argv) { if (d->__nonoption_flags_max_len == 0) { if (__getopt_nonoption_flags == NULL || __getopt_nonoption_flags[0] == '\0') d->__nonoption_flags_max_len = -1; else { const char *orig_str = __getopt_nonoption_flags; int len = d->__nonoption_flags_max_len = strlen (orig_str); if (d->__nonoption_flags_max_len < argc) d->__nonoption_flags_max_len = argc; __getopt_nonoption_flags = (char *) malloc (d->__nonoption_flags_max_len); if (__getopt_nonoption_flags == NULL) d->__nonoption_flags_max_len = -1; else memset (__mempcpy (__getopt_nonoption_flags, orig_str, len), '\0', d->__nonoption_flags_max_len - len); } } d->__nonoption_flags_len = d->__nonoption_flags_max_len; } else d->__nonoption_flags_len = 0; #endif return optstring; } /* Scan elements of ARGV (whose length is ARGC) for option characters given in OPTSTRING. If an element of ARGV starts with '-', and is not exactly "-" or "--", then it is an option element. The characters of this element (aside from the initial '-') are option characters. If 'getopt' is called repeatedly, it returns successively each of the option characters from each of the option elements. If 'getopt' finds another option character, it returns that character, updating 'optind' and 'nextchar' so that the next call to 'getopt' can resume the scan with the following option character or ARGV-element. If there are no more option characters, 'getopt' returns -1. Then 'optind' is the index in ARGV of the first ARGV-element that is not an option. (The ARGV-elements have been permuted so that those that are not options now come last.) OPTSTRING is a string containing the legitimate option characters. If an option character is seen that is not listed in OPTSTRING, return '?' after printing an error message. If you set 'opterr' to zero, the error message is suppressed but we still return '?'. If a char in OPTSTRING is followed by a colon, that means it wants an arg, so the following text in the same ARGV-element, or the text of the following ARGV-element, is returned in 'optarg'. Two colons mean an option that wants an optional arg; if there is text in the current ARGV-element, it is returned in 'optarg', otherwise 'optarg' is set to zero. If OPTSTRING starts with '-' or '+', it requests different methods of handling the non-option ARGV-elements. See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above. Long-named options begin with '--' instead of '-'. Their names may be abbreviated as long as the abbreviation is unique or is an exact match for some defined option. If they have an argument, it follows the option name in the same ARGV-element, separated from the option name by a '=', or else the in next ARGV-element. When 'getopt' finds a long-named option, it returns 0 if that option's 'flag' field is nonzero, the value of the option's 'val' field if the 'flag' field is zero. The elements of ARGV aren't really const, because we permute them. But we pretend they're const in the prototype to be compatible with other systems. LONGOPTS is a vector of 'struct option' terminated by an element containing a name which is zero. LONGIND returns the index in LONGOPT of the long-named option found. It is only valid when a long-named option has been found by the most recent call. If LONG_ONLY is nonzero, '-' as well as '--' can introduce long-named options. */ int _getopt_internal_r (int argc, char **argv, const char *optstring, const struct option *longopts, int *longind, int long_only, struct _getopt_data *d, int posixly_correct) { int print_errors = d->opterr; if (argc < 1) return -1; d->optarg = NULL; if (d->optind == 0 || !d->__initialized) { if (d->optind == 0) d->optind = 1; /* Don't scan ARGV[0], the program name. */ optstring = _getopt_initialize (argc, argv, optstring, d, posixly_correct); d->__initialized = 1; } else if (optstring[0] == '-' || optstring[0] == '+') optstring++; if (optstring[0] == ':') print_errors = 0; /* Test whether ARGV[optind] points to a non-option argument. Either it does not have option syntax, or there is an environment flag from the shell indicating it is not an option. The later information is only used when the used in the GNU libc. */ #if defined _LIBC && defined USE_NONOPTION_FLAGS # define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0' \ || (d->optind < d->__nonoption_flags_len \ && __getopt_nonoption_flags[d->optind] == '1')) #else # define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0') #endif if (d->__nextchar == NULL || *d->__nextchar == '\0') { /* Advance to the next ARGV-element. */ /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been moved back by the user (who may also have changed the arguments). */ if (d->__last_nonopt > d->optind) d->__last_nonopt = d->optind; if (d->__first_nonopt > d->optind) d->__first_nonopt = d->optind; if (d->__ordering == PERMUTE) { /* If we have just processed some options following some non-options, exchange them so that the options come first. */ if (d->__first_nonopt != d->__last_nonopt && d->__last_nonopt != d->optind) exchange ((char **) argv, d); else if (d->__last_nonopt != d->optind) d->__first_nonopt = d->optind; /* Skip any additional non-options and extend the range of non-options previously skipped. */ while (d->optind < argc && NONOPTION_P) d->optind++; d->__last_nonopt = d->optind; } /* The special ARGV-element '--' means premature end of options. Skip it like a null option, then exchange with previous non-options as if it were an option, then skip everything else like a non-option. */ if (d->optind != argc && !strcmp (argv[d->optind], "--")) { d->optind++; if (d->__first_nonopt != d->__last_nonopt && d->__last_nonopt != d->optind) exchange ((char **) argv, d); else if (d->__first_nonopt == d->__last_nonopt) d->__first_nonopt = d->optind; d->__last_nonopt = argc; d->optind = argc; } /* If we have done all the ARGV-elements, stop the scan and back over any non-options that we skipped and permuted. */ if (d->optind == argc) { /* Set the next-arg-index to point at the non-options that we previously skipped, so the caller will digest them. */ if (d->__first_nonopt != d->__last_nonopt) d->optind = d->__first_nonopt; return -1; } /* If we have come to a non-option and did not permute it, either stop the scan or describe it to the caller and pass it by. */ if (NONOPTION_P) { if (d->__ordering == REQUIRE_ORDER) return -1; d->optarg = argv[d->optind++]; return 1; } /* We have found another option-ARGV-element. Skip the initial punctuation. */ d->__nextchar = (argv[d->optind] + 1 + (longopts != NULL && argv[d->optind][1] == '-')); } /* Decode the current option-ARGV-element. */ /* Check whether the ARGV-element is a long option. If long_only and the ARGV-element has the form "-f", where f is a valid short option, don't consider it an abbreviated form of a long option that starts with f. Otherwise there would be no way to give the -f short option. On the other hand, if there's a long option "fubar" and the ARGV-element is "-fu", do consider that an abbreviation of the long option, just like "--fu", and not "-f" with arg "u". This distinction seems to be the most useful approach. */ if (longopts != NULL && (argv[d->optind][1] == '-' || (long_only && (argv[d->optind][2] || !strchr (optstring, argv[d->optind][1]))))) { char *nameend; unsigned int namelen; const struct option *p; const struct option *pfound = NULL; struct option_list { const struct option *p; struct option_list *next; } *ambig_list = NULL; int exact = 0; int indfound = -1; int option_index; for (nameend = d->__nextchar; *nameend && *nameend != '='; nameend++) /* Do nothing. */ ; namelen = nameend - d->__nextchar; /* Test all long options for either exact match or abbreviated matches. */ for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, d->__nextchar, namelen)) { if (namelen == (unsigned int) strlen (p->name)) { /* Exact match found. */ pfound = p; indfound = option_index; exact = 1; break; } else if (pfound == NULL) { /* First nonexact match found. */ pfound = p; indfound = option_index; } else if (long_only || pfound->has_arg != p->has_arg || pfound->flag != p->flag || pfound->val != p->val) { /* Second or later nonexact match found. */ struct option_list *newp = malloc (sizeof (*newp)); newp->p = p; newp->next = ambig_list; ambig_list = newp; } } if (ambig_list != NULL && !exact) { if (print_errors) { struct option_list first; first.p = pfound; first.next = ambig_list; ambig_list = &first; #if defined _LIBC && defined USE_IN_LIBIO char *buf = NULL; size_t buflen = 0; FILE *fp = open_memstream (&buf, &buflen); if (fp != NULL) { fprintf (fp, _("%s: option '%s' is ambiguous; possibilities:"), argv[0], argv[d->optind]); do { fprintf (fp, " '--%s'", ambig_list->p->name); ambig_list = ambig_list->next; } while (ambig_list != NULL); fputc_unlocked ('\n', fp); if (__builtin_expect (fclose (fp) != EOF, 1)) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } } #else fprintf (stderr, _("%s: option '%s' is ambiguous; possibilities:"), argv[0], argv[d->optind]); do { fprintf (stderr, " '--%s'", ambig_list->p->name); ambig_list = ambig_list->next; } while (ambig_list != NULL); fputc ('\n', stderr); #endif } d->__nextchar += strlen (d->__nextchar); d->optind++; d->optopt = 0; return '?'; } while (ambig_list != NULL) { struct option_list *pn = ambig_list->next; free (ambig_list); ambig_list = pn; } if (pfound != NULL) { option_index = indfound; d->optind++; if (*nameend) { /* Don't test has_arg with >, because some C compilers don't allow it to be used on enums. */ if (pfound->has_arg) d->optarg = nameend + 1; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; int n; #endif if (argv[d->optind - 1][1] == '-') { /* --option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("\ %s: option '--%s' doesn't allow an argument\n"), argv[0], pfound->name); #else fprintf (stderr, _("\ %s: option '--%s' doesn't allow an argument\n"), argv[0], pfound->name); #endif } else { /* +option or -option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("\ %s: option '%c%s' doesn't allow an argument\n"), argv[0], argv[d->optind - 1][0], pfound->name); #else fprintf (stderr, _("\ %s: option '%c%s' doesn't allow an argument\n"), argv[0], argv[d->optind - 1][0], pfound->name); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (n >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #endif } d->__nextchar += strlen (d->__nextchar); d->optopt = pfound->val; return '?'; } } else if (pfound->has_arg == 1) { if (d->optind < argc) d->optarg = argv[d->optind++]; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option '--%s' requires an argument\n"), argv[0], pfound->name) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option '--%s' requires an argument\n"), argv[0], pfound->name); #endif } d->__nextchar += strlen (d->__nextchar); d->optopt = pfound->val; return optstring[0] == ':' ? ':' : '?'; } } d->__nextchar += strlen (d->__nextchar); if (longind != NULL) *longind = option_index; if (pfound->flag) { *(pfound->flag) = pfound->val; return 0; } return pfound->val; } /* Can't find it as a long option. If this is not getopt_long_only, or the option starts with '--' or is not a valid short option, then it's an error. Otherwise interpret it as a short option. */ if (!long_only || argv[d->optind][1] == '-' || strchr (optstring, *d->__nextchar) == NULL) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; int n; #endif if (argv[d->optind][1] == '-') { /* --option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("%s: unrecognized option '--%s'\n"), argv[0], d->__nextchar); #else fprintf (stderr, _("%s: unrecognized option '--%s'\n"), argv[0], d->__nextchar); #endif } else { /* +option or -option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("%s: unrecognized option '%c%s'\n"), argv[0], argv[d->optind][0], d->__nextchar); #else fprintf (stderr, _("%s: unrecognized option '%c%s'\n"), argv[0], argv[d->optind][0], d->__nextchar); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (n >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #endif } d->__nextchar = (char *) ""; d->optind++; d->optopt = 0; return '?'; } } /* Look at and handle the next short option-character. */ { char c = *d->__nextchar++; const char *temp = strchr (optstring, c); /* Increment 'optind' when we start to process its last character. */ if (*d->__nextchar == '\0') ++d->optind; if (temp == NULL || c == ':' || c == ';') { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; int n; #endif #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("%s: invalid option -- '%c'\n"), argv[0], c); #else fprintf (stderr, _("%s: invalid option -- '%c'\n"), argv[0], c); #endif #if defined _LIBC && defined USE_IN_LIBIO if (n >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #endif } d->optopt = c; return '?'; } /* Convenience. Treat POSIX -W foo same as long option --foo */ if (temp[0] == 'W' && temp[1] == ';') { char *nameend; const struct option *p; const struct option *pfound = NULL; int exact = 0; int ambig = 0; int indfound = 0; int option_index; if (longopts == NULL) goto no_longs; /* This is an option that requires an argument. */ if (*d->__nextchar != '\0') { d->optarg = d->__nextchar; /* If we end this ARGV-element by taking the rest as an arg, we must advance to the next element now. */ d->optind++; } else if (d->optind == argc) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("%s: option requires an argument -- '%c'\n"), argv[0], c) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option requires an argument -- '%c'\n"), argv[0], c); #endif } d->optopt = c; if (optstring[0] == ':') c = ':'; else c = '?'; return c; } else /* We already incremented 'd->optind' once; increment it again when taking next ARGV-elt as argument. */ d->optarg = argv[d->optind++]; /* optarg is now the argument, see if it's in the table of longopts. */ for (d->__nextchar = nameend = d->optarg; *nameend && *nameend != '='; nameend++) /* Do nothing. */ ; /* Test all long options for either exact match or abbreviated matches. */ for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar)) { if ((unsigned int) (nameend - d->__nextchar) == strlen (p->name)) { /* Exact match found. */ pfound = p; indfound = option_index; exact = 1; break; } else if (pfound == NULL) { /* First nonexact match found. */ pfound = p; indfound = option_index; } else if (long_only || pfound->has_arg != p->has_arg || pfound->flag != p->flag || pfound->val != p->val) /* Second or later nonexact match found. */ ambig = 1; } if (ambig && !exact) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("%s: option '-W %s' is ambiguous\n"), argv[0], d->optarg) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option '-W %s' is ambiguous\n"), argv[0], d->optarg); #endif } d->__nextchar += strlen (d->__nextchar); d->optind++; return '?'; } if (pfound != NULL) { option_index = indfound; if (*nameend) { /* Don't test has_arg with >, because some C compilers don't allow it to be used on enums. */ if (pfound->has_arg) d->optarg = nameend + 1; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option '-W %s' doesn't allow an argument\n"), argv[0], pfound->name) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("\ %s: option '-W %s' doesn't allow an argument\n"), argv[0], pfound->name); #endif } d->__nextchar += strlen (d->__nextchar); return '?'; } } else if (pfound->has_arg == 1) { if (d->optind < argc) d->optarg = argv[d->optind++]; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option '-W %s' requires an argument\n"), argv[0], pfound->name) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("\ %s: option '-W %s' requires an argument\n"), argv[0], pfound->name); #endif } d->__nextchar += strlen (d->__nextchar); return optstring[0] == ':' ? ':' : '?'; } } else d->optarg = NULL; d->__nextchar += strlen (d->__nextchar); if (longind != NULL) *longind = option_index; if (pfound->flag) { *(pfound->flag) = pfound->val; return 0; } return pfound->val; } no_longs: d->__nextchar = NULL; return 'W'; /* Let the application handle it. */ } if (temp[1] == ':') { if (temp[2] == ':') { /* This is an option that accepts an argument optionally. */ if (*d->__nextchar != '\0') { d->optarg = d->__nextchar; d->optind++; } else d->optarg = NULL; d->__nextchar = NULL; } else { /* This is an option that requires an argument. */ if (*d->__nextchar != '\0') { d->optarg = d->__nextchar; /* If we end this ARGV-element by taking the rest as an arg, we must advance to the next element now. */ d->optind++; } else if (d->optind == argc) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option requires an argument -- '%c'\n"), argv[0], c) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option requires an argument -- '%c'\n"), argv[0], c); #endif } d->optopt = c; if (optstring[0] == ':') c = ':'; else c = '?'; } else /* We already incremented 'optind' once; increment it again when taking next ARGV-elt as argument. */ d->optarg = argv[d->optind++]; d->__nextchar = NULL; } } return c; } } int _getopt_internal (int argc, char **argv, const char *optstring, const struct option *longopts, int *longind, int long_only, int posixly_correct) { int result; getopt_data.optind = optind; getopt_data.opterr = opterr; result = _getopt_internal_r (argc, argv, optstring, longopts, longind, long_only, &getopt_data, posixly_correct); optind = getopt_data.optind; optarg = getopt_data.optarg; optopt = getopt_data.optopt; return result; } /* glibc gets a LSB-compliant getopt. Standalone applications get a POSIX-compliant getopt. */ #if _LIBC enum { POSIXLY_CORRECT = 0 }; #else enum { POSIXLY_CORRECT = 1 }; #endif int getopt (int argc, char *const *argv, const char *optstring) { return _getopt_internal (argc, (char **) argv, optstring, (const struct option *) 0, (int *) 0, 0, POSIXLY_CORRECT); } #ifdef _LIBC int __posix_getopt (int argc, char *const *argv, const char *optstring) { return _getopt_internal (argc, argv, optstring, (const struct option *) 0, (int *) 0, 0, 1); } #endif #ifdef TEST /* Compile with -DTEST to make an executable for use in testing the above definition of 'getopt'. */ int main (int argc, char **argv) { int c; int digit_optind = 0; while (1) { int this_option_optind = optind ? optind : 1; c = getopt (argc, argv, "abc:d:0123456789"); if (c == -1) break; switch (c) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (digit_optind != 0 && digit_optind != this_option_optind) printf ("digits occur in two different argv-elements.\n"); digit_optind = this_option_optind; printf ("option %c\n", c); break; case 'a': printf ("option a\n"); break; case 'b': printf ("option b\n"); break; case 'c': printf ("option c with value '%s'\n", optarg); break; case '?': break; default: printf ("?? getopt returned character code 0%o ??\n", c); } } if (optind < argc) { printf ("non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); } exit (0); } #endif /* TEST */ liblouis-2.5.3/gnulib/getopt.in.h0000664000175000017500000002152012161041522013620 00000000000000/* Declarations for getopt. Copyright (C) 1989-1994, 1996-1999, 2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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, see . */ #ifndef _@GUARD_PREFIX@_GETOPT_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* The include_next requires a split double-inclusion guard. We must also inform the replacement unistd.h to not recursively use ; our definitions will be present soon enough. */ #if @HAVE_GETOPT_H@ # define _GL_SYSTEM_GETOPT # @INCLUDE_NEXT@ @NEXT_GETOPT_H@ # undef _GL_SYSTEM_GETOPT #endif #ifndef _@GUARD_PREFIX@_GETOPT_H #ifndef __need_getopt # define _@GUARD_PREFIX@_GETOPT_H 1 #endif /* Standalone applications should #define __GETOPT_PREFIX to an identifier that prefixes the external functions and variables defined in this header. When this happens, include the headers that might declare getopt so that they will not cause confusion if included after this file (if the system had , we have already included it). Then systematically rename identifiers so that they do not collide with the system functions and variables. Renaming avoids problems with some compilers and linkers. */ #if defined __GETOPT_PREFIX && !defined __need_getopt # if !@HAVE_GETOPT_H@ # include # include # include # endif # undef __need_getopt # undef getopt # undef getopt_long # undef getopt_long_only # undef optarg # undef opterr # undef optind # undef optopt # undef option # define __GETOPT_CONCAT(x, y) x ## y # define __GETOPT_XCONCAT(x, y) __GETOPT_CONCAT (x, y) # define __GETOPT_ID(y) __GETOPT_XCONCAT (__GETOPT_PREFIX, y) # define getopt __GETOPT_ID (getopt) # define getopt_long __GETOPT_ID (getopt_long) # define getopt_long_only __GETOPT_ID (getopt_long_only) # define optarg __GETOPT_ID (optarg) # define opterr __GETOPT_ID (opterr) # define optind __GETOPT_ID (optind) # define optopt __GETOPT_ID (optopt) # define option __GETOPT_ID (option) # define _getopt_internal __GETOPT_ID (getopt_internal) #endif /* Standalone applications get correct prototypes for getopt_long and getopt_long_only; they declare "char **argv". libc uses prototypes with "char *const *argv" that are incorrect because getopt_long and getopt_long_only can permute argv; this is required for backward compatibility (e.g., for LSB 2.0.1). This used to be '#if defined __GETOPT_PREFIX && !defined __need_getopt', but it caused redefinition warnings if both unistd.h and getopt.h were included, since unistd.h includes getopt.h having previously defined __need_getopt. The only place where __getopt_argv_const is used is in definitions of getopt_long and getopt_long_only below, but these are visible only if __need_getopt is not defined, so it is quite safe to rewrite the conditional as follows: */ #if !defined __need_getopt # if defined __GETOPT_PREFIX # define __getopt_argv_const /* empty */ # else # define __getopt_argv_const const # endif #endif /* If __GNU_LIBRARY__ is not already defined, either we are being used standalone, or this is the first header included in the source file. If we are being used with glibc, we need to include , but that does not exist if we are standalone. So: if __GNU_LIBRARY__ is not defined, include , which will pull in for us if it's from glibc. (Why ctype.h? It's guaranteed to exist and it doesn't flood the namespace with stuff the way some other headers do.) */ #if !defined __GNU_LIBRARY__ # include #endif #ifndef __THROW # ifndef __GNUC_PREREQ # define __GNUC_PREREQ(maj, min) (0) # endif # if defined __cplusplus && __GNUC_PREREQ (2,8) # define __THROW throw () # else # define __THROW # endif #endif /* The definition of _GL_ARG_NONNULL is copied here. */ #ifdef __cplusplus extern "C" { #endif /* For communication from 'getopt' to the caller. When 'getopt' finds an option that takes an argument, the argument value is returned here. Also, when 'ordering' is RETURN_IN_ORDER, each non-option ARGV-element is returned here. */ extern char *optarg; /* Index in ARGV of the next element to be scanned. This is used for communication to and from the caller and for communication between successive calls to 'getopt'. On entry to 'getopt', zero means this is the first call; initialize. When 'getopt' returns -1, this is the index of the first of the non-option elements that the caller should itself scan. Otherwise, 'optind' communicates from one call to the next how much of ARGV has been scanned so far. */ extern int optind; /* Callers store zero here to inhibit the error message 'getopt' prints for unrecognized options. */ extern int opterr; /* Set to an option character which was unrecognized. */ extern int optopt; #ifndef __need_getopt /* Describe the long-named options requested by the application. The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector of 'struct option' terminated by an element containing a name which is zero. The field 'has_arg' is: no_argument (or 0) if the option does not take an argument, required_argument (or 1) if the option requires an argument, optional_argument (or 2) if the option takes an optional argument. If the field 'flag' is not NULL, it points to a variable that is set to the value given in the field 'val' when the option is found, but left unchanged if the option is not found. To have a long-named option do something other than set an 'int' to a compiled-in constant, such as set a value from 'optarg', set the option's 'flag' field to zero and its 'val' field to a nonzero value (the equivalent single-letter option character, if there is one). For long options that have a zero 'flag' field, 'getopt' returns the contents of the 'val' field. */ # if !GNULIB_defined_struct_option struct option { const char *name; /* has_arg can't be an enum because some compilers complain about type mismatches in all the code that assumes it is an int. */ int has_arg; int *flag; int val; }; # define GNULIB_defined_struct_option 1 # endif /* Names for the values of the 'has_arg' field of 'struct option'. */ # define no_argument 0 # define required_argument 1 # define optional_argument 2 #endif /* need getopt */ /* Get definitions and prototypes for functions to process the arguments in ARGV (ARGC of them, minus the program name) for options given in OPTS. Return the option character from OPTS just read. Return -1 when there are no more options. For unrecognized options, or options missing arguments, 'optopt' is set to the option letter, and '?' is returned. The OPTS string is a list of characters which are recognized option letters, optionally followed by colons, specifying that that letter takes an argument, to be placed in 'optarg'. If a letter in OPTS is followed by two colons, its argument is optional. This behavior is specific to the GNU 'getopt'. The argument '--' causes premature termination of argument scanning, explicitly telling 'getopt' that there are no more options. If OPTS begins with '-', then non-option arguments are treated as arguments to the option '\1'. This behavior is specific to the GNU 'getopt'. If OPTS begins with '+', or POSIXLY_CORRECT is set in the environment, then do not permute arguments. */ extern int getopt (int ___argc, char *const *___argv, const char *__shortopts) __THROW _GL_ARG_NONNULL ((2, 3)); #ifndef __need_getopt extern int getopt_long (int ___argc, char *__getopt_argv_const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind) __THROW _GL_ARG_NONNULL ((2, 3)); extern int getopt_long_only (int ___argc, char *__getopt_argv_const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind) __THROW _GL_ARG_NONNULL ((2, 3)); #endif #ifdef __cplusplus } #endif /* Make sure we later can get all the definitions and declarations. */ #undef __need_getopt #endif /* _@GUARD_PREFIX@_GETOPT_H */ #endif /* _@GUARD_PREFIX@_GETOPT_H */ liblouis-2.5.3/gnulib/version-etc.c0000664000175000017500000002176512161041521014154 00000000000000/* Print --version and bug-reporting information in a consistent format. Copyright (C) 1999-2013 Free Software Foundation, Inc. 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, see . */ /* Written by Jim Meyering. */ #include /* Specification. */ #include "version-etc.h" #include #include #include #if USE_UNLOCKED_IO # include "unlocked-io.h" #endif #include "gettext.h" #define _(msgid) gettext (msgid) /* If you use AM_INIT_AUTOMAKE's no-define option, PACKAGE is not defined. Use PACKAGE_TARNAME instead. */ #if ! defined PACKAGE && defined PACKAGE_TARNAME # define PACKAGE PACKAGE_TARNAME #endif enum { COPYRIGHT_YEAR = 2013 }; /* The three functions below display the --version information the standard way. If COMMAND_NAME is NULL, the PACKAGE is assumed to be the name of the program. The formats are therefore: PACKAGE VERSION or COMMAND_NAME (PACKAGE) VERSION. The functions differ in the way they are passed author names. */ /* Display the --version information the standard way. Author names are given in the array AUTHORS. N_AUTHORS is the number of elements in the array. */ void version_etc_arn (FILE *stream, const char *command_name, const char *package, const char *version, const char * const * authors, size_t n_authors) { if (command_name) fprintf (stream, "%s (%s) %s\n", command_name, package, version); else fprintf (stream, "%s %s\n", package, version); #ifdef PACKAGE_PACKAGER # ifdef PACKAGE_PACKAGER_VERSION fprintf (stream, _("Packaged by %s (%s)\n"), PACKAGE_PACKAGER, PACKAGE_PACKAGER_VERSION); # else fprintf (stream, _("Packaged by %s\n"), PACKAGE_PACKAGER); # endif #endif /* TRANSLATORS: Translate "(C)" to the copyright symbol (C-in-a-circle), if this symbol is available in the user's locale. Otherwise, do not translate "(C)"; leave it as-is. */ fprintf (stream, version_etc_copyright, _("(C)"), COPYRIGHT_YEAR); fputs (_("\ \n\ License GPLv3+: GNU GPL version 3 or later .\n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ \n\ "), stream); switch (n_authors) { case 0: /* The caller must provide at least one author name. */ abort (); case 1: /* TRANSLATORS: %s denotes an author name. */ fprintf (stream, _("Written by %s.\n"), authors[0]); break; case 2: /* TRANSLATORS: Each %s denotes an author name. */ fprintf (stream, _("Written by %s and %s.\n"), authors[0], authors[1]); break; case 3: /* TRANSLATORS: Each %s denotes an author name. */ fprintf (stream, _("Written by %s, %s, and %s.\n"), authors[0], authors[1], authors[2]); break; case 4: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("Written by %s, %s, %s,\nand %s.\n"), authors[0], authors[1], authors[2], authors[3]); break; case 5: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("Written by %s, %s, %s,\n%s, and %s.\n"), authors[0], authors[1], authors[2], authors[3], authors[4]); break; case 6: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("Written by %s, %s, %s,\n%s, %s, and %s.\n"), authors[0], authors[1], authors[2], authors[3], authors[4], authors[5]); break; case 7: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("Written by %s, %s, %s,\n%s, %s, %s, and %s.\n"), authors[0], authors[1], authors[2], authors[3], authors[4], authors[5], authors[6]); break; case 8: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("\ Written by %s, %s, %s,\n%s, %s, %s, %s,\nand %s.\n"), authors[0], authors[1], authors[2], authors[3], authors[4], authors[5], authors[6], authors[7]); break; case 9: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("\ Written by %s, %s, %s,\n%s, %s, %s, %s,\n%s, and %s.\n"), authors[0], authors[1], authors[2], authors[3], authors[4], authors[5], authors[6], authors[7], authors[8]); break; default: /* 10 or more authors. Use an abbreviation, since the human reader will probably not want to read the entire list anyway. */ /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ fprintf (stream, _("\ Written by %s, %s, %s,\n%s, %s, %s, %s,\n%s, %s, and others.\n"), authors[0], authors[1], authors[2], authors[3], authors[4], authors[5], authors[6], authors[7], authors[8]); break; } } /* Display the --version information the standard way. See the initial comment to this module, for more information. Author names are given in the NULL-terminated array AUTHORS. */ void version_etc_ar (FILE *stream, const char *command_name, const char *package, const char *version, const char * const * authors) { size_t n_authors; for (n_authors = 0; authors[n_authors]; n_authors++) ; version_etc_arn (stream, command_name, package, version, authors, n_authors); } /* Display the --version information the standard way. See the initial comment to this module, for more information. Author names are given in the NULL-terminated va_list AUTHORS. */ void version_etc_va (FILE *stream, const char *command_name, const char *package, const char *version, va_list authors) { size_t n_authors; const char *authtab[10]; for (n_authors = 0; n_authors < 10 && (authtab[n_authors] = va_arg (authors, const char *)) != NULL; n_authors++) ; version_etc_arn (stream, command_name, package, version, authtab, n_authors); } /* Display the --version information the standard way. If COMMAND_NAME is NULL, the PACKAGE is assumed to be the name of the program. The formats are therefore: PACKAGE VERSION or COMMAND_NAME (PACKAGE) VERSION. The authors names are passed as separate arguments, with an additional NULL argument at the end. */ void version_etc (FILE *stream, const char *command_name, const char *package, const char *version, /* const char *author1, ...*/ ...) { va_list authors; va_start (authors, version); version_etc_va (stream, command_name, package, version, authors); va_end (authors); } void emit_bug_reporting_address (void) { /* TRANSLATORS: The placeholder indicates the bug-reporting address for this package. Please add _another line_ saying "Report translation bugs to <...>\n" with the address for translation bugs (typically your translation team's web or email address). */ printf (_("\nReport bugs to: %s\n"), PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf (_("Report %s bugs to: %s\n"), PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf (_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL); #else printf (_("%s home page: \n"), PACKAGE_NAME, PACKAGE); #endif fputs (_("General help using GNU software: \n"), stdout); } liblouis-2.5.3/gnulib/unistd.c0000664000175000017500000000012412161041522013207 00000000000000#include #define _GL_UNISTD_INLINE _GL_EXTERN_INLINE #include "unistd.h" liblouis-2.5.3/gnulib/stdlib.in.h0000664000175000017500000007722312161041522013612 00000000000000/* A GNU-like . Copyright (C) 1995, 2001-2004, 2006-2013 Free Software Foundation, Inc. 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, see . */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ #if defined __need_malloc_and_calloc /* Special invocation convention inside glibc header files. */ #@INCLUDE_NEXT@ @NEXT_STDLIB_H@ #else /* Normal invocation convention. */ #ifndef _@GUARD_PREFIX@_STDLIB_H /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_STDLIB_H@ #ifndef _@GUARD_PREFIX@_STDLIB_H #define _@GUARD_PREFIX@_STDLIB_H /* NetBSD 5.0 mis-defines NULL. */ #include /* MirBSD 10 defines WEXITSTATUS in , not in . */ #if @GNULIB_SYSTEM_POSIX@ && !defined WEXITSTATUS # include #endif /* Solaris declares getloadavg() in . */ #if (@GNULIB_GETLOADAVG@ || defined GNULIB_POSIXCHECK) && @HAVE_SYS_LOADAVG_H@ # include #endif /* Native Windows platforms declare mktemp() in . */ #if 0 && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) # include #endif #if @GNULIB_RANDOM_R@ /* OSF/1 5.1 declares 'struct random_data' in , which is included from if _REENTRANT is defined. Include it whenever we need 'struct random_data'. */ # if @HAVE_RANDOM_H@ # include # endif # if !@HAVE_STRUCT_RANDOM_DATA@ || @REPLACE_RANDOM_R@ || !@HAVE_RANDOM_R@ # include # endif # if !@HAVE_STRUCT_RANDOM_DATA@ /* Define 'struct random_data'. But allow multiple gnulib generated replacements to coexist. */ # if !GNULIB_defined_struct_random_data struct random_data { int32_t *fptr; /* Front pointer. */ int32_t *rptr; /* Rear pointer. */ int32_t *state; /* Array of state values. */ int rand_type; /* Type of random number generator. */ int rand_deg; /* Degree of random number generator. */ int rand_sep; /* Distance between front and rear. */ int32_t *end_ptr; /* Pointer behind state table. */ }; # define GNULIB_defined_struct_random_data 1 # endif # endif #endif #if (@GNULIB_MKSTEMP@ || @GNULIB_MKSTEMPS@ || @GNULIB_GETSUBOPT@ || defined GNULIB_POSIXCHECK) && ! defined __GLIBC__ && !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) /* On Mac OS X 10.3, only declares mkstemp. */ /* On Mac OS X 10.5, only declares mkstemps. */ /* On Cygwin 1.7.1, only declares getsubopt. */ /* But avoid namespace pollution on glibc systems and native Windows. */ # include #endif /* The __attribute__ feature is available in gcc versions 2.5 and later. The attribute __pure__ was added in gcc 2.96. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__)) #else # define _GL_ATTRIBUTE_PURE /* empty */ #endif /* The definition of _Noreturn is copied here. */ /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ /* The definition of _GL_ARG_NONNULL is copied here. */ /* The definition of _GL_WARN_ON_USE is copied here. */ /* Some systems do not define EXIT_*, despite otherwise supporting C89. */ #ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 #endif /* Tandem/NSK and other platforms that define EXIT_FAILURE as -1 interfere with proper operation of xargs. */ #ifndef EXIT_FAILURE # define EXIT_FAILURE 1 #elif EXIT_FAILURE != 1 # undef EXIT_FAILURE # define EXIT_FAILURE 1 #endif #if @GNULIB__EXIT@ /* Terminate the current process with the given return code, without running the 'atexit' handlers. */ # if !@HAVE__EXIT@ _GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status)); # endif _GL_CXXALIAS_SYS (_Exit, void, (int status)); _GL_CXXALIASWARN (_Exit); #elif defined GNULIB_POSIXCHECK # undef _Exit # if HAVE_RAW_DECL__EXIT _GL_WARN_ON_USE (_Exit, "_Exit is unportable - " "use gnulib module _Exit for portability"); # endif #endif #if @GNULIB_ATOLL@ /* Parse a signed decimal integer. Returns the value of the integer. Errors are not detected. */ # if !@HAVE_ATOLL@ _GL_FUNCDECL_SYS (atoll, long long, (const char *string) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (atoll, long long, (const char *string)); _GL_CXXALIASWARN (atoll); #elif defined GNULIB_POSIXCHECK # undef atoll # if HAVE_RAW_DECL_ATOLL _GL_WARN_ON_USE (atoll, "atoll is unportable - " "use gnulib module atoll for portability"); # endif #endif #if @GNULIB_CALLOC_POSIX@ # if @REPLACE_CALLOC@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef calloc # define calloc rpl_calloc # endif _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size)); _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size)); # else _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size)); # endif _GL_CXXALIASWARN (calloc); #elif defined GNULIB_POSIXCHECK # undef calloc /* Assume calloc is always declared. */ _GL_WARN_ON_USE (calloc, "calloc is not POSIX compliant everywhere - " "use gnulib module calloc-posix for portability"); #endif #if @GNULIB_CANONICALIZE_FILE_NAME@ # if @REPLACE_CANONICALIZE_FILE_NAME@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define canonicalize_file_name rpl_canonicalize_file_name # endif _GL_FUNCDECL_RPL (canonicalize_file_name, char *, (const char *name) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (canonicalize_file_name, char *, (const char *name)); # else # if !@HAVE_CANONICALIZE_FILE_NAME@ _GL_FUNCDECL_SYS (canonicalize_file_name, char *, (const char *name) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (canonicalize_file_name, char *, (const char *name)); # endif _GL_CXXALIASWARN (canonicalize_file_name); #elif defined GNULIB_POSIXCHECK # undef canonicalize_file_name # if HAVE_RAW_DECL_CANONICALIZE_FILE_NAME _GL_WARN_ON_USE (canonicalize_file_name, "canonicalize_file_name is unportable - " "use gnulib module canonicalize-lgpl for portability"); # endif #endif #if @GNULIB_GETLOADAVG@ /* Store max(NELEM,3) load average numbers in LOADAVG[]. The three numbers are the load average of the last 1 minute, the last 5 minutes, and the last 15 minutes, respectively. LOADAVG is an array of NELEM numbers. */ # if !@HAVE_DECL_GETLOADAVG@ _GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem)); _GL_CXXALIASWARN (getloadavg); #elif defined GNULIB_POSIXCHECK # undef getloadavg # if HAVE_RAW_DECL_GETLOADAVG _GL_WARN_ON_USE (getloadavg, "getloadavg is not portable - " "use gnulib module getloadavg for portability"); # endif #endif #if @GNULIB_GETSUBOPT@ /* Assuming *OPTIONP is a comma separated list of elements of the form "token" or "token=value", getsubopt parses the first of these elements. If the first element refers to a "token" that is member of the given NULL-terminated array of tokens: - It replaces the comma with a NUL byte, updates *OPTIONP to point past the first option and the comma, sets *VALUEP to the value of the element (or NULL if it doesn't contain an "=" sign), - It returns the index of the "token" in the given array of tokens. Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined. For more details see the POSIX:2001 specification. http://www.opengroup.org/susv3xsh/getsubopt.html */ # if !@HAVE_GETSUBOPT@ _GL_FUNCDECL_SYS (getsubopt, int, (char **optionp, char *const *tokens, char **valuep) _GL_ARG_NONNULL ((1, 2, 3))); # endif _GL_CXXALIAS_SYS (getsubopt, int, (char **optionp, char *const *tokens, char **valuep)); _GL_CXXALIASWARN (getsubopt); #elif defined GNULIB_POSIXCHECK # undef getsubopt # if HAVE_RAW_DECL_GETSUBOPT _GL_WARN_ON_USE (getsubopt, "getsubopt is unportable - " "use gnulib module getsubopt for portability"); # endif #endif #if @GNULIB_GRANTPT@ /* Change the ownership and access permission of the slave side of the pseudo-terminal whose master side is specified by FD. */ # if !@HAVE_GRANTPT@ _GL_FUNCDECL_SYS (grantpt, int, (int fd)); # endif _GL_CXXALIAS_SYS (grantpt, int, (int fd)); _GL_CXXALIASWARN (grantpt); #elif defined GNULIB_POSIXCHECK # undef grantpt # if HAVE_RAW_DECL_GRANTPT _GL_WARN_ON_USE (grantpt, "grantpt is not portable - " "use gnulib module grantpt for portability"); # endif #endif /* If _GL_USE_STDLIB_ALLOC is nonzero, the including module does not rely on GNU or POSIX semantics for malloc and realloc (for example, by never specifying a zero size), so it does not need malloc or realloc to be redefined. */ #if @GNULIB_MALLOC_POSIX@ # if @REPLACE_MALLOC@ # if !((defined __cplusplus && defined GNULIB_NAMESPACE) \ || _GL_USE_STDLIB_ALLOC) # undef malloc # define malloc rpl_malloc # endif _GL_FUNCDECL_RPL (malloc, void *, (size_t size)); _GL_CXXALIAS_RPL (malloc, void *, (size_t size)); # else _GL_CXXALIAS_SYS (malloc, void *, (size_t size)); # endif _GL_CXXALIASWARN (malloc); #elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC # undef malloc /* Assume malloc is always declared. */ _GL_WARN_ON_USE (malloc, "malloc is not POSIX compliant everywhere - " "use gnulib module malloc-posix for portability"); #endif /* Convert a multibyte character to a wide character. */ #if @GNULIB_MBTOWC@ # if @REPLACE_MBTOWC@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef mbtowc # define mbtowc rpl_mbtowc # endif _GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n)); _GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n)); # else _GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n)); # endif _GL_CXXALIASWARN (mbtowc); #endif #if @GNULIB_MKDTEMP@ /* Create a unique temporary directory from TEMPLATE. The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the directory name unique. Returns TEMPLATE, or a null pointer if it cannot get a unique name. The directory is created mode 700. */ # if !@HAVE_MKDTEMP@ _GL_FUNCDECL_SYS (mkdtemp, char *, (char * /*template*/) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (mkdtemp, char *, (char * /*template*/)); _GL_CXXALIASWARN (mkdtemp); #elif defined GNULIB_POSIXCHECK # undef mkdtemp # if HAVE_RAW_DECL_MKDTEMP _GL_WARN_ON_USE (mkdtemp, "mkdtemp is unportable - " "use gnulib module mkdtemp for portability"); # endif #endif #if @GNULIB_MKOSTEMP@ /* Create a unique temporary file from TEMPLATE. The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the file name unique. The flags are a bitmask, possibly including O_CLOEXEC (defined in ) and O_TEXT, O_BINARY (defined in "binary-io.h"). The file is then created, with the specified flags, ensuring it didn't exist before. The file is created read-write (mask at least 0600 & ~umask), but it may be world-readable and world-writable (mask 0666 & ~umask), depending on the implementation. Returns the open file descriptor if successful, otherwise -1 and errno set. */ # if !@HAVE_MKOSTEMP@ _GL_FUNCDECL_SYS (mkostemp, int, (char * /*template*/, int /*flags*/) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (mkostemp, int, (char * /*template*/, int /*flags*/)); _GL_CXXALIASWARN (mkostemp); #elif defined GNULIB_POSIXCHECK # undef mkostemp # if HAVE_RAW_DECL_MKOSTEMP _GL_WARN_ON_USE (mkostemp, "mkostemp is unportable - " "use gnulib module mkostemp for portability"); # endif #endif #if @GNULIB_MKOSTEMPS@ /* Create a unique temporary file from TEMPLATE. The last six characters of TEMPLATE before a suffix of length SUFFIXLEN must be "XXXXXX"; they are replaced with a string that makes the file name unique. The flags are a bitmask, possibly including O_CLOEXEC (defined in ) and O_TEXT, O_BINARY (defined in "binary-io.h"). The file is then created, with the specified flags, ensuring it didn't exist before. The file is created read-write (mask at least 0600 & ~umask), but it may be world-readable and world-writable (mask 0666 & ~umask), depending on the implementation. Returns the open file descriptor if successful, otherwise -1 and errno set. */ # if !@HAVE_MKOSTEMPS@ _GL_FUNCDECL_SYS (mkostemps, int, (char * /*template*/, int /*suffixlen*/, int /*flags*/) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (mkostemps, int, (char * /*template*/, int /*suffixlen*/, int /*flags*/)); _GL_CXXALIASWARN (mkostemps); #elif defined GNULIB_POSIXCHECK # undef mkostemps # if HAVE_RAW_DECL_MKOSTEMPS _GL_WARN_ON_USE (mkostemps, "mkostemps is unportable - " "use gnulib module mkostemps for portability"); # endif #endif #if @GNULIB_MKSTEMP@ /* Create a unique temporary file from TEMPLATE. The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the file name unique. The file is then created, ensuring it didn't exist before. The file is created read-write (mask at least 0600 & ~umask), but it may be world-readable and world-writable (mask 0666 & ~umask), depending on the implementation. Returns the open file descriptor if successful, otherwise -1 and errno set. */ # if @REPLACE_MKSTEMP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define mkstemp rpl_mkstemp # endif _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/)); # else # if ! @HAVE_MKSTEMP@ _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/)); # endif _GL_CXXALIASWARN (mkstemp); #elif defined GNULIB_POSIXCHECK # undef mkstemp # if HAVE_RAW_DECL_MKSTEMP _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - " "use gnulib module mkstemp for portability"); # endif #endif #if @GNULIB_MKSTEMPS@ /* Create a unique temporary file from TEMPLATE. The last six characters of TEMPLATE prior to a suffix of length SUFFIXLEN must be "XXXXXX"; they are replaced with a string that makes the file name unique. The file is then created, ensuring it didn't exist before. The file is created read-write (mask at least 0600 & ~umask), but it may be world-readable and world-writable (mask 0666 & ~umask), depending on the implementation. Returns the open file descriptor if successful, otherwise -1 and errno set. */ # if !@HAVE_MKSTEMPS@ _GL_FUNCDECL_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/)); _GL_CXXALIASWARN (mkstemps); #elif defined GNULIB_POSIXCHECK # undef mkstemps # if HAVE_RAW_DECL_MKSTEMPS _GL_WARN_ON_USE (mkstemps, "mkstemps is unportable - " "use gnulib module mkstemps for portability"); # endif #endif #if @GNULIB_POSIX_OPENPT@ /* Return an FD open to the master side of a pseudo-terminal. Flags should include O_RDWR, and may also include O_NOCTTY. */ # if !@HAVE_POSIX_OPENPT@ _GL_FUNCDECL_SYS (posix_openpt, int, (int flags)); # endif _GL_CXXALIAS_SYS (posix_openpt, int, (int flags)); _GL_CXXALIASWARN (posix_openpt); #elif defined GNULIB_POSIXCHECK # undef posix_openpt # if HAVE_RAW_DECL_POSIX_OPENPT _GL_WARN_ON_USE (posix_openpt, "posix_openpt is not portable - " "use gnulib module posix_openpt for portability"); # endif #endif #if @GNULIB_PTSNAME@ /* Return the pathname of the pseudo-terminal slave associated with the master FD is open on, or NULL on errors. */ # if @REPLACE_PTSNAME@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef ptsname # define ptsname rpl_ptsname # endif _GL_FUNCDECL_RPL (ptsname, char *, (int fd)); _GL_CXXALIAS_RPL (ptsname, char *, (int fd)); # else # if !@HAVE_PTSNAME@ _GL_FUNCDECL_SYS (ptsname, char *, (int fd)); # endif _GL_CXXALIAS_SYS (ptsname, char *, (int fd)); # endif _GL_CXXALIASWARN (ptsname); #elif defined GNULIB_POSIXCHECK # undef ptsname # if HAVE_RAW_DECL_PTSNAME _GL_WARN_ON_USE (ptsname, "ptsname is not portable - " "use gnulib module ptsname for portability"); # endif #endif #if @GNULIB_PTSNAME_R@ /* Set the pathname of the pseudo-terminal slave associated with the master FD is open on and return 0, or set errno and return non-zero on errors. */ # if @REPLACE_PTSNAME_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef ptsname_r # define ptsname_r rpl_ptsname_r # endif _GL_FUNCDECL_RPL (ptsname_r, int, (int fd, char *buf, size_t len)); _GL_CXXALIAS_RPL (ptsname_r, int, (int fd, char *buf, size_t len)); # else # if !@HAVE_PTSNAME_R@ _GL_FUNCDECL_SYS (ptsname_r, int, (int fd, char *buf, size_t len)); # endif _GL_CXXALIAS_SYS (ptsname_r, int, (int fd, char *buf, size_t len)); # endif _GL_CXXALIASWARN (ptsname_r); #elif defined GNULIB_POSIXCHECK # undef ptsname_r # if HAVE_RAW_DECL_PTSNAME_R _GL_WARN_ON_USE (ptsname_r, "ptsname_r is not portable - " "use gnulib module ptsname_r for portability"); # endif #endif #if @GNULIB_PUTENV@ # if @REPLACE_PUTENV@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef putenv # define putenv rpl_putenv # endif _GL_FUNCDECL_RPL (putenv, int, (char *string) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (putenv, int, (char *string)); # else _GL_CXXALIAS_SYS (putenv, int, (char *string)); # endif _GL_CXXALIASWARN (putenv); #endif #if @GNULIB_RANDOM_R@ # if !@HAVE_RANDOM_R@ # ifndef RAND_MAX # define RAND_MAX 2147483647 # endif # endif #endif #if @GNULIB_RANDOM@ # if !@HAVE_RANDOM@ _GL_FUNCDECL_SYS (random, long, (void)); # endif _GL_CXXALIAS_SYS (random, long, (void)); _GL_CXXALIASWARN (random); #elif defined GNULIB_POSIXCHECK # undef random # if HAVE_RAW_DECL_RANDOM _GL_WARN_ON_USE (random, "random is unportable - " "use gnulib module random for portability"); # endif #endif #if @GNULIB_RANDOM@ # if !@HAVE_RANDOM@ _GL_FUNCDECL_SYS (srandom, void, (unsigned int seed)); # endif _GL_CXXALIAS_SYS (srandom, void, (unsigned int seed)); _GL_CXXALIASWARN (srandom); #elif defined GNULIB_POSIXCHECK # undef srandom # if HAVE_RAW_DECL_SRANDOM _GL_WARN_ON_USE (srandom, "srandom is unportable - " "use gnulib module random for portability"); # endif #endif #if @GNULIB_RANDOM@ # if !@HAVE_RANDOM@ _GL_FUNCDECL_SYS (initstate, char *, (unsigned int seed, char *buf, size_t buf_size) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (initstate, char *, (unsigned int seed, char *buf, size_t buf_size)); _GL_CXXALIASWARN (initstate); #elif defined GNULIB_POSIXCHECK # undef initstate # if HAVE_RAW_DECL_INITSTATE_R _GL_WARN_ON_USE (initstate, "initstate is unportable - " "use gnulib module random for portability"); # endif #endif #if @GNULIB_RANDOM@ # if !@HAVE_RANDOM@ _GL_FUNCDECL_SYS (setstate, char *, (char *arg_state) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (setstate, char *, (char *arg_state)); _GL_CXXALIASWARN (setstate); #elif defined GNULIB_POSIXCHECK # undef setstate # if HAVE_RAW_DECL_SETSTATE_R _GL_WARN_ON_USE (setstate, "setstate is unportable - " "use gnulib module random for portability"); # endif #endif #if @GNULIB_RANDOM_R@ # if @REPLACE_RANDOM_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef random_r # define random_r rpl_random_r # endif _GL_FUNCDECL_RPL (random_r, int, (struct random_data *buf, int32_t *result) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (random_r, int, (struct random_data *buf, int32_t *result)); # else # if !@HAVE_RANDOM_R@ _GL_FUNCDECL_SYS (random_r, int, (struct random_data *buf, int32_t *result) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (random_r, int, (struct random_data *buf, int32_t *result)); # endif _GL_CXXALIASWARN (random_r); #elif defined GNULIB_POSIXCHECK # undef random_r # if HAVE_RAW_DECL_RANDOM_R _GL_WARN_ON_USE (random_r, "random_r is unportable - " "use gnulib module random_r for portability"); # endif #endif #if @GNULIB_RANDOM_R@ # if @REPLACE_RANDOM_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef srandom_r # define srandom_r rpl_srandom_r # endif _GL_FUNCDECL_RPL (srandom_r, int, (unsigned int seed, struct random_data *rand_state) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (srandom_r, int, (unsigned int seed, struct random_data *rand_state)); # else # if !@HAVE_RANDOM_R@ _GL_FUNCDECL_SYS (srandom_r, int, (unsigned int seed, struct random_data *rand_state) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (srandom_r, int, (unsigned int seed, struct random_data *rand_state)); # endif _GL_CXXALIASWARN (srandom_r); #elif defined GNULIB_POSIXCHECK # undef srandom_r # if HAVE_RAW_DECL_SRANDOM_R _GL_WARN_ON_USE (srandom_r, "srandom_r is unportable - " "use gnulib module random_r for portability"); # endif #endif #if @GNULIB_RANDOM_R@ # if @REPLACE_RANDOM_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef initstate_r # define initstate_r rpl_initstate_r # endif _GL_FUNCDECL_RPL (initstate_r, int, (unsigned int seed, char *buf, size_t buf_size, struct random_data *rand_state) _GL_ARG_NONNULL ((2, 4))); _GL_CXXALIAS_RPL (initstate_r, int, (unsigned int seed, char *buf, size_t buf_size, struct random_data *rand_state)); # else # if !@HAVE_RANDOM_R@ _GL_FUNCDECL_SYS (initstate_r, int, (unsigned int seed, char *buf, size_t buf_size, struct random_data *rand_state) _GL_ARG_NONNULL ((2, 4))); # endif _GL_CXXALIAS_SYS (initstate_r, int, (unsigned int seed, char *buf, size_t buf_size, struct random_data *rand_state)); # endif _GL_CXXALIASWARN (initstate_r); #elif defined GNULIB_POSIXCHECK # undef initstate_r # if HAVE_RAW_DECL_INITSTATE_R _GL_WARN_ON_USE (initstate_r, "initstate_r is unportable - " "use gnulib module random_r for portability"); # endif #endif #if @GNULIB_RANDOM_R@ # if @REPLACE_RANDOM_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef setstate_r # define setstate_r rpl_setstate_r # endif _GL_FUNCDECL_RPL (setstate_r, int, (char *arg_state, struct random_data *rand_state) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (setstate_r, int, (char *arg_state, struct random_data *rand_state)); # else # if !@HAVE_RANDOM_R@ _GL_FUNCDECL_SYS (setstate_r, int, (char *arg_state, struct random_data *rand_state) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (setstate_r, int, (char *arg_state, struct random_data *rand_state)); # endif _GL_CXXALIASWARN (setstate_r); #elif defined GNULIB_POSIXCHECK # undef setstate_r # if HAVE_RAW_DECL_SETSTATE_R _GL_WARN_ON_USE (setstate_r, "setstate_r is unportable - " "use gnulib module random_r for portability"); # endif #endif #if @GNULIB_REALLOC_POSIX@ # if @REPLACE_REALLOC@ # if !((defined __cplusplus && defined GNULIB_NAMESPACE) \ || _GL_USE_STDLIB_ALLOC) # undef realloc # define realloc rpl_realloc # endif _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size)); _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size)); # else _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size)); # endif _GL_CXXALIASWARN (realloc); #elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC # undef realloc /* Assume realloc is always declared. */ _GL_WARN_ON_USE (realloc, "realloc is not POSIX compliant everywhere - " "use gnulib module realloc-posix for portability"); #endif #if @GNULIB_REALPATH@ # if @REPLACE_REALPATH@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define realpath rpl_realpath # endif _GL_FUNCDECL_RPL (realpath, char *, (const char *name, char *resolved) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (realpath, char *, (const char *name, char *resolved)); # else # if !@HAVE_REALPATH@ _GL_FUNCDECL_SYS (realpath, char *, (const char *name, char *resolved) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (realpath, char *, (const char *name, char *resolved)); # endif _GL_CXXALIASWARN (realpath); #elif defined GNULIB_POSIXCHECK # undef realpath # if HAVE_RAW_DECL_REALPATH _GL_WARN_ON_USE (realpath, "realpath is unportable - use gnulib module " "canonicalize or canonicalize-lgpl for portability"); # endif #endif #if @GNULIB_RPMATCH@ /* Test a user response to a question. Return 1 if it is affirmative, 0 if it is negative, or -1 if not clear. */ # if !@HAVE_RPMATCH@ _GL_FUNCDECL_SYS (rpmatch, int, (const char *response) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (rpmatch, int, (const char *response)); _GL_CXXALIASWARN (rpmatch); #elif defined GNULIB_POSIXCHECK # undef rpmatch # if HAVE_RAW_DECL_RPMATCH _GL_WARN_ON_USE (rpmatch, "rpmatch is unportable - " "use gnulib module rpmatch for portability"); # endif #endif #if @GNULIB_SETENV@ /* Set NAME to VALUE in the environment. If REPLACE is nonzero, overwrite an existing value. */ # if @REPLACE_SETENV@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef setenv # define setenv rpl_setenv # endif _GL_FUNCDECL_RPL (setenv, int, (const char *name, const char *value, int replace) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (setenv, int, (const char *name, const char *value, int replace)); # else # if !@HAVE_DECL_SETENV@ _GL_FUNCDECL_SYS (setenv, int, (const char *name, const char *value, int replace) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (setenv, int, (const char *name, const char *value, int replace)); # endif # if !(@REPLACE_SETENV@ && !@HAVE_DECL_SETENV@) _GL_CXXALIASWARN (setenv); # endif #elif defined GNULIB_POSIXCHECK # undef setenv # if HAVE_RAW_DECL_SETENV _GL_WARN_ON_USE (setenv, "setenv is unportable - " "use gnulib module setenv for portability"); # endif #endif #if @GNULIB_STRTOD@ /* Parse a double from STRING, updating ENDP if appropriate. */ # if @REPLACE_STRTOD@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define strtod rpl_strtod # endif _GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp)); # else # if !@HAVE_STRTOD@ _GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp)); # endif _GL_CXXALIASWARN (strtod); #elif defined GNULIB_POSIXCHECK # undef strtod # if HAVE_RAW_DECL_STRTOD _GL_WARN_ON_USE (strtod, "strtod is unportable - " "use gnulib module strtod for portability"); # endif #endif #if @GNULIB_STRTOLL@ /* Parse a signed integer whose textual representation starts at STRING. The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0, it may be decimal or octal (with prefix "0") or hexadecimal (with prefix "0x"). If ENDPTR is not NULL, the address of the first byte after the integer is stored in *ENDPTR. Upon overflow, the return value is LLONG_MAX or LLONG_MIN, and errno is set to ERANGE. */ # if !@HAVE_STRTOLL@ _GL_FUNCDECL_SYS (strtoll, long long, (const char *string, char **endptr, int base) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (strtoll, long long, (const char *string, char **endptr, int base)); _GL_CXXALIASWARN (strtoll); #elif defined GNULIB_POSIXCHECK # undef strtoll # if HAVE_RAW_DECL_STRTOLL _GL_WARN_ON_USE (strtoll, "strtoll is unportable - " "use gnulib module strtoll for portability"); # endif #endif #if @GNULIB_STRTOULL@ /* Parse an unsigned integer whose textual representation starts at STRING. The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0, it may be decimal or octal (with prefix "0") or hexadecimal (with prefix "0x"). If ENDPTR is not NULL, the address of the first byte after the integer is stored in *ENDPTR. Upon overflow, the return value is ULLONG_MAX, and errno is set to ERANGE. */ # if !@HAVE_STRTOULL@ _GL_FUNCDECL_SYS (strtoull, unsigned long long, (const char *string, char **endptr, int base) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (strtoull, unsigned long long, (const char *string, char **endptr, int base)); _GL_CXXALIASWARN (strtoull); #elif defined GNULIB_POSIXCHECK # undef strtoull # if HAVE_RAW_DECL_STRTOULL _GL_WARN_ON_USE (strtoull, "strtoull is unportable - " "use gnulib module strtoull for portability"); # endif #endif #if @GNULIB_UNLOCKPT@ /* Unlock the slave side of the pseudo-terminal whose master side is specified by FD, so that it can be opened. */ # if !@HAVE_UNLOCKPT@ _GL_FUNCDECL_SYS (unlockpt, int, (int fd)); # endif _GL_CXXALIAS_SYS (unlockpt, int, (int fd)); _GL_CXXALIASWARN (unlockpt); #elif defined GNULIB_POSIXCHECK # undef unlockpt # if HAVE_RAW_DECL_UNLOCKPT _GL_WARN_ON_USE (unlockpt, "unlockpt is not portable - " "use gnulib module unlockpt for portability"); # endif #endif #if @GNULIB_UNSETENV@ /* Remove the variable NAME from the environment. */ # if @REPLACE_UNSETENV@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef unsetenv # define unsetenv rpl_unsetenv # endif _GL_FUNCDECL_RPL (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (unsetenv, int, (const char *name)); # else # if !@HAVE_DECL_UNSETENV@ _GL_FUNCDECL_SYS (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (unsetenv, int, (const char *name)); # endif # if !(@REPLACE_UNSETENV@ && !@HAVE_DECL_UNSETENV@) _GL_CXXALIASWARN (unsetenv); # endif #elif defined GNULIB_POSIXCHECK # undef unsetenv # if HAVE_RAW_DECL_UNSETENV _GL_WARN_ON_USE (unsetenv, "unsetenv is unportable - " "use gnulib module unsetenv for portability"); # endif #endif /* Convert a wide character to a multibyte character. */ #if @GNULIB_WCTOMB@ # if @REPLACE_WCTOMB@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef wctomb # define wctomb rpl_wctomb # endif _GL_FUNCDECL_RPL (wctomb, int, (char *s, wchar_t wc)); _GL_CXXALIAS_RPL (wctomb, int, (char *s, wchar_t wc)); # else _GL_CXXALIAS_SYS (wctomb, int, (char *s, wchar_t wc)); # endif _GL_CXXALIASWARN (wctomb); #endif #endif /* _@GUARD_PREFIX@_STDLIB_H */ #endif /* _@GUARD_PREFIX@_STDLIB_H */ #endif liblouis-2.5.3/gnulib/getopt1.c0000664000175000017500000001055212161041522013272 00000000000000/* getopt_long and getopt_long_only entry points for GNU getopt. Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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, see . */ #ifdef _LIBC # include #else # include # include "getopt.h" #endif #include "getopt_int.h" #include /* This needs to come after some library #include to get __GNU_LIBRARY__ defined. */ #ifdef __GNU_LIBRARY__ #include #endif #ifndef NULL #define NULL 0 #endif int getopt_long (int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) { return _getopt_internal (argc, (char **) argv, options, long_options, opt_index, 0, 0); } int _getopt_long_r (int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) { return _getopt_internal_r (argc, argv, options, long_options, opt_index, 0, d, 0); } /* Like getopt_long, but '-' as well as '--' can indicate a long option. If an option that starts with '-' (not '--') doesn't match a long option, but does match a short option, it is parsed as a short option instead. */ int getopt_long_only (int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) { return _getopt_internal (argc, (char **) argv, options, long_options, opt_index, 1, 0); } int _getopt_long_only_r (int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) { return _getopt_internal_r (argc, argv, options, long_options, opt_index, 1, d, 0); } #ifdef TEST #include int main (int argc, char **argv) { int c; int digit_optind = 0; while (1) { int this_option_optind = optind ? optind : 1; int option_index = 0; static const struct option long_options[] = { {"add", 1, 0, 0}, {"append", 0, 0, 0}, {"delete", 1, 0, 0}, {"verbose", 0, 0, 0}, {"create", 0, 0, 0}, {"file", 1, 0, 0}, {0, 0, 0, 0} }; c = getopt_long (argc, argv, "abc:d:0123456789", long_options, &option_index); if (c == -1) break; switch (c) { case 0: printf ("option %s", long_options[option_index].name); if (optarg) printf (" with arg %s", optarg); printf ("\n"); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (digit_optind != 0 && digit_optind != this_option_optind) printf ("digits occur in two different argv-elements.\n"); digit_optind = this_option_optind; printf ("option %c\n", c); break; case 'a': printf ("option a\n"); break; case 'b': printf ("option b\n"); break; case 'c': printf ("option c with value '%s'\n", optarg); break; case 'd': printf ("option d with value '%s'\n", optarg); break; case '?': break; default: printf ("?? getopt returned character code 0%o ??\n", c); } } if (optind < argc) { printf ("non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); } exit (0); } #endif /* TEST */ liblouis-2.5.3/gnulib/realloc.c0000664000175000017500000000407012161041522013326 00000000000000/* realloc() function that is glibc compatible. Copyright (C) 1997, 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. 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, see . */ /* written by Jim Meyering and Bruno Haible */ #define _GL_USE_STDLIB_ALLOC 1 #include /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h. */ #ifdef realloc # define NEED_REALLOC_GNU 1 /* Whereas the gnulib module 'realloc-gnu' defines HAVE_REALLOC_GNU. */ #elif GNULIB_REALLOC_GNU && !HAVE_REALLOC_GNU # define NEED_REALLOC_GNU 1 #endif /* Infer the properties of the system's malloc function. The gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU. */ #if GNULIB_MALLOC_GNU && HAVE_MALLOC_GNU # define SYSTEM_MALLOC_GLIBC_COMPATIBLE 1 #endif #include #include /* Change the size of an allocated block of memory P to N bytes, with error checking. If N is zero, change it to 1. If P is NULL, use malloc. */ void * rpl_realloc (void *p, size_t n) { void *result; #if NEED_REALLOC_GNU if (n == 0) { n = 1; /* In theory realloc might fail, so don't rely on it to free. */ free (p); p = NULL; } #endif if (p == NULL) { #if GNULIB_REALLOC_GNU && !NEED_REALLOC_GNU && !SYSTEM_MALLOC_GLIBC_COMPATIBLE if (n == 0) n = 1; #endif result = malloc (n); } else result = realloc (p, n); #if !HAVE_REALLOC_POSIX if (result == NULL) errno = ENOMEM; #endif return result; } liblouis-2.5.3/gnulib/unistd.in.h0000664000175000017500000014627712161041522013645 00000000000000/* Substitute for and wrapper around . Copyright (C) 2003-2013 Free Software Foundation, Inc. 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, 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, see . */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* Special invocation convention: - On mingw, several headers, including , include , but we need to ensure that both the system and are completely included before we replace gethostname. */ #if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ \ && !defined _GL_WINSOCK2_H_WITNESS && defined _WINSOCK2_H /* is being indirectly included for the first time from ; avoid declaring any overrides. */ # if @HAVE_UNISTD_H@ # @INCLUDE_NEXT@ @NEXT_UNISTD_H@ # else # error unexpected; report this to bug-gnulib@gnu.org # endif # define _GL_WINSOCK2_H_WITNESS /* Normal invocation. */ #elif !defined _@GUARD_PREFIX@_UNISTD_H /* The include_next requires a split double-inclusion guard. */ #if @HAVE_UNISTD_H@ # @INCLUDE_NEXT@ @NEXT_UNISTD_H@ #endif /* Get all possible declarations of gethostname(). */ #if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ \ && !defined _GL_INCLUDING_WINSOCK2_H # define _GL_INCLUDING_WINSOCK2_H # include # undef _GL_INCLUDING_WINSOCK2_H #endif #if !defined _@GUARD_PREFIX@_UNISTD_H && !defined _GL_INCLUDING_WINSOCK2_H #define _@GUARD_PREFIX@_UNISTD_H /* NetBSD 5.0 mis-defines NULL. Also get size_t. */ #include /* mingw doesn't define the SEEK_* or *_FILENO macros in . */ /* Cygwin 1.7.1 declares symlinkat in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if (!(defined SEEK_CUR && defined SEEK_END && defined SEEK_SET) \ || ((@GNULIB_SYMLINKAT@ || defined GNULIB_POSIXCHECK) \ && defined __CYGWIN__)) \ && ! defined __GLIBC__ # include #endif /* Cygwin 1.7.1 declares unlinkat in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if (@GNULIB_UNLINKAT@ || defined GNULIB_POSIXCHECK) && defined __CYGWIN__ \ && ! defined __GLIBC__ # include #endif /* mingw fails to declare _exit in . */ /* mingw, MSVC, BeOS, Haiku declare environ in , not in . */ /* Solaris declares getcwd not only in but also in . */ /* But avoid namespace pollution on glibc systems. */ #ifndef __GLIBC__ # include #endif /* Native Windows platforms declare chdir, getcwd, rmdir in and/or , not in . They also declare access(), chmod(), close(), dup(), dup2(), isatty(), lseek(), read(), unlink(), write() in . */ #if ((@GNULIB_CHDIR@ || @GNULIB_GETCWD@ || @GNULIB_RMDIR@ \ || defined GNULIB_POSIXCHECK) \ && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) # include /* mingw32, mingw64 */ # include /* mingw64, MSVC 9 */ #elif (@GNULIB_CLOSE@ || @GNULIB_DUP@ || @GNULIB_DUP2@ || @GNULIB_ISATTY@ \ || @GNULIB_LSEEK@ || @GNULIB_READ@ || @GNULIB_UNLINK@ || @GNULIB_WRITE@ \ || defined GNULIB_POSIXCHECK) \ && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) # include #endif /* AIX and OSF/1 5.1 declare getdomainname in , not in . NonStop Kernel declares gethostname in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if ((@GNULIB_GETDOMAINNAME@ && (defined _AIX || defined __osf__)) \ || (@GNULIB_GETHOSTNAME@ && defined __TANDEM)) \ && !defined __GLIBC__ # include #endif /* MSVC defines off_t in . May also define off_t to a 64-bit type on native Windows. */ #if !@HAVE_UNISTD_H@ || @WINDOWS_64_BIT_OFF_T@ /* Get off_t. */ # include #endif #if (@GNULIB_READ@ || @GNULIB_WRITE@ \ || @GNULIB_READLINK@ || @GNULIB_READLINKAT@ \ || @GNULIB_PREAD@ || @GNULIB_PWRITE@ || defined GNULIB_POSIXCHECK) /* Get ssize_t. */ # include #endif /* Get getopt(), optarg, optind, opterr, optopt. But avoid namespace pollution on glibc systems. */ #if @GNULIB_UNISTD_H_GETOPT@ && !defined __GLIBC__ && !defined _GL_SYSTEM_GETOPT # include #endif _GL_INLINE_HEADER_BEGIN #ifndef _GL_UNISTD_INLINE # define _GL_UNISTD_INLINE _GL_INLINE #endif /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ /* The definition of _GL_ARG_NONNULL is copied here. */ /* The definition of _GL_WARN_ON_USE is copied here. */ /* Hide some function declarations from . */ #if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ # if !defined _@GUARD_PREFIX@_SYS_SOCKET_H # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef socket # define socket socket_used_without_including_sys_socket_h # undef connect # define connect connect_used_without_including_sys_socket_h # undef accept # define accept accept_used_without_including_sys_socket_h # undef bind # define bind bind_used_without_including_sys_socket_h # undef getpeername # define getpeername getpeername_used_without_including_sys_socket_h # undef getsockname # define getsockname getsockname_used_without_including_sys_socket_h # undef getsockopt # define getsockopt getsockopt_used_without_including_sys_socket_h # undef listen # define listen listen_used_without_including_sys_socket_h # undef recv # define recv recv_used_without_including_sys_socket_h # undef send # define send send_used_without_including_sys_socket_h # undef recvfrom # define recvfrom recvfrom_used_without_including_sys_socket_h # undef sendto # define sendto sendto_used_without_including_sys_socket_h # undef setsockopt # define setsockopt setsockopt_used_without_including_sys_socket_h # undef shutdown # define shutdown shutdown_used_without_including_sys_socket_h # else _GL_WARN_ON_USE (socket, "socket() used without including "); _GL_WARN_ON_USE (connect, "connect() used without including "); _GL_WARN_ON_USE (accept, "accept() used without including "); _GL_WARN_ON_USE (bind, "bind() used without including "); _GL_WARN_ON_USE (getpeername, "getpeername() used without including "); _GL_WARN_ON_USE (getsockname, "getsockname() used without including "); _GL_WARN_ON_USE (getsockopt, "getsockopt() used without including "); _GL_WARN_ON_USE (listen, "listen() used without including "); _GL_WARN_ON_USE (recv, "recv() used without including "); _GL_WARN_ON_USE (send, "send() used without including "); _GL_WARN_ON_USE (recvfrom, "recvfrom() used without including "); _GL_WARN_ON_USE (sendto, "sendto() used without including "); _GL_WARN_ON_USE (setsockopt, "setsockopt() used without including "); _GL_WARN_ON_USE (shutdown, "shutdown() used without including "); # endif # endif # if !defined _@GUARD_PREFIX@_SYS_SELECT_H # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef select # define select select_used_without_including_sys_select_h # else _GL_WARN_ON_USE (select, "select() used without including "); # endif # endif #endif /* OS/2 EMX lacks these macros. */ #ifndef STDIN_FILENO # define STDIN_FILENO 0 #endif #ifndef STDOUT_FILENO # define STDOUT_FILENO 1 #endif #ifndef STDERR_FILENO # define STDERR_FILENO 2 #endif /* Ensure *_OK macros exist. */ #ifndef F_OK # define F_OK 0 # define X_OK 1 # define W_OK 2 # define R_OK 4 #endif /* Declare overridden functions. */ #if defined GNULIB_POSIXCHECK /* The access() function is a security risk. */ _GL_WARN_ON_USE (access, "the access function is a security risk - " "use the gnulib module faccessat instead"); #endif #if @GNULIB_CHDIR@ _GL_CXXALIAS_SYS (chdir, int, (const char *file) _GL_ARG_NONNULL ((1))); _GL_CXXALIASWARN (chdir); #elif defined GNULIB_POSIXCHECK # undef chdir # if HAVE_RAW_DECL_CHDIR _GL_WARN_ON_USE (chown, "chdir is not always in - " "use gnulib module chdir for portability"); # endif #endif #if @GNULIB_CHOWN@ /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE to GID (if GID is not -1). Follow symbolic links. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_DUP2@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define dup2 rpl_dup2 # endif _GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd)); _GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd)); # else # if !@HAVE_DUP2@ _GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd)); # endif _GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd)); # endif _GL_CXXALIASWARN (dup2); #elif defined GNULIB_POSIXCHECK # undef dup2 # if HAVE_RAW_DECL_DUP2 _GL_WARN_ON_USE (dup2, "dup2 is unportable - " "use gnulib module dup2 for portability"); # endif #endif #if @GNULIB_DUP3@ /* Copy the file descriptor OLDFD into file descriptor NEWFD, with the specified flags. The flags are a bitmask, possibly including O_CLOEXEC (defined in ) and O_TEXT, O_BINARY (defined in "binary-io.h"). Close NEWFD first if it is open. Return newfd if successful, otherwise -1 and errno set. See the Linux man page at . */ # if @HAVE_DUP3@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define dup3 rpl_dup3 # endif _GL_FUNCDECL_RPL (dup3, int, (int oldfd, int newfd, int flags)); _GL_CXXALIAS_RPL (dup3, int, (int oldfd, int newfd, int flags)); # else _GL_FUNCDECL_SYS (dup3, int, (int oldfd, int newfd, int flags)); _GL_CXXALIAS_SYS (dup3, int, (int oldfd, int newfd, int flags)); # endif _GL_CXXALIASWARN (dup3); #elif defined GNULIB_POSIXCHECK # undef dup3 # if HAVE_RAW_DECL_DUP3 _GL_WARN_ON_USE (dup3, "dup3 is unportable - " "use gnulib module dup3 for portability"); # endif #endif #if @GNULIB_ENVIRON@ # if !@HAVE_DECL_ENVIRON@ /* Set of environment variables and values. An array of strings of the form "VARIABLE=VALUE", terminated with a NULL. */ # if defined __APPLE__ && defined __MACH__ # include # define environ (*_NSGetEnviron ()) # else # ifdef __cplusplus extern "C" { # endif extern char **environ; # ifdef __cplusplus } # endif # endif # endif #elif defined GNULIB_POSIXCHECK # if HAVE_RAW_DECL_ENVIRON _GL_UNISTD_INLINE char *** rpl_environ (void) { return &environ; } _GL_WARN_ON_USE (rpl_environ, "environ is unportable - " "use gnulib module environ for portability"); # undef environ # define environ (*rpl_environ ()) # endif #endif #if @GNULIB_EUIDACCESS@ /* Like access(), except that it uses the effective user id and group id of the current process. */ # if !@HAVE_EUIDACCESS@ _GL_FUNCDECL_SYS (euidaccess, int, (const char *filename, int mode) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (euidaccess, int, (const char *filename, int mode)); _GL_CXXALIASWARN (euidaccess); # if defined GNULIB_POSIXCHECK /* Like access(), this function is a security risk. */ _GL_WARN_ON_USE (euidaccess, "the euidaccess function is a security risk - " "use the gnulib module faccessat instead"); # endif #elif defined GNULIB_POSIXCHECK # undef euidaccess # if HAVE_RAW_DECL_EUIDACCESS _GL_WARN_ON_USE (euidaccess, "euidaccess is unportable - " "use gnulib module euidaccess for portability"); # endif #endif #if @GNULIB_FACCESSAT@ # if !@HAVE_FACCESSAT@ _GL_FUNCDECL_SYS (faccessat, int, (int fd, char const *file, int mode, int flag) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (faccessat, int, (int fd, char const *file, int mode, int flag)); _GL_CXXALIASWARN (faccessat); #elif defined GNULIB_POSIXCHECK # undef faccessat # if HAVE_RAW_DECL_FACCESSAT _GL_WARN_ON_USE (faccessat, "faccessat is not portable - " "use gnulib module faccessat for portability"); # endif #endif #if @GNULIB_FCHDIR@ /* Change the process' current working directory to the directory on which the given file descriptor is open. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if ! @HAVE_FCHDIR@ _GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/)); /* Gnulib internal hooks needed to maintain the fchdir metadata. */ _GL_EXTERN_C int _gl_register_fd (int fd, const char *filename) _GL_ARG_NONNULL ((2)); _GL_EXTERN_C void _gl_unregister_fd (int fd); _GL_EXTERN_C int _gl_register_dup (int oldfd, int newfd); _GL_EXTERN_C const char *_gl_directory_name (int fd); # else # if !@HAVE_DECL_FCHDIR@ _GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/)); # endif # endif _GL_CXXALIAS_SYS (fchdir, int, (int /*fd*/)); _GL_CXXALIASWARN (fchdir); #elif defined GNULIB_POSIXCHECK # undef fchdir # if HAVE_RAW_DECL_FCHDIR _GL_WARN_ON_USE (fchdir, "fchdir is unportable - " "use gnulib module fchdir for portability"); # endif #endif #if @GNULIB_FCHOWNAT@ # if @REPLACE_FCHOWNAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef fchownat # define fchownat rpl_fchownat # endif _GL_FUNCDECL_RPL (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag)); # else # if !@HAVE_FCHOWNAT@ _GL_FUNCDECL_SYS (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag)); # endif _GL_CXXALIASWARN (fchownat); #elif defined GNULIB_POSIXCHECK # undef fchownat # if HAVE_RAW_DECL_FCHOWNAT _GL_WARN_ON_USE (fchownat, "fchownat is not portable - " "use gnulib module openat for portability"); # endif #endif #if @GNULIB_FDATASYNC@ /* Synchronize changes to a file. Return 0 if successful, otherwise -1 and errno set. See POSIX:2008 specification . */ # if !@HAVE_FDATASYNC@ || !@HAVE_DECL_FDATASYNC@ _GL_FUNCDECL_SYS (fdatasync, int, (int fd)); # endif _GL_CXXALIAS_SYS (fdatasync, int, (int fd)); _GL_CXXALIASWARN (fdatasync); #elif defined GNULIB_POSIXCHECK # undef fdatasync # if HAVE_RAW_DECL_FDATASYNC _GL_WARN_ON_USE (fdatasync, "fdatasync is unportable - " "use gnulib module fdatasync for portability"); # endif #endif #if @GNULIB_FSYNC@ /* Synchronize changes, including metadata, to a file. Return 0 if successful, otherwise -1 and errno set. See POSIX:2008 specification . */ # if !@HAVE_FSYNC@ _GL_FUNCDECL_SYS (fsync, int, (int fd)); # endif _GL_CXXALIAS_SYS (fsync, int, (int fd)); _GL_CXXALIASWARN (fsync); #elif defined GNULIB_POSIXCHECK # undef fsync # if HAVE_RAW_DECL_FSYNC _GL_WARN_ON_USE (fsync, "fsync is unportable - " "use gnulib module fsync for portability"); # endif #endif #if @GNULIB_FTRUNCATE@ /* Change the size of the file to which FD is opened to become equal to LENGTH. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_FTRUNCATE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef ftruncate # define ftruncate rpl_ftruncate # endif _GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length)); _GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length)); # else # if !@HAVE_FTRUNCATE@ _GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length)); # endif _GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length)); # endif _GL_CXXALIASWARN (ftruncate); #elif defined GNULIB_POSIXCHECK # undef ftruncate # if HAVE_RAW_DECL_FTRUNCATE _GL_WARN_ON_USE (ftruncate, "ftruncate is unportable - " "use gnulib module ftruncate for portability"); # endif #endif #if @GNULIB_GETCWD@ /* Get the name of the current working directory, and put it in SIZE bytes of BUF. Return BUF if successful, or NULL if the directory couldn't be determined or SIZE was too small. See the POSIX:2008 specification . Additionally, the gnulib module 'getcwd' guarantees the following GNU extension: If BUF is NULL, an array is allocated with 'malloc'; the array is SIZE bytes long, unless SIZE == 0, in which case it is as big as necessary. */ # if @REPLACE_GETCWD@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getcwd rpl_getcwd # endif _GL_FUNCDECL_RPL (getcwd, char *, (char *buf, size_t size)); _GL_CXXALIAS_RPL (getcwd, char *, (char *buf, size_t size)); # else /* Need to cast, because on mingw, the second parameter is int size. */ _GL_CXXALIAS_SYS_CAST (getcwd, char *, (char *buf, size_t size)); # endif _GL_CXXALIASWARN (getcwd); #elif defined GNULIB_POSIXCHECK # undef getcwd # if HAVE_RAW_DECL_GETCWD _GL_WARN_ON_USE (getcwd, "getcwd is unportable - " "use gnulib module getcwd for portability"); # endif #endif #if @GNULIB_GETDOMAINNAME@ /* Return the NIS domain name of the machine. WARNING! The NIS domain name is unrelated to the fully qualified host name of the machine. It is also unrelated to email addresses. WARNING! The NIS domain name is usually the empty string or "(none)" when not using NIS. Put up to LEN bytes of the NIS domain name into NAME. Null terminate it if the name is shorter than LEN. If the NIS domain name is longer than LEN, set errno = EINVAL and return -1. Return 0 if successful, otherwise set errno and return -1. */ # if @REPLACE_GETDOMAINNAME@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef getdomainname # define getdomainname rpl_getdomainname # endif _GL_FUNCDECL_RPL (getdomainname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (getdomainname, int, (char *name, size_t len)); # else # if !@HAVE_DECL_GETDOMAINNAME@ _GL_FUNCDECL_SYS (getdomainname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (getdomainname, int, (char *name, size_t len)); # endif _GL_CXXALIASWARN (getdomainname); #elif defined GNULIB_POSIXCHECK # undef getdomainname # if HAVE_RAW_DECL_GETDOMAINNAME _GL_WARN_ON_USE (getdomainname, "getdomainname is unportable - " "use gnulib module getdomainname for portability"); # endif #endif #if @GNULIB_GETDTABLESIZE@ /* Return the maximum number of file descriptors in the current process. In POSIX, this is same as sysconf (_SC_OPEN_MAX). */ # if !@HAVE_GETDTABLESIZE@ _GL_FUNCDECL_SYS (getdtablesize, int, (void)); # endif _GL_CXXALIAS_SYS (getdtablesize, int, (void)); _GL_CXXALIASWARN (getdtablesize); #elif defined GNULIB_POSIXCHECK # undef getdtablesize # if HAVE_RAW_DECL_GETDTABLESIZE _GL_WARN_ON_USE (getdtablesize, "getdtablesize is unportable - " "use gnulib module getdtablesize for portability"); # endif #endif #if @GNULIB_GETGROUPS@ /* Return the supplemental groups that the current process belongs to. It is unspecified whether the effective group id is in the list. If N is 0, return the group count; otherwise, N describes how many entries are available in GROUPS. Return -1 and set errno if N is not 0 and not large enough. Fails with ENOSYS on some systems. */ # if @REPLACE_GETGROUPS@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef getgroups # define getgroups rpl_getgroups # endif _GL_FUNCDECL_RPL (getgroups, int, (int n, gid_t *groups)); _GL_CXXALIAS_RPL (getgroups, int, (int n, gid_t *groups)); # else # if !@HAVE_GETGROUPS@ _GL_FUNCDECL_SYS (getgroups, int, (int n, gid_t *groups)); # endif _GL_CXXALIAS_SYS (getgroups, int, (int n, gid_t *groups)); # endif _GL_CXXALIASWARN (getgroups); #elif defined GNULIB_POSIXCHECK # undef getgroups # if HAVE_RAW_DECL_GETGROUPS _GL_WARN_ON_USE (getgroups, "getgroups is unportable - " "use gnulib module getgroups for portability"); # endif #endif #if @GNULIB_GETHOSTNAME@ /* Return the standard host name of the machine. WARNING! The host name may or may not be fully qualified. Put up to LEN bytes of the host name into NAME. Null terminate it if the name is shorter than LEN. If the host name is longer than LEN, set errno = EINVAL and return -1. Return 0 if successful, otherwise set errno and return -1. */ # if @UNISTD_H_HAVE_WINSOCK2_H@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef gethostname # define gethostname rpl_gethostname # endif _GL_FUNCDECL_RPL (gethostname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (gethostname, int, (char *name, size_t len)); # else # if !@HAVE_GETHOSTNAME@ _GL_FUNCDECL_SYS (gethostname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); # endif /* Need to cast, because on Solaris 10 and OSF/1 5.1 systems, the second parameter is int len. */ _GL_CXXALIAS_SYS_CAST (gethostname, int, (char *name, size_t len)); # endif _GL_CXXALIASWARN (gethostname); #elif @UNISTD_H_HAVE_WINSOCK2_H@ # undef gethostname # define gethostname gethostname_used_without_requesting_gnulib_module_gethostname #elif defined GNULIB_POSIXCHECK # undef gethostname # if HAVE_RAW_DECL_GETHOSTNAME _GL_WARN_ON_USE (gethostname, "gethostname is unportable - " "use gnulib module gethostname for portability"); # endif #endif #if @GNULIB_GETLOGIN@ /* Returns the user's login name, or NULL if it cannot be found. Upon error, returns NULL with errno set. See . Most programs don't need to use this function, because the information is available through environment variables: ${LOGNAME-$USER} on Unix platforms, $USERNAME on native Windows platforms. */ # if !@HAVE_GETLOGIN@ _GL_FUNCDECL_SYS (getlogin, char *, (void)); # endif _GL_CXXALIAS_SYS (getlogin, char *, (void)); _GL_CXXALIASWARN (getlogin); #elif defined GNULIB_POSIXCHECK # undef getlogin # if HAVE_RAW_DECL_GETLOGIN _GL_WARN_ON_USE (getlogin, "getlogin is unportable - " "use gnulib module getlogin for portability"); # endif #endif #if @GNULIB_GETLOGIN_R@ /* Copies the user's login name to NAME. The array pointed to by NAME has room for SIZE bytes. Returns 0 if successful. Upon error, an error number is returned, or -1 in the case that the login name cannot be found but no specific error is provided (this case is hopefully rare but is left open by the POSIX spec). See . Most programs don't need to use this function, because the information is available through environment variables: ${LOGNAME-$USER} on Unix platforms, $USERNAME on native Windows platforms. */ # if @REPLACE_GETLOGIN_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getlogin_r rpl_getlogin_r # endif _GL_FUNCDECL_RPL (getlogin_r, int, (char *name, size_t size) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (getlogin_r, int, (char *name, size_t size)); # else # if !@HAVE_DECL_GETLOGIN_R@ _GL_FUNCDECL_SYS (getlogin_r, int, (char *name, size_t size) _GL_ARG_NONNULL ((1))); # endif /* Need to cast, because on Solaris 10 systems, the second argument is int size. */ _GL_CXXALIAS_SYS_CAST (getlogin_r, int, (char *name, size_t size)); # endif _GL_CXXALIASWARN (getlogin_r); #elif defined GNULIB_POSIXCHECK # undef getlogin_r # if HAVE_RAW_DECL_GETLOGIN_R _GL_WARN_ON_USE (getlogin_r, "getlogin_r is unportable - " "use gnulib module getlogin_r for portability"); # endif #endif #if @GNULIB_GETPAGESIZE@ # if @REPLACE_GETPAGESIZE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getpagesize rpl_getpagesize # endif _GL_FUNCDECL_RPL (getpagesize, int, (void)); _GL_CXXALIAS_RPL (getpagesize, int, (void)); # else # if !@HAVE_GETPAGESIZE@ # if !defined getpagesize /* This is for POSIX systems. */ # if !defined _gl_getpagesize && defined _SC_PAGESIZE # if ! (defined __VMS && __VMS_VER < 70000000) # define _gl_getpagesize() sysconf (_SC_PAGESIZE) # endif # endif /* This is for older VMS. */ # if !defined _gl_getpagesize && defined __VMS # ifdef __ALPHA # define _gl_getpagesize() 8192 # else # define _gl_getpagesize() 512 # endif # endif /* This is for BeOS. */ # if !defined _gl_getpagesize && @HAVE_OS_H@ # include # if defined B_PAGE_SIZE # define _gl_getpagesize() B_PAGE_SIZE # endif # endif /* This is for AmigaOS4.0. */ # if !defined _gl_getpagesize && defined __amigaos4__ # define _gl_getpagesize() 2048 # endif /* This is for older Unix systems. */ # if !defined _gl_getpagesize && @HAVE_SYS_PARAM_H@ # include # ifdef EXEC_PAGESIZE # define _gl_getpagesize() EXEC_PAGESIZE # else # ifdef NBPG # ifndef CLSIZE # define CLSIZE 1 # endif # define _gl_getpagesize() (NBPG * CLSIZE) # else # ifdef NBPC # define _gl_getpagesize() NBPC # endif # endif # endif # endif # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getpagesize() _gl_getpagesize () # else # if !GNULIB_defined_getpagesize_function _GL_UNISTD_INLINE int getpagesize () { return _gl_getpagesize (); } # define GNULIB_defined_getpagesize_function 1 # endif # endif # endif # endif /* Need to cast, because on Cygwin 1.5.x systems, the return type is size_t. */ _GL_CXXALIAS_SYS_CAST (getpagesize, int, (void)); # endif # if @HAVE_DECL_GETPAGESIZE@ _GL_CXXALIASWARN (getpagesize); # endif #elif defined GNULIB_POSIXCHECK # undef getpagesize # if HAVE_RAW_DECL_GETPAGESIZE _GL_WARN_ON_USE (getpagesize, "getpagesize is unportable - " "use gnulib module getpagesize for portability"); # endif #endif #if @GNULIB_GETUSERSHELL@ /* Return the next valid login shell on the system, or NULL when the end of the list has been reached. */ # if !@HAVE_DECL_GETUSERSHELL@ _GL_FUNCDECL_SYS (getusershell, char *, (void)); # endif _GL_CXXALIAS_SYS (getusershell, char *, (void)); _GL_CXXALIASWARN (getusershell); #elif defined GNULIB_POSIXCHECK # undef getusershell # if HAVE_RAW_DECL_GETUSERSHELL _GL_WARN_ON_USE (getusershell, "getusershell is unportable - " "use gnulib module getusershell for portability"); # endif #endif #if @GNULIB_GETUSERSHELL@ /* Rewind to pointer that is advanced at each getusershell() call. */ # if !@HAVE_DECL_GETUSERSHELL@ _GL_FUNCDECL_SYS (setusershell, void, (void)); # endif _GL_CXXALIAS_SYS (setusershell, void, (void)); _GL_CXXALIASWARN (setusershell); #elif defined GNULIB_POSIXCHECK # undef setusershell # if HAVE_RAW_DECL_SETUSERSHELL _GL_WARN_ON_USE (setusershell, "setusershell is unportable - " "use gnulib module getusershell for portability"); # endif #endif #if @GNULIB_GETUSERSHELL@ /* Free the pointer that is advanced at each getusershell() call and associated resources. */ # if !@HAVE_DECL_GETUSERSHELL@ _GL_FUNCDECL_SYS (endusershell, void, (void)); # endif _GL_CXXALIAS_SYS (endusershell, void, (void)); _GL_CXXALIASWARN (endusershell); #elif defined GNULIB_POSIXCHECK # undef endusershell # if HAVE_RAW_DECL_ENDUSERSHELL _GL_WARN_ON_USE (endusershell, "endusershell is unportable - " "use gnulib module getusershell for portability"); # endif #endif #if @GNULIB_GROUP_MEMBER@ /* Determine whether group id is in calling user's group list. */ # if !@HAVE_GROUP_MEMBER@ _GL_FUNCDECL_SYS (group_member, int, (gid_t gid)); # endif _GL_CXXALIAS_SYS (group_member, int, (gid_t gid)); _GL_CXXALIASWARN (group_member); #elif defined GNULIB_POSIXCHECK # undef group_member # if HAVE_RAW_DECL_GROUP_MEMBER _GL_WARN_ON_USE (group_member, "group_member is unportable - " "use gnulib module group-member for portability"); # endif #endif #if @GNULIB_ISATTY@ # if @REPLACE_ISATTY@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef isatty # define isatty rpl_isatty # endif _GL_FUNCDECL_RPL (isatty, int, (int fd)); _GL_CXXALIAS_RPL (isatty, int, (int fd)); # else _GL_CXXALIAS_SYS (isatty, int, (int fd)); # endif _GL_CXXALIASWARN (isatty); #elif defined GNULIB_POSIXCHECK # undef isatty # if HAVE_RAW_DECL_ISATTY _GL_WARN_ON_USE (isatty, "isatty has portability problems on native Windows - " "use gnulib module isatty for portability"); # endif #endif #if @GNULIB_LCHOWN@ /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE to GID (if GID is not -1). Do not follow symbolic links. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_LCHOWN@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef lchown # define lchown rpl_lchown # endif _GL_FUNCDECL_RPL (lchown, int, (char const *file, uid_t owner, gid_t group) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (lchown, int, (char const *file, uid_t owner, gid_t group)); # else # if !@HAVE_LCHOWN@ _GL_FUNCDECL_SYS (lchown, int, (char const *file, uid_t owner, gid_t group) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (lchown, int, (char const *file, uid_t owner, gid_t group)); # endif _GL_CXXALIASWARN (lchown); #elif defined GNULIB_POSIXCHECK # undef lchown # if HAVE_RAW_DECL_LCHOWN _GL_WARN_ON_USE (lchown, "lchown is unportable to pre-POSIX.1-2001 systems - " "use gnulib module lchown for portability"); # endif #endif #if @GNULIB_LINK@ /* Create a new hard link for an existing file. Return 0 if successful, otherwise -1 and errno set. See POSIX:2008 specification . */ # if @REPLACE_LINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define link rpl_link # endif _GL_FUNCDECL_RPL (link, int, (const char *path1, const char *path2) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (link, int, (const char *path1, const char *path2)); # else # if !@HAVE_LINK@ _GL_FUNCDECL_SYS (link, int, (const char *path1, const char *path2) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (link, int, (const char *path1, const char *path2)); # endif _GL_CXXALIASWARN (link); #elif defined GNULIB_POSIXCHECK # undef link # if HAVE_RAW_DECL_LINK _GL_WARN_ON_USE (link, "link is unportable - " "use gnulib module link for portability"); # endif #endif #if @GNULIB_LINKAT@ /* Create a new hard link for an existing file, relative to two directories. FLAG controls whether symlinks are followed. Return 0 if successful, otherwise -1 and errno set. */ # if @REPLACE_LINKAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef linkat # define linkat rpl_linkat # endif _GL_FUNCDECL_RPL (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag) _GL_ARG_NONNULL ((2, 4))); _GL_CXXALIAS_RPL (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag)); # else # if !@HAVE_LINKAT@ _GL_FUNCDECL_SYS (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag) _GL_ARG_NONNULL ((2, 4))); # endif _GL_CXXALIAS_SYS (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag)); # endif _GL_CXXALIASWARN (linkat); #elif defined GNULIB_POSIXCHECK # undef linkat # if HAVE_RAW_DECL_LINKAT _GL_WARN_ON_USE (linkat, "linkat is unportable - " "use gnulib module linkat for portability"); # endif #endif #if @GNULIB_LSEEK@ /* Set the offset of FD relative to SEEK_SET, SEEK_CUR, or SEEK_END. Return the new offset if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_LSEEK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define lseek rpl_lseek # endif _GL_FUNCDECL_RPL (lseek, off_t, (int fd, off_t offset, int whence)); _GL_CXXALIAS_RPL (lseek, off_t, (int fd, off_t offset, int whence)); # else _GL_CXXALIAS_SYS (lseek, off_t, (int fd, off_t offset, int whence)); # endif _GL_CXXALIASWARN (lseek); #elif defined GNULIB_POSIXCHECK # undef lseek # if HAVE_RAW_DECL_LSEEK _GL_WARN_ON_USE (lseek, "lseek does not fail with ESPIPE on pipes on some " "systems - use gnulib module lseek for portability"); # endif #endif #if @GNULIB_PIPE@ /* Create a pipe, defaulting to O_BINARY mode. Store the read-end as fd[0] and the write-end as fd[1]. Return 0 upon success, or -1 with errno set upon failure. */ # if !@HAVE_PIPE@ _GL_FUNCDECL_SYS (pipe, int, (int fd[2]) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (pipe, int, (int fd[2])); _GL_CXXALIASWARN (pipe); #elif defined GNULIB_POSIXCHECK # undef pipe # if HAVE_RAW_DECL_PIPE _GL_WARN_ON_USE (pipe, "pipe is unportable - " "use gnulib module pipe-posix for portability"); # endif #endif #if @GNULIB_PIPE2@ /* Create a pipe, applying the given flags when opening the read-end of the pipe and the write-end of the pipe. The flags are a bitmask, possibly including O_CLOEXEC (defined in ) and O_TEXT, O_BINARY (defined in "binary-io.h"). Store the read-end as fd[0] and the write-end as fd[1]. Return 0 upon success, or -1 with errno set upon failure. See also the Linux man page at . */ # if @HAVE_PIPE2@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define pipe2 rpl_pipe2 # endif _GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags)); # else _GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags)); # endif _GL_CXXALIASWARN (pipe2); #elif defined GNULIB_POSIXCHECK # undef pipe2 # if HAVE_RAW_DECL_PIPE2 _GL_WARN_ON_USE (pipe2, "pipe2 is unportable - " "use gnulib module pipe2 for portability"); # endif #endif #if @GNULIB_PREAD@ /* Read at most BUFSIZE bytes from FD into BUF, starting at OFFSET. Return the number of bytes placed into BUF if successful, otherwise set errno and return -1. 0 indicates EOF. See the POSIX:2008 specification . */ # if @REPLACE_PREAD@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef pread # define pread rpl_pread # endif _GL_FUNCDECL_RPL (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset)); # else # if !@HAVE_PREAD@ _GL_FUNCDECL_SYS (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset)); # endif _GL_CXXALIASWARN (pread); #elif defined GNULIB_POSIXCHECK # undef pread # if HAVE_RAW_DECL_PREAD _GL_WARN_ON_USE (pread, "pread is unportable - " "use gnulib module pread for portability"); # endif #endif #if @GNULIB_PWRITE@ /* Write at most BUFSIZE bytes from BUF into FD, starting at OFFSET. Return the number of bytes written if successful, otherwise set errno and return -1. 0 indicates nothing written. See the POSIX:2008 specification . */ # if @REPLACE_PWRITE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef pwrite # define pwrite rpl_pwrite # endif _GL_FUNCDECL_RPL (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset)); # else # if !@HAVE_PWRITE@ _GL_FUNCDECL_SYS (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset)); # endif _GL_CXXALIASWARN (pwrite); #elif defined GNULIB_POSIXCHECK # undef pwrite # if HAVE_RAW_DECL_PWRITE _GL_WARN_ON_USE (pwrite, "pwrite is unportable - " "use gnulib module pwrite for portability"); # endif #endif #if @GNULIB_READ@ /* Read up to COUNT bytes from file descriptor FD into the buffer starting at BUF. See the POSIX:2008 specification . */ # if @REPLACE_READ@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef read # define read rpl_read # endif _GL_FUNCDECL_RPL (read, ssize_t, (int fd, void *buf, size_t count) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (read, ssize_t, (int fd, void *buf, size_t count)); # else /* Need to cast, because on mingw, the third parameter is unsigned int count and the return type is 'int'. */ _GL_CXXALIAS_SYS_CAST (read, ssize_t, (int fd, void *buf, size_t count)); # endif _GL_CXXALIASWARN (read); #endif #if @GNULIB_READLINK@ /* Read the contents of the symbolic link FILE and place the first BUFSIZE bytes of it into BUF. Return the number of bytes placed into BUF if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_READLINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define readlink rpl_readlink # endif _GL_FUNCDECL_RPL (readlink, ssize_t, (const char *file, char *buf, size_t bufsize) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (readlink, ssize_t, (const char *file, char *buf, size_t bufsize)); # else # if !@HAVE_READLINK@ _GL_FUNCDECL_SYS (readlink, ssize_t, (const char *file, char *buf, size_t bufsize) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (readlink, ssize_t, (const char *file, char *buf, size_t bufsize)); # endif _GL_CXXALIASWARN (readlink); #elif defined GNULIB_POSIXCHECK # undef readlink # if HAVE_RAW_DECL_READLINK _GL_WARN_ON_USE (readlink, "readlink is unportable - " "use gnulib module readlink for portability"); # endif #endif #if @GNULIB_READLINKAT@ # if !@HAVE_READLINKAT@ _GL_FUNCDECL_SYS (readlinkat, ssize_t, (int fd, char const *file, char *buf, size_t len) _GL_ARG_NONNULL ((2, 3))); # endif _GL_CXXALIAS_SYS (readlinkat, ssize_t, (int fd, char const *file, char *buf, size_t len)); _GL_CXXALIASWARN (readlinkat); #elif defined GNULIB_POSIXCHECK # undef readlinkat # if HAVE_RAW_DECL_READLINKAT _GL_WARN_ON_USE (readlinkat, "readlinkat is not portable - " "use gnulib module readlinkat for portability"); # endif #endif #if @GNULIB_RMDIR@ /* Remove the directory DIR. */ # if @REPLACE_RMDIR@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define rmdir rpl_rmdir # endif _GL_FUNCDECL_RPL (rmdir, int, (char const *name) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (rmdir, int, (char const *name)); # else _GL_CXXALIAS_SYS (rmdir, int, (char const *name)); # endif _GL_CXXALIASWARN (rmdir); #elif defined GNULIB_POSIXCHECK # undef rmdir # if HAVE_RAW_DECL_RMDIR _GL_WARN_ON_USE (rmdir, "rmdir is unportable - " "use gnulib module rmdir for portability"); # endif #endif #if @GNULIB_SETHOSTNAME@ /* Set the host name of the machine. The host name may or may not be fully qualified. Put LEN bytes of NAME into the host name. Return 0 if successful, otherwise, set errno and return -1. Platforms with no ability to set the hostname return -1 and set errno = ENOSYS. */ # if !@HAVE_SETHOSTNAME@ || !@HAVE_DECL_SETHOSTNAME@ _GL_FUNCDECL_SYS (sethostname, int, (const char *name, size_t len) _GL_ARG_NONNULL ((1))); # endif /* Need to cast, because on Solaris 11 2011-10, Mac OS X 10.5, IRIX 6.5 and FreeBSD 6.4 the second parameter is int. On Solaris 11 2011-10, the first parameter is not const. */ _GL_CXXALIAS_SYS_CAST (sethostname, int, (const char *name, size_t len)); _GL_CXXALIASWARN (sethostname); #elif defined GNULIB_POSIXCHECK # undef sethostname # if HAVE_RAW_DECL_SETHOSTNAME _GL_WARN_ON_USE (sethostname, "sethostname is unportable - " "use gnulib module sethostname for portability"); # endif #endif #if @GNULIB_SLEEP@ /* Pause the execution of the current thread for N seconds. Returns the number of seconds left to sleep. See the POSIX:2008 specification . */ # if @REPLACE_SLEEP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef sleep # define sleep rpl_sleep # endif _GL_FUNCDECL_RPL (sleep, unsigned int, (unsigned int n)); _GL_CXXALIAS_RPL (sleep, unsigned int, (unsigned int n)); # else # if !@HAVE_SLEEP@ _GL_FUNCDECL_SYS (sleep, unsigned int, (unsigned int n)); # endif _GL_CXXALIAS_SYS (sleep, unsigned int, (unsigned int n)); # endif _GL_CXXALIASWARN (sleep); #elif defined GNULIB_POSIXCHECK # undef sleep # if HAVE_RAW_DECL_SLEEP _GL_WARN_ON_USE (sleep, "sleep is unportable - " "use gnulib module sleep for portability"); # endif #endif #if @GNULIB_SYMLINK@ # if @REPLACE_SYMLINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef symlink # define symlink rpl_symlink # endif _GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file)); # else # if !@HAVE_SYMLINK@ _GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file)); # endif _GL_CXXALIASWARN (symlink); #elif defined GNULIB_POSIXCHECK # undef symlink # if HAVE_RAW_DECL_SYMLINK _GL_WARN_ON_USE (symlink, "symlink is not portable - " "use gnulib module symlink for portability"); # endif #endif #if @GNULIB_SYMLINKAT@ # if !@HAVE_SYMLINKAT@ _GL_FUNCDECL_SYS (symlinkat, int, (char const *contents, int fd, char const *file) _GL_ARG_NONNULL ((1, 3))); # endif _GL_CXXALIAS_SYS (symlinkat, int, (char const *contents, int fd, char const *file)); _GL_CXXALIASWARN (symlinkat); #elif defined GNULIB_POSIXCHECK # undef symlinkat # if HAVE_RAW_DECL_SYMLINKAT _GL_WARN_ON_USE (symlinkat, "symlinkat is not portable - " "use gnulib module symlinkat for portability"); # endif #endif #if @GNULIB_TTYNAME_R@ /* Store at most BUFLEN characters of the pathname of the terminal FD is open on in BUF. Return 0 on success, otherwise an error number. */ # if @REPLACE_TTYNAME_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef ttyname_r # define ttyname_r rpl_ttyname_r # endif _GL_FUNCDECL_RPL (ttyname_r, int, (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (ttyname_r, int, (int fd, char *buf, size_t buflen)); # else # if !@HAVE_DECL_TTYNAME_R@ _GL_FUNCDECL_SYS (ttyname_r, int, (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (ttyname_r, int, (int fd, char *buf, size_t buflen)); # endif _GL_CXXALIASWARN (ttyname_r); #elif defined GNULIB_POSIXCHECK # undef ttyname_r # if HAVE_RAW_DECL_TTYNAME_R _GL_WARN_ON_USE (ttyname_r, "ttyname_r is not portable - " "use gnulib module ttyname_r for portability"); # endif #endif #if @GNULIB_UNLINK@ # if @REPLACE_UNLINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef unlink # define unlink rpl_unlink # endif _GL_FUNCDECL_RPL (unlink, int, (char const *file) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (unlink, int, (char const *file)); # else _GL_CXXALIAS_SYS (unlink, int, (char const *file)); # endif _GL_CXXALIASWARN (unlink); #elif defined GNULIB_POSIXCHECK # undef unlink # if HAVE_RAW_DECL_UNLINK _GL_WARN_ON_USE (unlink, "unlink is not portable - " "use gnulib module unlink for portability"); # endif #endif #if @GNULIB_UNLINKAT@ # if @REPLACE_UNLINKAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef unlinkat # define unlinkat rpl_unlinkat # endif _GL_FUNCDECL_RPL (unlinkat, int, (int fd, char const *file, int flag) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (unlinkat, int, (int fd, char const *file, int flag)); # else # if !@HAVE_UNLINKAT@ _GL_FUNCDECL_SYS (unlinkat, int, (int fd, char const *file, int flag) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (unlinkat, int, (int fd, char const *file, int flag)); # endif _GL_CXXALIASWARN (unlinkat); #elif defined GNULIB_POSIXCHECK # undef unlinkat # if HAVE_RAW_DECL_UNLINKAT _GL_WARN_ON_USE (unlinkat, "unlinkat is not portable - " "use gnulib module openat for portability"); # endif #endif #if @GNULIB_USLEEP@ /* Pause the execution of the current thread for N microseconds. Returns 0 on completion, or -1 on range error. See the POSIX:2001 specification . */ # if @REPLACE_USLEEP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef usleep # define usleep rpl_usleep # endif _GL_FUNCDECL_RPL (usleep, int, (useconds_t n)); _GL_CXXALIAS_RPL (usleep, int, (useconds_t n)); # else # if !@HAVE_USLEEP@ _GL_FUNCDECL_SYS (usleep, int, (useconds_t n)); # endif _GL_CXXALIAS_SYS (usleep, int, (useconds_t n)); # endif _GL_CXXALIASWARN (usleep); #elif defined GNULIB_POSIXCHECK # undef usleep # if HAVE_RAW_DECL_USLEEP _GL_WARN_ON_USE (usleep, "usleep is unportable - " "use gnulib module usleep for portability"); # endif #endif #if @GNULIB_WRITE@ /* Write up to COUNT bytes starting at BUF to file descriptor FD. See the POSIX:2008 specification . */ # if @REPLACE_WRITE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef write # define write rpl_write # endif _GL_FUNCDECL_RPL (write, ssize_t, (int fd, const void *buf, size_t count) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (write, ssize_t, (int fd, const void *buf, size_t count)); # else /* Need to cast, because on mingw, the third parameter is unsigned int count and the return type is 'int'. */ _GL_CXXALIAS_SYS_CAST (write, ssize_t, (int fd, const void *buf, size_t count)); # endif _GL_CXXALIASWARN (write); #endif _GL_INLINE_HEADER_END #endif /* _@GUARD_PREFIX@_UNISTD_H */ #endif /* _@GUARD_PREFIX@_UNISTD_H */ liblouis-2.5.3/gnulib/sys_types.in.h0000664000175000017500000000317512161041522014366 00000000000000/* Provide a more complete sys/types.h. Copyright (C) 2011-2013 Free Software Foundation, Inc. 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, 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, see . */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ #ifndef _@GUARD_PREFIX@_SYS_TYPES_H /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_SYS_TYPES_H@ #ifndef _@GUARD_PREFIX@_SYS_TYPES_H #define _@GUARD_PREFIX@_SYS_TYPES_H /* Override off_t if Large File Support is requested on native Windows. */ #if @WINDOWS_64_BIT_OFF_T@ /* Same as int64_t in . */ # if defined _MSC_VER # define off_t __int64 # else # define off_t long long int # endif /* Indicator, for gnulib internal purposes. */ # define _GL_WINDOWS_64_BIT_OFF_T 1 #endif /* MSVC 9 defines size_t in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \ && ! defined __GLIBC__ # include #endif #endif /* _@GUARD_PREFIX@_SYS_TYPES_H */ #endif /* _@GUARD_PREFIX@_SYS_TYPES_H */ liblouis-2.5.3/gnulib/Makefile.in0000664000175000017500000014702612161044153013622 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # Reproduce by: gnulib-tool --import --dir=. --local-dir=gnulib/override --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --no-conditional-dependencies --libtool --macro-prefix=gl getopt-gnu malloc-gnu progname realloc-gnu version-etc VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = gnulib DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = am_libgnu_la_OBJECTS = progname.lo unistd.lo version-etc.lo libgnu_la_OBJECTS = $(am_libgnu_la_OBJECTS) libgnu_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libgnu_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/liblouis depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libgnu_la_SOURCES) $(EXTRA_libgnu_la_SOURCES) DIST_SOURCES = $(libgnu_la_SOURCES) $(EXTRA_libgnu_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = 1.5 gnits SUBDIRS = noinst_HEADERS = noinst_LIBRARIES = noinst_LTLIBRARIES = libgnu.la EXTRA_DIST = m4/gnulib-cache.m4 getopt.c getopt.in.h getopt1.c \ getopt_int.h malloc.c malloc.c realloc.c realloc.c \ $(top_srcdir)/build-aux/snippet/_Noreturn.h \ $(top_srcdir)/build-aux/snippet/arg-nonnull.h \ $(top_srcdir)/build-aux/snippet/c++defs.h \ $(top_srcdir)/build-aux/snippet/warn-on-use.h stdarg.in.h \ stddef.in.h stdlib.in.h sys_types.in.h unistd.in.h # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. BUILT_SOURCES = $(GETOPT_H) arg-nonnull.h c++defs.h warn-on-use.h \ $(STDARG_H) $(STDDEF_H) stdlib.h sys/types.h unistd.h SUFFIXES = MOSTLYCLEANFILES = core *.stackdump getopt.h getopt.h-t arg-nonnull.h \ arg-nonnull.h-t c++defs.h c++defs.h-t warn-on-use.h \ warn-on-use.h-t stdarg.h stdarg.h-t stddef.h stddef.h-t \ stdlib.h stdlib.h-t sys/types.h sys/types.h-t unistd.h \ unistd.h-t MOSTLYCLEANDIRS = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = AM_CPPFLAGS = AM_CFLAGS = libgnu_la_SOURCES = gettext.h progname.h progname.c unistd.c \ version-etc.h version-etc.c libgnu_la_LIBADD = $(gl_LTLIBOBJS) libgnu_la_DEPENDENCIES = $(gl_LTLIBOBJS) EXTRA_libgnu_la_SOURCES = getopt.c getopt1.c malloc.c malloc.c \ realloc.c realloc.c libgnu_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined $(LTLIBINTL) # Because this Makefile snippet defines a variable used by other # gnulib Makefile snippets, it must be present in all Makefile.am that # need it. This is ensured by the applicability 'all' defined above. _NORETURN_H = $(top_srcdir)/build-aux/snippet/_Noreturn.h ARG_NONNULL_H = arg-nonnull.h CXXDEFS_H = c++defs.h WARN_ON_USE_H = warn-on-use.h all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits gnulib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits gnulib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libgnu.la: $(libgnu_la_OBJECTS) $(libgnu_la_DEPENDENCIES) $(EXTRA_libgnu_la_DEPENDENCIES) $(libgnu_la_LINK) $(libgnu_la_OBJECTS) $(libgnu_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt1.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/malloc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/progname.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/realloc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unistd.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version-etc.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(LIBRARIES) $(LTLIBRARIES) $(HEADERS) installdirs: installdirs-recursive installdirs-am: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool mostlyclean-local pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ctags-recursive install install-am install-strip \ tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ clean-noinstLIBRARIES clean-noinstLTLIBRARIES ctags \ ctags-recursive distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am # We need the following in order to create when the system # doesn't have one that works with the given compiler. getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ < $(srcdir)/getopt.in.h; \ } > $@-t && \ mv -f $@-t $@ # The arg-nonnull.h that gets inserted into generated .h files is the same as # build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut # off. arg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/GL_ARG_NONNULL/,$$p' \ < $(top_srcdir)/build-aux/snippet/arg-nonnull.h \ > $@-t && \ mv $@-t $@ # The c++defs.h that gets inserted into generated .h files is the same as # build-aux/snippet/c++defs.h, except that it has the copyright header cut off. c++defs.h: $(top_srcdir)/build-aux/snippet/c++defs.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/_GL_CXXDEFS/,$$p' \ < $(top_srcdir)/build-aux/snippet/c++defs.h \ > $@-t && \ mv $@-t $@ # The warn-on-use.h that gets inserted into generated .h files is the same as # build-aux/snippet/warn-on-use.h, except that it has the copyright header cut # off. warn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/^.ifndef/,$$p' \ < $(top_srcdir)/build-aux/snippet/warn-on-use.h \ > $@-t && \ mv $@-t $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. @GL_GENERATE_STDARG_H_TRUE@stdarg.h: stdarg.in.h $(top_builddir)/config.status @GL_GENERATE_STDARG_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ @GL_GENERATE_STDARG_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ @GL_GENERATE_STDARG_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_STDARG_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_STDARG_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_STDARG_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_STDARG_H_TRUE@ -e 's|@''NEXT_STDARG_H''@|$(NEXT_STDARG_H)|g' \ @GL_GENERATE_STDARG_H_TRUE@ < $(srcdir)/stdarg.in.h; \ @GL_GENERATE_STDARG_H_TRUE@ } > $@-t && \ @GL_GENERATE_STDARG_H_TRUE@ mv $@-t $@ @GL_GENERATE_STDARG_H_FALSE@stdarg.h: $(top_builddir)/config.status @GL_GENERATE_STDARG_H_FALSE@ rm -f $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. @GL_GENERATE_STDDEF_H_TRUE@stddef.h: stddef.in.h $(top_builddir)/config.status @GL_GENERATE_STDDEF_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ @GL_GENERATE_STDDEF_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ @GL_GENERATE_STDDEF_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ < $(srcdir)/stddef.in.h; \ @GL_GENERATE_STDDEF_H_TRUE@ } > $@-t && \ @GL_GENERATE_STDDEF_H_TRUE@ mv $@-t $@ @GL_GENERATE_STDDEF_H_FALSE@stddef.h: $(top_builddir)/config.status @GL_GENERATE_STDDEF_H_FALSE@ rm -f $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. stdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \ $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \ -e 's/@''GNULIB__EXIT''@/$(GNULIB__EXIT)/g' \ -e 's/@''GNULIB_ATOLL''@/$(GNULIB_ATOLL)/g' \ -e 's/@''GNULIB_CALLOC_POSIX''@/$(GNULIB_CALLOC_POSIX)/g' \ -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GNULIB_CANONICALIZE_FILE_NAME)/g' \ -e 's/@''GNULIB_GETLOADAVG''@/$(GNULIB_GETLOADAVG)/g' \ -e 's/@''GNULIB_GETSUBOPT''@/$(GNULIB_GETSUBOPT)/g' \ -e 's/@''GNULIB_GRANTPT''@/$(GNULIB_GRANTPT)/g' \ -e 's/@''GNULIB_MALLOC_POSIX''@/$(GNULIB_MALLOC_POSIX)/g' \ -e 's/@''GNULIB_MBTOWC''@/$(GNULIB_MBTOWC)/g' \ -e 's/@''GNULIB_MKDTEMP''@/$(GNULIB_MKDTEMP)/g' \ -e 's/@''GNULIB_MKOSTEMP''@/$(GNULIB_MKOSTEMP)/g' \ -e 's/@''GNULIB_MKOSTEMPS''@/$(GNULIB_MKOSTEMPS)/g' \ -e 's/@''GNULIB_MKSTEMP''@/$(GNULIB_MKSTEMP)/g' \ -e 's/@''GNULIB_MKSTEMPS''@/$(GNULIB_MKSTEMPS)/g' \ -e 's/@''GNULIB_POSIX_OPENPT''@/$(GNULIB_POSIX_OPENPT)/g' \ -e 's/@''GNULIB_PTSNAME''@/$(GNULIB_PTSNAME)/g' \ -e 's/@''GNULIB_PTSNAME_R''@/$(GNULIB_PTSNAME_R)/g' \ -e 's/@''GNULIB_PUTENV''@/$(GNULIB_PUTENV)/g' \ -e 's/@''GNULIB_RANDOM''@/$(GNULIB_RANDOM)/g' \ -e 's/@''GNULIB_RANDOM_R''@/$(GNULIB_RANDOM_R)/g' \ -e 's/@''GNULIB_REALLOC_POSIX''@/$(GNULIB_REALLOC_POSIX)/g' \ -e 's/@''GNULIB_REALPATH''@/$(GNULIB_REALPATH)/g' \ -e 's/@''GNULIB_RPMATCH''@/$(GNULIB_RPMATCH)/g' \ -e 's/@''GNULIB_SETENV''@/$(GNULIB_SETENV)/g' \ -e 's/@''GNULIB_STRTOD''@/$(GNULIB_STRTOD)/g' \ -e 's/@''GNULIB_STRTOLL''@/$(GNULIB_STRTOLL)/g' \ -e 's/@''GNULIB_STRTOULL''@/$(GNULIB_STRTOULL)/g' \ -e 's/@''GNULIB_SYSTEM_POSIX''@/$(GNULIB_SYSTEM_POSIX)/g' \ -e 's/@''GNULIB_UNLOCKPT''@/$(GNULIB_UNLOCKPT)/g' \ -e 's/@''GNULIB_UNSETENV''@/$(GNULIB_UNSETENV)/g' \ -e 's/@''GNULIB_WCTOMB''@/$(GNULIB_WCTOMB)/g' \ < $(srcdir)/stdlib.in.h | \ sed -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \ -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \ -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \ -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \ -e 's|@''HAVE_GRANTPT''@|$(HAVE_GRANTPT)|g' \ -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \ -e 's|@''HAVE_MKOSTEMP''@|$(HAVE_MKOSTEMP)|g' \ -e 's|@''HAVE_MKOSTEMPS''@|$(HAVE_MKOSTEMPS)|g' \ -e 's|@''HAVE_MKSTEMP''@|$(HAVE_MKSTEMP)|g' \ -e 's|@''HAVE_MKSTEMPS''@|$(HAVE_MKSTEMPS)|g' \ -e 's|@''HAVE_POSIX_OPENPT''@|$(HAVE_POSIX_OPENPT)|g' \ -e 's|@''HAVE_PTSNAME''@|$(HAVE_PTSNAME)|g' \ -e 's|@''HAVE_PTSNAME_R''@|$(HAVE_PTSNAME_R)|g' \ -e 's|@''HAVE_RANDOM''@|$(HAVE_RANDOM)|g' \ -e 's|@''HAVE_RANDOM_H''@|$(HAVE_RANDOM_H)|g' \ -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \ -e 's|@''HAVE_REALPATH''@|$(HAVE_REALPATH)|g' \ -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \ -e 's|@''HAVE_DECL_SETENV''@|$(HAVE_DECL_SETENV)|g' \ -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \ -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \ -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \ -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \ -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \ -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \ -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \ -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \ -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \ -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \ -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \ -e 's|@''REPLACE_PTSNAME''@|$(REPLACE_PTSNAME)|g' \ -e 's|@''REPLACE_PTSNAME_R''@|$(REPLACE_PTSNAME_R)|g' \ -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \ -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \ -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \ -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \ -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \ -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \ -e 's|@''REPLACE_UNSETENV''@|$(REPLACE_UNSETENV)|g' \ -e 's|@''REPLACE_WCTOMB''@|$(REPLACE_WCTOMB)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _Noreturn/r $(_NORETURN_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ } > $@-t && \ mv $@-t $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. sys/types.h: sys_types.in.h $(top_builddir)/config.status $(AM_V_at)$(MKDIR_P) sys $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ # We need the following in order to create an empty placeholder for # when the system doesn't have one. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \ -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \ -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \ -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \ -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \ -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \ -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \ -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \ -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \ -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \ -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \ -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \ -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \ -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \ -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \ -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \ -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \ -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \ -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \ -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \ -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \ -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \ -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \ -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \ -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \ -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \ -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \ -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \ -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \ -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \ -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \ -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \ -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \ -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \ -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \ -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \ -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \ -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \ -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \ -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \ -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \ -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \ -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \ -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \ -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \ -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \ -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \ -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \ -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \ < $(srcdir)/unistd.in.h | \ sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \ -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \ -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \ -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \ -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \ -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \ -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \ -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \ -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \ -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \ -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \ -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \ -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \ -e 's|@''HAVE_GETLOGIN''@|$(HAVE_GETLOGIN)|g' \ -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \ -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \ -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \ -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \ -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \ -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \ -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \ -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \ -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \ -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \ -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \ -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \ -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \ -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \ -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \ -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \ -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \ -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \ -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \ -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \ -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \ -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ | \ sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \ -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \ -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \ -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \ -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \ -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \ -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \ -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \ -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \ -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \ -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \ -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \ -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \ -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \ -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \ -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \ -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \ -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \ -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \ -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \ -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \ -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ } > $@-t && \ mv $@-t $@ mostlyclean-local: mostlyclean-generic @for dir in '' $(MOSTLYCLEANDIRS); do \ if test -n "$$dir" && test -d $$dir; then \ echo "rmdir $$dir"; rmdir $$dir; \ fi; \ done; \ : # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/gnulib/progname.h0000664000175000017500000000373712161041522013533 00000000000000/* Program name management. Copyright (C) 2001-2004, 2006, 2009-2013 Free Software Foundation, Inc. Written by Bruno Haible , 2001. 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, see . */ #ifndef _PROGNAME_H #define _PROGNAME_H /* Programs using this file should do the following in main(): set_program_name (argv[0]); */ #ifdef __cplusplus extern "C" { #endif /* String containing name the program is called with. */ extern const char *program_name; /* Set program_name, based on argv[0]. argv0 must be a string allocated with indefinite extent, and must not be modified after this call. */ extern void set_program_name (const char *argv0); #if ENABLE_RELOCATABLE /* Set program_name, based on argv[0], and original installation prefix and directory, for relocatability. */ extern void set_program_name_and_installdir (const char *argv0, const char *orig_installprefix, const char *orig_installdir); #undef set_program_name #define set_program_name(ARG0) \ set_program_name_and_installdir (ARG0, INSTALLPREFIX, INSTALLDIR) /* Return the full pathname of the current executable, based on the earlier call to set_program_name_and_installdir. Return NULL if unknown. */ extern char *get_full_program_name (void); #endif #ifdef __cplusplus } #endif #endif /* _PROGNAME_H */ liblouis-2.5.3/gnulib/gettext.h0000664000175000017500000002341612161041522013403 00000000000000/* Convenience header for conditional use of GNU . Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2013 Free Software Foundation, Inc. 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, 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, see . */ #ifndef _LIBGETTEXT_H #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ #if ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by the gettext() and ngettext() macros. This is an alternative to calling textdomain(), and is useful for libraries. */ # ifdef DEFAULT_TEXT_DOMAIN # undef gettext # define gettext(Msgid) \ dgettext (DEFAULT_TEXT_DOMAIN, Msgid) # undef ngettext # define ngettext(Msgid1, Msgid2, N) \ dngettext (DEFAULT_TEXT_DOMAIN, Msgid1, Msgid2, N) # endif #else /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. We don't include as well because people using "gettext.h" will not include , and also including would fail on SunOS 4, whereas is OK. */ #if defined(__sun) # include #endif /* Many header files from the libstdc++ coming with g++ 3.3 or newer include , which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. */ #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3) # include # if (__GLIBC__ >= 2 && !defined __UCLIBC__) || _GLIBCXX_HAVE_LIBINTL_H # include # endif #endif /* Disabled NLS. The casts to 'const char *' serve the purpose of producing warnings for invalid uses of the value returned from these functions. On pre-ANSI systems without 'const', the config.h file is supposed to contain "#define const". */ # undef gettext # define gettext(Msgid) ((const char *) (Msgid)) # undef dgettext # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid)) # undef dcgettext # define dcgettext(Domainname, Msgid, Category) \ ((void) (Category), dgettext (Domainname, Msgid)) # undef ngettext # define ngettext(Msgid1, Msgid2, N) \ ((N) == 1 \ ? ((void) (Msgid2), (const char *) (Msgid1)) \ : ((void) (Msgid1), (const char *) (Msgid2))) # undef dngettext # define dngettext(Domainname, Msgid1, Msgid2, N) \ ((void) (Domainname), ngettext (Msgid1, Msgid2, N)) # undef dcngettext # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N)) # undef textdomain # define textdomain(Domainname) ((const char *) (Domainname)) # undef bindtextdomain # define bindtextdomain(Domainname, Dirname) \ ((void) (Domainname), (const char *) (Dirname)) # undef bind_textdomain_codeset # define bind_textdomain_codeset(Domainname, Codeset) \ ((void) (Domainname), (const char *) (Codeset)) #endif /* Prefer gnulib's setlocale override over libintl's setlocale override. */ #ifdef GNULIB_defined_setlocale # undef setlocale # define setlocale rpl_setlocale #endif /* A pseudo function call that serves as a marker for the automated extraction of messages, but does not call gettext(). The run-time translation is done at a different place in the code. The argument, String, should be a literal string. Concatenated strings and other string expressions won't work. The macro's expansion is not parenthesized, so that it is suitable as initializer for static 'char[]' or 'const char[]' variables. */ #define gettext_noop(String) String /* The separator between msgctxt and msgid in a .mo file. */ #define GETTEXT_CONTEXT_GLUE "\004" /* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a MSGID. MSGCTXT and MSGID must be string literals. MSGCTXT should be short and rarely need to change. The letter 'p' stands for 'particular' or 'special'. */ #ifdef DEFAULT_TEXT_DOMAIN # define pgettext(Msgctxt, Msgid) \ pgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #else # define pgettext(Msgctxt, Msgid) \ pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #endif #define dpgettext(Domainname, Msgctxt, Msgid) \ pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category) #ifdef DEFAULT_TEXT_DOMAIN # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #else # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #endif #define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * pgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, int category) { const char *translation = dcgettext (domain, msg_ctxt_id, category); if (translation == msg_ctxt_id) return msgid; else return translation; } #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * npgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) { const char *translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); if (translation == msg_ctxt_id || translation == msgid_plural) return (n == 1 ? msgid : msgid_plural); else return translation; } /* The same thing extended for non-constant arguments. Here MSGCTXT and MSGID can be arbitrary expressions. But for string literals these macros are less efficient than those above. */ #include #if (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \ /* || __STDC_VERSION__ >= 199901L */ ) # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 1 #else # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 0 #endif #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS #include #endif #define pgettext_expr(Msgctxt, Msgid) \ dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES) #define dpgettext_expr(Domainname, Msgctxt, Msgid) \ dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * dcpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, int category) { size_t msgctxt_len = strlen (msgctxt) + 1; size_t msgid_len = strlen (msgid) + 1; const char *translation; #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof (buf) ? buf : (char *) malloc (msgctxt_len + msgid_len)); if (msg_ctxt_id != NULL) #endif { memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); msg_ctxt_id[msgctxt_len - 1] = '\004'; memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dcgettext (domain, msg_ctxt_id, category); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) free (msg_ctxt_id); #endif if (translation != msg_ctxt_id) return translation; } return msgid; } #define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) #define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * dcnpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) { size_t msgctxt_len = strlen (msgctxt) + 1; size_t msgid_len = strlen (msgid) + 1; const char *translation; #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof (buf) ? buf : (char *) malloc (msgctxt_len + msgid_len)); if (msg_ctxt_id != NULL) #endif { memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); msg_ctxt_id[msgctxt_len - 1] = '\004'; memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) free (msg_ctxt_id); #endif if (!(translation == msg_ctxt_id || translation == msgid_plural)) return translation; } return (n == 1 ? msgid : msgid_plural); } #endif /* _LIBGETTEXT_H */ liblouis-2.5.3/gnulib/stddef.in.h0000664000175000017500000000523212161041522013571 00000000000000/* A substitute for POSIX 2008 , for platforms that have issues. Copyright (C) 2009-2013 Free Software Foundation, Inc. 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, 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, see . */ /* Written by Eric Blake. */ /* * POSIX 2008 for platforms that have issues. * */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ #if defined __need_wchar_t || defined __need_size_t \ || defined __need_ptrdiff_t || defined __need_NULL \ || defined __need_wint_t /* Special invocation convention inside gcc header files. In particular, gcc provides a version of that blindly redefines NULL even when __need_wint_t was defined, even though wint_t is not normally provided by . Hence, we must remember if special invocation has ever been used to obtain wint_t, in which case we need to clean up NULL yet again. */ # if !(defined _@GUARD_PREFIX@_STDDEF_H && defined _GL_STDDEF_WINT_T) # ifdef __need_wint_t # undef _@GUARD_PREFIX@_STDDEF_H # define _GL_STDDEF_WINT_T # endif # @INCLUDE_NEXT@ @NEXT_STDDEF_H@ # endif #else /* Normal invocation convention. */ # ifndef _@GUARD_PREFIX@_STDDEF_H /* The include_next requires a split double-inclusion guard. */ # @INCLUDE_NEXT@ @NEXT_STDDEF_H@ # ifndef _@GUARD_PREFIX@_STDDEF_H # define _@GUARD_PREFIX@_STDDEF_H /* On NetBSD 5.0, the definition of NULL lacks proper parentheses. */ #if @REPLACE_NULL@ # undef NULL # ifdef __cplusplus /* ISO C++ says that the macro NULL must expand to an integer constant expression, hence '((void *) 0)' is not allowed in C++. */ # if __GNUG__ >= 3 /* GNU C++ has a __null macro that behaves like an integer ('int' or 'long') but has the same size as a pointer. Use that, to avoid warnings. */ # define NULL __null # else # define NULL 0L # endif # else # define NULL ((void *) 0) # endif #endif /* Some platforms lack wchar_t. */ #if !@HAVE_WCHAR_T@ # define wchar_t int #endif # endif /* _@GUARD_PREFIX@_STDDEF_H */ # endif /* _@GUARD_PREFIX@_STDDEF_H */ #endif /* __need_XXX */ liblouis-2.5.3/gnulib/getopt_int.h0000664000175000017500000001174212161041522014072 00000000000000/* Internal declarations for getopt. Copyright (C) 1989-1994, 1996-1999, 2001, 2003-2004, 2009-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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, see . */ #ifndef _GETOPT_INT_H #define _GETOPT_INT_H 1 #include extern int _getopt_internal (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, int __long_only, int __posixly_correct); /* Reentrant versions which can handle parsing multiple argument vectors at the same time. */ /* Describe how to deal with options that follow non-option ARGV-elements. If the caller did not specify anything, the default is REQUIRE_ORDER if the environment variable POSIXLY_CORRECT is defined, PERMUTE otherwise. REQUIRE_ORDER means don't recognize them as options; stop option processing when the first non-option is seen. This is what Unix does. This mode of operation is selected by either setting the environment variable POSIXLY_CORRECT, or using '+' as the first character of the list of option characters, or by calling getopt. PERMUTE is the default. We permute the contents of ARGV as we scan, so that eventually all the non-options are at the end. This allows options to be given in any order, even with programs that were not written to expect this. RETURN_IN_ORDER is an option available to programs that were written to expect options and other ARGV-elements in any order and that care about the ordering of the two. We describe each non-option ARGV-element as if it were the argument of an option with character code 1. Using '-' as the first character of the list of option characters selects this mode of operation. The special argument '--' forces an end of option-scanning regardless of the value of 'ordering'. In the case of RETURN_IN_ORDER, only '--' can cause 'getopt' to return -1 with 'optind' != ARGC. */ enum __ord { REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER }; /* Data type for reentrant functions. */ struct _getopt_data { /* These have exactly the same meaning as the corresponding global variables, except that they are used for the reentrant versions of getopt. */ int optind; int opterr; int optopt; char *optarg; /* Internal members. */ /* True if the internal members have been initialized. */ int __initialized; /* The next char to be scanned in the option-element in which the last option character we returned was found. This allows us to pick up the scan where we left off. If this is zero, or a null string, it means resume the scan by advancing to the next ARGV-element. */ char *__nextchar; /* See __ord above. */ enum __ord __ordering; /* If the POSIXLY_CORRECT environment variable is set or getopt was called. */ int __posixly_correct; /* Handle permutation of arguments. */ /* Describe the part of ARGV that contains non-options that have been skipped. 'first_nonopt' is the index in ARGV of the first of them; 'last_nonopt' is the index after the last of them. */ int __first_nonopt; int __last_nonopt; #if defined _LIBC && defined USE_NONOPTION_FLAGS int __nonoption_flags_max_len; int __nonoption_flags_len; #endif }; /* The initializer is necessary to set OPTIND and OPTERR to their default values and to clear the initialization flag. */ #define _GETOPT_DATA_INITIALIZER { 1, 1 } extern int _getopt_internal_r (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, int __long_only, struct _getopt_data *__data, int __posixly_correct); extern int _getopt_long_r (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, struct _getopt_data *__data); extern int _getopt_long_only_r (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, struct _getopt_data *__data); #endif /* getopt_int.h */ liblouis-2.5.3/gnulib/malloc.c0000664000175000017500000000273212161041522013157 00000000000000/* malloc() function that is glibc compatible. Copyright (C) 1997-1998, 2006-2007, 2009-2013 Free Software Foundation, Inc. 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, 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, see . */ /* written by Jim Meyering and Bruno Haible */ #define _GL_USE_STDLIB_ALLOC 1 #include /* Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h. */ #ifdef malloc # define NEED_MALLOC_GNU 1 # undef malloc /* Whereas the gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU. */ #elif GNULIB_MALLOC_GNU && !HAVE_MALLOC_GNU # define NEED_MALLOC_GNU 1 #endif #include #include /* Allocate an N-byte block of memory from the heap. If N is zero, allocate a 1-byte block. */ void * rpl_malloc (size_t n) { void *result; #if NEED_MALLOC_GNU if (n == 0) n = 1; #endif result = malloc (n); #if !HAVE_MALLOC_POSIX if (result == NULL) errno = ENOMEM; #endif return result; } liblouis-2.5.3/gnulib/m4/0000775000175000017500000000000012161044234012143 500000000000000liblouis-2.5.3/gnulib/m4/version-etc.m40000664000175000017500000000222612161041521014561 00000000000000# version-etc.m4 serial 1 # Copyright (C) 2009-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. dnl $1 - configure flag and define name dnl $2 - human readable description m4_define([gl_VERSION_ETC_FLAG], [dnl AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [$2])], [dnl case $withval in yes|no) ;; *) AC_DEFINE_UNQUOTED(AS_TR_CPP([PACKAGE_$1]), ["$withval"], [$2]) ;; esac ]) ]) AC_DEFUN([gl_VERSION_ETC], [dnl gl_VERSION_ETC_FLAG([packager], [String identifying the packager of this software]) gl_VERSION_ETC_FLAG([packager-version], [Packager-specific version information]) gl_VERSION_ETC_FLAG([packager-bug-reports], [Packager info for bug reports (URL/e-mail/...)]) if test "X$with_packager" = "X" && \ test "X$with_packager_version$with_packager_bug_reports" != "X" then AC_MSG_ERROR([The --with-packager-{bug-reports,version} options require --with-packager]) fi ]) liblouis-2.5.3/gnulib/m4/include_next.m40000664000175000017500000002542412161041521015011 00000000000000# include_next.m4 serial 23 dnl Copyright (C) 2006-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert and Derek Price. dnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER. dnl dnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to dnl 'include' otherwise. dnl dnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler dnl supports it in the special case that it is the first include directive in dnl the given file, or to 'include' otherwise. dnl dnl PRAGMA_SYSTEM_HEADER can be used in files that contain #include_next, dnl so as to avoid GCC warnings when the gcc option -pedantic is used. dnl '#pragma GCC system_header' has the same effect as if the file was found dnl through the include search path specified with '-isystem' options (as dnl opposed to the search path specified with '-I' options). Namely, gcc dnl does not warn about some things, and on some systems (Solaris and Interix) dnl __STDC__ evaluates to 0 instead of to 1. The latter is an undesired side dnl effect; we are therefore careful to use 'defined __STDC__' or '1' instead dnl of plain '__STDC__'. dnl dnl PRAGMA_COLUMNS can be used in files that override system header files, so dnl as to avoid compilation errors on HP NonStop systems when the gnulib file dnl is included by a system header file that does a "#pragma COLUMNS 80" (which dnl has the effect of truncating the lines of that file and all files that it dnl includes to 80 columns) and the gnulib file has lines longer than 80 dnl columns. AC_DEFUN([gl_INCLUDE_NEXT], [ AC_LANG_PREPROC_REQUIRE() AC_CACHE_CHECK([whether the preprocessor supports include_next], [gl_cv_have_include_next], [rm -rf conftestd1a conftestd1b conftestd2 mkdir conftestd1a conftestd1b conftestd2 dnl IBM C 9.0, 10.1 (original versions, prior to the 2009-01 updates) on dnl AIX 6.1 support include_next when used as first preprocessor directive dnl in a file, but not when preceded by another include directive. Check dnl for this bug by including . dnl Additionally, with this same compiler, include_next is a no-op when dnl used in a header file that was included by specifying its absolute dnl file name. Despite these two bugs, include_next is used in the dnl compiler's . By virtue of the second bug, we need to use dnl include_next as well in this case. cat < conftestd1a/conftest.h #define DEFINED_IN_CONFTESTD1 #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd1b/conftest.h #define DEFINED_IN_CONFTESTD1 #include #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd2/conftest.h #ifndef DEFINED_IN_CONFTESTD1 #error "include_next test doesn't work" #endif #define DEFINED_IN_CONFTESTD2 EOF gl_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2" dnl We intentionally avoid using AC_LANG_SOURCE here. AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include ]], [gl_cv_have_include_next=yes], [CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2" AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include ]], [gl_cv_have_include_next=buggy], [gl_cv_have_include_next=no]) ]) CPPFLAGS="$gl_save_CPPFLAGS" rm -rf conftestd1a conftestd1b conftestd2 ]) PRAGMA_SYSTEM_HEADER= if test $gl_cv_have_include_next = yes; then INCLUDE_NEXT=include_next INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next if test -n "$GCC"; then PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' fi else if test $gl_cv_have_include_next = buggy; then INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next else INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include fi fi AC_SUBST([INCLUDE_NEXT]) AC_SUBST([INCLUDE_NEXT_AS_FIRST_DIRECTIVE]) AC_SUBST([PRAGMA_SYSTEM_HEADER]) AC_CACHE_CHECK([whether system header files limit the line length], [gl_cv_pragma_columns], [dnl HP NonStop systems, which define __TANDEM, have this misfeature. AC_EGREP_CPP([choke me], [ #ifdef __TANDEM choke me #endif ], [gl_cv_pragma_columns=yes], [gl_cv_pragma_columns=no]) ]) if test $gl_cv_pragma_columns = yes; then PRAGMA_COLUMNS="#pragma COLUMNS 10000" else PRAGMA_COLUMNS= fi AC_SUBST([PRAGMA_COLUMNS]) ]) # gl_CHECK_NEXT_HEADERS(HEADER1 HEADER2 ...) # ------------------------------------------ # For each arg foo.h, if #include_next works, define NEXT_FOO_H to be # ''; otherwise define it to be # '"///usr/include/foo.h"', or whatever other absolute file name is suitable. # Also, if #include_next works as first preprocessing directive in a file, # define NEXT_AS_FIRST_DIRECTIVE_FOO_H to be ''; otherwise define it to # be # '"///usr/include/foo.h"', or whatever other absolute file name is suitable. # That way, a header file with the following line: # #@INCLUDE_NEXT@ @NEXT_FOO_H@ # or # #@INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ @NEXT_AS_FIRST_DIRECTIVE_FOO_H@ # behaves (after sed substitution) as if it contained # #include_next # even if the compiler does not support include_next. # The three "///" are to pacify Sun C 5.8, which otherwise would say # "warning: #include of /usr/include/... may be non-portable". # Use '""', not '<>', so that the /// cannot be confused with a C99 comment. # Note: This macro assumes that the header file is not empty after # preprocessing, i.e. it does not only define preprocessor macros but also # provides some type/enum definitions or function/variable declarations. # # This macro also checks whether each header exists, by invoking # AC_CHECK_HEADERS_ONCE or AC_CHECK_HEADERS on each argument. AC_DEFUN([gl_CHECK_NEXT_HEADERS], [ gl_NEXT_HEADERS_INTERNAL([$1], [check]) ]) # gl_NEXT_HEADERS(HEADER1 HEADER2 ...) # ------------------------------------ # Like gl_CHECK_NEXT_HEADERS, except do not check whether the headers exist. # This is suitable for headers like that are standardized by C89 # and therefore can be assumed to exist. AC_DEFUN([gl_NEXT_HEADERS], [ gl_NEXT_HEADERS_INTERNAL([$1], [assume]) ]) # The guts of gl_CHECK_NEXT_HEADERS and gl_NEXT_HEADERS. AC_DEFUN([gl_NEXT_HEADERS_INTERNAL], [ AC_REQUIRE([gl_INCLUDE_NEXT]) AC_REQUIRE([AC_CANONICAL_HOST]) m4_if([$2], [check], [AC_CHECK_HEADERS_ONCE([$1]) ]) dnl FIXME: gl_next_header and gl_header_exists must be used unquoted dnl until we can assume autoconf 2.64 or newer. m4_foreach_w([gl_HEADER_NAME], [$1], [AS_VAR_PUSHDEF([gl_next_header], [gl_cv_next_]m4_defn([gl_HEADER_NAME])) if test $gl_cv_have_include_next = yes; then AS_VAR_SET(gl_next_header, ['<'gl_HEADER_NAME'>']) else AC_CACHE_CHECK( [absolute name of <]m4_defn([gl_HEADER_NAME])[>], m4_defn([gl_next_header]), [m4_if([$2], [check], [AS_VAR_PUSHDEF([gl_header_exists], [ac_cv_header_]m4_defn([gl_HEADER_NAME])) if test AS_VAR_GET(gl_header_exists) = yes; then AS_VAR_POPDEF([gl_header_exists]) ]) AC_LANG_CONFTEST( [AC_LANG_SOURCE( [[#include <]]m4_dquote(m4_defn([gl_HEADER_NAME]))[[>]] )]) dnl AIX "xlc -E" and "cc -E" omit #line directives for header dnl files that contain only a #include of other header files and dnl no non-comment tokens of their own. This leads to a failure dnl to detect the absolute name of , , dnl and others. The workaround is to force preservation dnl of comments through option -C. This ensures all necessary dnl #line directives are present. GCC supports option -C as well. case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac changequote(,) case "$host_os" in mingw*) dnl For the sake of native Windows compilers (excluding gcc), dnl treat backslash as a directory separator, like /. dnl Actually, these compilers use a double-backslash as dnl directory separator, inside the dnl # line "filename" dnl directives. gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac dnl A sed expression that turns a string into a basic regular dnl expression, for use within "/.../". gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' changequote([,]) gl_header_literal_regex=`echo ']m4_defn([gl_HEADER_NAME])[' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ changequote(,)dnl s|^/[^/]|//&| changequote([,])dnl p q }' dnl eval is necessary to expand gl_absname_cpp. dnl Ultrix and Pyramid sh refuse to redirect output of eval, dnl so use subshell. AS_VAR_SET(gl_next_header, ['"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | sed -n "$gl_absolute_header_sed"`'"']) m4_if([$2], [check], [else AS_VAR_SET(gl_next_header, ['<'gl_HEADER_NAME'>']) fi ]) ]) fi AC_SUBST( AS_TR_CPP([NEXT_]m4_defn([gl_HEADER_NAME])), [AS_VAR_GET(gl_next_header)]) if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'gl_HEADER_NAME'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=AS_VAR_GET(gl_next_header) fi AC_SUBST( AS_TR_CPP([NEXT_AS_FIRST_DIRECTIVE_]m4_defn([gl_HEADER_NAME])), [$gl_next_as_first_directive]) AS_VAR_POPDEF([gl_next_header])]) ]) # Autoconf 2.68 added warnings for our use of AC_COMPILE_IFELSE; # this fallback is safe for all earlier autoconf versions. m4_define_default([AC_LANG_DEFINES_PROVIDED]) liblouis-2.5.3/gnulib/m4/off_t.m40000664000175000017500000000100612161041521013413 00000000000000# off_t.m4 serial 1 dnl Copyright (C) 2012-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Check whether to override the 'off_t' type. dnl Set WINDOWS_64_BIT_OFF_T. AC_DEFUN([gl_TYPE_OFF_T], [ m4_ifdef([gl_LARGEFILE], [ AC_REQUIRE([gl_LARGEFILE]) ], [ WINDOWS_64_BIT_OFF_T=0 ]) AC_SUBST([WINDOWS_64_BIT_OFF_T]) ]) liblouis-2.5.3/gnulib/m4/gnulib-common.m40000664000175000017500000003332112161041521015071 00000000000000# gnulib-common.m4 serial 33 dnl Copyright (C) 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # gl_COMMON # is expanded unconditionally through gnulib-tool magic. AC_DEFUN([gl_COMMON], [ dnl Use AC_REQUIRE here, so that the code is expanded once only. AC_REQUIRE([gl_00GNULIB]) AC_REQUIRE([gl_COMMON_BODY]) ]) AC_DEFUN([gl_COMMON_BODY], [ AH_VERBATIM([_Noreturn], [/* The _Noreturn keyword of C11. */ #if ! (defined _Noreturn \ || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__)) # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ || 0x5110 <= __SUNPRO_C) # define _Noreturn __attribute__ ((__noreturn__)) # elif defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn # endif #endif ]) AH_VERBATIM([isoc99_inline], [/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. __APPLE__ && __MACH__ test for Mac OS X. __APPLE_CC__ tests for the Apple compiler and its version. __STDC_VERSION__ tests for the C99 mode. */ #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ # define __GNUC_STDC_INLINE__ 1 #endif]) AH_VERBATIM([unused_parameter], [/* Define as a marker that can be attached to declarations that might not be used. This helps to reduce warnings, such as from GCC -Wunused-parameter. */ #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) # define _GL_UNUSED __attribute__ ((__unused__)) #else # define _GL_UNUSED #endif /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name is a misnomer outside of parameter lists. */ #define _UNUSED_PARAMETER_ _GL_UNUSED /* The __pure__ attribute was added in gcc 2.96. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__)) #else # define _GL_ATTRIBUTE_PURE /* empty */ #endif /* The __const__ attribute was added in gcc 2.95. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__)) #else # define _GL_ATTRIBUTE_CONST /* empty */ #endif ]) dnl Preparation for running test programs: dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not dnl to /dev/tty, so they can be redirected to log files. Such diagnostics dnl arise e.g., in the macros gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N. LIBC_FATAL_STDERR_=1 export LIBC_FATAL_STDERR_ ]) # gl_MODULE_INDICATOR_CONDITION # expands to a C preprocessor expression that evaluates to 1 or 0, depending # whether a gnulib module that has been requested shall be considered present # or not. m4_define([gl_MODULE_INDICATOR_CONDITION], [1]) # gl_MODULE_INDICATOR_SET_VARIABLE([modulename]) # sets the shell variable that indicates the presence of the given module to # a C preprocessor expression that will evaluate to 1. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE], [ gl_MODULE_INDICATOR_SET_VARIABLE_AUX( [GNULIB_[]m4_translit([[$1]], [abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])], [gl_MODULE_INDICATOR_CONDITION]) ]) # gl_MODULE_INDICATOR_SET_VARIABLE_AUX([variable]) # modifies the shell variable to include the gl_MODULE_INDICATOR_CONDITION. # The shell variable's value is a C preprocessor expression that evaluates # to 0 or 1. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX], [ m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1], [ dnl Simplify the expression VALUE || 1 to 1. $1=1 ], [gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1], [gl_MODULE_INDICATOR_CONDITION])]) ]) # gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([variable], [condition]) # modifies the shell variable to include the given condition. The shell # variable's value is a C preprocessor expression that evaluates to 0 or 1. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR], [ dnl Simplify the expression 1 || CONDITION to 1. if test "$[]$1" != 1; then dnl Simplify the expression 0 || CONDITION to CONDITION. if test "$[]$1" = 0; then $1=$2 else $1="($[]$1 || $2)" fi fi ]) # gl_MODULE_INDICATOR([modulename]) # defines a C macro indicating the presence of the given module # in a location where it can be used. # | Value | Value | # | in lib/ | in tests/ | # --------------------------------------------+---------+-----------+ # Module present among main modules: | 1 | 1 | # --------------------------------------------+---------+-----------+ # Module present among tests-related modules: | 0 | 1 | # --------------------------------------------+---------+-----------+ # Module not present at all: | 0 | 0 | # --------------------------------------------+---------+-----------+ AC_DEFUN([gl_MODULE_INDICATOR], [ AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]], [abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [gl_MODULE_INDICATOR_CONDITION], [Define to a C preprocessor expression that evaluates to 1 or 0, depending whether the gnulib module $1 shall be considered present.]) ]) # gl_MODULE_INDICATOR_FOR_TESTS([modulename]) # defines a C macro indicating the presence of the given module # in lib or tests. This is useful to determine whether the module # should be tested. # | Value | Value | # | in lib/ | in tests/ | # --------------------------------------------+---------+-----------+ # Module present among main modules: | 1 | 1 | # --------------------------------------------+---------+-----------+ # Module present among tests-related modules: | 1 | 1 | # --------------------------------------------+---------+-----------+ # Module not present at all: | 0 | 0 | # --------------------------------------------+---------+-----------+ AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [ AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]], [abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1], [Define to 1 when the gnulib module $1 should be tested.]) ]) # gl_ASSERT_NO_GNULIB_POSIXCHECK # asserts that there will never be a need to #define GNULIB_POSIXCHECK. # and thereby enables an optimization of configure and config.h. # Used by Emacs. AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK], [ dnl Override gl_WARN_ON_USE_PREPARE. dnl But hide this definition from 'aclocal'. AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], []) ]) # gl_ASSERT_NO_GNULIB_TESTS # asserts that there will be no gnulib tests in the scope of the configure.ac # and thereby enables an optimization of config.h. # Used by Emacs. AC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS], [ dnl Override gl_MODULE_INDICATOR_FOR_TESTS. AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], []) ]) # Test whether exists. # Set HAVE_FEATURES_H. AC_DEFUN([gl_FEATURES_H], [ AC_CHECK_HEADERS_ONCE([features.h]) if test $ac_cv_header_features_h = yes; then HAVE_FEATURES_H=1 else HAVE_FEATURES_H=0 fi AC_SUBST([HAVE_FEATURES_H]) ]) # m4_foreach_w # is a backport of autoconf-2.59c's m4_foreach_w. # Remove this macro when we can assume autoconf >= 2.60. m4_ifndef([m4_foreach_w], [m4_define([m4_foreach_w], [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])]) # AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH]) # ---------------------------------------------------- # Backport of autoconf-2.63b's macro. # Remove this macro when we can assume autoconf >= 2.64. m4_ifndef([AS_VAR_IF], [m4_define([AS_VAR_IF], [AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])]) # gl_PROG_CC_C99 # Modifies the value of the shell variable CC in an attempt to make $CC # understand ISO C99 source code. # This is like AC_PROG_CC_C99, except that # - AC_PROG_CC_C99 did not exist in Autoconf versions < 2.60, # - AC_PROG_CC_C99 does not mix well with AC_PROG_CC_STDC # , # but many more packages use AC_PROG_CC_STDC than AC_PROG_CC_C99 # . # Remaining problems: # - When AC_PROG_CC_STDC is invoked twice, it adds the C99 enabling options # to CC twice # . # - AC_PROG_CC_STDC is likely to change now that C11 is an ISO standard. AC_DEFUN([gl_PROG_CC_C99], [ dnl Change that version number to the minimum Autoconf version that supports dnl mixing AC_PROG_CC_C99 calls with AC_PROG_CC_STDC calls. m4_version_prereq([9.0], [AC_REQUIRE([AC_PROG_CC_C99])], [AC_REQUIRE([AC_PROG_CC_STDC])]) ]) # gl_PROG_AR_RANLIB # Determines the values for AR, ARFLAGS, RANLIB that fit with the compiler. # The user can set the variables AR, ARFLAGS, RANLIB if he wants to override # the values. AC_DEFUN([gl_PROG_AR_RANLIB], [ dnl Minix 3 comes with two toolchains: The Amsterdam Compiler Kit compiler dnl as "cc", and GCC as "gcc". They have different object file formats and dnl library formats. In particular, the GNU binutils programs ar, ranlib dnl produce libraries that work only with gcc, not with cc. AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([for Minix Amsterdam compiler], [gl_cv_c_amsterdam_compiler], [ AC_EGREP_CPP([Amsterdam], [ #ifdef __ACK__ Amsterdam #endif ], [gl_cv_c_amsterdam_compiler=yes], [gl_cv_c_amsterdam_compiler=no]) ]) if test -z "$AR"; then if test $gl_cv_c_amsterdam_compiler = yes; then AR='cc -c.a' if test -z "$ARFLAGS"; then ARFLAGS='-o' fi else dnl Use the Automake-documented default values for AR and ARFLAGS, dnl but prefer ${host}-ar over ar (useful for cross-compiling). AC_CHECK_TOOL([AR], [ar], [ar]) if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi else if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi AC_SUBST([AR]) AC_SUBST([ARFLAGS]) if test -z "$RANLIB"; then if test $gl_cv_c_amsterdam_compiler = yes; then RANLIB=':' else dnl Use the ranlib program if it is available. AC_PROG_RANLIB fi fi AC_SUBST([RANLIB]) ]) # AC_PROG_MKDIR_P # is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix # for interoperability with automake-1.9.6 from autoconf-2.62. # Remove this macro when we can assume autoconf >= 2.62 or # autoconf >= 2.60 && automake >= 1.10. # AC_AUTOCONF_VERSION was introduced in 2.62, so use that as the witness. m4_ifndef([AC_AUTOCONF_VERSION],[ m4_ifdef([AC_PROG_MKDIR_P], [ dnl For automake-1.9.6 && autoconf < 2.62: Ensure MKDIR_P is AC_SUBSTed. m4_define([AC_PROG_MKDIR_P], m4_defn([AC_PROG_MKDIR_P])[ AC_SUBST([MKDIR_P])])], [ dnl For autoconf < 2.60: Backport of AC_PROG_MKDIR_P. AC_DEFUN_ONCE([AC_PROG_MKDIR_P], [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake MKDIR_P='$(mkdir_p)' AC_SUBST([MKDIR_P])])]) ]) # AC_C_RESTRICT # This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61, # so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++ # works. # This definition can be removed once autoconf >= 2.62 can be assumed. # AC_AUTOCONF_VERSION was introduced in 2.62, so use that as the witness. m4_ifndef([AC_AUTOCONF_VERSION],[ AC_DEFUN([AC_C_RESTRICT], [AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict], [ac_cv_c_restrict=no # The order here caters to the fact that C++ does not require restrict. for ac_kw in __restrict __restrict__ _Restrict restrict; do AC_COMPILE_IFELSE([AC_LANG_PROGRAM( [[typedef int * int_ptr; int foo (int_ptr $ac_kw ip) { return ip[0]; }]], [[int s[1]; int * $ac_kw t = s; t[0] = 0; return foo(t)]])], [ac_cv_c_restrict=$ac_kw]) test "$ac_cv_c_restrict" != no && break done ]) AH_VERBATIM([restrict], [/* Define to the equivalent of the C99 'restrict' keyword, or to nothing if this is not supported. Do not define if restrict is supported directly. */ #undef restrict /* Work around a bug in Sun C++: it does not support _Restrict, even though the corresponding Sun C compiler does, which causes "#define restrict _Restrict" in the previous line. Perhaps some future version of Sun C++ will work with _Restrict; if so, it'll probably define __RESTRICT, just as Sun C does. */ #if defined __SUNPRO_CC && !defined __RESTRICT # define _Restrict #endif]) case $ac_cv_c_restrict in restrict) ;; no) AC_DEFINE([restrict], []) ;; *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;; esac ]) ]) # gl_BIGENDIAN # is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd. # Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some # macros invoke AC_C_BIGENDIAN with arguments. AC_DEFUN([gl_BIGENDIAN], [ AC_C_BIGENDIAN ]) # gl_CACHE_VAL_SILENT(cache-id, command-to-set-it) # is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not # output a spurious "(cached)" mark in the midst of other configure output. # This macro should be used instead of AC_CACHE_VAL when it is not surrounded # by an AC_MSG_CHECKING/AC_MSG_RESULT pair. AC_DEFUN([gl_CACHE_VAL_SILENT], [ saved_as_echo_n="$as_echo_n" as_echo_n=':' AC_CACHE_VAL([$1], [$2]) as_echo_n="$saved_as_echo_n" ]) liblouis-2.5.3/gnulib/m4/onceonly.m40000664000175000017500000001062712161041521014155 00000000000000# onceonly.m4 serial 9 dnl Copyright (C) 2002-2003, 2005-2006, 2008-2013 Free Software Foundation, dnl Inc. dnl dnl This file is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 3 of the License, or dnl (at your option) any later version. dnl dnl This file is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this file. If not, see . dnl dnl As a special exception to the GNU General Public License, dnl this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl This file defines some "once only" variants of standard autoconf macros. dnl AC_CHECK_HEADERS_ONCE like AC_CHECK_HEADERS dnl AC_CHECK_FUNCS_ONCE like AC_CHECK_FUNCS dnl AC_CHECK_DECLS_ONCE like AC_CHECK_DECLS dnl AC_REQUIRE([AC_FUNC_STRCOLL]) like AC_FUNC_STRCOLL dnl The advantage is that the check for each of the headers/functions/decls dnl will be put only once into the 'configure' file. It keeps the size of dnl the 'configure' file down, and avoids redundant output when 'configure' dnl is run. dnl The drawback is that the checks cannot be conditionalized. If you write dnl if some_condition; then gl_CHECK_HEADERS(stdlib.h); fi dnl inside an AC_DEFUNed function, the gl_CHECK_HEADERS macro call expands to dnl empty, and the check will be inserted before the body of the AC_DEFUNed dnl function. dnl The original code implemented AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE dnl in terms of AC_DEFUN and AC_REQUIRE. This implementation uses diversions to dnl named sections DEFAULTS and INIT_PREPARE in order to check all requested dnl headers at once, thus reducing the size of 'configure'. It is known to work dnl with autoconf 2.57..2.62 at least . The size reduction is ca. 9%. dnl Autoconf version 2.59 plus gnulib is required; this file is not needed dnl with Autoconf 2.60 or greater. But note that autoconf's implementation of dnl AC_CHECK_DECLS_ONCE expects a comma-separated list of symbols as first dnl argument! AC_PREREQ([2.59]) # AC_CHECK_HEADERS_ONCE(HEADER1 HEADER2 ...) is a once-only variant of # AC_CHECK_HEADERS(HEADER1 HEADER2 ...). AC_DEFUN([AC_CHECK_HEADERS_ONCE], [ : m4_foreach_w([gl_HEADER_NAME], [$1], [ AC_DEFUN([gl_CHECK_HEADER_]m4_quote(m4_translit(gl_HEADER_NAME, [./-], [___])), [ m4_divert_text([INIT_PREPARE], [gl_header_list="$gl_header_list gl_HEADER_NAME"]) gl_HEADERS_EXPANSION AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])), [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.]) ]) AC_REQUIRE([gl_CHECK_HEADER_]m4_quote(m4_translit(gl_HEADER_NAME, [./-], [___]))) ]) ]) m4_define([gl_HEADERS_EXPANSION], [ m4_divert_text([DEFAULTS], [gl_header_list=]) AC_CHECK_HEADERS([$gl_header_list]) m4_define([gl_HEADERS_EXPANSION], []) ]) # AC_CHECK_FUNCS_ONCE(FUNC1 FUNC2 ...) is a once-only variant of # AC_CHECK_FUNCS(FUNC1 FUNC2 ...). AC_DEFUN([AC_CHECK_FUNCS_ONCE], [ : m4_foreach_w([gl_FUNC_NAME], [$1], [ AC_DEFUN([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME]), [ m4_divert_text([INIT_PREPARE], [gl_func_list="$gl_func_list gl_FUNC_NAME"]) gl_FUNCS_EXPANSION AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])), [Define to 1 if you have the ']m4_defn([gl_FUNC_NAME])[' function.]) ]) AC_REQUIRE([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME])) ]) ]) m4_define([gl_FUNCS_EXPANSION], [ m4_divert_text([DEFAULTS], [gl_func_list=]) AC_CHECK_FUNCS([$gl_func_list]) m4_define([gl_FUNCS_EXPANSION], []) ]) # AC_CHECK_DECLS_ONCE(DECL1 DECL2 ...) is a once-only variant of # AC_CHECK_DECLS(DECL1, DECL2, ...). AC_DEFUN([AC_CHECK_DECLS_ONCE], [ : m4_foreach_w([gl_DECL_NAME], [$1], [ AC_DEFUN([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME]), [ AC_CHECK_DECLS(m4_defn([gl_DECL_NAME])) ]) AC_REQUIRE([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME])) ]) ]) liblouis-2.5.3/gnulib/m4/malloc.m40000664000175000017500000000627612161041521013603 00000000000000# malloc.m4 serial 14 dnl Copyright (C) 2007, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. m4_version_prereq([2.70], [] ,[ # This is taken from the following Autoconf patch: # http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=7fbb553727ed7e0e689a17594b58559ecf3ea6e9 AC_DEFUN([_AC_FUNC_MALLOC_IF], [ AC_REQUIRE([AC_HEADER_STDC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl for cross-compiles AC_CHECK_HEADERS([stdlib.h]) AC_CACHE_CHECK([for GNU libc compatible malloc], [ac_cv_func_malloc_0_nonnull], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif ]], [[return ! malloc (0);]]) ], [ac_cv_func_malloc_0_nonnull=yes], [ac_cv_func_malloc_0_nonnull=no], [case "$host_os" in # Guess yes on platforms where we know the result. *-gnu* | freebsd* | netbsd* | openbsd* \ | hpux* | solaris* | cygwin* | mingw*) ac_cv_func_malloc_0_nonnull=yes ;; # If we don't know, assume the worst. *) ac_cv_func_malloc_0_nonnull=no ;; esac ]) ]) AS_IF([test $ac_cv_func_malloc_0_nonnull = yes], [$1], [$2]) ])# _AC_FUNC_MALLOC_IF ]) # gl_FUNC_MALLOC_GNU # ------------------ # Test whether 'malloc (0)' is handled like in GNU libc, and replace malloc if # it is not. AC_DEFUN([gl_FUNC_MALLOC_GNU], [ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) dnl _AC_FUNC_MALLOC_IF is defined in Autoconf. _AC_FUNC_MALLOC_IF( [AC_DEFINE([HAVE_MALLOC_GNU], [1], [Define to 1 if your system has a GNU libc compatible 'malloc' function, and to 0 otherwise.])], [AC_DEFINE([HAVE_MALLOC_GNU], [0]) REPLACE_MALLOC=1 ]) ]) # gl_FUNC_MALLOC_POSIX # -------------------- # Test whether 'malloc' is POSIX compliant (sets errno to ENOMEM when it # fails), and replace malloc if it is not. AC_DEFUN([gl_FUNC_MALLOC_POSIX], [ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) AC_REQUIRE([gl_CHECK_MALLOC_POSIX]) if test $gl_cv_func_malloc_posix = yes; then AC_DEFINE([HAVE_MALLOC_POSIX], [1], [Define if the 'malloc' function is POSIX compliant.]) else REPLACE_MALLOC=1 fi ]) # Test whether malloc, realloc, calloc are POSIX compliant, # Set gl_cv_func_malloc_posix to yes or no accordingly. AC_DEFUN([gl_CHECK_MALLOC_POSIX], [ AC_CACHE_CHECK([whether malloc, realloc, calloc are POSIX compliant], [gl_cv_func_malloc_posix], [ dnl It is too dangerous to try to allocate a large amount of memory: dnl some systems go to their knees when you do that. So assume that dnl all Unix implementations of the function are POSIX compliant. AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[]], [[#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ choke me #endif ]])], [gl_cv_func_malloc_posix=yes], [gl_cv_func_malloc_posix=no]) ]) ]) liblouis-2.5.3/gnulib/m4/warn-on-use.m40000664000175000017500000000415412161041521014500 00000000000000# warn-on-use.m4 serial 5 dnl Copyright (C) 2010-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # gl_WARN_ON_USE_PREPARE(INCLUDES, NAMES) # --------------------------------------- # For each whitespace-separated element in the list of NAMES, define # HAVE_RAW_DECL_name if the function has a declaration among INCLUDES # even after being undefined as a macro. # # See warn-on-use.h for some hints on how to poison function names, as # well as ideas on poisoning global variables and macros. NAMES may # include global variables, but remember that only functions work with # _GL_WARN_ON_USE. Typically, INCLUDES only needs to list a single # header, but if the replacement header pulls in other headers because # some systems declare functions in the wrong header, then INCLUDES # should do likewise. # # It is generally safe to assume declarations for functions declared # in the intersection of C89 and C11 (such as printf) without # needing gl_WARN_ON_USE_PREPARE. AC_DEFUN([gl_WARN_ON_USE_PREPARE], [ m4_foreach_w([gl_decl], [$2], [AH_TEMPLATE([HAVE_RAW_DECL_]AS_TR_CPP(m4_defn([gl_decl])), [Define to 1 if ]m4_defn([gl_decl])[ is declared even after undefining macros.])])dnl dnl FIXME: gl_Symbol must be used unquoted until we can assume dnl autoconf 2.64 or newer. for gl_func in m4_flatten([$2]); do AS_VAR_PUSHDEF([gl_Symbol], [gl_cv_have_raw_decl_$gl_func])dnl AC_CACHE_CHECK([whether $gl_func is declared without a macro], gl_Symbol, [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$1], [@%:@undef $gl_func (void) $gl_func;])], [AS_VAR_SET(gl_Symbol, [yes])], [AS_VAR_SET(gl_Symbol, [no])])]) AS_VAR_IF(gl_Symbol, [yes], [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_RAW_DECL_$gl_func]), [1]) dnl shortcut - if the raw declaration exists, then set a cache dnl variable to allow skipping any later AC_CHECK_DECL efforts eval ac_cv_have_decl_$gl_func=yes]) AS_VAR_POPDEF([gl_Symbol])dnl done ]) liblouis-2.5.3/gnulib/m4/realloc.m40000664000175000017500000000475312161041521013753 00000000000000# realloc.m4 serial 13 dnl Copyright (C) 2007, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. m4_version_prereq([2.70], [] ,[ # This is taken from the following Autoconf patch: # http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=7fbb553727ed7e0e689a17594b58559ecf3ea6e9 AC_DEFUN([_AC_FUNC_REALLOC_IF], [ AC_REQUIRE([AC_HEADER_STDC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl for cross-compiles AC_CHECK_HEADERS([stdlib.h]) AC_CACHE_CHECK([for GNU libc compatible realloc], [ac_cv_func_realloc_0_nonnull], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *realloc (); #endif ]], [[return ! realloc (0, 0);]]) ], [ac_cv_func_realloc_0_nonnull=yes], [ac_cv_func_realloc_0_nonnull=no], [case "$host_os" in # Guess yes on platforms where we know the result. *-gnu* | freebsd* | netbsd* | openbsd* \ | hpux* | solaris* | cygwin* | mingw*) ac_cv_func_realloc_0_nonnull=yes ;; # If we don't know, assume the worst. *) ac_cv_func_realloc_0_nonnull=no ;; esac ]) ]) AS_IF([test $ac_cv_func_realloc_0_nonnull = yes], [$1], [$2]) ])# AC_FUNC_REALLOC ]) # gl_FUNC_REALLOC_GNU # ------------------- # Test whether 'realloc (0, 0)' is handled like in GNU libc, and replace # realloc if it is not. AC_DEFUN([gl_FUNC_REALLOC_GNU], [ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) dnl _AC_FUNC_REALLOC_IF is defined in Autoconf. _AC_FUNC_REALLOC_IF( [AC_DEFINE([HAVE_REALLOC_GNU], [1], [Define to 1 if your system has a GNU libc compatible 'realloc' function, and to 0 otherwise.])], [AC_DEFINE([HAVE_REALLOC_GNU], [0]) REPLACE_REALLOC=1 ]) ])# gl_FUNC_REALLOC_GNU # gl_FUNC_REALLOC_POSIX # --------------------- # Test whether 'realloc' is POSIX compliant (sets errno to ENOMEM when it # fails), and replace realloc if it is not. AC_DEFUN([gl_FUNC_REALLOC_POSIX], [ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) AC_REQUIRE([gl_CHECK_MALLOC_POSIX]) if test $gl_cv_func_malloc_posix = yes; then AC_DEFINE([HAVE_REALLOC_POSIX], [1], [Define if the 'realloc' function is POSIX compliant.]) else REPLACE_REALLOC=1 fi ]) liblouis-2.5.3/gnulib/m4/sys_types_h.m40000664000175000017500000000121212161041521014666 00000000000000# sys_types_h.m4 serial 4 dnl Copyright (C) 2011-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_SYS_TYPES_H], [ AC_REQUIRE([gl_SYS_TYPES_H_DEFAULTS]) gl_NEXT_HEADERS([sys/types.h]) dnl Ensure the type pid_t gets defined. AC_REQUIRE([AC_TYPE_PID_T]) dnl Ensure the type mode_t gets defined. AC_REQUIRE([AC_TYPE_MODE_T]) dnl Whether to override the 'off_t' type. AC_REQUIRE([gl_TYPE_OFF_T]) ]) AC_DEFUN([gl_SYS_TYPES_H_DEFAULTS], [ ]) liblouis-2.5.3/gnulib/m4/unistd_h.m40000664000175000017500000002143412161041521014142 00000000000000# unistd_h.m4 serial 66 dnl Copyright (C) 2006-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Written by Simon Josefsson, Bruno Haible. AC_DEFUN([gl_UNISTD_H], [ dnl Use AC_REQUIRE here, so that the default behavior below is expanded dnl once only, before all statements that occur in other macros. AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) gl_CHECK_NEXT_HEADERS([unistd.h]) if test $ac_cv_header_unistd_h = yes; then HAVE_UNISTD_H=1 else HAVE_UNISTD_H=0 fi AC_SUBST([HAVE_UNISTD_H]) dnl Ensure the type pid_t gets defined. AC_REQUIRE([AC_TYPE_PID_T]) dnl Determine WINDOWS_64_BIT_OFF_T. AC_REQUIRE([gl_TYPE_OFF_T]) dnl Check for declarations of anything we want to poison if the dnl corresponding gnulib module is not in use. gl_WARN_ON_USE_PREPARE([[ #if HAVE_UNISTD_H # include #endif /* Some systems declare various items in the wrong headers. */ #if !(defined __GLIBC__ && !defined __UCLIBC__) # include # include # include # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ # include # endif #endif ]], [chdir chown dup dup2 dup3 environ euidaccess faccessat fchdir fchownat fdatasync fsync ftruncate getcwd getdomainname getdtablesize getgroups gethostname getlogin getlogin_r getpagesize getusershell setusershell endusershell group_member isatty lchown link linkat lseek pipe pipe2 pread pwrite readlink readlinkat rmdir sethostname sleep symlink symlinkat ttyname_r unlink unlinkat usleep]) ]) AC_DEFUN([gl_UNISTD_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) dnl Define it also as a C macro, for the benefit of the unit tests. gl_MODULE_INDICATOR_FOR_TESTS([$1]) ]) AC_DEFUN([gl_UNISTD_H_DEFAULTS], [ GNULIB_CHDIR=0; AC_SUBST([GNULIB_CHDIR]) GNULIB_CHOWN=0; AC_SUBST([GNULIB_CHOWN]) GNULIB_CLOSE=0; AC_SUBST([GNULIB_CLOSE]) GNULIB_DUP=0; AC_SUBST([GNULIB_DUP]) GNULIB_DUP2=0; AC_SUBST([GNULIB_DUP2]) GNULIB_DUP3=0; AC_SUBST([GNULIB_DUP3]) GNULIB_ENVIRON=0; AC_SUBST([GNULIB_ENVIRON]) GNULIB_EUIDACCESS=0; AC_SUBST([GNULIB_EUIDACCESS]) GNULIB_FACCESSAT=0; AC_SUBST([GNULIB_FACCESSAT]) GNULIB_FCHDIR=0; AC_SUBST([GNULIB_FCHDIR]) GNULIB_FCHOWNAT=0; AC_SUBST([GNULIB_FCHOWNAT]) GNULIB_FDATASYNC=0; AC_SUBST([GNULIB_FDATASYNC]) GNULIB_FSYNC=0; AC_SUBST([GNULIB_FSYNC]) GNULIB_FTRUNCATE=0; AC_SUBST([GNULIB_FTRUNCATE]) GNULIB_GETCWD=0; AC_SUBST([GNULIB_GETCWD]) GNULIB_GETDOMAINNAME=0; AC_SUBST([GNULIB_GETDOMAINNAME]) GNULIB_GETDTABLESIZE=0; AC_SUBST([GNULIB_GETDTABLESIZE]) GNULIB_GETGROUPS=0; AC_SUBST([GNULIB_GETGROUPS]) GNULIB_GETHOSTNAME=0; AC_SUBST([GNULIB_GETHOSTNAME]) GNULIB_GETLOGIN=0; AC_SUBST([GNULIB_GETLOGIN]) GNULIB_GETLOGIN_R=0; AC_SUBST([GNULIB_GETLOGIN_R]) GNULIB_GETPAGESIZE=0; AC_SUBST([GNULIB_GETPAGESIZE]) GNULIB_GETUSERSHELL=0; AC_SUBST([GNULIB_GETUSERSHELL]) GNULIB_GROUP_MEMBER=0; AC_SUBST([GNULIB_GROUP_MEMBER]) GNULIB_ISATTY=0; AC_SUBST([GNULIB_ISATTY]) GNULIB_LCHOWN=0; AC_SUBST([GNULIB_LCHOWN]) GNULIB_LINK=0; AC_SUBST([GNULIB_LINK]) GNULIB_LINKAT=0; AC_SUBST([GNULIB_LINKAT]) GNULIB_LSEEK=0; AC_SUBST([GNULIB_LSEEK]) GNULIB_PIPE=0; AC_SUBST([GNULIB_PIPE]) GNULIB_PIPE2=0; AC_SUBST([GNULIB_PIPE2]) GNULIB_PREAD=0; AC_SUBST([GNULIB_PREAD]) GNULIB_PWRITE=0; AC_SUBST([GNULIB_PWRITE]) GNULIB_READ=0; AC_SUBST([GNULIB_READ]) GNULIB_READLINK=0; AC_SUBST([GNULIB_READLINK]) GNULIB_READLINKAT=0; AC_SUBST([GNULIB_READLINKAT]) GNULIB_RMDIR=0; AC_SUBST([GNULIB_RMDIR]) GNULIB_SETHOSTNAME=0; AC_SUBST([GNULIB_SETHOSTNAME]) GNULIB_SLEEP=0; AC_SUBST([GNULIB_SLEEP]) GNULIB_SYMLINK=0; AC_SUBST([GNULIB_SYMLINK]) GNULIB_SYMLINKAT=0; AC_SUBST([GNULIB_SYMLINKAT]) GNULIB_TTYNAME_R=0; AC_SUBST([GNULIB_TTYNAME_R]) GNULIB_UNISTD_H_NONBLOCKING=0; AC_SUBST([GNULIB_UNISTD_H_NONBLOCKING]) GNULIB_UNISTD_H_SIGPIPE=0; AC_SUBST([GNULIB_UNISTD_H_SIGPIPE]) GNULIB_UNLINK=0; AC_SUBST([GNULIB_UNLINK]) GNULIB_UNLINKAT=0; AC_SUBST([GNULIB_UNLINKAT]) GNULIB_USLEEP=0; AC_SUBST([GNULIB_USLEEP]) GNULIB_WRITE=0; AC_SUBST([GNULIB_WRITE]) dnl Assume proper GNU behavior unless another module says otherwise. HAVE_CHOWN=1; AC_SUBST([HAVE_CHOWN]) HAVE_DUP2=1; AC_SUBST([HAVE_DUP2]) HAVE_DUP3=1; AC_SUBST([HAVE_DUP3]) HAVE_EUIDACCESS=1; AC_SUBST([HAVE_EUIDACCESS]) HAVE_FACCESSAT=1; AC_SUBST([HAVE_FACCESSAT]) HAVE_FCHDIR=1; AC_SUBST([HAVE_FCHDIR]) HAVE_FCHOWNAT=1; AC_SUBST([HAVE_FCHOWNAT]) HAVE_FDATASYNC=1; AC_SUBST([HAVE_FDATASYNC]) HAVE_FSYNC=1; AC_SUBST([HAVE_FSYNC]) HAVE_FTRUNCATE=1; AC_SUBST([HAVE_FTRUNCATE]) HAVE_GETDTABLESIZE=1; AC_SUBST([HAVE_GETDTABLESIZE]) HAVE_GETGROUPS=1; AC_SUBST([HAVE_GETGROUPS]) HAVE_GETHOSTNAME=1; AC_SUBST([HAVE_GETHOSTNAME]) HAVE_GETLOGIN=1; AC_SUBST([HAVE_GETLOGIN]) HAVE_GETPAGESIZE=1; AC_SUBST([HAVE_GETPAGESIZE]) HAVE_GROUP_MEMBER=1; AC_SUBST([HAVE_GROUP_MEMBER]) HAVE_LCHOWN=1; AC_SUBST([HAVE_LCHOWN]) HAVE_LINK=1; AC_SUBST([HAVE_LINK]) HAVE_LINKAT=1; AC_SUBST([HAVE_LINKAT]) HAVE_PIPE=1; AC_SUBST([HAVE_PIPE]) HAVE_PIPE2=1; AC_SUBST([HAVE_PIPE2]) HAVE_PREAD=1; AC_SUBST([HAVE_PREAD]) HAVE_PWRITE=1; AC_SUBST([HAVE_PWRITE]) HAVE_READLINK=1; AC_SUBST([HAVE_READLINK]) HAVE_READLINKAT=1; AC_SUBST([HAVE_READLINKAT]) HAVE_SETHOSTNAME=1; AC_SUBST([HAVE_SETHOSTNAME]) HAVE_SLEEP=1; AC_SUBST([HAVE_SLEEP]) HAVE_SYMLINK=1; AC_SUBST([HAVE_SYMLINK]) HAVE_SYMLINKAT=1; AC_SUBST([HAVE_SYMLINKAT]) HAVE_UNLINKAT=1; AC_SUBST([HAVE_UNLINKAT]) HAVE_USLEEP=1; AC_SUBST([HAVE_USLEEP]) HAVE_DECL_ENVIRON=1; AC_SUBST([HAVE_DECL_ENVIRON]) HAVE_DECL_FCHDIR=1; AC_SUBST([HAVE_DECL_FCHDIR]) HAVE_DECL_FDATASYNC=1; AC_SUBST([HAVE_DECL_FDATASYNC]) HAVE_DECL_GETDOMAINNAME=1; AC_SUBST([HAVE_DECL_GETDOMAINNAME]) HAVE_DECL_GETLOGIN_R=1; AC_SUBST([HAVE_DECL_GETLOGIN_R]) HAVE_DECL_GETPAGESIZE=1; AC_SUBST([HAVE_DECL_GETPAGESIZE]) HAVE_DECL_GETUSERSHELL=1; AC_SUBST([HAVE_DECL_GETUSERSHELL]) HAVE_DECL_SETHOSTNAME=1; AC_SUBST([HAVE_DECL_SETHOSTNAME]) HAVE_DECL_TTYNAME_R=1; AC_SUBST([HAVE_DECL_TTYNAME_R]) HAVE_OS_H=0; AC_SUBST([HAVE_OS_H]) HAVE_SYS_PARAM_H=0; AC_SUBST([HAVE_SYS_PARAM_H]) REPLACE_CHOWN=0; AC_SUBST([REPLACE_CHOWN]) REPLACE_CLOSE=0; AC_SUBST([REPLACE_CLOSE]) REPLACE_DUP=0; AC_SUBST([REPLACE_DUP]) REPLACE_DUP2=0; AC_SUBST([REPLACE_DUP2]) REPLACE_FCHOWNAT=0; AC_SUBST([REPLACE_FCHOWNAT]) REPLACE_FTRUNCATE=0; AC_SUBST([REPLACE_FTRUNCATE]) REPLACE_GETCWD=0; AC_SUBST([REPLACE_GETCWD]) REPLACE_GETDOMAINNAME=0; AC_SUBST([REPLACE_GETDOMAINNAME]) REPLACE_GETLOGIN_R=0; AC_SUBST([REPLACE_GETLOGIN_R]) REPLACE_GETGROUPS=0; AC_SUBST([REPLACE_GETGROUPS]) REPLACE_GETPAGESIZE=0; AC_SUBST([REPLACE_GETPAGESIZE]) REPLACE_ISATTY=0; AC_SUBST([REPLACE_ISATTY]) REPLACE_LCHOWN=0; AC_SUBST([REPLACE_LCHOWN]) REPLACE_LINK=0; AC_SUBST([REPLACE_LINK]) REPLACE_LINKAT=0; AC_SUBST([REPLACE_LINKAT]) REPLACE_LSEEK=0; AC_SUBST([REPLACE_LSEEK]) REPLACE_PREAD=0; AC_SUBST([REPLACE_PREAD]) REPLACE_PWRITE=0; AC_SUBST([REPLACE_PWRITE]) REPLACE_READ=0; AC_SUBST([REPLACE_READ]) REPLACE_READLINK=0; AC_SUBST([REPLACE_READLINK]) REPLACE_RMDIR=0; AC_SUBST([REPLACE_RMDIR]) REPLACE_SLEEP=0; AC_SUBST([REPLACE_SLEEP]) REPLACE_SYMLINK=0; AC_SUBST([REPLACE_SYMLINK]) REPLACE_TTYNAME_R=0; AC_SUBST([REPLACE_TTYNAME_R]) REPLACE_UNLINK=0; AC_SUBST([REPLACE_UNLINK]) REPLACE_UNLINKAT=0; AC_SUBST([REPLACE_UNLINKAT]) REPLACE_USLEEP=0; AC_SUBST([REPLACE_USLEEP]) REPLACE_WRITE=0; AC_SUBST([REPLACE_WRITE]) UNISTD_H_HAVE_WINSOCK2_H=0; AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H]) UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0; AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS]) ]) liblouis-2.5.3/gnulib/m4/stdlib_h.m40000664000175000017500000001267412161041521014123 00000000000000# stdlib_h.m4 serial 41 dnl Copyright (C) 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_STDLIB_H], [ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) gl_NEXT_HEADERS([stdlib.h]) dnl Check for declarations of anything we want to poison if the dnl corresponding gnulib module is not in use, and which is not dnl guaranteed by C89. gl_WARN_ON_USE_PREPARE([[#include #if HAVE_SYS_LOADAVG_H # include #endif #if HAVE_RANDOM_H # include #endif ]], [_Exit atoll canonicalize_file_name getloadavg getsubopt grantpt initstate initstate_r mkdtemp mkostemp mkostemps mkstemp mkstemps posix_openpt ptsname ptsname_r random random_r realpath rpmatch setenv setstate setstate_r srandom srandom_r strtod strtoll strtoull unlockpt unsetenv]) ]) AC_DEFUN([gl_STDLIB_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) dnl Define it also as a C macro, for the benefit of the unit tests. gl_MODULE_INDICATOR_FOR_TESTS([$1]) ]) AC_DEFUN([gl_STDLIB_H_DEFAULTS], [ GNULIB__EXIT=0; AC_SUBST([GNULIB__EXIT]) GNULIB_ATOLL=0; AC_SUBST([GNULIB_ATOLL]) GNULIB_CALLOC_POSIX=0; AC_SUBST([GNULIB_CALLOC_POSIX]) GNULIB_CANONICALIZE_FILE_NAME=0; AC_SUBST([GNULIB_CANONICALIZE_FILE_NAME]) GNULIB_GETLOADAVG=0; AC_SUBST([GNULIB_GETLOADAVG]) GNULIB_GETSUBOPT=0; AC_SUBST([GNULIB_GETSUBOPT]) GNULIB_GRANTPT=0; AC_SUBST([GNULIB_GRANTPT]) GNULIB_MALLOC_POSIX=0; AC_SUBST([GNULIB_MALLOC_POSIX]) GNULIB_MBTOWC=0; AC_SUBST([GNULIB_MBTOWC]) GNULIB_MKDTEMP=0; AC_SUBST([GNULIB_MKDTEMP]) GNULIB_MKOSTEMP=0; AC_SUBST([GNULIB_MKOSTEMP]) GNULIB_MKOSTEMPS=0; AC_SUBST([GNULIB_MKOSTEMPS]) GNULIB_MKSTEMP=0; AC_SUBST([GNULIB_MKSTEMP]) GNULIB_MKSTEMPS=0; AC_SUBST([GNULIB_MKSTEMPS]) GNULIB_POSIX_OPENPT=0; AC_SUBST([GNULIB_POSIX_OPENPT]) GNULIB_PTSNAME=0; AC_SUBST([GNULIB_PTSNAME]) GNULIB_PTSNAME_R=0; AC_SUBST([GNULIB_PTSNAME_R]) GNULIB_PUTENV=0; AC_SUBST([GNULIB_PUTENV]) GNULIB_RANDOM=0; AC_SUBST([GNULIB_RANDOM]) GNULIB_RANDOM_R=0; AC_SUBST([GNULIB_RANDOM_R]) GNULIB_REALLOC_POSIX=0; AC_SUBST([GNULIB_REALLOC_POSIX]) GNULIB_REALPATH=0; AC_SUBST([GNULIB_REALPATH]) GNULIB_RPMATCH=0; AC_SUBST([GNULIB_RPMATCH]) GNULIB_SETENV=0; AC_SUBST([GNULIB_SETENV]) GNULIB_STRTOD=0; AC_SUBST([GNULIB_STRTOD]) GNULIB_STRTOLL=0; AC_SUBST([GNULIB_STRTOLL]) GNULIB_STRTOULL=0; AC_SUBST([GNULIB_STRTOULL]) GNULIB_SYSTEM_POSIX=0; AC_SUBST([GNULIB_SYSTEM_POSIX]) GNULIB_UNLOCKPT=0; AC_SUBST([GNULIB_UNLOCKPT]) GNULIB_UNSETENV=0; AC_SUBST([GNULIB_UNSETENV]) GNULIB_WCTOMB=0; AC_SUBST([GNULIB_WCTOMB]) dnl Assume proper GNU behavior unless another module says otherwise. HAVE__EXIT=1; AC_SUBST([HAVE__EXIT]) HAVE_ATOLL=1; AC_SUBST([HAVE_ATOLL]) HAVE_CANONICALIZE_FILE_NAME=1; AC_SUBST([HAVE_CANONICALIZE_FILE_NAME]) HAVE_DECL_GETLOADAVG=1; AC_SUBST([HAVE_DECL_GETLOADAVG]) HAVE_GETSUBOPT=1; AC_SUBST([HAVE_GETSUBOPT]) HAVE_GRANTPT=1; AC_SUBST([HAVE_GRANTPT]) HAVE_MKDTEMP=1; AC_SUBST([HAVE_MKDTEMP]) HAVE_MKOSTEMP=1; AC_SUBST([HAVE_MKOSTEMP]) HAVE_MKOSTEMPS=1; AC_SUBST([HAVE_MKOSTEMPS]) HAVE_MKSTEMP=1; AC_SUBST([HAVE_MKSTEMP]) HAVE_MKSTEMPS=1; AC_SUBST([HAVE_MKSTEMPS]) HAVE_POSIX_OPENPT=1; AC_SUBST([HAVE_POSIX_OPENPT]) HAVE_PTSNAME=1; AC_SUBST([HAVE_PTSNAME]) HAVE_PTSNAME_R=1; AC_SUBST([HAVE_PTSNAME_R]) HAVE_RANDOM=1; AC_SUBST([HAVE_RANDOM]) HAVE_RANDOM_H=1; AC_SUBST([HAVE_RANDOM_H]) HAVE_RANDOM_R=1; AC_SUBST([HAVE_RANDOM_R]) HAVE_REALPATH=1; AC_SUBST([HAVE_REALPATH]) HAVE_RPMATCH=1; AC_SUBST([HAVE_RPMATCH]) HAVE_SETENV=1; AC_SUBST([HAVE_SETENV]) HAVE_DECL_SETENV=1; AC_SUBST([HAVE_DECL_SETENV]) HAVE_STRTOD=1; AC_SUBST([HAVE_STRTOD]) HAVE_STRTOLL=1; AC_SUBST([HAVE_STRTOLL]) HAVE_STRTOULL=1; AC_SUBST([HAVE_STRTOULL]) HAVE_STRUCT_RANDOM_DATA=1; AC_SUBST([HAVE_STRUCT_RANDOM_DATA]) HAVE_SYS_LOADAVG_H=0; AC_SUBST([HAVE_SYS_LOADAVG_H]) HAVE_UNLOCKPT=1; AC_SUBST([HAVE_UNLOCKPT]) HAVE_DECL_UNSETENV=1; AC_SUBST([HAVE_DECL_UNSETENV]) REPLACE_CALLOC=0; AC_SUBST([REPLACE_CALLOC]) REPLACE_CANONICALIZE_FILE_NAME=0; AC_SUBST([REPLACE_CANONICALIZE_FILE_NAME]) REPLACE_MALLOC=0; AC_SUBST([REPLACE_MALLOC]) REPLACE_MBTOWC=0; AC_SUBST([REPLACE_MBTOWC]) REPLACE_MKSTEMP=0; AC_SUBST([REPLACE_MKSTEMP]) REPLACE_PTSNAME=0; AC_SUBST([REPLACE_PTSNAME]) REPLACE_PTSNAME_R=0; AC_SUBST([REPLACE_PTSNAME_R]) REPLACE_PUTENV=0; AC_SUBST([REPLACE_PUTENV]) REPLACE_RANDOM_R=0; AC_SUBST([REPLACE_RANDOM_R]) REPLACE_REALLOC=0; AC_SUBST([REPLACE_REALLOC]) REPLACE_REALPATH=0; AC_SUBST([REPLACE_REALPATH]) REPLACE_SETENV=0; AC_SUBST([REPLACE_SETENV]) REPLACE_STRTOD=0; AC_SUBST([REPLACE_STRTOD]) REPLACE_UNSETENV=0; AC_SUBST([REPLACE_UNSETENV]) REPLACE_WCTOMB=0; AC_SUBST([REPLACE_WCTOMB]) ]) liblouis-2.5.3/gnulib/m4/nocrash.m40000664000175000017500000001055512161041521013764 00000000000000# nocrash.m4 serial 4 dnl Copyright (C) 2005, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Based on libsigsegv, from Bruno Haible and Paolo Bonzini. AC_PREREQ([2.13]) dnl Expands to some code for use in .c programs that will cause the configure dnl test to exit instead of crashing. This is useful to avoid triggering dnl action from a background debugger and to avoid core dumps. dnl Usage: ... dnl ]GL_NOCRASH[ dnl ... dnl int main() { nocrash_init(); ... } AC_DEFUN([GL_NOCRASH],[[ #include #if defined __MACH__ && defined __APPLE__ /* Avoid a crash on Mac OS X. */ #include #include #include #include #include #include /* The exception port on which our thread listens. */ static mach_port_t our_exception_port; /* The main function of the thread listening for exceptions of type EXC_BAD_ACCESS. */ static void * mach_exception_thread (void *arg) { /* Buffer for a message to be received. */ struct { mach_msg_header_t head; mach_msg_body_t msgh_body; char data[1024]; } msg; mach_msg_return_t retval; /* Wait for a message on the exception port. */ retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg), our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL); if (retval != MACH_MSG_SUCCESS) abort (); exit (1); } static void nocrash_init (void) { mach_port_t self = mach_task_self (); /* Allocate a port on which the thread shall listen for exceptions. */ if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port) == KERN_SUCCESS) { /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html. */ if (mach_port_insert_right (self, our_exception_port, our_exception_port, MACH_MSG_TYPE_MAKE_SEND) == KERN_SUCCESS) { /* The exceptions we want to catch. Only EXC_BAD_ACCESS is interesting for us. */ exception_mask_t mask = EXC_MASK_BAD_ACCESS; /* Create the thread listening on the exception port. */ pthread_attr_t attr; pthread_t thread; if (pthread_attr_init (&attr) == 0 && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0 && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) { pthread_attr_destroy (&attr); /* Replace the exception port info for these exceptions with our own. Note that we replace the exception port for the entire task, not only for a particular thread. This has the effect that when our exception port gets the message, the thread specific exception port has already been asked, and we don't need to bother about it. See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html. */ task_set_exception_ports (self, mask, our_exception_port, EXCEPTION_DEFAULT, MACHINE_THREAD_STATE); } } } } #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* Avoid a crash on native Windows. */ #define WIN32_LEAN_AND_MEAN #include #include static LONG WINAPI exception_filter (EXCEPTION_POINTERS *ExceptionInfo) { switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { case EXCEPTION_ACCESS_VIOLATION: case EXCEPTION_IN_PAGE_ERROR: case EXCEPTION_STACK_OVERFLOW: case EXCEPTION_GUARD_PAGE: case EXCEPTION_PRIV_INSTRUCTION: case EXCEPTION_ILLEGAL_INSTRUCTION: case EXCEPTION_DATATYPE_MISALIGNMENT: case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: case EXCEPTION_NONCONTINUABLE_EXCEPTION: exit (1); } return EXCEPTION_CONTINUE_SEARCH; } static void nocrash_init (void) { SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter); } #else /* Avoid a crash on POSIX systems. */ #include /* A POSIX signal handler. */ static void exception_handler (int sig) { exit (1); } static void nocrash_init (void) { #ifdef SIGSEGV signal (SIGSEGV, exception_handler); #endif #ifdef SIGBUS signal (SIGBUS, exception_handler); #endif } #endif ]]) liblouis-2.5.3/gnulib/m4/getopt.m40000664000175000017500000003013412161041521013624 00000000000000# getopt.m4 serial 44 dnl Copyright (C) 2002-2006, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # Request a POSIX compliant getopt function. AC_DEFUN([gl_FUNC_GETOPT_POSIX], [ m4_divert_text([DEFAULTS], [gl_getopt_required=POSIX]) AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) AC_REQUIRE([gl_GETOPT_CHECK_HEADERS]) dnl Other modules can request the gnulib implementation of the getopt dnl functions unconditionally, by defining gl_REPLACE_GETOPT_ALWAYS. dnl argp.m4 does this. m4_ifdef([gl_REPLACE_GETOPT_ALWAYS], [ REPLACE_GETOPT=1 ], [ REPLACE_GETOPT=0 if test -n "$gl_replace_getopt"; then REPLACE_GETOPT=1 fi ]) if test $REPLACE_GETOPT = 1; then dnl Arrange for getopt.h to be created. gl_GETOPT_SUBSTITUTE_HEADER fi ]) # Request a POSIX compliant getopt function with GNU extensions (such as # options with optional arguments) and the functions getopt_long, # getopt_long_only. AC_DEFUN([gl_FUNC_GETOPT_GNU], [ m4_divert_text([INIT_PREPARE], [gl_getopt_required=GNU]) AC_REQUIRE([gl_FUNC_GETOPT_POSIX]) ]) # Determine whether to replace the entire getopt facility. AC_DEFUN([gl_GETOPT_CHECK_HEADERS], [ AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles AC_REQUIRE([AC_PROG_AWK]) dnl for awk that supports ENVIRON dnl Persuade Solaris to declare optarg, optind, opterr, optopt. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) gl_CHECK_NEXT_HEADERS([getopt.h]) if test $ac_cv_header_getopt_h = yes; then HAVE_GETOPT_H=1 else HAVE_GETOPT_H=0 fi AC_SUBST([HAVE_GETOPT_H]) gl_replace_getopt= dnl Test whether is available. if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then AC_CHECK_HEADERS([getopt.h], [], [gl_replace_getopt=yes]) fi dnl Test whether the function getopt_long is available. if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then AC_CHECK_FUNCS([getopt_long_only], [], [gl_replace_getopt=yes]) fi dnl POSIX 2008 does not specify leading '+' behavior, but see dnl http://austingroupbugs.net/view.php?id=191 for a recommendation on dnl the next version of POSIX. For now, we only guarantee leading '+' dnl behavior with getopt-gnu. if test -z "$gl_replace_getopt"; then AC_CACHE_CHECK([whether getopt is POSIX compatible], [gl_cv_func_getopt_posix], [ dnl Merging these three different test programs into a single one dnl would require a reset mechanism. On BSD systems, it can be done dnl through 'optreset'; on some others (glibc), it can be done by dnl setting 'optind' to 0; on others again (HP-UX, IRIX, OSF/1, dnl Solaris 9, musl libc), there is no such mechanism. if test $cross_compiling = no; then dnl Sanity check. Succeeds everywhere (except on MSVC, dnl which lacks and getopt() entirely). AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include #include int main () { static char program[] = "program"; static char a[] = "-a"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, a, foo, bar, NULL }; int c; c = getopt (4, argv, "ab"); if (!(c == 'a')) return 1; c = getopt (4, argv, "ab"); if (!(c == -1)) return 2; if (!(optind == 2)) return 3; return 0; } ]])], [gl_cv_func_getopt_posix=maybe], [gl_cv_func_getopt_posix=no]) if test $gl_cv_func_getopt_posix = maybe; then dnl Sanity check with '+'. Succeeds everywhere (except on MSVC, dnl which lacks and getopt() entirely). AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include #include int main () { static char program[] = "program"; static char donald[] = "donald"; static char p[] = "-p"; static char billy[] = "billy"; static char duck[] = "duck"; static char a[] = "-a"; static char bar[] = "bar"; char *argv[] = { program, donald, p, billy, duck, a, bar, NULL }; int c; c = getopt (7, argv, "+abp:q:"); if (!(c == -1)) return 4; if (!(strcmp (argv[0], "program") == 0)) return 5; if (!(strcmp (argv[1], "donald") == 0)) return 6; if (!(strcmp (argv[2], "-p") == 0)) return 7; if (!(strcmp (argv[3], "billy") == 0)) return 8; if (!(strcmp (argv[4], "duck") == 0)) return 9; if (!(strcmp (argv[5], "-a") == 0)) return 10; if (!(strcmp (argv[6], "bar") == 0)) return 11; if (!(optind == 1)) return 12; return 0; } ]])], [gl_cv_func_getopt_posix=maybe], [gl_cv_func_getopt_posix=no]) fi if test $gl_cv_func_getopt_posix = maybe; then dnl Detect Mac OS X 10.5, AIX 7.1, mingw bug. AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include #include int main () { static char program[] = "program"; static char ab[] = "-ab"; char *argv[3] = { program, ab, NULL }; if (getopt (2, argv, "ab:") != 'a') return 13; if (getopt (2, argv, "ab:") != '?') return 14; if (optopt != 'b') return 15; if (optind != 2) return 16; return 0; } ]])], [gl_cv_func_getopt_posix=yes], [gl_cv_func_getopt_posix=no]) fi else case "$host_os" in darwin* | aix* | mingw*) gl_cv_func_getopt_posix="guessing no";; *) gl_cv_func_getopt_posix="guessing yes";; esac fi ]) case "$gl_cv_func_getopt_posix" in *no) gl_replace_getopt=yes ;; esac fi if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then AC_CACHE_CHECK([for working GNU getopt function], [gl_cv_func_getopt_gnu], [# Even with POSIXLY_CORRECT, the GNU extension of leading '-' in the # optstring is necessary for programs like m4 that have POSIX-mandated # semantics for supporting options interspersed with files. # Also, since getopt_long is a GNU extension, we require optind=0. # Bash ties 'set -o posix' to a non-exported POSIXLY_CORRECT; # so take care to revert to the correct (non-)export state. dnl GNU Coding Standards currently allow awk but not env; besides, env dnl is ambiguous with environment values that contain newlines. gl_awk_probe='BEGIN { if ("POSIXLY_CORRECT" in ENVIRON) print "x" }' case ${POSIXLY_CORRECT+x}`$AWK "$gl_awk_probe" #include #include ]GL_NOCRASH[ ]], [[ int result = 0; nocrash_init(); /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw, and fails on Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10. */ { static char conftest[] = "conftest"; static char plus[] = "-+"; char *argv[3] = { conftest, plus, NULL }; opterr = 0; if (getopt (2, argv, "+a") != '?') result |= 1; } /* This code succeeds on glibc 2.8, mingw, and fails on Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x. */ { static char program[] = "program"; static char p[] = "-p"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, p, foo, bar, NULL }; optind = 1; if (getopt (4, argv, "p::") != 'p') result |= 2; else if (optarg != NULL) result |= 4; else if (getopt (4, argv, "p::") != -1) result |= 6; else if (optind != 2) result |= 8; } /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0. */ { static char program[] = "program"; static char foo[] = "foo"; static char p[] = "-p"; char *argv[] = { program, foo, p, NULL }; optind = 0; if (getopt (3, argv, "-p") != 1) result |= 16; else if (getopt (3, argv, "-p") != 'p') result |= 16; } /* This code fails on glibc 2.11. */ { static char program[] = "program"; static char b[] = "-b"; static char a[] = "-a"; char *argv[] = { program, b, a, NULL }; optind = opterr = 0; if (getopt (3, argv, "+:a:b") != 'b') result |= 32; else if (getopt (3, argv, "+:a:b") != ':') result |= 32; } /* This code dumps core on glibc 2.14. */ { static char program[] = "program"; static char w[] = "-W"; static char dummy[] = "dummy"; char *argv[] = { program, w, dummy, NULL }; optind = opterr = 1; if (getopt (3, argv, "W;") != 'W') result |= 64; } return result; ]])], [gl_cv_func_getopt_gnu=yes], [gl_cv_func_getopt_gnu=no], [dnl Cross compiling. Assume the worst, even on glibc platforms. gl_cv_func_getopt_gnu="guessing no" ]) case $gl_had_POSIXLY_CORRECT in exported) ;; yes) AS_UNSET([POSIXLY_CORRECT]); POSIXLY_CORRECT=1 ;; *) AS_UNSET([POSIXLY_CORRECT]) ;; esac ]) if test "$gl_cv_func_getopt_gnu" != yes; then gl_replace_getopt=yes else AC_CACHE_CHECK([for working GNU getopt_long function], [gl_cv_func_getopt_long_gnu], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include #include ]], [[static const struct option long_options[] = { { "xtremely-",no_argument, NULL, 1003 }, { "xtra", no_argument, NULL, 1001 }, { "xtreme", no_argument, NULL, 1002 }, { "xtremely", no_argument, NULL, 1003 }, { NULL, 0, NULL, 0 } }; /* This code fails on OpenBSD 5.0. */ { static char program[] = "program"; static char xtremel[] = "--xtremel"; char *argv[] = { program, xtremel, NULL }; int option_index; optind = 1; opterr = 0; if (getopt_long (2, argv, "", long_options, &option_index) != 1003) return 1; } return 0; ]])], [gl_cv_func_getopt_long_gnu=yes], [gl_cv_func_getopt_long_gnu=no], [dnl Cross compiling. Guess no on OpenBSD, yes otherwise. case "$host_os" in openbsd*) gl_cv_func_getopt_long_gnu="guessing no";; *) gl_cv_func_getopt_long_gnu="guessing yes";; esac ]) ]) case "$gl_cv_func_getopt_long_gnu" in *yes) ;; *) gl_replace_getopt=yes ;; esac fi fi ]) AC_DEFUN([gl_GETOPT_SUBSTITUTE_HEADER], [ GETOPT_H=getopt.h AC_DEFINE([__GETOPT_PREFIX], [[rpl_]], [Define to rpl_ if the getopt replacement functions and variables should be used.]) AC_SUBST([GETOPT_H]) ]) # Prerequisites of lib/getopt*. AC_DEFUN([gl_PREREQ_GETOPT], [ AC_CHECK_DECLS_ONCE([getenv]) ]) liblouis-2.5.3/gnulib/m4/stdarg.m40000664000175000017500000000540412161041521013610 00000000000000# stdarg.m4 serial 6 dnl Copyright (C) 2006, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Provide a working va_copy in combination with . AC_DEFUN([gl_STDARG_H], [ STDARG_H='' NEXT_STDARG_H='' AC_MSG_CHECKING([for va_copy]) AC_CACHE_VAL([gl_cv_func_va_copy], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[ #ifndef va_copy void (*func) (va_list, va_list) = va_copy; #endif ]])], [gl_cv_func_va_copy=yes], [gl_cv_func_va_copy=no])]) AC_MSG_RESULT([$gl_cv_func_va_copy]) if test $gl_cv_func_va_copy = no; then dnl Provide a substitute. dnl Usually a simple definition in is enough. Not so on AIX 5 dnl with some versions of the /usr/vac/bin/cc compiler. It has an dnl which does '#undef va_copy', leading to a missing va_copy symbol. For dnl this platform, we use an substitute. But we cannot use this dnl approach on other platforms, because often defines only dnl preprocessor macros and gl_ABSOLUTE_HEADER, gl_CHECK_NEXT_HEADERS do dnl not work in this situation. AC_EGREP_CPP([vaccine], [#if defined _AIX && !defined __GNUC__ AIX vaccine #endif ], [gl_aixcc=yes], [gl_aixcc=no]) if test $gl_aixcc = yes; then dnl Provide a substitute file. STDARG_H=stdarg.h gl_NEXT_HEADERS([stdarg.h]) dnl Fallback for the case when contains only macro definitions. if test "$gl_cv_next_stdarg_h" = '""'; then gl_cv_next_stdarg_h='"///usr/include/stdarg.h"' NEXT_STDARG_H="$gl_cv_next_stdarg_h" fi else dnl Provide a substitute in , either __va_copy or as a simple dnl assignment. gl_CACHE_VAL_SILENT([gl_cv_func___va_copy], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[ #ifndef __va_copy error, bail out #endif ]])], [gl_cv_func___va_copy=yes], [gl_cv_func___va_copy=no])]) if test $gl_cv_func___va_copy = yes; then AC_DEFINE([va_copy], [__va_copy], [Define as a macro for copying va_list variables.]) else AH_VERBATIM([gl_VA_COPY], [/* A replacement for va_copy, if needed. */ #define gl_va_copy(a,b) ((a) = (b))]) AC_DEFINE([va_copy], [gl_va_copy], [Define as a macro for copying va_list variables.]) fi fi fi AC_SUBST([STDARG_H]) AM_CONDITIONAL([GL_GENERATE_STDARG_H], [test -n "$STDARG_H"]) AC_SUBST([NEXT_STDARG_H]) ]) liblouis-2.5.3/gnulib/m4/stddef_h.m40000664000175000017500000000275512161041521014112 00000000000000dnl A placeholder for POSIX 2008 , for platforms that have issues. # stddef_h.m4 serial 4 dnl Copyright (C) 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_STDDEF_H], [ AC_REQUIRE([gl_STDDEF_H_DEFAULTS]) AC_REQUIRE([gt_TYPE_WCHAR_T]) STDDEF_H= if test $gt_cv_c_wchar_t = no; then HAVE_WCHAR_T=0 STDDEF_H=stddef.h fi AC_CACHE_CHECK([whether NULL can be used in arbitrary expressions], [gl_cv_decl_null_works], [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include int test[2 * (sizeof NULL == sizeof (void *)) -1]; ]])], [gl_cv_decl_null_works=yes], [gl_cv_decl_null_works=no])]) if test $gl_cv_decl_null_works = no; then REPLACE_NULL=1 STDDEF_H=stddef.h fi AC_SUBST([STDDEF_H]) AM_CONDITIONAL([GL_GENERATE_STDDEF_H], [test -n "$STDDEF_H"]) if test -n "$STDDEF_H"; then gl_NEXT_HEADERS([stddef.h]) fi ]) AC_DEFUN([gl_STDDEF_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_STDDEF_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) ]) AC_DEFUN([gl_STDDEF_H_DEFAULTS], [ dnl Assume proper GNU behavior unless another module says otherwise. REPLACE_NULL=0; AC_SUBST([REPLACE_NULL]) HAVE_WCHAR_T=1; AC_SUBST([HAVE_WCHAR_T]) ]) liblouis-2.5.3/gnulib/m4/ssize_t.m40000664000175000017500000000146312161041521014005 00000000000000# ssize_t.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2001-2003, 2006, 2010-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether ssize_t is defined. AC_DEFUN([gt_TYPE_SSIZE_T], [ AC_CACHE_CHECK([for ssize_t], [gt_cv_ssize_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[int x = sizeof (ssize_t *) + sizeof (ssize_t); return !x;]])], [gt_cv_ssize_t=yes], [gt_cv_ssize_t=no])]) if test $gt_cv_ssize_t = no; then AC_DEFINE([ssize_t], [int], [Define as a signed type of the same size as size_t.]) fi ]) liblouis-2.5.3/gnulib/m4/00gnulib.m40000664000175000017500000000252212161041521013742 00000000000000# 00gnulib.m4 serial 2 dnl Copyright (C) 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl This file must be named something that sorts before all other dnl gnulib-provided .m4 files. It is needed until such time as we can dnl assume Autoconf 2.64, with its improved AC_DEFUN_ONCE semantics. # AC_DEFUN_ONCE([NAME], VALUE) # ---------------------------- # Define NAME to expand to VALUE on the first use (whether by direct # expansion, or by AC_REQUIRE), and to nothing on all subsequent uses. # Avoid bugs in AC_REQUIRE in Autoconf 2.63 and earlier. This # definition is slower than the version in Autoconf 2.64, because it # can only use interfaces that existed since 2.59; but it achieves the # same effect. Quoting is necessary to avoid confusing Automake. m4_version_prereq([2.63.263], [], [m4_define([AC][_DEFUN_ONCE], [AC][_DEFUN([$1], [AC_REQUIRE([_gl_DEFUN_ONCE([$1])], [m4_indir([_gl_DEFUN_ONCE([$1])])])])]dnl [AC][_DEFUN([_gl_DEFUN_ONCE([$1])], [$2])])]) # gl_00GNULIB # ----------- # Witness macro that this file has been included. Needed to force # Automake to include this file prior to all other gnulib .m4 files. AC_DEFUN([gl_00GNULIB]) liblouis-2.5.3/gnulib/m4/extensions.m40000664000175000017500000001073712161041521014530 00000000000000# serial 12 -*- Autoconf -*- # Enable extensions on systems that normally disable them. # Copyright (C) 2003, 2006-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This definition of AC_USE_SYSTEM_EXTENSIONS is stolen from CVS # Autoconf. Perhaps we can remove this once we can assume Autoconf # 2.62 or later everywhere, but since CVS Autoconf mutates rapidly # enough in this area it's likely we'll need to redefine # AC_USE_SYSTEM_EXTENSIONS for quite some time. # If autoconf reports a warning # warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS # or warning: AC_RUN_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS # the fix is # 1) to ensure that AC_USE_SYSTEM_EXTENSIONS is never directly invoked # but always AC_REQUIREd, # 2) to ensure that for each occurrence of # AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) # or # AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) # the corresponding gnulib module description has 'extensions' among # its dependencies. This will ensure that the gl_USE_SYSTEM_EXTENSIONS # invocation occurs in gl_EARLY, not in gl_INIT. # AC_USE_SYSTEM_EXTENSIONS # ------------------------ # Enable extensions on systems that normally disable them, # typically due to standards-conformance issues. # Remember that #undef in AH_VERBATIM gets replaced with #define by # AC_DEFINE. The goal here is to define all known feature-enabling # macros, then, if reports of conflicts are made, disable macros that # cause problems on some platforms (such as __EXTENSIONS__). AC_DEFUN_ONCE([AC_USE_SYSTEM_EXTENSIONS], [AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl AC_BEFORE([$0], [AC_RUN_IFELSE])dnl AC_REQUIRE([AC_CANONICAL_HOST]) AC_CHECK_HEADER([minix/config.h], [MINIX=yes], [MINIX=]) if test "$MINIX" = yes; then AC_DEFINE([_POSIX_SOURCE], [1], [Define to 1 if you need to in order for 'stat' and other things to work.]) AC_DEFINE([_POSIX_1_SOURCE], [2], [Define to 2 if the system does not provide POSIX.1 features except with this defined.]) AC_DEFINE([_MINIX], [1], [Define to 1 if on MINIX.]) fi dnl HP-UX 11.11 defines mbstate_t only if _XOPEN_SOURCE is defined to 500, dnl regardless of whether the flags -Ae or _D_HPUX_SOURCE=1 are already dnl provided. case "$host_os" in hpux*) AC_DEFINE([_XOPEN_SOURCE], [500], [Define to 500 only on HP-UX.]) ;; esac AH_VERBATIM([__EXTENSIONS__], [/* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable general extensions on Mac OS X. */ #ifndef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif ]) AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__], [ac_cv_safe_to_define___extensions__], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ # define __EXTENSIONS__ 1 ]AC_INCLUDES_DEFAULT])], [ac_cv_safe_to_define___extensions__=yes], [ac_cv_safe_to_define___extensions__=no])]) test $ac_cv_safe_to_define___extensions__ = yes && AC_DEFINE([__EXTENSIONS__]) AC_DEFINE([_ALL_SOURCE]) AC_DEFINE([_DARWIN_C_SOURCE]) AC_DEFINE([_GNU_SOURCE]) AC_DEFINE([_POSIX_PTHREAD_SEMANTICS]) AC_DEFINE([_TANDEM_SOURCE]) ])# AC_USE_SYSTEM_EXTENSIONS # gl_USE_SYSTEM_EXTENSIONS # ------------------------ # Enable extensions on systems that normally disable them, # typically due to standards-conformance issues. AC_DEFUN_ONCE([gl_USE_SYSTEM_EXTENSIONS], [ dnl Require this macro before AC_USE_SYSTEM_EXTENSIONS. dnl gnulib does not need it. But if it gets required by third-party macros dnl after AC_USE_SYSTEM_EXTENSIONS is required, autoconf 2.62..2.63 emit a dnl warning: "AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS". dnl Note: We can do this only for one of the macros AC_AIX, AC_GNU_SOURCE, dnl AC_MINIX. If people still use AC_AIX or AC_MINIX, they are out of luck. AC_REQUIRE([AC_GNU_SOURCE]) AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) ]) liblouis-2.5.3/gnulib/m4/extern-inline.m40000664000175000017500000000454112161041521015106 00000000000000dnl 'extern inline' a la ISO C99. dnl Copyright 2012-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_EXTERN_INLINE], [ AH_VERBATIM([extern_inline], [/* _GL_INLINE is a portable alternative to ISO C99 plain 'inline'. _GL_EXTERN_INLINE is a portable alternative to 'extern inline'. _GL_INLINE_HEADER_BEGIN contains useful stuff to put in an include file, before uses of _GL_INLINE. It suppresses GCC's bogus "no previous prototype for 'FOO'" diagnostic, when FOO is an inline function in the header; see . _GL_INLINE_HEADER_END contains useful stuff to put in the same include file, after uses of _GL_INLINE. Suppress the use of extern inline on Apple's platforms, as Libc-825.25 (2012-09-19) is incompatible with it; see . Perhaps Apple will fix this some day. */ #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : 199901L <= __STDC_VERSION__) \ && !defined __APPLE__) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline #elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __APPLE__ # if __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif]) ]) liblouis-2.5.3/gnulib/m4/wchar_t.m40000664000175000017500000000146212161041521013753 00000000000000# wchar_t.m4 serial 4 (gettext-0.18.2) dnl Copyright (C) 2002-2003, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether has the 'wchar_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WCHAR_T], [ AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include wchar_t foo = (wchar_t)'\0';]], [[]])], [gt_cv_c_wchar_t=yes], [gt_cv_c_wchar_t=no])]) if test $gt_cv_c_wchar_t = yes; then AC_DEFINE([HAVE_WCHAR_T], [1], [Define if you have the 'wchar_t' type.]) fi ]) liblouis-2.5.3/gnulib/m4/gnulib-cache.m40000664000175000017500000000370712161041521014651 00000000000000# Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # # This file represents the specification of how gnulib-tool is used. # It acts as a cache: It is written and read by gnulib-tool. # In projects that use version control, this file is meant to be put under # version control, like the configure.ac and various Makefile.am files. # Specification in the form of a command-line invocation: # gnulib-tool --import --dir=. --local-dir=gnulib/override --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --no-conditional-dependencies --libtool --macro-prefix=gl getopt-gnu malloc-gnu progname realloc-gnu version-etc # Specification in the form of a few gnulib-tool.m4 macro invocations: gl_LOCAL_DIR([gnulib/override]) gl_MODULES([ getopt-gnu malloc-gnu progname realloc-gnu version-etc ]) gl_AVOID([]) gl_SOURCE_BASE([gnulib]) gl_M4_BASE([gnulib/m4]) gl_PO_BASE([]) gl_DOC_BASE([doc]) gl_TESTS_BASE([tests]) gl_LIB([libgnu]) gl_MAKEFILE_NAME([]) gl_LIBTOOL gl_MACRO_PREFIX([gl]) gl_PO_DOMAIN([]) gl_WITNESS_C_MACRO([]) liblouis-2.5.3/gnulib/m4/gnulib-comp.m40000664000175000017500000002471512161041521014546 00000000000000# DO NOT EDIT! GENERATED AUTOMATICALLY! # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # # This file represents the compiled summary of the specification in # gnulib-cache.m4. It lists the computed macro invocations that need # to be invoked from configure.ac. # In projects that use version control, this file can be treated like # other built files. # This macro should be invoked from ./configure.ac, in the section # "Checks for programs", right after AC_PROG_CC, and certainly before # any checks for libraries, header files, types and library functions. AC_DEFUN([gl_EARLY], [ m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace m4_pattern_allow([^gl_ES$])dnl a valid locale name m4_pattern_allow([^gl_LIBOBJS$])dnl a variable m4_pattern_allow([^gl_LTLIBOBJS$])dnl a variable AC_REQUIRE([gl_PROG_AR_RANLIB]) # Code from module extensions: AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) # Code from module extern-inline: # Code from module getopt-gnu: # Code from module getopt-posix: # Code from module gettext-h: # Code from module include_next: # Code from module malloc-gnu: # Code from module malloc-posix: # Code from module nocrash: # Code from module progname: # Code from module realloc-gnu: # Code from module realloc-posix: # Code from module snippet/_Noreturn: # Code from module snippet/arg-nonnull: # Code from module snippet/c++defs: # Code from module snippet/warn-on-use: # Code from module ssize_t: # Code from module stdarg: dnl Some compilers (e.g., AIX 5.3 cc) need to be in c99 mode dnl for the builtin va_copy to work. With Autoconf 2.60 or later, dnl gl_PROG_CC_C99 arranges for this. With older Autoconf gl_PROG_CC_C99 dnl shouldn't hurt, though installers are on their own to set c99 mode. gl_PROG_CC_C99 # Code from module stddef: # Code from module stdlib: # Code from module sys_types: # Code from module unistd: # Code from module version-etc: ]) # This macro should be invoked from ./configure.ac, in the section # "Check for header files, types and library functions". AC_DEFUN([gl_INIT], [ AM_CONDITIONAL([GL_COND_LIBTOOL], [true]) gl_cond_libtool=true gl_m4_base='gnulib/m4' m4_pushdef([AC_LIBOBJ], m4_defn([gl_LIBOBJ])) m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gl_REPLACE_FUNCS])) m4_pushdef([AC_LIBSOURCES], m4_defn([gl_LIBSOURCES])) m4_pushdef([gl_LIBSOURCES_LIST], []) m4_pushdef([gl_LIBSOURCES_DIR], []) gl_COMMON gl_source_base='gnulib' AC_REQUIRE([gl_EXTERN_INLINE]) gl_FUNC_GETOPT_GNU if test $REPLACE_GETOPT = 1; then AC_LIBOBJ([getopt]) AC_LIBOBJ([getopt1]) gl_PREREQ_GETOPT dnl Arrange for unistd.h to include getopt.h. GNULIB_GL_UNISTD_H_GETOPT=1 fi AC_SUBST([GNULIB_GL_UNISTD_H_GETOPT]) gl_MODULE_INDICATOR_FOR_TESTS([getopt-gnu]) gl_FUNC_GETOPT_POSIX if test $REPLACE_GETOPT = 1; then AC_LIBOBJ([getopt]) AC_LIBOBJ([getopt1]) gl_PREREQ_GETOPT dnl Arrange for unistd.h to include getopt.h. GNULIB_GL_UNISTD_H_GETOPT=1 fi AC_SUBST([GNULIB_GL_UNISTD_H_GETOPT]) AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) gl_FUNC_MALLOC_GNU if test $REPLACE_MALLOC = 1; then AC_LIBOBJ([malloc]) fi gl_MODULE_INDICATOR([malloc-gnu]) gl_FUNC_MALLOC_POSIX if test $REPLACE_MALLOC = 1; then AC_LIBOBJ([malloc]) fi gl_STDLIB_MODULE_INDICATOR([malloc-posix]) AC_CHECK_DECLS([program_invocation_name], [], [], [#include ]) AC_CHECK_DECLS([program_invocation_short_name], [], [], [#include ]) gl_FUNC_REALLOC_GNU if test $REPLACE_REALLOC = 1; then AC_LIBOBJ([realloc]) fi gl_MODULE_INDICATOR([realloc-gnu]) gl_FUNC_REALLOC_POSIX if test $REPLACE_REALLOC = 1; then AC_LIBOBJ([realloc]) fi gl_STDLIB_MODULE_INDICATOR([realloc-posix]) gt_TYPE_SSIZE_T gl_STDARG_H gl_STDDEF_H gl_STDLIB_H gl_SYS_TYPES_H AC_PROG_MKDIR_P gl_UNISTD_H gl_VERSION_ETC # End of code from modules m4_ifval(gl_LIBSOURCES_LIST, [ m4_syscmd([test ! -d ]m4_defn([gl_LIBSOURCES_DIR])[ || for gl_file in ]gl_LIBSOURCES_LIST[ ; do if test ! -r ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file ; then echo "missing file ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file" >&2 exit 1 fi done])dnl m4_if(m4_sysval, [0], [], [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ]) m4_popdef([gl_LIBSOURCES_DIR]) m4_popdef([gl_LIBSOURCES_LIST]) m4_popdef([AC_LIBSOURCES]) m4_popdef([AC_REPLACE_FUNCS]) m4_popdef([AC_LIBOBJ]) AC_CONFIG_COMMANDS_PRE([ gl_libobjs= gl_ltlibobjs= if test -n "$gl_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gl_libobjs="$gl_libobjs $i.$ac_objext" gl_ltlibobjs="$gl_ltlibobjs $i.lo" done fi AC_SUBST([gl_LIBOBJS], [$gl_libobjs]) AC_SUBST([gl_LTLIBOBJS], [$gl_ltlibobjs]) ]) gltests_libdeps= gltests_ltlibdeps= m4_pushdef([AC_LIBOBJ], m4_defn([gltests_LIBOBJ])) m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gltests_REPLACE_FUNCS])) m4_pushdef([AC_LIBSOURCES], m4_defn([gltests_LIBSOURCES])) m4_pushdef([gltests_LIBSOURCES_LIST], []) m4_pushdef([gltests_LIBSOURCES_DIR], []) gl_COMMON gl_source_base='tests' changequote(,)dnl gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS changequote([, ])dnl AC_SUBST([gltests_WITNESS]) gl_module_indicator_condition=$gltests_WITNESS m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$gl_module_indicator_condition]) m4_popdef([gl_MODULE_INDICATOR_CONDITION]) m4_ifval(gltests_LIBSOURCES_LIST, [ m4_syscmd([test ! -d ]m4_defn([gltests_LIBSOURCES_DIR])[ || for gl_file in ]gltests_LIBSOURCES_LIST[ ; do if test ! -r ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file ; then echo "missing file ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file" >&2 exit 1 fi done])dnl m4_if(m4_sysval, [0], [], [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ]) m4_popdef([gltests_LIBSOURCES_DIR]) m4_popdef([gltests_LIBSOURCES_LIST]) m4_popdef([AC_LIBSOURCES]) m4_popdef([AC_REPLACE_FUNCS]) m4_popdef([AC_LIBOBJ]) AC_CONFIG_COMMANDS_PRE([ gltests_libobjs= gltests_ltlibobjs= if test -n "$gltests_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gltests_libobjs="$gltests_libobjs $i.$ac_objext" gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" done fi AC_SUBST([gltests_LIBOBJS], [$gltests_libobjs]) AC_SUBST([gltests_LTLIBOBJS], [$gltests_ltlibobjs]) ]) ]) # Like AC_LIBOBJ, except that the module name goes # into gl_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gl_LIBOBJ], [ AS_LITERAL_IF([$1], [gl_LIBSOURCES([$1.c])])dnl gl_LIBOBJS="$gl_LIBOBJS $1.$ac_objext" ]) # Like AC_REPLACE_FUNCS, except that the module name goes # into gl_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gl_REPLACE_FUNCS], [ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl AC_CHECK_FUNCS([$1], , [gl_LIBOBJ($ac_func)]) ]) # Like AC_LIBSOURCES, except the directory where the source file is # expected is derived from the gnulib-tool parameterization, # and alloca is special cased (for the alloca-opt module). # We could also entirely rely on EXTRA_lib..._SOURCES. AC_DEFUN([gl_LIBSOURCES], [ m4_foreach([_gl_NAME], [$1], [ m4_if(_gl_NAME, [alloca.c], [], [ m4_define([gl_LIBSOURCES_DIR], [gnulib]) m4_append([gl_LIBSOURCES_LIST], _gl_NAME, [ ]) ]) ]) ]) # Like AC_LIBOBJ, except that the module name goes # into gltests_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gltests_LIBOBJ], [ AS_LITERAL_IF([$1], [gltests_LIBSOURCES([$1.c])])dnl gltests_LIBOBJS="$gltests_LIBOBJS $1.$ac_objext" ]) # Like AC_REPLACE_FUNCS, except that the module name goes # into gltests_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gltests_REPLACE_FUNCS], [ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl AC_CHECK_FUNCS([$1], , [gltests_LIBOBJ($ac_func)]) ]) # Like AC_LIBSOURCES, except the directory where the source file is # expected is derived from the gnulib-tool parameterization, # and alloca is special cased (for the alloca-opt module). # We could also entirely rely on EXTRA_lib..._SOURCES. AC_DEFUN([gltests_LIBSOURCES], [ m4_foreach([_gl_NAME], [$1], [ m4_if(_gl_NAME, [alloca.c], [], [ m4_define([gltests_LIBSOURCES_DIR], [tests]) m4_append([gltests_LIBSOURCES_LIST], _gl_NAME, [ ]) ]) ]) ]) # This macro records the list of files which have been installed by # gnulib-tool and may be removed by future gnulib-tool invocations. AC_DEFUN([gl_FILE_LIST], [ build-aux/snippet/_Noreturn.h build-aux/snippet/arg-nonnull.h build-aux/snippet/c++defs.h build-aux/snippet/warn-on-use.h lib/getopt.c lib/getopt.in.h lib/getopt1.c lib/getopt_int.h lib/gettext.h lib/malloc.c lib/progname.c lib/progname.h lib/realloc.c lib/stdarg.in.h lib/stddef.in.h lib/stdlib.in.h lib/sys_types.in.h lib/unistd.c lib/unistd.in.h lib/version-etc.c lib/version-etc.h m4/00gnulib.m4 m4/extensions.m4 m4/extern-inline.m4 m4/getopt.m4 m4/gnulib-common.m4 m4/include_next.m4 m4/malloc.m4 m4/nocrash.m4 m4/off_t.m4 m4/onceonly.m4 m4/realloc.m4 m4/ssize_t.m4 m4/stdarg.m4 m4/stddef_h.m4 m4/stdlib_h.m4 m4/sys_types_h.m4 m4/unistd_h.m4 m4/version-etc.m4 m4/warn-on-use.m4 m4/wchar_t.m4 ]) liblouis-2.5.3/gnulib/stdarg.in.h0000664000175000017500000000216212161041521013602 00000000000000/* Substitute for and wrapper around . Copyright (C) 2008-2013 Free Software Foundation, Inc. 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, 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, see . */ #ifndef _@GUARD_PREFIX@_STDARG_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_STDARG_H@ #ifndef _@GUARD_PREFIX@_STDARG_H #define _@GUARD_PREFIX@_STDARG_H #ifndef va_copy # define va_copy(a,b) ((a) = (b)) #endif #endif /* _@GUARD_PREFIX@_STDARG_H */ #endif /* _@GUARD_PREFIX@_STDARG_H */ liblouis-2.5.3/AUTHORS0000664000175000017500000000234712161041523011337 00000000000000John J. Boyer of JJB Software Dave Mielke and other BRLTTY team members Leon Ungier of ViewPlus Technologies John Gardner of ViewPlus Technologies Yuemei Sun of ViewPlus Technologies Mike Sivill of ViewPlus Technologies Eitan Isaacson Alastair Irving Christian Egli James Teh Michel Such Samuel Thibault Lars Bjørndal Carlos Ferreira Michael Whapples Birkir Gunnarsson Coscell Kao Peter Engström Juan Carlos Buño Suárez Mesar Hameed Timothy Lee Bert Frees Hammer Attila of IT Foundation for the Visually Impaired - Hungary Aaron Cannon Greg Kearney Joseph Lee Paul Wood David Reynolds Knut Arne Bjørndal Igor B. Poretsky liblouis-2.5.3/tools/0000775000175000017500000000000012161044234011503 500000000000000liblouis-2.5.3/tools/lou_trace.c0000664000175000017500000001747112161041523013554 00000000000000/* liblouis Braille Translation and Back-Translation Library Copyright (C) 2012 Swiss Library for the Blind, Visually Impaired and Print Disabled 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, see . */ #include "config.h" #include #include #include #include "louis.h" #include #include "progname.h" #include "version-etc.h" static const struct option longopts[] = { {"help", no_argument, NULL, 'h'}, {"version", no_argument, NULL, 'v'}, {NULL, 0, NULL, 0} }; const char version_etc_copyright[] = "Copyright %s %d Swiss Library for the Blind, Visually Impaired and Print Disabled."; #define AUTHORS "Bert Frees" static void print_help(void) { printf("\ Usage: %s [OPTIONS] TABLE[,TABLE,...]\n", program_name); fputs("\ Examine and debug Braille translation tables. This program allows you\n\ to inspect liblouis translation tables by printing out the list of\n\ applied translation rules for a given input.\n\n", stdout); fputs("\ -h, --help display this help and exit\n\ -v, --version display version information and exit\n\n", stdout); printf("Report bugs to %s.\n", PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf("Report %s bugs to: %s\n", PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf("%s home page: <%s>\n", PACKAGE_NAME, PACKAGE_URL); #endif } #define BUFSIZE 512 #define RULESSIZE 512 static char * get_input(void) { static char input_buffer[BUFSIZE]; size_t input_length; input_buffer[0] = 0; fgets(input_buffer, sizeof(input_buffer), stdin); input_length = strlen(input_buffer) - 1; if (input_length < 0) exit(0); input_buffer[input_length] = 0; return input_buffer; } static int get_wide_input(widechar * buffer) { return extParseChars(get_input(), buffer); } static char * print_chars(const widechar * buffer, int length) { static char chars[BUFSIZE]; strcpy(chars, &showString(buffer, length)[1]); chars[strlen(chars) - 1] = 0; return chars; } static char * print_dots(const widechar * buffer, int length) { static char dots[BUFSIZE]; strcpy(dots, showDots(buffer, length)); return dots; } static char * print_number(widechar c) { static char number[BUFSIZE]; sprintf(number, "%d", c); return number; } static char * print_attributes(unsigned int a) { static char attr[BUFSIZE]; strcpy(attr, showAttributes(a)); return attr; } static void append_char(char *destination, int *length, char source) { destination[(*length)++] = source; } static void append_string(char *destination, int *length, char *source) { strcpy(&destination[(*length)], source); (*length) += strlen(source); } static char * print_script(const widechar * buffer, int length) { static char script[BUFSIZE]; int i = 0; int j = 0; while (i < length) { switch (buffer[i]) { case pass_first: case pass_last: case pass_not: case pass_startReplace: case pass_endReplace: case pass_search: case pass_copy: case pass_omit: append_char(script, &j, buffer[i++]); break; case pass_lookback: append_char(script, &j, buffer[i++]); if (buffer[i] > 1) append_string(script, &j, print_number(buffer[i++])); break; case pass_string: append_char(script, &j, buffer[i]); append_string(script, &j, print_chars(&buffer[i + 2], buffer[i + 1])); append_char(script, &j, buffer[i]); i += (2 + buffer[i + 1]); break; case pass_dots: append_char(script, &j, buffer[i++]); append_string(script, &j, print_dots(&buffer[i + 1], buffer[i])); i += (1 + buffer[i]); break; case pass_eq: case pass_lt: case pass_gt: case pass_lteq: case pass_gteq: append_char(script, &j, '#'); append_string(script, &j, print_number(buffer[i + 1])); append_char(script, &j, buffer[i]); append_string(script, &j, print_number(buffer[i + 2])); i += 3; break; case pass_hyphen: case pass_plus: append_char(script, &j, '#'); append_string(script, &j, print_number(buffer[i + 1])); append_char(script, &j, buffer[i]); i += 2; break; case pass_attributes: append_char(script, &j, buffer[i]); append_string(script, &j, print_attributes(buffer[i + 1] << 16 | buffer[i + 2])); i += 3; if (buffer[i] == 1 && buffer[i + 1] == 1) { } else if (buffer[i] == 1 && buffer[i + 1] == 0xffff) append_char(script, &j, pass_until); else if (buffer[i] == buffer[i + 1]) append_string(script, &j, print_number(buffer[i])); else { append_string(script, &j, print_number(buffer[i])); append_char(script, &j, '-'); append_string(script, &j, print_number(buffer[i + 1])); } i += 2; break; case pass_endTest: append_char(script, &j, '\t'); i++; break; case pass_swap: case pass_groupstart: case pass_groupend: case pass_groupreplace: /* TBD */ default: i++; break; } } script[j] = 0; return script; } static void print_rule(const TranslationTableRule * rule) { const char *opcode = findOpcodeName(rule->opcode); char *chars; char *dots; char *script; switch (rule->opcode) { case CTO_Context: case CTO_Correct: case CTO_SwapCd: case CTO_SwapDd: case CTO_Pass2: case CTO_Pass3: case CTO_Pass4: script = print_script(&rule->charsdots[rule->charslen], rule->dotslen); printf("%s\t%s\n", opcode, script); break; default: chars = print_chars(rule->charsdots, rule->charslen); dots = print_dots(&rule->charsdots[rule->charslen], rule->dotslen); printf("%s\t%s\t%s\n", opcode, chars, dots); break; } } static void main_loop(char *table) { widechar inbuf[BUFSIZE]; widechar outbuf[BUFSIZE]; int inlen; int outlen; const TranslationTableRule **rules = malloc(512 * sizeof(TranslationTableRule)); int ruleslen; int i; while (1) { inlen = get_wide_input(inbuf); outlen = BUFSIZE; ruleslen = RULESSIZE; if (!trace_translate(table, inbuf, &inlen, outbuf, &outlen, NULL, NULL, NULL, NULL, NULL, rules, &ruleslen, 0)) break; printf("%s\n", print_chars(outbuf, outlen)); for (i = 0; i < ruleslen; i++) { printf("%d.\t", i + 1); print_rule(rules[i]); } } } int main(int argc, char **argv) { int optc; char *table; set_program_name(argv[0]); while ((optc = getopt_long(argc, argv, "hv", longopts, NULL)) != -1) { switch (optc) { case 'v': version_etc(stdout, program_name, PACKAGE_NAME, VERSION, AUTHORS, (char *) NULL); exit(EXIT_SUCCESS); break; case 'h': print_help(); exit(EXIT_SUCCESS); break; default: fprintf(stderr, "Try `%s --help' for more information.\n", program_name); exit(EXIT_FAILURE); break; } } if (optind != argc - 1) { if (optind < argc - 1) fprintf(stderr, "%s: extra operand: %s\n", program_name, argv[optind + 1]); else fprintf(stderr, "%s: no table specified\n", program_name); fprintf(stderr, "Try `%s --help' for more information.\n", program_name); exit(EXIT_FAILURE); } table = argv[optind]; if (!lou_getTable(table)) { lou_free(); exit(EXIT_FAILURE); } main_loop(table); lou_free(); exit(EXIT_SUCCESS); } liblouis-2.5.3/tools/lou_translate.c0000664000175000017500000001202212161041523014436 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com 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, see . Maintained by John J. Boyer john.boyer@jjb-software.com */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #include "liblouis.h" #include "louis.h" #include "progname.h" #include "version-etc.h" #define BUFSIZE MAXSTRING - 4 static int forward_flag = 0; static int backward_flag = 0; static const struct option longopts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'v' }, { "forward", no_argument, NULL, 'f' }, { "backward", no_argument, NULL, 'b' }, { NULL, 0, NULL, 0 } }; const char version_etc_copyright[] = "Copyright %s %d ViewPlus Technologies, Inc. and JJB Software, Inc."; #define AUTHORS "John J. Boyer" static void translate_input (int forward_translation, char *table_name) { char charbuf[BUFSIZE]; char *outputbuf; widechar inbuf[BUFSIZE]; widechar transbuf[BUFSIZE]; int inlen; int translen; int k; int ch = 0; int result; while (1) { translen = BUFSIZE; k = 0; while ((ch = getchar ()) != '\n' && ch != EOF && k < BUFSIZE) charbuf[k++] = ch; if (ch == EOF && k == 0) break; charbuf[k] = 0; inlen = extParseChars (charbuf, inbuf); if (forward_translation) result = lou_translateString (table_name, inbuf, &inlen, transbuf, &translen, NULL, NULL, 0); else result = lou_backTranslateString (table_name, inbuf, &inlen, transbuf, &translen, NULL, NULL, 0); if (!result) break; outputbuf = showString (transbuf, translen); k = strlen (outputbuf) - 1; outputbuf[k] = 0; printf ("%s\n", &outputbuf[1]); } lou_free (); } static void print_help (void) { printf ("\ Usage: %s [OPTIONS] TABLE[,TABLE,...]\n", program_name); fputs ("\ Translate whatever is on standard input and print it on standard\n\ output. It is intended for large-scale testing of the accuracy of\n\ Braille translation and back-translation.\n\n", stdout); fputs ("\ -h, --help display this help and exit\n\ -v, --version display version information and exit\n\ -f, --forward forward translation using the given table\n\ -b, --backward backward translation using the given table\n\ If neither -f nor -b are specified forward translation\n\ is assumed\n", stdout); printf ("\n"); printf ("Report bugs to %s.\n", PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf ("Report %s bugs to: %s\n", PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf ("%s home page: <%s>\n", PACKAGE_NAME, PACKAGE_URL); #endif } int main (int argc, char **argv) { int optc; set_program_name (argv[0]); while ((optc = getopt_long (argc, argv, "hvfb", longopts, NULL)) != -1) switch (optc) { /* --help and --version exit immediately, per GNU coding standards. */ case 'v': version_etc (stdout, program_name, PACKAGE_NAME, VERSION, AUTHORS, (char *) NULL); exit (EXIT_SUCCESS); break; case 'h': print_help (); exit (EXIT_SUCCESS); break; case 'f': forward_flag = 1; break; case 'b': backward_flag = 1; break; default: fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); break; } if (forward_flag && backward_flag) { fprintf (stderr, "%s: specify either -f or -b but not both\n", program_name); fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); } if (optind != argc - 1) { /* Print error message and exit. */ if (optind < argc - 1) fprintf (stderr, "%s: extra operand: %s\n", program_name, argv[optind + 1]); else fprintf (stderr, "%s: no table specified\n", program_name); fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); } /* assume forward translation by default */ translate_input (!backward_flag, argv[optind]); exit (EXIT_SUCCESS); } liblouis-2.5.3/tools/Makefile.am0000664000175000017500000000117112161041523013455 00000000000000AM_CPPFLAGS = \ -I$(top_srcdir)/liblouis \ -I$(top_srcdir)/gnulib LDADD = \ $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la \ $(LTLIBINTL) bin_PROGRAMS= \ lou_allround \ lou_checkhyphens \ lou_checktable \ lou_debug \ lou_translate \ lou_trace lou_allround_SOURCES= \ lou_allround.c lou_checkhyphens_SOURCES= \ lou_checkhyphens.c lou_checktable_SOURCES = \ lou_checktable.c lou_debug_SOURCES = \ lou_debug.c lou_translate_SOURCES = \ lou_translate.c lou_trace_SOURCES = \ lou_trace.c # distribute the harness generator but do not install it dist_bin_SCRIPTS = lou_harnessGenerator liblouis-2.5.3/tools/lou_harnessGenerator0000664000175000017500000003365312161041523015547 00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Liblouis test harness generator # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # # Copyright (c) 2012, Hammer Attila, Mesar Hameed. """Liblouis test harness generator: This is a tool to help to generate harness files. You are expected to read the generated output, paying special attension to the "input" and "output" lines, and correct the fields, according to the formal braille standard for your table. The reason why they might contain errors is because the liblouis tables may not be conforming with the formal braille standard, and the purpose of the harness files is to catch these edge cases so that the liblouis tables can be improved. For input examples please have a look at the files in the tests/harnessSources directory at the top of the Liblouis source tree. @author: Hammer Attila @author: Mesar Hameed """ import os, sys, argparse, json from louis import translate, hyphenate from louis import noContractions, compbrlAtCursor, dotsIO, comp8Dots, pass1Only, compbrlLeftCursor, otherTrans, ucBrl modes = { 'noContractions': noContractions, 'compbrlAtCursor': compbrlAtCursor, 'dotsIO': dotsIO, 'comp8Dots': comp8Dots, 'pass1Only': pass1Only, 'compbrlLeftCursor': compbrlLeftCursor, 'otherTrans': otherTrans, 'ucBrl': ucBrl } test_types = { 'translate': 'translate', 'backtranslate': 'backtranslate', 'hyphenate': 'hyphenate' } # all the possible flags that a testcase can override possibleFlags = ['brlCursorPos', 'cursorPos', 'mode', 'testmode', 'comment'] # check what version of python we are running under. PY2 = sys.version_info[0] == 2 # Temporary hack we stores tables possible translation table paths possible_table_paths = ["tables", "tests/tables", "/usr/share/liblouis/tables", "/usr/local/share/liblouis/tables"] # Helper function to dinamical generate output harness filename def generate_output_file(translation_table): if args.unicodebraille or "unicode.dis" in translation_table: outfile = os.path.splitext(os.path.basename(translation_table[1]))[0]+'_harness.txt' if "hyph" in lines[0]: outfile = os.path.splitext(os.path.basename(translation_table[1]))[0]+'-hyph_harness.txt' else: outfile = os.path.splitext(os.path.basename(translation_table[0]))[0]+'_harness.txt' if "hyph" in lines[0]: outfile = os.path.splitext(os.path.basename(translation_table[0]))[0]+'-hyph_harness.txt' if args.directory !=None: return args.directory+outfile return outfile # Helper function: this function generating translation table list from the source harness file tables flag def generate_translation_table_list(source_line, infile): source_line=source_line.replace("tables: ", "") source_line = source_line.replace(",", "") source_line=source_line.replace("\n", "") translation_table = source_line.split(" ") if args.unicodebraille and "unicode.dis" not in translation_table: translation_table.insert(0, "unicode.dis") for table in translation_table: # This counter stores how many places not existing a table not_existing_a_table = 0 for path in possible_table_paths: if not os.path.exists(path+'/'+table): not_existing_a_table = not_existing_a_table +1 if not_existing_a_table == len(possible_table_paths): print ("The %s translation table doesn't exists, %s input file skipped." %(table, infile)) return "" return translation_table # Helper function. This function reading input file. def read_input_file(infile): f=open(infile, 'r') lines=f.readlines() f.close() return lines # Helper function. This function generating the empty json dictionary with containing only translation tables and end tests block. def generate_empty_dictionary(translation_table): test={} test['tables'] = translation_table test['tests'] = [] return test # helper function, we always need to encode into utf-8 encoded strings, # so make sure we have that independantly of python. def u(a): if PY2: return a.encode("utf-8") return a # helper function, we always need to decode utf-8 encoded strings, # so make sure we have that independantly of python. def ud(a): if PY2: return a.decode("utf-8") return a def hyphenateword(word, tables, mode): try: # FIXME: liblouis currently crashes if we dont add space at end of the word, probably due to a counter running past the end of the string. # medium/longterm this hack should be removed, and the root of the problem found/resolved. hyphen_mask=hyphenate(tables, word+' ', mode) except RuntimeError: print('Hyphenation not possible, a problem occured.') return "" # Next code line returning the generated hyphenated word. # FIXME: why on python 2 do we need to remove the last item, and on python3 it is needed? # i.e. in python2 word and hyphen_mask not of the same length. if PY2: return "".join( map(lambda a,b: "-"+a if b=='1' else a, word, hyphen_mask)[:-1] ) else: return "".join( list(map(lambda a,b: "-"+a if b=='1' else a, word, hyphen_mask)) ) # Helper function, temporary need generating both translate, backtranslate and hyphenate test dictionaries flags block def generate_flags_block(): translate_tests={} backtranslate_tests = {} hyphenate_tests = {} backtranslate_tests['flags'] = {} backtranslate_tests['flags']['testmode'] = 'backtranslate' backtranslate_tests['data'] = [] hyphenate_tests['flags'] = {} hyphenate_tests['flags']['testmode'] = 'hyphenate' hyphenate_tests['data'] = [] translate_tests['data'] = [] if args.unicodebraille: backtranslate_tests['flags']['outputUniBrl'] = args.unicodebraille hyphenate_tests['flags']['outputUniBrl'] = args.unicodebraille translate_tests['flags'] = {} translate_tests['flags']['outputUniBrl'] = args.unicodebraille return translate_tests, backtranslate_tests, hyphenate_tests # Helper function to generate both translate, backtranslate and hyphenate tests temporary dictionary data def generate_data(lines, translate_tests, backtranslate_tests, hyphenate_tests, infile): limit = len(lines) # following two variable need initializing before the loop, and end of the loop, because inside the loop need doing some continue code line. We not want to lost already processed data inside the loop. testmode='translate' testcase={} for i in range(limit): lines[i]=lines[i].replace('\n', '') # skip empty lines in the source if lines[i] == '': continue # If it is the first comment within the testcase, then add it, if it is a long comment split over multiple lines, then append it to the # testcase comment field. if (lines[i].startswith('Comment: ')) or (lines[i].startswith('comment: ')): if 'comment' not in testcase: testcase['comment'] = [] testcase['comment'].append(lines[i][len('Comment: '):]) continue # does this line contain any processing flags if any(x in lines[i].split(': ') for x in possibleFlags): optionlist=lines[i].split(' ') for i in range(0, len(optionlist), 2): optionlist[i]=optionlist[i].replace(":", "") optionlist[i+1]=optionlist[i+1].replace(",", "") if optionlist[i] in ["brlCursorPos", "cursorPos"]: testcase[optionlist[i]] = int(optionlist[i+1]) elif optionlist[i] == 'testmode' and optionlist[i+1] in test_types: testmode = optionlist[i+1] elif optionlist[i] == 'mode' and optionlist[i+1] in modes: testcase[str(optionlist[i])]=str(optionlist[i+1]) continue # what liblouis translation mode bits should be set mode=0 if 'mode' in testcase: mode=modes[testcase['mode']] cursorPos=0 if 'cursorPos' in testcase: cursorPos=testcase['cursorPos'] # By now we have finnished processing testcase options and we know what we want to do. # so depending on testmode, do the needed work. if testmode == 'hyphenate': hyphenated_word = hyphenateword(ud(lines[i]), translation_table, mode) if hyphenated_word == "": return translate_tests, backtranslate_tests, hyphenate_tests try: brl = translate(translation_table, ud(lines[i]), None, cursorPos, mode)[0] except RuntimeError: print ("Translate or backtranslate impossible, a problem occured. \n%s input file skipped." %infile) return translate_tests, backtranslate_tests, hyphenate_tests brl=brl.replace("", "\u007f") if testmode == 'translate': testcase['input']=lines[i] testcase['output']=u(brl) translate_tests['data'].append(testcase) elif testmode == 'backtranslate': testcase['input']=u(brl) testcase['output']=lines[i] backtranslate_tests['data'].append(testcase) if testmode == 'hyphenate': testcase['input'] = lines[i] testcase['output'] = u(hyphenated_word) hyphenate_tests['data'].append(testcase) # Again two code line initializing testmode and testcase variables, because a testcase processing full ended. testmode='translate' testcase={} return translate_tests, backtranslate_tests, hyphenate_tests # Helper function to generate final test harness def generate_final_content(lines): generated_testcases=0 translate_tests, backtranslate_tests, hyphenate_tests = generate_flags_block() translate_tests, backtranslate_tests, hyphenate_tests = generate_data(lines, translate_tests, backtranslate_tests, hyphenate_tests, i) if len(backtranslate_tests['data'])>0: test['tests'].append(backtranslate_tests) generated_testcases=generated_testcases+len(backtranslate_tests['data']) if len(translate_tests['data'])>0: test['tests'].append(translate_tests) generated_testcases=generated_testcases+len(translate_tests['data']) if len(hyphenate_tests['data'])>0: test['tests'].append(hyphenate_tests) generated_testcases=generated_testcases+len(hyphenate_tests['data']) return generated_testcases #Helper function: if any directory command line argument were given, make sure directory exists. def create_directory(path): if not os.path.exists(path): try: os.makedirs(path) except OSError: print ("You do not have write permission to create the %s directory, \nharness generation aborted." %args.directory[0:len(args.directory)-1]) sys.exit() return #Main program # Add support for command line arguments. parser = argparse.ArgumentParser(description='Test harness file generator') parser.add_argument('-u',action="store_true",dest="unicodebraille",default=False,help='Use unicode braille for output.') parser.add_argument('-d',action='store',dest="directory",help="Output directory for the generated harness file(s).") parser.add_argument('infiles',action='store',nargs='+',help='Filenames where the source text is stored, wildcards are supported.') args = parser.parse_args() # Check if output directory command line option was given # and if so make sure path ends with the / character. if args.directory !=None: if not args.directory.endswith("/"): args.directory=args.directory+"/" # Make sure the given input files exist. for i in args.infiles: if not os.path.exists(i): print(("Error: %s file doesn't exist.") %i) sys.exit() # End of command line arguments parsing. # Begin processing input files for i in args.infiles: lines=read_input_file(i) if not lines[0].startswith("tables: "): print ("The source file %s doesn't declare which translation tables should be used, skipping." %i) continue print("processing %s source file..." %i) translation_table = generate_translation_table_list(lines[0], i) if translation_table !="": outfile=generate_output_file(translation_table) lines.remove(lines[0]) # generating primary empty dictionary, with containing only translation tables. test = generate_empty_dictionary(translation_table) generatedtestcases=generate_final_content(lines) if generatedtestcases != 0: # Make sure output directory exists. if args.directory !=None: create_directory(args.directory) try: g=open(outfile, 'w') json.dump(test, g, indent=2, sort_keys=True, ensure_ascii=False) g.close() except IOError: if args.directory !=None: print ("You do not have write permission to the %s directory, \nharness generation aborted." %args.directory[0:len(args.directory)-1]) else: print ("You do not have write permission to the current directory, \nharness generation aborted.") sys.exit() print("Generated %d testcases, please carefully inspect %s, \nand do any needed manual corrections." %(generatedtestcases, outfile)) liblouis-2.5.3/tools/lou_debug.c0000664000175000017500000004523012161041523013536 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com 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, see . Maintained by John J. Boyer john.boyer@jjb-software.com */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "louis.h" #include #include "progname.h" #include "version-etc.h" static const struct option longopts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'v' }, { NULL, 0, NULL, 0 } }; const char version_etc_copyright[] = "Copyright %s %d ViewPlus Technologies, Inc. and JJB Software, Inc."; #define AUTHORS "John J. Boyer" static void print_help (void) { printf ("\ Usage: %s [OPTIONS] TABLE[,TABLE,...]\n", program_name); fputs ("\ Examine and debug Braille translation tables. This program allows you\n\ to inspect liblouis translation tables and gather information about\n\ them, such as forward and backward rules, characters and dot patterns,\n\ specific opcodes, the size of a table, whether a hyphenation\n\ table is used, how many passes the translation takes and much\n\ more.\n\n", stdout); fputs ("\ -h, --help display this help and exit\n\ -v, --version display version information and exit\n", stdout); printf ("\n"); printf ("Report bugs to %s.\n", PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf ("Report %s bugs to: %s\n", PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf ("%s home page: <%s>\n", PACKAGE_NAME, PACKAGE_URL); #endif } #define BUFSIZE 256 static const TranslationTableHeader *table; static char inputBuffer[BUFSIZE]; static int getInput (void) { int inputLength; inputBuffer[0] = 0; fgets (inputBuffer, sizeof (inputBuffer), stdin); inputLength = strlen (inputBuffer) - 1; if (inputLength < 0) /*EOF on script */ exit (0); inputBuffer[inputLength] = 0; return inputLength; } static int printRule (TranslationTableRule * thisRule, int mode) { printf ("Rule: "); printf ("opcode=%s, ", findOpcodeName (thisRule->opcode)); if (thisRule->before) printf ("before=%x, ", thisRule->before); if (thisRule->after) printf ("after=%x, ", thisRule->after); switch (thisRule->opcode) { case CTO_Context: case CTO_Correct: case CTO_SwapCd: case CTO_SwapDd: case CTO_Pass2: case CTO_Pass3: case CTO_Pass4: printf ("code=%s ", showString (thisRule->charsdots, thisRule->charslen + thisRule->dotslen)); break; default: if (mode == 0) { printf ("chars=%s, ", showString (thisRule->charsdots, thisRule->charslen)); printf ("dots=%s, ", showDots (&thisRule->charsdots[thisRule->charslen], thisRule->dotslen)); } else { printf ("dots=%s, ", showDots (&thisRule->charsdots[thisRule->charslen], thisRule->dotslen)); printf ("chars=%s, ", showString (thisRule->charsdots, thisRule->charslen)); } break; } return 1; } static int printCharacter (TranslationTableCharacter * thisChar, int mode) { TranslationTableRule *thisRule; TranslationTableOffset nextRule; if (mode == 0) { printf ("Char: "); printf ("real=%s, ", showString (&thisChar->realchar, 1)); printf ("upper=%s, ", showString (&thisChar->uppercase, 1)); printf ("lower=%s, ", showString (&thisChar->lowercase, 1)); } else printf ("Dots: real=%s, ", showDots (&thisChar->realchar, 1)); printf ("attr=%s, ", showAttributes (thisChar->attributes)); nextRule = thisChar->otherRules; while (nextRule) { thisRule = (TranslationTableRule *) & table->ruleArea[nextRule]; if (nextRule == thisChar->definitionRule) printf ("definition "); printRule (thisRule, mode); printf ("\n"); if (mode == 0) nextRule = thisRule->charsnext; else nextRule = thisRule->dotsnext; } return 1; } static int show_characters (int startHash) { int k; TranslationTableCharacter *thisChar; TranslationTableOffset nextChar; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startHash < 0) k = 0; else k = startHash; for (; k < HASHNUM; k++) if (table->characters[k]) { printf ("Hash=%d\n", k); nextChar = table->characters[k]; while (nextChar) { thisChar = (TranslationTableCharacter *) & table->ruleArea[nextChar]; printCharacter (thisChar, 0); printf ("=> "); getInput (); if (*inputBuffer == 'h') break; if (*inputBuffer == 'e') return 1; nextChar = thisChar->next; } } return 1; } static int show_dots (int startHash) { int k; TranslationTableCharacter *thisDots; TranslationTableOffset nextDots; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startHash < 0) k = 0; else k = startHash; for (; k < HASHNUM; k++) if (table->dots[k]) { printf ("Hash=%d\n", k); nextDots = table->dots[k]; while (nextDots) { thisDots = (TranslationTableCharacter *) & table->ruleArea[nextDots]; printCharacter (thisDots, 1); printf ("=> "); getInput (); if (*inputBuffer == 'h') break; if (*inputBuffer == 'e') return 1; nextDots = thisDots->next; } } return 1; } static int show_forRules (int startHash) { int k; TranslationTableRule *thisRule; TranslationTableOffset nextRule; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startHash < 0) k = 0; else k = startHash; for (; k < HASHNUM; k++) if (table->forRules[k]) { printf ("Hash=%d\n", k); nextRule = table->forRules[k]; while (nextRule) { thisRule = (TranslationTableRule *) & table->ruleArea[nextRule]; printRule (thisRule, 0); printf ("=> "); getInput (); if (*inputBuffer == 'h') break; if (*inputBuffer == 'e') return 1; nextRule = thisRule->charsnext; } } return 1; } static int show_backRules (int startHash) { int k; TranslationTableRule *thisRule; TranslationTableOffset nextRule; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startHash < 0) k = 0; else k = startHash; for (; k < HASHNUM; k++) if (table->backRules[k]) { printf ("Hash=%d\n", k); nextRule = table->backRules[k]; while (nextRule) { thisRule = (TranslationTableRule *) & table->ruleArea[nextRule]; printRule (thisRule, 1); printf ("=> "); getInput (); if (*inputBuffer == 'h') break; if (*inputBuffer == 'e') return 1; nextRule = thisRule->dotsnext; } } return 1; } static int print_brailleIndicator (TranslationTableOffset offset, char *opcode) { TranslationTableRule *thisRule; if (!offset) return 0; thisRule = (TranslationTableRule *) & table->ruleArea[offset]; printf ("%s %s\n", opcode, showDots (&thisRule->charsdots[0], thisRule->dotslen)); return 1; } static int print_phraseLength (TranslationTableOffset offset, char *opcode) { if (!offset) return 0; printf ("%s %d\n", opcode, offset); return 1; } static int show_brailleIndicators (void) { print_brailleIndicator (table->capitalSign, "capsign"); print_brailleIndicator (table->beginCapitalSign, "begcaps"); print_phraseLength (table->lenBeginCaps, "lenbegcaps"); print_brailleIndicator (table->endCapitalSign, "endcaps"); print_brailleIndicator (table->firstWordCaps, "firstwordcaps"); print_brailleIndicator (table->lastWordCapsAfter, "lastwordaftercaps"); print_phraseLength (table->lenCapsPhrase, "lencapsphrase"); print_brailleIndicator (table->letterSign, "letsign"); print_brailleIndicator (table->numberSign, "numsign"); print_brailleIndicator (table->firstWordItal, "firstwordital"); print_brailleIndicator (table->lastWordItalBefore, "lastworditalbefore"); print_brailleIndicator (table->lastWordItalAfter, "lastworditalafter"); print_brailleIndicator (table->firstLetterItal, "firstletterital"); print_brailleIndicator (table->lastLetterItal, "lastletterital"); print_brailleIndicator (table->singleLetterItal, "singleletterital"); print_brailleIndicator (table->italWord, "italword"); print_phraseLength (table->lenItalPhrase, "lenitalphrase"); print_brailleIndicator (table->firstWordBold, "firstwordbold"); print_brailleIndicator (table->lastWordBoldBefore, "lastwordboldbefore"); print_brailleIndicator (table->lastWordBoldAfter, "lastwordboldafter"); print_brailleIndicator (table->firstLetterBold, "firstletterbold"); print_brailleIndicator (table->lastLetterBold, "lastletterbold"); print_brailleIndicator (table->singleLetterBold, "singleletterbold"); print_brailleIndicator (table->boldWord, "boldword"); print_phraseLength (table->lenBoldPhrase, "lenboldphrase"); print_brailleIndicator (table->firstWordUnder, "firstwordunder"); print_brailleIndicator (table->lastWordUnderBefore, "lastwordunderbefore"); print_brailleIndicator (table->lastWordUnderAfter, "lastwordunderafter"); print_brailleIndicator (table->firstLetterUnder, "firstletterunder"); print_brailleIndicator (table->lastLetterUnder, "lastletterunder"); print_brailleIndicator (table->singleLetterUnder, "singleletterunder"); print_brailleIndicator (table->underWord, "underword"); print_phraseLength (table->lenUnderPhrase, "lenunderphrase"); print_brailleIndicator (table->begComp, "begcomp"); print_brailleIndicator (table->compBegEmph1, "compbegemph1"); print_brailleIndicator (table->compEndEmph1, "compendemph1"); print_brailleIndicator (table->compBegEmph2, "compbegemph2"); print_brailleIndicator (table->compEndEmph2, "compendemph2"); print_brailleIndicator (table->compBegEmph3, "compbegemph3"); print_brailleIndicator (table->compEndEmph3, "compendemph3"); print_brailleIndicator (table->compCapSign, "compcapsign"); print_brailleIndicator (table->compBegCaps, "compbegcaps"); print_brailleIndicator (table->compEndCaps, "compendcaps"); print_brailleIndicator (table->endComp, "endcomp"); return 1; } static char * pickYN (int a) { if (!a) return "no"; return "yes"; } static int show_misc (void) { printf ("Table size: %d\n", table->tableSize); printf ("Bytes used: %d\n", table->bytesUsed); printf ("Number of passes: %d\n", table->numPasses); printf ("'correct' opcodes: %s\n", pickYN (table->corrections)); printf ("'syllable' opcodes: %s\n", pickYN (table->syllables)); printf ("'capsnocont' opcode: %s\n", pickYN (table->capsNoCont)); printf ("Hyphenation table: %s\n", pickYN (table->hyphenStatesArray)); printf ("noletsignbefore %s\n", showString (&table->noLetsignBefore[0], table->noLetsignBeforeCount)); printf ("noletsign %s\n", showString (&table->noLetsign[0], table->noLetsignCount)); printf ("noletsignafter %s\n", showString (&table->noLetsignAfter[0], table->noLetsignAfterCount)); return 1; } static int show_charMap (int startHash) { int k; CharOrDots *thisChar; TranslationTableOffset nextChar; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startHash < 0) k = 0; else k = startHash; for (; k < HASHNUM; k++) if (table->charToDots[k]) { printf ("Hash=%d\n", k); nextChar = table->charToDots[k]; while (nextChar) { thisChar = (CharOrDots *) & table->ruleArea[nextChar]; printf ("Char: %s ", showString (&thisChar->lookFor, 1)); printf ("dots=%s\n", showDots (&thisChar->found, 1)); printf ("=> "); getInput (); if (*inputBuffer == 'h') break; if (*inputBuffer == 'e') return 1; nextChar = thisChar->next; } } return 1; } static int show_dotsMap (int startHash) { int k; CharOrDots *thisDots; TranslationTableOffset nextDots; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startHash < 0) k = 0; else k = startHash; for (; k < HASHNUM; k++) if (table->dotsToChar[k]) { printf ("Hash=%d\n", k); nextDots = table->dotsToChar[k]; while (nextDots) { thisDots = (CharOrDots *) & table->ruleArea[nextDots]; printf ("Dots: %s ", showDots (&thisDots->lookFor, 1)); printf ("char=%s\n", showString (&thisDots->found, 1)); printf ("=> "); getInput (); if (*inputBuffer == 'h') break; if (*inputBuffer == 'e') return 1; nextDots = thisDots->next; } } return 1; } static int show_compDots (int startChar) { widechar k; printf ("Press enter for next or (e)xit, next-(h)ash, then enter\n"); if (startChar < 0) k = 0; else k = startChar; for (; k < 256; k++) if (table->compdotsPattern[k]) { TranslationTableRule *thisRule = (TranslationTableRule *) & table->ruleArea[table->compdotsPattern[k]]; printf ("Char: %s ", showString (&k, 1)); printf ("dots=%s\n", showDots (&thisRule->charsdots[1], thisRule->dotslen)); printf ("=> "); getInput (); if (*inputBuffer == 'e') return 1; } return 1; } static void part_paramLetters () { printf ("show particular hash chains.\n"); printf ("show-(f)orward-rules, show-(b)ackward-rules, show-(c)haracters, \n"); printf ("show-(d)ot-patterns, show-(C)har-to-dots, show-(D)ots-tochar\n"); printf ("(z)-compdots, (h)elp, e(x)it\n"); } static void particularHelp (void) { part_paramLetters (); } static int particular (void) { int startHash; widechar parsed[BUFSIZE]; part_paramLetters (); do { printf ("particular: "); getInput (); switch (inputBuffer[0]) { case 0: break; case 'h': particularHelp (); break; case 'c': printf ("-> "); getInput (); if (!extParseChars (inputBuffer, parsed)) break; startHash = charHash (*parsed); if (table->characters[startHash] == 0) { printf ("Character not in table.\n"); break; } show_characters (startHash); break; case 'd': printf ("-> "); getInput (); if (!extParseDots (inputBuffer, parsed)) break; startHash = charHash (*parsed); if (table->dots[startHash] == 0) { printf ("Dot pattern not in table.\n"); break; } show_dots (startHash); break; case 'C': printf ("-> "); getInput (); if (!extParseChars (inputBuffer, parsed)) break; startHash = charHash (*parsed); if (table->charToDots[startHash] == 0) { printf ("Character not in table.\n"); break; } show_charMap (startHash); break; case 'D': printf ("-> "); getInput (); if (!extParseDots (inputBuffer, parsed)) break; startHash = charHash (*parsed); if (table->dotsToChar[startHash] == 0) { printf ("Dot pattern not in table.\n"); break; } show_dotsMap (startHash); break; case 'f': printf ("-> "); getInput (); if (!extParseChars (inputBuffer, parsed)) break; startHash = stringHash (parsed); if (table->forRules[startHash] == 0) { printf ("Character string not in table.\n"); break; } show_forRules (startHash); break; case 'b': printf ("-> "); getInput (); if (!extParseDots (inputBuffer, parsed)) break; startHash = stringHash (parsed); if (table->backRules[startHash] == 0) { printf ("Dot pattern not in table.\n"); break; } show_backRules (startHash); break; case 'z': printf ("-> "); getInput (); if (!extParseChars (inputBuffer, parsed)) break; startHash = charHash (*parsed); if (*parsed > 255 || table->compdotsPattern[startHash] == 0) { printf ("Character not in table.\n"); break; } show_compDots (startHash); break; case 'x': return 1; default: printf ("Bad choice.\n"); break; } } while (inputBuffer[0] != 'x'); return 1; } static void paramLetters (void) { printf ("Press one of the letters in parentheses, then enter.\n"); printf ("show-(f)orward-rules, show-(b)ackward-rules, show-(c)haracters, \n"); printf ("show-(d)ot-patterns, show-(C)har-to-dots, show-(D)ots-tochar\n"); printf ("show-(m)isc, show-(z)-compdots\n"); printf ("show-(p)articulars, (h)elp, (q)uit\n"); } static void commandHelp (void) { paramLetters (); } static int getCommands (void) { paramLetters (); do { printf ("Command: "); getInput (); switch (inputBuffer[0]) { case 0: break; case 'h': commandHelp (); break; case 'C': show_charMap (-1); break; case 'D': show_dotsMap (-1); break; case 'z': show_compDots (-1); break; case 'c': show_characters (-1); break; case 'd': show_dots (-1); break; case 'f': show_forRules (-1); break; case 'b': show_backRules (-1); break; case 'i': show_brailleIndicators (); break; case 'm': show_misc (); break; case 'p': particular (); break; case 'q': return 1; default: printf ("Bad choice.\n"); break; } } while (inputBuffer[0] != 'q'); return 1; } int main (int argc, char **argv) { int optc; set_program_name (argv[0]); while ((optc = getopt_long (argc, argv, "hv", longopts, NULL)) != -1) switch (optc) { /* --help and --version exit immediately, per GNU coding standards. */ case 'v': version_etc (stdout, program_name, PACKAGE_NAME, VERSION, AUTHORS, (char *) NULL); exit (EXIT_SUCCESS); break; case 'h': print_help (); exit (EXIT_SUCCESS); break; default: fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); break; } if (optind != argc - 1) { /* Print error message and exit. */ if (optind < argc - 1) fprintf (stderr, "%s: extra operand: %s\n", program_name, argv[optind + 1]); else fprintf (stderr, "%s: no table specified\n", program_name); fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); } if (!(table = lou_getTable (argv[optind]))) { lou_free (); exit (EXIT_FAILURE); } getCommands (); lou_free (); exit (EXIT_SUCCESS); } liblouis-2.5.3/tools/lou_checkhyphens.c0000664000175000017500000001321312161041523015120 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com 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, see . Maintained by John J. Boyer john.boyer@jjb-software.com */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "liblouis.h" #include "louis.h" #include #include "progname.h" #include "version-etc.h" static const struct option longopts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'v' }, { NULL, 0, NULL, 0 } }; const char version_etc_copyright[] = "Copyright %s %d ViewPlus Technologies, Inc. and JJB Software, Inc."; #define AUTHORS "John J. Boyer" static void print_help (void) { printf ("\ Usage: %s [OPTIONS]\n", program_name); fputs ("\ Check the accuracy of hyphenation in Braille translation for both\n\ translated and untranslated words.\n\n", stdout); fputs ("\ -h, --help display this help and exit\n\ -v, --version display version information and exit\n", stdout); printf ("\n"); printf ("Report bugs to %s.\n", PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf ("Report %s bugs to: %s\n", PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf ("%s home page: <%s>\n", PACKAGE_NAME, PACKAGE_URL); #endif } #define BUFSIZE 256 static char inputBuffer[BUFSIZE]; static const TranslationTableHeader *validTable = NULL; static unsigned int mode; static char table[BUFSIZE]; static int getInput (void) { int inputLength; inputBuffer[0] = 0; fgets (inputBuffer, sizeof (inputBuffer), stdin); inputLength = strlen (inputBuffer) - 1; if (inputLength < 0) /*EOF on script */ exit (0); inputBuffer[inputLength] = 0; return inputLength; } static void paramLetters (void) { printf ("Press one of the letters in parentheses, then enter.\n"); printf ("(t)able, tr(a)nslated, (u)ntranslated, (r)un, (h)elp, (q)uit\n"); } static int getCommands (void) { paramLetters (); do { printf ("Command: "); getInput (); switch (inputBuffer[0]) { case 0: break; case 't': do { printf ("Enter the name of a table or a list: "); getInput (); strcpy (table, inputBuffer); validTable = lou_getTable (table); if (validTable != NULL && validTable->hyphenStatesArray == 0) { printf ("No hyphenation table.\n"); validTable = NULL; } } while (validTable == NULL); break; case 'a': mode = 1; break; case 'u': mode = 0; break; case 'r': if (validTable == NULL) { printf ("You must enter a valid table name or list.\n"); inputBuffer[0] = 0; } break; case 'h': printf ("Commands: action\n"); printf ("(t)able: Enter a table name or list\n"); printf ("(r)un: run the hyphenation test loop\n"); printf ("tr(a)nslated: translated input\n"); printf ("(u)ntranslated: untranslated input\n"); printf ("(h)elp: print this page\n"); printf ("(q)uit: leave the program\n"); printf ("\n"); paramLetters (); break; case 'q': exit (0); default: printf ("Bad choice.\n"); break; } } while (inputBuffer[0] != 'r'); return 1; } int main (int argc, char **argv) { widechar inbuf[BUFSIZE]; char hyphens[BUFSIZE]; int inlen; int k; int optc; set_program_name (argv[0]); while ((optc = getopt_long (argc, argv, "hv", longopts, NULL)) != -1) switch (optc) { /* --help and --version exit immediately, per GNU coding standards. */ case 'v': version_etc (stdout, program_name, PACKAGE_NAME, VERSION, AUTHORS, (char *) NULL); exit (EXIT_SUCCESS); break; case 'h': print_help (); exit (EXIT_SUCCESS); break; default: fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); break; } if (optind < argc) { /* Print error message and exit. */ fprintf (stderr, "%s: extra operand: %s\n", program_name, argv[optind]); fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); } validTable = NULL; mode = 0; while (1) { getCommands (); printf ("Type something, press enter, and view the results.\n"); printf ("A blank line returns to command entry.\n"); while (1) { inlen = getInput (); if (inlen == 0) break; for (k = 0; k < inlen; k++) inbuf[k] = inputBuffer[k]; if (!lou_hyphenate (table, inbuf, inlen, hyphens, mode)) { printf ("Hyphenation error\n"); continue; } printf ("Hyphenation mask: %s\n", hyphens); printf ("Hyphenated word: "); for (k = 0; k < inlen; k++) { if (hyphens[k] == '1') printf ("-"); printf ("%c", inbuf[k]); } printf ("\n"); } } lou_free (); return 0; } liblouis-2.5.3/tools/lou_checktable.c0000664000175000017500000000717312161041523014541 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com 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, see . Maintained by John J. Boyer john.boyer@jjb-software.com */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "louis.h" #include #include "progname.h" #include "version-etc.h" static const struct option longopts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'v' }, { "quiet", no_argument, NULL, 'q' }, { NULL, 0, NULL, 0 } }; const char version_etc_copyright[] = "Copyright %s %d ViewPlus Technologies, Inc. and JJB Software, Inc."; #define AUTHORS "John J. Boyer" static int quiet_flag = 0; static void print_help (void) { printf ("\ Usage: %s [OPTIONS] TABLE[,TABLE,...]\n", program_name); fputs ("\ Test a Braille translation table. If the table contains errors,\n\ appropriate messages are displayed. If there are no errors the\n\ message \"no errors found.\" is shown unless you specify the --quiet\n\ option.\n", stdout); fputs ("\ -h, --help display this help and exit\n\ -v, --version display version information and exit\n\ -q, --quiet do not write to standard error if there are no errors.\n", stdout); printf ("\n"); printf ("Report bugs to %s.\n", PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf ("Report %s bugs to: %s\n", PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf ("%s home page: <%s>\n", PACKAGE_NAME, PACKAGE_URL); #endif } int main (int argc, char **argv) { const TranslationTableHeader *table; int optc; set_program_name (argv[0]); while ((optc = getopt_long (argc, argv, "hvq", longopts, NULL)) != -1) switch (optc) { /* --help and --version exit immediately, per GNU coding standards. */ case 'v': version_etc (stdout, program_name, PACKAGE_NAME, VERSION, AUTHORS, (char *) NULL); exit (EXIT_SUCCESS); break; case 'h': print_help (); exit (EXIT_SUCCESS); break; case 'q': quiet_flag = 1; break; default: fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); break; } if (optind != argc - 1) { /* Print error message and exit. */ if (optind < argc - 1) fprintf (stderr, "%s: extra operand: %s\n", program_name, argv[optind + 1]); else fprintf (stderr, "%s: no table specified\n", program_name); fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); } if (!(table = lou_getTable (argv[optind]))) { lou_free (); exit (EXIT_FAILURE); } if (quiet_flag == 0) fprintf (stderr, "No errors found.\n"); lou_free (); exit (EXIT_SUCCESS); } liblouis-2.5.3/tools/lou_allround.c0000664000175000017500000002774312161041523014301 00000000000000/* liblouis Braille Translation and Back-Translation Library Based on the Linux screenreader BRLTTY, copyright (C) 1999-2006 by The BRLTTY Team Copyright (C) 2004, 2005, 2006, 2009 ViewPlus Technologies, Inc. www.viewplus.com and JJB Software, Inc. www.jjb-software.com 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, see . Maintained by John J. Boyer john.boyer@jjb-software.com */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include "liblouis.h" #include "louis.h" #include #include "progname.h" #include "version-etc.h" static const struct option longopts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'v' }, { NULL, 0, NULL, 0 } }; const char version_etc_copyright[] = "Copyright %s %d ViewPlus Technologies, Inc. and JJB Software, Inc."; #define AUTHORS "John J. Boyer" static void print_help (void) { printf ("\ Usage: %s [OPTIONS]\n", program_name); fputs ("\ This program tests every capability of the liblouis library. It is\n\ completely interactive. \n\n", stdout); fputs ("\ -h, --help display this help and exit\n\ -v, --version display version information and exit\n", stdout); printf ("\n"); printf ("Report bugs to %s.\n", PACKAGE_BUGREPORT); #ifdef PACKAGE_PACKAGER_BUG_REPORTS printf ("Report %s bugs to: %s\n", PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS); #endif #ifdef PACKAGE_URL printf ("%s home page: <%s>\n", PACKAGE_NAME, PACKAGE_URL); #endif } #define BUFSIZE 256 static char inputBuffer[BUFSIZE]; static void *validTable = NULL; static int forwardOnly = 0; static int backOnly = 0; static int showPositions = 0; static int minimalist = 0; static int outputSize = BUFSIZE; static int showSizes = 0; static int enteredCursorPos = -1; static unsigned int mode; static char table[BUFSIZE]; static char emphasis[BUFSIZE]; static char spacing[BUFSIZE]; static char enteredEmphasis[BUFSIZE]; static char enteredSpacing[BUFSIZE]; static int getInput (void) { int inputLength; inputBuffer[0] = 0; fgets (inputBuffer, sizeof (inputBuffer), stdin); inputLength = strlen (inputBuffer) - 1; if (inputLength < 0) /*EOF on script */ { lou_free(); exit (EXIT_SUCCESS); } inputBuffer[inputLength] = 0; return inputLength; } static int getYN (void) { printf ("? y/n: "); getInput (); if (inputBuffer[0] == 'y') return 1; return 0; } static void paramLetters (void) { printf ("Press one of the letters in parentheses, then enter.\n"); printf ("(t)able, (r)un, (m)ode, (c)ursor, (e)mphasis, (s)pacing, (h)elp,\n"); printf ("(q)uit, (f)orward-only, (b)ack-only, show-(p)ositions m(i)nimal.\n"); printf ("test-(l)engths.\n"); } static int getCommands (void) { paramLetters (); do { printf ("Command: "); getInput (); switch (inputBuffer[0]) { case 0: break; case 't': do { printf ("Enter the name of a table: "); getInput (); strcpy (table, inputBuffer); } while ((validTable = lou_getTable (table)) == NULL); break; case 'r': if (validTable == NULL) { printf ("You must enter a valid table name.\n"); inputBuffer[0] = 0; } break; case 'm': printf ("Reset mode"); if (getYN ()) mode = 0; printf ("No contractions"); mode |= getYN (); printf ("Computer braille at cursor"); mode |= 2 * getYN (); printf ("Dots input and output"); mode |= 4 * getYN (); printf ("8-dot computer braille"); mode |= 8 * getYN (); printf ("Pass1 only"); mode |= 16 * getYN (); break; case 'l': printf ("Do you want to test input and output lengths"); showSizes = getYN (); if (!showSizes) { outputSize = BUFSIZE; break; } printf ("Enter a maximum output size: "); getInput (); outputSize = atoi (inputBuffer); if (outputSize < 0 || outputSize > BUFSIZE) { printf ("Output size must be from 0 tu %d.\n", BUFSIZE); outputSize = BUFSIZE; showSizes = 0; } break; case 'c': printf ("Enter a cursor position: "); getInput (); enteredCursorPos = atoi (inputBuffer); if (enteredCursorPos < -1 || enteredCursorPos > outputSize) { printf ("Cursor position must be from -1 to %d.\n", outputSize); enteredCursorPos = -1; } break; case 'e': printf ("(Enter an x to cancel emphasis.)\n"); printf ("Enter an emphasis string: "); getInput (); strcpy (enteredEmphasis, inputBuffer); break; case 's': printf ("(Enter an x to cancel spacing.)\n"); printf ("Enter a spacing string: "); getInput (); strcpy (enteredSpacing, inputBuffer); break; case 'h': printf ("Commands: action\n"); printf ("(t)able: Enter a table name\n"); printf ("(r)un: run the translation/back-translation loop\n"); printf ("(m)ode: Enter a mode parameter\n"); printf ("(c)ursor: Enter a cursor position\n"); printf ("(e)mphasis: Enter an emphasis string\n"); printf ("(s)pacing: Enter a spacing string\n"); printf ("(h)elp: print this page\n"); printf ("(q)uit: leave the program\n"); printf ("(f)orward-only: do only forward translation\n"); printf ("(b)ack-only: do only back-translation\n"); printf ("show-(p)ositions: show input and output positions\n"); printf ("m(i)nimal: test translator and back-translator with minimal parameters\n"); printf ("test-(l)engths: test accuracy of returned lengths\n"); printf ("\n"); paramLetters (); break; case 'q': lou_free(); exit (EXIT_SUCCESS); case 'f': printf ("Do only forward translation"); forwardOnly = getYN (); break; case 'b': printf ("Do only backward translation"); backOnly = getYN (); break; case 'p': printf ("Show input and output positions"); showPositions = getYN (); break; case 'i': printf ("Test translation/back-translation loop with minimal parameters"); minimalist = getYN (); break; default: printf ("Bad choice.\n"); break; } if (forwardOnly && backOnly) printf ("You cannot specify both forward-only and backward-only translation.\n"); } while (inputBuffer[0] != 'r'); return 1; } int main (int argc, char **argv) { char *charbuf; widechar inbuf[BUFSIZE]; widechar transbuf[BUFSIZE]; widechar outbuf[BUFSIZE]; int outputPos[BUFSIZE]; int inputPos[BUFSIZE]; int inlen; int translen; int outlen; int cursorPos = -1; int realInlen = 0; int k; int optc; set_program_name (argv[0]); while ((optc = getopt_long (argc, argv, "hv", longopts, NULL)) != -1) switch (optc) { /* --help and --version exit immediately, per GNU coding standards. */ case 'v': version_etc (stdout, program_name, PACKAGE_NAME, VERSION, AUTHORS, (char *) NULL); exit (EXIT_SUCCESS); break; case 'h': print_help (); exit (EXIT_SUCCESS); break; default: fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); break; } if (optind < argc) { /* Print error message and exit. */ fprintf (stderr, "%s: extra operand: %s\n", program_name, argv[optind]); fprintf (stderr, "Try `%s --help' for more information.\n", program_name); exit (EXIT_FAILURE); } validTable = NULL; enteredCursorPos = -1; mode = 0; while (1) { getCommands (); printf ("Type something, press enter, and view the results.\n"); printf ("A blank line returns to command entry.\n"); if (minimalist) while (1) { translen = outputSize; outlen = outputSize; inlen = getInput (); if (inlen == 0) break; if (!(realInlen = extParseChars (inputBuffer, inbuf))) break; inlen = realInlen; if (!lou_translateString (table, inbuf, &inlen, transbuf, &translen, NULL, NULL, 0)) break; transbuf[translen] = 0; printf ("Translation:\n"); charbuf = showString (transbuf, translen); k = strlen (charbuf) - 1; charbuf[k] = 0; printf ("%s\n", &charbuf[1]); if (showSizes) printf ("input length = %d; output length = %d\n", inlen, translen); lou_backTranslateString (table, transbuf, &translen, outbuf, &outlen, NULL, NULL, 0); printf ("Back-translation:\n"); charbuf = showString (outbuf, outlen); k = strlen (charbuf) - 1; charbuf[k] = 0; printf ("%s\n", &charbuf[1]); if (showSizes) printf ("input length = %d; output length = %d.\n", translen, outlen); if (outlen == realInlen) { for (k = 0; k < realInlen; k++) if (inbuf[k] != outbuf[k]) break; if (k == realInlen) printf ("Perfect roundtrip!\n"); } } else while (1) { strcpy (emphasis, enteredEmphasis); strcpy (spacing, enteredSpacing); cursorPos = enteredCursorPos; inlen = getInput (); if (inlen == 0) break; outlen = outputSize; if (backOnly) { if (!(translen = extParseChars (inputBuffer, transbuf))) break; inlen = realInlen; } else { translen = outputSize; if (!(realInlen = extParseChars (inputBuffer, inbuf))) break; inlen = realInlen; if (!lou_translate (table, inbuf, &inlen, transbuf, &translen, emphasis, spacing, &outputPos[0], &inputPos[0], &cursorPos, mode)) break; transbuf[translen] = 0; if (mode & dotsIO) { printf ("Translation dot patterns:\n"); printf ("%s\n", showDots (transbuf, translen)); } else { printf ("Translation:\n"); charbuf = showString (transbuf, translen); k = strlen (charbuf) - 1; charbuf[k] = 0; printf ("%s\n", &charbuf[1]); if (showSizes) printf ("input length = %d; output length = %d\n", inlen, translen); } } if (cursorPos != -1) printf ("Cursor position: %d\n", cursorPos); if (enteredSpacing[0]) printf ("Returned spacing: %s\n", spacing); if (showPositions) { printf ("Output positions:\n"); for (k = 0; k < inlen; k++) printf ("%d ", outputPos[k]); printf ("\n"); printf ("Input positions:\n"); for (k = 0; k < translen; k++) printf ("%d ", inputPos[k]); printf ("\n"); } if (!forwardOnly) { if (!lou_backTranslate (table, transbuf, &translen, outbuf, &outlen, emphasis, spacing, &outputPos[0], &inputPos[0], &cursorPos, mode)) break; printf ("Back-translation:\n"); charbuf = showString (outbuf, outlen); k = strlen (charbuf) - 1; charbuf[k] = 0; printf ("%s\n", &charbuf[1]); if (showSizes) printf ("input length = %d; output length = %d\n", translen, outlen); if (cursorPos != -1) printf ("Cursor position: %d\n", cursorPos); if (enteredSpacing[0]) printf ("Returned spacing: %s\n", spacing); if (showPositions) { printf ("Output positions:\n"); for (k = 0; k < translen; k++) printf ("%d ", outputPos[k]); printf ("\n"); printf ("Input positions:\n"); for (k = 0; k < outlen; k++) printf ("%d ", inputPos[k]); printf ("\n"); } } if (!(forwardOnly || backOnly)) { if (outlen == realInlen) { for (k = 0; k < realInlen; k++) if (inbuf[k] != outbuf[k]) break; if (k == realInlen) printf ("Perfect roundtrip!\n"); } } } } lou_free (); exit (EXIT_SUCCESS); } liblouis-2.5.3/tools/Makefile.in0000664000175000017500000010017512161044154013475 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = lou_allround$(EXEEXT) lou_checkhyphens$(EXEEXT) \ lou_checktable$(EXEEXT) lou_debug$(EXEEXT) \ lou_translate$(EXEEXT) lou_trace$(EXEEXT) subdir = tools DIST_COMMON = $(dist_bin_SCRIPTS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_lou_allround_OBJECTS = lou_allround.$(OBJEXT) lou_allround_OBJECTS = $(am_lou_allround_OBJECTS) lou_allround_LDADD = $(LDADD) am__DEPENDENCIES_1 = lou_allround_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la $(am__DEPENDENCIES_1) am_lou_checkhyphens_OBJECTS = lou_checkhyphens.$(OBJEXT) lou_checkhyphens_OBJECTS = $(am_lou_checkhyphens_OBJECTS) lou_checkhyphens_LDADD = $(LDADD) lou_checkhyphens_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la $(am__DEPENDENCIES_1) am_lou_checktable_OBJECTS = lou_checktable.$(OBJEXT) lou_checktable_OBJECTS = $(am_lou_checktable_OBJECTS) lou_checktable_LDADD = $(LDADD) lou_checktable_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la $(am__DEPENDENCIES_1) am_lou_debug_OBJECTS = lou_debug.$(OBJEXT) lou_debug_OBJECTS = $(am_lou_debug_OBJECTS) lou_debug_LDADD = $(LDADD) lou_debug_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la $(am__DEPENDENCIES_1) am_lou_trace_OBJECTS = lou_trace.$(OBJEXT) lou_trace_OBJECTS = $(am_lou_trace_OBJECTS) lou_trace_LDADD = $(LDADD) lou_trace_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la $(am__DEPENDENCIES_1) am_lou_translate_OBJECTS = lou_translate.$(OBJEXT) lou_translate_OBJECTS = $(am_lou_translate_OBJECTS) lou_translate_LDADD = $(LDADD) lou_translate_DEPENDENCIES = $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la $(am__DEPENDENCIES_1) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(dist_bin_SCRIPTS) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/liblouis depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(lou_allround_SOURCES) $(lou_checkhyphens_SOURCES) \ $(lou_checktable_SOURCES) $(lou_debug_SOURCES) \ $(lou_trace_SOURCES) $(lou_translate_SOURCES) DIST_SOURCES = $(lou_allround_SOURCES) $(lou_checkhyphens_SOURCES) \ $(lou_checktable_SOURCES) $(lou_debug_SOURCES) \ $(lou_trace_SOURCES) $(lou_translate_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -I$(top_srcdir)/liblouis \ -I$(top_srcdir)/gnulib LDADD = \ $(top_builddir)/liblouis/liblouis.la \ $(top_builddir)/gnulib/libgnu.la \ $(LTLIBINTL) lou_allround_SOURCES = \ lou_allround.c lou_checkhyphens_SOURCES = \ lou_checkhyphens.c lou_checktable_SOURCES = \ lou_checktable.c lou_debug_SOURCES = \ lou_debug.c lou_translate_SOURCES = \ lou_translate.c lou_trace_SOURCES = \ lou_trace.c # distribute the harness generator but do not install it dist_bin_SCRIPTS = lou_harnessGenerator all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tools/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p || test -f $$p1; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list lou_allround$(EXEEXT): $(lou_allround_OBJECTS) $(lou_allround_DEPENDENCIES) $(EXTRA_lou_allround_DEPENDENCIES) @rm -f lou_allround$(EXEEXT) $(LINK) $(lou_allround_OBJECTS) $(lou_allround_LDADD) $(LIBS) lou_checkhyphens$(EXEEXT): $(lou_checkhyphens_OBJECTS) $(lou_checkhyphens_DEPENDENCIES) $(EXTRA_lou_checkhyphens_DEPENDENCIES) @rm -f lou_checkhyphens$(EXEEXT) $(LINK) $(lou_checkhyphens_OBJECTS) $(lou_checkhyphens_LDADD) $(LIBS) lou_checktable$(EXEEXT): $(lou_checktable_OBJECTS) $(lou_checktable_DEPENDENCIES) $(EXTRA_lou_checktable_DEPENDENCIES) @rm -f lou_checktable$(EXEEXT) $(LINK) $(lou_checktable_OBJECTS) $(lou_checktable_LDADD) $(LIBS) lou_debug$(EXEEXT): $(lou_debug_OBJECTS) $(lou_debug_DEPENDENCIES) $(EXTRA_lou_debug_DEPENDENCIES) @rm -f lou_debug$(EXEEXT) $(LINK) $(lou_debug_OBJECTS) $(lou_debug_LDADD) $(LIBS) lou_trace$(EXEEXT): $(lou_trace_OBJECTS) $(lou_trace_DEPENDENCIES) $(EXTRA_lou_trace_DEPENDENCIES) @rm -f lou_trace$(EXEEXT) $(LINK) $(lou_trace_OBJECTS) $(lou_trace_LDADD) $(LIBS) lou_translate$(EXEEXT): $(lou_translate_OBJECTS) $(lou_translate_DEPENDENCIES) $(EXTRA_lou_translate_DEPENDENCIES) @rm -f lou_translate$(EXEEXT) $(LINK) $(lou_translate_OBJECTS) $(lou_translate_LDADD) $(LIBS) install-dist_binSCRIPTS: $(dist_bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_allround.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_checkhyphens.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_checktable.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_debug.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_trace.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lou_translate.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(SCRIPTS) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-dist_binSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_binSCRIPTS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am \ install-dist_binSCRIPTS install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-dist_binSCRIPTS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/m4/0000775000175000017500000000000012161044235010664 500000000000000liblouis-2.5.3/m4/Makefile.am0000664000175000017500000000000012161041522012622 00000000000000liblouis-2.5.3/m4/ltsugar.m40000644000175000017500000001042412161044147012530 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) liblouis-2.5.3/m4/Makefile.in0000664000175000017500000004654212161044153012663 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = m4 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/malloc.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/realloc.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stdarg.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdlib_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/version-etc.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/liblouis/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ ARFLAGS = @ARFLAGS@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETOPT_H = @GETOPT_H@ GNULIB_ATOLL = @GNULIB_ATOLL@ GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GRANTPT = @GNULIB_GRANTPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ GNULIB_MBTOWC = @GNULIB_MBTOWC@ GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PTSNAME = @GNULIB_PTSNAME@ GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ GNULIB_PUTENV = @GNULIB_PUTENV@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RANDOM = @GNULIB_RANDOM@ GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ GNULIB_REALPATH = @GNULIB_REALPATH@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_RPMATCH = @GNULIB_RPMATCH@ GNULIB_SETENV = @GNULIB_SETENV@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STRTOD = @GNULIB_STRTOD@ GNULIB_STRTOLL = @GNULIB_STRTOLL@ GNULIB_STRTOULL = @GNULIB_STRTOULL@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ GNULIB_UNSETENV = @GNULIB_UNSETENV@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WCTOMB = @GNULIB_WCTOMB@ GNULIB_WRITE = @GNULIB_WRITE@ GNULIB__EXIT = @GNULIB__EXIT@ GREP = @GREP@ HAVE_ATOLL = @HAVE_ATOLL@ HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ HAVE_GRANTPT = @HAVE_GRANTPT@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_MKDTEMP = @HAVE_MKDTEMP@ HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ HAVE_MKSTEMP = @HAVE_MKSTEMP@ HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PTSNAME = @HAVE_PTSNAME@ HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RANDOM = @HAVE_RANDOM@ HAVE_RANDOM_H = @HAVE_RANDOM_H@ HAVE_RANDOM_R = @HAVE_RANDOM_R@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_REALPATH = @HAVE_REALPATH@ HAVE_RPMATCH = @HAVE_RPMATCH@ HAVE_SETENV = @HAVE_SETENV@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STRTOD = @HAVE_STRTOD@ HAVE_STRTOLL = @HAVE_STRTOLL@ HAVE_STRTOULL = @HAVE_STRTOULL@ HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE__EXIT = @HAVE__EXIT@ HELP2MAN = @HELP2MAN@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBLOUIS_AGE = @LIBLOUIS_AGE@ LIBLOUIS_CURRENT = @LIBLOUIS_CURRENT@ LIBLOUIS_REVISION = @LIBLOUIS_REVISION@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDARG_H = @NEXT_AS_FIRST_DIRECTIVE_STDARG_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDARG_H = @NEXT_STDARG_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDLIB_H = @NEXT_STDLIB_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ REPLACE_CALLOC = @REPLACE_CALLOC@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MALLOC = @REPLACE_MALLOC@ REPLACE_MBTOWC = @REPLACE_MBTOWC@ REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PTSNAME = @REPLACE_PTSNAME@ REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ REPLACE_PUTENV = @REPLACE_PUTENV@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SETENV = @REPLACE_SETENV@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STRTOD = @REPLACE_STRTOD@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_UNSETENV = @REPLACE_UNSETENV@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WCTOMB = @REPLACE_WCTOMB@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STDARG_H = @STDARG_H@ STDDEF_H = @STDDEF_H@ STRIP = @STRIP@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WIDECHAR_TYPE = @WIDECHAR_TYPE@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu m4/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: liblouis-2.5.3/m4/lt~obsolete.m40000644000175000017500000001375612161044147013434 00000000000000# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) liblouis-2.5.3/m4/ltversion.m40000644000175000017500000000126212161044147013074 00000000000000# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) liblouis-2.5.3/m4/ltoptions.m40000644000175000017500000003007312161044147013104 00000000000000# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) liblouis-2.5.3/m4/libtool.m40000644000175000017500000106000712161044147012516 00000000000000# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS